[
  {
    "path": ".github/workflows/python-package.yml",
    "content": "# This workflow will install Python dependencies, run tests and lint with a variety of Python versions\n# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python\n\nname: Python package\n\non:\n  push:\n    branches: [ \"main\" ]\n  pull_request:\n    branches: [ \"main\" ]\n\njobs:\n  build:\n\n    runs-on: ubuntu-latest\n    strategy:\n      fail-fast: false\n      matrix:\n        python-version: [\"3.9\", \"3.10\", \"3.11\"]\n\n    steps:\n    - uses: actions/checkout@v3\n    - name: Set up Python ${{ matrix.python-version }}\n      uses: actions/setup-python@v3\n      with:\n        python-version: ${{ matrix.python-version }}\n    - name: Install dependencies\n      run: |\n        python -m pip install --upgrade pip\n        python -m pip install flake8 pytest\n        if [ -f requirements.txt ]; then pip install -r requirements.txt; fi\n    - name: Lint with flake8\n      run: |\n        # stop the build if there are Python syntax errors or undefined names\n        flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics\n        # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide\n        flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics\n"
  },
  {
    "path": ".gitignore",
    "content": ".idea\n*.pkl\n*.egg-info\n**/__pycache__\n*_logs/\n*_runs/\n*_models/\ndist/\n*.toml\n*.log"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<https://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<https://www.gnu.org/licenses/why-not-lgpl.html>.\n"
  },
  {
    "path": "README.md",
    "content": "# gnnwr\n\n![PyPI - License](https://img.shields.io/pypi/l/gnnwr)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/gnnwr)\n[![PyPI - Version](https://img.shields.io/pypi/v/gnnwr)](https://pypi.org/project/gnnwr/)\n[![Downloads](https://static.pepy.tech/badge/gnnwr)](https://pepy.tech/project/gnnwr)\n\n\nA PyTorch implementation of the spatiotemporal intelligent regression (STIR) models and the repository contains:\n\n1. Source code of GNNWR, GTNNWR model, and other derived models\n2. Tutorial notebooks of how to use these model\n3. Released Python wheels\n\nHow to cite:  \n> Du, Z., Wang, Z., Wu, S., Zhang, F., & Liu, R. (2020). Geographically neural network weighted regression for the accurate estimation of spatial non-stationarity. International Journal of Geographical Information Science, 34(7), 1353-1377.\n\n> Wu, S., Wang, Z., Du, Z., Huang, B., Zhang, F., & Liu, R. (2021). Geographically and temporally neural network weighted regression for modeling spatiotemporal non-stationary relationships. International Journal of Geographical Information Science , 35(3), 582-608.\n\n> Yin, Z., Ding, J., Liu, Y., Wang, R., Wang, Y., Chen, Y., Qi, J., Wu, S., and Du, Z. (2024). GNNWR: an open-source package of spatiotemporal intelligent regression methods for modeling spatial and temporal nonstationarity. Geoscientific Model Development, 17 (22), 8455–8468.\n\n## Table of Contents\n\n- [Introduction](#1-Introduction)\n- [Models](#2-Models)\n- [Install & Usage](#3-Install-&-Usage)\n- [Research Cases](#4-Research-Cases)\n- [Reference](#5-Reference)\n- [Contributing](#6-Contributing)\n- [License](#7-License)\n\n## 1 Introduction\n\nSpatiotemporal non-stationarity is an intrinsic attribute of most geographical processes, and its estimation is a key issue in modeling spatiotemporal non-stationary relationships. To characterize spatiotemporal non-stationary relationships, we converted the expression of geographical proximity and the nonlinear fitting of non-stationary weights into the representation and construction of neural networks, and established a series of **spatiotemporal intelligent regression (STIR)** models, including geographically neural network weighted regression (**GNNWR**), and geographically and temporally neural network weighted regression (**GTNNWR**). \n\nThe model performance is significantly better than classical spatiotemporal regression methods such as geographically weighted regression (GWR) and geographically and temporally weighted regression (GTWR), as well as machine learning methods such as neural networks and random forests. The STIR models have been applied in ecological environment modeling, atmospheric pollutant estimation, urban housing price research and other fields. These researches have been published in journals of *International Journal of Geographical Information Science*, *Environmental Science & Technology*, *Environmental Pollution*, *Science of The Total Environment*, and *International Journal of Applied Earth Observation and Geoinformation*.\n\n## 2 Models\n\n### 2.1 GNNWR\n\n[GNNWR](https://doi.org/10.1080/13658816.2019.1707834) (Geographically neural network weighted regression) is a model to address spatial non-stationarity in various domains with complex geographical processes. A spatially weighted neural network (SWNN) is proposed to represent the nonstationary weight matrix and to achieve local estimation by weighted least squares with these weights. With the superior fitting ability of the neural network, GNNWR has a well-constructed nonstationary weight matrix, which makes it possible to better describe the complex geo-processes in environment and urban research.\n\n<p align=\"center\">\n<img title=\"GNNWR\" src=\"assets/The_estimation_process_of_GNNWR_model.jpeg\" alt=\"GNNWR\" width=75%>\n</p>\n\n> Du, Z., Wang, Z., Wu, S., Zhang, F., & Liu, R. (2020). Geographically neural network weighted regression for the accurate estimation of spatial non-stationarity. *International Journal of Geographical Information Science*, 34(7), 1353-1377.\n\n### 2.2 GTNNWR\n\n[GTNNWR](https://doi.org/10.1080/13658816.2020.1775836) (Geographically and temporally neural network weighted regression), is a model for estimating spatiotemporal non-stationary relationships. Due to the existence of spatiotemporal non-stationary, the spatial relationships of features exhibit significant differences with changes in spatiotemporal structure. The calculation of spatiotemporal distance is an important aspect of solving spatiotemporal non-stationary problems. Therefore, this model introduces spatiotemporal distance into the GNNWR model and proposes a spatiotemporal proximity neural network (STPNN) to accurately calculate spatiotemporal distance. Collaborate with SWNN in the GNNWR model to calculate the spatiotemporal non-stationary weight matrix, thereby achieving accurate modeling of spatiotemporal non-stationary relationships.\n\n<p align=\"center\">\n<img title=\"GTNNWR\" src=\"assets/The_estimation_process_of_GTNNWR_model.jpeg\" alt=\"GTNNWR\" width=75%>\n</p>\n\n> Wu, S., Wang, Z., Du, Z., Huang, B., Zhang, F., & Liu, R. (2021). Geographically and temporally neural network weighted regression for modeling spatiotemporal non-stationary relationships. *International Journal of Geographical Information Science* , 35(3), 582-608.\n\n## 3 Install & Usage\n\n### 3.1 Install\n\n**⚠ If you want to run gnnwr with your GPU, make sure you have installed *pytorch with CUDA support* beforehead:**\n\nFor example, a torch 1.13.1 with cuda 11.7:\n\n``` bash\n> pip list | grep torch\ntorch                   1.13.1+cu117\n```\n\nYou can find install support on [Pytorch's official website](https://pytorch.org/)  for installing the right version that suits your environment.\n\n**⚠ If you only want to run gnnwr with your CPU, or you have already installed the correct version of pytorch:**\n\nUsing pip to install gnnwr:  \n\n```\npip install gnnwr\n```\n\n### 3.2 Usage\n\nWe provide a series of encapsulated methods and predefined default parameters, users only need to use to load dataset with `pandas` , and call the functions in `gnnwr` package to complete the regression:\n\n```python\nfrom gnnwr import models,datasets\nimport pandas as pd\n\ndata = pd.read_csv('your_data.csv')\n\ntrain_dataset, val_dataset, test_dataset = datasets.init_dataset(data=data,\n                                                                 test_ratio=0.2, valid_ratio=0.1,\n                                                                 x_column=['x1', 'x2'], y_column=['y'],\n                                                                 spatial_column=['u', 'v'])\n\ngnnwr = models.GNNWR(train_dataset, val_dataset, test_dataset)\n\ngnnwr.run(100)\n```\n\nFor other uses of customization, the [demos](https://github.com/zjuwss/gnnwr/tree/main/demo) can be referred to.\n\n## 4 Research Cases\n\n### 4.1 Atmospheric Environment\n\n#### 4.1.1 Air pollution of PM2.5\n\nAir pollution, especially the measurement of PM2.5, has recently been a popular research topic in China. Using the data of PM2.5 which is collected by separated stations and considering the complicated terrain variability and wide geographical scope in China, the work of estimating and mapping the PM2.5 distributions across China with high accuracy and reasonable details is challenged by significant spatial nonstationary and complex nonlinearity. GNNWR model can obtain spatially continuous PM2.5 estimates in China with the processed data of AOD, DEM, as well as some climate factors. The estimation of PM2.5 is closer to the ground observation than the results of the traditional regression model, and it is more accurate in the high-value zone and more detailed.\n\n<p align=\"center\">\n<img title=\"PM 2.5\" src=\"assets/figure_PM25.png\" alt=\"PM25\" width=75%>\n</p>\n\n> Chen, Y., Wu, S., Wang, Y., Zhang, F., Liu, R., & Du, Z. (2021). Satellite-based mapping of high-resolution ground-level pm2. 5 with VIIRS IP AOD in China through spatially neural network weighted regression. *Remote Sensing*, *13*(10), 1979.\n\n#### 4.1.2 Air pollution of NO2\n\nThis study utilized TROPOMI remote sensing data, ground observation data, and other ancillary data to construct a high-resolution spatiotemporal distribution and evaluation of ground-level NO2 concentrations in the Beijing–Tianjin–Hebei region using the GTNNWR model. The results demonstrated that the GTNNWR model outperformed the Random Forest (RF), and Convolutional Neural Network (CNN) models in performance metrics, showcasing greater reliability when considering spatiotemporal non-stationarity. This study provides crucial data support and reference for atmospheric environmental management and pollution prevention and control in the Beijing–Tianjin– Hebei region.\n\n<p align=\"center\">\n<img title=\"NO2\" src=\"assets/figure_NO2.png\" alt=\"NO2\" width=75%>\n</p>\n\n> Liu, C., Wu, S., Dai, Z., Wang, Y., Du, Z., Liu, X., & Qiu, C. (2023). High-Resolution Daily Spatiotemporal Distribution and Evaluation of Ground-Level Nitrogen Dioxide Concentration in the Beijing–Tianjin–Hebei Region Based on TROPOMI Data. *Remote Sensing*, *15*(15), 3878.\n\n### 4.2 Coastal and Oceanic Environment\n\n#### 4.2.1 Water quality\n\nThe accurate assessment of large-scale and complex coastal waters is a grand challenge due to the spatial non-stationarity and complex nonlinearity involved in integrating remote sensing and in situ data. We developed a water quality assessment method based on a newly proposed GNNWR model to address that challenge and obtained a highly accurate and realistic water quality distribution on the basis of the comprehensive index of Chinese Water Quality Classification Standards. The GNNWR model achieved higher prediction performance (average R2 = 84%) in comparison to the widely used models, and the obtained water quality classification (WQC) maps in May of 2015–2017 and August 2015 can depict intuitively reasonable spatiotemporal patterns of water quality in the ZCS. \n\n<p align=\"center\">\n<img title=\"WaterQuality\" src=\"assets/figure_WaterQuality.jpg\" alt=\"WaterQuality\" width=75%>\n</p>\n\n> Du, Z., Qi, J., Wu, S., Zhang, F., & Liu, R. (2021). A spatially weighted neural network based water quality assessment method for large-scale coastal areas. *Environmental science & technology*, *55*(4), 2553-2563.\n\n#### 4.2.2 Coastal Environment\n\nTransferring dissolved silicate (DSi) from land to coastal environments is vital for global biogeochemical cycling. Yet pinpointing coastal DSi distribution is complex due to spatiotemporal variability, nonlinear modeling, and low sampling resolution. GTNNWR model, by converting the spatiotemporal relationships between sparse sampling points and unknown points into space-time distances and weights, and using neural networks to determine the nonlinear distances and nonstationary weights, outperforms traditional regression models in both fitting accuracy and generalization ability. This effective data-driven-based method can help explore the fine-scale dynamic changes in coastal seas like surface DSi.\n\n<p align=\"center\">\n<img title=\"DSI\" src=\"assets/figure_DSI.jpg\" alt=\"DSI\" width=75%>\n</p>\n\n> Qi, J., Du, Z., Wu, S., Chen, Y., & Wang, Y. (2023). A spatiotemporally weighted intelligent method for exploring fine-scale distributions of surface dissolved silicate in coastal seas. _Science of The Total Environment_ , 886, 163981.\n\n\n#### 4.2.3 Surface Seawater pCO2\n\nThe North Pacific Ocean is a key carbon sink, but the spatiotemporal dynamics of carbon dioxide (pCO2) remain poorly understood due to its vast scale and complex influences. Existing machine learning models lack interpretability, limiting insights into underlying mechanisms. To address this, we introduce the gridded spatiotemporal neural network weighted regression (GSTNNWR) model, which accurately predicts surface pCO2 while quantifying environmental influences. \n\n> Liu, Y., Chen, Y., Huang, Z., Liang, H., Qi, J., Wu, S., & Du, Z. (2024). Spatiotemporal weighted neural network reveals surface seawater pCO2 distributions and underlying environmental mechanisms in the North Pacific Ocean. *International Journal of Applied Earth Observation and Geoinformation*, 133, 104120.\n\n### 4.3 Social Science\n\n#### 4.3.1 House price\n\nHousing prices are closely related to the lives of new urban residents, and they also comprise a vital economic index to which the government needs to pay close attention. Compare with traditional regression models, GNNWR and GTNNWR model can improve the accuracy of real estate appraisal with the help of neural networks, which are practical and powerful ways to assess house prices.\n\nAn optimized spatial proximity measure was integrated into GNNWR. The optimized spatial proximity fusions multiple distance measures, imporving its ability in modeling spatial-nonstationary process.\n\n<p align=\"center\">\n<img title=\"OSP\" src=\"assets/figure OSP.JPG\" alt=\"OSP\" width=75%>\n</p>\n\n> Ding, J., Cen, W., Wu, S., Chen, Y., Qi, J., Huang, B., & Du, Z. (2024). A neural network model to optimize the measure of spatial proximity in geographically weighted regression approach: a case study on house price in Wuhan. *International Journal of Geographical Information Science*, 1–21.\n\nBy using an attention-based architecture to incorporate context similarity into spatial non-stationarity estimation, house prices can be better fitted in complex urban area.\n\n<p align=\"center\">\n<img title=\"OSP\" src=\"assets/figure_CatGWR.jpg\" alt=\"CatGWR\" width=75%>\n</p>\n\n> Wu, S., Ding, J., Wang, R., Wang, Y., Yin, Z., Huang, B., & Du, Z. (2025). Using an attention-based architecture to incorporate context similarity into spatial non-stationarity estimation. *International Journal of Geographical Information Science*, 1–24\n\n<p align=\"center\">\n<img title=\"HousePrice\" src=\"assets/figure_HousePrice.png\" alt=\"HousePrice\" width=75%>\n</p>\n\n> Wang, Z., Wang, Y., Wu, S., & Du, Z. (2022). House Price Valuation Model Based on Geographically Neural Network Weighted Regression: The Case Study of Shenzhen, China. *ISPRS International Journal of Geo-Information*, *11*(8), 450.\n\n#### 4.3.2 Land Surface Temperature & Nighttime Light\n\nSpatial downscaling is an important approach to obtain high-resolution land surface temperature (LST) for thermal environment research. A high-resolution surface temperature downscaling method based on GNNWR was developed to effectively handle the problem of surface temperature downscaling. The results show that the proposed GNNWR model achieved superior downscaling accuracy compared to widely used methods in four test areas with large differences in topography, landforms, and seasons. The findings suggest that GNNWR is a practical method for surface temperature downscaling considering its high accuracy and model performance.\n\n<p align=\"center\">\n<img title=\"LST\" src=\"assets/figure_LST.png\" alt=\"LST\" width=75%>\n</p>\n\n> Liang, M., Zhang, L., Wu, S., Zhu, Y., Dai, Z., Wang, Y., ... & Du, Z. (2023). A High-Resolution Land Surface Temperature Downscaling Method Based on Geographically Weighted Neural Network Regression. *Remote Sensing*, *15*(7), 1740.\n\nDownscaling nighttime light (NTL) from satellite imagery is crucial for urban expansion and socio-economic studies but faces challenges due to geographical complexity and factor uncertainties. To address this, we propose the multifactor geographically neural network weighted regression (MF-GNNWR) framework, which integrates surface, socio-economic, and human activity factors to enhance NTL accuracy in heterogeneous urban areas.\n\n> Zhang, L., Wu, S., Liang, M., Jing, H., Shi, S., Zhu, Y., ... & Du, Z. (2024). A Downscaling Framework for Urban Nighttime Light Based on Multi-Factor Geographically Neural Network Weighted Regression. IEEE Transactions on Geoscience and Remote Sensing.\n\n#### 4.3.3 Public health\n\nAccurate prediction of epidemic trends is central to COVID-19 research and mitigation. To address this, GTNNWR model is employed to predict deaths and assess preventive scenarios. Leveraging its ability to capture complex spatiotemporal variations, the GTNNWR model demonstrates superior predictive capacity, outperforming the conventional SEIR model by approximately 9%. Simulation results reveal that while masks are the most effective single measure, combined interventions are significantly more potent, reducing deaths by 27.2% overall and up to 45% during winter. These findings provide critical quantitative insights for optimizing epidemic control strategies in the United States.\n\n<p align=\"center\">\n<img title=\"LST\" src=\"assets/figure_covid_19.png\" alt=\"covid_19\" width=75%>\n</p>\n\n> Sun, J., Qi, J., Yan, Z., Li, Y., Liang, J., & Wu, S. (2024). Quantitative Study on American COVID-19 Epidemic Predictions and Scenario Simulations. ISPRS International Journal of Geo-Information, 13(1), 31.\n\n### 4.4 Geology\n\n#### 4.4.1 mineral prospectivity\n\nIn the field of mineral forecasting, accurate prediction of mineral resources is essential to meet the energy needs of modern society. A geographically neural network-weighted logistic regression is used for mineral prospect mapping. The model combines spatial patterns and neural networks with Shapley's additive theory of interpretation, which effectively handles the anisotropy of variables and nonlinear relationships between variables to achieve accurate predictions and provide explanations of mineralization in a complex spatial environment.\n\n<p align=\"center\">\n<img title=\"mineral prospectivity\" src=\"assets/figure_mine.jpg\" alt=\"mineral prospectivity\" width=75%>\n</p>\n\n> Wang, L., Yang, J., Wu, S., Hu, L., Ge, Y., & Du, Z. (2024). Enhancing mineral prospectivity mapping with geospatial artificial intelligence: A geographically neural network-weighted logistic regression approach. *International Journal of Applied Earth Observation and Geoinformation*, 128, 103746.\n\n### 4.4.2 heat flow\n\nSurface heat flow (SHF) is crucial for understanding Earth's internal geodynamics. The Tibetan Plateau, a key region for global climate and geodynamic studies, lacks comprehensive SHF data due to sparse measurements. To address this, we develop the geographically neural network weighted regression with enhanced interpretability (EI-GNNWR), which integrates spatial heterogeneity and nonlinear geophysical interactions. Our model accurately predicts SHF across the plateau, revealing that high SHF values are concentrated in the south, northeast, and southeast, influenced by Moho depth, ridges, and topography. These findings enhance understanding of geothermal processes and tectonic activity in the region.\n\n<p align=\"center\">\n<img title=\"DSI\" src=\"assets/figure_SHF.jpg\" alt=\"SHF\" width=75%>\n</p>\n\n> Zhang, Z., Wu, S., Zhang, B., Du, Z., & Xia, Q. (2024). The distribution of surface heat flow on the Tibetan Plateau revealed by data‐driven methods. *Journal of Geophysical Research: Solid Earth*, 129(10), e2023JB028491.\n\n### 4.5 Planetary Science\n\n#### 4.5.1 Brightness temperature\n\nBrightness temperature (TB) derived from Chang’e microwave radiometers is crucial for understanding lunar subsurface thermal evolution. However, generating high-resolution maps is challenging due to sparse sampling and the neglect of surface factors in conventional methods. To address this, we utilized GNNWR framework effectively captures spatial nonstationarity and heterogeneity. It accurately generates TB maps at $0.0625^\\circ$ resolution, achieving superior performance with the highest $R^2$ and lowest error metrics. These findings reveal fine-scale thermal features obscured by traditional interpolation, enhancing microwave emission analysis and geological understanding.\n\n<p align=\"center\">\n<img title=\"mineral prospectivity\" src=\"assets/figure_planetary.png\" alt=\"planetary\" width=75%>\n</p>\n\n> Zhu, M., Cai, Z., Wu, S., Zhang, Y., & Li, J. (2025). High-resolution lunar brightness temperature model based on Chang’e-2 MRM data and spatially weighted neural network. IEEE Transactions on Geoscience and Remote Sensing, 63, 1-13.\n\n\n**!!Further, these spatiotemporal intelligent regression models can be applied to other spatiotemporal modeling problems and socioeconomic phenomena.**\n\n## 5 Related Research Papers\n\n### 5.1 Algorithm  \n\n1. Du, Z., Wang, Z., Wu, S., Zhang, F., & Liu, R. (2020). Geographically neural network weighted regression for the accurate estimation of spatial non-stationarity. *International Journal of Geographical Information Science*, 34(7), 1353-1377.  \n2. Wu, S., Wang, Z., Du, Z., Huang, B., Zhang, F., & Liu, R. (2021). Geographically and temporally neural network weighted regression for modeling spatiotemporal non-stationary relationships. *International Journal of Geographical Information Science* , 35(3), 582-608.\n3. Dai, Z., Wu, S., Wang, Y., Zhou, H., Zhang, F., Huang, B., & Du, Z. (2022). Geographically convolutional neural network weighted regression: A method for modeling spatially non-stationary relationships based on a global spatial proximity grid. *International Journal of Geographical Information Science*, *36*(11), 2248-2269.\n\n### 5.2 Case study demo\n1. Chen, Y., Wu, S., Wang, Y., Zhang, F., Liu, R., & Du, Z. (2021). Satellite-based mapping of high-resolution ground-level pm2. 5 with VIIRS IP AOD in China through spatially neural network weighted regression. *Remote Sensing*, *13*(10), 1979.\n2. Qi, J., Du, Z., Wu, S., Chen, Y., & Wang, Y. (2023). A spatiotemporally weighted intelligent method for exploring fine-scale distributions of surface dissolved silicate in coastal seas. *Science of The Total Environment* , 886, 163981.\n3. Du, Z., Qi, J., Wu, S., Zhang, F., & Liu, R. (2021). A spatially weighted neural network based water quality assessment method for large-scale coastal areas. *Environmental science & technology*, *55*(4), 2553-2563.\n4. Liang, M., Zhang, L., Wu, S., Zhu, Y., Dai, Z., Wang, Y., ... & Du, Z. (2023). A High-Resolution Land Surface Temperature Downscaling Method Based on Geographically Weighted Neural Network Regression. *Remote Sensing*, *15*(7), 1740.\n5. Liu, C., Wu, S., Dai, Z., Wang, Y., Du, Z., Liu, X., & Qiu, C. (2023). High-Resolution Daily Spatiotemporal Distribution and Evaluation of Ground-Level Nitrogen Dioxide Concentration in the Beijing–Tianjin–Hebei Region Based on TROPOMI Data. *Remote Sensing*, *15*(15), 3878.\n6. Wang, Z., Wang, Y., Wu, S., & Du, Z. (2022). House Price Valuation Model Based on Geographically Neural Network Weighted Regression: The Case Study of Shenzhen, China. *ISPRS International Journal of Geo-Information*, *11*(8), 450.\n7. Wu, S., Du, Z., Wang, Y., Lin, T., Zhang, F., & Liu, R. (2020). Modeling spatially anisotropic nonstationary processes in coastal environments based on a directional geographically neural network weighted regression. *Science of the Total Environment*, *709*, 136097.\n8. Wang, L., Yang, J., Wu, S., Hu, L., Ge, Y., & Du, Z. (2024). Enhancing mineral prospectivity mapping with geospatial artificial intelligence: A geographically neural network-weighted logistic regression approach. *International Journal of Applied Earth Observation and Geoinformation*, 128, 103746.\n9. Ding, J., Cen, W., Wu, S., Chen, Y., Qi, J., Huang, B., & Du, Z. (2024). A neural network model to optimize the measure of spatial proximity in geographically weighted regression approach: a case study on house price in Wuhan. *International Journal of Geographical Information Science*, 1–21. \n10. Zhu, M., Cai, Z., Wu, S., Zhang, Y., & Li, J. (2025). High-resolution lunar brightness temperature model based on Chang’e-2 MRM data and spatially weighted neural network. IEEE Transactions on Geoscience and Remote Sensing, 63, 1-13.\n11. Sun, J., Qi, J., Yan, Z., Li, Y., Liang, J., & Wu, S. (2024). Quantitative Study on American COVID-19 Epidemic Predictions and Scenario Simulations. ISPRS International Journal of Geo-Information, 13(1), 31.\n\n\n## 6 Group\n\n### Leaders\n\n<table>\n  <tr>\n    <td width=\"25%\">\n      <img src=\"assets/professor_du.jpg\" width=\"150\" alt=\"Zhenhong Du\">\n    </td>\n    <td width=\"75%\">\n\n#### Zhenhong Du\n- Ph.D\n- Professor/ Ph.D Supervisor\n- The National Science Fund for Distinguished Young Scholars\n- Dean of the School of Earth sciences\n- Zhejiang University\n  \n    </td>\n  </tr>\n  <tr>\n    <td>\n      <img src=\"assets/professor_wu.png\" width=\"150\" alt=\"Sensen Wu\">\n    </td>\n    <td>\n\n#### Sensen Wu\n- Ph.D\n- Professor/ Ph.D Supervisor\n- Zhejiang University\n\n    </td>\n  </tr>\n</table>\n\n\n### Members\n- Jin Qi, Postdoctoral fellow, Zhejiang University\n- Yijun Chen, Postdoctoral fellow, Zhejiang University\n- Jiale Ding, PhD student, Zhejiang University\n- Yi Liu, Undergraduate student, Zhejiang University\n- Ziyu Yin, Undergraduate student, Zhejiang University\n- Yancheng Wu, PhD student, Zhejiang University\n- Jingwen Zhong, Graduate student, Zhejiang University\n- Yige Wang, Graduate student, Zhejiang University\n- Bei Feng, Undergraduate student, Zhejiang University\n\n## 7 License\n[GPLv3 license](https://github.com/zjuwss/gnnwr/blob/main/LICENSE)\n"
  },
  {
    "path": "data/co2_gnnwr.csv",
    "content": "﻿fCO2,Chl,Temp,Salt,lon,lat\n386.6210769,0.652422786,10.99645138,33.25679231,235.625,44.625\n390.2838551,1.445977211,10.75580597,33.37335944,235.875,44.625\n381.7552222,0.85841167,10.98741913,33.24209154,235.625,44.375\n386.9113333,0.528669178,11.32999992,32.98632205,235.125,44.125\n382.5342,0.648165762,11.15483856,33.05464637,235.375,44.125\n370.28275,1.254270673,10.86838722,33.1229707,235.625,44.125\n383.957,0.584808469,11.29354763,32.93566072,235.125,43.875\n376.3577368,1.465514779,10.69967747,33.00384986,235.625,43.875\n378.44708,0.560379326,11.44096756,32.85102713,234.875,43.625\n381.147,0.702825904,11.17709637,32.88499939,235.125,43.625\n348.8041818,0.991253138,10.84290314,32.88486421,235.375,43.625\n357.765,2.935527325,10.58580589,32.88472903,235.625,43.625\n375.3675833,0.619520426,11.22290325,32.86219531,234.875,43.375\n380.2048462,1.27894485,10.65903187,32.87690896,235.375,43.375\n409.1735556,0.923546791,10.89387035,32.91904253,234.875,43.125\n399.52175,1.832567334,10.50322533,32.94588953,235.375,43.125\n486.7694286,0.692904532,10.65999985,32.97588974,234.875,42.875\n427.0227273,0.856589258,10.52290344,33.00970346,235.125,42.875\n482.8573846,0.774920166,10.57967758,33.03273696,234.875,42.625\n433.9548571,0.813277543,10.60032272,33.04260588,234.875,42.375\n433.3903939,0.800426304,10.63806438,33.0054965,234.875,42.125\n413.1546774,0.777915537,10.67838669,32.96838713,234.875,41.875\n418.4410652,0.800702929,10.74354839,32.93127775,234.875,41.625\n431.512,0.762529731,10.84354782,32.91182047,234.875,41.375\n422.6084318,0.772762179,10.93870926,32.91001529,234.875,41.125\n454.153,0.845942974,11.00290298,32.98121208,235.125,41.125\n443.8956667,0.83403188,10.99903202,32.9082101,234.875,40.875\n425.52832,0.95161891,11.00354862,32.97584349,235.125,40.875\n443.5496129,0.762761235,11.03354836,32.9704749,235.125,40.625\n408.4764694,0.794355094,11.10322571,32.94990969,235.125,40.375\n428.219,0.843857408,11.26064491,32.91414785,235.125,40.125\n422.3205429,0.832743943,11.610322,32.87838602,235.125,39.875\n382.5345,0.698340595,11.46096706,32.94010496,235.375,39.875\n432.0387619,0.703879774,11.96258068,32.90194178,235.375,39.625\n421.9070417,0.641447723,12.50838661,32.88194317,235.375,39.375\n451.8331111,0.623298287,12.13806438,32.94189936,235.625,39.375\n450.5529459,0.598986745,12.37322521,32.94374388,235.625,39.125\n443.9650667,0.700700045,12.3264513,32.94558841,235.625,38.875\n446.5770909,0.826242626,11.87483883,33.01290172,235.875,38.875\n459.5530566,0.66432482,11.78290272,33.01842481,235.875,38.625\n597.085,0.629125059,11.73774147,33.03323042,235.875,38.375\n442.3752,0.686998367,11.54903221,33.06640166,236.125,38.375\n327.2280826,1.116143703,12.47064495,33.86183542,141.125,38.125\n339.7666259,0.638028741,12.41580582,33.89577371,141.375,38.125\n344.7441939,0.470972329,12.33612919,33.929712,141.625,38.125\n427.0186857,0.700475812,11.73451614,33.09004742,236.125,38.125\n419.28,0.694691896,11.52096748,33.09324044,236.375,38.125\n333.4655416,1.00600183,12.58870888,33.90694863,141.125,37.875\n395.7047561,0.676154852,12.15451622,33.20107251,236.625,37.375\n396.9765,0.889159977,11.91258049,33.2223472,236.875,37.375\n337.3444133,0.568876088,13.22032261,34.07441145,141.125,37.125\n394.5484468,0.812258363,12.0158062,33.25716668,236.875,37.125\n409.8105,1.370796323,12.01677418,33.29198617,236.875,36.875\n404.1582222,2.620482445,11.80806446,33.30929452,237.125,36.875\n401.9309286,3.283119678,11.84774208,33.34726137,237.125,36.625\n389.9855094,2.997110605,11.91967678,33.37424803,237.375,36.375\n380.0154286,3.103065252,12.10193539,33.38224554,237.375,36.125\n413.2549864,1.638160229,12.21935463,33.39459276,237.625,36.125\n419.7809714,1.419725776,12.34806442,33.40693998,237.875,36.125\n394.7661579,1.174431086,12.42387104,33.4081521,237.625,35.875\n395.73136,1.518957615,12.61548328,33.42606115,237.875,35.875\n398.29,0.789995015,12.8106451,33.44518232,237.875,35.625\n407.0763047,0.753415346,12.99354839,33.47390145,238.125,35.625\n354.1616333,0.367518932,19.60258102,34.55290238,139.625,35.125\n375.5122692,0.526501238,18.90258026,34.54167524,139.875,35.125\n363.46825,0.298557192,20.33419228,34.61707058,139.125,34.875\n358.9342619,0.233420581,20.52709579,34.60301417,139.625,34.875\n363.8619577,0.334835827,20.33870888,34.59044981,138.625,34.625\n363.631,0.269536883,20.97935486,34.61141825,138.875,34.625\n374.1395,0.23987788,21.17354774,34.62647542,139.125,34.625\n361.0394074,0.215292707,21.44903183,34.6432679,139.625,34.625\n353.6753333,0.226841986,21.45645142,34.6508645,139.875,34.625\n356.418,0.256305099,21.68774223,34.58561605,138.375,34.375\n362.5385,0.268561363,21.61645126,34.605084,138.625,34.375\n355.419,0.220162794,22.09709549,34.6707437,139.625,34.375\n353.4092034,0.239866778,21.85612869,34.61522329,135.125,33.125\n343.935,0.209579766,22.17741966,34.70679539,137.375,33.125\n344.204,0.139449701,22.5338707,34.71833974,137.625,33.125\n358.0715625,0.151727259,22.88967705,34.77903998,140.125,33.125\n354.2584561,0.21209012,22.02387047,34.63010943,135.125,32.875\n349.6036667,0.239118323,21.85128975,34.73804837,137.375,32.875\n345.6535,0.199910104,22.25387001,34.75057,137.625,32.875\n356.1305106,0.148554534,22.90935516,34.79552305,140.125,32.875\n354.9177115,0.190119058,22.34225845,34.64499557,135.125,32.625\n356.9967956,0.188525692,22.27451515,34.66478312,135.375,32.625\n362.3306667,0.217116162,22.15580559,34.68457067,135.625,32.625\n349.2573333,0.160922438,22.04903221,34.78280026,137.625,32.625\n356.945,0.160553813,22.90580559,34.81200612,140.125,32.625\n358.6992667,0.160065264,22.79516029,34.81339967,140.375,32.625\n362.3210526,0.174743235,22.58032227,34.71663439,135.625,32.375\n348.37175,0.193202153,22.08322525,34.80547982,137.625,32.375\n356.2786667,0.161141291,22.90580559,34.8270309,140.125,32.375\n356.5392609,0.169143364,22.79129028,34.82862782,140.375,32.375\n363.1657143,0.1770643,23.02290344,34.75173748,135.625,32.125\n363.4805385,0.177135378,22.86161232,34.76785052,135.875,32.125\n350.6966667,0.20159705,22.45096779,34.8186087,137.625,32.125\n355.3523333,0.14949432,22.93128967,34.84059739,140.125,32.125\n357.3502766,0.166677341,22.81774139,34.84203124,140.375,32.125\n359.0745,0.144226834,23.1687088,34.79814756,135.875,31.875\n349.8243333,0.175352529,22.95516014,34.83173758,137.625,31.875\n352.093,0.185282171,22.97806358,34.83768147,137.875,31.875\n355.803,0.166609749,22.95516014,34.85416389,140.125,31.875\n357.2792609,0.164751381,22.85741806,34.85543466,140.375,31.875\n358.959,0.161427766,22.73064423,34.85670543,140.625,31.875\n349.6608,0.158210337,23.30935478,34.84759289,137.875,31.625\n350.0115,0.170155644,23.25064468,34.84914464,138.125,31.625\n357.642,0.159329191,22.93774223,34.86773038,140.125,31.625\n359.3964792,0.150728822,22.7838707,34.86994576,140.625,31.625\n358.6545455,0.140397489,23.26322556,34.85100675,136.125,31.375\n349.7948,0.163885668,23.34290314,34.86022097,138.125,31.375\n356.356,0.151295707,22.8599987,34.87887579,140.125,31.375\n359.150449,0.156383485,22.81225777,34.88080817,140.625,31.375\n358.9510714,0.145129293,23.26612854,34.86098742,136.125,31.125\n360.1028571,0.151361614,23.31258011,34.86522222,136.375,31.125\n349.7944,0.162657544,23.37483788,34.87482244,137.625,31.125\n351.650125,0.174042374,23.33290291,34.87442774,137.875,31.125\n349.8773125,0.159847841,23.26741982,34.87389678,138.125,31.125\n354.836,0.161146253,22.79129028,34.88760012,140.125,31.125\n358.294,0.153002307,22.82548332,34.88929266,140.625,31.125\n358.1408039,0.14689602,23.29354858,34.877527,136.375,30.875\n348.327,0.151153341,23.29096794,34.8904168,137.625,30.875\n349.3412,0.153882354,23.20645142,34.88757259,138.125,30.875\n348.3734,0.153757185,23.09451485,34.88609308,138.375,30.875\n354.663,0.172214702,22.75612831,34.89632446,140.125,30.875\n357.5614,0.171143934,22.82645035,34.89777714,140.625,30.875\n357.3098571,0.179880515,22.8245163,34.89850348,140.875,30.875\n360.0473333,0.161677867,23.31838608,34.88983178,136.375,30.625\n362.0612609,0.166686282,23.32386971,34.89871478,136.625,30.625\n351.0672,0.15953815,23.29516029,34.90601116,137.625,30.625\n354.6536667,0.170713082,22.79677391,34.90504879,140.125,30.625\n357.4188913,0.166496009,22.81290245,34.90686804,140.875,30.625\n362.3230392,0.164716259,23.31903267,34.91402102,136.625,30.375\n352.6014,0.151165366,23.30838585,34.92440993,137.375,30.375\n355.1753333,0.178886801,22.8848381,34.9143585,140.125,30.375\n357.4406957,0.15408501,22.8064518,34.90970862,140.875,30.375\n363.1984839,0.141294256,23.32903099,34.9300046,136.625,30.125\n358.3723333,0.148876563,23.31193542,34.93782949,136.875,30.125\n353.20575,0.147481158,23.29516029,34.93978232,137.375,30.125\n356.0073333,0.173176974,22.99258041,34.92425358,140.125,30.125\n358.7443333,0.15671742,22.80709648,34.90702522,140.875,30.125\n360.4317647,0.144611701,23.35257912,34.95233297,136.875,29.875\n351.841,0.151760042,23.31290245,34.95515472,137.375,29.875\n357.2266667,0.153832644,23.10806465,34.93414867,140.125,29.875\n357.999,0.151245132,23.04322433,34.92421305,140.375,29.875\n363.6272571,0.122833639,23.39193535,34.96683645,136.875,29.625\n364.3672667,0.138334736,23.34709549,34.96968824,137.125,29.625\n353.3693333,0.144111902,23.28870964,34.97052711,137.375,29.625\n359.567,0.130869687,23.09032249,34.92991531,140.375,29.625\n356.5171724,0.161206141,22.6461277,34.89130133,141.125,29.625\n361.7359412,0.12010105,23.34838676,34.97959507,137.125,29.375\n351.996,0.130754828,23.22838593,34.97996008,137.375,29.375\n354.114,0.130052418,23.1890316,34.9803251,137.625,29.375\n358.2473333,0.126403317,23.04612923,34.9277969,140.375,29.375\n356.8378298,0.174361944,22.61903191,34.88429451,141.125,29.375\n363.1960541,0.099801511,23.3803215,34.98510897,137.125,29.125\n363.7778667,0.107250452,23.21967697,34.98345363,137.375,29.125\n354.0664,0.125113666,23.12193489,34.98179829,137.625,29.125\n358.5466667,0.135929763,23.06386948,34.91785783,140.375,29.125\n357.7559167,0.166191235,22.71032143,34.87550926,141.125,29.125\n354.7508571,0.133956015,23.05387115,34.83651137,142.875,29.125\n364.8944038,0.092764996,23.28741837,34.98694718,137.375,28.875\n353.4211429,0.114299841,23.12741852,34.98327148,137.625,28.875\n353.144,0.136054337,23.02161217,34.97959578,137.875,28.875\n352.0404,0.140970454,22.95967674,34.97539723,138.125,28.875\n353.6186667,0.146909952,22.93290329,34.97067583,138.375,28.875\n353.7893333,0.137475312,23.15548325,34.90791875,140.375,28.875\n358.0438667,0.154482976,22.96935463,34.86672401,141.125,28.875\n356.3557105,0.152508795,22.89129066,34.86378098,141.375,28.875\n352.807,0.140800908,22.96580505,34.86083794,141.625,28.875\n354.05525,0.136538014,23.10645103,34.8578949,141.875,28.875\n360.7526667,0.130059719,23.28322601,34.85265708,142.125,28.875\n361.0423333,0.114130378,23.43870926,34.84512448,142.375,28.875\n359.3336667,0.123743214,23.4909668,34.83759189,142.625,28.875\n356.8853333,0.105885409,23.51677322,34.83005929,142.875,28.875\n358.8780714,0.098022021,23.4954834,34.82580483,143.125,28.875\n365.7810244,0.094572134,23.42258072,34.99044073,137.375,28.625\n367.4429,0.104183845,23.20451546,34.98474467,137.625,28.625\n353.813,0.153341308,22.88290215,34.96901906,138.375,28.625\n352.4802,0.145921156,22.85515976,34.96423137,138.625,28.625\n353.295,0.158232957,22.90032196,34.95944369,138.875,28.625\n353.5016667,0.139842182,22.94645119,34.95262015,139.125,28.625\n352.573,0.14199914,23.0203228,34.94376075,139.375,28.625\n353.2435,0.137581825,23.11354828,34.93490136,139.625,28.625\n352.3533333,0.128605202,23.21806335,34.92604196,139.875,28.625\n357.38108,0.136223957,23.30580521,34.91373473,140.125,28.625\n355.9608305,0.124522582,23.29612923,34.89797968,140.375,28.625\n363.5166667,0.128262639,23.30580521,34.88222462,140.625,28.625\n362.9343333,0.14908962,23.31903267,34.86646956,140.875,28.625\n355.7739783,0.160348728,23.25290298,34.85663223,141.375,28.625\n361.3593333,0.102441967,23.79096794,34.81907213,143.125,28.625\n365.49056,0.109990515,23.34161186,34.97864336,137.625,28.375\n358.177375,0.114776261,23.40258026,34.89981282,140.125,28.375\n362.0454468,0.136182621,23.53483772,34.84988481,141.375,28.375\n361.99875,0.100694351,23.94096756,34.81946272,143.125,28.375\n358.8056667,0.109133139,23.4864521,34.88204229,140.125,28.125\n362.993625,0.109109402,23.68193436,34.8435387,141.375,28.125\n359.9711333,0.093451381,24.00806427,34.82906151,142.875,28.125\n361.045,0.098532818,24.01225853,34.8269766,143.125,28.125\n366.9013333,0.131202415,23.47870827,34.9447971,137.875,27.875\n358.2288333,0.11113026,23.50128937,34.86427176,140.125,27.875\n364.378,0.118882261,23.7116127,34.8371926,141.375,27.875\n363.7535,0.135508433,23.81161308,34.84003204,141.625,27.875\n359.42475,0.098162621,24.00838661,34.8348484,142.875,27.875\n361.29344,0.133014023,23.61870956,34.93120593,137.875,27.625\n357.1523333,0.10909538,23.40322495,34.85662115,139.875,27.625\n362.9412245,0.110437714,23.85967636,34.83501703,141.625,27.625\n358.95575,0.114738964,23.99290276,34.8406353,142.875,27.625\n361.5905192,0.112575807,23.54161263,34.91353667,138.125,27.375\n354.4176667,0.105576814,23.37838745,34.84877634,139.875,27.375\n363.5055,0.089670703,24.0158062,34.83962208,141.625,27.375\n355.6806667,0.109046035,24.00677299,34.85363084,142.875,27.375\n364.9158654,0.106434196,23.66032219,34.90388286,138.125,27.125\n354.6406667,0.122366451,23.41032219,34.85162115,139.875,27.125\n362.7755778,0.082401142,24.10838699,34.85384721,141.625,27.125\n363.3036,0.088900261,24.20290184,34.8605476,141.875,27.125\n355.3278,0.089351833,24.02322578,34.87383503,142.875,27.125\n356.30625,0.085745431,24.02387047,34.87669915,143.125,27.125\n366.6954286,0.112622641,23.81258011,34.89422905,138.125,26.875\n366.8579574,0.113440886,23.71322441,34.89184701,138.375,26.875\n352.92575,0.114579186,23.48322487,34.85446596,139.875,26.875\n353.799,0.11925336,23.5225811,34.84975624,140.125,26.875\n364.9384,0.091492176,24.26838684,34.8760156,141.875,26.875\n354.6916,0.082634062,24.03741837,34.89403921,142.875,26.875\n369.2622424,0.113746062,23.79774094,34.88353074,138.375,26.625\n354.102,0.113208659,23.60451508,34.85731077,139.875,26.625\n366.9883061,0.097445659,24.34741783,34.8914836,141.875,26.625\n356.797,0.078615628,24.12354851,34.9142434,142.875,26.625\n368.6676,0.117891796,23.93580627,34.88348246,138.375,26.375\n368.7973778,0.117164031,23.86580658,34.88393545,138.625,26.375\n358.5416667,0.096713454,23.83354759,34.86607522,139.875,26.375\n365.6622,0.088710405,24.38161278,34.90833259,141.875,26.375\n361.3676667,0.074713074,24.31935501,34.9350605,142.875,26.375\n369.4036909,0.114971533,23.99903107,34.89381266,138.625,26.125\n361.1037,0.092461742,24.14548302,34.8807593,139.875,26.125\n363.6386667,0.091043435,24.44290352,34.886522,140.625,26.125\n368.475,0.083919056,24.48354721,34.88975388,140.875,26.125\n366.996,0.077831492,24.47935486,34.89639735,141.125,26.125\n363.122,0.073773794,24.6461277,34.95649052,142.875,26.125\n364.954,0.071144119,24.78032112,34.96028012,143.125,26.125\n369.4856154,0.119848728,24.18870926,34.90368986,138.625,25.875\n369.9457805,0.109378055,24.20677376,34.90745783,138.875,25.875\n360.3339091,0.084918603,24.54677391,34.89544338,139.875,25.875\n358.48875,0.087341525,24.6303215,34.89540344,140.125,25.875\n357.1263333,0.081193805,24.72161293,34.89929456,140.375,25.875\n370.458,0.076357633,24.75870895,34.91413236,141.125,25.875\n375.592,0.07243406,24.66096687,34.92435241,141.375,25.875\n366.21,0.074871935,24.57064438,34.93457246,141.625,25.875\n362.47275,0.07207875,24.57128906,34.94479251,141.875,25.875\n366.6640541,0.074140586,24.63387108,34.95390511,142.125,25.875\n365.442,0.071268886,24.73096657,34.96191025,142.375,25.875\n364.3636667,0.068577379,24.86709595,34.96991539,142.625,25.875\n362.76625,0.06033314,25.05129051,34.97792053,142.875,25.875\n363.425,0.057268236,25.22645187,34.98162538,143.125,25.875\n367.3897736,0.091920659,24.48161125,34.91899252,138.875,25.625\n366.9364375,0.061432168,24.94741821,34.97266293,142.125,25.625\n366.0247083,0.081911631,24.69903183,34.9280405,138.875,25.375\n365.6001333,0.071632303,24.85064507,34.92998469,139.125,25.375\n366.7538889,0.062269744,25.33161163,34.98288047,142.125,25.375\n367.6764,0.061068676,25.4458065,34.99068415,142.375,25.375\n366.6870755,0.072758749,25.05064392,34.93715656,139.125,25.125\n367.6270625,0.057233941,25.68967628,34.9892863,142.375,25.125\n366.4796667,0.076179817,25.31064415,34.94432843,139.125,24.875\n366.397,0.077267259,25.52193451,34.9434942,139.375,24.875\n368.8420638,0.055959929,25.82354736,34.98788846,142.375,24.875\n370.5638125,0.054513223,25.86677361,34.98649061,142.375,24.625\n371.124,0.052032314,25.96129036,34.98506892,142.625,24.625\n381.0144375,0.062507577,26.19709587,34.94984752,139.375,24.375\n381.407125,0.059697211,26.33516121,34.95016402,139.625,24.375\n372.234,0.051888611,26.04516029,34.97511178,142.625,24.375\n381.0958214,0.061959568,26.58386993,34.93851525,139.625,24.125\n375.7751915,0.050714802,26.17677307,34.95967048,142.625,24.125\n383.363913,0.060103681,26.71193504,34.92686647,139.625,23.875\n386.5752222,0.058720466,26.6958065,34.92664462,139.875,23.875\n377.7667805,0.052217029,26.39999962,34.94422919,142.625,23.875\n377.1741667,0.04796334,26.57580566,34.94385976,142.875,23.875\n383.6078491,0.057085048,26.76000023,34.91472667,139.875,23.625\n376.7179565,0.048231397,26.94967651,34.92945439,142.875,23.625\n376.1142264,0.058399204,26.89322472,34.89887446,139.875,23.375\n372.4671915,0.048170406,27.33516121,34.91342568,142.875,23.375\n378.93,0.057329629,27.11257935,34.87908798,139.875,23.125\n373.7631176,0.053714387,27.05709648,34.87960094,140.125,23.125\n376.3676042,0.046491046,27.6325798,34.89577365,142.875,23.125\n371.4420182,0.053074475,27.30032158,34.85961825,140.125,22.875\n378.45525,0.043456916,27.83032227,34.87812161,142.875,22.875\n378.3814091,0.042022727,27.99193573,34.88243282,143.125,22.875\n371.458,0.050677113,27.55677414,34.83963555,140.125,22.625\n373.3133654,0.048762653,27.41451645,34.83846194,140.375,22.625\n378.92905,0.044267047,28.17064476,34.86591685,143.125,22.625\n375.183451,0.046056408,27.65645027,34.82389081,140.375,22.375\n376.6013333,0.046829883,27.8554821,34.81570661,140.375,22.125\n376.643175,0.043231737,27.8041935,34.81516039,140.625,22.125\n380.9781304,0.042704232,28.58741951,34.85708618,143.375,22.125\n376.1059057,0.042604458,27.98322487,34.80771959,140.625,21.875\n381.0278776,0.047816459,28.69096756,34.85204983,143.375,21.875\n370.9511463,0.041879494,28.42225647,35.04543173,153.625,21.875\n371.6516667,0.043451048,28.43354797,35.04628932,153.875,21.875\n371.23726,0.046079639,28.39741898,35.05000108,154.125,21.875\n372.4998,0.04623777,28.30483818,35.05656701,154.375,21.875\n373.1431569,0.04978634,28.21709633,35.06313294,154.625,21.875\n371.7899808,0.052460231,28.15580559,35.06969887,154.875,21.875\n371.4581765,0.052769292,28.11967659,35.07872784,155.125,21.875\n370.8787059,0.056426011,28.0941925,35.09021986,155.375,21.875\n370.5156471,0.056406222,28.06516075,35.10171187,155.625,21.875\n370.4444314,0.058911532,28.02064514,35.11320388,155.875,21.875\n370.1065588,0.061877396,27.9932251,35.12124908,156.125,21.875\n378.3736774,0.044611055,28.12225723,34.80027878,140.625,21.625\n379.0533182,0.040700659,28.13806343,34.80121934,140.875,21.625\n383.9322041,0.051936835,28.78774071,34.84701347,143.375,21.625\n369.7906316,0.05750512,28.0948391,35.11114562,156.125,21.625\n370.2124286,0.053556763,28.09612846,35.11486995,156.375,21.625\n371.5500455,0.050430018,28.1325798,35.12231863,156.875,21.625\n373.5084906,0.051424608,28.15386963,35.12880921,157.125,21.625\n377.35,0.055415213,28.1687088,35.13806605,157.375,21.625\n382.6266923,0.051712066,28.83451462,34.8452583,143.375,21.375\n382.6173714,0.053241737,28.81741905,34.85461324,143.625,21.375\n377.0187727,0.063783705,28.25096703,35.12529987,157.375,21.375\n376.6152,0.063795716,28.24161148,35.13374335,157.625,21.375\n377.2033396,0.063479267,28.23806381,35.14218682,157.875,21.375\n376.3438491,0.062250748,28.24612808,35.14863861,158.125,21.375\n376.7920577,0.061063752,28.25322533,35.1530987,158.375,21.375\n378.9523704,0.052820895,28.25387001,35.1575588,158.625,21.375\n409.7880405,0.086899594,26.17354774,34.94018704,202.125,21.375\n381.6938333,0.040800199,28.40709686,34.79663372,141.125,21.125\n385.7362449,0.056939688,28.84096718,34.85626203,143.625,21.125\n378.9099615,0.045029622,28.27354813,35.13927758,158.625,21.125\n379.7472885,0.046068057,28.2816124,35.14250696,158.875,21.125\n379.5856792,0.040582344,28.27193451,35.1465705,159.125,21.125\n377.6117115,0.038238075,28.24903107,35.15146822,159.375,21.125\n377.88222,0.036800746,28.20516014,35.15636593,159.625,21.125\n376.9405,0.04189188,28.13322449,35.16126364,159.875,21.125\n383.2798431,0.039944544,28.50451469,34.79467869,141.125,20.875\n387.5136458,0.060634568,28.87709618,34.85791081,143.625,20.875\n374.235875,0.042063948,28.09451485,35.13808626,160.375,20.875\n373.5189216,0.041069068,28.07096672,35.13522965,160.625,20.875\n373.7133333,0.04209955,28.07548332,35.13237303,160.875,20.875\n374.0847,0.040999979,28.08870888,35.12891495,161.125,20.875\n386.2824681,0.046614502,28.63612747,34.79272366,141.125,20.625\n386.9095,0.05973646,28.90999985,34.8595596,143.625,20.625\n389.7403488,0.057844788,28.9051609,34.8692829,143.875,20.625\n373.3579231,0.040460739,28.13774109,35.10900629,161.125,20.625\n377.1655294,0.040465534,28.13612747,35.10567391,161.375,20.625\n378.2090962,0.039866202,28.10935402,35.10234153,161.625,20.625\n378.1935,0.040286887,28.08096695,35.09900916,161.875,20.625\n377.924549,0.042264044,28.05516052,35.09775501,162.125,20.625\n377.564,0.046900835,28.02128983,35.09857911,162.375,20.625\n386.6827917,0.042870421,28.8019352,34.79695624,141.375,20.375\n388.2867755,0.047202688,28.9119339,34.86881804,143.875,20.375\n376.73878,0.0421483,28.01483727,35.08433169,162.375,20.375\n376.9464231,0.042593993,27.98354721,35.08351165,162.625,20.375\n376.9081538,0.044698719,27.95838737,35.08269161,162.875,20.375\n377.38252,0.046911292,27.93967628,35.08243817,163.125,20.375\n378.7536154,0.042607304,27.92000008,35.08275133,163.375,20.375\n388.0300816,0.039671071,28.8758049,34.79809147,141.375,20.125\n387.9540638,0.041911207,28.88096619,34.86611676,143.875,20.125\n388.738,0.041750249,28.87193489,34.87467331,144.125,20.125\n380.59275,0.038595915,27.92967606,35.06731743,163.875,20.125\n382.6625,0.032776084,27.9751606,35.06711423,164.125,20.125\n383.3044694,0.030796934,28.03548241,35.06747735,164.375,20.125\n382.6828649,0.030463364,28.08774185,35.06784046,164.625,20.125\n389.0601111,0.039358523,28.89774132,34.7992267,141.375,19.875\n388.9717561,0.03832553,28.9187088,34.8045612,141.625,19.875\n388.9522245,0.04107894,28.86193466,34.87140089,144.125,19.875\n380.2525833,0.03012095,28.09774208,35.05391514,164.625,19.875\n379.9872174,0.029942559,28.09032249,35.05534875,164.875,19.875\n379.4978367,0.031974655,28.04645157,35.05846167,165.125,19.875\n379.8298776,0.032405507,28.00354767,35.06325388,165.375,19.875\n380.7125306,0.032739431,27.95806313,35.06804609,165.625,19.875\n380.2580357,0.031783007,27.90677261,35.07283831,165.875,19.875\n389.7222,0.043169044,28.92354774,34.80597323,141.625,19.625\n385.1296,0.040219445,28.88096619,34.86812848,144.125,19.625\n381.7681739,0.030879499,27.90612793,35.0559392,165.875,19.625\n381.7528,0.032145541,27.84870911,35.05732411,166.125,19.625\n380.7852857,0.033452492,27.80967712,35.05661017,166.375,19.625\n380.3708,0.033396993,27.77645111,35.05589622,166.625,19.625\n380.5522051,0.031612944,27.75741959,35.05518228,166.875,19.625\n388.2799091,0.043446176,28.9209671,34.80523056,141.625,19.375\n388.34125,0.044483211,28.92483711,34.81080228,141.875,19.375\n384.3983095,0.038711846,28.934515,34.86631608,144.125,19.375\n382.0974286,0.040340193,28.94387054,34.87582278,144.375,19.375\n380.8524667,0.031284079,27.7341938,35.03380233,167.375,19.375\n380.85844,0.030780846,27.720644,35.03071612,167.625,19.375\n380.1192308,0.031145701,27.69677353,35.02762991,167.875,19.375\n380.4175882,0.031811066,27.6732254,35.02534252,168.125,19.375\n380.6145556,0.033547174,27.65483856,35.02385396,168.375,19.375\n389.9408293,0.042198423,28.90999985,34.80754894,141.875,19.125\n381.7301429,0.040083818,28.99483871,34.87581086,144.375,19.125\n380.2056452,0.033735573,27.66322517,35.00843149,168.375,19.125\n377.3253922,0.03310905,27.63354683,35.00727886,168.625,19.125\n377.4260196,0.033625588,27.57999992,35.00612622,168.875,19.125\n377.4266731,0.032743465,27.50580597,35.00206918,169.125,19.125\n376.6732453,0.033723619,27.4390316,34.99510771,169.375,19.125\n376.415,0.035060532,27.39128876,34.98814625,169.625,19.125\n392.3669667,0.038006555,28.90128899,34.8042956,141.875,18.875\n390.5892632,0.041032948,28.93419266,34.81124294,142.125,18.875\n381.9264,0.040072225,29.03225708,34.87579894,144.375,18.875\n376.6452941,0.034932319,27.33774185,34.97343546,169.625,18.875\n376.9553846,0.036772534,27.29741859,34.96642274,169.875,18.875\n378.3301429,0.037793126,27.29290199,34.965527,170.125,18.875\n378.0464762,0.037175629,27.29741859,34.97074825,170.375,18.875\n382.353375,0.037646733,27.28999901,34.98119074,170.875,18.875\n382.2756923,0.036755323,27.28903198,34.98976928,171.125,18.875\n381.6911765,0.035191651,27.30451584,35.00170511,171.375,18.875\n381.9308235,0.033581086,27.33645058,35.01364094,171.625,18.875\n380.1747451,0.030851478,27.37032127,35.02557677,171.875,18.875\n379.2366383,0.032479171,27.3848381,35.03300089,172.125,18.875\n379.4615625,0.034242291,27.37935448,35.03591329,172.375,18.875\n380.13678,0.033353943,27.35483742,35.03882569,172.625,18.875\n380.2090204,0.032013603,27.34000015,35.04173809,172.875,18.875\n381.9204898,0.032332376,27.33386993,35.04586887,173.125,18.875\n380.9326735,0.029597923,27.33612823,35.05121803,173.375,18.875\n381.7572083,0.029515501,27.33225822,35.05656719,173.625,18.875\n383.0507755,0.029460728,27.32903099,35.06191635,173.875,18.875\n382.4291111,0.029002119,27.34096718,35.06572455,174.125,18.875\n388.3131724,0.030895429,27.38612938,35.07025903,174.625,18.875\n387.87,0.030810598,27.36774063,35.07252628,174.875,18.875\n382.2332041,0.030850379,27.31193542,35.07217789,175.125,18.875\n380.5832653,0.033882342,27.23096657,35.06921387,175.375,18.875\n379.2985918,0.034640308,27.1574192,35.06624985,175.625,18.875\n379.2843043,0.032950293,27.14548302,35.06328583,175.875,18.875\n380.8400217,0.031977132,27.19161224,35.05791783,176.125,18.875\n383.9656122,0.030990016,27.26064491,35.05014586,176.375,18.875\n385.8462653,0.030998854,27.33064461,35.0423739,176.625,18.875\n386.4461837,0.031858593,27.38354874,35.03460193,176.875,18.875\n384.6481042,0.031015741,27.41096687,35.0269025,177.125,18.875\n387.5592041,0.033167839,27.42161179,35.01927561,177.375,18.875\n388.1690417,0.035185352,27.41677284,35.01164871,177.625,18.875\n388.6174545,0.034589685,27.4029026,35.00402182,177.875,18.875\n387.3050882,0.038238525,27.41032219,34.99096906,178.375,18.875\n387.1096667,0.035201129,27.40677261,34.98480952,178.625,18.875\n386.92502,0.034666292,27.39451599,34.97864997,178.875,18.875\n387.3623469,0.033339716,27.36709595,34.97420871,179.125,18.875\n387.2156531,0.033924431,27.34612846,34.97148573,179.375,18.875\n386.6081915,0.033265069,27.32935333,34.96876276,179.625,18.875\n386.31198,0.032653153,27.31064415,34.96603978,179.875,18.875\n385.26472,0.034597773,27.29483795,34.96709269,180.125,18.875\n387.1849796,0.03465721,27.27709579,34.9719215,180.375,18.875\n385.8322941,0.034606587,27.25419235,34.97675031,180.625,18.875\n388.1855294,0.03472336,27.23290253,34.98157912,180.875,18.875\n386.77828,0.035272162,27.21322441,34.98632711,181.125,18.875\n387.8696429,0.033908181,27.19741821,34.99099427,181.375,18.875\n388.8476667,0.035275619,27.20419312,35.0003286,181.875,18.875\n390.62406,0.035295982,27.21257973,35.0039528,182.125,18.875\n391.8361224,0.037142225,27.21999931,35.00653404,182.375,18.875\n388.7665306,0.036612332,27.22032166,35.00911528,182.625,18.875\n387.0637959,0.03782104,27.22548294,35.01169652,182.875,18.875\n386.0407292,0.037378967,27.2364502,35.01493692,183.125,18.875\n386.334,0.038671833,27.24128914,35.0188365,183.375,18.875\n384.8691702,0.038857359,27.24419212,35.02273607,183.625,18.875\n384.3814255,0.037070185,27.22999954,35.02663565,183.875,18.875\n384.6396154,0.036399275,27.2003212,35.02223486,184.125,18.875\n387.5776863,0.038594671,28.9480648,34.80827677,142.125,18.625\n383.9773784,0.036151689,27.24903107,34.99568397,184.125,18.625\n383.1310816,0.038573079,27.21999931,34.98227209,184.375,18.625\n385.08698,0.037933018,27.19774055,34.96886021,184.625,18.625\n387.2247755,0.038354423,27.18419266,34.95544833,184.875,18.625\n385.1107692,0.038042579,27.18258095,34.94413793,185.125,18.625\n385.2379091,0.039572693,27.20451546,34.9257201,185.625,18.625\n383.75418,0.040611383,27.21645164,34.91651118,185.875,18.625\n383.8070833,0.041288044,27.19903183,34.91085953,186.125,18.625\n387.1400976,0.040658794,28.96870995,34.81321174,142.125,18.375\n386.4307778,0.041217003,28.99386978,34.82330984,142.375,18.375\n380.8089143,0.039142191,28.99645042,34.89270461,144.625,18.375\n383.7479189,0.039166857,27.18290329,34.89819896,186.125,18.375\n383.95394,0.039849274,27.15193558,34.89669192,186.375,18.375\n385.8907843,0.040896628,27.12999916,34.89518487,186.625,18.375\n387.543098,0.038084637,27.11935425,34.89367783,186.875,18.375\n384.4767292,0.037542306,27.10451508,34.89419985,187.125,18.375\n387.6963542,0.036693346,27.09903145,34.89675093,187.375,18.375\n387.8120769,0.037853803,27.09677315,34.89930201,187.625,18.375\n387.7460784,0.038298342,27.08870888,34.90185308,187.875,18.375\n392.7876667,0.038068123,27.07999992,34.90488523,188.125,18.375\n386.79486,0.040235568,29.01870918,34.83548146,142.375,18.125\n380.5612449,0.043089107,29.00387001,34.90515506,144.625,18.125\n393.6845714,0.042344261,27.09709549,34.90576059,188.125,18.125\n390.7368431,0.041465592,27.09967613,34.91044849,188.375,18.125\n390.6128478,0.041660555,27.09967613,34.9151364,188.625,18.125\n393.657,0.04681436,27.08806419,34.92224801,189.125,18.125\n393.65268,0.050315671,27.10451508,34.92240751,189.375,18.125\n393.9637451,0.051496211,27.11193466,34.92256701,189.625,18.125\n394.1385306,0.052016869,27.12709618,34.92272651,189.875,18.125\n385.76255,0.039044838,29.03967667,34.84765309,142.375,17.875\n380.3881818,0.043065779,29.01935387,34.91760552,144.625,17.875\n381.0294375,0.040894061,29.00806427,34.92759454,144.875,17.875\n394.2150392,0.065088071,27.12677383,34.92361885,190.125,17.875\n393.4535385,0.072645821,27.14032173,34.91808194,190.375,17.875\n393.4888431,0.07780274,27.14225769,34.91254503,190.625,17.875\n393.1927234,0.078236602,27.13903236,34.90700811,190.875,17.875\n394.1344651,0.082408376,27.14161301,34.90061742,191.125,17.875\n387.28508,0.041813273,29.01483727,34.93976128,144.875,17.625\n393.88675,0.086911038,27.1280632,34.90332216,191.125,17.625\n394.011,0.089138739,27.12967682,34.8956278,191.375,17.625\n393.7534902,0.085133292,27.10612869,34.88793343,191.625,17.625\n393.8716047,0.079054788,27.10451508,34.88023907,191.875,17.625\n394.69686,0.079007715,27.11128998,34.87382799,192.125,17.625\n394.7343333,0.077569813,27.12096786,34.86870021,192.375,17.625\n388.0448182,0.042327523,29.03096771,34.8751027,142.625,17.375\n389.2541429,0.041043479,29.00806427,34.94538659,144.875,17.375\n391.6962727,0.076755047,27.11064529,34.85920262,192.875,17.375\n387.0739608,0.070820116,27.09483719,34.8509289,193.125,17.375\n388.57214,0.068180174,27.07322502,34.83941734,193.375,17.375\n387.42625,0.064347215,27.04838562,34.82790577,193.625,17.375\n390.395125,0.047127075,29.0564518,34.87794214,142.625,17.125\n389.3523548,0.045739934,29.03193474,34.88790292,142.875,17.125\n388.8561875,0.039779764,29.02322578,34.94447047,144.875,17.125\n388.6909412,0.038151879,29.05096626,34.94681716,145.125,17.125\n387.0253684,0.066313989,27.00258064,34.82345712,193.625,17.125\n387.3792941,0.066961139,26.96870995,34.81009972,193.875,17.125\n391.9855686,0.065859459,26.93870926,34.80093551,194.125,17.125\n393.384566,0.064446867,26.90806389,34.79596448,194.375,17.125\n393.7199792,0.066264786,26.87516022,34.79099345,194.625,17.125\n396.5829048,0.066315196,26.84387016,34.78602242,194.875,17.125\n392.3239362,0.043551315,29.07612801,34.89220124,142.875,16.875\n387.7910204,0.040101092,29.08193398,34.94295239,145.125,16.875\n399.7940526,0.063574307,26.83225822,34.77113128,194.875,16.875\n400.8292545,0.064153396,26.82806396,34.76507783,195.125,16.875\n400.9879444,0.066026799,26.81709671,34.76013446,195.375,16.875\n400.1601509,0.067611903,26.80709648,34.75519109,195.625,16.875\n399.5496667,0.076524302,26.80548286,34.75024772,195.875,16.875\n395.2095333,0.04320683,29.10032272,34.89649957,142.875,16.625\n394.7220588,0.043740503,29.09161186,34.90716761,143.125,16.625\n388.2128542,0.041846272,29.10096741,34.93908763,145.125,16.625\n390.9376154,0.071095861,26.80709648,34.708772,196.375,16.625\n388.1158462,0.070887223,26.79870987,34.69065303,196.625,16.625\n385.4001923,0.070599236,26.78741837,34.67253405,196.875,16.625\n384.3358077,0.065113664,26.76161194,34.65608603,197.125,16.625\n384.3043333,0.062000934,26.7341938,34.64130896,197.375,16.625\n394.7059792,0.042992044,29.10709572,34.89843196,143.125,16.375\n388.4304737,0.039456457,29.09580612,34.93565732,145.125,16.375\n389.5332,0.036745343,29.05354691,34.92546219,145.375,16.375\n384.7084894,0.062286105,26.713871,34.61879539,197.375,16.375\n387.0568269,0.060442351,26.68806458,34.60348606,197.625,16.375\n386.9029231,0.056899671,26.64870834,34.58817673,197.875,16.375\n387.419,0.054528009,26.59709549,34.58424199,198.125,16.375\n387.67152,0.052707452,26.55774117,34.59168184,198.375,16.375\n395.6411053,0.043786835,29.12354851,34.87569004,143.125,16.125\n396.7287273,0.042380057,29.10838699,34.88850564,143.375,16.125\n389.5170833,0.03548573,29.02032089,34.92327625,145.375,16.125\n387.3925,0.0508788,26.51483727,34.57502472,198.375,16.125\n387.7301731,0.051643375,26.49128914,34.58116424,198.625,16.125\n388.2889216,0.04960148,26.48258018,34.58730376,198.875,16.125\n387.6788846,0.05278118,26.47580528,34.58946371,199.125,16.125\n383.7165,0.053221587,26.48290253,34.5876441,199.375,16.125\n397.2479574,0.041801337,29.12516022,34.86850721,143.375,15.875\n389.5163654,0.035190333,28.9909668,34.9210903,145.375,15.875\n382.325,0.052716482,26.49419212,34.55044794,199.625,15.875\n382.09076,0.049069084,26.4796772,34.54244089,199.875,15.875\n384.3513846,0.05013036,26.463871,34.53483623,200.125,15.875\n383.834566,0.048016898,26.45064354,34.52763397,200.375,15.875\n383.2551346,0.045951784,26.43193436,34.5204317,200.625,15.875\n383.661,0.047606923,26.40419197,34.51322943,200.875,15.875\n398.0548043,0.03538515,29.1551609,34.84850878,143.375,15.625\n397.924,0.033904765,29.14161301,34.86681134,143.625,15.625\n387.6936038,0.03123134,29.00741959,34.91890436,145.375,15.625\n382.9198235,0.047913916,26.4164505,34.47938222,200.875,15.625\n383.7638113,0.048400015,26.39322472,34.46727383,201.125,15.625\n383.9529412,0.047307853,26.37225723,34.44717062,201.375,15.625\n384.7099149,0.049439847,26.32999992,34.4270674,201.625,15.625\n384.29384,0.051566735,26.27225685,34.40696418,201.875,15.625\n384.3934444,0.049282037,26.2116127,34.39303571,202.125,15.625\n397.120875,0.034825526,29.16386986,34.83267766,143.625,15.375\n388.4403333,0.034662213,29.06290245,34.90667248,145.375,15.375\n389.6529714,0.039983746,29.02967644,34.90037441,145.625,15.375\n384.1871176,0.048159558,26.18999863,34.34278494,202.125,15.375\n383.6402115,0.045525137,26.12032127,34.33571261,202.375,15.375\n382.8566383,0.049436621,26.06548309,34.32864028,202.625,15.375\n380.1312,0.053227577,26.03064537,34.31235462,203.125,15.375\n379.7798571,0.053961948,26.04580498,34.3010003,203.375,15.375\n398.2670426,0.034230474,29.16193581,34.78166527,143.625,15.125\n390.7183226,0.037742961,29.08516121,34.88022137,145.625,15.125\n378.4140238,0.052911658,26.05129051,34.26170546,203.375,15.125\n374.3059231,0.057698369,26.06677437,34.25129932,203.625,15.125\n376.6770577,0.057466265,26.07386971,34.24089319,203.875,15.125\n384.0788431,0.055221092,26.08225822,34.23125082,204.125,15.125\n387.8803265,0.059515901,26.08225822,34.22237223,204.375,15.125\n387.63042,0.06385608,26.08161163,34.21349365,204.625,15.125\n390.0138571,0.071359001,26.08419228,34.20461506,204.875,15.125\n389.521,0.064533502,26.10838699,34.19666481,205.125,15.125\n387.4706042,0.066558242,26.14903069,34.18964291,205.375,15.125\n385.3162857,0.067978136,26.18387032,34.182621,205.625,15.125\n382.1358163,0.065904066,26.20387077,34.1755991,205.875,15.125\n383.0741042,0.072607033,26.18774033,34.16578466,206.125,15.125\n382.57905,0.069449022,26.16903114,34.15317768,206.375,15.125\n381.2637692,0.077605076,26.16128922,34.12796372,206.875,15.125\n375.1280417,0.076963454,26.16967583,34.11987758,207.125,15.125\n368.2881837,0.076340027,26.14774132,34.11631227,207.375,15.125\n372.8163469,0.072586313,26.11741829,34.11274695,207.625,15.125\n374.7726458,0.06986174,26.08548355,34.10918164,207.875,15.125\n380.2162041,0.072017141,26.07290268,34.09922659,208.125,15.125\n378.9911667,0.068317302,26.072258,34.08288181,208.375,15.125\n379.8727447,0.067067608,26.06999969,34.06653702,208.625,15.125\n379.7802391,0.069415756,26.06580544,34.05019224,208.875,15.125\n378.5174694,0.069739476,26.06645012,34.04172957,209.125,15.125\n379.01766,0.067340083,26.06161308,34.04114902,209.375,15.125\n379.9834082,0.069620788,26.05032158,34.04056847,209.625,15.125\n375.5572,0.071713574,26.03322601,34.03998792,209.875,15.125\n368.8254167,0.07486283,26.00032234,34.04072875,210.125,15.125\n367.5364118,0.069237858,25.93354797,34.04485315,210.625,15.125\n370.2053878,0.067488037,25.88064384,34.04691535,210.875,15.125\n374.5059592,0.06542781,25.81483841,34.05041724,211.125,15.125\n375.0913,0.069169439,25.75935364,34.05535883,211.375,15.125\n377.0077843,0.065634534,25.72032166,34.06030041,211.625,15.125\n380.17172,0.066716664,25.71419334,34.06524199,211.875,15.125\n382.25296,0.068303481,25.68387032,34.07016152,212.125,15.125\n381.0816531,0.070310526,25.64645195,34.075059,212.375,15.125\n379.8856667,0.069289356,25.58548355,34.07995647,212.625,15.125\n379.1354118,0.075506128,25.51838684,34.08485395,212.875,15.125\n379.6742157,0.072012708,25.46451569,34.0949859,213.125,15.125\n386.7145472,0.073257096,25.43935394,34.11035234,213.375,15.125\n388.1075,0.072599187,25.41612816,34.12571877,213.625,15.125\n390.7972105,0.089871362,25.4051609,34.1498419,214.125,15.125\n386.9335385,0.090929128,25.45161247,34.15198886,214.375,15.125\n386.1221132,0.088740967,25.48032188,34.15413582,214.625,15.125\n381.3526078,0.117152952,25.51290321,34.15628278,214.875,15.125\n382.2752115,0.127413392,25.53322601,34.16327405,215.125,15.125\n383.1667059,0.118116245,25.56129074,34.17510962,215.375,15.125\n380.6537059,0.130142778,25.59161186,34.1869452,215.625,15.125\n384.8287885,0.115090184,25.61967659,34.19878078,215.875,15.125\n382.7151569,0.108675301,25.60225677,34.20918041,216.125,15.125\n381.4401277,0.0913243,25.57548332,34.21814412,216.375,15.125\n393.76806,0.089207619,25.51612854,34.22710782,216.625,15.125\n385.403,0.092732467,25.45193481,34.23607153,216.875,15.125\n385.231225,0.09811309,25.38193512,34.24447542,217.125,15.125\n388.7359231,0.102475598,25.29999924,34.26016361,217.625,15.125\n385.6757885,0.094914794,25.29548264,34.2680077,217.875,15.125\n384.5004,0.093859009,25.27548409,34.27520919,218.125,15.125\n389.26274,0.099410102,25.28032112,34.28176808,218.375,15.125\n383.6001429,0.100051023,25.28290176,34.28832698,218.625,15.125\n378.4970816,0.102907136,25.2793541,34.29488587,218.875,15.125\n378.3168163,0.092423744,25.28322601,34.29858208,219.125,15.125\n382.381551,0.093020812,25.29516029,34.29941559,219.375,15.125\n382.3277959,0.101953007,25.28580666,34.3002491,219.625,15.125\n383.7635111,0.099086486,25.26483727,34.30108261,219.875,15.125\n384.4757234,0.097285502,25.24645042,34.29500926,220.125,15.125\n384.14804,0.105666883,25.21451569,34.28202903,220.375,15.125\n382.8337647,0.123264961,25.17967606,34.26904881,220.625,15.125\n381.9312941,0.124921717,25.17128944,34.25606859,220.875,15.125\n392.1030571,0.163763553,25.17032242,34.22714412,221.375,15.125\n391.1992941,0.154305831,25.17677307,34.21218789,221.625,15.125\n388.0818654,0.156503215,25.20290184,34.19723165,221.875,15.125\n389.6052941,0.145992905,25.23677444,34.17895228,222.125,15.125\n389.2158824,0.105159223,25.28677368,34.15734977,222.375,15.125\n390.7083922,0.107229166,25.31419373,34.13574725,222.625,15.125\n386.5737843,0.085174851,25.32838631,34.11414474,222.875,15.125\n385.87825,0.093038775,25.33386993,34.09703887,223.125,15.125\n391.1059167,0.1071117,25.33709526,34.08442962,223.375,15.125\n391.2859565,0.109316289,25.33451653,34.07182038,223.625,15.125\n392.38492,0.106205791,25.31516075,34.05921113,223.875,15.125\n399.8429592,0.11105404,25.28483772,34.04961491,224.125,15.125\n401.3719091,0.113216609,25.26451492,34.04303169,224.375,15.125\n398.4598889,0.032100774,29.13354874,34.73065287,143.625,14.875\n398.4394615,0.033082228,29.12548256,34.75120515,143.875,14.875\n389.3376667,0.032926988,29.09741783,34.86006832,145.625,14.875\n388.8960612,0.029756401,29.07354736,34.85801983,145.875,14.875\n397.2032,0.1162306,25.26096725,34.02153206,224.875,14.875\n395.4967255,0.117459297,25.18257904,34.01745683,225.125,14.875\n397.7772549,0.113216944,25.09548378,34.01679558,225.375,14.875\n398.7495686,0.124539509,25.03677368,34.01613432,225.625,14.875\n402.48066,0.122770257,25.02967644,34.01547307,225.875,14.875\n404.70606,0.131374493,25.06677437,34.01488924,226.125,14.875\n402.59858,0.130608141,25.11935425,34.01438284,226.375,14.875\n401.4611373,0.141944692,25.18354797,34.01387644,226.625,14.875\n393.5092353,0.154440239,25.24161148,34.01337004,226.875,14.875\n388.9356667,0.140795276,25.29096794,34.0138672,227.125,14.875\n388.606766,0.125311121,25.35322571,34.01536793,227.375,14.875\n391.3022157,0.108094648,25.39096642,34.01686865,227.625,14.875\n388.0950784,0.108925581,25.39419365,34.01836938,227.875,14.875\n393.2461667,0.107162386,25.38193512,34.02070767,228.125,14.875\n391.332,0.12887831,25.43870926,34.02705938,228.625,14.875\n386.9362941,0.118057609,25.44677353,34.03023523,228.875,14.875\n384.6283,0.114861056,25.47096825,34.03348172,229.125,14.875\n394.3057843,0.105493546,25.47580528,34.03679883,229.375,14.875\n400.49548,0.097516797,25.470644,34.04011595,229.625,14.875\n397.7263,0.099682555,25.44193459,34.04343307,229.875,14.875\n393.8295476,0.10066627,25.44935417,34.0436489,230.125,14.875\n398.8233404,0.028275214,29.11580658,34.70054394,143.875,14.625\n390.7441818,0.027247993,29.05806351,34.83999157,145.875,14.625\n390.9216667,0.028899038,29.05870819,34.83930093,146.125,14.625\n396.7035,0.102033846,25.53257942,34.01953226,230.125,14.625\n395.55084,0.118155509,25.59645081,34.01552504,230.375,14.625\n388.15036,0.109803952,25.62967682,34.01151782,230.625,14.625\n386.7141837,0.111828662,25.64064407,34.0075106,230.875,14.625\n388.6959348,0.126304269,25.65967751,33.99878615,231.125,14.625\n386.65516,0.136367097,25.70548248,33.98534447,231.375,14.625\n384.94852,0.118063807,25.76064491,33.97190279,231.625,14.625\n394.1298889,0.116805106,25.84935379,33.93316835,232.125,14.625\n397.6321569,0.12637271,25.91161156,33.89602453,232.375,14.625\n399.9048235,0.125249103,25.96257973,33.8588807,232.625,14.625\n396.24442,0.116026849,26.00354767,33.82173687,232.875,14.625\n390.9174118,0.124315053,26.02580643,33.79401928,233.125,14.625\n399.1003125,0.027623044,29.14258003,34.64288175,143.875,14.375\n398.6558077,0.028691126,29.13677406,34.66975105,144.125,14.375\n390.9400536,0.027030263,29.03129005,34.7991246,146.125,14.375\n391.9909412,0.12074592,26.06806374,33.76893294,233.125,14.375\n387.35975,0.122826248,26.10741806,33.7543658,233.375,14.375\n382.9451,0.125994384,26.18612862,33.73979867,233.625,14.375\n381.63032,0.129107863,26.23774147,33.72523153,233.875,14.375\n382.7106471,0.132417172,26.27903175,33.71453995,234.125,14.375\n385.1825102,0.131038472,26.33967781,33.70772392,234.375,14.375\n385.3953043,0.124367505,26.39741898,33.70090789,234.625,14.375\n385.85712,0.129751354,26.45193481,33.69409186,234.875,14.375\n384.7053571,0.128205374,26.48322487,33.68677384,235.125,14.375\n380.2951667,0.129383251,26.4932251,33.67113382,235.625,14.375\n381.0210588,0.113475449,26.50419235,33.66331381,235.875,14.375\n391.7708974,0.026980963,29.02645111,34.73549044,146.125,14.125\n391.7533125,0.026995672,29.02290344,34.74432456,146.375,14.125\n382.42975,0.114490658,26.48677444,33.66052037,235.875,14.125\n384.34848,0.121366911,26.54322433,33.64911813,236.125,14.125\n387.7219796,0.119243346,26.61257935,33.63860613,236.375,14.125\n385.5454694,0.120871469,26.68999863,33.62809414,236.625,14.125\n386.6180612,0.127029493,26.77064514,33.61758214,236.875,14.125\n384.590898,0.128113255,26.84999847,33.59981084,237.125,14.125\n383.5588824,0.123033665,26.93612862,33.57478023,237.375,14.125\n383.37578,0.11391335,26.99967766,33.54974961,237.625,14.125\n384.79072,0.116661727,27.01419258,33.524719,237.875,14.125\n382.48122,0.1266139,27.02419281,33.50556701,238.125,14.125\n381.9889348,0.141015574,27.03967667,33.49229366,238.375,14.125\n380.8902917,0.122141376,27.07741928,33.4790203,238.625,14.125\n381.5744,0.121171013,27.12225723,33.46574694,238.875,14.125\n390.4085556,0.024870722,29.00128937,34.68738663,146.375,13.875\n381.4346923,0.141012326,27.18387032,33.4817881,238.875,13.875\n390.6826429,0.151907653,27.25580597,33.4632355,239.375,13.875\n390.9609,0.155880824,27.27419281,33.45524347,239.625,13.875\n392.64372,0.144654825,27.30806351,33.44725144,239.875,13.875\n398.9285294,0.12037196,27.35612869,33.43848562,240.125,13.875\n393.2303922,0.1140012,27.4299984,33.42894602,240.375,13.875\n391.7023725,0.10384585,27.4977417,33.41940641,240.625,13.875\n389.7371765,0.099832043,27.56580544,33.40986681,240.875,13.875\n387.2662609,0.098221235,27.59709549,33.40464246,241.125,13.875\n393.7753187,0.024600204,29.177742,34.49239767,144.375,13.625\n386.167,0.098375492,27.6732254,33.40221798,241.125,13.625\n385.892,0.100506514,27.69419289,33.40220106,241.375,13.625\n385.1757451,0.094309546,27.72645187,33.40218413,241.625,13.625\n387.5371538,0.105022147,27.72548294,33.4021672,241.875,13.625\n389.5684468,0.104156345,27.70774078,33.40145391,242.125,13.625\n390.5878333,0.106799863,27.66483879,33.40004426,242.375,13.625\n386.0975882,0.103358075,27.50451469,33.39722496,242.875,13.625\n385.7138,0.102000929,27.46741867,33.39630544,243.125,13.625\n394.2941714,0.02826483,29.20870972,34.43572384,144.375,13.375\n394.4498462,0.030450568,29.15548325,34.45797724,144.625,13.375\n388.6829091,0.028368944,28.96096802,34.59516305,146.625,13.375\n386.1431892,0.104818031,27.51387024,33.3958174,243.125,13.375\n387.9052353,0.101454936,27.52354813,33.39509094,243.375,13.375\n388.9206154,0.107001774,27.52677345,33.39436448,243.625,13.375\n394.0220385,0.120628685,27.5541935,33.39363801,243.875,13.375\n395.8778654,0.130018383,27.58741951,33.38076031,244.125,13.375\n393.0873269,0.114612736,27.60161209,33.35573137,244.375,13.375\n387.0960755,0.122847356,27.61096764,33.33070242,244.625,13.375\n385.9701224,0.127663016,27.61257935,33.30567348,244.875,13.375\n393.5449149,0.028092552,29.18515968,34.41340333,144.625,13.125\n389.5478333,0.030535052,28.96677399,34.53038031,146.625,13.125\n388.9769474,0.031809323,28.97322464,34.55072182,146.875,13.125\n386.8973333,0.130310476,27.61999893,33.3066889,244.875,13.125\n387.9146038,0.121793889,27.6303215,33.28903127,245.125,13.125\n384.0767692,0.122267075,27.6732254,33.28102183,245.375,13.125\n380.4798511,0.130080521,27.72386932,33.2730124,245.625,13.125\n383.4889143,0.134043366,27.77677345,33.26500297,245.875,13.125\n385.4873333,0.119874008,27.8245163,33.2488777,246.375,13.125\n397.9306154,0.1187445,27.84451485,33.24079734,246.625,13.125\n407.1051944,0.117790557,27.84516144,33.23271698,246.875,13.125\n394.1246364,0.027215386,29.22645187,34.36882943,144.625,12.875\n386.4247241,0.032586992,28.98032188,34.48245031,146.875,12.875\n412.222125,0.120523602,27.82128906,33.2201367,246.875,12.875\n415.4843529,0.130293414,27.83806419,33.20681268,247.125,12.875\n417.7468269,0.125398353,27.88322449,33.19050831,247.375,12.875\n418.8996078,0.126562715,27.93354797,33.17420393,247.625,12.875\n418.6976792,0.128711119,27.96354866,33.15789956,247.875,12.875\n418.3042115,0.132276416,27.96677399,33.14779407,248.125,12.875\n409.3689808,0.139254376,27.99225807,33.14388746,248.375,12.875\n393.8077843,0.13340798,28.03870964,33.13998085,248.625,12.875\n390.0267083,0.134816125,28.05516052,33.13607424,248.875,12.875\n395.14,0.025297342,29.25354767,34.32425553,144.625,12.625\n395.6610263,0.026215229,29.23128891,34.34169883,144.875,12.625\n385.26325,0.032960992,28.99451637,34.41417879,146.875,12.625\n385.7326531,0.030304262,28.98677444,34.42735142,147.125,12.625\n387.3319286,0.13811183,28.06193542,33.13009936,248.875,12.625\n385.8120638,0.14306289,28.03870964,33.12901288,249.125,12.625\n384.9282647,0.143679842,28.01838684,33.13011879,249.375,12.625\n384.1787895,0.152133211,28.00322533,33.1323306,249.875,12.625\n395.7115319,0.023728603,29.25128937,34.30202514,144.875,12.375\n386.5418333,0.032630622,28.99935341,34.373074,147.125,12.375\n386.7725,0.033856459,28.98096657,34.38999206,147.375,12.375\n396.0688235,0.022617757,29.29870987,34.26885504,144.875,12.125\n395.7138333,0.023153111,29.27999878,34.27562833,145.125,12.125\n385.2769286,0.034470975,28.98161316,34.35038275,147.375,12.125\n396.352,0.023355255,29.33483887,34.24038959,145.125,11.875\n384.1085581,0.032546259,29.00612831,34.31077343,147.375,11.875\n382.8206429,0.034449033,28.98903084,34.33151335,147.625,11.875\n396.2643469,0.022967931,29.39419365,34.20515084,145.125,11.625\n383.0727857,0.031408105,29.01419258,34.29381496,147.625,11.625\n394.3360769,0.024319131,29.46322441,34.17951393,145.125,11.375\n392.5762353,0.024136908,29.43064499,34.17673111,145.375,11.375\n383.2391429,0.03334526,29.04935455,34.26040202,147.625,11.375\n383.6973636,0.03229532,29.02419281,34.28160328,147.875,11.375\n392.1220417,0.026215091,29.47870827,34.1612606,145.375,11.125\n383.2114035,0.034682311,29.06096649,34.2476657,147.875,11.125\n388.5750789,0.030684268,29.52515984,34.1457901,145.375,10.875\n389.3344444,0.033320308,29.47677422,34.14413643,145.625,10.875\n383.693087,0.034880377,29.08096695,34.21372813,147.875,10.875\n383.9383824,0.031133007,29.07870865,34.22246039,148.125,10.875\n389.905,0.029536786,29.52999878,34.1292305,145.625,10.625\n384.4297586,0.031576358,29.10225677,34.18444908,148.125,10.625\n387.063,0.032083165,29.61354828,34.08765393,145.625,10.125\n386.3385758,0.038643442,29.58225822,34.08633894,145.875,10.125\n383.2138293,0.035372473,29.18483734,34.12484419,148.375,10.125\n387.0966383,0.040531192,29.61580658,34.06325108,145.875,9.875\n385.4506667,0.033626825,29.26515961,34.09719312,148.375,9.875\n384.8071132,0.030373162,29.23903084,34.09745657,148.625,9.875\n386.798186,0.037265383,29.63838577,34.04016322,145.875,9.625\n386.62625,0.038085319,29.59483719,34.0420509,146.125,9.625\n383.5754082,0.033179782,29.31193542,34.06955993,148.625,9.625\n382.3128571,0.029072788,29.28709602,34.06957781,148.875,9.625\n386.6040208,0.038382709,29.59838676,34.03229994,146.125,9.375\n379.7838182,0.035754442,29.34645081,34.04828715,148.875,9.375\n386.7394681,0.044318862,29.62870789,34.03619462,146.125,9.125\n382.5795476,0.056252044,29.41741943,34.03384805,148.875,9.125\n399.3832143,0.043553308,29.45741844,34.0344975,149.125,9.125\n386.4911429,0.048816189,29.61515999,34.04008931,146.125,8.875\n387.7214444,0.060219005,29.56354713,34.04251295,146.375,8.875\n389.5440364,0.060209841,29.51677322,34.01808715,149.125,8.875\n386.5117959,0.05147244,29.5896759,34.04512566,146.375,8.625\n383.1808286,0.068843693,29.54645157,34.0016768,149.125,8.625\n391.6982083,0.057767637,29.58774185,34.00448489,149.375,8.625\n388.2401915,0.05614344,29.61806297,34.05231196,146.375,8.375\n388.7112,0.057793975,29.58709526,34.00068569,149.375,8.375\n387.8002083,0.058926165,29.61096764,34.06348926,146.625,8.125\n382.8099333,0.07111977,29.59741783,34.01078606,149.375,8.125\n382.3059556,0.05945855,29.60161209,34.00810623,149.625,8.125\n385.2878235,0.06292998,29.61967659,34.07452697,146.625,7.875\n383.5395227,0.058130853,29.61741829,34.01497746,149.625,7.875\n383.1299412,0.066684678,29.63354683,34.00906849,149.875,7.875\n384.4993333,0.073198855,29.65677261,34.08556467,146.625,7.625\n384.7497959,0.07956069,29.64999962,34.08353776,146.875,7.625\n381.30138,0.062615268,29.63322449,34.01271057,149.875,7.625\n386.0677368,0.081258617,29.72419357,34.08783776,146.875,7.375\n386.7602143,0.074999332,29.74935341,34.08532804,147.125,7.375\n380.9425455,0.063512214,29.64322472,34.020886,149.875,7.375\n387.0803265,0.091700606,29.80806351,34.08372861,147.125,7.125\n385.9583095,0.075646058,29.7409668,34.04508108,150.125,6.875\n388.4023333,0.079074465,29.88516045,34.07732075,147.375,6.625\n382.9722308,0.082242504,29.82386971,34.05965263,150.125,6.625\n389.7946,0.079682045,29.93838692,34.08183378,147.375,6.375\n389.1534545,0.073512919,29.88935471,34.07917839,147.625,6.375\n383.99125,0.09755148,29.91225815,34.07579839,150.125,6.375\n391.7867222,0.081976511,29.95645142,34.09117478,147.625,6.125\n386.203875,0.110036679,29.99193382,34.09351838,150.125,6.125\n386.2930682,0.098188832,30.05451584,34.10077226,150.375,6.125\n395.9419434,0.086296201,30.00161171,34.10299391,147.875,5.875\n388.3849608,0.088746689,30.11322594,34.12049258,150.375,5.875\n393.8272759,0.093124613,30.08419228,34.11622936,147.875,5.625\n394.0491538,0.093938835,30.06419373,34.11313486,148.125,5.625\n392.651451,0.082887113,30.1258049,34.14021289,150.375,5.625\n400.1071481,0.080777682,30.14935493,34.13838029,148.125,5.375\n397.2012069,0.071996391,30.11903191,34.183608,150.375,5.375\n401.5386522,0.082916282,30.11128998,34.19693428,150.625,5.375\n402.4136471,0.078616932,30.21999931,34.17608714,148.125,5.125\n403.4616154,0.080100611,30.22096634,34.17319417,148.375,5.125\n402.5627692,0.071498722,30.10257912,34.26614732,150.625,5.125\n405.6250755,0.075204916,30.28257942,34.21452022,148.375,4.875\n409.482,0.075111859,30.23064423,34.21524644,148.625,4.875\n398.9173208,0.076344222,30.06064415,34.33536035,150.625,4.875\n407.3418148,0.06950485,30.27580643,34.26019168,148.625,4.625\n399.5488113,0.080523163,30.00806427,34.40457338,150.625,4.625\n402.9952432,0.060762744,30.31580544,34.32873815,148.625,4.375\n406.184875,0.060001861,30.25548363,34.33629638,148.875,4.375\n401.99,0.077083685,29.98161125,34.4960202,150.625,4.375\n401.3553137,0.074374124,29.93387032,34.51762545,150.875,4.375\n402.7614038,0.054281145,30.2635479,34.43125051,148.875,4.125\n403.1781731,0.08484216,29.91322517,34.63286197,150.875,4.125\n399.184087,0.057935782,30.24451637,34.52620465,148.875,3.875\n399.5663448,0.055205017,30.16128922,34.54888999,149.125,3.875\n405.2121667,0.096449777,29.87193489,34.74809849,150.875,3.875\n402.566,0.059147052,30.14161301,34.64692652,149.125,3.625\n421.3992766,0.108549833,29.82645035,34.97101951,151.125,3.375\n400.1093824,0.076160632,30.04290199,34.83784211,149.375,3.125\n401.1432,0.084264159,29.98290253,34.87145507,149.625,3.125\n428.9855882,0.120206155,29.81354713,35.0266602,151.125,3.125\n402.1747647,0.103268795,29.98258018,34.93881238,149.625,2.875\n434.3140714,0.13238439,29.80903244,35.0823009,151.125,2.875\n436.3058571,0.150321111,29.81903076,35.10116506,151.375,2.875\n407.2922727,0.118348055,29.98290253,35.00616968,149.625,2.625\n412.8896842,0.119008943,29.94483757,35.03495038,149.875,2.625\n439.7891458,0.142862275,29.82580566,35.1573751,151.375,2.625\n422.1695294,0.118935376,29.94387054,35.07450825,149.875,2.375\n446.5010408,0.157119691,29.85774231,35.19057548,151.375,2.375\n427.974,0.119985633,29.94967651,35.08868283,149.875,2.125\n429.4045588,0.121523082,29.90903091,35.11098588,150.125,2.125\n449.2168571,0.157532826,29.89903069,35.20076621,151.375,2.125\n431.66682,0.11944402,29.96419334,35.12461364,150.125,1.875\n454.6012941,0.129736602,29.92290306,35.21095693,151.375,1.875\n453.4999375,0.156125665,29.87838554,35.22935545,151.625,1.875\n431.9333333,0.110469751,30.03451538,35.13824141,150.125,1.625\n434.5182708,0.122806258,29.99225807,35.15427005,150.375,1.625\n449.4601176,0.147608399,29.88903236,35.23901832,151.625,1.625\n444.3868718,0.119026713,30.06064415,35.16500348,150.375,1.375\n448.8316364,0.126825318,30.01838684,35.1809929,150.625,1.375\n441.05826,0.14275682,29.9141922,35.25178397,151.625,1.375\n447.8498367,0.126214266,30.08774185,35.19026512,150.625,1.125\n439.6799048,0.134915173,29.97774124,35.26765239,151.625,1.125\n440.49225,0.139508396,29.90258026,35.28860724,151.875,1.125\n448.3563214,0.118740864,30.14258003,35.19953734,150.625,0.875\n450.488,0.118854627,30.10387039,35.21688145,150.875,0.875\n439.9442333,0.132534117,29.98967743,35.30670774,151.875,0.875\n448.7683922,0.115748294,30.11322594,35.22683102,150.875,0.625\n439.4087,0.125012532,30.05548286,35.32480824,151.875,0.625\n453.9028462,0.108834095,30.10612869,35.24060816,150.875,0.375\n452.3721892,0.129290894,30.10096741,35.26363087,151.125,0.375\n437.0067407,0.121058792,30.10903168,35.34422874,151.875,0.375\n448.44628,0.111729316,30.14354706,35.28238583,151.125,0.125"
  },
  {
    "path": "data/co2_gnnwr_pre.csv",
    "content": "﻿fCO2,Chl,Temp,Salt,lon,lat\n427.0227273,0.856589258,10.52290344,33.00970346,235.125,42.875\n482.8573846,0.774920166,10.57967758,33.03273696,234.875,42.625\n433.9548571,0.813277543,10.60032272,33.04260588,234.875,42.375\n433.3903939,0.800426304,10.63806438,33.0054965,234.875,42.125\n413.1546774,0.777915537,10.67838669,32.96838713,234.875,41.875\n418.4410652,0.800702929,10.74354839,32.93127775,234.875,41.625\n431.512,0.762529731,10.84354782,32.91182047,234.875,41.375\n422.6084318,0.772762179,10.93870926,32.91001529,234.875,41.125\n454.153,0.845942974,11.00290298,32.98121208,235.125,41.125\n443.8956667,0.83403188,10.99903202,32.9082101,234.875,40.875\n342.8012058,0.467087626,12.53903198,33.95320386,141.375,37.875\n344.6948889,0.383636236,12.38967705,33.99945909,141.625,37.875\n407.1016667,0.669980228,11.81645107,33.12304574,236.375,37.875\n334.791104,0.737642646,12.71354771,33.95206183,141.125,37.625\n343.1821411,0.363651812,12.30128956,34.06920618,141.625,37.625\n448.7936667,0.648809254,12.06774139,33.15285105,236.375,37.625\n398.4516154,0.817402661,11.91645145,33.16836315,236.625,37.625\n340.8363916,0.636316538,12.85290337,34.00788277,141.125,37.375\n343.3762396,0.395199537,12.58903217,34.07002074,141.375,37.375\n344.1905,0.348403126,12.30709648,34.1321587,141.625,37.375\n356.1563111,0.203659728,22.11903191,34.68532681,139.875,34.375\n403.7620245,1.215404987,13.84741879,33.58872443,239.125,34.375\n346.895102,0.752910435,18.07999992,34.29105127,134.875,34.125\n350.4395,0.171294987,22.86128998,34.60141844,138.125,34.125\n350.914,0.180465087,22.7048378,34.61788541,138.375,34.125\n355.854725,0.191437185,22.54709625,34.70392203,139.875,34.125\n358.82,0.183892593,22.67709541,34.71132851,140.125,34.125\n345.4965469,0.57190752,19.77290344,34.4065897,134.875,33.875\n350.745,0.149422735,23.21645164,34.61241102,137.875,33.875\n348.6580909,0.157815263,23.21967697,34.63668877,138.125,33.875\n356.8606667,0.172732502,22.92290306,34.72852325,140.125,33.875\n348.34304,0.213239476,21.04935455,34.53023609,134.875,33.625\n350.8944783,0.24293901,21.25290298,34.53382105,135.125,33.625\n348.2677143,0.148660839,23.1506443,34.63910341,137.625,33.625\n355.4448333,0.165596977,22.9593544,34.745718,140.125,33.625\n350.4318472,0.268164515,21.71225739,34.60033715,135.125,33.375\n349.0333333,0.131604359,22.82032204,34.68610948,137.625,33.375\n357.4286458,0.159946889,22.9074192,34.76255691,140.125,33.375\n"
  },
  {
    "path": "data/co2_gtnnwr.csv",
    "content": "﻿lon,lat,year,month,pCO2,Chl,Temp,Salt,pressure,windspeed\n152.125,40.625,1997,9,299.3456045,0.132827044,21.91366577,33.73594153,101451.125,1.994543791\n218.125,49.875,1997,9,296.0204571,0.564043283,14.85099983,32.35139066,100919.5703,3.616922617\n165.125,16.375,1997,9,341.5074969,0.020018393,29.75099945,34.77362049,100902.5859,3.535589933\n164.875,27.875,1997,9,353.7347868,0.035843641,29.09766579,35.26010865,101490.0781,5.457360744\n235.125,43.875,1997,9,318.7720009,1.12293148,14.08033276,32.37365699,101378.0469,1.959121704\n194.625,54.375,1997,9,294.7484784,0.873055875,8.784333229,32.12983567,100349.0156,4.353408813\n171.375,48.375,1997,9,352.6901521,0.445019424,10.90866661,32.65240532,101381.1094,2.951976299\n171.875,53.125,1997,9,307.6620712,0.870514035,9.116999626,32.86905628,101082.1719,3.003370762\n161.625,43.875,1997,9,297.1263348,0.584820151,16.09133339,33.25623,101619.5781,0.887386084\n196.625,54.125,1997,9,288.0836745,0.975321651,9.899000168,32.06011388,100320.7266,4.85000515\n235.125,39.875,1997,9,340.8726778,0.422971606,16.48533249,32.95083433,101389.7344,5.720654964\n236.875,19.875,1997,9,369.1350175,0.059910361,25.83166504,34.68467879,101015.1563,3.748605967\n159.125,43.375,1997,9,293.9204393,0.15366967,19.43099976,33.52794886,101600.2969,0.544212818\n186.375,54.125,1997,9,300.5439004,1.517566204,9.615333557,32.89163071,100630.2031,4.333070278\n165.125,40.375,1997,9,312.2558328,0.131166562,22.0423336,34.02479571,101722.3672,0.833675206\n165.125,41.375,1997,9,318.913467,0.312267274,19.01300049,33.77337003,101728.7031,0.438876808\n143.625,41.875,1997,9,311.656065,0.701859951,19.57733345,33.15549886,101372.4766,0.105507225\n236.125,37.875,1997,9,314.5112309,0.831319094,15.86699963,33.29120809,101332.2813,6.783443451\n204.125,54.125,1997,9,285.3392223,0.546082199,12.64900017,32.34167612,100293.8516,4.553453445\n162.875,44.125,1997,9,314.914103,0.51051563,15.74433327,33.23151481,101624.7109,1.231621623\n237.125,28.625,1997,9,403.1217216,0.060281701,21.59566689,33.80687976,101313.0547,5.967778206\n180.125,53.625,1997,9,312.37335,0.886207521,9.197666168,33.19534665,100883.8516,3.927823544\n215.125,44.875,1997,9,317.9447501,0.264318019,18.28933334,32.58555073,101364.6094,4.928939819\n173.375,49.125,1997,9,349.0099225,0.725725591,10.8876667,32.69440013,101308.4063,3.281776667\n154.375,43.375,1997,9,294.9054674,0.391794294,19.15233231,33.16395277,101532.5625,0.809696674\n152.625,42.375,1997,9,299.6828125,0.309324652,20.69033241,33.09810555,101487.5625,1.609841943\n148.375,38.875,1997,9,313.9008491,0.136976197,24.0826664,33.95412999,101345.5,0.872080028\n143.375,36.375,1997,9,327.5949576,0.068273515,27.81933212,33.77823138,101245.9766,2.075202465\n165.125,38.375,1997,9,324.5087254,0.10066478,24.9193325,34.3209039,101728.1094,1.410275817\n226.625,49.125,1997,9,314.6475691,0.538903832,16.60966682,32.36759073,101020.3984,3.202447653\n234.875,40.625,1997,9,343.7706673,0.323495239,16.14866638,32.83426696,101413.3359,4.64056778\n151.625,41.625,1997,9,288.0793891,0.216748878,21.13899994,33.28022307,101451.1875,1.700228572\n222.875,49.375,1997,9,322.3413365,0.442696899,16.24333382,32.33987927,100992.7656,3.102159023\n168.875,46.875,1997,9,353.0453333,0.547766685,12.16866684,32.89715743,101493.9531,2.541702747\n174.625,49.875,1997,9,330.0725364,0.707024395,10.64366627,32.80099195,101243.1953,3.421402454\n175.375,53.375,1997,9,309.7937816,0.755906105,9.597332954,32.99809116,101014.9922,3.604628563\n231.125,20.375,1997,9,359.2285047,0.046043932,24.35066605,34.84976256,101164.375,6.051556587\n198.875,54.125,1997,9,282.470389,1.142111182,11.14333344,32.1572026,100288.3906,4.859462738\n235.625,44.625,1997,9,308.2374242,5.720064163,11.8409996,32.35617319,101353.25,1.661839724\n164.875,19.375,1997,9,345.6033292,0.034865104,29.60866547,35.06007737,100995.3828,6.197584152\n182.625,53.875,1997,9,310.9878273,0.784556627,9.376333237,33.03649682,100782.4766,3.962291956\n141.875,42.375,1997,9,318.2789958,0.524873674,21.69133377,33.55144052,101348.1719,0.606920898\n191.125,54.375,1997,9,287.1571876,1.335819602,9.578000069,32.40486848,100447.8828,4.273795605\n164.875,35.375,1997,9,335.3808954,0.090496644,25.41966629,34.47474593,101718.6016,1.622296095\n223.625,49.375,1997,9,318.2458551,0.372224957,16.50666618,32.33307207,100992.5469,3.002416372\n165.125,40.875,1997,9,305.6924638,0.140210286,20.68266678,33.90026689,101726.5781,0.655759215\n148.375,39.125,1997,9,315.1712364,0.134701654,24.11733246,33.93394536,101348.7734,0.980082929\n215.125,49.375,1997,9,318.2412037,0.291362613,14.57966614,32.36841995,100942.5156,4.490260124\n164.875,36.125,1997,9,341.3030457,0.102134667,25.44933319,34.40846556,101724.0625,1.524119854\n215.125,49.125,1997,9,310.8925095,0.299971879,14.75999928,32.37010759,100963.9219,4.483291149\n161.875,46.875,1997,9,319.0040226,0.591508985,15.69433308,32.8843233,101518.9688,1.756858945\n164.875,18.625,1997,9,344.3487084,0.029374026,29.78433228,34.99148828,100961.1953,5.700772285\n165.125,43.375,1997,9,330.4046191,0.879592121,15.62899971,33.2260201,101683.2656,1.384803534\n233.125,21.625,1997,9,356.7409338,0.044395696,24.06099892,35.05152917,101126.4688,5.093652725\n165.125,36.375,1997,9,334.1444782,0.101253636,24.83866692,34.3941499,101730.8906,1.522912264\n158.625,45.875,1997,9,312.0745413,0.908977687,15.29399967,32.89870489,101545.5156,1.076634288\n149.625,39.625,1997,9,309.3090177,0.201943249,22.87366676,33.89327466,101376.1406,1.247689843\n233.125,43.875,1997,9,314.0567968,0.73167479,16.34866714,32.3458935,101401.2109,3.204950333\n147.875,43.875,1997,9,304.2807968,1.702331185,13.49100018,32.99948996,101458.8828,1.174578667\n175.625,49.875,1997,9,328.0810709,0.926634133,10.59200001,32.86285508,101225.5469,3.481255293\n153.375,46.625,1997,9,319.805567,1.580626369,12.64333344,32.86072272,101487.0156,1.785260916\n156.875,45.125,1997,9,293.420467,0.442823648,16.57799911,32.9399842,101549.8281,0.517010272\n161.375,43.875,1997,9,301.8207326,0.549035311,16.75300026,33.26451337,101617.1172,0.849467754\n202.625,54.125,1997,9,324.9110866,0.884369552,11.96299934,32.30244368,100274.8438,4.430012703\n171.125,52.875,1997,9,307.8648763,0.892873824,9.329999924,32.85178715,101103.5859,3.019812584\n234.375,41.375,1997,9,355.9957641,0.460610598,15.97166634,32.65374082,101437.2578,4.302416801\n146.875,38.375,1997,9,314.8533227,0.127441853,24.58599854,33.83114672,101318.7344,1.038636923\n164.875,31.625,1997,9,360.1265349,0.045137323,27.70199966,34.84791821,101660.7656,3.131449223\n236.375,37.125,1997,9,321.568788,0.932553411,16.6906662,33.37697381,101343.9688,6.565773964\n175.375,49.875,1997,9,325.0520286,0.727090359,10.63066673,32.85134685,101230.1406,3.464847803\n164.875,25.625,1997,9,347.1938361,0.034370579,29.65333176,35.37276703,101358,6.418725967\n165.125,38.625,1997,9,325.0300857,0.100856781,24.93533325,34.30891436,101726.4688,1.349570036\n164.875,27.625,1997,9,356.5713568,0.0346702,29.14866638,35.27529579,101475.5469,5.579859257\n231.375,20.125,1997,9,358.6156433,0.049045775,24.58866692,34.85010684,101148.4297,5.91645813\n162.875,50.625,1997,9,343.0725925,0.425925344,11.86166668,32.78432363,101259.9063,3.438845158\n167.625,51.875,1997,9,334.3301051,0.441671431,10.52699947,32.78038025,101176.5,2.993332863\n179.875,53.625,1997,9,311.434657,0.819597542,9.217666626,33.20210689,100884.0156,3.883624792\n233.625,44.125,1997,9,310.8369915,0.674403131,15.08766651,32.32506073,101381.9844,3.009859085\n144.875,42.375,1997,9,301.0993275,0.545012057,19.13066673,33.07918483,101384.9297,1.195198059\n164.625,51.125,1997,9,324.9003645,0.418532938,11.22633362,32.75654596,101224.625,3.235157251\n235.375,44.125,1997,9,308.5294756,5.275742531,12.71166611,32.38636565,101369.9688,1.73774004\n198.375,54.125,1997,9,297.8161329,1.243775487,10.77366638,32.12465703,100295.2734,4.812888622\n232.875,21.625,1997,9,356.6220786,0.04386849,23.86599922,35.04738772,101135.6484,5.264075756\n200.875,54.125,1997,9,290.1857691,1.192469716,11.18933296,32.24813217,100270.4766,4.488754272\n164.875,28.125,1997,9,355.6709987,0.036821913,29.04100037,35.24492151,101505.0391,5.331676006\n165.125,45.375,1997,9,312.0960579,0.564512491,14.00833321,33.15800858,101580.9609,2.052937984\n236.625,19.875,1997,9,361.7184573,0.057733785,25.76633263,34.7007153,101018.2188,3.77214241\n164.875,17.875,1997,9,344.9437932,0.027798915,29.70399857,34.92086726,100931.4219,5.01584053\n236.625,27.375,1997,9,402.1168917,0.057402279,22.39866638,34.05575311,101280.7188,5.694326401\n160.625,50.125,1997,9,342.298697,0.523978651,11.91566658,32.74203509,101307.2656,3.901900768\n239.375,33.875,1997,10,346.2241919,0.683305681,18.00806427,33.59728646,101453.8594,7.108819008\n208.125,53.875,1997,10,304.2345497,0.3742356,10.24354839,32.56291872,100533.4141,2.759591103\n157.625,47.125,1997,10,351.1361781,0.863355458,10.67903233,32.86948323,101268.2031,3.83698082\n230.125,46.375,1997,10,326.9111046,0.24100624,16.66806412,32.53548646,101429.1719,5.228394985\n235.375,46.125,1997,10,319.0727479,1.475952268,14.61580658,32.25643969,101518.8594,3.265786648\n158.875,47.875,1997,10,320.0565232,0.971184909,9.636774063,32.85134089,101232.5938,3.47227478\n150.125,42.875,1997,10,305.6626991,0.514793932,14.41709614,33.0379287,101369.75,3.407844305\n165.125,50.375,1997,10,366.4077065,0.603760719,8.802257538,32.8551476,101202.0625,2.578475237\n232.875,41.375,1997,10,319.6072794,0.387253404,16.66806412,32.38684779,101839.1484,4.762591839\n232.625,42.625,1997,10,318.093801,0.187864095,17.95096779,32.32317549,101781.6875,4.220050335\n211.125,47.875,1997,10,317.1961876,0.261043251,13.08838654,32.46967465,100992.9844,5.656388283\n225.875,46.875,1997,10,320.1123394,0.299954385,16.16935349,32.43950093,101344.2969,5.428792477\n218.125,47.375,1997,10,321.1277006,0.723123431,14.74290276,32.37046158,101228.9375,6.100135803\n205.625,48.375,1997,10,329.7531475,0.395363957,11.26225758,32.39536786,100772.8672,4.034600258\n206.875,17.125,1997,10,352.2104975,0.043866154,27.47451591,34.64057404,101358.2734,7.856566906\n160.125,10.125,1997,10,349.9247408,0.032368638,29.70419312,34.03628683,101077.9688,3.625798702\n180.875,49.875,1997,10,336.0178398,0.398490638,9.31387043,32.81142354,100947.1016,3.927436829\n219.375,1.125,1997,10,359.0330739,0.166295916,24.63129044,35.02764356,100981.1875,3.121119022\n230.375,45.625,1997,10,324.7602558,0.205152601,17.25548363,32.56759095,101518.4219,5.181357384\n211.875,13.625,1997,10,348.1869262,0.080086134,27.79225731,33.88281947,101154.5469,7.745063782\n161.625,11.625,1997,10,345.3551016,0.029865284,29.45645142,34.2361576,101111.5625,4.966234207\n201.375,48.625,1997,10,331.3806135,0.283483714,10.39354801,32.4598124,100645.9297,1.961458445\n145.625,4.875,1997,10,357.4872517,0.071225494,30.66903114,34.09160024,101136.0859,1.867441654\n156.625,46.625,1997,10,325.1479137,1.052081585,11.5764513,32.88025993,101289.4531,4.077719212\n218.125,52.625,1997,10,314.0153299,0.441638321,11.8129034,32.38015133,100602.8906,4.70919323\n234.375,43.375,1997,10,310.9922005,0.473373979,16.52967644,32.5172869,101697.8984,3.067576408\n222.875,51.875,1997,10,315.3753234,0.483722508,13.31096745,32.29729974,100722.9453,4.807603836\n234.375,48.625,1997,10,324.7196083,1.346669793,12.73483849,31.60109937,101285.0859,2.453017712\n183.875,53.875,1997,10,330.4003341,0.527030408,7.990644932,32.93420029,101089.6563,3.769236565\n233.125,42.875,1997,10,324.7595385,0.228113875,17.56387138,32.3727693,101753.1719,3.955336094\n178.125,53.625,1997,10,323.6873374,0.429148734,7.878709793,33.14595026,101180.9219,1.676390171\n144.125,16.375,1997,10,338.6277377,0.035993878,29.97225761,35.03068352,101185.4609,4.406984329\n148.625,41.625,1997,10,273.441135,1.582920551,14.25677395,33.11233974,101410.4375,3.12421751\n148.625,1.375,1997,10,364.5132543,0.115942664,30.41838646,34.67877179,101156.1875,2.372832775\n156.625,0.125,1997,10,362.4966548,0.142139792,29.53516006,35.32506633,101139.7422,4.534590721\n235.125,1.625,1997,10,363.4842695,0.152628228,23.95419312,34.70992607,100984.8984,5.414237976\n234.875,9.125,1997,10,351.4850621,0.070436403,27.48161316,33.64457917,100966.2188,1.472082138\n214.125,11.875,1997,10,347.6041183,0.050999433,28.02709579,33.73482835,101076.2188,7.163446903\n234.875,8.125,1997,10,345.8900788,0.067998998,27.48838615,34.08604431,100971.8984,0.21130541\n168.125,51.375,1997,10,336.6546437,0.555158675,8.377096176,32.7741034,101212.9375,1.759351969\n202.875,20.625,1997,10,343.6439624,0.064694606,27.88354874,34.97964638,101459.7578,4.352082253\n163.875,9.625,1997,10,354.4726408,0.033717763,29.62838554,33.98856199,101072.3438,3.540642738\n195.125,54.375,1997,10,318.0604658,0.599404633,8.577419281,32.16630834,100932.4609,4.674869537\n143.625,18.875,1997,10,343.9496001,0.036057375,30.01451492,34.85308439,101287.2734,4.791641235\n214.125,53.375,1997,10,321.734334,0.307652771,11.09967709,32.51660949,100508.1797,4.249663353\n150.875,43.125,1997,10,301.252332,0.486824989,14.1870966,33.11681855,101374.9844,3.351185799\n144.125,15.875,1997,10,340.462603,0.036726426,30.03096771,35.00644493,101180.7656,4.120388985\n234.375,44.875,1997,10,319.7366612,0.615913749,15.44806385,32.26232457,101601.7734,3.559295416\n230.125,45.375,1997,10,324.181244,0.213438705,17.33580589,32.58715361,101546.6016,5.114785671\n214.875,11.625,1997,10,359.2153542,0.055588245,27.89193535,33.66908157,101067.9219,6.997488976\n170.375,52.375,1997,10,354.5560293,0.861361861,7.462580681,32.84643525,101215.6719,0.954429805\n229.125,50.375,1997,10,307.4226554,0.389691919,14.2658062,32.25088596,100990.1406,3.731487274\n219.625,7.125,1997,10,341.6754687,0.097613744,27.95322609,34.19048935,100982.8203,1.573373795\n165.125,5.875,1997,10,346.2318758,0.04664259,30.21193504,34.39687175,101056.1719,2.706587076\n229.625,45.875,1997,10,321.0009835,0.203454226,17.06451607,32.57520813,101485.5391,5.242564678\n180.125,53.625,1997,10,345.234444,0.369250357,7.865160942,33.12768698,101142.8594,2.581335068\n151.375,43.375,1997,10,299.0096595,0.661089897,14.20612907,33.13789457,101373.0234,3.427821636\n220.125,52.375,1997,10,313.1435094,0.382972389,12.43870926,32.35768294,100644.7266,4.936696053\n207.875,48.125,1997,10,314.4352834,0.316781253,11.44483852,32.46229291,100862.4375,4.845604897\n192.875,49.125,1997,10,313.779315,0.3745749,9.990644455,32.60539687,100547.3984,2.400346518\n217.875,47.375,1997,10,317.280925,0.742587149,14.68806458,32.36973864,101224.7891,6.10390234\n237.875,35.875,1997,10,338.7144821,2.138537884,16.04838753,33.46035188,101591.8281,7.058995247\n218.875,8.625,1997,10,346.4546682,0.0596934,28.31225777,33.66964573,100992.4375,4.041669846\n203.125,20.375,1997,10,343.4750656,0.065908901,27.72774124,34.95815998,101455.7188,4.149009705\n235.125,1.125,1997,10,385.6913259,0.172374412,23.62290192,34.75540262,100986.8672,5.70857048\n239.125,34.125,1997,10,351.2260709,0.607727706,18.01967621,33.58095098,101473.3047,7.225286484\n199.875,48.625,1997,10,332.1248364,0.263733238,10.58193493,32.49912351,100614.0313,1.319616318\n164.875,6.125,1997,10,345.4297044,0.052876148,30.1529026,34.3703602,101054.375,2.264425755\n229.875,46.375,1997,10,325.0019001,0.224097267,16.68322563,32.54279858,101427.9688,5.241370201\n182.375,49.875,1997,10,338.6433856,0.457931012,9.602257729,32.81337893,100861.6797,3.903858185\n144.125,8.375,1997,10,346.680005,0.037307583,30.34516144,33.94792384,101116.6406,0.972408175\n235.125,40.375,1997,10,338.8696313,0.589505494,14.16387081,32.82866806,101738.1016,4.573856831\n228.625,46.625,1997,10,319.0257333,0.312757492,16.62580681,32.51930076,101390.8281,5.330183983\n163.875,13.875,1997,10,346.3855845,0.023130046,29.21129036,34.57556587,101184.3672,6.774831772\n153.875,0.125,1997,10,368.4236757,0.15538159,29.72645187,35.33890468,101151.5938,4.253888607\n233.125,41.375,1997,10,320.728217,0.438933194,16.50032234,32.41890514,101827.5703,4.76648283\n235.625,0.125,1997,10,391.6986875,0.21964556,22.79806328,34.85594451,100993.5313,6.173875332\n166.125,50.625,1997,10,354.7572872,0.673990786,8.385806084,32.8461616,101213.0938,2.400587559\n212.625,47.625,1997,10,309.3610099,0.309360474,13.60870934,32.43075603,101066.7188,5.857097626\n226.125,51.125,1997,10,310.9834511,0.524327338,13.88548374,32.30466974,100869.3203,4.594158649\n159.125,0.125,1997,10,362.2684737,0.164636001,29.11645126,35.35427892,101124.3438,4.352081299\n234.125,40.375,1997,10,330.7989627,0.601125062,16.17483902,32.57439196,101799.2734,5.685367107\n234.625,9.625,1997,10,361.2631955,0.07979624,27.46903229,33.4194237,100967.9688,2.065873623\n168.875,51.875,1997,10,334.0827793,0.551302373,8.717096329,32.83722496,101209.9844,1.428897142\n142.625,26.875,1997,10,332.2053364,0.054370828,28.62354851,34.84272528,101439.8281,0.344854236\n205.875,17.625,1997,10,345.9091529,0.041863982,27.51419258,34.73798496,101379.1406,7.850803375\n150.625,0.375,1997,10,362.0162768,0.144133151,29.82903099,35.06467748,101157.2734,2.603222847\n234.875,40.875,1997,10,344.8090236,0.719134033,14.90451622,32.74888027,101743.7813,4.605179787\n208.125,16.375,1997,10,352.9224094,0.039461397,27.37387085,34.49004257,101311.9609,7.97884655\n188.125,49.375,1997,10,330.5964199,0.414356202,9.92870903,32.77281213,100586.2891,3.339587688\n233.125,40.875,1997,10,327.1811244,0.425734282,16.46645164,32.38900888,101846.1406,5.154610634\n218.125,9.375,1997,10,353.5610623,0.061900932,28.18838692,33.54176086,101006.5234,4.988023758\n230.125,46.125,1997,10,319.0529308,0.238836259,16.87677383,32.55224395,101459.2109,5.235258102\n165.125,3.875,1997,10,340.6527979,0.141083553,29.59806442,35.00703615,101079.2266,4.974433422\n144.125,14.625,1997,10,345.8839006,0.031008273,30.09354782,34.83021706,101171.1563,4.053705215\n184.375,49.625,1997,10,342.7245367,0.658587933,9.78064537,32.79689699,100744.8984,3.829699039\n229.875,46.125,1997,10,314.9363665,0.224500328,16.89354897,32.55985802,101458.2266,5.240128994\n208.625,15.875,1997,10,351.5868122,0.035443798,27.32386971,34.36915195,101283.6641,8.091753006\n229.625,45.625,1997,10,321.6906269,0.183958471,17.19290352,32.59224492,101515.6875,5.207366943\n202.875,48.375,1997,10,335.6183725,0.246281415,10.33354855,32.44290888,100694.6484,2.81140995\n231.125,49.875,1997,10,304.3648856,0.463757396,14.14064503,32.1763877,101094.0313,3.104522467\n179.875,53.625,1997,10,348.8377119,0.492937267,7.899354458,33.13865328,101154.3281,2.481375933\n164.125,8.875,1997,10,353.442135,0.030759355,29.66322517,33.96046454,101063,2.670571804\n165.125,6.125,1997,10,345.6910278,0.045790195,30.19677353,34.35507041,101053.3906,2.225304842\n212.125,13.375,1997,10,349.149878,0.07666415,27.80903244,33.87389487,101141.3281,7.696235657\n174.875,53.375,1997,10,335.106478,0.567164719,7.808386803,32.83712077,101201.5781,0.401034147\n145.125,32.125,1997,11,315.3626973,0.086087093,23.72099876,34.76212639,101973.1875,1.025519848\n205.125,5.625,1997,11,356.7313694,0.101595707,27.89333344,34.87873197,101033.8359,2.593375921\n233.375,35.375,1997,11,337.8699445,0.159350365,17.29566574,33.01670861,101559.8203,2.992633104\n238.375,34.125,1997,11,343.3971557,0.329993993,16.04533386,33.49336213,101530.4375,4.241530418\n161.125,36.625,1997,11,298.0367667,0.158866003,19.55233383,34.55828339,102158.125,0.884809732\n146.875,34.375,1997,11,311.5266821,0.202921122,23.26866531,34.60004997,101999.3984,0.775605083\n171.375,37.375,1997,11,311.5850158,0.155311912,20.64799881,34.49272245,102231.6953,0.807179809\n216.625,38.875,1997,11,330.5159481,0.139737859,18.78366661,33.47616386,101160.5547,6.742266655\n157.125,36.125,1997,11,297.0083799,0.254036427,22.40999985,34.53709888,102110.6563,0.178082198\n247.875,22.375,1997,11,376.6788074,0.105395749,25.64966583,34.42714304,101217.7969,4.176802635\n151.875,35.875,1997,11,303.1583677,0.209026754,23.11833191,34.54319566,102063.6875,0.35765177\n231.875,35.625,1997,11,344.4113665,0.156039923,17.87366676,32.97453678,101536.4453,3.216549158\n192.375,39.125,1997,11,313.3861522,0.195860401,16.05633354,34.27073592,102232.5156,5.648920536\n167.125,37.125,1997,11,299.8639893,0.17630592,21.65366554,34.54935378,102210.2813,0.835877836\n167.875,37.125,1997,11,305.8957623,0.168245077,21.33499908,34.55559188,102212.4688,0.787421465\n211.625,39.375,1997,11,321.6702673,0.123395279,18.89099884,33.67230594,101258.7578,7.846589565\n152.375,38.875,1997,11,292.9515137,0.344041944,17.68099976,34.39817482,102052.6563,1.33704114\n147.375,38.125,1997,11,290.6380712,0.454015642,18.65066528,34.05945957,101988.4766,1.380787015\n165.625,36.875,1997,11,303.1246543,0.177605748,21.79633331,34.53999513,102196.1406,1.022337914\n205.125,0.375,1997,11,350.8318657,0.181103602,25.50899887,35.23628151,101029.7969,1.658551216\n141.125,34.875,1997,11,317.8488547,0.198664114,24.35466576,34.489223,101954.3438,1.478895664\n151.375,35.875,1997,11,302.7562977,0.275482565,23.3876667,34.53339165,102057.6797,0.396486342\n178.375,38.125,1997,11,309.8142567,0.239175454,18.74633217,34.36773765,102341.5938,1.031102896\n205.125,3.125,1997,11,360.7378479,0.141945124,26.69733238,35.14431548,101026.8438,1.281026125\n207.625,39.625,1997,11,316.7408369,0.183099538,18.68400002,33.71783161,101405.7969,7.958404541\n218.625,38.625,1997,11,331.5749414,0.104284637,19.18099976,33.52262086,101141.1094,6.646201134\n205.125,3.375,1997,11,363.3075154,0.14924708,26.79566574,35.15275311,101026.0781,1.379989505\n213.875,39.375,1997,11,328.2399167,0.129532933,19.03499985,33.58346671,101180.2188,7.264211655\n151.625,39.625,1997,11,289.3824263,0.486351848,17.90333366,34.29523987,102017.9141,1.72130847\n162.125,36.625,1997,11,306.7599291,0.2001376,20.82266617,34.54960161,102165.6563,0.90539062\n150.625,39.875,1997,11,310.6440262,0.348351985,18.57233238,34.17921329,101988.5313,2.133389473\n147.375,38.375,1997,11,295.7760215,0.503016412,17.44266701,34.02443469,101983.7813,1.65091157\n195.375,39.375,1997,11,312.5646456,0.236959949,15.95299911,34.18303025,102084.9297,6.83549881\n142.125,33.375,1997,11,314.7160246,0.125007167,23.40833282,34.60131061,101943.3594,0.966019988\n244.875,25.375,1997,11,396.0883235,0.096826725,22.52099991,34.17910618,101352.8125,5.535850525\n142.625,36.625,1997,11,304.9423886,0.368825018,22.09333229,33.82208663,102003.6094,1.575569749\n146.375,39.125,1997,11,277.5661248,0.408751309,18.67666626,33.80864519,101963.8906,2.078311443\n141.375,33.375,1997,11,320.8142794,0.09314055,24.15399933,34.5644654,101928.4531,1.113497853\n244.125,26.375,1997,11,378.9501526,0.129296988,22.24833298,34.09323895,101396.7266,5.72578001\n227.375,36.875,1997,11,343.6266529,0.11804834,18.81933212,33.50621575,101382.4219,5.079958916\n152.125,35.875,1997,11,299.653993,0.230761603,23.06866646,34.54477721,102066.5234,0.296778738\n244.125,26.125,1997,11,380.9576337,0.133028165,22.43099976,34.10988939,101396.8359,5.669783592\n202.875,39.625,1997,11,312.687447,0.138229176,17.31833267,33.7929852,101648.8516,8.180896759\n204.625,39.625,1997,11,314.5796304,0.140944928,18.10566711,33.78913867,101554.7969,8.097808838\n160.125,36.625,1997,11,302.6157279,0.218024552,21.43299866,34.56578761,102148.125,0.706408501\n185.625,38.625,1997,11,315.5270156,0.21021007,16.36266708,34.56656647,102400.1953,2.564788342\n182.125,38.375,1997,11,311.7285225,0.223936886,17.66333199,34.52069092,102398.4453,1.642822981\n151.625,41.875,1997,11,267.3364183,0.712755263,12.5953331,33.45396578,101923.375,3.055399418\n153.125,42.875,1997,11,307.0659779,0.374810666,11.78866673,33.24611127,101878.5781,3.840970516\n249.875,20.625,1997,11,374.6955647,0.091505699,27.65866661,34.65707999,101141.6563,3.367796421\n153.375,35.875,1997,11,300.8399955,0.218156755,22.64999962,34.54209888,102079.1953,0.273948789\n143.625,31.125,1997,11,315.7792347,0.122050583,24.36899948,34.83914977,101946.75,1.347105145\n174.875,37.875,1997,11,307.9413902,0.220980719,19.11266708,34.43996179,102276.8125,0.430467129\n219.125,38.625,1997,11,330.9714006,0.120778285,19.1566658,33.51632702,101133.5703,6.568056583\n246.375,24.125,1997,11,384.5945291,0.12938486,25.24399948,34.31031668,101277.6563,4.864677906\n205.125,4.375,1997,11,365.9206011,0.156875789,27.17433357,35.06361198,101028.0469,1.837872982\n141.125,33.875,1997,11,320.9401096,0.134919152,24.30699921,34.53556681,101931.3438,1.247055292\n146.125,35.375,1997,11,301.0050934,0.217763215,23.18299866,34.50179732,102003.4375,0.991701841\n236.625,34.625,1997,11,337.8970456,0.49994424,15.35199928,33.30708104,101566.0469,3.270561218\n246.375,23.875,1997,11,386.2295427,0.124340013,25.17933273,34.29792631,101277.5469,4.770085335\n216.125,34.375,1997,12,324.6649067,0.087837286,19.13871002,34.17594767,102041.4531,2.641797304\n152.625,34.625,1997,12,299.8342836,0.269919157,19.78580666,34.78125423,101842.3672,3.198364496\n155.125,34.625,1997,12,301.352178,0.182322353,21.14032173,34.72468245,101832.1016,3.706350803\n160.125,0.125,1997,12,368.0806202,0.180227607,28.98386955,35.18258202,100948.7422,2.258672476\n130.125,15.375,1997,12,336.0547108,0.034234442,29.22903061,34.60037422,101369.0391,6.912259102\n129.875,25.125,1997,12,319.0370167,0.089789361,25.2093544,34.75843459,101972.1406,4.792766571\n158.875,34.375,1997,12,303.5065928,0.188841015,21.14999962,34.64045882,101823.5781,4.079008102\n129.875,16.875,1997,12,333.1083366,0.037229329,28.97999954,34.64328152,101449.2188,7.439157486\n226.375,34.375,1997,12,327.9779408,0.089360557,18.66741943,33.65916753,102075.2109,1.040636063\n135.375,24.625,1997,12,324.1747446,0.065310031,26.13419342,34.87114948,101850.5078,3.95619297\n130.125,20.125,1997,12,331.9003283,0.056402877,27.33419228,34.76630229,101674.0859,7.390021324\n135.125,14.125,1997,12,338.4215226,0.036532391,29.34387016,34.63236576,101257.9375,6.622169495\n198.875,34.375,1997,12,302.4123834,0.098383456,18.50806427,34.62370515,102126.9922,4.227140427\n144.125,0.125,1997,12,379.6535492,0.084888071,30.3645153,34.94441622,100971.3516,1.754793406\n143.125,34.625,1997,12,306.3446946,0.213353142,20.57838631,34.72255933,101852.3125,2.31994915\n178.625,0.875,1997,12,363.885095,0.190987736,27.38129044,35.42410856,100875.9844,3.416387558\n130.125,15.875,1997,12,333.3531484,0.035639673,29.24064445,34.60943663,101392.7969,6.966792107\n173.625,34.375,1997,12,300.4254845,0.192170918,19.85516167,34.73643428,101888.8438,4.312120914\n207.875,34.375,1997,12,312.0442688,0.101926297,19.43741798,34.49379301,102021.7969,3.870219707\n185.125,34.375,1997,12,310.7967114,0.225467071,17.78257942,34.74900961,101985.3047,4.913475037\n127.875,25.875,1997,12,313.0661494,0.095877275,25.03064537,34.80721569,102047.7344,4.349065781\n230.125,34.375,1997,12,330.8094976,0.1241953,17.75064468,33.43255812,102047.6797,1.900405407\n166.625,0.125,1997,12,359.0045051,0.180075854,28.26516151,35.51290768,100922.7422,1.669592857\n134.875,19.125,1997,12,336.9815928,0.037519522,28.60709572,34.70778739,101547.4766,6.805851936\n207.375,34.125,1997,12,312.0338296,0.089499608,19.63064384,34.59357309,102043.5313,3.803887129\n190.125,5.375,1997,12,371.8194498,0.137383446,28.13838577,35.00012851,100883.3047,6.094239235\n194.125,34.375,1997,12,301.345773,0.155491486,17.98064423,34.75315976,102109.9453,4.113876343\n137.875,28.375,1997,12,319.8952205,0.121282846,23.12483788,34.97197944,101895.3438,3.250111341\n153.875,34.625,1997,12,297.7861243,0.257514775,19.93032265,34.76562941,101837.8906,3.454670906\n146.375,34.625,1997,12,315.2163613,0.17129758,20.28741837,34.77495074,101856.6797,2.771981716\n227.625,34.375,1997,12,329.1288267,0.092231266,18.33419228,33.61428136,102071.9375,1.26859498\n129.875,12.625,1997,12,348.6982917,0.033369157,29.63225746,34.56587821,101251.6563,7.227680683\n140.125,34.625,1997,12,312.2453959,0.231427252,21.71774101,34.65841734,101892.5078,2.698728561\n190.125,4.375,1997,12,362.5486078,0.146744162,27.71290207,35.1575557,100868.5625,5.35737896\n129.875,22.125,1997,12,320.3420544,0.076287203,26.44322586,34.73942214,101809.3281,6.522270203\n138.125,29.875,1997,12,315.8153668,0.139212638,23.31354713,34.95264077,101906.875,3.324844599\n129.125,27.375,1997,12,311.5623925,0.115542389,23.90612793,34.84580714,102076.8438,3.640623569\n129.875,13.375,1997,12,346.3126418,0.028127111,29.6077404,34.57290953,101283.3906,7.206583977\n152.375,34.625,1997,12,300.3296384,0.267592818,19.9593544,34.79113394,101843.1328,3.10859108\n130.125,11.375,1997,12,342.3139115,0.04608142,29.77548409,34.4358753,101201.2969,7.037822247\n144.625,0.125,1997,12,381.5740467,0.081118472,30.47999954,34.99533743,100970.0391,1.696950912\n176.875,0.125,1997,12,363.3402492,0.180713058,27.23548317,35.53564823,100879.375,2.883340836\n206.125,34.375,1997,12,306.3022167,0.096525632,19.64161301,34.7291401,102050.7422,3.92566061\n145.625,0.125,1997,12,372.7488811,0.085574202,30.65161133,34.99479097,100967.4766,1.501533031\n177.625,1.875,1997,12,360.4009561,0.179748043,27.74516106,35.34652478,100883.9609,3.792364359\n211.875,34.375,1997,12,325.104732,0.1002369,19.220644,34.20585901,102005.2969,3.307215214\n149.875,34.625,1997,12,308.874226,0.177348614,20.71774101,34.78772777,101829.2656,3.174161196\n177.875,1.625,1997,12,362.3380347,0.169454202,27.63612938,35.35153013,100882.0469,3.661267042\n157.375,0.125,1997,12,370.9420388,0.17268528,29.37903214,35.20515007,100957.6953,2.094722986\n202.875,34.125,1997,12,306.3708025,0.085123524,19.41483879,34.72830147,102109.2969,3.974182129\n213.625,34.375,1997,12,326.3269606,0.09261024,19.17161179,34.19200224,102015.7813,3.071341991\n130.375,30.625,1997,12,308.9308595,0.200477153,22.53967667,34.62622035,102160.1406,4.58141613\n133.875,24.125,1997,12,331.0939391,0.074934401,24.80483818,34.86249083,101851,4.56054306\n130.125,12.625,1997,12,349.164701,0.034635168,29.63161278,34.57965457,101248.7109,7.190691471\n179.375,34.375,1997,12,307.4663443,0.247652173,17.40193558,34.80140769,101952.4844,4.40746212\n129.875,24.875,1997,12,318.8873501,0.089577787,25.53516006,34.74013442,101960.2344,4.918299675\n217.875,34.375,1997,12,323.3990706,0.088518567,19.27516174,34.03135699,102061.3359,2.771473408\n131.125,26.875,1997,12,315.0125818,0.112147883,24.50128937,34.85568863,102016.6563,3.685097218\n144.375,0.125,1997,12,382.6206217,0.081259675,30.41516113,34.96987683,100970.6953,1.727793336\n166.125,34.125,1997,12,302.3706558,0.216923535,19.57386971,34.78470904,101858.1563,3.772908211\n135.125,13.875,1997,12,340.2473468,0.035609201,29.38612938,34.63494104,101249.2578,6.639565468\n212.625,34.375,1997,12,324.0268879,0.098193049,19.45870972,34.19939452,102008.3594,3.273278713\n190.625,34.125,1997,12,302.9446704,0.183422863,18.24451637,34.72476131,102073.5703,4.246184826\n168.625,0.125,1997,12,361.4784865,0.194334388,28.04032135,35.37897825,100917.1172,1.219043612\n208.375,34.375,1997,12,315.5708527,0.097747989,19.44096756,34.42313242,102014.8047,3.768306255\n156.375,0.125,1997,12,366.75264,0.156222373,29.43612862,35.26852131,100959.8281,2.014963388\n137.625,27.875,1997,12,319.0329272,0.118898563,23.72903061,34.95129174,101892.7813,3.217167377\n135.125,15.375,1997,12,339.3255366,0.035842352,29.25774193,34.74501795,101300.7656,6.706707001\n178.125,34.375,1997,12,309.9605901,0.214910835,18.38871002,34.78680587,101941.5625,4.267751694\n172.125,0.125,1997,12,355.7346531,0.189031184,27.75322533,35.62844288,100902.4219,1.56907177\n204.375,34.375,1997,12,304.9109357,0.107222825,18.62354851,34.74699581,102075.3203,3.985496759\n138.625,31.375,1997,12,312.9426952,0.170980215,23.14354706,34.86051112,101914.2969,3.422260046\n154.125,47.875,1998,1,386.8685239,0.273422658,2.438386917,33.06492406,100401.9453,6.192867279\n208.625,51.375,1998,1,365.0653034,0.316441297,4.553870678,32.86224258,99046.45313,2.466715097\n136.625,33.625,1998,1,298.5153256,0.283443332,18.80967712,34.48398983,101854.5,4.873042107\n156.375,36.375,1998,1,315.5769082,0.266640872,14.89258003,34.63197827,101151,7.339681625\n223.375,45.375,1998,1,320.6699409,0.351062566,9.375805855,32.94791675,99712.15625,5.553726196\n147.125,4.875,1998,1,359.7918372,0.09998142,28.27290344,34.57234424,101121.9375,7.358712673\n215.125,44.875,1998,1,336.4152368,0.231813252,8.653225899,33.23452854,99376.25,5.343187809\n135.375,32.875,1998,1,298.0170489,0.184420794,20.99419403,34.58933526,101862.5781,5.707045555\n209.625,42.875,1998,1,327.4785289,0.312292516,8.917097092,33.31918573,99453.14844,5.585385323\n162.625,37.375,1998,1,307.6122597,0.357308328,15.39387035,34.47533107,100871.0156,9.167339325\n155.875,6.625,1998,1,363.8529541,0.075834528,28.21774101,34.51646519,101151.9219,7.909190655\n145.875,0.125,1998,1,370.8313046,0.119870834,28.75838661,34.79124564,101069.5625,4.793756485\n237.375,35.625,1998,1,328.0691969,0.36137411,15.11548328,33.29943657,101680.6406,2.873764992\n186.375,39.125,1998,1,326.6138134,0.284741402,11.63322544,34.49076766,99745.36719,6.748449326\n163.125,37.375,1998,1,307.9514423,0.249544501,15.67064476,34.48800361,100848.5625,9.395528793\n163.375,37.375,1998,1,307.7967576,0.252342731,15.73580647,34.49400389,100837.4844,9.472948074\n216.875,45.125,1998,1,337.4022742,0.331764966,8.296129227,33.21978533,99419.50781,5.346828461\n135.125,31.625,1998,1,299.7636286,0.191257969,20.59451485,34.79422736,101838.1094,4.6628685\n147.625,35.875,1998,1,306.2339995,0.289919473,18.39903259,34.74027407,101409.2891,6.392760754\n135.875,5.875,1998,1,349.8325243,0.08533068,27.77161217,34.54900026,101173.5,7.060971737\n161.625,37.125,1998,1,312.3659427,0.333843261,14.62935448,34.48437816,100938.9688,8.610942841\n150.625,36.375,1998,1,309.0660663,0.261421174,16.04741859,34.64586633,101309.7188,6.036464691\n174.875,38.875,1998,1,329.2679285,0.266768098,12.28645134,34.35388607,100120.3281,9.439800262\n146.875,7.125,1998,1,357.1764239,0.083992288,27.90967751,34.53414464,101173.9844,7.904976845\n137.375,29.125,1998,1,296.5488917,0.176310539,20.72129059,34.82525533,101823.1406,3.764240265\n135.625,27.375,1998,1,307.2957217,0.164604694,21.56774139,34.88480175,101889.3438,2.600868702\n209.875,43.125,1998,1,331.3945623,0.25319171,8.83419323,33.31411505,99427.91406,5.492189407\n148.625,44.375,1998,1,406.8920367,0.694079399,3.033548355,33.28810298,101052.8984,7.212738037\n182.625,39.375,1998,1,329.7636741,0.254668388,11.74290276,34.21722037,99766.44531,7.253450871\n193.625,38.875,1998,1,323.9851106,0.278753996,11.427742,34.33348465,99743.83594,5.028993607\n225.375,44.375,1998,1,325.9079347,0.358649582,10.35612869,32.90349877,99951.71875,6.011379719\n140.375,23.875,1998,1,318.9396369,0.065206587,24.98032188,34.95101982,101912.6641,1.343918204\n139.375,25.875,1998,1,308.4561612,0.09886951,23.3396759,34.93422616,101904.7969,2.380465508\n135.125,20.875,1998,1,321.9452591,0.08891736,25.69322586,34.96507174,101846.7344,3.600852489\n233.875,38.875,1998,1,323.6806136,0.488288373,13.0990324,32.78479564,101238.6563,5.683565617\n164.875,0.375,1998,1,361.783448,0.162648171,28.21096802,34.40556365,101018.375,6.125687599\n147.875,4.375,1998,1,367.2418808,0.129991621,28.25516129,34.69469613,101109.375,7.314860344\n130.125,21.625,1998,1,319.3573232,0.071529813,25.11645126,34.89437717,101842.5859,3.265776634\n129.875,17.125,1998,1,323.0645737,0.045220792,26.14032173,34.72514045,101654.8047,6.06379509\n132.875,17.375,1998,1,330.6671451,0.055190194,26.6641922,34.86713791,101678.8906,6.384596825\n133.375,17.875,1998,1,330.6995026,0.051598493,26.66806412,34.89122516,101705.0547,6.01335907\n219.625,45.875,1998,1,333.294328,0.23231639,8.716773987,33.12917584,99462.21875,5.059787273\n171.125,38.375,1998,1,335.0909948,0.275583744,12.4074192,34.46772557,100371.9063,9.951417923\n166.875,37.875,1998,1,306.1391154,0.264302071,14.69322586,34.50658953,100637.2422,10.0038147\n211.625,43.625,1998,1,332.8487087,0.261017501,8.660644531,33.31089449,99411.53125,5.444564819\n139.625,25.125,1998,1,311.2560512,0.070172928,23.77548409,34.93521363,101915.9375,1.896908283\n138.875,26.625,1998,1,308.9985339,0.106050506,23.25387001,34.92086762,101891.1406,2.762795448\n158.625,50.125,1998,1,370.2311432,0.349583284,2.445161104,33.04139638,100017.5313,4.108365536\n151.875,6.875,1998,1,356.7025995,0.097781122,27.9819355,34.58273703,101164.7656,7.825071335\n152.875,7.625,1998,1,354.7240797,0.053047493,27.63645172,34.56556696,101185.7344,7.979890823\n137.125,28.125,1998,1,298.838473,0.190401524,21.17290306,34.8602556,101862.4141,3.033973694\n135.125,31.125,1998,1,300.8787626,0.155933395,20.69967651,34.83601719,101833.6875,4.461550713\n146.875,1.625,1998,1,372.2944599,0.117567368,28.58225822,34.64228797,101075.5156,5.888090134\n217.375,45.375,1998,1,334.3130068,0.28821215,8.32516098,33.20805073,99412.40625,5.266077995\n162.625,51.125,1998,1,386.774167,0.339582385,3.024838686,33.10444808,99814.57031,3.238328934\n234.625,38.125,1998,1,322.3176845,0.438671827,13.58354855,33.05866015,101366.5781,5.456466675\n149.375,5.875,1998,1,361.2835963,0.102579176,28.21451569,34.67602295,101139.75,7.759735107\n134.875,22.125,1998,1,328.1770782,0.091100007,25.30322456,35.03404719,101888.0859,2.502586842\n137.125,20.875,1998,1,316.8825273,0.063727453,25.24258041,34.99153548,101851.5938,3.566855907\n132.375,16.625,1998,1,328.2399411,0.051158611,26.63806343,34.76323128,101639.8906,6.911308765\n174.625,38.875,1998,1,327.4493673,0.229700908,12.52645111,34.35887557,100128.9531,9.538528442\n130.125,21.375,1998,1,326.4650212,0.066158704,25.32548332,34.89384496,101833.3594,3.386537075\n164.875,6.875,1998,1,361.0430542,0.072603002,27.79032135,34.23059958,101147.6641,8.128067017\n188.875,39.125,1998,1,324.5413316,0.268103629,11.60451603,34.47009575,99724.60938,5.949316502\n155.875,8.125,1998,1,355.6341679,0.063310891,27.53967667,34.60893595,101200.3125,8.093222618\n233.625,34.375,1998,1,331.2786396,0.241657197,14.46999931,33.31917256,101671.2422,4.908166885\n135.125,30.375,1998,1,300.2046244,0.157595575,20.98967743,34.87725842,101832.1016,4.014556408\n136.125,31.375,1998,1,296.2640344,0.147653237,20.45129013,34.82370055,101800.6953,4.438942909\n141.875,21.125,1998,1,324.0920913,0.067061469,25.60419273,35.10625589,101845.7031,3.202651024\n156.125,5.125,1998,1,368.1079755,0.073501192,28.57709694,34.49661446,101107.1406,7.694540977\n160.875,50.875,1998,1,418.518065,0.323932521,2.934193373,33.05934644,99891.85156,3.767943859\n149.625,44.875,1998,1,447.641049,0.345416158,2.722580671,33.29912591,100939.2969,7.328428268\n137.875,28.625,1998,1,298.2140792,0.178292722,20.74290276,34.84888309,101839.4688,3.576404333\n134.125,18.875,1998,1,331.6795454,0.058018491,26.73354721,34.90441555,101754.9219,5.150638103\n135.375,33.125,1998,1,299.1473646,0.194932878,20.66096687,34.51375836,101878.3594,6.236607552\n202.125,41.125,1998,1,321.5848364,0.276350021,9.385483742,33.83854955,99562.17188,4.612563133\n137.125,31.875,1998,1,298.8411464,0.175583303,20.36741829,34.76086944,101768.6328,4.714304924\n137.125,19.375,1998,1,318.7039672,0.069980174,26.33354759,35.00245345,101786.0547,4.792510033\n231.875,40.125,1998,1,322.7361463,0.305487216,12.46580601,32.54312629,100952.3438,6.098333359\n147.125,5.125,1998,1,360.8969615,0.088027082,28.22935486,34.55830389,101127.5625,7.41220665\n133.875,18.625,1998,1,331.5434362,0.059932664,26.65709686,34.90444189,101741.9766,5.381162167\n199.375,40.375,1998,1,324.7325039,0.286966652,9.696451187,34.0091117,99615.03906,4.220602036\n150.875,45.875,1998,1,397.8224214,0.298552603,2.535161257,33.20229906,100785.3125,6.896332264\n135.125,27.625,1998,1,305.1251641,0.1474704,21.48354721,34.86952507,101885.9531,2.720661163\n208.875,51.375,1998,1,363.9239288,0.291740042,4.55580616,32.86412394,99037.82813,2.368886471\n159.875,0.875,1998,1,363.4894687,0.123672724,28.26064491,34.42779255,101034.875,6.115706921\n134.875,24.875,1998,1,315.3180424,0.10203819,23.03935432,35.04731327,101929.6484,0.856561303\n211.375,43.625,1998,1,332.5312309,0.28720656,8.617741585,33.30811071,99404.21094,5.412178516\n165.125,7.625,1998,1,353.0468567,0.075224489,27.36677361,34.21696961,101173.0078,8.101624489\n138.375,27.375,1998,1,305.1986388,0.139386728,22.11806488,34.88975817,101876.6094,3.017898083\n235.625,34.375,1998,1,328.4795586,0.264153987,14.50354767,33.28039747,101728.4844,4.014754295\n137.125,28.625,1998,1,298.6565739,0.199678451,20.94322586,34.84425074,101844.7188,3.400097609\n230.875,40.875,1998,1,322.9936805,0.290049285,12.79354763,32.62965077,100785.7578,6.438989162\n212.875,50.125,1998,1,339.4079866,0.254766941,5.421935558,32.98283237,99013.13281,1.289466381\n146.875,7.625,1998,1,351.6802483,0.087035619,27.92128944,34.55514956,101188.0313,8.089654922\n208.125,42.625,1998,1,323.2797752,0.284981619,8.886451721,33.3295821,99460.03125,5.316469193\n159.625,36.875,1998,1,328.9683753,0.247799277,14.46903229,34.51330245,101024.1719,7.759630203\n152.125,36.375,1998,1,314.9426442,0.216652562,15.69387054,34.66655356,101269.7969,6.278164864\n137.875,0.375,1998,1,345.09124,0.129018962,28.96870995,35.41100979,101108.2813,3.832572937\n156.625,49.125,1998,1,402.3298679,0.250484914,2.818064451,33.01773912,100154.6875,4.800408363\n135.125,25.125,1998,1,314.8987307,0.09472312,22.95354843,35.0375818,101929.9766,1.000102878\n160.625,50.625,1998,1,422.0963904,0.374718154,2.91225791,33.05365491,99895.1875,3.692032576\n141.625,22.125,1998,1,323.0364201,0.063949741,25.61645126,35.04953992,101875.2969,2.278868914\n137.125,28.375,1998,1,298.615907,0.213568032,21.04322624,34.85399067,101854.1094,3.20778656\n233.875,38.625,1998,1,323.6300791,0.474807143,13.2454834,32.82766879,101263.4609,5.703426361\n154.875,7.875,1998,1,357.4380626,0.065767936,27.38322449,34.5807355,101193.2656,8.029683113\n137.125,3.375,1998,1,360.9419704,0.300797105,27.80387115,34.79216433,101133.25,5.582578659\n137.125,34.125,1998,1,299.4454134,0.27256313,17.79161263,34.4152627,101861.1016,6.631349087\n232.375,48.125,1998,2,338.2352128,0.30041787,9.645357132,32.12629384,100051.8906,5.860432625\n218.375,49.875,1998,2,325.2820999,0.232108369,6.558571339,32.58507669,98671.98438,5.34727335\n229.375,48.875,1998,2,346.6382456,0.3285954,8.717857361,32.2414825,99701.78125,5.949467182\n224.125,49.375,1998,2,346.512492,0.306351036,7.441071033,32.50278193,99195.23438,6.122861862\n223.375,46.375,1998,2,330.9532965,0.272617847,8.282500267,32.67519516,99423.4375,6.504803658\n203.875,13.125,1998,2,346.519838,0.082831092,25.1724987,34.55810934,101554.9063,9.567235947\n223.125,49.375,1998,2,340.0576147,0.300009221,7.383928299,32.53172463,99108.60938,6.284222126\n217.625,22.375,1998,2,335.0848359,0.045806315,22.70749855,35.14425182,102045.8281,2.881526947\n226.375,47.125,1998,2,335.258975,0.340491951,8.224285126,32.46246356,99564.89844,5.696117878\n201.625,11.625,1998,2,350.4025467,0.077415824,25.58857155,34.53946888,101468.7188,9.821111679\n214.875,20.375,1998,2,331.8066387,0.069338508,23.70392799,35.10682482,101969.9063,5.13983345\n182.125,0.125,1998,2,354.8904805,0.100191601,28.65392876,34.70540136,101093.4844,5.839221954\n229.875,30.125,1998,2,336.8566435,0.083555408,17.51285744,34.71578765,101776.1172,5.456809998\n199.625,8.125,1998,2,346.0750388,0.084023274,26.95035553,34.60071468,101280.2813,9.943844795\n204.625,13.625,1998,2,340.2470152,0.058932442,25.14749908,34.54848725,101585.3828,9.482903481\n201.625,14.375,1998,2,340.7837926,0.04319765,25.0639286,34.66565681,101631.4844,9.274291039\n182.875,0.125,1998,2,353.428674,0.113729537,28.73250008,34.76488453,101090.6406,5.848243237\n134.125,20.125,1998,2,325.542104,0.062770098,25.82071304,34.93145829,101793.8594,2.539466381\n228.375,49.125,1998,2,327.4063087,0.394874662,8.350357056,32.27141249,99593.41406,5.988666058\n200.625,11.125,1998,2,346.755983,0.095103458,25.70964241,34.55183452,101438.6797,9.941713333\n211.875,18.375,1998,2,335.9057202,0.100555599,24.32642746,34.50309283,101864.4922,6.893054962\n219.375,49.625,1998,2,325.5405128,0.280306369,6.816071033,32.58542508,98762.64844,5.807108879\n126.375,28.125,1998,2,300.1283176,0.399498329,21.43464279,34.4891206,101977.0625,4.028490067\n182.625,0.125,1998,2,353.0725651,0.098963268,28.7142849,34.74505681,101091.7344,5.839142799\n220.875,49.625,1998,2,331.1217811,0.28968825,6.808571339,32.56078762,98887.07813,6.286456585\n137.125,5.125,1998,2,374.0348294,0.167919248,27.63964272,34.83341956,101284.8672,6.446660519\n226.875,47.125,1998,2,337.4081536,0.354150742,8.242856979,32.41670841,99601.71875,5.559462547\n225.375,27.375,1998,2,336.5526124,0.08043474,19.60750008,35.44939518,101979.7344,3.802143574\n133.625,28.875,1998,2,298.9302787,0.223056724,20.91107178,34.89923573,101799.1094,1.922634602\n137.125,4.125,1998,2,356.4391078,0.1574772,27.95321274,34.89388299,101269.1875,6.077847004\n136.875,17.875,1998,2,330.5673748,0.036023054,26.62714195,34.85317725,101742.8516,4.550457954\n130.125,31.375,1998,2,310.5383369,0.24415338,18.97928429,34.45481825,101914.4688,3.653368473\n217.875,49.875,1998,2,321.0612995,0.272020012,6.744999886,32.59277993,98640.85156,5.208584309\n135.625,30.625,1998,2,296.7103841,0.263537496,19.9285717,34.84271401,101773.8203,1.473510861\n129.625,31.125,1998,2,304.5818296,0.272188544,19.63964272,34.41610366,101922.7656,4.124962807\n137.125,4.875,1998,2,375.4356603,0.172827527,27.67749977,34.86685491,101280.6094,6.349546432\n196.875,1.125,1998,2,344.3689325,0.180764103,28.55785751,34.84886467,101062.5703,6.775987625\n201.625,13.375,1998,2,346.7674814,0.055038527,25.04642868,34.59481353,101570.4219,9.547895432\n222.375,49.375,1998,2,335.4381314,0.321886241,7.185357094,32.55055088,99042.96094,6.34968853\n136.875,13.625,1998,2,345.7029978,0.035480801,27.1517849,34.56758189,101557.9688,7.047054768\n137.125,12.875,1998,2,335.8535836,0.039165083,27.28428459,34.49469227,101527,7.229971886\n137.125,4.625,1998,2,359.9577487,0.184119746,27.75714302,34.90029025,101276.8906,6.264093399\n236.875,37.625,1998,2,338.8425517,0.698071539,13.58714294,32.72582567,101168.5313,3.688966274\n231.625,48.875,1998,2,332.5429138,0.350742698,9.216785431,32.1505132,99953.46094,6.229549408\n197.375,1.875,1998,2,355.5623618,0.108284488,28.55392838,34.78280723,101068.0313,7.438421726\n136.875,14.625,1998,2,340.2312087,0.035865914,27.20464134,34.69453204,101601.4453,6.623683929\n219.875,49.625,1998,2,327.1590758,0.267796755,6.722142696,32.574727,98801.97656,6.018575668\n136.875,8.875,1998,2,350.5717604,0.087583624,27.3928566,34.58369559,101379.0859,7.513134956\n215.875,21.125,1998,2,328.4438621,0.055247784,23.21035576,35.16430998,102004.5313,4.37726593\n183.375,0.125,1998,2,356.2006924,0.1330394,28.89892769,34.79373533,101088.8906,5.854021072\n216.375,21.625,1998,2,332.6416919,0.048107035,22.96535683,35.19987077,102022.6641,3.796513796\n192.375,0.125,1998,2,353.8379644,0.099776633,28.6442852,34.87808484,101059.8359,6.227700233\n199.875,8.875,1998,2,355.0229139,0.081703924,26.49607086,34.55200493,101317.9688,9.95274353\n151.375,3.375,1998,2,373.7252831,0.148707494,28.40214157,34.88870817,101224.125,6.542778015\n196.625,0.375,1998,2,352.373764,0.069863833,28.61321449,34.90305334,101057.2109,6.213659286\n201.375,10.625,1998,2,361.0666588,0.108437538,25.73857117,34.53249985,101410.1641,9.966670036\n197.125,8.625,1998,2,347.2537255,0.103737064,26.76892853,34.72793126,101304.9688,10.0368824\n136.875,11.875,1998,2,345.4694337,0.061985299,27.47285652,34.46693081,101487.0156,7.340286255\n177.125,47.375,1998,3,372.4079107,0.36149618,3.478709698,33.08683681,100423.0313,4.170062542\n149.375,11.125,1998,3,354.4819263,0.049982488,27.41903114,34.88633519,101369.7969,7.058477402\n137.625,33.625,1998,3,305.651277,0.478428841,19.05580521,34.67203373,101724.2266,4.823055267\n149.875,10.125,1998,3,355.9153421,0.068381064,27.54322624,34.86775792,101331.1875,7.281246185\n249.875,2.375,1998,3,377.3381504,0.159728348,29.56064415,33.7963208,100896.9609,2.720073223\n148.875,12.375,1998,3,352.9476087,0.039498556,27.29322433,34.87795156,101415.625,6.689524651\n147.125,17.625,1998,3,339.868981,0.028965073,26.67161179,34.91947854,101639.4063,4.847456455\n249.625,9.125,1998,3,343.437637,0.109941155,27.4141922,34.13125825,101021.7109,6.979136467\n215.875,47.875,1998,3,338.4433465,0.312813103,6.407742023,32.78976095,100892.9219,2.204241753\n178.625,47.625,1998,3,369.9526357,0.375376254,3.496129036,33.07220608,100334.7109,4.356282234\n234.375,46.375,1998,3,304.817001,0.539405286,10.44741917,31.56564233,101464.6719,1.914318562\n246.625,18.875,1998,3,329.899097,0.137003943,24.68774223,33.86662281,101423.7109,5.217660904\n168.125,45.625,1998,3,387.0629615,0.280523896,3.094516039,33.36516893,100737.7969,2.413529396\n141.375,35.375,1998,3,297.348729,0.370295316,17.88451576,34.53851157,101610.0156,2.899266005\n146.125,37.625,1998,3,343.0776694,0.355609268,11.46096706,34.41950017,101479.9141,5.037311554\n172.125,46.375,1998,3,375.9841738,0.301263303,4.291935444,33.256495,100652.6484,2.752307892\n243.125,30.375,1998,3,343.6856978,0.212382808,16.11999893,33.82318956,101527.1563,5.999038696\n142.125,24.125,1998,3,315.8967172,0.072369173,23.84225845,35.09793097,101856.2969,1.898701668\n245.375,23.375,1998,3,340.593504,0.241913483,21.20064545,33.62436974,101532.0781,5.90656662\n245.625,22.875,1998,3,339.4224384,0.193401784,21.38967705,33.61581838,101518.9688,5.804878235\n144.375,21.875,1998,3,321.5578124,0.063303769,25.64741898,35.06660688,101802.2813,2.886657715\n149.875,9.875,1998,3,357.7468782,0.070537329,27.60612869,34.871683,101322.2813,7.323570251\n148.125,38.375,1998,3,339.5107142,0.39698032,10.56935501,34.3071261,101342.6563,5.69473362\n200.875,47.875,1998,3,339.6674981,0.33042264,5.327419281,32.77731991,100410.0859,4.086090088\n160.625,43.625,1998,3,362.3573656,0.307788938,3.886128902,33.36048895,100798.3203,2.264657974\n147.375,38.125,1998,3,343.5058605,0.493901017,10.80032253,34.31984234,101392.5156,5.565870285\n227.125,47.375,1998,3,328.8151462,0.348214,8.060322762,32.69242942,101259.6328,2.584785938\n247.125,17.375,1998,3,327.44489,0.124935858,25.34903145,34.13376617,101367.125,5.357551098\n249.375,2.125,1998,3,376.8750652,0.1648563,29.53322601,33.89018548,100899.4766,2.286991596\n196.625,47.875,1998,3,337.3077867,0.316034645,5.359354496,32.84398854,100205.9141,4.697331429\n230.125,47.125,1998,3,327.5773903,0.296554685,9.287741661,32.26694953,101359.6953,2.323071957\n214.375,47.875,1998,3,337.9841043,0.28507486,6.247096539,32.79816425,100864.8438,2.290673494\n187.125,47.875,1998,3,346.7319767,0.281837016,4.756128788,33.11588293,100042.1641,4.410054207\n211.375,47.875,1998,3,336.9201891,0.267869145,6.01935482,32.78021389,100808.5859,2.362530231\n226.875,47.375,1998,3,328.125029,0.331300467,8.004193306,32.71702051,101252.4219,2.616102934\n142.125,35.625,1998,3,294.4213756,0.307271093,17.39935493,34.49985784,101606.0313,3.492907047\n233.625,46.375,1998,3,321.7046373,0.280876309,9.965161324,31.70953301,101454.2969,1.897519827\n150.875,39.625,1998,3,354.3965029,0.324267,9.759354591,34.0520401,101135.6484,5.014902115\n232.875,46.625,1998,3,302.8806564,0.753116369,10.02741909,31.91999757,101434.0859,1.968416929\n141.625,25.875,1998,3,312.1607335,0.094088525,22.60548401,35.03153247,101858.9219,2.445505381\n189.125,47.875,1998,3,331.6447294,0.44548443,4.71935463,33.07937574,100028.8359,4.208040714\n249.875,6.125,1998,3,335.8278869,0.070914418,28.7319355,34.62592006,100928.75,6.620294571\n149.875,39.125,1998,3,332.8478003,0.207204908,10.14903164,34.20233566,101208.3438,5.527187824\n142.625,23.625,1998,3,316.6738839,0.076906748,24.05096817,35.10633284,101848.9766,1.963195801\n151.875,40.125,1998,3,348.1019167,0.34777987,8.73870945,34.02504331,101072.3984,4.588917732\n188.875,47.875,1998,3,339.4426193,0.453806311,4.726129055,33.08200949,100029.1641,4.238370895\n136.125,32.125,1998,3,304.556466,0.266965657,19.62870979,34.80099434,101771.0938,3.256544113\n216.625,47.875,1998,3,343.0319269,0.241716251,6.586128712,32.7766645,100905.375,2.278515339\n151.375,4.125,1998,3,377.7946303,0.105226874,28.54774094,34.91210723,101159.1875,6.476204872\n185.125,47.875,1998,3,365.5372673,0.281376898,4.005806446,33.12099183,100082.3672,4.436099529\n228.875,47.125,1998,3,326.6734263,0.285954416,8.862257957,32.44468468,101322.6641,2.458083391\n212.125,47.875,1998,3,336.4243417,0.327124715,6.10354805,32.77666771,100824.4297,2.301421881\n149.125,38.875,1998,3,346.2334119,0.269135177,10.11935425,34.27766925,101263.5625,5.767593384\n249.625,8.125,1998,3,342.0114644,0.069248691,28.30967712,34.13367891,100985.6641,7.156165123\n201.875,47.875,1998,3,350.5920411,0.311262399,5.209032059,32.80572623,100456.9453,3.914117336\n142.125,27.625,1998,3,303.2091963,0.217191607,20.90870857,35.03491884,101832.5938,2.308529139\n182.875,47.875,1998,3,363.5905197,0.36317274,3.989354849,33.0897758,100145.3984,4.447701454\n151.125,39.625,1998,3,353.4765346,0.347485721,9.6554842,34.03347868,101125.9766,4.937410355\n241.375,29.625,1998,4,343.540374,0.122374721,16.21899986,33.74154162,101780.1563,6.290764809\n142.375,32.125,1998,4,307.7595583,0.221230417,20.83333206,34.77844012,101851.2188,3.22678256\n170.375,43.875,1998,4,348.1168678,0.364931238,5.938666344,33.18479794,101536.7188,8.052329063\n160.375,42.125,1998,4,339.0776508,0.371945232,5.326666355,33.35238671,101615.6406,5.675624847\n187.875,44.875,1998,4,339.789067,0.308533341,6.272999763,33.34626251,101905.4531,7.28584671\n146.875,37.625,1998,4,299.6717815,0.864746213,13.93799973,34.56708598,101850.6719,1.673977852\n141.625,33.375,1998,4,312.6654202,0.300145775,20.02499962,34.75715005,101770.875,3.071452141\n234.875,4.875,1998,4,369.7463754,0.154171705,28.71433258,34.55153072,101058.4141,6.871968269\n195.625,45.375,1998,4,338.2579501,0.252778888,6.17933321,32.98616928,101899.7734,7.741561413\n207.625,46.375,1998,4,345.9398427,0.284301579,6.831999779,32.95750475,101650.0547,7.85389328\n165.625,43.125,1998,4,351.7340844,0.355971231,5.33833313,33.2410835,101547.0938,7.106401443\n220.625,47.375,1998,4,343.4953618,0.334312677,7.617332935,32.81553078,101620.0156,4.462052345\n218.875,52.625,1998,4,345.028706,0.305901796,6.332666397,32.73408425,101043.2344,4.555960178\n234.875,4.125,1998,4,375.9234328,0.210966006,28.298666,34.54648995,101044.8672,6.285070419\n202.125,54.875,1998,4,377.2139562,6.138123989,5.793333054,31.96875596,100355.1328,3.916701794\n235.125,1.125,1998,4,376.0014635,0.207207412,28.50533295,34.84455341,101035.2578,3.217976093\n236.125,12.375,1998,4,340.0144369,0.148657103,25.222332,34.44955373,101368.9844,8.341099739\n178.625,52.125,1998,4,444.9806248,0.49050799,3.388999939,33.25382811,100336.1875,5.344069481\n224.875,50.125,1998,4,339.5155162,0.364930838,7.65599966,32.70743006,101535.2422,3.778627872\n221.625,47.375,1998,4,338.1934099,0.345827162,7.642999649,32.83695298,101648.4141,4.229016781\n237.125,16.125,1998,4,328.4255996,0.13308163,23.25399971,34.49374104,101573.6953,7.534988403\n225.625,49.875,1998,4,335.7349109,0.358057588,7.887000084,32.69156235,101578.2813,3.647988319\n233.625,47.125,1998,4,311.834655,0.352845043,10.40566635,31.52032039,101802.2266,2.394170046\n238.625,20.375,1998,4,336.8456064,0.083779171,21.22933388,34.22305197,101770,6.33175087\n194.375,45.375,1998,4,338.0687724,0.333014399,6.004333019,33.07943207,101897.5859,7.665948868\n225.625,47.875,1998,4,334.0346864,0.228350788,8.139332771,32.79442608,101724.5547,3.54638648\n144.125,32.125,1998,4,322.872487,0.214035481,20.31399918,34.79583865,101921.5156,3.338442326\n190.125,45.125,1998,4,338.8451264,0.316117525,6.116333008,33.29192013,101902.6172,7.543682575\n235.125,7.125,1998,4,337.0588279,0.099324867,28.01633263,34.38585865,101122.7578,7.9726367\n179.625,51.625,1998,4,473.6154187,0.55190891,4.08166647,33.21799129,100419.1484,6.062355995\n181.625,44.625,1998,4,346.8894463,0.388928235,5.878666401,33.4628281,101774.5859,7.340138435\n150.125,44.875,1998,4,336.9208187,0.641929865,2.18599987,33.11285937,101468.9844,3.478512287\n151.375,39.375,1998,4,345.1990573,0.449582547,10.74399948,34.42953932,101800.5313,3.438926697\n146.875,42.875,1998,4,283.6875181,1.157796144,2.125,32.98438615,101647.375,2.37569046\n212.125,55.875,1998,4,356.3752443,0.427194715,4.879333019,32.42380702,100544.0078,3.423617601\n151.625,39.375,1998,4,349.4550087,0.471736431,10.82866669,34.40343988,101800.9063,3.519236088\n191.375,45.125,1998,4,338.3574128,0.330379069,5.924999714,33.24123627,101920.5313,7.487067223\n238.125,19.375,1998,4,329.0498541,0.083302587,21.66866684,34.18746322,101733.5156,6.6495924\n209.125,46.625,1998,4,348.1778607,0.302143812,6.867666721,32.95417196,101589.1016,7.59847641\n236.375,12.875,1998,4,331.303492,0.186786206,24.9046669,34.44295496,101396.7266,8.262047768\n222.625,47.625,1998,4,338.0404626,0.331858069,7.606999874,32.85149115,101657.9219,4.046898842\n186.625,52.625,1998,4,451.6858335,0.458336681,3.650333166,33.20559216,100429.75,6.262217522\n152.625,39.875,1998,4,336.340038,0.415830493,10.75666618,34.12668234,101763.9844,3.846163034\n239.625,24.375,1998,4,353.1652015,0.081291132,18.7626667,34.47102547,101862.6328,5.62921524\n192.125,53.875,1998,4,431.495837,0.512318671,4.547333241,32.76667857,100359.7266,5.437220573\n186.625,44.625,1998,4,342.1783528,0.273859203,6.241333008,33.40727067,101918.4531,7.207177162\n137.875,34.375,1998,4,286.6589561,0.613690972,19.95899963,34.40942395,101663.5469,0.531632304\n177.625,52.375,1998,4,415.9870875,0.584909022,3.13166666,33.27196902,100298.5,5.006434441\n146.125,31.875,1998,4,307.7321595,0.227808058,19.98999977,34.83315891,102015.8438,3.411241531\n157.125,49.625,1998,4,263.6301489,0.741469622,1.798999906,33.40779614,100987.0313,3.7417202\n240.125,25.875,1998,4,350.0898295,0.082439318,18.19866562,34.28792781,101860.3359,5.731509209\n226.375,49.625,1998,4,346.772895,0.273235798,8.026666641,32.63917667,101621.2109,3.536429405\n176.875,52.625,1998,4,424.6097292,0.556973696,3.177666664,33.26995552,100271.2969,4.682239532\n164.125,51.625,1998,4,396.026149,0.561559141,2.392666578,33.22786236,100646.6406,2.223026752\n234.875,4.625,1998,4,371.5312286,0.165722892,28.63500023,34.5657078,101053.3906,6.694004059\n166.625,52.125,1998,4,370.2563606,0.343120754,3.136999846,33.08592379,100571.4219,2.612285614\n141.375,35.375,1998,4,313.4951336,0.39191258,19.49300003,34.56932408,101739.5156,1.879872084\n238.625,21.125,1998,4,341.8941752,0.072960801,20.3623333,34.3237552,101802.9844,6.116109371\n175.625,44.625,1998,4,340.8349478,0.318008542,6.140999794,33.25189877,101553.3203,8.033472061\n181.125,52.125,1998,4,450.4766845,0.446570426,4.200999737,33.33122343,100389,6.003687382\n228.875,48.875,1998,4,335.0547167,0.243189231,8.720000267,32.42576903,101731.2188,2.677820206\n187.375,52.875,1998,4,450.0996711,0.425817281,3.698999882,33.1356734,100409.9766,6.230700493\n152.375,39.625,1998,4,340.1366158,0.417832345,10.85199928,34.22992975,101783.1563,3.802234173\n174.625,52.875,1998,4,392.5316922,0.56952697,2.973333359,33.18861109,100279.2188,3.831522942\n180.875,44.625,1998,4,341.5510435,0.329376335,5.978332996,33.4326092,101750.7734,7.494997978\n138.375,34.375,1998,4,295.3226156,1.58897078,19.7266655,34.45276469,101669.8281,0.835700154\n168.625,52.375,1998,4,375.075744,0.346103728,3.174333334,33.07523578,100499.875,3.047357559\n178.375,44.375,1998,4,337.0009679,0.3038221,6.546000004,33.36531264,101693.6406,7.801744461\n237.125,15.875,1998,4,329.3943383,0.136634201,23.44633293,34.48708534,101559.8203,7.59162569\n147.375,31.875,1998,4,313.063583,0.205306455,19.71933365,34.8711921,102065.5938,3.107611656\n211.375,55.875,1998,4,376.9949503,0.374066561,4.904666424,32.39384228,100508.3984,3.185788393\n218.125,53.125,1998,4,348.0446337,0.27672565,5.806999683,32.73222578,100973.2109,4.407235146\n222.875,50.625,1998,4,343.8870992,0.281091779,7.148999691,32.74456561,101409.8359,4.465582848\n202.625,46.125,1998,4,339.5345092,0.340996087,6.358333111,32.90033954,101731.2188,8.163550377\n156.375,48.875,1998,4,360.5484608,1.851433396,1.786999941,33.46226102,101056.7188,3.68987751\n203.875,46.125,1998,4,346.3926363,0.282835811,6.360333443,32.87733042,101724.8828,8.135858536\n220.625,51.625,1998,4,348.6464037,0.272017419,6.759333134,32.77251589,101208.6172,4.841890335\n169.625,52.625,1998,4,385.6464858,0.407244176,3.600666523,33.10971016,100455.6875,3.274569511\n201.125,45.875,1998,4,336.7103145,0.275935441,6.370999813,32.89887053,101783.1094,8.157832146\n209.625,55.875,1998,4,362.1969766,2.215502739,5.339333057,32.37610012,100442.2031,2.657801628\n199.625,54.125,1998,4,366.0228872,1.463695884,5.409333229,31.88784415,100411.8281,5.201655388\n239.375,23.375,1998,4,348.0244438,0.10774491,19.18533325,34.35220629,101851.4922,5.700963974\n158.125,47.625,1998,5,343.4034826,0.616906106,2.693871021,33.01206702,101091.5703,3.307169914\n197.625,21.875,1998,5,334.2402318,0.070350222,23.65677261,35.35874772,102029.2188,8.580856323\n233.625,47.125,1998,5,308.9625843,0.201798528,12.06838703,31.79633918,101565.9375,4.334711075\n148.625,44.125,1998,5,172.8878557,6.259126663,3.163548231,32.53245097,101367.9375,2.957184792\n235.125,46.625,1998,5,294.3877636,0.897298217,12.65967751,31.47820926,101544.3125,3.79662466\n152.125,31.875,1998,5,322.0871907,0.116582826,22.02193451,34.96108991,101965.9219,2.424890995\n142.625,35.875,1998,5,310.9816857,0.400954396,20.98225784,34.476753,101588.3906,2.410390854\n195.375,54.375,1998,5,389.2564294,0.679680645,5,32.26878119,100515.2813,4.488536835\n181.125,25.875,1998,5,338.4627148,0.050263427,23.16580582,35.36832476,102181.7188,5.983758926\n192.625,54.125,1998,5,419.7943024,2.852371855,4.709032059,32.68218768,100407.4609,5.868512154\n147.125,40.125,1998,5,313.850794,0.738708913,10.55806446,33.37235487,101590.7344,2.366648674\n145.125,41.875,1998,5,262.3268403,1.33510828,6.497096539,32.89908051,101441.4063,3.362842321\n142.875,37.875,1998,5,284.9578443,0.545967638,17.34451485,33.64256197,101561.1875,2.330303669\n144.125,38.125,1998,5,290.2010913,0.713115215,15.85903168,33.73244947,101587.625,2.397735119\n142.875,38.125,1998,5,264.2135935,0.645866573,17.06999969,33.56809276,101554.25,2.44547081\n193.625,54.375,1998,5,398.7270826,0.624355972,4.629032135,32.47897917,100406.6953,4.772971153\n215.625,52.125,1998,5,347.4580361,0.221051455,6.795806408,32.65789717,101650.7109,5.215363503\n147.125,34.625,1998,5,298.9532042,0.293100178,21.49709702,34.82410145,101771.4688,2.152071714\n190.125,53.625,1998,5,417.3279592,0.509706378,4.846451283,33.04160476,100370.5391,5.850805283\n145.875,41.625,1998,5,292.1423909,1.779432654,5.725806236,32.83409429,101479.3672,3.041074276\n198.125,21.875,1998,5,335.162728,0.072120272,23.68032265,35.3566429,102028.5625,8.533309937\n210.375,13.375,1998,5,346.0680177,0.069545172,25.03096771,34.85513902,101474.2891,9.373226166\n207.125,16.375,1998,5,337.7842778,0.057839252,24.11257935,34.849078,101674.8516,9.118549347\n143.625,33.375,1998,5,318.8779878,0.14152655,22.34161186,34.74850661,101663.0469,3.073462009\n144.875,41.375,1998,5,289.0691076,1.671693325,6.480000019,32.77117294,101469.9688,3.190316677\n223.125,3.375,1998,5,375.8084392,0.1645751,28.20064545,34.97574872,101056.8828,4.829050064\n150.375,45.125,1998,5,266.2862815,1.702106714,2.89322567,32.58961457,101314.4688,3.227369308\n228.875,48.875,1998,5,319.5862593,0.488418818,10.20258045,32.44133741,101639.6719,3.895542145\n194.625,54.375,1998,5,404.2022644,1.947569188,4.849999905,32.38844919,100462.5156,5.07951355\n213.625,10.875,1998,5,337.2175815,0.106490187,26.10677338,35.03981334,101324.5234,9.537795067\n165.125,29.125,1998,5,339.8380785,0.06384299,22.52774239,35.31183898,102066.5313,2.986386299\n213.625,10.625,1998,5,337.8547237,0.092875421,26.26645088,35.050919,101309.3359,9.597484589\n212.125,52.875,1998,5,367.3144821,0.596058488,6.025806427,32.53856921,101462.7109,5.860253334\n144.375,42.875,1998,5,190.6101702,1.228330374,5.457419395,32.96195221,101347.3594,2.443485022\n230.625,48.375,1998,5,290.1555716,0.197198808,11.00129032,32.16278517,101599.3672,4.157608986\n199.875,54.125,1998,5,347.8852743,5.310002498,6.172580719,31.89715207,100749.8125,5.933228493\n157.375,47.375,1998,5,390.5128677,0.346210718,2.880967617,33.04099393,101115.1641,3.423756838\n180.125,51.375,1998,5,467.7115404,0.982770801,4.712903023,33.07009953,100611.4141,4.639090538\n142.625,36.125,1998,5,311.188284,0.29535237,20.84096718,34.39999318,101585.2188,2.297199965\n209.875,53.125,1998,5,377.8225822,0.509082019,6.042902946,32.57920641,101334.5703,6.157975674\n161.625,48.625,1998,5,379.8852923,0.386210561,2.938387156,33.10760951,101004.6172,2.507398605\n202.375,53.875,1998,5,243.6185494,2.31192255,6.480322361,32.21184453,100899.5859,6.212860107\n150.375,33.625,1998,5,295.0541428,0.14054215,20.53419304,34.85066438,101883.5,2.359823465\n148.625,31.875,1998,5,300.278661,0.147052839,21.38709641,34.91238838,101861.0469,2.910097599\n207.375,23.625,1998,5,333.4850895,0.095701113,21.9751606,35.4380188,102238.9609,8.589078903\n147.875,43.625,1998,5,195.658752,4.884115696,3.830967665,32.4125396,101390.5,2.932347775\n140.625,33.875,1998,5,324.6615547,0.136239573,24.0948391,34.6156503,101537.4844,2.600674152\n150.125,41.375,1998,5,354.6976562,0.380529225,9.118063927,33.37545836,101566.4297,2.448404312\n202.625,53.875,1998,5,246.1078807,2.276112556,6.548064232,32.2465035,100911.2734,6.208810806\n193.125,23.125,1998,5,329.4081958,0.062201224,23.77709579,35.32151759,102112.0234,8.228538513\n154.625,46.625,1998,5,282.5367418,1.462565899,3.210967541,33.04295599,101186.8828,3.538694382\n146.375,32.375,1998,5,313.8652781,0.142172992,22.31354713,34.80703962,101778.0781,2.816383362\n218.375,51.625,1998,5,326.6147754,0.40480563,7.500645161,32.78322542,101712.3203,4.728196144\n197.875,54.125,1998,5,350.2361605,2.755879641,5.767096519,31.89542395,100652.0469,5.969565868\n151.125,41.625,1998,5,380.0105203,0.48615399,8.491290092,33.41347128,101564.3594,2.446888924\n144.375,41.375,1998,5,218.6616451,1.62253356,6.394838333,32.71558875,101459.1094,3.2012043\n144.125,37.875,1998,5,285.0361383,0.820276856,15.95774174,33.8496843,101595.1563,2.390788555\n181.875,52.125,1998,5,459.9514472,1.282320733,3.944515944,33.23280996,100503.4844,4.774675846\n143.375,32.625,1998,5,316.2504106,0.115908638,22.39225769,34.77952677,101666.0625,3.129534245\n146.125,41.625,1998,5,229.5163532,1.62153554,5.59548378,32.84296328,101485.5391,2.978814363\n150.125,45.125,1998,5,255.602284,1.961033821,2.777419329,32.57840782,101312.6719,3.307914495\n158.625,30.625,1998,5,329.9123471,0.075351864,22.28935432,35.11503792,102075.8125,1.916461468\n209.625,53.125,1998,5,371.3076484,0.519579053,6.07677412,32.58936101,101323.6484,6.172268867\n166.625,49.625,1998,5,374.7940702,0.346740007,3.403870821,33.20804,100909.9063,2.280982971\n222.125,3.375,1998,5,387.9108087,0.169567615,28.06096649,34.93999875,101054.4844,4.977095604\n142.625,33.375,1998,5,317.8579113,0.185200468,22.59806442,34.72089082,101623.0156,3.064310551\n235.375,0.375,1998,5,388.9054726,0.173447743,27.16612816,35.10292614,101082.3359,3.157052517\n149.625,41.125,1998,5,337.5651991,0.350257337,9.675483704,33.32729274,101574.0234,2.505804062\n152.125,41.875,1998,5,371.3345832,0.374197781,8.832258224,33.43730897,101559.6016,2.582306385\n193.625,22.875,1998,5,331.6477772,0.066835828,23.84064484,35.33064544,102094.7656,8.319966316\n152.875,31.625,1998,5,327.236209,0.096966729,21.50354767,34.98287445,101988.4766,2.356777191\n141.625,41.625,1998,5,250.0832089,0.641057551,10.30999947,32.76026485,101386.4531,2.994102001\n201.125,53.875,1998,5,260.4036423,2.252162218,6.132903099,32.10282686,100840.0469,6.149973869\n219.125,51.625,1998,5,338.6622016,0.303789198,7.409031868,32.76315707,101706.3125,4.51214695\n153.875,46.375,1998,5,307.4167511,1.729607105,3.108386993,32.98334527,101210.4219,3.501821518\n151.875,34.875,1998,5,293.1042235,0.20793049,21.29903221,34.77999276,101883.3906,2.015338421\n148.375,40.875,1998,5,324.8660337,0.59917742,7.615160942,33.22098249,101573.75,2.425868988\n150.125,44.875,1998,5,261.4407758,1.886240721,3.045483828,32.57724088,101331.8438,3.213306904\n211.125,53.125,1998,5,371.2898215,0.393154889,6.039031982,32.53544563,101388.8672,6.026982307\n151.125,32.125,1998,5,331.0460508,0.112925701,21.75419235,34.92626756,101935.2188,2.644490719\n174.375,50.625,1998,5,435.8291359,0.768296239,4.545161247,33.04117048,100734.5156,3.415714264\n189.375,53.625,1998,5,412.539678,0.395609289,4.891613007,33.10804361,100346.7266,5.609457016\n199.375,54.125,1998,5,345.2746825,0.747260153,6.249354839,31.89041293,100725.5625,5.933703423\n207.875,15.375,1998,5,343.7656936,0.060701411,24.35225677,34.91545516,101606.6875,9.246676445\n234.375,46.625,1998,5,308.9747261,0.199528024,12.51677418,31.6662178,101565.6094,4.042773247\n196.875,54.125,1998,5,332.7799588,3.314413309,5.711290359,31.98427871,100604.2031,6.013195992\n167.625,49.875,1998,5,373.0989242,0.334105194,3.457741737,33.15218824,100883.4688,2.268979549\n144.125,38.625,1998,5,252.1357161,0.589278698,15.08096695,33.47929871,101573.9688,2.322208881\n182.875,52.375,1998,5,426.1856604,0.338202596,3.637419224,33.28984356,100459.7891,4.764416695\n204.625,18.375,1998,5,334.7232487,0.088441662,23.6958065,34.78813326,101809.4297,10.58081245\n143.125,33.375,1998,5,317.5306156,0.165373549,22.55064392,34.73830682,101643.0078,3.059666157\n225.625,3.375,1998,5,367.3799083,0.176614597,28.21193504,34.95666748,101061.4766,4.506587982\n190.875,53.875,1998,5,417.6590328,0.451700419,4.412258148,32.96898913,100363.3281,5.722838402\n188.125,24.125,1998,5,334.8469574,0.059860017,23.48386955,35.43061912,102142.7188,7.17374897\n166.875,28.875,1998,5,331.7679753,0.057826269,23.20806313,35.30681908,102080.6172,3.157756805\n214.375,9.875,1998,5,341.5661659,0.114737965,26.59967613,35.02957153,101260.8359,9.71139431\n150.875,45.375,1998,5,285.9753236,1.525361896,3.039999962,32.61739284,101296.7813,3.223106861\n144.125,33.875,1998,5,314.9980672,0.190654576,22.58774185,34.75047499,101674.9063,3.032819271\n225.125,50.125,1998,5,334.76464,0.395451903,9.617096901,32.72100294,101686.8672,3.655792236\n162.625,48.625,1998,5,375.0445868,0.399490803,3.062903166,33.17269784,101000.7969,2.435852051\n149.375,32.375,1998,5,300.5161308,0.160633892,20.79225731,34.89123183,101877.4375,2.850446224\n150.375,32.125,1998,5,319.77527,0.123255216,21.03193474,34.91226465,101913.1016,2.782228947\n231.875,31.875,1998,6,352.2858112,0.089793555,17.28800011,34.17548543,102086.5703,6.336841106\n164.875,45.375,1998,6,341.698259,0.388387222,5.817666531,33.053572,101646.2344,2.046507359\n202.375,19.625,1998,6,340.7873336,0.078395359,24.6693325,35.09616995,101726.9609,4.124876976\n228.125,31.125,1998,6,348.2718531,0.103446461,17.38533211,34.29111898,102269.5469,6.538399696\n165.125,32.125,1998,6,350.8660494,0.089806907,22.42333221,34.87332022,101606.7422,2.020256281\n227.375,52.375,1998,6,301.3202303,0.392669708,11.16466618,32.18901038,101991.8594,7.853941917\n164.875,47.125,1998,6,346.7030449,0.458681554,4.773666382,33.0568682,101553.4844,2.848840952\n204.625,10.125,1998,6,347.5091432,0.107449353,27.42299843,34.9888311,101212.6641,8.892109871\n203.375,15.375,1998,6,345.2971911,0.045736615,25.48566628,34.84212148,101506.8438,8.622130394\n239.625,33.625,1998,6,311.8251684,0.827383041,15.67866611,33.39247578,101548.5703,6.95817852\n224.125,53.375,1998,6,281.3954078,0.735786617,9.840000153,32.48635107,102123.6016,5.761820793\n230.125,51.625,1998,6,276.7197783,1.248128295,12.64833355,31.85992819,101843.9531,5.838496208\n202.625,18.875,1998,6,339.033607,0.085716747,24.8769989,35.03097123,101702.7031,4.804636955\n148.125,15.875,1998,6,371.244627,0.038797867,28.46099854,34.76424301,101281.9219,6.302918911\n150.125,41.125,1998,6,311.9918534,0.665696621,13.32999992,33.58373952,101377.8281,1.9202528\n202.375,20.375,1998,6,342.4264189,0.067478977,24.55666542,35.16728067,101748.2578,5.288047791\n204.375,11.125,1998,6,340.8378211,0.055508845,27.05266571,34.93819749,101262.4766,8.957593918\n172.375,46.625,1998,6,365.5323604,0.305509835,5.919332981,33.04028988,101542.7813,3.235453844\n165.125,32.375,1998,6,331.0027329,0.106068924,22.07166672,34.86817825,101596.3125,1.895980954\n164.625,44.875,1998,6,365.5831923,0.169313237,6.236666679,33.0491311,101666.9844,1.931289315\n146.375,39.125,1998,6,288.64198,0.447568953,17.3983326,33.88614655,101262.1406,1.767649412\n203.375,0.875,1998,6,399.0777166,0.315245211,26.55966568,35.46036232,101098.1797,5.284402847\n205.125,7.125,1998,6,360.4114449,0.108416103,28.19733238,34.91232431,101118.8281,5.843046188\n151.625,40.375,1998,6,256.1150137,0.736190259,13.99666595,33.87828827,101385.8594,1.900465012\n171.125,46.375,1998,6,375.8931191,0.382059783,5.735333443,33.05025572,101568.6172,2.984134674\n148.375,16.125,1998,6,370.7229912,0.031452198,28.52366638,34.75771844,101293.0078,6.285782337\n152.375,19.375,1998,6,361.4007531,0.046439342,28.74733353,34.97954887,101443.6484,5.718280792\n149.625,17.125,1998,6,363.8997194,0.028200325,28.40766525,34.76180226,101340.0313,6.114798546\n143.875,40.125,1998,6,271.7869249,0.462258697,13.62599945,33.08221316,101268.4844,2.324996948\n159.875,25.875,1998,6,367.412555,0.038456392,28.19733238,35.32762772,101718.7656,1.573834419\n145.375,14.125,1998,6,373.3402661,0.034019638,28.72333336,34.72278565,101205.7266,6.471497059\n141.125,35.125,1998,6,268.1881397,0.763600647,21.99300003,34.10715717,101066.6094,0.934224367\n203.625,0.625,1998,6,417.6543812,0.359647721,26.33133316,35.47557485,101100.9063,5.243898392\n205.125,1.375,1998,6,403.4034911,0.230831146,26.7796669,35.42587769,101110.5234,5.159984589\n222.375,56.125,1998,6,284.2286774,1.069543123,9.80566597,32.33124948,101967.7188,3.985288143\n221.625,56.625,1998,6,266.1694951,0.654189169,10.03933334,32.28890151,101951.9922,3.552989483\n205.125,4.125,1998,6,357.6551487,0.180959389,28.50966644,35.08587849,101092.3906,5.443054199\n164.875,43.125,1998,6,343.6423195,0.338248342,7.008999825,32.94706446,101723.9063,1.361417532\n163.625,28.875,1998,6,376.1670686,0.056182478,25.37299919,35.2051326,101724.2813,1.999195933\n168.125,45.625,1998,6,375.3518584,0.256612092,5.878333092,33.06726295,101630.0625,2.45403862\n158.625,46.125,1998,6,366.3389875,0.413925767,5.468999863,32.94245052,101600.6719,1.703063607\n219.375,57.625,1998,6,261.9624456,0.809698641,9.639332771,32.26258799,101929.4844,2.675503492\n154.625,21.375,1998,6,366.7318859,0.043437466,28.62199974,34.97122234,101541.1406,5.291240692\n171.625,46.375,1998,6,370.5389156,0.365506053,5.897999763,33.04848737,101564.9063,3.041090965\n162.875,44.375,1998,6,373.1399399,0.42999953,6.440666676,33.02147341,101682.875,1.529401302\n203.125,16.625,1998,6,346.4389434,0.055727098,25.01399994,34.85830951,101576.6484,8.518255234\n229.625,31.375,1998,6,350.1254856,0.077226885,17.10499954,34.31444269,102201.1641,6.453453541\n234.875,32.625,1998,6,358.7052654,0.109819166,16.81433296,33.82124192,101898.5703,6.442013264\n217.125,58.625,1998,6,273.8631752,0.712335467,10.13466644,32.07499737,101873.8828,2.48093605\n144.125,37.625,1998,6,293.5730867,0.656395137,19.10366631,34.13637161,101187.1563,2.019338131\n160.875,26.625,1998,6,377.7222486,0.058509231,27.24033356,35.36644113,101733.0234,0.696995139\n240.375,33.625,1998,6,324.2257198,0.47381404,16.87466621,33.51385379,101489.5781,7.210150719\n143.125,36.125,1998,6,317.5262849,0.298447043,22.38333321,34.38924217,101124.5625,1.752352834\n214.875,52.625,1998,6,332.1412163,0.42784065,8.156666756,32.54205006,102257.0938,5.478398323\n190.125,0.625,1998,6,390.1905855,0.271995187,27.52666664,35.58631146,101011.7734,5.292299271\n165.125,49.625,1998,6,347.0361527,0.379516006,4.940000057,33.08698845,101366.5313,3.053721189\n165.125,30.375,1998,6,368.4172624,0.054968495,24.22399902,34.9782238,101679.7656,2.711699009\n142.875,37.125,1998,6,318.2497972,0.345287949,20.76799965,34.09368861,101154.3281,1.96936965\n225.875,53.625,1998,6,291.4142907,0.493163645,10.80599976,32.42495501,102017.2031,5.913956642\n149.125,40.625,1998,6,259.7971464,1.100762963,13.27966595,33.64128739,101345.2813,1.819812059\n216.125,49.875,1998,6,340.4536997,0.309159793,8.894666672,32.70403039,102612.7734,4.661449432\n153.125,41.125,1998,6,262.8606032,0.974961221,13.57533264,33.61610794,101450.0313,2.138788223\n214.875,55.875,1998,6,335.0024616,0.280489385,8.795999527,32.48076487,101953.625,3.833076\n223.625,55.375,1998,6,254.0119794,0.572579682,9.718999863,32.35807914,101980.2813,4.832585335\n147.625,15.625,1998,6,373.0767783,0.035056356,28.32433319,34.77024513,101269.625,6.263905525\n231.625,50.875,1998,6,406.377431,2.346036673,11.92000008,31.44828698,101817.7344,4.456421852\n230.375,51.625,1998,6,290.9102775,1.502196908,12.53166676,31.72908276,101829.2031,5.834415436\n223.875,55.375,1998,6,256.7038885,0.762672961,9.785666466,32.34352213,101970.4531,4.941648483\n241.625,33.625,1998,6,345.1584201,0.306353539,17.96800041,33.63623673,101446.5391,3.847361088\n225.625,52.875,1998,6,301.3390747,0.510479748,10.33799934,32.48053342,102087.2266,6.282875538\n215.625,27.125,1998,6,325.2325384,0.149208933,20.50899887,35.47890741,102369.3906,8.17285347\n216.875,58.875,1998,6,275.6743706,0.830714881,10.17599964,32.0186452,101862.7422,2.349065304\n219.625,57.375,1998,6,263.6818687,0.876700819,9.663666725,32.30808777,101942.375,2.775214434\n150.875,18.125,1998,6,361.3410618,0.035529349,28.46733284,34.87820798,101385.9141,5.950698853\n160.375,26.125,1998,6,379.6515127,0.036683545,27.69299889,35.3458032,101725.3203,1.271647453\n135.375,38.375,1998,7,344.4240471,0.167776898,21.4548378,33.46776909,100749.1094,1.173437476\n128.375,34.375,1998,7,307.0505525,0.437303215,24.5745163,32.10628313,100633.0938,1.379808664\n169.625,52.625,1998,7,359.7487981,0.624819517,8.532258034,32.9150908,101121.5547,2.567801952\n128.625,34.625,1998,7,301.5706722,0.415540695,24.36548424,32.17945719,100642.5469,1.186955214\n232.875,46.875,1998,7,333.969625,0.153265804,14.49741936,32.09277114,101852.5859,4.254965305\n164.375,51.625,1998,7,353.2884933,0.41292128,9.257419586,32.85823631,101088.8438,1.785131216\n127.375,33.375,1998,7,280.5928033,0.324101835,25.72806358,31.37990224,100594.9688,2.322326422\n158.875,37.625,1998,7,352.1237261,0.128105223,20.79645157,33.96194822,101451.4531,3.318909407\n145.125,36.625,1998,7,320.0374101,0.17606993,22.7522583,33.82230109,100934.7031,1.015787125\n161.875,50.875,1998,7,366.1136925,0.405756176,9.354838371,32.77859521,101075.4531,1.372741342\n234.875,46.625,1998,7,267.2342703,0.643906951,14.75322533,31.61433375,101794.4688,3.463793278\n244.875,26.875,1998,7,394.2307635,0.172860116,20.72903252,33.56388021,101231.3438,5.995675087\n201.625,53.875,1998,7,248.4411825,0.879992902,10.6351614,32.21618932,101300.6016,1.224537373\n164.625,51.625,1998,7,354.9918973,0.467621833,9.164838791,32.86987877,101092,1.839400768\n137.125,27.875,1998,7,382.4088652,0.02398221,28.62161255,34.5588606,100980.9063,2.980092287\n187.375,48.875,1998,7,337.6542815,0.299320104,9.087096214,32.71961087,101798.7266,4.220835686\n217.375,49.875,1998,7,357.1852748,0.299481929,11.58967686,32.69810021,101919.1094,4.193139076\n233.125,44.875,1998,7,328.1052715,0.146347016,15.39516068,32.22850087,101913.4297,4.242623329\n223.375,50.375,1998,7,354.5485332,0.300766945,12.64838696,32.73984396,101962.6953,3.391655445\n235.125,40.375,1998,7,348.9417845,0.916716158,12.39903164,32.78507257,101729.3594,7.592503071\n164.125,37.875,1998,7,352.3110043,0.132828072,20.7251606,34.20103049,101700.5781,4.057790756\n146.375,37.375,1998,7,317.9754454,0.133769825,22.58709717,33.79111594,100946.1172,1.08918786\n146.375,43.125,1998,7,272.527028,0.606698632,13.7816124,32.64562351,101082.7734,1.943905354\n241.625,33.125,1998,7,378.7692126,0.188291952,19.00967598,33.67741781,101310.3203,3.955278397\n142.375,34.875,1998,7,336.8184639,0.059694923,25.75064468,34.10917735,100874.4063,1.844950199\n195.875,54.125,1998,7,251.1409237,2.035493851,9.953548431,32.08438641,101315.6719,2.082592964\n180.125,9.875,1998,7,348.8510337,0.072938509,27.89451599,34.96043324,101173.3359,7.608465195\n147.375,43.625,1998,7,284.624423,1.911149144,13.14128971,32.55660439,101102.3828,2.137710094\n184.625,53.875,1998,7,322.7168336,0.596671462,8.451934814,33.20473796,101384.1641,2.858742237\n143.875,36.375,1998,7,308.6900321,0.167724952,23.47677422,33.89569753,100916.4609,0.934136569\n169.875,37.875,1998,7,362.5284487,0.239121065,19.20387077,34.1765576,102010.0469,3.252916336\n139.625,40.875,1998,7,339.7260809,0.179985955,20.71516037,33.02914721,100807.2734,2.698157072\n235.375,46.375,1998,7,247.0740097,1.06116116,15.20322514,31.73905909,101791.7344,2.961970806\n137.125,13.875,1998,7,393.0344428,0.03587034,29.72129059,34.73032004,101057.1563,2.512107372\n151.375,36.875,1998,7,353.0127859,0.156741172,21.96451569,34.22616112,101144.8281,3.572968483\n164.875,2.125,1998,7,379.1387393,0.134602621,28.98741913,34.99003607,101027.1172,4.524688721\n133.375,37.125,1998,7,341.512739,0.145516619,22.71903229,33.37869763,100700.6016,1.074344635\n210.875,52.875,1998,7,322.3655496,0.648548186,10.28709602,32.40284848,101500.2891,2.986807823\n214.875,50.125,1998,7,342.3293254,0.403316438,11.31419277,32.62814343,101828.1094,4.366526604\n186.375,53.875,1998,7,297.3378394,0.628981374,8.545805931,33.09414148,101400.5547,2.734864473\n244.875,27.125,1998,7,394.8963658,0.168338791,20.713871,33.55834079,101234.1797,5.937734604\n137.125,5.375,1998,7,375.5849192,0.042266663,29.88999939,34.63275737,100976.2109,3.070776939\n182.125,48.125,1998,7,362.6318243,0.321776501,8.924515724,32.79868942,101829.4219,4.936180592\n243.375,30.125,1998,7,375.0661186,0.161789387,19.55580521,33.67866105,101289.0156,6.665236473\n172.625,53.125,1998,7,352.7112913,1.058390617,8.275484085,32.89051223,101150.5625,2.523859501\n137.125,14.125,1998,7,400.2031792,0.035824232,29.71419334,34.73920864,101059.8359,2.42216301\n169.375,52.625,1998,7,366.1054304,0.512636602,8.458387375,32.90980792,101117.3516,2.540719748\n137.125,3.625,1998,7,367.1203086,0.051383469,30.02290154,34.66944462,100969.9844,3.47480154\n233.625,47.125,1998,7,344.3043016,0.142072976,14.91193485,32.07369396,101812.7109,4.169455528\n154.375,37.375,1998,7,332.6668401,0.162640333,22.18870926,34.01792741,101266.2422,3.538774014\n125.625,34.125,1998,7,296.0284174,0.698774159,23.51032257,31.54484794,100527.2969,2.960616112\n137.125,32.125,1998,7,358.0239242,0.062303055,26.87741852,34.04421407,100801.9766,2.544204712\n164.875,0.875,1998,7,378.6458653,0.205696613,28.79709625,35.12660879,101026.8438,4.621389389\n173.625,46.625,1998,7,373.8235235,0.211657912,8.835805893,32.94377977,101704.5078,4.963011742\n167.875,37.875,1998,7,367.4167474,0.148425594,20.5383873,34.3344121,101912.9922,3.556221962\n143.125,41.625,1998,7,263.5782292,0.644132972,16.39096642,33.11019307,101007.0156,2.672642708\n143.625,41.375,1998,7,263.047061,0.548642814,16.0225811,33.01826465,101010.1875,2.221834183\n243.875,28.375,1998,7,387.481615,0.227842972,19.93612862,33.58874643,101283.0078,6.153111458\n154.125,47.625,1998,7,288.0343899,0.644789696,8.235806465,32.89964122,101183.9844,0.664207757\n145.625,41.625,1998,7,298.2302076,0.258519024,17.12354851,32.82129341,101019.3125,2.013530254\n137.125,30.875,1998,7,366.4625366,0.066838145,26.7680645,34.38445199,100851.8984,3.328146458\n162.625,51.125,1998,7,365.1644204,0.420862615,9.18193531,32.79071897,101078.1875,1.538113832\n137.125,5.625,1998,7,376.7104138,0.043344025,29.87548256,34.61754048,100977.3047,3.030512094\n197.875,50.125,1998,7,345.2204095,0.355960459,8.782902718,32.50708556,101560.6953,4.125062943\n136.875,6.375,1998,7,386.4932197,0.035588086,29.97322464,34.5863387,100981.2969,2.899083138\n138.375,1.625,1998,7,373.8471452,0.052365988,30.00935364,34.66201037,100967.3125,4.454694271\n168.875,37.875,1998,7,367.8625304,0.199804664,19.80806351,34.27064264,101963.3438,3.359451294\n215.375,49.875,1998,7,339.6271731,0.319633693,11.58806419,32.65223438,101865.4688,4.393756866\n243.375,29.875,1998,7,364.3668548,0.156473875,19.56419373,33.65865022,101292.5156,6.698841095\n143.375,41.375,1998,7,262.622398,0.462764502,16.29741859,33.06547081,101006.6875,2.423457623\n141.875,4.375,1998,7,374.8517898,0.047007576,29.88128853,34.65178734,100984.0234,3.729981422\n137.125,27.625,1998,7,372.4114127,0.031620283,28.69903183,34.5833568,100989.6563,2.880798578\n211.125,52.875,1998,7,338.4299174,1.196302772,10.2274189,32.39885676,101508.0391,3.030188799\n204.625,53.625,1998,7,276.1139061,0.851648271,10.56838703,32.31634212,101345.2734,1.529937029\n147.125,38.625,1998,7,302.658617,0.209766462,21.5519352,33.58445883,100954.75,0.643632293\n158.625,50.125,1998,7,220.0224698,0.679294288,9.617419243,32.65901959,101086.9219,0.880471349\n249.125,22.375,1998,7,429.6072609,0.092986315,26.10032272,33.58341879,101095.3359,2.154823303\n193.375,49.625,1998,7,345.9500486,0.313974594,9.263547897,32.62643474,101669.7188,3.79313302\n137.125,24.875,1998,7,394.4313619,0.016613089,28.90580559,34.88198966,101058.5313,1.538868189\n137.125,31.875,1998,7,356.0972325,0.065877698,26.73709679,34.15152901,100810.7656,2.782389164\n206.625,50.375,1998,7,316.9883226,0.281552154,9.550000191,32.5211423,101552.6094,4.278317928\n220.375,51.125,1998,7,349.0602299,0.203661472,12.56193542,32.70435184,101881.4219,4.048238277\n137.125,12.625,1998,7,383.5973965,0.033258166,29.40225792,34.65314639,101044.7656,2.80671072\n160.875,50.875,1998,7,341.7678968,0.799201727,9.931612968,32.72725725,101065.4063,1.203305483\n138.875,33.875,1998,7,332.5008035,0.216497928,25.44290352,33.83831984,100811.8125,0.884275973\n234.875,40.875,1998,7,331.7926591,0.486329436,13.44064522,32.7023201,101764.9766,6.980456352\n183.375,48.375,1998,7,365.0285169,0.270726776,9.168064117,32.72631311,101824.6172,4.690696716\n164.875,1.375,1998,7,381.9842684,0.175450012,28.86935425,35.10316676,101026.5703,4.621414185\n199.875,54.125,1998,7,267.2867252,0.706502914,10.77419376,31.89136949,101287.0547,0.963163793\n184.375,53.875,1998,7,318.746085,0.471945604,8.419354439,33.20416754,101380.7813,2.850477695\n245.875,25.875,1998,7,414.1968079,0.138965741,21.98806381,33.67808485,101169.5078,5.396045685\n227.125,49.375,1998,7,328.8097682,0.227655143,13.58193493,32.59835362,101951.5547,3.68447113\n138.875,1.125,1998,7,374.6390957,0.069805853,29.87064362,34.64610749,100968.625,4.70634079\n137.125,21.875,1998,7,372.9430687,0.062453937,29.43032265,34.71172374,101080.8672,0.663095117\n249.625,22.125,1998,7,416.3366687,0.141403794,26.55967712,33.71739012,101088.4531,2.007259846\n148.875,36.375,1998,7,340.2641956,0.168204278,24.50322533,34.2487334,101035.5859,3.452947617\n146.875,41.625,1998,7,277.985929,0.522420883,16.00290298,33.05424714,101016.7422,1.85631752\n141.875,4.125,1998,7,373.5183327,0.048601449,29.83419228,34.6156556,100981.9531,3.768497944\n139.375,0.375,1998,7,370.239631,0.088453628,29.57741928,34.66045064,100970.4219,5.16706562\n139.625,34.375,1998,7,334.1888917,0.19792369,25.25709534,33.70170867,100819.1875,0.594807744\n223.375,48.875,1998,7,351.0345087,0.171546534,13.50032234,32.82510304,102050.4141,3.2002635\n234.375,46.625,1998,7,315.0791674,0.302045435,14.84129047,31.73836339,101807.6875,3.819878101\n145.125,35.625,1998,7,335.9157341,0.163350284,24.44741821,34.06453973,100944.2031,1.748482943\n196.875,50.125,1998,7,352.8128222,0.315404356,8.77741909,32.49354416,101574.5703,4.185017586\n175.125,46.875,1998,7,363.1720299,0.208107322,8.728064537,32.92743069,101743.0703,4.946455002\n146.125,37.125,1998,7,320.5739763,0.147350028,22.64483833,33.8171255,100945.8438,1.132845163\n142.875,35.875,1998,7,333.1027808,0.236366048,24.12741852,34.00335747,100895.375,1.323396683\n226.875,48.375,1998,7,323.7503818,0.193983674,13.93999958,32.79873979,102000.2734,3.661735535\n133.875,32.125,1998,7,369.9215529,0.062558144,27.69967651,33.58066386,100740.6875,2.399535656\n204.125,53.875,1998,7,305.5622234,0.752669573,10.52387047,32.28206372,101335.0078,1.429418921\n215.875,49.875,1998,7,335.3070693,0.153976843,11.73580647,32.66392809,101879.2344,4.392430305\n194.125,49.875,1998,7,332.3446065,0.394310684,9.08419323,32.56550646,101637.7109,3.873106718\n126.625,33.625,1998,7,323.069183,0.402386099,24.30548286,31.31048527,100581.75,1.606642008\n160.375,37.875,1998,7,346.6211955,0.212057322,20.00967789,34.04378706,101509.4063,3.76907444\n216.625,49.875,1998,7,353.3498006,0.265165263,11.64548397,32.68069142,101899.2266,4.287959099\n199.125,50.125,1998,7,334.0676121,0.295200449,8.299676895,32.53121293,101546.0547,4.111307144\n172.875,53.125,1998,8,343.3443015,1.442145705,9.406128883,32.83984607,101417.4297,2.549441099\n156.375,44.125,1998,8,310.0465352,0.799568415,15.88645172,32.81584477,101521.375,2.867714405\n191.375,65.625,1998,8,346.5599383,2.141335726,6.591289997,30.88877457,100370.1016,0.991008997\n219.625,52.375,1998,8,327.2061123,0.272788793,13.25548363,32.55270696,101709.9141,4.063269615\n145.625,37.875,1998,8,353.0896611,0.201051384,23.49419403,33.81604701,101069.7734,2.715992451\n232.625,35.875,1998,8,366.3055414,0.11327105,17.8245163,33.02100807,102051.8359,8.628486633\n218.875,37.875,1998,8,415.0872085,0.079974063,21.62129021,33.68899399,102513.8047,1.213618636\n232.875,47.375,1998,8,367.8199163,0.197226331,16.6867733,31.76019797,102107.1094,5.190144539\n149.875,40.875,1998,8,311.1185351,0.237120911,20.02548409,33.53380752,101255.0469,3.645662785\n199.875,54.625,1998,8,275.9964844,1.306973577,11.34935474,31.86814508,101407.9766,3.953927517\n184.875,37.875,1998,8,372.8168827,0.075683415,22.58741951,34.49647957,102886.9688,2.418856144\n147.125,41.875,1998,8,319.7584079,0.493142217,19.25193405,33.29000223,101127.7813,2.975541353\n201.625,38.125,1998,8,350.2527205,0.082707173,20.58548355,33.92563039,102596.8281,2.508045673\n196.875,37.875,1998,8,355.0732907,0.112832978,21.12838745,34.24165285,102711.5313,2.769752026\n210.625,53.625,1998,8,326.1869877,0.55695349,11.9029026,32.34821498,101471.6641,3.484740973\n194.625,55.125,1998,8,309.38815,0.61066407,9.833548546,32.15170726,101348.2266,3.979214191\n173.875,53.125,1998,8,352.491924,1.394346356,9.14322567,32.87688732,101437.9688,3.494979858\n207.125,56.625,1998,8,262.2755709,1.416715264,12.12387085,31.77306727,101266.2969,3.339896679\n235.125,46.375,1998,8,303.907755,0.557448924,16.89580536,31.90940723,102021.5781,5.427592278\n199.125,54.125,1998,8,278.507543,1.129008412,11.50096798,31.98415107,101449.8203,4.323649406\n243.375,28.375,1998,8,402.7368135,0.111234076,21.33935356,33.58843166,101257.2344,5.016493797\n153.125,43.375,1998,8,356.3167988,0.923692048,16.46806335,32.5842579,101414.8594,2.812160969\n192.125,60.375,1998,8,377.9529125,2.127389006,9.169676781,30.74153176,100721.7422,4.18533802\n194.625,54.375,1998,8,349.2290148,0.491523266,9.745483398,32.35884005,101426.4453,3.988865137\n187.875,38.125,1998,8,371.9690701,0.079045206,21.06838608,34.45550966,102883.5781,2.19068265\n168.625,52.625,1998,8,351.200229,0.671746552,10.24516106,32.75572157,101308.8438,3.169839382\n151.625,33.875,1998,8,358.7540891,0.07407061,27.30774117,34.28102124,101401.3125,3.519456387\n202.375,54.625,1998,8,262.8893035,1.565194607,11.85677433,32.05073947,101425.0234,3.886991501\n151.125,42.875,1998,8,322.2276133,0.547976255,16.66580582,32.87932301,101322.0078,3.369357109\n219.875,37.875,1998,8,429.8042469,0.078698561,21.72709656,33.70278102,102512.6016,1.152104974\n226.375,51.125,1998,8,340.7549628,0.409758389,14.83161259,32.40447152,101955.9219,2.923245907\n232.875,35.875,1998,8,365.7316722,0.115352251,17.74386978,32.9941408,102026.7109,8.847738266\n192.625,54.375,1998,8,450.7532593,0.812981725,9.906451225,32.5760482,101443.8125,4.694581032\n189.375,50.375,1998,8,322.5322978,0.582027435,11.47483826,32.53673625,101953.5156,5.564729691\n238.625,35.125,1998,8,286.1684144,0.693780601,16.81709671,33.51793134,101391.8125,7.994269371\n179.125,38.125,1998,8,371.0866307,0.078427695,23.11903191,34.25057656,102834.0938,2.76794672\n249.625,20.125,1998,8,382.787662,0.123311043,28.6935482,34.52376735,101091.9531,0.574264288\n137.625,39.875,1998,8,356.3014184,0.168731108,23.67290306,33.5399949,100873.5313,0.446404129\n137.875,39.875,1998,8,364.6472413,0.168583333,23.55548286,33.49194962,100873.5313,0.493307948\n229.375,44.625,1998,8,377.4099235,0.114887424,17.49838638,32.83787179,102320.7813,3.069564581\n151.875,39.625,1998,8,318.1761642,0.200576231,21.74128914,33.90838474,101380.4531,3.57536602\n241.125,32.125,1998,8,383.905654,0.175128877,19.64677429,33.52988076,101346.5859,5.345932007\n132.375,36.875,1998,8,332.91187,0.216659293,26.81161308,32.67465067,100827.5938,1.607959747\n179.875,47.375,1998,8,377.5720063,0.374933063,12.22935486,32.79708481,102197.9375,4.962175369\n192.625,57.125,1998,8,309.3966843,1.25325346,9.968709946,32.05523539,101108.8828,4.56897831\n237.875,35.875,1998,8,341.5036634,0.592791796,15.80161285,33.45617461,101487.2891,8.576890945\n140.875,41.625,1998,8,346.4851374,0.497925431,21.42290306,33.00338805,100956.5,2.141643047\n178.875,46.875,1998,8,380.9324509,0.430540428,12.61225796,32.83935267,102223.6719,5.422445774\n166.875,45.625,1998,8,401.8918274,0.215024427,13.42709637,32.95263541,101896.5,5.342173576\n151.875,31.625,1998,8,406.2842498,0.05172703,27.26645088,34.55090487,101428.7344,3.487158298\n185.625,49.125,1998,8,350.713527,0.51270771,11.63193512,32.61976016,102122.5078,5.551939011\n235.375,40.125,1998,8,463.8233056,1.153618217,12.89967728,33.10451823,101670.1563,10.75055027\n211.625,53.625,1998,8,331.7829167,0.57970804,11.86516094,32.37670058,101470.5703,3.426626205\n154.125,40.375,1998,8,333.7699733,0.123903029,21.94451523,33.56003976,101489.3125,3.279531002\n148.125,39.875,1998,8,312.3773148,0.183587104,21.83225822,33.59526223,101169.6719,3.135138988\n237.625,36.375,1998,8,350.8572665,0.982223392,15.35516071,33.4288218,101513.8359,7.406129837\n191.625,54.375,1998,8,353.0688549,0.825493515,10.01451588,32.70536178,101443.4844,4.718442917\n135.375,38.625,1998,8,343.0351838,0.165636733,24.76387024,33.63547349,100864.8984,0.593447268\n172.875,38.125,1998,8,369.0919291,0.094115235,24.1325798,34.13892645,102610.375,4.55152607\n229.125,36.625,1998,8,374.5006352,0.107988037,19.21290207,33.42221683,102330.0625,5.90374279\n127.125,34.125,1998,8,317.2361551,0.84851253,26.65225792,31.35305843,100854.8516,2.039450169\n127.625,34.125,1998,8,317.862466,0.509731174,26.90386963,31.42852876,100859.4375,2.580158234\n241.625,30.875,1998,8,378.9483477,0.156901389,20.13193512,33.50365716,101346.6953,5.324025154\n176.875,53.375,1998,8,348.2200494,0.526656992,9.259999275,33.01514423,101487.6719,4.163141727\n186.125,53.875,1998,8,328.8889941,1.438714385,9.810645103,33.02194715,101520.2813,5.20370388\n180.125,37.875,1998,8,364.5185808,0.06996464,23.10645103,34.27255809,102844.7969,2.751887321\n142.125,41.625,1998,8,329.5916976,0.464389294,19.84000015,32.99694872,100986.0938,2.644319534\n241.875,30.625,1998,8,383.8225626,0.151305407,20.3803215,33.48588401,101333.5859,5.320253372\n147.125,36.125,1998,8,360.9263367,0.160854444,26.22096634,34.20825601,101158.0938,4.120184422\n211.625,38.375,1998,8,392.4220003,0.084016033,20.83548355,33.92362529,102470.1094,1.468252897\n145.375,41.375,1998,8,321.4421639,0.207581446,20.27612877,32.97935766,101056.6094,2.208250046\n182.125,37.875,1998,8,372.6598188,0.076572642,22.58419228,34.38456112,102874.0781,2.551034927\n155.625,44.125,1998,8,290.0290365,0.719920516,16.52000046,32.6915158,101492.8594,2.851788044\n148.375,39.875,1998,8,306.3502765,0.219740376,22.06967735,33.59977251,101181.6875,3.155021191\n179.375,46.875,1998,8,378.6291381,0.355775282,12.69903183,32.8333931,102238.6328,5.417182446\n247.625,22.625,1998,8,430.7454917,0.09592957,27.58386993,34.34343809,101115.3281,1.802322626\n191.125,37.875,1998,8,368.8287224,0.100421876,21.41064453,34.34916478,102834.8594,2.485046864\n136.375,39.125,1998,8,329.5037549,0.205312684,24.18580627,33.66852087,100869.4844,0.226840734\n160.875,45.125,1998,8,399.2113109,0.396384209,15.06806469,32.94779712,101631.75,3.890749454\n142.875,41.625,1998,8,328.4643959,0.585475385,19.48161316,32.97151423,101014.8828,2.687612534\n235.125,41.375,1998,8,378.3242863,0.768515885,13.27483845,33.044976,101760.8203,10.64592361\n191.375,65.375,1998,8,338.4068927,1.639181137,6.637096405,30.97885707,100376.1094,0.942648411\n141.875,35.375,1998,8,340.1219434,0.140706939,27.68096733,33.87246418,100937.9844,2.944987535\n208.625,53.875,1998,8,323.1357101,0.677884877,12.04129028,32.25691551,101458.4453,3.57217598\n176.375,53.375,1998,8,348.4693539,0.711102605,9.294193268,32.99812067,101477.7813,4.120467186\n181.125,53.625,1998,8,333.9170231,0.777375817,9.159999847,33.08420146,101533.2734,4.634518623\n160.125,45.125,1998,8,342.1647982,0.540152729,15.17870903,32.95106047,101604.7188,3.622952938\n176.125,38.125,1998,8,347.1672586,0.076760098,23.55483818,34.25655037,102747.8438,3.465898514\n162.875,45.375,1998,8,411.1625635,0.852875853,14.60161209,33.00960225,101699.8125,4.341866493\n155.125,43.625,1998,8,315.1796728,0.580498874,17.48741913,32.68494213,101488.7031,2.854959965\n190.375,37.875,1998,8,371.3802761,0.088443421,21.75,34.38338697,102846.1094,2.467622042\n238.625,34.625,1998,8,296.0809414,0.375270784,16.963871,33.50557411,101414.5313,8.105632782\n179.625,37.875,1998,8,367.7387994,0.073808223,23.09612846,34.26370972,102838.625,2.875204086\n152.375,33.375,1998,8,359.7506559,0.059771989,26.91096687,34.27710319,101433.8125,3.504916668\n190.375,54.125,1998,8,297.8072412,3.212744236,10.23451614,32.90195012,101475.9297,5.031060696\n150.625,40.625,1998,8,308.7349841,0.191837803,20.97612953,33.68488002,101300.9844,3.668259859\n150.125,34.875,1998,8,354.6979284,0.090088814,27.35967636,34.33372772,101333.0469,3.909691334\n191.375,51.125,1998,8,317.8989081,0.560543716,10.80741882,32.46380377,101845.5938,4.936145782\n165.125,51.875,1998,8,367.2694525,0.721951485,10.80000019,32.68668997,101240.3516,3.407491207\n197.875,53.125,1998,8,290.4313881,0.5707919,11.43483829,32.34864491,101552.0625,4.684720516\n202.875,56.125,1998,8,248.3641545,1.652871251,11.46967697,31.26970488,101312.1797,3.033921719\n197.375,52.875,1998,8,288.2770775,0.578485787,11.36193562,32.35362917,101579.5938,4.703964233\n193.375,57.375,1998,8,325.04905,2.562154293,10.05967712,31.97332707,101087.5859,4.383038998\n174.625,53.375,1998,8,377.6903927,0.571210861,8.648709297,32.92382205,101439,3.684261799\n146.875,40.125,1998,8,317.8798099,0.181066498,20.56322479,33.32923692,101111.8906,2.893038273\n192.875,54.375,1998,8,331.5640548,0.756709874,9.862257957,32.5568375,101440.0938,4.688264847\n230.375,45.875,1998,8,380.1221149,0.126393571,17.13903236,32.72390985,102256.1094,3.477143764\n170.125,52.625,1998,8,348.9548406,1.05501008,10.11999989,32.78591883,101361.6094,3.418316603\n162.625,51.125,1998,8,367.6993582,0.346354783,11.5922575,32.59724319,101226.0469,3.204848051\n204.125,56.875,1998,8,241.7472854,1.258746147,11.9167738,30.78605464,101264.4375,3.186234236\n236.625,48.375,1998,8,609.3374317,7.846409321,13.12548351,29.44144815,101872.0234,3.210556984\n236.125,38.125,1998,8,521.639658,0.670641541,13.62967682,33.0757969,101558.2891,10.56988525\n235.125,41.625,1998,8,368.6003482,1.031041145,13.11999989,33.01480174,101762.5703,10.95535088\n149.375,42.375,1998,8,329.4013045,0.52691108,17.66064453,33.21085489,101225.7188,3.338043451\n135.875,38.875,1998,8,328.458567,0.181802243,24.45161247,33.68983054,100867.5781,0.417300344\n143.125,41.625,1998,8,312.4879296,0.633809268,19.12741852,32.95901728,101023.3516,2.566716433\n196.125,54.375,1998,8,295.0626225,0.790472806,11.17806435,31.9923856,101414.3125,3.714350224\n155.625,43.125,1998,8,305.9682898,0.684865892,17.7003231,32.90702593,101523.2344,2.799470425\n171.125,38.125,1998,8,348.916386,0.131548688,23.77096748,34.14993763,102518.9922,4.85341835\n155.625,43.875,1998,8,299.7668793,0.605373263,17.08483887,32.73444474,101501.4844,2.810765743\n210.875,53.625,1998,8,331.9051912,0.551203012,11.90064526,32.35365546,101471.5547,3.484755039\n146.875,40.375,1998,8,332.1855581,0.164781839,20.42354774,33.23486072,101111.9453,2.931673288\n172.625,46.375,1998,8,382.5755846,0.401370272,13.28225803,32.95241493,102079.6328,5.193666458\n200.375,38.125,1998,8,350.6888959,0.104540482,20.61064529,33.96528804,102626.1016,2.697783232\n186.875,53.875,1998,8,326.7422216,0.873134971,9.668386459,33.01852965,101518.9688,5.231265068\n244.625,26.375,1998,8,404.9945955,0.108612053,23.20903206,33.97489035,101204.4688,4.722511292\n146.875,35.875,1998,8,359.7273765,0.143673852,26.33580589,34.22254807,101152.25,4.124501228\n236.875,34.875,1998,8,357.488008,0.193549842,16.42419243,33.42798728,101603.2969,9.01138401\n147.125,37.375,1998,8,355.8256604,0.122350641,25.52387047,34.01435286,101129.9063,3.397689819\n221.875,37.625,1998,8,420.5811213,0.08027193,21.62257957,33.68157637,102506.5938,0.899336159\n191.625,63.625,1998,8,221.2375987,0.831836402,7.577096462,31.13718536,100437.3906,2.226983547\n155.375,44.125,1998,8,291.8558252,0.744148552,16.63580704,32.66081917,101482.9688,2.841790438\n186.375,53.875,1998,8,326.7416479,1.850539327,9.78967762,33.02080798,101519.7344,5.22056675\n235.125,46.125,1998,8,303.9316001,0.589349389,16.90258026,31.9385269,102025.1797,5.498634338\n146.875,17.125,1998,9,353.4781715,0.04577288,29.51233292,34.8427875,101035.0938,2.098287106\n164.875,29.625,1998,9,366.6906697,0.041775301,27.70599937,35.10600132,101713.5156,3.384321928\n147.125,15.875,1998,9,367.0761476,0.025144121,29.55500031,34.71199572,101028.1016,1.928136587\n156.625,47.625,1998,9,350.8353968,1.258006573,11.55966663,32.67529613,101376.5156,2.572835922\n170.875,53.375,1998,9,293.261496,1.113893986,9.418333054,32.75834125,101007.2344,0.949429512\n140.125,13.375,1998,9,369.8514241,0.039525941,30.11966515,34.51669401,100986.9219,0.976729035\n232.125,9.125,1998,9,333.3541178,0.096385948,27.15733337,33.78932101,101165.3594,4.230087757\n139.875,18.875,1998,9,352.0728451,0.037129004,29.76533318,34.79840446,100965.0156,1.586768389\n233.625,36.625,1998,9,382.0412826,0.103562027,17.49200058,33.1677596,101460.0859,8.336078644\n139.875,16.875,1998,9,364.923321,0.039425775,30.17133331,34.76702654,100974.5156,1.223318458\n146.875,13.875,1998,9,364.1704673,0.027879808,29.2436657,34.51498771,101021.0547,1.550236702\n142.875,34.875,1998,9,367.6679181,0.101691984,27.59033203,34.05049515,101299.3438,2.538893223\n165.125,19.875,1998,9,355.8381584,0.03511006,28.35400009,35.18827254,101312.125,5.110318184\n136.375,23.875,1998,9,370.1531808,0.045643415,28.21533203,34.68700343,100849.2266,2.252217293\n231.625,46.625,1998,9,368.5278749,0.139537394,17.08833313,31.95450407,101677.1484,4.396454334\n231.375,46.625,1998,9,368.5043074,0.136268541,17.19166565,32.13230461,101687.1953,4.258815765\n234.875,1.125,1998,9,395.4166191,0.290249735,23.85299873,34.92804062,101278.9688,5.812407494\n224.625,39.375,1998,9,395.1419258,0.074364878,20.57099915,33.41535914,102068.6563,3.934360981\n142.375,35.375,1998,9,327.3707627,0.350110292,26.41666603,33.86023712,101308.2422,2.602260113\n139.875,27.125,1998,9,369.0094987,0.06860812,27.8326664,34.80408138,101024.6563,4.384027481\n210.875,18.125,1998,9,361.6280516,0.053275086,25.60666656,35.1171782,101424.0391,7.175829887\n136.875,24.625,1998,9,367.4133211,0.047604002,28.25233269,34.70365256,100861.3516,2.662575722\n165.125,31.375,1998,9,354.5676661,0.069538295,27.23166656,34.90478897,101760.0625,2.666594744\n147.125,17.375,1998,9,354.4672453,0.043309227,29.47566605,34.87040031,101039.4609,2.195829868\n235.125,6.125,1998,9,339.6501814,0.155706332,26.98633194,34.62309647,101205.6719,5.797146797\n208.625,42.625,1998,9,341.5948912,0.234576195,15.57266617,33.08650243,102175.7109,1.861457348\n146.875,14.375,1998,9,364.9238882,0.035460383,29.2159996,34.56271243,101021.875,1.647656679\n151.875,41.875,1998,9,328.9704369,0.248119786,19.7563324,33.21972418,101612.2578,0.821514964\n146.125,42.875,1998,9,313.709346,0.464152873,17.50933266,32.95561486,101485.6484,1.181045532\n215.125,47.875,1998,9,339.0846761,0.295271099,12.3823328,32.80298793,101807.5781,5.05539465\n179.125,53.625,1998,9,339.7460237,0.533776999,8.638666153,33.02540094,100997.0781,2.225799561\n234.375,48.125,1998,9,291.6416144,2.248766184,14.15566635,31.63141322,101514.1641,4.049426556\n230.125,46.125,1998,9,371.001179,0.126295507,17.28866577,32.80313987,101738.4297,3.321367025\n236.375,35.625,1998,9,375.2533007,0.175071731,16.89366531,33.32175487,101250.6797,6.571047783\n135.625,23.125,1998,9,377.3405899,0.037287183,29.08566666,34.67289859,100835.6797,1.948817253\n229.625,10.125,1998,9,337.2979082,0.055523362,27.5233326,33.60719872,101150.2891,3.479591846\n216.625,41.375,1998,9,349.7637984,0.146894112,17.85866547,33.33653611,102205.8594,2.524464607\n230.625,37.875,1998,9,382.4437813,0.116569437,18.69299889,33.17257887,101735.6953,7.038768291\n231.375,48.375,1998,9,349.9605339,0.291313857,16.41166687,32.10729569,101645.4688,4.659925461\n195.125,47.125,1998,9,358.2568169,0.463617444,11.90533257,32.449031,101680.4219,3.930756092\n165.125,43.125,1998,9,375.1573038,0.283891886,16.61033249,32.71559936,101630.2266,4.242798328\n147.625,38.125,1998,9,341.4408627,0.116004169,24.06966591,33.99988419,101524.8594,2.01923275\n146.125,37.375,1998,9,339.7646566,0.147749424,25.14266586,33.86026686,101471.2344,2.574554443\n173.625,45.625,1998,9,376.5965672,0.439483881,13.54066658,32.88586146,101441.9531,4.714092255\n165.125,17.875,1998,9,359.4539574,0.036722828,28.2519989,35.09545332,101264.3281,4.775659084\n184.125,53.375,1998,9,327.2317705,0.558281362,8.336333275,33.17950338,101005.7656,2.452558041\n234.875,4.375,1998,9,367.4803904,0.163042516,26.58933258,34.82122445,101227.5156,6.311897278\n165.125,21.875,1998,9,354.8788241,0.038119383,28.27599907,35.27510369,101377.9922,5.561226368\n194.875,47.125,1998,9,358.5491116,0.500075519,11.87333298,32.45586473,101676.9297,3.938715219\n192.125,47.125,1998,9,357.8228617,0.719792068,11.84700012,32.5481863,101624.1641,3.991303444\n144.875,10.125,1998,9,371.07861,0.028694848,29.89733315,34.54091066,101001.8281,1.483746052\n150.625,39.125,1998,9,335.4150607,0.1551411,22.74533272,34.05433673,101592.5938,1.322520018\n149.375,38.625,1998,9,338.3625387,0.132830843,23.9873333,34.08461988,101567.3047,1.545012951\n145.875,9.875,1998,9,367.3084615,0.040984273,30.03866577,34.53563613,101005.2734,1.635928035\n211.875,42.125,1998,9,348.1559398,0.143389761,16.42533302,33.30730563,102201.4922,2.004894018\n237.125,35.375,1998,9,358.7213087,0.3161695,16.61566544,33.36193919,101207.0938,6.211667538\n164.875,26.875,1998,9,349.7748067,0.03959066,28.24533272,35.21933222,101615.1563,4.817483902\n146.875,11.625,1998,9,356.5410104,0.031924646,29.29099846,34.43609822,101015.8125,1.409973383\n209.625,42.375,1998,9,345.4079968,0.163842872,15.93999958,33.23160285,102188.6016,1.989326477\n140.125,12.625,1998,9,369.4868336,0.026157277,30.0189991,34.54332978,100989.7578,0.872511387\n147.125,14.625,1998,9,369.951353,0.031878293,29.20699883,34.58253604,101024.1719,1.69247973\n155.375,41.125,1998,9,340.4917313,0.17402494,21.01599884,33.54441154,101640.3906,0.376402229\n181.125,53.625,1998,9,334.1444153,0.78136307,8.619999886,33.10000044,100993.5313,2.240794182\n234.625,1.875,1998,9,363.074117,0.259314537,25.35933304,34.91559297,101268.9219,6.470503807\n230.875,48.375,1998,9,353.284158,0.253725708,16.54366684,32.12950015,101667.6406,4.272735119\n147.125,10.875,1998,9,364.5225656,0.043110982,29.51833344,34.47904652,101013.8984,1.449373484\n234.625,1.625,1998,9,363.4732635,0.262701362,24.93700027,34.92031854,101272.6328,6.31225729\n205.625,20.375,1998,9,352.3302434,0.060454156,25.4109993,35.28584565,101615.9688,6.251160622\n230.875,37.625,1998,9,379.0261912,0.134795979,18.43833351,33.14400059,101713.8516,7.25012207\n216.875,49.625,1998,9,349.6908916,0.153124094,12.16333294,32.72236216,101637.4922,5.302228928\n164.875,29.875,1998,9,373.1557229,0.050681591,27.68599892,35.07907897,101720.2969,3.256833076\n172.375,53.375,1998,9,313.6233859,1.184835434,9.248666763,32.86365169,101011.6094,1.184543729\n161.375,43.125,1998,9,368.6728924,0.286030203,18.04066658,32.93384624,101590.25,2.952926159\n165.125,40.125,1998,9,342.2556597,0.093852818,22.6503334,34.00301981,101803.4844,2.023615122\n141.625,10.125,1998,9,362.9679511,0.032338511,29.86999893,34.64003241,100995.4375,1.13847971\n214.875,50.125,1998,9,340.8211328,0.32241872,11.37633324,32.65655094,101537.8672,6.052014351\n230.125,10.125,1998,9,335.779148,0.051966179,27.42899895,33.61037165,101152.1406,3.489237309\n164.875,34.875,1998,9,344.8466841,0.091653436,25.77799988,34.4237293,101788.9531,2.293344975\n186.625,53.375,1998,9,332.3151842,0.922831476,8.203666687,33.14577591,100992.1094,2.999074936\n139.875,15.125,1998,9,366.4945822,0.04372004,30.01333237,34.62794286,100980.4219,1.083058596\n165.125,17.375,1998,9,372.6954119,0.026268171,28.33599854,35.0711261,101250.4531,4.737781048\n230.375,37.875,1998,9,383.1639181,0.110361695,18.87866592,33.19749779,101754.9219,6.860957146\n219.375,49.875,1998,9,342.6341773,0.220450416,12.4746666,32.68502128,101658.6797,4.68571043\n148.125,38.125,1998,9,338.5754981,0.106578633,24.01666641,34.06143433,101535.4063,1.944414139\n217.125,49.625,1998,9,353.8315953,0.159190983,12.25999928,32.72031176,101641.3125,5.208650112\n135.375,23.125,1998,9,379.1253162,0.033150904,29.08633232,34.68750876,100830.3281,1.901298404\n164.875,43.875,1998,9,388.7478252,0.323408037,15.77199936,32.6245299,101550.4297,4.626866341\n161.375,47.875,1998,9,352.3773861,0.814942479,12.24633312,32.68897152,101245.7578,2.906710863\n229.625,46.125,1998,9,371.9867315,0.136946991,17.29733276,32.92971671,101752.5156,3.154684544\n220.375,40.625,1998,9,373.4248785,0.071695283,19.47933388,33.26311231,102168.6094,2.877855062\n145.625,10.125,1998,9,372.3785503,0.029456848,29.92933273,34.52445406,101004.3438,1.589486361\n198.125,47.375,1998,9,354.8613003,0.697392285,11.42833328,32.43639654,101690.7969,4.205211639\n144.625,36.625,1998,9,345.9891711,0.151892275,25.15766525,33.81078809,101407,2.940544128\n138.375,25.125,1998,9,367.3467238,0.042688973,27.91399956,34.6867364,100913.625,3.575307608\n149.375,44.375,1998,9,276.1582171,1.115230441,13.36299992,32.29879409,101534.5313,0.822493792\n238.125,34.875,1998,9,355.945396,0.396237612,17.09899902,33.40022659,101145.2578,6.054688931\n161.125,49.625,1998,9,339.3986487,0.624020994,11.09866619,32.83432323,101175.8438,2.480239868\n217.125,47.875,1998,9,330.3265654,0.254271746,12.8463335,32.79997069,101817.0781,4.320962906\n232.625,36.875,1998,9,378.3509969,0.113418758,17.81900024,33.10990608,101554.7969,8.061750412\n134.125,21.125,1998,9,366.9681204,0.040520567,29.47799873,34.69408113,100831.3594,1.783913612\n147.125,11.625,1998,9,363.6726704,0.028873112,29.30133247,34.43403673,101018.1094,1.425745964\n139.875,18.625,1998,9,350.8573682,0.038917035,29.79566574,34.80255055,100965.8359,1.531616211\n233.875,47.625,1998,9,340.9041481,0.767058611,15.70699978,31.70301622,101552.2813,4.850574017\n185.125,46.875,1998,9,374.1560208,0.329016805,11.95166683,32.81415933,101452.6563,3.919088364\n139.875,12.375,1998,9,370.9443566,0.015976094,30.03466606,34.56878126,100989.8125,0.881791294\n138.125,34.375,1998,9,329.0580246,0.623357296,26.14233208,33.52243084,101209.3828,3.285506725\n167.375,44.625,1998,9,383.9469891,0.498942703,14.19233322,32.75376868,101506.3438,5.100605011\n197.375,47.125,1998,9,353.7160035,0.490766108,11.58333302,32.43000358,101708.6016,4.005915642\n143.125,9.875,1998,9,368.010621,0.019353189,29.9109993,34.62341356,100997.2969,1.434362173\n142.125,35.875,1998,9,316.1124687,0.22041972,24.24599838,33.7322787,101330.1484,2.536360741\n154.125,40.625,1998,9,349.8379282,0.135586575,21.86100006,33.63177717,101634.8125,0.529692054\n165.125,36.125,1998,9,331.8110141,0.086388536,24.75966644,34.38503969,101806.1016,2.450381279\n134.875,22.625,1998,9,379.8878013,0.034774177,29.2859993,34.6713109,100824.0469,1.82227695\n237.875,35.125,1998,9,353.0573579,0.344713122,16.89866638,33.39297938,101155.8594,6.087076187\n145.125,36.875,1998,9,338.1589901,0.146883607,24.99766541,33.8324632,101428.1406,2.908122063\n189.125,46.875,1998,9,349.3060054,0.519011497,11.9109993,32.67817944,101568.3438,3.884925604\n221.625,49.625,1998,9,337.6440499,0.157468438,13.18166637,32.6625191,101709.6953,3.949715137\n231.625,46.875,1998,9,364.5029181,0.138031721,17.01933289,32.01678389,101672.2266,4.418635845\n235.125,8.125,1998,9,337.9554783,0.089183599,27.64366531,34.03539002,101181.3125,4.987358093\n216.375,47.875,1998,9,333.5300019,0.223481432,12.70033264,32.80956012,101813.9141,4.615982056\n191.375,47.125,1998,9,358.5856054,0.515477955,11.78966618,32.57183641,101605.9219,4.002668858\n175.375,45.875,1998,9,376.4421427,0.454520583,12.65533257,32.85127187,101424.8594,4.772698402\n144.125,34.625,1998,9,361.9684789,0.085541949,27.38666534,34.17664611,101332.2813,3.228191853\n176.125,45.875,1998,9,381.9164157,0.336123019,12.86033344,32.8441667,101428.625,4.76666069\n188.625,46.875,1998,9,356.0210502,0.421474904,11.88599968,32.70160329,101553.0469,3.897135258\n148.625,39.875,1998,9,327.2138946,0.213782519,20.87133217,33.66931105,101576.8125,1.139030457\n149.375,40.375,1998,9,328.4221159,0.211793363,20.56799889,33.5508877,101589.5313,1.011925936\n140.875,35.125,1998,9,321.880288,0.7411502,25.67066574,33.7293241,101291.2578,2.165501118\n151.875,45.625,1998,9,280.6787356,0.858183861,11.23466682,32.51193666,101518.4766,1.463265657\n149.375,38.875,1998,9,336.9544379,0.161875308,23.70833206,34.03796399,101572.7656,1.46558857\n206.875,19.625,1998,9,360.6385472,0.050825391,25.38833237,35.29438537,101552.0625,7.081768036\n144.875,9.875,1998,9,370.7687575,0.024943689,29.96299934,34.55932289,101001.3359,1.552251339\n140.125,27.375,1998,9,368.3196668,0.045507368,27.7796669,34.80093628,101043.125,4.426148415\n134.625,21.875,1998,9,370.1097137,0.044156056,29.3769989,34.67088169,100828.6328,1.888254166\n191.625,43.875,1998,10,378.461181,0.321902543,13.42000008,33.22765666,101595.7578,3.678478956\n164.125,11.375,1998,10,358.1278824,0.034225289,28.50709534,34.48088837,101063.0625,5.403957844\n249.125,8.875,1998,10,333.9386564,0.107656083,26.75258064,32.74644852,101111.1797,7.040863037\n243.625,22.875,1998,10,377.3390061,0.082535774,22.49967766,34.15833592,101343.75,6.652227402\n227.125,49.125,1998,10,331.4292775,0.331118137,13.73032188,32.58853579,101184.6953,5.158593178\n143.125,15.625,1998,10,363.2211908,0.04363808,29.4503212,34.80302203,101114.4063,6.113927841\n240.375,33.625,1998,10,336.8979559,0.422686577,17.51096725,33.53202629,101377.7188,5.934859276\n197.625,5.375,1998,10,363.0523187,0.123230986,27.20838737,34.75657958,101069.9922,5.446218967\n143.125,32.125,1998,10,339.6404315,0.100986578,26.44935417,34.37641615,101580.4688,1.823812604\n144.125,39.875,1998,10,307.0089774,0.488532722,17.35677338,33.1698454,101713.3594,0.382385314\n197.625,24.125,1998,10,365.4256036,0.046261664,25.3780632,35.55741751,101905.7813,6.729498386\n162.875,13.125,1998,10,370.5388264,0.025228024,28.4074192,34.58272326,101110.5781,6.293159485\n153.625,37.125,1998,10,322.796121,0.206342489,23.12516022,34.00226837,101773.6016,1.01417017\n206.875,17.125,1998,10,349.2845721,0.045760017,25.83935356,35.01370889,101477.3438,8.573857307\n146.375,37.375,1998,10,330.0722986,0.31006524,23.38548279,33.86093158,101709.1563,0.630949974\n243.875,14.625,1998,10,375.3648649,0.076537639,27.47161293,34.1562081,101043.125,3.593209267\n235.125,41.625,1998,10,406.2426722,0.804194868,12.78322506,33.01312292,101768.4688,2.267170668\n146.375,30.625,1998,10,344.5939246,0.082697041,27.04999924,34.6084972,101596.8594,1.938948393\n163.125,13.625,1998,10,373.6284499,0.024757333,28.51000023,34.61578995,101128.0547,6.529172897\n147.125,36.875,1998,10,327.7596067,0.231293529,24.95999908,33.96946162,101702,0.562172294\n197.875,6.625,1998,10,362.4550195,0.117684685,27.41128922,34.5783304,101067.2656,4.780234337\n165.375,37.875,1998,10,329.2334787,0.176681757,21.46645164,34.38123947,101840.4063,0.13085559\n205.625,22.625,1998,10,360.7589075,0.060241777,24.5158062,35.3577621,101846.5703,6.736303806\n228.875,48.875,1998,10,334.9071157,0.328172982,14.39999962,32.3739419,101267.3906,4.454064369\n188.375,29.625,1998,10,387.3460666,0.038325831,25.81096649,35.50713921,102075.6484,2.602194309\n208.875,16.125,1998,10,349.6031261,0.043705188,26.41774178,34.75537801,101404.7031,8.385719299\n185.125,30.875,1998,10,352.0498378,0.071552508,25.06935501,35.21992803,102031.4063,1.936658621\n169.625,36.875,1998,10,338.6041379,0.098974876,22.13870811,34.66235024,101902.5,0.61349678\n164.875,13.375,1998,10,363.0401253,0.02578594,28.48161125,34.77592552,101123.625,6.486451626\n228.875,31.375,1998,10,377.2732894,0.065504059,20.03516006,34.43582219,102148.9453,4.342381477\n215.875,27.125,1998,10,343.3569089,0.06488248,22.65322495,35.50236219,102128.8438,5.659751892\n164.875,6.125,1998,10,371.7122672,0.051079001,29.20741844,34.6209178,100985.0078,3.453042984\n144.375,31.625,1998,10,347.181002,0.083206743,26.90161133,34.48409712,101591.1719,1.779260874\n141.375,17.875,1998,10,370.1000017,0.042108398,29.63774109,34.77774918,101190.0469,5.837317467\n243.875,17.125,1998,10,367.7742023,0.110319875,26.65386963,34.58258611,101097.8516,5.836958408\n146.875,26.625,1998,10,360.2358073,0.034458652,28.06193542,35.14137501,101535.8438,2.201678276\n194.125,43.625,1998,10,347.0045336,0.34800435,13.7477417,33.11550224,101648.0859,4.144943237\n146.125,28.625,1998,10,353.3254573,0.040960323,27.16483879,34.8736769,101565.2813,1.711860657\n164.875,14.625,1998,10,364.8141706,0.031173738,28.36580658,34.905922,101169.7813,7.016069412\n183.125,31.875,1998,10,357.5798509,0.065211929,25.13871002,35.00349396,101988.4766,1.374546647\n155.125,40.125,1998,10,325.1245941,0.139318958,19.57709694,33.39358473,101857.8281,0.976200342\n184.375,31.375,1998,10,363.701094,0.077211738,25.16806412,35.11666167,102015.8906,1.76294136\n198.875,10.125,1998,10,351.0541584,0.057925384,27.26516151,34.35728395,101108.0078,5.345526695\n208.875,24.375,1998,10,358.3023796,0.056541324,24.42870903,35.38682455,101955.7031,6.265400887\n160.125,41.375,1998,10,305.1305979,0.482120037,17.69741821,33.67457634,101883.6563,1.501680374\n204.625,9.875,1998,10,335.9549441,0.059001215,27.70870972,34.13021022,101112.1641,4.938665867\n142.625,16.125,1998,10,362.3650442,0.046343647,29.44612885,34.81873184,101129.2578,6.123000145\n140.125,20.125,1998,10,347.5968907,0.041433558,29.42612839,34.58853263,101272.0859,5.138606071\n140.625,25.625,1998,10,361.5895246,0.032154255,27.67000008,34.88193923,101440.2031,2.440377712\n204.625,10.125,1998,10,337.0801999,0.079865336,27.56870842,34.10415381,101117.0781,5.356506348\n140.875,34.625,1998,10,334.4641275,0.166631073,26.01774216,34.13775325,101620.8906,1.018662453\n170.375,36.625,1998,10,338.3994516,0.110274397,22.01935387,34.63740891,101911.9531,0.471104473\n145.625,37.625,1998,10,323.634822,0.379049927,22.57903099,33.74162513,101709.375,0.759137154\n239.625,33.625,1998,10,350.5198265,1.047191381,16.27064514,33.48329574,101452.6563,7.554844856\n162.875,13.375,1998,10,370.8448958,0.031940863,28.45322609,34.58658874,101118.875,6.412281513\n147.125,30.125,1998,10,343.6830559,0.071840458,27.16516113,34.63835114,101592.375,1.96787715\n145.125,31.625,1998,10,342.569913,0.091155022,26.85967636,34.51437742,101599.4219,1.730951071\n159.625,41.375,1998,10,314.2862173,0.366254419,18.09290314,33.74408501,101886.4453,1.31665647\n249.625,7.875,1998,10,338.2209271,0.079068199,26.7341938,33.02389234,101138.2656,7.063587666\n205.125,22.625,1998,10,358.5536739,0.060869306,24.58709526,35.3614099,101841.875,6.866595268\n165.125,14.875,1998,10,364.7661608,0.023301119,28.36032104,34.97077131,101180.8203,7.092716217\n192.875,43.625,1998,10,350.0017403,0.291034728,13.65774155,33.20715094,101629.8438,3.911141157\n139.875,20.125,1998,10,348.3983448,0.038556356,29.43967628,34.59213823,101269.1875,5.144028664\n185.375,30.875,1998,10,355.4733235,0.06825529,25.10193443,35.22522616,102036.5391,1.951998234\n146.875,41.375,1998,10,302.6845849,0.634215117,15.0158062,32.93141609,101738.4844,0.751954317\n212.625,25.875,1998,10,356.5112151,0.065323636,23.5,35.51919329,102051.6172,6.014585495\n150.375,36.625,1998,10,328.0223271,0.202964962,23.56967735,34.09959382,101741.375,1.362151504\n145.125,31.125,1998,10,344.81755,0.080777884,27.11677361,34.56446958,101593.1953,1.902209878\n180.375,44.125,1998,10,363.2596755,0.235909984,11.67483807,33.14440948,101615.9688,2.396633387\n177.375,34.125,1998,10,348.2741607,0.089459732,23.36677361,34.84786153,101937.0781,0.755852461\n164.875,0.125,1998,10,382.063404,0.226488426,27.71483803,35.06104481,100971.1328,4.173044205\n141.625,41.625,1998,10,307.5257712,0.660150528,18.72999954,33.19443143,101679.3828,1.031683087\n147.875,2.625,1998,10,391.8521848,0.05892789,29.87387085,34.48576373,100934.1563,2.959154129\n147.125,40.125,1998,10,310.6434679,0.609244168,16.92451477,33.14708537,101760.3281,0.179169729\n182.125,32.375,1998,10,362.8709047,0.068031661,24.27999878,34.93024349,101969.25,0.853420675\n204.625,42.875,1998,10,343.7109498,0.22847487,14.09354782,32.5744397,101852.0391,5.58154583\n188.125,29.625,1998,10,385.6110275,0.045477618,25.71548271,35.51240158,102071.7188,2.57836628\n240.375,29.875,1998,10,367.4399525,0.073934555,18.57516098,33.62400973,101555.2344,6.873825073\n243.125,24.125,1998,10,378.2693805,0.056058507,22.1935482,33.95351046,101394.1094,6.588265419\n164.375,7.375,1998,10,361.1580495,0.037469048,28.99258041,34.54420471,100995.4922,3.374181747\n236.625,37.375,1998,10,375.0855682,0.706028998,14.53032207,33.4567976,101677.4688,6.377130985\n195.625,43.625,1998,10,344.1020287,0.321424067,13.66354847,32.97325701,101668.7344,4.423547745\n162.125,12.875,1998,10,371.0172412,0.029808102,28.58064461,34.55509055,101100.7969,6.140642166\n143.125,38.625,1998,10,308.2063309,0.375809103,19.47387123,33.47176909,101710.0781,0.174505055\n185.875,44.125,1998,10,370.3408469,0.288119107,12.53096771,33.27465808,101568.0156,3.044077873\n164.125,7.625,1998,10,362.0962433,0.031877972,29.10516167,34.53018045,100997.3516,3.444648743\n204.875,0.875,1998,10,403.5323797,0.217351809,24.44935417,35.24268585,101136.3047,5.88903141\n204.875,3.875,1998,10,387.2901758,0.148616776,26.50290298,34.86071986,101104.2969,6.224381924\n198.375,43.375,1998,10,336.8833219,0.524546087,13.76193523,32.8415004,101728.1563,4.800907135\n227.375,49.125,1998,10,332.9944371,0.300607175,13.83483887,32.55517244,101192.0156,5.078891277\n206.875,23.375,1998,10,361.3440214,0.06679523,24.54935455,35.42361486,101893,6.41503334\n146.875,30.375,1998,10,344.8928863,0.077314116,27.148386,34.60619432,101595.4375,2.000081539\n242.125,26.125,1998,10,367.1637343,0.152779087,20.87870979,33.71114248,101478,6.512934208\n170.375,43.125,1998,10,342.6515236,0.179235443,15.1529026,33.11452007,101722.8594,1.890733719\n148.875,38.125,1998,10,326.9729014,0.21117188,22.16677475,33.8763082,101752.0781,0.648432493\n232.375,32.125,1998,10,367.4540977,0.066487744,19.37290192,33.96278614,102024.5234,5.810733795\n198.875,10.875,1998,10,348.2157615,0.060414374,26.96483803,34.2541616,101127.7813,6.209596634\n143.125,35.375,1998,10,329.8437855,0.257872015,24.02451515,34.18866163,101657.9688,1.076557398\n146.125,35.875,1998,10,339.9235012,0.109060153,25.55870819,34.13844538,101674.3594,0.80826211\n147.125,6.125,1998,10,365.0666161,0.027494751,29.90903091,34.39563423,100949.1719,2.794472218\n147.375,4.875,1998,10,381.1830669,0.032903638,30.1912899,34.3053543,100941.6953,2.822393656\n145.625,31.625,1998,10,344.8399661,0.084109344,26.88193512,34.51778895,101604.7188,1.712720275\n143.875,31.875,1998,10,346.0870279,0.07843817,26.63967705,34.43041033,101587.625,1.772612333\n146.375,11.875,1998,10,362.6773834,0.024756955,29.33516121,34.81580734,101019.3125,4.891662598\n145.625,31.375,1998,10,342.2717983,0.084997199,27.00096703,34.54769492,101601.2813,1.798046589\n232.875,32.125,1998,10,367.3173201,0.075597763,19.34677315,33.91971749,101998.5234,6.058040142\n141.125,25.625,1998,10,363.5572464,0.029512964,27.76064491,34.89708555,101447.6406,2.540292501\n164.125,42.125,1998,10,352.9072903,0.239431664,14.9458065,33.13628334,101843.2422,1.780298114\n146.875,6.625,1998,10,366.169685,0.034776181,29.64096642,34.42248499,100953.1094,2.789392948\n172.375,35.875,1998,10,337.6942146,0.11666695,22.54548264,34.63685614,101928.5625,0.447908461\n248.125,9.625,1998,10,335.536413,0.063834801,26.82580566,32.83539379,101090.75,6.426086426\n165.125,6.125,1998,10,373.8522541,0.041230567,29.27290344,34.63169909,100985.1172,3.464959145\n144.125,40.375,1998,10,304.8307305,0.596094787,17.05064392,33.12223202,101709.2031,0.743896008\n142.125,16.875,1998,10,368.4600941,0.046206255,29.58870888,34.81675464,101155.3594,6.030184269\n145.875,10.125,1998,10,362.3568787,0.020115551,29.62709618,34.55418116,100987.25,4.061502934\n144.125,40.625,1998,10,304.4725203,0.567614317,16.99580574,33.12108368,101705.2188,0.978030264\n161.375,11.375,1998,10,364.3371526,0.030949725,28.85903168,34.32575905,101057.6563,5.381688118\n198.125,7.625,1998,10,356.8584484,0.068858601,27.93806458,34.76580656,101073.0547,3.983932972\n167.375,37.375,1998,10,329.5158607,0.100082502,22.30257988,34.5953272,101868.4766,0.82215023\n206.625,17.375,1998,10,346.0337614,0.046932336,25.67225838,35.06585771,101493.625,8.659795761\n183.375,31.875,1998,10,358.0526519,0.066701733,25.12741852,35.00323111,101992.8438,1.465291739\n140.125,24.625,1998,10,372.9598339,0.031911541,27.95677376,34.94385535,101413.2188,2.443492413\n146.375,37.125,1998,10,328.6187814,0.261142761,23.80580521,33.90792042,101702.9844,0.543985367\n196.375,43.625,1998,10,351.486916,0.287795514,13.94741917,32.90454274,101678.4531,4.507323265\n243.875,22.375,1998,10,378.0466381,0.081756167,23.32322502,34.23065341,101316.3281,6.722717285\n142.125,41.625,1998,10,307.3072738,0.638470054,18.73806381,33.21332037,101678.9453,1.027527571\n204.875,2.125,1998,10,397.1806933,0.219803646,25.70999908,35.09925354,101123.6328,6.271698952\n238.375,33.875,1998,10,339.7562659,0.46393925,16.14064407,33.45807731,101580.0313,8.249347687\n205.125,0.125,1998,10,421.2192657,0.266793758,24.11774063,35.29218394,101139.4688,5.59649086\n143.875,38.125,1998,10,316.7607396,0.250750571,21.17709541,33.57735276,101706.0938,0.430213869\n147.625,1.375,1998,10,389.7960823,0.0710866,29.68548393,34.46270519,100933.1172,2.991466522\n139.875,19.875,1998,10,347.3219452,0.045395412,29.41967583,34.60898262,101259.5781,5.221288681\n248.875,8.875,1998,10,333.3351427,0.073818371,26.68387032,32.78144127,101111.6172,7.016226768\n143.875,25.875,1998,10,362.1247627,0.03190127,27.71806335,34.93916839,101491.1094,2.699442863\n147.625,36.375,1998,10,340.8799243,0.180526927,25.87999916,34.04200846,101696.9219,0.882418513\n235.625,39.375,1998,10,368.0151245,0.809056938,13.36870956,33.25929695,101718,5.381288528\n184.625,31.375,1998,10,363.2454987,0.064540692,25.11870956,35.11683977,102020.375,1.797772169\n148.875,38.375,1998,10,331.9608746,0.188352317,21.83451462,33.84330869,101755.9609,0.453440666\n240.625,29.375,1998,10,368.3409115,0.068464816,18.92741966,33.69485581,101548.2422,6.791770935\n223.875,29.875,1998,10,367.7033682,0.06516099,20.93612862,34.90761703,102217,4.252758026\n167.125,42.625,1998,10,360.4105918,0.301843673,13.75290298,33.15844131,101783.5938,1.929980755\n168.875,37.125,1998,10,329.2415661,0.112033263,23.00258064,34.67287648,101888.7969,0.796277523\n159.375,41.125,1998,10,318.5374169,0.318545669,18.74935532,33.82535785,101884.75,1.281208158\n239.875,31.375,1998,10,354.5470832,0.155880108,18.63064575,33.48525476,101541.7969,7.301250935\n159.625,37.875,1998,10,324.9528627,0.162582606,21.71322441,34.26074409,101812.2734,0.881368518\n142.125,17.875,1998,11,347.0632188,0.046744362,29.22399902,34.67569143,101192.125,5.934789658\n143.125,29.125,1998,11,337.3324129,0.073064633,25.97566605,34.6738919,101676.9844,1.016571283\n148.875,31.875,1998,11,327.7903284,0.116984852,24.58366585,34.51071644,101691.2344,1.37086916\n168.375,31.125,1998,11,324.2415537,0.061627153,22.76333237,34.91730839,101896.0625,1.931912899\n143.625,15.375,1998,11,356.5187079,0.036919311,29.29899979,34.60803556,101094.9063,6.646239281\n193.125,46.125,1998,11,340.6450515,0.413119465,8.810333252,32.8395682,100947.6484,8.221934319\n142.625,22.125,1998,11,352.872817,0.04220755,28.93299866,34.75313407,101378.1016,4.514108658\n143.375,15.875,1998,11,353.9060429,0.035791174,29.31266594,34.57350308,101114.2344,6.531476021\n232.375,46.125,1998,11,327.3741517,0.253011733,13.04933262,32.12626383,100792.0938,6.408643723\n171.375,31.125,1998,11,334.0599483,0.056415826,23.21899986,35.04636979,101953.7891,1.784133911\n172.375,37.125,1998,11,320.7671204,0.437026918,17.04366684,34.75678509,101735.3125,3.136406898\n145.875,35.125,1998,11,308.9053635,0.389862865,21.71733284,34.38769382,101607.6719,3.167449951\n149.125,31.875,1998,11,327.8532693,0.146541685,24.49533272,34.50018042,101692.6016,1.30764997\n153.875,39.875,1998,11,296.0522818,0.319759697,16.23866653,33.78082961,101394.9219,4.916380882\n142.375,33.875,1998,11,327.1545702,0.178865299,23.89033318,34.4475953,101634,3.291704178\n176.875,39.375,1998,11,336.0779427,0.346949428,14.90166664,34.35928792,101658.5781,3.626298428\n144.625,34.875,1998,11,311.2888298,0.548672199,21.80166626,34.42022377,101614.5469,2.900267601\n142.125,31.875,1998,11,326.9640151,0.146840304,24.73133278,34.56715059,101674.9063,2.443451166\n155.125,38.125,1998,11,303.9986081,0.26117149,18.56599998,33.89262038,101506.4609,3.611042023\n164.625,49.625,1998,11,363.2590949,0.333412796,5.578000069,32.74098349,99995.41406,7.482313633\n144.125,37.375,1998,11,310.7589466,0.372414231,20.93066597,33.58752072,101569.5938,4.566292763\n160.125,35.125,1998,11,315.6568195,0.207896349,22.9279995,34.3577795,101668.0781,2.677956104\n151.625,35.125,1998,11,306.3818334,0.260965705,20.44166565,34.21782839,101621.9219,2.80550909\n155.625,43.125,1998,11,301.7732239,0.390118688,11.85966682,32.9860186,101106.3125,6.036450386\n154.875,44.125,1998,11,324.7046145,0.461827129,8.261333466,32.45391381,101024.6094,5.51355505\n144.125,38.625,1998,11,298.2139487,0.431853026,18.76166534,33.390477,101535.25,4.623675346\n148.625,35.125,1998,11,313.015831,0.375867516,22.30766678,34.29926378,101602.9219,3.202781677\n175.125,38.375,1998,11,302.9540045,0.269526631,17.90699959,34.59334707,101694.125,3.696701765\n161.375,35.375,1998,11,317.2683674,0.226975777,21.95633316,34.38632512,101673.375,2.38937664\n154.875,31.125,1998,11,327.6650191,0.096875049,24.48900032,34.52667153,101726.9063,0.638832569\n166.625,49.125,1998,11,355.174515,0.339562744,5.90199995,32.72910804,100022.3906,8.328231812\n225.875,46.125,1998,11,324.3084835,0.32341224,12.51966667,32.83612865,100643.5234,6.766234398\n190.875,46.125,1998,11,343.1027164,0.393357903,8.780333519,32.91866696,100952.8906,8.394107819\n144.125,40.625,1998,11,306.5698645,0.551187813,12.84066677,33.305839,101446.9844,6.136420727\n168.125,31.125,1998,11,328.4351476,0.076321013,22.80599976,34.92201442,101891.0938,1.942702174\n158.375,46.625,1998,11,343.9794479,0.414544437,6.809999943,32.46749777,100687.4375,7.008927345\n199.125,46.125,1998,11,339.5037187,0.479896903,8.720665932,32.83104086,100859.7109,7.96508503\n160.375,47.375,1998,11,340.5255341,0.349997878,6.263333321,32.48617822,100524.4531,7.714644432\n146.875,40.375,1998,11,298.266731,1.15492177,12.22366619,33.47488332,101411.75,4.892810822\n141.375,33.375,1998,11,327.1268445,0.218926847,24.13333321,34.40394491,101655.1328,3.627765179\n165.875,45.375,1998,11,336.4479601,0.435584933,8.127999306,32.46321636,100767.7344,8.882606506\n214.625,46.125,1998,11,330.9070589,0.287822173,10.60033321,32.87333244,100575.4688,6.943004608\n184.125,31.125,1998,11,351.8321811,0.063447811,22.67499924,35.07467538,102199.5234,1.01274991\n144.125,40.875,1998,11,305.4695757,0.539542079,12.50599957,33.33254272,101428.2969,6.276347637\n179.125,31.125,1998,11,329.4603014,0.069467567,22.86199951,35.07619303,102110.2188,1.831424475\n146.375,40.375,1998,11,284.1125609,0.840254068,12.21733284,33.55103707,101416.5547,5.103496552\n154.125,35.125,1998,11,313.8649717,0.31092003,22.03699875,34.15647197,101635.6328,3.013414383\n231.625,46.125,1998,11,329.7025438,0.213157609,13.2159996,32.14369318,100750.5781,6.42688036\n164.125,49.125,1998,11,356.1378097,0.293129951,5.688333035,32.70940852,100099.7969,7.960566521\n181.875,6.625,1998,11,358.1293378,0.072625279,28.38899994,34.47325039,100942.4063,5.9391222\n142.625,23.125,1998,11,352.3093596,0.028688598,28.10333252,34.73217767,101420.6563,4.20389843\n142.625,21.625,1998,11,357.2830028,0.031812727,28.88199997,34.79469877,101356.5781,4.741487503\n149.125,35.125,1998,11,309.8703427,0.240665689,21.55266571,34.32804424,101605.375,3.073532343\n191.125,46.125,1998,11,340.5906217,0.462031573,8.724332809,32.90892893,100953.3281,8.363664627\n148.125,31.875,1998,11,333.1938385,0.120364204,24.90266609,34.54039383,101687.1406,1.527054548\n144.125,38.125,1998,11,306.0756438,0.441814691,19.74300003,33.45988202,101548.9531,4.590156555\n146.125,35.125,1998,11,312.7127313,0.328660637,22.25499916,34.3875246,101605.0469,3.272343159\n229.125,46.125,1998,11,325.2055692,0.1729182,12.84200001,32.64179844,100655.2188,5.876128197\n179.625,41.625,1998,11,327.1238136,0.380437165,12.95699978,33.79930943,101506.1875,5.554638863\n147.625,39.875,1998,11,299.3093965,1.573231339,14.19366646,33.56691033,101440.0391,4.897556305\n144.875,39.375,1998,11,297.4907601,0.515549302,17.27733231,33.4117859,101493.8438,5.222769737\n155.375,44.375,1998,11,316.6836726,0.478985161,8.310666084,32.47439283,100993.3672,5.773103237\n164.375,44.125,1998,11,328.1736893,0.386719748,10.51866627,32.54082119,100980.9688,7.953661919\n231.125,46.125,1998,11,329.9165696,0.197692975,13.18299961,32.2146605,100725.4531,6.37342453\n152.875,35.125,1998,11,317.0074291,0.264814496,21.80866623,34.17201114,101628.0938,3.085682392\n218.375,46.125,1998,11,327.8134309,0.250807828,10.76933289,32.88898879,100602.7813,7.139507294\n158.625,35.375,1998,11,321.7320669,0.230347982,22.51399994,34.26776105,101645.5156,3.184645653\n163.875,42.625,1998,11,328.509763,0.383348942,10.83833313,32.83105993,101199.5469,6.598054886\n215.625,46.125,1998,11,329.1729761,0.215227544,10.7996664,32.85633838,100579.0781,6.753727913\n160.125,47.875,1998,11,338.7728341,0.777274847,6.06400013,32.57519042,100455.3125,7.719735146\n154.625,31.125,1998,11,327.6280509,0.10145285,24.48266602,34.52086484,101726.0859,0.602434397\n144.125,34.125,1998,11,320.5590856,0.198633894,23.61366653,34.50644302,101631.375,2.972410679\n178.875,41.125,1998,11,332.2880107,0.340604603,12.80666637,33.90588206,101544.75,5.109525681\n162.375,41.875,1998,11,322.5161694,0.356590062,12.52699947,33.29404479,101274.9219,5.838523865\n183.375,5.875,1998,11,371.5661583,0.145792603,28.28100014,34.4162423,100940.3281,5.668208122\n166.875,48.625,1998,11,354.4125027,0.408014238,6.081999779,32.69342881,100119.7813,8.643892288\n156.875,31.125,1998,11,327.3283464,0.133608401,23.87199974,34.59791183,101731.6016,0.630779028\n167.875,47.375,1998,11,354.2651075,0.404113054,6.313999653,32.56239456,100368.4609,8.930864334\n148.125,35.125,1998,11,308.2480421,0.281114936,22.79899979,34.25001007,101600.4531,3.319570065\n148.625,40.625,1998,11,301.9264514,0.552212238,12.98166656,33.3890475,101375.5938,5.055288315\n147.875,35.125,1998,11,312.4512902,0.233337551,22.92000008,34.25218856,101598.9844,3.332471848\n222.875,46.125,1998,11,327.8303568,0.211894125,11.37799931,32.83905947,100641.0156,6.985577106\n162.375,35.625,1998,11,307.7063581,0.204566866,20.83066559,34.38818145,101676.2656,2.340390682\n188.875,46.125,1998,11,345.7346139,0.409238845,8.592999458,32.994138,100941.8594,8.607725143\n143.875,35.875,1998,11,306.188359,0.372634709,20.36566544,34.14901108,101600.0234,2.734730721\n189.875,46.125,1998,11,343.7759103,0.460354775,8.832333565,32.95645589,100950.1563,8.465745926\n158.375,31.125,1998,11,336.5171317,0.069805458,24.52033234,34.62711084,101739.625,0.106455475\n164.875,49.875,1998,11,358.8511994,0.40728429,5.605666637,32.75006151,99944.94531,7.196661949\n144.125,36.875,1998,11,304.374824,0.579866648,20.83433342,33.70652068,101582.2656,4.082715034\n184.625,5.125,1998,11,365.2588372,0.145715415,28.14233208,34.54362524,100940.3281,5.631376266\n146.625,34.875,1998,11,316.0132144,0.317382574,23.27133179,34.39484882,101609.8594,3.334557056\n166.625,36.375,1998,11,309.6534073,0.318676233,18.8453331,34.555457,101697.625,2.423837662\n194.375,30.875,1998,12,338.9960365,0.068313919,21.78516006,35.02276683,101968.1563,1.490301847\n155.875,30.875,1998,12,317.7797794,0.208663121,22.34677315,34.68337959,101716.8594,2.447878838\n136.625,16.625,1998,12,353.6157695,0.045844171,28.64451599,34.8500213,101166.3984,7.118409157\n152.625,31.375,1998,12,321.0280897,0.195883527,22.72161293,34.66661704,101716.2031,2.913480759\n136.375,15.125,1998,12,354.1354883,0.037790697,28.51161194,34.89052594,101084.0313,7.251462936\n184.625,30.875,1998,12,333.8942505,0.090724148,21.67032242,35.06387776,101841.1094,1.679615736\n134.875,31.625,1998,12,312.5040485,0.26594457,22.63354874,34.67340589,102050.6875,4.443572044\n150.375,41.375,1998,12,333.7319173,0.478031695,6.876774311,33.22315639,101421.0313,7.39128828\n233.375,33.625,1998,12,349.2721004,0.248092309,14.99870968,33.73761106,102679.5234,6.189469814\n187.125,31.125,1998,12,330.7543758,0.114592686,21.52354813,35.01554084,101847.7734,1.756793499\n135.875,13.875,1998,12,352.2579624,0.031385791,28.57903099,34.84286255,101019.4141,7.29583931\n158.625,34.875,1998,12,308.2154177,0.198414579,20.79741859,34.3172552,101547.9141,3.762045383\n227.875,32.875,1998,12,354.5201443,0.131766915,16.77096748,34.13933218,102891.1172,3.096101999\n222.125,32.375,1998,12,347.5104171,0.108129352,17.71935463,34.67019552,102908.1563,2.08515358\n184.125,31.125,1998,12,325.7293398,0.11050085,21.31419373,35.02226979,101831.2813,1.904943943\n223.375,32.625,1998,12,351.9447718,0.085929058,17.70870972,34.47938353,102921.9219,1.802466869\n141.375,31.125,1998,12,311.6253421,0.292611033,22.55096626,34.75501716,101846.25,3.702744484\n141.625,33.875,1998,12,325.7843211,0.414643645,22.48096657,34.50979984,101817.4063,3.373876095\n161.625,40.125,1998,12,308.8054472,0.50924772,11.87483883,34.00048065,101208.9531,5.825875282\n134.125,6.875,1998,12,346.850341,0.083285005,28.88806343,34.42318696,100809.0781,4.231963158\n154.375,35.375,1998,12,299.0828137,0.341861576,18.35870934,34.32951432,101601.0625,3.506547451\n206.875,30.875,1998,12,336.5450419,0.066345073,21.16806412,35.23899984,102336.8359,3.226788998\n162.125,40.125,1998,12,312.6878945,0.797129571,11.62483883,34.01946354,101205.7813,5.597992897\n225.125,32.625,1998,12,351.3421566,0.100612812,17.53290367,34.30206835,102918.5313,2.205194473\n154.875,37.625,1998,12,305.9786548,0.597320259,18.17258072,34.07333207,101500.3438,5.526938438\n146.375,37.375,1998,12,304.8791711,0.284200838,19.93193436,34.17743307,101728.2109,6.339345932\n160.125,40.125,1998,12,301.9311359,0.289996535,14.66258049,33.99898469,101223.0391,6.706036568\n146.875,38.375,1998,12,299.2287001,0.480694622,15.71322536,34.09096694,101715.8125,6.471259117\n230.625,33.125,1998,12,359.5174282,0.156131908,16.19870949,33.90371144,102812.4609,4.6217103\n143.625,38.375,1998,12,305.6198814,0.234582722,16.38806343,33.77028781,101810.6328,7.151242256\n188.625,2.375,1998,12,367.5392613,0.157121584,25.97871017,34.79397482,100896.5234,6.560646057\n173.875,31.125,1998,12,322.2778416,0.133777097,22.01967621,34.94177055,101754.5469,2.256904364\n199.375,30.875,1998,12,336.0004097,0.057491805,21.71419334,35.16988856,102080.3438,2.409770966\n129.125,31.875,1998,12,313.9799469,0.41596821,21.184515,34.15621871,102350.7656,5.836693764\n157.625,34.875,1998,12,309.5649676,0.260221601,20.99580574,34.3010897,101556.4922,3.788268566\n147.125,38.125,1998,12,300.945622,0.417131841,16.51322556,34.12033242,101709.6406,6.505541325\n149.875,32.125,1998,12,310.8834551,0.234326303,22.25516129,34.6410014,101712.4219,3.450567961\n162.875,40.875,1998,12,314.4807125,0.604201853,10.82548332,33.83975196,101132.5938,5.80997324\n226.375,32.875,1998,12,352.0165396,0.08761473,17.53193474,34.1958586,102913.7266,2.447860241\n154.625,31.125,1998,12,319.273863,0.179301724,22.63129044,34.68605584,101713.7969,2.656779528\n163.375,30.875,1998,12,322.0005519,0.151005492,22.66064453,34.85348177,101716.7969,2.150410652\n135.625,13.125,1998,12,355.7100968,0.028612385,28.70419312,34.77922267,100984.625,7.385692596\n196.375,30.875,1998,12,341.6223441,0.073203191,21.536129,35.0325799,102004.9688,1.570836067\n222.875,32.375,1998,12,349.9204293,0.097838745,17.7635479,34.58853585,102913.2891,2.080191135\n161.875,41.125,1998,12,314.2096862,0.586674869,10.33838654,33.75486112,101121.3359,6.072134972\n140.125,34.125,1998,12,327.7635566,0.772914708,18.67128944,34.52081126,101862.7969,3.391195536\n155.125,37.875,1998,12,308.3434886,0.26419566,17.78225708,34.06216586,101483.1406,5.625904083\n134.875,4.625,1998,12,350.599585,0.044085853,29.45903206,34.36223203,100797.6641,1.890052199\n199.125,30.875,1998,12,334.7392275,0.065927468,21.72645187,35.16197938,102073.5703,2.36828351\n230.875,33.375,1998,12,360.2603805,0.177492261,16.02612877,33.79693234,102805.5859,4.731341839\n144.875,33.625,1998,12,312.9679811,0.589798212,20.90096664,34.62542015,101749.6797,3.55299449\n145.125,41.625,1998,12,302.876454,0.290097445,9.18193531,33.32365793,101568.125,7.882372856\n140.375,34.125,1998,12,325.0890365,0.628873944,18.81580544,34.51648384,101854.2813,3.163951874\n146.875,32.625,1998,12,312.8286201,0.178798964,22.53806305,34.67426473,101734.7656,3.636482477\n235.125,33.875,1998,12,349.8097225,0.375768542,14.07838726,33.64140427,102568.0938,6.985484123\n146.125,41.375,1998,12,323.5413066,0.458772451,9.110645294,33.54733586,101540.8672,7.996227264\n153.875,35.375,1998,12,299.3881768,0.388829082,18.14709663,34.36672843,101609.25,3.461155891\n140.375,27.375,1998,12,320.4411067,0.123764887,23.82935333,34.82296163,101832.6484,3.851440907\n139.875,26.625,1998,12,319.3175655,0.104624994,24.2229023,34.79413778,101804.0781,4.698104382\n134.875,10.625,1998,12,350.3080836,0.031719889,28.85903168,34.6474753,100888,7.060593128\n159.125,31.125,1998,12,316.8105487,0.204510853,22.61838722,34.75637162,101707.8906,2.772596121\n139.875,34.125,1998,12,330.3390516,0.802457452,18.5316124,34.51551765,101872.6875,3.674815416\n163.875,40.375,1998,12,315.1658729,0.738804758,11.74903202,33.99784154,101157.9844,5.538012505\n165.125,39.125,1998,12,305.9488596,0.213879228,13.86612892,34.2558676,101238.2188,5.127383232\n167.875,30.875,1998,12,320.0768414,0.094434142,21.69096756,34.91869789,101736.4063,2.151166916\n139.375,24.875,1998,12,324.1870609,0.05665997,25.34516144,34.79008096,101696.7031,6.022490501\n144.625,37.875,1998,12,305.4208963,0.466901362,17.13580704,34.00163025,101788.9531,6.823793411\n229.625,33.125,1998,12,359.0045376,0.112344615,16.85709572,33.96341407,102848.7344,3.963897467\n192.375,30.875,1998,12,336.8371347,0.058506686,21.62838745,35.05617309,101930.0313,1.719136715\n134.375,9.625,1998,12,352.215886,0.039113484,28.70838547,34.63325417,100856.375,6.501215458\n227.375,32.875,1998,12,351.5629497,0.129956707,16.92225838,34.16249645,102900.3984,2.872693777\n157.875,43.375,1998,12,322.059402,0.387711793,6.742903233,32.7702378,100996.9688,7.270533562\n142.375,41.375,1998,12,311.6114577,1.026749134,10.81096745,33.50906116,101751.4297,7.984298706\n183.625,31.125,1998,12,324.8229751,0.095604949,21.22838593,35.01322663,101829.4219,1.924549341\n138.125,21.125,1998,12,333.4569634,0.065747708,27.6799984,34.77312374,101442.7188,6.40929842\n159.125,36.125,1998,12,313.8572776,0.267530054,18.46677399,34.27267587,101495.5313,3.817093134\n140.375,28.125,1998,12,317.4831119,0.138170511,23.55806351,34.85989088,101858.2656,3.261654377\n177.375,30.875,1998,12,319.2261191,0.072661109,21.79257965,35.05604053,101790.9219,1.843319297\n135.375,12.625,1998,12,355.6581213,0.042245738,28.66612816,34.71353537,100963.7578,7.373520374\n183.125,31.125,1998,12,325.9538535,0.092108928,21.25935555,34.99954665,101828.4375,1.965318441\n157.125,31.125,1998,12,314.8163326,0.267467409,21.73032188,34.63991332,101710.5156,2.590918541\n157.875,35.875,1998,12,308.1512682,0.224228565,20.78257942,34.25307465,101513.8906,4.099966049\n149.375,40.375,1999,1,355.5092669,0.4139404,8.337096214,33.71186656,100873.8047,7.223510742\n137.125,6.375,1999,1,373.7599108,0.042853788,28.99258041,34.36342269,100754.3438,5.90486908\n195.375,40.875,1999,1,331.1818384,0.366035253,10.38709641,34.15421003,100962.7188,5.186883926\n164.625,38.625,1999,1,324.5762388,0.295213466,12.786129,34.26254451,100489.5,5.397162437\n216.125,42.875,1999,1,346.4408808,0.27526018,9.323548317,32.95765018,101569.7656,5.57035017\n231.375,49.875,1999,1,352.8149263,0.499567338,8.546129227,32.41502118,101196.3828,2.96038413\n173.875,38.875,1999,1,329.8833735,0.277235508,12.0403223,34.53483784,100390.3125,6.244837284\n168.875,37.875,1999,1,324.9418812,0.261018306,13.58935452,34.4765386,100510.7969,6.544074059\n145.875,41.375,1999,1,391.3919628,0.372821212,4.153225899,33.32719666,100954.3125,6.777485371\n181.125,32.625,1999,1,311.7419262,0.223041326,17.99290276,34.81673348,101326.9219,5.235869408\n201.125,23.375,1999,1,331.2356617,0.081249014,23.03935432,35.48684663,101845.375,4.855973244\n225.125,51.375,1999,1,370.4474814,0.347873343,7.532580376,32.65361285,100969.4922,3.347680092\n201.375,22.875,1999,1,335.4451631,0.090692811,23.15322495,35.45135432,101823.1953,5.239089966\n192.875,5.625,1999,1,357.5757993,0.140491575,27.03483772,34.78646809,100935.8516,7.423595428\n169.625,38.125,1999,1,334.5315177,0.320568115,12.10548401,34.47062337,100485.0234,6.283144951\n188.625,28.625,1999,1,318.6967123,0.113654114,22.0180645,35.51343066,101765.7344,2.730821133\n192.125,26.875,1999,1,323.4979796,0.053923644,22.11128998,35.63180506,101867.875,1.611002922\n166.375,3.625,1999,1,397.2295987,0.105622709,27.63774109,34.80201131,100765,6.208554268\n163.625,38.875,1999,1,318.4134874,0.285331011,12.91161251,34.26568383,100484.4219,5.267201424\n163.125,38.875,1999,1,318.9331168,0.253580838,13.03322506,34.25986475,100490.4297,5.242425919\n233.875,48.125,1999,1,365.1768903,0.377365738,9.145483971,32.31889421,101421.9609,3.978800535\n136.875,16.625,1999,1,349.4386092,0.051460464,27.36128998,34.95041257,101164.4844,8.100213051\n154.375,0.125,1999,1,354.4714494,0.07899081,29.66741943,34.25116044,100703.4453,4.954538822\n145.625,41.375,1999,1,417.1681588,0.377098024,4.5,33.33586663,100965.2344,6.828392506\n171.625,36.625,1999,1,323.1673756,0.258995324,15.63709641,34.62631685,100637.7891,7.20998764\n194.125,7.375,1999,1,389.9566259,0.11712487,27.05096817,34.76582336,100984.8984,8.231581688\n229.875,46.875,1999,1,346.6447673,0.279541154,8.993870735,32.70528305,101421.1953,4.75052166\n148.875,40.375,1999,1,342.3750755,0.41620627,7.966773987,33.66815615,100899.75,7.017660618\n148.875,0.125,1999,1,372.1904694,0.045763917,29.72838593,34.36992121,100700.9844,3.79362011\n161.875,39.125,1999,1,322.2844875,0.347851932,11.30774212,34.19973183,100491.0313,5.152889729\n154.125,47.875,1999,1,365.8387666,0.330275655,2.004193544,32.9524709,100042.3906,3.895566225\n191.375,40.875,1999,1,345.0215455,0.26840812,9.386774063,34.25797915,100765.5469,5.435700893\n215.875,42.875,1999,1,341.762492,0.273108542,9.282258034,32.95591533,101561.4609,5.587842941\n201.375,22.375,1999,1,337.6774168,0.071678564,23.40870857,35.42225128,101790.9688,5.549514294\n203.625,40.875,1999,1,334.0206552,0.308276951,9.976774216,33.23689789,101364.7188,6.12392807\n137.125,23.125,1999,1,312.0641486,0.06883081,24.35387039,34.95847249,101600.1875,4.691017151\n173.625,0.125,1999,1,401.6974499,0.192023814,26.5158062,35.05793869,100805.2031,6.755328178\n186.625,29.625,1999,1,316.7923049,0.100398444,21.09322548,35.2328136,101675.7266,3.574553967\n223.125,44.875,1999,1,348.6484958,0.277203923,9.09548378,32.82258302,101542.7813,5.505297661\n234.375,48.625,1999,1,438.1020968,0.827976942,8.652902603,31.71719444,101421.7422,2.965963125\n227.125,46.125,1999,1,339.8795353,0.252349883,9.195806503,32.75374794,101458.2266,5.127649307\n192.375,4.125,1999,1,368.8123838,0.144592836,26.30483818,34.83608669,100916.625,7.036915779\n136.875,13.625,1999,1,352.7293563,0.051660329,27.98354721,34.85592467,100985.9922,7.859517097\n188.125,29.125,1999,1,317.5160385,0.081800908,21.89225769,35.41438967,101737.3359,3.030930758\n159.625,51.625,1999,1,350.9421148,0.485096981,1.757096767,32.78844982,99862.74219,2.883654594\n185.375,30.375,1999,1,317.091715,0.12739709,20.76870918,35.11906403,101600.7891,4.041038036\n186.875,40.875,1999,1,340.2678193,0.264173567,10.08580589,34.09707683,100545.1016,5.630236149\n219.875,6.875,1999,1,386.3669299,0.169752628,25.79225731,34.61440045,101098.2891,6.03586483\n136.875,16.875,1999,1,349.4624183,0.062810317,27.33806419,34.93802208,101181.3125,8.096769333\n190.375,0.875,1999,1,439.3207537,0.177803367,24.84516144,34.87340873,100915.75,6.432222366\n161.125,52.375,1999,1,402.7431424,0.263613303,2.69129014,32.77498037,99866.89063,4.056605816\n172.375,36.625,1999,1,309.0238255,0.255772233,15.41193485,34.62355953,100636.7031,7.244835377\n200.125,17.875,1999,1,336.5725311,0.073843993,24.71451569,34.87124956,101561.6797,6.795783043\n211.125,41.375,1999,1,334.5104712,0.38523978,9.621934891,33.00670105,101600.0234,6.186089993\n176.625,0.125,1999,1,430.595111,0.217840999,26.2432251,34.97443855,100824.9219,6.93414259\n220.875,52.375,1999,1,358.1212111,0.30605771,6.916451454,32.83777905,100802.7969,3.861579895\n194.875,40.875,1999,1,333.6935066,0.349846393,10.18999958,34.19304913,100940,5.164548397\n182.875,31.625,1999,1,310.3268867,0.207026675,18.44838715,34.91855663,101450.2578,4.521697044\n177.375,39.375,1999,1,337.992483,0.237432182,10.93806458,34.37251806,100403.6875,5.878896236\n184.125,40.375,1999,1,349.2962616,0.219470322,10.09354782,34.20568049,100483.6016,6.033308029\n192.375,4.375,1999,1,366.4780151,0.149153426,26.45322418,34.82215101,100918.1563,7.073031425\n156.125,0.125,1999,1,355.733589,0.086117782,29.42032242,34.44249773,100707.1563,5.329884052\n193.125,40.875,1999,1,339.6547154,0.332357585,9.41258049,34.28925419,100854.7969,5.292200089\n233.875,48.875,1999,1,389.0480085,1.009880304,8.644838333,32.04422572,101383.7266,2.761924267\n168.625,37.125,1999,1,323.2585158,0.184812173,15.20774174,34.5487799,100585.8438,6.947229862\n164.625,2.375,1999,1,405.3310657,0.154045269,27.63096619,34.96945512,100754.0234,5.814061642\n157.375,50.125,1999,1,384.9869945,0.327320578,1.833225727,32.91173548,99894.3125,2.714077473\n160.875,39.125,1999,1,319.6459996,0.290835798,12.09290314,34.21104354,100500.9141,5.56187439\n195.375,9.625,1999,1,347.3056355,0.067444481,26.56258011,34.46005857,101073.3828,9.03682518\n144.875,0.125,1999,1,353.274981,0.100656383,29.70967674,34.49468052,100709.8906,2.921678543\n196.875,40.875,1999,1,331.9606924,0.259642392,9.783226013,34.09375948,101029.9063,5.393626213\n220.125,52.375,1999,1,372.2607063,0.620230794,6.933870792,32.87995338,100781.2734,3.961634159\n193.625,6.625,1999,1,361.666844,0.177700117,27.08870888,34.8152281,100961.4141,7.906520844\n216.625,43.125,1999,1,343.8420954,0.262771279,9.477096558,32.94296265,101558.7266,5.546333313\n184.625,40.625,1999,1,347.2031801,0.29154554,10.07032204,34.20011812,100470.7109,5.889723778\n165.125,2.875,1999,1,402.3728097,0.17228584,27.7296772,34.93749946,100757.5703,5.911817551\n187.875,40.875,1999,1,342.6206607,0.245764554,10.23999977,34.08391356,100590.875,5.62983036\n152.375,40.125,1999,1,320.9030457,0.292541298,10.78064442,33.97370756,100738.1797,7.315508842\n163.375,1.375,1999,1,406.8016171,0.163364351,27.85548401,34.96566671,100747.1953,5.784392357\n149.625,40.375,1999,1,345.3539624,0.365564257,8.42064476,33.73022681,100860.9688,7.283853531\n176.625,34.625,1999,1,315.2593316,0.303018332,15.84128952,34.7880978,100975.5625,7.152362823\n141.875,3.125,1999,1,366.1395996,0.031302113,29.24709511,34.72825623,100719.6094,4.576245308\n136.875,22.625,1999,1,308.7813704,0.074890912,24.57386971,34.93377024,101578.7734,5.079516888\n156.125,39.875,1999,1,325.1732905,0.258806497,10.73128986,33.98273396,100584.0938,6.857690811\n148.625,40.375,1999,1,340.8548127,0.39014402,7.740644932,33.6358161,100911.9844,6.913337708\n169.375,5.375,1999,1,370.2466551,0.171447977,27.95387077,34.94097847,100796.7891,7.581629276\n141.125,4.125,1999,1,376.5540625,0.045156419,29.677742,34.71836179,100726.1641,5.090091228\n194.625,25.625,1999,1,332.1979588,0.07422141,23.33096695,35.66371828,101879.8906,2.211009502\n199.625,40.875,1999,1,334.0107336,0.277124047,9.809999466,33.88564658,101162.7422,6.02588892\n143.875,41.375,1999,1,385.9791705,0.350065231,6.280322552,33.32258475,101052.625,7.961592197\n167.625,37.375,1999,1,322.7105277,0.213025525,15.24612904,34.49522918,100564.7656,6.85246563\n198.625,15.125,1999,1,338.2880856,0.070495546,25.49709702,34.38894969,101386.7891,8.527481079\n136.875,31.625,1999,1,306.0375155,0.201315254,20.77870941,34.7365467,101673.6484,6.374511242\n140.875,4.375,1999,1,376.0048521,0.035159953,29.61612892,34.70772231,100728.8984,5.223178864\n166.625,3.875,1999,1,393.5419459,0.118638843,27.65096664,34.78598124,100767.7344,6.301137924\n226.625,50.125,1999,2,353.4791541,0.222723126,7.156785488,32.73837155,99686.26563,5.402786255\n152.375,46.625,1999,2,466.7716405,0.310274035,1.767142773,33.24702561,100459.2422,6.355955601\n148.875,35.875,1999,2,315.8144683,0.265775979,15.08964252,34.69919831,101319.9375,5.293423653\n162.125,37.625,1999,2,315.7995145,0.453676999,13.31428528,34.48024076,101206.4375,5.408854485\n194.875,41.625,1999,2,326.7236847,0.247576118,8.646071434,33.82438356,101097.3047,7.748715401\n119.625,3.375,1999,2,367.425912,0.246179342,28.33857155,33.69939995,100977.4688,3.309894562\n156.125,2.625,1999,2,396.1640617,0.130208522,28.17678452,34.7280677,100834.6953,4.481778622\n129.375,3.125,1999,2,368.6560913,0.192824975,28.9567852,34.22201794,100917.0078,3.438870907\n169.125,38.375,1999,2,325.1898944,0.347679347,11.37785721,34.27340615,101274.5469,5.047657013\n206.875,42.875,1999,2,333.8845082,0.300218761,7.936428547,33.19887203,100760.4141,8.897461891\n156.125,7.875,1999,2,360.1647093,0.033845361,28.36714172,34.76319885,100906.5156,7.494067669\n147.125,0.375,1999,2,340.8681881,0.08464925,29.57749939,34.45798469,100827.0469,1.968340874\n130.875,29.375,1999,2,309.3886917,0.247465804,21.26678467,34.72260523,102093.0703,5.315716743\n232.375,48.625,1999,2,353.2959282,0.342564315,8.040714264,32.42759877,100391.8438,6.859415054\n147.125,35.625,1999,2,309.7394927,0.265284391,15.04714203,34.63136464,101379.8516,5.130409718\n137.625,32.875,1999,2,304.9810142,0.314024746,19.37464333,34.81956685,101779.9375,6.560891628\n126.125,3.125,1999,2,370.4659935,0.16283755,28.92178535,34.05636448,100943.7188,3.589794636\n199.875,42.125,1999,2,331.0470429,0.231372073,8.319285393,33.79198974,100986.4297,8.200286865\n235.125,8.125,1999,2,372.3166817,0.199833721,25.59857178,34.69808108,101257.0156,7.624592781\n204.375,42.625,1999,2,336.9486658,0.238585293,7.862856865,33.44476938,100848.3516,8.539569855\n175.625,39.125,1999,2,325.5815876,0.328266382,10.40142822,34.35270125,101302.6719,5.4889431\n212.875,43.625,1999,2,340.0664245,0.234599069,8.03464222,33.10071546,100486.5469,9.719037056\n127.375,1.875,1999,2,373.2462858,0.155388162,29.14071274,34.26409698,100932.25,3.536714554\n210.625,43.375,1999,2,339.8816236,0.159539685,8.198213577,33.08375031,100586.8281,9.419713974\n143.625,38.625,1999,2,315.1210184,0.21434696,11.55214214,33.83744872,101375.9688,6.211709976\n207.375,42.875,1999,2,336.0009779,0.221863151,7.971428394,33.15205383,100752.3281,8.953219414\n144.375,38.375,1999,2,314.2199654,0.231030032,11.5521431,33.88296008,101351.5,6.239429474\n144.875,0.125,1999,2,363.0978712,0.059952542,30.29857063,34.66739756,100831.0938,2.389279366\n200.375,42.125,1999,2,332.7222353,0.21182397,7.958928585,33.73338896,100982.7109,8.194667816\n130.375,4.125,1999,2,367.3009532,0.170209751,28.97749901,34.06653917,100909.9609,3.507766724\n208.375,43.125,1999,2,336.5954026,0.173232645,7.967142582,33.07832158,100685.3672,9.095931053\n218.625,2.375,1999,2,382.6925009,0.1661686,25.65749931,34.81208259,101119.4766,5.820665359\n191.375,41.125,1999,2,331.2274683,0.244265005,8.919285774,33.68264335,101178.5781,7.36627388\n144.125,35.375,1999,2,298.7641746,0.211783066,18.27000046,34.66189933,101434.5781,5.494771957\n220.125,0.125,1999,2,445.4317686,0.202739999,23.65214157,35.04297668,101147.2266,4.107944965\n174.875,39.125,1999,2,326.0258281,0.348812312,10.35607147,34.3164863,101289.5625,5.457197189\n235.125,1.875,1999,2,415.9840442,0.143725663,25.61357117,34.63405395,101177.5938,3.502308846\n187.625,40.625,1999,2,332.977255,0.229135036,9.703927994,33.83248681,101225.7734,6.9080019\n182.625,40.125,1999,2,336.4734476,0.266055482,8.947856903,34.18974704,101255.9219,6.093091965\n146.375,35.625,1999,2,308.2515227,0.244960934,14.93071365,34.62412,101395.4219,4.878274918\n134.375,9.875,1999,2,346.7192391,0.043889295,28.4567852,34.2644636,100902.0938,4.923456192\n234.875,4.625,1999,2,373.7812849,0.161596581,25.98749924,34.53507119,101186.5547,4.899260521\n181.375,39.875,1999,2,333.5188207,0.29297474,10.11071396,34.22638816,101277.2188,6.117055893\n232.875,45.875,1999,2,360.5985622,0.266394049,8.892499924,32.72589201,100815.9063,8.844179153\n233.125,48.625,1999,2,359.5755709,0.337866157,8.362856865,32.37020332,100485.7891,6.749857426\n134.875,9.125,1999,2,347.6733269,0.063599586,28.53321457,34.13719279,100889.9141,4.376541138\n122.125,2.625,1999,2,374.1156927,0.245570689,29.05785561,33.26282722,100964.6875,1.736286402\n141.875,34.125,1999,2,306.7790018,0.300792962,18.81071472,34.79245108,101510.8828,5.062979698\n234.125,46.125,1999,2,376.3598067,0.375957519,8.767856598,32.6126672,100920.0078,8.941188812\n142.625,42.125,1999,2,357.0070637,0.750988781,3.958571434,33.41438222,101204.6328,4.807280064\n130.625,4.875,1999,2,356.5915441,0.066532746,28.77142715,33.99121743,100909.25,3.590189457\n228.625,50.125,1999,2,350.9444546,0.355725956,7.632856846,32.68162227,99837.01563,6.062465668\n147.125,1.875,1999,2,362.7552844,0.169450209,29.58857155,34.56425273,100830.0547,2.464720964\n222.875,44.625,1999,2,339.8746305,0.26307714,8.388928413,32.89425808,100364.2031,9.765918732\n224.875,44.875,1999,2,340.8150777,0.246967524,8.536785126,32.86793953,100400.1406,9.428287506\n124.625,3.375,1999,2,372.2897261,0.135127664,29.0474987,33.69823581,100954.8047,2.839432001\n142.375,38.875,1999,2,315.3472519,0.376586318,10.41285706,33.77863669,101420.7031,5.724936485\n124.125,2.875,1999,2,368.4097422,0.166022852,28.96321297,33.53023463,100957.5859,2.328871727\n143.625,25.875,1999,2,304.7525464,0.111882754,22.27035713,35.0826391,101802.1719,3.352657318\n217.625,50.125,1999,2,340.3648659,0.55814141,5.870714188,32.86142361,99457.30469,4.659889221\n215.125,50.125,1999,2,346.8006027,0.262546271,5.836071491,32.83793503,99515.85156,4.557403088\n198.875,41.875,1999,2,330.9709249,0.262877911,8.603570938,33.92119581,101036.8984,8.118049622\n221.875,44.625,1999,2,343.4550632,0.297071815,8.41428566,32.90049356,100323.2344,9.787922859\n173.875,38.875,1999,2,324.4633574,0.37395373,11.42678547,34.2541545,101299.2891,5.451719761\n151.625,4.875,1999,2,364.6090465,0.046738554,29.59142685,34.90996486,100837.2656,5.391924858\n151.125,45.625,1999,2,436.6499906,0.427388698,1.97035706,33.12071961,100606.4922,6.309950829\n151.125,4.125,1999,2,367.336475,0.048649613,29.43357086,34.78545833,100832.6172,4.819142342\n161.125,37.375,1999,2,308.6651527,0.385356009,13.54321384,34.49560797,101213.6406,5.303170204\n146.625,6.625,1999,2,358.7890092,0.049490962,28.79500008,34.74940079,100860.9063,5.344302177\n153.375,47.375,1999,2,392.773126,0.26677043,1.626785636,33.20672071,100351.0938,6.270938873\n178.375,39.625,1999,2,332.1023228,0.230529547,10.63749981,34.13073784,101277.8281,5.920129299\n132.375,5.625,1999,2,360.0715597,0.064725175,28.75499916,34.08337086,100892.1016,3.333510637\n166.375,38.125,1999,2,317.7187657,0.177050501,12.6449995,34.32490289,101243.25,5.327054977\n127.375,24.875,1999,2,310.9430098,0.12495026,22.62392807,34.78059053,102086.5156,4.313005447\n205.375,42.875,1999,2,336.2664849,0.266773045,7.856785774,33.33664352,100787.1719,8.614263535\n219.375,44.375,1999,2,340.8095261,0.223651692,8.392499924,32.91758889,100308.2734,9.805252075\n234.875,5.875,1999,2,376.0297707,0.203366026,25.82999992,34.6511386,101204.3594,5.934772015\n130.625,29.125,1999,2,313.4142845,0.280286312,21.32999992,34.71530676,102100.2266,5.153931618\n147.125,0.125,1999,2,345.384272,0.111556508,29.58607101,34.46146321,100827.2656,2.018560886\n219.875,44.375,1999,2,339.0460436,0.217604727,8.510356903,32.91780657,100319.1953,9.852726936\n202.125,42.375,1999,2,334.9311835,0.247977898,8.136785507,33.53862739,100919.8984,8.349851608\n221.125,44.625,1999,2,340.2470882,0.240882382,8.25249958,32.91503292,100295.8203,9.823822021\n129.875,19.375,1999,2,315.9826993,0.077365361,24.97285652,34.78026474,101647.8125,9.134176254\n201.125,42.375,1999,2,334.5938291,0.183716983,7.869285583,33.58278722,100932.5703,8.181142807\n156.125,4.125,1999,2,365.4370095,0.074737057,28.79714203,34.9056738,100841.7969,5.373592377\n134.625,5.875,1999,2,351.3817546,0.058806811,28.58357048,34.14080197,100877.8984,2.878680229\n142.875,36.375,1999,2,307.5480461,0.177239329,17.32107162,34.1926567,101468.9844,6.46752739\n224.875,50.125,1999,2,330.0046006,0.309297621,6.827499866,32.76465201,99588.28125,4.838840961\n129.375,4.875,1999,2,353.704783,0.061467059,28.4642849,33.8160677,100921.4844,3.969864607\n234.625,2.625,1999,2,379.3803056,0.131552085,26.18785667,34.61526424,101173.9922,3.837007999\n185.625,40.375,1999,2,339.4133777,0.261084565,9.48392868,33.97062093,101243.7969,6.556877613\n128.875,5.125,1999,2,357.2191806,0.043444213,28.37071419,33.7849648,100929.1328,4.181851387\n142.625,37.375,1999,2,329.4054549,0.571943581,13.67392826,33.95074183,101489.1406,6.375693798\n143.625,41.875,1999,2,354.4724319,0.68005681,2.13142848,33.31381214,101173.7188,6.693628311\n209.625,43.125,1999,2,339.5236668,0.184290677,8.254642487,33.07569182,100659.3672,9.299883842\n131.625,29.375,1999,2,308.858471,0.319572985,21.24714279,34.76116437,102067.4531,5.261382103\n167.625,38.375,1999,2,321.2374083,0.24461019,11.86821365,34.29809159,101246.5781,5.174877167\n230.375,49.375,1999,2,373.7967291,0.368436635,7.687142849,32.55894166,100087.1719,6.773915291\n139.875,35.125,1999,2,318.9865914,0.816328824,15.87285709,34.74797097,101533.0625,1.897620916\n230.375,50.625,1999,2,360.9715929,0.604517268,7.982499599,32.36286747,99978.69531,7.067876816\n216.875,44.125,1999,2,341.4620206,0.210886151,8.155714035,32.95176291,100339.4063,9.944513321\n160.375,37.375,1999,2,309.5421262,0.470682472,13.75749969,34.4506461,101204.1406,5.113641739\n188.125,40.875,1999,2,333.4345861,0.250395924,9.386428833,33.74229002,101193.4375,6.960890293\n132.125,5.625,1999,2,362.1626595,0.05796507,28.75,34.06819779,100894.0625,3.388708115\n223.625,47.625,1999,2,346.101235,0.214720994,8.025713921,32.7906177,99825.54688,7.162065506\n132.125,29.625,1999,2,309.6597649,0.315458417,21.04535675,34.78269404,102051.8906,5.231868744\n161.625,37.625,1999,2,313.0464312,0.469955325,13.32357121,34.47915244,101199.0078,5.355232239\n133.875,6.875,1999,2,355.1311955,0.083811931,28.67357063,33.95905572,100883.8516,3.381361246\n229.875,48.875,1999,2,328.0281243,0.324413002,7.563928604,32.69340527,100084.4453,6.826804161\n219.875,2.125,1999,2,386.9537306,0.148980662,25.47392845,34.85002398,101127.6719,5.505946159\n234.875,3.875,1999,2,380.5104818,0.161853462,26.3482132,34.55762869,101178.5781,4.35058403\n125.125,4.375,1999,2,356.7167869,0.067468427,28.75428581,33.83503801,100952.8359,3.576454163\n147.125,2.875,1999,2,371.4617496,0.093945138,29.45714188,34.63500082,100834.2578,3.058167934\n227.625,50.625,1999,3,357.3706344,0.293232739,6.997419357,32.66205531,100531.0078,2.862113953\n139.875,24.125,1999,3,335.4017237,0.06316039,24.58322525,35.07402927,101319.6094,2.000926256\n161.125,5.875,1999,3,363.5993457,0.092966028,28.50193405,34.53828162,100794.6094,7.152151108\n147.375,13.875,1999,3,353.956368,0.022737674,28.16516113,34.79940939,100996.2031,6.88211298\n161.875,5.625,1999,3,363.4791166,0.089987285,28.34967613,34.48170227,100791.9219,7.210181713\n190.125,54.375,1999,3,446.4957147,0.303109646,2.93354845,32.95467383,99954.22656,2.154555798\n232.625,49.375,1999,3,362.9256952,0.83996582,8.188064575,31.95471397,100867.9063,4.023003578\n160.375,6.125,1999,3,360.0029589,0.073636793,28.58386993,34.62697864,100797.3281,7.167211056\n207.125,53.875,1999,3,428.0948498,0.31082499,2.772580624,32.70336956,100057.8984,4.860795498\n164.875,5.125,1999,3,388.2693062,0.147343978,28.12516022,34.44070494,100796.2969,7.373713493\n185.875,54.375,1999,3,414.408807,0.368042201,2.792580605,33.17531818,99891.85156,1.476205826\n200.625,54.125,1999,3,381.8444076,0.405850798,3.366451502,32.13327825,100035.3906,4.553683281\n142.125,42.125,1999,3,325.1106827,0.968519092,4.829999924,33.5433259,101591.7188,3.071879864\n219.875,52.375,1999,3,362.2664559,0.282404512,5.444838524,32.72818571,100380.9141,4.139008522\n136.375,27.625,1999,3,308.2198306,0.258305341,20.74419403,35.00250089,101387.5469,1.654307604\n182.625,54.375,1999,3,389.0659287,0.336172134,2.500645161,33.18542451,99811.78125,1.138727069\n163.125,51.375,1999,3,432.1956054,0.346548915,2.144838572,33.17718017,99898.40625,3.92143774\n203.375,54.125,1999,3,375.6316873,0.732377052,3.26903224,32.67346835,100026.7656,4.60554409\n147.125,14.125,1999,3,355.2816882,0.026515916,28.18870926,34.8331542,101005.0547,6.802007675\n161.875,5.875,1999,3,364.0902543,0.116281748,28.29129028,34.51434737,100796.1328,7.311546326\n218.875,52.625,1999,3,362.0394258,0.314126194,5.563548088,32.74375558,100352.4063,4.276353836\n145.875,42.875,1999,3,411.5501485,0.368209869,1.574516058,33.09063521,101466.5938,2.835579395\n165.875,52.125,1999,3,411.558392,0.363945037,1.695161223,33.29818755,99807.07813,1.813034296\n135.375,29.375,1999,3,300.7203099,0.227424607,19.93000031,34.93270892,101404.8125,1.804272532\n168.625,52.375,1999,3,435.6009336,0.323602945,2.24064517,33.29273874,99772.51563,2.133417606\n147.125,13.875,1999,3,355.4239817,0.026076183,28.17000008,34.78460169,100994.8906,6.863718987\n149.375,10.875,1999,3,353.9091912,0.040560298,28.24451637,34.57076114,100892.0938,7.479527473\n205.375,53.875,1999,3,388.2245323,0.437802136,2.914193392,32.68284851,100050.3594,4.938317299\n200.375,54.125,1999,3,377.702802,0.36757049,3.362903118,32.09522831,100036.7031,4.491192341\n211.375,53.625,1999,3,419.0018343,0.299459815,2.96193552,32.87101513,100138.4063,4.490708351\n150.875,45.625,1999,3,425.5176026,0.36983937,1.27903223,33.10892463,101158.2031,5.253714561\n148.875,11.375,1999,3,355.3960711,0.03113785,28.34967613,34.6114105,100907.3438,7.420873165\n143.625,41.625,1999,3,342.408369,1.526814699,3.103870869,33.21294141,101570.8594,4.081377506\n149.375,10.625,1999,3,355.0373923,0.043045618,28.23386955,34.56052667,100883.6328,7.468987465\n163.625,5.375,1999,3,375.637018,0.080979794,28.39548302,34.43426186,100793.3438,7.411499977\n160.375,50.625,1999,3,401.503551,0.288103849,1.079999924,33.03159446,100105.8516,6.349494934\n149.125,44.375,1999,3,415.8371734,0.365558147,1.734516144,32.91116321,101295.7344,4.525269032\n163.875,51.625,1999,3,474.5112968,0.332367867,2.424193382,33.21662456,99859.84375,3.164243221\n181.125,54.125,1999,3,386.7625976,0.367396742,1.916774154,33.18338066,99779.33594,1.718151093\n154.125,47.625,1999,3,373.4427611,0.325527159,1.368064523,33.12686753,100814.7578,6.864600182\n164.875,1.375,1999,3,405.3491911,0.200823382,27.32096672,35.00007188,100766.6953,6.824769974\n164.625,5.125,1999,3,377.7663784,0.121561073,28.16903114,34.44582546,100794.7188,7.37969017\n184.875,54.375,1999,3,402.2088567,0.349480033,2.553870916,33.24253422,99869.78906,1.328913689\n140.375,23.375,1999,3,343.0021835,0.06570673,25.12483788,35.05634469,101303.9375,2.486647129\n225.875,51.125,1999,3,371.3232067,0.364914387,6.395806313,32.75902486,100502.7188,2.830047131\n147.125,43.375,1999,3,384.2606282,0.372758359,0.723548353,33.0007804,101412.6719,3.832544327\n146.375,43.125,1999,3,406.6021147,0.39573136,1.006451607,33.06713545,101445.125,3.182831287\n222.875,51.875,1999,3,367.7487421,0.403624922,6.213225842,32.74764991,100446.4609,3.656201124\n141.875,41.375,1999,4,200.5751093,2.445585966,7.078332901,33.3075968,101504.2734,0.702523351\n144.625,31.875,1999,4,289.5122757,0.503606915,19.39799881,34.88646561,101408.7969,0.445859969\n144.375,41.375,1999,4,216.2674161,1.34398973,4.444666386,33.20673156,101520.3281,0.493506014\n151.875,37.375,1999,4,308.9092154,0.420814872,15.84999943,34.86251301,101483.4063,0.565180063\n142.625,41.375,1999,4,238.9963575,3.73263216,7.735333443,33.16869813,101513.7188,0.271677136\n143.125,41.375,1999,4,292.9195358,3.581668854,7.902666569,33.1135751,101518.6953,0.59936136\n150.375,34.375,1999,4,306.0614634,0.273979574,18.34799957,34.84886986,101475.2188,0.267929494\n152.125,38.125,1999,4,294.5787924,0.779283762,15.20699978,34.79151738,101480.8984,0.842899859\n145.625,32.375,1999,4,305.3242717,0.20815371,19.13500023,34.88720113,101421.1953,0.330311954\n150.625,34.375,1999,4,305.828108,0.310237783,18.44999886,34.84908766,101478.6563,0.26886481\n158.375,42.625,1999,5,349.1077056,0.320241719,8.360321999,33.37734449,101449.0469,3.510147095\n163.375,39.625,1999,5,322.3418194,0.375084639,12.62483883,34.24974573,101690.75,1.770869732\n159.625,46.625,1999,5,391.5565356,0.313715905,2.8648386,32.84328687,101299.5625,0.574384928\n193.125,45.625,1999,5,347.3445952,0.328643352,6.917096615,32.81132692,101665.0156,2.085237503\n165.125,46.375,1999,5,377.4079333,0.490042239,3.494838715,32.82289582,101348.0625,2.049955368\n153.625,40.125,1999,5,325.7509177,0.394906849,12.30064487,34.21592247,101494.7188,3.782016277\n180.375,44.875,1999,5,348.6359197,0.354323864,6.744515896,33.07556826,101482.2656,2.126462698\n164.375,39.875,1999,5,317.4430267,0.494517893,12.61354828,34.28462136,101685.4531,1.745543957\n142.375,35.875,1999,5,311.1485148,0.335749894,20.41774178,34.56826144,101257.6094,3.587543249\n181.125,44.875,1999,5,348.4034646,0.309272331,6.729354858,33.07198125,101498.8672,2.151068687\n155.125,37.625,1999,5,289.9096677,0.429651111,16.8064518,34.76636827,101678.2891,2.503892899\n207.375,46.125,1999,5,353.8776365,0.268600339,6.560967445,32.99140882,101954.0625,4.361623287\n225.625,46.875,1999,5,348.9764412,0.268464625,8.102903366,32.99266565,102077.6172,5.094511509\n230.875,46.625,1999,5,350.900885,0.24862361,8.711612701,32.79465532,102067.4531,4.187587738\n143.375,40.875,1999,5,264.2662398,0.987325788,10.51870918,32.87660068,101113.4141,2.916009426\n154.875,43.875,1999,5,373.6654731,0.495283663,5.864515781,33.06612331,101290.0547,2.285149574\n159.875,47.125,1999,5,412.016249,0.305554092,2.62387085,32.91885531,101297.375,0.378054082\n146.625,35.625,1999,5,304.895657,0.33449626,19.42580605,34.71695644,101457.0313,2.935271263\n165.125,48.375,1999,5,414.6534035,0.309228033,2.63387084,32.96114165,101255.9219,1.359947443\n207.875,46.375,1999,5,350.1056406,0.325954139,6.588387012,32.97138262,101939.8672,4.535732269\n146.875,41.625,1999,5,315.1865498,5.035614491,6.111935139,32.99099326,101176.125,3.394458771\n158.125,38.375,1999,5,302.0311479,0.464600027,15.53193474,34.8061049,101698.8828,2.1984725\n142.875,39.875,1999,5,271.9424416,1.337796092,11.90806389,33.0015409,101141.7109,2.844986439\n142.625,38.375,1999,5,284.5661543,0.614708006,16.70612907,33.66178298,101202.9922,2.820787907\n186.875,45.125,1999,5,350.0704143,0.307106167,6.43193531,32.76947284,101597.2891,2.032504082\n227.625,46.875,1999,5,353.4314592,0.230646715,8.57838726,32.95208609,102078.8125,4.640775681\n163.125,48.875,1999,5,418.1547933,0.350848615,2.668386936,32.95238405,101250.3438,0.721154332\n199.125,45.875,1999,5,345.4130168,0.24294512,7.100645065,33.03074485,101774.2578,2.659001827\n161.625,39.125,1999,5,311.8105918,0.300939322,13.00806427,34.39490825,101699.3203,1.975768685\n144.625,40.375,1999,5,271.1240949,1.830641985,11.58838654,33.1896404,101172.5703,3.004492283\n221.875,47.125,1999,5,341.45261,0.302317679,7.800967693,32.76633739,102020.5938,5.774341583\n160.875,47.625,1999,5,416.2138431,0.295046121,2.722258091,32.89971268,101295.1406,0.567580402\n178.375,44.625,1999,5,351.3641185,0.325384021,6.537741661,33.16226286,101448.8359,2.063863993\n147.375,40.375,1999,5,253.7822041,3.614565849,8.533548355,33.52378714,101280.1719,3.351515293\n142.125,41.125,1999,5,237.7401553,0.975935757,9.295805931,32.79810828,101073.7656,2.634196758\n235.125,46.125,1999,5,236.3594687,1.174386501,11.03967762,32.51706737,101995.7969,3.929729223\n142.375,38.875,1999,5,232.4515097,1.636326432,14.47806454,33.40575773,101174.9219,2.948502064\n249.875,1.125,1999,5,469.4549561,0.160005927,25.79161263,35.04161781,101185.8984,4.280685425\n226.625,46.875,1999,5,351.1858362,0.24593249,8.394193649,32.99233145,102079.7969,4.884669304\n190.625,45.125,1999,5,350.7143996,0.321455091,6.547419071,32.77834278,101653.4375,2.048671722\n144.125,36.625,1999,5,304.8366887,0.187417686,19.92419243,34.48323631,101305.8984,3.52668047\n206.875,46.125,1999,5,344.0760385,0.305892587,6.351612568,33.00187719,101942.9219,4.246780396\n210.875,46.625,1999,5,358.2051114,0.285846233,6.631612778,32.90673661,101976.3516,4.965245247\n145.125,42.875,1999,5,229.655451,3.020602465,6.488387108,32.93336655,101033.2891,2.760091782\n165.125,47.625,1999,5,387.2816903,0.352988131,2.861290216,32.88756222,101288.8594,1.735818148\n140.875,34.625,1999,5,319.9549346,0.324811786,20.74419212,34.64877206,101252.6406,4.326838493\n200.625,45.875,1999,5,342.4073559,0.316373736,6.723225594,33.13083231,101812.2734,2.938185692\n191.875,45.375,1999,5,351.5855083,0.286873341,6.758387089,32.79208249,101658.4609,2.039628744\n213.625,46.875,1999,5,348.9360444,0.261225671,6.713548183,32.81539512,101980.1719,5.181704998\n202.125,45.875,1999,5,339.9542463,0.292635709,6.58580637,33.20038223,101853.0156,3.093754768\n165.125,41.375,1999,5,345.4599227,0.388972104,8.628386497,33.57889742,101633.9375,2.128933907\n208.125,46.375,1999,5,350.5969951,0.336716712,6.625483513,32.96688116,101945.4375,4.594882965\n162.625,42.625,1999,5,341.0208505,0.385783672,7.158064365,33.21376711,101539.1719,3.110218763\n164.875,43.875,1999,5,345.0625731,0.460558945,6.125483513,33.22532862,101482.5313,2.787647724\n165.125,45.875,1999,5,370.0373574,0.398675799,3.920322418,32.85923201,101371.875,2.201284885\n143.625,39.875,1999,5,289.3761404,1.852234721,11.50419331,33.17220974,101165.6328,2.829621315\n147.625,40.125,1999,5,259.9573194,1.299508095,10.22290325,33.63203537,101304.75,3.339129448\n161.625,41.125,1999,5,340.9845964,0.379291654,9.609677315,33.35429287,101616.6797,2.466058731\n216.125,46.875,1999,5,350.0663245,0.257040411,6.737096786,32.71949571,101992.7344,5.378354073\n142.125,39.875,1999,5,262.7843641,0.997610986,11.38548374,33.01195931,101102.875,2.016728163\n143.125,36.125,1999,5,300.2245667,0.255808473,20.37032127,34.52804029,101281.1016,3.561570168\n159.375,46.625,1999,5,403.4837084,0.382789,2.774838686,32.86217654,101297.0469,0.581643581\n147.625,35.875,1999,5,310.1500212,0.353138715,18.76838684,34.6669156,101488.4375,2.85036087\n152.625,39.875,1999,5,308.3671255,0.364182889,13.66258049,34.3278814,101481.3359,3.675512314\n214.875,46.875,1999,5,346.070816,0.256827593,6.638709545,32.7684806,101986.1797,5.209405899\n229.875,46.875,1999,5,353.7692587,0.231249988,8.509354591,32.79745454,102063.5234,4.161744118\n249.875,0.625,1999,5,437.5049853,0.193081081,25.33548355,35.11842602,101188.1953,4.047697067\n153.875,43.625,1999,5,346.856087,0.493754685,4.99032259,33.12077296,101279.2422,2.297700405\n163.125,39.625,1999,5,323.6212877,0.410603106,12.4390316,34.22527134,101690.25,1.8098104\n157.375,38.125,1999,5,298.907388,0.373109043,15.44903183,34.81454223,101699.5391,2.158917427\n156.875,41.125,1999,5,337.5123222,0.338262051,10.28677368,33.99336618,101511.8672,3.705824852\n170.875,43.875,1999,5,346.9567297,0.232833639,6.78645134,33.06567878,101468.1172,2.697657585\n143.875,33.875,1999,5,318.9743088,0.469855756,19.76870918,34.74000335,101414.9219,2.998933792\n147.125,41.625,1999,5,343.705356,5.332016468,5.762258053,32.98565578,101185.9531,3.413891315\n145.125,42.625,1999,5,219.21331,2.180460691,6.871290207,32.94091723,101044.2656,3.276042938\n205.375,46.125,1999,5,342.304312,0.438877165,6.451290131,33.06633347,101912.0078,3.73445344\n231.375,46.625,1999,5,350.1498491,0.212092668,8.915161133,32.77993029,102059.1563,4.18760252\n151.375,39.375,1999,5,298.675101,0.49821052,14.32709599,34.50181603,101473.6875,3.400911808\n169.375,43.875,1999,5,345.2720733,0.354782164,6.077419281,33.13539928,101481.7188,2.695854664\n230.375,50.125,1999,6,269.4719556,0.688167547,10.48133278,31.78481433,101580.9063,2.454938412\n139.875,17.875,1999,6,363.8621132,0.055188622,29.66866684,34.82946068,101199.2813,4.738007069\n215.625,53.125,1999,6,392.7799713,0.283576333,6.46999979,32.70187169,100926.2344,1.826675296\n197.875,54.125,1999,6,221.9207254,1.731577039,6.521333218,32.16632554,100927.7656,0.458229363\n228.375,50.625,1999,6,320.533934,0.554998143,9.89533329,32.04377067,101499.9609,2.805098534\n139.625,18.875,1999,6,356.6721923,0.05544078,29.64533234,34.80555433,101221.5625,4.540421963\n186.875,54.625,1999,6,271.2440444,1.546375751,5.411333084,32.8931042,100929.2969,0.538887322\n170.125,53.875,1999,6,285.379642,0.68441567,4.172333241,33.11576045,100953.4375,0.529458761\n136.875,25.125,1999,6,368.9914334,0.024295423,28.38199997,34.74419886,101245.8672,2.767616272\n218.375,52.625,1999,6,346.1898807,0.360604078,6.953333378,32.71619892,101019.8516,2.44901371\n221.875,52.125,1999,6,352.0274939,0.289268652,7.700666428,32.65903807,101177.0469,3.230648994\n189.875,54.625,1999,6,216.1074734,0.629937887,5.809999943,32.93627566,100919.0234,0.496246636\n196.875,54.125,1999,6,225.3017629,1.018691421,6.399333,32.16294432,100926.4531,0.131485164\n194.375,54.375,1999,6,295.9918364,0.658641577,5.701666355,32.39077389,100931.1563,0.218767986\n140.875,15.375,1999,6,367.7910801,0.036932837,29.8769989,34.70327145,101145.9688,4.969491005\n202.625,54.125,1999,6,289.3507703,0.391175747,7.245666504,32.41191643,100883.0859,0.744933963\n186.375,54.625,1999,6,285.951453,1.77831161,5.437999725,32.93883717,100932.0234,0.530009031\n138.125,22.375,1999,6,364.9608965,0.04276251,29.2626667,34.79029936,101261.3828,3.222997189\n204.875,54.125,1999,6,281.3156669,0.664936423,6.825333118,32.29062855,100853.0469,0.59205091\n233.875,48.875,1999,6,219.3985546,4.041873455,11.77099991,31.48593232,101690.3594,2.158840895\n188.875,54.625,1999,6,310.3256307,0.979312658,5.488999844,32.88780826,100919.8984,0.568951845\n172.375,54.125,1999,6,318.4988,0.446211815,4.595999718,32.9756487,100950.8125,0.39604032\n190.625,54.625,1999,6,228.8320828,0.344519168,5.942666531,33.02572727,100920.0078,0.391741574\n208.125,53.875,1999,6,327.943351,0.6400159,7.045333385,32.29385948,100823.1172,0.211285353\n191.125,54.625,1999,6,277.7221773,0.823288381,5.879666328,33.06345099,100920.9922,0.365219057\n231.875,49.625,1999,6,279.7265641,0.928114209,10.70433331,31.42600682,101636.3984,1.920915961\n212.625,53.375,1999,6,382.39611,0.461294591,6.756000042,32.68580627,100856.1016,1.319337845\n203.125,54.125,1999,6,290.7115964,1.232368708,7.308666706,32.44533128,100876.2031,0.760299027\n139.875,18.125,1999,6,361.3475438,0.054078858,29.6376667,34.82518286,101205.5625,4.705516815\n173.375,54.125,1999,6,265.7086135,0.413183063,4.761666775,32.91356015,100949.6094,0.319955587\n231.375,49.625,1999,6,233.2228883,0.673082384,10.63166618,31.53951326,101628.5313,2.227701426\n154.125,48.125,1999,7,384.3604663,1.500189662,6.015806198,32.87525177,101237.5625,0.660254955\n146.875,34.125,1999,7,365.1058549,0.102082834,25.82999992,34.50125611,101257.9375,4.261244774\n136.875,9.125,1999,7,352.7581648,0.047487363,29.46290207,33.78280449,100869.9766,1.624456406\n150.375,38.625,1999,7,362.1355305,0.156325892,21.86515999,34.26923168,101329.4375,3.216889381\n189.875,0.375,1999,7,424.4089553,0.199128717,26.93935394,35.42111731,100964.9063,6.262625694\n204.875,42.625,1999,7,377.2795258,0.341046661,15.27838707,33.5103454,103098.125,1.513907433\n146.125,34.125,1999,7,369.5070638,0.107140392,25.9729023,34.48968685,101221.0781,4.251585007\n179.625,42.875,1999,7,381.9049039,0.339670268,12.29774189,33.43619066,101948.4375,3.380212069\n165.625,41.875,1999,7,365.7570308,1.116539598,14.13677406,33.26208508,101766.9375,3.232353449\n143.125,32.625,1999,7,362.6528539,0.114613026,26.66548347,34.39017636,101092.7734,4.51382637\n142.625,38.875,1999,7,289.1359055,0.289796591,20.57161331,33.30452681,101021.6016,2.116074324\n226.125,39.125,1999,7,384.9553069,0.085918747,16.62064552,33.05432934,102372.0156,4.746201038\n169.375,42.375,1999,7,352.5153484,0.451708585,13.85354805,33.51009047,101818.7734,2.900217533\n145.375,41.375,1999,7,276.4241461,0.482183039,16.12354851,32.99952602,101110.7422,2.243252277\n136.875,15.625,1999,7,362.623879,0.03097273,30.09225655,34.69683975,100850.5313,3.177498579\n190.125,4.125,1999,7,381.8104586,0.137760848,27.7793541,35.20106751,100982.3828,5.57676506\n231.125,37.375,1999,7,374.2632344,0.114615522,15.39580631,32.90050215,102099.7891,5.582863808\n150.125,34.125,1999,7,381.876435,0.079998448,25.99032211,34.44826525,101411.2031,3.708093882\n145.125,34.125,1999,7,364.3955491,0.112262756,26.25096703,34.35061097,101170.4375,4.357508659\n132.125,33.375,1999,7,371.854872,1.210275054,23.95129013,33.37440611,100742.3359,2.785295486\n180.875,3.625,1999,7,357.6559515,0.153923184,28.06645012,34.94494891,100952.125,5.579697609\n226.625,38.875,1999,7,383.4613949,0.088243963,16.72871017,33.03109962,102342.8438,4.70609951\n143.625,39.875,1999,7,283.539052,0.252243936,19.62806511,33.28049386,101048.9688,2.722946167\n192.625,42.875,1999,7,389.161257,0.250464797,13.56096745,33.00915647,102668.0469,5.240512848\n143.875,12.625,1999,7,354.7595772,0.034223933,29.28903198,34.57129765,100955.0234,3.388404846\n187.625,42.875,1999,7,385.0186397,0.300832808,13.02322578,32.97023505,102367.5313,5.492020607\n149.375,34.125,1999,7,385.4069794,0.096933819,26.25741959,34.44178951,101376.8438,3.894736528\n203.375,42.875,1999,7,369.8104252,0.291844458,14.09806442,33.38847345,103061.6406,2.571118832\n154.125,48.375,1999,7,317.7696424,0.711798549,6.066128731,32.8618269,101233.7969,0.734214127\n132.125,33.625,1999,7,353.1113295,1.190524697,23.67677307,33.3724821,100745.6094,2.768039703\n149.375,44.625,1999,7,287.0252292,0.418794125,8.533226013,32.73336774,101210.3125,1.320730567\n141.875,0.875,1999,7,354.7133381,0.085173763,28.89774132,34.35195935,100929.7344,0.805601358\n145.375,40.125,1999,7,290.7269911,0.26845929,18.82386971,33.26075876,101116.9688,2.405939817\n154.875,39.875,1999,7,342.1874705,0.255001724,19.19741821,34.14264148,101502.6406,3.475548267\n176.625,4.875,1999,7,359.2009579,0.09705656,28.36322594,34.70795894,100955.5156,5.889359951\n176.625,42.875,1999,7,366.9216144,0.31522885,11.99709702,33.49406862,101878.6328,2.474622488\n189.875,2.125,1999,7,412.5704391,0.185539395,27.36548233,35.31739777,100967.0938,6.013786793\n149.625,32.625,1999,7,392.8046918,0.06192977,26.87419319,34.52849448,101411.5859,3.613304615\n157.875,40.625,1999,7,366.7943091,0.392618299,17.34903145,33.94484514,101599.5313,3.05113101\n166.625,42.125,1999,7,320.8786967,0.721266104,13.81580639,33.16875666,101775.1875,3.281794548\n234.625,36.125,1999,7,378.6298078,0.220321968,14.5519352,33.22270328,101852.2578,6.92822361\n138.875,34.375,1999,7,309.8884401,0.403443843,24.4503212,33.80043983,100981.125,0.769497156\n167.625,42.125,1999,7,335.9443956,0.585996449,14.05064487,33.30411643,101798.8906,3.031418562\n146.875,39.375,1999,7,293.6667848,0.199138567,20.36096764,33.49805754,101175.4688,2.649894238\n137.125,25.875,1999,7,379.7595538,0.042351265,28.01000023,34.65514565,100853.1563,4.321680546\n151.875,34.875,1999,7,398.5848955,0.120455481,24.54903221,34.48117948,101471.6094,3.310992718\n144.625,40.875,1999,7,294.8608291,0.371849567,18.01935387,33.20890057,101086.0547,2.326395988\n144.125,37.625,1999,7,336.4692581,0.162929133,24.34032249,33.55942655,101068.25,3.119103193\n132.375,32.875,1999,7,342.1773054,0.392264187,25.47129059,33.45379153,100758.1719,2.522031784\n146.375,34.125,1999,7,366.3723912,0.101687744,25.85677338,34.49354327,101233.4219,4.228869438\n151.625,46.375,1999,7,254.7076063,0.811658919,8.041290283,32.7501229,101238.1094,1.055699468\n186.875,4.375,1999,7,387.3762889,0.146474063,27.82516098,35.10174161,100977.5781,5.442233086\n136.375,33.375,1999,7,352.6478135,0.270754397,26.18999863,33.64830101,100912.6875,2.193805933\n174.375,42.875,1999,7,362.6363429,0.26520847,11.67999935,33.48062783,101857.1172,2.43618083\n148.375,33.875,1999,7,396.3106994,0.099585198,26.18741798,34.46128064,101335.6094,4.134728432\n147.375,42.875,1999,7,235.8329908,0.407048345,13.54548359,32.88127941,101158.5859,2.077127695\n146.875,40.625,1999,7,262.3410342,0.508275151,17.12516022,33.24300772,101168.75,2.117098331\n180.125,42.875,1999,7,363.1285593,0.303869603,12.37483883,33.40862876,101972.9609,3.534024715\n190.125,5.125,1999,7,384.3785353,0.136236429,27.94677353,35.04269785,100995.4922,5.266837597\n136.875,6.375,1999,7,339.905648,0.054413941,29.48419189,33.84377271,100898.9297,1.960449696\n141.875,0.625,1999,7,359.580427,0.074846193,29.00161171,34.3774513,100929.3516,0.954389155\n164.875,41.875,1999,7,347.4251076,0.947030842,14.10709667,33.24070954,101745.25,3.300310135\n136.125,33.375,1999,7,349.9924446,0.335136771,26.17741776,33.60529864,100911.9844,2.06299758\n132.375,32.625,1999,7,343.7425667,0.204624459,26.12290192,33.47845446,100750.4688,2.354453564\n143.875,42.125,1999,7,251.9086424,0.720153511,16.2341938,33.16599476,101059.6719,1.219422221\n231.375,37.375,1999,7,375.1965137,0.110365674,15.16193485,32.92961484,102085.6953,5.669270039\n178.375,4.375,1999,7,380.1891053,0.106168613,28.34000015,34.79108995,100956,5.664081573\n179.125,42.875,1999,7,362.3596568,0.360604564,11.97064495,33.4596346,101933.3594,3.180098534\n153.125,39.375,1999,7,341.5210446,0.186610118,20.86128998,34.31484002,101434.2031,3.582837105\n137.125,4.875,1999,7,341.9094823,0.096227437,29.38935471,33.7568137,100912.1406,1.59018898\n149.625,38.375,1999,7,351.259005,0.171057984,21.62161255,34.23765767,101303.1094,3.10047102\n149.875,34.625,1999,7,369.3922415,0.088926829,25.4954834,34.42266756,101389.7344,3.703400135\n157.875,50.875,1999,7,191.3211022,0.50152868,6.527741909,32.87617719,101071.7422,1.810591221\n144.375,41.375,1999,7,281.5143901,0.386100948,17.69999886,33.1552738,101078.2422,1.901147127\n136.625,33.625,1999,7,298.8524784,0.531789958,25.27161217,33.66123617,100924.9844,2.086471081\n135.375,33.125,1999,7,347.2925024,0.185910016,26.87516022,33.5541119,100874.2969,2.612734318\n150.125,35.125,1999,7,390.5555704,0.131152987,24.85193443,34.42640889,101390.125,3.614930153\n147.125,39.375,1999,7,295.2977817,0.170329824,20.50387001,33.53837061,101184.75,2.679435253\n137.125,3.625,1999,7,350.9823026,0.05561588,29.48516083,33.79346782,100920.5,1.064850211\n213.625,41.625,1999,7,361.4736682,0.219251236,14.56741905,33.44667828,102982.2188,3.237414122\n143.875,34.375,1999,7,353.975289,0.128842339,26.21935463,34.2824235,101102.2188,4.301565647\n168.125,42.375,1999,7,391.4618465,0.450046271,13.53677368,33.26240945,101794.7969,3.012012482\n149.875,36.375,1999,7,360.7199508,0.123613022,24.30451584,34.35388637,101352.2656,3.455332279\n181.375,42.875,1999,7,373.6824294,0.315425507,12.64483833,33.33512938,102020.375,3.898662567\n155.125,48.875,1999,7,368.9478776,0.574434102,6.148386955,32.88862062,101209.2734,1.713581085\n191.125,42.875,1999,7,392.2301703,0.251422673,13.67064476,32.89208812,102582.5156,5.509405136\n139.625,34.625,1999,7,308.2294876,0.429167151,24.33806419,33.84600374,100977.0313,1.39576149\n137.125,20.375,1999,7,332.1729337,0.031600211,29.23741913,34.84821904,100858.9453,3.963327885\n181.875,42.875,1999,7,358.3733687,0.295450199,12.7496767,33.33026707,102040.4766,4.054526329\n147.125,38.875,1999,7,304.0448378,0.148465022,21.73903084,33.70477152,101191.3047,2.89348793\n172.625,42.875,1999,7,372.2957567,0.324665347,12.34419346,33.37362224,101838.0547,2.674139977\n146.625,34.125,1999,7,362.3669284,0.092536874,25.79709625,34.49739969,101245.9219,4.235434532\n155.125,17.375,1999,8,358.8862899,0.067706548,28.82516098,34.82238233,101231.0156,4.4115448\n210.125,54.625,1999,8,378.9075223,0.435435981,11.94677353,32.28955626,101082.6641,3.65611124\n156.875,35.125,1999,8,387.3016716,0.094707236,26.57322502,34.20531768,101454.1875,1.852785587\n141.625,42.375,1999,8,328.1563269,0.413696736,21.69967651,33.28623803,101153.8906,2.560071707\n155.125,36.375,1999,8,373.9553425,0.077815451,26.66354752,34.276806,101476.8594,1.453302622\n152.375,37.875,1999,8,366.570434,0.082219325,26.24806404,34.26665628,101478.1094,1.23786962\n152.625,37.375,1999,8,353.0679926,0.095383011,26.51516151,34.28209984,101479.1484,1.272198319\n154.875,32.125,1999,8,355.5691962,0.075408906,27.41451645,34.22156936,101384.6094,1.877506733\n197.125,54.125,1999,8,281.1624545,0.746845782,9.823548317,32.36860663,100943.6094,3.373203278\n154.375,48.125,1999,8,322.0392021,0.536244154,8.447096825,32.7504136,101274.9844,1.929663181\n155.125,35.125,1999,8,376.2865789,0.096846186,27.16032219,34.29042393,101450.4219,1.919086218\n225.125,51.625,1999,8,327.4210126,0.306425601,12.56580639,32.5213204,101433.5391,2.84837389\n146.625,35.125,1999,8,361.5584796,0.103709236,27.61967659,34.39183074,101311.7422,2.76206255\n167.125,53.375,1999,8,266.7615261,0.382481396,9.211935043,32.94233721,100862.1094,2.276545286\n230.375,50.125,1999,8,302.5073154,1.512798429,14.40645123,31.74358997,101583.4141,1.937363863\n152.625,32.125,1999,8,378.0695157,0.060845371,27.60096741,34.30629361,101374.4375,1.997561574\n152.625,35.125,1999,8,378.0673192,0.128409833,27.22354698,34.41778606,101444.8438,2.127624035\n210.625,54.375,1999,8,382.4595645,0.403094977,11.67612934,32.35426873,101103.5313,3.779660702\n"
  },
  {
    "path": "data/co2_gtnnwr_predict.csv",
    "content": "﻿lon,lat,year,month,pCO2,Chl,Temp,Salt,pressure,windspeed\n137.125,24.125,2017,12,360.3644782,0.069610618,25.33290291,35.08836979,101694.8438,6.942487717\n158.625,24.125,2017,12,363.3236339,0.038444016,26.7003212,35.27006209,101648.3594,3.680241108\n139.625,34.625,2017,12,350.6549305,0.232888371,19.40999985,34.59415086,101675.5,6.144190788\n146.125,14.875,2017,12,384.5523636,0.027751578,29.06419373,34.62786102,101040.0625,7.528096199\n132.625,23.625,2017,12,361.5291526,0.087183975,26.06903076,34.95102084,101753.2344,8.035316467\n235.125,3.375,2017,12,393.5187284,0.14312391,25.67870903,34.71591496,101114.3438,7.089426994\n136.625,32.625,2017,12,332.0239535,0.262908638,18.86322594,34.69547558,101992.7344,6.255911827\n146.625,31.875,2017,12,340.7107161,0.170262173,20.9525795,34.85557908,101637.1094,4.741209507\n145.125,34.375,2017,12,337.9106307,0.1905808,20.70387077,34.72746843,101545.6719,4.393471718\n223.125,15.625,2017,12,385.4421553,0.063249685,26.44257927,34.11986077,101280.3906,6.82899189\n235.125,3.125,2017,12,390.8087289,0.141454712,25.65903091,34.71805453,101118.2813,7.123773575\n155.125,24.125,2017,12,366.0023884,0.036263641,27.25580597,35.19367456,101593.7969,3.28802824\n142.875,22.875,2017,12,378.0035414,0.0563206,26.11580658,34.90442044,101478.1094,6.069850445\n167.875,24.125,2017,12,356.2858872,0.041513536,25.66386986,35.40412551,101786.4922,4.661588669\n238.625,14.375,2017,12,376.2255019,0.098754846,27.2387085,33.6868096,101265.75,6.93921566\n147.125,39.375,2017,12,338.6203532,0.258557081,13.9393549,34.34861171,101332.2188,6.787261963\n142.375,25.375,2017,12,362.6927772,0.113986269,24.68806458,34.95639223,101673.9766,5.492742062\n145.125,33.125,2017,12,338.7587132,0.140975863,20.70548248,34.80599016,101599.2031,5.264705658\n182.625,21.875,2017,12,356.8777558,0.042749427,25.54645157,35.26803041,101723.5703,6.780557632\n156.375,24.375,2017,12,370.4792814,0.035669442,27.09032249,35.2368142,101620.2813,3.19272995\n152.375,24.125,2017,12,368.0701816,0.038992964,26.89225769,35.1623612,101556.6563,2.959062576\n"
  },
  {
    "path": "data/demo_data_gtnnwr.csv",
    "content": "refl_b01,refl_b02,refl_b03,refl_b04,refl_b05,refl_b07,proj_x,proj_y,day,SiO3\n1895,1251,1737,1872,543,280,736685.4179,3314205.295,113,1.049\n1621,1066,1435,1665,757,511,736685.4179,3314205.295,121,1.209\n1587,1141,1807,1864,1211,1024,736685.4179,3314205.295,152,1.102\n1121,1012,1411,1324,711,485,768193.4945,3402138.581,168,0.945\n913,203,840,1035,114,63,736685.4179,3314205.295,200,1.35\n1267,597,979,1325,456,390,736685.4179,3314205.295,228,1.238\n997,847,816,1092,310,138,736685.4179,3314205.295,250,1.258\n1147,438,596,1026,167,68,736685.4179,3314205.295,102,1.108\n1292,1072,1348,1634,1033,933,768193.4945,3402138.581,110,0.777\n1266,562,942,1214,260,147,724040.5281,3346205.396,113,1.375\n1490,923,1189,1448,468,274,736685.4179,3314205.295,115,1.083\n1033,1001,992,1174,508,250,736685.4179,3314205.295,127,0.749\n1315,663,1180,1364,297,123,736685.4179,3314205.295,228,1.38\n1616,846,1263,1546,389,336,736685.4179,3314205.295,295,1.351\n1355,811,1193,1423,343,171,736685.4179,3314205.295,247,1.304\n1103,513,866,1169,276,160,736685.4179,3314205.295,269,1.421\n1806,966,1768,1894,502,267,741438.4066,3314307.797,113,1.073\n97,128,58,504,809,1860,741438.4066,3314307.797,139,1.099\n1305,1143,1623,1555,952,743,767853.4267,3405004.928,168,0.873\n930,892,1139,1247,1941,1807,767853.4267,3405004.928,201,0.852\n21,12,165,212,282,187,767853.4267,3405004.928,218,0.934\n1087,552,1003,1316,470,414,741438.4066,3314307.797,228,1.11\n162,180,259,544,632,409,767853.4267,3405004.928,282,0.668\n952,248,602,1008,107,54,741438.4066,3314307.797,102,1\n1487,1097,1350,1690,990,886,767853.4267,3405004.928,110,0.75\n1131,435,1057,1293,272,161,724317.2997,3340208.79,113,1.887\n968,494,1088,1282,346,228,741438.4066,3314307.797,115,0.936\n1856,1368,1579,1845,951,422,724317.2997,3340208.79,125,0.824\n1057,688,1290,1427,556,250,741438.4066,3314307.797,127,0.754\n1182,508,1271,1393,247,107,741438.4066,3314307.797,228,1.426\n947,355,966,1179,222,107,741438.4066,3314307.797,248,1.376\n512,242,796,910,162,126,741438.4066,3314307.797,295,1.426\n403,213,544,703,174,114,741438.4066,3314307.797,205,1.323\n1080,403,1158,1332,201,80,741438.4066,3314307.797,247,1.363\n161,34,300,486,190,271,741438.4066,3314307.797,269,1.344\n896,650,1418,1425,1634,1145,741438.4066,3314307.797,283,1.544\n1766,927,1769,1890,493,256,743105.139,3310582.736,113,1.025\n841,475,918,1173,408,365,743105.139,3310582.736,228,1.194\n478,153,757,860,91,40,743105.139,3310582.736,250,1.209\n1156,533,581,1038,610,538,732167.2557,3346496.632,251,1.3\n963,243,655,1027,104,66,743105.139,3310582.736,102,1.056\n1269,934,1229,1571,991,886,765514.9175,3409997.113,110,0.916\n1208,479,1007,1265,275,159,732167.2557,3346496.632,113,1.493\n1010,466,1040,1249,308,189,743105.139,3310582.736,115,0.946\n1107,661,1305,1442,797,659,743103.6816,3310649.279,248,1.356\n360,44,305,642,24,84,743103.6816,3310649.279,247,1.338\n1707,890,1740,1864,472,254,742180.8287,3305968.918,113,1.088\n670,493,866,1026,451,404,742180.8287,3305968.918,228,1.184\n1495,797,1087,1470,636,568,732193.6794,3340239.373,251,1.282\n143,165,449,673,776,377,750124.8967,3413699.694,282,0.694\n842,199,679,1018,95,56,742180.8287,3305968.918,102,1.087\n1001,373,985,1216,236,144,732193.6794,3340239.373,113,1.932\n960,569,1105,1280,442,270,742180.8287,3305968.918,115,0.966\n1392,741,1304,1542,466,222,732193.6794,3340239.373,125,0.708\n289,17,373,629,0,96,742180.8287,3305968.918,228,1.375\n902,465,1033,1231,317,297,742180.8287,3305968.918,248,1.381\n167,5,339,521,65,173,742180.8287,3305968.918,269,1.46\n147,11,255,501,6,100,742180.8287,3305968.918,148,0.927\n1879,1463,1828,1920,704,430,735283.8788,3305543.46,113,1.103\n387,295,487,636,297,327,760685.3022,3400910.424,201,1.062\n1040,467,941,1252,445,381,735283.8788,3305543.46,228,1.184\n115,297,158,262,125,102,766127.8819,3410012.326,232,0.991\n884,321,725,1024,133,54,735283.8788,3305543.46,250,1.19\n700,643,741,877,588,534,760685.3022,3400910.424,251,0.729\n1031,672,1423,1404,446,224,735283.8788,3305543.46,259,1.052\n2637,1669,2529,2725,811,329,735283.8788,3305543.46,305,0.999\n1112,376,559,1016,147,73,735283.8788,3305543.46,102,1.072\n1460,1073,1391,1728,998,907,760685.3022,3400910.424,110,0.683\n1135,404,1001,1240,238,145,740764.5329,3345117.625,113,1.485\n1416,793,1259,1490,547,327,735283.8788,3305543.46,115,0.966\n1234,916,1396,1537,802,338,735283.8788,3305543.46,127,0.518\n259,43,306,564,30,47,735283.8788,3305543.46,214,0.651\n1102,522,1200,1331,274,133,735283.8788,3305543.46,228,1.406\n1218,507,850,1172,230,118,735283.8788,3305543.46,248,1.406\n1380,552,911,1264,227,151,735283.8788,3305543.46,295,1.267\n219,46,263,487,15,85,735283.8788,3305543.46,247,1.363\n1052,300,718,1058,191,102,735283.8788,3305543.46,269,1.438\n249,48,269,560,28,125,735283.8788,3305543.46,148,0.883\n1707,1561,1666,1785,640,303,735560.9789,3310264.746,113,1.059\n813,633,847,1001,161,126,735560.9789,3310264.746,200,1.374\n65,8,247,250,7,78,769342.0294,3397638.595,218,0.77\n400,90,84,487,11,107,735560.9789,3310264.746,223,1.085\n1063,532,962,1271,449,396,735560.9789,3310264.746,228,1.223\n13,29,118,170,110,62,758823.1007,3410510.351,232,0.955\n961,548,846,1068,152,56,735560.9789,3310264.746,250,1.272\n644,599,663,775,567,502,769342.0294,3397638.595,251,0.653\n1116,581,507,1000,156,76,735560.9789,3310264.746,102,1.072\n1169,1098,1225,1402,1035,943,769342.0294,3397638.595,110,0.802\n979,358,979,1202,232,141,740859.2357,3340803.298,113,1.523\n1333,765,1181,1410,517,288,735560.9789,3310264.746,115,0.895\n884,445,947,1124,235,121,740859.2357,3340803.298,125,0.723\n1047,664,992,1163,373,147,735560.9789,3310264.746,127,0.499\n667,773,403,741,86,49,735560.9789,3310264.746,214,0.67\n1337,699,1198,1356,255,99,735560.9789,3310264.746,228,1.421\n1317,838,949,1228,369,185,735560.9789,3310264.746,248,1.5\n1390,596,938,1254,202,127,735560.9789,3310264.746,295,1.351\n503,271,649,848,247,132,735560.9789,3310264.746,205,1.018\n1187,699,1108,1313,258,105,735560.9789,3310264.746,247,1.392\n1244,535,869,1191,281,158,735560.9789,3310264.746,269,1.322\n1099,1148,1076,1237,343,125,735560.9789,3310264.746,148,0.927\n677,254,705,946,134,54,722880.2095,3346403.626,188,1.454\n550,217,881,970,151,96,722880.2095,3346403.626,218,0.712\n1602,1151,1264,1504,545,266,722880.2095,3346403.626,125,0.799\n706,542,756,976,690,219,722136.7064,3347431.423,188,1.396\n214,263,300,575,99,184,722136.7064,3347431.423,218,0.849\n537,139,363,728,249,131,722136.7064,3347431.423,236,0.521\n1505,958,1073,1440,721,615,722136.7064,3347431.423,251,1.343\n1365,945,925,1222,326,180,722136.7064,3347431.423,113,1.455\n1577,1288,1239,1496,725,327,722136.7064,3347431.423,125,0.874\n1418,783,1230,1552,661,549,669531.0777,3167551.421,222,1.77\n897,775,602,973,417,133,617798.9375,3137196.796,215,0.689\n1451,875,1115,1386,530,327,600549.853,3098709.142,222,1.112\n1193,514,1253,1419,322,138,598258.9007,3091330.671,216,1.795\n1178,683,1494,1495,399,215,768193.4945,3402138.581,137,0.901\n2252,2252,2274,2178,1607,662,768193.4945,3402138.581,235,1.303\n865,671,1068,1132,486,269,768193.4945,3402138.581,107,1.109\n1278,753,1307,1421,448,248,768193.4945,3402138.581,127,1.641\n847,725,984,1134,670,576,768193.4945,3402138.581,138,1.2\n752,685,1097,1046,419,198,768193.4945,3402138.581,226,0.593\n1855,1222,2121,2137,737,382,768193.4945,3402138.581,284,0.652\n235,73,403,628,537,400,768193.4945,3402138.581,100,0.811\n991,859,1158,1300,731,620,768193.4945,3402138.581,175,0.753\n476,428,586,601,416,329,768193.4945,3402138.581,223,0.773\n849,142,614,926,75,54,768193.4945,3402138.581,297,0.727\n1473,1353,1836,1682,1178,499,767853.4267,3405004.928,235,1.267\n805,558,1020,1097,488,403,767853.4267,3405004.928,266,0.655\n1106,956,1259,1331,951,518,767853.4267,3405004.928,107,1.253\n1089,685,1310,1388,486,276,767853.4267,3405004.928,127,1.381\n1079,1071,1089,1233,1083,846,767853.4267,3405004.928,138,1.264\n950,818,1383,1372,866,309,767853.4267,3405004.928,185,1.376\n121,101,452,478,454,393,767853.4267,3405004.928,201,1.157\n705,647,1031,960,695,307,767853.4267,3405004.928,226,0.668\n722,399,972,1096,297,175,767853.4267,3405004.928,111,0.761\n420,298,507,629,107,230,767853.4267,3405004.928,225,0.848\n544,190,792,922,138,74,767853.4267,3405004.928,254,0.805\n548,209,790,959,587,331,767853.4267,3405004.928,301,0.794\n225,64,270,557,187,208,767853.4267,3405004.928,126,0.81\n1179,1120,1035,1281,1100,914,767853.4267,3405004.928,143,1.067\n696,979,705,876,829,1098,767853.4267,3405004.928,175,0.785\n181,38,715,723,338,342,767853.4267,3405004.928,192,0.821\n151,96,215,246,116,124,767853.4267,3405004.928,203,0.8\n661,567,810,887,592,485,767853.4267,3405004.928,223,0.819\n1567,1243,1997,1903,993,439,767853.4267,3405004.928,253,0.796\n148,1,289,524,53,168,767853.4267,3405004.928,271,0.825\n435,57,589,794,109,73,767853.4267,3405004.928,297,0.77\n1206,835,1348,1507,724,544,765514.9175,3409997.113,188,0.786\n613,423,767,884,503,186,765514.9175,3409997.113,200,0.941\n1058,553,1066,1287,693,567,765514.9175,3409997.113,266,0.756\n1143,874,1321,1412,504,271,765514.9175,3409997.113,127,1.436\n78,248,115,410,200,121,765514.9175,3409997.113,192,0.906\n52,9,51,223,16,179,765514.9175,3409997.113,225,0.805\n385,120,681,791,94,82,765514.9175,3409997.113,270,0.83\n1914,1175,1992,2060,658,365,765514.9175,3409997.113,284,0.59\n1245,1275,1091,1337,1164,1014,765514.9175,3409997.113,143,0.872\n274,141,352,628,62,156,765514.9175,3409997.113,271,0.802\n1286,701,1550,1568,413,227,750124.8967,3413699.694,137,1.024\n1170,808,1305,1425,461,253,750124.8967,3413699.694,127,1.097\n769,906,928,1084,881,603,750124.8967,3413699.694,138,1.042\n1045,480,999,1229,268,158,750124.8967,3413699.694,111,0.808\n440,307,581,700,59,153,750124.8967,3413699.694,270,0.811\n1081,990,1227,1373,1117,787,750124.8967,3413699.694,223,0.759\n606,278,832,984,201,152,750124.8967,3413699.694,271,0.784\n861,552,1144,1164,345,193,760685.3022,3400910.424,127,1.274\n962,912,990,1068,820,739,760685.3022,3400910.424,138,1.186\n220,5,354,623,4,73,760685.3022,3400910.424,254,0.819\n1790,1175,2158,2151,712,390,760685.3022,3400910.424,284,0.642\n1350,1121,1459,1587,990,926,769342.0294,3397638.595,266,0.687\n727,546,890,983,485,270,769342.0294,3397638.595,107,0.899\n969,618,1265,1290,395,219,769342.0294,3397638.595,127,1.069\n1151,1174,1117,1246,1155,1054,769342.0294,3397638.595,138,1.088\n722,516,1083,977,347,184,769342.0294,3397638.595,226,0.733\n228,3,409,647,5,136,769342.0294,3397638.595,298,0.62\n671,360,957,1054,248,159,769342.0294,3397638.595,111,0.723\n293,232,303,323,196,176,769342.0294,3397638.595,225,0.9\n1809,1211,2185,2171,722,399,769342.0294,3397638.595,284,0.624\n517,127,768,939,61,40,769342.0294,3397638.595,301,0.752\n575,354,894,950,11,211,769342.0294,3397638.595,100,0.825\n678,488,995,1015,447,233,769342.0294,3397638.595,126,0.745\n1094,1052,954,1120,998,900,769342.0294,3397638.595,143,0.91\n849,808,1051,1030,913,946,769342.0294,3397638.595,223,0.874\n140,0,240,463,1,7,769342.0294,3397638.595,297,0.737\n1303,547,848,1163,155,65,724041.2084,3346172.125,145,1.408\n1601,896,1433,1625,623,370,724041.2084,3346172.125,160,1.162\n804,305,875,1091,202,114,724041.2084,3346172.125,221,1.851\n1822,1162,2004,2063,630,228,724041.2084,3346172.125,251,1.111\n1774,840,1622,1811,339,125,724041.2084,3346172.125,281,1.654\n1354,516,892,1236,191,121,724041.2084,3346172.125,295,1.61\n1509,927,1035,1339,418,232,724041.2084,3346172.125,118,1.065\n996,305,644,1001,115,54,724041.2084,3346172.125,244,1.632\n1597,913,1705,1788,592,381,724041.2084,3346172.125,254,1.655\n991,467,1143,1275,7,120,724041.2084,3346172.125,148,1.235\n1385,964,1308,1531,693,381,724041.2084,3346172.125,185,1.245\n1136,384,496,956,97,67,724041.2084,3346172.125,199,0.773\n455,19,291,688,6,57,724041.2084,3346172.125,219,0.682\n1190,398,830,1177,166,110,724041.2084,3346172.125,254,1.232\n1018,267,676,1059,114,54,724041.2084,3346172.125,301,1.202\n1524,803,1359,1544,449,240,724041.2084,3346172.125,128,1.12\n1600,926,1646,1686,426,174,724041.2084,3346172.125,192,1.344\n1001,253,728,1040,104,62,724041.2084,3346172.125,218,1.624\n940,540,1134,1126,440,341,724041.2084,3346172.125,269,1.685\n1739,1040,1562,1741,685,398,724298.0257,3340208.397,160,1.217\n1254,643,853,1155,232,124,724298.0257,3340208.397,221,1.674\n1842,1114,2016,2080,611,226,724298.0257,3340208.397,251,1.12\n1786,850,1700,1876,353,137,724298.0257,3340208.397,281,1.808\n1437,706,764,1184,169,114,724298.0257,3340208.397,295,1.557\n1635,1153,1188,1452,672,525,724298.0257,3340208.397,97,0.878\n1722,1042,1307,1607,527,291,724298.0257,3340208.397,118,0.998\n1323,941,687,1053,122,53,724298.0257,3340208.397,244,1.518\n2250,1798,2021,2335,1722,1763,724298.0257,3340208.397,271,1.716\n870,218,912,1146,161,112,724298.0257,3340208.397,283,1.738\n1319,815,1175,1370,530,278,724298.0257,3340208.397,185,1.235\n1251,652,502,963,106,60,724298.0257,3340208.397,199,0.525\n624,242,938,1042,148,53,724298.0257,3340208.397,219,0.954\n885,258,893,1132,134,89,724298.0257,3340208.397,254,1.314\n765,294,1034,1177,15,81,724298.0257,3340208.397,267,1.299\n1274,837,1945,1859,1374,1226,724298.0257,3340208.397,283,1.256\n1049,264,607,1029,80,48,724298.0257,3340208.397,301,1.036\n1520,848,1261,1450,411,223,724298.0257,3340208.397,128,1.479\n1567,868,1560,1632,363,156,724298.0257,3340208.397,192,1.537\n1279,620,559,1019,114,63,724298.0257,3340208.397,218,1.624\n1355,774,757,1111,123,46,732138.8299,3346473.839,145,1.182\n1561,826,1367,1555,552,339,732138.8299,3346473.839,160,1.123\n1106,459,1011,1235,262,155,732138.8299,3346473.839,221,1.785\n1727,1066,1944,2002,11,208,732138.8299,3346473.839,251,1.154\n1427,702,1610,1729,7,124,732138.8299,3346473.839,281,1.788\n1533,847,801,1252,184,126,732138.8299,3346473.839,295,1.605\n1664,1007,1283,1579,729,558,732138.8299,3346473.839,97,0.996\n1063,596,950,1150,466,236,732138.8299,3346473.839,118,1.011\n933,245,627,979,106,51,732138.8299,3346473.839,244,1.556\n1151,404,496,963,93,60,732138.8299,3346473.839,199,0.593\n901,242,857,1109,117,82,732138.8299,3346473.839,254,1.183\n627,281,977,1063,186,94,732138.8299,3346473.839,267,1.028\n1068,263,599,1016,83,46,732138.8299,3346473.839,301,0.977\n1682,1150,1339,1552,474,257,732138.8299,3346473.839,128,1.364\n1173,442,611,1017,97,55,732138.8299,3346473.839,218,1.609\n1369,663,889,1196,166,70,732165.236,3340216.581,145,1.217\n1249,602,1291,1453,430,258,732165.236,3340216.581,160,1.158\n1107,430,1037,1265,274,160,732165.236,3340216.581,221,1.458\n1743,996,1929,1986,539,200,732165.236,3340216.581,251,1.012\n1115,371,1069,1319,285,249,732165.236,3340216.581,295,1.476\n1797,1080,1336,1666,749,624,732165.236,3340216.581,97,0.917\n1077,314,688,1037,106,52,732165.236,3340216.581,244,1.641\n1222,618,1482,1563,388,182,732165.236,3340216.581,254,1.712\n743,225,771,1011,163,110,732165.236,3340216.581,271,1.707\n760,236,935,1125,313,238,732165.236,3340216.581,283,1.714\n1366,784,733,1104,184,127,732165.236,3340216.581,97,1.428\n1053,265,630,995,92,65,732165.236,3340216.581,199,0.69\n149,1,285,539,0,57,732165.236,3340216.581,219,0.876\n633,184,831,1015,109,67,732165.236,3340216.581,254,1.275\n644,248,914,1035,163,71,732165.236,3340216.581,267,1.212\n851,283,1234,1259,190,91,732165.236,3340216.581,283,1.315\n712,141,659,974,63,33,732165.236,3340216.581,301,1.05\n1621,866,1459,1627,471,260,732165.236,3340216.581,128,1.439\n521,47,232,699,6,181,732165.236,3340216.581,192,1.643\n563,149,665,860,83,56,732165.236,3340216.581,218,1.767\n1492,815,1816,1790,488,254,732165.236,3340216.581,247,1.709\n1269,611,733,1065,112,46,740764.5329,3345117.625,145,1.298\n1399,661,1243,1421,407,251,740764.5329,3345117.625,160,1.122\n1224,588,1182,1390,400,248,740764.5329,3345117.625,221,1.627\n879,240,842,1123,144,105,740764.5329,3345117.625,295,1.514\n1298,824,1235,1494,694,591,740764.5329,3345117.625,97,0.947\n1354,738,1073,1317,497,274,740764.5329,3345117.625,118,0.927\n1275,761,1513,1584,465,357,740764.5329,3345117.625,254,1.618\n1052,772,1204,1344,513,587,740764.5329,3345117.625,271,1.608\n619,120,664,896,59,48,740764.5329,3345117.625,199,0.515\n92,1,242,426,4,61,740764.5329,3345117.625,219,0.609\n723,191,821,1037,100,69,740764.5329,3345117.625,254,1.295\n671,321,1035,1130,10,118,740764.5329,3345117.625,267,1.265\n1023,335,1056,1258,175,91,740764.5329,3345117.625,283,1.242\n975,223,616,1014,77,34,740764.5329,3345117.625,301,1.212\n1147,634,1148,1293,439,240,740764.5329,3345117.625,128,1.289\n330,12,192,612,6,132,740764.5329,3345117.625,247,1.724\n1140,347,772,1093,108,49,740859.2357,3340803.298,145,1.086\n1387,772,1384,1541,550,339,740859.2357,3340803.298,160,1.177\n1132,663,1272,1443,521,357,740859.2357,3340803.298,221,1.333\n801,230,878,1121,150,125,740859.2357,3340803.298,295,1.485\n1129,732,1142,1378,643,553,740859.2357,3340803.298,97,1.055\n995,429,1032,1284,304,195,740859.2357,3340803.298,118,1.154\n1466,944,1767,1838,830,463,740859.2357,3340803.298,130,1.162\n479,7,310,725,1,49,740859.2357,3340803.298,244,1.66\n964,479,1343,1358,280,116,740859.2357,3340803.298,254,1.646\n494,181,678,849,144,128,740859.2357,3340803.298,271,1.585\n1340,676,768,1123,194,140,740859.2357,3340803.298,97,1.433\n148,1,183,463,7,114,740859.2357,3340803.298,148,1.106\n899,252,1110,1234,161,72,740859.2357,3340803.298,283,1.433\n878,177,681,1015,73,29,740859.2357,3340803.298,301,1.198\n1398,796,1345,1523,660,355,740859.2357,3340803.298,128,1.389\n413,16,352,699,1,119,740859.2357,3340803.298,247,1.684\n899,425,840,1090,244,126,722851.315,3346403.038,221,1.78\n1820,924,1638,1821,356,122,722851.315,3346403.038,281,1.509\n1862,1448,1420,1674,924,624,722851.315,3346403.038,97,0.888\n1608,1104,1134,1443,546,291,722851.315,3346403.038,118,1.105\n1466,1214,791,1166,309,218,722851.315,3346403.038,97,1.473\n967,389,724,997,638,199,722851.315,3346403.038,199,0.807\n952,511,959,1137,184,138,722851.315,3346403.038,219,0.76\n1326,601,874,1197,199,114,722851.315,3346403.038,254,1.183\n1058,523,974,1178,11,92,722851.315,3346403.038,267,1.159\n1045,422,737,1052,196,97,722851.315,3346403.038,218,1.711\n1249,823,1195,1251,490,378,722851.315,3346403.038,269,1.57\n1402,829,956,1223,460,145,722108.4894,3347397.567,145,1.146\n1640,1147,1415,1592,833,374,722108.4894,3347397.567,160,1.082\n595,260,219,716,723,273,722108.4894,3347397.567,221,1.732\n1885,1484,1994,2048,1142,343,722108.4894,3347397.567,251,1.101\n1737,1044,1637,1783,507,185,722108.4894,3347397.567,281,1.697\n1756,1239,1200,1528,393,272,722108.4894,3347397.567,295,1.591\n1965,1537,1520,1784,1035,676,722108.4894,3347397.567,97,1.154\n1608,1117,1170,1464,669,340,722108.4894,3347397.567,118,0.898\n1262,674,808,1104,337,108,722108.4894,3347397.567,244,1.712\n1422,829,1056,1378,331,164,722108.4894,3347397.567,283,1.593\n1445,1104,818,1181,353,227,722108.4894,3347397.567,97,1.425\n965,403,674,979,356,132,722108.4894,3347397.567,199,0.578\n887,584,925,1107,850,259,722108.4894,3347397.567,219,0.779\n1208,566,916,1171,308,161,722108.4894,3347397.567,254,1.256\n1277,1018,976,1250,646,241,722108.4894,3347397.567,267,1.236\n1227,822,765,1126,280,153,722108.4894,3347397.567,301,1.114\n1646,1225,1451,1637,655,362,722108.4894,3347397.567,128,1.289\n1565,1145,1635,1667,568,226,722108.4894,3347397.567,192,1.45\n1116,607,753,1063,486,143,722108.4894,3347397.567,218,1.675\n1269,711,1188,1260,368,181,722108.4894,3347397.567,269,1.547\n1285,700,1111,1304,374,122,683165.2412,3283556.766,228,1.03\n1329,628,1151,1329,302,102,683165.2412,3283556.766,244,1.25\n2126,1206,2085,2243,592,240,683165.2412,3283556.766,290,1.48\n268,8,285,659,297,126,683165.2412,3283556.766,149,0.843\n1683,972,1667,1728,578,406,683165.2412,3283556.766,264,1.48\n2253,2204,2016,2464,2256,2083,683165.2412,3283556.766,154,0.793\n806,439,953,1172,356,275,683165.2412,3283556.766,168,1.14\n668,292,881,1088,209,151,683165.2412,3283556.766,197,0.91\n1198,445,803,1126,273,219,683165.2412,3283556.766,232,1.37\n950,347,934,1159,246,191,683165.2412,3283556.766,245,1.4\n1608,781,1407,1622,328,152,683165.2412,3283556.766,284,1.44\n1142,369,891,1144,197,148,683165.2412,3283556.766,289,1.51\n744,384,775,1066,319,282,683165.2412,3283556.766,203,1.28\n957,432,1193,1332,278,128,683165.2412,3283556.766,216,1.42\n772,343,932,952,305,135,683165.2412,3283556.766,244,1.84\n1429,1350,1649,1656,339,383,651388.5423,3267525.082,189,1.94\n1291,630,1318,1460,383,199,651388.5423,3267525.082,256,0.677\n1259,696,1406,1500,403,139,651388.5423,3267525.082,215,1.33\n511,557,659,840,162,251,651388.5423,3267525.082,149,0.726\n1143,586,933,1259,490,403,651388.5423,3267525.082,214,1.04\n1385,698,1520,1582,350,118,651388.5423,3267525.082,264,1.8\n1093,564,1315,1434,51,135,651388.5423,3267525.082,284,2.07\n512,368,693,855,338,259,651388.5423,3267525.082,100,1.01\n799,351,972,1131,226,107,651388.5423,3267525.082,244,2.14\n1336,775,1257,1424,438,168,651388.5423,3267525.082,286,2.2\n917,837,856,1106,1166,802,612954.1788,3083135.5,175,0.483\n1608,1914,1558,1815,2371,2048,612954.1788,3083135.5,188,0.666\n2505,3514,1643,2020,3297,3171,612954.1788,3083135.5,204,0.723\n510,465,526,638,446,208,612954.1788,3083135.5,234,0.465\n1092,759,1049,1192,708,464,612954.1788,3083135.5,264,0.9\n988,971,894,1101,776,452,612954.1788,3083135.5,229,0.872\n1398,1083,1585,1602,930,598,612954.1788,3083135.5,298,1.141\n1952,1570,2059,2077,1205,619,612954.1788,3083135.5,92,1.594\n897,719,802,1059,1185,835,612954.1788,3083135.5,170,0.572\n631,530,411,729,746,483,612954.1788,3083135.5,183,1.032\n1254,1120,886,1205,934,821,612954.1788,3083135.5,218,0.414\n1048,1375,523,974,709,487,612954.1788,3083135.5,253,0.88\n888,579,151,741,1017,554,612954.1788,3083135.5,283,1.492\n1477,1039,1251,1405,704,465,612954.1788,3083135.5,294,1.62\n601,821,292,731,933,714,612954.1788,3083135.5,128,1.211\n1698,1609,1945,1924,1695,1194,612954.1788,3083135.5,145,0.878\n1677,1548,1874,1865,1420,870,612954.1788,3083135.5,191,0.977\n1101,519,818,1084,329,280,612954.1788,3083135.5,267,0.542\n1388,1150,1286,1416,665,431,612954.1788,3083135.5,287,1.055\n991,1084,856,1070,541,449,612954.1788,3083135.5,292,1.477\n1521,2121,1456,1736,2254,1516,614287.8357,3083779.837,175,0.581\n2931,3044,2779,2960,2297,1838,614287.8357,3083779.837,188,0.519\n2005,2432,1633,2030,2511,2628,614287.8357,3083779.837,204,0.753\n1136,1519,965,1191,735,479,614287.8357,3083779.837,222,0.43\n1403,1779,1181,1428,599,368,614287.8357,3083779.837,264,0.914\n1174,1285,1316,1337,511,227,614287.8357,3083779.837,298,1.184\n1870,1505,1997,1998,1060,537,614287.8357,3083779.837,92,1.43\n1214,1914,1037,1405,1340,1101,614287.8357,3083779.837,170,0.595\n463,469,384,674,524,307,614287.8357,3083779.837,183,1.08\n1410,1237,949,1309,1647,1290,614287.8357,3083779.837,218,0.347\n1464,1245,1260,1409,574,325,614287.8357,3083779.837,294,1.595\n1885,1787,2210,2229,2144,1899,614287.8357,3083779.837,145,0.953\n1395,1551,1640,1654,902,648,614287.8357,3083779.837,191,1.064\n932,562,776,1030,213,153,614287.8357,3083779.837,267,0.45\n360,58,125,570,316,336,614287.8357,3083779.837,292,1.512\n1631,1692,1654,1833,1213,950,616040.5049,3084882.797,175,0.634\n2245,2038,2414,2562,2458,1958,616040.5049,3084882.797,188,0.377\n1496,1570,1393,1637,1860,1849,616040.5049,3084882.797,204,0.723\n1040,591,1061,1293,470,356,616040.5049,3084882.797,222,0.438\n1026,415,1023,1222,255,134,616040.5049,3084882.797,264,0.8745\n1340,644,1442,1580,523,235,616040.5049,3084882.797,298,1.1315\n1469,1350,1267,1587,1521,1164,616040.5049,3084882.797,170,0.5495\n208,297,104,458,41,73,616040.5049,3084882.797,183,0.9855\n1688,1155,1173,1474,573,467,616040.5049,3084882.797,236,0.707\n1443,822,1174,1367,351,141,616040.5049,3084882.797,294,1.5255\n2280,2277,2311,2412,1843,1332,616040.5049,3084882.797,145,0.897\n891,222,751,1021,11,51,616040.5049,3084882.797,267,0.5375\n840,252,821,1050,194,128,616040.5049,3084882.797,292,1.519\n1611,1711,1556,1755,1348,813,616281.7908,3084375.251,175,0.619\n1480,1820,1321,1571,2216,1517,616281.7908,3084375.251,204,0.677\n906,521,992,1188,633,396,616281.7908,3084375.251,222,0.407\n865,498,890,1021,774,279,616281.7908,3084375.251,264,0.82\n1340,644,1442,1580,523,235,616281.7908,3084375.251,298,1.011\n1469,1350,1267,1587,1521,1164,616281.7908,3084375.251,170,0.572\n236,177,201,495,113,114,616281.7908,3084375.251,183,1.029\n1688,1155,1173,1474,573,467,616281.7908,3084375.251,236,0.646\n1363,1127,1146,1305,1419,512,616281.7908,3084375.251,294,1.508\n2194,2101,2387,2417,1911,1596,616281.7908,3084375.251,145,0.844\n692,290,415,773,1004,321,616281.7908,3084375.251,267,0.549\n622,541,737,917,1130,397,616281.7908,3084375.251,292,1.42\n1753,1121,1552,1765,964,946,701261.813,3235552.101,131,0.953\n1792,1215,1157,1632,606,396,701261.813,3235552.101,329,1.296\n1188,740,1228,1393,461,234,647110.7312,3264607.659,133,0.281\n1329,1041,917,1205,643,399,647110.7312,3264607.659,232,1.382\n1143,897,1204,1326,495,157,615919.0127,3133886.026,215,0.185\n1067,577,1039,1309,533,450,550382.3166,3004908.429,213,0.294\n1246,1060,879,1162,752,359,572447.6146,3101432.532,214,5.337\n1402,1773,898,1185,1750,1140,556544.5334,3078506.203,213,5.102\n1225,1992,1310,1320,1606,843,611389.6047,3192283.148,215,6.7\n1044,2253,1246,1237,2129,1345,624694.0536,3173118.033,215,5.463\n1226,2176,1164,1260,1825,1361,550195.4369,3050740.202,213,6.815\n1339,1143,1201,1448,281,219,566718.5172,3043283.466,297,1.219\n1573,962,1424,1628,857,772,566718.5172,3043283.466,72,1.074\n241,7,229,597,7,72,555590.9313,3017142.116,129,0.644\n1128,352,733,1080,145,88,555590.9313,3017142.116,298,1.016\n2084,1774,2271,2386,1462,1287,555590.9313,3017142.116,129,0.489\n820,272,890,1120,182,98,553081.054,3008942.094,129,0.633\n1178,411,717,1084,179,115,553081.054,3008942.094,298,0.979\n1603,1004,1442,1647,731,373,553081.054,3008942.094,73,1.062\n121,2,356,504,8,144,585080.0587,2995677.788,70,0.723\n63,11,248,273,18,153,585080.0587,2995677.788,124,0.232\n959,298,852,1107,174,72,553494.3884,3011902.54,129,0.65\n1202,458,667,1055,141,91,553494.3884,3011902.54,298,1.119\n1528,912,1498,1694,705,529,553494.3884,3011902.54,129,0.441\n320,117,599,748,79,26,553494.3884,3011902.54,218,0.056\n1581,646,1375,1652,274,146,584942.7986,3034463.822,297,0.972\n717,144,652,907,297,116,603236.7097,3059330.024,219,0.3668\n1419,509,966,1323,216,118,603236.7097,3059330.024,309,1.6156\n796,359,791,1043,274,226,578432.6896,3053448.777,215,0.753\n899,217,756,1050,102,44,578432.6896,3053448.777,226,0.728\n1662,1002,1198,1530,707,606,578432.6896,3053448.777,218,0.1652\n1296,789,1313,1448,795,855,578432.6896,3053448.777,310,1.302\n1578,924,1335,1483,255,91,686066.6081,3414113.046,237,2.705\n1065,276,943,1179,115,49,700476.3163,3254149.481,231,1.456\n1470,1111,706,1157,195,75,629736.8902,3365230.82,232,3.115\n1038,361,780,1076,226,179,709585.9446,3303587.373,237,0.753\n699,177,678,914,129,96,709585.9446,3303587.373,211,1.253\n1605,1100,1431,1674,750,707,709585.9446,3303587.373,232,0.948\n591,267,615,852,628,486,651961.7527,3263130.633,236,0.551\n1048,1359,285,815,1730,1102,651961.7527,3263130.633,143,0.569\n401,160,546,697,593,368,651961.7527,3263130.633,211,1.108\n852,617,734,1019,933,456,651961.7527,3263130.633,133,0.453\n1375,775,1176,1461,2026,1074,651961.7527,3263130.633,232,1.301\n801,179,566,895,62,27,696520.5477,3273800.57,236,1.035\n1891,1275,1469,1763,958,855,696520.5477,3273800.57,143,0.881\n702,140,659,938,75,51,696520.5477,3273800.57,210,1.107\n1613,817,1275,1518,378,205,696520.5477,3273800.57,133,1.039\n964,653,1050,1197,205,85,666500.8263,3274669.099,228,0.732\n1944,1272,2017,2139,657,297,666500.8263,3274669.099,290,1.55\n2527,2290,2334,2402,1136,799,666500.8263,3274669.099,101,1.91\n269,328,304,603,108,193,666500.8263,3274669.099,149,0.641\n1512,907,1514,1608,539,311,666500.8263,3274669.099,264,1.52\n246,7,266,600,4,115,666500.8263,3274669.099,213,1.01\n818,342,796,1029,283,180,666500.8263,3274669.099,245,1.35\n1590,1111,1779,1852,131,282,666500.8263,3274669.099,284,1.61\n659,396,690,959,364,268,666500.8263,3274669.099,203,1.43\n1497,1184,1552,1622,1422,838,666500.8263,3274669.099,244,2.02\n1370,945,1126,1354,474,194,666500.8263,3274669.099,286,1.94\n1081,828,1547,1511,768,352,663374.6203,3269666.313,189,1.51\n1502,1499,1284,1655,1207,1265,663374.6203,3269666.313,201,1.73\n1449,786,1377,1541,566,296,663374.6203,3269666.313,256,0.684\n707,778,566,997,1415,585,663374.6203,3269666.313,116,0.839\n879,379,673,993,396,238,663374.6203,3269666.313,138,1.17\n1117,798,1307,1350,600,253,663374.6203,3269666.313,215,0.987\n618,377,532,858,1197,332,663374.6203,3269666.313,228,0.835\n1621,1259,1884,1782,779,239,663374.6203,3269666.313,244,1.12\n2609,2647,3363,3201,3007,2397,663374.6203,3269666.313,264,1.25\n1696,1092,1872,1938,750,270,663374.6203,3269666.313,290,1.58\n1310,624,1004,1346,575,387,663374.6203,3269666.313,214,1.34\n1061,1071,1329,1306,1201,708,663374.6203,3269666.313,229,0.639\n1441,922,1514,1560,448,311,663374.6203,3269666.313,264,1.4\n1616,1203,1540,1695,888,563,663374.6203,3269666.313,99,1.05\n2079,1993,1818,2261,1978,1741,663374.6203,3269666.313,154,0.796\n866,670,978,1210,575,430,663374.6203,3269666.313,168,1.26\n1286,548,927,1234,437,340,663374.6203,3269666.313,232,1.1\n685,309,755,960,454,250,663374.6203,3269666.313,245,1.21\n1039,1122,1122,1270,955,572,663374.6203,3269666.313,100,0.982\n1453,1494,1448,1661,1621,1521,663374.6203,3269666.313,141,0.774\n365,394,586,633,250,208,663374.6203,3269666.313,160,0.814\n662,526,663,861,498,384,663374.6203,3269666.313,203,1.41\n1212,762,817,1142,528,224,663374.6203,3269666.313,286,1.99\n1197,883,1470,1479,993,520,648944.2369,3260928.196,264,1.47\n1318,1072,1502,1598,483,214,648944.2369,3260928.196,290,1.79\n1177,705,938,1247,781,557,648944.2369,3260928.196,214,1.57\n1482,859,1608,1681,720,421,648944.2369,3260928.196,264,1.86\n1476,1338,1478,1598,974,578,648944.2369,3260928.196,99,1.09\n657,636,523,835,1021,424,648944.2369,3260928.196,141,0.483\n638,894,438,724,779,427,648944.2369,3260928.196,183,1.91\n808,516,829,994,698,439,648944.2369,3260928.196,213,1.31\n1376,749,1032,1335,603,415,648944.2369,3260928.196,232,1.58\n1197,884,991,1234,1307,858,648944.2369,3260928.196,245,1.71\n1093,602,1183,1318,289,129,648944.2369,3260928.196,284,2.4\n846,747,897,1115,773,569,648944.2369,3260928.196,100,1.19\n1036,1056,1233,1276,1075,476,648944.2369,3260928.196,160,1.19\n1826,1759,1685,1923,2867,2343,648944.2369,3260928.196,203,1.93\n1090,751,1326,1430,772,514,648944.2369,3260928.196,216,1.53\n1085,746,862,1168,522,224,648944.2369,3260928.196,286,2.35\n771,643,779,1016,910,556,616291.5334,3084386.429,144,1.912\n1002,1196,1025,1240,1593,674,616291.5334,3084386.429,229,0.608\n732,749,731,913,213,162,616291.5334,3084386.429,186,0.788\n1518,1606,1112,1367,1180,633,554460.8548,3030878.015,213,0.227\n1431,1250,1899,1847,1437,697,668152.9291,3272442.49,189,1.46\n1381,637,980,1339,522,439,668152.9291,3272442.49,251,0.86\n678,740,548,974,805,322,668152.9291,3272442.49,116,0.807\n1604,1094,1696,1727,738,265,668152.9291,3272442.49,137,0.647\n1678,1862,2021,1963,1231,727,670765.7849,3270851.643,189,1.5\n1201,1703,1203,1424,1378,895,670765.7849,3270851.643,201,1.58\n836,775,773,989,775,541,670765.7849,3270851.643,251,0.954\n852,1898,645,1056,1061,577,670765.7849,3270851.643,116,0.849\n1010,843,721,1026,564,241,670765.7849,3270851.643,137,0.661\n677,1767,526,824,1012,363,670765.7849,3270851.643,215,0.995\n611,1946,469,797,1285,425,670765.7849,3270851.643,228,0.811\n1603,1047,1684,1796,616,281,670765.7849,3270851.643,290,1.57\n1523,1399,1534,1602,869,472,670765.7849,3270851.643,101,1.6\n880,1321,755,1020,764,403,670765.7849,3270851.643,229,1.16\n905,1439,618,927,996,615,670765.7849,3270851.643,264,1.43\n314,275,309,563,212,116,670765.7849,3270851.643,141,0.595\n261,993,89,452,501,320,670765.7849,3270851.643,183,1.45\n334,289,168,536,1559,769,670765.7849,3270851.643,213,1.11\n872,524,757,1001,367,221,670765.7849,3270851.643,245,1.19\n795,450,629,947,255,129,670765.7849,3270851.643,284,1.7\n897,1321,779,995,543,295,670765.7849,3270851.643,289,1.85\n936,1073,978,1104,795,374,670765.7849,3270851.643,100,0.983\n428,1409,290,600,760,525,670765.7849,3270851.643,160,0.986\n648,424,683,923,401,291,670765.7849,3270851.643,203,1.48\n3250,3618,2707,2994,2520,1959,670765.7849,3270851.643,216,1.46\n1213,1131,1355,1507,1443,978,670765.7849,3270851.643,244,1.83\n1036,1778,728,1078,653,289,670765.7849,3270851.643,286,1.99\n1805,1999,1531,1888,2212,1676,646632.5275,3266320.119,201,2\n894,416,774,1043,455,219,646632.5275,3266320.119,138,0.665\n1008,1015,826,1087,526,382,612944.2249,3083146.491,144,1.77\n2231,2140,2018,2362,2298,1951,612944.2249,3083146.491,229,0.757\n632,606,672,759,520,250,612944.2249,3083146.491,234,0.465\n1091,736,871,1091,929,467,612944.2249,3083146.491,186,0.823\n1014,903,897,1191,1458,1023,614277.9859,3083779.744,144,1.619\n1961,2187,1631,1922,1584,1108,614277.9859,3083779.744,229,0.643\n2007,2180,1582,2034,1816,1539,614277.9859,3083779.744,143,0.648\n1022,649,878,1127,921,405,614277.9859,3083779.744,186,0.866\n890,659,870,1142,641,542,616040.2917,3084904.963,144,1.6335\n1034,612,1139,1317,694,389,616040.2917,3084904.963,229,0.617\n1629,1327,1402,1801,1264,1105,616040.2917,3084904.963,143,0.6465\n727,305,796,997,213,162,616040.2917,3084904.963,186,0.7485\n843,661,879,1111,671,596,617053.0092,3085092.09,144,1.598\n1254,880,1313,1535,713,500,617053.0092,3085092.09,229,0.394\n1516,1583,1430,1702,1777,1819,617053.0092,3085092.09,204,0.594\n966,495,1024,1248,435,332,617053.0092,3085092.09,222,0.454\n569,232,754,916,162,135,617053.0092,3085092.09,186,0.717\n549,212,725,877,127,79,617053.0092,3085092.09,229,0.821\n1564,1464,1353,1678,1358,1183,617053.0092,3085092.09,170,0.67\n236,177,201,495,113,114,617053.0092,3085092.09,183,0.924\n1519,895,965,1280,395,341,617053.0092,3085092.09,236,0.611\n768,147,554,893,71,29,617053.0092,3085092.09,253,0.956\n750,332,695,930,119,38,617053.0092,3085092.09,283,1.188\n1468,827,1168,1375,290,127,617053.0092,3085092.09,294,1.54\n2104,1929,2246,2272,1726,1264,617053.0092,3085092.09,145,0.934\n1203,719,1528,1558,431,267,617053.0092,3085092.09,191,0.965\n861,184,723,988,85,42,617053.0092,3085092.09,267,0.512\n1478,642,1276,1475,217,116,617053.0092,3085092.09,287,1.031\n808,250,833,1059,154,113,617053.0092,3085092.09,292,1.434\n974,554,907,1076,1253,874,604659.9271,3080832.959,283,0.984\n733,125,615,949,49,25,604659.9271,3080832.959,70,0.98\n700,200,734,998,107,73,604659.9271,3080832.959,130,0.662\n1467,835,1648,1726,520,187,604659.9271,3080832.959,213,0.409\n1539,845,1337,1489,324,159,604659.9271,3080832.959,281,0.675\n969,292,936,1217,177,137,597430.5269,3074421.788,283,0.815\n427,1,402,784,28,15,597430.5269,3074421.788,70,1.713\n575,176,958,1059,96,51,597430.5269,3074421.788,124,0.536\n1421,708,1040,1312,244,100,597430.5269,3074421.788,281,0.818\n1738,863,1334,1659,282,139,615118.2162,3076228.446,297,1.689\n730,88,610,938,40,11,615118.2162,3076228.446,70,0.941\n282,23,456,701,19,95,615118.2162,3076228.446,128,0.453\n1309,567,1108,1310,253,117,615118.2162,3076228.446,281,0.684\n1678,763,1340,1654,280,144,614183.4576,3072916.601,297,1.32\n760,87,565,921,33,17,614183.4576,3072916.601,70,0.951\n1207,594,1008,1253,218,110,614183.4576,3072916.601,281,0.53\n1644,679,1305,1631,260,132,620682.6829,3073733.279,297,1.483\n380,47,564,795,21,11,620682.6829,3073733.279,70,0.954\n1144,405,1039,1266,189,96,620682.6829,3073733.279,281,0.423\n545,352,651,841,357,166,615731.599,3089357.815,130,0.718\n1683,1046,1444,1608,394,187,615731.599,3089357.815,281,0.842\n648,227,751,993,168,149,629786.6201,3084402.065,284,0.831\n400,53,583,804,20,16,629786.6201,3084402.065,70,0.995\n769,207,728,1015,118,72,629786.6201,3084402.065,130,0.584\n1463,872,1010,1313,237,113,629786.6201,3084402.065,281,1.63\n1382,719,980,1246,159,66,682013.699,3390027.796,237,2.792\n550,393,687,673,316,248,759838.882,3434076.552,213,0.901\n55,1,192,244,2,44,778055.5617,3416087.84,216,0.839\n45,1,161,207,2,43,793965.3861,3416546.922,216,0.955\n28,1,47,90,5,19,780964.8705,3383526.996,223,0.522\n578,175,581,805,112,56,711009.2956,3262316.12,228,1.707\n42,1,226,176,1,59,753376.109,3230232.987,222,0.379\n637,172,326,707,135,63,683961.046,3152123.113,209,1.01\n233,42,17,453,148,225,683961.046,3152123.113,218,0.277\n366,26,236,624,285,83,682324.3811,3148981.753,209,1.15\n531,933,240,595,1439,463,685787.3022,3150643.729,209,1.06\n476,167,289,660,48,27,686141.1651,3152434.62,209,1.14\n267,133,118,507,22,188,686141.1651,3152434.62,218,0.697\n809,186,603,899,41,28,684767.0498,3151337.352,209,1.05\n1418,918,1494,1587,358,251,683960.8727,3152134.199,265,1.04\n1142,464,1011,1247,265,161,683960.8727,3152134.199,102,1.02\n821,389,778,975,390,272,683960.8727,3152134.199,186,0.645\n916,384,580,920,98,59,683960.8727,3152134.199,233,0.505\n1153,722,517,984,167,78,683960.8727,3152134.199,283,0.237\n1236,525,924,1203,211,100,683960.8727,3152134.199,288,1.245\n1068,544,1382,1445,212,245,682334.008,3148992.991,230,1.15\n1624,1052,1705,1837,663,403,682334.008,3148992.991,265,0.91\n889,395,1022,1208,288,192,682334.008,3148992.991,102,0.934\n1010,633,1344,1436,585,284,682334.008,3148992.991,114,0.712\n476,202,519,797,825,243,682334.008,3148992.991,233,0.467\n1336,872,1734,1735,1172,546,682334.008,3148992.991,284,0.798\n509,180,777,922,149,98,682334.008,3148992.991,213,0.335\n964,239,371,853,538,154,682334.008,3148992.991,283,0.239\n1161,375,1011,1234,166,95,682334.008,3148992.991,288,1.238\n1033,1108,1096,1204,1560,580,685777.33,3150654.661,265,0.91\n961,478,1012,1192,613,471,685777.33,3150654.661,102,0.851\n1154,1028,1426,1432,1018,485,685777.33,3150654.661,284,0.705\n519,236,740,904,465,261,685777.33,3150654.661,213,0.7\n1118,341,836,1108,548,284,685777.33,3150654.661,283,0.241\n1150,518,896,1176,1079,557,685777.33,3150654.661,288,1.166\n1219,475,1273,1437,257,179,686121.7489,3152423.224,265,0.77\n938,408,1029,1218,266,158,686121.7489,3152423.224,102,0.985\n1217,745,1374,1502,417,233,686121.7489,3152423.224,114,0.591\n2274,2145,2057,2330,1641,1451,686121.7489,3152423.224,186,0.348\n991,351,712,1029,232,165,686121.7489,3152423.224,233,0.549\n522,223,799,921,165,137,686121.7489,3152423.224,213,0.579\n1008,429,524,967,64,41,686121.7489,3152423.224,283,0.236\n1209,489,821,1143,159,89,686121.7489,3152423.224,288,1.238\n1215,562,1367,1462,313,135,684777.1945,3151315.334,230,1.15\n1211,452,1304,1458,273,180,684777.1945,3151315.334,265,0.95\n1090,446,1006,1224,237,139,684777.1945,3151315.334,102,0.991\n1122,581,1319,1463,533,360,684777.1945,3151315.334,114,0.559\n1187,812,1086,1293,746,658,684777.1945,3151315.334,186,0.335\n832,185,556,877,59,59,684777.1945,3151315.334,233,0.391\n502,193,775,907,159,120,684777.1945,3151315.334,213,0.673\n1220,512,841,1121,66,43,684777.1945,3151315.334,283,0.224\n1126,387,938,1186,173,85,684777.1945,3151315.334,288,1.192\n1154,471,1328,1457,264,166,682872.0372,3150320.872,265,0.91\n1130,454,1007,1235,255,167,682872.0372,3150320.872,102,0.915\n1089,671,1363,1472,559,303,682872.0372,3150320.872,114,0.571\n526,41,424,759,301,112,682872.0372,3150320.872,233,0.556\n1171,629,1617,1614,372,189,682872.0372,3150320.872,284,0.776\n1186,497,546,996,84,41,682872.0372,3150320.872,283,0.222\n521,89,481,792,25,33,682872.0372,3150320.872,209,1\n1125,376,870,1162,137,86,682872.0372,3150320.872,288,1.199\n1598,879,1314,1622,693,577,671427.4344,3182980.669,222,0.722\n130,4,247,456,7,43,675237.2989,3145769.543,214,0.143\n1135,600,864,1166,431,475,583851.1882,3093682.137,70,2.62\n1351,1220,1172,1330,933,506,583851.1882,3093682.137,124,2.29\n1478,1844,895,1274,886,329,583851.1882,3093682.137,282,0.873\n989,241,729,1066,82,53,586192.786,3092401.96,70,2.706\n1198,898,1017,1186,502,298,586192.786,3092401.96,124,2.01\n1637,1787,1035,1411,644,274,586192.786,3092401.96,282,0.734\n937,154,660,1032,70,32,590524.2589,3088377.293,70,2.493\n749,381,740,978,662,274,609850.0887,3113355.247,227,1.7388\n1536,826,1007,1331,357,281,594836.244,3074645.033,225,0.7336\n1059,489,948,1190,333,255,567049.1149,3049679.57,215,0.938\n714,353,698,966,267,228,573042.6827,3046644.143,215,0.672\n1139,410,650,1024,108,38,573042.6827,3046644.143,226,0.2672\n1218,1119,1251,1505,1139,1045,683184.2475,3283579.258,201,1.48\n1608,915,1037,1445,596,498,683184.2475,3283579.258,251,0.528\n996,704,1117,1311,499,244,683184.2475,3283579.258,116,0.963\n1844,1239,1727,1792,528,270,683184.2475,3283579.258,137,0.739\n894,1201,870,1192,679,268,666529.9004,3274669.53,116,0.852\n1651,1088,1711,1752,603,281,666529.9004,3274669.53,137,0.657\n1140,973,1411,1345,860,400,648943.7985,3260961.455,189,1.79\n667,357,781,933,197,74,648943.7985,3260961.455,215,1.83\n1208,639,1243,1401,421,240,648943.7985,3260961.455,256,0.727\n955,1467,897,1189,1340,601,648943.7985,3260961.455,116,0.85\n898,547,711,970,523,234,648943.7985,3260961.455,138,0.729\n1057,1025,1400,1309,924,390,648174.4653,3259687.276,189,2.12\n450,353,297,651,275,104,648174.4653,3259687.276,215,2.04\n1105,961,1179,1329,458,222,648174.4653,3259687.276,256,0.806\n933,1522,813,1144,1621,755,648174.4653,3259687.276,116,0.844\n832,1701,677,960,590,284,648174.4653,3259687.276,138,0.731\n1318,1170,1652,1652,1238,765,646603.8664,3266286.482,264,1.44\n1389,804,1518,1589,469,194,646603.8664,3266286.482,264,1.61\n1383,1128,1496,1598,972,604,646603.8664,3266286.482,99,1.05\n685,474,814,1000,270,127,646603.8664,3266286.482,141,0.548\n672,558,746,938,349,164,646603.8664,3266286.482,183,1.64\n2624,2626,2461,2513,1804,1398,646603.8664,3266286.482,232,1.22\n1020,571,1272,1369,30,190,646603.8664,3266286.482,284,2.32\n604,590,678,858,668,361,646603.8664,3266286.482,100,1.09\n1728,2014,1764,1921,2106,2036,646603.8664,3266286.482,141,0.915\n366,721,70,389,1068,605,646603.8664,3266286.482,203,1.62\n1041,887,1194,1201,571,261,646603.8664,3266286.482,216,1.83\n1035,1594,927,1129,1116,396,648145.7904,3259653.636,228,1.73\n1609,1686,1720,1828,2008,1175,648145.7904,3259653.636,264,1.2\n1314,1179,1494,1588,474,213,648145.7904,3259653.636,290,1.82\n1350,971,1462,1533,989,621,648145.7904,3259653.636,264,2.02\n1079,1135,853,1160,988,599,648145.7904,3259653.636,99,1.07\n771,897,590,878,360,144,648145.7904,3259653.636,141,0.714\n576,1204,394,673,631,315,648145.7904,3259653.636,183,1.86\n1344,948,1076,1378,1117,734,648145.7904,3259653.636,232,1.69\n978,1161,875,1077,762,419,648145.7904,3259653.636,245,2.05\n991,1107,1078,1214,453,175,648145.7904,3259653.636,284,2.38\n881,1246,862,1089,818,581,648145.7904,3259653.636,100,1.2\n903,1171,1068,1198,595,315,648145.7904,3259653.636,216,1.61\n987,1038,825,1128,443,152,648145.7904,3259653.636,286,2.36\n623,365,487,844,904,200,668124.346,3272408.794,228,0.704\n1325,1157,1578,1489,1325,327,668124.346,3272408.794,244,1.15\n1747,1104,1873,1959,816,255,668124.346,3272408.794,290,1.54\n1624,1137,1665,1703,827,430,668124.346,3272408.794,101,1.38\n3182,3547,3219,3468,4506,3338,668124.346,3272408.794,149,0.545\n1248,584,1015,1333,468,366,668124.346,3272408.794,214,1.41\n1049,768,1089,1328,821,401,668124.346,3272408.794,229,0.947\n1464,809,1468,1567,518,329,668124.346,3272408.794,264,1.43\n1687,1182,1554,1724,873,575,668124.346,3272408.794,99,1.05\n181,102,253,492,98,81,668124.346,3272408.794,141,0.455\n173,205,134,478,855,246,668124.346,3272408.794,183,1.43\n3541,3508,3590,3951,3874,2354,668124.346,3272408.794,232,1.33\n1162,670,1459,1521,363,143,668124.346,3272408.794,284,1.66\n907,341,851,1059,254,168,668124.346,3272408.794,289,1.87\n1311,1048,1783,1909,1587,1119,668124.346,3272408.794,216,1.57\n1240,651,820,1159,383,135,668124.346,3272408.794,286,1.96\n1412,1692,1360,1501,2202,1570,674105.0886,3283135.11,281,1.55\n1065,978,1079,1313,640,279,674105.0886,3283135.11,116,0.947\n733,475,761,1070,310,210,674105.0886,3283135.11,215,0.779\n1502,1249,1617,1593,507,185,674105.0886,3283135.11,244,1.18\n273,26,232,648,23,150,674105.0886,3283135.11,149,0.701\n1689,966,1571,1680,503,298,674105.0886,3283135.11,264,1.78\n478,289,715,871,265,192,674105.0886,3283135.11,197,1.02\n1095,650,1115,1331,363,271,674105.0886,3283135.11,245,1.16\n1530,800,1593,1713,415,167,674105.0886,3283135.11,284,1.55\n1087,387,926,1152,254,161,674105.0886,3283135.11,289,1.67\n752,410,779,1076,369,304,674105.0886,3283135.11,203,1.34\n1312,727,620,1178,759,962,686409.553,3292327.805,201,1.5\n1477,852,1677,1733,125,213,686409.553,3292327.805,215,1.36\n1627,949,815,1332,663,612,686409.553,3292327.805,251,0.532\n1391,805,1022,1287,618,262,686409.553,3292327.805,281,1.53\n1336,712,1326,1485,501,356,686409.553,3292327.805,215,0.825\n1384,865,1216,1377,396,157,686409.553,3292327.805,228,1.13\n1436,743,1258,1339,320,157,686409.553,3292327.805,264,1.49\n1926,1001,1791,1993,469,203,686409.553,3292327.805,290,1.4\n1726,970,1718,1786,594,387,686409.553,3292327.805,264,1.47\n1064,344,665,1003,145,59,686409.553,3292327.805,141,0.793\n1202,478,998,1254,328,215,686409.553,3292327.805,168,1.09\n1201,511,976,1208,294,153,686409.553,3292327.805,183,1.29\n1225,457,989,1272,272,190,686409.553,3292327.805,197,0.93\n1056,404,1054,1261,263,173,686409.553,3292327.805,213,0.917\n1135,386,784,1106,219,169,686409.553,3292327.805,232,0.792\n1206,399,904,1189,221,163,686409.553,3292327.805,245,1.18\n1804,1123,1528,1714,411,226,686409.553,3292327.805,284,1.43\n1252,517,724,1101,266,212,686409.553,3292327.805,203,1.3\n1261,526,1187,1388,301,160,686409.553,3292327.805,216,1.89\n1108,3002,985,1290,3511,1422,604102.1683,3096345.316,283,1.874\n417,7,384,715,92,47,716700.0015,3340754.756,234,1.311\n876,225,708,1003,108,54,716700.0015,3340754.756,148,1.215\n1165,427,1118,1286,215,95,716700.0015,3340754.756,226,1.332\n1428,899,1205,1468,697,560,716700.0015,3340754.756,148,1.066\n982,309,816,1075,155,64,609192.6789,3385607.244,217,2.059\n1522,959,1165,1473,632,537,609192.6789,3385607.244,217,2.84\n1458,648,1127,1375,245,109,609192.6789,3385607.244,296,1.833\n1998,1426,1415,1661,396,202,609192.6789,3385607.244,127,2.462\n1495,932,1045,1319,237,121,609192.6789,3385607.244,303,2.411\n1160,344,564,1036,77,40,644035.2988,3376500.556,232,3.052\n1257,668,483,941,82,49,644035.2988,3376500.556,212,2.791\n1125,374,906,1181,167,81,644035.2988,3376500.556,217,1.892\n2458,2427,2138,2274,1651,1509,644035.2988,3376500.556,139,2.511\n965,204,558,964,64,36,644035.2988,3376500.556,218,1.979\n1301,456,1047,1329,208,113,644035.2988,3376500.556,296,1.874\n1569,705,1430,1582,337,158,644035.2988,3376500.556,127,1.717\n1194,461,685,1102,141,106,644035.2988,3376500.556,221,3.291\n1725,954,1594,1694,417,197,644035.2988,3376500.556,218,2.653\n1670,1056,993,1397,240,108,644035.2988,3376500.556,130,1.93\n1673,1212,1110,1463,313,169,644035.2988,3376500.556,304,1.764\n1177,1467,1174,1176,895,439,652299.985,3233540.466,306,1.896\n3296,3334,3186,3290,2948,2654,654216.0245,3229241.81,75,0.992\n1666,1061,1065,1520,821,763,654216.0245,3229241.81,217,1.637\n755,697,551,854,474,198,654216.0245,3229241.81,238,1.086\n1470,835,1420,1579,401,187,654216.0245,3229241.81,311,1.998\n1691,1349,1749,1856,997,523,654216.0245,3229241.81,66,0.305\n1083,1082,874,1113,835,562,654216.0245,3229241.81,131,1.305\n1396,1262,1316,1485,1033,432,654216.0245,3229241.81,222,1.204\n1242,604,1348,1480,340,154,673192.5261,3354811.074,218,1.917\n1568,834,1070,1366,300,202,673192.5261,3354811.074,139,1.392\n883,167,529,917,57,33,673192.5261,3354811.074,218,1.512\n1666,1026,1310,1699,858,766,673192.5261,3354811.074,220,2.213\n1206,616,936,1172,323,163,673192.5261,3354811.074,49,1.767\n1352,598,933,1248,214,112,673192.5261,3354811.074,128,1.958\n977,220,678,1027,73,40,673192.5261,3354811.074,244,1.276\n1201,431,537,1002,54,41,673192.5261,3354811.074,308,1.797\n1185,370,1058,1296,170,91,663009.5916,3357449.182,216,1.871\n1020,213,552,975,61,28,663009.5916,3357449.182,218,1.759\n1488,653,1322,1510,327,183,663009.5916,3357449.182,295,1.588\n1621,756,1721,1803,443,207,663009.5916,3357449.182,127,1.987\n1946,1289,1308,1728,833,741,663009.5916,3357449.182,220,2.423\n1415,711,939,1234,204,95,663009.5916,3357449.182,129,1.2\n1824,970,1935,1995,511,189,663009.5916,3357449.182,219,2.126\n1405,775,882,1194,157,61,663009.5916,3357449.182,280,2.724\n1854,1133,1455,1807,955,828,663009.5916,3357449.182,129,1.815\n1120,352,913,1187,161,65,663009.5916,3357449.182,244,1.371\n1272,443,1066,1306,201,115,655446.9246,3350729.068,216,1.986\n1630,916,1201,1463,330,190,655446.9246,3350729.068,295,1.593\n1762,959,1550,1706,401,199,655446.9246,3350729.068,127,1.792\n2002,1889,1233,1664,861,693,655446.9246,3350729.068,220,2.919\n1960,1134,2059,2115,583,209,655446.9246,3350729.068,219,2.127\n1463,827,989,1273,183,77,655446.9246,3350729.068,280,2.532\n1919,1286,1397,1737,870,703,655446.9246,3350729.068,129,1.996\n1148,475,1139,1302,260,136,597737.5084,3361204.099,232,3.489\n1332,714,792,1122,154,69,597737.5084,3361204.099,134,1.327\n1272,751,609,994,158,96,597737.5084,3361204.099,133,1.89\n1622,710,1060,1466,314,230,597737.5084,3361204.099,133,1.678\n2294,1377,2031,2270,502,194,597737.5084,3361204.099,311,2.255\n1414,987,805,1142,182,67,597737.5084,3361204.099,239,2.942\n1503,793,1376,1556,521,304,597737.5084,3361204.099,124,2.717\n1290,389,908,1209,110,35,597737.5084,3361204.099,218,2.766\n1549,977,1095,1376,280,127,682737.3459,3359569.757,89,1.59\n321,101,167,561,341,144,682737.3459,3359569.757,218,1.576\n697,209,791,1003,127,56,682737.3459,3359569.757,233,1.943\n1536,852,1070,1367,313,218,682737.3459,3359569.757,139,1.729\n1346,496,1069,1343,221,125,682737.3459,3359569.757,297,1.341\n1394,864,1019,1278,416,203,682737.3459,3359569.757,49,1.789\n1250,507,1016,1227,231,115,682737.3459,3359569.757,223,1.618\n1297,953,876,1200,364,155,682737.3459,3359569.757,128,1.903\n991,353,851,1100,145,80,682737.3459,3359569.757,221,1.33\n5094,5256,4669,4925,5111,4042,594309.4734,3377306.381,86,2.374\n1530,656,1082,1446,384,285,594309.4734,3377306.381,133,1.532\n1744,726,1585,1845,317,120,594309.4734,3377306.381,311,2.45\n1507,777,1214,1413,317,179,594309.4734,3377306.381,218,2.688\n1675,1030,1428,1595,431,218,594309.4734,3377306.381,304,2.367\n395,89,375,621,54,51,700016.186,3377389.398,231,1.696\n1491,920,837,1221,269,191,700016.186,3377389.398,150,2.08\n989,273,922,1157,121,57,700016.186,3377389.398,237,1.197\n1429,958,815,1182,163,71,700016.186,3377389.398,89,1.362\n1207,463,1121,1345,246,135,700016.186,3377389.398,218,1.965\n1795,1194,1472,1703,746,380,700016.186,3377389.398,140,1.895\n1127,415,1020,1251,190,91,700016.186,3377389.398,232,1.919\n1503,910,964,1283,199,86,700016.186,3377389.398,56,1.685\n1278,633,698,1061,163,101,700016.186,3377389.398,131,1.736\n2226,1482,1784,2131,1324,1172,700016.186,3377389.398,129,1.55\n65,5,161,200,1,54,740034.6295,3378202.213,234,0.968\n664,247,757,991,167,120,740034.6295,3378202.213,150,1.213\n225,22,412,653,17,265,740034.6295,3378202.213,298,0.996\n1270,695,1526,1690,485,273,740034.6295,3378202.213,290,1.495\n1067,348,1220,1409,175,137,740034.6295,3378202.213,59,1.17\n685,127,660,958,76,58,740034.6295,3378202.213,300,1.977\n1889,1155,1851,2036,627,449,740034.6295,3378202.213,71,1.102\n452,18,265,646,5,65,740768.6739,3344929.08,148,1.075\n1029,266,849,1131,128,75,740768.6739,3344929.08,312,1.091\n1044,804,1027,1225,675,559,740768.6739,3344929.08,148,0.917\n1070,351,736,1029,140,94,740768.6739,3344929.08,58,1.061\n130,4,302,439,2,80,740768.6739,3344929.08,219,1.496\n906,217,868,1139,94,70,740768.6739,3344929.08,309,1.013\n1299,535,914,1213,174,78,740768.6739,3344929.08,58,1.234\n303,3,139,597,2,165,740768.6739,3344929.08,127,1.277\n1034,407,934,1225,290,253,740768.6739,3344929.08,72,1.32\n1129,444,965,1248,264,191,717952.2156,3363989.044,150,1.672\n1595,1000,1117,1395,334,229,717952.2156,3363989.044,217,1.469\n1713,1191,1146,1454,456,359,717952.2156,3363989.044,86,1.274\n1308,751,1118,1401,602,490,717952.2156,3363989.044,148,1.338\n690,211,649,931,153,132,717952.2156,3363989.044,219,1.727\n1281,716,789,1114,214,124,717952.2156,3363989.044,281,1.473\n892,247,847,1093,119,57,717952.2156,3363989.044,232,1.871\n1444,846,929,1229,189,87,717952.2156,3363989.044,56,1.392\n1362,1091,1383,1710,1017,901,717952.2156,3363989.044,220,1.594\n1191,366,690,1070,104,84,717952.2156,3363989.044,300,2.535\n707,422,760,941,402,324,717952.2156,3363989.044,248,1.821\n126,14,124,378,1,123,767310.2234,3363302.262,149,1.137\n1284,1274,1462,1443,1384,1635,767310.2234,3363302.262,131,0.896\n50,15,16,148,5,111,767310.2234,3363302.262,211,0.277\n1094,353,855,1136,169,111,767310.2234,3363302.262,58,1.0575\n806,171,775,1042,78,27,767310.2234,3363302.262,310,1.644\n572,165,764,956,6,51,767310.2234,3363302.262,58,0.593\n480,94,631,857,59,46,767310.2234,3363302.262,300,1.474\n855,316,902,1143,222,185,767310.2234,3363302.262,72,0.999\n903,275,718,1019,177,149,702919.6147,3341589.614,219,1.909\n1441,926,912,1195,244,101,702919.6147,3341589.614,281,1.134\n1420,857,888,1171,236,147,702919.6147,3341589.614,289,2.277\n2503,1893,1933,2353,1771,1616,702919.6147,3341589.614,126,1.756\n1308,788,1244,1519,675,597,702919.6147,3341589.614,248,1.754\n366,79,486,714,50,36,692408.9111,3355066.175,231,2.596\n1394,602,959,1292,328,254,692408.9111,3355066.175,150,1.603\n1204,365,937,1204,136,51,692408.9111,3355066.175,237,1.322\n852,247,674,995,164,145,692408.9111,3355066.175,219,1.9\n1443,956,862,1175,224,117,692408.9111,3355066.175,281,1.216\n1456,650,915,1266,192,102,692408.9111,3355066.175,297,1.579\n1990,1423,1438,1772,858,763,692408.9111,3355066.175,126,1.778\n1298,557,1200,1379,270,186,692408.9111,3355066.175,223,1.492\n1191,357,617,1048,124,78,692408.9111,3355066.175,305,2.68\n1771,1016,1265,1612,495,354,692408.9111,3355066.175,128,1.546\n1062,338,972,1208,179,89,692408.9111,3355066.175,221,1.289\n832,196,608,952,108,79,657018.9784,3361897.279,231,2.389\n1891,1139,1309,1696,858,754,657018.9784,3361897.279,222,1.752\n1167,423,486,923,70,39,657018.9784,3361897.279,212,2.255\n1127,322,982,1244,150,78,657018.9784,3361897.279,216,2.168\n2626,2466,2216,2409,1601,1349,657018.9784,3361897.279,139,2.365\n1548,994,928,1315,244,129,657018.9784,3361897.279,296,1.983\n1737,843,1783,1872,481,222,657018.9784,3361897.279,127,1.829\n2084,2011,1302,1744,872,724,657018.9784,3361897.279,220,2.489\n1460,965,927,1225,204,86,657018.9784,3361897.279,129,1.399\n1563,829,1670,1745,485,231,657018.9784,3361897.279,218,3.034\n1386,794,826,1165,137,63,657018.9784,3361897.279,280,2.482\n1461,718,1253,1449,363,152,657018.9784,3361897.279,244,1.421\n862,314,829,1100,210,163,715953.4817,3385117.753,150,2.052\n1760,1157,1182,1516,467,397,715953.4817,3385117.753,86,1.113\n814,228,830,1072,121,80,715953.4817,3385117.753,218,1.933\n1483,722,1325,1548,459,247,715953.4817,3385117.753,293,1.845\n1719,1019,1443,1679,668,331,715953.4817,3385117.753,140,1.692\n1162,407,776,1108,221,194,715953.4817,3385117.753,231,1.955\n2123,1406,2151,2158,636,324,715953.4817,3385117.753,298,1.33\n1275,476,1014,1268,185,92,715953.4817,3385117.753,56,1.4705\n238,1,304,575,3,24,715953.4817,3385117.753,230,0.917\n1698,741,1724,1887,552,331,715953.4817,3385117.753,290,2.042\n1647,1014,1349,1546,396,222,715953.4817,3385117.753,60,0.932\n1717,1166,1458,1711,682,410,715953.4817,3385117.753,71,1.384\n859,245,778,1036,129,56,633681.2339,3385217.252,217,1.866\n1295,909,531,969,74,29,633681.2339,3385217.252,218,2.638\n1387,484,1364,1480,318,121,633681.2339,3385217.252,296,1.674\n1391,492,1137,1373,223,103,633681.2339,3385217.252,127,2.29\n1685,884,1834,1888,500,225,633681.2339,3385217.252,218,2.806\n1436,700,1013,1300,199,106,633681.2339,3385217.252,303,1.753\n598,364,795,935,296,182,757866.7585,3426292.304,142,0.8\n55,3,117,200,9,31,757866.7585,3426292.304,231,0.95\n156,8,200,414,3,51,757866.7585,3426292.304,231,1.358\n631,194,1011,1155,94,55,757866.7585,3426292.304,59,0.454\n50,45,27,150,22,122,757866.7585,3426292.304,217,0.369\n1231,965,1535,1594,897,1015,757866.7585,3426292.304,298,0.626\n1654,1016,1283,1543,582,314,710606.3073,3418340.566,140,1.15\n1920,1177,1843,1925,488,242,710606.3073,3418340.566,298,1.592\n1501,887,1036,1326,210,94,710606.3073,3418340.566,56,1.612\n525,126,452,729,53,23,710606.3073,3418340.566,230,2.375\n1789,1315,1069,1475,199,141,710606.3073,3418340.566,298,2.77\n1309,746,1139,1342,412,225,710606.3073,3418340.566,71,1.447\n1702,1177,1074,1434,459,389,710606.3073,3418340.566,131,1.469\n1605,829,1982,1979,731,351,710606.3073,3418340.566,247,1.965\n1443,698,830,1224,199,90,657417.3221,3225027.545,81,1.238\n1583,731,1666,1819,381,174,657417.3221,3225027.545,289,1.332\n1767,1239,1430,1699,686,315,657417.3221,3225027.545,72,1.493\n898,249,782,1073,154,83,657417.3221,3225027.545,132,0.851\n1704,1204,1668,1803,998,926,657417.3221,3225027.545,76,1.43\n591,96,540,811,58,20,657417.3221,3225027.545,238,1.064\n1089,293,937,1254,131,46,657417.3221,3225027.545,309,1.762\n553,226,660,837,264,145,657417.3221,3225027.545,243,1.337\n1452,746,1369,1519,413,183,657417.3221,3225027.545,222,1.314\n1432,633,1077,1325,206,93,595356.9956,3355262.282,71,1.351\n1576,704,992,1406,279,205,595356.9956,3355262.282,133,1.776\n1531,869,1436,1610,595,335,595356.9956,3355262.282,124,2.611\n1080,362,652,1000,104,42,595356.9956,3355262.282,217,2.743\n1565,1072,1071,1365,254,114,672464.9953,3400408.134,89,2.267\n1164,352,982,1268,172,82,672464.9953,3400408.134,217,1.709\n1551,747,1246,1484,356,212,672464.9953,3400408.134,297,1.603\n1144,593,465,890,46,17,672464.9953,3400408.134,221,2.903\n1278,530,781,1114,164,103,672464.9953,3400408.134,131,1.842\n1884,1193,2320,2274,702,264,672464.9953,3400408.134,217,2.536\n1643,1047,1008,1375,404,329,672464.9953,3400408.134,131,1.592\n1098,665,36,660,606,887,653626.211,3376709.928,148,1.522\n1474,673,1364,1535,309,124,653626.211,3376709.928,218,2.009\n3244,3225,2895,3073,2682,2307,653626.211,3376709.928,139,1.904\n1497,742,946,1333,241,115,653626.211,3376709.928,296,1.132\n1483,647,1397,1542,317,161,653626.211,3376709.928,218,3.069\n1619,776,978,1381,192,98,653626.211,3376709.928,130,1.918\n1656,1094,1141,1476,337,192,653626.211,3376709.928,304,1.805\n1598,1049,1141,1424,278,138,662965.6969,3392318.476,89,1.585\n1901,1293,1352,1705,980,854,662965.6969,3392318.476,148,1.628\n1598,728,1315,1537,286,118,662965.6969,3392318.476,218,1.925\n1178,373,641,1037,90,42,662965.6969,3392318.476,218,2.737\n1497,660,1148,1411,236,134,662965.6969,3392318.476,296,1.147\n1469,941,805,1203,193,107,662965.6969,3392318.476,130,1.57\n1799,1133,2241,2213,666,249,662965.6969,3392318.476,217,2.643\n1125,494,1081,1193,259,104,662965.6969,3392318.476,222,1.973\n1396,786,971,1259,185,97,662965.6969,3392318.476,303,1.754\n995,299,858,1104,152,70,672666.3438,3387844.288,217,1.673\n3338,3290,2959,3153,2826,2547,672666.3438,3387844.288,139,1.792\n1373,1314,654,1043,171,44,672666.3438,3387844.288,218,1.988\n1615,779,1105,1432,245,128,672666.3438,3387844.288,297,1.741\n1241,905,471,917,70,21,672666.3438,3387844.288,221,3.071\n1430,758,816,1203,178,108,672666.3438,3387844.288,130,1.563\n2003,1187,2123,2164,655,250,672666.3438,3387844.288,219,2.336\n1326,494,1300,1515,305,134,672666.3438,3387844.288,222,1.827\n976,298,881,1123,158,85,681960.9267,3386898.856,217,1.726\n1172,322,661,1061,83,37,681960.9267,3386898.856,218,1.798\n1628,861,1038,1403,238,148,681960.9267,3386898.856,297,1.357\n1235,931,455,904,72,32,681960.9267,3386898.856,221,2.633\n1227,493,706,1060,136,85,681951.333,3386898.694,131,1.864\n1952,1181,2209,2212,669,260,681951.333,3386898.694,219,2.238\n1207,455,1219,1449,298,146,681951.333,3386898.694,222,1.745\n4684,4841,4189,4453,4535,3844,589927.3812,3362766.673,86,2.267\n1094,479,769,1026,245,97,589927.3812,3362766.673,233,2.569\n1480,798,1063,1327,237,100,589927.3812,3362766.673,71,1.242\n1543,1042,741,1192,169,85,589927.3812,3362766.673,309,2.547\n1674,911,1077,1468,362,255,589927.3812,3362766.673,133,1.717\n1669,1417,1110,1422,654,513,589927.3812,3362766.673,147,1.21\n1649,1462,868,1361,288,90,589927.3812,3362766.673,281,2.851\n1482,1047,1192,1413,488,275,589927.3812,3362766.673,124,2.752\n994,335,639,989,141,41,589927.3812,3362766.673,217,2.793\n80,0,261,405,17,88,739106.7993,3184763.124,71,0.451\n771,798,590,952,1087,498,661092.2313,3270587.109,61,1.502\n2001,1839,1446,1936,1750,1470,661092.2313,3270587.109,131,1.282\n1,612,91,328,1024,236,661092.2313,3270587.109,137,1.083\n768,1707,954,1071,977,278,661092.2313,3270587.109,228,0.949\n975,1063,779,1046,772,227,661092.2313,3270587.109,137,0.999\n896,408,675,938,350,101,661092.2313,3270587.109,301,1.307\n1314,481,1147,1380,248,138,663994.4717,3334695.051,216,1.897\n1763,1132,1101,1509,627,532,663994.4717,3334695.051,217,2.162\n1561,775,1154,1416,316,177,663994.4717,3334695.051,295,1.534\n2344,2325,1582,1983,1146,990,663994.4717,3334695.051,126,2.201\n1980,1160,2044,2107,626,219,663994.4717,3334695.051,219,1.446\n1609,1306,1345,1552,988,545,613567.2064,3116161.141,123,1.162\n1330,1124,1339,1453,1160,888,613567.2064,3116161.141,292,1.512\n1556,1233,994,1305,898,451,613567.2064,3116161.141,68,1.532\n1560,1122,1515,1597,1122,443,613567.2064,3116161.141,127,1.534\n841,166,656,952,131,85,613567.2064,3116161.141,218,1.276\n1403,618,1079,1337,349,229,613567.2064,3116161.141,288,1.135\n1035,532,607,975,1146,604,613567.2064,3116161.141,129,1.266\n1356,743,1281,1445,931,515,613567.2064,3116161.141,73,1.4665\n1954,1507,1642,1937,880,836,613567.2064,3116161.141,285,1.1\n4338,4446,3962,4166,4124,3695,599914.5933,3369118.335,86,2.66\n1427,508,999,1364,261,192,599914.5933,3369118.335,133,1.664\n2083,1261,1909,2038,495,183,599914.5933,3369118.335,256,3.24\n1936,1211,1490,1820,324,119,599914.5933,3369118.335,311,2.295\n1312,645,734,1096,145,63,599904.9866,3369118.247,239,2.827\n1321,449,911,1207,116,41,599904.9866,3369118.247,218,2.734\n873,468,842,1116,399,365,681351.2638,3397459.651,233,2.827\n1351,608,937,1257,342,241,681351.2638,3397459.651,150,2.08\n1541,1170,1009,1315,245,109,681351.2638,3397459.651,89,1.593\n1076,316,943,1205,164,82,681351.2638,3397459.651,217,1.81\n2044,1320,1803,2001,1038,799,681351.2638,3397459.651,139,1.736\n1491,617,1058,1366,204,116,681351.2638,3397459.651,297,1.182\n1116,385,469,903,39,21,681351.2638,3397459.651,221,2.753\n1213,432,880,1173,207,138,681351.2638,3397459.651,131,1.725\n1900,1304,2361,2288,747,315,681351.2638,3397459.651,217,2.419\n1426,721,847,1290,241,120,681351.2638,3397459.651,71,1.871\n1646,1065,1013,1379,392,321,681351.2638,3397459.651,131,1.504\n1309,497,1277,1533,287,126,681351.2638,3397459.651,222,1.704\n1237,547,1307,1468,359,220,681351.2638,3397459.651,247,1.944\n1597,792,1050,1420,474,416,649913.7516,3396454.274,233,3.134\n1013,238,453,888,56,41,649913.7516,3396454.274,212,2.751\n1599,987,1146,1432,311,142,649913.7516,3396454.274,89,1.992\n1894,1342,1396,1722,1006,887,649913.7516,3396454.274,148,1.772\n980,278,819,1105,130,62,649913.7516,3396454.274,217,1.931\n3776,3750,3427,3641,3340,2977,649913.7516,3396454.274,139,2.044\n1033,258,529,940,62,31,649913.7516,3396454.274,218,2.613\n1419,512,1496,1582,399,160,649913.7516,3396454.274,296,1.323\n1193,578,505,945,59,32,649913.7516,3396454.274,221,3.417\n1418,480,1157,1479,218,134,649913.7516,3396454.274,283,2.752\n1677,848,1082,1473,381,306,649913.7516,3396454.274,131,1.731\n1294,473,1158,1369,216,125,649913.7516,3396454.274,303,2.269\n644,359,760,950,303,256,721820.6755,3407405.358,233,2.568\n674,273,648,886,193,143,721820.6755,3407405.358,150,2.382\n766,219,804,1050,147,114,721820.6755,3407405.358,217,2.037\n2045,1026,1840,2043,487,241,721820.6755,3407405.358,313,1.468\n718,185,609,915,120,104,721820.6755,3407405.358,219,1.946\n1209,521,1265,1441,309,166,721820.6755,3407405.358,293,1.843\n1586,842,1268,1526,502,292,721820.6755,3407405.358,140,1.156\n548,167,679,914,126,106,721820.6755,3407405.358,231,1.011\n1469,727,1096,1350,227,113,721820.6755,3407405.358,56,1.137\n521,135,416,723,61,27,721820.6755,3407405.358,230,1.743\n941,276,1327,1376,194,109,721820.6755,3407405.358,290,1.178\n1917,1351,1547,1905,1251,1161,721820.6755,3407405.358,133,1.567\n293,93,285,684,23,154,721820.6755,3407405.358,217,2.12\n1123,316,612,1016,74,49,721820.6755,3407405.358,298,2.382\n1630,907,1090,1421,432,362,721820.6755,3407405.358,131,1.321\n1061,274,588,993,103,75,653450.678,3387720.325,231,2.385\n1083,305,442,889,50,25,653450.678,3387720.325,212,2.586\n1089,418,820,1114,152,66,653450.678,3387720.325,217,2.042\n1134,405,550,973,92,29,653450.678,3387720.325,218,2.631\n1409,596,1141,1381,222,113,653450.678,3387720.325,296,1.275\n1744,940,1590,1724,411,192,653450.678,3387720.325,127,2.03\n1203,648,520,960,81,41,653450.678,3387720.325,221,3.387\n1477,650,1420,1552,328,159,653450.678,3387720.325,218,2.718\n1668,1145,927,1418,274,159,653450.678,3387720.325,283,2.818\n1519,762,1208,1468,325,138,653450.678,3387720.325,222,2.037\n1405,740,920,1243,188,106,653450.678,3387720.325,303,1.685\n668,129,538,861,68,56,671208.4698,3376895.858,231,2.112\n1427,755,1010,1278,180,84,671208.4698,3376895.858,237,2.585\n1604,1110,1117,1403,284,138,671208.4698,3376895.858,89,1.686\n1374,608,1381,1540,308,126,671208.4698,3376895.858,218,1.851\n3013,2905,2595,2774,2169,1907,671208.4698,3376895.858,139,1.639\n1642,811,1210,1494,303,191,671208.4698,3376895.858,297,1.927\n1932,1126,2154,2168,628,235,671208.4698,3376895.858,219,2.237\n1669,932,1141,1477,386,192,671208.4698,3376895.858,130,1.781\n1420,985,2017,1874,683,297,798759.7058,3398171.119,85,0.895\n1116,1097,1009,1124,1044,957,798759.7058,3398171.119,150,0.926\n1134,424,1119,1325,244,146,663665.9411,3343152.141,216,2.21\n1391,539,1141,1377,265,147,663665.9411,3343152.141,295,1.291\n1528,1018,1361,1582,883,637,663665.9411,3343152.141,129,1.974\n65,4,90,157,6,67,824329.1529,3398911.681,211,0.457\n18,0,187,145,11,33,824329.1529,3398911.681,310,0.437\n120,0,530,509,1,25,824329.1529,3398911.681,70,0.416\n99,0,170,346,13,89,768389.2355,3397370.59,149,0.846\n1082,316,828,1123,138,98,768389.2355,3397370.59,58,0.656\n262,0,412,676,92,61,768389.2355,3397370.59,300,0.795\n421,70,604,821,41,20,768389.2355,3397370.59,70,0.616\n94,66,45,157,27,86,810291.4825,3368883.511,211,0.338\n162,10,376,551,0,100,810291.4825,3368883.511,58,0.807\n46,4,261,186,17,84,810291.4825,3368883.511,219,0.854\n20,2,131,99,4,64,791558.0435,3368365.005,141,0.687\n622,278,856,1003,202,124,791558.0435,3368365.005,58,0.86725\n3098,3121,3385,3533,2398,2381,791558.0435,3368365.005,305,0.286\n749,426,788,1010,369,328,701234.5705,3393963.738,233,2.667\n1396,571,930,1270,271,199,701234.5705,3393963.738,150,2.069\n4901,4234,4911,5367,4778,2483,701234.5705,3393963.738,217,2.107\n2075,1554,2033,2211,1354,1221,701234.5705,3393963.738,239,1.908\n1350,597,629,1177,141,92,701234.5705,3393963.738,313,1.929\n1161,395,729,1087,211,168,701234.5705,3393963.738,219,2.126\n1142,437,873,1191,320,267,701234.5705,3393963.738,231,2.043\n934,225,545,898,62,44,701234.5705,3393963.738,232,1.641\n1456,634,1345,1508,399,258,701234.5705,3393963.738,290,2.152\n1124,326,563,992,63,28,701234.5705,3393963.738,298,2.78\n1280,800,835,1174,283,153,701234.5705,3393963.738,71,1.652\n1653,1134,1011,1365,410,331,701234.5705,3393963.738,131,1.464\n653,863,350,779,460,344,746053.0935,3397446.981,150,1.214\n1048,1654,836,1108,1271,842,746053.0935,3397446.981,219,1.545\n1091,2414,1000,1214,2281,961,746053.0935,3397446.981,293,1.715\n1567,2096,1882,1849,1769,861,746053.0935,3397446.981,298,0.98\n636,2096,342,738,1722,640,746053.0935,3397446.981,232,1.588\n819,1450,707,847,1101,562,746053.0935,3397446.981,59,0.885\n1190,1255,1168,1275,1183,575,746053.0935,3397446.981,133,1.116\n384,1571,149,515,1421,566,746053.0935,3397446.981,217,1.333\n634,1151,424,651,901,319,746053.0935,3397446.981,300,2.221\n661,2208,455,679,2194,1016,746053.0935,3397446.981,70,0.686\n1520,1823,1165,1413,2002,1580,598205.5691,3350852.53,68,2.28\n1869,1785,1771,1823,674,279,653642.3414,3336608.295,146,2.44\n837,409,710,1008,348,252,682166.4651,3346482.965,219,1.79\n1678,1261,1314,1544,540,253,682166.4651,3346482.965,49,1.679\n1924,1419,1460,1808,907,795,682166.4651,3346482.965,126,1.858\n1115,540,853,1130,278,151,682166.4651,3346482.965,221,1.166\n1773,1838,1643,1745,1646,1326,605849.0652,3358563.356,68,2.24\n1647,1580,1509,1615,886,428,634835.4877,3357918.497,85,2.076\n1801,1575,1582,1719,543,224,634835.4877,3357918.497,127,1.728\n1082,358,963,1197,166,63,657337.3704,3339743.589,229,2.392\n1226,556,475,939,79,52,657337.3704,3339743.589,212,2.032\n1982,1161,2099,2145,630,224,657337.3704,3339743.589,219,1.916\n1721,978,1189,1543,662,565,629926.21,3367084.949,217,2.15\n1754,1140,1539,1685,430,209,629926.21,3367084.949,127,1.728\n997,243,594,1016,107,63,629926.21,3367084.949,240,2.886\n1465,880,961,1257,192,74,629926.21,3367084.949,280,2.721\n1205,474,748,1090,142,53,629926.21,3367084.949,217,2.438\n1108,376,959,1188,169,57,644324.7995,3352472.953,229,2.236\n1816,1164,1345,1657,866,691,644324.7995,3352472.953,148,1.59\n1407,623,964,1264,202,94,644324.7995,3352472.953,216,2.209\n1579,697,1500,1630,383,172,644324.7995,3352472.953,127,1.91\n1182,523,710,1082,160,89,644324.7995,3352472.953,240,2.931\n1457,980,941,1239,191,63,644324.7995,3352472.953,280,2.65\n1529,1121,910,1264,331,230,644324.7995,3352472.953,72,2.144\n2096,1622,1386,1791,1112,998,644324.7995,3352472.953,216,1.973\n1525,922,995,1281,312,182,607768.6773,3364780.354,217,3.073\n1507,649,1196,1428,250,115,607768.6773,3364780.354,127,2.064\n1272,776,944,1159,625,361,607768.6773,3364780.354,217,2.775\n1951,1715,1866,1978,1055,565,664138.3488,3321133.807,147,1.984\n1963,1878,1167,1587,859,704,664138.3488,3321133.807,217,2.802\n1960,1583,1790,1876,638,291,664138.3488,3321133.807,146,2.634\n1161,438,675,1054,187,108,664138.3488,3321133.807,240,2.442\n1454,717,915,1247,208,119,662318.4244,3328703.657,228,1.934\n1829,1269,1249,1622,966,904,662318.4244,3328703.657,148,1.455\n1419,587,1216,1434,269,134,662318.4244,3328703.657,216,2.124\n2016,1274,2124,2165,710,278,662318.4244,3328703.657,219,1.898\n1538,1065,898,1265,321,237,662318.4244,3328703.657,72,1.62\n2142,1454,1432,1874,1065,915,662318.4244,3328703.657,216,1.709\n741,232,739,971,143,53,623781.5015,3393405.018,217,1.992\n1126,403,498,920,88,42,623781.5015,3393405.018,218,2.854\n1736,951,1190,1598,695,607,623781.5015,3393405.018,220,3.549\n1625,699,1190,1584,298,134,623781.5015,3393405.018,283,2.845\n1501,802,1466,1547,325,134,623781.5015,3393405.018,222,2.374\n1402,592,1213,1400,247,139,623781.5015,3393405.018,303,2.093\n1609,1126,1425,1555,462,207,675360.0312,3317812.513,250,1.801\n1675,1296,1428,1620,517,480,675360.0312,3317812.513,211,1.441\n1374,836,819,1148,359,241,675360.0312,3317812.513,236,1.477\n1324,1283,583,1008,212,68,675360.0312,3317812.513,80,1.675\n1789,1631,1460,1626,414,262,675360.0312,3317812.513,71,1.444333\n1207,897,1181,1228,598,311,675360.0312,3317812.513,223,1.746\n1323,1315,542,978,168,41,675360.0312,3317812.513,68,1.645\n1945,1589,1801,1967,415,403,675360.0312,3317812.513,226,1.163\n1471,1234,834,1172,485,415,671311.3792,3319224.154,236,1.065\n1924,1612,1135,1554,894,776,671311.3792,3319224.154,217,2.75\n1440,762,1124,1321,459,366,671311.3792,3319224.154,295,1.585\n1843,1616,1341,1600,870,715,671311.3792,3319224.154,126,1.478\n1333,1151,550,1000,163,120,671311.3792,3319224.154,68,1.679\n1240,1002,529,946,283,216,671311.3792,3319224.154,301,1.835\n1332,647,831,1163,278,214,698016.3863,3310796.119,249,1.22\n1144,750,1208,1419,1649,1541,698016.3863,3310796.119,211,1.148\n1811,1119,1609,1776,862,662,698016.3863,3310796.119,131,1.184\n1990,1691,1825,1961,1606,1114,698016.3863,3310796.119,219,1.026\n1455,746,1153,1351,362,181,698016.3863,3310796.119,295,1.35\n1405,864,972,1221,284,158,698016.3863,3310796.119,291,1.897\n1459,952,1071,1309,353,179,698016.3863,3310796.119,49,1.459\n1180,518,1001,1176,290,134,698016.3863,3310796.119,223,1.113\n1289,1099,514,959,148,59,698016.3863,3310796.119,68,1.59\n1321,1055,1012,1228,596,409,698016.3863,3310796.119,135,1.426\n1878,1219,1922,2031,2542,1469,685044.3039,3316184.464,250,1.78\n712,343,830,1036,236,197,685044.3039,3316184.464,211,1.207\n1295,1061,524,958,96,29,685044.3039,3316184.464,68,1.66\n1590,1544,2205,1924,929,626,671292.4058,3280197.298,224,1.311\n1021,316,562,949,127,59,671292.4058,3280197.298,301,1.288\n1287,931,1418,1539,272,460,654900.871,3268836.919,61,1.452\n681,688,714,961,193,154,654900.871,3268836.919,228,1.653\n964,685,1258,1326,665,270,649036.3884,3265708.502,132,1.55\n207,39,492,669,20,119,649036.3884,3265708.502,137,1.202\n710,371,967,1069,317,110,649036.3884,3265708.502,228,1.329\n1240,1016,1241,1425,1030,481,649036.3884,3265708.502,137,0.99\n699,184,630,904,132,65,649036.3884,3265708.502,301,1.096\n1918,1974,2073,2023,1888,1202,655481.1992,3232097.529,75,1.088\n1159,1123,968,1182,767,466,655481.1992,3232097.529,75,1.407\n1161,1578,809,1041,1170,684,655481.1992,3232097.529,61,0.336\n1247,1359,1350,1418,1392,665,655481.1992,3232097.529,306,2.088\n785,1641,507,803,1493,748,655481.1992,3232097.529,131,1.294\n665,1270,112,648,1108,569,673075.8424,3236376.035,140,2.663\n1657,1349,1763,1783,835,398,673075.8424,3236376.035,76,0.863\n967,437,636,992,336,133,673075.8424,3236376.035,218,0.923\n3087,3154,3424,3858,5025,2614,673075.8424,3236376.035,238,1.34\n1142,567,875,1138,823,293,673075.8424,3236376.035,310,1.479\n1658,1359,1324,1521,794,406,673075.8424,3236376.035,62,0.197\n768,277,638,948,419,182,673075.8424,3236376.035,241,1.13\n1492,920,1365,1480,376,162,673075.8424,3236376.035,307,1.762\n1614,2094,1469,1609,2389,1465,673075.8424,3236376.035,62,1.029\n1537,1081,1373,1522,597,268,669254.115,3225152.033,140,2.638\n1260,542,890,1173,186,65,669254.115,3225152.033,240,1.684\n1037,323,423,865,71,18,669254.115,3225152.033,218,0.827\n786,133,520,879,69,32,669254.115,3225152.033,241,1.084\n2053,1981,2018,2106,1399,1093,669254.115,3225152.033,62,0.988\n822,3083,721,1012,2499,836,667864.7833,3228935.065,240,1.67\n1358,2500,1084,1327,2107,1282,667864.7833,3228935.065,72,1.209\n1851,2393,2121,2045,2139,1081,667864.7833,3228935.065,148,0.205\n1140,2072,508,956,2104,1537,667864.7833,3228935.065,75,1.401\n1109,568,992,1227,382,191,642251.8886,3265277.176,69,1.357\n1159,697,1378,1447,437,169,642251.8886,3265277.176,132,1.461\n1068,2301,954,1207,761,440,642251.8886,3265277.176,228,1.53\n1171,1069,996,1198,405,165,642251.8886,3265277.176,137,0.94\n684,196,636,920,130,61,642251.8886,3265277.176,301,0.84\n1388,869,1451,1579,743,358,660159.9967,3228004.008,140,1.215\n1284,608,1017,1268,315,145,660159.9967,3228004.008,240,2.075\n916,171,606,949,63,38,660159.9967,3228004.008,218,1.262\n1250,607,1079,1283,408,209,660159.9967,3228004.008,75,1.413\n724,132,678,942,65,36,660159.9967,3228004.008,238,1.095\n1081,224,923,1223,87,54,660159.9967,3228004.008,309,1.783\n871,1739,495,797,1502,769,644712.9658,3227354.648,292,2.422\n858,925,563,883,849,483,644712.9658,3227354.648,217,1.471\n1193,1358,875,1112,1354,879,644712.9658,3227354.648,61,0.277\n982,970,597,854,704,381,644712.9658,3227354.648,63,0.999\n1420,2648,1228,1469,2216,905,644712.9658,3227354.648,130,1.12\n623,1911,343,667,1528,581,644712.9658,3227354.648,220,1.758\n1388,705,1436,1600,427,225,687046.8918,3286049.808,61,1.4075\n2022,1472,1426,1744,1046,977,687046.8918,3286049.808,131,1.644\n1506,1012,1740,1684,496,169,687046.8918,3286049.808,228,0.916\n1187,469,594,1002,104,48,687046.8918,3286049.808,301,1.467\n819,752,748,835,691,606,745755.217,3271772.825,133,1.086\n1286,729,1763,1793,407,198,745755.217,3271772.825,57,0.675\n189,107,252,400,128,365,745755.217,3271772.825,215,0.592\n434,266,705,687,196,157,685889.778,3168287.847,141,0.7924\n683,152,830,1082,82,59,685889.778,3168287.847,291,2.257\n762,380,1010,1125,265,165,685889.778,3168287.847,71,1.072\n1371,1236,1211,1548,254,1065,685889.778,3168287.847,215,0.251\n1025,578,1158,1388,471,248,685889.778,3168287.847,125,0.961\n800,395,1068,1219,269,200,685889.778,3168287.847,300,2.22\n909,339,906,1162,260,221,685889.778,3168287.847,215,0.3825\n1242,445,622,1062,95,68,685889.778,3168287.847,298,1.359\n619,430,110,847,183,386,685889.778,3168287.847,71,1.17\n795,317,1065,1198,208,129,685889.778,3168287.847,124,0.591\n739,340,825,1050,276,237,685889.778,3168287.847,218,0.135\n1286,509,957,1257,198,100,685889.778,3168287.847,281,0.77\n735,1770,546,889,1545,760,674781.9797,3243721.131,140,1.323\n843,2013,763,957,2497,690,674781.9797,3243721.131,240,2.271\n1472,1476,1603,1641,2067,1062,674781.9797,3243721.131,76,0.818\n2769,3334,2383,2663,3254,2247,674781.9797,3243721.131,218,0.777\n1107,1441,945,1099,1826,842,674781.9797,3243721.131,67,1.4605\n2490,3299,1909,2113,1736,928,674781.9797,3243721.131,238,1.251\n723,1160,487,787,1122,368,674781.9797,3243721.131,310,1.5\n1091,1140,734,996,1556,711,674781.9797,3243721.131,62,0.228\n858,1308,722,1031,1563,802,674781.9797,3243721.131,241,1.144\n1474,1191,1436,1544,1183,643,674835.0224,3222463.573,140,2.052\n1173,1147,819,1090,1070,450,674835.0224,3222463.573,240,1.541\n1051,484,630,975,334,236,674835.0224,3222463.573,218,1.117\n1038,509,904,1151,526,224,674835.0224,3222463.573,237,1.111\n1477,1148,1038,1294,464,253,674835.0224,3222463.573,60,0.219\n1422,829,809,1192,174,83,683094.5885,3221184.137,81,0.962\n1504,1077,1516,1619,732,301,683094.5885,3221184.137,140,2.449\n1680,888,1370,1596,289,146,683094.5885,3221184.137,289,1.326\n1273,771,740,1072,219,112,683094.5885,3221184.137,132,0.769\n969,401,854,1098,240,121,683094.5885,3221184.137,237,0.868\n1565,799,1426,1621,262,124,683094.5885,3221184.137,311,1.393\n842,154,430,840,53,16,683094.5885,3221184.137,241,1.042\n507,65,599,886,39,32,670528.9595,3158817.469,228,0.588\n963,202,880,1202,94,62,670528.9595,3158817.469,291,2.285\n1218,646,1314,1461,378,227,670528.9595,3158817.469,71,1.142\n1840,1289,1526,1946,1146,1029,670528.9595,3158817.469,215,1.044\n1501,750,1536,1627,390,169,670528.9595,3158817.469,287,1.031\n968,470,1082,1328,344,210,670528.9595,3158817.469,125,1.034\n674,346,923,960,266,216,670528.9595,3158817.469,300,2.341\n1285,742,1464,1610,523,307,670528.9595,3158817.469,127,0.93\n627,304,748,971,255,218,670528.9595,3158817.469,218,0.056\n1161,393,1266,1449,181,92,670528.9595,3158817.469,282,0.63\n1351,1595,797,1111,748,497,634452.3503,3176485.716,72,3.685\n1276,1422,747,1035,357,153,634452.3503,3176485.716,213,4.213\n1428,790,809,1183,272,176,634452.3503,3176485.716,288,4.851\n1118,1037,1231,1121,850,335,634452.3503,3176485.716,218,1.291\n1413,1333,674,1110,345,190,634452.3503,3176485.716,297,2.803\n2618,2840,1895,2191,1721,1166,634452.3503,3176485.716,220,2.92\n3719,4197,4460,4646,6180,3812,634452.3503,3176485.716,285,3.29\n1300,1803,1208,1357,1787,656,612410.1986,3105475.959,122,1.254\n767,239,820,1045,159,92,612410.1986,3105475.959,217,0.976\n997,1301,449,838,1528,405,612410.1986,3105475.959,216,1.207\n867,995,454,818,1360,481,612410.1986,3105475.959,285,1.817\n1470,1359,1249,1448,1852,1154,612410.1986,3105475.959,75,1.63\n1242,1060,783,1142,1389,704,612410.1986,3105475.959,129,1.224\n876,338,708,1009,336,271,612410.1986,3105475.959,70,1.169\n1182,1677,1420,1486,2421,888,612410.1986,3105475.959,128,0.934\n1639,1454,1469,1786,1368,1215,689752.8185,3195985.05,227,0.681\n749,233,814,1024,120,61,689752.8185,3195985.05,225,0.72\n1633,739,1219,1554,259,162,689752.8185,3195985.05,297,2.064\n1211,747,1462,1560,576,406,689752.8185,3195985.05,138,0.779\n1319,1219,581,1006,218,83,681434.4582,3317799.507,80,1.351\n2624,2466,2483,2536,1503,1137,681434.4582,3317799.507,68,1.429\n1849,1636,1509,1677,508,266,681434.4582,3317799.507,71,1.34675\n1756,1438,1427,1618,630,308,681434.4582,3317799.507,49,1.494\n1348,688,926,1224,173,84,679816.6576,3227719.478,288,1.477\n1176,449,728,1076,169,94,679816.6576,3227719.478,63,1.412\n1405,1358,1229,1377,869,367,679816.6576,3227719.478,137,0.98\n940,481,731,934,309,198,679816.6576,3227719.478,243,1.673\n1319,604,843,1211,171,80,679317.7097,3217919.604,81,0.944\n1221,628,616,1035,196,107,679317.7097,3217919.604,132,0.726\n805,438,693,973,139,56,679317.7097,3217919.604,237,1.08\n1410,649,1215,1500,201,91,679317.7097,3217919.604,311,1.916\n846,171,472,852,60,22,679317.7097,3217919.604,241,1.015\n1157,471,728,1041,180,79,679317.7097,3217919.604,221,1.073\n1389,585,993,1260,403,138,686562.237,3215184.932,81,1.043\n1681,1114,1369,1552,821,253,686562.237,3215184.932,289,1.439\n1630,1272,1400,1680,1534,822,686562.237,3215184.932,299,1.376\n921,252,760,1024,172,96,686562.237,3215184.932,221,1.179\n1616,1324,1488,1820,1299,1183,679651.421,3284608.944,143,0.915\n1009,495,1172,1325,335,215,679651.421,3284608.944,133,0.815\n1059,315,1098,1258,198,101,679651.421,3284608.944,231,1.294\n1396,749,1458,1621,475,254,679651.421,3284608.944,61,1.4515\n1984,1319,1418,1749,936,837,679651.421,3284608.944,131,1.622\n264,8,529,734,11,130,679651.421,3284608.944,137,1.303\n2103,1674,1197,1853,1801,1844,679651.421,3284608.944,136,1.196\n1157,390,588,1004,96,47,679651.421,3284608.944,301,1.641\n411,194,299,658,1036,309,667997.2447,3271830.237,236,0.742\n1603,1338,1475,1768,1459,1233,667997.2447,3271830.237,143,0.663\n565,302,626,890,285,173,667997.2447,3271830.237,133,0.367\n4621,4656,3996,4268,2767,1809,667997.2447,3271830.237,232,1.347\n1118,501,743,1030,243,124,667997.2447,3271830.237,69,1.225\n1315,865,1410,1536,1049,525,667997.2447,3271830.237,61,1.485\n1673,1481,1605,1882,1350,1106,667997.2447,3271830.237,131,1.278\n814,590,1099,1198,1067,314,667997.2447,3271830.237,228,1.189\n893,236,660,939,153,68,667997.2447,3271830.237,301,1.415\n1351,615,908,1197,193,64,697054.2685,3273776.632,231,1.276\n1802,1065,1447,1680,418,237,697054.2685,3273776.632,62,0.945\n829,347,816,1099,365,313,697054.2685,3273776.632,138,0.964\n303,86,447,683,74,137,697054.2685,3273776.632,225,0.981\n1270,744,1601,1691,521,214,697054.2685,3273776.632,141,1.119\n1287,692,607,1022,92,46,697054.2685,3273776.632,298,1.732\n1410,1029,859,1204,283,118,697054.2685,3273776.632,137,1.172\n2191,1389,2591,2623,764,374,726579.9688,3252178.716,327,1.566\n1694,796,1564,1732,329,149,726579.9688,3252178.716,57,0.913\n760,358,1028,1062,221,108,726579.9688,3252178.716,249,0.811\n775,275,262,657,857,534,683724.48,3228668.76,239,0.496\n1558,1191,1383,1636,1120,796,683724.48,3228668.76,209,0.774\n1332,926,931,1218,501,276,683724.48,3228668.76,132,1.172\n1101,712,542,932,375,248,683724.48,3228668.76,288,1.455\n987,917,725,988,188,176,683724.48,3228668.76,132,1.038\n1245,728,779,1094,296,187,683724.48,3228668.76,63,1.433\n1478,1156,1253,1385,477,283,683724.48,3228668.76,307,1.721\n1319,1252,903,1220,1772,1085,683724.48,3228668.76,137,0.989\n1278,994,891,1231,379,252,683724.48,3228668.76,243,1.312\n683,103,725,978,63,24,702458.2202,3244324.361,239,1.083\n860,274,858,1118,143,77,702458.2202,3244324.361,139,0.788\n1513,1054,1553,1724,993,1005,702458.2202,3244324.361,131,0.939\n1000,232,900,1137,90,42,702458.2202,3244324.361,231,1.354\n1888,1319,1230,1730,668,439,702458.2202,3244324.361,329,1.268\n1425,928,1338,1528,866,703,702458.2202,3244324.361,224,1.054\n1072,282,639,1052,105,65,702458.2202,3244324.361,63,1.39\n657,143,687,970,68,56,702458.2202,3244324.361,138,0.978\n469,257,467,652,555,509,702458.2202,3244324.361,225,0.747\n1474,971,1660,1733,698,260,702458.2202,3244324.361,141,1.257\n1306,706,590,1023,84,39,702458.2202,3244324.361,298,1.752\n1154,533,897,1126,282,118,702458.2202,3244324.361,137,1.018\n1370,575,1459,1561,314,141,702458.2202,3244324.361,249,1.475\n977,345,957,1183,225,158,673724.7897,3214096.606,240,0.828\n1243,490,930,1203,196,80,673724.7897,3214096.606,132,1.057\n922,313,1004,1232,182,117,673724.7897,3214096.606,229,0.902\n1317,392,998,1306,133,65,673724.7897,3214096.606,81,1.002\n1626,662,1470,1686,275,138,673724.7897,3214096.606,289,1.46\n1406,759,1253,1547,762,342,673724.7897,3214096.606,72,1.125\n919,249,830,1106,132,81,673724.7897,3214096.606,132,0.886\n878,248,763,1038,146,100,673724.7897,3214096.606,221,1.095\n1111,396,964,1206,253,186,678702.6948,3207330.809,240,0.782\n1809,1174,1555,1876,1021,812,678702.6948,3207330.809,209,1.126\n1348,610,964,1267,248,107,678702.6948,3207330.809,132,0.979\n878,279,976,1202,162,101,678702.6948,3207330.809,229,0.732\n1176,405,1007,1253,207,116,678702.6948,3207330.809,71,1.392\n617,209,843,1029,135,74,678702.6948,3207330.809,136,1.076\n1280,485,786,1130,136,65,678702.6948,3207330.809,225,1.365\n1692,935,1651,1803,660,458,678702.6948,3207330.809,138,0.779\n991,287,775,1066,157,105,678702.6948,3207330.809,221,1.297\n282,11,310,661,5,86,706505.5071,3198179.439,71,0.925\n1748,816,1615,1790,318,127,706505.5071,3198179.439,57,1.041\n926,220,650,969,247,148,673541.492,3228132.671,239,0.503\n1480,932,1235,1443,588,245,673541.492,3228132.671,132,0.97\n1471,1073,1431,1539,835,396,673541.492,3228132.671,140,1.069\n1855,1408,1277,1549,621,325,673541.492,3228132.671,240,1.687\n1949,1606,2325,2255,1262,549,673541.492,3228132.671,148,0.449\n1021,327,645,966,61,49,673541.492,3228132.671,218,1.025\n1749,1293,1529,1690,1025,520,673541.492,3228132.671,67,1.571\n811,275,865,1056,197,107,673541.492,3228132.671,238,1.344\n1155,419,844,1140,174,82,673541.492,3228132.671,310,2.447\n1692,1529,1269,1505,591,327,673541.492,3228132.671,62,0.165\n689,180,599,887,61,32,673541.492,3228132.671,241,1.093\n1586,1225,1036,1331,351,220,673541.492,3228132.671,284,1.026\n2618,2750,2562,2618,1975,1604,673541.492,3228132.671,62,1.052\n1293,704,963,1241,334,137,694640.1601,3227895.54,132,1.082\n1206,446,636,1055,134,67,694640.1601,3227895.54,63,1.321\n1011,474,925,1177,365,285,694640.1601,3227895.54,229,1.689\n1369,576,918,1239,282,277,694640.1601,3227895.54,298,1.484\n1627,1267,848,1332,309,151,694640.1601,3227895.54,297,1.927\n1784,1271,1695,1802,770,438,694640.1601,3227895.54,138,0.897\n1355,587,1060,1368,402,275,694640.1601,3227895.54,259,1.062\n4387,4307,3877,4078,3234,2963,694640.1601,3227895.54,296,1.484\n962,231,402,840,34,15,698854.5608,3263515.331,238,0.844\n1322,952,1203,1430,211,194,698854.5608,3263515.331,210,1.139\n1605,775,1304,1535,389,216,698854.5608,3263515.331,133,0.996\n2346,1857,1972,2205,1069,807,698854.5608,3263515.331,231,1.33\n2309,1734,1797,2265,1705,1559,698854.5608,3263515.331,224,1.122\n1798,973,1458,1692,399,220,698854.5608,3263515.331,62,0.985\n922,182,710,1033,135,103,698854.5608,3263515.331,138,0.929\n503,213,520,750,165,140,698854.5608,3263515.331,225,0.892\n941,560,1094,1188,261,183,698854.5608,3263515.331,227,1.028\n1298,674,623,1041,99,42,698854.5608,3263515.331,298,1.739\n1549,894,1126,1446,475,220,698854.5608,3263515.331,137,0.913\n656,118,683,857,67,55,701374.6094,3253888.123,239,1.202\n658,276,859,1055,397,411,701374.6094,3253888.123,210,0.625\n1620,1074,1581,1762,990,1005,701374.6094,3253888.123,131,1.022\n1228,418,625,1061,104,50,701374.6094,3253888.123,63,1.41\n790,129,670,980,59,36,701374.6094,3253888.123,138,0.973\n401,176,446,610,156,134,701374.6094,3253888.123,225,0.883\n1002,273,937,1190,242,133,701374.6094,3253888.123,227,0.344\n1247,582,556,989,74,40,701374.6094,3253888.123,298,1.575\n955,219,713,982,103,39,694551.6216,3233095.551,239,0.987\n896,310,823,1095,167,77,694551.6216,3233095.551,139,0.784\n1870,1246,1626,1822,967,914,694551.6216,3233095.551,131,0.936\n1237,466,630,1061,132,75,694551.6216,3233095.551,63,1.349\n1201,562,798,1230,315,266,694551.6216,3233095.551,138,1.067\n858,443,861,1071,334,261,694551.6216,3233095.551,229,1.652\n1314,867,573,1010,116,49,694551.6216,3233095.551,298,1.7945\n1966,1196,1607,1825,452,285,694551.6216,3233095.551,296,1.5355\n2054,2317,2544,2536,3122,1866,673430.2695,3269106.894,189,1.57\n1520,808,1052,1410,591,482,673430.2695,3269106.894,251,1.11\n843,1232,835,1109,657,329,673430.2695,3269106.894,116,0.882\n1509,1241,1668,1677,756,313,673430.2695,3269106.894,137,0.646\n1175,635,1199,1351,341,156,673430.2695,3269106.894,215,0.939\n1093,1112,1170,1241,389,163,673430.2695,3269106.894,244,1.18\n1599,1309,1741,1844,564,247,673430.2695,3269106.894,290,1.6\n1731,1207,1660,1749,749,422,673430.2695,3269106.894,101,1.51\n1637,1756,1678,1761,1015,752,673430.2695,3269106.894,149,0.714\n1081,518,777,1060,483,220,673430.2695,3269106.894,229,1.39\n1509,881,1512,1614,592,394,673430.2695,3269106.894,264,1.52\n1667,1298,1574,1716,888,509,673430.2695,3269106.894,99,1.07\n692,1030,675,891,472,241,673430.2695,3269106.894,141,0.623\n544,916,417,725,431,219,673430.2695,3269106.894,183,1.49\n725,917,735,925,371,194,673430.2695,3269106.894,213,1.09\n994,613,933,1064,373,277,673430.2695,3269106.894,232,1.252\n1239,751,1285,1423,353,137,673430.2695,3269106.894,284,1.75\n1058,502,837,1079,271,168,673430.2695,3269106.894,289,1.88\n1231,1172,1431,1472,645,296,673430.2695,3269106.894,160,1.02\n640,364,664,928,310,214,673430.2695,3269106.894,203,1.55\n1108,806,1261,1389,378,146,673430.2695,3269106.894,216,1.91\n962,401,970,1183,254,139,673430.2695,3269106.894,244,1.91\n1321,1068,1147,1353,446,211,673430.2695,3269106.894,286,2.02\n1246,689,774,1100,297,140,673430.2695,3269106.894,69,1.188\n1347,1171,1435,1539,710,400,673430.2695,3269106.894,61,1.493\n854,893,1041,1136,457,251,673430.2695,3269106.894,137,1.114\n1239,1340,1112,1311,754,340,673430.2695,3269106.894,137,1.02\n742,198,611,908,125,45,673430.2695,3269106.894,301,1.25\n6,0,34,58,2,67,757700.122,3255151.304,133,0.814\n733,695,762,797,657,577,757700.122,3255151.304,133,1.145\n13,9,205,172,9,129,716086.6747,3226483.616,239,0.65\n58,3,104,127,1,40,716086.6747,3226483.616,228,0.513\n1656,733,1553,1736,306,138,716086.6747,3226483.616,57,0.944\n1191,987,1124,1357,878,783,694122.9933,3207214.215,209,1.151\n309,5,282,608,0,35,694122.9933,3207214.215,226,1.148\n1290,555,902,1201,188,95,694122.9933,3207214.215,132,1.01\n650,199,799,1005,127,77,694122.9933,3207214.215,217,0.532\n732,430,944,1016,423,300,694122.9933,3207214.215,299,1.371\n751,237,848,1053,135,75,694122.9933,3207214.215,225,0.903\n1660,820,1019,1456,240,153,694122.9933,3207214.215,297,2.079\n1334,843,1614,1699,658,456,694122.9933,3207214.215,138,0.767\n150,55,374,556,40,165,743442.8614,3221086.17,300,0.527\n182,26,463,570,3,77,743442.8614,3221086.17,245,0.229\n1313,463,990,1278,144,74,674281.2927,3209525.261,81,0.989\n1592,629,1443,1664,259,130,674281.2927,3209525.261,289,1.608\n1273,477,992,1262,223,128,674281.2927,3209525.261,71,1.254\n987,279,827,1111,139,87,674281.2927,3209525.261,132,1.12\n1019,306,782,1078,159,111,674281.2927,3209525.261,221,1.053\n1324,707,932,1244,246,117,672276.8649,3208607.996,81,1.024\n1623,989,1496,1671,636,266,672276.8649,3208607.996,289,1.233\n1336,1182,961,1217,738,445,672276.8649,3208607.996,71,1.325\n1181,661,784,1106,279,148,672276.8649,3208607.996,132,0.852\n1414,605,1098,1342,226,110,667274.5513,3205285.346,81,1.119\n1608,772,1494,1686,333,146,667274.5513,3205285.346,289,1.207\n1229,710,861,1165,368,193,667274.5513,3205285.346,72,1.301\n1086,754,701,1064,221,109,667274.5513,3205285.346,132,0.856\n1289,607,1057,1305,364,179,667274.5513,3205285.346,225,1.176\n1205,789,760,1082,218,103,667274.5513,3205285.346,221,1.228\n1320,500,981,1267,148,68,673065.5558,3200225.57,81,1.264\n1649,825,1486,1685,345,167,673065.5558,3200225.57,289,1.181\n1344,738,989,1240,254,170,673065.5558,3200225.57,71,1.151\n1431,557,947,1370,178,85,673065.5558,3200225.57,299,0.87\n1743,1386,1686,1837,997,443,673065.5558,3200225.57,121,1.48\n1464,812,969,1293,229,112,653325.3264,3224539.59,81,1.259\n1527,909,1660,1802,419,195,653325.3264,3224539.59,289,1.762\n1849,1497,1605,1864,1238,561,653325.3264,3224539.59,72,1.573\n1109,428,862,1185,254,178,653325.3264,3224539.59,132,1.123\n1567,1210,1548,1659,1174,1000,653325.3264,3224539.59,76,1.37\n792,304,547,858,120,63,653325.3264,3224539.59,238,1.173\n1574,690,1404,1627,290,139,653325.3264,3224539.59,311,1.674\n1441,1193,882,1233,342,154,653325.3264,3224539.59,61,0.269\n665,304,703,889,272,184,653325.3264,3224539.59,243,1.242\n1629,1460,1055,1364,486,346,653325.3264,3224539.59,63,1.054\n1399,834,1265,1443,424,172,653325.3264,3224539.59,222,1.442\n2372,2016,2458,2490,2255,1541,648406.6436,3224718.728,239,3.478\n1509,1061,984,1457,812,715,648406.6436,3224718.728,217,1.071\n1394,1090,998,1249,379,191,648406.6436,3224718.728,61,0.291\n1374,1501,1277,1476,1190,498,648406.6436,3224718.728,130,1.102\n964,673,720,1024,537,340,648406.6436,3224718.728,220,1.718\n1354,521,904,1242,164,80,665353.2242,3214793.717,81,1.114\n1557,681,1556,1729,346,161,665353.2242,3214793.717,289,1.411\n1310,819,1101,1353,538,265,665353.2242,3214793.717,72,1.257\n1163,426,775,1103,161,83,665353.2242,3214793.717,132,1.016\n990,395,1035,1249,251,139,665353.2242,3214793.717,136,1.24\n818,217,732,1004,129,58,665353.2242,3214793.717,221,1.171\n1436,637,994,1290,188,108,659122.6103,3227013.752,81,1.234\n878,164,497,887,74,34,659122.6103,3227013.752,218,0.921\n1271,718,1144,1336,463,254,659122.6103,3227013.752,75,1.422\n636,111,631,896,49,30,659122.6103,3227013.752,238,1.082\n1017,211,878,1192,105,43,659122.6103,3227013.752,309,1.862\n981,444,944,1188,343,257,659122.6103,3227013.752,131,1.313\n1279,1943,1208,1392,1819,862,650014.4339,3211933.353,240,3.627\n861,1314,474,772,1434,721,650014.4339,3211933.353,291,2.303\n908,917,608,933,1417,433,650014.4339,3211933.353,216,0.713\n1425,1461,1153,1347,596,368,650014.4339,3211933.353,239,1.636\n2018,2345,2081,2182,2506,1532,650014.4339,3211933.353,283,1.715\n1004,1943,613,957,1597,809,650014.4339,3211933.353,132,1.387\n2459,3025,2433,2562,2655,1841,650014.4339,3211933.353,223,1.218\n963,225,619,953,170,51,662940.048,3224838.674,218,1.217\n1360,810,1167,1412,588,314,662940.048,3224838.674,75,1.462\n1359,648,925,1226,278,147,662778.0726,3214978.728,81,1.145\n1481,977,1459,1615,446,207,662778.0726,3214978.728,289,1.742\n1364,1349,1032,1314,603,300,662778.0726,3214978.728,72,1.225\n1202,634,772,1110,333,171,662778.0726,3214978.728,132,1.024\n3528,3849,3579,3812,3359,1365,662778.0726,3214978.728,226,0.062\n1155,621,1240,1426,392,212,662778.0726,3214978.728,311,1.379\n1132,661,1090,1275,442,238,662778.0726,3214978.728,60,0.233\n851,841,908,1044,433,213,662778.0726,3214978.728,222,1.564\n1593,843,1253,1505,315,148,644484.7449,3387419.124,89,2.361\n1054,303,828,1122,137,63,644484.7449,3387419.124,217,1.909\n3128,3008,2806,2949,2444,2273,644484.7449,3387419.124,139,2.478\n1143,350,537,962,61,34,644484.7449,3387419.124,218,2.651\n1369,494,1222,1411,266,110,644484.7449,3387419.124,296,1.576\n1542,652,1409,1581,346,167,644484.7449,3387419.124,127,2.271\n1556,758,1612,1698,403,194,644475.1531,3387418.995,218,2.796\n1501,956,916,1334,559,520,644475.1531,3387418.995,283,2.721\n1729,994,1277,1569,446,202,644475.1531,3387418.995,130,1.926\n1046,345,887,1142,144,60,673111.9193,3332461.298,229,2.452\n1353,855,644,1054,157,99,673111.9193,3332461.298,236,1.043\n1323,586,1213,1423,299,177,673111.9193,3332461.298,216,1.98\n1288,549,1246,1441,300,171,673111.9193,3332461.298,295,1.578\n1942,1262,2010,2030,771,359,673111.9193,3332461.298,217,2.091\n1222,432,682,1056,74,25,673111.9193,3332461.298,244,1.535\n1230,1241,815,1063,1538,771,659611.8986,3215632.881,81,1.15\n1427,1343,1401,1523,836,552,659611.8986,3215632.881,289,1.741\n1503,1838,1194,1461,1088,703,659611.8986,3215632.881,72,1.224\n972,1069,675,952,1453,669,659611.8986,3215632.881,132,0.933\n3018,3536,2736,2903,2608,1150,659611.8986,3215632.881,226,0.044\n1199,1606,1241,1352,1018,588,659611.8986,3215632.881,311,1.765\n1331,1336,554,1003,539,384,659611.8986,3215632.881,60,0.246\n2009,2001,1987,2028,1698,1490,659611.8986,3215632.881,62,1.082\n1736,1829,1233,1577,1333,1123,659611.8986,3215632.881,223,1.163\n929,1164,744,941,1166,702,643223.7775,3221914.136,292,2.716\n1191,1313,785,1160,942,593,643223.7775,3221914.136,217,1.204\n1179,1190,1011,1217,1064,733,643223.7775,3221914.136,76,1.947\n683,1097,399,733,840,363,643223.7775,3221914.136,238,1.687\n946,1229,655,939,1093,620,643223.7775,3221914.136,316,2.626\n1190,1384,900,1114,1181,740,643223.7775,3221914.136,61,0.326\n1046,1095,698,960,2093,1852,643223.7775,3221914.136,63,1.029\n822,1706,605,869,1242,569,643223.7775,3221914.136,220,1.726\n1847,1387,1661,1939,1236,876,659963.2468,3222579.034,209,1.215\n1159,491,1021,1265,375,287,659963.2468,3222579.034,229,1.345\n1406,673,944,1244,197,120,659963.2468,3222579.034,81,1.307\n1590,721,1671,1808,371,172,659963.2468,3222579.034,289,1.498\n1638,1208,1360,1614,925,706,659963.2468,3222579.034,72,1.243\n1058,339,819,1106,199,141,659963.2468,3222579.034,132,0.886\n1056,430,987,1225,294,200,659963.2468,3222579.034,136,1.375\n629,355,810,855,405,164,659963.2468,3222579.034,226,0.202\n1628,1275,1104,1390,366,217,659963.2468,3222579.034,63,1.123\n1324,1279,1255,1381,864,596,659963.2468,3222579.034,222,1.495\n1059,436,961,1220,251,151,665804.7051,3222662.052,229,0.973\n955,391,521,901,9,14,665804.7051,3222662.052,218,0.707\n1233,499,714,1087,187,69,665804.7051,3222662.052,310,1.497\n1407,971,888,1187,181,65,665804.7051,3222662.052,299,1.251\n1592,948,1279,1544,811,692,667362.0436,3210675.647,209,1.227\n1115,454,770,1054,168,62,667362.0436,3210675.647,132,1.061\n1172,452,982,1252,212,124,667362.0436,3210675.647,229,0.826\n1376,506,965,1286,163,75,667362.0436,3210675.647,81,1.083\n1638,694,1605,1794,329,158,667362.0436,3210675.647,289,1.311\n1434,775,965,1257,260,155,667362.0436,3210675.647,71,1.271\n962,276,805,1106,156,91,667362.0436,3210675.647,132,0.921\n968,333,953,1198,196,92,667362.0436,3210675.647,136,1.262\n2390,1724,1990,2333,975,727,667362.0436,3210675.647,283,1.086\n1000,279,771,1077,140,92,667362.0436,3210675.647,221,1.121\n1054,445,1023,1263,269,165,663251.7518,3220041.78,229,0.955\n1304,471,905,1215,168,75,663251.7518,3220041.78,81,1.163\n1530,695,1549,1716,477,176,663251.7518,3220041.78,289,1.489\n873,242,753,1030,136,65,663251.7518,3220041.78,221,1.289\n1450,797,1312,1532,501,327,669454.236,3217536.932,240,0.81\n940,345,1011,1237,208,131,669454.236,3217536.932,229,0.965\n1275,381,949,1265,144,70,669454.236,3217536.932,81,1.056\n1692,727,1531,1747,314,165,669454.236,3217536.932,289,1.434\n1350,651,1036,1337,352,164,669454.236,3217536.932,72,1.116\n1165,374,772,1111,144,89,669454.236,3217536.932,132,0.756\n873,224,723,1010,116,62,669454.236,3217536.932,221,1.142\n1796,1090,1452,1799,919,761,674043.9593,3203932.852,209,1.112\n1183,474,802,1110,167,76,674043.9593,3203932.852,132,1.233\n895,297,944,1182,168,107,674043.9593,3203932.852,229,0.898\n1263,344,1025,1308,133,66,674043.9593,3203932.852,81,0.993\n1627,626,1534,1737,265,124,674043.9593,3203932.852,289,1.212\n1277,456,1006,1277,211,128,674043.9593,3203932.852,71,1.16\n1420,1100,1427,1620,1080,1036,674043.9593,3203932.852,227,0.817\n1320,523,936,1219,185,91,674043.9593,3203932.852,225,1.356\n1498,814,1573,1718,582,411,674043.9593,3203932.852,138,0.745\n1011,292,790,1085,161,111,674043.9593,3203932.852,221,1.035\n1301,521,875,1182,268,192,693890.6113,3316269.248,249,1.8\n573,216,696,907,186,150,693890.6113,3316269.248,211,1.278\n1341,1269,690,1048,184,73,693890.6113,3316269.248,80,1.24\n1388,572,1240,1446,300,150,693890.6113,3316269.248,295,1.562\n1819,1627,1475,1641,525,284,693890.6113,3316269.248,71,1.3535\n1540,1001,1014,1319,317,189,693890.6113,3316269.248,291,1.856\n1300,1061,512,963,98,36,693890.6113,3316269.248,68,1.71\n1253,510,695,1138,179,66,666854.0879,3183679.246,293,2.658\n1239,425,1025,1285,236,123,666854.0879,3183679.246,71,1.148\n1491,811,1168,1527,700,599,666854.0879,3183679.246,217,0.776\n1620,1003,1374,1560,415,163,666854.0879,3183679.246,287,1.457\n2822,2576,2716,2860,1933,1804,666854.0879,3183679.246,77,1.231\n1034,446,1124,1196,350,167,666854.0879,3183679.246,218,1.8841\n1306,691,561,1026,90,43,666854.0879,3183679.246,298,1.39\n1378,736,774,1139,192,78,666854.0879,3183679.246,285,0.889\n1420,1136,835,1207,417,204,649004.6242,3174445.223,72,2.338\n1434,1451,1383,1358,776,337,649004.6242,3174445.223,123,1.4952\n1548,1211,919,1277,277,104,649004.6242,3174445.223,220,1.39\n1351,717,631,1110,165,76,664526.8305,3172037.05,293,2.658\n1213,418,1030,1292,198,119,664526.8305,3172037.05,71,1.308\n1372,798,1230,1541,713,628,664526.8305,3172037.05,217,1.257\n1797,1358,1584,1741,525,230,664526.8305,3172037.05,287,1.543\n1571,771,1427,1578,317,131,664526.8305,3172037.05,217,1.1014\n1636,1082,758,1306,222,121,664526.8305,3172037.05,297,1.549\n786,383,875,1122,317,258,664526.8305,3172037.05,218,0.406\n843,211,855,1094,200,89,680332.4167,3177759.38,226,0.602\n1000,357,1054,1309,327,251,680332.4167,3177759.38,293,2.595\n1154,400,1005,1247,184,103,680332.4167,3177759.38,71,1.081\n1122,697,1062,1395,658,652,680332.4167,3177759.38,217,0.488\n1624,875,1658,1727,499,227,680332.4167,3177759.38,287,1.031\n1641,1081,1687,1855,1097,1045,680332.4167,3177759.38,77,1.271\n1281,395,1148,1435,216,157,680332.4167,3177759.38,300,1.479\n1036,464,1249,1375,261,131,680332.4167,3177759.38,218,1.3783\n1278,599,582,1023,90,56,680332.4167,3177759.38,298,1.3\n774,318,843,1062,268,219,680332.4167,3177759.38,218,0.325\n1428,853,864,1217,227,97,680332.4167,3177759.38,281,1.22\n709,166,871,1120,86,56,686023.7517,3162933.969,291,1.624\n1021,726,1310,1342,593,333,686023.7517,3162933.969,71,1.064\n1008,641,1137,1338,511,277,686023.7517,3162933.969,125,0.899\n891,343,917,1157,260,220,686023.7517,3162933.969,215,0.7098\n1210,394,661,1070,111,69,686023.7517,3162933.969,298,1.759\n1424,1029,1550,1788,1061,458,686023.7517,3162933.969,130,0.583\n667,326,780,994,260,215,686023.7517,3162933.969,218,0.09\n1401,734,918,1248,211,108,686023.7517,3162933.969,281,1.27\n1062,642,1138,1332,487,425,686166.9022,3157613.537,215,1.113\n1215,435,639,1056,135,73,686166.9022,3157613.537,298,1.559\n942,564,1040,1204,495,229,686166.9022,3157613.537,130,0.542\n1232,667,1124,1301,259,139,686166.9022,3157613.537,281,1.28\n1238,369,812,1146,123,67,655316.4743,3169638.04,292,1.976\n1304,626,880,1218,293,150,655316.4743,3169638.04,72,1.876\n1228,427,610,1037,125,98,655316.4743,3169638.04,288,1.994\n7307,4191,7179,7808,8596,4352,655316.4743,3169638.04,218,3.9339\n1044,350,733,1012,129,50,655316.4743,3169638.04,219,0.303\n1380,897,687,1087,149,79,655316.4743,3169638.04,285,1.7\n1904,1132,1313,1721,844,736,671731.7926,3343630.391,222,1.577\n1569,952,1335,1489,277,102,671731.7926,3343630.391,237,1.588\n962,304,786,1084,191,156,671731.7926,3343630.391,219,1.872\n1456,657,1308,1477,334,195,671731.7926,3343630.391,295,1.405\n1874,1147,1445,1806,966,895,671731.7926,3343630.391,126,1.969\n1868,1073,2223,2207,606,219,671731.7926,3343630.391,217,2.08\n1396,687,875,1198,143,58,671731.7926,3343630.391,280,2.447\n1169,347,977,1249,163,71,669955.384,3190754.188,293,2.833\n1236,435,994,1267,211,128,669955.384,3190754.188,71,1.162\n1472,836,1168,1537,717,631,669955.384,3190754.188,217,0.676\n1613,1048,1352,1536,391,145,669955.384,3190754.188,287,1.382\n1358,590,1441,1587,332,157,669955.384,3190754.188,218,2.0166\n1294,688,554,1005,81,44,669955.384,3190754.188,298,1.396\n344,10,264,609,76,31,669955.384,3190754.188,219,0.375\n1377,759,1216,1522,633,526,678937.1425,3192175.611,222,0.571\n881,216,937,1164,121,66,678937.1425,3192175.611,293,2.672\n1201,448,910,1252,233,127,678937.1425,3192175.611,72,1.232\n1339,760,1221,1439,518,313,678937.1425,3192175.611,225,1.278\n1691,1146,1048,1446,254,146,678937.1425,3192175.611,297,1.914\n1535,943,1644,1767,750,506,678937.1425,3192175.611,138,0.612\n441,322,595,582,271,136,722640.1815,3179444.766,148,0.7448\n254,1,464,690,13,181,722640.1815,3179444.766,227,0.518\n574,261,835,990,196,165,693902.9989,3187736.332,231,0.541\n596,121,694,911,61,43,693902.9989,3187736.332,226,0.6328\n334,22,222,612,17,102,693902.9989,3187736.332,217,0.2212\n763,407,1009,1164,296,165,693902.9989,3187736.332,72,1.116\n1466,1390,1361,1570,1328,1187,693902.9989,3187736.332,227,0.395\n1604,698,1129,1485,233,144,693902.9989,3187736.332,297,1.965\n1151,691,1420,1512,528,377,693902.9989,3187736.332,138,0.738\n1298,512,866,1197,169,90,655436.1176,3165049.519,292,1.919\n1378,869,907,1245,347,189,655436.1176,3165049.519,72,1.716\n1406,971,563,1055,172,125,655436.1176,3165049.519,288,1.777\n899,311,954,1167,179,108,675901.8597,3147220.888,290,2.296\n503,81,634,876,41,13,675901.8597,3147220.888,216,0.313\n1157,537,1522,1605,274,144,675901.8597,3147220.888,285,1.035\n1031,461,1403,1487,261,113,675901.8597,3147220.888,217,0.753\n512,102,637,876,57,40,675901.8597,3147220.888,70,1.2\n1159,441,1215,1449,351,201,675901.8597,3147220.888,130,0.535\n1322,657,1462,1606,327,282,675901.8597,3147220.888,282,0.447\n1305,485,1155,1355,411,306,664763.6151,3162859.726,293,2.735\n942,380,975,1144,235,141,664763.6151,3162859.726,71,1.386\n1479,824,1208,1544,705,616,664763.6151,3162859.726,217,0.919\n1661,1175,1326,1550,400,169,664763.6151,3162859.726,287,1.657\n1332,541,1373,1519,264,110,664763.6151,3162859.726,217,1.5594\n1613,926,708,1298,217,125,664763.6151,3162859.726,297,1.307\n614,349,782,948,286,243,664763.6151,3162859.726,218,0.098\n1426,829,965,1245,408,217,702665.9821,3319199.518,249,1.406\n1164,1053,570,960,993,250,702665.9821,3319199.518,225,1.044\n1544,1044,1062,1439,758,623,702665.9821,3319199.518,207,1.184\n1247,1290,584,953,1161,556,702665.9821,3319199.518,80,1.136\n1793,1728,1539,1678,1258,689,702665.9821,3319199.518,71,1.371333\n1445,2002,1052,1365,2376,705,702665.9821,3319199.518,125,1.517\n1459,1013,961,1255,532,187,702665.9821,3319199.518,291,1.734\n1718,1610,1416,1616,830,412,702665.9821,3319199.518,49,1.274\n1203,1154,513,882,325,143,702665.9821,3319199.518,68,1.546\n838,168,876,1153,80,53,675486.7737,3163847.022,291,2.292\n1225,806,1497,1595,711,423,675486.7737,3163847.022,71,1.095\n1592,1303,1472,1857,1218,1106,675486.7737,3163847.022,215,0.938\n1970,1289,1986,2026,81,237,675486.7737,3163847.022,287,1.135\n946,486,1077,1304,379,212,675486.7737,3163847.022,125,0.942\n1024,574,1380,1442,455,288,675486.7737,3163847.022,218,1.2582\n1605,768,902,1384,209,141,675486.7737,3163847.022,297,1.292\n526,184,840,990,99,58,675486.7737,3163847.022,72,1.282\n645,294,748,984,234,199,675486.7737,3163847.022,218,0.09\n1368,605,954,1280,233,107,675486.7737,3163847.022,281,1.19\n619,174,851,1045,187,94,684493.2654,3151299.792,291,2.566\n1102,546,1079,1215,359,210,684493.2654,3151299.792,71,1.053\n1950,1228,1234,1796,1052,1191,684493.2654,3151299.792,215,0.726\n954,391,1040,1178,218,117,684493.2654,3151299.792,286,0.812\n657,314,701,875,259,203,684493.2654,3151299.792,216,0.484\n866,470,1035,1208,423,248,684493.2654,3151299.792,216,0.6096\n1198,409,659,1059,112,79,684493.2654,3151299.792,298,1.164\n1060,625,1321,1436,555,298,684493.2654,3151299.792,71,1.137\n1538,854,1228,1462,267,161,684493.2654,3151299.792,282,1.12\n557,168,842,998,121,99,693135.7564,3148943.343,227,0.5488\n559,225,842,967,203,118,693135.7564,3148943.343,216,0.6815\n497,368,658,699,328,316,693135.7564,3148943.343,284,0.712\n951,614,1293,1391,570,369,693135.7564,3148943.343,71,0.928\n1199,395,1198,1393,189,111,693135.7564,3148943.343,282,0.464\n1008,395,1013,1151,190,113,687282.8301,3145333.687,286,0.806\n870,434,1109,1272,446,340,687282.8301,3145333.687,216,0.5339\n1115,756,1304,1455,540,336,687282.8301,3145333.687,130,0.544\n1466,682,1193,1425,228,129,687282.8301,3145333.687,282,1.06\n1328,1400,798,1112,740,534,642507.5504,3175650.115,72,2.887\n1387,1361,884,1168,406,231,642507.5504,3175650.115,213,2.916\n1316,1255,769,1115,357,206,642507.5504,3175650.115,288,3.414\n1449,1595,1695,1609,1630,671,642507.5504,3175650.115,218,1.002\n1247,1363,519,962,485,254,642507.5504,3175650.115,297,1.811\n1399,1412,1262,1291,802,534,642507.5504,3175650.115,285,3.31\n1252,395,854,1177,140,65,655177.391,3174215.241,292,2.134\n1333,724,807,1190,306,154,655177.391,3174215.241,72,1.957\n1208,367,654,1064,135,99,655177.391,3174215.241,288,1.502\n1900,1247,1685,1885,1081,1056,655177.391,3174215.241,218,1.459\n886,251,728,1014,127,49,655177.391,3174215.241,219,0.898\n1386,899,728,1085,164,79,655177.391,3174215.241,285,1.21\n80,8,204,370,4,116,718753.2614,3160881.668,217,0.2464\n1058,1070,993,1180,1029,917,718753.2614,3160881.668,215,0.294\n123,9,481,530,26,147,718753.2614,3160881.668,300,1.042\n21,4,86,175,2,260,718753.2614,3160881.668,215,0.4583\n505,332,802,877,277,248,718753.2614,3160881.668,72,1.219\n908,168,543,949,58,41,664633.3326,3167947.157,228,0.742\n2012,1431,1360,1775,1069,947,664633.3326,3167947.157,218,0.4536\n2245,1201,2042,2263,504,207,664633.3326,3167947.157,311,1.3944\n1329,526,801,1195,165,85,664633.3326,3167947.157,293,2.644\n1277,449,1054,1310,206,114,664633.3326,3167947.157,71,1.19\n1529,839,1221,1549,705,618,664633.3326,3167947.157,217,1.026\n1539,731,1357,1526,278,107,664633.3326,3167947.157,217,1.245\n1638,987,791,1329,220,121,664633.3326,3167947.157,297,1.326\n841,378,880,1141,301,249,664633.3326,3167947.157,218,0.234\n1619,969,1252,1605,816,703,685962.0612,3347589.386,222,1.668\n1100,515,991,1272,392,297,685962.0612,3347589.386,150,1.508\n1312,490,1069,1288,172,71,685962.0612,3347589.386,237,1.395\n1765,1244,1328,1572,483,356,685962.0612,3347589.386,86,1.468\n735,296,752,1021,229,203,685962.0612,3347589.386,219,1.859\n1238,407,1140,1411,472,389,685962.0612,3347589.386,297,1.469\n1623,937,1429,1625,581,289,685962.0612,3347589.386,49,1.72\n1616,1017,1436,1753,942,845,685962.0612,3347589.386,126,1.67\n1302,519,1231,1399,267,144,685962.0612,3347589.386,223,1.414\n901,301,968,1162,171,95,685962.0612,3347589.386,221,1.18\n519,179,827,964,126,102,695706.7875,3162880.968,227,0.5768\n1013,869,1103,1231,738,612,695706.7875,3162880.968,216,0.266\n1174,391,1224,1438,195,117,695706.7875,3162880.968,309,1.2852\n685,279,1071,1179,252,192,695706.7875,3162880.968,300,1.429\n624,323,813,993,267,230,695706.7875,3162880.968,215,1.0304\n1259,542,669,1062,103,70,695706.7875,3162880.968,298,0.859\n525,287,844,951,238,207,695706.7875,3162880.968,72,1.066\n980,777,1176,1280,762,733,695706.7875,3162880.968,223,0.046\n1331,548,1010,1286,212,112,695706.7875,3162880.968,281,0.508\n1074,1040,517,916,950,270,657968.2739,3150670.02,214,0.694\n1558,741,1121,1430,351,131,657968.2739,3150670.02,309,1.9068\n1334,607,957,1227,262,126,657968.2739,3150670.02,290,2.77\n1123,915,715,1041,434,146,657968.2739,3150670.02,214,0.857\n1318,494,888,1204,170,103,657968.2739,3150670.02,298,2.472\n4716,4724,4852,4753,3209,2741,657968.2739,3150670.02,125,1.322\n1518,1587,1431,1562,917,324,657968.2739,3150670.02,219,1.5261\n513,664,202,525,451,139,657968.2739,3150670.02,215,0.44\n981,335,968,1188,191,109,667616.8876,3149472.927,290,2.587\n1131,630,1398,1470,647,298,667616.8876,3149472.927,124,0.8568\n900,197,653,976,72,26,667616.8876,3149472.927,216,0.388\n1711,904,1551,1716,559,358,667616.8876,3149472.927,75,1.336\n1432,741,955,1260,264,158,667616.8876,3149472.927,74,1.266\n792,165,678,996,88,72,667616.8876,3149472.927,70,1.123\n1670,1421,1579,1926,1429,1280,667616.8876,3149472.927,216,0.171\n1327,880,1382,1492,694,386,660500.4999,3156092.696,71,1.666\n2056,1354,1495,1941,1152,1039,660500.4999,3156092.696,215,1.101\n1475,981,1326,1507,440,165,660500.4999,3156092.696,287,2.218\n1743,991,1636,1888,498,360,660500.4999,3156092.696,300,2.15\n1594,1016,796,1307,242,117,660500.4999,3156092.696,297,1.398\n1122,412,985,1273,281,218,660500.4999,3156092.696,72,1.074\n652,395,780,960,341,268,660500.4999,3156092.696,218,0.193\n1571,815,1185,1506,271,111,660500.4999,3156092.696,282,0.857\n1041,403,986,1208,217,113,666196.6717,3142467.673,290,2.672\n1004,371,680,1006,142,69,666196.6717,3142467.673,214,0.869\n1433,837,1494,1644,338,171,666196.6717,3142467.673,285,1.844\n1199,385,970,1260,247,185,666196.6717,3142467.673,298,2.845\n1316,646,1522,1612,352,136,666196.6717,3142467.673,217,1.5323\n846,172,660,998,98,69,666196.6717,3142467.673,70,1.081\n1825,1536,1641,2012,1412,1254,666196.6717,3142467.673,216,0.224\n508,284,914,900,364,290,706121.9202,3133293.537,299,1.228\n772,920,856,849,911,702,575124.6212,3096406.265,293,6.136\n1376,1191,1037,1282,652,373,575124.6212,3096406.265,68,3.97\n875,2339,487,856,1343,465,575124.6212,3096406.265,214,4.333\n1289,1731,876,1156,928,519,575124.6212,3096406.265,287,4.72\n2090,2112,2009,2116,1446,652,575124.6212,3096406.265,215,7.82\n1252,1871,1235,1406,2087,1355,575124.6212,3096406.265,283,2.926\n1411,674,1138,1473,556,498,674451.7621,3141877.11,225,0.7168\n941,613,1292,1343,848,644,674451.7621,3141877.11,124,0.8204\n596,131,816,1010,65,37,674451.7621,3141877.11,214,0.726\n949,277,968,1198,209,167,674451.7621,3141877.11,298,1.826\n1424,678,916,1237,194,111,674451.7621,3141877.11,74,1.186\n1043,486,1427,1500,276,128,674451.7621,3141877.11,217,0.6432\n448,7,391,760,1,43,674451.7621,3141877.11,70,1.023\n1603,1379,1571,1768,1131,1027,674451.7621,3141877.11,216,0.172\n1053,379,1248,1410,192,109,674451.7621,3141877.11,282,1.04\n1177,445,662,1044,112,58,655569.9205,3125903.465,214,0.957\n811,250,783,1044,148,86,655569.9205,3125903.465,129,1.207\n1378,703,1280,1500,377,196,655569.9205,3125903.465,71,1.053\n1364,982,1331,1480,1198,617,618444.2537,3131505.58,218,1.821\n1695,1426,1605,1718,1029,421,618444.2537,3131505.58,127,1.518\n1231,480,860,1193,302,240,618444.2537,3131505.58,217,1.712\n1382,765,933,1213,208,109,618444.2537,3131505.58,288,1.44\n1662,1652,1568,1680,1383,637,618444.2537,3131505.58,130,1.649\n1359,864,860,1160,221,102,618444.2537,3131505.58,285,1.29\n704,1110,138,659,510,238,661046.4452,3134014.474,290,2.622\n483,2394,455,705,851,308,661046.4452,3134014.474,214,0.807\n558,916,385,747,279,242,661046.4452,3134014.474,285,2.226\n925,646,840,982,308,175,661046.4452,3134014.474,298,2.73\n992,274,416,886,796,411,661046.4452,3134014.474,70,1.023\n1098,1382,730,1047,1438,797,618475.5048,3139165.596,72,1.859\n1839,2344,2005,2051,2268,1076,618475.5048,3139165.596,127,1.655\n833,1279,492,834,807,371,618475.5048,3139165.596,217,1.991\n1038,1238,725,991,664,301,618475.5048,3139165.596,288,1.643\n2549,2514,2482,2469,1667,935,618475.5048,3139165.596,79,1.874\n1289,1987,1249,1369,1864,775,618475.5048,3139165.596,130,1.795\n1525,1908,1438,1576,1685,984,618475.5048,3139165.596,73,1.857\n1090,1643,785,1061,1383,666,618475.5048,3139165.596,285,1.54\n1373,1604,1407,1439,1720,769,618790.0819,3135178.155,294,1.779\n1102,975,736,1076,1550,808,618790.0819,3135178.155,72,1.795\n724,1835,418,701,2281,664,618790.0819,3135178.155,217,1.935\n1128,969,673,1000,1245,509,618790.0819,3135178.155,288,1.63\n2111,1959,2155,2149,1680,893,618790.0819,3135178.155,79,1.756\n1347,1907,1325,1427,1693,828,618790.0819,3135178.155,130,1.529\n1177,1097,762,1051,1939,630,618790.0819,3135178.155,285,1.4\n1219,693,1123,1372,585,458,663518.6852,3129059.134,150,0.9212\n1711,1062,1219,1511,511,438,663518.6852,3129059.134,225,0.8988\n1256,494,1137,1329,257,144,663518.6852,3129059.134,290,2.461\n1078,505,910,1162,354,147,663518.6852,3129059.134,214,0.676\n1678,795,1537,1726,351,166,663518.6852,3129059.134,285,1.812\n1576,911,1212,1464,477,513,663518.6852,3129059.134,298,2.601\n1490,817,902,1257,206,115,663518.6852,3129059.134,74,1.236\n1465,807,1377,1645,639,461,663518.6852,3129059.134,283,0.877\n1000,219,619,989,76,48,663518.6852,3129059.134,70,0.984\n1498,1275,1427,1725,1343,1213,663518.6852,3129059.134,216,0.098\n857,865,861,897,835,760,777819.3147,3272474.034,133,1.052\n1363,849,1959,1890,18,200,777819.3147,3272474.034,57,0.517\n546,509,625,643,472,429,777819.3147,3272474.034,215,0.801\n1319,618,1104,1421,502,442,667754.5541,3124528.106,225,0.7336\n1352,971,1315,1566,691,567,667754.5541,3124528.106,216,0.5488\n1426,483,1114,1414,173,110,667754.5541,3124528.106,309,1.2852\n1161,463,1156,1329,263,148,667754.5541,3124528.106,290,2.509\n795,353,1001,1163,222,150,667754.5541,3124528.106,214,0.694\n2701,2240,2410,2682,2213,1764,667754.5541,3124528.106,75,1.1045\n1188,345,915,1203,160,114,667754.5541,3124528.106,298,2.526\n248,192,337,380,174,120,684776.7253,3131278.264,247,0.567\n561,138,801,1005,75,69,684776.7253,3131278.264,291,1.956\n1013,580,1142,1343,427,484,684776.7253,3131278.264,298,1.086\n1121,403,988,1199,223,142,684776.7253,3131278.264,74,0.974\n584,228,827,979,167,106,684776.7253,3131278.264,216,0.9234\n51,1,197,339,27,180,684776.7253,3131278.264,283,0.361\n861,333,1189,1296,176,110,684776.7253,3131278.264,282,0.641\n1683,914,1639,1737,468,223,637412.1543,3110991.267,290,2.362\n1243,582,747,1065,158,113,637412.1543,3110991.267,213,0.869\n1682,820,1537,1702,392,192,637412.1543,3110991.267,285,1.663\n1378,957,1374,1605,966,736,637412.1543,3110991.267,214,0.694\n1371,723,1203,1357,461,171,637412.1543,3110991.267,217,0.536\n1358,713,656,1083,158,95,637412.1543,3110991.267,298,1.052\n1760,984,1535,1729,615,485,637412.1543,3110991.267,72,1.055\n723,276,826,1046,198,154,637412.1543,3110991.267,218,0.309\n1620,940,1370,1551,358,200,637412.1543,3110991.267,282,1.25\n838,168,858,1145,72,58,675364.9124,3168712.993,291,2.426\n1163,396,1059,1289,201,101,675364.9124,3168712.993,71,1.075\n1109,744,1099,1408,681,593,675364.9124,3168712.993,217,0.488\n1485,746,1593,1660,413,181,675364.9124,3168712.993,287,1.055\n1357,810,1608,1707,608,423,675364.9124,3168712.993,77,1.139\n1007,351,1135,1340,305,202,675364.9124,3168712.993,300,1.531\n1658,1080,830,1336,225,143,675364.9124,3168712.993,297,1.348\n566,230,857,1023,145,109,675364.9124,3168712.993,72,1.287\n696,314,797,1003,264,224,675364.9124,3168712.993,218,0.183\n1463,962,888,1246,218,99,675364.9124,3168712.993,281,1.19\n650,441,719,943,410,357,674325.2379,3113723.547,217,0.288\n416,270,642,752,241,209,674325.2379,3113723.547,288,0.514\n731,223,878,1087,158,109,674325.2379,3113723.547,298,1.693\n723,135,816,1089,59,54,655638.4694,3105582.912,291,2.063\n775,475,927,1177,417,368,655638.4694,3105582.912,217,0.826\n661,269,794,1024,219,199,655638.4694,3105582.912,288,0.503\n687,183,721,967,101,66,655638.4694,3105582.912,129,0.86\n1258,347,814,1281,116,67,655638.4694,3105582.912,299,1.222\n825,291,932,1174,200,118,655638.4694,3105582.912,130,0.43\n1357,612,1412,1537,348,163,644970.9119,3111823.331,290,2.341\n1131,389,622,995,98,81,644970.9119,3111823.331,213,0.907\n1092,421,782,1099,261,204,644970.9119,3111823.331,216,0.451\n1513,1031,1755,1834,795,593,644970.9119,3111823.331,127,0.941\n1350,749,626,1067,128,83,644970.9119,3111823.331,298,1.006\n797,274,1018,1194,185,104,644970.9119,3111823.331,124,0.692\n552,118,775,942,60,33,644970.9119,3111823.331,217,0.044\n1556,629,1443,1635,294,174,644970.9119,3111823.331,282,0.675\n1312,535,931,1274,372,281,614702.6908,3128808.46,217,1.631\n1261,521,809,1129,165,71,614702.6908,3128808.46,288,1.231\n1705,1743,1622,1737,1061,514,614702.6908,3128808.46,130,1.19\n1337,720,755,1119,204,98,614702.6908,3128808.46,285,1.23\n830,172,872,1115,207,97,631738.2638,3103167.79,228,0.6888\n1442,660,1449,1553,351,160,631738.2638,3103167.79,290,2.362\n1257,697,657,1025,167,119,631738.2638,3103167.79,213,0.957\n1508,669,1652,1778,325,172,631738.2638,3103167.79,285,1.531\n1580,945,1173,1457,358,185,631738.2638,3103167.79,75,1.21\n1230,542,753,1089,263,217,631738.2638,3103167.79,216,0.44\n1380,853,1386,1531,499,204,616354.9367,3128447.661,218,1.897\n1203,463,908,1225,327,253,616354.9367,3128447.661,217,1.42\n1354,626,835,1183,160,71,616354.9367,3128447.661,288,1.476\n2466,2014,1825,2260,1844,1699,616354.9367,3128447.661,218,1.016\n1715,1495,1565,1722,1102,533,616354.9367,3128447.661,130,1.179\n1392,776,1306,1472,452,215,616354.9367,3128447.661,73,1.8138\n1390,879,785,1141,187,93,616354.9367,3128447.661,285,1.23\n1201,771,1163,1386,379,326,614715.7946,3120328.838,292,1.442\n1378,1113,1173,1318,449,188,614715.7946,3120328.838,69,1.473\n1180,487,821,1155,292,233,614715.7946,3120328.838,217,1.313\n1232,977,956,1191,291,183,614715.7946,3120328.838,288,1.179\n1763,1576,1700,1800,1093,559,614715.7946,3120328.838,130,1.011\n1337,870,1212,1387,441,236,614715.7946,3120328.838,73,1.2094\n1588,1322,1011,1330,687,333,609572.1287,3113663.052,68,1.705\n1244,788,1121,1252,464,287,609572.1287,3113663.052,126,1.263\n801,197,712,987,158,102,609572.1287,3113663.052,218,1.144\n1215,424,851,1153,163,109,609572.1287,3113663.052,288,1.216\n1349,463,1231,1471,317,145,609572.1287,3113663.052,300,2.127\n1148,416,748,1056,154,101,609572.1287,3113663.052,129,1.338\n1319,634,1162,1351,438,186,609572.1287,3113663.052,73,1.7169\n1051,677,1143,1364,608,428,617520.7936,3101723.066,222,0.398\n608,183,783,991,113,46,617520.7936,3101723.066,217,1.225\n1062,461,1194,1317,280,119,617520.7936,3101723.066,290,2.334\n1022,302,629,977,104,31,617520.7936,3101723.066,216,1.013\n1575,722,1573,1727,323,178,617520.7936,3101723.066,285,1.91\n1474,857,1106,1371,320,147,617520.7936,3101723.066,75,1.6635\n688,331,742,993,308,208,617520.7936,3101723.066,216,1.806\n785,232,709,983,156,78,617520.7936,3101723.066,129,1.184\n1278,529,650,1063,136,78,617520.7936,3101723.066,298,0.782\n639,95,635,929,52,19,617520.7936,3101723.066,70,1.1055\n977,527,991,1232,481,237,608765.3042,3109465.841,217,0.532\n1661,894,1271,1503,220,136,608765.3042,3109465.841,309,1.7332\n1228,734,1189,1388,619,329,608765.3042,3109465.841,122,1.305\n1194,751,1410,1527,812,481,608765.3042,3109465.841,218,1.454\n1632,1189,1134,1409,378,206,608765.3042,3109465.841,68,1.456\n1074,439,912,1225,331,288,608765.3042,3109465.841,217,1.344\n1524,813,1447,1599,454,234,608765.3042,3109465.841,75,1.383\n1104,367,1189,1405,198,117,608765.3042,3109465.841,300,2.139\n928,272,740,1038,152,84,608765.3042,3109465.841,129,1.316\n910,426,1396,1389,355,156,608765.3042,3109465.841,128,0.986\n1411,1303,1418,1703,1438,1417,627064.3528,3103361.192,217,0.924\n1185,719,1103,1346,464,263,627064.3528,3103361.192,217,0.3752\n2586,1646,2330,2554,723,285,627064.3528,3103361.192,311,1.4224\n1304,579,1379,1488,326,143,627064.3528,3103361.192,290,2.229\n1210,563,642,1007,161,101,627064.3528,3103361.192,213,0.807\n1511,652,1529,1693,302,163,627064.3528,3103361.192,285,1.757\n1503,800,1139,1403,303,144,627064.3528,3103361.192,75,1.674\n1160,470,780,1098,266,212,627064.3528,3103361.192,216,0.412\n1166,465,626,991,135,62,627064.3528,3103361.192,129,1.288\n1371,884,637,1068,152,86,627064.3528,3103361.192,298,1.022\n1126,599,1236,1433,359,193,627064.3528,3103361.192,71,1.08\n777,251,1025,1180,146,85,627064.3528,3103361.192,124,0.841\n546,109,678,917,68,26,627064.3528,3103361.192,217,0.227\n635,81,523,866,36,12,645241.1143,3125129.738,232,0.831\n1449,952,1344,1590,821,594,645241.1143,3125129.738,150,0.8848\n1283,655,1005,1308,510,458,645241.1143,3125129.738,216,0.5376\n1444,665,1486,1592,396,204,645241.1143,3125129.738,290,2.552\n1091,287,739,1061,86,40,645241.1143,3125129.738,214,1.157\n1478,669,1670,1790,334,172,645241.1143,3125129.738,285,1.892\n1200,552,1061,1322,438,230,645241.1143,3125129.738,214,0.311\n1705,1149,831,1394,255,127,645241.1143,3125129.738,297,1.178\n1486,600,1469,1649,307,187,645241.1143,3125129.738,282,1.28\n819,618,751,1008,552,495,643810.3121,3098783.647,216,0.4144\n1597,712,1001,1408,201,121,643810.3121,3098783.647,309,1.3048\n671,319,790,1051,275,236,643810.3121,3098783.647,217,0.901\n826,237,780,1074,165,155,643810.3121,3098783.647,288,0.639\n605,197,686,906,131,87,643810.3121,3098783.647,214,0.344\n849,236,800,1088,133,74,643810.3121,3098783.647,130,0.498\n590,525,680,708,481,429,665754.311,3101649.804,238,0.165\n1243,1213,1164,1419,278,1072,665754.311,3101649.804,218,0.238\n210,1,424,644,6,46,665754.311,3101649.804,310,1.1088\n551,370,725,878,308,274,665754.311,3101649.804,217,0.288\n9,6,79,150,17,226,665754.311,3101649.804,288,0.238\n1154,343,714,1083,123,83,665754.311,3101649.804,298,1.015\n1590,829,1180,1509,563,454,640816.4778,3114046.191,222,0.479\n1529,954,1460,1758,864,685,640816.4778,3114046.191,150,0.8232\n782,164,765,1016,280,233,640816.4778,3114046.191,228,0.5712\n1412,730,1020,1366,543,476,640816.4778,3114046.191,216,0.476\n1921,1053,2013,2073,595,287,640816.4778,3114046.191,290,2.524\n1208,501,649,1019,140,100,640816.4778,3114046.191,213,1.101\n1710,812,1508,1705,299,147,640816.4778,3114046.191,285,1.601\n1608,816,1655,1761,555,305,640816.4778,3114046.191,127,0.907\n1663,775,1423,1631,344,206,640816.4778,3114046.191,218,0.6119\n1359,774,656,1080,132,81,640816.4778,3114046.191,298,1.385\n1798,1125,1660,1865,956,898,640816.4778,3114046.191,72,1.025\n513,113,664,855,62,28,640816.4778,3114046.191,217,0.054\n1675,917,1388,1606,304,177,640816.4778,3114046.191,282,1.44\n1302,1831,1214,1324,993,574,616060.8543,3132424.219,218,1.821\n1125,722,806,1138,361,257,616060.8543,3132424.219,217,1.693\n1492,2538,1294,1551,2196,1363,616060.8543,3132424.219,218,1.246\n921,972,525,885,1170,446,616755.1023,3140611.695,215,1.428\n1178,899,695,1048,592,318,616755.1023,3140611.695,217,2.59\n1049,1031,716,983,882,379,616755.1023,3140611.695,288,1.698\n2937,3337,2917,2834,1945,1226,616755.1023,3140611.695,218,1.35\n1295,1905,1308,1402,1607,718,616755.1023,3140611.695,130,1.518\n1534,1794,1444,1562,1923,1192,616755.1023,3140611.695,73,1.851\n1043,1313,592,922,745,256,616755.1023,3140611.695,284,2.24\n904,1069,614,972,430,131,613523.569,3137155,215,0.767\n1082,1112,702,1017,1550,612,613523.569,3137155,72,1.728\n936,1290,744,1021,432,194,613523.569,3137155,217,1.774\n873,1162,596,847,835,293,613523.569,3137155,288,1.606\n1329,2096,1388,1467,1671,750,613523.569,3137155,130,1.336\n1533,2338,1252,1530,1996,1176,613523.569,3137155,220,1.155\n1344,1599,1241,1356,1540,880,613523.569,3137155,73,2.4826\n924,1442,551,888,765,237,613523.569,3137155,284,2.43\n1523,1286,1264,1433,931,531,620449.4434,3130184.5,69,1.509\n1546,1698,1516,1614,1843,922,620449.4434,3130184.5,127,1.492\n954,588,543,890,673,355,620449.4434,3130184.5,217,1.792\n1099,932,826,1069,1043,642,620449.4434,3130184.5,288,1.482\n2102,2016,2286,2267,1966,1186,620449.4434,3130184.5,79,1.725\n1237,1119,1127,1216,1047,628,620449.4434,3130184.5,74,1.218\n1491,1762,1514,1578,1564,728,620449.4434,3130184.5,130,1.506\n1109,986,761,1029,904,398,620449.4434,3130184.5,285,1.38\n1874,1899,1721,1848,1245,541,612409.4912,3129507.02,218,1.863\n1320,580,913,1226,315,192,612409.4912,3129507.02,217,1.638\n1597,1781,1573,1656,1624,761,612409.4912,3129507.02,130,1.254\n1444,1192,1047,1308,481,143,612409.4912,3129507.02,284,1.75\n1321,1069,1463,1570,591,225,610284.4809,3121628.183,218,1.794\n261,11,88,463,410,313,610284.4809,3121628.183,292,1.491\n1295,686,925,1256,337,257,610284.4809,3121628.183,217,1.444\n1284,897,889,1166,204,112,610284.4809,3121628.183,288,1.179\n1293,762,1177,1358,376,154,610284.4809,3121628.183,73,1.9795\n708,614,843,801,427,301,610284.4809,3121628.183,284,1.39\n1512,1507,1319,1507,776,449,600593.6794,3112220.687,122,1.607\n1540,1849,1489,1570,1272,745,600593.6794,3112220.687,218,2.01\n1087,2879,506,1038,2027,1145,600593.6794,3112220.687,218,1.226\n1179,2594,763,1150,2058,1071,600593.6794,3112220.687,287,1.587\n1059,1545,756,1035,1764,1115,600593.6794,3112220.687,129,1.271\n1286,2161,881,1292,897,477,600593.6794,3112220.687,299,0.679\n1446,861,1336,1523,551,308,604971.3864,3110562.501,122,1.422\n1508,913,1430,1575,389,143,604971.3864,3110562.501,218,1.982\n913,206,660,978,88,44,604971.3864,3110562.501,218,1.132\n1678,1182,1490,1660,531,221,604971.3864,3110562.501,287,1.042\n1062,490,997,1238,285,135,604971.3864,3110562.501,299,0.794\n1835,1209,2124,2077,644,407,604971.3864,3110562.501,128,1.104\n1466,897,1336,1539,605,338,608807.9888,3105852.795,122,1.316\n1125,718,1200,1407,647,548,608807.9888,3105852.795,219,1.524\n943,275,826,1059,121,55,608807.9888,3105852.795,216,1.151\n1483,668,1557,1689,336,173,608807.9888,3105852.795,285,1.898\n1508,813,1230,1460,356,170,608807.9888,3105852.795,75,1.4395\n952,463,857,1123,379,293,608807.9888,3105852.795,216,2.01\n1078,347,1175,1406,301,212,608807.9888,3105852.795,300,1.978\n934,290,755,1052,156,97,608807.9888,3105852.795,129,1.282\n1855,1162,1664,1963,1340,1368,608807.9888,3105852.795,284,1.039\n1172,782,1709,1640,625,383,608807.9888,3105852.795,128,0.854\n1591,1180,1480,1814,1133,1035,608807.9888,3105852.795,216,0.753\n1483,885,1335,1536,568,325,602607.167,3105465.527,122,1.361\n1157,746,888,1170,226,96,602607.167,3105465.527,293,2.32\n1114,422,892,1202,313,252,602607.167,3105465.527,217,1.138\n1521,863,1351,1544,402,156,602607.167,3105465.527,287,1.298\n1388,533,986,1351,184,83,602607.167,3105465.527,300,2.3\n1788,1728,1890,1889,1517,757,613065.1346,3133814.105,127,1.523\n1335,585,929,1248,324,225,613065.1346,3133814.105,217,1.768\n1291,559,860,1172,155,74,613065.1346,3133814.105,288,1.507\n1652,1831,1503,1642,1479,653,613065.1346,3133814.105,130,1.128\n1130,1287,851,1110,1164,677,613065.1346,3133814.105,73,2.2403\n1486,1139,1040,1309,371,134,613065.1346,3133814.105,284,2.02\n1619,1604,1362,1564,1236,634,609558.0389,3130123.25,123,1.417\n1427,1724,1489,1610,1713,1081,609558.0389,3130123.25,218,2.083\n1129,833,863,1143,428,273,609558.0389,3130123.25,217,1.557\n1008,1013,702,944,631,208,609558.0389,3130123.25,288,1.34\n1366,1527,1410,1385,886,478,609558.0389,3130123.25,218,0.885\n1356,1708,1011,1248,1575,920,609558.0389,3130123.25,73,1.9504\n1160,1118,801,1079,534,166,609558.0389,3130123.25,284,1.76\n1632,1328,837,1312,323,158,605851.4534,3114394.283,68,1.596\n960,230,513,938,83,31,605851.4534,3114394.283,218,1.307\n1298,489,748,1139,153,81,605851.4534,3114394.283,288,1.237\n1202,774,948,1273,320,143,605851.4534,3114394.283,299,0.807\n1748,1362,1968,1981,840,310,611544.276,3121318.475,165,2.2792\n1568,865,1115,1416,248,117,611544.276,3121318.475,309,1.6211\n1268,822,1476,1589,625,265,611544.276,3121318.475,218,1.753\n865,307,973,1175,235,155,611544.276,3121318.475,292,1.469\n1238,498,889,1224,357,275,611544.276,3121318.475,217,1.426\n1349,667,798,1147,155,60,611544.276,3121318.475,288,1.179\n1261,625,1157,1360,341,128,611544.276,3121318.475,73,1.7749\n1816,1492,2013,2025,997,401,608850.0765,3117414.014,165,1.764\n828,364,786,1031,203,104,608850.0765,3117414.014,227,1.4028\n1151,1126,1012,1253,555,295,608850.0765,3117414.014,217,0.714\n1525,896,936,1324,243,128,608850.0765,3117414.014,309,1.736\n2479,2482,2393,2557,2187,1356,608850.0765,3117414.014,218,1.392\n1138,721,1202,1385,987,990,608850.0765,3117414.014,292,1.484\n1532,1226,983,1325,358,190,608850.0765,3117414.014,68,1.456\n1012,379,647,974,157,77,608850.0765,3117414.014,218,1.207\n1035,334,895,1153,163,82,608850.0765,3117414.014,288,1.191\n1237,608,770,1096,277,191,608850.0765,3117414.014,129,1.434\n1301,751,1180,1374,404,193,608850.0765,3117414.014,73,1.3044\n1012,409,520,928,66,20,624382.1457,3099298.223,216,0.902\n1468,1227,1196,1386,316,177,624382.1457,3099298.223,286,1.606\n1481,816,1126,1403,298,148,624382.1457,3099298.223,75,1.6505\n924,420,825,1083,134,61,624382.1457,3099298.223,216,0.746\n1148,407,837,1166,210,167,624382.1457,3099298.223,284,0.712\n846,153,606,950,51,28,624382.1457,3099298.223,70,1.076\n1465,1133,1509,1793,1247,933,624382.1457,3099298.223,216,0.404\n1067,309,845,1135,134,56,624739.6229,3376006.198,217,1.813\n1284,663,552,992,84,41,624739.6229,3376006.198,218,2.784\n1521,923,927,1280,203,95,624739.6229,3376006.198,296,1.937\n970,273,744,1009,248,106,619751.2015,3099007.266,216,0.888\n1314,1374,1332,1412,1068,416,619751.2015,3099007.266,285,1.941\n1380,1383,1130,1312,1290,761,619751.2015,3099007.266,75,1.8535\n959,256,475,898,569,325,619751.2015,3099007.266,129,1.12\n1118,594,1056,1250,795,424,619751.2015,3099007.266,218,0.629\n1218,450,811,1137,226,153,619751.2015,3099007.266,284,0.784\n646,461,600,816,603,381,619751.2015,3099007.266,70,1.0868\n1055,392,1117,1321,399,289,609460.3377,3100095.005,293,2.264\n800,211,738,995,126,41,609460.3377,3100095.005,216,0.744\n1363,584,1515,1649,315,160,609460.3377,3100095.005,285,2.301\n1400,663,1197,1408,326,152,609460.3377,3100095.005,75,1.7205\n901,292,904,1163,196,140,609460.3377,3100095.005,284,1.094\n1193,421,992,1237,275,179,600509.205,3098863.974,293,2.432\n1645,1061,1203,1465,406,227,600509.205,3098863.974,68,1.532\n1191,411,871,1192,256,211,600509.205,3098863.974,217,1.219\n1282,811,821,1125,884,520,600509.205,3098863.974,287,1.194\n1228,653,1354,1499,492,380,600509.205,3098863.974,215,0.698\n1136,444,992,1262,278,509,600509.205,3098863.974,283,0.947\n1475,1707,971,1279,1009,691,560812.2239,3074326.724,71,3.534\n1324,1514,785,1099,1035,685,560812.2239,3074326.724,218,3.561\n924,1963,791,963,1066,654,560812.2239,3074326.724,285,5.792\n1430,1745,834,1210,1463,992,560812.2239,3074326.724,216,5.142\n3501,3911,3391,3599,3282,2783,560812.2239,3074326.724,284,4.042\n1105,1565,418,944,1535,1241,560812.2239,3074326.724,71,2.373\n1106,491,1280,1395,278,123,597777.7975,3085108.928,290,2.686\n626,72,564,887,34,16,597777.7975,3085108.928,218,0.738\n1530,664,1598,1719,329,174,597777.7975,3085108.928,285,1.786\n1399,619,1327,1501,329,154,597777.7975,3085108.928,75,1.557\n1035,329,973,1225,213,136,597777.7975,3085108.928,283,0.719\n596,77,670,957,41,23,597777.7975,3085108.928,70,1.351\n869,317,1092,1264,205,118,597777.7975,3085108.928,124,0.643\n1728,903,1430,1669,281,125,597777.7975,3085108.928,282,0.806\n1302,1328,925,1197,1202,749,590613.9214,3096080.855,293,3.382\n1465,1455,1156,1369,696,432,590613.9214,3096080.855,68,2.738\n1159,1633,675,1022,648,377,590613.9214,3096080.855,214,2.541\n1463,1770,1171,1371,849,464,590613.9214,3096080.855,287,2.801\n1590,1024,1523,1663,746,544,590613.9214,3096080.855,215,4.868\n1434,1604,1044,1361,755,518,590613.9214,3096080.855,283,3.08\n166,70,451,509,6,72,680362.9889,3096582.903,296,0.54\n758,217,787,1032,130,91,680362.9889,3096582.903,298,0.324\n1358,639,1318,1452,373,223,622083.7792,3079488.941,286,1.396\n680,200,735,958,115,55,622083.7792,3079488.941,216,0.558\n1676,738,1342,1655,277,140,622083.7792,3079488.941,297,0.933\n468,58,619,860,26,16,622083.7792,3079488.941,70,0.973\n1436,787,1043,1320,251,120,622083.7792,3079488.941,281,0.42\n1119,565,1143,1193,351,195,587687.1741,3089930.124,290,4.602\n1658,1748,1434,1628,665,374,587687.1741,3089930.124,285,4.197\n2051,1743,2009,2133,1378,1139,587687.1741,3089930.124,75,3.24\n1242,1067,597,1014,491,308,587687.1741,3089930.124,283,1.864\n978,183,657,1035,70,31,587687.1741,3089930.124,70,2.498\n1749,1886,1200,1527,496,177,587687.1741,3089930.124,282,1.37\n1163,482,1256,1383,271,123,591654.5671,3083453.798,290,3.283\n821,137,452,843,50,24,591654.5671,3083453.798,218,0.907\n1628,768,1410,1627,314,156,591654.5671,3083453.798,285,1.612\n1803,1206,1550,1731,491,277,591654.5671,3083453.798,75,2.083\n1438,677,1395,1576,591,467,591654.5671,3083453.798,215,2.278\n1163,415,868,1193,221,128,591654.5671,3083453.798,283,1.267\n899,133,650,1024,48,29,591654.5671,3083453.798,70,2.165\n1046,290,991,1224,139,73,591654.5671,3083453.798,124,0.655\n190,7,17,415,7,135,591654.5671,3083453.798,213,0.34\n1371,570,1180,1379,246,111,584479.2652,3078469.554,290,3.206\n776,119,486,858,48,21,584479.2652,3078469.554,218,0.982\n1534,716,1470,1687,369,206,584479.2652,3078469.554,285,1.347\n1603,923,1431,1586,421,185,584479.2652,3078469.554,75,2.061\n1056,541,1090,1237,339,175,584479.2652,3078469.554,215,1.578\n1239,827,1151,1443,432,327,584479.2652,3078469.554,283,1.627\n368,98,393,498,67,45,584479.2652,3078469.554,70,1.345\n768,243,863,1091,131,184,584479.2652,3078469.554,124,0.527\n1557,982,1435,1616,630,385,598426.5973,3091287.707,122,2.383\n1300,808,1086,1305,371,218,598426.5973,3091287.707,293,3.072\n1572,828,1092,1437,301,148,598426.5973,3091287.707,68,2.408\n1253,452,923,1256,292,234,598426.5973,3091287.707,217,1.929\n1510,983,1266,1473,381,150,598426.5973,3091287.707,287,3.151\n1390,784,1328,1481,404,259,598426.5973,3091287.707,215,3.043\n1141,401,863,1214,239,128,598426.5973,3091287.707,283,1.623\n1479,963,1412,1592,750,416,605093.9246,3093206.144,122,1.627\n1142,426,851,1168,241,200,605093.9246,3093206.144,217,1.501\n1398,1077,1072,1419,1411,668,605093.9246,3093206.144,283,0.903\n1398,1328,1328,1649,1426,1369,612542.1209,3099802.075,217,1.319\n656,278,921,1045,245,123,612542.1209,3099802.075,226,1.4056\n1164,618,1171,1405,364,286,612542.1209,3099802.075,293,2.306\n967,328,602,967,94,35,612542.1209,3099802.075,216,1.163\n1330,569,1468,1615,279,151,612542.1209,3099802.075,285,2.036\n1418,710,1188,1405,329,144,612542.1209,3099802.075,75,1.5105\n997,355,945,1226,220,140,612542.1209,3099802.075,283,0.911\n629,85,640,932,43,18,612542.1209,3099802.075,70,1.3187\n1143,551,554,978,107,39,608486.0649,3091418.496,214,1.294\n1419,807,882,1246,207,93,608486.0649,3091418.496,287,1.581\n1144,430,967,1261,323,189,608486.0649,3091418.496,283,0.925\n593,196,728,953,152,84,608486.0649,3091418.496,130,1.13\n1335,1358,1246,1502,1446,1435,624388.4969,3087260.442,217,1.075\n2398,1423,2189,2404,606,246,624388.4969,3087260.442,311,1.4336\n1283,541,1118,1306,280,166,624388.4969,3087260.442,286,1.52\n2144,1843,2295,2423,1788,1685,624388.4969,3087260.442,219,0.228\n936,298,835,1126,205,171,624388.4969,3087260.442,284,0.937\n419,54,604,837,26,17,624388.4969,3087260.442,70,0.899\n1659,1285,1621,1820,709,325,624388.4969,3087260.442,130,0.668\n1514,996,1081,1352,285,131,624388.4969,3087260.442,281,0.679\n573,125,211,731,22,64,611733.9223,3071253.384,291,1.933\n1734,859,1347,1655,291,154,611733.9223,3071253.384,297,1.016\n370,47,529,736,27,18,643819.942,3070693.476,219,0.3808\n601,367,838,944,283,219,643819.942,3070693.476,218,0.209\n1228,364,1102,1406,167,108,643819.942,3070693.476,297,0.873\n816,638,1207,1159,514,452,643819.942,3070693.476,72,0.707\n1029,396,1147,1297,214,117,598523.2047,3079451.371,215,0.274\n1445,603,1049,1370,352,291,598523.2047,3079451.371,225,0.742\n1574,923,696,1244,167,93,598523.2047,3079451.371,309,1.6436\n1088,473,1245,1369,267,130,598523.2047,3079451.371,290,2.496\n698,102,477,863,40,17,598523.2047,3079451.371,218,0.851\n1737,886,1692,1854,641,384,598523.2047,3079451.371,285,1.712\n1211,662,1371,1526,385,289,598523.2047,3079451.371,215,3.366\n1110,403,1019,1313,317,203,598523.2047,3079451.371,283,0.699\n655,71,621,948,26,16,598523.2047,3079451.371,70,1.723\n419,22,272,685,9,140,598523.2047,3079451.371,213,0.378\n1732,942,1383,1634,293,144,598523.2047,3079451.371,282,0.76\n1331,1410,1229,1373,928,664,582546.5871,3080107.557,215,2.563\n1844,2358,1255,1686,1420,1159,582546.5871,3080107.557,283,1.014\n1135,1477,565,953,747,783,582546.5871,3080107.557,124,0.699\n1762,1899,1679,1792,1394,1054,582546.5871,3080107.557,282,1.11\n1077,450,1209,1347,240,116,587889.9179,3075590.112,290,3.291\n544,60,523,816,25,12,587889.9179,3075590.112,218,1.069\n1334,518,1423,1600,256,144,587889.9179,3075590.112,285,2.03\n1494,681,1447,1580,362,172,587889.9179,3075590.112,75,1.708\n1406,945,1391,1568,695,359,587889.9179,3075590.112,216,2.041\n956,295,906,1192,180,109,587889.9179,3075590.112,283,1.022\n455,86,642,879,46,37,587889.9179,3075590.112,70,1.523\n550,179,878,1002,113,68,587889.9179,3075590.112,124,0.488\n1509,648,1635,1786,321,173,587889.9179,3075590.112,282,1.1\n1160,1031,1340,1423,1396,1168,579850.2312,3095971.257,293,5.39\n1589,1151,1158,1448,433,229,579850.2312,3095971.257,68,3.478\n2196,1601,1324,1955,1539,1396,579850.2312,3095971.257,215,3.923\n1366,1270,947,1188,357,150,579850.2312,3095971.257,287,3.761\n2842,2587,2744,2875,1823,1518,579850.2312,3095971.257,215,6.563\n2335,2193,2216,2513,2019,1363,579850.2312,3095971.257,283,3.294\n1271,1504,1118,1253,1301,548,584819.04,3093201.266,290,5.213\n1535,1540,1188,1434,932,488,584819.04,3093201.266,285,4.531\n1746,1505,1742,1841,1209,934,584819.04,3093201.266,75,3.735\n1344,1228,1400,1503,942,474,584819.04,3093201.266,215,4.649\n1116,407,759,1084,268,158,584819.04,3093201.266,70,2.635\n1260,1203,1109,1242,737,451,584819.04,3093201.266,124,2.36\n1516,1772,892,1276,810,396,584819.04,3093201.266,282,1.53\n1746,1042,1753,1911,606,251,595719.4348,3095012.09,164,4.7656\n1336,772,689,1088,241,139,595719.4348,3095012.09,229,1.6884\n1474,687,814,1253,179,88,595719.4348,3095012.09,309,1.8732\n1577,1057,1388,1561,656,546,595719.4348,3095012.09,293,3.354\n1617,940,1106,1453,345,162,595719.4348,3095012.09,68,1.996\n1554,1172,1118,1408,399,151,595719.4348,3095012.09,287,3.038\n1275,591,1358,1512,466,314,595719.4348,3095012.09,215,3.79\n1161,433,902,1213,257,142,595719.4348,3095012.09,283,2.162\n664,242,518,880,17,248,595719.4348,3095012.09,213,1.2\n1633,1541,688,1239,242,99,589299.4965,3086240.185,309,1.8424\n1264,531,1282,1425,293,137,589299.4965,3086240.185,290,3.849\n1026,280,476,899,71,30,589299.4965,3086240.185,218,1.482\n1954,1512,1821,1986,1053,903,589299.4965,3086240.185,75,2.814\n1251,651,1248,1417,522,347,589299.4965,3086240.185,215,4.577\n1178,663,819,1209,302,181,589299.4965,3086240.185,283,2.023\n504,112,532,788,368,279,589299.4965,3086240.185,70,1.938\n860,429,868,1106,283,188,589299.4965,3086240.185,124,1.31\n1338,565,1179,1396,383,208,595170.1212,3062223.509,71,1.159\n852,227,812,1064,133,101,595170.1212,3062223.509,217,0.788\n622,78,154,662,126,195,595170.1212,3062223.509,286,1.557\n1241,821,1377,1515,1551,1179,595170.1212,3062223.509,215,0.871\n946,364,742,1027,757,301,595170.1212,3062223.509,284,0.883\n3133,3219,3056,3276,3384,2376,610574.3847,3116842.414,218,1.482\n1854,1135,1525,1769,760,566,610574.3847,3116842.414,126,1.268\n997,536,852,1112,173,97,610574.3847,3116842.414,288,1.265\n1179,525,713,1049,267,146,610574.3847,3116842.414,129,1.31\n1229,581,821,1126,160,85,610574.3847,3116842.414,285,1.13\n1225,994,1055,1220,1407,715,587675.8547,3067021.485,71,1.574\n444,88,523,827,720,243,587675.8547,3067021.485,218,0.769\n1032,585,1198,1301,1091,469,587675.8547,3067021.485,286,1.42\n903,403,690,994,1142,393,587675.8547,3067021.485,284,1.081\n310,288,263,680,346,420,587675.8547,3067021.485,71,1.217\n1320,533,1140,1333,231,106,578539.3052,3066005.888,290,2.798\n834,149,440,844,19,17,578539.3052,3066005.888,218,0.838\n1839,962,1637,1843,367,187,578539.3052,3066005.888,285,2.122\n2115,1550,2146,2203,1379,1155,578539.3052,3066005.888,75,1.588\n1371,933,824,1155,230,104,578539.3052,3066005.888,216,2.016\n1012,298,939,1208,195,109,578539.3052,3066005.888,283,1.33\n902,192,686,1046,89,70,578539.3052,3066005.888,70,1.152\n990,260,977,1226,130,70,578539.3052,3066005.888,124,0.985\n1821,924,1625,1827,371,203,578539.3052,3066005.888,282,1.01\n1047,299,521,988,111,47,572646.2237,3060139.919,291,2.904\n1625,841,1300,1543,403,230,572646.2237,3060139.919,71,1.876\n1012,264,445,876,59,18,572646.2237,3060139.919,218,0.807\n1133,376,835,1175,207,97,572646.2237,3060139.919,283,1.997\n1296,665,1004,1289,311,123,572646.2237,3060139.919,71,1.467\n1600,972,1607,1750,736,345,572646.2237,3060139.919,215,0.17\n487,90,694,902,44,39,589399.6819,3055230.869,291,2.137\n1186,746,1525,1604,743,324,589399.6819,3055230.869,71,1.184\n572,197,846,1036,135,112,589399.6819,3055230.869,217,0.919\n484,7,194,684,7,169,589399.6819,3055230.869,286,1.706\n907,467,1053,1235,352,282,589399.6819,3055230.869,218,1.299\n579,197,738,950,147,127,589399.6819,3055230.869,284,0.836\n1710,1119,1785,1895,906,395,612239.424,3057070.991,71,1.131\n672,320,589,885,57,27,612239.424,3057070.991,216,0.543\n802,262,783,1055,192,166,612239.424,3057070.991,284,0.551\n1283,480,1331,1493,220,116,612239.424,3057070.991,282,1.76\n436,805,324,634,2004,943,618262.1909,3058025.69,292,1.142\n1483,1271,1479,1614,1765,968,618262.1909,3058025.69,71,1.075\n870,1558,685,1009,1853,759,618262.1909,3058025.69,216,0.507\n293,334,110,504,1369,688,618262.1909,3058025.69,286,1.061\n839,1008,868,1031,852,364,618262.1909,3058025.69,217,0.451\n1632,953,1347,1581,1098,520,618262.1909,3058025.69,297,1.52\n252,33,159,530,14,109,618692.0181,3055447.344,217,0.407\n1340,510,1312,1498,216,116,618692.0181,3055447.344,282,0.31\n1414,849,1537,1670,532,341,583564.7516,3061007.875,71,1.445\n583,73,513,864,40,19,583564.7516,3061007.875,218,0.894\n1192,464,1164,1329,224,115,583564.7516,3061007.875,286,1.6\n970,282,884,1147,148,74,583564.7516,3061007.875,216,1.156\n877,238,745,1052,165,129,583564.7516,3061007.875,284,0.957\n1000,427,1064,1287,263,129,583564.7516,3061007.875,71,1.095\n326,202,193,639,31,49,591590.1071,3064601.034,291,2.046\n385,203,322,701,43,19,591590.1071,3064601.034,218,0.869\n1090,453,1169,1300,246,136,591590.1071,3064601.034,286,0.453\n1010,596,977,1151,507,243,591590.1071,3064601.034,216,0.927\n833,213,734,1022,140,117,591590.1071,3064601.034,284,0.786\n876,492,1158,1292,300,145,591590.1071,3064601.034,71,1.071\n554,114,777,955,316,158,603246.673,3059319.025,291,2.011\n1436,767,1420,1588,587,298,603246.673,3059319.025,71,1.218\n704,166,795,1013,138,109,603246.673,3059319.025,217,0.644\n1229,648,1364,1477,475,301,603246.673,3059319.025,286,1.358\n902,403,1182,1307,282,190,603246.673,3059319.025,215,0.882\n916,288,787,1081,187,163,603246.673,3059319.025,284,0.686\n342,8,336,727,123,215,603246.673,3059319.025,71,0.921\n556,26,385,814,240,135,603246.673,3059319.025,282,1.3\n1197,1132,481,1000,799,387,566903.9266,3067122.074,291,4.366\n1713,1521,1356,1566,773,420,566903.9266,3067122.074,71,3.492\n1200,723,538,935,143,69,566903.9266,3067122.074,218,2.4\n1604,2000,1227,1512,1070,491,566903.9266,3067122.074,285,5.292\n1412,1372,890,1183,345,130,566903.9266,3067122.074,216,2.488\n1317,1417,947,1274,1588,739,566903.9266,3067122.074,283,2.973\n969,811,179,789,748,425,566903.9266,3067122.074,71,1.817\n1788,1190,1458,1791,1034,892,566903.9266,3067122.074,214,1.5\n1963,2163,1610,1848,879,394,566903.9266,3067122.074,282,2.58\n832,144,659,1017,56,42,578442.5632,3053448.84,291,2.306\n1035,480,1107,1272,359,172,578442.5632,3053448.84,71,1.408\n750,252,872,1116,180,150,578442.5632,3053448.84,217,0.763\n1367,595,1225,1386,267,150,578442.5632,3053448.84,286,2.03\n1015,485,1089,1309,366,292,581719.3158,3043307.782,218,0.641\n1239,438,1275,1530,222,123,581719.3158,3043307.782,297,1.075\n2058,1769,2215,2362,1843,1686,581719.3158,3043307.782,72,1.0255\n1090,330,794,1158,152,86,573195.572,3050811.947,72,1.887\n927,342,943,1204,252,207,573195.572,3050811.947,217,0.988\n1389,764,901,1235,221,91,573195.572,3050811.947,287,1.391\n1304,606,1112,1367,370,287,573195.572,3050811.947,218,1.491\n1146,360,793,1135,181,147,573195.572,3050811.947,284,1.254\n1093,458,1037,1291,256,126,573195.572,3050811.947,71,1.212\n1577,960,1441,1710,861,762,573195.572,3050811.947,216,0.097\n1129,442,1165,1324,231,106,581781.6351,3070826.071,290,2.798\n432,52,502,788,25,17,581781.6351,3070826.071,218,0.869\n1738,868,1459,1704,346,177,581781.6351,3070826.071,285,2.202\n1575,762,1573,1682,417,214,581781.6351,3070826.071,75,1.856\n1166,624,982,1189,452,206,581781.6351,3070826.071,216,2.061\n1095,335,850,1178,171,95,581781.6351,3070826.071,283,1.68\n750,148,714,1015,78,59,581781.6351,3070826.071,70,1.308\n896,217,937,1196,99,50,581781.6351,3070826.071,124,0.805\n214,67,140,460,25,178,581781.6351,3070826.071,213,0.045\n1883,1078,1642,1847,371,189,581781.6351,3070826.071,282,0.937\n322,194,679,700,352,97,600700.3169,3038905.011,217,0.278\n697,258,748,988,200,179,600700.3169,3038905.011,284,0.476\n1012,403,1334,1439,200,103,600700.3169,3038905.011,282,0.484\n574,249,945,1042,185,143,603685.3239,3044837.084,72,1.022\n2373,2309,2242,2641,2268,2079,603685.3239,3044837.084,215,0.714\n286,24,407,715,15,81,603685.3239,3044837.084,216,0.548\n548,241,703,898,195,179,603685.3239,3044837.084,284,0.597\n782,224,837,1095,138,86,581768.7248,3043308.111,72,1.705\n2046,1808,1920,2340,1858,1695,581768.7248,3043308.111,215,0.624\n1051,446,1204,1331,250,114,583840.6495,3072502.543,290,2.861\n498,57,568,838,30,18,583840.6495,3072502.543,218,1.057\n1684,793,1469,1696,305,166,583840.6495,3072502.543,285,2.233\n1535,711,1524,1647,414,168,583840.6495,3072502.543,75,1.856\n1315,680,1105,1331,447,225,583840.6495,3072502.543,216,2.787\n1026,307,932,1200,192,96,583840.6495,3072502.543,283,1.272\n867,162,676,1016,69,49,583840.6495,3072502.543,70,1.185\n790,224,996,1177,111,63,583840.6495,3072502.543,124,0.802\n1906,1322,1640,1846,396,191,583840.6495,3072502.543,282,1.08\n1155,836,980,1135,355,160,565709.1145,3056421.261,71,1.971\n889,2246,530,912,1256,441,565709.1145,3056421.261,218,1.638\n1035,1300,562,957,874,205,565709.1145,3056421.261,217,2.647\n1086,1439,734,1055,354,149,565709.1145,3056421.261,284,1.77\n1256,2013,913,1203,1137,660,565709.1145,3056421.261,71,1.534\n1346,1071,719,1122,290,150,562206.8766,3052147.417,72,3.055\n1298,1765,1104,1288,1155,686,562206.8766,3052147.417,217,5.367\n643,242,954,1054,159,111,593901.0987,3035980.753,220,0.5656\n2299,1345,2271,2456,652,264,593901.0987,3035980.753,311,1.1816\n1025,810,1361,1327,589,499,593901.0987,3035980.753,293,1.666\n871,652,1262,1388,1357,1323,593901.0987,3035980.753,72,1.047\n602,229,741,966,177,160,593901.0987,3035980.753,284,0.346\n733,167,851,1104,90,66,675689.0146,3155567.099,291,1.921\n1945,1435,1609,2048,1304,1174,675689.0146,3155567.099,215,0.919\n1016,391,1080,1232,207,114,675689.0146,3155567.099,286,0.806\n1024,561,1157,1380,460,268,675689.0146,3155567.099,125,0.741\n888,336,968,1196,258,212,675689.0146,3155567.099,215,0.7232\n592,213,879,1043,150,109,675689.0146,3155567.099,72,1.086\n1461,803,970,1294,232,110,675689.0146,3155567.099,281,0.72\n353,260,539,461,200,112,616929.2599,3043593.033,143,0.644\n152,8,298,541,30,157,616929.2599,3043593.033,312,1.1032\n2925,3064,2505,3032,3108,2837,616929.2599,3043593.033,215,0.543\n29,7,111,244,6,161,616929.2599,3043593.033,286,0.782\n399,270,559,678,234,214,616929.2599,3043593.033,284,0.323\n893,380,1305,1377,206,110,616929.2599,3043593.033,282,0.561\n161,1,129,500,4,233,637486.4286,3041933.072,311,0.5432\n589,363,1056,1021,304,263,637486.4286,3041933.072,72,0.792\n4017,4448,3310,3839,4513,4147,637486.4286,3041933.072,215,0.364\n94,33,269,358,28,194,637486.4286,3041933.072,286,0.507\n121,3,336,486,3,176,637486.4286,3041933.072,217,0.351\n68,6,115,395,4,156,637486.4286,3041933.072,71,0.864\n902,464,1407,1416,295,192,637486.4286,3041933.072,282,0.401\n1022,619,1398,1459,327,282,566470.6226,3010380.616,294,1.695\n2059,1983,1877,2277,1909,1726,566470.6226,3010380.616,215,0.426\n258,9,399,680,11,159,566470.6226,3010380.616,288,1.347\n1948,1977,1767,2131,1934,1741,566470.6226,3010380.616,218,0.322\n1000,452,1326,1487,248,139,566470.6226,3010380.616,297,1.134\n112,30,115,330,23,161,601918.1486,3008692.631,294,1.283\n781,333,975,1128,219,153,601918.1486,3008692.631,74,0.86\n255,4,442,694,2,78,601918.1486,3008692.631,281,0.21\n892,529,1224,1270,319,175,629497.6514,3062562.489,71,1.075\n614,353,820,938,254,187,629497.6514,3062562.489,218,0.148\n1257,395,1189,1478,191,116,629497.6514,3062562.489,297,1.093\n887,628,1295,1267,477,399,629497.6514,3062562.489,72,0.804\n103,150,42,288,124,172,582349.0218,2993110.709,294,1.252\n78,48,397,393,63,64,582349.0218,2993110.709,214,0.087\n685,950,797,837,675,502,582349.0218,2993110.709,216,0.072\n962,733,1022,1210,461,322,582349.0218,2993110.709,74,0.884\n247,188,445,669,69,178,582349.0218,2993110.709,215,0.281\n142,56,401,565,27,198,582349.0218,2993110.709,283,0.166\n208,343,202,531,229,339,582349.0218,2993110.709,70,0.758\n70,97,198,270,64,211,582349.0218,2993110.709,124,0.219\n202,83,260,587,192,237,582349.0218,2993110.709,281,0.334\n155,4,447,593,1,17,569382.6699,2994539.069,214,0.05\n926,338,901,1116,212,165,569382.6699,2994539.069,74,0.944\n837,261,947,1142,132,67,569382.6699,2994539.069,281,0.441\n288,81,537,668,6,16,554354.9538,2996315.173,214,0.431\n865,371,1231,1299,188,119,554354.9538,2996315.173,285,1.042\n782,387,1204,1259,226,156,554354.9538,2996315.173,301,1.082\n1301,540,869,1175,226,170,554354.9538,2996315.173,74,1.288\n736,357,1124,1211,239,141,554354.9538,2996315.173,215,0.432\n817,285,956,1167,168,111,554354.9538,2996315.173,283,0.701\n586,216,769,991,167,144,554354.9538,2996315.173,70,1.039\n847,519,1141,1227,429,290,554354.9538,2996315.173,124,0.401\n1044,314,927,1189,155,68,554354.9538,2996315.173,281,0.621\n1091,440,809,1140,231,120,567236.3334,3037146.928,72,1.473\n1251,596,1060,1303,285,107,567236.3334,3037146.928,287,1.514\n1052,526,1093,1314,403,304,567236.3334,3037146.928,218,0.702\n1544,716,1162,1504,267,136,567236.3334,3037146.928,297,1.227\n1462,862,1505,1675,673,561,567236.3334,3037146.928,72,1.032\n2035,1544,1924,2090,1274,942,567236.3334,3037146.928,129,0.622\n400,144,311,744,77,193,567236.3334,3037146.928,217,0.037\n2083,1563,1970,2132,1147,723,567236.3334,3037146.928,286,0.956\n910,276,943,1143,206,84,546105.6838,3003440.242,293,2.411\n969,302,847,1127,172,119,546105.6838,3003440.242,288,1.259\n684,285,817,1005,198,123,546105.6838,3003440.242,129,0.638\n1221,516,671,1061,164,115,546105.6838,3003440.242,298,0.966\n1183,523,1119,1326,327,138,546105.6838,3003440.242,73,1.08\n1246,570,701,1114,202,103,566650.1779,3046762.826,72,1.725\n1981,1242,1979,2107,984,638,566650.1779,3046762.826,126,1.4812\n2414,1761,1709,2207,1439,1293,566650.1779,3046762.826,215,1.201\n1367,821,946,1243,240,97,566650.1779,3046762.826,287,1.901\n1368,691,1035,1293,338,220,566650.1779,3046762.826,218,0.946\n1661,894,1157,1533,306,154,566650.1779,3046762.826,297,0.062\n1427,728,1134,1367,287,148,566650.1779,3046762.826,72,1.203\n1771,1187,1612,1854,955,836,566650.1779,3046762.826,216,0.163\n26,1,65,132,5,137,612623.0513,2993202.734,127,0.3304\n55,13,374,220,6,22,612623.0513,2993202.734,214,0.064\n1316,906,1338,1475,468,315,612623.0513,2993202.734,74,0.588\n180,80,361,536,18,197,612623.0513,2993202.734,215,0.232\n822,355,1105,1243,104,214,612623.0513,2993202.734,281,0.128\n1867,1427,1504,1942,1380,1217,549559.6144,3004905.125,216,0.1624\n941,301,881,1144,336,118,549559.6144,3004905.125,293,2.313\n965,237,792,1102,131,96,549559.6144,3004905.125,288,1.29\n775,321,921,1124,218,148,549559.6144,3004905.125,129,0.633\n1241,528,661,1064,145,109,549559.6144,3004905.125,298,1.093\n1469,734,1311,1490,329,178,549559.6144,3004905.125,72,1.107\n965,430,976,1186,219,71,555221.8622,3026603.956,214,0.342\n810,262,826,1099,208,96,555221.8622,3026603.956,227,0.8176\n1263,669,1062,1299,331,171,555221.8622,3026603.956,293,2.418\n1162,595,877,1138,322,150,555221.8622,3026603.956,72,1.487\n920,263,782,1064,144,74,555221.8622,3026603.956,288,1.445\n986,450,639,928,195,77,555221.8622,3026603.956,298,1.169\n532,214,783,958,147,56,555221.8622,3026603.956,218,0.063\n692,408,595,911,286,71,544095.6482,3008363.984,214,0.753\n1117,491,644,1008,265,96,544095.6482,3008363.984,227,1.2264\n1943,1526,1872,2039,1278,388,544095.6482,3008363.984,311,1.7052\n1184,612,920,1167,577,203,544095.6482,3008363.984,293,2.383\n922,305,910,1146,199,100,544095.6482,3008363.984,288,1.389\n968,377,719,993,190,113,544095.6482,3008363.984,298,0.983\n1232,724,1067,1274,360,153,544095.6482,3008363.984,73,1.111\n1462,928,1409,1557,686,475,544095.6482,3008363.984,129,0.459\n699,242,687,913,167,98,544095.6482,3008363.984,218,0.072\n381,274,535,642,222,183,613693.513,3019367.94,222,0.386\n643,314,922,1032,216,161,613693.513,3019367.94,74,0.841\n716,421,1031,1119,301,224,613693.513,3019367.94,215,0.189\n1970,1247,2248,2353,652,256,580121.7801,3018451.209,311,1.2656\n2142,2100,1995,2390,2086,1898,580121.7801,3018451.209,215,0.438\n794,286,1004,1158,154,60,567600.4558,3028449.72,214,0.342\n1304,793,1175,1502,687,590,567600.4558,3028449.72,213,0.213\n726,151,838,1072,93,52,567600.4558,3028449.72,227,0.6552\n1907,1883,1922,2094,1425,650,567600.4558,3028449.72,217,0.308\n835,260,1026,1186,178,92,567600.4558,3028449.72,293,2.531\n792,261,896,1108,197,96,567600.4558,3028449.72,72,1.428\n1139,446,1183,1353,256,98,567600.4558,3028449.72,287,1.169\n792,350,1135,1178,236,97,567600.4558,3028449.72,217,0.451\n1060,421,1305,1485,231,137,567600.4558,3028449.72,297,1.19\n1403,721,1467,1625,564,464,567600.4558,3028449.72,72,1.081\n435,108,687,853,83,32,567600.4558,3028449.72,217,0.052\n627,292,828,1035,238,201,638795.6333,3095920.042,217,1.082\n1361,583,1281,1448,251,104,638795.6333,3095920.042,287,1.222\n750,202,621,852,130,79,638795.6333,3095920.042,214,0.384\n877,237,767,1073,120,70,638795.6333,3095920.042,130,0.436\n1584,1012,1386,1632,984,982,638795.6333,3095920.042,223,0.166\n983,295,540,929,67,19,620587.2275,3092165.448,216,0.837\n1542,874,1263,1452,393,230,620587.2275,3092165.448,286,1.749\n676,254,749,975,114,48,620587.2275,3092165.448,216,1.797\n1034,335,834,1155,204,171,620587.2275,3092165.448,284,0.866\n863,141,641,991,35,20,620587.2275,3092165.448,70,1.03\n1082,704,1147,1360,436,227,620587.2275,3092165.448,130,0.714\n1464,875,1255,1439,366,181,620587.2275,3092165.448,281,0.761\n994,228,901,1154,100,40,633305.9508,3372049.495,216,2.007\n1228,449,553,991,75,42,633305.9508,3372049.495,218,2.622\n1507,957,902,1267,213,98,633305.9508,3372049.495,296,1.871\n1607,766,1406,1582,354,170,633305.9508,3372049.495,127,2.396\n1733,919,1165,1582,638,558,633305.9508,3372049.495,220,3.267\n1874,1040,1778,1867,490,233,633305.9508,3372049.495,218,2.985\n1477,1032,924,1233,182,74,633305.9508,3372049.495,280,2.789\n2192,1745,1434,1850,1135,1006,633305.9508,3372049.495,216,2.392\n950,560,1309,1394,517,247,645677.6862,3082687.79,71,1.299\n249,45,343,645,70,140,645677.6862,3082687.79,217,0.313\n17,6,148,263,8,144,645677.6862,3082687.79,287,0.601\n1064,814,1365,1418,842,961,645677.6862,3082687.79,298,1.074\n195,1,172,450,16,184,645677.6862,3082687.79,218,0.221\n1194,380,730,1096,136,99,645677.6862,3082687.79,298,1.4\n747,523,1154,1128,393,323,645677.6862,3082687.79,72,0.853\n544,463,677,662,468,400,645677.6862,3082687.79,129,0.41\n183,8,498,611,8,81,665615.1662,3084585.517,291,1.361\n886,235,790,1068,128,96,665615.1662,3084585.517,298,0.789\n890,968,1018,947,1032,1002,665615.1662,3084585.517,223,0.046\n469,88,655,857,46,20,615502.6886,3064826.812,216,0.588\n199,5,253,538,6,151,615502.6886,3064826.812,286,1.148\n1493,549,1287,1609,243,131,615502.6886,3064826.812,297,1.2\n1381,785,1056,1294,421,282,569864.7894,3061608.671,215,1.061\n1286,1187,373,989,232,117,569864.7894,3061608.671,291,3.093\n1113,445,460,887,84,18,569864.7894,3061608.671,218,0.932\n1235,497,912,1248,283,129,569864.7894,3061608.671,283,1.812\n1333,894,984,1289,360,143,569864.7894,3061608.671,71,1.326\n203,44,157,528,23,154,610648.0022,3038713.525,287,0.583\n780,556,894,1030,476,242,610648.0022,3038713.525,216,0.445\n1232,489,1313,1456,201,102,610648.0022,3038713.525,282,0.382\n381,55,643,802,0,17,604294.0909,3031321.041,214,0.064\n1001,461,1388,1446,225,120,604294.0909,3031321.041,285,0.887\n856,304,898,1105,188,140,604294.0909,3031321.041,74,0.787\n394,256,612,709,236,217,604294.0909,3031321.041,284,0.517\n721,84,272,758,218,113,604294.0909,3031321.041,282,1.83\n6977,7092,6456,6732,6632,4263,745209.1898,3405417.957,86,0.981\n1264,730,1415,1585,528,258,745209.1898,3405417.957,293,1.973\n1247,860,1369,1524,672,376,745209.1898,3405417.957,140,0.976\n754,498,874,1043,491,263,745209.1898,3405417.957,232,1.638\n1621,862,1434,1608,408,218,745209.1898,3405417.957,60,1.194\n706,115,572,914,41,25,745209.1898,3405417.957,70,0.619\n719,246,1035,1155,220,450,745209.1898,3405417.957,131,0.936\n1098,396,1147,1325,223,109,731662.3363,3387762.259,293,1.879\n1249,796,1313,1483,618,305,731662.3363,3387762.259,140,1.059\n599,187,702,920,132,110,731662.3363,3387762.259,231,1.578\n1449,764,927,1318,169,87,731662.3363,3387762.259,59,1.064\n1967,1070,1605,1829,412,362,731662.3363,3387762.259,297,1.804\n1029,772,1025,1246,650,551,746431.5115,3359669.425,148,0.951\n1338,544,837,1178,174,116,746431.5115,3359669.425,58,0.971\n142,12,303,418,3,75,746431.5115,3359669.425,219,1.261\n1094,337,866,1144,132,65,746431.5115,3359669.425,58,0.853\n758,135,667,974,55,42,746431.5115,3359669.425,300,2.053\n980,344,915,1189,234,197,746431.5115,3359669.425,72,1.075\n1473,722,1670,1771,399,218,746431.5115,3359669.425,291,1.714\n788,662,798,836,506,385,756864.0474,3338014.383,148,0.596\n1189,448,935,1207,260,152,756864.0474,3338014.383,58,0.817667\n506,87,636,875,44,30,756864.0474,3338014.383,305,2.034\n665,311,878,1063,248,202,756864.0474,3338014.383,72,1.082\n874,193,812,1092,97,61,756864.0474,3338014.383,292,1.785\n1145,1263,685,1088,1394,718,654781.3872,3201684.832,299,1.01\n1266,693,513,975,125,52,663225.7645,3196412.235,298,1.39\n1235,782,606,990,216,84,663225.7645,3196412.235,219,0.247\n831,246,1125,1313,117,73,709582.8336,3175298.538,299,0.64\n507,304,830,918,257,226,709582.8336,3175298.538,72,0.882\n735,289,1048,1149,177,118,709582.8336,3175298.538,281,0.928\n1270,647,530,995,135,53,663554.6153,3193168.061,298,1.422\n1208,799,596,969,168,45,663554.6153,3193168.061,219,0.383\n1359,798,1497,1677,634,429,695207.9911,3176912.248,127,0.924\n1312,427,817,1281,119,67,695207.9911,3176912.248,299,1.033\n629,279,863,1031,208,181,695207.9911,3176912.248,72,1.081\n747,261,1017,1152,171,114,695207.9911,3176912.248,124,0.509\n1338,634,919,1235,201,102,695207.9911,3176912.248,281,1.19\n837,296,1256,1373,150,96,708951.642,3151431.321,299,0.383\n315,200,582,483,135,76,708951.642,3151431.321,124,0.431\n915,319,1251,1404,152,82,687724.5633,3120513.241,299,0.65\n1336,609,1001,1266,264,167,675012.628,3127803.823,74,0.993\n747,893,855,858,749,291,652203.6395,3232740.84,306,1.869\n1151,1165,730,1063,1242,680,652203.6395,3232740.84,131,1.192\n1261,1903,933,1169,1201,653,660614.2925,3124617.98,74,1.2\n1162,652,1059,1332,397,280,660614.2925,3124617.98,283,0.783\n962,1177,655,936,933,462,660614.2925,3124617.98,70,0.945\n1323,619,923,1197,219,125,671820.2718,3136039.656,74,1.158\n970,463,1209,1388,339,245,671820.2718,3136039.656,283,0.698\n891,166,605,977,61,40,671820.2718,3136039.656,70,0.998\n1025,891,1092,1364,1314,1147,671820.2718,3136039.656,216,0.11\n818,312,1170,1273,170,97,699000.3011,3141788.342,282,0.54\n1204,347,1180,1467,148,82,673782.5737,3115888.78,299,0.975\n819,225,834,1080,123,93,682556.4441,3101228.542,298,0.33\n925,980,1100,997,997,985,682556.4441,3101228.542,223,0.029\n1009,573,1576,1554,315,256,682556.4441,3101228.542,286,0.497\n1760,1073,1058,1510,293,134,638332.2609,3121488.823,297,1.267\n1564,705,1462,1641,339,180,638332.2609,3121488.823,282,1.44\n1349,772,625,1064,132,85,628421.4076,3107964.822,298,1.266\n1351,854,1285,1496,469,234,628421.4076,3107964.822,71,1.047\n1696,938,1541,1697,584,514,628421.4076,3107964.822,282,0.579\n1597,901,641,1262,190,110,655888.7483,3115796.723,297,0.919\n1530,1182,1552,1754,643,512,655888.7483,3115796.723,71,1.042\n619,213,963,1085,133,81,655888.7483,3115796.723,124,0.568\n1496,735,1216,1433,287,143,655888.7483,3115796.723,281,1.12\n1505,781,1477,1613,666,315,637979.8555,3104379.817,127,0.902\n1411,828,1403,1602,574,374,637979.8555,3104379.817,71,0.566\n1039,379,954,1182,202,109,637979.8555,3104379.817,124,0.689\n178,370,258,462,1515,551,651961.7527,3263130.633,137,1.144\n565,375,688,903,1335,477,651961.7527,3263130.633,228,1.214\n746,201,622,896,374,240,651961.7527,3263130.633,301,0.56\n605,111,709,943,52,52,756738.5813,3344614.507,305,1.699\n642,295,855,1034,224,179,756738.5813,3344614.507,72,1.098\n1576,1154,1458,1629,486,225,713432.6091,3258390.523,57,1.002\n1142,908,540,984,123,60,713432.6091,3258390.523,298,1.777\n1500,968,1625,1710,601,340,720477.1721,3199091.749,57,0.955\n1072,384,720,1036,153,80,650575.997,3130273.677,129,1.246\n872,372,1036,1219,192,95,650575.997,3130273.677,213,0.496\n681,178,393,793,531,247,653636.9551,3129603.385,129,1.154\n1485,1204,1484,1637,1259,722,653636.9551,3129603.385,71,0.953\n1345,1175,511,969,755,313,653636.9551,3129603.385,282,1.03\n1207,2103,1221,1304,1618,655,615664.9856,3137796.494,130,1.207\n1022,2408,1079,1167,2609,905,615664.9856,3137796.494,73,1.6009\n652,1587,332,550,1357,327,615664.9856,3137796.494,284,2.48\n1310,2976,1186,1449,2667,978,604968.4339,3039239.99,216,0.425\n724,1192,649,896,629,325,604968.4339,3039239.99,284,0.354\n1005,1996,1147,1251,1394,429,604968.4339,3039239.99,282,0.513\n1286,558,1107,1357,359,287,578432.6896,3053448.777,218,1.05\n960,269,741,1062,151,143,578432.6896,3053448.777,284,1.106\n1030,425,1050,1289,240,121,578432.6896,3053448.777,71,1.323\n1723,1795,1614,1622,1687,1886,782223.9614,3294493.116,136,1.31\n3570,3728,3831,3899,1927,1301,676310.749,3281472.774,228,0.859\n2788,2341,1959,2546,2280,2166,676310.749,3281472.774,136,1.113\n1077,324,537,958,98,42,676310.749,3281472.774,301,1.158\n1523,712,1671,1800,367,179,732870.1477,3266661.87,57,1\n1307,1608,642,1117,1734,961,567392.9828,3067856.208,291,4.017\n1185,1577,619,1018,1409,843,567392.9828,3067856.208,218,2.088\n1587,2074,1233,1508,1029,458,567392.9828,3067856.208,285,5.726\n1239,1584,858,1122,1123,540,567392.9828,3067856.208,216,2.585\n1011,1064,206,804,1173,872,567392.9828,3067856.208,71,1.681\n1861,1283,1500,1831,1074,908,567392.9828,3067856.208,214,1.61\n1856,2003,1594,1783,894,399,567392.9828,3067856.208,282,2.78\n2070,1476,1462,1860,1196,1081,644742.8794,3365198.329,148,1.433\n1022,228,548,970,71,42,644742.8794,3365198.329,218,1.75\n1402,551,1047,1337,219,118,644742.8794,3365198.329,296,1.984\n1794,925,1748,1849,460,216,644742.8794,3365198.329,127,1.686\n1769,919,1711,1788,447,207,644742.8794,3365198.329,218,2.924\n1457,984,895,1216,175,66,644742.8794,3365198.329,280,2.444\n1477,776,1404,1553,534,248,654917.4814,3267628.47,256,0.69\n1033,977,1113,1295,671,297,654917.4814,3267628.47,116,0.791\n1059,558,936,1248,512,395,654917.4814,3267628.47,214,1.04\n1416,736,1462,1540,502,264,654917.4814,3267628.47,264,1.48\n864,652,963,1204,630,448,654917.4814,3267628.47,168,1.38\n1108,477,905,1199,416,305,654917.4814,3267628.47,232,1.257\n821,339,853,1063,295,163,654917.4814,3267628.47,245,1.39\n1019,553,1307,1388,300,131,654917.4814,3267628.47,284,1.89\n910,454,1124,1235,257,82,654917.4814,3267628.47,216,1.7\n1397,810,1309,1448,744,268,654917.4814,3267628.47,286,2.13\n1098,470,826,1108,258,134,654917.4814,3267628.47,69,1.349\n1200,752,1433,1530,614,301,654917.4814,3267628.47,61,1.452\n2823,2725,3244,2971,1903,1503,654917.4814,3267628.47,224,1.456\n1213,1247,1322,1477,1072,612,654917.4814,3267628.47,137,0.949\n752,187,648,923,153,56,654917.4814,3267628.47,301,1.192\n1049,287,647,1010,111,78,718135.869,3272790.169,133,0.977\n591,111,738,960,60,26,718135.869,3272790.169,227,1.014\n1488,657,1462,1652,352,206,718135.869,3272790.169,62,0.9295\n227,128,256,328,101,104,718135.869,3272790.169,225,0.508\n1816,960,1554,1762,376,188,718135.869,3272790.169,57,0.914\n875,313,1125,1289,212,138,718135.869,3272790.169,224,0.736\n1120,318,550,968,62,36,718135.869,3272790.169,298,1.684\n1010,440,1124,1317,327,268,718135.869,3272790.169,257,1.01\n852,236,736,1014,129,57,634111.6718,3395347.417,217,2.056\n1201,584,490,916,68,28,634111.6718,3395347.417,218,2.837\n1479,642,1679,1714,406,209,634111.6718,3395347.417,296,1.826\n1484,866,1112,1349,220,121,634111.6718,3395347.417,303,1.938\n160,0,238,441,1,8,727746.6954,3294791.469,210,1.182\n1127,386,628,1003,132,91,727746.6954,3294791.469,133,1.189\n1739,980,1439,1649,402,226,727746.6954,3294791.469,62,0.922\n1301,748,1073,1408,639,560,727746.6954,3294791.469,133,1.449\n678,556,824,916,488,436,727746.6954,3294791.469,218,1.302\n1061,379,982,1231,245,179,727746.6954,3294791.469,300,1.384\n1331,532,886,1219,176,122,727746.6954,3294791.469,62,0.854\n190,3,283,448,33,57,727746.6954,3294791.469,138,1.206\n780,459,926,1142,420,372,727746.6954,3294791.469,215,1.45\n1132,316,963,1300,125,62,727746.6954,3294791.469,299,1.922\n1402,517,1123,1414,189,68,727746.6954,3294791.469,69,1.638\n1005,415,1074,1241,220,81,712685.9285,3312920.157,225,1.081\n1193,560,631,1142,478,701,712685.9285,3312920.157,207,1.207\n1844,1352,1257,1695,472,225,712685.9285,3312920.157,322,1.517\n1309,543,1371,1522,274,112,712685.9285,3312920.157,209,1.398\n1434,695,1285,1508,372,197,712685.9285,3312920.157,61,1.411667\n1371,584,955,1255,217,120,712685.9285,3312920.157,291,1.734\n1575,1031,1182,1437,423,212,712685.9285,3312920.157,49,1.229\n2127,1501,1488,1905,1217,1091,712685.9285,3312920.157,229,1.194\n1426,631,730,1249,164,77,712685.9285,3312920.157,299,1.96\n1137,387,821,1133,232,178,689241.1175,3290312.432,237,0.529\n877,224,720,1015,147,108,689241.1175,3290312.432,211,1.049\n1386,598,1209,1430,365,238,689241.1175,3290312.432,133,1.091\n1237,389,1003,1215,151,75,689241.1175,3290312.432,231,1.205\n1286,810,553,1005,125,58,689241.1175,3290312.432,80,1.02\n1555,788,1423,1619,437,226,689241.1175,3290312.432,61,1.365\n2046,1494,1433,1764,931,855,689241.1175,3290312.432,131,1.635\n817,286,1026,1181,180,108,689241.1175,3290312.432,137,1.165\n1148,371,642,1039,113,59,689241.1175,3290312.432,301,1.476\n1162,1148,1077,1226,1077,945,768867.9115,3346536.758,235,0.693\n892,720,880,1019,578,463,768867.9115,3346536.758,148,0.867\n918,313,865,1097,205,128,768867.9115,3346536.758,58,0.972333\n491,125,808,966,65,51,768867.9115,3346536.758,309,1.3\n310,0,323,693,1,63,768867.9115,3346536.758,58,0.39\n441,113,705,860,73,56,768867.9115,3346536.758,305,1.492\n890,330,910,1158,223,187,768867.9115,3346536.758,72,1.066\n1021,1001,992,1081,957,852,788968.3206,3328954.257,235,0.328\n14,1,7,73,3,60,788968.3206,3328954.257,148,0.787\n757,629,826,852,503,383,788968.3206,3328954.257,148,0.532\n909,934,884,945,931,848,788968.3206,3328954.257,133,1.126\n186,49,408,589,14,137,788968.3206,3328954.257,58,0.365\n1122,1124,1061,1175,1105,1002,754823.0668,3321975.813,235,0.519\n249,129,530,478,155,145,754823.0668,3321975.813,312,1.268\n846,734,854,884,541,422,754823.0668,3321975.813,148,0.849\n1481,796,1315,1541,612,380,754823.0668,3321975.813,58,0.857667\n874,807,787,898,759,683,754823.0668,3321975.813,133,1.166\n76,44,89,197,32,148,754823.0668,3321975.813,218,1.11\n557,270,930,984,211,126,754823.0668,3321975.813,216,1.064\n538,281,827,950,217,183,754823.0668,3321975.813,72,0.878\n137,54,213,328,42,152,754823.0668,3321975.813,257,0.345\n1196,1216,1136,1206,1063,980,773700.5258,3295268.724,235,0.787\n885,561,1132,1243,448,373,773700.5258,3295268.724,223,1.05\n2646,2528,2646,2723,1174,1223,773700.5258,3295268.724,312,0.309\n831,848,830,861,824,741,773700.5258,3295268.724,133,0.9\n183,49,407,578,40,200,773700.5258,3295268.724,300,0.888\n33,1,140,121,6,28,773700.5258,3295268.724,138,0.746\n521,140,871,1018,99,95,773700.5258,3295268.724,313,0.266\n1057,326,851,1132,128,66,619921.3851,3383603.079,232,3.329\n1063,334,481,896,103,75,619921.3851,3383603.079,212,2.88\n1592,667,1566,1648,260,97,619921.3851,3383603.079,237,2.317\n1713,1181,1636,1782,877,394,619921.3851,3383603.079,282,2.67\n1960,1073,1759,1927,478,229,619921.3851,3383603.079,62,2.96\n1269,397,1068,1301,188,92,619921.3851,3383603.079,127,2.529\n1746,962,1164,1586,653,569,619921.3851,3383603.079,220,3.519\n1636,965,1244,1503,319,171,619921.3851,3383603.079,304,2.23\n257,1,340,636,3,53,740549.5851,3289656.61,312,1.031\n1404,805,1314,1561,513,311,740549.5851,3289656.61,59,1.3495\n902,713,866,1122,664,592,740549.5851,3289656.61,133,1.334\n405,174,701,835,146,209,740549.5851,3289656.61,300,1.272\n800,263,927,1136,157,119,740549.5851,3289656.61,62,0.555\n745,449,930,1129,409,363,740549.5851,3289656.61,215,0.883\n1109,352,1084,1342,155,60,740549.5851,3289656.61,69,1.24\n498,284,744,839,219,179,740549.5851,3289656.61,257,0.831\n430,64,622,839,26,25,719570.6446,3279773.548,208,0.878\n1526,1044,1516,1696,993,1031,719570.6446,3279773.548,131,0.92\n758,538,914,1092,424,253,719570.6446,3279773.548,228,0.932\n933,250,828,1073,115,54,719570.6446,3279773.548,312,1.365\n1853,1083,1834,1889,549,269,719570.6446,3279773.548,146,1.059\n906,232,641,968,106,72,719570.6446,3279773.548,133,0.968\n1727,948,1414,1637,377,214,719570.6446,3279773.548,62,0.8915\n99,4,139,321,5,84,719570.6446,3279773.548,225,0.447\n1884,1060,1615,1838,394,202,719570.6446,3279773.548,57,1.154\n691,287,1013,1138,194,115,719570.6446,3279773.548,224,1.082\n1183,420,549,977,71,31,719570.6446,3279773.548,298,1.895\n1303,606,1175,1423,440,379,719570.6446,3279773.548,257,1.102\n1496,759,1360,1560,411,209,703040.6073,3303466.014,61,1.393\n1315,474,1213,1429,276,186,703040.6073,3303466.014,229,1.087\n1303,438,670,1217,161,78,703040.6073,3303466.014,299,1.979\n1275,462,898,1217,266,205,703040.6073,3303466.014,227,1.202\n1066,359,810,1113,246,171,695833.9717,3297513.613,237,1.232\n994,267,694,1007,188,121,695833.9717,3297513.613,211,1.036\n1447,738,1220,1434,454,284,695833.9717,3297513.613,133,1.086\n958,263,729,1040,172,124,695833.9717,3297513.613,232,1.128\n1586,912,1415,1598,493,250,695833.9717,3297513.613,61,1.387\n773,162,630,948,76,32,693634.4364,3284841.899,236,1.144\n549,85,605,871,51,31,693634.4364,3284841.899,210,1.118\n1548,813,1173,1415,292,159,693634.4364,3284841.899,133,0.906\n1186,344,888,1150,120,55,693634.4364,3284841.899,231,1.039\n1376,587,1004,1287,212,89,693634.4364,3284841.899,288,1.364\n1874,1539,1684,2091,1431,1284,693634.4364,3284841.899,224,1.134\n1577,821,1371,1573,396,205,693634.4364,3284841.899,61,1.397\n1310,549,1187,1365,256,119,693634.4364,3284841.899,137,0.875\n1246,572,1022,1239,207,80,710930.528,3309181.512,225,0.973\n624,169,666,901,119,101,710930.528,3309181.512,211,1.181\n1927,1264,1611,1839,1018,896,710930.528,3309181.512,131,1.005\n1844,1447,1204,1669,466,213,710930.528,3309181.512,322,1.313\n1354,559,1016,1323,342,267,710930.528,3309181.512,219,1.025\n1606,973,1280,1527,393,198,710930.528,3309181.512,61,1.417333\n1467,896,443,1119,167,72,710930.528,3309181.512,299,2.024\n1476,845,852,1218,262,194,710930.528,3309181.512,227,1.071\n1021,1018,985,1077,914,827,740907.4002,3311611.096,235,0.907\n626,226,888,1036,134,68,740907.4002,3311611.096,226,0.989\n1392,766,1442,1612,580,453,740907.4002,3311611.096,125,0.558\n723,200,825,1034,125,59,740907.4002,3311611.096,312,1.422\n1057,309,635,994,116,71,740907.4002,3311611.096,133,0.985\n1517,948,1403,1678,831,448,740907.4002,3311611.096,59,1.3095\n1247,740,1069,1398,651,571,740907.4002,3311611.096,133,1.452\n669,560,883,891,522,465,740907.4002,3311611.096,218,1.338\n746,119,757,1041,53,34,740907.4002,3311611.096,309,1.242\n1646,881,1892,1984,496,246,740907.4002,3311611.096,57,0.886\n874,352,843,1092,246,151,740907.4002,3311611.096,127,0.931\n854,470,931,1155,415,358,740907.4002,3311611.096,215,1.064\n770,272,855,1090,195,156,740907.4002,3311611.096,72,0.948\n803,425,1054,1197,330,300,740907.4002,3311611.096,257,1.106\n911,271,725,1020,139,65,724239.8931,3329811.55,148,1.07\n1185,507,1083,1274,291,119,724239.8931,3329811.55,226,1.359\n1137,351,803,1100,153,65,724239.8931,3329811.55,229,1.175\n1554,964,1532,1600,549,316,724239.8931,3329811.55,301,1.421\n1440,700,859,1256,154,64,724239.8931,3329811.55,309,1.407\n1487,1086,1052,1307,269,112,724239.8931,3329811.55,58,1.43\n1417,799,822,1207,186,93,724239.8931,3329811.55,252,1.41\n1276,531,811,1155,214,110,724239.8931,3329811.55,292,1.568\n1468,635,1394,1565,300,129,663108.4829,3372023.964,218,1.955\n3333,3218,2887,3095,2516,2276,663108.4829,3372023.964,139,1.831\n956,202,589,981,74,36,663108.4829,3372023.964,218,1.31\n1429,601,1034,1349,233,123,663108.4829,3372023.964,296,1.261\n993,220,511,925,58,31,663108.4829,3372023.964,221,2.62\n1405,661,917,1228,181,83,663108.4829,3372023.964,129,1.338\n1412,649,1479,1589,354,177,663108.4829,3372023.964,218,2.576\n1590,920,890,1316,184,98,663108.4829,3372023.964,130,1.706\n1418,667,779,1189,169,80,616049.2214,3371540.768,232,3.063\n1325,932,534,983,145,88,616049.2214,3371540.768,212,2.853\n1383,756,774,1139,156,80,616049.2214,3371540.768,134,1.354\n1635,988,1085,1398,419,286,616049.2214,3371540.768,236,2.934\n1290,483,851,1165,153,60,616049.2214,3371540.768,217,2.12\n1840,1217,1211,1581,706,606,616049.2214,3371540.768,217,2.879\n1566,1165,972,1323,221,102,616049.2214,3371540.768,296,1.881\n1383,498,1170,1396,229,104,616049.2214,3371540.768,127,2.113\n1445,699,1105,1352,279,156,616049.2214,3371540.768,124,2.765\n1200,490,705,1061,118,42,616049.2214,3371540.768,217,2.428\n1508,837,1041,1337,229,113,682209.2011,3372139.267,89,1.654\n1173,551,1287,1444,308,138,682209.2011,3372139.267,218,1.815\n1602,730,1221,1491,411,275,682209.2011,3372139.267,297,1.208\n1089,381,895,1181,182,137,682209.2011,3372139.267,221,2.37\n1579,964,1066,1385,344,177,682199.5943,3372139.105,49,1.784\n2129,1360,1665,2078,1166,1045,682199.5943,3372139.105,129,1.619\n1028,330,1162,1351,183,76,682199.5943,3372139.105,222,1.654\n1379,606,1398,1562,310,133,672566.9172,3367567.277,218,1.768\n1368,477,1042,1340,185,104,672566.9172,3367567.277,297,1.378\n1467,943,922,1236,182,86,672566.9172,3367567.277,56,1.842\n652,113,574,900,63,40,672566.9172,3367567.277,221,2.37\n1741,1026,2092,2079,590,229,672566.9172,3367567.277,219,2.954\n1519,643,756,1298,193,106,672566.9172,3367567.277,283,2.837\n1672,1066,1404,1741,982,885,672566.9172,3367567.277,129,1.647\n960,520,1064,1080,341,102,672566.9172,3367567.277,245,1.379\n"
  },
  {
    "path": "data/demo_predict_data.csv",
    "content": "refl_b01,refl_b02,refl_b03,refl_b04,refl_b05,refl_b07,proj_x,proj_y,day,SiO3\n7307,4191,7179,7808,8596,4352,655316.4743,3169638.04,218,3.9339\n6977,7092,6456,6732,6632,4263,745209.1898,3405417.957,86,0.981\n3719,4197,4460,4646,6180,3812,634452.3503,3176485.716,285,3.29\n5094,5256,4669,4925,5111,4042,594309.4734,3377306.381,86,2.374\n3087,3154,3424,3858,5025,2614,673075.8424,3236376.035,238,1.34\n4901,4234,4911,5367,4778,2483,701234.5705,3393963.738,217,2.107\n4684,4841,4189,4453,4535,3844,589927.3812,3362766.673,86,2.267\n4017,4448,3310,3839,4513,4147,637486.4286,3041933.072,215,0.364\n3182,3547,3219,3468,4506,3338,668124.346,3272408.794,149,0.545\n4338,4446,3962,4166,4124,3695,599914.5933,3369118.335,86,2.66\n3541,3508,3590,3951,3874,2354,668124.346,3272408.794,232,1.33\n1108,3002,985,1290,3511,1422,604102.1683,3096345.316,283,1.874\n3133,3219,3056,3276,3384,2376,610574.3847,3116842.414,218,1.482\n3528,3849,3579,3812,3359,1365,662778.0726,3214978.728,226,0.062\n3776,3750,3427,3641,3340,2977,649913.7516,3396454.274,139,2.044\n2505,3514,1643,2020,3297,3171,612954.1788,3083135.5,204,0.723\n3501,3911,3391,3599,3282,2783,560812.2239,3074326.724,284,4.042\n2769,3334,2383,2663,3254,2247,674781.9797,3243721.131,218,0.777\n4387,4307,3877,4078,3234,2963,694640.1601,3227895.54,296,1.484\n4716,4724,4852,4753,3209,2741,657968.2739,3150670.02,125,1.322\n2054,2317,2544,2536,3122,1866,673430.2695,3269106.894,189,1.57\n2925,3064,2505,3032,3108,2837,616929.2599,3043593.033,215,0.543\n2609,2647,3363,3201,3007,2397,663374.6203,3269666.313,264,1.25\n3296,3334,3186,3290,2948,2654,654216.0245,3229241.81,75,0.992\n1826,1759,1685,1923,2867,2343,648944.2369,3260928.196,203,1.93\n3338,3290,2959,3153,2826,2547,672666.3438,3387844.288,139,1.792\n4621,4656,3996,4268,2767,1809,667997.2447,3271830.237,232,1.347\n3244,3225,2895,3073,2682,2307,653626.211,3376709.928,139,1.904\n1310,2976,1186,1449,2667,978,604968.4339,3039239.99,216,0.425\n2459,3025,2433,2562,2655,1841,650014.4339,3211933.353,223,1.218\n1022,2408,1079,1167,2609,905,615664.9856,3137796.494,73,1.6009\n3018,3536,2736,2903,2608,1150,659611.8986,3215632.881,226,0.044\n1878,1219,1922,2031,2542,1469,685044.3039,3316184.464,250,1.78\n3250,3618,2707,2994,2520,1959,670765.7849,3270851.643,216,1.46\n3333,3218,2887,3095,2516,2276,663108.4829,3372023.964,139,1.831\n2005,2432,1633,2030,2511,2628,614287.8357,3083779.837,204,0.753\n2018,2345,2081,2182,2506,1532,650014.4339,3211933.353,283,1.715\n822,3083,721,1012,2499,836,667864.7833,3228935.065,240,1.67\n843,2013,763,957,2497,690,674781.9797,3243721.131,240,2.271\n2245,2038,2414,2562,2458,1958,616040.5049,3084882.797,188,0.377\n3128,3008,2806,2949,2444,2273,644484.7449,3387419.124,139,2.478\n1182,1677,1420,1486,2421,888,612410.1986,3105475.959,128,0.934\n3098,3121,3385,3533,2398,2381,791558.0435,3368365.005,305,0.286\n1614,2094,1469,1609,2389,1465,673075.8424,3236376.035,62,1.029\n1445,2002,1052,1365,2376,705,702665.9821,3319199.518,125,1.517\n1608,1914,1558,1815,2371,2048,612954.1788,3083135.5,188,0.666\n2231,2140,2018,2362,2298,1951,612944.2249,3083146.491,229,0.757\n2931,3044,2779,2960,2297,1838,614287.8357,3083779.837,188,0.519\n1091,2414,1000,1214,2281,961,746053.0935,3397446.981,293,1.715\n724,1835,418,701,2281,664,618790.0819,3135178.155,217,1.935\n"
  },
  {
    "path": "data/distances.csv",
    "content": "id1,id2,dis\n0,0,0\n0,1,0.5\n0,2,1.0\n0,3,1.5\n0,4,2.0\n0,5,2.5\n0,6,3.0\n0,7,3.5\n0,8,4.0\n0,9,4.5\n0,10,5.0\n0,11,5.5\n0,12,6.0\n0,13,6.5\n0,14,7.0\n0,15,7.5\n0,16,8.0\n0,17,8.5\n0,18,9.0\n0,19,9.5\n0,20,10.0\n0,21,10.5\n0,22,11.0\n0,23,11.5\n0,24,12.0\n0,25,0.5\n0,26,1.0\n0,27,1.5\n0,28,2.0\n0,29,2.5\n0,30,3.0\n0,31,3.5\n0,32,4.0\n0,33,4.5\n0,34,5.0\n0,35,5.5\n0,36,6.0\n0,37,6.5\n0,38,7.0\n0,39,7.5\n0,40,8.0\n0,41,8.5\n0,42,9.0\n0,43,9.5\n0,44,10.0\n0,45,10.5\n0,46,11.0\n0,47,11.5\n0,48,12.0\n0,49,12.5\n0,50,1.0\n0,51,1.5\n0,52,2.0\n0,53,2.5\n0,54,3.0\n0,55,3.5\n0,56,4.0\n0,57,4.5\n0,58,5.0\n0,59,5.5\n0,60,6.0\n0,61,6.5\n0,62,7.0\n0,63,7.5\n0,64,8.0\n0,65,8.5\n0,66,9.0\n0,67,9.5\n0,68,10.0\n0,69,10.5\n0,70,11.0\n0,71,11.5\n0,72,12.0\n0,73,12.5\n0,74,13.0\n0,75,1.5\n0,76,2.0\n0,77,2.5\n0,78,3.0\n0,79,3.5\n0,80,4.0\n0,81,4.5\n0,82,5.0\n0,83,5.5\n0,84,6.0\n0,85,6.5\n0,86,7.0\n0,87,7.5\n0,88,8.0\n0,89,8.5\n0,90,9.0\n0,91,9.5\n0,92,10.0\n0,93,10.5\n0,94,11.0\n0,95,11.5\n0,96,12.0\n0,97,12.5\n0,98,13.0\n0,99,13.5\n0,100,2.0\n0,101,2.5\n0,102,3.0\n0,103,3.5\n0,104,4.0\n0,105,4.5\n0,106,5.0\n0,107,5.5\n0,108,6.0\n0,109,6.5\n0,110,7.0\n0,111,7.5\n0,112,8.0\n0,113,8.5\n0,114,9.0\n0,115,9.5\n0,116,10.0\n0,117,10.5\n0,118,11.0\n0,119,11.5\n0,120,12.0\n0,121,12.5\n0,122,13.0\n0,123,13.5\n0,124,14.0\n0,125,2.5\n0,126,3.0\n0,127,3.5\n0,128,4.0\n0,129,4.5\n0,130,5.0\n0,131,5.5\n0,132,6.0\n0,133,6.5\n0,134,7.0\n0,135,7.5\n0,136,8.0\n0,137,8.5\n0,138,9.0\n0,139,9.5\n0,140,10.0\n0,141,10.5\n0,142,11.0\n0,143,11.5\n0,144,12.0\n0,145,12.5\n0,146,13.0\n0,147,13.5\n0,148,14.0\n0,149,14.5\n0,150,3.0\n0,151,3.5\n0,152,4.0\n0,153,4.5\n0,154,5.0\n0,155,5.5\n0,156,6.0\n0,157,6.5\n0,158,7.0\n0,159,7.5\n0,160,8.0\n0,161,8.5\n0,162,9.0\n0,163,9.5\n0,164,10.0\n0,165,10.5\n0,166,11.0\n0,167,11.5\n0,168,12.0\n0,169,12.5\n0,170,13.0\n0,171,13.5\n0,172,14.0\n0,173,14.5\n0,174,15.0\n0,175,3.5\n0,176,4.0\n0,177,4.5\n0,178,5.0\n0,179,5.5\n0,180,6.0\n0,181,6.5\n0,182,7.0\n0,183,7.5\n0,184,8.0\n0,185,8.5\n0,186,9.0\n0,187,9.5\n0,188,10.0\n0,189,10.5\n0,190,11.0\n0,191,11.5\n0,192,12.0\n0,193,12.5\n0,194,13.0\n0,195,13.5\n0,196,14.0\n0,197,14.5\n0,198,15.0\n0,199,15.5\n0,200,4.0\n0,201,4.5\n0,202,5.0\n0,203,5.5\n0,204,6.0\n0,205,6.5\n0,206,7.0\n0,207,7.5\n0,208,8.0\n0,209,8.5\n0,210,9.0\n0,211,9.5\n0,212,10.0\n0,213,10.5\n0,214,11.0\n0,215,11.5\n0,216,12.0\n0,217,12.5\n0,218,13.0\n0,219,13.5\n0,220,14.0\n0,221,14.5\n0,222,15.0\n0,223,15.5\n0,224,16.0\n0,225,4.5\n0,226,5.0\n0,227,5.5\n0,228,6.0\n0,229,6.5\n0,230,7.0\n0,231,7.5\n0,232,8.0\n0,233,8.5\n0,234,9.0\n0,235,9.5\n0,236,10.0\n0,237,10.5\n0,238,11.0\n0,239,11.5\n0,240,12.0\n0,241,12.5\n0,242,13.0\n0,243,13.5\n0,244,14.0\n0,245,14.5\n0,246,15.0\n0,247,15.5\n0,248,16.0\n0,249,16.5\n0,250,5.0\n0,251,5.5\n0,252,6.0\n0,253,6.5\n0,254,7.0\n0,255,7.5\n0,256,8.0\n0,257,8.5\n0,258,9.0\n0,259,9.5\n0,260,10.0\n0,261,10.5\n0,262,11.0\n0,263,11.5\n0,264,12.0\n0,265,12.5\n0,266,13.0\n0,267,13.5\n0,268,14.0\n0,269,14.5\n0,270,15.0\n0,271,15.5\n0,272,16.0\n0,273,16.5\n0,274,17.0\n0,275,5.5\n0,276,6.0\n0,277,6.5\n0,278,7.0\n0,279,7.5\n0,280,8.0\n0,281,8.5\n0,282,9.0\n0,283,9.5\n0,284,10.0\n0,285,10.5\n0,286,11.0\n0,287,11.5\n0,288,12.0\n0,289,12.5\n0,290,13.0\n0,291,13.5\n0,292,14.0\n0,293,14.5\n0,294,15.0\n0,295,15.5\n0,296,16.0\n0,297,16.5\n0,298,17.0\n0,299,17.5\n0,300,6.0\n0,301,6.5\n0,302,7.0\n0,303,7.5\n0,304,8.0\n0,305,8.5\n0,306,9.0\n0,307,9.5\n0,308,10.0\n0,309,10.5\n0,310,11.0\n0,311,11.5\n0,312,12.0\n0,313,12.5\n0,314,13.0\n0,315,13.5\n0,316,14.0\n0,317,14.5\n0,318,15.0\n0,319,15.5\n0,320,16.0\n0,321,16.5\n0,322,17.0\n0,323,17.5\n0,324,18.0\n0,325,6.5\n0,326,7.0\n0,327,7.5\n0,328,8.0\n0,329,8.5\n0,330,9.0\n0,331,9.5\n0,332,10.0\n0,333,10.5\n0,334,11.0\n0,335,11.5\n0,336,12.0\n0,337,12.5\n0,338,13.0\n0,339,13.5\n0,340,14.0\n0,341,14.5\n0,342,15.0\n0,343,15.5\n0,344,16.0\n0,345,16.5\n0,346,17.0\n0,347,17.5\n0,348,18.0\n0,349,18.5\n0,350,7.0\n0,351,7.5\n0,352,8.0\n0,353,8.5\n0,354,9.0\n0,355,9.5\n0,356,10.0\n0,357,10.5\n0,358,11.0\n0,359,11.5\n0,360,12.0\n0,361,12.5\n0,362,13.0\n0,363,13.5\n0,364,14.0\n0,365,14.5\n0,366,15.0\n0,367,15.5\n0,368,16.0\n0,369,16.5\n0,370,17.0\n0,371,17.5\n0,372,18.0\n0,373,18.5\n0,374,19.0\n0,375,7.5\n0,376,8.0\n0,377,8.5\n0,378,9.0\n0,379,9.5\n0,380,10.0\n0,381,10.5\n0,382,11.0\n0,383,11.5\n0,384,12.0\n0,385,12.5\n0,386,13.0\n0,387,13.5\n0,388,14.0\n0,389,14.5\n0,390,15.0\n0,391,15.5\n0,392,16.0\n0,393,16.5\n0,394,17.0\n0,395,17.5\n0,396,18.0\n0,397,18.5\n0,398,19.0\n0,399,19.5\n0,400,8.0\n0,401,8.5\n0,402,9.0\n0,403,9.5\n0,404,10.0\n0,405,10.5\n0,406,11.0\n0,407,11.5\n0,408,12.0\n0,409,12.5\n0,410,13.0\n0,411,13.5\n0,412,14.0\n0,413,14.5\n0,414,15.0\n0,415,15.5\n0,416,16.0\n0,417,16.5\n0,418,17.0\n0,419,17.5\n0,420,18.0\n0,421,18.5\n0,422,19.0\n0,423,19.5\n0,424,20.0\n0,425,8.5\n0,426,9.0\n0,427,9.5\n0,428,10.0\n0,429,10.5\n0,430,11.0\n0,431,11.5\n0,432,12.0\n0,433,12.5\n0,434,13.0\n0,435,13.5\n0,436,14.0\n0,437,14.5\n0,438,15.0\n0,439,15.5\n0,440,16.0\n0,441,16.5\n0,442,17.0\n0,443,17.5\n0,444,18.0\n0,445,18.5\n0,446,19.0\n0,447,19.5\n0,448,20.0\n0,449,20.5\n0,450,9.0\n0,451,9.5\n0,452,10.0\n0,453,10.5\n0,454,11.0\n0,455,11.5\n0,456,12.0\n0,457,12.5\n0,458,13.0\n0,459,13.5\n0,460,14.0\n0,461,14.5\n0,462,15.0\n0,463,15.5\n0,464,16.0\n0,465,16.5\n0,466,17.0\n0,467,17.5\n0,468,18.0\n0,469,18.5\n0,470,19.0\n0,471,19.5\n0,472,20.0\n0,473,20.5\n0,474,21.0\n0,475,9.5\n0,476,10.0\n0,477,10.5\n0,478,11.0\n0,479,11.5\n0,480,12.0\n0,481,12.5\n0,482,13.0\n0,483,13.5\n0,484,14.0\n0,485,14.5\n0,486,15.0\n0,487,15.5\n0,488,16.0\n0,489,16.5\n0,490,17.0\n0,491,17.5\n0,492,18.0\n0,493,18.5\n0,494,19.0\n0,495,19.5\n0,496,20.0\n0,497,20.5\n0,498,21.0\n0,499,21.5\n0,500,10.0\n0,501,10.5\n0,502,11.0\n0,503,11.5\n0,504,12.0\n0,505,12.5\n0,506,13.0\n0,507,13.5\n0,508,14.0\n0,509,14.5\n0,510,15.0\n0,511,15.5\n0,512,16.0\n0,513,16.5\n0,514,17.0\n0,515,17.5\n0,516,18.0\n0,517,18.5\n0,518,19.0\n0,519,19.5\n0,520,20.0\n0,521,20.5\n0,522,21.0\n0,523,21.5\n0,524,22.0\n0,525,10.5\n0,526,11.0\n0,527,11.5\n0,528,12.0\n0,529,12.5\n0,530,13.0\n0,531,13.5\n0,532,14.0\n0,533,14.5\n0,534,15.0\n0,535,15.5\n0,536,16.0\n0,537,16.5\n0,538,17.0\n0,539,17.5\n0,540,18.0\n0,541,18.5\n0,542,19.0\n0,543,19.5\n0,544,20.0\n0,545,20.5\n0,546,21.0\n0,547,21.5\n0,548,22.0\n0,549,22.5\n0,550,11.0\n0,551,11.5\n0,552,12.0\n0,553,12.5\n0,554,13.0\n0,555,13.5\n0,556,14.0\n0,557,14.5\n0,558,15.0\n0,559,15.5\n0,560,16.0\n0,561,16.5\n0,562,17.0\n0,563,17.5\n0,564,18.0\n0,565,18.5\n0,566,19.0\n0,567,19.5\n0,568,20.0\n0,569,20.5\n0,570,21.0\n0,571,21.5\n0,572,22.0\n0,573,22.5\n0,574,23.0\n0,575,11.5\n0,576,12.0\n0,577,12.5\n0,578,13.0\n0,579,13.5\n0,580,14.0\n0,581,14.5\n0,582,15.0\n0,583,15.5\n0,584,16.0\n0,585,16.5\n0,586,17.0\n0,587,17.5\n0,588,18.0\n0,589,18.5\n0,590,19.0\n0,591,19.5\n0,592,20.0\n0,593,20.5\n0,594,21.0\n0,595,21.5\n0,596,22.0\n0,597,22.5\n0,598,23.0\n0,599,23.5\n0,600,12.0\n0,601,12.5\n0,602,13.0\n0,603,13.5\n0,604,14.0\n0,605,14.5\n0,606,15.0\n0,607,15.5\n0,608,16.0\n0,609,16.5\n0,610,17.0\n0,611,17.5\n0,612,18.0\n0,613,18.5\n0,614,19.0\n0,615,19.5\n0,616,20.0\n0,617,20.5\n0,618,21.0\n0,619,21.5\n0,620,22.0\n0,621,22.5\n0,622,23.0\n0,623,23.5\n0,624,24.0\n1,0,0.5\n1,1,0\n1,2,0.5\n1,3,1.0\n1,4,1.5\n1,5,2.0\n1,6,2.5\n1,7,3.0\n1,8,3.5\n1,9,4.0\n1,10,4.5\n1,11,5.0\n1,12,5.5\n1,13,6.0\n1,14,6.5\n1,15,7.0\n1,16,7.5\n1,17,8.0\n1,18,8.5\n1,19,9.0\n1,20,9.5\n1,21,10.0\n1,22,10.5\n1,23,11.0\n1,24,11.5\n1,25,1.0\n1,26,0.5\n1,27,1.0\n1,28,1.5\n1,29,2.0\n1,30,2.5\n1,31,3.0\n1,32,3.5\n1,33,4.0\n1,34,4.5\n1,35,5.0\n1,36,5.5\n1,37,6.0\n1,38,6.5\n1,39,7.0\n1,40,7.5\n1,41,8.0\n1,42,8.5\n1,43,9.0\n1,44,9.5\n1,45,10.0\n1,46,10.5\n1,47,11.0\n1,48,11.5\n1,49,12.0\n1,50,1.5\n1,51,1.0\n1,52,1.5\n1,53,2.0\n1,54,2.5\n1,55,3.0\n1,56,3.5\n1,57,4.0\n1,58,4.5\n1,59,5.0\n1,60,5.5\n1,61,6.0\n1,62,6.5\n1,63,7.0\n1,64,7.5\n1,65,8.0\n1,66,8.5\n1,67,9.0\n1,68,9.5\n1,69,10.0\n1,70,10.5\n1,71,11.0\n1,72,11.5\n1,73,12.0\n1,74,12.5\n1,75,2.0\n1,76,1.5\n1,77,2.0\n1,78,2.5\n1,79,3.0\n1,80,3.5\n1,81,4.0\n1,82,4.5\n1,83,5.0\n1,84,5.5\n1,85,6.0\n1,86,6.5\n1,87,7.0\n1,88,7.5\n1,89,8.0\n1,90,8.5\n1,91,9.0\n1,92,9.5\n1,93,10.0\n1,94,10.5\n1,95,11.0\n1,96,11.5\n1,97,12.0\n1,98,12.5\n1,99,13.0\n1,100,2.5\n1,101,2.0\n1,102,2.5\n1,103,3.0\n1,104,3.5\n1,105,4.0\n1,106,4.5\n1,107,5.0\n1,108,5.5\n1,109,6.0\n1,110,6.5\n1,111,7.0\n1,112,7.5\n1,113,8.0\n1,114,8.5\n1,115,9.0\n1,116,9.5\n1,117,10.0\n1,118,10.5\n1,119,11.0\n1,120,11.5\n1,121,12.0\n1,122,12.5\n1,123,13.0\n1,124,13.5\n1,125,3.0\n1,126,2.5\n1,127,3.0\n1,128,3.5\n1,129,4.0\n1,130,4.5\n1,131,5.0\n1,132,5.5\n1,133,6.0\n1,134,6.5\n1,135,7.0\n1,136,7.5\n1,137,8.0\n1,138,8.5\n1,139,9.0\n1,140,9.5\n1,141,10.0\n1,142,10.5\n1,143,11.0\n1,144,11.5\n1,145,12.0\n1,146,12.5\n1,147,13.0\n1,148,13.5\n1,149,14.0\n1,150,3.5\n1,151,3.0\n1,152,3.5\n1,153,4.0\n1,154,4.5\n1,155,5.0\n1,156,5.5\n1,157,6.0\n1,158,6.5\n1,159,7.0\n1,160,7.5\n1,161,8.0\n1,162,8.5\n1,163,9.0\n1,164,9.5\n1,165,10.0\n1,166,10.5\n1,167,11.0\n1,168,11.5\n1,169,12.0\n1,170,12.5\n1,171,13.0\n1,172,13.5\n1,173,14.0\n1,174,14.5\n1,175,4.0\n1,176,3.5\n1,177,4.0\n1,178,4.5\n1,179,5.0\n1,180,5.5\n1,181,6.0\n1,182,6.5\n1,183,7.0\n1,184,7.5\n1,185,8.0\n1,186,8.5\n1,187,9.0\n1,188,9.5\n1,189,10.0\n1,190,10.5\n1,191,11.0\n1,192,11.5\n1,193,12.0\n1,194,12.5\n1,195,13.0\n1,196,13.5\n1,197,14.0\n1,198,14.5\n1,199,15.0\n1,200,4.5\n1,201,4.0\n1,202,4.5\n1,203,5.0\n1,204,5.5\n1,205,6.0\n1,206,6.5\n1,207,7.0\n1,208,7.5\n1,209,8.0\n1,210,8.5\n1,211,9.0\n1,212,9.5\n1,213,10.0\n1,214,10.5\n1,215,11.0\n1,216,11.5\n1,217,12.0\n1,218,12.5\n1,219,13.0\n1,220,13.5\n1,221,14.0\n1,222,14.5\n1,223,15.0\n1,224,15.5\n1,225,5.0\n1,226,4.5\n1,227,5.0\n1,228,5.5\n1,229,6.0\n1,230,6.5\n1,231,7.0\n1,232,7.5\n1,233,8.0\n1,234,8.5\n1,235,9.0\n1,236,9.5\n1,237,10.0\n1,238,10.5\n1,239,11.0\n1,240,11.5\n1,241,12.0\n1,242,12.5\n1,243,13.0\n1,244,13.5\n1,245,14.0\n1,246,14.5\n1,247,15.0\n1,248,15.5\n1,249,16.0\n1,250,5.5\n1,251,5.0\n1,252,5.5\n1,253,6.0\n1,254,6.5\n1,255,7.0\n1,256,7.5\n1,257,8.0\n1,258,8.5\n1,259,9.0\n1,260,9.5\n1,261,10.0\n1,262,10.5\n1,263,11.0\n1,264,11.5\n1,265,12.0\n1,266,12.5\n1,267,13.0\n1,268,13.5\n1,269,14.0\n1,270,14.5\n1,271,15.0\n1,272,15.5\n1,273,16.0\n1,274,16.5\n1,275,6.0\n1,276,5.5\n1,277,6.0\n1,278,6.5\n1,279,7.0\n1,280,7.5\n1,281,8.0\n1,282,8.5\n1,283,9.0\n1,284,9.5\n1,285,10.0\n1,286,10.5\n1,287,11.0\n1,288,11.5\n1,289,12.0\n1,290,12.5\n1,291,13.0\n1,292,13.5\n1,293,14.0\n1,294,14.5\n1,295,15.0\n1,296,15.5\n1,297,16.0\n1,298,16.5\n1,299,17.0\n1,300,6.5\n1,301,6.0\n1,302,6.5\n1,303,7.0\n1,304,7.5\n1,305,8.0\n1,306,8.5\n1,307,9.0\n1,308,9.5\n1,309,10.0\n1,310,10.5\n1,311,11.0\n1,312,11.5\n1,313,12.0\n1,314,12.5\n1,315,13.0\n1,316,13.5\n1,317,14.0\n1,318,14.5\n1,319,15.0\n1,320,15.5\n1,321,16.0\n1,322,16.5\n1,323,17.0\n1,324,17.5\n1,325,7.0\n1,326,6.5\n1,327,7.0\n1,328,7.5\n1,329,8.0\n1,330,8.5\n1,331,9.0\n1,332,9.5\n1,333,10.0\n1,334,10.5\n1,335,11.0\n1,336,11.5\n1,337,12.0\n1,338,12.5\n1,339,13.0\n1,340,13.5\n1,341,14.0\n1,342,14.5\n1,343,15.0\n1,344,15.5\n1,345,16.0\n1,346,16.5\n1,347,17.0\n1,348,17.5\n1,349,18.0\n1,350,7.5\n1,351,7.0\n1,352,7.5\n1,353,8.0\n1,354,8.5\n1,355,9.0\n1,356,9.5\n1,357,10.0\n1,358,10.5\n1,359,11.0\n1,360,11.5\n1,361,12.0\n1,362,12.5\n1,363,13.0\n1,364,13.5\n1,365,14.0\n1,366,14.5\n1,367,15.0\n1,368,15.5\n1,369,16.0\n1,370,16.5\n1,371,17.0\n1,372,17.5\n1,373,18.0\n1,374,18.5\n1,375,8.0\n1,376,7.5\n1,377,8.0\n1,378,8.5\n1,379,9.0\n1,380,9.5\n1,381,10.0\n1,382,10.5\n1,383,11.0\n1,384,11.5\n1,385,12.0\n1,386,12.5\n1,387,13.0\n1,388,13.5\n1,389,14.0\n1,390,14.5\n1,391,15.0\n1,392,15.5\n1,393,16.0\n1,394,16.5\n1,395,17.0\n1,396,17.5\n1,397,18.0\n1,398,18.5\n1,399,19.0\n1,400,8.5\n1,401,8.0\n1,402,8.5\n1,403,9.0\n1,404,9.5\n1,405,10.0\n1,406,10.5\n1,407,11.0\n1,408,11.5\n1,409,12.0\n1,410,12.5\n1,411,13.0\n1,412,13.5\n1,413,14.0\n1,414,14.5\n1,415,15.0\n1,416,15.5\n1,417,16.0\n1,418,16.5\n1,419,17.0\n1,420,17.5\n1,421,18.0\n1,422,18.5\n1,423,19.0\n1,424,19.5\n1,425,9.0\n1,426,8.5\n1,427,9.0\n1,428,9.5\n1,429,10.0\n1,430,10.5\n1,431,11.0\n1,432,11.5\n1,433,12.0\n1,434,12.5\n1,435,13.0\n1,436,13.5\n1,437,14.0\n1,438,14.5\n1,439,15.0\n1,440,15.5\n1,441,16.0\n1,442,16.5\n1,443,17.0\n1,444,17.5\n1,445,18.0\n1,446,18.5\n1,447,19.0\n1,448,19.5\n1,449,20.0\n1,450,9.5\n1,451,9.0\n1,452,9.5\n1,453,10.0\n1,454,10.5\n1,455,11.0\n1,456,11.5\n1,457,12.0\n1,458,12.5\n1,459,13.0\n1,460,13.5\n1,461,14.0\n1,462,14.5\n1,463,15.0\n1,464,15.5\n1,465,16.0\n1,466,16.5\n1,467,17.0\n1,468,17.5\n1,469,18.0\n1,470,18.5\n1,471,19.0\n1,472,19.5\n1,473,20.0\n1,474,20.5\n1,475,10.0\n1,476,9.5\n1,477,10.0\n1,478,10.5\n1,479,11.0\n1,480,11.5\n1,481,12.0\n1,482,12.5\n1,483,13.0\n1,484,13.5\n1,485,14.0\n1,486,14.5\n1,487,15.0\n1,488,15.5\n1,489,16.0\n1,490,16.5\n1,491,17.0\n1,492,17.5\n1,493,18.0\n1,494,18.5\n1,495,19.0\n1,496,19.5\n1,497,20.0\n1,498,20.5\n1,499,21.0\n1,500,10.5\n1,501,10.0\n1,502,10.5\n1,503,11.0\n1,504,11.5\n1,505,12.0\n1,506,12.5\n1,507,13.0\n1,508,13.5\n1,509,14.0\n1,510,14.5\n1,511,15.0\n1,512,15.5\n1,513,16.0\n1,514,16.5\n1,515,17.0\n1,516,17.5\n1,517,18.0\n1,518,18.5\n1,519,19.0\n1,520,19.5\n1,521,20.0\n1,522,20.5\n1,523,21.0\n1,524,21.5\n1,525,11.0\n1,526,10.5\n1,527,11.0\n1,528,11.5\n1,529,12.0\n1,530,12.5\n1,531,13.0\n1,532,13.5\n1,533,14.0\n1,534,14.5\n1,535,15.0\n1,536,15.5\n1,537,16.0\n1,538,16.5\n1,539,17.0\n1,540,17.5\n1,541,18.0\n1,542,18.5\n1,543,19.0\n1,544,19.5\n1,545,20.0\n1,546,20.5\n1,547,21.0\n1,548,21.5\n1,549,22.0\n1,550,11.5\n1,551,11.0\n1,552,11.5\n1,553,12.0\n1,554,12.5\n1,555,13.0\n1,556,13.5\n1,557,14.0\n1,558,14.5\n1,559,15.0\n1,560,15.5\n1,561,16.0\n1,562,16.5\n1,563,17.0\n1,564,17.5\n1,565,18.0\n1,566,18.5\n1,567,19.0\n1,568,19.5\n1,569,20.0\n1,570,20.5\n1,571,21.0\n1,572,21.5\n1,573,22.0\n1,574,22.5\n1,575,12.0\n1,576,11.5\n1,577,12.0\n1,578,12.5\n1,579,13.0\n1,580,13.5\n1,581,14.0\n1,582,14.5\n1,583,15.0\n1,584,15.5\n1,585,16.0\n1,586,16.5\n1,587,17.0\n1,588,17.5\n1,589,18.0\n1,590,18.5\n1,591,19.0\n1,592,19.5\n1,593,20.0\n1,594,20.5\n1,595,21.0\n1,596,21.5\n1,597,22.0\n1,598,22.5\n1,599,23.0\n1,600,12.5\n1,601,12.0\n1,602,12.5\n1,603,13.0\n1,604,13.5\n1,605,14.0\n1,606,14.5\n1,607,15.0\n1,608,15.5\n1,609,16.0\n1,610,16.5\n1,611,17.0\n1,612,17.5\n1,613,18.0\n1,614,18.5\n1,615,19.0\n1,616,19.5\n1,617,20.0\n1,618,20.5\n1,619,21.0\n1,620,21.5\n1,621,22.0\n1,622,22.5\n1,623,23.0\n1,624,23.5\n2,0,1.0\n2,1,0.5\n2,2,0\n2,3,0.5\n2,4,1.0\n2,5,1.5\n2,6,2.0\n2,7,2.5\n2,8,3.0\n2,9,3.5\n2,10,4.0\n2,11,4.5\n2,12,5.0\n2,13,5.5\n2,14,6.0\n2,15,6.5\n2,16,7.0\n2,17,7.5\n2,18,8.0\n2,19,8.5\n2,20,9.0\n2,21,9.5\n2,22,10.0\n2,23,10.5\n2,24,11.0\n2,25,1.5\n2,26,1.0\n2,27,0.5\n2,28,1.0\n2,29,1.5\n2,30,2.0\n2,31,2.5\n2,32,3.0\n2,33,3.5\n2,34,4.0\n2,35,4.5\n2,36,5.0\n2,37,5.5\n2,38,6.0\n2,39,6.5\n2,40,7.0\n2,41,7.5\n2,42,8.0\n2,43,8.5\n2,44,9.0\n2,45,9.5\n2,46,10.0\n2,47,10.5\n2,48,11.0\n2,49,11.5\n2,50,2.0\n2,51,1.5\n2,52,1.0\n2,53,1.5\n2,54,2.0\n2,55,2.5\n2,56,3.0\n2,57,3.5\n2,58,4.0\n2,59,4.5\n2,60,5.0\n2,61,5.5\n2,62,6.0\n2,63,6.5\n2,64,7.0\n2,65,7.5\n2,66,8.0\n2,67,8.5\n2,68,9.0\n2,69,9.5\n2,70,10.0\n2,71,10.5\n2,72,11.0\n2,73,11.5\n2,74,12.0\n2,75,2.5\n2,76,2.0\n2,77,1.5\n2,78,2.0\n2,79,2.5\n2,80,3.0\n2,81,3.5\n2,82,4.0\n2,83,4.5\n2,84,5.0\n2,85,5.5\n2,86,6.0\n2,87,6.5\n2,88,7.0\n2,89,7.5\n2,90,8.0\n2,91,8.5\n2,92,9.0\n2,93,9.5\n2,94,10.0\n2,95,10.5\n2,96,11.0\n2,97,11.5\n2,98,12.0\n2,99,12.5\n2,100,3.0\n2,101,2.5\n2,102,2.0\n2,103,2.5\n2,104,3.0\n2,105,3.5\n2,106,4.0\n2,107,4.5\n2,108,5.0\n2,109,5.5\n2,110,6.0\n2,111,6.5\n2,112,7.0\n2,113,7.5\n2,114,8.0\n2,115,8.5\n2,116,9.0\n2,117,9.5\n2,118,10.0\n2,119,10.5\n2,120,11.0\n2,121,11.5\n2,122,12.0\n2,123,12.5\n2,124,13.0\n2,125,3.5\n2,126,3.0\n2,127,2.5\n2,128,3.0\n2,129,3.5\n2,130,4.0\n2,131,4.5\n2,132,5.0\n2,133,5.5\n2,134,6.0\n2,135,6.5\n2,136,7.0\n2,137,7.5\n2,138,8.0\n2,139,8.5\n2,140,9.0\n2,141,9.5\n2,142,10.0\n2,143,10.5\n2,144,11.0\n2,145,11.5\n2,146,12.0\n2,147,12.5\n2,148,13.0\n2,149,13.5\n2,150,4.0\n2,151,3.5\n2,152,3.0\n2,153,3.5\n2,154,4.0\n2,155,4.5\n2,156,5.0\n2,157,5.5\n2,158,6.0\n2,159,6.5\n2,160,7.0\n2,161,7.5\n2,162,8.0\n2,163,8.5\n2,164,9.0\n2,165,9.5\n2,166,10.0\n2,167,10.5\n2,168,11.0\n2,169,11.5\n2,170,12.0\n2,171,12.5\n2,172,13.0\n2,173,13.5\n2,174,14.0\n2,175,4.5\n2,176,4.0\n2,177,3.5\n2,178,4.0\n2,179,4.5\n2,180,5.0\n2,181,5.5\n2,182,6.0\n2,183,6.5\n2,184,7.0\n2,185,7.5\n2,186,8.0\n2,187,8.5\n2,188,9.0\n2,189,9.5\n2,190,10.0\n2,191,10.5\n2,192,11.0\n2,193,11.5\n2,194,12.0\n2,195,12.5\n2,196,13.0\n2,197,13.5\n2,198,14.0\n2,199,14.5\n2,200,5.0\n2,201,4.5\n2,202,4.0\n2,203,4.5\n2,204,5.0\n2,205,5.5\n2,206,6.0\n2,207,6.5\n2,208,7.0\n2,209,7.5\n2,210,8.0\n2,211,8.5\n2,212,9.0\n2,213,9.5\n2,214,10.0\n2,215,10.5\n2,216,11.0\n2,217,11.5\n2,218,12.0\n2,219,12.5\n2,220,13.0\n2,221,13.5\n2,222,14.0\n2,223,14.5\n2,224,15.0\n2,225,5.5\n2,226,5.0\n2,227,4.5\n2,228,5.0\n2,229,5.5\n2,230,6.0\n2,231,6.5\n2,232,7.0\n2,233,7.5\n2,234,8.0\n2,235,8.5\n2,236,9.0\n2,237,9.5\n2,238,10.0\n2,239,10.5\n2,240,11.0\n2,241,11.5\n2,242,12.0\n2,243,12.5\n2,244,13.0\n2,245,13.5\n2,246,14.0\n2,247,14.5\n2,248,15.0\n2,249,15.5\n2,250,6.0\n2,251,5.5\n2,252,5.0\n2,253,5.5\n2,254,6.0\n2,255,6.5\n2,256,7.0\n2,257,7.5\n2,258,8.0\n2,259,8.5\n2,260,9.0\n2,261,9.5\n2,262,10.0\n2,263,10.5\n2,264,11.0\n2,265,11.5\n2,266,12.0\n2,267,12.5\n2,268,13.0\n2,269,13.5\n2,270,14.0\n2,271,14.5\n2,272,15.0\n2,273,15.5\n2,274,16.0\n2,275,6.5\n2,276,6.0\n2,277,5.5\n2,278,6.0\n2,279,6.5\n2,280,7.0\n2,281,7.5\n2,282,8.0\n2,283,8.5\n2,284,9.0\n2,285,9.5\n2,286,10.0\n2,287,10.5\n2,288,11.0\n2,289,11.5\n2,290,12.0\n2,291,12.5\n2,292,13.0\n2,293,13.5\n2,294,14.0\n2,295,14.5\n2,296,15.0\n2,297,15.5\n2,298,16.0\n2,299,16.5\n2,300,7.0\n2,301,6.5\n2,302,6.0\n2,303,6.5\n2,304,7.0\n2,305,7.5\n2,306,8.0\n2,307,8.5\n2,308,9.0\n2,309,9.5\n2,310,10.0\n2,311,10.5\n2,312,11.0\n2,313,11.5\n2,314,12.0\n2,315,12.5\n2,316,13.0\n2,317,13.5\n2,318,14.0\n2,319,14.5\n2,320,15.0\n2,321,15.5\n2,322,16.0\n2,323,16.5\n2,324,17.0\n2,325,7.5\n2,326,7.0\n2,327,6.5\n2,328,7.0\n2,329,7.5\n2,330,8.0\n2,331,8.5\n2,332,9.0\n2,333,9.5\n2,334,10.0\n2,335,10.5\n2,336,11.0\n2,337,11.5\n2,338,12.0\n2,339,12.5\n2,340,13.0\n2,341,13.5\n2,342,14.0\n2,343,14.5\n2,344,15.0\n2,345,15.5\n2,346,16.0\n2,347,16.5\n2,348,17.0\n2,349,17.5\n2,350,8.0\n2,351,7.5\n2,352,7.0\n2,353,7.5\n2,354,8.0\n2,355,8.5\n2,356,9.0\n2,357,9.5\n2,358,10.0\n2,359,10.5\n2,360,11.0\n2,361,11.5\n2,362,12.0\n2,363,12.5\n2,364,13.0\n2,365,13.5\n2,366,14.0\n2,367,14.5\n2,368,15.0\n2,369,15.5\n2,370,16.0\n2,371,16.5\n2,372,17.0\n2,373,17.5\n2,374,18.0\n2,375,8.5\n2,376,8.0\n2,377,7.5\n2,378,8.0\n2,379,8.5\n2,380,9.0\n2,381,9.5\n2,382,10.0\n2,383,10.5\n2,384,11.0\n2,385,11.5\n2,386,12.0\n2,387,12.5\n2,388,13.0\n2,389,13.5\n2,390,14.0\n2,391,14.5\n2,392,15.0\n2,393,15.5\n2,394,16.0\n2,395,16.5\n2,396,17.0\n2,397,17.5\n2,398,18.0\n2,399,18.5\n2,400,9.0\n2,401,8.5\n2,402,8.0\n2,403,8.5\n2,404,9.0\n2,405,9.5\n2,406,10.0\n2,407,10.5\n2,408,11.0\n2,409,11.5\n2,410,12.0\n2,411,12.5\n2,412,13.0\n2,413,13.5\n2,414,14.0\n2,415,14.5\n2,416,15.0\n2,417,15.5\n2,418,16.0\n2,419,16.5\n2,420,17.0\n2,421,17.5\n2,422,18.0\n2,423,18.5\n2,424,19.0\n2,425,9.5\n2,426,9.0\n2,427,8.5\n2,428,9.0\n2,429,9.5\n2,430,10.0\n2,431,10.5\n2,432,11.0\n2,433,11.5\n2,434,12.0\n2,435,12.5\n2,436,13.0\n2,437,13.5\n2,438,14.0\n2,439,14.5\n2,440,15.0\n2,441,15.5\n2,442,16.0\n2,443,16.5\n2,444,17.0\n2,445,17.5\n2,446,18.0\n2,447,18.5\n2,448,19.0\n2,449,19.5\n2,450,10.0\n2,451,9.5\n2,452,9.0\n2,453,9.5\n2,454,10.0\n2,455,10.5\n2,456,11.0\n2,457,11.5\n2,458,12.0\n2,459,12.5\n2,460,13.0\n2,461,13.5\n2,462,14.0\n2,463,14.5\n2,464,15.0\n2,465,15.5\n2,466,16.0\n2,467,16.5\n2,468,17.0\n2,469,17.5\n2,470,18.0\n2,471,18.5\n2,472,19.0\n2,473,19.5\n2,474,20.0\n2,475,10.5\n2,476,10.0\n2,477,9.5\n2,478,10.0\n2,479,10.5\n2,480,11.0\n2,481,11.5\n2,482,12.0\n2,483,12.5\n2,484,13.0\n2,485,13.5\n2,486,14.0\n2,487,14.5\n2,488,15.0\n2,489,15.5\n2,490,16.0\n2,491,16.5\n2,492,17.0\n2,493,17.5\n2,494,18.0\n2,495,18.5\n2,496,19.0\n2,497,19.5\n2,498,20.0\n2,499,20.5\n2,500,11.0\n2,501,10.5\n2,502,10.0\n2,503,10.5\n2,504,11.0\n2,505,11.5\n2,506,12.0\n2,507,12.5\n2,508,13.0\n2,509,13.5\n2,510,14.0\n2,511,14.5\n2,512,15.0\n2,513,15.5\n2,514,16.0\n2,515,16.5\n2,516,17.0\n2,517,17.5\n2,518,18.0\n2,519,18.5\n2,520,19.0\n2,521,19.5\n2,522,20.0\n2,523,20.5\n2,524,21.0\n2,525,11.5\n2,526,11.0\n2,527,10.5\n2,528,11.0\n2,529,11.5\n2,530,12.0\n2,531,12.5\n2,532,13.0\n2,533,13.5\n2,534,14.0\n2,535,14.5\n2,536,15.0\n2,537,15.5\n2,538,16.0\n2,539,16.5\n2,540,17.0\n2,541,17.5\n2,542,18.0\n2,543,18.5\n2,544,19.0\n2,545,19.5\n2,546,20.0\n2,547,20.5\n2,548,21.0\n2,549,21.5\n2,550,12.0\n2,551,11.5\n2,552,11.0\n2,553,11.5\n2,554,12.0\n2,555,12.5\n2,556,13.0\n2,557,13.5\n2,558,14.0\n2,559,14.5\n2,560,15.0\n2,561,15.5\n2,562,16.0\n2,563,16.5\n2,564,17.0\n2,565,17.5\n2,566,18.0\n2,567,18.5\n2,568,19.0\n2,569,19.5\n2,570,20.0\n2,571,20.5\n2,572,21.0\n2,573,21.5\n2,574,22.0\n2,575,12.5\n2,576,12.0\n2,577,11.5\n2,578,12.0\n2,579,12.5\n2,580,13.0\n2,581,13.5\n2,582,14.0\n2,583,14.5\n2,584,15.0\n2,585,15.5\n2,586,16.0\n2,587,16.5\n2,588,17.0\n2,589,17.5\n2,590,18.0\n2,591,18.5\n2,592,19.0\n2,593,19.5\n2,594,20.0\n2,595,20.5\n2,596,21.0\n2,597,21.5\n2,598,22.0\n2,599,22.5\n2,600,13.0\n2,601,12.5\n2,602,12.0\n2,603,12.5\n2,604,13.0\n2,605,13.5\n2,606,14.0\n2,607,14.5\n2,608,15.0\n2,609,15.5\n2,610,16.0\n2,611,16.5\n2,612,17.0\n2,613,17.5\n2,614,18.0\n2,615,18.5\n2,616,19.0\n2,617,19.5\n2,618,20.0\n2,619,20.5\n2,620,21.0\n2,621,21.5\n2,622,22.0\n2,623,22.5\n2,624,23.0\n3,0,1.5\n3,1,1.0\n3,2,0.5\n3,3,0\n3,4,0.5\n3,5,1.0\n3,6,1.5\n3,7,2.0\n3,8,2.5\n3,9,3.0\n3,10,3.5\n3,11,4.0\n3,12,4.5\n3,13,5.0\n3,14,5.5\n3,15,6.0\n3,16,6.5\n3,17,7.0\n3,18,7.5\n3,19,8.0\n3,20,8.5\n3,21,9.0\n3,22,9.5\n3,23,10.0\n3,24,10.5\n3,25,2.0\n3,26,1.5\n3,27,1.0\n3,28,0.5\n3,29,1.0\n3,30,1.5\n3,31,2.0\n3,32,2.5\n3,33,3.0\n3,34,3.5\n3,35,4.0\n3,36,4.5\n3,37,5.0\n3,38,5.5\n3,39,6.0\n3,40,6.5\n3,41,7.0\n3,42,7.5\n3,43,8.0\n3,44,8.5\n3,45,9.0\n3,46,9.5\n3,47,10.0\n3,48,10.5\n3,49,11.0\n3,50,2.5\n3,51,2.0\n3,52,1.5\n3,53,1.0\n3,54,1.5\n3,55,2.0\n3,56,2.5\n3,57,3.0\n3,58,3.5\n3,59,4.0\n3,60,4.5\n3,61,5.0\n3,62,5.5\n3,63,6.0\n3,64,6.5\n3,65,7.0\n3,66,7.5\n3,67,8.0\n3,68,8.5\n3,69,9.0\n3,70,9.5\n3,71,10.0\n3,72,10.5\n3,73,11.0\n3,74,11.5\n3,75,3.0\n3,76,2.5\n3,77,2.0\n3,78,1.5\n3,79,2.0\n3,80,2.5\n3,81,3.0\n3,82,3.5\n3,83,4.0\n3,84,4.5\n3,85,5.0\n3,86,5.5\n3,87,6.0\n3,88,6.5\n3,89,7.0\n3,90,7.5\n3,91,8.0\n3,92,8.5\n3,93,9.0\n3,94,9.5\n3,95,10.0\n3,96,10.5\n3,97,11.0\n3,98,11.5\n3,99,12.0\n3,100,3.5\n3,101,3.0\n3,102,2.5\n3,103,2.0\n3,104,2.5\n3,105,3.0\n3,106,3.5\n3,107,4.0\n3,108,4.5\n3,109,5.0\n3,110,5.5\n3,111,6.0\n3,112,6.5\n3,113,7.0\n3,114,7.5\n3,115,8.0\n3,116,8.5\n3,117,9.0\n3,118,9.5\n3,119,10.0\n3,120,10.5\n3,121,11.0\n3,122,11.5\n3,123,12.0\n3,124,12.5\n3,125,4.0\n3,126,3.5\n3,127,3.0\n3,128,2.5\n3,129,3.0\n3,130,3.5\n3,131,4.0\n3,132,4.5\n3,133,5.0\n3,134,5.5\n3,135,6.0\n3,136,6.5\n3,137,7.0\n3,138,7.5\n3,139,8.0\n3,140,8.5\n3,141,9.0\n3,142,9.5\n3,143,10.0\n3,144,10.5\n3,145,11.0\n3,146,11.5\n3,147,12.0\n3,148,12.5\n3,149,13.0\n3,150,4.5\n3,151,4.0\n3,152,3.5\n3,153,3.0\n3,154,3.5\n3,155,4.0\n3,156,4.5\n3,157,5.0\n3,158,5.5\n3,159,6.0\n3,160,6.5\n3,161,7.0\n3,162,7.5\n3,163,8.0\n3,164,8.5\n3,165,9.0\n3,166,9.5\n3,167,10.0\n3,168,10.5\n3,169,11.0\n3,170,11.5\n3,171,12.0\n3,172,12.5\n3,173,13.0\n3,174,13.5\n3,175,5.0\n3,176,4.5\n3,177,4.0\n3,178,3.5\n3,179,4.0\n3,180,4.5\n3,181,5.0\n3,182,5.5\n3,183,6.0\n3,184,6.5\n3,185,7.0\n3,186,7.5\n3,187,8.0\n3,188,8.5\n3,189,9.0\n3,190,9.5\n3,191,10.0\n3,192,10.5\n3,193,11.0\n3,194,11.5\n3,195,12.0\n3,196,12.5\n3,197,13.0\n3,198,13.5\n3,199,14.0\n3,200,5.5\n3,201,5.0\n3,202,4.5\n3,203,4.0\n3,204,4.5\n3,205,5.0\n3,206,5.5\n3,207,6.0\n3,208,6.5\n3,209,7.0\n3,210,7.5\n3,211,8.0\n3,212,8.5\n3,213,9.0\n3,214,9.5\n3,215,10.0\n3,216,10.5\n3,217,11.0\n3,218,11.5\n3,219,12.0\n3,220,12.5\n3,221,13.0\n3,222,13.5\n3,223,14.0\n3,224,14.5\n3,225,6.0\n3,226,5.5\n3,227,5.0\n3,228,4.5\n3,229,5.0\n3,230,5.5\n3,231,6.0\n3,232,6.5\n3,233,7.0\n3,234,7.5\n3,235,8.0\n3,236,8.5\n3,237,9.0\n3,238,9.5\n3,239,10.0\n3,240,10.5\n3,241,11.0\n3,242,11.5\n3,243,12.0\n3,244,12.5\n3,245,13.0\n3,246,13.5\n3,247,14.0\n3,248,14.5\n3,249,15.0\n3,250,6.5\n3,251,6.0\n3,252,5.5\n3,253,5.0\n3,254,5.5\n3,255,6.0\n3,256,6.5\n3,257,7.0\n3,258,7.5\n3,259,8.0\n3,260,8.5\n3,261,9.0\n3,262,9.5\n3,263,10.0\n3,264,10.5\n3,265,11.0\n3,266,11.5\n3,267,12.0\n3,268,12.5\n3,269,13.0\n3,270,13.5\n3,271,14.0\n3,272,14.5\n3,273,15.0\n3,274,15.5\n3,275,7.0\n3,276,6.5\n3,277,6.0\n3,278,5.5\n3,279,6.0\n3,280,6.5\n3,281,7.0\n3,282,7.5\n3,283,8.0\n3,284,8.5\n3,285,9.0\n3,286,9.5\n3,287,10.0\n3,288,10.5\n3,289,11.0\n3,290,11.5\n3,291,12.0\n3,292,12.5\n3,293,13.0\n3,294,13.5\n3,295,14.0\n3,296,14.5\n3,297,15.0\n3,298,15.5\n3,299,16.0\n3,300,7.5\n3,301,7.0\n3,302,6.5\n3,303,6.0\n3,304,6.5\n3,305,7.0\n3,306,7.5\n3,307,8.0\n3,308,8.5\n3,309,9.0\n3,310,9.5\n3,311,10.0\n3,312,10.5\n3,313,11.0\n3,314,11.5\n3,315,12.0\n3,316,12.5\n3,317,13.0\n3,318,13.5\n3,319,14.0\n3,320,14.5\n3,321,15.0\n3,322,15.5\n3,323,16.0\n3,324,16.5\n3,325,8.0\n3,326,7.5\n3,327,7.0\n3,328,6.5\n3,329,7.0\n3,330,7.5\n3,331,8.0\n3,332,8.5\n3,333,9.0\n3,334,9.5\n3,335,10.0\n3,336,10.5\n3,337,11.0\n3,338,11.5\n3,339,12.0\n3,340,12.5\n3,341,13.0\n3,342,13.5\n3,343,14.0\n3,344,14.5\n3,345,15.0\n3,346,15.5\n3,347,16.0\n3,348,16.5\n3,349,17.0\n3,350,8.5\n3,351,8.0\n3,352,7.5\n3,353,7.0\n3,354,7.5\n3,355,8.0\n3,356,8.5\n3,357,9.0\n3,358,9.5\n3,359,10.0\n3,360,10.5\n3,361,11.0\n3,362,11.5\n3,363,12.0\n3,364,12.5\n3,365,13.0\n3,366,13.5\n3,367,14.0\n3,368,14.5\n3,369,15.0\n3,370,15.5\n3,371,16.0\n3,372,16.5\n3,373,17.0\n3,374,17.5\n3,375,9.0\n3,376,8.5\n3,377,8.0\n3,378,7.5\n3,379,8.0\n3,380,8.5\n3,381,9.0\n3,382,9.5\n3,383,10.0\n3,384,10.5\n3,385,11.0\n3,386,11.5\n3,387,12.0\n3,388,12.5\n3,389,13.0\n3,390,13.5\n3,391,14.0\n3,392,14.5\n3,393,15.0\n3,394,15.5\n3,395,16.0\n3,396,16.5\n3,397,17.0\n3,398,17.5\n3,399,18.0\n3,400,9.5\n3,401,9.0\n3,402,8.5\n3,403,8.0\n3,404,8.5\n3,405,9.0\n3,406,9.5\n3,407,10.0\n3,408,10.5\n3,409,11.0\n3,410,11.5\n3,411,12.0\n3,412,12.5\n3,413,13.0\n3,414,13.5\n3,415,14.0\n3,416,14.5\n3,417,15.0\n3,418,15.5\n3,419,16.0\n3,420,16.5\n3,421,17.0\n3,422,17.5\n3,423,18.0\n3,424,18.5\n3,425,10.0\n3,426,9.5\n3,427,9.0\n3,428,8.5\n3,429,9.0\n3,430,9.5\n3,431,10.0\n3,432,10.5\n3,433,11.0\n3,434,11.5\n3,435,12.0\n3,436,12.5\n3,437,13.0\n3,438,13.5\n3,439,14.0\n3,440,14.5\n3,441,15.0\n3,442,15.5\n3,443,16.0\n3,444,16.5\n3,445,17.0\n3,446,17.5\n3,447,18.0\n3,448,18.5\n3,449,19.0\n3,450,10.5\n3,451,10.0\n3,452,9.5\n3,453,9.0\n3,454,9.5\n3,455,10.0\n3,456,10.5\n3,457,11.0\n3,458,11.5\n3,459,12.0\n3,460,12.5\n3,461,13.0\n3,462,13.5\n3,463,14.0\n3,464,14.5\n3,465,15.0\n3,466,15.5\n3,467,16.0\n3,468,16.5\n3,469,17.0\n3,470,17.5\n3,471,18.0\n3,472,18.5\n3,473,19.0\n3,474,19.5\n3,475,11.0\n3,476,10.5\n3,477,10.0\n3,478,9.5\n3,479,10.0\n3,480,10.5\n3,481,11.0\n3,482,11.5\n3,483,12.0\n3,484,12.5\n3,485,13.0\n3,486,13.5\n3,487,14.0\n3,488,14.5\n3,489,15.0\n3,490,15.5\n3,491,16.0\n3,492,16.5\n3,493,17.0\n3,494,17.5\n3,495,18.0\n3,496,18.5\n3,497,19.0\n3,498,19.5\n3,499,20.0\n3,500,11.5\n3,501,11.0\n3,502,10.5\n3,503,10.0\n3,504,10.5\n3,505,11.0\n3,506,11.5\n3,507,12.0\n3,508,12.5\n3,509,13.0\n3,510,13.5\n3,511,14.0\n3,512,14.5\n3,513,15.0\n3,514,15.5\n3,515,16.0\n3,516,16.5\n3,517,17.0\n3,518,17.5\n3,519,18.0\n3,520,18.5\n3,521,19.0\n3,522,19.5\n3,523,20.0\n3,524,20.5\n3,525,12.0\n3,526,11.5\n3,527,11.0\n3,528,10.5\n3,529,11.0\n3,530,11.5\n3,531,12.0\n3,532,12.5\n3,533,13.0\n3,534,13.5\n3,535,14.0\n3,536,14.5\n3,537,15.0\n3,538,15.5\n3,539,16.0\n3,540,16.5\n3,541,17.0\n3,542,17.5\n3,543,18.0\n3,544,18.5\n3,545,19.0\n3,546,19.5\n3,547,20.0\n3,548,20.5\n3,549,21.0\n3,550,12.5\n3,551,12.0\n3,552,11.5\n3,553,11.0\n3,554,11.5\n3,555,12.0\n3,556,12.5\n3,557,13.0\n3,558,13.5\n3,559,14.0\n3,560,14.5\n3,561,15.0\n3,562,15.5\n3,563,16.0\n3,564,16.5\n3,565,17.0\n3,566,17.5\n3,567,18.0\n3,568,18.5\n3,569,19.0\n3,570,19.5\n3,571,20.0\n3,572,20.5\n3,573,21.0\n3,574,21.5\n3,575,13.0\n3,576,12.5\n3,577,12.0\n3,578,11.5\n3,579,12.0\n3,580,12.5\n3,581,13.0\n3,582,13.5\n3,583,14.0\n3,584,14.5\n3,585,15.0\n3,586,15.5\n3,587,16.0\n3,588,16.5\n3,589,17.0\n3,590,17.5\n3,591,18.0\n3,592,18.5\n3,593,19.0\n3,594,19.5\n3,595,20.0\n3,596,20.5\n3,597,21.0\n3,598,21.5\n3,599,22.0\n3,600,13.5\n3,601,13.0\n3,602,12.5\n3,603,12.0\n3,604,12.5\n3,605,13.0\n3,606,13.5\n3,607,14.0\n3,608,14.5\n3,609,15.0\n3,610,15.5\n3,611,16.0\n3,612,16.5\n3,613,17.0\n3,614,17.5\n3,615,18.0\n3,616,18.5\n3,617,19.0\n3,618,19.5\n3,619,20.0\n3,620,20.5\n3,621,21.0\n3,622,21.5\n3,623,22.0\n3,624,22.5\n4,0,2.0\n4,1,1.5\n4,2,1.0\n4,3,0.5\n4,4,0\n4,5,0.5\n4,6,1.0\n4,7,1.5\n4,8,2.0\n4,9,2.5\n4,10,3.0\n4,11,3.5\n4,12,4.0\n4,13,4.5\n4,14,5.0\n4,15,5.5\n4,16,6.0\n4,17,6.5\n4,18,7.0\n4,19,7.5\n4,20,8.0\n4,21,8.5\n4,22,9.0\n4,23,9.5\n4,24,10.0\n4,25,2.5\n4,26,2.0\n4,27,1.5\n4,28,1.0\n4,29,0.5\n4,30,1.0\n4,31,1.5\n4,32,2.0\n4,33,2.5\n4,34,3.0\n4,35,3.5\n4,36,4.0\n4,37,4.5\n4,38,5.0\n4,39,5.5\n4,40,6.0\n4,41,6.5\n4,42,7.0\n4,43,7.5\n4,44,8.0\n4,45,8.5\n4,46,9.0\n4,47,9.5\n4,48,10.0\n4,49,10.5\n4,50,3.0\n4,51,2.5\n4,52,2.0\n4,53,1.5\n4,54,1.0\n4,55,1.5\n4,56,2.0\n4,57,2.5\n4,58,3.0\n4,59,3.5\n4,60,4.0\n4,61,4.5\n4,62,5.0\n4,63,5.5\n4,64,6.0\n4,65,6.5\n4,66,7.0\n4,67,7.5\n4,68,8.0\n4,69,8.5\n4,70,9.0\n4,71,9.5\n4,72,10.0\n4,73,10.5\n4,74,11.0\n4,75,3.5\n4,76,3.0\n4,77,2.5\n4,78,2.0\n4,79,1.5\n4,80,2.0\n4,81,2.5\n4,82,3.0\n4,83,3.5\n4,84,4.0\n4,85,4.5\n4,86,5.0\n4,87,5.5\n4,88,6.0\n4,89,6.5\n4,90,7.0\n4,91,7.5\n4,92,8.0\n4,93,8.5\n4,94,9.0\n4,95,9.5\n4,96,10.0\n4,97,10.5\n4,98,11.0\n4,99,11.5\n4,100,4.0\n4,101,3.5\n4,102,3.0\n4,103,2.5\n4,104,2.0\n4,105,2.5\n4,106,3.0\n4,107,3.5\n4,108,4.0\n4,109,4.5\n4,110,5.0\n4,111,5.5\n4,112,6.0\n4,113,6.5\n4,114,7.0\n4,115,7.5\n4,116,8.0\n4,117,8.5\n4,118,9.0\n4,119,9.5\n4,120,10.0\n4,121,10.5\n4,122,11.0\n4,123,11.5\n4,124,12.0\n4,125,4.5\n4,126,4.0\n4,127,3.5\n4,128,3.0\n4,129,2.5\n4,130,3.0\n4,131,3.5\n4,132,4.0\n4,133,4.5\n4,134,5.0\n4,135,5.5\n4,136,6.0\n4,137,6.5\n4,138,7.0\n4,139,7.5\n4,140,8.0\n4,141,8.5\n4,142,9.0\n4,143,9.5\n4,144,10.0\n4,145,10.5\n4,146,11.0\n4,147,11.5\n4,148,12.0\n4,149,12.5\n4,150,5.0\n4,151,4.5\n4,152,4.0\n4,153,3.5\n4,154,3.0\n4,155,3.5\n4,156,4.0\n4,157,4.5\n4,158,5.0\n4,159,5.5\n4,160,6.0\n4,161,6.5\n4,162,7.0\n4,163,7.5\n4,164,8.0\n4,165,8.5\n4,166,9.0\n4,167,9.5\n4,168,10.0\n4,169,10.5\n4,170,11.0\n4,171,11.5\n4,172,12.0\n4,173,12.5\n4,174,13.0\n4,175,5.5\n4,176,5.0\n4,177,4.5\n4,178,4.0\n4,179,3.5\n4,180,4.0\n4,181,4.5\n4,182,5.0\n4,183,5.5\n4,184,6.0\n4,185,6.5\n4,186,7.0\n4,187,7.5\n4,188,8.0\n4,189,8.5\n4,190,9.0\n4,191,9.5\n4,192,10.0\n4,193,10.5\n4,194,11.0\n4,195,11.5\n4,196,12.0\n4,197,12.5\n4,198,13.0\n4,199,13.5\n4,200,6.0\n4,201,5.5\n4,202,5.0\n4,203,4.5\n4,204,4.0\n4,205,4.5\n4,206,5.0\n4,207,5.5\n4,208,6.0\n4,209,6.5\n4,210,7.0\n4,211,7.5\n4,212,8.0\n4,213,8.5\n4,214,9.0\n4,215,9.5\n4,216,10.0\n4,217,10.5\n4,218,11.0\n4,219,11.5\n4,220,12.0\n4,221,12.5\n4,222,13.0\n4,223,13.5\n4,224,14.0\n4,225,6.5\n4,226,6.0\n4,227,5.5\n4,228,5.0\n4,229,4.5\n4,230,5.0\n4,231,5.5\n4,232,6.0\n4,233,6.5\n4,234,7.0\n4,235,7.5\n4,236,8.0\n4,237,8.5\n4,238,9.0\n4,239,9.5\n4,240,10.0\n4,241,10.5\n4,242,11.0\n4,243,11.5\n4,244,12.0\n4,245,12.5\n4,246,13.0\n4,247,13.5\n4,248,14.0\n4,249,14.5\n4,250,7.0\n4,251,6.5\n4,252,6.0\n4,253,5.5\n4,254,5.0\n4,255,5.5\n4,256,6.0\n4,257,6.5\n4,258,7.0\n4,259,7.5\n4,260,8.0\n4,261,8.5\n4,262,9.0\n4,263,9.5\n4,264,10.0\n4,265,10.5\n4,266,11.0\n4,267,11.5\n4,268,12.0\n4,269,12.5\n4,270,13.0\n4,271,13.5\n4,272,14.0\n4,273,14.5\n4,274,15.0\n4,275,7.5\n4,276,7.0\n4,277,6.5\n4,278,6.0\n4,279,5.5\n4,280,6.0\n4,281,6.5\n4,282,7.0\n4,283,7.5\n4,284,8.0\n4,285,8.5\n4,286,9.0\n4,287,9.5\n4,288,10.0\n4,289,10.5\n4,290,11.0\n4,291,11.5\n4,292,12.0\n4,293,12.5\n4,294,13.0\n4,295,13.5\n4,296,14.0\n4,297,14.5\n4,298,15.0\n4,299,15.5\n4,300,8.0\n4,301,7.5\n4,302,7.0\n4,303,6.5\n4,304,6.0\n4,305,6.5\n4,306,7.0\n4,307,7.5\n4,308,8.0\n4,309,8.5\n4,310,9.0\n4,311,9.5\n4,312,10.0\n4,313,10.5\n4,314,11.0\n4,315,11.5\n4,316,12.0\n4,317,12.5\n4,318,13.0\n4,319,13.5\n4,320,14.0\n4,321,14.5\n4,322,15.0\n4,323,15.5\n4,324,16.0\n4,325,8.5\n4,326,8.0\n4,327,7.5\n4,328,7.0\n4,329,6.5\n4,330,7.0\n4,331,7.5\n4,332,8.0\n4,333,8.5\n4,334,9.0\n4,335,9.5\n4,336,10.0\n4,337,10.5\n4,338,11.0\n4,339,11.5\n4,340,12.0\n4,341,12.5\n4,342,13.0\n4,343,13.5\n4,344,14.0\n4,345,14.5\n4,346,15.0\n4,347,15.5\n4,348,16.0\n4,349,16.5\n4,350,9.0\n4,351,8.5\n4,352,8.0\n4,353,7.5\n4,354,7.0\n4,355,7.5\n4,356,8.0\n4,357,8.5\n4,358,9.0\n4,359,9.5\n4,360,10.0\n4,361,10.5\n4,362,11.0\n4,363,11.5\n4,364,12.0\n4,365,12.5\n4,366,13.0\n4,367,13.5\n4,368,14.0\n4,369,14.5\n4,370,15.0\n4,371,15.5\n4,372,16.0\n4,373,16.5\n4,374,17.0\n4,375,9.5\n4,376,9.0\n4,377,8.5\n4,378,8.0\n4,379,7.5\n4,380,8.0\n4,381,8.5\n4,382,9.0\n4,383,9.5\n4,384,10.0\n4,385,10.5\n4,386,11.0\n4,387,11.5\n4,388,12.0\n4,389,12.5\n4,390,13.0\n4,391,13.5\n4,392,14.0\n4,393,14.5\n4,394,15.0\n4,395,15.5\n4,396,16.0\n4,397,16.5\n4,398,17.0\n4,399,17.5\n4,400,10.0\n4,401,9.5\n4,402,9.0\n4,403,8.5\n4,404,8.0\n4,405,8.5\n4,406,9.0\n4,407,9.5\n4,408,10.0\n4,409,10.5\n4,410,11.0\n4,411,11.5\n4,412,12.0\n4,413,12.5\n4,414,13.0\n4,415,13.5\n4,416,14.0\n4,417,14.5\n4,418,15.0\n4,419,15.5\n4,420,16.0\n4,421,16.5\n4,422,17.0\n4,423,17.5\n4,424,18.0\n4,425,10.5\n4,426,10.0\n4,427,9.5\n4,428,9.0\n4,429,8.5\n4,430,9.0\n4,431,9.5\n4,432,10.0\n4,433,10.5\n4,434,11.0\n4,435,11.5\n4,436,12.0\n4,437,12.5\n4,438,13.0\n4,439,13.5\n4,440,14.0\n4,441,14.5\n4,442,15.0\n4,443,15.5\n4,444,16.0\n4,445,16.5\n4,446,17.0\n4,447,17.5\n4,448,18.0\n4,449,18.5\n4,450,11.0\n4,451,10.5\n4,452,10.0\n4,453,9.5\n4,454,9.0\n4,455,9.5\n4,456,10.0\n4,457,10.5\n4,458,11.0\n4,459,11.5\n4,460,12.0\n4,461,12.5\n4,462,13.0\n4,463,13.5\n4,464,14.0\n4,465,14.5\n4,466,15.0\n4,467,15.5\n4,468,16.0\n4,469,16.5\n4,470,17.0\n4,471,17.5\n4,472,18.0\n4,473,18.5\n4,474,19.0\n4,475,11.5\n4,476,11.0\n4,477,10.5\n4,478,10.0\n4,479,9.5\n4,480,10.0\n4,481,10.5\n4,482,11.0\n4,483,11.5\n4,484,12.0\n4,485,12.5\n4,486,13.0\n4,487,13.5\n4,488,14.0\n4,489,14.5\n4,490,15.0\n4,491,15.5\n4,492,16.0\n4,493,16.5\n4,494,17.0\n4,495,17.5\n4,496,18.0\n4,497,18.5\n4,498,19.0\n4,499,19.5\n4,500,12.0\n4,501,11.5\n4,502,11.0\n4,503,10.5\n4,504,10.0\n4,505,10.5\n4,506,11.0\n4,507,11.5\n4,508,12.0\n4,509,12.5\n4,510,13.0\n4,511,13.5\n4,512,14.0\n4,513,14.5\n4,514,15.0\n4,515,15.5\n4,516,16.0\n4,517,16.5\n4,518,17.0\n4,519,17.5\n4,520,18.0\n4,521,18.5\n4,522,19.0\n4,523,19.5\n4,524,20.0\n4,525,12.5\n4,526,12.0\n4,527,11.5\n4,528,11.0\n4,529,10.5\n4,530,11.0\n4,531,11.5\n4,532,12.0\n4,533,12.5\n4,534,13.0\n4,535,13.5\n4,536,14.0\n4,537,14.5\n4,538,15.0\n4,539,15.5\n4,540,16.0\n4,541,16.5\n4,542,17.0\n4,543,17.5\n4,544,18.0\n4,545,18.5\n4,546,19.0\n4,547,19.5\n4,548,20.0\n4,549,20.5\n4,550,13.0\n4,551,12.5\n4,552,12.0\n4,553,11.5\n4,554,11.0\n4,555,11.5\n4,556,12.0\n4,557,12.5\n4,558,13.0\n4,559,13.5\n4,560,14.0\n4,561,14.5\n4,562,15.0\n4,563,15.5\n4,564,16.0\n4,565,16.5\n4,566,17.0\n4,567,17.5\n4,568,18.0\n4,569,18.5\n4,570,19.0\n4,571,19.5\n4,572,20.0\n4,573,20.5\n4,574,21.0\n4,575,13.5\n4,576,13.0\n4,577,12.5\n4,578,12.0\n4,579,11.5\n4,580,12.0\n4,581,12.5\n4,582,13.0\n4,583,13.5\n4,584,14.0\n4,585,14.5\n4,586,15.0\n4,587,15.5\n4,588,16.0\n4,589,16.5\n4,590,17.0\n4,591,17.5\n4,592,18.0\n4,593,18.5\n4,594,19.0\n4,595,19.5\n4,596,20.0\n4,597,20.5\n4,598,21.0\n4,599,21.5\n4,600,14.0\n4,601,13.5\n4,602,13.0\n4,603,12.5\n4,604,12.0\n4,605,12.5\n4,606,13.0\n4,607,13.5\n4,608,14.0\n4,609,14.5\n4,610,15.0\n4,611,15.5\n4,612,16.0\n4,613,16.5\n4,614,17.0\n4,615,17.5\n4,616,18.0\n4,617,18.5\n4,618,19.0\n4,619,19.5\n4,620,20.0\n4,621,20.5\n4,622,21.0\n4,623,21.5\n4,624,22.0\n5,0,2.5\n5,1,2.0\n5,2,1.5\n5,3,1.0\n5,4,0.5\n5,5,0\n5,6,0.5\n5,7,1.0\n5,8,1.5\n5,9,2.0\n5,10,2.5\n5,11,3.0\n5,12,3.5\n5,13,4.0\n5,14,4.5\n5,15,5.0\n5,16,5.5\n5,17,6.0\n5,18,6.5\n5,19,7.0\n5,20,7.5\n5,21,8.0\n5,22,8.5\n5,23,9.0\n5,24,9.5\n5,25,3.0\n5,26,2.5\n5,27,2.0\n5,28,1.5\n5,29,1.0\n5,30,0.5\n5,31,1.0\n5,32,1.5\n5,33,2.0\n5,34,2.5\n5,35,3.0\n5,36,3.5\n5,37,4.0\n5,38,4.5\n5,39,5.0\n5,40,5.5\n5,41,6.0\n5,42,6.5\n5,43,7.0\n5,44,7.5\n5,45,8.0\n5,46,8.5\n5,47,9.0\n5,48,9.5\n5,49,10.0\n5,50,3.5\n5,51,3.0\n5,52,2.5\n5,53,2.0\n5,54,1.5\n5,55,1.0\n5,56,1.5\n5,57,2.0\n5,58,2.5\n5,59,3.0\n5,60,3.5\n5,61,4.0\n5,62,4.5\n5,63,5.0\n5,64,5.5\n5,65,6.0\n5,66,6.5\n5,67,7.0\n5,68,7.5\n5,69,8.0\n5,70,8.5\n5,71,9.0\n5,72,9.5\n5,73,10.0\n5,74,10.5\n5,75,4.0\n5,76,3.5\n5,77,3.0\n5,78,2.5\n5,79,2.0\n5,80,1.5\n5,81,2.0\n5,82,2.5\n5,83,3.0\n5,84,3.5\n5,85,4.0\n5,86,4.5\n5,87,5.0\n5,88,5.5\n5,89,6.0\n5,90,6.5\n5,91,7.0\n5,92,7.5\n5,93,8.0\n5,94,8.5\n5,95,9.0\n5,96,9.5\n5,97,10.0\n5,98,10.5\n5,99,11.0\n5,100,4.5\n5,101,4.0\n5,102,3.5\n5,103,3.0\n5,104,2.5\n5,105,2.0\n5,106,2.5\n5,107,3.0\n5,108,3.5\n5,109,4.0\n5,110,4.5\n5,111,5.0\n5,112,5.5\n5,113,6.0\n5,114,6.5\n5,115,7.0\n5,116,7.5\n5,117,8.0\n5,118,8.5\n5,119,9.0\n5,120,9.5\n5,121,10.0\n5,122,10.5\n5,123,11.0\n5,124,11.5\n5,125,5.0\n5,126,4.5\n5,127,4.0\n5,128,3.5\n5,129,3.0\n5,130,2.5\n5,131,3.0\n5,132,3.5\n5,133,4.0\n5,134,4.5\n5,135,5.0\n5,136,5.5\n5,137,6.0\n5,138,6.5\n5,139,7.0\n5,140,7.5\n5,141,8.0\n5,142,8.5\n5,143,9.0\n5,144,9.5\n5,145,10.0\n5,146,10.5\n5,147,11.0\n5,148,11.5\n5,149,12.0\n5,150,5.5\n5,151,5.0\n5,152,4.5\n5,153,4.0\n5,154,3.5\n5,155,3.0\n5,156,3.5\n5,157,4.0\n5,158,4.5\n5,159,5.0\n5,160,5.5\n5,161,6.0\n5,162,6.5\n5,163,7.0\n5,164,7.5\n5,165,8.0\n5,166,8.5\n5,167,9.0\n5,168,9.5\n5,169,10.0\n5,170,10.5\n5,171,11.0\n5,172,11.5\n5,173,12.0\n5,174,12.5\n5,175,6.0\n5,176,5.5\n5,177,5.0\n5,178,4.5\n5,179,4.0\n5,180,3.5\n5,181,4.0\n5,182,4.5\n5,183,5.0\n5,184,5.5\n5,185,6.0\n5,186,6.5\n5,187,7.0\n5,188,7.5\n5,189,8.0\n5,190,8.5\n5,191,9.0\n5,192,9.5\n5,193,10.0\n5,194,10.5\n5,195,11.0\n5,196,11.5\n5,197,12.0\n5,198,12.5\n5,199,13.0\n5,200,6.5\n5,201,6.0\n5,202,5.5\n5,203,5.0\n5,204,4.5\n5,205,4.0\n5,206,4.5\n5,207,5.0\n5,208,5.5\n5,209,6.0\n5,210,6.5\n5,211,7.0\n5,212,7.5\n5,213,8.0\n5,214,8.5\n5,215,9.0\n5,216,9.5\n5,217,10.0\n5,218,10.5\n5,219,11.0\n5,220,11.5\n5,221,12.0\n5,222,12.5\n5,223,13.0\n5,224,13.5\n5,225,7.0\n5,226,6.5\n5,227,6.0\n5,228,5.5\n5,229,5.0\n5,230,4.5\n5,231,5.0\n5,232,5.5\n5,233,6.0\n5,234,6.5\n5,235,7.0\n5,236,7.5\n5,237,8.0\n5,238,8.5\n5,239,9.0\n5,240,9.5\n5,241,10.0\n5,242,10.5\n5,243,11.0\n5,244,11.5\n5,245,12.0\n5,246,12.5\n5,247,13.0\n5,248,13.5\n5,249,14.0\n5,250,7.5\n5,251,7.0\n5,252,6.5\n5,253,6.0\n5,254,5.5\n5,255,5.0\n5,256,5.5\n5,257,6.0\n5,258,6.5\n5,259,7.0\n5,260,7.5\n5,261,8.0\n5,262,8.5\n5,263,9.0\n5,264,9.5\n5,265,10.0\n5,266,10.5\n5,267,11.0\n5,268,11.5\n5,269,12.0\n5,270,12.5\n5,271,13.0\n5,272,13.5\n5,273,14.0\n5,274,14.5\n5,275,8.0\n5,276,7.5\n5,277,7.0\n5,278,6.5\n5,279,6.0\n5,280,5.5\n5,281,6.0\n5,282,6.5\n5,283,7.0\n5,284,7.5\n5,285,8.0\n5,286,8.5\n5,287,9.0\n5,288,9.5\n5,289,10.0\n5,290,10.5\n5,291,11.0\n5,292,11.5\n5,293,12.0\n5,294,12.5\n5,295,13.0\n5,296,13.5\n5,297,14.0\n5,298,14.5\n5,299,15.0\n5,300,8.5\n5,301,8.0\n5,302,7.5\n5,303,7.0\n5,304,6.5\n5,305,6.0\n5,306,6.5\n5,307,7.0\n5,308,7.5\n5,309,8.0\n5,310,8.5\n5,311,9.0\n5,312,9.5\n5,313,10.0\n5,314,10.5\n5,315,11.0\n5,316,11.5\n5,317,12.0\n5,318,12.5\n5,319,13.0\n5,320,13.5\n5,321,14.0\n5,322,14.5\n5,323,15.0\n5,324,15.5\n5,325,9.0\n5,326,8.5\n5,327,8.0\n5,328,7.5\n5,329,7.0\n5,330,6.5\n5,331,7.0\n5,332,7.5\n5,333,8.0\n5,334,8.5\n5,335,9.0\n5,336,9.5\n5,337,10.0\n5,338,10.5\n5,339,11.0\n5,340,11.5\n5,341,12.0\n5,342,12.5\n5,343,13.0\n5,344,13.5\n5,345,14.0\n5,346,14.5\n5,347,15.0\n5,348,15.5\n5,349,16.0\n5,350,9.5\n5,351,9.0\n5,352,8.5\n5,353,8.0\n5,354,7.5\n5,355,7.0\n5,356,7.5\n5,357,8.0\n5,358,8.5\n5,359,9.0\n5,360,9.5\n5,361,10.0\n5,362,10.5\n5,363,11.0\n5,364,11.5\n5,365,12.0\n5,366,12.5\n5,367,13.0\n5,368,13.5\n5,369,14.0\n5,370,14.5\n5,371,15.0\n5,372,15.5\n5,373,16.0\n5,374,16.5\n5,375,10.0\n5,376,9.5\n5,377,9.0\n5,378,8.5\n5,379,8.0\n5,380,7.5\n5,381,8.0\n5,382,8.5\n5,383,9.0\n5,384,9.5\n5,385,10.0\n5,386,10.5\n5,387,11.0\n5,388,11.5\n5,389,12.0\n5,390,12.5\n5,391,13.0\n5,392,13.5\n5,393,14.0\n5,394,14.5\n5,395,15.0\n5,396,15.5\n5,397,16.0\n5,398,16.5\n5,399,17.0\n5,400,10.5\n5,401,10.0\n5,402,9.5\n5,403,9.0\n5,404,8.5\n5,405,8.0\n5,406,8.5\n5,407,9.0\n5,408,9.5\n5,409,10.0\n5,410,10.5\n5,411,11.0\n5,412,11.5\n5,413,12.0\n5,414,12.5\n5,415,13.0\n5,416,13.5\n5,417,14.0\n5,418,14.5\n5,419,15.0\n5,420,15.5\n5,421,16.0\n5,422,16.5\n5,423,17.0\n5,424,17.5\n5,425,11.0\n5,426,10.5\n5,427,10.0\n5,428,9.5\n5,429,9.0\n5,430,8.5\n5,431,9.0\n5,432,9.5\n5,433,10.0\n5,434,10.5\n5,435,11.0\n5,436,11.5\n5,437,12.0\n5,438,12.5\n5,439,13.0\n5,440,13.5\n5,441,14.0\n5,442,14.5\n5,443,15.0\n5,444,15.5\n5,445,16.0\n5,446,16.5\n5,447,17.0\n5,448,17.5\n5,449,18.0\n5,450,11.5\n5,451,11.0\n5,452,10.5\n5,453,10.0\n5,454,9.5\n5,455,9.0\n5,456,9.5\n5,457,10.0\n5,458,10.5\n5,459,11.0\n5,460,11.5\n5,461,12.0\n5,462,12.5\n5,463,13.0\n5,464,13.5\n5,465,14.0\n5,466,14.5\n5,467,15.0\n5,468,15.5\n5,469,16.0\n5,470,16.5\n5,471,17.0\n5,472,17.5\n5,473,18.0\n5,474,18.5\n5,475,12.0\n5,476,11.5\n5,477,11.0\n5,478,10.5\n5,479,10.0\n5,480,9.5\n5,481,10.0\n5,482,10.5\n5,483,11.0\n5,484,11.5\n5,485,12.0\n5,486,12.5\n5,487,13.0\n5,488,13.5\n5,489,14.0\n5,490,14.5\n5,491,15.0\n5,492,15.5\n5,493,16.0\n5,494,16.5\n5,495,17.0\n5,496,17.5\n5,497,18.0\n5,498,18.5\n5,499,19.0\n5,500,12.5\n5,501,12.0\n5,502,11.5\n5,503,11.0\n5,504,10.5\n5,505,10.0\n5,506,10.5\n5,507,11.0\n5,508,11.5\n5,509,12.0\n5,510,12.5\n5,511,13.0\n5,512,13.5\n5,513,14.0\n5,514,14.5\n5,515,15.0\n5,516,15.5\n5,517,16.0\n5,518,16.5\n5,519,17.0\n5,520,17.5\n5,521,18.0\n5,522,18.5\n5,523,19.0\n5,524,19.5\n5,525,13.0\n5,526,12.5\n5,527,12.0\n5,528,11.5\n5,529,11.0\n5,530,10.5\n5,531,11.0\n5,532,11.5\n5,533,12.0\n5,534,12.5\n5,535,13.0\n5,536,13.5\n5,537,14.0\n5,538,14.5\n5,539,15.0\n5,540,15.5\n5,541,16.0\n5,542,16.5\n5,543,17.0\n5,544,17.5\n5,545,18.0\n5,546,18.5\n5,547,19.0\n5,548,19.5\n5,549,20.0\n5,550,13.5\n5,551,13.0\n5,552,12.5\n5,553,12.0\n5,554,11.5\n5,555,11.0\n5,556,11.5\n5,557,12.0\n5,558,12.5\n5,559,13.0\n5,560,13.5\n5,561,14.0\n5,562,14.5\n5,563,15.0\n5,564,15.5\n5,565,16.0\n5,566,16.5\n5,567,17.0\n5,568,17.5\n5,569,18.0\n5,570,18.5\n5,571,19.0\n5,572,19.5\n5,573,20.0\n5,574,20.5\n5,575,14.0\n5,576,13.5\n5,577,13.0\n5,578,12.5\n5,579,12.0\n5,580,11.5\n5,581,12.0\n5,582,12.5\n5,583,13.0\n5,584,13.5\n5,585,14.0\n5,586,14.5\n5,587,15.0\n5,588,15.5\n5,589,16.0\n5,590,16.5\n5,591,17.0\n5,592,17.5\n5,593,18.0\n5,594,18.5\n5,595,19.0\n5,596,19.5\n5,597,20.0\n5,598,20.5\n5,599,21.0\n5,600,14.5\n5,601,14.0\n5,602,13.5\n5,603,13.0\n5,604,12.5\n5,605,12.0\n5,606,12.5\n5,607,13.0\n5,608,13.5\n5,609,14.0\n5,610,14.5\n5,611,15.0\n5,612,15.5\n5,613,16.0\n5,614,16.5\n5,615,17.0\n5,616,17.5\n5,617,18.0\n5,618,18.5\n5,619,19.0\n5,620,19.5\n5,621,20.0\n5,622,20.5\n5,623,21.0\n5,624,21.5\n6,0,3.0\n6,1,2.5\n6,2,2.0\n6,3,1.5\n6,4,1.0\n6,5,0.5\n6,6,0\n6,7,0.5\n6,8,1.0\n6,9,1.5\n6,10,2.0\n6,11,2.5\n6,12,3.0\n6,13,3.5\n6,14,4.0\n6,15,4.5\n6,16,5.0\n6,17,5.5\n6,18,6.0\n6,19,6.5\n6,20,7.0\n6,21,7.5\n6,22,8.0\n6,23,8.5\n6,24,9.0\n6,25,3.5\n6,26,3.0\n6,27,2.5\n6,28,2.0\n6,29,1.5\n6,30,1.0\n6,31,0.5\n6,32,1.0\n6,33,1.5\n6,34,2.0\n6,35,2.5\n6,36,3.0\n6,37,3.5\n6,38,4.0\n6,39,4.5\n6,40,5.0\n6,41,5.5\n6,42,6.0\n6,43,6.5\n6,44,7.0\n6,45,7.5\n6,46,8.0\n6,47,8.5\n6,48,9.0\n6,49,9.5\n6,50,4.0\n6,51,3.5\n6,52,3.0\n6,53,2.5\n6,54,2.0\n6,55,1.5\n6,56,1.0\n6,57,1.5\n6,58,2.0\n6,59,2.5\n6,60,3.0\n6,61,3.5\n6,62,4.0\n6,63,4.5\n6,64,5.0\n6,65,5.5\n6,66,6.0\n6,67,6.5\n6,68,7.0\n6,69,7.5\n6,70,8.0\n6,71,8.5\n6,72,9.0\n6,73,9.5\n6,74,10.0\n6,75,4.5\n6,76,4.0\n6,77,3.5\n6,78,3.0\n6,79,2.5\n6,80,2.0\n6,81,1.5\n6,82,2.0\n6,83,2.5\n6,84,3.0\n6,85,3.5\n6,86,4.0\n6,87,4.5\n6,88,5.0\n6,89,5.5\n6,90,6.0\n6,91,6.5\n6,92,7.0\n6,93,7.5\n6,94,8.0\n6,95,8.5\n6,96,9.0\n6,97,9.5\n6,98,10.0\n6,99,10.5\n6,100,5.0\n6,101,4.5\n6,102,4.0\n6,103,3.5\n6,104,3.0\n6,105,2.5\n6,106,2.0\n6,107,2.5\n6,108,3.0\n6,109,3.5\n6,110,4.0\n6,111,4.5\n6,112,5.0\n6,113,5.5\n6,114,6.0\n6,115,6.5\n6,116,7.0\n6,117,7.5\n6,118,8.0\n6,119,8.5\n6,120,9.0\n6,121,9.5\n6,122,10.0\n6,123,10.5\n6,124,11.0\n6,125,5.5\n6,126,5.0\n6,127,4.5\n6,128,4.0\n6,129,3.5\n6,130,3.0\n6,131,2.5\n6,132,3.0\n6,133,3.5\n6,134,4.0\n6,135,4.5\n6,136,5.0\n6,137,5.5\n6,138,6.0\n6,139,6.5\n6,140,7.0\n6,141,7.5\n6,142,8.0\n6,143,8.5\n6,144,9.0\n6,145,9.5\n6,146,10.0\n6,147,10.5\n6,148,11.0\n6,149,11.5\n6,150,6.0\n6,151,5.5\n6,152,5.0\n6,153,4.5\n6,154,4.0\n6,155,3.5\n6,156,3.0\n6,157,3.5\n6,158,4.0\n6,159,4.5\n6,160,5.0\n6,161,5.5\n6,162,6.0\n6,163,6.5\n6,164,7.0\n6,165,7.5\n6,166,8.0\n6,167,8.5\n6,168,9.0\n6,169,9.5\n6,170,10.0\n6,171,10.5\n6,172,11.0\n6,173,11.5\n6,174,12.0\n6,175,6.5\n6,176,6.0\n6,177,5.5\n6,178,5.0\n6,179,4.5\n6,180,4.0\n6,181,3.5\n6,182,4.0\n6,183,4.5\n6,184,5.0\n6,185,5.5\n6,186,6.0\n6,187,6.5\n6,188,7.0\n6,189,7.5\n6,190,8.0\n6,191,8.5\n6,192,9.0\n6,193,9.5\n6,194,10.0\n6,195,10.5\n6,196,11.0\n6,197,11.5\n6,198,12.0\n6,199,12.5\n6,200,7.0\n6,201,6.5\n6,202,6.0\n6,203,5.5\n6,204,5.0\n6,205,4.5\n6,206,4.0\n6,207,4.5\n6,208,5.0\n6,209,5.5\n6,210,6.0\n6,211,6.5\n6,212,7.0\n6,213,7.5\n6,214,8.0\n6,215,8.5\n6,216,9.0\n6,217,9.5\n6,218,10.0\n6,219,10.5\n6,220,11.0\n6,221,11.5\n6,222,12.0\n6,223,12.5\n6,224,13.0\n6,225,7.5\n6,226,7.0\n6,227,6.5\n6,228,6.0\n6,229,5.5\n6,230,5.0\n6,231,4.5\n6,232,5.0\n6,233,5.5\n6,234,6.0\n6,235,6.5\n6,236,7.0\n6,237,7.5\n6,238,8.0\n6,239,8.5\n6,240,9.0\n6,241,9.5\n6,242,10.0\n6,243,10.5\n6,244,11.0\n6,245,11.5\n6,246,12.0\n6,247,12.5\n6,248,13.0\n6,249,13.5\n6,250,8.0\n6,251,7.5\n6,252,7.0\n6,253,6.5\n6,254,6.0\n6,255,5.5\n6,256,5.0\n6,257,5.5\n6,258,6.0\n6,259,6.5\n6,260,7.0\n6,261,7.5\n6,262,8.0\n6,263,8.5\n6,264,9.0\n6,265,9.5\n6,266,10.0\n6,267,10.5\n6,268,11.0\n6,269,11.5\n6,270,12.0\n6,271,12.5\n6,272,13.0\n6,273,13.5\n6,274,14.0\n6,275,8.5\n6,276,8.0\n6,277,7.5\n6,278,7.0\n6,279,6.5\n6,280,6.0\n6,281,5.5\n6,282,6.0\n6,283,6.5\n6,284,7.0\n6,285,7.5\n6,286,8.0\n6,287,8.5\n6,288,9.0\n6,289,9.5\n6,290,10.0\n6,291,10.5\n6,292,11.0\n6,293,11.5\n6,294,12.0\n6,295,12.5\n6,296,13.0\n6,297,13.5\n6,298,14.0\n6,299,14.5\n6,300,9.0\n6,301,8.5\n6,302,8.0\n6,303,7.5\n6,304,7.0\n6,305,6.5\n6,306,6.0\n6,307,6.5\n6,308,7.0\n6,309,7.5\n6,310,8.0\n6,311,8.5\n6,312,9.0\n6,313,9.5\n6,314,10.0\n6,315,10.5\n6,316,11.0\n6,317,11.5\n6,318,12.0\n6,319,12.5\n6,320,13.0\n6,321,13.5\n6,322,14.0\n6,323,14.5\n6,324,15.0\n6,325,9.5\n6,326,9.0\n6,327,8.5\n6,328,8.0\n6,329,7.5\n6,330,7.0\n6,331,6.5\n6,332,7.0\n6,333,7.5\n6,334,8.0\n6,335,8.5\n6,336,9.0\n6,337,9.5\n6,338,10.0\n6,339,10.5\n6,340,11.0\n6,341,11.5\n6,342,12.0\n6,343,12.5\n6,344,13.0\n6,345,13.5\n6,346,14.0\n6,347,14.5\n6,348,15.0\n6,349,15.5\n6,350,10.0\n6,351,9.5\n6,352,9.0\n6,353,8.5\n6,354,8.0\n6,355,7.5\n6,356,7.0\n6,357,7.5\n6,358,8.0\n6,359,8.5\n6,360,9.0\n6,361,9.5\n6,362,10.0\n6,363,10.5\n6,364,11.0\n6,365,11.5\n6,366,12.0\n6,367,12.5\n6,368,13.0\n6,369,13.5\n6,370,14.0\n6,371,14.5\n6,372,15.0\n6,373,15.5\n6,374,16.0\n6,375,10.5\n6,376,10.0\n6,377,9.5\n6,378,9.0\n6,379,8.5\n6,380,8.0\n6,381,7.5\n6,382,8.0\n6,383,8.5\n6,384,9.0\n6,385,9.5\n6,386,10.0\n6,387,10.5\n6,388,11.0\n6,389,11.5\n6,390,12.0\n6,391,12.5\n6,392,13.0\n6,393,13.5\n6,394,14.0\n6,395,14.5\n6,396,15.0\n6,397,15.5\n6,398,16.0\n6,399,16.5\n6,400,11.0\n6,401,10.5\n6,402,10.0\n6,403,9.5\n6,404,9.0\n6,405,8.5\n6,406,8.0\n6,407,8.5\n6,408,9.0\n6,409,9.5\n6,410,10.0\n6,411,10.5\n6,412,11.0\n6,413,11.5\n6,414,12.0\n6,415,12.5\n6,416,13.0\n6,417,13.5\n6,418,14.0\n6,419,14.5\n6,420,15.0\n6,421,15.5\n6,422,16.0\n6,423,16.5\n6,424,17.0\n6,425,11.5\n6,426,11.0\n6,427,10.5\n6,428,10.0\n6,429,9.5\n6,430,9.0\n6,431,8.5\n6,432,9.0\n6,433,9.5\n6,434,10.0\n6,435,10.5\n6,436,11.0\n6,437,11.5\n6,438,12.0\n6,439,12.5\n6,440,13.0\n6,441,13.5\n6,442,14.0\n6,443,14.5\n6,444,15.0\n6,445,15.5\n6,446,16.0\n6,447,16.5\n6,448,17.0\n6,449,17.5\n6,450,12.0\n6,451,11.5\n6,452,11.0\n6,453,10.5\n6,454,10.0\n6,455,9.5\n6,456,9.0\n6,457,9.5\n6,458,10.0\n6,459,10.5\n6,460,11.0\n6,461,11.5\n6,462,12.0\n6,463,12.5\n6,464,13.0\n6,465,13.5\n6,466,14.0\n6,467,14.5\n6,468,15.0\n6,469,15.5\n6,470,16.0\n6,471,16.5\n6,472,17.0\n6,473,17.5\n6,474,18.0\n6,475,12.5\n6,476,12.0\n6,477,11.5\n6,478,11.0\n6,479,10.5\n6,480,10.0\n6,481,9.5\n6,482,10.0\n6,483,10.5\n6,484,11.0\n6,485,11.5\n6,486,12.0\n6,487,12.5\n6,488,13.0\n6,489,13.5\n6,490,14.0\n6,491,14.5\n6,492,15.0\n6,493,15.5\n6,494,16.0\n6,495,16.5\n6,496,17.0\n6,497,17.5\n6,498,18.0\n6,499,18.5\n6,500,13.0\n6,501,12.5\n6,502,12.0\n6,503,11.5\n6,504,11.0\n6,505,10.5\n6,506,10.0\n6,507,10.5\n6,508,11.0\n6,509,11.5\n6,510,12.0\n6,511,12.5\n6,512,13.0\n6,513,13.5\n6,514,14.0\n6,515,14.5\n6,516,15.0\n6,517,15.5\n6,518,16.0\n6,519,16.5\n6,520,17.0\n6,521,17.5\n6,522,18.0\n6,523,18.5\n6,524,19.0\n6,525,13.5\n6,526,13.0\n6,527,12.5\n6,528,12.0\n6,529,11.5\n6,530,11.0\n6,531,10.5\n6,532,11.0\n6,533,11.5\n6,534,12.0\n6,535,12.5\n6,536,13.0\n6,537,13.5\n6,538,14.0\n6,539,14.5\n6,540,15.0\n6,541,15.5\n6,542,16.0\n6,543,16.5\n6,544,17.0\n6,545,17.5\n6,546,18.0\n6,547,18.5\n6,548,19.0\n6,549,19.5\n6,550,14.0\n6,551,13.5\n6,552,13.0\n6,553,12.5\n6,554,12.0\n6,555,11.5\n6,556,11.0\n6,557,11.5\n6,558,12.0\n6,559,12.5\n6,560,13.0\n6,561,13.5\n6,562,14.0\n6,563,14.5\n6,564,15.0\n6,565,15.5\n6,566,16.0\n6,567,16.5\n6,568,17.0\n6,569,17.5\n6,570,18.0\n6,571,18.5\n6,572,19.0\n6,573,19.5\n6,574,20.0\n6,575,14.5\n6,576,14.0\n6,577,13.5\n6,578,13.0\n6,579,12.5\n6,580,12.0\n6,581,11.5\n6,582,12.0\n6,583,12.5\n6,584,13.0\n6,585,13.5\n6,586,14.0\n6,587,14.5\n6,588,15.0\n6,589,15.5\n6,590,16.0\n6,591,16.5\n6,592,17.0\n6,593,17.5\n6,594,18.0\n6,595,18.5\n6,596,19.0\n6,597,19.5\n6,598,20.0\n6,599,20.5\n6,600,15.0\n6,601,14.5\n6,602,14.0\n6,603,13.5\n6,604,13.0\n6,605,12.5\n6,606,12.0\n6,607,12.5\n6,608,13.0\n6,609,13.5\n6,610,14.0\n6,611,14.5\n6,612,15.0\n6,613,15.5\n6,614,16.0\n6,615,16.5\n6,616,17.0\n6,617,17.5\n6,618,18.0\n6,619,18.5\n6,620,19.0\n6,621,19.5\n6,622,20.0\n6,623,20.5\n6,624,21.0\n7,0,3.5\n7,1,3.0\n7,2,2.5\n7,3,2.0\n7,4,1.5\n7,5,1.0\n7,6,0.5\n7,7,0\n7,8,0.5\n7,9,1.0\n7,10,1.5\n7,11,2.0\n7,12,2.5\n7,13,3.0\n7,14,3.5\n7,15,4.0\n7,16,4.5\n7,17,5.0\n7,18,5.5\n7,19,6.0\n7,20,6.5\n7,21,7.0\n7,22,7.5\n7,23,8.0\n7,24,8.5\n7,25,4.0\n7,26,3.5\n7,27,3.0\n7,28,2.5\n7,29,2.0\n7,30,1.5\n7,31,1.0\n7,32,0.5\n7,33,1.0\n7,34,1.5\n7,35,2.0\n7,36,2.5\n7,37,3.0\n7,38,3.5\n7,39,4.0\n7,40,4.5\n7,41,5.0\n7,42,5.5\n7,43,6.0\n7,44,6.5\n7,45,7.0\n7,46,7.5\n7,47,8.0\n7,48,8.5\n7,49,9.0\n7,50,4.5\n7,51,4.0\n7,52,3.5\n7,53,3.0\n7,54,2.5\n7,55,2.0\n7,56,1.5\n7,57,1.0\n7,58,1.5\n7,59,2.0\n7,60,2.5\n7,61,3.0\n7,62,3.5\n7,63,4.0\n7,64,4.5\n7,65,5.0\n7,66,5.5\n7,67,6.0\n7,68,6.5\n7,69,7.0\n7,70,7.5\n7,71,8.0\n7,72,8.5\n7,73,9.0\n7,74,9.5\n7,75,5.0\n7,76,4.5\n7,77,4.0\n7,78,3.5\n7,79,3.0\n7,80,2.5\n7,81,2.0\n7,82,1.5\n7,83,2.0\n7,84,2.5\n7,85,3.0\n7,86,3.5\n7,87,4.0\n7,88,4.5\n7,89,5.0\n7,90,5.5\n7,91,6.0\n7,92,6.5\n7,93,7.0\n7,94,7.5\n7,95,8.0\n7,96,8.5\n7,97,9.0\n7,98,9.5\n7,99,10.0\n7,100,5.5\n7,101,5.0\n7,102,4.5\n7,103,4.0\n7,104,3.5\n7,105,3.0\n7,106,2.5\n7,107,2.0\n7,108,2.5\n7,109,3.0\n7,110,3.5\n7,111,4.0\n7,112,4.5\n7,113,5.0\n7,114,5.5\n7,115,6.0\n7,116,6.5\n7,117,7.0\n7,118,7.5\n7,119,8.0\n7,120,8.5\n7,121,9.0\n7,122,9.5\n7,123,10.0\n7,124,10.5\n7,125,6.0\n7,126,5.5\n7,127,5.0\n7,128,4.5\n7,129,4.0\n7,130,3.5\n7,131,3.0\n7,132,2.5\n7,133,3.0\n7,134,3.5\n7,135,4.0\n7,136,4.5\n7,137,5.0\n7,138,5.5\n7,139,6.0\n7,140,6.5\n7,141,7.0\n7,142,7.5\n7,143,8.0\n7,144,8.5\n7,145,9.0\n7,146,9.5\n7,147,10.0\n7,148,10.5\n7,149,11.0\n7,150,6.5\n7,151,6.0\n7,152,5.5\n7,153,5.0\n7,154,4.5\n7,155,4.0\n7,156,3.5\n7,157,3.0\n7,158,3.5\n7,159,4.0\n7,160,4.5\n7,161,5.0\n7,162,5.5\n7,163,6.0\n7,164,6.5\n7,165,7.0\n7,166,7.5\n7,167,8.0\n7,168,8.5\n7,169,9.0\n7,170,9.5\n7,171,10.0\n7,172,10.5\n7,173,11.0\n7,174,11.5\n7,175,7.0\n7,176,6.5\n7,177,6.0\n7,178,5.5\n7,179,5.0\n7,180,4.5\n7,181,4.0\n7,182,3.5\n7,183,4.0\n7,184,4.5\n7,185,5.0\n7,186,5.5\n7,187,6.0\n7,188,6.5\n7,189,7.0\n7,190,7.5\n7,191,8.0\n7,192,8.5\n7,193,9.0\n7,194,9.5\n7,195,10.0\n7,196,10.5\n7,197,11.0\n7,198,11.5\n7,199,12.0\n7,200,7.5\n7,201,7.0\n7,202,6.5\n7,203,6.0\n7,204,5.5\n7,205,5.0\n7,206,4.5\n7,207,4.0\n7,208,4.5\n7,209,5.0\n7,210,5.5\n7,211,6.0\n7,212,6.5\n7,213,7.0\n7,214,7.5\n7,215,8.0\n7,216,8.5\n7,217,9.0\n7,218,9.5\n7,219,10.0\n7,220,10.5\n7,221,11.0\n7,222,11.5\n7,223,12.0\n7,224,12.5\n7,225,8.0\n7,226,7.5\n7,227,7.0\n7,228,6.5\n7,229,6.0\n7,230,5.5\n7,231,5.0\n7,232,4.5\n7,233,5.0\n7,234,5.5\n7,235,6.0\n7,236,6.5\n7,237,7.0\n7,238,7.5\n7,239,8.0\n7,240,8.5\n7,241,9.0\n7,242,9.5\n7,243,10.0\n7,244,10.5\n7,245,11.0\n7,246,11.5\n7,247,12.0\n7,248,12.5\n7,249,13.0\n7,250,8.5\n7,251,8.0\n7,252,7.5\n7,253,7.0\n7,254,6.5\n7,255,6.0\n7,256,5.5\n7,257,5.0\n7,258,5.5\n7,259,6.0\n7,260,6.5\n7,261,7.0\n7,262,7.5\n7,263,8.0\n7,264,8.5\n7,265,9.0\n7,266,9.5\n7,267,10.0\n7,268,10.5\n7,269,11.0\n7,270,11.5\n7,271,12.0\n7,272,12.5\n7,273,13.0\n7,274,13.5\n7,275,9.0\n7,276,8.5\n7,277,8.0\n7,278,7.5\n7,279,7.0\n7,280,6.5\n7,281,6.0\n7,282,5.5\n7,283,6.0\n7,284,6.5\n7,285,7.0\n7,286,7.5\n7,287,8.0\n7,288,8.5\n7,289,9.0\n7,290,9.5\n7,291,10.0\n7,292,10.5\n7,293,11.0\n7,294,11.5\n7,295,12.0\n7,296,12.5\n7,297,13.0\n7,298,13.5\n7,299,14.0\n7,300,9.5\n7,301,9.0\n7,302,8.5\n7,303,8.0\n7,304,7.5\n7,305,7.0\n7,306,6.5\n7,307,6.0\n7,308,6.5\n7,309,7.0\n7,310,7.5\n7,311,8.0\n7,312,8.5\n7,313,9.0\n7,314,9.5\n7,315,10.0\n7,316,10.5\n7,317,11.0\n7,318,11.5\n7,319,12.0\n7,320,12.5\n7,321,13.0\n7,322,13.5\n7,323,14.0\n7,324,14.5\n7,325,10.0\n7,326,9.5\n7,327,9.0\n7,328,8.5\n7,329,8.0\n7,330,7.5\n7,331,7.0\n7,332,6.5\n7,333,7.0\n7,334,7.5\n7,335,8.0\n7,336,8.5\n7,337,9.0\n7,338,9.5\n7,339,10.0\n7,340,10.5\n7,341,11.0\n7,342,11.5\n7,343,12.0\n7,344,12.5\n7,345,13.0\n7,346,13.5\n7,347,14.0\n7,348,14.5\n7,349,15.0\n7,350,10.5\n7,351,10.0\n7,352,9.5\n7,353,9.0\n7,354,8.5\n7,355,8.0\n7,356,7.5\n7,357,7.0\n7,358,7.5\n7,359,8.0\n7,360,8.5\n7,361,9.0\n7,362,9.5\n7,363,10.0\n7,364,10.5\n7,365,11.0\n7,366,11.5\n7,367,12.0\n7,368,12.5\n7,369,13.0\n7,370,13.5\n7,371,14.0\n7,372,14.5\n7,373,15.0\n7,374,15.5\n7,375,11.0\n7,376,10.5\n7,377,10.0\n7,378,9.5\n7,379,9.0\n7,380,8.5\n7,381,8.0\n7,382,7.5\n7,383,8.0\n7,384,8.5\n7,385,9.0\n7,386,9.5\n7,387,10.0\n7,388,10.5\n7,389,11.0\n7,390,11.5\n7,391,12.0\n7,392,12.5\n7,393,13.0\n7,394,13.5\n7,395,14.0\n7,396,14.5\n7,397,15.0\n7,398,15.5\n7,399,16.0\n7,400,11.5\n7,401,11.0\n7,402,10.5\n7,403,10.0\n7,404,9.5\n7,405,9.0\n7,406,8.5\n7,407,8.0\n7,408,8.5\n7,409,9.0\n7,410,9.5\n7,411,10.0\n7,412,10.5\n7,413,11.0\n7,414,11.5\n7,415,12.0\n7,416,12.5\n7,417,13.0\n7,418,13.5\n7,419,14.0\n7,420,14.5\n7,421,15.0\n7,422,15.5\n7,423,16.0\n7,424,16.5\n7,425,12.0\n7,426,11.5\n7,427,11.0\n7,428,10.5\n7,429,10.0\n7,430,9.5\n7,431,9.0\n7,432,8.5\n7,433,9.0\n7,434,9.5\n7,435,10.0\n7,436,10.5\n7,437,11.0\n7,438,11.5\n7,439,12.0\n7,440,12.5\n7,441,13.0\n7,442,13.5\n7,443,14.0\n7,444,14.5\n7,445,15.0\n7,446,15.5\n7,447,16.0\n7,448,16.5\n7,449,17.0\n7,450,12.5\n7,451,12.0\n7,452,11.5\n7,453,11.0\n7,454,10.5\n7,455,10.0\n7,456,9.5\n7,457,9.0\n7,458,9.5\n7,459,10.0\n7,460,10.5\n7,461,11.0\n7,462,11.5\n7,463,12.0\n7,464,12.5\n7,465,13.0\n7,466,13.5\n7,467,14.0\n7,468,14.5\n7,469,15.0\n7,470,15.5\n7,471,16.0\n7,472,16.5\n7,473,17.0\n7,474,17.5\n7,475,13.0\n7,476,12.5\n7,477,12.0\n7,478,11.5\n7,479,11.0\n7,480,10.5\n7,481,10.0\n7,482,9.5\n7,483,10.0\n7,484,10.5\n7,485,11.0\n7,486,11.5\n7,487,12.0\n7,488,12.5\n7,489,13.0\n7,490,13.5\n7,491,14.0\n7,492,14.5\n7,493,15.0\n7,494,15.5\n7,495,16.0\n7,496,16.5\n7,497,17.0\n7,498,17.5\n7,499,18.0\n7,500,13.5\n7,501,13.0\n7,502,12.5\n7,503,12.0\n7,504,11.5\n7,505,11.0\n7,506,10.5\n7,507,10.0\n7,508,10.5\n7,509,11.0\n7,510,11.5\n7,511,12.0\n7,512,12.5\n7,513,13.0\n7,514,13.5\n7,515,14.0\n7,516,14.5\n7,517,15.0\n7,518,15.5\n7,519,16.0\n7,520,16.5\n7,521,17.0\n7,522,17.5\n7,523,18.0\n7,524,18.5\n7,525,14.0\n7,526,13.5\n7,527,13.0\n7,528,12.5\n7,529,12.0\n7,530,11.5\n7,531,11.0\n7,532,10.5\n7,533,11.0\n7,534,11.5\n7,535,12.0\n7,536,12.5\n7,537,13.0\n7,538,13.5\n7,539,14.0\n7,540,14.5\n7,541,15.0\n7,542,15.5\n7,543,16.0\n7,544,16.5\n7,545,17.0\n7,546,17.5\n7,547,18.0\n7,548,18.5\n7,549,19.0\n7,550,14.5\n7,551,14.0\n7,552,13.5\n7,553,13.0\n7,554,12.5\n7,555,12.0\n7,556,11.5\n7,557,11.0\n7,558,11.5\n7,559,12.0\n7,560,12.5\n7,561,13.0\n7,562,13.5\n7,563,14.0\n7,564,14.5\n7,565,15.0\n7,566,15.5\n7,567,16.0\n7,568,16.5\n7,569,17.0\n7,570,17.5\n7,571,18.0\n7,572,18.5\n7,573,19.0\n7,574,19.5\n7,575,15.0\n7,576,14.5\n7,577,14.0\n7,578,13.5\n7,579,13.0\n7,580,12.5\n7,581,12.0\n7,582,11.5\n7,583,12.0\n7,584,12.5\n7,585,13.0\n7,586,13.5\n7,587,14.0\n7,588,14.5\n7,589,15.0\n7,590,15.5\n7,591,16.0\n7,592,16.5\n7,593,17.0\n7,594,17.5\n7,595,18.0\n7,596,18.5\n7,597,19.0\n7,598,19.5\n7,599,20.0\n7,600,15.5\n7,601,15.0\n7,602,14.5\n7,603,14.0\n7,604,13.5\n7,605,13.0\n7,606,12.5\n7,607,12.0\n7,608,12.5\n7,609,13.0\n7,610,13.5\n7,611,14.0\n7,612,14.5\n7,613,15.0\n7,614,15.5\n7,615,16.0\n7,616,16.5\n7,617,17.0\n7,618,17.5\n7,619,18.0\n7,620,18.5\n7,621,19.0\n7,622,19.5\n7,623,20.0\n7,624,20.5\n8,0,4.0\n8,1,3.5\n8,2,3.0\n8,3,2.5\n8,4,2.0\n8,5,1.5\n8,6,1.0\n8,7,0.5\n8,8,0\n8,9,0.5\n8,10,1.0\n8,11,1.5\n8,12,2.0\n8,13,2.5\n8,14,3.0\n8,15,3.5\n8,16,4.0\n8,17,4.5\n8,18,5.0\n8,19,5.5\n8,20,6.0\n8,21,6.5\n8,22,7.0\n8,23,7.5\n8,24,8.0\n8,25,4.5\n8,26,4.0\n8,27,3.5\n8,28,3.0\n8,29,2.5\n8,30,2.0\n8,31,1.5\n8,32,1.0\n8,33,0.5\n8,34,1.0\n8,35,1.5\n8,36,2.0\n8,37,2.5\n8,38,3.0\n8,39,3.5\n8,40,4.0\n8,41,4.5\n8,42,5.0\n8,43,5.5\n8,44,6.0\n8,45,6.5\n8,46,7.0\n8,47,7.5\n8,48,8.0\n8,49,8.5\n8,50,5.0\n8,51,4.5\n8,52,4.0\n8,53,3.5\n8,54,3.0\n8,55,2.5\n8,56,2.0\n8,57,1.5\n8,58,1.0\n8,59,1.5\n8,60,2.0\n8,61,2.5\n8,62,3.0\n8,63,3.5\n8,64,4.0\n8,65,4.5\n8,66,5.0\n8,67,5.5\n8,68,6.0\n8,69,6.5\n8,70,7.0\n8,71,7.5\n8,72,8.0\n8,73,8.5\n8,74,9.0\n8,75,5.5\n8,76,5.0\n8,77,4.5\n8,78,4.0\n8,79,3.5\n8,80,3.0\n8,81,2.5\n8,82,2.0\n8,83,1.5\n8,84,2.0\n8,85,2.5\n8,86,3.0\n8,87,3.5\n8,88,4.0\n8,89,4.5\n8,90,5.0\n8,91,5.5\n8,92,6.0\n8,93,6.5\n8,94,7.0\n8,95,7.5\n8,96,8.0\n8,97,8.5\n8,98,9.0\n8,99,9.5\n8,100,6.0\n8,101,5.5\n8,102,5.0\n8,103,4.5\n8,104,4.0\n8,105,3.5\n8,106,3.0\n8,107,2.5\n8,108,2.0\n8,109,2.5\n8,110,3.0\n8,111,3.5\n8,112,4.0\n8,113,4.5\n8,114,5.0\n8,115,5.5\n8,116,6.0\n8,117,6.5\n8,118,7.0\n8,119,7.5\n8,120,8.0\n8,121,8.5\n8,122,9.0\n8,123,9.5\n8,124,10.0\n8,125,6.5\n8,126,6.0\n8,127,5.5\n8,128,5.0\n8,129,4.5\n8,130,4.0\n8,131,3.5\n8,132,3.0\n8,133,2.5\n8,134,3.0\n8,135,3.5\n8,136,4.0\n8,137,4.5\n8,138,5.0\n8,139,5.5\n8,140,6.0\n8,141,6.5\n8,142,7.0\n8,143,7.5\n8,144,8.0\n8,145,8.5\n8,146,9.0\n8,147,9.5\n8,148,10.0\n8,149,10.5\n8,150,7.0\n8,151,6.5\n8,152,6.0\n8,153,5.5\n8,154,5.0\n8,155,4.5\n8,156,4.0\n8,157,3.5\n8,158,3.0\n8,159,3.5\n8,160,4.0\n8,161,4.5\n8,162,5.0\n8,163,5.5\n8,164,6.0\n8,165,6.5\n8,166,7.0\n8,167,7.5\n8,168,8.0\n8,169,8.5\n8,170,9.0\n8,171,9.5\n8,172,10.0\n8,173,10.5\n8,174,11.0\n8,175,7.5\n8,176,7.0\n8,177,6.5\n8,178,6.0\n8,179,5.5\n8,180,5.0\n8,181,4.5\n8,182,4.0\n8,183,3.5\n8,184,4.0\n8,185,4.5\n8,186,5.0\n8,187,5.5\n8,188,6.0\n8,189,6.5\n8,190,7.0\n8,191,7.5\n8,192,8.0\n8,193,8.5\n8,194,9.0\n8,195,9.5\n8,196,10.0\n8,197,10.5\n8,198,11.0\n8,199,11.5\n8,200,8.0\n8,201,7.5\n8,202,7.0\n8,203,6.5\n8,204,6.0\n8,205,5.5\n8,206,5.0\n8,207,4.5\n8,208,4.0\n8,209,4.5\n8,210,5.0\n8,211,5.5\n8,212,6.0\n8,213,6.5\n8,214,7.0\n8,215,7.5\n8,216,8.0\n8,217,8.5\n8,218,9.0\n8,219,9.5\n8,220,10.0\n8,221,10.5\n8,222,11.0\n8,223,11.5\n8,224,12.0\n8,225,8.5\n8,226,8.0\n8,227,7.5\n8,228,7.0\n8,229,6.5\n8,230,6.0\n8,231,5.5\n8,232,5.0\n8,233,4.5\n8,234,5.0\n8,235,5.5\n8,236,6.0\n8,237,6.5\n8,238,7.0\n8,239,7.5\n8,240,8.0\n8,241,8.5\n8,242,9.0\n8,243,9.5\n8,244,10.0\n8,245,10.5\n8,246,11.0\n8,247,11.5\n8,248,12.0\n8,249,12.5\n8,250,9.0\n8,251,8.5\n8,252,8.0\n8,253,7.5\n8,254,7.0\n8,255,6.5\n8,256,6.0\n8,257,5.5\n8,258,5.0\n8,259,5.5\n8,260,6.0\n8,261,6.5\n8,262,7.0\n8,263,7.5\n8,264,8.0\n8,265,8.5\n8,266,9.0\n8,267,9.5\n8,268,10.0\n8,269,10.5\n8,270,11.0\n8,271,11.5\n8,272,12.0\n8,273,12.5\n8,274,13.0\n8,275,9.5\n8,276,9.0\n8,277,8.5\n8,278,8.0\n8,279,7.5\n8,280,7.0\n8,281,6.5\n8,282,6.0\n8,283,5.5\n8,284,6.0\n8,285,6.5\n8,286,7.0\n8,287,7.5\n8,288,8.0\n8,289,8.5\n8,290,9.0\n8,291,9.5\n8,292,10.0\n8,293,10.5\n8,294,11.0\n8,295,11.5\n8,296,12.0\n8,297,12.5\n8,298,13.0\n8,299,13.5\n8,300,10.0\n8,301,9.5\n8,302,9.0\n8,303,8.5\n8,304,8.0\n8,305,7.5\n8,306,7.0\n8,307,6.5\n8,308,6.0\n8,309,6.5\n8,310,7.0\n8,311,7.5\n8,312,8.0\n8,313,8.5\n8,314,9.0\n8,315,9.5\n8,316,10.0\n8,317,10.5\n8,318,11.0\n8,319,11.5\n8,320,12.0\n8,321,12.5\n8,322,13.0\n8,323,13.5\n8,324,14.0\n8,325,10.5\n8,326,10.0\n8,327,9.5\n8,328,9.0\n8,329,8.5\n8,330,8.0\n8,331,7.5\n8,332,7.0\n8,333,6.5\n8,334,7.0\n8,335,7.5\n8,336,8.0\n8,337,8.5\n8,338,9.0\n8,339,9.5\n8,340,10.0\n8,341,10.5\n8,342,11.0\n8,343,11.5\n8,344,12.0\n8,345,12.5\n8,346,13.0\n8,347,13.5\n8,348,14.0\n8,349,14.5\n8,350,11.0\n8,351,10.5\n8,352,10.0\n8,353,9.5\n8,354,9.0\n8,355,8.5\n8,356,8.0\n8,357,7.5\n8,358,7.0\n8,359,7.5\n8,360,8.0\n8,361,8.5\n8,362,9.0\n8,363,9.5\n8,364,10.0\n8,365,10.5\n8,366,11.0\n8,367,11.5\n8,368,12.0\n8,369,12.5\n8,370,13.0\n8,371,13.5\n8,372,14.0\n8,373,14.5\n8,374,15.0\n8,375,11.5\n8,376,11.0\n8,377,10.5\n8,378,10.0\n8,379,9.5\n8,380,9.0\n8,381,8.5\n8,382,8.0\n8,383,7.5\n8,384,8.0\n8,385,8.5\n8,386,9.0\n8,387,9.5\n8,388,10.0\n8,389,10.5\n8,390,11.0\n8,391,11.5\n8,392,12.0\n8,393,12.5\n8,394,13.0\n8,395,13.5\n8,396,14.0\n8,397,14.5\n8,398,15.0\n8,399,15.5\n8,400,12.0\n8,401,11.5\n8,402,11.0\n8,403,10.5\n8,404,10.0\n8,405,9.5\n8,406,9.0\n8,407,8.5\n8,408,8.0\n8,409,8.5\n8,410,9.0\n8,411,9.5\n8,412,10.0\n8,413,10.5\n8,414,11.0\n8,415,11.5\n8,416,12.0\n8,417,12.5\n8,418,13.0\n8,419,13.5\n8,420,14.0\n8,421,14.5\n8,422,15.0\n8,423,15.5\n8,424,16.0\n8,425,12.5\n8,426,12.0\n8,427,11.5\n8,428,11.0\n8,429,10.5\n8,430,10.0\n8,431,9.5\n8,432,9.0\n8,433,8.5\n8,434,9.0\n8,435,9.5\n8,436,10.0\n8,437,10.5\n8,438,11.0\n8,439,11.5\n8,440,12.0\n8,441,12.5\n8,442,13.0\n8,443,13.5\n8,444,14.0\n8,445,14.5\n8,446,15.0\n8,447,15.5\n8,448,16.0\n8,449,16.5\n8,450,13.0\n8,451,12.5\n8,452,12.0\n8,453,11.5\n8,454,11.0\n8,455,10.5\n8,456,10.0\n8,457,9.5\n8,458,9.0\n8,459,9.5\n8,460,10.0\n8,461,10.5\n8,462,11.0\n8,463,11.5\n8,464,12.0\n8,465,12.5\n8,466,13.0\n8,467,13.5\n8,468,14.0\n8,469,14.5\n8,470,15.0\n8,471,15.5\n8,472,16.0\n8,473,16.5\n8,474,17.0\n8,475,13.5\n8,476,13.0\n8,477,12.5\n8,478,12.0\n8,479,11.5\n8,480,11.0\n8,481,10.5\n8,482,10.0\n8,483,9.5\n8,484,10.0\n8,485,10.5\n8,486,11.0\n8,487,11.5\n8,488,12.0\n8,489,12.5\n8,490,13.0\n8,491,13.5\n8,492,14.0\n8,493,14.5\n8,494,15.0\n8,495,15.5\n8,496,16.0\n8,497,16.5\n8,498,17.0\n8,499,17.5\n8,500,14.0\n8,501,13.5\n8,502,13.0\n8,503,12.5\n8,504,12.0\n8,505,11.5\n8,506,11.0\n8,507,10.5\n8,508,10.0\n8,509,10.5\n8,510,11.0\n8,511,11.5\n8,512,12.0\n8,513,12.5\n8,514,13.0\n8,515,13.5\n8,516,14.0\n8,517,14.5\n8,518,15.0\n8,519,15.5\n8,520,16.0\n8,521,16.5\n8,522,17.0\n8,523,17.5\n8,524,18.0\n8,525,14.5\n8,526,14.0\n8,527,13.5\n8,528,13.0\n8,529,12.5\n8,530,12.0\n8,531,11.5\n8,532,11.0\n8,533,10.5\n8,534,11.0\n8,535,11.5\n8,536,12.0\n8,537,12.5\n8,538,13.0\n8,539,13.5\n8,540,14.0\n8,541,14.5\n8,542,15.0\n8,543,15.5\n8,544,16.0\n8,545,16.5\n8,546,17.0\n8,547,17.5\n8,548,18.0\n8,549,18.5\n8,550,15.0\n8,551,14.5\n8,552,14.0\n8,553,13.5\n8,554,13.0\n8,555,12.5\n8,556,12.0\n8,557,11.5\n8,558,11.0\n8,559,11.5\n8,560,12.0\n8,561,12.5\n8,562,13.0\n8,563,13.5\n8,564,14.0\n8,565,14.5\n8,566,15.0\n8,567,15.5\n8,568,16.0\n8,569,16.5\n8,570,17.0\n8,571,17.5\n8,572,18.0\n8,573,18.5\n8,574,19.0\n8,575,15.5\n8,576,15.0\n8,577,14.5\n8,578,14.0\n8,579,13.5\n8,580,13.0\n8,581,12.5\n8,582,12.0\n8,583,11.5\n8,584,12.0\n8,585,12.5\n8,586,13.0\n8,587,13.5\n8,588,14.0\n8,589,14.5\n8,590,15.0\n8,591,15.5\n8,592,16.0\n8,593,16.5\n8,594,17.0\n8,595,17.5\n8,596,18.0\n8,597,18.5\n8,598,19.0\n8,599,19.5\n8,600,16.0\n8,601,15.5\n8,602,15.0\n8,603,14.5\n8,604,14.0\n8,605,13.5\n8,606,13.0\n8,607,12.5\n8,608,12.0\n8,609,12.5\n8,610,13.0\n8,611,13.5\n8,612,14.0\n8,613,14.5\n8,614,15.0\n8,615,15.5\n8,616,16.0\n8,617,16.5\n8,618,17.0\n8,619,17.5\n8,620,18.0\n8,621,18.5\n8,622,19.0\n8,623,19.5\n8,624,20.0\n9,0,4.5\n9,1,4.0\n9,2,3.5\n9,3,3.0\n9,4,2.5\n9,5,2.0\n9,6,1.5\n9,7,1.0\n9,8,0.5\n9,9,0\n9,10,0.5\n9,11,1.0\n9,12,1.5\n9,13,2.0\n9,14,2.5\n9,15,3.0\n9,16,3.5\n9,17,4.0\n9,18,4.5\n9,19,5.0\n9,20,5.5\n9,21,6.0\n9,22,6.5\n9,23,7.0\n9,24,7.5\n9,25,5.0\n9,26,4.5\n9,27,4.0\n9,28,3.5\n9,29,3.0\n9,30,2.5\n9,31,2.0\n9,32,1.5\n9,33,1.0\n9,34,0.5\n9,35,1.0\n9,36,1.5\n9,37,2.0\n9,38,2.5\n9,39,3.0\n9,40,3.5\n9,41,4.0\n9,42,4.5\n9,43,5.0\n9,44,5.5\n9,45,6.0\n9,46,6.5\n9,47,7.0\n9,48,7.5\n9,49,8.0\n9,50,5.5\n9,51,5.0\n9,52,4.5\n9,53,4.0\n9,54,3.5\n9,55,3.0\n9,56,2.5\n9,57,2.0\n9,58,1.5\n9,59,1.0\n9,60,1.5\n9,61,2.0\n9,62,2.5\n9,63,3.0\n9,64,3.5\n9,65,4.0\n9,66,4.5\n9,67,5.0\n9,68,5.5\n9,69,6.0\n9,70,6.5\n9,71,7.0\n9,72,7.5\n9,73,8.0\n9,74,8.5\n9,75,6.0\n9,76,5.5\n9,77,5.0\n9,78,4.5\n9,79,4.0\n9,80,3.5\n9,81,3.0\n9,82,2.5\n9,83,2.0\n9,84,1.5\n9,85,2.0\n9,86,2.5\n9,87,3.0\n9,88,3.5\n9,89,4.0\n9,90,4.5\n9,91,5.0\n9,92,5.5\n9,93,6.0\n9,94,6.5\n9,95,7.0\n9,96,7.5\n9,97,8.0\n9,98,8.5\n9,99,9.0\n9,100,6.5\n9,101,6.0\n9,102,5.5\n9,103,5.0\n9,104,4.5\n9,105,4.0\n9,106,3.5\n9,107,3.0\n9,108,2.5\n9,109,2.0\n9,110,2.5\n9,111,3.0\n9,112,3.5\n9,113,4.0\n9,114,4.5\n9,115,5.0\n9,116,5.5\n9,117,6.0\n9,118,6.5\n9,119,7.0\n9,120,7.5\n9,121,8.0\n9,122,8.5\n9,123,9.0\n9,124,9.5\n9,125,7.0\n9,126,6.5\n9,127,6.0\n9,128,5.5\n9,129,5.0\n9,130,4.5\n9,131,4.0\n9,132,3.5\n9,133,3.0\n9,134,2.5\n9,135,3.0\n9,136,3.5\n9,137,4.0\n9,138,4.5\n9,139,5.0\n9,140,5.5\n9,141,6.0\n9,142,6.5\n9,143,7.0\n9,144,7.5\n9,145,8.0\n9,146,8.5\n9,147,9.0\n9,148,9.5\n9,149,10.0\n9,150,7.5\n9,151,7.0\n9,152,6.5\n9,153,6.0\n9,154,5.5\n9,155,5.0\n9,156,4.5\n9,157,4.0\n9,158,3.5\n9,159,3.0\n9,160,3.5\n9,161,4.0\n9,162,4.5\n9,163,5.0\n9,164,5.5\n9,165,6.0\n9,166,6.5\n9,167,7.0\n9,168,7.5\n9,169,8.0\n9,170,8.5\n9,171,9.0\n9,172,9.5\n9,173,10.0\n9,174,10.5\n9,175,8.0\n9,176,7.5\n9,177,7.0\n9,178,6.5\n9,179,6.0\n9,180,5.5\n9,181,5.0\n9,182,4.5\n9,183,4.0\n9,184,3.5\n9,185,4.0\n9,186,4.5\n9,187,5.0\n9,188,5.5\n9,189,6.0\n9,190,6.5\n9,191,7.0\n9,192,7.5\n9,193,8.0\n9,194,8.5\n9,195,9.0\n9,196,9.5\n9,197,10.0\n9,198,10.5\n9,199,11.0\n9,200,8.5\n9,201,8.0\n9,202,7.5\n9,203,7.0\n9,204,6.5\n9,205,6.0\n9,206,5.5\n9,207,5.0\n9,208,4.5\n9,209,4.0\n9,210,4.5\n9,211,5.0\n9,212,5.5\n9,213,6.0\n9,214,6.5\n9,215,7.0\n9,216,7.5\n9,217,8.0\n9,218,8.5\n9,219,9.0\n9,220,9.5\n9,221,10.0\n9,222,10.5\n9,223,11.0\n9,224,11.5\n9,225,9.0\n9,226,8.5\n9,227,8.0\n9,228,7.5\n9,229,7.0\n9,230,6.5\n9,231,6.0\n9,232,5.5\n9,233,5.0\n9,234,4.5\n9,235,5.0\n9,236,5.5\n9,237,6.0\n9,238,6.5\n9,239,7.0\n9,240,7.5\n9,241,8.0\n9,242,8.5\n9,243,9.0\n9,244,9.5\n9,245,10.0\n9,246,10.5\n9,247,11.0\n9,248,11.5\n9,249,12.0\n9,250,9.5\n9,251,9.0\n9,252,8.5\n9,253,8.0\n9,254,7.5\n9,255,7.0\n9,256,6.5\n9,257,6.0\n9,258,5.5\n9,259,5.0\n9,260,5.5\n9,261,6.0\n9,262,6.5\n9,263,7.0\n9,264,7.5\n9,265,8.0\n9,266,8.5\n9,267,9.0\n9,268,9.5\n9,269,10.0\n9,270,10.5\n9,271,11.0\n9,272,11.5\n9,273,12.0\n9,274,12.5\n9,275,10.0\n9,276,9.5\n9,277,9.0\n9,278,8.5\n9,279,8.0\n9,280,7.5\n9,281,7.0\n9,282,6.5\n9,283,6.0\n9,284,5.5\n9,285,6.0\n9,286,6.5\n9,287,7.0\n9,288,7.5\n9,289,8.0\n9,290,8.5\n9,291,9.0\n9,292,9.5\n9,293,10.0\n9,294,10.5\n9,295,11.0\n9,296,11.5\n9,297,12.0\n9,298,12.5\n9,299,13.0\n9,300,10.5\n9,301,10.0\n9,302,9.5\n9,303,9.0\n9,304,8.5\n9,305,8.0\n9,306,7.5\n9,307,7.0\n9,308,6.5\n9,309,6.0\n9,310,6.5\n9,311,7.0\n9,312,7.5\n9,313,8.0\n9,314,8.5\n9,315,9.0\n9,316,9.5\n9,317,10.0\n9,318,10.5\n9,319,11.0\n9,320,11.5\n9,321,12.0\n9,322,12.5\n9,323,13.0\n9,324,13.5\n9,325,11.0\n9,326,10.5\n9,327,10.0\n9,328,9.5\n9,329,9.0\n9,330,8.5\n9,331,8.0\n9,332,7.5\n9,333,7.0\n9,334,6.5\n9,335,7.0\n9,336,7.5\n9,337,8.0\n9,338,8.5\n9,339,9.0\n9,340,9.5\n9,341,10.0\n9,342,10.5\n9,343,11.0\n9,344,11.5\n9,345,12.0\n9,346,12.5\n9,347,13.0\n9,348,13.5\n9,349,14.0\n9,350,11.5\n9,351,11.0\n9,352,10.5\n9,353,10.0\n9,354,9.5\n9,355,9.0\n9,356,8.5\n9,357,8.0\n9,358,7.5\n9,359,7.0\n9,360,7.5\n9,361,8.0\n9,362,8.5\n9,363,9.0\n9,364,9.5\n9,365,10.0\n9,366,10.5\n9,367,11.0\n9,368,11.5\n9,369,12.0\n9,370,12.5\n9,371,13.0\n9,372,13.5\n9,373,14.0\n9,374,14.5\n9,375,12.0\n9,376,11.5\n9,377,11.0\n9,378,10.5\n9,379,10.0\n9,380,9.5\n9,381,9.0\n9,382,8.5\n9,383,8.0\n9,384,7.5\n9,385,8.0\n9,386,8.5\n9,387,9.0\n9,388,9.5\n9,389,10.0\n9,390,10.5\n9,391,11.0\n9,392,11.5\n9,393,12.0\n9,394,12.5\n9,395,13.0\n9,396,13.5\n9,397,14.0\n9,398,14.5\n9,399,15.0\n9,400,12.5\n9,401,12.0\n9,402,11.5\n9,403,11.0\n9,404,10.5\n9,405,10.0\n9,406,9.5\n9,407,9.0\n9,408,8.5\n9,409,8.0\n9,410,8.5\n9,411,9.0\n9,412,9.5\n9,413,10.0\n9,414,10.5\n9,415,11.0\n9,416,11.5\n9,417,12.0\n9,418,12.5\n9,419,13.0\n9,420,13.5\n9,421,14.0\n9,422,14.5\n9,423,15.0\n9,424,15.5\n9,425,13.0\n9,426,12.5\n9,427,12.0\n9,428,11.5\n9,429,11.0\n9,430,10.5\n9,431,10.0\n9,432,9.5\n9,433,9.0\n9,434,8.5\n9,435,9.0\n9,436,9.5\n9,437,10.0\n9,438,10.5\n9,439,11.0\n9,440,11.5\n9,441,12.0\n9,442,12.5\n9,443,13.0\n9,444,13.5\n9,445,14.0\n9,446,14.5\n9,447,15.0\n9,448,15.5\n9,449,16.0\n9,450,13.5\n9,451,13.0\n9,452,12.5\n9,453,12.0\n9,454,11.5\n9,455,11.0\n9,456,10.5\n9,457,10.0\n9,458,9.5\n9,459,9.0\n9,460,9.5\n9,461,10.0\n9,462,10.5\n9,463,11.0\n9,464,11.5\n9,465,12.0\n9,466,12.5\n9,467,13.0\n9,468,13.5\n9,469,14.0\n9,470,14.5\n9,471,15.0\n9,472,15.5\n9,473,16.0\n9,474,16.5\n9,475,14.0\n9,476,13.5\n9,477,13.0\n9,478,12.5\n9,479,12.0\n9,480,11.5\n9,481,11.0\n9,482,10.5\n9,483,10.0\n9,484,9.5\n9,485,10.0\n9,486,10.5\n9,487,11.0\n9,488,11.5\n9,489,12.0\n9,490,12.5\n9,491,13.0\n9,492,13.5\n9,493,14.0\n9,494,14.5\n9,495,15.0\n9,496,15.5\n9,497,16.0\n9,498,16.5\n9,499,17.0\n9,500,14.5\n9,501,14.0\n9,502,13.5\n9,503,13.0\n9,504,12.5\n9,505,12.0\n9,506,11.5\n9,507,11.0\n9,508,10.5\n9,509,10.0\n9,510,10.5\n9,511,11.0\n9,512,11.5\n9,513,12.0\n9,514,12.5\n9,515,13.0\n9,516,13.5\n9,517,14.0\n9,518,14.5\n9,519,15.0\n9,520,15.5\n9,521,16.0\n9,522,16.5\n9,523,17.0\n9,524,17.5\n9,525,15.0\n9,526,14.5\n9,527,14.0\n9,528,13.5\n9,529,13.0\n9,530,12.5\n9,531,12.0\n9,532,11.5\n9,533,11.0\n9,534,10.5\n9,535,11.0\n9,536,11.5\n9,537,12.0\n9,538,12.5\n9,539,13.0\n9,540,13.5\n9,541,14.0\n9,542,14.5\n9,543,15.0\n9,544,15.5\n9,545,16.0\n9,546,16.5\n9,547,17.0\n9,548,17.5\n9,549,18.0\n9,550,15.5\n9,551,15.0\n9,552,14.5\n9,553,14.0\n9,554,13.5\n9,555,13.0\n9,556,12.5\n9,557,12.0\n9,558,11.5\n9,559,11.0\n9,560,11.5\n9,561,12.0\n9,562,12.5\n9,563,13.0\n9,564,13.5\n9,565,14.0\n9,566,14.5\n9,567,15.0\n9,568,15.5\n9,569,16.0\n9,570,16.5\n9,571,17.0\n9,572,17.5\n9,573,18.0\n9,574,18.5\n9,575,16.0\n9,576,15.5\n9,577,15.0\n9,578,14.5\n9,579,14.0\n9,580,13.5\n9,581,13.0\n9,582,12.5\n9,583,12.0\n9,584,11.5\n9,585,12.0\n9,586,12.5\n9,587,13.0\n9,588,13.5\n9,589,14.0\n9,590,14.5\n9,591,15.0\n9,592,15.5\n9,593,16.0\n9,594,16.5\n9,595,17.0\n9,596,17.5\n9,597,18.0\n9,598,18.5\n9,599,19.0\n9,600,16.5\n9,601,16.0\n9,602,15.5\n9,603,15.0\n9,604,14.5\n9,605,14.0\n9,606,13.5\n9,607,13.0\n9,608,12.5\n9,609,12.0\n9,610,12.5\n9,611,13.0\n9,612,13.5\n9,613,14.0\n9,614,14.5\n9,615,15.0\n9,616,15.5\n9,617,16.0\n9,618,16.5\n9,619,17.0\n9,620,17.5\n9,621,18.0\n9,622,18.5\n9,623,19.0\n9,624,19.5\n10,0,5.0\n10,1,4.5\n10,2,4.0\n10,3,3.5\n10,4,3.0\n10,5,2.5\n10,6,2.0\n10,7,1.5\n10,8,1.0\n10,9,0.5\n10,10,0\n10,11,0.5\n10,12,1.0\n10,13,1.5\n10,14,2.0\n10,15,2.5\n10,16,3.0\n10,17,3.5\n10,18,4.0\n10,19,4.5\n10,20,5.0\n10,21,5.5\n10,22,6.0\n10,23,6.5\n10,24,7.0\n10,25,5.5\n10,26,5.0\n10,27,4.5\n10,28,4.0\n10,29,3.5\n10,30,3.0\n10,31,2.5\n10,32,2.0\n10,33,1.5\n10,34,1.0\n10,35,0.5\n10,36,1.0\n10,37,1.5\n10,38,2.0\n10,39,2.5\n10,40,3.0\n10,41,3.5\n10,42,4.0\n10,43,4.5\n10,44,5.0\n10,45,5.5\n10,46,6.0\n10,47,6.5\n10,48,7.0\n10,49,7.5\n10,50,6.0\n10,51,5.5\n10,52,5.0\n10,53,4.5\n10,54,4.0\n10,55,3.5\n10,56,3.0\n10,57,2.5\n10,58,2.0\n10,59,1.5\n10,60,1.0\n10,61,1.5\n10,62,2.0\n10,63,2.5\n10,64,3.0\n10,65,3.5\n10,66,4.0\n10,67,4.5\n10,68,5.0\n10,69,5.5\n10,70,6.0\n10,71,6.5\n10,72,7.0\n10,73,7.5\n10,74,8.0\n10,75,6.5\n10,76,6.0\n10,77,5.5\n10,78,5.0\n10,79,4.5\n10,80,4.0\n10,81,3.5\n10,82,3.0\n10,83,2.5\n10,84,2.0\n10,85,1.5\n10,86,2.0\n10,87,2.5\n10,88,3.0\n10,89,3.5\n10,90,4.0\n10,91,4.5\n10,92,5.0\n10,93,5.5\n10,94,6.0\n10,95,6.5\n10,96,7.0\n10,97,7.5\n10,98,8.0\n10,99,8.5\n10,100,7.0\n10,101,6.5\n10,102,6.0\n10,103,5.5\n10,104,5.0\n10,105,4.5\n10,106,4.0\n10,107,3.5\n10,108,3.0\n10,109,2.5\n10,110,2.0\n10,111,2.5\n10,112,3.0\n10,113,3.5\n10,114,4.0\n10,115,4.5\n10,116,5.0\n10,117,5.5\n10,118,6.0\n10,119,6.5\n10,120,7.0\n10,121,7.5\n10,122,8.0\n10,123,8.5\n10,124,9.0\n10,125,7.5\n10,126,7.0\n10,127,6.5\n10,128,6.0\n10,129,5.5\n10,130,5.0\n10,131,4.5\n10,132,4.0\n10,133,3.5\n10,134,3.0\n10,135,2.5\n10,136,3.0\n10,137,3.5\n10,138,4.0\n10,139,4.5\n10,140,5.0\n10,141,5.5\n10,142,6.0\n10,143,6.5\n10,144,7.0\n10,145,7.5\n10,146,8.0\n10,147,8.5\n10,148,9.0\n10,149,9.5\n10,150,8.0\n10,151,7.5\n10,152,7.0\n10,153,6.5\n10,154,6.0\n10,155,5.5\n10,156,5.0\n10,157,4.5\n10,158,4.0\n10,159,3.5\n10,160,3.0\n10,161,3.5\n10,162,4.0\n10,163,4.5\n10,164,5.0\n10,165,5.5\n10,166,6.0\n10,167,6.5\n10,168,7.0\n10,169,7.5\n10,170,8.0\n10,171,8.5\n10,172,9.0\n10,173,9.5\n10,174,10.0\n10,175,8.5\n10,176,8.0\n10,177,7.5\n10,178,7.0\n10,179,6.5\n10,180,6.0\n10,181,5.5\n10,182,5.0\n10,183,4.5\n10,184,4.0\n10,185,3.5\n10,186,4.0\n10,187,4.5\n10,188,5.0\n10,189,5.5\n10,190,6.0\n10,191,6.5\n10,192,7.0\n10,193,7.5\n10,194,8.0\n10,195,8.5\n10,196,9.0\n10,197,9.5\n10,198,10.0\n10,199,10.5\n10,200,9.0\n10,201,8.5\n10,202,8.0\n10,203,7.5\n10,204,7.0\n10,205,6.5\n10,206,6.0\n10,207,5.5\n10,208,5.0\n10,209,4.5\n10,210,4.0\n10,211,4.5\n10,212,5.0\n10,213,5.5\n10,214,6.0\n10,215,6.5\n10,216,7.0\n10,217,7.5\n10,218,8.0\n10,219,8.5\n10,220,9.0\n10,221,9.5\n10,222,10.0\n10,223,10.5\n10,224,11.0\n10,225,9.5\n10,226,9.0\n10,227,8.5\n10,228,8.0\n10,229,7.5\n10,230,7.0\n10,231,6.5\n10,232,6.0\n10,233,5.5\n10,234,5.0\n10,235,4.5\n10,236,5.0\n10,237,5.5\n10,238,6.0\n10,239,6.5\n10,240,7.0\n10,241,7.5\n10,242,8.0\n10,243,8.5\n10,244,9.0\n10,245,9.5\n10,246,10.0\n10,247,10.5\n10,248,11.0\n10,249,11.5\n10,250,10.0\n10,251,9.5\n10,252,9.0\n10,253,8.5\n10,254,8.0\n10,255,7.5\n10,256,7.0\n10,257,6.5\n10,258,6.0\n10,259,5.5\n10,260,5.0\n10,261,5.5\n10,262,6.0\n10,263,6.5\n10,264,7.0\n10,265,7.5\n10,266,8.0\n10,267,8.5\n10,268,9.0\n10,269,9.5\n10,270,10.0\n10,271,10.5\n10,272,11.0\n10,273,11.5\n10,274,12.0\n10,275,10.5\n10,276,10.0\n10,277,9.5\n10,278,9.0\n10,279,8.5\n10,280,8.0\n10,281,7.5\n10,282,7.0\n10,283,6.5\n10,284,6.0\n10,285,5.5\n10,286,6.0\n10,287,6.5\n10,288,7.0\n10,289,7.5\n10,290,8.0\n10,291,8.5\n10,292,9.0\n10,293,9.5\n10,294,10.0\n10,295,10.5\n10,296,11.0\n10,297,11.5\n10,298,12.0\n10,299,12.5\n10,300,11.0\n10,301,10.5\n10,302,10.0\n10,303,9.5\n10,304,9.0\n10,305,8.5\n10,306,8.0\n10,307,7.5\n10,308,7.0\n10,309,6.5\n10,310,6.0\n10,311,6.5\n10,312,7.0\n10,313,7.5\n10,314,8.0\n10,315,8.5\n10,316,9.0\n10,317,9.5\n10,318,10.0\n10,319,10.5\n10,320,11.0\n10,321,11.5\n10,322,12.0\n10,323,12.5\n10,324,13.0\n10,325,11.5\n10,326,11.0\n10,327,10.5\n10,328,10.0\n10,329,9.5\n10,330,9.0\n10,331,8.5\n10,332,8.0\n10,333,7.5\n10,334,7.0\n10,335,6.5\n10,336,7.0\n10,337,7.5\n10,338,8.0\n10,339,8.5\n10,340,9.0\n10,341,9.5\n10,342,10.0\n10,343,10.5\n10,344,11.0\n10,345,11.5\n10,346,12.0\n10,347,12.5\n10,348,13.0\n10,349,13.5\n10,350,12.0\n10,351,11.5\n10,352,11.0\n10,353,10.5\n10,354,10.0\n10,355,9.5\n10,356,9.0\n10,357,8.5\n10,358,8.0\n10,359,7.5\n10,360,7.0\n10,361,7.5\n10,362,8.0\n10,363,8.5\n10,364,9.0\n10,365,9.5\n10,366,10.0\n10,367,10.5\n10,368,11.0\n10,369,11.5\n10,370,12.0\n10,371,12.5\n10,372,13.0\n10,373,13.5\n10,374,14.0\n10,375,12.5\n10,376,12.0\n10,377,11.5\n10,378,11.0\n10,379,10.5\n10,380,10.0\n10,381,9.5\n10,382,9.0\n10,383,8.5\n10,384,8.0\n10,385,7.5\n10,386,8.0\n10,387,8.5\n10,388,9.0\n10,389,9.5\n10,390,10.0\n10,391,10.5\n10,392,11.0\n10,393,11.5\n10,394,12.0\n10,395,12.5\n10,396,13.0\n10,397,13.5\n10,398,14.0\n10,399,14.5\n10,400,13.0\n10,401,12.5\n10,402,12.0\n10,403,11.5\n10,404,11.0\n10,405,10.5\n10,406,10.0\n10,407,9.5\n10,408,9.0\n10,409,8.5\n10,410,8.0\n10,411,8.5\n10,412,9.0\n10,413,9.5\n10,414,10.0\n10,415,10.5\n10,416,11.0\n10,417,11.5\n10,418,12.0\n10,419,12.5\n10,420,13.0\n10,421,13.5\n10,422,14.0\n10,423,14.5\n10,424,15.0\n10,425,13.5\n10,426,13.0\n10,427,12.5\n10,428,12.0\n10,429,11.5\n10,430,11.0\n10,431,10.5\n10,432,10.0\n10,433,9.5\n10,434,9.0\n10,435,8.5\n10,436,9.0\n10,437,9.5\n10,438,10.0\n10,439,10.5\n10,440,11.0\n10,441,11.5\n10,442,12.0\n10,443,12.5\n10,444,13.0\n10,445,13.5\n10,446,14.0\n10,447,14.5\n10,448,15.0\n10,449,15.5\n10,450,14.0\n10,451,13.5\n10,452,13.0\n10,453,12.5\n10,454,12.0\n10,455,11.5\n10,456,11.0\n10,457,10.5\n10,458,10.0\n10,459,9.5\n10,460,9.0\n10,461,9.5\n10,462,10.0\n10,463,10.5\n10,464,11.0\n10,465,11.5\n10,466,12.0\n10,467,12.5\n10,468,13.0\n10,469,13.5\n10,470,14.0\n10,471,14.5\n10,472,15.0\n10,473,15.5\n10,474,16.0\n10,475,14.5\n10,476,14.0\n10,477,13.5\n10,478,13.0\n10,479,12.5\n10,480,12.0\n10,481,11.5\n10,482,11.0\n10,483,10.5\n10,484,10.0\n10,485,9.5\n10,486,10.0\n10,487,10.5\n10,488,11.0\n10,489,11.5\n10,490,12.0\n10,491,12.5\n10,492,13.0\n10,493,13.5\n10,494,14.0\n10,495,14.5\n10,496,15.0\n10,497,15.5\n10,498,16.0\n10,499,16.5\n10,500,15.0\n10,501,14.5\n10,502,14.0\n10,503,13.5\n10,504,13.0\n10,505,12.5\n10,506,12.0\n10,507,11.5\n10,508,11.0\n10,509,10.5\n10,510,10.0\n10,511,10.5\n10,512,11.0\n10,513,11.5\n10,514,12.0\n10,515,12.5\n10,516,13.0\n10,517,13.5\n10,518,14.0\n10,519,14.5\n10,520,15.0\n10,521,15.5\n10,522,16.0\n10,523,16.5\n10,524,17.0\n10,525,15.5\n10,526,15.0\n10,527,14.5\n10,528,14.0\n10,529,13.5\n10,530,13.0\n10,531,12.5\n10,532,12.0\n10,533,11.5\n10,534,11.0\n10,535,10.5\n10,536,11.0\n10,537,11.5\n10,538,12.0\n10,539,12.5\n10,540,13.0\n10,541,13.5\n10,542,14.0\n10,543,14.5\n10,544,15.0\n10,545,15.5\n10,546,16.0\n10,547,16.5\n10,548,17.0\n10,549,17.5\n10,550,16.0\n10,551,15.5\n10,552,15.0\n10,553,14.5\n10,554,14.0\n10,555,13.5\n10,556,13.0\n10,557,12.5\n10,558,12.0\n10,559,11.5\n10,560,11.0\n10,561,11.5\n10,562,12.0\n10,563,12.5\n10,564,13.0\n10,565,13.5\n10,566,14.0\n10,567,14.5\n10,568,15.0\n10,569,15.5\n10,570,16.0\n10,571,16.5\n10,572,17.0\n10,573,17.5\n10,574,18.0\n10,575,16.5\n10,576,16.0\n10,577,15.5\n10,578,15.0\n10,579,14.5\n10,580,14.0\n10,581,13.5\n10,582,13.0\n10,583,12.5\n10,584,12.0\n10,585,11.5\n10,586,12.0\n10,587,12.5\n10,588,13.0\n10,589,13.5\n10,590,14.0\n10,591,14.5\n10,592,15.0\n10,593,15.5\n10,594,16.0\n10,595,16.5\n10,596,17.0\n10,597,17.5\n10,598,18.0\n10,599,18.5\n10,600,17.0\n10,601,16.5\n10,602,16.0\n10,603,15.5\n10,604,15.0\n10,605,14.5\n10,606,14.0\n10,607,13.5\n10,608,13.0\n10,609,12.5\n10,610,12.0\n10,611,12.5\n10,612,13.0\n10,613,13.5\n10,614,14.0\n10,615,14.5\n10,616,15.0\n10,617,15.5\n10,618,16.0\n10,619,16.5\n10,620,17.0\n10,621,17.5\n10,622,18.0\n10,623,18.5\n10,624,19.0\n11,0,5.5\n11,1,5.0\n11,2,4.5\n11,3,4.0\n11,4,3.5\n11,5,3.0\n11,6,2.5\n11,7,2.0\n11,8,1.5\n11,9,1.0\n11,10,0.5\n11,11,0\n11,12,0.5\n11,13,1.0\n11,14,1.5\n11,15,2.0\n11,16,2.5\n11,17,3.0\n11,18,3.5\n11,19,4.0\n11,20,4.5\n11,21,5.0\n11,22,5.5\n11,23,6.0\n11,24,6.5\n11,25,6.0\n11,26,5.5\n11,27,5.0\n11,28,4.5\n11,29,4.0\n11,30,3.5\n11,31,3.0\n11,32,2.5\n11,33,2.0\n11,34,1.5\n11,35,1.0\n11,36,0.5\n11,37,1.0\n11,38,1.5\n11,39,2.0\n11,40,2.5\n11,41,3.0\n11,42,3.5\n11,43,4.0\n11,44,4.5\n11,45,5.0\n11,46,5.5\n11,47,6.0\n11,48,6.5\n11,49,7.0\n11,50,6.5\n11,51,6.0\n11,52,5.5\n11,53,5.0\n11,54,4.5\n11,55,4.0\n11,56,3.5\n11,57,3.0\n11,58,2.5\n11,59,2.0\n11,60,1.5\n11,61,1.0\n11,62,1.5\n11,63,2.0\n11,64,2.5\n11,65,3.0\n11,66,3.5\n11,67,4.0\n11,68,4.5\n11,69,5.0\n11,70,5.5\n11,71,6.0\n11,72,6.5\n11,73,7.0\n11,74,7.5\n11,75,7.0\n11,76,6.5\n11,77,6.0\n11,78,5.5\n11,79,5.0\n11,80,4.5\n11,81,4.0\n11,82,3.5\n11,83,3.0\n11,84,2.5\n11,85,2.0\n11,86,1.5\n11,87,2.0\n11,88,2.5\n11,89,3.0\n11,90,3.5\n11,91,4.0\n11,92,4.5\n11,93,5.0\n11,94,5.5\n11,95,6.0\n11,96,6.5\n11,97,7.0\n11,98,7.5\n11,99,8.0\n11,100,7.5\n11,101,7.0\n11,102,6.5\n11,103,6.0\n11,104,5.5\n11,105,5.0\n11,106,4.5\n11,107,4.0\n11,108,3.5\n11,109,3.0\n11,110,2.5\n11,111,2.0\n11,112,2.5\n11,113,3.0\n11,114,3.5\n11,115,4.0\n11,116,4.5\n11,117,5.0\n11,118,5.5\n11,119,6.0\n11,120,6.5\n11,121,7.0\n11,122,7.5\n11,123,8.0\n11,124,8.5\n11,125,8.0\n11,126,7.5\n11,127,7.0\n11,128,6.5\n11,129,6.0\n11,130,5.5\n11,131,5.0\n11,132,4.5\n11,133,4.0\n11,134,3.5\n11,135,3.0\n11,136,2.5\n11,137,3.0\n11,138,3.5\n11,139,4.0\n11,140,4.5\n11,141,5.0\n11,142,5.5\n11,143,6.0\n11,144,6.5\n11,145,7.0\n11,146,7.5\n11,147,8.0\n11,148,8.5\n11,149,9.0\n11,150,8.5\n11,151,8.0\n11,152,7.5\n11,153,7.0\n11,154,6.5\n11,155,6.0\n11,156,5.5\n11,157,5.0\n11,158,4.5\n11,159,4.0\n11,160,3.5\n11,161,3.0\n11,162,3.5\n11,163,4.0\n11,164,4.5\n11,165,5.0\n11,166,5.5\n11,167,6.0\n11,168,6.5\n11,169,7.0\n11,170,7.5\n11,171,8.0\n11,172,8.5\n11,173,9.0\n11,174,9.5\n11,175,9.0\n11,176,8.5\n11,177,8.0\n11,178,7.5\n11,179,7.0\n11,180,6.5\n11,181,6.0\n11,182,5.5\n11,183,5.0\n11,184,4.5\n11,185,4.0\n11,186,3.5\n11,187,4.0\n11,188,4.5\n11,189,5.0\n11,190,5.5\n11,191,6.0\n11,192,6.5\n11,193,7.0\n11,194,7.5\n11,195,8.0\n11,196,8.5\n11,197,9.0\n11,198,9.5\n11,199,10.0\n11,200,9.5\n11,201,9.0\n11,202,8.5\n11,203,8.0\n11,204,7.5\n11,205,7.0\n11,206,6.5\n11,207,6.0\n11,208,5.5\n11,209,5.0\n11,210,4.5\n11,211,4.0\n11,212,4.5\n11,213,5.0\n11,214,5.5\n11,215,6.0\n11,216,6.5\n11,217,7.0\n11,218,7.5\n11,219,8.0\n11,220,8.5\n11,221,9.0\n11,222,9.5\n11,223,10.0\n11,224,10.5\n11,225,10.0\n11,226,9.5\n11,227,9.0\n11,228,8.5\n11,229,8.0\n11,230,7.5\n11,231,7.0\n11,232,6.5\n11,233,6.0\n11,234,5.5\n11,235,5.0\n11,236,4.5\n11,237,5.0\n11,238,5.5\n11,239,6.0\n11,240,6.5\n11,241,7.0\n11,242,7.5\n11,243,8.0\n11,244,8.5\n11,245,9.0\n11,246,9.5\n11,247,10.0\n11,248,10.5\n11,249,11.0\n11,250,10.5\n11,251,10.0\n11,252,9.5\n11,253,9.0\n11,254,8.5\n11,255,8.0\n11,256,7.5\n11,257,7.0\n11,258,6.5\n11,259,6.0\n11,260,5.5\n11,261,5.0\n11,262,5.5\n11,263,6.0\n11,264,6.5\n11,265,7.0\n11,266,7.5\n11,267,8.0\n11,268,8.5\n11,269,9.0\n11,270,9.5\n11,271,10.0\n11,272,10.5\n11,273,11.0\n11,274,11.5\n11,275,11.0\n11,276,10.5\n11,277,10.0\n11,278,9.5\n11,279,9.0\n11,280,8.5\n11,281,8.0\n11,282,7.5\n11,283,7.0\n11,284,6.5\n11,285,6.0\n11,286,5.5\n11,287,6.0\n11,288,6.5\n11,289,7.0\n11,290,7.5\n11,291,8.0\n11,292,8.5\n11,293,9.0\n11,294,9.5\n11,295,10.0\n11,296,10.5\n11,297,11.0\n11,298,11.5\n11,299,12.0\n11,300,11.5\n11,301,11.0\n11,302,10.5\n11,303,10.0\n11,304,9.5\n11,305,9.0\n11,306,8.5\n11,307,8.0\n11,308,7.5\n11,309,7.0\n11,310,6.5\n11,311,6.0\n11,312,6.5\n11,313,7.0\n11,314,7.5\n11,315,8.0\n11,316,8.5\n11,317,9.0\n11,318,9.5\n11,319,10.0\n11,320,10.5\n11,321,11.0\n11,322,11.5\n11,323,12.0\n11,324,12.5\n11,325,12.0\n11,326,11.5\n11,327,11.0\n11,328,10.5\n11,329,10.0\n11,330,9.5\n11,331,9.0\n11,332,8.5\n11,333,8.0\n11,334,7.5\n11,335,7.0\n11,336,6.5\n11,337,7.0\n11,338,7.5\n11,339,8.0\n11,340,8.5\n11,341,9.0\n11,342,9.5\n11,343,10.0\n11,344,10.5\n11,345,11.0\n11,346,11.5\n11,347,12.0\n11,348,12.5\n11,349,13.0\n11,350,12.5\n11,351,12.0\n11,352,11.5\n11,353,11.0\n11,354,10.5\n11,355,10.0\n11,356,9.5\n11,357,9.0\n11,358,8.5\n11,359,8.0\n11,360,7.5\n11,361,7.0\n11,362,7.5\n11,363,8.0\n11,364,8.5\n11,365,9.0\n11,366,9.5\n11,367,10.0\n11,368,10.5\n11,369,11.0\n11,370,11.5\n11,371,12.0\n11,372,12.5\n11,373,13.0\n11,374,13.5\n11,375,13.0\n11,376,12.5\n11,377,12.0\n11,378,11.5\n11,379,11.0\n11,380,10.5\n11,381,10.0\n11,382,9.5\n11,383,9.0\n11,384,8.5\n11,385,8.0\n11,386,7.5\n11,387,8.0\n11,388,8.5\n11,389,9.0\n11,390,9.5\n11,391,10.0\n11,392,10.5\n11,393,11.0\n11,394,11.5\n11,395,12.0\n11,396,12.5\n11,397,13.0\n11,398,13.5\n11,399,14.0\n11,400,13.5\n11,401,13.0\n11,402,12.5\n11,403,12.0\n11,404,11.5\n11,405,11.0\n11,406,10.5\n11,407,10.0\n11,408,9.5\n11,409,9.0\n11,410,8.5\n11,411,8.0\n11,412,8.5\n11,413,9.0\n11,414,9.5\n11,415,10.0\n11,416,10.5\n11,417,11.0\n11,418,11.5\n11,419,12.0\n11,420,12.5\n11,421,13.0\n11,422,13.5\n11,423,14.0\n11,424,14.5\n11,425,14.0\n11,426,13.5\n11,427,13.0\n11,428,12.5\n11,429,12.0\n11,430,11.5\n11,431,11.0\n11,432,10.5\n11,433,10.0\n11,434,9.5\n11,435,9.0\n11,436,8.5\n11,437,9.0\n11,438,9.5\n11,439,10.0\n11,440,10.5\n11,441,11.0\n11,442,11.5\n11,443,12.0\n11,444,12.5\n11,445,13.0\n11,446,13.5\n11,447,14.0\n11,448,14.5\n11,449,15.0\n11,450,14.5\n11,451,14.0\n11,452,13.5\n11,453,13.0\n11,454,12.5\n11,455,12.0\n11,456,11.5\n11,457,11.0\n11,458,10.5\n11,459,10.0\n11,460,9.5\n11,461,9.0\n11,462,9.5\n11,463,10.0\n11,464,10.5\n11,465,11.0\n11,466,11.5\n11,467,12.0\n11,468,12.5\n11,469,13.0\n11,470,13.5\n11,471,14.0\n11,472,14.5\n11,473,15.0\n11,474,15.5\n11,475,15.0\n11,476,14.5\n11,477,14.0\n11,478,13.5\n11,479,13.0\n11,480,12.5\n11,481,12.0\n11,482,11.5\n11,483,11.0\n11,484,10.5\n11,485,10.0\n11,486,9.5\n11,487,10.0\n11,488,10.5\n11,489,11.0\n11,490,11.5\n11,491,12.0\n11,492,12.5\n11,493,13.0\n11,494,13.5\n11,495,14.0\n11,496,14.5\n11,497,15.0\n11,498,15.5\n11,499,16.0\n11,500,15.5\n11,501,15.0\n11,502,14.5\n11,503,14.0\n11,504,13.5\n11,505,13.0\n11,506,12.5\n11,507,12.0\n11,508,11.5\n11,509,11.0\n11,510,10.5\n11,511,10.0\n11,512,10.5\n11,513,11.0\n11,514,11.5\n11,515,12.0\n11,516,12.5\n11,517,13.0\n11,518,13.5\n11,519,14.0\n11,520,14.5\n11,521,15.0\n11,522,15.5\n11,523,16.0\n11,524,16.5\n11,525,16.0\n11,526,15.5\n11,527,15.0\n11,528,14.5\n11,529,14.0\n11,530,13.5\n11,531,13.0\n11,532,12.5\n11,533,12.0\n11,534,11.5\n11,535,11.0\n11,536,10.5\n11,537,11.0\n11,538,11.5\n11,539,12.0\n11,540,12.5\n11,541,13.0\n11,542,13.5\n11,543,14.0\n11,544,14.5\n11,545,15.0\n11,546,15.5\n11,547,16.0\n11,548,16.5\n11,549,17.0\n11,550,16.5\n11,551,16.0\n11,552,15.5\n11,553,15.0\n11,554,14.5\n11,555,14.0\n11,556,13.5\n11,557,13.0\n11,558,12.5\n11,559,12.0\n11,560,11.5\n11,561,11.0\n11,562,11.5\n11,563,12.0\n11,564,12.5\n11,565,13.0\n11,566,13.5\n11,567,14.0\n11,568,14.5\n11,569,15.0\n11,570,15.5\n11,571,16.0\n11,572,16.5\n11,573,17.0\n11,574,17.5\n11,575,17.0\n11,576,16.5\n11,577,16.0\n11,578,15.5\n11,579,15.0\n11,580,14.5\n11,581,14.0\n11,582,13.5\n11,583,13.0\n11,584,12.5\n11,585,12.0\n11,586,11.5\n11,587,12.0\n11,588,12.5\n11,589,13.0\n11,590,13.5\n11,591,14.0\n11,592,14.5\n11,593,15.0\n11,594,15.5\n11,595,16.0\n11,596,16.5\n11,597,17.0\n11,598,17.5\n11,599,18.0\n11,600,17.5\n11,601,17.0\n11,602,16.5\n11,603,16.0\n11,604,15.5\n11,605,15.0\n11,606,14.5\n11,607,14.0\n11,608,13.5\n11,609,13.0\n11,610,12.5\n11,611,12.0\n11,612,12.5\n11,613,13.0\n11,614,13.5\n11,615,14.0\n11,616,14.5\n11,617,15.0\n11,618,15.5\n11,619,16.0\n11,620,16.5\n11,621,17.0\n11,622,17.5\n11,623,18.0\n11,624,18.5\n12,0,6.0\n12,1,5.5\n12,2,5.0\n12,3,4.5\n12,4,4.0\n12,5,3.5\n12,6,3.0\n12,7,2.5\n12,8,2.0\n12,9,1.5\n12,10,1.0\n12,11,0.5\n12,12,0\n12,13,0.5\n12,14,1.0\n12,15,1.5\n12,16,2.0\n12,17,2.5\n12,18,3.0\n12,19,3.5\n12,20,4.0\n12,21,4.5\n12,22,5.0\n12,23,5.5\n12,24,6.0\n12,25,6.5\n12,26,6.0\n12,27,5.5\n12,28,5.0\n12,29,4.5\n12,30,4.0\n12,31,3.5\n12,32,3.0\n12,33,2.5\n12,34,2.0\n12,35,1.5\n12,36,1.0\n12,37,0.5\n12,38,1.0\n12,39,1.5\n12,40,2.0\n12,41,2.5\n12,42,3.0\n12,43,3.5\n12,44,4.0\n12,45,4.5\n12,46,5.0\n12,47,5.5\n12,48,6.0\n12,49,6.5\n12,50,7.0\n12,51,6.5\n12,52,6.0\n12,53,5.5\n12,54,5.0\n12,55,4.5\n12,56,4.0\n12,57,3.5\n12,58,3.0\n12,59,2.5\n12,60,2.0\n12,61,1.5\n12,62,1.0\n12,63,1.5\n12,64,2.0\n12,65,2.5\n12,66,3.0\n12,67,3.5\n12,68,4.0\n12,69,4.5\n12,70,5.0\n12,71,5.5\n12,72,6.0\n12,73,6.5\n12,74,7.0\n12,75,7.5\n12,76,7.0\n12,77,6.5\n12,78,6.0\n12,79,5.5\n12,80,5.0\n12,81,4.5\n12,82,4.0\n12,83,3.5\n12,84,3.0\n12,85,2.5\n12,86,2.0\n12,87,1.5\n12,88,2.0\n12,89,2.5\n12,90,3.0\n12,91,3.5\n12,92,4.0\n12,93,4.5\n12,94,5.0\n12,95,5.5\n12,96,6.0\n12,97,6.5\n12,98,7.0\n12,99,7.5\n12,100,8.0\n12,101,7.5\n12,102,7.0\n12,103,6.5\n12,104,6.0\n12,105,5.5\n12,106,5.0\n12,107,4.5\n12,108,4.0\n12,109,3.5\n12,110,3.0\n12,111,2.5\n12,112,2.0\n12,113,2.5\n12,114,3.0\n12,115,3.5\n12,116,4.0\n12,117,4.5\n12,118,5.0\n12,119,5.5\n12,120,6.0\n12,121,6.5\n12,122,7.0\n12,123,7.5\n12,124,8.0\n12,125,8.5\n12,126,8.0\n12,127,7.5\n12,128,7.0\n12,129,6.5\n12,130,6.0\n12,131,5.5\n12,132,5.0\n12,133,4.5\n12,134,4.0\n12,135,3.5\n12,136,3.0\n12,137,2.5\n12,138,3.0\n12,139,3.5\n12,140,4.0\n12,141,4.5\n12,142,5.0\n12,143,5.5\n12,144,6.0\n12,145,6.5\n12,146,7.0\n12,147,7.5\n12,148,8.0\n12,149,8.5\n12,150,9.0\n12,151,8.5\n12,152,8.0\n12,153,7.5\n12,154,7.0\n12,155,6.5\n12,156,6.0\n12,157,5.5\n12,158,5.0\n12,159,4.5\n12,160,4.0\n12,161,3.5\n12,162,3.0\n12,163,3.5\n12,164,4.0\n12,165,4.5\n12,166,5.0\n12,167,5.5\n12,168,6.0\n12,169,6.5\n12,170,7.0\n12,171,7.5\n12,172,8.0\n12,173,8.5\n12,174,9.0\n12,175,9.5\n12,176,9.0\n12,177,8.5\n12,178,8.0\n12,179,7.5\n12,180,7.0\n12,181,6.5\n12,182,6.0\n12,183,5.5\n12,184,5.0\n12,185,4.5\n12,186,4.0\n12,187,3.5\n12,188,4.0\n12,189,4.5\n12,190,5.0\n12,191,5.5\n12,192,6.0\n12,193,6.5\n12,194,7.0\n12,195,7.5\n12,196,8.0\n12,197,8.5\n12,198,9.0\n12,199,9.5\n12,200,10.0\n12,201,9.5\n12,202,9.0\n12,203,8.5\n12,204,8.0\n12,205,7.5\n12,206,7.0\n12,207,6.5\n12,208,6.0\n12,209,5.5\n12,210,5.0\n12,211,4.5\n12,212,4.0\n12,213,4.5\n12,214,5.0\n12,215,5.5\n12,216,6.0\n12,217,6.5\n12,218,7.0\n12,219,7.5\n12,220,8.0\n12,221,8.5\n12,222,9.0\n12,223,9.5\n12,224,10.0\n12,225,10.5\n12,226,10.0\n12,227,9.5\n12,228,9.0\n12,229,8.5\n12,230,8.0\n12,231,7.5\n12,232,7.0\n12,233,6.5\n12,234,6.0\n12,235,5.5\n12,236,5.0\n12,237,4.5\n12,238,5.0\n12,239,5.5\n12,240,6.0\n12,241,6.5\n12,242,7.0\n12,243,7.5\n12,244,8.0\n12,245,8.5\n12,246,9.0\n12,247,9.5\n12,248,10.0\n12,249,10.5\n12,250,11.0\n12,251,10.5\n12,252,10.0\n12,253,9.5\n12,254,9.0\n12,255,8.5\n12,256,8.0\n12,257,7.5\n12,258,7.0\n12,259,6.5\n12,260,6.0\n12,261,5.5\n12,262,5.0\n12,263,5.5\n12,264,6.0\n12,265,6.5\n12,266,7.0\n12,267,7.5\n12,268,8.0\n12,269,8.5\n12,270,9.0\n12,271,9.5\n12,272,10.0\n12,273,10.5\n12,274,11.0\n12,275,11.5\n12,276,11.0\n12,277,10.5\n12,278,10.0\n12,279,9.5\n12,280,9.0\n12,281,8.5\n12,282,8.0\n12,283,7.5\n12,284,7.0\n12,285,6.5\n12,286,6.0\n12,287,5.5\n12,288,6.0\n12,289,6.5\n12,290,7.0\n12,291,7.5\n12,292,8.0\n12,293,8.5\n12,294,9.0\n12,295,9.5\n12,296,10.0\n12,297,10.5\n12,298,11.0\n12,299,11.5\n12,300,12.0\n12,301,11.5\n12,302,11.0\n12,303,10.5\n12,304,10.0\n12,305,9.5\n12,306,9.0\n12,307,8.5\n12,308,8.0\n12,309,7.5\n12,310,7.0\n12,311,6.5\n12,312,6.0\n12,313,6.5\n12,314,7.0\n12,315,7.5\n12,316,8.0\n12,317,8.5\n12,318,9.0\n12,319,9.5\n12,320,10.0\n12,321,10.5\n12,322,11.0\n12,323,11.5\n12,324,12.0\n12,325,12.5\n12,326,12.0\n12,327,11.5\n12,328,11.0\n12,329,10.5\n12,330,10.0\n12,331,9.5\n12,332,9.0\n12,333,8.5\n12,334,8.0\n12,335,7.5\n12,336,7.0\n12,337,6.5\n12,338,7.0\n12,339,7.5\n12,340,8.0\n12,341,8.5\n12,342,9.0\n12,343,9.5\n12,344,10.0\n12,345,10.5\n12,346,11.0\n12,347,11.5\n12,348,12.0\n12,349,12.5\n12,350,13.0\n12,351,12.5\n12,352,12.0\n12,353,11.5\n12,354,11.0\n12,355,10.5\n12,356,10.0\n12,357,9.5\n12,358,9.0\n12,359,8.5\n12,360,8.0\n12,361,7.5\n12,362,7.0\n12,363,7.5\n12,364,8.0\n12,365,8.5\n12,366,9.0\n12,367,9.5\n12,368,10.0\n12,369,10.5\n12,370,11.0\n12,371,11.5\n12,372,12.0\n12,373,12.5\n12,374,13.0\n12,375,13.5\n12,376,13.0\n12,377,12.5\n12,378,12.0\n12,379,11.5\n12,380,11.0\n12,381,10.5\n12,382,10.0\n12,383,9.5\n12,384,9.0\n12,385,8.5\n12,386,8.0\n12,387,7.5\n12,388,8.0\n12,389,8.5\n12,390,9.0\n12,391,9.5\n12,392,10.0\n12,393,10.5\n12,394,11.0\n12,395,11.5\n12,396,12.0\n12,397,12.5\n12,398,13.0\n12,399,13.5\n12,400,14.0\n12,401,13.5\n12,402,13.0\n12,403,12.5\n12,404,12.0\n12,405,11.5\n12,406,11.0\n12,407,10.5\n12,408,10.0\n12,409,9.5\n12,410,9.0\n12,411,8.5\n12,412,8.0\n12,413,8.5\n12,414,9.0\n12,415,9.5\n12,416,10.0\n12,417,10.5\n12,418,11.0\n12,419,11.5\n12,420,12.0\n12,421,12.5\n12,422,13.0\n12,423,13.5\n12,424,14.0\n12,425,14.5\n12,426,14.0\n12,427,13.5\n12,428,13.0\n12,429,12.5\n12,430,12.0\n12,431,11.5\n12,432,11.0\n12,433,10.5\n12,434,10.0\n12,435,9.5\n12,436,9.0\n12,437,8.5\n12,438,9.0\n12,439,9.5\n12,440,10.0\n12,441,10.5\n12,442,11.0\n12,443,11.5\n12,444,12.0\n12,445,12.5\n12,446,13.0\n12,447,13.5\n12,448,14.0\n12,449,14.5\n12,450,15.0\n12,451,14.5\n12,452,14.0\n12,453,13.5\n12,454,13.0\n12,455,12.5\n12,456,12.0\n12,457,11.5\n12,458,11.0\n12,459,10.5\n12,460,10.0\n12,461,9.5\n12,462,9.0\n12,463,9.5\n12,464,10.0\n12,465,10.5\n12,466,11.0\n12,467,11.5\n12,468,12.0\n12,469,12.5\n12,470,13.0\n12,471,13.5\n12,472,14.0\n12,473,14.5\n12,474,15.0\n12,475,15.5\n12,476,15.0\n12,477,14.5\n12,478,14.0\n12,479,13.5\n12,480,13.0\n12,481,12.5\n12,482,12.0\n12,483,11.5\n12,484,11.0\n12,485,10.5\n12,486,10.0\n12,487,9.5\n12,488,10.0\n12,489,10.5\n12,490,11.0\n12,491,11.5\n12,492,12.0\n12,493,12.5\n12,494,13.0\n12,495,13.5\n12,496,14.0\n12,497,14.5\n12,498,15.0\n12,499,15.5\n12,500,16.0\n12,501,15.5\n12,502,15.0\n12,503,14.5\n12,504,14.0\n12,505,13.5\n12,506,13.0\n12,507,12.5\n12,508,12.0\n12,509,11.5\n12,510,11.0\n12,511,10.5\n12,512,10.0\n12,513,10.5\n12,514,11.0\n12,515,11.5\n12,516,12.0\n12,517,12.5\n12,518,13.0\n12,519,13.5\n12,520,14.0\n12,521,14.5\n12,522,15.0\n12,523,15.5\n12,524,16.0\n12,525,16.5\n12,526,16.0\n12,527,15.5\n12,528,15.0\n12,529,14.5\n12,530,14.0\n12,531,13.5\n12,532,13.0\n12,533,12.5\n12,534,12.0\n12,535,11.5\n12,536,11.0\n12,537,10.5\n12,538,11.0\n12,539,11.5\n12,540,12.0\n12,541,12.5\n12,542,13.0\n12,543,13.5\n12,544,14.0\n12,545,14.5\n12,546,15.0\n12,547,15.5\n12,548,16.0\n12,549,16.5\n12,550,17.0\n12,551,16.5\n12,552,16.0\n12,553,15.5\n12,554,15.0\n12,555,14.5\n12,556,14.0\n12,557,13.5\n12,558,13.0\n12,559,12.5\n12,560,12.0\n12,561,11.5\n12,562,11.0\n12,563,11.5\n12,564,12.0\n12,565,12.5\n12,566,13.0\n12,567,13.5\n12,568,14.0\n12,569,14.5\n12,570,15.0\n12,571,15.5\n12,572,16.0\n12,573,16.5\n12,574,17.0\n12,575,17.5\n12,576,17.0\n12,577,16.5\n12,578,16.0\n12,579,15.5\n12,580,15.0\n12,581,14.5\n12,582,14.0\n12,583,13.5\n12,584,13.0\n12,585,12.5\n12,586,12.0\n12,587,11.5\n12,588,12.0\n12,589,12.5\n12,590,13.0\n12,591,13.5\n12,592,14.0\n12,593,14.5\n12,594,15.0\n12,595,15.5\n12,596,16.0\n12,597,16.5\n12,598,17.0\n12,599,17.5\n12,600,18.0\n12,601,17.5\n12,602,17.0\n12,603,16.5\n12,604,16.0\n12,605,15.5\n12,606,15.0\n12,607,14.5\n12,608,14.0\n12,609,13.5\n12,610,13.0\n12,611,12.5\n12,612,12.0\n12,613,12.5\n12,614,13.0\n12,615,13.5\n12,616,14.0\n12,617,14.5\n12,618,15.0\n12,619,15.5\n12,620,16.0\n12,621,16.5\n12,622,17.0\n12,623,17.5\n12,624,18.0\n13,0,6.5\n13,1,6.0\n13,2,5.5\n13,3,5.0\n13,4,4.5\n13,5,4.0\n13,6,3.5\n13,7,3.0\n13,8,2.5\n13,9,2.0\n13,10,1.5\n13,11,1.0\n13,12,0.5\n13,13,0\n13,14,0.5\n13,15,1.0\n13,16,1.5\n13,17,2.0\n13,18,2.5\n13,19,3.0\n13,20,3.5\n13,21,4.0\n13,22,4.5\n13,23,5.0\n13,24,5.5\n13,25,7.0\n13,26,6.5\n13,27,6.0\n13,28,5.5\n13,29,5.0\n13,30,4.5\n13,31,4.0\n13,32,3.5\n13,33,3.0\n13,34,2.5\n13,35,2.0\n13,36,1.5\n13,37,1.0\n13,38,0.5\n13,39,1.0\n13,40,1.5\n13,41,2.0\n13,42,2.5\n13,43,3.0\n13,44,3.5\n13,45,4.0\n13,46,4.5\n13,47,5.0\n13,48,5.5\n13,49,6.0\n13,50,7.5\n13,51,7.0\n13,52,6.5\n13,53,6.0\n13,54,5.5\n13,55,5.0\n13,56,4.5\n13,57,4.0\n13,58,3.5\n13,59,3.0\n13,60,2.5\n13,61,2.0\n13,62,1.5\n13,63,1.0\n13,64,1.5\n13,65,2.0\n13,66,2.5\n13,67,3.0\n13,68,3.5\n13,69,4.0\n13,70,4.5\n13,71,5.0\n13,72,5.5\n13,73,6.0\n13,74,6.5\n13,75,8.0\n13,76,7.5\n13,77,7.0\n13,78,6.5\n13,79,6.0\n13,80,5.5\n13,81,5.0\n13,82,4.5\n13,83,4.0\n13,84,3.5\n13,85,3.0\n13,86,2.5\n13,87,2.0\n13,88,1.5\n13,89,2.0\n13,90,2.5\n13,91,3.0\n13,92,3.5\n13,93,4.0\n13,94,4.5\n13,95,5.0\n13,96,5.5\n13,97,6.0\n13,98,6.5\n13,99,7.0\n13,100,8.5\n13,101,8.0\n13,102,7.5\n13,103,7.0\n13,104,6.5\n13,105,6.0\n13,106,5.5\n13,107,5.0\n13,108,4.5\n13,109,4.0\n13,110,3.5\n13,111,3.0\n13,112,2.5\n13,113,2.0\n13,114,2.5\n13,115,3.0\n13,116,3.5\n13,117,4.0\n13,118,4.5\n13,119,5.0\n13,120,5.5\n13,121,6.0\n13,122,6.5\n13,123,7.0\n13,124,7.5\n13,125,9.0\n13,126,8.5\n13,127,8.0\n13,128,7.5\n13,129,7.0\n13,130,6.5\n13,131,6.0\n13,132,5.5\n13,133,5.0\n13,134,4.5\n13,135,4.0\n13,136,3.5\n13,137,3.0\n13,138,2.5\n13,139,3.0\n13,140,3.5\n13,141,4.0\n13,142,4.5\n13,143,5.0\n13,144,5.5\n13,145,6.0\n13,146,6.5\n13,147,7.0\n13,148,7.5\n13,149,8.0\n13,150,9.5\n13,151,9.0\n13,152,8.5\n13,153,8.0\n13,154,7.5\n13,155,7.0\n13,156,6.5\n13,157,6.0\n13,158,5.5\n13,159,5.0\n13,160,4.5\n13,161,4.0\n13,162,3.5\n13,163,3.0\n13,164,3.5\n13,165,4.0\n13,166,4.5\n13,167,5.0\n13,168,5.5\n13,169,6.0\n13,170,6.5\n13,171,7.0\n13,172,7.5\n13,173,8.0\n13,174,8.5\n13,175,10.0\n13,176,9.5\n13,177,9.0\n13,178,8.5\n13,179,8.0\n13,180,7.5\n13,181,7.0\n13,182,6.5\n13,183,6.0\n13,184,5.5\n13,185,5.0\n13,186,4.5\n13,187,4.0\n13,188,3.5\n13,189,4.0\n13,190,4.5\n13,191,5.0\n13,192,5.5\n13,193,6.0\n13,194,6.5\n13,195,7.0\n13,196,7.5\n13,197,8.0\n13,198,8.5\n13,199,9.0\n13,200,10.5\n13,201,10.0\n13,202,9.5\n13,203,9.0\n13,204,8.5\n13,205,8.0\n13,206,7.5\n13,207,7.0\n13,208,6.5\n13,209,6.0\n13,210,5.5\n13,211,5.0\n13,212,4.5\n13,213,4.0\n13,214,4.5\n13,215,5.0\n13,216,5.5\n13,217,6.0\n13,218,6.5\n13,219,7.0\n13,220,7.5\n13,221,8.0\n13,222,8.5\n13,223,9.0\n13,224,9.5\n13,225,11.0\n13,226,10.5\n13,227,10.0\n13,228,9.5\n13,229,9.0\n13,230,8.5\n13,231,8.0\n13,232,7.5\n13,233,7.0\n13,234,6.5\n13,235,6.0\n13,236,5.5\n13,237,5.0\n13,238,4.5\n13,239,5.0\n13,240,5.5\n13,241,6.0\n13,242,6.5\n13,243,7.0\n13,244,7.5\n13,245,8.0\n13,246,8.5\n13,247,9.0\n13,248,9.5\n13,249,10.0\n13,250,11.5\n13,251,11.0\n13,252,10.5\n13,253,10.0\n13,254,9.5\n13,255,9.0\n13,256,8.5\n13,257,8.0\n13,258,7.5\n13,259,7.0\n13,260,6.5\n13,261,6.0\n13,262,5.5\n13,263,5.0\n13,264,5.5\n13,265,6.0\n13,266,6.5\n13,267,7.0\n13,268,7.5\n13,269,8.0\n13,270,8.5\n13,271,9.0\n13,272,9.5\n13,273,10.0\n13,274,10.5\n13,275,12.0\n13,276,11.5\n13,277,11.0\n13,278,10.5\n13,279,10.0\n13,280,9.5\n13,281,9.0\n13,282,8.5\n13,283,8.0\n13,284,7.5\n13,285,7.0\n13,286,6.5\n13,287,6.0\n13,288,5.5\n13,289,6.0\n13,290,6.5\n13,291,7.0\n13,292,7.5\n13,293,8.0\n13,294,8.5\n13,295,9.0\n13,296,9.5\n13,297,10.0\n13,298,10.5\n13,299,11.0\n13,300,12.5\n13,301,12.0\n13,302,11.5\n13,303,11.0\n13,304,10.5\n13,305,10.0\n13,306,9.5\n13,307,9.0\n13,308,8.5\n13,309,8.0\n13,310,7.5\n13,311,7.0\n13,312,6.5\n13,313,6.0\n13,314,6.5\n13,315,7.0\n13,316,7.5\n13,317,8.0\n13,318,8.5\n13,319,9.0\n13,320,9.5\n13,321,10.0\n13,322,10.5\n13,323,11.0\n13,324,11.5\n13,325,13.0\n13,326,12.5\n13,327,12.0\n13,328,11.5\n13,329,11.0\n13,330,10.5\n13,331,10.0\n13,332,9.5\n13,333,9.0\n13,334,8.5\n13,335,8.0\n13,336,7.5\n13,337,7.0\n13,338,6.5\n13,339,7.0\n13,340,7.5\n13,341,8.0\n13,342,8.5\n13,343,9.0\n13,344,9.5\n13,345,10.0\n13,346,10.5\n13,347,11.0\n13,348,11.5\n13,349,12.0\n13,350,13.5\n13,351,13.0\n13,352,12.5\n13,353,12.0\n13,354,11.5\n13,355,11.0\n13,356,10.5\n13,357,10.0\n13,358,9.5\n13,359,9.0\n13,360,8.5\n13,361,8.0\n13,362,7.5\n13,363,7.0\n13,364,7.5\n13,365,8.0\n13,366,8.5\n13,367,9.0\n13,368,9.5\n13,369,10.0\n13,370,10.5\n13,371,11.0\n13,372,11.5\n13,373,12.0\n13,374,12.5\n13,375,14.0\n13,376,13.5\n13,377,13.0\n13,378,12.5\n13,379,12.0\n13,380,11.5\n13,381,11.0\n13,382,10.5\n13,383,10.0\n13,384,9.5\n13,385,9.0\n13,386,8.5\n13,387,8.0\n13,388,7.5\n13,389,8.0\n13,390,8.5\n13,391,9.0\n13,392,9.5\n13,393,10.0\n13,394,10.5\n13,395,11.0\n13,396,11.5\n13,397,12.0\n13,398,12.5\n13,399,13.0\n13,400,14.5\n13,401,14.0\n13,402,13.5\n13,403,13.0\n13,404,12.5\n13,405,12.0\n13,406,11.5\n13,407,11.0\n13,408,10.5\n13,409,10.0\n13,410,9.5\n13,411,9.0\n13,412,8.5\n13,413,8.0\n13,414,8.5\n13,415,9.0\n13,416,9.5\n13,417,10.0\n13,418,10.5\n13,419,11.0\n13,420,11.5\n13,421,12.0\n13,422,12.5\n13,423,13.0\n13,424,13.5\n13,425,15.0\n13,426,14.5\n13,427,14.0\n13,428,13.5\n13,429,13.0\n13,430,12.5\n13,431,12.0\n13,432,11.5\n13,433,11.0\n13,434,10.5\n13,435,10.0\n13,436,9.5\n13,437,9.0\n13,438,8.5\n13,439,9.0\n13,440,9.5\n13,441,10.0\n13,442,10.5\n13,443,11.0\n13,444,11.5\n13,445,12.0\n13,446,12.5\n13,447,13.0\n13,448,13.5\n13,449,14.0\n13,450,15.5\n13,451,15.0\n13,452,14.5\n13,453,14.0\n13,454,13.5\n13,455,13.0\n13,456,12.5\n13,457,12.0\n13,458,11.5\n13,459,11.0\n13,460,10.5\n13,461,10.0\n13,462,9.5\n13,463,9.0\n13,464,9.5\n13,465,10.0\n13,466,10.5\n13,467,11.0\n13,468,11.5\n13,469,12.0\n13,470,12.5\n13,471,13.0\n13,472,13.5\n13,473,14.0\n13,474,14.5\n13,475,16.0\n13,476,15.5\n13,477,15.0\n13,478,14.5\n13,479,14.0\n13,480,13.5\n13,481,13.0\n13,482,12.5\n13,483,12.0\n13,484,11.5\n13,485,11.0\n13,486,10.5\n13,487,10.0\n13,488,9.5\n13,489,10.0\n13,490,10.5\n13,491,11.0\n13,492,11.5\n13,493,12.0\n13,494,12.5\n13,495,13.0\n13,496,13.5\n13,497,14.0\n13,498,14.5\n13,499,15.0\n13,500,16.5\n13,501,16.0\n13,502,15.5\n13,503,15.0\n13,504,14.5\n13,505,14.0\n13,506,13.5\n13,507,13.0\n13,508,12.5\n13,509,12.0\n13,510,11.5\n13,511,11.0\n13,512,10.5\n13,513,10.0\n13,514,10.5\n13,515,11.0\n13,516,11.5\n13,517,12.0\n13,518,12.5\n13,519,13.0\n13,520,13.5\n13,521,14.0\n13,522,14.5\n13,523,15.0\n13,524,15.5\n13,525,17.0\n13,526,16.5\n13,527,16.0\n13,528,15.5\n13,529,15.0\n13,530,14.5\n13,531,14.0\n13,532,13.5\n13,533,13.0\n13,534,12.5\n13,535,12.0\n13,536,11.5\n13,537,11.0\n13,538,10.5\n13,539,11.0\n13,540,11.5\n13,541,12.0\n13,542,12.5\n13,543,13.0\n13,544,13.5\n13,545,14.0\n13,546,14.5\n13,547,15.0\n13,548,15.5\n13,549,16.0\n13,550,17.5\n13,551,17.0\n13,552,16.5\n13,553,16.0\n13,554,15.5\n13,555,15.0\n13,556,14.5\n13,557,14.0\n13,558,13.5\n13,559,13.0\n13,560,12.5\n13,561,12.0\n13,562,11.5\n13,563,11.0\n13,564,11.5\n13,565,12.0\n13,566,12.5\n13,567,13.0\n13,568,13.5\n13,569,14.0\n13,570,14.5\n13,571,15.0\n13,572,15.5\n13,573,16.0\n13,574,16.5\n13,575,18.0\n13,576,17.5\n13,577,17.0\n13,578,16.5\n13,579,16.0\n13,580,15.5\n13,581,15.0\n13,582,14.5\n13,583,14.0\n13,584,13.5\n13,585,13.0\n13,586,12.5\n13,587,12.0\n13,588,11.5\n13,589,12.0\n13,590,12.5\n13,591,13.0\n13,592,13.5\n13,593,14.0\n13,594,14.5\n13,595,15.0\n13,596,15.5\n13,597,16.0\n13,598,16.5\n13,599,17.0\n13,600,18.5\n13,601,18.0\n13,602,17.5\n13,603,17.0\n13,604,16.5\n13,605,16.0\n13,606,15.5\n13,607,15.0\n13,608,14.5\n13,609,14.0\n13,610,13.5\n13,611,13.0\n13,612,12.5\n13,613,12.0\n13,614,12.5\n13,615,13.0\n13,616,13.5\n13,617,14.0\n13,618,14.5\n13,619,15.0\n13,620,15.5\n13,621,16.0\n13,622,16.5\n13,623,17.0\n13,624,17.5\n14,0,7.0\n14,1,6.5\n14,2,6.0\n14,3,5.5\n14,4,5.0\n14,5,4.5\n14,6,4.0\n14,7,3.5\n14,8,3.0\n14,9,2.5\n14,10,2.0\n14,11,1.5\n14,12,1.0\n14,13,0.5\n14,14,0\n14,15,0.5\n14,16,1.0\n14,17,1.5\n14,18,2.0\n14,19,2.5\n14,20,3.0\n14,21,3.5\n14,22,4.0\n14,23,4.5\n14,24,5.0\n14,25,7.5\n14,26,7.0\n14,27,6.5\n14,28,6.0\n14,29,5.5\n14,30,5.0\n14,31,4.5\n14,32,4.0\n14,33,3.5\n14,34,3.0\n14,35,2.5\n14,36,2.0\n14,37,1.5\n14,38,1.0\n14,39,0.5\n14,40,1.0\n14,41,1.5\n14,42,2.0\n14,43,2.5\n14,44,3.0\n14,45,3.5\n14,46,4.0\n14,47,4.5\n14,48,5.0\n14,49,5.5\n14,50,8.0\n14,51,7.5\n14,52,7.0\n14,53,6.5\n14,54,6.0\n14,55,5.5\n14,56,5.0\n14,57,4.5\n14,58,4.0\n14,59,3.5\n14,60,3.0\n14,61,2.5\n14,62,2.0\n14,63,1.5\n14,64,1.0\n14,65,1.5\n14,66,2.0\n14,67,2.5\n14,68,3.0\n14,69,3.5\n14,70,4.0\n14,71,4.5\n14,72,5.0\n14,73,5.5\n14,74,6.0\n14,75,8.5\n14,76,8.0\n14,77,7.5\n14,78,7.0\n14,79,6.5\n14,80,6.0\n14,81,5.5\n14,82,5.0\n14,83,4.5\n14,84,4.0\n14,85,3.5\n14,86,3.0\n14,87,2.5\n14,88,2.0\n14,89,1.5\n14,90,2.0\n14,91,2.5\n14,92,3.0\n14,93,3.5\n14,94,4.0\n14,95,4.5\n14,96,5.0\n14,97,5.5\n14,98,6.0\n14,99,6.5\n14,100,9.0\n14,101,8.5\n14,102,8.0\n14,103,7.5\n14,104,7.0\n14,105,6.5\n14,106,6.0\n14,107,5.5\n14,108,5.0\n14,109,4.5\n14,110,4.0\n14,111,3.5\n14,112,3.0\n14,113,2.5\n14,114,2.0\n14,115,2.5\n14,116,3.0\n14,117,3.5\n14,118,4.0\n14,119,4.5\n14,120,5.0\n14,121,5.5\n14,122,6.0\n14,123,6.5\n14,124,7.0\n14,125,9.5\n14,126,9.0\n14,127,8.5\n14,128,8.0\n14,129,7.5\n14,130,7.0\n14,131,6.5\n14,132,6.0\n14,133,5.5\n14,134,5.0\n14,135,4.5\n14,136,4.0\n14,137,3.5\n14,138,3.0\n14,139,2.5\n14,140,3.0\n14,141,3.5\n14,142,4.0\n14,143,4.5\n14,144,5.0\n14,145,5.5\n14,146,6.0\n14,147,6.5\n14,148,7.0\n14,149,7.5\n14,150,10.0\n14,151,9.5\n14,152,9.0\n14,153,8.5\n14,154,8.0\n14,155,7.5\n14,156,7.0\n14,157,6.5\n14,158,6.0\n14,159,5.5\n14,160,5.0\n14,161,4.5\n14,162,4.0\n14,163,3.5\n14,164,3.0\n14,165,3.5\n14,166,4.0\n14,167,4.5\n14,168,5.0\n14,169,5.5\n14,170,6.0\n14,171,6.5\n14,172,7.0\n14,173,7.5\n14,174,8.0\n14,175,10.5\n14,176,10.0\n14,177,9.5\n14,178,9.0\n14,179,8.5\n14,180,8.0\n14,181,7.5\n14,182,7.0\n14,183,6.5\n14,184,6.0\n14,185,5.5\n14,186,5.0\n14,187,4.5\n14,188,4.0\n14,189,3.5\n14,190,4.0\n14,191,4.5\n14,192,5.0\n14,193,5.5\n14,194,6.0\n14,195,6.5\n14,196,7.0\n14,197,7.5\n14,198,8.0\n14,199,8.5\n14,200,11.0\n14,201,10.5\n14,202,10.0\n14,203,9.5\n14,204,9.0\n14,205,8.5\n14,206,8.0\n14,207,7.5\n14,208,7.0\n14,209,6.5\n14,210,6.0\n14,211,5.5\n14,212,5.0\n14,213,4.5\n14,214,4.0\n14,215,4.5\n14,216,5.0\n14,217,5.5\n14,218,6.0\n14,219,6.5\n14,220,7.0\n14,221,7.5\n14,222,8.0\n14,223,8.5\n14,224,9.0\n14,225,11.5\n14,226,11.0\n14,227,10.5\n14,228,10.0\n14,229,9.5\n14,230,9.0\n14,231,8.5\n14,232,8.0\n14,233,7.5\n14,234,7.0\n14,235,6.5\n14,236,6.0\n14,237,5.5\n14,238,5.0\n14,239,4.5\n14,240,5.0\n14,241,5.5\n14,242,6.0\n14,243,6.5\n14,244,7.0\n14,245,7.5\n14,246,8.0\n14,247,8.5\n14,248,9.0\n14,249,9.5\n14,250,12.0\n14,251,11.5\n14,252,11.0\n14,253,10.5\n14,254,10.0\n14,255,9.5\n14,256,9.0\n14,257,8.5\n14,258,8.0\n14,259,7.5\n14,260,7.0\n14,261,6.5\n14,262,6.0\n14,263,5.5\n14,264,5.0\n14,265,5.5\n14,266,6.0\n14,267,6.5\n14,268,7.0\n14,269,7.5\n14,270,8.0\n14,271,8.5\n14,272,9.0\n14,273,9.5\n14,274,10.0\n14,275,12.5\n14,276,12.0\n14,277,11.5\n14,278,11.0\n14,279,10.5\n14,280,10.0\n14,281,9.5\n14,282,9.0\n14,283,8.5\n14,284,8.0\n14,285,7.5\n14,286,7.0\n14,287,6.5\n14,288,6.0\n14,289,5.5\n14,290,6.0\n14,291,6.5\n14,292,7.0\n14,293,7.5\n14,294,8.0\n14,295,8.5\n14,296,9.0\n14,297,9.5\n14,298,10.0\n14,299,10.5\n14,300,13.0\n14,301,12.5\n14,302,12.0\n14,303,11.5\n14,304,11.0\n14,305,10.5\n14,306,10.0\n14,307,9.5\n14,308,9.0\n14,309,8.5\n14,310,8.0\n14,311,7.5\n14,312,7.0\n14,313,6.5\n14,314,6.0\n14,315,6.5\n14,316,7.0\n14,317,7.5\n14,318,8.0\n14,319,8.5\n14,320,9.0\n14,321,9.5\n14,322,10.0\n14,323,10.5\n14,324,11.0\n14,325,13.5\n14,326,13.0\n14,327,12.5\n14,328,12.0\n14,329,11.5\n14,330,11.0\n14,331,10.5\n14,332,10.0\n14,333,9.5\n14,334,9.0\n14,335,8.5\n14,336,8.0\n14,337,7.5\n14,338,7.0\n14,339,6.5\n14,340,7.0\n14,341,7.5\n14,342,8.0\n14,343,8.5\n14,344,9.0\n14,345,9.5\n14,346,10.0\n14,347,10.5\n14,348,11.0\n14,349,11.5\n14,350,14.0\n14,351,13.5\n14,352,13.0\n14,353,12.5\n14,354,12.0\n14,355,11.5\n14,356,11.0\n14,357,10.5\n14,358,10.0\n14,359,9.5\n14,360,9.0\n14,361,8.5\n14,362,8.0\n14,363,7.5\n14,364,7.0\n14,365,7.5\n14,366,8.0\n14,367,8.5\n14,368,9.0\n14,369,9.5\n14,370,10.0\n14,371,10.5\n14,372,11.0\n14,373,11.5\n14,374,12.0\n14,375,14.5\n14,376,14.0\n14,377,13.5\n14,378,13.0\n14,379,12.5\n14,380,12.0\n14,381,11.5\n14,382,11.0\n14,383,10.5\n14,384,10.0\n14,385,9.5\n14,386,9.0\n14,387,8.5\n14,388,8.0\n14,389,7.5\n14,390,8.0\n14,391,8.5\n14,392,9.0\n14,393,9.5\n14,394,10.0\n14,395,10.5\n14,396,11.0\n14,397,11.5\n14,398,12.0\n14,399,12.5\n14,400,15.0\n14,401,14.5\n14,402,14.0\n14,403,13.5\n14,404,13.0\n14,405,12.5\n14,406,12.0\n14,407,11.5\n14,408,11.0\n14,409,10.5\n14,410,10.0\n14,411,9.5\n14,412,9.0\n14,413,8.5\n14,414,8.0\n14,415,8.5\n14,416,9.0\n14,417,9.5\n14,418,10.0\n14,419,10.5\n14,420,11.0\n14,421,11.5\n14,422,12.0\n14,423,12.5\n14,424,13.0\n14,425,15.5\n14,426,15.0\n14,427,14.5\n14,428,14.0\n14,429,13.5\n14,430,13.0\n14,431,12.5\n14,432,12.0\n14,433,11.5\n14,434,11.0\n14,435,10.5\n14,436,10.0\n14,437,9.5\n14,438,9.0\n14,439,8.5\n14,440,9.0\n14,441,9.5\n14,442,10.0\n14,443,10.5\n14,444,11.0\n14,445,11.5\n14,446,12.0\n14,447,12.5\n14,448,13.0\n14,449,13.5\n14,450,16.0\n14,451,15.5\n14,452,15.0\n14,453,14.5\n14,454,14.0\n14,455,13.5\n14,456,13.0\n14,457,12.5\n14,458,12.0\n14,459,11.5\n14,460,11.0\n14,461,10.5\n14,462,10.0\n14,463,9.5\n14,464,9.0\n14,465,9.5\n14,466,10.0\n14,467,10.5\n14,468,11.0\n14,469,11.5\n14,470,12.0\n14,471,12.5\n14,472,13.0\n14,473,13.5\n14,474,14.0\n14,475,16.5\n14,476,16.0\n14,477,15.5\n14,478,15.0\n14,479,14.5\n14,480,14.0\n14,481,13.5\n14,482,13.0\n14,483,12.5\n14,484,12.0\n14,485,11.5\n14,486,11.0\n14,487,10.5\n14,488,10.0\n14,489,9.5\n14,490,10.0\n14,491,10.5\n14,492,11.0\n14,493,11.5\n14,494,12.0\n14,495,12.5\n14,496,13.0\n14,497,13.5\n14,498,14.0\n14,499,14.5\n14,500,17.0\n14,501,16.5\n14,502,16.0\n14,503,15.5\n14,504,15.0\n14,505,14.5\n14,506,14.0\n14,507,13.5\n14,508,13.0\n14,509,12.5\n14,510,12.0\n14,511,11.5\n14,512,11.0\n14,513,10.5\n14,514,10.0\n14,515,10.5\n14,516,11.0\n14,517,11.5\n14,518,12.0\n14,519,12.5\n14,520,13.0\n14,521,13.5\n14,522,14.0\n14,523,14.5\n14,524,15.0\n14,525,17.5\n14,526,17.0\n14,527,16.5\n14,528,16.0\n14,529,15.5\n14,530,15.0\n14,531,14.5\n14,532,14.0\n14,533,13.5\n14,534,13.0\n14,535,12.5\n14,536,12.0\n14,537,11.5\n14,538,11.0\n14,539,10.5\n14,540,11.0\n14,541,11.5\n14,542,12.0\n14,543,12.5\n14,544,13.0\n14,545,13.5\n14,546,14.0\n14,547,14.5\n14,548,15.0\n14,549,15.5\n14,550,18.0\n14,551,17.5\n14,552,17.0\n14,553,16.5\n14,554,16.0\n14,555,15.5\n14,556,15.0\n14,557,14.5\n14,558,14.0\n14,559,13.5\n14,560,13.0\n14,561,12.5\n14,562,12.0\n14,563,11.5\n14,564,11.0\n14,565,11.5\n14,566,12.0\n14,567,12.5\n14,568,13.0\n14,569,13.5\n14,570,14.0\n14,571,14.5\n14,572,15.0\n14,573,15.5\n14,574,16.0\n14,575,18.5\n14,576,18.0\n14,577,17.5\n14,578,17.0\n14,579,16.5\n14,580,16.0\n14,581,15.5\n14,582,15.0\n14,583,14.5\n14,584,14.0\n14,585,13.5\n14,586,13.0\n14,587,12.5\n14,588,12.0\n14,589,11.5\n14,590,12.0\n14,591,12.5\n14,592,13.0\n14,593,13.5\n14,594,14.0\n14,595,14.5\n14,596,15.0\n14,597,15.5\n14,598,16.0\n14,599,16.5\n14,600,19.0\n14,601,18.5\n14,602,18.0\n14,603,17.5\n14,604,17.0\n14,605,16.5\n14,606,16.0\n14,607,15.5\n14,608,15.0\n14,609,14.5\n14,610,14.0\n14,611,13.5\n14,612,13.0\n14,613,12.5\n14,614,12.0\n14,615,12.5\n14,616,13.0\n14,617,13.5\n14,618,14.0\n14,619,14.5\n14,620,15.0\n14,621,15.5\n14,622,16.0\n14,623,16.5\n14,624,17.0\n15,0,7.5\n15,1,7.0\n15,2,6.5\n15,3,6.0\n15,4,5.5\n15,5,5.0\n15,6,4.5\n15,7,4.0\n15,8,3.5\n15,9,3.0\n15,10,2.5\n15,11,2.0\n15,12,1.5\n15,13,1.0\n15,14,0.5\n15,15,0\n15,16,0.5\n15,17,1.0\n15,18,1.5\n15,19,2.0\n15,20,2.5\n15,21,3.0\n15,22,3.5\n15,23,4.0\n15,24,4.5\n15,25,8.0\n15,26,7.5\n15,27,7.0\n15,28,6.5\n15,29,6.0\n15,30,5.5\n15,31,5.0\n15,32,4.5\n15,33,4.0\n15,34,3.5\n15,35,3.0\n15,36,2.5\n15,37,2.0\n15,38,1.5\n15,39,1.0\n15,40,0.5\n15,41,1.0\n15,42,1.5\n15,43,2.0\n15,44,2.5\n15,45,3.0\n15,46,3.5\n15,47,4.0\n15,48,4.5\n15,49,5.0\n15,50,8.5\n15,51,8.0\n15,52,7.5\n15,53,7.0\n15,54,6.5\n15,55,6.0\n15,56,5.5\n15,57,5.0\n15,58,4.5\n15,59,4.0\n15,60,3.5\n15,61,3.0\n15,62,2.5\n15,63,2.0\n15,64,1.5\n15,65,1.0\n15,66,1.5\n15,67,2.0\n15,68,2.5\n15,69,3.0\n15,70,3.5\n15,71,4.0\n15,72,4.5\n15,73,5.0\n15,74,5.5\n15,75,9.0\n15,76,8.5\n15,77,8.0\n15,78,7.5\n15,79,7.0\n15,80,6.5\n15,81,6.0\n15,82,5.5\n15,83,5.0\n15,84,4.5\n15,85,4.0\n15,86,3.5\n15,87,3.0\n15,88,2.5\n15,89,2.0\n15,90,1.5\n15,91,2.0\n15,92,2.5\n15,93,3.0\n15,94,3.5\n15,95,4.0\n15,96,4.5\n15,97,5.0\n15,98,5.5\n15,99,6.0\n15,100,9.5\n15,101,9.0\n15,102,8.5\n15,103,8.0\n15,104,7.5\n15,105,7.0\n15,106,6.5\n15,107,6.0\n15,108,5.5\n15,109,5.0\n15,110,4.5\n15,111,4.0\n15,112,3.5\n15,113,3.0\n15,114,2.5\n15,115,2.0\n15,116,2.5\n15,117,3.0\n15,118,3.5\n15,119,4.0\n15,120,4.5\n15,121,5.0\n15,122,5.5\n15,123,6.0\n15,124,6.5\n15,125,10.0\n15,126,9.5\n15,127,9.0\n15,128,8.5\n15,129,8.0\n15,130,7.5\n15,131,7.0\n15,132,6.5\n15,133,6.0\n15,134,5.5\n15,135,5.0\n15,136,4.5\n15,137,4.0\n15,138,3.5\n15,139,3.0\n15,140,2.5\n15,141,3.0\n15,142,3.5\n15,143,4.0\n15,144,4.5\n15,145,5.0\n15,146,5.5\n15,147,6.0\n15,148,6.5\n15,149,7.0\n15,150,10.5\n15,151,10.0\n15,152,9.5\n15,153,9.0\n15,154,8.5\n15,155,8.0\n15,156,7.5\n15,157,7.0\n15,158,6.5\n15,159,6.0\n15,160,5.5\n15,161,5.0\n15,162,4.5\n15,163,4.0\n15,164,3.5\n15,165,3.0\n15,166,3.5\n15,167,4.0\n15,168,4.5\n15,169,5.0\n15,170,5.5\n15,171,6.0\n15,172,6.5\n15,173,7.0\n15,174,7.5\n15,175,11.0\n15,176,10.5\n15,177,10.0\n15,178,9.5\n15,179,9.0\n15,180,8.5\n15,181,8.0\n15,182,7.5\n15,183,7.0\n15,184,6.5\n15,185,6.0\n15,186,5.5\n15,187,5.0\n15,188,4.5\n15,189,4.0\n15,190,3.5\n15,191,4.0\n15,192,4.5\n15,193,5.0\n15,194,5.5\n15,195,6.0\n15,196,6.5\n15,197,7.0\n15,198,7.5\n15,199,8.0\n15,200,11.5\n15,201,11.0\n15,202,10.5\n15,203,10.0\n15,204,9.5\n15,205,9.0\n15,206,8.5\n15,207,8.0\n15,208,7.5\n15,209,7.0\n15,210,6.5\n15,211,6.0\n15,212,5.5\n15,213,5.0\n15,214,4.5\n15,215,4.0\n15,216,4.5\n15,217,5.0\n15,218,5.5\n15,219,6.0\n15,220,6.5\n15,221,7.0\n15,222,7.5\n15,223,8.0\n15,224,8.5\n15,225,12.0\n15,226,11.5\n15,227,11.0\n15,228,10.5\n15,229,10.0\n15,230,9.5\n15,231,9.0\n15,232,8.5\n15,233,8.0\n15,234,7.5\n15,235,7.0\n15,236,6.5\n15,237,6.0\n15,238,5.5\n15,239,5.0\n15,240,4.5\n15,241,5.0\n15,242,5.5\n15,243,6.0\n15,244,6.5\n15,245,7.0\n15,246,7.5\n15,247,8.0\n15,248,8.5\n15,249,9.0\n15,250,12.5\n15,251,12.0\n15,252,11.5\n15,253,11.0\n15,254,10.5\n15,255,10.0\n15,256,9.5\n15,257,9.0\n15,258,8.5\n15,259,8.0\n15,260,7.5\n15,261,7.0\n15,262,6.5\n15,263,6.0\n15,264,5.5\n15,265,5.0\n15,266,5.5\n15,267,6.0\n15,268,6.5\n15,269,7.0\n15,270,7.5\n15,271,8.0\n15,272,8.5\n15,273,9.0\n15,274,9.5\n15,275,13.0\n15,276,12.5\n15,277,12.0\n15,278,11.5\n15,279,11.0\n15,280,10.5\n15,281,10.0\n15,282,9.5\n15,283,9.0\n15,284,8.5\n15,285,8.0\n15,286,7.5\n15,287,7.0\n15,288,6.5\n15,289,6.0\n15,290,5.5\n15,291,6.0\n15,292,6.5\n15,293,7.0\n15,294,7.5\n15,295,8.0\n15,296,8.5\n15,297,9.0\n15,298,9.5\n15,299,10.0\n15,300,13.5\n15,301,13.0\n15,302,12.5\n15,303,12.0\n15,304,11.5\n15,305,11.0\n15,306,10.5\n15,307,10.0\n15,308,9.5\n15,309,9.0\n15,310,8.5\n15,311,8.0\n15,312,7.5\n15,313,7.0\n15,314,6.5\n15,315,6.0\n15,316,6.5\n15,317,7.0\n15,318,7.5\n15,319,8.0\n15,320,8.5\n15,321,9.0\n15,322,9.5\n15,323,10.0\n15,324,10.5\n15,325,14.0\n15,326,13.5\n15,327,13.0\n15,328,12.5\n15,329,12.0\n15,330,11.5\n15,331,11.0\n15,332,10.5\n15,333,10.0\n15,334,9.5\n15,335,9.0\n15,336,8.5\n15,337,8.0\n15,338,7.5\n15,339,7.0\n15,340,6.5\n15,341,7.0\n15,342,7.5\n15,343,8.0\n15,344,8.5\n15,345,9.0\n15,346,9.5\n15,347,10.0\n15,348,10.5\n15,349,11.0\n15,350,14.5\n15,351,14.0\n15,352,13.5\n15,353,13.0\n15,354,12.5\n15,355,12.0\n15,356,11.5\n15,357,11.0\n15,358,10.5\n15,359,10.0\n15,360,9.5\n15,361,9.0\n15,362,8.5\n15,363,8.0\n15,364,7.5\n15,365,7.0\n15,366,7.5\n15,367,8.0\n15,368,8.5\n15,369,9.0\n15,370,9.5\n15,371,10.0\n15,372,10.5\n15,373,11.0\n15,374,11.5\n15,375,15.0\n15,376,14.5\n15,377,14.0\n15,378,13.5\n15,379,13.0\n15,380,12.5\n15,381,12.0\n15,382,11.5\n15,383,11.0\n15,384,10.5\n15,385,10.0\n15,386,9.5\n15,387,9.0\n15,388,8.5\n15,389,8.0\n15,390,7.5\n15,391,8.0\n15,392,8.5\n15,393,9.0\n15,394,9.5\n15,395,10.0\n15,396,10.5\n15,397,11.0\n15,398,11.5\n15,399,12.0\n15,400,15.5\n15,401,15.0\n15,402,14.5\n15,403,14.0\n15,404,13.5\n15,405,13.0\n15,406,12.5\n15,407,12.0\n15,408,11.5\n15,409,11.0\n15,410,10.5\n15,411,10.0\n15,412,9.5\n15,413,9.0\n15,414,8.5\n15,415,8.0\n15,416,8.5\n15,417,9.0\n15,418,9.5\n15,419,10.0\n15,420,10.5\n15,421,11.0\n15,422,11.5\n15,423,12.0\n15,424,12.5\n15,425,16.0\n15,426,15.5\n15,427,15.0\n15,428,14.5\n15,429,14.0\n15,430,13.5\n15,431,13.0\n15,432,12.5\n15,433,12.0\n15,434,11.5\n15,435,11.0\n15,436,10.5\n15,437,10.0\n15,438,9.5\n15,439,9.0\n15,440,8.5\n15,441,9.0\n15,442,9.5\n15,443,10.0\n15,444,10.5\n15,445,11.0\n15,446,11.5\n15,447,12.0\n15,448,12.5\n15,449,13.0\n15,450,16.5\n15,451,16.0\n15,452,15.5\n15,453,15.0\n15,454,14.5\n15,455,14.0\n15,456,13.5\n15,457,13.0\n15,458,12.5\n15,459,12.0\n15,460,11.5\n15,461,11.0\n15,462,10.5\n15,463,10.0\n15,464,9.5\n15,465,9.0\n15,466,9.5\n15,467,10.0\n15,468,10.5\n15,469,11.0\n15,470,11.5\n15,471,12.0\n15,472,12.5\n15,473,13.0\n15,474,13.5\n15,475,17.0\n15,476,16.5\n15,477,16.0\n15,478,15.5\n15,479,15.0\n15,480,14.5\n15,481,14.0\n15,482,13.5\n15,483,13.0\n15,484,12.5\n15,485,12.0\n15,486,11.5\n15,487,11.0\n15,488,10.5\n15,489,10.0\n15,490,9.5\n15,491,10.0\n15,492,10.5\n15,493,11.0\n15,494,11.5\n15,495,12.0\n15,496,12.5\n15,497,13.0\n15,498,13.5\n15,499,14.0\n15,500,17.5\n15,501,17.0\n15,502,16.5\n15,503,16.0\n15,504,15.5\n15,505,15.0\n15,506,14.5\n15,507,14.0\n15,508,13.5\n15,509,13.0\n15,510,12.5\n15,511,12.0\n15,512,11.5\n15,513,11.0\n15,514,10.5\n15,515,10.0\n15,516,10.5\n15,517,11.0\n15,518,11.5\n15,519,12.0\n15,520,12.5\n15,521,13.0\n15,522,13.5\n15,523,14.0\n15,524,14.5\n15,525,18.0\n15,526,17.5\n15,527,17.0\n15,528,16.5\n15,529,16.0\n15,530,15.5\n15,531,15.0\n15,532,14.5\n15,533,14.0\n15,534,13.5\n15,535,13.0\n15,536,12.5\n15,537,12.0\n15,538,11.5\n15,539,11.0\n15,540,10.5\n15,541,11.0\n15,542,11.5\n15,543,12.0\n15,544,12.5\n15,545,13.0\n15,546,13.5\n15,547,14.0\n15,548,14.5\n15,549,15.0\n15,550,18.5\n15,551,18.0\n15,552,17.5\n15,553,17.0\n15,554,16.5\n15,555,16.0\n15,556,15.5\n15,557,15.0\n15,558,14.5\n15,559,14.0\n15,560,13.5\n15,561,13.0\n15,562,12.5\n15,563,12.0\n15,564,11.5\n15,565,11.0\n15,566,11.5\n15,567,12.0\n15,568,12.5\n15,569,13.0\n15,570,13.5\n15,571,14.0\n15,572,14.5\n15,573,15.0\n15,574,15.5\n15,575,19.0\n15,576,18.5\n15,577,18.0\n15,578,17.5\n15,579,17.0\n15,580,16.5\n15,581,16.0\n15,582,15.5\n15,583,15.0\n15,584,14.5\n15,585,14.0\n15,586,13.5\n15,587,13.0\n15,588,12.5\n15,589,12.0\n15,590,11.5\n15,591,12.0\n15,592,12.5\n15,593,13.0\n15,594,13.5\n15,595,14.0\n15,596,14.5\n15,597,15.0\n15,598,15.5\n15,599,16.0\n15,600,19.5\n15,601,19.0\n15,602,18.5\n15,603,18.0\n15,604,17.5\n15,605,17.0\n15,606,16.5\n15,607,16.0\n15,608,15.5\n15,609,15.0\n15,610,14.5\n15,611,14.0\n15,612,13.5\n15,613,13.0\n15,614,12.5\n15,615,12.0\n15,616,12.5\n15,617,13.0\n15,618,13.5\n15,619,14.0\n15,620,14.5\n15,621,15.0\n15,622,15.5\n15,623,16.0\n15,624,16.5\n16,0,8.0\n16,1,7.5\n16,2,7.0\n16,3,6.5\n16,4,6.0\n16,5,5.5\n16,6,5.0\n16,7,4.5\n16,8,4.0\n16,9,3.5\n16,10,3.0\n16,11,2.5\n16,12,2.0\n16,13,1.5\n16,14,1.0\n16,15,0.5\n16,16,0\n16,17,0.5\n16,18,1.0\n16,19,1.5\n16,20,2.0\n16,21,2.5\n16,22,3.0\n16,23,3.5\n16,24,4.0\n16,25,8.5\n16,26,8.0\n16,27,7.5\n16,28,7.0\n16,29,6.5\n16,30,6.0\n16,31,5.5\n16,32,5.0\n16,33,4.5\n16,34,4.0\n16,35,3.5\n16,36,3.0\n16,37,2.5\n16,38,2.0\n16,39,1.5\n16,40,1.0\n16,41,0.5\n16,42,1.0\n16,43,1.5\n16,44,2.0\n16,45,2.5\n16,46,3.0\n16,47,3.5\n16,48,4.0\n16,49,4.5\n16,50,9.0\n16,51,8.5\n16,52,8.0\n16,53,7.5\n16,54,7.0\n16,55,6.5\n16,56,6.0\n16,57,5.5\n16,58,5.0\n16,59,4.5\n16,60,4.0\n16,61,3.5\n16,62,3.0\n16,63,2.5\n16,64,2.0\n16,65,1.5\n16,66,1.0\n16,67,1.5\n16,68,2.0\n16,69,2.5\n16,70,3.0\n16,71,3.5\n16,72,4.0\n16,73,4.5\n16,74,5.0\n16,75,9.5\n16,76,9.0\n16,77,8.5\n16,78,8.0\n16,79,7.5\n16,80,7.0\n16,81,6.5\n16,82,6.0\n16,83,5.5\n16,84,5.0\n16,85,4.5\n16,86,4.0\n16,87,3.5\n16,88,3.0\n16,89,2.5\n16,90,2.0\n16,91,1.5\n16,92,2.0\n16,93,2.5\n16,94,3.0\n16,95,3.5\n16,96,4.0\n16,97,4.5\n16,98,5.0\n16,99,5.5\n16,100,10.0\n16,101,9.5\n16,102,9.0\n16,103,8.5\n16,104,8.0\n16,105,7.5\n16,106,7.0\n16,107,6.5\n16,108,6.0\n16,109,5.5\n16,110,5.0\n16,111,4.5\n16,112,4.0\n16,113,3.5\n16,114,3.0\n16,115,2.5\n16,116,2.0\n16,117,2.5\n16,118,3.0\n16,119,3.5\n16,120,4.0\n16,121,4.5\n16,122,5.0\n16,123,5.5\n16,124,6.0\n16,125,10.5\n16,126,10.0\n16,127,9.5\n16,128,9.0\n16,129,8.5\n16,130,8.0\n16,131,7.5\n16,132,7.0\n16,133,6.5\n16,134,6.0\n16,135,5.5\n16,136,5.0\n16,137,4.5\n16,138,4.0\n16,139,3.5\n16,140,3.0\n16,141,2.5\n16,142,3.0\n16,143,3.5\n16,144,4.0\n16,145,4.5\n16,146,5.0\n16,147,5.5\n16,148,6.0\n16,149,6.5\n16,150,11.0\n16,151,10.5\n16,152,10.0\n16,153,9.5\n16,154,9.0\n16,155,8.5\n16,156,8.0\n16,157,7.5\n16,158,7.0\n16,159,6.5\n16,160,6.0\n16,161,5.5\n16,162,5.0\n16,163,4.5\n16,164,4.0\n16,165,3.5\n16,166,3.0\n16,167,3.5\n16,168,4.0\n16,169,4.5\n16,170,5.0\n16,171,5.5\n16,172,6.0\n16,173,6.5\n16,174,7.0\n16,175,11.5\n16,176,11.0\n16,177,10.5\n16,178,10.0\n16,179,9.5\n16,180,9.0\n16,181,8.5\n16,182,8.0\n16,183,7.5\n16,184,7.0\n16,185,6.5\n16,186,6.0\n16,187,5.5\n16,188,5.0\n16,189,4.5\n16,190,4.0\n16,191,3.5\n16,192,4.0\n16,193,4.5\n16,194,5.0\n16,195,5.5\n16,196,6.0\n16,197,6.5\n16,198,7.0\n16,199,7.5\n16,200,12.0\n16,201,11.5\n16,202,11.0\n16,203,10.5\n16,204,10.0\n16,205,9.5\n16,206,9.0\n16,207,8.5\n16,208,8.0\n16,209,7.5\n16,210,7.0\n16,211,6.5\n16,212,6.0\n16,213,5.5\n16,214,5.0\n16,215,4.5\n16,216,4.0\n16,217,4.5\n16,218,5.0\n16,219,5.5\n16,220,6.0\n16,221,6.5\n16,222,7.0\n16,223,7.5\n16,224,8.0\n16,225,12.5\n16,226,12.0\n16,227,11.5\n16,228,11.0\n16,229,10.5\n16,230,10.0\n16,231,9.5\n16,232,9.0\n16,233,8.5\n16,234,8.0\n16,235,7.5\n16,236,7.0\n16,237,6.5\n16,238,6.0\n16,239,5.5\n16,240,5.0\n16,241,4.5\n16,242,5.0\n16,243,5.5\n16,244,6.0\n16,245,6.5\n16,246,7.0\n16,247,7.5\n16,248,8.0\n16,249,8.5\n16,250,13.0\n16,251,12.5\n16,252,12.0\n16,253,11.5\n16,254,11.0\n16,255,10.5\n16,256,10.0\n16,257,9.5\n16,258,9.0\n16,259,8.5\n16,260,8.0\n16,261,7.5\n16,262,7.0\n16,263,6.5\n16,264,6.0\n16,265,5.5\n16,266,5.0\n16,267,5.5\n16,268,6.0\n16,269,6.5\n16,270,7.0\n16,271,7.5\n16,272,8.0\n16,273,8.5\n16,274,9.0\n16,275,13.5\n16,276,13.0\n16,277,12.5\n16,278,12.0\n16,279,11.5\n16,280,11.0\n16,281,10.5\n16,282,10.0\n16,283,9.5\n16,284,9.0\n16,285,8.5\n16,286,8.0\n16,287,7.5\n16,288,7.0\n16,289,6.5\n16,290,6.0\n16,291,5.5\n16,292,6.0\n16,293,6.5\n16,294,7.0\n16,295,7.5\n16,296,8.0\n16,297,8.5\n16,298,9.0\n16,299,9.5\n16,300,14.0\n16,301,13.5\n16,302,13.0\n16,303,12.5\n16,304,12.0\n16,305,11.5\n16,306,11.0\n16,307,10.5\n16,308,10.0\n16,309,9.5\n16,310,9.0\n16,311,8.5\n16,312,8.0\n16,313,7.5\n16,314,7.0\n16,315,6.5\n16,316,6.0\n16,317,6.5\n16,318,7.0\n16,319,7.5\n16,320,8.0\n16,321,8.5\n16,322,9.0\n16,323,9.5\n16,324,10.0\n16,325,14.5\n16,326,14.0\n16,327,13.5\n16,328,13.0\n16,329,12.5\n16,330,12.0\n16,331,11.5\n16,332,11.0\n16,333,10.5\n16,334,10.0\n16,335,9.5\n16,336,9.0\n16,337,8.5\n16,338,8.0\n16,339,7.5\n16,340,7.0\n16,341,6.5\n16,342,7.0\n16,343,7.5\n16,344,8.0\n16,345,8.5\n16,346,9.0\n16,347,9.5\n16,348,10.0\n16,349,10.5\n16,350,15.0\n16,351,14.5\n16,352,14.0\n16,353,13.5\n16,354,13.0\n16,355,12.5\n16,356,12.0\n16,357,11.5\n16,358,11.0\n16,359,10.5\n16,360,10.0\n16,361,9.5\n16,362,9.0\n16,363,8.5\n16,364,8.0\n16,365,7.5\n16,366,7.0\n16,367,7.5\n16,368,8.0\n16,369,8.5\n16,370,9.0\n16,371,9.5\n16,372,10.0\n16,373,10.5\n16,374,11.0\n16,375,15.5\n16,376,15.0\n16,377,14.5\n16,378,14.0\n16,379,13.5\n16,380,13.0\n16,381,12.5\n16,382,12.0\n16,383,11.5\n16,384,11.0\n16,385,10.5\n16,386,10.0\n16,387,9.5\n16,388,9.0\n16,389,8.5\n16,390,8.0\n16,391,7.5\n16,392,8.0\n16,393,8.5\n16,394,9.0\n16,395,9.5\n16,396,10.0\n16,397,10.5\n16,398,11.0\n16,399,11.5\n16,400,16.0\n16,401,15.5\n16,402,15.0\n16,403,14.5\n16,404,14.0\n16,405,13.5\n16,406,13.0\n16,407,12.5\n16,408,12.0\n16,409,11.5\n16,410,11.0\n16,411,10.5\n16,412,10.0\n16,413,9.5\n16,414,9.0\n16,415,8.5\n16,416,8.0\n16,417,8.5\n16,418,9.0\n16,419,9.5\n16,420,10.0\n16,421,10.5\n16,422,11.0\n16,423,11.5\n16,424,12.0\n16,425,16.5\n16,426,16.0\n16,427,15.5\n16,428,15.0\n16,429,14.5\n16,430,14.0\n16,431,13.5\n16,432,13.0\n16,433,12.5\n16,434,12.0\n16,435,11.5\n16,436,11.0\n16,437,10.5\n16,438,10.0\n16,439,9.5\n16,440,9.0\n16,441,8.5\n16,442,9.0\n16,443,9.5\n16,444,10.0\n16,445,10.5\n16,446,11.0\n16,447,11.5\n16,448,12.0\n16,449,12.5\n16,450,17.0\n16,451,16.5\n16,452,16.0\n16,453,15.5\n16,454,15.0\n16,455,14.5\n16,456,14.0\n16,457,13.5\n16,458,13.0\n16,459,12.5\n16,460,12.0\n16,461,11.5\n16,462,11.0\n16,463,10.5\n16,464,10.0\n16,465,9.5\n16,466,9.0\n16,467,9.5\n16,468,10.0\n16,469,10.5\n16,470,11.0\n16,471,11.5\n16,472,12.0\n16,473,12.5\n16,474,13.0\n16,475,17.5\n16,476,17.0\n16,477,16.5\n16,478,16.0\n16,479,15.5\n16,480,15.0\n16,481,14.5\n16,482,14.0\n16,483,13.5\n16,484,13.0\n16,485,12.5\n16,486,12.0\n16,487,11.5\n16,488,11.0\n16,489,10.5\n16,490,10.0\n16,491,9.5\n16,492,10.0\n16,493,10.5\n16,494,11.0\n16,495,11.5\n16,496,12.0\n16,497,12.5\n16,498,13.0\n16,499,13.5\n16,500,18.0\n16,501,17.5\n16,502,17.0\n16,503,16.5\n16,504,16.0\n16,505,15.5\n16,506,15.0\n16,507,14.5\n16,508,14.0\n16,509,13.5\n16,510,13.0\n16,511,12.5\n16,512,12.0\n16,513,11.5\n16,514,11.0\n16,515,10.5\n16,516,10.0\n16,517,10.5\n16,518,11.0\n16,519,11.5\n16,520,12.0\n16,521,12.5\n16,522,13.0\n16,523,13.5\n16,524,14.0\n16,525,18.5\n16,526,18.0\n16,527,17.5\n16,528,17.0\n16,529,16.5\n16,530,16.0\n16,531,15.5\n16,532,15.0\n16,533,14.5\n16,534,14.0\n16,535,13.5\n16,536,13.0\n16,537,12.5\n16,538,12.0\n16,539,11.5\n16,540,11.0\n16,541,10.5\n16,542,11.0\n16,543,11.5\n16,544,12.0\n16,545,12.5\n16,546,13.0\n16,547,13.5\n16,548,14.0\n16,549,14.5\n16,550,19.0\n16,551,18.5\n16,552,18.0\n16,553,17.5\n16,554,17.0\n16,555,16.5\n16,556,16.0\n16,557,15.5\n16,558,15.0\n16,559,14.5\n16,560,14.0\n16,561,13.5\n16,562,13.0\n16,563,12.5\n16,564,12.0\n16,565,11.5\n16,566,11.0\n16,567,11.5\n16,568,12.0\n16,569,12.5\n16,570,13.0\n16,571,13.5\n16,572,14.0\n16,573,14.5\n16,574,15.0\n16,575,19.5\n16,576,19.0\n16,577,18.5\n16,578,18.0\n16,579,17.5\n16,580,17.0\n16,581,16.5\n16,582,16.0\n16,583,15.5\n16,584,15.0\n16,585,14.5\n16,586,14.0\n16,587,13.5\n16,588,13.0\n16,589,12.5\n16,590,12.0\n16,591,11.5\n16,592,12.0\n16,593,12.5\n16,594,13.0\n16,595,13.5\n16,596,14.0\n16,597,14.5\n16,598,15.0\n16,599,15.5\n16,600,20.0\n16,601,19.5\n16,602,19.0\n16,603,18.5\n16,604,18.0\n16,605,17.5\n16,606,17.0\n16,607,16.5\n16,608,16.0\n16,609,15.5\n16,610,15.0\n16,611,14.5\n16,612,14.0\n16,613,13.5\n16,614,13.0\n16,615,12.5\n16,616,12.0\n16,617,12.5\n16,618,13.0\n16,619,13.5\n16,620,14.0\n16,621,14.5\n16,622,15.0\n16,623,15.5\n16,624,16.0\n17,0,8.5\n17,1,8.0\n17,2,7.5\n17,3,7.0\n17,4,6.5\n17,5,6.0\n17,6,5.5\n17,7,5.0\n17,8,4.5\n17,9,4.0\n17,10,3.5\n17,11,3.0\n17,12,2.5\n17,13,2.0\n17,14,1.5\n17,15,1.0\n17,16,0.5\n17,17,0\n17,18,0.5\n17,19,1.0\n17,20,1.5\n17,21,2.0\n17,22,2.5\n17,23,3.0\n17,24,3.5\n17,25,9.0\n17,26,8.5\n17,27,8.0\n17,28,7.5\n17,29,7.0\n17,30,6.5\n17,31,6.0\n17,32,5.5\n17,33,5.0\n17,34,4.5\n17,35,4.0\n17,36,3.5\n17,37,3.0\n17,38,2.5\n17,39,2.0\n17,40,1.5\n17,41,1.0\n17,42,0.5\n17,43,1.0\n17,44,1.5\n17,45,2.0\n17,46,2.5\n17,47,3.0\n17,48,3.5\n17,49,4.0\n17,50,9.5\n17,51,9.0\n17,52,8.5\n17,53,8.0\n17,54,7.5\n17,55,7.0\n17,56,6.5\n17,57,6.0\n17,58,5.5\n17,59,5.0\n17,60,4.5\n17,61,4.0\n17,62,3.5\n17,63,3.0\n17,64,2.5\n17,65,2.0\n17,66,1.5\n17,67,1.0\n17,68,1.5\n17,69,2.0\n17,70,2.5\n17,71,3.0\n17,72,3.5\n17,73,4.0\n17,74,4.5\n17,75,10.0\n17,76,9.5\n17,77,9.0\n17,78,8.5\n17,79,8.0\n17,80,7.5\n17,81,7.0\n17,82,6.5\n17,83,6.0\n17,84,5.5\n17,85,5.0\n17,86,4.5\n17,87,4.0\n17,88,3.5\n17,89,3.0\n17,90,2.5\n17,91,2.0\n17,92,1.5\n17,93,2.0\n17,94,2.5\n17,95,3.0\n17,96,3.5\n17,97,4.0\n17,98,4.5\n17,99,5.0\n17,100,10.5\n17,101,10.0\n17,102,9.5\n17,103,9.0\n17,104,8.5\n17,105,8.0\n17,106,7.5\n17,107,7.0\n17,108,6.5\n17,109,6.0\n17,110,5.5\n17,111,5.0\n17,112,4.5\n17,113,4.0\n17,114,3.5\n17,115,3.0\n17,116,2.5\n17,117,2.0\n17,118,2.5\n17,119,3.0\n17,120,3.5\n17,121,4.0\n17,122,4.5\n17,123,5.0\n17,124,5.5\n17,125,11.0\n17,126,10.5\n17,127,10.0\n17,128,9.5\n17,129,9.0\n17,130,8.5\n17,131,8.0\n17,132,7.5\n17,133,7.0\n17,134,6.5\n17,135,6.0\n17,136,5.5\n17,137,5.0\n17,138,4.5\n17,139,4.0\n17,140,3.5\n17,141,3.0\n17,142,2.5\n17,143,3.0\n17,144,3.5\n17,145,4.0\n17,146,4.5\n17,147,5.0\n17,148,5.5\n17,149,6.0\n17,150,11.5\n17,151,11.0\n17,152,10.5\n17,153,10.0\n17,154,9.5\n17,155,9.0\n17,156,8.5\n17,157,8.0\n17,158,7.5\n17,159,7.0\n17,160,6.5\n17,161,6.0\n17,162,5.5\n17,163,5.0\n17,164,4.5\n17,165,4.0\n17,166,3.5\n17,167,3.0\n17,168,3.5\n17,169,4.0\n17,170,4.5\n17,171,5.0\n17,172,5.5\n17,173,6.0\n17,174,6.5\n17,175,12.0\n17,176,11.5\n17,177,11.0\n17,178,10.5\n17,179,10.0\n17,180,9.5\n17,181,9.0\n17,182,8.5\n17,183,8.0\n17,184,7.5\n17,185,7.0\n17,186,6.5\n17,187,6.0\n17,188,5.5\n17,189,5.0\n17,190,4.5\n17,191,4.0\n17,192,3.5\n17,193,4.0\n17,194,4.5\n17,195,5.0\n17,196,5.5\n17,197,6.0\n17,198,6.5\n17,199,7.0\n17,200,12.5\n17,201,12.0\n17,202,11.5\n17,203,11.0\n17,204,10.5\n17,205,10.0\n17,206,9.5\n17,207,9.0\n17,208,8.5\n17,209,8.0\n17,210,7.5\n17,211,7.0\n17,212,6.5\n17,213,6.0\n17,214,5.5\n17,215,5.0\n17,216,4.5\n17,217,4.0\n17,218,4.5\n17,219,5.0\n17,220,5.5\n17,221,6.0\n17,222,6.5\n17,223,7.0\n17,224,7.5\n17,225,13.0\n17,226,12.5\n17,227,12.0\n17,228,11.5\n17,229,11.0\n17,230,10.5\n17,231,10.0\n17,232,9.5\n17,233,9.0\n17,234,8.5\n17,235,8.0\n17,236,7.5\n17,237,7.0\n17,238,6.5\n17,239,6.0\n17,240,5.5\n17,241,5.0\n17,242,4.5\n17,243,5.0\n17,244,5.5\n17,245,6.0\n17,246,6.5\n17,247,7.0\n17,248,7.5\n17,249,8.0\n17,250,13.5\n17,251,13.0\n17,252,12.5\n17,253,12.0\n17,254,11.5\n17,255,11.0\n17,256,10.5\n17,257,10.0\n17,258,9.5\n17,259,9.0\n17,260,8.5\n17,261,8.0\n17,262,7.5\n17,263,7.0\n17,264,6.5\n17,265,6.0\n17,266,5.5\n17,267,5.0\n17,268,5.5\n17,269,6.0\n17,270,6.5\n17,271,7.0\n17,272,7.5\n17,273,8.0\n17,274,8.5\n17,275,14.0\n17,276,13.5\n17,277,13.0\n17,278,12.5\n17,279,12.0\n17,280,11.5\n17,281,11.0\n17,282,10.5\n17,283,10.0\n17,284,9.5\n17,285,9.0\n17,286,8.5\n17,287,8.0\n17,288,7.5\n17,289,7.0\n17,290,6.5\n17,291,6.0\n17,292,5.5\n17,293,6.0\n17,294,6.5\n17,295,7.0\n17,296,7.5\n17,297,8.0\n17,298,8.5\n17,299,9.0\n17,300,14.5\n17,301,14.0\n17,302,13.5\n17,303,13.0\n17,304,12.5\n17,305,12.0\n17,306,11.5\n17,307,11.0\n17,308,10.5\n17,309,10.0\n17,310,9.5\n17,311,9.0\n17,312,8.5\n17,313,8.0\n17,314,7.5\n17,315,7.0\n17,316,6.5\n17,317,6.0\n17,318,6.5\n17,319,7.0\n17,320,7.5\n17,321,8.0\n17,322,8.5\n17,323,9.0\n17,324,9.5\n17,325,15.0\n17,326,14.5\n17,327,14.0\n17,328,13.5\n17,329,13.0\n17,330,12.5\n17,331,12.0\n17,332,11.5\n17,333,11.0\n17,334,10.5\n17,335,10.0\n17,336,9.5\n17,337,9.0\n17,338,8.5\n17,339,8.0\n17,340,7.5\n17,341,7.0\n17,342,6.5\n17,343,7.0\n17,344,7.5\n17,345,8.0\n17,346,8.5\n17,347,9.0\n17,348,9.5\n17,349,10.0\n17,350,15.5\n17,351,15.0\n17,352,14.5\n17,353,14.0\n17,354,13.5\n17,355,13.0\n17,356,12.5\n17,357,12.0\n17,358,11.5\n17,359,11.0\n17,360,10.5\n17,361,10.0\n17,362,9.5\n17,363,9.0\n17,364,8.5\n17,365,8.0\n17,366,7.5\n17,367,7.0\n17,368,7.5\n17,369,8.0\n17,370,8.5\n17,371,9.0\n17,372,9.5\n17,373,10.0\n17,374,10.5\n17,375,16.0\n17,376,15.5\n17,377,15.0\n17,378,14.5\n17,379,14.0\n17,380,13.5\n17,381,13.0\n17,382,12.5\n17,383,12.0\n17,384,11.5\n17,385,11.0\n17,386,10.5\n17,387,10.0\n17,388,9.5\n17,389,9.0\n17,390,8.5\n17,391,8.0\n17,392,7.5\n17,393,8.0\n17,394,8.5\n17,395,9.0\n17,396,9.5\n17,397,10.0\n17,398,10.5\n17,399,11.0\n17,400,16.5\n17,401,16.0\n17,402,15.5\n17,403,15.0\n17,404,14.5\n17,405,14.0\n17,406,13.5\n17,407,13.0\n17,408,12.5\n17,409,12.0\n17,410,11.5\n17,411,11.0\n17,412,10.5\n17,413,10.0\n17,414,9.5\n17,415,9.0\n17,416,8.5\n17,417,8.0\n17,418,8.5\n17,419,9.0\n17,420,9.5\n17,421,10.0\n17,422,10.5\n17,423,11.0\n17,424,11.5\n17,425,17.0\n17,426,16.5\n17,427,16.0\n17,428,15.5\n17,429,15.0\n17,430,14.5\n17,431,14.0\n17,432,13.5\n17,433,13.0\n17,434,12.5\n17,435,12.0\n17,436,11.5\n17,437,11.0\n17,438,10.5\n17,439,10.0\n17,440,9.5\n17,441,9.0\n17,442,8.5\n17,443,9.0\n17,444,9.5\n17,445,10.0\n17,446,10.5\n17,447,11.0\n17,448,11.5\n17,449,12.0\n17,450,17.5\n17,451,17.0\n17,452,16.5\n17,453,16.0\n17,454,15.5\n17,455,15.0\n17,456,14.5\n17,457,14.0\n17,458,13.5\n17,459,13.0\n17,460,12.5\n17,461,12.0\n17,462,11.5\n17,463,11.0\n17,464,10.5\n17,465,10.0\n17,466,9.5\n17,467,9.0\n17,468,9.5\n17,469,10.0\n17,470,10.5\n17,471,11.0\n17,472,11.5\n17,473,12.0\n17,474,12.5\n17,475,18.0\n17,476,17.5\n17,477,17.0\n17,478,16.5\n17,479,16.0\n17,480,15.5\n17,481,15.0\n17,482,14.5\n17,483,14.0\n17,484,13.5\n17,485,13.0\n17,486,12.5\n17,487,12.0\n17,488,11.5\n17,489,11.0\n17,490,10.5\n17,491,10.0\n17,492,9.5\n17,493,10.0\n17,494,10.5\n17,495,11.0\n17,496,11.5\n17,497,12.0\n17,498,12.5\n17,499,13.0\n17,500,18.5\n17,501,18.0\n17,502,17.5\n17,503,17.0\n17,504,16.5\n17,505,16.0\n17,506,15.5\n17,507,15.0\n17,508,14.5\n17,509,14.0\n17,510,13.5\n17,511,13.0\n17,512,12.5\n17,513,12.0\n17,514,11.5\n17,515,11.0\n17,516,10.5\n17,517,10.0\n17,518,10.5\n17,519,11.0\n17,520,11.5\n17,521,12.0\n17,522,12.5\n17,523,13.0\n17,524,13.5\n17,525,19.0\n17,526,18.5\n17,527,18.0\n17,528,17.5\n17,529,17.0\n17,530,16.5\n17,531,16.0\n17,532,15.5\n17,533,15.0\n17,534,14.5\n17,535,14.0\n17,536,13.5\n17,537,13.0\n17,538,12.5\n17,539,12.0\n17,540,11.5\n17,541,11.0\n17,542,10.5\n17,543,11.0\n17,544,11.5\n17,545,12.0\n17,546,12.5\n17,547,13.0\n17,548,13.5\n17,549,14.0\n17,550,19.5\n17,551,19.0\n17,552,18.5\n17,553,18.0\n17,554,17.5\n17,555,17.0\n17,556,16.5\n17,557,16.0\n17,558,15.5\n17,559,15.0\n17,560,14.5\n17,561,14.0\n17,562,13.5\n17,563,13.0\n17,564,12.5\n17,565,12.0\n17,566,11.5\n17,567,11.0\n17,568,11.5\n17,569,12.0\n17,570,12.5\n17,571,13.0\n17,572,13.5\n17,573,14.0\n17,574,14.5\n17,575,20.0\n17,576,19.5\n17,577,19.0\n17,578,18.5\n17,579,18.0\n17,580,17.5\n17,581,17.0\n17,582,16.5\n17,583,16.0\n17,584,15.5\n17,585,15.0\n17,586,14.5\n17,587,14.0\n17,588,13.5\n17,589,13.0\n17,590,12.5\n17,591,12.0\n17,592,11.5\n17,593,12.0\n17,594,12.5\n17,595,13.0\n17,596,13.5\n17,597,14.0\n17,598,14.5\n17,599,15.0\n17,600,20.5\n17,601,20.0\n17,602,19.5\n17,603,19.0\n17,604,18.5\n17,605,18.0\n17,606,17.5\n17,607,17.0\n17,608,16.5\n17,609,16.0\n17,610,15.5\n17,611,15.0\n17,612,14.5\n17,613,14.0\n17,614,13.5\n17,615,13.0\n17,616,12.5\n17,617,12.0\n17,618,12.5\n17,619,13.0\n17,620,13.5\n17,621,14.0\n17,622,14.5\n17,623,15.0\n17,624,15.5\n18,0,9.0\n18,1,8.5\n18,2,8.0\n18,3,7.5\n18,4,7.0\n18,5,6.5\n18,6,6.0\n18,7,5.5\n18,8,5.0\n18,9,4.5\n18,10,4.0\n18,11,3.5\n18,12,3.0\n18,13,2.5\n18,14,2.0\n18,15,1.5\n18,16,1.0\n18,17,0.5\n18,18,0\n18,19,0.5\n18,20,1.0\n18,21,1.5\n18,22,2.0\n18,23,2.5\n18,24,3.0\n18,25,9.5\n18,26,9.0\n18,27,8.5\n18,28,8.0\n18,29,7.5\n18,30,7.0\n18,31,6.5\n18,32,6.0\n18,33,5.5\n18,34,5.0\n18,35,4.5\n18,36,4.0\n18,37,3.5\n18,38,3.0\n18,39,2.5\n18,40,2.0\n18,41,1.5\n18,42,1.0\n18,43,0.5\n18,44,1.0\n18,45,1.5\n18,46,2.0\n18,47,2.5\n18,48,3.0\n18,49,3.5\n18,50,10.0\n18,51,9.5\n18,52,9.0\n18,53,8.5\n18,54,8.0\n18,55,7.5\n18,56,7.0\n18,57,6.5\n18,58,6.0\n18,59,5.5\n18,60,5.0\n18,61,4.5\n18,62,4.0\n18,63,3.5\n18,64,3.0\n18,65,2.5\n18,66,2.0\n18,67,1.5\n18,68,1.0\n18,69,1.5\n18,70,2.0\n18,71,2.5\n18,72,3.0\n18,73,3.5\n18,74,4.0\n18,75,10.5\n18,76,10.0\n18,77,9.5\n18,78,9.0\n18,79,8.5\n18,80,8.0\n18,81,7.5\n18,82,7.0\n18,83,6.5\n18,84,6.0\n18,85,5.5\n18,86,5.0\n18,87,4.5\n18,88,4.0\n18,89,3.5\n18,90,3.0\n18,91,2.5\n18,92,2.0\n18,93,1.5\n18,94,2.0\n18,95,2.5\n18,96,3.0\n18,97,3.5\n18,98,4.0\n18,99,4.5\n18,100,11.0\n18,101,10.5\n18,102,10.0\n18,103,9.5\n18,104,9.0\n18,105,8.5\n18,106,8.0\n18,107,7.5\n18,108,7.0\n18,109,6.5\n18,110,6.0\n18,111,5.5\n18,112,5.0\n18,113,4.5\n18,114,4.0\n18,115,3.5\n18,116,3.0\n18,117,2.5\n18,118,2.0\n18,119,2.5\n18,120,3.0\n18,121,3.5\n18,122,4.0\n18,123,4.5\n18,124,5.0\n18,125,11.5\n18,126,11.0\n18,127,10.5\n18,128,10.0\n18,129,9.5\n18,130,9.0\n18,131,8.5\n18,132,8.0\n18,133,7.5\n18,134,7.0\n18,135,6.5\n18,136,6.0\n18,137,5.5\n18,138,5.0\n18,139,4.5\n18,140,4.0\n18,141,3.5\n18,142,3.0\n18,143,2.5\n18,144,3.0\n18,145,3.5\n18,146,4.0\n18,147,4.5\n18,148,5.0\n18,149,5.5\n18,150,12.0\n18,151,11.5\n18,152,11.0\n18,153,10.5\n18,154,10.0\n18,155,9.5\n18,156,9.0\n18,157,8.5\n18,158,8.0\n18,159,7.5\n18,160,7.0\n18,161,6.5\n18,162,6.0\n18,163,5.5\n18,164,5.0\n18,165,4.5\n18,166,4.0\n18,167,3.5\n18,168,3.0\n18,169,3.5\n18,170,4.0\n18,171,4.5\n18,172,5.0\n18,173,5.5\n18,174,6.0\n18,175,12.5\n18,176,12.0\n18,177,11.5\n18,178,11.0\n18,179,10.5\n18,180,10.0\n18,181,9.5\n18,182,9.0\n18,183,8.5\n18,184,8.0\n18,185,7.5\n18,186,7.0\n18,187,6.5\n18,188,6.0\n18,189,5.5\n18,190,5.0\n18,191,4.5\n18,192,4.0\n18,193,3.5\n18,194,4.0\n18,195,4.5\n18,196,5.0\n18,197,5.5\n18,198,6.0\n18,199,6.5\n18,200,13.0\n18,201,12.5\n18,202,12.0\n18,203,11.5\n18,204,11.0\n18,205,10.5\n18,206,10.0\n18,207,9.5\n18,208,9.0\n18,209,8.5\n18,210,8.0\n18,211,7.5\n18,212,7.0\n18,213,6.5\n18,214,6.0\n18,215,5.5\n18,216,5.0\n18,217,4.5\n18,218,4.0\n18,219,4.5\n18,220,5.0\n18,221,5.5\n18,222,6.0\n18,223,6.5\n18,224,7.0\n18,225,13.5\n18,226,13.0\n18,227,12.5\n18,228,12.0\n18,229,11.5\n18,230,11.0\n18,231,10.5\n18,232,10.0\n18,233,9.5\n18,234,9.0\n18,235,8.5\n18,236,8.0\n18,237,7.5\n18,238,7.0\n18,239,6.5\n18,240,6.0\n18,241,5.5\n18,242,5.0\n18,243,4.5\n18,244,5.0\n18,245,5.5\n18,246,6.0\n18,247,6.5\n18,248,7.0\n18,249,7.5\n18,250,14.0\n18,251,13.5\n18,252,13.0\n18,253,12.5\n18,254,12.0\n18,255,11.5\n18,256,11.0\n18,257,10.5\n18,258,10.0\n18,259,9.5\n18,260,9.0\n18,261,8.5\n18,262,8.0\n18,263,7.5\n18,264,7.0\n18,265,6.5\n18,266,6.0\n18,267,5.5\n18,268,5.0\n18,269,5.5\n18,270,6.0\n18,271,6.5\n18,272,7.0\n18,273,7.5\n18,274,8.0\n18,275,14.5\n18,276,14.0\n18,277,13.5\n18,278,13.0\n18,279,12.5\n18,280,12.0\n18,281,11.5\n18,282,11.0\n18,283,10.5\n18,284,10.0\n18,285,9.5\n18,286,9.0\n18,287,8.5\n18,288,8.0\n18,289,7.5\n18,290,7.0\n18,291,6.5\n18,292,6.0\n18,293,5.5\n18,294,6.0\n18,295,6.5\n18,296,7.0\n18,297,7.5\n18,298,8.0\n18,299,8.5\n18,300,15.0\n18,301,14.5\n18,302,14.0\n18,303,13.5\n18,304,13.0\n18,305,12.5\n18,306,12.0\n18,307,11.5\n18,308,11.0\n18,309,10.5\n18,310,10.0\n18,311,9.5\n18,312,9.0\n18,313,8.5\n18,314,8.0\n18,315,7.5\n18,316,7.0\n18,317,6.5\n18,318,6.0\n18,319,6.5\n18,320,7.0\n18,321,7.5\n18,322,8.0\n18,323,8.5\n18,324,9.0\n18,325,15.5\n18,326,15.0\n18,327,14.5\n18,328,14.0\n18,329,13.5\n18,330,13.0\n18,331,12.5\n18,332,12.0\n18,333,11.5\n18,334,11.0\n18,335,10.5\n18,336,10.0\n18,337,9.5\n18,338,9.0\n18,339,8.5\n18,340,8.0\n18,341,7.5\n18,342,7.0\n18,343,6.5\n18,344,7.0\n18,345,7.5\n18,346,8.0\n18,347,8.5\n18,348,9.0\n18,349,9.5\n18,350,16.0\n18,351,15.5\n18,352,15.0\n18,353,14.5\n18,354,14.0\n18,355,13.5\n18,356,13.0\n18,357,12.5\n18,358,12.0\n18,359,11.5\n18,360,11.0\n18,361,10.5\n18,362,10.0\n18,363,9.5\n18,364,9.0\n18,365,8.5\n18,366,8.0\n18,367,7.5\n18,368,7.0\n18,369,7.5\n18,370,8.0\n18,371,8.5\n18,372,9.0\n18,373,9.5\n18,374,10.0\n18,375,16.5\n18,376,16.0\n18,377,15.5\n18,378,15.0\n18,379,14.5\n18,380,14.0\n18,381,13.5\n18,382,13.0\n18,383,12.5\n18,384,12.0\n18,385,11.5\n18,386,11.0\n18,387,10.5\n18,388,10.0\n18,389,9.5\n18,390,9.0\n18,391,8.5\n18,392,8.0\n18,393,7.5\n18,394,8.0\n18,395,8.5\n18,396,9.0\n18,397,9.5\n18,398,10.0\n18,399,10.5\n18,400,17.0\n18,401,16.5\n18,402,16.0\n18,403,15.5\n18,404,15.0\n18,405,14.5\n18,406,14.0\n18,407,13.5\n18,408,13.0\n18,409,12.5\n18,410,12.0\n18,411,11.5\n18,412,11.0\n18,413,10.5\n18,414,10.0\n18,415,9.5\n18,416,9.0\n18,417,8.5\n18,418,8.0\n18,419,8.5\n18,420,9.0\n18,421,9.5\n18,422,10.0\n18,423,10.5\n18,424,11.0\n18,425,17.5\n18,426,17.0\n18,427,16.5\n18,428,16.0\n18,429,15.5\n18,430,15.0\n18,431,14.5\n18,432,14.0\n18,433,13.5\n18,434,13.0\n18,435,12.5\n18,436,12.0\n18,437,11.5\n18,438,11.0\n18,439,10.5\n18,440,10.0\n18,441,9.5\n18,442,9.0\n18,443,8.5\n18,444,9.0\n18,445,9.5\n18,446,10.0\n18,447,10.5\n18,448,11.0\n18,449,11.5\n18,450,18.0\n18,451,17.5\n18,452,17.0\n18,453,16.5\n18,454,16.0\n18,455,15.5\n18,456,15.0\n18,457,14.5\n18,458,14.0\n18,459,13.5\n18,460,13.0\n18,461,12.5\n18,462,12.0\n18,463,11.5\n18,464,11.0\n18,465,10.5\n18,466,10.0\n18,467,9.5\n18,468,9.0\n18,469,9.5\n18,470,10.0\n18,471,10.5\n18,472,11.0\n18,473,11.5\n18,474,12.0\n18,475,18.5\n18,476,18.0\n18,477,17.5\n18,478,17.0\n18,479,16.5\n18,480,16.0\n18,481,15.5\n18,482,15.0\n18,483,14.5\n18,484,14.0\n18,485,13.5\n18,486,13.0\n18,487,12.5\n18,488,12.0\n18,489,11.5\n18,490,11.0\n18,491,10.5\n18,492,10.0\n18,493,9.5\n18,494,10.0\n18,495,10.5\n18,496,11.0\n18,497,11.5\n18,498,12.0\n18,499,12.5\n18,500,19.0\n18,501,18.5\n18,502,18.0\n18,503,17.5\n18,504,17.0\n18,505,16.5\n18,506,16.0\n18,507,15.5\n18,508,15.0\n18,509,14.5\n18,510,14.0\n18,511,13.5\n18,512,13.0\n18,513,12.5\n18,514,12.0\n18,515,11.5\n18,516,11.0\n18,517,10.5\n18,518,10.0\n18,519,10.5\n18,520,11.0\n18,521,11.5\n18,522,12.0\n18,523,12.5\n18,524,13.0\n18,525,19.5\n18,526,19.0\n18,527,18.5\n18,528,18.0\n18,529,17.5\n18,530,17.0\n18,531,16.5\n18,532,16.0\n18,533,15.5\n18,534,15.0\n18,535,14.5\n18,536,14.0\n18,537,13.5\n18,538,13.0\n18,539,12.5\n18,540,12.0\n18,541,11.5\n18,542,11.0\n18,543,10.5\n18,544,11.0\n18,545,11.5\n18,546,12.0\n18,547,12.5\n18,548,13.0\n18,549,13.5\n18,550,20.0\n18,551,19.5\n18,552,19.0\n18,553,18.5\n18,554,18.0\n18,555,17.5\n18,556,17.0\n18,557,16.5\n18,558,16.0\n18,559,15.5\n18,560,15.0\n18,561,14.5\n18,562,14.0\n18,563,13.5\n18,564,13.0\n18,565,12.5\n18,566,12.0\n18,567,11.5\n18,568,11.0\n18,569,11.5\n18,570,12.0\n18,571,12.5\n18,572,13.0\n18,573,13.5\n18,574,14.0\n18,575,20.5\n18,576,20.0\n18,577,19.5\n18,578,19.0\n18,579,18.5\n18,580,18.0\n18,581,17.5\n18,582,17.0\n18,583,16.5\n18,584,16.0\n18,585,15.5\n18,586,15.0\n18,587,14.5\n18,588,14.0\n18,589,13.5\n18,590,13.0\n18,591,12.5\n18,592,12.0\n18,593,11.5\n18,594,12.0\n18,595,12.5\n18,596,13.0\n18,597,13.5\n18,598,14.0\n18,599,14.5\n18,600,21.0\n18,601,20.5\n18,602,20.0\n18,603,19.5\n18,604,19.0\n18,605,18.5\n18,606,18.0\n18,607,17.5\n18,608,17.0\n18,609,16.5\n18,610,16.0\n18,611,15.5\n18,612,15.0\n18,613,14.5\n18,614,14.0\n18,615,13.5\n18,616,13.0\n18,617,12.5\n18,618,12.0\n18,619,12.5\n18,620,13.0\n18,621,13.5\n18,622,14.0\n18,623,14.5\n18,624,15.0\n19,0,9.5\n19,1,9.0\n19,2,8.5\n19,3,8.0\n19,4,7.5\n19,5,7.0\n19,6,6.5\n19,7,6.0\n19,8,5.5\n19,9,5.0\n19,10,4.5\n19,11,4.0\n19,12,3.5\n19,13,3.0\n19,14,2.5\n19,15,2.0\n19,16,1.5\n19,17,1.0\n19,18,0.5\n19,19,0\n19,20,0.5\n19,21,1.0\n19,22,1.5\n19,23,2.0\n19,24,2.5\n19,25,10.0\n19,26,9.5\n19,27,9.0\n19,28,8.5\n19,29,8.0\n19,30,7.5\n19,31,7.0\n19,32,6.5\n19,33,6.0\n19,34,5.5\n19,35,5.0\n19,36,4.5\n19,37,4.0\n19,38,3.5\n19,39,3.0\n19,40,2.5\n19,41,2.0\n19,42,1.5\n19,43,1.0\n19,44,0.5\n19,45,1.0\n19,46,1.5\n19,47,2.0\n19,48,2.5\n19,49,3.0\n19,50,10.5\n19,51,10.0\n19,52,9.5\n19,53,9.0\n19,54,8.5\n19,55,8.0\n19,56,7.5\n19,57,7.0\n19,58,6.5\n19,59,6.0\n19,60,5.5\n19,61,5.0\n19,62,4.5\n19,63,4.0\n19,64,3.5\n19,65,3.0\n19,66,2.5\n19,67,2.0\n19,68,1.5\n19,69,1.0\n19,70,1.5\n19,71,2.0\n19,72,2.5\n19,73,3.0\n19,74,3.5\n19,75,11.0\n19,76,10.5\n19,77,10.0\n19,78,9.5\n19,79,9.0\n19,80,8.5\n19,81,8.0\n19,82,7.5\n19,83,7.0\n19,84,6.5\n19,85,6.0\n19,86,5.5\n19,87,5.0\n19,88,4.5\n19,89,4.0\n19,90,3.5\n19,91,3.0\n19,92,2.5\n19,93,2.0\n19,94,1.5\n19,95,2.0\n19,96,2.5\n19,97,3.0\n19,98,3.5\n19,99,4.0\n19,100,11.5\n19,101,11.0\n19,102,10.5\n19,103,10.0\n19,104,9.5\n19,105,9.0\n19,106,8.5\n19,107,8.0\n19,108,7.5\n19,109,7.0\n19,110,6.5\n19,111,6.0\n19,112,5.5\n19,113,5.0\n19,114,4.5\n19,115,4.0\n19,116,3.5\n19,117,3.0\n19,118,2.5\n19,119,2.0\n19,120,2.5\n19,121,3.0\n19,122,3.5\n19,123,4.0\n19,124,4.5\n19,125,12.0\n19,126,11.5\n19,127,11.0\n19,128,10.5\n19,129,10.0\n19,130,9.5\n19,131,9.0\n19,132,8.5\n19,133,8.0\n19,134,7.5\n19,135,7.0\n19,136,6.5\n19,137,6.0\n19,138,5.5\n19,139,5.0\n19,140,4.5\n19,141,4.0\n19,142,3.5\n19,143,3.0\n19,144,2.5\n19,145,3.0\n19,146,3.5\n19,147,4.0\n19,148,4.5\n19,149,5.0\n19,150,12.5\n19,151,12.0\n19,152,11.5\n19,153,11.0\n19,154,10.5\n19,155,10.0\n19,156,9.5\n19,157,9.0\n19,158,8.5\n19,159,8.0\n19,160,7.5\n19,161,7.0\n19,162,6.5\n19,163,6.0\n19,164,5.5\n19,165,5.0\n19,166,4.5\n19,167,4.0\n19,168,3.5\n19,169,3.0\n19,170,3.5\n19,171,4.0\n19,172,4.5\n19,173,5.0\n19,174,5.5\n19,175,13.0\n19,176,12.5\n19,177,12.0\n19,178,11.5\n19,179,11.0\n19,180,10.5\n19,181,10.0\n19,182,9.5\n19,183,9.0\n19,184,8.5\n19,185,8.0\n19,186,7.5\n19,187,7.0\n19,188,6.5\n19,189,6.0\n19,190,5.5\n19,191,5.0\n19,192,4.5\n19,193,4.0\n19,194,3.5\n19,195,4.0\n19,196,4.5\n19,197,5.0\n19,198,5.5\n19,199,6.0\n19,200,13.5\n19,201,13.0\n19,202,12.5\n19,203,12.0\n19,204,11.5\n19,205,11.0\n19,206,10.5\n19,207,10.0\n19,208,9.5\n19,209,9.0\n19,210,8.5\n19,211,8.0\n19,212,7.5\n19,213,7.0\n19,214,6.5\n19,215,6.0\n19,216,5.5\n19,217,5.0\n19,218,4.5\n19,219,4.0\n19,220,4.5\n19,221,5.0\n19,222,5.5\n19,223,6.0\n19,224,6.5\n19,225,14.0\n19,226,13.5\n19,227,13.0\n19,228,12.5\n19,229,12.0\n19,230,11.5\n19,231,11.0\n19,232,10.5\n19,233,10.0\n19,234,9.5\n19,235,9.0\n19,236,8.5\n19,237,8.0\n19,238,7.5\n19,239,7.0\n19,240,6.5\n19,241,6.0\n19,242,5.5\n19,243,5.0\n19,244,4.5\n19,245,5.0\n19,246,5.5\n19,247,6.0\n19,248,6.5\n19,249,7.0\n19,250,14.5\n19,251,14.0\n19,252,13.5\n19,253,13.0\n19,254,12.5\n19,255,12.0\n19,256,11.5\n19,257,11.0\n19,258,10.5\n19,259,10.0\n19,260,9.5\n19,261,9.0\n19,262,8.5\n19,263,8.0\n19,264,7.5\n19,265,7.0\n19,266,6.5\n19,267,6.0\n19,268,5.5\n19,269,5.0\n19,270,5.5\n19,271,6.0\n19,272,6.5\n19,273,7.0\n19,274,7.5\n19,275,15.0\n19,276,14.5\n19,277,14.0\n19,278,13.5\n19,279,13.0\n19,280,12.5\n19,281,12.0\n19,282,11.5\n19,283,11.0\n19,284,10.5\n19,285,10.0\n19,286,9.5\n19,287,9.0\n19,288,8.5\n19,289,8.0\n19,290,7.5\n19,291,7.0\n19,292,6.5\n19,293,6.0\n19,294,5.5\n19,295,6.0\n19,296,6.5\n19,297,7.0\n19,298,7.5\n19,299,8.0\n19,300,15.5\n19,301,15.0\n19,302,14.5\n19,303,14.0\n19,304,13.5\n19,305,13.0\n19,306,12.5\n19,307,12.0\n19,308,11.5\n19,309,11.0\n19,310,10.5\n19,311,10.0\n19,312,9.5\n19,313,9.0\n19,314,8.5\n19,315,8.0\n19,316,7.5\n19,317,7.0\n19,318,6.5\n19,319,6.0\n19,320,6.5\n19,321,7.0\n19,322,7.5\n19,323,8.0\n19,324,8.5\n19,325,16.0\n19,326,15.5\n19,327,15.0\n19,328,14.5\n19,329,14.0\n19,330,13.5\n19,331,13.0\n19,332,12.5\n19,333,12.0\n19,334,11.5\n19,335,11.0\n19,336,10.5\n19,337,10.0\n19,338,9.5\n19,339,9.0\n19,340,8.5\n19,341,8.0\n19,342,7.5\n19,343,7.0\n19,344,6.5\n19,345,7.0\n19,346,7.5\n19,347,8.0\n19,348,8.5\n19,349,9.0\n19,350,16.5\n19,351,16.0\n19,352,15.5\n19,353,15.0\n19,354,14.5\n19,355,14.0\n19,356,13.5\n19,357,13.0\n19,358,12.5\n19,359,12.0\n19,360,11.5\n19,361,11.0\n19,362,10.5\n19,363,10.0\n19,364,9.5\n19,365,9.0\n19,366,8.5\n19,367,8.0\n19,368,7.5\n19,369,7.0\n19,370,7.5\n19,371,8.0\n19,372,8.5\n19,373,9.0\n19,374,9.5\n19,375,17.0\n19,376,16.5\n19,377,16.0\n19,378,15.5\n19,379,15.0\n19,380,14.5\n19,381,14.0\n19,382,13.5\n19,383,13.0\n19,384,12.5\n19,385,12.0\n19,386,11.5\n19,387,11.0\n19,388,10.5\n19,389,10.0\n19,390,9.5\n19,391,9.0\n19,392,8.5\n19,393,8.0\n19,394,7.5\n19,395,8.0\n19,396,8.5\n19,397,9.0\n19,398,9.5\n19,399,10.0\n19,400,17.5\n19,401,17.0\n19,402,16.5\n19,403,16.0\n19,404,15.5\n19,405,15.0\n19,406,14.5\n19,407,14.0\n19,408,13.5\n19,409,13.0\n19,410,12.5\n19,411,12.0\n19,412,11.5\n19,413,11.0\n19,414,10.5\n19,415,10.0\n19,416,9.5\n19,417,9.0\n19,418,8.5\n19,419,8.0\n19,420,8.5\n19,421,9.0\n19,422,9.5\n19,423,10.0\n19,424,10.5\n19,425,18.0\n19,426,17.5\n19,427,17.0\n19,428,16.5\n19,429,16.0\n19,430,15.5\n19,431,15.0\n19,432,14.5\n19,433,14.0\n19,434,13.5\n19,435,13.0\n19,436,12.5\n19,437,12.0\n19,438,11.5\n19,439,11.0\n19,440,10.5\n19,441,10.0\n19,442,9.5\n19,443,9.0\n19,444,8.5\n19,445,9.0\n19,446,9.5\n19,447,10.0\n19,448,10.5\n19,449,11.0\n19,450,18.5\n19,451,18.0\n19,452,17.5\n19,453,17.0\n19,454,16.5\n19,455,16.0\n19,456,15.5\n19,457,15.0\n19,458,14.5\n19,459,14.0\n19,460,13.5\n19,461,13.0\n19,462,12.5\n19,463,12.0\n19,464,11.5\n19,465,11.0\n19,466,10.5\n19,467,10.0\n19,468,9.5\n19,469,9.0\n19,470,9.5\n19,471,10.0\n19,472,10.5\n19,473,11.0\n19,474,11.5\n19,475,19.0\n19,476,18.5\n19,477,18.0\n19,478,17.5\n19,479,17.0\n19,480,16.5\n19,481,16.0\n19,482,15.5\n19,483,15.0\n19,484,14.5\n19,485,14.0\n19,486,13.5\n19,487,13.0\n19,488,12.5\n19,489,12.0\n19,490,11.5\n19,491,11.0\n19,492,10.5\n19,493,10.0\n19,494,9.5\n19,495,10.0\n19,496,10.5\n19,497,11.0\n19,498,11.5\n19,499,12.0\n19,500,19.5\n19,501,19.0\n19,502,18.5\n19,503,18.0\n19,504,17.5\n19,505,17.0\n19,506,16.5\n19,507,16.0\n19,508,15.5\n19,509,15.0\n19,510,14.5\n19,511,14.0\n19,512,13.5\n19,513,13.0\n19,514,12.5\n19,515,12.0\n19,516,11.5\n19,517,11.0\n19,518,10.5\n19,519,10.0\n19,520,10.5\n19,521,11.0\n19,522,11.5\n19,523,12.0\n19,524,12.5\n19,525,20.0\n19,526,19.5\n19,527,19.0\n19,528,18.5\n19,529,18.0\n19,530,17.5\n19,531,17.0\n19,532,16.5\n19,533,16.0\n19,534,15.5\n19,535,15.0\n19,536,14.5\n19,537,14.0\n19,538,13.5\n19,539,13.0\n19,540,12.5\n19,541,12.0\n19,542,11.5\n19,543,11.0\n19,544,10.5\n19,545,11.0\n19,546,11.5\n19,547,12.0\n19,548,12.5\n19,549,13.0\n19,550,20.5\n19,551,20.0\n19,552,19.5\n19,553,19.0\n19,554,18.5\n19,555,18.0\n19,556,17.5\n19,557,17.0\n19,558,16.5\n19,559,16.0\n19,560,15.5\n19,561,15.0\n19,562,14.5\n19,563,14.0\n19,564,13.5\n19,565,13.0\n19,566,12.5\n19,567,12.0\n19,568,11.5\n19,569,11.0\n19,570,11.5\n19,571,12.0\n19,572,12.5\n19,573,13.0\n19,574,13.5\n19,575,21.0\n19,576,20.5\n19,577,20.0\n19,578,19.5\n19,579,19.0\n19,580,18.5\n19,581,18.0\n19,582,17.5\n19,583,17.0\n19,584,16.5\n19,585,16.0\n19,586,15.5\n19,587,15.0\n19,588,14.5\n19,589,14.0\n19,590,13.5\n19,591,13.0\n19,592,12.5\n19,593,12.0\n19,594,11.5\n19,595,12.0\n19,596,12.5\n19,597,13.0\n19,598,13.5\n19,599,14.0\n19,600,21.5\n19,601,21.0\n19,602,20.5\n19,603,20.0\n19,604,19.5\n19,605,19.0\n19,606,18.5\n19,607,18.0\n19,608,17.5\n19,609,17.0\n19,610,16.5\n19,611,16.0\n19,612,15.5\n19,613,15.0\n19,614,14.5\n19,615,14.0\n19,616,13.5\n19,617,13.0\n19,618,12.5\n19,619,12.0\n19,620,12.5\n19,621,13.0\n19,622,13.5\n19,623,14.0\n19,624,14.5\n20,0,10.0\n20,1,9.5\n20,2,9.0\n20,3,8.5\n20,4,8.0\n20,5,7.5\n20,6,7.0\n20,7,6.5\n20,8,6.0\n20,9,5.5\n20,10,5.0\n20,11,4.5\n20,12,4.0\n20,13,3.5\n20,14,3.0\n20,15,2.5\n20,16,2.0\n20,17,1.5\n20,18,1.0\n20,19,0.5\n20,20,0\n20,21,0.5\n20,22,1.0\n20,23,1.5\n20,24,2.0\n20,25,10.5\n20,26,10.0\n20,27,9.5\n20,28,9.0\n20,29,8.5\n20,30,8.0\n20,31,7.5\n20,32,7.0\n20,33,6.5\n20,34,6.0\n20,35,5.5\n20,36,5.0\n20,37,4.5\n20,38,4.0\n20,39,3.5\n20,40,3.0\n20,41,2.5\n20,42,2.0\n20,43,1.5\n20,44,1.0\n20,45,0.5\n20,46,1.0\n20,47,1.5\n20,48,2.0\n20,49,2.5\n20,50,11.0\n20,51,10.5\n20,52,10.0\n20,53,9.5\n20,54,9.0\n20,55,8.5\n20,56,8.0\n20,57,7.5\n20,58,7.0\n20,59,6.5\n20,60,6.0\n20,61,5.5\n20,62,5.0\n20,63,4.5\n20,64,4.0\n20,65,3.5\n20,66,3.0\n20,67,2.5\n20,68,2.0\n20,69,1.5\n20,70,1.0\n20,71,1.5\n20,72,2.0\n20,73,2.5\n20,74,3.0\n20,75,11.5\n20,76,11.0\n20,77,10.5\n20,78,10.0\n20,79,9.5\n20,80,9.0\n20,81,8.5\n20,82,8.0\n20,83,7.5\n20,84,7.0\n20,85,6.5\n20,86,6.0\n20,87,5.5\n20,88,5.0\n20,89,4.5\n20,90,4.0\n20,91,3.5\n20,92,3.0\n20,93,2.5\n20,94,2.0\n20,95,1.5\n20,96,2.0\n20,97,2.5\n20,98,3.0\n20,99,3.5\n20,100,12.0\n20,101,11.5\n20,102,11.0\n20,103,10.5\n20,104,10.0\n20,105,9.5\n20,106,9.0\n20,107,8.5\n20,108,8.0\n20,109,7.5\n20,110,7.0\n20,111,6.5\n20,112,6.0\n20,113,5.5\n20,114,5.0\n20,115,4.5\n20,116,4.0\n20,117,3.5\n20,118,3.0\n20,119,2.5\n20,120,2.0\n20,121,2.5\n20,122,3.0\n20,123,3.5\n20,124,4.0\n20,125,12.5\n20,126,12.0\n20,127,11.5\n20,128,11.0\n20,129,10.5\n20,130,10.0\n20,131,9.5\n20,132,9.0\n20,133,8.5\n20,134,8.0\n20,135,7.5\n20,136,7.0\n20,137,6.5\n20,138,6.0\n20,139,5.5\n20,140,5.0\n20,141,4.5\n20,142,4.0\n20,143,3.5\n20,144,3.0\n20,145,2.5\n20,146,3.0\n20,147,3.5\n20,148,4.0\n20,149,4.5\n20,150,13.0\n20,151,12.5\n20,152,12.0\n20,153,11.5\n20,154,11.0\n20,155,10.5\n20,156,10.0\n20,157,9.5\n20,158,9.0\n20,159,8.5\n20,160,8.0\n20,161,7.5\n20,162,7.0\n20,163,6.5\n20,164,6.0\n20,165,5.5\n20,166,5.0\n20,167,4.5\n20,168,4.0\n20,169,3.5\n20,170,3.0\n20,171,3.5\n20,172,4.0\n20,173,4.5\n20,174,5.0\n20,175,13.5\n20,176,13.0\n20,177,12.5\n20,178,12.0\n20,179,11.5\n20,180,11.0\n20,181,10.5\n20,182,10.0\n20,183,9.5\n20,184,9.0\n20,185,8.5\n20,186,8.0\n20,187,7.5\n20,188,7.0\n20,189,6.5\n20,190,6.0\n20,191,5.5\n20,192,5.0\n20,193,4.5\n20,194,4.0\n20,195,3.5\n20,196,4.0\n20,197,4.5\n20,198,5.0\n20,199,5.5\n20,200,14.0\n20,201,13.5\n20,202,13.0\n20,203,12.5\n20,204,12.0\n20,205,11.5\n20,206,11.0\n20,207,10.5\n20,208,10.0\n20,209,9.5\n20,210,9.0\n20,211,8.5\n20,212,8.0\n20,213,7.5\n20,214,7.0\n20,215,6.5\n20,216,6.0\n20,217,5.5\n20,218,5.0\n20,219,4.5\n20,220,4.0\n20,221,4.5\n20,222,5.0\n20,223,5.5\n20,224,6.0\n20,225,14.5\n20,226,14.0\n20,227,13.5\n20,228,13.0\n20,229,12.5\n20,230,12.0\n20,231,11.5\n20,232,11.0\n20,233,10.5\n20,234,10.0\n20,235,9.5\n20,236,9.0\n20,237,8.5\n20,238,8.0\n20,239,7.5\n20,240,7.0\n20,241,6.5\n20,242,6.0\n20,243,5.5\n20,244,5.0\n20,245,4.5\n20,246,5.0\n20,247,5.5\n20,248,6.0\n20,249,6.5\n20,250,15.0\n20,251,14.5\n20,252,14.0\n20,253,13.5\n20,254,13.0\n20,255,12.5\n20,256,12.0\n20,257,11.5\n20,258,11.0\n20,259,10.5\n20,260,10.0\n20,261,9.5\n20,262,9.0\n20,263,8.5\n20,264,8.0\n20,265,7.5\n20,266,7.0\n20,267,6.5\n20,268,6.0\n20,269,5.5\n20,270,5.0\n20,271,5.5\n20,272,6.0\n20,273,6.5\n20,274,7.0\n20,275,15.5\n20,276,15.0\n20,277,14.5\n20,278,14.0\n20,279,13.5\n20,280,13.0\n20,281,12.5\n20,282,12.0\n20,283,11.5\n20,284,11.0\n20,285,10.5\n20,286,10.0\n20,287,9.5\n20,288,9.0\n20,289,8.5\n20,290,8.0\n20,291,7.5\n20,292,7.0\n20,293,6.5\n20,294,6.0\n20,295,5.5\n20,296,6.0\n20,297,6.5\n20,298,7.0\n20,299,7.5\n20,300,16.0\n20,301,15.5\n20,302,15.0\n20,303,14.5\n20,304,14.0\n20,305,13.5\n20,306,13.0\n20,307,12.5\n20,308,12.0\n20,309,11.5\n20,310,11.0\n20,311,10.5\n20,312,10.0\n20,313,9.5\n20,314,9.0\n20,315,8.5\n20,316,8.0\n20,317,7.5\n20,318,7.0\n20,319,6.5\n20,320,6.0\n20,321,6.5\n20,322,7.0\n20,323,7.5\n20,324,8.0\n20,325,16.5\n20,326,16.0\n20,327,15.5\n20,328,15.0\n20,329,14.5\n20,330,14.0\n20,331,13.5\n20,332,13.0\n20,333,12.5\n20,334,12.0\n20,335,11.5\n20,336,11.0\n20,337,10.5\n20,338,10.0\n20,339,9.5\n20,340,9.0\n20,341,8.5\n20,342,8.0\n20,343,7.5\n20,344,7.0\n20,345,6.5\n20,346,7.0\n20,347,7.5\n20,348,8.0\n20,349,8.5\n20,350,17.0\n20,351,16.5\n20,352,16.0\n20,353,15.5\n20,354,15.0\n20,355,14.5\n20,356,14.0\n20,357,13.5\n20,358,13.0\n20,359,12.5\n20,360,12.0\n20,361,11.5\n20,362,11.0\n20,363,10.5\n20,364,10.0\n20,365,9.5\n20,366,9.0\n20,367,8.5\n20,368,8.0\n20,369,7.5\n20,370,7.0\n20,371,7.5\n20,372,8.0\n20,373,8.5\n20,374,9.0\n20,375,17.5\n20,376,17.0\n20,377,16.5\n20,378,16.0\n20,379,15.5\n20,380,15.0\n20,381,14.5\n20,382,14.0\n20,383,13.5\n20,384,13.0\n20,385,12.5\n20,386,12.0\n20,387,11.5\n20,388,11.0\n20,389,10.5\n20,390,10.0\n20,391,9.5\n20,392,9.0\n20,393,8.5\n20,394,8.0\n20,395,7.5\n20,396,8.0\n20,397,8.5\n20,398,9.0\n20,399,9.5\n20,400,18.0\n20,401,17.5\n20,402,17.0\n20,403,16.5\n20,404,16.0\n20,405,15.5\n20,406,15.0\n20,407,14.5\n20,408,14.0\n20,409,13.5\n20,410,13.0\n20,411,12.5\n20,412,12.0\n20,413,11.5\n20,414,11.0\n20,415,10.5\n20,416,10.0\n20,417,9.5\n20,418,9.0\n20,419,8.5\n20,420,8.0\n20,421,8.5\n20,422,9.0\n20,423,9.5\n20,424,10.0\n20,425,18.5\n20,426,18.0\n20,427,17.5\n20,428,17.0\n20,429,16.5\n20,430,16.0\n20,431,15.5\n20,432,15.0\n20,433,14.5\n20,434,14.0\n20,435,13.5\n20,436,13.0\n20,437,12.5\n20,438,12.0\n20,439,11.5\n20,440,11.0\n20,441,10.5\n20,442,10.0\n20,443,9.5\n20,444,9.0\n20,445,8.5\n20,446,9.0\n20,447,9.5\n20,448,10.0\n20,449,10.5\n20,450,19.0\n20,451,18.5\n20,452,18.0\n20,453,17.5\n20,454,17.0\n20,455,16.5\n20,456,16.0\n20,457,15.5\n20,458,15.0\n20,459,14.5\n20,460,14.0\n20,461,13.5\n20,462,13.0\n20,463,12.5\n20,464,12.0\n20,465,11.5\n20,466,11.0\n20,467,10.5\n20,468,10.0\n20,469,9.5\n20,470,9.0\n20,471,9.5\n20,472,10.0\n20,473,10.5\n20,474,11.0\n20,475,19.5\n20,476,19.0\n20,477,18.5\n20,478,18.0\n20,479,17.5\n20,480,17.0\n20,481,16.5\n20,482,16.0\n20,483,15.5\n20,484,15.0\n20,485,14.5\n20,486,14.0\n20,487,13.5\n20,488,13.0\n20,489,12.5\n20,490,12.0\n20,491,11.5\n20,492,11.0\n20,493,10.5\n20,494,10.0\n20,495,9.5\n20,496,10.0\n20,497,10.5\n20,498,11.0\n20,499,11.5\n20,500,20.0\n20,501,19.5\n20,502,19.0\n20,503,18.5\n20,504,18.0\n20,505,17.5\n20,506,17.0\n20,507,16.5\n20,508,16.0\n20,509,15.5\n20,510,15.0\n20,511,14.5\n20,512,14.0\n20,513,13.5\n20,514,13.0\n20,515,12.5\n20,516,12.0\n20,517,11.5\n20,518,11.0\n20,519,10.5\n20,520,10.0\n20,521,10.5\n20,522,11.0\n20,523,11.5\n20,524,12.0\n20,525,20.5\n20,526,20.0\n20,527,19.5\n20,528,19.0\n20,529,18.5\n20,530,18.0\n20,531,17.5\n20,532,17.0\n20,533,16.5\n20,534,16.0\n20,535,15.5\n20,536,15.0\n20,537,14.5\n20,538,14.0\n20,539,13.5\n20,540,13.0\n20,541,12.5\n20,542,12.0\n20,543,11.5\n20,544,11.0\n20,545,10.5\n20,546,11.0\n20,547,11.5\n20,548,12.0\n20,549,12.5\n20,550,21.0\n20,551,20.5\n20,552,20.0\n20,553,19.5\n20,554,19.0\n20,555,18.5\n20,556,18.0\n20,557,17.5\n20,558,17.0\n20,559,16.5\n20,560,16.0\n20,561,15.5\n20,562,15.0\n20,563,14.5\n20,564,14.0\n20,565,13.5\n20,566,13.0\n20,567,12.5\n20,568,12.0\n20,569,11.5\n20,570,11.0\n20,571,11.5\n20,572,12.0\n20,573,12.5\n20,574,13.0\n20,575,21.5\n20,576,21.0\n20,577,20.5\n20,578,20.0\n20,579,19.5\n20,580,19.0\n20,581,18.5\n20,582,18.0\n20,583,17.5\n20,584,17.0\n20,585,16.5\n20,586,16.0\n20,587,15.5\n20,588,15.0\n20,589,14.5\n20,590,14.0\n20,591,13.5\n20,592,13.0\n20,593,12.5\n20,594,12.0\n20,595,11.5\n20,596,12.0\n20,597,12.5\n20,598,13.0\n20,599,13.5\n20,600,22.0\n20,601,21.5\n20,602,21.0\n20,603,20.5\n20,604,20.0\n20,605,19.5\n20,606,19.0\n20,607,18.5\n20,608,18.0\n20,609,17.5\n20,610,17.0\n20,611,16.5\n20,612,16.0\n20,613,15.5\n20,614,15.0\n20,615,14.5\n20,616,14.0\n20,617,13.5\n20,618,13.0\n20,619,12.5\n20,620,12.0\n20,621,12.5\n20,622,13.0\n20,623,13.5\n20,624,14.0\n21,0,10.5\n21,1,10.0\n21,2,9.5\n21,3,9.0\n21,4,8.5\n21,5,8.0\n21,6,7.5\n21,7,7.0\n21,8,6.5\n21,9,6.0\n21,10,5.5\n21,11,5.0\n21,12,4.5\n21,13,4.0\n21,14,3.5\n21,15,3.0\n21,16,2.5\n21,17,2.0\n21,18,1.5\n21,19,1.0\n21,20,0.5\n21,21,0\n21,22,0.5\n21,23,1.0\n21,24,1.5\n21,25,11.0\n21,26,10.5\n21,27,10.0\n21,28,9.5\n21,29,9.0\n21,30,8.5\n21,31,8.0\n21,32,7.5\n21,33,7.0\n21,34,6.5\n21,35,6.0\n21,36,5.5\n21,37,5.0\n21,38,4.5\n21,39,4.0\n21,40,3.5\n21,41,3.0\n21,42,2.5\n21,43,2.0\n21,44,1.5\n21,45,1.0\n21,46,0.5\n21,47,1.0\n21,48,1.5\n21,49,2.0\n21,50,11.5\n21,51,11.0\n21,52,10.5\n21,53,10.0\n21,54,9.5\n21,55,9.0\n21,56,8.5\n21,57,8.0\n21,58,7.5\n21,59,7.0\n21,60,6.5\n21,61,6.0\n21,62,5.5\n21,63,5.0\n21,64,4.5\n21,65,4.0\n21,66,3.5\n21,67,3.0\n21,68,2.5\n21,69,2.0\n21,70,1.5\n21,71,1.0\n21,72,1.5\n21,73,2.0\n21,74,2.5\n21,75,12.0\n21,76,11.5\n21,77,11.0\n21,78,10.5\n21,79,10.0\n21,80,9.5\n21,81,9.0\n21,82,8.5\n21,83,8.0\n21,84,7.5\n21,85,7.0\n21,86,6.5\n21,87,6.0\n21,88,5.5\n21,89,5.0\n21,90,4.5\n21,91,4.0\n21,92,3.5\n21,93,3.0\n21,94,2.5\n21,95,2.0\n21,96,1.5\n21,97,2.0\n21,98,2.5\n21,99,3.0\n21,100,12.5\n21,101,12.0\n21,102,11.5\n21,103,11.0\n21,104,10.5\n21,105,10.0\n21,106,9.5\n21,107,9.0\n21,108,8.5\n21,109,8.0\n21,110,7.5\n21,111,7.0\n21,112,6.5\n21,113,6.0\n21,114,5.5\n21,115,5.0\n21,116,4.5\n21,117,4.0\n21,118,3.5\n21,119,3.0\n21,120,2.5\n21,121,2.0\n21,122,2.5\n21,123,3.0\n21,124,3.5\n21,125,13.0\n21,126,12.5\n21,127,12.0\n21,128,11.5\n21,129,11.0\n21,130,10.5\n21,131,10.0\n21,132,9.5\n21,133,9.0\n21,134,8.5\n21,135,8.0\n21,136,7.5\n21,137,7.0\n21,138,6.5\n21,139,6.0\n21,140,5.5\n21,141,5.0\n21,142,4.5\n21,143,4.0\n21,144,3.5\n21,145,3.0\n21,146,2.5\n21,147,3.0\n21,148,3.5\n21,149,4.0\n21,150,13.5\n21,151,13.0\n21,152,12.5\n21,153,12.0\n21,154,11.5\n21,155,11.0\n21,156,10.5\n21,157,10.0\n21,158,9.5\n21,159,9.0\n21,160,8.5\n21,161,8.0\n21,162,7.5\n21,163,7.0\n21,164,6.5\n21,165,6.0\n21,166,5.5\n21,167,5.0\n21,168,4.5\n21,169,4.0\n21,170,3.5\n21,171,3.0\n21,172,3.5\n21,173,4.0\n21,174,4.5\n21,175,14.0\n21,176,13.5\n21,177,13.0\n21,178,12.5\n21,179,12.0\n21,180,11.5\n21,181,11.0\n21,182,10.5\n21,183,10.0\n21,184,9.5\n21,185,9.0\n21,186,8.5\n21,187,8.0\n21,188,7.5\n21,189,7.0\n21,190,6.5\n21,191,6.0\n21,192,5.5\n21,193,5.0\n21,194,4.5\n21,195,4.0\n21,196,3.5\n21,197,4.0\n21,198,4.5\n21,199,5.0\n21,200,14.5\n21,201,14.0\n21,202,13.5\n21,203,13.0\n21,204,12.5\n21,205,12.0\n21,206,11.5\n21,207,11.0\n21,208,10.5\n21,209,10.0\n21,210,9.5\n21,211,9.0\n21,212,8.5\n21,213,8.0\n21,214,7.5\n21,215,7.0\n21,216,6.5\n21,217,6.0\n21,218,5.5\n21,219,5.0\n21,220,4.5\n21,221,4.0\n21,222,4.5\n21,223,5.0\n21,224,5.5\n21,225,15.0\n21,226,14.5\n21,227,14.0\n21,228,13.5\n21,229,13.0\n21,230,12.5\n21,231,12.0\n21,232,11.5\n21,233,11.0\n21,234,10.5\n21,235,10.0\n21,236,9.5\n21,237,9.0\n21,238,8.5\n21,239,8.0\n21,240,7.5\n21,241,7.0\n21,242,6.5\n21,243,6.0\n21,244,5.5\n21,245,5.0\n21,246,4.5\n21,247,5.0\n21,248,5.5\n21,249,6.0\n21,250,15.5\n21,251,15.0\n21,252,14.5\n21,253,14.0\n21,254,13.5\n21,255,13.0\n21,256,12.5\n21,257,12.0\n21,258,11.5\n21,259,11.0\n21,260,10.5\n21,261,10.0\n21,262,9.5\n21,263,9.0\n21,264,8.5\n21,265,8.0\n21,266,7.5\n21,267,7.0\n21,268,6.5\n21,269,6.0\n21,270,5.5\n21,271,5.0\n21,272,5.5\n21,273,6.0\n21,274,6.5\n21,275,16.0\n21,276,15.5\n21,277,15.0\n21,278,14.5\n21,279,14.0\n21,280,13.5\n21,281,13.0\n21,282,12.5\n21,283,12.0\n21,284,11.5\n21,285,11.0\n21,286,10.5\n21,287,10.0\n21,288,9.5\n21,289,9.0\n21,290,8.5\n21,291,8.0\n21,292,7.5\n21,293,7.0\n21,294,6.5\n21,295,6.0\n21,296,5.5\n21,297,6.0\n21,298,6.5\n21,299,7.0\n21,300,16.5\n21,301,16.0\n21,302,15.5\n21,303,15.0\n21,304,14.5\n21,305,14.0\n21,306,13.5\n21,307,13.0\n21,308,12.5\n21,309,12.0\n21,310,11.5\n21,311,11.0\n21,312,10.5\n21,313,10.0\n21,314,9.5\n21,315,9.0\n21,316,8.5\n21,317,8.0\n21,318,7.5\n21,319,7.0\n21,320,6.5\n21,321,6.0\n21,322,6.5\n21,323,7.0\n21,324,7.5\n21,325,17.0\n21,326,16.5\n21,327,16.0\n21,328,15.5\n21,329,15.0\n21,330,14.5\n21,331,14.0\n21,332,13.5\n21,333,13.0\n21,334,12.5\n21,335,12.0\n21,336,11.5\n21,337,11.0\n21,338,10.5\n21,339,10.0\n21,340,9.5\n21,341,9.0\n21,342,8.5\n21,343,8.0\n21,344,7.5\n21,345,7.0\n21,346,6.5\n21,347,7.0\n21,348,7.5\n21,349,8.0\n21,350,17.5\n21,351,17.0\n21,352,16.5\n21,353,16.0\n21,354,15.5\n21,355,15.0\n21,356,14.5\n21,357,14.0\n21,358,13.5\n21,359,13.0\n21,360,12.5\n21,361,12.0\n21,362,11.5\n21,363,11.0\n21,364,10.5\n21,365,10.0\n21,366,9.5\n21,367,9.0\n21,368,8.5\n21,369,8.0\n21,370,7.5\n21,371,7.0\n21,372,7.5\n21,373,8.0\n21,374,8.5\n21,375,18.0\n21,376,17.5\n21,377,17.0\n21,378,16.5\n21,379,16.0\n21,380,15.5\n21,381,15.0\n21,382,14.5\n21,383,14.0\n21,384,13.5\n21,385,13.0\n21,386,12.5\n21,387,12.0\n21,388,11.5\n21,389,11.0\n21,390,10.5\n21,391,10.0\n21,392,9.5\n21,393,9.0\n21,394,8.5\n21,395,8.0\n21,396,7.5\n21,397,8.0\n21,398,8.5\n21,399,9.0\n21,400,18.5\n21,401,18.0\n21,402,17.5\n21,403,17.0\n21,404,16.5\n21,405,16.0\n21,406,15.5\n21,407,15.0\n21,408,14.5\n21,409,14.0\n21,410,13.5\n21,411,13.0\n21,412,12.5\n21,413,12.0\n21,414,11.5\n21,415,11.0\n21,416,10.5\n21,417,10.0\n21,418,9.5\n21,419,9.0\n21,420,8.5\n21,421,8.0\n21,422,8.5\n21,423,9.0\n21,424,9.5\n21,425,19.0\n21,426,18.5\n21,427,18.0\n21,428,17.5\n21,429,17.0\n21,430,16.5\n21,431,16.0\n21,432,15.5\n21,433,15.0\n21,434,14.5\n21,435,14.0\n21,436,13.5\n21,437,13.0\n21,438,12.5\n21,439,12.0\n21,440,11.5\n21,441,11.0\n21,442,10.5\n21,443,10.0\n21,444,9.5\n21,445,9.0\n21,446,8.5\n21,447,9.0\n21,448,9.5\n21,449,10.0\n21,450,19.5\n21,451,19.0\n21,452,18.5\n21,453,18.0\n21,454,17.5\n21,455,17.0\n21,456,16.5\n21,457,16.0\n21,458,15.5\n21,459,15.0\n21,460,14.5\n21,461,14.0\n21,462,13.5\n21,463,13.0\n21,464,12.5\n21,465,12.0\n21,466,11.5\n21,467,11.0\n21,468,10.5\n21,469,10.0\n21,470,9.5\n21,471,9.0\n21,472,9.5\n21,473,10.0\n21,474,10.5\n21,475,20.0\n21,476,19.5\n21,477,19.0\n21,478,18.5\n21,479,18.0\n21,480,17.5\n21,481,17.0\n21,482,16.5\n21,483,16.0\n21,484,15.5\n21,485,15.0\n21,486,14.5\n21,487,14.0\n21,488,13.5\n21,489,13.0\n21,490,12.5\n21,491,12.0\n21,492,11.5\n21,493,11.0\n21,494,10.5\n21,495,10.0\n21,496,9.5\n21,497,10.0\n21,498,10.5\n21,499,11.0\n21,500,20.5\n21,501,20.0\n21,502,19.5\n21,503,19.0\n21,504,18.5\n21,505,18.0\n21,506,17.5\n21,507,17.0\n21,508,16.5\n21,509,16.0\n21,510,15.5\n21,511,15.0\n21,512,14.5\n21,513,14.0\n21,514,13.5\n21,515,13.0\n21,516,12.5\n21,517,12.0\n21,518,11.5\n21,519,11.0\n21,520,10.5\n21,521,10.0\n21,522,10.5\n21,523,11.0\n21,524,11.5\n21,525,21.0\n21,526,20.5\n21,527,20.0\n21,528,19.5\n21,529,19.0\n21,530,18.5\n21,531,18.0\n21,532,17.5\n21,533,17.0\n21,534,16.5\n21,535,16.0\n21,536,15.5\n21,537,15.0\n21,538,14.5\n21,539,14.0\n21,540,13.5\n21,541,13.0\n21,542,12.5\n21,543,12.0\n21,544,11.5\n21,545,11.0\n21,546,10.5\n21,547,11.0\n21,548,11.5\n21,549,12.0\n21,550,21.5\n21,551,21.0\n21,552,20.5\n21,553,20.0\n21,554,19.5\n21,555,19.0\n21,556,18.5\n21,557,18.0\n21,558,17.5\n21,559,17.0\n21,560,16.5\n21,561,16.0\n21,562,15.5\n21,563,15.0\n21,564,14.5\n21,565,14.0\n21,566,13.5\n21,567,13.0\n21,568,12.5\n21,569,12.0\n21,570,11.5\n21,571,11.0\n21,572,11.5\n21,573,12.0\n21,574,12.5\n21,575,22.0\n21,576,21.5\n21,577,21.0\n21,578,20.5\n21,579,20.0\n21,580,19.5\n21,581,19.0\n21,582,18.5\n21,583,18.0\n21,584,17.5\n21,585,17.0\n21,586,16.5\n21,587,16.0\n21,588,15.5\n21,589,15.0\n21,590,14.5\n21,591,14.0\n21,592,13.5\n21,593,13.0\n21,594,12.5\n21,595,12.0\n21,596,11.5\n21,597,12.0\n21,598,12.5\n21,599,13.0\n21,600,22.5\n21,601,22.0\n21,602,21.5\n21,603,21.0\n21,604,20.5\n21,605,20.0\n21,606,19.5\n21,607,19.0\n21,608,18.5\n21,609,18.0\n21,610,17.5\n21,611,17.0\n21,612,16.5\n21,613,16.0\n21,614,15.5\n21,615,15.0\n21,616,14.5\n21,617,14.0\n21,618,13.5\n21,619,13.0\n21,620,12.5\n21,621,12.0\n21,622,12.5\n21,623,13.0\n21,624,13.5\n22,0,11.0\n22,1,10.5\n22,2,10.0\n22,3,9.5\n22,4,9.0\n22,5,8.5\n22,6,8.0\n22,7,7.5\n22,8,7.0\n22,9,6.5\n22,10,6.0\n22,11,5.5\n22,12,5.0\n22,13,4.5\n22,14,4.0\n22,15,3.5\n22,16,3.0\n22,17,2.5\n22,18,2.0\n22,19,1.5\n22,20,1.0\n22,21,0.5\n22,22,0\n22,23,0.5\n22,24,1.0\n22,25,11.5\n22,26,11.0\n22,27,10.5\n22,28,10.0\n22,29,9.5\n22,30,9.0\n22,31,8.5\n22,32,8.0\n22,33,7.5\n22,34,7.0\n22,35,6.5\n22,36,6.0\n22,37,5.5\n22,38,5.0\n22,39,4.5\n22,40,4.0\n22,41,3.5\n22,42,3.0\n22,43,2.5\n22,44,2.0\n22,45,1.5\n22,46,1.0\n22,47,0.5\n22,48,1.0\n22,49,1.5\n22,50,12.0\n22,51,11.5\n22,52,11.0\n22,53,10.5\n22,54,10.0\n22,55,9.5\n22,56,9.0\n22,57,8.5\n22,58,8.0\n22,59,7.5\n22,60,7.0\n22,61,6.5\n22,62,6.0\n22,63,5.5\n22,64,5.0\n22,65,4.5\n22,66,4.0\n22,67,3.5\n22,68,3.0\n22,69,2.5\n22,70,2.0\n22,71,1.5\n22,72,1.0\n22,73,1.5\n22,74,2.0\n22,75,12.5\n22,76,12.0\n22,77,11.5\n22,78,11.0\n22,79,10.5\n22,80,10.0\n22,81,9.5\n22,82,9.0\n22,83,8.5\n22,84,8.0\n22,85,7.5\n22,86,7.0\n22,87,6.5\n22,88,6.0\n22,89,5.5\n22,90,5.0\n22,91,4.5\n22,92,4.0\n22,93,3.5\n22,94,3.0\n22,95,2.5\n22,96,2.0\n22,97,1.5\n22,98,2.0\n22,99,2.5\n22,100,13.0\n22,101,12.5\n22,102,12.0\n22,103,11.5\n22,104,11.0\n22,105,10.5\n22,106,10.0\n22,107,9.5\n22,108,9.0\n22,109,8.5\n22,110,8.0\n22,111,7.5\n22,112,7.0\n22,113,6.5\n22,114,6.0\n22,115,5.5\n22,116,5.0\n22,117,4.5\n22,118,4.0\n22,119,3.5\n22,120,3.0\n22,121,2.5\n22,122,2.0\n22,123,2.5\n22,124,3.0\n22,125,13.5\n22,126,13.0\n22,127,12.5\n22,128,12.0\n22,129,11.5\n22,130,11.0\n22,131,10.5\n22,132,10.0\n22,133,9.5\n22,134,9.0\n22,135,8.5\n22,136,8.0\n22,137,7.5\n22,138,7.0\n22,139,6.5\n22,140,6.0\n22,141,5.5\n22,142,5.0\n22,143,4.5\n22,144,4.0\n22,145,3.5\n22,146,3.0\n22,147,2.5\n22,148,3.0\n22,149,3.5\n22,150,14.0\n22,151,13.5\n22,152,13.0\n22,153,12.5\n22,154,12.0\n22,155,11.5\n22,156,11.0\n22,157,10.5\n22,158,10.0\n22,159,9.5\n22,160,9.0\n22,161,8.5\n22,162,8.0\n22,163,7.5\n22,164,7.0\n22,165,6.5\n22,166,6.0\n22,167,5.5\n22,168,5.0\n22,169,4.5\n22,170,4.0\n22,171,3.5\n22,172,3.0\n22,173,3.5\n22,174,4.0\n22,175,14.5\n22,176,14.0\n22,177,13.5\n22,178,13.0\n22,179,12.5\n22,180,12.0\n22,181,11.5\n22,182,11.0\n22,183,10.5\n22,184,10.0\n22,185,9.5\n22,186,9.0\n22,187,8.5\n22,188,8.0\n22,189,7.5\n22,190,7.0\n22,191,6.5\n22,192,6.0\n22,193,5.5\n22,194,5.0\n22,195,4.5\n22,196,4.0\n22,197,3.5\n22,198,4.0\n22,199,4.5\n22,200,15.0\n22,201,14.5\n22,202,14.0\n22,203,13.5\n22,204,13.0\n22,205,12.5\n22,206,12.0\n22,207,11.5\n22,208,11.0\n22,209,10.5\n22,210,10.0\n22,211,9.5\n22,212,9.0\n22,213,8.5\n22,214,8.0\n22,215,7.5\n22,216,7.0\n22,217,6.5\n22,218,6.0\n22,219,5.5\n22,220,5.0\n22,221,4.5\n22,222,4.0\n22,223,4.5\n22,224,5.0\n22,225,15.5\n22,226,15.0\n22,227,14.5\n22,228,14.0\n22,229,13.5\n22,230,13.0\n22,231,12.5\n22,232,12.0\n22,233,11.5\n22,234,11.0\n22,235,10.5\n22,236,10.0\n22,237,9.5\n22,238,9.0\n22,239,8.5\n22,240,8.0\n22,241,7.5\n22,242,7.0\n22,243,6.5\n22,244,6.0\n22,245,5.5\n22,246,5.0\n22,247,4.5\n22,248,5.0\n22,249,5.5\n22,250,16.0\n22,251,15.5\n22,252,15.0\n22,253,14.5\n22,254,14.0\n22,255,13.5\n22,256,13.0\n22,257,12.5\n22,258,12.0\n22,259,11.5\n22,260,11.0\n22,261,10.5\n22,262,10.0\n22,263,9.5\n22,264,9.0\n22,265,8.5\n22,266,8.0\n22,267,7.5\n22,268,7.0\n22,269,6.5\n22,270,6.0\n22,271,5.5\n22,272,5.0\n22,273,5.5\n22,274,6.0\n22,275,16.5\n22,276,16.0\n22,277,15.5\n22,278,15.0\n22,279,14.5\n22,280,14.0\n22,281,13.5\n22,282,13.0\n22,283,12.5\n22,284,12.0\n22,285,11.5\n22,286,11.0\n22,287,10.5\n22,288,10.0\n22,289,9.5\n22,290,9.0\n22,291,8.5\n22,292,8.0\n22,293,7.5\n22,294,7.0\n22,295,6.5\n22,296,6.0\n22,297,5.5\n22,298,6.0\n22,299,6.5\n22,300,17.0\n22,301,16.5\n22,302,16.0\n22,303,15.5\n22,304,15.0\n22,305,14.5\n22,306,14.0\n22,307,13.5\n22,308,13.0\n22,309,12.5\n22,310,12.0\n22,311,11.5\n22,312,11.0\n22,313,10.5\n22,314,10.0\n22,315,9.5\n22,316,9.0\n22,317,8.5\n22,318,8.0\n22,319,7.5\n22,320,7.0\n22,321,6.5\n22,322,6.0\n22,323,6.5\n22,324,7.0\n22,325,17.5\n22,326,17.0\n22,327,16.5\n22,328,16.0\n22,329,15.5\n22,330,15.0\n22,331,14.5\n22,332,14.0\n22,333,13.5\n22,334,13.0\n22,335,12.5\n22,336,12.0\n22,337,11.5\n22,338,11.0\n22,339,10.5\n22,340,10.0\n22,341,9.5\n22,342,9.0\n22,343,8.5\n22,344,8.0\n22,345,7.5\n22,346,7.0\n22,347,6.5\n22,348,7.0\n22,349,7.5\n22,350,18.0\n22,351,17.5\n22,352,17.0\n22,353,16.5\n22,354,16.0\n22,355,15.5\n22,356,15.0\n22,357,14.5\n22,358,14.0\n22,359,13.5\n22,360,13.0\n22,361,12.5\n22,362,12.0\n22,363,11.5\n22,364,11.0\n22,365,10.5\n22,366,10.0\n22,367,9.5\n22,368,9.0\n22,369,8.5\n22,370,8.0\n22,371,7.5\n22,372,7.0\n22,373,7.5\n22,374,8.0\n22,375,18.5\n22,376,18.0\n22,377,17.5\n22,378,17.0\n22,379,16.5\n22,380,16.0\n22,381,15.5\n22,382,15.0\n22,383,14.5\n22,384,14.0\n22,385,13.5\n22,386,13.0\n22,387,12.5\n22,388,12.0\n22,389,11.5\n22,390,11.0\n22,391,10.5\n22,392,10.0\n22,393,9.5\n22,394,9.0\n22,395,8.5\n22,396,8.0\n22,397,7.5\n22,398,8.0\n22,399,8.5\n22,400,19.0\n22,401,18.5\n22,402,18.0\n22,403,17.5\n22,404,17.0\n22,405,16.5\n22,406,16.0\n22,407,15.5\n22,408,15.0\n22,409,14.5\n22,410,14.0\n22,411,13.5\n22,412,13.0\n22,413,12.5\n22,414,12.0\n22,415,11.5\n22,416,11.0\n22,417,10.5\n22,418,10.0\n22,419,9.5\n22,420,9.0\n22,421,8.5\n22,422,8.0\n22,423,8.5\n22,424,9.0\n22,425,19.5\n22,426,19.0\n22,427,18.5\n22,428,18.0\n22,429,17.5\n22,430,17.0\n22,431,16.5\n22,432,16.0\n22,433,15.5\n22,434,15.0\n22,435,14.5\n22,436,14.0\n22,437,13.5\n22,438,13.0\n22,439,12.5\n22,440,12.0\n22,441,11.5\n22,442,11.0\n22,443,10.5\n22,444,10.0\n22,445,9.5\n22,446,9.0\n22,447,8.5\n22,448,9.0\n22,449,9.5\n22,450,20.0\n22,451,19.5\n22,452,19.0\n22,453,18.5\n22,454,18.0\n22,455,17.5\n22,456,17.0\n22,457,16.5\n22,458,16.0\n22,459,15.5\n22,460,15.0\n22,461,14.5\n22,462,14.0\n22,463,13.5\n22,464,13.0\n22,465,12.5\n22,466,12.0\n22,467,11.5\n22,468,11.0\n22,469,10.5\n22,470,10.0\n22,471,9.5\n22,472,9.0\n22,473,9.5\n22,474,10.0\n22,475,20.5\n22,476,20.0\n22,477,19.5\n22,478,19.0\n22,479,18.5\n22,480,18.0\n22,481,17.5\n22,482,17.0\n22,483,16.5\n22,484,16.0\n22,485,15.5\n22,486,15.0\n22,487,14.5\n22,488,14.0\n22,489,13.5\n22,490,13.0\n22,491,12.5\n22,492,12.0\n22,493,11.5\n22,494,11.0\n22,495,10.5\n22,496,10.0\n22,497,9.5\n22,498,10.0\n22,499,10.5\n22,500,21.0\n22,501,20.5\n22,502,20.0\n22,503,19.5\n22,504,19.0\n22,505,18.5\n22,506,18.0\n22,507,17.5\n22,508,17.0\n22,509,16.5\n22,510,16.0\n22,511,15.5\n22,512,15.0\n22,513,14.5\n22,514,14.0\n22,515,13.5\n22,516,13.0\n22,517,12.5\n22,518,12.0\n22,519,11.5\n22,520,11.0\n22,521,10.5\n22,522,10.0\n22,523,10.5\n22,524,11.0\n22,525,21.5\n22,526,21.0\n22,527,20.5\n22,528,20.0\n22,529,19.5\n22,530,19.0\n22,531,18.5\n22,532,18.0\n22,533,17.5\n22,534,17.0\n22,535,16.5\n22,536,16.0\n22,537,15.5\n22,538,15.0\n22,539,14.5\n22,540,14.0\n22,541,13.5\n22,542,13.0\n22,543,12.5\n22,544,12.0\n22,545,11.5\n22,546,11.0\n22,547,10.5\n22,548,11.0\n22,549,11.5\n22,550,22.0\n22,551,21.5\n22,552,21.0\n22,553,20.5\n22,554,20.0\n22,555,19.5\n22,556,19.0\n22,557,18.5\n22,558,18.0\n22,559,17.5\n22,560,17.0\n22,561,16.5\n22,562,16.0\n22,563,15.5\n22,564,15.0\n22,565,14.5\n22,566,14.0\n22,567,13.5\n22,568,13.0\n22,569,12.5\n22,570,12.0\n22,571,11.5\n22,572,11.0\n22,573,11.5\n22,574,12.0\n22,575,22.5\n22,576,22.0\n22,577,21.5\n22,578,21.0\n22,579,20.5\n22,580,20.0\n22,581,19.5\n22,582,19.0\n22,583,18.5\n22,584,18.0\n22,585,17.5\n22,586,17.0\n22,587,16.5\n22,588,16.0\n22,589,15.5\n22,590,15.0\n22,591,14.5\n22,592,14.0\n22,593,13.5\n22,594,13.0\n22,595,12.5\n22,596,12.0\n22,597,11.5\n22,598,12.0\n22,599,12.5\n22,600,23.0\n22,601,22.5\n22,602,22.0\n22,603,21.5\n22,604,21.0\n22,605,20.5\n22,606,20.0\n22,607,19.5\n22,608,19.0\n22,609,18.5\n22,610,18.0\n22,611,17.5\n22,612,17.0\n22,613,16.5\n22,614,16.0\n22,615,15.5\n22,616,15.0\n22,617,14.5\n22,618,14.0\n22,619,13.5\n22,620,13.0\n22,621,12.5\n22,622,12.0\n22,623,12.5\n22,624,13.0\n23,0,11.5\n23,1,11.0\n23,2,10.5\n23,3,10.0\n23,4,9.5\n23,5,9.0\n23,6,8.5\n23,7,8.0\n23,8,7.5\n23,9,7.0\n23,10,6.5\n23,11,6.0\n23,12,5.5\n23,13,5.0\n23,14,4.5\n23,15,4.0\n23,16,3.5\n23,17,3.0\n23,18,2.5\n23,19,2.0\n23,20,1.5\n23,21,1.0\n23,22,0.5\n23,23,0\n23,24,0.5\n23,25,12.0\n23,26,11.5\n23,27,11.0\n23,28,10.5\n23,29,10.0\n23,30,9.5\n23,31,9.0\n23,32,8.5\n23,33,8.0\n23,34,7.5\n23,35,7.0\n23,36,6.5\n23,37,6.0\n23,38,5.5\n23,39,5.0\n23,40,4.5\n23,41,4.0\n23,42,3.5\n23,43,3.0\n23,44,2.5\n23,45,2.0\n23,46,1.5\n23,47,1.0\n23,48,0.5\n23,49,1.0\n23,50,12.5\n23,51,12.0\n23,52,11.5\n23,53,11.0\n23,54,10.5\n23,55,10.0\n23,56,9.5\n23,57,9.0\n23,58,8.5\n23,59,8.0\n23,60,7.5\n23,61,7.0\n23,62,6.5\n23,63,6.0\n23,64,5.5\n23,65,5.0\n23,66,4.5\n23,67,4.0\n23,68,3.5\n23,69,3.0\n23,70,2.5\n23,71,2.0\n23,72,1.5\n23,73,1.0\n23,74,1.5\n23,75,13.0\n23,76,12.5\n23,77,12.0\n23,78,11.5\n23,79,11.0\n23,80,10.5\n23,81,10.0\n23,82,9.5\n23,83,9.0\n23,84,8.5\n23,85,8.0\n23,86,7.5\n23,87,7.0\n23,88,6.5\n23,89,6.0\n23,90,5.5\n23,91,5.0\n23,92,4.5\n23,93,4.0\n23,94,3.5\n23,95,3.0\n23,96,2.5\n23,97,2.0\n23,98,1.5\n23,99,2.0\n23,100,13.5\n23,101,13.0\n23,102,12.5\n23,103,12.0\n23,104,11.5\n23,105,11.0\n23,106,10.5\n23,107,10.0\n23,108,9.5\n23,109,9.0\n23,110,8.5\n23,111,8.0\n23,112,7.5\n23,113,7.0\n23,114,6.5\n23,115,6.0\n23,116,5.5\n23,117,5.0\n23,118,4.5\n23,119,4.0\n23,120,3.5\n23,121,3.0\n23,122,2.5\n23,123,2.0\n23,124,2.5\n23,125,14.0\n23,126,13.5\n23,127,13.0\n23,128,12.5\n23,129,12.0\n23,130,11.5\n23,131,11.0\n23,132,10.5\n23,133,10.0\n23,134,9.5\n23,135,9.0\n23,136,8.5\n23,137,8.0\n23,138,7.5\n23,139,7.0\n23,140,6.5\n23,141,6.0\n23,142,5.5\n23,143,5.0\n23,144,4.5\n23,145,4.0\n23,146,3.5\n23,147,3.0\n23,148,2.5\n23,149,3.0\n23,150,14.5\n23,151,14.0\n23,152,13.5\n23,153,13.0\n23,154,12.5\n23,155,12.0\n23,156,11.5\n23,157,11.0\n23,158,10.5\n23,159,10.0\n23,160,9.5\n23,161,9.0\n23,162,8.5\n23,163,8.0\n23,164,7.5\n23,165,7.0\n23,166,6.5\n23,167,6.0\n23,168,5.5\n23,169,5.0\n23,170,4.5\n23,171,4.0\n23,172,3.5\n23,173,3.0\n23,174,3.5\n23,175,15.0\n23,176,14.5\n23,177,14.0\n23,178,13.5\n23,179,13.0\n23,180,12.5\n23,181,12.0\n23,182,11.5\n23,183,11.0\n23,184,10.5\n23,185,10.0\n23,186,9.5\n23,187,9.0\n23,188,8.5\n23,189,8.0\n23,190,7.5\n23,191,7.0\n23,192,6.5\n23,193,6.0\n23,194,5.5\n23,195,5.0\n23,196,4.5\n23,197,4.0\n23,198,3.5\n23,199,4.0\n23,200,15.5\n23,201,15.0\n23,202,14.5\n23,203,14.0\n23,204,13.5\n23,205,13.0\n23,206,12.5\n23,207,12.0\n23,208,11.5\n23,209,11.0\n23,210,10.5\n23,211,10.0\n23,212,9.5\n23,213,9.0\n23,214,8.5\n23,215,8.0\n23,216,7.5\n23,217,7.0\n23,218,6.5\n23,219,6.0\n23,220,5.5\n23,221,5.0\n23,222,4.5\n23,223,4.0\n23,224,4.5\n23,225,16.0\n23,226,15.5\n23,227,15.0\n23,228,14.5\n23,229,14.0\n23,230,13.5\n23,231,13.0\n23,232,12.5\n23,233,12.0\n23,234,11.5\n23,235,11.0\n23,236,10.5\n23,237,10.0\n23,238,9.5\n23,239,9.0\n23,240,8.5\n23,241,8.0\n23,242,7.5\n23,243,7.0\n23,244,6.5\n23,245,6.0\n23,246,5.5\n23,247,5.0\n23,248,4.5\n23,249,5.0\n23,250,16.5\n23,251,16.0\n23,252,15.5\n23,253,15.0\n23,254,14.5\n23,255,14.0\n23,256,13.5\n23,257,13.0\n23,258,12.5\n23,259,12.0\n23,260,11.5\n23,261,11.0\n23,262,10.5\n23,263,10.0\n23,264,9.5\n23,265,9.0\n23,266,8.5\n23,267,8.0\n23,268,7.5\n23,269,7.0\n23,270,6.5\n23,271,6.0\n23,272,5.5\n23,273,5.0\n23,274,5.5\n23,275,17.0\n23,276,16.5\n23,277,16.0\n23,278,15.5\n23,279,15.0\n23,280,14.5\n23,281,14.0\n23,282,13.5\n23,283,13.0\n23,284,12.5\n23,285,12.0\n23,286,11.5\n23,287,11.0\n23,288,10.5\n23,289,10.0\n23,290,9.5\n23,291,9.0\n23,292,8.5\n23,293,8.0\n23,294,7.5\n23,295,7.0\n23,296,6.5\n23,297,6.0\n23,298,5.5\n23,299,6.0\n23,300,17.5\n23,301,17.0\n23,302,16.5\n23,303,16.0\n23,304,15.5\n23,305,15.0\n23,306,14.5\n23,307,14.0\n23,308,13.5\n23,309,13.0\n23,310,12.5\n23,311,12.0\n23,312,11.5\n23,313,11.0\n23,314,10.5\n23,315,10.0\n23,316,9.5\n23,317,9.0\n23,318,8.5\n23,319,8.0\n23,320,7.5\n23,321,7.0\n23,322,6.5\n23,323,6.0\n23,324,6.5\n23,325,18.0\n23,326,17.5\n23,327,17.0\n23,328,16.5\n23,329,16.0\n23,330,15.5\n23,331,15.0\n23,332,14.5\n23,333,14.0\n23,334,13.5\n23,335,13.0\n23,336,12.5\n23,337,12.0\n23,338,11.5\n23,339,11.0\n23,340,10.5\n23,341,10.0\n23,342,9.5\n23,343,9.0\n23,344,8.5\n23,345,8.0\n23,346,7.5\n23,347,7.0\n23,348,6.5\n23,349,7.0\n23,350,18.5\n23,351,18.0\n23,352,17.5\n23,353,17.0\n23,354,16.5\n23,355,16.0\n23,356,15.5\n23,357,15.0\n23,358,14.5\n23,359,14.0\n23,360,13.5\n23,361,13.0\n23,362,12.5\n23,363,12.0\n23,364,11.5\n23,365,11.0\n23,366,10.5\n23,367,10.0\n23,368,9.5\n23,369,9.0\n23,370,8.5\n23,371,8.0\n23,372,7.5\n23,373,7.0\n23,374,7.5\n23,375,19.0\n23,376,18.5\n23,377,18.0\n23,378,17.5\n23,379,17.0\n23,380,16.5\n23,381,16.0\n23,382,15.5\n23,383,15.0\n23,384,14.5\n23,385,14.0\n23,386,13.5\n23,387,13.0\n23,388,12.5\n23,389,12.0\n23,390,11.5\n23,391,11.0\n23,392,10.5\n23,393,10.0\n23,394,9.5\n23,395,9.0\n23,396,8.5\n23,397,8.0\n23,398,7.5\n23,399,8.0\n23,400,19.5\n23,401,19.0\n23,402,18.5\n23,403,18.0\n23,404,17.5\n23,405,17.0\n23,406,16.5\n23,407,16.0\n23,408,15.5\n23,409,15.0\n23,410,14.5\n23,411,14.0\n23,412,13.5\n23,413,13.0\n23,414,12.5\n23,415,12.0\n23,416,11.5\n23,417,11.0\n23,418,10.5\n23,419,10.0\n23,420,9.5\n23,421,9.0\n23,422,8.5\n23,423,8.0\n23,424,8.5\n23,425,20.0\n23,426,19.5\n23,427,19.0\n23,428,18.5\n23,429,18.0\n23,430,17.5\n23,431,17.0\n23,432,16.5\n23,433,16.0\n23,434,15.5\n23,435,15.0\n23,436,14.5\n23,437,14.0\n23,438,13.5\n23,439,13.0\n23,440,12.5\n23,441,12.0\n23,442,11.5\n23,443,11.0\n23,444,10.5\n23,445,10.0\n23,446,9.5\n23,447,9.0\n23,448,8.5\n23,449,9.0\n23,450,20.5\n23,451,20.0\n23,452,19.5\n23,453,19.0\n23,454,18.5\n23,455,18.0\n23,456,17.5\n23,457,17.0\n23,458,16.5\n23,459,16.0\n23,460,15.5\n23,461,15.0\n23,462,14.5\n23,463,14.0\n23,464,13.5\n23,465,13.0\n23,466,12.5\n23,467,12.0\n23,468,11.5\n23,469,11.0\n23,470,10.5\n23,471,10.0\n23,472,9.5\n23,473,9.0\n23,474,9.5\n23,475,21.0\n23,476,20.5\n23,477,20.0\n23,478,19.5\n23,479,19.0\n23,480,18.5\n23,481,18.0\n23,482,17.5\n23,483,17.0\n23,484,16.5\n23,485,16.0\n23,486,15.5\n23,487,15.0\n23,488,14.5\n23,489,14.0\n23,490,13.5\n23,491,13.0\n23,492,12.5\n23,493,12.0\n23,494,11.5\n23,495,11.0\n23,496,10.5\n23,497,10.0\n23,498,9.5\n23,499,10.0\n23,500,21.5\n23,501,21.0\n23,502,20.5\n23,503,20.0\n23,504,19.5\n23,505,19.0\n23,506,18.5\n23,507,18.0\n23,508,17.5\n23,509,17.0\n23,510,16.5\n23,511,16.0\n23,512,15.5\n23,513,15.0\n23,514,14.5\n23,515,14.0\n23,516,13.5\n23,517,13.0\n23,518,12.5\n23,519,12.0\n23,520,11.5\n23,521,11.0\n23,522,10.5\n23,523,10.0\n23,524,10.5\n23,525,22.0\n23,526,21.5\n23,527,21.0\n23,528,20.5\n23,529,20.0\n23,530,19.5\n23,531,19.0\n23,532,18.5\n23,533,18.0\n23,534,17.5\n23,535,17.0\n23,536,16.5\n23,537,16.0\n23,538,15.5\n23,539,15.0\n23,540,14.5\n23,541,14.0\n23,542,13.5\n23,543,13.0\n23,544,12.5\n23,545,12.0\n23,546,11.5\n23,547,11.0\n23,548,10.5\n23,549,11.0\n23,550,22.5\n23,551,22.0\n23,552,21.5\n23,553,21.0\n23,554,20.5\n23,555,20.0\n23,556,19.5\n23,557,19.0\n23,558,18.5\n23,559,18.0\n23,560,17.5\n23,561,17.0\n23,562,16.5\n23,563,16.0\n23,564,15.5\n23,565,15.0\n23,566,14.5\n23,567,14.0\n23,568,13.5\n23,569,13.0\n23,570,12.5\n23,571,12.0\n23,572,11.5\n23,573,11.0\n23,574,11.5\n23,575,23.0\n23,576,22.5\n23,577,22.0\n23,578,21.5\n23,579,21.0\n23,580,20.5\n23,581,20.0\n23,582,19.5\n23,583,19.0\n23,584,18.5\n23,585,18.0\n23,586,17.5\n23,587,17.0\n23,588,16.5\n23,589,16.0\n23,590,15.5\n23,591,15.0\n23,592,14.5\n23,593,14.0\n23,594,13.5\n23,595,13.0\n23,596,12.5\n23,597,12.0\n23,598,11.5\n23,599,12.0\n23,600,23.5\n23,601,23.0\n23,602,22.5\n23,603,22.0\n23,604,21.5\n23,605,21.0\n23,606,20.5\n23,607,20.0\n23,608,19.5\n23,609,19.0\n23,610,18.5\n23,611,18.0\n23,612,17.5\n23,613,17.0\n23,614,16.5\n23,615,16.0\n23,616,15.5\n23,617,15.0\n23,618,14.5\n23,619,14.0\n23,620,13.5\n23,621,13.0\n23,622,12.5\n23,623,12.0\n23,624,12.5\n24,0,12.0\n24,1,11.5\n24,2,11.0\n24,3,10.5\n24,4,10.0\n24,5,9.5\n24,6,9.0\n24,7,8.5\n24,8,8.0\n24,9,7.5\n24,10,7.0\n24,11,6.5\n24,12,6.0\n24,13,5.5\n24,14,5.0\n24,15,4.5\n24,16,4.0\n24,17,3.5\n24,18,3.0\n24,19,2.5\n24,20,2.0\n24,21,1.5\n24,22,1.0\n24,23,0.5\n24,24,0\n24,25,12.5\n24,26,12.0\n24,27,11.5\n24,28,11.0\n24,29,10.5\n24,30,10.0\n24,31,9.5\n24,32,9.0\n24,33,8.5\n24,34,8.0\n24,35,7.5\n24,36,7.0\n24,37,6.5\n24,38,6.0\n24,39,5.5\n24,40,5.0\n24,41,4.5\n24,42,4.0\n24,43,3.5\n24,44,3.0\n24,45,2.5\n24,46,2.0\n24,47,1.5\n24,48,1.0\n24,49,0.5\n24,50,13.0\n24,51,12.5\n24,52,12.0\n24,53,11.5\n24,54,11.0\n24,55,10.5\n24,56,10.0\n24,57,9.5\n24,58,9.0\n24,59,8.5\n24,60,8.0\n24,61,7.5\n24,62,7.0\n24,63,6.5\n24,64,6.0\n24,65,5.5\n24,66,5.0\n24,67,4.5\n24,68,4.0\n24,69,3.5\n24,70,3.0\n24,71,2.5\n24,72,2.0\n24,73,1.5\n24,74,1.0\n24,75,13.5\n24,76,13.0\n24,77,12.5\n24,78,12.0\n24,79,11.5\n24,80,11.0\n24,81,10.5\n24,82,10.0\n24,83,9.5\n24,84,9.0\n24,85,8.5\n24,86,8.0\n24,87,7.5\n24,88,7.0\n24,89,6.5\n24,90,6.0\n24,91,5.5\n24,92,5.0\n24,93,4.5\n24,94,4.0\n24,95,3.5\n24,96,3.0\n24,97,2.5\n24,98,2.0\n24,99,1.5\n24,100,14.0\n24,101,13.5\n24,102,13.0\n24,103,12.5\n24,104,12.0\n24,105,11.5\n24,106,11.0\n24,107,10.5\n24,108,10.0\n24,109,9.5\n24,110,9.0\n24,111,8.5\n24,112,8.0\n24,113,7.5\n24,114,7.0\n24,115,6.5\n24,116,6.0\n24,117,5.5\n24,118,5.0\n24,119,4.5\n24,120,4.0\n24,121,3.5\n24,122,3.0\n24,123,2.5\n24,124,2.0\n24,125,14.5\n24,126,14.0\n24,127,13.5\n24,128,13.0\n24,129,12.5\n24,130,12.0\n24,131,11.5\n24,132,11.0\n24,133,10.5\n24,134,10.0\n24,135,9.5\n24,136,9.0\n24,137,8.5\n24,138,8.0\n24,139,7.5\n24,140,7.0\n24,141,6.5\n24,142,6.0\n24,143,5.5\n24,144,5.0\n24,145,4.5\n24,146,4.0\n24,147,3.5\n24,148,3.0\n24,149,2.5\n24,150,15.0\n24,151,14.5\n24,152,14.0\n24,153,13.5\n24,154,13.0\n24,155,12.5\n24,156,12.0\n24,157,11.5\n24,158,11.0\n24,159,10.5\n24,160,10.0\n24,161,9.5\n24,162,9.0\n24,163,8.5\n24,164,8.0\n24,165,7.5\n24,166,7.0\n24,167,6.5\n24,168,6.0\n24,169,5.5\n24,170,5.0\n24,171,4.5\n24,172,4.0\n24,173,3.5\n24,174,3.0\n24,175,15.5\n24,176,15.0\n24,177,14.5\n24,178,14.0\n24,179,13.5\n24,180,13.0\n24,181,12.5\n24,182,12.0\n24,183,11.5\n24,184,11.0\n24,185,10.5\n24,186,10.0\n24,187,9.5\n24,188,9.0\n24,189,8.5\n24,190,8.0\n24,191,7.5\n24,192,7.0\n24,193,6.5\n24,194,6.0\n24,195,5.5\n24,196,5.0\n24,197,4.5\n24,198,4.0\n24,199,3.5\n24,200,16.0\n24,201,15.5\n24,202,15.0\n24,203,14.5\n24,204,14.0\n24,205,13.5\n24,206,13.0\n24,207,12.5\n24,208,12.0\n24,209,11.5\n24,210,11.0\n24,211,10.5\n24,212,10.0\n24,213,9.5\n24,214,9.0\n24,215,8.5\n24,216,8.0\n24,217,7.5\n24,218,7.0\n24,219,6.5\n24,220,6.0\n24,221,5.5\n24,222,5.0\n24,223,4.5\n24,224,4.0\n24,225,16.5\n24,226,16.0\n24,227,15.5\n24,228,15.0\n24,229,14.5\n24,230,14.0\n24,231,13.5\n24,232,13.0\n24,233,12.5\n24,234,12.0\n24,235,11.5\n24,236,11.0\n24,237,10.5\n24,238,10.0\n24,239,9.5\n24,240,9.0\n24,241,8.5\n24,242,8.0\n24,243,7.5\n24,244,7.0\n24,245,6.5\n24,246,6.0\n24,247,5.5\n24,248,5.0\n24,249,4.5\n24,250,17.0\n24,251,16.5\n24,252,16.0\n24,253,15.5\n24,254,15.0\n24,255,14.5\n24,256,14.0\n24,257,13.5\n24,258,13.0\n24,259,12.5\n24,260,12.0\n24,261,11.5\n24,262,11.0\n24,263,10.5\n24,264,10.0\n24,265,9.5\n24,266,9.0\n24,267,8.5\n24,268,8.0\n24,269,7.5\n24,270,7.0\n24,271,6.5\n24,272,6.0\n24,273,5.5\n24,274,5.0\n24,275,17.5\n24,276,17.0\n24,277,16.5\n24,278,16.0\n24,279,15.5\n24,280,15.0\n24,281,14.5\n24,282,14.0\n24,283,13.5\n24,284,13.0\n24,285,12.5\n24,286,12.0\n24,287,11.5\n24,288,11.0\n24,289,10.5\n24,290,10.0\n24,291,9.5\n24,292,9.0\n24,293,8.5\n24,294,8.0\n24,295,7.5\n24,296,7.0\n24,297,6.5\n24,298,6.0\n24,299,5.5\n24,300,18.0\n24,301,17.5\n24,302,17.0\n24,303,16.5\n24,304,16.0\n24,305,15.5\n24,306,15.0\n24,307,14.5\n24,308,14.0\n24,309,13.5\n24,310,13.0\n24,311,12.5\n24,312,12.0\n24,313,11.5\n24,314,11.0\n24,315,10.5\n24,316,10.0\n24,317,9.5\n24,318,9.0\n24,319,8.5\n24,320,8.0\n24,321,7.5\n24,322,7.0\n24,323,6.5\n24,324,6.0\n24,325,18.5\n24,326,18.0\n24,327,17.5\n24,328,17.0\n24,329,16.5\n24,330,16.0\n24,331,15.5\n24,332,15.0\n24,333,14.5\n24,334,14.0\n24,335,13.5\n24,336,13.0\n24,337,12.5\n24,338,12.0\n24,339,11.5\n24,340,11.0\n24,341,10.5\n24,342,10.0\n24,343,9.5\n24,344,9.0\n24,345,8.5\n24,346,8.0\n24,347,7.5\n24,348,7.0\n24,349,6.5\n24,350,19.0\n24,351,18.5\n24,352,18.0\n24,353,17.5\n24,354,17.0\n24,355,16.5\n24,356,16.0\n24,357,15.5\n24,358,15.0\n24,359,14.5\n24,360,14.0\n24,361,13.5\n24,362,13.0\n24,363,12.5\n24,364,12.0\n24,365,11.5\n24,366,11.0\n24,367,10.5\n24,368,10.0\n24,369,9.5\n24,370,9.0\n24,371,8.5\n24,372,8.0\n24,373,7.5\n24,374,7.0\n24,375,19.5\n24,376,19.0\n24,377,18.5\n24,378,18.0\n24,379,17.5\n24,380,17.0\n24,381,16.5\n24,382,16.0\n24,383,15.5\n24,384,15.0\n24,385,14.5\n24,386,14.0\n24,387,13.5\n24,388,13.0\n24,389,12.5\n24,390,12.0\n24,391,11.5\n24,392,11.0\n24,393,10.5\n24,394,10.0\n24,395,9.5\n24,396,9.0\n24,397,8.5\n24,398,8.0\n24,399,7.5\n24,400,20.0\n24,401,19.5\n24,402,19.0\n24,403,18.5\n24,404,18.0\n24,405,17.5\n24,406,17.0\n24,407,16.5\n24,408,16.0\n24,409,15.5\n24,410,15.0\n24,411,14.5\n24,412,14.0\n24,413,13.5\n24,414,13.0\n24,415,12.5\n24,416,12.0\n24,417,11.5\n24,418,11.0\n24,419,10.5\n24,420,10.0\n24,421,9.5\n24,422,9.0\n24,423,8.5\n24,424,8.0\n24,425,20.5\n24,426,20.0\n24,427,19.5\n24,428,19.0\n24,429,18.5\n24,430,18.0\n24,431,17.5\n24,432,17.0\n24,433,16.5\n24,434,16.0\n24,435,15.5\n24,436,15.0\n24,437,14.5\n24,438,14.0\n24,439,13.5\n24,440,13.0\n24,441,12.5\n24,442,12.0\n24,443,11.5\n24,444,11.0\n24,445,10.5\n24,446,10.0\n24,447,9.5\n24,448,9.0\n24,449,8.5\n24,450,21.0\n24,451,20.5\n24,452,20.0\n24,453,19.5\n24,454,19.0\n24,455,18.5\n24,456,18.0\n24,457,17.5\n24,458,17.0\n24,459,16.5\n24,460,16.0\n24,461,15.5\n24,462,15.0\n24,463,14.5\n24,464,14.0\n24,465,13.5\n24,466,13.0\n24,467,12.5\n24,468,12.0\n24,469,11.5\n24,470,11.0\n24,471,10.5\n24,472,10.0\n24,473,9.5\n24,474,9.0\n24,475,21.5\n24,476,21.0\n24,477,20.5\n24,478,20.0\n24,479,19.5\n24,480,19.0\n24,481,18.5\n24,482,18.0\n24,483,17.5\n24,484,17.0\n24,485,16.5\n24,486,16.0\n24,487,15.5\n24,488,15.0\n24,489,14.5\n24,490,14.0\n24,491,13.5\n24,492,13.0\n24,493,12.5\n24,494,12.0\n24,495,11.5\n24,496,11.0\n24,497,10.5\n24,498,10.0\n24,499,9.5\n24,500,22.0\n24,501,21.5\n24,502,21.0\n24,503,20.5\n24,504,20.0\n24,505,19.5\n24,506,19.0\n24,507,18.5\n24,508,18.0\n24,509,17.5\n24,510,17.0\n24,511,16.5\n24,512,16.0\n24,513,15.5\n24,514,15.0\n24,515,14.5\n24,516,14.0\n24,517,13.5\n24,518,13.0\n24,519,12.5\n24,520,12.0\n24,521,11.5\n24,522,11.0\n24,523,10.5\n24,524,10.0\n24,525,22.5\n24,526,22.0\n24,527,21.5\n24,528,21.0\n24,529,20.5\n24,530,20.0\n24,531,19.5\n24,532,19.0\n24,533,18.5\n24,534,18.0\n24,535,17.5\n24,536,17.0\n24,537,16.5\n24,538,16.0\n24,539,15.5\n24,540,15.0\n24,541,14.5\n24,542,14.0\n24,543,13.5\n24,544,13.0\n24,545,12.5\n24,546,12.0\n24,547,11.5\n24,548,11.0\n24,549,10.5\n24,550,23.0\n24,551,22.5\n24,552,22.0\n24,553,21.5\n24,554,21.0\n24,555,20.5\n24,556,20.0\n24,557,19.5\n24,558,19.0\n24,559,18.5\n24,560,18.0\n24,561,17.5\n24,562,17.0\n24,563,16.5\n24,564,16.0\n24,565,15.5\n24,566,15.0\n24,567,14.5\n24,568,14.0\n24,569,13.5\n24,570,13.0\n24,571,12.5\n24,572,12.0\n24,573,11.5\n24,574,11.0\n24,575,23.5\n24,576,23.0\n24,577,22.5\n24,578,22.0\n24,579,21.5\n24,580,21.0\n24,581,20.5\n24,582,20.0\n24,583,19.5\n24,584,19.0\n24,585,18.5\n24,586,18.0\n24,587,17.5\n24,588,17.0\n24,589,16.5\n24,590,16.0\n24,591,15.5\n24,592,15.0\n24,593,14.5\n24,594,14.0\n24,595,13.5\n24,596,13.0\n24,597,12.5\n24,598,12.0\n24,599,11.5\n24,600,24.0\n24,601,23.5\n24,602,23.0\n24,603,22.5\n24,604,22.0\n24,605,21.5\n24,606,21.0\n24,607,20.5\n24,608,20.0\n24,609,19.5\n24,610,19.0\n24,611,18.5\n24,612,18.0\n24,613,17.5\n24,614,17.0\n24,615,16.5\n24,616,16.0\n24,617,15.5\n24,618,15.0\n24,619,14.5\n24,620,14.0\n24,621,13.5\n24,622,13.0\n24,623,12.5\n24,624,12.0\n25,0,0.5\n25,1,1.0\n25,2,1.5\n25,3,2.0\n25,4,2.5\n25,5,3.0\n25,6,3.5\n25,7,4.0\n25,8,4.5\n25,9,5.0\n25,10,5.5\n25,11,6.0\n25,12,6.5\n25,13,7.0\n25,14,7.5\n25,15,8.0\n25,16,8.5\n25,17,9.0\n25,18,9.5\n25,19,10.0\n25,20,10.5\n25,21,11.0\n25,22,11.5\n25,23,12.0\n25,24,12.5\n25,25,0\n25,26,0.5\n25,27,1.0\n25,28,1.5\n25,29,2.0\n25,30,2.5\n25,31,3.0\n25,32,3.5\n25,33,4.0\n25,34,4.5\n25,35,5.0\n25,36,5.5\n25,37,6.0\n25,38,6.5\n25,39,7.0\n25,40,7.5\n25,41,8.0\n25,42,8.5\n25,43,9.0\n25,44,9.5\n25,45,10.0\n25,46,10.5\n25,47,11.0\n25,48,11.5\n25,49,12.0\n25,50,0.5\n25,51,1.0\n25,52,1.5\n25,53,2.0\n25,54,2.5\n25,55,3.0\n25,56,3.5\n25,57,4.0\n25,58,4.5\n25,59,5.0\n25,60,5.5\n25,61,6.0\n25,62,6.5\n25,63,7.0\n25,64,7.5\n25,65,8.0\n25,66,8.5\n25,67,9.0\n25,68,9.5\n25,69,10.0\n25,70,10.5\n25,71,11.0\n25,72,11.5\n25,73,12.0\n25,74,12.5\n25,75,1.0\n25,76,1.5\n25,77,2.0\n25,78,2.5\n25,79,3.0\n25,80,3.5\n25,81,4.0\n25,82,4.5\n25,83,5.0\n25,84,5.5\n25,85,6.0\n25,86,6.5\n25,87,7.0\n25,88,7.5\n25,89,8.0\n25,90,8.5\n25,91,9.0\n25,92,9.5\n25,93,10.0\n25,94,10.5\n25,95,11.0\n25,96,11.5\n25,97,12.0\n25,98,12.5\n25,99,13.0\n25,100,1.5\n25,101,2.0\n25,102,2.5\n25,103,3.0\n25,104,3.5\n25,105,4.0\n25,106,4.5\n25,107,5.0\n25,108,5.5\n25,109,6.0\n25,110,6.5\n25,111,7.0\n25,112,7.5\n25,113,8.0\n25,114,8.5\n25,115,9.0\n25,116,9.5\n25,117,10.0\n25,118,10.5\n25,119,11.0\n25,120,11.5\n25,121,12.0\n25,122,12.5\n25,123,13.0\n25,124,13.5\n25,125,2.0\n25,126,2.5\n25,127,3.0\n25,128,3.5\n25,129,4.0\n25,130,4.5\n25,131,5.0\n25,132,5.5\n25,133,6.0\n25,134,6.5\n25,135,7.0\n25,136,7.5\n25,137,8.0\n25,138,8.5\n25,139,9.0\n25,140,9.5\n25,141,10.0\n25,142,10.5\n25,143,11.0\n25,144,11.5\n25,145,12.0\n25,146,12.5\n25,147,13.0\n25,148,13.5\n25,149,14.0\n25,150,2.5\n25,151,3.0\n25,152,3.5\n25,153,4.0\n25,154,4.5\n25,155,5.0\n25,156,5.5\n25,157,6.0\n25,158,6.5\n25,159,7.0\n25,160,7.5\n25,161,8.0\n25,162,8.5\n25,163,9.0\n25,164,9.5\n25,165,10.0\n25,166,10.5\n25,167,11.0\n25,168,11.5\n25,169,12.0\n25,170,12.5\n25,171,13.0\n25,172,13.5\n25,173,14.0\n25,174,14.5\n25,175,3.0\n25,176,3.5\n25,177,4.0\n25,178,4.5\n25,179,5.0\n25,180,5.5\n25,181,6.0\n25,182,6.5\n25,183,7.0\n25,184,7.5\n25,185,8.0\n25,186,8.5\n25,187,9.0\n25,188,9.5\n25,189,10.0\n25,190,10.5\n25,191,11.0\n25,192,11.5\n25,193,12.0\n25,194,12.5\n25,195,13.0\n25,196,13.5\n25,197,14.0\n25,198,14.5\n25,199,15.0\n25,200,3.5\n25,201,4.0\n25,202,4.5\n25,203,5.0\n25,204,5.5\n25,205,6.0\n25,206,6.5\n25,207,7.0\n25,208,7.5\n25,209,8.0\n25,210,8.5\n25,211,9.0\n25,212,9.5\n25,213,10.0\n25,214,10.5\n25,215,11.0\n25,216,11.5\n25,217,12.0\n25,218,12.5\n25,219,13.0\n25,220,13.5\n25,221,14.0\n25,222,14.5\n25,223,15.0\n25,224,15.5\n25,225,4.0\n25,226,4.5\n25,227,5.0\n25,228,5.5\n25,229,6.0\n25,230,6.5\n25,231,7.0\n25,232,7.5\n25,233,8.0\n25,234,8.5\n25,235,9.0\n25,236,9.5\n25,237,10.0\n25,238,10.5\n25,239,11.0\n25,240,11.5\n25,241,12.0\n25,242,12.5\n25,243,13.0\n25,244,13.5\n25,245,14.0\n25,246,14.5\n25,247,15.0\n25,248,15.5\n25,249,16.0\n25,250,4.5\n25,251,5.0\n25,252,5.5\n25,253,6.0\n25,254,6.5\n25,255,7.0\n25,256,7.5\n25,257,8.0\n25,258,8.5\n25,259,9.0\n25,260,9.5\n25,261,10.0\n25,262,10.5\n25,263,11.0\n25,264,11.5\n25,265,12.0\n25,266,12.5\n25,267,13.0\n25,268,13.5\n25,269,14.0\n25,270,14.5\n25,271,15.0\n25,272,15.5\n25,273,16.0\n25,274,16.5\n25,275,5.0\n25,276,5.5\n25,277,6.0\n25,278,6.5\n25,279,7.0\n25,280,7.5\n25,281,8.0\n25,282,8.5\n25,283,9.0\n25,284,9.5\n25,285,10.0\n25,286,10.5\n25,287,11.0\n25,288,11.5\n25,289,12.0\n25,290,12.5\n25,291,13.0\n25,292,13.5\n25,293,14.0\n25,294,14.5\n25,295,15.0\n25,296,15.5\n25,297,16.0\n25,298,16.5\n25,299,17.0\n25,300,5.5\n25,301,6.0\n25,302,6.5\n25,303,7.0\n25,304,7.5\n25,305,8.0\n25,306,8.5\n25,307,9.0\n25,308,9.5\n25,309,10.0\n25,310,10.5\n25,311,11.0\n25,312,11.5\n25,313,12.0\n25,314,12.5\n25,315,13.0\n25,316,13.5\n25,317,14.0\n25,318,14.5\n25,319,15.0\n25,320,15.5\n25,321,16.0\n25,322,16.5\n25,323,17.0\n25,324,17.5\n25,325,6.0\n25,326,6.5\n25,327,7.0\n25,328,7.5\n25,329,8.0\n25,330,8.5\n25,331,9.0\n25,332,9.5\n25,333,10.0\n25,334,10.5\n25,335,11.0\n25,336,11.5\n25,337,12.0\n25,338,12.5\n25,339,13.0\n25,340,13.5\n25,341,14.0\n25,342,14.5\n25,343,15.0\n25,344,15.5\n25,345,16.0\n25,346,16.5\n25,347,17.0\n25,348,17.5\n25,349,18.0\n25,350,6.5\n25,351,7.0\n25,352,7.5\n25,353,8.0\n25,354,8.5\n25,355,9.0\n25,356,9.5\n25,357,10.0\n25,358,10.5\n25,359,11.0\n25,360,11.5\n25,361,12.0\n25,362,12.5\n25,363,13.0\n25,364,13.5\n25,365,14.0\n25,366,14.5\n25,367,15.0\n25,368,15.5\n25,369,16.0\n25,370,16.5\n25,371,17.0\n25,372,17.5\n25,373,18.0\n25,374,18.5\n25,375,7.0\n25,376,7.5\n25,377,8.0\n25,378,8.5\n25,379,9.0\n25,380,9.5\n25,381,10.0\n25,382,10.5\n25,383,11.0\n25,384,11.5\n25,385,12.0\n25,386,12.5\n25,387,13.0\n25,388,13.5\n25,389,14.0\n25,390,14.5\n25,391,15.0\n25,392,15.5\n25,393,16.0\n25,394,16.5\n25,395,17.0\n25,396,17.5\n25,397,18.0\n25,398,18.5\n25,399,19.0\n25,400,7.5\n25,401,8.0\n25,402,8.5\n25,403,9.0\n25,404,9.5\n25,405,10.0\n25,406,10.5\n25,407,11.0\n25,408,11.5\n25,409,12.0\n25,410,12.5\n25,411,13.0\n25,412,13.5\n25,413,14.0\n25,414,14.5\n25,415,15.0\n25,416,15.5\n25,417,16.0\n25,418,16.5\n25,419,17.0\n25,420,17.5\n25,421,18.0\n25,422,18.5\n25,423,19.0\n25,424,19.5\n25,425,8.0\n25,426,8.5\n25,427,9.0\n25,428,9.5\n25,429,10.0\n25,430,10.5\n25,431,11.0\n25,432,11.5\n25,433,12.0\n25,434,12.5\n25,435,13.0\n25,436,13.5\n25,437,14.0\n25,438,14.5\n25,439,15.0\n25,440,15.5\n25,441,16.0\n25,442,16.5\n25,443,17.0\n25,444,17.5\n25,445,18.0\n25,446,18.5\n25,447,19.0\n25,448,19.5\n25,449,20.0\n25,450,8.5\n25,451,9.0\n25,452,9.5\n25,453,10.0\n25,454,10.5\n25,455,11.0\n25,456,11.5\n25,457,12.0\n25,458,12.5\n25,459,13.0\n25,460,13.5\n25,461,14.0\n25,462,14.5\n25,463,15.0\n25,464,15.5\n25,465,16.0\n25,466,16.5\n25,467,17.0\n25,468,17.5\n25,469,18.0\n25,470,18.5\n25,471,19.0\n25,472,19.5\n25,473,20.0\n25,474,20.5\n25,475,9.0\n25,476,9.5\n25,477,10.0\n25,478,10.5\n25,479,11.0\n25,480,11.5\n25,481,12.0\n25,482,12.5\n25,483,13.0\n25,484,13.5\n25,485,14.0\n25,486,14.5\n25,487,15.0\n25,488,15.5\n25,489,16.0\n25,490,16.5\n25,491,17.0\n25,492,17.5\n25,493,18.0\n25,494,18.5\n25,495,19.0\n25,496,19.5\n25,497,20.0\n25,498,20.5\n25,499,21.0\n25,500,9.5\n25,501,10.0\n25,502,10.5\n25,503,11.0\n25,504,11.5\n25,505,12.0\n25,506,12.5\n25,507,13.0\n25,508,13.5\n25,509,14.0\n25,510,14.5\n25,511,15.0\n25,512,15.5\n25,513,16.0\n25,514,16.5\n25,515,17.0\n25,516,17.5\n25,517,18.0\n25,518,18.5\n25,519,19.0\n25,520,19.5\n25,521,20.0\n25,522,20.5\n25,523,21.0\n25,524,21.5\n25,525,10.0\n25,526,10.5\n25,527,11.0\n25,528,11.5\n25,529,12.0\n25,530,12.5\n25,531,13.0\n25,532,13.5\n25,533,14.0\n25,534,14.5\n25,535,15.0\n25,536,15.5\n25,537,16.0\n25,538,16.5\n25,539,17.0\n25,540,17.5\n25,541,18.0\n25,542,18.5\n25,543,19.0\n25,544,19.5\n25,545,20.0\n25,546,20.5\n25,547,21.0\n25,548,21.5\n25,549,22.0\n25,550,10.5\n25,551,11.0\n25,552,11.5\n25,553,12.0\n25,554,12.5\n25,555,13.0\n25,556,13.5\n25,557,14.0\n25,558,14.5\n25,559,15.0\n25,560,15.5\n25,561,16.0\n25,562,16.5\n25,563,17.0\n25,564,17.5\n25,565,18.0\n25,566,18.5\n25,567,19.0\n25,568,19.5\n25,569,20.0\n25,570,20.5\n25,571,21.0\n25,572,21.5\n25,573,22.0\n25,574,22.5\n25,575,11.0\n25,576,11.5\n25,577,12.0\n25,578,12.5\n25,579,13.0\n25,580,13.5\n25,581,14.0\n25,582,14.5\n25,583,15.0\n25,584,15.5\n25,585,16.0\n25,586,16.5\n25,587,17.0\n25,588,17.5\n25,589,18.0\n25,590,18.5\n25,591,19.0\n25,592,19.5\n25,593,20.0\n25,594,20.5\n25,595,21.0\n25,596,21.5\n25,597,22.0\n25,598,22.5\n25,599,23.0\n25,600,11.5\n25,601,12.0\n25,602,12.5\n25,603,13.0\n25,604,13.5\n25,605,14.0\n25,606,14.5\n25,607,15.0\n25,608,15.5\n25,609,16.0\n25,610,16.5\n25,611,17.0\n25,612,17.5\n25,613,18.0\n25,614,18.5\n25,615,19.0\n25,616,19.5\n25,617,20.0\n25,618,20.5\n25,619,21.0\n25,620,21.5\n25,621,22.0\n25,622,22.5\n25,623,23.0\n25,624,23.5\n26,0,1.0\n26,1,0.5\n26,2,1.0\n26,3,1.5\n26,4,2.0\n26,5,2.5\n26,6,3.0\n26,7,3.5\n26,8,4.0\n26,9,4.5\n26,10,5.0\n26,11,5.5\n26,12,6.0\n26,13,6.5\n26,14,7.0\n26,15,7.5\n26,16,8.0\n26,17,8.5\n26,18,9.0\n26,19,9.5\n26,20,10.0\n26,21,10.5\n26,22,11.0\n26,23,11.5\n26,24,12.0\n26,25,0.5\n26,26,0\n26,27,0.5\n26,28,1.0\n26,29,1.5\n26,30,2.0\n26,31,2.5\n26,32,3.0\n26,33,3.5\n26,34,4.0\n26,35,4.5\n26,36,5.0\n26,37,5.5\n26,38,6.0\n26,39,6.5\n26,40,7.0\n26,41,7.5\n26,42,8.0\n26,43,8.5\n26,44,9.0\n26,45,9.5\n26,46,10.0\n26,47,10.5\n26,48,11.0\n26,49,11.5\n26,50,1.0\n26,51,0.5\n26,52,1.0\n26,53,1.5\n26,54,2.0\n26,55,2.5\n26,56,3.0\n26,57,3.5\n26,58,4.0\n26,59,4.5\n26,60,5.0\n26,61,5.5\n26,62,6.0\n26,63,6.5\n26,64,7.0\n26,65,7.5\n26,66,8.0\n26,67,8.5\n26,68,9.0\n26,69,9.5\n26,70,10.0\n26,71,10.5\n26,72,11.0\n26,73,11.5\n26,74,12.0\n26,75,1.5\n26,76,1.0\n26,77,1.5\n26,78,2.0\n26,79,2.5\n26,80,3.0\n26,81,3.5\n26,82,4.0\n26,83,4.5\n26,84,5.0\n26,85,5.5\n26,86,6.0\n26,87,6.5\n26,88,7.0\n26,89,7.5\n26,90,8.0\n26,91,8.5\n26,92,9.0\n26,93,9.5\n26,94,10.0\n26,95,10.5\n26,96,11.0\n26,97,11.5\n26,98,12.0\n26,99,12.5\n26,100,2.0\n26,101,1.5\n26,102,2.0\n26,103,2.5\n26,104,3.0\n26,105,3.5\n26,106,4.0\n26,107,4.5\n26,108,5.0\n26,109,5.5\n26,110,6.0\n26,111,6.5\n26,112,7.0\n26,113,7.5\n26,114,8.0\n26,115,8.5\n26,116,9.0\n26,117,9.5\n26,118,10.0\n26,119,10.5\n26,120,11.0\n26,121,11.5\n26,122,12.0\n26,123,12.5\n26,124,13.0\n26,125,2.5\n26,126,2.0\n26,127,2.5\n26,128,3.0\n26,129,3.5\n26,130,4.0\n26,131,4.5\n26,132,5.0\n26,133,5.5\n26,134,6.0\n26,135,6.5\n26,136,7.0\n26,137,7.5\n26,138,8.0\n26,139,8.5\n26,140,9.0\n26,141,9.5\n26,142,10.0\n26,143,10.5\n26,144,11.0\n26,145,11.5\n26,146,12.0\n26,147,12.5\n26,148,13.0\n26,149,13.5\n26,150,3.0\n26,151,2.5\n26,152,3.0\n26,153,3.5\n26,154,4.0\n26,155,4.5\n26,156,5.0\n26,157,5.5\n26,158,6.0\n26,159,6.5\n26,160,7.0\n26,161,7.5\n26,162,8.0\n26,163,8.5\n26,164,9.0\n26,165,9.5\n26,166,10.0\n26,167,10.5\n26,168,11.0\n26,169,11.5\n26,170,12.0\n26,171,12.5\n26,172,13.0\n26,173,13.5\n26,174,14.0\n26,175,3.5\n26,176,3.0\n26,177,3.5\n26,178,4.0\n26,179,4.5\n26,180,5.0\n26,181,5.5\n26,182,6.0\n26,183,6.5\n26,184,7.0\n26,185,7.5\n26,186,8.0\n26,187,8.5\n26,188,9.0\n26,189,9.5\n26,190,10.0\n26,191,10.5\n26,192,11.0\n26,193,11.5\n26,194,12.0\n26,195,12.5\n26,196,13.0\n26,197,13.5\n26,198,14.0\n26,199,14.5\n26,200,4.0\n26,201,3.5\n26,202,4.0\n26,203,4.5\n26,204,5.0\n26,205,5.5\n26,206,6.0\n26,207,6.5\n26,208,7.0\n26,209,7.5\n26,210,8.0\n26,211,8.5\n26,212,9.0\n26,213,9.5\n26,214,10.0\n26,215,10.5\n26,216,11.0\n26,217,11.5\n26,218,12.0\n26,219,12.5\n26,220,13.0\n26,221,13.5\n26,222,14.0\n26,223,14.5\n26,224,15.0\n26,225,4.5\n26,226,4.0\n26,227,4.5\n26,228,5.0\n26,229,5.5\n26,230,6.0\n26,231,6.5\n26,232,7.0\n26,233,7.5\n26,234,8.0\n26,235,8.5\n26,236,9.0\n26,237,9.5\n26,238,10.0\n26,239,10.5\n26,240,11.0\n26,241,11.5\n26,242,12.0\n26,243,12.5\n26,244,13.0\n26,245,13.5\n26,246,14.0\n26,247,14.5\n26,248,15.0\n26,249,15.5\n26,250,5.0\n26,251,4.5\n26,252,5.0\n26,253,5.5\n26,254,6.0\n26,255,6.5\n26,256,7.0\n26,257,7.5\n26,258,8.0\n26,259,8.5\n26,260,9.0\n26,261,9.5\n26,262,10.0\n26,263,10.5\n26,264,11.0\n26,265,11.5\n26,266,12.0\n26,267,12.5\n26,268,13.0\n26,269,13.5\n26,270,14.0\n26,271,14.5\n26,272,15.0\n26,273,15.5\n26,274,16.0\n26,275,5.5\n26,276,5.0\n26,277,5.5\n26,278,6.0\n26,279,6.5\n26,280,7.0\n26,281,7.5\n26,282,8.0\n26,283,8.5\n26,284,9.0\n26,285,9.5\n26,286,10.0\n26,287,10.5\n26,288,11.0\n26,289,11.5\n26,290,12.0\n26,291,12.5\n26,292,13.0\n26,293,13.5\n26,294,14.0\n26,295,14.5\n26,296,15.0\n26,297,15.5\n26,298,16.0\n26,299,16.5\n26,300,6.0\n26,301,5.5\n26,302,6.0\n26,303,6.5\n26,304,7.0\n26,305,7.5\n26,306,8.0\n26,307,8.5\n26,308,9.0\n26,309,9.5\n26,310,10.0\n26,311,10.5\n26,312,11.0\n26,313,11.5\n26,314,12.0\n26,315,12.5\n26,316,13.0\n26,317,13.5\n26,318,14.0\n26,319,14.5\n26,320,15.0\n26,321,15.5\n26,322,16.0\n26,323,16.5\n26,324,17.0\n26,325,6.5\n26,326,6.0\n26,327,6.5\n26,328,7.0\n26,329,7.5\n26,330,8.0\n26,331,8.5\n26,332,9.0\n26,333,9.5\n26,334,10.0\n26,335,10.5\n26,336,11.0\n26,337,11.5\n26,338,12.0\n26,339,12.5\n26,340,13.0\n26,341,13.5\n26,342,14.0\n26,343,14.5\n26,344,15.0\n26,345,15.5\n26,346,16.0\n26,347,16.5\n26,348,17.0\n26,349,17.5\n26,350,7.0\n26,351,6.5\n26,352,7.0\n26,353,7.5\n26,354,8.0\n26,355,8.5\n26,356,9.0\n26,357,9.5\n26,358,10.0\n26,359,10.5\n26,360,11.0\n26,361,11.5\n26,362,12.0\n26,363,12.5\n26,364,13.0\n26,365,13.5\n26,366,14.0\n26,367,14.5\n26,368,15.0\n26,369,15.5\n26,370,16.0\n26,371,16.5\n26,372,17.0\n26,373,17.5\n26,374,18.0\n26,375,7.5\n26,376,7.0\n26,377,7.5\n26,378,8.0\n26,379,8.5\n26,380,9.0\n26,381,9.5\n26,382,10.0\n26,383,10.5\n26,384,11.0\n26,385,11.5\n26,386,12.0\n26,387,12.5\n26,388,13.0\n26,389,13.5\n26,390,14.0\n26,391,14.5\n26,392,15.0\n26,393,15.5\n26,394,16.0\n26,395,16.5\n26,396,17.0\n26,397,17.5\n26,398,18.0\n26,399,18.5\n26,400,8.0\n26,401,7.5\n26,402,8.0\n26,403,8.5\n26,404,9.0\n26,405,9.5\n26,406,10.0\n26,407,10.5\n26,408,11.0\n26,409,11.5\n26,410,12.0\n26,411,12.5\n26,412,13.0\n26,413,13.5\n26,414,14.0\n26,415,14.5\n26,416,15.0\n26,417,15.5\n26,418,16.0\n26,419,16.5\n26,420,17.0\n26,421,17.5\n26,422,18.0\n26,423,18.5\n26,424,19.0\n26,425,8.5\n26,426,8.0\n26,427,8.5\n26,428,9.0\n26,429,9.5\n26,430,10.0\n26,431,10.5\n26,432,11.0\n26,433,11.5\n26,434,12.0\n26,435,12.5\n26,436,13.0\n26,437,13.5\n26,438,14.0\n26,439,14.5\n26,440,15.0\n26,441,15.5\n26,442,16.0\n26,443,16.5\n26,444,17.0\n26,445,17.5\n26,446,18.0\n26,447,18.5\n26,448,19.0\n26,449,19.5\n26,450,9.0\n26,451,8.5\n26,452,9.0\n26,453,9.5\n26,454,10.0\n26,455,10.5\n26,456,11.0\n26,457,11.5\n26,458,12.0\n26,459,12.5\n26,460,13.0\n26,461,13.5\n26,462,14.0\n26,463,14.5\n26,464,15.0\n26,465,15.5\n26,466,16.0\n26,467,16.5\n26,468,17.0\n26,469,17.5\n26,470,18.0\n26,471,18.5\n26,472,19.0\n26,473,19.5\n26,474,20.0\n26,475,9.5\n26,476,9.0\n26,477,9.5\n26,478,10.0\n26,479,10.5\n26,480,11.0\n26,481,11.5\n26,482,12.0\n26,483,12.5\n26,484,13.0\n26,485,13.5\n26,486,14.0\n26,487,14.5\n26,488,15.0\n26,489,15.5\n26,490,16.0\n26,491,16.5\n26,492,17.0\n26,493,17.5\n26,494,18.0\n26,495,18.5\n26,496,19.0\n26,497,19.5\n26,498,20.0\n26,499,20.5\n26,500,10.0\n26,501,9.5\n26,502,10.0\n26,503,10.5\n26,504,11.0\n26,505,11.5\n26,506,12.0\n26,507,12.5\n26,508,13.0\n26,509,13.5\n26,510,14.0\n26,511,14.5\n26,512,15.0\n26,513,15.5\n26,514,16.0\n26,515,16.5\n26,516,17.0\n26,517,17.5\n26,518,18.0\n26,519,18.5\n26,520,19.0\n26,521,19.5\n26,522,20.0\n26,523,20.5\n26,524,21.0\n26,525,10.5\n26,526,10.0\n26,527,10.5\n26,528,11.0\n26,529,11.5\n26,530,12.0\n26,531,12.5\n26,532,13.0\n26,533,13.5\n26,534,14.0\n26,535,14.5\n26,536,15.0\n26,537,15.5\n26,538,16.0\n26,539,16.5\n26,540,17.0\n26,541,17.5\n26,542,18.0\n26,543,18.5\n26,544,19.0\n26,545,19.5\n26,546,20.0\n26,547,20.5\n26,548,21.0\n26,549,21.5\n26,550,11.0\n26,551,10.5\n26,552,11.0\n26,553,11.5\n26,554,12.0\n26,555,12.5\n26,556,13.0\n26,557,13.5\n26,558,14.0\n26,559,14.5\n26,560,15.0\n26,561,15.5\n26,562,16.0\n26,563,16.5\n26,564,17.0\n26,565,17.5\n26,566,18.0\n26,567,18.5\n26,568,19.0\n26,569,19.5\n26,570,20.0\n26,571,20.5\n26,572,21.0\n26,573,21.5\n26,574,22.0\n26,575,11.5\n26,576,11.0\n26,577,11.5\n26,578,12.0\n26,579,12.5\n26,580,13.0\n26,581,13.5\n26,582,14.0\n26,583,14.5\n26,584,15.0\n26,585,15.5\n26,586,16.0\n26,587,16.5\n26,588,17.0\n26,589,17.5\n26,590,18.0\n26,591,18.5\n26,592,19.0\n26,593,19.5\n26,594,20.0\n26,595,20.5\n26,596,21.0\n26,597,21.5\n26,598,22.0\n26,599,22.5\n26,600,12.0\n26,601,11.5\n26,602,12.0\n26,603,12.5\n26,604,13.0\n26,605,13.5\n26,606,14.0\n26,607,14.5\n26,608,15.0\n26,609,15.5\n26,610,16.0\n26,611,16.5\n26,612,17.0\n26,613,17.5\n26,614,18.0\n26,615,18.5\n26,616,19.0\n26,617,19.5\n26,618,20.0\n26,619,20.5\n26,620,21.0\n26,621,21.5\n26,622,22.0\n26,623,22.5\n26,624,23.0\n27,0,1.5\n27,1,1.0\n27,2,0.5\n27,3,1.0\n27,4,1.5\n27,5,2.0\n27,6,2.5\n27,7,3.0\n27,8,3.5\n27,9,4.0\n27,10,4.5\n27,11,5.0\n27,12,5.5\n27,13,6.0\n27,14,6.5\n27,15,7.0\n27,16,7.5\n27,17,8.0\n27,18,8.5\n27,19,9.0\n27,20,9.5\n27,21,10.0\n27,22,10.5\n27,23,11.0\n27,24,11.5\n27,25,1.0\n27,26,0.5\n27,27,0\n27,28,0.5\n27,29,1.0\n27,30,1.5\n27,31,2.0\n27,32,2.5\n27,33,3.0\n27,34,3.5\n27,35,4.0\n27,36,4.5\n27,37,5.0\n27,38,5.5\n27,39,6.0\n27,40,6.5\n27,41,7.0\n27,42,7.5\n27,43,8.0\n27,44,8.5\n27,45,9.0\n27,46,9.5\n27,47,10.0\n27,48,10.5\n27,49,11.0\n27,50,1.5\n27,51,1.0\n27,52,0.5\n27,53,1.0\n27,54,1.5\n27,55,2.0\n27,56,2.5\n27,57,3.0\n27,58,3.5\n27,59,4.0\n27,60,4.5\n27,61,5.0\n27,62,5.5\n27,63,6.0\n27,64,6.5\n27,65,7.0\n27,66,7.5\n27,67,8.0\n27,68,8.5\n27,69,9.0\n27,70,9.5\n27,71,10.0\n27,72,10.5\n27,73,11.0\n27,74,11.5\n27,75,2.0\n27,76,1.5\n27,77,1.0\n27,78,1.5\n27,79,2.0\n27,80,2.5\n27,81,3.0\n27,82,3.5\n27,83,4.0\n27,84,4.5\n27,85,5.0\n27,86,5.5\n27,87,6.0\n27,88,6.5\n27,89,7.0\n27,90,7.5\n27,91,8.0\n27,92,8.5\n27,93,9.0\n27,94,9.5\n27,95,10.0\n27,96,10.5\n27,97,11.0\n27,98,11.5\n27,99,12.0\n27,100,2.5\n27,101,2.0\n27,102,1.5\n27,103,2.0\n27,104,2.5\n27,105,3.0\n27,106,3.5\n27,107,4.0\n27,108,4.5\n27,109,5.0\n27,110,5.5\n27,111,6.0\n27,112,6.5\n27,113,7.0\n27,114,7.5\n27,115,8.0\n27,116,8.5\n27,117,9.0\n27,118,9.5\n27,119,10.0\n27,120,10.5\n27,121,11.0\n27,122,11.5\n27,123,12.0\n27,124,12.5\n27,125,3.0\n27,126,2.5\n27,127,2.0\n27,128,2.5\n27,129,3.0\n27,130,3.5\n27,131,4.0\n27,132,4.5\n27,133,5.0\n27,134,5.5\n27,135,6.0\n27,136,6.5\n27,137,7.0\n27,138,7.5\n27,139,8.0\n27,140,8.5\n27,141,9.0\n27,142,9.5\n27,143,10.0\n27,144,10.5\n27,145,11.0\n27,146,11.5\n27,147,12.0\n27,148,12.5\n27,149,13.0\n27,150,3.5\n27,151,3.0\n27,152,2.5\n27,153,3.0\n27,154,3.5\n27,155,4.0\n27,156,4.5\n27,157,5.0\n27,158,5.5\n27,159,6.0\n27,160,6.5\n27,161,7.0\n27,162,7.5\n27,163,8.0\n27,164,8.5\n27,165,9.0\n27,166,9.5\n27,167,10.0\n27,168,10.5\n27,169,11.0\n27,170,11.5\n27,171,12.0\n27,172,12.5\n27,173,13.0\n27,174,13.5\n27,175,4.0\n27,176,3.5\n27,177,3.0\n27,178,3.5\n27,179,4.0\n27,180,4.5\n27,181,5.0\n27,182,5.5\n27,183,6.0\n27,184,6.5\n27,185,7.0\n27,186,7.5\n27,187,8.0\n27,188,8.5\n27,189,9.0\n27,190,9.5\n27,191,10.0\n27,192,10.5\n27,193,11.0\n27,194,11.5\n27,195,12.0\n27,196,12.5\n27,197,13.0\n27,198,13.5\n27,199,14.0\n27,200,4.5\n27,201,4.0\n27,202,3.5\n27,203,4.0\n27,204,4.5\n27,205,5.0\n27,206,5.5\n27,207,6.0\n27,208,6.5\n27,209,7.0\n27,210,7.5\n27,211,8.0\n27,212,8.5\n27,213,9.0\n27,214,9.5\n27,215,10.0\n27,216,10.5\n27,217,11.0\n27,218,11.5\n27,219,12.0\n27,220,12.5\n27,221,13.0\n27,222,13.5\n27,223,14.0\n27,224,14.5\n27,225,5.0\n27,226,4.5\n27,227,4.0\n27,228,4.5\n27,229,5.0\n27,230,5.5\n27,231,6.0\n27,232,6.5\n27,233,7.0\n27,234,7.5\n27,235,8.0\n27,236,8.5\n27,237,9.0\n27,238,9.5\n27,239,10.0\n27,240,10.5\n27,241,11.0\n27,242,11.5\n27,243,12.0\n27,244,12.5\n27,245,13.0\n27,246,13.5\n27,247,14.0\n27,248,14.5\n27,249,15.0\n27,250,5.5\n27,251,5.0\n27,252,4.5\n27,253,5.0\n27,254,5.5\n27,255,6.0\n27,256,6.5\n27,257,7.0\n27,258,7.5\n27,259,8.0\n27,260,8.5\n27,261,9.0\n27,262,9.5\n27,263,10.0\n27,264,10.5\n27,265,11.0\n27,266,11.5\n27,267,12.0\n27,268,12.5\n27,269,13.0\n27,270,13.5\n27,271,14.0\n27,272,14.5\n27,273,15.0\n27,274,15.5\n27,275,6.0\n27,276,5.5\n27,277,5.0\n27,278,5.5\n27,279,6.0\n27,280,6.5\n27,281,7.0\n27,282,7.5\n27,283,8.0\n27,284,8.5\n27,285,9.0\n27,286,9.5\n27,287,10.0\n27,288,10.5\n27,289,11.0\n27,290,11.5\n27,291,12.0\n27,292,12.5\n27,293,13.0\n27,294,13.5\n27,295,14.0\n27,296,14.5\n27,297,15.0\n27,298,15.5\n27,299,16.0\n27,300,6.5\n27,301,6.0\n27,302,5.5\n27,303,6.0\n27,304,6.5\n27,305,7.0\n27,306,7.5\n27,307,8.0\n27,308,8.5\n27,309,9.0\n27,310,9.5\n27,311,10.0\n27,312,10.5\n27,313,11.0\n27,314,11.5\n27,315,12.0\n27,316,12.5\n27,317,13.0\n27,318,13.5\n27,319,14.0\n27,320,14.5\n27,321,15.0\n27,322,15.5\n27,323,16.0\n27,324,16.5\n27,325,7.0\n27,326,6.5\n27,327,6.0\n27,328,6.5\n27,329,7.0\n27,330,7.5\n27,331,8.0\n27,332,8.5\n27,333,9.0\n27,334,9.5\n27,335,10.0\n27,336,10.5\n27,337,11.0\n27,338,11.5\n27,339,12.0\n27,340,12.5\n27,341,13.0\n27,342,13.5\n27,343,14.0\n27,344,14.5\n27,345,15.0\n27,346,15.5\n27,347,16.0\n27,348,16.5\n27,349,17.0\n27,350,7.5\n27,351,7.0\n27,352,6.5\n27,353,7.0\n27,354,7.5\n27,355,8.0\n27,356,8.5\n27,357,9.0\n27,358,9.5\n27,359,10.0\n27,360,10.5\n27,361,11.0\n27,362,11.5\n27,363,12.0\n27,364,12.5\n27,365,13.0\n27,366,13.5\n27,367,14.0\n27,368,14.5\n27,369,15.0\n27,370,15.5\n27,371,16.0\n27,372,16.5\n27,373,17.0\n27,374,17.5\n27,375,8.0\n27,376,7.5\n27,377,7.0\n27,378,7.5\n27,379,8.0\n27,380,8.5\n27,381,9.0\n27,382,9.5\n27,383,10.0\n27,384,10.5\n27,385,11.0\n27,386,11.5\n27,387,12.0\n27,388,12.5\n27,389,13.0\n27,390,13.5\n27,391,14.0\n27,392,14.5\n27,393,15.0\n27,394,15.5\n27,395,16.0\n27,396,16.5\n27,397,17.0\n27,398,17.5\n27,399,18.0\n27,400,8.5\n27,401,8.0\n27,402,7.5\n27,403,8.0\n27,404,8.5\n27,405,9.0\n27,406,9.5\n27,407,10.0\n27,408,10.5\n27,409,11.0\n27,410,11.5\n27,411,12.0\n27,412,12.5\n27,413,13.0\n27,414,13.5\n27,415,14.0\n27,416,14.5\n27,417,15.0\n27,418,15.5\n27,419,16.0\n27,420,16.5\n27,421,17.0\n27,422,17.5\n27,423,18.0\n27,424,18.5\n27,425,9.0\n27,426,8.5\n27,427,8.0\n27,428,8.5\n27,429,9.0\n27,430,9.5\n27,431,10.0\n27,432,10.5\n27,433,11.0\n27,434,11.5\n27,435,12.0\n27,436,12.5\n27,437,13.0\n27,438,13.5\n27,439,14.0\n27,440,14.5\n27,441,15.0\n27,442,15.5\n27,443,16.0\n27,444,16.5\n27,445,17.0\n27,446,17.5\n27,447,18.0\n27,448,18.5\n27,449,19.0\n27,450,9.5\n27,451,9.0\n27,452,8.5\n27,453,9.0\n27,454,9.5\n27,455,10.0\n27,456,10.5\n27,457,11.0\n27,458,11.5\n27,459,12.0\n27,460,12.5\n27,461,13.0\n27,462,13.5\n27,463,14.0\n27,464,14.5\n27,465,15.0\n27,466,15.5\n27,467,16.0\n27,468,16.5\n27,469,17.0\n27,470,17.5\n27,471,18.0\n27,472,18.5\n27,473,19.0\n27,474,19.5\n27,475,10.0\n27,476,9.5\n27,477,9.0\n27,478,9.5\n27,479,10.0\n27,480,10.5\n27,481,11.0\n27,482,11.5\n27,483,12.0\n27,484,12.5\n27,485,13.0\n27,486,13.5\n27,487,14.0\n27,488,14.5\n27,489,15.0\n27,490,15.5\n27,491,16.0\n27,492,16.5\n27,493,17.0\n27,494,17.5\n27,495,18.0\n27,496,18.5\n27,497,19.0\n27,498,19.5\n27,499,20.0\n27,500,10.5\n27,501,10.0\n27,502,9.5\n27,503,10.0\n27,504,10.5\n27,505,11.0\n27,506,11.5\n27,507,12.0\n27,508,12.5\n27,509,13.0\n27,510,13.5\n27,511,14.0\n27,512,14.5\n27,513,15.0\n27,514,15.5\n27,515,16.0\n27,516,16.5\n27,517,17.0\n27,518,17.5\n27,519,18.0\n27,520,18.5\n27,521,19.0\n27,522,19.5\n27,523,20.0\n27,524,20.5\n27,525,11.0\n27,526,10.5\n27,527,10.0\n27,528,10.5\n27,529,11.0\n27,530,11.5\n27,531,12.0\n27,532,12.5\n27,533,13.0\n27,534,13.5\n27,535,14.0\n27,536,14.5\n27,537,15.0\n27,538,15.5\n27,539,16.0\n27,540,16.5\n27,541,17.0\n27,542,17.5\n27,543,18.0\n27,544,18.5\n27,545,19.0\n27,546,19.5\n27,547,20.0\n27,548,20.5\n27,549,21.0\n27,550,11.5\n27,551,11.0\n27,552,10.5\n27,553,11.0\n27,554,11.5\n27,555,12.0\n27,556,12.5\n27,557,13.0\n27,558,13.5\n27,559,14.0\n27,560,14.5\n27,561,15.0\n27,562,15.5\n27,563,16.0\n27,564,16.5\n27,565,17.0\n27,566,17.5\n27,567,18.0\n27,568,18.5\n27,569,19.0\n27,570,19.5\n27,571,20.0\n27,572,20.5\n27,573,21.0\n27,574,21.5\n27,575,12.0\n27,576,11.5\n27,577,11.0\n27,578,11.5\n27,579,12.0\n27,580,12.5\n27,581,13.0\n27,582,13.5\n27,583,14.0\n27,584,14.5\n27,585,15.0\n27,586,15.5\n27,587,16.0\n27,588,16.5\n27,589,17.0\n27,590,17.5\n27,591,18.0\n27,592,18.5\n27,593,19.0\n27,594,19.5\n27,595,20.0\n27,596,20.5\n27,597,21.0\n27,598,21.5\n27,599,22.0\n27,600,12.5\n27,601,12.0\n27,602,11.5\n27,603,12.0\n27,604,12.5\n27,605,13.0\n27,606,13.5\n27,607,14.0\n27,608,14.5\n27,609,15.0\n27,610,15.5\n27,611,16.0\n27,612,16.5\n27,613,17.0\n27,614,17.5\n27,615,18.0\n27,616,18.5\n27,617,19.0\n27,618,19.5\n27,619,20.0\n27,620,20.5\n27,621,21.0\n27,622,21.5\n27,623,22.0\n27,624,22.5\n28,0,2.0\n28,1,1.5\n28,2,1.0\n28,3,0.5\n28,4,1.0\n28,5,1.5\n28,6,2.0\n28,7,2.5\n28,8,3.0\n28,9,3.5\n28,10,4.0\n28,11,4.5\n28,12,5.0\n28,13,5.5\n28,14,6.0\n28,15,6.5\n28,16,7.0\n28,17,7.5\n28,18,8.0\n28,19,8.5\n28,20,9.0\n28,21,9.5\n28,22,10.0\n28,23,10.5\n28,24,11.0\n28,25,1.5\n28,26,1.0\n28,27,0.5\n28,28,0\n28,29,0.5\n28,30,1.0\n28,31,1.5\n28,32,2.0\n28,33,2.5\n28,34,3.0\n28,35,3.5\n28,36,4.0\n28,37,4.5\n28,38,5.0\n28,39,5.5\n28,40,6.0\n28,41,6.5\n28,42,7.0\n28,43,7.5\n28,44,8.0\n28,45,8.5\n28,46,9.0\n28,47,9.5\n28,48,10.0\n28,49,10.5\n28,50,2.0\n28,51,1.5\n28,52,1.0\n28,53,0.5\n28,54,1.0\n28,55,1.5\n28,56,2.0\n28,57,2.5\n28,58,3.0\n28,59,3.5\n28,60,4.0\n28,61,4.5\n28,62,5.0\n28,63,5.5\n28,64,6.0\n28,65,6.5\n28,66,7.0\n28,67,7.5\n28,68,8.0\n28,69,8.5\n28,70,9.0\n28,71,9.5\n28,72,10.0\n28,73,10.5\n28,74,11.0\n28,75,2.5\n28,76,2.0\n28,77,1.5\n28,78,1.0\n28,79,1.5\n28,80,2.0\n28,81,2.5\n28,82,3.0\n28,83,3.5\n28,84,4.0\n28,85,4.5\n28,86,5.0\n28,87,5.5\n28,88,6.0\n28,89,6.5\n28,90,7.0\n28,91,7.5\n28,92,8.0\n28,93,8.5\n28,94,9.0\n28,95,9.5\n28,96,10.0\n28,97,10.5\n28,98,11.0\n28,99,11.5\n28,100,3.0\n28,101,2.5\n28,102,2.0\n28,103,1.5\n28,104,2.0\n28,105,2.5\n28,106,3.0\n28,107,3.5\n28,108,4.0\n28,109,4.5\n28,110,5.0\n28,111,5.5\n28,112,6.0\n28,113,6.5\n28,114,7.0\n28,115,7.5\n28,116,8.0\n28,117,8.5\n28,118,9.0\n28,119,9.5\n28,120,10.0\n28,121,10.5\n28,122,11.0\n28,123,11.5\n28,124,12.0\n28,125,3.5\n28,126,3.0\n28,127,2.5\n28,128,2.0\n28,129,2.5\n28,130,3.0\n28,131,3.5\n28,132,4.0\n28,133,4.5\n28,134,5.0\n28,135,5.5\n28,136,6.0\n28,137,6.5\n28,138,7.0\n28,139,7.5\n28,140,8.0\n28,141,8.5\n28,142,9.0\n28,143,9.5\n28,144,10.0\n28,145,10.5\n28,146,11.0\n28,147,11.5\n28,148,12.0\n28,149,12.5\n28,150,4.0\n28,151,3.5\n28,152,3.0\n28,153,2.5\n28,154,3.0\n28,155,3.5\n28,156,4.0\n28,157,4.5\n28,158,5.0\n28,159,5.5\n28,160,6.0\n28,161,6.5\n28,162,7.0\n28,163,7.5\n28,164,8.0\n28,165,8.5\n28,166,9.0\n28,167,9.5\n28,168,10.0\n28,169,10.5\n28,170,11.0\n28,171,11.5\n28,172,12.0\n28,173,12.5\n28,174,13.0\n28,175,4.5\n28,176,4.0\n28,177,3.5\n28,178,3.0\n28,179,3.5\n28,180,4.0\n28,181,4.5\n28,182,5.0\n28,183,5.5\n28,184,6.0\n28,185,6.5\n28,186,7.0\n28,187,7.5\n28,188,8.0\n28,189,8.5\n28,190,9.0\n28,191,9.5\n28,192,10.0\n28,193,10.5\n28,194,11.0\n28,195,11.5\n28,196,12.0\n28,197,12.5\n28,198,13.0\n28,199,13.5\n28,200,5.0\n28,201,4.5\n28,202,4.0\n28,203,3.5\n28,204,4.0\n28,205,4.5\n28,206,5.0\n28,207,5.5\n28,208,6.0\n28,209,6.5\n28,210,7.0\n28,211,7.5\n28,212,8.0\n28,213,8.5\n28,214,9.0\n28,215,9.5\n28,216,10.0\n28,217,10.5\n28,218,11.0\n28,219,11.5\n28,220,12.0\n28,221,12.5\n28,222,13.0\n28,223,13.5\n28,224,14.0\n28,225,5.5\n28,226,5.0\n28,227,4.5\n28,228,4.0\n28,229,4.5\n28,230,5.0\n28,231,5.5\n28,232,6.0\n28,233,6.5\n28,234,7.0\n28,235,7.5\n28,236,8.0\n28,237,8.5\n28,238,9.0\n28,239,9.5\n28,240,10.0\n28,241,10.5\n28,242,11.0\n28,243,11.5\n28,244,12.0\n28,245,12.5\n28,246,13.0\n28,247,13.5\n28,248,14.0\n28,249,14.5\n28,250,6.0\n28,251,5.5\n28,252,5.0\n28,253,4.5\n28,254,5.0\n28,255,5.5\n28,256,6.0\n28,257,6.5\n28,258,7.0\n28,259,7.5\n28,260,8.0\n28,261,8.5\n28,262,9.0\n28,263,9.5\n28,264,10.0\n28,265,10.5\n28,266,11.0\n28,267,11.5\n28,268,12.0\n28,269,12.5\n28,270,13.0\n28,271,13.5\n28,272,14.0\n28,273,14.5\n28,274,15.0\n28,275,6.5\n28,276,6.0\n28,277,5.5\n28,278,5.0\n28,279,5.5\n28,280,6.0\n28,281,6.5\n28,282,7.0\n28,283,7.5\n28,284,8.0\n28,285,8.5\n28,286,9.0\n28,287,9.5\n28,288,10.0\n28,289,10.5\n28,290,11.0\n28,291,11.5\n28,292,12.0\n28,293,12.5\n28,294,13.0\n28,295,13.5\n28,296,14.0\n28,297,14.5\n28,298,15.0\n28,299,15.5\n28,300,7.0\n28,301,6.5\n28,302,6.0\n28,303,5.5\n28,304,6.0\n28,305,6.5\n28,306,7.0\n28,307,7.5\n28,308,8.0\n28,309,8.5\n28,310,9.0\n28,311,9.5\n28,312,10.0\n28,313,10.5\n28,314,11.0\n28,315,11.5\n28,316,12.0\n28,317,12.5\n28,318,13.0\n28,319,13.5\n28,320,14.0\n28,321,14.5\n28,322,15.0\n28,323,15.5\n28,324,16.0\n28,325,7.5\n28,326,7.0\n28,327,6.5\n28,328,6.0\n28,329,6.5\n28,330,7.0\n28,331,7.5\n28,332,8.0\n28,333,8.5\n28,334,9.0\n28,335,9.5\n28,336,10.0\n28,337,10.5\n28,338,11.0\n28,339,11.5\n28,340,12.0\n28,341,12.5\n28,342,13.0\n28,343,13.5\n28,344,14.0\n28,345,14.5\n28,346,15.0\n28,347,15.5\n28,348,16.0\n28,349,16.5\n28,350,8.0\n28,351,7.5\n28,352,7.0\n28,353,6.5\n28,354,7.0\n28,355,7.5\n28,356,8.0\n28,357,8.5\n28,358,9.0\n28,359,9.5\n28,360,10.0\n28,361,10.5\n28,362,11.0\n28,363,11.5\n28,364,12.0\n28,365,12.5\n28,366,13.0\n28,367,13.5\n28,368,14.0\n28,369,14.5\n28,370,15.0\n28,371,15.5\n28,372,16.0\n28,373,16.5\n28,374,17.0\n28,375,8.5\n28,376,8.0\n28,377,7.5\n28,378,7.0\n28,379,7.5\n28,380,8.0\n28,381,8.5\n28,382,9.0\n28,383,9.5\n28,384,10.0\n28,385,10.5\n28,386,11.0\n28,387,11.5\n28,388,12.0\n28,389,12.5\n28,390,13.0\n28,391,13.5\n28,392,14.0\n28,393,14.5\n28,394,15.0\n28,395,15.5\n28,396,16.0\n28,397,16.5\n28,398,17.0\n28,399,17.5\n28,400,9.0\n28,401,8.5\n28,402,8.0\n28,403,7.5\n28,404,8.0\n28,405,8.5\n28,406,9.0\n28,407,9.5\n28,408,10.0\n28,409,10.5\n28,410,11.0\n28,411,11.5\n28,412,12.0\n28,413,12.5\n28,414,13.0\n28,415,13.5\n28,416,14.0\n28,417,14.5\n28,418,15.0\n28,419,15.5\n28,420,16.0\n28,421,16.5\n28,422,17.0\n28,423,17.5\n28,424,18.0\n28,425,9.5\n28,426,9.0\n28,427,8.5\n28,428,8.0\n28,429,8.5\n28,430,9.0\n28,431,9.5\n28,432,10.0\n28,433,10.5\n28,434,11.0\n28,435,11.5\n28,436,12.0\n28,437,12.5\n28,438,13.0\n28,439,13.5\n28,440,14.0\n28,441,14.5\n28,442,15.0\n28,443,15.5\n28,444,16.0\n28,445,16.5\n28,446,17.0\n28,447,17.5\n28,448,18.0\n28,449,18.5\n28,450,10.0\n28,451,9.5\n28,452,9.0\n28,453,8.5\n28,454,9.0\n28,455,9.5\n28,456,10.0\n28,457,10.5\n28,458,11.0\n28,459,11.5\n28,460,12.0\n28,461,12.5\n28,462,13.0\n28,463,13.5\n28,464,14.0\n28,465,14.5\n28,466,15.0\n28,467,15.5\n28,468,16.0\n28,469,16.5\n28,470,17.0\n28,471,17.5\n28,472,18.0\n28,473,18.5\n28,474,19.0\n28,475,10.5\n28,476,10.0\n28,477,9.5\n28,478,9.0\n28,479,9.5\n28,480,10.0\n28,481,10.5\n28,482,11.0\n28,483,11.5\n28,484,12.0\n28,485,12.5\n28,486,13.0\n28,487,13.5\n28,488,14.0\n28,489,14.5\n28,490,15.0\n28,491,15.5\n28,492,16.0\n28,493,16.5\n28,494,17.0\n28,495,17.5\n28,496,18.0\n28,497,18.5\n28,498,19.0\n28,499,19.5\n28,500,11.0\n28,501,10.5\n28,502,10.0\n28,503,9.5\n28,504,10.0\n28,505,10.5\n28,506,11.0\n28,507,11.5\n28,508,12.0\n28,509,12.5\n28,510,13.0\n28,511,13.5\n28,512,14.0\n28,513,14.5\n28,514,15.0\n28,515,15.5\n28,516,16.0\n28,517,16.5\n28,518,17.0\n28,519,17.5\n28,520,18.0\n28,521,18.5\n28,522,19.0\n28,523,19.5\n28,524,20.0\n28,525,11.5\n28,526,11.0\n28,527,10.5\n28,528,10.0\n28,529,10.5\n28,530,11.0\n28,531,11.5\n28,532,12.0\n28,533,12.5\n28,534,13.0\n28,535,13.5\n28,536,14.0\n28,537,14.5\n28,538,15.0\n28,539,15.5\n28,540,16.0\n28,541,16.5\n28,542,17.0\n28,543,17.5\n28,544,18.0\n28,545,18.5\n28,546,19.0\n28,547,19.5\n28,548,20.0\n28,549,20.5\n28,550,12.0\n28,551,11.5\n28,552,11.0\n28,553,10.5\n28,554,11.0\n28,555,11.5\n28,556,12.0\n28,557,12.5\n28,558,13.0\n28,559,13.5\n28,560,14.0\n28,561,14.5\n28,562,15.0\n28,563,15.5\n28,564,16.0\n28,565,16.5\n28,566,17.0\n28,567,17.5\n28,568,18.0\n28,569,18.5\n28,570,19.0\n28,571,19.5\n28,572,20.0\n28,573,20.5\n28,574,21.0\n28,575,12.5\n28,576,12.0\n28,577,11.5\n28,578,11.0\n28,579,11.5\n28,580,12.0\n28,581,12.5\n28,582,13.0\n28,583,13.5\n28,584,14.0\n28,585,14.5\n28,586,15.0\n28,587,15.5\n28,588,16.0\n28,589,16.5\n28,590,17.0\n28,591,17.5\n28,592,18.0\n28,593,18.5\n28,594,19.0\n28,595,19.5\n28,596,20.0\n28,597,20.5\n28,598,21.0\n28,599,21.5\n28,600,13.0\n28,601,12.5\n28,602,12.0\n28,603,11.5\n28,604,12.0\n28,605,12.5\n28,606,13.0\n28,607,13.5\n28,608,14.0\n28,609,14.5\n28,610,15.0\n28,611,15.5\n28,612,16.0\n28,613,16.5\n28,614,17.0\n28,615,17.5\n28,616,18.0\n28,617,18.5\n28,618,19.0\n28,619,19.5\n28,620,20.0\n28,621,20.5\n28,622,21.0\n28,623,21.5\n28,624,22.0\n29,0,2.5\n29,1,2.0\n29,2,1.5\n29,3,1.0\n29,4,0.5\n29,5,1.0\n29,6,1.5\n29,7,2.0\n29,8,2.5\n29,9,3.0\n29,10,3.5\n29,11,4.0\n29,12,4.5\n29,13,5.0\n29,14,5.5\n29,15,6.0\n29,16,6.5\n29,17,7.0\n29,18,7.5\n29,19,8.0\n29,20,8.5\n29,21,9.0\n29,22,9.5\n29,23,10.0\n29,24,10.5\n29,25,2.0\n29,26,1.5\n29,27,1.0\n29,28,0.5\n29,29,0\n29,30,0.5\n29,31,1.0\n29,32,1.5\n29,33,2.0\n29,34,2.5\n29,35,3.0\n29,36,3.5\n29,37,4.0\n29,38,4.5\n29,39,5.0\n29,40,5.5\n29,41,6.0\n29,42,6.5\n29,43,7.0\n29,44,7.5\n29,45,8.0\n29,46,8.5\n29,47,9.0\n29,48,9.5\n29,49,10.0\n29,50,2.5\n29,51,2.0\n29,52,1.5\n29,53,1.0\n29,54,0.5\n29,55,1.0\n29,56,1.5\n29,57,2.0\n29,58,2.5\n29,59,3.0\n29,60,3.5\n29,61,4.0\n29,62,4.5\n29,63,5.0\n29,64,5.5\n29,65,6.0\n29,66,6.5\n29,67,7.0\n29,68,7.5\n29,69,8.0\n29,70,8.5\n29,71,9.0\n29,72,9.5\n29,73,10.0\n29,74,10.5\n29,75,3.0\n29,76,2.5\n29,77,2.0\n29,78,1.5\n29,79,1.0\n29,80,1.5\n29,81,2.0\n29,82,2.5\n29,83,3.0\n29,84,3.5\n29,85,4.0\n29,86,4.5\n29,87,5.0\n29,88,5.5\n29,89,6.0\n29,90,6.5\n29,91,7.0\n29,92,7.5\n29,93,8.0\n29,94,8.5\n29,95,9.0\n29,96,9.5\n29,97,10.0\n29,98,10.5\n29,99,11.0\n29,100,3.5\n29,101,3.0\n29,102,2.5\n29,103,2.0\n29,104,1.5\n29,105,2.0\n29,106,2.5\n29,107,3.0\n29,108,3.5\n29,109,4.0\n29,110,4.5\n29,111,5.0\n29,112,5.5\n29,113,6.0\n29,114,6.5\n29,115,7.0\n29,116,7.5\n29,117,8.0\n29,118,8.5\n29,119,9.0\n29,120,9.5\n29,121,10.0\n29,122,10.5\n29,123,11.0\n29,124,11.5\n29,125,4.0\n29,126,3.5\n29,127,3.0\n29,128,2.5\n29,129,2.0\n29,130,2.5\n29,131,3.0\n29,132,3.5\n29,133,4.0\n29,134,4.5\n29,135,5.0\n29,136,5.5\n29,137,6.0\n29,138,6.5\n29,139,7.0\n29,140,7.5\n29,141,8.0\n29,142,8.5\n29,143,9.0\n29,144,9.5\n29,145,10.0\n29,146,10.5\n29,147,11.0\n29,148,11.5\n29,149,12.0\n29,150,4.5\n29,151,4.0\n29,152,3.5\n29,153,3.0\n29,154,2.5\n29,155,3.0\n29,156,3.5\n29,157,4.0\n29,158,4.5\n29,159,5.0\n29,160,5.5\n29,161,6.0\n29,162,6.5\n29,163,7.0\n29,164,7.5\n29,165,8.0\n29,166,8.5\n29,167,9.0\n29,168,9.5\n29,169,10.0\n29,170,10.5\n29,171,11.0\n29,172,11.5\n29,173,12.0\n29,174,12.5\n29,175,5.0\n29,176,4.5\n29,177,4.0\n29,178,3.5\n29,179,3.0\n29,180,3.5\n29,181,4.0\n29,182,4.5\n29,183,5.0\n29,184,5.5\n29,185,6.0\n29,186,6.5\n29,187,7.0\n29,188,7.5\n29,189,8.0\n29,190,8.5\n29,191,9.0\n29,192,9.5\n29,193,10.0\n29,194,10.5\n29,195,11.0\n29,196,11.5\n29,197,12.0\n29,198,12.5\n29,199,13.0\n29,200,5.5\n29,201,5.0\n29,202,4.5\n29,203,4.0\n29,204,3.5\n29,205,4.0\n29,206,4.5\n29,207,5.0\n29,208,5.5\n29,209,6.0\n29,210,6.5\n29,211,7.0\n29,212,7.5\n29,213,8.0\n29,214,8.5\n29,215,9.0\n29,216,9.5\n29,217,10.0\n29,218,10.5\n29,219,11.0\n29,220,11.5\n29,221,12.0\n29,222,12.5\n29,223,13.0\n29,224,13.5\n29,225,6.0\n29,226,5.5\n29,227,5.0\n29,228,4.5\n29,229,4.0\n29,230,4.5\n29,231,5.0\n29,232,5.5\n29,233,6.0\n29,234,6.5\n29,235,7.0\n29,236,7.5\n29,237,8.0\n29,238,8.5\n29,239,9.0\n29,240,9.5\n29,241,10.0\n29,242,10.5\n29,243,11.0\n29,244,11.5\n29,245,12.0\n29,246,12.5\n29,247,13.0\n29,248,13.5\n29,249,14.0\n29,250,6.5\n29,251,6.0\n29,252,5.5\n29,253,5.0\n29,254,4.5\n29,255,5.0\n29,256,5.5\n29,257,6.0\n29,258,6.5\n29,259,7.0\n29,260,7.5\n29,261,8.0\n29,262,8.5\n29,263,9.0\n29,264,9.5\n29,265,10.0\n29,266,10.5\n29,267,11.0\n29,268,11.5\n29,269,12.0\n29,270,12.5\n29,271,13.0\n29,272,13.5\n29,273,14.0\n29,274,14.5\n29,275,7.0\n29,276,6.5\n29,277,6.0\n29,278,5.5\n29,279,5.0\n29,280,5.5\n29,281,6.0\n29,282,6.5\n29,283,7.0\n29,284,7.5\n29,285,8.0\n29,286,8.5\n29,287,9.0\n29,288,9.5\n29,289,10.0\n29,290,10.5\n29,291,11.0\n29,292,11.5\n29,293,12.0\n29,294,12.5\n29,295,13.0\n29,296,13.5\n29,297,14.0\n29,298,14.5\n29,299,15.0\n29,300,7.5\n29,301,7.0\n29,302,6.5\n29,303,6.0\n29,304,5.5\n29,305,6.0\n29,306,6.5\n29,307,7.0\n29,308,7.5\n29,309,8.0\n29,310,8.5\n29,311,9.0\n29,312,9.5\n29,313,10.0\n29,314,10.5\n29,315,11.0\n29,316,11.5\n29,317,12.0\n29,318,12.5\n29,319,13.0\n29,320,13.5\n29,321,14.0\n29,322,14.5\n29,323,15.0\n29,324,15.5\n29,325,8.0\n29,326,7.5\n29,327,7.0\n29,328,6.5\n29,329,6.0\n29,330,6.5\n29,331,7.0\n29,332,7.5\n29,333,8.0\n29,334,8.5\n29,335,9.0\n29,336,9.5\n29,337,10.0\n29,338,10.5\n29,339,11.0\n29,340,11.5\n29,341,12.0\n29,342,12.5\n29,343,13.0\n29,344,13.5\n29,345,14.0\n29,346,14.5\n29,347,15.0\n29,348,15.5\n29,349,16.0\n29,350,8.5\n29,351,8.0\n29,352,7.5\n29,353,7.0\n29,354,6.5\n29,355,7.0\n29,356,7.5\n29,357,8.0\n29,358,8.5\n29,359,9.0\n29,360,9.5\n29,361,10.0\n29,362,10.5\n29,363,11.0\n29,364,11.5\n29,365,12.0\n29,366,12.5\n29,367,13.0\n29,368,13.5\n29,369,14.0\n29,370,14.5\n29,371,15.0\n29,372,15.5\n29,373,16.0\n29,374,16.5\n29,375,9.0\n29,376,8.5\n29,377,8.0\n29,378,7.5\n29,379,7.0\n29,380,7.5\n29,381,8.0\n29,382,8.5\n29,383,9.0\n29,384,9.5\n29,385,10.0\n29,386,10.5\n29,387,11.0\n29,388,11.5\n29,389,12.0\n29,390,12.5\n29,391,13.0\n29,392,13.5\n29,393,14.0\n29,394,14.5\n29,395,15.0\n29,396,15.5\n29,397,16.0\n29,398,16.5\n29,399,17.0\n29,400,9.5\n29,401,9.0\n29,402,8.5\n29,403,8.0\n29,404,7.5\n29,405,8.0\n29,406,8.5\n29,407,9.0\n29,408,9.5\n29,409,10.0\n29,410,10.5\n29,411,11.0\n29,412,11.5\n29,413,12.0\n29,414,12.5\n29,415,13.0\n29,416,13.5\n29,417,14.0\n29,418,14.5\n29,419,15.0\n29,420,15.5\n29,421,16.0\n29,422,16.5\n29,423,17.0\n29,424,17.5\n29,425,10.0\n29,426,9.5\n29,427,9.0\n29,428,8.5\n29,429,8.0\n29,430,8.5\n29,431,9.0\n29,432,9.5\n29,433,10.0\n29,434,10.5\n29,435,11.0\n29,436,11.5\n29,437,12.0\n29,438,12.5\n29,439,13.0\n29,440,13.5\n29,441,14.0\n29,442,14.5\n29,443,15.0\n29,444,15.5\n29,445,16.0\n29,446,16.5\n29,447,17.0\n29,448,17.5\n29,449,18.0\n29,450,10.5\n29,451,10.0\n29,452,9.5\n29,453,9.0\n29,454,8.5\n29,455,9.0\n29,456,9.5\n29,457,10.0\n29,458,10.5\n29,459,11.0\n29,460,11.5\n29,461,12.0\n29,462,12.5\n29,463,13.0\n29,464,13.5\n29,465,14.0\n29,466,14.5\n29,467,15.0\n29,468,15.5\n29,469,16.0\n29,470,16.5\n29,471,17.0\n29,472,17.5\n29,473,18.0\n29,474,18.5\n29,475,11.0\n29,476,10.5\n29,477,10.0\n29,478,9.5\n29,479,9.0\n29,480,9.5\n29,481,10.0\n29,482,10.5\n29,483,11.0\n29,484,11.5\n29,485,12.0\n29,486,12.5\n29,487,13.0\n29,488,13.5\n29,489,14.0\n29,490,14.5\n29,491,15.0\n29,492,15.5\n29,493,16.0\n29,494,16.5\n29,495,17.0\n29,496,17.5\n29,497,18.0\n29,498,18.5\n29,499,19.0\n29,500,11.5\n29,501,11.0\n29,502,10.5\n29,503,10.0\n29,504,9.5\n29,505,10.0\n29,506,10.5\n29,507,11.0\n29,508,11.5\n29,509,12.0\n29,510,12.5\n29,511,13.0\n29,512,13.5\n29,513,14.0\n29,514,14.5\n29,515,15.0\n29,516,15.5\n29,517,16.0\n29,518,16.5\n29,519,17.0\n29,520,17.5\n29,521,18.0\n29,522,18.5\n29,523,19.0\n29,524,19.5\n29,525,12.0\n29,526,11.5\n29,527,11.0\n29,528,10.5\n29,529,10.0\n29,530,10.5\n29,531,11.0\n29,532,11.5\n29,533,12.0\n29,534,12.5\n29,535,13.0\n29,536,13.5\n29,537,14.0\n29,538,14.5\n29,539,15.0\n29,540,15.5\n29,541,16.0\n29,542,16.5\n29,543,17.0\n29,544,17.5\n29,545,18.0\n29,546,18.5\n29,547,19.0\n29,548,19.5\n29,549,20.0\n29,550,12.5\n29,551,12.0\n29,552,11.5\n29,553,11.0\n29,554,10.5\n29,555,11.0\n29,556,11.5\n29,557,12.0\n29,558,12.5\n29,559,13.0\n29,560,13.5\n29,561,14.0\n29,562,14.5\n29,563,15.0\n29,564,15.5\n29,565,16.0\n29,566,16.5\n29,567,17.0\n29,568,17.5\n29,569,18.0\n29,570,18.5\n29,571,19.0\n29,572,19.5\n29,573,20.0\n29,574,20.5\n29,575,13.0\n29,576,12.5\n29,577,12.0\n29,578,11.5\n29,579,11.0\n29,580,11.5\n29,581,12.0\n29,582,12.5\n29,583,13.0\n29,584,13.5\n29,585,14.0\n29,586,14.5\n29,587,15.0\n29,588,15.5\n29,589,16.0\n29,590,16.5\n29,591,17.0\n29,592,17.5\n29,593,18.0\n29,594,18.5\n29,595,19.0\n29,596,19.5\n29,597,20.0\n29,598,20.5\n29,599,21.0\n29,600,13.5\n29,601,13.0\n29,602,12.5\n29,603,12.0\n29,604,11.5\n29,605,12.0\n29,606,12.5\n29,607,13.0\n29,608,13.5\n29,609,14.0\n29,610,14.5\n29,611,15.0\n29,612,15.5\n29,613,16.0\n29,614,16.5\n29,615,17.0\n29,616,17.5\n29,617,18.0\n29,618,18.5\n29,619,19.0\n29,620,19.5\n29,621,20.0\n29,622,20.5\n29,623,21.0\n29,624,21.5\n30,0,3.0\n30,1,2.5\n30,2,2.0\n30,3,1.5\n30,4,1.0\n30,5,0.5\n30,6,1.0\n30,7,1.5\n30,8,2.0\n30,9,2.5\n30,10,3.0\n30,11,3.5\n30,12,4.0\n30,13,4.5\n30,14,5.0\n30,15,5.5\n30,16,6.0\n30,17,6.5\n30,18,7.0\n30,19,7.5\n30,20,8.0\n30,21,8.5\n30,22,9.0\n30,23,9.5\n30,24,10.0\n30,25,2.5\n30,26,2.0\n30,27,1.5\n30,28,1.0\n30,29,0.5\n30,30,0\n30,31,0.5\n30,32,1.0\n30,33,1.5\n30,34,2.0\n30,35,2.5\n30,36,3.0\n30,37,3.5\n30,38,4.0\n30,39,4.5\n30,40,5.0\n30,41,5.5\n30,42,6.0\n30,43,6.5\n30,44,7.0\n30,45,7.5\n30,46,8.0\n30,47,8.5\n30,48,9.0\n30,49,9.5\n30,50,3.0\n30,51,2.5\n30,52,2.0\n30,53,1.5\n30,54,1.0\n30,55,0.5\n30,56,1.0\n30,57,1.5\n30,58,2.0\n30,59,2.5\n30,60,3.0\n30,61,3.5\n30,62,4.0\n30,63,4.5\n30,64,5.0\n30,65,5.5\n30,66,6.0\n30,67,6.5\n30,68,7.0\n30,69,7.5\n30,70,8.0\n30,71,8.5\n30,72,9.0\n30,73,9.5\n30,74,10.0\n30,75,3.5\n30,76,3.0\n30,77,2.5\n30,78,2.0\n30,79,1.5\n30,80,1.0\n30,81,1.5\n30,82,2.0\n30,83,2.5\n30,84,3.0\n30,85,3.5\n30,86,4.0\n30,87,4.5\n30,88,5.0\n30,89,5.5\n30,90,6.0\n30,91,6.5\n30,92,7.0\n30,93,7.5\n30,94,8.0\n30,95,8.5\n30,96,9.0\n30,97,9.5\n30,98,10.0\n30,99,10.5\n30,100,4.0\n30,101,3.5\n30,102,3.0\n30,103,2.5\n30,104,2.0\n30,105,1.5\n30,106,2.0\n30,107,2.5\n30,108,3.0\n30,109,3.5\n30,110,4.0\n30,111,4.5\n30,112,5.0\n30,113,5.5\n30,114,6.0\n30,115,6.5\n30,116,7.0\n30,117,7.5\n30,118,8.0\n30,119,8.5\n30,120,9.0\n30,121,9.5\n30,122,10.0\n30,123,10.5\n30,124,11.0\n30,125,4.5\n30,126,4.0\n30,127,3.5\n30,128,3.0\n30,129,2.5\n30,130,2.0\n30,131,2.5\n30,132,3.0\n30,133,3.5\n30,134,4.0\n30,135,4.5\n30,136,5.0\n30,137,5.5\n30,138,6.0\n30,139,6.5\n30,140,7.0\n30,141,7.5\n30,142,8.0\n30,143,8.5\n30,144,9.0\n30,145,9.5\n30,146,10.0\n30,147,10.5\n30,148,11.0\n30,149,11.5\n30,150,5.0\n30,151,4.5\n30,152,4.0\n30,153,3.5\n30,154,3.0\n30,155,2.5\n30,156,3.0\n30,157,3.5\n30,158,4.0\n30,159,4.5\n30,160,5.0\n30,161,5.5\n30,162,6.0\n30,163,6.5\n30,164,7.0\n30,165,7.5\n30,166,8.0\n30,167,8.5\n30,168,9.0\n30,169,9.5\n30,170,10.0\n30,171,10.5\n30,172,11.0\n30,173,11.5\n30,174,12.0\n30,175,5.5\n30,176,5.0\n30,177,4.5\n30,178,4.0\n30,179,3.5\n30,180,3.0\n30,181,3.5\n30,182,4.0\n30,183,4.5\n30,184,5.0\n30,185,5.5\n30,186,6.0\n30,187,6.5\n30,188,7.0\n30,189,7.5\n30,190,8.0\n30,191,8.5\n30,192,9.0\n30,193,9.5\n30,194,10.0\n30,195,10.5\n30,196,11.0\n30,197,11.5\n30,198,12.0\n30,199,12.5\n30,200,6.0\n30,201,5.5\n30,202,5.0\n30,203,4.5\n30,204,4.0\n30,205,3.5\n30,206,4.0\n30,207,4.5\n30,208,5.0\n30,209,5.5\n30,210,6.0\n30,211,6.5\n30,212,7.0\n30,213,7.5\n30,214,8.0\n30,215,8.5\n30,216,9.0\n30,217,9.5\n30,218,10.0\n30,219,10.5\n30,220,11.0\n30,221,11.5\n30,222,12.0\n30,223,12.5\n30,224,13.0\n30,225,6.5\n30,226,6.0\n30,227,5.5\n30,228,5.0\n30,229,4.5\n30,230,4.0\n30,231,4.5\n30,232,5.0\n30,233,5.5\n30,234,6.0\n30,235,6.5\n30,236,7.0\n30,237,7.5\n30,238,8.0\n30,239,8.5\n30,240,9.0\n30,241,9.5\n30,242,10.0\n30,243,10.5\n30,244,11.0\n30,245,11.5\n30,246,12.0\n30,247,12.5\n30,248,13.0\n30,249,13.5\n30,250,7.0\n30,251,6.5\n30,252,6.0\n30,253,5.5\n30,254,5.0\n30,255,4.5\n30,256,5.0\n30,257,5.5\n30,258,6.0\n30,259,6.5\n30,260,7.0\n30,261,7.5\n30,262,8.0\n30,263,8.5\n30,264,9.0\n30,265,9.5\n30,266,10.0\n30,267,10.5\n30,268,11.0\n30,269,11.5\n30,270,12.0\n30,271,12.5\n30,272,13.0\n30,273,13.5\n30,274,14.0\n30,275,7.5\n30,276,7.0\n30,277,6.5\n30,278,6.0\n30,279,5.5\n30,280,5.0\n30,281,5.5\n30,282,6.0\n30,283,6.5\n30,284,7.0\n30,285,7.5\n30,286,8.0\n30,287,8.5\n30,288,9.0\n30,289,9.5\n30,290,10.0\n30,291,10.5\n30,292,11.0\n30,293,11.5\n30,294,12.0\n30,295,12.5\n30,296,13.0\n30,297,13.5\n30,298,14.0\n30,299,14.5\n30,300,8.0\n30,301,7.5\n30,302,7.0\n30,303,6.5\n30,304,6.0\n30,305,5.5\n30,306,6.0\n30,307,6.5\n30,308,7.0\n30,309,7.5\n30,310,8.0\n30,311,8.5\n30,312,9.0\n30,313,9.5\n30,314,10.0\n30,315,10.5\n30,316,11.0\n30,317,11.5\n30,318,12.0\n30,319,12.5\n30,320,13.0\n30,321,13.5\n30,322,14.0\n30,323,14.5\n30,324,15.0\n30,325,8.5\n30,326,8.0\n30,327,7.5\n30,328,7.0\n30,329,6.5\n30,330,6.0\n30,331,6.5\n30,332,7.0\n30,333,7.5\n30,334,8.0\n30,335,8.5\n30,336,9.0\n30,337,9.5\n30,338,10.0\n30,339,10.5\n30,340,11.0\n30,341,11.5\n30,342,12.0\n30,343,12.5\n30,344,13.0\n30,345,13.5\n30,346,14.0\n30,347,14.5\n30,348,15.0\n30,349,15.5\n30,350,9.0\n30,351,8.5\n30,352,8.0\n30,353,7.5\n30,354,7.0\n30,355,6.5\n30,356,7.0\n30,357,7.5\n30,358,8.0\n30,359,8.5\n30,360,9.0\n30,361,9.5\n30,362,10.0\n30,363,10.5\n30,364,11.0\n30,365,11.5\n30,366,12.0\n30,367,12.5\n30,368,13.0\n30,369,13.5\n30,370,14.0\n30,371,14.5\n30,372,15.0\n30,373,15.5\n30,374,16.0\n30,375,9.5\n30,376,9.0\n30,377,8.5\n30,378,8.0\n30,379,7.5\n30,380,7.0\n30,381,7.5\n30,382,8.0\n30,383,8.5\n30,384,9.0\n30,385,9.5\n30,386,10.0\n30,387,10.5\n30,388,11.0\n30,389,11.5\n30,390,12.0\n30,391,12.5\n30,392,13.0\n30,393,13.5\n30,394,14.0\n30,395,14.5\n30,396,15.0\n30,397,15.5\n30,398,16.0\n30,399,16.5\n30,400,10.0\n30,401,9.5\n30,402,9.0\n30,403,8.5\n30,404,8.0\n30,405,7.5\n30,406,8.0\n30,407,8.5\n30,408,9.0\n30,409,9.5\n30,410,10.0\n30,411,10.5\n30,412,11.0\n30,413,11.5\n30,414,12.0\n30,415,12.5\n30,416,13.0\n30,417,13.5\n30,418,14.0\n30,419,14.5\n30,420,15.0\n30,421,15.5\n30,422,16.0\n30,423,16.5\n30,424,17.0\n30,425,10.5\n30,426,10.0\n30,427,9.5\n30,428,9.0\n30,429,8.5\n30,430,8.0\n30,431,8.5\n30,432,9.0\n30,433,9.5\n30,434,10.0\n30,435,10.5\n30,436,11.0\n30,437,11.5\n30,438,12.0\n30,439,12.5\n30,440,13.0\n30,441,13.5\n30,442,14.0\n30,443,14.5\n30,444,15.0\n30,445,15.5\n30,446,16.0\n30,447,16.5\n30,448,17.0\n30,449,17.5\n30,450,11.0\n30,451,10.5\n30,452,10.0\n30,453,9.5\n30,454,9.0\n30,455,8.5\n30,456,9.0\n30,457,9.5\n30,458,10.0\n30,459,10.5\n30,460,11.0\n30,461,11.5\n30,462,12.0\n30,463,12.5\n30,464,13.0\n30,465,13.5\n30,466,14.0\n30,467,14.5\n30,468,15.0\n30,469,15.5\n30,470,16.0\n30,471,16.5\n30,472,17.0\n30,473,17.5\n30,474,18.0\n30,475,11.5\n30,476,11.0\n30,477,10.5\n30,478,10.0\n30,479,9.5\n30,480,9.0\n30,481,9.5\n30,482,10.0\n30,483,10.5\n30,484,11.0\n30,485,11.5\n30,486,12.0\n30,487,12.5\n30,488,13.0\n30,489,13.5\n30,490,14.0\n30,491,14.5\n30,492,15.0\n30,493,15.5\n30,494,16.0\n30,495,16.5\n30,496,17.0\n30,497,17.5\n30,498,18.0\n30,499,18.5\n30,500,12.0\n30,501,11.5\n30,502,11.0\n30,503,10.5\n30,504,10.0\n30,505,9.5\n30,506,10.0\n30,507,10.5\n30,508,11.0\n30,509,11.5\n30,510,12.0\n30,511,12.5\n30,512,13.0\n30,513,13.5\n30,514,14.0\n30,515,14.5\n30,516,15.0\n30,517,15.5\n30,518,16.0\n30,519,16.5\n30,520,17.0\n30,521,17.5\n30,522,18.0\n30,523,18.5\n30,524,19.0\n30,525,12.5\n30,526,12.0\n30,527,11.5\n30,528,11.0\n30,529,10.5\n30,530,10.0\n30,531,10.5\n30,532,11.0\n30,533,11.5\n30,534,12.0\n30,535,12.5\n30,536,13.0\n30,537,13.5\n30,538,14.0\n30,539,14.5\n30,540,15.0\n30,541,15.5\n30,542,16.0\n30,543,16.5\n30,544,17.0\n30,545,17.5\n30,546,18.0\n30,547,18.5\n30,548,19.0\n30,549,19.5\n30,550,13.0\n30,551,12.5\n30,552,12.0\n30,553,11.5\n30,554,11.0\n30,555,10.5\n30,556,11.0\n30,557,11.5\n30,558,12.0\n30,559,12.5\n30,560,13.0\n30,561,13.5\n30,562,14.0\n30,563,14.5\n30,564,15.0\n30,565,15.5\n30,566,16.0\n30,567,16.5\n30,568,17.0\n30,569,17.5\n30,570,18.0\n30,571,18.5\n30,572,19.0\n30,573,19.5\n30,574,20.0\n30,575,13.5\n30,576,13.0\n30,577,12.5\n30,578,12.0\n30,579,11.5\n30,580,11.0\n30,581,11.5\n30,582,12.0\n30,583,12.5\n30,584,13.0\n30,585,13.5\n30,586,14.0\n30,587,14.5\n30,588,15.0\n30,589,15.5\n30,590,16.0\n30,591,16.5\n30,592,17.0\n30,593,17.5\n30,594,18.0\n30,595,18.5\n30,596,19.0\n30,597,19.5\n30,598,20.0\n30,599,20.5\n30,600,14.0\n30,601,13.5\n30,602,13.0\n30,603,12.5\n30,604,12.0\n30,605,11.5\n30,606,12.0\n30,607,12.5\n30,608,13.0\n30,609,13.5\n30,610,14.0\n30,611,14.5\n30,612,15.0\n30,613,15.5\n30,614,16.0\n30,615,16.5\n30,616,17.0\n30,617,17.5\n30,618,18.0\n30,619,18.5\n30,620,19.0\n30,621,19.5\n30,622,20.0\n30,623,20.5\n30,624,21.0\n31,0,3.5\n31,1,3.0\n31,2,2.5\n31,3,2.0\n31,4,1.5\n31,5,1.0\n31,6,0.5\n31,7,1.0\n31,8,1.5\n31,9,2.0\n31,10,2.5\n31,11,3.0\n31,12,3.5\n31,13,4.0\n31,14,4.5\n31,15,5.0\n31,16,5.5\n31,17,6.0\n31,18,6.5\n31,19,7.0\n31,20,7.5\n31,21,8.0\n31,22,8.5\n31,23,9.0\n31,24,9.5\n31,25,3.0\n31,26,2.5\n31,27,2.0\n31,28,1.5\n31,29,1.0\n31,30,0.5\n31,31,0\n31,32,0.5\n31,33,1.0\n31,34,1.5\n31,35,2.0\n31,36,2.5\n31,37,3.0\n31,38,3.5\n31,39,4.0\n31,40,4.5\n31,41,5.0\n31,42,5.5\n31,43,6.0\n31,44,6.5\n31,45,7.0\n31,46,7.5\n31,47,8.0\n31,48,8.5\n31,49,9.0\n31,50,3.5\n31,51,3.0\n31,52,2.5\n31,53,2.0\n31,54,1.5\n31,55,1.0\n31,56,0.5\n31,57,1.0\n31,58,1.5\n31,59,2.0\n31,60,2.5\n31,61,3.0\n31,62,3.5\n31,63,4.0\n31,64,4.5\n31,65,5.0\n31,66,5.5\n31,67,6.0\n31,68,6.5\n31,69,7.0\n31,70,7.5\n31,71,8.0\n31,72,8.5\n31,73,9.0\n31,74,9.5\n31,75,4.0\n31,76,3.5\n31,77,3.0\n31,78,2.5\n31,79,2.0\n31,80,1.5\n31,81,1.0\n31,82,1.5\n31,83,2.0\n31,84,2.5\n31,85,3.0\n31,86,3.5\n31,87,4.0\n31,88,4.5\n31,89,5.0\n31,90,5.5\n31,91,6.0\n31,92,6.5\n31,93,7.0\n31,94,7.5\n31,95,8.0\n31,96,8.5\n31,97,9.0\n31,98,9.5\n31,99,10.0\n31,100,4.5\n31,101,4.0\n31,102,3.5\n31,103,3.0\n31,104,2.5\n31,105,2.0\n31,106,1.5\n31,107,2.0\n31,108,2.5\n31,109,3.0\n31,110,3.5\n31,111,4.0\n31,112,4.5\n31,113,5.0\n31,114,5.5\n31,115,6.0\n31,116,6.5\n31,117,7.0\n31,118,7.5\n31,119,8.0\n31,120,8.5\n31,121,9.0\n31,122,9.5\n31,123,10.0\n31,124,10.5\n31,125,5.0\n31,126,4.5\n31,127,4.0\n31,128,3.5\n31,129,3.0\n31,130,2.5\n31,131,2.0\n31,132,2.5\n31,133,3.0\n31,134,3.5\n31,135,4.0\n31,136,4.5\n31,137,5.0\n31,138,5.5\n31,139,6.0\n31,140,6.5\n31,141,7.0\n31,142,7.5\n31,143,8.0\n31,144,8.5\n31,145,9.0\n31,146,9.5\n31,147,10.0\n31,148,10.5\n31,149,11.0\n31,150,5.5\n31,151,5.0\n31,152,4.5\n31,153,4.0\n31,154,3.5\n31,155,3.0\n31,156,2.5\n31,157,3.0\n31,158,3.5\n31,159,4.0\n31,160,4.5\n31,161,5.0\n31,162,5.5\n31,163,6.0\n31,164,6.5\n31,165,7.0\n31,166,7.5\n31,167,8.0\n31,168,8.5\n31,169,9.0\n31,170,9.5\n31,171,10.0\n31,172,10.5\n31,173,11.0\n31,174,11.5\n31,175,6.0\n31,176,5.5\n31,177,5.0\n31,178,4.5\n31,179,4.0\n31,180,3.5\n31,181,3.0\n31,182,3.5\n31,183,4.0\n31,184,4.5\n31,185,5.0\n31,186,5.5\n31,187,6.0\n31,188,6.5\n31,189,7.0\n31,190,7.5\n31,191,8.0\n31,192,8.5\n31,193,9.0\n31,194,9.5\n31,195,10.0\n31,196,10.5\n31,197,11.0\n31,198,11.5\n31,199,12.0\n31,200,6.5\n31,201,6.0\n31,202,5.5\n31,203,5.0\n31,204,4.5\n31,205,4.0\n31,206,3.5\n31,207,4.0\n31,208,4.5\n31,209,5.0\n31,210,5.5\n31,211,6.0\n31,212,6.5\n31,213,7.0\n31,214,7.5\n31,215,8.0\n31,216,8.5\n31,217,9.0\n31,218,9.5\n31,219,10.0\n31,220,10.5\n31,221,11.0\n31,222,11.5\n31,223,12.0\n31,224,12.5\n31,225,7.0\n31,226,6.5\n31,227,6.0\n31,228,5.5\n31,229,5.0\n31,230,4.5\n31,231,4.0\n31,232,4.5\n31,233,5.0\n31,234,5.5\n31,235,6.0\n31,236,6.5\n31,237,7.0\n31,238,7.5\n31,239,8.0\n31,240,8.5\n31,241,9.0\n31,242,9.5\n31,243,10.0\n31,244,10.5\n31,245,11.0\n31,246,11.5\n31,247,12.0\n31,248,12.5\n31,249,13.0\n31,250,7.5\n31,251,7.0\n31,252,6.5\n31,253,6.0\n31,254,5.5\n31,255,5.0\n31,256,4.5\n31,257,5.0\n31,258,5.5\n31,259,6.0\n31,260,6.5\n31,261,7.0\n31,262,7.5\n31,263,8.0\n31,264,8.5\n31,265,9.0\n31,266,9.5\n31,267,10.0\n31,268,10.5\n31,269,11.0\n31,270,11.5\n31,271,12.0\n31,272,12.5\n31,273,13.0\n31,274,13.5\n31,275,8.0\n31,276,7.5\n31,277,7.0\n31,278,6.5\n31,279,6.0\n31,280,5.5\n31,281,5.0\n31,282,5.5\n31,283,6.0\n31,284,6.5\n31,285,7.0\n31,286,7.5\n31,287,8.0\n31,288,8.5\n31,289,9.0\n31,290,9.5\n31,291,10.0\n31,292,10.5\n31,293,11.0\n31,294,11.5\n31,295,12.0\n31,296,12.5\n31,297,13.0\n31,298,13.5\n31,299,14.0\n31,300,8.5\n31,301,8.0\n31,302,7.5\n31,303,7.0\n31,304,6.5\n31,305,6.0\n31,306,5.5\n31,307,6.0\n31,308,6.5\n31,309,7.0\n31,310,7.5\n31,311,8.0\n31,312,8.5\n31,313,9.0\n31,314,9.5\n31,315,10.0\n31,316,10.5\n31,317,11.0\n31,318,11.5\n31,319,12.0\n31,320,12.5\n31,321,13.0\n31,322,13.5\n31,323,14.0\n31,324,14.5\n31,325,9.0\n31,326,8.5\n31,327,8.0\n31,328,7.5\n31,329,7.0\n31,330,6.5\n31,331,6.0\n31,332,6.5\n31,333,7.0\n31,334,7.5\n31,335,8.0\n31,336,8.5\n31,337,9.0\n31,338,9.5\n31,339,10.0\n31,340,10.5\n31,341,11.0\n31,342,11.5\n31,343,12.0\n31,344,12.5\n31,345,13.0\n31,346,13.5\n31,347,14.0\n31,348,14.5\n31,349,15.0\n31,350,9.5\n31,351,9.0\n31,352,8.5\n31,353,8.0\n31,354,7.5\n31,355,7.0\n31,356,6.5\n31,357,7.0\n31,358,7.5\n31,359,8.0\n31,360,8.5\n31,361,9.0\n31,362,9.5\n31,363,10.0\n31,364,10.5\n31,365,11.0\n31,366,11.5\n31,367,12.0\n31,368,12.5\n31,369,13.0\n31,370,13.5\n31,371,14.0\n31,372,14.5\n31,373,15.0\n31,374,15.5\n31,375,10.0\n31,376,9.5\n31,377,9.0\n31,378,8.5\n31,379,8.0\n31,380,7.5\n31,381,7.0\n31,382,7.5\n31,383,8.0\n31,384,8.5\n31,385,9.0\n31,386,9.5\n31,387,10.0\n31,388,10.5\n31,389,11.0\n31,390,11.5\n31,391,12.0\n31,392,12.5\n31,393,13.0\n31,394,13.5\n31,395,14.0\n31,396,14.5\n31,397,15.0\n31,398,15.5\n31,399,16.0\n31,400,10.5\n31,401,10.0\n31,402,9.5\n31,403,9.0\n31,404,8.5\n31,405,8.0\n31,406,7.5\n31,407,8.0\n31,408,8.5\n31,409,9.0\n31,410,9.5\n31,411,10.0\n31,412,10.5\n31,413,11.0\n31,414,11.5\n31,415,12.0\n31,416,12.5\n31,417,13.0\n31,418,13.5\n31,419,14.0\n31,420,14.5\n31,421,15.0\n31,422,15.5\n31,423,16.0\n31,424,16.5\n31,425,11.0\n31,426,10.5\n31,427,10.0\n31,428,9.5\n31,429,9.0\n31,430,8.5\n31,431,8.0\n31,432,8.5\n31,433,9.0\n31,434,9.5\n31,435,10.0\n31,436,10.5\n31,437,11.0\n31,438,11.5\n31,439,12.0\n31,440,12.5\n31,441,13.0\n31,442,13.5\n31,443,14.0\n31,444,14.5\n31,445,15.0\n31,446,15.5\n31,447,16.0\n31,448,16.5\n31,449,17.0\n31,450,11.5\n31,451,11.0\n31,452,10.5\n31,453,10.0\n31,454,9.5\n31,455,9.0\n31,456,8.5\n31,457,9.0\n31,458,9.5\n31,459,10.0\n31,460,10.5\n31,461,11.0\n31,462,11.5\n31,463,12.0\n31,464,12.5\n31,465,13.0\n31,466,13.5\n31,467,14.0\n31,468,14.5\n31,469,15.0\n31,470,15.5\n31,471,16.0\n31,472,16.5\n31,473,17.0\n31,474,17.5\n31,475,12.0\n31,476,11.5\n31,477,11.0\n31,478,10.5\n31,479,10.0\n31,480,9.5\n31,481,9.0\n31,482,9.5\n31,483,10.0\n31,484,10.5\n31,485,11.0\n31,486,11.5\n31,487,12.0\n31,488,12.5\n31,489,13.0\n31,490,13.5\n31,491,14.0\n31,492,14.5\n31,493,15.0\n31,494,15.5\n31,495,16.0\n31,496,16.5\n31,497,17.0\n31,498,17.5\n31,499,18.0\n31,500,12.5\n31,501,12.0\n31,502,11.5\n31,503,11.0\n31,504,10.5\n31,505,10.0\n31,506,9.5\n31,507,10.0\n31,508,10.5\n31,509,11.0\n31,510,11.5\n31,511,12.0\n31,512,12.5\n31,513,13.0\n31,514,13.5\n31,515,14.0\n31,516,14.5\n31,517,15.0\n31,518,15.5\n31,519,16.0\n31,520,16.5\n31,521,17.0\n31,522,17.5\n31,523,18.0\n31,524,18.5\n31,525,13.0\n31,526,12.5\n31,527,12.0\n31,528,11.5\n31,529,11.0\n31,530,10.5\n31,531,10.0\n31,532,10.5\n31,533,11.0\n31,534,11.5\n31,535,12.0\n31,536,12.5\n31,537,13.0\n31,538,13.5\n31,539,14.0\n31,540,14.5\n31,541,15.0\n31,542,15.5\n31,543,16.0\n31,544,16.5\n31,545,17.0\n31,546,17.5\n31,547,18.0\n31,548,18.5\n31,549,19.0\n31,550,13.5\n31,551,13.0\n31,552,12.5\n31,553,12.0\n31,554,11.5\n31,555,11.0\n31,556,10.5\n31,557,11.0\n31,558,11.5\n31,559,12.0\n31,560,12.5\n31,561,13.0\n31,562,13.5\n31,563,14.0\n31,564,14.5\n31,565,15.0\n31,566,15.5\n31,567,16.0\n31,568,16.5\n31,569,17.0\n31,570,17.5\n31,571,18.0\n31,572,18.5\n31,573,19.0\n31,574,19.5\n31,575,14.0\n31,576,13.5\n31,577,13.0\n31,578,12.5\n31,579,12.0\n31,580,11.5\n31,581,11.0\n31,582,11.5\n31,583,12.0\n31,584,12.5\n31,585,13.0\n31,586,13.5\n31,587,14.0\n31,588,14.5\n31,589,15.0\n31,590,15.5\n31,591,16.0\n31,592,16.5\n31,593,17.0\n31,594,17.5\n31,595,18.0\n31,596,18.5\n31,597,19.0\n31,598,19.5\n31,599,20.0\n31,600,14.5\n31,601,14.0\n31,602,13.5\n31,603,13.0\n31,604,12.5\n31,605,12.0\n31,606,11.5\n31,607,12.0\n31,608,12.5\n31,609,13.0\n31,610,13.5\n31,611,14.0\n31,612,14.5\n31,613,15.0\n31,614,15.5\n31,615,16.0\n31,616,16.5\n31,617,17.0\n31,618,17.5\n31,619,18.0\n31,620,18.5\n31,621,19.0\n31,622,19.5\n31,623,20.0\n31,624,20.5\n32,0,4.0\n32,1,3.5\n32,2,3.0\n32,3,2.5\n32,4,2.0\n32,5,1.5\n32,6,1.0\n32,7,0.5\n32,8,1.0\n32,9,1.5\n32,10,2.0\n32,11,2.5\n32,12,3.0\n32,13,3.5\n32,14,4.0\n32,15,4.5\n32,16,5.0\n32,17,5.5\n32,18,6.0\n32,19,6.5\n32,20,7.0\n32,21,7.5\n32,22,8.0\n32,23,8.5\n32,24,9.0\n32,25,3.5\n32,26,3.0\n32,27,2.5\n32,28,2.0\n32,29,1.5\n32,30,1.0\n32,31,0.5\n32,32,0\n32,33,0.5\n32,34,1.0\n32,35,1.5\n32,36,2.0\n32,37,2.5\n32,38,3.0\n32,39,3.5\n32,40,4.0\n32,41,4.5\n32,42,5.0\n32,43,5.5\n32,44,6.0\n32,45,6.5\n32,46,7.0\n32,47,7.5\n32,48,8.0\n32,49,8.5\n32,50,4.0\n32,51,3.5\n32,52,3.0\n32,53,2.5\n32,54,2.0\n32,55,1.5\n32,56,1.0\n32,57,0.5\n32,58,1.0\n32,59,1.5\n32,60,2.0\n32,61,2.5\n32,62,3.0\n32,63,3.5\n32,64,4.0\n32,65,4.5\n32,66,5.0\n32,67,5.5\n32,68,6.0\n32,69,6.5\n32,70,7.0\n32,71,7.5\n32,72,8.0\n32,73,8.5\n32,74,9.0\n32,75,4.5\n32,76,4.0\n32,77,3.5\n32,78,3.0\n32,79,2.5\n32,80,2.0\n32,81,1.5\n32,82,1.0\n32,83,1.5\n32,84,2.0\n32,85,2.5\n32,86,3.0\n32,87,3.5\n32,88,4.0\n32,89,4.5\n32,90,5.0\n32,91,5.5\n32,92,6.0\n32,93,6.5\n32,94,7.0\n32,95,7.5\n32,96,8.0\n32,97,8.5\n32,98,9.0\n32,99,9.5\n32,100,5.0\n32,101,4.5\n32,102,4.0\n32,103,3.5\n32,104,3.0\n32,105,2.5\n32,106,2.0\n32,107,1.5\n32,108,2.0\n32,109,2.5\n32,110,3.0\n32,111,3.5\n32,112,4.0\n32,113,4.5\n32,114,5.0\n32,115,5.5\n32,116,6.0\n32,117,6.5\n32,118,7.0\n32,119,7.5\n32,120,8.0\n32,121,8.5\n32,122,9.0\n32,123,9.5\n32,124,10.0\n32,125,5.5\n32,126,5.0\n32,127,4.5\n32,128,4.0\n32,129,3.5\n32,130,3.0\n32,131,2.5\n32,132,2.0\n32,133,2.5\n32,134,3.0\n32,135,3.5\n32,136,4.0\n32,137,4.5\n32,138,5.0\n32,139,5.5\n32,140,6.0\n32,141,6.5\n32,142,7.0\n32,143,7.5\n32,144,8.0\n32,145,8.5\n32,146,9.0\n32,147,9.5\n32,148,10.0\n32,149,10.5\n32,150,6.0\n32,151,5.5\n32,152,5.0\n32,153,4.5\n32,154,4.0\n32,155,3.5\n32,156,3.0\n32,157,2.5\n32,158,3.0\n32,159,3.5\n32,160,4.0\n32,161,4.5\n32,162,5.0\n32,163,5.5\n32,164,6.0\n32,165,6.5\n32,166,7.0\n32,167,7.5\n32,168,8.0\n32,169,8.5\n32,170,9.0\n32,171,9.5\n32,172,10.0\n32,173,10.5\n32,174,11.0\n32,175,6.5\n32,176,6.0\n32,177,5.5\n32,178,5.0\n32,179,4.5\n32,180,4.0\n32,181,3.5\n32,182,3.0\n32,183,3.5\n32,184,4.0\n32,185,4.5\n32,186,5.0\n32,187,5.5\n32,188,6.0\n32,189,6.5\n32,190,7.0\n32,191,7.5\n32,192,8.0\n32,193,8.5\n32,194,9.0\n32,195,9.5\n32,196,10.0\n32,197,10.5\n32,198,11.0\n32,199,11.5\n32,200,7.0\n32,201,6.5\n32,202,6.0\n32,203,5.5\n32,204,5.0\n32,205,4.5\n32,206,4.0\n32,207,3.5\n32,208,4.0\n32,209,4.5\n32,210,5.0\n32,211,5.5\n32,212,6.0\n32,213,6.5\n32,214,7.0\n32,215,7.5\n32,216,8.0\n32,217,8.5\n32,218,9.0\n32,219,9.5\n32,220,10.0\n32,221,10.5\n32,222,11.0\n32,223,11.5\n32,224,12.0\n32,225,7.5\n32,226,7.0\n32,227,6.5\n32,228,6.0\n32,229,5.5\n32,230,5.0\n32,231,4.5\n32,232,4.0\n32,233,4.5\n32,234,5.0\n32,235,5.5\n32,236,6.0\n32,237,6.5\n32,238,7.0\n32,239,7.5\n32,240,8.0\n32,241,8.5\n32,242,9.0\n32,243,9.5\n32,244,10.0\n32,245,10.5\n32,246,11.0\n32,247,11.5\n32,248,12.0\n32,249,12.5\n32,250,8.0\n32,251,7.5\n32,252,7.0\n32,253,6.5\n32,254,6.0\n32,255,5.5\n32,256,5.0\n32,257,4.5\n32,258,5.0\n32,259,5.5\n32,260,6.0\n32,261,6.5\n32,262,7.0\n32,263,7.5\n32,264,8.0\n32,265,8.5\n32,266,9.0\n32,267,9.5\n32,268,10.0\n32,269,10.5\n32,270,11.0\n32,271,11.5\n32,272,12.0\n32,273,12.5\n32,274,13.0\n32,275,8.5\n32,276,8.0\n32,277,7.5\n32,278,7.0\n32,279,6.5\n32,280,6.0\n32,281,5.5\n32,282,5.0\n32,283,5.5\n32,284,6.0\n32,285,6.5\n32,286,7.0\n32,287,7.5\n32,288,8.0\n32,289,8.5\n32,290,9.0\n32,291,9.5\n32,292,10.0\n32,293,10.5\n32,294,11.0\n32,295,11.5\n32,296,12.0\n32,297,12.5\n32,298,13.0\n32,299,13.5\n32,300,9.0\n32,301,8.5\n32,302,8.0\n32,303,7.5\n32,304,7.0\n32,305,6.5\n32,306,6.0\n32,307,5.5\n32,308,6.0\n32,309,6.5\n32,310,7.0\n32,311,7.5\n32,312,8.0\n32,313,8.5\n32,314,9.0\n32,315,9.5\n32,316,10.0\n32,317,10.5\n32,318,11.0\n32,319,11.5\n32,320,12.0\n32,321,12.5\n32,322,13.0\n32,323,13.5\n32,324,14.0\n32,325,9.5\n32,326,9.0\n32,327,8.5\n32,328,8.0\n32,329,7.5\n32,330,7.0\n32,331,6.5\n32,332,6.0\n32,333,6.5\n32,334,7.0\n32,335,7.5\n32,336,8.0\n32,337,8.5\n32,338,9.0\n32,339,9.5\n32,340,10.0\n32,341,10.5\n32,342,11.0\n32,343,11.5\n32,344,12.0\n32,345,12.5\n32,346,13.0\n32,347,13.5\n32,348,14.0\n32,349,14.5\n32,350,10.0\n32,351,9.5\n32,352,9.0\n32,353,8.5\n32,354,8.0\n32,355,7.5\n32,356,7.0\n32,357,6.5\n32,358,7.0\n32,359,7.5\n32,360,8.0\n32,361,8.5\n32,362,9.0\n32,363,9.5\n32,364,10.0\n32,365,10.5\n32,366,11.0\n32,367,11.5\n32,368,12.0\n32,369,12.5\n32,370,13.0\n32,371,13.5\n32,372,14.0\n32,373,14.5\n32,374,15.0\n32,375,10.5\n32,376,10.0\n32,377,9.5\n32,378,9.0\n32,379,8.5\n32,380,8.0\n32,381,7.5\n32,382,7.0\n32,383,7.5\n32,384,8.0\n32,385,8.5\n32,386,9.0\n32,387,9.5\n32,388,10.0\n32,389,10.5\n32,390,11.0\n32,391,11.5\n32,392,12.0\n32,393,12.5\n32,394,13.0\n32,395,13.5\n32,396,14.0\n32,397,14.5\n32,398,15.0\n32,399,15.5\n32,400,11.0\n32,401,10.5\n32,402,10.0\n32,403,9.5\n32,404,9.0\n32,405,8.5\n32,406,8.0\n32,407,7.5\n32,408,8.0\n32,409,8.5\n32,410,9.0\n32,411,9.5\n32,412,10.0\n32,413,10.5\n32,414,11.0\n32,415,11.5\n32,416,12.0\n32,417,12.5\n32,418,13.0\n32,419,13.5\n32,420,14.0\n32,421,14.5\n32,422,15.0\n32,423,15.5\n32,424,16.0\n32,425,11.5\n32,426,11.0\n32,427,10.5\n32,428,10.0\n32,429,9.5\n32,430,9.0\n32,431,8.5\n32,432,8.0\n32,433,8.5\n32,434,9.0\n32,435,9.5\n32,436,10.0\n32,437,10.5\n32,438,11.0\n32,439,11.5\n32,440,12.0\n32,441,12.5\n32,442,13.0\n32,443,13.5\n32,444,14.0\n32,445,14.5\n32,446,15.0\n32,447,15.5\n32,448,16.0\n32,449,16.5\n32,450,12.0\n32,451,11.5\n32,452,11.0\n32,453,10.5\n32,454,10.0\n32,455,9.5\n32,456,9.0\n32,457,8.5\n32,458,9.0\n32,459,9.5\n32,460,10.0\n32,461,10.5\n32,462,11.0\n32,463,11.5\n32,464,12.0\n32,465,12.5\n32,466,13.0\n32,467,13.5\n32,468,14.0\n32,469,14.5\n32,470,15.0\n32,471,15.5\n32,472,16.0\n32,473,16.5\n32,474,17.0\n32,475,12.5\n32,476,12.0\n32,477,11.5\n32,478,11.0\n32,479,10.5\n32,480,10.0\n32,481,9.5\n32,482,9.0\n32,483,9.5\n32,484,10.0\n32,485,10.5\n32,486,11.0\n32,487,11.5\n32,488,12.0\n32,489,12.5\n32,490,13.0\n32,491,13.5\n32,492,14.0\n32,493,14.5\n32,494,15.0\n32,495,15.5\n32,496,16.0\n32,497,16.5\n32,498,17.0\n32,499,17.5\n32,500,13.0\n32,501,12.5\n32,502,12.0\n32,503,11.5\n32,504,11.0\n32,505,10.5\n32,506,10.0\n32,507,9.5\n32,508,10.0\n32,509,10.5\n32,510,11.0\n32,511,11.5\n32,512,12.0\n32,513,12.5\n32,514,13.0\n32,515,13.5\n32,516,14.0\n32,517,14.5\n32,518,15.0\n32,519,15.5\n32,520,16.0\n32,521,16.5\n32,522,17.0\n32,523,17.5\n32,524,18.0\n32,525,13.5\n32,526,13.0\n32,527,12.5\n32,528,12.0\n32,529,11.5\n32,530,11.0\n32,531,10.5\n32,532,10.0\n32,533,10.5\n32,534,11.0\n32,535,11.5\n32,536,12.0\n32,537,12.5\n32,538,13.0\n32,539,13.5\n32,540,14.0\n32,541,14.5\n32,542,15.0\n32,543,15.5\n32,544,16.0\n32,545,16.5\n32,546,17.0\n32,547,17.5\n32,548,18.0\n32,549,18.5\n32,550,14.0\n32,551,13.5\n32,552,13.0\n32,553,12.5\n32,554,12.0\n32,555,11.5\n32,556,11.0\n32,557,10.5\n32,558,11.0\n32,559,11.5\n32,560,12.0\n32,561,12.5\n32,562,13.0\n32,563,13.5\n32,564,14.0\n32,565,14.5\n32,566,15.0\n32,567,15.5\n32,568,16.0\n32,569,16.5\n32,570,17.0\n32,571,17.5\n32,572,18.0\n32,573,18.5\n32,574,19.0\n32,575,14.5\n32,576,14.0\n32,577,13.5\n32,578,13.0\n32,579,12.5\n32,580,12.0\n32,581,11.5\n32,582,11.0\n32,583,11.5\n32,584,12.0\n32,585,12.5\n32,586,13.0\n32,587,13.5\n32,588,14.0\n32,589,14.5\n32,590,15.0\n32,591,15.5\n32,592,16.0\n32,593,16.5\n32,594,17.0\n32,595,17.5\n32,596,18.0\n32,597,18.5\n32,598,19.0\n32,599,19.5\n32,600,15.0\n32,601,14.5\n32,602,14.0\n32,603,13.5\n32,604,13.0\n32,605,12.5\n32,606,12.0\n32,607,11.5\n32,608,12.0\n32,609,12.5\n32,610,13.0\n32,611,13.5\n32,612,14.0\n32,613,14.5\n32,614,15.0\n32,615,15.5\n32,616,16.0\n32,617,16.5\n32,618,17.0\n32,619,17.5\n32,620,18.0\n32,621,18.5\n32,622,19.0\n32,623,19.5\n32,624,20.0\n33,0,4.5\n33,1,4.0\n33,2,3.5\n33,3,3.0\n33,4,2.5\n33,5,2.0\n33,6,1.5\n33,7,1.0\n33,8,0.5\n33,9,1.0\n33,10,1.5\n33,11,2.0\n33,12,2.5\n33,13,3.0\n33,14,3.5\n33,15,4.0\n33,16,4.5\n33,17,5.0\n33,18,5.5\n33,19,6.0\n33,20,6.5\n33,21,7.0\n33,22,7.5\n33,23,8.0\n33,24,8.5\n33,25,4.0\n33,26,3.5\n33,27,3.0\n33,28,2.5\n33,29,2.0\n33,30,1.5\n33,31,1.0\n33,32,0.5\n33,33,0\n33,34,0.5\n33,35,1.0\n33,36,1.5\n33,37,2.0\n33,38,2.5\n33,39,3.0\n33,40,3.5\n33,41,4.0\n33,42,4.5\n33,43,5.0\n33,44,5.5\n33,45,6.0\n33,46,6.5\n33,47,7.0\n33,48,7.5\n33,49,8.0\n33,50,4.5\n33,51,4.0\n33,52,3.5\n33,53,3.0\n33,54,2.5\n33,55,2.0\n33,56,1.5\n33,57,1.0\n33,58,0.5\n33,59,1.0\n33,60,1.5\n33,61,2.0\n33,62,2.5\n33,63,3.0\n33,64,3.5\n33,65,4.0\n33,66,4.5\n33,67,5.0\n33,68,5.5\n33,69,6.0\n33,70,6.5\n33,71,7.0\n33,72,7.5\n33,73,8.0\n33,74,8.5\n33,75,5.0\n33,76,4.5\n33,77,4.0\n33,78,3.5\n33,79,3.0\n33,80,2.5\n33,81,2.0\n33,82,1.5\n33,83,1.0\n33,84,1.5\n33,85,2.0\n33,86,2.5\n33,87,3.0\n33,88,3.5\n33,89,4.0\n33,90,4.5\n33,91,5.0\n33,92,5.5\n33,93,6.0\n33,94,6.5\n33,95,7.0\n33,96,7.5\n33,97,8.0\n33,98,8.5\n33,99,9.0\n33,100,5.5\n33,101,5.0\n33,102,4.5\n33,103,4.0\n33,104,3.5\n33,105,3.0\n33,106,2.5\n33,107,2.0\n33,108,1.5\n33,109,2.0\n33,110,2.5\n33,111,3.0\n33,112,3.5\n33,113,4.0\n33,114,4.5\n33,115,5.0\n33,116,5.5\n33,117,6.0\n33,118,6.5\n33,119,7.0\n33,120,7.5\n33,121,8.0\n33,122,8.5\n33,123,9.0\n33,124,9.5\n33,125,6.0\n33,126,5.5\n33,127,5.0\n33,128,4.5\n33,129,4.0\n33,130,3.5\n33,131,3.0\n33,132,2.5\n33,133,2.0\n33,134,2.5\n33,135,3.0\n33,136,3.5\n33,137,4.0\n33,138,4.5\n33,139,5.0\n33,140,5.5\n33,141,6.0\n33,142,6.5\n33,143,7.0\n33,144,7.5\n33,145,8.0\n33,146,8.5\n33,147,9.0\n33,148,9.5\n33,149,10.0\n33,150,6.5\n33,151,6.0\n33,152,5.5\n33,153,5.0\n33,154,4.5\n33,155,4.0\n33,156,3.5\n33,157,3.0\n33,158,2.5\n33,159,3.0\n33,160,3.5\n33,161,4.0\n33,162,4.5\n33,163,5.0\n33,164,5.5\n33,165,6.0\n33,166,6.5\n33,167,7.0\n33,168,7.5\n33,169,8.0\n33,170,8.5\n33,171,9.0\n33,172,9.5\n33,173,10.0\n33,174,10.5\n33,175,7.0\n33,176,6.5\n33,177,6.0\n33,178,5.5\n33,179,5.0\n33,180,4.5\n33,181,4.0\n33,182,3.5\n33,183,3.0\n33,184,3.5\n33,185,4.0\n33,186,4.5\n33,187,5.0\n33,188,5.5\n33,189,6.0\n33,190,6.5\n33,191,7.0\n33,192,7.5\n33,193,8.0\n33,194,8.5\n33,195,9.0\n33,196,9.5\n33,197,10.0\n33,198,10.5\n33,199,11.0\n33,200,7.5\n33,201,7.0\n33,202,6.5\n33,203,6.0\n33,204,5.5\n33,205,5.0\n33,206,4.5\n33,207,4.0\n33,208,3.5\n33,209,4.0\n33,210,4.5\n33,211,5.0\n33,212,5.5\n33,213,6.0\n33,214,6.5\n33,215,7.0\n33,216,7.5\n33,217,8.0\n33,218,8.5\n33,219,9.0\n33,220,9.5\n33,221,10.0\n33,222,10.5\n33,223,11.0\n33,224,11.5\n33,225,8.0\n33,226,7.5\n33,227,7.0\n33,228,6.5\n33,229,6.0\n33,230,5.5\n33,231,5.0\n33,232,4.5\n33,233,4.0\n33,234,4.5\n33,235,5.0\n33,236,5.5\n33,237,6.0\n33,238,6.5\n33,239,7.0\n33,240,7.5\n33,241,8.0\n33,242,8.5\n33,243,9.0\n33,244,9.5\n33,245,10.0\n33,246,10.5\n33,247,11.0\n33,248,11.5\n33,249,12.0\n33,250,8.5\n33,251,8.0\n33,252,7.5\n33,253,7.0\n33,254,6.5\n33,255,6.0\n33,256,5.5\n33,257,5.0\n33,258,4.5\n33,259,5.0\n33,260,5.5\n33,261,6.0\n33,262,6.5\n33,263,7.0\n33,264,7.5\n33,265,8.0\n33,266,8.5\n33,267,9.0\n33,268,9.5\n33,269,10.0\n33,270,10.5\n33,271,11.0\n33,272,11.5\n33,273,12.0\n33,274,12.5\n33,275,9.0\n33,276,8.5\n33,277,8.0\n33,278,7.5\n33,279,7.0\n33,280,6.5\n33,281,6.0\n33,282,5.5\n33,283,5.0\n33,284,5.5\n33,285,6.0\n33,286,6.5\n33,287,7.0\n33,288,7.5\n33,289,8.0\n33,290,8.5\n33,291,9.0\n33,292,9.5\n33,293,10.0\n33,294,10.5\n33,295,11.0\n33,296,11.5\n33,297,12.0\n33,298,12.5\n33,299,13.0\n33,300,9.5\n33,301,9.0\n33,302,8.5\n33,303,8.0\n33,304,7.5\n33,305,7.0\n33,306,6.5\n33,307,6.0\n33,308,5.5\n33,309,6.0\n33,310,6.5\n33,311,7.0\n33,312,7.5\n33,313,8.0\n33,314,8.5\n33,315,9.0\n33,316,9.5\n33,317,10.0\n33,318,10.5\n33,319,11.0\n33,320,11.5\n33,321,12.0\n33,322,12.5\n33,323,13.0\n33,324,13.5\n33,325,10.0\n33,326,9.5\n33,327,9.0\n33,328,8.5\n33,329,8.0\n33,330,7.5\n33,331,7.0\n33,332,6.5\n33,333,6.0\n33,334,6.5\n33,335,7.0\n33,336,7.5\n33,337,8.0\n33,338,8.5\n33,339,9.0\n33,340,9.5\n33,341,10.0\n33,342,10.5\n33,343,11.0\n33,344,11.5\n33,345,12.0\n33,346,12.5\n33,347,13.0\n33,348,13.5\n33,349,14.0\n33,350,10.5\n33,351,10.0\n33,352,9.5\n33,353,9.0\n33,354,8.5\n33,355,8.0\n33,356,7.5\n33,357,7.0\n33,358,6.5\n33,359,7.0\n33,360,7.5\n33,361,8.0\n33,362,8.5\n33,363,9.0\n33,364,9.5\n33,365,10.0\n33,366,10.5\n33,367,11.0\n33,368,11.5\n33,369,12.0\n33,370,12.5\n33,371,13.0\n33,372,13.5\n33,373,14.0\n33,374,14.5\n33,375,11.0\n33,376,10.5\n33,377,10.0\n33,378,9.5\n33,379,9.0\n33,380,8.5\n33,381,8.0\n33,382,7.5\n33,383,7.0\n33,384,7.5\n33,385,8.0\n33,386,8.5\n33,387,9.0\n33,388,9.5\n33,389,10.0\n33,390,10.5\n33,391,11.0\n33,392,11.5\n33,393,12.0\n33,394,12.5\n33,395,13.0\n33,396,13.5\n33,397,14.0\n33,398,14.5\n33,399,15.0\n33,400,11.5\n33,401,11.0\n33,402,10.5\n33,403,10.0\n33,404,9.5\n33,405,9.0\n33,406,8.5\n33,407,8.0\n33,408,7.5\n33,409,8.0\n33,410,8.5\n33,411,9.0\n33,412,9.5\n33,413,10.0\n33,414,10.5\n33,415,11.0\n33,416,11.5\n33,417,12.0\n33,418,12.5\n33,419,13.0\n33,420,13.5\n33,421,14.0\n33,422,14.5\n33,423,15.0\n33,424,15.5\n33,425,12.0\n33,426,11.5\n33,427,11.0\n33,428,10.5\n33,429,10.0\n33,430,9.5\n33,431,9.0\n33,432,8.5\n33,433,8.0\n33,434,8.5\n33,435,9.0\n33,436,9.5\n33,437,10.0\n33,438,10.5\n33,439,11.0\n33,440,11.5\n33,441,12.0\n33,442,12.5\n33,443,13.0\n33,444,13.5\n33,445,14.0\n33,446,14.5\n33,447,15.0\n33,448,15.5\n33,449,16.0\n33,450,12.5\n33,451,12.0\n33,452,11.5\n33,453,11.0\n33,454,10.5\n33,455,10.0\n33,456,9.5\n33,457,9.0\n33,458,8.5\n33,459,9.0\n33,460,9.5\n33,461,10.0\n33,462,10.5\n33,463,11.0\n33,464,11.5\n33,465,12.0\n33,466,12.5\n33,467,13.0\n33,468,13.5\n33,469,14.0\n33,470,14.5\n33,471,15.0\n33,472,15.5\n33,473,16.0\n33,474,16.5\n33,475,13.0\n33,476,12.5\n33,477,12.0\n33,478,11.5\n33,479,11.0\n33,480,10.5\n33,481,10.0\n33,482,9.5\n33,483,9.0\n33,484,9.5\n33,485,10.0\n33,486,10.5\n33,487,11.0\n33,488,11.5\n33,489,12.0\n33,490,12.5\n33,491,13.0\n33,492,13.5\n33,493,14.0\n33,494,14.5\n33,495,15.0\n33,496,15.5\n33,497,16.0\n33,498,16.5\n33,499,17.0\n33,500,13.5\n33,501,13.0\n33,502,12.5\n33,503,12.0\n33,504,11.5\n33,505,11.0\n33,506,10.5\n33,507,10.0\n33,508,9.5\n33,509,10.0\n33,510,10.5\n33,511,11.0\n33,512,11.5\n33,513,12.0\n33,514,12.5\n33,515,13.0\n33,516,13.5\n33,517,14.0\n33,518,14.5\n33,519,15.0\n33,520,15.5\n33,521,16.0\n33,522,16.5\n33,523,17.0\n33,524,17.5\n33,525,14.0\n33,526,13.5\n33,527,13.0\n33,528,12.5\n33,529,12.0\n33,530,11.5\n33,531,11.0\n33,532,10.5\n33,533,10.0\n33,534,10.5\n33,535,11.0\n33,536,11.5\n33,537,12.0\n33,538,12.5\n33,539,13.0\n33,540,13.5\n33,541,14.0\n33,542,14.5\n33,543,15.0\n33,544,15.5\n33,545,16.0\n33,546,16.5\n33,547,17.0\n33,548,17.5\n33,549,18.0\n33,550,14.5\n33,551,14.0\n33,552,13.5\n33,553,13.0\n33,554,12.5\n33,555,12.0\n33,556,11.5\n33,557,11.0\n33,558,10.5\n33,559,11.0\n33,560,11.5\n33,561,12.0\n33,562,12.5\n33,563,13.0\n33,564,13.5\n33,565,14.0\n33,566,14.5\n33,567,15.0\n33,568,15.5\n33,569,16.0\n33,570,16.5\n33,571,17.0\n33,572,17.5\n33,573,18.0\n33,574,18.5\n33,575,15.0\n33,576,14.5\n33,577,14.0\n33,578,13.5\n33,579,13.0\n33,580,12.5\n33,581,12.0\n33,582,11.5\n33,583,11.0\n33,584,11.5\n33,585,12.0\n33,586,12.5\n33,587,13.0\n33,588,13.5\n33,589,14.0\n33,590,14.5\n33,591,15.0\n33,592,15.5\n33,593,16.0\n33,594,16.5\n33,595,17.0\n33,596,17.5\n33,597,18.0\n33,598,18.5\n33,599,19.0\n33,600,15.5\n33,601,15.0\n33,602,14.5\n33,603,14.0\n33,604,13.5\n33,605,13.0\n33,606,12.5\n33,607,12.0\n33,608,11.5\n33,609,12.0\n33,610,12.5\n33,611,13.0\n33,612,13.5\n33,613,14.0\n33,614,14.5\n33,615,15.0\n33,616,15.5\n33,617,16.0\n33,618,16.5\n33,619,17.0\n33,620,17.5\n33,621,18.0\n33,622,18.5\n33,623,19.0\n33,624,19.5\n34,0,5.0\n34,1,4.5\n34,2,4.0\n34,3,3.5\n34,4,3.0\n34,5,2.5\n34,6,2.0\n34,7,1.5\n34,8,1.0\n34,9,0.5\n34,10,1.0\n34,11,1.5\n34,12,2.0\n34,13,2.5\n34,14,3.0\n34,15,3.5\n34,16,4.0\n34,17,4.5\n34,18,5.0\n34,19,5.5\n34,20,6.0\n34,21,6.5\n34,22,7.0\n34,23,7.5\n34,24,8.0\n34,25,4.5\n34,26,4.0\n34,27,3.5\n34,28,3.0\n34,29,2.5\n34,30,2.0\n34,31,1.5\n34,32,1.0\n34,33,0.5\n34,34,0\n34,35,0.5\n34,36,1.0\n34,37,1.5\n34,38,2.0\n34,39,2.5\n34,40,3.0\n34,41,3.5\n34,42,4.0\n34,43,4.5\n34,44,5.0\n34,45,5.5\n34,46,6.0\n34,47,6.5\n34,48,7.0\n34,49,7.5\n34,50,5.0\n34,51,4.5\n34,52,4.0\n34,53,3.5\n34,54,3.0\n34,55,2.5\n34,56,2.0\n34,57,1.5\n34,58,1.0\n34,59,0.5\n34,60,1.0\n34,61,1.5\n34,62,2.0\n34,63,2.5\n34,64,3.0\n34,65,3.5\n34,66,4.0\n34,67,4.5\n34,68,5.0\n34,69,5.5\n34,70,6.0\n34,71,6.5\n34,72,7.0\n34,73,7.5\n34,74,8.0\n34,75,5.5\n34,76,5.0\n34,77,4.5\n34,78,4.0\n34,79,3.5\n34,80,3.0\n34,81,2.5\n34,82,2.0\n34,83,1.5\n34,84,1.0\n34,85,1.5\n34,86,2.0\n34,87,2.5\n34,88,3.0\n34,89,3.5\n34,90,4.0\n34,91,4.5\n34,92,5.0\n34,93,5.5\n34,94,6.0\n34,95,6.5\n34,96,7.0\n34,97,7.5\n34,98,8.0\n34,99,8.5\n34,100,6.0\n34,101,5.5\n34,102,5.0\n34,103,4.5\n34,104,4.0\n34,105,3.5\n34,106,3.0\n34,107,2.5\n34,108,2.0\n34,109,1.5\n34,110,2.0\n34,111,2.5\n34,112,3.0\n34,113,3.5\n34,114,4.0\n34,115,4.5\n34,116,5.0\n34,117,5.5\n34,118,6.0\n34,119,6.5\n34,120,7.0\n34,121,7.5\n34,122,8.0\n34,123,8.5\n34,124,9.0\n34,125,6.5\n34,126,6.0\n34,127,5.5\n34,128,5.0\n34,129,4.5\n34,130,4.0\n34,131,3.5\n34,132,3.0\n34,133,2.5\n34,134,2.0\n34,135,2.5\n34,136,3.0\n34,137,3.5\n34,138,4.0\n34,139,4.5\n34,140,5.0\n34,141,5.5\n34,142,6.0\n34,143,6.5\n34,144,7.0\n34,145,7.5\n34,146,8.0\n34,147,8.5\n34,148,9.0\n34,149,9.5\n34,150,7.0\n34,151,6.5\n34,152,6.0\n34,153,5.5\n34,154,5.0\n34,155,4.5\n34,156,4.0\n34,157,3.5\n34,158,3.0\n34,159,2.5\n34,160,3.0\n34,161,3.5\n34,162,4.0\n34,163,4.5\n34,164,5.0\n34,165,5.5\n34,166,6.0\n34,167,6.5\n34,168,7.0\n34,169,7.5\n34,170,8.0\n34,171,8.5\n34,172,9.0\n34,173,9.5\n34,174,10.0\n34,175,7.5\n34,176,7.0\n34,177,6.5\n34,178,6.0\n34,179,5.5\n34,180,5.0\n34,181,4.5\n34,182,4.0\n34,183,3.5\n34,184,3.0\n34,185,3.5\n34,186,4.0\n34,187,4.5\n34,188,5.0\n34,189,5.5\n34,190,6.0\n34,191,6.5\n34,192,7.0\n34,193,7.5\n34,194,8.0\n34,195,8.5\n34,196,9.0\n34,197,9.5\n34,198,10.0\n34,199,10.5\n34,200,8.0\n34,201,7.5\n34,202,7.0\n34,203,6.5\n34,204,6.0\n34,205,5.5\n34,206,5.0\n34,207,4.5\n34,208,4.0\n34,209,3.5\n34,210,4.0\n34,211,4.5\n34,212,5.0\n34,213,5.5\n34,214,6.0\n34,215,6.5\n34,216,7.0\n34,217,7.5\n34,218,8.0\n34,219,8.5\n34,220,9.0\n34,221,9.5\n34,222,10.0\n34,223,10.5\n34,224,11.0\n34,225,8.5\n34,226,8.0\n34,227,7.5\n34,228,7.0\n34,229,6.5\n34,230,6.0\n34,231,5.5\n34,232,5.0\n34,233,4.5\n34,234,4.0\n34,235,4.5\n34,236,5.0\n34,237,5.5\n34,238,6.0\n34,239,6.5\n34,240,7.0\n34,241,7.5\n34,242,8.0\n34,243,8.5\n34,244,9.0\n34,245,9.5\n34,246,10.0\n34,247,10.5\n34,248,11.0\n34,249,11.5\n34,250,9.0\n34,251,8.5\n34,252,8.0\n34,253,7.5\n34,254,7.0\n34,255,6.5\n34,256,6.0\n34,257,5.5\n34,258,5.0\n34,259,4.5\n34,260,5.0\n34,261,5.5\n34,262,6.0\n34,263,6.5\n34,264,7.0\n34,265,7.5\n34,266,8.0\n34,267,8.5\n34,268,9.0\n34,269,9.5\n34,270,10.0\n34,271,10.5\n34,272,11.0\n34,273,11.5\n34,274,12.0\n34,275,9.5\n34,276,9.0\n34,277,8.5\n34,278,8.0\n34,279,7.5\n34,280,7.0\n34,281,6.5\n34,282,6.0\n34,283,5.5\n34,284,5.0\n34,285,5.5\n34,286,6.0\n34,287,6.5\n34,288,7.0\n34,289,7.5\n34,290,8.0\n34,291,8.5\n34,292,9.0\n34,293,9.5\n34,294,10.0\n34,295,10.5\n34,296,11.0\n34,297,11.5\n34,298,12.0\n34,299,12.5\n34,300,10.0\n34,301,9.5\n34,302,9.0\n34,303,8.5\n34,304,8.0\n34,305,7.5\n34,306,7.0\n34,307,6.5\n34,308,6.0\n34,309,5.5\n34,310,6.0\n34,311,6.5\n34,312,7.0\n34,313,7.5\n34,314,8.0\n34,315,8.5\n34,316,9.0\n34,317,9.5\n34,318,10.0\n34,319,10.5\n34,320,11.0\n34,321,11.5\n34,322,12.0\n34,323,12.5\n34,324,13.0\n34,325,10.5\n34,326,10.0\n34,327,9.5\n34,328,9.0\n34,329,8.5\n34,330,8.0\n34,331,7.5\n34,332,7.0\n34,333,6.5\n34,334,6.0\n34,335,6.5\n34,336,7.0\n34,337,7.5\n34,338,8.0\n34,339,8.5\n34,340,9.0\n34,341,9.5\n34,342,10.0\n34,343,10.5\n34,344,11.0\n34,345,11.5\n34,346,12.0\n34,347,12.5\n34,348,13.0\n34,349,13.5\n34,350,11.0\n34,351,10.5\n34,352,10.0\n34,353,9.5\n34,354,9.0\n34,355,8.5\n34,356,8.0\n34,357,7.5\n34,358,7.0\n34,359,6.5\n34,360,7.0\n34,361,7.5\n34,362,8.0\n34,363,8.5\n34,364,9.0\n34,365,9.5\n34,366,10.0\n34,367,10.5\n34,368,11.0\n34,369,11.5\n34,370,12.0\n34,371,12.5\n34,372,13.0\n34,373,13.5\n34,374,14.0\n34,375,11.5\n34,376,11.0\n34,377,10.5\n34,378,10.0\n34,379,9.5\n34,380,9.0\n34,381,8.5\n34,382,8.0\n34,383,7.5\n34,384,7.0\n34,385,7.5\n34,386,8.0\n34,387,8.5\n34,388,9.0\n34,389,9.5\n34,390,10.0\n34,391,10.5\n34,392,11.0\n34,393,11.5\n34,394,12.0\n34,395,12.5\n34,396,13.0\n34,397,13.5\n34,398,14.0\n34,399,14.5\n34,400,12.0\n34,401,11.5\n34,402,11.0\n34,403,10.5\n34,404,10.0\n34,405,9.5\n34,406,9.0\n34,407,8.5\n34,408,8.0\n34,409,7.5\n34,410,8.0\n34,411,8.5\n34,412,9.0\n34,413,9.5\n34,414,10.0\n34,415,10.5\n34,416,11.0\n34,417,11.5\n34,418,12.0\n34,419,12.5\n34,420,13.0\n34,421,13.5\n34,422,14.0\n34,423,14.5\n34,424,15.0\n34,425,12.5\n34,426,12.0\n34,427,11.5\n34,428,11.0\n34,429,10.5\n34,430,10.0\n34,431,9.5\n34,432,9.0\n34,433,8.5\n34,434,8.0\n34,435,8.5\n34,436,9.0\n34,437,9.5\n34,438,10.0\n34,439,10.5\n34,440,11.0\n34,441,11.5\n34,442,12.0\n34,443,12.5\n34,444,13.0\n34,445,13.5\n34,446,14.0\n34,447,14.5\n34,448,15.0\n34,449,15.5\n34,450,13.0\n34,451,12.5\n34,452,12.0\n34,453,11.5\n34,454,11.0\n34,455,10.5\n34,456,10.0\n34,457,9.5\n34,458,9.0\n34,459,8.5\n34,460,9.0\n34,461,9.5\n34,462,10.0\n34,463,10.5\n34,464,11.0\n34,465,11.5\n34,466,12.0\n34,467,12.5\n34,468,13.0\n34,469,13.5\n34,470,14.0\n34,471,14.5\n34,472,15.0\n34,473,15.5\n34,474,16.0\n34,475,13.5\n34,476,13.0\n34,477,12.5\n34,478,12.0\n34,479,11.5\n34,480,11.0\n34,481,10.5\n34,482,10.0\n34,483,9.5\n34,484,9.0\n34,485,9.5\n34,486,10.0\n34,487,10.5\n34,488,11.0\n34,489,11.5\n34,490,12.0\n34,491,12.5\n34,492,13.0\n34,493,13.5\n34,494,14.0\n34,495,14.5\n34,496,15.0\n34,497,15.5\n34,498,16.0\n34,499,16.5\n34,500,14.0\n34,501,13.5\n34,502,13.0\n34,503,12.5\n34,504,12.0\n34,505,11.5\n34,506,11.0\n34,507,10.5\n34,508,10.0\n34,509,9.5\n34,510,10.0\n34,511,10.5\n34,512,11.0\n34,513,11.5\n34,514,12.0\n34,515,12.5\n34,516,13.0\n34,517,13.5\n34,518,14.0\n34,519,14.5\n34,520,15.0\n34,521,15.5\n34,522,16.0\n34,523,16.5\n34,524,17.0\n34,525,14.5\n34,526,14.0\n34,527,13.5\n34,528,13.0\n34,529,12.5\n34,530,12.0\n34,531,11.5\n34,532,11.0\n34,533,10.5\n34,534,10.0\n34,535,10.5\n34,536,11.0\n34,537,11.5\n34,538,12.0\n34,539,12.5\n34,540,13.0\n34,541,13.5\n34,542,14.0\n34,543,14.5\n34,544,15.0\n34,545,15.5\n34,546,16.0\n34,547,16.5\n34,548,17.0\n34,549,17.5\n34,550,15.0\n34,551,14.5\n34,552,14.0\n34,553,13.5\n34,554,13.0\n34,555,12.5\n34,556,12.0\n34,557,11.5\n34,558,11.0\n34,559,10.5\n34,560,11.0\n34,561,11.5\n34,562,12.0\n34,563,12.5\n34,564,13.0\n34,565,13.5\n34,566,14.0\n34,567,14.5\n34,568,15.0\n34,569,15.5\n34,570,16.0\n34,571,16.5\n34,572,17.0\n34,573,17.5\n34,574,18.0\n34,575,15.5\n34,576,15.0\n34,577,14.5\n34,578,14.0\n34,579,13.5\n34,580,13.0\n34,581,12.5\n34,582,12.0\n34,583,11.5\n34,584,11.0\n34,585,11.5\n34,586,12.0\n34,587,12.5\n34,588,13.0\n34,589,13.5\n34,590,14.0\n34,591,14.5\n34,592,15.0\n34,593,15.5\n34,594,16.0\n34,595,16.5\n34,596,17.0\n34,597,17.5\n34,598,18.0\n34,599,18.5\n34,600,16.0\n34,601,15.5\n34,602,15.0\n34,603,14.5\n34,604,14.0\n34,605,13.5\n34,606,13.0\n34,607,12.5\n34,608,12.0\n34,609,11.5\n34,610,12.0\n34,611,12.5\n34,612,13.0\n34,613,13.5\n34,614,14.0\n34,615,14.5\n34,616,15.0\n34,617,15.5\n34,618,16.0\n34,619,16.5\n34,620,17.0\n34,621,17.5\n34,622,18.0\n34,623,18.5\n34,624,19.0\n35,0,5.5\n35,1,5.0\n35,2,4.5\n35,3,4.0\n35,4,3.5\n35,5,3.0\n35,6,2.5\n35,7,2.0\n35,8,1.5\n35,9,1.0\n35,10,0.5\n35,11,1.0\n35,12,1.5\n35,13,2.0\n35,14,2.5\n35,15,3.0\n35,16,3.5\n35,17,4.0\n35,18,4.5\n35,19,5.0\n35,20,5.5\n35,21,6.0\n35,22,6.5\n35,23,7.0\n35,24,7.5\n35,25,5.0\n35,26,4.5\n35,27,4.0\n35,28,3.5\n35,29,3.0\n35,30,2.5\n35,31,2.0\n35,32,1.5\n35,33,1.0\n35,34,0.5\n35,35,0\n35,36,0.5\n35,37,1.0\n35,38,1.5\n35,39,2.0\n35,40,2.5\n35,41,3.0\n35,42,3.5\n35,43,4.0\n35,44,4.5\n35,45,5.0\n35,46,5.5\n35,47,6.0\n35,48,6.5\n35,49,7.0\n35,50,5.5\n35,51,5.0\n35,52,4.5\n35,53,4.0\n35,54,3.5\n35,55,3.0\n35,56,2.5\n35,57,2.0\n35,58,1.5\n35,59,1.0\n35,60,0.5\n35,61,1.0\n35,62,1.5\n35,63,2.0\n35,64,2.5\n35,65,3.0\n35,66,3.5\n35,67,4.0\n35,68,4.5\n35,69,5.0\n35,70,5.5\n35,71,6.0\n35,72,6.5\n35,73,7.0\n35,74,7.5\n35,75,6.0\n35,76,5.5\n35,77,5.0\n35,78,4.5\n35,79,4.0\n35,80,3.5\n35,81,3.0\n35,82,2.5\n35,83,2.0\n35,84,1.5\n35,85,1.0\n35,86,1.5\n35,87,2.0\n35,88,2.5\n35,89,3.0\n35,90,3.5\n35,91,4.0\n35,92,4.5\n35,93,5.0\n35,94,5.5\n35,95,6.0\n35,96,6.5\n35,97,7.0\n35,98,7.5\n35,99,8.0\n35,100,6.5\n35,101,6.0\n35,102,5.5\n35,103,5.0\n35,104,4.5\n35,105,4.0\n35,106,3.5\n35,107,3.0\n35,108,2.5\n35,109,2.0\n35,110,1.5\n35,111,2.0\n35,112,2.5\n35,113,3.0\n35,114,3.5\n35,115,4.0\n35,116,4.5\n35,117,5.0\n35,118,5.5\n35,119,6.0\n35,120,6.5\n35,121,7.0\n35,122,7.5\n35,123,8.0\n35,124,8.5\n35,125,7.0\n35,126,6.5\n35,127,6.0\n35,128,5.5\n35,129,5.0\n35,130,4.5\n35,131,4.0\n35,132,3.5\n35,133,3.0\n35,134,2.5\n35,135,2.0\n35,136,2.5\n35,137,3.0\n35,138,3.5\n35,139,4.0\n35,140,4.5\n35,141,5.0\n35,142,5.5\n35,143,6.0\n35,144,6.5\n35,145,7.0\n35,146,7.5\n35,147,8.0\n35,148,8.5\n35,149,9.0\n35,150,7.5\n35,151,7.0\n35,152,6.5\n35,153,6.0\n35,154,5.5\n35,155,5.0\n35,156,4.5\n35,157,4.0\n35,158,3.5\n35,159,3.0\n35,160,2.5\n35,161,3.0\n35,162,3.5\n35,163,4.0\n35,164,4.5\n35,165,5.0\n35,166,5.5\n35,167,6.0\n35,168,6.5\n35,169,7.0\n35,170,7.5\n35,171,8.0\n35,172,8.5\n35,173,9.0\n35,174,9.5\n35,175,8.0\n35,176,7.5\n35,177,7.0\n35,178,6.5\n35,179,6.0\n35,180,5.5\n35,181,5.0\n35,182,4.5\n35,183,4.0\n35,184,3.5\n35,185,3.0\n35,186,3.5\n35,187,4.0\n35,188,4.5\n35,189,5.0\n35,190,5.5\n35,191,6.0\n35,192,6.5\n35,193,7.0\n35,194,7.5\n35,195,8.0\n35,196,8.5\n35,197,9.0\n35,198,9.5\n35,199,10.0\n35,200,8.5\n35,201,8.0\n35,202,7.5\n35,203,7.0\n35,204,6.5\n35,205,6.0\n35,206,5.5\n35,207,5.0\n35,208,4.5\n35,209,4.0\n35,210,3.5\n35,211,4.0\n35,212,4.5\n35,213,5.0\n35,214,5.5\n35,215,6.0\n35,216,6.5\n35,217,7.0\n35,218,7.5\n35,219,8.0\n35,220,8.5\n35,221,9.0\n35,222,9.5\n35,223,10.0\n35,224,10.5\n35,225,9.0\n35,226,8.5\n35,227,8.0\n35,228,7.5\n35,229,7.0\n35,230,6.5\n35,231,6.0\n35,232,5.5\n35,233,5.0\n35,234,4.5\n35,235,4.0\n35,236,4.5\n35,237,5.0\n35,238,5.5\n35,239,6.0\n35,240,6.5\n35,241,7.0\n35,242,7.5\n35,243,8.0\n35,244,8.5\n35,245,9.0\n35,246,9.5\n35,247,10.0\n35,248,10.5\n35,249,11.0\n35,250,9.5\n35,251,9.0\n35,252,8.5\n35,253,8.0\n35,254,7.5\n35,255,7.0\n35,256,6.5\n35,257,6.0\n35,258,5.5\n35,259,5.0\n35,260,4.5\n35,261,5.0\n35,262,5.5\n35,263,6.0\n35,264,6.5\n35,265,7.0\n35,266,7.5\n35,267,8.0\n35,268,8.5\n35,269,9.0\n35,270,9.5\n35,271,10.0\n35,272,10.5\n35,273,11.0\n35,274,11.5\n35,275,10.0\n35,276,9.5\n35,277,9.0\n35,278,8.5\n35,279,8.0\n35,280,7.5\n35,281,7.0\n35,282,6.5\n35,283,6.0\n35,284,5.5\n35,285,5.0\n35,286,5.5\n35,287,6.0\n35,288,6.5\n35,289,7.0\n35,290,7.5\n35,291,8.0\n35,292,8.5\n35,293,9.0\n35,294,9.5\n35,295,10.0\n35,296,10.5\n35,297,11.0\n35,298,11.5\n35,299,12.0\n35,300,10.5\n35,301,10.0\n35,302,9.5\n35,303,9.0\n35,304,8.5\n35,305,8.0\n35,306,7.5\n35,307,7.0\n35,308,6.5\n35,309,6.0\n35,310,5.5\n35,311,6.0\n35,312,6.5\n35,313,7.0\n35,314,7.5\n35,315,8.0\n35,316,8.5\n35,317,9.0\n35,318,9.5\n35,319,10.0\n35,320,10.5\n35,321,11.0\n35,322,11.5\n35,323,12.0\n35,324,12.5\n35,325,11.0\n35,326,10.5\n35,327,10.0\n35,328,9.5\n35,329,9.0\n35,330,8.5\n35,331,8.0\n35,332,7.5\n35,333,7.0\n35,334,6.5\n35,335,6.0\n35,336,6.5\n35,337,7.0\n35,338,7.5\n35,339,8.0\n35,340,8.5\n35,341,9.0\n35,342,9.5\n35,343,10.0\n35,344,10.5\n35,345,11.0\n35,346,11.5\n35,347,12.0\n35,348,12.5\n35,349,13.0\n35,350,11.5\n35,351,11.0\n35,352,10.5\n35,353,10.0\n35,354,9.5\n35,355,9.0\n35,356,8.5\n35,357,8.0\n35,358,7.5\n35,359,7.0\n35,360,6.5\n35,361,7.0\n35,362,7.5\n35,363,8.0\n35,364,8.5\n35,365,9.0\n35,366,9.5\n35,367,10.0\n35,368,10.5\n35,369,11.0\n35,370,11.5\n35,371,12.0\n35,372,12.5\n35,373,13.0\n35,374,13.5\n35,375,12.0\n35,376,11.5\n35,377,11.0\n35,378,10.5\n35,379,10.0\n35,380,9.5\n35,381,9.0\n35,382,8.5\n35,383,8.0\n35,384,7.5\n35,385,7.0\n35,386,7.5\n35,387,8.0\n35,388,8.5\n35,389,9.0\n35,390,9.5\n35,391,10.0\n35,392,10.5\n35,393,11.0\n35,394,11.5\n35,395,12.0\n35,396,12.5\n35,397,13.0\n35,398,13.5\n35,399,14.0\n35,400,12.5\n35,401,12.0\n35,402,11.5\n35,403,11.0\n35,404,10.5\n35,405,10.0\n35,406,9.5\n35,407,9.0\n35,408,8.5\n35,409,8.0\n35,410,7.5\n35,411,8.0\n35,412,8.5\n35,413,9.0\n35,414,9.5\n35,415,10.0\n35,416,10.5\n35,417,11.0\n35,418,11.5\n35,419,12.0\n35,420,12.5\n35,421,13.0\n35,422,13.5\n35,423,14.0\n35,424,14.5\n35,425,13.0\n35,426,12.5\n35,427,12.0\n35,428,11.5\n35,429,11.0\n35,430,10.5\n35,431,10.0\n35,432,9.5\n35,433,9.0\n35,434,8.5\n35,435,8.0\n35,436,8.5\n35,437,9.0\n35,438,9.5\n35,439,10.0\n35,440,10.5\n35,441,11.0\n35,442,11.5\n35,443,12.0\n35,444,12.5\n35,445,13.0\n35,446,13.5\n35,447,14.0\n35,448,14.5\n35,449,15.0\n35,450,13.5\n35,451,13.0\n35,452,12.5\n35,453,12.0\n35,454,11.5\n35,455,11.0\n35,456,10.5\n35,457,10.0\n35,458,9.5\n35,459,9.0\n35,460,8.5\n35,461,9.0\n35,462,9.5\n35,463,10.0\n35,464,10.5\n35,465,11.0\n35,466,11.5\n35,467,12.0\n35,468,12.5\n35,469,13.0\n35,470,13.5\n35,471,14.0\n35,472,14.5\n35,473,15.0\n35,474,15.5\n35,475,14.0\n35,476,13.5\n35,477,13.0\n35,478,12.5\n35,479,12.0\n35,480,11.5\n35,481,11.0\n35,482,10.5\n35,483,10.0\n35,484,9.5\n35,485,9.0\n35,486,9.5\n35,487,10.0\n35,488,10.5\n35,489,11.0\n35,490,11.5\n35,491,12.0\n35,492,12.5\n35,493,13.0\n35,494,13.5\n35,495,14.0\n35,496,14.5\n35,497,15.0\n35,498,15.5\n35,499,16.0\n35,500,14.5\n35,501,14.0\n35,502,13.5\n35,503,13.0\n35,504,12.5\n35,505,12.0\n35,506,11.5\n35,507,11.0\n35,508,10.5\n35,509,10.0\n35,510,9.5\n35,511,10.0\n35,512,10.5\n35,513,11.0\n35,514,11.5\n35,515,12.0\n35,516,12.5\n35,517,13.0\n35,518,13.5\n35,519,14.0\n35,520,14.5\n35,521,15.0\n35,522,15.5\n35,523,16.0\n35,524,16.5\n35,525,15.0\n35,526,14.5\n35,527,14.0\n35,528,13.5\n35,529,13.0\n35,530,12.5\n35,531,12.0\n35,532,11.5\n35,533,11.0\n35,534,10.5\n35,535,10.0\n35,536,10.5\n35,537,11.0\n35,538,11.5\n35,539,12.0\n35,540,12.5\n35,541,13.0\n35,542,13.5\n35,543,14.0\n35,544,14.5\n35,545,15.0\n35,546,15.5\n35,547,16.0\n35,548,16.5\n35,549,17.0\n35,550,15.5\n35,551,15.0\n35,552,14.5\n35,553,14.0\n35,554,13.5\n35,555,13.0\n35,556,12.5\n35,557,12.0\n35,558,11.5\n35,559,11.0\n35,560,10.5\n35,561,11.0\n35,562,11.5\n35,563,12.0\n35,564,12.5\n35,565,13.0\n35,566,13.5\n35,567,14.0\n35,568,14.5\n35,569,15.0\n35,570,15.5\n35,571,16.0\n35,572,16.5\n35,573,17.0\n35,574,17.5\n35,575,16.0\n35,576,15.5\n35,577,15.0\n35,578,14.5\n35,579,14.0\n35,580,13.5\n35,581,13.0\n35,582,12.5\n35,583,12.0\n35,584,11.5\n35,585,11.0\n35,586,11.5\n35,587,12.0\n35,588,12.5\n35,589,13.0\n35,590,13.5\n35,591,14.0\n35,592,14.5\n35,593,15.0\n35,594,15.5\n35,595,16.0\n35,596,16.5\n35,597,17.0\n35,598,17.5\n35,599,18.0\n35,600,16.5\n35,601,16.0\n35,602,15.5\n35,603,15.0\n35,604,14.5\n35,605,14.0\n35,606,13.5\n35,607,13.0\n35,608,12.5\n35,609,12.0\n35,610,11.5\n35,611,12.0\n35,612,12.5\n35,613,13.0\n35,614,13.5\n35,615,14.0\n35,616,14.5\n35,617,15.0\n35,618,15.5\n35,619,16.0\n35,620,16.5\n35,621,17.0\n35,622,17.5\n35,623,18.0\n35,624,18.5\n36,0,6.0\n36,1,5.5\n36,2,5.0\n36,3,4.5\n36,4,4.0\n36,5,3.5\n36,6,3.0\n36,7,2.5\n36,8,2.0\n36,9,1.5\n36,10,1.0\n36,11,0.5\n36,12,1.0\n36,13,1.5\n36,14,2.0\n36,15,2.5\n36,16,3.0\n36,17,3.5\n36,18,4.0\n36,19,4.5\n36,20,5.0\n36,21,5.5\n36,22,6.0\n36,23,6.5\n36,24,7.0\n36,25,5.5\n36,26,5.0\n36,27,4.5\n36,28,4.0\n36,29,3.5\n36,30,3.0\n36,31,2.5\n36,32,2.0\n36,33,1.5\n36,34,1.0\n36,35,0.5\n36,36,0\n36,37,0.5\n36,38,1.0\n36,39,1.5\n36,40,2.0\n36,41,2.5\n36,42,3.0\n36,43,3.5\n36,44,4.0\n36,45,4.5\n36,46,5.0\n36,47,5.5\n36,48,6.0\n36,49,6.5\n36,50,6.0\n36,51,5.5\n36,52,5.0\n36,53,4.5\n36,54,4.0\n36,55,3.5\n36,56,3.0\n36,57,2.5\n36,58,2.0\n36,59,1.5\n36,60,1.0\n36,61,0.5\n36,62,1.0\n36,63,1.5\n36,64,2.0\n36,65,2.5\n36,66,3.0\n36,67,3.5\n36,68,4.0\n36,69,4.5\n36,70,5.0\n36,71,5.5\n36,72,6.0\n36,73,6.5\n36,74,7.0\n36,75,6.5\n36,76,6.0\n36,77,5.5\n36,78,5.0\n36,79,4.5\n36,80,4.0\n36,81,3.5\n36,82,3.0\n36,83,2.5\n36,84,2.0\n36,85,1.5\n36,86,1.0\n36,87,1.5\n36,88,2.0\n36,89,2.5\n36,90,3.0\n36,91,3.5\n36,92,4.0\n36,93,4.5\n36,94,5.0\n36,95,5.5\n36,96,6.0\n36,97,6.5\n36,98,7.0\n36,99,7.5\n36,100,7.0\n36,101,6.5\n36,102,6.0\n36,103,5.5\n36,104,5.0\n36,105,4.5\n36,106,4.0\n36,107,3.5\n36,108,3.0\n36,109,2.5\n36,110,2.0\n36,111,1.5\n36,112,2.0\n36,113,2.5\n36,114,3.0\n36,115,3.5\n36,116,4.0\n36,117,4.5\n36,118,5.0\n36,119,5.5\n36,120,6.0\n36,121,6.5\n36,122,7.0\n36,123,7.5\n36,124,8.0\n36,125,7.5\n36,126,7.0\n36,127,6.5\n36,128,6.0\n36,129,5.5\n36,130,5.0\n36,131,4.5\n36,132,4.0\n36,133,3.5\n36,134,3.0\n36,135,2.5\n36,136,2.0\n36,137,2.5\n36,138,3.0\n36,139,3.5\n36,140,4.0\n36,141,4.5\n36,142,5.0\n36,143,5.5\n36,144,6.0\n36,145,6.5\n36,146,7.0\n36,147,7.5\n36,148,8.0\n36,149,8.5\n36,150,8.0\n36,151,7.5\n36,152,7.0\n36,153,6.5\n36,154,6.0\n36,155,5.5\n36,156,5.0\n36,157,4.5\n36,158,4.0\n36,159,3.5\n36,160,3.0\n36,161,2.5\n36,162,3.0\n36,163,3.5\n36,164,4.0\n36,165,4.5\n36,166,5.0\n36,167,5.5\n36,168,6.0\n36,169,6.5\n36,170,7.0\n36,171,7.5\n36,172,8.0\n36,173,8.5\n36,174,9.0\n36,175,8.5\n36,176,8.0\n36,177,7.5\n36,178,7.0\n36,179,6.5\n36,180,6.0\n36,181,5.5\n36,182,5.0\n36,183,4.5\n36,184,4.0\n36,185,3.5\n36,186,3.0\n36,187,3.5\n36,188,4.0\n36,189,4.5\n36,190,5.0\n36,191,5.5\n36,192,6.0\n36,193,6.5\n36,194,7.0\n36,195,7.5\n36,196,8.0\n36,197,8.5\n36,198,9.0\n36,199,9.5\n36,200,9.0\n36,201,8.5\n36,202,8.0\n36,203,7.5\n36,204,7.0\n36,205,6.5\n36,206,6.0\n36,207,5.5\n36,208,5.0\n36,209,4.5\n36,210,4.0\n36,211,3.5\n36,212,4.0\n36,213,4.5\n36,214,5.0\n36,215,5.5\n36,216,6.0\n36,217,6.5\n36,218,7.0\n36,219,7.5\n36,220,8.0\n36,221,8.5\n36,222,9.0\n36,223,9.5\n36,224,10.0\n36,225,9.5\n36,226,9.0\n36,227,8.5\n36,228,8.0\n36,229,7.5\n36,230,7.0\n36,231,6.5\n36,232,6.0\n36,233,5.5\n36,234,5.0\n36,235,4.5\n36,236,4.0\n36,237,4.5\n36,238,5.0\n36,239,5.5\n36,240,6.0\n36,241,6.5\n36,242,7.0\n36,243,7.5\n36,244,8.0\n36,245,8.5\n36,246,9.0\n36,247,9.5\n36,248,10.0\n36,249,10.5\n36,250,10.0\n36,251,9.5\n36,252,9.0\n36,253,8.5\n36,254,8.0\n36,255,7.5\n36,256,7.0\n36,257,6.5\n36,258,6.0\n36,259,5.5\n36,260,5.0\n36,261,4.5\n36,262,5.0\n36,263,5.5\n36,264,6.0\n36,265,6.5\n36,266,7.0\n36,267,7.5\n36,268,8.0\n36,269,8.5\n36,270,9.0\n36,271,9.5\n36,272,10.0\n36,273,10.5\n36,274,11.0\n36,275,10.5\n36,276,10.0\n36,277,9.5\n36,278,9.0\n36,279,8.5\n36,280,8.0\n36,281,7.5\n36,282,7.0\n36,283,6.5\n36,284,6.0\n36,285,5.5\n36,286,5.0\n36,287,5.5\n36,288,6.0\n36,289,6.5\n36,290,7.0\n36,291,7.5\n36,292,8.0\n36,293,8.5\n36,294,9.0\n36,295,9.5\n36,296,10.0\n36,297,10.5\n36,298,11.0\n36,299,11.5\n36,300,11.0\n36,301,10.5\n36,302,10.0\n36,303,9.5\n36,304,9.0\n36,305,8.5\n36,306,8.0\n36,307,7.5\n36,308,7.0\n36,309,6.5\n36,310,6.0\n36,311,5.5\n36,312,6.0\n36,313,6.5\n36,314,7.0\n36,315,7.5\n36,316,8.0\n36,317,8.5\n36,318,9.0\n36,319,9.5\n36,320,10.0\n36,321,10.5\n36,322,11.0\n36,323,11.5\n36,324,12.0\n36,325,11.5\n36,326,11.0\n36,327,10.5\n36,328,10.0\n36,329,9.5\n36,330,9.0\n36,331,8.5\n36,332,8.0\n36,333,7.5\n36,334,7.0\n36,335,6.5\n36,336,6.0\n36,337,6.5\n36,338,7.0\n36,339,7.5\n36,340,8.0\n36,341,8.5\n36,342,9.0\n36,343,9.5\n36,344,10.0\n36,345,10.5\n36,346,11.0\n36,347,11.5\n36,348,12.0\n36,349,12.5\n36,350,12.0\n36,351,11.5\n36,352,11.0\n36,353,10.5\n36,354,10.0\n36,355,9.5\n36,356,9.0\n36,357,8.5\n36,358,8.0\n36,359,7.5\n36,360,7.0\n36,361,6.5\n36,362,7.0\n36,363,7.5\n36,364,8.0\n36,365,8.5\n36,366,9.0\n36,367,9.5\n36,368,10.0\n36,369,10.5\n36,370,11.0\n36,371,11.5\n36,372,12.0\n36,373,12.5\n36,374,13.0\n36,375,12.5\n36,376,12.0\n36,377,11.5\n36,378,11.0\n36,379,10.5\n36,380,10.0\n36,381,9.5\n36,382,9.0\n36,383,8.5\n36,384,8.0\n36,385,7.5\n36,386,7.0\n36,387,7.5\n36,388,8.0\n36,389,8.5\n36,390,9.0\n36,391,9.5\n36,392,10.0\n36,393,10.5\n36,394,11.0\n36,395,11.5\n36,396,12.0\n36,397,12.5\n36,398,13.0\n36,399,13.5\n36,400,13.0\n36,401,12.5\n36,402,12.0\n36,403,11.5\n36,404,11.0\n36,405,10.5\n36,406,10.0\n36,407,9.5\n36,408,9.0\n36,409,8.5\n36,410,8.0\n36,411,7.5\n36,412,8.0\n36,413,8.5\n36,414,9.0\n36,415,9.5\n36,416,10.0\n36,417,10.5\n36,418,11.0\n36,419,11.5\n36,420,12.0\n36,421,12.5\n36,422,13.0\n36,423,13.5\n36,424,14.0\n36,425,13.5\n36,426,13.0\n36,427,12.5\n36,428,12.0\n36,429,11.5\n36,430,11.0\n36,431,10.5\n36,432,10.0\n36,433,9.5\n36,434,9.0\n36,435,8.5\n36,436,8.0\n36,437,8.5\n36,438,9.0\n36,439,9.5\n36,440,10.0\n36,441,10.5\n36,442,11.0\n36,443,11.5\n36,444,12.0\n36,445,12.5\n36,446,13.0\n36,447,13.5\n36,448,14.0\n36,449,14.5\n36,450,14.0\n36,451,13.5\n36,452,13.0\n36,453,12.5\n36,454,12.0\n36,455,11.5\n36,456,11.0\n36,457,10.5\n36,458,10.0\n36,459,9.5\n36,460,9.0\n36,461,8.5\n36,462,9.0\n36,463,9.5\n36,464,10.0\n36,465,10.5\n36,466,11.0\n36,467,11.5\n36,468,12.0\n36,469,12.5\n36,470,13.0\n36,471,13.5\n36,472,14.0\n36,473,14.5\n36,474,15.0\n36,475,14.5\n36,476,14.0\n36,477,13.5\n36,478,13.0\n36,479,12.5\n36,480,12.0\n36,481,11.5\n36,482,11.0\n36,483,10.5\n36,484,10.0\n36,485,9.5\n36,486,9.0\n36,487,9.5\n36,488,10.0\n36,489,10.5\n36,490,11.0\n36,491,11.5\n36,492,12.0\n36,493,12.5\n36,494,13.0\n36,495,13.5\n36,496,14.0\n36,497,14.5\n36,498,15.0\n36,499,15.5\n36,500,15.0\n36,501,14.5\n36,502,14.0\n36,503,13.5\n36,504,13.0\n36,505,12.5\n36,506,12.0\n36,507,11.5\n36,508,11.0\n36,509,10.5\n36,510,10.0\n36,511,9.5\n36,512,10.0\n36,513,10.5\n36,514,11.0\n36,515,11.5\n36,516,12.0\n36,517,12.5\n36,518,13.0\n36,519,13.5\n36,520,14.0\n36,521,14.5\n36,522,15.0\n36,523,15.5\n36,524,16.0\n36,525,15.5\n36,526,15.0\n36,527,14.5\n36,528,14.0\n36,529,13.5\n36,530,13.0\n36,531,12.5\n36,532,12.0\n36,533,11.5\n36,534,11.0\n36,535,10.5\n36,536,10.0\n36,537,10.5\n36,538,11.0\n36,539,11.5\n36,540,12.0\n36,541,12.5\n36,542,13.0\n36,543,13.5\n36,544,14.0\n36,545,14.5\n36,546,15.0\n36,547,15.5\n36,548,16.0\n36,549,16.5\n36,550,16.0\n36,551,15.5\n36,552,15.0\n36,553,14.5\n36,554,14.0\n36,555,13.5\n36,556,13.0\n36,557,12.5\n36,558,12.0\n36,559,11.5\n36,560,11.0\n36,561,10.5\n36,562,11.0\n36,563,11.5\n36,564,12.0\n36,565,12.5\n36,566,13.0\n36,567,13.5\n36,568,14.0\n36,569,14.5\n36,570,15.0\n36,571,15.5\n36,572,16.0\n36,573,16.5\n36,574,17.0\n36,575,16.5\n36,576,16.0\n36,577,15.5\n36,578,15.0\n36,579,14.5\n36,580,14.0\n36,581,13.5\n36,582,13.0\n36,583,12.5\n36,584,12.0\n36,585,11.5\n36,586,11.0\n36,587,11.5\n36,588,12.0\n36,589,12.5\n36,590,13.0\n36,591,13.5\n36,592,14.0\n36,593,14.5\n36,594,15.0\n36,595,15.5\n36,596,16.0\n36,597,16.5\n36,598,17.0\n36,599,17.5\n36,600,17.0\n36,601,16.5\n36,602,16.0\n36,603,15.5\n36,604,15.0\n36,605,14.5\n36,606,14.0\n36,607,13.5\n36,608,13.0\n36,609,12.5\n36,610,12.0\n36,611,11.5\n36,612,12.0\n36,613,12.5\n36,614,13.0\n36,615,13.5\n36,616,14.0\n36,617,14.5\n36,618,15.0\n36,619,15.5\n36,620,16.0\n36,621,16.5\n36,622,17.0\n36,623,17.5\n36,624,18.0\n37,0,6.5\n37,1,6.0\n37,2,5.5\n37,3,5.0\n37,4,4.5\n37,5,4.0\n37,6,3.5\n37,7,3.0\n37,8,2.5\n37,9,2.0\n37,10,1.5\n37,11,1.0\n37,12,0.5\n37,13,1.0\n37,14,1.5\n37,15,2.0\n37,16,2.5\n37,17,3.0\n37,18,3.5\n37,19,4.0\n37,20,4.5\n37,21,5.0\n37,22,5.5\n37,23,6.0\n37,24,6.5\n37,25,6.0\n37,26,5.5\n37,27,5.0\n37,28,4.5\n37,29,4.0\n37,30,3.5\n37,31,3.0\n37,32,2.5\n37,33,2.0\n37,34,1.5\n37,35,1.0\n37,36,0.5\n37,37,0\n37,38,0.5\n37,39,1.0\n37,40,1.5\n37,41,2.0\n37,42,2.5\n37,43,3.0\n37,44,3.5\n37,45,4.0\n37,46,4.5\n37,47,5.0\n37,48,5.5\n37,49,6.0\n37,50,6.5\n37,51,6.0\n37,52,5.5\n37,53,5.0\n37,54,4.5\n37,55,4.0\n37,56,3.5\n37,57,3.0\n37,58,2.5\n37,59,2.0\n37,60,1.5\n37,61,1.0\n37,62,0.5\n37,63,1.0\n37,64,1.5\n37,65,2.0\n37,66,2.5\n37,67,3.0\n37,68,3.5\n37,69,4.0\n37,70,4.5\n37,71,5.0\n37,72,5.5\n37,73,6.0\n37,74,6.5\n37,75,7.0\n37,76,6.5\n37,77,6.0\n37,78,5.5\n37,79,5.0\n37,80,4.5\n37,81,4.0\n37,82,3.5\n37,83,3.0\n37,84,2.5\n37,85,2.0\n37,86,1.5\n37,87,1.0\n37,88,1.5\n37,89,2.0\n37,90,2.5\n37,91,3.0\n37,92,3.5\n37,93,4.0\n37,94,4.5\n37,95,5.0\n37,96,5.5\n37,97,6.0\n37,98,6.5\n37,99,7.0\n37,100,7.5\n37,101,7.0\n37,102,6.5\n37,103,6.0\n37,104,5.5\n37,105,5.0\n37,106,4.5\n37,107,4.0\n37,108,3.5\n37,109,3.0\n37,110,2.5\n37,111,2.0\n37,112,1.5\n37,113,2.0\n37,114,2.5\n37,115,3.0\n37,116,3.5\n37,117,4.0\n37,118,4.5\n37,119,5.0\n37,120,5.5\n37,121,6.0\n37,122,6.5\n37,123,7.0\n37,124,7.5\n37,125,8.0\n37,126,7.5\n37,127,7.0\n37,128,6.5\n37,129,6.0\n37,130,5.5\n37,131,5.0\n37,132,4.5\n37,133,4.0\n37,134,3.5\n37,135,3.0\n37,136,2.5\n37,137,2.0\n37,138,2.5\n37,139,3.0\n37,140,3.5\n37,141,4.0\n37,142,4.5\n37,143,5.0\n37,144,5.5\n37,145,6.0\n37,146,6.5\n37,147,7.0\n37,148,7.5\n37,149,8.0\n37,150,8.5\n37,151,8.0\n37,152,7.5\n37,153,7.0\n37,154,6.5\n37,155,6.0\n37,156,5.5\n37,157,5.0\n37,158,4.5\n37,159,4.0\n37,160,3.5\n37,161,3.0\n37,162,2.5\n37,163,3.0\n37,164,3.5\n37,165,4.0\n37,166,4.5\n37,167,5.0\n37,168,5.5\n37,169,6.0\n37,170,6.5\n37,171,7.0\n37,172,7.5\n37,173,8.0\n37,174,8.5\n37,175,9.0\n37,176,8.5\n37,177,8.0\n37,178,7.5\n37,179,7.0\n37,180,6.5\n37,181,6.0\n37,182,5.5\n37,183,5.0\n37,184,4.5\n37,185,4.0\n37,186,3.5\n37,187,3.0\n37,188,3.5\n37,189,4.0\n37,190,4.5\n37,191,5.0\n37,192,5.5\n37,193,6.0\n37,194,6.5\n37,195,7.0\n37,196,7.5\n37,197,8.0\n37,198,8.5\n37,199,9.0\n37,200,9.5\n37,201,9.0\n37,202,8.5\n37,203,8.0\n37,204,7.5\n37,205,7.0\n37,206,6.5\n37,207,6.0\n37,208,5.5\n37,209,5.0\n37,210,4.5\n37,211,4.0\n37,212,3.5\n37,213,4.0\n37,214,4.5\n37,215,5.0\n37,216,5.5\n37,217,6.0\n37,218,6.5\n37,219,7.0\n37,220,7.5\n37,221,8.0\n37,222,8.5\n37,223,9.0\n37,224,9.5\n37,225,10.0\n37,226,9.5\n37,227,9.0\n37,228,8.5\n37,229,8.0\n37,230,7.5\n37,231,7.0\n37,232,6.5\n37,233,6.0\n37,234,5.5\n37,235,5.0\n37,236,4.5\n37,237,4.0\n37,238,4.5\n37,239,5.0\n37,240,5.5\n37,241,6.0\n37,242,6.5\n37,243,7.0\n37,244,7.5\n37,245,8.0\n37,246,8.5\n37,247,9.0\n37,248,9.5\n37,249,10.0\n37,250,10.5\n37,251,10.0\n37,252,9.5\n37,253,9.0\n37,254,8.5\n37,255,8.0\n37,256,7.5\n37,257,7.0\n37,258,6.5\n37,259,6.0\n37,260,5.5\n37,261,5.0\n37,262,4.5\n37,263,5.0\n37,264,5.5\n37,265,6.0\n37,266,6.5\n37,267,7.0\n37,268,7.5\n37,269,8.0\n37,270,8.5\n37,271,9.0\n37,272,9.5\n37,273,10.0\n37,274,10.5\n37,275,11.0\n37,276,10.5\n37,277,10.0\n37,278,9.5\n37,279,9.0\n37,280,8.5\n37,281,8.0\n37,282,7.5\n37,283,7.0\n37,284,6.5\n37,285,6.0\n37,286,5.5\n37,287,5.0\n37,288,5.5\n37,289,6.0\n37,290,6.5\n37,291,7.0\n37,292,7.5\n37,293,8.0\n37,294,8.5\n37,295,9.0\n37,296,9.5\n37,297,10.0\n37,298,10.5\n37,299,11.0\n37,300,11.5\n37,301,11.0\n37,302,10.5\n37,303,10.0\n37,304,9.5\n37,305,9.0\n37,306,8.5\n37,307,8.0\n37,308,7.5\n37,309,7.0\n37,310,6.5\n37,311,6.0\n37,312,5.5\n37,313,6.0\n37,314,6.5\n37,315,7.0\n37,316,7.5\n37,317,8.0\n37,318,8.5\n37,319,9.0\n37,320,9.5\n37,321,10.0\n37,322,10.5\n37,323,11.0\n37,324,11.5\n37,325,12.0\n37,326,11.5\n37,327,11.0\n37,328,10.5\n37,329,10.0\n37,330,9.5\n37,331,9.0\n37,332,8.5\n37,333,8.0\n37,334,7.5\n37,335,7.0\n37,336,6.5\n37,337,6.0\n37,338,6.5\n37,339,7.0\n37,340,7.5\n37,341,8.0\n37,342,8.5\n37,343,9.0\n37,344,9.5\n37,345,10.0\n37,346,10.5\n37,347,11.0\n37,348,11.5\n37,349,12.0\n37,350,12.5\n37,351,12.0\n37,352,11.5\n37,353,11.0\n37,354,10.5\n37,355,10.0\n37,356,9.5\n37,357,9.0\n37,358,8.5\n37,359,8.0\n37,360,7.5\n37,361,7.0\n37,362,6.5\n37,363,7.0\n37,364,7.5\n37,365,8.0\n37,366,8.5\n37,367,9.0\n37,368,9.5\n37,369,10.0\n37,370,10.5\n37,371,11.0\n37,372,11.5\n37,373,12.0\n37,374,12.5\n37,375,13.0\n37,376,12.5\n37,377,12.0\n37,378,11.5\n37,379,11.0\n37,380,10.5\n37,381,10.0\n37,382,9.5\n37,383,9.0\n37,384,8.5\n37,385,8.0\n37,386,7.5\n37,387,7.0\n37,388,7.5\n37,389,8.0\n37,390,8.5\n37,391,9.0\n37,392,9.5\n37,393,10.0\n37,394,10.5\n37,395,11.0\n37,396,11.5\n37,397,12.0\n37,398,12.5\n37,399,13.0\n37,400,13.5\n37,401,13.0\n37,402,12.5\n37,403,12.0\n37,404,11.5\n37,405,11.0\n37,406,10.5\n37,407,10.0\n37,408,9.5\n37,409,9.0\n37,410,8.5\n37,411,8.0\n37,412,7.5\n37,413,8.0\n37,414,8.5\n37,415,9.0\n37,416,9.5\n37,417,10.0\n37,418,10.5\n37,419,11.0\n37,420,11.5\n37,421,12.0\n37,422,12.5\n37,423,13.0\n37,424,13.5\n37,425,14.0\n37,426,13.5\n37,427,13.0\n37,428,12.5\n37,429,12.0\n37,430,11.5\n37,431,11.0\n37,432,10.5\n37,433,10.0\n37,434,9.5\n37,435,9.0\n37,436,8.5\n37,437,8.0\n37,438,8.5\n37,439,9.0\n37,440,9.5\n37,441,10.0\n37,442,10.5\n37,443,11.0\n37,444,11.5\n37,445,12.0\n37,446,12.5\n37,447,13.0\n37,448,13.5\n37,449,14.0\n37,450,14.5\n37,451,14.0\n37,452,13.5\n37,453,13.0\n37,454,12.5\n37,455,12.0\n37,456,11.5\n37,457,11.0\n37,458,10.5\n37,459,10.0\n37,460,9.5\n37,461,9.0\n37,462,8.5\n37,463,9.0\n37,464,9.5\n37,465,10.0\n37,466,10.5\n37,467,11.0\n37,468,11.5\n37,469,12.0\n37,470,12.5\n37,471,13.0\n37,472,13.5\n37,473,14.0\n37,474,14.5\n37,475,15.0\n37,476,14.5\n37,477,14.0\n37,478,13.5\n37,479,13.0\n37,480,12.5\n37,481,12.0\n37,482,11.5\n37,483,11.0\n37,484,10.5\n37,485,10.0\n37,486,9.5\n37,487,9.0\n37,488,9.5\n37,489,10.0\n37,490,10.5\n37,491,11.0\n37,492,11.5\n37,493,12.0\n37,494,12.5\n37,495,13.0\n37,496,13.5\n37,497,14.0\n37,498,14.5\n37,499,15.0\n37,500,15.5\n37,501,15.0\n37,502,14.5\n37,503,14.0\n37,504,13.5\n37,505,13.0\n37,506,12.5\n37,507,12.0\n37,508,11.5\n37,509,11.0\n37,510,10.5\n37,511,10.0\n37,512,9.5\n37,513,10.0\n37,514,10.5\n37,515,11.0\n37,516,11.5\n37,517,12.0\n37,518,12.5\n37,519,13.0\n37,520,13.5\n37,521,14.0\n37,522,14.5\n37,523,15.0\n37,524,15.5\n37,525,16.0\n37,526,15.5\n37,527,15.0\n37,528,14.5\n37,529,14.0\n37,530,13.5\n37,531,13.0\n37,532,12.5\n37,533,12.0\n37,534,11.5\n37,535,11.0\n37,536,10.5\n37,537,10.0\n37,538,10.5\n37,539,11.0\n37,540,11.5\n37,541,12.0\n37,542,12.5\n37,543,13.0\n37,544,13.5\n37,545,14.0\n37,546,14.5\n37,547,15.0\n37,548,15.5\n37,549,16.0\n37,550,16.5\n37,551,16.0\n37,552,15.5\n37,553,15.0\n37,554,14.5\n37,555,14.0\n37,556,13.5\n37,557,13.0\n37,558,12.5\n37,559,12.0\n37,560,11.5\n37,561,11.0\n37,562,10.5\n37,563,11.0\n37,564,11.5\n37,565,12.0\n37,566,12.5\n37,567,13.0\n37,568,13.5\n37,569,14.0\n37,570,14.5\n37,571,15.0\n37,572,15.5\n37,573,16.0\n37,574,16.5\n37,575,17.0\n37,576,16.5\n37,577,16.0\n37,578,15.5\n37,579,15.0\n37,580,14.5\n37,581,14.0\n37,582,13.5\n37,583,13.0\n37,584,12.5\n37,585,12.0\n37,586,11.5\n37,587,11.0\n37,588,11.5\n37,589,12.0\n37,590,12.5\n37,591,13.0\n37,592,13.5\n37,593,14.0\n37,594,14.5\n37,595,15.0\n37,596,15.5\n37,597,16.0\n37,598,16.5\n37,599,17.0\n37,600,17.5\n37,601,17.0\n37,602,16.5\n37,603,16.0\n37,604,15.5\n37,605,15.0\n37,606,14.5\n37,607,14.0\n37,608,13.5\n37,609,13.0\n37,610,12.5\n37,611,12.0\n37,612,11.5\n37,613,12.0\n37,614,12.5\n37,615,13.0\n37,616,13.5\n37,617,14.0\n37,618,14.5\n37,619,15.0\n37,620,15.5\n37,621,16.0\n37,622,16.5\n37,623,17.0\n37,624,17.5\n38,0,7.0\n38,1,6.5\n38,2,6.0\n38,3,5.5\n38,4,5.0\n38,5,4.5\n38,6,4.0\n38,7,3.5\n38,8,3.0\n38,9,2.5\n38,10,2.0\n38,11,1.5\n38,12,1.0\n38,13,0.5\n38,14,1.0\n38,15,1.5\n38,16,2.0\n38,17,2.5\n38,18,3.0\n38,19,3.5\n38,20,4.0\n38,21,4.5\n38,22,5.0\n38,23,5.5\n38,24,6.0\n38,25,6.5\n38,26,6.0\n38,27,5.5\n38,28,5.0\n38,29,4.5\n38,30,4.0\n38,31,3.5\n38,32,3.0\n38,33,2.5\n38,34,2.0\n38,35,1.5\n38,36,1.0\n38,37,0.5\n38,38,0\n38,39,0.5\n38,40,1.0\n38,41,1.5\n38,42,2.0\n38,43,2.5\n38,44,3.0\n38,45,3.5\n38,46,4.0\n38,47,4.5\n38,48,5.0\n38,49,5.5\n38,50,7.0\n38,51,6.5\n38,52,6.0\n38,53,5.5\n38,54,5.0\n38,55,4.5\n38,56,4.0\n38,57,3.5\n38,58,3.0\n38,59,2.5\n38,60,2.0\n38,61,1.5\n38,62,1.0\n38,63,0.5\n38,64,1.0\n38,65,1.5\n38,66,2.0\n38,67,2.5\n38,68,3.0\n38,69,3.5\n38,70,4.0\n38,71,4.5\n38,72,5.0\n38,73,5.5\n38,74,6.0\n38,75,7.5\n38,76,7.0\n38,77,6.5\n38,78,6.0\n38,79,5.5\n38,80,5.0\n38,81,4.5\n38,82,4.0\n38,83,3.5\n38,84,3.0\n38,85,2.5\n38,86,2.0\n38,87,1.5\n38,88,1.0\n38,89,1.5\n38,90,2.0\n38,91,2.5\n38,92,3.0\n38,93,3.5\n38,94,4.0\n38,95,4.5\n38,96,5.0\n38,97,5.5\n38,98,6.0\n38,99,6.5\n38,100,8.0\n38,101,7.5\n38,102,7.0\n38,103,6.5\n38,104,6.0\n38,105,5.5\n38,106,5.0\n38,107,4.5\n38,108,4.0\n38,109,3.5\n38,110,3.0\n38,111,2.5\n38,112,2.0\n38,113,1.5\n38,114,2.0\n38,115,2.5\n38,116,3.0\n38,117,3.5\n38,118,4.0\n38,119,4.5\n38,120,5.0\n38,121,5.5\n38,122,6.0\n38,123,6.5\n38,124,7.0\n38,125,8.5\n38,126,8.0\n38,127,7.5\n38,128,7.0\n38,129,6.5\n38,130,6.0\n38,131,5.5\n38,132,5.0\n38,133,4.5\n38,134,4.0\n38,135,3.5\n38,136,3.0\n38,137,2.5\n38,138,2.0\n38,139,2.5\n38,140,3.0\n38,141,3.5\n38,142,4.0\n38,143,4.5\n38,144,5.0\n38,145,5.5\n38,146,6.0\n38,147,6.5\n38,148,7.0\n38,149,7.5\n38,150,9.0\n38,151,8.5\n38,152,8.0\n38,153,7.5\n38,154,7.0\n38,155,6.5\n38,156,6.0\n38,157,5.5\n38,158,5.0\n38,159,4.5\n38,160,4.0\n38,161,3.5\n38,162,3.0\n38,163,2.5\n38,164,3.0\n38,165,3.5\n38,166,4.0\n38,167,4.5\n38,168,5.0\n38,169,5.5\n38,170,6.0\n38,171,6.5\n38,172,7.0\n38,173,7.5\n38,174,8.0\n38,175,9.5\n38,176,9.0\n38,177,8.5\n38,178,8.0\n38,179,7.5\n38,180,7.0\n38,181,6.5\n38,182,6.0\n38,183,5.5\n38,184,5.0\n38,185,4.5\n38,186,4.0\n38,187,3.5\n38,188,3.0\n38,189,3.5\n38,190,4.0\n38,191,4.5\n38,192,5.0\n38,193,5.5\n38,194,6.0\n38,195,6.5\n38,196,7.0\n38,197,7.5\n38,198,8.0\n38,199,8.5\n38,200,10.0\n38,201,9.5\n38,202,9.0\n38,203,8.5\n38,204,8.0\n38,205,7.5\n38,206,7.0\n38,207,6.5\n38,208,6.0\n38,209,5.5\n38,210,5.0\n38,211,4.5\n38,212,4.0\n38,213,3.5\n38,214,4.0\n38,215,4.5\n38,216,5.0\n38,217,5.5\n38,218,6.0\n38,219,6.5\n38,220,7.0\n38,221,7.5\n38,222,8.0\n38,223,8.5\n38,224,9.0\n38,225,10.5\n38,226,10.0\n38,227,9.5\n38,228,9.0\n38,229,8.5\n38,230,8.0\n38,231,7.5\n38,232,7.0\n38,233,6.5\n38,234,6.0\n38,235,5.5\n38,236,5.0\n38,237,4.5\n38,238,4.0\n38,239,4.5\n38,240,5.0\n38,241,5.5\n38,242,6.0\n38,243,6.5\n38,244,7.0\n38,245,7.5\n38,246,8.0\n38,247,8.5\n38,248,9.0\n38,249,9.5\n38,250,11.0\n38,251,10.5\n38,252,10.0\n38,253,9.5\n38,254,9.0\n38,255,8.5\n38,256,8.0\n38,257,7.5\n38,258,7.0\n38,259,6.5\n38,260,6.0\n38,261,5.5\n38,262,5.0\n38,263,4.5\n38,264,5.0\n38,265,5.5\n38,266,6.0\n38,267,6.5\n38,268,7.0\n38,269,7.5\n38,270,8.0\n38,271,8.5\n38,272,9.0\n38,273,9.5\n38,274,10.0\n38,275,11.5\n38,276,11.0\n38,277,10.5\n38,278,10.0\n38,279,9.5\n38,280,9.0\n38,281,8.5\n38,282,8.0\n38,283,7.5\n38,284,7.0\n38,285,6.5\n38,286,6.0\n38,287,5.5\n38,288,5.0\n38,289,5.5\n38,290,6.0\n38,291,6.5\n38,292,7.0\n38,293,7.5\n38,294,8.0\n38,295,8.5\n38,296,9.0\n38,297,9.5\n38,298,10.0\n38,299,10.5\n38,300,12.0\n38,301,11.5\n38,302,11.0\n38,303,10.5\n38,304,10.0\n38,305,9.5\n38,306,9.0\n38,307,8.5\n38,308,8.0\n38,309,7.5\n38,310,7.0\n38,311,6.5\n38,312,6.0\n38,313,5.5\n38,314,6.0\n38,315,6.5\n38,316,7.0\n38,317,7.5\n38,318,8.0\n38,319,8.5\n38,320,9.0\n38,321,9.5\n38,322,10.0\n38,323,10.5\n38,324,11.0\n38,325,12.5\n38,326,12.0\n38,327,11.5\n38,328,11.0\n38,329,10.5\n38,330,10.0\n38,331,9.5\n38,332,9.0\n38,333,8.5\n38,334,8.0\n38,335,7.5\n38,336,7.0\n38,337,6.5\n38,338,6.0\n38,339,6.5\n38,340,7.0\n38,341,7.5\n38,342,8.0\n38,343,8.5\n38,344,9.0\n38,345,9.5\n38,346,10.0\n38,347,10.5\n38,348,11.0\n38,349,11.5\n38,350,13.0\n38,351,12.5\n38,352,12.0\n38,353,11.5\n38,354,11.0\n38,355,10.5\n38,356,10.0\n38,357,9.5\n38,358,9.0\n38,359,8.5\n38,360,8.0\n38,361,7.5\n38,362,7.0\n38,363,6.5\n38,364,7.0\n38,365,7.5\n38,366,8.0\n38,367,8.5\n38,368,9.0\n38,369,9.5\n38,370,10.0\n38,371,10.5\n38,372,11.0\n38,373,11.5\n38,374,12.0\n38,375,13.5\n38,376,13.0\n38,377,12.5\n38,378,12.0\n38,379,11.5\n38,380,11.0\n38,381,10.5\n38,382,10.0\n38,383,9.5\n38,384,9.0\n38,385,8.5\n38,386,8.0\n38,387,7.5\n38,388,7.0\n38,389,7.5\n38,390,8.0\n38,391,8.5\n38,392,9.0\n38,393,9.5\n38,394,10.0\n38,395,10.5\n38,396,11.0\n38,397,11.5\n38,398,12.0\n38,399,12.5\n38,400,14.0\n38,401,13.5\n38,402,13.0\n38,403,12.5\n38,404,12.0\n38,405,11.5\n38,406,11.0\n38,407,10.5\n38,408,10.0\n38,409,9.5\n38,410,9.0\n38,411,8.5\n38,412,8.0\n38,413,7.5\n38,414,8.0\n38,415,8.5\n38,416,9.0\n38,417,9.5\n38,418,10.0\n38,419,10.5\n38,420,11.0\n38,421,11.5\n38,422,12.0\n38,423,12.5\n38,424,13.0\n38,425,14.5\n38,426,14.0\n38,427,13.5\n38,428,13.0\n38,429,12.5\n38,430,12.0\n38,431,11.5\n38,432,11.0\n38,433,10.5\n38,434,10.0\n38,435,9.5\n38,436,9.0\n38,437,8.5\n38,438,8.0\n38,439,8.5\n38,440,9.0\n38,441,9.5\n38,442,10.0\n38,443,10.5\n38,444,11.0\n38,445,11.5\n38,446,12.0\n38,447,12.5\n38,448,13.0\n38,449,13.5\n38,450,15.0\n38,451,14.5\n38,452,14.0\n38,453,13.5\n38,454,13.0\n38,455,12.5\n38,456,12.0\n38,457,11.5\n38,458,11.0\n38,459,10.5\n38,460,10.0\n38,461,9.5\n38,462,9.0\n38,463,8.5\n38,464,9.0\n38,465,9.5\n38,466,10.0\n38,467,10.5\n38,468,11.0\n38,469,11.5\n38,470,12.0\n38,471,12.5\n38,472,13.0\n38,473,13.5\n38,474,14.0\n38,475,15.5\n38,476,15.0\n38,477,14.5\n38,478,14.0\n38,479,13.5\n38,480,13.0\n38,481,12.5\n38,482,12.0\n38,483,11.5\n38,484,11.0\n38,485,10.5\n38,486,10.0\n38,487,9.5\n38,488,9.0\n38,489,9.5\n38,490,10.0\n38,491,10.5\n38,492,11.0\n38,493,11.5\n38,494,12.0\n38,495,12.5\n38,496,13.0\n38,497,13.5\n38,498,14.0\n38,499,14.5\n38,500,16.0\n38,501,15.5\n38,502,15.0\n38,503,14.5\n38,504,14.0\n38,505,13.5\n38,506,13.0\n38,507,12.5\n38,508,12.0\n38,509,11.5\n38,510,11.0\n38,511,10.5\n38,512,10.0\n38,513,9.5\n38,514,10.0\n38,515,10.5\n38,516,11.0\n38,517,11.5\n38,518,12.0\n38,519,12.5\n38,520,13.0\n38,521,13.5\n38,522,14.0\n38,523,14.5\n38,524,15.0\n38,525,16.5\n38,526,16.0\n38,527,15.5\n38,528,15.0\n38,529,14.5\n38,530,14.0\n38,531,13.5\n38,532,13.0\n38,533,12.5\n38,534,12.0\n38,535,11.5\n38,536,11.0\n38,537,10.5\n38,538,10.0\n38,539,10.5\n38,540,11.0\n38,541,11.5\n38,542,12.0\n38,543,12.5\n38,544,13.0\n38,545,13.5\n38,546,14.0\n38,547,14.5\n38,548,15.0\n38,549,15.5\n38,550,17.0\n38,551,16.5\n38,552,16.0\n38,553,15.5\n38,554,15.0\n38,555,14.5\n38,556,14.0\n38,557,13.5\n38,558,13.0\n38,559,12.5\n38,560,12.0\n38,561,11.5\n38,562,11.0\n38,563,10.5\n38,564,11.0\n38,565,11.5\n38,566,12.0\n38,567,12.5\n38,568,13.0\n38,569,13.5\n38,570,14.0\n38,571,14.5\n38,572,15.0\n38,573,15.5\n38,574,16.0\n38,575,17.5\n38,576,17.0\n38,577,16.5\n38,578,16.0\n38,579,15.5\n38,580,15.0\n38,581,14.5\n38,582,14.0\n38,583,13.5\n38,584,13.0\n38,585,12.5\n38,586,12.0\n38,587,11.5\n38,588,11.0\n38,589,11.5\n38,590,12.0\n38,591,12.5\n38,592,13.0\n38,593,13.5\n38,594,14.0\n38,595,14.5\n38,596,15.0\n38,597,15.5\n38,598,16.0\n38,599,16.5\n38,600,18.0\n38,601,17.5\n38,602,17.0\n38,603,16.5\n38,604,16.0\n38,605,15.5\n38,606,15.0\n38,607,14.5\n38,608,14.0\n38,609,13.5\n38,610,13.0\n38,611,12.5\n38,612,12.0\n38,613,11.5\n38,614,12.0\n38,615,12.5\n38,616,13.0\n38,617,13.5\n38,618,14.0\n38,619,14.5\n38,620,15.0\n38,621,15.5\n38,622,16.0\n38,623,16.5\n38,624,17.0\n39,0,7.5\n39,1,7.0\n39,2,6.5\n39,3,6.0\n39,4,5.5\n39,5,5.0\n39,6,4.5\n39,7,4.0\n39,8,3.5\n39,9,3.0\n39,10,2.5\n39,11,2.0\n39,12,1.5\n39,13,1.0\n39,14,0.5\n39,15,1.0\n39,16,1.5\n39,17,2.0\n39,18,2.5\n39,19,3.0\n39,20,3.5\n39,21,4.0\n39,22,4.5\n39,23,5.0\n39,24,5.5\n39,25,7.0\n39,26,6.5\n39,27,6.0\n39,28,5.5\n39,29,5.0\n39,30,4.5\n39,31,4.0\n39,32,3.5\n39,33,3.0\n39,34,2.5\n39,35,2.0\n39,36,1.5\n39,37,1.0\n39,38,0.5\n39,39,0\n39,40,0.5\n39,41,1.0\n39,42,1.5\n39,43,2.0\n39,44,2.5\n39,45,3.0\n39,46,3.5\n39,47,4.0\n39,48,4.5\n39,49,5.0\n39,50,7.5\n39,51,7.0\n39,52,6.5\n39,53,6.0\n39,54,5.5\n39,55,5.0\n39,56,4.5\n39,57,4.0\n39,58,3.5\n39,59,3.0\n39,60,2.5\n39,61,2.0\n39,62,1.5\n39,63,1.0\n39,64,0.5\n39,65,1.0\n39,66,1.5\n39,67,2.0\n39,68,2.5\n39,69,3.0\n39,70,3.5\n39,71,4.0\n39,72,4.5\n39,73,5.0\n39,74,5.5\n39,75,8.0\n39,76,7.5\n39,77,7.0\n39,78,6.5\n39,79,6.0\n39,80,5.5\n39,81,5.0\n39,82,4.5\n39,83,4.0\n39,84,3.5\n39,85,3.0\n39,86,2.5\n39,87,2.0\n39,88,1.5\n39,89,1.0\n39,90,1.5\n39,91,2.0\n39,92,2.5\n39,93,3.0\n39,94,3.5\n39,95,4.0\n39,96,4.5\n39,97,5.0\n39,98,5.5\n39,99,6.0\n39,100,8.5\n39,101,8.0\n39,102,7.5\n39,103,7.0\n39,104,6.5\n39,105,6.0\n39,106,5.5\n39,107,5.0\n39,108,4.5\n39,109,4.0\n39,110,3.5\n39,111,3.0\n39,112,2.5\n39,113,2.0\n39,114,1.5\n39,115,2.0\n39,116,2.5\n39,117,3.0\n39,118,3.5\n39,119,4.0\n39,120,4.5\n39,121,5.0\n39,122,5.5\n39,123,6.0\n39,124,6.5\n39,125,9.0\n39,126,8.5\n39,127,8.0\n39,128,7.5\n39,129,7.0\n39,130,6.5\n39,131,6.0\n39,132,5.5\n39,133,5.0\n39,134,4.5\n39,135,4.0\n39,136,3.5\n39,137,3.0\n39,138,2.5\n39,139,2.0\n39,140,2.5\n39,141,3.0\n39,142,3.5\n39,143,4.0\n39,144,4.5\n39,145,5.0\n39,146,5.5\n39,147,6.0\n39,148,6.5\n39,149,7.0\n39,150,9.5\n39,151,9.0\n39,152,8.5\n39,153,8.0\n39,154,7.5\n39,155,7.0\n39,156,6.5\n39,157,6.0\n39,158,5.5\n39,159,5.0\n39,160,4.5\n39,161,4.0\n39,162,3.5\n39,163,3.0\n39,164,2.5\n39,165,3.0\n39,166,3.5\n39,167,4.0\n39,168,4.5\n39,169,5.0\n39,170,5.5\n39,171,6.0\n39,172,6.5\n39,173,7.0\n39,174,7.5\n39,175,10.0\n39,176,9.5\n39,177,9.0\n39,178,8.5\n39,179,8.0\n39,180,7.5\n39,181,7.0\n39,182,6.5\n39,183,6.0\n39,184,5.5\n39,185,5.0\n39,186,4.5\n39,187,4.0\n39,188,3.5\n39,189,3.0\n39,190,3.5\n39,191,4.0\n39,192,4.5\n39,193,5.0\n39,194,5.5\n39,195,6.0\n39,196,6.5\n39,197,7.0\n39,198,7.5\n39,199,8.0\n39,200,10.5\n39,201,10.0\n39,202,9.5\n39,203,9.0\n39,204,8.5\n39,205,8.0\n39,206,7.5\n39,207,7.0\n39,208,6.5\n39,209,6.0\n39,210,5.5\n39,211,5.0\n39,212,4.5\n39,213,4.0\n39,214,3.5\n39,215,4.0\n39,216,4.5\n39,217,5.0\n39,218,5.5\n39,219,6.0\n39,220,6.5\n39,221,7.0\n39,222,7.5\n39,223,8.0\n39,224,8.5\n39,225,11.0\n39,226,10.5\n39,227,10.0\n39,228,9.5\n39,229,9.0\n39,230,8.5\n39,231,8.0\n39,232,7.5\n39,233,7.0\n39,234,6.5\n39,235,6.0\n39,236,5.5\n39,237,5.0\n39,238,4.5\n39,239,4.0\n39,240,4.5\n39,241,5.0\n39,242,5.5\n39,243,6.0\n39,244,6.5\n39,245,7.0\n39,246,7.5\n39,247,8.0\n39,248,8.5\n39,249,9.0\n39,250,11.5\n39,251,11.0\n39,252,10.5\n39,253,10.0\n39,254,9.5\n39,255,9.0\n39,256,8.5\n39,257,8.0\n39,258,7.5\n39,259,7.0\n39,260,6.5\n39,261,6.0\n39,262,5.5\n39,263,5.0\n39,264,4.5\n39,265,5.0\n39,266,5.5\n39,267,6.0\n39,268,6.5\n39,269,7.0\n39,270,7.5\n39,271,8.0\n39,272,8.5\n39,273,9.0\n39,274,9.5\n39,275,12.0\n39,276,11.5\n39,277,11.0\n39,278,10.5\n39,279,10.0\n39,280,9.5\n39,281,9.0\n39,282,8.5\n39,283,8.0\n39,284,7.5\n39,285,7.0\n39,286,6.5\n39,287,6.0\n39,288,5.5\n39,289,5.0\n39,290,5.5\n39,291,6.0\n39,292,6.5\n39,293,7.0\n39,294,7.5\n39,295,8.0\n39,296,8.5\n39,297,9.0\n39,298,9.5\n39,299,10.0\n39,300,12.5\n39,301,12.0\n39,302,11.5\n39,303,11.0\n39,304,10.5\n39,305,10.0\n39,306,9.5\n39,307,9.0\n39,308,8.5\n39,309,8.0\n39,310,7.5\n39,311,7.0\n39,312,6.5\n39,313,6.0\n39,314,5.5\n39,315,6.0\n39,316,6.5\n39,317,7.0\n39,318,7.5\n39,319,8.0\n39,320,8.5\n39,321,9.0\n39,322,9.5\n39,323,10.0\n39,324,10.5\n39,325,13.0\n39,326,12.5\n39,327,12.0\n39,328,11.5\n39,329,11.0\n39,330,10.5\n39,331,10.0\n39,332,9.5\n39,333,9.0\n39,334,8.5\n39,335,8.0\n39,336,7.5\n39,337,7.0\n39,338,6.5\n39,339,6.0\n39,340,6.5\n39,341,7.0\n39,342,7.5\n39,343,8.0\n39,344,8.5\n39,345,9.0\n39,346,9.5\n39,347,10.0\n39,348,10.5\n39,349,11.0\n39,350,13.5\n39,351,13.0\n39,352,12.5\n39,353,12.0\n39,354,11.5\n39,355,11.0\n39,356,10.5\n39,357,10.0\n39,358,9.5\n39,359,9.0\n39,360,8.5\n39,361,8.0\n39,362,7.5\n39,363,7.0\n39,364,6.5\n39,365,7.0\n39,366,7.5\n39,367,8.0\n39,368,8.5\n39,369,9.0\n39,370,9.5\n39,371,10.0\n39,372,10.5\n39,373,11.0\n39,374,11.5\n39,375,14.0\n39,376,13.5\n39,377,13.0\n39,378,12.5\n39,379,12.0\n39,380,11.5\n39,381,11.0\n39,382,10.5\n39,383,10.0\n39,384,9.5\n39,385,9.0\n39,386,8.5\n39,387,8.0\n39,388,7.5\n39,389,7.0\n39,390,7.5\n39,391,8.0\n39,392,8.5\n39,393,9.0\n39,394,9.5\n39,395,10.0\n39,396,10.5\n39,397,11.0\n39,398,11.5\n39,399,12.0\n39,400,14.5\n39,401,14.0\n39,402,13.5\n39,403,13.0\n39,404,12.5\n39,405,12.0\n39,406,11.5\n39,407,11.0\n39,408,10.5\n39,409,10.0\n39,410,9.5\n39,411,9.0\n39,412,8.5\n39,413,8.0\n39,414,7.5\n39,415,8.0\n39,416,8.5\n39,417,9.0\n39,418,9.5\n39,419,10.0\n39,420,10.5\n39,421,11.0\n39,422,11.5\n39,423,12.0\n39,424,12.5\n39,425,15.0\n39,426,14.5\n39,427,14.0\n39,428,13.5\n39,429,13.0\n39,430,12.5\n39,431,12.0\n39,432,11.5\n39,433,11.0\n39,434,10.5\n39,435,10.0\n39,436,9.5\n39,437,9.0\n39,438,8.5\n39,439,8.0\n39,440,8.5\n39,441,9.0\n39,442,9.5\n39,443,10.0\n39,444,10.5\n39,445,11.0\n39,446,11.5\n39,447,12.0\n39,448,12.5\n39,449,13.0\n39,450,15.5\n39,451,15.0\n39,452,14.5\n39,453,14.0\n39,454,13.5\n39,455,13.0\n39,456,12.5\n39,457,12.0\n39,458,11.5\n39,459,11.0\n39,460,10.5\n39,461,10.0\n39,462,9.5\n39,463,9.0\n39,464,8.5\n39,465,9.0\n39,466,9.5\n39,467,10.0\n39,468,10.5\n39,469,11.0\n39,470,11.5\n39,471,12.0\n39,472,12.5\n39,473,13.0\n39,474,13.5\n39,475,16.0\n39,476,15.5\n39,477,15.0\n39,478,14.5\n39,479,14.0\n39,480,13.5\n39,481,13.0\n39,482,12.5\n39,483,12.0\n39,484,11.5\n39,485,11.0\n39,486,10.5\n39,487,10.0\n39,488,9.5\n39,489,9.0\n39,490,9.5\n39,491,10.0\n39,492,10.5\n39,493,11.0\n39,494,11.5\n39,495,12.0\n39,496,12.5\n39,497,13.0\n39,498,13.5\n39,499,14.0\n39,500,16.5\n39,501,16.0\n39,502,15.5\n39,503,15.0\n39,504,14.5\n39,505,14.0\n39,506,13.5\n39,507,13.0\n39,508,12.5\n39,509,12.0\n39,510,11.5\n39,511,11.0\n39,512,10.5\n39,513,10.0\n39,514,9.5\n39,515,10.0\n39,516,10.5\n39,517,11.0\n39,518,11.5\n39,519,12.0\n39,520,12.5\n39,521,13.0\n39,522,13.5\n39,523,14.0\n39,524,14.5\n39,525,17.0\n39,526,16.5\n39,527,16.0\n39,528,15.5\n39,529,15.0\n39,530,14.5\n39,531,14.0\n39,532,13.5\n39,533,13.0\n39,534,12.5\n39,535,12.0\n39,536,11.5\n39,537,11.0\n39,538,10.5\n39,539,10.0\n39,540,10.5\n39,541,11.0\n39,542,11.5\n39,543,12.0\n39,544,12.5\n39,545,13.0\n39,546,13.5\n39,547,14.0\n39,548,14.5\n39,549,15.0\n39,550,17.5\n39,551,17.0\n39,552,16.5\n39,553,16.0\n39,554,15.5\n39,555,15.0\n39,556,14.5\n39,557,14.0\n39,558,13.5\n39,559,13.0\n39,560,12.5\n39,561,12.0\n39,562,11.5\n39,563,11.0\n39,564,10.5\n39,565,11.0\n39,566,11.5\n39,567,12.0\n39,568,12.5\n39,569,13.0\n39,570,13.5\n39,571,14.0\n39,572,14.5\n39,573,15.0\n39,574,15.5\n39,575,18.0\n39,576,17.5\n39,577,17.0\n39,578,16.5\n39,579,16.0\n39,580,15.5\n39,581,15.0\n39,582,14.5\n39,583,14.0\n39,584,13.5\n39,585,13.0\n39,586,12.5\n39,587,12.0\n39,588,11.5\n39,589,11.0\n39,590,11.5\n39,591,12.0\n39,592,12.5\n39,593,13.0\n39,594,13.5\n39,595,14.0\n39,596,14.5\n39,597,15.0\n39,598,15.5\n39,599,16.0\n39,600,18.5\n39,601,18.0\n39,602,17.5\n39,603,17.0\n39,604,16.5\n39,605,16.0\n39,606,15.5\n39,607,15.0\n39,608,14.5\n39,609,14.0\n39,610,13.5\n39,611,13.0\n39,612,12.5\n39,613,12.0\n39,614,11.5\n39,615,12.0\n39,616,12.5\n39,617,13.0\n39,618,13.5\n39,619,14.0\n39,620,14.5\n39,621,15.0\n39,622,15.5\n39,623,16.0\n39,624,16.5\n40,0,8.0\n40,1,7.5\n40,2,7.0\n40,3,6.5\n40,4,6.0\n40,5,5.5\n40,6,5.0\n40,7,4.5\n40,8,4.0\n40,9,3.5\n40,10,3.0\n40,11,2.5\n40,12,2.0\n40,13,1.5\n40,14,1.0\n40,15,0.5\n40,16,1.0\n40,17,1.5\n40,18,2.0\n40,19,2.5\n40,20,3.0\n40,21,3.5\n40,22,4.0\n40,23,4.5\n40,24,5.0\n40,25,7.5\n40,26,7.0\n40,27,6.5\n40,28,6.0\n40,29,5.5\n40,30,5.0\n40,31,4.5\n40,32,4.0\n40,33,3.5\n40,34,3.0\n40,35,2.5\n40,36,2.0\n40,37,1.5\n40,38,1.0\n40,39,0.5\n40,40,0\n40,41,0.5\n40,42,1.0\n40,43,1.5\n40,44,2.0\n40,45,2.5\n40,46,3.0\n40,47,3.5\n40,48,4.0\n40,49,4.5\n40,50,8.0\n40,51,7.5\n40,52,7.0\n40,53,6.5\n40,54,6.0\n40,55,5.5\n40,56,5.0\n40,57,4.5\n40,58,4.0\n40,59,3.5\n40,60,3.0\n40,61,2.5\n40,62,2.0\n40,63,1.5\n40,64,1.0\n40,65,0.5\n40,66,1.0\n40,67,1.5\n40,68,2.0\n40,69,2.5\n40,70,3.0\n40,71,3.5\n40,72,4.0\n40,73,4.5\n40,74,5.0\n40,75,8.5\n40,76,8.0\n40,77,7.5\n40,78,7.0\n40,79,6.5\n40,80,6.0\n40,81,5.5\n40,82,5.0\n40,83,4.5\n40,84,4.0\n40,85,3.5\n40,86,3.0\n40,87,2.5\n40,88,2.0\n40,89,1.5\n40,90,1.0\n40,91,1.5\n40,92,2.0\n40,93,2.5\n40,94,3.0\n40,95,3.5\n40,96,4.0\n40,97,4.5\n40,98,5.0\n40,99,5.5\n40,100,9.0\n40,101,8.5\n40,102,8.0\n40,103,7.5\n40,104,7.0\n40,105,6.5\n40,106,6.0\n40,107,5.5\n40,108,5.0\n40,109,4.5\n40,110,4.0\n40,111,3.5\n40,112,3.0\n40,113,2.5\n40,114,2.0\n40,115,1.5\n40,116,2.0\n40,117,2.5\n40,118,3.0\n40,119,3.5\n40,120,4.0\n40,121,4.5\n40,122,5.0\n40,123,5.5\n40,124,6.0\n40,125,9.5\n40,126,9.0\n40,127,8.5\n40,128,8.0\n40,129,7.5\n40,130,7.0\n40,131,6.5\n40,132,6.0\n40,133,5.5\n40,134,5.0\n40,135,4.5\n40,136,4.0\n40,137,3.5\n40,138,3.0\n40,139,2.5\n40,140,2.0\n40,141,2.5\n40,142,3.0\n40,143,3.5\n40,144,4.0\n40,145,4.5\n40,146,5.0\n40,147,5.5\n40,148,6.0\n40,149,6.5\n40,150,10.0\n40,151,9.5\n40,152,9.0\n40,153,8.5\n40,154,8.0\n40,155,7.5\n40,156,7.0\n40,157,6.5\n40,158,6.0\n40,159,5.5\n40,160,5.0\n40,161,4.5\n40,162,4.0\n40,163,3.5\n40,164,3.0\n40,165,2.5\n40,166,3.0\n40,167,3.5\n40,168,4.0\n40,169,4.5\n40,170,5.0\n40,171,5.5\n40,172,6.0\n40,173,6.5\n40,174,7.0\n40,175,10.5\n40,176,10.0\n40,177,9.5\n40,178,9.0\n40,179,8.5\n40,180,8.0\n40,181,7.5\n40,182,7.0\n40,183,6.5\n40,184,6.0\n40,185,5.5\n40,186,5.0\n40,187,4.5\n40,188,4.0\n40,189,3.5\n40,190,3.0\n40,191,3.5\n40,192,4.0\n40,193,4.5\n40,194,5.0\n40,195,5.5\n40,196,6.0\n40,197,6.5\n40,198,7.0\n40,199,7.5\n40,200,11.0\n40,201,10.5\n40,202,10.0\n40,203,9.5\n40,204,9.0\n40,205,8.5\n40,206,8.0\n40,207,7.5\n40,208,7.0\n40,209,6.5\n40,210,6.0\n40,211,5.5\n40,212,5.0\n40,213,4.5\n40,214,4.0\n40,215,3.5\n40,216,4.0\n40,217,4.5\n40,218,5.0\n40,219,5.5\n40,220,6.0\n40,221,6.5\n40,222,7.0\n40,223,7.5\n40,224,8.0\n40,225,11.5\n40,226,11.0\n40,227,10.5\n40,228,10.0\n40,229,9.5\n40,230,9.0\n40,231,8.5\n40,232,8.0\n40,233,7.5\n40,234,7.0\n40,235,6.5\n40,236,6.0\n40,237,5.5\n40,238,5.0\n40,239,4.5\n40,240,4.0\n40,241,4.5\n40,242,5.0\n40,243,5.5\n40,244,6.0\n40,245,6.5\n40,246,7.0\n40,247,7.5\n40,248,8.0\n40,249,8.5\n40,250,12.0\n40,251,11.5\n40,252,11.0\n40,253,10.5\n40,254,10.0\n40,255,9.5\n40,256,9.0\n40,257,8.5\n40,258,8.0\n40,259,7.5\n40,260,7.0\n40,261,6.5\n40,262,6.0\n40,263,5.5\n40,264,5.0\n40,265,4.5\n40,266,5.0\n40,267,5.5\n40,268,6.0\n40,269,6.5\n40,270,7.0\n40,271,7.5\n40,272,8.0\n40,273,8.5\n40,274,9.0\n40,275,12.5\n40,276,12.0\n40,277,11.5\n40,278,11.0\n40,279,10.5\n40,280,10.0\n40,281,9.5\n40,282,9.0\n40,283,8.5\n40,284,8.0\n40,285,7.5\n40,286,7.0\n40,287,6.5\n40,288,6.0\n40,289,5.5\n40,290,5.0\n40,291,5.5\n40,292,6.0\n40,293,6.5\n40,294,7.0\n40,295,7.5\n40,296,8.0\n40,297,8.5\n40,298,9.0\n40,299,9.5\n40,300,13.0\n40,301,12.5\n40,302,12.0\n40,303,11.5\n40,304,11.0\n40,305,10.5\n40,306,10.0\n40,307,9.5\n40,308,9.0\n40,309,8.5\n40,310,8.0\n40,311,7.5\n40,312,7.0\n40,313,6.5\n40,314,6.0\n40,315,5.5\n40,316,6.0\n40,317,6.5\n40,318,7.0\n40,319,7.5\n40,320,8.0\n40,321,8.5\n40,322,9.0\n40,323,9.5\n40,324,10.0\n40,325,13.5\n40,326,13.0\n40,327,12.5\n40,328,12.0\n40,329,11.5\n40,330,11.0\n40,331,10.5\n40,332,10.0\n40,333,9.5\n40,334,9.0\n40,335,8.5\n40,336,8.0\n40,337,7.5\n40,338,7.0\n40,339,6.5\n40,340,6.0\n40,341,6.5\n40,342,7.0\n40,343,7.5\n40,344,8.0\n40,345,8.5\n40,346,9.0\n40,347,9.5\n40,348,10.0\n40,349,10.5\n40,350,14.0\n40,351,13.5\n40,352,13.0\n40,353,12.5\n40,354,12.0\n40,355,11.5\n40,356,11.0\n40,357,10.5\n40,358,10.0\n40,359,9.5\n40,360,9.0\n40,361,8.5\n40,362,8.0\n40,363,7.5\n40,364,7.0\n40,365,6.5\n40,366,7.0\n40,367,7.5\n40,368,8.0\n40,369,8.5\n40,370,9.0\n40,371,9.5\n40,372,10.0\n40,373,10.5\n40,374,11.0\n40,375,14.5\n40,376,14.0\n40,377,13.5\n40,378,13.0\n40,379,12.5\n40,380,12.0\n40,381,11.5\n40,382,11.0\n40,383,10.5\n40,384,10.0\n40,385,9.5\n40,386,9.0\n40,387,8.5\n40,388,8.0\n40,389,7.5\n40,390,7.0\n40,391,7.5\n40,392,8.0\n40,393,8.5\n40,394,9.0\n40,395,9.5\n40,396,10.0\n40,397,10.5\n40,398,11.0\n40,399,11.5\n40,400,15.0\n40,401,14.5\n40,402,14.0\n40,403,13.5\n40,404,13.0\n40,405,12.5\n40,406,12.0\n40,407,11.5\n40,408,11.0\n40,409,10.5\n40,410,10.0\n40,411,9.5\n40,412,9.0\n40,413,8.5\n40,414,8.0\n40,415,7.5\n40,416,8.0\n40,417,8.5\n40,418,9.0\n40,419,9.5\n40,420,10.0\n40,421,10.5\n40,422,11.0\n40,423,11.5\n40,424,12.0\n40,425,15.5\n40,426,15.0\n40,427,14.5\n40,428,14.0\n40,429,13.5\n40,430,13.0\n40,431,12.5\n40,432,12.0\n40,433,11.5\n40,434,11.0\n40,435,10.5\n40,436,10.0\n40,437,9.5\n40,438,9.0\n40,439,8.5\n40,440,8.0\n40,441,8.5\n40,442,9.0\n40,443,9.5\n40,444,10.0\n40,445,10.5\n40,446,11.0\n40,447,11.5\n40,448,12.0\n40,449,12.5\n40,450,16.0\n40,451,15.5\n40,452,15.0\n40,453,14.5\n40,454,14.0\n40,455,13.5\n40,456,13.0\n40,457,12.5\n40,458,12.0\n40,459,11.5\n40,460,11.0\n40,461,10.5\n40,462,10.0\n40,463,9.5\n40,464,9.0\n40,465,8.5\n40,466,9.0\n40,467,9.5\n40,468,10.0\n40,469,10.5\n40,470,11.0\n40,471,11.5\n40,472,12.0\n40,473,12.5\n40,474,13.0\n40,475,16.5\n40,476,16.0\n40,477,15.5\n40,478,15.0\n40,479,14.5\n40,480,14.0\n40,481,13.5\n40,482,13.0\n40,483,12.5\n40,484,12.0\n40,485,11.5\n40,486,11.0\n40,487,10.5\n40,488,10.0\n40,489,9.5\n40,490,9.0\n40,491,9.5\n40,492,10.0\n40,493,10.5\n40,494,11.0\n40,495,11.5\n40,496,12.0\n40,497,12.5\n40,498,13.0\n40,499,13.5\n40,500,17.0\n40,501,16.5\n40,502,16.0\n40,503,15.5\n40,504,15.0\n40,505,14.5\n40,506,14.0\n40,507,13.5\n40,508,13.0\n40,509,12.5\n40,510,12.0\n40,511,11.5\n40,512,11.0\n40,513,10.5\n40,514,10.0\n40,515,9.5\n40,516,10.0\n40,517,10.5\n40,518,11.0\n40,519,11.5\n40,520,12.0\n40,521,12.5\n40,522,13.0\n40,523,13.5\n40,524,14.0\n40,525,17.5\n40,526,17.0\n40,527,16.5\n40,528,16.0\n40,529,15.5\n40,530,15.0\n40,531,14.5\n40,532,14.0\n40,533,13.5\n40,534,13.0\n40,535,12.5\n40,536,12.0\n40,537,11.5\n40,538,11.0\n40,539,10.5\n40,540,10.0\n40,541,10.5\n40,542,11.0\n40,543,11.5\n40,544,12.0\n40,545,12.5\n40,546,13.0\n40,547,13.5\n40,548,14.0\n40,549,14.5\n40,550,18.0\n40,551,17.5\n40,552,17.0\n40,553,16.5\n40,554,16.0\n40,555,15.5\n40,556,15.0\n40,557,14.5\n40,558,14.0\n40,559,13.5\n40,560,13.0\n40,561,12.5\n40,562,12.0\n40,563,11.5\n40,564,11.0\n40,565,10.5\n40,566,11.0\n40,567,11.5\n40,568,12.0\n40,569,12.5\n40,570,13.0\n40,571,13.5\n40,572,14.0\n40,573,14.5\n40,574,15.0\n40,575,18.5\n40,576,18.0\n40,577,17.5\n40,578,17.0\n40,579,16.5\n40,580,16.0\n40,581,15.5\n40,582,15.0\n40,583,14.5\n40,584,14.0\n40,585,13.5\n40,586,13.0\n40,587,12.5\n40,588,12.0\n40,589,11.5\n40,590,11.0\n40,591,11.5\n40,592,12.0\n40,593,12.5\n40,594,13.0\n40,595,13.5\n40,596,14.0\n40,597,14.5\n40,598,15.0\n40,599,15.5\n40,600,19.0\n40,601,18.5\n40,602,18.0\n40,603,17.5\n40,604,17.0\n40,605,16.5\n40,606,16.0\n40,607,15.5\n40,608,15.0\n40,609,14.5\n40,610,14.0\n40,611,13.5\n40,612,13.0\n40,613,12.5\n40,614,12.0\n40,615,11.5\n40,616,12.0\n40,617,12.5\n40,618,13.0\n40,619,13.5\n40,620,14.0\n40,621,14.5\n40,622,15.0\n40,623,15.5\n40,624,16.0\n41,0,8.5\n41,1,8.0\n41,2,7.5\n41,3,7.0\n41,4,6.5\n41,5,6.0\n41,6,5.5\n41,7,5.0\n41,8,4.5\n41,9,4.0\n41,10,3.5\n41,11,3.0\n41,12,2.5\n41,13,2.0\n41,14,1.5\n41,15,1.0\n41,16,0.5\n41,17,1.0\n41,18,1.5\n41,19,2.0\n41,20,2.5\n41,21,3.0\n41,22,3.5\n41,23,4.0\n41,24,4.5\n41,25,8.0\n41,26,7.5\n41,27,7.0\n41,28,6.5\n41,29,6.0\n41,30,5.5\n41,31,5.0\n41,32,4.5\n41,33,4.0\n41,34,3.5\n41,35,3.0\n41,36,2.5\n41,37,2.0\n41,38,1.5\n41,39,1.0\n41,40,0.5\n41,41,0\n41,42,0.5\n41,43,1.0\n41,44,1.5\n41,45,2.0\n41,46,2.5\n41,47,3.0\n41,48,3.5\n41,49,4.0\n41,50,8.5\n41,51,8.0\n41,52,7.5\n41,53,7.0\n41,54,6.5\n41,55,6.0\n41,56,5.5\n41,57,5.0\n41,58,4.5\n41,59,4.0\n41,60,3.5\n41,61,3.0\n41,62,2.5\n41,63,2.0\n41,64,1.5\n41,65,1.0\n41,66,0.5\n41,67,1.0\n41,68,1.5\n41,69,2.0\n41,70,2.5\n41,71,3.0\n41,72,3.5\n41,73,4.0\n41,74,4.5\n41,75,9.0\n41,76,8.5\n41,77,8.0\n41,78,7.5\n41,79,7.0\n41,80,6.5\n41,81,6.0\n41,82,5.5\n41,83,5.0\n41,84,4.5\n41,85,4.0\n41,86,3.5\n41,87,3.0\n41,88,2.5\n41,89,2.0\n41,90,1.5\n41,91,1.0\n41,92,1.5\n41,93,2.0\n41,94,2.5\n41,95,3.0\n41,96,3.5\n41,97,4.0\n41,98,4.5\n41,99,5.0\n41,100,9.5\n41,101,9.0\n41,102,8.5\n41,103,8.0\n41,104,7.5\n41,105,7.0\n41,106,6.5\n41,107,6.0\n41,108,5.5\n41,109,5.0\n41,110,4.5\n41,111,4.0\n41,112,3.5\n41,113,3.0\n41,114,2.5\n41,115,2.0\n41,116,1.5\n41,117,2.0\n41,118,2.5\n41,119,3.0\n41,120,3.5\n41,121,4.0\n41,122,4.5\n41,123,5.0\n41,124,5.5\n41,125,10.0\n41,126,9.5\n41,127,9.0\n41,128,8.5\n41,129,8.0\n41,130,7.5\n41,131,7.0\n41,132,6.5\n41,133,6.0\n41,134,5.5\n41,135,5.0\n41,136,4.5\n41,137,4.0\n41,138,3.5\n41,139,3.0\n41,140,2.5\n41,141,2.0\n41,142,2.5\n41,143,3.0\n41,144,3.5\n41,145,4.0\n41,146,4.5\n41,147,5.0\n41,148,5.5\n41,149,6.0\n41,150,10.5\n41,151,10.0\n41,152,9.5\n41,153,9.0\n41,154,8.5\n41,155,8.0\n41,156,7.5\n41,157,7.0\n41,158,6.5\n41,159,6.0\n41,160,5.5\n41,161,5.0\n41,162,4.5\n41,163,4.0\n41,164,3.5\n41,165,3.0\n41,166,2.5\n41,167,3.0\n41,168,3.5\n41,169,4.0\n41,170,4.5\n41,171,5.0\n41,172,5.5\n41,173,6.0\n41,174,6.5\n41,175,11.0\n41,176,10.5\n41,177,10.0\n41,178,9.5\n41,179,9.0\n41,180,8.5\n41,181,8.0\n41,182,7.5\n41,183,7.0\n41,184,6.5\n41,185,6.0\n41,186,5.5\n41,187,5.0\n41,188,4.5\n41,189,4.0\n41,190,3.5\n41,191,3.0\n41,192,3.5\n41,193,4.0\n41,194,4.5\n41,195,5.0\n41,196,5.5\n41,197,6.0\n41,198,6.5\n41,199,7.0\n41,200,11.5\n41,201,11.0\n41,202,10.5\n41,203,10.0\n41,204,9.5\n41,205,9.0\n41,206,8.5\n41,207,8.0\n41,208,7.5\n41,209,7.0\n41,210,6.5\n41,211,6.0\n41,212,5.5\n41,213,5.0\n41,214,4.5\n41,215,4.0\n41,216,3.5\n41,217,4.0\n41,218,4.5\n41,219,5.0\n41,220,5.5\n41,221,6.0\n41,222,6.5\n41,223,7.0\n41,224,7.5\n41,225,12.0\n41,226,11.5\n41,227,11.0\n41,228,10.5\n41,229,10.0\n41,230,9.5\n41,231,9.0\n41,232,8.5\n41,233,8.0\n41,234,7.5\n41,235,7.0\n41,236,6.5\n41,237,6.0\n41,238,5.5\n41,239,5.0\n41,240,4.5\n41,241,4.0\n41,242,4.5\n41,243,5.0\n41,244,5.5\n41,245,6.0\n41,246,6.5\n41,247,7.0\n41,248,7.5\n41,249,8.0\n41,250,12.5\n41,251,12.0\n41,252,11.5\n41,253,11.0\n41,254,10.5\n41,255,10.0\n41,256,9.5\n41,257,9.0\n41,258,8.5\n41,259,8.0\n41,260,7.5\n41,261,7.0\n41,262,6.5\n41,263,6.0\n41,264,5.5\n41,265,5.0\n41,266,4.5\n41,267,5.0\n41,268,5.5\n41,269,6.0\n41,270,6.5\n41,271,7.0\n41,272,7.5\n41,273,8.0\n41,274,8.5\n41,275,13.0\n41,276,12.5\n41,277,12.0\n41,278,11.5\n41,279,11.0\n41,280,10.5\n41,281,10.0\n41,282,9.5\n41,283,9.0\n41,284,8.5\n41,285,8.0\n41,286,7.5\n41,287,7.0\n41,288,6.5\n41,289,6.0\n41,290,5.5\n41,291,5.0\n41,292,5.5\n41,293,6.0\n41,294,6.5\n41,295,7.0\n41,296,7.5\n41,297,8.0\n41,298,8.5\n41,299,9.0\n41,300,13.5\n41,301,13.0\n41,302,12.5\n41,303,12.0\n41,304,11.5\n41,305,11.0\n41,306,10.5\n41,307,10.0\n41,308,9.5\n41,309,9.0\n41,310,8.5\n41,311,8.0\n41,312,7.5\n41,313,7.0\n41,314,6.5\n41,315,6.0\n41,316,5.5\n41,317,6.0\n41,318,6.5\n41,319,7.0\n41,320,7.5\n41,321,8.0\n41,322,8.5\n41,323,9.0\n41,324,9.5\n41,325,14.0\n41,326,13.5\n41,327,13.0\n41,328,12.5\n41,329,12.0\n41,330,11.5\n41,331,11.0\n41,332,10.5\n41,333,10.0\n41,334,9.5\n41,335,9.0\n41,336,8.5\n41,337,8.0\n41,338,7.5\n41,339,7.0\n41,340,6.5\n41,341,6.0\n41,342,6.5\n41,343,7.0\n41,344,7.5\n41,345,8.0\n41,346,8.5\n41,347,9.0\n41,348,9.5\n41,349,10.0\n41,350,14.5\n41,351,14.0\n41,352,13.5\n41,353,13.0\n41,354,12.5\n41,355,12.0\n41,356,11.5\n41,357,11.0\n41,358,10.5\n41,359,10.0\n41,360,9.5\n41,361,9.0\n41,362,8.5\n41,363,8.0\n41,364,7.5\n41,365,7.0\n41,366,6.5\n41,367,7.0\n41,368,7.5\n41,369,8.0\n41,370,8.5\n41,371,9.0\n41,372,9.5\n41,373,10.0\n41,374,10.5\n41,375,15.0\n41,376,14.5\n41,377,14.0\n41,378,13.5\n41,379,13.0\n41,380,12.5\n41,381,12.0\n41,382,11.5\n41,383,11.0\n41,384,10.5\n41,385,10.0\n41,386,9.5\n41,387,9.0\n41,388,8.5\n41,389,8.0\n41,390,7.5\n41,391,7.0\n41,392,7.5\n41,393,8.0\n41,394,8.5\n41,395,9.0\n41,396,9.5\n41,397,10.0\n41,398,10.5\n41,399,11.0\n41,400,15.5\n41,401,15.0\n41,402,14.5\n41,403,14.0\n41,404,13.5\n41,405,13.0\n41,406,12.5\n41,407,12.0\n41,408,11.5\n41,409,11.0\n41,410,10.5\n41,411,10.0\n41,412,9.5\n41,413,9.0\n41,414,8.5\n41,415,8.0\n41,416,7.5\n41,417,8.0\n41,418,8.5\n41,419,9.0\n41,420,9.5\n41,421,10.0\n41,422,10.5\n41,423,11.0\n41,424,11.5\n41,425,16.0\n41,426,15.5\n41,427,15.0\n41,428,14.5\n41,429,14.0\n41,430,13.5\n41,431,13.0\n41,432,12.5\n41,433,12.0\n41,434,11.5\n41,435,11.0\n41,436,10.5\n41,437,10.0\n41,438,9.5\n41,439,9.0\n41,440,8.5\n41,441,8.0\n41,442,8.5\n41,443,9.0\n41,444,9.5\n41,445,10.0\n41,446,10.5\n41,447,11.0\n41,448,11.5\n41,449,12.0\n41,450,16.5\n41,451,16.0\n41,452,15.5\n41,453,15.0\n41,454,14.5\n41,455,14.0\n41,456,13.5\n41,457,13.0\n41,458,12.5\n41,459,12.0\n41,460,11.5\n41,461,11.0\n41,462,10.5\n41,463,10.0\n41,464,9.5\n41,465,9.0\n41,466,8.5\n41,467,9.0\n41,468,9.5\n41,469,10.0\n41,470,10.5\n41,471,11.0\n41,472,11.5\n41,473,12.0\n41,474,12.5\n41,475,17.0\n41,476,16.5\n41,477,16.0\n41,478,15.5\n41,479,15.0\n41,480,14.5\n41,481,14.0\n41,482,13.5\n41,483,13.0\n41,484,12.5\n41,485,12.0\n41,486,11.5\n41,487,11.0\n41,488,10.5\n41,489,10.0\n41,490,9.5\n41,491,9.0\n41,492,9.5\n41,493,10.0\n41,494,10.5\n41,495,11.0\n41,496,11.5\n41,497,12.0\n41,498,12.5\n41,499,13.0\n41,500,17.5\n41,501,17.0\n41,502,16.5\n41,503,16.0\n41,504,15.5\n41,505,15.0\n41,506,14.5\n41,507,14.0\n41,508,13.5\n41,509,13.0\n41,510,12.5\n41,511,12.0\n41,512,11.5\n41,513,11.0\n41,514,10.5\n41,515,10.0\n41,516,9.5\n41,517,10.0\n41,518,10.5\n41,519,11.0\n41,520,11.5\n41,521,12.0\n41,522,12.5\n41,523,13.0\n41,524,13.5\n41,525,18.0\n41,526,17.5\n41,527,17.0\n41,528,16.5\n41,529,16.0\n41,530,15.5\n41,531,15.0\n41,532,14.5\n41,533,14.0\n41,534,13.5\n41,535,13.0\n41,536,12.5\n41,537,12.0\n41,538,11.5\n41,539,11.0\n41,540,10.5\n41,541,10.0\n41,542,10.5\n41,543,11.0\n41,544,11.5\n41,545,12.0\n41,546,12.5\n41,547,13.0\n41,548,13.5\n41,549,14.0\n41,550,18.5\n41,551,18.0\n41,552,17.5\n41,553,17.0\n41,554,16.5\n41,555,16.0\n41,556,15.5\n41,557,15.0\n41,558,14.5\n41,559,14.0\n41,560,13.5\n41,561,13.0\n41,562,12.5\n41,563,12.0\n41,564,11.5\n41,565,11.0\n41,566,10.5\n41,567,11.0\n41,568,11.5\n41,569,12.0\n41,570,12.5\n41,571,13.0\n41,572,13.5\n41,573,14.0\n41,574,14.5\n41,575,19.0\n41,576,18.5\n41,577,18.0\n41,578,17.5\n41,579,17.0\n41,580,16.5\n41,581,16.0\n41,582,15.5\n41,583,15.0\n41,584,14.5\n41,585,14.0\n41,586,13.5\n41,587,13.0\n41,588,12.5\n41,589,12.0\n41,590,11.5\n41,591,11.0\n41,592,11.5\n41,593,12.0\n41,594,12.5\n41,595,13.0\n41,596,13.5\n41,597,14.0\n41,598,14.5\n41,599,15.0\n41,600,19.5\n41,601,19.0\n41,602,18.5\n41,603,18.0\n41,604,17.5\n41,605,17.0\n41,606,16.5\n41,607,16.0\n41,608,15.5\n41,609,15.0\n41,610,14.5\n41,611,14.0\n41,612,13.5\n41,613,13.0\n41,614,12.5\n41,615,12.0\n41,616,11.5\n41,617,12.0\n41,618,12.5\n41,619,13.0\n41,620,13.5\n41,621,14.0\n41,622,14.5\n41,623,15.0\n41,624,15.5\n42,0,9.0\n42,1,8.5\n42,2,8.0\n42,3,7.5\n42,4,7.0\n42,5,6.5\n42,6,6.0\n42,7,5.5\n42,8,5.0\n42,9,4.5\n42,10,4.0\n42,11,3.5\n42,12,3.0\n42,13,2.5\n42,14,2.0\n42,15,1.5\n42,16,1.0\n42,17,0.5\n42,18,1.0\n42,19,1.5\n42,20,2.0\n42,21,2.5\n42,22,3.0\n42,23,3.5\n42,24,4.0\n42,25,8.5\n42,26,8.0\n42,27,7.5\n42,28,7.0\n42,29,6.5\n42,30,6.0\n42,31,5.5\n42,32,5.0\n42,33,4.5\n42,34,4.0\n42,35,3.5\n42,36,3.0\n42,37,2.5\n42,38,2.0\n42,39,1.5\n42,40,1.0\n42,41,0.5\n42,42,0\n42,43,0.5\n42,44,1.0\n42,45,1.5\n42,46,2.0\n42,47,2.5\n42,48,3.0\n42,49,3.5\n42,50,9.0\n42,51,8.5\n42,52,8.0\n42,53,7.5\n42,54,7.0\n42,55,6.5\n42,56,6.0\n42,57,5.5\n42,58,5.0\n42,59,4.5\n42,60,4.0\n42,61,3.5\n42,62,3.0\n42,63,2.5\n42,64,2.0\n42,65,1.5\n42,66,1.0\n42,67,0.5\n42,68,1.0\n42,69,1.5\n42,70,2.0\n42,71,2.5\n42,72,3.0\n42,73,3.5\n42,74,4.0\n42,75,9.5\n42,76,9.0\n42,77,8.5\n42,78,8.0\n42,79,7.5\n42,80,7.0\n42,81,6.5\n42,82,6.0\n42,83,5.5\n42,84,5.0\n42,85,4.5\n42,86,4.0\n42,87,3.5\n42,88,3.0\n42,89,2.5\n42,90,2.0\n42,91,1.5\n42,92,1.0\n42,93,1.5\n42,94,2.0\n42,95,2.5\n42,96,3.0\n42,97,3.5\n42,98,4.0\n42,99,4.5\n42,100,10.0\n42,101,9.5\n42,102,9.0\n42,103,8.5\n42,104,8.0\n42,105,7.5\n42,106,7.0\n42,107,6.5\n42,108,6.0\n42,109,5.5\n42,110,5.0\n42,111,4.5\n42,112,4.0\n42,113,3.5\n42,114,3.0\n42,115,2.5\n42,116,2.0\n42,117,1.5\n42,118,2.0\n42,119,2.5\n42,120,3.0\n42,121,3.5\n42,122,4.0\n42,123,4.5\n42,124,5.0\n42,125,10.5\n42,126,10.0\n42,127,9.5\n42,128,9.0\n42,129,8.5\n42,130,8.0\n42,131,7.5\n42,132,7.0\n42,133,6.5\n42,134,6.0\n42,135,5.5\n42,136,5.0\n42,137,4.5\n42,138,4.0\n42,139,3.5\n42,140,3.0\n42,141,2.5\n42,142,2.0\n42,143,2.5\n42,144,3.0\n42,145,3.5\n42,146,4.0\n42,147,4.5\n42,148,5.0\n42,149,5.5\n42,150,11.0\n42,151,10.5\n42,152,10.0\n42,153,9.5\n42,154,9.0\n42,155,8.5\n42,156,8.0\n42,157,7.5\n42,158,7.0\n42,159,6.5\n42,160,6.0\n42,161,5.5\n42,162,5.0\n42,163,4.5\n42,164,4.0\n42,165,3.5\n42,166,3.0\n42,167,2.5\n42,168,3.0\n42,169,3.5\n42,170,4.0\n42,171,4.5\n42,172,5.0\n42,173,5.5\n42,174,6.0\n42,175,11.5\n42,176,11.0\n42,177,10.5\n42,178,10.0\n42,179,9.5\n42,180,9.0\n42,181,8.5\n42,182,8.0\n42,183,7.5\n42,184,7.0\n42,185,6.5\n42,186,6.0\n42,187,5.5\n42,188,5.0\n42,189,4.5\n42,190,4.0\n42,191,3.5\n42,192,3.0\n42,193,3.5\n42,194,4.0\n42,195,4.5\n42,196,5.0\n42,197,5.5\n42,198,6.0\n42,199,6.5\n42,200,12.0\n42,201,11.5\n42,202,11.0\n42,203,10.5\n42,204,10.0\n42,205,9.5\n42,206,9.0\n42,207,8.5\n42,208,8.0\n42,209,7.5\n42,210,7.0\n42,211,6.5\n42,212,6.0\n42,213,5.5\n42,214,5.0\n42,215,4.5\n42,216,4.0\n42,217,3.5\n42,218,4.0\n42,219,4.5\n42,220,5.0\n42,221,5.5\n42,222,6.0\n42,223,6.5\n42,224,7.0\n42,225,12.5\n42,226,12.0\n42,227,11.5\n42,228,11.0\n42,229,10.5\n42,230,10.0\n42,231,9.5\n42,232,9.0\n42,233,8.5\n42,234,8.0\n42,235,7.5\n42,236,7.0\n42,237,6.5\n42,238,6.0\n42,239,5.5\n42,240,5.0\n42,241,4.5\n42,242,4.0\n42,243,4.5\n42,244,5.0\n42,245,5.5\n42,246,6.0\n42,247,6.5\n42,248,7.0\n42,249,7.5\n42,250,13.0\n42,251,12.5\n42,252,12.0\n42,253,11.5\n42,254,11.0\n42,255,10.5\n42,256,10.0\n42,257,9.5\n42,258,9.0\n42,259,8.5\n42,260,8.0\n42,261,7.5\n42,262,7.0\n42,263,6.5\n42,264,6.0\n42,265,5.5\n42,266,5.0\n42,267,4.5\n42,268,5.0\n42,269,5.5\n42,270,6.0\n42,271,6.5\n42,272,7.0\n42,273,7.5\n42,274,8.0\n42,275,13.5\n42,276,13.0\n42,277,12.5\n42,278,12.0\n42,279,11.5\n42,280,11.0\n42,281,10.5\n42,282,10.0\n42,283,9.5\n42,284,9.0\n42,285,8.5\n42,286,8.0\n42,287,7.5\n42,288,7.0\n42,289,6.5\n42,290,6.0\n42,291,5.5\n42,292,5.0\n42,293,5.5\n42,294,6.0\n42,295,6.5\n42,296,7.0\n42,297,7.5\n42,298,8.0\n42,299,8.5\n42,300,14.0\n42,301,13.5\n42,302,13.0\n42,303,12.5\n42,304,12.0\n42,305,11.5\n42,306,11.0\n42,307,10.5\n42,308,10.0\n42,309,9.5\n42,310,9.0\n42,311,8.5\n42,312,8.0\n42,313,7.5\n42,314,7.0\n42,315,6.5\n42,316,6.0\n42,317,5.5\n42,318,6.0\n42,319,6.5\n42,320,7.0\n42,321,7.5\n42,322,8.0\n42,323,8.5\n42,324,9.0\n42,325,14.5\n42,326,14.0\n42,327,13.5\n42,328,13.0\n42,329,12.5\n42,330,12.0\n42,331,11.5\n42,332,11.0\n42,333,10.5\n42,334,10.0\n42,335,9.5\n42,336,9.0\n42,337,8.5\n42,338,8.0\n42,339,7.5\n42,340,7.0\n42,341,6.5\n42,342,6.0\n42,343,6.5\n42,344,7.0\n42,345,7.5\n42,346,8.0\n42,347,8.5\n42,348,9.0\n42,349,9.5\n42,350,15.0\n42,351,14.5\n42,352,14.0\n42,353,13.5\n42,354,13.0\n42,355,12.5\n42,356,12.0\n42,357,11.5\n42,358,11.0\n42,359,10.5\n42,360,10.0\n42,361,9.5\n42,362,9.0\n42,363,8.5\n42,364,8.0\n42,365,7.5\n42,366,7.0\n42,367,6.5\n42,368,7.0\n42,369,7.5\n42,370,8.0\n42,371,8.5\n42,372,9.0\n42,373,9.5\n42,374,10.0\n42,375,15.5\n42,376,15.0\n42,377,14.5\n42,378,14.0\n42,379,13.5\n42,380,13.0\n42,381,12.5\n42,382,12.0\n42,383,11.5\n42,384,11.0\n42,385,10.5\n42,386,10.0\n42,387,9.5\n42,388,9.0\n42,389,8.5\n42,390,8.0\n42,391,7.5\n42,392,7.0\n42,393,7.5\n42,394,8.0\n42,395,8.5\n42,396,9.0\n42,397,9.5\n42,398,10.0\n42,399,10.5\n42,400,16.0\n42,401,15.5\n42,402,15.0\n42,403,14.5\n42,404,14.0\n42,405,13.5\n42,406,13.0\n42,407,12.5\n42,408,12.0\n42,409,11.5\n42,410,11.0\n42,411,10.5\n42,412,10.0\n42,413,9.5\n42,414,9.0\n42,415,8.5\n42,416,8.0\n42,417,7.5\n42,418,8.0\n42,419,8.5\n42,420,9.0\n42,421,9.5\n42,422,10.0\n42,423,10.5\n42,424,11.0\n42,425,16.5\n42,426,16.0\n42,427,15.5\n42,428,15.0\n42,429,14.5\n42,430,14.0\n42,431,13.5\n42,432,13.0\n42,433,12.5\n42,434,12.0\n42,435,11.5\n42,436,11.0\n42,437,10.5\n42,438,10.0\n42,439,9.5\n42,440,9.0\n42,441,8.5\n42,442,8.0\n42,443,8.5\n42,444,9.0\n42,445,9.5\n42,446,10.0\n42,447,10.5\n42,448,11.0\n42,449,11.5\n42,450,17.0\n42,451,16.5\n42,452,16.0\n42,453,15.5\n42,454,15.0\n42,455,14.5\n42,456,14.0\n42,457,13.5\n42,458,13.0\n42,459,12.5\n42,460,12.0\n42,461,11.5\n42,462,11.0\n42,463,10.5\n42,464,10.0\n42,465,9.5\n42,466,9.0\n42,467,8.5\n42,468,9.0\n42,469,9.5\n42,470,10.0\n42,471,10.5\n42,472,11.0\n42,473,11.5\n42,474,12.0\n42,475,17.5\n42,476,17.0\n42,477,16.5\n42,478,16.0\n42,479,15.5\n42,480,15.0\n42,481,14.5\n42,482,14.0\n42,483,13.5\n42,484,13.0\n42,485,12.5\n42,486,12.0\n42,487,11.5\n42,488,11.0\n42,489,10.5\n42,490,10.0\n42,491,9.5\n42,492,9.0\n42,493,9.5\n42,494,10.0\n42,495,10.5\n42,496,11.0\n42,497,11.5\n42,498,12.0\n42,499,12.5\n42,500,18.0\n42,501,17.5\n42,502,17.0\n42,503,16.5\n42,504,16.0\n42,505,15.5\n42,506,15.0\n42,507,14.5\n42,508,14.0\n42,509,13.5\n42,510,13.0\n42,511,12.5\n42,512,12.0\n42,513,11.5\n42,514,11.0\n42,515,10.5\n42,516,10.0\n42,517,9.5\n42,518,10.0\n42,519,10.5\n42,520,11.0\n42,521,11.5\n42,522,12.0\n42,523,12.5\n42,524,13.0\n42,525,18.5\n42,526,18.0\n42,527,17.5\n42,528,17.0\n42,529,16.5\n42,530,16.0\n42,531,15.5\n42,532,15.0\n42,533,14.5\n42,534,14.0\n42,535,13.5\n42,536,13.0\n42,537,12.5\n42,538,12.0\n42,539,11.5\n42,540,11.0\n42,541,10.5\n42,542,10.0\n42,543,10.5\n42,544,11.0\n42,545,11.5\n42,546,12.0\n42,547,12.5\n42,548,13.0\n42,549,13.5\n42,550,19.0\n42,551,18.5\n42,552,18.0\n42,553,17.5\n42,554,17.0\n42,555,16.5\n42,556,16.0\n42,557,15.5\n42,558,15.0\n42,559,14.5\n42,560,14.0\n42,561,13.5\n42,562,13.0\n42,563,12.5\n42,564,12.0\n42,565,11.5\n42,566,11.0\n42,567,10.5\n42,568,11.0\n42,569,11.5\n42,570,12.0\n42,571,12.5\n42,572,13.0\n42,573,13.5\n42,574,14.0\n42,575,19.5\n42,576,19.0\n42,577,18.5\n42,578,18.0\n42,579,17.5\n42,580,17.0\n42,581,16.5\n42,582,16.0\n42,583,15.5\n42,584,15.0\n42,585,14.5\n42,586,14.0\n42,587,13.5\n42,588,13.0\n42,589,12.5\n42,590,12.0\n42,591,11.5\n42,592,11.0\n42,593,11.5\n42,594,12.0\n42,595,12.5\n42,596,13.0\n42,597,13.5\n42,598,14.0\n42,599,14.5\n42,600,20.0\n42,601,19.5\n42,602,19.0\n42,603,18.5\n42,604,18.0\n42,605,17.5\n42,606,17.0\n42,607,16.5\n42,608,16.0\n42,609,15.5\n42,610,15.0\n42,611,14.5\n42,612,14.0\n42,613,13.5\n42,614,13.0\n42,615,12.5\n42,616,12.0\n42,617,11.5\n42,618,12.0\n42,619,12.5\n42,620,13.0\n42,621,13.5\n42,622,14.0\n42,623,14.5\n42,624,15.0\n43,0,9.5\n43,1,9.0\n43,2,8.5\n43,3,8.0\n43,4,7.5\n43,5,7.0\n43,6,6.5\n43,7,6.0\n43,8,5.5\n43,9,5.0\n43,10,4.5\n43,11,4.0\n43,12,3.5\n43,13,3.0\n43,14,2.5\n43,15,2.0\n43,16,1.5\n43,17,1.0\n43,18,0.5\n43,19,1.0\n43,20,1.5\n43,21,2.0\n43,22,2.5\n43,23,3.0\n43,24,3.5\n43,25,9.0\n43,26,8.5\n43,27,8.0\n43,28,7.5\n43,29,7.0\n43,30,6.5\n43,31,6.0\n43,32,5.5\n43,33,5.0\n43,34,4.5\n43,35,4.0\n43,36,3.5\n43,37,3.0\n43,38,2.5\n43,39,2.0\n43,40,1.5\n43,41,1.0\n43,42,0.5\n43,43,0\n43,44,0.5\n43,45,1.0\n43,46,1.5\n43,47,2.0\n43,48,2.5\n43,49,3.0\n43,50,9.5\n43,51,9.0\n43,52,8.5\n43,53,8.0\n43,54,7.5\n43,55,7.0\n43,56,6.5\n43,57,6.0\n43,58,5.5\n43,59,5.0\n43,60,4.5\n43,61,4.0\n43,62,3.5\n43,63,3.0\n43,64,2.5\n43,65,2.0\n43,66,1.5\n43,67,1.0\n43,68,0.5\n43,69,1.0\n43,70,1.5\n43,71,2.0\n43,72,2.5\n43,73,3.0\n43,74,3.5\n43,75,10.0\n43,76,9.5\n43,77,9.0\n43,78,8.5\n43,79,8.0\n43,80,7.5\n43,81,7.0\n43,82,6.5\n43,83,6.0\n43,84,5.5\n43,85,5.0\n43,86,4.5\n43,87,4.0\n43,88,3.5\n43,89,3.0\n43,90,2.5\n43,91,2.0\n43,92,1.5\n43,93,1.0\n43,94,1.5\n43,95,2.0\n43,96,2.5\n43,97,3.0\n43,98,3.5\n43,99,4.0\n43,100,10.5\n43,101,10.0\n43,102,9.5\n43,103,9.0\n43,104,8.5\n43,105,8.0\n43,106,7.5\n43,107,7.0\n43,108,6.5\n43,109,6.0\n43,110,5.5\n43,111,5.0\n43,112,4.5\n43,113,4.0\n43,114,3.5\n43,115,3.0\n43,116,2.5\n43,117,2.0\n43,118,1.5\n43,119,2.0\n43,120,2.5\n43,121,3.0\n43,122,3.5\n43,123,4.0\n43,124,4.5\n43,125,11.0\n43,126,10.5\n43,127,10.0\n43,128,9.5\n43,129,9.0\n43,130,8.5\n43,131,8.0\n43,132,7.5\n43,133,7.0\n43,134,6.5\n43,135,6.0\n43,136,5.5\n43,137,5.0\n43,138,4.5\n43,139,4.0\n43,140,3.5\n43,141,3.0\n43,142,2.5\n43,143,2.0\n43,144,2.5\n43,145,3.0\n43,146,3.5\n43,147,4.0\n43,148,4.5\n43,149,5.0\n43,150,11.5\n43,151,11.0\n43,152,10.5\n43,153,10.0\n43,154,9.5\n43,155,9.0\n43,156,8.5\n43,157,8.0\n43,158,7.5\n43,159,7.0\n43,160,6.5\n43,161,6.0\n43,162,5.5\n43,163,5.0\n43,164,4.5\n43,165,4.0\n43,166,3.5\n43,167,3.0\n43,168,2.5\n43,169,3.0\n43,170,3.5\n43,171,4.0\n43,172,4.5\n43,173,5.0\n43,174,5.5\n43,175,12.0\n43,176,11.5\n43,177,11.0\n43,178,10.5\n43,179,10.0\n43,180,9.5\n43,181,9.0\n43,182,8.5\n43,183,8.0\n43,184,7.5\n43,185,7.0\n43,186,6.5\n43,187,6.0\n43,188,5.5\n43,189,5.0\n43,190,4.5\n43,191,4.0\n43,192,3.5\n43,193,3.0\n43,194,3.5\n43,195,4.0\n43,196,4.5\n43,197,5.0\n43,198,5.5\n43,199,6.0\n43,200,12.5\n43,201,12.0\n43,202,11.5\n43,203,11.0\n43,204,10.5\n43,205,10.0\n43,206,9.5\n43,207,9.0\n43,208,8.5\n43,209,8.0\n43,210,7.5\n43,211,7.0\n43,212,6.5\n43,213,6.0\n43,214,5.5\n43,215,5.0\n43,216,4.5\n43,217,4.0\n43,218,3.5\n43,219,4.0\n43,220,4.5\n43,221,5.0\n43,222,5.5\n43,223,6.0\n43,224,6.5\n43,225,13.0\n43,226,12.5\n43,227,12.0\n43,228,11.5\n43,229,11.0\n43,230,10.5\n43,231,10.0\n43,232,9.5\n43,233,9.0\n43,234,8.5\n43,235,8.0\n43,236,7.5\n43,237,7.0\n43,238,6.5\n43,239,6.0\n43,240,5.5\n43,241,5.0\n43,242,4.5\n43,243,4.0\n43,244,4.5\n43,245,5.0\n43,246,5.5\n43,247,6.0\n43,248,6.5\n43,249,7.0\n43,250,13.5\n43,251,13.0\n43,252,12.5\n43,253,12.0\n43,254,11.5\n43,255,11.0\n43,256,10.5\n43,257,10.0\n43,258,9.5\n43,259,9.0\n43,260,8.5\n43,261,8.0\n43,262,7.5\n43,263,7.0\n43,264,6.5\n43,265,6.0\n43,266,5.5\n43,267,5.0\n43,268,4.5\n43,269,5.0\n43,270,5.5\n43,271,6.0\n43,272,6.5\n43,273,7.0\n43,274,7.5\n43,275,14.0\n43,276,13.5\n43,277,13.0\n43,278,12.5\n43,279,12.0\n43,280,11.5\n43,281,11.0\n43,282,10.5\n43,283,10.0\n43,284,9.5\n43,285,9.0\n43,286,8.5\n43,287,8.0\n43,288,7.5\n43,289,7.0\n43,290,6.5\n43,291,6.0\n43,292,5.5\n43,293,5.0\n43,294,5.5\n43,295,6.0\n43,296,6.5\n43,297,7.0\n43,298,7.5\n43,299,8.0\n43,300,14.5\n43,301,14.0\n43,302,13.5\n43,303,13.0\n43,304,12.5\n43,305,12.0\n43,306,11.5\n43,307,11.0\n43,308,10.5\n43,309,10.0\n43,310,9.5\n43,311,9.0\n43,312,8.5\n43,313,8.0\n43,314,7.5\n43,315,7.0\n43,316,6.5\n43,317,6.0\n43,318,5.5\n43,319,6.0\n43,320,6.5\n43,321,7.0\n43,322,7.5\n43,323,8.0\n43,324,8.5\n43,325,15.0\n43,326,14.5\n43,327,14.0\n43,328,13.5\n43,329,13.0\n43,330,12.5\n43,331,12.0\n43,332,11.5\n43,333,11.0\n43,334,10.5\n43,335,10.0\n43,336,9.5\n43,337,9.0\n43,338,8.5\n43,339,8.0\n43,340,7.5\n43,341,7.0\n43,342,6.5\n43,343,6.0\n43,344,6.5\n43,345,7.0\n43,346,7.5\n43,347,8.0\n43,348,8.5\n43,349,9.0\n43,350,15.5\n43,351,15.0\n43,352,14.5\n43,353,14.0\n43,354,13.5\n43,355,13.0\n43,356,12.5\n43,357,12.0\n43,358,11.5\n43,359,11.0\n43,360,10.5\n43,361,10.0\n43,362,9.5\n43,363,9.0\n43,364,8.5\n43,365,8.0\n43,366,7.5\n43,367,7.0\n43,368,6.5\n43,369,7.0\n43,370,7.5\n43,371,8.0\n43,372,8.5\n43,373,9.0\n43,374,9.5\n43,375,16.0\n43,376,15.5\n43,377,15.0\n43,378,14.5\n43,379,14.0\n43,380,13.5\n43,381,13.0\n43,382,12.5\n43,383,12.0\n43,384,11.5\n43,385,11.0\n43,386,10.5\n43,387,10.0\n43,388,9.5\n43,389,9.0\n43,390,8.5\n43,391,8.0\n43,392,7.5\n43,393,7.0\n43,394,7.5\n43,395,8.0\n43,396,8.5\n43,397,9.0\n43,398,9.5\n43,399,10.0\n43,400,16.5\n43,401,16.0\n43,402,15.5\n43,403,15.0\n43,404,14.5\n43,405,14.0\n43,406,13.5\n43,407,13.0\n43,408,12.5\n43,409,12.0\n43,410,11.5\n43,411,11.0\n43,412,10.5\n43,413,10.0\n43,414,9.5\n43,415,9.0\n43,416,8.5\n43,417,8.0\n43,418,7.5\n43,419,8.0\n43,420,8.5\n43,421,9.0\n43,422,9.5\n43,423,10.0\n43,424,10.5\n43,425,17.0\n43,426,16.5\n43,427,16.0\n43,428,15.5\n43,429,15.0\n43,430,14.5\n43,431,14.0\n43,432,13.5\n43,433,13.0\n43,434,12.5\n43,435,12.0\n43,436,11.5\n43,437,11.0\n43,438,10.5\n43,439,10.0\n43,440,9.5\n43,441,9.0\n43,442,8.5\n43,443,8.0\n43,444,8.5\n43,445,9.0\n43,446,9.5\n43,447,10.0\n43,448,10.5\n43,449,11.0\n43,450,17.5\n43,451,17.0\n43,452,16.5\n43,453,16.0\n43,454,15.5\n43,455,15.0\n43,456,14.5\n43,457,14.0\n43,458,13.5\n43,459,13.0\n43,460,12.5\n43,461,12.0\n43,462,11.5\n43,463,11.0\n43,464,10.5\n43,465,10.0\n43,466,9.5\n43,467,9.0\n43,468,8.5\n43,469,9.0\n43,470,9.5\n43,471,10.0\n43,472,10.5\n43,473,11.0\n43,474,11.5\n43,475,18.0\n43,476,17.5\n43,477,17.0\n43,478,16.5\n43,479,16.0\n43,480,15.5\n43,481,15.0\n43,482,14.5\n43,483,14.0\n43,484,13.5\n43,485,13.0\n43,486,12.5\n43,487,12.0\n43,488,11.5\n43,489,11.0\n43,490,10.5\n43,491,10.0\n43,492,9.5\n43,493,9.0\n43,494,9.5\n43,495,10.0\n43,496,10.5\n43,497,11.0\n43,498,11.5\n43,499,12.0\n43,500,18.5\n43,501,18.0\n43,502,17.5\n43,503,17.0\n43,504,16.5\n43,505,16.0\n43,506,15.5\n43,507,15.0\n43,508,14.5\n43,509,14.0\n43,510,13.5\n43,511,13.0\n43,512,12.5\n43,513,12.0\n43,514,11.5\n43,515,11.0\n43,516,10.5\n43,517,10.0\n43,518,9.5\n43,519,10.0\n43,520,10.5\n43,521,11.0\n43,522,11.5\n43,523,12.0\n43,524,12.5\n43,525,19.0\n43,526,18.5\n43,527,18.0\n43,528,17.5\n43,529,17.0\n43,530,16.5\n43,531,16.0\n43,532,15.5\n43,533,15.0\n43,534,14.5\n43,535,14.0\n43,536,13.5\n43,537,13.0\n43,538,12.5\n43,539,12.0\n43,540,11.5\n43,541,11.0\n43,542,10.5\n43,543,10.0\n43,544,10.5\n43,545,11.0\n43,546,11.5\n43,547,12.0\n43,548,12.5\n43,549,13.0\n43,550,19.5\n43,551,19.0\n43,552,18.5\n43,553,18.0\n43,554,17.5\n43,555,17.0\n43,556,16.5\n43,557,16.0\n43,558,15.5\n43,559,15.0\n43,560,14.5\n43,561,14.0\n43,562,13.5\n43,563,13.0\n43,564,12.5\n43,565,12.0\n43,566,11.5\n43,567,11.0\n43,568,10.5\n43,569,11.0\n43,570,11.5\n43,571,12.0\n43,572,12.5\n43,573,13.0\n43,574,13.5\n43,575,20.0\n43,576,19.5\n43,577,19.0\n43,578,18.5\n43,579,18.0\n43,580,17.5\n43,581,17.0\n43,582,16.5\n43,583,16.0\n43,584,15.5\n43,585,15.0\n43,586,14.5\n43,587,14.0\n43,588,13.5\n43,589,13.0\n43,590,12.5\n43,591,12.0\n43,592,11.5\n43,593,11.0\n43,594,11.5\n43,595,12.0\n43,596,12.5\n43,597,13.0\n43,598,13.5\n43,599,14.0\n43,600,20.5\n43,601,20.0\n43,602,19.5\n43,603,19.0\n43,604,18.5\n43,605,18.0\n43,606,17.5\n43,607,17.0\n43,608,16.5\n43,609,16.0\n43,610,15.5\n43,611,15.0\n43,612,14.5\n43,613,14.0\n43,614,13.5\n43,615,13.0\n43,616,12.5\n43,617,12.0\n43,618,11.5\n43,619,12.0\n43,620,12.5\n43,621,13.0\n43,622,13.5\n43,623,14.0\n43,624,14.5\n44,0,10.0\n44,1,9.5\n44,2,9.0\n44,3,8.5\n44,4,8.0\n44,5,7.5\n44,6,7.0\n44,7,6.5\n44,8,6.0\n44,9,5.5\n44,10,5.0\n44,11,4.5\n44,12,4.0\n44,13,3.5\n44,14,3.0\n44,15,2.5\n44,16,2.0\n44,17,1.5\n44,18,1.0\n44,19,0.5\n44,20,1.0\n44,21,1.5\n44,22,2.0\n44,23,2.5\n44,24,3.0\n44,25,9.5\n44,26,9.0\n44,27,8.5\n44,28,8.0\n44,29,7.5\n44,30,7.0\n44,31,6.5\n44,32,6.0\n44,33,5.5\n44,34,5.0\n44,35,4.5\n44,36,4.0\n44,37,3.5\n44,38,3.0\n44,39,2.5\n44,40,2.0\n44,41,1.5\n44,42,1.0\n44,43,0.5\n44,44,0\n44,45,0.5\n44,46,1.0\n44,47,1.5\n44,48,2.0\n44,49,2.5\n44,50,10.0\n44,51,9.5\n44,52,9.0\n44,53,8.5\n44,54,8.0\n44,55,7.5\n44,56,7.0\n44,57,6.5\n44,58,6.0\n44,59,5.5\n44,60,5.0\n44,61,4.5\n44,62,4.0\n44,63,3.5\n44,64,3.0\n44,65,2.5\n44,66,2.0\n44,67,1.5\n44,68,1.0\n44,69,0.5\n44,70,1.0\n44,71,1.5\n44,72,2.0\n44,73,2.5\n44,74,3.0\n44,75,10.5\n44,76,10.0\n44,77,9.5\n44,78,9.0\n44,79,8.5\n44,80,8.0\n44,81,7.5\n44,82,7.0\n44,83,6.5\n44,84,6.0\n44,85,5.5\n44,86,5.0\n44,87,4.5\n44,88,4.0\n44,89,3.5\n44,90,3.0\n44,91,2.5\n44,92,2.0\n44,93,1.5\n44,94,1.0\n44,95,1.5\n44,96,2.0\n44,97,2.5\n44,98,3.0\n44,99,3.5\n44,100,11.0\n44,101,10.5\n44,102,10.0\n44,103,9.5\n44,104,9.0\n44,105,8.5\n44,106,8.0\n44,107,7.5\n44,108,7.0\n44,109,6.5\n44,110,6.0\n44,111,5.5\n44,112,5.0\n44,113,4.5\n44,114,4.0\n44,115,3.5\n44,116,3.0\n44,117,2.5\n44,118,2.0\n44,119,1.5\n44,120,2.0\n44,121,2.5\n44,122,3.0\n44,123,3.5\n44,124,4.0\n44,125,11.5\n44,126,11.0\n44,127,10.5\n44,128,10.0\n44,129,9.5\n44,130,9.0\n44,131,8.5\n44,132,8.0\n44,133,7.5\n44,134,7.0\n44,135,6.5\n44,136,6.0\n44,137,5.5\n44,138,5.0\n44,139,4.5\n44,140,4.0\n44,141,3.5\n44,142,3.0\n44,143,2.5\n44,144,2.0\n44,145,2.5\n44,146,3.0\n44,147,3.5\n44,148,4.0\n44,149,4.5\n44,150,12.0\n44,151,11.5\n44,152,11.0\n44,153,10.5\n44,154,10.0\n44,155,9.5\n44,156,9.0\n44,157,8.5\n44,158,8.0\n44,159,7.5\n44,160,7.0\n44,161,6.5\n44,162,6.0\n44,163,5.5\n44,164,5.0\n44,165,4.5\n44,166,4.0\n44,167,3.5\n44,168,3.0\n44,169,2.5\n44,170,3.0\n44,171,3.5\n44,172,4.0\n44,173,4.5\n44,174,5.0\n44,175,12.5\n44,176,12.0\n44,177,11.5\n44,178,11.0\n44,179,10.5\n44,180,10.0\n44,181,9.5\n44,182,9.0\n44,183,8.5\n44,184,8.0\n44,185,7.5\n44,186,7.0\n44,187,6.5\n44,188,6.0\n44,189,5.5\n44,190,5.0\n44,191,4.5\n44,192,4.0\n44,193,3.5\n44,194,3.0\n44,195,3.5\n44,196,4.0\n44,197,4.5\n44,198,5.0\n44,199,5.5\n44,200,13.0\n44,201,12.5\n44,202,12.0\n44,203,11.5\n44,204,11.0\n44,205,10.5\n44,206,10.0\n44,207,9.5\n44,208,9.0\n44,209,8.5\n44,210,8.0\n44,211,7.5\n44,212,7.0\n44,213,6.5\n44,214,6.0\n44,215,5.5\n44,216,5.0\n44,217,4.5\n44,218,4.0\n44,219,3.5\n44,220,4.0\n44,221,4.5\n44,222,5.0\n44,223,5.5\n44,224,6.0\n44,225,13.5\n44,226,13.0\n44,227,12.5\n44,228,12.0\n44,229,11.5\n44,230,11.0\n44,231,10.5\n44,232,10.0\n44,233,9.5\n44,234,9.0\n44,235,8.5\n44,236,8.0\n44,237,7.5\n44,238,7.0\n44,239,6.5\n44,240,6.0\n44,241,5.5\n44,242,5.0\n44,243,4.5\n44,244,4.0\n44,245,4.5\n44,246,5.0\n44,247,5.5\n44,248,6.0\n44,249,6.5\n44,250,14.0\n44,251,13.5\n44,252,13.0\n44,253,12.5\n44,254,12.0\n44,255,11.5\n44,256,11.0\n44,257,10.5\n44,258,10.0\n44,259,9.5\n44,260,9.0\n44,261,8.5\n44,262,8.0\n44,263,7.5\n44,264,7.0\n44,265,6.5\n44,266,6.0\n44,267,5.5\n44,268,5.0\n44,269,4.5\n44,270,5.0\n44,271,5.5\n44,272,6.0\n44,273,6.5\n44,274,7.0\n44,275,14.5\n44,276,14.0\n44,277,13.5\n44,278,13.0\n44,279,12.5\n44,280,12.0\n44,281,11.5\n44,282,11.0\n44,283,10.5\n44,284,10.0\n44,285,9.5\n44,286,9.0\n44,287,8.5\n44,288,8.0\n44,289,7.5\n44,290,7.0\n44,291,6.5\n44,292,6.0\n44,293,5.5\n44,294,5.0\n44,295,5.5\n44,296,6.0\n44,297,6.5\n44,298,7.0\n44,299,7.5\n44,300,15.0\n44,301,14.5\n44,302,14.0\n44,303,13.5\n44,304,13.0\n44,305,12.5\n44,306,12.0\n44,307,11.5\n44,308,11.0\n44,309,10.5\n44,310,10.0\n44,311,9.5\n44,312,9.0\n44,313,8.5\n44,314,8.0\n44,315,7.5\n44,316,7.0\n44,317,6.5\n44,318,6.0\n44,319,5.5\n44,320,6.0\n44,321,6.5\n44,322,7.0\n44,323,7.5\n44,324,8.0\n44,325,15.5\n44,326,15.0\n44,327,14.5\n44,328,14.0\n44,329,13.5\n44,330,13.0\n44,331,12.5\n44,332,12.0\n44,333,11.5\n44,334,11.0\n44,335,10.5\n44,336,10.0\n44,337,9.5\n44,338,9.0\n44,339,8.5\n44,340,8.0\n44,341,7.5\n44,342,7.0\n44,343,6.5\n44,344,6.0\n44,345,6.5\n44,346,7.0\n44,347,7.5\n44,348,8.0\n44,349,8.5\n44,350,16.0\n44,351,15.5\n44,352,15.0\n44,353,14.5\n44,354,14.0\n44,355,13.5\n44,356,13.0\n44,357,12.5\n44,358,12.0\n44,359,11.5\n44,360,11.0\n44,361,10.5\n44,362,10.0\n44,363,9.5\n44,364,9.0\n44,365,8.5\n44,366,8.0\n44,367,7.5\n44,368,7.0\n44,369,6.5\n44,370,7.0\n44,371,7.5\n44,372,8.0\n44,373,8.5\n44,374,9.0\n44,375,16.5\n44,376,16.0\n44,377,15.5\n44,378,15.0\n44,379,14.5\n44,380,14.0\n44,381,13.5\n44,382,13.0\n44,383,12.5\n44,384,12.0\n44,385,11.5\n44,386,11.0\n44,387,10.5\n44,388,10.0\n44,389,9.5\n44,390,9.0\n44,391,8.5\n44,392,8.0\n44,393,7.5\n44,394,7.0\n44,395,7.5\n44,396,8.0\n44,397,8.5\n44,398,9.0\n44,399,9.5\n44,400,17.0\n44,401,16.5\n44,402,16.0\n44,403,15.5\n44,404,15.0\n44,405,14.5\n44,406,14.0\n44,407,13.5\n44,408,13.0\n44,409,12.5\n44,410,12.0\n44,411,11.5\n44,412,11.0\n44,413,10.5\n44,414,10.0\n44,415,9.5\n44,416,9.0\n44,417,8.5\n44,418,8.0\n44,419,7.5\n44,420,8.0\n44,421,8.5\n44,422,9.0\n44,423,9.5\n44,424,10.0\n44,425,17.5\n44,426,17.0\n44,427,16.5\n44,428,16.0\n44,429,15.5\n44,430,15.0\n44,431,14.5\n44,432,14.0\n44,433,13.5\n44,434,13.0\n44,435,12.5\n44,436,12.0\n44,437,11.5\n44,438,11.0\n44,439,10.5\n44,440,10.0\n44,441,9.5\n44,442,9.0\n44,443,8.5\n44,444,8.0\n44,445,8.5\n44,446,9.0\n44,447,9.5\n44,448,10.0\n44,449,10.5\n44,450,18.0\n44,451,17.5\n44,452,17.0\n44,453,16.5\n44,454,16.0\n44,455,15.5\n44,456,15.0\n44,457,14.5\n44,458,14.0\n44,459,13.5\n44,460,13.0\n44,461,12.5\n44,462,12.0\n44,463,11.5\n44,464,11.0\n44,465,10.5\n44,466,10.0\n44,467,9.5\n44,468,9.0\n44,469,8.5\n44,470,9.0\n44,471,9.5\n44,472,10.0\n44,473,10.5\n44,474,11.0\n44,475,18.5\n44,476,18.0\n44,477,17.5\n44,478,17.0\n44,479,16.5\n44,480,16.0\n44,481,15.5\n44,482,15.0\n44,483,14.5\n44,484,14.0\n44,485,13.5\n44,486,13.0\n44,487,12.5\n44,488,12.0\n44,489,11.5\n44,490,11.0\n44,491,10.5\n44,492,10.0\n44,493,9.5\n44,494,9.0\n44,495,9.5\n44,496,10.0\n44,497,10.5\n44,498,11.0\n44,499,11.5\n44,500,19.0\n44,501,18.5\n44,502,18.0\n44,503,17.5\n44,504,17.0\n44,505,16.5\n44,506,16.0\n44,507,15.5\n44,508,15.0\n44,509,14.5\n44,510,14.0\n44,511,13.5\n44,512,13.0\n44,513,12.5\n44,514,12.0\n44,515,11.5\n44,516,11.0\n44,517,10.5\n44,518,10.0\n44,519,9.5\n44,520,10.0\n44,521,10.5\n44,522,11.0\n44,523,11.5\n44,524,12.0\n44,525,19.5\n44,526,19.0\n44,527,18.5\n44,528,18.0\n44,529,17.5\n44,530,17.0\n44,531,16.5\n44,532,16.0\n44,533,15.5\n44,534,15.0\n44,535,14.5\n44,536,14.0\n44,537,13.5\n44,538,13.0\n44,539,12.5\n44,540,12.0\n44,541,11.5\n44,542,11.0\n44,543,10.5\n44,544,10.0\n44,545,10.5\n44,546,11.0\n44,547,11.5\n44,548,12.0\n44,549,12.5\n44,550,20.0\n44,551,19.5\n44,552,19.0\n44,553,18.5\n44,554,18.0\n44,555,17.5\n44,556,17.0\n44,557,16.5\n44,558,16.0\n44,559,15.5\n44,560,15.0\n44,561,14.5\n44,562,14.0\n44,563,13.5\n44,564,13.0\n44,565,12.5\n44,566,12.0\n44,567,11.5\n44,568,11.0\n44,569,10.5\n44,570,11.0\n44,571,11.5\n44,572,12.0\n44,573,12.5\n44,574,13.0\n44,575,20.5\n44,576,20.0\n44,577,19.5\n44,578,19.0\n44,579,18.5\n44,580,18.0\n44,581,17.5\n44,582,17.0\n44,583,16.5\n44,584,16.0\n44,585,15.5\n44,586,15.0\n44,587,14.5\n44,588,14.0\n44,589,13.5\n44,590,13.0\n44,591,12.5\n44,592,12.0\n44,593,11.5\n44,594,11.0\n44,595,11.5\n44,596,12.0\n44,597,12.5\n44,598,13.0\n44,599,13.5\n44,600,21.0\n44,601,20.5\n44,602,20.0\n44,603,19.5\n44,604,19.0\n44,605,18.5\n44,606,18.0\n44,607,17.5\n44,608,17.0\n44,609,16.5\n44,610,16.0\n44,611,15.5\n44,612,15.0\n44,613,14.5\n44,614,14.0\n44,615,13.5\n44,616,13.0\n44,617,12.5\n44,618,12.0\n44,619,11.5\n44,620,12.0\n44,621,12.5\n44,622,13.0\n44,623,13.5\n44,624,14.0\n45,0,10.5\n45,1,10.0\n45,2,9.5\n45,3,9.0\n45,4,8.5\n45,5,8.0\n45,6,7.5\n45,7,7.0\n45,8,6.5\n45,9,6.0\n45,10,5.5\n45,11,5.0\n45,12,4.5\n45,13,4.0\n45,14,3.5\n45,15,3.0\n45,16,2.5\n45,17,2.0\n45,18,1.5\n45,19,1.0\n45,20,0.5\n45,21,1.0\n45,22,1.5\n45,23,2.0\n45,24,2.5\n45,25,10.0\n45,26,9.5\n45,27,9.0\n45,28,8.5\n45,29,8.0\n45,30,7.5\n45,31,7.0\n45,32,6.5\n45,33,6.0\n45,34,5.5\n45,35,5.0\n45,36,4.5\n45,37,4.0\n45,38,3.5\n45,39,3.0\n45,40,2.5\n45,41,2.0\n45,42,1.5\n45,43,1.0\n45,44,0.5\n45,45,0\n45,46,0.5\n45,47,1.0\n45,48,1.5\n45,49,2.0\n45,50,10.5\n45,51,10.0\n45,52,9.5\n45,53,9.0\n45,54,8.5\n45,55,8.0\n45,56,7.5\n45,57,7.0\n45,58,6.5\n45,59,6.0\n45,60,5.5\n45,61,5.0\n45,62,4.5\n45,63,4.0\n45,64,3.5\n45,65,3.0\n45,66,2.5\n45,67,2.0\n45,68,1.5\n45,69,1.0\n45,70,0.5\n45,71,1.0\n45,72,1.5\n45,73,2.0\n45,74,2.5\n45,75,11.0\n45,76,10.5\n45,77,10.0\n45,78,9.5\n45,79,9.0\n45,80,8.5\n45,81,8.0\n45,82,7.5\n45,83,7.0\n45,84,6.5\n45,85,6.0\n45,86,5.5\n45,87,5.0\n45,88,4.5\n45,89,4.0\n45,90,3.5\n45,91,3.0\n45,92,2.5\n45,93,2.0\n45,94,1.5\n45,95,1.0\n45,96,1.5\n45,97,2.0\n45,98,2.5\n45,99,3.0\n45,100,11.5\n45,101,11.0\n45,102,10.5\n45,103,10.0\n45,104,9.5\n45,105,9.0\n45,106,8.5\n45,107,8.0\n45,108,7.5\n45,109,7.0\n45,110,6.5\n45,111,6.0\n45,112,5.5\n45,113,5.0\n45,114,4.5\n45,115,4.0\n45,116,3.5\n45,117,3.0\n45,118,2.5\n45,119,2.0\n45,120,1.5\n45,121,2.0\n45,122,2.5\n45,123,3.0\n45,124,3.5\n45,125,12.0\n45,126,11.5\n45,127,11.0\n45,128,10.5\n45,129,10.0\n45,130,9.5\n45,131,9.0\n45,132,8.5\n45,133,8.0\n45,134,7.5\n45,135,7.0\n45,136,6.5\n45,137,6.0\n45,138,5.5\n45,139,5.0\n45,140,4.5\n45,141,4.0\n45,142,3.5\n45,143,3.0\n45,144,2.5\n45,145,2.0\n45,146,2.5\n45,147,3.0\n45,148,3.5\n45,149,4.0\n45,150,12.5\n45,151,12.0\n45,152,11.5\n45,153,11.0\n45,154,10.5\n45,155,10.0\n45,156,9.5\n45,157,9.0\n45,158,8.5\n45,159,8.0\n45,160,7.5\n45,161,7.0\n45,162,6.5\n45,163,6.0\n45,164,5.5\n45,165,5.0\n45,166,4.5\n45,167,4.0\n45,168,3.5\n45,169,3.0\n45,170,2.5\n45,171,3.0\n45,172,3.5\n45,173,4.0\n45,174,4.5\n45,175,13.0\n45,176,12.5\n45,177,12.0\n45,178,11.5\n45,179,11.0\n45,180,10.5\n45,181,10.0\n45,182,9.5\n45,183,9.0\n45,184,8.5\n45,185,8.0\n45,186,7.5\n45,187,7.0\n45,188,6.5\n45,189,6.0\n45,190,5.5\n45,191,5.0\n45,192,4.5\n45,193,4.0\n45,194,3.5\n45,195,3.0\n45,196,3.5\n45,197,4.0\n45,198,4.5\n45,199,5.0\n45,200,13.5\n45,201,13.0\n45,202,12.5\n45,203,12.0\n45,204,11.5\n45,205,11.0\n45,206,10.5\n45,207,10.0\n45,208,9.5\n45,209,9.0\n45,210,8.5\n45,211,8.0\n45,212,7.5\n45,213,7.0\n45,214,6.5\n45,215,6.0\n45,216,5.5\n45,217,5.0\n45,218,4.5\n45,219,4.0\n45,220,3.5\n45,221,4.0\n45,222,4.5\n45,223,5.0\n45,224,5.5\n45,225,14.0\n45,226,13.5\n45,227,13.0\n45,228,12.5\n45,229,12.0\n45,230,11.5\n45,231,11.0\n45,232,10.5\n45,233,10.0\n45,234,9.5\n45,235,9.0\n45,236,8.5\n45,237,8.0\n45,238,7.5\n45,239,7.0\n45,240,6.5\n45,241,6.0\n45,242,5.5\n45,243,5.0\n45,244,4.5\n45,245,4.0\n45,246,4.5\n45,247,5.0\n45,248,5.5\n45,249,6.0\n45,250,14.5\n45,251,14.0\n45,252,13.5\n45,253,13.0\n45,254,12.5\n45,255,12.0\n45,256,11.5\n45,257,11.0\n45,258,10.5\n45,259,10.0\n45,260,9.5\n45,261,9.0\n45,262,8.5\n45,263,8.0\n45,264,7.5\n45,265,7.0\n45,266,6.5\n45,267,6.0\n45,268,5.5\n45,269,5.0\n45,270,4.5\n45,271,5.0\n45,272,5.5\n45,273,6.0\n45,274,6.5\n45,275,15.0\n45,276,14.5\n45,277,14.0\n45,278,13.5\n45,279,13.0\n45,280,12.5\n45,281,12.0\n45,282,11.5\n45,283,11.0\n45,284,10.5\n45,285,10.0\n45,286,9.5\n45,287,9.0\n45,288,8.5\n45,289,8.0\n45,290,7.5\n45,291,7.0\n45,292,6.5\n45,293,6.0\n45,294,5.5\n45,295,5.0\n45,296,5.5\n45,297,6.0\n45,298,6.5\n45,299,7.0\n45,300,15.5\n45,301,15.0\n45,302,14.5\n45,303,14.0\n45,304,13.5\n45,305,13.0\n45,306,12.5\n45,307,12.0\n45,308,11.5\n45,309,11.0\n45,310,10.5\n45,311,10.0\n45,312,9.5\n45,313,9.0\n45,314,8.5\n45,315,8.0\n45,316,7.5\n45,317,7.0\n45,318,6.5\n45,319,6.0\n45,320,5.5\n45,321,6.0\n45,322,6.5\n45,323,7.0\n45,324,7.5\n45,325,16.0\n45,326,15.5\n45,327,15.0\n45,328,14.5\n45,329,14.0\n45,330,13.5\n45,331,13.0\n45,332,12.5\n45,333,12.0\n45,334,11.5\n45,335,11.0\n45,336,10.5\n45,337,10.0\n45,338,9.5\n45,339,9.0\n45,340,8.5\n45,341,8.0\n45,342,7.5\n45,343,7.0\n45,344,6.5\n45,345,6.0\n45,346,6.5\n45,347,7.0\n45,348,7.5\n45,349,8.0\n45,350,16.5\n45,351,16.0\n45,352,15.5\n45,353,15.0\n45,354,14.5\n45,355,14.0\n45,356,13.5\n45,357,13.0\n45,358,12.5\n45,359,12.0\n45,360,11.5\n45,361,11.0\n45,362,10.5\n45,363,10.0\n45,364,9.5\n45,365,9.0\n45,366,8.5\n45,367,8.0\n45,368,7.5\n45,369,7.0\n45,370,6.5\n45,371,7.0\n45,372,7.5\n45,373,8.0\n45,374,8.5\n45,375,17.0\n45,376,16.5\n45,377,16.0\n45,378,15.5\n45,379,15.0\n45,380,14.5\n45,381,14.0\n45,382,13.5\n45,383,13.0\n45,384,12.5\n45,385,12.0\n45,386,11.5\n45,387,11.0\n45,388,10.5\n45,389,10.0\n45,390,9.5\n45,391,9.0\n45,392,8.5\n45,393,8.0\n45,394,7.5\n45,395,7.0\n45,396,7.5\n45,397,8.0\n45,398,8.5\n45,399,9.0\n45,400,17.5\n45,401,17.0\n45,402,16.5\n45,403,16.0\n45,404,15.5\n45,405,15.0\n45,406,14.5\n45,407,14.0\n45,408,13.5\n45,409,13.0\n45,410,12.5\n45,411,12.0\n45,412,11.5\n45,413,11.0\n45,414,10.5\n45,415,10.0\n45,416,9.5\n45,417,9.0\n45,418,8.5\n45,419,8.0\n45,420,7.5\n45,421,8.0\n45,422,8.5\n45,423,9.0\n45,424,9.5\n45,425,18.0\n45,426,17.5\n45,427,17.0\n45,428,16.5\n45,429,16.0\n45,430,15.5\n45,431,15.0\n45,432,14.5\n45,433,14.0\n45,434,13.5\n45,435,13.0\n45,436,12.5\n45,437,12.0\n45,438,11.5\n45,439,11.0\n45,440,10.5\n45,441,10.0\n45,442,9.5\n45,443,9.0\n45,444,8.5\n45,445,8.0\n45,446,8.5\n45,447,9.0\n45,448,9.5\n45,449,10.0\n45,450,18.5\n45,451,18.0\n45,452,17.5\n45,453,17.0\n45,454,16.5\n45,455,16.0\n45,456,15.5\n45,457,15.0\n45,458,14.5\n45,459,14.0\n45,460,13.5\n45,461,13.0\n45,462,12.5\n45,463,12.0\n45,464,11.5\n45,465,11.0\n45,466,10.5\n45,467,10.0\n45,468,9.5\n45,469,9.0\n45,470,8.5\n45,471,9.0\n45,472,9.5\n45,473,10.0\n45,474,10.5\n45,475,19.0\n45,476,18.5\n45,477,18.0\n45,478,17.5\n45,479,17.0\n45,480,16.5\n45,481,16.0\n45,482,15.5\n45,483,15.0\n45,484,14.5\n45,485,14.0\n45,486,13.5\n45,487,13.0\n45,488,12.5\n45,489,12.0\n45,490,11.5\n45,491,11.0\n45,492,10.5\n45,493,10.0\n45,494,9.5\n45,495,9.0\n45,496,9.5\n45,497,10.0\n45,498,10.5\n45,499,11.0\n45,500,19.5\n45,501,19.0\n45,502,18.5\n45,503,18.0\n45,504,17.5\n45,505,17.0\n45,506,16.5\n45,507,16.0\n45,508,15.5\n45,509,15.0\n45,510,14.5\n45,511,14.0\n45,512,13.5\n45,513,13.0\n45,514,12.5\n45,515,12.0\n45,516,11.5\n45,517,11.0\n45,518,10.5\n45,519,10.0\n45,520,9.5\n45,521,10.0\n45,522,10.5\n45,523,11.0\n45,524,11.5\n45,525,20.0\n45,526,19.5\n45,527,19.0\n45,528,18.5\n45,529,18.0\n45,530,17.5\n45,531,17.0\n45,532,16.5\n45,533,16.0\n45,534,15.5\n45,535,15.0\n45,536,14.5\n45,537,14.0\n45,538,13.5\n45,539,13.0\n45,540,12.5\n45,541,12.0\n45,542,11.5\n45,543,11.0\n45,544,10.5\n45,545,10.0\n45,546,10.5\n45,547,11.0\n45,548,11.5\n45,549,12.0\n45,550,20.5\n45,551,20.0\n45,552,19.5\n45,553,19.0\n45,554,18.5\n45,555,18.0\n45,556,17.5\n45,557,17.0\n45,558,16.5\n45,559,16.0\n45,560,15.5\n45,561,15.0\n45,562,14.5\n45,563,14.0\n45,564,13.5\n45,565,13.0\n45,566,12.5\n45,567,12.0\n45,568,11.5\n45,569,11.0\n45,570,10.5\n45,571,11.0\n45,572,11.5\n45,573,12.0\n45,574,12.5\n45,575,21.0\n45,576,20.5\n45,577,20.0\n45,578,19.5\n45,579,19.0\n45,580,18.5\n45,581,18.0\n45,582,17.5\n45,583,17.0\n45,584,16.5\n45,585,16.0\n45,586,15.5\n45,587,15.0\n45,588,14.5\n45,589,14.0\n45,590,13.5\n45,591,13.0\n45,592,12.5\n45,593,12.0\n45,594,11.5\n45,595,11.0\n45,596,11.5\n45,597,12.0\n45,598,12.5\n45,599,13.0\n45,600,21.5\n45,601,21.0\n45,602,20.5\n45,603,20.0\n45,604,19.5\n45,605,19.0\n45,606,18.5\n45,607,18.0\n45,608,17.5\n45,609,17.0\n45,610,16.5\n45,611,16.0\n45,612,15.5\n45,613,15.0\n45,614,14.5\n45,615,14.0\n45,616,13.5\n45,617,13.0\n45,618,12.5\n45,619,12.0\n45,620,11.5\n45,621,12.0\n45,622,12.5\n45,623,13.0\n45,624,13.5\n46,0,11.0\n46,1,10.5\n46,2,10.0\n46,3,9.5\n46,4,9.0\n46,5,8.5\n46,6,8.0\n46,7,7.5\n46,8,7.0\n46,9,6.5\n46,10,6.0\n46,11,5.5\n46,12,5.0\n46,13,4.5\n46,14,4.0\n46,15,3.5\n46,16,3.0\n46,17,2.5\n46,18,2.0\n46,19,1.5\n46,20,1.0\n46,21,0.5\n46,22,1.0\n46,23,1.5\n46,24,2.0\n46,25,10.5\n46,26,10.0\n46,27,9.5\n46,28,9.0\n46,29,8.5\n46,30,8.0\n46,31,7.5\n46,32,7.0\n46,33,6.5\n46,34,6.0\n46,35,5.5\n46,36,5.0\n46,37,4.5\n46,38,4.0\n46,39,3.5\n46,40,3.0\n46,41,2.5\n46,42,2.0\n46,43,1.5\n46,44,1.0\n46,45,0.5\n46,46,0\n46,47,0.5\n46,48,1.0\n46,49,1.5\n46,50,11.0\n46,51,10.5\n46,52,10.0\n46,53,9.5\n46,54,9.0\n46,55,8.5\n46,56,8.0\n46,57,7.5\n46,58,7.0\n46,59,6.5\n46,60,6.0\n46,61,5.5\n46,62,5.0\n46,63,4.5\n46,64,4.0\n46,65,3.5\n46,66,3.0\n46,67,2.5\n46,68,2.0\n46,69,1.5\n46,70,1.0\n46,71,0.5\n46,72,1.0\n46,73,1.5\n46,74,2.0\n46,75,11.5\n46,76,11.0\n46,77,10.5\n46,78,10.0\n46,79,9.5\n46,80,9.0\n46,81,8.5\n46,82,8.0\n46,83,7.5\n46,84,7.0\n46,85,6.5\n46,86,6.0\n46,87,5.5\n46,88,5.0\n46,89,4.5\n46,90,4.0\n46,91,3.5\n46,92,3.0\n46,93,2.5\n46,94,2.0\n46,95,1.5\n46,96,1.0\n46,97,1.5\n46,98,2.0\n46,99,2.5\n46,100,12.0\n46,101,11.5\n46,102,11.0\n46,103,10.5\n46,104,10.0\n46,105,9.5\n46,106,9.0\n46,107,8.5\n46,108,8.0\n46,109,7.5\n46,110,7.0\n46,111,6.5\n46,112,6.0\n46,113,5.5\n46,114,5.0\n46,115,4.5\n46,116,4.0\n46,117,3.5\n46,118,3.0\n46,119,2.5\n46,120,2.0\n46,121,1.5\n46,122,2.0\n46,123,2.5\n46,124,3.0\n46,125,12.5\n46,126,12.0\n46,127,11.5\n46,128,11.0\n46,129,10.5\n46,130,10.0\n46,131,9.5\n46,132,9.0\n46,133,8.5\n46,134,8.0\n46,135,7.5\n46,136,7.0\n46,137,6.5\n46,138,6.0\n46,139,5.5\n46,140,5.0\n46,141,4.5\n46,142,4.0\n46,143,3.5\n46,144,3.0\n46,145,2.5\n46,146,2.0\n46,147,2.5\n46,148,3.0\n46,149,3.5\n46,150,13.0\n46,151,12.5\n46,152,12.0\n46,153,11.5\n46,154,11.0\n46,155,10.5\n46,156,10.0\n46,157,9.5\n46,158,9.0\n46,159,8.5\n46,160,8.0\n46,161,7.5\n46,162,7.0\n46,163,6.5\n46,164,6.0\n46,165,5.5\n46,166,5.0\n46,167,4.5\n46,168,4.0\n46,169,3.5\n46,170,3.0\n46,171,2.5\n46,172,3.0\n46,173,3.5\n46,174,4.0\n46,175,13.5\n46,176,13.0\n46,177,12.5\n46,178,12.0\n46,179,11.5\n46,180,11.0\n46,181,10.5\n46,182,10.0\n46,183,9.5\n46,184,9.0\n46,185,8.5\n46,186,8.0\n46,187,7.5\n46,188,7.0\n46,189,6.5\n46,190,6.0\n46,191,5.5\n46,192,5.0\n46,193,4.5\n46,194,4.0\n46,195,3.5\n46,196,3.0\n46,197,3.5\n46,198,4.0\n46,199,4.5\n46,200,14.0\n46,201,13.5\n46,202,13.0\n46,203,12.5\n46,204,12.0\n46,205,11.5\n46,206,11.0\n46,207,10.5\n46,208,10.0\n46,209,9.5\n46,210,9.0\n46,211,8.5\n46,212,8.0\n46,213,7.5\n46,214,7.0\n46,215,6.5\n46,216,6.0\n46,217,5.5\n46,218,5.0\n46,219,4.5\n46,220,4.0\n46,221,3.5\n46,222,4.0\n46,223,4.5\n46,224,5.0\n46,225,14.5\n46,226,14.0\n46,227,13.5\n46,228,13.0\n46,229,12.5\n46,230,12.0\n46,231,11.5\n46,232,11.0\n46,233,10.5\n46,234,10.0\n46,235,9.5\n46,236,9.0\n46,237,8.5\n46,238,8.0\n46,239,7.5\n46,240,7.0\n46,241,6.5\n46,242,6.0\n46,243,5.5\n46,244,5.0\n46,245,4.5\n46,246,4.0\n46,247,4.5\n46,248,5.0\n46,249,5.5\n46,250,15.0\n46,251,14.5\n46,252,14.0\n46,253,13.5\n46,254,13.0\n46,255,12.5\n46,256,12.0\n46,257,11.5\n46,258,11.0\n46,259,10.5\n46,260,10.0\n46,261,9.5\n46,262,9.0\n46,263,8.5\n46,264,8.0\n46,265,7.5\n46,266,7.0\n46,267,6.5\n46,268,6.0\n46,269,5.5\n46,270,5.0\n46,271,4.5\n46,272,5.0\n46,273,5.5\n46,274,6.0\n46,275,15.5\n46,276,15.0\n46,277,14.5\n46,278,14.0\n46,279,13.5\n46,280,13.0\n46,281,12.5\n46,282,12.0\n46,283,11.5\n46,284,11.0\n46,285,10.5\n46,286,10.0\n46,287,9.5\n46,288,9.0\n46,289,8.5\n46,290,8.0\n46,291,7.5\n46,292,7.0\n46,293,6.5\n46,294,6.0\n46,295,5.5\n46,296,5.0\n46,297,5.5\n46,298,6.0\n46,299,6.5\n46,300,16.0\n46,301,15.5\n46,302,15.0\n46,303,14.5\n46,304,14.0\n46,305,13.5\n46,306,13.0\n46,307,12.5\n46,308,12.0\n46,309,11.5\n46,310,11.0\n46,311,10.5\n46,312,10.0\n46,313,9.5\n46,314,9.0\n46,315,8.5\n46,316,8.0\n46,317,7.5\n46,318,7.0\n46,319,6.5\n46,320,6.0\n46,321,5.5\n46,322,6.0\n46,323,6.5\n46,324,7.0\n46,325,16.5\n46,326,16.0\n46,327,15.5\n46,328,15.0\n46,329,14.5\n46,330,14.0\n46,331,13.5\n46,332,13.0\n46,333,12.5\n46,334,12.0\n46,335,11.5\n46,336,11.0\n46,337,10.5\n46,338,10.0\n46,339,9.5\n46,340,9.0\n46,341,8.5\n46,342,8.0\n46,343,7.5\n46,344,7.0\n46,345,6.5\n46,346,6.0\n46,347,6.5\n46,348,7.0\n46,349,7.5\n46,350,17.0\n46,351,16.5\n46,352,16.0\n46,353,15.5\n46,354,15.0\n46,355,14.5\n46,356,14.0\n46,357,13.5\n46,358,13.0\n46,359,12.5\n46,360,12.0\n46,361,11.5\n46,362,11.0\n46,363,10.5\n46,364,10.0\n46,365,9.5\n46,366,9.0\n46,367,8.5\n46,368,8.0\n46,369,7.5\n46,370,7.0\n46,371,6.5\n46,372,7.0\n46,373,7.5\n46,374,8.0\n46,375,17.5\n46,376,17.0\n46,377,16.5\n46,378,16.0\n46,379,15.5\n46,380,15.0\n46,381,14.5\n46,382,14.0\n46,383,13.5\n46,384,13.0\n46,385,12.5\n46,386,12.0\n46,387,11.5\n46,388,11.0\n46,389,10.5\n46,390,10.0\n46,391,9.5\n46,392,9.0\n46,393,8.5\n46,394,8.0\n46,395,7.5\n46,396,7.0\n46,397,7.5\n46,398,8.0\n46,399,8.5\n46,400,18.0\n46,401,17.5\n46,402,17.0\n46,403,16.5\n46,404,16.0\n46,405,15.5\n46,406,15.0\n46,407,14.5\n46,408,14.0\n46,409,13.5\n46,410,13.0\n46,411,12.5\n46,412,12.0\n46,413,11.5\n46,414,11.0\n46,415,10.5\n46,416,10.0\n46,417,9.5\n46,418,9.0\n46,419,8.5\n46,420,8.0\n46,421,7.5\n46,422,8.0\n46,423,8.5\n46,424,9.0\n46,425,18.5\n46,426,18.0\n46,427,17.5\n46,428,17.0\n46,429,16.5\n46,430,16.0\n46,431,15.5\n46,432,15.0\n46,433,14.5\n46,434,14.0\n46,435,13.5\n46,436,13.0\n46,437,12.5\n46,438,12.0\n46,439,11.5\n46,440,11.0\n46,441,10.5\n46,442,10.0\n46,443,9.5\n46,444,9.0\n46,445,8.5\n46,446,8.0\n46,447,8.5\n46,448,9.0\n46,449,9.5\n46,450,19.0\n46,451,18.5\n46,452,18.0\n46,453,17.5\n46,454,17.0\n46,455,16.5\n46,456,16.0\n46,457,15.5\n46,458,15.0\n46,459,14.5\n46,460,14.0\n46,461,13.5\n46,462,13.0\n46,463,12.5\n46,464,12.0\n46,465,11.5\n46,466,11.0\n46,467,10.5\n46,468,10.0\n46,469,9.5\n46,470,9.0\n46,471,8.5\n46,472,9.0\n46,473,9.5\n46,474,10.0\n46,475,19.5\n46,476,19.0\n46,477,18.5\n46,478,18.0\n46,479,17.5\n46,480,17.0\n46,481,16.5\n46,482,16.0\n46,483,15.5\n46,484,15.0\n46,485,14.5\n46,486,14.0\n46,487,13.5\n46,488,13.0\n46,489,12.5\n46,490,12.0\n46,491,11.5\n46,492,11.0\n46,493,10.5\n46,494,10.0\n46,495,9.5\n46,496,9.0\n46,497,9.5\n46,498,10.0\n46,499,10.5\n46,500,20.0\n46,501,19.5\n46,502,19.0\n46,503,18.5\n46,504,18.0\n46,505,17.5\n46,506,17.0\n46,507,16.5\n46,508,16.0\n46,509,15.5\n46,510,15.0\n46,511,14.5\n46,512,14.0\n46,513,13.5\n46,514,13.0\n46,515,12.5\n46,516,12.0\n46,517,11.5\n46,518,11.0\n46,519,10.5\n46,520,10.0\n46,521,9.5\n46,522,10.0\n46,523,10.5\n46,524,11.0\n46,525,20.5\n46,526,20.0\n46,527,19.5\n46,528,19.0\n46,529,18.5\n46,530,18.0\n46,531,17.5\n46,532,17.0\n46,533,16.5\n46,534,16.0\n46,535,15.5\n46,536,15.0\n46,537,14.5\n46,538,14.0\n46,539,13.5\n46,540,13.0\n46,541,12.5\n46,542,12.0\n46,543,11.5\n46,544,11.0\n46,545,10.5\n46,546,10.0\n46,547,10.5\n46,548,11.0\n46,549,11.5\n46,550,21.0\n46,551,20.5\n46,552,20.0\n46,553,19.5\n46,554,19.0\n46,555,18.5\n46,556,18.0\n46,557,17.5\n46,558,17.0\n46,559,16.5\n46,560,16.0\n46,561,15.5\n46,562,15.0\n46,563,14.5\n46,564,14.0\n46,565,13.5\n46,566,13.0\n46,567,12.5\n46,568,12.0\n46,569,11.5\n46,570,11.0\n46,571,10.5\n46,572,11.0\n46,573,11.5\n46,574,12.0\n46,575,21.5\n46,576,21.0\n46,577,20.5\n46,578,20.0\n46,579,19.5\n46,580,19.0\n46,581,18.5\n46,582,18.0\n46,583,17.5\n46,584,17.0\n46,585,16.5\n46,586,16.0\n46,587,15.5\n46,588,15.0\n46,589,14.5\n46,590,14.0\n46,591,13.5\n46,592,13.0\n46,593,12.5\n46,594,12.0\n46,595,11.5\n46,596,11.0\n46,597,11.5\n46,598,12.0\n46,599,12.5\n46,600,22.0\n46,601,21.5\n46,602,21.0\n46,603,20.5\n46,604,20.0\n46,605,19.5\n46,606,19.0\n46,607,18.5\n46,608,18.0\n46,609,17.5\n46,610,17.0\n46,611,16.5\n46,612,16.0\n46,613,15.5\n46,614,15.0\n46,615,14.5\n46,616,14.0\n46,617,13.5\n46,618,13.0\n46,619,12.5\n46,620,12.0\n46,621,11.5\n46,622,12.0\n46,623,12.5\n46,624,13.0\n47,0,11.5\n47,1,11.0\n47,2,10.5\n47,3,10.0\n47,4,9.5\n47,5,9.0\n47,6,8.5\n47,7,8.0\n47,8,7.5\n47,9,7.0\n47,10,6.5\n47,11,6.0\n47,12,5.5\n47,13,5.0\n47,14,4.5\n47,15,4.0\n47,16,3.5\n47,17,3.0\n47,18,2.5\n47,19,2.0\n47,20,1.5\n47,21,1.0\n47,22,0.5\n47,23,1.0\n47,24,1.5\n47,25,11.0\n47,26,10.5\n47,27,10.0\n47,28,9.5\n47,29,9.0\n47,30,8.5\n47,31,8.0\n47,32,7.5\n47,33,7.0\n47,34,6.5\n47,35,6.0\n47,36,5.5\n47,37,5.0\n47,38,4.5\n47,39,4.0\n47,40,3.5\n47,41,3.0\n47,42,2.5\n47,43,2.0\n47,44,1.5\n47,45,1.0\n47,46,0.5\n47,47,0\n47,48,0.5\n47,49,1.0\n47,50,11.5\n47,51,11.0\n47,52,10.5\n47,53,10.0\n47,54,9.5\n47,55,9.0\n47,56,8.5\n47,57,8.0\n47,58,7.5\n47,59,7.0\n47,60,6.5\n47,61,6.0\n47,62,5.5\n47,63,5.0\n47,64,4.5\n47,65,4.0\n47,66,3.5\n47,67,3.0\n47,68,2.5\n47,69,2.0\n47,70,1.5\n47,71,1.0\n47,72,0.5\n47,73,1.0\n47,74,1.5\n47,75,12.0\n47,76,11.5\n47,77,11.0\n47,78,10.5\n47,79,10.0\n47,80,9.5\n47,81,9.0\n47,82,8.5\n47,83,8.0\n47,84,7.5\n47,85,7.0\n47,86,6.5\n47,87,6.0\n47,88,5.5\n47,89,5.0\n47,90,4.5\n47,91,4.0\n47,92,3.5\n47,93,3.0\n47,94,2.5\n47,95,2.0\n47,96,1.5\n47,97,1.0\n47,98,1.5\n47,99,2.0\n47,100,12.5\n47,101,12.0\n47,102,11.5\n47,103,11.0\n47,104,10.5\n47,105,10.0\n47,106,9.5\n47,107,9.0\n47,108,8.5\n47,109,8.0\n47,110,7.5\n47,111,7.0\n47,112,6.5\n47,113,6.0\n47,114,5.5\n47,115,5.0\n47,116,4.5\n47,117,4.0\n47,118,3.5\n47,119,3.0\n47,120,2.5\n47,121,2.0\n47,122,1.5\n47,123,2.0\n47,124,2.5\n47,125,13.0\n47,126,12.5\n47,127,12.0\n47,128,11.5\n47,129,11.0\n47,130,10.5\n47,131,10.0\n47,132,9.5\n47,133,9.0\n47,134,8.5\n47,135,8.0\n47,136,7.5\n47,137,7.0\n47,138,6.5\n47,139,6.0\n47,140,5.5\n47,141,5.0\n47,142,4.5\n47,143,4.0\n47,144,3.5\n47,145,3.0\n47,146,2.5\n47,147,2.0\n47,148,2.5\n47,149,3.0\n47,150,13.5\n47,151,13.0\n47,152,12.5\n47,153,12.0\n47,154,11.5\n47,155,11.0\n47,156,10.5\n47,157,10.0\n47,158,9.5\n47,159,9.0\n47,160,8.5\n47,161,8.0\n47,162,7.5\n47,163,7.0\n47,164,6.5\n47,165,6.0\n47,166,5.5\n47,167,5.0\n47,168,4.5\n47,169,4.0\n47,170,3.5\n47,171,3.0\n47,172,2.5\n47,173,3.0\n47,174,3.5\n47,175,14.0\n47,176,13.5\n47,177,13.0\n47,178,12.5\n47,179,12.0\n47,180,11.5\n47,181,11.0\n47,182,10.5\n47,183,10.0\n47,184,9.5\n47,185,9.0\n47,186,8.5\n47,187,8.0\n47,188,7.5\n47,189,7.0\n47,190,6.5\n47,191,6.0\n47,192,5.5\n47,193,5.0\n47,194,4.5\n47,195,4.0\n47,196,3.5\n47,197,3.0\n47,198,3.5\n47,199,4.0\n47,200,14.5\n47,201,14.0\n47,202,13.5\n47,203,13.0\n47,204,12.5\n47,205,12.0\n47,206,11.5\n47,207,11.0\n47,208,10.5\n47,209,10.0\n47,210,9.5\n47,211,9.0\n47,212,8.5\n47,213,8.0\n47,214,7.5\n47,215,7.0\n47,216,6.5\n47,217,6.0\n47,218,5.5\n47,219,5.0\n47,220,4.5\n47,221,4.0\n47,222,3.5\n47,223,4.0\n47,224,4.5\n47,225,15.0\n47,226,14.5\n47,227,14.0\n47,228,13.5\n47,229,13.0\n47,230,12.5\n47,231,12.0\n47,232,11.5\n47,233,11.0\n47,234,10.5\n47,235,10.0\n47,236,9.5\n47,237,9.0\n47,238,8.5\n47,239,8.0\n47,240,7.5\n47,241,7.0\n47,242,6.5\n47,243,6.0\n47,244,5.5\n47,245,5.0\n47,246,4.5\n47,247,4.0\n47,248,4.5\n47,249,5.0\n47,250,15.5\n47,251,15.0\n47,252,14.5\n47,253,14.0\n47,254,13.5\n47,255,13.0\n47,256,12.5\n47,257,12.0\n47,258,11.5\n47,259,11.0\n47,260,10.5\n47,261,10.0\n47,262,9.5\n47,263,9.0\n47,264,8.5\n47,265,8.0\n47,266,7.5\n47,267,7.0\n47,268,6.5\n47,269,6.0\n47,270,5.5\n47,271,5.0\n47,272,4.5\n47,273,5.0\n47,274,5.5\n47,275,16.0\n47,276,15.5\n47,277,15.0\n47,278,14.5\n47,279,14.0\n47,280,13.5\n47,281,13.0\n47,282,12.5\n47,283,12.0\n47,284,11.5\n47,285,11.0\n47,286,10.5\n47,287,10.0\n47,288,9.5\n47,289,9.0\n47,290,8.5\n47,291,8.0\n47,292,7.5\n47,293,7.0\n47,294,6.5\n47,295,6.0\n47,296,5.5\n47,297,5.0\n47,298,5.5\n47,299,6.0\n47,300,16.5\n47,301,16.0\n47,302,15.5\n47,303,15.0\n47,304,14.5\n47,305,14.0\n47,306,13.5\n47,307,13.0\n47,308,12.5\n47,309,12.0\n47,310,11.5\n47,311,11.0\n47,312,10.5\n47,313,10.0\n47,314,9.5\n47,315,9.0\n47,316,8.5\n47,317,8.0\n47,318,7.5\n47,319,7.0\n47,320,6.5\n47,321,6.0\n47,322,5.5\n47,323,6.0\n47,324,6.5\n47,325,17.0\n47,326,16.5\n47,327,16.0\n47,328,15.5\n47,329,15.0\n47,330,14.5\n47,331,14.0\n47,332,13.5\n47,333,13.0\n47,334,12.5\n47,335,12.0\n47,336,11.5\n47,337,11.0\n47,338,10.5\n47,339,10.0\n47,340,9.5\n47,341,9.0\n47,342,8.5\n47,343,8.0\n47,344,7.5\n47,345,7.0\n47,346,6.5\n47,347,6.0\n47,348,6.5\n47,349,7.0\n47,350,17.5\n47,351,17.0\n47,352,16.5\n47,353,16.0\n47,354,15.5\n47,355,15.0\n47,356,14.5\n47,357,14.0\n47,358,13.5\n47,359,13.0\n47,360,12.5\n47,361,12.0\n47,362,11.5\n47,363,11.0\n47,364,10.5\n47,365,10.0\n47,366,9.5\n47,367,9.0\n47,368,8.5\n47,369,8.0\n47,370,7.5\n47,371,7.0\n47,372,6.5\n47,373,7.0\n47,374,7.5\n47,375,18.0\n47,376,17.5\n47,377,17.0\n47,378,16.5\n47,379,16.0\n47,380,15.5\n47,381,15.0\n47,382,14.5\n47,383,14.0\n47,384,13.5\n47,385,13.0\n47,386,12.5\n47,387,12.0\n47,388,11.5\n47,389,11.0\n47,390,10.5\n47,391,10.0\n47,392,9.5\n47,393,9.0\n47,394,8.5\n47,395,8.0\n47,396,7.5\n47,397,7.0\n47,398,7.5\n47,399,8.0\n47,400,18.5\n47,401,18.0\n47,402,17.5\n47,403,17.0\n47,404,16.5\n47,405,16.0\n47,406,15.5\n47,407,15.0\n47,408,14.5\n47,409,14.0\n47,410,13.5\n47,411,13.0\n47,412,12.5\n47,413,12.0\n47,414,11.5\n47,415,11.0\n47,416,10.5\n47,417,10.0\n47,418,9.5\n47,419,9.0\n47,420,8.5\n47,421,8.0\n47,422,7.5\n47,423,8.0\n47,424,8.5\n47,425,19.0\n47,426,18.5\n47,427,18.0\n47,428,17.5\n47,429,17.0\n47,430,16.5\n47,431,16.0\n47,432,15.5\n47,433,15.0\n47,434,14.5\n47,435,14.0\n47,436,13.5\n47,437,13.0\n47,438,12.5\n47,439,12.0\n47,440,11.5\n47,441,11.0\n47,442,10.5\n47,443,10.0\n47,444,9.5\n47,445,9.0\n47,446,8.5\n47,447,8.0\n47,448,8.5\n47,449,9.0\n47,450,19.5\n47,451,19.0\n47,452,18.5\n47,453,18.0\n47,454,17.5\n47,455,17.0\n47,456,16.5\n47,457,16.0\n47,458,15.5\n47,459,15.0\n47,460,14.5\n47,461,14.0\n47,462,13.5\n47,463,13.0\n47,464,12.5\n47,465,12.0\n47,466,11.5\n47,467,11.0\n47,468,10.5\n47,469,10.0\n47,470,9.5\n47,471,9.0\n47,472,8.5\n47,473,9.0\n47,474,9.5\n47,475,20.0\n47,476,19.5\n47,477,19.0\n47,478,18.5\n47,479,18.0\n47,480,17.5\n47,481,17.0\n47,482,16.5\n47,483,16.0\n47,484,15.5\n47,485,15.0\n47,486,14.5\n47,487,14.0\n47,488,13.5\n47,489,13.0\n47,490,12.5\n47,491,12.0\n47,492,11.5\n47,493,11.0\n47,494,10.5\n47,495,10.0\n47,496,9.5\n47,497,9.0\n47,498,9.5\n47,499,10.0\n47,500,20.5\n47,501,20.0\n47,502,19.5\n47,503,19.0\n47,504,18.5\n47,505,18.0\n47,506,17.5\n47,507,17.0\n47,508,16.5\n47,509,16.0\n47,510,15.5\n47,511,15.0\n47,512,14.5\n47,513,14.0\n47,514,13.5\n47,515,13.0\n47,516,12.5\n47,517,12.0\n47,518,11.5\n47,519,11.0\n47,520,10.5\n47,521,10.0\n47,522,9.5\n47,523,10.0\n47,524,10.5\n47,525,21.0\n47,526,20.5\n47,527,20.0\n47,528,19.5\n47,529,19.0\n47,530,18.5\n47,531,18.0\n47,532,17.5\n47,533,17.0\n47,534,16.5\n47,535,16.0\n47,536,15.5\n47,537,15.0\n47,538,14.5\n47,539,14.0\n47,540,13.5\n47,541,13.0\n47,542,12.5\n47,543,12.0\n47,544,11.5\n47,545,11.0\n47,546,10.5\n47,547,10.0\n47,548,10.5\n47,549,11.0\n47,550,21.5\n47,551,21.0\n47,552,20.5\n47,553,20.0\n47,554,19.5\n47,555,19.0\n47,556,18.5\n47,557,18.0\n47,558,17.5\n47,559,17.0\n47,560,16.5\n47,561,16.0\n47,562,15.5\n47,563,15.0\n47,564,14.5\n47,565,14.0\n47,566,13.5\n47,567,13.0\n47,568,12.5\n47,569,12.0\n47,570,11.5\n47,571,11.0\n47,572,10.5\n47,573,11.0\n47,574,11.5\n47,575,22.0\n47,576,21.5\n47,577,21.0\n47,578,20.5\n47,579,20.0\n47,580,19.5\n47,581,19.0\n47,582,18.5\n47,583,18.0\n47,584,17.5\n47,585,17.0\n47,586,16.5\n47,587,16.0\n47,588,15.5\n47,589,15.0\n47,590,14.5\n47,591,14.0\n47,592,13.5\n47,593,13.0\n47,594,12.5\n47,595,12.0\n47,596,11.5\n47,597,11.0\n47,598,11.5\n47,599,12.0\n47,600,22.5\n47,601,22.0\n47,602,21.5\n47,603,21.0\n47,604,20.5\n47,605,20.0\n47,606,19.5\n47,607,19.0\n47,608,18.5\n47,609,18.0\n47,610,17.5\n47,611,17.0\n47,612,16.5\n47,613,16.0\n47,614,15.5\n47,615,15.0\n47,616,14.5\n47,617,14.0\n47,618,13.5\n47,619,13.0\n47,620,12.5\n47,621,12.0\n47,622,11.5\n47,623,12.0\n47,624,12.5\n48,0,12.0\n48,1,11.5\n48,2,11.0\n48,3,10.5\n48,4,10.0\n48,5,9.5\n48,6,9.0\n48,7,8.5\n48,8,8.0\n48,9,7.5\n48,10,7.0\n48,11,6.5\n48,12,6.0\n48,13,5.5\n48,14,5.0\n48,15,4.5\n48,16,4.0\n48,17,3.5\n48,18,3.0\n48,19,2.5\n48,20,2.0\n48,21,1.5\n48,22,1.0\n48,23,0.5\n48,24,1.0\n48,25,11.5\n48,26,11.0\n48,27,10.5\n48,28,10.0\n48,29,9.5\n48,30,9.0\n48,31,8.5\n48,32,8.0\n48,33,7.5\n48,34,7.0\n48,35,6.5\n48,36,6.0\n48,37,5.5\n48,38,5.0\n48,39,4.5\n48,40,4.0\n48,41,3.5\n48,42,3.0\n48,43,2.5\n48,44,2.0\n48,45,1.5\n48,46,1.0\n48,47,0.5\n48,48,0\n48,49,0.5\n48,50,12.0\n48,51,11.5\n48,52,11.0\n48,53,10.5\n48,54,10.0\n48,55,9.5\n48,56,9.0\n48,57,8.5\n48,58,8.0\n48,59,7.5\n48,60,7.0\n48,61,6.5\n48,62,6.0\n48,63,5.5\n48,64,5.0\n48,65,4.5\n48,66,4.0\n48,67,3.5\n48,68,3.0\n48,69,2.5\n48,70,2.0\n48,71,1.5\n48,72,1.0\n48,73,0.5\n48,74,1.0\n48,75,12.5\n48,76,12.0\n48,77,11.5\n48,78,11.0\n48,79,10.5\n48,80,10.0\n48,81,9.5\n48,82,9.0\n48,83,8.5\n48,84,8.0\n48,85,7.5\n48,86,7.0\n48,87,6.5\n48,88,6.0\n48,89,5.5\n48,90,5.0\n48,91,4.5\n48,92,4.0\n48,93,3.5\n48,94,3.0\n48,95,2.5\n48,96,2.0\n48,97,1.5\n48,98,1.0\n48,99,1.5\n48,100,13.0\n48,101,12.5\n48,102,12.0\n48,103,11.5\n48,104,11.0\n48,105,10.5\n48,106,10.0\n48,107,9.5\n48,108,9.0\n48,109,8.5\n48,110,8.0\n48,111,7.5\n48,112,7.0\n48,113,6.5\n48,114,6.0\n48,115,5.5\n48,116,5.0\n48,117,4.5\n48,118,4.0\n48,119,3.5\n48,120,3.0\n48,121,2.5\n48,122,2.0\n48,123,1.5\n48,124,2.0\n48,125,13.5\n48,126,13.0\n48,127,12.5\n48,128,12.0\n48,129,11.5\n48,130,11.0\n48,131,10.5\n48,132,10.0\n48,133,9.5\n48,134,9.0\n48,135,8.5\n48,136,8.0\n48,137,7.5\n48,138,7.0\n48,139,6.5\n48,140,6.0\n48,141,5.5\n48,142,5.0\n48,143,4.5\n48,144,4.0\n48,145,3.5\n48,146,3.0\n48,147,2.5\n48,148,2.0\n48,149,2.5\n48,150,14.0\n48,151,13.5\n48,152,13.0\n48,153,12.5\n48,154,12.0\n48,155,11.5\n48,156,11.0\n48,157,10.5\n48,158,10.0\n48,159,9.5\n48,160,9.0\n48,161,8.5\n48,162,8.0\n48,163,7.5\n48,164,7.0\n48,165,6.5\n48,166,6.0\n48,167,5.5\n48,168,5.0\n48,169,4.5\n48,170,4.0\n48,171,3.5\n48,172,3.0\n48,173,2.5\n48,174,3.0\n48,175,14.5\n48,176,14.0\n48,177,13.5\n48,178,13.0\n48,179,12.5\n48,180,12.0\n48,181,11.5\n48,182,11.0\n48,183,10.5\n48,184,10.0\n48,185,9.5\n48,186,9.0\n48,187,8.5\n48,188,8.0\n48,189,7.5\n48,190,7.0\n48,191,6.5\n48,192,6.0\n48,193,5.5\n48,194,5.0\n48,195,4.5\n48,196,4.0\n48,197,3.5\n48,198,3.0\n48,199,3.5\n48,200,15.0\n48,201,14.5\n48,202,14.0\n48,203,13.5\n48,204,13.0\n48,205,12.5\n48,206,12.0\n48,207,11.5\n48,208,11.0\n48,209,10.5\n48,210,10.0\n48,211,9.5\n48,212,9.0\n48,213,8.5\n48,214,8.0\n48,215,7.5\n48,216,7.0\n48,217,6.5\n48,218,6.0\n48,219,5.5\n48,220,5.0\n48,221,4.5\n48,222,4.0\n48,223,3.5\n48,224,4.0\n48,225,15.5\n48,226,15.0\n48,227,14.5\n48,228,14.0\n48,229,13.5\n48,230,13.0\n48,231,12.5\n48,232,12.0\n48,233,11.5\n48,234,11.0\n48,235,10.5\n48,236,10.0\n48,237,9.5\n48,238,9.0\n48,239,8.5\n48,240,8.0\n48,241,7.5\n48,242,7.0\n48,243,6.5\n48,244,6.0\n48,245,5.5\n48,246,5.0\n48,247,4.5\n48,248,4.0\n48,249,4.5\n48,250,16.0\n48,251,15.5\n48,252,15.0\n48,253,14.5\n48,254,14.0\n48,255,13.5\n48,256,13.0\n48,257,12.5\n48,258,12.0\n48,259,11.5\n48,260,11.0\n48,261,10.5\n48,262,10.0\n48,263,9.5\n48,264,9.0\n48,265,8.5\n48,266,8.0\n48,267,7.5\n48,268,7.0\n48,269,6.5\n48,270,6.0\n48,271,5.5\n48,272,5.0\n48,273,4.5\n48,274,5.0\n48,275,16.5\n48,276,16.0\n48,277,15.5\n48,278,15.0\n48,279,14.5\n48,280,14.0\n48,281,13.5\n48,282,13.0\n48,283,12.5\n48,284,12.0\n48,285,11.5\n48,286,11.0\n48,287,10.5\n48,288,10.0\n48,289,9.5\n48,290,9.0\n48,291,8.5\n48,292,8.0\n48,293,7.5\n48,294,7.0\n48,295,6.5\n48,296,6.0\n48,297,5.5\n48,298,5.0\n48,299,5.5\n48,300,17.0\n48,301,16.5\n48,302,16.0\n48,303,15.5\n48,304,15.0\n48,305,14.5\n48,306,14.0\n48,307,13.5\n48,308,13.0\n48,309,12.5\n48,310,12.0\n48,311,11.5\n48,312,11.0\n48,313,10.5\n48,314,10.0\n48,315,9.5\n48,316,9.0\n48,317,8.5\n48,318,8.0\n48,319,7.5\n48,320,7.0\n48,321,6.5\n48,322,6.0\n48,323,5.5\n48,324,6.0\n48,325,17.5\n48,326,17.0\n48,327,16.5\n48,328,16.0\n48,329,15.5\n48,330,15.0\n48,331,14.5\n48,332,14.0\n48,333,13.5\n48,334,13.0\n48,335,12.5\n48,336,12.0\n48,337,11.5\n48,338,11.0\n48,339,10.5\n48,340,10.0\n48,341,9.5\n48,342,9.0\n48,343,8.5\n48,344,8.0\n48,345,7.5\n48,346,7.0\n48,347,6.5\n48,348,6.0\n48,349,6.5\n48,350,18.0\n48,351,17.5\n48,352,17.0\n48,353,16.5\n48,354,16.0\n48,355,15.5\n48,356,15.0\n48,357,14.5\n48,358,14.0\n48,359,13.5\n48,360,13.0\n48,361,12.5\n48,362,12.0\n48,363,11.5\n48,364,11.0\n48,365,10.5\n48,366,10.0\n48,367,9.5\n48,368,9.0\n48,369,8.5\n48,370,8.0\n48,371,7.5\n48,372,7.0\n48,373,6.5\n48,374,7.0\n48,375,18.5\n48,376,18.0\n48,377,17.5\n48,378,17.0\n48,379,16.5\n48,380,16.0\n48,381,15.5\n48,382,15.0\n48,383,14.5\n48,384,14.0\n48,385,13.5\n48,386,13.0\n48,387,12.5\n48,388,12.0\n48,389,11.5\n48,390,11.0\n48,391,10.5\n48,392,10.0\n48,393,9.5\n48,394,9.0\n48,395,8.5\n48,396,8.0\n48,397,7.5\n48,398,7.0\n48,399,7.5\n48,400,19.0\n48,401,18.5\n48,402,18.0\n48,403,17.5\n48,404,17.0\n48,405,16.5\n48,406,16.0\n48,407,15.5\n48,408,15.0\n48,409,14.5\n48,410,14.0\n48,411,13.5\n48,412,13.0\n48,413,12.5\n48,414,12.0\n48,415,11.5\n48,416,11.0\n48,417,10.5\n48,418,10.0\n48,419,9.5\n48,420,9.0\n48,421,8.5\n48,422,8.0\n48,423,7.5\n48,424,8.0\n48,425,19.5\n48,426,19.0\n48,427,18.5\n48,428,18.0\n48,429,17.5\n48,430,17.0\n48,431,16.5\n48,432,16.0\n48,433,15.5\n48,434,15.0\n48,435,14.5\n48,436,14.0\n48,437,13.5\n48,438,13.0\n48,439,12.5\n48,440,12.0\n48,441,11.5\n48,442,11.0\n48,443,10.5\n48,444,10.0\n48,445,9.5\n48,446,9.0\n48,447,8.5\n48,448,8.0\n48,449,8.5\n48,450,20.0\n48,451,19.5\n48,452,19.0\n48,453,18.5\n48,454,18.0\n48,455,17.5\n48,456,17.0\n48,457,16.5\n48,458,16.0\n48,459,15.5\n48,460,15.0\n48,461,14.5\n48,462,14.0\n48,463,13.5\n48,464,13.0\n48,465,12.5\n48,466,12.0\n48,467,11.5\n48,468,11.0\n48,469,10.5\n48,470,10.0\n48,471,9.5\n48,472,9.0\n48,473,8.5\n48,474,9.0\n48,475,20.5\n48,476,20.0\n48,477,19.5\n48,478,19.0\n48,479,18.5\n48,480,18.0\n48,481,17.5\n48,482,17.0\n48,483,16.5\n48,484,16.0\n48,485,15.5\n48,486,15.0\n48,487,14.5\n48,488,14.0\n48,489,13.5\n48,490,13.0\n48,491,12.5\n48,492,12.0\n48,493,11.5\n48,494,11.0\n48,495,10.5\n48,496,10.0\n48,497,9.5\n48,498,9.0\n48,499,9.5\n48,500,21.0\n48,501,20.5\n48,502,20.0\n48,503,19.5\n48,504,19.0\n48,505,18.5\n48,506,18.0\n48,507,17.5\n48,508,17.0\n48,509,16.5\n48,510,16.0\n48,511,15.5\n48,512,15.0\n48,513,14.5\n48,514,14.0\n48,515,13.5\n48,516,13.0\n48,517,12.5\n48,518,12.0\n48,519,11.5\n48,520,11.0\n48,521,10.5\n48,522,10.0\n48,523,9.5\n48,524,10.0\n48,525,21.5\n48,526,21.0\n48,527,20.5\n48,528,20.0\n48,529,19.5\n48,530,19.0\n48,531,18.5\n48,532,18.0\n48,533,17.5\n48,534,17.0\n48,535,16.5\n48,536,16.0\n48,537,15.5\n48,538,15.0\n48,539,14.5\n48,540,14.0\n48,541,13.5\n48,542,13.0\n48,543,12.5\n48,544,12.0\n48,545,11.5\n48,546,11.0\n48,547,10.5\n48,548,10.0\n48,549,10.5\n48,550,22.0\n48,551,21.5\n48,552,21.0\n48,553,20.5\n48,554,20.0\n48,555,19.5\n48,556,19.0\n48,557,18.5\n48,558,18.0\n48,559,17.5\n48,560,17.0\n48,561,16.5\n48,562,16.0\n48,563,15.5\n48,564,15.0\n48,565,14.5\n48,566,14.0\n48,567,13.5\n48,568,13.0\n48,569,12.5\n48,570,12.0\n48,571,11.5\n48,572,11.0\n48,573,10.5\n48,574,11.0\n48,575,22.5\n48,576,22.0\n48,577,21.5\n48,578,21.0\n48,579,20.5\n48,580,20.0\n48,581,19.5\n48,582,19.0\n48,583,18.5\n48,584,18.0\n48,585,17.5\n48,586,17.0\n48,587,16.5\n48,588,16.0\n48,589,15.5\n48,590,15.0\n48,591,14.5\n48,592,14.0\n48,593,13.5\n48,594,13.0\n48,595,12.5\n48,596,12.0\n48,597,11.5\n48,598,11.0\n48,599,11.5\n48,600,23.0\n48,601,22.5\n48,602,22.0\n48,603,21.5\n48,604,21.0\n48,605,20.5\n48,606,20.0\n48,607,19.5\n48,608,19.0\n48,609,18.5\n48,610,18.0\n48,611,17.5\n48,612,17.0\n48,613,16.5\n48,614,16.0\n48,615,15.5\n48,616,15.0\n48,617,14.5\n48,618,14.0\n48,619,13.5\n48,620,13.0\n48,621,12.5\n48,622,12.0\n48,623,11.5\n48,624,12.0\n49,0,12.5\n49,1,12.0\n49,2,11.5\n49,3,11.0\n49,4,10.5\n49,5,10.0\n49,6,9.5\n49,7,9.0\n49,8,8.5\n49,9,8.0\n49,10,7.5\n49,11,7.0\n49,12,6.5\n49,13,6.0\n49,14,5.5\n49,15,5.0\n49,16,4.5\n49,17,4.0\n49,18,3.5\n49,19,3.0\n49,20,2.5\n49,21,2.0\n49,22,1.5\n49,23,1.0\n49,24,0.5\n49,25,12.0\n49,26,11.5\n49,27,11.0\n49,28,10.5\n49,29,10.0\n49,30,9.5\n49,31,9.0\n49,32,8.5\n49,33,8.0\n49,34,7.5\n49,35,7.0\n49,36,6.5\n49,37,6.0\n49,38,5.5\n49,39,5.0\n49,40,4.5\n49,41,4.0\n49,42,3.5\n49,43,3.0\n49,44,2.5\n49,45,2.0\n49,46,1.5\n49,47,1.0\n49,48,0.5\n49,49,0\n49,50,12.5\n49,51,12.0\n49,52,11.5\n49,53,11.0\n49,54,10.5\n49,55,10.0\n49,56,9.5\n49,57,9.0\n49,58,8.5\n49,59,8.0\n49,60,7.5\n49,61,7.0\n49,62,6.5\n49,63,6.0\n49,64,5.5\n49,65,5.0\n49,66,4.5\n49,67,4.0\n49,68,3.5\n49,69,3.0\n49,70,2.5\n49,71,2.0\n49,72,1.5\n49,73,1.0\n49,74,0.5\n49,75,13.0\n49,76,12.5\n49,77,12.0\n49,78,11.5\n49,79,11.0\n49,80,10.5\n49,81,10.0\n49,82,9.5\n49,83,9.0\n49,84,8.5\n49,85,8.0\n49,86,7.5\n49,87,7.0\n49,88,6.5\n49,89,6.0\n49,90,5.5\n49,91,5.0\n49,92,4.5\n49,93,4.0\n49,94,3.5\n49,95,3.0\n49,96,2.5\n49,97,2.0\n49,98,1.5\n49,99,1.0\n49,100,13.5\n49,101,13.0\n49,102,12.5\n49,103,12.0\n49,104,11.5\n49,105,11.0\n49,106,10.5\n49,107,10.0\n49,108,9.5\n49,109,9.0\n49,110,8.5\n49,111,8.0\n49,112,7.5\n49,113,7.0\n49,114,6.5\n49,115,6.0\n49,116,5.5\n49,117,5.0\n49,118,4.5\n49,119,4.0\n49,120,3.5\n49,121,3.0\n49,122,2.5\n49,123,2.0\n49,124,1.5\n49,125,14.0\n49,126,13.5\n49,127,13.0\n49,128,12.5\n49,129,12.0\n49,130,11.5\n49,131,11.0\n49,132,10.5\n49,133,10.0\n49,134,9.5\n49,135,9.0\n49,136,8.5\n49,137,8.0\n49,138,7.5\n49,139,7.0\n49,140,6.5\n49,141,6.0\n49,142,5.5\n49,143,5.0\n49,144,4.5\n49,145,4.0\n49,146,3.5\n49,147,3.0\n49,148,2.5\n49,149,2.0\n49,150,14.5\n49,151,14.0\n49,152,13.5\n49,153,13.0\n49,154,12.5\n49,155,12.0\n49,156,11.5\n49,157,11.0\n49,158,10.5\n49,159,10.0\n49,160,9.5\n49,161,9.0\n49,162,8.5\n49,163,8.0\n49,164,7.5\n49,165,7.0\n49,166,6.5\n49,167,6.0\n49,168,5.5\n49,169,5.0\n49,170,4.5\n49,171,4.0\n49,172,3.5\n49,173,3.0\n49,174,2.5\n49,175,15.0\n49,176,14.5\n49,177,14.0\n49,178,13.5\n49,179,13.0\n49,180,12.5\n49,181,12.0\n49,182,11.5\n49,183,11.0\n49,184,10.5\n49,185,10.0\n49,186,9.5\n49,187,9.0\n49,188,8.5\n49,189,8.0\n49,190,7.5\n49,191,7.0\n49,192,6.5\n49,193,6.0\n49,194,5.5\n49,195,5.0\n49,196,4.5\n49,197,4.0\n49,198,3.5\n49,199,3.0\n49,200,15.5\n49,201,15.0\n49,202,14.5\n49,203,14.0\n49,204,13.5\n49,205,13.0\n49,206,12.5\n49,207,12.0\n49,208,11.5\n49,209,11.0\n49,210,10.5\n49,211,10.0\n49,212,9.5\n49,213,9.0\n49,214,8.5\n49,215,8.0\n49,216,7.5\n49,217,7.0\n49,218,6.5\n49,219,6.0\n49,220,5.5\n49,221,5.0\n49,222,4.5\n49,223,4.0\n49,224,3.5\n49,225,16.0\n49,226,15.5\n49,227,15.0\n49,228,14.5\n49,229,14.0\n49,230,13.5\n49,231,13.0\n49,232,12.5\n49,233,12.0\n49,234,11.5\n49,235,11.0\n49,236,10.5\n49,237,10.0\n49,238,9.5\n49,239,9.0\n49,240,8.5\n49,241,8.0\n49,242,7.5\n49,243,7.0\n49,244,6.5\n49,245,6.0\n49,246,5.5\n49,247,5.0\n49,248,4.5\n49,249,4.0\n49,250,16.5\n49,251,16.0\n49,252,15.5\n49,253,15.0\n49,254,14.5\n49,255,14.0\n49,256,13.5\n49,257,13.0\n49,258,12.5\n49,259,12.0\n49,260,11.5\n49,261,11.0\n49,262,10.5\n49,263,10.0\n49,264,9.5\n49,265,9.0\n49,266,8.5\n49,267,8.0\n49,268,7.5\n49,269,7.0\n49,270,6.5\n49,271,6.0\n49,272,5.5\n49,273,5.0\n49,274,4.5\n49,275,17.0\n49,276,16.5\n49,277,16.0\n49,278,15.5\n49,279,15.0\n49,280,14.5\n49,281,14.0\n49,282,13.5\n49,283,13.0\n49,284,12.5\n49,285,12.0\n49,286,11.5\n49,287,11.0\n49,288,10.5\n49,289,10.0\n49,290,9.5\n49,291,9.0\n49,292,8.5\n49,293,8.0\n49,294,7.5\n49,295,7.0\n49,296,6.5\n49,297,6.0\n49,298,5.5\n49,299,5.0\n49,300,17.5\n49,301,17.0\n49,302,16.5\n49,303,16.0\n49,304,15.5\n49,305,15.0\n49,306,14.5\n49,307,14.0\n49,308,13.5\n49,309,13.0\n49,310,12.5\n49,311,12.0\n49,312,11.5\n49,313,11.0\n49,314,10.5\n49,315,10.0\n49,316,9.5\n49,317,9.0\n49,318,8.5\n49,319,8.0\n49,320,7.5\n49,321,7.0\n49,322,6.5\n49,323,6.0\n49,324,5.5\n49,325,18.0\n49,326,17.5\n49,327,17.0\n49,328,16.5\n49,329,16.0\n49,330,15.5\n49,331,15.0\n49,332,14.5\n49,333,14.0\n49,334,13.5\n49,335,13.0\n49,336,12.5\n49,337,12.0\n49,338,11.5\n49,339,11.0\n49,340,10.5\n49,341,10.0\n49,342,9.5\n49,343,9.0\n49,344,8.5\n49,345,8.0\n49,346,7.5\n49,347,7.0\n49,348,6.5\n49,349,6.0\n49,350,18.5\n49,351,18.0\n49,352,17.5\n49,353,17.0\n49,354,16.5\n49,355,16.0\n49,356,15.5\n49,357,15.0\n49,358,14.5\n49,359,14.0\n49,360,13.5\n49,361,13.0\n49,362,12.5\n49,363,12.0\n49,364,11.5\n49,365,11.0\n49,366,10.5\n49,367,10.0\n49,368,9.5\n49,369,9.0\n49,370,8.5\n49,371,8.0\n49,372,7.5\n49,373,7.0\n49,374,6.5\n49,375,19.0\n49,376,18.5\n49,377,18.0\n49,378,17.5\n49,379,17.0\n49,380,16.5\n49,381,16.0\n49,382,15.5\n49,383,15.0\n49,384,14.5\n49,385,14.0\n49,386,13.5\n49,387,13.0\n49,388,12.5\n49,389,12.0\n49,390,11.5\n49,391,11.0\n49,392,10.5\n49,393,10.0\n49,394,9.5\n49,395,9.0\n49,396,8.5\n49,397,8.0\n49,398,7.5\n49,399,7.0\n49,400,19.5\n49,401,19.0\n49,402,18.5\n49,403,18.0\n49,404,17.5\n49,405,17.0\n49,406,16.5\n49,407,16.0\n49,408,15.5\n49,409,15.0\n49,410,14.5\n49,411,14.0\n49,412,13.5\n49,413,13.0\n49,414,12.5\n49,415,12.0\n49,416,11.5\n49,417,11.0\n49,418,10.5\n49,419,10.0\n49,420,9.5\n49,421,9.0\n49,422,8.5\n49,423,8.0\n49,424,7.5\n49,425,20.0\n49,426,19.5\n49,427,19.0\n49,428,18.5\n49,429,18.0\n49,430,17.5\n49,431,17.0\n49,432,16.5\n49,433,16.0\n49,434,15.5\n49,435,15.0\n49,436,14.5\n49,437,14.0\n49,438,13.5\n49,439,13.0\n49,440,12.5\n49,441,12.0\n49,442,11.5\n49,443,11.0\n49,444,10.5\n49,445,10.0\n49,446,9.5\n49,447,9.0\n49,448,8.5\n49,449,8.0\n49,450,20.5\n49,451,20.0\n49,452,19.5\n49,453,19.0\n49,454,18.5\n49,455,18.0\n49,456,17.5\n49,457,17.0\n49,458,16.5\n49,459,16.0\n49,460,15.5\n49,461,15.0\n49,462,14.5\n49,463,14.0\n49,464,13.5\n49,465,13.0\n49,466,12.5\n49,467,12.0\n49,468,11.5\n49,469,11.0\n49,470,10.5\n49,471,10.0\n49,472,9.5\n49,473,9.0\n49,474,8.5\n49,475,21.0\n49,476,20.5\n49,477,20.0\n49,478,19.5\n49,479,19.0\n49,480,18.5\n49,481,18.0\n49,482,17.5\n49,483,17.0\n49,484,16.5\n49,485,16.0\n49,486,15.5\n49,487,15.0\n49,488,14.5\n49,489,14.0\n49,490,13.5\n49,491,13.0\n49,492,12.5\n49,493,12.0\n49,494,11.5\n49,495,11.0\n49,496,10.5\n49,497,10.0\n49,498,9.5\n49,499,9.0\n49,500,21.5\n49,501,21.0\n49,502,20.5\n49,503,20.0\n49,504,19.5\n49,505,19.0\n49,506,18.5\n49,507,18.0\n49,508,17.5\n49,509,17.0\n49,510,16.5\n49,511,16.0\n49,512,15.5\n49,513,15.0\n49,514,14.5\n49,515,14.0\n49,516,13.5\n49,517,13.0\n49,518,12.5\n49,519,12.0\n49,520,11.5\n49,521,11.0\n49,522,10.5\n49,523,10.0\n49,524,9.5\n49,525,22.0\n49,526,21.5\n49,527,21.0\n49,528,20.5\n49,529,20.0\n49,530,19.5\n49,531,19.0\n49,532,18.5\n49,533,18.0\n49,534,17.5\n49,535,17.0\n49,536,16.5\n49,537,16.0\n49,538,15.5\n49,539,15.0\n49,540,14.5\n49,541,14.0\n49,542,13.5\n49,543,13.0\n49,544,12.5\n49,545,12.0\n49,546,11.5\n49,547,11.0\n49,548,10.5\n49,549,10.0\n49,550,22.5\n49,551,22.0\n49,552,21.5\n49,553,21.0\n49,554,20.5\n49,555,20.0\n49,556,19.5\n49,557,19.0\n49,558,18.5\n49,559,18.0\n49,560,17.5\n49,561,17.0\n49,562,16.5\n49,563,16.0\n49,564,15.5\n49,565,15.0\n49,566,14.5\n49,567,14.0\n49,568,13.5\n49,569,13.0\n49,570,12.5\n49,571,12.0\n49,572,11.5\n49,573,11.0\n49,574,10.5\n49,575,23.0\n49,576,22.5\n49,577,22.0\n49,578,21.5\n49,579,21.0\n49,580,20.5\n49,581,20.0\n49,582,19.5\n49,583,19.0\n49,584,18.5\n49,585,18.0\n49,586,17.5\n49,587,17.0\n49,588,16.5\n49,589,16.0\n49,590,15.5\n49,591,15.0\n49,592,14.5\n49,593,14.0\n49,594,13.5\n49,595,13.0\n49,596,12.5\n49,597,12.0\n49,598,11.5\n49,599,11.0\n49,600,23.5\n49,601,23.0\n49,602,22.5\n49,603,22.0\n49,604,21.5\n49,605,21.0\n49,606,20.5\n49,607,20.0\n49,608,19.5\n49,609,19.0\n49,610,18.5\n49,611,18.0\n49,612,17.5\n49,613,17.0\n49,614,16.5\n49,615,16.0\n49,616,15.5\n49,617,15.0\n49,618,14.5\n49,619,14.0\n49,620,13.5\n49,621,13.0\n49,622,12.5\n49,623,12.0\n49,624,11.5\n50,0,1.0\n50,1,1.5\n50,2,2.0\n50,3,2.5\n50,4,3.0\n50,5,3.5\n50,6,4.0\n50,7,4.5\n50,8,5.0\n50,9,5.5\n50,10,6.0\n50,11,6.5\n50,12,7.0\n50,13,7.5\n50,14,8.0\n50,15,8.5\n50,16,9.0\n50,17,9.5\n50,18,10.0\n50,19,10.5\n50,20,11.0\n50,21,11.5\n50,22,12.0\n50,23,12.5\n50,24,13.0\n50,25,0.5\n50,26,1.0\n50,27,1.5\n50,28,2.0\n50,29,2.5\n50,30,3.0\n50,31,3.5\n50,32,4.0\n50,33,4.5\n50,34,5.0\n50,35,5.5\n50,36,6.0\n50,37,6.5\n50,38,7.0\n50,39,7.5\n50,40,8.0\n50,41,8.5\n50,42,9.0\n50,43,9.5\n50,44,10.0\n50,45,10.5\n50,46,11.0\n50,47,11.5\n50,48,12.0\n50,49,12.5\n50,50,0\n50,51,0.5\n50,52,1.0\n50,53,1.5\n50,54,2.0\n50,55,2.5\n50,56,3.0\n50,57,3.5\n50,58,4.0\n50,59,4.5\n50,60,5.0\n50,61,5.5\n50,62,6.0\n50,63,6.5\n50,64,7.0\n50,65,7.5\n50,66,8.0\n50,67,8.5\n50,68,9.0\n50,69,9.5\n50,70,10.0\n50,71,10.5\n50,72,11.0\n50,73,11.5\n50,74,12.0\n50,75,0.5\n50,76,1.0\n50,77,1.5\n50,78,2.0\n50,79,2.5\n50,80,3.0\n50,81,3.5\n50,82,4.0\n50,83,4.5\n50,84,5.0\n50,85,5.5\n50,86,6.0\n50,87,6.5\n50,88,7.0\n50,89,7.5\n50,90,8.0\n50,91,8.5\n50,92,9.0\n50,93,9.5\n50,94,10.0\n50,95,10.5\n50,96,11.0\n50,97,11.5\n50,98,12.0\n50,99,12.5\n50,100,1.0\n50,101,1.5\n50,102,2.0\n50,103,2.5\n50,104,3.0\n50,105,3.5\n50,106,4.0\n50,107,4.5\n50,108,5.0\n50,109,5.5\n50,110,6.0\n50,111,6.5\n50,112,7.0\n50,113,7.5\n50,114,8.0\n50,115,8.5\n50,116,9.0\n50,117,9.5\n50,118,10.0\n50,119,10.5\n50,120,11.0\n50,121,11.5\n50,122,12.0\n50,123,12.5\n50,124,13.0\n50,125,1.5\n50,126,2.0\n50,127,2.5\n50,128,3.0\n50,129,3.5\n50,130,4.0\n50,131,4.5\n50,132,5.0\n50,133,5.5\n50,134,6.0\n50,135,6.5\n50,136,7.0\n50,137,7.5\n50,138,8.0\n50,139,8.5\n50,140,9.0\n50,141,9.5\n50,142,10.0\n50,143,10.5\n50,144,11.0\n50,145,11.5\n50,146,12.0\n50,147,12.5\n50,148,13.0\n50,149,13.5\n50,150,2.0\n50,151,2.5\n50,152,3.0\n50,153,3.5\n50,154,4.0\n50,155,4.5\n50,156,5.0\n50,157,5.5\n50,158,6.0\n50,159,6.5\n50,160,7.0\n50,161,7.5\n50,162,8.0\n50,163,8.5\n50,164,9.0\n50,165,9.5\n50,166,10.0\n50,167,10.5\n50,168,11.0\n50,169,11.5\n50,170,12.0\n50,171,12.5\n50,172,13.0\n50,173,13.5\n50,174,14.0\n50,175,2.5\n50,176,3.0\n50,177,3.5\n50,178,4.0\n50,179,4.5\n50,180,5.0\n50,181,5.5\n50,182,6.0\n50,183,6.5\n50,184,7.0\n50,185,7.5\n50,186,8.0\n50,187,8.5\n50,188,9.0\n50,189,9.5\n50,190,10.0\n50,191,10.5\n50,192,11.0\n50,193,11.5\n50,194,12.0\n50,195,12.5\n50,196,13.0\n50,197,13.5\n50,198,14.0\n50,199,14.5\n50,200,3.0\n50,201,3.5\n50,202,4.0\n50,203,4.5\n50,204,5.0\n50,205,5.5\n50,206,6.0\n50,207,6.5\n50,208,7.0\n50,209,7.5\n50,210,8.0\n50,211,8.5\n50,212,9.0\n50,213,9.5\n50,214,10.0\n50,215,10.5\n50,216,11.0\n50,217,11.5\n50,218,12.0\n50,219,12.5\n50,220,13.0\n50,221,13.5\n50,222,14.0\n50,223,14.5\n50,224,15.0\n50,225,3.5\n50,226,4.0\n50,227,4.5\n50,228,5.0\n50,229,5.5\n50,230,6.0\n50,231,6.5\n50,232,7.0\n50,233,7.5\n50,234,8.0\n50,235,8.5\n50,236,9.0\n50,237,9.5\n50,238,10.0\n50,239,10.5\n50,240,11.0\n50,241,11.5\n50,242,12.0\n50,243,12.5\n50,244,13.0\n50,245,13.5\n50,246,14.0\n50,247,14.5\n50,248,15.0\n50,249,15.5\n50,250,4.0\n50,251,4.5\n50,252,5.0\n50,253,5.5\n50,254,6.0\n50,255,6.5\n50,256,7.0\n50,257,7.5\n50,258,8.0\n50,259,8.5\n50,260,9.0\n50,261,9.5\n50,262,10.0\n50,263,10.5\n50,264,11.0\n50,265,11.5\n50,266,12.0\n50,267,12.5\n50,268,13.0\n50,269,13.5\n50,270,14.0\n50,271,14.5\n50,272,15.0\n50,273,15.5\n50,274,16.0\n50,275,4.5\n50,276,5.0\n50,277,5.5\n50,278,6.0\n50,279,6.5\n50,280,7.0\n50,281,7.5\n50,282,8.0\n50,283,8.5\n50,284,9.0\n50,285,9.5\n50,286,10.0\n50,287,10.5\n50,288,11.0\n50,289,11.5\n50,290,12.0\n50,291,12.5\n50,292,13.0\n50,293,13.5\n50,294,14.0\n50,295,14.5\n50,296,15.0\n50,297,15.5\n50,298,16.0\n50,299,16.5\n50,300,5.0\n50,301,5.5\n50,302,6.0\n50,303,6.5\n50,304,7.0\n50,305,7.5\n50,306,8.0\n50,307,8.5\n50,308,9.0\n50,309,9.5\n50,310,10.0\n50,311,10.5\n50,312,11.0\n50,313,11.5\n50,314,12.0\n50,315,12.5\n50,316,13.0\n50,317,13.5\n50,318,14.0\n50,319,14.5\n50,320,15.0\n50,321,15.5\n50,322,16.0\n50,323,16.5\n50,324,17.0\n50,325,5.5\n50,326,6.0\n50,327,6.5\n50,328,7.0\n50,329,7.5\n50,330,8.0\n50,331,8.5\n50,332,9.0\n50,333,9.5\n50,334,10.0\n50,335,10.5\n50,336,11.0\n50,337,11.5\n50,338,12.0\n50,339,12.5\n50,340,13.0\n50,341,13.5\n50,342,14.0\n50,343,14.5\n50,344,15.0\n50,345,15.5\n50,346,16.0\n50,347,16.5\n50,348,17.0\n50,349,17.5\n50,350,6.0\n50,351,6.5\n50,352,7.0\n50,353,7.5\n50,354,8.0\n50,355,8.5\n50,356,9.0\n50,357,9.5\n50,358,10.0\n50,359,10.5\n50,360,11.0\n50,361,11.5\n50,362,12.0\n50,363,12.5\n50,364,13.0\n50,365,13.5\n50,366,14.0\n50,367,14.5\n50,368,15.0\n50,369,15.5\n50,370,16.0\n50,371,16.5\n50,372,17.0\n50,373,17.5\n50,374,18.0\n50,375,6.5\n50,376,7.0\n50,377,7.5\n50,378,8.0\n50,379,8.5\n50,380,9.0\n50,381,9.5\n50,382,10.0\n50,383,10.5\n50,384,11.0\n50,385,11.5\n50,386,12.0\n50,387,12.5\n50,388,13.0\n50,389,13.5\n50,390,14.0\n50,391,14.5\n50,392,15.0\n50,393,15.5\n50,394,16.0\n50,395,16.5\n50,396,17.0\n50,397,17.5\n50,398,18.0\n50,399,18.5\n50,400,7.0\n50,401,7.5\n50,402,8.0\n50,403,8.5\n50,404,9.0\n50,405,9.5\n50,406,10.0\n50,407,10.5\n50,408,11.0\n50,409,11.5\n50,410,12.0\n50,411,12.5\n50,412,13.0\n50,413,13.5\n50,414,14.0\n50,415,14.5\n50,416,15.0\n50,417,15.5\n50,418,16.0\n50,419,16.5\n50,420,17.0\n50,421,17.5\n50,422,18.0\n50,423,18.5\n50,424,19.0\n50,425,7.5\n50,426,8.0\n50,427,8.5\n50,428,9.0\n50,429,9.5\n50,430,10.0\n50,431,10.5\n50,432,11.0\n50,433,11.5\n50,434,12.0\n50,435,12.5\n50,436,13.0\n50,437,13.5\n50,438,14.0\n50,439,14.5\n50,440,15.0\n50,441,15.5\n50,442,16.0\n50,443,16.5\n50,444,17.0\n50,445,17.5\n50,446,18.0\n50,447,18.5\n50,448,19.0\n50,449,19.5\n50,450,8.0\n50,451,8.5\n50,452,9.0\n50,453,9.5\n50,454,10.0\n50,455,10.5\n50,456,11.0\n50,457,11.5\n50,458,12.0\n50,459,12.5\n50,460,13.0\n50,461,13.5\n50,462,14.0\n50,463,14.5\n50,464,15.0\n50,465,15.5\n50,466,16.0\n50,467,16.5\n50,468,17.0\n50,469,17.5\n50,470,18.0\n50,471,18.5\n50,472,19.0\n50,473,19.5\n50,474,20.0\n50,475,8.5\n50,476,9.0\n50,477,9.5\n50,478,10.0\n50,479,10.5\n50,480,11.0\n50,481,11.5\n50,482,12.0\n50,483,12.5\n50,484,13.0\n50,485,13.5\n50,486,14.0\n50,487,14.5\n50,488,15.0\n50,489,15.5\n50,490,16.0\n50,491,16.5\n50,492,17.0\n50,493,17.5\n50,494,18.0\n50,495,18.5\n50,496,19.0\n50,497,19.5\n50,498,20.0\n50,499,20.5\n50,500,9.0\n50,501,9.5\n50,502,10.0\n50,503,10.5\n50,504,11.0\n50,505,11.5\n50,506,12.0\n50,507,12.5\n50,508,13.0\n50,509,13.5\n50,510,14.0\n50,511,14.5\n50,512,15.0\n50,513,15.5\n50,514,16.0\n50,515,16.5\n50,516,17.0\n50,517,17.5\n50,518,18.0\n50,519,18.5\n50,520,19.0\n50,521,19.5\n50,522,20.0\n50,523,20.5\n50,524,21.0\n50,525,9.5\n50,526,10.0\n50,527,10.5\n50,528,11.0\n50,529,11.5\n50,530,12.0\n50,531,12.5\n50,532,13.0\n50,533,13.5\n50,534,14.0\n50,535,14.5\n50,536,15.0\n50,537,15.5\n50,538,16.0\n50,539,16.5\n50,540,17.0\n50,541,17.5\n50,542,18.0\n50,543,18.5\n50,544,19.0\n50,545,19.5\n50,546,20.0\n50,547,20.5\n50,548,21.0\n50,549,21.5\n50,550,10.0\n50,551,10.5\n50,552,11.0\n50,553,11.5\n50,554,12.0\n50,555,12.5\n50,556,13.0\n50,557,13.5\n50,558,14.0\n50,559,14.5\n50,560,15.0\n50,561,15.5\n50,562,16.0\n50,563,16.5\n50,564,17.0\n50,565,17.5\n50,566,18.0\n50,567,18.5\n50,568,19.0\n50,569,19.5\n50,570,20.0\n50,571,20.5\n50,572,21.0\n50,573,21.5\n50,574,22.0\n50,575,10.5\n50,576,11.0\n50,577,11.5\n50,578,12.0\n50,579,12.5\n50,580,13.0\n50,581,13.5\n50,582,14.0\n50,583,14.5\n50,584,15.0\n50,585,15.5\n50,586,16.0\n50,587,16.5\n50,588,17.0\n50,589,17.5\n50,590,18.0\n50,591,18.5\n50,592,19.0\n50,593,19.5\n50,594,20.0\n50,595,20.5\n50,596,21.0\n50,597,21.5\n50,598,22.0\n50,599,22.5\n50,600,11.0\n50,601,11.5\n50,602,12.0\n50,603,12.5\n50,604,13.0\n50,605,13.5\n50,606,14.0\n50,607,14.5\n50,608,15.0\n50,609,15.5\n50,610,16.0\n50,611,16.5\n50,612,17.0\n50,613,17.5\n50,614,18.0\n50,615,18.5\n50,616,19.0\n50,617,19.5\n50,618,20.0\n50,619,20.5\n50,620,21.0\n50,621,21.5\n50,622,22.0\n50,623,22.5\n50,624,23.0\n51,0,1.5\n51,1,1.0\n51,2,1.5\n51,3,2.0\n51,4,2.5\n51,5,3.0\n51,6,3.5\n51,7,4.0\n51,8,4.5\n51,9,5.0\n51,10,5.5\n51,11,6.0\n51,12,6.5\n51,13,7.0\n51,14,7.5\n51,15,8.0\n51,16,8.5\n51,17,9.0\n51,18,9.5\n51,19,10.0\n51,20,10.5\n51,21,11.0\n51,22,11.5\n51,23,12.0\n51,24,12.5\n51,25,1.0\n51,26,0.5\n51,27,1.0\n51,28,1.5\n51,29,2.0\n51,30,2.5\n51,31,3.0\n51,32,3.5\n51,33,4.0\n51,34,4.5\n51,35,5.0\n51,36,5.5\n51,37,6.0\n51,38,6.5\n51,39,7.0\n51,40,7.5\n51,41,8.0\n51,42,8.5\n51,43,9.0\n51,44,9.5\n51,45,10.0\n51,46,10.5\n51,47,11.0\n51,48,11.5\n51,49,12.0\n51,50,0.5\n51,51,0\n51,52,0.5\n51,53,1.0\n51,54,1.5\n51,55,2.0\n51,56,2.5\n51,57,3.0\n51,58,3.5\n51,59,4.0\n51,60,4.5\n51,61,5.0\n51,62,5.5\n51,63,6.0\n51,64,6.5\n51,65,7.0\n51,66,7.5\n51,67,8.0\n51,68,8.5\n51,69,9.0\n51,70,9.5\n51,71,10.0\n51,72,10.5\n51,73,11.0\n51,74,11.5\n51,75,1.0\n51,76,0.5\n51,77,1.0\n51,78,1.5\n51,79,2.0\n51,80,2.5\n51,81,3.0\n51,82,3.5\n51,83,4.0\n51,84,4.5\n51,85,5.0\n51,86,5.5\n51,87,6.0\n51,88,6.5\n51,89,7.0\n51,90,7.5\n51,91,8.0\n51,92,8.5\n51,93,9.0\n51,94,9.5\n51,95,10.0\n51,96,10.5\n51,97,11.0\n51,98,11.5\n51,99,12.0\n51,100,1.5\n51,101,1.0\n51,102,1.5\n51,103,2.0\n51,104,2.5\n51,105,3.0\n51,106,3.5\n51,107,4.0\n51,108,4.5\n51,109,5.0\n51,110,5.5\n51,111,6.0\n51,112,6.5\n51,113,7.0\n51,114,7.5\n51,115,8.0\n51,116,8.5\n51,117,9.0\n51,118,9.5\n51,119,10.0\n51,120,10.5\n51,121,11.0\n51,122,11.5\n51,123,12.0\n51,124,12.5\n51,125,2.0\n51,126,1.5\n51,127,2.0\n51,128,2.5\n51,129,3.0\n51,130,3.5\n51,131,4.0\n51,132,4.5\n51,133,5.0\n51,134,5.5\n51,135,6.0\n51,136,6.5\n51,137,7.0\n51,138,7.5\n51,139,8.0\n51,140,8.5\n51,141,9.0\n51,142,9.5\n51,143,10.0\n51,144,10.5\n51,145,11.0\n51,146,11.5\n51,147,12.0\n51,148,12.5\n51,149,13.0\n51,150,2.5\n51,151,2.0\n51,152,2.5\n51,153,3.0\n51,154,3.5\n51,155,4.0\n51,156,4.5\n51,157,5.0\n51,158,5.5\n51,159,6.0\n51,160,6.5\n51,161,7.0\n51,162,7.5\n51,163,8.0\n51,164,8.5\n51,165,9.0\n51,166,9.5\n51,167,10.0\n51,168,10.5\n51,169,11.0\n51,170,11.5\n51,171,12.0\n51,172,12.5\n51,173,13.0\n51,174,13.5\n51,175,3.0\n51,176,2.5\n51,177,3.0\n51,178,3.5\n51,179,4.0\n51,180,4.5\n51,181,5.0\n51,182,5.5\n51,183,6.0\n51,184,6.5\n51,185,7.0\n51,186,7.5\n51,187,8.0\n51,188,8.5\n51,189,9.0\n51,190,9.5\n51,191,10.0\n51,192,10.5\n51,193,11.0\n51,194,11.5\n51,195,12.0\n51,196,12.5\n51,197,13.0\n51,198,13.5\n51,199,14.0\n51,200,3.5\n51,201,3.0\n51,202,3.5\n51,203,4.0\n51,204,4.5\n51,205,5.0\n51,206,5.5\n51,207,6.0\n51,208,6.5\n51,209,7.0\n51,210,7.5\n51,211,8.0\n51,212,8.5\n51,213,9.0\n51,214,9.5\n51,215,10.0\n51,216,10.5\n51,217,11.0\n51,218,11.5\n51,219,12.0\n51,220,12.5\n51,221,13.0\n51,222,13.5\n51,223,14.0\n51,224,14.5\n51,225,4.0\n51,226,3.5\n51,227,4.0\n51,228,4.5\n51,229,5.0\n51,230,5.5\n51,231,6.0\n51,232,6.5\n51,233,7.0\n51,234,7.5\n51,235,8.0\n51,236,8.5\n51,237,9.0\n51,238,9.5\n51,239,10.0\n51,240,10.5\n51,241,11.0\n51,242,11.5\n51,243,12.0\n51,244,12.5\n51,245,13.0\n51,246,13.5\n51,247,14.0\n51,248,14.5\n51,249,15.0\n51,250,4.5\n51,251,4.0\n51,252,4.5\n51,253,5.0\n51,254,5.5\n51,255,6.0\n51,256,6.5\n51,257,7.0\n51,258,7.5\n51,259,8.0\n51,260,8.5\n51,261,9.0\n51,262,9.5\n51,263,10.0\n51,264,10.5\n51,265,11.0\n51,266,11.5\n51,267,12.0\n51,268,12.5\n51,269,13.0\n51,270,13.5\n51,271,14.0\n51,272,14.5\n51,273,15.0\n51,274,15.5\n51,275,5.0\n51,276,4.5\n51,277,5.0\n51,278,5.5\n51,279,6.0\n51,280,6.5\n51,281,7.0\n51,282,7.5\n51,283,8.0\n51,284,8.5\n51,285,9.0\n51,286,9.5\n51,287,10.0\n51,288,10.5\n51,289,11.0\n51,290,11.5\n51,291,12.0\n51,292,12.5\n51,293,13.0\n51,294,13.5\n51,295,14.0\n51,296,14.5\n51,297,15.0\n51,298,15.5\n51,299,16.0\n51,300,5.5\n51,301,5.0\n51,302,5.5\n51,303,6.0\n51,304,6.5\n51,305,7.0\n51,306,7.5\n51,307,8.0\n51,308,8.5\n51,309,9.0\n51,310,9.5\n51,311,10.0\n51,312,10.5\n51,313,11.0\n51,314,11.5\n51,315,12.0\n51,316,12.5\n51,317,13.0\n51,318,13.5\n51,319,14.0\n51,320,14.5\n51,321,15.0\n51,322,15.5\n51,323,16.0\n51,324,16.5\n51,325,6.0\n51,326,5.5\n51,327,6.0\n51,328,6.5\n51,329,7.0\n51,330,7.5\n51,331,8.0\n51,332,8.5\n51,333,9.0\n51,334,9.5\n51,335,10.0\n51,336,10.5\n51,337,11.0\n51,338,11.5\n51,339,12.0\n51,340,12.5\n51,341,13.0\n51,342,13.5\n51,343,14.0\n51,344,14.5\n51,345,15.0\n51,346,15.5\n51,347,16.0\n51,348,16.5\n51,349,17.0\n51,350,6.5\n51,351,6.0\n51,352,6.5\n51,353,7.0\n51,354,7.5\n51,355,8.0\n51,356,8.5\n51,357,9.0\n51,358,9.5\n51,359,10.0\n51,360,10.5\n51,361,11.0\n51,362,11.5\n51,363,12.0\n51,364,12.5\n51,365,13.0\n51,366,13.5\n51,367,14.0\n51,368,14.5\n51,369,15.0\n51,370,15.5\n51,371,16.0\n51,372,16.5\n51,373,17.0\n51,374,17.5\n51,375,7.0\n51,376,6.5\n51,377,7.0\n51,378,7.5\n51,379,8.0\n51,380,8.5\n51,381,9.0\n51,382,9.5\n51,383,10.0\n51,384,10.5\n51,385,11.0\n51,386,11.5\n51,387,12.0\n51,388,12.5\n51,389,13.0\n51,390,13.5\n51,391,14.0\n51,392,14.5\n51,393,15.0\n51,394,15.5\n51,395,16.0\n51,396,16.5\n51,397,17.0\n51,398,17.5\n51,399,18.0\n51,400,7.5\n51,401,7.0\n51,402,7.5\n51,403,8.0\n51,404,8.5\n51,405,9.0\n51,406,9.5\n51,407,10.0\n51,408,10.5\n51,409,11.0\n51,410,11.5\n51,411,12.0\n51,412,12.5\n51,413,13.0\n51,414,13.5\n51,415,14.0\n51,416,14.5\n51,417,15.0\n51,418,15.5\n51,419,16.0\n51,420,16.5\n51,421,17.0\n51,422,17.5\n51,423,18.0\n51,424,18.5\n51,425,8.0\n51,426,7.5\n51,427,8.0\n51,428,8.5\n51,429,9.0\n51,430,9.5\n51,431,10.0\n51,432,10.5\n51,433,11.0\n51,434,11.5\n51,435,12.0\n51,436,12.5\n51,437,13.0\n51,438,13.5\n51,439,14.0\n51,440,14.5\n51,441,15.0\n51,442,15.5\n51,443,16.0\n51,444,16.5\n51,445,17.0\n51,446,17.5\n51,447,18.0\n51,448,18.5\n51,449,19.0\n51,450,8.5\n51,451,8.0\n51,452,8.5\n51,453,9.0\n51,454,9.5\n51,455,10.0\n51,456,10.5\n51,457,11.0\n51,458,11.5\n51,459,12.0\n51,460,12.5\n51,461,13.0\n51,462,13.5\n51,463,14.0\n51,464,14.5\n51,465,15.0\n51,466,15.5\n51,467,16.0\n51,468,16.5\n51,469,17.0\n51,470,17.5\n51,471,18.0\n51,472,18.5\n51,473,19.0\n51,474,19.5\n51,475,9.0\n51,476,8.5\n51,477,9.0\n51,478,9.5\n51,479,10.0\n51,480,10.5\n51,481,11.0\n51,482,11.5\n51,483,12.0\n51,484,12.5\n51,485,13.0\n51,486,13.5\n51,487,14.0\n51,488,14.5\n51,489,15.0\n51,490,15.5\n51,491,16.0\n51,492,16.5\n51,493,17.0\n51,494,17.5\n51,495,18.0\n51,496,18.5\n51,497,19.0\n51,498,19.5\n51,499,20.0\n51,500,9.5\n51,501,9.0\n51,502,9.5\n51,503,10.0\n51,504,10.5\n51,505,11.0\n51,506,11.5\n51,507,12.0\n51,508,12.5\n51,509,13.0\n51,510,13.5\n51,511,14.0\n51,512,14.5\n51,513,15.0\n51,514,15.5\n51,515,16.0\n51,516,16.5\n51,517,17.0\n51,518,17.5\n51,519,18.0\n51,520,18.5\n51,521,19.0\n51,522,19.5\n51,523,20.0\n51,524,20.5\n51,525,10.0\n51,526,9.5\n51,527,10.0\n51,528,10.5\n51,529,11.0\n51,530,11.5\n51,531,12.0\n51,532,12.5\n51,533,13.0\n51,534,13.5\n51,535,14.0\n51,536,14.5\n51,537,15.0\n51,538,15.5\n51,539,16.0\n51,540,16.5\n51,541,17.0\n51,542,17.5\n51,543,18.0\n51,544,18.5\n51,545,19.0\n51,546,19.5\n51,547,20.0\n51,548,20.5\n51,549,21.0\n51,550,10.5\n51,551,10.0\n51,552,10.5\n51,553,11.0\n51,554,11.5\n51,555,12.0\n51,556,12.5\n51,557,13.0\n51,558,13.5\n51,559,14.0\n51,560,14.5\n51,561,15.0\n51,562,15.5\n51,563,16.0\n51,564,16.5\n51,565,17.0\n51,566,17.5\n51,567,18.0\n51,568,18.5\n51,569,19.0\n51,570,19.5\n51,571,20.0\n51,572,20.5\n51,573,21.0\n51,574,21.5\n51,575,11.0\n51,576,10.5\n51,577,11.0\n51,578,11.5\n51,579,12.0\n51,580,12.5\n51,581,13.0\n51,582,13.5\n51,583,14.0\n51,584,14.5\n51,585,15.0\n51,586,15.5\n51,587,16.0\n51,588,16.5\n51,589,17.0\n51,590,17.5\n51,591,18.0\n51,592,18.5\n51,593,19.0\n51,594,19.5\n51,595,20.0\n51,596,20.5\n51,597,21.0\n51,598,21.5\n51,599,22.0\n51,600,11.5\n51,601,11.0\n51,602,11.5\n51,603,12.0\n51,604,12.5\n51,605,13.0\n51,606,13.5\n51,607,14.0\n51,608,14.5\n51,609,15.0\n51,610,15.5\n51,611,16.0\n51,612,16.5\n51,613,17.0\n51,614,17.5\n51,615,18.0\n51,616,18.5\n51,617,19.0\n51,618,19.5\n51,619,20.0\n51,620,20.5\n51,621,21.0\n51,622,21.5\n51,623,22.0\n51,624,22.5\n52,0,2.0\n52,1,1.5\n52,2,1.0\n52,3,1.5\n52,4,2.0\n52,5,2.5\n52,6,3.0\n52,7,3.5\n52,8,4.0\n52,9,4.5\n52,10,5.0\n52,11,5.5\n52,12,6.0\n52,13,6.5\n52,14,7.0\n52,15,7.5\n52,16,8.0\n52,17,8.5\n52,18,9.0\n52,19,9.5\n52,20,10.0\n52,21,10.5\n52,22,11.0\n52,23,11.5\n52,24,12.0\n52,25,1.5\n52,26,1.0\n52,27,0.5\n52,28,1.0\n52,29,1.5\n52,30,2.0\n52,31,2.5\n52,32,3.0\n52,33,3.5\n52,34,4.0\n52,35,4.5\n52,36,5.0\n52,37,5.5\n52,38,6.0\n52,39,6.5\n52,40,7.0\n52,41,7.5\n52,42,8.0\n52,43,8.5\n52,44,9.0\n52,45,9.5\n52,46,10.0\n52,47,10.5\n52,48,11.0\n52,49,11.5\n52,50,1.0\n52,51,0.5\n52,52,0\n52,53,0.5\n52,54,1.0\n52,55,1.5\n52,56,2.0\n52,57,2.5\n52,58,3.0\n52,59,3.5\n52,60,4.0\n52,61,4.5\n52,62,5.0\n52,63,5.5\n52,64,6.0\n52,65,6.5\n52,66,7.0\n52,67,7.5\n52,68,8.0\n52,69,8.5\n52,70,9.0\n52,71,9.5\n52,72,10.0\n52,73,10.5\n52,74,11.0\n52,75,1.5\n52,76,1.0\n52,77,0.5\n52,78,1.0\n52,79,1.5\n52,80,2.0\n52,81,2.5\n52,82,3.0\n52,83,3.5\n52,84,4.0\n52,85,4.5\n52,86,5.0\n52,87,5.5\n52,88,6.0\n52,89,6.5\n52,90,7.0\n52,91,7.5\n52,92,8.0\n52,93,8.5\n52,94,9.0\n52,95,9.5\n52,96,10.0\n52,97,10.5\n52,98,11.0\n52,99,11.5\n52,100,2.0\n52,101,1.5\n52,102,1.0\n52,103,1.5\n52,104,2.0\n52,105,2.5\n52,106,3.0\n52,107,3.5\n52,108,4.0\n52,109,4.5\n52,110,5.0\n52,111,5.5\n52,112,6.0\n52,113,6.5\n52,114,7.0\n52,115,7.5\n52,116,8.0\n52,117,8.5\n52,118,9.0\n52,119,9.5\n52,120,10.0\n52,121,10.5\n52,122,11.0\n52,123,11.5\n52,124,12.0\n52,125,2.5\n52,126,2.0\n52,127,1.5\n52,128,2.0\n52,129,2.5\n52,130,3.0\n52,131,3.5\n52,132,4.0\n52,133,4.5\n52,134,5.0\n52,135,5.5\n52,136,6.0\n52,137,6.5\n52,138,7.0\n52,139,7.5\n52,140,8.0\n52,141,8.5\n52,142,9.0\n52,143,9.5\n52,144,10.0\n52,145,10.5\n52,146,11.0\n52,147,11.5\n52,148,12.0\n52,149,12.5\n52,150,3.0\n52,151,2.5\n52,152,2.0\n52,153,2.5\n52,154,3.0\n52,155,3.5\n52,156,4.0\n52,157,4.5\n52,158,5.0\n52,159,5.5\n52,160,6.0\n52,161,6.5\n52,162,7.0\n52,163,7.5\n52,164,8.0\n52,165,8.5\n52,166,9.0\n52,167,9.5\n52,168,10.0\n52,169,10.5\n52,170,11.0\n52,171,11.5\n52,172,12.0\n52,173,12.5\n52,174,13.0\n52,175,3.5\n52,176,3.0\n52,177,2.5\n52,178,3.0\n52,179,3.5\n52,180,4.0\n52,181,4.5\n52,182,5.0\n52,183,5.5\n52,184,6.0\n52,185,6.5\n52,186,7.0\n52,187,7.5\n52,188,8.0\n52,189,8.5\n52,190,9.0\n52,191,9.5\n52,192,10.0\n52,193,10.5\n52,194,11.0\n52,195,11.5\n52,196,12.0\n52,197,12.5\n52,198,13.0\n52,199,13.5\n52,200,4.0\n52,201,3.5\n52,202,3.0\n52,203,3.5\n52,204,4.0\n52,205,4.5\n52,206,5.0\n52,207,5.5\n52,208,6.0\n52,209,6.5\n52,210,7.0\n52,211,7.5\n52,212,8.0\n52,213,8.5\n52,214,9.0\n52,215,9.5\n52,216,10.0\n52,217,10.5\n52,218,11.0\n52,219,11.5\n52,220,12.0\n52,221,12.5\n52,222,13.0\n52,223,13.5\n52,224,14.0\n52,225,4.5\n52,226,4.0\n52,227,3.5\n52,228,4.0\n52,229,4.5\n52,230,5.0\n52,231,5.5\n52,232,6.0\n52,233,6.5\n52,234,7.0\n52,235,7.5\n52,236,8.0\n52,237,8.5\n52,238,9.0\n52,239,9.5\n52,240,10.0\n52,241,10.5\n52,242,11.0\n52,243,11.5\n52,244,12.0\n52,245,12.5\n52,246,13.0\n52,247,13.5\n52,248,14.0\n52,249,14.5\n52,250,5.0\n52,251,4.5\n52,252,4.0\n52,253,4.5\n52,254,5.0\n52,255,5.5\n52,256,6.0\n52,257,6.5\n52,258,7.0\n52,259,7.5\n52,260,8.0\n52,261,8.5\n52,262,9.0\n52,263,9.5\n52,264,10.0\n52,265,10.5\n52,266,11.0\n52,267,11.5\n52,268,12.0\n52,269,12.5\n52,270,13.0\n52,271,13.5\n52,272,14.0\n52,273,14.5\n52,274,15.0\n52,275,5.5\n52,276,5.0\n52,277,4.5\n52,278,5.0\n52,279,5.5\n52,280,6.0\n52,281,6.5\n52,282,7.0\n52,283,7.5\n52,284,8.0\n52,285,8.5\n52,286,9.0\n52,287,9.5\n52,288,10.0\n52,289,10.5\n52,290,11.0\n52,291,11.5\n52,292,12.0\n52,293,12.5\n52,294,13.0\n52,295,13.5\n52,296,14.0\n52,297,14.5\n52,298,15.0\n52,299,15.5\n52,300,6.0\n52,301,5.5\n52,302,5.0\n52,303,5.5\n52,304,6.0\n52,305,6.5\n52,306,7.0\n52,307,7.5\n52,308,8.0\n52,309,8.5\n52,310,9.0\n52,311,9.5\n52,312,10.0\n52,313,10.5\n52,314,11.0\n52,315,11.5\n52,316,12.0\n52,317,12.5\n52,318,13.0\n52,319,13.5\n52,320,14.0\n52,321,14.5\n52,322,15.0\n52,323,15.5\n52,324,16.0\n52,325,6.5\n52,326,6.0\n52,327,5.5\n52,328,6.0\n52,329,6.5\n52,330,7.0\n52,331,7.5\n52,332,8.0\n52,333,8.5\n52,334,9.0\n52,335,9.5\n52,336,10.0\n52,337,10.5\n52,338,11.0\n52,339,11.5\n52,340,12.0\n52,341,12.5\n52,342,13.0\n52,343,13.5\n52,344,14.0\n52,345,14.5\n52,346,15.0\n52,347,15.5\n52,348,16.0\n52,349,16.5\n52,350,7.0\n52,351,6.5\n52,352,6.0\n52,353,6.5\n52,354,7.0\n52,355,7.5\n52,356,8.0\n52,357,8.5\n52,358,9.0\n52,359,9.5\n52,360,10.0\n52,361,10.5\n52,362,11.0\n52,363,11.5\n52,364,12.0\n52,365,12.5\n52,366,13.0\n52,367,13.5\n52,368,14.0\n52,369,14.5\n52,370,15.0\n52,371,15.5\n52,372,16.0\n52,373,16.5\n52,374,17.0\n52,375,7.5\n52,376,7.0\n52,377,6.5\n52,378,7.0\n52,379,7.5\n52,380,8.0\n52,381,8.5\n52,382,9.0\n52,383,9.5\n52,384,10.0\n52,385,10.5\n52,386,11.0\n52,387,11.5\n52,388,12.0\n52,389,12.5\n52,390,13.0\n52,391,13.5\n52,392,14.0\n52,393,14.5\n52,394,15.0\n52,395,15.5\n52,396,16.0\n52,397,16.5\n52,398,17.0\n52,399,17.5\n52,400,8.0\n52,401,7.5\n52,402,7.0\n52,403,7.5\n52,404,8.0\n52,405,8.5\n52,406,9.0\n52,407,9.5\n52,408,10.0\n52,409,10.5\n52,410,11.0\n52,411,11.5\n52,412,12.0\n52,413,12.5\n52,414,13.0\n52,415,13.5\n52,416,14.0\n52,417,14.5\n52,418,15.0\n52,419,15.5\n52,420,16.0\n52,421,16.5\n52,422,17.0\n52,423,17.5\n52,424,18.0\n52,425,8.5\n52,426,8.0\n52,427,7.5\n52,428,8.0\n52,429,8.5\n52,430,9.0\n52,431,9.5\n52,432,10.0\n52,433,10.5\n52,434,11.0\n52,435,11.5\n52,436,12.0\n52,437,12.5\n52,438,13.0\n52,439,13.5\n52,440,14.0\n52,441,14.5\n52,442,15.0\n52,443,15.5\n52,444,16.0\n52,445,16.5\n52,446,17.0\n52,447,17.5\n52,448,18.0\n52,449,18.5\n52,450,9.0\n52,451,8.5\n52,452,8.0\n52,453,8.5\n52,454,9.0\n52,455,9.5\n52,456,10.0\n52,457,10.5\n52,458,11.0\n52,459,11.5\n52,460,12.0\n52,461,12.5\n52,462,13.0\n52,463,13.5\n52,464,14.0\n52,465,14.5\n52,466,15.0\n52,467,15.5\n52,468,16.0\n52,469,16.5\n52,470,17.0\n52,471,17.5\n52,472,18.0\n52,473,18.5\n52,474,19.0\n52,475,9.5\n52,476,9.0\n52,477,8.5\n52,478,9.0\n52,479,9.5\n52,480,10.0\n52,481,10.5\n52,482,11.0\n52,483,11.5\n52,484,12.0\n52,485,12.5\n52,486,13.0\n52,487,13.5\n52,488,14.0\n52,489,14.5\n52,490,15.0\n52,491,15.5\n52,492,16.0\n52,493,16.5\n52,494,17.0\n52,495,17.5\n52,496,18.0\n52,497,18.5\n52,498,19.0\n52,499,19.5\n52,500,10.0\n52,501,9.5\n52,502,9.0\n52,503,9.5\n52,504,10.0\n52,505,10.5\n52,506,11.0\n52,507,11.5\n52,508,12.0\n52,509,12.5\n52,510,13.0\n52,511,13.5\n52,512,14.0\n52,513,14.5\n52,514,15.0\n52,515,15.5\n52,516,16.0\n52,517,16.5\n52,518,17.0\n52,519,17.5\n52,520,18.0\n52,521,18.5\n52,522,19.0\n52,523,19.5\n52,524,20.0\n52,525,10.5\n52,526,10.0\n52,527,9.5\n52,528,10.0\n52,529,10.5\n52,530,11.0\n52,531,11.5\n52,532,12.0\n52,533,12.5\n52,534,13.0\n52,535,13.5\n52,536,14.0\n52,537,14.5\n52,538,15.0\n52,539,15.5\n52,540,16.0\n52,541,16.5\n52,542,17.0\n52,543,17.5\n52,544,18.0\n52,545,18.5\n52,546,19.0\n52,547,19.5\n52,548,20.0\n52,549,20.5\n52,550,11.0\n52,551,10.5\n52,552,10.0\n52,553,10.5\n52,554,11.0\n52,555,11.5\n52,556,12.0\n52,557,12.5\n52,558,13.0\n52,559,13.5\n52,560,14.0\n52,561,14.5\n52,562,15.0\n52,563,15.5\n52,564,16.0\n52,565,16.5\n52,566,17.0\n52,567,17.5\n52,568,18.0\n52,569,18.5\n52,570,19.0\n52,571,19.5\n52,572,20.0\n52,573,20.5\n52,574,21.0\n52,575,11.5\n52,576,11.0\n52,577,10.5\n52,578,11.0\n52,579,11.5\n52,580,12.0\n52,581,12.5\n52,582,13.0\n52,583,13.5\n52,584,14.0\n52,585,14.5\n52,586,15.0\n52,587,15.5\n52,588,16.0\n52,589,16.5\n52,590,17.0\n52,591,17.5\n52,592,18.0\n52,593,18.5\n52,594,19.0\n52,595,19.5\n52,596,20.0\n52,597,20.5\n52,598,21.0\n52,599,21.5\n52,600,12.0\n52,601,11.5\n52,602,11.0\n52,603,11.5\n52,604,12.0\n52,605,12.5\n52,606,13.0\n52,607,13.5\n52,608,14.0\n52,609,14.5\n52,610,15.0\n52,611,15.5\n52,612,16.0\n52,613,16.5\n52,614,17.0\n52,615,17.5\n52,616,18.0\n52,617,18.5\n52,618,19.0\n52,619,19.5\n52,620,20.0\n52,621,20.5\n52,622,21.0\n52,623,21.5\n52,624,22.0\n53,0,2.5\n53,1,2.0\n53,2,1.5\n53,3,1.0\n53,4,1.5\n53,5,2.0\n53,6,2.5\n53,7,3.0\n53,8,3.5\n53,9,4.0\n53,10,4.5\n53,11,5.0\n53,12,5.5\n53,13,6.0\n53,14,6.5\n53,15,7.0\n53,16,7.5\n53,17,8.0\n53,18,8.5\n53,19,9.0\n53,20,9.5\n53,21,10.0\n53,22,10.5\n53,23,11.0\n53,24,11.5\n53,25,2.0\n53,26,1.5\n53,27,1.0\n53,28,0.5\n53,29,1.0\n53,30,1.5\n53,31,2.0\n53,32,2.5\n53,33,3.0\n53,34,3.5\n53,35,4.0\n53,36,4.5\n53,37,5.0\n53,38,5.5\n53,39,6.0\n53,40,6.5\n53,41,7.0\n53,42,7.5\n53,43,8.0\n53,44,8.5\n53,45,9.0\n53,46,9.5\n53,47,10.0\n53,48,10.5\n53,49,11.0\n53,50,1.5\n53,51,1.0\n53,52,0.5\n53,53,0\n53,54,0.5\n53,55,1.0\n53,56,1.5\n53,57,2.0\n53,58,2.5\n53,59,3.0\n53,60,3.5\n53,61,4.0\n53,62,4.5\n53,63,5.0\n53,64,5.5\n53,65,6.0\n53,66,6.5\n53,67,7.0\n53,68,7.5\n53,69,8.0\n53,70,8.5\n53,71,9.0\n53,72,9.5\n53,73,10.0\n53,74,10.5\n53,75,2.0\n53,76,1.5\n53,77,1.0\n53,78,0.5\n53,79,1.0\n53,80,1.5\n53,81,2.0\n53,82,2.5\n53,83,3.0\n53,84,3.5\n53,85,4.0\n53,86,4.5\n53,87,5.0\n53,88,5.5\n53,89,6.0\n53,90,6.5\n53,91,7.0\n53,92,7.5\n53,93,8.0\n53,94,8.5\n53,95,9.0\n53,96,9.5\n53,97,10.0\n53,98,10.5\n53,99,11.0\n53,100,2.5\n53,101,2.0\n53,102,1.5\n53,103,1.0\n53,104,1.5\n53,105,2.0\n53,106,2.5\n53,107,3.0\n53,108,3.5\n53,109,4.0\n53,110,4.5\n53,111,5.0\n53,112,5.5\n53,113,6.0\n53,114,6.5\n53,115,7.0\n53,116,7.5\n53,117,8.0\n53,118,8.5\n53,119,9.0\n53,120,9.5\n53,121,10.0\n53,122,10.5\n53,123,11.0\n53,124,11.5\n53,125,3.0\n53,126,2.5\n53,127,2.0\n53,128,1.5\n53,129,2.0\n53,130,2.5\n53,131,3.0\n53,132,3.5\n53,133,4.0\n53,134,4.5\n53,135,5.0\n53,136,5.5\n53,137,6.0\n53,138,6.5\n53,139,7.0\n53,140,7.5\n53,141,8.0\n53,142,8.5\n53,143,9.0\n53,144,9.5\n53,145,10.0\n53,146,10.5\n53,147,11.0\n53,148,11.5\n53,149,12.0\n53,150,3.5\n53,151,3.0\n53,152,2.5\n53,153,2.0\n53,154,2.5\n53,155,3.0\n53,156,3.5\n53,157,4.0\n53,158,4.5\n53,159,5.0\n53,160,5.5\n53,161,6.0\n53,162,6.5\n53,163,7.0\n53,164,7.5\n53,165,8.0\n53,166,8.5\n53,167,9.0\n53,168,9.5\n53,169,10.0\n53,170,10.5\n53,171,11.0\n53,172,11.5\n53,173,12.0\n53,174,12.5\n53,175,4.0\n53,176,3.5\n53,177,3.0\n53,178,2.5\n53,179,3.0\n53,180,3.5\n53,181,4.0\n53,182,4.5\n53,183,5.0\n53,184,5.5\n53,185,6.0\n53,186,6.5\n53,187,7.0\n53,188,7.5\n53,189,8.0\n53,190,8.5\n53,191,9.0\n53,192,9.5\n53,193,10.0\n53,194,10.5\n53,195,11.0\n53,196,11.5\n53,197,12.0\n53,198,12.5\n53,199,13.0\n53,200,4.5\n53,201,4.0\n53,202,3.5\n53,203,3.0\n53,204,3.5\n53,205,4.0\n53,206,4.5\n53,207,5.0\n53,208,5.5\n53,209,6.0\n53,210,6.5\n53,211,7.0\n53,212,7.5\n53,213,8.0\n53,214,8.5\n53,215,9.0\n53,216,9.5\n53,217,10.0\n53,218,10.5\n53,219,11.0\n53,220,11.5\n53,221,12.0\n53,222,12.5\n53,223,13.0\n53,224,13.5\n53,225,5.0\n53,226,4.5\n53,227,4.0\n53,228,3.5\n53,229,4.0\n53,230,4.5\n53,231,5.0\n53,232,5.5\n53,233,6.0\n53,234,6.5\n53,235,7.0\n53,236,7.5\n53,237,8.0\n53,238,8.5\n53,239,9.0\n53,240,9.5\n53,241,10.0\n53,242,10.5\n53,243,11.0\n53,244,11.5\n53,245,12.0\n53,246,12.5\n53,247,13.0\n53,248,13.5\n53,249,14.0\n53,250,5.5\n53,251,5.0\n53,252,4.5\n53,253,4.0\n53,254,4.5\n53,255,5.0\n53,256,5.5\n53,257,6.0\n53,258,6.5\n53,259,7.0\n53,260,7.5\n53,261,8.0\n53,262,8.5\n53,263,9.0\n53,264,9.5\n53,265,10.0\n53,266,10.5\n53,267,11.0\n53,268,11.5\n53,269,12.0\n53,270,12.5\n53,271,13.0\n53,272,13.5\n53,273,14.0\n53,274,14.5\n53,275,6.0\n53,276,5.5\n53,277,5.0\n53,278,4.5\n53,279,5.0\n53,280,5.5\n53,281,6.0\n53,282,6.5\n53,283,7.0\n53,284,7.5\n53,285,8.0\n53,286,8.5\n53,287,9.0\n53,288,9.5\n53,289,10.0\n53,290,10.5\n53,291,11.0\n53,292,11.5\n53,293,12.0\n53,294,12.5\n53,295,13.0\n53,296,13.5\n53,297,14.0\n53,298,14.5\n53,299,15.0\n53,300,6.5\n53,301,6.0\n53,302,5.5\n53,303,5.0\n53,304,5.5\n53,305,6.0\n53,306,6.5\n53,307,7.0\n53,308,7.5\n53,309,8.0\n53,310,8.5\n53,311,9.0\n53,312,9.5\n53,313,10.0\n53,314,10.5\n53,315,11.0\n53,316,11.5\n53,317,12.0\n53,318,12.5\n53,319,13.0\n53,320,13.5\n53,321,14.0\n53,322,14.5\n53,323,15.0\n53,324,15.5\n53,325,7.0\n53,326,6.5\n53,327,6.0\n53,328,5.5\n53,329,6.0\n53,330,6.5\n53,331,7.0\n53,332,7.5\n53,333,8.0\n53,334,8.5\n53,335,9.0\n53,336,9.5\n53,337,10.0\n53,338,10.5\n53,339,11.0\n53,340,11.5\n53,341,12.0\n53,342,12.5\n53,343,13.0\n53,344,13.5\n53,345,14.0\n53,346,14.5\n53,347,15.0\n53,348,15.5\n53,349,16.0\n53,350,7.5\n53,351,7.0\n53,352,6.5\n53,353,6.0\n53,354,6.5\n53,355,7.0\n53,356,7.5\n53,357,8.0\n53,358,8.5\n53,359,9.0\n53,360,9.5\n53,361,10.0\n53,362,10.5\n53,363,11.0\n53,364,11.5\n53,365,12.0\n53,366,12.5\n53,367,13.0\n53,368,13.5\n53,369,14.0\n53,370,14.5\n53,371,15.0\n53,372,15.5\n53,373,16.0\n53,374,16.5\n53,375,8.0\n53,376,7.5\n53,377,7.0\n53,378,6.5\n53,379,7.0\n53,380,7.5\n53,381,8.0\n53,382,8.5\n53,383,9.0\n53,384,9.5\n53,385,10.0\n53,386,10.5\n53,387,11.0\n53,388,11.5\n53,389,12.0\n53,390,12.5\n53,391,13.0\n53,392,13.5\n53,393,14.0\n53,394,14.5\n53,395,15.0\n53,396,15.5\n53,397,16.0\n53,398,16.5\n53,399,17.0\n53,400,8.5\n53,401,8.0\n53,402,7.5\n53,403,7.0\n53,404,7.5\n53,405,8.0\n53,406,8.5\n53,407,9.0\n53,408,9.5\n53,409,10.0\n53,410,10.5\n53,411,11.0\n53,412,11.5\n53,413,12.0\n53,414,12.5\n53,415,13.0\n53,416,13.5\n53,417,14.0\n53,418,14.5\n53,419,15.0\n53,420,15.5\n53,421,16.0\n53,422,16.5\n53,423,17.0\n53,424,17.5\n53,425,9.0\n53,426,8.5\n53,427,8.0\n53,428,7.5\n53,429,8.0\n53,430,8.5\n53,431,9.0\n53,432,9.5\n53,433,10.0\n53,434,10.5\n53,435,11.0\n53,436,11.5\n53,437,12.0\n53,438,12.5\n53,439,13.0\n53,440,13.5\n53,441,14.0\n53,442,14.5\n53,443,15.0\n53,444,15.5\n53,445,16.0\n53,446,16.5\n53,447,17.0\n53,448,17.5\n53,449,18.0\n53,450,9.5\n53,451,9.0\n53,452,8.5\n53,453,8.0\n53,454,8.5\n53,455,9.0\n53,456,9.5\n53,457,10.0\n53,458,10.5\n53,459,11.0\n53,460,11.5\n53,461,12.0\n53,462,12.5\n53,463,13.0\n53,464,13.5\n53,465,14.0\n53,466,14.5\n53,467,15.0\n53,468,15.5\n53,469,16.0\n53,470,16.5\n53,471,17.0\n53,472,17.5\n53,473,18.0\n53,474,18.5\n53,475,10.0\n53,476,9.5\n53,477,9.0\n53,478,8.5\n53,479,9.0\n53,480,9.5\n53,481,10.0\n53,482,10.5\n53,483,11.0\n53,484,11.5\n53,485,12.0\n53,486,12.5\n53,487,13.0\n53,488,13.5\n53,489,14.0\n53,490,14.5\n53,491,15.0\n53,492,15.5\n53,493,16.0\n53,494,16.5\n53,495,17.0\n53,496,17.5\n53,497,18.0\n53,498,18.5\n53,499,19.0\n53,500,10.5\n53,501,10.0\n53,502,9.5\n53,503,9.0\n53,504,9.5\n53,505,10.0\n53,506,10.5\n53,507,11.0\n53,508,11.5\n53,509,12.0\n53,510,12.5\n53,511,13.0\n53,512,13.5\n53,513,14.0\n53,514,14.5\n53,515,15.0\n53,516,15.5\n53,517,16.0\n53,518,16.5\n53,519,17.0\n53,520,17.5\n53,521,18.0\n53,522,18.5\n53,523,19.0\n53,524,19.5\n53,525,11.0\n53,526,10.5\n53,527,10.0\n53,528,9.5\n53,529,10.0\n53,530,10.5\n53,531,11.0\n53,532,11.5\n53,533,12.0\n53,534,12.5\n53,535,13.0\n53,536,13.5\n53,537,14.0\n53,538,14.5\n53,539,15.0\n53,540,15.5\n53,541,16.0\n53,542,16.5\n53,543,17.0\n53,544,17.5\n53,545,18.0\n53,546,18.5\n53,547,19.0\n53,548,19.5\n53,549,20.0\n53,550,11.5\n53,551,11.0\n53,552,10.5\n53,553,10.0\n53,554,10.5\n53,555,11.0\n53,556,11.5\n53,557,12.0\n53,558,12.5\n53,559,13.0\n53,560,13.5\n53,561,14.0\n53,562,14.5\n53,563,15.0\n53,564,15.5\n53,565,16.0\n53,566,16.5\n53,567,17.0\n53,568,17.5\n53,569,18.0\n53,570,18.5\n53,571,19.0\n53,572,19.5\n53,573,20.0\n53,574,20.5\n53,575,12.0\n53,576,11.5\n53,577,11.0\n53,578,10.5\n53,579,11.0\n53,580,11.5\n53,581,12.0\n53,582,12.5\n53,583,13.0\n53,584,13.5\n53,585,14.0\n53,586,14.5\n53,587,15.0\n53,588,15.5\n53,589,16.0\n53,590,16.5\n53,591,17.0\n53,592,17.5\n53,593,18.0\n53,594,18.5\n53,595,19.0\n53,596,19.5\n53,597,20.0\n53,598,20.5\n53,599,21.0\n53,600,12.5\n53,601,12.0\n53,602,11.5\n53,603,11.0\n53,604,11.5\n53,605,12.0\n53,606,12.5\n53,607,13.0\n53,608,13.5\n53,609,14.0\n53,610,14.5\n53,611,15.0\n53,612,15.5\n53,613,16.0\n53,614,16.5\n53,615,17.0\n53,616,17.5\n53,617,18.0\n53,618,18.5\n53,619,19.0\n53,620,19.5\n53,621,20.0\n53,622,20.5\n53,623,21.0\n53,624,21.5\n54,0,3.0\n54,1,2.5\n54,2,2.0\n54,3,1.5\n54,4,1.0\n54,5,1.5\n54,6,2.0\n54,7,2.5\n54,8,3.0\n54,9,3.5\n54,10,4.0\n54,11,4.5\n54,12,5.0\n54,13,5.5\n54,14,6.0\n54,15,6.5\n54,16,7.0\n54,17,7.5\n54,18,8.0\n54,19,8.5\n54,20,9.0\n54,21,9.5\n54,22,10.0\n54,23,10.5\n54,24,11.0\n54,25,2.5\n54,26,2.0\n54,27,1.5\n54,28,1.0\n54,29,0.5\n54,30,1.0\n54,31,1.5\n54,32,2.0\n54,33,2.5\n54,34,3.0\n54,35,3.5\n54,36,4.0\n54,37,4.5\n54,38,5.0\n54,39,5.5\n54,40,6.0\n54,41,6.5\n54,42,7.0\n54,43,7.5\n54,44,8.0\n54,45,8.5\n54,46,9.0\n54,47,9.5\n54,48,10.0\n54,49,10.5\n54,50,2.0\n54,51,1.5\n54,52,1.0\n54,53,0.5\n54,54,0\n54,55,0.5\n54,56,1.0\n54,57,1.5\n54,58,2.0\n54,59,2.5\n54,60,3.0\n54,61,3.5\n54,62,4.0\n54,63,4.5\n54,64,5.0\n54,65,5.5\n54,66,6.0\n54,67,6.5\n54,68,7.0\n54,69,7.5\n54,70,8.0\n54,71,8.5\n54,72,9.0\n54,73,9.5\n54,74,10.0\n54,75,2.5\n54,76,2.0\n54,77,1.5\n54,78,1.0\n54,79,0.5\n54,80,1.0\n54,81,1.5\n54,82,2.0\n54,83,2.5\n54,84,3.0\n54,85,3.5\n54,86,4.0\n54,87,4.5\n54,88,5.0\n54,89,5.5\n54,90,6.0\n54,91,6.5\n54,92,7.0\n54,93,7.5\n54,94,8.0\n54,95,8.5\n54,96,9.0\n54,97,9.5\n54,98,10.0\n54,99,10.5\n54,100,3.0\n54,101,2.5\n54,102,2.0\n54,103,1.5\n54,104,1.0\n54,105,1.5\n54,106,2.0\n54,107,2.5\n54,108,3.0\n54,109,3.5\n54,110,4.0\n54,111,4.5\n54,112,5.0\n54,113,5.5\n54,114,6.0\n54,115,6.5\n54,116,7.0\n54,117,7.5\n54,118,8.0\n54,119,8.5\n54,120,9.0\n54,121,9.5\n54,122,10.0\n54,123,10.5\n54,124,11.0\n54,125,3.5\n54,126,3.0\n54,127,2.5\n54,128,2.0\n54,129,1.5\n54,130,2.0\n54,131,2.5\n54,132,3.0\n54,133,3.5\n54,134,4.0\n54,135,4.5\n54,136,5.0\n54,137,5.5\n54,138,6.0\n54,139,6.5\n54,140,7.0\n54,141,7.5\n54,142,8.0\n54,143,8.5\n54,144,9.0\n54,145,9.5\n54,146,10.0\n54,147,10.5\n54,148,11.0\n54,149,11.5\n54,150,4.0\n54,151,3.5\n54,152,3.0\n54,153,2.5\n54,154,2.0\n54,155,2.5\n54,156,3.0\n54,157,3.5\n54,158,4.0\n54,159,4.5\n54,160,5.0\n54,161,5.5\n54,162,6.0\n54,163,6.5\n54,164,7.0\n54,165,7.5\n54,166,8.0\n54,167,8.5\n54,168,9.0\n54,169,9.5\n54,170,10.0\n54,171,10.5\n54,172,11.0\n54,173,11.5\n54,174,12.0\n54,175,4.5\n54,176,4.0\n54,177,3.5\n54,178,3.0\n54,179,2.5\n54,180,3.0\n54,181,3.5\n54,182,4.0\n54,183,4.5\n54,184,5.0\n54,185,5.5\n54,186,6.0\n54,187,6.5\n54,188,7.0\n54,189,7.5\n54,190,8.0\n54,191,8.5\n54,192,9.0\n54,193,9.5\n54,194,10.0\n54,195,10.5\n54,196,11.0\n54,197,11.5\n54,198,12.0\n54,199,12.5\n54,200,5.0\n54,201,4.5\n54,202,4.0\n54,203,3.5\n54,204,3.0\n54,205,3.5\n54,206,4.0\n54,207,4.5\n54,208,5.0\n54,209,5.5\n54,210,6.0\n54,211,6.5\n54,212,7.0\n54,213,7.5\n54,214,8.0\n54,215,8.5\n54,216,9.0\n54,217,9.5\n54,218,10.0\n54,219,10.5\n54,220,11.0\n54,221,11.5\n54,222,12.0\n54,223,12.5\n54,224,13.0\n54,225,5.5\n54,226,5.0\n54,227,4.5\n54,228,4.0\n54,229,3.5\n54,230,4.0\n54,231,4.5\n54,232,5.0\n54,233,5.5\n54,234,6.0\n54,235,6.5\n54,236,7.0\n54,237,7.5\n54,238,8.0\n54,239,8.5\n54,240,9.0\n54,241,9.5\n54,242,10.0\n54,243,10.5\n54,244,11.0\n54,245,11.5\n54,246,12.0\n54,247,12.5\n54,248,13.0\n54,249,13.5\n54,250,6.0\n54,251,5.5\n54,252,5.0\n54,253,4.5\n54,254,4.0\n54,255,4.5\n54,256,5.0\n54,257,5.5\n54,258,6.0\n54,259,6.5\n54,260,7.0\n54,261,7.5\n54,262,8.0\n54,263,8.5\n54,264,9.0\n54,265,9.5\n54,266,10.0\n54,267,10.5\n54,268,11.0\n54,269,11.5\n54,270,12.0\n54,271,12.5\n54,272,13.0\n54,273,13.5\n54,274,14.0\n54,275,6.5\n54,276,6.0\n54,277,5.5\n54,278,5.0\n54,279,4.5\n54,280,5.0\n54,281,5.5\n54,282,6.0\n54,283,6.5\n54,284,7.0\n54,285,7.5\n54,286,8.0\n54,287,8.5\n54,288,9.0\n54,289,9.5\n54,290,10.0\n54,291,10.5\n54,292,11.0\n54,293,11.5\n54,294,12.0\n54,295,12.5\n54,296,13.0\n54,297,13.5\n54,298,14.0\n54,299,14.5\n54,300,7.0\n54,301,6.5\n54,302,6.0\n54,303,5.5\n54,304,5.0\n54,305,5.5\n54,306,6.0\n54,307,6.5\n54,308,7.0\n54,309,7.5\n54,310,8.0\n54,311,8.5\n54,312,9.0\n54,313,9.5\n54,314,10.0\n54,315,10.5\n54,316,11.0\n54,317,11.5\n54,318,12.0\n54,319,12.5\n54,320,13.0\n54,321,13.5\n54,322,14.0\n54,323,14.5\n54,324,15.0\n54,325,7.5\n54,326,7.0\n54,327,6.5\n54,328,6.0\n54,329,5.5\n54,330,6.0\n54,331,6.5\n54,332,7.0\n54,333,7.5\n54,334,8.0\n54,335,8.5\n54,336,9.0\n54,337,9.5\n54,338,10.0\n54,339,10.5\n54,340,11.0\n54,341,11.5\n54,342,12.0\n54,343,12.5\n54,344,13.0\n54,345,13.5\n54,346,14.0\n54,347,14.5\n54,348,15.0\n54,349,15.5\n54,350,8.0\n54,351,7.5\n54,352,7.0\n54,353,6.5\n54,354,6.0\n54,355,6.5\n54,356,7.0\n54,357,7.5\n54,358,8.0\n54,359,8.5\n54,360,9.0\n54,361,9.5\n54,362,10.0\n54,363,10.5\n54,364,11.0\n54,365,11.5\n54,366,12.0\n54,367,12.5\n54,368,13.0\n54,369,13.5\n54,370,14.0\n54,371,14.5\n54,372,15.0\n54,373,15.5\n54,374,16.0\n54,375,8.5\n54,376,8.0\n54,377,7.5\n54,378,7.0\n54,379,6.5\n54,380,7.0\n54,381,7.5\n54,382,8.0\n54,383,8.5\n54,384,9.0\n54,385,9.5\n54,386,10.0\n54,387,10.5\n54,388,11.0\n54,389,11.5\n54,390,12.0\n54,391,12.5\n54,392,13.0\n54,393,13.5\n54,394,14.0\n54,395,14.5\n54,396,15.0\n54,397,15.5\n54,398,16.0\n54,399,16.5\n54,400,9.0\n54,401,8.5\n54,402,8.0\n54,403,7.5\n54,404,7.0\n54,405,7.5\n54,406,8.0\n54,407,8.5\n54,408,9.0\n54,409,9.5\n54,410,10.0\n54,411,10.5\n54,412,11.0\n54,413,11.5\n54,414,12.0\n54,415,12.5\n54,416,13.0\n54,417,13.5\n54,418,14.0\n54,419,14.5\n54,420,15.0\n54,421,15.5\n54,422,16.0\n54,423,16.5\n54,424,17.0\n54,425,9.5\n54,426,9.0\n54,427,8.5\n54,428,8.0\n54,429,7.5\n54,430,8.0\n54,431,8.5\n54,432,9.0\n54,433,9.5\n54,434,10.0\n54,435,10.5\n54,436,11.0\n54,437,11.5\n54,438,12.0\n54,439,12.5\n54,440,13.0\n54,441,13.5\n54,442,14.0\n54,443,14.5\n54,444,15.0\n54,445,15.5\n54,446,16.0\n54,447,16.5\n54,448,17.0\n54,449,17.5\n54,450,10.0\n54,451,9.5\n54,452,9.0\n54,453,8.5\n54,454,8.0\n54,455,8.5\n54,456,9.0\n54,457,9.5\n54,458,10.0\n54,459,10.5\n54,460,11.0\n54,461,11.5\n54,462,12.0\n54,463,12.5\n54,464,13.0\n54,465,13.5\n54,466,14.0\n54,467,14.5\n54,468,15.0\n54,469,15.5\n54,470,16.0\n54,471,16.5\n54,472,17.0\n54,473,17.5\n54,474,18.0\n54,475,10.5\n54,476,10.0\n54,477,9.5\n54,478,9.0\n54,479,8.5\n54,480,9.0\n54,481,9.5\n54,482,10.0\n54,483,10.5\n54,484,11.0\n54,485,11.5\n54,486,12.0\n54,487,12.5\n54,488,13.0\n54,489,13.5\n54,490,14.0\n54,491,14.5\n54,492,15.0\n54,493,15.5\n54,494,16.0\n54,495,16.5\n54,496,17.0\n54,497,17.5\n54,498,18.0\n54,499,18.5\n54,500,11.0\n54,501,10.5\n54,502,10.0\n54,503,9.5\n54,504,9.0\n54,505,9.5\n54,506,10.0\n54,507,10.5\n54,508,11.0\n54,509,11.5\n54,510,12.0\n54,511,12.5\n54,512,13.0\n54,513,13.5\n54,514,14.0\n54,515,14.5\n54,516,15.0\n54,517,15.5\n54,518,16.0\n54,519,16.5\n54,520,17.0\n54,521,17.5\n54,522,18.0\n54,523,18.5\n54,524,19.0\n54,525,11.5\n54,526,11.0\n54,527,10.5\n54,528,10.0\n54,529,9.5\n54,530,10.0\n54,531,10.5\n54,532,11.0\n54,533,11.5\n54,534,12.0\n54,535,12.5\n54,536,13.0\n54,537,13.5\n54,538,14.0\n54,539,14.5\n54,540,15.0\n54,541,15.5\n54,542,16.0\n54,543,16.5\n54,544,17.0\n54,545,17.5\n54,546,18.0\n54,547,18.5\n54,548,19.0\n54,549,19.5\n54,550,12.0\n54,551,11.5\n54,552,11.0\n54,553,10.5\n54,554,10.0\n54,555,10.5\n54,556,11.0\n54,557,11.5\n54,558,12.0\n54,559,12.5\n54,560,13.0\n54,561,13.5\n54,562,14.0\n54,563,14.5\n54,564,15.0\n54,565,15.5\n54,566,16.0\n54,567,16.5\n54,568,17.0\n54,569,17.5\n54,570,18.0\n54,571,18.5\n54,572,19.0\n54,573,19.5\n54,574,20.0\n54,575,12.5\n54,576,12.0\n54,577,11.5\n54,578,11.0\n54,579,10.5\n54,580,11.0\n54,581,11.5\n54,582,12.0\n54,583,12.5\n54,584,13.0\n54,585,13.5\n54,586,14.0\n54,587,14.5\n54,588,15.0\n54,589,15.5\n54,590,16.0\n54,591,16.5\n54,592,17.0\n54,593,17.5\n54,594,18.0\n54,595,18.5\n54,596,19.0\n54,597,19.5\n54,598,20.0\n54,599,20.5\n54,600,13.0\n54,601,12.5\n54,602,12.0\n54,603,11.5\n54,604,11.0\n54,605,11.5\n54,606,12.0\n54,607,12.5\n54,608,13.0\n54,609,13.5\n54,610,14.0\n54,611,14.5\n54,612,15.0\n54,613,15.5\n54,614,16.0\n54,615,16.5\n54,616,17.0\n54,617,17.5\n54,618,18.0\n54,619,18.5\n54,620,19.0\n54,621,19.5\n54,622,20.0\n54,623,20.5\n54,624,21.0\n55,0,3.5\n55,1,3.0\n55,2,2.5\n55,3,2.0\n55,4,1.5\n55,5,1.0\n55,6,1.5\n55,7,2.0\n55,8,2.5\n55,9,3.0\n55,10,3.5\n55,11,4.0\n55,12,4.5\n55,13,5.0\n55,14,5.5\n55,15,6.0\n55,16,6.5\n55,17,7.0\n55,18,7.5\n55,19,8.0\n55,20,8.5\n55,21,9.0\n55,22,9.5\n55,23,10.0\n55,24,10.5\n55,25,3.0\n55,26,2.5\n55,27,2.0\n55,28,1.5\n55,29,1.0\n55,30,0.5\n55,31,1.0\n55,32,1.5\n55,33,2.0\n55,34,2.5\n55,35,3.0\n55,36,3.5\n55,37,4.0\n55,38,4.5\n55,39,5.0\n55,40,5.5\n55,41,6.0\n55,42,6.5\n55,43,7.0\n55,44,7.5\n55,45,8.0\n55,46,8.5\n55,47,9.0\n55,48,9.5\n55,49,10.0\n55,50,2.5\n55,51,2.0\n55,52,1.5\n55,53,1.0\n55,54,0.5\n55,55,0\n55,56,0.5\n55,57,1.0\n55,58,1.5\n55,59,2.0\n55,60,2.5\n55,61,3.0\n55,62,3.5\n55,63,4.0\n55,64,4.5\n55,65,5.0\n55,66,5.5\n55,67,6.0\n55,68,6.5\n55,69,7.0\n55,70,7.5\n55,71,8.0\n55,72,8.5\n55,73,9.0\n55,74,9.5\n55,75,3.0\n55,76,2.5\n55,77,2.0\n55,78,1.5\n55,79,1.0\n55,80,0.5\n55,81,1.0\n55,82,1.5\n55,83,2.0\n55,84,2.5\n55,85,3.0\n55,86,3.5\n55,87,4.0\n55,88,4.5\n55,89,5.0\n55,90,5.5\n55,91,6.0\n55,92,6.5\n55,93,7.0\n55,94,7.5\n55,95,8.0\n55,96,8.5\n55,97,9.0\n55,98,9.5\n55,99,10.0\n55,100,3.5\n55,101,3.0\n55,102,2.5\n55,103,2.0\n55,104,1.5\n55,105,1.0\n55,106,1.5\n55,107,2.0\n55,108,2.5\n55,109,3.0\n55,110,3.5\n55,111,4.0\n55,112,4.5\n55,113,5.0\n55,114,5.5\n55,115,6.0\n55,116,6.5\n55,117,7.0\n55,118,7.5\n55,119,8.0\n55,120,8.5\n55,121,9.0\n55,122,9.5\n55,123,10.0\n55,124,10.5\n55,125,4.0\n55,126,3.5\n55,127,3.0\n55,128,2.5\n55,129,2.0\n55,130,1.5\n55,131,2.0\n55,132,2.5\n55,133,3.0\n55,134,3.5\n55,135,4.0\n55,136,4.5\n55,137,5.0\n55,138,5.5\n55,139,6.0\n55,140,6.5\n55,141,7.0\n55,142,7.5\n55,143,8.0\n55,144,8.5\n55,145,9.0\n55,146,9.5\n55,147,10.0\n55,148,10.5\n55,149,11.0\n55,150,4.5\n55,151,4.0\n55,152,3.5\n55,153,3.0\n55,154,2.5\n55,155,2.0\n55,156,2.5\n55,157,3.0\n55,158,3.5\n55,159,4.0\n55,160,4.5\n55,161,5.0\n55,162,5.5\n55,163,6.0\n55,164,6.5\n55,165,7.0\n55,166,7.5\n55,167,8.0\n55,168,8.5\n55,169,9.0\n55,170,9.5\n55,171,10.0\n55,172,10.5\n55,173,11.0\n55,174,11.5\n55,175,5.0\n55,176,4.5\n55,177,4.0\n55,178,3.5\n55,179,3.0\n55,180,2.5\n55,181,3.0\n55,182,3.5\n55,183,4.0\n55,184,4.5\n55,185,5.0\n55,186,5.5\n55,187,6.0\n55,188,6.5\n55,189,7.0\n55,190,7.5\n55,191,8.0\n55,192,8.5\n55,193,9.0\n55,194,9.5\n55,195,10.0\n55,196,10.5\n55,197,11.0\n55,198,11.5\n55,199,12.0\n55,200,5.5\n55,201,5.0\n55,202,4.5\n55,203,4.0\n55,204,3.5\n55,205,3.0\n55,206,3.5\n55,207,4.0\n55,208,4.5\n55,209,5.0\n55,210,5.5\n55,211,6.0\n55,212,6.5\n55,213,7.0\n55,214,7.5\n55,215,8.0\n55,216,8.5\n55,217,9.0\n55,218,9.5\n55,219,10.0\n55,220,10.5\n55,221,11.0\n55,222,11.5\n55,223,12.0\n55,224,12.5\n55,225,6.0\n55,226,5.5\n55,227,5.0\n55,228,4.5\n55,229,4.0\n55,230,3.5\n55,231,4.0\n55,232,4.5\n55,233,5.0\n55,234,5.5\n55,235,6.0\n55,236,6.5\n55,237,7.0\n55,238,7.5\n55,239,8.0\n55,240,8.5\n55,241,9.0\n55,242,9.5\n55,243,10.0\n55,244,10.5\n55,245,11.0\n55,246,11.5\n55,247,12.0\n55,248,12.5\n55,249,13.0\n55,250,6.5\n55,251,6.0\n55,252,5.5\n55,253,5.0\n55,254,4.5\n55,255,4.0\n55,256,4.5\n55,257,5.0\n55,258,5.5\n55,259,6.0\n55,260,6.5\n55,261,7.0\n55,262,7.5\n55,263,8.0\n55,264,8.5\n55,265,9.0\n55,266,9.5\n55,267,10.0\n55,268,10.5\n55,269,11.0\n55,270,11.5\n55,271,12.0\n55,272,12.5\n55,273,13.0\n55,274,13.5\n55,275,7.0\n55,276,6.5\n55,277,6.0\n55,278,5.5\n55,279,5.0\n55,280,4.5\n55,281,5.0\n55,282,5.5\n55,283,6.0\n55,284,6.5\n55,285,7.0\n55,286,7.5\n55,287,8.0\n55,288,8.5\n55,289,9.0\n55,290,9.5\n55,291,10.0\n55,292,10.5\n55,293,11.0\n55,294,11.5\n55,295,12.0\n55,296,12.5\n55,297,13.0\n55,298,13.5\n55,299,14.0\n55,300,7.5\n55,301,7.0\n55,302,6.5\n55,303,6.0\n55,304,5.5\n55,305,5.0\n55,306,5.5\n55,307,6.0\n55,308,6.5\n55,309,7.0\n55,310,7.5\n55,311,8.0\n55,312,8.5\n55,313,9.0\n55,314,9.5\n55,315,10.0\n55,316,10.5\n55,317,11.0\n55,318,11.5\n55,319,12.0\n55,320,12.5\n55,321,13.0\n55,322,13.5\n55,323,14.0\n55,324,14.5\n55,325,8.0\n55,326,7.5\n55,327,7.0\n55,328,6.5\n55,329,6.0\n55,330,5.5\n55,331,6.0\n55,332,6.5\n55,333,7.0\n55,334,7.5\n55,335,8.0\n55,336,8.5\n55,337,9.0\n55,338,9.5\n55,339,10.0\n55,340,10.5\n55,341,11.0\n55,342,11.5\n55,343,12.0\n55,344,12.5\n55,345,13.0\n55,346,13.5\n55,347,14.0\n55,348,14.5\n55,349,15.0\n55,350,8.5\n55,351,8.0\n55,352,7.5\n55,353,7.0\n55,354,6.5\n55,355,6.0\n55,356,6.5\n55,357,7.0\n55,358,7.5\n55,359,8.0\n55,360,8.5\n55,361,9.0\n55,362,9.5\n55,363,10.0\n55,364,10.5\n55,365,11.0\n55,366,11.5\n55,367,12.0\n55,368,12.5\n55,369,13.0\n55,370,13.5\n55,371,14.0\n55,372,14.5\n55,373,15.0\n55,374,15.5\n55,375,9.0\n55,376,8.5\n55,377,8.0\n55,378,7.5\n55,379,7.0\n55,380,6.5\n55,381,7.0\n55,382,7.5\n55,383,8.0\n55,384,8.5\n55,385,9.0\n55,386,9.5\n55,387,10.0\n55,388,10.5\n55,389,11.0\n55,390,11.5\n55,391,12.0\n55,392,12.5\n55,393,13.0\n55,394,13.5\n55,395,14.0\n55,396,14.5\n55,397,15.0\n55,398,15.5\n55,399,16.0\n55,400,9.5\n55,401,9.0\n55,402,8.5\n55,403,8.0\n55,404,7.5\n55,405,7.0\n55,406,7.5\n55,407,8.0\n55,408,8.5\n55,409,9.0\n55,410,9.5\n55,411,10.0\n55,412,10.5\n55,413,11.0\n55,414,11.5\n55,415,12.0\n55,416,12.5\n55,417,13.0\n55,418,13.5\n55,419,14.0\n55,420,14.5\n55,421,15.0\n55,422,15.5\n55,423,16.0\n55,424,16.5\n55,425,10.0\n55,426,9.5\n55,427,9.0\n55,428,8.5\n55,429,8.0\n55,430,7.5\n55,431,8.0\n55,432,8.5\n55,433,9.0\n55,434,9.5\n55,435,10.0\n55,436,10.5\n55,437,11.0\n55,438,11.5\n55,439,12.0\n55,440,12.5\n55,441,13.0\n55,442,13.5\n55,443,14.0\n55,444,14.5\n55,445,15.0\n55,446,15.5\n55,447,16.0\n55,448,16.5\n55,449,17.0\n55,450,10.5\n55,451,10.0\n55,452,9.5\n55,453,9.0\n55,454,8.5\n55,455,8.0\n55,456,8.5\n55,457,9.0\n55,458,9.5\n55,459,10.0\n55,460,10.5\n55,461,11.0\n55,462,11.5\n55,463,12.0\n55,464,12.5\n55,465,13.0\n55,466,13.5\n55,467,14.0\n55,468,14.5\n55,469,15.0\n55,470,15.5\n55,471,16.0\n55,472,16.5\n55,473,17.0\n55,474,17.5\n55,475,11.0\n55,476,10.5\n55,477,10.0\n55,478,9.5\n55,479,9.0\n55,480,8.5\n55,481,9.0\n55,482,9.5\n55,483,10.0\n55,484,10.5\n55,485,11.0\n55,486,11.5\n55,487,12.0\n55,488,12.5\n55,489,13.0\n55,490,13.5\n55,491,14.0\n55,492,14.5\n55,493,15.0\n55,494,15.5\n55,495,16.0\n55,496,16.5\n55,497,17.0\n55,498,17.5\n55,499,18.0\n55,500,11.5\n55,501,11.0\n55,502,10.5\n55,503,10.0\n55,504,9.5\n55,505,9.0\n55,506,9.5\n55,507,10.0\n55,508,10.5\n55,509,11.0\n55,510,11.5\n55,511,12.0\n55,512,12.5\n55,513,13.0\n55,514,13.5\n55,515,14.0\n55,516,14.5\n55,517,15.0\n55,518,15.5\n55,519,16.0\n55,520,16.5\n55,521,17.0\n55,522,17.5\n55,523,18.0\n55,524,18.5\n55,525,12.0\n55,526,11.5\n55,527,11.0\n55,528,10.5\n55,529,10.0\n55,530,9.5\n55,531,10.0\n55,532,10.5\n55,533,11.0\n55,534,11.5\n55,535,12.0\n55,536,12.5\n55,537,13.0\n55,538,13.5\n55,539,14.0\n55,540,14.5\n55,541,15.0\n55,542,15.5\n55,543,16.0\n55,544,16.5\n55,545,17.0\n55,546,17.5\n55,547,18.0\n55,548,18.5\n55,549,19.0\n55,550,12.5\n55,551,12.0\n55,552,11.5\n55,553,11.0\n55,554,10.5\n55,555,10.0\n55,556,10.5\n55,557,11.0\n55,558,11.5\n55,559,12.0\n55,560,12.5\n55,561,13.0\n55,562,13.5\n55,563,14.0\n55,564,14.5\n55,565,15.0\n55,566,15.5\n55,567,16.0\n55,568,16.5\n55,569,17.0\n55,570,17.5\n55,571,18.0\n55,572,18.5\n55,573,19.0\n55,574,19.5\n55,575,13.0\n55,576,12.5\n55,577,12.0\n55,578,11.5\n55,579,11.0\n55,580,10.5\n55,581,11.0\n55,582,11.5\n55,583,12.0\n55,584,12.5\n55,585,13.0\n55,586,13.5\n55,587,14.0\n55,588,14.5\n55,589,15.0\n55,590,15.5\n55,591,16.0\n55,592,16.5\n55,593,17.0\n55,594,17.5\n55,595,18.0\n55,596,18.5\n55,597,19.0\n55,598,19.5\n55,599,20.0\n55,600,13.5\n55,601,13.0\n55,602,12.5\n55,603,12.0\n55,604,11.5\n55,605,11.0\n55,606,11.5\n55,607,12.0\n55,608,12.5\n55,609,13.0\n55,610,13.5\n55,611,14.0\n55,612,14.5\n55,613,15.0\n55,614,15.5\n55,615,16.0\n55,616,16.5\n55,617,17.0\n55,618,17.5\n55,619,18.0\n55,620,18.5\n55,621,19.0\n55,622,19.5\n55,623,20.0\n55,624,20.5\n56,0,4.0\n56,1,3.5\n56,2,3.0\n56,3,2.5\n56,4,2.0\n56,5,1.5\n56,6,1.0\n56,7,1.5\n56,8,2.0\n56,9,2.5\n56,10,3.0\n56,11,3.5\n56,12,4.0\n56,13,4.5\n56,14,5.0\n56,15,5.5\n56,16,6.0\n56,17,6.5\n56,18,7.0\n56,19,7.5\n56,20,8.0\n56,21,8.5\n56,22,9.0\n56,23,9.5\n56,24,10.0\n56,25,3.5\n56,26,3.0\n56,27,2.5\n56,28,2.0\n56,29,1.5\n56,30,1.0\n56,31,0.5\n56,32,1.0\n56,33,1.5\n56,34,2.0\n56,35,2.5\n56,36,3.0\n56,37,3.5\n56,38,4.0\n56,39,4.5\n56,40,5.0\n56,41,5.5\n56,42,6.0\n56,43,6.5\n56,44,7.0\n56,45,7.5\n56,46,8.0\n56,47,8.5\n56,48,9.0\n56,49,9.5\n56,50,3.0\n56,51,2.5\n56,52,2.0\n56,53,1.5\n56,54,1.0\n56,55,0.5\n56,56,0\n56,57,0.5\n56,58,1.0\n56,59,1.5\n56,60,2.0\n56,61,2.5\n56,62,3.0\n56,63,3.5\n56,64,4.0\n56,65,4.5\n56,66,5.0\n56,67,5.5\n56,68,6.0\n56,69,6.5\n56,70,7.0\n56,71,7.5\n56,72,8.0\n56,73,8.5\n56,74,9.0\n56,75,3.5\n56,76,3.0\n56,77,2.5\n56,78,2.0\n56,79,1.5\n56,80,1.0\n56,81,0.5\n56,82,1.0\n56,83,1.5\n56,84,2.0\n56,85,2.5\n56,86,3.0\n56,87,3.5\n56,88,4.0\n56,89,4.5\n56,90,5.0\n56,91,5.5\n56,92,6.0\n56,93,6.5\n56,94,7.0\n56,95,7.5\n56,96,8.0\n56,97,8.5\n56,98,9.0\n56,99,9.5\n56,100,4.0\n56,101,3.5\n56,102,3.0\n56,103,2.5\n56,104,2.0\n56,105,1.5\n56,106,1.0\n56,107,1.5\n56,108,2.0\n56,109,2.5\n56,110,3.0\n56,111,3.5\n56,112,4.0\n56,113,4.5\n56,114,5.0\n56,115,5.5\n56,116,6.0\n56,117,6.5\n56,118,7.0\n56,119,7.5\n56,120,8.0\n56,121,8.5\n56,122,9.0\n56,123,9.5\n56,124,10.0\n56,125,4.5\n56,126,4.0\n56,127,3.5\n56,128,3.0\n56,129,2.5\n56,130,2.0\n56,131,1.5\n56,132,2.0\n56,133,2.5\n56,134,3.0\n56,135,3.5\n56,136,4.0\n56,137,4.5\n56,138,5.0\n56,139,5.5\n56,140,6.0\n56,141,6.5\n56,142,7.0\n56,143,7.5\n56,144,8.0\n56,145,8.5\n56,146,9.0\n56,147,9.5\n56,148,10.0\n56,149,10.5\n56,150,5.0\n56,151,4.5\n56,152,4.0\n56,153,3.5\n56,154,3.0\n56,155,2.5\n56,156,2.0\n56,157,2.5\n56,158,3.0\n56,159,3.5\n56,160,4.0\n56,161,4.5\n56,162,5.0\n56,163,5.5\n56,164,6.0\n56,165,6.5\n56,166,7.0\n56,167,7.5\n56,168,8.0\n56,169,8.5\n56,170,9.0\n56,171,9.5\n56,172,10.0\n56,173,10.5\n56,174,11.0\n56,175,5.5\n56,176,5.0\n56,177,4.5\n56,178,4.0\n56,179,3.5\n56,180,3.0\n56,181,2.5\n56,182,3.0\n56,183,3.5\n56,184,4.0\n56,185,4.5\n56,186,5.0\n56,187,5.5\n56,188,6.0\n56,189,6.5\n56,190,7.0\n56,191,7.5\n56,192,8.0\n56,193,8.5\n56,194,9.0\n56,195,9.5\n56,196,10.0\n56,197,10.5\n56,198,11.0\n56,199,11.5\n56,200,6.0\n56,201,5.5\n56,202,5.0\n56,203,4.5\n56,204,4.0\n56,205,3.5\n56,206,3.0\n56,207,3.5\n56,208,4.0\n56,209,4.5\n56,210,5.0\n56,211,5.5\n56,212,6.0\n56,213,6.5\n56,214,7.0\n56,215,7.5\n56,216,8.0\n56,217,8.5\n56,218,9.0\n56,219,9.5\n56,220,10.0\n56,221,10.5\n56,222,11.0\n56,223,11.5\n56,224,12.0\n56,225,6.5\n56,226,6.0\n56,227,5.5\n56,228,5.0\n56,229,4.5\n56,230,4.0\n56,231,3.5\n56,232,4.0\n56,233,4.5\n56,234,5.0\n56,235,5.5\n56,236,6.0\n56,237,6.5\n56,238,7.0\n56,239,7.5\n56,240,8.0\n56,241,8.5\n56,242,9.0\n56,243,9.5\n56,244,10.0\n56,245,10.5\n56,246,11.0\n56,247,11.5\n56,248,12.0\n56,249,12.5\n56,250,7.0\n56,251,6.5\n56,252,6.0\n56,253,5.5\n56,254,5.0\n56,255,4.5\n56,256,4.0\n56,257,4.5\n56,258,5.0\n56,259,5.5\n56,260,6.0\n56,261,6.5\n56,262,7.0\n56,263,7.5\n56,264,8.0\n56,265,8.5\n56,266,9.0\n56,267,9.5\n56,268,10.0\n56,269,10.5\n56,270,11.0\n56,271,11.5\n56,272,12.0\n56,273,12.5\n56,274,13.0\n56,275,7.5\n56,276,7.0\n56,277,6.5\n56,278,6.0\n56,279,5.5\n56,280,5.0\n56,281,4.5\n56,282,5.0\n56,283,5.5\n56,284,6.0\n56,285,6.5\n56,286,7.0\n56,287,7.5\n56,288,8.0\n56,289,8.5\n56,290,9.0\n56,291,9.5\n56,292,10.0\n56,293,10.5\n56,294,11.0\n56,295,11.5\n56,296,12.0\n56,297,12.5\n56,298,13.0\n56,299,13.5\n56,300,8.0\n56,301,7.5\n56,302,7.0\n56,303,6.5\n56,304,6.0\n56,305,5.5\n56,306,5.0\n56,307,5.5\n56,308,6.0\n56,309,6.5\n56,310,7.0\n56,311,7.5\n56,312,8.0\n56,313,8.5\n56,314,9.0\n56,315,9.5\n56,316,10.0\n56,317,10.5\n56,318,11.0\n56,319,11.5\n56,320,12.0\n56,321,12.5\n56,322,13.0\n56,323,13.5\n56,324,14.0\n56,325,8.5\n56,326,8.0\n56,327,7.5\n56,328,7.0\n56,329,6.5\n56,330,6.0\n56,331,5.5\n56,332,6.0\n56,333,6.5\n56,334,7.0\n56,335,7.5\n56,336,8.0\n56,337,8.5\n56,338,9.0\n56,339,9.5\n56,340,10.0\n56,341,10.5\n56,342,11.0\n56,343,11.5\n56,344,12.0\n56,345,12.5\n56,346,13.0\n56,347,13.5\n56,348,14.0\n56,349,14.5\n56,350,9.0\n56,351,8.5\n56,352,8.0\n56,353,7.5\n56,354,7.0\n56,355,6.5\n56,356,6.0\n56,357,6.5\n56,358,7.0\n56,359,7.5\n56,360,8.0\n56,361,8.5\n56,362,9.0\n56,363,9.5\n56,364,10.0\n56,365,10.5\n56,366,11.0\n56,367,11.5\n56,368,12.0\n56,369,12.5\n56,370,13.0\n56,371,13.5\n56,372,14.0\n56,373,14.5\n56,374,15.0\n56,375,9.5\n56,376,9.0\n56,377,8.5\n56,378,8.0\n56,379,7.5\n56,380,7.0\n56,381,6.5\n56,382,7.0\n56,383,7.5\n56,384,8.0\n56,385,8.5\n56,386,9.0\n56,387,9.5\n56,388,10.0\n56,389,10.5\n56,390,11.0\n56,391,11.5\n56,392,12.0\n56,393,12.5\n56,394,13.0\n56,395,13.5\n56,396,14.0\n56,397,14.5\n56,398,15.0\n56,399,15.5\n56,400,10.0\n56,401,9.5\n56,402,9.0\n56,403,8.5\n56,404,8.0\n56,405,7.5\n56,406,7.0\n56,407,7.5\n56,408,8.0\n56,409,8.5\n56,410,9.0\n56,411,9.5\n56,412,10.0\n56,413,10.5\n56,414,11.0\n56,415,11.5\n56,416,12.0\n56,417,12.5\n56,418,13.0\n56,419,13.5\n56,420,14.0\n56,421,14.5\n56,422,15.0\n56,423,15.5\n56,424,16.0\n56,425,10.5\n56,426,10.0\n56,427,9.5\n56,428,9.0\n56,429,8.5\n56,430,8.0\n56,431,7.5\n56,432,8.0\n56,433,8.5\n56,434,9.0\n56,435,9.5\n56,436,10.0\n56,437,10.5\n56,438,11.0\n56,439,11.5\n56,440,12.0\n56,441,12.5\n56,442,13.0\n56,443,13.5\n56,444,14.0\n56,445,14.5\n56,446,15.0\n56,447,15.5\n56,448,16.0\n56,449,16.5\n56,450,11.0\n56,451,10.5\n56,452,10.0\n56,453,9.5\n56,454,9.0\n56,455,8.5\n56,456,8.0\n56,457,8.5\n56,458,9.0\n56,459,9.5\n56,460,10.0\n56,461,10.5\n56,462,11.0\n56,463,11.5\n56,464,12.0\n56,465,12.5\n56,466,13.0\n56,467,13.5\n56,468,14.0\n56,469,14.5\n56,470,15.0\n56,471,15.5\n56,472,16.0\n56,473,16.5\n56,474,17.0\n56,475,11.5\n56,476,11.0\n56,477,10.5\n56,478,10.0\n56,479,9.5\n56,480,9.0\n56,481,8.5\n56,482,9.0\n56,483,9.5\n56,484,10.0\n56,485,10.5\n56,486,11.0\n56,487,11.5\n56,488,12.0\n56,489,12.5\n56,490,13.0\n56,491,13.5\n56,492,14.0\n56,493,14.5\n56,494,15.0\n56,495,15.5\n56,496,16.0\n56,497,16.5\n56,498,17.0\n56,499,17.5\n56,500,12.0\n56,501,11.5\n56,502,11.0\n56,503,10.5\n56,504,10.0\n56,505,9.5\n56,506,9.0\n56,507,9.5\n56,508,10.0\n56,509,10.5\n56,510,11.0\n56,511,11.5\n56,512,12.0\n56,513,12.5\n56,514,13.0\n56,515,13.5\n56,516,14.0\n56,517,14.5\n56,518,15.0\n56,519,15.5\n56,520,16.0\n56,521,16.5\n56,522,17.0\n56,523,17.5\n56,524,18.0\n56,525,12.5\n56,526,12.0\n56,527,11.5\n56,528,11.0\n56,529,10.5\n56,530,10.0\n56,531,9.5\n56,532,10.0\n56,533,10.5\n56,534,11.0\n56,535,11.5\n56,536,12.0\n56,537,12.5\n56,538,13.0\n56,539,13.5\n56,540,14.0\n56,541,14.5\n56,542,15.0\n56,543,15.5\n56,544,16.0\n56,545,16.5\n56,546,17.0\n56,547,17.5\n56,548,18.0\n56,549,18.5\n56,550,13.0\n56,551,12.5\n56,552,12.0\n56,553,11.5\n56,554,11.0\n56,555,10.5\n56,556,10.0\n56,557,10.5\n56,558,11.0\n56,559,11.5\n56,560,12.0\n56,561,12.5\n56,562,13.0\n56,563,13.5\n56,564,14.0\n56,565,14.5\n56,566,15.0\n56,567,15.5\n56,568,16.0\n56,569,16.5\n56,570,17.0\n56,571,17.5\n56,572,18.0\n56,573,18.5\n56,574,19.0\n56,575,13.5\n56,576,13.0\n56,577,12.5\n56,578,12.0\n56,579,11.5\n56,580,11.0\n56,581,10.5\n56,582,11.0\n56,583,11.5\n56,584,12.0\n56,585,12.5\n56,586,13.0\n56,587,13.5\n56,588,14.0\n56,589,14.5\n56,590,15.0\n56,591,15.5\n56,592,16.0\n56,593,16.5\n56,594,17.0\n56,595,17.5\n56,596,18.0\n56,597,18.5\n56,598,19.0\n56,599,19.5\n56,600,14.0\n56,601,13.5\n56,602,13.0\n56,603,12.5\n56,604,12.0\n56,605,11.5\n56,606,11.0\n56,607,11.5\n56,608,12.0\n56,609,12.5\n56,610,13.0\n56,611,13.5\n56,612,14.0\n56,613,14.5\n56,614,15.0\n56,615,15.5\n56,616,16.0\n56,617,16.5\n56,618,17.0\n56,619,17.5\n56,620,18.0\n56,621,18.5\n56,622,19.0\n56,623,19.5\n56,624,20.0\n57,0,4.5\n57,1,4.0\n57,2,3.5\n57,3,3.0\n57,4,2.5\n57,5,2.0\n57,6,1.5\n57,7,1.0\n57,8,1.5\n57,9,2.0\n57,10,2.5\n57,11,3.0\n57,12,3.5\n57,13,4.0\n57,14,4.5\n57,15,5.0\n57,16,5.5\n57,17,6.0\n57,18,6.5\n57,19,7.0\n57,20,7.5\n57,21,8.0\n57,22,8.5\n57,23,9.0\n57,24,9.5\n57,25,4.0\n57,26,3.5\n57,27,3.0\n57,28,2.5\n57,29,2.0\n57,30,1.5\n57,31,1.0\n57,32,0.5\n57,33,1.0\n57,34,1.5\n57,35,2.0\n57,36,2.5\n57,37,3.0\n57,38,3.5\n57,39,4.0\n57,40,4.5\n57,41,5.0\n57,42,5.5\n57,43,6.0\n57,44,6.5\n57,45,7.0\n57,46,7.5\n57,47,8.0\n57,48,8.5\n57,49,9.0\n57,50,3.5\n57,51,3.0\n57,52,2.5\n57,53,2.0\n57,54,1.5\n57,55,1.0\n57,56,0.5\n57,57,0\n57,58,0.5\n57,59,1.0\n57,60,1.5\n57,61,2.0\n57,62,2.5\n57,63,3.0\n57,64,3.5\n57,65,4.0\n57,66,4.5\n57,67,5.0\n57,68,5.5\n57,69,6.0\n57,70,6.5\n57,71,7.0\n57,72,7.5\n57,73,8.0\n57,74,8.5\n57,75,4.0\n57,76,3.5\n57,77,3.0\n57,78,2.5\n57,79,2.0\n57,80,1.5\n57,81,1.0\n57,82,0.5\n57,83,1.0\n57,84,1.5\n57,85,2.0\n57,86,2.5\n57,87,3.0\n57,88,3.5\n57,89,4.0\n57,90,4.5\n57,91,5.0\n57,92,5.5\n57,93,6.0\n57,94,6.5\n57,95,7.0\n57,96,7.5\n57,97,8.0\n57,98,8.5\n57,99,9.0\n57,100,4.5\n57,101,4.0\n57,102,3.5\n57,103,3.0\n57,104,2.5\n57,105,2.0\n57,106,1.5\n57,107,1.0\n57,108,1.5\n57,109,2.0\n57,110,2.5\n57,111,3.0\n57,112,3.5\n57,113,4.0\n57,114,4.5\n57,115,5.0\n57,116,5.5\n57,117,6.0\n57,118,6.5\n57,119,7.0\n57,120,7.5\n57,121,8.0\n57,122,8.5\n57,123,9.0\n57,124,9.5\n57,125,5.0\n57,126,4.5\n57,127,4.0\n57,128,3.5\n57,129,3.0\n57,130,2.5\n57,131,2.0\n57,132,1.5\n57,133,2.0\n57,134,2.5\n57,135,3.0\n57,136,3.5\n57,137,4.0\n57,138,4.5\n57,139,5.0\n57,140,5.5\n57,141,6.0\n57,142,6.5\n57,143,7.0\n57,144,7.5\n57,145,8.0\n57,146,8.5\n57,147,9.0\n57,148,9.5\n57,149,10.0\n57,150,5.5\n57,151,5.0\n57,152,4.5\n57,153,4.0\n57,154,3.5\n57,155,3.0\n57,156,2.5\n57,157,2.0\n57,158,2.5\n57,159,3.0\n57,160,3.5\n57,161,4.0\n57,162,4.5\n57,163,5.0\n57,164,5.5\n57,165,6.0\n57,166,6.5\n57,167,7.0\n57,168,7.5\n57,169,8.0\n57,170,8.5\n57,171,9.0\n57,172,9.5\n57,173,10.0\n57,174,10.5\n57,175,6.0\n57,176,5.5\n57,177,5.0\n57,178,4.5\n57,179,4.0\n57,180,3.5\n57,181,3.0\n57,182,2.5\n57,183,3.0\n57,184,3.5\n57,185,4.0\n57,186,4.5\n57,187,5.0\n57,188,5.5\n57,189,6.0\n57,190,6.5\n57,191,7.0\n57,192,7.5\n57,193,8.0\n57,194,8.5\n57,195,9.0\n57,196,9.5\n57,197,10.0\n57,198,10.5\n57,199,11.0\n57,200,6.5\n57,201,6.0\n57,202,5.5\n57,203,5.0\n57,204,4.5\n57,205,4.0\n57,206,3.5\n57,207,3.0\n57,208,3.5\n57,209,4.0\n57,210,4.5\n57,211,5.0\n57,212,5.5\n57,213,6.0\n57,214,6.5\n57,215,7.0\n57,216,7.5\n57,217,8.0\n57,218,8.5\n57,219,9.0\n57,220,9.5\n57,221,10.0\n57,222,10.5\n57,223,11.0\n57,224,11.5\n57,225,7.0\n57,226,6.5\n57,227,6.0\n57,228,5.5\n57,229,5.0\n57,230,4.5\n57,231,4.0\n57,232,3.5\n57,233,4.0\n57,234,4.5\n57,235,5.0\n57,236,5.5\n57,237,6.0\n57,238,6.5\n57,239,7.0\n57,240,7.5\n57,241,8.0\n57,242,8.5\n57,243,9.0\n57,244,9.5\n57,245,10.0\n57,246,10.5\n57,247,11.0\n57,248,11.5\n57,249,12.0\n57,250,7.5\n57,251,7.0\n57,252,6.5\n57,253,6.0\n57,254,5.5\n57,255,5.0\n57,256,4.5\n57,257,4.0\n57,258,4.5\n57,259,5.0\n57,260,5.5\n57,261,6.0\n57,262,6.5\n57,263,7.0\n57,264,7.5\n57,265,8.0\n57,266,8.5\n57,267,9.0\n57,268,9.5\n57,269,10.0\n57,270,10.5\n57,271,11.0\n57,272,11.5\n57,273,12.0\n57,274,12.5\n57,275,8.0\n57,276,7.5\n57,277,7.0\n57,278,6.5\n57,279,6.0\n57,280,5.5\n57,281,5.0\n57,282,4.5\n57,283,5.0\n57,284,5.5\n57,285,6.0\n57,286,6.5\n57,287,7.0\n57,288,7.5\n57,289,8.0\n57,290,8.5\n57,291,9.0\n57,292,9.5\n57,293,10.0\n57,294,10.5\n57,295,11.0\n57,296,11.5\n57,297,12.0\n57,298,12.5\n57,299,13.0\n57,300,8.5\n57,301,8.0\n57,302,7.5\n57,303,7.0\n57,304,6.5\n57,305,6.0\n57,306,5.5\n57,307,5.0\n57,308,5.5\n57,309,6.0\n57,310,6.5\n57,311,7.0\n57,312,7.5\n57,313,8.0\n57,314,8.5\n57,315,9.0\n57,316,9.5\n57,317,10.0\n57,318,10.5\n57,319,11.0\n57,320,11.5\n57,321,12.0\n57,322,12.5\n57,323,13.0\n57,324,13.5\n57,325,9.0\n57,326,8.5\n57,327,8.0\n57,328,7.5\n57,329,7.0\n57,330,6.5\n57,331,6.0\n57,332,5.5\n57,333,6.0\n57,334,6.5\n57,335,7.0\n57,336,7.5\n57,337,8.0\n57,338,8.5\n57,339,9.0\n57,340,9.5\n57,341,10.0\n57,342,10.5\n57,343,11.0\n57,344,11.5\n57,345,12.0\n57,346,12.5\n57,347,13.0\n57,348,13.5\n57,349,14.0\n57,350,9.5\n57,351,9.0\n57,352,8.5\n57,353,8.0\n57,354,7.5\n57,355,7.0\n57,356,6.5\n57,357,6.0\n57,358,6.5\n57,359,7.0\n57,360,7.5\n57,361,8.0\n57,362,8.5\n57,363,9.0\n57,364,9.5\n57,365,10.0\n57,366,10.5\n57,367,11.0\n57,368,11.5\n57,369,12.0\n57,370,12.5\n57,371,13.0\n57,372,13.5\n57,373,14.0\n57,374,14.5\n57,375,10.0\n57,376,9.5\n57,377,9.0\n57,378,8.5\n57,379,8.0\n57,380,7.5\n57,381,7.0\n57,382,6.5\n57,383,7.0\n57,384,7.5\n57,385,8.0\n57,386,8.5\n57,387,9.0\n57,388,9.5\n57,389,10.0\n57,390,10.5\n57,391,11.0\n57,392,11.5\n57,393,12.0\n57,394,12.5\n57,395,13.0\n57,396,13.5\n57,397,14.0\n57,398,14.5\n57,399,15.0\n57,400,10.5\n57,401,10.0\n57,402,9.5\n57,403,9.0\n57,404,8.5\n57,405,8.0\n57,406,7.5\n57,407,7.0\n57,408,7.5\n57,409,8.0\n57,410,8.5\n57,411,9.0\n57,412,9.5\n57,413,10.0\n57,414,10.5\n57,415,11.0\n57,416,11.5\n57,417,12.0\n57,418,12.5\n57,419,13.0\n57,420,13.5\n57,421,14.0\n57,422,14.5\n57,423,15.0\n57,424,15.5\n57,425,11.0\n57,426,10.5\n57,427,10.0\n57,428,9.5\n57,429,9.0\n57,430,8.5\n57,431,8.0\n57,432,7.5\n57,433,8.0\n57,434,8.5\n57,435,9.0\n57,436,9.5\n57,437,10.0\n57,438,10.5\n57,439,11.0\n57,440,11.5\n57,441,12.0\n57,442,12.5\n57,443,13.0\n57,444,13.5\n57,445,14.0\n57,446,14.5\n57,447,15.0\n57,448,15.5\n57,449,16.0\n57,450,11.5\n57,451,11.0\n57,452,10.5\n57,453,10.0\n57,454,9.5\n57,455,9.0\n57,456,8.5\n57,457,8.0\n57,458,8.5\n57,459,9.0\n57,460,9.5\n57,461,10.0\n57,462,10.5\n57,463,11.0\n57,464,11.5\n57,465,12.0\n57,466,12.5\n57,467,13.0\n57,468,13.5\n57,469,14.0\n57,470,14.5\n57,471,15.0\n57,472,15.5\n57,473,16.0\n57,474,16.5\n57,475,12.0\n57,476,11.5\n57,477,11.0\n57,478,10.5\n57,479,10.0\n57,480,9.5\n57,481,9.0\n57,482,8.5\n57,483,9.0\n57,484,9.5\n57,485,10.0\n57,486,10.5\n57,487,11.0\n57,488,11.5\n57,489,12.0\n57,490,12.5\n57,491,13.0\n57,492,13.5\n57,493,14.0\n57,494,14.5\n57,495,15.0\n57,496,15.5\n57,497,16.0\n57,498,16.5\n57,499,17.0\n57,500,12.5\n57,501,12.0\n57,502,11.5\n57,503,11.0\n57,504,10.5\n57,505,10.0\n57,506,9.5\n57,507,9.0\n57,508,9.5\n57,509,10.0\n57,510,10.5\n57,511,11.0\n57,512,11.5\n57,513,12.0\n57,514,12.5\n57,515,13.0\n57,516,13.5\n57,517,14.0\n57,518,14.5\n57,519,15.0\n57,520,15.5\n57,521,16.0\n57,522,16.5\n57,523,17.0\n57,524,17.5\n57,525,13.0\n57,526,12.5\n57,527,12.0\n57,528,11.5\n57,529,11.0\n57,530,10.5\n57,531,10.0\n57,532,9.5\n57,533,10.0\n57,534,10.5\n57,535,11.0\n57,536,11.5\n57,537,12.0\n57,538,12.5\n57,539,13.0\n57,540,13.5\n57,541,14.0\n57,542,14.5\n57,543,15.0\n57,544,15.5\n57,545,16.0\n57,546,16.5\n57,547,17.0\n57,548,17.5\n57,549,18.0\n57,550,13.5\n57,551,13.0\n57,552,12.5\n57,553,12.0\n57,554,11.5\n57,555,11.0\n57,556,10.5\n57,557,10.0\n57,558,10.5\n57,559,11.0\n57,560,11.5\n57,561,12.0\n57,562,12.5\n57,563,13.0\n57,564,13.5\n57,565,14.0\n57,566,14.5\n57,567,15.0\n57,568,15.5\n57,569,16.0\n57,570,16.5\n57,571,17.0\n57,572,17.5\n57,573,18.0\n57,574,18.5\n57,575,14.0\n57,576,13.5\n57,577,13.0\n57,578,12.5\n57,579,12.0\n57,580,11.5\n57,581,11.0\n57,582,10.5\n57,583,11.0\n57,584,11.5\n57,585,12.0\n57,586,12.5\n57,587,13.0\n57,588,13.5\n57,589,14.0\n57,590,14.5\n57,591,15.0\n57,592,15.5\n57,593,16.0\n57,594,16.5\n57,595,17.0\n57,596,17.5\n57,597,18.0\n57,598,18.5\n57,599,19.0\n57,600,14.5\n57,601,14.0\n57,602,13.5\n57,603,13.0\n57,604,12.5\n57,605,12.0\n57,606,11.5\n57,607,11.0\n57,608,11.5\n57,609,12.0\n57,610,12.5\n57,611,13.0\n57,612,13.5\n57,613,14.0\n57,614,14.5\n57,615,15.0\n57,616,15.5\n57,617,16.0\n57,618,16.5\n57,619,17.0\n57,620,17.5\n57,621,18.0\n57,622,18.5\n57,623,19.0\n57,624,19.5\n58,0,5.0\n58,1,4.5\n58,2,4.0\n58,3,3.5\n58,4,3.0\n58,5,2.5\n58,6,2.0\n58,7,1.5\n58,8,1.0\n58,9,1.5\n58,10,2.0\n58,11,2.5\n58,12,3.0\n58,13,3.5\n58,14,4.0\n58,15,4.5\n58,16,5.0\n58,17,5.5\n58,18,6.0\n58,19,6.5\n58,20,7.0\n58,21,7.5\n58,22,8.0\n58,23,8.5\n58,24,9.0\n58,25,4.5\n58,26,4.0\n58,27,3.5\n58,28,3.0\n58,29,2.5\n58,30,2.0\n58,31,1.5\n58,32,1.0\n58,33,0.5\n58,34,1.0\n58,35,1.5\n58,36,2.0\n58,37,2.5\n58,38,3.0\n58,39,3.5\n58,40,4.0\n58,41,4.5\n58,42,5.0\n58,43,5.5\n58,44,6.0\n58,45,6.5\n58,46,7.0\n58,47,7.5\n58,48,8.0\n58,49,8.5\n58,50,4.0\n58,51,3.5\n58,52,3.0\n58,53,2.5\n58,54,2.0\n58,55,1.5\n58,56,1.0\n58,57,0.5\n58,58,0\n58,59,0.5\n58,60,1.0\n58,61,1.5\n58,62,2.0\n58,63,2.5\n58,64,3.0\n58,65,3.5\n58,66,4.0\n58,67,4.5\n58,68,5.0\n58,69,5.5\n58,70,6.0\n58,71,6.5\n58,72,7.0\n58,73,7.5\n58,74,8.0\n58,75,4.5\n58,76,4.0\n58,77,3.5\n58,78,3.0\n58,79,2.5\n58,80,2.0\n58,81,1.5\n58,82,1.0\n58,83,0.5\n58,84,1.0\n58,85,1.5\n58,86,2.0\n58,87,2.5\n58,88,3.0\n58,89,3.5\n58,90,4.0\n58,91,4.5\n58,92,5.0\n58,93,5.5\n58,94,6.0\n58,95,6.5\n58,96,7.0\n58,97,7.5\n58,98,8.0\n58,99,8.5\n58,100,5.0\n58,101,4.5\n58,102,4.0\n58,103,3.5\n58,104,3.0\n58,105,2.5\n58,106,2.0\n58,107,1.5\n58,108,1.0\n58,109,1.5\n58,110,2.0\n58,111,2.5\n58,112,3.0\n58,113,3.5\n58,114,4.0\n58,115,4.5\n58,116,5.0\n58,117,5.5\n58,118,6.0\n58,119,6.5\n58,120,7.0\n58,121,7.5\n58,122,8.0\n58,123,8.5\n58,124,9.0\n58,125,5.5\n58,126,5.0\n58,127,4.5\n58,128,4.0\n58,129,3.5\n58,130,3.0\n58,131,2.5\n58,132,2.0\n58,133,1.5\n58,134,2.0\n58,135,2.5\n58,136,3.0\n58,137,3.5\n58,138,4.0\n58,139,4.5\n58,140,5.0\n58,141,5.5\n58,142,6.0\n58,143,6.5\n58,144,7.0\n58,145,7.5\n58,146,8.0\n58,147,8.5\n58,148,9.0\n58,149,9.5\n58,150,6.0\n58,151,5.5\n58,152,5.0\n58,153,4.5\n58,154,4.0\n58,155,3.5\n58,156,3.0\n58,157,2.5\n58,158,2.0\n58,159,2.5\n58,160,3.0\n58,161,3.5\n58,162,4.0\n58,163,4.5\n58,164,5.0\n58,165,5.5\n58,166,6.0\n58,167,6.5\n58,168,7.0\n58,169,7.5\n58,170,8.0\n58,171,8.5\n58,172,9.0\n58,173,9.5\n58,174,10.0\n58,175,6.5\n58,176,6.0\n58,177,5.5\n58,178,5.0\n58,179,4.5\n58,180,4.0\n58,181,3.5\n58,182,3.0\n58,183,2.5\n58,184,3.0\n58,185,3.5\n58,186,4.0\n58,187,4.5\n58,188,5.0\n58,189,5.5\n58,190,6.0\n58,191,6.5\n58,192,7.0\n58,193,7.5\n58,194,8.0\n58,195,8.5\n58,196,9.0\n58,197,9.5\n58,198,10.0\n58,199,10.5\n58,200,7.0\n58,201,6.5\n58,202,6.0\n58,203,5.5\n58,204,5.0\n58,205,4.5\n58,206,4.0\n58,207,3.5\n58,208,3.0\n58,209,3.5\n58,210,4.0\n58,211,4.5\n58,212,5.0\n58,213,5.5\n58,214,6.0\n58,215,6.5\n58,216,7.0\n58,217,7.5\n58,218,8.0\n58,219,8.5\n58,220,9.0\n58,221,9.5\n58,222,10.0\n58,223,10.5\n58,224,11.0\n58,225,7.5\n58,226,7.0\n58,227,6.5\n58,228,6.0\n58,229,5.5\n58,230,5.0\n58,231,4.5\n58,232,4.0\n58,233,3.5\n58,234,4.0\n58,235,4.5\n58,236,5.0\n58,237,5.5\n58,238,6.0\n58,239,6.5\n58,240,7.0\n58,241,7.5\n58,242,8.0\n58,243,8.5\n58,244,9.0\n58,245,9.5\n58,246,10.0\n58,247,10.5\n58,248,11.0\n58,249,11.5\n58,250,8.0\n58,251,7.5\n58,252,7.0\n58,253,6.5\n58,254,6.0\n58,255,5.5\n58,256,5.0\n58,257,4.5\n58,258,4.0\n58,259,4.5\n58,260,5.0\n58,261,5.5\n58,262,6.0\n58,263,6.5\n58,264,7.0\n58,265,7.5\n58,266,8.0\n58,267,8.5\n58,268,9.0\n58,269,9.5\n58,270,10.0\n58,271,10.5\n58,272,11.0\n58,273,11.5\n58,274,12.0\n58,275,8.5\n58,276,8.0\n58,277,7.5\n58,278,7.0\n58,279,6.5\n58,280,6.0\n58,281,5.5\n58,282,5.0\n58,283,4.5\n58,284,5.0\n58,285,5.5\n58,286,6.0\n58,287,6.5\n58,288,7.0\n58,289,7.5\n58,290,8.0\n58,291,8.5\n58,292,9.0\n58,293,9.5\n58,294,10.0\n58,295,10.5\n58,296,11.0\n58,297,11.5\n58,298,12.0\n58,299,12.5\n58,300,9.0\n58,301,8.5\n58,302,8.0\n58,303,7.5\n58,304,7.0\n58,305,6.5\n58,306,6.0\n58,307,5.5\n58,308,5.0\n58,309,5.5\n58,310,6.0\n58,311,6.5\n58,312,7.0\n58,313,7.5\n58,314,8.0\n58,315,8.5\n58,316,9.0\n58,317,9.5\n58,318,10.0\n58,319,10.5\n58,320,11.0\n58,321,11.5\n58,322,12.0\n58,323,12.5\n58,324,13.0\n58,325,9.5\n58,326,9.0\n58,327,8.5\n58,328,8.0\n58,329,7.5\n58,330,7.0\n58,331,6.5\n58,332,6.0\n58,333,5.5\n58,334,6.0\n58,335,6.5\n58,336,7.0\n58,337,7.5\n58,338,8.0\n58,339,8.5\n58,340,9.0\n58,341,9.5\n58,342,10.0\n58,343,10.5\n58,344,11.0\n58,345,11.5\n58,346,12.0\n58,347,12.5\n58,348,13.0\n58,349,13.5\n58,350,10.0\n58,351,9.5\n58,352,9.0\n58,353,8.5\n58,354,8.0\n58,355,7.5\n58,356,7.0\n58,357,6.5\n58,358,6.0\n58,359,6.5\n58,360,7.0\n58,361,7.5\n58,362,8.0\n58,363,8.5\n58,364,9.0\n58,365,9.5\n58,366,10.0\n58,367,10.5\n58,368,11.0\n58,369,11.5\n58,370,12.0\n58,371,12.5\n58,372,13.0\n58,373,13.5\n58,374,14.0\n58,375,10.5\n58,376,10.0\n58,377,9.5\n58,378,9.0\n58,379,8.5\n58,380,8.0\n58,381,7.5\n58,382,7.0\n58,383,6.5\n58,384,7.0\n58,385,7.5\n58,386,8.0\n58,387,8.5\n58,388,9.0\n58,389,9.5\n58,390,10.0\n58,391,10.5\n58,392,11.0\n58,393,11.5\n58,394,12.0\n58,395,12.5\n58,396,13.0\n58,397,13.5\n58,398,14.0\n58,399,14.5\n58,400,11.0\n58,401,10.5\n58,402,10.0\n58,403,9.5\n58,404,9.0\n58,405,8.5\n58,406,8.0\n58,407,7.5\n58,408,7.0\n58,409,7.5\n58,410,8.0\n58,411,8.5\n58,412,9.0\n58,413,9.5\n58,414,10.0\n58,415,10.5\n58,416,11.0\n58,417,11.5\n58,418,12.0\n58,419,12.5\n58,420,13.0\n58,421,13.5\n58,422,14.0\n58,423,14.5\n58,424,15.0\n58,425,11.5\n58,426,11.0\n58,427,10.5\n58,428,10.0\n58,429,9.5\n58,430,9.0\n58,431,8.5\n58,432,8.0\n58,433,7.5\n58,434,8.0\n58,435,8.5\n58,436,9.0\n58,437,9.5\n58,438,10.0\n58,439,10.5\n58,440,11.0\n58,441,11.5\n58,442,12.0\n58,443,12.5\n58,444,13.0\n58,445,13.5\n58,446,14.0\n58,447,14.5\n58,448,15.0\n58,449,15.5\n58,450,12.0\n58,451,11.5\n58,452,11.0\n58,453,10.5\n58,454,10.0\n58,455,9.5\n58,456,9.0\n58,457,8.5\n58,458,8.0\n58,459,8.5\n58,460,9.0\n58,461,9.5\n58,462,10.0\n58,463,10.5\n58,464,11.0\n58,465,11.5\n58,466,12.0\n58,467,12.5\n58,468,13.0\n58,469,13.5\n58,470,14.0\n58,471,14.5\n58,472,15.0\n58,473,15.5\n58,474,16.0\n58,475,12.5\n58,476,12.0\n58,477,11.5\n58,478,11.0\n58,479,10.5\n58,480,10.0\n58,481,9.5\n58,482,9.0\n58,483,8.5\n58,484,9.0\n58,485,9.5\n58,486,10.0\n58,487,10.5\n58,488,11.0\n58,489,11.5\n58,490,12.0\n58,491,12.5\n58,492,13.0\n58,493,13.5\n58,494,14.0\n58,495,14.5\n58,496,15.0\n58,497,15.5\n58,498,16.0\n58,499,16.5\n58,500,13.0\n58,501,12.5\n58,502,12.0\n58,503,11.5\n58,504,11.0\n58,505,10.5\n58,506,10.0\n58,507,9.5\n58,508,9.0\n58,509,9.5\n58,510,10.0\n58,511,10.5\n58,512,11.0\n58,513,11.5\n58,514,12.0\n58,515,12.5\n58,516,13.0\n58,517,13.5\n58,518,14.0\n58,519,14.5\n58,520,15.0\n58,521,15.5\n58,522,16.0\n58,523,16.5\n58,524,17.0\n58,525,13.5\n58,526,13.0\n58,527,12.5\n58,528,12.0\n58,529,11.5\n58,530,11.0\n58,531,10.5\n58,532,10.0\n58,533,9.5\n58,534,10.0\n58,535,10.5\n58,536,11.0\n58,537,11.5\n58,538,12.0\n58,539,12.5\n58,540,13.0\n58,541,13.5\n58,542,14.0\n58,543,14.5\n58,544,15.0\n58,545,15.5\n58,546,16.0\n58,547,16.5\n58,548,17.0\n58,549,17.5\n58,550,14.0\n58,551,13.5\n58,552,13.0\n58,553,12.5\n58,554,12.0\n58,555,11.5\n58,556,11.0\n58,557,10.5\n58,558,10.0\n58,559,10.5\n58,560,11.0\n58,561,11.5\n58,562,12.0\n58,563,12.5\n58,564,13.0\n58,565,13.5\n58,566,14.0\n58,567,14.5\n58,568,15.0\n58,569,15.5\n58,570,16.0\n58,571,16.5\n58,572,17.0\n58,573,17.5\n58,574,18.0\n58,575,14.5\n58,576,14.0\n58,577,13.5\n58,578,13.0\n58,579,12.5\n58,580,12.0\n58,581,11.5\n58,582,11.0\n58,583,10.5\n58,584,11.0\n58,585,11.5\n58,586,12.0\n58,587,12.5\n58,588,13.0\n58,589,13.5\n58,590,14.0\n58,591,14.5\n58,592,15.0\n58,593,15.5\n58,594,16.0\n58,595,16.5\n58,596,17.0\n58,597,17.5\n58,598,18.0\n58,599,18.5\n58,600,15.0\n58,601,14.5\n58,602,14.0\n58,603,13.5\n58,604,13.0\n58,605,12.5\n58,606,12.0\n58,607,11.5\n58,608,11.0\n58,609,11.5\n58,610,12.0\n58,611,12.5\n58,612,13.0\n58,613,13.5\n58,614,14.0\n58,615,14.5\n58,616,15.0\n58,617,15.5\n58,618,16.0\n58,619,16.5\n58,620,17.0\n58,621,17.5\n58,622,18.0\n58,623,18.5\n58,624,19.0\n59,0,5.5\n59,1,5.0\n59,2,4.5\n59,3,4.0\n59,4,3.5\n59,5,3.0\n59,6,2.5\n59,7,2.0\n59,8,1.5\n59,9,1.0\n59,10,1.5\n59,11,2.0\n59,12,2.5\n59,13,3.0\n59,14,3.5\n59,15,4.0\n59,16,4.5\n59,17,5.0\n59,18,5.5\n59,19,6.0\n59,20,6.5\n59,21,7.0\n59,22,7.5\n59,23,8.0\n59,24,8.5\n59,25,5.0\n59,26,4.5\n59,27,4.0\n59,28,3.5\n59,29,3.0\n59,30,2.5\n59,31,2.0\n59,32,1.5\n59,33,1.0\n59,34,0.5\n59,35,1.0\n59,36,1.5\n59,37,2.0\n59,38,2.5\n59,39,3.0\n59,40,3.5\n59,41,4.0\n59,42,4.5\n59,43,5.0\n59,44,5.5\n59,45,6.0\n59,46,6.5\n59,47,7.0\n59,48,7.5\n59,49,8.0\n59,50,4.5\n59,51,4.0\n59,52,3.5\n59,53,3.0\n59,54,2.5\n59,55,2.0\n59,56,1.5\n59,57,1.0\n59,58,0.5\n59,59,0\n59,60,0.5\n59,61,1.0\n59,62,1.5\n59,63,2.0\n59,64,2.5\n59,65,3.0\n59,66,3.5\n59,67,4.0\n59,68,4.5\n59,69,5.0\n59,70,5.5\n59,71,6.0\n59,72,6.5\n59,73,7.0\n59,74,7.5\n59,75,5.0\n59,76,4.5\n59,77,4.0\n59,78,3.5\n59,79,3.0\n59,80,2.5\n59,81,2.0\n59,82,1.5\n59,83,1.0\n59,84,0.5\n59,85,1.0\n59,86,1.5\n59,87,2.0\n59,88,2.5\n59,89,3.0\n59,90,3.5\n59,91,4.0\n59,92,4.5\n59,93,5.0\n59,94,5.5\n59,95,6.0\n59,96,6.5\n59,97,7.0\n59,98,7.5\n59,99,8.0\n59,100,5.5\n59,101,5.0\n59,102,4.5\n59,103,4.0\n59,104,3.5\n59,105,3.0\n59,106,2.5\n59,107,2.0\n59,108,1.5\n59,109,1.0\n59,110,1.5\n59,111,2.0\n59,112,2.5\n59,113,3.0\n59,114,3.5\n59,115,4.0\n59,116,4.5\n59,117,5.0\n59,118,5.5\n59,119,6.0\n59,120,6.5\n59,121,7.0\n59,122,7.5\n59,123,8.0\n59,124,8.5\n59,125,6.0\n59,126,5.5\n59,127,5.0\n59,128,4.5\n59,129,4.0\n59,130,3.5\n59,131,3.0\n59,132,2.5\n59,133,2.0\n59,134,1.5\n59,135,2.0\n59,136,2.5\n59,137,3.0\n59,138,3.5\n59,139,4.0\n59,140,4.5\n59,141,5.0\n59,142,5.5\n59,143,6.0\n59,144,6.5\n59,145,7.0\n59,146,7.5\n59,147,8.0\n59,148,8.5\n59,149,9.0\n59,150,6.5\n59,151,6.0\n59,152,5.5\n59,153,5.0\n59,154,4.5\n59,155,4.0\n59,156,3.5\n59,157,3.0\n59,158,2.5\n59,159,2.0\n59,160,2.5\n59,161,3.0\n59,162,3.5\n59,163,4.0\n59,164,4.5\n59,165,5.0\n59,166,5.5\n59,167,6.0\n59,168,6.5\n59,169,7.0\n59,170,7.5\n59,171,8.0\n59,172,8.5\n59,173,9.0\n59,174,9.5\n59,175,7.0\n59,176,6.5\n59,177,6.0\n59,178,5.5\n59,179,5.0\n59,180,4.5\n59,181,4.0\n59,182,3.5\n59,183,3.0\n59,184,2.5\n59,185,3.0\n59,186,3.5\n59,187,4.0\n59,188,4.5\n59,189,5.0\n59,190,5.5\n59,191,6.0\n59,192,6.5\n59,193,7.0\n59,194,7.5\n59,195,8.0\n59,196,8.5\n59,197,9.0\n59,198,9.5\n59,199,10.0\n59,200,7.5\n59,201,7.0\n59,202,6.5\n59,203,6.0\n59,204,5.5\n59,205,5.0\n59,206,4.5\n59,207,4.0\n59,208,3.5\n59,209,3.0\n59,210,3.5\n59,211,4.0\n59,212,4.5\n59,213,5.0\n59,214,5.5\n59,215,6.0\n59,216,6.5\n59,217,7.0\n59,218,7.5\n59,219,8.0\n59,220,8.5\n59,221,9.0\n59,222,9.5\n59,223,10.0\n59,224,10.5\n59,225,8.0\n59,226,7.5\n59,227,7.0\n59,228,6.5\n59,229,6.0\n59,230,5.5\n59,231,5.0\n59,232,4.5\n59,233,4.0\n59,234,3.5\n59,235,4.0\n59,236,4.5\n59,237,5.0\n59,238,5.5\n59,239,6.0\n59,240,6.5\n59,241,7.0\n59,242,7.5\n59,243,8.0\n59,244,8.5\n59,245,9.0\n59,246,9.5\n59,247,10.0\n59,248,10.5\n59,249,11.0\n59,250,8.5\n59,251,8.0\n59,252,7.5\n59,253,7.0\n59,254,6.5\n59,255,6.0\n59,256,5.5\n59,257,5.0\n59,258,4.5\n59,259,4.0\n59,260,4.5\n59,261,5.0\n59,262,5.5\n59,263,6.0\n59,264,6.5\n59,265,7.0\n59,266,7.5\n59,267,8.0\n59,268,8.5\n59,269,9.0\n59,270,9.5\n59,271,10.0\n59,272,10.5\n59,273,11.0\n59,274,11.5\n59,275,9.0\n59,276,8.5\n59,277,8.0\n59,278,7.5\n59,279,7.0\n59,280,6.5\n59,281,6.0\n59,282,5.5\n59,283,5.0\n59,284,4.5\n59,285,5.0\n59,286,5.5\n59,287,6.0\n59,288,6.5\n59,289,7.0\n59,290,7.5\n59,291,8.0\n59,292,8.5\n59,293,9.0\n59,294,9.5\n59,295,10.0\n59,296,10.5\n59,297,11.0\n59,298,11.5\n59,299,12.0\n59,300,9.5\n59,301,9.0\n59,302,8.5\n59,303,8.0\n59,304,7.5\n59,305,7.0\n59,306,6.5\n59,307,6.0\n59,308,5.5\n59,309,5.0\n59,310,5.5\n59,311,6.0\n59,312,6.5\n59,313,7.0\n59,314,7.5\n59,315,8.0\n59,316,8.5\n59,317,9.0\n59,318,9.5\n59,319,10.0\n59,320,10.5\n59,321,11.0\n59,322,11.5\n59,323,12.0\n59,324,12.5\n59,325,10.0\n59,326,9.5\n59,327,9.0\n59,328,8.5\n59,329,8.0\n59,330,7.5\n59,331,7.0\n59,332,6.5\n59,333,6.0\n59,334,5.5\n59,335,6.0\n59,336,6.5\n59,337,7.0\n59,338,7.5\n59,339,8.0\n59,340,8.5\n59,341,9.0\n59,342,9.5\n59,343,10.0\n59,344,10.5\n59,345,11.0\n59,346,11.5\n59,347,12.0\n59,348,12.5\n59,349,13.0\n59,350,10.5\n59,351,10.0\n59,352,9.5\n59,353,9.0\n59,354,8.5\n59,355,8.0\n59,356,7.5\n59,357,7.0\n59,358,6.5\n59,359,6.0\n59,360,6.5\n59,361,7.0\n59,362,7.5\n59,363,8.0\n59,364,8.5\n59,365,9.0\n59,366,9.5\n59,367,10.0\n59,368,10.5\n59,369,11.0\n59,370,11.5\n59,371,12.0\n59,372,12.5\n59,373,13.0\n59,374,13.5\n59,375,11.0\n59,376,10.5\n59,377,10.0\n59,378,9.5\n59,379,9.0\n59,380,8.5\n59,381,8.0\n59,382,7.5\n59,383,7.0\n59,384,6.5\n59,385,7.0\n59,386,7.5\n59,387,8.0\n59,388,8.5\n59,389,9.0\n59,390,9.5\n59,391,10.0\n59,392,10.5\n59,393,11.0\n59,394,11.5\n59,395,12.0\n59,396,12.5\n59,397,13.0\n59,398,13.5\n59,399,14.0\n59,400,11.5\n59,401,11.0\n59,402,10.5\n59,403,10.0\n59,404,9.5\n59,405,9.0\n59,406,8.5\n59,407,8.0\n59,408,7.5\n59,409,7.0\n59,410,7.5\n59,411,8.0\n59,412,8.5\n59,413,9.0\n59,414,9.5\n59,415,10.0\n59,416,10.5\n59,417,11.0\n59,418,11.5\n59,419,12.0\n59,420,12.5\n59,421,13.0\n59,422,13.5\n59,423,14.0\n59,424,14.5\n59,425,12.0\n59,426,11.5\n59,427,11.0\n59,428,10.5\n59,429,10.0\n59,430,9.5\n59,431,9.0\n59,432,8.5\n59,433,8.0\n59,434,7.5\n59,435,8.0\n59,436,8.5\n59,437,9.0\n59,438,9.5\n59,439,10.0\n59,440,10.5\n59,441,11.0\n59,442,11.5\n59,443,12.0\n59,444,12.5\n59,445,13.0\n59,446,13.5\n59,447,14.0\n59,448,14.5\n59,449,15.0\n59,450,12.5\n59,451,12.0\n59,452,11.5\n59,453,11.0\n59,454,10.5\n59,455,10.0\n59,456,9.5\n59,457,9.0\n59,458,8.5\n59,459,8.0\n59,460,8.5\n59,461,9.0\n59,462,9.5\n59,463,10.0\n59,464,10.5\n59,465,11.0\n59,466,11.5\n59,467,12.0\n59,468,12.5\n59,469,13.0\n59,470,13.5\n59,471,14.0\n59,472,14.5\n59,473,15.0\n59,474,15.5\n59,475,13.0\n59,476,12.5\n59,477,12.0\n59,478,11.5\n59,479,11.0\n59,480,10.5\n59,481,10.0\n59,482,9.5\n59,483,9.0\n59,484,8.5\n59,485,9.0\n59,486,9.5\n59,487,10.0\n59,488,10.5\n59,489,11.0\n59,490,11.5\n59,491,12.0\n59,492,12.5\n59,493,13.0\n59,494,13.5\n59,495,14.0\n59,496,14.5\n59,497,15.0\n59,498,15.5\n59,499,16.0\n59,500,13.5\n59,501,13.0\n59,502,12.5\n59,503,12.0\n59,504,11.5\n59,505,11.0\n59,506,10.5\n59,507,10.0\n59,508,9.5\n59,509,9.0\n59,510,9.5\n59,511,10.0\n59,512,10.5\n59,513,11.0\n59,514,11.5\n59,515,12.0\n59,516,12.5\n59,517,13.0\n59,518,13.5\n59,519,14.0\n59,520,14.5\n59,521,15.0\n59,522,15.5\n59,523,16.0\n59,524,16.5\n59,525,14.0\n59,526,13.5\n59,527,13.0\n59,528,12.5\n59,529,12.0\n59,530,11.5\n59,531,11.0\n59,532,10.5\n59,533,10.0\n59,534,9.5\n59,535,10.0\n59,536,10.5\n59,537,11.0\n59,538,11.5\n59,539,12.0\n59,540,12.5\n59,541,13.0\n59,542,13.5\n59,543,14.0\n59,544,14.5\n59,545,15.0\n59,546,15.5\n59,547,16.0\n59,548,16.5\n59,549,17.0\n59,550,14.5\n59,551,14.0\n59,552,13.5\n59,553,13.0\n59,554,12.5\n59,555,12.0\n59,556,11.5\n59,557,11.0\n59,558,10.5\n59,559,10.0\n59,560,10.5\n59,561,11.0\n59,562,11.5\n59,563,12.0\n59,564,12.5\n59,565,13.0\n59,566,13.5\n59,567,14.0\n59,568,14.5\n59,569,15.0\n59,570,15.5\n59,571,16.0\n59,572,16.5\n59,573,17.0\n59,574,17.5\n59,575,15.0\n59,576,14.5\n59,577,14.0\n59,578,13.5\n59,579,13.0\n59,580,12.5\n59,581,12.0\n59,582,11.5\n59,583,11.0\n59,584,10.5\n59,585,11.0\n59,586,11.5\n59,587,12.0\n59,588,12.5\n59,589,13.0\n59,590,13.5\n59,591,14.0\n59,592,14.5\n59,593,15.0\n59,594,15.5\n59,595,16.0\n59,596,16.5\n59,597,17.0\n59,598,17.5\n59,599,18.0\n59,600,15.5\n59,601,15.0\n59,602,14.5\n59,603,14.0\n59,604,13.5\n59,605,13.0\n59,606,12.5\n59,607,12.0\n59,608,11.5\n59,609,11.0\n59,610,11.5\n59,611,12.0\n59,612,12.5\n59,613,13.0\n59,614,13.5\n59,615,14.0\n59,616,14.5\n59,617,15.0\n59,618,15.5\n59,619,16.0\n59,620,16.5\n59,621,17.0\n59,622,17.5\n59,623,18.0\n59,624,18.5\n60,0,6.0\n60,1,5.5\n60,2,5.0\n60,3,4.5\n60,4,4.0\n60,5,3.5\n60,6,3.0\n60,7,2.5\n60,8,2.0\n60,9,1.5\n60,10,1.0\n60,11,1.5\n60,12,2.0\n60,13,2.5\n60,14,3.0\n60,15,3.5\n60,16,4.0\n60,17,4.5\n60,18,5.0\n60,19,5.5\n60,20,6.0\n60,21,6.5\n60,22,7.0\n60,23,7.5\n60,24,8.0\n60,25,5.5\n60,26,5.0\n60,27,4.5\n60,28,4.0\n60,29,3.5\n60,30,3.0\n60,31,2.5\n60,32,2.0\n60,33,1.5\n60,34,1.0\n60,35,0.5\n60,36,1.0\n60,37,1.5\n60,38,2.0\n60,39,2.5\n60,40,3.0\n60,41,3.5\n60,42,4.0\n60,43,4.5\n60,44,5.0\n60,45,5.5\n60,46,6.0\n60,47,6.5\n60,48,7.0\n60,49,7.5\n60,50,5.0\n60,51,4.5\n60,52,4.0\n60,53,3.5\n60,54,3.0\n60,55,2.5\n60,56,2.0\n60,57,1.5\n60,58,1.0\n60,59,0.5\n60,60,0\n60,61,0.5\n60,62,1.0\n60,63,1.5\n60,64,2.0\n60,65,2.5\n60,66,3.0\n60,67,3.5\n60,68,4.0\n60,69,4.5\n60,70,5.0\n60,71,5.5\n60,72,6.0\n60,73,6.5\n60,74,7.0\n60,75,5.5\n60,76,5.0\n60,77,4.5\n60,78,4.0\n60,79,3.5\n60,80,3.0\n60,81,2.5\n60,82,2.0\n60,83,1.5\n60,84,1.0\n60,85,0.5\n60,86,1.0\n60,87,1.5\n60,88,2.0\n60,89,2.5\n60,90,3.0\n60,91,3.5\n60,92,4.0\n60,93,4.5\n60,94,5.0\n60,95,5.5\n60,96,6.0\n60,97,6.5\n60,98,7.0\n60,99,7.5\n60,100,6.0\n60,101,5.5\n60,102,5.0\n60,103,4.5\n60,104,4.0\n60,105,3.5\n60,106,3.0\n60,107,2.5\n60,108,2.0\n60,109,1.5\n60,110,1.0\n60,111,1.5\n60,112,2.0\n60,113,2.5\n60,114,3.0\n60,115,3.5\n60,116,4.0\n60,117,4.5\n60,118,5.0\n60,119,5.5\n60,120,6.0\n60,121,6.5\n60,122,7.0\n60,123,7.5\n60,124,8.0\n60,125,6.5\n60,126,6.0\n60,127,5.5\n60,128,5.0\n60,129,4.5\n60,130,4.0\n60,131,3.5\n60,132,3.0\n60,133,2.5\n60,134,2.0\n60,135,1.5\n60,136,2.0\n60,137,2.5\n60,138,3.0\n60,139,3.5\n60,140,4.0\n60,141,4.5\n60,142,5.0\n60,143,5.5\n60,144,6.0\n60,145,6.5\n60,146,7.0\n60,147,7.5\n60,148,8.0\n60,149,8.5\n60,150,7.0\n60,151,6.5\n60,152,6.0\n60,153,5.5\n60,154,5.0\n60,155,4.5\n60,156,4.0\n60,157,3.5\n60,158,3.0\n60,159,2.5\n60,160,2.0\n60,161,2.5\n60,162,3.0\n60,163,3.5\n60,164,4.0\n60,165,4.5\n60,166,5.0\n60,167,5.5\n60,168,6.0\n60,169,6.5\n60,170,7.0\n60,171,7.5\n60,172,8.0\n60,173,8.5\n60,174,9.0\n60,175,7.5\n60,176,7.0\n60,177,6.5\n60,178,6.0\n60,179,5.5\n60,180,5.0\n60,181,4.5\n60,182,4.0\n60,183,3.5\n60,184,3.0\n60,185,2.5\n60,186,3.0\n60,187,3.5\n60,188,4.0\n60,189,4.5\n60,190,5.0\n60,191,5.5\n60,192,6.0\n60,193,6.5\n60,194,7.0\n60,195,7.5\n60,196,8.0\n60,197,8.5\n60,198,9.0\n60,199,9.5\n60,200,8.0\n60,201,7.5\n60,202,7.0\n60,203,6.5\n60,204,6.0\n60,205,5.5\n60,206,5.0\n60,207,4.5\n60,208,4.0\n60,209,3.5\n60,210,3.0\n60,211,3.5\n60,212,4.0\n60,213,4.5\n60,214,5.0\n60,215,5.5\n60,216,6.0\n60,217,6.5\n60,218,7.0\n60,219,7.5\n60,220,8.0\n60,221,8.5\n60,222,9.0\n60,223,9.5\n60,224,10.0\n60,225,8.5\n60,226,8.0\n60,227,7.5\n60,228,7.0\n60,229,6.5\n60,230,6.0\n60,231,5.5\n60,232,5.0\n60,233,4.5\n60,234,4.0\n60,235,3.5\n60,236,4.0\n60,237,4.5\n60,238,5.0\n60,239,5.5\n60,240,6.0\n60,241,6.5\n60,242,7.0\n60,243,7.5\n60,244,8.0\n60,245,8.5\n60,246,9.0\n60,247,9.5\n60,248,10.0\n60,249,10.5\n60,250,9.0\n60,251,8.5\n60,252,8.0\n60,253,7.5\n60,254,7.0\n60,255,6.5\n60,256,6.0\n60,257,5.5\n60,258,5.0\n60,259,4.5\n60,260,4.0\n60,261,4.5\n60,262,5.0\n60,263,5.5\n60,264,6.0\n60,265,6.5\n60,266,7.0\n60,267,7.5\n60,268,8.0\n60,269,8.5\n60,270,9.0\n60,271,9.5\n60,272,10.0\n60,273,10.5\n60,274,11.0\n60,275,9.5\n60,276,9.0\n60,277,8.5\n60,278,8.0\n60,279,7.5\n60,280,7.0\n60,281,6.5\n60,282,6.0\n60,283,5.5\n60,284,5.0\n60,285,4.5\n60,286,5.0\n60,287,5.5\n60,288,6.0\n60,289,6.5\n60,290,7.0\n60,291,7.5\n60,292,8.0\n60,293,8.5\n60,294,9.0\n60,295,9.5\n60,296,10.0\n60,297,10.5\n60,298,11.0\n60,299,11.5\n60,300,10.0\n60,301,9.5\n60,302,9.0\n60,303,8.5\n60,304,8.0\n60,305,7.5\n60,306,7.0\n60,307,6.5\n60,308,6.0\n60,309,5.5\n60,310,5.0\n60,311,5.5\n60,312,6.0\n60,313,6.5\n60,314,7.0\n60,315,7.5\n60,316,8.0\n60,317,8.5\n60,318,9.0\n60,319,9.5\n60,320,10.0\n60,321,10.5\n60,322,11.0\n60,323,11.5\n60,324,12.0\n60,325,10.5\n60,326,10.0\n60,327,9.5\n60,328,9.0\n60,329,8.5\n60,330,8.0\n60,331,7.5\n60,332,7.0\n60,333,6.5\n60,334,6.0\n60,335,5.5\n60,336,6.0\n60,337,6.5\n60,338,7.0\n60,339,7.5\n60,340,8.0\n60,341,8.5\n60,342,9.0\n60,343,9.5\n60,344,10.0\n60,345,10.5\n60,346,11.0\n60,347,11.5\n60,348,12.0\n60,349,12.5\n60,350,11.0\n60,351,10.5\n60,352,10.0\n60,353,9.5\n60,354,9.0\n60,355,8.5\n60,356,8.0\n60,357,7.5\n60,358,7.0\n60,359,6.5\n60,360,6.0\n60,361,6.5\n60,362,7.0\n60,363,7.5\n60,364,8.0\n60,365,8.5\n60,366,9.0\n60,367,9.5\n60,368,10.0\n60,369,10.5\n60,370,11.0\n60,371,11.5\n60,372,12.0\n60,373,12.5\n60,374,13.0\n60,375,11.5\n60,376,11.0\n60,377,10.5\n60,378,10.0\n60,379,9.5\n60,380,9.0\n60,381,8.5\n60,382,8.0\n60,383,7.5\n60,384,7.0\n60,385,6.5\n60,386,7.0\n60,387,7.5\n60,388,8.0\n60,389,8.5\n60,390,9.0\n60,391,9.5\n60,392,10.0\n60,393,10.5\n60,394,11.0\n60,395,11.5\n60,396,12.0\n60,397,12.5\n60,398,13.0\n60,399,13.5\n60,400,12.0\n60,401,11.5\n60,402,11.0\n60,403,10.5\n60,404,10.0\n60,405,9.5\n60,406,9.0\n60,407,8.5\n60,408,8.0\n60,409,7.5\n60,410,7.0\n60,411,7.5\n60,412,8.0\n60,413,8.5\n60,414,9.0\n60,415,9.5\n60,416,10.0\n60,417,10.5\n60,418,11.0\n60,419,11.5\n60,420,12.0\n60,421,12.5\n60,422,13.0\n60,423,13.5\n60,424,14.0\n60,425,12.5\n60,426,12.0\n60,427,11.5\n60,428,11.0\n60,429,10.5\n60,430,10.0\n60,431,9.5\n60,432,9.0\n60,433,8.5\n60,434,8.0\n60,435,7.5\n60,436,8.0\n60,437,8.5\n60,438,9.0\n60,439,9.5\n60,440,10.0\n60,441,10.5\n60,442,11.0\n60,443,11.5\n60,444,12.0\n60,445,12.5\n60,446,13.0\n60,447,13.5\n60,448,14.0\n60,449,14.5\n60,450,13.0\n60,451,12.5\n60,452,12.0\n60,453,11.5\n60,454,11.0\n60,455,10.5\n60,456,10.0\n60,457,9.5\n60,458,9.0\n60,459,8.5\n60,460,8.0\n60,461,8.5\n60,462,9.0\n60,463,9.5\n60,464,10.0\n60,465,10.5\n60,466,11.0\n60,467,11.5\n60,468,12.0\n60,469,12.5\n60,470,13.0\n60,471,13.5\n60,472,14.0\n60,473,14.5\n60,474,15.0\n60,475,13.5\n60,476,13.0\n60,477,12.5\n60,478,12.0\n60,479,11.5\n60,480,11.0\n60,481,10.5\n60,482,10.0\n60,483,9.5\n60,484,9.0\n60,485,8.5\n60,486,9.0\n60,487,9.5\n60,488,10.0\n60,489,10.5\n60,490,11.0\n60,491,11.5\n60,492,12.0\n60,493,12.5\n60,494,13.0\n60,495,13.5\n60,496,14.0\n60,497,14.5\n60,498,15.0\n60,499,15.5\n60,500,14.0\n60,501,13.5\n60,502,13.0\n60,503,12.5\n60,504,12.0\n60,505,11.5\n60,506,11.0\n60,507,10.5\n60,508,10.0\n60,509,9.5\n60,510,9.0\n60,511,9.5\n60,512,10.0\n60,513,10.5\n60,514,11.0\n60,515,11.5\n60,516,12.0\n60,517,12.5\n60,518,13.0\n60,519,13.5\n60,520,14.0\n60,521,14.5\n60,522,15.0\n60,523,15.5\n60,524,16.0\n60,525,14.5\n60,526,14.0\n60,527,13.5\n60,528,13.0\n60,529,12.5\n60,530,12.0\n60,531,11.5\n60,532,11.0\n60,533,10.5\n60,534,10.0\n60,535,9.5\n60,536,10.0\n60,537,10.5\n60,538,11.0\n60,539,11.5\n60,540,12.0\n60,541,12.5\n60,542,13.0\n60,543,13.5\n60,544,14.0\n60,545,14.5\n60,546,15.0\n60,547,15.5\n60,548,16.0\n60,549,16.5\n60,550,15.0\n60,551,14.5\n60,552,14.0\n60,553,13.5\n60,554,13.0\n60,555,12.5\n60,556,12.0\n60,557,11.5\n60,558,11.0\n60,559,10.5\n60,560,10.0\n60,561,10.5\n60,562,11.0\n60,563,11.5\n60,564,12.0\n60,565,12.5\n60,566,13.0\n60,567,13.5\n60,568,14.0\n60,569,14.5\n60,570,15.0\n60,571,15.5\n60,572,16.0\n60,573,16.5\n60,574,17.0\n60,575,15.5\n60,576,15.0\n60,577,14.5\n60,578,14.0\n60,579,13.5\n60,580,13.0\n60,581,12.5\n60,582,12.0\n60,583,11.5\n60,584,11.0\n60,585,10.5\n60,586,11.0\n60,587,11.5\n60,588,12.0\n60,589,12.5\n60,590,13.0\n60,591,13.5\n60,592,14.0\n60,593,14.5\n60,594,15.0\n60,595,15.5\n60,596,16.0\n60,597,16.5\n60,598,17.0\n60,599,17.5\n60,600,16.0\n60,601,15.5\n60,602,15.0\n60,603,14.5\n60,604,14.0\n60,605,13.5\n60,606,13.0\n60,607,12.5\n60,608,12.0\n60,609,11.5\n60,610,11.0\n60,611,11.5\n60,612,12.0\n60,613,12.5\n60,614,13.0\n60,615,13.5\n60,616,14.0\n60,617,14.5\n60,618,15.0\n60,619,15.5\n60,620,16.0\n60,621,16.5\n60,622,17.0\n60,623,17.5\n60,624,18.0\n61,0,6.5\n61,1,6.0\n61,2,5.5\n61,3,5.0\n61,4,4.5\n61,5,4.0\n61,6,3.5\n61,7,3.0\n61,8,2.5\n61,9,2.0\n61,10,1.5\n61,11,1.0\n61,12,1.5\n61,13,2.0\n61,14,2.5\n61,15,3.0\n61,16,3.5\n61,17,4.0\n61,18,4.5\n61,19,5.0\n61,20,5.5\n61,21,6.0\n61,22,6.5\n61,23,7.0\n61,24,7.5\n61,25,6.0\n61,26,5.5\n61,27,5.0\n61,28,4.5\n61,29,4.0\n61,30,3.5\n61,31,3.0\n61,32,2.5\n61,33,2.0\n61,34,1.5\n61,35,1.0\n61,36,0.5\n61,37,1.0\n61,38,1.5\n61,39,2.0\n61,40,2.5\n61,41,3.0\n61,42,3.5\n61,43,4.0\n61,44,4.5\n61,45,5.0\n61,46,5.5\n61,47,6.0\n61,48,6.5\n61,49,7.0\n61,50,5.5\n61,51,5.0\n61,52,4.5\n61,53,4.0\n61,54,3.5\n61,55,3.0\n61,56,2.5\n61,57,2.0\n61,58,1.5\n61,59,1.0\n61,60,0.5\n61,61,0\n61,62,0.5\n61,63,1.0\n61,64,1.5\n61,65,2.0\n61,66,2.5\n61,67,3.0\n61,68,3.5\n61,69,4.0\n61,70,4.5\n61,71,5.0\n61,72,5.5\n61,73,6.0\n61,74,6.5\n61,75,6.0\n61,76,5.5\n61,77,5.0\n61,78,4.5\n61,79,4.0\n61,80,3.5\n61,81,3.0\n61,82,2.5\n61,83,2.0\n61,84,1.5\n61,85,1.0\n61,86,0.5\n61,87,1.0\n61,88,1.5\n61,89,2.0\n61,90,2.5\n61,91,3.0\n61,92,3.5\n61,93,4.0\n61,94,4.5\n61,95,5.0\n61,96,5.5\n61,97,6.0\n61,98,6.5\n61,99,7.0\n61,100,6.5\n61,101,6.0\n61,102,5.5\n61,103,5.0\n61,104,4.5\n61,105,4.0\n61,106,3.5\n61,107,3.0\n61,108,2.5\n61,109,2.0\n61,110,1.5\n61,111,1.0\n61,112,1.5\n61,113,2.0\n61,114,2.5\n61,115,3.0\n61,116,3.5\n61,117,4.0\n61,118,4.5\n61,119,5.0\n61,120,5.5\n61,121,6.0\n61,122,6.5\n61,123,7.0\n61,124,7.5\n61,125,7.0\n61,126,6.5\n61,127,6.0\n61,128,5.5\n61,129,5.0\n61,130,4.5\n61,131,4.0\n61,132,3.5\n61,133,3.0\n61,134,2.5\n61,135,2.0\n61,136,1.5\n61,137,2.0\n61,138,2.5\n61,139,3.0\n61,140,3.5\n61,141,4.0\n61,142,4.5\n61,143,5.0\n61,144,5.5\n61,145,6.0\n61,146,6.5\n61,147,7.0\n61,148,7.5\n61,149,8.0\n61,150,7.5\n61,151,7.0\n61,152,6.5\n61,153,6.0\n61,154,5.5\n61,155,5.0\n61,156,4.5\n61,157,4.0\n61,158,3.5\n61,159,3.0\n61,160,2.5\n61,161,2.0\n61,162,2.5\n61,163,3.0\n61,164,3.5\n61,165,4.0\n61,166,4.5\n61,167,5.0\n61,168,5.5\n61,169,6.0\n61,170,6.5\n61,171,7.0\n61,172,7.5\n61,173,8.0\n61,174,8.5\n61,175,8.0\n61,176,7.5\n61,177,7.0\n61,178,6.5\n61,179,6.0\n61,180,5.5\n61,181,5.0\n61,182,4.5\n61,183,4.0\n61,184,3.5\n61,185,3.0\n61,186,2.5\n61,187,3.0\n61,188,3.5\n61,189,4.0\n61,190,4.5\n61,191,5.0\n61,192,5.5\n61,193,6.0\n61,194,6.5\n61,195,7.0\n61,196,7.5\n61,197,8.0\n61,198,8.5\n61,199,9.0\n61,200,8.5\n61,201,8.0\n61,202,7.5\n61,203,7.0\n61,204,6.5\n61,205,6.0\n61,206,5.5\n61,207,5.0\n61,208,4.5\n61,209,4.0\n61,210,3.5\n61,211,3.0\n61,212,3.5\n61,213,4.0\n61,214,4.5\n61,215,5.0\n61,216,5.5\n61,217,6.0\n61,218,6.5\n61,219,7.0\n61,220,7.5\n61,221,8.0\n61,222,8.5\n61,223,9.0\n61,224,9.5\n61,225,9.0\n61,226,8.5\n61,227,8.0\n61,228,7.5\n61,229,7.0\n61,230,6.5\n61,231,6.0\n61,232,5.5\n61,233,5.0\n61,234,4.5\n61,235,4.0\n61,236,3.5\n61,237,4.0\n61,238,4.5\n61,239,5.0\n61,240,5.5\n61,241,6.0\n61,242,6.5\n61,243,7.0\n61,244,7.5\n61,245,8.0\n61,246,8.5\n61,247,9.0\n61,248,9.5\n61,249,10.0\n61,250,9.5\n61,251,9.0\n61,252,8.5\n61,253,8.0\n61,254,7.5\n61,255,7.0\n61,256,6.5\n61,257,6.0\n61,258,5.5\n61,259,5.0\n61,260,4.5\n61,261,4.0\n61,262,4.5\n61,263,5.0\n61,264,5.5\n61,265,6.0\n61,266,6.5\n61,267,7.0\n61,268,7.5\n61,269,8.0\n61,270,8.5\n61,271,9.0\n61,272,9.5\n61,273,10.0\n61,274,10.5\n61,275,10.0\n61,276,9.5\n61,277,9.0\n61,278,8.5\n61,279,8.0\n61,280,7.5\n61,281,7.0\n61,282,6.5\n61,283,6.0\n61,284,5.5\n61,285,5.0\n61,286,4.5\n61,287,5.0\n61,288,5.5\n61,289,6.0\n61,290,6.5\n61,291,7.0\n61,292,7.5\n61,293,8.0\n61,294,8.5\n61,295,9.0\n61,296,9.5\n61,297,10.0\n61,298,10.5\n61,299,11.0\n61,300,10.5\n61,301,10.0\n61,302,9.5\n61,303,9.0\n61,304,8.5\n61,305,8.0\n61,306,7.5\n61,307,7.0\n61,308,6.5\n61,309,6.0\n61,310,5.5\n61,311,5.0\n61,312,5.5\n61,313,6.0\n61,314,6.5\n61,315,7.0\n61,316,7.5\n61,317,8.0\n61,318,8.5\n61,319,9.0\n61,320,9.5\n61,321,10.0\n61,322,10.5\n61,323,11.0\n61,324,11.5\n61,325,11.0\n61,326,10.5\n61,327,10.0\n61,328,9.5\n61,329,9.0\n61,330,8.5\n61,331,8.0\n61,332,7.5\n61,333,7.0\n61,334,6.5\n61,335,6.0\n61,336,5.5\n61,337,6.0\n61,338,6.5\n61,339,7.0\n61,340,7.5\n61,341,8.0\n61,342,8.5\n61,343,9.0\n61,344,9.5\n61,345,10.0\n61,346,10.5\n61,347,11.0\n61,348,11.5\n61,349,12.0\n61,350,11.5\n61,351,11.0\n61,352,10.5\n61,353,10.0\n61,354,9.5\n61,355,9.0\n61,356,8.5\n61,357,8.0\n61,358,7.5\n61,359,7.0\n61,360,6.5\n61,361,6.0\n61,362,6.5\n61,363,7.0\n61,364,7.5\n61,365,8.0\n61,366,8.5\n61,367,9.0\n61,368,9.5\n61,369,10.0\n61,370,10.5\n61,371,11.0\n61,372,11.5\n61,373,12.0\n61,374,12.5\n61,375,12.0\n61,376,11.5\n61,377,11.0\n61,378,10.5\n61,379,10.0\n61,380,9.5\n61,381,9.0\n61,382,8.5\n61,383,8.0\n61,384,7.5\n61,385,7.0\n61,386,6.5\n61,387,7.0\n61,388,7.5\n61,389,8.0\n61,390,8.5\n61,391,9.0\n61,392,9.5\n61,393,10.0\n61,394,10.5\n61,395,11.0\n61,396,11.5\n61,397,12.0\n61,398,12.5\n61,399,13.0\n61,400,12.5\n61,401,12.0\n61,402,11.5\n61,403,11.0\n61,404,10.5\n61,405,10.0\n61,406,9.5\n61,407,9.0\n61,408,8.5\n61,409,8.0\n61,410,7.5\n61,411,7.0\n61,412,7.5\n61,413,8.0\n61,414,8.5\n61,415,9.0\n61,416,9.5\n61,417,10.0\n61,418,10.5\n61,419,11.0\n61,420,11.5\n61,421,12.0\n61,422,12.5\n61,423,13.0\n61,424,13.5\n61,425,13.0\n61,426,12.5\n61,427,12.0\n61,428,11.5\n61,429,11.0\n61,430,10.5\n61,431,10.0\n61,432,9.5\n61,433,9.0\n61,434,8.5\n61,435,8.0\n61,436,7.5\n61,437,8.0\n61,438,8.5\n61,439,9.0\n61,440,9.5\n61,441,10.0\n61,442,10.5\n61,443,11.0\n61,444,11.5\n61,445,12.0\n61,446,12.5\n61,447,13.0\n61,448,13.5\n61,449,14.0\n61,450,13.5\n61,451,13.0\n61,452,12.5\n61,453,12.0\n61,454,11.5\n61,455,11.0\n61,456,10.5\n61,457,10.0\n61,458,9.5\n61,459,9.0\n61,460,8.5\n61,461,8.0\n61,462,8.5\n61,463,9.0\n61,464,9.5\n61,465,10.0\n61,466,10.5\n61,467,11.0\n61,468,11.5\n61,469,12.0\n61,470,12.5\n61,471,13.0\n61,472,13.5\n61,473,14.0\n61,474,14.5\n61,475,14.0\n61,476,13.5\n61,477,13.0\n61,478,12.5\n61,479,12.0\n61,480,11.5\n61,481,11.0\n61,482,10.5\n61,483,10.0\n61,484,9.5\n61,485,9.0\n61,486,8.5\n61,487,9.0\n61,488,9.5\n61,489,10.0\n61,490,10.5\n61,491,11.0\n61,492,11.5\n61,493,12.0\n61,494,12.5\n61,495,13.0\n61,496,13.5\n61,497,14.0\n61,498,14.5\n61,499,15.0\n61,500,14.5\n61,501,14.0\n61,502,13.5\n61,503,13.0\n61,504,12.5\n61,505,12.0\n61,506,11.5\n61,507,11.0\n61,508,10.5\n61,509,10.0\n61,510,9.5\n61,511,9.0\n61,512,9.5\n61,513,10.0\n61,514,10.5\n61,515,11.0\n61,516,11.5\n61,517,12.0\n61,518,12.5\n61,519,13.0\n61,520,13.5\n61,521,14.0\n61,522,14.5\n61,523,15.0\n61,524,15.5\n61,525,15.0\n61,526,14.5\n61,527,14.0\n61,528,13.5\n61,529,13.0\n61,530,12.5\n61,531,12.0\n61,532,11.5\n61,533,11.0\n61,534,10.5\n61,535,10.0\n61,536,9.5\n61,537,10.0\n61,538,10.5\n61,539,11.0\n61,540,11.5\n61,541,12.0\n61,542,12.5\n61,543,13.0\n61,544,13.5\n61,545,14.0\n61,546,14.5\n61,547,15.0\n61,548,15.5\n61,549,16.0\n61,550,15.5\n61,551,15.0\n61,552,14.5\n61,553,14.0\n61,554,13.5\n61,555,13.0\n61,556,12.5\n61,557,12.0\n61,558,11.5\n61,559,11.0\n61,560,10.5\n61,561,10.0\n61,562,10.5\n61,563,11.0\n61,564,11.5\n61,565,12.0\n61,566,12.5\n61,567,13.0\n61,568,13.5\n61,569,14.0\n61,570,14.5\n61,571,15.0\n61,572,15.5\n61,573,16.0\n61,574,16.5\n61,575,16.0\n61,576,15.5\n61,577,15.0\n61,578,14.5\n61,579,14.0\n61,580,13.5\n61,581,13.0\n61,582,12.5\n61,583,12.0\n61,584,11.5\n61,585,11.0\n61,586,10.5\n61,587,11.0\n61,588,11.5\n61,589,12.0\n61,590,12.5\n61,591,13.0\n61,592,13.5\n61,593,14.0\n61,594,14.5\n61,595,15.0\n61,596,15.5\n61,597,16.0\n61,598,16.5\n61,599,17.0\n61,600,16.5\n61,601,16.0\n61,602,15.5\n61,603,15.0\n61,604,14.5\n61,605,14.0\n61,606,13.5\n61,607,13.0\n61,608,12.5\n61,609,12.0\n61,610,11.5\n61,611,11.0\n61,612,11.5\n61,613,12.0\n61,614,12.5\n61,615,13.0\n61,616,13.5\n61,617,14.0\n61,618,14.5\n61,619,15.0\n61,620,15.5\n61,621,16.0\n61,622,16.5\n61,623,17.0\n61,624,17.5\n62,0,7.0\n62,1,6.5\n62,2,6.0\n62,3,5.5\n62,4,5.0\n62,5,4.5\n62,6,4.0\n62,7,3.5\n62,8,3.0\n62,9,2.5\n62,10,2.0\n62,11,1.5\n62,12,1.0\n62,13,1.5\n62,14,2.0\n62,15,2.5\n62,16,3.0\n62,17,3.5\n62,18,4.0\n62,19,4.5\n62,20,5.0\n62,21,5.5\n62,22,6.0\n62,23,6.5\n62,24,7.0\n62,25,6.5\n62,26,6.0\n62,27,5.5\n62,28,5.0\n62,29,4.5\n62,30,4.0\n62,31,3.5\n62,32,3.0\n62,33,2.5\n62,34,2.0\n62,35,1.5\n62,36,1.0\n62,37,0.5\n62,38,1.0\n62,39,1.5\n62,40,2.0\n62,41,2.5\n62,42,3.0\n62,43,3.5\n62,44,4.0\n62,45,4.5\n62,46,5.0\n62,47,5.5\n62,48,6.0\n62,49,6.5\n62,50,6.0\n62,51,5.5\n62,52,5.0\n62,53,4.5\n62,54,4.0\n62,55,3.5\n62,56,3.0\n62,57,2.5\n62,58,2.0\n62,59,1.5\n62,60,1.0\n62,61,0.5\n62,62,0\n62,63,0.5\n62,64,1.0\n62,65,1.5\n62,66,2.0\n62,67,2.5\n62,68,3.0\n62,69,3.5\n62,70,4.0\n62,71,4.5\n62,72,5.0\n62,73,5.5\n62,74,6.0\n62,75,6.5\n62,76,6.0\n62,77,5.5\n62,78,5.0\n62,79,4.5\n62,80,4.0\n62,81,3.5\n62,82,3.0\n62,83,2.5\n62,84,2.0\n62,85,1.5\n62,86,1.0\n62,87,0.5\n62,88,1.0\n62,89,1.5\n62,90,2.0\n62,91,2.5\n62,92,3.0\n62,93,3.5\n62,94,4.0\n62,95,4.5\n62,96,5.0\n62,97,5.5\n62,98,6.0\n62,99,6.5\n62,100,7.0\n62,101,6.5\n62,102,6.0\n62,103,5.5\n62,104,5.0\n62,105,4.5\n62,106,4.0\n62,107,3.5\n62,108,3.0\n62,109,2.5\n62,110,2.0\n62,111,1.5\n62,112,1.0\n62,113,1.5\n62,114,2.0\n62,115,2.5\n62,116,3.0\n62,117,3.5\n62,118,4.0\n62,119,4.5\n62,120,5.0\n62,121,5.5\n62,122,6.0\n62,123,6.5\n62,124,7.0\n62,125,7.5\n62,126,7.0\n62,127,6.5\n62,128,6.0\n62,129,5.5\n62,130,5.0\n62,131,4.5\n62,132,4.0\n62,133,3.5\n62,134,3.0\n62,135,2.5\n62,136,2.0\n62,137,1.5\n62,138,2.0\n62,139,2.5\n62,140,3.0\n62,141,3.5\n62,142,4.0\n62,143,4.5\n62,144,5.0\n62,145,5.5\n62,146,6.0\n62,147,6.5\n62,148,7.0\n62,149,7.5\n62,150,8.0\n62,151,7.5\n62,152,7.0\n62,153,6.5\n62,154,6.0\n62,155,5.5\n62,156,5.0\n62,157,4.5\n62,158,4.0\n62,159,3.5\n62,160,3.0\n62,161,2.5\n62,162,2.0\n62,163,2.5\n62,164,3.0\n62,165,3.5\n62,166,4.0\n62,167,4.5\n62,168,5.0\n62,169,5.5\n62,170,6.0\n62,171,6.5\n62,172,7.0\n62,173,7.5\n62,174,8.0\n62,175,8.5\n62,176,8.0\n62,177,7.5\n62,178,7.0\n62,179,6.5\n62,180,6.0\n62,181,5.5\n62,182,5.0\n62,183,4.5\n62,184,4.0\n62,185,3.5\n62,186,3.0\n62,187,2.5\n62,188,3.0\n62,189,3.5\n62,190,4.0\n62,191,4.5\n62,192,5.0\n62,193,5.5\n62,194,6.0\n62,195,6.5\n62,196,7.0\n62,197,7.5\n62,198,8.0\n62,199,8.5\n62,200,9.0\n62,201,8.5\n62,202,8.0\n62,203,7.5\n62,204,7.0\n62,205,6.5\n62,206,6.0\n62,207,5.5\n62,208,5.0\n62,209,4.5\n62,210,4.0\n62,211,3.5\n62,212,3.0\n62,213,3.5\n62,214,4.0\n62,215,4.5\n62,216,5.0\n62,217,5.5\n62,218,6.0\n62,219,6.5\n62,220,7.0\n62,221,7.5\n62,222,8.0\n62,223,8.5\n62,224,9.0\n62,225,9.5\n62,226,9.0\n62,227,8.5\n62,228,8.0\n62,229,7.5\n62,230,7.0\n62,231,6.5\n62,232,6.0\n62,233,5.5\n62,234,5.0\n62,235,4.5\n62,236,4.0\n62,237,3.5\n62,238,4.0\n62,239,4.5\n62,240,5.0\n62,241,5.5\n62,242,6.0\n62,243,6.5\n62,244,7.0\n62,245,7.5\n62,246,8.0\n62,247,8.5\n62,248,9.0\n62,249,9.5\n62,250,10.0\n62,251,9.5\n62,252,9.0\n62,253,8.5\n62,254,8.0\n62,255,7.5\n62,256,7.0\n62,257,6.5\n62,258,6.0\n62,259,5.5\n62,260,5.0\n62,261,4.5\n62,262,4.0\n62,263,4.5\n62,264,5.0\n62,265,5.5\n62,266,6.0\n62,267,6.5\n62,268,7.0\n62,269,7.5\n62,270,8.0\n62,271,8.5\n62,272,9.0\n62,273,9.5\n62,274,10.0\n62,275,10.5\n62,276,10.0\n62,277,9.5\n62,278,9.0\n62,279,8.5\n62,280,8.0\n62,281,7.5\n62,282,7.0\n62,283,6.5\n62,284,6.0\n62,285,5.5\n62,286,5.0\n62,287,4.5\n62,288,5.0\n62,289,5.5\n62,290,6.0\n62,291,6.5\n62,292,7.0\n62,293,7.5\n62,294,8.0\n62,295,8.5\n62,296,9.0\n62,297,9.5\n62,298,10.0\n62,299,10.5\n62,300,11.0\n62,301,10.5\n62,302,10.0\n62,303,9.5\n62,304,9.0\n62,305,8.5\n62,306,8.0\n62,307,7.5\n62,308,7.0\n62,309,6.5\n62,310,6.0\n62,311,5.5\n62,312,5.0\n62,313,5.5\n62,314,6.0\n62,315,6.5\n62,316,7.0\n62,317,7.5\n62,318,8.0\n62,319,8.5\n62,320,9.0\n62,321,9.5\n62,322,10.0\n62,323,10.5\n62,324,11.0\n62,325,11.5\n62,326,11.0\n62,327,10.5\n62,328,10.0\n62,329,9.5\n62,330,9.0\n62,331,8.5\n62,332,8.0\n62,333,7.5\n62,334,7.0\n62,335,6.5\n62,336,6.0\n62,337,5.5\n62,338,6.0\n62,339,6.5\n62,340,7.0\n62,341,7.5\n62,342,8.0\n62,343,8.5\n62,344,9.0\n62,345,9.5\n62,346,10.0\n62,347,10.5\n62,348,11.0\n62,349,11.5\n62,350,12.0\n62,351,11.5\n62,352,11.0\n62,353,10.5\n62,354,10.0\n62,355,9.5\n62,356,9.0\n62,357,8.5\n62,358,8.0\n62,359,7.5\n62,360,7.0\n62,361,6.5\n62,362,6.0\n62,363,6.5\n62,364,7.0\n62,365,7.5\n62,366,8.0\n62,367,8.5\n62,368,9.0\n62,369,9.5\n62,370,10.0\n62,371,10.5\n62,372,11.0\n62,373,11.5\n62,374,12.0\n62,375,12.5\n62,376,12.0\n62,377,11.5\n62,378,11.0\n62,379,10.5\n62,380,10.0\n62,381,9.5\n62,382,9.0\n62,383,8.5\n62,384,8.0\n62,385,7.5\n62,386,7.0\n62,387,6.5\n62,388,7.0\n62,389,7.5\n62,390,8.0\n62,391,8.5\n62,392,9.0\n62,393,9.5\n62,394,10.0\n62,395,10.5\n62,396,11.0\n62,397,11.5\n62,398,12.0\n62,399,12.5\n62,400,13.0\n62,401,12.5\n62,402,12.0\n62,403,11.5\n62,404,11.0\n62,405,10.5\n62,406,10.0\n62,407,9.5\n62,408,9.0\n62,409,8.5\n62,410,8.0\n62,411,7.5\n62,412,7.0\n62,413,7.5\n62,414,8.0\n62,415,8.5\n62,416,9.0\n62,417,9.5\n62,418,10.0\n62,419,10.5\n62,420,11.0\n62,421,11.5\n62,422,12.0\n62,423,12.5\n62,424,13.0\n62,425,13.5\n62,426,13.0\n62,427,12.5\n62,428,12.0\n62,429,11.5\n62,430,11.0\n62,431,10.5\n62,432,10.0\n62,433,9.5\n62,434,9.0\n62,435,8.5\n62,436,8.0\n62,437,7.5\n62,438,8.0\n62,439,8.5\n62,440,9.0\n62,441,9.5\n62,442,10.0\n62,443,10.5\n62,444,11.0\n62,445,11.5\n62,446,12.0\n62,447,12.5\n62,448,13.0\n62,449,13.5\n62,450,14.0\n62,451,13.5\n62,452,13.0\n62,453,12.5\n62,454,12.0\n62,455,11.5\n62,456,11.0\n62,457,10.5\n62,458,10.0\n62,459,9.5\n62,460,9.0\n62,461,8.5\n62,462,8.0\n62,463,8.5\n62,464,9.0\n62,465,9.5\n62,466,10.0\n62,467,10.5\n62,468,11.0\n62,469,11.5\n62,470,12.0\n62,471,12.5\n62,472,13.0\n62,473,13.5\n62,474,14.0\n62,475,14.5\n62,476,14.0\n62,477,13.5\n62,478,13.0\n62,479,12.5\n62,480,12.0\n62,481,11.5\n62,482,11.0\n62,483,10.5\n62,484,10.0\n62,485,9.5\n62,486,9.0\n62,487,8.5\n62,488,9.0\n62,489,9.5\n62,490,10.0\n62,491,10.5\n62,492,11.0\n62,493,11.5\n62,494,12.0\n62,495,12.5\n62,496,13.0\n62,497,13.5\n62,498,14.0\n62,499,14.5\n62,500,15.0\n62,501,14.5\n62,502,14.0\n62,503,13.5\n62,504,13.0\n62,505,12.5\n62,506,12.0\n62,507,11.5\n62,508,11.0\n62,509,10.5\n62,510,10.0\n62,511,9.5\n62,512,9.0\n62,513,9.5\n62,514,10.0\n62,515,10.5\n62,516,11.0\n62,517,11.5\n62,518,12.0\n62,519,12.5\n62,520,13.0\n62,521,13.5\n62,522,14.0\n62,523,14.5\n62,524,15.0\n62,525,15.5\n62,526,15.0\n62,527,14.5\n62,528,14.0\n62,529,13.5\n62,530,13.0\n62,531,12.5\n62,532,12.0\n62,533,11.5\n62,534,11.0\n62,535,10.5\n62,536,10.0\n62,537,9.5\n62,538,10.0\n62,539,10.5\n62,540,11.0\n62,541,11.5\n62,542,12.0\n62,543,12.5\n62,544,13.0\n62,545,13.5\n62,546,14.0\n62,547,14.5\n62,548,15.0\n62,549,15.5\n62,550,16.0\n62,551,15.5\n62,552,15.0\n62,553,14.5\n62,554,14.0\n62,555,13.5\n62,556,13.0\n62,557,12.5\n62,558,12.0\n62,559,11.5\n62,560,11.0\n62,561,10.5\n62,562,10.0\n62,563,10.5\n62,564,11.0\n62,565,11.5\n62,566,12.0\n62,567,12.5\n62,568,13.0\n62,569,13.5\n62,570,14.0\n62,571,14.5\n62,572,15.0\n62,573,15.5\n62,574,16.0\n62,575,16.5\n62,576,16.0\n62,577,15.5\n62,578,15.0\n62,579,14.5\n62,580,14.0\n62,581,13.5\n62,582,13.0\n62,583,12.5\n62,584,12.0\n62,585,11.5\n62,586,11.0\n62,587,10.5\n62,588,11.0\n62,589,11.5\n62,590,12.0\n62,591,12.5\n62,592,13.0\n62,593,13.5\n62,594,14.0\n62,595,14.5\n62,596,15.0\n62,597,15.5\n62,598,16.0\n62,599,16.5\n62,600,17.0\n62,601,16.5\n62,602,16.0\n62,603,15.5\n62,604,15.0\n62,605,14.5\n62,606,14.0\n62,607,13.5\n62,608,13.0\n62,609,12.5\n62,610,12.0\n62,611,11.5\n62,612,11.0\n62,613,11.5\n62,614,12.0\n62,615,12.5\n62,616,13.0\n62,617,13.5\n62,618,14.0\n62,619,14.5\n62,620,15.0\n62,621,15.5\n62,622,16.0\n62,623,16.5\n62,624,17.0\n63,0,7.5\n63,1,7.0\n63,2,6.5\n63,3,6.0\n63,4,5.5\n63,5,5.0\n63,6,4.5\n63,7,4.0\n63,8,3.5\n63,9,3.0\n63,10,2.5\n63,11,2.0\n63,12,1.5\n63,13,1.0\n63,14,1.5\n63,15,2.0\n63,16,2.5\n63,17,3.0\n63,18,3.5\n63,19,4.0\n63,20,4.5\n63,21,5.0\n63,22,5.5\n63,23,6.0\n63,24,6.5\n63,25,7.0\n63,26,6.5\n63,27,6.0\n63,28,5.5\n63,29,5.0\n63,30,4.5\n63,31,4.0\n63,32,3.5\n63,33,3.0\n63,34,2.5\n63,35,2.0\n63,36,1.5\n63,37,1.0\n63,38,0.5\n63,39,1.0\n63,40,1.5\n63,41,2.0\n63,42,2.5\n63,43,3.0\n63,44,3.5\n63,45,4.0\n63,46,4.5\n63,47,5.0\n63,48,5.5\n63,49,6.0\n63,50,6.5\n63,51,6.0\n63,52,5.5\n63,53,5.0\n63,54,4.5\n63,55,4.0\n63,56,3.5\n63,57,3.0\n63,58,2.5\n63,59,2.0\n63,60,1.5\n63,61,1.0\n63,62,0.5\n63,63,0\n63,64,0.5\n63,65,1.0\n63,66,1.5\n63,67,2.0\n63,68,2.5\n63,69,3.0\n63,70,3.5\n63,71,4.0\n63,72,4.5\n63,73,5.0\n63,74,5.5\n63,75,7.0\n63,76,6.5\n63,77,6.0\n63,78,5.5\n63,79,5.0\n63,80,4.5\n63,81,4.0\n63,82,3.5\n63,83,3.0\n63,84,2.5\n63,85,2.0\n63,86,1.5\n63,87,1.0\n63,88,0.5\n63,89,1.0\n63,90,1.5\n63,91,2.0\n63,92,2.5\n63,93,3.0\n63,94,3.5\n63,95,4.0\n63,96,4.5\n63,97,5.0\n63,98,5.5\n63,99,6.0\n63,100,7.5\n63,101,7.0\n63,102,6.5\n63,103,6.0\n63,104,5.5\n63,105,5.0\n63,106,4.5\n63,107,4.0\n63,108,3.5\n63,109,3.0\n63,110,2.5\n63,111,2.0\n63,112,1.5\n63,113,1.0\n63,114,1.5\n63,115,2.0\n63,116,2.5\n63,117,3.0\n63,118,3.5\n63,119,4.0\n63,120,4.5\n63,121,5.0\n63,122,5.5\n63,123,6.0\n63,124,6.5\n63,125,8.0\n63,126,7.5\n63,127,7.0\n63,128,6.5\n63,129,6.0\n63,130,5.5\n63,131,5.0\n63,132,4.5\n63,133,4.0\n63,134,3.5\n63,135,3.0\n63,136,2.5\n63,137,2.0\n63,138,1.5\n63,139,2.0\n63,140,2.5\n63,141,3.0\n63,142,3.5\n63,143,4.0\n63,144,4.5\n63,145,5.0\n63,146,5.5\n63,147,6.0\n63,148,6.5\n63,149,7.0\n63,150,8.5\n63,151,8.0\n63,152,7.5\n63,153,7.0\n63,154,6.5\n63,155,6.0\n63,156,5.5\n63,157,5.0\n63,158,4.5\n63,159,4.0\n63,160,3.5\n63,161,3.0\n63,162,2.5\n63,163,2.0\n63,164,2.5\n63,165,3.0\n63,166,3.5\n63,167,4.0\n63,168,4.5\n63,169,5.0\n63,170,5.5\n63,171,6.0\n63,172,6.5\n63,173,7.0\n63,174,7.5\n63,175,9.0\n63,176,8.5\n63,177,8.0\n63,178,7.5\n63,179,7.0\n63,180,6.5\n63,181,6.0\n63,182,5.5\n63,183,5.0\n63,184,4.5\n63,185,4.0\n63,186,3.5\n63,187,3.0\n63,188,2.5\n63,189,3.0\n63,190,3.5\n63,191,4.0\n63,192,4.5\n63,193,5.0\n63,194,5.5\n63,195,6.0\n63,196,6.5\n63,197,7.0\n63,198,7.5\n63,199,8.0\n63,200,9.5\n63,201,9.0\n63,202,8.5\n63,203,8.0\n63,204,7.5\n63,205,7.0\n63,206,6.5\n63,207,6.0\n63,208,5.5\n63,209,5.0\n63,210,4.5\n63,211,4.0\n63,212,3.5\n63,213,3.0\n63,214,3.5\n63,215,4.0\n63,216,4.5\n63,217,5.0\n63,218,5.5\n63,219,6.0\n63,220,6.5\n63,221,7.0\n63,222,7.5\n63,223,8.0\n63,224,8.5\n63,225,10.0\n63,226,9.5\n63,227,9.0\n63,228,8.5\n63,229,8.0\n63,230,7.5\n63,231,7.0\n63,232,6.5\n63,233,6.0\n63,234,5.5\n63,235,5.0\n63,236,4.5\n63,237,4.0\n63,238,3.5\n63,239,4.0\n63,240,4.5\n63,241,5.0\n63,242,5.5\n63,243,6.0\n63,244,6.5\n63,245,7.0\n63,246,7.5\n63,247,8.0\n63,248,8.5\n63,249,9.0\n63,250,10.5\n63,251,10.0\n63,252,9.5\n63,253,9.0\n63,254,8.5\n63,255,8.0\n63,256,7.5\n63,257,7.0\n63,258,6.5\n63,259,6.0\n63,260,5.5\n63,261,5.0\n63,262,4.5\n63,263,4.0\n63,264,4.5\n63,265,5.0\n63,266,5.5\n63,267,6.0\n63,268,6.5\n63,269,7.0\n63,270,7.5\n63,271,8.0\n63,272,8.5\n63,273,9.0\n63,274,9.5\n63,275,11.0\n63,276,10.5\n63,277,10.0\n63,278,9.5\n63,279,9.0\n63,280,8.5\n63,281,8.0\n63,282,7.5\n63,283,7.0\n63,284,6.5\n63,285,6.0\n63,286,5.5\n63,287,5.0\n63,288,4.5\n63,289,5.0\n63,290,5.5\n63,291,6.0\n63,292,6.5\n63,293,7.0\n63,294,7.5\n63,295,8.0\n63,296,8.5\n63,297,9.0\n63,298,9.5\n63,299,10.0\n63,300,11.5\n63,301,11.0\n63,302,10.5\n63,303,10.0\n63,304,9.5\n63,305,9.0\n63,306,8.5\n63,307,8.0\n63,308,7.5\n63,309,7.0\n63,310,6.5\n63,311,6.0\n63,312,5.5\n63,313,5.0\n63,314,5.5\n63,315,6.0\n63,316,6.5\n63,317,7.0\n63,318,7.5\n63,319,8.0\n63,320,8.5\n63,321,9.0\n63,322,9.5\n63,323,10.0\n63,324,10.5\n63,325,12.0\n63,326,11.5\n63,327,11.0\n63,328,10.5\n63,329,10.0\n63,330,9.5\n63,331,9.0\n63,332,8.5\n63,333,8.0\n63,334,7.5\n63,335,7.0\n63,336,6.5\n63,337,6.0\n63,338,5.5\n63,339,6.0\n63,340,6.5\n63,341,7.0\n63,342,7.5\n63,343,8.0\n63,344,8.5\n63,345,9.0\n63,346,9.5\n63,347,10.0\n63,348,10.5\n63,349,11.0\n63,350,12.5\n63,351,12.0\n63,352,11.5\n63,353,11.0\n63,354,10.5\n63,355,10.0\n63,356,9.5\n63,357,9.0\n63,358,8.5\n63,359,8.0\n63,360,7.5\n63,361,7.0\n63,362,6.5\n63,363,6.0\n63,364,6.5\n63,365,7.0\n63,366,7.5\n63,367,8.0\n63,368,8.5\n63,369,9.0\n63,370,9.5\n63,371,10.0\n63,372,10.5\n63,373,11.0\n63,374,11.5\n63,375,13.0\n63,376,12.5\n63,377,12.0\n63,378,11.5\n63,379,11.0\n63,380,10.5\n63,381,10.0\n63,382,9.5\n63,383,9.0\n63,384,8.5\n63,385,8.0\n63,386,7.5\n63,387,7.0\n63,388,6.5\n63,389,7.0\n63,390,7.5\n63,391,8.0\n63,392,8.5\n63,393,9.0\n63,394,9.5\n63,395,10.0\n63,396,10.5\n63,397,11.0\n63,398,11.5\n63,399,12.0\n63,400,13.5\n63,401,13.0\n63,402,12.5\n63,403,12.0\n63,404,11.5\n63,405,11.0\n63,406,10.5\n63,407,10.0\n63,408,9.5\n63,409,9.0\n63,410,8.5\n63,411,8.0\n63,412,7.5\n63,413,7.0\n63,414,7.5\n63,415,8.0\n63,416,8.5\n63,417,9.0\n63,418,9.5\n63,419,10.0\n63,420,10.5\n63,421,11.0\n63,422,11.5\n63,423,12.0\n63,424,12.5\n63,425,14.0\n63,426,13.5\n63,427,13.0\n63,428,12.5\n63,429,12.0\n63,430,11.5\n63,431,11.0\n63,432,10.5\n63,433,10.0\n63,434,9.5\n63,435,9.0\n63,436,8.5\n63,437,8.0\n63,438,7.5\n63,439,8.0\n63,440,8.5\n63,441,9.0\n63,442,9.5\n63,443,10.0\n63,444,10.5\n63,445,11.0\n63,446,11.5\n63,447,12.0\n63,448,12.5\n63,449,13.0\n63,450,14.5\n63,451,14.0\n63,452,13.5\n63,453,13.0\n63,454,12.5\n63,455,12.0\n63,456,11.5\n63,457,11.0\n63,458,10.5\n63,459,10.0\n63,460,9.5\n63,461,9.0\n63,462,8.5\n63,463,8.0\n63,464,8.5\n63,465,9.0\n63,466,9.5\n63,467,10.0\n63,468,10.5\n63,469,11.0\n63,470,11.5\n63,471,12.0\n63,472,12.5\n63,473,13.0\n63,474,13.5\n63,475,15.0\n63,476,14.5\n63,477,14.0\n63,478,13.5\n63,479,13.0\n63,480,12.5\n63,481,12.0\n63,482,11.5\n63,483,11.0\n63,484,10.5\n63,485,10.0\n63,486,9.5\n63,487,9.0\n63,488,8.5\n63,489,9.0\n63,490,9.5\n63,491,10.0\n63,492,10.5\n63,493,11.0\n63,494,11.5\n63,495,12.0\n63,496,12.5\n63,497,13.0\n63,498,13.5\n63,499,14.0\n63,500,15.5\n63,501,15.0\n63,502,14.5\n63,503,14.0\n63,504,13.5\n63,505,13.0\n63,506,12.5\n63,507,12.0\n63,508,11.5\n63,509,11.0\n63,510,10.5\n63,511,10.0\n63,512,9.5\n63,513,9.0\n63,514,9.5\n63,515,10.0\n63,516,10.5\n63,517,11.0\n63,518,11.5\n63,519,12.0\n63,520,12.5\n63,521,13.0\n63,522,13.5\n63,523,14.0\n63,524,14.5\n63,525,16.0\n63,526,15.5\n63,527,15.0\n63,528,14.5\n63,529,14.0\n63,530,13.5\n63,531,13.0\n63,532,12.5\n63,533,12.0\n63,534,11.5\n63,535,11.0\n63,536,10.5\n63,537,10.0\n63,538,9.5\n63,539,10.0\n63,540,10.5\n63,541,11.0\n63,542,11.5\n63,543,12.0\n63,544,12.5\n63,545,13.0\n63,546,13.5\n63,547,14.0\n63,548,14.5\n63,549,15.0\n63,550,16.5\n63,551,16.0\n63,552,15.5\n63,553,15.0\n63,554,14.5\n63,555,14.0\n63,556,13.5\n63,557,13.0\n63,558,12.5\n63,559,12.0\n63,560,11.5\n63,561,11.0\n63,562,10.5\n63,563,10.0\n63,564,10.5\n63,565,11.0\n63,566,11.5\n63,567,12.0\n63,568,12.5\n63,569,13.0\n63,570,13.5\n63,571,14.0\n63,572,14.5\n63,573,15.0\n63,574,15.5\n63,575,17.0\n63,576,16.5\n63,577,16.0\n63,578,15.5\n63,579,15.0\n63,580,14.5\n63,581,14.0\n63,582,13.5\n63,583,13.0\n63,584,12.5\n63,585,12.0\n63,586,11.5\n63,587,11.0\n63,588,10.5\n63,589,11.0\n63,590,11.5\n63,591,12.0\n63,592,12.5\n63,593,13.0\n63,594,13.5\n63,595,14.0\n63,596,14.5\n63,597,15.0\n63,598,15.5\n63,599,16.0\n63,600,17.5\n63,601,17.0\n63,602,16.5\n63,603,16.0\n63,604,15.5\n63,605,15.0\n63,606,14.5\n63,607,14.0\n63,608,13.5\n63,609,13.0\n63,610,12.5\n63,611,12.0\n63,612,11.5\n63,613,11.0\n63,614,11.5\n63,615,12.0\n63,616,12.5\n63,617,13.0\n63,618,13.5\n63,619,14.0\n63,620,14.5\n63,621,15.0\n63,622,15.5\n63,623,16.0\n63,624,16.5\n64,0,8.0\n64,1,7.5\n64,2,7.0\n64,3,6.5\n64,4,6.0\n64,5,5.5\n64,6,5.0\n64,7,4.5\n64,8,4.0\n64,9,3.5\n64,10,3.0\n64,11,2.5\n64,12,2.0\n64,13,1.5\n64,14,1.0\n64,15,1.5\n64,16,2.0\n64,17,2.5\n64,18,3.0\n64,19,3.5\n64,20,4.0\n64,21,4.5\n64,22,5.0\n64,23,5.5\n64,24,6.0\n64,25,7.5\n64,26,7.0\n64,27,6.5\n64,28,6.0\n64,29,5.5\n64,30,5.0\n64,31,4.5\n64,32,4.0\n64,33,3.5\n64,34,3.0\n64,35,2.5\n64,36,2.0\n64,37,1.5\n64,38,1.0\n64,39,0.5\n64,40,1.0\n64,41,1.5\n64,42,2.0\n64,43,2.5\n64,44,3.0\n64,45,3.5\n64,46,4.0\n64,47,4.5\n64,48,5.0\n64,49,5.5\n64,50,7.0\n64,51,6.5\n64,52,6.0\n64,53,5.5\n64,54,5.0\n64,55,4.5\n64,56,4.0\n64,57,3.5\n64,58,3.0\n64,59,2.5\n64,60,2.0\n64,61,1.5\n64,62,1.0\n64,63,0.5\n64,64,0\n64,65,0.5\n64,66,1.0\n64,67,1.5\n64,68,2.0\n64,69,2.5\n64,70,3.0\n64,71,3.5\n64,72,4.0\n64,73,4.5\n64,74,5.0\n64,75,7.5\n64,76,7.0\n64,77,6.5\n64,78,6.0\n64,79,5.5\n64,80,5.0\n64,81,4.5\n64,82,4.0\n64,83,3.5\n64,84,3.0\n64,85,2.5\n64,86,2.0\n64,87,1.5\n64,88,1.0\n64,89,0.5\n64,90,1.0\n64,91,1.5\n64,92,2.0\n64,93,2.5\n64,94,3.0\n64,95,3.5\n64,96,4.0\n64,97,4.5\n64,98,5.0\n64,99,5.5\n64,100,8.0\n64,101,7.5\n64,102,7.0\n64,103,6.5\n64,104,6.0\n64,105,5.5\n64,106,5.0\n64,107,4.5\n64,108,4.0\n64,109,3.5\n64,110,3.0\n64,111,2.5\n64,112,2.0\n64,113,1.5\n64,114,1.0\n64,115,1.5\n64,116,2.0\n64,117,2.5\n64,118,3.0\n64,119,3.5\n64,120,4.0\n64,121,4.5\n64,122,5.0\n64,123,5.5\n64,124,6.0\n64,125,8.5\n64,126,8.0\n64,127,7.5\n64,128,7.0\n64,129,6.5\n64,130,6.0\n64,131,5.5\n64,132,5.0\n64,133,4.5\n64,134,4.0\n64,135,3.5\n64,136,3.0\n64,137,2.5\n64,138,2.0\n64,139,1.5\n64,140,2.0\n64,141,2.5\n64,142,3.0\n64,143,3.5\n64,144,4.0\n64,145,4.5\n64,146,5.0\n64,147,5.5\n64,148,6.0\n64,149,6.5\n64,150,9.0\n64,151,8.5\n64,152,8.0\n64,153,7.5\n64,154,7.0\n64,155,6.5\n64,156,6.0\n64,157,5.5\n64,158,5.0\n64,159,4.5\n64,160,4.0\n64,161,3.5\n64,162,3.0\n64,163,2.5\n64,164,2.0\n64,165,2.5\n64,166,3.0\n64,167,3.5\n64,168,4.0\n64,169,4.5\n64,170,5.0\n64,171,5.5\n64,172,6.0\n64,173,6.5\n64,174,7.0\n64,175,9.5\n64,176,9.0\n64,177,8.5\n64,178,8.0\n64,179,7.5\n64,180,7.0\n64,181,6.5\n64,182,6.0\n64,183,5.5\n64,184,5.0\n64,185,4.5\n64,186,4.0\n64,187,3.5\n64,188,3.0\n64,189,2.5\n64,190,3.0\n64,191,3.5\n64,192,4.0\n64,193,4.5\n64,194,5.0\n64,195,5.5\n64,196,6.0\n64,197,6.5\n64,198,7.0\n64,199,7.5\n64,200,10.0\n64,201,9.5\n64,202,9.0\n64,203,8.5\n64,204,8.0\n64,205,7.5\n64,206,7.0\n64,207,6.5\n64,208,6.0\n64,209,5.5\n64,210,5.0\n64,211,4.5\n64,212,4.0\n64,213,3.5\n64,214,3.0\n64,215,3.5\n64,216,4.0\n64,217,4.5\n64,218,5.0\n64,219,5.5\n64,220,6.0\n64,221,6.5\n64,222,7.0\n64,223,7.5\n64,224,8.0\n64,225,10.5\n64,226,10.0\n64,227,9.5\n64,228,9.0\n64,229,8.5\n64,230,8.0\n64,231,7.5\n64,232,7.0\n64,233,6.5\n64,234,6.0\n64,235,5.5\n64,236,5.0\n64,237,4.5\n64,238,4.0\n64,239,3.5\n64,240,4.0\n64,241,4.5\n64,242,5.0\n64,243,5.5\n64,244,6.0\n64,245,6.5\n64,246,7.0\n64,247,7.5\n64,248,8.0\n64,249,8.5\n64,250,11.0\n64,251,10.5\n64,252,10.0\n64,253,9.5\n64,254,9.0\n64,255,8.5\n64,256,8.0\n64,257,7.5\n64,258,7.0\n64,259,6.5\n64,260,6.0\n64,261,5.5\n64,262,5.0\n64,263,4.5\n64,264,4.0\n64,265,4.5\n64,266,5.0\n64,267,5.5\n64,268,6.0\n64,269,6.5\n64,270,7.0\n64,271,7.5\n64,272,8.0\n64,273,8.5\n64,274,9.0\n64,275,11.5\n64,276,11.0\n64,277,10.5\n64,278,10.0\n64,279,9.5\n64,280,9.0\n64,281,8.5\n64,282,8.0\n64,283,7.5\n64,284,7.0\n64,285,6.5\n64,286,6.0\n64,287,5.5\n64,288,5.0\n64,289,4.5\n64,290,5.0\n64,291,5.5\n64,292,6.0\n64,293,6.5\n64,294,7.0\n64,295,7.5\n64,296,8.0\n64,297,8.5\n64,298,9.0\n64,299,9.5\n64,300,12.0\n64,301,11.5\n64,302,11.0\n64,303,10.5\n64,304,10.0\n64,305,9.5\n64,306,9.0\n64,307,8.5\n64,308,8.0\n64,309,7.5\n64,310,7.0\n64,311,6.5\n64,312,6.0\n64,313,5.5\n64,314,5.0\n64,315,5.5\n64,316,6.0\n64,317,6.5\n64,318,7.0\n64,319,7.5\n64,320,8.0\n64,321,8.5\n64,322,9.0\n64,323,9.5\n64,324,10.0\n64,325,12.5\n64,326,12.0\n64,327,11.5\n64,328,11.0\n64,329,10.5\n64,330,10.0\n64,331,9.5\n64,332,9.0\n64,333,8.5\n64,334,8.0\n64,335,7.5\n64,336,7.0\n64,337,6.5\n64,338,6.0\n64,339,5.5\n64,340,6.0\n64,341,6.5\n64,342,7.0\n64,343,7.5\n64,344,8.0\n64,345,8.5\n64,346,9.0\n64,347,9.5\n64,348,10.0\n64,349,10.5\n64,350,13.0\n64,351,12.5\n64,352,12.0\n64,353,11.5\n64,354,11.0\n64,355,10.5\n64,356,10.0\n64,357,9.5\n64,358,9.0\n64,359,8.5\n64,360,8.0\n64,361,7.5\n64,362,7.0\n64,363,6.5\n64,364,6.0\n64,365,6.5\n64,366,7.0\n64,367,7.5\n64,368,8.0\n64,369,8.5\n64,370,9.0\n64,371,9.5\n64,372,10.0\n64,373,10.5\n64,374,11.0\n64,375,13.5\n64,376,13.0\n64,377,12.5\n64,378,12.0\n64,379,11.5\n64,380,11.0\n64,381,10.5\n64,382,10.0\n64,383,9.5\n64,384,9.0\n64,385,8.5\n64,386,8.0\n64,387,7.5\n64,388,7.0\n64,389,6.5\n64,390,7.0\n64,391,7.5\n64,392,8.0\n64,393,8.5\n64,394,9.0\n64,395,9.5\n64,396,10.0\n64,397,10.5\n64,398,11.0\n64,399,11.5\n64,400,14.0\n64,401,13.5\n64,402,13.0\n64,403,12.5\n64,404,12.0\n64,405,11.5\n64,406,11.0\n64,407,10.5\n64,408,10.0\n64,409,9.5\n64,410,9.0\n64,411,8.5\n64,412,8.0\n64,413,7.5\n64,414,7.0\n64,415,7.5\n64,416,8.0\n64,417,8.5\n64,418,9.0\n64,419,9.5\n64,420,10.0\n64,421,10.5\n64,422,11.0\n64,423,11.5\n64,424,12.0\n64,425,14.5\n64,426,14.0\n64,427,13.5\n64,428,13.0\n64,429,12.5\n64,430,12.0\n64,431,11.5\n64,432,11.0\n64,433,10.5\n64,434,10.0\n64,435,9.5\n64,436,9.0\n64,437,8.5\n64,438,8.0\n64,439,7.5\n64,440,8.0\n64,441,8.5\n64,442,9.0\n64,443,9.5\n64,444,10.0\n64,445,10.5\n64,446,11.0\n64,447,11.5\n64,448,12.0\n64,449,12.5\n64,450,15.0\n64,451,14.5\n64,452,14.0\n64,453,13.5\n64,454,13.0\n64,455,12.5\n64,456,12.0\n64,457,11.5\n64,458,11.0\n64,459,10.5\n64,460,10.0\n64,461,9.5\n64,462,9.0\n64,463,8.5\n64,464,8.0\n64,465,8.5\n64,466,9.0\n64,467,9.5\n64,468,10.0\n64,469,10.5\n64,470,11.0\n64,471,11.5\n64,472,12.0\n64,473,12.5\n64,474,13.0\n64,475,15.5\n64,476,15.0\n64,477,14.5\n64,478,14.0\n64,479,13.5\n64,480,13.0\n64,481,12.5\n64,482,12.0\n64,483,11.5\n64,484,11.0\n64,485,10.5\n64,486,10.0\n64,487,9.5\n64,488,9.0\n64,489,8.5\n64,490,9.0\n64,491,9.5\n64,492,10.0\n64,493,10.5\n64,494,11.0\n64,495,11.5\n64,496,12.0\n64,497,12.5\n64,498,13.0\n64,499,13.5\n64,500,16.0\n64,501,15.5\n64,502,15.0\n64,503,14.5\n64,504,14.0\n64,505,13.5\n64,506,13.0\n64,507,12.5\n64,508,12.0\n64,509,11.5\n64,510,11.0\n64,511,10.5\n64,512,10.0\n64,513,9.5\n64,514,9.0\n64,515,9.5\n64,516,10.0\n64,517,10.5\n64,518,11.0\n64,519,11.5\n64,520,12.0\n64,521,12.5\n64,522,13.0\n64,523,13.5\n64,524,14.0\n64,525,16.5\n64,526,16.0\n64,527,15.5\n64,528,15.0\n64,529,14.5\n64,530,14.0\n64,531,13.5\n64,532,13.0\n64,533,12.5\n64,534,12.0\n64,535,11.5\n64,536,11.0\n64,537,10.5\n64,538,10.0\n64,539,9.5\n64,540,10.0\n64,541,10.5\n64,542,11.0\n64,543,11.5\n64,544,12.0\n64,545,12.5\n64,546,13.0\n64,547,13.5\n64,548,14.0\n64,549,14.5\n64,550,17.0\n64,551,16.5\n64,552,16.0\n64,553,15.5\n64,554,15.0\n64,555,14.5\n64,556,14.0\n64,557,13.5\n64,558,13.0\n64,559,12.5\n64,560,12.0\n64,561,11.5\n64,562,11.0\n64,563,10.5\n64,564,10.0\n64,565,10.5\n64,566,11.0\n64,567,11.5\n64,568,12.0\n64,569,12.5\n64,570,13.0\n64,571,13.5\n64,572,14.0\n64,573,14.5\n64,574,15.0\n64,575,17.5\n64,576,17.0\n64,577,16.5\n64,578,16.0\n64,579,15.5\n64,580,15.0\n64,581,14.5\n64,582,14.0\n64,583,13.5\n64,584,13.0\n64,585,12.5\n64,586,12.0\n64,587,11.5\n64,588,11.0\n64,589,10.5\n64,590,11.0\n64,591,11.5\n64,592,12.0\n64,593,12.5\n64,594,13.0\n64,595,13.5\n64,596,14.0\n64,597,14.5\n64,598,15.0\n64,599,15.5\n64,600,18.0\n64,601,17.5\n64,602,17.0\n64,603,16.5\n64,604,16.0\n64,605,15.5\n64,606,15.0\n64,607,14.5\n64,608,14.0\n64,609,13.5\n64,610,13.0\n64,611,12.5\n64,612,12.0\n64,613,11.5\n64,614,11.0\n64,615,11.5\n64,616,12.0\n64,617,12.5\n64,618,13.0\n64,619,13.5\n64,620,14.0\n64,621,14.5\n64,622,15.0\n64,623,15.5\n64,624,16.0\n65,0,8.5\n65,1,8.0\n65,2,7.5\n65,3,7.0\n65,4,6.5\n65,5,6.0\n65,6,5.5\n65,7,5.0\n65,8,4.5\n65,9,4.0\n65,10,3.5\n65,11,3.0\n65,12,2.5\n65,13,2.0\n65,14,1.5\n65,15,1.0\n65,16,1.5\n65,17,2.0\n65,18,2.5\n65,19,3.0\n65,20,3.5\n65,21,4.0\n65,22,4.5\n65,23,5.0\n65,24,5.5\n65,25,8.0\n65,26,7.5\n65,27,7.0\n65,28,6.5\n65,29,6.0\n65,30,5.5\n65,31,5.0\n65,32,4.5\n65,33,4.0\n65,34,3.5\n65,35,3.0\n65,36,2.5\n65,37,2.0\n65,38,1.5\n65,39,1.0\n65,40,0.5\n65,41,1.0\n65,42,1.5\n65,43,2.0\n65,44,2.5\n65,45,3.0\n65,46,3.5\n65,47,4.0\n65,48,4.5\n65,49,5.0\n65,50,7.5\n65,51,7.0\n65,52,6.5\n65,53,6.0\n65,54,5.5\n65,55,5.0\n65,56,4.5\n65,57,4.0\n65,58,3.5\n65,59,3.0\n65,60,2.5\n65,61,2.0\n65,62,1.5\n65,63,1.0\n65,64,0.5\n65,65,0\n65,66,0.5\n65,67,1.0\n65,68,1.5\n65,69,2.0\n65,70,2.5\n65,71,3.0\n65,72,3.5\n65,73,4.0\n65,74,4.5\n65,75,8.0\n65,76,7.5\n65,77,7.0\n65,78,6.5\n65,79,6.0\n65,80,5.5\n65,81,5.0\n65,82,4.5\n65,83,4.0\n65,84,3.5\n65,85,3.0\n65,86,2.5\n65,87,2.0\n65,88,1.5\n65,89,1.0\n65,90,0.5\n65,91,1.0\n65,92,1.5\n65,93,2.0\n65,94,2.5\n65,95,3.0\n65,96,3.5\n65,97,4.0\n65,98,4.5\n65,99,5.0\n65,100,8.5\n65,101,8.0\n65,102,7.5\n65,103,7.0\n65,104,6.5\n65,105,6.0\n65,106,5.5\n65,107,5.0\n65,108,4.5\n65,109,4.0\n65,110,3.5\n65,111,3.0\n65,112,2.5\n65,113,2.0\n65,114,1.5\n65,115,1.0\n65,116,1.5\n65,117,2.0\n65,118,2.5\n65,119,3.0\n65,120,3.5\n65,121,4.0\n65,122,4.5\n65,123,5.0\n65,124,5.5\n65,125,9.0\n65,126,8.5\n65,127,8.0\n65,128,7.5\n65,129,7.0\n65,130,6.5\n65,131,6.0\n65,132,5.5\n65,133,5.0\n65,134,4.5\n65,135,4.0\n65,136,3.5\n65,137,3.0\n65,138,2.5\n65,139,2.0\n65,140,1.5\n65,141,2.0\n65,142,2.5\n65,143,3.0\n65,144,3.5\n65,145,4.0\n65,146,4.5\n65,147,5.0\n65,148,5.5\n65,149,6.0\n65,150,9.5\n65,151,9.0\n65,152,8.5\n65,153,8.0\n65,154,7.5\n65,155,7.0\n65,156,6.5\n65,157,6.0\n65,158,5.5\n65,159,5.0\n65,160,4.5\n65,161,4.0\n65,162,3.5\n65,163,3.0\n65,164,2.5\n65,165,2.0\n65,166,2.5\n65,167,3.0\n65,168,3.5\n65,169,4.0\n65,170,4.5\n65,171,5.0\n65,172,5.5\n65,173,6.0\n65,174,6.5\n65,175,10.0\n65,176,9.5\n65,177,9.0\n65,178,8.5\n65,179,8.0\n65,180,7.5\n65,181,7.0\n65,182,6.5\n65,183,6.0\n65,184,5.5\n65,185,5.0\n65,186,4.5\n65,187,4.0\n65,188,3.5\n65,189,3.0\n65,190,2.5\n65,191,3.0\n65,192,3.5\n65,193,4.0\n65,194,4.5\n65,195,5.0\n65,196,5.5\n65,197,6.0\n65,198,6.5\n65,199,7.0\n65,200,10.5\n65,201,10.0\n65,202,9.5\n65,203,9.0\n65,204,8.5\n65,205,8.0\n65,206,7.5\n65,207,7.0\n65,208,6.5\n65,209,6.0\n65,210,5.5\n65,211,5.0\n65,212,4.5\n65,213,4.0\n65,214,3.5\n65,215,3.0\n65,216,3.5\n65,217,4.0\n65,218,4.5\n65,219,5.0\n65,220,5.5\n65,221,6.0\n65,222,6.5\n65,223,7.0\n65,224,7.5\n65,225,11.0\n65,226,10.5\n65,227,10.0\n65,228,9.5\n65,229,9.0\n65,230,8.5\n65,231,8.0\n65,232,7.5\n65,233,7.0\n65,234,6.5\n65,235,6.0\n65,236,5.5\n65,237,5.0\n65,238,4.5\n65,239,4.0\n65,240,3.5\n65,241,4.0\n65,242,4.5\n65,243,5.0\n65,244,5.5\n65,245,6.0\n65,246,6.5\n65,247,7.0\n65,248,7.5\n65,249,8.0\n65,250,11.5\n65,251,11.0\n65,252,10.5\n65,253,10.0\n65,254,9.5\n65,255,9.0\n65,256,8.5\n65,257,8.0\n65,258,7.5\n65,259,7.0\n65,260,6.5\n65,261,6.0\n65,262,5.5\n65,263,5.0\n65,264,4.5\n65,265,4.0\n65,266,4.5\n65,267,5.0\n65,268,5.5\n65,269,6.0\n65,270,6.5\n65,271,7.0\n65,272,7.5\n65,273,8.0\n65,274,8.5\n65,275,12.0\n65,276,11.5\n65,277,11.0\n65,278,10.5\n65,279,10.0\n65,280,9.5\n65,281,9.0\n65,282,8.5\n65,283,8.0\n65,284,7.5\n65,285,7.0\n65,286,6.5\n65,287,6.0\n65,288,5.5\n65,289,5.0\n65,290,4.5\n65,291,5.0\n65,292,5.5\n65,293,6.0\n65,294,6.5\n65,295,7.0\n65,296,7.5\n65,297,8.0\n65,298,8.5\n65,299,9.0\n65,300,12.5\n65,301,12.0\n65,302,11.5\n65,303,11.0\n65,304,10.5\n65,305,10.0\n65,306,9.5\n65,307,9.0\n65,308,8.5\n65,309,8.0\n65,310,7.5\n65,311,7.0\n65,312,6.5\n65,313,6.0\n65,314,5.5\n65,315,5.0\n65,316,5.5\n65,317,6.0\n65,318,6.5\n65,319,7.0\n65,320,7.5\n65,321,8.0\n65,322,8.5\n65,323,9.0\n65,324,9.5\n65,325,13.0\n65,326,12.5\n65,327,12.0\n65,328,11.5\n65,329,11.0\n65,330,10.5\n65,331,10.0\n65,332,9.5\n65,333,9.0\n65,334,8.5\n65,335,8.0\n65,336,7.5\n65,337,7.0\n65,338,6.5\n65,339,6.0\n65,340,5.5\n65,341,6.0\n65,342,6.5\n65,343,7.0\n65,344,7.5\n65,345,8.0\n65,346,8.5\n65,347,9.0\n65,348,9.5\n65,349,10.0\n65,350,13.5\n65,351,13.0\n65,352,12.5\n65,353,12.0\n65,354,11.5\n65,355,11.0\n65,356,10.5\n65,357,10.0\n65,358,9.5\n65,359,9.0\n65,360,8.5\n65,361,8.0\n65,362,7.5\n65,363,7.0\n65,364,6.5\n65,365,6.0\n65,366,6.5\n65,367,7.0\n65,368,7.5\n65,369,8.0\n65,370,8.5\n65,371,9.0\n65,372,9.5\n65,373,10.0\n65,374,10.5\n65,375,14.0\n65,376,13.5\n65,377,13.0\n65,378,12.5\n65,379,12.0\n65,380,11.5\n65,381,11.0\n65,382,10.5\n65,383,10.0\n65,384,9.5\n65,385,9.0\n65,386,8.5\n65,387,8.0\n65,388,7.5\n65,389,7.0\n65,390,6.5\n65,391,7.0\n65,392,7.5\n65,393,8.0\n65,394,8.5\n65,395,9.0\n65,396,9.5\n65,397,10.0\n65,398,10.5\n65,399,11.0\n65,400,14.5\n65,401,14.0\n65,402,13.5\n65,403,13.0\n65,404,12.5\n65,405,12.0\n65,406,11.5\n65,407,11.0\n65,408,10.5\n65,409,10.0\n65,410,9.5\n65,411,9.0\n65,412,8.5\n65,413,8.0\n65,414,7.5\n65,415,7.0\n65,416,7.5\n65,417,8.0\n65,418,8.5\n65,419,9.0\n65,420,9.5\n65,421,10.0\n65,422,10.5\n65,423,11.0\n65,424,11.5\n65,425,15.0\n65,426,14.5\n65,427,14.0\n65,428,13.5\n65,429,13.0\n65,430,12.5\n65,431,12.0\n65,432,11.5\n65,433,11.0\n65,434,10.5\n65,435,10.0\n65,436,9.5\n65,437,9.0\n65,438,8.5\n65,439,8.0\n65,440,7.5\n65,441,8.0\n65,442,8.5\n65,443,9.0\n65,444,9.5\n65,445,10.0\n65,446,10.5\n65,447,11.0\n65,448,11.5\n65,449,12.0\n65,450,15.5\n65,451,15.0\n65,452,14.5\n65,453,14.0\n65,454,13.5\n65,455,13.0\n65,456,12.5\n65,457,12.0\n65,458,11.5\n65,459,11.0\n65,460,10.5\n65,461,10.0\n65,462,9.5\n65,463,9.0\n65,464,8.5\n65,465,8.0\n65,466,8.5\n65,467,9.0\n65,468,9.5\n65,469,10.0\n65,470,10.5\n65,471,11.0\n65,472,11.5\n65,473,12.0\n65,474,12.5\n65,475,16.0\n65,476,15.5\n65,477,15.0\n65,478,14.5\n65,479,14.0\n65,480,13.5\n65,481,13.0\n65,482,12.5\n65,483,12.0\n65,484,11.5\n65,485,11.0\n65,486,10.5\n65,487,10.0\n65,488,9.5\n65,489,9.0\n65,490,8.5\n65,491,9.0\n65,492,9.5\n65,493,10.0\n65,494,10.5\n65,495,11.0\n65,496,11.5\n65,497,12.0\n65,498,12.5\n65,499,13.0\n65,500,16.5\n65,501,16.0\n65,502,15.5\n65,503,15.0\n65,504,14.5\n65,505,14.0\n65,506,13.5\n65,507,13.0\n65,508,12.5\n65,509,12.0\n65,510,11.5\n65,511,11.0\n65,512,10.5\n65,513,10.0\n65,514,9.5\n65,515,9.0\n65,516,9.5\n65,517,10.0\n65,518,10.5\n65,519,11.0\n65,520,11.5\n65,521,12.0\n65,522,12.5\n65,523,13.0\n65,524,13.5\n65,525,17.0\n65,526,16.5\n65,527,16.0\n65,528,15.5\n65,529,15.0\n65,530,14.5\n65,531,14.0\n65,532,13.5\n65,533,13.0\n65,534,12.5\n65,535,12.0\n65,536,11.5\n65,537,11.0\n65,538,10.5\n65,539,10.0\n65,540,9.5\n65,541,10.0\n65,542,10.5\n65,543,11.0\n65,544,11.5\n65,545,12.0\n65,546,12.5\n65,547,13.0\n65,548,13.5\n65,549,14.0\n65,550,17.5\n65,551,17.0\n65,552,16.5\n65,553,16.0\n65,554,15.5\n65,555,15.0\n65,556,14.5\n65,557,14.0\n65,558,13.5\n65,559,13.0\n65,560,12.5\n65,561,12.0\n65,562,11.5\n65,563,11.0\n65,564,10.5\n65,565,10.0\n65,566,10.5\n65,567,11.0\n65,568,11.5\n65,569,12.0\n65,570,12.5\n65,571,13.0\n65,572,13.5\n65,573,14.0\n65,574,14.5\n65,575,18.0\n65,576,17.5\n65,577,17.0\n65,578,16.5\n65,579,16.0\n65,580,15.5\n65,581,15.0\n65,582,14.5\n65,583,14.0\n65,584,13.5\n65,585,13.0\n65,586,12.5\n65,587,12.0\n65,588,11.5\n65,589,11.0\n65,590,10.5\n65,591,11.0\n65,592,11.5\n65,593,12.0\n65,594,12.5\n65,595,13.0\n65,596,13.5\n65,597,14.0\n65,598,14.5\n65,599,15.0\n65,600,18.5\n65,601,18.0\n65,602,17.5\n65,603,17.0\n65,604,16.5\n65,605,16.0\n65,606,15.5\n65,607,15.0\n65,608,14.5\n65,609,14.0\n65,610,13.5\n65,611,13.0\n65,612,12.5\n65,613,12.0\n65,614,11.5\n65,615,11.0\n65,616,11.5\n65,617,12.0\n65,618,12.5\n65,619,13.0\n65,620,13.5\n65,621,14.0\n65,622,14.5\n65,623,15.0\n65,624,15.5\n66,0,9.0\n66,1,8.5\n66,2,8.0\n66,3,7.5\n66,4,7.0\n66,5,6.5\n66,6,6.0\n66,7,5.5\n66,8,5.0\n66,9,4.5\n66,10,4.0\n66,11,3.5\n66,12,3.0\n66,13,2.5\n66,14,2.0\n66,15,1.5\n66,16,1.0\n66,17,1.5\n66,18,2.0\n66,19,2.5\n66,20,3.0\n66,21,3.5\n66,22,4.0\n66,23,4.5\n66,24,5.0\n66,25,8.5\n66,26,8.0\n66,27,7.5\n66,28,7.0\n66,29,6.5\n66,30,6.0\n66,31,5.5\n66,32,5.0\n66,33,4.5\n66,34,4.0\n66,35,3.5\n66,36,3.0\n66,37,2.5\n66,38,2.0\n66,39,1.5\n66,40,1.0\n66,41,0.5\n66,42,1.0\n66,43,1.5\n66,44,2.0\n66,45,2.5\n66,46,3.0\n66,47,3.5\n66,48,4.0\n66,49,4.5\n66,50,8.0\n66,51,7.5\n66,52,7.0\n66,53,6.5\n66,54,6.0\n66,55,5.5\n66,56,5.0\n66,57,4.5\n66,58,4.0\n66,59,3.5\n66,60,3.0\n66,61,2.5\n66,62,2.0\n66,63,1.5\n66,64,1.0\n66,65,0.5\n66,66,0\n66,67,0.5\n66,68,1.0\n66,69,1.5\n66,70,2.0\n66,71,2.5\n66,72,3.0\n66,73,3.5\n66,74,4.0\n66,75,8.5\n66,76,8.0\n66,77,7.5\n66,78,7.0\n66,79,6.5\n66,80,6.0\n66,81,5.5\n66,82,5.0\n66,83,4.5\n66,84,4.0\n66,85,3.5\n66,86,3.0\n66,87,2.5\n66,88,2.0\n66,89,1.5\n66,90,1.0\n66,91,0.5\n66,92,1.0\n66,93,1.5\n66,94,2.0\n66,95,2.5\n66,96,3.0\n66,97,3.5\n66,98,4.0\n66,99,4.5\n66,100,9.0\n66,101,8.5\n66,102,8.0\n66,103,7.5\n66,104,7.0\n66,105,6.5\n66,106,6.0\n66,107,5.5\n66,108,5.0\n66,109,4.5\n66,110,4.0\n66,111,3.5\n66,112,3.0\n66,113,2.5\n66,114,2.0\n66,115,1.5\n66,116,1.0\n66,117,1.5\n66,118,2.0\n66,119,2.5\n66,120,3.0\n66,121,3.5\n66,122,4.0\n66,123,4.5\n66,124,5.0\n66,125,9.5\n66,126,9.0\n66,127,8.5\n66,128,8.0\n66,129,7.5\n66,130,7.0\n66,131,6.5\n66,132,6.0\n66,133,5.5\n66,134,5.0\n66,135,4.5\n66,136,4.0\n66,137,3.5\n66,138,3.0\n66,139,2.5\n66,140,2.0\n66,141,1.5\n66,142,2.0\n66,143,2.5\n66,144,3.0\n66,145,3.5\n66,146,4.0\n66,147,4.5\n66,148,5.0\n66,149,5.5\n66,150,10.0\n66,151,9.5\n66,152,9.0\n66,153,8.5\n66,154,8.0\n66,155,7.5\n66,156,7.0\n66,157,6.5\n66,158,6.0\n66,159,5.5\n66,160,5.0\n66,161,4.5\n66,162,4.0\n66,163,3.5\n66,164,3.0\n66,165,2.5\n66,166,2.0\n66,167,2.5\n66,168,3.0\n66,169,3.5\n66,170,4.0\n66,171,4.5\n66,172,5.0\n66,173,5.5\n66,174,6.0\n66,175,10.5\n66,176,10.0\n66,177,9.5\n66,178,9.0\n66,179,8.5\n66,180,8.0\n66,181,7.5\n66,182,7.0\n66,183,6.5\n66,184,6.0\n66,185,5.5\n66,186,5.0\n66,187,4.5\n66,188,4.0\n66,189,3.5\n66,190,3.0\n66,191,2.5\n66,192,3.0\n66,193,3.5\n66,194,4.0\n66,195,4.5\n66,196,5.0\n66,197,5.5\n66,198,6.0\n66,199,6.5\n66,200,11.0\n66,201,10.5\n66,202,10.0\n66,203,9.5\n66,204,9.0\n66,205,8.5\n66,206,8.0\n66,207,7.5\n66,208,7.0\n66,209,6.5\n66,210,6.0\n66,211,5.5\n66,212,5.0\n66,213,4.5\n66,214,4.0\n66,215,3.5\n66,216,3.0\n66,217,3.5\n66,218,4.0\n66,219,4.5\n66,220,5.0\n66,221,5.5\n66,222,6.0\n66,223,6.5\n66,224,7.0\n66,225,11.5\n66,226,11.0\n66,227,10.5\n66,228,10.0\n66,229,9.5\n66,230,9.0\n66,231,8.5\n66,232,8.0\n66,233,7.5\n66,234,7.0\n66,235,6.5\n66,236,6.0\n66,237,5.5\n66,238,5.0\n66,239,4.5\n66,240,4.0\n66,241,3.5\n66,242,4.0\n66,243,4.5\n66,244,5.0\n66,245,5.5\n66,246,6.0\n66,247,6.5\n66,248,7.0\n66,249,7.5\n66,250,12.0\n66,251,11.5\n66,252,11.0\n66,253,10.5\n66,254,10.0\n66,255,9.5\n66,256,9.0\n66,257,8.5\n66,258,8.0\n66,259,7.5\n66,260,7.0\n66,261,6.5\n66,262,6.0\n66,263,5.5\n66,264,5.0\n66,265,4.5\n66,266,4.0\n66,267,4.5\n66,268,5.0\n66,269,5.5\n66,270,6.0\n66,271,6.5\n66,272,7.0\n66,273,7.5\n66,274,8.0\n66,275,12.5\n66,276,12.0\n66,277,11.5\n66,278,11.0\n66,279,10.5\n66,280,10.0\n66,281,9.5\n66,282,9.0\n66,283,8.5\n66,284,8.0\n66,285,7.5\n66,286,7.0\n66,287,6.5\n66,288,6.0\n66,289,5.5\n66,290,5.0\n66,291,4.5\n66,292,5.0\n66,293,5.5\n66,294,6.0\n66,295,6.5\n66,296,7.0\n66,297,7.5\n66,298,8.0\n66,299,8.5\n66,300,13.0\n66,301,12.5\n66,302,12.0\n66,303,11.5\n66,304,11.0\n66,305,10.5\n66,306,10.0\n66,307,9.5\n66,308,9.0\n66,309,8.5\n66,310,8.0\n66,311,7.5\n66,312,7.0\n66,313,6.5\n66,314,6.0\n66,315,5.5\n66,316,5.0\n66,317,5.5\n66,318,6.0\n66,319,6.5\n66,320,7.0\n66,321,7.5\n66,322,8.0\n66,323,8.5\n66,324,9.0\n66,325,13.5\n66,326,13.0\n66,327,12.5\n66,328,12.0\n66,329,11.5\n66,330,11.0\n66,331,10.5\n66,332,10.0\n66,333,9.5\n66,334,9.0\n66,335,8.5\n66,336,8.0\n66,337,7.5\n66,338,7.0\n66,339,6.5\n66,340,6.0\n66,341,5.5\n66,342,6.0\n66,343,6.5\n66,344,7.0\n66,345,7.5\n66,346,8.0\n66,347,8.5\n66,348,9.0\n66,349,9.5\n66,350,14.0\n66,351,13.5\n66,352,13.0\n66,353,12.5\n66,354,12.0\n66,355,11.5\n66,356,11.0\n66,357,10.5\n66,358,10.0\n66,359,9.5\n66,360,9.0\n66,361,8.5\n66,362,8.0\n66,363,7.5\n66,364,7.0\n66,365,6.5\n66,366,6.0\n66,367,6.5\n66,368,7.0\n66,369,7.5\n66,370,8.0\n66,371,8.5\n66,372,9.0\n66,373,9.5\n66,374,10.0\n66,375,14.5\n66,376,14.0\n66,377,13.5\n66,378,13.0\n66,379,12.5\n66,380,12.0\n66,381,11.5\n66,382,11.0\n66,383,10.5\n66,384,10.0\n66,385,9.5\n66,386,9.0\n66,387,8.5\n66,388,8.0\n66,389,7.5\n66,390,7.0\n66,391,6.5\n66,392,7.0\n66,393,7.5\n66,394,8.0\n66,395,8.5\n66,396,9.0\n66,397,9.5\n66,398,10.0\n66,399,10.5\n66,400,15.0\n66,401,14.5\n66,402,14.0\n66,403,13.5\n66,404,13.0\n66,405,12.5\n66,406,12.0\n66,407,11.5\n66,408,11.0\n66,409,10.5\n66,410,10.0\n66,411,9.5\n66,412,9.0\n66,413,8.5\n66,414,8.0\n66,415,7.5\n66,416,7.0\n66,417,7.5\n66,418,8.0\n66,419,8.5\n66,420,9.0\n66,421,9.5\n66,422,10.0\n66,423,10.5\n66,424,11.0\n66,425,15.5\n66,426,15.0\n66,427,14.5\n66,428,14.0\n66,429,13.5\n66,430,13.0\n66,431,12.5\n66,432,12.0\n66,433,11.5\n66,434,11.0\n66,435,10.5\n66,436,10.0\n66,437,9.5\n66,438,9.0\n66,439,8.5\n66,440,8.0\n66,441,7.5\n66,442,8.0\n66,443,8.5\n66,444,9.0\n66,445,9.5\n66,446,10.0\n66,447,10.5\n66,448,11.0\n66,449,11.5\n66,450,16.0\n66,451,15.5\n66,452,15.0\n66,453,14.5\n66,454,14.0\n66,455,13.5\n66,456,13.0\n66,457,12.5\n66,458,12.0\n66,459,11.5\n66,460,11.0\n66,461,10.5\n66,462,10.0\n66,463,9.5\n66,464,9.0\n66,465,8.5\n66,466,8.0\n66,467,8.5\n66,468,9.0\n66,469,9.5\n66,470,10.0\n66,471,10.5\n66,472,11.0\n66,473,11.5\n66,474,12.0\n66,475,16.5\n66,476,16.0\n66,477,15.5\n66,478,15.0\n66,479,14.5\n66,480,14.0\n66,481,13.5\n66,482,13.0\n66,483,12.5\n66,484,12.0\n66,485,11.5\n66,486,11.0\n66,487,10.5\n66,488,10.0\n66,489,9.5\n66,490,9.0\n66,491,8.5\n66,492,9.0\n66,493,9.5\n66,494,10.0\n66,495,10.5\n66,496,11.0\n66,497,11.5\n66,498,12.0\n66,499,12.5\n66,500,17.0\n66,501,16.5\n66,502,16.0\n66,503,15.5\n66,504,15.0\n66,505,14.5\n66,506,14.0\n66,507,13.5\n66,508,13.0\n66,509,12.5\n66,510,12.0\n66,511,11.5\n66,512,11.0\n66,513,10.5\n66,514,10.0\n66,515,9.5\n66,516,9.0\n66,517,9.5\n66,518,10.0\n66,519,10.5\n66,520,11.0\n66,521,11.5\n66,522,12.0\n66,523,12.5\n66,524,13.0\n66,525,17.5\n66,526,17.0\n66,527,16.5\n66,528,16.0\n66,529,15.5\n66,530,15.0\n66,531,14.5\n66,532,14.0\n66,533,13.5\n66,534,13.0\n66,535,12.5\n66,536,12.0\n66,537,11.5\n66,538,11.0\n66,539,10.5\n66,540,10.0\n66,541,9.5\n66,542,10.0\n66,543,10.5\n66,544,11.0\n66,545,11.5\n66,546,12.0\n66,547,12.5\n66,548,13.0\n66,549,13.5\n66,550,18.0\n66,551,17.5\n66,552,17.0\n66,553,16.5\n66,554,16.0\n66,555,15.5\n66,556,15.0\n66,557,14.5\n66,558,14.0\n66,559,13.5\n66,560,13.0\n66,561,12.5\n66,562,12.0\n66,563,11.5\n66,564,11.0\n66,565,10.5\n66,566,10.0\n66,567,10.5\n66,568,11.0\n66,569,11.5\n66,570,12.0\n66,571,12.5\n66,572,13.0\n66,573,13.5\n66,574,14.0\n66,575,18.5\n66,576,18.0\n66,577,17.5\n66,578,17.0\n66,579,16.5\n66,580,16.0\n66,581,15.5\n66,582,15.0\n66,583,14.5\n66,584,14.0\n66,585,13.5\n66,586,13.0\n66,587,12.5\n66,588,12.0\n66,589,11.5\n66,590,11.0\n66,591,10.5\n66,592,11.0\n66,593,11.5\n66,594,12.0\n66,595,12.5\n66,596,13.0\n66,597,13.5\n66,598,14.0\n66,599,14.5\n66,600,19.0\n66,601,18.5\n66,602,18.0\n66,603,17.5\n66,604,17.0\n66,605,16.5\n66,606,16.0\n66,607,15.5\n66,608,15.0\n66,609,14.5\n66,610,14.0\n66,611,13.5\n66,612,13.0\n66,613,12.5\n66,614,12.0\n66,615,11.5\n66,616,11.0\n66,617,11.5\n66,618,12.0\n66,619,12.5\n66,620,13.0\n66,621,13.5\n66,622,14.0\n66,623,14.5\n66,624,15.0\n67,0,9.5\n67,1,9.0\n67,2,8.5\n67,3,8.0\n67,4,7.5\n67,5,7.0\n67,6,6.5\n67,7,6.0\n67,8,5.5\n67,9,5.0\n67,10,4.5\n67,11,4.0\n67,12,3.5\n67,13,3.0\n67,14,2.5\n67,15,2.0\n67,16,1.5\n67,17,1.0\n67,18,1.5\n67,19,2.0\n67,20,2.5\n67,21,3.0\n67,22,3.5\n67,23,4.0\n67,24,4.5\n67,25,9.0\n67,26,8.5\n67,27,8.0\n67,28,7.5\n67,29,7.0\n67,30,6.5\n67,31,6.0\n67,32,5.5\n67,33,5.0\n67,34,4.5\n67,35,4.0\n67,36,3.5\n67,37,3.0\n67,38,2.5\n67,39,2.0\n67,40,1.5\n67,41,1.0\n67,42,0.5\n67,43,1.0\n67,44,1.5\n67,45,2.0\n67,46,2.5\n67,47,3.0\n67,48,3.5\n67,49,4.0\n67,50,8.5\n67,51,8.0\n67,52,7.5\n67,53,7.0\n67,54,6.5\n67,55,6.0\n67,56,5.5\n67,57,5.0\n67,58,4.5\n67,59,4.0\n67,60,3.5\n67,61,3.0\n67,62,2.5\n67,63,2.0\n67,64,1.5\n67,65,1.0\n67,66,0.5\n67,67,0\n67,68,0.5\n67,69,1.0\n67,70,1.5\n67,71,2.0\n67,72,2.5\n67,73,3.0\n67,74,3.5\n67,75,9.0\n67,76,8.5\n67,77,8.0\n67,78,7.5\n67,79,7.0\n67,80,6.5\n67,81,6.0\n67,82,5.5\n67,83,5.0\n67,84,4.5\n67,85,4.0\n67,86,3.5\n67,87,3.0\n67,88,2.5\n67,89,2.0\n67,90,1.5\n67,91,1.0\n67,92,0.5\n67,93,1.0\n67,94,1.5\n67,95,2.0\n67,96,2.5\n67,97,3.0\n67,98,3.5\n67,99,4.0\n67,100,9.5\n67,101,9.0\n67,102,8.5\n67,103,8.0\n67,104,7.5\n67,105,7.0\n67,106,6.5\n67,107,6.0\n67,108,5.5\n67,109,5.0\n67,110,4.5\n67,111,4.0\n67,112,3.5\n67,113,3.0\n67,114,2.5\n67,115,2.0\n67,116,1.5\n67,117,1.0\n67,118,1.5\n67,119,2.0\n67,120,2.5\n67,121,3.0\n67,122,3.5\n67,123,4.0\n67,124,4.5\n67,125,10.0\n67,126,9.5\n67,127,9.0\n67,128,8.5\n67,129,8.0\n67,130,7.5\n67,131,7.0\n67,132,6.5\n67,133,6.0\n67,134,5.5\n67,135,5.0\n67,136,4.5\n67,137,4.0\n67,138,3.5\n67,139,3.0\n67,140,2.5\n67,141,2.0\n67,142,1.5\n67,143,2.0\n67,144,2.5\n67,145,3.0\n67,146,3.5\n67,147,4.0\n67,148,4.5\n67,149,5.0\n67,150,10.5\n67,151,10.0\n67,152,9.5\n67,153,9.0\n67,154,8.5\n67,155,8.0\n67,156,7.5\n67,157,7.0\n67,158,6.5\n67,159,6.0\n67,160,5.5\n67,161,5.0\n67,162,4.5\n67,163,4.0\n67,164,3.5\n67,165,3.0\n67,166,2.5\n67,167,2.0\n67,168,2.5\n67,169,3.0\n67,170,3.5\n67,171,4.0\n67,172,4.5\n67,173,5.0\n67,174,5.5\n67,175,11.0\n67,176,10.5\n67,177,10.0\n67,178,9.5\n67,179,9.0\n67,180,8.5\n67,181,8.0\n67,182,7.5\n67,183,7.0\n67,184,6.5\n67,185,6.0\n67,186,5.5\n67,187,5.0\n67,188,4.5\n67,189,4.0\n67,190,3.5\n67,191,3.0\n67,192,2.5\n67,193,3.0\n67,194,3.5\n67,195,4.0\n67,196,4.5\n67,197,5.0\n67,198,5.5\n67,199,6.0\n67,200,11.5\n67,201,11.0\n67,202,10.5\n67,203,10.0\n67,204,9.5\n67,205,9.0\n67,206,8.5\n67,207,8.0\n67,208,7.5\n67,209,7.0\n67,210,6.5\n67,211,6.0\n67,212,5.5\n67,213,5.0\n67,214,4.5\n67,215,4.0\n67,216,3.5\n67,217,3.0\n67,218,3.5\n67,219,4.0\n67,220,4.5\n67,221,5.0\n67,222,5.5\n67,223,6.0\n67,224,6.5\n67,225,12.0\n67,226,11.5\n67,227,11.0\n67,228,10.5\n67,229,10.0\n67,230,9.5\n67,231,9.0\n67,232,8.5\n67,233,8.0\n67,234,7.5\n67,235,7.0\n67,236,6.5\n67,237,6.0\n67,238,5.5\n67,239,5.0\n67,240,4.5\n67,241,4.0\n67,242,3.5\n67,243,4.0\n67,244,4.5\n67,245,5.0\n67,246,5.5\n67,247,6.0\n67,248,6.5\n67,249,7.0\n67,250,12.5\n67,251,12.0\n67,252,11.5\n67,253,11.0\n67,254,10.5\n67,255,10.0\n67,256,9.5\n67,257,9.0\n67,258,8.5\n67,259,8.0\n67,260,7.5\n67,261,7.0\n67,262,6.5\n67,263,6.0\n67,264,5.5\n67,265,5.0\n67,266,4.5\n67,267,4.0\n67,268,4.5\n67,269,5.0\n67,270,5.5\n67,271,6.0\n67,272,6.5\n67,273,7.0\n67,274,7.5\n67,275,13.0\n67,276,12.5\n67,277,12.0\n67,278,11.5\n67,279,11.0\n67,280,10.5\n67,281,10.0\n67,282,9.5\n67,283,9.0\n67,284,8.5\n67,285,8.0\n67,286,7.5\n67,287,7.0\n67,288,6.5\n67,289,6.0\n67,290,5.5\n67,291,5.0\n67,292,4.5\n67,293,5.0\n67,294,5.5\n67,295,6.0\n67,296,6.5\n67,297,7.0\n67,298,7.5\n67,299,8.0\n67,300,13.5\n67,301,13.0\n67,302,12.5\n67,303,12.0\n67,304,11.5\n67,305,11.0\n67,306,10.5\n67,307,10.0\n67,308,9.5\n67,309,9.0\n67,310,8.5\n67,311,8.0\n67,312,7.5\n67,313,7.0\n67,314,6.5\n67,315,6.0\n67,316,5.5\n67,317,5.0\n67,318,5.5\n67,319,6.0\n67,320,6.5\n67,321,7.0\n67,322,7.5\n67,323,8.0\n67,324,8.5\n67,325,14.0\n67,326,13.5\n67,327,13.0\n67,328,12.5\n67,329,12.0\n67,330,11.5\n67,331,11.0\n67,332,10.5\n67,333,10.0\n67,334,9.5\n67,335,9.0\n67,336,8.5\n67,337,8.0\n67,338,7.5\n67,339,7.0\n67,340,6.5\n67,341,6.0\n67,342,5.5\n67,343,6.0\n67,344,6.5\n67,345,7.0\n67,346,7.5\n67,347,8.0\n67,348,8.5\n67,349,9.0\n67,350,14.5\n67,351,14.0\n67,352,13.5\n67,353,13.0\n67,354,12.5\n67,355,12.0\n67,356,11.5\n67,357,11.0\n67,358,10.5\n67,359,10.0\n67,360,9.5\n67,361,9.0\n67,362,8.5\n67,363,8.0\n67,364,7.5\n67,365,7.0\n67,366,6.5\n67,367,6.0\n67,368,6.5\n67,369,7.0\n67,370,7.5\n67,371,8.0\n67,372,8.5\n67,373,9.0\n67,374,9.5\n67,375,15.0\n67,376,14.5\n67,377,14.0\n67,378,13.5\n67,379,13.0\n67,380,12.5\n67,381,12.0\n67,382,11.5\n67,383,11.0\n67,384,10.5\n67,385,10.0\n67,386,9.5\n67,387,9.0\n67,388,8.5\n67,389,8.0\n67,390,7.5\n67,391,7.0\n67,392,6.5\n67,393,7.0\n67,394,7.5\n67,395,8.0\n67,396,8.5\n67,397,9.0\n67,398,9.5\n67,399,10.0\n67,400,15.5\n67,401,15.0\n67,402,14.5\n67,403,14.0\n67,404,13.5\n67,405,13.0\n67,406,12.5\n67,407,12.0\n67,408,11.5\n67,409,11.0\n67,410,10.5\n67,411,10.0\n67,412,9.5\n67,413,9.0\n67,414,8.5\n67,415,8.0\n67,416,7.5\n67,417,7.0\n67,418,7.5\n67,419,8.0\n67,420,8.5\n67,421,9.0\n67,422,9.5\n67,423,10.0\n67,424,10.5\n67,425,16.0\n67,426,15.5\n67,427,15.0\n67,428,14.5\n67,429,14.0\n67,430,13.5\n67,431,13.0\n67,432,12.5\n67,433,12.0\n67,434,11.5\n67,435,11.0\n67,436,10.5\n67,437,10.0\n67,438,9.5\n67,439,9.0\n67,440,8.5\n67,441,8.0\n67,442,7.5\n67,443,8.0\n67,444,8.5\n67,445,9.0\n67,446,9.5\n67,447,10.0\n67,448,10.5\n67,449,11.0\n67,450,16.5\n67,451,16.0\n67,452,15.5\n67,453,15.0\n67,454,14.5\n67,455,14.0\n67,456,13.5\n67,457,13.0\n67,458,12.5\n67,459,12.0\n67,460,11.5\n67,461,11.0\n67,462,10.5\n67,463,10.0\n67,464,9.5\n67,465,9.0\n67,466,8.5\n67,467,8.0\n67,468,8.5\n67,469,9.0\n67,470,9.5\n67,471,10.0\n67,472,10.5\n67,473,11.0\n67,474,11.5\n67,475,17.0\n67,476,16.5\n67,477,16.0\n67,478,15.5\n67,479,15.0\n67,480,14.5\n67,481,14.0\n67,482,13.5\n67,483,13.0\n67,484,12.5\n67,485,12.0\n67,486,11.5\n67,487,11.0\n67,488,10.5\n67,489,10.0\n67,490,9.5\n67,491,9.0\n67,492,8.5\n67,493,9.0\n67,494,9.5\n67,495,10.0\n67,496,10.5\n67,497,11.0\n67,498,11.5\n67,499,12.0\n67,500,17.5\n67,501,17.0\n67,502,16.5\n67,503,16.0\n67,504,15.5\n67,505,15.0\n67,506,14.5\n67,507,14.0\n67,508,13.5\n67,509,13.0\n67,510,12.5\n67,511,12.0\n67,512,11.5\n67,513,11.0\n67,514,10.5\n67,515,10.0\n67,516,9.5\n67,517,9.0\n67,518,9.5\n67,519,10.0\n67,520,10.5\n67,521,11.0\n67,522,11.5\n67,523,12.0\n67,524,12.5\n67,525,18.0\n67,526,17.5\n67,527,17.0\n67,528,16.5\n67,529,16.0\n67,530,15.5\n67,531,15.0\n67,532,14.5\n67,533,14.0\n67,534,13.5\n67,535,13.0\n67,536,12.5\n67,537,12.0\n67,538,11.5\n67,539,11.0\n67,540,10.5\n67,541,10.0\n67,542,9.5\n67,543,10.0\n67,544,10.5\n67,545,11.0\n67,546,11.5\n67,547,12.0\n67,548,12.5\n67,549,13.0\n67,550,18.5\n67,551,18.0\n67,552,17.5\n67,553,17.0\n67,554,16.5\n67,555,16.0\n67,556,15.5\n67,557,15.0\n67,558,14.5\n67,559,14.0\n67,560,13.5\n67,561,13.0\n67,562,12.5\n67,563,12.0\n67,564,11.5\n67,565,11.0\n67,566,10.5\n67,567,10.0\n67,568,10.5\n67,569,11.0\n67,570,11.5\n67,571,12.0\n67,572,12.5\n67,573,13.0\n67,574,13.5\n67,575,19.0\n67,576,18.5\n67,577,18.0\n67,578,17.5\n67,579,17.0\n67,580,16.5\n67,581,16.0\n67,582,15.5\n67,583,15.0\n67,584,14.5\n67,585,14.0\n67,586,13.5\n67,587,13.0\n67,588,12.5\n67,589,12.0\n67,590,11.5\n67,591,11.0\n67,592,10.5\n67,593,11.0\n67,594,11.5\n67,595,12.0\n67,596,12.5\n67,597,13.0\n67,598,13.5\n67,599,14.0\n67,600,19.5\n67,601,19.0\n67,602,18.5\n67,603,18.0\n67,604,17.5\n67,605,17.0\n67,606,16.5\n67,607,16.0\n67,608,15.5\n67,609,15.0\n67,610,14.5\n67,611,14.0\n67,612,13.5\n67,613,13.0\n67,614,12.5\n67,615,12.0\n67,616,11.5\n67,617,11.0\n67,618,11.5\n67,619,12.0\n67,620,12.5\n67,621,13.0\n67,622,13.5\n67,623,14.0\n67,624,14.5\n68,0,10.0\n68,1,9.5\n68,2,9.0\n68,3,8.5\n68,4,8.0\n68,5,7.5\n68,6,7.0\n68,7,6.5\n68,8,6.0\n68,9,5.5\n68,10,5.0\n68,11,4.5\n68,12,4.0\n68,13,3.5\n68,14,3.0\n68,15,2.5\n68,16,2.0\n68,17,1.5\n68,18,1.0\n68,19,1.5\n68,20,2.0\n68,21,2.5\n68,22,3.0\n68,23,3.5\n68,24,4.0\n68,25,9.5\n68,26,9.0\n68,27,8.5\n68,28,8.0\n68,29,7.5\n68,30,7.0\n68,31,6.5\n68,32,6.0\n68,33,5.5\n68,34,5.0\n68,35,4.5\n68,36,4.0\n68,37,3.5\n68,38,3.0\n68,39,2.5\n68,40,2.0\n68,41,1.5\n68,42,1.0\n68,43,0.5\n68,44,1.0\n68,45,1.5\n68,46,2.0\n68,47,2.5\n68,48,3.0\n68,49,3.5\n68,50,9.0\n68,51,8.5\n68,52,8.0\n68,53,7.5\n68,54,7.0\n68,55,6.5\n68,56,6.0\n68,57,5.5\n68,58,5.0\n68,59,4.5\n68,60,4.0\n68,61,3.5\n68,62,3.0\n68,63,2.5\n68,64,2.0\n68,65,1.5\n68,66,1.0\n68,67,0.5\n68,68,0\n68,69,0.5\n68,70,1.0\n68,71,1.5\n68,72,2.0\n68,73,2.5\n68,74,3.0\n68,75,9.5\n68,76,9.0\n68,77,8.5\n68,78,8.0\n68,79,7.5\n68,80,7.0\n68,81,6.5\n68,82,6.0\n68,83,5.5\n68,84,5.0\n68,85,4.5\n68,86,4.0\n68,87,3.5\n68,88,3.0\n68,89,2.5\n68,90,2.0\n68,91,1.5\n68,92,1.0\n68,93,0.5\n68,94,1.0\n68,95,1.5\n68,96,2.0\n68,97,2.5\n68,98,3.0\n68,99,3.5\n68,100,10.0\n68,101,9.5\n68,102,9.0\n68,103,8.5\n68,104,8.0\n68,105,7.5\n68,106,7.0\n68,107,6.5\n68,108,6.0\n68,109,5.5\n68,110,5.0\n68,111,4.5\n68,112,4.0\n68,113,3.5\n68,114,3.0\n68,115,2.5\n68,116,2.0\n68,117,1.5\n68,118,1.0\n68,119,1.5\n68,120,2.0\n68,121,2.5\n68,122,3.0\n68,123,3.5\n68,124,4.0\n68,125,10.5\n68,126,10.0\n68,127,9.5\n68,128,9.0\n68,129,8.5\n68,130,8.0\n68,131,7.5\n68,132,7.0\n68,133,6.5\n68,134,6.0\n68,135,5.5\n68,136,5.0\n68,137,4.5\n68,138,4.0\n68,139,3.5\n68,140,3.0\n68,141,2.5\n68,142,2.0\n68,143,1.5\n68,144,2.0\n68,145,2.5\n68,146,3.0\n68,147,3.5\n68,148,4.0\n68,149,4.5\n68,150,11.0\n68,151,10.5\n68,152,10.0\n68,153,9.5\n68,154,9.0\n68,155,8.5\n68,156,8.0\n68,157,7.5\n68,158,7.0\n68,159,6.5\n68,160,6.0\n68,161,5.5\n68,162,5.0\n68,163,4.5\n68,164,4.0\n68,165,3.5\n68,166,3.0\n68,167,2.5\n68,168,2.0\n68,169,2.5\n68,170,3.0\n68,171,3.5\n68,172,4.0\n68,173,4.5\n68,174,5.0\n68,175,11.5\n68,176,11.0\n68,177,10.5\n68,178,10.0\n68,179,9.5\n68,180,9.0\n68,181,8.5\n68,182,8.0\n68,183,7.5\n68,184,7.0\n68,185,6.5\n68,186,6.0\n68,187,5.5\n68,188,5.0\n68,189,4.5\n68,190,4.0\n68,191,3.5\n68,192,3.0\n68,193,2.5\n68,194,3.0\n68,195,3.5\n68,196,4.0\n68,197,4.5\n68,198,5.0\n68,199,5.5\n68,200,12.0\n68,201,11.5\n68,202,11.0\n68,203,10.5\n68,204,10.0\n68,205,9.5\n68,206,9.0\n68,207,8.5\n68,208,8.0\n68,209,7.5\n68,210,7.0\n68,211,6.5\n68,212,6.0\n68,213,5.5\n68,214,5.0\n68,215,4.5\n68,216,4.0\n68,217,3.5\n68,218,3.0\n68,219,3.5\n68,220,4.0\n68,221,4.5\n68,222,5.0\n68,223,5.5\n68,224,6.0\n68,225,12.5\n68,226,12.0\n68,227,11.5\n68,228,11.0\n68,229,10.5\n68,230,10.0\n68,231,9.5\n68,232,9.0\n68,233,8.5\n68,234,8.0\n68,235,7.5\n68,236,7.0\n68,237,6.5\n68,238,6.0\n68,239,5.5\n68,240,5.0\n68,241,4.5\n68,242,4.0\n68,243,3.5\n68,244,4.0\n68,245,4.5\n68,246,5.0\n68,247,5.5\n68,248,6.0\n68,249,6.5\n68,250,13.0\n68,251,12.5\n68,252,12.0\n68,253,11.5\n68,254,11.0\n68,255,10.5\n68,256,10.0\n68,257,9.5\n68,258,9.0\n68,259,8.5\n68,260,8.0\n68,261,7.5\n68,262,7.0\n68,263,6.5\n68,264,6.0\n68,265,5.5\n68,266,5.0\n68,267,4.5\n68,268,4.0\n68,269,4.5\n68,270,5.0\n68,271,5.5\n68,272,6.0\n68,273,6.5\n68,274,7.0\n68,275,13.5\n68,276,13.0\n68,277,12.5\n68,278,12.0\n68,279,11.5\n68,280,11.0\n68,281,10.5\n68,282,10.0\n68,283,9.5\n68,284,9.0\n68,285,8.5\n68,286,8.0\n68,287,7.5\n68,288,7.0\n68,289,6.5\n68,290,6.0\n68,291,5.5\n68,292,5.0\n68,293,4.5\n68,294,5.0\n68,295,5.5\n68,296,6.0\n68,297,6.5\n68,298,7.0\n68,299,7.5\n68,300,14.0\n68,301,13.5\n68,302,13.0\n68,303,12.5\n68,304,12.0\n68,305,11.5\n68,306,11.0\n68,307,10.5\n68,308,10.0\n68,309,9.5\n68,310,9.0\n68,311,8.5\n68,312,8.0\n68,313,7.5\n68,314,7.0\n68,315,6.5\n68,316,6.0\n68,317,5.5\n68,318,5.0\n68,319,5.5\n68,320,6.0\n68,321,6.5\n68,322,7.0\n68,323,7.5\n68,324,8.0\n68,325,14.5\n68,326,14.0\n68,327,13.5\n68,328,13.0\n68,329,12.5\n68,330,12.0\n68,331,11.5\n68,332,11.0\n68,333,10.5\n68,334,10.0\n68,335,9.5\n68,336,9.0\n68,337,8.5\n68,338,8.0\n68,339,7.5\n68,340,7.0\n68,341,6.5\n68,342,6.0\n68,343,5.5\n68,344,6.0\n68,345,6.5\n68,346,7.0\n68,347,7.5\n68,348,8.0\n68,349,8.5\n68,350,15.0\n68,351,14.5\n68,352,14.0\n68,353,13.5\n68,354,13.0\n68,355,12.5\n68,356,12.0\n68,357,11.5\n68,358,11.0\n68,359,10.5\n68,360,10.0\n68,361,9.5\n68,362,9.0\n68,363,8.5\n68,364,8.0\n68,365,7.5\n68,366,7.0\n68,367,6.5\n68,368,6.0\n68,369,6.5\n68,370,7.0\n68,371,7.5\n68,372,8.0\n68,373,8.5\n68,374,9.0\n68,375,15.5\n68,376,15.0\n68,377,14.5\n68,378,14.0\n68,379,13.5\n68,380,13.0\n68,381,12.5\n68,382,12.0\n68,383,11.5\n68,384,11.0\n68,385,10.5\n68,386,10.0\n68,387,9.5\n68,388,9.0\n68,389,8.5\n68,390,8.0\n68,391,7.5\n68,392,7.0\n68,393,6.5\n68,394,7.0\n68,395,7.5\n68,396,8.0\n68,397,8.5\n68,398,9.0\n68,399,9.5\n68,400,16.0\n68,401,15.5\n68,402,15.0\n68,403,14.5\n68,404,14.0\n68,405,13.5\n68,406,13.0\n68,407,12.5\n68,408,12.0\n68,409,11.5\n68,410,11.0\n68,411,10.5\n68,412,10.0\n68,413,9.5\n68,414,9.0\n68,415,8.5\n68,416,8.0\n68,417,7.5\n68,418,7.0\n68,419,7.5\n68,420,8.0\n68,421,8.5\n68,422,9.0\n68,423,9.5\n68,424,10.0\n68,425,16.5\n68,426,16.0\n68,427,15.5\n68,428,15.0\n68,429,14.5\n68,430,14.0\n68,431,13.5\n68,432,13.0\n68,433,12.5\n68,434,12.0\n68,435,11.5\n68,436,11.0\n68,437,10.5\n68,438,10.0\n68,439,9.5\n68,440,9.0\n68,441,8.5\n68,442,8.0\n68,443,7.5\n68,444,8.0\n68,445,8.5\n68,446,9.0\n68,447,9.5\n68,448,10.0\n68,449,10.5\n68,450,17.0\n68,451,16.5\n68,452,16.0\n68,453,15.5\n68,454,15.0\n68,455,14.5\n68,456,14.0\n68,457,13.5\n68,458,13.0\n68,459,12.5\n68,460,12.0\n68,461,11.5\n68,462,11.0\n68,463,10.5\n68,464,10.0\n68,465,9.5\n68,466,9.0\n68,467,8.5\n68,468,8.0\n68,469,8.5\n68,470,9.0\n68,471,9.5\n68,472,10.0\n68,473,10.5\n68,474,11.0\n68,475,17.5\n68,476,17.0\n68,477,16.5\n68,478,16.0\n68,479,15.5\n68,480,15.0\n68,481,14.5\n68,482,14.0\n68,483,13.5\n68,484,13.0\n68,485,12.5\n68,486,12.0\n68,487,11.5\n68,488,11.0\n68,489,10.5\n68,490,10.0\n68,491,9.5\n68,492,9.0\n68,493,8.5\n68,494,9.0\n68,495,9.5\n68,496,10.0\n68,497,10.5\n68,498,11.0\n68,499,11.5\n68,500,18.0\n68,501,17.5\n68,502,17.0\n68,503,16.5\n68,504,16.0\n68,505,15.5\n68,506,15.0\n68,507,14.5\n68,508,14.0\n68,509,13.5\n68,510,13.0\n68,511,12.5\n68,512,12.0\n68,513,11.5\n68,514,11.0\n68,515,10.5\n68,516,10.0\n68,517,9.5\n68,518,9.0\n68,519,9.5\n68,520,10.0\n68,521,10.5\n68,522,11.0\n68,523,11.5\n68,524,12.0\n68,525,18.5\n68,526,18.0\n68,527,17.5\n68,528,17.0\n68,529,16.5\n68,530,16.0\n68,531,15.5\n68,532,15.0\n68,533,14.5\n68,534,14.0\n68,535,13.5\n68,536,13.0\n68,537,12.5\n68,538,12.0\n68,539,11.5\n68,540,11.0\n68,541,10.5\n68,542,10.0\n68,543,9.5\n68,544,10.0\n68,545,10.5\n68,546,11.0\n68,547,11.5\n68,548,12.0\n68,549,12.5\n68,550,19.0\n68,551,18.5\n68,552,18.0\n68,553,17.5\n68,554,17.0\n68,555,16.5\n68,556,16.0\n68,557,15.5\n68,558,15.0\n68,559,14.5\n68,560,14.0\n68,561,13.5\n68,562,13.0\n68,563,12.5\n68,564,12.0\n68,565,11.5\n68,566,11.0\n68,567,10.5\n68,568,10.0\n68,569,10.5\n68,570,11.0\n68,571,11.5\n68,572,12.0\n68,573,12.5\n68,574,13.0\n68,575,19.5\n68,576,19.0\n68,577,18.5\n68,578,18.0\n68,579,17.5\n68,580,17.0\n68,581,16.5\n68,582,16.0\n68,583,15.5\n68,584,15.0\n68,585,14.5\n68,586,14.0\n68,587,13.5\n68,588,13.0\n68,589,12.5\n68,590,12.0\n68,591,11.5\n68,592,11.0\n68,593,10.5\n68,594,11.0\n68,595,11.5\n68,596,12.0\n68,597,12.5\n68,598,13.0\n68,599,13.5\n68,600,20.0\n68,601,19.5\n68,602,19.0\n68,603,18.5\n68,604,18.0\n68,605,17.5\n68,606,17.0\n68,607,16.5\n68,608,16.0\n68,609,15.5\n68,610,15.0\n68,611,14.5\n68,612,14.0\n68,613,13.5\n68,614,13.0\n68,615,12.5\n68,616,12.0\n68,617,11.5\n68,618,11.0\n68,619,11.5\n68,620,12.0\n68,621,12.5\n68,622,13.0\n68,623,13.5\n68,624,14.0\n69,0,10.5\n69,1,10.0\n69,2,9.5\n69,3,9.0\n69,4,8.5\n69,5,8.0\n69,6,7.5\n69,7,7.0\n69,8,6.5\n69,9,6.0\n69,10,5.5\n69,11,5.0\n69,12,4.5\n69,13,4.0\n69,14,3.5\n69,15,3.0\n69,16,2.5\n69,17,2.0\n69,18,1.5\n69,19,1.0\n69,20,1.5\n69,21,2.0\n69,22,2.5\n69,23,3.0\n69,24,3.5\n69,25,10.0\n69,26,9.5\n69,27,9.0\n69,28,8.5\n69,29,8.0\n69,30,7.5\n69,31,7.0\n69,32,6.5\n69,33,6.0\n69,34,5.5\n69,35,5.0\n69,36,4.5\n69,37,4.0\n69,38,3.5\n69,39,3.0\n69,40,2.5\n69,41,2.0\n69,42,1.5\n69,43,1.0\n69,44,0.5\n69,45,1.0\n69,46,1.5\n69,47,2.0\n69,48,2.5\n69,49,3.0\n69,50,9.5\n69,51,9.0\n69,52,8.5\n69,53,8.0\n69,54,7.5\n69,55,7.0\n69,56,6.5\n69,57,6.0\n69,58,5.5\n69,59,5.0\n69,60,4.5\n69,61,4.0\n69,62,3.5\n69,63,3.0\n69,64,2.5\n69,65,2.0\n69,66,1.5\n69,67,1.0\n69,68,0.5\n69,69,0\n69,70,0.5\n69,71,1.0\n69,72,1.5\n69,73,2.0\n69,74,2.5\n69,75,10.0\n69,76,9.5\n69,77,9.0\n69,78,8.5\n69,79,8.0\n69,80,7.5\n69,81,7.0\n69,82,6.5\n69,83,6.0\n69,84,5.5\n69,85,5.0\n69,86,4.5\n69,87,4.0\n69,88,3.5\n69,89,3.0\n69,90,2.5\n69,91,2.0\n69,92,1.5\n69,93,1.0\n69,94,0.5\n69,95,1.0\n69,96,1.5\n69,97,2.0\n69,98,2.5\n69,99,3.0\n69,100,10.5\n69,101,10.0\n69,102,9.5\n69,103,9.0\n69,104,8.5\n69,105,8.0\n69,106,7.5\n69,107,7.0\n69,108,6.5\n69,109,6.0\n69,110,5.5\n69,111,5.0\n69,112,4.5\n69,113,4.0\n69,114,3.5\n69,115,3.0\n69,116,2.5\n69,117,2.0\n69,118,1.5\n69,119,1.0\n69,120,1.5\n69,121,2.0\n69,122,2.5\n69,123,3.0\n69,124,3.5\n69,125,11.0\n69,126,10.5\n69,127,10.0\n69,128,9.5\n69,129,9.0\n69,130,8.5\n69,131,8.0\n69,132,7.5\n69,133,7.0\n69,134,6.5\n69,135,6.0\n69,136,5.5\n69,137,5.0\n69,138,4.5\n69,139,4.0\n69,140,3.5\n69,141,3.0\n69,142,2.5\n69,143,2.0\n69,144,1.5\n69,145,2.0\n69,146,2.5\n69,147,3.0\n69,148,3.5\n69,149,4.0\n69,150,11.5\n69,151,11.0\n69,152,10.5\n69,153,10.0\n69,154,9.5\n69,155,9.0\n69,156,8.5\n69,157,8.0\n69,158,7.5\n69,159,7.0\n69,160,6.5\n69,161,6.0\n69,162,5.5\n69,163,5.0\n69,164,4.5\n69,165,4.0\n69,166,3.5\n69,167,3.0\n69,168,2.5\n69,169,2.0\n69,170,2.5\n69,171,3.0\n69,172,3.5\n69,173,4.0\n69,174,4.5\n69,175,12.0\n69,176,11.5\n69,177,11.0\n69,178,10.5\n69,179,10.0\n69,180,9.5\n69,181,9.0\n69,182,8.5\n69,183,8.0\n69,184,7.5\n69,185,7.0\n69,186,6.5\n69,187,6.0\n69,188,5.5\n69,189,5.0\n69,190,4.5\n69,191,4.0\n69,192,3.5\n69,193,3.0\n69,194,2.5\n69,195,3.0\n69,196,3.5\n69,197,4.0\n69,198,4.5\n69,199,5.0\n69,200,12.5\n69,201,12.0\n69,202,11.5\n69,203,11.0\n69,204,10.5\n69,205,10.0\n69,206,9.5\n69,207,9.0\n69,208,8.5\n69,209,8.0\n69,210,7.5\n69,211,7.0\n69,212,6.5\n69,213,6.0\n69,214,5.5\n69,215,5.0\n69,216,4.5\n69,217,4.0\n69,218,3.5\n69,219,3.0\n69,220,3.5\n69,221,4.0\n69,222,4.5\n69,223,5.0\n69,224,5.5\n69,225,13.0\n69,226,12.5\n69,227,12.0\n69,228,11.5\n69,229,11.0\n69,230,10.5\n69,231,10.0\n69,232,9.5\n69,233,9.0\n69,234,8.5\n69,235,8.0\n69,236,7.5\n69,237,7.0\n69,238,6.5\n69,239,6.0\n69,240,5.5\n69,241,5.0\n69,242,4.5\n69,243,4.0\n69,244,3.5\n69,245,4.0\n69,246,4.5\n69,247,5.0\n69,248,5.5\n69,249,6.0\n69,250,13.5\n69,251,13.0\n69,252,12.5\n69,253,12.0\n69,254,11.5\n69,255,11.0\n69,256,10.5\n69,257,10.0\n69,258,9.5\n69,259,9.0\n69,260,8.5\n69,261,8.0\n69,262,7.5\n69,263,7.0\n69,264,6.5\n69,265,6.0\n69,266,5.5\n69,267,5.0\n69,268,4.5\n69,269,4.0\n69,270,4.5\n69,271,5.0\n69,272,5.5\n69,273,6.0\n69,274,6.5\n69,275,14.0\n69,276,13.5\n69,277,13.0\n69,278,12.5\n69,279,12.0\n69,280,11.5\n69,281,11.0\n69,282,10.5\n69,283,10.0\n69,284,9.5\n69,285,9.0\n69,286,8.5\n69,287,8.0\n69,288,7.5\n69,289,7.0\n69,290,6.5\n69,291,6.0\n69,292,5.5\n69,293,5.0\n69,294,4.5\n69,295,5.0\n69,296,5.5\n69,297,6.0\n69,298,6.5\n69,299,7.0\n69,300,14.5\n69,301,14.0\n69,302,13.5\n69,303,13.0\n69,304,12.5\n69,305,12.0\n69,306,11.5\n69,307,11.0\n69,308,10.5\n69,309,10.0\n69,310,9.5\n69,311,9.0\n69,312,8.5\n69,313,8.0\n69,314,7.5\n69,315,7.0\n69,316,6.5\n69,317,6.0\n69,318,5.5\n69,319,5.0\n69,320,5.5\n69,321,6.0\n69,322,6.5\n69,323,7.0\n69,324,7.5\n69,325,15.0\n69,326,14.5\n69,327,14.0\n69,328,13.5\n69,329,13.0\n69,330,12.5\n69,331,12.0\n69,332,11.5\n69,333,11.0\n69,334,10.5\n69,335,10.0\n69,336,9.5\n69,337,9.0\n69,338,8.5\n69,339,8.0\n69,340,7.5\n69,341,7.0\n69,342,6.5\n69,343,6.0\n69,344,5.5\n69,345,6.0\n69,346,6.5\n69,347,7.0\n69,348,7.5\n69,349,8.0\n69,350,15.5\n69,351,15.0\n69,352,14.5\n69,353,14.0\n69,354,13.5\n69,355,13.0\n69,356,12.5\n69,357,12.0\n69,358,11.5\n69,359,11.0\n69,360,10.5\n69,361,10.0\n69,362,9.5\n69,363,9.0\n69,364,8.5\n69,365,8.0\n69,366,7.5\n69,367,7.0\n69,368,6.5\n69,369,6.0\n69,370,6.5\n69,371,7.0\n69,372,7.5\n69,373,8.0\n69,374,8.5\n69,375,16.0\n69,376,15.5\n69,377,15.0\n69,378,14.5\n69,379,14.0\n69,380,13.5\n69,381,13.0\n69,382,12.5\n69,383,12.0\n69,384,11.5\n69,385,11.0\n69,386,10.5\n69,387,10.0\n69,388,9.5\n69,389,9.0\n69,390,8.5\n69,391,8.0\n69,392,7.5\n69,393,7.0\n69,394,6.5\n69,395,7.0\n69,396,7.5\n69,397,8.0\n69,398,8.5\n69,399,9.0\n69,400,16.5\n69,401,16.0\n69,402,15.5\n69,403,15.0\n69,404,14.5\n69,405,14.0\n69,406,13.5\n69,407,13.0\n69,408,12.5\n69,409,12.0\n69,410,11.5\n69,411,11.0\n69,412,10.5\n69,413,10.0\n69,414,9.5\n69,415,9.0\n69,416,8.5\n69,417,8.0\n69,418,7.5\n69,419,7.0\n69,420,7.5\n69,421,8.0\n69,422,8.5\n69,423,9.0\n69,424,9.5\n69,425,17.0\n69,426,16.5\n69,427,16.0\n69,428,15.5\n69,429,15.0\n69,430,14.5\n69,431,14.0\n69,432,13.5\n69,433,13.0\n69,434,12.5\n69,435,12.0\n69,436,11.5\n69,437,11.0\n69,438,10.5\n69,439,10.0\n69,440,9.5\n69,441,9.0\n69,442,8.5\n69,443,8.0\n69,444,7.5\n69,445,8.0\n69,446,8.5\n69,447,9.0\n69,448,9.5\n69,449,10.0\n69,450,17.5\n69,451,17.0\n69,452,16.5\n69,453,16.0\n69,454,15.5\n69,455,15.0\n69,456,14.5\n69,457,14.0\n69,458,13.5\n69,459,13.0\n69,460,12.5\n69,461,12.0\n69,462,11.5\n69,463,11.0\n69,464,10.5\n69,465,10.0\n69,466,9.5\n69,467,9.0\n69,468,8.5\n69,469,8.0\n69,470,8.5\n69,471,9.0\n69,472,9.5\n69,473,10.0\n69,474,10.5\n69,475,18.0\n69,476,17.5\n69,477,17.0\n69,478,16.5\n69,479,16.0\n69,480,15.5\n69,481,15.0\n69,482,14.5\n69,483,14.0\n69,484,13.5\n69,485,13.0\n69,486,12.5\n69,487,12.0\n69,488,11.5\n69,489,11.0\n69,490,10.5\n69,491,10.0\n69,492,9.5\n69,493,9.0\n69,494,8.5\n69,495,9.0\n69,496,9.5\n69,497,10.0\n69,498,10.5\n69,499,11.0\n69,500,18.5\n69,501,18.0\n69,502,17.5\n69,503,17.0\n69,504,16.5\n69,505,16.0\n69,506,15.5\n69,507,15.0\n69,508,14.5\n69,509,14.0\n69,510,13.5\n69,511,13.0\n69,512,12.5\n69,513,12.0\n69,514,11.5\n69,515,11.0\n69,516,10.5\n69,517,10.0\n69,518,9.5\n69,519,9.0\n69,520,9.5\n69,521,10.0\n69,522,10.5\n69,523,11.0\n69,524,11.5\n69,525,19.0\n69,526,18.5\n69,527,18.0\n69,528,17.5\n69,529,17.0\n69,530,16.5\n69,531,16.0\n69,532,15.5\n69,533,15.0\n69,534,14.5\n69,535,14.0\n69,536,13.5\n69,537,13.0\n69,538,12.5\n69,539,12.0\n69,540,11.5\n69,541,11.0\n69,542,10.5\n69,543,10.0\n69,544,9.5\n69,545,10.0\n69,546,10.5\n69,547,11.0\n69,548,11.5\n69,549,12.0\n69,550,19.5\n69,551,19.0\n69,552,18.5\n69,553,18.0\n69,554,17.5\n69,555,17.0\n69,556,16.5\n69,557,16.0\n69,558,15.5\n69,559,15.0\n69,560,14.5\n69,561,14.0\n69,562,13.5\n69,563,13.0\n69,564,12.5\n69,565,12.0\n69,566,11.5\n69,567,11.0\n69,568,10.5\n69,569,10.0\n69,570,10.5\n69,571,11.0\n69,572,11.5\n69,573,12.0\n69,574,12.5\n69,575,20.0\n69,576,19.5\n69,577,19.0\n69,578,18.5\n69,579,18.0\n69,580,17.5\n69,581,17.0\n69,582,16.5\n69,583,16.0\n69,584,15.5\n69,585,15.0\n69,586,14.5\n69,587,14.0\n69,588,13.5\n69,589,13.0\n69,590,12.5\n69,591,12.0\n69,592,11.5\n69,593,11.0\n69,594,10.5\n69,595,11.0\n69,596,11.5\n69,597,12.0\n69,598,12.5\n69,599,13.0\n69,600,20.5\n69,601,20.0\n69,602,19.5\n69,603,19.0\n69,604,18.5\n69,605,18.0\n69,606,17.5\n69,607,17.0\n69,608,16.5\n69,609,16.0\n69,610,15.5\n69,611,15.0\n69,612,14.5\n69,613,14.0\n69,614,13.5\n69,615,13.0\n69,616,12.5\n69,617,12.0\n69,618,11.5\n69,619,11.0\n69,620,11.5\n69,621,12.0\n69,622,12.5\n69,623,13.0\n69,624,13.5\n70,0,11.0\n70,1,10.5\n70,2,10.0\n70,3,9.5\n70,4,9.0\n70,5,8.5\n70,6,8.0\n70,7,7.5\n70,8,7.0\n70,9,6.5\n70,10,6.0\n70,11,5.5\n70,12,5.0\n70,13,4.5\n70,14,4.0\n70,15,3.5\n70,16,3.0\n70,17,2.5\n70,18,2.0\n70,19,1.5\n70,20,1.0\n70,21,1.5\n70,22,2.0\n70,23,2.5\n70,24,3.0\n70,25,10.5\n70,26,10.0\n70,27,9.5\n70,28,9.0\n70,29,8.5\n70,30,8.0\n70,31,7.5\n70,32,7.0\n70,33,6.5\n70,34,6.0\n70,35,5.5\n70,36,5.0\n70,37,4.5\n70,38,4.0\n70,39,3.5\n70,40,3.0\n70,41,2.5\n70,42,2.0\n70,43,1.5\n70,44,1.0\n70,45,0.5\n70,46,1.0\n70,47,1.5\n70,48,2.0\n70,49,2.5\n70,50,10.0\n70,51,9.5\n70,52,9.0\n70,53,8.5\n70,54,8.0\n70,55,7.5\n70,56,7.0\n70,57,6.5\n70,58,6.0\n70,59,5.5\n70,60,5.0\n70,61,4.5\n70,62,4.0\n70,63,3.5\n70,64,3.0\n70,65,2.5\n70,66,2.0\n70,67,1.5\n70,68,1.0\n70,69,0.5\n70,70,0\n70,71,0.5\n70,72,1.0\n70,73,1.5\n70,74,2.0\n70,75,10.5\n70,76,10.0\n70,77,9.5\n70,78,9.0\n70,79,8.5\n70,80,8.0\n70,81,7.5\n70,82,7.0\n70,83,6.5\n70,84,6.0\n70,85,5.5\n70,86,5.0\n70,87,4.5\n70,88,4.0\n70,89,3.5\n70,90,3.0\n70,91,2.5\n70,92,2.0\n70,93,1.5\n70,94,1.0\n70,95,0.5\n70,96,1.0\n70,97,1.5\n70,98,2.0\n70,99,2.5\n70,100,11.0\n70,101,10.5\n70,102,10.0\n70,103,9.5\n70,104,9.0\n70,105,8.5\n70,106,8.0\n70,107,7.5\n70,108,7.0\n70,109,6.5\n70,110,6.0\n70,111,5.5\n70,112,5.0\n70,113,4.5\n70,114,4.0\n70,115,3.5\n70,116,3.0\n70,117,2.5\n70,118,2.0\n70,119,1.5\n70,120,1.0\n70,121,1.5\n70,122,2.0\n70,123,2.5\n70,124,3.0\n70,125,11.5\n70,126,11.0\n70,127,10.5\n70,128,10.0\n70,129,9.5\n70,130,9.0\n70,131,8.5\n70,132,8.0\n70,133,7.5\n70,134,7.0\n70,135,6.5\n70,136,6.0\n70,137,5.5\n70,138,5.0\n70,139,4.5\n70,140,4.0\n70,141,3.5\n70,142,3.0\n70,143,2.5\n70,144,2.0\n70,145,1.5\n70,146,2.0\n70,147,2.5\n70,148,3.0\n70,149,3.5\n70,150,12.0\n70,151,11.5\n70,152,11.0\n70,153,10.5\n70,154,10.0\n70,155,9.5\n70,156,9.0\n70,157,8.5\n70,158,8.0\n70,159,7.5\n70,160,7.0\n70,161,6.5\n70,162,6.0\n70,163,5.5\n70,164,5.0\n70,165,4.5\n70,166,4.0\n70,167,3.5\n70,168,3.0\n70,169,2.5\n70,170,2.0\n70,171,2.5\n70,172,3.0\n70,173,3.5\n70,174,4.0\n70,175,12.5\n70,176,12.0\n70,177,11.5\n70,178,11.0\n70,179,10.5\n70,180,10.0\n70,181,9.5\n70,182,9.0\n70,183,8.5\n70,184,8.0\n70,185,7.5\n70,186,7.0\n70,187,6.5\n70,188,6.0\n70,189,5.5\n70,190,5.0\n70,191,4.5\n70,192,4.0\n70,193,3.5\n70,194,3.0\n70,195,2.5\n70,196,3.0\n70,197,3.5\n70,198,4.0\n70,199,4.5\n70,200,13.0\n70,201,12.5\n70,202,12.0\n70,203,11.5\n70,204,11.0\n70,205,10.5\n70,206,10.0\n70,207,9.5\n70,208,9.0\n70,209,8.5\n70,210,8.0\n70,211,7.5\n70,212,7.0\n70,213,6.5\n70,214,6.0\n70,215,5.5\n70,216,5.0\n70,217,4.5\n70,218,4.0\n70,219,3.5\n70,220,3.0\n70,221,3.5\n70,222,4.0\n70,223,4.5\n70,224,5.0\n70,225,13.5\n70,226,13.0\n70,227,12.5\n70,228,12.0\n70,229,11.5\n70,230,11.0\n70,231,10.5\n70,232,10.0\n70,233,9.5\n70,234,9.0\n70,235,8.5\n70,236,8.0\n70,237,7.5\n70,238,7.0\n70,239,6.5\n70,240,6.0\n70,241,5.5\n70,242,5.0\n70,243,4.5\n70,244,4.0\n70,245,3.5\n70,246,4.0\n70,247,4.5\n70,248,5.0\n70,249,5.5\n70,250,14.0\n70,251,13.5\n70,252,13.0\n70,253,12.5\n70,254,12.0\n70,255,11.5\n70,256,11.0\n70,257,10.5\n70,258,10.0\n70,259,9.5\n70,260,9.0\n70,261,8.5\n70,262,8.0\n70,263,7.5\n70,264,7.0\n70,265,6.5\n70,266,6.0\n70,267,5.5\n70,268,5.0\n70,269,4.5\n70,270,4.0\n70,271,4.5\n70,272,5.0\n70,273,5.5\n70,274,6.0\n70,275,14.5\n70,276,14.0\n70,277,13.5\n70,278,13.0\n70,279,12.5\n70,280,12.0\n70,281,11.5\n70,282,11.0\n70,283,10.5\n70,284,10.0\n70,285,9.5\n70,286,9.0\n70,287,8.5\n70,288,8.0\n70,289,7.5\n70,290,7.0\n70,291,6.5\n70,292,6.0\n70,293,5.5\n70,294,5.0\n70,295,4.5\n70,296,5.0\n70,297,5.5\n70,298,6.0\n70,299,6.5\n70,300,15.0\n70,301,14.5\n70,302,14.0\n70,303,13.5\n70,304,13.0\n70,305,12.5\n70,306,12.0\n70,307,11.5\n70,308,11.0\n70,309,10.5\n70,310,10.0\n70,311,9.5\n70,312,9.0\n70,313,8.5\n70,314,8.0\n70,315,7.5\n70,316,7.0\n70,317,6.5\n70,318,6.0\n70,319,5.5\n70,320,5.0\n70,321,5.5\n70,322,6.0\n70,323,6.5\n70,324,7.0\n70,325,15.5\n70,326,15.0\n70,327,14.5\n70,328,14.0\n70,329,13.5\n70,330,13.0\n70,331,12.5\n70,332,12.0\n70,333,11.5\n70,334,11.0\n70,335,10.5\n70,336,10.0\n70,337,9.5\n70,338,9.0\n70,339,8.5\n70,340,8.0\n70,341,7.5\n70,342,7.0\n70,343,6.5\n70,344,6.0\n70,345,5.5\n70,346,6.0\n70,347,6.5\n70,348,7.0\n70,349,7.5\n70,350,16.0\n70,351,15.5\n70,352,15.0\n70,353,14.5\n70,354,14.0\n70,355,13.5\n70,356,13.0\n70,357,12.5\n70,358,12.0\n70,359,11.5\n70,360,11.0\n70,361,10.5\n70,362,10.0\n70,363,9.5\n70,364,9.0\n70,365,8.5\n70,366,8.0\n70,367,7.5\n70,368,7.0\n70,369,6.5\n70,370,6.0\n70,371,6.5\n70,372,7.0\n70,373,7.5\n70,374,8.0\n70,375,16.5\n70,376,16.0\n70,377,15.5\n70,378,15.0\n70,379,14.5\n70,380,14.0\n70,381,13.5\n70,382,13.0\n70,383,12.5\n70,384,12.0\n70,385,11.5\n70,386,11.0\n70,387,10.5\n70,388,10.0\n70,389,9.5\n70,390,9.0\n70,391,8.5\n70,392,8.0\n70,393,7.5\n70,394,7.0\n70,395,6.5\n70,396,7.0\n70,397,7.5\n70,398,8.0\n70,399,8.5\n70,400,17.0\n70,401,16.5\n70,402,16.0\n70,403,15.5\n70,404,15.0\n70,405,14.5\n70,406,14.0\n70,407,13.5\n70,408,13.0\n70,409,12.5\n70,410,12.0\n70,411,11.5\n70,412,11.0\n70,413,10.5\n70,414,10.0\n70,415,9.5\n70,416,9.0\n70,417,8.5\n70,418,8.0\n70,419,7.5\n70,420,7.0\n70,421,7.5\n70,422,8.0\n70,423,8.5\n70,424,9.0\n70,425,17.5\n70,426,17.0\n70,427,16.5\n70,428,16.0\n70,429,15.5\n70,430,15.0\n70,431,14.5\n70,432,14.0\n70,433,13.5\n70,434,13.0\n70,435,12.5\n70,436,12.0\n70,437,11.5\n70,438,11.0\n70,439,10.5\n70,440,10.0\n70,441,9.5\n70,442,9.0\n70,443,8.5\n70,444,8.0\n70,445,7.5\n70,446,8.0\n70,447,8.5\n70,448,9.0\n70,449,9.5\n70,450,18.0\n70,451,17.5\n70,452,17.0\n70,453,16.5\n70,454,16.0\n70,455,15.5\n70,456,15.0\n70,457,14.5\n70,458,14.0\n70,459,13.5\n70,460,13.0\n70,461,12.5\n70,462,12.0\n70,463,11.5\n70,464,11.0\n70,465,10.5\n70,466,10.0\n70,467,9.5\n70,468,9.0\n70,469,8.5\n70,470,8.0\n70,471,8.5\n70,472,9.0\n70,473,9.5\n70,474,10.0\n70,475,18.5\n70,476,18.0\n70,477,17.5\n70,478,17.0\n70,479,16.5\n70,480,16.0\n70,481,15.5\n70,482,15.0\n70,483,14.5\n70,484,14.0\n70,485,13.5\n70,486,13.0\n70,487,12.5\n70,488,12.0\n70,489,11.5\n70,490,11.0\n70,491,10.5\n70,492,10.0\n70,493,9.5\n70,494,9.0\n70,495,8.5\n70,496,9.0\n70,497,9.5\n70,498,10.0\n70,499,10.5\n70,500,19.0\n70,501,18.5\n70,502,18.0\n70,503,17.5\n70,504,17.0\n70,505,16.5\n70,506,16.0\n70,507,15.5\n70,508,15.0\n70,509,14.5\n70,510,14.0\n70,511,13.5\n70,512,13.0\n70,513,12.5\n70,514,12.0\n70,515,11.5\n70,516,11.0\n70,517,10.5\n70,518,10.0\n70,519,9.5\n70,520,9.0\n70,521,9.5\n70,522,10.0\n70,523,10.5\n70,524,11.0\n70,525,19.5\n70,526,19.0\n70,527,18.5\n70,528,18.0\n70,529,17.5\n70,530,17.0\n70,531,16.5\n70,532,16.0\n70,533,15.5\n70,534,15.0\n70,535,14.5\n70,536,14.0\n70,537,13.5\n70,538,13.0\n70,539,12.5\n70,540,12.0\n70,541,11.5\n70,542,11.0\n70,543,10.5\n70,544,10.0\n70,545,9.5\n70,546,10.0\n70,547,10.5\n70,548,11.0\n70,549,11.5\n70,550,20.0\n70,551,19.5\n70,552,19.0\n70,553,18.5\n70,554,18.0\n70,555,17.5\n70,556,17.0\n70,557,16.5\n70,558,16.0\n70,559,15.5\n70,560,15.0\n70,561,14.5\n70,562,14.0\n70,563,13.5\n70,564,13.0\n70,565,12.5\n70,566,12.0\n70,567,11.5\n70,568,11.0\n70,569,10.5\n70,570,10.0\n70,571,10.5\n70,572,11.0\n70,573,11.5\n70,574,12.0\n70,575,20.5\n70,576,20.0\n70,577,19.5\n70,578,19.0\n70,579,18.5\n70,580,18.0\n70,581,17.5\n70,582,17.0\n70,583,16.5\n70,584,16.0\n70,585,15.5\n70,586,15.0\n70,587,14.5\n70,588,14.0\n70,589,13.5\n70,590,13.0\n70,591,12.5\n70,592,12.0\n70,593,11.5\n70,594,11.0\n70,595,10.5\n70,596,11.0\n70,597,11.5\n70,598,12.0\n70,599,12.5\n70,600,21.0\n70,601,20.5\n70,602,20.0\n70,603,19.5\n70,604,19.0\n70,605,18.5\n70,606,18.0\n70,607,17.5\n70,608,17.0\n70,609,16.5\n70,610,16.0\n70,611,15.5\n70,612,15.0\n70,613,14.5\n70,614,14.0\n70,615,13.5\n70,616,13.0\n70,617,12.5\n70,618,12.0\n70,619,11.5\n70,620,11.0\n70,621,11.5\n70,622,12.0\n70,623,12.5\n70,624,13.0\n71,0,11.5\n71,1,11.0\n71,2,10.5\n71,3,10.0\n71,4,9.5\n71,5,9.0\n71,6,8.5\n71,7,8.0\n71,8,7.5\n71,9,7.0\n71,10,6.5\n71,11,6.0\n71,12,5.5\n71,13,5.0\n71,14,4.5\n71,15,4.0\n71,16,3.5\n71,17,3.0\n71,18,2.5\n71,19,2.0\n71,20,1.5\n71,21,1.0\n71,22,1.5\n71,23,2.0\n71,24,2.5\n71,25,11.0\n71,26,10.5\n71,27,10.0\n71,28,9.5\n71,29,9.0\n71,30,8.5\n71,31,8.0\n71,32,7.5\n71,33,7.0\n71,34,6.5\n71,35,6.0\n71,36,5.5\n71,37,5.0\n71,38,4.5\n71,39,4.0\n71,40,3.5\n71,41,3.0\n71,42,2.5\n71,43,2.0\n71,44,1.5\n71,45,1.0\n71,46,0.5\n71,47,1.0\n71,48,1.5\n71,49,2.0\n71,50,10.5\n71,51,10.0\n71,52,9.5\n71,53,9.0\n71,54,8.5\n71,55,8.0\n71,56,7.5\n71,57,7.0\n71,58,6.5\n71,59,6.0\n71,60,5.5\n71,61,5.0\n71,62,4.5\n71,63,4.0\n71,64,3.5\n71,65,3.0\n71,66,2.5\n71,67,2.0\n71,68,1.5\n71,69,1.0\n71,70,0.5\n71,71,0\n71,72,0.5\n71,73,1.0\n71,74,1.5\n71,75,11.0\n71,76,10.5\n71,77,10.0\n71,78,9.5\n71,79,9.0\n71,80,8.5\n71,81,8.0\n71,82,7.5\n71,83,7.0\n71,84,6.5\n71,85,6.0\n71,86,5.5\n71,87,5.0\n71,88,4.5\n71,89,4.0\n71,90,3.5\n71,91,3.0\n71,92,2.5\n71,93,2.0\n71,94,1.5\n71,95,1.0\n71,96,0.5\n71,97,1.0\n71,98,1.5\n71,99,2.0\n71,100,11.5\n71,101,11.0\n71,102,10.5\n71,103,10.0\n71,104,9.5\n71,105,9.0\n71,106,8.5\n71,107,8.0\n71,108,7.5\n71,109,7.0\n71,110,6.5\n71,111,6.0\n71,112,5.5\n71,113,5.0\n71,114,4.5\n71,115,4.0\n71,116,3.5\n71,117,3.0\n71,118,2.5\n71,119,2.0\n71,120,1.5\n71,121,1.0\n71,122,1.5\n71,123,2.0\n71,124,2.5\n71,125,12.0\n71,126,11.5\n71,127,11.0\n71,128,10.5\n71,129,10.0\n71,130,9.5\n71,131,9.0\n71,132,8.5\n71,133,8.0\n71,134,7.5\n71,135,7.0\n71,136,6.5\n71,137,6.0\n71,138,5.5\n71,139,5.0\n71,140,4.5\n71,141,4.0\n71,142,3.5\n71,143,3.0\n71,144,2.5\n71,145,2.0\n71,146,1.5\n71,147,2.0\n71,148,2.5\n71,149,3.0\n71,150,12.5\n71,151,12.0\n71,152,11.5\n71,153,11.0\n71,154,10.5\n71,155,10.0\n71,156,9.5\n71,157,9.0\n71,158,8.5\n71,159,8.0\n71,160,7.5\n71,161,7.0\n71,162,6.5\n71,163,6.0\n71,164,5.5\n71,165,5.0\n71,166,4.5\n71,167,4.0\n71,168,3.5\n71,169,3.0\n71,170,2.5\n71,171,2.0\n71,172,2.5\n71,173,3.0\n71,174,3.5\n71,175,13.0\n71,176,12.5\n71,177,12.0\n71,178,11.5\n71,179,11.0\n71,180,10.5\n71,181,10.0\n71,182,9.5\n71,183,9.0\n71,184,8.5\n71,185,8.0\n71,186,7.5\n71,187,7.0\n71,188,6.5\n71,189,6.0\n71,190,5.5\n71,191,5.0\n71,192,4.5\n71,193,4.0\n71,194,3.5\n71,195,3.0\n71,196,2.5\n71,197,3.0\n71,198,3.5\n71,199,4.0\n71,200,13.5\n71,201,13.0\n71,202,12.5\n71,203,12.0\n71,204,11.5\n71,205,11.0\n71,206,10.5\n71,207,10.0\n71,208,9.5\n71,209,9.0\n71,210,8.5\n71,211,8.0\n71,212,7.5\n71,213,7.0\n71,214,6.5\n71,215,6.0\n71,216,5.5\n71,217,5.0\n71,218,4.5\n71,219,4.0\n71,220,3.5\n71,221,3.0\n71,222,3.5\n71,223,4.0\n71,224,4.5\n71,225,14.0\n71,226,13.5\n71,227,13.0\n71,228,12.5\n71,229,12.0\n71,230,11.5\n71,231,11.0\n71,232,10.5\n71,233,10.0\n71,234,9.5\n71,235,9.0\n71,236,8.5\n71,237,8.0\n71,238,7.5\n71,239,7.0\n71,240,6.5\n71,241,6.0\n71,242,5.5\n71,243,5.0\n71,244,4.5\n71,245,4.0\n71,246,3.5\n71,247,4.0\n71,248,4.5\n71,249,5.0\n71,250,14.5\n71,251,14.0\n71,252,13.5\n71,253,13.0\n71,254,12.5\n71,255,12.0\n71,256,11.5\n71,257,11.0\n71,258,10.5\n71,259,10.0\n71,260,9.5\n71,261,9.0\n71,262,8.5\n71,263,8.0\n71,264,7.5\n71,265,7.0\n71,266,6.5\n71,267,6.0\n71,268,5.5\n71,269,5.0\n71,270,4.5\n71,271,4.0\n71,272,4.5\n71,273,5.0\n71,274,5.5\n71,275,15.0\n71,276,14.5\n71,277,14.0\n71,278,13.5\n71,279,13.0\n71,280,12.5\n71,281,12.0\n71,282,11.5\n71,283,11.0\n71,284,10.5\n71,285,10.0\n71,286,9.5\n71,287,9.0\n71,288,8.5\n71,289,8.0\n71,290,7.5\n71,291,7.0\n71,292,6.5\n71,293,6.0\n71,294,5.5\n71,295,5.0\n71,296,4.5\n71,297,5.0\n71,298,5.5\n71,299,6.0\n71,300,15.5\n71,301,15.0\n71,302,14.5\n71,303,14.0\n71,304,13.5\n71,305,13.0\n71,306,12.5\n71,307,12.0\n71,308,11.5\n71,309,11.0\n71,310,10.5\n71,311,10.0\n71,312,9.5\n71,313,9.0\n71,314,8.5\n71,315,8.0\n71,316,7.5\n71,317,7.0\n71,318,6.5\n71,319,6.0\n71,320,5.5\n71,321,5.0\n71,322,5.5\n71,323,6.0\n71,324,6.5\n71,325,16.0\n71,326,15.5\n71,327,15.0\n71,328,14.5\n71,329,14.0\n71,330,13.5\n71,331,13.0\n71,332,12.5\n71,333,12.0\n71,334,11.5\n71,335,11.0\n71,336,10.5\n71,337,10.0\n71,338,9.5\n71,339,9.0\n71,340,8.5\n71,341,8.0\n71,342,7.5\n71,343,7.0\n71,344,6.5\n71,345,6.0\n71,346,5.5\n71,347,6.0\n71,348,6.5\n71,349,7.0\n71,350,16.5\n71,351,16.0\n71,352,15.5\n71,353,15.0\n71,354,14.5\n71,355,14.0\n71,356,13.5\n71,357,13.0\n71,358,12.5\n71,359,12.0\n71,360,11.5\n71,361,11.0\n71,362,10.5\n71,363,10.0\n71,364,9.5\n71,365,9.0\n71,366,8.5\n71,367,8.0\n71,368,7.5\n71,369,7.0\n71,370,6.5\n71,371,6.0\n71,372,6.5\n71,373,7.0\n71,374,7.5\n71,375,17.0\n71,376,16.5\n71,377,16.0\n71,378,15.5\n71,379,15.0\n71,380,14.5\n71,381,14.0\n71,382,13.5\n71,383,13.0\n71,384,12.5\n71,385,12.0\n71,386,11.5\n71,387,11.0\n71,388,10.5\n71,389,10.0\n71,390,9.5\n71,391,9.0\n71,392,8.5\n71,393,8.0\n71,394,7.5\n71,395,7.0\n71,396,6.5\n71,397,7.0\n71,398,7.5\n71,399,8.0\n71,400,17.5\n71,401,17.0\n71,402,16.5\n71,403,16.0\n71,404,15.5\n71,405,15.0\n71,406,14.5\n71,407,14.0\n71,408,13.5\n71,409,13.0\n71,410,12.5\n71,411,12.0\n71,412,11.5\n71,413,11.0\n71,414,10.5\n71,415,10.0\n71,416,9.5\n71,417,9.0\n71,418,8.5\n71,419,8.0\n71,420,7.5\n71,421,7.0\n71,422,7.5\n71,423,8.0\n71,424,8.5\n71,425,18.0\n71,426,17.5\n71,427,17.0\n71,428,16.5\n71,429,16.0\n71,430,15.5\n71,431,15.0\n71,432,14.5\n71,433,14.0\n71,434,13.5\n71,435,13.0\n71,436,12.5\n71,437,12.0\n71,438,11.5\n71,439,11.0\n71,440,10.5\n71,441,10.0\n71,442,9.5\n71,443,9.0\n71,444,8.5\n71,445,8.0\n71,446,7.5\n71,447,8.0\n71,448,8.5\n71,449,9.0\n71,450,18.5\n71,451,18.0\n71,452,17.5\n71,453,17.0\n71,454,16.5\n71,455,16.0\n71,456,15.5\n71,457,15.0\n71,458,14.5\n71,459,14.0\n71,460,13.5\n71,461,13.0\n71,462,12.5\n71,463,12.0\n71,464,11.5\n71,465,11.0\n71,466,10.5\n71,467,10.0\n71,468,9.5\n71,469,9.0\n71,470,8.5\n71,471,8.0\n71,472,8.5\n71,473,9.0\n71,474,9.5\n71,475,19.0\n71,476,18.5\n71,477,18.0\n71,478,17.5\n71,479,17.0\n71,480,16.5\n71,481,16.0\n71,482,15.5\n71,483,15.0\n71,484,14.5\n71,485,14.0\n71,486,13.5\n71,487,13.0\n71,488,12.5\n71,489,12.0\n71,490,11.5\n71,491,11.0\n71,492,10.5\n71,493,10.0\n71,494,9.5\n71,495,9.0\n71,496,8.5\n71,497,9.0\n71,498,9.5\n71,499,10.0\n71,500,19.5\n71,501,19.0\n71,502,18.5\n71,503,18.0\n71,504,17.5\n71,505,17.0\n71,506,16.5\n71,507,16.0\n71,508,15.5\n71,509,15.0\n71,510,14.5\n71,511,14.0\n71,512,13.5\n71,513,13.0\n71,514,12.5\n71,515,12.0\n71,516,11.5\n71,517,11.0\n71,518,10.5\n71,519,10.0\n71,520,9.5\n71,521,9.0\n71,522,9.5\n71,523,10.0\n71,524,10.5\n71,525,20.0\n71,526,19.5\n71,527,19.0\n71,528,18.5\n71,529,18.0\n71,530,17.5\n71,531,17.0\n71,532,16.5\n71,533,16.0\n71,534,15.5\n71,535,15.0\n71,536,14.5\n71,537,14.0\n71,538,13.5\n71,539,13.0\n71,540,12.5\n71,541,12.0\n71,542,11.5\n71,543,11.0\n71,544,10.5\n71,545,10.0\n71,546,9.5\n71,547,10.0\n71,548,10.5\n71,549,11.0\n71,550,20.5\n71,551,20.0\n71,552,19.5\n71,553,19.0\n71,554,18.5\n71,555,18.0\n71,556,17.5\n71,557,17.0\n71,558,16.5\n71,559,16.0\n71,560,15.5\n71,561,15.0\n71,562,14.5\n71,563,14.0\n71,564,13.5\n71,565,13.0\n71,566,12.5\n71,567,12.0\n71,568,11.5\n71,569,11.0\n71,570,10.5\n71,571,10.0\n71,572,10.5\n71,573,11.0\n71,574,11.5\n71,575,21.0\n71,576,20.5\n71,577,20.0\n71,578,19.5\n71,579,19.0\n71,580,18.5\n71,581,18.0\n71,582,17.5\n71,583,17.0\n71,584,16.5\n71,585,16.0\n71,586,15.5\n71,587,15.0\n71,588,14.5\n71,589,14.0\n71,590,13.5\n71,591,13.0\n71,592,12.5\n71,593,12.0\n71,594,11.5\n71,595,11.0\n71,596,10.5\n71,597,11.0\n71,598,11.5\n71,599,12.0\n71,600,21.5\n71,601,21.0\n71,602,20.5\n71,603,20.0\n71,604,19.5\n71,605,19.0\n71,606,18.5\n71,607,18.0\n71,608,17.5\n71,609,17.0\n71,610,16.5\n71,611,16.0\n71,612,15.5\n71,613,15.0\n71,614,14.5\n71,615,14.0\n71,616,13.5\n71,617,13.0\n71,618,12.5\n71,619,12.0\n71,620,11.5\n71,621,11.0\n71,622,11.5\n71,623,12.0\n71,624,12.5\n72,0,12.0\n72,1,11.5\n72,2,11.0\n72,3,10.5\n72,4,10.0\n72,5,9.5\n72,6,9.0\n72,7,8.5\n72,8,8.0\n72,9,7.5\n72,10,7.0\n72,11,6.5\n72,12,6.0\n72,13,5.5\n72,14,5.0\n72,15,4.5\n72,16,4.0\n72,17,3.5\n72,18,3.0\n72,19,2.5\n72,20,2.0\n72,21,1.5\n72,22,1.0\n72,23,1.5\n72,24,2.0\n72,25,11.5\n72,26,11.0\n72,27,10.5\n72,28,10.0\n72,29,9.5\n72,30,9.0\n72,31,8.5\n72,32,8.0\n72,33,7.5\n72,34,7.0\n72,35,6.5\n72,36,6.0\n72,37,5.5\n72,38,5.0\n72,39,4.5\n72,40,4.0\n72,41,3.5\n72,42,3.0\n72,43,2.5\n72,44,2.0\n72,45,1.5\n72,46,1.0\n72,47,0.5\n72,48,1.0\n72,49,1.5\n72,50,11.0\n72,51,10.5\n72,52,10.0\n72,53,9.5\n72,54,9.0\n72,55,8.5\n72,56,8.0\n72,57,7.5\n72,58,7.0\n72,59,6.5\n72,60,6.0\n72,61,5.5\n72,62,5.0\n72,63,4.5\n72,64,4.0\n72,65,3.5\n72,66,3.0\n72,67,2.5\n72,68,2.0\n72,69,1.5\n72,70,1.0\n72,71,0.5\n72,72,0\n72,73,0.5\n72,74,1.0\n72,75,11.5\n72,76,11.0\n72,77,10.5\n72,78,10.0\n72,79,9.5\n72,80,9.0\n72,81,8.5\n72,82,8.0\n72,83,7.5\n72,84,7.0\n72,85,6.5\n72,86,6.0\n72,87,5.5\n72,88,5.0\n72,89,4.5\n72,90,4.0\n72,91,3.5\n72,92,3.0\n72,93,2.5\n72,94,2.0\n72,95,1.5\n72,96,1.0\n72,97,0.5\n72,98,1.0\n72,99,1.5\n72,100,12.0\n72,101,11.5\n72,102,11.0\n72,103,10.5\n72,104,10.0\n72,105,9.5\n72,106,9.0\n72,107,8.5\n72,108,8.0\n72,109,7.5\n72,110,7.0\n72,111,6.5\n72,112,6.0\n72,113,5.5\n72,114,5.0\n72,115,4.5\n72,116,4.0\n72,117,3.5\n72,118,3.0\n72,119,2.5\n72,120,2.0\n72,121,1.5\n72,122,1.0\n72,123,1.5\n72,124,2.0\n72,125,12.5\n72,126,12.0\n72,127,11.5\n72,128,11.0\n72,129,10.5\n72,130,10.0\n72,131,9.5\n72,132,9.0\n72,133,8.5\n72,134,8.0\n72,135,7.5\n72,136,7.0\n72,137,6.5\n72,138,6.0\n72,139,5.5\n72,140,5.0\n72,141,4.5\n72,142,4.0\n72,143,3.5\n72,144,3.0\n72,145,2.5\n72,146,2.0\n72,147,1.5\n72,148,2.0\n72,149,2.5\n72,150,13.0\n72,151,12.5\n72,152,12.0\n72,153,11.5\n72,154,11.0\n72,155,10.5\n72,156,10.0\n72,157,9.5\n72,158,9.0\n72,159,8.5\n72,160,8.0\n72,161,7.5\n72,162,7.0\n72,163,6.5\n72,164,6.0\n72,165,5.5\n72,166,5.0\n72,167,4.5\n72,168,4.0\n72,169,3.5\n72,170,3.0\n72,171,2.5\n72,172,2.0\n72,173,2.5\n72,174,3.0\n72,175,13.5\n72,176,13.0\n72,177,12.5\n72,178,12.0\n72,179,11.5\n72,180,11.0\n72,181,10.5\n72,182,10.0\n72,183,9.5\n72,184,9.0\n72,185,8.5\n72,186,8.0\n72,187,7.5\n72,188,7.0\n72,189,6.5\n72,190,6.0\n72,191,5.5\n72,192,5.0\n72,193,4.5\n72,194,4.0\n72,195,3.5\n72,196,3.0\n72,197,2.5\n72,198,3.0\n72,199,3.5\n72,200,14.0\n72,201,13.5\n72,202,13.0\n72,203,12.5\n72,204,12.0\n72,205,11.5\n72,206,11.0\n72,207,10.5\n72,208,10.0\n72,209,9.5\n72,210,9.0\n72,211,8.5\n72,212,8.0\n72,213,7.5\n72,214,7.0\n72,215,6.5\n72,216,6.0\n72,217,5.5\n72,218,5.0\n72,219,4.5\n72,220,4.0\n72,221,3.5\n72,222,3.0\n72,223,3.5\n72,224,4.0\n72,225,14.5\n72,226,14.0\n72,227,13.5\n72,228,13.0\n72,229,12.5\n72,230,12.0\n72,231,11.5\n72,232,11.0\n72,233,10.5\n72,234,10.0\n72,235,9.5\n72,236,9.0\n72,237,8.5\n72,238,8.0\n72,239,7.5\n72,240,7.0\n72,241,6.5\n72,242,6.0\n72,243,5.5\n72,244,5.0\n72,245,4.5\n72,246,4.0\n72,247,3.5\n72,248,4.0\n72,249,4.5\n72,250,15.0\n72,251,14.5\n72,252,14.0\n72,253,13.5\n72,254,13.0\n72,255,12.5\n72,256,12.0\n72,257,11.5\n72,258,11.0\n72,259,10.5\n72,260,10.0\n72,261,9.5\n72,262,9.0\n72,263,8.5\n72,264,8.0\n72,265,7.5\n72,266,7.0\n72,267,6.5\n72,268,6.0\n72,269,5.5\n72,270,5.0\n72,271,4.5\n72,272,4.0\n72,273,4.5\n72,274,5.0\n72,275,15.5\n72,276,15.0\n72,277,14.5\n72,278,14.0\n72,279,13.5\n72,280,13.0\n72,281,12.5\n72,282,12.0\n72,283,11.5\n72,284,11.0\n72,285,10.5\n72,286,10.0\n72,287,9.5\n72,288,9.0\n72,289,8.5\n72,290,8.0\n72,291,7.5\n72,292,7.0\n72,293,6.5\n72,294,6.0\n72,295,5.5\n72,296,5.0\n72,297,4.5\n72,298,5.0\n72,299,5.5\n72,300,16.0\n72,301,15.5\n72,302,15.0\n72,303,14.5\n72,304,14.0\n72,305,13.5\n72,306,13.0\n72,307,12.5\n72,308,12.0\n72,309,11.5\n72,310,11.0\n72,311,10.5\n72,312,10.0\n72,313,9.5\n72,314,9.0\n72,315,8.5\n72,316,8.0\n72,317,7.5\n72,318,7.0\n72,319,6.5\n72,320,6.0\n72,321,5.5\n72,322,5.0\n72,323,5.5\n72,324,6.0\n72,325,16.5\n72,326,16.0\n72,327,15.5\n72,328,15.0\n72,329,14.5\n72,330,14.0\n72,331,13.5\n72,332,13.0\n72,333,12.5\n72,334,12.0\n72,335,11.5\n72,336,11.0\n72,337,10.5\n72,338,10.0\n72,339,9.5\n72,340,9.0\n72,341,8.5\n72,342,8.0\n72,343,7.5\n72,344,7.0\n72,345,6.5\n72,346,6.0\n72,347,5.5\n72,348,6.0\n72,349,6.5\n72,350,17.0\n72,351,16.5\n72,352,16.0\n72,353,15.5\n72,354,15.0\n72,355,14.5\n72,356,14.0\n72,357,13.5\n72,358,13.0\n72,359,12.5\n72,360,12.0\n72,361,11.5\n72,362,11.0\n72,363,10.5\n72,364,10.0\n72,365,9.5\n72,366,9.0\n72,367,8.5\n72,368,8.0\n72,369,7.5\n72,370,7.0\n72,371,6.5\n72,372,6.0\n72,373,6.5\n72,374,7.0\n72,375,17.5\n72,376,17.0\n72,377,16.5\n72,378,16.0\n72,379,15.5\n72,380,15.0\n72,381,14.5\n72,382,14.0\n72,383,13.5\n72,384,13.0\n72,385,12.5\n72,386,12.0\n72,387,11.5\n72,388,11.0\n72,389,10.5\n72,390,10.0\n72,391,9.5\n72,392,9.0\n72,393,8.5\n72,394,8.0\n72,395,7.5\n72,396,7.0\n72,397,6.5\n72,398,7.0\n72,399,7.5\n72,400,18.0\n72,401,17.5\n72,402,17.0\n72,403,16.5\n72,404,16.0\n72,405,15.5\n72,406,15.0\n72,407,14.5\n72,408,14.0\n72,409,13.5\n72,410,13.0\n72,411,12.5\n72,412,12.0\n72,413,11.5\n72,414,11.0\n72,415,10.5\n72,416,10.0\n72,417,9.5\n72,418,9.0\n72,419,8.5\n72,420,8.0\n72,421,7.5\n72,422,7.0\n72,423,7.5\n72,424,8.0\n72,425,18.5\n72,426,18.0\n72,427,17.5\n72,428,17.0\n72,429,16.5\n72,430,16.0\n72,431,15.5\n72,432,15.0\n72,433,14.5\n72,434,14.0\n72,435,13.5\n72,436,13.0\n72,437,12.5\n72,438,12.0\n72,439,11.5\n72,440,11.0\n72,441,10.5\n72,442,10.0\n72,443,9.5\n72,444,9.0\n72,445,8.5\n72,446,8.0\n72,447,7.5\n72,448,8.0\n72,449,8.5\n72,450,19.0\n72,451,18.5\n72,452,18.0\n72,453,17.5\n72,454,17.0\n72,455,16.5\n72,456,16.0\n72,457,15.5\n72,458,15.0\n72,459,14.5\n72,460,14.0\n72,461,13.5\n72,462,13.0\n72,463,12.5\n72,464,12.0\n72,465,11.5\n72,466,11.0\n72,467,10.5\n72,468,10.0\n72,469,9.5\n72,470,9.0\n72,471,8.5\n72,472,8.0\n72,473,8.5\n72,474,9.0\n72,475,19.5\n72,476,19.0\n72,477,18.5\n72,478,18.0\n72,479,17.5\n72,480,17.0\n72,481,16.5\n72,482,16.0\n72,483,15.5\n72,484,15.0\n72,485,14.5\n72,486,14.0\n72,487,13.5\n72,488,13.0\n72,489,12.5\n72,490,12.0\n72,491,11.5\n72,492,11.0\n72,493,10.5\n72,494,10.0\n72,495,9.5\n72,496,9.0\n72,497,8.5\n72,498,9.0\n72,499,9.5\n72,500,20.0\n72,501,19.5\n72,502,19.0\n72,503,18.5\n72,504,18.0\n72,505,17.5\n72,506,17.0\n72,507,16.5\n72,508,16.0\n72,509,15.5\n72,510,15.0\n72,511,14.5\n72,512,14.0\n72,513,13.5\n72,514,13.0\n72,515,12.5\n72,516,12.0\n72,517,11.5\n72,518,11.0\n72,519,10.5\n72,520,10.0\n72,521,9.5\n72,522,9.0\n72,523,9.5\n72,524,10.0\n72,525,20.5\n72,526,20.0\n72,527,19.5\n72,528,19.0\n72,529,18.5\n72,530,18.0\n72,531,17.5\n72,532,17.0\n72,533,16.5\n72,534,16.0\n72,535,15.5\n72,536,15.0\n72,537,14.5\n72,538,14.0\n72,539,13.5\n72,540,13.0\n72,541,12.5\n72,542,12.0\n72,543,11.5\n72,544,11.0\n72,545,10.5\n72,546,10.0\n72,547,9.5\n72,548,10.0\n72,549,10.5\n72,550,21.0\n72,551,20.5\n72,552,20.0\n72,553,19.5\n72,554,19.0\n72,555,18.5\n72,556,18.0\n72,557,17.5\n72,558,17.0\n72,559,16.5\n72,560,16.0\n72,561,15.5\n72,562,15.0\n72,563,14.5\n72,564,14.0\n72,565,13.5\n72,566,13.0\n72,567,12.5\n72,568,12.0\n72,569,11.5\n72,570,11.0\n72,571,10.5\n72,572,10.0\n72,573,10.5\n72,574,11.0\n72,575,21.5\n72,576,21.0\n72,577,20.5\n72,578,20.0\n72,579,19.5\n72,580,19.0\n72,581,18.5\n72,582,18.0\n72,583,17.5\n72,584,17.0\n72,585,16.5\n72,586,16.0\n72,587,15.5\n72,588,15.0\n72,589,14.5\n72,590,14.0\n72,591,13.5\n72,592,13.0\n72,593,12.5\n72,594,12.0\n72,595,11.5\n72,596,11.0\n72,597,10.5\n72,598,11.0\n72,599,11.5\n72,600,22.0\n72,601,21.5\n72,602,21.0\n72,603,20.5\n72,604,20.0\n72,605,19.5\n72,606,19.0\n72,607,18.5\n72,608,18.0\n72,609,17.5\n72,610,17.0\n72,611,16.5\n72,612,16.0\n72,613,15.5\n72,614,15.0\n72,615,14.5\n72,616,14.0\n72,617,13.5\n72,618,13.0\n72,619,12.5\n72,620,12.0\n72,621,11.5\n72,622,11.0\n72,623,11.5\n72,624,12.0\n73,0,12.5\n73,1,12.0\n73,2,11.5\n73,3,11.0\n73,4,10.5\n73,5,10.0\n73,6,9.5\n73,7,9.0\n73,8,8.5\n73,9,8.0\n73,10,7.5\n73,11,7.0\n73,12,6.5\n73,13,6.0\n73,14,5.5\n73,15,5.0\n73,16,4.5\n73,17,4.0\n73,18,3.5\n73,19,3.0\n73,20,2.5\n73,21,2.0\n73,22,1.5\n73,23,1.0\n73,24,1.5\n73,25,12.0\n73,26,11.5\n73,27,11.0\n73,28,10.5\n73,29,10.0\n73,30,9.5\n73,31,9.0\n73,32,8.5\n73,33,8.0\n73,34,7.5\n73,35,7.0\n73,36,6.5\n73,37,6.0\n73,38,5.5\n73,39,5.0\n73,40,4.5\n73,41,4.0\n73,42,3.5\n73,43,3.0\n73,44,2.5\n73,45,2.0\n73,46,1.5\n73,47,1.0\n73,48,0.5\n73,49,1.0\n73,50,11.5\n73,51,11.0\n73,52,10.5\n73,53,10.0\n73,54,9.5\n73,55,9.0\n73,56,8.5\n73,57,8.0\n73,58,7.5\n73,59,7.0\n73,60,6.5\n73,61,6.0\n73,62,5.5\n73,63,5.0\n73,64,4.5\n73,65,4.0\n73,66,3.5\n73,67,3.0\n73,68,2.5\n73,69,2.0\n73,70,1.5\n73,71,1.0\n73,72,0.5\n73,73,0\n73,74,0.5\n73,75,12.0\n73,76,11.5\n73,77,11.0\n73,78,10.5\n73,79,10.0\n73,80,9.5\n73,81,9.0\n73,82,8.5\n73,83,8.0\n73,84,7.5\n73,85,7.0\n73,86,6.5\n73,87,6.0\n73,88,5.5\n73,89,5.0\n73,90,4.5\n73,91,4.0\n73,92,3.5\n73,93,3.0\n73,94,2.5\n73,95,2.0\n73,96,1.5\n73,97,1.0\n73,98,0.5\n73,99,1.0\n73,100,12.5\n73,101,12.0\n73,102,11.5\n73,103,11.0\n73,104,10.5\n73,105,10.0\n73,106,9.5\n73,107,9.0\n73,108,8.5\n73,109,8.0\n73,110,7.5\n73,111,7.0\n73,112,6.5\n73,113,6.0\n73,114,5.5\n73,115,5.0\n73,116,4.5\n73,117,4.0\n73,118,3.5\n73,119,3.0\n73,120,2.5\n73,121,2.0\n73,122,1.5\n73,123,1.0\n73,124,1.5\n73,125,13.0\n73,126,12.5\n73,127,12.0\n73,128,11.5\n73,129,11.0\n73,130,10.5\n73,131,10.0\n73,132,9.5\n73,133,9.0\n73,134,8.5\n73,135,8.0\n73,136,7.5\n73,137,7.0\n73,138,6.5\n73,139,6.0\n73,140,5.5\n73,141,5.0\n73,142,4.5\n73,143,4.0\n73,144,3.5\n73,145,3.0\n73,146,2.5\n73,147,2.0\n73,148,1.5\n73,149,2.0\n73,150,13.5\n73,151,13.0\n73,152,12.5\n73,153,12.0\n73,154,11.5\n73,155,11.0\n73,156,10.5\n73,157,10.0\n73,158,9.5\n73,159,9.0\n73,160,8.5\n73,161,8.0\n73,162,7.5\n73,163,7.0\n73,164,6.5\n73,165,6.0\n73,166,5.5\n73,167,5.0\n73,168,4.5\n73,169,4.0\n73,170,3.5\n73,171,3.0\n73,172,2.5\n73,173,2.0\n73,174,2.5\n73,175,14.0\n73,176,13.5\n73,177,13.0\n73,178,12.5\n73,179,12.0\n73,180,11.5\n73,181,11.0\n73,182,10.5\n73,183,10.0\n73,184,9.5\n73,185,9.0\n73,186,8.5\n73,187,8.0\n73,188,7.5\n73,189,7.0\n73,190,6.5\n73,191,6.0\n73,192,5.5\n73,193,5.0\n73,194,4.5\n73,195,4.0\n73,196,3.5\n73,197,3.0\n73,198,2.5\n73,199,3.0\n73,200,14.5\n73,201,14.0\n73,202,13.5\n73,203,13.0\n73,204,12.5\n73,205,12.0\n73,206,11.5\n73,207,11.0\n73,208,10.5\n73,209,10.0\n73,210,9.5\n73,211,9.0\n73,212,8.5\n73,213,8.0\n73,214,7.5\n73,215,7.0\n73,216,6.5\n73,217,6.0\n73,218,5.5\n73,219,5.0\n73,220,4.5\n73,221,4.0\n73,222,3.5\n73,223,3.0\n73,224,3.5\n73,225,15.0\n73,226,14.5\n73,227,14.0\n73,228,13.5\n73,229,13.0\n73,230,12.5\n73,231,12.0\n73,232,11.5\n73,233,11.0\n73,234,10.5\n73,235,10.0\n73,236,9.5\n73,237,9.0\n73,238,8.5\n73,239,8.0\n73,240,7.5\n73,241,7.0\n73,242,6.5\n73,243,6.0\n73,244,5.5\n73,245,5.0\n73,246,4.5\n73,247,4.0\n73,248,3.5\n73,249,4.0\n73,250,15.5\n73,251,15.0\n73,252,14.5\n73,253,14.0\n73,254,13.5\n73,255,13.0\n73,256,12.5\n73,257,12.0\n73,258,11.5\n73,259,11.0\n73,260,10.5\n73,261,10.0\n73,262,9.5\n73,263,9.0\n73,264,8.5\n73,265,8.0\n73,266,7.5\n73,267,7.0\n73,268,6.5\n73,269,6.0\n73,270,5.5\n73,271,5.0\n73,272,4.5\n73,273,4.0\n73,274,4.5\n73,275,16.0\n73,276,15.5\n73,277,15.0\n73,278,14.5\n73,279,14.0\n73,280,13.5\n73,281,13.0\n73,282,12.5\n73,283,12.0\n73,284,11.5\n73,285,11.0\n73,286,10.5\n73,287,10.0\n73,288,9.5\n73,289,9.0\n73,290,8.5\n73,291,8.0\n73,292,7.5\n73,293,7.0\n73,294,6.5\n73,295,6.0\n73,296,5.5\n73,297,5.0\n73,298,4.5\n73,299,5.0\n73,300,16.5\n73,301,16.0\n73,302,15.5\n73,303,15.0\n73,304,14.5\n73,305,14.0\n73,306,13.5\n73,307,13.0\n73,308,12.5\n73,309,12.0\n73,310,11.5\n73,311,11.0\n73,312,10.5\n73,313,10.0\n73,314,9.5\n73,315,9.0\n73,316,8.5\n73,317,8.0\n73,318,7.5\n73,319,7.0\n73,320,6.5\n73,321,6.0\n73,322,5.5\n73,323,5.0\n73,324,5.5\n73,325,17.0\n73,326,16.5\n73,327,16.0\n73,328,15.5\n73,329,15.0\n73,330,14.5\n73,331,14.0\n73,332,13.5\n73,333,13.0\n73,334,12.5\n73,335,12.0\n73,336,11.5\n73,337,11.0\n73,338,10.5\n73,339,10.0\n73,340,9.5\n73,341,9.0\n73,342,8.5\n73,343,8.0\n73,344,7.5\n73,345,7.0\n73,346,6.5\n73,347,6.0\n73,348,5.5\n73,349,6.0\n73,350,17.5\n73,351,17.0\n73,352,16.5\n73,353,16.0\n73,354,15.5\n73,355,15.0\n73,356,14.5\n73,357,14.0\n73,358,13.5\n73,359,13.0\n73,360,12.5\n73,361,12.0\n73,362,11.5\n73,363,11.0\n73,364,10.5\n73,365,10.0\n73,366,9.5\n73,367,9.0\n73,368,8.5\n73,369,8.0\n73,370,7.5\n73,371,7.0\n73,372,6.5\n73,373,6.0\n73,374,6.5\n73,375,18.0\n73,376,17.5\n73,377,17.0\n73,378,16.5\n73,379,16.0\n73,380,15.5\n73,381,15.0\n73,382,14.5\n73,383,14.0\n73,384,13.5\n73,385,13.0\n73,386,12.5\n73,387,12.0\n73,388,11.5\n73,389,11.0\n73,390,10.5\n73,391,10.0\n73,392,9.5\n73,393,9.0\n73,394,8.5\n73,395,8.0\n73,396,7.5\n73,397,7.0\n73,398,6.5\n73,399,7.0\n73,400,18.5\n73,401,18.0\n73,402,17.5\n73,403,17.0\n73,404,16.5\n73,405,16.0\n73,406,15.5\n73,407,15.0\n73,408,14.5\n73,409,14.0\n73,410,13.5\n73,411,13.0\n73,412,12.5\n73,413,12.0\n73,414,11.5\n73,415,11.0\n73,416,10.5\n73,417,10.0\n73,418,9.5\n73,419,9.0\n73,420,8.5\n73,421,8.0\n73,422,7.5\n73,423,7.0\n73,424,7.5\n73,425,19.0\n73,426,18.5\n73,427,18.0\n73,428,17.5\n73,429,17.0\n73,430,16.5\n73,431,16.0\n73,432,15.5\n73,433,15.0\n73,434,14.5\n73,435,14.0\n73,436,13.5\n73,437,13.0\n73,438,12.5\n73,439,12.0\n73,440,11.5\n73,441,11.0\n73,442,10.5\n73,443,10.0\n73,444,9.5\n73,445,9.0\n73,446,8.5\n73,447,8.0\n73,448,7.5\n73,449,8.0\n73,450,19.5\n73,451,19.0\n73,452,18.5\n73,453,18.0\n73,454,17.5\n73,455,17.0\n73,456,16.5\n73,457,16.0\n73,458,15.5\n73,459,15.0\n73,460,14.5\n73,461,14.0\n73,462,13.5\n73,463,13.0\n73,464,12.5\n73,465,12.0\n73,466,11.5\n73,467,11.0\n73,468,10.5\n73,469,10.0\n73,470,9.5\n73,471,9.0\n73,472,8.5\n73,473,8.0\n73,474,8.5\n73,475,20.0\n73,476,19.5\n73,477,19.0\n73,478,18.5\n73,479,18.0\n73,480,17.5\n73,481,17.0\n73,482,16.5\n73,483,16.0\n73,484,15.5\n73,485,15.0\n73,486,14.5\n73,487,14.0\n73,488,13.5\n73,489,13.0\n73,490,12.5\n73,491,12.0\n73,492,11.5\n73,493,11.0\n73,494,10.5\n73,495,10.0\n73,496,9.5\n73,497,9.0\n73,498,8.5\n73,499,9.0\n73,500,20.5\n73,501,20.0\n73,502,19.5\n73,503,19.0\n73,504,18.5\n73,505,18.0\n73,506,17.5\n73,507,17.0\n73,508,16.5\n73,509,16.0\n73,510,15.5\n73,511,15.0\n73,512,14.5\n73,513,14.0\n73,514,13.5\n73,515,13.0\n73,516,12.5\n73,517,12.0\n73,518,11.5\n73,519,11.0\n73,520,10.5\n73,521,10.0\n73,522,9.5\n73,523,9.0\n73,524,9.5\n73,525,21.0\n73,526,20.5\n73,527,20.0\n73,528,19.5\n73,529,19.0\n73,530,18.5\n73,531,18.0\n73,532,17.5\n73,533,17.0\n73,534,16.5\n73,535,16.0\n73,536,15.5\n73,537,15.0\n73,538,14.5\n73,539,14.0\n73,540,13.5\n73,541,13.0\n73,542,12.5\n73,543,12.0\n73,544,11.5\n73,545,11.0\n73,546,10.5\n73,547,10.0\n73,548,9.5\n73,549,10.0\n73,550,21.5\n73,551,21.0\n73,552,20.5\n73,553,20.0\n73,554,19.5\n73,555,19.0\n73,556,18.5\n73,557,18.0\n73,558,17.5\n73,559,17.0\n73,560,16.5\n73,561,16.0\n73,562,15.5\n73,563,15.0\n73,564,14.5\n73,565,14.0\n73,566,13.5\n73,567,13.0\n73,568,12.5\n73,569,12.0\n73,570,11.5\n73,571,11.0\n73,572,10.5\n73,573,10.0\n73,574,10.5\n73,575,22.0\n73,576,21.5\n73,577,21.0\n73,578,20.5\n73,579,20.0\n73,580,19.5\n73,581,19.0\n73,582,18.5\n73,583,18.0\n73,584,17.5\n73,585,17.0\n73,586,16.5\n73,587,16.0\n73,588,15.5\n73,589,15.0\n73,590,14.5\n73,591,14.0\n73,592,13.5\n73,593,13.0\n73,594,12.5\n73,595,12.0\n73,596,11.5\n73,597,11.0\n73,598,10.5\n73,599,11.0\n73,600,22.5\n73,601,22.0\n73,602,21.5\n73,603,21.0\n73,604,20.5\n73,605,20.0\n73,606,19.5\n73,607,19.0\n73,608,18.5\n73,609,18.0\n73,610,17.5\n73,611,17.0\n73,612,16.5\n73,613,16.0\n73,614,15.5\n73,615,15.0\n73,616,14.5\n73,617,14.0\n73,618,13.5\n73,619,13.0\n73,620,12.5\n73,621,12.0\n73,622,11.5\n73,623,11.0\n73,624,11.5\n74,0,13.0\n74,1,12.5\n74,2,12.0\n74,3,11.5\n74,4,11.0\n74,5,10.5\n74,6,10.0\n74,7,9.5\n74,8,9.0\n74,9,8.5\n74,10,8.0\n74,11,7.5\n74,12,7.0\n74,13,6.5\n74,14,6.0\n74,15,5.5\n74,16,5.0\n74,17,4.5\n74,18,4.0\n74,19,3.5\n74,20,3.0\n74,21,2.5\n74,22,2.0\n74,23,1.5\n74,24,1.0\n74,25,12.5\n74,26,12.0\n74,27,11.5\n74,28,11.0\n74,29,10.5\n74,30,10.0\n74,31,9.5\n74,32,9.0\n74,33,8.5\n74,34,8.0\n74,35,7.5\n74,36,7.0\n74,37,6.5\n74,38,6.0\n74,39,5.5\n74,40,5.0\n74,41,4.5\n74,42,4.0\n74,43,3.5\n74,44,3.0\n74,45,2.5\n74,46,2.0\n74,47,1.5\n74,48,1.0\n74,49,0.5\n74,50,12.0\n74,51,11.5\n74,52,11.0\n74,53,10.5\n74,54,10.0\n74,55,9.5\n74,56,9.0\n74,57,8.5\n74,58,8.0\n74,59,7.5\n74,60,7.0\n74,61,6.5\n74,62,6.0\n74,63,5.5\n74,64,5.0\n74,65,4.5\n74,66,4.0\n74,67,3.5\n74,68,3.0\n74,69,2.5\n74,70,2.0\n74,71,1.5\n74,72,1.0\n74,73,0.5\n74,74,0\n74,75,12.5\n74,76,12.0\n74,77,11.5\n74,78,11.0\n74,79,10.5\n74,80,10.0\n74,81,9.5\n74,82,9.0\n74,83,8.5\n74,84,8.0\n74,85,7.5\n74,86,7.0\n74,87,6.5\n74,88,6.0\n74,89,5.5\n74,90,5.0\n74,91,4.5\n74,92,4.0\n74,93,3.5\n74,94,3.0\n74,95,2.5\n74,96,2.0\n74,97,1.5\n74,98,1.0\n74,99,0.5\n74,100,13.0\n74,101,12.5\n74,102,12.0\n74,103,11.5\n74,104,11.0\n74,105,10.5\n74,106,10.0\n74,107,9.5\n74,108,9.0\n74,109,8.5\n74,110,8.0\n74,111,7.5\n74,112,7.0\n74,113,6.5\n74,114,6.0\n74,115,5.5\n74,116,5.0\n74,117,4.5\n74,118,4.0\n74,119,3.5\n74,120,3.0\n74,121,2.5\n74,122,2.0\n74,123,1.5\n74,124,1.0\n74,125,13.5\n74,126,13.0\n74,127,12.5\n74,128,12.0\n74,129,11.5\n74,130,11.0\n74,131,10.5\n74,132,10.0\n74,133,9.5\n74,134,9.0\n74,135,8.5\n74,136,8.0\n74,137,7.5\n74,138,7.0\n74,139,6.5\n74,140,6.0\n74,141,5.5\n74,142,5.0\n74,143,4.5\n74,144,4.0\n74,145,3.5\n74,146,3.0\n74,147,2.5\n74,148,2.0\n74,149,1.5\n74,150,14.0\n74,151,13.5\n74,152,13.0\n74,153,12.5\n74,154,12.0\n74,155,11.5\n74,156,11.0\n74,157,10.5\n74,158,10.0\n74,159,9.5\n74,160,9.0\n74,161,8.5\n74,162,8.0\n74,163,7.5\n74,164,7.0\n74,165,6.5\n74,166,6.0\n74,167,5.5\n74,168,5.0\n74,169,4.5\n74,170,4.0\n74,171,3.5\n74,172,3.0\n74,173,2.5\n74,174,2.0\n74,175,14.5\n74,176,14.0\n74,177,13.5\n74,178,13.0\n74,179,12.5\n74,180,12.0\n74,181,11.5\n74,182,11.0\n74,183,10.5\n74,184,10.0\n74,185,9.5\n74,186,9.0\n74,187,8.5\n74,188,8.0\n74,189,7.5\n74,190,7.0\n74,191,6.5\n74,192,6.0\n74,193,5.5\n74,194,5.0\n74,195,4.5\n74,196,4.0\n74,197,3.5\n74,198,3.0\n74,199,2.5\n74,200,15.0\n74,201,14.5\n74,202,14.0\n74,203,13.5\n74,204,13.0\n74,205,12.5\n74,206,12.0\n74,207,11.5\n74,208,11.0\n74,209,10.5\n74,210,10.0\n74,211,9.5\n74,212,9.0\n74,213,8.5\n74,214,8.0\n74,215,7.5\n74,216,7.0\n74,217,6.5\n74,218,6.0\n74,219,5.5\n74,220,5.0\n74,221,4.5\n74,222,4.0\n74,223,3.5\n74,224,3.0\n74,225,15.5\n74,226,15.0\n74,227,14.5\n74,228,14.0\n74,229,13.5\n74,230,13.0\n74,231,12.5\n74,232,12.0\n74,233,11.5\n74,234,11.0\n74,235,10.5\n74,236,10.0\n74,237,9.5\n74,238,9.0\n74,239,8.5\n74,240,8.0\n74,241,7.5\n74,242,7.0\n74,243,6.5\n74,244,6.0\n74,245,5.5\n74,246,5.0\n74,247,4.5\n74,248,4.0\n74,249,3.5\n74,250,16.0\n74,251,15.5\n74,252,15.0\n74,253,14.5\n74,254,14.0\n74,255,13.5\n74,256,13.0\n74,257,12.5\n74,258,12.0\n74,259,11.5\n74,260,11.0\n74,261,10.5\n74,262,10.0\n74,263,9.5\n74,264,9.0\n74,265,8.5\n74,266,8.0\n74,267,7.5\n74,268,7.0\n74,269,6.5\n74,270,6.0\n74,271,5.5\n74,272,5.0\n74,273,4.5\n74,274,4.0\n74,275,16.5\n74,276,16.0\n74,277,15.5\n74,278,15.0\n74,279,14.5\n74,280,14.0\n74,281,13.5\n74,282,13.0\n74,283,12.5\n74,284,12.0\n74,285,11.5\n74,286,11.0\n74,287,10.5\n74,288,10.0\n74,289,9.5\n74,290,9.0\n74,291,8.5\n74,292,8.0\n74,293,7.5\n74,294,7.0\n74,295,6.5\n74,296,6.0\n74,297,5.5\n74,298,5.0\n74,299,4.5\n74,300,17.0\n74,301,16.5\n74,302,16.0\n74,303,15.5\n74,304,15.0\n74,305,14.5\n74,306,14.0\n74,307,13.5\n74,308,13.0\n74,309,12.5\n74,310,12.0\n74,311,11.5\n74,312,11.0\n74,313,10.5\n74,314,10.0\n74,315,9.5\n74,316,9.0\n74,317,8.5\n74,318,8.0\n74,319,7.5\n74,320,7.0\n74,321,6.5\n74,322,6.0\n74,323,5.5\n74,324,5.0\n74,325,17.5\n74,326,17.0\n74,327,16.5\n74,328,16.0\n74,329,15.5\n74,330,15.0\n74,331,14.5\n74,332,14.0\n74,333,13.5\n74,334,13.0\n74,335,12.5\n74,336,12.0\n74,337,11.5\n74,338,11.0\n74,339,10.5\n74,340,10.0\n74,341,9.5\n74,342,9.0\n74,343,8.5\n74,344,8.0\n74,345,7.5\n74,346,7.0\n74,347,6.5\n74,348,6.0\n74,349,5.5\n74,350,18.0\n74,351,17.5\n74,352,17.0\n74,353,16.5\n74,354,16.0\n74,355,15.5\n74,356,15.0\n74,357,14.5\n74,358,14.0\n74,359,13.5\n74,360,13.0\n74,361,12.5\n74,362,12.0\n74,363,11.5\n74,364,11.0\n74,365,10.5\n74,366,10.0\n74,367,9.5\n74,368,9.0\n74,369,8.5\n74,370,8.0\n74,371,7.5\n74,372,7.0\n74,373,6.5\n74,374,6.0\n74,375,18.5\n74,376,18.0\n74,377,17.5\n74,378,17.0\n74,379,16.5\n74,380,16.0\n74,381,15.5\n74,382,15.0\n74,383,14.5\n74,384,14.0\n74,385,13.5\n74,386,13.0\n74,387,12.5\n74,388,12.0\n74,389,11.5\n74,390,11.0\n74,391,10.5\n74,392,10.0\n74,393,9.5\n74,394,9.0\n74,395,8.5\n74,396,8.0\n74,397,7.5\n74,398,7.0\n74,399,6.5\n74,400,19.0\n74,401,18.5\n74,402,18.0\n74,403,17.5\n74,404,17.0\n74,405,16.5\n74,406,16.0\n74,407,15.5\n74,408,15.0\n74,409,14.5\n74,410,14.0\n74,411,13.5\n74,412,13.0\n74,413,12.5\n74,414,12.0\n74,415,11.5\n74,416,11.0\n74,417,10.5\n74,418,10.0\n74,419,9.5\n74,420,9.0\n74,421,8.5\n74,422,8.0\n74,423,7.5\n74,424,7.0\n74,425,19.5\n74,426,19.0\n74,427,18.5\n74,428,18.0\n74,429,17.5\n74,430,17.0\n74,431,16.5\n74,432,16.0\n74,433,15.5\n74,434,15.0\n74,435,14.5\n74,436,14.0\n74,437,13.5\n74,438,13.0\n74,439,12.5\n74,440,12.0\n74,441,11.5\n74,442,11.0\n74,443,10.5\n74,444,10.0\n74,445,9.5\n74,446,9.0\n74,447,8.5\n74,448,8.0\n74,449,7.5\n74,450,20.0\n74,451,19.5\n74,452,19.0\n74,453,18.5\n74,454,18.0\n74,455,17.5\n74,456,17.0\n74,457,16.5\n74,458,16.0\n74,459,15.5\n74,460,15.0\n74,461,14.5\n74,462,14.0\n74,463,13.5\n74,464,13.0\n74,465,12.5\n74,466,12.0\n74,467,11.5\n74,468,11.0\n74,469,10.5\n74,470,10.0\n74,471,9.5\n74,472,9.0\n74,473,8.5\n74,474,8.0\n74,475,20.5\n74,476,20.0\n74,477,19.5\n74,478,19.0\n74,479,18.5\n74,480,18.0\n74,481,17.5\n74,482,17.0\n74,483,16.5\n74,484,16.0\n74,485,15.5\n74,486,15.0\n74,487,14.5\n74,488,14.0\n74,489,13.5\n74,490,13.0\n74,491,12.5\n74,492,12.0\n74,493,11.5\n74,494,11.0\n74,495,10.5\n74,496,10.0\n74,497,9.5\n74,498,9.0\n74,499,8.5\n74,500,21.0\n74,501,20.5\n74,502,20.0\n74,503,19.5\n74,504,19.0\n74,505,18.5\n74,506,18.0\n74,507,17.5\n74,508,17.0\n74,509,16.5\n74,510,16.0\n74,511,15.5\n74,512,15.0\n74,513,14.5\n74,514,14.0\n74,515,13.5\n74,516,13.0\n74,517,12.5\n74,518,12.0\n74,519,11.5\n74,520,11.0\n74,521,10.5\n74,522,10.0\n74,523,9.5\n74,524,9.0\n74,525,21.5\n74,526,21.0\n74,527,20.5\n74,528,20.0\n74,529,19.5\n74,530,19.0\n74,531,18.5\n74,532,18.0\n74,533,17.5\n74,534,17.0\n74,535,16.5\n74,536,16.0\n74,537,15.5\n74,538,15.0\n74,539,14.5\n74,540,14.0\n74,541,13.5\n74,542,13.0\n74,543,12.5\n74,544,12.0\n74,545,11.5\n74,546,11.0\n74,547,10.5\n74,548,10.0\n74,549,9.5\n74,550,22.0\n74,551,21.5\n74,552,21.0\n74,553,20.5\n74,554,20.0\n74,555,19.5\n74,556,19.0\n74,557,18.5\n74,558,18.0\n74,559,17.5\n74,560,17.0\n74,561,16.5\n74,562,16.0\n74,563,15.5\n74,564,15.0\n74,565,14.5\n74,566,14.0\n74,567,13.5\n74,568,13.0\n74,569,12.5\n74,570,12.0\n74,571,11.5\n74,572,11.0\n74,573,10.5\n74,574,10.0\n74,575,22.5\n74,576,22.0\n74,577,21.5\n74,578,21.0\n74,579,20.5\n74,580,20.0\n74,581,19.5\n74,582,19.0\n74,583,18.5\n74,584,18.0\n74,585,17.5\n74,586,17.0\n74,587,16.5\n74,588,16.0\n74,589,15.5\n74,590,15.0\n74,591,14.5\n74,592,14.0\n74,593,13.5\n74,594,13.0\n74,595,12.5\n74,596,12.0\n74,597,11.5\n74,598,11.0\n74,599,10.5\n74,600,23.0\n74,601,22.5\n74,602,22.0\n74,603,21.5\n74,604,21.0\n74,605,20.5\n74,606,20.0\n74,607,19.5\n74,608,19.0\n74,609,18.5\n74,610,18.0\n74,611,17.5\n74,612,17.0\n74,613,16.5\n74,614,16.0\n74,615,15.5\n74,616,15.0\n74,617,14.5\n74,618,14.0\n74,619,13.5\n74,620,13.0\n74,621,12.5\n74,622,12.0\n74,623,11.5\n74,624,11.0\n75,0,1.5\n75,1,2.0\n75,2,2.5\n75,3,3.0\n75,4,3.5\n75,5,4.0\n75,6,4.5\n75,7,5.0\n75,8,5.5\n75,9,6.0\n75,10,6.5\n75,11,7.0\n75,12,7.5\n75,13,8.0\n75,14,8.5\n75,15,9.0\n75,16,9.5\n75,17,10.0\n75,18,10.5\n75,19,11.0\n75,20,11.5\n75,21,12.0\n75,22,12.5\n75,23,13.0\n75,24,13.5\n75,25,1.0\n75,26,1.5\n75,27,2.0\n75,28,2.5\n75,29,3.0\n75,30,3.5\n75,31,4.0\n75,32,4.5\n75,33,5.0\n75,34,5.5\n75,35,6.0\n75,36,6.5\n75,37,7.0\n75,38,7.5\n75,39,8.0\n75,40,8.5\n75,41,9.0\n75,42,9.5\n75,43,10.0\n75,44,10.5\n75,45,11.0\n75,46,11.5\n75,47,12.0\n75,48,12.5\n75,49,13.0\n75,50,0.5\n75,51,1.0\n75,52,1.5\n75,53,2.0\n75,54,2.5\n75,55,3.0\n75,56,3.5\n75,57,4.0\n75,58,4.5\n75,59,5.0\n75,60,5.5\n75,61,6.0\n75,62,6.5\n75,63,7.0\n75,64,7.5\n75,65,8.0\n75,66,8.5\n75,67,9.0\n75,68,9.5\n75,69,10.0\n75,70,10.5\n75,71,11.0\n75,72,11.5\n75,73,12.0\n75,74,12.5\n75,75,0\n75,76,0.5\n75,77,1.0\n75,78,1.5\n75,79,2.0\n75,80,2.5\n75,81,3.0\n75,82,3.5\n75,83,4.0\n75,84,4.5\n75,85,5.0\n75,86,5.5\n75,87,6.0\n75,88,6.5\n75,89,7.0\n75,90,7.5\n75,91,8.0\n75,92,8.5\n75,93,9.0\n75,94,9.5\n75,95,10.0\n75,96,10.5\n75,97,11.0\n75,98,11.5\n75,99,12.0\n75,100,0.5\n75,101,1.0\n75,102,1.5\n75,103,2.0\n75,104,2.5\n75,105,3.0\n75,106,3.5\n75,107,4.0\n75,108,4.5\n75,109,5.0\n75,110,5.5\n75,111,6.0\n75,112,6.5\n75,113,7.0\n75,114,7.5\n75,115,8.0\n75,116,8.5\n75,117,9.0\n75,118,9.5\n75,119,10.0\n75,120,10.5\n75,121,11.0\n75,122,11.5\n75,123,12.0\n75,124,12.5\n75,125,1.0\n75,126,1.5\n75,127,2.0\n75,128,2.5\n75,129,3.0\n75,130,3.5\n75,131,4.0\n75,132,4.5\n75,133,5.0\n75,134,5.5\n75,135,6.0\n75,136,6.5\n75,137,7.0\n75,138,7.5\n75,139,8.0\n75,140,8.5\n75,141,9.0\n75,142,9.5\n75,143,10.0\n75,144,10.5\n75,145,11.0\n75,146,11.5\n75,147,12.0\n75,148,12.5\n75,149,13.0\n75,150,1.5\n75,151,2.0\n75,152,2.5\n75,153,3.0\n75,154,3.5\n75,155,4.0\n75,156,4.5\n75,157,5.0\n75,158,5.5\n75,159,6.0\n75,160,6.5\n75,161,7.0\n75,162,7.5\n75,163,8.0\n75,164,8.5\n75,165,9.0\n75,166,9.5\n75,167,10.0\n75,168,10.5\n75,169,11.0\n75,170,11.5\n75,171,12.0\n75,172,12.5\n75,173,13.0\n75,174,13.5\n75,175,2.0\n75,176,2.5\n75,177,3.0\n75,178,3.5\n75,179,4.0\n75,180,4.5\n75,181,5.0\n75,182,5.5\n75,183,6.0\n75,184,6.5\n75,185,7.0\n75,186,7.5\n75,187,8.0\n75,188,8.5\n75,189,9.0\n75,190,9.5\n75,191,10.0\n75,192,10.5\n75,193,11.0\n75,194,11.5\n75,195,12.0\n75,196,12.5\n75,197,13.0\n75,198,13.5\n75,199,14.0\n75,200,2.5\n75,201,3.0\n75,202,3.5\n75,203,4.0\n75,204,4.5\n75,205,5.0\n75,206,5.5\n75,207,6.0\n75,208,6.5\n75,209,7.0\n75,210,7.5\n75,211,8.0\n75,212,8.5\n75,213,9.0\n75,214,9.5\n75,215,10.0\n75,216,10.5\n75,217,11.0\n75,218,11.5\n75,219,12.0\n75,220,12.5\n75,221,13.0\n75,222,13.5\n75,223,14.0\n75,224,14.5\n75,225,3.0\n75,226,3.5\n75,227,4.0\n75,228,4.5\n75,229,5.0\n75,230,5.5\n75,231,6.0\n75,232,6.5\n75,233,7.0\n75,234,7.5\n75,235,8.0\n75,236,8.5\n75,237,9.0\n75,238,9.5\n75,239,10.0\n75,240,10.5\n75,241,11.0\n75,242,11.5\n75,243,12.0\n75,244,12.5\n75,245,13.0\n75,246,13.5\n75,247,14.0\n75,248,14.5\n75,249,15.0\n75,250,3.5\n75,251,4.0\n75,252,4.5\n75,253,5.0\n75,254,5.5\n75,255,6.0\n75,256,6.5\n75,257,7.0\n75,258,7.5\n75,259,8.0\n75,260,8.5\n75,261,9.0\n75,262,9.5\n75,263,10.0\n75,264,10.5\n75,265,11.0\n75,266,11.5\n75,267,12.0\n75,268,12.5\n75,269,13.0\n75,270,13.5\n75,271,14.0\n75,272,14.5\n75,273,15.0\n75,274,15.5\n75,275,4.0\n75,276,4.5\n75,277,5.0\n75,278,5.5\n75,279,6.0\n75,280,6.5\n75,281,7.0\n75,282,7.5\n75,283,8.0\n75,284,8.5\n75,285,9.0\n75,286,9.5\n75,287,10.0\n75,288,10.5\n75,289,11.0\n75,290,11.5\n75,291,12.0\n75,292,12.5\n75,293,13.0\n75,294,13.5\n75,295,14.0\n75,296,14.5\n75,297,15.0\n75,298,15.5\n75,299,16.0\n75,300,4.5\n75,301,5.0\n75,302,5.5\n75,303,6.0\n75,304,6.5\n75,305,7.0\n75,306,7.5\n75,307,8.0\n75,308,8.5\n75,309,9.0\n75,310,9.5\n75,311,10.0\n75,312,10.5\n75,313,11.0\n75,314,11.5\n75,315,12.0\n75,316,12.5\n75,317,13.0\n75,318,13.5\n75,319,14.0\n75,320,14.5\n75,321,15.0\n75,322,15.5\n75,323,16.0\n75,324,16.5\n75,325,5.0\n75,326,5.5\n75,327,6.0\n75,328,6.5\n75,329,7.0\n75,330,7.5\n75,331,8.0\n75,332,8.5\n75,333,9.0\n75,334,9.5\n75,335,10.0\n75,336,10.5\n75,337,11.0\n75,338,11.5\n75,339,12.0\n75,340,12.5\n75,341,13.0\n75,342,13.5\n75,343,14.0\n75,344,14.5\n75,345,15.0\n75,346,15.5\n75,347,16.0\n75,348,16.5\n75,349,17.0\n75,350,5.5\n75,351,6.0\n75,352,6.5\n75,353,7.0\n75,354,7.5\n75,355,8.0\n75,356,8.5\n75,357,9.0\n75,358,9.5\n75,359,10.0\n75,360,10.5\n75,361,11.0\n75,362,11.5\n75,363,12.0\n75,364,12.5\n75,365,13.0\n75,366,13.5\n75,367,14.0\n75,368,14.5\n75,369,15.0\n75,370,15.5\n75,371,16.0\n75,372,16.5\n75,373,17.0\n75,374,17.5\n75,375,6.0\n75,376,6.5\n75,377,7.0\n75,378,7.5\n75,379,8.0\n75,380,8.5\n75,381,9.0\n75,382,9.5\n75,383,10.0\n75,384,10.5\n75,385,11.0\n75,386,11.5\n75,387,12.0\n75,388,12.5\n75,389,13.0\n75,390,13.5\n75,391,14.0\n75,392,14.5\n75,393,15.0\n75,394,15.5\n75,395,16.0\n75,396,16.5\n75,397,17.0\n75,398,17.5\n75,399,18.0\n75,400,6.5\n75,401,7.0\n75,402,7.5\n75,403,8.0\n75,404,8.5\n75,405,9.0\n75,406,9.5\n75,407,10.0\n75,408,10.5\n75,409,11.0\n75,410,11.5\n75,411,12.0\n75,412,12.5\n75,413,13.0\n75,414,13.5\n75,415,14.0\n75,416,14.5\n75,417,15.0\n75,418,15.5\n75,419,16.0\n75,420,16.5\n75,421,17.0\n75,422,17.5\n75,423,18.0\n75,424,18.5\n75,425,7.0\n75,426,7.5\n75,427,8.0\n75,428,8.5\n75,429,9.0\n75,430,9.5\n75,431,10.0\n75,432,10.5\n75,433,11.0\n75,434,11.5\n75,435,12.0\n75,436,12.5\n75,437,13.0\n75,438,13.5\n75,439,14.0\n75,440,14.5\n75,441,15.0\n75,442,15.5\n75,443,16.0\n75,444,16.5\n75,445,17.0\n75,446,17.5\n75,447,18.0\n75,448,18.5\n75,449,19.0\n75,450,7.5\n75,451,8.0\n75,452,8.5\n75,453,9.0\n75,454,9.5\n75,455,10.0\n75,456,10.5\n75,457,11.0\n75,458,11.5\n75,459,12.0\n75,460,12.5\n75,461,13.0\n75,462,13.5\n75,463,14.0\n75,464,14.5\n75,465,15.0\n75,466,15.5\n75,467,16.0\n75,468,16.5\n75,469,17.0\n75,470,17.5\n75,471,18.0\n75,472,18.5\n75,473,19.0\n75,474,19.5\n75,475,8.0\n75,476,8.5\n75,477,9.0\n75,478,9.5\n75,479,10.0\n75,480,10.5\n75,481,11.0\n75,482,11.5\n75,483,12.0\n75,484,12.5\n75,485,13.0\n75,486,13.5\n75,487,14.0\n75,488,14.5\n75,489,15.0\n75,490,15.5\n75,491,16.0\n75,492,16.5\n75,493,17.0\n75,494,17.5\n75,495,18.0\n75,496,18.5\n75,497,19.0\n75,498,19.5\n75,499,20.0\n75,500,8.5\n75,501,9.0\n75,502,9.5\n75,503,10.0\n75,504,10.5\n75,505,11.0\n75,506,11.5\n75,507,12.0\n75,508,12.5\n75,509,13.0\n75,510,13.5\n75,511,14.0\n75,512,14.5\n75,513,15.0\n75,514,15.5\n75,515,16.0\n75,516,16.5\n75,517,17.0\n75,518,17.5\n75,519,18.0\n75,520,18.5\n75,521,19.0\n75,522,19.5\n75,523,20.0\n75,524,20.5\n75,525,9.0\n75,526,9.5\n75,527,10.0\n75,528,10.5\n75,529,11.0\n75,530,11.5\n75,531,12.0\n75,532,12.5\n75,533,13.0\n75,534,13.5\n75,535,14.0\n75,536,14.5\n75,537,15.0\n75,538,15.5\n75,539,16.0\n75,540,16.5\n75,541,17.0\n75,542,17.5\n75,543,18.0\n75,544,18.5\n75,545,19.0\n75,546,19.5\n75,547,20.0\n75,548,20.5\n75,549,21.0\n75,550,9.5\n75,551,10.0\n75,552,10.5\n75,553,11.0\n75,554,11.5\n75,555,12.0\n75,556,12.5\n75,557,13.0\n75,558,13.5\n75,559,14.0\n75,560,14.5\n75,561,15.0\n75,562,15.5\n75,563,16.0\n75,564,16.5\n75,565,17.0\n75,566,17.5\n75,567,18.0\n75,568,18.5\n75,569,19.0\n75,570,19.5\n75,571,20.0\n75,572,20.5\n75,573,21.0\n75,574,21.5\n75,575,10.0\n75,576,10.5\n75,577,11.0\n75,578,11.5\n75,579,12.0\n75,580,12.5\n75,581,13.0\n75,582,13.5\n75,583,14.0\n75,584,14.5\n75,585,15.0\n75,586,15.5\n75,587,16.0\n75,588,16.5\n75,589,17.0\n75,590,17.5\n75,591,18.0\n75,592,18.5\n75,593,19.0\n75,594,19.5\n75,595,20.0\n75,596,20.5\n75,597,21.0\n75,598,21.5\n75,599,22.0\n75,600,10.5\n75,601,11.0\n75,602,11.5\n75,603,12.0\n75,604,12.5\n75,605,13.0\n75,606,13.5\n75,607,14.0\n75,608,14.5\n75,609,15.0\n75,610,15.5\n75,611,16.0\n75,612,16.5\n75,613,17.0\n75,614,17.5\n75,615,18.0\n75,616,18.5\n75,617,19.0\n75,618,19.5\n75,619,20.0\n75,620,20.5\n75,621,21.0\n75,622,21.5\n75,623,22.0\n75,624,22.5\n76,0,2.0\n76,1,1.5\n76,2,2.0\n76,3,2.5\n76,4,3.0\n76,5,3.5\n76,6,4.0\n76,7,4.5\n76,8,5.0\n76,9,5.5\n76,10,6.0\n76,11,6.5\n76,12,7.0\n76,13,7.5\n76,14,8.0\n76,15,8.5\n76,16,9.0\n76,17,9.5\n76,18,10.0\n76,19,10.5\n76,20,11.0\n76,21,11.5\n76,22,12.0\n76,23,12.5\n76,24,13.0\n76,25,1.5\n76,26,1.0\n76,27,1.5\n76,28,2.0\n76,29,2.5\n76,30,3.0\n76,31,3.5\n76,32,4.0\n76,33,4.5\n76,34,5.0\n76,35,5.5\n76,36,6.0\n76,37,6.5\n76,38,7.0\n76,39,7.5\n76,40,8.0\n76,41,8.5\n76,42,9.0\n76,43,9.5\n76,44,10.0\n76,45,10.5\n76,46,11.0\n76,47,11.5\n76,48,12.0\n76,49,12.5\n76,50,1.0\n76,51,0.5\n76,52,1.0\n76,53,1.5\n76,54,2.0\n76,55,2.5\n76,56,3.0\n76,57,3.5\n76,58,4.0\n76,59,4.5\n76,60,5.0\n76,61,5.5\n76,62,6.0\n76,63,6.5\n76,64,7.0\n76,65,7.5\n76,66,8.0\n76,67,8.5\n76,68,9.0\n76,69,9.5\n76,70,10.0\n76,71,10.5\n76,72,11.0\n76,73,11.5\n76,74,12.0\n76,75,0.5\n76,76,0\n76,77,0.5\n76,78,1.0\n76,79,1.5\n76,80,2.0\n76,81,2.5\n76,82,3.0\n76,83,3.5\n76,84,4.0\n76,85,4.5\n76,86,5.0\n76,87,5.5\n76,88,6.0\n76,89,6.5\n76,90,7.0\n76,91,7.5\n76,92,8.0\n76,93,8.5\n76,94,9.0\n76,95,9.5\n76,96,10.0\n76,97,10.5\n76,98,11.0\n76,99,11.5\n76,100,1.0\n76,101,0.5\n76,102,1.0\n76,103,1.5\n76,104,2.0\n76,105,2.5\n76,106,3.0\n76,107,3.5\n76,108,4.0\n76,109,4.5\n76,110,5.0\n76,111,5.5\n76,112,6.0\n76,113,6.5\n76,114,7.0\n76,115,7.5\n76,116,8.0\n76,117,8.5\n76,118,9.0\n76,119,9.5\n76,120,10.0\n76,121,10.5\n76,122,11.0\n76,123,11.5\n76,124,12.0\n76,125,1.5\n76,126,1.0\n76,127,1.5\n76,128,2.0\n76,129,2.5\n76,130,3.0\n76,131,3.5\n76,132,4.0\n76,133,4.5\n76,134,5.0\n76,135,5.5\n76,136,6.0\n76,137,6.5\n76,138,7.0\n76,139,7.5\n76,140,8.0\n76,141,8.5\n76,142,9.0\n76,143,9.5\n76,144,10.0\n76,145,10.5\n76,146,11.0\n76,147,11.5\n76,148,12.0\n76,149,12.5\n76,150,2.0\n76,151,1.5\n76,152,2.0\n76,153,2.5\n76,154,3.0\n76,155,3.5\n76,156,4.0\n76,157,4.5\n76,158,5.0\n76,159,5.5\n76,160,6.0\n76,161,6.5\n76,162,7.0\n76,163,7.5\n76,164,8.0\n76,165,8.5\n76,166,9.0\n76,167,9.5\n76,168,10.0\n76,169,10.5\n76,170,11.0\n76,171,11.5\n76,172,12.0\n76,173,12.5\n76,174,13.0\n76,175,2.5\n76,176,2.0\n76,177,2.5\n76,178,3.0\n76,179,3.5\n76,180,4.0\n76,181,4.5\n76,182,5.0\n76,183,5.5\n76,184,6.0\n76,185,6.5\n76,186,7.0\n76,187,7.5\n76,188,8.0\n76,189,8.5\n76,190,9.0\n76,191,9.5\n76,192,10.0\n76,193,10.5\n76,194,11.0\n76,195,11.5\n76,196,12.0\n76,197,12.5\n76,198,13.0\n76,199,13.5\n76,200,3.0\n76,201,2.5\n76,202,3.0\n76,203,3.5\n76,204,4.0\n76,205,4.5\n76,206,5.0\n76,207,5.5\n76,208,6.0\n76,209,6.5\n76,210,7.0\n76,211,7.5\n76,212,8.0\n76,213,8.5\n76,214,9.0\n76,215,9.5\n76,216,10.0\n76,217,10.5\n76,218,11.0\n76,219,11.5\n76,220,12.0\n76,221,12.5\n76,222,13.0\n76,223,13.5\n76,224,14.0\n76,225,3.5\n76,226,3.0\n76,227,3.5\n76,228,4.0\n76,229,4.5\n76,230,5.0\n76,231,5.5\n76,232,6.0\n76,233,6.5\n76,234,7.0\n76,235,7.5\n76,236,8.0\n76,237,8.5\n76,238,9.0\n76,239,9.5\n76,240,10.0\n76,241,10.5\n76,242,11.0\n76,243,11.5\n76,244,12.0\n76,245,12.5\n76,246,13.0\n76,247,13.5\n76,248,14.0\n76,249,14.5\n76,250,4.0\n76,251,3.5\n76,252,4.0\n76,253,4.5\n76,254,5.0\n76,255,5.5\n76,256,6.0\n76,257,6.5\n76,258,7.0\n76,259,7.5\n76,260,8.0\n76,261,8.5\n76,262,9.0\n76,263,9.5\n76,264,10.0\n76,265,10.5\n76,266,11.0\n76,267,11.5\n76,268,12.0\n76,269,12.5\n76,270,13.0\n76,271,13.5\n76,272,14.0\n76,273,14.5\n76,274,15.0\n76,275,4.5\n76,276,4.0\n76,277,4.5\n76,278,5.0\n76,279,5.5\n76,280,6.0\n76,281,6.5\n76,282,7.0\n76,283,7.5\n76,284,8.0\n76,285,8.5\n76,286,9.0\n76,287,9.5\n76,288,10.0\n76,289,10.5\n76,290,11.0\n76,291,11.5\n76,292,12.0\n76,293,12.5\n76,294,13.0\n76,295,13.5\n76,296,14.0\n76,297,14.5\n76,298,15.0\n76,299,15.5\n76,300,5.0\n76,301,4.5\n76,302,5.0\n76,303,5.5\n76,304,6.0\n76,305,6.5\n76,306,7.0\n76,307,7.5\n76,308,8.0\n76,309,8.5\n76,310,9.0\n76,311,9.5\n76,312,10.0\n76,313,10.5\n76,314,11.0\n76,315,11.5\n76,316,12.0\n76,317,12.5\n76,318,13.0\n76,319,13.5\n76,320,14.0\n76,321,14.5\n76,322,15.0\n76,323,15.5\n76,324,16.0\n76,325,5.5\n76,326,5.0\n76,327,5.5\n76,328,6.0\n76,329,6.5\n76,330,7.0\n76,331,7.5\n76,332,8.0\n76,333,8.5\n76,334,9.0\n76,335,9.5\n76,336,10.0\n76,337,10.5\n76,338,11.0\n76,339,11.5\n76,340,12.0\n76,341,12.5\n76,342,13.0\n76,343,13.5\n76,344,14.0\n76,345,14.5\n76,346,15.0\n76,347,15.5\n76,348,16.0\n76,349,16.5\n76,350,6.0\n76,351,5.5\n76,352,6.0\n76,353,6.5\n76,354,7.0\n76,355,7.5\n76,356,8.0\n76,357,8.5\n76,358,9.0\n76,359,9.5\n76,360,10.0\n76,361,10.5\n76,362,11.0\n76,363,11.5\n76,364,12.0\n76,365,12.5\n76,366,13.0\n76,367,13.5\n76,368,14.0\n76,369,14.5\n76,370,15.0\n76,371,15.5\n76,372,16.0\n76,373,16.5\n76,374,17.0\n76,375,6.5\n76,376,6.0\n76,377,6.5\n76,378,7.0\n76,379,7.5\n76,380,8.0\n76,381,8.5\n76,382,9.0\n76,383,9.5\n76,384,10.0\n76,385,10.5\n76,386,11.0\n76,387,11.5\n76,388,12.0\n76,389,12.5\n76,390,13.0\n76,391,13.5\n76,392,14.0\n76,393,14.5\n76,394,15.0\n76,395,15.5\n76,396,16.0\n76,397,16.5\n76,398,17.0\n76,399,17.5\n76,400,7.0\n76,401,6.5\n76,402,7.0\n76,403,7.5\n76,404,8.0\n76,405,8.5\n76,406,9.0\n76,407,9.5\n76,408,10.0\n76,409,10.5\n76,410,11.0\n76,411,11.5\n76,412,12.0\n76,413,12.5\n76,414,13.0\n76,415,13.5\n76,416,14.0\n76,417,14.5\n76,418,15.0\n76,419,15.5\n76,420,16.0\n76,421,16.5\n76,422,17.0\n76,423,17.5\n76,424,18.0\n76,425,7.5\n76,426,7.0\n76,427,7.5\n76,428,8.0\n76,429,8.5\n76,430,9.0\n76,431,9.5\n76,432,10.0\n76,433,10.5\n76,434,11.0\n76,435,11.5\n76,436,12.0\n76,437,12.5\n76,438,13.0\n76,439,13.5\n76,440,14.0\n76,441,14.5\n76,442,15.0\n76,443,15.5\n76,444,16.0\n76,445,16.5\n76,446,17.0\n76,447,17.5\n76,448,18.0\n76,449,18.5\n76,450,8.0\n76,451,7.5\n76,452,8.0\n76,453,8.5\n76,454,9.0\n76,455,9.5\n76,456,10.0\n76,457,10.5\n76,458,11.0\n76,459,11.5\n76,460,12.0\n76,461,12.5\n76,462,13.0\n76,463,13.5\n76,464,14.0\n76,465,14.5\n76,466,15.0\n76,467,15.5\n76,468,16.0\n76,469,16.5\n76,470,17.0\n76,471,17.5\n76,472,18.0\n76,473,18.5\n76,474,19.0\n76,475,8.5\n76,476,8.0\n76,477,8.5\n76,478,9.0\n76,479,9.5\n76,480,10.0\n76,481,10.5\n76,482,11.0\n76,483,11.5\n76,484,12.0\n76,485,12.5\n76,486,13.0\n76,487,13.5\n76,488,14.0\n76,489,14.5\n76,490,15.0\n76,491,15.5\n76,492,16.0\n76,493,16.5\n76,494,17.0\n76,495,17.5\n76,496,18.0\n76,497,18.5\n76,498,19.0\n76,499,19.5\n76,500,9.0\n76,501,8.5\n76,502,9.0\n76,503,9.5\n76,504,10.0\n76,505,10.5\n76,506,11.0\n76,507,11.5\n76,508,12.0\n76,509,12.5\n76,510,13.0\n76,511,13.5\n76,512,14.0\n76,513,14.5\n76,514,15.0\n76,515,15.5\n76,516,16.0\n76,517,16.5\n76,518,17.0\n76,519,17.5\n76,520,18.0\n76,521,18.5\n76,522,19.0\n76,523,19.5\n76,524,20.0\n76,525,9.5\n76,526,9.0\n76,527,9.5\n76,528,10.0\n76,529,10.5\n76,530,11.0\n76,531,11.5\n76,532,12.0\n76,533,12.5\n76,534,13.0\n76,535,13.5\n76,536,14.0\n76,537,14.5\n76,538,15.0\n76,539,15.5\n76,540,16.0\n76,541,16.5\n76,542,17.0\n76,543,17.5\n76,544,18.0\n76,545,18.5\n76,546,19.0\n76,547,19.5\n76,548,20.0\n76,549,20.5\n76,550,10.0\n76,551,9.5\n76,552,10.0\n76,553,10.5\n76,554,11.0\n76,555,11.5\n76,556,12.0\n76,557,12.5\n76,558,13.0\n76,559,13.5\n76,560,14.0\n76,561,14.5\n76,562,15.0\n76,563,15.5\n76,564,16.0\n76,565,16.5\n76,566,17.0\n76,567,17.5\n76,568,18.0\n76,569,18.5\n76,570,19.0\n76,571,19.5\n76,572,20.0\n76,573,20.5\n76,574,21.0\n76,575,10.5\n76,576,10.0\n76,577,10.5\n76,578,11.0\n76,579,11.5\n76,580,12.0\n76,581,12.5\n76,582,13.0\n76,583,13.5\n76,584,14.0\n76,585,14.5\n76,586,15.0\n76,587,15.5\n76,588,16.0\n76,589,16.5\n76,590,17.0\n76,591,17.5\n76,592,18.0\n76,593,18.5\n76,594,19.0\n76,595,19.5\n76,596,20.0\n76,597,20.5\n76,598,21.0\n76,599,21.5\n76,600,11.0\n76,601,10.5\n76,602,11.0\n76,603,11.5\n76,604,12.0\n76,605,12.5\n76,606,13.0\n76,607,13.5\n76,608,14.0\n76,609,14.5\n76,610,15.0\n76,611,15.5\n76,612,16.0\n76,613,16.5\n76,614,17.0\n76,615,17.5\n76,616,18.0\n76,617,18.5\n76,618,19.0\n76,619,19.5\n76,620,20.0\n76,621,20.5\n76,622,21.0\n76,623,21.5\n76,624,22.0\n77,0,2.5\n77,1,2.0\n77,2,1.5\n77,3,2.0\n77,4,2.5\n77,5,3.0\n77,6,3.5\n77,7,4.0\n77,8,4.5\n77,9,5.0\n77,10,5.5\n77,11,6.0\n77,12,6.5\n77,13,7.0\n77,14,7.5\n77,15,8.0\n77,16,8.5\n77,17,9.0\n77,18,9.5\n77,19,10.0\n77,20,10.5\n77,21,11.0\n77,22,11.5\n77,23,12.0\n77,24,12.5\n77,25,2.0\n77,26,1.5\n77,27,1.0\n77,28,1.5\n77,29,2.0\n77,30,2.5\n77,31,3.0\n77,32,3.5\n77,33,4.0\n77,34,4.5\n77,35,5.0\n77,36,5.5\n77,37,6.0\n77,38,6.5\n77,39,7.0\n77,40,7.5\n77,41,8.0\n77,42,8.5\n77,43,9.0\n77,44,9.5\n77,45,10.0\n77,46,10.5\n77,47,11.0\n77,48,11.5\n77,49,12.0\n77,50,1.5\n77,51,1.0\n77,52,0.5\n77,53,1.0\n77,54,1.5\n77,55,2.0\n77,56,2.5\n77,57,3.0\n77,58,3.5\n77,59,4.0\n77,60,4.5\n77,61,5.0\n77,62,5.5\n77,63,6.0\n77,64,6.5\n77,65,7.0\n77,66,7.5\n77,67,8.0\n77,68,8.5\n77,69,9.0\n77,70,9.5\n77,71,10.0\n77,72,10.5\n77,73,11.0\n77,74,11.5\n77,75,1.0\n77,76,0.5\n77,77,0\n77,78,0.5\n77,79,1.0\n77,80,1.5\n77,81,2.0\n77,82,2.5\n77,83,3.0\n77,84,3.5\n77,85,4.0\n77,86,4.5\n77,87,5.0\n77,88,5.5\n77,89,6.0\n77,90,6.5\n77,91,7.0\n77,92,7.5\n77,93,8.0\n77,94,8.5\n77,95,9.0\n77,96,9.5\n77,97,10.0\n77,98,10.5\n77,99,11.0\n77,100,1.5\n77,101,1.0\n77,102,0.5\n77,103,1.0\n77,104,1.5\n77,105,2.0\n77,106,2.5\n77,107,3.0\n77,108,3.5\n77,109,4.0\n77,110,4.5\n77,111,5.0\n77,112,5.5\n77,113,6.0\n77,114,6.5\n77,115,7.0\n77,116,7.5\n77,117,8.0\n77,118,8.5\n77,119,9.0\n77,120,9.5\n77,121,10.0\n77,122,10.5\n77,123,11.0\n77,124,11.5\n77,125,2.0\n77,126,1.5\n77,127,1.0\n77,128,1.5\n77,129,2.0\n77,130,2.5\n77,131,3.0\n77,132,3.5\n77,133,4.0\n77,134,4.5\n77,135,5.0\n77,136,5.5\n77,137,6.0\n77,138,6.5\n77,139,7.0\n77,140,7.5\n77,141,8.0\n77,142,8.5\n77,143,9.0\n77,144,9.5\n77,145,10.0\n77,146,10.5\n77,147,11.0\n77,148,11.5\n77,149,12.0\n77,150,2.5\n77,151,2.0\n77,152,1.5\n77,153,2.0\n77,154,2.5\n77,155,3.0\n77,156,3.5\n77,157,4.0\n77,158,4.5\n77,159,5.0\n77,160,5.5\n77,161,6.0\n77,162,6.5\n77,163,7.0\n77,164,7.5\n77,165,8.0\n77,166,8.5\n77,167,9.0\n77,168,9.5\n77,169,10.0\n77,170,10.5\n77,171,11.0\n77,172,11.5\n77,173,12.0\n77,174,12.5\n77,175,3.0\n77,176,2.5\n77,177,2.0\n77,178,2.5\n77,179,3.0\n77,180,3.5\n77,181,4.0\n77,182,4.5\n77,183,5.0\n77,184,5.5\n77,185,6.0\n77,186,6.5\n77,187,7.0\n77,188,7.5\n77,189,8.0\n77,190,8.5\n77,191,9.0\n77,192,9.5\n77,193,10.0\n77,194,10.5\n77,195,11.0\n77,196,11.5\n77,197,12.0\n77,198,12.5\n77,199,13.0\n77,200,3.5\n77,201,3.0\n77,202,2.5\n77,203,3.0\n77,204,3.5\n77,205,4.0\n77,206,4.5\n77,207,5.0\n77,208,5.5\n77,209,6.0\n77,210,6.5\n77,211,7.0\n77,212,7.5\n77,213,8.0\n77,214,8.5\n77,215,9.0\n77,216,9.5\n77,217,10.0\n77,218,10.5\n77,219,11.0\n77,220,11.5\n77,221,12.0\n77,222,12.5\n77,223,13.0\n77,224,13.5\n77,225,4.0\n77,226,3.5\n77,227,3.0\n77,228,3.5\n77,229,4.0\n77,230,4.5\n77,231,5.0\n77,232,5.5\n77,233,6.0\n77,234,6.5\n77,235,7.0\n77,236,7.5\n77,237,8.0\n77,238,8.5\n77,239,9.0\n77,240,9.5\n77,241,10.0\n77,242,10.5\n77,243,11.0\n77,244,11.5\n77,245,12.0\n77,246,12.5\n77,247,13.0\n77,248,13.5\n77,249,14.0\n77,250,4.5\n77,251,4.0\n77,252,3.5\n77,253,4.0\n77,254,4.5\n77,255,5.0\n77,256,5.5\n77,257,6.0\n77,258,6.5\n77,259,7.0\n77,260,7.5\n77,261,8.0\n77,262,8.5\n77,263,9.0\n77,264,9.5\n77,265,10.0\n77,266,10.5\n77,267,11.0\n77,268,11.5\n77,269,12.0\n77,270,12.5\n77,271,13.0\n77,272,13.5\n77,273,14.0\n77,274,14.5\n77,275,5.0\n77,276,4.5\n77,277,4.0\n77,278,4.5\n77,279,5.0\n77,280,5.5\n77,281,6.0\n77,282,6.5\n77,283,7.0\n77,284,7.5\n77,285,8.0\n77,286,8.5\n77,287,9.0\n77,288,9.5\n77,289,10.0\n77,290,10.5\n77,291,11.0\n77,292,11.5\n77,293,12.0\n77,294,12.5\n77,295,13.0\n77,296,13.5\n77,297,14.0\n77,298,14.5\n77,299,15.0\n77,300,5.5\n77,301,5.0\n77,302,4.5\n77,303,5.0\n77,304,5.5\n77,305,6.0\n77,306,6.5\n77,307,7.0\n77,308,7.5\n77,309,8.0\n77,310,8.5\n77,311,9.0\n77,312,9.5\n77,313,10.0\n77,314,10.5\n77,315,11.0\n77,316,11.5\n77,317,12.0\n77,318,12.5\n77,319,13.0\n77,320,13.5\n77,321,14.0\n77,322,14.5\n77,323,15.0\n77,324,15.5\n77,325,6.0\n77,326,5.5\n77,327,5.0\n77,328,5.5\n77,329,6.0\n77,330,6.5\n77,331,7.0\n77,332,7.5\n77,333,8.0\n77,334,8.5\n77,335,9.0\n77,336,9.5\n77,337,10.0\n77,338,10.5\n77,339,11.0\n77,340,11.5\n77,341,12.0\n77,342,12.5\n77,343,13.0\n77,344,13.5\n77,345,14.0\n77,346,14.5\n77,347,15.0\n77,348,15.5\n77,349,16.0\n77,350,6.5\n77,351,6.0\n77,352,5.5\n77,353,6.0\n77,354,6.5\n77,355,7.0\n77,356,7.5\n77,357,8.0\n77,358,8.5\n77,359,9.0\n77,360,9.5\n77,361,10.0\n77,362,10.5\n77,363,11.0\n77,364,11.5\n77,365,12.0\n77,366,12.5\n77,367,13.0\n77,368,13.5\n77,369,14.0\n77,370,14.5\n77,371,15.0\n77,372,15.5\n77,373,16.0\n77,374,16.5\n77,375,7.0\n77,376,6.5\n77,377,6.0\n77,378,6.5\n77,379,7.0\n77,380,7.5\n77,381,8.0\n77,382,8.5\n77,383,9.0\n77,384,9.5\n77,385,10.0\n77,386,10.5\n77,387,11.0\n77,388,11.5\n77,389,12.0\n77,390,12.5\n77,391,13.0\n77,392,13.5\n77,393,14.0\n77,394,14.5\n77,395,15.0\n77,396,15.5\n77,397,16.0\n77,398,16.5\n77,399,17.0\n77,400,7.5\n77,401,7.0\n77,402,6.5\n77,403,7.0\n77,404,7.5\n77,405,8.0\n77,406,8.5\n77,407,9.0\n77,408,9.5\n77,409,10.0\n77,410,10.5\n77,411,11.0\n77,412,11.5\n77,413,12.0\n77,414,12.5\n77,415,13.0\n77,416,13.5\n77,417,14.0\n77,418,14.5\n77,419,15.0\n77,420,15.5\n77,421,16.0\n77,422,16.5\n77,423,17.0\n77,424,17.5\n77,425,8.0\n77,426,7.5\n77,427,7.0\n77,428,7.5\n77,429,8.0\n77,430,8.5\n77,431,9.0\n77,432,9.5\n77,433,10.0\n77,434,10.5\n77,435,11.0\n77,436,11.5\n77,437,12.0\n77,438,12.5\n77,439,13.0\n77,440,13.5\n77,441,14.0\n77,442,14.5\n77,443,15.0\n77,444,15.5\n77,445,16.0\n77,446,16.5\n77,447,17.0\n77,448,17.5\n77,449,18.0\n77,450,8.5\n77,451,8.0\n77,452,7.5\n77,453,8.0\n77,454,8.5\n77,455,9.0\n77,456,9.5\n77,457,10.0\n77,458,10.5\n77,459,11.0\n77,460,11.5\n77,461,12.0\n77,462,12.5\n77,463,13.0\n77,464,13.5\n77,465,14.0\n77,466,14.5\n77,467,15.0\n77,468,15.5\n77,469,16.0\n77,470,16.5\n77,471,17.0\n77,472,17.5\n77,473,18.0\n77,474,18.5\n77,475,9.0\n77,476,8.5\n77,477,8.0\n77,478,8.5\n77,479,9.0\n77,480,9.5\n77,481,10.0\n77,482,10.5\n77,483,11.0\n77,484,11.5\n77,485,12.0\n77,486,12.5\n77,487,13.0\n77,488,13.5\n77,489,14.0\n77,490,14.5\n77,491,15.0\n77,492,15.5\n77,493,16.0\n77,494,16.5\n77,495,17.0\n77,496,17.5\n77,497,18.0\n77,498,18.5\n77,499,19.0\n77,500,9.5\n77,501,9.0\n77,502,8.5\n77,503,9.0\n77,504,9.5\n77,505,10.0\n77,506,10.5\n77,507,11.0\n77,508,11.5\n77,509,12.0\n77,510,12.5\n77,511,13.0\n77,512,13.5\n77,513,14.0\n77,514,14.5\n77,515,15.0\n77,516,15.5\n77,517,16.0\n77,518,16.5\n77,519,17.0\n77,520,17.5\n77,521,18.0\n77,522,18.5\n77,523,19.0\n77,524,19.5\n77,525,10.0\n77,526,9.5\n77,527,9.0\n77,528,9.5\n77,529,10.0\n77,530,10.5\n77,531,11.0\n77,532,11.5\n77,533,12.0\n77,534,12.5\n77,535,13.0\n77,536,13.5\n77,537,14.0\n77,538,14.5\n77,539,15.0\n77,540,15.5\n77,541,16.0\n77,542,16.5\n77,543,17.0\n77,544,17.5\n77,545,18.0\n77,546,18.5\n77,547,19.0\n77,548,19.5\n77,549,20.0\n77,550,10.5\n77,551,10.0\n77,552,9.5\n77,553,10.0\n77,554,10.5\n77,555,11.0\n77,556,11.5\n77,557,12.0\n77,558,12.5\n77,559,13.0\n77,560,13.5\n77,561,14.0\n77,562,14.5\n77,563,15.0\n77,564,15.5\n77,565,16.0\n77,566,16.5\n77,567,17.0\n77,568,17.5\n77,569,18.0\n77,570,18.5\n77,571,19.0\n77,572,19.5\n77,573,20.0\n77,574,20.5\n77,575,11.0\n77,576,10.5\n77,577,10.0\n77,578,10.5\n77,579,11.0\n77,580,11.5\n77,581,12.0\n77,582,12.5\n77,583,13.0\n77,584,13.5\n77,585,14.0\n77,586,14.5\n77,587,15.0\n77,588,15.5\n77,589,16.0\n77,590,16.5\n77,591,17.0\n77,592,17.5\n77,593,18.0\n77,594,18.5\n77,595,19.0\n77,596,19.5\n77,597,20.0\n77,598,20.5\n77,599,21.0\n77,600,11.5\n77,601,11.0\n77,602,10.5\n77,603,11.0\n77,604,11.5\n77,605,12.0\n77,606,12.5\n77,607,13.0\n77,608,13.5\n77,609,14.0\n77,610,14.5\n77,611,15.0\n77,612,15.5\n77,613,16.0\n77,614,16.5\n77,615,17.0\n77,616,17.5\n77,617,18.0\n77,618,18.5\n77,619,19.0\n77,620,19.5\n77,621,20.0\n77,622,20.5\n77,623,21.0\n77,624,21.5\n78,0,3.0\n78,1,2.5\n78,2,2.0\n78,3,1.5\n78,4,2.0\n78,5,2.5\n78,6,3.0\n78,7,3.5\n78,8,4.0\n78,9,4.5\n78,10,5.0\n78,11,5.5\n78,12,6.0\n78,13,6.5\n78,14,7.0\n78,15,7.5\n78,16,8.0\n78,17,8.5\n78,18,9.0\n78,19,9.5\n78,20,10.0\n78,21,10.5\n78,22,11.0\n78,23,11.5\n78,24,12.0\n78,25,2.5\n78,26,2.0\n78,27,1.5\n78,28,1.0\n78,29,1.5\n78,30,2.0\n78,31,2.5\n78,32,3.0\n78,33,3.5\n78,34,4.0\n78,35,4.5\n78,36,5.0\n78,37,5.5\n78,38,6.0\n78,39,6.5\n78,40,7.0\n78,41,7.5\n78,42,8.0\n78,43,8.5\n78,44,9.0\n78,45,9.5\n78,46,10.0\n78,47,10.5\n78,48,11.0\n78,49,11.5\n78,50,2.0\n78,51,1.5\n78,52,1.0\n78,53,0.5\n78,54,1.0\n78,55,1.5\n78,56,2.0\n78,57,2.5\n78,58,3.0\n78,59,3.5\n78,60,4.0\n78,61,4.5\n78,62,5.0\n78,63,5.5\n78,64,6.0\n78,65,6.5\n78,66,7.0\n78,67,7.5\n78,68,8.0\n78,69,8.5\n78,70,9.0\n78,71,9.5\n78,72,10.0\n78,73,10.5\n78,74,11.0\n78,75,1.5\n78,76,1.0\n78,77,0.5\n78,78,0\n78,79,0.5\n78,80,1.0\n78,81,1.5\n78,82,2.0\n78,83,2.5\n78,84,3.0\n78,85,3.5\n78,86,4.0\n78,87,4.5\n78,88,5.0\n78,89,5.5\n78,90,6.0\n78,91,6.5\n78,92,7.0\n78,93,7.5\n78,94,8.0\n78,95,8.5\n78,96,9.0\n78,97,9.5\n78,98,10.0\n78,99,10.5\n78,100,2.0\n78,101,1.5\n78,102,1.0\n78,103,0.5\n78,104,1.0\n78,105,1.5\n78,106,2.0\n78,107,2.5\n78,108,3.0\n78,109,3.5\n78,110,4.0\n78,111,4.5\n78,112,5.0\n78,113,5.5\n78,114,6.0\n78,115,6.5\n78,116,7.0\n78,117,7.5\n78,118,8.0\n78,119,8.5\n78,120,9.0\n78,121,9.5\n78,122,10.0\n78,123,10.5\n78,124,11.0\n78,125,2.5\n78,126,2.0\n78,127,1.5\n78,128,1.0\n78,129,1.5\n78,130,2.0\n78,131,2.5\n78,132,3.0\n78,133,3.5\n78,134,4.0\n78,135,4.5\n78,136,5.0\n78,137,5.5\n78,138,6.0\n78,139,6.5\n78,140,7.0\n78,141,7.5\n78,142,8.0\n78,143,8.5\n78,144,9.0\n78,145,9.5\n78,146,10.0\n78,147,10.5\n78,148,11.0\n78,149,11.5\n78,150,3.0\n78,151,2.5\n78,152,2.0\n78,153,1.5\n78,154,2.0\n78,155,2.5\n78,156,3.0\n78,157,3.5\n78,158,4.0\n78,159,4.5\n78,160,5.0\n78,161,5.5\n78,162,6.0\n78,163,6.5\n78,164,7.0\n78,165,7.5\n78,166,8.0\n78,167,8.5\n78,168,9.0\n78,169,9.5\n78,170,10.0\n78,171,10.5\n78,172,11.0\n78,173,11.5\n78,174,12.0\n78,175,3.5\n78,176,3.0\n78,177,2.5\n78,178,2.0\n78,179,2.5\n78,180,3.0\n78,181,3.5\n78,182,4.0\n78,183,4.5\n78,184,5.0\n78,185,5.5\n78,186,6.0\n78,187,6.5\n78,188,7.0\n78,189,7.5\n78,190,8.0\n78,191,8.5\n78,192,9.0\n78,193,9.5\n78,194,10.0\n78,195,10.5\n78,196,11.0\n78,197,11.5\n78,198,12.0\n78,199,12.5\n78,200,4.0\n78,201,3.5\n78,202,3.0\n78,203,2.5\n78,204,3.0\n78,205,3.5\n78,206,4.0\n78,207,4.5\n78,208,5.0\n78,209,5.5\n78,210,6.0\n78,211,6.5\n78,212,7.0\n78,213,7.5\n78,214,8.0\n78,215,8.5\n78,216,9.0\n78,217,9.5\n78,218,10.0\n78,219,10.5\n78,220,11.0\n78,221,11.5\n78,222,12.0\n78,223,12.5\n78,224,13.0\n78,225,4.5\n78,226,4.0\n78,227,3.5\n78,228,3.0\n78,229,3.5\n78,230,4.0\n78,231,4.5\n78,232,5.0\n78,233,5.5\n78,234,6.0\n78,235,6.5\n78,236,7.0\n78,237,7.5\n78,238,8.0\n78,239,8.5\n78,240,9.0\n78,241,9.5\n78,242,10.0\n78,243,10.5\n78,244,11.0\n78,245,11.5\n78,246,12.0\n78,247,12.5\n78,248,13.0\n78,249,13.5\n78,250,5.0\n78,251,4.5\n78,252,4.0\n78,253,3.5\n78,254,4.0\n78,255,4.5\n78,256,5.0\n78,257,5.5\n78,258,6.0\n78,259,6.5\n78,260,7.0\n78,261,7.5\n78,262,8.0\n78,263,8.5\n78,264,9.0\n78,265,9.5\n78,266,10.0\n78,267,10.5\n78,268,11.0\n78,269,11.5\n78,270,12.0\n78,271,12.5\n78,272,13.0\n78,273,13.5\n78,274,14.0\n78,275,5.5\n78,276,5.0\n78,277,4.5\n78,278,4.0\n78,279,4.5\n78,280,5.0\n78,281,5.5\n78,282,6.0\n78,283,6.5\n78,284,7.0\n78,285,7.5\n78,286,8.0\n78,287,8.5\n78,288,9.0\n78,289,9.5\n78,290,10.0\n78,291,10.5\n78,292,11.0\n78,293,11.5\n78,294,12.0\n78,295,12.5\n78,296,13.0\n78,297,13.5\n78,298,14.0\n78,299,14.5\n78,300,6.0\n78,301,5.5\n78,302,5.0\n78,303,4.5\n78,304,5.0\n78,305,5.5\n78,306,6.0\n78,307,6.5\n78,308,7.0\n78,309,7.5\n78,310,8.0\n78,311,8.5\n78,312,9.0\n78,313,9.5\n78,314,10.0\n78,315,10.5\n78,316,11.0\n78,317,11.5\n78,318,12.0\n78,319,12.5\n78,320,13.0\n78,321,13.5\n78,322,14.0\n78,323,14.5\n78,324,15.0\n78,325,6.5\n78,326,6.0\n78,327,5.5\n78,328,5.0\n78,329,5.5\n78,330,6.0\n78,331,6.5\n78,332,7.0\n78,333,7.5\n78,334,8.0\n78,335,8.5\n78,336,9.0\n78,337,9.5\n78,338,10.0\n78,339,10.5\n78,340,11.0\n78,341,11.5\n78,342,12.0\n78,343,12.5\n78,344,13.0\n78,345,13.5\n78,346,14.0\n78,347,14.5\n78,348,15.0\n78,349,15.5\n78,350,7.0\n78,351,6.5\n78,352,6.0\n78,353,5.5\n78,354,6.0\n78,355,6.5\n78,356,7.0\n78,357,7.5\n78,358,8.0\n78,359,8.5\n78,360,9.0\n78,361,9.5\n78,362,10.0\n78,363,10.5\n78,364,11.0\n78,365,11.5\n78,366,12.0\n78,367,12.5\n78,368,13.0\n78,369,13.5\n78,370,14.0\n78,371,14.5\n78,372,15.0\n78,373,15.5\n78,374,16.0\n78,375,7.5\n78,376,7.0\n78,377,6.5\n78,378,6.0\n78,379,6.5\n78,380,7.0\n78,381,7.5\n78,382,8.0\n78,383,8.5\n78,384,9.0\n78,385,9.5\n78,386,10.0\n78,387,10.5\n78,388,11.0\n78,389,11.5\n78,390,12.0\n78,391,12.5\n78,392,13.0\n78,393,13.5\n78,394,14.0\n78,395,14.5\n78,396,15.0\n78,397,15.5\n78,398,16.0\n78,399,16.5\n78,400,8.0\n78,401,7.5\n78,402,7.0\n78,403,6.5\n78,404,7.0\n78,405,7.5\n78,406,8.0\n78,407,8.5\n78,408,9.0\n78,409,9.5\n78,410,10.0\n78,411,10.5\n78,412,11.0\n78,413,11.5\n78,414,12.0\n78,415,12.5\n78,416,13.0\n78,417,13.5\n78,418,14.0\n78,419,14.5\n78,420,15.0\n78,421,15.5\n78,422,16.0\n78,423,16.5\n78,424,17.0\n78,425,8.5\n78,426,8.0\n78,427,7.5\n78,428,7.0\n78,429,7.5\n78,430,8.0\n78,431,8.5\n78,432,9.0\n78,433,9.5\n78,434,10.0\n78,435,10.5\n78,436,11.0\n78,437,11.5\n78,438,12.0\n78,439,12.5\n78,440,13.0\n78,441,13.5\n78,442,14.0\n78,443,14.5\n78,444,15.0\n78,445,15.5\n78,446,16.0\n78,447,16.5\n78,448,17.0\n78,449,17.5\n78,450,9.0\n78,451,8.5\n78,452,8.0\n78,453,7.5\n78,454,8.0\n78,455,8.5\n78,456,9.0\n78,457,9.5\n78,458,10.0\n78,459,10.5\n78,460,11.0\n78,461,11.5\n78,462,12.0\n78,463,12.5\n78,464,13.0\n78,465,13.5\n78,466,14.0\n78,467,14.5\n78,468,15.0\n78,469,15.5\n78,470,16.0\n78,471,16.5\n78,472,17.0\n78,473,17.5\n78,474,18.0\n78,475,9.5\n78,476,9.0\n78,477,8.5\n78,478,8.0\n78,479,8.5\n78,480,9.0\n78,481,9.5\n78,482,10.0\n78,483,10.5\n78,484,11.0\n78,485,11.5\n78,486,12.0\n78,487,12.5\n78,488,13.0\n78,489,13.5\n78,490,14.0\n78,491,14.5\n78,492,15.0\n78,493,15.5\n78,494,16.0\n78,495,16.5\n78,496,17.0\n78,497,17.5\n78,498,18.0\n78,499,18.5\n78,500,10.0\n78,501,9.5\n78,502,9.0\n78,503,8.5\n78,504,9.0\n78,505,9.5\n78,506,10.0\n78,507,10.5\n78,508,11.0\n78,509,11.5\n78,510,12.0\n78,511,12.5\n78,512,13.0\n78,513,13.5\n78,514,14.0\n78,515,14.5\n78,516,15.0\n78,517,15.5\n78,518,16.0\n78,519,16.5\n78,520,17.0\n78,521,17.5\n78,522,18.0\n78,523,18.5\n78,524,19.0\n78,525,10.5\n78,526,10.0\n78,527,9.5\n78,528,9.0\n78,529,9.5\n78,530,10.0\n78,531,10.5\n78,532,11.0\n78,533,11.5\n78,534,12.0\n78,535,12.5\n78,536,13.0\n78,537,13.5\n78,538,14.0\n78,539,14.5\n78,540,15.0\n78,541,15.5\n78,542,16.0\n78,543,16.5\n78,544,17.0\n78,545,17.5\n78,546,18.0\n78,547,18.5\n78,548,19.0\n78,549,19.5\n78,550,11.0\n78,551,10.5\n78,552,10.0\n78,553,9.5\n78,554,10.0\n78,555,10.5\n78,556,11.0\n78,557,11.5\n78,558,12.0\n78,559,12.5\n78,560,13.0\n78,561,13.5\n78,562,14.0\n78,563,14.5\n78,564,15.0\n78,565,15.5\n78,566,16.0\n78,567,16.5\n78,568,17.0\n78,569,17.5\n78,570,18.0\n78,571,18.5\n78,572,19.0\n78,573,19.5\n78,574,20.0\n78,575,11.5\n78,576,11.0\n78,577,10.5\n78,578,10.0\n78,579,10.5\n78,580,11.0\n78,581,11.5\n78,582,12.0\n78,583,12.5\n78,584,13.0\n78,585,13.5\n78,586,14.0\n78,587,14.5\n78,588,15.0\n78,589,15.5\n78,590,16.0\n78,591,16.5\n78,592,17.0\n78,593,17.5\n78,594,18.0\n78,595,18.5\n78,596,19.0\n78,597,19.5\n78,598,20.0\n78,599,20.5\n78,600,12.0\n78,601,11.5\n78,602,11.0\n78,603,10.5\n78,604,11.0\n78,605,11.5\n78,606,12.0\n78,607,12.5\n78,608,13.0\n78,609,13.5\n78,610,14.0\n78,611,14.5\n78,612,15.0\n78,613,15.5\n78,614,16.0\n78,615,16.5\n78,616,17.0\n78,617,17.5\n78,618,18.0\n78,619,18.5\n78,620,19.0\n78,621,19.5\n78,622,20.0\n78,623,20.5\n78,624,21.0\n79,0,3.5\n79,1,3.0\n79,2,2.5\n79,3,2.0\n79,4,1.5\n79,5,2.0\n79,6,2.5\n79,7,3.0\n79,8,3.5\n79,9,4.0\n79,10,4.5\n79,11,5.0\n79,12,5.5\n79,13,6.0\n79,14,6.5\n79,15,7.0\n79,16,7.5\n79,17,8.0\n79,18,8.5\n79,19,9.0\n79,20,9.5\n79,21,10.0\n79,22,10.5\n79,23,11.0\n79,24,11.5\n79,25,3.0\n79,26,2.5\n79,27,2.0\n79,28,1.5\n79,29,1.0\n79,30,1.5\n79,31,2.0\n79,32,2.5\n79,33,3.0\n79,34,3.5\n79,35,4.0\n79,36,4.5\n79,37,5.0\n79,38,5.5\n79,39,6.0\n79,40,6.5\n79,41,7.0\n79,42,7.5\n79,43,8.0\n79,44,8.5\n79,45,9.0\n79,46,9.5\n79,47,10.0\n79,48,10.5\n79,49,11.0\n79,50,2.5\n79,51,2.0\n79,52,1.5\n79,53,1.0\n79,54,0.5\n79,55,1.0\n79,56,1.5\n79,57,2.0\n79,58,2.5\n79,59,3.0\n79,60,3.5\n79,61,4.0\n79,62,4.5\n79,63,5.0\n79,64,5.5\n79,65,6.0\n79,66,6.5\n79,67,7.0\n79,68,7.5\n79,69,8.0\n79,70,8.5\n79,71,9.0\n79,72,9.5\n79,73,10.0\n79,74,10.5\n79,75,2.0\n79,76,1.5\n79,77,1.0\n79,78,0.5\n79,79,0\n79,80,0.5\n79,81,1.0\n79,82,1.5\n79,83,2.0\n79,84,2.5\n79,85,3.0\n79,86,3.5\n79,87,4.0\n79,88,4.5\n79,89,5.0\n79,90,5.5\n79,91,6.0\n79,92,6.5\n79,93,7.0\n79,94,7.5\n79,95,8.0\n79,96,8.5\n79,97,9.0\n79,98,9.5\n79,99,10.0\n79,100,2.5\n79,101,2.0\n79,102,1.5\n79,103,1.0\n79,104,0.5\n79,105,1.0\n79,106,1.5\n79,107,2.0\n79,108,2.5\n79,109,3.0\n79,110,3.5\n79,111,4.0\n79,112,4.5\n79,113,5.0\n79,114,5.5\n79,115,6.0\n79,116,6.5\n79,117,7.0\n79,118,7.5\n79,119,8.0\n79,120,8.5\n79,121,9.0\n79,122,9.5\n79,123,10.0\n79,124,10.5\n79,125,3.0\n79,126,2.5\n79,127,2.0\n79,128,1.5\n79,129,1.0\n79,130,1.5\n79,131,2.0\n79,132,2.5\n79,133,3.0\n79,134,3.5\n79,135,4.0\n79,136,4.5\n79,137,5.0\n79,138,5.5\n79,139,6.0\n79,140,6.5\n79,141,7.0\n79,142,7.5\n79,143,8.0\n79,144,8.5\n79,145,9.0\n79,146,9.5\n79,147,10.0\n79,148,10.5\n79,149,11.0\n79,150,3.5\n79,151,3.0\n79,152,2.5\n79,153,2.0\n79,154,1.5\n79,155,2.0\n79,156,2.5\n79,157,3.0\n79,158,3.5\n79,159,4.0\n79,160,4.5\n79,161,5.0\n79,162,5.5\n79,163,6.0\n79,164,6.5\n79,165,7.0\n79,166,7.5\n79,167,8.0\n79,168,8.5\n79,169,9.0\n79,170,9.5\n79,171,10.0\n79,172,10.5\n79,173,11.0\n79,174,11.5\n79,175,4.0\n79,176,3.5\n79,177,3.0\n79,178,2.5\n79,179,2.0\n79,180,2.5\n79,181,3.0\n79,182,3.5\n79,183,4.0\n79,184,4.5\n79,185,5.0\n79,186,5.5\n79,187,6.0\n79,188,6.5\n79,189,7.0\n79,190,7.5\n79,191,8.0\n79,192,8.5\n79,193,9.0\n79,194,9.5\n79,195,10.0\n79,196,10.5\n79,197,11.0\n79,198,11.5\n79,199,12.0\n79,200,4.5\n79,201,4.0\n79,202,3.5\n79,203,3.0\n79,204,2.5\n79,205,3.0\n79,206,3.5\n79,207,4.0\n79,208,4.5\n79,209,5.0\n79,210,5.5\n79,211,6.0\n79,212,6.5\n79,213,7.0\n79,214,7.5\n79,215,8.0\n79,216,8.5\n79,217,9.0\n79,218,9.5\n79,219,10.0\n79,220,10.5\n79,221,11.0\n79,222,11.5\n79,223,12.0\n79,224,12.5\n79,225,5.0\n79,226,4.5\n79,227,4.0\n79,228,3.5\n79,229,3.0\n79,230,3.5\n79,231,4.0\n79,232,4.5\n79,233,5.0\n79,234,5.5\n79,235,6.0\n79,236,6.5\n79,237,7.0\n79,238,7.5\n79,239,8.0\n79,240,8.5\n79,241,9.0\n79,242,9.5\n79,243,10.0\n79,244,10.5\n79,245,11.0\n79,246,11.5\n79,247,12.0\n79,248,12.5\n79,249,13.0\n79,250,5.5\n79,251,5.0\n79,252,4.5\n79,253,4.0\n79,254,3.5\n79,255,4.0\n79,256,4.5\n79,257,5.0\n79,258,5.5\n79,259,6.0\n79,260,6.5\n79,261,7.0\n79,262,7.5\n79,263,8.0\n79,264,8.5\n79,265,9.0\n79,266,9.5\n79,267,10.0\n79,268,10.5\n79,269,11.0\n79,270,11.5\n79,271,12.0\n79,272,12.5\n79,273,13.0\n79,274,13.5\n79,275,6.0\n79,276,5.5\n79,277,5.0\n79,278,4.5\n79,279,4.0\n79,280,4.5\n79,281,5.0\n79,282,5.5\n79,283,6.0\n79,284,6.5\n79,285,7.0\n79,286,7.5\n79,287,8.0\n79,288,8.5\n79,289,9.0\n79,290,9.5\n79,291,10.0\n79,292,10.5\n79,293,11.0\n79,294,11.5\n79,295,12.0\n79,296,12.5\n79,297,13.0\n79,298,13.5\n79,299,14.0\n79,300,6.5\n79,301,6.0\n79,302,5.5\n79,303,5.0\n79,304,4.5\n79,305,5.0\n79,306,5.5\n79,307,6.0\n79,308,6.5\n79,309,7.0\n79,310,7.5\n79,311,8.0\n79,312,8.5\n79,313,9.0\n79,314,9.5\n79,315,10.0\n79,316,10.5\n79,317,11.0\n79,318,11.5\n79,319,12.0\n79,320,12.5\n79,321,13.0\n79,322,13.5\n79,323,14.0\n79,324,14.5\n79,325,7.0\n79,326,6.5\n79,327,6.0\n79,328,5.5\n79,329,5.0\n79,330,5.5\n79,331,6.0\n79,332,6.5\n79,333,7.0\n79,334,7.5\n79,335,8.0\n79,336,8.5\n79,337,9.0\n79,338,9.5\n79,339,10.0\n79,340,10.5\n79,341,11.0\n79,342,11.5\n79,343,12.0\n79,344,12.5\n79,345,13.0\n79,346,13.5\n79,347,14.0\n79,348,14.5\n79,349,15.0\n79,350,7.5\n79,351,7.0\n79,352,6.5\n79,353,6.0\n79,354,5.5\n79,355,6.0\n79,356,6.5\n79,357,7.0\n79,358,7.5\n79,359,8.0\n79,360,8.5\n79,361,9.0\n79,362,9.5\n79,363,10.0\n79,364,10.5\n79,365,11.0\n79,366,11.5\n79,367,12.0\n79,368,12.5\n79,369,13.0\n79,370,13.5\n79,371,14.0\n79,372,14.5\n79,373,15.0\n79,374,15.5\n79,375,8.0\n79,376,7.5\n79,377,7.0\n79,378,6.5\n79,379,6.0\n79,380,6.5\n79,381,7.0\n79,382,7.5\n79,383,8.0\n79,384,8.5\n79,385,9.0\n79,386,9.5\n79,387,10.0\n79,388,10.5\n79,389,11.0\n79,390,11.5\n79,391,12.0\n79,392,12.5\n79,393,13.0\n79,394,13.5\n79,395,14.0\n79,396,14.5\n79,397,15.0\n79,398,15.5\n79,399,16.0\n79,400,8.5\n79,401,8.0\n79,402,7.5\n79,403,7.0\n79,404,6.5\n79,405,7.0\n79,406,7.5\n79,407,8.0\n79,408,8.5\n79,409,9.0\n79,410,9.5\n79,411,10.0\n79,412,10.5\n79,413,11.0\n79,414,11.5\n79,415,12.0\n79,416,12.5\n79,417,13.0\n79,418,13.5\n79,419,14.0\n79,420,14.5\n79,421,15.0\n79,422,15.5\n79,423,16.0\n79,424,16.5\n79,425,9.0\n79,426,8.5\n79,427,8.0\n79,428,7.5\n79,429,7.0\n79,430,7.5\n79,431,8.0\n79,432,8.5\n79,433,9.0\n79,434,9.5\n79,435,10.0\n79,436,10.5\n79,437,11.0\n79,438,11.5\n79,439,12.0\n79,440,12.5\n79,441,13.0\n79,442,13.5\n79,443,14.0\n79,444,14.5\n79,445,15.0\n79,446,15.5\n79,447,16.0\n79,448,16.5\n79,449,17.0\n79,450,9.5\n79,451,9.0\n79,452,8.5\n79,453,8.0\n79,454,7.5\n79,455,8.0\n79,456,8.5\n79,457,9.0\n79,458,9.5\n79,459,10.0\n79,460,10.5\n79,461,11.0\n79,462,11.5\n79,463,12.0\n79,464,12.5\n79,465,13.0\n79,466,13.5\n79,467,14.0\n79,468,14.5\n79,469,15.0\n79,470,15.5\n79,471,16.0\n79,472,16.5\n79,473,17.0\n79,474,17.5\n79,475,10.0\n79,476,9.5\n79,477,9.0\n79,478,8.5\n79,479,8.0\n79,480,8.5\n79,481,9.0\n79,482,9.5\n79,483,10.0\n79,484,10.5\n79,485,11.0\n79,486,11.5\n79,487,12.0\n79,488,12.5\n79,489,13.0\n79,490,13.5\n79,491,14.0\n79,492,14.5\n79,493,15.0\n79,494,15.5\n79,495,16.0\n79,496,16.5\n79,497,17.0\n79,498,17.5\n79,499,18.0\n79,500,10.5\n79,501,10.0\n79,502,9.5\n79,503,9.0\n79,504,8.5\n79,505,9.0\n79,506,9.5\n79,507,10.0\n79,508,10.5\n79,509,11.0\n79,510,11.5\n79,511,12.0\n79,512,12.5\n79,513,13.0\n79,514,13.5\n79,515,14.0\n79,516,14.5\n79,517,15.0\n79,518,15.5\n79,519,16.0\n79,520,16.5\n79,521,17.0\n79,522,17.5\n79,523,18.0\n79,524,18.5\n79,525,11.0\n79,526,10.5\n79,527,10.0\n79,528,9.5\n79,529,9.0\n79,530,9.5\n79,531,10.0\n79,532,10.5\n79,533,11.0\n79,534,11.5\n79,535,12.0\n79,536,12.5\n79,537,13.0\n79,538,13.5\n79,539,14.0\n79,540,14.5\n79,541,15.0\n79,542,15.5\n79,543,16.0\n79,544,16.5\n79,545,17.0\n79,546,17.5\n79,547,18.0\n79,548,18.5\n79,549,19.0\n79,550,11.5\n79,551,11.0\n79,552,10.5\n79,553,10.0\n79,554,9.5\n79,555,10.0\n79,556,10.5\n79,557,11.0\n79,558,11.5\n79,559,12.0\n79,560,12.5\n79,561,13.0\n79,562,13.5\n79,563,14.0\n79,564,14.5\n79,565,15.0\n79,566,15.5\n79,567,16.0\n79,568,16.5\n79,569,17.0\n79,570,17.5\n79,571,18.0\n79,572,18.5\n79,573,19.0\n79,574,19.5\n79,575,12.0\n79,576,11.5\n79,577,11.0\n79,578,10.5\n79,579,10.0\n79,580,10.5\n79,581,11.0\n79,582,11.5\n79,583,12.0\n79,584,12.5\n79,585,13.0\n79,586,13.5\n79,587,14.0\n79,588,14.5\n79,589,15.0\n79,590,15.5\n79,591,16.0\n79,592,16.5\n79,593,17.0\n79,594,17.5\n79,595,18.0\n79,596,18.5\n79,597,19.0\n79,598,19.5\n79,599,20.0\n79,600,12.5\n79,601,12.0\n79,602,11.5\n79,603,11.0\n79,604,10.5\n79,605,11.0\n79,606,11.5\n79,607,12.0\n79,608,12.5\n79,609,13.0\n79,610,13.5\n79,611,14.0\n79,612,14.5\n79,613,15.0\n79,614,15.5\n79,615,16.0\n79,616,16.5\n79,617,17.0\n79,618,17.5\n79,619,18.0\n79,620,18.5\n79,621,19.0\n79,622,19.5\n79,623,20.0\n79,624,20.5\n80,0,4.0\n80,1,3.5\n80,2,3.0\n80,3,2.5\n80,4,2.0\n80,5,1.5\n80,6,2.0\n80,7,2.5\n80,8,3.0\n80,9,3.5\n80,10,4.0\n80,11,4.5\n80,12,5.0\n80,13,5.5\n80,14,6.0\n80,15,6.5\n80,16,7.0\n80,17,7.5\n80,18,8.0\n80,19,8.5\n80,20,9.0\n80,21,9.5\n80,22,10.0\n80,23,10.5\n80,24,11.0\n80,25,3.5\n80,26,3.0\n80,27,2.5\n80,28,2.0\n80,29,1.5\n80,30,1.0\n80,31,1.5\n80,32,2.0\n80,33,2.5\n80,34,3.0\n80,35,3.5\n80,36,4.0\n80,37,4.5\n80,38,5.0\n80,39,5.5\n80,40,6.0\n80,41,6.5\n80,42,7.0\n80,43,7.5\n80,44,8.0\n80,45,8.5\n80,46,9.0\n80,47,9.5\n80,48,10.0\n80,49,10.5\n80,50,3.0\n80,51,2.5\n80,52,2.0\n80,53,1.5\n80,54,1.0\n80,55,0.5\n80,56,1.0\n80,57,1.5\n80,58,2.0\n80,59,2.5\n80,60,3.0\n80,61,3.5\n80,62,4.0\n80,63,4.5\n80,64,5.0\n80,65,5.5\n80,66,6.0\n80,67,6.5\n80,68,7.0\n80,69,7.5\n80,70,8.0\n80,71,8.5\n80,72,9.0\n80,73,9.5\n80,74,10.0\n80,75,2.5\n80,76,2.0\n80,77,1.5\n80,78,1.0\n80,79,0.5\n80,80,0\n80,81,0.5\n80,82,1.0\n80,83,1.5\n80,84,2.0\n80,85,2.5\n80,86,3.0\n80,87,3.5\n80,88,4.0\n80,89,4.5\n80,90,5.0\n80,91,5.5\n80,92,6.0\n80,93,6.5\n80,94,7.0\n80,95,7.5\n80,96,8.0\n80,97,8.5\n80,98,9.0\n80,99,9.5\n80,100,3.0\n80,101,2.5\n80,102,2.0\n80,103,1.5\n80,104,1.0\n80,105,0.5\n80,106,1.0\n80,107,1.5\n80,108,2.0\n80,109,2.5\n80,110,3.0\n80,111,3.5\n80,112,4.0\n80,113,4.5\n80,114,5.0\n80,115,5.5\n80,116,6.0\n80,117,6.5\n80,118,7.0\n80,119,7.5\n80,120,8.0\n80,121,8.5\n80,122,9.0\n80,123,9.5\n80,124,10.0\n80,125,3.5\n80,126,3.0\n80,127,2.5\n80,128,2.0\n80,129,1.5\n80,130,1.0\n80,131,1.5\n80,132,2.0\n80,133,2.5\n80,134,3.0\n80,135,3.5\n80,136,4.0\n80,137,4.5\n80,138,5.0\n80,139,5.5\n80,140,6.0\n80,141,6.5\n80,142,7.0\n80,143,7.5\n80,144,8.0\n80,145,8.5\n80,146,9.0\n80,147,9.5\n80,148,10.0\n80,149,10.5\n80,150,4.0\n80,151,3.5\n80,152,3.0\n80,153,2.5\n80,154,2.0\n80,155,1.5\n80,156,2.0\n80,157,2.5\n80,158,3.0\n80,159,3.5\n80,160,4.0\n80,161,4.5\n80,162,5.0\n80,163,5.5\n80,164,6.0\n80,165,6.5\n80,166,7.0\n80,167,7.5\n80,168,8.0\n80,169,8.5\n80,170,9.0\n80,171,9.5\n80,172,10.0\n80,173,10.5\n80,174,11.0\n80,175,4.5\n80,176,4.0\n80,177,3.5\n80,178,3.0\n80,179,2.5\n80,180,2.0\n80,181,2.5\n80,182,3.0\n80,183,3.5\n80,184,4.0\n80,185,4.5\n80,186,5.0\n80,187,5.5\n80,188,6.0\n80,189,6.5\n80,190,7.0\n80,191,7.5\n80,192,8.0\n80,193,8.5\n80,194,9.0\n80,195,9.5\n80,196,10.0\n80,197,10.5\n80,198,11.0\n80,199,11.5\n80,200,5.0\n80,201,4.5\n80,202,4.0\n80,203,3.5\n80,204,3.0\n80,205,2.5\n80,206,3.0\n80,207,3.5\n80,208,4.0\n80,209,4.5\n80,210,5.0\n80,211,5.5\n80,212,6.0\n80,213,6.5\n80,214,7.0\n80,215,7.5\n80,216,8.0\n80,217,8.5\n80,218,9.0\n80,219,9.5\n80,220,10.0\n80,221,10.5\n80,222,11.0\n80,223,11.5\n80,224,12.0\n80,225,5.5\n80,226,5.0\n80,227,4.5\n80,228,4.0\n80,229,3.5\n80,230,3.0\n80,231,3.5\n80,232,4.0\n80,233,4.5\n80,234,5.0\n80,235,5.5\n80,236,6.0\n80,237,6.5\n80,238,7.0\n80,239,7.5\n80,240,8.0\n80,241,8.5\n80,242,9.0\n80,243,9.5\n80,244,10.0\n80,245,10.5\n80,246,11.0\n80,247,11.5\n80,248,12.0\n80,249,12.5\n80,250,6.0\n80,251,5.5\n80,252,5.0\n80,253,4.5\n80,254,4.0\n80,255,3.5\n80,256,4.0\n80,257,4.5\n80,258,5.0\n80,259,5.5\n80,260,6.0\n80,261,6.5\n80,262,7.0\n80,263,7.5\n80,264,8.0\n80,265,8.5\n80,266,9.0\n80,267,9.5\n80,268,10.0\n80,269,10.5\n80,270,11.0\n80,271,11.5\n80,272,12.0\n80,273,12.5\n80,274,13.0\n80,275,6.5\n80,276,6.0\n80,277,5.5\n80,278,5.0\n80,279,4.5\n80,280,4.0\n80,281,4.5\n80,282,5.0\n80,283,5.5\n80,284,6.0\n80,285,6.5\n80,286,7.0\n80,287,7.5\n80,288,8.0\n80,289,8.5\n80,290,9.0\n80,291,9.5\n80,292,10.0\n80,293,10.5\n80,294,11.0\n80,295,11.5\n80,296,12.0\n80,297,12.5\n80,298,13.0\n80,299,13.5\n80,300,7.0\n80,301,6.5\n80,302,6.0\n80,303,5.5\n80,304,5.0\n80,305,4.5\n80,306,5.0\n80,307,5.5\n80,308,6.0\n80,309,6.5\n80,310,7.0\n80,311,7.5\n80,312,8.0\n80,313,8.5\n80,314,9.0\n80,315,9.5\n80,316,10.0\n80,317,10.5\n80,318,11.0\n80,319,11.5\n80,320,12.0\n80,321,12.5\n80,322,13.0\n80,323,13.5\n80,324,14.0\n80,325,7.5\n80,326,7.0\n80,327,6.5\n80,328,6.0\n80,329,5.5\n80,330,5.0\n80,331,5.5\n80,332,6.0\n80,333,6.5\n80,334,7.0\n80,335,7.5\n80,336,8.0\n80,337,8.5\n80,338,9.0\n80,339,9.5\n80,340,10.0\n80,341,10.5\n80,342,11.0\n80,343,11.5\n80,344,12.0\n80,345,12.5\n80,346,13.0\n80,347,13.5\n80,348,14.0\n80,349,14.5\n80,350,8.0\n80,351,7.5\n80,352,7.0\n80,353,6.5\n80,354,6.0\n80,355,5.5\n80,356,6.0\n80,357,6.5\n80,358,7.0\n80,359,7.5\n80,360,8.0\n80,361,8.5\n80,362,9.0\n80,363,9.5\n80,364,10.0\n80,365,10.5\n80,366,11.0\n80,367,11.5\n80,368,12.0\n80,369,12.5\n80,370,13.0\n80,371,13.5\n80,372,14.0\n80,373,14.5\n80,374,15.0\n80,375,8.5\n80,376,8.0\n80,377,7.5\n80,378,7.0\n80,379,6.5\n80,380,6.0\n80,381,6.5\n80,382,7.0\n80,383,7.5\n80,384,8.0\n80,385,8.5\n80,386,9.0\n80,387,9.5\n80,388,10.0\n80,389,10.5\n80,390,11.0\n80,391,11.5\n80,392,12.0\n80,393,12.5\n80,394,13.0\n80,395,13.5\n80,396,14.0\n80,397,14.5\n80,398,15.0\n80,399,15.5\n80,400,9.0\n80,401,8.5\n80,402,8.0\n80,403,7.5\n80,404,7.0\n80,405,6.5\n80,406,7.0\n80,407,7.5\n80,408,8.0\n80,409,8.5\n80,410,9.0\n80,411,9.5\n80,412,10.0\n80,413,10.5\n80,414,11.0\n80,415,11.5\n80,416,12.0\n80,417,12.5\n80,418,13.0\n80,419,13.5\n80,420,14.0\n80,421,14.5\n80,422,15.0\n80,423,15.5\n80,424,16.0\n80,425,9.5\n80,426,9.0\n80,427,8.5\n80,428,8.0\n80,429,7.5\n80,430,7.0\n80,431,7.5\n80,432,8.0\n80,433,8.5\n80,434,9.0\n80,435,9.5\n80,436,10.0\n80,437,10.5\n80,438,11.0\n80,439,11.5\n80,440,12.0\n80,441,12.5\n80,442,13.0\n80,443,13.5\n80,444,14.0\n80,445,14.5\n80,446,15.0\n80,447,15.5\n80,448,16.0\n80,449,16.5\n80,450,10.0\n80,451,9.5\n80,452,9.0\n80,453,8.5\n80,454,8.0\n80,455,7.5\n80,456,8.0\n80,457,8.5\n80,458,9.0\n80,459,9.5\n80,460,10.0\n80,461,10.5\n80,462,11.0\n80,463,11.5\n80,464,12.0\n80,465,12.5\n80,466,13.0\n80,467,13.5\n80,468,14.0\n80,469,14.5\n80,470,15.0\n80,471,15.5\n80,472,16.0\n80,473,16.5\n80,474,17.0\n80,475,10.5\n80,476,10.0\n80,477,9.5\n80,478,9.0\n80,479,8.5\n80,480,8.0\n80,481,8.5\n80,482,9.0\n80,483,9.5\n80,484,10.0\n80,485,10.5\n80,486,11.0\n80,487,11.5\n80,488,12.0\n80,489,12.5\n80,490,13.0\n80,491,13.5\n80,492,14.0\n80,493,14.5\n80,494,15.0\n80,495,15.5\n80,496,16.0\n80,497,16.5\n80,498,17.0\n80,499,17.5\n80,500,11.0\n80,501,10.5\n80,502,10.0\n80,503,9.5\n80,504,9.0\n80,505,8.5\n80,506,9.0\n80,507,9.5\n80,508,10.0\n80,509,10.5\n80,510,11.0\n80,511,11.5\n80,512,12.0\n80,513,12.5\n80,514,13.0\n80,515,13.5\n80,516,14.0\n80,517,14.5\n80,518,15.0\n80,519,15.5\n80,520,16.0\n80,521,16.5\n80,522,17.0\n80,523,17.5\n80,524,18.0\n80,525,11.5\n80,526,11.0\n80,527,10.5\n80,528,10.0\n80,529,9.5\n80,530,9.0\n80,531,9.5\n80,532,10.0\n80,533,10.5\n80,534,11.0\n80,535,11.5\n80,536,12.0\n80,537,12.5\n80,538,13.0\n80,539,13.5\n80,540,14.0\n80,541,14.5\n80,542,15.0\n80,543,15.5\n80,544,16.0\n80,545,16.5\n80,546,17.0\n80,547,17.5\n80,548,18.0\n80,549,18.5\n80,550,12.0\n80,551,11.5\n80,552,11.0\n80,553,10.5\n80,554,10.0\n80,555,9.5\n80,556,10.0\n80,557,10.5\n80,558,11.0\n80,559,11.5\n80,560,12.0\n80,561,12.5\n80,562,13.0\n80,563,13.5\n80,564,14.0\n80,565,14.5\n80,566,15.0\n80,567,15.5\n80,568,16.0\n80,569,16.5\n80,570,17.0\n80,571,17.5\n80,572,18.0\n80,573,18.5\n80,574,19.0\n80,575,12.5\n80,576,12.0\n80,577,11.5\n80,578,11.0\n80,579,10.5\n80,580,10.0\n80,581,10.5\n80,582,11.0\n80,583,11.5\n80,584,12.0\n80,585,12.5\n80,586,13.0\n80,587,13.5\n80,588,14.0\n80,589,14.5\n80,590,15.0\n80,591,15.5\n80,592,16.0\n80,593,16.5\n80,594,17.0\n80,595,17.5\n80,596,18.0\n80,597,18.5\n80,598,19.0\n80,599,19.5\n80,600,13.0\n80,601,12.5\n80,602,12.0\n80,603,11.5\n80,604,11.0\n80,605,10.5\n80,606,11.0\n80,607,11.5\n80,608,12.0\n80,609,12.5\n80,610,13.0\n80,611,13.5\n80,612,14.0\n80,613,14.5\n80,614,15.0\n80,615,15.5\n80,616,16.0\n80,617,16.5\n80,618,17.0\n80,619,17.5\n80,620,18.0\n80,621,18.5\n80,622,19.0\n80,623,19.5\n80,624,20.0\n81,0,4.5\n81,1,4.0\n81,2,3.5\n81,3,3.0\n81,4,2.5\n81,5,2.0\n81,6,1.5\n81,7,2.0\n81,8,2.5\n81,9,3.0\n81,10,3.5\n81,11,4.0\n81,12,4.5\n81,13,5.0\n81,14,5.5\n81,15,6.0\n81,16,6.5\n81,17,7.0\n81,18,7.5\n81,19,8.0\n81,20,8.5\n81,21,9.0\n81,22,9.5\n81,23,10.0\n81,24,10.5\n81,25,4.0\n81,26,3.5\n81,27,3.0\n81,28,2.5\n81,29,2.0\n81,30,1.5\n81,31,1.0\n81,32,1.5\n81,33,2.0\n81,34,2.5\n81,35,3.0\n81,36,3.5\n81,37,4.0\n81,38,4.5\n81,39,5.0\n81,40,5.5\n81,41,6.0\n81,42,6.5\n81,43,7.0\n81,44,7.5\n81,45,8.0\n81,46,8.5\n81,47,9.0\n81,48,9.5\n81,49,10.0\n81,50,3.5\n81,51,3.0\n81,52,2.5\n81,53,2.0\n81,54,1.5\n81,55,1.0\n81,56,0.5\n81,57,1.0\n81,58,1.5\n81,59,2.0\n81,60,2.5\n81,61,3.0\n81,62,3.5\n81,63,4.0\n81,64,4.5\n81,65,5.0\n81,66,5.5\n81,67,6.0\n81,68,6.5\n81,69,7.0\n81,70,7.5\n81,71,8.0\n81,72,8.5\n81,73,9.0\n81,74,9.5\n81,75,3.0\n81,76,2.5\n81,77,2.0\n81,78,1.5\n81,79,1.0\n81,80,0.5\n81,81,0\n81,82,0.5\n81,83,1.0\n81,84,1.5\n81,85,2.0\n81,86,2.5\n81,87,3.0\n81,88,3.5\n81,89,4.0\n81,90,4.5\n81,91,5.0\n81,92,5.5\n81,93,6.0\n81,94,6.5\n81,95,7.0\n81,96,7.5\n81,97,8.0\n81,98,8.5\n81,99,9.0\n81,100,3.5\n81,101,3.0\n81,102,2.5\n81,103,2.0\n81,104,1.5\n81,105,1.0\n81,106,0.5\n81,107,1.0\n81,108,1.5\n81,109,2.0\n81,110,2.5\n81,111,3.0\n81,112,3.5\n81,113,4.0\n81,114,4.5\n81,115,5.0\n81,116,5.5\n81,117,6.0\n81,118,6.5\n81,119,7.0\n81,120,7.5\n81,121,8.0\n81,122,8.5\n81,123,9.0\n81,124,9.5\n81,125,4.0\n81,126,3.5\n81,127,3.0\n81,128,2.5\n81,129,2.0\n81,130,1.5\n81,131,1.0\n81,132,1.5\n81,133,2.0\n81,134,2.5\n81,135,3.0\n81,136,3.5\n81,137,4.0\n81,138,4.5\n81,139,5.0\n81,140,5.5\n81,141,6.0\n81,142,6.5\n81,143,7.0\n81,144,7.5\n81,145,8.0\n81,146,8.5\n81,147,9.0\n81,148,9.5\n81,149,10.0\n81,150,4.5\n81,151,4.0\n81,152,3.5\n81,153,3.0\n81,154,2.5\n81,155,2.0\n81,156,1.5\n81,157,2.0\n81,158,2.5\n81,159,3.0\n81,160,3.5\n81,161,4.0\n81,162,4.5\n81,163,5.0\n81,164,5.5\n81,165,6.0\n81,166,6.5\n81,167,7.0\n81,168,7.5\n81,169,8.0\n81,170,8.5\n81,171,9.0\n81,172,9.5\n81,173,10.0\n81,174,10.5\n81,175,5.0\n81,176,4.5\n81,177,4.0\n81,178,3.5\n81,179,3.0\n81,180,2.5\n81,181,2.0\n81,182,2.5\n81,183,3.0\n81,184,3.5\n81,185,4.0\n81,186,4.5\n81,187,5.0\n81,188,5.5\n81,189,6.0\n81,190,6.5\n81,191,7.0\n81,192,7.5\n81,193,8.0\n81,194,8.5\n81,195,9.0\n81,196,9.5\n81,197,10.0\n81,198,10.5\n81,199,11.0\n81,200,5.5\n81,201,5.0\n81,202,4.5\n81,203,4.0\n81,204,3.5\n81,205,3.0\n81,206,2.5\n81,207,3.0\n81,208,3.5\n81,209,4.0\n81,210,4.5\n81,211,5.0\n81,212,5.5\n81,213,6.0\n81,214,6.5\n81,215,7.0\n81,216,7.5\n81,217,8.0\n81,218,8.5\n81,219,9.0\n81,220,9.5\n81,221,10.0\n81,222,10.5\n81,223,11.0\n81,224,11.5\n81,225,6.0\n81,226,5.5\n81,227,5.0\n81,228,4.5\n81,229,4.0\n81,230,3.5\n81,231,3.0\n81,232,3.5\n81,233,4.0\n81,234,4.5\n81,235,5.0\n81,236,5.5\n81,237,6.0\n81,238,6.5\n81,239,7.0\n81,240,7.5\n81,241,8.0\n81,242,8.5\n81,243,9.0\n81,244,9.5\n81,245,10.0\n81,246,10.5\n81,247,11.0\n81,248,11.5\n81,249,12.0\n81,250,6.5\n81,251,6.0\n81,252,5.5\n81,253,5.0\n81,254,4.5\n81,255,4.0\n81,256,3.5\n81,257,4.0\n81,258,4.5\n81,259,5.0\n81,260,5.5\n81,261,6.0\n81,262,6.5\n81,263,7.0\n81,264,7.5\n81,265,8.0\n81,266,8.5\n81,267,9.0\n81,268,9.5\n81,269,10.0\n81,270,10.5\n81,271,11.0\n81,272,11.5\n81,273,12.0\n81,274,12.5\n81,275,7.0\n81,276,6.5\n81,277,6.0\n81,278,5.5\n81,279,5.0\n81,280,4.5\n81,281,4.0\n81,282,4.5\n81,283,5.0\n81,284,5.5\n81,285,6.0\n81,286,6.5\n81,287,7.0\n81,288,7.5\n81,289,8.0\n81,290,8.5\n81,291,9.0\n81,292,9.5\n81,293,10.0\n81,294,10.5\n81,295,11.0\n81,296,11.5\n81,297,12.0\n81,298,12.5\n81,299,13.0\n81,300,7.5\n81,301,7.0\n81,302,6.5\n81,303,6.0\n81,304,5.5\n81,305,5.0\n81,306,4.5\n81,307,5.0\n81,308,5.5\n81,309,6.0\n81,310,6.5\n81,311,7.0\n81,312,7.5\n81,313,8.0\n81,314,8.5\n81,315,9.0\n81,316,9.5\n81,317,10.0\n81,318,10.5\n81,319,11.0\n81,320,11.5\n81,321,12.0\n81,322,12.5\n81,323,13.0\n81,324,13.5\n81,325,8.0\n81,326,7.5\n81,327,7.0\n81,328,6.5\n81,329,6.0\n81,330,5.5\n81,331,5.0\n81,332,5.5\n81,333,6.0\n81,334,6.5\n81,335,7.0\n81,336,7.5\n81,337,8.0\n81,338,8.5\n81,339,9.0\n81,340,9.5\n81,341,10.0\n81,342,10.5\n81,343,11.0\n81,344,11.5\n81,345,12.0\n81,346,12.5\n81,347,13.0\n81,348,13.5\n81,349,14.0\n81,350,8.5\n81,351,8.0\n81,352,7.5\n81,353,7.0\n81,354,6.5\n81,355,6.0\n81,356,5.5\n81,357,6.0\n81,358,6.5\n81,359,7.0\n81,360,7.5\n81,361,8.0\n81,362,8.5\n81,363,9.0\n81,364,9.5\n81,365,10.0\n81,366,10.5\n81,367,11.0\n81,368,11.5\n81,369,12.0\n81,370,12.5\n81,371,13.0\n81,372,13.5\n81,373,14.0\n81,374,14.5\n81,375,9.0\n81,376,8.5\n81,377,8.0\n81,378,7.5\n81,379,7.0\n81,380,6.5\n81,381,6.0\n81,382,6.5\n81,383,7.0\n81,384,7.5\n81,385,8.0\n81,386,8.5\n81,387,9.0\n81,388,9.5\n81,389,10.0\n81,390,10.5\n81,391,11.0\n81,392,11.5\n81,393,12.0\n81,394,12.5\n81,395,13.0\n81,396,13.5\n81,397,14.0\n81,398,14.5\n81,399,15.0\n81,400,9.5\n81,401,9.0\n81,402,8.5\n81,403,8.0\n81,404,7.5\n81,405,7.0\n81,406,6.5\n81,407,7.0\n81,408,7.5\n81,409,8.0\n81,410,8.5\n81,411,9.0\n81,412,9.5\n81,413,10.0\n81,414,10.5\n81,415,11.0\n81,416,11.5\n81,417,12.0\n81,418,12.5\n81,419,13.0\n81,420,13.5\n81,421,14.0\n81,422,14.5\n81,423,15.0\n81,424,15.5\n81,425,10.0\n81,426,9.5\n81,427,9.0\n81,428,8.5\n81,429,8.0\n81,430,7.5\n81,431,7.0\n81,432,7.5\n81,433,8.0\n81,434,8.5\n81,435,9.0\n81,436,9.5\n81,437,10.0\n81,438,10.5\n81,439,11.0\n81,440,11.5\n81,441,12.0\n81,442,12.5\n81,443,13.0\n81,444,13.5\n81,445,14.0\n81,446,14.5\n81,447,15.0\n81,448,15.5\n81,449,16.0\n81,450,10.5\n81,451,10.0\n81,452,9.5\n81,453,9.0\n81,454,8.5\n81,455,8.0\n81,456,7.5\n81,457,8.0\n81,458,8.5\n81,459,9.0\n81,460,9.5\n81,461,10.0\n81,462,10.5\n81,463,11.0\n81,464,11.5\n81,465,12.0\n81,466,12.5\n81,467,13.0\n81,468,13.5\n81,469,14.0\n81,470,14.5\n81,471,15.0\n81,472,15.5\n81,473,16.0\n81,474,16.5\n81,475,11.0\n81,476,10.5\n81,477,10.0\n81,478,9.5\n81,479,9.0\n81,480,8.5\n81,481,8.0\n81,482,8.5\n81,483,9.0\n81,484,9.5\n81,485,10.0\n81,486,10.5\n81,487,11.0\n81,488,11.5\n81,489,12.0\n81,490,12.5\n81,491,13.0\n81,492,13.5\n81,493,14.0\n81,494,14.5\n81,495,15.0\n81,496,15.5\n81,497,16.0\n81,498,16.5\n81,499,17.0\n81,500,11.5\n81,501,11.0\n81,502,10.5\n81,503,10.0\n81,504,9.5\n81,505,9.0\n81,506,8.5\n81,507,9.0\n81,508,9.5\n81,509,10.0\n81,510,10.5\n81,511,11.0\n81,512,11.5\n81,513,12.0\n81,514,12.5\n81,515,13.0\n81,516,13.5\n81,517,14.0\n81,518,14.5\n81,519,15.0\n81,520,15.5\n81,521,16.0\n81,522,16.5\n81,523,17.0\n81,524,17.5\n81,525,12.0\n81,526,11.5\n81,527,11.0\n81,528,10.5\n81,529,10.0\n81,530,9.5\n81,531,9.0\n81,532,9.5\n81,533,10.0\n81,534,10.5\n81,535,11.0\n81,536,11.5\n81,537,12.0\n81,538,12.5\n81,539,13.0\n81,540,13.5\n81,541,14.0\n81,542,14.5\n81,543,15.0\n81,544,15.5\n81,545,16.0\n81,546,16.5\n81,547,17.0\n81,548,17.5\n81,549,18.0\n81,550,12.5\n81,551,12.0\n81,552,11.5\n81,553,11.0\n81,554,10.5\n81,555,10.0\n81,556,9.5\n81,557,10.0\n81,558,10.5\n81,559,11.0\n81,560,11.5\n81,561,12.0\n81,562,12.5\n81,563,13.0\n81,564,13.5\n81,565,14.0\n81,566,14.5\n81,567,15.0\n81,568,15.5\n81,569,16.0\n81,570,16.5\n81,571,17.0\n81,572,17.5\n81,573,18.0\n81,574,18.5\n81,575,13.0\n81,576,12.5\n81,577,12.0\n81,578,11.5\n81,579,11.0\n81,580,10.5\n81,581,10.0\n81,582,10.5\n81,583,11.0\n81,584,11.5\n81,585,12.0\n81,586,12.5\n81,587,13.0\n81,588,13.5\n81,589,14.0\n81,590,14.5\n81,591,15.0\n81,592,15.5\n81,593,16.0\n81,594,16.5\n81,595,17.0\n81,596,17.5\n81,597,18.0\n81,598,18.5\n81,599,19.0\n81,600,13.5\n81,601,13.0\n81,602,12.5\n81,603,12.0\n81,604,11.5\n81,605,11.0\n81,606,10.5\n81,607,11.0\n81,608,11.5\n81,609,12.0\n81,610,12.5\n81,611,13.0\n81,612,13.5\n81,613,14.0\n81,614,14.5\n81,615,15.0\n81,616,15.5\n81,617,16.0\n81,618,16.5\n81,619,17.0\n81,620,17.5\n81,621,18.0\n81,622,18.5\n81,623,19.0\n81,624,19.5\n82,0,5.0\n82,1,4.5\n82,2,4.0\n82,3,3.5\n82,4,3.0\n82,5,2.5\n82,6,2.0\n82,7,1.5\n82,8,2.0\n82,9,2.5\n82,10,3.0\n82,11,3.5\n82,12,4.0\n82,13,4.5\n82,14,5.0\n82,15,5.5\n82,16,6.0\n82,17,6.5\n82,18,7.0\n82,19,7.5\n82,20,8.0\n82,21,8.5\n82,22,9.0\n82,23,9.5\n82,24,10.0\n82,25,4.5\n82,26,4.0\n82,27,3.5\n82,28,3.0\n82,29,2.5\n82,30,2.0\n82,31,1.5\n82,32,1.0\n82,33,1.5\n82,34,2.0\n82,35,2.5\n82,36,3.0\n82,37,3.5\n82,38,4.0\n82,39,4.5\n82,40,5.0\n82,41,5.5\n82,42,6.0\n82,43,6.5\n82,44,7.0\n82,45,7.5\n82,46,8.0\n82,47,8.5\n82,48,9.0\n82,49,9.5\n82,50,4.0\n82,51,3.5\n82,52,3.0\n82,53,2.5\n82,54,2.0\n82,55,1.5\n82,56,1.0\n82,57,0.5\n82,58,1.0\n82,59,1.5\n82,60,2.0\n82,61,2.5\n82,62,3.0\n82,63,3.5\n82,64,4.0\n82,65,4.5\n82,66,5.0\n82,67,5.5\n82,68,6.0\n82,69,6.5\n82,70,7.0\n82,71,7.5\n82,72,8.0\n82,73,8.5\n82,74,9.0\n82,75,3.5\n82,76,3.0\n82,77,2.5\n82,78,2.0\n82,79,1.5\n82,80,1.0\n82,81,0.5\n82,82,0\n82,83,0.5\n82,84,1.0\n82,85,1.5\n82,86,2.0\n82,87,2.5\n82,88,3.0\n82,89,3.5\n82,90,4.0\n82,91,4.5\n82,92,5.0\n82,93,5.5\n82,94,6.0\n82,95,6.5\n82,96,7.0\n82,97,7.5\n82,98,8.0\n82,99,8.5\n82,100,4.0\n82,101,3.5\n82,102,3.0\n82,103,2.5\n82,104,2.0\n82,105,1.5\n82,106,1.0\n82,107,0.5\n82,108,1.0\n82,109,1.5\n82,110,2.0\n82,111,2.5\n82,112,3.0\n82,113,3.5\n82,114,4.0\n82,115,4.5\n82,116,5.0\n82,117,5.5\n82,118,6.0\n82,119,6.5\n82,120,7.0\n82,121,7.5\n82,122,8.0\n82,123,8.5\n82,124,9.0\n82,125,4.5\n82,126,4.0\n82,127,3.5\n82,128,3.0\n82,129,2.5\n82,130,2.0\n82,131,1.5\n82,132,1.0\n82,133,1.5\n82,134,2.0\n82,135,2.5\n82,136,3.0\n82,137,3.5\n82,138,4.0\n82,139,4.5\n82,140,5.0\n82,141,5.5\n82,142,6.0\n82,143,6.5\n82,144,7.0\n82,145,7.5\n82,146,8.0\n82,147,8.5\n82,148,9.0\n82,149,9.5\n82,150,5.0\n82,151,4.5\n82,152,4.0\n82,153,3.5\n82,154,3.0\n82,155,2.5\n82,156,2.0\n82,157,1.5\n82,158,2.0\n82,159,2.5\n82,160,3.0\n82,161,3.5\n82,162,4.0\n82,163,4.5\n82,164,5.0\n82,165,5.5\n82,166,6.0\n82,167,6.5\n82,168,7.0\n82,169,7.5\n82,170,8.0\n82,171,8.5\n82,172,9.0\n82,173,9.5\n82,174,10.0\n82,175,5.5\n82,176,5.0\n82,177,4.5\n82,178,4.0\n82,179,3.5\n82,180,3.0\n82,181,2.5\n82,182,2.0\n82,183,2.5\n82,184,3.0\n82,185,3.5\n82,186,4.0\n82,187,4.5\n82,188,5.0\n82,189,5.5\n82,190,6.0\n82,191,6.5\n82,192,7.0\n82,193,7.5\n82,194,8.0\n82,195,8.5\n82,196,9.0\n82,197,9.5\n82,198,10.0\n82,199,10.5\n82,200,6.0\n82,201,5.5\n82,202,5.0\n82,203,4.5\n82,204,4.0\n82,205,3.5\n82,206,3.0\n82,207,2.5\n82,208,3.0\n82,209,3.5\n82,210,4.0\n82,211,4.5\n82,212,5.0\n82,213,5.5\n82,214,6.0\n82,215,6.5\n82,216,7.0\n82,217,7.5\n82,218,8.0\n82,219,8.5\n82,220,9.0\n82,221,9.5\n82,222,10.0\n82,223,10.5\n82,224,11.0\n82,225,6.5\n82,226,6.0\n82,227,5.5\n82,228,5.0\n82,229,4.5\n82,230,4.0\n82,231,3.5\n82,232,3.0\n82,233,3.5\n82,234,4.0\n82,235,4.5\n82,236,5.0\n82,237,5.5\n82,238,6.0\n82,239,6.5\n82,240,7.0\n82,241,7.5\n82,242,8.0\n82,243,8.5\n82,244,9.0\n82,245,9.5\n82,246,10.0\n82,247,10.5\n82,248,11.0\n82,249,11.5\n82,250,7.0\n82,251,6.5\n82,252,6.0\n82,253,5.5\n82,254,5.0\n82,255,4.5\n82,256,4.0\n82,257,3.5\n82,258,4.0\n82,259,4.5\n82,260,5.0\n82,261,5.5\n82,262,6.0\n82,263,6.5\n82,264,7.0\n82,265,7.5\n82,266,8.0\n82,267,8.5\n82,268,9.0\n82,269,9.5\n82,270,10.0\n82,271,10.5\n82,272,11.0\n82,273,11.5\n82,274,12.0\n82,275,7.5\n82,276,7.0\n82,277,6.5\n82,278,6.0\n82,279,5.5\n82,280,5.0\n82,281,4.5\n82,282,4.0\n82,283,4.5\n82,284,5.0\n82,285,5.5\n82,286,6.0\n82,287,6.5\n82,288,7.0\n82,289,7.5\n82,290,8.0\n82,291,8.5\n82,292,9.0\n82,293,9.5\n82,294,10.0\n82,295,10.5\n82,296,11.0\n82,297,11.5\n82,298,12.0\n82,299,12.5\n82,300,8.0\n82,301,7.5\n82,302,7.0\n82,303,6.5\n82,304,6.0\n82,305,5.5\n82,306,5.0\n82,307,4.5\n82,308,5.0\n82,309,5.5\n82,310,6.0\n82,311,6.5\n82,312,7.0\n82,313,7.5\n82,314,8.0\n82,315,8.5\n82,316,9.0\n82,317,9.5\n82,318,10.0\n82,319,10.5\n82,320,11.0\n82,321,11.5\n82,322,12.0\n82,323,12.5\n82,324,13.0\n82,325,8.5\n82,326,8.0\n82,327,7.5\n82,328,7.0\n82,329,6.5\n82,330,6.0\n82,331,5.5\n82,332,5.0\n82,333,5.5\n82,334,6.0\n82,335,6.5\n82,336,7.0\n82,337,7.5\n82,338,8.0\n82,339,8.5\n82,340,9.0\n82,341,9.5\n82,342,10.0\n82,343,10.5\n82,344,11.0\n82,345,11.5\n82,346,12.0\n82,347,12.5\n82,348,13.0\n82,349,13.5\n82,350,9.0\n82,351,8.5\n82,352,8.0\n82,353,7.5\n82,354,7.0\n82,355,6.5\n82,356,6.0\n82,357,5.5\n82,358,6.0\n82,359,6.5\n82,360,7.0\n82,361,7.5\n82,362,8.0\n82,363,8.5\n82,364,9.0\n82,365,9.5\n82,366,10.0\n82,367,10.5\n82,368,11.0\n82,369,11.5\n82,370,12.0\n82,371,12.5\n82,372,13.0\n82,373,13.5\n82,374,14.0\n82,375,9.5\n82,376,9.0\n82,377,8.5\n82,378,8.0\n82,379,7.5\n82,380,7.0\n82,381,6.5\n82,382,6.0\n82,383,6.5\n82,384,7.0\n82,385,7.5\n82,386,8.0\n82,387,8.5\n82,388,9.0\n82,389,9.5\n82,390,10.0\n82,391,10.5\n82,392,11.0\n82,393,11.5\n82,394,12.0\n82,395,12.5\n82,396,13.0\n82,397,13.5\n82,398,14.0\n82,399,14.5\n82,400,10.0\n82,401,9.5\n82,402,9.0\n82,403,8.5\n82,404,8.0\n82,405,7.5\n82,406,7.0\n82,407,6.5\n82,408,7.0\n82,409,7.5\n82,410,8.0\n82,411,8.5\n82,412,9.0\n82,413,9.5\n82,414,10.0\n82,415,10.5\n82,416,11.0\n82,417,11.5\n82,418,12.0\n82,419,12.5\n82,420,13.0\n82,421,13.5\n82,422,14.0\n82,423,14.5\n82,424,15.0\n82,425,10.5\n82,426,10.0\n82,427,9.5\n82,428,9.0\n82,429,8.5\n82,430,8.0\n82,431,7.5\n82,432,7.0\n82,433,7.5\n82,434,8.0\n82,435,8.5\n82,436,9.0\n82,437,9.5\n82,438,10.0\n82,439,10.5\n82,440,11.0\n82,441,11.5\n82,442,12.0\n82,443,12.5\n82,444,13.0\n82,445,13.5\n82,446,14.0\n82,447,14.5\n82,448,15.0\n82,449,15.5\n82,450,11.0\n82,451,10.5\n82,452,10.0\n82,453,9.5\n82,454,9.0\n82,455,8.5\n82,456,8.0\n82,457,7.5\n82,458,8.0\n82,459,8.5\n82,460,9.0\n82,461,9.5\n82,462,10.0\n82,463,10.5\n82,464,11.0\n82,465,11.5\n82,466,12.0\n82,467,12.5\n82,468,13.0\n82,469,13.5\n82,470,14.0\n82,471,14.5\n82,472,15.0\n82,473,15.5\n82,474,16.0\n82,475,11.5\n82,476,11.0\n82,477,10.5\n82,478,10.0\n82,479,9.5\n82,480,9.0\n82,481,8.5\n82,482,8.0\n82,483,8.5\n82,484,9.0\n82,485,9.5\n82,486,10.0\n82,487,10.5\n82,488,11.0\n82,489,11.5\n82,490,12.0\n82,491,12.5\n82,492,13.0\n82,493,13.5\n82,494,14.0\n82,495,14.5\n82,496,15.0\n82,497,15.5\n82,498,16.0\n82,499,16.5\n82,500,12.0\n82,501,11.5\n82,502,11.0\n82,503,10.5\n82,504,10.0\n82,505,9.5\n82,506,9.0\n82,507,8.5\n82,508,9.0\n82,509,9.5\n82,510,10.0\n82,511,10.5\n82,512,11.0\n82,513,11.5\n82,514,12.0\n82,515,12.5\n82,516,13.0\n82,517,13.5\n82,518,14.0\n82,519,14.5\n82,520,15.0\n82,521,15.5\n82,522,16.0\n82,523,16.5\n82,524,17.0\n82,525,12.5\n82,526,12.0\n82,527,11.5\n82,528,11.0\n82,529,10.5\n82,530,10.0\n82,531,9.5\n82,532,9.0\n82,533,9.5\n82,534,10.0\n82,535,10.5\n82,536,11.0\n82,537,11.5\n82,538,12.0\n82,539,12.5\n82,540,13.0\n82,541,13.5\n82,542,14.0\n82,543,14.5\n82,544,15.0\n82,545,15.5\n82,546,16.0\n82,547,16.5\n82,548,17.0\n82,549,17.5\n82,550,13.0\n82,551,12.5\n82,552,12.0\n82,553,11.5\n82,554,11.0\n82,555,10.5\n82,556,10.0\n82,557,9.5\n82,558,10.0\n82,559,10.5\n82,560,11.0\n82,561,11.5\n82,562,12.0\n82,563,12.5\n82,564,13.0\n82,565,13.5\n82,566,14.0\n82,567,14.5\n82,568,15.0\n82,569,15.5\n82,570,16.0\n82,571,16.5\n82,572,17.0\n82,573,17.5\n82,574,18.0\n82,575,13.5\n82,576,13.0\n82,577,12.5\n82,578,12.0\n82,579,11.5\n82,580,11.0\n82,581,10.5\n82,582,10.0\n82,583,10.5\n82,584,11.0\n82,585,11.5\n82,586,12.0\n82,587,12.5\n82,588,13.0\n82,589,13.5\n82,590,14.0\n82,591,14.5\n82,592,15.0\n82,593,15.5\n82,594,16.0\n82,595,16.5\n82,596,17.0\n82,597,17.5\n82,598,18.0\n82,599,18.5\n82,600,14.0\n82,601,13.5\n82,602,13.0\n82,603,12.5\n82,604,12.0\n82,605,11.5\n82,606,11.0\n82,607,10.5\n82,608,11.0\n82,609,11.5\n82,610,12.0\n82,611,12.5\n82,612,13.0\n82,613,13.5\n82,614,14.0\n82,615,14.5\n82,616,15.0\n82,617,15.5\n82,618,16.0\n82,619,16.5\n82,620,17.0\n82,621,17.5\n82,622,18.0\n82,623,18.5\n82,624,19.0\n83,0,5.5\n83,1,5.0\n83,2,4.5\n83,3,4.0\n83,4,3.5\n83,5,3.0\n83,6,2.5\n83,7,2.0\n83,8,1.5\n83,9,2.0\n83,10,2.5\n83,11,3.0\n83,12,3.5\n83,13,4.0\n83,14,4.5\n83,15,5.0\n83,16,5.5\n83,17,6.0\n83,18,6.5\n83,19,7.0\n83,20,7.5\n83,21,8.0\n83,22,8.5\n83,23,9.0\n83,24,9.5\n83,25,5.0\n83,26,4.5\n83,27,4.0\n83,28,3.5\n83,29,3.0\n83,30,2.5\n83,31,2.0\n83,32,1.5\n83,33,1.0\n83,34,1.5\n83,35,2.0\n83,36,2.5\n83,37,3.0\n83,38,3.5\n83,39,4.0\n83,40,4.5\n83,41,5.0\n83,42,5.5\n83,43,6.0\n83,44,6.5\n83,45,7.0\n83,46,7.5\n83,47,8.0\n83,48,8.5\n83,49,9.0\n83,50,4.5\n83,51,4.0\n83,52,3.5\n83,53,3.0\n83,54,2.5\n83,55,2.0\n83,56,1.5\n83,57,1.0\n83,58,0.5\n83,59,1.0\n83,60,1.5\n83,61,2.0\n83,62,2.5\n83,63,3.0\n83,64,3.5\n83,65,4.0\n83,66,4.5\n83,67,5.0\n83,68,5.5\n83,69,6.0\n83,70,6.5\n83,71,7.0\n83,72,7.5\n83,73,8.0\n83,74,8.5\n83,75,4.0\n83,76,3.5\n83,77,3.0\n83,78,2.5\n83,79,2.0\n83,80,1.5\n83,81,1.0\n83,82,0.5\n83,83,0\n83,84,0.5\n83,85,1.0\n83,86,1.5\n83,87,2.0\n83,88,2.5\n83,89,3.0\n83,90,3.5\n83,91,4.0\n83,92,4.5\n83,93,5.0\n83,94,5.5\n83,95,6.0\n83,96,6.5\n83,97,7.0\n83,98,7.5\n83,99,8.0\n83,100,4.5\n83,101,4.0\n83,102,3.5\n83,103,3.0\n83,104,2.5\n83,105,2.0\n83,106,1.5\n83,107,1.0\n83,108,0.5\n83,109,1.0\n83,110,1.5\n83,111,2.0\n83,112,2.5\n83,113,3.0\n83,114,3.5\n83,115,4.0\n83,116,4.5\n83,117,5.0\n83,118,5.5\n83,119,6.0\n83,120,6.5\n83,121,7.0\n83,122,7.5\n83,123,8.0\n83,124,8.5\n83,125,5.0\n83,126,4.5\n83,127,4.0\n83,128,3.5\n83,129,3.0\n83,130,2.5\n83,131,2.0\n83,132,1.5\n83,133,1.0\n83,134,1.5\n83,135,2.0\n83,136,2.5\n83,137,3.0\n83,138,3.5\n83,139,4.0\n83,140,4.5\n83,141,5.0\n83,142,5.5\n83,143,6.0\n83,144,6.5\n83,145,7.0\n83,146,7.5\n83,147,8.0\n83,148,8.5\n83,149,9.0\n83,150,5.5\n83,151,5.0\n83,152,4.5\n83,153,4.0\n83,154,3.5\n83,155,3.0\n83,156,2.5\n83,157,2.0\n83,158,1.5\n83,159,2.0\n83,160,2.5\n83,161,3.0\n83,162,3.5\n83,163,4.0\n83,164,4.5\n83,165,5.0\n83,166,5.5\n83,167,6.0\n83,168,6.5\n83,169,7.0\n83,170,7.5\n83,171,8.0\n83,172,8.5\n83,173,9.0\n83,174,9.5\n83,175,6.0\n83,176,5.5\n83,177,5.0\n83,178,4.5\n83,179,4.0\n83,180,3.5\n83,181,3.0\n83,182,2.5\n83,183,2.0\n83,184,2.5\n83,185,3.0\n83,186,3.5\n83,187,4.0\n83,188,4.5\n83,189,5.0\n83,190,5.5\n83,191,6.0\n83,192,6.5\n83,193,7.0\n83,194,7.5\n83,195,8.0\n83,196,8.5\n83,197,9.0\n83,198,9.5\n83,199,10.0\n83,200,6.5\n83,201,6.0\n83,202,5.5\n83,203,5.0\n83,204,4.5\n83,205,4.0\n83,206,3.5\n83,207,3.0\n83,208,2.5\n83,209,3.0\n83,210,3.5\n83,211,4.0\n83,212,4.5\n83,213,5.0\n83,214,5.5\n83,215,6.0\n83,216,6.5\n83,217,7.0\n83,218,7.5\n83,219,8.0\n83,220,8.5\n83,221,9.0\n83,222,9.5\n83,223,10.0\n83,224,10.5\n83,225,7.0\n83,226,6.5\n83,227,6.0\n83,228,5.5\n83,229,5.0\n83,230,4.5\n83,231,4.0\n83,232,3.5\n83,233,3.0\n83,234,3.5\n83,235,4.0\n83,236,4.5\n83,237,5.0\n83,238,5.5\n83,239,6.0\n83,240,6.5\n83,241,7.0\n83,242,7.5\n83,243,8.0\n83,244,8.5\n83,245,9.0\n83,246,9.5\n83,247,10.0\n83,248,10.5\n83,249,11.0\n83,250,7.5\n83,251,7.0\n83,252,6.5\n83,253,6.0\n83,254,5.5\n83,255,5.0\n83,256,4.5\n83,257,4.0\n83,258,3.5\n83,259,4.0\n83,260,4.5\n83,261,5.0\n83,262,5.5\n83,263,6.0\n83,264,6.5\n83,265,7.0\n83,266,7.5\n83,267,8.0\n83,268,8.5\n83,269,9.0\n83,270,9.5\n83,271,10.0\n83,272,10.5\n83,273,11.0\n83,274,11.5\n83,275,8.0\n83,276,7.5\n83,277,7.0\n83,278,6.5\n83,279,6.0\n83,280,5.5\n83,281,5.0\n83,282,4.5\n83,283,4.0\n83,284,4.5\n83,285,5.0\n83,286,5.5\n83,287,6.0\n83,288,6.5\n83,289,7.0\n83,290,7.5\n83,291,8.0\n83,292,8.5\n83,293,9.0\n83,294,9.5\n83,295,10.0\n83,296,10.5\n83,297,11.0\n83,298,11.5\n83,299,12.0\n83,300,8.5\n83,301,8.0\n83,302,7.5\n83,303,7.0\n83,304,6.5\n83,305,6.0\n83,306,5.5\n83,307,5.0\n83,308,4.5\n83,309,5.0\n83,310,5.5\n83,311,6.0\n83,312,6.5\n83,313,7.0\n83,314,7.5\n83,315,8.0\n83,316,8.5\n83,317,9.0\n83,318,9.5\n83,319,10.0\n83,320,10.5\n83,321,11.0\n83,322,11.5\n83,323,12.0\n83,324,12.5\n83,325,9.0\n83,326,8.5\n83,327,8.0\n83,328,7.5\n83,329,7.0\n83,330,6.5\n83,331,6.0\n83,332,5.5\n83,333,5.0\n83,334,5.5\n83,335,6.0\n83,336,6.5\n83,337,7.0\n83,338,7.5\n83,339,8.0\n83,340,8.5\n83,341,9.0\n83,342,9.5\n83,343,10.0\n83,344,10.5\n83,345,11.0\n83,346,11.5\n83,347,12.0\n83,348,12.5\n83,349,13.0\n83,350,9.5\n83,351,9.0\n83,352,8.5\n83,353,8.0\n83,354,7.5\n83,355,7.0\n83,356,6.5\n83,357,6.0\n83,358,5.5\n83,359,6.0\n83,360,6.5\n83,361,7.0\n83,362,7.5\n83,363,8.0\n83,364,8.5\n83,365,9.0\n83,366,9.5\n83,367,10.0\n83,368,10.5\n83,369,11.0\n83,370,11.5\n83,371,12.0\n83,372,12.5\n83,373,13.0\n83,374,13.5\n83,375,10.0\n83,376,9.5\n83,377,9.0\n83,378,8.5\n83,379,8.0\n83,380,7.5\n83,381,7.0\n83,382,6.5\n83,383,6.0\n83,384,6.5\n83,385,7.0\n83,386,7.5\n83,387,8.0\n83,388,8.5\n83,389,9.0\n83,390,9.5\n83,391,10.0\n83,392,10.5\n83,393,11.0\n83,394,11.5\n83,395,12.0\n83,396,12.5\n83,397,13.0\n83,398,13.5\n83,399,14.0\n83,400,10.5\n83,401,10.0\n83,402,9.5\n83,403,9.0\n83,404,8.5\n83,405,8.0\n83,406,7.5\n83,407,7.0\n83,408,6.5\n83,409,7.0\n83,410,7.5\n83,411,8.0\n83,412,8.5\n83,413,9.0\n83,414,9.5\n83,415,10.0\n83,416,10.5\n83,417,11.0\n83,418,11.5\n83,419,12.0\n83,420,12.5\n83,421,13.0\n83,422,13.5\n83,423,14.0\n83,424,14.5\n83,425,11.0\n83,426,10.5\n83,427,10.0\n83,428,9.5\n83,429,9.0\n83,430,8.5\n83,431,8.0\n83,432,7.5\n83,433,7.0\n83,434,7.5\n83,435,8.0\n83,436,8.5\n83,437,9.0\n83,438,9.5\n83,439,10.0\n83,440,10.5\n83,441,11.0\n83,442,11.5\n83,443,12.0\n83,444,12.5\n83,445,13.0\n83,446,13.5\n83,447,14.0\n83,448,14.5\n83,449,15.0\n83,450,11.5\n83,451,11.0\n83,452,10.5\n83,453,10.0\n83,454,9.5\n83,455,9.0\n83,456,8.5\n83,457,8.0\n83,458,7.5\n83,459,8.0\n83,460,8.5\n83,461,9.0\n83,462,9.5\n83,463,10.0\n83,464,10.5\n83,465,11.0\n83,466,11.5\n83,467,12.0\n83,468,12.5\n83,469,13.0\n83,470,13.5\n83,471,14.0\n83,472,14.5\n83,473,15.0\n83,474,15.5\n83,475,12.0\n83,476,11.5\n83,477,11.0\n83,478,10.5\n83,479,10.0\n83,480,9.5\n83,481,9.0\n83,482,8.5\n83,483,8.0\n83,484,8.5\n83,485,9.0\n83,486,9.5\n83,487,10.0\n83,488,10.5\n83,489,11.0\n83,490,11.5\n83,491,12.0\n83,492,12.5\n83,493,13.0\n83,494,13.5\n83,495,14.0\n83,496,14.5\n83,497,15.0\n83,498,15.5\n83,499,16.0\n83,500,12.5\n83,501,12.0\n83,502,11.5\n83,503,11.0\n83,504,10.5\n83,505,10.0\n83,506,9.5\n83,507,9.0\n83,508,8.5\n83,509,9.0\n83,510,9.5\n83,511,10.0\n83,512,10.5\n83,513,11.0\n83,514,11.5\n83,515,12.0\n83,516,12.5\n83,517,13.0\n83,518,13.5\n83,519,14.0\n83,520,14.5\n83,521,15.0\n83,522,15.5\n83,523,16.0\n83,524,16.5\n83,525,13.0\n83,526,12.5\n83,527,12.0\n83,528,11.5\n83,529,11.0\n83,530,10.5\n83,531,10.0\n83,532,9.5\n83,533,9.0\n83,534,9.5\n83,535,10.0\n83,536,10.5\n83,537,11.0\n83,538,11.5\n83,539,12.0\n83,540,12.5\n83,541,13.0\n83,542,13.5\n83,543,14.0\n83,544,14.5\n83,545,15.0\n83,546,15.5\n83,547,16.0\n83,548,16.5\n83,549,17.0\n83,550,13.5\n83,551,13.0\n83,552,12.5\n83,553,12.0\n83,554,11.5\n83,555,11.0\n83,556,10.5\n83,557,10.0\n83,558,9.5\n83,559,10.0\n83,560,10.5\n83,561,11.0\n83,562,11.5\n83,563,12.0\n83,564,12.5\n83,565,13.0\n83,566,13.5\n83,567,14.0\n83,568,14.5\n83,569,15.0\n83,570,15.5\n83,571,16.0\n83,572,16.5\n83,573,17.0\n83,574,17.5\n83,575,14.0\n83,576,13.5\n83,577,13.0\n83,578,12.5\n83,579,12.0\n83,580,11.5\n83,581,11.0\n83,582,10.5\n83,583,10.0\n83,584,10.5\n83,585,11.0\n83,586,11.5\n83,587,12.0\n83,588,12.5\n83,589,13.0\n83,590,13.5\n83,591,14.0\n83,592,14.5\n83,593,15.0\n83,594,15.5\n83,595,16.0\n83,596,16.5\n83,597,17.0\n83,598,17.5\n83,599,18.0\n83,600,14.5\n83,601,14.0\n83,602,13.5\n83,603,13.0\n83,604,12.5\n83,605,12.0\n83,606,11.5\n83,607,11.0\n83,608,10.5\n83,609,11.0\n83,610,11.5\n83,611,12.0\n83,612,12.5\n83,613,13.0\n83,614,13.5\n83,615,14.0\n83,616,14.5\n83,617,15.0\n83,618,15.5\n83,619,16.0\n83,620,16.5\n83,621,17.0\n83,622,17.5\n83,623,18.0\n83,624,18.5\n84,0,6.0\n84,1,5.5\n84,2,5.0\n84,3,4.5\n84,4,4.0\n84,5,3.5\n84,6,3.0\n84,7,2.5\n84,8,2.0\n84,9,1.5\n84,10,2.0\n84,11,2.5\n84,12,3.0\n84,13,3.5\n84,14,4.0\n84,15,4.5\n84,16,5.0\n84,17,5.5\n84,18,6.0\n84,19,6.5\n84,20,7.0\n84,21,7.5\n84,22,8.0\n84,23,8.5\n84,24,9.0\n84,25,5.5\n84,26,5.0\n84,27,4.5\n84,28,4.0\n84,29,3.5\n84,30,3.0\n84,31,2.5\n84,32,2.0\n84,33,1.5\n84,34,1.0\n84,35,1.5\n84,36,2.0\n84,37,2.5\n84,38,3.0\n84,39,3.5\n84,40,4.0\n84,41,4.5\n84,42,5.0\n84,43,5.5\n84,44,6.0\n84,45,6.5\n84,46,7.0\n84,47,7.5\n84,48,8.0\n84,49,8.5\n84,50,5.0\n84,51,4.5\n84,52,4.0\n84,53,3.5\n84,54,3.0\n84,55,2.5\n84,56,2.0\n84,57,1.5\n84,58,1.0\n84,59,0.5\n84,60,1.0\n84,61,1.5\n84,62,2.0\n84,63,2.5\n84,64,3.0\n84,65,3.5\n84,66,4.0\n84,67,4.5\n84,68,5.0\n84,69,5.5\n84,70,6.0\n84,71,6.5\n84,72,7.0\n84,73,7.5\n84,74,8.0\n84,75,4.5\n84,76,4.0\n84,77,3.5\n84,78,3.0\n84,79,2.5\n84,80,2.0\n84,81,1.5\n84,82,1.0\n84,83,0.5\n84,84,0\n84,85,0.5\n84,86,1.0\n84,87,1.5\n84,88,2.0\n84,89,2.5\n84,90,3.0\n84,91,3.5\n84,92,4.0\n84,93,4.5\n84,94,5.0\n84,95,5.5\n84,96,6.0\n84,97,6.5\n84,98,7.0\n84,99,7.5\n84,100,5.0\n84,101,4.5\n84,102,4.0\n84,103,3.5\n84,104,3.0\n84,105,2.5\n84,106,2.0\n84,107,1.5\n84,108,1.0\n84,109,0.5\n84,110,1.0\n84,111,1.5\n84,112,2.0\n84,113,2.5\n84,114,3.0\n84,115,3.5\n84,116,4.0\n84,117,4.5\n84,118,5.0\n84,119,5.5\n84,120,6.0\n84,121,6.5\n84,122,7.0\n84,123,7.5\n84,124,8.0\n84,125,5.5\n84,126,5.0\n84,127,4.5\n84,128,4.0\n84,129,3.5\n84,130,3.0\n84,131,2.5\n84,132,2.0\n84,133,1.5\n84,134,1.0\n84,135,1.5\n84,136,2.0\n84,137,2.5\n84,138,3.0\n84,139,3.5\n84,140,4.0\n84,141,4.5\n84,142,5.0\n84,143,5.5\n84,144,6.0\n84,145,6.5\n84,146,7.0\n84,147,7.5\n84,148,8.0\n84,149,8.5\n84,150,6.0\n84,151,5.5\n84,152,5.0\n84,153,4.5\n84,154,4.0\n84,155,3.5\n84,156,3.0\n84,157,2.5\n84,158,2.0\n84,159,1.5\n84,160,2.0\n84,161,2.5\n84,162,3.0\n84,163,3.5\n84,164,4.0\n84,165,4.5\n84,166,5.0\n84,167,5.5\n84,168,6.0\n84,169,6.5\n84,170,7.0\n84,171,7.5\n84,172,8.0\n84,173,8.5\n84,174,9.0\n84,175,6.5\n84,176,6.0\n84,177,5.5\n84,178,5.0\n84,179,4.5\n84,180,4.0\n84,181,3.5\n84,182,3.0\n84,183,2.5\n84,184,2.0\n84,185,2.5\n84,186,3.0\n84,187,3.5\n84,188,4.0\n84,189,4.5\n84,190,5.0\n84,191,5.5\n84,192,6.0\n84,193,6.5\n84,194,7.0\n84,195,7.5\n84,196,8.0\n84,197,8.5\n84,198,9.0\n84,199,9.5\n84,200,7.0\n84,201,6.5\n84,202,6.0\n84,203,5.5\n84,204,5.0\n84,205,4.5\n84,206,4.0\n84,207,3.5\n84,208,3.0\n84,209,2.5\n84,210,3.0\n84,211,3.5\n84,212,4.0\n84,213,4.5\n84,214,5.0\n84,215,5.5\n84,216,6.0\n84,217,6.5\n84,218,7.0\n84,219,7.5\n84,220,8.0\n84,221,8.5\n84,222,9.0\n84,223,9.5\n84,224,10.0\n84,225,7.5\n84,226,7.0\n84,227,6.5\n84,228,6.0\n84,229,5.5\n84,230,5.0\n84,231,4.5\n84,232,4.0\n84,233,3.5\n84,234,3.0\n84,235,3.5\n84,236,4.0\n84,237,4.5\n84,238,5.0\n84,239,5.5\n84,240,6.0\n84,241,6.5\n84,242,7.0\n84,243,7.5\n84,244,8.0\n84,245,8.5\n84,246,9.0\n84,247,9.5\n84,248,10.0\n84,249,10.5\n84,250,8.0\n84,251,7.5\n84,252,7.0\n84,253,6.5\n84,254,6.0\n84,255,5.5\n84,256,5.0\n84,257,4.5\n84,258,4.0\n84,259,3.5\n84,260,4.0\n84,261,4.5\n84,262,5.0\n84,263,5.5\n84,264,6.0\n84,265,6.5\n84,266,7.0\n84,267,7.5\n84,268,8.0\n84,269,8.5\n84,270,9.0\n84,271,9.5\n84,272,10.0\n84,273,10.5\n84,274,11.0\n84,275,8.5\n84,276,8.0\n84,277,7.5\n84,278,7.0\n84,279,6.5\n84,280,6.0\n84,281,5.5\n84,282,5.0\n84,283,4.5\n84,284,4.0\n84,285,4.5\n84,286,5.0\n84,287,5.5\n84,288,6.0\n84,289,6.5\n84,290,7.0\n84,291,7.5\n84,292,8.0\n84,293,8.5\n84,294,9.0\n84,295,9.5\n84,296,10.0\n84,297,10.5\n84,298,11.0\n84,299,11.5\n84,300,9.0\n84,301,8.5\n84,302,8.0\n84,303,7.5\n84,304,7.0\n84,305,6.5\n84,306,6.0\n84,307,5.5\n84,308,5.0\n84,309,4.5\n84,310,5.0\n84,311,5.5\n84,312,6.0\n84,313,6.5\n84,314,7.0\n84,315,7.5\n84,316,8.0\n84,317,8.5\n84,318,9.0\n84,319,9.5\n84,320,10.0\n84,321,10.5\n84,322,11.0\n84,323,11.5\n84,324,12.0\n84,325,9.5\n84,326,9.0\n84,327,8.5\n84,328,8.0\n84,329,7.5\n84,330,7.0\n84,331,6.5\n84,332,6.0\n84,333,5.5\n84,334,5.0\n84,335,5.5\n84,336,6.0\n84,337,6.5\n84,338,7.0\n84,339,7.5\n84,340,8.0\n84,341,8.5\n84,342,9.0\n84,343,9.5\n84,344,10.0\n84,345,10.5\n84,346,11.0\n84,347,11.5\n84,348,12.0\n84,349,12.5\n84,350,10.0\n84,351,9.5\n84,352,9.0\n84,353,8.5\n84,354,8.0\n84,355,7.5\n84,356,7.0\n84,357,6.5\n84,358,6.0\n84,359,5.5\n84,360,6.0\n84,361,6.5\n84,362,7.0\n84,363,7.5\n84,364,8.0\n84,365,8.5\n84,366,9.0\n84,367,9.5\n84,368,10.0\n84,369,10.5\n84,370,11.0\n84,371,11.5\n84,372,12.0\n84,373,12.5\n84,374,13.0\n84,375,10.5\n84,376,10.0\n84,377,9.5\n84,378,9.0\n84,379,8.5\n84,380,8.0\n84,381,7.5\n84,382,7.0\n84,383,6.5\n84,384,6.0\n84,385,6.5\n84,386,7.0\n84,387,7.5\n84,388,8.0\n84,389,8.5\n84,390,9.0\n84,391,9.5\n84,392,10.0\n84,393,10.5\n84,394,11.0\n84,395,11.5\n84,396,12.0\n84,397,12.5\n84,398,13.0\n84,399,13.5\n84,400,11.0\n84,401,10.5\n84,402,10.0\n84,403,9.5\n84,404,9.0\n84,405,8.5\n84,406,8.0\n84,407,7.5\n84,408,7.0\n84,409,6.5\n84,410,7.0\n84,411,7.5\n84,412,8.0\n84,413,8.5\n84,414,9.0\n84,415,9.5\n84,416,10.0\n84,417,10.5\n84,418,11.0\n84,419,11.5\n84,420,12.0\n84,421,12.5\n84,422,13.0\n84,423,13.5\n84,424,14.0\n84,425,11.5\n84,426,11.0\n84,427,10.5\n84,428,10.0\n84,429,9.5\n84,430,9.0\n84,431,8.5\n84,432,8.0\n84,433,7.5\n84,434,7.0\n84,435,7.5\n84,436,8.0\n84,437,8.5\n84,438,9.0\n84,439,9.5\n84,440,10.0\n84,441,10.5\n84,442,11.0\n84,443,11.5\n84,444,12.0\n84,445,12.5\n84,446,13.0\n84,447,13.5\n84,448,14.0\n84,449,14.5\n84,450,12.0\n84,451,11.5\n84,452,11.0\n84,453,10.5\n84,454,10.0\n84,455,9.5\n84,456,9.0\n84,457,8.5\n84,458,8.0\n84,459,7.5\n84,460,8.0\n84,461,8.5\n84,462,9.0\n84,463,9.5\n84,464,10.0\n84,465,10.5\n84,466,11.0\n84,467,11.5\n84,468,12.0\n84,469,12.5\n84,470,13.0\n84,471,13.5\n84,472,14.0\n84,473,14.5\n84,474,15.0\n84,475,12.5\n84,476,12.0\n84,477,11.5\n84,478,11.0\n84,479,10.5\n84,480,10.0\n84,481,9.5\n84,482,9.0\n84,483,8.5\n84,484,8.0\n84,485,8.5\n84,486,9.0\n84,487,9.5\n84,488,10.0\n84,489,10.5\n84,490,11.0\n84,491,11.5\n84,492,12.0\n84,493,12.5\n84,494,13.0\n84,495,13.5\n84,496,14.0\n84,497,14.5\n84,498,15.0\n84,499,15.5\n84,500,13.0\n84,501,12.5\n84,502,12.0\n84,503,11.5\n84,504,11.0\n84,505,10.5\n84,506,10.0\n84,507,9.5\n84,508,9.0\n84,509,8.5\n84,510,9.0\n84,511,9.5\n84,512,10.0\n84,513,10.5\n84,514,11.0\n84,515,11.5\n84,516,12.0\n84,517,12.5\n84,518,13.0\n84,519,13.5\n84,520,14.0\n84,521,14.5\n84,522,15.0\n84,523,15.5\n84,524,16.0\n84,525,13.5\n84,526,13.0\n84,527,12.5\n84,528,12.0\n84,529,11.5\n84,530,11.0\n84,531,10.5\n84,532,10.0\n84,533,9.5\n84,534,9.0\n84,535,9.5\n84,536,10.0\n84,537,10.5\n84,538,11.0\n84,539,11.5\n84,540,12.0\n84,541,12.5\n84,542,13.0\n84,543,13.5\n84,544,14.0\n84,545,14.5\n84,546,15.0\n84,547,15.5\n84,548,16.0\n84,549,16.5\n84,550,14.0\n84,551,13.5\n84,552,13.0\n84,553,12.5\n84,554,12.0\n84,555,11.5\n84,556,11.0\n84,557,10.5\n84,558,10.0\n84,559,9.5\n84,560,10.0\n84,561,10.5\n84,562,11.0\n84,563,11.5\n84,564,12.0\n84,565,12.5\n84,566,13.0\n84,567,13.5\n84,568,14.0\n84,569,14.5\n84,570,15.0\n84,571,15.5\n84,572,16.0\n84,573,16.5\n84,574,17.0\n84,575,14.5\n84,576,14.0\n84,577,13.5\n84,578,13.0\n84,579,12.5\n84,580,12.0\n84,581,11.5\n84,582,11.0\n84,583,10.5\n84,584,10.0\n84,585,10.5\n84,586,11.0\n84,587,11.5\n84,588,12.0\n84,589,12.5\n84,590,13.0\n84,591,13.5\n84,592,14.0\n84,593,14.5\n84,594,15.0\n84,595,15.5\n84,596,16.0\n84,597,16.5\n84,598,17.0\n84,599,17.5\n84,600,15.0\n84,601,14.5\n84,602,14.0\n84,603,13.5\n84,604,13.0\n84,605,12.5\n84,606,12.0\n84,607,11.5\n84,608,11.0\n84,609,10.5\n84,610,11.0\n84,611,11.5\n84,612,12.0\n84,613,12.5\n84,614,13.0\n84,615,13.5\n84,616,14.0\n84,617,14.5\n84,618,15.0\n84,619,15.5\n84,620,16.0\n84,621,16.5\n84,622,17.0\n84,623,17.5\n84,624,18.0\n85,0,6.5\n85,1,6.0\n85,2,5.5\n85,3,5.0\n85,4,4.5\n85,5,4.0\n85,6,3.5\n85,7,3.0\n85,8,2.5\n85,9,2.0\n85,10,1.5\n85,11,2.0\n85,12,2.5\n85,13,3.0\n85,14,3.5\n85,15,4.0\n85,16,4.5\n85,17,5.0\n85,18,5.5\n85,19,6.0\n85,20,6.5\n85,21,7.0\n85,22,7.5\n85,23,8.0\n85,24,8.5\n85,25,6.0\n85,26,5.5\n85,27,5.0\n85,28,4.5\n85,29,4.0\n85,30,3.5\n85,31,3.0\n85,32,2.5\n85,33,2.0\n85,34,1.5\n85,35,1.0\n85,36,1.5\n85,37,2.0\n85,38,2.5\n85,39,3.0\n85,40,3.5\n85,41,4.0\n85,42,4.5\n85,43,5.0\n85,44,5.5\n85,45,6.0\n85,46,6.5\n85,47,7.0\n85,48,7.5\n85,49,8.0\n85,50,5.5\n85,51,5.0\n85,52,4.5\n85,53,4.0\n85,54,3.5\n85,55,3.0\n85,56,2.5\n85,57,2.0\n85,58,1.5\n85,59,1.0\n85,60,0.5\n85,61,1.0\n85,62,1.5\n85,63,2.0\n85,64,2.5\n85,65,3.0\n85,66,3.5\n85,67,4.0\n85,68,4.5\n85,69,5.0\n85,70,5.5\n85,71,6.0\n85,72,6.5\n85,73,7.0\n85,74,7.5\n85,75,5.0\n85,76,4.5\n85,77,4.0\n85,78,3.5\n85,79,3.0\n85,80,2.5\n85,81,2.0\n85,82,1.5\n85,83,1.0\n85,84,0.5\n85,85,0\n85,86,0.5\n85,87,1.0\n85,88,1.5\n85,89,2.0\n85,90,2.5\n85,91,3.0\n85,92,3.5\n85,93,4.0\n85,94,4.5\n85,95,5.0\n85,96,5.5\n85,97,6.0\n85,98,6.5\n85,99,7.0\n85,100,5.5\n85,101,5.0\n85,102,4.5\n85,103,4.0\n85,104,3.5\n85,105,3.0\n85,106,2.5\n85,107,2.0\n85,108,1.5\n85,109,1.0\n85,110,0.5\n85,111,1.0\n85,112,1.5\n85,113,2.0\n85,114,2.5\n85,115,3.0\n85,116,3.5\n85,117,4.0\n85,118,4.5\n85,119,5.0\n85,120,5.5\n85,121,6.0\n85,122,6.5\n85,123,7.0\n85,124,7.5\n85,125,6.0\n85,126,5.5\n85,127,5.0\n85,128,4.5\n85,129,4.0\n85,130,3.5\n85,131,3.0\n85,132,2.5\n85,133,2.0\n85,134,1.5\n85,135,1.0\n85,136,1.5\n85,137,2.0\n85,138,2.5\n85,139,3.0\n85,140,3.5\n85,141,4.0\n85,142,4.5\n85,143,5.0\n85,144,5.5\n85,145,6.0\n85,146,6.5\n85,147,7.0\n85,148,7.5\n85,149,8.0\n85,150,6.5\n85,151,6.0\n85,152,5.5\n85,153,5.0\n85,154,4.5\n85,155,4.0\n85,156,3.5\n85,157,3.0\n85,158,2.5\n85,159,2.0\n85,160,1.5\n85,161,2.0\n85,162,2.5\n85,163,3.0\n85,164,3.5\n85,165,4.0\n85,166,4.5\n85,167,5.0\n85,168,5.5\n85,169,6.0\n85,170,6.5\n85,171,7.0\n85,172,7.5\n85,173,8.0\n85,174,8.5\n85,175,7.0\n85,176,6.5\n85,177,6.0\n85,178,5.5\n85,179,5.0\n85,180,4.5\n85,181,4.0\n85,182,3.5\n85,183,3.0\n85,184,2.5\n85,185,2.0\n85,186,2.5\n85,187,3.0\n85,188,3.5\n85,189,4.0\n85,190,4.5\n85,191,5.0\n85,192,5.5\n85,193,6.0\n85,194,6.5\n85,195,7.0\n85,196,7.5\n85,197,8.0\n85,198,8.5\n85,199,9.0\n85,200,7.5\n85,201,7.0\n85,202,6.5\n85,203,6.0\n85,204,5.5\n85,205,5.0\n85,206,4.5\n85,207,4.0\n85,208,3.5\n85,209,3.0\n85,210,2.5\n85,211,3.0\n85,212,3.5\n85,213,4.0\n85,214,4.5\n85,215,5.0\n85,216,5.5\n85,217,6.0\n85,218,6.5\n85,219,7.0\n85,220,7.5\n85,221,8.0\n85,222,8.5\n85,223,9.0\n85,224,9.5\n85,225,8.0\n85,226,7.5\n85,227,7.0\n85,228,6.5\n85,229,6.0\n85,230,5.5\n85,231,5.0\n85,232,4.5\n85,233,4.0\n85,234,3.5\n85,235,3.0\n85,236,3.5\n85,237,4.0\n85,238,4.5\n85,239,5.0\n85,240,5.5\n85,241,6.0\n85,242,6.5\n85,243,7.0\n85,244,7.5\n85,245,8.0\n85,246,8.5\n85,247,9.0\n85,248,9.5\n85,249,10.0\n85,250,8.5\n85,251,8.0\n85,252,7.5\n85,253,7.0\n85,254,6.5\n85,255,6.0\n85,256,5.5\n85,257,5.0\n85,258,4.5\n85,259,4.0\n85,260,3.5\n85,261,4.0\n85,262,4.5\n85,263,5.0\n85,264,5.5\n85,265,6.0\n85,266,6.5\n85,267,7.0\n85,268,7.5\n85,269,8.0\n85,270,8.5\n85,271,9.0\n85,272,9.5\n85,273,10.0\n85,274,10.5\n85,275,9.0\n85,276,8.5\n85,277,8.0\n85,278,7.5\n85,279,7.0\n85,280,6.5\n85,281,6.0\n85,282,5.5\n85,283,5.0\n85,284,4.5\n85,285,4.0\n85,286,4.5\n85,287,5.0\n85,288,5.5\n85,289,6.0\n85,290,6.5\n85,291,7.0\n85,292,7.5\n85,293,8.0\n85,294,8.5\n85,295,9.0\n85,296,9.5\n85,297,10.0\n85,298,10.5\n85,299,11.0\n85,300,9.5\n85,301,9.0\n85,302,8.5\n85,303,8.0\n85,304,7.5\n85,305,7.0\n85,306,6.5\n85,307,6.0\n85,308,5.5\n85,309,5.0\n85,310,4.5\n85,311,5.0\n85,312,5.5\n85,313,6.0\n85,314,6.5\n85,315,7.0\n85,316,7.5\n85,317,8.0\n85,318,8.5\n85,319,9.0\n85,320,9.5\n85,321,10.0\n85,322,10.5\n85,323,11.0\n85,324,11.5\n85,325,10.0\n85,326,9.5\n85,327,9.0\n85,328,8.5\n85,329,8.0\n85,330,7.5\n85,331,7.0\n85,332,6.5\n85,333,6.0\n85,334,5.5\n85,335,5.0\n85,336,5.5\n85,337,6.0\n85,338,6.5\n85,339,7.0\n85,340,7.5\n85,341,8.0\n85,342,8.5\n85,343,9.0\n85,344,9.5\n85,345,10.0\n85,346,10.5\n85,347,11.0\n85,348,11.5\n85,349,12.0\n85,350,10.5\n85,351,10.0\n85,352,9.5\n85,353,9.0\n85,354,8.5\n85,355,8.0\n85,356,7.5\n85,357,7.0\n85,358,6.5\n85,359,6.0\n85,360,5.5\n85,361,6.0\n85,362,6.5\n85,363,7.0\n85,364,7.5\n85,365,8.0\n85,366,8.5\n85,367,9.0\n85,368,9.5\n85,369,10.0\n85,370,10.5\n85,371,11.0\n85,372,11.5\n85,373,12.0\n85,374,12.5\n85,375,11.0\n85,376,10.5\n85,377,10.0\n85,378,9.5\n85,379,9.0\n85,380,8.5\n85,381,8.0\n85,382,7.5\n85,383,7.0\n85,384,6.5\n85,385,6.0\n85,386,6.5\n85,387,7.0\n85,388,7.5\n85,389,8.0\n85,390,8.5\n85,391,9.0\n85,392,9.5\n85,393,10.0\n85,394,10.5\n85,395,11.0\n85,396,11.5\n85,397,12.0\n85,398,12.5\n85,399,13.0\n85,400,11.5\n85,401,11.0\n85,402,10.5\n85,403,10.0\n85,404,9.5\n85,405,9.0\n85,406,8.5\n85,407,8.0\n85,408,7.5\n85,409,7.0\n85,410,6.5\n85,411,7.0\n85,412,7.5\n85,413,8.0\n85,414,8.5\n85,415,9.0\n85,416,9.5\n85,417,10.0\n85,418,10.5\n85,419,11.0\n85,420,11.5\n85,421,12.0\n85,422,12.5\n85,423,13.0\n85,424,13.5\n85,425,12.0\n85,426,11.5\n85,427,11.0\n85,428,10.5\n85,429,10.0\n85,430,9.5\n85,431,9.0\n85,432,8.5\n85,433,8.0\n85,434,7.5\n85,435,7.0\n85,436,7.5\n85,437,8.0\n85,438,8.5\n85,439,9.0\n85,440,9.5\n85,441,10.0\n85,442,10.5\n85,443,11.0\n85,444,11.5\n85,445,12.0\n85,446,12.5\n85,447,13.0\n85,448,13.5\n85,449,14.0\n85,450,12.5\n85,451,12.0\n85,452,11.5\n85,453,11.0\n85,454,10.5\n85,455,10.0\n85,456,9.5\n85,457,9.0\n85,458,8.5\n85,459,8.0\n85,460,7.5\n85,461,8.0\n85,462,8.5\n85,463,9.0\n85,464,9.5\n85,465,10.0\n85,466,10.5\n85,467,11.0\n85,468,11.5\n85,469,12.0\n85,470,12.5\n85,471,13.0\n85,472,13.5\n85,473,14.0\n85,474,14.5\n85,475,13.0\n85,476,12.5\n85,477,12.0\n85,478,11.5\n85,479,11.0\n85,480,10.5\n85,481,10.0\n85,482,9.5\n85,483,9.0\n85,484,8.5\n85,485,8.0\n85,486,8.5\n85,487,9.0\n85,488,9.5\n85,489,10.0\n85,490,10.5\n85,491,11.0\n85,492,11.5\n85,493,12.0\n85,494,12.5\n85,495,13.0\n85,496,13.5\n85,497,14.0\n85,498,14.5\n85,499,15.0\n85,500,13.5\n85,501,13.0\n85,502,12.5\n85,503,12.0\n85,504,11.5\n85,505,11.0\n85,506,10.5\n85,507,10.0\n85,508,9.5\n85,509,9.0\n85,510,8.5\n85,511,9.0\n85,512,9.5\n85,513,10.0\n85,514,10.5\n85,515,11.0\n85,516,11.5\n85,517,12.0\n85,518,12.5\n85,519,13.0\n85,520,13.5\n85,521,14.0\n85,522,14.5\n85,523,15.0\n85,524,15.5\n85,525,14.0\n85,526,13.5\n85,527,13.0\n85,528,12.5\n85,529,12.0\n85,530,11.5\n85,531,11.0\n85,532,10.5\n85,533,10.0\n85,534,9.5\n85,535,9.0\n85,536,9.5\n85,537,10.0\n85,538,10.5\n85,539,11.0\n85,540,11.5\n85,541,12.0\n85,542,12.5\n85,543,13.0\n85,544,13.5\n85,545,14.0\n85,546,14.5\n85,547,15.0\n85,548,15.5\n85,549,16.0\n85,550,14.5\n85,551,14.0\n85,552,13.5\n85,553,13.0\n85,554,12.5\n85,555,12.0\n85,556,11.5\n85,557,11.0\n85,558,10.5\n85,559,10.0\n85,560,9.5\n85,561,10.0\n85,562,10.5\n85,563,11.0\n85,564,11.5\n85,565,12.0\n85,566,12.5\n85,567,13.0\n85,568,13.5\n85,569,14.0\n85,570,14.5\n85,571,15.0\n85,572,15.5\n85,573,16.0\n85,574,16.5\n85,575,15.0\n85,576,14.5\n85,577,14.0\n85,578,13.5\n85,579,13.0\n85,580,12.5\n85,581,12.0\n85,582,11.5\n85,583,11.0\n85,584,10.5\n85,585,10.0\n85,586,10.5\n85,587,11.0\n85,588,11.5\n85,589,12.0\n85,590,12.5\n85,591,13.0\n85,592,13.5\n85,593,14.0\n85,594,14.5\n85,595,15.0\n85,596,15.5\n85,597,16.0\n85,598,16.5\n85,599,17.0\n85,600,15.5\n85,601,15.0\n85,602,14.5\n85,603,14.0\n85,604,13.5\n85,605,13.0\n85,606,12.5\n85,607,12.0\n85,608,11.5\n85,609,11.0\n85,610,10.5\n85,611,11.0\n85,612,11.5\n85,613,12.0\n85,614,12.5\n85,615,13.0\n85,616,13.5\n85,617,14.0\n85,618,14.5\n85,619,15.0\n85,620,15.5\n85,621,16.0\n85,622,16.5\n85,623,17.0\n85,624,17.5\n86,0,7.0\n86,1,6.5\n86,2,6.0\n86,3,5.5\n86,4,5.0\n86,5,4.5\n86,6,4.0\n86,7,3.5\n86,8,3.0\n86,9,2.5\n86,10,2.0\n86,11,1.5\n86,12,2.0\n86,13,2.5\n86,14,3.0\n86,15,3.5\n86,16,4.0\n86,17,4.5\n86,18,5.0\n86,19,5.5\n86,20,6.0\n86,21,6.5\n86,22,7.0\n86,23,7.5\n86,24,8.0\n86,25,6.5\n86,26,6.0\n86,27,5.5\n86,28,5.0\n86,29,4.5\n86,30,4.0\n86,31,3.5\n86,32,3.0\n86,33,2.5\n86,34,2.0\n86,35,1.5\n86,36,1.0\n86,37,1.5\n86,38,2.0\n86,39,2.5\n86,40,3.0\n86,41,3.5\n86,42,4.0\n86,43,4.5\n86,44,5.0\n86,45,5.5\n86,46,6.0\n86,47,6.5\n86,48,7.0\n86,49,7.5\n86,50,6.0\n86,51,5.5\n86,52,5.0\n86,53,4.5\n86,54,4.0\n86,55,3.5\n86,56,3.0\n86,57,2.5\n86,58,2.0\n86,59,1.5\n86,60,1.0\n86,61,0.5\n86,62,1.0\n86,63,1.5\n86,64,2.0\n86,65,2.5\n86,66,3.0\n86,67,3.5\n86,68,4.0\n86,69,4.5\n86,70,5.0\n86,71,5.5\n86,72,6.0\n86,73,6.5\n86,74,7.0\n86,75,5.5\n86,76,5.0\n86,77,4.5\n86,78,4.0\n86,79,3.5\n86,80,3.0\n86,81,2.5\n86,82,2.0\n86,83,1.5\n86,84,1.0\n86,85,0.5\n86,86,0\n86,87,0.5\n86,88,1.0\n86,89,1.5\n86,90,2.0\n86,91,2.5\n86,92,3.0\n86,93,3.5\n86,94,4.0\n86,95,4.5\n86,96,5.0\n86,97,5.5\n86,98,6.0\n86,99,6.5\n86,100,6.0\n86,101,5.5\n86,102,5.0\n86,103,4.5\n86,104,4.0\n86,105,3.5\n86,106,3.0\n86,107,2.5\n86,108,2.0\n86,109,1.5\n86,110,1.0\n86,111,0.5\n86,112,1.0\n86,113,1.5\n86,114,2.0\n86,115,2.5\n86,116,3.0\n86,117,3.5\n86,118,4.0\n86,119,4.5\n86,120,5.0\n86,121,5.5\n86,122,6.0\n86,123,6.5\n86,124,7.0\n86,125,6.5\n86,126,6.0\n86,127,5.5\n86,128,5.0\n86,129,4.5\n86,130,4.0\n86,131,3.5\n86,132,3.0\n86,133,2.5\n86,134,2.0\n86,135,1.5\n86,136,1.0\n86,137,1.5\n86,138,2.0\n86,139,2.5\n86,140,3.0\n86,141,3.5\n86,142,4.0\n86,143,4.5\n86,144,5.0\n86,145,5.5\n86,146,6.0\n86,147,6.5\n86,148,7.0\n86,149,7.5\n86,150,7.0\n86,151,6.5\n86,152,6.0\n86,153,5.5\n86,154,5.0\n86,155,4.5\n86,156,4.0\n86,157,3.5\n86,158,3.0\n86,159,2.5\n86,160,2.0\n86,161,1.5\n86,162,2.0\n86,163,2.5\n86,164,3.0\n86,165,3.5\n86,166,4.0\n86,167,4.5\n86,168,5.0\n86,169,5.5\n86,170,6.0\n86,171,6.5\n86,172,7.0\n86,173,7.5\n86,174,8.0\n86,175,7.5\n86,176,7.0\n86,177,6.5\n86,178,6.0\n86,179,5.5\n86,180,5.0\n86,181,4.5\n86,182,4.0\n86,183,3.5\n86,184,3.0\n86,185,2.5\n86,186,2.0\n86,187,2.5\n86,188,3.0\n86,189,3.5\n86,190,4.0\n86,191,4.5\n86,192,5.0\n86,193,5.5\n86,194,6.0\n86,195,6.5\n86,196,7.0\n86,197,7.5\n86,198,8.0\n86,199,8.5\n86,200,8.0\n86,201,7.5\n86,202,7.0\n86,203,6.5\n86,204,6.0\n86,205,5.5\n86,206,5.0\n86,207,4.5\n86,208,4.0\n86,209,3.5\n86,210,3.0\n86,211,2.5\n86,212,3.0\n86,213,3.5\n86,214,4.0\n86,215,4.5\n86,216,5.0\n86,217,5.5\n86,218,6.0\n86,219,6.5\n86,220,7.0\n86,221,7.5\n86,222,8.0\n86,223,8.5\n86,224,9.0\n86,225,8.5\n86,226,8.0\n86,227,7.5\n86,228,7.0\n86,229,6.5\n86,230,6.0\n86,231,5.5\n86,232,5.0\n86,233,4.5\n86,234,4.0\n86,235,3.5\n86,236,3.0\n86,237,3.5\n86,238,4.0\n86,239,4.5\n86,240,5.0\n86,241,5.5\n86,242,6.0\n86,243,6.5\n86,244,7.0\n86,245,7.5\n86,246,8.0\n86,247,8.5\n86,248,9.0\n86,249,9.5\n86,250,9.0\n86,251,8.5\n86,252,8.0\n86,253,7.5\n86,254,7.0\n86,255,6.5\n86,256,6.0\n86,257,5.5\n86,258,5.0\n86,259,4.5\n86,260,4.0\n86,261,3.5\n86,262,4.0\n86,263,4.5\n86,264,5.0\n86,265,5.5\n86,266,6.0\n86,267,6.5\n86,268,7.0\n86,269,7.5\n86,270,8.0\n86,271,8.5\n86,272,9.0\n86,273,9.5\n86,274,10.0\n86,275,9.5\n86,276,9.0\n86,277,8.5\n86,278,8.0\n86,279,7.5\n86,280,7.0\n86,281,6.5\n86,282,6.0\n86,283,5.5\n86,284,5.0\n86,285,4.5\n86,286,4.0\n86,287,4.5\n86,288,5.0\n86,289,5.5\n86,290,6.0\n86,291,6.5\n86,292,7.0\n86,293,7.5\n86,294,8.0\n86,295,8.5\n86,296,9.0\n86,297,9.5\n86,298,10.0\n86,299,10.5\n86,300,10.0\n86,301,9.5\n86,302,9.0\n86,303,8.5\n86,304,8.0\n86,305,7.5\n86,306,7.0\n86,307,6.5\n86,308,6.0\n86,309,5.5\n86,310,5.0\n86,311,4.5\n86,312,5.0\n86,313,5.5\n86,314,6.0\n86,315,6.5\n86,316,7.0\n86,317,7.5\n86,318,8.0\n86,319,8.5\n86,320,9.0\n86,321,9.5\n86,322,10.0\n86,323,10.5\n86,324,11.0\n86,325,10.5\n86,326,10.0\n86,327,9.5\n86,328,9.0\n86,329,8.5\n86,330,8.0\n86,331,7.5\n86,332,7.0\n86,333,6.5\n86,334,6.0\n86,335,5.5\n86,336,5.0\n86,337,5.5\n86,338,6.0\n86,339,6.5\n86,340,7.0\n86,341,7.5\n86,342,8.0\n86,343,8.5\n86,344,9.0\n86,345,9.5\n86,346,10.0\n86,347,10.5\n86,348,11.0\n86,349,11.5\n86,350,11.0\n86,351,10.5\n86,352,10.0\n86,353,9.5\n86,354,9.0\n86,355,8.5\n86,356,8.0\n86,357,7.5\n86,358,7.0\n86,359,6.5\n86,360,6.0\n86,361,5.5\n86,362,6.0\n86,363,6.5\n86,364,7.0\n86,365,7.5\n86,366,8.0\n86,367,8.5\n86,368,9.0\n86,369,9.5\n86,370,10.0\n86,371,10.5\n86,372,11.0\n86,373,11.5\n86,374,12.0\n86,375,11.5\n86,376,11.0\n86,377,10.5\n86,378,10.0\n86,379,9.5\n86,380,9.0\n86,381,8.5\n86,382,8.0\n86,383,7.5\n86,384,7.0\n86,385,6.5\n86,386,6.0\n86,387,6.5\n86,388,7.0\n86,389,7.5\n86,390,8.0\n86,391,8.5\n86,392,9.0\n86,393,9.5\n86,394,10.0\n86,395,10.5\n86,396,11.0\n86,397,11.5\n86,398,12.0\n86,399,12.5\n86,400,12.0\n86,401,11.5\n86,402,11.0\n86,403,10.5\n86,404,10.0\n86,405,9.5\n86,406,9.0\n86,407,8.5\n86,408,8.0\n86,409,7.5\n86,410,7.0\n86,411,6.5\n86,412,7.0\n86,413,7.5\n86,414,8.0\n86,415,8.5\n86,416,9.0\n86,417,9.5\n86,418,10.0\n86,419,10.5\n86,420,11.0\n86,421,11.5\n86,422,12.0\n86,423,12.5\n86,424,13.0\n86,425,12.5\n86,426,12.0\n86,427,11.5\n86,428,11.0\n86,429,10.5\n86,430,10.0\n86,431,9.5\n86,432,9.0\n86,433,8.5\n86,434,8.0\n86,435,7.5\n86,436,7.0\n86,437,7.5\n86,438,8.0\n86,439,8.5\n86,440,9.0\n86,441,9.5\n86,442,10.0\n86,443,10.5\n86,444,11.0\n86,445,11.5\n86,446,12.0\n86,447,12.5\n86,448,13.0\n86,449,13.5\n86,450,13.0\n86,451,12.5\n86,452,12.0\n86,453,11.5\n86,454,11.0\n86,455,10.5\n86,456,10.0\n86,457,9.5\n86,458,9.0\n86,459,8.5\n86,460,8.0\n86,461,7.5\n86,462,8.0\n86,463,8.5\n86,464,9.0\n86,465,9.5\n86,466,10.0\n86,467,10.5\n86,468,11.0\n86,469,11.5\n86,470,12.0\n86,471,12.5\n86,472,13.0\n86,473,13.5\n86,474,14.0\n86,475,13.5\n86,476,13.0\n86,477,12.5\n86,478,12.0\n86,479,11.5\n86,480,11.0\n86,481,10.5\n86,482,10.0\n86,483,9.5\n86,484,9.0\n86,485,8.5\n86,486,8.0\n86,487,8.5\n86,488,9.0\n86,489,9.5\n86,490,10.0\n86,491,10.5\n86,492,11.0\n86,493,11.5\n86,494,12.0\n86,495,12.5\n86,496,13.0\n86,497,13.5\n86,498,14.0\n86,499,14.5\n86,500,14.0\n86,501,13.5\n86,502,13.0\n86,503,12.5\n86,504,12.0\n86,505,11.5\n86,506,11.0\n86,507,10.5\n86,508,10.0\n86,509,9.5\n86,510,9.0\n86,511,8.5\n86,512,9.0\n86,513,9.5\n86,514,10.0\n86,515,10.5\n86,516,11.0\n86,517,11.5\n86,518,12.0\n86,519,12.5\n86,520,13.0\n86,521,13.5\n86,522,14.0\n86,523,14.5\n86,524,15.0\n86,525,14.5\n86,526,14.0\n86,527,13.5\n86,528,13.0\n86,529,12.5\n86,530,12.0\n86,531,11.5\n86,532,11.0\n86,533,10.5\n86,534,10.0\n86,535,9.5\n86,536,9.0\n86,537,9.5\n86,538,10.0\n86,539,10.5\n86,540,11.0\n86,541,11.5\n86,542,12.0\n86,543,12.5\n86,544,13.0\n86,545,13.5\n86,546,14.0\n86,547,14.5\n86,548,15.0\n86,549,15.5\n86,550,15.0\n86,551,14.5\n86,552,14.0\n86,553,13.5\n86,554,13.0\n86,555,12.5\n86,556,12.0\n86,557,11.5\n86,558,11.0\n86,559,10.5\n86,560,10.0\n86,561,9.5\n86,562,10.0\n86,563,10.5\n86,564,11.0\n86,565,11.5\n86,566,12.0\n86,567,12.5\n86,568,13.0\n86,569,13.5\n86,570,14.0\n86,571,14.5\n86,572,15.0\n86,573,15.5\n86,574,16.0\n86,575,15.5\n86,576,15.0\n86,577,14.5\n86,578,14.0\n86,579,13.5\n86,580,13.0\n86,581,12.5\n86,582,12.0\n86,583,11.5\n86,584,11.0\n86,585,10.5\n86,586,10.0\n86,587,10.5\n86,588,11.0\n86,589,11.5\n86,590,12.0\n86,591,12.5\n86,592,13.0\n86,593,13.5\n86,594,14.0\n86,595,14.5\n86,596,15.0\n86,597,15.5\n86,598,16.0\n86,599,16.5\n86,600,16.0\n86,601,15.5\n86,602,15.0\n86,603,14.5\n86,604,14.0\n86,605,13.5\n86,606,13.0\n86,607,12.5\n86,608,12.0\n86,609,11.5\n86,610,11.0\n86,611,10.5\n86,612,11.0\n86,613,11.5\n86,614,12.0\n86,615,12.5\n86,616,13.0\n86,617,13.5\n86,618,14.0\n86,619,14.5\n86,620,15.0\n86,621,15.5\n86,622,16.0\n86,623,16.5\n86,624,17.0\n87,0,7.5\n87,1,7.0\n87,2,6.5\n87,3,6.0\n87,4,5.5\n87,5,5.0\n87,6,4.5\n87,7,4.0\n87,8,3.5\n87,9,3.0\n87,10,2.5\n87,11,2.0\n87,12,1.5\n87,13,2.0\n87,14,2.5\n87,15,3.0\n87,16,3.5\n87,17,4.0\n87,18,4.5\n87,19,5.0\n87,20,5.5\n87,21,6.0\n87,22,6.5\n87,23,7.0\n87,24,7.5\n87,25,7.0\n87,26,6.5\n87,27,6.0\n87,28,5.5\n87,29,5.0\n87,30,4.5\n87,31,4.0\n87,32,3.5\n87,33,3.0\n87,34,2.5\n87,35,2.0\n87,36,1.5\n87,37,1.0\n87,38,1.5\n87,39,2.0\n87,40,2.5\n87,41,3.0\n87,42,3.5\n87,43,4.0\n87,44,4.5\n87,45,5.0\n87,46,5.5\n87,47,6.0\n87,48,6.5\n87,49,7.0\n87,50,6.5\n87,51,6.0\n87,52,5.5\n87,53,5.0\n87,54,4.5\n87,55,4.0\n87,56,3.5\n87,57,3.0\n87,58,2.5\n87,59,2.0\n87,60,1.5\n87,61,1.0\n87,62,0.5\n87,63,1.0\n87,64,1.5\n87,65,2.0\n87,66,2.5\n87,67,3.0\n87,68,3.5\n87,69,4.0\n87,70,4.5\n87,71,5.0\n87,72,5.5\n87,73,6.0\n87,74,6.5\n87,75,6.0\n87,76,5.5\n87,77,5.0\n87,78,4.5\n87,79,4.0\n87,80,3.5\n87,81,3.0\n87,82,2.5\n87,83,2.0\n87,84,1.5\n87,85,1.0\n87,86,0.5\n87,87,0\n87,88,0.5\n87,89,1.0\n87,90,1.5\n87,91,2.0\n87,92,2.5\n87,93,3.0\n87,94,3.5\n87,95,4.0\n87,96,4.5\n87,97,5.0\n87,98,5.5\n87,99,6.0\n87,100,6.5\n87,101,6.0\n87,102,5.5\n87,103,5.0\n87,104,4.5\n87,105,4.0\n87,106,3.5\n87,107,3.0\n87,108,2.5\n87,109,2.0\n87,110,1.5\n87,111,1.0\n87,112,0.5\n87,113,1.0\n87,114,1.5\n87,115,2.0\n87,116,2.5\n87,117,3.0\n87,118,3.5\n87,119,4.0\n87,120,4.5\n87,121,5.0\n87,122,5.5\n87,123,6.0\n87,124,6.5\n87,125,7.0\n87,126,6.5\n87,127,6.0\n87,128,5.5\n87,129,5.0\n87,130,4.5\n87,131,4.0\n87,132,3.5\n87,133,3.0\n87,134,2.5\n87,135,2.0\n87,136,1.5\n87,137,1.0\n87,138,1.5\n87,139,2.0\n87,140,2.5\n87,141,3.0\n87,142,3.5\n87,143,4.0\n87,144,4.5\n87,145,5.0\n87,146,5.5\n87,147,6.0\n87,148,6.5\n87,149,7.0\n87,150,7.5\n87,151,7.0\n87,152,6.5\n87,153,6.0\n87,154,5.5\n87,155,5.0\n87,156,4.5\n87,157,4.0\n87,158,3.5\n87,159,3.0\n87,160,2.5\n87,161,2.0\n87,162,1.5\n87,163,2.0\n87,164,2.5\n87,165,3.0\n87,166,3.5\n87,167,4.0\n87,168,4.5\n87,169,5.0\n87,170,5.5\n87,171,6.0\n87,172,6.5\n87,173,7.0\n87,174,7.5\n87,175,8.0\n87,176,7.5\n87,177,7.0\n87,178,6.5\n87,179,6.0\n87,180,5.5\n87,181,5.0\n87,182,4.5\n87,183,4.0\n87,184,3.5\n87,185,3.0\n87,186,2.5\n87,187,2.0\n87,188,2.5\n87,189,3.0\n87,190,3.5\n87,191,4.0\n87,192,4.5\n87,193,5.0\n87,194,5.5\n87,195,6.0\n87,196,6.5\n87,197,7.0\n87,198,7.5\n87,199,8.0\n87,200,8.5\n87,201,8.0\n87,202,7.5\n87,203,7.0\n87,204,6.5\n87,205,6.0\n87,206,5.5\n87,207,5.0\n87,208,4.5\n87,209,4.0\n87,210,3.5\n87,211,3.0\n87,212,2.5\n87,213,3.0\n87,214,3.5\n87,215,4.0\n87,216,4.5\n87,217,5.0\n87,218,5.5\n87,219,6.0\n87,220,6.5\n87,221,7.0\n87,222,7.5\n87,223,8.0\n87,224,8.5\n87,225,9.0\n87,226,8.5\n87,227,8.0\n87,228,7.5\n87,229,7.0\n87,230,6.5\n87,231,6.0\n87,232,5.5\n87,233,5.0\n87,234,4.5\n87,235,4.0\n87,236,3.5\n87,237,3.0\n87,238,3.5\n87,239,4.0\n87,240,4.5\n87,241,5.0\n87,242,5.5\n87,243,6.0\n87,244,6.5\n87,245,7.0\n87,246,7.5\n87,247,8.0\n87,248,8.5\n87,249,9.0\n87,250,9.5\n87,251,9.0\n87,252,8.5\n87,253,8.0\n87,254,7.5\n87,255,7.0\n87,256,6.5\n87,257,6.0\n87,258,5.5\n87,259,5.0\n87,260,4.5\n87,261,4.0\n87,262,3.5\n87,263,4.0\n87,264,4.5\n87,265,5.0\n87,266,5.5\n87,267,6.0\n87,268,6.5\n87,269,7.0\n87,270,7.5\n87,271,8.0\n87,272,8.5\n87,273,9.0\n87,274,9.5\n87,275,10.0\n87,276,9.5\n87,277,9.0\n87,278,8.5\n87,279,8.0\n87,280,7.5\n87,281,7.0\n87,282,6.5\n87,283,6.0\n87,284,5.5\n87,285,5.0\n87,286,4.5\n87,287,4.0\n87,288,4.5\n87,289,5.0\n87,290,5.5\n87,291,6.0\n87,292,6.5\n87,293,7.0\n87,294,7.5\n87,295,8.0\n87,296,8.5\n87,297,9.0\n87,298,9.5\n87,299,10.0\n87,300,10.5\n87,301,10.0\n87,302,9.5\n87,303,9.0\n87,304,8.5\n87,305,8.0\n87,306,7.5\n87,307,7.0\n87,308,6.5\n87,309,6.0\n87,310,5.5\n87,311,5.0\n87,312,4.5\n87,313,5.0\n87,314,5.5\n87,315,6.0\n87,316,6.5\n87,317,7.0\n87,318,7.5\n87,319,8.0\n87,320,8.5\n87,321,9.0\n87,322,9.5\n87,323,10.0\n87,324,10.5\n87,325,11.0\n87,326,10.5\n87,327,10.0\n87,328,9.5\n87,329,9.0\n87,330,8.5\n87,331,8.0\n87,332,7.5\n87,333,7.0\n87,334,6.5\n87,335,6.0\n87,336,5.5\n87,337,5.0\n87,338,5.5\n87,339,6.0\n87,340,6.5\n87,341,7.0\n87,342,7.5\n87,343,8.0\n87,344,8.5\n87,345,9.0\n87,346,9.5\n87,347,10.0\n87,348,10.5\n87,349,11.0\n87,350,11.5\n87,351,11.0\n87,352,10.5\n87,353,10.0\n87,354,9.5\n87,355,9.0\n87,356,8.5\n87,357,8.0\n87,358,7.5\n87,359,7.0\n87,360,6.5\n87,361,6.0\n87,362,5.5\n87,363,6.0\n87,364,6.5\n87,365,7.0\n87,366,7.5\n87,367,8.0\n87,368,8.5\n87,369,9.0\n87,370,9.5\n87,371,10.0\n87,372,10.5\n87,373,11.0\n87,374,11.5\n87,375,12.0\n87,376,11.5\n87,377,11.0\n87,378,10.5\n87,379,10.0\n87,380,9.5\n87,381,9.0\n87,382,8.5\n87,383,8.0\n87,384,7.5\n87,385,7.0\n87,386,6.5\n87,387,6.0\n87,388,6.5\n87,389,7.0\n87,390,7.5\n87,391,8.0\n87,392,8.5\n87,393,9.0\n87,394,9.5\n87,395,10.0\n87,396,10.5\n87,397,11.0\n87,398,11.5\n87,399,12.0\n87,400,12.5\n87,401,12.0\n87,402,11.5\n87,403,11.0\n87,404,10.5\n87,405,10.0\n87,406,9.5\n87,407,9.0\n87,408,8.5\n87,409,8.0\n87,410,7.5\n87,411,7.0\n87,412,6.5\n87,413,7.0\n87,414,7.5\n87,415,8.0\n87,416,8.5\n87,417,9.0\n87,418,9.5\n87,419,10.0\n87,420,10.5\n87,421,11.0\n87,422,11.5\n87,423,12.0\n87,424,12.5\n87,425,13.0\n87,426,12.5\n87,427,12.0\n87,428,11.5\n87,429,11.0\n87,430,10.5\n87,431,10.0\n87,432,9.5\n87,433,9.0\n87,434,8.5\n87,435,8.0\n87,436,7.5\n87,437,7.0\n87,438,7.5\n87,439,8.0\n87,440,8.5\n87,441,9.0\n87,442,9.5\n87,443,10.0\n87,444,10.5\n87,445,11.0\n87,446,11.5\n87,447,12.0\n87,448,12.5\n87,449,13.0\n87,450,13.5\n87,451,13.0\n87,452,12.5\n87,453,12.0\n87,454,11.5\n87,455,11.0\n87,456,10.5\n87,457,10.0\n87,458,9.5\n87,459,9.0\n87,460,8.5\n87,461,8.0\n87,462,7.5\n87,463,8.0\n87,464,8.5\n87,465,9.0\n87,466,9.5\n87,467,10.0\n87,468,10.5\n87,469,11.0\n87,470,11.5\n87,471,12.0\n87,472,12.5\n87,473,13.0\n87,474,13.5\n87,475,14.0\n87,476,13.5\n87,477,13.0\n87,478,12.5\n87,479,12.0\n87,480,11.5\n87,481,11.0\n87,482,10.5\n87,483,10.0\n87,484,9.5\n87,485,9.0\n87,486,8.5\n87,487,8.0\n87,488,8.5\n87,489,9.0\n87,490,9.5\n87,491,10.0\n87,492,10.5\n87,493,11.0\n87,494,11.5\n87,495,12.0\n87,496,12.5\n87,497,13.0\n87,498,13.5\n87,499,14.0\n87,500,14.5\n87,501,14.0\n87,502,13.5\n87,503,13.0\n87,504,12.5\n87,505,12.0\n87,506,11.5\n87,507,11.0\n87,508,10.5\n87,509,10.0\n87,510,9.5\n87,511,9.0\n87,512,8.5\n87,513,9.0\n87,514,9.5\n87,515,10.0\n87,516,10.5\n87,517,11.0\n87,518,11.5\n87,519,12.0\n87,520,12.5\n87,521,13.0\n87,522,13.5\n87,523,14.0\n87,524,14.5\n87,525,15.0\n87,526,14.5\n87,527,14.0\n87,528,13.5\n87,529,13.0\n87,530,12.5\n87,531,12.0\n87,532,11.5\n87,533,11.0\n87,534,10.5\n87,535,10.0\n87,536,9.5\n87,537,9.0\n87,538,9.5\n87,539,10.0\n87,540,10.5\n87,541,11.0\n87,542,11.5\n87,543,12.0\n87,544,12.5\n87,545,13.0\n87,546,13.5\n87,547,14.0\n87,548,14.5\n87,549,15.0\n87,550,15.5\n87,551,15.0\n87,552,14.5\n87,553,14.0\n87,554,13.5\n87,555,13.0\n87,556,12.5\n87,557,12.0\n87,558,11.5\n87,559,11.0\n87,560,10.5\n87,561,10.0\n87,562,9.5\n87,563,10.0\n87,564,10.5\n87,565,11.0\n87,566,11.5\n87,567,12.0\n87,568,12.5\n87,569,13.0\n87,570,13.5\n87,571,14.0\n87,572,14.5\n87,573,15.0\n87,574,15.5\n87,575,16.0\n87,576,15.5\n87,577,15.0\n87,578,14.5\n87,579,14.0\n87,580,13.5\n87,581,13.0\n87,582,12.5\n87,583,12.0\n87,584,11.5\n87,585,11.0\n87,586,10.5\n87,587,10.0\n87,588,10.5\n87,589,11.0\n87,590,11.5\n87,591,12.0\n87,592,12.5\n87,593,13.0\n87,594,13.5\n87,595,14.0\n87,596,14.5\n87,597,15.0\n87,598,15.5\n87,599,16.0\n87,600,16.5\n87,601,16.0\n87,602,15.5\n87,603,15.0\n87,604,14.5\n87,605,14.0\n87,606,13.5\n87,607,13.0\n87,608,12.5\n87,609,12.0\n87,610,11.5\n87,611,11.0\n87,612,10.5\n87,613,11.0\n87,614,11.5\n87,615,12.0\n87,616,12.5\n87,617,13.0\n87,618,13.5\n87,619,14.0\n87,620,14.5\n87,621,15.0\n87,622,15.5\n87,623,16.0\n87,624,16.5\n88,0,8.0\n88,1,7.5\n88,2,7.0\n88,3,6.5\n88,4,6.0\n88,5,5.5\n88,6,5.0\n88,7,4.5\n88,8,4.0\n88,9,3.5\n88,10,3.0\n88,11,2.5\n88,12,2.0\n88,13,1.5\n88,14,2.0\n88,15,2.5\n88,16,3.0\n88,17,3.5\n88,18,4.0\n88,19,4.5\n88,20,5.0\n88,21,5.5\n88,22,6.0\n88,23,6.5\n88,24,7.0\n88,25,7.5\n88,26,7.0\n88,27,6.5\n88,28,6.0\n88,29,5.5\n88,30,5.0\n88,31,4.5\n88,32,4.0\n88,33,3.5\n88,34,3.0\n88,35,2.5\n88,36,2.0\n88,37,1.5\n88,38,1.0\n88,39,1.5\n88,40,2.0\n88,41,2.5\n88,42,3.0\n88,43,3.5\n88,44,4.0\n88,45,4.5\n88,46,5.0\n88,47,5.5\n88,48,6.0\n88,49,6.5\n88,50,7.0\n88,51,6.5\n88,52,6.0\n88,53,5.5\n88,54,5.0\n88,55,4.5\n88,56,4.0\n88,57,3.5\n88,58,3.0\n88,59,2.5\n88,60,2.0\n88,61,1.5\n88,62,1.0\n88,63,0.5\n88,64,1.0\n88,65,1.5\n88,66,2.0\n88,67,2.5\n88,68,3.0\n88,69,3.5\n88,70,4.0\n88,71,4.5\n88,72,5.0\n88,73,5.5\n88,74,6.0\n88,75,6.5\n88,76,6.0\n88,77,5.5\n88,78,5.0\n88,79,4.5\n88,80,4.0\n88,81,3.5\n88,82,3.0\n88,83,2.5\n88,84,2.0\n88,85,1.5\n88,86,1.0\n88,87,0.5\n88,88,0\n88,89,0.5\n88,90,1.0\n88,91,1.5\n88,92,2.0\n88,93,2.5\n88,94,3.0\n88,95,3.5\n88,96,4.0\n88,97,4.5\n88,98,5.0\n88,99,5.5\n88,100,7.0\n88,101,6.5\n88,102,6.0\n88,103,5.5\n88,104,5.0\n88,105,4.5\n88,106,4.0\n88,107,3.5\n88,108,3.0\n88,109,2.5\n88,110,2.0\n88,111,1.5\n88,112,1.0\n88,113,0.5\n88,114,1.0\n88,115,1.5\n88,116,2.0\n88,117,2.5\n88,118,3.0\n88,119,3.5\n88,120,4.0\n88,121,4.5\n88,122,5.0\n88,123,5.5\n88,124,6.0\n88,125,7.5\n88,126,7.0\n88,127,6.5\n88,128,6.0\n88,129,5.5\n88,130,5.0\n88,131,4.5\n88,132,4.0\n88,133,3.5\n88,134,3.0\n88,135,2.5\n88,136,2.0\n88,137,1.5\n88,138,1.0\n88,139,1.5\n88,140,2.0\n88,141,2.5\n88,142,3.0\n88,143,3.5\n88,144,4.0\n88,145,4.5\n88,146,5.0\n88,147,5.5\n88,148,6.0\n88,149,6.5\n88,150,8.0\n88,151,7.5\n88,152,7.0\n88,153,6.5\n88,154,6.0\n88,155,5.5\n88,156,5.0\n88,157,4.5\n88,158,4.0\n88,159,3.5\n88,160,3.0\n88,161,2.5\n88,162,2.0\n88,163,1.5\n88,164,2.0\n88,165,2.5\n88,166,3.0\n88,167,3.5\n88,168,4.0\n88,169,4.5\n88,170,5.0\n88,171,5.5\n88,172,6.0\n88,173,6.5\n88,174,7.0\n88,175,8.5\n88,176,8.0\n88,177,7.5\n88,178,7.0\n88,179,6.5\n88,180,6.0\n88,181,5.5\n88,182,5.0\n88,183,4.5\n88,184,4.0\n88,185,3.5\n88,186,3.0\n88,187,2.5\n88,188,2.0\n88,189,2.5\n88,190,3.0\n88,191,3.5\n88,192,4.0\n88,193,4.5\n88,194,5.0\n88,195,5.5\n88,196,6.0\n88,197,6.5\n88,198,7.0\n88,199,7.5\n88,200,9.0\n88,201,8.5\n88,202,8.0\n88,203,7.5\n88,204,7.0\n88,205,6.5\n88,206,6.0\n88,207,5.5\n88,208,5.0\n88,209,4.5\n88,210,4.0\n88,211,3.5\n88,212,3.0\n88,213,2.5\n88,214,3.0\n88,215,3.5\n88,216,4.0\n88,217,4.5\n88,218,5.0\n88,219,5.5\n88,220,6.0\n88,221,6.5\n88,222,7.0\n88,223,7.5\n88,224,8.0\n88,225,9.5\n88,226,9.0\n88,227,8.5\n88,228,8.0\n88,229,7.5\n88,230,7.0\n88,231,6.5\n88,232,6.0\n88,233,5.5\n88,234,5.0\n88,235,4.5\n88,236,4.0\n88,237,3.5\n88,238,3.0\n88,239,3.5\n88,240,4.0\n88,241,4.5\n88,242,5.0\n88,243,5.5\n88,244,6.0\n88,245,6.5\n88,246,7.0\n88,247,7.5\n88,248,8.0\n88,249,8.5\n88,250,10.0\n88,251,9.5\n88,252,9.0\n88,253,8.5\n88,254,8.0\n88,255,7.5\n88,256,7.0\n88,257,6.5\n88,258,6.0\n88,259,5.5\n88,260,5.0\n88,261,4.5\n88,262,4.0\n88,263,3.5\n88,264,4.0\n88,265,4.5\n88,266,5.0\n88,267,5.5\n88,268,6.0\n88,269,6.5\n88,270,7.0\n88,271,7.5\n88,272,8.0\n88,273,8.5\n88,274,9.0\n88,275,10.5\n88,276,10.0\n88,277,9.5\n88,278,9.0\n88,279,8.5\n88,280,8.0\n88,281,7.5\n88,282,7.0\n88,283,6.5\n88,284,6.0\n88,285,5.5\n88,286,5.0\n88,287,4.5\n88,288,4.0\n88,289,4.5\n88,290,5.0\n88,291,5.5\n88,292,6.0\n88,293,6.5\n88,294,7.0\n88,295,7.5\n88,296,8.0\n88,297,8.5\n88,298,9.0\n88,299,9.5\n88,300,11.0\n88,301,10.5\n88,302,10.0\n88,303,9.5\n88,304,9.0\n88,305,8.5\n88,306,8.0\n88,307,7.5\n88,308,7.0\n88,309,6.5\n88,310,6.0\n88,311,5.5\n88,312,5.0\n88,313,4.5\n88,314,5.0\n88,315,5.5\n88,316,6.0\n88,317,6.5\n88,318,7.0\n88,319,7.5\n88,320,8.0\n88,321,8.5\n88,322,9.0\n88,323,9.5\n88,324,10.0\n88,325,11.5\n88,326,11.0\n88,327,10.5\n88,328,10.0\n88,329,9.5\n88,330,9.0\n88,331,8.5\n88,332,8.0\n88,333,7.5\n88,334,7.0\n88,335,6.5\n88,336,6.0\n88,337,5.5\n88,338,5.0\n88,339,5.5\n88,340,6.0\n88,341,6.5\n88,342,7.0\n88,343,7.5\n88,344,8.0\n88,345,8.5\n88,346,9.0\n88,347,9.5\n88,348,10.0\n88,349,10.5\n88,350,12.0\n88,351,11.5\n88,352,11.0\n88,353,10.5\n88,354,10.0\n88,355,9.5\n88,356,9.0\n88,357,8.5\n88,358,8.0\n88,359,7.5\n88,360,7.0\n88,361,6.5\n88,362,6.0\n88,363,5.5\n88,364,6.0\n88,365,6.5\n88,366,7.0\n88,367,7.5\n88,368,8.0\n88,369,8.5\n88,370,9.0\n88,371,9.5\n88,372,10.0\n88,373,10.5\n88,374,11.0\n88,375,12.5\n88,376,12.0\n88,377,11.5\n88,378,11.0\n88,379,10.5\n88,380,10.0\n88,381,9.5\n88,382,9.0\n88,383,8.5\n88,384,8.0\n88,385,7.5\n88,386,7.0\n88,387,6.5\n88,388,6.0\n88,389,6.5\n88,390,7.0\n88,391,7.5\n88,392,8.0\n88,393,8.5\n88,394,9.0\n88,395,9.5\n88,396,10.0\n88,397,10.5\n88,398,11.0\n88,399,11.5\n88,400,13.0\n88,401,12.5\n88,402,12.0\n88,403,11.5\n88,404,11.0\n88,405,10.5\n88,406,10.0\n88,407,9.5\n88,408,9.0\n88,409,8.5\n88,410,8.0\n88,411,7.5\n88,412,7.0\n88,413,6.5\n88,414,7.0\n88,415,7.5\n88,416,8.0\n88,417,8.5\n88,418,9.0\n88,419,9.5\n88,420,10.0\n88,421,10.5\n88,422,11.0\n88,423,11.5\n88,424,12.0\n88,425,13.5\n88,426,13.0\n88,427,12.5\n88,428,12.0\n88,429,11.5\n88,430,11.0\n88,431,10.5\n88,432,10.0\n88,433,9.5\n88,434,9.0\n88,435,8.5\n88,436,8.0\n88,437,7.5\n88,438,7.0\n88,439,7.5\n88,440,8.0\n88,441,8.5\n88,442,9.0\n88,443,9.5\n88,444,10.0\n88,445,10.5\n88,446,11.0\n88,447,11.5\n88,448,12.0\n88,449,12.5\n88,450,14.0\n88,451,13.5\n88,452,13.0\n88,453,12.5\n88,454,12.0\n88,455,11.5\n88,456,11.0\n88,457,10.5\n88,458,10.0\n88,459,9.5\n88,460,9.0\n88,461,8.5\n88,462,8.0\n88,463,7.5\n88,464,8.0\n88,465,8.5\n88,466,9.0\n88,467,9.5\n88,468,10.0\n88,469,10.5\n88,470,11.0\n88,471,11.5\n88,472,12.0\n88,473,12.5\n88,474,13.0\n88,475,14.5\n88,476,14.0\n88,477,13.5\n88,478,13.0\n88,479,12.5\n88,480,12.0\n88,481,11.5\n88,482,11.0\n88,483,10.5\n88,484,10.0\n88,485,9.5\n88,486,9.0\n88,487,8.5\n88,488,8.0\n88,489,8.5\n88,490,9.0\n88,491,9.5\n88,492,10.0\n88,493,10.5\n88,494,11.0\n88,495,11.5\n88,496,12.0\n88,497,12.5\n88,498,13.0\n88,499,13.5\n88,500,15.0\n88,501,14.5\n88,502,14.0\n88,503,13.5\n88,504,13.0\n88,505,12.5\n88,506,12.0\n88,507,11.5\n88,508,11.0\n88,509,10.5\n88,510,10.0\n88,511,9.5\n88,512,9.0\n88,513,8.5\n88,514,9.0\n88,515,9.5\n88,516,10.0\n88,517,10.5\n88,518,11.0\n88,519,11.5\n88,520,12.0\n88,521,12.5\n88,522,13.0\n88,523,13.5\n88,524,14.0\n88,525,15.5\n88,526,15.0\n88,527,14.5\n88,528,14.0\n88,529,13.5\n88,530,13.0\n88,531,12.5\n88,532,12.0\n88,533,11.5\n88,534,11.0\n88,535,10.5\n88,536,10.0\n88,537,9.5\n88,538,9.0\n88,539,9.5\n88,540,10.0\n88,541,10.5\n88,542,11.0\n88,543,11.5\n88,544,12.0\n88,545,12.5\n88,546,13.0\n88,547,13.5\n88,548,14.0\n88,549,14.5\n88,550,16.0\n88,551,15.5\n88,552,15.0\n88,553,14.5\n88,554,14.0\n88,555,13.5\n88,556,13.0\n88,557,12.5\n88,558,12.0\n88,559,11.5\n88,560,11.0\n88,561,10.5\n88,562,10.0\n88,563,9.5\n88,564,10.0\n88,565,10.5\n88,566,11.0\n88,567,11.5\n88,568,12.0\n88,569,12.5\n88,570,13.0\n88,571,13.5\n88,572,14.0\n88,573,14.5\n88,574,15.0\n88,575,16.5\n88,576,16.0\n88,577,15.5\n88,578,15.0\n88,579,14.5\n88,580,14.0\n88,581,13.5\n88,582,13.0\n88,583,12.5\n88,584,12.0\n88,585,11.5\n88,586,11.0\n88,587,10.5\n88,588,10.0\n88,589,10.5\n88,590,11.0\n88,591,11.5\n88,592,12.0\n88,593,12.5\n88,594,13.0\n88,595,13.5\n88,596,14.0\n88,597,14.5\n88,598,15.0\n88,599,15.5\n88,600,17.0\n88,601,16.5\n88,602,16.0\n88,603,15.5\n88,604,15.0\n88,605,14.5\n88,606,14.0\n88,607,13.5\n88,608,13.0\n88,609,12.5\n88,610,12.0\n88,611,11.5\n88,612,11.0\n88,613,10.5\n88,614,11.0\n88,615,11.5\n88,616,12.0\n88,617,12.5\n88,618,13.0\n88,619,13.5\n88,620,14.0\n88,621,14.5\n88,622,15.0\n88,623,15.5\n88,624,16.0\n89,0,8.5\n89,1,8.0\n89,2,7.5\n89,3,7.0\n89,4,6.5\n89,5,6.0\n89,6,5.5\n89,7,5.0\n89,8,4.5\n89,9,4.0\n89,10,3.5\n89,11,3.0\n89,12,2.5\n89,13,2.0\n89,14,1.5\n89,15,2.0\n89,16,2.5\n89,17,3.0\n89,18,3.5\n89,19,4.0\n89,20,4.5\n89,21,5.0\n89,22,5.5\n89,23,6.0\n89,24,6.5\n89,25,8.0\n89,26,7.5\n89,27,7.0\n89,28,6.5\n89,29,6.0\n89,30,5.5\n89,31,5.0\n89,32,4.5\n89,33,4.0\n89,34,3.5\n89,35,3.0\n89,36,2.5\n89,37,2.0\n89,38,1.5\n89,39,1.0\n89,40,1.5\n89,41,2.0\n89,42,2.5\n89,43,3.0\n89,44,3.5\n89,45,4.0\n89,46,4.5\n89,47,5.0\n89,48,5.5\n89,49,6.0\n89,50,7.5\n89,51,7.0\n89,52,6.5\n89,53,6.0\n89,54,5.5\n89,55,5.0\n89,56,4.5\n89,57,4.0\n89,58,3.5\n89,59,3.0\n89,60,2.5\n89,61,2.0\n89,62,1.5\n89,63,1.0\n89,64,0.5\n89,65,1.0\n89,66,1.5\n89,67,2.0\n89,68,2.5\n89,69,3.0\n89,70,3.5\n89,71,4.0\n89,72,4.5\n89,73,5.0\n89,74,5.5\n89,75,7.0\n89,76,6.5\n89,77,6.0\n89,78,5.5\n89,79,5.0\n89,80,4.5\n89,81,4.0\n89,82,3.5\n89,83,3.0\n89,84,2.5\n89,85,2.0\n89,86,1.5\n89,87,1.0\n89,88,0.5\n89,89,0\n89,90,0.5\n89,91,1.0\n89,92,1.5\n89,93,2.0\n89,94,2.5\n89,95,3.0\n89,96,3.5\n89,97,4.0\n89,98,4.5\n89,99,5.0\n89,100,7.5\n89,101,7.0\n89,102,6.5\n89,103,6.0\n89,104,5.5\n89,105,5.0\n89,106,4.5\n89,107,4.0\n89,108,3.5\n89,109,3.0\n89,110,2.5\n89,111,2.0\n89,112,1.5\n89,113,1.0\n89,114,0.5\n89,115,1.0\n89,116,1.5\n89,117,2.0\n89,118,2.5\n89,119,3.0\n89,120,3.5\n89,121,4.0\n89,122,4.5\n89,123,5.0\n89,124,5.5\n89,125,8.0\n89,126,7.5\n89,127,7.0\n89,128,6.5\n89,129,6.0\n89,130,5.5\n89,131,5.0\n89,132,4.5\n89,133,4.0\n89,134,3.5\n89,135,3.0\n89,136,2.5\n89,137,2.0\n89,138,1.5\n89,139,1.0\n89,140,1.5\n89,141,2.0\n89,142,2.5\n89,143,3.0\n89,144,3.5\n89,145,4.0\n89,146,4.5\n89,147,5.0\n89,148,5.5\n89,149,6.0\n89,150,8.5\n89,151,8.0\n89,152,7.5\n89,153,7.0\n89,154,6.5\n89,155,6.0\n89,156,5.5\n89,157,5.0\n89,158,4.5\n89,159,4.0\n89,160,3.5\n89,161,3.0\n89,162,2.5\n89,163,2.0\n89,164,1.5\n89,165,2.0\n89,166,2.5\n89,167,3.0\n89,168,3.5\n89,169,4.0\n89,170,4.5\n89,171,5.0\n89,172,5.5\n89,173,6.0\n89,174,6.5\n89,175,9.0\n89,176,8.5\n89,177,8.0\n89,178,7.5\n89,179,7.0\n89,180,6.5\n89,181,6.0\n89,182,5.5\n89,183,5.0\n89,184,4.5\n89,185,4.0\n89,186,3.5\n89,187,3.0\n89,188,2.5\n89,189,2.0\n89,190,2.5\n89,191,3.0\n89,192,3.5\n89,193,4.0\n89,194,4.5\n89,195,5.0\n89,196,5.5\n89,197,6.0\n89,198,6.5\n89,199,7.0\n89,200,9.5\n89,201,9.0\n89,202,8.5\n89,203,8.0\n89,204,7.5\n89,205,7.0\n89,206,6.5\n89,207,6.0\n89,208,5.5\n89,209,5.0\n89,210,4.5\n89,211,4.0\n89,212,3.5\n89,213,3.0\n89,214,2.5\n89,215,3.0\n89,216,3.5\n89,217,4.0\n89,218,4.5\n89,219,5.0\n89,220,5.5\n89,221,6.0\n89,222,6.5\n89,223,7.0\n89,224,7.5\n89,225,10.0\n89,226,9.5\n89,227,9.0\n89,228,8.5\n89,229,8.0\n89,230,7.5\n89,231,7.0\n89,232,6.5\n89,233,6.0\n89,234,5.5\n89,235,5.0\n89,236,4.5\n89,237,4.0\n89,238,3.5\n89,239,3.0\n89,240,3.5\n89,241,4.0\n89,242,4.5\n89,243,5.0\n89,244,5.5\n89,245,6.0\n89,246,6.5\n89,247,7.0\n89,248,7.5\n89,249,8.0\n89,250,10.5\n89,251,10.0\n89,252,9.5\n89,253,9.0\n89,254,8.5\n89,255,8.0\n89,256,7.5\n89,257,7.0\n89,258,6.5\n89,259,6.0\n89,260,5.5\n89,261,5.0\n89,262,4.5\n89,263,4.0\n89,264,3.5\n89,265,4.0\n89,266,4.5\n89,267,5.0\n89,268,5.5\n89,269,6.0\n89,270,6.5\n89,271,7.0\n89,272,7.5\n89,273,8.0\n89,274,8.5\n89,275,11.0\n89,276,10.5\n89,277,10.0\n89,278,9.5\n89,279,9.0\n89,280,8.5\n89,281,8.0\n89,282,7.5\n89,283,7.0\n89,284,6.5\n89,285,6.0\n89,286,5.5\n89,287,5.0\n89,288,4.5\n89,289,4.0\n89,290,4.5\n89,291,5.0\n89,292,5.5\n89,293,6.0\n89,294,6.5\n89,295,7.0\n89,296,7.5\n89,297,8.0\n89,298,8.5\n89,299,9.0\n89,300,11.5\n89,301,11.0\n89,302,10.5\n89,303,10.0\n89,304,9.5\n89,305,9.0\n89,306,8.5\n89,307,8.0\n89,308,7.5\n89,309,7.0\n89,310,6.5\n89,311,6.0\n89,312,5.5\n89,313,5.0\n89,314,4.5\n89,315,5.0\n89,316,5.5\n89,317,6.0\n89,318,6.5\n89,319,7.0\n89,320,7.5\n89,321,8.0\n89,322,8.5\n89,323,9.0\n89,324,9.5\n89,325,12.0\n89,326,11.5\n89,327,11.0\n89,328,10.5\n89,329,10.0\n89,330,9.5\n89,331,9.0\n89,332,8.5\n89,333,8.0\n89,334,7.5\n89,335,7.0\n89,336,6.5\n89,337,6.0\n89,338,5.5\n89,339,5.0\n89,340,5.5\n89,341,6.0\n89,342,6.5\n89,343,7.0\n89,344,7.5\n89,345,8.0\n89,346,8.5\n89,347,9.0\n89,348,9.5\n89,349,10.0\n89,350,12.5\n89,351,12.0\n89,352,11.5\n89,353,11.0\n89,354,10.5\n89,355,10.0\n89,356,9.5\n89,357,9.0\n89,358,8.5\n89,359,8.0\n89,360,7.5\n89,361,7.0\n89,362,6.5\n89,363,6.0\n89,364,5.5\n89,365,6.0\n89,366,6.5\n89,367,7.0\n89,368,7.5\n89,369,8.0\n89,370,8.5\n89,371,9.0\n89,372,9.5\n89,373,10.0\n89,374,10.5\n89,375,13.0\n89,376,12.5\n89,377,12.0\n89,378,11.5\n89,379,11.0\n89,380,10.5\n89,381,10.0\n89,382,9.5\n89,383,9.0\n89,384,8.5\n89,385,8.0\n89,386,7.5\n89,387,7.0\n89,388,6.5\n89,389,6.0\n89,390,6.5\n89,391,7.0\n89,392,7.5\n89,393,8.0\n89,394,8.5\n89,395,9.0\n89,396,9.5\n89,397,10.0\n89,398,10.5\n89,399,11.0\n89,400,13.5\n89,401,13.0\n89,402,12.5\n89,403,12.0\n89,404,11.5\n89,405,11.0\n89,406,10.5\n89,407,10.0\n89,408,9.5\n89,409,9.0\n89,410,8.5\n89,411,8.0\n89,412,7.5\n89,413,7.0\n89,414,6.5\n89,415,7.0\n89,416,7.5\n89,417,8.0\n89,418,8.5\n89,419,9.0\n89,420,9.5\n89,421,10.0\n89,422,10.5\n89,423,11.0\n89,424,11.5\n89,425,14.0\n89,426,13.5\n89,427,13.0\n89,428,12.5\n89,429,12.0\n89,430,11.5\n89,431,11.0\n89,432,10.5\n89,433,10.0\n89,434,9.5\n89,435,9.0\n89,436,8.5\n89,437,8.0\n89,438,7.5\n89,439,7.0\n89,440,7.5\n89,441,8.0\n89,442,8.5\n89,443,9.0\n89,444,9.5\n89,445,10.0\n89,446,10.5\n89,447,11.0\n89,448,11.5\n89,449,12.0\n89,450,14.5\n89,451,14.0\n89,452,13.5\n89,453,13.0\n89,454,12.5\n89,455,12.0\n89,456,11.5\n89,457,11.0\n89,458,10.5\n89,459,10.0\n89,460,9.5\n89,461,9.0\n89,462,8.5\n89,463,8.0\n89,464,7.5\n89,465,8.0\n89,466,8.5\n89,467,9.0\n89,468,9.5\n89,469,10.0\n89,470,10.5\n89,471,11.0\n89,472,11.5\n89,473,12.0\n89,474,12.5\n89,475,15.0\n89,476,14.5\n89,477,14.0\n89,478,13.5\n89,479,13.0\n89,480,12.5\n89,481,12.0\n89,482,11.5\n89,483,11.0\n89,484,10.5\n89,485,10.0\n89,486,9.5\n89,487,9.0\n89,488,8.5\n89,489,8.0\n89,490,8.5\n89,491,9.0\n89,492,9.5\n89,493,10.0\n89,494,10.5\n89,495,11.0\n89,496,11.5\n89,497,12.0\n89,498,12.5\n89,499,13.0\n89,500,15.5\n89,501,15.0\n89,502,14.5\n89,503,14.0\n89,504,13.5\n89,505,13.0\n89,506,12.5\n89,507,12.0\n89,508,11.5\n89,509,11.0\n89,510,10.5\n89,511,10.0\n89,512,9.5\n89,513,9.0\n89,514,8.5\n89,515,9.0\n89,516,9.5\n89,517,10.0\n89,518,10.5\n89,519,11.0\n89,520,11.5\n89,521,12.0\n89,522,12.5\n89,523,13.0\n89,524,13.5\n89,525,16.0\n89,526,15.5\n89,527,15.0\n89,528,14.5\n89,529,14.0\n89,530,13.5\n89,531,13.0\n89,532,12.5\n89,533,12.0\n89,534,11.5\n89,535,11.0\n89,536,10.5\n89,537,10.0\n89,538,9.5\n89,539,9.0\n89,540,9.5\n89,541,10.0\n89,542,10.5\n89,543,11.0\n89,544,11.5\n89,545,12.0\n89,546,12.5\n89,547,13.0\n89,548,13.5\n89,549,14.0\n89,550,16.5\n89,551,16.0\n89,552,15.5\n89,553,15.0\n89,554,14.5\n89,555,14.0\n89,556,13.5\n89,557,13.0\n89,558,12.5\n89,559,12.0\n89,560,11.5\n89,561,11.0\n89,562,10.5\n89,563,10.0\n89,564,9.5\n89,565,10.0\n89,566,10.5\n89,567,11.0\n89,568,11.5\n89,569,12.0\n89,570,12.5\n89,571,13.0\n89,572,13.5\n89,573,14.0\n89,574,14.5\n89,575,17.0\n89,576,16.5\n89,577,16.0\n89,578,15.5\n89,579,15.0\n89,580,14.5\n89,581,14.0\n89,582,13.5\n89,583,13.0\n89,584,12.5\n89,585,12.0\n89,586,11.5\n89,587,11.0\n89,588,10.5\n89,589,10.0\n89,590,10.5\n89,591,11.0\n89,592,11.5\n89,593,12.0\n89,594,12.5\n89,595,13.0\n89,596,13.5\n89,597,14.0\n89,598,14.5\n89,599,15.0\n89,600,17.5\n89,601,17.0\n89,602,16.5\n89,603,16.0\n89,604,15.5\n89,605,15.0\n89,606,14.5\n89,607,14.0\n89,608,13.5\n89,609,13.0\n89,610,12.5\n89,611,12.0\n89,612,11.5\n89,613,11.0\n89,614,10.5\n89,615,11.0\n89,616,11.5\n89,617,12.0\n89,618,12.5\n89,619,13.0\n89,620,13.5\n89,621,14.0\n89,622,14.5\n89,623,15.0\n89,624,15.5\n90,0,9.0\n90,1,8.5\n90,2,8.0\n90,3,7.5\n90,4,7.0\n90,5,6.5\n90,6,6.0\n90,7,5.5\n90,8,5.0\n90,9,4.5\n90,10,4.0\n90,11,3.5\n90,12,3.0\n90,13,2.5\n90,14,2.0\n90,15,1.5\n90,16,2.0\n90,17,2.5\n90,18,3.0\n90,19,3.5\n90,20,4.0\n90,21,4.5\n90,22,5.0\n90,23,5.5\n90,24,6.0\n90,25,8.5\n90,26,8.0\n90,27,7.5\n90,28,7.0\n90,29,6.5\n90,30,6.0\n90,31,5.5\n90,32,5.0\n90,33,4.5\n90,34,4.0\n90,35,3.5\n90,36,3.0\n90,37,2.5\n90,38,2.0\n90,39,1.5\n90,40,1.0\n90,41,1.5\n90,42,2.0\n90,43,2.5\n90,44,3.0\n90,45,3.5\n90,46,4.0\n90,47,4.5\n90,48,5.0\n90,49,5.5\n90,50,8.0\n90,51,7.5\n90,52,7.0\n90,53,6.5\n90,54,6.0\n90,55,5.5\n90,56,5.0\n90,57,4.5\n90,58,4.0\n90,59,3.5\n90,60,3.0\n90,61,2.5\n90,62,2.0\n90,63,1.5\n90,64,1.0\n90,65,0.5\n90,66,1.0\n90,67,1.5\n90,68,2.0\n90,69,2.5\n90,70,3.0\n90,71,3.5\n90,72,4.0\n90,73,4.5\n90,74,5.0\n90,75,7.5\n90,76,7.0\n90,77,6.5\n90,78,6.0\n90,79,5.5\n90,80,5.0\n90,81,4.5\n90,82,4.0\n90,83,3.5\n90,84,3.0\n90,85,2.5\n90,86,2.0\n90,87,1.5\n90,88,1.0\n90,89,0.5\n90,90,0\n90,91,0.5\n90,92,1.0\n90,93,1.5\n90,94,2.0\n90,95,2.5\n90,96,3.0\n90,97,3.5\n90,98,4.0\n90,99,4.5\n90,100,8.0\n90,101,7.5\n90,102,7.0\n90,103,6.5\n90,104,6.0\n90,105,5.5\n90,106,5.0\n90,107,4.5\n90,108,4.0\n90,109,3.5\n90,110,3.0\n90,111,2.5\n90,112,2.0\n90,113,1.5\n90,114,1.0\n90,115,0.5\n90,116,1.0\n90,117,1.5\n90,118,2.0\n90,119,2.5\n90,120,3.0\n90,121,3.5\n90,122,4.0\n90,123,4.5\n90,124,5.0\n90,125,8.5\n90,126,8.0\n90,127,7.5\n90,128,7.0\n90,129,6.5\n90,130,6.0\n90,131,5.5\n90,132,5.0\n90,133,4.5\n90,134,4.0\n90,135,3.5\n90,136,3.0\n90,137,2.5\n90,138,2.0\n90,139,1.5\n90,140,1.0\n90,141,1.5\n90,142,2.0\n90,143,2.5\n90,144,3.0\n90,145,3.5\n90,146,4.0\n90,147,4.5\n90,148,5.0\n90,149,5.5\n90,150,9.0\n90,151,8.5\n90,152,8.0\n90,153,7.5\n90,154,7.0\n90,155,6.5\n90,156,6.0\n90,157,5.5\n90,158,5.0\n90,159,4.5\n90,160,4.0\n90,161,3.5\n90,162,3.0\n90,163,2.5\n90,164,2.0\n90,165,1.5\n90,166,2.0\n90,167,2.5\n90,168,3.0\n90,169,3.5\n90,170,4.0\n90,171,4.5\n90,172,5.0\n90,173,5.5\n90,174,6.0\n90,175,9.5\n90,176,9.0\n90,177,8.5\n90,178,8.0\n90,179,7.5\n90,180,7.0\n90,181,6.5\n90,182,6.0\n90,183,5.5\n90,184,5.0\n90,185,4.5\n90,186,4.0\n90,187,3.5\n90,188,3.0\n90,189,2.5\n90,190,2.0\n90,191,2.5\n90,192,3.0\n90,193,3.5\n90,194,4.0\n90,195,4.5\n90,196,5.0\n90,197,5.5\n90,198,6.0\n90,199,6.5\n90,200,10.0\n90,201,9.5\n90,202,9.0\n90,203,8.5\n90,204,8.0\n90,205,7.5\n90,206,7.0\n90,207,6.5\n90,208,6.0\n90,209,5.5\n90,210,5.0\n90,211,4.5\n90,212,4.0\n90,213,3.5\n90,214,3.0\n90,215,2.5\n90,216,3.0\n90,217,3.5\n90,218,4.0\n90,219,4.5\n90,220,5.0\n90,221,5.5\n90,222,6.0\n90,223,6.5\n90,224,7.0\n90,225,10.5\n90,226,10.0\n90,227,9.5\n90,228,9.0\n90,229,8.5\n90,230,8.0\n90,231,7.5\n90,232,7.0\n90,233,6.5\n90,234,6.0\n90,235,5.5\n90,236,5.0\n90,237,4.5\n90,238,4.0\n90,239,3.5\n90,240,3.0\n90,241,3.5\n90,242,4.0\n90,243,4.5\n90,244,5.0\n90,245,5.5\n90,246,6.0\n90,247,6.5\n90,248,7.0\n90,249,7.5\n90,250,11.0\n90,251,10.5\n90,252,10.0\n90,253,9.5\n90,254,9.0\n90,255,8.5\n90,256,8.0\n90,257,7.5\n90,258,7.0\n90,259,6.5\n90,260,6.0\n90,261,5.5\n90,262,5.0\n90,263,4.5\n90,264,4.0\n90,265,3.5\n90,266,4.0\n90,267,4.5\n90,268,5.0\n90,269,5.5\n90,270,6.0\n90,271,6.5\n90,272,7.0\n90,273,7.5\n90,274,8.0\n90,275,11.5\n90,276,11.0\n90,277,10.5\n90,278,10.0\n90,279,9.5\n90,280,9.0\n90,281,8.5\n90,282,8.0\n90,283,7.5\n90,284,7.0\n90,285,6.5\n90,286,6.0\n90,287,5.5\n90,288,5.0\n90,289,4.5\n90,290,4.0\n90,291,4.5\n90,292,5.0\n90,293,5.5\n90,294,6.0\n90,295,6.5\n90,296,7.0\n90,297,7.5\n90,298,8.0\n90,299,8.5\n90,300,12.0\n90,301,11.5\n90,302,11.0\n90,303,10.5\n90,304,10.0\n90,305,9.5\n90,306,9.0\n90,307,8.5\n90,308,8.0\n90,309,7.5\n90,310,7.0\n90,311,6.5\n90,312,6.0\n90,313,5.5\n90,314,5.0\n90,315,4.5\n90,316,5.0\n90,317,5.5\n90,318,6.0\n90,319,6.5\n90,320,7.0\n90,321,7.5\n90,322,8.0\n90,323,8.5\n90,324,9.0\n90,325,12.5\n90,326,12.0\n90,327,11.5\n90,328,11.0\n90,329,10.5\n90,330,10.0\n90,331,9.5\n90,332,9.0\n90,333,8.5\n90,334,8.0\n90,335,7.5\n90,336,7.0\n90,337,6.5\n90,338,6.0\n90,339,5.5\n90,340,5.0\n90,341,5.5\n90,342,6.0\n90,343,6.5\n90,344,7.0\n90,345,7.5\n90,346,8.0\n90,347,8.5\n90,348,9.0\n90,349,9.5\n90,350,13.0\n90,351,12.5\n90,352,12.0\n90,353,11.5\n90,354,11.0\n90,355,10.5\n90,356,10.0\n90,357,9.5\n90,358,9.0\n90,359,8.5\n90,360,8.0\n90,361,7.5\n90,362,7.0\n90,363,6.5\n90,364,6.0\n90,365,5.5\n90,366,6.0\n90,367,6.5\n90,368,7.0\n90,369,7.5\n90,370,8.0\n90,371,8.5\n90,372,9.0\n90,373,9.5\n90,374,10.0\n90,375,13.5\n90,376,13.0\n90,377,12.5\n90,378,12.0\n90,379,11.5\n90,380,11.0\n90,381,10.5\n90,382,10.0\n90,383,9.5\n90,384,9.0\n90,385,8.5\n90,386,8.0\n90,387,7.5\n90,388,7.0\n90,389,6.5\n90,390,6.0\n90,391,6.5\n90,392,7.0\n90,393,7.5\n90,394,8.0\n90,395,8.5\n90,396,9.0\n90,397,9.5\n90,398,10.0\n90,399,10.5\n90,400,14.0\n90,401,13.5\n90,402,13.0\n90,403,12.5\n90,404,12.0\n90,405,11.5\n90,406,11.0\n90,407,10.5\n90,408,10.0\n90,409,9.5\n90,410,9.0\n90,411,8.5\n90,412,8.0\n90,413,7.5\n90,414,7.0\n90,415,6.5\n90,416,7.0\n90,417,7.5\n90,418,8.0\n90,419,8.5\n90,420,9.0\n90,421,9.5\n90,422,10.0\n90,423,10.5\n90,424,11.0\n90,425,14.5\n90,426,14.0\n90,427,13.5\n90,428,13.0\n90,429,12.5\n90,430,12.0\n90,431,11.5\n90,432,11.0\n90,433,10.5\n90,434,10.0\n90,435,9.5\n90,436,9.0\n90,437,8.5\n90,438,8.0\n90,439,7.5\n90,440,7.0\n90,441,7.5\n90,442,8.0\n90,443,8.5\n90,444,9.0\n90,445,9.5\n90,446,10.0\n90,447,10.5\n90,448,11.0\n90,449,11.5\n90,450,15.0\n90,451,14.5\n90,452,14.0\n90,453,13.5\n90,454,13.0\n90,455,12.5\n90,456,12.0\n90,457,11.5\n90,458,11.0\n90,459,10.5\n90,460,10.0\n90,461,9.5\n90,462,9.0\n90,463,8.5\n90,464,8.0\n90,465,7.5\n90,466,8.0\n90,467,8.5\n90,468,9.0\n90,469,9.5\n90,470,10.0\n90,471,10.5\n90,472,11.0\n90,473,11.5\n90,474,12.0\n90,475,15.5\n90,476,15.0\n90,477,14.5\n90,478,14.0\n90,479,13.5\n90,480,13.0\n90,481,12.5\n90,482,12.0\n90,483,11.5\n90,484,11.0\n90,485,10.5\n90,486,10.0\n90,487,9.5\n90,488,9.0\n90,489,8.5\n90,490,8.0\n90,491,8.5\n90,492,9.0\n90,493,9.5\n90,494,10.0\n90,495,10.5\n90,496,11.0\n90,497,11.5\n90,498,12.0\n90,499,12.5\n90,500,16.0\n90,501,15.5\n90,502,15.0\n90,503,14.5\n90,504,14.0\n90,505,13.5\n90,506,13.0\n90,507,12.5\n90,508,12.0\n90,509,11.5\n90,510,11.0\n90,511,10.5\n90,512,10.0\n90,513,9.5\n90,514,9.0\n90,515,8.5\n90,516,9.0\n90,517,9.5\n90,518,10.0\n90,519,10.5\n90,520,11.0\n90,521,11.5\n90,522,12.0\n90,523,12.5\n90,524,13.0\n90,525,16.5\n90,526,16.0\n90,527,15.5\n90,528,15.0\n90,529,14.5\n90,530,14.0\n90,531,13.5\n90,532,13.0\n90,533,12.5\n90,534,12.0\n90,535,11.5\n90,536,11.0\n90,537,10.5\n90,538,10.0\n90,539,9.5\n90,540,9.0\n90,541,9.5\n90,542,10.0\n90,543,10.5\n90,544,11.0\n90,545,11.5\n90,546,12.0\n90,547,12.5\n90,548,13.0\n90,549,13.5\n90,550,17.0\n90,551,16.5\n90,552,16.0\n90,553,15.5\n90,554,15.0\n90,555,14.5\n90,556,14.0\n90,557,13.5\n90,558,13.0\n90,559,12.5\n90,560,12.0\n90,561,11.5\n90,562,11.0\n90,563,10.5\n90,564,10.0\n90,565,9.5\n90,566,10.0\n90,567,10.5\n90,568,11.0\n90,569,11.5\n90,570,12.0\n90,571,12.5\n90,572,13.0\n90,573,13.5\n90,574,14.0\n90,575,17.5\n90,576,17.0\n90,577,16.5\n90,578,16.0\n90,579,15.5\n90,580,15.0\n90,581,14.5\n90,582,14.0\n90,583,13.5\n90,584,13.0\n90,585,12.5\n90,586,12.0\n90,587,11.5\n90,588,11.0\n90,589,10.5\n90,590,10.0\n90,591,10.5\n90,592,11.0\n90,593,11.5\n90,594,12.0\n90,595,12.5\n90,596,13.0\n90,597,13.5\n90,598,14.0\n90,599,14.5\n90,600,18.0\n90,601,17.5\n90,602,17.0\n90,603,16.5\n90,604,16.0\n90,605,15.5\n90,606,15.0\n90,607,14.5\n90,608,14.0\n90,609,13.5\n90,610,13.0\n90,611,12.5\n90,612,12.0\n90,613,11.5\n90,614,11.0\n90,615,10.5\n90,616,11.0\n90,617,11.5\n90,618,12.0\n90,619,12.5\n90,620,13.0\n90,621,13.5\n90,622,14.0\n90,623,14.5\n90,624,15.0\n91,0,9.5\n91,1,9.0\n91,2,8.5\n91,3,8.0\n91,4,7.5\n91,5,7.0\n91,6,6.5\n91,7,6.0\n91,8,5.5\n91,9,5.0\n91,10,4.5\n91,11,4.0\n91,12,3.5\n91,13,3.0\n91,14,2.5\n91,15,2.0\n91,16,1.5\n91,17,2.0\n91,18,2.5\n91,19,3.0\n91,20,3.5\n91,21,4.0\n91,22,4.5\n91,23,5.0\n91,24,5.5\n91,25,9.0\n91,26,8.5\n91,27,8.0\n91,28,7.5\n91,29,7.0\n91,30,6.5\n91,31,6.0\n91,32,5.5\n91,33,5.0\n91,34,4.5\n91,35,4.0\n91,36,3.5\n91,37,3.0\n91,38,2.5\n91,39,2.0\n91,40,1.5\n91,41,1.0\n91,42,1.5\n91,43,2.0\n91,44,2.5\n91,45,3.0\n91,46,3.5\n91,47,4.0\n91,48,4.5\n91,49,5.0\n91,50,8.5\n91,51,8.0\n91,52,7.5\n91,53,7.0\n91,54,6.5\n91,55,6.0\n91,56,5.5\n91,57,5.0\n91,58,4.5\n91,59,4.0\n91,60,3.5\n91,61,3.0\n91,62,2.5\n91,63,2.0\n91,64,1.5\n91,65,1.0\n91,66,0.5\n91,67,1.0\n91,68,1.5\n91,69,2.0\n91,70,2.5\n91,71,3.0\n91,72,3.5\n91,73,4.0\n91,74,4.5\n91,75,8.0\n91,76,7.5\n91,77,7.0\n91,78,6.5\n91,79,6.0\n91,80,5.5\n91,81,5.0\n91,82,4.5\n91,83,4.0\n91,84,3.5\n91,85,3.0\n91,86,2.5\n91,87,2.0\n91,88,1.5\n91,89,1.0\n91,90,0.5\n91,91,0\n91,92,0.5\n91,93,1.0\n91,94,1.5\n91,95,2.0\n91,96,2.5\n91,97,3.0\n91,98,3.5\n91,99,4.0\n91,100,8.5\n91,101,8.0\n91,102,7.5\n91,103,7.0\n91,104,6.5\n91,105,6.0\n91,106,5.5\n91,107,5.0\n91,108,4.5\n91,109,4.0\n91,110,3.5\n91,111,3.0\n91,112,2.5\n91,113,2.0\n91,114,1.5\n91,115,1.0\n91,116,0.5\n91,117,1.0\n91,118,1.5\n91,119,2.0\n91,120,2.5\n91,121,3.0\n91,122,3.5\n91,123,4.0\n91,124,4.5\n91,125,9.0\n91,126,8.5\n91,127,8.0\n91,128,7.5\n91,129,7.0\n91,130,6.5\n91,131,6.0\n91,132,5.5\n91,133,5.0\n91,134,4.5\n91,135,4.0\n91,136,3.5\n91,137,3.0\n91,138,2.5\n91,139,2.0\n91,140,1.5\n91,141,1.0\n91,142,1.5\n91,143,2.0\n91,144,2.5\n91,145,3.0\n91,146,3.5\n91,147,4.0\n91,148,4.5\n91,149,5.0\n91,150,9.5\n91,151,9.0\n91,152,8.5\n91,153,8.0\n91,154,7.5\n91,155,7.0\n91,156,6.5\n91,157,6.0\n91,158,5.5\n91,159,5.0\n91,160,4.5\n91,161,4.0\n91,162,3.5\n91,163,3.0\n91,164,2.5\n91,165,2.0\n91,166,1.5\n91,167,2.0\n91,168,2.5\n91,169,3.0\n91,170,3.5\n91,171,4.0\n91,172,4.5\n91,173,5.0\n91,174,5.5\n91,175,10.0\n91,176,9.5\n91,177,9.0\n91,178,8.5\n91,179,8.0\n91,180,7.5\n91,181,7.0\n91,182,6.5\n91,183,6.0\n91,184,5.5\n91,185,5.0\n91,186,4.5\n91,187,4.0\n91,188,3.5\n91,189,3.0\n91,190,2.5\n91,191,2.0\n91,192,2.5\n91,193,3.0\n91,194,3.5\n91,195,4.0\n91,196,4.5\n91,197,5.0\n91,198,5.5\n91,199,6.0\n91,200,10.5\n91,201,10.0\n91,202,9.5\n91,203,9.0\n91,204,8.5\n91,205,8.0\n91,206,7.5\n91,207,7.0\n91,208,6.5\n91,209,6.0\n91,210,5.5\n91,211,5.0\n91,212,4.5\n91,213,4.0\n91,214,3.5\n91,215,3.0\n91,216,2.5\n91,217,3.0\n91,218,3.5\n91,219,4.0\n91,220,4.5\n91,221,5.0\n91,222,5.5\n91,223,6.0\n91,224,6.5\n91,225,11.0\n91,226,10.5\n91,227,10.0\n91,228,9.5\n91,229,9.0\n91,230,8.5\n91,231,8.0\n91,232,7.5\n91,233,7.0\n91,234,6.5\n91,235,6.0\n91,236,5.5\n91,237,5.0\n91,238,4.5\n91,239,4.0\n91,240,3.5\n91,241,3.0\n91,242,3.5\n91,243,4.0\n91,244,4.5\n91,245,5.0\n91,246,5.5\n91,247,6.0\n91,248,6.5\n91,249,7.0\n91,250,11.5\n91,251,11.0\n91,252,10.5\n91,253,10.0\n91,254,9.5\n91,255,9.0\n91,256,8.5\n91,257,8.0\n91,258,7.5\n91,259,7.0\n91,260,6.5\n91,261,6.0\n91,262,5.5\n91,263,5.0\n91,264,4.5\n91,265,4.0\n91,266,3.5\n91,267,4.0\n91,268,4.5\n91,269,5.0\n91,270,5.5\n91,271,6.0\n91,272,6.5\n91,273,7.0\n91,274,7.5\n91,275,12.0\n91,276,11.5\n91,277,11.0\n91,278,10.5\n91,279,10.0\n91,280,9.5\n91,281,9.0\n91,282,8.5\n91,283,8.0\n91,284,7.5\n91,285,7.0\n91,286,6.5\n91,287,6.0\n91,288,5.5\n91,289,5.0\n91,290,4.5\n91,291,4.0\n91,292,4.5\n91,293,5.0\n91,294,5.5\n91,295,6.0\n91,296,6.5\n91,297,7.0\n91,298,7.5\n91,299,8.0\n91,300,12.5\n91,301,12.0\n91,302,11.5\n91,303,11.0\n91,304,10.5\n91,305,10.0\n91,306,9.5\n91,307,9.0\n91,308,8.5\n91,309,8.0\n91,310,7.5\n91,311,7.0\n91,312,6.5\n91,313,6.0\n91,314,5.5\n91,315,5.0\n91,316,4.5\n91,317,5.0\n91,318,5.5\n91,319,6.0\n91,320,6.5\n91,321,7.0\n91,322,7.5\n91,323,8.0\n91,324,8.5\n91,325,13.0\n91,326,12.5\n91,327,12.0\n91,328,11.5\n91,329,11.0\n91,330,10.5\n91,331,10.0\n91,332,9.5\n91,333,9.0\n91,334,8.5\n91,335,8.0\n91,336,7.5\n91,337,7.0\n91,338,6.5\n91,339,6.0\n91,340,5.5\n91,341,5.0\n91,342,5.5\n91,343,6.0\n91,344,6.5\n91,345,7.0\n91,346,7.5\n91,347,8.0\n91,348,8.5\n91,349,9.0\n91,350,13.5\n91,351,13.0\n91,352,12.5\n91,353,12.0\n91,354,11.5\n91,355,11.0\n91,356,10.5\n91,357,10.0\n91,358,9.5\n91,359,9.0\n91,360,8.5\n91,361,8.0\n91,362,7.5\n91,363,7.0\n91,364,6.5\n91,365,6.0\n91,366,5.5\n91,367,6.0\n91,368,6.5\n91,369,7.0\n91,370,7.5\n91,371,8.0\n91,372,8.5\n91,373,9.0\n91,374,9.5\n91,375,14.0\n91,376,13.5\n91,377,13.0\n91,378,12.5\n91,379,12.0\n91,380,11.5\n91,381,11.0\n91,382,10.5\n91,383,10.0\n91,384,9.5\n91,385,9.0\n91,386,8.5\n91,387,8.0\n91,388,7.5\n91,389,7.0\n91,390,6.5\n91,391,6.0\n91,392,6.5\n91,393,7.0\n91,394,7.5\n91,395,8.0\n91,396,8.5\n91,397,9.0\n91,398,9.5\n91,399,10.0\n91,400,14.5\n91,401,14.0\n91,402,13.5\n91,403,13.0\n91,404,12.5\n91,405,12.0\n91,406,11.5\n91,407,11.0\n91,408,10.5\n91,409,10.0\n91,410,9.5\n91,411,9.0\n91,412,8.5\n91,413,8.0\n91,414,7.5\n91,415,7.0\n91,416,6.5\n91,417,7.0\n91,418,7.5\n91,419,8.0\n91,420,8.5\n91,421,9.0\n91,422,9.5\n91,423,10.0\n91,424,10.5\n91,425,15.0\n91,426,14.5\n91,427,14.0\n91,428,13.5\n91,429,13.0\n91,430,12.5\n91,431,12.0\n91,432,11.5\n91,433,11.0\n91,434,10.5\n91,435,10.0\n91,436,9.5\n91,437,9.0\n91,438,8.5\n91,439,8.0\n91,440,7.5\n91,441,7.0\n91,442,7.5\n91,443,8.0\n91,444,8.5\n91,445,9.0\n91,446,9.5\n91,447,10.0\n91,448,10.5\n91,449,11.0\n91,450,15.5\n91,451,15.0\n91,452,14.5\n91,453,14.0\n91,454,13.5\n91,455,13.0\n91,456,12.5\n91,457,12.0\n91,458,11.5\n91,459,11.0\n91,460,10.5\n91,461,10.0\n91,462,9.5\n91,463,9.0\n91,464,8.5\n91,465,8.0\n91,466,7.5\n91,467,8.0\n91,468,8.5\n91,469,9.0\n91,470,9.5\n91,471,10.0\n91,472,10.5\n91,473,11.0\n91,474,11.5\n91,475,16.0\n91,476,15.5\n91,477,15.0\n91,478,14.5\n91,479,14.0\n91,480,13.5\n91,481,13.0\n91,482,12.5\n91,483,12.0\n91,484,11.5\n91,485,11.0\n91,486,10.5\n91,487,10.0\n91,488,9.5\n91,489,9.0\n91,490,8.5\n91,491,8.0\n91,492,8.5\n91,493,9.0\n91,494,9.5\n91,495,10.0\n91,496,10.5\n91,497,11.0\n91,498,11.5\n91,499,12.0\n91,500,16.5\n91,501,16.0\n91,502,15.5\n91,503,15.0\n91,504,14.5\n91,505,14.0\n91,506,13.5\n91,507,13.0\n91,508,12.5\n91,509,12.0\n91,510,11.5\n91,511,11.0\n91,512,10.5\n91,513,10.0\n91,514,9.5\n91,515,9.0\n91,516,8.5\n91,517,9.0\n91,518,9.5\n91,519,10.0\n91,520,10.5\n91,521,11.0\n91,522,11.5\n91,523,12.0\n91,524,12.5\n91,525,17.0\n91,526,16.5\n91,527,16.0\n91,528,15.5\n91,529,15.0\n91,530,14.5\n91,531,14.0\n91,532,13.5\n91,533,13.0\n91,534,12.5\n91,535,12.0\n91,536,11.5\n91,537,11.0\n91,538,10.5\n91,539,10.0\n91,540,9.5\n91,541,9.0\n91,542,9.5\n91,543,10.0\n91,544,10.5\n91,545,11.0\n91,546,11.5\n91,547,12.0\n91,548,12.5\n91,549,13.0\n91,550,17.5\n91,551,17.0\n91,552,16.5\n91,553,16.0\n91,554,15.5\n91,555,15.0\n91,556,14.5\n91,557,14.0\n91,558,13.5\n91,559,13.0\n91,560,12.5\n91,561,12.0\n91,562,11.5\n91,563,11.0\n91,564,10.5\n91,565,10.0\n91,566,9.5\n91,567,10.0\n91,568,10.5\n91,569,11.0\n91,570,11.5\n91,571,12.0\n91,572,12.5\n91,573,13.0\n91,574,13.5\n91,575,18.0\n91,576,17.5\n91,577,17.0\n91,578,16.5\n91,579,16.0\n91,580,15.5\n91,581,15.0\n91,582,14.5\n91,583,14.0\n91,584,13.5\n91,585,13.0\n91,586,12.5\n91,587,12.0\n91,588,11.5\n91,589,11.0\n91,590,10.5\n91,591,10.0\n91,592,10.5\n91,593,11.0\n91,594,11.5\n91,595,12.0\n91,596,12.5\n91,597,13.0\n91,598,13.5\n91,599,14.0\n91,600,18.5\n91,601,18.0\n91,602,17.5\n91,603,17.0\n91,604,16.5\n91,605,16.0\n91,606,15.5\n91,607,15.0\n91,608,14.5\n91,609,14.0\n91,610,13.5\n91,611,13.0\n91,612,12.5\n91,613,12.0\n91,614,11.5\n91,615,11.0\n91,616,10.5\n91,617,11.0\n91,618,11.5\n91,619,12.0\n91,620,12.5\n91,621,13.0\n91,622,13.5\n91,623,14.0\n91,624,14.5\n92,0,10.0\n92,1,9.5\n92,2,9.0\n92,3,8.5\n92,4,8.0\n92,5,7.5\n92,6,7.0\n92,7,6.5\n92,8,6.0\n92,9,5.5\n92,10,5.0\n92,11,4.5\n92,12,4.0\n92,13,3.5\n92,14,3.0\n92,15,2.5\n92,16,2.0\n92,17,1.5\n92,18,2.0\n92,19,2.5\n92,20,3.0\n92,21,3.5\n92,22,4.0\n92,23,4.5\n92,24,5.0\n92,25,9.5\n92,26,9.0\n92,27,8.5\n92,28,8.0\n92,29,7.5\n92,30,7.0\n92,31,6.5\n92,32,6.0\n92,33,5.5\n92,34,5.0\n92,35,4.5\n92,36,4.0\n92,37,3.5\n92,38,3.0\n92,39,2.5\n92,40,2.0\n92,41,1.5\n92,42,1.0\n92,43,1.5\n92,44,2.0\n92,45,2.5\n92,46,3.0\n92,47,3.5\n92,48,4.0\n92,49,4.5\n92,50,9.0\n92,51,8.5\n92,52,8.0\n92,53,7.5\n92,54,7.0\n92,55,6.5\n92,56,6.0\n92,57,5.5\n92,58,5.0\n92,59,4.5\n92,60,4.0\n92,61,3.5\n92,62,3.0\n92,63,2.5\n92,64,2.0\n92,65,1.5\n92,66,1.0\n92,67,0.5\n92,68,1.0\n92,69,1.5\n92,70,2.0\n92,71,2.5\n92,72,3.0\n92,73,3.5\n92,74,4.0\n92,75,8.5\n92,76,8.0\n92,77,7.5\n92,78,7.0\n92,79,6.5\n92,80,6.0\n92,81,5.5\n92,82,5.0\n92,83,4.5\n92,84,4.0\n92,85,3.5\n92,86,3.0\n92,87,2.5\n92,88,2.0\n92,89,1.5\n92,90,1.0\n92,91,0.5\n92,92,0\n92,93,0.5\n92,94,1.0\n92,95,1.5\n92,96,2.0\n92,97,2.5\n92,98,3.0\n92,99,3.5\n92,100,9.0\n92,101,8.5\n92,102,8.0\n92,103,7.5\n92,104,7.0\n92,105,6.5\n92,106,6.0\n92,107,5.5\n92,108,5.0\n92,109,4.5\n92,110,4.0\n92,111,3.5\n92,112,3.0\n92,113,2.5\n92,114,2.0\n92,115,1.5\n92,116,1.0\n92,117,0.5\n92,118,1.0\n92,119,1.5\n92,120,2.0\n92,121,2.5\n92,122,3.0\n92,123,3.5\n92,124,4.0\n92,125,9.5\n92,126,9.0\n92,127,8.5\n92,128,8.0\n92,129,7.5\n92,130,7.0\n92,131,6.5\n92,132,6.0\n92,133,5.5\n92,134,5.0\n92,135,4.5\n92,136,4.0\n92,137,3.5\n92,138,3.0\n92,139,2.5\n92,140,2.0\n92,141,1.5\n92,142,1.0\n92,143,1.5\n92,144,2.0\n92,145,2.5\n92,146,3.0\n92,147,3.5\n92,148,4.0\n92,149,4.5\n92,150,10.0\n92,151,9.5\n92,152,9.0\n92,153,8.5\n92,154,8.0\n92,155,7.5\n92,156,7.0\n92,157,6.5\n92,158,6.0\n92,159,5.5\n92,160,5.0\n92,161,4.5\n92,162,4.0\n92,163,3.5\n92,164,3.0\n92,165,2.5\n92,166,2.0\n92,167,1.5\n92,168,2.0\n92,169,2.5\n92,170,3.0\n92,171,3.5\n92,172,4.0\n92,173,4.5\n92,174,5.0\n92,175,10.5\n92,176,10.0\n92,177,9.5\n92,178,9.0\n92,179,8.5\n92,180,8.0\n92,181,7.5\n92,182,7.0\n92,183,6.5\n92,184,6.0\n92,185,5.5\n92,186,5.0\n92,187,4.5\n92,188,4.0\n92,189,3.5\n92,190,3.0\n92,191,2.5\n92,192,2.0\n92,193,2.5\n92,194,3.0\n92,195,3.5\n92,196,4.0\n92,197,4.5\n92,198,5.0\n92,199,5.5\n92,200,11.0\n92,201,10.5\n92,202,10.0\n92,203,9.5\n92,204,9.0\n92,205,8.5\n92,206,8.0\n92,207,7.5\n92,208,7.0\n92,209,6.5\n92,210,6.0\n92,211,5.5\n92,212,5.0\n92,213,4.5\n92,214,4.0\n92,215,3.5\n92,216,3.0\n92,217,2.5\n92,218,3.0\n92,219,3.5\n92,220,4.0\n92,221,4.5\n92,222,5.0\n92,223,5.5\n92,224,6.0\n92,225,11.5\n92,226,11.0\n92,227,10.5\n92,228,10.0\n92,229,9.5\n92,230,9.0\n92,231,8.5\n92,232,8.0\n92,233,7.5\n92,234,7.0\n92,235,6.5\n92,236,6.0\n92,237,5.5\n92,238,5.0\n92,239,4.5\n92,240,4.0\n92,241,3.5\n92,242,3.0\n92,243,3.5\n92,244,4.0\n92,245,4.5\n92,246,5.0\n92,247,5.5\n92,248,6.0\n92,249,6.5\n92,250,12.0\n92,251,11.5\n92,252,11.0\n92,253,10.5\n92,254,10.0\n92,255,9.5\n92,256,9.0\n92,257,8.5\n92,258,8.0\n92,259,7.5\n92,260,7.0\n92,261,6.5\n92,262,6.0\n92,263,5.5\n92,264,5.0\n92,265,4.5\n92,266,4.0\n92,267,3.5\n92,268,4.0\n92,269,4.5\n92,270,5.0\n92,271,5.5\n92,272,6.0\n92,273,6.5\n92,274,7.0\n92,275,12.5\n92,276,12.0\n92,277,11.5\n92,278,11.0\n92,279,10.5\n92,280,10.0\n92,281,9.5\n92,282,9.0\n92,283,8.5\n92,284,8.0\n92,285,7.5\n92,286,7.0\n92,287,6.5\n92,288,6.0\n92,289,5.5\n92,290,5.0\n92,291,4.5\n92,292,4.0\n92,293,4.5\n92,294,5.0\n92,295,5.5\n92,296,6.0\n92,297,6.5\n92,298,7.0\n92,299,7.5\n92,300,13.0\n92,301,12.5\n92,302,12.0\n92,303,11.5\n92,304,11.0\n92,305,10.5\n92,306,10.0\n92,307,9.5\n92,308,9.0\n92,309,8.5\n92,310,8.0\n92,311,7.5\n92,312,7.0\n92,313,6.5\n92,314,6.0\n92,315,5.5\n92,316,5.0\n92,317,4.5\n92,318,5.0\n92,319,5.5\n92,320,6.0\n92,321,6.5\n92,322,7.0\n92,323,7.5\n92,324,8.0\n92,325,13.5\n92,326,13.0\n92,327,12.5\n92,328,12.0\n92,329,11.5\n92,330,11.0\n92,331,10.5\n92,332,10.0\n92,333,9.5\n92,334,9.0\n92,335,8.5\n92,336,8.0\n92,337,7.5\n92,338,7.0\n92,339,6.5\n92,340,6.0\n92,341,5.5\n92,342,5.0\n92,343,5.5\n92,344,6.0\n92,345,6.5\n92,346,7.0\n92,347,7.5\n92,348,8.0\n92,349,8.5\n92,350,14.0\n92,351,13.5\n92,352,13.0\n92,353,12.5\n92,354,12.0\n92,355,11.5\n92,356,11.0\n92,357,10.5\n92,358,10.0\n92,359,9.5\n92,360,9.0\n92,361,8.5\n92,362,8.0\n92,363,7.5\n92,364,7.0\n92,365,6.5\n92,366,6.0\n92,367,5.5\n92,368,6.0\n92,369,6.5\n92,370,7.0\n92,371,7.5\n92,372,8.0\n92,373,8.5\n92,374,9.0\n92,375,14.5\n92,376,14.0\n92,377,13.5\n92,378,13.0\n92,379,12.5\n92,380,12.0\n92,381,11.5\n92,382,11.0\n92,383,10.5\n92,384,10.0\n92,385,9.5\n92,386,9.0\n92,387,8.5\n92,388,8.0\n92,389,7.5\n92,390,7.0\n92,391,6.5\n92,392,6.0\n92,393,6.5\n92,394,7.0\n92,395,7.5\n92,396,8.0\n92,397,8.5\n92,398,9.0\n92,399,9.5\n92,400,15.0\n92,401,14.5\n92,402,14.0\n92,403,13.5\n92,404,13.0\n92,405,12.5\n92,406,12.0\n92,407,11.5\n92,408,11.0\n92,409,10.5\n92,410,10.0\n92,411,9.5\n92,412,9.0\n92,413,8.5\n92,414,8.0\n92,415,7.5\n92,416,7.0\n92,417,6.5\n92,418,7.0\n92,419,7.5\n92,420,8.0\n92,421,8.5\n92,422,9.0\n92,423,9.5\n92,424,10.0\n92,425,15.5\n92,426,15.0\n92,427,14.5\n92,428,14.0\n92,429,13.5\n92,430,13.0\n92,431,12.5\n92,432,12.0\n92,433,11.5\n92,434,11.0\n92,435,10.5\n92,436,10.0\n92,437,9.5\n92,438,9.0\n92,439,8.5\n92,440,8.0\n92,441,7.5\n92,442,7.0\n92,443,7.5\n92,444,8.0\n92,445,8.5\n92,446,9.0\n92,447,9.5\n92,448,10.0\n92,449,10.5\n92,450,16.0\n92,451,15.5\n92,452,15.0\n92,453,14.5\n92,454,14.0\n92,455,13.5\n92,456,13.0\n92,457,12.5\n92,458,12.0\n92,459,11.5\n92,460,11.0\n92,461,10.5\n92,462,10.0\n92,463,9.5\n92,464,9.0\n92,465,8.5\n92,466,8.0\n92,467,7.5\n92,468,8.0\n92,469,8.5\n92,470,9.0\n92,471,9.5\n92,472,10.0\n92,473,10.5\n92,474,11.0\n92,475,16.5\n92,476,16.0\n92,477,15.5\n92,478,15.0\n92,479,14.5\n92,480,14.0\n92,481,13.5\n92,482,13.0\n92,483,12.5\n92,484,12.0\n92,485,11.5\n92,486,11.0\n92,487,10.5\n92,488,10.0\n92,489,9.5\n92,490,9.0\n92,491,8.5\n92,492,8.0\n92,493,8.5\n92,494,9.0\n92,495,9.5\n92,496,10.0\n92,497,10.5\n92,498,11.0\n92,499,11.5\n92,500,17.0\n92,501,16.5\n92,502,16.0\n92,503,15.5\n92,504,15.0\n92,505,14.5\n92,506,14.0\n92,507,13.5\n92,508,13.0\n92,509,12.5\n92,510,12.0\n92,511,11.5\n92,512,11.0\n92,513,10.5\n92,514,10.0\n92,515,9.5\n92,516,9.0\n92,517,8.5\n92,518,9.0\n92,519,9.5\n92,520,10.0\n92,521,10.5\n92,522,11.0\n92,523,11.5\n92,524,12.0\n92,525,17.5\n92,526,17.0\n92,527,16.5\n92,528,16.0\n92,529,15.5\n92,530,15.0\n92,531,14.5\n92,532,14.0\n92,533,13.5\n92,534,13.0\n92,535,12.5\n92,536,12.0\n92,537,11.5\n92,538,11.0\n92,539,10.5\n92,540,10.0\n92,541,9.5\n92,542,9.0\n92,543,9.5\n92,544,10.0\n92,545,10.5\n92,546,11.0\n92,547,11.5\n92,548,12.0\n92,549,12.5\n92,550,18.0\n92,551,17.5\n92,552,17.0\n92,553,16.5\n92,554,16.0\n92,555,15.5\n92,556,15.0\n92,557,14.5\n92,558,14.0\n92,559,13.5\n92,560,13.0\n92,561,12.5\n92,562,12.0\n92,563,11.5\n92,564,11.0\n92,565,10.5\n92,566,10.0\n92,567,9.5\n92,568,10.0\n92,569,10.5\n92,570,11.0\n92,571,11.5\n92,572,12.0\n92,573,12.5\n92,574,13.0\n92,575,18.5\n92,576,18.0\n92,577,17.5\n92,578,17.0\n92,579,16.5\n92,580,16.0\n92,581,15.5\n92,582,15.0\n92,583,14.5\n92,584,14.0\n92,585,13.5\n92,586,13.0\n92,587,12.5\n92,588,12.0\n92,589,11.5\n92,590,11.0\n92,591,10.5\n92,592,10.0\n92,593,10.5\n92,594,11.0\n92,595,11.5\n92,596,12.0\n92,597,12.5\n92,598,13.0\n92,599,13.5\n92,600,19.0\n92,601,18.5\n92,602,18.0\n92,603,17.5\n92,604,17.0\n92,605,16.5\n92,606,16.0\n92,607,15.5\n92,608,15.0\n92,609,14.5\n92,610,14.0\n92,611,13.5\n92,612,13.0\n92,613,12.5\n92,614,12.0\n92,615,11.5\n92,616,11.0\n92,617,10.5\n92,618,11.0\n92,619,11.5\n92,620,12.0\n92,621,12.5\n92,622,13.0\n92,623,13.5\n92,624,14.0\n93,0,10.5\n93,1,10.0\n93,2,9.5\n93,3,9.0\n93,4,8.5\n93,5,8.0\n93,6,7.5\n93,7,7.0\n93,8,6.5\n93,9,6.0\n93,10,5.5\n93,11,5.0\n93,12,4.5\n93,13,4.0\n93,14,3.5\n93,15,3.0\n93,16,2.5\n93,17,2.0\n93,18,1.5\n93,19,2.0\n93,20,2.5\n93,21,3.0\n93,22,3.5\n93,23,4.0\n93,24,4.5\n93,25,10.0\n93,26,9.5\n93,27,9.0\n93,28,8.5\n93,29,8.0\n93,30,7.5\n93,31,7.0\n93,32,6.5\n93,33,6.0\n93,34,5.5\n93,35,5.0\n93,36,4.5\n93,37,4.0\n93,38,3.5\n93,39,3.0\n93,40,2.5\n93,41,2.0\n93,42,1.5\n93,43,1.0\n93,44,1.5\n93,45,2.0\n93,46,2.5\n93,47,3.0\n93,48,3.5\n93,49,4.0\n93,50,9.5\n93,51,9.0\n93,52,8.5\n93,53,8.0\n93,54,7.5\n93,55,7.0\n93,56,6.5\n93,57,6.0\n93,58,5.5\n93,59,5.0\n93,60,4.5\n93,61,4.0\n93,62,3.5\n93,63,3.0\n93,64,2.5\n93,65,2.0\n93,66,1.5\n93,67,1.0\n93,68,0.5\n93,69,1.0\n93,70,1.5\n93,71,2.0\n93,72,2.5\n93,73,3.0\n93,74,3.5\n93,75,9.0\n93,76,8.5\n93,77,8.0\n93,78,7.5\n93,79,7.0\n93,80,6.5\n93,81,6.0\n93,82,5.5\n93,83,5.0\n93,84,4.5\n93,85,4.0\n93,86,3.5\n93,87,3.0\n93,88,2.5\n93,89,2.0\n93,90,1.5\n93,91,1.0\n93,92,0.5\n93,93,0\n93,94,0.5\n93,95,1.0\n93,96,1.5\n93,97,2.0\n93,98,2.5\n93,99,3.0\n93,100,9.5\n93,101,9.0\n93,102,8.5\n93,103,8.0\n93,104,7.5\n93,105,7.0\n93,106,6.5\n93,107,6.0\n93,108,5.5\n93,109,5.0\n93,110,4.5\n93,111,4.0\n93,112,3.5\n93,113,3.0\n93,114,2.5\n93,115,2.0\n93,116,1.5\n93,117,1.0\n93,118,0.5\n93,119,1.0\n93,120,1.5\n93,121,2.0\n93,122,2.5\n93,123,3.0\n93,124,3.5\n93,125,10.0\n93,126,9.5\n93,127,9.0\n93,128,8.5\n93,129,8.0\n93,130,7.5\n93,131,7.0\n93,132,6.5\n93,133,6.0\n93,134,5.5\n93,135,5.0\n93,136,4.5\n93,137,4.0\n93,138,3.5\n93,139,3.0\n93,140,2.5\n93,141,2.0\n93,142,1.5\n93,143,1.0\n93,144,1.5\n93,145,2.0\n93,146,2.5\n93,147,3.0\n93,148,3.5\n93,149,4.0\n93,150,10.5\n93,151,10.0\n93,152,9.5\n93,153,9.0\n93,154,8.5\n93,155,8.0\n93,156,7.5\n93,157,7.0\n93,158,6.5\n93,159,6.0\n93,160,5.5\n93,161,5.0\n93,162,4.5\n93,163,4.0\n93,164,3.5\n93,165,3.0\n93,166,2.5\n93,167,2.0\n93,168,1.5\n93,169,2.0\n93,170,2.5\n93,171,3.0\n93,172,3.5\n93,173,4.0\n93,174,4.5\n93,175,11.0\n93,176,10.5\n93,177,10.0\n93,178,9.5\n93,179,9.0\n93,180,8.5\n93,181,8.0\n93,182,7.5\n93,183,7.0\n93,184,6.5\n93,185,6.0\n93,186,5.5\n93,187,5.0\n93,188,4.5\n93,189,4.0\n93,190,3.5\n93,191,3.0\n93,192,2.5\n93,193,2.0\n93,194,2.5\n93,195,3.0\n93,196,3.5\n93,197,4.0\n93,198,4.5\n93,199,5.0\n93,200,11.5\n93,201,11.0\n93,202,10.5\n93,203,10.0\n93,204,9.5\n93,205,9.0\n93,206,8.5\n93,207,8.0\n93,208,7.5\n93,209,7.0\n93,210,6.5\n93,211,6.0\n93,212,5.5\n93,213,5.0\n93,214,4.5\n93,215,4.0\n93,216,3.5\n93,217,3.0\n93,218,2.5\n93,219,3.0\n93,220,3.5\n93,221,4.0\n93,222,4.5\n93,223,5.0\n93,224,5.5\n93,225,12.0\n93,226,11.5\n93,227,11.0\n93,228,10.5\n93,229,10.0\n93,230,9.5\n93,231,9.0\n93,232,8.5\n93,233,8.0\n93,234,7.5\n93,235,7.0\n93,236,6.5\n93,237,6.0\n93,238,5.5\n93,239,5.0\n93,240,4.5\n93,241,4.0\n93,242,3.5\n93,243,3.0\n93,244,3.5\n93,245,4.0\n93,246,4.5\n93,247,5.0\n93,248,5.5\n93,249,6.0\n93,250,12.5\n93,251,12.0\n93,252,11.5\n93,253,11.0\n93,254,10.5\n93,255,10.0\n93,256,9.5\n93,257,9.0\n93,258,8.5\n93,259,8.0\n93,260,7.5\n93,261,7.0\n93,262,6.5\n93,263,6.0\n93,264,5.5\n93,265,5.0\n93,266,4.5\n93,267,4.0\n93,268,3.5\n93,269,4.0\n93,270,4.5\n93,271,5.0\n93,272,5.5\n93,273,6.0\n93,274,6.5\n93,275,13.0\n93,276,12.5\n93,277,12.0\n93,278,11.5\n93,279,11.0\n93,280,10.5\n93,281,10.0\n93,282,9.5\n93,283,9.0\n93,284,8.5\n93,285,8.0\n93,286,7.5\n93,287,7.0\n93,288,6.5\n93,289,6.0\n93,290,5.5\n93,291,5.0\n93,292,4.5\n93,293,4.0\n93,294,4.5\n93,295,5.0\n93,296,5.5\n93,297,6.0\n93,298,6.5\n93,299,7.0\n93,300,13.5\n93,301,13.0\n93,302,12.5\n93,303,12.0\n93,304,11.5\n93,305,11.0\n93,306,10.5\n93,307,10.0\n93,308,9.5\n93,309,9.0\n93,310,8.5\n93,311,8.0\n93,312,7.5\n93,313,7.0\n93,314,6.5\n93,315,6.0\n93,316,5.5\n93,317,5.0\n93,318,4.5\n93,319,5.0\n93,320,5.5\n93,321,6.0\n93,322,6.5\n93,323,7.0\n93,324,7.5\n93,325,14.0\n93,326,13.5\n93,327,13.0\n93,328,12.5\n93,329,12.0\n93,330,11.5\n93,331,11.0\n93,332,10.5\n93,333,10.0\n93,334,9.5\n93,335,9.0\n93,336,8.5\n93,337,8.0\n93,338,7.5\n93,339,7.0\n93,340,6.5\n93,341,6.0\n93,342,5.5\n93,343,5.0\n93,344,5.5\n93,345,6.0\n93,346,6.5\n93,347,7.0\n93,348,7.5\n93,349,8.0\n93,350,14.5\n93,351,14.0\n93,352,13.5\n93,353,13.0\n93,354,12.5\n93,355,12.0\n93,356,11.5\n93,357,11.0\n93,358,10.5\n93,359,10.0\n93,360,9.5\n93,361,9.0\n93,362,8.5\n93,363,8.0\n93,364,7.5\n93,365,7.0\n93,366,6.5\n93,367,6.0\n93,368,5.5\n93,369,6.0\n93,370,6.5\n93,371,7.0\n93,372,7.5\n93,373,8.0\n93,374,8.5\n93,375,15.0\n93,376,14.5\n93,377,14.0\n93,378,13.5\n93,379,13.0\n93,380,12.5\n93,381,12.0\n93,382,11.5\n93,383,11.0\n93,384,10.5\n93,385,10.0\n93,386,9.5\n93,387,9.0\n93,388,8.5\n93,389,8.0\n93,390,7.5\n93,391,7.0\n93,392,6.5\n93,393,6.0\n93,394,6.5\n93,395,7.0\n93,396,7.5\n93,397,8.0\n93,398,8.5\n93,399,9.0\n93,400,15.5\n93,401,15.0\n93,402,14.5\n93,403,14.0\n93,404,13.5\n93,405,13.0\n93,406,12.5\n93,407,12.0\n93,408,11.5\n93,409,11.0\n93,410,10.5\n93,411,10.0\n93,412,9.5\n93,413,9.0\n93,414,8.5\n93,415,8.0\n93,416,7.5\n93,417,7.0\n93,418,6.5\n93,419,7.0\n93,420,7.5\n93,421,8.0\n93,422,8.5\n93,423,9.0\n93,424,9.5\n93,425,16.0\n93,426,15.5\n93,427,15.0\n93,428,14.5\n93,429,14.0\n93,430,13.5\n93,431,13.0\n93,432,12.5\n93,433,12.0\n93,434,11.5\n93,435,11.0\n93,436,10.5\n93,437,10.0\n93,438,9.5\n93,439,9.0\n93,440,8.5\n93,441,8.0\n93,442,7.5\n93,443,7.0\n93,444,7.5\n93,445,8.0\n93,446,8.5\n93,447,9.0\n93,448,9.5\n93,449,10.0\n93,450,16.5\n93,451,16.0\n93,452,15.5\n93,453,15.0\n93,454,14.5\n93,455,14.0\n93,456,13.5\n93,457,13.0\n93,458,12.5\n93,459,12.0\n93,460,11.5\n93,461,11.0\n93,462,10.5\n93,463,10.0\n93,464,9.5\n93,465,9.0\n93,466,8.5\n93,467,8.0\n93,468,7.5\n93,469,8.0\n93,470,8.5\n93,471,9.0\n93,472,9.5\n93,473,10.0\n93,474,10.5\n93,475,17.0\n93,476,16.5\n93,477,16.0\n93,478,15.5\n93,479,15.0\n93,480,14.5\n93,481,14.0\n93,482,13.5\n93,483,13.0\n93,484,12.5\n93,485,12.0\n93,486,11.5\n93,487,11.0\n93,488,10.5\n93,489,10.0\n93,490,9.5\n93,491,9.0\n93,492,8.5\n93,493,8.0\n93,494,8.5\n93,495,9.0\n93,496,9.5\n93,497,10.0\n93,498,10.5\n93,499,11.0\n93,500,17.5\n93,501,17.0\n93,502,16.5\n93,503,16.0\n93,504,15.5\n93,505,15.0\n93,506,14.5\n93,507,14.0\n93,508,13.5\n93,509,13.0\n93,510,12.5\n93,511,12.0\n93,512,11.5\n93,513,11.0\n93,514,10.5\n93,515,10.0\n93,516,9.5\n93,517,9.0\n93,518,8.5\n93,519,9.0\n93,520,9.5\n93,521,10.0\n93,522,10.5\n93,523,11.0\n93,524,11.5\n93,525,18.0\n93,526,17.5\n93,527,17.0\n93,528,16.5\n93,529,16.0\n93,530,15.5\n93,531,15.0\n93,532,14.5\n93,533,14.0\n93,534,13.5\n93,535,13.0\n93,536,12.5\n93,537,12.0\n93,538,11.5\n93,539,11.0\n93,540,10.5\n93,541,10.0\n93,542,9.5\n93,543,9.0\n93,544,9.5\n93,545,10.0\n93,546,10.5\n93,547,11.0\n93,548,11.5\n93,549,12.0\n93,550,18.5\n93,551,18.0\n93,552,17.5\n93,553,17.0\n93,554,16.5\n93,555,16.0\n93,556,15.5\n93,557,15.0\n93,558,14.5\n93,559,14.0\n93,560,13.5\n93,561,13.0\n93,562,12.5\n93,563,12.0\n93,564,11.5\n93,565,11.0\n93,566,10.5\n93,567,10.0\n93,568,9.5\n93,569,10.0\n93,570,10.5\n93,571,11.0\n93,572,11.5\n93,573,12.0\n93,574,12.5\n93,575,19.0\n93,576,18.5\n93,577,18.0\n93,578,17.5\n93,579,17.0\n93,580,16.5\n93,581,16.0\n93,582,15.5\n93,583,15.0\n93,584,14.5\n93,585,14.0\n93,586,13.5\n93,587,13.0\n93,588,12.5\n93,589,12.0\n93,590,11.5\n93,591,11.0\n93,592,10.5\n93,593,10.0\n93,594,10.5\n93,595,11.0\n93,596,11.5\n93,597,12.0\n93,598,12.5\n93,599,13.0\n93,600,19.5\n93,601,19.0\n93,602,18.5\n93,603,18.0\n93,604,17.5\n93,605,17.0\n93,606,16.5\n93,607,16.0\n93,608,15.5\n93,609,15.0\n93,610,14.5\n93,611,14.0\n93,612,13.5\n93,613,13.0\n93,614,12.5\n93,615,12.0\n93,616,11.5\n93,617,11.0\n93,618,10.5\n93,619,11.0\n93,620,11.5\n93,621,12.0\n93,622,12.5\n93,623,13.0\n93,624,13.5\n94,0,11.0\n94,1,10.5\n94,2,10.0\n94,3,9.5\n94,4,9.0\n94,5,8.5\n94,6,8.0\n94,7,7.5\n94,8,7.0\n94,9,6.5\n94,10,6.0\n94,11,5.5\n94,12,5.0\n94,13,4.5\n94,14,4.0\n94,15,3.5\n94,16,3.0\n94,17,2.5\n94,18,2.0\n94,19,1.5\n94,20,2.0\n94,21,2.5\n94,22,3.0\n94,23,3.5\n94,24,4.0\n94,25,10.5\n94,26,10.0\n94,27,9.5\n94,28,9.0\n94,29,8.5\n94,30,8.0\n94,31,7.5\n94,32,7.0\n94,33,6.5\n94,34,6.0\n94,35,5.5\n94,36,5.0\n94,37,4.5\n94,38,4.0\n94,39,3.5\n94,40,3.0\n94,41,2.5\n94,42,2.0\n94,43,1.5\n94,44,1.0\n94,45,1.5\n94,46,2.0\n94,47,2.5\n94,48,3.0\n94,49,3.5\n94,50,10.0\n94,51,9.5\n94,52,9.0\n94,53,8.5\n94,54,8.0\n94,55,7.5\n94,56,7.0\n94,57,6.5\n94,58,6.0\n94,59,5.5\n94,60,5.0\n94,61,4.5\n94,62,4.0\n94,63,3.5\n94,64,3.0\n94,65,2.5\n94,66,2.0\n94,67,1.5\n94,68,1.0\n94,69,0.5\n94,70,1.0\n94,71,1.5\n94,72,2.0\n94,73,2.5\n94,74,3.0\n94,75,9.5\n94,76,9.0\n94,77,8.5\n94,78,8.0\n94,79,7.5\n94,80,7.0\n94,81,6.5\n94,82,6.0\n94,83,5.5\n94,84,5.0\n94,85,4.5\n94,86,4.0\n94,87,3.5\n94,88,3.0\n94,89,2.5\n94,90,2.0\n94,91,1.5\n94,92,1.0\n94,93,0.5\n94,94,0\n94,95,0.5\n94,96,1.0\n94,97,1.5\n94,98,2.0\n94,99,2.5\n94,100,10.0\n94,101,9.5\n94,102,9.0\n94,103,8.5\n94,104,8.0\n94,105,7.5\n94,106,7.0\n94,107,6.5\n94,108,6.0\n94,109,5.5\n94,110,5.0\n94,111,4.5\n94,112,4.0\n94,113,3.5\n94,114,3.0\n94,115,2.5\n94,116,2.0\n94,117,1.5\n94,118,1.0\n94,119,0.5\n94,120,1.0\n94,121,1.5\n94,122,2.0\n94,123,2.5\n94,124,3.0\n94,125,10.5\n94,126,10.0\n94,127,9.5\n94,128,9.0\n94,129,8.5\n94,130,8.0\n94,131,7.5\n94,132,7.0\n94,133,6.5\n94,134,6.0\n94,135,5.5\n94,136,5.0\n94,137,4.5\n94,138,4.0\n94,139,3.5\n94,140,3.0\n94,141,2.5\n94,142,2.0\n94,143,1.5\n94,144,1.0\n94,145,1.5\n94,146,2.0\n94,147,2.5\n94,148,3.0\n94,149,3.5\n94,150,11.0\n94,151,10.5\n94,152,10.0\n94,153,9.5\n94,154,9.0\n94,155,8.5\n94,156,8.0\n94,157,7.5\n94,158,7.0\n94,159,6.5\n94,160,6.0\n94,161,5.5\n94,162,5.0\n94,163,4.5\n94,164,4.0\n94,165,3.5\n94,166,3.0\n94,167,2.5\n94,168,2.0\n94,169,1.5\n94,170,2.0\n94,171,2.5\n94,172,3.0\n94,173,3.5\n94,174,4.0\n94,175,11.5\n94,176,11.0\n94,177,10.5\n94,178,10.0\n94,179,9.5\n94,180,9.0\n94,181,8.5\n94,182,8.0\n94,183,7.5\n94,184,7.0\n94,185,6.5\n94,186,6.0\n94,187,5.5\n94,188,5.0\n94,189,4.5\n94,190,4.0\n94,191,3.5\n94,192,3.0\n94,193,2.5\n94,194,2.0\n94,195,2.5\n94,196,3.0\n94,197,3.5\n94,198,4.0\n94,199,4.5\n94,200,12.0\n94,201,11.5\n94,202,11.0\n94,203,10.5\n94,204,10.0\n94,205,9.5\n94,206,9.0\n94,207,8.5\n94,208,8.0\n94,209,7.5\n94,210,7.0\n94,211,6.5\n94,212,6.0\n94,213,5.5\n94,214,5.0\n94,215,4.5\n94,216,4.0\n94,217,3.5\n94,218,3.0\n94,219,2.5\n94,220,3.0\n94,221,3.5\n94,222,4.0\n94,223,4.5\n94,224,5.0\n94,225,12.5\n94,226,12.0\n94,227,11.5\n94,228,11.0\n94,229,10.5\n94,230,10.0\n94,231,9.5\n94,232,9.0\n94,233,8.5\n94,234,8.0\n94,235,7.5\n94,236,7.0\n94,237,6.5\n94,238,6.0\n94,239,5.5\n94,240,5.0\n94,241,4.5\n94,242,4.0\n94,243,3.5\n94,244,3.0\n94,245,3.5\n94,246,4.0\n94,247,4.5\n94,248,5.0\n94,249,5.5\n94,250,13.0\n94,251,12.5\n94,252,12.0\n94,253,11.5\n94,254,11.0\n94,255,10.5\n94,256,10.0\n94,257,9.5\n94,258,9.0\n94,259,8.5\n94,260,8.0\n94,261,7.5\n94,262,7.0\n94,263,6.5\n94,264,6.0\n94,265,5.5\n94,266,5.0\n94,267,4.5\n94,268,4.0\n94,269,3.5\n94,270,4.0\n94,271,4.5\n94,272,5.0\n94,273,5.5\n94,274,6.0\n94,275,13.5\n94,276,13.0\n94,277,12.5\n94,278,12.0\n94,279,11.5\n94,280,11.0\n94,281,10.5\n94,282,10.0\n94,283,9.5\n94,284,9.0\n94,285,8.5\n94,286,8.0\n94,287,7.5\n94,288,7.0\n94,289,6.5\n94,290,6.0\n94,291,5.5\n94,292,5.0\n94,293,4.5\n94,294,4.0\n94,295,4.5\n94,296,5.0\n94,297,5.5\n94,298,6.0\n94,299,6.5\n94,300,14.0\n94,301,13.5\n94,302,13.0\n94,303,12.5\n94,304,12.0\n94,305,11.5\n94,306,11.0\n94,307,10.5\n94,308,10.0\n94,309,9.5\n94,310,9.0\n94,311,8.5\n94,312,8.0\n94,313,7.5\n94,314,7.0\n94,315,6.5\n94,316,6.0\n94,317,5.5\n94,318,5.0\n94,319,4.5\n94,320,5.0\n94,321,5.5\n94,322,6.0\n94,323,6.5\n94,324,7.0\n94,325,14.5\n94,326,14.0\n94,327,13.5\n94,328,13.0\n94,329,12.5\n94,330,12.0\n94,331,11.5\n94,332,11.0\n94,333,10.5\n94,334,10.0\n94,335,9.5\n94,336,9.0\n94,337,8.5\n94,338,8.0\n94,339,7.5\n94,340,7.0\n94,341,6.5\n94,342,6.0\n94,343,5.5\n94,344,5.0\n94,345,5.5\n94,346,6.0\n94,347,6.5\n94,348,7.0\n94,349,7.5\n94,350,15.0\n94,351,14.5\n94,352,14.0\n94,353,13.5\n94,354,13.0\n94,355,12.5\n94,356,12.0\n94,357,11.5\n94,358,11.0\n94,359,10.5\n94,360,10.0\n94,361,9.5\n94,362,9.0\n94,363,8.5\n94,364,8.0\n94,365,7.5\n94,366,7.0\n94,367,6.5\n94,368,6.0\n94,369,5.5\n94,370,6.0\n94,371,6.5\n94,372,7.0\n94,373,7.5\n94,374,8.0\n94,375,15.5\n94,376,15.0\n94,377,14.5\n94,378,14.0\n94,379,13.5\n94,380,13.0\n94,381,12.5\n94,382,12.0\n94,383,11.5\n94,384,11.0\n94,385,10.5\n94,386,10.0\n94,387,9.5\n94,388,9.0\n94,389,8.5\n94,390,8.0\n94,391,7.5\n94,392,7.0\n94,393,6.5\n94,394,6.0\n94,395,6.5\n94,396,7.0\n94,397,7.5\n94,398,8.0\n94,399,8.5\n94,400,16.0\n94,401,15.5\n94,402,15.0\n94,403,14.5\n94,404,14.0\n94,405,13.5\n94,406,13.0\n94,407,12.5\n94,408,12.0\n94,409,11.5\n94,410,11.0\n94,411,10.5\n94,412,10.0\n94,413,9.5\n94,414,9.0\n94,415,8.5\n94,416,8.0\n94,417,7.5\n94,418,7.0\n94,419,6.5\n94,420,7.0\n94,421,7.5\n94,422,8.0\n94,423,8.5\n94,424,9.0\n94,425,16.5\n94,426,16.0\n94,427,15.5\n94,428,15.0\n94,429,14.5\n94,430,14.0\n94,431,13.5\n94,432,13.0\n94,433,12.5\n94,434,12.0\n94,435,11.5\n94,436,11.0\n94,437,10.5\n94,438,10.0\n94,439,9.5\n94,440,9.0\n94,441,8.5\n94,442,8.0\n94,443,7.5\n94,444,7.0\n94,445,7.5\n94,446,8.0\n94,447,8.5\n94,448,9.0\n94,449,9.5\n94,450,17.0\n94,451,16.5\n94,452,16.0\n94,453,15.5\n94,454,15.0\n94,455,14.5\n94,456,14.0\n94,457,13.5\n94,458,13.0\n94,459,12.5\n94,460,12.0\n94,461,11.5\n94,462,11.0\n94,463,10.5\n94,464,10.0\n94,465,9.5\n94,466,9.0\n94,467,8.5\n94,468,8.0\n94,469,7.5\n94,470,8.0\n94,471,8.5\n94,472,9.0\n94,473,9.5\n94,474,10.0\n94,475,17.5\n94,476,17.0\n94,477,16.5\n94,478,16.0\n94,479,15.5\n94,480,15.0\n94,481,14.5\n94,482,14.0\n94,483,13.5\n94,484,13.0\n94,485,12.5\n94,486,12.0\n94,487,11.5\n94,488,11.0\n94,489,10.5\n94,490,10.0\n94,491,9.5\n94,492,9.0\n94,493,8.5\n94,494,8.0\n94,495,8.5\n94,496,9.0\n94,497,9.5\n94,498,10.0\n94,499,10.5\n94,500,18.0\n94,501,17.5\n94,502,17.0\n94,503,16.5\n94,504,16.0\n94,505,15.5\n94,506,15.0\n94,507,14.5\n94,508,14.0\n94,509,13.5\n94,510,13.0\n94,511,12.5\n94,512,12.0\n94,513,11.5\n94,514,11.0\n94,515,10.5\n94,516,10.0\n94,517,9.5\n94,518,9.0\n94,519,8.5\n94,520,9.0\n94,521,9.5\n94,522,10.0\n94,523,10.5\n94,524,11.0\n94,525,18.5\n94,526,18.0\n94,527,17.5\n94,528,17.0\n94,529,16.5\n94,530,16.0\n94,531,15.5\n94,532,15.0\n94,533,14.5\n94,534,14.0\n94,535,13.5\n94,536,13.0\n94,537,12.5\n94,538,12.0\n94,539,11.5\n94,540,11.0\n94,541,10.5\n94,542,10.0\n94,543,9.5\n94,544,9.0\n94,545,9.5\n94,546,10.0\n94,547,10.5\n94,548,11.0\n94,549,11.5\n94,550,19.0\n94,551,18.5\n94,552,18.0\n94,553,17.5\n94,554,17.0\n94,555,16.5\n94,556,16.0\n94,557,15.5\n94,558,15.0\n94,559,14.5\n94,560,14.0\n94,561,13.5\n94,562,13.0\n94,563,12.5\n94,564,12.0\n94,565,11.5\n94,566,11.0\n94,567,10.5\n94,568,10.0\n94,569,9.5\n94,570,10.0\n94,571,10.5\n94,572,11.0\n94,573,11.5\n94,574,12.0\n94,575,19.5\n94,576,19.0\n94,577,18.5\n94,578,18.0\n94,579,17.5\n94,580,17.0\n94,581,16.5\n94,582,16.0\n94,583,15.5\n94,584,15.0\n94,585,14.5\n94,586,14.0\n94,587,13.5\n94,588,13.0\n94,589,12.5\n94,590,12.0\n94,591,11.5\n94,592,11.0\n94,593,10.5\n94,594,10.0\n94,595,10.5\n94,596,11.0\n94,597,11.5\n94,598,12.0\n94,599,12.5\n94,600,20.0\n94,601,19.5\n94,602,19.0\n94,603,18.5\n94,604,18.0\n94,605,17.5\n94,606,17.0\n94,607,16.5\n94,608,16.0\n94,609,15.5\n94,610,15.0\n94,611,14.5\n94,612,14.0\n94,613,13.5\n94,614,13.0\n94,615,12.5\n94,616,12.0\n94,617,11.5\n94,618,11.0\n94,619,10.5\n94,620,11.0\n94,621,11.5\n94,622,12.0\n94,623,12.5\n94,624,13.0\n95,0,11.5\n95,1,11.0\n95,2,10.5\n95,3,10.0\n95,4,9.5\n95,5,9.0\n95,6,8.5\n95,7,8.0\n95,8,7.5\n95,9,7.0\n95,10,6.5\n95,11,6.0\n95,12,5.5\n95,13,5.0\n95,14,4.5\n95,15,4.0\n95,16,3.5\n95,17,3.0\n95,18,2.5\n95,19,2.0\n95,20,1.5\n95,21,2.0\n95,22,2.5\n95,23,3.0\n95,24,3.5\n95,25,11.0\n95,26,10.5\n95,27,10.0\n95,28,9.5\n95,29,9.0\n95,30,8.5\n95,31,8.0\n95,32,7.5\n95,33,7.0\n95,34,6.5\n95,35,6.0\n95,36,5.5\n95,37,5.0\n95,38,4.5\n95,39,4.0\n95,40,3.5\n95,41,3.0\n95,42,2.5\n95,43,2.0\n95,44,1.5\n95,45,1.0\n95,46,1.5\n95,47,2.0\n95,48,2.5\n95,49,3.0\n95,50,10.5\n95,51,10.0\n95,52,9.5\n95,53,9.0\n95,54,8.5\n95,55,8.0\n95,56,7.5\n95,57,7.0\n95,58,6.5\n95,59,6.0\n95,60,5.5\n95,61,5.0\n95,62,4.5\n95,63,4.0\n95,64,3.5\n95,65,3.0\n95,66,2.5\n95,67,2.0\n95,68,1.5\n95,69,1.0\n95,70,0.5\n95,71,1.0\n95,72,1.5\n95,73,2.0\n95,74,2.5\n95,75,10.0\n95,76,9.5\n95,77,9.0\n95,78,8.5\n95,79,8.0\n95,80,7.5\n95,81,7.0\n95,82,6.5\n95,83,6.0\n95,84,5.5\n95,85,5.0\n95,86,4.5\n95,87,4.0\n95,88,3.5\n95,89,3.0\n95,90,2.5\n95,91,2.0\n95,92,1.5\n95,93,1.0\n95,94,0.5\n95,95,0\n95,96,0.5\n95,97,1.0\n95,98,1.5\n95,99,2.0\n95,100,10.5\n95,101,10.0\n95,102,9.5\n95,103,9.0\n95,104,8.5\n95,105,8.0\n95,106,7.5\n95,107,7.0\n95,108,6.5\n95,109,6.0\n95,110,5.5\n95,111,5.0\n95,112,4.5\n95,113,4.0\n95,114,3.5\n95,115,3.0\n95,116,2.5\n95,117,2.0\n95,118,1.5\n95,119,1.0\n95,120,0.5\n95,121,1.0\n95,122,1.5\n95,123,2.0\n95,124,2.5\n95,125,11.0\n95,126,10.5\n95,127,10.0\n95,128,9.5\n95,129,9.0\n95,130,8.5\n95,131,8.0\n95,132,7.5\n95,133,7.0\n95,134,6.5\n95,135,6.0\n95,136,5.5\n95,137,5.0\n95,138,4.5\n95,139,4.0\n95,140,3.5\n95,141,3.0\n95,142,2.5\n95,143,2.0\n95,144,1.5\n95,145,1.0\n95,146,1.5\n95,147,2.0\n95,148,2.5\n95,149,3.0\n95,150,11.5\n95,151,11.0\n95,152,10.5\n95,153,10.0\n95,154,9.5\n95,155,9.0\n95,156,8.5\n95,157,8.0\n95,158,7.5\n95,159,7.0\n95,160,6.5\n95,161,6.0\n95,162,5.5\n95,163,5.0\n95,164,4.5\n95,165,4.0\n95,166,3.5\n95,167,3.0\n95,168,2.5\n95,169,2.0\n95,170,1.5\n95,171,2.0\n95,172,2.5\n95,173,3.0\n95,174,3.5\n95,175,12.0\n95,176,11.5\n95,177,11.0\n95,178,10.5\n95,179,10.0\n95,180,9.5\n95,181,9.0\n95,182,8.5\n95,183,8.0\n95,184,7.5\n95,185,7.0\n95,186,6.5\n95,187,6.0\n95,188,5.5\n95,189,5.0\n95,190,4.5\n95,191,4.0\n95,192,3.5\n95,193,3.0\n95,194,2.5\n95,195,2.0\n95,196,2.5\n95,197,3.0\n95,198,3.5\n95,199,4.0\n95,200,12.5\n95,201,12.0\n95,202,11.5\n95,203,11.0\n95,204,10.5\n95,205,10.0\n95,206,9.5\n95,207,9.0\n95,208,8.5\n95,209,8.0\n95,210,7.5\n95,211,7.0\n95,212,6.5\n95,213,6.0\n95,214,5.5\n95,215,5.0\n95,216,4.5\n95,217,4.0\n95,218,3.5\n95,219,3.0\n95,220,2.5\n95,221,3.0\n95,222,3.5\n95,223,4.0\n95,224,4.5\n95,225,13.0\n95,226,12.5\n95,227,12.0\n95,228,11.5\n95,229,11.0\n95,230,10.5\n95,231,10.0\n95,232,9.5\n95,233,9.0\n95,234,8.5\n95,235,8.0\n95,236,7.5\n95,237,7.0\n95,238,6.5\n95,239,6.0\n95,240,5.5\n95,241,5.0\n95,242,4.5\n95,243,4.0\n95,244,3.5\n95,245,3.0\n95,246,3.5\n95,247,4.0\n95,248,4.5\n95,249,5.0\n95,250,13.5\n95,251,13.0\n95,252,12.5\n95,253,12.0\n95,254,11.5\n95,255,11.0\n95,256,10.5\n95,257,10.0\n95,258,9.5\n95,259,9.0\n95,260,8.5\n95,261,8.0\n95,262,7.5\n95,263,7.0\n95,264,6.5\n95,265,6.0\n95,266,5.5\n95,267,5.0\n95,268,4.5\n95,269,4.0\n95,270,3.5\n95,271,4.0\n95,272,4.5\n95,273,5.0\n95,274,5.5\n95,275,14.0\n95,276,13.5\n95,277,13.0\n95,278,12.5\n95,279,12.0\n95,280,11.5\n95,281,11.0\n95,282,10.5\n95,283,10.0\n95,284,9.5\n95,285,9.0\n95,286,8.5\n95,287,8.0\n95,288,7.5\n95,289,7.0\n95,290,6.5\n95,291,6.0\n95,292,5.5\n95,293,5.0\n95,294,4.5\n95,295,4.0\n95,296,4.5\n95,297,5.0\n95,298,5.5\n95,299,6.0\n95,300,14.5\n95,301,14.0\n95,302,13.5\n95,303,13.0\n95,304,12.5\n95,305,12.0\n95,306,11.5\n95,307,11.0\n95,308,10.5\n95,309,10.0\n95,310,9.5\n95,311,9.0\n95,312,8.5\n95,313,8.0\n95,314,7.5\n95,315,7.0\n95,316,6.5\n95,317,6.0\n95,318,5.5\n95,319,5.0\n95,320,4.5\n95,321,5.0\n95,322,5.5\n95,323,6.0\n95,324,6.5\n95,325,15.0\n95,326,14.5\n95,327,14.0\n95,328,13.5\n95,329,13.0\n95,330,12.5\n95,331,12.0\n95,332,11.5\n95,333,11.0\n95,334,10.5\n95,335,10.0\n95,336,9.5\n95,337,9.0\n95,338,8.5\n95,339,8.0\n95,340,7.5\n95,341,7.0\n95,342,6.5\n95,343,6.0\n95,344,5.5\n95,345,5.0\n95,346,5.5\n95,347,6.0\n95,348,6.5\n95,349,7.0\n95,350,15.5\n95,351,15.0\n95,352,14.5\n95,353,14.0\n95,354,13.5\n95,355,13.0\n95,356,12.5\n95,357,12.0\n95,358,11.5\n95,359,11.0\n95,360,10.5\n95,361,10.0\n95,362,9.5\n95,363,9.0\n95,364,8.5\n95,365,8.0\n95,366,7.5\n95,367,7.0\n95,368,6.5\n95,369,6.0\n95,370,5.5\n95,371,6.0\n95,372,6.5\n95,373,7.0\n95,374,7.5\n95,375,16.0\n95,376,15.5\n95,377,15.0\n95,378,14.5\n95,379,14.0\n95,380,13.5\n95,381,13.0\n95,382,12.5\n95,383,12.0\n95,384,11.5\n95,385,11.0\n95,386,10.5\n95,387,10.0\n95,388,9.5\n95,389,9.0\n95,390,8.5\n95,391,8.0\n95,392,7.5\n95,393,7.0\n95,394,6.5\n95,395,6.0\n95,396,6.5\n95,397,7.0\n95,398,7.5\n95,399,8.0\n95,400,16.5\n95,401,16.0\n95,402,15.5\n95,403,15.0\n95,404,14.5\n95,405,14.0\n95,406,13.5\n95,407,13.0\n95,408,12.5\n95,409,12.0\n95,410,11.5\n95,411,11.0\n95,412,10.5\n95,413,10.0\n95,414,9.5\n95,415,9.0\n95,416,8.5\n95,417,8.0\n95,418,7.5\n95,419,7.0\n95,420,6.5\n95,421,7.0\n95,422,7.5\n95,423,8.0\n95,424,8.5\n95,425,17.0\n95,426,16.5\n95,427,16.0\n95,428,15.5\n95,429,15.0\n95,430,14.5\n95,431,14.0\n95,432,13.5\n95,433,13.0\n95,434,12.5\n95,435,12.0\n95,436,11.5\n95,437,11.0\n95,438,10.5\n95,439,10.0\n95,440,9.5\n95,441,9.0\n95,442,8.5\n95,443,8.0\n95,444,7.5\n95,445,7.0\n95,446,7.5\n95,447,8.0\n95,448,8.5\n95,449,9.0\n95,450,17.5\n95,451,17.0\n95,452,16.5\n95,453,16.0\n95,454,15.5\n95,455,15.0\n95,456,14.5\n95,457,14.0\n95,458,13.5\n95,459,13.0\n95,460,12.5\n95,461,12.0\n95,462,11.5\n95,463,11.0\n95,464,10.5\n95,465,10.0\n95,466,9.5\n95,467,9.0\n95,468,8.5\n95,469,8.0\n95,470,7.5\n95,471,8.0\n95,472,8.5\n95,473,9.0\n95,474,9.5\n95,475,18.0\n95,476,17.5\n95,477,17.0\n95,478,16.5\n95,479,16.0\n95,480,15.5\n95,481,15.0\n95,482,14.5\n95,483,14.0\n95,484,13.5\n95,485,13.0\n95,486,12.5\n95,487,12.0\n95,488,11.5\n95,489,11.0\n95,490,10.5\n95,491,10.0\n95,492,9.5\n95,493,9.0\n95,494,8.5\n95,495,8.0\n95,496,8.5\n95,497,9.0\n95,498,9.5\n95,499,10.0\n95,500,18.5\n95,501,18.0\n95,502,17.5\n95,503,17.0\n95,504,16.5\n95,505,16.0\n95,506,15.5\n95,507,15.0\n95,508,14.5\n95,509,14.0\n95,510,13.5\n95,511,13.0\n95,512,12.5\n95,513,12.0\n95,514,11.5\n95,515,11.0\n95,516,10.5\n95,517,10.0\n95,518,9.5\n95,519,9.0\n95,520,8.5\n95,521,9.0\n95,522,9.5\n95,523,10.0\n95,524,10.5\n95,525,19.0\n95,526,18.5\n95,527,18.0\n95,528,17.5\n95,529,17.0\n95,530,16.5\n95,531,16.0\n95,532,15.5\n95,533,15.0\n95,534,14.5\n95,535,14.0\n95,536,13.5\n95,537,13.0\n95,538,12.5\n95,539,12.0\n95,540,11.5\n95,541,11.0\n95,542,10.5\n95,543,10.0\n95,544,9.5\n95,545,9.0\n95,546,9.5\n95,547,10.0\n95,548,10.5\n95,549,11.0\n95,550,19.5\n95,551,19.0\n95,552,18.5\n95,553,18.0\n95,554,17.5\n95,555,17.0\n95,556,16.5\n95,557,16.0\n95,558,15.5\n95,559,15.0\n95,560,14.5\n95,561,14.0\n95,562,13.5\n95,563,13.0\n95,564,12.5\n95,565,12.0\n95,566,11.5\n95,567,11.0\n95,568,10.5\n95,569,10.0\n95,570,9.5\n95,571,10.0\n95,572,10.5\n95,573,11.0\n95,574,11.5\n95,575,20.0\n95,576,19.5\n95,577,19.0\n95,578,18.5\n95,579,18.0\n95,580,17.5\n95,581,17.0\n95,582,16.5\n95,583,16.0\n95,584,15.5\n95,585,15.0\n95,586,14.5\n95,587,14.0\n95,588,13.5\n95,589,13.0\n95,590,12.5\n95,591,12.0\n95,592,11.5\n95,593,11.0\n95,594,10.5\n95,595,10.0\n95,596,10.5\n95,597,11.0\n95,598,11.5\n95,599,12.0\n95,600,20.5\n95,601,20.0\n95,602,19.5\n95,603,19.0\n95,604,18.5\n95,605,18.0\n95,606,17.5\n95,607,17.0\n95,608,16.5\n95,609,16.0\n95,610,15.5\n95,611,15.0\n95,612,14.5\n95,613,14.0\n95,614,13.5\n95,615,13.0\n95,616,12.5\n95,617,12.0\n95,618,11.5\n95,619,11.0\n95,620,10.5\n95,621,11.0\n95,622,11.5\n95,623,12.0\n95,624,12.5\n96,0,12.0\n96,1,11.5\n96,2,11.0\n96,3,10.5\n96,4,10.0\n96,5,9.5\n96,6,9.0\n96,7,8.5\n96,8,8.0\n96,9,7.5\n96,10,7.0\n96,11,6.5\n96,12,6.0\n96,13,5.5\n96,14,5.0\n96,15,4.5\n96,16,4.0\n96,17,3.5\n96,18,3.0\n96,19,2.5\n96,20,2.0\n96,21,1.5\n96,22,2.0\n96,23,2.5\n96,24,3.0\n96,25,11.5\n96,26,11.0\n96,27,10.5\n96,28,10.0\n96,29,9.5\n96,30,9.0\n96,31,8.5\n96,32,8.0\n96,33,7.5\n96,34,7.0\n96,35,6.5\n96,36,6.0\n96,37,5.5\n96,38,5.0\n96,39,4.5\n96,40,4.0\n96,41,3.5\n96,42,3.0\n96,43,2.5\n96,44,2.0\n96,45,1.5\n96,46,1.0\n96,47,1.5\n96,48,2.0\n96,49,2.5\n96,50,11.0\n96,51,10.5\n96,52,10.0\n96,53,9.5\n96,54,9.0\n96,55,8.5\n96,56,8.0\n96,57,7.5\n96,58,7.0\n96,59,6.5\n96,60,6.0\n96,61,5.5\n96,62,5.0\n96,63,4.5\n96,64,4.0\n96,65,3.5\n96,66,3.0\n96,67,2.5\n96,68,2.0\n96,69,1.5\n96,70,1.0\n96,71,0.5\n96,72,1.0\n96,73,1.5\n96,74,2.0\n96,75,10.5\n96,76,10.0\n96,77,9.5\n96,78,9.0\n96,79,8.5\n96,80,8.0\n96,81,7.5\n96,82,7.0\n96,83,6.5\n96,84,6.0\n96,85,5.5\n96,86,5.0\n96,87,4.5\n96,88,4.0\n96,89,3.5\n96,90,3.0\n96,91,2.5\n96,92,2.0\n96,93,1.5\n96,94,1.0\n96,95,0.5\n96,96,0\n96,97,0.5\n96,98,1.0\n96,99,1.5\n96,100,11.0\n96,101,10.5\n96,102,10.0\n96,103,9.5\n96,104,9.0\n96,105,8.5\n96,106,8.0\n96,107,7.5\n96,108,7.0\n96,109,6.5\n96,110,6.0\n96,111,5.5\n96,112,5.0\n96,113,4.5\n96,114,4.0\n96,115,3.5\n96,116,3.0\n96,117,2.5\n96,118,2.0\n96,119,1.5\n96,120,1.0\n96,121,0.5\n96,122,1.0\n96,123,1.5\n96,124,2.0\n96,125,11.5\n96,126,11.0\n96,127,10.5\n96,128,10.0\n96,129,9.5\n96,130,9.0\n96,131,8.5\n96,132,8.0\n96,133,7.5\n96,134,7.0\n96,135,6.5\n96,136,6.0\n96,137,5.5\n96,138,5.0\n96,139,4.5\n96,140,4.0\n96,141,3.5\n96,142,3.0\n96,143,2.5\n96,144,2.0\n96,145,1.5\n96,146,1.0\n96,147,1.5\n96,148,2.0\n96,149,2.5\n96,150,12.0\n96,151,11.5\n96,152,11.0\n96,153,10.5\n96,154,10.0\n96,155,9.5\n96,156,9.0\n96,157,8.5\n96,158,8.0\n96,159,7.5\n96,160,7.0\n96,161,6.5\n96,162,6.0\n96,163,5.5\n96,164,5.0\n96,165,4.5\n96,166,4.0\n96,167,3.5\n96,168,3.0\n96,169,2.5\n96,170,2.0\n96,171,1.5\n96,172,2.0\n96,173,2.5\n96,174,3.0\n96,175,12.5\n96,176,12.0\n96,177,11.5\n96,178,11.0\n96,179,10.5\n96,180,10.0\n96,181,9.5\n96,182,9.0\n96,183,8.5\n96,184,8.0\n96,185,7.5\n96,186,7.0\n96,187,6.5\n96,188,6.0\n96,189,5.5\n96,190,5.0\n96,191,4.5\n96,192,4.0\n96,193,3.5\n96,194,3.0\n96,195,2.5\n96,196,2.0\n96,197,2.5\n96,198,3.0\n96,199,3.5\n96,200,13.0\n96,201,12.5\n96,202,12.0\n96,203,11.5\n96,204,11.0\n96,205,10.5\n96,206,10.0\n96,207,9.5\n96,208,9.0\n96,209,8.5\n96,210,8.0\n96,211,7.5\n96,212,7.0\n96,213,6.5\n96,214,6.0\n96,215,5.5\n96,216,5.0\n96,217,4.5\n96,218,4.0\n96,219,3.5\n96,220,3.0\n96,221,2.5\n96,222,3.0\n96,223,3.5\n96,224,4.0\n96,225,13.5\n96,226,13.0\n96,227,12.5\n96,228,12.0\n96,229,11.5\n96,230,11.0\n96,231,10.5\n96,232,10.0\n96,233,9.5\n96,234,9.0\n96,235,8.5\n96,236,8.0\n96,237,7.5\n96,238,7.0\n96,239,6.5\n96,240,6.0\n96,241,5.5\n96,242,5.0\n96,243,4.5\n96,244,4.0\n96,245,3.5\n96,246,3.0\n96,247,3.5\n96,248,4.0\n96,249,4.5\n96,250,14.0\n96,251,13.5\n96,252,13.0\n96,253,12.5\n96,254,12.0\n96,255,11.5\n96,256,11.0\n96,257,10.5\n96,258,10.0\n96,259,9.5\n96,260,9.0\n96,261,8.5\n96,262,8.0\n96,263,7.5\n96,264,7.0\n96,265,6.5\n96,266,6.0\n96,267,5.5\n96,268,5.0\n96,269,4.5\n96,270,4.0\n96,271,3.5\n96,272,4.0\n96,273,4.5\n96,274,5.0\n96,275,14.5\n96,276,14.0\n96,277,13.5\n96,278,13.0\n96,279,12.5\n96,280,12.0\n96,281,11.5\n96,282,11.0\n96,283,10.5\n96,284,10.0\n96,285,9.5\n96,286,9.0\n96,287,8.5\n96,288,8.0\n96,289,7.5\n96,290,7.0\n96,291,6.5\n96,292,6.0\n96,293,5.5\n96,294,5.0\n96,295,4.5\n96,296,4.0\n96,297,4.5\n96,298,5.0\n96,299,5.5\n96,300,15.0\n96,301,14.5\n96,302,14.0\n96,303,13.5\n96,304,13.0\n96,305,12.5\n96,306,12.0\n96,307,11.5\n96,308,11.0\n96,309,10.5\n96,310,10.0\n96,311,9.5\n96,312,9.0\n96,313,8.5\n96,314,8.0\n96,315,7.5\n96,316,7.0\n96,317,6.5\n96,318,6.0\n96,319,5.5\n96,320,5.0\n96,321,4.5\n96,322,5.0\n96,323,5.5\n96,324,6.0\n96,325,15.5\n96,326,15.0\n96,327,14.5\n96,328,14.0\n96,329,13.5\n96,330,13.0\n96,331,12.5\n96,332,12.0\n96,333,11.5\n96,334,11.0\n96,335,10.5\n96,336,10.0\n96,337,9.5\n96,338,9.0\n96,339,8.5\n96,340,8.0\n96,341,7.5\n96,342,7.0\n96,343,6.5\n96,344,6.0\n96,345,5.5\n96,346,5.0\n96,347,5.5\n96,348,6.0\n96,349,6.5\n96,350,16.0\n96,351,15.5\n96,352,15.0\n96,353,14.5\n96,354,14.0\n96,355,13.5\n96,356,13.0\n96,357,12.5\n96,358,12.0\n96,359,11.5\n96,360,11.0\n96,361,10.5\n96,362,10.0\n96,363,9.5\n96,364,9.0\n96,365,8.5\n96,366,8.0\n96,367,7.5\n96,368,7.0\n96,369,6.5\n96,370,6.0\n96,371,5.5\n96,372,6.0\n96,373,6.5\n96,374,7.0\n96,375,16.5\n96,376,16.0\n96,377,15.5\n96,378,15.0\n96,379,14.5\n96,380,14.0\n96,381,13.5\n96,382,13.0\n96,383,12.5\n96,384,12.0\n96,385,11.5\n96,386,11.0\n96,387,10.5\n96,388,10.0\n96,389,9.5\n96,390,9.0\n96,391,8.5\n96,392,8.0\n96,393,7.5\n96,394,7.0\n96,395,6.5\n96,396,6.0\n96,397,6.5\n96,398,7.0\n96,399,7.5\n96,400,17.0\n96,401,16.5\n96,402,16.0\n96,403,15.5\n96,404,15.0\n96,405,14.5\n96,406,14.0\n96,407,13.5\n96,408,13.0\n96,409,12.5\n96,410,12.0\n96,411,11.5\n96,412,11.0\n96,413,10.5\n96,414,10.0\n96,415,9.5\n96,416,9.0\n96,417,8.5\n96,418,8.0\n96,419,7.5\n96,420,7.0\n96,421,6.5\n96,422,7.0\n96,423,7.5\n96,424,8.0\n96,425,17.5\n96,426,17.0\n96,427,16.5\n96,428,16.0\n96,429,15.5\n96,430,15.0\n96,431,14.5\n96,432,14.0\n96,433,13.5\n96,434,13.0\n96,435,12.5\n96,436,12.0\n96,437,11.5\n96,438,11.0\n96,439,10.5\n96,440,10.0\n96,441,9.5\n96,442,9.0\n96,443,8.5\n96,444,8.0\n96,445,7.5\n96,446,7.0\n96,447,7.5\n96,448,8.0\n96,449,8.5\n96,450,18.0\n96,451,17.5\n96,452,17.0\n96,453,16.5\n96,454,16.0\n96,455,15.5\n96,456,15.0\n96,457,14.5\n96,458,14.0\n96,459,13.5\n96,460,13.0\n96,461,12.5\n96,462,12.0\n96,463,11.5\n96,464,11.0\n96,465,10.5\n96,466,10.0\n96,467,9.5\n96,468,9.0\n96,469,8.5\n96,470,8.0\n96,471,7.5\n96,472,8.0\n96,473,8.5\n96,474,9.0\n96,475,18.5\n96,476,18.0\n96,477,17.5\n96,478,17.0\n96,479,16.5\n96,480,16.0\n96,481,15.5\n96,482,15.0\n96,483,14.5\n96,484,14.0\n96,485,13.5\n96,486,13.0\n96,487,12.5\n96,488,12.0\n96,489,11.5\n96,490,11.0\n96,491,10.5\n96,492,10.0\n96,493,9.5\n96,494,9.0\n96,495,8.5\n96,496,8.0\n96,497,8.5\n96,498,9.0\n96,499,9.5\n96,500,19.0\n96,501,18.5\n96,502,18.0\n96,503,17.5\n96,504,17.0\n96,505,16.5\n96,506,16.0\n96,507,15.5\n96,508,15.0\n96,509,14.5\n96,510,14.0\n96,511,13.5\n96,512,13.0\n96,513,12.5\n96,514,12.0\n96,515,11.5\n96,516,11.0\n96,517,10.5\n96,518,10.0\n96,519,9.5\n96,520,9.0\n96,521,8.5\n96,522,9.0\n96,523,9.5\n96,524,10.0\n96,525,19.5\n96,526,19.0\n96,527,18.5\n96,528,18.0\n96,529,17.5\n96,530,17.0\n96,531,16.5\n96,532,16.0\n96,533,15.5\n96,534,15.0\n96,535,14.5\n96,536,14.0\n96,537,13.5\n96,538,13.0\n96,539,12.5\n96,540,12.0\n96,541,11.5\n96,542,11.0\n96,543,10.5\n96,544,10.0\n96,545,9.5\n96,546,9.0\n96,547,9.5\n96,548,10.0\n96,549,10.5\n96,550,20.0\n96,551,19.5\n96,552,19.0\n96,553,18.5\n96,554,18.0\n96,555,17.5\n96,556,17.0\n96,557,16.5\n96,558,16.0\n96,559,15.5\n96,560,15.0\n96,561,14.5\n96,562,14.0\n96,563,13.5\n96,564,13.0\n96,565,12.5\n96,566,12.0\n96,567,11.5\n96,568,11.0\n96,569,10.5\n96,570,10.0\n96,571,9.5\n96,572,10.0\n96,573,10.5\n96,574,11.0\n96,575,20.5\n96,576,20.0\n96,577,19.5\n96,578,19.0\n96,579,18.5\n96,580,18.0\n96,581,17.5\n96,582,17.0\n96,583,16.5\n96,584,16.0\n96,585,15.5\n96,586,15.0\n96,587,14.5\n96,588,14.0\n96,589,13.5\n96,590,13.0\n96,591,12.5\n96,592,12.0\n96,593,11.5\n96,594,11.0\n96,595,10.5\n96,596,10.0\n96,597,10.5\n96,598,11.0\n96,599,11.5\n96,600,21.0\n96,601,20.5\n96,602,20.0\n96,603,19.5\n96,604,19.0\n96,605,18.5\n96,606,18.0\n96,607,17.5\n96,608,17.0\n96,609,16.5\n96,610,16.0\n96,611,15.5\n96,612,15.0\n96,613,14.5\n96,614,14.0\n96,615,13.5\n96,616,13.0\n96,617,12.5\n96,618,12.0\n96,619,11.5\n96,620,11.0\n96,621,10.5\n96,622,11.0\n96,623,11.5\n96,624,12.0\n97,0,12.5\n97,1,12.0\n97,2,11.5\n97,3,11.0\n97,4,10.5\n97,5,10.0\n97,6,9.5\n97,7,9.0\n97,8,8.5\n97,9,8.0\n97,10,7.5\n97,11,7.0\n97,12,6.5\n97,13,6.0\n97,14,5.5\n97,15,5.0\n97,16,4.5\n97,17,4.0\n97,18,3.5\n97,19,3.0\n97,20,2.5\n97,21,2.0\n97,22,1.5\n97,23,2.0\n97,24,2.5\n97,25,12.0\n97,26,11.5\n97,27,11.0\n97,28,10.5\n97,29,10.0\n97,30,9.5\n97,31,9.0\n97,32,8.5\n97,33,8.0\n97,34,7.5\n97,35,7.0\n97,36,6.5\n97,37,6.0\n97,38,5.5\n97,39,5.0\n97,40,4.5\n97,41,4.0\n97,42,3.5\n97,43,3.0\n97,44,2.5\n97,45,2.0\n97,46,1.5\n97,47,1.0\n97,48,1.5\n97,49,2.0\n97,50,11.5\n97,51,11.0\n97,52,10.5\n97,53,10.0\n97,54,9.5\n97,55,9.0\n97,56,8.5\n97,57,8.0\n97,58,7.5\n97,59,7.0\n97,60,6.5\n97,61,6.0\n97,62,5.5\n97,63,5.0\n97,64,4.5\n97,65,4.0\n97,66,3.5\n97,67,3.0\n97,68,2.5\n97,69,2.0\n97,70,1.5\n97,71,1.0\n97,72,0.5\n97,73,1.0\n97,74,1.5\n97,75,11.0\n97,76,10.5\n97,77,10.0\n97,78,9.5\n97,79,9.0\n97,80,8.5\n97,81,8.0\n97,82,7.5\n97,83,7.0\n97,84,6.5\n97,85,6.0\n97,86,5.5\n97,87,5.0\n97,88,4.5\n97,89,4.0\n97,90,3.5\n97,91,3.0\n97,92,2.5\n97,93,2.0\n97,94,1.5\n97,95,1.0\n97,96,0.5\n97,97,0\n97,98,0.5\n97,99,1.0\n97,100,11.5\n97,101,11.0\n97,102,10.5\n97,103,10.0\n97,104,9.5\n97,105,9.0\n97,106,8.5\n97,107,8.0\n97,108,7.5\n97,109,7.0\n97,110,6.5\n97,111,6.0\n97,112,5.5\n97,113,5.0\n97,114,4.5\n97,115,4.0\n97,116,3.5\n97,117,3.0\n97,118,2.5\n97,119,2.0\n97,120,1.5\n97,121,1.0\n97,122,0.5\n97,123,1.0\n97,124,1.5\n97,125,12.0\n97,126,11.5\n97,127,11.0\n97,128,10.5\n97,129,10.0\n97,130,9.5\n97,131,9.0\n97,132,8.5\n97,133,8.0\n97,134,7.5\n97,135,7.0\n97,136,6.5\n97,137,6.0\n97,138,5.5\n97,139,5.0\n97,140,4.5\n97,141,4.0\n97,142,3.5\n97,143,3.0\n97,144,2.5\n97,145,2.0\n97,146,1.5\n97,147,1.0\n97,148,1.5\n97,149,2.0\n97,150,12.5\n97,151,12.0\n97,152,11.5\n97,153,11.0\n97,154,10.5\n97,155,10.0\n97,156,9.5\n97,157,9.0\n97,158,8.5\n97,159,8.0\n97,160,7.5\n97,161,7.0\n97,162,6.5\n97,163,6.0\n97,164,5.5\n97,165,5.0\n97,166,4.5\n97,167,4.0\n97,168,3.5\n97,169,3.0\n97,170,2.5\n97,171,2.0\n97,172,1.5\n97,173,2.0\n97,174,2.5\n97,175,13.0\n97,176,12.5\n97,177,12.0\n97,178,11.5\n97,179,11.0\n97,180,10.5\n97,181,10.0\n97,182,9.5\n97,183,9.0\n97,184,8.5\n97,185,8.0\n97,186,7.5\n97,187,7.0\n97,188,6.5\n97,189,6.0\n97,190,5.5\n97,191,5.0\n97,192,4.5\n97,193,4.0\n97,194,3.5\n97,195,3.0\n97,196,2.5\n97,197,2.0\n97,198,2.5\n97,199,3.0\n97,200,13.5\n97,201,13.0\n97,202,12.5\n97,203,12.0\n97,204,11.5\n97,205,11.0\n97,206,10.5\n97,207,10.0\n97,208,9.5\n97,209,9.0\n97,210,8.5\n97,211,8.0\n97,212,7.5\n97,213,7.0\n97,214,6.5\n97,215,6.0\n97,216,5.5\n97,217,5.0\n97,218,4.5\n97,219,4.0\n97,220,3.5\n97,221,3.0\n97,222,2.5\n97,223,3.0\n97,224,3.5\n97,225,14.0\n97,226,13.5\n97,227,13.0\n97,228,12.5\n97,229,12.0\n97,230,11.5\n97,231,11.0\n97,232,10.5\n97,233,10.0\n97,234,9.5\n97,235,9.0\n97,236,8.5\n97,237,8.0\n97,238,7.5\n97,239,7.0\n97,240,6.5\n97,241,6.0\n97,242,5.5\n97,243,5.0\n97,244,4.5\n97,245,4.0\n97,246,3.5\n97,247,3.0\n97,248,3.5\n97,249,4.0\n97,250,14.5\n97,251,14.0\n97,252,13.5\n97,253,13.0\n97,254,12.5\n97,255,12.0\n97,256,11.5\n97,257,11.0\n97,258,10.5\n97,259,10.0\n97,260,9.5\n97,261,9.0\n97,262,8.5\n97,263,8.0\n97,264,7.5\n97,265,7.0\n97,266,6.5\n97,267,6.0\n97,268,5.5\n97,269,5.0\n97,270,4.5\n97,271,4.0\n97,272,3.5\n97,273,4.0\n97,274,4.5\n97,275,15.0\n97,276,14.5\n97,277,14.0\n97,278,13.5\n97,279,13.0\n97,280,12.5\n97,281,12.0\n97,282,11.5\n97,283,11.0\n97,284,10.5\n97,285,10.0\n97,286,9.5\n97,287,9.0\n97,288,8.5\n97,289,8.0\n97,290,7.5\n97,291,7.0\n97,292,6.5\n97,293,6.0\n97,294,5.5\n97,295,5.0\n97,296,4.5\n97,297,4.0\n97,298,4.5\n97,299,5.0\n97,300,15.5\n97,301,15.0\n97,302,14.5\n97,303,14.0\n97,304,13.5\n97,305,13.0\n97,306,12.5\n97,307,12.0\n97,308,11.5\n97,309,11.0\n97,310,10.5\n97,311,10.0\n97,312,9.5\n97,313,9.0\n97,314,8.5\n97,315,8.0\n97,316,7.5\n97,317,7.0\n97,318,6.5\n97,319,6.0\n97,320,5.5\n97,321,5.0\n97,322,4.5\n97,323,5.0\n97,324,5.5\n97,325,16.0\n97,326,15.5\n97,327,15.0\n97,328,14.5\n97,329,14.0\n97,330,13.5\n97,331,13.0\n97,332,12.5\n97,333,12.0\n97,334,11.5\n97,335,11.0\n97,336,10.5\n97,337,10.0\n97,338,9.5\n97,339,9.0\n97,340,8.5\n97,341,8.0\n97,342,7.5\n97,343,7.0\n97,344,6.5\n97,345,6.0\n97,346,5.5\n97,347,5.0\n97,348,5.5\n97,349,6.0\n97,350,16.5\n97,351,16.0\n97,352,15.5\n97,353,15.0\n97,354,14.5\n97,355,14.0\n97,356,13.5\n97,357,13.0\n97,358,12.5\n97,359,12.0\n97,360,11.5\n97,361,11.0\n97,362,10.5\n97,363,10.0\n97,364,9.5\n97,365,9.0\n97,366,8.5\n97,367,8.0\n97,368,7.5\n97,369,7.0\n97,370,6.5\n97,371,6.0\n97,372,5.5\n97,373,6.0\n97,374,6.5\n97,375,17.0\n97,376,16.5\n97,377,16.0\n97,378,15.5\n97,379,15.0\n97,380,14.5\n97,381,14.0\n97,382,13.5\n97,383,13.0\n97,384,12.5\n97,385,12.0\n97,386,11.5\n97,387,11.0\n97,388,10.5\n97,389,10.0\n97,390,9.5\n97,391,9.0\n97,392,8.5\n97,393,8.0\n97,394,7.5\n97,395,7.0\n97,396,6.5\n97,397,6.0\n97,398,6.5\n97,399,7.0\n97,400,17.5\n97,401,17.0\n97,402,16.5\n97,403,16.0\n97,404,15.5\n97,405,15.0\n97,406,14.5\n97,407,14.0\n97,408,13.5\n97,409,13.0\n97,410,12.5\n97,411,12.0\n97,412,11.5\n97,413,11.0\n97,414,10.5\n97,415,10.0\n97,416,9.5\n97,417,9.0\n97,418,8.5\n97,419,8.0\n97,420,7.5\n97,421,7.0\n97,422,6.5\n97,423,7.0\n97,424,7.5\n97,425,18.0\n97,426,17.5\n97,427,17.0\n97,428,16.5\n97,429,16.0\n97,430,15.5\n97,431,15.0\n97,432,14.5\n97,433,14.0\n97,434,13.5\n97,435,13.0\n97,436,12.5\n97,437,12.0\n97,438,11.5\n97,439,11.0\n97,440,10.5\n97,441,10.0\n97,442,9.5\n97,443,9.0\n97,444,8.5\n97,445,8.0\n97,446,7.5\n97,447,7.0\n97,448,7.5\n97,449,8.0\n97,450,18.5\n97,451,18.0\n97,452,17.5\n97,453,17.0\n97,454,16.5\n97,455,16.0\n97,456,15.5\n97,457,15.0\n97,458,14.5\n97,459,14.0\n97,460,13.5\n97,461,13.0\n97,462,12.5\n97,463,12.0\n97,464,11.5\n97,465,11.0\n97,466,10.5\n97,467,10.0\n97,468,9.5\n97,469,9.0\n97,470,8.5\n97,471,8.0\n97,472,7.5\n97,473,8.0\n97,474,8.5\n97,475,19.0\n97,476,18.5\n97,477,18.0\n97,478,17.5\n97,479,17.0\n97,480,16.5\n97,481,16.0\n97,482,15.5\n97,483,15.0\n97,484,14.5\n97,485,14.0\n97,486,13.5\n97,487,13.0\n97,488,12.5\n97,489,12.0\n97,490,11.5\n97,491,11.0\n97,492,10.5\n97,493,10.0\n97,494,9.5\n97,495,9.0\n97,496,8.5\n97,497,8.0\n97,498,8.5\n97,499,9.0\n97,500,19.5\n97,501,19.0\n97,502,18.5\n97,503,18.0\n97,504,17.5\n97,505,17.0\n97,506,16.5\n97,507,16.0\n97,508,15.5\n97,509,15.0\n97,510,14.5\n97,511,14.0\n97,512,13.5\n97,513,13.0\n97,514,12.5\n97,515,12.0\n97,516,11.5\n97,517,11.0\n97,518,10.5\n97,519,10.0\n97,520,9.5\n97,521,9.0\n97,522,8.5\n97,523,9.0\n97,524,9.5\n97,525,20.0\n97,526,19.5\n97,527,19.0\n97,528,18.5\n97,529,18.0\n97,530,17.5\n97,531,17.0\n97,532,16.5\n97,533,16.0\n97,534,15.5\n97,535,15.0\n97,536,14.5\n97,537,14.0\n97,538,13.5\n97,539,13.0\n97,540,12.5\n97,541,12.0\n97,542,11.5\n97,543,11.0\n97,544,10.5\n97,545,10.0\n97,546,9.5\n97,547,9.0\n97,548,9.5\n97,549,10.0\n97,550,20.5\n97,551,20.0\n97,552,19.5\n97,553,19.0\n97,554,18.5\n97,555,18.0\n97,556,17.5\n97,557,17.0\n97,558,16.5\n97,559,16.0\n97,560,15.5\n97,561,15.0\n97,562,14.5\n97,563,14.0\n97,564,13.5\n97,565,13.0\n97,566,12.5\n97,567,12.0\n97,568,11.5\n97,569,11.0\n97,570,10.5\n97,571,10.0\n97,572,9.5\n97,573,10.0\n97,574,10.5\n97,575,21.0\n97,576,20.5\n97,577,20.0\n97,578,19.5\n97,579,19.0\n97,580,18.5\n97,581,18.0\n97,582,17.5\n97,583,17.0\n97,584,16.5\n97,585,16.0\n97,586,15.5\n97,587,15.0\n97,588,14.5\n97,589,14.0\n97,590,13.5\n97,591,13.0\n97,592,12.5\n97,593,12.0\n97,594,11.5\n97,595,11.0\n97,596,10.5\n97,597,10.0\n97,598,10.5\n97,599,11.0\n97,600,21.5\n97,601,21.0\n97,602,20.5\n97,603,20.0\n97,604,19.5\n97,605,19.0\n97,606,18.5\n97,607,18.0\n97,608,17.5\n97,609,17.0\n97,610,16.5\n97,611,16.0\n97,612,15.5\n97,613,15.0\n97,614,14.5\n97,615,14.0\n97,616,13.5\n97,617,13.0\n97,618,12.5\n97,619,12.0\n97,620,11.5\n97,621,11.0\n97,622,10.5\n97,623,11.0\n97,624,11.5\n98,0,13.0\n98,1,12.5\n98,2,12.0\n98,3,11.5\n98,4,11.0\n98,5,10.5\n98,6,10.0\n98,7,9.5\n98,8,9.0\n98,9,8.5\n98,10,8.0\n98,11,7.5\n98,12,7.0\n98,13,6.5\n98,14,6.0\n98,15,5.5\n98,16,5.0\n98,17,4.5\n98,18,4.0\n98,19,3.5\n98,20,3.0\n98,21,2.5\n98,22,2.0\n98,23,1.5\n98,24,2.0\n98,25,12.5\n98,26,12.0\n98,27,11.5\n98,28,11.0\n98,29,10.5\n98,30,10.0\n98,31,9.5\n98,32,9.0\n98,33,8.5\n98,34,8.0\n98,35,7.5\n98,36,7.0\n98,37,6.5\n98,38,6.0\n98,39,5.5\n98,40,5.0\n98,41,4.5\n98,42,4.0\n98,43,3.5\n98,44,3.0\n98,45,2.5\n98,46,2.0\n98,47,1.5\n98,48,1.0\n98,49,1.5\n98,50,12.0\n98,51,11.5\n98,52,11.0\n98,53,10.5\n98,54,10.0\n98,55,9.5\n98,56,9.0\n98,57,8.5\n98,58,8.0\n98,59,7.5\n98,60,7.0\n98,61,6.5\n98,62,6.0\n98,63,5.5\n98,64,5.0\n98,65,4.5\n98,66,4.0\n98,67,3.5\n98,68,3.0\n98,69,2.5\n98,70,2.0\n98,71,1.5\n98,72,1.0\n98,73,0.5\n98,74,1.0\n98,75,11.5\n98,76,11.0\n98,77,10.5\n98,78,10.0\n98,79,9.5\n98,80,9.0\n98,81,8.5\n98,82,8.0\n98,83,7.5\n98,84,7.0\n98,85,6.5\n98,86,6.0\n98,87,5.5\n98,88,5.0\n98,89,4.5\n98,90,4.0\n98,91,3.5\n98,92,3.0\n98,93,2.5\n98,94,2.0\n98,95,1.5\n98,96,1.0\n98,97,0.5\n98,98,0\n98,99,0.5\n98,100,12.0\n98,101,11.5\n98,102,11.0\n98,103,10.5\n98,104,10.0\n98,105,9.5\n98,106,9.0\n98,107,8.5\n98,108,8.0\n98,109,7.5\n98,110,7.0\n98,111,6.5\n98,112,6.0\n98,113,5.5\n98,114,5.0\n98,115,4.5\n98,116,4.0\n98,117,3.5\n98,118,3.0\n98,119,2.5\n98,120,2.0\n98,121,1.5\n98,122,1.0\n98,123,0.5\n98,124,1.0\n98,125,12.5\n98,126,12.0\n98,127,11.5\n98,128,11.0\n98,129,10.5\n98,130,10.0\n98,131,9.5\n98,132,9.0\n98,133,8.5\n98,134,8.0\n98,135,7.5\n98,136,7.0\n98,137,6.5\n98,138,6.0\n98,139,5.5\n98,140,5.0\n98,141,4.5\n98,142,4.0\n98,143,3.5\n98,144,3.0\n98,145,2.5\n98,146,2.0\n98,147,1.5\n98,148,1.0\n98,149,1.5\n98,150,13.0\n98,151,12.5\n98,152,12.0\n98,153,11.5\n98,154,11.0\n98,155,10.5\n98,156,10.0\n98,157,9.5\n98,158,9.0\n98,159,8.5\n98,160,8.0\n98,161,7.5\n98,162,7.0\n98,163,6.5\n98,164,6.0\n98,165,5.5\n98,166,5.0\n98,167,4.5\n98,168,4.0\n98,169,3.5\n98,170,3.0\n98,171,2.5\n98,172,2.0\n98,173,1.5\n98,174,2.0\n98,175,13.5\n98,176,13.0\n98,177,12.5\n98,178,12.0\n98,179,11.5\n98,180,11.0\n98,181,10.5\n98,182,10.0\n98,183,9.5\n98,184,9.0\n98,185,8.5\n98,186,8.0\n98,187,7.5\n98,188,7.0\n98,189,6.5\n98,190,6.0\n98,191,5.5\n98,192,5.0\n98,193,4.5\n98,194,4.0\n98,195,3.5\n98,196,3.0\n98,197,2.5\n98,198,2.0\n98,199,2.5\n98,200,14.0\n98,201,13.5\n98,202,13.0\n98,203,12.5\n98,204,12.0\n98,205,11.5\n98,206,11.0\n98,207,10.5\n98,208,10.0\n98,209,9.5\n98,210,9.0\n98,211,8.5\n98,212,8.0\n98,213,7.5\n98,214,7.0\n98,215,6.5\n98,216,6.0\n98,217,5.5\n98,218,5.0\n98,219,4.5\n98,220,4.0\n98,221,3.5\n98,222,3.0\n98,223,2.5\n98,224,3.0\n98,225,14.5\n98,226,14.0\n98,227,13.5\n98,228,13.0\n98,229,12.5\n98,230,12.0\n98,231,11.5\n98,232,11.0\n98,233,10.5\n98,234,10.0\n98,235,9.5\n98,236,9.0\n98,237,8.5\n98,238,8.0\n98,239,7.5\n98,240,7.0\n98,241,6.5\n98,242,6.0\n98,243,5.5\n98,244,5.0\n98,245,4.5\n98,246,4.0\n98,247,3.5\n98,248,3.0\n98,249,3.5\n98,250,15.0\n98,251,14.5\n98,252,14.0\n98,253,13.5\n98,254,13.0\n98,255,12.5\n98,256,12.0\n98,257,11.5\n98,258,11.0\n98,259,10.5\n98,260,10.0\n98,261,9.5\n98,262,9.0\n98,263,8.5\n98,264,8.0\n98,265,7.5\n98,266,7.0\n98,267,6.5\n98,268,6.0\n98,269,5.5\n98,270,5.0\n98,271,4.5\n98,272,4.0\n98,273,3.5\n98,274,4.0\n98,275,15.5\n98,276,15.0\n98,277,14.5\n98,278,14.0\n98,279,13.5\n98,280,13.0\n98,281,12.5\n98,282,12.0\n98,283,11.5\n98,284,11.0\n98,285,10.5\n98,286,10.0\n98,287,9.5\n98,288,9.0\n98,289,8.5\n98,290,8.0\n98,291,7.5\n98,292,7.0\n98,293,6.5\n98,294,6.0\n98,295,5.5\n98,296,5.0\n98,297,4.5\n98,298,4.0\n98,299,4.5\n98,300,16.0\n98,301,15.5\n98,302,15.0\n98,303,14.5\n98,304,14.0\n98,305,13.5\n98,306,13.0\n98,307,12.5\n98,308,12.0\n98,309,11.5\n98,310,11.0\n98,311,10.5\n98,312,10.0\n98,313,9.5\n98,314,9.0\n98,315,8.5\n98,316,8.0\n98,317,7.5\n98,318,7.0\n98,319,6.5\n98,320,6.0\n98,321,5.5\n98,322,5.0\n98,323,4.5\n98,324,5.0\n98,325,16.5\n98,326,16.0\n98,327,15.5\n98,328,15.0\n98,329,14.5\n98,330,14.0\n98,331,13.5\n98,332,13.0\n98,333,12.5\n98,334,12.0\n98,335,11.5\n98,336,11.0\n98,337,10.5\n98,338,10.0\n98,339,9.5\n98,340,9.0\n98,341,8.5\n98,342,8.0\n98,343,7.5\n98,344,7.0\n98,345,6.5\n98,346,6.0\n98,347,5.5\n98,348,5.0\n98,349,5.5\n98,350,17.0\n98,351,16.5\n98,352,16.0\n98,353,15.5\n98,354,15.0\n98,355,14.5\n98,356,14.0\n98,357,13.5\n98,358,13.0\n98,359,12.5\n98,360,12.0\n98,361,11.5\n98,362,11.0\n98,363,10.5\n98,364,10.0\n98,365,9.5\n98,366,9.0\n98,367,8.5\n98,368,8.0\n98,369,7.5\n98,370,7.0\n98,371,6.5\n98,372,6.0\n98,373,5.5\n98,374,6.0\n98,375,17.5\n98,376,17.0\n98,377,16.5\n98,378,16.0\n98,379,15.5\n98,380,15.0\n98,381,14.5\n98,382,14.0\n98,383,13.5\n98,384,13.0\n98,385,12.5\n98,386,12.0\n98,387,11.5\n98,388,11.0\n98,389,10.5\n98,390,10.0\n98,391,9.5\n98,392,9.0\n98,393,8.5\n98,394,8.0\n98,395,7.5\n98,396,7.0\n98,397,6.5\n98,398,6.0\n98,399,6.5\n98,400,18.0\n98,401,17.5\n98,402,17.0\n98,403,16.5\n98,404,16.0\n98,405,15.5\n98,406,15.0\n98,407,14.5\n98,408,14.0\n98,409,13.5\n98,410,13.0\n98,411,12.5\n98,412,12.0\n98,413,11.5\n98,414,11.0\n98,415,10.5\n98,416,10.0\n98,417,9.5\n98,418,9.0\n98,419,8.5\n98,420,8.0\n98,421,7.5\n98,422,7.0\n98,423,6.5\n98,424,7.0\n98,425,18.5\n98,426,18.0\n98,427,17.5\n98,428,17.0\n98,429,16.5\n98,430,16.0\n98,431,15.5\n98,432,15.0\n98,433,14.5\n98,434,14.0\n98,435,13.5\n98,436,13.0\n98,437,12.5\n98,438,12.0\n98,439,11.5\n98,440,11.0\n98,441,10.5\n98,442,10.0\n98,443,9.5\n98,444,9.0\n98,445,8.5\n98,446,8.0\n98,447,7.5\n98,448,7.0\n98,449,7.5\n98,450,19.0\n98,451,18.5\n98,452,18.0\n98,453,17.5\n98,454,17.0\n98,455,16.5\n98,456,16.0\n98,457,15.5\n98,458,15.0\n98,459,14.5\n98,460,14.0\n98,461,13.5\n98,462,13.0\n98,463,12.5\n98,464,12.0\n98,465,11.5\n98,466,11.0\n98,467,10.5\n98,468,10.0\n98,469,9.5\n98,470,9.0\n98,471,8.5\n98,472,8.0\n98,473,7.5\n98,474,8.0\n98,475,19.5\n98,476,19.0\n98,477,18.5\n98,478,18.0\n98,479,17.5\n98,480,17.0\n98,481,16.5\n98,482,16.0\n98,483,15.5\n98,484,15.0\n98,485,14.5\n98,486,14.0\n98,487,13.5\n98,488,13.0\n98,489,12.5\n98,490,12.0\n98,491,11.5\n98,492,11.0\n98,493,10.5\n98,494,10.0\n98,495,9.5\n98,496,9.0\n98,497,8.5\n98,498,8.0\n98,499,8.5\n98,500,20.0\n98,501,19.5\n98,502,19.0\n98,503,18.5\n98,504,18.0\n98,505,17.5\n98,506,17.0\n98,507,16.5\n98,508,16.0\n98,509,15.5\n98,510,15.0\n98,511,14.5\n98,512,14.0\n98,513,13.5\n98,514,13.0\n98,515,12.5\n98,516,12.0\n98,517,11.5\n98,518,11.0\n98,519,10.5\n98,520,10.0\n98,521,9.5\n98,522,9.0\n98,523,8.5\n98,524,9.0\n98,525,20.5\n98,526,20.0\n98,527,19.5\n98,528,19.0\n98,529,18.5\n98,530,18.0\n98,531,17.5\n98,532,17.0\n98,533,16.5\n98,534,16.0\n98,535,15.5\n98,536,15.0\n98,537,14.5\n98,538,14.0\n98,539,13.5\n98,540,13.0\n98,541,12.5\n98,542,12.0\n98,543,11.5\n98,544,11.0\n98,545,10.5\n98,546,10.0\n98,547,9.5\n98,548,9.0\n98,549,9.5\n98,550,21.0\n98,551,20.5\n98,552,20.0\n98,553,19.5\n98,554,19.0\n98,555,18.5\n98,556,18.0\n98,557,17.5\n98,558,17.0\n98,559,16.5\n98,560,16.0\n98,561,15.5\n98,562,15.0\n98,563,14.5\n98,564,14.0\n98,565,13.5\n98,566,13.0\n98,567,12.5\n98,568,12.0\n98,569,11.5\n98,570,11.0\n98,571,10.5\n98,572,10.0\n98,573,9.5\n98,574,10.0\n98,575,21.5\n98,576,21.0\n98,577,20.5\n98,578,20.0\n98,579,19.5\n98,580,19.0\n98,581,18.5\n98,582,18.0\n98,583,17.5\n98,584,17.0\n98,585,16.5\n98,586,16.0\n98,587,15.5\n98,588,15.0\n98,589,14.5\n98,590,14.0\n98,591,13.5\n98,592,13.0\n98,593,12.5\n98,594,12.0\n98,595,11.5\n98,596,11.0\n98,597,10.5\n98,598,10.0\n98,599,10.5\n98,600,22.0\n98,601,21.5\n98,602,21.0\n98,603,20.5\n98,604,20.0\n98,605,19.5\n98,606,19.0\n98,607,18.5\n98,608,18.0\n98,609,17.5\n98,610,17.0\n98,611,16.5\n98,612,16.0\n98,613,15.5\n98,614,15.0\n98,615,14.5\n98,616,14.0\n98,617,13.5\n98,618,13.0\n98,619,12.5\n98,620,12.0\n98,621,11.5\n98,622,11.0\n98,623,10.5\n98,624,11.0\n99,0,13.5\n99,1,13.0\n99,2,12.5\n99,3,12.0\n99,4,11.5\n99,5,11.0\n99,6,10.5\n99,7,10.0\n99,8,9.5\n99,9,9.0\n99,10,8.5\n99,11,8.0\n99,12,7.5\n99,13,7.0\n99,14,6.5\n99,15,6.0\n99,16,5.5\n99,17,5.0\n99,18,4.5\n99,19,4.0\n99,20,3.5\n99,21,3.0\n99,22,2.5\n99,23,2.0\n99,24,1.5\n99,25,13.0\n99,26,12.5\n99,27,12.0\n99,28,11.5\n99,29,11.0\n99,30,10.5\n99,31,10.0\n99,32,9.5\n99,33,9.0\n99,34,8.5\n99,35,8.0\n99,36,7.5\n99,37,7.0\n99,38,6.5\n99,39,6.0\n99,40,5.5\n99,41,5.0\n99,42,4.5\n99,43,4.0\n99,44,3.5\n99,45,3.0\n99,46,2.5\n99,47,2.0\n99,48,1.5\n99,49,1.0\n99,50,12.5\n99,51,12.0\n99,52,11.5\n99,53,11.0\n99,54,10.5\n99,55,10.0\n99,56,9.5\n99,57,9.0\n99,58,8.5\n99,59,8.0\n99,60,7.5\n99,61,7.0\n99,62,6.5\n99,63,6.0\n99,64,5.5\n99,65,5.0\n99,66,4.5\n99,67,4.0\n99,68,3.5\n99,69,3.0\n99,70,2.5\n99,71,2.0\n99,72,1.5\n99,73,1.0\n99,74,0.5\n99,75,12.0\n99,76,11.5\n99,77,11.0\n99,78,10.5\n99,79,10.0\n99,80,9.5\n99,81,9.0\n99,82,8.5\n99,83,8.0\n99,84,7.5\n99,85,7.0\n99,86,6.5\n99,87,6.0\n99,88,5.5\n99,89,5.0\n99,90,4.5\n99,91,4.0\n99,92,3.5\n99,93,3.0\n99,94,2.5\n99,95,2.0\n99,96,1.5\n99,97,1.0\n99,98,0.5\n99,99,0\n99,100,12.5\n99,101,12.0\n99,102,11.5\n99,103,11.0\n99,104,10.5\n99,105,10.0\n99,106,9.5\n99,107,9.0\n99,108,8.5\n99,109,8.0\n99,110,7.5\n99,111,7.0\n99,112,6.5\n99,113,6.0\n99,114,5.5\n99,115,5.0\n99,116,4.5\n99,117,4.0\n99,118,3.5\n99,119,3.0\n99,120,2.5\n99,121,2.0\n99,122,1.5\n99,123,1.0\n99,124,0.5\n99,125,13.0\n99,126,12.5\n99,127,12.0\n99,128,11.5\n99,129,11.0\n99,130,10.5\n99,131,10.0\n99,132,9.5\n99,133,9.0\n99,134,8.5\n99,135,8.0\n99,136,7.5\n99,137,7.0\n99,138,6.5\n99,139,6.0\n99,140,5.5\n99,141,5.0\n99,142,4.5\n99,143,4.0\n99,144,3.5\n99,145,3.0\n99,146,2.5\n99,147,2.0\n99,148,1.5\n99,149,1.0\n99,150,13.5\n99,151,13.0\n99,152,12.5\n99,153,12.0\n99,154,11.5\n99,155,11.0\n99,156,10.5\n99,157,10.0\n99,158,9.5\n99,159,9.0\n99,160,8.5\n99,161,8.0\n99,162,7.5\n99,163,7.0\n99,164,6.5\n99,165,6.0\n99,166,5.5\n99,167,5.0\n99,168,4.5\n99,169,4.0\n99,170,3.5\n99,171,3.0\n99,172,2.5\n99,173,2.0\n99,174,1.5\n99,175,14.0\n99,176,13.5\n99,177,13.0\n99,178,12.5\n99,179,12.0\n99,180,11.5\n99,181,11.0\n99,182,10.5\n99,183,10.0\n99,184,9.5\n99,185,9.0\n99,186,8.5\n99,187,8.0\n99,188,7.5\n99,189,7.0\n99,190,6.5\n99,191,6.0\n99,192,5.5\n99,193,5.0\n99,194,4.5\n99,195,4.0\n99,196,3.5\n99,197,3.0\n99,198,2.5\n99,199,2.0\n99,200,14.5\n99,201,14.0\n99,202,13.5\n99,203,13.0\n99,204,12.5\n99,205,12.0\n99,206,11.5\n99,207,11.0\n99,208,10.5\n99,209,10.0\n99,210,9.5\n99,211,9.0\n99,212,8.5\n99,213,8.0\n99,214,7.5\n99,215,7.0\n99,216,6.5\n99,217,6.0\n99,218,5.5\n99,219,5.0\n99,220,4.5\n99,221,4.0\n99,222,3.5\n99,223,3.0\n99,224,2.5\n99,225,15.0\n99,226,14.5\n99,227,14.0\n99,228,13.5\n99,229,13.0\n99,230,12.5\n99,231,12.0\n99,232,11.5\n99,233,11.0\n99,234,10.5\n99,235,10.0\n99,236,9.5\n99,237,9.0\n99,238,8.5\n99,239,8.0\n99,240,7.5\n99,241,7.0\n99,242,6.5\n99,243,6.0\n99,244,5.5\n99,245,5.0\n99,246,4.5\n99,247,4.0\n99,248,3.5\n99,249,3.0\n99,250,15.5\n99,251,15.0\n99,252,14.5\n99,253,14.0\n99,254,13.5\n99,255,13.0\n99,256,12.5\n99,257,12.0\n99,258,11.5\n99,259,11.0\n99,260,10.5\n99,261,10.0\n99,262,9.5\n99,263,9.0\n99,264,8.5\n99,265,8.0\n99,266,7.5\n99,267,7.0\n99,268,6.5\n99,269,6.0\n99,270,5.5\n99,271,5.0\n99,272,4.5\n99,273,4.0\n99,274,3.5\n99,275,16.0\n99,276,15.5\n99,277,15.0\n99,278,14.5\n99,279,14.0\n99,280,13.5\n99,281,13.0\n99,282,12.5\n99,283,12.0\n99,284,11.5\n99,285,11.0\n99,286,10.5\n99,287,10.0\n99,288,9.5\n99,289,9.0\n99,290,8.5\n99,291,8.0\n99,292,7.5\n99,293,7.0\n99,294,6.5\n99,295,6.0\n99,296,5.5\n99,297,5.0\n99,298,4.5\n99,299,4.0\n99,300,16.5\n99,301,16.0\n99,302,15.5\n99,303,15.0\n99,304,14.5\n99,305,14.0\n99,306,13.5\n99,307,13.0\n99,308,12.5\n99,309,12.0\n99,310,11.5\n99,311,11.0\n99,312,10.5\n99,313,10.0\n99,314,9.5\n99,315,9.0\n99,316,8.5\n99,317,8.0\n99,318,7.5\n99,319,7.0\n99,320,6.5\n99,321,6.0\n99,322,5.5\n99,323,5.0\n99,324,4.5\n99,325,17.0\n99,326,16.5\n99,327,16.0\n99,328,15.5\n99,329,15.0\n99,330,14.5\n99,331,14.0\n99,332,13.5\n99,333,13.0\n99,334,12.5\n99,335,12.0\n99,336,11.5\n99,337,11.0\n99,338,10.5\n99,339,10.0\n99,340,9.5\n99,341,9.0\n99,342,8.5\n99,343,8.0\n99,344,7.5\n99,345,7.0\n99,346,6.5\n99,347,6.0\n99,348,5.5\n99,349,5.0\n99,350,17.5\n99,351,17.0\n99,352,16.5\n99,353,16.0\n99,354,15.5\n99,355,15.0\n99,356,14.5\n99,357,14.0\n99,358,13.5\n99,359,13.0\n99,360,12.5\n99,361,12.0\n99,362,11.5\n99,363,11.0\n99,364,10.5\n99,365,10.0\n99,366,9.5\n99,367,9.0\n99,368,8.5\n99,369,8.0\n99,370,7.5\n99,371,7.0\n99,372,6.5\n99,373,6.0\n99,374,5.5\n99,375,18.0\n99,376,17.5\n99,377,17.0\n99,378,16.5\n99,379,16.0\n99,380,15.5\n99,381,15.0\n99,382,14.5\n99,383,14.0\n99,384,13.5\n99,385,13.0\n99,386,12.5\n99,387,12.0\n99,388,11.5\n99,389,11.0\n99,390,10.5\n99,391,10.0\n99,392,9.5\n99,393,9.0\n99,394,8.5\n99,395,8.0\n99,396,7.5\n99,397,7.0\n99,398,6.5\n99,399,6.0\n99,400,18.5\n99,401,18.0\n99,402,17.5\n99,403,17.0\n99,404,16.5\n99,405,16.0\n99,406,15.5\n99,407,15.0\n99,408,14.5\n99,409,14.0\n99,410,13.5\n99,411,13.0\n99,412,12.5\n99,413,12.0\n99,414,11.5\n99,415,11.0\n99,416,10.5\n99,417,10.0\n99,418,9.5\n99,419,9.0\n99,420,8.5\n99,421,8.0\n99,422,7.5\n99,423,7.0\n99,424,6.5\n99,425,19.0\n99,426,18.5\n99,427,18.0\n99,428,17.5\n99,429,17.0\n99,430,16.5\n99,431,16.0\n99,432,15.5\n99,433,15.0\n99,434,14.5\n99,435,14.0\n99,436,13.5\n99,437,13.0\n99,438,12.5\n99,439,12.0\n99,440,11.5\n99,441,11.0\n99,442,10.5\n99,443,10.0\n99,444,9.5\n99,445,9.0\n99,446,8.5\n99,447,8.0\n99,448,7.5\n99,449,7.0\n99,450,19.5\n99,451,19.0\n99,452,18.5\n99,453,18.0\n99,454,17.5\n99,455,17.0\n99,456,16.5\n99,457,16.0\n99,458,15.5\n99,459,15.0\n99,460,14.5\n99,461,14.0\n99,462,13.5\n99,463,13.0\n99,464,12.5\n99,465,12.0\n99,466,11.5\n99,467,11.0\n99,468,10.5\n99,469,10.0\n99,470,9.5\n99,471,9.0\n99,472,8.5\n99,473,8.0\n99,474,7.5\n99,475,20.0\n99,476,19.5\n99,477,19.0\n99,478,18.5\n99,479,18.0\n99,480,17.5\n99,481,17.0\n99,482,16.5\n99,483,16.0\n99,484,15.5\n99,485,15.0\n99,486,14.5\n99,487,14.0\n99,488,13.5\n99,489,13.0\n99,490,12.5\n99,491,12.0\n99,492,11.5\n99,493,11.0\n99,494,10.5\n99,495,10.0\n99,496,9.5\n99,497,9.0\n99,498,8.5\n99,499,8.0\n99,500,20.5\n99,501,20.0\n99,502,19.5\n99,503,19.0\n99,504,18.5\n99,505,18.0\n99,506,17.5\n99,507,17.0\n99,508,16.5\n99,509,16.0\n99,510,15.5\n99,511,15.0\n99,512,14.5\n99,513,14.0\n99,514,13.5\n99,515,13.0\n99,516,12.5\n99,517,12.0\n99,518,11.5\n99,519,11.0\n99,520,10.5\n99,521,10.0\n99,522,9.5\n99,523,9.0\n99,524,8.5\n99,525,21.0\n99,526,20.5\n99,527,20.0\n99,528,19.5\n99,529,19.0\n99,530,18.5\n99,531,18.0\n99,532,17.5\n99,533,17.0\n99,534,16.5\n99,535,16.0\n99,536,15.5\n99,537,15.0\n99,538,14.5\n99,539,14.0\n99,540,13.5\n99,541,13.0\n99,542,12.5\n99,543,12.0\n99,544,11.5\n99,545,11.0\n99,546,10.5\n99,547,10.0\n99,548,9.5\n99,549,9.0\n99,550,21.5\n99,551,21.0\n99,552,20.5\n99,553,20.0\n99,554,19.5\n99,555,19.0\n99,556,18.5\n99,557,18.0\n99,558,17.5\n99,559,17.0\n99,560,16.5\n99,561,16.0\n99,562,15.5\n99,563,15.0\n99,564,14.5\n99,565,14.0\n99,566,13.5\n99,567,13.0\n99,568,12.5\n99,569,12.0\n99,570,11.5\n99,571,11.0\n99,572,10.5\n99,573,10.0\n99,574,9.5\n99,575,22.0\n99,576,21.5\n99,577,21.0\n99,578,20.5\n99,579,20.0\n99,580,19.5\n99,581,19.0\n99,582,18.5\n99,583,18.0\n99,584,17.5\n99,585,17.0\n99,586,16.5\n99,587,16.0\n99,588,15.5\n99,589,15.0\n99,590,14.5\n99,591,14.0\n99,592,13.5\n99,593,13.0\n99,594,12.5\n99,595,12.0\n99,596,11.5\n99,597,11.0\n99,598,10.5\n99,599,10.0\n99,600,22.5\n99,601,22.0\n99,602,21.5\n99,603,21.0\n99,604,20.5\n99,605,20.0\n99,606,19.5\n99,607,19.0\n99,608,18.5\n99,609,18.0\n99,610,17.5\n99,611,17.0\n99,612,16.5\n99,613,16.0\n99,614,15.5\n99,615,15.0\n99,616,14.5\n99,617,14.0\n99,618,13.5\n99,619,13.0\n99,620,12.5\n99,621,12.0\n99,622,11.5\n99,623,11.0\n99,624,10.5\n100,0,2.0\n100,1,2.5\n100,2,3.0\n100,3,3.5\n100,4,4.0\n100,5,4.5\n100,6,5.0\n100,7,5.5\n100,8,6.0\n100,9,6.5\n100,10,7.0\n100,11,7.5\n100,12,8.0\n100,13,8.5\n100,14,9.0\n100,15,9.5\n100,16,10.0\n100,17,10.5\n100,18,11.0\n100,19,11.5\n100,20,12.0\n100,21,12.5\n100,22,13.0\n100,23,13.5\n100,24,14.0\n100,25,1.5\n100,26,2.0\n100,27,2.5\n100,28,3.0\n100,29,3.5\n100,30,4.0\n100,31,4.5\n100,32,5.0\n100,33,5.5\n100,34,6.0\n100,35,6.5\n100,36,7.0\n100,37,7.5\n100,38,8.0\n100,39,8.5\n100,40,9.0\n100,41,9.5\n100,42,10.0\n100,43,10.5\n100,44,11.0\n100,45,11.5\n100,46,12.0\n100,47,12.5\n100,48,13.0\n100,49,13.5\n100,50,1.0\n100,51,1.5\n100,52,2.0\n100,53,2.5\n100,54,3.0\n100,55,3.5\n100,56,4.0\n100,57,4.5\n100,58,5.0\n100,59,5.5\n100,60,6.0\n100,61,6.5\n100,62,7.0\n100,63,7.5\n100,64,8.0\n100,65,8.5\n100,66,9.0\n100,67,9.5\n100,68,10.0\n100,69,10.5\n100,70,11.0\n100,71,11.5\n100,72,12.0\n100,73,12.5\n100,74,13.0\n100,75,0.5\n100,76,1.0\n100,77,1.5\n100,78,2.0\n100,79,2.5\n100,80,3.0\n100,81,3.5\n100,82,4.0\n100,83,4.5\n100,84,5.0\n100,85,5.5\n100,86,6.0\n100,87,6.5\n100,88,7.0\n100,89,7.5\n100,90,8.0\n100,91,8.5\n100,92,9.0\n100,93,9.5\n100,94,10.0\n100,95,10.5\n100,96,11.0\n100,97,11.5\n100,98,12.0\n100,99,12.5\n100,100,0\n100,101,0.5\n100,102,1.0\n100,103,1.5\n100,104,2.0\n100,105,2.5\n100,106,3.0\n100,107,3.5\n100,108,4.0\n100,109,4.5\n100,110,5.0\n100,111,5.5\n100,112,6.0\n100,113,6.5\n100,114,7.0\n100,115,7.5\n100,116,8.0\n100,117,8.5\n100,118,9.0\n100,119,9.5\n100,120,10.0\n100,121,10.5\n100,122,11.0\n100,123,11.5\n100,124,12.0\n100,125,0.5\n100,126,1.0\n100,127,1.5\n100,128,2.0\n100,129,2.5\n100,130,3.0\n100,131,3.5\n100,132,4.0\n100,133,4.5\n100,134,5.0\n100,135,5.5\n100,136,6.0\n100,137,6.5\n100,138,7.0\n100,139,7.5\n100,140,8.0\n100,141,8.5\n100,142,9.0\n100,143,9.5\n100,144,10.0\n100,145,10.5\n100,146,11.0\n100,147,11.5\n100,148,12.0\n100,149,12.5\n100,150,1.0\n100,151,1.5\n100,152,2.0\n100,153,2.5\n100,154,3.0\n100,155,3.5\n100,156,4.0\n100,157,4.5\n100,158,5.0\n100,159,5.5\n100,160,6.0\n100,161,6.5\n100,162,7.0\n100,163,7.5\n100,164,8.0\n100,165,8.5\n100,166,9.0\n100,167,9.5\n100,168,10.0\n100,169,10.5\n100,170,11.0\n100,171,11.5\n100,172,12.0\n100,173,12.5\n100,174,13.0\n100,175,1.5\n100,176,2.0\n100,177,2.5\n100,178,3.0\n100,179,3.5\n100,180,4.0\n100,181,4.5\n100,182,5.0\n100,183,5.5\n100,184,6.0\n100,185,6.5\n100,186,7.0\n100,187,7.5\n100,188,8.0\n100,189,8.5\n100,190,9.0\n100,191,9.5\n100,192,10.0\n100,193,10.5\n100,194,11.0\n100,195,11.5\n100,196,12.0\n100,197,12.5\n100,198,13.0\n100,199,13.5\n100,200,2.0\n100,201,2.5\n100,202,3.0\n100,203,3.5\n100,204,4.0\n100,205,4.5\n100,206,5.0\n100,207,5.5\n100,208,6.0\n100,209,6.5\n100,210,7.0\n100,211,7.5\n100,212,8.0\n100,213,8.5\n100,214,9.0\n100,215,9.5\n100,216,10.0\n100,217,10.5\n100,218,11.0\n100,219,11.5\n100,220,12.0\n100,221,12.5\n100,222,13.0\n100,223,13.5\n100,224,14.0\n100,225,2.5\n100,226,3.0\n100,227,3.5\n100,228,4.0\n100,229,4.5\n100,230,5.0\n100,231,5.5\n100,232,6.0\n100,233,6.5\n100,234,7.0\n100,235,7.5\n100,236,8.0\n100,237,8.5\n100,238,9.0\n100,239,9.5\n100,240,10.0\n100,241,10.5\n100,242,11.0\n100,243,11.5\n100,244,12.0\n100,245,12.5\n100,246,13.0\n100,247,13.5\n100,248,14.0\n100,249,14.5\n100,250,3.0\n100,251,3.5\n100,252,4.0\n100,253,4.5\n100,254,5.0\n100,255,5.5\n100,256,6.0\n100,257,6.5\n100,258,7.0\n100,259,7.5\n100,260,8.0\n100,261,8.5\n100,262,9.0\n100,263,9.5\n100,264,10.0\n100,265,10.5\n100,266,11.0\n100,267,11.5\n100,268,12.0\n100,269,12.5\n100,270,13.0\n100,271,13.5\n100,272,14.0\n100,273,14.5\n100,274,15.0\n100,275,3.5\n100,276,4.0\n100,277,4.5\n100,278,5.0\n100,279,5.5\n100,280,6.0\n100,281,6.5\n100,282,7.0\n100,283,7.5\n100,284,8.0\n100,285,8.5\n100,286,9.0\n100,287,9.5\n100,288,10.0\n100,289,10.5\n100,290,11.0\n100,291,11.5\n100,292,12.0\n100,293,12.5\n100,294,13.0\n100,295,13.5\n100,296,14.0\n100,297,14.5\n100,298,15.0\n100,299,15.5\n100,300,4.0\n100,301,4.5\n100,302,5.0\n100,303,5.5\n100,304,6.0\n100,305,6.5\n100,306,7.0\n100,307,7.5\n100,308,8.0\n100,309,8.5\n100,310,9.0\n100,311,9.5\n100,312,10.0\n100,313,10.5\n100,314,11.0\n100,315,11.5\n100,316,12.0\n100,317,12.5\n100,318,13.0\n100,319,13.5\n100,320,14.0\n100,321,14.5\n100,322,15.0\n100,323,15.5\n100,324,16.0\n100,325,4.5\n100,326,5.0\n100,327,5.5\n100,328,6.0\n100,329,6.5\n100,330,7.0\n100,331,7.5\n100,332,8.0\n100,333,8.5\n100,334,9.0\n100,335,9.5\n100,336,10.0\n100,337,10.5\n100,338,11.0\n100,339,11.5\n100,340,12.0\n100,341,12.5\n100,342,13.0\n100,343,13.5\n100,344,14.0\n100,345,14.5\n100,346,15.0\n100,347,15.5\n100,348,16.0\n100,349,16.5\n100,350,5.0\n100,351,5.5\n100,352,6.0\n100,353,6.5\n100,354,7.0\n100,355,7.5\n100,356,8.0\n100,357,8.5\n100,358,9.0\n100,359,9.5\n100,360,10.0\n100,361,10.5\n100,362,11.0\n100,363,11.5\n100,364,12.0\n100,365,12.5\n100,366,13.0\n100,367,13.5\n100,368,14.0\n100,369,14.5\n100,370,15.0\n100,371,15.5\n100,372,16.0\n100,373,16.5\n100,374,17.0\n100,375,5.5\n100,376,6.0\n100,377,6.5\n100,378,7.0\n100,379,7.5\n100,380,8.0\n100,381,8.5\n100,382,9.0\n100,383,9.5\n100,384,10.0\n100,385,10.5\n100,386,11.0\n100,387,11.5\n100,388,12.0\n100,389,12.5\n100,390,13.0\n100,391,13.5\n100,392,14.0\n100,393,14.5\n100,394,15.0\n100,395,15.5\n100,396,16.0\n100,397,16.5\n100,398,17.0\n100,399,17.5\n100,400,6.0\n100,401,6.5\n100,402,7.0\n100,403,7.5\n100,404,8.0\n100,405,8.5\n100,406,9.0\n100,407,9.5\n100,408,10.0\n100,409,10.5\n100,410,11.0\n100,411,11.5\n100,412,12.0\n100,413,12.5\n100,414,13.0\n100,415,13.5\n100,416,14.0\n100,417,14.5\n100,418,15.0\n100,419,15.5\n100,420,16.0\n100,421,16.5\n100,422,17.0\n100,423,17.5\n100,424,18.0\n100,425,6.5\n100,426,7.0\n100,427,7.5\n100,428,8.0\n100,429,8.5\n100,430,9.0\n100,431,9.5\n100,432,10.0\n100,433,10.5\n100,434,11.0\n100,435,11.5\n100,436,12.0\n100,437,12.5\n100,438,13.0\n100,439,13.5\n100,440,14.0\n100,441,14.5\n100,442,15.0\n100,443,15.5\n100,444,16.0\n100,445,16.5\n100,446,17.0\n100,447,17.5\n100,448,18.0\n100,449,18.5\n100,450,7.0\n100,451,7.5\n100,452,8.0\n100,453,8.5\n100,454,9.0\n100,455,9.5\n100,456,10.0\n100,457,10.5\n100,458,11.0\n100,459,11.5\n100,460,12.0\n100,461,12.5\n100,462,13.0\n100,463,13.5\n100,464,14.0\n100,465,14.5\n100,466,15.0\n100,467,15.5\n100,468,16.0\n100,469,16.5\n100,470,17.0\n100,471,17.5\n100,472,18.0\n100,473,18.5\n100,474,19.0\n100,475,7.5\n100,476,8.0\n100,477,8.5\n100,478,9.0\n100,479,9.5\n100,480,10.0\n100,481,10.5\n100,482,11.0\n100,483,11.5\n100,484,12.0\n100,485,12.5\n100,486,13.0\n100,487,13.5\n100,488,14.0\n100,489,14.5\n100,490,15.0\n100,491,15.5\n100,492,16.0\n100,493,16.5\n100,494,17.0\n100,495,17.5\n100,496,18.0\n100,497,18.5\n100,498,19.0\n100,499,19.5\n100,500,8.0\n100,501,8.5\n100,502,9.0\n100,503,9.5\n100,504,10.0\n100,505,10.5\n100,506,11.0\n100,507,11.5\n100,508,12.0\n100,509,12.5\n100,510,13.0\n100,511,13.5\n100,512,14.0\n100,513,14.5\n100,514,15.0\n100,515,15.5\n100,516,16.0\n100,517,16.5\n100,518,17.0\n100,519,17.5\n100,520,18.0\n100,521,18.5\n100,522,19.0\n100,523,19.5\n100,524,20.0\n100,525,8.5\n100,526,9.0\n100,527,9.5\n100,528,10.0\n100,529,10.5\n100,530,11.0\n100,531,11.5\n100,532,12.0\n100,533,12.5\n100,534,13.0\n100,535,13.5\n100,536,14.0\n100,537,14.5\n100,538,15.0\n100,539,15.5\n100,540,16.0\n100,541,16.5\n100,542,17.0\n100,543,17.5\n100,544,18.0\n100,545,18.5\n100,546,19.0\n100,547,19.5\n100,548,20.0\n100,549,20.5\n100,550,9.0\n100,551,9.5\n100,552,10.0\n100,553,10.5\n100,554,11.0\n100,555,11.5\n100,556,12.0\n100,557,12.5\n100,558,13.0\n100,559,13.5\n100,560,14.0\n100,561,14.5\n100,562,15.0\n100,563,15.5\n100,564,16.0\n100,565,16.5\n100,566,17.0\n100,567,17.5\n100,568,18.0\n100,569,18.5\n100,570,19.0\n100,571,19.5\n100,572,20.0\n100,573,20.5\n100,574,21.0\n100,575,9.5\n100,576,10.0\n100,577,10.5\n100,578,11.0\n100,579,11.5\n100,580,12.0\n100,581,12.5\n100,582,13.0\n100,583,13.5\n100,584,14.0\n100,585,14.5\n100,586,15.0\n100,587,15.5\n100,588,16.0\n100,589,16.5\n100,590,17.0\n100,591,17.5\n100,592,18.0\n100,593,18.5\n100,594,19.0\n100,595,19.5\n100,596,20.0\n100,597,20.5\n100,598,21.0\n100,599,21.5\n100,600,10.0\n100,601,10.5\n100,602,11.0\n100,603,11.5\n100,604,12.0\n100,605,12.5\n100,606,13.0\n100,607,13.5\n100,608,14.0\n100,609,14.5\n100,610,15.0\n100,611,15.5\n100,612,16.0\n100,613,16.5\n100,614,17.0\n100,615,17.5\n100,616,18.0\n100,617,18.5\n100,618,19.0\n100,619,19.5\n100,620,20.0\n100,621,20.5\n100,622,21.0\n100,623,21.5\n100,624,22.0\n101,0,2.5\n101,1,2.0\n101,2,2.5\n101,3,3.0\n101,4,3.5\n101,5,4.0\n101,6,4.5\n101,7,5.0\n101,8,5.5\n101,9,6.0\n101,10,6.5\n101,11,7.0\n101,12,7.5\n101,13,8.0\n101,14,8.5\n101,15,9.0\n101,16,9.5\n101,17,10.0\n101,18,10.5\n101,19,11.0\n101,20,11.5\n101,21,12.0\n101,22,12.5\n101,23,13.0\n101,24,13.5\n101,25,2.0\n101,26,1.5\n101,27,2.0\n101,28,2.5\n101,29,3.0\n101,30,3.5\n101,31,4.0\n101,32,4.5\n101,33,5.0\n101,34,5.5\n101,35,6.0\n101,36,6.5\n101,37,7.0\n101,38,7.5\n101,39,8.0\n101,40,8.5\n101,41,9.0\n101,42,9.5\n101,43,10.0\n101,44,10.5\n101,45,11.0\n101,46,11.5\n101,47,12.0\n101,48,12.5\n101,49,13.0\n101,50,1.5\n101,51,1.0\n101,52,1.5\n101,53,2.0\n101,54,2.5\n101,55,3.0\n101,56,3.5\n101,57,4.0\n101,58,4.5\n101,59,5.0\n101,60,5.5\n101,61,6.0\n101,62,6.5\n101,63,7.0\n101,64,7.5\n101,65,8.0\n101,66,8.5\n101,67,9.0\n101,68,9.5\n101,69,10.0\n101,70,10.5\n101,71,11.0\n101,72,11.5\n101,73,12.0\n101,74,12.5\n101,75,1.0\n101,76,0.5\n101,77,1.0\n101,78,1.5\n101,79,2.0\n101,80,2.5\n101,81,3.0\n101,82,3.5\n101,83,4.0\n101,84,4.5\n101,85,5.0\n101,86,5.5\n101,87,6.0\n101,88,6.5\n101,89,7.0\n101,90,7.5\n101,91,8.0\n101,92,8.5\n101,93,9.0\n101,94,9.5\n101,95,10.0\n101,96,10.5\n101,97,11.0\n101,98,11.5\n101,99,12.0\n101,100,0.5\n101,101,0\n101,102,0.5\n101,103,1.0\n101,104,1.5\n101,105,2.0\n101,106,2.5\n101,107,3.0\n101,108,3.5\n101,109,4.0\n101,110,4.5\n101,111,5.0\n101,112,5.5\n101,113,6.0\n101,114,6.5\n101,115,7.0\n101,116,7.5\n101,117,8.0\n101,118,8.5\n101,119,9.0\n101,120,9.5\n101,121,10.0\n101,122,10.5\n101,123,11.0\n101,124,11.5\n101,125,1.0\n101,126,0.5\n101,127,1.0\n101,128,1.5\n101,129,2.0\n101,130,2.5\n101,131,3.0\n101,132,3.5\n101,133,4.0\n101,134,4.5\n101,135,5.0\n101,136,5.5\n101,137,6.0\n101,138,6.5\n101,139,7.0\n101,140,7.5\n101,141,8.0\n101,142,8.5\n101,143,9.0\n101,144,9.5\n101,145,10.0\n101,146,10.5\n101,147,11.0\n101,148,11.5\n101,149,12.0\n101,150,1.5\n101,151,1.0\n101,152,1.5\n101,153,2.0\n101,154,2.5\n101,155,3.0\n101,156,3.5\n101,157,4.0\n101,158,4.5\n101,159,5.0\n101,160,5.5\n101,161,6.0\n101,162,6.5\n101,163,7.0\n101,164,7.5\n101,165,8.0\n101,166,8.5\n101,167,9.0\n101,168,9.5\n101,169,10.0\n101,170,10.5\n101,171,11.0\n101,172,11.5\n101,173,12.0\n101,174,12.5\n101,175,2.0\n101,176,1.5\n101,177,2.0\n101,178,2.5\n101,179,3.0\n101,180,3.5\n101,181,4.0\n101,182,4.5\n101,183,5.0\n101,184,5.5\n101,185,6.0\n101,186,6.5\n101,187,7.0\n101,188,7.5\n101,189,8.0\n101,190,8.5\n101,191,9.0\n101,192,9.5\n101,193,10.0\n101,194,10.5\n101,195,11.0\n101,196,11.5\n101,197,12.0\n101,198,12.5\n101,199,13.0\n101,200,2.5\n101,201,2.0\n101,202,2.5\n101,203,3.0\n101,204,3.5\n101,205,4.0\n101,206,4.5\n101,207,5.0\n101,208,5.5\n101,209,6.0\n101,210,6.5\n101,211,7.0\n101,212,7.5\n101,213,8.0\n101,214,8.5\n101,215,9.0\n101,216,9.5\n101,217,10.0\n101,218,10.5\n101,219,11.0\n101,220,11.5\n101,221,12.0\n101,222,12.5\n101,223,13.0\n101,224,13.5\n101,225,3.0\n101,226,2.5\n101,227,3.0\n101,228,3.5\n101,229,4.0\n101,230,4.5\n101,231,5.0\n101,232,5.5\n101,233,6.0\n101,234,6.5\n101,235,7.0\n101,236,7.5\n101,237,8.0\n101,238,8.5\n101,239,9.0\n101,240,9.5\n101,241,10.0\n101,242,10.5\n101,243,11.0\n101,244,11.5\n101,245,12.0\n101,246,12.5\n101,247,13.0\n101,248,13.5\n101,249,14.0\n101,250,3.5\n101,251,3.0\n101,252,3.5\n101,253,4.0\n101,254,4.5\n101,255,5.0\n101,256,5.5\n101,257,6.0\n101,258,6.5\n101,259,7.0\n101,260,7.5\n101,261,8.0\n101,262,8.5\n101,263,9.0\n101,264,9.5\n101,265,10.0\n101,266,10.5\n101,267,11.0\n101,268,11.5\n101,269,12.0\n101,270,12.5\n101,271,13.0\n101,272,13.5\n101,273,14.0\n101,274,14.5\n101,275,4.0\n101,276,3.5\n101,277,4.0\n101,278,4.5\n101,279,5.0\n101,280,5.5\n101,281,6.0\n101,282,6.5\n101,283,7.0\n101,284,7.5\n101,285,8.0\n101,286,8.5\n101,287,9.0\n101,288,9.5\n101,289,10.0\n101,290,10.5\n101,291,11.0\n101,292,11.5\n101,293,12.0\n101,294,12.5\n101,295,13.0\n101,296,13.5\n101,297,14.0\n101,298,14.5\n101,299,15.0\n101,300,4.5\n101,301,4.0\n101,302,4.5\n101,303,5.0\n101,304,5.5\n101,305,6.0\n101,306,6.5\n101,307,7.0\n101,308,7.5\n101,309,8.0\n101,310,8.5\n101,311,9.0\n101,312,9.5\n101,313,10.0\n101,314,10.5\n101,315,11.0\n101,316,11.5\n101,317,12.0\n101,318,12.5\n101,319,13.0\n101,320,13.5\n101,321,14.0\n101,322,14.5\n101,323,15.0\n101,324,15.5\n101,325,5.0\n101,326,4.5\n101,327,5.0\n101,328,5.5\n101,329,6.0\n101,330,6.5\n101,331,7.0\n101,332,7.5\n101,333,8.0\n101,334,8.5\n101,335,9.0\n101,336,9.5\n101,337,10.0\n101,338,10.5\n101,339,11.0\n101,340,11.5\n101,341,12.0\n101,342,12.5\n101,343,13.0\n101,344,13.5\n101,345,14.0\n101,346,14.5\n101,347,15.0\n101,348,15.5\n101,349,16.0\n101,350,5.5\n101,351,5.0\n101,352,5.5\n101,353,6.0\n101,354,6.5\n101,355,7.0\n101,356,7.5\n101,357,8.0\n101,358,8.5\n101,359,9.0\n101,360,9.5\n101,361,10.0\n101,362,10.5\n101,363,11.0\n101,364,11.5\n101,365,12.0\n101,366,12.5\n101,367,13.0\n101,368,13.5\n101,369,14.0\n101,370,14.5\n101,371,15.0\n101,372,15.5\n101,373,16.0\n101,374,16.5\n101,375,6.0\n101,376,5.5\n101,377,6.0\n101,378,6.5\n101,379,7.0\n101,380,7.5\n101,381,8.0\n101,382,8.5\n101,383,9.0\n101,384,9.5\n101,385,10.0\n101,386,10.5\n101,387,11.0\n101,388,11.5\n101,389,12.0\n101,390,12.5\n101,391,13.0\n101,392,13.5\n101,393,14.0\n101,394,14.5\n101,395,15.0\n101,396,15.5\n101,397,16.0\n101,398,16.5\n101,399,17.0\n101,400,6.5\n101,401,6.0\n101,402,6.5\n101,403,7.0\n101,404,7.5\n101,405,8.0\n101,406,8.5\n101,407,9.0\n101,408,9.5\n101,409,10.0\n101,410,10.5\n101,411,11.0\n101,412,11.5\n101,413,12.0\n101,414,12.5\n101,415,13.0\n101,416,13.5\n101,417,14.0\n101,418,14.5\n101,419,15.0\n101,420,15.5\n101,421,16.0\n101,422,16.5\n101,423,17.0\n101,424,17.5\n101,425,7.0\n101,426,6.5\n101,427,7.0\n101,428,7.5\n101,429,8.0\n101,430,8.5\n101,431,9.0\n101,432,9.5\n101,433,10.0\n101,434,10.5\n101,435,11.0\n101,436,11.5\n101,437,12.0\n101,438,12.5\n101,439,13.0\n101,440,13.5\n101,441,14.0\n101,442,14.5\n101,443,15.0\n101,444,15.5\n101,445,16.0\n101,446,16.5\n101,447,17.0\n101,448,17.5\n101,449,18.0\n101,450,7.5\n101,451,7.0\n101,452,7.5\n101,453,8.0\n101,454,8.5\n101,455,9.0\n101,456,9.5\n101,457,10.0\n101,458,10.5\n101,459,11.0\n101,460,11.5\n101,461,12.0\n101,462,12.5\n101,463,13.0\n101,464,13.5\n101,465,14.0\n101,466,14.5\n101,467,15.0\n101,468,15.5\n101,469,16.0\n101,470,16.5\n101,471,17.0\n101,472,17.5\n101,473,18.0\n101,474,18.5\n101,475,8.0\n101,476,7.5\n101,477,8.0\n101,478,8.5\n101,479,9.0\n101,480,9.5\n101,481,10.0\n101,482,10.5\n101,483,11.0\n101,484,11.5\n101,485,12.0\n101,486,12.5\n101,487,13.0\n101,488,13.5\n101,489,14.0\n101,490,14.5\n101,491,15.0\n101,492,15.5\n101,493,16.0\n101,494,16.5\n101,495,17.0\n101,496,17.5\n101,497,18.0\n101,498,18.5\n101,499,19.0\n101,500,8.5\n101,501,8.0\n101,502,8.5\n101,503,9.0\n101,504,9.5\n101,505,10.0\n101,506,10.5\n101,507,11.0\n101,508,11.5\n101,509,12.0\n101,510,12.5\n101,511,13.0\n101,512,13.5\n101,513,14.0\n101,514,14.5\n101,515,15.0\n101,516,15.5\n101,517,16.0\n101,518,16.5\n101,519,17.0\n101,520,17.5\n101,521,18.0\n101,522,18.5\n101,523,19.0\n101,524,19.5\n101,525,9.0\n101,526,8.5\n101,527,9.0\n101,528,9.5\n101,529,10.0\n101,530,10.5\n101,531,11.0\n101,532,11.5\n101,533,12.0\n101,534,12.5\n101,535,13.0\n101,536,13.5\n101,537,14.0\n101,538,14.5\n101,539,15.0\n101,540,15.5\n101,541,16.0\n101,542,16.5\n101,543,17.0\n101,544,17.5\n101,545,18.0\n101,546,18.5\n101,547,19.0\n101,548,19.5\n101,549,20.0\n101,550,9.5\n101,551,9.0\n101,552,9.5\n101,553,10.0\n101,554,10.5\n101,555,11.0\n101,556,11.5\n101,557,12.0\n101,558,12.5\n101,559,13.0\n101,560,13.5\n101,561,14.0\n101,562,14.5\n101,563,15.0\n101,564,15.5\n101,565,16.0\n101,566,16.5\n101,567,17.0\n101,568,17.5\n101,569,18.0\n101,570,18.5\n101,571,19.0\n101,572,19.5\n101,573,20.0\n101,574,20.5\n101,575,10.0\n101,576,9.5\n101,577,10.0\n101,578,10.5\n101,579,11.0\n101,580,11.5\n101,581,12.0\n101,582,12.5\n101,583,13.0\n101,584,13.5\n101,585,14.0\n101,586,14.5\n101,587,15.0\n101,588,15.5\n101,589,16.0\n101,590,16.5\n101,591,17.0\n101,592,17.5\n101,593,18.0\n101,594,18.5\n101,595,19.0\n101,596,19.5\n101,597,20.0\n101,598,20.5\n101,599,21.0\n101,600,10.5\n101,601,10.0\n101,602,10.5\n101,603,11.0\n101,604,11.5\n101,605,12.0\n101,606,12.5\n101,607,13.0\n101,608,13.5\n101,609,14.0\n101,610,14.5\n101,611,15.0\n101,612,15.5\n101,613,16.0\n101,614,16.5\n101,615,17.0\n101,616,17.5\n101,617,18.0\n101,618,18.5\n101,619,19.0\n101,620,19.5\n101,621,20.0\n101,622,20.5\n101,623,21.0\n101,624,21.5\n102,0,3.0\n102,1,2.5\n102,2,2.0\n102,3,2.5\n102,4,3.0\n102,5,3.5\n102,6,4.0\n102,7,4.5\n102,8,5.0\n102,9,5.5\n102,10,6.0\n102,11,6.5\n102,12,7.0\n102,13,7.5\n102,14,8.0\n102,15,8.5\n102,16,9.0\n102,17,9.5\n102,18,10.0\n102,19,10.5\n102,20,11.0\n102,21,11.5\n102,22,12.0\n102,23,12.5\n102,24,13.0\n102,25,2.5\n102,26,2.0\n102,27,1.5\n102,28,2.0\n102,29,2.5\n102,30,3.0\n102,31,3.5\n102,32,4.0\n102,33,4.5\n102,34,5.0\n102,35,5.5\n102,36,6.0\n102,37,6.5\n102,38,7.0\n102,39,7.5\n102,40,8.0\n102,41,8.5\n102,42,9.0\n102,43,9.5\n102,44,10.0\n102,45,10.5\n102,46,11.0\n102,47,11.5\n102,48,12.0\n102,49,12.5\n102,50,2.0\n102,51,1.5\n102,52,1.0\n102,53,1.5\n102,54,2.0\n102,55,2.5\n102,56,3.0\n102,57,3.5\n102,58,4.0\n102,59,4.5\n102,60,5.0\n102,61,5.5\n102,62,6.0\n102,63,6.5\n102,64,7.0\n102,65,7.5\n102,66,8.0\n102,67,8.5\n102,68,9.0\n102,69,9.5\n102,70,10.0\n102,71,10.5\n102,72,11.0\n102,73,11.5\n102,74,12.0\n102,75,1.5\n102,76,1.0\n102,77,0.5\n102,78,1.0\n102,79,1.5\n102,80,2.0\n102,81,2.5\n102,82,3.0\n102,83,3.5\n102,84,4.0\n102,85,4.5\n102,86,5.0\n102,87,5.5\n102,88,6.0\n102,89,6.5\n102,90,7.0\n102,91,7.5\n102,92,8.0\n102,93,8.5\n102,94,9.0\n102,95,9.5\n102,96,10.0\n102,97,10.5\n102,98,11.0\n102,99,11.5\n102,100,1.0\n102,101,0.5\n102,102,0\n102,103,0.5\n102,104,1.0\n102,105,1.5\n102,106,2.0\n102,107,2.5\n102,108,3.0\n102,109,3.5\n102,110,4.0\n102,111,4.5\n102,112,5.0\n102,113,5.5\n102,114,6.0\n102,115,6.5\n102,116,7.0\n102,117,7.5\n102,118,8.0\n102,119,8.5\n102,120,9.0\n102,121,9.5\n102,122,10.0\n102,123,10.5\n102,124,11.0\n102,125,1.5\n102,126,1.0\n102,127,0.5\n102,128,1.0\n102,129,1.5\n102,130,2.0\n102,131,2.5\n102,132,3.0\n102,133,3.5\n102,134,4.0\n102,135,4.5\n102,136,5.0\n102,137,5.5\n102,138,6.0\n102,139,6.5\n102,140,7.0\n102,141,7.5\n102,142,8.0\n102,143,8.5\n102,144,9.0\n102,145,9.5\n102,146,10.0\n102,147,10.5\n102,148,11.0\n102,149,11.5\n102,150,2.0\n102,151,1.5\n102,152,1.0\n102,153,1.5\n102,154,2.0\n102,155,2.5\n102,156,3.0\n102,157,3.5\n102,158,4.0\n102,159,4.5\n102,160,5.0\n102,161,5.5\n102,162,6.0\n102,163,6.5\n102,164,7.0\n102,165,7.5\n102,166,8.0\n102,167,8.5\n102,168,9.0\n102,169,9.5\n102,170,10.0\n102,171,10.5\n102,172,11.0\n102,173,11.5\n102,174,12.0\n102,175,2.5\n102,176,2.0\n102,177,1.5\n102,178,2.0\n102,179,2.5\n102,180,3.0\n102,181,3.5\n102,182,4.0\n102,183,4.5\n102,184,5.0\n102,185,5.5\n102,186,6.0\n102,187,6.5\n102,188,7.0\n102,189,7.5\n102,190,8.0\n102,191,8.5\n102,192,9.0\n102,193,9.5\n102,194,10.0\n102,195,10.5\n102,196,11.0\n102,197,11.5\n102,198,12.0\n102,199,12.5\n102,200,3.0\n102,201,2.5\n102,202,2.0\n102,203,2.5\n102,204,3.0\n102,205,3.5\n102,206,4.0\n102,207,4.5\n102,208,5.0\n102,209,5.5\n102,210,6.0\n102,211,6.5\n102,212,7.0\n102,213,7.5\n102,214,8.0\n102,215,8.5\n102,216,9.0\n102,217,9.5\n102,218,10.0\n102,219,10.5\n102,220,11.0\n102,221,11.5\n102,222,12.0\n102,223,12.5\n102,224,13.0\n102,225,3.5\n102,226,3.0\n102,227,2.5\n102,228,3.0\n102,229,3.5\n102,230,4.0\n102,231,4.5\n102,232,5.0\n102,233,5.5\n102,234,6.0\n102,235,6.5\n102,236,7.0\n102,237,7.5\n102,238,8.0\n102,239,8.5\n102,240,9.0\n102,241,9.5\n102,242,10.0\n102,243,10.5\n102,244,11.0\n102,245,11.5\n102,246,12.0\n102,247,12.5\n102,248,13.0\n102,249,13.5\n102,250,4.0\n102,251,3.5\n102,252,3.0\n102,253,3.5\n102,254,4.0\n102,255,4.5\n102,256,5.0\n102,257,5.5\n102,258,6.0\n102,259,6.5\n102,260,7.0\n102,261,7.5\n102,262,8.0\n102,263,8.5\n102,264,9.0\n102,265,9.5\n102,266,10.0\n102,267,10.5\n102,268,11.0\n102,269,11.5\n102,270,12.0\n102,271,12.5\n102,272,13.0\n102,273,13.5\n102,274,14.0\n102,275,4.5\n102,276,4.0\n102,277,3.5\n102,278,4.0\n102,279,4.5\n102,280,5.0\n102,281,5.5\n102,282,6.0\n102,283,6.5\n102,284,7.0\n102,285,7.5\n102,286,8.0\n102,287,8.5\n102,288,9.0\n102,289,9.5\n102,290,10.0\n102,291,10.5\n102,292,11.0\n102,293,11.5\n102,294,12.0\n102,295,12.5\n102,296,13.0\n102,297,13.5\n102,298,14.0\n102,299,14.5\n102,300,5.0\n102,301,4.5\n102,302,4.0\n102,303,4.5\n102,304,5.0\n102,305,5.5\n102,306,6.0\n102,307,6.5\n102,308,7.0\n102,309,7.5\n102,310,8.0\n102,311,8.5\n102,312,9.0\n102,313,9.5\n102,314,10.0\n102,315,10.5\n102,316,11.0\n102,317,11.5\n102,318,12.0\n102,319,12.5\n102,320,13.0\n102,321,13.5\n102,322,14.0\n102,323,14.5\n102,324,15.0\n102,325,5.5\n102,326,5.0\n102,327,4.5\n102,328,5.0\n102,329,5.5\n102,330,6.0\n102,331,6.5\n102,332,7.0\n102,333,7.5\n102,334,8.0\n102,335,8.5\n102,336,9.0\n102,337,9.5\n102,338,10.0\n102,339,10.5\n102,340,11.0\n102,341,11.5\n102,342,12.0\n102,343,12.5\n102,344,13.0\n102,345,13.5\n102,346,14.0\n102,347,14.5\n102,348,15.0\n102,349,15.5\n102,350,6.0\n102,351,5.5\n102,352,5.0\n102,353,5.5\n102,354,6.0\n102,355,6.5\n102,356,7.0\n102,357,7.5\n102,358,8.0\n102,359,8.5\n102,360,9.0\n102,361,9.5\n102,362,10.0\n102,363,10.5\n102,364,11.0\n102,365,11.5\n102,366,12.0\n102,367,12.5\n102,368,13.0\n102,369,13.5\n102,370,14.0\n102,371,14.5\n102,372,15.0\n102,373,15.5\n102,374,16.0\n102,375,6.5\n102,376,6.0\n102,377,5.5\n102,378,6.0\n102,379,6.5\n102,380,7.0\n102,381,7.5\n102,382,8.0\n102,383,8.5\n102,384,9.0\n102,385,9.5\n102,386,10.0\n102,387,10.5\n102,388,11.0\n102,389,11.5\n102,390,12.0\n102,391,12.5\n102,392,13.0\n102,393,13.5\n102,394,14.0\n102,395,14.5\n102,396,15.0\n102,397,15.5\n102,398,16.0\n102,399,16.5\n102,400,7.0\n102,401,6.5\n102,402,6.0\n102,403,6.5\n102,404,7.0\n102,405,7.5\n102,406,8.0\n102,407,8.5\n102,408,9.0\n102,409,9.5\n102,410,10.0\n102,411,10.5\n102,412,11.0\n102,413,11.5\n102,414,12.0\n102,415,12.5\n102,416,13.0\n102,417,13.5\n102,418,14.0\n102,419,14.5\n102,420,15.0\n102,421,15.5\n102,422,16.0\n102,423,16.5\n102,424,17.0\n102,425,7.5\n102,426,7.0\n102,427,6.5\n102,428,7.0\n102,429,7.5\n102,430,8.0\n102,431,8.5\n102,432,9.0\n102,433,9.5\n102,434,10.0\n102,435,10.5\n102,436,11.0\n102,437,11.5\n102,438,12.0\n102,439,12.5\n102,440,13.0\n102,441,13.5\n102,442,14.0\n102,443,14.5\n102,444,15.0\n102,445,15.5\n102,446,16.0\n102,447,16.5\n102,448,17.0\n102,449,17.5\n102,450,8.0\n102,451,7.5\n102,452,7.0\n102,453,7.5\n102,454,8.0\n102,455,8.5\n102,456,9.0\n102,457,9.5\n102,458,10.0\n102,459,10.5\n102,460,11.0\n102,461,11.5\n102,462,12.0\n102,463,12.5\n102,464,13.0\n102,465,13.5\n102,466,14.0\n102,467,14.5\n102,468,15.0\n102,469,15.5\n102,470,16.0\n102,471,16.5\n102,472,17.0\n102,473,17.5\n102,474,18.0\n102,475,8.5\n102,476,8.0\n102,477,7.5\n102,478,8.0\n102,479,8.5\n102,480,9.0\n102,481,9.5\n102,482,10.0\n102,483,10.5\n102,484,11.0\n102,485,11.5\n102,486,12.0\n102,487,12.5\n102,488,13.0\n102,489,13.5\n102,490,14.0\n102,491,14.5\n102,492,15.0\n102,493,15.5\n102,494,16.0\n102,495,16.5\n102,496,17.0\n102,497,17.5\n102,498,18.0\n102,499,18.5\n102,500,9.0\n102,501,8.5\n102,502,8.0\n102,503,8.5\n102,504,9.0\n102,505,9.5\n102,506,10.0\n102,507,10.5\n102,508,11.0\n102,509,11.5\n102,510,12.0\n102,511,12.5\n102,512,13.0\n102,513,13.5\n102,514,14.0\n102,515,14.5\n102,516,15.0\n102,517,15.5\n102,518,16.0\n102,519,16.5\n102,520,17.0\n102,521,17.5\n102,522,18.0\n102,523,18.5\n102,524,19.0\n102,525,9.5\n102,526,9.0\n102,527,8.5\n102,528,9.0\n102,529,9.5\n102,530,10.0\n102,531,10.5\n102,532,11.0\n102,533,11.5\n102,534,12.0\n102,535,12.5\n102,536,13.0\n102,537,13.5\n102,538,14.0\n102,539,14.5\n102,540,15.0\n102,541,15.5\n102,542,16.0\n102,543,16.5\n102,544,17.0\n102,545,17.5\n102,546,18.0\n102,547,18.5\n102,548,19.0\n102,549,19.5\n102,550,10.0\n102,551,9.5\n102,552,9.0\n102,553,9.5\n102,554,10.0\n102,555,10.5\n102,556,11.0\n102,557,11.5\n102,558,12.0\n102,559,12.5\n102,560,13.0\n102,561,13.5\n102,562,14.0\n102,563,14.5\n102,564,15.0\n102,565,15.5\n102,566,16.0\n102,567,16.5\n102,568,17.0\n102,569,17.5\n102,570,18.0\n102,571,18.5\n102,572,19.0\n102,573,19.5\n102,574,20.0\n102,575,10.5\n102,576,10.0\n102,577,9.5\n102,578,10.0\n102,579,10.5\n102,580,11.0\n102,581,11.5\n102,582,12.0\n102,583,12.5\n102,584,13.0\n102,585,13.5\n102,586,14.0\n102,587,14.5\n102,588,15.0\n102,589,15.5\n102,590,16.0\n102,591,16.5\n102,592,17.0\n102,593,17.5\n102,594,18.0\n102,595,18.5\n102,596,19.0\n102,597,19.5\n102,598,20.0\n102,599,20.5\n102,600,11.0\n102,601,10.5\n102,602,10.0\n102,603,10.5\n102,604,11.0\n102,605,11.5\n102,606,12.0\n102,607,12.5\n102,608,13.0\n102,609,13.5\n102,610,14.0\n102,611,14.5\n102,612,15.0\n102,613,15.5\n102,614,16.0\n102,615,16.5\n102,616,17.0\n102,617,17.5\n102,618,18.0\n102,619,18.5\n102,620,19.0\n102,621,19.5\n102,622,20.0\n102,623,20.5\n102,624,21.0\n103,0,3.5\n103,1,3.0\n103,2,2.5\n103,3,2.0\n103,4,2.5\n103,5,3.0\n103,6,3.5\n103,7,4.0\n103,8,4.5\n103,9,5.0\n103,10,5.5\n103,11,6.0\n103,12,6.5\n103,13,7.0\n103,14,7.5\n103,15,8.0\n103,16,8.5\n103,17,9.0\n103,18,9.5\n103,19,10.0\n103,20,10.5\n103,21,11.0\n103,22,11.5\n103,23,12.0\n103,24,12.5\n103,25,3.0\n103,26,2.5\n103,27,2.0\n103,28,1.5\n103,29,2.0\n103,30,2.5\n103,31,3.0\n103,32,3.5\n103,33,4.0\n103,34,4.5\n103,35,5.0\n103,36,5.5\n103,37,6.0\n103,38,6.5\n103,39,7.0\n103,40,7.5\n103,41,8.0\n103,42,8.5\n103,43,9.0\n103,44,9.5\n103,45,10.0\n103,46,10.5\n103,47,11.0\n103,48,11.5\n103,49,12.0\n103,50,2.5\n103,51,2.0\n103,52,1.5\n103,53,1.0\n103,54,1.5\n103,55,2.0\n103,56,2.5\n103,57,3.0\n103,58,3.5\n103,59,4.0\n103,60,4.5\n103,61,5.0\n103,62,5.5\n103,63,6.0\n103,64,6.5\n103,65,7.0\n103,66,7.5\n103,67,8.0\n103,68,8.5\n103,69,9.0\n103,70,9.5\n103,71,10.0\n103,72,10.5\n103,73,11.0\n103,74,11.5\n103,75,2.0\n103,76,1.5\n103,77,1.0\n103,78,0.5\n103,79,1.0\n103,80,1.5\n103,81,2.0\n103,82,2.5\n103,83,3.0\n103,84,3.5\n103,85,4.0\n103,86,4.5\n103,87,5.0\n103,88,5.5\n103,89,6.0\n103,90,6.5\n103,91,7.0\n103,92,7.5\n103,93,8.0\n103,94,8.5\n103,95,9.0\n103,96,9.5\n103,97,10.0\n103,98,10.5\n103,99,11.0\n103,100,1.5\n103,101,1.0\n103,102,0.5\n103,103,0\n103,104,0.5\n103,105,1.0\n103,106,1.5\n103,107,2.0\n103,108,2.5\n103,109,3.0\n103,110,3.5\n103,111,4.0\n103,112,4.5\n103,113,5.0\n103,114,5.5\n103,115,6.0\n103,116,6.5\n103,117,7.0\n103,118,7.5\n103,119,8.0\n103,120,8.5\n103,121,9.0\n103,122,9.5\n103,123,10.0\n103,124,10.5\n103,125,2.0\n103,126,1.5\n103,127,1.0\n103,128,0.5\n103,129,1.0\n103,130,1.5\n103,131,2.0\n103,132,2.5\n103,133,3.0\n103,134,3.5\n103,135,4.0\n103,136,4.5\n103,137,5.0\n103,138,5.5\n103,139,6.0\n103,140,6.5\n103,141,7.0\n103,142,7.5\n103,143,8.0\n103,144,8.5\n103,145,9.0\n103,146,9.5\n103,147,10.0\n103,148,10.5\n103,149,11.0\n103,150,2.5\n103,151,2.0\n103,152,1.5\n103,153,1.0\n103,154,1.5\n103,155,2.0\n103,156,2.5\n103,157,3.0\n103,158,3.5\n103,159,4.0\n103,160,4.5\n103,161,5.0\n103,162,5.5\n103,163,6.0\n103,164,6.5\n103,165,7.0\n103,166,7.5\n103,167,8.0\n103,168,8.5\n103,169,9.0\n103,170,9.5\n103,171,10.0\n103,172,10.5\n103,173,11.0\n103,174,11.5\n103,175,3.0\n103,176,2.5\n103,177,2.0\n103,178,1.5\n103,179,2.0\n103,180,2.5\n103,181,3.0\n103,182,3.5\n103,183,4.0\n103,184,4.5\n103,185,5.0\n103,186,5.5\n103,187,6.0\n103,188,6.5\n103,189,7.0\n103,190,7.5\n103,191,8.0\n103,192,8.5\n103,193,9.0\n103,194,9.5\n103,195,10.0\n103,196,10.5\n103,197,11.0\n103,198,11.5\n103,199,12.0\n103,200,3.5\n103,201,3.0\n103,202,2.5\n103,203,2.0\n103,204,2.5\n103,205,3.0\n103,206,3.5\n103,207,4.0\n103,208,4.5\n103,209,5.0\n103,210,5.5\n103,211,6.0\n103,212,6.5\n103,213,7.0\n103,214,7.5\n103,215,8.0\n103,216,8.5\n103,217,9.0\n103,218,9.5\n103,219,10.0\n103,220,10.5\n103,221,11.0\n103,222,11.5\n103,223,12.0\n103,224,12.5\n103,225,4.0\n103,226,3.5\n103,227,3.0\n103,228,2.5\n103,229,3.0\n103,230,3.5\n103,231,4.0\n103,232,4.5\n103,233,5.0\n103,234,5.5\n103,235,6.0\n103,236,6.5\n103,237,7.0\n103,238,7.5\n103,239,8.0\n103,240,8.5\n103,241,9.0\n103,242,9.5\n103,243,10.0\n103,244,10.5\n103,245,11.0\n103,246,11.5\n103,247,12.0\n103,248,12.5\n103,249,13.0\n103,250,4.5\n103,251,4.0\n103,252,3.5\n103,253,3.0\n103,254,3.5\n103,255,4.0\n103,256,4.5\n103,257,5.0\n103,258,5.5\n103,259,6.0\n103,260,6.5\n103,261,7.0\n103,262,7.5\n103,263,8.0\n103,264,8.5\n103,265,9.0\n103,266,9.5\n103,267,10.0\n103,268,10.5\n103,269,11.0\n103,270,11.5\n103,271,12.0\n103,272,12.5\n103,273,13.0\n103,274,13.5\n103,275,5.0\n103,276,4.5\n103,277,4.0\n103,278,3.5\n103,279,4.0\n103,280,4.5\n103,281,5.0\n103,282,5.5\n103,283,6.0\n103,284,6.5\n103,285,7.0\n103,286,7.5\n103,287,8.0\n103,288,8.5\n103,289,9.0\n103,290,9.5\n103,291,10.0\n103,292,10.5\n103,293,11.0\n103,294,11.5\n103,295,12.0\n103,296,12.5\n103,297,13.0\n103,298,13.5\n103,299,14.0\n103,300,5.5\n103,301,5.0\n103,302,4.5\n103,303,4.0\n103,304,4.5\n103,305,5.0\n103,306,5.5\n103,307,6.0\n103,308,6.5\n103,309,7.0\n103,310,7.5\n103,311,8.0\n103,312,8.5\n103,313,9.0\n103,314,9.5\n103,315,10.0\n103,316,10.5\n103,317,11.0\n103,318,11.5\n103,319,12.0\n103,320,12.5\n103,321,13.0\n103,322,13.5\n103,323,14.0\n103,324,14.5\n103,325,6.0\n103,326,5.5\n103,327,5.0\n103,328,4.5\n103,329,5.0\n103,330,5.5\n103,331,6.0\n103,332,6.5\n103,333,7.0\n103,334,7.5\n103,335,8.0\n103,336,8.5\n103,337,9.0\n103,338,9.5\n103,339,10.0\n103,340,10.5\n103,341,11.0\n103,342,11.5\n103,343,12.0\n103,344,12.5\n103,345,13.0\n103,346,13.5\n103,347,14.0\n103,348,14.5\n103,349,15.0\n103,350,6.5\n103,351,6.0\n103,352,5.5\n103,353,5.0\n103,354,5.5\n103,355,6.0\n103,356,6.5\n103,357,7.0\n103,358,7.5\n103,359,8.0\n103,360,8.5\n103,361,9.0\n103,362,9.5\n103,363,10.0\n103,364,10.5\n103,365,11.0\n103,366,11.5\n103,367,12.0\n103,368,12.5\n103,369,13.0\n103,370,13.5\n103,371,14.0\n103,372,14.5\n103,373,15.0\n103,374,15.5\n103,375,7.0\n103,376,6.5\n103,377,6.0\n103,378,5.5\n103,379,6.0\n103,380,6.5\n103,381,7.0\n103,382,7.5\n103,383,8.0\n103,384,8.5\n103,385,9.0\n103,386,9.5\n103,387,10.0\n103,388,10.5\n103,389,11.0\n103,390,11.5\n103,391,12.0\n103,392,12.5\n103,393,13.0\n103,394,13.5\n103,395,14.0\n103,396,14.5\n103,397,15.0\n103,398,15.5\n103,399,16.0\n103,400,7.5\n103,401,7.0\n103,402,6.5\n103,403,6.0\n103,404,6.5\n103,405,7.0\n103,406,7.5\n103,407,8.0\n103,408,8.5\n103,409,9.0\n103,410,9.5\n103,411,10.0\n103,412,10.5\n103,413,11.0\n103,414,11.5\n103,415,12.0\n103,416,12.5\n103,417,13.0\n103,418,13.5\n103,419,14.0\n103,420,14.5\n103,421,15.0\n103,422,15.5\n103,423,16.0\n103,424,16.5\n103,425,8.0\n103,426,7.5\n103,427,7.0\n103,428,6.5\n103,429,7.0\n103,430,7.5\n103,431,8.0\n103,432,8.5\n103,433,9.0\n103,434,9.5\n103,435,10.0\n103,436,10.5\n103,437,11.0\n103,438,11.5\n103,439,12.0\n103,440,12.5\n103,441,13.0\n103,442,13.5\n103,443,14.0\n103,444,14.5\n103,445,15.0\n103,446,15.5\n103,447,16.0\n103,448,16.5\n103,449,17.0\n103,450,8.5\n103,451,8.0\n103,452,7.5\n103,453,7.0\n103,454,7.5\n103,455,8.0\n103,456,8.5\n103,457,9.0\n103,458,9.5\n103,459,10.0\n103,460,10.5\n103,461,11.0\n103,462,11.5\n103,463,12.0\n103,464,12.5\n103,465,13.0\n103,466,13.5\n103,467,14.0\n103,468,14.5\n103,469,15.0\n103,470,15.5\n103,471,16.0\n103,472,16.5\n103,473,17.0\n103,474,17.5\n103,475,9.0\n103,476,8.5\n103,477,8.0\n103,478,7.5\n103,479,8.0\n103,480,8.5\n103,481,9.0\n103,482,9.5\n103,483,10.0\n103,484,10.5\n103,485,11.0\n103,486,11.5\n103,487,12.0\n103,488,12.5\n103,489,13.0\n103,490,13.5\n103,491,14.0\n103,492,14.5\n103,493,15.0\n103,494,15.5\n103,495,16.0\n103,496,16.5\n103,497,17.0\n103,498,17.5\n103,499,18.0\n103,500,9.5\n103,501,9.0\n103,502,8.5\n103,503,8.0\n103,504,8.5\n103,505,9.0\n103,506,9.5\n103,507,10.0\n103,508,10.5\n103,509,11.0\n103,510,11.5\n103,511,12.0\n103,512,12.5\n103,513,13.0\n103,514,13.5\n103,515,14.0\n103,516,14.5\n103,517,15.0\n103,518,15.5\n103,519,16.0\n103,520,16.5\n103,521,17.0\n103,522,17.5\n103,523,18.0\n103,524,18.5\n103,525,10.0\n103,526,9.5\n103,527,9.0\n103,528,8.5\n103,529,9.0\n103,530,9.5\n103,531,10.0\n103,532,10.5\n103,533,11.0\n103,534,11.5\n103,535,12.0\n103,536,12.5\n103,537,13.0\n103,538,13.5\n103,539,14.0\n103,540,14.5\n103,541,15.0\n103,542,15.5\n103,543,16.0\n103,544,16.5\n103,545,17.0\n103,546,17.5\n103,547,18.0\n103,548,18.5\n103,549,19.0\n103,550,10.5\n103,551,10.0\n103,552,9.5\n103,553,9.0\n103,554,9.5\n103,555,10.0\n103,556,10.5\n103,557,11.0\n103,558,11.5\n103,559,12.0\n103,560,12.5\n103,561,13.0\n103,562,13.5\n103,563,14.0\n103,564,14.5\n103,565,15.0\n103,566,15.5\n103,567,16.0\n103,568,16.5\n103,569,17.0\n103,570,17.5\n103,571,18.0\n103,572,18.5\n103,573,19.0\n103,574,19.5\n103,575,11.0\n103,576,10.5\n103,577,10.0\n103,578,9.5\n103,579,10.0\n103,580,10.5\n103,581,11.0\n103,582,11.5\n103,583,12.0\n103,584,12.5\n103,585,13.0\n103,586,13.5\n103,587,14.0\n103,588,14.5\n103,589,15.0\n103,590,15.5\n103,591,16.0\n103,592,16.5\n103,593,17.0\n103,594,17.5\n103,595,18.0\n103,596,18.5\n103,597,19.0\n103,598,19.5\n103,599,20.0\n103,600,11.5\n103,601,11.0\n103,602,10.5\n103,603,10.0\n103,604,10.5\n103,605,11.0\n103,606,11.5\n103,607,12.0\n103,608,12.5\n103,609,13.0\n103,610,13.5\n103,611,14.0\n103,612,14.5\n103,613,15.0\n103,614,15.5\n103,615,16.0\n103,616,16.5\n103,617,17.0\n103,618,17.5\n103,619,18.0\n103,620,18.5\n103,621,19.0\n103,622,19.5\n103,623,20.0\n103,624,20.5\n104,0,4.0\n104,1,3.5\n104,2,3.0\n104,3,2.5\n104,4,2.0\n104,5,2.5\n104,6,3.0\n104,7,3.5\n104,8,4.0\n104,9,4.5\n104,10,5.0\n104,11,5.5\n104,12,6.0\n104,13,6.5\n104,14,7.0\n104,15,7.5\n104,16,8.0\n104,17,8.5\n104,18,9.0\n104,19,9.5\n104,20,10.0\n104,21,10.5\n104,22,11.0\n104,23,11.5\n104,24,12.0\n104,25,3.5\n104,26,3.0\n104,27,2.5\n104,28,2.0\n104,29,1.5\n104,30,2.0\n104,31,2.5\n104,32,3.0\n104,33,3.5\n104,34,4.0\n104,35,4.5\n104,36,5.0\n104,37,5.5\n104,38,6.0\n104,39,6.5\n104,40,7.0\n104,41,7.5\n104,42,8.0\n104,43,8.5\n104,44,9.0\n104,45,9.5\n104,46,10.0\n104,47,10.5\n104,48,11.0\n104,49,11.5\n104,50,3.0\n104,51,2.5\n104,52,2.0\n104,53,1.5\n104,54,1.0\n104,55,1.5\n104,56,2.0\n104,57,2.5\n104,58,3.0\n104,59,3.5\n104,60,4.0\n104,61,4.5\n104,62,5.0\n104,63,5.5\n104,64,6.0\n104,65,6.5\n104,66,7.0\n104,67,7.5\n104,68,8.0\n104,69,8.5\n104,70,9.0\n104,71,9.5\n104,72,10.0\n104,73,10.5\n104,74,11.0\n104,75,2.5\n104,76,2.0\n104,77,1.5\n104,78,1.0\n104,79,0.5\n104,80,1.0\n104,81,1.5\n104,82,2.0\n104,83,2.5\n104,84,3.0\n104,85,3.5\n104,86,4.0\n104,87,4.5\n104,88,5.0\n104,89,5.5\n104,90,6.0\n104,91,6.5\n104,92,7.0\n104,93,7.5\n104,94,8.0\n104,95,8.5\n104,96,9.0\n104,97,9.5\n104,98,10.0\n104,99,10.5\n104,100,2.0\n104,101,1.5\n104,102,1.0\n104,103,0.5\n104,104,0\n104,105,0.5\n104,106,1.0\n104,107,1.5\n104,108,2.0\n104,109,2.5\n104,110,3.0\n104,111,3.5\n104,112,4.0\n104,113,4.5\n104,114,5.0\n104,115,5.5\n104,116,6.0\n104,117,6.5\n104,118,7.0\n104,119,7.5\n104,120,8.0\n104,121,8.5\n104,122,9.0\n104,123,9.5\n104,124,10.0\n104,125,2.5\n104,126,2.0\n104,127,1.5\n104,128,1.0\n104,129,0.5\n104,130,1.0\n104,131,1.5\n104,132,2.0\n104,133,2.5\n104,134,3.0\n104,135,3.5\n104,136,4.0\n104,137,4.5\n104,138,5.0\n104,139,5.5\n104,140,6.0\n104,141,6.5\n104,142,7.0\n104,143,7.5\n104,144,8.0\n104,145,8.5\n104,146,9.0\n104,147,9.5\n104,148,10.0\n104,149,10.5\n104,150,3.0\n104,151,2.5\n104,152,2.0\n104,153,1.5\n104,154,1.0\n104,155,1.5\n104,156,2.0\n104,157,2.5\n104,158,3.0\n104,159,3.5\n104,160,4.0\n104,161,4.5\n104,162,5.0\n104,163,5.5\n104,164,6.0\n104,165,6.5\n104,166,7.0\n104,167,7.5\n104,168,8.0\n104,169,8.5\n104,170,9.0\n104,171,9.5\n104,172,10.0\n104,173,10.5\n104,174,11.0\n104,175,3.5\n104,176,3.0\n104,177,2.5\n104,178,2.0\n104,179,1.5\n104,180,2.0\n104,181,2.5\n104,182,3.0\n104,183,3.5\n104,184,4.0\n104,185,4.5\n104,186,5.0\n104,187,5.5\n104,188,6.0\n104,189,6.5\n104,190,7.0\n104,191,7.5\n104,192,8.0\n104,193,8.5\n104,194,9.0\n104,195,9.5\n104,196,10.0\n104,197,10.5\n104,198,11.0\n104,199,11.5\n104,200,4.0\n104,201,3.5\n104,202,3.0\n104,203,2.5\n104,204,2.0\n104,205,2.5\n104,206,3.0\n104,207,3.5\n104,208,4.0\n104,209,4.5\n104,210,5.0\n104,211,5.5\n104,212,6.0\n104,213,6.5\n104,214,7.0\n104,215,7.5\n104,216,8.0\n104,217,8.5\n104,218,9.0\n104,219,9.5\n104,220,10.0\n104,221,10.5\n104,222,11.0\n104,223,11.5\n104,224,12.0\n104,225,4.5\n104,226,4.0\n104,227,3.5\n104,228,3.0\n104,229,2.5\n104,230,3.0\n104,231,3.5\n104,232,4.0\n104,233,4.5\n104,234,5.0\n104,235,5.5\n104,236,6.0\n104,237,6.5\n104,238,7.0\n104,239,7.5\n104,240,8.0\n104,241,8.5\n104,242,9.0\n104,243,9.5\n104,244,10.0\n104,245,10.5\n104,246,11.0\n104,247,11.5\n104,248,12.0\n104,249,12.5\n104,250,5.0\n104,251,4.5\n104,252,4.0\n104,253,3.5\n104,254,3.0\n104,255,3.5\n104,256,4.0\n104,257,4.5\n104,258,5.0\n104,259,5.5\n104,260,6.0\n104,261,6.5\n104,262,7.0\n104,263,7.5\n104,264,8.0\n104,265,8.5\n104,266,9.0\n104,267,9.5\n104,268,10.0\n104,269,10.5\n104,270,11.0\n104,271,11.5\n104,272,12.0\n104,273,12.5\n104,274,13.0\n104,275,5.5\n104,276,5.0\n104,277,4.5\n104,278,4.0\n104,279,3.5\n104,280,4.0\n104,281,4.5\n104,282,5.0\n104,283,5.5\n104,284,6.0\n104,285,6.5\n104,286,7.0\n104,287,7.5\n104,288,8.0\n104,289,8.5\n104,290,9.0\n104,291,9.5\n104,292,10.0\n104,293,10.5\n104,294,11.0\n104,295,11.5\n104,296,12.0\n104,297,12.5\n104,298,13.0\n104,299,13.5\n104,300,6.0\n104,301,5.5\n104,302,5.0\n104,303,4.5\n104,304,4.0\n104,305,4.5\n104,306,5.0\n104,307,5.5\n104,308,6.0\n104,309,6.5\n104,310,7.0\n104,311,7.5\n104,312,8.0\n104,313,8.5\n104,314,9.0\n104,315,9.5\n104,316,10.0\n104,317,10.5\n104,318,11.0\n104,319,11.5\n104,320,12.0\n104,321,12.5\n104,322,13.0\n104,323,13.5\n104,324,14.0\n104,325,6.5\n104,326,6.0\n104,327,5.5\n104,328,5.0\n104,329,4.5\n104,330,5.0\n104,331,5.5\n104,332,6.0\n104,333,6.5\n104,334,7.0\n104,335,7.5\n104,336,8.0\n104,337,8.5\n104,338,9.0\n104,339,9.5\n104,340,10.0\n104,341,10.5\n104,342,11.0\n104,343,11.5\n104,344,12.0\n104,345,12.5\n104,346,13.0\n104,347,13.5\n104,348,14.0\n104,349,14.5\n104,350,7.0\n104,351,6.5\n104,352,6.0\n104,353,5.5\n104,354,5.0\n104,355,5.5\n104,356,6.0\n104,357,6.5\n104,358,7.0\n104,359,7.5\n104,360,8.0\n104,361,8.5\n104,362,9.0\n104,363,9.5\n104,364,10.0\n104,365,10.5\n104,366,11.0\n104,367,11.5\n104,368,12.0\n104,369,12.5\n104,370,13.0\n104,371,13.5\n104,372,14.0\n104,373,14.5\n104,374,15.0\n104,375,7.5\n104,376,7.0\n104,377,6.5\n104,378,6.0\n104,379,5.5\n104,380,6.0\n104,381,6.5\n104,382,7.0\n104,383,7.5\n104,384,8.0\n104,385,8.5\n104,386,9.0\n104,387,9.5\n104,388,10.0\n104,389,10.5\n104,390,11.0\n104,391,11.5\n104,392,12.0\n104,393,12.5\n104,394,13.0\n104,395,13.5\n104,396,14.0\n104,397,14.5\n104,398,15.0\n104,399,15.5\n104,400,8.0\n104,401,7.5\n104,402,7.0\n104,403,6.5\n104,404,6.0\n104,405,6.5\n104,406,7.0\n104,407,7.5\n104,408,8.0\n104,409,8.5\n104,410,9.0\n104,411,9.5\n104,412,10.0\n104,413,10.5\n104,414,11.0\n104,415,11.5\n104,416,12.0\n104,417,12.5\n104,418,13.0\n104,419,13.5\n104,420,14.0\n104,421,14.5\n104,422,15.0\n104,423,15.5\n104,424,16.0\n104,425,8.5\n104,426,8.0\n104,427,7.5\n104,428,7.0\n104,429,6.5\n104,430,7.0\n104,431,7.5\n104,432,8.0\n104,433,8.5\n104,434,9.0\n104,435,9.5\n104,436,10.0\n104,437,10.5\n104,438,11.0\n104,439,11.5\n104,440,12.0\n104,441,12.5\n104,442,13.0\n104,443,13.5\n104,444,14.0\n104,445,14.5\n104,446,15.0\n104,447,15.5\n104,448,16.0\n104,449,16.5\n104,450,9.0\n104,451,8.5\n104,452,8.0\n104,453,7.5\n104,454,7.0\n104,455,7.5\n104,456,8.0\n104,457,8.5\n104,458,9.0\n104,459,9.5\n104,460,10.0\n104,461,10.5\n104,462,11.0\n104,463,11.5\n104,464,12.0\n104,465,12.5\n104,466,13.0\n104,467,13.5\n104,468,14.0\n104,469,14.5\n104,470,15.0\n104,471,15.5\n104,472,16.0\n104,473,16.5\n104,474,17.0\n104,475,9.5\n104,476,9.0\n104,477,8.5\n104,478,8.0\n104,479,7.5\n104,480,8.0\n104,481,8.5\n104,482,9.0\n104,483,9.5\n104,484,10.0\n104,485,10.5\n104,486,11.0\n104,487,11.5\n104,488,12.0\n104,489,12.5\n104,490,13.0\n104,491,13.5\n104,492,14.0\n104,493,14.5\n104,494,15.0\n104,495,15.5\n104,496,16.0\n104,497,16.5\n104,498,17.0\n104,499,17.5\n104,500,10.0\n104,501,9.5\n104,502,9.0\n104,503,8.5\n104,504,8.0\n104,505,8.5\n104,506,9.0\n104,507,9.5\n104,508,10.0\n104,509,10.5\n104,510,11.0\n104,511,11.5\n104,512,12.0\n104,513,12.5\n104,514,13.0\n104,515,13.5\n104,516,14.0\n104,517,14.5\n104,518,15.0\n104,519,15.5\n104,520,16.0\n104,521,16.5\n104,522,17.0\n104,523,17.5\n104,524,18.0\n104,525,10.5\n104,526,10.0\n104,527,9.5\n104,528,9.0\n104,529,8.5\n104,530,9.0\n104,531,9.5\n104,532,10.0\n104,533,10.5\n104,534,11.0\n104,535,11.5\n104,536,12.0\n104,537,12.5\n104,538,13.0\n104,539,13.5\n104,540,14.0\n104,541,14.5\n104,542,15.0\n104,543,15.5\n104,544,16.0\n104,545,16.5\n104,546,17.0\n104,547,17.5\n104,548,18.0\n104,549,18.5\n104,550,11.0\n104,551,10.5\n104,552,10.0\n104,553,9.5\n104,554,9.0\n104,555,9.5\n104,556,10.0\n104,557,10.5\n104,558,11.0\n104,559,11.5\n104,560,12.0\n104,561,12.5\n104,562,13.0\n104,563,13.5\n104,564,14.0\n104,565,14.5\n104,566,15.0\n104,567,15.5\n104,568,16.0\n104,569,16.5\n104,570,17.0\n104,571,17.5\n104,572,18.0\n104,573,18.5\n104,574,19.0\n104,575,11.5\n104,576,11.0\n104,577,10.5\n104,578,10.0\n104,579,9.5\n104,580,10.0\n104,581,10.5\n104,582,11.0\n104,583,11.5\n104,584,12.0\n104,585,12.5\n104,586,13.0\n104,587,13.5\n104,588,14.0\n104,589,14.5\n104,590,15.0\n104,591,15.5\n104,592,16.0\n104,593,16.5\n104,594,17.0\n104,595,17.5\n104,596,18.0\n104,597,18.5\n104,598,19.0\n104,599,19.5\n104,600,12.0\n104,601,11.5\n104,602,11.0\n104,603,10.5\n104,604,10.0\n104,605,10.5\n104,606,11.0\n104,607,11.5\n104,608,12.0\n104,609,12.5\n104,610,13.0\n104,611,13.5\n104,612,14.0\n104,613,14.5\n104,614,15.0\n104,615,15.5\n104,616,16.0\n104,617,16.5\n104,618,17.0\n104,619,17.5\n104,620,18.0\n104,621,18.5\n104,622,19.0\n104,623,19.5\n104,624,20.0\n105,0,4.5\n105,1,4.0\n105,2,3.5\n105,3,3.0\n105,4,2.5\n105,5,2.0\n105,6,2.5\n105,7,3.0\n105,8,3.5\n105,9,4.0\n105,10,4.5\n105,11,5.0\n105,12,5.5\n105,13,6.0\n105,14,6.5\n105,15,7.0\n105,16,7.5\n105,17,8.0\n105,18,8.5\n105,19,9.0\n105,20,9.5\n105,21,10.0\n105,22,10.5\n105,23,11.0\n105,24,11.5\n105,25,4.0\n105,26,3.5\n105,27,3.0\n105,28,2.5\n105,29,2.0\n105,30,1.5\n105,31,2.0\n105,32,2.5\n105,33,3.0\n105,34,3.5\n105,35,4.0\n105,36,4.5\n105,37,5.0\n105,38,5.5\n105,39,6.0\n105,40,6.5\n105,41,7.0\n105,42,7.5\n105,43,8.0\n105,44,8.5\n105,45,9.0\n105,46,9.5\n105,47,10.0\n105,48,10.5\n105,49,11.0\n105,50,3.5\n105,51,3.0\n105,52,2.5\n105,53,2.0\n105,54,1.5\n105,55,1.0\n105,56,1.5\n105,57,2.0\n105,58,2.5\n105,59,3.0\n105,60,3.5\n105,61,4.0\n105,62,4.5\n105,63,5.0\n105,64,5.5\n105,65,6.0\n105,66,6.5\n105,67,7.0\n105,68,7.5\n105,69,8.0\n105,70,8.5\n105,71,9.0\n105,72,9.5\n105,73,10.0\n105,74,10.5\n105,75,3.0\n105,76,2.5\n105,77,2.0\n105,78,1.5\n105,79,1.0\n105,80,0.5\n105,81,1.0\n105,82,1.5\n105,83,2.0\n105,84,2.5\n105,85,3.0\n105,86,3.5\n105,87,4.0\n105,88,4.5\n105,89,5.0\n105,90,5.5\n105,91,6.0\n105,92,6.5\n105,93,7.0\n105,94,7.5\n105,95,8.0\n105,96,8.5\n105,97,9.0\n105,98,9.5\n105,99,10.0\n105,100,2.5\n105,101,2.0\n105,102,1.5\n105,103,1.0\n105,104,0.5\n105,105,0\n105,106,0.5\n105,107,1.0\n105,108,1.5\n105,109,2.0\n105,110,2.5\n105,111,3.0\n105,112,3.5\n105,113,4.0\n105,114,4.5\n105,115,5.0\n105,116,5.5\n105,117,6.0\n105,118,6.5\n105,119,7.0\n105,120,7.5\n105,121,8.0\n105,122,8.5\n105,123,9.0\n105,124,9.5\n105,125,3.0\n105,126,2.5\n105,127,2.0\n105,128,1.5\n105,129,1.0\n105,130,0.5\n105,131,1.0\n105,132,1.5\n105,133,2.0\n105,134,2.5\n105,135,3.0\n105,136,3.5\n105,137,4.0\n105,138,4.5\n105,139,5.0\n105,140,5.5\n105,141,6.0\n105,142,6.5\n105,143,7.0\n105,144,7.5\n105,145,8.0\n105,146,8.5\n105,147,9.0\n105,148,9.5\n105,149,10.0\n105,150,3.5\n105,151,3.0\n105,152,2.5\n105,153,2.0\n105,154,1.5\n105,155,1.0\n105,156,1.5\n105,157,2.0\n105,158,2.5\n105,159,3.0\n105,160,3.5\n105,161,4.0\n105,162,4.5\n105,163,5.0\n105,164,5.5\n105,165,6.0\n105,166,6.5\n105,167,7.0\n105,168,7.5\n105,169,8.0\n105,170,8.5\n105,171,9.0\n105,172,9.5\n105,173,10.0\n105,174,10.5\n105,175,4.0\n105,176,3.5\n105,177,3.0\n105,178,2.5\n105,179,2.0\n105,180,1.5\n105,181,2.0\n105,182,2.5\n105,183,3.0\n105,184,3.5\n105,185,4.0\n105,186,4.5\n105,187,5.0\n105,188,5.5\n105,189,6.0\n105,190,6.5\n105,191,7.0\n105,192,7.5\n105,193,8.0\n105,194,8.5\n105,195,9.0\n105,196,9.5\n105,197,10.0\n105,198,10.5\n105,199,11.0\n105,200,4.5\n105,201,4.0\n105,202,3.5\n105,203,3.0\n105,204,2.5\n105,205,2.0\n105,206,2.5\n105,207,3.0\n105,208,3.5\n105,209,4.0\n105,210,4.5\n105,211,5.0\n105,212,5.5\n105,213,6.0\n105,214,6.5\n105,215,7.0\n105,216,7.5\n105,217,8.0\n105,218,8.5\n105,219,9.0\n105,220,9.5\n105,221,10.0\n105,222,10.5\n105,223,11.0\n105,224,11.5\n105,225,5.0\n105,226,4.5\n105,227,4.0\n105,228,3.5\n105,229,3.0\n105,230,2.5\n105,231,3.0\n105,232,3.5\n105,233,4.0\n105,234,4.5\n105,235,5.0\n105,236,5.5\n105,237,6.0\n105,238,6.5\n105,239,7.0\n105,240,7.5\n105,241,8.0\n105,242,8.5\n105,243,9.0\n105,244,9.5\n105,245,10.0\n105,246,10.5\n105,247,11.0\n105,248,11.5\n105,249,12.0\n105,250,5.5\n105,251,5.0\n105,252,4.5\n105,253,4.0\n105,254,3.5\n105,255,3.0\n105,256,3.5\n105,257,4.0\n105,258,4.5\n105,259,5.0\n105,260,5.5\n105,261,6.0\n105,262,6.5\n105,263,7.0\n105,264,7.5\n105,265,8.0\n105,266,8.5\n105,267,9.0\n105,268,9.5\n105,269,10.0\n105,270,10.5\n105,271,11.0\n105,272,11.5\n105,273,12.0\n105,274,12.5\n105,275,6.0\n105,276,5.5\n105,277,5.0\n105,278,4.5\n105,279,4.0\n105,280,3.5\n105,281,4.0\n105,282,4.5\n105,283,5.0\n105,284,5.5\n105,285,6.0\n105,286,6.5\n105,287,7.0\n105,288,7.5\n105,289,8.0\n105,290,8.5\n105,291,9.0\n105,292,9.5\n105,293,10.0\n105,294,10.5\n105,295,11.0\n105,296,11.5\n105,297,12.0\n105,298,12.5\n105,299,13.0\n105,300,6.5\n105,301,6.0\n105,302,5.5\n105,303,5.0\n105,304,4.5\n105,305,4.0\n105,306,4.5\n105,307,5.0\n105,308,5.5\n105,309,6.0\n105,310,6.5\n105,311,7.0\n105,312,7.5\n105,313,8.0\n105,314,8.5\n105,315,9.0\n105,316,9.5\n105,317,10.0\n105,318,10.5\n105,319,11.0\n105,320,11.5\n105,321,12.0\n105,322,12.5\n105,323,13.0\n105,324,13.5\n105,325,7.0\n105,326,6.5\n105,327,6.0\n105,328,5.5\n105,329,5.0\n105,330,4.5\n105,331,5.0\n105,332,5.5\n105,333,6.0\n105,334,6.5\n105,335,7.0\n105,336,7.5\n105,337,8.0\n105,338,8.5\n105,339,9.0\n105,340,9.5\n105,341,10.0\n105,342,10.5\n105,343,11.0\n105,344,11.5\n105,345,12.0\n105,346,12.5\n105,347,13.0\n105,348,13.5\n105,349,14.0\n105,350,7.5\n105,351,7.0\n105,352,6.5\n105,353,6.0\n105,354,5.5\n105,355,5.0\n105,356,5.5\n105,357,6.0\n105,358,6.5\n105,359,7.0\n105,360,7.5\n105,361,8.0\n105,362,8.5\n105,363,9.0\n105,364,9.5\n105,365,10.0\n105,366,10.5\n105,367,11.0\n105,368,11.5\n105,369,12.0\n105,370,12.5\n105,371,13.0\n105,372,13.5\n105,373,14.0\n105,374,14.5\n105,375,8.0\n105,376,7.5\n105,377,7.0\n105,378,6.5\n105,379,6.0\n105,380,5.5\n105,381,6.0\n105,382,6.5\n105,383,7.0\n105,384,7.5\n105,385,8.0\n105,386,8.5\n105,387,9.0\n105,388,9.5\n105,389,10.0\n105,390,10.5\n105,391,11.0\n105,392,11.5\n105,393,12.0\n105,394,12.5\n105,395,13.0\n105,396,13.5\n105,397,14.0\n105,398,14.5\n105,399,15.0\n105,400,8.5\n105,401,8.0\n105,402,7.5\n105,403,7.0\n105,404,6.5\n105,405,6.0\n105,406,6.5\n105,407,7.0\n105,408,7.5\n105,409,8.0\n105,410,8.5\n105,411,9.0\n105,412,9.5\n105,413,10.0\n105,414,10.5\n105,415,11.0\n105,416,11.5\n105,417,12.0\n105,418,12.5\n105,419,13.0\n105,420,13.5\n105,421,14.0\n105,422,14.5\n105,423,15.0\n105,424,15.5\n105,425,9.0\n105,426,8.5\n105,427,8.0\n105,428,7.5\n105,429,7.0\n105,430,6.5\n105,431,7.0\n105,432,7.5\n105,433,8.0\n105,434,8.5\n105,435,9.0\n105,436,9.5\n105,437,10.0\n105,438,10.5\n105,439,11.0\n105,440,11.5\n105,441,12.0\n105,442,12.5\n105,443,13.0\n105,444,13.5\n105,445,14.0\n105,446,14.5\n105,447,15.0\n105,448,15.5\n105,449,16.0\n105,450,9.5\n105,451,9.0\n105,452,8.5\n105,453,8.0\n105,454,7.5\n105,455,7.0\n105,456,7.5\n105,457,8.0\n105,458,8.5\n105,459,9.0\n105,460,9.5\n105,461,10.0\n105,462,10.5\n105,463,11.0\n105,464,11.5\n105,465,12.0\n105,466,12.5\n105,467,13.0\n105,468,13.5\n105,469,14.0\n105,470,14.5\n105,471,15.0\n105,472,15.5\n105,473,16.0\n105,474,16.5\n105,475,10.0\n105,476,9.5\n105,477,9.0\n105,478,8.5\n105,479,8.0\n105,480,7.5\n105,481,8.0\n105,482,8.5\n105,483,9.0\n105,484,9.5\n105,485,10.0\n105,486,10.5\n105,487,11.0\n105,488,11.5\n105,489,12.0\n105,490,12.5\n105,491,13.0\n105,492,13.5\n105,493,14.0\n105,494,14.5\n105,495,15.0\n105,496,15.5\n105,497,16.0\n105,498,16.5\n105,499,17.0\n105,500,10.5\n105,501,10.0\n105,502,9.5\n105,503,9.0\n105,504,8.5\n105,505,8.0\n105,506,8.5\n105,507,9.0\n105,508,9.5\n105,509,10.0\n105,510,10.5\n105,511,11.0\n105,512,11.5\n105,513,12.0\n105,514,12.5\n105,515,13.0\n105,516,13.5\n105,517,14.0\n105,518,14.5\n105,519,15.0\n105,520,15.5\n105,521,16.0\n105,522,16.5\n105,523,17.0\n105,524,17.5\n105,525,11.0\n105,526,10.5\n105,527,10.0\n105,528,9.5\n105,529,9.0\n105,530,8.5\n105,531,9.0\n105,532,9.5\n105,533,10.0\n105,534,10.5\n105,535,11.0\n105,536,11.5\n105,537,12.0\n105,538,12.5\n105,539,13.0\n105,540,13.5\n105,541,14.0\n105,542,14.5\n105,543,15.0\n105,544,15.5\n105,545,16.0\n105,546,16.5\n105,547,17.0\n105,548,17.5\n105,549,18.0\n105,550,11.5\n105,551,11.0\n105,552,10.5\n105,553,10.0\n105,554,9.5\n105,555,9.0\n105,556,9.5\n105,557,10.0\n105,558,10.5\n105,559,11.0\n105,560,11.5\n105,561,12.0\n105,562,12.5\n105,563,13.0\n105,564,13.5\n105,565,14.0\n105,566,14.5\n105,567,15.0\n105,568,15.5\n105,569,16.0\n105,570,16.5\n105,571,17.0\n105,572,17.5\n105,573,18.0\n105,574,18.5\n105,575,12.0\n105,576,11.5\n105,577,11.0\n105,578,10.5\n105,579,10.0\n105,580,9.5\n105,581,10.0\n105,582,10.5\n105,583,11.0\n105,584,11.5\n105,585,12.0\n105,586,12.5\n105,587,13.0\n105,588,13.5\n105,589,14.0\n105,590,14.5\n105,591,15.0\n105,592,15.5\n105,593,16.0\n105,594,16.5\n105,595,17.0\n105,596,17.5\n105,597,18.0\n105,598,18.5\n105,599,19.0\n105,600,12.5\n105,601,12.0\n105,602,11.5\n105,603,11.0\n105,604,10.5\n105,605,10.0\n105,606,10.5\n105,607,11.0\n105,608,11.5\n105,609,12.0\n105,610,12.5\n105,611,13.0\n105,612,13.5\n105,613,14.0\n105,614,14.5\n105,615,15.0\n105,616,15.5\n105,617,16.0\n105,618,16.5\n105,619,17.0\n105,620,17.5\n105,621,18.0\n105,622,18.5\n105,623,19.0\n105,624,19.5\n106,0,5.0\n106,1,4.5\n106,2,4.0\n106,3,3.5\n106,4,3.0\n106,5,2.5\n106,6,2.0\n106,7,2.5\n106,8,3.0\n106,9,3.5\n106,10,4.0\n106,11,4.5\n106,12,5.0\n106,13,5.5\n106,14,6.0\n106,15,6.5\n106,16,7.0\n106,17,7.5\n106,18,8.0\n106,19,8.5\n106,20,9.0\n106,21,9.5\n106,22,10.0\n106,23,10.5\n106,24,11.0\n106,25,4.5\n106,26,4.0\n106,27,3.5\n106,28,3.0\n106,29,2.5\n106,30,2.0\n106,31,1.5\n106,32,2.0\n106,33,2.5\n106,34,3.0\n106,35,3.5\n106,36,4.0\n106,37,4.5\n106,38,5.0\n106,39,5.5\n106,40,6.0\n106,41,6.5\n106,42,7.0\n106,43,7.5\n106,44,8.0\n106,45,8.5\n106,46,9.0\n106,47,9.5\n106,48,10.0\n106,49,10.5\n106,50,4.0\n106,51,3.5\n106,52,3.0\n106,53,2.5\n106,54,2.0\n106,55,1.5\n106,56,1.0\n106,57,1.5\n106,58,2.0\n106,59,2.5\n106,60,3.0\n106,61,3.5\n106,62,4.0\n106,63,4.5\n106,64,5.0\n106,65,5.5\n106,66,6.0\n106,67,6.5\n106,68,7.0\n106,69,7.5\n106,70,8.0\n106,71,8.5\n106,72,9.0\n106,73,9.5\n106,74,10.0\n106,75,3.5\n106,76,3.0\n106,77,2.5\n106,78,2.0\n106,79,1.5\n106,80,1.0\n106,81,0.5\n106,82,1.0\n106,83,1.5\n106,84,2.0\n106,85,2.5\n106,86,3.0\n106,87,3.5\n106,88,4.0\n106,89,4.5\n106,90,5.0\n106,91,5.5\n106,92,6.0\n106,93,6.5\n106,94,7.0\n106,95,7.5\n106,96,8.0\n106,97,8.5\n106,98,9.0\n106,99,9.5\n106,100,3.0\n106,101,2.5\n106,102,2.0\n106,103,1.5\n106,104,1.0\n106,105,0.5\n106,106,0\n106,107,0.5\n106,108,1.0\n106,109,1.5\n106,110,2.0\n106,111,2.5\n106,112,3.0\n106,113,3.5\n106,114,4.0\n106,115,4.5\n106,116,5.0\n106,117,5.5\n106,118,6.0\n106,119,6.5\n106,120,7.0\n106,121,7.5\n106,122,8.0\n106,123,8.5\n106,124,9.0\n106,125,3.5\n106,126,3.0\n106,127,2.5\n106,128,2.0\n106,129,1.5\n106,130,1.0\n106,131,0.5\n106,132,1.0\n106,133,1.5\n106,134,2.0\n106,135,2.5\n106,136,3.0\n106,137,3.5\n106,138,4.0\n106,139,4.5\n106,140,5.0\n106,141,5.5\n106,142,6.0\n106,143,6.5\n106,144,7.0\n106,145,7.5\n106,146,8.0\n106,147,8.5\n106,148,9.0\n106,149,9.5\n106,150,4.0\n106,151,3.5\n106,152,3.0\n106,153,2.5\n106,154,2.0\n106,155,1.5\n106,156,1.0\n106,157,1.5\n106,158,2.0\n106,159,2.5\n106,160,3.0\n106,161,3.5\n106,162,4.0\n106,163,4.5\n106,164,5.0\n106,165,5.5\n106,166,6.0\n106,167,6.5\n106,168,7.0\n106,169,7.5\n106,170,8.0\n106,171,8.5\n106,172,9.0\n106,173,9.5\n106,174,10.0\n106,175,4.5\n106,176,4.0\n106,177,3.5\n106,178,3.0\n106,179,2.5\n106,180,2.0\n106,181,1.5\n106,182,2.0\n106,183,2.5\n106,184,3.0\n106,185,3.5\n106,186,4.0\n106,187,4.5\n106,188,5.0\n106,189,5.5\n106,190,6.0\n106,191,6.5\n106,192,7.0\n106,193,7.5\n106,194,8.0\n106,195,8.5\n106,196,9.0\n106,197,9.5\n106,198,10.0\n106,199,10.5\n106,200,5.0\n106,201,4.5\n106,202,4.0\n106,203,3.5\n106,204,3.0\n106,205,2.5\n106,206,2.0\n106,207,2.5\n106,208,3.0\n106,209,3.5\n106,210,4.0\n106,211,4.5\n106,212,5.0\n106,213,5.5\n106,214,6.0\n106,215,6.5\n106,216,7.0\n106,217,7.5\n106,218,8.0\n106,219,8.5\n106,220,9.0\n106,221,9.5\n106,222,10.0\n106,223,10.5\n106,224,11.0\n106,225,5.5\n106,226,5.0\n106,227,4.5\n106,228,4.0\n106,229,3.5\n106,230,3.0\n106,231,2.5\n106,232,3.0\n106,233,3.5\n106,234,4.0\n106,235,4.5\n106,236,5.0\n106,237,5.5\n106,238,6.0\n106,239,6.5\n106,240,7.0\n106,241,7.5\n106,242,8.0\n106,243,8.5\n106,244,9.0\n106,245,9.5\n106,246,10.0\n106,247,10.5\n106,248,11.0\n106,249,11.5\n106,250,6.0\n106,251,5.5\n106,252,5.0\n106,253,4.5\n106,254,4.0\n106,255,3.5\n106,256,3.0\n106,257,3.5\n106,258,4.0\n106,259,4.5\n106,260,5.0\n106,261,5.5\n106,262,6.0\n106,263,6.5\n106,264,7.0\n106,265,7.5\n106,266,8.0\n106,267,8.5\n106,268,9.0\n106,269,9.5\n106,270,10.0\n106,271,10.5\n106,272,11.0\n106,273,11.5\n106,274,12.0\n106,275,6.5\n106,276,6.0\n106,277,5.5\n106,278,5.0\n106,279,4.5\n106,280,4.0\n106,281,3.5\n106,282,4.0\n106,283,4.5\n106,284,5.0\n106,285,5.5\n106,286,6.0\n106,287,6.5\n106,288,7.0\n106,289,7.5\n106,290,8.0\n106,291,8.5\n106,292,9.0\n106,293,9.5\n106,294,10.0\n106,295,10.5\n106,296,11.0\n106,297,11.5\n106,298,12.0\n106,299,12.5\n106,300,7.0\n106,301,6.5\n106,302,6.0\n106,303,5.5\n106,304,5.0\n106,305,4.5\n106,306,4.0\n106,307,4.5\n106,308,5.0\n106,309,5.5\n106,310,6.0\n106,311,6.5\n106,312,7.0\n106,313,7.5\n106,314,8.0\n106,315,8.5\n106,316,9.0\n106,317,9.5\n106,318,10.0\n106,319,10.5\n106,320,11.0\n106,321,11.5\n106,322,12.0\n106,323,12.5\n106,324,13.0\n106,325,7.5\n106,326,7.0\n106,327,6.5\n106,328,6.0\n106,329,5.5\n106,330,5.0\n106,331,4.5\n106,332,5.0\n106,333,5.5\n106,334,6.0\n106,335,6.5\n106,336,7.0\n106,337,7.5\n106,338,8.0\n106,339,8.5\n106,340,9.0\n106,341,9.5\n106,342,10.0\n106,343,10.5\n106,344,11.0\n106,345,11.5\n106,346,12.0\n106,347,12.5\n106,348,13.0\n106,349,13.5\n106,350,8.0\n106,351,7.5\n106,352,7.0\n106,353,6.5\n106,354,6.0\n106,355,5.5\n106,356,5.0\n106,357,5.5\n106,358,6.0\n106,359,6.5\n106,360,7.0\n106,361,7.5\n106,362,8.0\n106,363,8.5\n106,364,9.0\n106,365,9.5\n106,366,10.0\n106,367,10.5\n106,368,11.0\n106,369,11.5\n106,370,12.0\n106,371,12.5\n106,372,13.0\n106,373,13.5\n106,374,14.0\n106,375,8.5\n106,376,8.0\n106,377,7.5\n106,378,7.0\n106,379,6.5\n106,380,6.0\n106,381,5.5\n106,382,6.0\n106,383,6.5\n106,384,7.0\n106,385,7.5\n106,386,8.0\n106,387,8.5\n106,388,9.0\n106,389,9.5\n106,390,10.0\n106,391,10.5\n106,392,11.0\n106,393,11.5\n106,394,12.0\n106,395,12.5\n106,396,13.0\n106,397,13.5\n106,398,14.0\n106,399,14.5\n106,400,9.0\n106,401,8.5\n106,402,8.0\n106,403,7.5\n106,404,7.0\n106,405,6.5\n106,406,6.0\n106,407,6.5\n106,408,7.0\n106,409,7.5\n106,410,8.0\n106,411,8.5\n106,412,9.0\n106,413,9.5\n106,414,10.0\n106,415,10.5\n106,416,11.0\n106,417,11.5\n106,418,12.0\n106,419,12.5\n106,420,13.0\n106,421,13.5\n106,422,14.0\n106,423,14.5\n106,424,15.0\n106,425,9.5\n106,426,9.0\n106,427,8.5\n106,428,8.0\n106,429,7.5\n106,430,7.0\n106,431,6.5\n106,432,7.0\n106,433,7.5\n106,434,8.0\n106,435,8.5\n106,436,9.0\n106,437,9.5\n106,438,10.0\n106,439,10.5\n106,440,11.0\n106,441,11.5\n106,442,12.0\n106,443,12.5\n106,444,13.0\n106,445,13.5\n106,446,14.0\n106,447,14.5\n106,448,15.0\n106,449,15.5\n106,450,10.0\n106,451,9.5\n106,452,9.0\n106,453,8.5\n106,454,8.0\n106,455,7.5\n106,456,7.0\n106,457,7.5\n106,458,8.0\n106,459,8.5\n106,460,9.0\n106,461,9.5\n106,462,10.0\n106,463,10.5\n106,464,11.0\n106,465,11.5\n106,466,12.0\n106,467,12.5\n106,468,13.0\n106,469,13.5\n106,470,14.0\n106,471,14.5\n106,472,15.0\n106,473,15.5\n106,474,16.0\n106,475,10.5\n106,476,10.0\n106,477,9.5\n106,478,9.0\n106,479,8.5\n106,480,8.0\n106,481,7.5\n106,482,8.0\n106,483,8.5\n106,484,9.0\n106,485,9.5\n106,486,10.0\n106,487,10.5\n106,488,11.0\n106,489,11.5\n106,490,12.0\n106,491,12.5\n106,492,13.0\n106,493,13.5\n106,494,14.0\n106,495,14.5\n106,496,15.0\n106,497,15.5\n106,498,16.0\n106,499,16.5\n106,500,11.0\n106,501,10.5\n106,502,10.0\n106,503,9.5\n106,504,9.0\n106,505,8.5\n106,506,8.0\n106,507,8.5\n106,508,9.0\n106,509,9.5\n106,510,10.0\n106,511,10.5\n106,512,11.0\n106,513,11.5\n106,514,12.0\n106,515,12.5\n106,516,13.0\n106,517,13.5\n106,518,14.0\n106,519,14.5\n106,520,15.0\n106,521,15.5\n106,522,16.0\n106,523,16.5\n106,524,17.0\n106,525,11.5\n106,526,11.0\n106,527,10.5\n106,528,10.0\n106,529,9.5\n106,530,9.0\n106,531,8.5\n106,532,9.0\n106,533,9.5\n106,534,10.0\n106,535,10.5\n106,536,11.0\n106,537,11.5\n106,538,12.0\n106,539,12.5\n106,540,13.0\n106,541,13.5\n106,542,14.0\n106,543,14.5\n106,544,15.0\n106,545,15.5\n106,546,16.0\n106,547,16.5\n106,548,17.0\n106,549,17.5\n106,550,12.0\n106,551,11.5\n106,552,11.0\n106,553,10.5\n106,554,10.0\n106,555,9.5\n106,556,9.0\n106,557,9.5\n106,558,10.0\n106,559,10.5\n106,560,11.0\n106,561,11.5\n106,562,12.0\n106,563,12.5\n106,564,13.0\n106,565,13.5\n106,566,14.0\n106,567,14.5\n106,568,15.0\n106,569,15.5\n106,570,16.0\n106,571,16.5\n106,572,17.0\n106,573,17.5\n106,574,18.0\n106,575,12.5\n106,576,12.0\n106,577,11.5\n106,578,11.0\n106,579,10.5\n106,580,10.0\n106,581,9.5\n106,582,10.0\n106,583,10.5\n106,584,11.0\n106,585,11.5\n106,586,12.0\n106,587,12.5\n106,588,13.0\n106,589,13.5\n106,590,14.0\n106,591,14.5\n106,592,15.0\n106,593,15.5\n106,594,16.0\n106,595,16.5\n106,596,17.0\n106,597,17.5\n106,598,18.0\n106,599,18.5\n106,600,13.0\n106,601,12.5\n106,602,12.0\n106,603,11.5\n106,604,11.0\n106,605,10.5\n106,606,10.0\n106,607,10.5\n106,608,11.0\n106,609,11.5\n106,610,12.0\n106,611,12.5\n106,612,13.0\n106,613,13.5\n106,614,14.0\n106,615,14.5\n106,616,15.0\n106,617,15.5\n106,618,16.0\n106,619,16.5\n106,620,17.0\n106,621,17.5\n106,622,18.0\n106,623,18.5\n106,624,19.0\n107,0,5.5\n107,1,5.0\n107,2,4.5\n107,3,4.0\n107,4,3.5\n107,5,3.0\n107,6,2.5\n107,7,2.0\n107,8,2.5\n107,9,3.0\n107,10,3.5\n107,11,4.0\n107,12,4.5\n107,13,5.0\n107,14,5.5\n107,15,6.0\n107,16,6.5\n107,17,7.0\n107,18,7.5\n107,19,8.0\n107,20,8.5\n107,21,9.0\n107,22,9.5\n107,23,10.0\n107,24,10.5\n107,25,5.0\n107,26,4.5\n107,27,4.0\n107,28,3.5\n107,29,3.0\n107,30,2.5\n107,31,2.0\n107,32,1.5\n107,33,2.0\n107,34,2.5\n107,35,3.0\n107,36,3.5\n107,37,4.0\n107,38,4.5\n107,39,5.0\n107,40,5.5\n107,41,6.0\n107,42,6.5\n107,43,7.0\n107,44,7.5\n107,45,8.0\n107,46,8.5\n107,47,9.0\n107,48,9.5\n107,49,10.0\n107,50,4.5\n107,51,4.0\n107,52,3.5\n107,53,3.0\n107,54,2.5\n107,55,2.0\n107,56,1.5\n107,57,1.0\n107,58,1.5\n107,59,2.0\n107,60,2.5\n107,61,3.0\n107,62,3.5\n107,63,4.0\n107,64,4.5\n107,65,5.0\n107,66,5.5\n107,67,6.0\n107,68,6.5\n107,69,7.0\n107,70,7.5\n107,71,8.0\n107,72,8.5\n107,73,9.0\n107,74,9.5\n107,75,4.0\n107,76,3.5\n107,77,3.0\n107,78,2.5\n107,79,2.0\n107,80,1.5\n107,81,1.0\n107,82,0.5\n107,83,1.0\n107,84,1.5\n107,85,2.0\n107,86,2.5\n107,87,3.0\n107,88,3.5\n107,89,4.0\n107,90,4.5\n107,91,5.0\n107,92,5.5\n107,93,6.0\n107,94,6.5\n107,95,7.0\n107,96,7.5\n107,97,8.0\n107,98,8.5\n107,99,9.0\n107,100,3.5\n107,101,3.0\n107,102,2.5\n107,103,2.0\n107,104,1.5\n107,105,1.0\n107,106,0.5\n107,107,0\n107,108,0.5\n107,109,1.0\n107,110,1.5\n107,111,2.0\n107,112,2.5\n107,113,3.0\n107,114,3.5\n107,115,4.0\n107,116,4.5\n107,117,5.0\n107,118,5.5\n107,119,6.0\n107,120,6.5\n107,121,7.0\n107,122,7.5\n107,123,8.0\n107,124,8.5\n107,125,4.0\n107,126,3.5\n107,127,3.0\n107,128,2.5\n107,129,2.0\n107,130,1.5\n107,131,1.0\n107,132,0.5\n107,133,1.0\n107,134,1.5\n107,135,2.0\n107,136,2.5\n107,137,3.0\n107,138,3.5\n107,139,4.0\n107,140,4.5\n107,141,5.0\n107,142,5.5\n107,143,6.0\n107,144,6.5\n107,145,7.0\n107,146,7.5\n107,147,8.0\n107,148,8.5\n107,149,9.0\n107,150,4.5\n107,151,4.0\n107,152,3.5\n107,153,3.0\n107,154,2.5\n107,155,2.0\n107,156,1.5\n107,157,1.0\n107,158,1.5\n107,159,2.0\n107,160,2.5\n107,161,3.0\n107,162,3.5\n107,163,4.0\n107,164,4.5\n107,165,5.0\n107,166,5.5\n107,167,6.0\n107,168,6.5\n107,169,7.0\n107,170,7.5\n107,171,8.0\n107,172,8.5\n107,173,9.0\n107,174,9.5\n107,175,5.0\n107,176,4.5\n107,177,4.0\n107,178,3.5\n107,179,3.0\n107,180,2.5\n107,181,2.0\n107,182,1.5\n107,183,2.0\n107,184,2.5\n107,185,3.0\n107,186,3.5\n107,187,4.0\n107,188,4.5\n107,189,5.0\n107,190,5.5\n107,191,6.0\n107,192,6.5\n107,193,7.0\n107,194,7.5\n107,195,8.0\n107,196,8.5\n107,197,9.0\n107,198,9.5\n107,199,10.0\n107,200,5.5\n107,201,5.0\n107,202,4.5\n107,203,4.0\n107,204,3.5\n107,205,3.0\n107,206,2.5\n107,207,2.0\n107,208,2.5\n107,209,3.0\n107,210,3.5\n107,211,4.0\n107,212,4.5\n107,213,5.0\n107,214,5.5\n107,215,6.0\n107,216,6.5\n107,217,7.0\n107,218,7.5\n107,219,8.0\n107,220,8.5\n107,221,9.0\n107,222,9.5\n107,223,10.0\n107,224,10.5\n107,225,6.0\n107,226,5.5\n107,227,5.0\n107,228,4.5\n107,229,4.0\n107,230,3.5\n107,231,3.0\n107,232,2.5\n107,233,3.0\n107,234,3.5\n107,235,4.0\n107,236,4.5\n107,237,5.0\n107,238,5.5\n107,239,6.0\n107,240,6.5\n107,241,7.0\n107,242,7.5\n107,243,8.0\n107,244,8.5\n107,245,9.0\n107,246,9.5\n107,247,10.0\n107,248,10.5\n107,249,11.0\n107,250,6.5\n107,251,6.0\n107,252,5.5\n107,253,5.0\n107,254,4.5\n107,255,4.0\n107,256,3.5\n107,257,3.0\n107,258,3.5\n107,259,4.0\n107,260,4.5\n107,261,5.0\n107,262,5.5\n107,263,6.0\n107,264,6.5\n107,265,7.0\n107,266,7.5\n107,267,8.0\n107,268,8.5\n107,269,9.0\n107,270,9.5\n107,271,10.0\n107,272,10.5\n107,273,11.0\n107,274,11.5\n107,275,7.0\n107,276,6.5\n107,277,6.0\n107,278,5.5\n107,279,5.0\n107,280,4.5\n107,281,4.0\n107,282,3.5\n107,283,4.0\n107,284,4.5\n107,285,5.0\n107,286,5.5\n107,287,6.0\n107,288,6.5\n107,289,7.0\n107,290,7.5\n107,291,8.0\n107,292,8.5\n107,293,9.0\n107,294,9.5\n107,295,10.0\n107,296,10.5\n107,297,11.0\n107,298,11.5\n107,299,12.0\n107,300,7.5\n107,301,7.0\n107,302,6.5\n107,303,6.0\n107,304,5.5\n107,305,5.0\n107,306,4.5\n107,307,4.0\n107,308,4.5\n107,309,5.0\n107,310,5.5\n107,311,6.0\n107,312,6.5\n107,313,7.0\n107,314,7.5\n107,315,8.0\n107,316,8.5\n107,317,9.0\n107,318,9.5\n107,319,10.0\n107,320,10.5\n107,321,11.0\n107,322,11.5\n107,323,12.0\n107,324,12.5\n107,325,8.0\n107,326,7.5\n107,327,7.0\n107,328,6.5\n107,329,6.0\n107,330,5.5\n107,331,5.0\n107,332,4.5\n107,333,5.0\n107,334,5.5\n107,335,6.0\n107,336,6.5\n107,337,7.0\n107,338,7.5\n107,339,8.0\n107,340,8.5\n107,341,9.0\n107,342,9.5\n107,343,10.0\n107,344,10.5\n107,345,11.0\n107,346,11.5\n107,347,12.0\n107,348,12.5\n107,349,13.0\n107,350,8.5\n107,351,8.0\n107,352,7.5\n107,353,7.0\n107,354,6.5\n107,355,6.0\n107,356,5.5\n107,357,5.0\n107,358,5.5\n107,359,6.0\n107,360,6.5\n107,361,7.0\n107,362,7.5\n107,363,8.0\n107,364,8.5\n107,365,9.0\n107,366,9.5\n107,367,10.0\n107,368,10.5\n107,369,11.0\n107,370,11.5\n107,371,12.0\n107,372,12.5\n107,373,13.0\n107,374,13.5\n107,375,9.0\n107,376,8.5\n107,377,8.0\n107,378,7.5\n107,379,7.0\n107,380,6.5\n107,381,6.0\n107,382,5.5\n107,383,6.0\n107,384,6.5\n107,385,7.0\n107,386,7.5\n107,387,8.0\n107,388,8.5\n107,389,9.0\n107,390,9.5\n107,391,10.0\n107,392,10.5\n107,393,11.0\n107,394,11.5\n107,395,12.0\n107,396,12.5\n107,397,13.0\n107,398,13.5\n107,399,14.0\n107,400,9.5\n107,401,9.0\n107,402,8.5\n107,403,8.0\n107,404,7.5\n107,405,7.0\n107,406,6.5\n107,407,6.0\n107,408,6.5\n107,409,7.0\n107,410,7.5\n107,411,8.0\n107,412,8.5\n107,413,9.0\n107,414,9.5\n107,415,10.0\n107,416,10.5\n107,417,11.0\n107,418,11.5\n107,419,12.0\n107,420,12.5\n107,421,13.0\n107,422,13.5\n107,423,14.0\n107,424,14.5\n107,425,10.0\n107,426,9.5\n107,427,9.0\n107,428,8.5\n107,429,8.0\n107,430,7.5\n107,431,7.0\n107,432,6.5\n107,433,7.0\n107,434,7.5\n107,435,8.0\n107,436,8.5\n107,437,9.0\n107,438,9.5\n107,439,10.0\n107,440,10.5\n107,441,11.0\n107,442,11.5\n107,443,12.0\n107,444,12.5\n107,445,13.0\n107,446,13.5\n107,447,14.0\n107,448,14.5\n107,449,15.0\n107,450,10.5\n107,451,10.0\n107,452,9.5\n107,453,9.0\n107,454,8.5\n107,455,8.0\n107,456,7.5\n107,457,7.0\n107,458,7.5\n107,459,8.0\n107,460,8.5\n107,461,9.0\n107,462,9.5\n107,463,10.0\n107,464,10.5\n107,465,11.0\n107,466,11.5\n107,467,12.0\n107,468,12.5\n107,469,13.0\n107,470,13.5\n107,471,14.0\n107,472,14.5\n107,473,15.0\n107,474,15.5\n107,475,11.0\n107,476,10.5\n107,477,10.0\n107,478,9.5\n107,479,9.0\n107,480,8.5\n107,481,8.0\n107,482,7.5\n107,483,8.0\n107,484,8.5\n107,485,9.0\n107,486,9.5\n107,487,10.0\n107,488,10.5\n107,489,11.0\n107,490,11.5\n107,491,12.0\n107,492,12.5\n107,493,13.0\n107,494,13.5\n107,495,14.0\n107,496,14.5\n107,497,15.0\n107,498,15.5\n107,499,16.0\n107,500,11.5\n107,501,11.0\n107,502,10.5\n107,503,10.0\n107,504,9.5\n107,505,9.0\n107,506,8.5\n107,507,8.0\n107,508,8.5\n107,509,9.0\n107,510,9.5\n107,511,10.0\n107,512,10.5\n107,513,11.0\n107,514,11.5\n107,515,12.0\n107,516,12.5\n107,517,13.0\n107,518,13.5\n107,519,14.0\n107,520,14.5\n107,521,15.0\n107,522,15.5\n107,523,16.0\n107,524,16.5\n107,525,12.0\n107,526,11.5\n107,527,11.0\n107,528,10.5\n107,529,10.0\n107,530,9.5\n107,531,9.0\n107,532,8.5\n107,533,9.0\n107,534,9.5\n107,535,10.0\n107,536,10.5\n107,537,11.0\n107,538,11.5\n107,539,12.0\n107,540,12.5\n107,541,13.0\n107,542,13.5\n107,543,14.0\n107,544,14.5\n107,545,15.0\n107,546,15.5\n107,547,16.0\n107,548,16.5\n107,549,17.0\n107,550,12.5\n107,551,12.0\n107,552,11.5\n107,553,11.0\n107,554,10.5\n107,555,10.0\n107,556,9.5\n107,557,9.0\n107,558,9.5\n107,559,10.0\n107,560,10.5\n107,561,11.0\n107,562,11.5\n107,563,12.0\n107,564,12.5\n107,565,13.0\n107,566,13.5\n107,567,14.0\n107,568,14.5\n107,569,15.0\n107,570,15.5\n107,571,16.0\n107,572,16.5\n107,573,17.0\n107,574,17.5\n107,575,13.0\n107,576,12.5\n107,577,12.0\n107,578,11.5\n107,579,11.0\n107,580,10.5\n107,581,10.0\n107,582,9.5\n107,583,10.0\n107,584,10.5\n107,585,11.0\n107,586,11.5\n107,587,12.0\n107,588,12.5\n107,589,13.0\n107,590,13.5\n107,591,14.0\n107,592,14.5\n107,593,15.0\n107,594,15.5\n107,595,16.0\n107,596,16.5\n107,597,17.0\n107,598,17.5\n107,599,18.0\n107,600,13.5\n107,601,13.0\n107,602,12.5\n107,603,12.0\n107,604,11.5\n107,605,11.0\n107,606,10.5\n107,607,10.0\n107,608,10.5\n107,609,11.0\n107,610,11.5\n107,611,12.0\n107,612,12.5\n107,613,13.0\n107,614,13.5\n107,615,14.0\n107,616,14.5\n107,617,15.0\n107,618,15.5\n107,619,16.0\n107,620,16.5\n107,621,17.0\n107,622,17.5\n107,623,18.0\n107,624,18.5\n108,0,6.0\n108,1,5.5\n108,2,5.0\n108,3,4.5\n108,4,4.0\n108,5,3.5\n108,6,3.0\n108,7,2.5\n108,8,2.0\n108,9,2.5\n108,10,3.0\n108,11,3.5\n108,12,4.0\n108,13,4.5\n108,14,5.0\n108,15,5.5\n108,16,6.0\n108,17,6.5\n108,18,7.0\n108,19,7.5\n108,20,8.0\n108,21,8.5\n108,22,9.0\n108,23,9.5\n108,24,10.0\n108,25,5.5\n108,26,5.0\n108,27,4.5\n108,28,4.0\n108,29,3.5\n108,30,3.0\n108,31,2.5\n108,32,2.0\n108,33,1.5\n108,34,2.0\n108,35,2.5\n108,36,3.0\n108,37,3.5\n108,38,4.0\n108,39,4.5\n108,40,5.0\n108,41,5.5\n108,42,6.0\n108,43,6.5\n108,44,7.0\n108,45,7.5\n108,46,8.0\n108,47,8.5\n108,48,9.0\n108,49,9.5\n108,50,5.0\n108,51,4.5\n108,52,4.0\n108,53,3.5\n108,54,3.0\n108,55,2.5\n108,56,2.0\n108,57,1.5\n108,58,1.0\n108,59,1.5\n108,60,2.0\n108,61,2.5\n108,62,3.0\n108,63,3.5\n108,64,4.0\n108,65,4.5\n108,66,5.0\n108,67,5.5\n108,68,6.0\n108,69,6.5\n108,70,7.0\n108,71,7.5\n108,72,8.0\n108,73,8.5\n108,74,9.0\n108,75,4.5\n108,76,4.0\n108,77,3.5\n108,78,3.0\n108,79,2.5\n108,80,2.0\n108,81,1.5\n108,82,1.0\n108,83,0.5\n108,84,1.0\n108,85,1.5\n108,86,2.0\n108,87,2.5\n108,88,3.0\n108,89,3.5\n108,90,4.0\n108,91,4.5\n108,92,5.0\n108,93,5.5\n108,94,6.0\n108,95,6.5\n108,96,7.0\n108,97,7.5\n108,98,8.0\n108,99,8.5\n108,100,4.0\n108,101,3.5\n108,102,3.0\n108,103,2.5\n108,104,2.0\n108,105,1.5\n108,106,1.0\n108,107,0.5\n108,108,0\n108,109,0.5\n108,110,1.0\n108,111,1.5\n108,112,2.0\n108,113,2.5\n108,114,3.0\n108,115,3.5\n108,116,4.0\n108,117,4.5\n108,118,5.0\n108,119,5.5\n108,120,6.0\n108,121,6.5\n108,122,7.0\n108,123,7.5\n108,124,8.0\n108,125,4.5\n108,126,4.0\n108,127,3.5\n108,128,3.0\n108,129,2.5\n108,130,2.0\n108,131,1.5\n108,132,1.0\n108,133,0.5\n108,134,1.0\n108,135,1.5\n108,136,2.0\n108,137,2.5\n108,138,3.0\n108,139,3.5\n108,140,4.0\n108,141,4.5\n108,142,5.0\n108,143,5.5\n108,144,6.0\n108,145,6.5\n108,146,7.0\n108,147,7.5\n108,148,8.0\n108,149,8.5\n108,150,5.0\n108,151,4.5\n108,152,4.0\n108,153,3.5\n108,154,3.0\n108,155,2.5\n108,156,2.0\n108,157,1.5\n108,158,1.0\n108,159,1.5\n108,160,2.0\n108,161,2.5\n108,162,3.0\n108,163,3.5\n108,164,4.0\n108,165,4.5\n108,166,5.0\n108,167,5.5\n108,168,6.0\n108,169,6.5\n108,170,7.0\n108,171,7.5\n108,172,8.0\n108,173,8.5\n108,174,9.0\n108,175,5.5\n108,176,5.0\n108,177,4.5\n108,178,4.0\n108,179,3.5\n108,180,3.0\n108,181,2.5\n108,182,2.0\n108,183,1.5\n108,184,2.0\n108,185,2.5\n108,186,3.0\n108,187,3.5\n108,188,4.0\n108,189,4.5\n108,190,5.0\n108,191,5.5\n108,192,6.0\n108,193,6.5\n108,194,7.0\n108,195,7.5\n108,196,8.0\n108,197,8.5\n108,198,9.0\n108,199,9.5\n108,200,6.0\n108,201,5.5\n108,202,5.0\n108,203,4.5\n108,204,4.0\n108,205,3.5\n108,206,3.0\n108,207,2.5\n108,208,2.0\n108,209,2.5\n108,210,3.0\n108,211,3.5\n108,212,4.0\n108,213,4.5\n108,214,5.0\n108,215,5.5\n108,216,6.0\n108,217,6.5\n108,218,7.0\n108,219,7.5\n108,220,8.0\n108,221,8.5\n108,222,9.0\n108,223,9.5\n108,224,10.0\n108,225,6.5\n108,226,6.0\n108,227,5.5\n108,228,5.0\n108,229,4.5\n108,230,4.0\n108,231,3.5\n108,232,3.0\n108,233,2.5\n108,234,3.0\n108,235,3.5\n108,236,4.0\n108,237,4.5\n108,238,5.0\n108,239,5.5\n108,240,6.0\n108,241,6.5\n108,242,7.0\n108,243,7.5\n108,244,8.0\n108,245,8.5\n108,246,9.0\n108,247,9.5\n108,248,10.0\n108,249,10.5\n108,250,7.0\n108,251,6.5\n108,252,6.0\n108,253,5.5\n108,254,5.0\n108,255,4.5\n108,256,4.0\n108,257,3.5\n108,258,3.0\n108,259,3.5\n108,260,4.0\n108,261,4.5\n108,262,5.0\n108,263,5.5\n108,264,6.0\n108,265,6.5\n108,266,7.0\n108,267,7.5\n108,268,8.0\n108,269,8.5\n108,270,9.0\n108,271,9.5\n108,272,10.0\n108,273,10.5\n108,274,11.0\n108,275,7.5\n108,276,7.0\n108,277,6.5\n108,278,6.0\n108,279,5.5\n108,280,5.0\n108,281,4.5\n108,282,4.0\n108,283,3.5\n108,284,4.0\n108,285,4.5\n108,286,5.0\n108,287,5.5\n108,288,6.0\n108,289,6.5\n108,290,7.0\n108,291,7.5\n108,292,8.0\n108,293,8.5\n108,294,9.0\n108,295,9.5\n108,296,10.0\n108,297,10.5\n108,298,11.0\n108,299,11.5\n108,300,8.0\n108,301,7.5\n108,302,7.0\n108,303,6.5\n108,304,6.0\n108,305,5.5\n108,306,5.0\n108,307,4.5\n108,308,4.0\n108,309,4.5\n108,310,5.0\n108,311,5.5\n108,312,6.0\n108,313,6.5\n108,314,7.0\n108,315,7.5\n108,316,8.0\n108,317,8.5\n108,318,9.0\n108,319,9.5\n108,320,10.0\n108,321,10.5\n108,322,11.0\n108,323,11.5\n108,324,12.0\n108,325,8.5\n108,326,8.0\n108,327,7.5\n108,328,7.0\n108,329,6.5\n108,330,6.0\n108,331,5.5\n108,332,5.0\n108,333,4.5\n108,334,5.0\n108,335,5.5\n108,336,6.0\n108,337,6.5\n108,338,7.0\n108,339,7.5\n108,340,8.0\n108,341,8.5\n108,342,9.0\n108,343,9.5\n108,344,10.0\n108,345,10.5\n108,346,11.0\n108,347,11.5\n108,348,12.0\n108,349,12.5\n108,350,9.0\n108,351,8.5\n108,352,8.0\n108,353,7.5\n108,354,7.0\n108,355,6.5\n108,356,6.0\n108,357,5.5\n108,358,5.0\n108,359,5.5\n108,360,6.0\n108,361,6.5\n108,362,7.0\n108,363,7.5\n108,364,8.0\n108,365,8.5\n108,366,9.0\n108,367,9.5\n108,368,10.0\n108,369,10.5\n108,370,11.0\n108,371,11.5\n108,372,12.0\n108,373,12.5\n108,374,13.0\n108,375,9.5\n108,376,9.0\n108,377,8.5\n108,378,8.0\n108,379,7.5\n108,380,7.0\n108,381,6.5\n108,382,6.0\n108,383,5.5\n108,384,6.0\n108,385,6.5\n108,386,7.0\n108,387,7.5\n108,388,8.0\n108,389,8.5\n108,390,9.0\n108,391,9.5\n108,392,10.0\n108,393,10.5\n108,394,11.0\n108,395,11.5\n108,396,12.0\n108,397,12.5\n108,398,13.0\n108,399,13.5\n108,400,10.0\n108,401,9.5\n108,402,9.0\n108,403,8.5\n108,404,8.0\n108,405,7.5\n108,406,7.0\n108,407,6.5\n108,408,6.0\n108,409,6.5\n108,410,7.0\n108,411,7.5\n108,412,8.0\n108,413,8.5\n108,414,9.0\n108,415,9.5\n108,416,10.0\n108,417,10.5\n108,418,11.0\n108,419,11.5\n108,420,12.0\n108,421,12.5\n108,422,13.0\n108,423,13.5\n108,424,14.0\n108,425,10.5\n108,426,10.0\n108,427,9.5\n108,428,9.0\n108,429,8.5\n108,430,8.0\n108,431,7.5\n108,432,7.0\n108,433,6.5\n108,434,7.0\n108,435,7.5\n108,436,8.0\n108,437,8.5\n108,438,9.0\n108,439,9.5\n108,440,10.0\n108,441,10.5\n108,442,11.0\n108,443,11.5\n108,444,12.0\n108,445,12.5\n108,446,13.0\n108,447,13.5\n108,448,14.0\n108,449,14.5\n108,450,11.0\n108,451,10.5\n108,452,10.0\n108,453,9.5\n108,454,9.0\n108,455,8.5\n108,456,8.0\n108,457,7.5\n108,458,7.0\n108,459,7.5\n108,460,8.0\n108,461,8.5\n108,462,9.0\n108,463,9.5\n108,464,10.0\n108,465,10.5\n108,466,11.0\n108,467,11.5\n108,468,12.0\n108,469,12.5\n108,470,13.0\n108,471,13.5\n108,472,14.0\n108,473,14.5\n108,474,15.0\n108,475,11.5\n108,476,11.0\n108,477,10.5\n108,478,10.0\n108,479,9.5\n108,480,9.0\n108,481,8.5\n108,482,8.0\n108,483,7.5\n108,484,8.0\n108,485,8.5\n108,486,9.0\n108,487,9.5\n108,488,10.0\n108,489,10.5\n108,490,11.0\n108,491,11.5\n108,492,12.0\n108,493,12.5\n108,494,13.0\n108,495,13.5\n108,496,14.0\n108,497,14.5\n108,498,15.0\n108,499,15.5\n108,500,12.0\n108,501,11.5\n108,502,11.0\n108,503,10.5\n108,504,10.0\n108,505,9.5\n108,506,9.0\n108,507,8.5\n108,508,8.0\n108,509,8.5\n108,510,9.0\n108,511,9.5\n108,512,10.0\n108,513,10.5\n108,514,11.0\n108,515,11.5\n108,516,12.0\n108,517,12.5\n108,518,13.0\n108,519,13.5\n108,520,14.0\n108,521,14.5\n108,522,15.0\n108,523,15.5\n108,524,16.0\n108,525,12.5\n108,526,12.0\n108,527,11.5\n108,528,11.0\n108,529,10.5\n108,530,10.0\n108,531,9.5\n108,532,9.0\n108,533,8.5\n108,534,9.0\n108,535,9.5\n108,536,10.0\n108,537,10.5\n108,538,11.0\n108,539,11.5\n108,540,12.0\n108,541,12.5\n108,542,13.0\n108,543,13.5\n108,544,14.0\n108,545,14.5\n108,546,15.0\n108,547,15.5\n108,548,16.0\n108,549,16.5\n108,550,13.0\n108,551,12.5\n108,552,12.0\n108,553,11.5\n108,554,11.0\n108,555,10.5\n108,556,10.0\n108,557,9.5\n108,558,9.0\n108,559,9.5\n108,560,10.0\n108,561,10.5\n108,562,11.0\n108,563,11.5\n108,564,12.0\n108,565,12.5\n108,566,13.0\n108,567,13.5\n108,568,14.0\n108,569,14.5\n108,570,15.0\n108,571,15.5\n108,572,16.0\n108,573,16.5\n108,574,17.0\n108,575,13.5\n108,576,13.0\n108,577,12.5\n108,578,12.0\n108,579,11.5\n108,580,11.0\n108,581,10.5\n108,582,10.0\n108,583,9.5\n108,584,10.0\n108,585,10.5\n108,586,11.0\n108,587,11.5\n108,588,12.0\n108,589,12.5\n108,590,13.0\n108,591,13.5\n108,592,14.0\n108,593,14.5\n108,594,15.0\n108,595,15.5\n108,596,16.0\n108,597,16.5\n108,598,17.0\n108,599,17.5\n108,600,14.0\n108,601,13.5\n108,602,13.0\n108,603,12.5\n108,604,12.0\n108,605,11.5\n108,606,11.0\n108,607,10.5\n108,608,10.0\n108,609,10.5\n108,610,11.0\n108,611,11.5\n108,612,12.0\n108,613,12.5\n108,614,13.0\n108,615,13.5\n108,616,14.0\n108,617,14.5\n108,618,15.0\n108,619,15.5\n108,620,16.0\n108,621,16.5\n108,622,17.0\n108,623,17.5\n108,624,18.0\n109,0,6.5\n109,1,6.0\n109,2,5.5\n109,3,5.0\n109,4,4.5\n109,5,4.0\n109,6,3.5\n109,7,3.0\n109,8,2.5\n109,9,2.0\n109,10,2.5\n109,11,3.0\n109,12,3.5\n109,13,4.0\n109,14,4.5\n109,15,5.0\n109,16,5.5\n109,17,6.0\n109,18,6.5\n109,19,7.0\n109,20,7.5\n109,21,8.0\n109,22,8.5\n109,23,9.0\n109,24,9.5\n109,25,6.0\n109,26,5.5\n109,27,5.0\n109,28,4.5\n109,29,4.0\n109,30,3.5\n109,31,3.0\n109,32,2.5\n109,33,2.0\n109,34,1.5\n109,35,2.0\n109,36,2.5\n109,37,3.0\n109,38,3.5\n109,39,4.0\n109,40,4.5\n109,41,5.0\n109,42,5.5\n109,43,6.0\n109,44,6.5\n109,45,7.0\n109,46,7.5\n109,47,8.0\n109,48,8.5\n109,49,9.0\n109,50,5.5\n109,51,5.0\n109,52,4.5\n109,53,4.0\n109,54,3.5\n109,55,3.0\n109,56,2.5\n109,57,2.0\n109,58,1.5\n109,59,1.0\n109,60,1.5\n109,61,2.0\n109,62,2.5\n109,63,3.0\n109,64,3.5\n109,65,4.0\n109,66,4.5\n109,67,5.0\n109,68,5.5\n109,69,6.0\n109,70,6.5\n109,71,7.0\n109,72,7.5\n109,73,8.0\n109,74,8.5\n109,75,5.0\n109,76,4.5\n109,77,4.0\n109,78,3.5\n109,79,3.0\n109,80,2.5\n109,81,2.0\n109,82,1.5\n109,83,1.0\n109,84,0.5\n109,85,1.0\n109,86,1.5\n109,87,2.0\n109,88,2.5\n109,89,3.0\n109,90,3.5\n109,91,4.0\n109,92,4.5\n109,93,5.0\n109,94,5.5\n109,95,6.0\n109,96,6.5\n109,97,7.0\n109,98,7.5\n109,99,8.0\n109,100,4.5\n109,101,4.0\n109,102,3.5\n109,103,3.0\n109,104,2.5\n109,105,2.0\n109,106,1.5\n109,107,1.0\n109,108,0.5\n109,109,0\n109,110,0.5\n109,111,1.0\n109,112,1.5\n109,113,2.0\n109,114,2.5\n109,115,3.0\n109,116,3.5\n109,117,4.0\n109,118,4.5\n109,119,5.0\n109,120,5.5\n109,121,6.0\n109,122,6.5\n109,123,7.0\n109,124,7.5\n109,125,5.0\n109,126,4.5\n109,127,4.0\n109,128,3.5\n109,129,3.0\n109,130,2.5\n109,131,2.0\n109,132,1.5\n109,133,1.0\n109,134,0.5\n109,135,1.0\n109,136,1.5\n109,137,2.0\n109,138,2.5\n109,139,3.0\n109,140,3.5\n109,141,4.0\n109,142,4.5\n109,143,5.0\n109,144,5.5\n109,145,6.0\n109,146,6.5\n109,147,7.0\n109,148,7.5\n109,149,8.0\n109,150,5.5\n109,151,5.0\n109,152,4.5\n109,153,4.0\n109,154,3.5\n109,155,3.0\n109,156,2.5\n109,157,2.0\n109,158,1.5\n109,159,1.0\n109,160,1.5\n109,161,2.0\n109,162,2.5\n109,163,3.0\n109,164,3.5\n109,165,4.0\n109,166,4.5\n109,167,5.0\n109,168,5.5\n109,169,6.0\n109,170,6.5\n109,171,7.0\n109,172,7.5\n109,173,8.0\n109,174,8.5\n109,175,6.0\n109,176,5.5\n109,177,5.0\n109,178,4.5\n109,179,4.0\n109,180,3.5\n109,181,3.0\n109,182,2.5\n109,183,2.0\n109,184,1.5\n109,185,2.0\n109,186,2.5\n109,187,3.0\n109,188,3.5\n109,189,4.0\n109,190,4.5\n109,191,5.0\n109,192,5.5\n109,193,6.0\n109,194,6.5\n109,195,7.0\n109,196,7.5\n109,197,8.0\n109,198,8.5\n109,199,9.0\n109,200,6.5\n109,201,6.0\n109,202,5.5\n109,203,5.0\n109,204,4.5\n109,205,4.0\n109,206,3.5\n109,207,3.0\n109,208,2.5\n109,209,2.0\n109,210,2.5\n109,211,3.0\n109,212,3.5\n109,213,4.0\n109,214,4.5\n109,215,5.0\n109,216,5.5\n109,217,6.0\n109,218,6.5\n109,219,7.0\n109,220,7.5\n109,221,8.0\n109,222,8.5\n109,223,9.0\n109,224,9.5\n109,225,7.0\n109,226,6.5\n109,227,6.0\n109,228,5.5\n109,229,5.0\n109,230,4.5\n109,231,4.0\n109,232,3.5\n109,233,3.0\n109,234,2.5\n109,235,3.0\n109,236,3.5\n109,237,4.0\n109,238,4.5\n109,239,5.0\n109,240,5.5\n109,241,6.0\n109,242,6.5\n109,243,7.0\n109,244,7.5\n109,245,8.0\n109,246,8.5\n109,247,9.0\n109,248,9.5\n109,249,10.0\n109,250,7.5\n109,251,7.0\n109,252,6.5\n109,253,6.0\n109,254,5.5\n109,255,5.0\n109,256,4.5\n109,257,4.0\n109,258,3.5\n109,259,3.0\n109,260,3.5\n109,261,4.0\n109,262,4.5\n109,263,5.0\n109,264,5.5\n109,265,6.0\n109,266,6.5\n109,267,7.0\n109,268,7.5\n109,269,8.0\n109,270,8.5\n109,271,9.0\n109,272,9.5\n109,273,10.0\n109,274,10.5\n109,275,8.0\n109,276,7.5\n109,277,7.0\n109,278,6.5\n109,279,6.0\n109,280,5.5\n109,281,5.0\n109,282,4.5\n109,283,4.0\n109,284,3.5\n109,285,4.0\n109,286,4.5\n109,287,5.0\n109,288,5.5\n109,289,6.0\n109,290,6.5\n109,291,7.0\n109,292,7.5\n109,293,8.0\n109,294,8.5\n109,295,9.0\n109,296,9.5\n109,297,10.0\n109,298,10.5\n109,299,11.0\n109,300,8.5\n109,301,8.0\n109,302,7.5\n109,303,7.0\n109,304,6.5\n109,305,6.0\n109,306,5.5\n109,307,5.0\n109,308,4.5\n109,309,4.0\n109,310,4.5\n109,311,5.0\n109,312,5.5\n109,313,6.0\n109,314,6.5\n109,315,7.0\n109,316,7.5\n109,317,8.0\n109,318,8.5\n109,319,9.0\n109,320,9.5\n109,321,10.0\n109,322,10.5\n109,323,11.0\n109,324,11.5\n109,325,9.0\n109,326,8.5\n109,327,8.0\n109,328,7.5\n109,329,7.0\n109,330,6.5\n109,331,6.0\n109,332,5.5\n109,333,5.0\n109,334,4.5\n109,335,5.0\n109,336,5.5\n109,337,6.0\n109,338,6.5\n109,339,7.0\n109,340,7.5\n109,341,8.0\n109,342,8.5\n109,343,9.0\n109,344,9.5\n109,345,10.0\n109,346,10.5\n109,347,11.0\n109,348,11.5\n109,349,12.0\n109,350,9.5\n109,351,9.0\n109,352,8.5\n109,353,8.0\n109,354,7.5\n109,355,7.0\n109,356,6.5\n109,357,6.0\n109,358,5.5\n109,359,5.0\n109,360,5.5\n109,361,6.0\n109,362,6.5\n109,363,7.0\n109,364,7.5\n109,365,8.0\n109,366,8.5\n109,367,9.0\n109,368,9.5\n109,369,10.0\n109,370,10.5\n109,371,11.0\n109,372,11.5\n109,373,12.0\n109,374,12.5\n109,375,10.0\n109,376,9.5\n109,377,9.0\n109,378,8.5\n109,379,8.0\n109,380,7.5\n109,381,7.0\n109,382,6.5\n109,383,6.0\n109,384,5.5\n109,385,6.0\n109,386,6.5\n109,387,7.0\n109,388,7.5\n109,389,8.0\n109,390,8.5\n109,391,9.0\n109,392,9.5\n109,393,10.0\n109,394,10.5\n109,395,11.0\n109,396,11.5\n109,397,12.0\n109,398,12.5\n109,399,13.0\n109,400,10.5\n109,401,10.0\n109,402,9.5\n109,403,9.0\n109,404,8.5\n109,405,8.0\n109,406,7.5\n109,407,7.0\n109,408,6.5\n109,409,6.0\n109,410,6.5\n109,411,7.0\n109,412,7.5\n109,413,8.0\n109,414,8.5\n109,415,9.0\n109,416,9.5\n109,417,10.0\n109,418,10.5\n109,419,11.0\n109,420,11.5\n109,421,12.0\n109,422,12.5\n109,423,13.0\n109,424,13.5\n109,425,11.0\n109,426,10.5\n109,427,10.0\n109,428,9.5\n109,429,9.0\n109,430,8.5\n109,431,8.0\n109,432,7.5\n109,433,7.0\n109,434,6.5\n109,435,7.0\n109,436,7.5\n109,437,8.0\n109,438,8.5\n109,439,9.0\n109,440,9.5\n109,441,10.0\n109,442,10.5\n109,443,11.0\n109,444,11.5\n109,445,12.0\n109,446,12.5\n109,447,13.0\n109,448,13.5\n109,449,14.0\n109,450,11.5\n109,451,11.0\n109,452,10.5\n109,453,10.0\n109,454,9.5\n109,455,9.0\n109,456,8.5\n109,457,8.0\n109,458,7.5\n109,459,7.0\n109,460,7.5\n109,461,8.0\n109,462,8.5\n109,463,9.0\n109,464,9.5\n109,465,10.0\n109,466,10.5\n109,467,11.0\n109,468,11.5\n109,469,12.0\n109,470,12.5\n109,471,13.0\n109,472,13.5\n109,473,14.0\n109,474,14.5\n109,475,12.0\n109,476,11.5\n109,477,11.0\n109,478,10.5\n109,479,10.0\n109,480,9.5\n109,481,9.0\n109,482,8.5\n109,483,8.0\n109,484,7.5\n109,485,8.0\n109,486,8.5\n109,487,9.0\n109,488,9.5\n109,489,10.0\n109,490,10.5\n109,491,11.0\n109,492,11.5\n109,493,12.0\n109,494,12.5\n109,495,13.0\n109,496,13.5\n109,497,14.0\n109,498,14.5\n109,499,15.0\n109,500,12.5\n109,501,12.0\n109,502,11.5\n109,503,11.0\n109,504,10.5\n109,505,10.0\n109,506,9.5\n109,507,9.0\n109,508,8.5\n109,509,8.0\n109,510,8.5\n109,511,9.0\n109,512,9.5\n109,513,10.0\n109,514,10.5\n109,515,11.0\n109,516,11.5\n109,517,12.0\n109,518,12.5\n109,519,13.0\n109,520,13.5\n109,521,14.0\n109,522,14.5\n109,523,15.0\n109,524,15.5\n109,525,13.0\n109,526,12.5\n109,527,12.0\n109,528,11.5\n109,529,11.0\n109,530,10.5\n109,531,10.0\n109,532,9.5\n109,533,9.0\n109,534,8.5\n109,535,9.0\n109,536,9.5\n109,537,10.0\n109,538,10.5\n109,539,11.0\n109,540,11.5\n109,541,12.0\n109,542,12.5\n109,543,13.0\n109,544,13.5\n109,545,14.0\n109,546,14.5\n109,547,15.0\n109,548,15.5\n109,549,16.0\n109,550,13.5\n109,551,13.0\n109,552,12.5\n109,553,12.0\n109,554,11.5\n109,555,11.0\n109,556,10.5\n109,557,10.0\n109,558,9.5\n109,559,9.0\n109,560,9.5\n109,561,10.0\n109,562,10.5\n109,563,11.0\n109,564,11.5\n109,565,12.0\n109,566,12.5\n109,567,13.0\n109,568,13.5\n109,569,14.0\n109,570,14.5\n109,571,15.0\n109,572,15.5\n109,573,16.0\n109,574,16.5\n109,575,14.0\n109,576,13.5\n109,577,13.0\n109,578,12.5\n109,579,12.0\n109,580,11.5\n109,581,11.0\n109,582,10.5\n109,583,10.0\n109,584,9.5\n109,585,10.0\n109,586,10.5\n109,587,11.0\n109,588,11.5\n109,589,12.0\n109,590,12.5\n109,591,13.0\n109,592,13.5\n109,593,14.0\n109,594,14.5\n109,595,15.0\n109,596,15.5\n109,597,16.0\n109,598,16.5\n109,599,17.0\n109,600,14.5\n109,601,14.0\n109,602,13.5\n109,603,13.0\n109,604,12.5\n109,605,12.0\n109,606,11.5\n109,607,11.0\n109,608,10.5\n109,609,10.0\n109,610,10.5\n109,611,11.0\n109,612,11.5\n109,613,12.0\n109,614,12.5\n109,615,13.0\n109,616,13.5\n109,617,14.0\n109,618,14.5\n109,619,15.0\n109,620,15.5\n109,621,16.0\n109,622,16.5\n109,623,17.0\n109,624,17.5\n110,0,7.0\n110,1,6.5\n110,2,6.0\n110,3,5.5\n110,4,5.0\n110,5,4.5\n110,6,4.0\n110,7,3.5\n110,8,3.0\n110,9,2.5\n110,10,2.0\n110,11,2.5\n110,12,3.0\n110,13,3.5\n110,14,4.0\n110,15,4.5\n110,16,5.0\n110,17,5.5\n110,18,6.0\n110,19,6.5\n110,20,7.0\n110,21,7.5\n110,22,8.0\n110,23,8.5\n110,24,9.0\n110,25,6.5\n110,26,6.0\n110,27,5.5\n110,28,5.0\n110,29,4.5\n110,30,4.0\n110,31,3.5\n110,32,3.0\n110,33,2.5\n110,34,2.0\n110,35,1.5\n110,36,2.0\n110,37,2.5\n110,38,3.0\n110,39,3.5\n110,40,4.0\n110,41,4.5\n110,42,5.0\n110,43,5.5\n110,44,6.0\n110,45,6.5\n110,46,7.0\n110,47,7.5\n110,48,8.0\n110,49,8.5\n110,50,6.0\n110,51,5.5\n110,52,5.0\n110,53,4.5\n110,54,4.0\n110,55,3.5\n110,56,3.0\n110,57,2.5\n110,58,2.0\n110,59,1.5\n110,60,1.0\n110,61,1.5\n110,62,2.0\n110,63,2.5\n110,64,3.0\n110,65,3.5\n110,66,4.0\n110,67,4.5\n110,68,5.0\n110,69,5.5\n110,70,6.0\n110,71,6.5\n110,72,7.0\n110,73,7.5\n110,74,8.0\n110,75,5.5\n110,76,5.0\n110,77,4.5\n110,78,4.0\n110,79,3.5\n110,80,3.0\n110,81,2.5\n110,82,2.0\n110,83,1.5\n110,84,1.0\n110,85,0.5\n110,86,1.0\n110,87,1.5\n110,88,2.0\n110,89,2.5\n110,90,3.0\n110,91,3.5\n110,92,4.0\n110,93,4.5\n110,94,5.0\n110,95,5.5\n110,96,6.0\n110,97,6.5\n110,98,7.0\n110,99,7.5\n110,100,5.0\n110,101,4.5\n110,102,4.0\n110,103,3.5\n110,104,3.0\n110,105,2.5\n110,106,2.0\n110,107,1.5\n110,108,1.0\n110,109,0.5\n110,110,0\n110,111,0.5\n110,112,1.0\n110,113,1.5\n110,114,2.0\n110,115,2.5\n110,116,3.0\n110,117,3.5\n110,118,4.0\n110,119,4.5\n110,120,5.0\n110,121,5.5\n110,122,6.0\n110,123,6.5\n110,124,7.0\n110,125,5.5\n110,126,5.0\n110,127,4.5\n110,128,4.0\n110,129,3.5\n110,130,3.0\n110,131,2.5\n110,132,2.0\n110,133,1.5\n110,134,1.0\n110,135,0.5\n110,136,1.0\n110,137,1.5\n110,138,2.0\n110,139,2.5\n110,140,3.0\n110,141,3.5\n110,142,4.0\n110,143,4.5\n110,144,5.0\n110,145,5.5\n110,146,6.0\n110,147,6.5\n110,148,7.0\n110,149,7.5\n110,150,6.0\n110,151,5.5\n110,152,5.0\n110,153,4.5\n110,154,4.0\n110,155,3.5\n110,156,3.0\n110,157,2.5\n110,158,2.0\n110,159,1.5\n110,160,1.0\n110,161,1.5\n110,162,2.0\n110,163,2.5\n110,164,3.0\n110,165,3.5\n110,166,4.0\n110,167,4.5\n110,168,5.0\n110,169,5.5\n110,170,6.0\n110,171,6.5\n110,172,7.0\n110,173,7.5\n110,174,8.0\n110,175,6.5\n110,176,6.0\n110,177,5.5\n110,178,5.0\n110,179,4.5\n110,180,4.0\n110,181,3.5\n110,182,3.0\n110,183,2.5\n110,184,2.0\n110,185,1.5\n110,186,2.0\n110,187,2.5\n110,188,3.0\n110,189,3.5\n110,190,4.0\n110,191,4.5\n110,192,5.0\n110,193,5.5\n110,194,6.0\n110,195,6.5\n110,196,7.0\n110,197,7.5\n110,198,8.0\n110,199,8.5\n110,200,7.0\n110,201,6.5\n110,202,6.0\n110,203,5.5\n110,204,5.0\n110,205,4.5\n110,206,4.0\n110,207,3.5\n110,208,3.0\n110,209,2.5\n110,210,2.0\n110,211,2.5\n110,212,3.0\n110,213,3.5\n110,214,4.0\n110,215,4.5\n110,216,5.0\n110,217,5.5\n110,218,6.0\n110,219,6.5\n110,220,7.0\n110,221,7.5\n110,222,8.0\n110,223,8.5\n110,224,9.0\n110,225,7.5\n110,226,7.0\n110,227,6.5\n110,228,6.0\n110,229,5.5\n110,230,5.0\n110,231,4.5\n110,232,4.0\n110,233,3.5\n110,234,3.0\n110,235,2.5\n110,236,3.0\n110,237,3.5\n110,238,4.0\n110,239,4.5\n110,240,5.0\n110,241,5.5\n110,242,6.0\n110,243,6.5\n110,244,7.0\n110,245,7.5\n110,246,8.0\n110,247,8.5\n110,248,9.0\n110,249,9.5\n110,250,8.0\n110,251,7.5\n110,252,7.0\n110,253,6.5\n110,254,6.0\n110,255,5.5\n110,256,5.0\n110,257,4.5\n110,258,4.0\n110,259,3.5\n110,260,3.0\n110,261,3.5\n110,262,4.0\n110,263,4.5\n110,264,5.0\n110,265,5.5\n110,266,6.0\n110,267,6.5\n110,268,7.0\n110,269,7.5\n110,270,8.0\n110,271,8.5\n110,272,9.0\n110,273,9.5\n110,274,10.0\n110,275,8.5\n110,276,8.0\n110,277,7.5\n110,278,7.0\n110,279,6.5\n110,280,6.0\n110,281,5.5\n110,282,5.0\n110,283,4.5\n110,284,4.0\n110,285,3.5\n110,286,4.0\n110,287,4.5\n110,288,5.0\n110,289,5.5\n110,290,6.0\n110,291,6.5\n110,292,7.0\n110,293,7.5\n110,294,8.0\n110,295,8.5\n110,296,9.0\n110,297,9.5\n110,298,10.0\n110,299,10.5\n110,300,9.0\n110,301,8.5\n110,302,8.0\n110,303,7.5\n110,304,7.0\n110,305,6.5\n110,306,6.0\n110,307,5.5\n110,308,5.0\n110,309,4.5\n110,310,4.0\n110,311,4.5\n110,312,5.0\n110,313,5.5\n110,314,6.0\n110,315,6.5\n110,316,7.0\n110,317,7.5\n110,318,8.0\n110,319,8.5\n110,320,9.0\n110,321,9.5\n110,322,10.0\n110,323,10.5\n110,324,11.0\n110,325,9.5\n110,326,9.0\n110,327,8.5\n110,328,8.0\n110,329,7.5\n110,330,7.0\n110,331,6.5\n110,332,6.0\n110,333,5.5\n110,334,5.0\n110,335,4.5\n110,336,5.0\n110,337,5.5\n110,338,6.0\n110,339,6.5\n110,340,7.0\n110,341,7.5\n110,342,8.0\n110,343,8.5\n110,344,9.0\n110,345,9.5\n110,346,10.0\n110,347,10.5\n110,348,11.0\n110,349,11.5\n110,350,10.0\n110,351,9.5\n110,352,9.0\n110,353,8.5\n110,354,8.0\n110,355,7.5\n110,356,7.0\n110,357,6.5\n110,358,6.0\n110,359,5.5\n110,360,5.0\n110,361,5.5\n110,362,6.0\n110,363,6.5\n110,364,7.0\n110,365,7.5\n110,366,8.0\n110,367,8.5\n110,368,9.0\n110,369,9.5\n110,370,10.0\n110,371,10.5\n110,372,11.0\n110,373,11.5\n110,374,12.0\n110,375,10.5\n110,376,10.0\n110,377,9.5\n110,378,9.0\n110,379,8.5\n110,380,8.0\n110,381,7.5\n110,382,7.0\n110,383,6.5\n110,384,6.0\n110,385,5.5\n110,386,6.0\n110,387,6.5\n110,388,7.0\n110,389,7.5\n110,390,8.0\n110,391,8.5\n110,392,9.0\n110,393,9.5\n110,394,10.0\n110,395,10.5\n110,396,11.0\n110,397,11.5\n110,398,12.0\n110,399,12.5\n110,400,11.0\n110,401,10.5\n110,402,10.0\n110,403,9.5\n110,404,9.0\n110,405,8.5\n110,406,8.0\n110,407,7.5\n110,408,7.0\n110,409,6.5\n110,410,6.0\n110,411,6.5\n110,412,7.0\n110,413,7.5\n110,414,8.0\n110,415,8.5\n110,416,9.0\n110,417,9.5\n110,418,10.0\n110,419,10.5\n110,420,11.0\n110,421,11.5\n110,422,12.0\n110,423,12.5\n110,424,13.0\n110,425,11.5\n110,426,11.0\n110,427,10.5\n110,428,10.0\n110,429,9.5\n110,430,9.0\n110,431,8.5\n110,432,8.0\n110,433,7.5\n110,434,7.0\n110,435,6.5\n110,436,7.0\n110,437,7.5\n110,438,8.0\n110,439,8.5\n110,440,9.0\n110,441,9.5\n110,442,10.0\n110,443,10.5\n110,444,11.0\n110,445,11.5\n110,446,12.0\n110,447,12.5\n110,448,13.0\n110,449,13.5\n110,450,12.0\n110,451,11.5\n110,452,11.0\n110,453,10.5\n110,454,10.0\n110,455,9.5\n110,456,9.0\n110,457,8.5\n110,458,8.0\n110,459,7.5\n110,460,7.0\n110,461,7.5\n110,462,8.0\n110,463,8.5\n110,464,9.0\n110,465,9.5\n110,466,10.0\n110,467,10.5\n110,468,11.0\n110,469,11.5\n110,470,12.0\n110,471,12.5\n110,472,13.0\n110,473,13.5\n110,474,14.0\n110,475,12.5\n110,476,12.0\n110,477,11.5\n110,478,11.0\n110,479,10.5\n110,480,10.0\n110,481,9.5\n110,482,9.0\n110,483,8.5\n110,484,8.0\n110,485,7.5\n110,486,8.0\n110,487,8.5\n110,488,9.0\n110,489,9.5\n110,490,10.0\n110,491,10.5\n110,492,11.0\n110,493,11.5\n110,494,12.0\n110,495,12.5\n110,496,13.0\n110,497,13.5\n110,498,14.0\n110,499,14.5\n110,500,13.0\n110,501,12.5\n110,502,12.0\n110,503,11.5\n110,504,11.0\n110,505,10.5\n110,506,10.0\n110,507,9.5\n110,508,9.0\n110,509,8.5\n110,510,8.0\n110,511,8.5\n110,512,9.0\n110,513,9.5\n110,514,10.0\n110,515,10.5\n110,516,11.0\n110,517,11.5\n110,518,12.0\n110,519,12.5\n110,520,13.0\n110,521,13.5\n110,522,14.0\n110,523,14.5\n110,524,15.0\n110,525,13.5\n110,526,13.0\n110,527,12.5\n110,528,12.0\n110,529,11.5\n110,530,11.0\n110,531,10.5\n110,532,10.0\n110,533,9.5\n110,534,9.0\n110,535,8.5\n110,536,9.0\n110,537,9.5\n110,538,10.0\n110,539,10.5\n110,540,11.0\n110,541,11.5\n110,542,12.0\n110,543,12.5\n110,544,13.0\n110,545,13.5\n110,546,14.0\n110,547,14.5\n110,548,15.0\n110,549,15.5\n110,550,14.0\n110,551,13.5\n110,552,13.0\n110,553,12.5\n110,554,12.0\n110,555,11.5\n110,556,11.0\n110,557,10.5\n110,558,10.0\n110,559,9.5\n110,560,9.0\n110,561,9.5\n110,562,10.0\n110,563,10.5\n110,564,11.0\n110,565,11.5\n110,566,12.0\n110,567,12.5\n110,568,13.0\n110,569,13.5\n110,570,14.0\n110,571,14.5\n110,572,15.0\n110,573,15.5\n110,574,16.0\n110,575,14.5\n110,576,14.0\n110,577,13.5\n110,578,13.0\n110,579,12.5\n110,580,12.0\n110,581,11.5\n110,582,11.0\n110,583,10.5\n110,584,10.0\n110,585,9.5\n110,586,10.0\n110,587,10.5\n110,588,11.0\n110,589,11.5\n110,590,12.0\n110,591,12.5\n110,592,13.0\n110,593,13.5\n110,594,14.0\n110,595,14.5\n110,596,15.0\n110,597,15.5\n110,598,16.0\n110,599,16.5\n110,600,15.0\n110,601,14.5\n110,602,14.0\n110,603,13.5\n110,604,13.0\n110,605,12.5\n110,606,12.0\n110,607,11.5\n110,608,11.0\n110,609,10.5\n110,610,10.0\n110,611,10.5\n110,612,11.0\n110,613,11.5\n110,614,12.0\n110,615,12.5\n110,616,13.0\n110,617,13.5\n110,618,14.0\n110,619,14.5\n110,620,15.0\n110,621,15.5\n110,622,16.0\n110,623,16.5\n110,624,17.0\n111,0,7.5\n111,1,7.0\n111,2,6.5\n111,3,6.0\n111,4,5.5\n111,5,5.0\n111,6,4.5\n111,7,4.0\n111,8,3.5\n111,9,3.0\n111,10,2.5\n111,11,2.0\n111,12,2.5\n111,13,3.0\n111,14,3.5\n111,15,4.0\n111,16,4.5\n111,17,5.0\n111,18,5.5\n111,19,6.0\n111,20,6.5\n111,21,7.0\n111,22,7.5\n111,23,8.0\n111,24,8.5\n111,25,7.0\n111,26,6.5\n111,27,6.0\n111,28,5.5\n111,29,5.0\n111,30,4.5\n111,31,4.0\n111,32,3.5\n111,33,3.0\n111,34,2.5\n111,35,2.0\n111,36,1.5\n111,37,2.0\n111,38,2.5\n111,39,3.0\n111,40,3.5\n111,41,4.0\n111,42,4.5\n111,43,5.0\n111,44,5.5\n111,45,6.0\n111,46,6.5\n111,47,7.0\n111,48,7.5\n111,49,8.0\n111,50,6.5\n111,51,6.0\n111,52,5.5\n111,53,5.0\n111,54,4.5\n111,55,4.0\n111,56,3.5\n111,57,3.0\n111,58,2.5\n111,59,2.0\n111,60,1.5\n111,61,1.0\n111,62,1.5\n111,63,2.0\n111,64,2.5\n111,65,3.0\n111,66,3.5\n111,67,4.0\n111,68,4.5\n111,69,5.0\n111,70,5.5\n111,71,6.0\n111,72,6.5\n111,73,7.0\n111,74,7.5\n111,75,6.0\n111,76,5.5\n111,77,5.0\n111,78,4.5\n111,79,4.0\n111,80,3.5\n111,81,3.0\n111,82,2.5\n111,83,2.0\n111,84,1.5\n111,85,1.0\n111,86,0.5\n111,87,1.0\n111,88,1.5\n111,89,2.0\n111,90,2.5\n111,91,3.0\n111,92,3.5\n111,93,4.0\n111,94,4.5\n111,95,5.0\n111,96,5.5\n111,97,6.0\n111,98,6.5\n111,99,7.0\n111,100,5.5\n111,101,5.0\n111,102,4.5\n111,103,4.0\n111,104,3.5\n111,105,3.0\n111,106,2.5\n111,107,2.0\n111,108,1.5\n111,109,1.0\n111,110,0.5\n111,111,0\n111,112,0.5\n111,113,1.0\n111,114,1.5\n111,115,2.0\n111,116,2.5\n111,117,3.0\n111,118,3.5\n111,119,4.0\n111,120,4.5\n111,121,5.0\n111,122,5.5\n111,123,6.0\n111,124,6.5\n111,125,6.0\n111,126,5.5\n111,127,5.0\n111,128,4.5\n111,129,4.0\n111,130,3.5\n111,131,3.0\n111,132,2.5\n111,133,2.0\n111,134,1.5\n111,135,1.0\n111,136,0.5\n111,137,1.0\n111,138,1.5\n111,139,2.0\n111,140,2.5\n111,141,3.0\n111,142,3.5\n111,143,4.0\n111,144,4.5\n111,145,5.0\n111,146,5.5\n111,147,6.0\n111,148,6.5\n111,149,7.0\n111,150,6.5\n111,151,6.0\n111,152,5.5\n111,153,5.0\n111,154,4.5\n111,155,4.0\n111,156,3.5\n111,157,3.0\n111,158,2.5\n111,159,2.0\n111,160,1.5\n111,161,1.0\n111,162,1.5\n111,163,2.0\n111,164,2.5\n111,165,3.0\n111,166,3.5\n111,167,4.0\n111,168,4.5\n111,169,5.0\n111,170,5.5\n111,171,6.0\n111,172,6.5\n111,173,7.0\n111,174,7.5\n111,175,7.0\n111,176,6.5\n111,177,6.0\n111,178,5.5\n111,179,5.0\n111,180,4.5\n111,181,4.0\n111,182,3.5\n111,183,3.0\n111,184,2.5\n111,185,2.0\n111,186,1.5\n111,187,2.0\n111,188,2.5\n111,189,3.0\n111,190,3.5\n111,191,4.0\n111,192,4.5\n111,193,5.0\n111,194,5.5\n111,195,6.0\n111,196,6.5\n111,197,7.0\n111,198,7.5\n111,199,8.0\n111,200,7.5\n111,201,7.0\n111,202,6.5\n111,203,6.0\n111,204,5.5\n111,205,5.0\n111,206,4.5\n111,207,4.0\n111,208,3.5\n111,209,3.0\n111,210,2.5\n111,211,2.0\n111,212,2.5\n111,213,3.0\n111,214,3.5\n111,215,4.0\n111,216,4.5\n111,217,5.0\n111,218,5.5\n111,219,6.0\n111,220,6.5\n111,221,7.0\n111,222,7.5\n111,223,8.0\n111,224,8.5\n111,225,8.0\n111,226,7.5\n111,227,7.0\n111,228,6.5\n111,229,6.0\n111,230,5.5\n111,231,5.0\n111,232,4.5\n111,233,4.0\n111,234,3.5\n111,235,3.0\n111,236,2.5\n111,237,3.0\n111,238,3.5\n111,239,4.0\n111,240,4.5\n111,241,5.0\n111,242,5.5\n111,243,6.0\n111,244,6.5\n111,245,7.0\n111,246,7.5\n111,247,8.0\n111,248,8.5\n111,249,9.0\n111,250,8.5\n111,251,8.0\n111,252,7.5\n111,253,7.0\n111,254,6.5\n111,255,6.0\n111,256,5.5\n111,257,5.0\n111,258,4.5\n111,259,4.0\n111,260,3.5\n111,261,3.0\n111,262,3.5\n111,263,4.0\n111,264,4.5\n111,265,5.0\n111,266,5.5\n111,267,6.0\n111,268,6.5\n111,269,7.0\n111,270,7.5\n111,271,8.0\n111,272,8.5\n111,273,9.0\n111,274,9.5\n111,275,9.0\n111,276,8.5\n111,277,8.0\n111,278,7.5\n111,279,7.0\n111,280,6.5\n111,281,6.0\n111,282,5.5\n111,283,5.0\n111,284,4.5\n111,285,4.0\n111,286,3.5\n111,287,4.0\n111,288,4.5\n111,289,5.0\n111,290,5.5\n111,291,6.0\n111,292,6.5\n111,293,7.0\n111,294,7.5\n111,295,8.0\n111,296,8.5\n111,297,9.0\n111,298,9.5\n111,299,10.0\n111,300,9.5\n111,301,9.0\n111,302,8.5\n111,303,8.0\n111,304,7.5\n111,305,7.0\n111,306,6.5\n111,307,6.0\n111,308,5.5\n111,309,5.0\n111,310,4.5\n111,311,4.0\n111,312,4.5\n111,313,5.0\n111,314,5.5\n111,315,6.0\n111,316,6.5\n111,317,7.0\n111,318,7.5\n111,319,8.0\n111,320,8.5\n111,321,9.0\n111,322,9.5\n111,323,10.0\n111,324,10.5\n111,325,10.0\n111,326,9.5\n111,327,9.0\n111,328,8.5\n111,329,8.0\n111,330,7.5\n111,331,7.0\n111,332,6.5\n111,333,6.0\n111,334,5.5\n111,335,5.0\n111,336,4.5\n111,337,5.0\n111,338,5.5\n111,339,6.0\n111,340,6.5\n111,341,7.0\n111,342,7.5\n111,343,8.0\n111,344,8.5\n111,345,9.0\n111,346,9.5\n111,347,10.0\n111,348,10.5\n111,349,11.0\n111,350,10.5\n111,351,10.0\n111,352,9.5\n111,353,9.0\n111,354,8.5\n111,355,8.0\n111,356,7.5\n111,357,7.0\n111,358,6.5\n111,359,6.0\n111,360,5.5\n111,361,5.0\n111,362,5.5\n111,363,6.0\n111,364,6.5\n111,365,7.0\n111,366,7.5\n111,367,8.0\n111,368,8.5\n111,369,9.0\n111,370,9.5\n111,371,10.0\n111,372,10.5\n111,373,11.0\n111,374,11.5\n111,375,11.0\n111,376,10.5\n111,377,10.0\n111,378,9.5\n111,379,9.0\n111,380,8.5\n111,381,8.0\n111,382,7.5\n111,383,7.0\n111,384,6.5\n111,385,6.0\n111,386,5.5\n111,387,6.0\n111,388,6.5\n111,389,7.0\n111,390,7.5\n111,391,8.0\n111,392,8.5\n111,393,9.0\n111,394,9.5\n111,395,10.0\n111,396,10.5\n111,397,11.0\n111,398,11.5\n111,399,12.0\n111,400,11.5\n111,401,11.0\n111,402,10.5\n111,403,10.0\n111,404,9.5\n111,405,9.0\n111,406,8.5\n111,407,8.0\n111,408,7.5\n111,409,7.0\n111,410,6.5\n111,411,6.0\n111,412,6.5\n111,413,7.0\n111,414,7.5\n111,415,8.0\n111,416,8.5\n111,417,9.0\n111,418,9.5\n111,419,10.0\n111,420,10.5\n111,421,11.0\n111,422,11.5\n111,423,12.0\n111,424,12.5\n111,425,12.0\n111,426,11.5\n111,427,11.0\n111,428,10.5\n111,429,10.0\n111,430,9.5\n111,431,9.0\n111,432,8.5\n111,433,8.0\n111,434,7.5\n111,435,7.0\n111,436,6.5\n111,437,7.0\n111,438,7.5\n111,439,8.0\n111,440,8.5\n111,441,9.0\n111,442,9.5\n111,443,10.0\n111,444,10.5\n111,445,11.0\n111,446,11.5\n111,447,12.0\n111,448,12.5\n111,449,13.0\n111,450,12.5\n111,451,12.0\n111,452,11.5\n111,453,11.0\n111,454,10.5\n111,455,10.0\n111,456,9.5\n111,457,9.0\n111,458,8.5\n111,459,8.0\n111,460,7.5\n111,461,7.0\n111,462,7.5\n111,463,8.0\n111,464,8.5\n111,465,9.0\n111,466,9.5\n111,467,10.0\n111,468,10.5\n111,469,11.0\n111,470,11.5\n111,471,12.0\n111,472,12.5\n111,473,13.0\n111,474,13.5\n111,475,13.0\n111,476,12.5\n111,477,12.0\n111,478,11.5\n111,479,11.0\n111,480,10.5\n111,481,10.0\n111,482,9.5\n111,483,9.0\n111,484,8.5\n111,485,8.0\n111,486,7.5\n111,487,8.0\n111,488,8.5\n111,489,9.0\n111,490,9.5\n111,491,10.0\n111,492,10.5\n111,493,11.0\n111,494,11.5\n111,495,12.0\n111,496,12.5\n111,497,13.0\n111,498,13.5\n111,499,14.0\n111,500,13.5\n111,501,13.0\n111,502,12.5\n111,503,12.0\n111,504,11.5\n111,505,11.0\n111,506,10.5\n111,507,10.0\n111,508,9.5\n111,509,9.0\n111,510,8.5\n111,511,8.0\n111,512,8.5\n111,513,9.0\n111,514,9.5\n111,515,10.0\n111,516,10.5\n111,517,11.0\n111,518,11.5\n111,519,12.0\n111,520,12.5\n111,521,13.0\n111,522,13.5\n111,523,14.0\n111,524,14.5\n111,525,14.0\n111,526,13.5\n111,527,13.0\n111,528,12.5\n111,529,12.0\n111,530,11.5\n111,531,11.0\n111,532,10.5\n111,533,10.0\n111,534,9.5\n111,535,9.0\n111,536,8.5\n111,537,9.0\n111,538,9.5\n111,539,10.0\n111,540,10.5\n111,541,11.0\n111,542,11.5\n111,543,12.0\n111,544,12.5\n111,545,13.0\n111,546,13.5\n111,547,14.0\n111,548,14.5\n111,549,15.0\n111,550,14.5\n111,551,14.0\n111,552,13.5\n111,553,13.0\n111,554,12.5\n111,555,12.0\n111,556,11.5\n111,557,11.0\n111,558,10.5\n111,559,10.0\n111,560,9.5\n111,561,9.0\n111,562,9.5\n111,563,10.0\n111,564,10.5\n111,565,11.0\n111,566,11.5\n111,567,12.0\n111,568,12.5\n111,569,13.0\n111,570,13.5\n111,571,14.0\n111,572,14.5\n111,573,15.0\n111,574,15.5\n111,575,15.0\n111,576,14.5\n111,577,14.0\n111,578,13.5\n111,579,13.0\n111,580,12.5\n111,581,12.0\n111,582,11.5\n111,583,11.0\n111,584,10.5\n111,585,10.0\n111,586,9.5\n111,587,10.0\n111,588,10.5\n111,589,11.0\n111,590,11.5\n111,591,12.0\n111,592,12.5\n111,593,13.0\n111,594,13.5\n111,595,14.0\n111,596,14.5\n111,597,15.0\n111,598,15.5\n111,599,16.0\n111,600,15.5\n111,601,15.0\n111,602,14.5\n111,603,14.0\n111,604,13.5\n111,605,13.0\n111,606,12.5\n111,607,12.0\n111,608,11.5\n111,609,11.0\n111,610,10.5\n111,611,10.0\n111,612,10.5\n111,613,11.0\n111,614,11.5\n111,615,12.0\n111,616,12.5\n111,617,13.0\n111,618,13.5\n111,619,14.0\n111,620,14.5\n111,621,15.0\n111,622,15.5\n111,623,16.0\n111,624,16.5\n112,0,8.0\n112,1,7.5\n112,2,7.0\n112,3,6.5\n112,4,6.0\n112,5,5.5\n112,6,5.0\n112,7,4.5\n112,8,4.0\n112,9,3.5\n112,10,3.0\n112,11,2.5\n112,12,2.0\n112,13,2.5\n112,14,3.0\n112,15,3.5\n112,16,4.0\n112,17,4.5\n112,18,5.0\n112,19,5.5\n112,20,6.0\n112,21,6.5\n112,22,7.0\n112,23,7.5\n112,24,8.0\n112,25,7.5\n112,26,7.0\n112,27,6.5\n112,28,6.0\n112,29,5.5\n112,30,5.0\n112,31,4.5\n112,32,4.0\n112,33,3.5\n112,34,3.0\n112,35,2.5\n112,36,2.0\n112,37,1.5\n112,38,2.0\n112,39,2.5\n112,40,3.0\n112,41,3.5\n112,42,4.0\n112,43,4.5\n112,44,5.0\n112,45,5.5\n112,46,6.0\n112,47,6.5\n112,48,7.0\n112,49,7.5\n112,50,7.0\n112,51,6.5\n112,52,6.0\n112,53,5.5\n112,54,5.0\n112,55,4.5\n112,56,4.0\n112,57,3.5\n112,58,3.0\n112,59,2.5\n112,60,2.0\n112,61,1.5\n112,62,1.0\n112,63,1.5\n112,64,2.0\n112,65,2.5\n112,66,3.0\n112,67,3.5\n112,68,4.0\n112,69,4.5\n112,70,5.0\n112,71,5.5\n112,72,6.0\n112,73,6.5\n112,74,7.0\n112,75,6.5\n112,76,6.0\n112,77,5.5\n112,78,5.0\n112,79,4.5\n112,80,4.0\n112,81,3.5\n112,82,3.0\n112,83,2.5\n112,84,2.0\n112,85,1.5\n112,86,1.0\n112,87,0.5\n112,88,1.0\n112,89,1.5\n112,90,2.0\n112,91,2.5\n112,92,3.0\n112,93,3.5\n112,94,4.0\n112,95,4.5\n112,96,5.0\n112,97,5.5\n112,98,6.0\n112,99,6.5\n112,100,6.0\n112,101,5.5\n112,102,5.0\n112,103,4.5\n112,104,4.0\n112,105,3.5\n112,106,3.0\n112,107,2.5\n112,108,2.0\n112,109,1.5\n112,110,1.0\n112,111,0.5\n112,112,0\n112,113,0.5\n112,114,1.0\n112,115,1.5\n112,116,2.0\n112,117,2.5\n112,118,3.0\n112,119,3.5\n112,120,4.0\n112,121,4.5\n112,122,5.0\n112,123,5.5\n112,124,6.0\n112,125,6.5\n112,126,6.0\n112,127,5.5\n112,128,5.0\n112,129,4.5\n112,130,4.0\n112,131,3.5\n112,132,3.0\n112,133,2.5\n112,134,2.0\n112,135,1.5\n112,136,1.0\n112,137,0.5\n112,138,1.0\n112,139,1.5\n112,140,2.0\n112,141,2.5\n112,142,3.0\n112,143,3.5\n112,144,4.0\n112,145,4.5\n112,146,5.0\n112,147,5.5\n112,148,6.0\n112,149,6.5\n112,150,7.0\n112,151,6.5\n112,152,6.0\n112,153,5.5\n112,154,5.0\n112,155,4.5\n112,156,4.0\n112,157,3.5\n112,158,3.0\n112,159,2.5\n112,160,2.0\n112,161,1.5\n112,162,1.0\n112,163,1.5\n112,164,2.0\n112,165,2.5\n112,166,3.0\n112,167,3.5\n112,168,4.0\n112,169,4.5\n112,170,5.0\n112,171,5.5\n112,172,6.0\n112,173,6.5\n112,174,7.0\n112,175,7.5\n112,176,7.0\n112,177,6.5\n112,178,6.0\n112,179,5.5\n112,180,5.0\n112,181,4.5\n112,182,4.0\n112,183,3.5\n112,184,3.0\n112,185,2.5\n112,186,2.0\n112,187,1.5\n112,188,2.0\n112,189,2.5\n112,190,3.0\n112,191,3.5\n112,192,4.0\n112,193,4.5\n112,194,5.0\n112,195,5.5\n112,196,6.0\n112,197,6.5\n112,198,7.0\n112,199,7.5\n112,200,8.0\n112,201,7.5\n112,202,7.0\n112,203,6.5\n112,204,6.0\n112,205,5.5\n112,206,5.0\n112,207,4.5\n112,208,4.0\n112,209,3.5\n112,210,3.0\n112,211,2.5\n112,212,2.0\n112,213,2.5\n112,214,3.0\n112,215,3.5\n112,216,4.0\n112,217,4.5\n112,218,5.0\n112,219,5.5\n112,220,6.0\n112,221,6.5\n112,222,7.0\n112,223,7.5\n112,224,8.0\n112,225,8.5\n112,226,8.0\n112,227,7.5\n112,228,7.0\n112,229,6.5\n112,230,6.0\n112,231,5.5\n112,232,5.0\n112,233,4.5\n112,234,4.0\n112,235,3.5\n112,236,3.0\n112,237,2.5\n112,238,3.0\n112,239,3.5\n112,240,4.0\n112,241,4.5\n112,242,5.0\n112,243,5.5\n112,244,6.0\n112,245,6.5\n112,246,7.0\n112,247,7.5\n112,248,8.0\n112,249,8.5\n112,250,9.0\n112,251,8.5\n112,252,8.0\n112,253,7.5\n112,254,7.0\n112,255,6.5\n112,256,6.0\n112,257,5.5\n112,258,5.0\n112,259,4.5\n112,260,4.0\n112,261,3.5\n112,262,3.0\n112,263,3.5\n112,264,4.0\n112,265,4.5\n112,266,5.0\n112,267,5.5\n112,268,6.0\n112,269,6.5\n112,270,7.0\n112,271,7.5\n112,272,8.0\n112,273,8.5\n112,274,9.0\n112,275,9.5\n112,276,9.0\n112,277,8.5\n112,278,8.0\n112,279,7.5\n112,280,7.0\n112,281,6.5\n112,282,6.0\n112,283,5.5\n112,284,5.0\n112,285,4.5\n112,286,4.0\n112,287,3.5\n112,288,4.0\n112,289,4.5\n112,290,5.0\n112,291,5.5\n112,292,6.0\n112,293,6.5\n112,294,7.0\n112,295,7.5\n112,296,8.0\n112,297,8.5\n112,298,9.0\n112,299,9.5\n112,300,10.0\n112,301,9.5\n112,302,9.0\n112,303,8.5\n112,304,8.0\n112,305,7.5\n112,306,7.0\n112,307,6.5\n112,308,6.0\n112,309,5.5\n112,310,5.0\n112,311,4.5\n112,312,4.0\n112,313,4.5\n112,314,5.0\n112,315,5.5\n112,316,6.0\n112,317,6.5\n112,318,7.0\n112,319,7.5\n112,320,8.0\n112,321,8.5\n112,322,9.0\n112,323,9.5\n112,324,10.0\n112,325,10.5\n112,326,10.0\n112,327,9.5\n112,328,9.0\n112,329,8.5\n112,330,8.0\n112,331,7.5\n112,332,7.0\n112,333,6.5\n112,334,6.0\n112,335,5.5\n112,336,5.0\n112,337,4.5\n112,338,5.0\n112,339,5.5\n112,340,6.0\n112,341,6.5\n112,342,7.0\n112,343,7.5\n112,344,8.0\n112,345,8.5\n112,346,9.0\n112,347,9.5\n112,348,10.0\n112,349,10.5\n112,350,11.0\n112,351,10.5\n112,352,10.0\n112,353,9.5\n112,354,9.0\n112,355,8.5\n112,356,8.0\n112,357,7.5\n112,358,7.0\n112,359,6.5\n112,360,6.0\n112,361,5.5\n112,362,5.0\n112,363,5.5\n112,364,6.0\n112,365,6.5\n112,366,7.0\n112,367,7.5\n112,368,8.0\n112,369,8.5\n112,370,9.0\n112,371,9.5\n112,372,10.0\n112,373,10.5\n112,374,11.0\n112,375,11.5\n112,376,11.0\n112,377,10.5\n112,378,10.0\n112,379,9.5\n112,380,9.0\n112,381,8.5\n112,382,8.0\n112,383,7.5\n112,384,7.0\n112,385,6.5\n112,386,6.0\n112,387,5.5\n112,388,6.0\n112,389,6.5\n112,390,7.0\n112,391,7.5\n112,392,8.0\n112,393,8.5\n112,394,9.0\n112,395,9.5\n112,396,10.0\n112,397,10.5\n112,398,11.0\n112,399,11.5\n112,400,12.0\n112,401,11.5\n112,402,11.0\n112,403,10.5\n112,404,10.0\n112,405,9.5\n112,406,9.0\n112,407,8.5\n112,408,8.0\n112,409,7.5\n112,410,7.0\n112,411,6.5\n112,412,6.0\n112,413,6.5\n112,414,7.0\n112,415,7.5\n112,416,8.0\n112,417,8.5\n112,418,9.0\n112,419,9.5\n112,420,10.0\n112,421,10.5\n112,422,11.0\n112,423,11.5\n112,424,12.0\n112,425,12.5\n112,426,12.0\n112,427,11.5\n112,428,11.0\n112,429,10.5\n112,430,10.0\n112,431,9.5\n112,432,9.0\n112,433,8.5\n112,434,8.0\n112,435,7.5\n112,436,7.0\n112,437,6.5\n112,438,7.0\n112,439,7.5\n112,440,8.0\n112,441,8.5\n112,442,9.0\n112,443,9.5\n112,444,10.0\n112,445,10.5\n112,446,11.0\n112,447,11.5\n112,448,12.0\n112,449,12.5\n112,450,13.0\n112,451,12.5\n112,452,12.0\n112,453,11.5\n112,454,11.0\n112,455,10.5\n112,456,10.0\n112,457,9.5\n112,458,9.0\n112,459,8.5\n112,460,8.0\n112,461,7.5\n112,462,7.0\n112,463,7.5\n112,464,8.0\n112,465,8.5\n112,466,9.0\n112,467,9.5\n112,468,10.0\n112,469,10.5\n112,470,11.0\n112,471,11.5\n112,472,12.0\n112,473,12.5\n112,474,13.0\n112,475,13.5\n112,476,13.0\n112,477,12.5\n112,478,12.0\n112,479,11.5\n112,480,11.0\n112,481,10.5\n112,482,10.0\n112,483,9.5\n112,484,9.0\n112,485,8.5\n112,486,8.0\n112,487,7.5\n112,488,8.0\n112,489,8.5\n112,490,9.0\n112,491,9.5\n112,492,10.0\n112,493,10.5\n112,494,11.0\n112,495,11.5\n112,496,12.0\n112,497,12.5\n112,498,13.0\n112,499,13.5\n112,500,14.0\n112,501,13.5\n112,502,13.0\n112,503,12.5\n112,504,12.0\n112,505,11.5\n112,506,11.0\n112,507,10.5\n112,508,10.0\n112,509,9.5\n112,510,9.0\n112,511,8.5\n112,512,8.0\n112,513,8.5\n112,514,9.0\n112,515,9.5\n112,516,10.0\n112,517,10.5\n112,518,11.0\n112,519,11.5\n112,520,12.0\n112,521,12.5\n112,522,13.0\n112,523,13.5\n112,524,14.0\n112,525,14.5\n112,526,14.0\n112,527,13.5\n112,528,13.0\n112,529,12.5\n112,530,12.0\n112,531,11.5\n112,532,11.0\n112,533,10.5\n112,534,10.0\n112,535,9.5\n112,536,9.0\n112,537,8.5\n112,538,9.0\n112,539,9.5\n112,540,10.0\n112,541,10.5\n112,542,11.0\n112,543,11.5\n112,544,12.0\n112,545,12.5\n112,546,13.0\n112,547,13.5\n112,548,14.0\n112,549,14.5\n112,550,15.0\n112,551,14.5\n112,552,14.0\n112,553,13.5\n112,554,13.0\n112,555,12.5\n112,556,12.0\n112,557,11.5\n112,558,11.0\n112,559,10.5\n112,560,10.0\n112,561,9.5\n112,562,9.0\n112,563,9.5\n112,564,10.0\n112,565,10.5\n112,566,11.0\n112,567,11.5\n112,568,12.0\n112,569,12.5\n112,570,13.0\n112,571,13.5\n112,572,14.0\n112,573,14.5\n112,574,15.0\n112,575,15.5\n112,576,15.0\n112,577,14.5\n112,578,14.0\n112,579,13.5\n112,580,13.0\n112,581,12.5\n112,582,12.0\n112,583,11.5\n112,584,11.0\n112,585,10.5\n112,586,10.0\n112,587,9.5\n112,588,10.0\n112,589,10.5\n112,590,11.0\n112,591,11.5\n112,592,12.0\n112,593,12.5\n112,594,13.0\n112,595,13.5\n112,596,14.0\n112,597,14.5\n112,598,15.0\n112,599,15.5\n112,600,16.0\n112,601,15.5\n112,602,15.0\n112,603,14.5\n112,604,14.0\n112,605,13.5\n112,606,13.0\n112,607,12.5\n112,608,12.0\n112,609,11.5\n112,610,11.0\n112,611,10.5\n112,612,10.0\n112,613,10.5\n112,614,11.0\n112,615,11.5\n112,616,12.0\n112,617,12.5\n112,618,13.0\n112,619,13.5\n112,620,14.0\n112,621,14.5\n112,622,15.0\n112,623,15.5\n112,624,16.0\n113,0,8.5\n113,1,8.0\n113,2,7.5\n113,3,7.0\n113,4,6.5\n113,5,6.0\n113,6,5.5\n113,7,5.0\n113,8,4.5\n113,9,4.0\n113,10,3.5\n113,11,3.0\n113,12,2.5\n113,13,2.0\n113,14,2.5\n113,15,3.0\n113,16,3.5\n113,17,4.0\n113,18,4.5\n113,19,5.0\n113,20,5.5\n113,21,6.0\n113,22,6.5\n113,23,7.0\n113,24,7.5\n113,25,8.0\n113,26,7.5\n113,27,7.0\n113,28,6.5\n113,29,6.0\n113,30,5.5\n113,31,5.0\n113,32,4.5\n113,33,4.0\n113,34,3.5\n113,35,3.0\n113,36,2.5\n113,37,2.0\n113,38,1.5\n113,39,2.0\n113,40,2.5\n113,41,3.0\n113,42,3.5\n113,43,4.0\n113,44,4.5\n113,45,5.0\n113,46,5.5\n113,47,6.0\n113,48,6.5\n113,49,7.0\n113,50,7.5\n113,51,7.0\n113,52,6.5\n113,53,6.0\n113,54,5.5\n113,55,5.0\n113,56,4.5\n113,57,4.0\n113,58,3.5\n113,59,3.0\n113,60,2.5\n113,61,2.0\n113,62,1.5\n113,63,1.0\n113,64,1.5\n113,65,2.0\n113,66,2.5\n113,67,3.0\n113,68,3.5\n113,69,4.0\n113,70,4.5\n113,71,5.0\n113,72,5.5\n113,73,6.0\n113,74,6.5\n113,75,7.0\n113,76,6.5\n113,77,6.0\n113,78,5.5\n113,79,5.0\n113,80,4.5\n113,81,4.0\n113,82,3.5\n113,83,3.0\n113,84,2.5\n113,85,2.0\n113,86,1.5\n113,87,1.0\n113,88,0.5\n113,89,1.0\n113,90,1.5\n113,91,2.0\n113,92,2.5\n113,93,3.0\n113,94,3.5\n113,95,4.0\n113,96,4.5\n113,97,5.0\n113,98,5.5\n113,99,6.0\n113,100,6.5\n113,101,6.0\n113,102,5.5\n113,103,5.0\n113,104,4.5\n113,105,4.0\n113,106,3.5\n113,107,3.0\n113,108,2.5\n113,109,2.0\n113,110,1.5\n113,111,1.0\n113,112,0.5\n113,113,0\n113,114,0.5\n113,115,1.0\n113,116,1.5\n113,117,2.0\n113,118,2.5\n113,119,3.0\n113,120,3.5\n113,121,4.0\n113,122,4.5\n113,123,5.0\n113,124,5.5\n113,125,7.0\n113,126,6.5\n113,127,6.0\n113,128,5.5\n113,129,5.0\n113,130,4.5\n113,131,4.0\n113,132,3.5\n113,133,3.0\n113,134,2.5\n113,135,2.0\n113,136,1.5\n113,137,1.0\n113,138,0.5\n113,139,1.0\n113,140,1.5\n113,141,2.0\n113,142,2.5\n113,143,3.0\n113,144,3.5\n113,145,4.0\n113,146,4.5\n113,147,5.0\n113,148,5.5\n113,149,6.0\n113,150,7.5\n113,151,7.0\n113,152,6.5\n113,153,6.0\n113,154,5.5\n113,155,5.0\n113,156,4.5\n113,157,4.0\n113,158,3.5\n113,159,3.0\n113,160,2.5\n113,161,2.0\n113,162,1.5\n113,163,1.0\n113,164,1.5\n113,165,2.0\n113,166,2.5\n113,167,3.0\n113,168,3.5\n113,169,4.0\n113,170,4.5\n113,171,5.0\n113,172,5.5\n113,173,6.0\n113,174,6.5\n113,175,8.0\n113,176,7.5\n113,177,7.0\n113,178,6.5\n113,179,6.0\n113,180,5.5\n113,181,5.0\n113,182,4.5\n113,183,4.0\n113,184,3.5\n113,185,3.0\n113,186,2.5\n113,187,2.0\n113,188,1.5\n113,189,2.0\n113,190,2.5\n113,191,3.0\n113,192,3.5\n113,193,4.0\n113,194,4.5\n113,195,5.0\n113,196,5.5\n113,197,6.0\n113,198,6.5\n113,199,7.0\n113,200,8.5\n113,201,8.0\n113,202,7.5\n113,203,7.0\n113,204,6.5\n113,205,6.0\n113,206,5.5\n113,207,5.0\n113,208,4.5\n113,209,4.0\n113,210,3.5\n113,211,3.0\n113,212,2.5\n113,213,2.0\n113,214,2.5\n113,215,3.0\n113,216,3.5\n113,217,4.0\n113,218,4.5\n113,219,5.0\n113,220,5.5\n113,221,6.0\n113,222,6.5\n113,223,7.0\n113,224,7.5\n113,225,9.0\n113,226,8.5\n113,227,8.0\n113,228,7.5\n113,229,7.0\n113,230,6.5\n113,231,6.0\n113,232,5.5\n113,233,5.0\n113,234,4.5\n113,235,4.0\n113,236,3.5\n113,237,3.0\n113,238,2.5\n113,239,3.0\n113,240,3.5\n113,241,4.0\n113,242,4.5\n113,243,5.0\n113,244,5.5\n113,245,6.0\n113,246,6.5\n113,247,7.0\n113,248,7.5\n113,249,8.0\n113,250,9.5\n113,251,9.0\n113,252,8.5\n113,253,8.0\n113,254,7.5\n113,255,7.0\n113,256,6.5\n113,257,6.0\n113,258,5.5\n113,259,5.0\n113,260,4.5\n113,261,4.0\n113,262,3.5\n113,263,3.0\n113,264,3.5\n113,265,4.0\n113,266,4.5\n113,267,5.0\n113,268,5.5\n113,269,6.0\n113,270,6.5\n113,271,7.0\n113,272,7.5\n113,273,8.0\n113,274,8.5\n113,275,10.0\n113,276,9.5\n113,277,9.0\n113,278,8.5\n113,279,8.0\n113,280,7.5\n113,281,7.0\n113,282,6.5\n113,283,6.0\n113,284,5.5\n113,285,5.0\n113,286,4.5\n113,287,4.0\n113,288,3.5\n113,289,4.0\n113,290,4.5\n113,291,5.0\n113,292,5.5\n113,293,6.0\n113,294,6.5\n113,295,7.0\n113,296,7.5\n113,297,8.0\n113,298,8.5\n113,299,9.0\n113,300,10.5\n113,301,10.0\n113,302,9.5\n113,303,9.0\n113,304,8.5\n113,305,8.0\n113,306,7.5\n113,307,7.0\n113,308,6.5\n113,309,6.0\n113,310,5.5\n113,311,5.0\n113,312,4.5\n113,313,4.0\n113,314,4.5\n113,315,5.0\n113,316,5.5\n113,317,6.0\n113,318,6.5\n113,319,7.0\n113,320,7.5\n113,321,8.0\n113,322,8.5\n113,323,9.0\n113,324,9.5\n113,325,11.0\n113,326,10.5\n113,327,10.0\n113,328,9.5\n113,329,9.0\n113,330,8.5\n113,331,8.0\n113,332,7.5\n113,333,7.0\n113,334,6.5\n113,335,6.0\n113,336,5.5\n113,337,5.0\n113,338,4.5\n113,339,5.0\n113,340,5.5\n113,341,6.0\n113,342,6.5\n113,343,7.0\n113,344,7.5\n113,345,8.0\n113,346,8.5\n113,347,9.0\n113,348,9.5\n113,349,10.0\n113,350,11.5\n113,351,11.0\n113,352,10.5\n113,353,10.0\n113,354,9.5\n113,355,9.0\n113,356,8.5\n113,357,8.0\n113,358,7.5\n113,359,7.0\n113,360,6.5\n113,361,6.0\n113,362,5.5\n113,363,5.0\n113,364,5.5\n113,365,6.0\n113,366,6.5\n113,367,7.0\n113,368,7.5\n113,369,8.0\n113,370,8.5\n113,371,9.0\n113,372,9.5\n113,373,10.0\n113,374,10.5\n113,375,12.0\n113,376,11.5\n113,377,11.0\n113,378,10.5\n113,379,10.0\n113,380,9.5\n113,381,9.0\n113,382,8.5\n113,383,8.0\n113,384,7.5\n113,385,7.0\n113,386,6.5\n113,387,6.0\n113,388,5.5\n113,389,6.0\n113,390,6.5\n113,391,7.0\n113,392,7.5\n113,393,8.0\n113,394,8.5\n113,395,9.0\n113,396,9.5\n113,397,10.0\n113,398,10.5\n113,399,11.0\n113,400,12.5\n113,401,12.0\n113,402,11.5\n113,403,11.0\n113,404,10.5\n113,405,10.0\n113,406,9.5\n113,407,9.0\n113,408,8.5\n113,409,8.0\n113,410,7.5\n113,411,7.0\n113,412,6.5\n113,413,6.0\n113,414,6.5\n113,415,7.0\n113,416,7.5\n113,417,8.0\n113,418,8.5\n113,419,9.0\n113,420,9.5\n113,421,10.0\n113,422,10.5\n113,423,11.0\n113,424,11.5\n113,425,13.0\n113,426,12.5\n113,427,12.0\n113,428,11.5\n113,429,11.0\n113,430,10.5\n113,431,10.0\n113,432,9.5\n113,433,9.0\n113,434,8.5\n113,435,8.0\n113,436,7.5\n113,437,7.0\n113,438,6.5\n113,439,7.0\n113,440,7.5\n113,441,8.0\n113,442,8.5\n113,443,9.0\n113,444,9.5\n113,445,10.0\n113,446,10.5\n113,447,11.0\n113,448,11.5\n113,449,12.0\n113,450,13.5\n113,451,13.0\n113,452,12.5\n113,453,12.0\n113,454,11.5\n113,455,11.0\n113,456,10.5\n113,457,10.0\n113,458,9.5\n113,459,9.0\n113,460,8.5\n113,461,8.0\n113,462,7.5\n113,463,7.0\n113,464,7.5\n113,465,8.0\n113,466,8.5\n113,467,9.0\n113,468,9.5\n113,469,10.0\n113,470,10.5\n113,471,11.0\n113,472,11.5\n113,473,12.0\n113,474,12.5\n113,475,14.0\n113,476,13.5\n113,477,13.0\n113,478,12.5\n113,479,12.0\n113,480,11.5\n113,481,11.0\n113,482,10.5\n113,483,10.0\n113,484,9.5\n113,485,9.0\n113,486,8.5\n113,487,8.0\n113,488,7.5\n113,489,8.0\n113,490,8.5\n113,491,9.0\n113,492,9.5\n113,493,10.0\n113,494,10.5\n113,495,11.0\n113,496,11.5\n113,497,12.0\n113,498,12.5\n113,499,13.0\n113,500,14.5\n113,501,14.0\n113,502,13.5\n113,503,13.0\n113,504,12.5\n113,505,12.0\n113,506,11.5\n113,507,11.0\n113,508,10.5\n113,509,10.0\n113,510,9.5\n113,511,9.0\n113,512,8.5\n113,513,8.0\n113,514,8.5\n113,515,9.0\n113,516,9.5\n113,517,10.0\n113,518,10.5\n113,519,11.0\n113,520,11.5\n113,521,12.0\n113,522,12.5\n113,523,13.0\n113,524,13.5\n113,525,15.0\n113,526,14.5\n113,527,14.0\n113,528,13.5\n113,529,13.0\n113,530,12.5\n113,531,12.0\n113,532,11.5\n113,533,11.0\n113,534,10.5\n113,535,10.0\n113,536,9.5\n113,537,9.0\n113,538,8.5\n113,539,9.0\n113,540,9.5\n113,541,10.0\n113,542,10.5\n113,543,11.0\n113,544,11.5\n113,545,12.0\n113,546,12.5\n113,547,13.0\n113,548,13.5\n113,549,14.0\n113,550,15.5\n113,551,15.0\n113,552,14.5\n113,553,14.0\n113,554,13.5\n113,555,13.0\n113,556,12.5\n113,557,12.0\n113,558,11.5\n113,559,11.0\n113,560,10.5\n113,561,10.0\n113,562,9.5\n113,563,9.0\n113,564,9.5\n113,565,10.0\n113,566,10.5\n113,567,11.0\n113,568,11.5\n113,569,12.0\n113,570,12.5\n113,571,13.0\n113,572,13.5\n113,573,14.0\n113,574,14.5\n113,575,16.0\n113,576,15.5\n113,577,15.0\n113,578,14.5\n113,579,14.0\n113,580,13.5\n113,581,13.0\n113,582,12.5\n113,583,12.0\n113,584,11.5\n113,585,11.0\n113,586,10.5\n113,587,10.0\n113,588,9.5\n113,589,10.0\n113,590,10.5\n113,591,11.0\n113,592,11.5\n113,593,12.0\n113,594,12.5\n113,595,13.0\n113,596,13.5\n113,597,14.0\n113,598,14.5\n113,599,15.0\n113,600,16.5\n113,601,16.0\n113,602,15.5\n113,603,15.0\n113,604,14.5\n113,605,14.0\n113,606,13.5\n113,607,13.0\n113,608,12.5\n113,609,12.0\n113,610,11.5\n113,611,11.0\n113,612,10.5\n113,613,10.0\n113,614,10.5\n113,615,11.0\n113,616,11.5\n113,617,12.0\n113,618,12.5\n113,619,13.0\n113,620,13.5\n113,621,14.0\n113,622,14.5\n113,623,15.0\n113,624,15.5\n114,0,9.0\n114,1,8.5\n114,2,8.0\n114,3,7.5\n114,4,7.0\n114,5,6.5\n114,6,6.0\n114,7,5.5\n114,8,5.0\n114,9,4.5\n114,10,4.0\n114,11,3.5\n114,12,3.0\n114,13,2.5\n114,14,2.0\n114,15,2.5\n114,16,3.0\n114,17,3.5\n114,18,4.0\n114,19,4.5\n114,20,5.0\n114,21,5.5\n114,22,6.0\n114,23,6.5\n114,24,7.0\n114,25,8.5\n114,26,8.0\n114,27,7.5\n114,28,7.0\n114,29,6.5\n114,30,6.0\n114,31,5.5\n114,32,5.0\n114,33,4.5\n114,34,4.0\n114,35,3.5\n114,36,3.0\n114,37,2.5\n114,38,2.0\n114,39,1.5\n114,40,2.0\n114,41,2.5\n114,42,3.0\n114,43,3.5\n114,44,4.0\n114,45,4.5\n114,46,5.0\n114,47,5.5\n114,48,6.0\n114,49,6.5\n114,50,8.0\n114,51,7.5\n114,52,7.0\n114,53,6.5\n114,54,6.0\n114,55,5.5\n114,56,5.0\n114,57,4.5\n114,58,4.0\n114,59,3.5\n114,60,3.0\n114,61,2.5\n114,62,2.0\n114,63,1.5\n114,64,1.0\n114,65,1.5\n114,66,2.0\n114,67,2.5\n114,68,3.0\n114,69,3.5\n114,70,4.0\n114,71,4.5\n114,72,5.0\n114,73,5.5\n114,74,6.0\n114,75,7.5\n114,76,7.0\n114,77,6.5\n114,78,6.0\n114,79,5.5\n114,80,5.0\n114,81,4.5\n114,82,4.0\n114,83,3.5\n114,84,3.0\n114,85,2.5\n114,86,2.0\n114,87,1.5\n114,88,1.0\n114,89,0.5\n114,90,1.0\n114,91,1.5\n114,92,2.0\n114,93,2.5\n114,94,3.0\n114,95,3.5\n114,96,4.0\n114,97,4.5\n114,98,5.0\n114,99,5.5\n114,100,7.0\n114,101,6.5\n114,102,6.0\n114,103,5.5\n114,104,5.0\n114,105,4.5\n114,106,4.0\n114,107,3.5\n114,108,3.0\n114,109,2.5\n114,110,2.0\n114,111,1.5\n114,112,1.0\n114,113,0.5\n114,114,0\n114,115,0.5\n114,116,1.0\n114,117,1.5\n114,118,2.0\n114,119,2.5\n114,120,3.0\n114,121,3.5\n114,122,4.0\n114,123,4.5\n114,124,5.0\n114,125,7.5\n114,126,7.0\n114,127,6.5\n114,128,6.0\n114,129,5.5\n114,130,5.0\n114,131,4.5\n114,132,4.0\n114,133,3.5\n114,134,3.0\n114,135,2.5\n114,136,2.0\n114,137,1.5\n114,138,1.0\n114,139,0.5\n114,140,1.0\n114,141,1.5\n114,142,2.0\n114,143,2.5\n114,144,3.0\n114,145,3.5\n114,146,4.0\n114,147,4.5\n114,148,5.0\n114,149,5.5\n114,150,8.0\n114,151,7.5\n114,152,7.0\n114,153,6.5\n114,154,6.0\n114,155,5.5\n114,156,5.0\n114,157,4.5\n114,158,4.0\n114,159,3.5\n114,160,3.0\n114,161,2.5\n114,162,2.0\n114,163,1.5\n114,164,1.0\n114,165,1.5\n114,166,2.0\n114,167,2.5\n114,168,3.0\n114,169,3.5\n114,170,4.0\n114,171,4.5\n114,172,5.0\n114,173,5.5\n114,174,6.0\n114,175,8.5\n114,176,8.0\n114,177,7.5\n114,178,7.0\n114,179,6.5\n114,180,6.0\n114,181,5.5\n114,182,5.0\n114,183,4.5\n114,184,4.0\n114,185,3.5\n114,186,3.0\n114,187,2.5\n114,188,2.0\n114,189,1.5\n114,190,2.0\n114,191,2.5\n114,192,3.0\n114,193,3.5\n114,194,4.0\n114,195,4.5\n114,196,5.0\n114,197,5.5\n114,198,6.0\n114,199,6.5\n114,200,9.0\n114,201,8.5\n114,202,8.0\n114,203,7.5\n114,204,7.0\n114,205,6.5\n114,206,6.0\n114,207,5.5\n114,208,5.0\n114,209,4.5\n114,210,4.0\n114,211,3.5\n114,212,3.0\n114,213,2.5\n114,214,2.0\n114,215,2.5\n114,216,3.0\n114,217,3.5\n114,218,4.0\n114,219,4.5\n114,220,5.0\n114,221,5.5\n114,222,6.0\n114,223,6.5\n114,224,7.0\n114,225,9.5\n114,226,9.0\n114,227,8.5\n114,228,8.0\n114,229,7.5\n114,230,7.0\n114,231,6.5\n114,232,6.0\n114,233,5.5\n114,234,5.0\n114,235,4.5\n114,236,4.0\n114,237,3.5\n114,238,3.0\n114,239,2.5\n114,240,3.0\n114,241,3.5\n114,242,4.0\n114,243,4.5\n114,244,5.0\n114,245,5.5\n114,246,6.0\n114,247,6.5\n114,248,7.0\n114,249,7.5\n114,250,10.0\n114,251,9.5\n114,252,9.0\n114,253,8.5\n114,254,8.0\n114,255,7.5\n114,256,7.0\n114,257,6.5\n114,258,6.0\n114,259,5.5\n114,260,5.0\n114,261,4.5\n114,262,4.0\n114,263,3.5\n114,264,3.0\n114,265,3.5\n114,266,4.0\n114,267,4.5\n114,268,5.0\n114,269,5.5\n114,270,6.0\n114,271,6.5\n114,272,7.0\n114,273,7.5\n114,274,8.0\n114,275,10.5\n114,276,10.0\n114,277,9.5\n114,278,9.0\n114,279,8.5\n114,280,8.0\n114,281,7.5\n114,282,7.0\n114,283,6.5\n114,284,6.0\n114,285,5.5\n114,286,5.0\n114,287,4.5\n114,288,4.0\n114,289,3.5\n114,290,4.0\n114,291,4.5\n114,292,5.0\n114,293,5.5\n114,294,6.0\n114,295,6.5\n114,296,7.0\n114,297,7.5\n114,298,8.0\n114,299,8.5\n114,300,11.0\n114,301,10.5\n114,302,10.0\n114,303,9.5\n114,304,9.0\n114,305,8.5\n114,306,8.0\n114,307,7.5\n114,308,7.0\n114,309,6.5\n114,310,6.0\n114,311,5.5\n114,312,5.0\n114,313,4.5\n114,314,4.0\n114,315,4.5\n114,316,5.0\n114,317,5.5\n114,318,6.0\n114,319,6.5\n114,320,7.0\n114,321,7.5\n114,322,8.0\n114,323,8.5\n114,324,9.0\n114,325,11.5\n114,326,11.0\n114,327,10.5\n114,328,10.0\n114,329,9.5\n114,330,9.0\n114,331,8.5\n114,332,8.0\n114,333,7.5\n114,334,7.0\n114,335,6.5\n114,336,6.0\n114,337,5.5\n114,338,5.0\n114,339,4.5\n114,340,5.0\n114,341,5.5\n114,342,6.0\n114,343,6.5\n114,344,7.0\n114,345,7.5\n114,346,8.0\n114,347,8.5\n114,348,9.0\n114,349,9.5\n114,350,12.0\n114,351,11.5\n114,352,11.0\n114,353,10.5\n114,354,10.0\n114,355,9.5\n114,356,9.0\n114,357,8.5\n114,358,8.0\n114,359,7.5\n114,360,7.0\n114,361,6.5\n114,362,6.0\n114,363,5.5\n114,364,5.0\n114,365,5.5\n114,366,6.0\n114,367,6.5\n114,368,7.0\n114,369,7.5\n114,370,8.0\n114,371,8.5\n114,372,9.0\n114,373,9.5\n114,374,10.0\n114,375,12.5\n114,376,12.0\n114,377,11.5\n114,378,11.0\n114,379,10.5\n114,380,10.0\n114,381,9.5\n114,382,9.0\n114,383,8.5\n114,384,8.0\n114,385,7.5\n114,386,7.0\n114,387,6.5\n114,388,6.0\n114,389,5.5\n114,390,6.0\n114,391,6.5\n114,392,7.0\n114,393,7.5\n114,394,8.0\n114,395,8.5\n114,396,9.0\n114,397,9.5\n114,398,10.0\n114,399,10.5\n114,400,13.0\n114,401,12.5\n114,402,12.0\n114,403,11.5\n114,404,11.0\n114,405,10.5\n114,406,10.0\n114,407,9.5\n114,408,9.0\n114,409,8.5\n114,410,8.0\n114,411,7.5\n114,412,7.0\n114,413,6.5\n114,414,6.0\n114,415,6.5\n114,416,7.0\n114,417,7.5\n114,418,8.0\n114,419,8.5\n114,420,9.0\n114,421,9.5\n114,422,10.0\n114,423,10.5\n114,424,11.0\n114,425,13.5\n114,426,13.0\n114,427,12.5\n114,428,12.0\n114,429,11.5\n114,430,11.0\n114,431,10.5\n114,432,10.0\n114,433,9.5\n114,434,9.0\n114,435,8.5\n114,436,8.0\n114,437,7.5\n114,438,7.0\n114,439,6.5\n114,440,7.0\n114,441,7.5\n114,442,8.0\n114,443,8.5\n114,444,9.0\n114,445,9.5\n114,446,10.0\n114,447,10.5\n114,448,11.0\n114,449,11.5\n114,450,14.0\n114,451,13.5\n114,452,13.0\n114,453,12.5\n114,454,12.0\n114,455,11.5\n114,456,11.0\n114,457,10.5\n114,458,10.0\n114,459,9.5\n114,460,9.0\n114,461,8.5\n114,462,8.0\n114,463,7.5\n114,464,7.0\n114,465,7.5\n114,466,8.0\n114,467,8.5\n114,468,9.0\n114,469,9.5\n114,470,10.0\n114,471,10.5\n114,472,11.0\n114,473,11.5\n114,474,12.0\n114,475,14.5\n114,476,14.0\n114,477,13.5\n114,478,13.0\n114,479,12.5\n114,480,12.0\n114,481,11.5\n114,482,11.0\n114,483,10.5\n114,484,10.0\n114,485,9.5\n114,486,9.0\n114,487,8.5\n114,488,8.0\n114,489,7.5\n114,490,8.0\n114,491,8.5\n114,492,9.0\n114,493,9.5\n114,494,10.0\n114,495,10.5\n114,496,11.0\n114,497,11.5\n114,498,12.0\n114,499,12.5\n114,500,15.0\n114,501,14.5\n114,502,14.0\n114,503,13.5\n114,504,13.0\n114,505,12.5\n114,506,12.0\n114,507,11.5\n114,508,11.0\n114,509,10.5\n114,510,10.0\n114,511,9.5\n114,512,9.0\n114,513,8.5\n114,514,8.0\n114,515,8.5\n114,516,9.0\n114,517,9.5\n114,518,10.0\n114,519,10.5\n114,520,11.0\n114,521,11.5\n114,522,12.0\n114,523,12.5\n114,524,13.0\n114,525,15.5\n114,526,15.0\n114,527,14.5\n114,528,14.0\n114,529,13.5\n114,530,13.0\n114,531,12.5\n114,532,12.0\n114,533,11.5\n114,534,11.0\n114,535,10.5\n114,536,10.0\n114,537,9.5\n114,538,9.0\n114,539,8.5\n114,540,9.0\n114,541,9.5\n114,542,10.0\n114,543,10.5\n114,544,11.0\n114,545,11.5\n114,546,12.0\n114,547,12.5\n114,548,13.0\n114,549,13.5\n114,550,16.0\n114,551,15.5\n114,552,15.0\n114,553,14.5\n114,554,14.0\n114,555,13.5\n114,556,13.0\n114,557,12.5\n114,558,12.0\n114,559,11.5\n114,560,11.0\n114,561,10.5\n114,562,10.0\n114,563,9.5\n114,564,9.0\n114,565,9.5\n114,566,10.0\n114,567,10.5\n114,568,11.0\n114,569,11.5\n114,570,12.0\n114,571,12.5\n114,572,13.0\n114,573,13.5\n114,574,14.0\n114,575,16.5\n114,576,16.0\n114,577,15.5\n114,578,15.0\n114,579,14.5\n114,580,14.0\n114,581,13.5\n114,582,13.0\n114,583,12.5\n114,584,12.0\n114,585,11.5\n114,586,11.0\n114,587,10.5\n114,588,10.0\n114,589,9.5\n114,590,10.0\n114,591,10.5\n114,592,11.0\n114,593,11.5\n114,594,12.0\n114,595,12.5\n114,596,13.0\n114,597,13.5\n114,598,14.0\n114,599,14.5\n114,600,17.0\n114,601,16.5\n114,602,16.0\n114,603,15.5\n114,604,15.0\n114,605,14.5\n114,606,14.0\n114,607,13.5\n114,608,13.0\n114,609,12.5\n114,610,12.0\n114,611,11.5\n114,612,11.0\n114,613,10.5\n114,614,10.0\n114,615,10.5\n114,616,11.0\n114,617,11.5\n114,618,12.0\n114,619,12.5\n114,620,13.0\n114,621,13.5\n114,622,14.0\n114,623,14.5\n114,624,15.0\n115,0,9.5\n115,1,9.0\n115,2,8.5\n115,3,8.0\n115,4,7.5\n115,5,7.0\n115,6,6.5\n115,7,6.0\n115,8,5.5\n115,9,5.0\n115,10,4.5\n115,11,4.0\n115,12,3.5\n115,13,3.0\n115,14,2.5\n115,15,2.0\n115,16,2.5\n115,17,3.0\n115,18,3.5\n115,19,4.0\n115,20,4.5\n115,21,5.0\n115,22,5.5\n115,23,6.0\n115,24,6.5\n115,25,9.0\n115,26,8.5\n115,27,8.0\n115,28,7.5\n115,29,7.0\n115,30,6.5\n115,31,6.0\n115,32,5.5\n115,33,5.0\n115,34,4.5\n115,35,4.0\n115,36,3.5\n115,37,3.0\n115,38,2.5\n115,39,2.0\n115,40,1.5\n115,41,2.0\n115,42,2.5\n115,43,3.0\n115,44,3.5\n115,45,4.0\n115,46,4.5\n115,47,5.0\n115,48,5.5\n115,49,6.0\n115,50,8.5\n115,51,8.0\n115,52,7.5\n115,53,7.0\n115,54,6.5\n115,55,6.0\n115,56,5.5\n115,57,5.0\n115,58,4.5\n115,59,4.0\n115,60,3.5\n115,61,3.0\n115,62,2.5\n115,63,2.0\n115,64,1.5\n115,65,1.0\n115,66,1.5\n115,67,2.0\n115,68,2.5\n115,69,3.0\n115,70,3.5\n115,71,4.0\n115,72,4.5\n115,73,5.0\n115,74,5.5\n115,75,8.0\n115,76,7.5\n115,77,7.0\n115,78,6.5\n115,79,6.0\n115,80,5.5\n115,81,5.0\n115,82,4.5\n115,83,4.0\n115,84,3.5\n115,85,3.0\n115,86,2.5\n115,87,2.0\n115,88,1.5\n115,89,1.0\n115,90,0.5\n115,91,1.0\n115,92,1.5\n115,93,2.0\n115,94,2.5\n115,95,3.0\n115,96,3.5\n115,97,4.0\n115,98,4.5\n115,99,5.0\n115,100,7.5\n115,101,7.0\n115,102,6.5\n115,103,6.0\n115,104,5.5\n115,105,5.0\n115,106,4.5\n115,107,4.0\n115,108,3.5\n115,109,3.0\n115,110,2.5\n115,111,2.0\n115,112,1.5\n115,113,1.0\n115,114,0.5\n115,115,0\n115,116,0.5\n115,117,1.0\n115,118,1.5\n115,119,2.0\n115,120,2.5\n115,121,3.0\n115,122,3.5\n115,123,4.0\n115,124,4.5\n115,125,8.0\n115,126,7.5\n115,127,7.0\n115,128,6.5\n115,129,6.0\n115,130,5.5\n115,131,5.0\n115,132,4.5\n115,133,4.0\n115,134,3.5\n115,135,3.0\n115,136,2.5\n115,137,2.0\n115,138,1.5\n115,139,1.0\n115,140,0.5\n115,141,1.0\n115,142,1.5\n115,143,2.0\n115,144,2.5\n115,145,3.0\n115,146,3.5\n115,147,4.0\n115,148,4.5\n115,149,5.0\n115,150,8.5\n115,151,8.0\n115,152,7.5\n115,153,7.0\n115,154,6.5\n115,155,6.0\n115,156,5.5\n115,157,5.0\n115,158,4.5\n115,159,4.0\n115,160,3.5\n115,161,3.0\n115,162,2.5\n115,163,2.0\n115,164,1.5\n115,165,1.0\n115,166,1.5\n115,167,2.0\n115,168,2.5\n115,169,3.0\n115,170,3.5\n115,171,4.0\n115,172,4.5\n115,173,5.0\n115,174,5.5\n115,175,9.0\n115,176,8.5\n115,177,8.0\n115,178,7.5\n115,179,7.0\n115,180,6.5\n115,181,6.0\n115,182,5.5\n115,183,5.0\n115,184,4.5\n115,185,4.0\n115,186,3.5\n115,187,3.0\n115,188,2.5\n115,189,2.0\n115,190,1.5\n115,191,2.0\n115,192,2.5\n115,193,3.0\n115,194,3.5\n115,195,4.0\n115,196,4.5\n115,197,5.0\n115,198,5.5\n115,199,6.0\n115,200,9.5\n115,201,9.0\n115,202,8.5\n115,203,8.0\n115,204,7.5\n115,205,7.0\n115,206,6.5\n115,207,6.0\n115,208,5.5\n115,209,5.0\n115,210,4.5\n115,211,4.0\n115,212,3.5\n115,213,3.0\n115,214,2.5\n115,215,2.0\n115,216,2.5\n115,217,3.0\n115,218,3.5\n115,219,4.0\n115,220,4.5\n115,221,5.0\n115,222,5.5\n115,223,6.0\n115,224,6.5\n115,225,10.0\n115,226,9.5\n115,227,9.0\n115,228,8.5\n115,229,8.0\n115,230,7.5\n115,231,7.0\n115,232,6.5\n115,233,6.0\n115,234,5.5\n115,235,5.0\n115,236,4.5\n115,237,4.0\n115,238,3.5\n115,239,3.0\n115,240,2.5\n115,241,3.0\n115,242,3.5\n115,243,4.0\n115,244,4.5\n115,245,5.0\n115,246,5.5\n115,247,6.0\n115,248,6.5\n115,249,7.0\n115,250,10.5\n115,251,10.0\n115,252,9.5\n115,253,9.0\n115,254,8.5\n115,255,8.0\n115,256,7.5\n115,257,7.0\n115,258,6.5\n115,259,6.0\n115,260,5.5\n115,261,5.0\n115,262,4.5\n115,263,4.0\n115,264,3.5\n115,265,3.0\n115,266,3.5\n115,267,4.0\n115,268,4.5\n115,269,5.0\n115,270,5.5\n115,271,6.0\n115,272,6.5\n115,273,7.0\n115,274,7.5\n115,275,11.0\n115,276,10.5\n115,277,10.0\n115,278,9.5\n115,279,9.0\n115,280,8.5\n115,281,8.0\n115,282,7.5\n115,283,7.0\n115,284,6.5\n115,285,6.0\n115,286,5.5\n115,287,5.0\n115,288,4.5\n115,289,4.0\n115,290,3.5\n115,291,4.0\n115,292,4.5\n115,293,5.0\n115,294,5.5\n115,295,6.0\n115,296,6.5\n115,297,7.0\n115,298,7.5\n115,299,8.0\n115,300,11.5\n115,301,11.0\n115,302,10.5\n115,303,10.0\n115,304,9.5\n115,305,9.0\n115,306,8.5\n115,307,8.0\n115,308,7.5\n115,309,7.0\n115,310,6.5\n115,311,6.0\n115,312,5.5\n115,313,5.0\n115,314,4.5\n115,315,4.0\n115,316,4.5\n115,317,5.0\n115,318,5.5\n115,319,6.0\n115,320,6.5\n115,321,7.0\n115,322,7.5\n115,323,8.0\n115,324,8.5\n115,325,12.0\n115,326,11.5\n115,327,11.0\n115,328,10.5\n115,329,10.0\n115,330,9.5\n115,331,9.0\n115,332,8.5\n115,333,8.0\n115,334,7.5\n115,335,7.0\n115,336,6.5\n115,337,6.0\n115,338,5.5\n115,339,5.0\n115,340,4.5\n115,341,5.0\n115,342,5.5\n115,343,6.0\n115,344,6.5\n115,345,7.0\n115,346,7.5\n115,347,8.0\n115,348,8.5\n115,349,9.0\n115,350,12.5\n115,351,12.0\n115,352,11.5\n115,353,11.0\n115,354,10.5\n115,355,10.0\n115,356,9.5\n115,357,9.0\n115,358,8.5\n115,359,8.0\n115,360,7.5\n115,361,7.0\n115,362,6.5\n115,363,6.0\n115,364,5.5\n115,365,5.0\n115,366,5.5\n115,367,6.0\n115,368,6.5\n115,369,7.0\n115,370,7.5\n115,371,8.0\n115,372,8.5\n115,373,9.0\n115,374,9.5\n115,375,13.0\n115,376,12.5\n115,377,12.0\n115,378,11.5\n115,379,11.0\n115,380,10.5\n115,381,10.0\n115,382,9.5\n115,383,9.0\n115,384,8.5\n115,385,8.0\n115,386,7.5\n115,387,7.0\n115,388,6.5\n115,389,6.0\n115,390,5.5\n115,391,6.0\n115,392,6.5\n115,393,7.0\n115,394,7.5\n115,395,8.0\n115,396,8.5\n115,397,9.0\n115,398,9.5\n115,399,10.0\n115,400,13.5\n115,401,13.0\n115,402,12.5\n115,403,12.0\n115,404,11.5\n115,405,11.0\n115,406,10.5\n115,407,10.0\n115,408,9.5\n115,409,9.0\n115,410,8.5\n115,411,8.0\n115,412,7.5\n115,413,7.0\n115,414,6.5\n115,415,6.0\n115,416,6.5\n115,417,7.0\n115,418,7.5\n115,419,8.0\n115,420,8.5\n115,421,9.0\n115,422,9.5\n115,423,10.0\n115,424,10.5\n115,425,14.0\n115,426,13.5\n115,427,13.0\n115,428,12.5\n115,429,12.0\n115,430,11.5\n115,431,11.0\n115,432,10.5\n115,433,10.0\n115,434,9.5\n115,435,9.0\n115,436,8.5\n115,437,8.0\n115,438,7.5\n115,439,7.0\n115,440,6.5\n115,441,7.0\n115,442,7.5\n115,443,8.0\n115,444,8.5\n115,445,9.0\n115,446,9.5\n115,447,10.0\n115,448,10.5\n115,449,11.0\n115,450,14.5\n115,451,14.0\n115,452,13.5\n115,453,13.0\n115,454,12.5\n115,455,12.0\n115,456,11.5\n115,457,11.0\n115,458,10.5\n115,459,10.0\n115,460,9.5\n115,461,9.0\n115,462,8.5\n115,463,8.0\n115,464,7.5\n115,465,7.0\n115,466,7.5\n115,467,8.0\n115,468,8.5\n115,469,9.0\n115,470,9.5\n115,471,10.0\n115,472,10.5\n115,473,11.0\n115,474,11.5\n115,475,15.0\n115,476,14.5\n115,477,14.0\n115,478,13.5\n115,479,13.0\n115,480,12.5\n115,481,12.0\n115,482,11.5\n115,483,11.0\n115,484,10.5\n115,485,10.0\n115,486,9.5\n115,487,9.0\n115,488,8.5\n115,489,8.0\n115,490,7.5\n115,491,8.0\n115,492,8.5\n115,493,9.0\n115,494,9.5\n115,495,10.0\n115,496,10.5\n115,497,11.0\n115,498,11.5\n115,499,12.0\n115,500,15.5\n115,501,15.0\n115,502,14.5\n115,503,14.0\n115,504,13.5\n115,505,13.0\n115,506,12.5\n115,507,12.0\n115,508,11.5\n115,509,11.0\n115,510,10.5\n115,511,10.0\n115,512,9.5\n115,513,9.0\n115,514,8.5\n115,515,8.0\n115,516,8.5\n115,517,9.0\n115,518,9.5\n115,519,10.0\n115,520,10.5\n115,521,11.0\n115,522,11.5\n115,523,12.0\n115,524,12.5\n115,525,16.0\n115,526,15.5\n115,527,15.0\n115,528,14.5\n115,529,14.0\n115,530,13.5\n115,531,13.0\n115,532,12.5\n115,533,12.0\n115,534,11.5\n115,535,11.0\n115,536,10.5\n115,537,10.0\n115,538,9.5\n115,539,9.0\n115,540,8.5\n115,541,9.0\n115,542,9.5\n115,543,10.0\n115,544,10.5\n115,545,11.0\n115,546,11.5\n115,547,12.0\n115,548,12.5\n115,549,13.0\n115,550,16.5\n115,551,16.0\n115,552,15.5\n115,553,15.0\n115,554,14.5\n115,555,14.0\n115,556,13.5\n115,557,13.0\n115,558,12.5\n115,559,12.0\n115,560,11.5\n115,561,11.0\n115,562,10.5\n115,563,10.0\n115,564,9.5\n115,565,9.0\n115,566,9.5\n115,567,10.0\n115,568,10.5\n115,569,11.0\n115,570,11.5\n115,571,12.0\n115,572,12.5\n115,573,13.0\n115,574,13.5\n115,575,17.0\n115,576,16.5\n115,577,16.0\n115,578,15.5\n115,579,15.0\n115,580,14.5\n115,581,14.0\n115,582,13.5\n115,583,13.0\n115,584,12.5\n115,585,12.0\n115,586,11.5\n115,587,11.0\n115,588,10.5\n115,589,10.0\n115,590,9.5\n115,591,10.0\n115,592,10.5\n115,593,11.0\n115,594,11.5\n115,595,12.0\n115,596,12.5\n115,597,13.0\n115,598,13.5\n115,599,14.0\n115,600,17.5\n115,601,17.0\n115,602,16.5\n115,603,16.0\n115,604,15.5\n115,605,15.0\n115,606,14.5\n115,607,14.0\n115,608,13.5\n115,609,13.0\n115,610,12.5\n115,611,12.0\n115,612,11.5\n115,613,11.0\n115,614,10.5\n115,615,10.0\n115,616,10.5\n115,617,11.0\n115,618,11.5\n115,619,12.0\n115,620,12.5\n115,621,13.0\n115,622,13.5\n115,623,14.0\n115,624,14.5\n116,0,10.0\n116,1,9.5\n116,2,9.0\n116,3,8.5\n116,4,8.0\n116,5,7.5\n116,6,7.0\n116,7,6.5\n116,8,6.0\n116,9,5.5\n116,10,5.0\n116,11,4.5\n116,12,4.0\n116,13,3.5\n116,14,3.0\n116,15,2.5\n116,16,2.0\n116,17,2.5\n116,18,3.0\n116,19,3.5\n116,20,4.0\n116,21,4.5\n116,22,5.0\n116,23,5.5\n116,24,6.0\n116,25,9.5\n116,26,9.0\n116,27,8.5\n116,28,8.0\n116,29,7.5\n116,30,7.0\n116,31,6.5\n116,32,6.0\n116,33,5.5\n116,34,5.0\n116,35,4.5\n116,36,4.0\n116,37,3.5\n116,38,3.0\n116,39,2.5\n116,40,2.0\n116,41,1.5\n116,42,2.0\n116,43,2.5\n116,44,3.0\n116,45,3.5\n116,46,4.0\n116,47,4.5\n116,48,5.0\n116,49,5.5\n116,50,9.0\n116,51,8.5\n116,52,8.0\n116,53,7.5\n116,54,7.0\n116,55,6.5\n116,56,6.0\n116,57,5.5\n116,58,5.0\n116,59,4.5\n116,60,4.0\n116,61,3.5\n116,62,3.0\n116,63,2.5\n116,64,2.0\n116,65,1.5\n116,66,1.0\n116,67,1.5\n116,68,2.0\n116,69,2.5\n116,70,3.0\n116,71,3.5\n116,72,4.0\n116,73,4.5\n116,74,5.0\n116,75,8.5\n116,76,8.0\n116,77,7.5\n116,78,7.0\n116,79,6.5\n116,80,6.0\n116,81,5.5\n116,82,5.0\n116,83,4.5\n116,84,4.0\n116,85,3.5\n116,86,3.0\n116,87,2.5\n116,88,2.0\n116,89,1.5\n116,90,1.0\n116,91,0.5\n116,92,1.0\n116,93,1.5\n116,94,2.0\n116,95,2.5\n116,96,3.0\n116,97,3.5\n116,98,4.0\n116,99,4.5\n116,100,8.0\n116,101,7.5\n116,102,7.0\n116,103,6.5\n116,104,6.0\n116,105,5.5\n116,106,5.0\n116,107,4.5\n116,108,4.0\n116,109,3.5\n116,110,3.0\n116,111,2.5\n116,112,2.0\n116,113,1.5\n116,114,1.0\n116,115,0.5\n116,116,0\n116,117,0.5\n116,118,1.0\n116,119,1.5\n116,120,2.0\n116,121,2.5\n116,122,3.0\n116,123,3.5\n116,124,4.0\n116,125,8.5\n116,126,8.0\n116,127,7.5\n116,128,7.0\n116,129,6.5\n116,130,6.0\n116,131,5.5\n116,132,5.0\n116,133,4.5\n116,134,4.0\n116,135,3.5\n116,136,3.0\n116,137,2.5\n116,138,2.0\n116,139,1.5\n116,140,1.0\n116,141,0.5\n116,142,1.0\n116,143,1.5\n116,144,2.0\n116,145,2.5\n116,146,3.0\n116,147,3.5\n116,148,4.0\n116,149,4.5\n116,150,9.0\n116,151,8.5\n116,152,8.0\n116,153,7.5\n116,154,7.0\n116,155,6.5\n116,156,6.0\n116,157,5.5\n116,158,5.0\n116,159,4.5\n116,160,4.0\n116,161,3.5\n116,162,3.0\n116,163,2.5\n116,164,2.0\n116,165,1.5\n116,166,1.0\n116,167,1.5\n116,168,2.0\n116,169,2.5\n116,170,3.0\n116,171,3.5\n116,172,4.0\n116,173,4.5\n116,174,5.0\n116,175,9.5\n116,176,9.0\n116,177,8.5\n116,178,8.0\n116,179,7.5\n116,180,7.0\n116,181,6.5\n116,182,6.0\n116,183,5.5\n116,184,5.0\n116,185,4.5\n116,186,4.0\n116,187,3.5\n116,188,3.0\n116,189,2.5\n116,190,2.0\n116,191,1.5\n116,192,2.0\n116,193,2.5\n116,194,3.0\n116,195,3.5\n116,196,4.0\n116,197,4.5\n116,198,5.0\n116,199,5.5\n116,200,10.0\n116,201,9.5\n116,202,9.0\n116,203,8.5\n116,204,8.0\n116,205,7.5\n116,206,7.0\n116,207,6.5\n116,208,6.0\n116,209,5.5\n116,210,5.0\n116,211,4.5\n116,212,4.0\n116,213,3.5\n116,214,3.0\n116,215,2.5\n116,216,2.0\n116,217,2.5\n116,218,3.0\n116,219,3.5\n116,220,4.0\n116,221,4.5\n116,222,5.0\n116,223,5.5\n116,224,6.0\n116,225,10.5\n116,226,10.0\n116,227,9.5\n116,228,9.0\n116,229,8.5\n116,230,8.0\n116,231,7.5\n116,232,7.0\n116,233,6.5\n116,234,6.0\n116,235,5.5\n116,236,5.0\n116,237,4.5\n116,238,4.0\n116,239,3.5\n116,240,3.0\n116,241,2.5\n116,242,3.0\n116,243,3.5\n116,244,4.0\n116,245,4.5\n116,246,5.0\n116,247,5.5\n116,248,6.0\n116,249,6.5\n116,250,11.0\n116,251,10.5\n116,252,10.0\n116,253,9.5\n116,254,9.0\n116,255,8.5\n116,256,8.0\n116,257,7.5\n116,258,7.0\n116,259,6.5\n116,260,6.0\n116,261,5.5\n116,262,5.0\n116,263,4.5\n116,264,4.0\n116,265,3.5\n116,266,3.0\n116,267,3.5\n116,268,4.0\n116,269,4.5\n116,270,5.0\n116,271,5.5\n116,272,6.0\n116,273,6.5\n116,274,7.0\n116,275,11.5\n116,276,11.0\n116,277,10.5\n116,278,10.0\n116,279,9.5\n116,280,9.0\n116,281,8.5\n116,282,8.0\n116,283,7.5\n116,284,7.0\n116,285,6.5\n116,286,6.0\n116,287,5.5\n116,288,5.0\n116,289,4.5\n116,290,4.0\n116,291,3.5\n116,292,4.0\n116,293,4.5\n116,294,5.0\n116,295,5.5\n116,296,6.0\n116,297,6.5\n116,298,7.0\n116,299,7.5\n116,300,12.0\n116,301,11.5\n116,302,11.0\n116,303,10.5\n116,304,10.0\n116,305,9.5\n116,306,9.0\n116,307,8.5\n116,308,8.0\n116,309,7.5\n116,310,7.0\n116,311,6.5\n116,312,6.0\n116,313,5.5\n116,314,5.0\n116,315,4.5\n116,316,4.0\n116,317,4.5\n116,318,5.0\n116,319,5.5\n116,320,6.0\n116,321,6.5\n116,322,7.0\n116,323,7.5\n116,324,8.0\n116,325,12.5\n116,326,12.0\n116,327,11.5\n116,328,11.0\n116,329,10.5\n116,330,10.0\n116,331,9.5\n116,332,9.0\n116,333,8.5\n116,334,8.0\n116,335,7.5\n116,336,7.0\n116,337,6.5\n116,338,6.0\n116,339,5.5\n116,340,5.0\n116,341,4.5\n116,342,5.0\n116,343,5.5\n116,344,6.0\n116,345,6.5\n116,346,7.0\n116,347,7.5\n116,348,8.0\n116,349,8.5\n116,350,13.0\n116,351,12.5\n116,352,12.0\n116,353,11.5\n116,354,11.0\n116,355,10.5\n116,356,10.0\n116,357,9.5\n116,358,9.0\n116,359,8.5\n116,360,8.0\n116,361,7.5\n116,362,7.0\n116,363,6.5\n116,364,6.0\n116,365,5.5\n116,366,5.0\n116,367,5.5\n116,368,6.0\n116,369,6.5\n116,370,7.0\n116,371,7.5\n116,372,8.0\n116,373,8.5\n116,374,9.0\n116,375,13.5\n116,376,13.0\n116,377,12.5\n116,378,12.0\n116,379,11.5\n116,380,11.0\n116,381,10.5\n116,382,10.0\n116,383,9.5\n116,384,9.0\n116,385,8.5\n116,386,8.0\n116,387,7.5\n116,388,7.0\n116,389,6.5\n116,390,6.0\n116,391,5.5\n116,392,6.0\n116,393,6.5\n116,394,7.0\n116,395,7.5\n116,396,8.0\n116,397,8.5\n116,398,9.0\n116,399,9.5\n116,400,14.0\n116,401,13.5\n116,402,13.0\n116,403,12.5\n116,404,12.0\n116,405,11.5\n116,406,11.0\n116,407,10.5\n116,408,10.0\n116,409,9.5\n116,410,9.0\n116,411,8.5\n116,412,8.0\n116,413,7.5\n116,414,7.0\n116,415,6.5\n116,416,6.0\n116,417,6.5\n116,418,7.0\n116,419,7.5\n116,420,8.0\n116,421,8.5\n116,422,9.0\n116,423,9.5\n116,424,10.0\n116,425,14.5\n116,426,14.0\n116,427,13.5\n116,428,13.0\n116,429,12.5\n116,430,12.0\n116,431,11.5\n116,432,11.0\n116,433,10.5\n116,434,10.0\n116,435,9.5\n116,436,9.0\n116,437,8.5\n116,438,8.0\n116,439,7.5\n116,440,7.0\n116,441,6.5\n116,442,7.0\n116,443,7.5\n116,444,8.0\n116,445,8.5\n116,446,9.0\n116,447,9.5\n116,448,10.0\n116,449,10.5\n116,450,15.0\n116,451,14.5\n116,452,14.0\n116,453,13.5\n116,454,13.0\n116,455,12.5\n116,456,12.0\n116,457,11.5\n116,458,11.0\n116,459,10.5\n116,460,10.0\n116,461,9.5\n116,462,9.0\n116,463,8.5\n116,464,8.0\n116,465,7.5\n116,466,7.0\n116,467,7.5\n116,468,8.0\n116,469,8.5\n116,470,9.0\n116,471,9.5\n116,472,10.0\n116,473,10.5\n116,474,11.0\n116,475,15.5\n116,476,15.0\n116,477,14.5\n116,478,14.0\n116,479,13.5\n116,480,13.0\n116,481,12.5\n116,482,12.0\n116,483,11.5\n116,484,11.0\n116,485,10.5\n116,486,10.0\n116,487,9.5\n116,488,9.0\n116,489,8.5\n116,490,8.0\n116,491,7.5\n116,492,8.0\n116,493,8.5\n116,494,9.0\n116,495,9.5\n116,496,10.0\n116,497,10.5\n116,498,11.0\n116,499,11.5\n116,500,16.0\n116,501,15.5\n116,502,15.0\n116,503,14.5\n116,504,14.0\n116,505,13.5\n116,506,13.0\n116,507,12.5\n116,508,12.0\n116,509,11.5\n116,510,11.0\n116,511,10.5\n116,512,10.0\n116,513,9.5\n116,514,9.0\n116,515,8.5\n116,516,8.0\n116,517,8.5\n116,518,9.0\n116,519,9.5\n116,520,10.0\n116,521,10.5\n116,522,11.0\n116,523,11.5\n116,524,12.0\n116,525,16.5\n116,526,16.0\n116,527,15.5\n116,528,15.0\n116,529,14.5\n116,530,14.0\n116,531,13.5\n116,532,13.0\n116,533,12.5\n116,534,12.0\n116,535,11.5\n116,536,11.0\n116,537,10.5\n116,538,10.0\n116,539,9.5\n116,540,9.0\n116,541,8.5\n116,542,9.0\n116,543,9.5\n116,544,10.0\n116,545,10.5\n116,546,11.0\n116,547,11.5\n116,548,12.0\n116,549,12.5\n116,550,17.0\n116,551,16.5\n116,552,16.0\n116,553,15.5\n116,554,15.0\n116,555,14.5\n116,556,14.0\n116,557,13.5\n116,558,13.0\n116,559,12.5\n116,560,12.0\n116,561,11.5\n116,562,11.0\n116,563,10.5\n116,564,10.0\n116,565,9.5\n116,566,9.0\n116,567,9.5\n116,568,10.0\n116,569,10.5\n116,570,11.0\n116,571,11.5\n116,572,12.0\n116,573,12.5\n116,574,13.0\n116,575,17.5\n116,576,17.0\n116,577,16.5\n116,578,16.0\n116,579,15.5\n116,580,15.0\n116,581,14.5\n116,582,14.0\n116,583,13.5\n116,584,13.0\n116,585,12.5\n116,586,12.0\n116,587,11.5\n116,588,11.0\n116,589,10.5\n116,590,10.0\n116,591,9.5\n116,592,10.0\n116,593,10.5\n116,594,11.0\n116,595,11.5\n116,596,12.0\n116,597,12.5\n116,598,13.0\n116,599,13.5\n116,600,18.0\n116,601,17.5\n116,602,17.0\n116,603,16.5\n116,604,16.0\n116,605,15.5\n116,606,15.0\n116,607,14.5\n116,608,14.0\n116,609,13.5\n116,610,13.0\n116,611,12.5\n116,612,12.0\n116,613,11.5\n116,614,11.0\n116,615,10.5\n116,616,10.0\n116,617,10.5\n116,618,11.0\n116,619,11.5\n116,620,12.0\n116,621,12.5\n116,622,13.0\n116,623,13.5\n116,624,14.0\n117,0,10.5\n117,1,10.0\n117,2,9.5\n117,3,9.0\n117,4,8.5\n117,5,8.0\n117,6,7.5\n117,7,7.0\n117,8,6.5\n117,9,6.0\n117,10,5.5\n117,11,5.0\n117,12,4.5\n117,13,4.0\n117,14,3.5\n117,15,3.0\n117,16,2.5\n117,17,2.0\n117,18,2.5\n117,19,3.0\n117,20,3.5\n117,21,4.0\n117,22,4.5\n117,23,5.0\n117,24,5.5\n117,25,10.0\n117,26,9.5\n117,27,9.0\n117,28,8.5\n117,29,8.0\n117,30,7.5\n117,31,7.0\n117,32,6.5\n117,33,6.0\n117,34,5.5\n117,35,5.0\n117,36,4.5\n117,37,4.0\n117,38,3.5\n117,39,3.0\n117,40,2.5\n117,41,2.0\n117,42,1.5\n117,43,2.0\n117,44,2.5\n117,45,3.0\n117,46,3.5\n117,47,4.0\n117,48,4.5\n117,49,5.0\n117,50,9.5\n117,51,9.0\n117,52,8.5\n117,53,8.0\n117,54,7.5\n117,55,7.0\n117,56,6.5\n117,57,6.0\n117,58,5.5\n117,59,5.0\n117,60,4.5\n117,61,4.0\n117,62,3.5\n117,63,3.0\n117,64,2.5\n117,65,2.0\n117,66,1.5\n117,67,1.0\n117,68,1.5\n117,69,2.0\n117,70,2.5\n117,71,3.0\n117,72,3.5\n117,73,4.0\n117,74,4.5\n117,75,9.0\n117,76,8.5\n117,77,8.0\n117,78,7.5\n117,79,7.0\n117,80,6.5\n117,81,6.0\n117,82,5.5\n117,83,5.0\n117,84,4.5\n117,85,4.0\n117,86,3.5\n117,87,3.0\n117,88,2.5\n117,89,2.0\n117,90,1.5\n117,91,1.0\n117,92,0.5\n117,93,1.0\n117,94,1.5\n117,95,2.0\n117,96,2.5\n117,97,3.0\n117,98,3.5\n117,99,4.0\n117,100,8.5\n117,101,8.0\n117,102,7.5\n117,103,7.0\n117,104,6.5\n117,105,6.0\n117,106,5.5\n117,107,5.0\n117,108,4.5\n117,109,4.0\n117,110,3.5\n117,111,3.0\n117,112,2.5\n117,113,2.0\n117,114,1.5\n117,115,1.0\n117,116,0.5\n117,117,0\n117,118,0.5\n117,119,1.0\n117,120,1.5\n117,121,2.0\n117,122,2.5\n117,123,3.0\n117,124,3.5\n117,125,9.0\n117,126,8.5\n117,127,8.0\n117,128,7.5\n117,129,7.0\n117,130,6.5\n117,131,6.0\n117,132,5.5\n117,133,5.0\n117,134,4.5\n117,135,4.0\n117,136,3.5\n117,137,3.0\n117,138,2.5\n117,139,2.0\n117,140,1.5\n117,141,1.0\n117,142,0.5\n117,143,1.0\n117,144,1.5\n117,145,2.0\n117,146,2.5\n117,147,3.0\n117,148,3.5\n117,149,4.0\n117,150,9.5\n117,151,9.0\n117,152,8.5\n117,153,8.0\n117,154,7.5\n117,155,7.0\n117,156,6.5\n117,157,6.0\n117,158,5.5\n117,159,5.0\n117,160,4.5\n117,161,4.0\n117,162,3.5\n117,163,3.0\n117,164,2.5\n117,165,2.0\n117,166,1.5\n117,167,1.0\n117,168,1.5\n117,169,2.0\n117,170,2.5\n117,171,3.0\n117,172,3.5\n117,173,4.0\n117,174,4.5\n117,175,10.0\n117,176,9.5\n117,177,9.0\n117,178,8.5\n117,179,8.0\n117,180,7.5\n117,181,7.0\n117,182,6.5\n117,183,6.0\n117,184,5.5\n117,185,5.0\n117,186,4.5\n117,187,4.0\n117,188,3.5\n117,189,3.0\n117,190,2.5\n117,191,2.0\n117,192,1.5\n117,193,2.0\n117,194,2.5\n117,195,3.0\n117,196,3.5\n117,197,4.0\n117,198,4.5\n117,199,5.0\n117,200,10.5\n117,201,10.0\n117,202,9.5\n117,203,9.0\n117,204,8.5\n117,205,8.0\n117,206,7.5\n117,207,7.0\n117,208,6.5\n117,209,6.0\n117,210,5.5\n117,211,5.0\n117,212,4.5\n117,213,4.0\n117,214,3.5\n117,215,3.0\n117,216,2.5\n117,217,2.0\n117,218,2.5\n117,219,3.0\n117,220,3.5\n117,221,4.0\n117,222,4.5\n117,223,5.0\n117,224,5.5\n117,225,11.0\n117,226,10.5\n117,227,10.0\n117,228,9.5\n117,229,9.0\n117,230,8.5\n117,231,8.0\n117,232,7.5\n117,233,7.0\n117,234,6.5\n117,235,6.0\n117,236,5.5\n117,237,5.0\n117,238,4.5\n117,239,4.0\n117,240,3.5\n117,241,3.0\n117,242,2.5\n117,243,3.0\n117,244,3.5\n117,245,4.0\n117,246,4.5\n117,247,5.0\n117,248,5.5\n117,249,6.0\n117,250,11.5\n117,251,11.0\n117,252,10.5\n117,253,10.0\n117,254,9.5\n117,255,9.0\n117,256,8.5\n117,257,8.0\n117,258,7.5\n117,259,7.0\n117,260,6.5\n117,261,6.0\n117,262,5.5\n117,263,5.0\n117,264,4.5\n117,265,4.0\n117,266,3.5\n117,267,3.0\n117,268,3.5\n117,269,4.0\n117,270,4.5\n117,271,5.0\n117,272,5.5\n117,273,6.0\n117,274,6.5\n117,275,12.0\n117,276,11.5\n117,277,11.0\n117,278,10.5\n117,279,10.0\n117,280,9.5\n117,281,9.0\n117,282,8.5\n117,283,8.0\n117,284,7.5\n117,285,7.0\n117,286,6.5\n117,287,6.0\n117,288,5.5\n117,289,5.0\n117,290,4.5\n117,291,4.0\n117,292,3.5\n117,293,4.0\n117,294,4.5\n117,295,5.0\n117,296,5.5\n117,297,6.0\n117,298,6.5\n117,299,7.0\n117,300,12.5\n117,301,12.0\n117,302,11.5\n117,303,11.0\n117,304,10.5\n117,305,10.0\n117,306,9.5\n117,307,9.0\n117,308,8.5\n117,309,8.0\n117,310,7.5\n117,311,7.0\n117,312,6.5\n117,313,6.0\n117,314,5.5\n117,315,5.0\n117,316,4.5\n117,317,4.0\n117,318,4.5\n117,319,5.0\n117,320,5.5\n117,321,6.0\n117,322,6.5\n117,323,7.0\n117,324,7.5\n117,325,13.0\n117,326,12.5\n117,327,12.0\n117,328,11.5\n117,329,11.0\n117,330,10.5\n117,331,10.0\n117,332,9.5\n117,333,9.0\n117,334,8.5\n117,335,8.0\n117,336,7.5\n117,337,7.0\n117,338,6.5\n117,339,6.0\n117,340,5.5\n117,341,5.0\n117,342,4.5\n117,343,5.0\n117,344,5.5\n117,345,6.0\n117,346,6.5\n117,347,7.0\n117,348,7.5\n117,349,8.0\n117,350,13.5\n117,351,13.0\n117,352,12.5\n117,353,12.0\n117,354,11.5\n117,355,11.0\n117,356,10.5\n117,357,10.0\n117,358,9.5\n117,359,9.0\n117,360,8.5\n117,361,8.0\n117,362,7.5\n117,363,7.0\n117,364,6.5\n117,365,6.0\n117,366,5.5\n117,367,5.0\n117,368,5.5\n117,369,6.0\n117,370,6.5\n117,371,7.0\n117,372,7.5\n117,373,8.0\n117,374,8.5\n117,375,14.0\n117,376,13.5\n117,377,13.0\n117,378,12.5\n117,379,12.0\n117,380,11.5\n117,381,11.0\n117,382,10.5\n117,383,10.0\n117,384,9.5\n117,385,9.0\n117,386,8.5\n117,387,8.0\n117,388,7.5\n117,389,7.0\n117,390,6.5\n117,391,6.0\n117,392,5.5\n117,393,6.0\n117,394,6.5\n117,395,7.0\n117,396,7.5\n117,397,8.0\n117,398,8.5\n117,399,9.0\n117,400,14.5\n117,401,14.0\n117,402,13.5\n117,403,13.0\n117,404,12.5\n117,405,12.0\n117,406,11.5\n117,407,11.0\n117,408,10.5\n117,409,10.0\n117,410,9.5\n117,411,9.0\n117,412,8.5\n117,413,8.0\n117,414,7.5\n117,415,7.0\n117,416,6.5\n117,417,6.0\n117,418,6.5\n117,419,7.0\n117,420,7.5\n117,421,8.0\n117,422,8.5\n117,423,9.0\n117,424,9.5\n117,425,15.0\n117,426,14.5\n117,427,14.0\n117,428,13.5\n117,429,13.0\n117,430,12.5\n117,431,12.0\n117,432,11.5\n117,433,11.0\n117,434,10.5\n117,435,10.0\n117,436,9.5\n117,437,9.0\n117,438,8.5\n117,439,8.0\n117,440,7.5\n117,441,7.0\n117,442,6.5\n117,443,7.0\n117,444,7.5\n117,445,8.0\n117,446,8.5\n117,447,9.0\n117,448,9.5\n117,449,10.0\n117,450,15.5\n117,451,15.0\n117,452,14.5\n117,453,14.0\n117,454,13.5\n117,455,13.0\n117,456,12.5\n117,457,12.0\n117,458,11.5\n117,459,11.0\n117,460,10.5\n117,461,10.0\n117,462,9.5\n117,463,9.0\n117,464,8.5\n117,465,8.0\n117,466,7.5\n117,467,7.0\n117,468,7.5\n117,469,8.0\n117,470,8.5\n117,471,9.0\n117,472,9.5\n117,473,10.0\n117,474,10.5\n117,475,16.0\n117,476,15.5\n117,477,15.0\n117,478,14.5\n117,479,14.0\n117,480,13.5\n117,481,13.0\n117,482,12.5\n117,483,12.0\n117,484,11.5\n117,485,11.0\n117,486,10.5\n117,487,10.0\n117,488,9.5\n117,489,9.0\n117,490,8.5\n117,491,8.0\n117,492,7.5\n117,493,8.0\n117,494,8.5\n117,495,9.0\n117,496,9.5\n117,497,10.0\n117,498,10.5\n117,499,11.0\n117,500,16.5\n117,501,16.0\n117,502,15.5\n117,503,15.0\n117,504,14.5\n117,505,14.0\n117,506,13.5\n117,507,13.0\n117,508,12.5\n117,509,12.0\n117,510,11.5\n117,511,11.0\n117,512,10.5\n117,513,10.0\n117,514,9.5\n117,515,9.0\n117,516,8.5\n117,517,8.0\n117,518,8.5\n117,519,9.0\n117,520,9.5\n117,521,10.0\n117,522,10.5\n117,523,11.0\n117,524,11.5\n117,525,17.0\n117,526,16.5\n117,527,16.0\n117,528,15.5\n117,529,15.0\n117,530,14.5\n117,531,14.0\n117,532,13.5\n117,533,13.0\n117,534,12.5\n117,535,12.0\n117,536,11.5\n117,537,11.0\n117,538,10.5\n117,539,10.0\n117,540,9.5\n117,541,9.0\n117,542,8.5\n117,543,9.0\n117,544,9.5\n117,545,10.0\n117,546,10.5\n117,547,11.0\n117,548,11.5\n117,549,12.0\n117,550,17.5\n117,551,17.0\n117,552,16.5\n117,553,16.0\n117,554,15.5\n117,555,15.0\n117,556,14.5\n117,557,14.0\n117,558,13.5\n117,559,13.0\n117,560,12.5\n117,561,12.0\n117,562,11.5\n117,563,11.0\n117,564,10.5\n117,565,10.0\n117,566,9.5\n117,567,9.0\n117,568,9.5\n117,569,10.0\n117,570,10.5\n117,571,11.0\n117,572,11.5\n117,573,12.0\n117,574,12.5\n117,575,18.0\n117,576,17.5\n117,577,17.0\n117,578,16.5\n117,579,16.0\n117,580,15.5\n117,581,15.0\n117,582,14.5\n117,583,14.0\n117,584,13.5\n117,585,13.0\n117,586,12.5\n117,587,12.0\n117,588,11.5\n117,589,11.0\n117,590,10.5\n117,591,10.0\n117,592,9.5\n117,593,10.0\n117,594,10.5\n117,595,11.0\n117,596,11.5\n117,597,12.0\n117,598,12.5\n117,599,13.0\n117,600,18.5\n117,601,18.0\n117,602,17.5\n117,603,17.0\n117,604,16.5\n117,605,16.0\n117,606,15.5\n117,607,15.0\n117,608,14.5\n117,609,14.0\n117,610,13.5\n117,611,13.0\n117,612,12.5\n117,613,12.0\n117,614,11.5\n117,615,11.0\n117,616,10.5\n117,617,10.0\n117,618,10.5\n117,619,11.0\n117,620,11.5\n117,621,12.0\n117,622,12.5\n117,623,13.0\n117,624,13.5\n118,0,11.0\n118,1,10.5\n118,2,10.0\n118,3,9.5\n118,4,9.0\n118,5,8.5\n118,6,8.0\n118,7,7.5\n118,8,7.0\n118,9,6.5\n118,10,6.0\n118,11,5.5\n118,12,5.0\n118,13,4.5\n118,14,4.0\n118,15,3.5\n118,16,3.0\n118,17,2.5\n118,18,2.0\n118,19,2.5\n118,20,3.0\n118,21,3.5\n118,22,4.0\n118,23,4.5\n118,24,5.0\n118,25,10.5\n118,26,10.0\n118,27,9.5\n118,28,9.0\n118,29,8.5\n118,30,8.0\n118,31,7.5\n118,32,7.0\n118,33,6.5\n118,34,6.0\n118,35,5.5\n118,36,5.0\n118,37,4.5\n118,38,4.0\n118,39,3.5\n118,40,3.0\n118,41,2.5\n118,42,2.0\n118,43,1.5\n118,44,2.0\n118,45,2.5\n118,46,3.0\n118,47,3.5\n118,48,4.0\n118,49,4.5\n118,50,10.0\n118,51,9.5\n118,52,9.0\n118,53,8.5\n118,54,8.0\n118,55,7.5\n118,56,7.0\n118,57,6.5\n118,58,6.0\n118,59,5.5\n118,60,5.0\n118,61,4.5\n118,62,4.0\n118,63,3.5\n118,64,3.0\n118,65,2.5\n118,66,2.0\n118,67,1.5\n118,68,1.0\n118,69,1.5\n118,70,2.0\n118,71,2.5\n118,72,3.0\n118,73,3.5\n118,74,4.0\n118,75,9.5\n118,76,9.0\n118,77,8.5\n118,78,8.0\n118,79,7.5\n118,80,7.0\n118,81,6.5\n118,82,6.0\n118,83,5.5\n118,84,5.0\n118,85,4.5\n118,86,4.0\n118,87,3.5\n118,88,3.0\n118,89,2.5\n118,90,2.0\n118,91,1.5\n118,92,1.0\n118,93,0.5\n118,94,1.0\n118,95,1.5\n118,96,2.0\n118,97,2.5\n118,98,3.0\n118,99,3.5\n118,100,9.0\n118,101,8.5\n118,102,8.0\n118,103,7.5\n118,104,7.0\n118,105,6.5\n118,106,6.0\n118,107,5.5\n118,108,5.0\n118,109,4.5\n118,110,4.0\n118,111,3.5\n118,112,3.0\n118,113,2.5\n118,114,2.0\n118,115,1.5\n118,116,1.0\n118,117,0.5\n118,118,0\n118,119,0.5\n118,120,1.0\n118,121,1.5\n118,122,2.0\n118,123,2.5\n118,124,3.0\n118,125,9.5\n118,126,9.0\n118,127,8.5\n118,128,8.0\n118,129,7.5\n118,130,7.0\n118,131,6.5\n118,132,6.0\n118,133,5.5\n118,134,5.0\n118,135,4.5\n118,136,4.0\n118,137,3.5\n118,138,3.0\n118,139,2.5\n118,140,2.0\n118,141,1.5\n118,142,1.0\n118,143,0.5\n118,144,1.0\n118,145,1.5\n118,146,2.0\n118,147,2.5\n118,148,3.0\n118,149,3.5\n118,150,10.0\n118,151,9.5\n118,152,9.0\n118,153,8.5\n118,154,8.0\n118,155,7.5\n118,156,7.0\n118,157,6.5\n118,158,6.0\n118,159,5.5\n118,160,5.0\n118,161,4.5\n118,162,4.0\n118,163,3.5\n118,164,3.0\n118,165,2.5\n118,166,2.0\n118,167,1.5\n118,168,1.0\n118,169,1.5\n118,170,2.0\n118,171,2.5\n118,172,3.0\n118,173,3.5\n118,174,4.0\n118,175,10.5\n118,176,10.0\n118,177,9.5\n118,178,9.0\n118,179,8.5\n118,180,8.0\n118,181,7.5\n118,182,7.0\n118,183,6.5\n118,184,6.0\n118,185,5.5\n118,186,5.0\n118,187,4.5\n118,188,4.0\n118,189,3.5\n118,190,3.0\n118,191,2.5\n118,192,2.0\n118,193,1.5\n118,194,2.0\n118,195,2.5\n118,196,3.0\n118,197,3.5\n118,198,4.0\n118,199,4.5\n118,200,11.0\n118,201,10.5\n118,202,10.0\n118,203,9.5\n118,204,9.0\n118,205,8.5\n118,206,8.0\n118,207,7.5\n118,208,7.0\n118,209,6.5\n118,210,6.0\n118,211,5.5\n118,212,5.0\n118,213,4.5\n118,214,4.0\n118,215,3.5\n118,216,3.0\n118,217,2.5\n118,218,2.0\n118,219,2.5\n118,220,3.0\n118,221,3.5\n118,222,4.0\n118,223,4.5\n118,224,5.0\n118,225,11.5\n118,226,11.0\n118,227,10.5\n118,228,10.0\n118,229,9.5\n118,230,9.0\n118,231,8.5\n118,232,8.0\n118,233,7.5\n118,234,7.0\n118,235,6.5\n118,236,6.0\n118,237,5.5\n118,238,5.0\n118,239,4.5\n118,240,4.0\n118,241,3.5\n118,242,3.0\n118,243,2.5\n118,244,3.0\n118,245,3.5\n118,246,4.0\n118,247,4.5\n118,248,5.0\n118,249,5.5\n118,250,12.0\n118,251,11.5\n118,252,11.0\n118,253,10.5\n118,254,10.0\n118,255,9.5\n118,256,9.0\n118,257,8.5\n118,258,8.0\n118,259,7.5\n118,260,7.0\n118,261,6.5\n118,262,6.0\n118,263,5.5\n118,264,5.0\n118,265,4.5\n118,266,4.0\n118,267,3.5\n118,268,3.0\n118,269,3.5\n118,270,4.0\n118,271,4.5\n118,272,5.0\n118,273,5.5\n118,274,6.0\n118,275,12.5\n118,276,12.0\n118,277,11.5\n118,278,11.0\n118,279,10.5\n118,280,10.0\n118,281,9.5\n118,282,9.0\n118,283,8.5\n118,284,8.0\n118,285,7.5\n118,286,7.0\n118,287,6.5\n118,288,6.0\n118,289,5.5\n118,290,5.0\n118,291,4.5\n118,292,4.0\n118,293,3.5\n118,294,4.0\n118,295,4.5\n118,296,5.0\n118,297,5.5\n118,298,6.0\n118,299,6.5\n118,300,13.0\n118,301,12.5\n118,302,12.0\n118,303,11.5\n118,304,11.0\n118,305,10.5\n118,306,10.0\n118,307,9.5\n118,308,9.0\n118,309,8.5\n118,310,8.0\n118,311,7.5\n118,312,7.0\n118,313,6.5\n118,314,6.0\n118,315,5.5\n118,316,5.0\n118,317,4.5\n118,318,4.0\n118,319,4.5\n118,320,5.0\n118,321,5.5\n118,322,6.0\n118,323,6.5\n118,324,7.0\n118,325,13.5\n118,326,13.0\n118,327,12.5\n118,328,12.0\n118,329,11.5\n118,330,11.0\n118,331,10.5\n118,332,10.0\n118,333,9.5\n118,334,9.0\n118,335,8.5\n118,336,8.0\n118,337,7.5\n118,338,7.0\n118,339,6.5\n118,340,6.0\n118,341,5.5\n118,342,5.0\n118,343,4.5\n118,344,5.0\n118,345,5.5\n118,346,6.0\n118,347,6.5\n118,348,7.0\n118,349,7.5\n118,350,14.0\n118,351,13.5\n118,352,13.0\n118,353,12.5\n118,354,12.0\n118,355,11.5\n118,356,11.0\n118,357,10.5\n118,358,10.0\n118,359,9.5\n118,360,9.0\n118,361,8.5\n118,362,8.0\n118,363,7.5\n118,364,7.0\n118,365,6.5\n118,366,6.0\n118,367,5.5\n118,368,5.0\n118,369,5.5\n118,370,6.0\n118,371,6.5\n118,372,7.0\n118,373,7.5\n118,374,8.0\n118,375,14.5\n118,376,14.0\n118,377,13.5\n118,378,13.0\n118,379,12.5\n118,380,12.0\n118,381,11.5\n118,382,11.0\n118,383,10.5\n118,384,10.0\n118,385,9.5\n118,386,9.0\n118,387,8.5\n118,388,8.0\n118,389,7.5\n118,390,7.0\n118,391,6.5\n118,392,6.0\n118,393,5.5\n118,394,6.0\n118,395,6.5\n118,396,7.0\n118,397,7.5\n118,398,8.0\n118,399,8.5\n118,400,15.0\n118,401,14.5\n118,402,14.0\n118,403,13.5\n118,404,13.0\n118,405,12.5\n118,406,12.0\n118,407,11.5\n118,408,11.0\n118,409,10.5\n118,410,10.0\n118,411,9.5\n118,412,9.0\n118,413,8.5\n118,414,8.0\n118,415,7.5\n118,416,7.0\n118,417,6.5\n118,418,6.0\n118,419,6.5\n118,420,7.0\n118,421,7.5\n118,422,8.0\n118,423,8.5\n118,424,9.0\n118,425,15.5\n118,426,15.0\n118,427,14.5\n118,428,14.0\n118,429,13.5\n118,430,13.0\n118,431,12.5\n118,432,12.0\n118,433,11.5\n118,434,11.0\n118,435,10.5\n118,436,10.0\n118,437,9.5\n118,438,9.0\n118,439,8.5\n118,440,8.0\n118,441,7.5\n118,442,7.0\n118,443,6.5\n118,444,7.0\n118,445,7.5\n118,446,8.0\n118,447,8.5\n118,448,9.0\n118,449,9.5\n118,450,16.0\n118,451,15.5\n118,452,15.0\n118,453,14.5\n118,454,14.0\n118,455,13.5\n118,456,13.0\n118,457,12.5\n118,458,12.0\n118,459,11.5\n118,460,11.0\n118,461,10.5\n118,462,10.0\n118,463,9.5\n118,464,9.0\n118,465,8.5\n118,466,8.0\n118,467,7.5\n118,468,7.0\n118,469,7.5\n118,470,8.0\n118,471,8.5\n118,472,9.0\n118,473,9.5\n118,474,10.0\n118,475,16.5\n118,476,16.0\n118,477,15.5\n118,478,15.0\n118,479,14.5\n118,480,14.0\n118,481,13.5\n118,482,13.0\n118,483,12.5\n118,484,12.0\n118,485,11.5\n118,486,11.0\n118,487,10.5\n118,488,10.0\n118,489,9.5\n118,490,9.0\n118,491,8.5\n118,492,8.0\n118,493,7.5\n118,494,8.0\n118,495,8.5\n118,496,9.0\n118,497,9.5\n118,498,10.0\n118,499,10.5\n118,500,17.0\n118,501,16.5\n118,502,16.0\n118,503,15.5\n118,504,15.0\n118,505,14.5\n118,506,14.0\n118,507,13.5\n118,508,13.0\n118,509,12.5\n118,510,12.0\n118,511,11.5\n118,512,11.0\n118,513,10.5\n118,514,10.0\n118,515,9.5\n118,516,9.0\n118,517,8.5\n118,518,8.0\n118,519,8.5\n118,520,9.0\n118,521,9.5\n118,522,10.0\n118,523,10.5\n118,524,11.0\n118,525,17.5\n118,526,17.0\n118,527,16.5\n118,528,16.0\n118,529,15.5\n118,530,15.0\n118,531,14.5\n118,532,14.0\n118,533,13.5\n118,534,13.0\n118,535,12.5\n118,536,12.0\n118,537,11.5\n118,538,11.0\n118,539,10.5\n118,540,10.0\n118,541,9.5\n118,542,9.0\n118,543,8.5\n118,544,9.0\n118,545,9.5\n118,546,10.0\n118,547,10.5\n118,548,11.0\n118,549,11.5\n118,550,18.0\n118,551,17.5\n118,552,17.0\n118,553,16.5\n118,554,16.0\n118,555,15.5\n118,556,15.0\n118,557,14.5\n118,558,14.0\n118,559,13.5\n118,560,13.0\n118,561,12.5\n118,562,12.0\n118,563,11.5\n118,564,11.0\n118,565,10.5\n118,566,10.0\n118,567,9.5\n118,568,9.0\n118,569,9.5\n118,570,10.0\n118,571,10.5\n118,572,11.0\n118,573,11.5\n118,574,12.0\n118,575,18.5\n118,576,18.0\n118,577,17.5\n118,578,17.0\n118,579,16.5\n118,580,16.0\n118,581,15.5\n118,582,15.0\n118,583,14.5\n118,584,14.0\n118,585,13.5\n118,586,13.0\n118,587,12.5\n118,588,12.0\n118,589,11.5\n118,590,11.0\n118,591,10.5\n118,592,10.0\n118,593,9.5\n118,594,10.0\n118,595,10.5\n118,596,11.0\n118,597,11.5\n118,598,12.0\n118,599,12.5\n118,600,19.0\n118,601,18.5\n118,602,18.0\n118,603,17.5\n118,604,17.0\n118,605,16.5\n118,606,16.0\n118,607,15.5\n118,608,15.0\n118,609,14.5\n118,610,14.0\n118,611,13.5\n118,612,13.0\n118,613,12.5\n118,614,12.0\n118,615,11.5\n118,616,11.0\n118,617,10.5\n118,618,10.0\n118,619,10.5\n118,620,11.0\n118,621,11.5\n118,622,12.0\n118,623,12.5\n118,624,13.0\n119,0,11.5\n119,1,11.0\n119,2,10.5\n119,3,10.0\n119,4,9.5\n119,5,9.0\n119,6,8.5\n119,7,8.0\n119,8,7.5\n119,9,7.0\n119,10,6.5\n119,11,6.0\n119,12,5.5\n119,13,5.0\n119,14,4.5\n119,15,4.0\n119,16,3.5\n119,17,3.0\n119,18,2.5\n119,19,2.0\n119,20,2.5\n119,21,3.0\n119,22,3.5\n119,23,4.0\n119,24,4.5\n119,25,11.0\n119,26,10.5\n119,27,10.0\n119,28,9.5\n119,29,9.0\n119,30,8.5\n119,31,8.0\n119,32,7.5\n119,33,7.0\n119,34,6.5\n119,35,6.0\n119,36,5.5\n119,37,5.0\n119,38,4.5\n119,39,4.0\n119,40,3.5\n119,41,3.0\n119,42,2.5\n119,43,2.0\n119,44,1.5\n119,45,2.0\n119,46,2.5\n119,47,3.0\n119,48,3.5\n119,49,4.0\n119,50,10.5\n119,51,10.0\n119,52,9.5\n119,53,9.0\n119,54,8.5\n119,55,8.0\n119,56,7.5\n119,57,7.0\n119,58,6.5\n119,59,6.0\n119,60,5.5\n119,61,5.0\n119,62,4.5\n119,63,4.0\n119,64,3.5\n119,65,3.0\n119,66,2.5\n119,67,2.0\n119,68,1.5\n119,69,1.0\n119,70,1.5\n119,71,2.0\n119,72,2.5\n119,73,3.0\n119,74,3.5\n119,75,10.0\n119,76,9.5\n119,77,9.0\n119,78,8.5\n119,79,8.0\n119,80,7.5\n119,81,7.0\n119,82,6.5\n119,83,6.0\n119,84,5.5\n119,85,5.0\n119,86,4.5\n119,87,4.0\n119,88,3.5\n119,89,3.0\n119,90,2.5\n119,91,2.0\n119,92,1.5\n119,93,1.0\n119,94,0.5\n119,95,1.0\n119,96,1.5\n119,97,2.0\n119,98,2.5\n119,99,3.0\n119,100,9.5\n119,101,9.0\n119,102,8.5\n119,103,8.0\n119,104,7.5\n119,105,7.0\n119,106,6.5\n119,107,6.0\n119,108,5.5\n119,109,5.0\n119,110,4.5\n119,111,4.0\n119,112,3.5\n119,113,3.0\n119,114,2.5\n119,115,2.0\n119,116,1.5\n119,117,1.0\n119,118,0.5\n119,119,0\n119,120,0.5\n119,121,1.0\n119,122,1.5\n119,123,2.0\n119,124,2.5\n119,125,10.0\n119,126,9.5\n119,127,9.0\n119,128,8.5\n119,129,8.0\n119,130,7.5\n119,131,7.0\n119,132,6.5\n119,133,6.0\n119,134,5.5\n119,135,5.0\n119,136,4.5\n119,137,4.0\n119,138,3.5\n119,139,3.0\n119,140,2.5\n119,141,2.0\n119,142,1.5\n119,143,1.0\n119,144,0.5\n119,145,1.0\n119,146,1.5\n119,147,2.0\n119,148,2.5\n119,149,3.0\n119,150,10.5\n119,151,10.0\n119,152,9.5\n119,153,9.0\n119,154,8.5\n119,155,8.0\n119,156,7.5\n119,157,7.0\n119,158,6.5\n119,159,6.0\n119,160,5.5\n119,161,5.0\n119,162,4.5\n119,163,4.0\n119,164,3.5\n119,165,3.0\n119,166,2.5\n119,167,2.0\n119,168,1.5\n119,169,1.0\n119,170,1.5\n119,171,2.0\n119,172,2.5\n119,173,3.0\n119,174,3.5\n119,175,11.0\n119,176,10.5\n119,177,10.0\n119,178,9.5\n119,179,9.0\n119,180,8.5\n119,181,8.0\n119,182,7.5\n119,183,7.0\n119,184,6.5\n119,185,6.0\n119,186,5.5\n119,187,5.0\n119,188,4.5\n119,189,4.0\n119,190,3.5\n119,191,3.0\n119,192,2.5\n119,193,2.0\n119,194,1.5\n119,195,2.0\n119,196,2.5\n119,197,3.0\n119,198,3.5\n119,199,4.0\n119,200,11.5\n119,201,11.0\n119,202,10.5\n119,203,10.0\n119,204,9.5\n119,205,9.0\n119,206,8.5\n119,207,8.0\n119,208,7.5\n119,209,7.0\n119,210,6.5\n119,211,6.0\n119,212,5.5\n119,213,5.0\n119,214,4.5\n119,215,4.0\n119,216,3.5\n119,217,3.0\n119,218,2.5\n119,219,2.0\n119,220,2.5\n119,221,3.0\n119,222,3.5\n119,223,4.0\n119,224,4.5\n119,225,12.0\n119,226,11.5\n119,227,11.0\n119,228,10.5\n119,229,10.0\n119,230,9.5\n119,231,9.0\n119,232,8.5\n119,233,8.0\n119,234,7.5\n119,235,7.0\n119,236,6.5\n119,237,6.0\n119,238,5.5\n119,239,5.0\n119,240,4.5\n119,241,4.0\n119,242,3.5\n119,243,3.0\n119,244,2.5\n119,245,3.0\n119,246,3.5\n119,247,4.0\n119,248,4.5\n119,249,5.0\n119,250,12.5\n119,251,12.0\n119,252,11.5\n119,253,11.0\n119,254,10.5\n119,255,10.0\n119,256,9.5\n119,257,9.0\n119,258,8.5\n119,259,8.0\n119,260,7.5\n119,261,7.0\n119,262,6.5\n119,263,6.0\n119,264,5.5\n119,265,5.0\n119,266,4.5\n119,267,4.0\n119,268,3.5\n119,269,3.0\n119,270,3.5\n119,271,4.0\n119,272,4.5\n119,273,5.0\n119,274,5.5\n119,275,13.0\n119,276,12.5\n119,277,12.0\n119,278,11.5\n119,279,11.0\n119,280,10.5\n119,281,10.0\n119,282,9.5\n119,283,9.0\n119,284,8.5\n119,285,8.0\n119,286,7.5\n119,287,7.0\n119,288,6.5\n119,289,6.0\n119,290,5.5\n119,291,5.0\n119,292,4.5\n119,293,4.0\n119,294,3.5\n119,295,4.0\n119,296,4.5\n119,297,5.0\n119,298,5.5\n119,299,6.0\n119,300,13.5\n119,301,13.0\n119,302,12.5\n119,303,12.0\n119,304,11.5\n119,305,11.0\n119,306,10.5\n119,307,10.0\n119,308,9.5\n119,309,9.0\n119,310,8.5\n119,311,8.0\n119,312,7.5\n119,313,7.0\n119,314,6.5\n119,315,6.0\n119,316,5.5\n119,317,5.0\n119,318,4.5\n119,319,4.0\n119,320,4.5\n119,321,5.0\n119,322,5.5\n119,323,6.0\n119,324,6.5\n119,325,14.0\n119,326,13.5\n119,327,13.0\n119,328,12.5\n119,329,12.0\n119,330,11.5\n119,331,11.0\n119,332,10.5\n119,333,10.0\n119,334,9.5\n119,335,9.0\n119,336,8.5\n119,337,8.0\n119,338,7.5\n119,339,7.0\n119,340,6.5\n119,341,6.0\n119,342,5.5\n119,343,5.0\n119,344,4.5\n119,345,5.0\n119,346,5.5\n119,347,6.0\n119,348,6.5\n119,349,7.0\n119,350,14.5\n119,351,14.0\n119,352,13.5\n119,353,13.0\n119,354,12.5\n119,355,12.0\n119,356,11.5\n119,357,11.0\n119,358,10.5\n119,359,10.0\n119,360,9.5\n119,361,9.0\n119,362,8.5\n119,363,8.0\n119,364,7.5\n119,365,7.0\n119,366,6.5\n119,367,6.0\n119,368,5.5\n119,369,5.0\n119,370,5.5\n119,371,6.0\n119,372,6.5\n119,373,7.0\n119,374,7.5\n119,375,15.0\n119,376,14.5\n119,377,14.0\n119,378,13.5\n119,379,13.0\n119,380,12.5\n119,381,12.0\n119,382,11.5\n119,383,11.0\n119,384,10.5\n119,385,10.0\n119,386,9.5\n119,387,9.0\n119,388,8.5\n119,389,8.0\n119,390,7.5\n119,391,7.0\n119,392,6.5\n119,393,6.0\n119,394,5.5\n119,395,6.0\n119,396,6.5\n119,397,7.0\n119,398,7.5\n119,399,8.0\n119,400,15.5\n119,401,15.0\n119,402,14.5\n119,403,14.0\n119,404,13.5\n119,405,13.0\n119,406,12.5\n119,407,12.0\n119,408,11.5\n119,409,11.0\n119,410,10.5\n119,411,10.0\n119,412,9.5\n119,413,9.0\n119,414,8.5\n119,415,8.0\n119,416,7.5\n119,417,7.0\n119,418,6.5\n119,419,6.0\n119,420,6.5\n119,421,7.0\n119,422,7.5\n119,423,8.0\n119,424,8.5\n119,425,16.0\n119,426,15.5\n119,427,15.0\n119,428,14.5\n119,429,14.0\n119,430,13.5\n119,431,13.0\n119,432,12.5\n119,433,12.0\n119,434,11.5\n119,435,11.0\n119,436,10.5\n119,437,10.0\n119,438,9.5\n119,439,9.0\n119,440,8.5\n119,441,8.0\n119,442,7.5\n119,443,7.0\n119,444,6.5\n119,445,7.0\n119,446,7.5\n119,447,8.0\n119,448,8.5\n119,449,9.0\n119,450,16.5\n119,451,16.0\n119,452,15.5\n119,453,15.0\n119,454,14.5\n119,455,14.0\n119,456,13.5\n119,457,13.0\n119,458,12.5\n119,459,12.0\n119,460,11.5\n119,461,11.0\n119,462,10.5\n119,463,10.0\n119,464,9.5\n119,465,9.0\n119,466,8.5\n119,467,8.0\n119,468,7.5\n119,469,7.0\n119,470,7.5\n119,471,8.0\n119,472,8.5\n119,473,9.0\n119,474,9.5\n119,475,17.0\n119,476,16.5\n119,477,16.0\n119,478,15.5\n119,479,15.0\n119,480,14.5\n119,481,14.0\n119,482,13.5\n119,483,13.0\n119,484,12.5\n119,485,12.0\n119,486,11.5\n119,487,11.0\n119,488,10.5\n119,489,10.0\n119,490,9.5\n119,491,9.0\n119,492,8.5\n119,493,8.0\n119,494,7.5\n119,495,8.0\n119,496,8.5\n119,497,9.0\n119,498,9.5\n119,499,10.0\n119,500,17.5\n119,501,17.0\n119,502,16.5\n119,503,16.0\n119,504,15.5\n119,505,15.0\n119,506,14.5\n119,507,14.0\n119,508,13.5\n119,509,13.0\n119,510,12.5\n119,511,12.0\n119,512,11.5\n119,513,11.0\n119,514,10.5\n119,515,10.0\n119,516,9.5\n119,517,9.0\n119,518,8.5\n119,519,8.0\n119,520,8.5\n119,521,9.0\n119,522,9.5\n119,523,10.0\n119,524,10.5\n119,525,18.0\n119,526,17.5\n119,527,17.0\n119,528,16.5\n119,529,16.0\n119,530,15.5\n119,531,15.0\n119,532,14.5\n119,533,14.0\n119,534,13.5\n119,535,13.0\n119,536,12.5\n119,537,12.0\n119,538,11.5\n119,539,11.0\n119,540,10.5\n119,541,10.0\n119,542,9.5\n119,543,9.0\n119,544,8.5\n119,545,9.0\n119,546,9.5\n119,547,10.0\n119,548,10.5\n119,549,11.0\n119,550,18.5\n119,551,18.0\n119,552,17.5\n119,553,17.0\n119,554,16.5\n119,555,16.0\n119,556,15.5\n119,557,15.0\n119,558,14.5\n119,559,14.0\n119,560,13.5\n119,561,13.0\n119,562,12.5\n119,563,12.0\n119,564,11.5\n119,565,11.0\n119,566,10.5\n119,567,10.0\n119,568,9.5\n119,569,9.0\n119,570,9.5\n119,571,10.0\n119,572,10.5\n119,573,11.0\n119,574,11.5\n119,575,19.0\n119,576,18.5\n119,577,18.0\n119,578,17.5\n119,579,17.0\n119,580,16.5\n119,581,16.0\n119,582,15.5\n119,583,15.0\n119,584,14.5\n119,585,14.0\n119,586,13.5\n119,587,13.0\n119,588,12.5\n119,589,12.0\n119,590,11.5\n119,591,11.0\n119,592,10.5\n119,593,10.0\n119,594,9.5\n119,595,10.0\n119,596,10.5\n119,597,11.0\n119,598,11.5\n119,599,12.0\n119,600,19.5\n119,601,19.0\n119,602,18.5\n119,603,18.0\n119,604,17.5\n119,605,17.0\n119,606,16.5\n119,607,16.0\n119,608,15.5\n119,609,15.0\n119,610,14.5\n119,611,14.0\n119,612,13.5\n119,613,13.0\n119,614,12.5\n119,615,12.0\n119,616,11.5\n119,617,11.0\n119,618,10.5\n119,619,10.0\n119,620,10.5\n119,621,11.0\n119,622,11.5\n119,623,12.0\n119,624,12.5\n120,0,12.0\n120,1,11.5\n120,2,11.0\n120,3,10.5\n120,4,10.0\n120,5,9.5\n120,6,9.0\n120,7,8.5\n120,8,8.0\n120,9,7.5\n120,10,7.0\n120,11,6.5\n120,12,6.0\n120,13,5.5\n120,14,5.0\n120,15,4.5\n120,16,4.0\n120,17,3.5\n120,18,3.0\n120,19,2.5\n120,20,2.0\n120,21,2.5\n120,22,3.0\n120,23,3.5\n120,24,4.0\n120,25,11.5\n120,26,11.0\n120,27,10.5\n120,28,10.0\n120,29,9.5\n120,30,9.0\n120,31,8.5\n120,32,8.0\n120,33,7.5\n120,34,7.0\n120,35,6.5\n120,36,6.0\n120,37,5.5\n120,38,5.0\n120,39,4.5\n120,40,4.0\n120,41,3.5\n120,42,3.0\n120,43,2.5\n120,44,2.0\n120,45,1.5\n120,46,2.0\n120,47,2.5\n120,48,3.0\n120,49,3.5\n120,50,11.0\n120,51,10.5\n120,52,10.0\n120,53,9.5\n120,54,9.0\n120,55,8.5\n120,56,8.0\n120,57,7.5\n120,58,7.0\n120,59,6.5\n120,60,6.0\n120,61,5.5\n120,62,5.0\n120,63,4.5\n120,64,4.0\n120,65,3.5\n120,66,3.0\n120,67,2.5\n120,68,2.0\n120,69,1.5\n120,70,1.0\n120,71,1.5\n120,72,2.0\n120,73,2.5\n120,74,3.0\n120,75,10.5\n120,76,10.0\n120,77,9.5\n120,78,9.0\n120,79,8.5\n120,80,8.0\n120,81,7.5\n120,82,7.0\n120,83,6.5\n120,84,6.0\n120,85,5.5\n120,86,5.0\n120,87,4.5\n120,88,4.0\n120,89,3.5\n120,90,3.0\n120,91,2.5\n120,92,2.0\n120,93,1.5\n120,94,1.0\n120,95,0.5\n120,96,1.0\n120,97,1.5\n120,98,2.0\n120,99,2.5\n120,100,10.0\n120,101,9.5\n120,102,9.0\n120,103,8.5\n120,104,8.0\n120,105,7.5\n120,106,7.0\n120,107,6.5\n120,108,6.0\n120,109,5.5\n120,110,5.0\n120,111,4.5\n120,112,4.0\n120,113,3.5\n120,114,3.0\n120,115,2.5\n120,116,2.0\n120,117,1.5\n120,118,1.0\n120,119,0.5\n120,120,0\n120,121,0.5\n120,122,1.0\n120,123,1.5\n120,124,2.0\n120,125,10.5\n120,126,10.0\n120,127,9.5\n120,128,9.0\n120,129,8.5\n120,130,8.0\n120,131,7.5\n120,132,7.0\n120,133,6.5\n120,134,6.0\n120,135,5.5\n120,136,5.0\n120,137,4.5\n120,138,4.0\n120,139,3.5\n120,140,3.0\n120,141,2.5\n120,142,2.0\n120,143,1.5\n120,144,1.0\n120,145,0.5\n120,146,1.0\n120,147,1.5\n120,148,2.0\n120,149,2.5\n120,150,11.0\n120,151,10.5\n120,152,10.0\n120,153,9.5\n120,154,9.0\n120,155,8.5\n120,156,8.0\n120,157,7.5\n120,158,7.0\n120,159,6.5\n120,160,6.0\n120,161,5.5\n120,162,5.0\n120,163,4.5\n120,164,4.0\n120,165,3.5\n120,166,3.0\n120,167,2.5\n120,168,2.0\n120,169,1.5\n120,170,1.0\n120,171,1.5\n120,172,2.0\n120,173,2.5\n120,174,3.0\n120,175,11.5\n120,176,11.0\n120,177,10.5\n120,178,10.0\n120,179,9.5\n120,180,9.0\n120,181,8.5\n120,182,8.0\n120,183,7.5\n120,184,7.0\n120,185,6.5\n120,186,6.0\n120,187,5.5\n120,188,5.0\n120,189,4.5\n120,190,4.0\n120,191,3.5\n120,192,3.0\n120,193,2.5\n120,194,2.0\n120,195,1.5\n120,196,2.0\n120,197,2.5\n120,198,3.0\n120,199,3.5\n120,200,12.0\n120,201,11.5\n120,202,11.0\n120,203,10.5\n120,204,10.0\n120,205,9.5\n120,206,9.0\n120,207,8.5\n120,208,8.0\n120,209,7.5\n120,210,7.0\n120,211,6.5\n120,212,6.0\n120,213,5.5\n120,214,5.0\n120,215,4.5\n120,216,4.0\n120,217,3.5\n120,218,3.0\n120,219,2.5\n120,220,2.0\n120,221,2.5\n120,222,3.0\n120,223,3.5\n120,224,4.0\n120,225,12.5\n120,226,12.0\n120,227,11.5\n120,228,11.0\n120,229,10.5\n120,230,10.0\n120,231,9.5\n120,232,9.0\n120,233,8.5\n120,234,8.0\n120,235,7.5\n120,236,7.0\n120,237,6.5\n120,238,6.0\n120,239,5.5\n120,240,5.0\n120,241,4.5\n120,242,4.0\n120,243,3.5\n120,244,3.0\n120,245,2.5\n120,246,3.0\n120,247,3.5\n120,248,4.0\n120,249,4.5\n120,250,13.0\n120,251,12.5\n120,252,12.0\n120,253,11.5\n120,254,11.0\n120,255,10.5\n120,256,10.0\n120,257,9.5\n120,258,9.0\n120,259,8.5\n120,260,8.0\n120,261,7.5\n120,262,7.0\n120,263,6.5\n120,264,6.0\n120,265,5.5\n120,266,5.0\n120,267,4.5\n120,268,4.0\n120,269,3.5\n120,270,3.0\n120,271,3.5\n120,272,4.0\n120,273,4.5\n120,274,5.0\n120,275,13.5\n120,276,13.0\n120,277,12.5\n120,278,12.0\n120,279,11.5\n120,280,11.0\n120,281,10.5\n120,282,10.0\n120,283,9.5\n120,284,9.0\n120,285,8.5\n120,286,8.0\n120,287,7.5\n120,288,7.0\n120,289,6.5\n120,290,6.0\n120,291,5.5\n120,292,5.0\n120,293,4.5\n120,294,4.0\n120,295,3.5\n120,296,4.0\n120,297,4.5\n120,298,5.0\n120,299,5.5\n120,300,14.0\n120,301,13.5\n120,302,13.0\n120,303,12.5\n120,304,12.0\n120,305,11.5\n120,306,11.0\n120,307,10.5\n120,308,10.0\n120,309,9.5\n120,310,9.0\n120,311,8.5\n120,312,8.0\n120,313,7.5\n120,314,7.0\n120,315,6.5\n120,316,6.0\n120,317,5.5\n120,318,5.0\n120,319,4.5\n120,320,4.0\n120,321,4.5\n120,322,5.0\n120,323,5.5\n120,324,6.0\n120,325,14.5\n120,326,14.0\n120,327,13.5\n120,328,13.0\n120,329,12.5\n120,330,12.0\n120,331,11.5\n120,332,11.0\n120,333,10.5\n120,334,10.0\n120,335,9.5\n120,336,9.0\n120,337,8.5\n120,338,8.0\n120,339,7.5\n120,340,7.0\n120,341,6.5\n120,342,6.0\n120,343,5.5\n120,344,5.0\n120,345,4.5\n120,346,5.0\n120,347,5.5\n120,348,6.0\n120,349,6.5\n120,350,15.0\n120,351,14.5\n120,352,14.0\n120,353,13.5\n120,354,13.0\n120,355,12.5\n120,356,12.0\n120,357,11.5\n120,358,11.0\n120,359,10.5\n120,360,10.0\n120,361,9.5\n120,362,9.0\n120,363,8.5\n120,364,8.0\n120,365,7.5\n120,366,7.0\n120,367,6.5\n120,368,6.0\n120,369,5.5\n120,370,5.0\n120,371,5.5\n120,372,6.0\n120,373,6.5\n120,374,7.0\n120,375,15.5\n120,376,15.0\n120,377,14.5\n120,378,14.0\n120,379,13.5\n120,380,13.0\n120,381,12.5\n120,382,12.0\n120,383,11.5\n120,384,11.0\n120,385,10.5\n120,386,10.0\n120,387,9.5\n120,388,9.0\n120,389,8.5\n120,390,8.0\n120,391,7.5\n120,392,7.0\n120,393,6.5\n120,394,6.0\n120,395,5.5\n120,396,6.0\n120,397,6.5\n120,398,7.0\n120,399,7.5\n120,400,16.0\n120,401,15.5\n120,402,15.0\n120,403,14.5\n120,404,14.0\n120,405,13.5\n120,406,13.0\n120,407,12.5\n120,408,12.0\n120,409,11.5\n120,410,11.0\n120,411,10.5\n120,412,10.0\n120,413,9.5\n120,414,9.0\n120,415,8.5\n120,416,8.0\n120,417,7.5\n120,418,7.0\n120,419,6.5\n120,420,6.0\n120,421,6.5\n120,422,7.0\n120,423,7.5\n120,424,8.0\n120,425,16.5\n120,426,16.0\n120,427,15.5\n120,428,15.0\n120,429,14.5\n120,430,14.0\n120,431,13.5\n120,432,13.0\n120,433,12.5\n120,434,12.0\n120,435,11.5\n120,436,11.0\n120,437,10.5\n120,438,10.0\n120,439,9.5\n120,440,9.0\n120,441,8.5\n120,442,8.0\n120,443,7.5\n120,444,7.0\n120,445,6.5\n120,446,7.0\n120,447,7.5\n120,448,8.0\n120,449,8.5\n120,450,17.0\n120,451,16.5\n120,452,16.0\n120,453,15.5\n120,454,15.0\n120,455,14.5\n120,456,14.0\n120,457,13.5\n120,458,13.0\n120,459,12.5\n120,460,12.0\n120,461,11.5\n120,462,11.0\n120,463,10.5\n120,464,10.0\n120,465,9.5\n120,466,9.0\n120,467,8.5\n120,468,8.0\n120,469,7.5\n120,470,7.0\n120,471,7.5\n120,472,8.0\n120,473,8.5\n120,474,9.0\n120,475,17.5\n120,476,17.0\n120,477,16.5\n120,478,16.0\n120,479,15.5\n120,480,15.0\n120,481,14.5\n120,482,14.0\n120,483,13.5\n120,484,13.0\n120,485,12.5\n120,486,12.0\n120,487,11.5\n120,488,11.0\n120,489,10.5\n120,490,10.0\n120,491,9.5\n120,492,9.0\n120,493,8.5\n120,494,8.0\n120,495,7.5\n120,496,8.0\n120,497,8.5\n120,498,9.0\n120,499,9.5\n120,500,18.0\n120,501,17.5\n120,502,17.0\n120,503,16.5\n120,504,16.0\n120,505,15.5\n120,506,15.0\n120,507,14.5\n120,508,14.0\n120,509,13.5\n120,510,13.0\n120,511,12.5\n120,512,12.0\n120,513,11.5\n120,514,11.0\n120,515,10.5\n120,516,10.0\n120,517,9.5\n120,518,9.0\n120,519,8.5\n120,520,8.0\n120,521,8.5\n120,522,9.0\n120,523,9.5\n120,524,10.0\n120,525,18.5\n120,526,18.0\n120,527,17.5\n120,528,17.0\n120,529,16.5\n120,530,16.0\n120,531,15.5\n120,532,15.0\n120,533,14.5\n120,534,14.0\n120,535,13.5\n120,536,13.0\n120,537,12.5\n120,538,12.0\n120,539,11.5\n120,540,11.0\n120,541,10.5\n120,542,10.0\n120,543,9.5\n120,544,9.0\n120,545,8.5\n120,546,9.0\n120,547,9.5\n120,548,10.0\n120,549,10.5\n120,550,19.0\n120,551,18.5\n120,552,18.0\n120,553,17.5\n120,554,17.0\n120,555,16.5\n120,556,16.0\n120,557,15.5\n120,558,15.0\n120,559,14.5\n120,560,14.0\n120,561,13.5\n120,562,13.0\n120,563,12.5\n120,564,12.0\n120,565,11.5\n120,566,11.0\n120,567,10.5\n120,568,10.0\n120,569,9.5\n120,570,9.0\n120,571,9.5\n120,572,10.0\n120,573,10.5\n120,574,11.0\n120,575,19.5\n120,576,19.0\n120,577,18.5\n120,578,18.0\n120,579,17.5\n120,580,17.0\n120,581,16.5\n120,582,16.0\n120,583,15.5\n120,584,15.0\n120,585,14.5\n120,586,14.0\n120,587,13.5\n120,588,13.0\n120,589,12.5\n120,590,12.0\n120,591,11.5\n120,592,11.0\n120,593,10.5\n120,594,10.0\n120,595,9.5\n120,596,10.0\n120,597,10.5\n120,598,11.0\n120,599,11.5\n120,600,20.0\n120,601,19.5\n120,602,19.0\n120,603,18.5\n120,604,18.0\n120,605,17.5\n120,606,17.0\n120,607,16.5\n120,608,16.0\n120,609,15.5\n120,610,15.0\n120,611,14.5\n120,612,14.0\n120,613,13.5\n120,614,13.0\n120,615,12.5\n120,616,12.0\n120,617,11.5\n120,618,11.0\n120,619,10.5\n120,620,10.0\n120,621,10.5\n120,622,11.0\n120,623,11.5\n120,624,12.0\n121,0,12.5\n121,1,12.0\n121,2,11.5\n121,3,11.0\n121,4,10.5\n121,5,10.0\n121,6,9.5\n121,7,9.0\n121,8,8.5\n121,9,8.0\n121,10,7.5\n121,11,7.0\n121,12,6.5\n121,13,6.0\n121,14,5.5\n121,15,5.0\n121,16,4.5\n121,17,4.0\n121,18,3.5\n121,19,3.0\n121,20,2.5\n121,21,2.0\n121,22,2.5\n121,23,3.0\n121,24,3.5\n121,25,12.0\n121,26,11.5\n121,27,11.0\n121,28,10.5\n121,29,10.0\n121,30,9.5\n121,31,9.0\n121,32,8.5\n121,33,8.0\n121,34,7.5\n121,35,7.0\n121,36,6.5\n121,37,6.0\n121,38,5.5\n121,39,5.0\n121,40,4.5\n121,41,4.0\n121,42,3.5\n121,43,3.0\n121,44,2.5\n121,45,2.0\n121,46,1.5\n121,47,2.0\n121,48,2.5\n121,49,3.0\n121,50,11.5\n121,51,11.0\n121,52,10.5\n121,53,10.0\n121,54,9.5\n121,55,9.0\n121,56,8.5\n121,57,8.0\n121,58,7.5\n121,59,7.0\n121,60,6.5\n121,61,6.0\n121,62,5.5\n121,63,5.0\n121,64,4.5\n121,65,4.0\n121,66,3.5\n121,67,3.0\n121,68,2.5\n121,69,2.0\n121,70,1.5\n121,71,1.0\n121,72,1.5\n121,73,2.0\n121,74,2.5\n121,75,11.0\n121,76,10.5\n121,77,10.0\n121,78,9.5\n121,79,9.0\n121,80,8.5\n121,81,8.0\n121,82,7.5\n121,83,7.0\n121,84,6.5\n121,85,6.0\n121,86,5.5\n121,87,5.0\n121,88,4.5\n121,89,4.0\n121,90,3.5\n121,91,3.0\n121,92,2.5\n121,93,2.0\n121,94,1.5\n121,95,1.0\n121,96,0.5\n121,97,1.0\n121,98,1.5\n121,99,2.0\n121,100,10.5\n121,101,10.0\n121,102,9.5\n121,103,9.0\n121,104,8.5\n121,105,8.0\n121,106,7.5\n121,107,7.0\n121,108,6.5\n121,109,6.0\n121,110,5.5\n121,111,5.0\n121,112,4.5\n121,113,4.0\n121,114,3.5\n121,115,3.0\n121,116,2.5\n121,117,2.0\n121,118,1.5\n121,119,1.0\n121,120,0.5\n121,121,0\n121,122,0.5\n121,123,1.0\n121,124,1.5\n121,125,11.0\n121,126,10.5\n121,127,10.0\n121,128,9.5\n121,129,9.0\n121,130,8.5\n121,131,8.0\n121,132,7.5\n121,133,7.0\n121,134,6.5\n121,135,6.0\n121,136,5.5\n121,137,5.0\n121,138,4.5\n121,139,4.0\n121,140,3.5\n121,141,3.0\n121,142,2.5\n121,143,2.0\n121,144,1.5\n121,145,1.0\n121,146,0.5\n121,147,1.0\n121,148,1.5\n121,149,2.0\n121,150,11.5\n121,151,11.0\n121,152,10.5\n121,153,10.0\n121,154,9.5\n121,155,9.0\n121,156,8.5\n121,157,8.0\n121,158,7.5\n121,159,7.0\n121,160,6.5\n121,161,6.0\n121,162,5.5\n121,163,5.0\n121,164,4.5\n121,165,4.0\n121,166,3.5\n121,167,3.0\n121,168,2.5\n121,169,2.0\n121,170,1.5\n121,171,1.0\n121,172,1.5\n121,173,2.0\n121,174,2.5\n121,175,12.0\n121,176,11.5\n121,177,11.0\n121,178,10.5\n121,179,10.0\n121,180,9.5\n121,181,9.0\n121,182,8.5\n121,183,8.0\n121,184,7.5\n121,185,7.0\n121,186,6.5\n121,187,6.0\n121,188,5.5\n121,189,5.0\n121,190,4.5\n121,191,4.0\n121,192,3.5\n121,193,3.0\n121,194,2.5\n121,195,2.0\n121,196,1.5\n121,197,2.0\n121,198,2.5\n121,199,3.0\n121,200,12.5\n121,201,12.0\n121,202,11.5\n121,203,11.0\n121,204,10.5\n121,205,10.0\n121,206,9.5\n121,207,9.0\n121,208,8.5\n121,209,8.0\n121,210,7.5\n121,211,7.0\n121,212,6.5\n121,213,6.0\n121,214,5.5\n121,215,5.0\n121,216,4.5\n121,217,4.0\n121,218,3.5\n121,219,3.0\n121,220,2.5\n121,221,2.0\n121,222,2.5\n121,223,3.0\n121,224,3.5\n121,225,13.0\n121,226,12.5\n121,227,12.0\n121,228,11.5\n121,229,11.0\n121,230,10.5\n121,231,10.0\n121,232,9.5\n121,233,9.0\n121,234,8.5\n121,235,8.0\n121,236,7.5\n121,237,7.0\n121,238,6.5\n121,239,6.0\n121,240,5.5\n121,241,5.0\n121,242,4.5\n121,243,4.0\n121,244,3.5\n121,245,3.0\n121,246,2.5\n121,247,3.0\n121,248,3.5\n121,249,4.0\n121,250,13.5\n121,251,13.0\n121,252,12.5\n121,253,12.0\n121,254,11.5\n121,255,11.0\n121,256,10.5\n121,257,10.0\n121,258,9.5\n121,259,9.0\n121,260,8.5\n121,261,8.0\n121,262,7.5\n121,263,7.0\n121,264,6.5\n121,265,6.0\n121,266,5.5\n121,267,5.0\n121,268,4.5\n121,269,4.0\n121,270,3.5\n121,271,3.0\n121,272,3.5\n121,273,4.0\n121,274,4.5\n121,275,14.0\n121,276,13.5\n121,277,13.0\n121,278,12.5\n121,279,12.0\n121,280,11.5\n121,281,11.0\n121,282,10.5\n121,283,10.0\n121,284,9.5\n121,285,9.0\n121,286,8.5\n121,287,8.0\n121,288,7.5\n121,289,7.0\n121,290,6.5\n121,291,6.0\n121,292,5.5\n121,293,5.0\n121,294,4.5\n121,295,4.0\n121,296,3.5\n121,297,4.0\n121,298,4.5\n121,299,5.0\n121,300,14.5\n121,301,14.0\n121,302,13.5\n121,303,13.0\n121,304,12.5\n121,305,12.0\n121,306,11.5\n121,307,11.0\n121,308,10.5\n121,309,10.0\n121,310,9.5\n121,311,9.0\n121,312,8.5\n121,313,8.0\n121,314,7.5\n121,315,7.0\n121,316,6.5\n121,317,6.0\n121,318,5.5\n121,319,5.0\n121,320,4.5\n121,321,4.0\n121,322,4.5\n121,323,5.0\n121,324,5.5\n121,325,15.0\n121,326,14.5\n121,327,14.0\n121,328,13.5\n121,329,13.0\n121,330,12.5\n121,331,12.0\n121,332,11.5\n121,333,11.0\n121,334,10.5\n121,335,10.0\n121,336,9.5\n121,337,9.0\n121,338,8.5\n121,339,8.0\n121,340,7.5\n121,341,7.0\n121,342,6.5\n121,343,6.0\n121,344,5.5\n121,345,5.0\n121,346,4.5\n121,347,5.0\n121,348,5.5\n121,349,6.0\n121,350,15.5\n121,351,15.0\n121,352,14.5\n121,353,14.0\n121,354,13.5\n121,355,13.0\n121,356,12.5\n121,357,12.0\n121,358,11.5\n121,359,11.0\n121,360,10.5\n121,361,10.0\n121,362,9.5\n121,363,9.0\n121,364,8.5\n121,365,8.0\n121,366,7.5\n121,367,7.0\n121,368,6.5\n121,369,6.0\n121,370,5.5\n121,371,5.0\n121,372,5.5\n121,373,6.0\n121,374,6.5\n121,375,16.0\n121,376,15.5\n121,377,15.0\n121,378,14.5\n121,379,14.0\n121,380,13.5\n121,381,13.0\n121,382,12.5\n121,383,12.0\n121,384,11.5\n121,385,11.0\n121,386,10.5\n121,387,10.0\n121,388,9.5\n121,389,9.0\n121,390,8.5\n121,391,8.0\n121,392,7.5\n121,393,7.0\n121,394,6.5\n121,395,6.0\n121,396,5.5\n121,397,6.0\n121,398,6.5\n121,399,7.0\n121,400,16.5\n121,401,16.0\n121,402,15.5\n121,403,15.0\n121,404,14.5\n121,405,14.0\n121,406,13.5\n121,407,13.0\n121,408,12.5\n121,409,12.0\n121,410,11.5\n121,411,11.0\n121,412,10.5\n121,413,10.0\n121,414,9.5\n121,415,9.0\n121,416,8.5\n121,417,8.0\n121,418,7.5\n121,419,7.0\n121,420,6.5\n121,421,6.0\n121,422,6.5\n121,423,7.0\n121,424,7.5\n121,425,17.0\n121,426,16.5\n121,427,16.0\n121,428,15.5\n121,429,15.0\n121,430,14.5\n121,431,14.0\n121,432,13.5\n121,433,13.0\n121,434,12.5\n121,435,12.0\n121,436,11.5\n121,437,11.0\n121,438,10.5\n121,439,10.0\n121,440,9.5\n121,441,9.0\n121,442,8.5\n121,443,8.0\n121,444,7.5\n121,445,7.0\n121,446,6.5\n121,447,7.0\n121,448,7.5\n121,449,8.0\n121,450,17.5\n121,451,17.0\n121,452,16.5\n121,453,16.0\n121,454,15.5\n121,455,15.0\n121,456,14.5\n121,457,14.0\n121,458,13.5\n121,459,13.0\n121,460,12.5\n121,461,12.0\n121,462,11.5\n121,463,11.0\n121,464,10.5\n121,465,10.0\n121,466,9.5\n121,467,9.0\n121,468,8.5\n121,469,8.0\n121,470,7.5\n121,471,7.0\n121,472,7.5\n121,473,8.0\n121,474,8.5\n121,475,18.0\n121,476,17.5\n121,477,17.0\n121,478,16.5\n121,479,16.0\n121,480,15.5\n121,481,15.0\n121,482,14.5\n121,483,14.0\n121,484,13.5\n121,485,13.0\n121,486,12.5\n121,487,12.0\n121,488,11.5\n121,489,11.0\n121,490,10.5\n121,491,10.0\n121,492,9.5\n121,493,9.0\n121,494,8.5\n121,495,8.0\n121,496,7.5\n121,497,8.0\n121,498,8.5\n121,499,9.0\n121,500,18.5\n121,501,18.0\n121,502,17.5\n121,503,17.0\n121,504,16.5\n121,505,16.0\n121,506,15.5\n121,507,15.0\n121,508,14.5\n121,509,14.0\n121,510,13.5\n121,511,13.0\n121,512,12.5\n121,513,12.0\n121,514,11.5\n121,515,11.0\n121,516,10.5\n121,517,10.0\n121,518,9.5\n121,519,9.0\n121,520,8.5\n121,521,8.0\n121,522,8.5\n121,523,9.0\n121,524,9.5\n121,525,19.0\n121,526,18.5\n121,527,18.0\n121,528,17.5\n121,529,17.0\n121,530,16.5\n121,531,16.0\n121,532,15.5\n121,533,15.0\n121,534,14.5\n121,535,14.0\n121,536,13.5\n121,537,13.0\n121,538,12.5\n121,539,12.0\n121,540,11.5\n121,541,11.0\n121,542,10.5\n121,543,10.0\n121,544,9.5\n121,545,9.0\n121,546,8.5\n121,547,9.0\n121,548,9.5\n121,549,10.0\n121,550,19.5\n121,551,19.0\n121,552,18.5\n121,553,18.0\n121,554,17.5\n121,555,17.0\n121,556,16.5\n121,557,16.0\n121,558,15.5\n121,559,15.0\n121,560,14.5\n121,561,14.0\n121,562,13.5\n121,563,13.0\n121,564,12.5\n121,565,12.0\n121,566,11.5\n121,567,11.0\n121,568,10.5\n121,569,10.0\n121,570,9.5\n121,571,9.0\n121,572,9.5\n121,573,10.0\n121,574,10.5\n121,575,20.0\n121,576,19.5\n121,577,19.0\n121,578,18.5\n121,579,18.0\n121,580,17.5\n121,581,17.0\n121,582,16.5\n121,583,16.0\n121,584,15.5\n121,585,15.0\n121,586,14.5\n121,587,14.0\n121,588,13.5\n121,589,13.0\n121,590,12.5\n121,591,12.0\n121,592,11.5\n121,593,11.0\n121,594,10.5\n121,595,10.0\n121,596,9.5\n121,597,10.0\n121,598,10.5\n121,599,11.0\n121,600,20.5\n121,601,20.0\n121,602,19.5\n121,603,19.0\n121,604,18.5\n121,605,18.0\n121,606,17.5\n121,607,17.0\n121,608,16.5\n121,609,16.0\n121,610,15.5\n121,611,15.0\n121,612,14.5\n121,613,14.0\n121,614,13.5\n121,615,13.0\n121,616,12.5\n121,617,12.0\n121,618,11.5\n121,619,11.0\n121,620,10.5\n121,621,10.0\n121,622,10.5\n121,623,11.0\n121,624,11.5\n122,0,13.0\n122,1,12.5\n122,2,12.0\n122,3,11.5\n122,4,11.0\n122,5,10.5\n122,6,10.0\n122,7,9.5\n122,8,9.0\n122,9,8.5\n122,10,8.0\n122,11,7.5\n122,12,7.0\n122,13,6.5\n122,14,6.0\n122,15,5.5\n122,16,5.0\n122,17,4.5\n122,18,4.0\n122,19,3.5\n122,20,3.0\n122,21,2.5\n122,22,2.0\n122,23,2.5\n122,24,3.0\n122,25,12.5\n122,26,12.0\n122,27,11.5\n122,28,11.0\n122,29,10.5\n122,30,10.0\n122,31,9.5\n122,32,9.0\n122,33,8.5\n122,34,8.0\n122,35,7.5\n122,36,7.0\n122,37,6.5\n122,38,6.0\n122,39,5.5\n122,40,5.0\n122,41,4.5\n122,42,4.0\n122,43,3.5\n122,44,3.0\n122,45,2.5\n122,46,2.0\n122,47,1.5\n122,48,2.0\n122,49,2.5\n122,50,12.0\n122,51,11.5\n122,52,11.0\n122,53,10.5\n122,54,10.0\n122,55,9.5\n122,56,9.0\n122,57,8.5\n122,58,8.0\n122,59,7.5\n122,60,7.0\n122,61,6.5\n122,62,6.0\n122,63,5.5\n122,64,5.0\n122,65,4.5\n122,66,4.0\n122,67,3.5\n122,68,3.0\n122,69,2.5\n122,70,2.0\n122,71,1.5\n122,72,1.0\n122,73,1.5\n122,74,2.0\n122,75,11.5\n122,76,11.0\n122,77,10.5\n122,78,10.0\n122,79,9.5\n122,80,9.0\n122,81,8.5\n122,82,8.0\n122,83,7.5\n122,84,7.0\n122,85,6.5\n122,86,6.0\n122,87,5.5\n122,88,5.0\n122,89,4.5\n122,90,4.0\n122,91,3.5\n122,92,3.0\n122,93,2.5\n122,94,2.0\n122,95,1.5\n122,96,1.0\n122,97,0.5\n122,98,1.0\n122,99,1.5\n122,100,11.0\n122,101,10.5\n122,102,10.0\n122,103,9.5\n122,104,9.0\n122,105,8.5\n122,106,8.0\n122,107,7.5\n122,108,7.0\n122,109,6.5\n122,110,6.0\n122,111,5.5\n122,112,5.0\n122,113,4.5\n122,114,4.0\n122,115,3.5\n122,116,3.0\n122,117,2.5\n122,118,2.0\n122,119,1.5\n122,120,1.0\n122,121,0.5\n122,122,0\n122,123,0.5\n122,124,1.0\n122,125,11.5\n122,126,11.0\n122,127,10.5\n122,128,10.0\n122,129,9.5\n122,130,9.0\n122,131,8.5\n122,132,8.0\n122,133,7.5\n122,134,7.0\n122,135,6.5\n122,136,6.0\n122,137,5.5\n122,138,5.0\n122,139,4.5\n122,140,4.0\n122,141,3.5\n122,142,3.0\n122,143,2.5\n122,144,2.0\n122,145,1.5\n122,146,1.0\n122,147,0.5\n122,148,1.0\n122,149,1.5\n122,150,12.0\n122,151,11.5\n122,152,11.0\n122,153,10.5\n122,154,10.0\n122,155,9.5\n122,156,9.0\n122,157,8.5\n122,158,8.0\n122,159,7.5\n122,160,7.0\n122,161,6.5\n122,162,6.0\n122,163,5.5\n122,164,5.0\n122,165,4.5\n122,166,4.0\n122,167,3.5\n122,168,3.0\n122,169,2.5\n122,170,2.0\n122,171,1.5\n122,172,1.0\n122,173,1.5\n122,174,2.0\n122,175,12.5\n122,176,12.0\n122,177,11.5\n122,178,11.0\n122,179,10.5\n122,180,10.0\n122,181,9.5\n122,182,9.0\n122,183,8.5\n122,184,8.0\n122,185,7.5\n122,186,7.0\n122,187,6.5\n122,188,6.0\n122,189,5.5\n122,190,5.0\n122,191,4.5\n122,192,4.0\n122,193,3.5\n122,194,3.0\n122,195,2.5\n122,196,2.0\n122,197,1.5\n122,198,2.0\n122,199,2.5\n122,200,13.0\n122,201,12.5\n122,202,12.0\n122,203,11.5\n122,204,11.0\n122,205,10.5\n122,206,10.0\n122,207,9.5\n122,208,9.0\n122,209,8.5\n122,210,8.0\n122,211,7.5\n122,212,7.0\n122,213,6.5\n122,214,6.0\n122,215,5.5\n122,216,5.0\n122,217,4.5\n122,218,4.0\n122,219,3.5\n122,220,3.0\n122,221,2.5\n122,222,2.0\n122,223,2.5\n122,224,3.0\n122,225,13.5\n122,226,13.0\n122,227,12.5\n122,228,12.0\n122,229,11.5\n122,230,11.0\n122,231,10.5\n122,232,10.0\n122,233,9.5\n122,234,9.0\n122,235,8.5\n122,236,8.0\n122,237,7.5\n122,238,7.0\n122,239,6.5\n122,240,6.0\n122,241,5.5\n122,242,5.0\n122,243,4.5\n122,244,4.0\n122,245,3.5\n122,246,3.0\n122,247,2.5\n122,248,3.0\n122,249,3.5\n122,250,14.0\n122,251,13.5\n122,252,13.0\n122,253,12.5\n122,254,12.0\n122,255,11.5\n122,256,11.0\n122,257,10.5\n122,258,10.0\n122,259,9.5\n122,260,9.0\n122,261,8.5\n122,262,8.0\n122,263,7.5\n122,264,7.0\n122,265,6.5\n122,266,6.0\n122,267,5.5\n122,268,5.0\n122,269,4.5\n122,270,4.0\n122,271,3.5\n122,272,3.0\n122,273,3.5\n122,274,4.0\n122,275,14.5\n122,276,14.0\n122,277,13.5\n122,278,13.0\n122,279,12.5\n122,280,12.0\n122,281,11.5\n122,282,11.0\n122,283,10.5\n122,284,10.0\n122,285,9.5\n122,286,9.0\n122,287,8.5\n122,288,8.0\n122,289,7.5\n122,290,7.0\n122,291,6.5\n122,292,6.0\n122,293,5.5\n122,294,5.0\n122,295,4.5\n122,296,4.0\n122,297,3.5\n122,298,4.0\n122,299,4.5\n122,300,15.0\n122,301,14.5\n122,302,14.0\n122,303,13.5\n122,304,13.0\n122,305,12.5\n122,306,12.0\n122,307,11.5\n122,308,11.0\n122,309,10.5\n122,310,10.0\n122,311,9.5\n122,312,9.0\n122,313,8.5\n122,314,8.0\n122,315,7.5\n122,316,7.0\n122,317,6.5\n122,318,6.0\n122,319,5.5\n122,320,5.0\n122,321,4.5\n122,322,4.0\n122,323,4.5\n122,324,5.0\n122,325,15.5\n122,326,15.0\n122,327,14.5\n122,328,14.0\n122,329,13.5\n122,330,13.0\n122,331,12.5\n122,332,12.0\n122,333,11.5\n122,334,11.0\n122,335,10.5\n122,336,10.0\n122,337,9.5\n122,338,9.0\n122,339,8.5\n122,340,8.0\n122,341,7.5\n122,342,7.0\n122,343,6.5\n122,344,6.0\n122,345,5.5\n122,346,5.0\n122,347,4.5\n122,348,5.0\n122,349,5.5\n122,350,16.0\n122,351,15.5\n122,352,15.0\n122,353,14.5\n122,354,14.0\n122,355,13.5\n122,356,13.0\n122,357,12.5\n122,358,12.0\n122,359,11.5\n122,360,11.0\n122,361,10.5\n122,362,10.0\n122,363,9.5\n122,364,9.0\n122,365,8.5\n122,366,8.0\n122,367,7.5\n122,368,7.0\n122,369,6.5\n122,370,6.0\n122,371,5.5\n122,372,5.0\n122,373,5.5\n122,374,6.0\n122,375,16.5\n122,376,16.0\n122,377,15.5\n122,378,15.0\n122,379,14.5\n122,380,14.0\n122,381,13.5\n122,382,13.0\n122,383,12.5\n122,384,12.0\n122,385,11.5\n122,386,11.0\n122,387,10.5\n122,388,10.0\n122,389,9.5\n122,390,9.0\n122,391,8.5\n122,392,8.0\n122,393,7.5\n122,394,7.0\n122,395,6.5\n122,396,6.0\n122,397,5.5\n122,398,6.0\n122,399,6.5\n122,400,17.0\n122,401,16.5\n122,402,16.0\n122,403,15.5\n122,404,15.0\n122,405,14.5\n122,406,14.0\n122,407,13.5\n122,408,13.0\n122,409,12.5\n122,410,12.0\n122,411,11.5\n122,412,11.0\n122,413,10.5\n122,414,10.0\n122,415,9.5\n122,416,9.0\n122,417,8.5\n122,418,8.0\n122,419,7.5\n122,420,7.0\n122,421,6.5\n122,422,6.0\n122,423,6.5\n122,424,7.0\n122,425,17.5\n122,426,17.0\n122,427,16.5\n122,428,16.0\n122,429,15.5\n122,430,15.0\n122,431,14.5\n122,432,14.0\n122,433,13.5\n122,434,13.0\n122,435,12.5\n122,436,12.0\n122,437,11.5\n122,438,11.0\n122,439,10.5\n122,440,10.0\n122,441,9.5\n122,442,9.0\n122,443,8.5\n122,444,8.0\n122,445,7.5\n122,446,7.0\n122,447,6.5\n122,448,7.0\n122,449,7.5\n122,450,18.0\n122,451,17.5\n122,452,17.0\n122,453,16.5\n122,454,16.0\n122,455,15.5\n122,456,15.0\n122,457,14.5\n122,458,14.0\n122,459,13.5\n122,460,13.0\n122,461,12.5\n122,462,12.0\n122,463,11.5\n122,464,11.0\n122,465,10.5\n122,466,10.0\n122,467,9.5\n122,468,9.0\n122,469,8.5\n122,470,8.0\n122,471,7.5\n122,472,7.0\n122,473,7.5\n122,474,8.0\n122,475,18.5\n122,476,18.0\n122,477,17.5\n122,478,17.0\n122,479,16.5\n122,480,16.0\n122,481,15.5\n122,482,15.0\n122,483,14.5\n122,484,14.0\n122,485,13.5\n122,486,13.0\n122,487,12.5\n122,488,12.0\n122,489,11.5\n122,490,11.0\n122,491,10.5\n122,492,10.0\n122,493,9.5\n122,494,9.0\n122,495,8.5\n122,496,8.0\n122,497,7.5\n122,498,8.0\n122,499,8.5\n122,500,19.0\n122,501,18.5\n122,502,18.0\n122,503,17.5\n122,504,17.0\n122,505,16.5\n122,506,16.0\n122,507,15.5\n122,508,15.0\n122,509,14.5\n122,510,14.0\n122,511,13.5\n122,512,13.0\n122,513,12.5\n122,514,12.0\n122,515,11.5\n122,516,11.0\n122,517,10.5\n122,518,10.0\n122,519,9.5\n122,520,9.0\n122,521,8.5\n122,522,8.0\n122,523,8.5\n122,524,9.0\n122,525,19.5\n122,526,19.0\n122,527,18.5\n122,528,18.0\n122,529,17.5\n122,530,17.0\n122,531,16.5\n122,532,16.0\n122,533,15.5\n122,534,15.0\n122,535,14.5\n122,536,14.0\n122,537,13.5\n122,538,13.0\n122,539,12.5\n122,540,12.0\n122,541,11.5\n122,542,11.0\n122,543,10.5\n122,544,10.0\n122,545,9.5\n122,546,9.0\n122,547,8.5\n122,548,9.0\n122,549,9.5\n122,550,20.0\n122,551,19.5\n122,552,19.0\n122,553,18.5\n122,554,18.0\n122,555,17.5\n122,556,17.0\n122,557,16.5\n122,558,16.0\n122,559,15.5\n122,560,15.0\n122,561,14.5\n122,562,14.0\n122,563,13.5\n122,564,13.0\n122,565,12.5\n122,566,12.0\n122,567,11.5\n122,568,11.0\n122,569,10.5\n122,570,10.0\n122,571,9.5\n122,572,9.0\n122,573,9.5\n122,574,10.0\n122,575,20.5\n122,576,20.0\n122,577,19.5\n122,578,19.0\n122,579,18.5\n122,580,18.0\n122,581,17.5\n122,582,17.0\n122,583,16.5\n122,584,16.0\n122,585,15.5\n122,586,15.0\n122,587,14.5\n122,588,14.0\n122,589,13.5\n122,590,13.0\n122,591,12.5\n122,592,12.0\n122,593,11.5\n122,594,11.0\n122,595,10.5\n122,596,10.0\n122,597,9.5\n122,598,10.0\n122,599,10.5\n122,600,21.0\n122,601,20.5\n122,602,20.0\n122,603,19.5\n122,604,19.0\n122,605,18.5\n122,606,18.0\n122,607,17.5\n122,608,17.0\n122,609,16.5\n122,610,16.0\n122,611,15.5\n122,612,15.0\n122,613,14.5\n122,614,14.0\n122,615,13.5\n122,616,13.0\n122,617,12.5\n122,618,12.0\n122,619,11.5\n122,620,11.0\n122,621,10.5\n122,622,10.0\n122,623,10.5\n122,624,11.0\n123,0,13.5\n123,1,13.0\n123,2,12.5\n123,3,12.0\n123,4,11.5\n123,5,11.0\n123,6,10.5\n123,7,10.0\n123,8,9.5\n123,9,9.0\n123,10,8.5\n123,11,8.0\n123,12,7.5\n123,13,7.0\n123,14,6.5\n123,15,6.0\n123,16,5.5\n123,17,5.0\n123,18,4.5\n123,19,4.0\n123,20,3.5\n123,21,3.0\n123,22,2.5\n123,23,2.0\n123,24,2.5\n123,25,13.0\n123,26,12.5\n123,27,12.0\n123,28,11.5\n123,29,11.0\n123,30,10.5\n123,31,10.0\n123,32,9.5\n123,33,9.0\n123,34,8.5\n123,35,8.0\n123,36,7.5\n123,37,7.0\n123,38,6.5\n123,39,6.0\n123,40,5.5\n123,41,5.0\n123,42,4.5\n123,43,4.0\n123,44,3.5\n123,45,3.0\n123,46,2.5\n123,47,2.0\n123,48,1.5\n123,49,2.0\n123,50,12.5\n123,51,12.0\n123,52,11.5\n123,53,11.0\n123,54,10.5\n123,55,10.0\n123,56,9.5\n123,57,9.0\n123,58,8.5\n123,59,8.0\n123,60,7.5\n123,61,7.0\n123,62,6.5\n123,63,6.0\n123,64,5.5\n123,65,5.0\n123,66,4.5\n123,67,4.0\n123,68,3.5\n123,69,3.0\n123,70,2.5\n123,71,2.0\n123,72,1.5\n123,73,1.0\n123,74,1.5\n123,75,12.0\n123,76,11.5\n123,77,11.0\n123,78,10.5\n123,79,10.0\n123,80,9.5\n123,81,9.0\n123,82,8.5\n123,83,8.0\n123,84,7.5\n123,85,7.0\n123,86,6.5\n123,87,6.0\n123,88,5.5\n123,89,5.0\n123,90,4.5\n123,91,4.0\n123,92,3.5\n123,93,3.0\n123,94,2.5\n123,95,2.0\n123,96,1.5\n123,97,1.0\n123,98,0.5\n123,99,1.0\n123,100,11.5\n123,101,11.0\n123,102,10.5\n123,103,10.0\n123,104,9.5\n123,105,9.0\n123,106,8.5\n123,107,8.0\n123,108,7.5\n123,109,7.0\n123,110,6.5\n123,111,6.0\n123,112,5.5\n123,113,5.0\n123,114,4.5\n123,115,4.0\n123,116,3.5\n123,117,3.0\n123,118,2.5\n123,119,2.0\n123,120,1.5\n123,121,1.0\n123,122,0.5\n123,123,0\n123,124,0.5\n123,125,12.0\n123,126,11.5\n123,127,11.0\n123,128,10.5\n123,129,10.0\n123,130,9.5\n123,131,9.0\n123,132,8.5\n123,133,8.0\n123,134,7.5\n123,135,7.0\n123,136,6.5\n123,137,6.0\n123,138,5.5\n123,139,5.0\n123,140,4.5\n123,141,4.0\n123,142,3.5\n123,143,3.0\n123,144,2.5\n123,145,2.0\n123,146,1.5\n123,147,1.0\n123,148,0.5\n123,149,1.0\n123,150,12.5\n123,151,12.0\n123,152,11.5\n123,153,11.0\n123,154,10.5\n123,155,10.0\n123,156,9.5\n123,157,9.0\n123,158,8.5\n123,159,8.0\n123,160,7.5\n123,161,7.0\n123,162,6.5\n123,163,6.0\n123,164,5.5\n123,165,5.0\n123,166,4.5\n123,167,4.0\n123,168,3.5\n123,169,3.0\n123,170,2.5\n123,171,2.0\n123,172,1.5\n123,173,1.0\n123,174,1.5\n123,175,13.0\n123,176,12.5\n123,177,12.0\n123,178,11.5\n123,179,11.0\n123,180,10.5\n123,181,10.0\n123,182,9.5\n123,183,9.0\n123,184,8.5\n123,185,8.0\n123,186,7.5\n123,187,7.0\n123,188,6.5\n123,189,6.0\n123,190,5.5\n123,191,5.0\n123,192,4.5\n123,193,4.0\n123,194,3.5\n123,195,3.0\n123,196,2.5\n123,197,2.0\n123,198,1.5\n123,199,2.0\n123,200,13.5\n123,201,13.0\n123,202,12.5\n123,203,12.0\n123,204,11.5\n123,205,11.0\n123,206,10.5\n123,207,10.0\n123,208,9.5\n123,209,9.0\n123,210,8.5\n123,211,8.0\n123,212,7.5\n123,213,7.0\n123,214,6.5\n123,215,6.0\n123,216,5.5\n123,217,5.0\n123,218,4.5\n123,219,4.0\n123,220,3.5\n123,221,3.0\n123,222,2.5\n123,223,2.0\n123,224,2.5\n123,225,14.0\n123,226,13.5\n123,227,13.0\n123,228,12.5\n123,229,12.0\n123,230,11.5\n123,231,11.0\n123,232,10.5\n123,233,10.0\n123,234,9.5\n123,235,9.0\n123,236,8.5\n123,237,8.0\n123,238,7.5\n123,239,7.0\n123,240,6.5\n123,241,6.0\n123,242,5.5\n123,243,5.0\n123,244,4.5\n123,245,4.0\n123,246,3.5\n123,247,3.0\n123,248,2.5\n123,249,3.0\n123,250,14.5\n123,251,14.0\n123,252,13.5\n123,253,13.0\n123,254,12.5\n123,255,12.0\n123,256,11.5\n123,257,11.0\n123,258,10.5\n123,259,10.0\n123,260,9.5\n123,261,9.0\n123,262,8.5\n123,263,8.0\n123,264,7.5\n123,265,7.0\n123,266,6.5\n123,267,6.0\n123,268,5.5\n123,269,5.0\n123,270,4.5\n123,271,4.0\n123,272,3.5\n123,273,3.0\n123,274,3.5\n123,275,15.0\n123,276,14.5\n123,277,14.0\n123,278,13.5\n123,279,13.0\n123,280,12.5\n123,281,12.0\n123,282,11.5\n123,283,11.0\n123,284,10.5\n123,285,10.0\n123,286,9.5\n123,287,9.0\n123,288,8.5\n123,289,8.0\n123,290,7.5\n123,291,7.0\n123,292,6.5\n123,293,6.0\n123,294,5.5\n123,295,5.0\n123,296,4.5\n123,297,4.0\n123,298,3.5\n123,299,4.0\n123,300,15.5\n123,301,15.0\n123,302,14.5\n123,303,14.0\n123,304,13.5\n123,305,13.0\n123,306,12.5\n123,307,12.0\n123,308,11.5\n123,309,11.0\n123,310,10.5\n123,311,10.0\n123,312,9.5\n123,313,9.0\n123,314,8.5\n123,315,8.0\n123,316,7.5\n123,317,7.0\n123,318,6.5\n123,319,6.0\n123,320,5.5\n123,321,5.0\n123,322,4.5\n123,323,4.0\n123,324,4.5\n123,325,16.0\n123,326,15.5\n123,327,15.0\n123,328,14.5\n123,329,14.0\n123,330,13.5\n123,331,13.0\n123,332,12.5\n123,333,12.0\n123,334,11.5\n123,335,11.0\n123,336,10.5\n123,337,10.0\n123,338,9.5\n123,339,9.0\n123,340,8.5\n123,341,8.0\n123,342,7.5\n123,343,7.0\n123,344,6.5\n123,345,6.0\n123,346,5.5\n123,347,5.0\n123,348,4.5\n123,349,5.0\n123,350,16.5\n123,351,16.0\n123,352,15.5\n123,353,15.0\n123,354,14.5\n123,355,14.0\n123,356,13.5\n123,357,13.0\n123,358,12.5\n123,359,12.0\n123,360,11.5\n123,361,11.0\n123,362,10.5\n123,363,10.0\n123,364,9.5\n123,365,9.0\n123,366,8.5\n123,367,8.0\n123,368,7.5\n123,369,7.0\n123,370,6.5\n123,371,6.0\n123,372,5.5\n123,373,5.0\n123,374,5.5\n123,375,17.0\n123,376,16.5\n123,377,16.0\n123,378,15.5\n123,379,15.0\n123,380,14.5\n123,381,14.0\n123,382,13.5\n123,383,13.0\n123,384,12.5\n123,385,12.0\n123,386,11.5\n123,387,11.0\n123,388,10.5\n123,389,10.0\n123,390,9.5\n123,391,9.0\n123,392,8.5\n123,393,8.0\n123,394,7.5\n123,395,7.0\n123,396,6.5\n123,397,6.0\n123,398,5.5\n123,399,6.0\n123,400,17.5\n123,401,17.0\n123,402,16.5\n123,403,16.0\n123,404,15.5\n123,405,15.0\n123,406,14.5\n123,407,14.0\n123,408,13.5\n123,409,13.0\n123,410,12.5\n123,411,12.0\n123,412,11.5\n123,413,11.0\n123,414,10.5\n123,415,10.0\n123,416,9.5\n123,417,9.0\n123,418,8.5\n123,419,8.0\n123,420,7.5\n123,421,7.0\n123,422,6.5\n123,423,6.0\n123,424,6.5\n123,425,18.0\n123,426,17.5\n123,427,17.0\n123,428,16.5\n123,429,16.0\n123,430,15.5\n123,431,15.0\n123,432,14.5\n123,433,14.0\n123,434,13.5\n123,435,13.0\n123,436,12.5\n123,437,12.0\n123,438,11.5\n123,439,11.0\n123,440,10.5\n123,441,10.0\n123,442,9.5\n123,443,9.0\n123,444,8.5\n123,445,8.0\n123,446,7.5\n123,447,7.0\n123,448,6.5\n123,449,7.0\n123,450,18.5\n123,451,18.0\n123,452,17.5\n123,453,17.0\n123,454,16.5\n123,455,16.0\n123,456,15.5\n123,457,15.0\n123,458,14.5\n123,459,14.0\n123,460,13.5\n123,461,13.0\n123,462,12.5\n123,463,12.0\n123,464,11.5\n123,465,11.0\n123,466,10.5\n123,467,10.0\n123,468,9.5\n123,469,9.0\n123,470,8.5\n123,471,8.0\n123,472,7.5\n123,473,7.0\n123,474,7.5\n123,475,19.0\n123,476,18.5\n123,477,18.0\n123,478,17.5\n123,479,17.0\n123,480,16.5\n123,481,16.0\n123,482,15.5\n123,483,15.0\n123,484,14.5\n123,485,14.0\n123,486,13.5\n123,487,13.0\n123,488,12.5\n123,489,12.0\n123,490,11.5\n123,491,11.0\n123,492,10.5\n123,493,10.0\n123,494,9.5\n123,495,9.0\n123,496,8.5\n123,497,8.0\n123,498,7.5\n123,499,8.0\n123,500,19.5\n123,501,19.0\n123,502,18.5\n123,503,18.0\n123,504,17.5\n123,505,17.0\n123,506,16.5\n123,507,16.0\n123,508,15.5\n123,509,15.0\n123,510,14.5\n123,511,14.0\n123,512,13.5\n123,513,13.0\n123,514,12.5\n123,515,12.0\n123,516,11.5\n123,517,11.0\n123,518,10.5\n123,519,10.0\n123,520,9.5\n123,521,9.0\n123,522,8.5\n123,523,8.0\n123,524,8.5\n123,525,20.0\n123,526,19.5\n123,527,19.0\n123,528,18.5\n123,529,18.0\n123,530,17.5\n123,531,17.0\n123,532,16.5\n123,533,16.0\n123,534,15.5\n123,535,15.0\n123,536,14.5\n123,537,14.0\n123,538,13.5\n123,539,13.0\n123,540,12.5\n123,541,12.0\n123,542,11.5\n123,543,11.0\n123,544,10.5\n123,545,10.0\n123,546,9.5\n123,547,9.0\n123,548,8.5\n123,549,9.0\n123,550,20.5\n123,551,20.0\n123,552,19.5\n123,553,19.0\n123,554,18.5\n123,555,18.0\n123,556,17.5\n123,557,17.0\n123,558,16.5\n123,559,16.0\n123,560,15.5\n123,561,15.0\n123,562,14.5\n123,563,14.0\n123,564,13.5\n123,565,13.0\n123,566,12.5\n123,567,12.0\n123,568,11.5\n123,569,11.0\n123,570,10.5\n123,571,10.0\n123,572,9.5\n123,573,9.0\n123,574,9.5\n123,575,21.0\n123,576,20.5\n123,577,20.0\n123,578,19.5\n123,579,19.0\n123,580,18.5\n123,581,18.0\n123,582,17.5\n123,583,17.0\n123,584,16.5\n123,585,16.0\n123,586,15.5\n123,587,15.0\n123,588,14.5\n123,589,14.0\n123,590,13.5\n123,591,13.0\n123,592,12.5\n123,593,12.0\n123,594,11.5\n123,595,11.0\n123,596,10.5\n123,597,10.0\n123,598,9.5\n123,599,10.0\n123,600,21.5\n123,601,21.0\n123,602,20.5\n123,603,20.0\n123,604,19.5\n123,605,19.0\n123,606,18.5\n123,607,18.0\n123,608,17.5\n123,609,17.0\n123,610,16.5\n123,611,16.0\n123,612,15.5\n123,613,15.0\n123,614,14.5\n123,615,14.0\n123,616,13.5\n123,617,13.0\n123,618,12.5\n123,619,12.0\n123,620,11.5\n123,621,11.0\n123,622,10.5\n123,623,10.0\n123,624,10.5\n124,0,14.0\n124,1,13.5\n124,2,13.0\n124,3,12.5\n124,4,12.0\n124,5,11.5\n124,6,11.0\n124,7,10.5\n124,8,10.0\n124,9,9.5\n124,10,9.0\n124,11,8.5\n124,12,8.0\n124,13,7.5\n124,14,7.0\n124,15,6.5\n124,16,6.0\n124,17,5.5\n124,18,5.0\n124,19,4.5\n124,20,4.0\n124,21,3.5\n124,22,3.0\n124,23,2.5\n124,24,2.0\n124,25,13.5\n124,26,13.0\n124,27,12.5\n124,28,12.0\n124,29,11.5\n124,30,11.0\n124,31,10.5\n124,32,10.0\n124,33,9.5\n124,34,9.0\n124,35,8.5\n124,36,8.0\n124,37,7.5\n124,38,7.0\n124,39,6.5\n124,40,6.0\n124,41,5.5\n124,42,5.0\n124,43,4.5\n124,44,4.0\n124,45,3.5\n124,46,3.0\n124,47,2.5\n124,48,2.0\n124,49,1.5\n124,50,13.0\n124,51,12.5\n124,52,12.0\n124,53,11.5\n124,54,11.0\n124,55,10.5\n124,56,10.0\n124,57,9.5\n124,58,9.0\n124,59,8.5\n124,60,8.0\n124,61,7.5\n124,62,7.0\n124,63,6.5\n124,64,6.0\n124,65,5.5\n124,66,5.0\n124,67,4.5\n124,68,4.0\n124,69,3.5\n124,70,3.0\n124,71,2.5\n124,72,2.0\n124,73,1.5\n124,74,1.0\n124,75,12.5\n124,76,12.0\n124,77,11.5\n124,78,11.0\n124,79,10.5\n124,80,10.0\n124,81,9.5\n124,82,9.0\n124,83,8.5\n124,84,8.0\n124,85,7.5\n124,86,7.0\n124,87,6.5\n124,88,6.0\n124,89,5.5\n124,90,5.0\n124,91,4.5\n124,92,4.0\n124,93,3.5\n124,94,3.0\n124,95,2.5\n124,96,2.0\n124,97,1.5\n124,98,1.0\n124,99,0.5\n124,100,12.0\n124,101,11.5\n124,102,11.0\n124,103,10.5\n124,104,10.0\n124,105,9.5\n124,106,9.0\n124,107,8.5\n124,108,8.0\n124,109,7.5\n124,110,7.0\n124,111,6.5\n124,112,6.0\n124,113,5.5\n124,114,5.0\n124,115,4.5\n124,116,4.0\n124,117,3.5\n124,118,3.0\n124,119,2.5\n124,120,2.0\n124,121,1.5\n124,122,1.0\n124,123,0.5\n124,124,0\n124,125,12.5\n124,126,12.0\n124,127,11.5\n124,128,11.0\n124,129,10.5\n124,130,10.0\n124,131,9.5\n124,132,9.0\n124,133,8.5\n124,134,8.0\n124,135,7.5\n124,136,7.0\n124,137,6.5\n124,138,6.0\n124,139,5.5\n124,140,5.0\n124,141,4.5\n124,142,4.0\n124,143,3.5\n124,144,3.0\n124,145,2.5\n124,146,2.0\n124,147,1.5\n124,148,1.0\n124,149,0.5\n124,150,13.0\n124,151,12.5\n124,152,12.0\n124,153,11.5\n124,154,11.0\n124,155,10.5\n124,156,10.0\n124,157,9.5\n124,158,9.0\n124,159,8.5\n124,160,8.0\n124,161,7.5\n124,162,7.0\n124,163,6.5\n124,164,6.0\n124,165,5.5\n124,166,5.0\n124,167,4.5\n124,168,4.0\n124,169,3.5\n124,170,3.0\n124,171,2.5\n124,172,2.0\n124,173,1.5\n124,174,1.0\n124,175,13.5\n124,176,13.0\n124,177,12.5\n124,178,12.0\n124,179,11.5\n124,180,11.0\n124,181,10.5\n124,182,10.0\n124,183,9.5\n124,184,9.0\n124,185,8.5\n124,186,8.0\n124,187,7.5\n124,188,7.0\n124,189,6.5\n124,190,6.0\n124,191,5.5\n124,192,5.0\n124,193,4.5\n124,194,4.0\n124,195,3.5\n124,196,3.0\n124,197,2.5\n124,198,2.0\n124,199,1.5\n124,200,14.0\n124,201,13.5\n124,202,13.0\n124,203,12.5\n124,204,12.0\n124,205,11.5\n124,206,11.0\n124,207,10.5\n124,208,10.0\n124,209,9.5\n124,210,9.0\n124,211,8.5\n124,212,8.0\n124,213,7.5\n124,214,7.0\n124,215,6.5\n124,216,6.0\n124,217,5.5\n124,218,5.0\n124,219,4.5\n124,220,4.0\n124,221,3.5\n124,222,3.0\n124,223,2.5\n124,224,2.0\n124,225,14.5\n124,226,14.0\n124,227,13.5\n124,228,13.0\n124,229,12.5\n124,230,12.0\n124,231,11.5\n124,232,11.0\n124,233,10.5\n124,234,10.0\n124,235,9.5\n124,236,9.0\n124,237,8.5\n124,238,8.0\n124,239,7.5\n124,240,7.0\n124,241,6.5\n124,242,6.0\n124,243,5.5\n124,244,5.0\n124,245,4.5\n124,246,4.0\n124,247,3.5\n124,248,3.0\n124,249,2.5\n124,250,15.0\n124,251,14.5\n124,252,14.0\n124,253,13.5\n124,254,13.0\n124,255,12.5\n124,256,12.0\n124,257,11.5\n124,258,11.0\n124,259,10.5\n124,260,10.0\n124,261,9.5\n124,262,9.0\n124,263,8.5\n124,264,8.0\n124,265,7.5\n124,266,7.0\n124,267,6.5\n124,268,6.0\n124,269,5.5\n124,270,5.0\n124,271,4.5\n124,272,4.0\n124,273,3.5\n124,274,3.0\n124,275,15.5\n124,276,15.0\n124,277,14.5\n124,278,14.0\n124,279,13.5\n124,280,13.0\n124,281,12.5\n124,282,12.0\n124,283,11.5\n124,284,11.0\n124,285,10.5\n124,286,10.0\n124,287,9.5\n124,288,9.0\n124,289,8.5\n124,290,8.0\n124,291,7.5\n124,292,7.0\n124,293,6.5\n124,294,6.0\n124,295,5.5\n124,296,5.0\n124,297,4.5\n124,298,4.0\n124,299,3.5\n124,300,16.0\n124,301,15.5\n124,302,15.0\n124,303,14.5\n124,304,14.0\n124,305,13.5\n124,306,13.0\n124,307,12.5\n124,308,12.0\n124,309,11.5\n124,310,11.0\n124,311,10.5\n124,312,10.0\n124,313,9.5\n124,314,9.0\n124,315,8.5\n124,316,8.0\n124,317,7.5\n124,318,7.0\n124,319,6.5\n124,320,6.0\n124,321,5.5\n124,322,5.0\n124,323,4.5\n124,324,4.0\n124,325,16.5\n124,326,16.0\n124,327,15.5\n124,328,15.0\n124,329,14.5\n124,330,14.0\n124,331,13.5\n124,332,13.0\n124,333,12.5\n124,334,12.0\n124,335,11.5\n124,336,11.0\n124,337,10.5\n124,338,10.0\n124,339,9.5\n124,340,9.0\n124,341,8.5\n124,342,8.0\n124,343,7.5\n124,344,7.0\n124,345,6.5\n124,346,6.0\n124,347,5.5\n124,348,5.0\n124,349,4.5\n124,350,17.0\n124,351,16.5\n124,352,16.0\n124,353,15.5\n124,354,15.0\n124,355,14.5\n124,356,14.0\n124,357,13.5\n124,358,13.0\n124,359,12.5\n124,360,12.0\n124,361,11.5\n124,362,11.0\n124,363,10.5\n124,364,10.0\n124,365,9.5\n124,366,9.0\n124,367,8.5\n124,368,8.0\n124,369,7.5\n124,370,7.0\n124,371,6.5\n124,372,6.0\n124,373,5.5\n124,374,5.0\n124,375,17.5\n124,376,17.0\n124,377,16.5\n124,378,16.0\n124,379,15.5\n124,380,15.0\n124,381,14.5\n124,382,14.0\n124,383,13.5\n124,384,13.0\n124,385,12.5\n124,386,12.0\n124,387,11.5\n124,388,11.0\n124,389,10.5\n124,390,10.0\n124,391,9.5\n124,392,9.0\n124,393,8.5\n124,394,8.0\n124,395,7.5\n124,396,7.0\n124,397,6.5\n124,398,6.0\n124,399,5.5\n124,400,18.0\n124,401,17.5\n124,402,17.0\n124,403,16.5\n124,404,16.0\n124,405,15.5\n124,406,15.0\n124,407,14.5\n124,408,14.0\n124,409,13.5\n124,410,13.0\n124,411,12.5\n124,412,12.0\n124,413,11.5\n124,414,11.0\n124,415,10.5\n124,416,10.0\n124,417,9.5\n124,418,9.0\n124,419,8.5\n124,420,8.0\n124,421,7.5\n124,422,7.0\n124,423,6.5\n124,424,6.0\n124,425,18.5\n124,426,18.0\n124,427,17.5\n124,428,17.0\n124,429,16.5\n124,430,16.0\n124,431,15.5\n124,432,15.0\n124,433,14.5\n124,434,14.0\n124,435,13.5\n124,436,13.0\n124,437,12.5\n124,438,12.0\n124,439,11.5\n124,440,11.0\n124,441,10.5\n124,442,10.0\n124,443,9.5\n124,444,9.0\n124,445,8.5\n124,446,8.0\n124,447,7.5\n124,448,7.0\n124,449,6.5\n124,450,19.0\n124,451,18.5\n124,452,18.0\n124,453,17.5\n124,454,17.0\n124,455,16.5\n124,456,16.0\n124,457,15.5\n124,458,15.0\n124,459,14.5\n124,460,14.0\n124,461,13.5\n124,462,13.0\n124,463,12.5\n124,464,12.0\n124,465,11.5\n124,466,11.0\n124,467,10.5\n124,468,10.0\n124,469,9.5\n124,470,9.0\n124,471,8.5\n124,472,8.0\n124,473,7.5\n124,474,7.0\n124,475,19.5\n124,476,19.0\n124,477,18.5\n124,478,18.0\n124,479,17.5\n124,480,17.0\n124,481,16.5\n124,482,16.0\n124,483,15.5\n124,484,15.0\n124,485,14.5\n124,486,14.0\n124,487,13.5\n124,488,13.0\n124,489,12.5\n124,490,12.0\n124,491,11.5\n124,492,11.0\n124,493,10.5\n124,494,10.0\n124,495,9.5\n124,496,9.0\n124,497,8.5\n124,498,8.0\n124,499,7.5\n124,500,20.0\n124,501,19.5\n124,502,19.0\n124,503,18.5\n124,504,18.0\n124,505,17.5\n124,506,17.0\n124,507,16.5\n124,508,16.0\n124,509,15.5\n124,510,15.0\n124,511,14.5\n124,512,14.0\n124,513,13.5\n124,514,13.0\n124,515,12.5\n124,516,12.0\n124,517,11.5\n124,518,11.0\n124,519,10.5\n124,520,10.0\n124,521,9.5\n124,522,9.0\n124,523,8.5\n124,524,8.0\n124,525,20.5\n124,526,20.0\n124,527,19.5\n124,528,19.0\n124,529,18.5\n124,530,18.0\n124,531,17.5\n124,532,17.0\n124,533,16.5\n124,534,16.0\n124,535,15.5\n124,536,15.0\n124,537,14.5\n124,538,14.0\n124,539,13.5\n124,540,13.0\n124,541,12.5\n124,542,12.0\n124,543,11.5\n124,544,11.0\n124,545,10.5\n124,546,10.0\n124,547,9.5\n124,548,9.0\n124,549,8.5\n124,550,21.0\n124,551,20.5\n124,552,20.0\n124,553,19.5\n124,554,19.0\n124,555,18.5\n124,556,18.0\n124,557,17.5\n124,558,17.0\n124,559,16.5\n124,560,16.0\n124,561,15.5\n124,562,15.0\n124,563,14.5\n124,564,14.0\n124,565,13.5\n124,566,13.0\n124,567,12.5\n124,568,12.0\n124,569,11.5\n124,570,11.0\n124,571,10.5\n124,572,10.0\n124,573,9.5\n124,574,9.0\n124,575,21.5\n124,576,21.0\n124,577,20.5\n124,578,20.0\n124,579,19.5\n124,580,19.0\n124,581,18.5\n124,582,18.0\n124,583,17.5\n124,584,17.0\n124,585,16.5\n124,586,16.0\n124,587,15.5\n124,588,15.0\n124,589,14.5\n124,590,14.0\n124,591,13.5\n124,592,13.0\n124,593,12.5\n124,594,12.0\n124,595,11.5\n124,596,11.0\n124,597,10.5\n124,598,10.0\n124,599,9.5\n124,600,22.0\n124,601,21.5\n124,602,21.0\n124,603,20.5\n124,604,20.0\n124,605,19.5\n124,606,19.0\n124,607,18.5\n124,608,18.0\n124,609,17.5\n124,610,17.0\n124,611,16.5\n124,612,16.0\n124,613,15.5\n124,614,15.0\n124,615,14.5\n124,616,14.0\n124,617,13.5\n124,618,13.0\n124,619,12.5\n124,620,12.0\n124,621,11.5\n124,622,11.0\n124,623,10.5\n124,624,10.0\n125,0,2.5\n125,1,3.0\n125,2,3.5\n125,3,4.0\n125,4,4.5\n125,5,5.0\n125,6,5.5\n125,7,6.0\n125,8,6.5\n125,9,7.0\n125,10,7.5\n125,11,8.0\n125,12,8.5\n125,13,9.0\n125,14,9.5\n125,15,10.0\n125,16,10.5\n125,17,11.0\n125,18,11.5\n125,19,12.0\n125,20,12.5\n125,21,13.0\n125,22,13.5\n125,23,14.0\n125,24,14.5\n125,25,2.0\n125,26,2.5\n125,27,3.0\n125,28,3.5\n125,29,4.0\n125,30,4.5\n125,31,5.0\n125,32,5.5\n125,33,6.0\n125,34,6.5\n125,35,7.0\n125,36,7.5\n125,37,8.0\n125,38,8.5\n125,39,9.0\n125,40,9.5\n125,41,10.0\n125,42,10.5\n125,43,11.0\n125,44,11.5\n125,45,12.0\n125,46,12.5\n125,47,13.0\n125,48,13.5\n125,49,14.0\n125,50,1.5\n125,51,2.0\n125,52,2.5\n125,53,3.0\n125,54,3.5\n125,55,4.0\n125,56,4.5\n125,57,5.0\n125,58,5.5\n125,59,6.0\n125,60,6.5\n125,61,7.0\n125,62,7.5\n125,63,8.0\n125,64,8.5\n125,65,9.0\n125,66,9.5\n125,67,10.0\n125,68,10.5\n125,69,11.0\n125,70,11.5\n125,71,12.0\n125,72,12.5\n125,73,13.0\n125,74,13.5\n125,75,1.0\n125,76,1.5\n125,77,2.0\n125,78,2.5\n125,79,3.0\n125,80,3.5\n125,81,4.0\n125,82,4.5\n125,83,5.0\n125,84,5.5\n125,85,6.0\n125,86,6.5\n125,87,7.0\n125,88,7.5\n125,89,8.0\n125,90,8.5\n125,91,9.0\n125,92,9.5\n125,93,10.0\n125,94,10.5\n125,95,11.0\n125,96,11.5\n125,97,12.0\n125,98,12.5\n125,99,13.0\n125,100,0.5\n125,101,1.0\n125,102,1.5\n125,103,2.0\n125,104,2.5\n125,105,3.0\n125,106,3.5\n125,107,4.0\n125,108,4.5\n125,109,5.0\n125,110,5.5\n125,111,6.0\n125,112,6.5\n125,113,7.0\n125,114,7.5\n125,115,8.0\n125,116,8.5\n125,117,9.0\n125,118,9.5\n125,119,10.0\n125,120,10.5\n125,121,11.0\n125,122,11.5\n125,123,12.0\n125,124,12.5\n125,125,0\n125,126,0.5\n125,127,1.0\n125,128,1.5\n125,129,2.0\n125,130,2.5\n125,131,3.0\n125,132,3.5\n125,133,4.0\n125,134,4.5\n125,135,5.0\n125,136,5.5\n125,137,6.0\n125,138,6.5\n125,139,7.0\n125,140,7.5\n125,141,8.0\n125,142,8.5\n125,143,9.0\n125,144,9.5\n125,145,10.0\n125,146,10.5\n125,147,11.0\n125,148,11.5\n125,149,12.0\n125,150,0.5\n125,151,1.0\n125,152,1.5\n125,153,2.0\n125,154,2.5\n125,155,3.0\n125,156,3.5\n125,157,4.0\n125,158,4.5\n125,159,5.0\n125,160,5.5\n125,161,6.0\n125,162,6.5\n125,163,7.0\n125,164,7.5\n125,165,8.0\n125,166,8.5\n125,167,9.0\n125,168,9.5\n125,169,10.0\n125,170,10.5\n125,171,11.0\n125,172,11.5\n125,173,12.0\n125,174,12.5\n125,175,1.0\n125,176,1.5\n125,177,2.0\n125,178,2.5\n125,179,3.0\n125,180,3.5\n125,181,4.0\n125,182,4.5\n125,183,5.0\n125,184,5.5\n125,185,6.0\n125,186,6.5\n125,187,7.0\n125,188,7.5\n125,189,8.0\n125,190,8.5\n125,191,9.0\n125,192,9.5\n125,193,10.0\n125,194,10.5\n125,195,11.0\n125,196,11.5\n125,197,12.0\n125,198,12.5\n125,199,13.0\n125,200,1.5\n125,201,2.0\n125,202,2.5\n125,203,3.0\n125,204,3.5\n125,205,4.0\n125,206,4.5\n125,207,5.0\n125,208,5.5\n125,209,6.0\n125,210,6.5\n125,211,7.0\n125,212,7.5\n125,213,8.0\n125,214,8.5\n125,215,9.0\n125,216,9.5\n125,217,10.0\n125,218,10.5\n125,219,11.0\n125,220,11.5\n125,221,12.0\n125,222,12.5\n125,223,13.0\n125,224,13.5\n125,225,2.0\n125,226,2.5\n125,227,3.0\n125,228,3.5\n125,229,4.0\n125,230,4.5\n125,231,5.0\n125,232,5.5\n125,233,6.0\n125,234,6.5\n125,235,7.0\n125,236,7.5\n125,237,8.0\n125,238,8.5\n125,239,9.0\n125,240,9.5\n125,241,10.0\n125,242,10.5\n125,243,11.0\n125,244,11.5\n125,245,12.0\n125,246,12.5\n125,247,13.0\n125,248,13.5\n125,249,14.0\n125,250,2.5\n125,251,3.0\n125,252,3.5\n125,253,4.0\n125,254,4.5\n125,255,5.0\n125,256,5.5\n125,257,6.0\n125,258,6.5\n125,259,7.0\n125,260,7.5\n125,261,8.0\n125,262,8.5\n125,263,9.0\n125,264,9.5\n125,265,10.0\n125,266,10.5\n125,267,11.0\n125,268,11.5\n125,269,12.0\n125,270,12.5\n125,271,13.0\n125,272,13.5\n125,273,14.0\n125,274,14.5\n125,275,3.0\n125,276,3.5\n125,277,4.0\n125,278,4.5\n125,279,5.0\n125,280,5.5\n125,281,6.0\n125,282,6.5\n125,283,7.0\n125,284,7.5\n125,285,8.0\n125,286,8.5\n125,287,9.0\n125,288,9.5\n125,289,10.0\n125,290,10.5\n125,291,11.0\n125,292,11.5\n125,293,12.0\n125,294,12.5\n125,295,13.0\n125,296,13.5\n125,297,14.0\n125,298,14.5\n125,299,15.0\n125,300,3.5\n125,301,4.0\n125,302,4.5\n125,303,5.0\n125,304,5.5\n125,305,6.0\n125,306,6.5\n125,307,7.0\n125,308,7.5\n125,309,8.0\n125,310,8.5\n125,311,9.0\n125,312,9.5\n125,313,10.0\n125,314,10.5\n125,315,11.0\n125,316,11.5\n125,317,12.0\n125,318,12.5\n125,319,13.0\n125,320,13.5\n125,321,14.0\n125,322,14.5\n125,323,15.0\n125,324,15.5\n125,325,4.0\n125,326,4.5\n125,327,5.0\n125,328,5.5\n125,329,6.0\n125,330,6.5\n125,331,7.0\n125,332,7.5\n125,333,8.0\n125,334,8.5\n125,335,9.0\n125,336,9.5\n125,337,10.0\n125,338,10.5\n125,339,11.0\n125,340,11.5\n125,341,12.0\n125,342,12.5\n125,343,13.0\n125,344,13.5\n125,345,14.0\n125,346,14.5\n125,347,15.0\n125,348,15.5\n125,349,16.0\n125,350,4.5\n125,351,5.0\n125,352,5.5\n125,353,6.0\n125,354,6.5\n125,355,7.0\n125,356,7.5\n125,357,8.0\n125,358,8.5\n125,359,9.0\n125,360,9.5\n125,361,10.0\n125,362,10.5\n125,363,11.0\n125,364,11.5\n125,365,12.0\n125,366,12.5\n125,367,13.0\n125,368,13.5\n125,369,14.0\n125,370,14.5\n125,371,15.0\n125,372,15.5\n125,373,16.0\n125,374,16.5\n125,375,5.0\n125,376,5.5\n125,377,6.0\n125,378,6.5\n125,379,7.0\n125,380,7.5\n125,381,8.0\n125,382,8.5\n125,383,9.0\n125,384,9.5\n125,385,10.0\n125,386,10.5\n125,387,11.0\n125,388,11.5\n125,389,12.0\n125,390,12.5\n125,391,13.0\n125,392,13.5\n125,393,14.0\n125,394,14.5\n125,395,15.0\n125,396,15.5\n125,397,16.0\n125,398,16.5\n125,399,17.0\n125,400,5.5\n125,401,6.0\n125,402,6.5\n125,403,7.0\n125,404,7.5\n125,405,8.0\n125,406,8.5\n125,407,9.0\n125,408,9.5\n125,409,10.0\n125,410,10.5\n125,411,11.0\n125,412,11.5\n125,413,12.0\n125,414,12.5\n125,415,13.0\n125,416,13.5\n125,417,14.0\n125,418,14.5\n125,419,15.0\n125,420,15.5\n125,421,16.0\n125,422,16.5\n125,423,17.0\n125,424,17.5\n125,425,6.0\n125,426,6.5\n125,427,7.0\n125,428,7.5\n125,429,8.0\n125,430,8.5\n125,431,9.0\n125,432,9.5\n125,433,10.0\n125,434,10.5\n125,435,11.0\n125,436,11.5\n125,437,12.0\n125,438,12.5\n125,439,13.0\n125,440,13.5\n125,441,14.0\n125,442,14.5\n125,443,15.0\n125,444,15.5\n125,445,16.0\n125,446,16.5\n125,447,17.0\n125,448,17.5\n125,449,18.0\n125,450,6.5\n125,451,7.0\n125,452,7.5\n125,453,8.0\n125,454,8.5\n125,455,9.0\n125,456,9.5\n125,457,10.0\n125,458,10.5\n125,459,11.0\n125,460,11.5\n125,461,12.0\n125,462,12.5\n125,463,13.0\n125,464,13.5\n125,465,14.0\n125,466,14.5\n125,467,15.0\n125,468,15.5\n125,469,16.0\n125,470,16.5\n125,471,17.0\n125,472,17.5\n125,473,18.0\n125,474,18.5\n125,475,7.0\n125,476,7.5\n125,477,8.0\n125,478,8.5\n125,479,9.0\n125,480,9.5\n125,481,10.0\n125,482,10.5\n125,483,11.0\n125,484,11.5\n125,485,12.0\n125,486,12.5\n125,487,13.0\n125,488,13.5\n125,489,14.0\n125,490,14.5\n125,491,15.0\n125,492,15.5\n125,493,16.0\n125,494,16.5\n125,495,17.0\n125,496,17.5\n125,497,18.0\n125,498,18.5\n125,499,19.0\n125,500,7.5\n125,501,8.0\n125,502,8.5\n125,503,9.0\n125,504,9.5\n125,505,10.0\n125,506,10.5\n125,507,11.0\n125,508,11.5\n125,509,12.0\n125,510,12.5\n125,511,13.0\n125,512,13.5\n125,513,14.0\n125,514,14.5\n125,515,15.0\n125,516,15.5\n125,517,16.0\n125,518,16.5\n125,519,17.0\n125,520,17.5\n125,521,18.0\n125,522,18.5\n125,523,19.0\n125,524,19.5\n125,525,8.0\n125,526,8.5\n125,527,9.0\n125,528,9.5\n125,529,10.0\n125,530,10.5\n125,531,11.0\n125,532,11.5\n125,533,12.0\n125,534,12.5\n125,535,13.0\n125,536,13.5\n125,537,14.0\n125,538,14.5\n125,539,15.0\n125,540,15.5\n125,541,16.0\n125,542,16.5\n125,543,17.0\n125,544,17.5\n125,545,18.0\n125,546,18.5\n125,547,19.0\n125,548,19.5\n125,549,20.0\n125,550,8.5\n125,551,9.0\n125,552,9.5\n125,553,10.0\n125,554,10.5\n125,555,11.0\n125,556,11.5\n125,557,12.0\n125,558,12.5\n125,559,13.0\n125,560,13.5\n125,561,14.0\n125,562,14.5\n125,563,15.0\n125,564,15.5\n125,565,16.0\n125,566,16.5\n125,567,17.0\n125,568,17.5\n125,569,18.0\n125,570,18.5\n125,571,19.0\n125,572,19.5\n125,573,20.0\n125,574,20.5\n125,575,9.0\n125,576,9.5\n125,577,10.0\n125,578,10.5\n125,579,11.0\n125,580,11.5\n125,581,12.0\n125,582,12.5\n125,583,13.0\n125,584,13.5\n125,585,14.0\n125,586,14.5\n125,587,15.0\n125,588,15.5\n125,589,16.0\n125,590,16.5\n125,591,17.0\n125,592,17.5\n125,593,18.0\n125,594,18.5\n125,595,19.0\n125,596,19.5\n125,597,20.0\n125,598,20.5\n125,599,21.0\n125,600,9.5\n125,601,10.0\n125,602,10.5\n125,603,11.0\n125,604,11.5\n125,605,12.0\n125,606,12.5\n125,607,13.0\n125,608,13.5\n125,609,14.0\n125,610,14.5\n125,611,15.0\n125,612,15.5\n125,613,16.0\n125,614,16.5\n125,615,17.0\n125,616,17.5\n125,617,18.0\n125,618,18.5\n125,619,19.0\n125,620,19.5\n125,621,20.0\n125,622,20.5\n125,623,21.0\n125,624,21.5\n126,0,3.0\n126,1,2.5\n126,2,3.0\n126,3,3.5\n126,4,4.0\n126,5,4.5\n126,6,5.0\n126,7,5.5\n126,8,6.0\n126,9,6.5\n126,10,7.0\n126,11,7.5\n126,12,8.0\n126,13,8.5\n126,14,9.0\n126,15,9.5\n126,16,10.0\n126,17,10.5\n126,18,11.0\n126,19,11.5\n126,20,12.0\n126,21,12.5\n126,22,13.0\n126,23,13.5\n126,24,14.0\n126,25,2.5\n126,26,2.0\n126,27,2.5\n126,28,3.0\n126,29,3.5\n126,30,4.0\n126,31,4.5\n126,32,5.0\n126,33,5.5\n126,34,6.0\n126,35,6.5\n126,36,7.0\n126,37,7.5\n126,38,8.0\n126,39,8.5\n126,40,9.0\n126,41,9.5\n126,42,10.0\n126,43,10.5\n126,44,11.0\n126,45,11.5\n126,46,12.0\n126,47,12.5\n126,48,13.0\n126,49,13.5\n126,50,2.0\n126,51,1.5\n126,52,2.0\n126,53,2.5\n126,54,3.0\n126,55,3.5\n126,56,4.0\n126,57,4.5\n126,58,5.0\n126,59,5.5\n126,60,6.0\n126,61,6.5\n126,62,7.0\n126,63,7.5\n126,64,8.0\n126,65,8.5\n126,66,9.0\n126,67,9.5\n126,68,10.0\n126,69,10.5\n126,70,11.0\n126,71,11.5\n126,72,12.0\n126,73,12.5\n126,74,13.0\n126,75,1.5\n126,76,1.0\n126,77,1.5\n126,78,2.0\n126,79,2.5\n126,80,3.0\n126,81,3.5\n126,82,4.0\n126,83,4.5\n126,84,5.0\n126,85,5.5\n126,86,6.0\n126,87,6.5\n126,88,7.0\n126,89,7.5\n126,90,8.0\n126,91,8.5\n126,92,9.0\n126,93,9.5\n126,94,10.0\n126,95,10.5\n126,96,11.0\n126,97,11.5\n126,98,12.0\n126,99,12.5\n126,100,1.0\n126,101,0.5\n126,102,1.0\n126,103,1.5\n126,104,2.0\n126,105,2.5\n126,106,3.0\n126,107,3.5\n126,108,4.0\n126,109,4.5\n126,110,5.0\n126,111,5.5\n126,112,6.0\n126,113,6.5\n126,114,7.0\n126,115,7.5\n126,116,8.0\n126,117,8.5\n126,118,9.0\n126,119,9.5\n126,120,10.0\n126,121,10.5\n126,122,11.0\n126,123,11.5\n126,124,12.0\n126,125,0.5\n126,126,0\n126,127,0.5\n126,128,1.0\n126,129,1.5\n126,130,2.0\n126,131,2.5\n126,132,3.0\n126,133,3.5\n126,134,4.0\n126,135,4.5\n126,136,5.0\n126,137,5.5\n126,138,6.0\n126,139,6.5\n126,140,7.0\n126,141,7.5\n126,142,8.0\n126,143,8.5\n126,144,9.0\n126,145,9.5\n126,146,10.0\n126,147,10.5\n126,148,11.0\n126,149,11.5\n126,150,1.0\n126,151,0.5\n126,152,1.0\n126,153,1.5\n126,154,2.0\n126,155,2.5\n126,156,3.0\n126,157,3.5\n126,158,4.0\n126,159,4.5\n126,160,5.0\n126,161,5.5\n126,162,6.0\n126,163,6.5\n126,164,7.0\n126,165,7.5\n126,166,8.0\n126,167,8.5\n126,168,9.0\n126,169,9.5\n126,170,10.0\n126,171,10.5\n126,172,11.0\n126,173,11.5\n126,174,12.0\n126,175,1.5\n126,176,1.0\n126,177,1.5\n126,178,2.0\n126,179,2.5\n126,180,3.0\n126,181,3.5\n126,182,4.0\n126,183,4.5\n126,184,5.0\n126,185,5.5\n126,186,6.0\n126,187,6.5\n126,188,7.0\n126,189,7.5\n126,190,8.0\n126,191,8.5\n126,192,9.0\n126,193,9.5\n126,194,10.0\n126,195,10.5\n126,196,11.0\n126,197,11.5\n126,198,12.0\n126,199,12.5\n126,200,2.0\n126,201,1.5\n126,202,2.0\n126,203,2.5\n126,204,3.0\n126,205,3.5\n126,206,4.0\n126,207,4.5\n126,208,5.0\n126,209,5.5\n126,210,6.0\n126,211,6.5\n126,212,7.0\n126,213,7.5\n126,214,8.0\n126,215,8.5\n126,216,9.0\n126,217,9.5\n126,218,10.0\n126,219,10.5\n126,220,11.0\n126,221,11.5\n126,222,12.0\n126,223,12.5\n126,224,13.0\n126,225,2.5\n126,226,2.0\n126,227,2.5\n126,228,3.0\n126,229,3.5\n126,230,4.0\n126,231,4.5\n126,232,5.0\n126,233,5.5\n126,234,6.0\n126,235,6.5\n126,236,7.0\n126,237,7.5\n126,238,8.0\n126,239,8.5\n126,240,9.0\n126,241,9.5\n126,242,10.0\n126,243,10.5\n126,244,11.0\n126,245,11.5\n126,246,12.0\n126,247,12.5\n126,248,13.0\n126,249,13.5\n126,250,3.0\n126,251,2.5\n126,252,3.0\n126,253,3.5\n126,254,4.0\n126,255,4.5\n126,256,5.0\n126,257,5.5\n126,258,6.0\n126,259,6.5\n126,260,7.0\n126,261,7.5\n126,262,8.0\n126,263,8.5\n126,264,9.0\n126,265,9.5\n126,266,10.0\n126,267,10.5\n126,268,11.0\n126,269,11.5\n126,270,12.0\n126,271,12.5\n126,272,13.0\n126,273,13.5\n126,274,14.0\n126,275,3.5\n126,276,3.0\n126,277,3.5\n126,278,4.0\n126,279,4.5\n126,280,5.0\n126,281,5.5\n126,282,6.0\n126,283,6.5\n126,284,7.0\n126,285,7.5\n126,286,8.0\n126,287,8.5\n126,288,9.0\n126,289,9.5\n126,290,10.0\n126,291,10.5\n126,292,11.0\n126,293,11.5\n126,294,12.0\n126,295,12.5\n126,296,13.0\n126,297,13.5\n126,298,14.0\n126,299,14.5\n126,300,4.0\n126,301,3.5\n126,302,4.0\n126,303,4.5\n126,304,5.0\n126,305,5.5\n126,306,6.0\n126,307,6.5\n126,308,7.0\n126,309,7.5\n126,310,8.0\n126,311,8.5\n126,312,9.0\n126,313,9.5\n126,314,10.0\n126,315,10.5\n126,316,11.0\n126,317,11.5\n126,318,12.0\n126,319,12.5\n126,320,13.0\n126,321,13.5\n126,322,14.0\n126,323,14.5\n126,324,15.0\n126,325,4.5\n126,326,4.0\n126,327,4.5\n126,328,5.0\n126,329,5.5\n126,330,6.0\n126,331,6.5\n126,332,7.0\n126,333,7.5\n126,334,8.0\n126,335,8.5\n126,336,9.0\n126,337,9.5\n126,338,10.0\n126,339,10.5\n126,340,11.0\n126,341,11.5\n126,342,12.0\n126,343,12.5\n126,344,13.0\n126,345,13.5\n126,346,14.0\n126,347,14.5\n126,348,15.0\n126,349,15.5\n126,350,5.0\n126,351,4.5\n126,352,5.0\n126,353,5.5\n126,354,6.0\n126,355,6.5\n126,356,7.0\n126,357,7.5\n126,358,8.0\n126,359,8.5\n126,360,9.0\n126,361,9.5\n126,362,10.0\n126,363,10.5\n126,364,11.0\n126,365,11.5\n126,366,12.0\n126,367,12.5\n126,368,13.0\n126,369,13.5\n126,370,14.0\n126,371,14.5\n126,372,15.0\n126,373,15.5\n126,374,16.0\n126,375,5.5\n126,376,5.0\n126,377,5.5\n126,378,6.0\n126,379,6.5\n126,380,7.0\n126,381,7.5\n126,382,8.0\n126,383,8.5\n126,384,9.0\n126,385,9.5\n126,386,10.0\n126,387,10.5\n126,388,11.0\n126,389,11.5\n126,390,12.0\n126,391,12.5\n126,392,13.0\n126,393,13.5\n126,394,14.0\n126,395,14.5\n126,396,15.0\n126,397,15.5\n126,398,16.0\n126,399,16.5\n126,400,6.0\n126,401,5.5\n126,402,6.0\n126,403,6.5\n126,404,7.0\n126,405,7.5\n126,406,8.0\n126,407,8.5\n126,408,9.0\n126,409,9.5\n126,410,10.0\n126,411,10.5\n126,412,11.0\n126,413,11.5\n126,414,12.0\n126,415,12.5\n126,416,13.0\n126,417,13.5\n126,418,14.0\n126,419,14.5\n126,420,15.0\n126,421,15.5\n126,422,16.0\n126,423,16.5\n126,424,17.0\n126,425,6.5\n126,426,6.0\n126,427,6.5\n126,428,7.0\n126,429,7.5\n126,430,8.0\n126,431,8.5\n126,432,9.0\n126,433,9.5\n126,434,10.0\n126,435,10.5\n126,436,11.0\n126,437,11.5\n126,438,12.0\n126,439,12.5\n126,440,13.0\n126,441,13.5\n126,442,14.0\n126,443,14.5\n126,444,15.0\n126,445,15.5\n126,446,16.0\n126,447,16.5\n126,448,17.0\n126,449,17.5\n126,450,7.0\n126,451,6.5\n126,452,7.0\n126,453,7.5\n126,454,8.0\n126,455,8.5\n126,456,9.0\n126,457,9.5\n126,458,10.0\n126,459,10.5\n126,460,11.0\n126,461,11.5\n126,462,12.0\n126,463,12.5\n126,464,13.0\n126,465,13.5\n126,466,14.0\n126,467,14.5\n126,468,15.0\n126,469,15.5\n126,470,16.0\n126,471,16.5\n126,472,17.0\n126,473,17.5\n126,474,18.0\n126,475,7.5\n126,476,7.0\n126,477,7.5\n126,478,8.0\n126,479,8.5\n126,480,9.0\n126,481,9.5\n126,482,10.0\n126,483,10.5\n126,484,11.0\n126,485,11.5\n126,486,12.0\n126,487,12.5\n126,488,13.0\n126,489,13.5\n126,490,14.0\n126,491,14.5\n126,492,15.0\n126,493,15.5\n126,494,16.0\n126,495,16.5\n126,496,17.0\n126,497,17.5\n126,498,18.0\n126,499,18.5\n126,500,8.0\n126,501,7.5\n126,502,8.0\n126,503,8.5\n126,504,9.0\n126,505,9.5\n126,506,10.0\n126,507,10.5\n126,508,11.0\n126,509,11.5\n126,510,12.0\n126,511,12.5\n126,512,13.0\n126,513,13.5\n126,514,14.0\n126,515,14.5\n126,516,15.0\n126,517,15.5\n126,518,16.0\n126,519,16.5\n126,520,17.0\n126,521,17.5\n126,522,18.0\n126,523,18.5\n126,524,19.0\n126,525,8.5\n126,526,8.0\n126,527,8.5\n126,528,9.0\n126,529,9.5\n126,530,10.0\n126,531,10.5\n126,532,11.0\n126,533,11.5\n126,534,12.0\n126,535,12.5\n126,536,13.0\n126,537,13.5\n126,538,14.0\n126,539,14.5\n126,540,15.0\n126,541,15.5\n126,542,16.0\n126,543,16.5\n126,544,17.0\n126,545,17.5\n126,546,18.0\n126,547,18.5\n126,548,19.0\n126,549,19.5\n126,550,9.0\n126,551,8.5\n126,552,9.0\n126,553,9.5\n126,554,10.0\n126,555,10.5\n126,556,11.0\n126,557,11.5\n126,558,12.0\n126,559,12.5\n126,560,13.0\n126,561,13.5\n126,562,14.0\n126,563,14.5\n126,564,15.0\n126,565,15.5\n126,566,16.0\n126,567,16.5\n126,568,17.0\n126,569,17.5\n126,570,18.0\n126,571,18.5\n126,572,19.0\n126,573,19.5\n126,574,20.0\n126,575,9.5\n126,576,9.0\n126,577,9.5\n126,578,10.0\n126,579,10.5\n126,580,11.0\n126,581,11.5\n126,582,12.0\n126,583,12.5\n126,584,13.0\n126,585,13.5\n126,586,14.0\n126,587,14.5\n126,588,15.0\n126,589,15.5\n126,590,16.0\n126,591,16.5\n126,592,17.0\n126,593,17.5\n126,594,18.0\n126,595,18.5\n126,596,19.0\n126,597,19.5\n126,598,20.0\n126,599,20.5\n126,600,10.0\n126,601,9.5\n126,602,10.0\n126,603,10.5\n126,604,11.0\n126,605,11.5\n126,606,12.0\n126,607,12.5\n126,608,13.0\n126,609,13.5\n126,610,14.0\n126,611,14.5\n126,612,15.0\n126,613,15.5\n126,614,16.0\n126,615,16.5\n126,616,17.0\n126,617,17.5\n126,618,18.0\n126,619,18.5\n126,620,19.0\n126,621,19.5\n126,622,20.0\n126,623,20.5\n126,624,21.0\n127,0,3.5\n127,1,3.0\n127,2,2.5\n127,3,3.0\n127,4,3.5\n127,5,4.0\n127,6,4.5\n127,7,5.0\n127,8,5.5\n127,9,6.0\n127,10,6.5\n127,11,7.0\n127,12,7.5\n127,13,8.0\n127,14,8.5\n127,15,9.0\n127,16,9.5\n127,17,10.0\n127,18,10.5\n127,19,11.0\n127,20,11.5\n127,21,12.0\n127,22,12.5\n127,23,13.0\n127,24,13.5\n127,25,3.0\n127,26,2.5\n127,27,2.0\n127,28,2.5\n127,29,3.0\n127,30,3.5\n127,31,4.0\n127,32,4.5\n127,33,5.0\n127,34,5.5\n127,35,6.0\n127,36,6.5\n127,37,7.0\n127,38,7.5\n127,39,8.0\n127,40,8.5\n127,41,9.0\n127,42,9.5\n127,43,10.0\n127,44,10.5\n127,45,11.0\n127,46,11.5\n127,47,12.0\n127,48,12.5\n127,49,13.0\n127,50,2.5\n127,51,2.0\n127,52,1.5\n127,53,2.0\n127,54,2.5\n127,55,3.0\n127,56,3.5\n127,57,4.0\n127,58,4.5\n127,59,5.0\n127,60,5.5\n127,61,6.0\n127,62,6.5\n127,63,7.0\n127,64,7.5\n127,65,8.0\n127,66,8.5\n127,67,9.0\n127,68,9.5\n127,69,10.0\n127,70,10.5\n127,71,11.0\n127,72,11.5\n127,73,12.0\n127,74,12.5\n127,75,2.0\n127,76,1.5\n127,77,1.0\n127,78,1.5\n127,79,2.0\n127,80,2.5\n127,81,3.0\n127,82,3.5\n127,83,4.0\n127,84,4.5\n127,85,5.0\n127,86,5.5\n127,87,6.0\n127,88,6.5\n127,89,7.0\n127,90,7.5\n127,91,8.0\n127,92,8.5\n127,93,9.0\n127,94,9.5\n127,95,10.0\n127,96,10.5\n127,97,11.0\n127,98,11.5\n127,99,12.0\n127,100,1.5\n127,101,1.0\n127,102,0.5\n127,103,1.0\n127,104,1.5\n127,105,2.0\n127,106,2.5\n127,107,3.0\n127,108,3.5\n127,109,4.0\n127,110,4.5\n127,111,5.0\n127,112,5.5\n127,113,6.0\n127,114,6.5\n127,115,7.0\n127,116,7.5\n127,117,8.0\n127,118,8.5\n127,119,9.0\n127,120,9.5\n127,121,10.0\n127,122,10.5\n127,123,11.0\n127,124,11.5\n127,125,1.0\n127,126,0.5\n127,127,0\n127,128,0.5\n127,129,1.0\n127,130,1.5\n127,131,2.0\n127,132,2.5\n127,133,3.0\n127,134,3.5\n127,135,4.0\n127,136,4.5\n127,137,5.0\n127,138,5.5\n127,139,6.0\n127,140,6.5\n127,141,7.0\n127,142,7.5\n127,143,8.0\n127,144,8.5\n127,145,9.0\n127,146,9.5\n127,147,10.0\n127,148,10.5\n127,149,11.0\n127,150,1.5\n127,151,1.0\n127,152,0.5\n127,153,1.0\n127,154,1.5\n127,155,2.0\n127,156,2.5\n127,157,3.0\n127,158,3.5\n127,159,4.0\n127,160,4.5\n127,161,5.0\n127,162,5.5\n127,163,6.0\n127,164,6.5\n127,165,7.0\n127,166,7.5\n127,167,8.0\n127,168,8.5\n127,169,9.0\n127,170,9.5\n127,171,10.0\n127,172,10.5\n127,173,11.0\n127,174,11.5\n127,175,2.0\n127,176,1.5\n127,177,1.0\n127,178,1.5\n127,179,2.0\n127,180,2.5\n127,181,3.0\n127,182,3.5\n127,183,4.0\n127,184,4.5\n127,185,5.0\n127,186,5.5\n127,187,6.0\n127,188,6.5\n127,189,7.0\n127,190,7.5\n127,191,8.0\n127,192,8.5\n127,193,9.0\n127,194,9.5\n127,195,10.0\n127,196,10.5\n127,197,11.0\n127,198,11.5\n127,199,12.0\n127,200,2.5\n127,201,2.0\n127,202,1.5\n127,203,2.0\n127,204,2.5\n127,205,3.0\n127,206,3.5\n127,207,4.0\n127,208,4.5\n127,209,5.0\n127,210,5.5\n127,211,6.0\n127,212,6.5\n127,213,7.0\n127,214,7.5\n127,215,8.0\n127,216,8.5\n127,217,9.0\n127,218,9.5\n127,219,10.0\n127,220,10.5\n127,221,11.0\n127,222,11.5\n127,223,12.0\n127,224,12.5\n127,225,3.0\n127,226,2.5\n127,227,2.0\n127,228,2.5\n127,229,3.0\n127,230,3.5\n127,231,4.0\n127,232,4.5\n127,233,5.0\n127,234,5.5\n127,235,6.0\n127,236,6.5\n127,237,7.0\n127,238,7.5\n127,239,8.0\n127,240,8.5\n127,241,9.0\n127,242,9.5\n127,243,10.0\n127,244,10.5\n127,245,11.0\n127,246,11.5\n127,247,12.0\n127,248,12.5\n127,249,13.0\n127,250,3.5\n127,251,3.0\n127,252,2.5\n127,253,3.0\n127,254,3.5\n127,255,4.0\n127,256,4.5\n127,257,5.0\n127,258,5.5\n127,259,6.0\n127,260,6.5\n127,261,7.0\n127,262,7.5\n127,263,8.0\n127,264,8.5\n127,265,9.0\n127,266,9.5\n127,267,10.0\n127,268,10.5\n127,269,11.0\n127,270,11.5\n127,271,12.0\n127,272,12.5\n127,273,13.0\n127,274,13.5\n127,275,4.0\n127,276,3.5\n127,277,3.0\n127,278,3.5\n127,279,4.0\n127,280,4.5\n127,281,5.0\n127,282,5.5\n127,283,6.0\n127,284,6.5\n127,285,7.0\n127,286,7.5\n127,287,8.0\n127,288,8.5\n127,289,9.0\n127,290,9.5\n127,291,10.0\n127,292,10.5\n127,293,11.0\n127,294,11.5\n127,295,12.0\n127,296,12.5\n127,297,13.0\n127,298,13.5\n127,299,14.0\n127,300,4.5\n127,301,4.0\n127,302,3.5\n127,303,4.0\n127,304,4.5\n127,305,5.0\n127,306,5.5\n127,307,6.0\n127,308,6.5\n127,309,7.0\n127,310,7.5\n127,311,8.0\n127,312,8.5\n127,313,9.0\n127,314,9.5\n127,315,10.0\n127,316,10.5\n127,317,11.0\n127,318,11.5\n127,319,12.0\n127,320,12.5\n127,321,13.0\n127,322,13.5\n127,323,14.0\n127,324,14.5\n127,325,5.0\n127,326,4.5\n127,327,4.0\n127,328,4.5\n127,329,5.0\n127,330,5.5\n127,331,6.0\n127,332,6.5\n127,333,7.0\n127,334,7.5\n127,335,8.0\n127,336,8.5\n127,337,9.0\n127,338,9.5\n127,339,10.0\n127,340,10.5\n127,341,11.0\n127,342,11.5\n127,343,12.0\n127,344,12.5\n127,345,13.0\n127,346,13.5\n127,347,14.0\n127,348,14.5\n127,349,15.0\n127,350,5.5\n127,351,5.0\n127,352,4.5\n127,353,5.0\n127,354,5.5\n127,355,6.0\n127,356,6.5\n127,357,7.0\n127,358,7.5\n127,359,8.0\n127,360,8.5\n127,361,9.0\n127,362,9.5\n127,363,10.0\n127,364,10.5\n127,365,11.0\n127,366,11.5\n127,367,12.0\n127,368,12.5\n127,369,13.0\n127,370,13.5\n127,371,14.0\n127,372,14.5\n127,373,15.0\n127,374,15.5\n127,375,6.0\n127,376,5.5\n127,377,5.0\n127,378,5.5\n127,379,6.0\n127,380,6.5\n127,381,7.0\n127,382,7.5\n127,383,8.0\n127,384,8.5\n127,385,9.0\n127,386,9.5\n127,387,10.0\n127,388,10.5\n127,389,11.0\n127,390,11.5\n127,391,12.0\n127,392,12.5\n127,393,13.0\n127,394,13.5\n127,395,14.0\n127,396,14.5\n127,397,15.0\n127,398,15.5\n127,399,16.0\n127,400,6.5\n127,401,6.0\n127,402,5.5\n127,403,6.0\n127,404,6.5\n127,405,7.0\n127,406,7.5\n127,407,8.0\n127,408,8.5\n127,409,9.0\n127,410,9.5\n127,411,10.0\n127,412,10.5\n127,413,11.0\n127,414,11.5\n127,415,12.0\n127,416,12.5\n127,417,13.0\n127,418,13.5\n127,419,14.0\n127,420,14.5\n127,421,15.0\n127,422,15.5\n127,423,16.0\n127,424,16.5\n127,425,7.0\n127,426,6.5\n127,427,6.0\n127,428,6.5\n127,429,7.0\n127,430,7.5\n127,431,8.0\n127,432,8.5\n127,433,9.0\n127,434,9.5\n127,435,10.0\n127,436,10.5\n127,437,11.0\n127,438,11.5\n127,439,12.0\n127,440,12.5\n127,441,13.0\n127,442,13.5\n127,443,14.0\n127,444,14.5\n127,445,15.0\n127,446,15.5\n127,447,16.0\n127,448,16.5\n127,449,17.0\n127,450,7.5\n127,451,7.0\n127,452,6.5\n127,453,7.0\n127,454,7.5\n127,455,8.0\n127,456,8.5\n127,457,9.0\n127,458,9.5\n127,459,10.0\n127,460,10.5\n127,461,11.0\n127,462,11.5\n127,463,12.0\n127,464,12.5\n127,465,13.0\n127,466,13.5\n127,467,14.0\n127,468,14.5\n127,469,15.0\n127,470,15.5\n127,471,16.0\n127,472,16.5\n127,473,17.0\n127,474,17.5\n127,475,8.0\n127,476,7.5\n127,477,7.0\n127,478,7.5\n127,479,8.0\n127,480,8.5\n127,481,9.0\n127,482,9.5\n127,483,10.0\n127,484,10.5\n127,485,11.0\n127,486,11.5\n127,487,12.0\n127,488,12.5\n127,489,13.0\n127,490,13.5\n127,491,14.0\n127,492,14.5\n127,493,15.0\n127,494,15.5\n127,495,16.0\n127,496,16.5\n127,497,17.0\n127,498,17.5\n127,499,18.0\n127,500,8.5\n127,501,8.0\n127,502,7.5\n127,503,8.0\n127,504,8.5\n127,505,9.0\n127,506,9.5\n127,507,10.0\n127,508,10.5\n127,509,11.0\n127,510,11.5\n127,511,12.0\n127,512,12.5\n127,513,13.0\n127,514,13.5\n127,515,14.0\n127,516,14.5\n127,517,15.0\n127,518,15.5\n127,519,16.0\n127,520,16.5\n127,521,17.0\n127,522,17.5\n127,523,18.0\n127,524,18.5\n127,525,9.0\n127,526,8.5\n127,527,8.0\n127,528,8.5\n127,529,9.0\n127,530,9.5\n127,531,10.0\n127,532,10.5\n127,533,11.0\n127,534,11.5\n127,535,12.0\n127,536,12.5\n127,537,13.0\n127,538,13.5\n127,539,14.0\n127,540,14.5\n127,541,15.0\n127,542,15.5\n127,543,16.0\n127,544,16.5\n127,545,17.0\n127,546,17.5\n127,547,18.0\n127,548,18.5\n127,549,19.0\n127,550,9.5\n127,551,9.0\n127,552,8.5\n127,553,9.0\n127,554,9.5\n127,555,10.0\n127,556,10.5\n127,557,11.0\n127,558,11.5\n127,559,12.0\n127,560,12.5\n127,561,13.0\n127,562,13.5\n127,563,14.0\n127,564,14.5\n127,565,15.0\n127,566,15.5\n127,567,16.0\n127,568,16.5\n127,569,17.0\n127,570,17.5\n127,571,18.0\n127,572,18.5\n127,573,19.0\n127,574,19.5\n127,575,10.0\n127,576,9.5\n127,577,9.0\n127,578,9.5\n127,579,10.0\n127,580,10.5\n127,581,11.0\n127,582,11.5\n127,583,12.0\n127,584,12.5\n127,585,13.0\n127,586,13.5\n127,587,14.0\n127,588,14.5\n127,589,15.0\n127,590,15.5\n127,591,16.0\n127,592,16.5\n127,593,17.0\n127,594,17.5\n127,595,18.0\n127,596,18.5\n127,597,19.0\n127,598,19.5\n127,599,20.0\n127,600,10.5\n127,601,10.0\n127,602,9.5\n127,603,10.0\n127,604,10.5\n127,605,11.0\n127,606,11.5\n127,607,12.0\n127,608,12.5\n127,609,13.0\n127,610,13.5\n127,611,14.0\n127,612,14.5\n127,613,15.0\n127,614,15.5\n127,615,16.0\n127,616,16.5\n127,617,17.0\n127,618,17.5\n127,619,18.0\n127,620,18.5\n127,621,19.0\n127,622,19.5\n127,623,20.0\n127,624,20.5\n128,0,4.0\n128,1,3.5\n128,2,3.0\n128,3,2.5\n128,4,3.0\n128,5,3.5\n128,6,4.0\n128,7,4.5\n128,8,5.0\n128,9,5.5\n128,10,6.0\n128,11,6.5\n128,12,7.0\n128,13,7.5\n128,14,8.0\n128,15,8.5\n128,16,9.0\n128,17,9.5\n128,18,10.0\n128,19,10.5\n128,20,11.0\n128,21,11.5\n128,22,12.0\n128,23,12.5\n128,24,13.0\n128,25,3.5\n128,26,3.0\n128,27,2.5\n128,28,2.0\n128,29,2.5\n128,30,3.0\n128,31,3.5\n128,32,4.0\n128,33,4.5\n128,34,5.0\n128,35,5.5\n128,36,6.0\n128,37,6.5\n128,38,7.0\n128,39,7.5\n128,40,8.0\n128,41,8.5\n128,42,9.0\n128,43,9.5\n128,44,10.0\n128,45,10.5\n128,46,11.0\n128,47,11.5\n128,48,12.0\n128,49,12.5\n128,50,3.0\n128,51,2.5\n128,52,2.0\n128,53,1.5\n128,54,2.0\n128,55,2.5\n128,56,3.0\n128,57,3.5\n128,58,4.0\n128,59,4.5\n128,60,5.0\n128,61,5.5\n128,62,6.0\n128,63,6.5\n128,64,7.0\n128,65,7.5\n128,66,8.0\n128,67,8.5\n128,68,9.0\n128,69,9.5\n128,70,10.0\n128,71,10.5\n128,72,11.0\n128,73,11.5\n128,74,12.0\n128,75,2.5\n128,76,2.0\n128,77,1.5\n128,78,1.0\n128,79,1.5\n128,80,2.0\n128,81,2.5\n128,82,3.0\n128,83,3.5\n128,84,4.0\n128,85,4.5\n128,86,5.0\n128,87,5.5\n128,88,6.0\n128,89,6.5\n128,90,7.0\n128,91,7.5\n128,92,8.0\n128,93,8.5\n128,94,9.0\n128,95,9.5\n128,96,10.0\n128,97,10.5\n128,98,11.0\n128,99,11.5\n128,100,2.0\n128,101,1.5\n128,102,1.0\n128,103,0.5\n128,104,1.0\n128,105,1.5\n128,106,2.0\n128,107,2.5\n128,108,3.0\n128,109,3.5\n128,110,4.0\n128,111,4.5\n128,112,5.0\n128,113,5.5\n128,114,6.0\n128,115,6.5\n128,116,7.0\n128,117,7.5\n128,118,8.0\n128,119,8.5\n128,120,9.0\n128,121,9.5\n128,122,10.0\n128,123,10.5\n128,124,11.0\n128,125,1.5\n128,126,1.0\n128,127,0.5\n128,128,0\n128,129,0.5\n128,130,1.0\n128,131,1.5\n128,132,2.0\n128,133,2.5\n128,134,3.0\n128,135,3.5\n128,136,4.0\n128,137,4.5\n128,138,5.0\n128,139,5.5\n128,140,6.0\n128,141,6.5\n128,142,7.0\n128,143,7.5\n128,144,8.0\n128,145,8.5\n128,146,9.0\n128,147,9.5\n128,148,10.0\n128,149,10.5\n128,150,2.0\n128,151,1.5\n128,152,1.0\n128,153,0.5\n128,154,1.0\n128,155,1.5\n128,156,2.0\n128,157,2.5\n128,158,3.0\n128,159,3.5\n128,160,4.0\n128,161,4.5\n128,162,5.0\n128,163,5.5\n128,164,6.0\n128,165,6.5\n128,166,7.0\n128,167,7.5\n128,168,8.0\n128,169,8.5\n128,170,9.0\n128,171,9.5\n128,172,10.0\n128,173,10.5\n128,174,11.0\n128,175,2.5\n128,176,2.0\n128,177,1.5\n128,178,1.0\n128,179,1.5\n128,180,2.0\n128,181,2.5\n128,182,3.0\n128,183,3.5\n128,184,4.0\n128,185,4.5\n128,186,5.0\n128,187,5.5\n128,188,6.0\n128,189,6.5\n128,190,7.0\n128,191,7.5\n128,192,8.0\n128,193,8.5\n128,194,9.0\n128,195,9.5\n128,196,10.0\n128,197,10.5\n128,198,11.0\n128,199,11.5\n128,200,3.0\n128,201,2.5\n128,202,2.0\n128,203,1.5\n128,204,2.0\n128,205,2.5\n128,206,3.0\n128,207,3.5\n128,208,4.0\n128,209,4.5\n128,210,5.0\n128,211,5.5\n128,212,6.0\n128,213,6.5\n128,214,7.0\n128,215,7.5\n128,216,8.0\n128,217,8.5\n128,218,9.0\n128,219,9.5\n128,220,10.0\n128,221,10.5\n128,222,11.0\n128,223,11.5\n128,224,12.0\n128,225,3.5\n128,226,3.0\n128,227,2.5\n128,228,2.0\n128,229,2.5\n128,230,3.0\n128,231,3.5\n128,232,4.0\n128,233,4.5\n128,234,5.0\n128,235,5.5\n128,236,6.0\n128,237,6.5\n128,238,7.0\n128,239,7.5\n128,240,8.0\n128,241,8.5\n128,242,9.0\n128,243,9.5\n128,244,10.0\n128,245,10.5\n128,246,11.0\n128,247,11.5\n128,248,12.0\n128,249,12.5\n128,250,4.0\n128,251,3.5\n128,252,3.0\n128,253,2.5\n128,254,3.0\n128,255,3.5\n128,256,4.0\n128,257,4.5\n128,258,5.0\n128,259,5.5\n128,260,6.0\n128,261,6.5\n128,262,7.0\n128,263,7.5\n128,264,8.0\n128,265,8.5\n128,266,9.0\n128,267,9.5\n128,268,10.0\n128,269,10.5\n128,270,11.0\n128,271,11.5\n128,272,12.0\n128,273,12.5\n128,274,13.0\n128,275,4.5\n128,276,4.0\n128,277,3.5\n128,278,3.0\n128,279,3.5\n128,280,4.0\n128,281,4.5\n128,282,5.0\n128,283,5.5\n128,284,6.0\n128,285,6.5\n128,286,7.0\n128,287,7.5\n128,288,8.0\n128,289,8.5\n128,290,9.0\n128,291,9.5\n128,292,10.0\n128,293,10.5\n128,294,11.0\n128,295,11.5\n128,296,12.0\n128,297,12.5\n128,298,13.0\n128,299,13.5\n128,300,5.0\n128,301,4.5\n128,302,4.0\n128,303,3.5\n128,304,4.0\n128,305,4.5\n128,306,5.0\n128,307,5.5\n128,308,6.0\n128,309,6.5\n128,310,7.0\n128,311,7.5\n128,312,8.0\n128,313,8.5\n128,314,9.0\n128,315,9.5\n128,316,10.0\n128,317,10.5\n128,318,11.0\n128,319,11.5\n128,320,12.0\n128,321,12.5\n128,322,13.0\n128,323,13.5\n128,324,14.0\n128,325,5.5\n128,326,5.0\n128,327,4.5\n128,328,4.0\n128,329,4.5\n128,330,5.0\n128,331,5.5\n128,332,6.0\n128,333,6.5\n128,334,7.0\n128,335,7.5\n128,336,8.0\n128,337,8.5\n128,338,9.0\n128,339,9.5\n128,340,10.0\n128,341,10.5\n128,342,11.0\n128,343,11.5\n128,344,12.0\n128,345,12.5\n128,346,13.0\n128,347,13.5\n128,348,14.0\n128,349,14.5\n128,350,6.0\n128,351,5.5\n128,352,5.0\n128,353,4.5\n128,354,5.0\n128,355,5.5\n128,356,6.0\n128,357,6.5\n128,358,7.0\n128,359,7.5\n128,360,8.0\n128,361,8.5\n128,362,9.0\n128,363,9.5\n128,364,10.0\n128,365,10.5\n128,366,11.0\n128,367,11.5\n128,368,12.0\n128,369,12.5\n128,370,13.0\n128,371,13.5\n128,372,14.0\n128,373,14.5\n128,374,15.0\n128,375,6.5\n128,376,6.0\n128,377,5.5\n128,378,5.0\n128,379,5.5\n128,380,6.0\n128,381,6.5\n128,382,7.0\n128,383,7.5\n128,384,8.0\n128,385,8.5\n128,386,9.0\n128,387,9.5\n128,388,10.0\n128,389,10.5\n128,390,11.0\n128,391,11.5\n128,392,12.0\n128,393,12.5\n128,394,13.0\n128,395,13.5\n128,396,14.0\n128,397,14.5\n128,398,15.0\n128,399,15.5\n128,400,7.0\n128,401,6.5\n128,402,6.0\n128,403,5.5\n128,404,6.0\n128,405,6.5\n128,406,7.0\n128,407,7.5\n128,408,8.0\n128,409,8.5\n128,410,9.0\n128,411,9.5\n128,412,10.0\n128,413,10.5\n128,414,11.0\n128,415,11.5\n128,416,12.0\n128,417,12.5\n128,418,13.0\n128,419,13.5\n128,420,14.0\n128,421,14.5\n128,422,15.0\n128,423,15.5\n128,424,16.0\n128,425,7.5\n128,426,7.0\n128,427,6.5\n128,428,6.0\n128,429,6.5\n128,430,7.0\n128,431,7.5\n128,432,8.0\n128,433,8.5\n128,434,9.0\n128,435,9.5\n128,436,10.0\n128,437,10.5\n128,438,11.0\n128,439,11.5\n128,440,12.0\n128,441,12.5\n128,442,13.0\n128,443,13.5\n128,444,14.0\n128,445,14.5\n128,446,15.0\n128,447,15.5\n128,448,16.0\n128,449,16.5\n128,450,8.0\n128,451,7.5\n128,452,7.0\n128,453,6.5\n128,454,7.0\n128,455,7.5\n128,456,8.0\n128,457,8.5\n128,458,9.0\n128,459,9.5\n128,460,10.0\n128,461,10.5\n128,462,11.0\n128,463,11.5\n128,464,12.0\n128,465,12.5\n128,466,13.0\n128,467,13.5\n128,468,14.0\n128,469,14.5\n128,470,15.0\n128,471,15.5\n128,472,16.0\n128,473,16.5\n128,474,17.0\n128,475,8.5\n128,476,8.0\n128,477,7.5\n128,478,7.0\n128,479,7.5\n128,480,8.0\n128,481,8.5\n128,482,9.0\n128,483,9.5\n128,484,10.0\n128,485,10.5\n128,486,11.0\n128,487,11.5\n128,488,12.0\n128,489,12.5\n128,490,13.0\n128,491,13.5\n128,492,14.0\n128,493,14.5\n128,494,15.0\n128,495,15.5\n128,496,16.0\n128,497,16.5\n128,498,17.0\n128,499,17.5\n128,500,9.0\n128,501,8.5\n128,502,8.0\n128,503,7.5\n128,504,8.0\n128,505,8.5\n128,506,9.0\n128,507,9.5\n128,508,10.0\n128,509,10.5\n128,510,11.0\n128,511,11.5\n128,512,12.0\n128,513,12.5\n128,514,13.0\n128,515,13.5\n128,516,14.0\n128,517,14.5\n128,518,15.0\n128,519,15.5\n128,520,16.0\n128,521,16.5\n128,522,17.0\n128,523,17.5\n128,524,18.0\n128,525,9.5\n128,526,9.0\n128,527,8.5\n128,528,8.0\n128,529,8.5\n128,530,9.0\n128,531,9.5\n128,532,10.0\n128,533,10.5\n128,534,11.0\n128,535,11.5\n128,536,12.0\n128,537,12.5\n128,538,13.0\n128,539,13.5\n128,540,14.0\n128,541,14.5\n128,542,15.0\n128,543,15.5\n128,544,16.0\n128,545,16.5\n128,546,17.0\n128,547,17.5\n128,548,18.0\n128,549,18.5\n128,550,10.0\n128,551,9.5\n128,552,9.0\n128,553,8.5\n128,554,9.0\n128,555,9.5\n128,556,10.0\n128,557,10.5\n128,558,11.0\n128,559,11.5\n128,560,12.0\n128,561,12.5\n128,562,13.0\n128,563,13.5\n128,564,14.0\n128,565,14.5\n128,566,15.0\n128,567,15.5\n128,568,16.0\n128,569,16.5\n128,570,17.0\n128,571,17.5\n128,572,18.0\n128,573,18.5\n128,574,19.0\n128,575,10.5\n128,576,10.0\n128,577,9.5\n128,578,9.0\n128,579,9.5\n128,580,10.0\n128,581,10.5\n128,582,11.0\n128,583,11.5\n128,584,12.0\n128,585,12.5\n128,586,13.0\n128,587,13.5\n128,588,14.0\n128,589,14.5\n128,590,15.0\n128,591,15.5\n128,592,16.0\n128,593,16.5\n128,594,17.0\n128,595,17.5\n128,596,18.0\n128,597,18.5\n128,598,19.0\n128,599,19.5\n128,600,11.0\n128,601,10.5\n128,602,10.0\n128,603,9.5\n128,604,10.0\n128,605,10.5\n128,606,11.0\n128,607,11.5\n128,608,12.0\n128,609,12.5\n128,610,13.0\n128,611,13.5\n128,612,14.0\n128,613,14.5\n128,614,15.0\n128,615,15.5\n128,616,16.0\n128,617,16.5\n128,618,17.0\n128,619,17.5\n128,620,18.0\n128,621,18.5\n128,622,19.0\n128,623,19.5\n128,624,20.0\n129,0,4.5\n129,1,4.0\n129,2,3.5\n129,3,3.0\n129,4,2.5\n129,5,3.0\n129,6,3.5\n129,7,4.0\n129,8,4.5\n129,9,5.0\n129,10,5.5\n129,11,6.0\n129,12,6.5\n129,13,7.0\n129,14,7.5\n129,15,8.0\n129,16,8.5\n129,17,9.0\n129,18,9.5\n129,19,10.0\n129,20,10.5\n129,21,11.0\n129,22,11.5\n129,23,12.0\n129,24,12.5\n129,25,4.0\n129,26,3.5\n129,27,3.0\n129,28,2.5\n129,29,2.0\n129,30,2.5\n129,31,3.0\n129,32,3.5\n129,33,4.0\n129,34,4.5\n129,35,5.0\n129,36,5.5\n129,37,6.0\n129,38,6.5\n129,39,7.0\n129,40,7.5\n129,41,8.0\n129,42,8.5\n129,43,9.0\n129,44,9.5\n129,45,10.0\n129,46,10.5\n129,47,11.0\n129,48,11.5\n129,49,12.0\n129,50,3.5\n129,51,3.0\n129,52,2.5\n129,53,2.0\n129,54,1.5\n129,55,2.0\n129,56,2.5\n129,57,3.0\n129,58,3.5\n129,59,4.0\n129,60,4.5\n129,61,5.0\n129,62,5.5\n129,63,6.0\n129,64,6.5\n129,65,7.0\n129,66,7.5\n129,67,8.0\n129,68,8.5\n129,69,9.0\n129,70,9.5\n129,71,10.0\n129,72,10.5\n129,73,11.0\n129,74,11.5\n129,75,3.0\n129,76,2.5\n129,77,2.0\n129,78,1.5\n129,79,1.0\n129,80,1.5\n129,81,2.0\n129,82,2.5\n129,83,3.0\n129,84,3.5\n129,85,4.0\n129,86,4.5\n129,87,5.0\n129,88,5.5\n129,89,6.0\n129,90,6.5\n129,91,7.0\n129,92,7.5\n129,93,8.0\n129,94,8.5\n129,95,9.0\n129,96,9.5\n129,97,10.0\n129,98,10.5\n129,99,11.0\n129,100,2.5\n129,101,2.0\n129,102,1.5\n129,103,1.0\n129,104,0.5\n129,105,1.0\n129,106,1.5\n129,107,2.0\n129,108,2.5\n129,109,3.0\n129,110,3.5\n129,111,4.0\n129,112,4.5\n129,113,5.0\n129,114,5.5\n129,115,6.0\n129,116,6.5\n129,117,7.0\n129,118,7.5\n129,119,8.0\n129,120,8.5\n129,121,9.0\n129,122,9.5\n129,123,10.0\n129,124,10.5\n129,125,2.0\n129,126,1.5\n129,127,1.0\n129,128,0.5\n129,129,0\n129,130,0.5\n129,131,1.0\n129,132,1.5\n129,133,2.0\n129,134,2.5\n129,135,3.0\n129,136,3.5\n129,137,4.0\n129,138,4.5\n129,139,5.0\n129,140,5.5\n129,141,6.0\n129,142,6.5\n129,143,7.0\n129,144,7.5\n129,145,8.0\n129,146,8.5\n129,147,9.0\n129,148,9.5\n129,149,10.0\n129,150,2.5\n129,151,2.0\n129,152,1.5\n129,153,1.0\n129,154,0.5\n129,155,1.0\n129,156,1.5\n129,157,2.0\n129,158,2.5\n129,159,3.0\n129,160,3.5\n129,161,4.0\n129,162,4.5\n129,163,5.0\n129,164,5.5\n129,165,6.0\n129,166,6.5\n129,167,7.0\n129,168,7.5\n129,169,8.0\n129,170,8.5\n129,171,9.0\n129,172,9.5\n129,173,10.0\n129,174,10.5\n129,175,3.0\n129,176,2.5\n129,177,2.0\n129,178,1.5\n129,179,1.0\n129,180,1.5\n129,181,2.0\n129,182,2.5\n129,183,3.0\n129,184,3.5\n129,185,4.0\n129,186,4.5\n129,187,5.0\n129,188,5.5\n129,189,6.0\n129,190,6.5\n129,191,7.0\n129,192,7.5\n129,193,8.0\n129,194,8.5\n129,195,9.0\n129,196,9.5\n129,197,10.0\n129,198,10.5\n129,199,11.0\n129,200,3.5\n129,201,3.0\n129,202,2.5\n129,203,2.0\n129,204,1.5\n129,205,2.0\n129,206,2.5\n129,207,3.0\n129,208,3.5\n129,209,4.0\n129,210,4.5\n129,211,5.0\n129,212,5.5\n129,213,6.0\n129,214,6.5\n129,215,7.0\n129,216,7.5\n129,217,8.0\n129,218,8.5\n129,219,9.0\n129,220,9.5\n129,221,10.0\n129,222,10.5\n129,223,11.0\n129,224,11.5\n129,225,4.0\n129,226,3.5\n129,227,3.0\n129,228,2.5\n129,229,2.0\n129,230,2.5\n129,231,3.0\n129,232,3.5\n129,233,4.0\n129,234,4.5\n129,235,5.0\n129,236,5.5\n129,237,6.0\n129,238,6.5\n129,239,7.0\n129,240,7.5\n129,241,8.0\n129,242,8.5\n129,243,9.0\n129,244,9.5\n129,245,10.0\n129,246,10.5\n129,247,11.0\n129,248,11.5\n129,249,12.0\n129,250,4.5\n129,251,4.0\n129,252,3.5\n129,253,3.0\n129,254,2.5\n129,255,3.0\n129,256,3.5\n129,257,4.0\n129,258,4.5\n129,259,5.0\n129,260,5.5\n129,261,6.0\n129,262,6.5\n129,263,7.0\n129,264,7.5\n129,265,8.0\n129,266,8.5\n129,267,9.0\n129,268,9.5\n129,269,10.0\n129,270,10.5\n129,271,11.0\n129,272,11.5\n129,273,12.0\n129,274,12.5\n129,275,5.0\n129,276,4.5\n129,277,4.0\n129,278,3.5\n129,279,3.0\n129,280,3.5\n129,281,4.0\n129,282,4.5\n129,283,5.0\n129,284,5.5\n129,285,6.0\n129,286,6.5\n129,287,7.0\n129,288,7.5\n129,289,8.0\n129,290,8.5\n129,291,9.0\n129,292,9.5\n129,293,10.0\n129,294,10.5\n129,295,11.0\n129,296,11.5\n129,297,12.0\n129,298,12.5\n129,299,13.0\n129,300,5.5\n129,301,5.0\n129,302,4.5\n129,303,4.0\n129,304,3.5\n129,305,4.0\n129,306,4.5\n129,307,5.0\n129,308,5.5\n129,309,6.0\n129,310,6.5\n129,311,7.0\n129,312,7.5\n129,313,8.0\n129,314,8.5\n129,315,9.0\n129,316,9.5\n129,317,10.0\n129,318,10.5\n129,319,11.0\n129,320,11.5\n129,321,12.0\n129,322,12.5\n129,323,13.0\n129,324,13.5\n129,325,6.0\n129,326,5.5\n129,327,5.0\n129,328,4.5\n129,329,4.0\n129,330,4.5\n129,331,5.0\n129,332,5.5\n129,333,6.0\n129,334,6.5\n129,335,7.0\n129,336,7.5\n129,337,8.0\n129,338,8.5\n129,339,9.0\n129,340,9.5\n129,341,10.0\n129,342,10.5\n129,343,11.0\n129,344,11.5\n129,345,12.0\n129,346,12.5\n129,347,13.0\n129,348,13.5\n129,349,14.0\n129,350,6.5\n129,351,6.0\n129,352,5.5\n129,353,5.0\n129,354,4.5\n129,355,5.0\n129,356,5.5\n129,357,6.0\n129,358,6.5\n129,359,7.0\n129,360,7.5\n129,361,8.0\n129,362,8.5\n129,363,9.0\n129,364,9.5\n129,365,10.0\n129,366,10.5\n129,367,11.0\n129,368,11.5\n129,369,12.0\n129,370,12.5\n129,371,13.0\n129,372,13.5\n129,373,14.0\n129,374,14.5\n129,375,7.0\n129,376,6.5\n129,377,6.0\n129,378,5.5\n129,379,5.0\n129,380,5.5\n129,381,6.0\n129,382,6.5\n129,383,7.0\n129,384,7.5\n129,385,8.0\n129,386,8.5\n129,387,9.0\n129,388,9.5\n129,389,10.0\n129,390,10.5\n129,391,11.0\n129,392,11.5\n129,393,12.0\n129,394,12.5\n129,395,13.0\n129,396,13.5\n129,397,14.0\n129,398,14.5\n129,399,15.0\n129,400,7.5\n129,401,7.0\n129,402,6.5\n129,403,6.0\n129,404,5.5\n129,405,6.0\n129,406,6.5\n129,407,7.0\n129,408,7.5\n129,409,8.0\n129,410,8.5\n129,411,9.0\n129,412,9.5\n129,413,10.0\n129,414,10.5\n129,415,11.0\n129,416,11.5\n129,417,12.0\n129,418,12.5\n129,419,13.0\n129,420,13.5\n129,421,14.0\n129,422,14.5\n129,423,15.0\n129,424,15.5\n129,425,8.0\n129,426,7.5\n129,427,7.0\n129,428,6.5\n129,429,6.0\n129,430,6.5\n129,431,7.0\n129,432,7.5\n129,433,8.0\n129,434,8.5\n129,435,9.0\n129,436,9.5\n129,437,10.0\n129,438,10.5\n129,439,11.0\n129,440,11.5\n129,441,12.0\n129,442,12.5\n129,443,13.0\n129,444,13.5\n129,445,14.0\n129,446,14.5\n129,447,15.0\n129,448,15.5\n129,449,16.0\n129,450,8.5\n129,451,8.0\n129,452,7.5\n129,453,7.0\n129,454,6.5\n129,455,7.0\n129,456,7.5\n129,457,8.0\n129,458,8.5\n129,459,9.0\n129,460,9.5\n129,461,10.0\n129,462,10.5\n129,463,11.0\n129,464,11.5\n129,465,12.0\n129,466,12.5\n129,467,13.0\n129,468,13.5\n129,469,14.0\n129,470,14.5\n129,471,15.0\n129,472,15.5\n129,473,16.0\n129,474,16.5\n129,475,9.0\n129,476,8.5\n129,477,8.0\n129,478,7.5\n129,479,7.0\n129,480,7.5\n129,481,8.0\n129,482,8.5\n129,483,9.0\n129,484,9.5\n129,485,10.0\n129,486,10.5\n129,487,11.0\n129,488,11.5\n129,489,12.0\n129,490,12.5\n129,491,13.0\n129,492,13.5\n129,493,14.0\n129,494,14.5\n129,495,15.0\n129,496,15.5\n129,497,16.0\n129,498,16.5\n129,499,17.0\n129,500,9.5\n129,501,9.0\n129,502,8.5\n129,503,8.0\n129,504,7.5\n129,505,8.0\n129,506,8.5\n129,507,9.0\n129,508,9.5\n129,509,10.0\n129,510,10.5\n129,511,11.0\n129,512,11.5\n129,513,12.0\n129,514,12.5\n129,515,13.0\n129,516,13.5\n129,517,14.0\n129,518,14.5\n129,519,15.0\n129,520,15.5\n129,521,16.0\n129,522,16.5\n129,523,17.0\n129,524,17.5\n129,525,10.0\n129,526,9.5\n129,527,9.0\n129,528,8.5\n129,529,8.0\n129,530,8.5\n129,531,9.0\n129,532,9.5\n129,533,10.0\n129,534,10.5\n129,535,11.0\n129,536,11.5\n129,537,12.0\n129,538,12.5\n129,539,13.0\n129,540,13.5\n129,541,14.0\n129,542,14.5\n129,543,15.0\n129,544,15.5\n129,545,16.0\n129,546,16.5\n129,547,17.0\n129,548,17.5\n129,549,18.0\n129,550,10.5\n129,551,10.0\n129,552,9.5\n129,553,9.0\n129,554,8.5\n129,555,9.0\n129,556,9.5\n129,557,10.0\n129,558,10.5\n129,559,11.0\n129,560,11.5\n129,561,12.0\n129,562,12.5\n129,563,13.0\n129,564,13.5\n129,565,14.0\n129,566,14.5\n129,567,15.0\n129,568,15.5\n129,569,16.0\n129,570,16.5\n129,571,17.0\n129,572,17.5\n129,573,18.0\n129,574,18.5\n129,575,11.0\n129,576,10.5\n129,577,10.0\n129,578,9.5\n129,579,9.0\n129,580,9.5\n129,581,10.0\n129,582,10.5\n129,583,11.0\n129,584,11.5\n129,585,12.0\n129,586,12.5\n129,587,13.0\n129,588,13.5\n129,589,14.0\n129,590,14.5\n129,591,15.0\n129,592,15.5\n129,593,16.0\n129,594,16.5\n129,595,17.0\n129,596,17.5\n129,597,18.0\n129,598,18.5\n129,599,19.0\n129,600,11.5\n129,601,11.0\n129,602,10.5\n129,603,10.0\n129,604,9.5\n129,605,10.0\n129,606,10.5\n129,607,11.0\n129,608,11.5\n129,609,12.0\n129,610,12.5\n129,611,13.0\n129,612,13.5\n129,613,14.0\n129,614,14.5\n129,615,15.0\n129,616,15.5\n129,617,16.0\n129,618,16.5\n129,619,17.0\n129,620,17.5\n129,621,18.0\n129,622,18.5\n129,623,19.0\n129,624,19.5\n130,0,5.0\n130,1,4.5\n130,2,4.0\n130,3,3.5\n130,4,3.0\n130,5,2.5\n130,6,3.0\n130,7,3.5\n130,8,4.0\n130,9,4.5\n130,10,5.0\n130,11,5.5\n130,12,6.0\n130,13,6.5\n130,14,7.0\n130,15,7.5\n130,16,8.0\n130,17,8.5\n130,18,9.0\n130,19,9.5\n130,20,10.0\n130,21,10.5\n130,22,11.0\n130,23,11.5\n130,24,12.0\n130,25,4.5\n130,26,4.0\n130,27,3.5\n130,28,3.0\n130,29,2.5\n130,30,2.0\n130,31,2.5\n130,32,3.0\n130,33,3.5\n130,34,4.0\n130,35,4.5\n130,36,5.0\n130,37,5.5\n130,38,6.0\n130,39,6.5\n130,40,7.0\n130,41,7.5\n130,42,8.0\n130,43,8.5\n130,44,9.0\n130,45,9.5\n130,46,10.0\n130,47,10.5\n130,48,11.0\n130,49,11.5\n130,50,4.0\n130,51,3.5\n130,52,3.0\n130,53,2.5\n130,54,2.0\n130,55,1.5\n130,56,2.0\n130,57,2.5\n130,58,3.0\n130,59,3.5\n130,60,4.0\n130,61,4.5\n130,62,5.0\n130,63,5.5\n130,64,6.0\n130,65,6.5\n130,66,7.0\n130,67,7.5\n130,68,8.0\n130,69,8.5\n130,70,9.0\n130,71,9.5\n130,72,10.0\n130,73,10.5\n130,74,11.0\n130,75,3.5\n130,76,3.0\n130,77,2.5\n130,78,2.0\n130,79,1.5\n130,80,1.0\n130,81,1.5\n130,82,2.0\n130,83,2.5\n130,84,3.0\n130,85,3.5\n130,86,4.0\n130,87,4.5\n130,88,5.0\n130,89,5.5\n130,90,6.0\n130,91,6.5\n130,92,7.0\n130,93,7.5\n130,94,8.0\n130,95,8.5\n130,96,9.0\n130,97,9.5\n130,98,10.0\n130,99,10.5\n130,100,3.0\n130,101,2.5\n130,102,2.0\n130,103,1.5\n130,104,1.0\n130,105,0.5\n130,106,1.0\n130,107,1.5\n130,108,2.0\n130,109,2.5\n130,110,3.0\n130,111,3.5\n130,112,4.0\n130,113,4.5\n130,114,5.0\n130,115,5.5\n130,116,6.0\n130,117,6.5\n130,118,7.0\n130,119,7.5\n130,120,8.0\n130,121,8.5\n130,122,9.0\n130,123,9.5\n130,124,10.0\n130,125,2.5\n130,126,2.0\n130,127,1.5\n130,128,1.0\n130,129,0.5\n130,130,0\n130,131,0.5\n130,132,1.0\n130,133,1.5\n130,134,2.0\n130,135,2.5\n130,136,3.0\n130,137,3.5\n130,138,4.0\n130,139,4.5\n130,140,5.0\n130,141,5.5\n130,142,6.0\n130,143,6.5\n130,144,7.0\n130,145,7.5\n130,146,8.0\n130,147,8.5\n130,148,9.0\n130,149,9.5\n130,150,3.0\n130,151,2.5\n130,152,2.0\n130,153,1.5\n130,154,1.0\n130,155,0.5\n130,156,1.0\n130,157,1.5\n130,158,2.0\n130,159,2.5\n130,160,3.0\n130,161,3.5\n130,162,4.0\n130,163,4.5\n130,164,5.0\n130,165,5.5\n130,166,6.0\n130,167,6.5\n130,168,7.0\n130,169,7.5\n130,170,8.0\n130,171,8.5\n130,172,9.0\n130,173,9.5\n130,174,10.0\n130,175,3.5\n130,176,3.0\n130,177,2.5\n130,178,2.0\n130,179,1.5\n130,180,1.0\n130,181,1.5\n130,182,2.0\n130,183,2.5\n130,184,3.0\n130,185,3.5\n130,186,4.0\n130,187,4.5\n130,188,5.0\n130,189,5.5\n130,190,6.0\n130,191,6.5\n130,192,7.0\n130,193,7.5\n130,194,8.0\n130,195,8.5\n130,196,9.0\n130,197,9.5\n130,198,10.0\n130,199,10.5\n130,200,4.0\n130,201,3.5\n130,202,3.0\n130,203,2.5\n130,204,2.0\n130,205,1.5\n130,206,2.0\n130,207,2.5\n130,208,3.0\n130,209,3.5\n130,210,4.0\n130,211,4.5\n130,212,5.0\n130,213,5.5\n130,214,6.0\n130,215,6.5\n130,216,7.0\n130,217,7.5\n130,218,8.0\n130,219,8.5\n130,220,9.0\n130,221,9.5\n130,222,10.0\n130,223,10.5\n130,224,11.0\n130,225,4.5\n130,226,4.0\n130,227,3.5\n130,228,3.0\n130,229,2.5\n130,230,2.0\n130,231,2.5\n130,232,3.0\n130,233,3.5\n130,234,4.0\n130,235,4.5\n130,236,5.0\n130,237,5.5\n130,238,6.0\n130,239,6.5\n130,240,7.0\n130,241,7.5\n130,242,8.0\n130,243,8.5\n130,244,9.0\n130,245,9.5\n130,246,10.0\n130,247,10.5\n130,248,11.0\n130,249,11.5\n130,250,5.0\n130,251,4.5\n130,252,4.0\n130,253,3.5\n130,254,3.0\n130,255,2.5\n130,256,3.0\n130,257,3.5\n130,258,4.0\n130,259,4.5\n130,260,5.0\n130,261,5.5\n130,262,6.0\n130,263,6.5\n130,264,7.0\n130,265,7.5\n130,266,8.0\n130,267,8.5\n130,268,9.0\n130,269,9.5\n130,270,10.0\n130,271,10.5\n130,272,11.0\n130,273,11.5\n130,274,12.0\n130,275,5.5\n130,276,5.0\n130,277,4.5\n130,278,4.0\n130,279,3.5\n130,280,3.0\n130,281,3.5\n130,282,4.0\n130,283,4.5\n130,284,5.0\n130,285,5.5\n130,286,6.0\n130,287,6.5\n130,288,7.0\n130,289,7.5\n130,290,8.0\n130,291,8.5\n130,292,9.0\n130,293,9.5\n130,294,10.0\n130,295,10.5\n130,296,11.0\n130,297,11.5\n130,298,12.0\n130,299,12.5\n130,300,6.0\n130,301,5.5\n130,302,5.0\n130,303,4.5\n130,304,4.0\n130,305,3.5\n130,306,4.0\n130,307,4.5\n130,308,5.0\n130,309,5.5\n130,310,6.0\n130,311,6.5\n130,312,7.0\n130,313,7.5\n130,314,8.0\n130,315,8.5\n130,316,9.0\n130,317,9.5\n130,318,10.0\n130,319,10.5\n130,320,11.0\n130,321,11.5\n130,322,12.0\n130,323,12.5\n130,324,13.0\n130,325,6.5\n130,326,6.0\n130,327,5.5\n130,328,5.0\n130,329,4.5\n130,330,4.0\n130,331,4.5\n130,332,5.0\n130,333,5.5\n130,334,6.0\n130,335,6.5\n130,336,7.0\n130,337,7.5\n130,338,8.0\n130,339,8.5\n130,340,9.0\n130,341,9.5\n130,342,10.0\n130,343,10.5\n130,344,11.0\n130,345,11.5\n130,346,12.0\n130,347,12.5\n130,348,13.0\n130,349,13.5\n130,350,7.0\n130,351,6.5\n130,352,6.0\n130,353,5.5\n130,354,5.0\n130,355,4.5\n130,356,5.0\n130,357,5.5\n130,358,6.0\n130,359,6.5\n130,360,7.0\n130,361,7.5\n130,362,8.0\n130,363,8.5\n130,364,9.0\n130,365,9.5\n130,366,10.0\n130,367,10.5\n130,368,11.0\n130,369,11.5\n130,370,12.0\n130,371,12.5\n130,372,13.0\n130,373,13.5\n130,374,14.0\n130,375,7.5\n130,376,7.0\n130,377,6.5\n130,378,6.0\n130,379,5.5\n130,380,5.0\n130,381,5.5\n130,382,6.0\n130,383,6.5\n130,384,7.0\n130,385,7.5\n130,386,8.0\n130,387,8.5\n130,388,9.0\n130,389,9.5\n130,390,10.0\n130,391,10.5\n130,392,11.0\n130,393,11.5\n130,394,12.0\n130,395,12.5\n130,396,13.0\n130,397,13.5\n130,398,14.0\n130,399,14.5\n130,400,8.0\n130,401,7.5\n130,402,7.0\n130,403,6.5\n130,404,6.0\n130,405,5.5\n130,406,6.0\n130,407,6.5\n130,408,7.0\n130,409,7.5\n130,410,8.0\n130,411,8.5\n130,412,9.0\n130,413,9.5\n130,414,10.0\n130,415,10.5\n130,416,11.0\n130,417,11.5\n130,418,12.0\n130,419,12.5\n130,420,13.0\n130,421,13.5\n130,422,14.0\n130,423,14.5\n130,424,15.0\n130,425,8.5\n130,426,8.0\n130,427,7.5\n130,428,7.0\n130,429,6.5\n130,430,6.0\n130,431,6.5\n130,432,7.0\n130,433,7.5\n130,434,8.0\n130,435,8.5\n130,436,9.0\n130,437,9.5\n130,438,10.0\n130,439,10.5\n130,440,11.0\n130,441,11.5\n130,442,12.0\n130,443,12.5\n130,444,13.0\n130,445,13.5\n130,446,14.0\n130,447,14.5\n130,448,15.0\n130,449,15.5\n130,450,9.0\n130,451,8.5\n130,452,8.0\n130,453,7.5\n130,454,7.0\n130,455,6.5\n130,456,7.0\n130,457,7.5\n130,458,8.0\n130,459,8.5\n130,460,9.0\n130,461,9.5\n130,462,10.0\n130,463,10.5\n130,464,11.0\n130,465,11.5\n130,466,12.0\n130,467,12.5\n130,468,13.0\n130,469,13.5\n130,470,14.0\n130,471,14.5\n130,472,15.0\n130,473,15.5\n130,474,16.0\n130,475,9.5\n130,476,9.0\n130,477,8.5\n130,478,8.0\n130,479,7.5\n130,480,7.0\n130,481,7.5\n130,482,8.0\n130,483,8.5\n130,484,9.0\n130,485,9.5\n130,486,10.0\n130,487,10.5\n130,488,11.0\n130,489,11.5\n130,490,12.0\n130,491,12.5\n130,492,13.0\n130,493,13.5\n130,494,14.0\n130,495,14.5\n130,496,15.0\n130,497,15.5\n130,498,16.0\n130,499,16.5\n130,500,10.0\n130,501,9.5\n130,502,9.0\n130,503,8.5\n130,504,8.0\n130,505,7.5\n130,506,8.0\n130,507,8.5\n130,508,9.0\n130,509,9.5\n130,510,10.0\n130,511,10.5\n130,512,11.0\n130,513,11.5\n130,514,12.0\n130,515,12.5\n130,516,13.0\n130,517,13.5\n130,518,14.0\n130,519,14.5\n130,520,15.0\n130,521,15.5\n130,522,16.0\n130,523,16.5\n130,524,17.0\n130,525,10.5\n130,526,10.0\n130,527,9.5\n130,528,9.0\n130,529,8.5\n130,530,8.0\n130,531,8.5\n130,532,9.0\n130,533,9.5\n130,534,10.0\n130,535,10.5\n130,536,11.0\n130,537,11.5\n130,538,12.0\n130,539,12.5\n130,540,13.0\n130,541,13.5\n130,542,14.0\n130,543,14.5\n130,544,15.0\n130,545,15.5\n130,546,16.0\n130,547,16.5\n130,548,17.0\n130,549,17.5\n130,550,11.0\n130,551,10.5\n130,552,10.0\n130,553,9.5\n130,554,9.0\n130,555,8.5\n130,556,9.0\n130,557,9.5\n130,558,10.0\n130,559,10.5\n130,560,11.0\n130,561,11.5\n130,562,12.0\n130,563,12.5\n130,564,13.0\n130,565,13.5\n130,566,14.0\n130,567,14.5\n130,568,15.0\n130,569,15.5\n130,570,16.0\n130,571,16.5\n130,572,17.0\n130,573,17.5\n130,574,18.0\n130,575,11.5\n130,576,11.0\n130,577,10.5\n130,578,10.0\n130,579,9.5\n130,580,9.0\n130,581,9.5\n130,582,10.0\n130,583,10.5\n130,584,11.0\n130,585,11.5\n130,586,12.0\n130,587,12.5\n130,588,13.0\n130,589,13.5\n130,590,14.0\n130,591,14.5\n130,592,15.0\n130,593,15.5\n130,594,16.0\n130,595,16.5\n130,596,17.0\n130,597,17.5\n130,598,18.0\n130,599,18.5\n130,600,12.0\n130,601,11.5\n130,602,11.0\n130,603,10.5\n130,604,10.0\n130,605,9.5\n130,606,10.0\n130,607,10.5\n130,608,11.0\n130,609,11.5\n130,610,12.0\n130,611,12.5\n130,612,13.0\n130,613,13.5\n130,614,14.0\n130,615,14.5\n130,616,15.0\n130,617,15.5\n130,618,16.0\n130,619,16.5\n130,620,17.0\n130,621,17.5\n130,622,18.0\n130,623,18.5\n130,624,19.0\n131,0,5.5\n131,1,5.0\n131,2,4.5\n131,3,4.0\n131,4,3.5\n131,5,3.0\n131,6,2.5\n131,7,3.0\n131,8,3.5\n131,9,4.0\n131,10,4.5\n131,11,5.0\n131,12,5.5\n131,13,6.0\n131,14,6.5\n131,15,7.0\n131,16,7.5\n131,17,8.0\n131,18,8.5\n131,19,9.0\n131,20,9.5\n131,21,10.0\n131,22,10.5\n131,23,11.0\n131,24,11.5\n131,25,5.0\n131,26,4.5\n131,27,4.0\n131,28,3.5\n131,29,3.0\n131,30,2.5\n131,31,2.0\n131,32,2.5\n131,33,3.0\n131,34,3.5\n131,35,4.0\n131,36,4.5\n131,37,5.0\n131,38,5.5\n131,39,6.0\n131,40,6.5\n131,41,7.0\n131,42,7.5\n131,43,8.0\n131,44,8.5\n131,45,9.0\n131,46,9.5\n131,47,10.0\n131,48,10.5\n131,49,11.0\n131,50,4.5\n131,51,4.0\n131,52,3.5\n131,53,3.0\n131,54,2.5\n131,55,2.0\n131,56,1.5\n131,57,2.0\n131,58,2.5\n131,59,3.0\n131,60,3.5\n131,61,4.0\n131,62,4.5\n131,63,5.0\n131,64,5.5\n131,65,6.0\n131,66,6.5\n131,67,7.0\n131,68,7.5\n131,69,8.0\n131,70,8.5\n131,71,9.0\n131,72,9.5\n131,73,10.0\n131,74,10.5\n131,75,4.0\n131,76,3.5\n131,77,3.0\n131,78,2.5\n131,79,2.0\n131,80,1.5\n131,81,1.0\n131,82,1.5\n131,83,2.0\n131,84,2.5\n131,85,3.0\n131,86,3.5\n131,87,4.0\n131,88,4.5\n131,89,5.0\n131,90,5.5\n131,91,6.0\n131,92,6.5\n131,93,7.0\n131,94,7.5\n131,95,8.0\n131,96,8.5\n131,97,9.0\n131,98,9.5\n131,99,10.0\n131,100,3.5\n131,101,3.0\n131,102,2.5\n131,103,2.0\n131,104,1.5\n131,105,1.0\n131,106,0.5\n131,107,1.0\n131,108,1.5\n131,109,2.0\n131,110,2.5\n131,111,3.0\n131,112,3.5\n131,113,4.0\n131,114,4.5\n131,115,5.0\n131,116,5.5\n131,117,6.0\n131,118,6.5\n131,119,7.0\n131,120,7.5\n131,121,8.0\n131,122,8.5\n131,123,9.0\n131,124,9.5\n131,125,3.0\n131,126,2.5\n131,127,2.0\n131,128,1.5\n131,129,1.0\n131,130,0.5\n131,131,0\n131,132,0.5\n131,133,1.0\n131,134,1.5\n131,135,2.0\n131,136,2.5\n131,137,3.0\n131,138,3.5\n131,139,4.0\n131,140,4.5\n131,141,5.0\n131,142,5.5\n131,143,6.0\n131,144,6.5\n131,145,7.0\n131,146,7.5\n131,147,8.0\n131,148,8.5\n131,149,9.0\n131,150,3.5\n131,151,3.0\n131,152,2.5\n131,153,2.0\n131,154,1.5\n131,155,1.0\n131,156,0.5\n131,157,1.0\n131,158,1.5\n131,159,2.0\n131,160,2.5\n131,161,3.0\n131,162,3.5\n131,163,4.0\n131,164,4.5\n131,165,5.0\n131,166,5.5\n131,167,6.0\n131,168,6.5\n131,169,7.0\n131,170,7.5\n131,171,8.0\n131,172,8.5\n131,173,9.0\n131,174,9.5\n131,175,4.0\n131,176,3.5\n131,177,3.0\n131,178,2.5\n131,179,2.0\n131,180,1.5\n131,181,1.0\n131,182,1.5\n131,183,2.0\n131,184,2.5\n131,185,3.0\n131,186,3.5\n131,187,4.0\n131,188,4.5\n131,189,5.0\n131,190,5.5\n131,191,6.0\n131,192,6.5\n131,193,7.0\n131,194,7.5\n131,195,8.0\n131,196,8.5\n131,197,9.0\n131,198,9.5\n131,199,10.0\n131,200,4.5\n131,201,4.0\n131,202,3.5\n131,203,3.0\n131,204,2.5\n131,205,2.0\n131,206,1.5\n131,207,2.0\n131,208,2.5\n131,209,3.0\n131,210,3.5\n131,211,4.0\n131,212,4.5\n131,213,5.0\n131,214,5.5\n131,215,6.0\n131,216,6.5\n131,217,7.0\n131,218,7.5\n131,219,8.0\n131,220,8.5\n131,221,9.0\n131,222,9.5\n131,223,10.0\n131,224,10.5\n131,225,5.0\n131,226,4.5\n131,227,4.0\n131,228,3.5\n131,229,3.0\n131,230,2.5\n131,231,2.0\n131,232,2.5\n131,233,3.0\n131,234,3.5\n131,235,4.0\n131,236,4.5\n131,237,5.0\n131,238,5.5\n131,239,6.0\n131,240,6.5\n131,241,7.0\n131,242,7.5\n131,243,8.0\n131,244,8.5\n131,245,9.0\n131,246,9.5\n131,247,10.0\n131,248,10.5\n131,249,11.0\n131,250,5.5\n131,251,5.0\n131,252,4.5\n131,253,4.0\n131,254,3.5\n131,255,3.0\n131,256,2.5\n131,257,3.0\n131,258,3.5\n131,259,4.0\n131,260,4.5\n131,261,5.0\n131,262,5.5\n131,263,6.0\n131,264,6.5\n131,265,7.0\n131,266,7.5\n131,267,8.0\n131,268,8.5\n131,269,9.0\n131,270,9.5\n131,271,10.0\n131,272,10.5\n131,273,11.0\n131,274,11.5\n131,275,6.0\n131,276,5.5\n131,277,5.0\n131,278,4.5\n131,279,4.0\n131,280,3.5\n131,281,3.0\n131,282,3.5\n131,283,4.0\n131,284,4.5\n131,285,5.0\n131,286,5.5\n131,287,6.0\n131,288,6.5\n131,289,7.0\n131,290,7.5\n131,291,8.0\n131,292,8.5\n131,293,9.0\n131,294,9.5\n131,295,10.0\n131,296,10.5\n131,297,11.0\n131,298,11.5\n131,299,12.0\n131,300,6.5\n131,301,6.0\n131,302,5.5\n131,303,5.0\n131,304,4.5\n131,305,4.0\n131,306,3.5\n131,307,4.0\n131,308,4.5\n131,309,5.0\n131,310,5.5\n131,311,6.0\n131,312,6.5\n131,313,7.0\n131,314,7.5\n131,315,8.0\n131,316,8.5\n131,317,9.0\n131,318,9.5\n131,319,10.0\n131,320,10.5\n131,321,11.0\n131,322,11.5\n131,323,12.0\n131,324,12.5\n131,325,7.0\n131,326,6.5\n131,327,6.0\n131,328,5.5\n131,329,5.0\n131,330,4.5\n131,331,4.0\n131,332,4.5\n131,333,5.0\n131,334,5.5\n131,335,6.0\n131,336,6.5\n131,337,7.0\n131,338,7.5\n131,339,8.0\n131,340,8.5\n131,341,9.0\n131,342,9.5\n131,343,10.0\n131,344,10.5\n131,345,11.0\n131,346,11.5\n131,347,12.0\n131,348,12.5\n131,349,13.0\n131,350,7.5\n131,351,7.0\n131,352,6.5\n131,353,6.0\n131,354,5.5\n131,355,5.0\n131,356,4.5\n131,357,5.0\n131,358,5.5\n131,359,6.0\n131,360,6.5\n131,361,7.0\n131,362,7.5\n131,363,8.0\n131,364,8.5\n131,365,9.0\n131,366,9.5\n131,367,10.0\n131,368,10.5\n131,369,11.0\n131,370,11.5\n131,371,12.0\n131,372,12.5\n131,373,13.0\n131,374,13.5\n131,375,8.0\n131,376,7.5\n131,377,7.0\n131,378,6.5\n131,379,6.0\n131,380,5.5\n131,381,5.0\n131,382,5.5\n131,383,6.0\n131,384,6.5\n131,385,7.0\n131,386,7.5\n131,387,8.0\n131,388,8.5\n131,389,9.0\n131,390,9.5\n131,391,10.0\n131,392,10.5\n131,393,11.0\n131,394,11.5\n131,395,12.0\n131,396,12.5\n131,397,13.0\n131,398,13.5\n131,399,14.0\n131,400,8.5\n131,401,8.0\n131,402,7.5\n131,403,7.0\n131,404,6.5\n131,405,6.0\n131,406,5.5\n131,407,6.0\n131,408,6.5\n131,409,7.0\n131,410,7.5\n131,411,8.0\n131,412,8.5\n131,413,9.0\n131,414,9.5\n131,415,10.0\n131,416,10.5\n131,417,11.0\n131,418,11.5\n131,419,12.0\n131,420,12.5\n131,421,13.0\n131,422,13.5\n131,423,14.0\n131,424,14.5\n131,425,9.0\n131,426,8.5\n131,427,8.0\n131,428,7.5\n131,429,7.0\n131,430,6.5\n131,431,6.0\n131,432,6.5\n131,433,7.0\n131,434,7.5\n131,435,8.0\n131,436,8.5\n131,437,9.0\n131,438,9.5\n131,439,10.0\n131,440,10.5\n131,441,11.0\n131,442,11.5\n131,443,12.0\n131,444,12.5\n131,445,13.0\n131,446,13.5\n131,447,14.0\n131,448,14.5\n131,449,15.0\n131,450,9.5\n131,451,9.0\n131,452,8.5\n131,453,8.0\n131,454,7.5\n131,455,7.0\n131,456,6.5\n131,457,7.0\n131,458,7.5\n131,459,8.0\n131,460,8.5\n131,461,9.0\n131,462,9.5\n131,463,10.0\n131,464,10.5\n131,465,11.0\n131,466,11.5\n131,467,12.0\n131,468,12.5\n131,469,13.0\n131,470,13.5\n131,471,14.0\n131,472,14.5\n131,473,15.0\n131,474,15.5\n131,475,10.0\n131,476,9.5\n131,477,9.0\n131,478,8.5\n131,479,8.0\n131,480,7.5\n131,481,7.0\n131,482,7.5\n131,483,8.0\n131,484,8.5\n131,485,9.0\n131,486,9.5\n131,487,10.0\n131,488,10.5\n131,489,11.0\n131,490,11.5\n131,491,12.0\n131,492,12.5\n131,493,13.0\n131,494,13.5\n131,495,14.0\n131,496,14.5\n131,497,15.0\n131,498,15.5\n131,499,16.0\n131,500,10.5\n131,501,10.0\n131,502,9.5\n131,503,9.0\n131,504,8.5\n131,505,8.0\n131,506,7.5\n131,507,8.0\n131,508,8.5\n131,509,9.0\n131,510,9.5\n131,511,10.0\n131,512,10.5\n131,513,11.0\n131,514,11.5\n131,515,12.0\n131,516,12.5\n131,517,13.0\n131,518,13.5\n131,519,14.0\n131,520,14.5\n131,521,15.0\n131,522,15.5\n131,523,16.0\n131,524,16.5\n131,525,11.0\n131,526,10.5\n131,527,10.0\n131,528,9.5\n131,529,9.0\n131,530,8.5\n131,531,8.0\n131,532,8.5\n131,533,9.0\n131,534,9.5\n131,535,10.0\n131,536,10.5\n131,537,11.0\n131,538,11.5\n131,539,12.0\n131,540,12.5\n131,541,13.0\n131,542,13.5\n131,543,14.0\n131,544,14.5\n131,545,15.0\n131,546,15.5\n131,547,16.0\n131,548,16.5\n131,549,17.0\n131,550,11.5\n131,551,11.0\n131,552,10.5\n131,553,10.0\n131,554,9.5\n131,555,9.0\n131,556,8.5\n131,557,9.0\n131,558,9.5\n131,559,10.0\n131,560,10.5\n131,561,11.0\n131,562,11.5\n131,563,12.0\n131,564,12.5\n131,565,13.0\n131,566,13.5\n131,567,14.0\n131,568,14.5\n131,569,15.0\n131,570,15.5\n131,571,16.0\n131,572,16.5\n131,573,17.0\n131,574,17.5\n131,575,12.0\n131,576,11.5\n131,577,11.0\n131,578,10.5\n131,579,10.0\n131,580,9.5\n131,581,9.0\n131,582,9.5\n131,583,10.0\n131,584,10.5\n131,585,11.0\n131,586,11.5\n131,587,12.0\n131,588,12.5\n131,589,13.0\n131,590,13.5\n131,591,14.0\n131,592,14.5\n131,593,15.0\n131,594,15.5\n131,595,16.0\n131,596,16.5\n131,597,17.0\n131,598,17.5\n131,599,18.0\n131,600,12.5\n131,601,12.0\n131,602,11.5\n131,603,11.0\n131,604,10.5\n131,605,10.0\n131,606,9.5\n131,607,10.0\n131,608,10.5\n131,609,11.0\n131,610,11.5\n131,611,12.0\n131,612,12.5\n131,613,13.0\n131,614,13.5\n131,615,14.0\n131,616,14.5\n131,617,15.0\n131,618,15.5\n131,619,16.0\n131,620,16.5\n131,621,17.0\n131,622,17.5\n131,623,18.0\n131,624,18.5\n132,0,6.0\n132,1,5.5\n132,2,5.0\n132,3,4.5\n132,4,4.0\n132,5,3.5\n132,6,3.0\n132,7,2.5\n132,8,3.0\n132,9,3.5\n132,10,4.0\n132,11,4.5\n132,12,5.0\n132,13,5.5\n132,14,6.0\n132,15,6.5\n132,16,7.0\n132,17,7.5\n132,18,8.0\n132,19,8.5\n132,20,9.0\n132,21,9.5\n132,22,10.0\n132,23,10.5\n132,24,11.0\n132,25,5.5\n132,26,5.0\n132,27,4.5\n132,28,4.0\n132,29,3.5\n132,30,3.0\n132,31,2.5\n132,32,2.0\n132,33,2.5\n132,34,3.0\n132,35,3.5\n132,36,4.0\n132,37,4.5\n132,38,5.0\n132,39,5.5\n132,40,6.0\n132,41,6.5\n132,42,7.0\n132,43,7.5\n132,44,8.0\n132,45,8.5\n132,46,9.0\n132,47,9.5\n132,48,10.0\n132,49,10.5\n132,50,5.0\n132,51,4.5\n132,52,4.0\n132,53,3.5\n132,54,3.0\n132,55,2.5\n132,56,2.0\n132,57,1.5\n132,58,2.0\n132,59,2.5\n132,60,3.0\n132,61,3.5\n132,62,4.0\n132,63,4.5\n132,64,5.0\n132,65,5.5\n132,66,6.0\n132,67,6.5\n132,68,7.0\n132,69,7.5\n132,70,8.0\n132,71,8.5\n132,72,9.0\n132,73,9.5\n132,74,10.0\n132,75,4.5\n132,76,4.0\n132,77,3.5\n132,78,3.0\n132,79,2.5\n132,80,2.0\n132,81,1.5\n132,82,1.0\n132,83,1.5\n132,84,2.0\n132,85,2.5\n132,86,3.0\n132,87,3.5\n132,88,4.0\n132,89,4.5\n132,90,5.0\n132,91,5.5\n132,92,6.0\n132,93,6.5\n132,94,7.0\n132,95,7.5\n132,96,8.0\n132,97,8.5\n132,98,9.0\n132,99,9.5\n132,100,4.0\n132,101,3.5\n132,102,3.0\n132,103,2.5\n132,104,2.0\n132,105,1.5\n132,106,1.0\n132,107,0.5\n132,108,1.0\n132,109,1.5\n132,110,2.0\n132,111,2.5\n132,112,3.0\n132,113,3.5\n132,114,4.0\n132,115,4.5\n132,116,5.0\n132,117,5.5\n132,118,6.0\n132,119,6.5\n132,120,7.0\n132,121,7.5\n132,122,8.0\n132,123,8.5\n132,124,9.0\n132,125,3.5\n132,126,3.0\n132,127,2.5\n132,128,2.0\n132,129,1.5\n132,130,1.0\n132,131,0.5\n132,132,0\n132,133,0.5\n132,134,1.0\n132,135,1.5\n132,136,2.0\n132,137,2.5\n132,138,3.0\n132,139,3.5\n132,140,4.0\n132,141,4.5\n132,142,5.0\n132,143,5.5\n132,144,6.0\n132,145,6.5\n132,146,7.0\n132,147,7.5\n132,148,8.0\n132,149,8.5\n132,150,4.0\n132,151,3.5\n132,152,3.0\n132,153,2.5\n132,154,2.0\n132,155,1.5\n132,156,1.0\n132,157,0.5\n132,158,1.0\n132,159,1.5\n132,160,2.0\n132,161,2.5\n132,162,3.0\n132,163,3.5\n132,164,4.0\n132,165,4.5\n132,166,5.0\n132,167,5.5\n132,168,6.0\n132,169,6.5\n132,170,7.0\n132,171,7.5\n132,172,8.0\n132,173,8.5\n132,174,9.0\n132,175,4.5\n132,176,4.0\n132,177,3.5\n132,178,3.0\n132,179,2.5\n132,180,2.0\n132,181,1.5\n132,182,1.0\n132,183,1.5\n132,184,2.0\n132,185,2.5\n132,186,3.0\n132,187,3.5\n132,188,4.0\n132,189,4.5\n132,190,5.0\n132,191,5.5\n132,192,6.0\n132,193,6.5\n132,194,7.0\n132,195,7.5\n132,196,8.0\n132,197,8.5\n132,198,9.0\n132,199,9.5\n132,200,5.0\n132,201,4.5\n132,202,4.0\n132,203,3.5\n132,204,3.0\n132,205,2.5\n132,206,2.0\n132,207,1.5\n132,208,2.0\n132,209,2.5\n132,210,3.0\n132,211,3.5\n132,212,4.0\n132,213,4.5\n132,214,5.0\n132,215,5.5\n132,216,6.0\n132,217,6.5\n132,218,7.0\n132,219,7.5\n132,220,8.0\n132,221,8.5\n132,222,9.0\n132,223,9.5\n132,224,10.0\n132,225,5.5\n132,226,5.0\n132,227,4.5\n132,228,4.0\n132,229,3.5\n132,230,3.0\n132,231,2.5\n132,232,2.0\n132,233,2.5\n132,234,3.0\n132,235,3.5\n132,236,4.0\n132,237,4.5\n132,238,5.0\n132,239,5.5\n132,240,6.0\n132,241,6.5\n132,242,7.0\n132,243,7.5\n132,244,8.0\n132,245,8.5\n132,246,9.0\n132,247,9.5\n132,248,10.0\n132,249,10.5\n132,250,6.0\n132,251,5.5\n132,252,5.0\n132,253,4.5\n132,254,4.0\n132,255,3.5\n132,256,3.0\n132,257,2.5\n132,258,3.0\n132,259,3.5\n132,260,4.0\n132,261,4.5\n132,262,5.0\n132,263,5.5\n132,264,6.0\n132,265,6.5\n132,266,7.0\n132,267,7.5\n132,268,8.0\n132,269,8.5\n132,270,9.0\n132,271,9.5\n132,272,10.0\n132,273,10.5\n132,274,11.0\n132,275,6.5\n132,276,6.0\n132,277,5.5\n132,278,5.0\n132,279,4.5\n132,280,4.0\n132,281,3.5\n132,282,3.0\n132,283,3.5\n132,284,4.0\n132,285,4.5\n132,286,5.0\n132,287,5.5\n132,288,6.0\n132,289,6.5\n132,290,7.0\n132,291,7.5\n132,292,8.0\n132,293,8.5\n132,294,9.0\n132,295,9.5\n132,296,10.0\n132,297,10.5\n132,298,11.0\n132,299,11.5\n132,300,7.0\n132,301,6.5\n132,302,6.0\n132,303,5.5\n132,304,5.0\n132,305,4.5\n132,306,4.0\n132,307,3.5\n132,308,4.0\n132,309,4.5\n132,310,5.0\n132,311,5.5\n132,312,6.0\n132,313,6.5\n132,314,7.0\n132,315,7.5\n132,316,8.0\n132,317,8.5\n132,318,9.0\n132,319,9.5\n132,320,10.0\n132,321,10.5\n132,322,11.0\n132,323,11.5\n132,324,12.0\n132,325,7.5\n132,326,7.0\n132,327,6.5\n132,328,6.0\n132,329,5.5\n132,330,5.0\n132,331,4.5\n132,332,4.0\n132,333,4.5\n132,334,5.0\n132,335,5.5\n132,336,6.0\n132,337,6.5\n132,338,7.0\n132,339,7.5\n132,340,8.0\n132,341,8.5\n132,342,9.0\n132,343,9.5\n132,344,10.0\n132,345,10.5\n132,346,11.0\n132,347,11.5\n132,348,12.0\n132,349,12.5\n132,350,8.0\n132,351,7.5\n132,352,7.0\n132,353,6.5\n132,354,6.0\n132,355,5.5\n132,356,5.0\n132,357,4.5\n132,358,5.0\n132,359,5.5\n132,360,6.0\n132,361,6.5\n132,362,7.0\n132,363,7.5\n132,364,8.0\n132,365,8.5\n132,366,9.0\n132,367,9.5\n132,368,10.0\n132,369,10.5\n132,370,11.0\n132,371,11.5\n132,372,12.0\n132,373,12.5\n132,374,13.0\n132,375,8.5\n132,376,8.0\n132,377,7.5\n132,378,7.0\n132,379,6.5\n132,380,6.0\n132,381,5.5\n132,382,5.0\n132,383,5.5\n132,384,6.0\n132,385,6.5\n132,386,7.0\n132,387,7.5\n132,388,8.0\n132,389,8.5\n132,390,9.0\n132,391,9.5\n132,392,10.0\n132,393,10.5\n132,394,11.0\n132,395,11.5\n132,396,12.0\n132,397,12.5\n132,398,13.0\n132,399,13.5\n132,400,9.0\n132,401,8.5\n132,402,8.0\n132,403,7.5\n132,404,7.0\n132,405,6.5\n132,406,6.0\n132,407,5.5\n132,408,6.0\n132,409,6.5\n132,410,7.0\n132,411,7.5\n132,412,8.0\n132,413,8.5\n132,414,9.0\n132,415,9.5\n132,416,10.0\n132,417,10.5\n132,418,11.0\n132,419,11.5\n132,420,12.0\n132,421,12.5\n132,422,13.0\n132,423,13.5\n132,424,14.0\n132,425,9.5\n132,426,9.0\n132,427,8.5\n132,428,8.0\n132,429,7.5\n132,430,7.0\n132,431,6.5\n132,432,6.0\n132,433,6.5\n132,434,7.0\n132,435,7.5\n132,436,8.0\n132,437,8.5\n132,438,9.0\n132,439,9.5\n132,440,10.0\n132,441,10.5\n132,442,11.0\n132,443,11.5\n132,444,12.0\n132,445,12.5\n132,446,13.0\n132,447,13.5\n132,448,14.0\n132,449,14.5\n132,450,10.0\n132,451,9.5\n132,452,9.0\n132,453,8.5\n132,454,8.0\n132,455,7.5\n132,456,7.0\n132,457,6.5\n132,458,7.0\n132,459,7.5\n132,460,8.0\n132,461,8.5\n132,462,9.0\n132,463,9.5\n132,464,10.0\n132,465,10.5\n132,466,11.0\n132,467,11.5\n132,468,12.0\n132,469,12.5\n132,470,13.0\n132,471,13.5\n132,472,14.0\n132,473,14.5\n132,474,15.0\n132,475,10.5\n132,476,10.0\n132,477,9.5\n132,478,9.0\n132,479,8.5\n132,480,8.0\n132,481,7.5\n132,482,7.0\n132,483,7.5\n132,484,8.0\n132,485,8.5\n132,486,9.0\n132,487,9.5\n132,488,10.0\n132,489,10.5\n132,490,11.0\n132,491,11.5\n132,492,12.0\n132,493,12.5\n132,494,13.0\n132,495,13.5\n132,496,14.0\n132,497,14.5\n132,498,15.0\n132,499,15.5\n132,500,11.0\n132,501,10.5\n132,502,10.0\n132,503,9.5\n132,504,9.0\n132,505,8.5\n132,506,8.0\n132,507,7.5\n132,508,8.0\n132,509,8.5\n132,510,9.0\n132,511,9.5\n132,512,10.0\n132,513,10.5\n132,514,11.0\n132,515,11.5\n132,516,12.0\n132,517,12.5\n132,518,13.0\n132,519,13.5\n132,520,14.0\n132,521,14.5\n132,522,15.0\n132,523,15.5\n132,524,16.0\n132,525,11.5\n132,526,11.0\n132,527,10.5\n132,528,10.0\n132,529,9.5\n132,530,9.0\n132,531,8.5\n132,532,8.0\n132,533,8.5\n132,534,9.0\n132,535,9.5\n132,536,10.0\n132,537,10.5\n132,538,11.0\n132,539,11.5\n132,540,12.0\n132,541,12.5\n132,542,13.0\n132,543,13.5\n132,544,14.0\n132,545,14.5\n132,546,15.0\n132,547,15.5\n132,548,16.0\n132,549,16.5\n132,550,12.0\n132,551,11.5\n132,552,11.0\n132,553,10.5\n132,554,10.0\n132,555,9.5\n132,556,9.0\n132,557,8.5\n132,558,9.0\n132,559,9.5\n132,560,10.0\n132,561,10.5\n132,562,11.0\n132,563,11.5\n132,564,12.0\n132,565,12.5\n132,566,13.0\n132,567,13.5\n132,568,14.0\n132,569,14.5\n132,570,15.0\n132,571,15.5\n132,572,16.0\n132,573,16.5\n132,574,17.0\n132,575,12.5\n132,576,12.0\n132,577,11.5\n132,578,11.0\n132,579,10.5\n132,580,10.0\n132,581,9.5\n132,582,9.0\n132,583,9.5\n132,584,10.0\n132,585,10.5\n132,586,11.0\n132,587,11.5\n132,588,12.0\n132,589,12.5\n132,590,13.0\n132,591,13.5\n132,592,14.0\n132,593,14.5\n132,594,15.0\n132,595,15.5\n132,596,16.0\n132,597,16.5\n132,598,17.0\n132,599,17.5\n132,600,13.0\n132,601,12.5\n132,602,12.0\n132,603,11.5\n132,604,11.0\n132,605,10.5\n132,606,10.0\n132,607,9.5\n132,608,10.0\n132,609,10.5\n132,610,11.0\n132,611,11.5\n132,612,12.0\n132,613,12.5\n132,614,13.0\n132,615,13.5\n132,616,14.0\n132,617,14.5\n132,618,15.0\n132,619,15.5\n132,620,16.0\n132,621,16.5\n132,622,17.0\n132,623,17.5\n132,624,18.0\n133,0,6.5\n133,1,6.0\n133,2,5.5\n133,3,5.0\n133,4,4.5\n133,5,4.0\n133,6,3.5\n133,7,3.0\n133,8,2.5\n133,9,3.0\n133,10,3.5\n133,11,4.0\n133,12,4.5\n133,13,5.0\n133,14,5.5\n133,15,6.0\n133,16,6.5\n133,17,7.0\n133,18,7.5\n133,19,8.0\n133,20,8.5\n133,21,9.0\n133,22,9.5\n133,23,10.0\n133,24,10.5\n133,25,6.0\n133,26,5.5\n133,27,5.0\n133,28,4.5\n133,29,4.0\n133,30,3.5\n133,31,3.0\n133,32,2.5\n133,33,2.0\n133,34,2.5\n133,35,3.0\n133,36,3.5\n133,37,4.0\n133,38,4.5\n133,39,5.0\n133,40,5.5\n133,41,6.0\n133,42,6.5\n133,43,7.0\n133,44,7.5\n133,45,8.0\n133,46,8.5\n133,47,9.0\n133,48,9.5\n133,49,10.0\n133,50,5.5\n133,51,5.0\n133,52,4.5\n133,53,4.0\n133,54,3.5\n133,55,3.0\n133,56,2.5\n133,57,2.0\n133,58,1.5\n133,59,2.0\n133,60,2.5\n133,61,3.0\n133,62,3.5\n133,63,4.0\n133,64,4.5\n133,65,5.0\n133,66,5.5\n133,67,6.0\n133,68,6.5\n133,69,7.0\n133,70,7.5\n133,71,8.0\n133,72,8.5\n133,73,9.0\n133,74,9.5\n133,75,5.0\n133,76,4.5\n133,77,4.0\n133,78,3.5\n133,79,3.0\n133,80,2.5\n133,81,2.0\n133,82,1.5\n133,83,1.0\n133,84,1.5\n133,85,2.0\n133,86,2.5\n133,87,3.0\n133,88,3.5\n133,89,4.0\n133,90,4.5\n133,91,5.0\n133,92,5.5\n133,93,6.0\n133,94,6.5\n133,95,7.0\n133,96,7.5\n133,97,8.0\n133,98,8.5\n133,99,9.0\n133,100,4.5\n133,101,4.0\n133,102,3.5\n133,103,3.0\n133,104,2.5\n133,105,2.0\n133,106,1.5\n133,107,1.0\n133,108,0.5\n133,109,1.0\n133,110,1.5\n133,111,2.0\n133,112,2.5\n133,113,3.0\n133,114,3.5\n133,115,4.0\n133,116,4.5\n133,117,5.0\n133,118,5.5\n133,119,6.0\n133,120,6.5\n133,121,7.0\n133,122,7.5\n133,123,8.0\n133,124,8.5\n133,125,4.0\n133,126,3.5\n133,127,3.0\n133,128,2.5\n133,129,2.0\n133,130,1.5\n133,131,1.0\n133,132,0.5\n133,133,0\n133,134,0.5\n133,135,1.0\n133,136,1.5\n133,137,2.0\n133,138,2.5\n133,139,3.0\n133,140,3.5\n133,141,4.0\n133,142,4.5\n133,143,5.0\n133,144,5.5\n133,145,6.0\n133,146,6.5\n133,147,7.0\n133,148,7.5\n133,149,8.0\n133,150,4.5\n133,151,4.0\n133,152,3.5\n133,153,3.0\n133,154,2.5\n133,155,2.0\n133,156,1.5\n133,157,1.0\n133,158,0.5\n133,159,1.0\n133,160,1.5\n133,161,2.0\n133,162,2.5\n133,163,3.0\n133,164,3.5\n133,165,4.0\n133,166,4.5\n133,167,5.0\n133,168,5.5\n133,169,6.0\n133,170,6.5\n133,171,7.0\n133,172,7.5\n133,173,8.0\n133,174,8.5\n133,175,5.0\n133,176,4.5\n133,177,4.0\n133,178,3.5\n133,179,3.0\n133,180,2.5\n133,181,2.0\n133,182,1.5\n133,183,1.0\n133,184,1.5\n133,185,2.0\n133,186,2.5\n133,187,3.0\n133,188,3.5\n133,189,4.0\n133,190,4.5\n133,191,5.0\n133,192,5.5\n133,193,6.0\n133,194,6.5\n133,195,7.0\n133,196,7.5\n133,197,8.0\n133,198,8.5\n133,199,9.0\n133,200,5.5\n133,201,5.0\n133,202,4.5\n133,203,4.0\n133,204,3.5\n133,205,3.0\n133,206,2.5\n133,207,2.0\n133,208,1.5\n133,209,2.0\n133,210,2.5\n133,211,3.0\n133,212,3.5\n133,213,4.0\n133,214,4.5\n133,215,5.0\n133,216,5.5\n133,217,6.0\n133,218,6.5\n133,219,7.0\n133,220,7.5\n133,221,8.0\n133,222,8.5\n133,223,9.0\n133,224,9.5\n133,225,6.0\n133,226,5.5\n133,227,5.0\n133,228,4.5\n133,229,4.0\n133,230,3.5\n133,231,3.0\n133,232,2.5\n133,233,2.0\n133,234,2.5\n133,235,3.0\n133,236,3.5\n133,237,4.0\n133,238,4.5\n133,239,5.0\n133,240,5.5\n133,241,6.0\n133,242,6.5\n133,243,7.0\n133,244,7.5\n133,245,8.0\n133,246,8.5\n133,247,9.0\n133,248,9.5\n133,249,10.0\n133,250,6.5\n133,251,6.0\n133,252,5.5\n133,253,5.0\n133,254,4.5\n133,255,4.0\n133,256,3.5\n133,257,3.0\n133,258,2.5\n133,259,3.0\n133,260,3.5\n133,261,4.0\n133,262,4.5\n133,263,5.0\n133,264,5.5\n133,265,6.0\n133,266,6.5\n133,267,7.0\n133,268,7.5\n133,269,8.0\n133,270,8.5\n133,271,9.0\n133,272,9.5\n133,273,10.0\n133,274,10.5\n133,275,7.0\n133,276,6.5\n133,277,6.0\n133,278,5.5\n133,279,5.0\n133,280,4.5\n133,281,4.0\n133,282,3.5\n133,283,3.0\n133,284,3.5\n133,285,4.0\n133,286,4.5\n133,287,5.0\n133,288,5.5\n133,289,6.0\n133,290,6.5\n133,291,7.0\n133,292,7.5\n133,293,8.0\n133,294,8.5\n133,295,9.0\n133,296,9.5\n133,297,10.0\n133,298,10.5\n133,299,11.0\n133,300,7.5\n133,301,7.0\n133,302,6.5\n133,303,6.0\n133,304,5.5\n133,305,5.0\n133,306,4.5\n133,307,4.0\n133,308,3.5\n133,309,4.0\n133,310,4.5\n133,311,5.0\n133,312,5.5\n133,313,6.0\n133,314,6.5\n133,315,7.0\n133,316,7.5\n133,317,8.0\n133,318,8.5\n133,319,9.0\n133,320,9.5\n133,321,10.0\n133,322,10.5\n133,323,11.0\n133,324,11.5\n133,325,8.0\n133,326,7.5\n133,327,7.0\n133,328,6.5\n133,329,6.0\n133,330,5.5\n133,331,5.0\n133,332,4.5\n133,333,4.0\n133,334,4.5\n133,335,5.0\n133,336,5.5\n133,337,6.0\n133,338,6.5\n133,339,7.0\n133,340,7.5\n133,341,8.0\n133,342,8.5\n133,343,9.0\n133,344,9.5\n133,345,10.0\n133,346,10.5\n133,347,11.0\n133,348,11.5\n133,349,12.0\n133,350,8.5\n133,351,8.0\n133,352,7.5\n133,353,7.0\n133,354,6.5\n133,355,6.0\n133,356,5.5\n133,357,5.0\n133,358,4.5\n133,359,5.0\n133,360,5.5\n133,361,6.0\n133,362,6.5\n133,363,7.0\n133,364,7.5\n133,365,8.0\n133,366,8.5\n133,367,9.0\n133,368,9.5\n133,369,10.0\n133,370,10.5\n133,371,11.0\n133,372,11.5\n133,373,12.0\n133,374,12.5\n133,375,9.0\n133,376,8.5\n133,377,8.0\n133,378,7.5\n133,379,7.0\n133,380,6.5\n133,381,6.0\n133,382,5.5\n133,383,5.0\n133,384,5.5\n133,385,6.0\n133,386,6.5\n133,387,7.0\n133,388,7.5\n133,389,8.0\n133,390,8.5\n133,391,9.0\n133,392,9.5\n133,393,10.0\n133,394,10.5\n133,395,11.0\n133,396,11.5\n133,397,12.0\n133,398,12.5\n133,399,13.0\n133,400,9.5\n133,401,9.0\n133,402,8.5\n133,403,8.0\n133,404,7.5\n133,405,7.0\n133,406,6.5\n133,407,6.0\n133,408,5.5\n133,409,6.0\n133,410,6.5\n133,411,7.0\n133,412,7.5\n133,413,8.0\n133,414,8.5\n133,415,9.0\n133,416,9.5\n133,417,10.0\n133,418,10.5\n133,419,11.0\n133,420,11.5\n133,421,12.0\n133,422,12.5\n133,423,13.0\n133,424,13.5\n133,425,10.0\n133,426,9.5\n133,427,9.0\n133,428,8.5\n133,429,8.0\n133,430,7.5\n133,431,7.0\n133,432,6.5\n133,433,6.0\n133,434,6.5\n133,435,7.0\n133,436,7.5\n133,437,8.0\n133,438,8.5\n133,439,9.0\n133,440,9.5\n133,441,10.0\n133,442,10.5\n133,443,11.0\n133,444,11.5\n133,445,12.0\n133,446,12.5\n133,447,13.0\n133,448,13.5\n133,449,14.0\n133,450,10.5\n133,451,10.0\n133,452,9.5\n133,453,9.0\n133,454,8.5\n133,455,8.0\n133,456,7.5\n133,457,7.0\n133,458,6.5\n133,459,7.0\n133,460,7.5\n133,461,8.0\n133,462,8.5\n133,463,9.0\n133,464,9.5\n133,465,10.0\n133,466,10.5\n133,467,11.0\n133,468,11.5\n133,469,12.0\n133,470,12.5\n133,471,13.0\n133,472,13.5\n133,473,14.0\n133,474,14.5\n133,475,11.0\n133,476,10.5\n133,477,10.0\n133,478,9.5\n133,479,9.0\n133,480,8.5\n133,481,8.0\n133,482,7.5\n133,483,7.0\n133,484,7.5\n133,485,8.0\n133,486,8.5\n133,487,9.0\n133,488,9.5\n133,489,10.0\n133,490,10.5\n133,491,11.0\n133,492,11.5\n133,493,12.0\n133,494,12.5\n133,495,13.0\n133,496,13.5\n133,497,14.0\n133,498,14.5\n133,499,15.0\n133,500,11.5\n133,501,11.0\n133,502,10.5\n133,503,10.0\n133,504,9.5\n133,505,9.0\n133,506,8.5\n133,507,8.0\n133,508,7.5\n133,509,8.0\n133,510,8.5\n133,511,9.0\n133,512,9.5\n133,513,10.0\n133,514,10.5\n133,515,11.0\n133,516,11.5\n133,517,12.0\n133,518,12.5\n133,519,13.0\n133,520,13.5\n133,521,14.0\n133,522,14.5\n133,523,15.0\n133,524,15.5\n133,525,12.0\n133,526,11.5\n133,527,11.0\n133,528,10.5\n133,529,10.0\n133,530,9.5\n133,531,9.0\n133,532,8.5\n133,533,8.0\n133,534,8.5\n133,535,9.0\n133,536,9.5\n133,537,10.0\n133,538,10.5\n133,539,11.0\n133,540,11.5\n133,541,12.0\n133,542,12.5\n133,543,13.0\n133,544,13.5\n133,545,14.0\n133,546,14.5\n133,547,15.0\n133,548,15.5\n133,549,16.0\n133,550,12.5\n133,551,12.0\n133,552,11.5\n133,553,11.0\n133,554,10.5\n133,555,10.0\n133,556,9.5\n133,557,9.0\n133,558,8.5\n133,559,9.0\n133,560,9.5\n133,561,10.0\n133,562,10.5\n133,563,11.0\n133,564,11.5\n133,565,12.0\n133,566,12.5\n133,567,13.0\n133,568,13.5\n133,569,14.0\n133,570,14.5\n133,571,15.0\n133,572,15.5\n133,573,16.0\n133,574,16.5\n133,575,13.0\n133,576,12.5\n133,577,12.0\n133,578,11.5\n133,579,11.0\n133,580,10.5\n133,581,10.0\n133,582,9.5\n133,583,9.0\n133,584,9.5\n133,585,10.0\n133,586,10.5\n133,587,11.0\n133,588,11.5\n133,589,12.0\n133,590,12.5\n133,591,13.0\n133,592,13.5\n133,593,14.0\n133,594,14.5\n133,595,15.0\n133,596,15.5\n133,597,16.0\n133,598,16.5\n133,599,17.0\n133,600,13.5\n133,601,13.0\n133,602,12.5\n133,603,12.0\n133,604,11.5\n133,605,11.0\n133,606,10.5\n133,607,10.0\n133,608,9.5\n133,609,10.0\n133,610,10.5\n133,611,11.0\n133,612,11.5\n133,613,12.0\n133,614,12.5\n133,615,13.0\n133,616,13.5\n133,617,14.0\n133,618,14.5\n133,619,15.0\n133,620,15.5\n133,621,16.0\n133,622,16.5\n133,623,17.0\n133,624,17.5\n134,0,7.0\n134,1,6.5\n134,2,6.0\n134,3,5.5\n134,4,5.0\n134,5,4.5\n134,6,4.0\n134,7,3.5\n134,8,3.0\n134,9,2.5\n134,10,3.0\n134,11,3.5\n134,12,4.0\n134,13,4.5\n134,14,5.0\n134,15,5.5\n134,16,6.0\n134,17,6.5\n134,18,7.0\n134,19,7.5\n134,20,8.0\n134,21,8.5\n134,22,9.0\n134,23,9.5\n134,24,10.0\n134,25,6.5\n134,26,6.0\n134,27,5.5\n134,28,5.0\n134,29,4.5\n134,30,4.0\n134,31,3.5\n134,32,3.0\n134,33,2.5\n134,34,2.0\n134,35,2.5\n134,36,3.0\n134,37,3.5\n134,38,4.0\n134,39,4.5\n134,40,5.0\n134,41,5.5\n134,42,6.0\n134,43,6.5\n134,44,7.0\n134,45,7.5\n134,46,8.0\n134,47,8.5\n134,48,9.0\n134,49,9.5\n134,50,6.0\n134,51,5.5\n134,52,5.0\n134,53,4.5\n134,54,4.0\n134,55,3.5\n134,56,3.0\n134,57,2.5\n134,58,2.0\n134,59,1.5\n134,60,2.0\n134,61,2.5\n134,62,3.0\n134,63,3.5\n134,64,4.0\n134,65,4.5\n134,66,5.0\n134,67,5.5\n134,68,6.0\n134,69,6.5\n134,70,7.0\n134,71,7.5\n134,72,8.0\n134,73,8.5\n134,74,9.0\n134,75,5.5\n134,76,5.0\n134,77,4.5\n134,78,4.0\n134,79,3.5\n134,80,3.0\n134,81,2.5\n134,82,2.0\n134,83,1.5\n134,84,1.0\n134,85,1.5\n134,86,2.0\n134,87,2.5\n134,88,3.0\n134,89,3.5\n134,90,4.0\n134,91,4.5\n134,92,5.0\n134,93,5.5\n134,94,6.0\n134,95,6.5\n134,96,7.0\n134,97,7.5\n134,98,8.0\n134,99,8.5\n134,100,5.0\n134,101,4.5\n134,102,4.0\n134,103,3.5\n134,104,3.0\n134,105,2.5\n134,106,2.0\n134,107,1.5\n134,108,1.0\n134,109,0.5\n134,110,1.0\n134,111,1.5\n134,112,2.0\n134,113,2.5\n134,114,3.0\n134,115,3.5\n134,116,4.0\n134,117,4.5\n134,118,5.0\n134,119,5.5\n134,120,6.0\n134,121,6.5\n134,122,7.0\n134,123,7.5\n134,124,8.0\n134,125,4.5\n134,126,4.0\n134,127,3.5\n134,128,3.0\n134,129,2.5\n134,130,2.0\n134,131,1.5\n134,132,1.0\n134,133,0.5\n134,134,0\n134,135,0.5\n134,136,1.0\n134,137,1.5\n134,138,2.0\n134,139,2.5\n134,140,3.0\n134,141,3.5\n134,142,4.0\n134,143,4.5\n134,144,5.0\n134,145,5.5\n134,146,6.0\n134,147,6.5\n134,148,7.0\n134,149,7.5\n134,150,5.0\n134,151,4.5\n134,152,4.0\n134,153,3.5\n134,154,3.0\n134,155,2.5\n134,156,2.0\n134,157,1.5\n134,158,1.0\n134,159,0.5\n134,160,1.0\n134,161,1.5\n134,162,2.0\n134,163,2.5\n134,164,3.0\n134,165,3.5\n134,166,4.0\n134,167,4.5\n134,168,5.0\n134,169,5.5\n134,170,6.0\n134,171,6.5\n134,172,7.0\n134,173,7.5\n134,174,8.0\n134,175,5.5\n134,176,5.0\n134,177,4.5\n134,178,4.0\n134,179,3.5\n134,180,3.0\n134,181,2.5\n134,182,2.0\n134,183,1.5\n134,184,1.0\n134,185,1.5\n134,186,2.0\n134,187,2.5\n134,188,3.0\n134,189,3.5\n134,190,4.0\n134,191,4.5\n134,192,5.0\n134,193,5.5\n134,194,6.0\n134,195,6.5\n134,196,7.0\n134,197,7.5\n134,198,8.0\n134,199,8.5\n134,200,6.0\n134,201,5.5\n134,202,5.0\n134,203,4.5\n134,204,4.0\n134,205,3.5\n134,206,3.0\n134,207,2.5\n134,208,2.0\n134,209,1.5\n134,210,2.0\n134,211,2.5\n134,212,3.0\n134,213,3.5\n134,214,4.0\n134,215,4.5\n134,216,5.0\n134,217,5.5\n134,218,6.0\n134,219,6.5\n134,220,7.0\n134,221,7.5\n134,222,8.0\n134,223,8.5\n134,224,9.0\n134,225,6.5\n134,226,6.0\n134,227,5.5\n134,228,5.0\n134,229,4.5\n134,230,4.0\n134,231,3.5\n134,232,3.0\n134,233,2.5\n134,234,2.0\n134,235,2.5\n134,236,3.0\n134,237,3.5\n134,238,4.0\n134,239,4.5\n134,240,5.0\n134,241,5.5\n134,242,6.0\n134,243,6.5\n134,244,7.0\n134,245,7.5\n134,246,8.0\n134,247,8.5\n134,248,9.0\n134,249,9.5\n134,250,7.0\n134,251,6.5\n134,252,6.0\n134,253,5.5\n134,254,5.0\n134,255,4.5\n134,256,4.0\n134,257,3.5\n134,258,3.0\n134,259,2.5\n134,260,3.0\n134,261,3.5\n134,262,4.0\n134,263,4.5\n134,264,5.0\n134,265,5.5\n134,266,6.0\n134,267,6.5\n134,268,7.0\n134,269,7.5\n134,270,8.0\n134,271,8.5\n134,272,9.0\n134,273,9.5\n134,274,10.0\n134,275,7.5\n134,276,7.0\n134,277,6.5\n134,278,6.0\n134,279,5.5\n134,280,5.0\n134,281,4.5\n134,282,4.0\n134,283,3.5\n134,284,3.0\n134,285,3.5\n134,286,4.0\n134,287,4.5\n134,288,5.0\n134,289,5.5\n134,290,6.0\n134,291,6.5\n134,292,7.0\n134,293,7.5\n134,294,8.0\n134,295,8.5\n134,296,9.0\n134,297,9.5\n134,298,10.0\n134,299,10.5\n134,300,8.0\n134,301,7.5\n134,302,7.0\n134,303,6.5\n134,304,6.0\n134,305,5.5\n134,306,5.0\n134,307,4.5\n134,308,4.0\n134,309,3.5\n134,310,4.0\n134,311,4.5\n134,312,5.0\n134,313,5.5\n134,314,6.0\n134,315,6.5\n134,316,7.0\n134,317,7.5\n134,318,8.0\n134,319,8.5\n134,320,9.0\n134,321,9.5\n134,322,10.0\n134,323,10.5\n134,324,11.0\n134,325,8.5\n134,326,8.0\n134,327,7.5\n134,328,7.0\n134,329,6.5\n134,330,6.0\n134,331,5.5\n134,332,5.0\n134,333,4.5\n134,334,4.0\n134,335,4.5\n134,336,5.0\n134,337,5.5\n134,338,6.0\n134,339,6.5\n134,340,7.0\n134,341,7.5\n134,342,8.0\n134,343,8.5\n134,344,9.0\n134,345,9.5\n134,346,10.0\n134,347,10.5\n134,348,11.0\n134,349,11.5\n134,350,9.0\n134,351,8.5\n134,352,8.0\n134,353,7.5\n134,354,7.0\n134,355,6.5\n134,356,6.0\n134,357,5.5\n134,358,5.0\n134,359,4.5\n134,360,5.0\n134,361,5.5\n134,362,6.0\n134,363,6.5\n134,364,7.0\n134,365,7.5\n134,366,8.0\n134,367,8.5\n134,368,9.0\n134,369,9.5\n134,370,10.0\n134,371,10.5\n134,372,11.0\n134,373,11.5\n134,374,12.0\n134,375,9.5\n134,376,9.0\n134,377,8.5\n134,378,8.0\n134,379,7.5\n134,380,7.0\n134,381,6.5\n134,382,6.0\n134,383,5.5\n134,384,5.0\n134,385,5.5\n134,386,6.0\n134,387,6.5\n134,388,7.0\n134,389,7.5\n134,390,8.0\n134,391,8.5\n134,392,9.0\n134,393,9.5\n134,394,10.0\n134,395,10.5\n134,396,11.0\n134,397,11.5\n134,398,12.0\n134,399,12.5\n134,400,10.0\n134,401,9.5\n134,402,9.0\n134,403,8.5\n134,404,8.0\n134,405,7.5\n134,406,7.0\n134,407,6.5\n134,408,6.0\n134,409,5.5\n134,410,6.0\n134,411,6.5\n134,412,7.0\n134,413,7.5\n134,414,8.0\n134,415,8.5\n134,416,9.0\n134,417,9.5\n134,418,10.0\n134,419,10.5\n134,420,11.0\n134,421,11.5\n134,422,12.0\n134,423,12.5\n134,424,13.0\n134,425,10.5\n134,426,10.0\n134,427,9.5\n134,428,9.0\n134,429,8.5\n134,430,8.0\n134,431,7.5\n134,432,7.0\n134,433,6.5\n134,434,6.0\n134,435,6.5\n134,436,7.0\n134,437,7.5\n134,438,8.0\n134,439,8.5\n134,440,9.0\n134,441,9.5\n134,442,10.0\n134,443,10.5\n134,444,11.0\n134,445,11.5\n134,446,12.0\n134,447,12.5\n134,448,13.0\n134,449,13.5\n134,450,11.0\n134,451,10.5\n134,452,10.0\n134,453,9.5\n134,454,9.0\n134,455,8.5\n134,456,8.0\n134,457,7.5\n134,458,7.0\n134,459,6.5\n134,460,7.0\n134,461,7.5\n134,462,8.0\n134,463,8.5\n134,464,9.0\n134,465,9.5\n134,466,10.0\n134,467,10.5\n134,468,11.0\n134,469,11.5\n134,470,12.0\n134,471,12.5\n134,472,13.0\n134,473,13.5\n134,474,14.0\n134,475,11.5\n134,476,11.0\n134,477,10.5\n134,478,10.0\n134,479,9.5\n134,480,9.0\n134,481,8.5\n134,482,8.0\n134,483,7.5\n134,484,7.0\n134,485,7.5\n134,486,8.0\n134,487,8.5\n134,488,9.0\n134,489,9.5\n134,490,10.0\n134,491,10.5\n134,492,11.0\n134,493,11.5\n134,494,12.0\n134,495,12.5\n134,496,13.0\n134,497,13.5\n134,498,14.0\n134,499,14.5\n134,500,12.0\n134,501,11.5\n134,502,11.0\n134,503,10.5\n134,504,10.0\n134,505,9.5\n134,506,9.0\n134,507,8.5\n134,508,8.0\n134,509,7.5\n134,510,8.0\n134,511,8.5\n134,512,9.0\n134,513,9.5\n134,514,10.0\n134,515,10.5\n134,516,11.0\n134,517,11.5\n134,518,12.0\n134,519,12.5\n134,520,13.0\n134,521,13.5\n134,522,14.0\n134,523,14.5\n134,524,15.0\n134,525,12.5\n134,526,12.0\n134,527,11.5\n134,528,11.0\n134,529,10.5\n134,530,10.0\n134,531,9.5\n134,532,9.0\n134,533,8.5\n134,534,8.0\n134,535,8.5\n134,536,9.0\n134,537,9.5\n134,538,10.0\n134,539,10.5\n134,540,11.0\n134,541,11.5\n134,542,12.0\n134,543,12.5\n134,544,13.0\n134,545,13.5\n134,546,14.0\n134,547,14.5\n134,548,15.0\n134,549,15.5\n134,550,13.0\n134,551,12.5\n134,552,12.0\n134,553,11.5\n134,554,11.0\n134,555,10.5\n134,556,10.0\n134,557,9.5\n134,558,9.0\n134,559,8.5\n134,560,9.0\n134,561,9.5\n134,562,10.0\n134,563,10.5\n134,564,11.0\n134,565,11.5\n134,566,12.0\n134,567,12.5\n134,568,13.0\n134,569,13.5\n134,570,14.0\n134,571,14.5\n134,572,15.0\n134,573,15.5\n134,574,16.0\n134,575,13.5\n134,576,13.0\n134,577,12.5\n134,578,12.0\n134,579,11.5\n134,580,11.0\n134,581,10.5\n134,582,10.0\n134,583,9.5\n134,584,9.0\n134,585,9.5\n134,586,10.0\n134,587,10.5\n134,588,11.0\n134,589,11.5\n134,590,12.0\n134,591,12.5\n134,592,13.0\n134,593,13.5\n134,594,14.0\n134,595,14.5\n134,596,15.0\n134,597,15.5\n134,598,16.0\n134,599,16.5\n134,600,14.0\n134,601,13.5\n134,602,13.0\n134,603,12.5\n134,604,12.0\n134,605,11.5\n134,606,11.0\n134,607,10.5\n134,608,10.0\n134,609,9.5\n134,610,10.0\n134,611,10.5\n134,612,11.0\n134,613,11.5\n134,614,12.0\n134,615,12.5\n134,616,13.0\n134,617,13.5\n134,618,14.0\n134,619,14.5\n134,620,15.0\n134,621,15.5\n134,622,16.0\n134,623,16.5\n134,624,17.0\n135,0,7.5\n135,1,7.0\n135,2,6.5\n135,3,6.0\n135,4,5.5\n135,5,5.0\n135,6,4.5\n135,7,4.0\n135,8,3.5\n135,9,3.0\n135,10,2.5\n135,11,3.0\n135,12,3.5\n135,13,4.0\n135,14,4.5\n135,15,5.0\n135,16,5.5\n135,17,6.0\n135,18,6.5\n135,19,7.0\n135,20,7.5\n135,21,8.0\n135,22,8.5\n135,23,9.0\n135,24,9.5\n135,25,7.0\n135,26,6.5\n135,27,6.0\n135,28,5.5\n135,29,5.0\n135,30,4.5\n135,31,4.0\n135,32,3.5\n135,33,3.0\n135,34,2.5\n135,35,2.0\n135,36,2.5\n135,37,3.0\n135,38,3.5\n135,39,4.0\n135,40,4.5\n135,41,5.0\n135,42,5.5\n135,43,6.0\n135,44,6.5\n135,45,7.0\n135,46,7.5\n135,47,8.0\n135,48,8.5\n135,49,9.0\n135,50,6.5\n135,51,6.0\n135,52,5.5\n135,53,5.0\n135,54,4.5\n135,55,4.0\n135,56,3.5\n135,57,3.0\n135,58,2.5\n135,59,2.0\n135,60,1.5\n135,61,2.0\n135,62,2.5\n135,63,3.0\n135,64,3.5\n135,65,4.0\n135,66,4.5\n135,67,5.0\n135,68,5.5\n135,69,6.0\n135,70,6.5\n135,71,7.0\n135,72,7.5\n135,73,8.0\n135,74,8.5\n135,75,6.0\n135,76,5.5\n135,77,5.0\n135,78,4.5\n135,79,4.0\n135,80,3.5\n135,81,3.0\n135,82,2.5\n135,83,2.0\n135,84,1.5\n135,85,1.0\n135,86,1.5\n135,87,2.0\n135,88,2.5\n135,89,3.0\n135,90,3.5\n135,91,4.0\n135,92,4.5\n135,93,5.0\n135,94,5.5\n135,95,6.0\n135,96,6.5\n135,97,7.0\n135,98,7.5\n135,99,8.0\n135,100,5.5\n135,101,5.0\n135,102,4.5\n135,103,4.0\n135,104,3.5\n135,105,3.0\n135,106,2.5\n135,107,2.0\n135,108,1.5\n135,109,1.0\n135,110,0.5\n135,111,1.0\n135,112,1.5\n135,113,2.0\n135,114,2.5\n135,115,3.0\n135,116,3.5\n135,117,4.0\n135,118,4.5\n135,119,5.0\n135,120,5.5\n135,121,6.0\n135,122,6.5\n135,123,7.0\n135,124,7.5\n135,125,5.0\n135,126,4.5\n135,127,4.0\n135,128,3.5\n135,129,3.0\n135,130,2.5\n135,131,2.0\n135,132,1.5\n135,133,1.0\n135,134,0.5\n135,135,0\n135,136,0.5\n135,137,1.0\n135,138,1.5\n135,139,2.0\n135,140,2.5\n135,141,3.0\n135,142,3.5\n135,143,4.0\n135,144,4.5\n135,145,5.0\n135,146,5.5\n135,147,6.0\n135,148,6.5\n135,149,7.0\n135,150,5.5\n135,151,5.0\n135,152,4.5\n135,153,4.0\n135,154,3.5\n135,155,3.0\n135,156,2.5\n135,157,2.0\n135,158,1.5\n135,159,1.0\n135,160,0.5\n135,161,1.0\n135,162,1.5\n135,163,2.0\n135,164,2.5\n135,165,3.0\n135,166,3.5\n135,167,4.0\n135,168,4.5\n135,169,5.0\n135,170,5.5\n135,171,6.0\n135,172,6.5\n135,173,7.0\n135,174,7.5\n135,175,6.0\n135,176,5.5\n135,177,5.0\n135,178,4.5\n135,179,4.0\n135,180,3.5\n135,181,3.0\n135,182,2.5\n135,183,2.0\n135,184,1.5\n135,185,1.0\n135,186,1.5\n135,187,2.0\n135,188,2.5\n135,189,3.0\n135,190,3.5\n135,191,4.0\n135,192,4.5\n135,193,5.0\n135,194,5.5\n135,195,6.0\n135,196,6.5\n135,197,7.0\n135,198,7.5\n135,199,8.0\n135,200,6.5\n135,201,6.0\n135,202,5.5\n135,203,5.0\n135,204,4.5\n135,205,4.0\n135,206,3.5\n135,207,3.0\n135,208,2.5\n135,209,2.0\n135,210,1.5\n135,211,2.0\n135,212,2.5\n135,213,3.0\n135,214,3.5\n135,215,4.0\n135,216,4.5\n135,217,5.0\n135,218,5.5\n135,219,6.0\n135,220,6.5\n135,221,7.0\n135,222,7.5\n135,223,8.0\n135,224,8.5\n135,225,7.0\n135,226,6.5\n135,227,6.0\n135,228,5.5\n135,229,5.0\n135,230,4.5\n135,231,4.0\n135,232,3.5\n135,233,3.0\n135,234,2.5\n135,235,2.0\n135,236,2.5\n135,237,3.0\n135,238,3.5\n135,239,4.0\n135,240,4.5\n135,241,5.0\n135,242,5.5\n135,243,6.0\n135,244,6.5\n135,245,7.0\n135,246,7.5\n135,247,8.0\n135,248,8.5\n135,249,9.0\n135,250,7.5\n135,251,7.0\n135,252,6.5\n135,253,6.0\n135,254,5.5\n135,255,5.0\n135,256,4.5\n135,257,4.0\n135,258,3.5\n135,259,3.0\n135,260,2.5\n135,261,3.0\n135,262,3.5\n135,263,4.0\n135,264,4.5\n135,265,5.0\n135,266,5.5\n135,267,6.0\n135,268,6.5\n135,269,7.0\n135,270,7.5\n135,271,8.0\n135,272,8.5\n135,273,9.0\n135,274,9.5\n135,275,8.0\n135,276,7.5\n135,277,7.0\n135,278,6.5\n135,279,6.0\n135,280,5.5\n135,281,5.0\n135,282,4.5\n135,283,4.0\n135,284,3.5\n135,285,3.0\n135,286,3.5\n135,287,4.0\n135,288,4.5\n135,289,5.0\n135,290,5.5\n135,291,6.0\n135,292,6.5\n135,293,7.0\n135,294,7.5\n135,295,8.0\n135,296,8.5\n135,297,9.0\n135,298,9.5\n135,299,10.0\n135,300,8.5\n135,301,8.0\n135,302,7.5\n135,303,7.0\n135,304,6.5\n135,305,6.0\n135,306,5.5\n135,307,5.0\n135,308,4.5\n135,309,4.0\n135,310,3.5\n135,311,4.0\n135,312,4.5\n135,313,5.0\n135,314,5.5\n135,315,6.0\n135,316,6.5\n135,317,7.0\n135,318,7.5\n135,319,8.0\n135,320,8.5\n135,321,9.0\n135,322,9.5\n135,323,10.0\n135,324,10.5\n135,325,9.0\n135,326,8.5\n135,327,8.0\n135,328,7.5\n135,329,7.0\n135,330,6.5\n135,331,6.0\n135,332,5.5\n135,333,5.0\n135,334,4.5\n135,335,4.0\n135,336,4.5\n135,337,5.0\n135,338,5.5\n135,339,6.0\n135,340,6.5\n135,341,7.0\n135,342,7.5\n135,343,8.0\n135,344,8.5\n135,345,9.0\n135,346,9.5\n135,347,10.0\n135,348,10.5\n135,349,11.0\n135,350,9.5\n135,351,9.0\n135,352,8.5\n135,353,8.0\n135,354,7.5\n135,355,7.0\n135,356,6.5\n135,357,6.0\n135,358,5.5\n135,359,5.0\n135,360,4.5\n135,361,5.0\n135,362,5.5\n135,363,6.0\n135,364,6.5\n135,365,7.0\n135,366,7.5\n135,367,8.0\n135,368,8.5\n135,369,9.0\n135,370,9.5\n135,371,10.0\n135,372,10.5\n135,373,11.0\n135,374,11.5\n135,375,10.0\n135,376,9.5\n135,377,9.0\n135,378,8.5\n135,379,8.0\n135,380,7.5\n135,381,7.0\n135,382,6.5\n135,383,6.0\n135,384,5.5\n135,385,5.0\n135,386,5.5\n135,387,6.0\n135,388,6.5\n135,389,7.0\n135,390,7.5\n135,391,8.0\n135,392,8.5\n135,393,9.0\n135,394,9.5\n135,395,10.0\n135,396,10.5\n135,397,11.0\n135,398,11.5\n135,399,12.0\n135,400,10.5\n135,401,10.0\n135,402,9.5\n135,403,9.0\n135,404,8.5\n135,405,8.0\n135,406,7.5\n135,407,7.0\n135,408,6.5\n135,409,6.0\n135,410,5.5\n135,411,6.0\n135,412,6.5\n135,413,7.0\n135,414,7.5\n135,415,8.0\n135,416,8.5\n135,417,9.0\n135,418,9.5\n135,419,10.0\n135,420,10.5\n135,421,11.0\n135,422,11.5\n135,423,12.0\n135,424,12.5\n135,425,11.0\n135,426,10.5\n135,427,10.0\n135,428,9.5\n135,429,9.0\n135,430,8.5\n135,431,8.0\n135,432,7.5\n135,433,7.0\n135,434,6.5\n135,435,6.0\n135,436,6.5\n135,437,7.0\n135,438,7.5\n135,439,8.0\n135,440,8.5\n135,441,9.0\n135,442,9.5\n135,443,10.0\n135,444,10.5\n135,445,11.0\n135,446,11.5\n135,447,12.0\n135,448,12.5\n135,449,13.0\n135,450,11.5\n135,451,11.0\n135,452,10.5\n135,453,10.0\n135,454,9.5\n135,455,9.0\n135,456,8.5\n135,457,8.0\n135,458,7.5\n135,459,7.0\n135,460,6.5\n135,461,7.0\n135,462,7.5\n135,463,8.0\n135,464,8.5\n135,465,9.0\n135,466,9.5\n135,467,10.0\n135,468,10.5\n135,469,11.0\n135,470,11.5\n135,471,12.0\n135,472,12.5\n135,473,13.0\n135,474,13.5\n135,475,12.0\n135,476,11.5\n135,477,11.0\n135,478,10.5\n135,479,10.0\n135,480,9.5\n135,481,9.0\n135,482,8.5\n135,483,8.0\n135,484,7.5\n135,485,7.0\n135,486,7.5\n135,487,8.0\n135,488,8.5\n135,489,9.0\n135,490,9.5\n135,491,10.0\n135,492,10.5\n135,493,11.0\n135,494,11.5\n135,495,12.0\n135,496,12.5\n135,497,13.0\n135,498,13.5\n135,499,14.0\n135,500,12.5\n135,501,12.0\n135,502,11.5\n135,503,11.0\n135,504,10.5\n135,505,10.0\n135,506,9.5\n135,507,9.0\n135,508,8.5\n135,509,8.0\n135,510,7.5\n135,511,8.0\n135,512,8.5\n135,513,9.0\n135,514,9.5\n135,515,10.0\n135,516,10.5\n135,517,11.0\n135,518,11.5\n135,519,12.0\n135,520,12.5\n135,521,13.0\n135,522,13.5\n135,523,14.0\n135,524,14.5\n135,525,13.0\n135,526,12.5\n135,527,12.0\n135,528,11.5\n135,529,11.0\n135,530,10.5\n135,531,10.0\n135,532,9.5\n135,533,9.0\n135,534,8.5\n135,535,8.0\n135,536,8.5\n135,537,9.0\n135,538,9.5\n135,539,10.0\n135,540,10.5\n135,541,11.0\n135,542,11.5\n135,543,12.0\n135,544,12.5\n135,545,13.0\n135,546,13.5\n135,547,14.0\n135,548,14.5\n135,549,15.0\n135,550,13.5\n135,551,13.0\n135,552,12.5\n135,553,12.0\n135,554,11.5\n135,555,11.0\n135,556,10.5\n135,557,10.0\n135,558,9.5\n135,559,9.0\n135,560,8.5\n135,561,9.0\n135,562,9.5\n135,563,10.0\n135,564,10.5\n135,565,11.0\n135,566,11.5\n135,567,12.0\n135,568,12.5\n135,569,13.0\n135,570,13.5\n135,571,14.0\n135,572,14.5\n135,573,15.0\n135,574,15.5\n135,575,14.0\n135,576,13.5\n135,577,13.0\n135,578,12.5\n135,579,12.0\n135,580,11.5\n135,581,11.0\n135,582,10.5\n135,583,10.0\n135,584,9.5\n135,585,9.0\n135,586,9.5\n135,587,10.0\n135,588,10.5\n135,589,11.0\n135,590,11.5\n135,591,12.0\n135,592,12.5\n135,593,13.0\n135,594,13.5\n135,595,14.0\n135,596,14.5\n135,597,15.0\n135,598,15.5\n135,599,16.0\n135,600,14.5\n135,601,14.0\n135,602,13.5\n135,603,13.0\n135,604,12.5\n135,605,12.0\n135,606,11.5\n135,607,11.0\n135,608,10.5\n135,609,10.0\n135,610,9.5\n135,611,10.0\n135,612,10.5\n135,613,11.0\n135,614,11.5\n135,615,12.0\n135,616,12.5\n135,617,13.0\n135,618,13.5\n135,619,14.0\n135,620,14.5\n135,621,15.0\n135,622,15.5\n135,623,16.0\n135,624,16.5\n136,0,8.0\n136,1,7.5\n136,2,7.0\n136,3,6.5\n136,4,6.0\n136,5,5.5\n136,6,5.0\n136,7,4.5\n136,8,4.0\n136,9,3.5\n136,10,3.0\n136,11,2.5\n136,12,3.0\n136,13,3.5\n136,14,4.0\n136,15,4.5\n136,16,5.0\n136,17,5.5\n136,18,6.0\n136,19,6.5\n136,20,7.0\n136,21,7.5\n136,22,8.0\n136,23,8.5\n136,24,9.0\n136,25,7.5\n136,26,7.0\n136,27,6.5\n136,28,6.0\n136,29,5.5\n136,30,5.0\n136,31,4.5\n136,32,4.0\n136,33,3.5\n136,34,3.0\n136,35,2.5\n136,36,2.0\n136,37,2.5\n136,38,3.0\n136,39,3.5\n136,40,4.0\n136,41,4.5\n136,42,5.0\n136,43,5.5\n136,44,6.0\n136,45,6.5\n136,46,7.0\n136,47,7.5\n136,48,8.0\n136,49,8.5\n136,50,7.0\n136,51,6.5\n136,52,6.0\n136,53,5.5\n136,54,5.0\n136,55,4.5\n136,56,4.0\n136,57,3.5\n136,58,3.0\n136,59,2.5\n136,60,2.0\n136,61,1.5\n136,62,2.0\n136,63,2.5\n136,64,3.0\n136,65,3.5\n136,66,4.0\n136,67,4.5\n136,68,5.0\n136,69,5.5\n136,70,6.0\n136,71,6.5\n136,72,7.0\n136,73,7.5\n136,74,8.0\n136,75,6.5\n136,76,6.0\n136,77,5.5\n136,78,5.0\n136,79,4.5\n136,80,4.0\n136,81,3.5\n136,82,3.0\n136,83,2.5\n136,84,2.0\n136,85,1.5\n136,86,1.0\n136,87,1.5\n136,88,2.0\n136,89,2.5\n136,90,3.0\n136,91,3.5\n136,92,4.0\n136,93,4.5\n136,94,5.0\n136,95,5.5\n136,96,6.0\n136,97,6.5\n136,98,7.0\n136,99,7.5\n136,100,6.0\n136,101,5.5\n136,102,5.0\n136,103,4.5\n136,104,4.0\n136,105,3.5\n136,106,3.0\n136,107,2.5\n136,108,2.0\n136,109,1.5\n136,110,1.0\n136,111,0.5\n136,112,1.0\n136,113,1.5\n136,114,2.0\n136,115,2.5\n136,116,3.0\n136,117,3.5\n136,118,4.0\n136,119,4.5\n136,120,5.0\n136,121,5.5\n136,122,6.0\n136,123,6.5\n136,124,7.0\n136,125,5.5\n136,126,5.0\n136,127,4.5\n136,128,4.0\n136,129,3.5\n136,130,3.0\n136,131,2.5\n136,132,2.0\n136,133,1.5\n136,134,1.0\n136,135,0.5\n136,136,0\n136,137,0.5\n136,138,1.0\n136,139,1.5\n136,140,2.0\n136,141,2.5\n136,142,3.0\n136,143,3.5\n136,144,4.0\n136,145,4.5\n136,146,5.0\n136,147,5.5\n136,148,6.0\n136,149,6.5\n136,150,6.0\n136,151,5.5\n136,152,5.0\n136,153,4.5\n136,154,4.0\n136,155,3.5\n136,156,3.0\n136,157,2.5\n136,158,2.0\n136,159,1.5\n136,160,1.0\n136,161,0.5\n136,162,1.0\n136,163,1.5\n136,164,2.0\n136,165,2.5\n136,166,3.0\n136,167,3.5\n136,168,4.0\n136,169,4.5\n136,170,5.0\n136,171,5.5\n136,172,6.0\n136,173,6.5\n136,174,7.0\n136,175,6.5\n136,176,6.0\n136,177,5.5\n136,178,5.0\n136,179,4.5\n136,180,4.0\n136,181,3.5\n136,182,3.0\n136,183,2.5\n136,184,2.0\n136,185,1.5\n136,186,1.0\n136,187,1.5\n136,188,2.0\n136,189,2.5\n136,190,3.0\n136,191,3.5\n136,192,4.0\n136,193,4.5\n136,194,5.0\n136,195,5.5\n136,196,6.0\n136,197,6.5\n136,198,7.0\n136,199,7.5\n136,200,7.0\n136,201,6.5\n136,202,6.0\n136,203,5.5\n136,204,5.0\n136,205,4.5\n136,206,4.0\n136,207,3.5\n136,208,3.0\n136,209,2.5\n136,210,2.0\n136,211,1.5\n136,212,2.0\n136,213,2.5\n136,214,3.0\n136,215,3.5\n136,216,4.0\n136,217,4.5\n136,218,5.0\n136,219,5.5\n136,220,6.0\n136,221,6.5\n136,222,7.0\n136,223,7.5\n136,224,8.0\n136,225,7.5\n136,226,7.0\n136,227,6.5\n136,228,6.0\n136,229,5.5\n136,230,5.0\n136,231,4.5\n136,232,4.0\n136,233,3.5\n136,234,3.0\n136,235,2.5\n136,236,2.0\n136,237,2.5\n136,238,3.0\n136,239,3.5\n136,240,4.0\n136,241,4.5\n136,242,5.0\n136,243,5.5\n136,244,6.0\n136,245,6.5\n136,246,7.0\n136,247,7.5\n136,248,8.0\n136,249,8.5\n136,250,8.0\n136,251,7.5\n136,252,7.0\n136,253,6.5\n136,254,6.0\n136,255,5.5\n136,256,5.0\n136,257,4.5\n136,258,4.0\n136,259,3.5\n136,260,3.0\n136,261,2.5\n136,262,3.0\n136,263,3.5\n136,264,4.0\n136,265,4.5\n136,266,5.0\n136,267,5.5\n136,268,6.0\n136,269,6.5\n136,270,7.0\n136,271,7.5\n136,272,8.0\n136,273,8.5\n136,274,9.0\n136,275,8.5\n136,276,8.0\n136,277,7.5\n136,278,7.0\n136,279,6.5\n136,280,6.0\n136,281,5.5\n136,282,5.0\n136,283,4.5\n136,284,4.0\n136,285,3.5\n136,286,3.0\n136,287,3.5\n136,288,4.0\n136,289,4.5\n136,290,5.0\n136,291,5.5\n136,292,6.0\n136,293,6.5\n136,294,7.0\n136,295,7.5\n136,296,8.0\n136,297,8.5\n136,298,9.0\n136,299,9.5\n136,300,9.0\n136,301,8.5\n136,302,8.0\n136,303,7.5\n136,304,7.0\n136,305,6.5\n136,306,6.0\n136,307,5.5\n136,308,5.0\n136,309,4.5\n136,310,4.0\n136,311,3.5\n136,312,4.0\n136,313,4.5\n136,314,5.0\n136,315,5.5\n136,316,6.0\n136,317,6.5\n136,318,7.0\n136,319,7.5\n136,320,8.0\n136,321,8.5\n136,322,9.0\n136,323,9.5\n136,324,10.0\n136,325,9.5\n136,326,9.0\n136,327,8.5\n136,328,8.0\n136,329,7.5\n136,330,7.0\n136,331,6.5\n136,332,6.0\n136,333,5.5\n136,334,5.0\n136,335,4.5\n136,336,4.0\n136,337,4.5\n136,338,5.0\n136,339,5.5\n136,340,6.0\n136,341,6.5\n136,342,7.0\n136,343,7.5\n136,344,8.0\n136,345,8.5\n136,346,9.0\n136,347,9.5\n136,348,10.0\n136,349,10.5\n136,350,10.0\n136,351,9.5\n136,352,9.0\n136,353,8.5\n136,354,8.0\n136,355,7.5\n136,356,7.0\n136,357,6.5\n136,358,6.0\n136,359,5.5\n136,360,5.0\n136,361,4.5\n136,362,5.0\n136,363,5.5\n136,364,6.0\n136,365,6.5\n136,366,7.0\n136,367,7.5\n136,368,8.0\n136,369,8.5\n136,370,9.0\n136,371,9.5\n136,372,10.0\n136,373,10.5\n136,374,11.0\n136,375,10.5\n136,376,10.0\n136,377,9.5\n136,378,9.0\n136,379,8.5\n136,380,8.0\n136,381,7.5\n136,382,7.0\n136,383,6.5\n136,384,6.0\n136,385,5.5\n136,386,5.0\n136,387,5.5\n136,388,6.0\n136,389,6.5\n136,390,7.0\n136,391,7.5\n136,392,8.0\n136,393,8.5\n136,394,9.0\n136,395,9.5\n136,396,10.0\n136,397,10.5\n136,398,11.0\n136,399,11.5\n136,400,11.0\n136,401,10.5\n136,402,10.0\n136,403,9.5\n136,404,9.0\n136,405,8.5\n136,406,8.0\n136,407,7.5\n136,408,7.0\n136,409,6.5\n136,410,6.0\n136,411,5.5\n136,412,6.0\n136,413,6.5\n136,414,7.0\n136,415,7.5\n136,416,8.0\n136,417,8.5\n136,418,9.0\n136,419,9.5\n136,420,10.0\n136,421,10.5\n136,422,11.0\n136,423,11.5\n136,424,12.0\n136,425,11.5\n136,426,11.0\n136,427,10.5\n136,428,10.0\n136,429,9.5\n136,430,9.0\n136,431,8.5\n136,432,8.0\n136,433,7.5\n136,434,7.0\n136,435,6.5\n136,436,6.0\n136,437,6.5\n136,438,7.0\n136,439,7.5\n136,440,8.0\n136,441,8.5\n136,442,9.0\n136,443,9.5\n136,444,10.0\n136,445,10.5\n136,446,11.0\n136,447,11.5\n136,448,12.0\n136,449,12.5\n136,450,12.0\n136,451,11.5\n136,452,11.0\n136,453,10.5\n136,454,10.0\n136,455,9.5\n136,456,9.0\n136,457,8.5\n136,458,8.0\n136,459,7.5\n136,460,7.0\n136,461,6.5\n136,462,7.0\n136,463,7.5\n136,464,8.0\n136,465,8.5\n136,466,9.0\n136,467,9.5\n136,468,10.0\n136,469,10.5\n136,470,11.0\n136,471,11.5\n136,472,12.0\n136,473,12.5\n136,474,13.0\n136,475,12.5\n136,476,12.0\n136,477,11.5\n136,478,11.0\n136,479,10.5\n136,480,10.0\n136,481,9.5\n136,482,9.0\n136,483,8.5\n136,484,8.0\n136,485,7.5\n136,486,7.0\n136,487,7.5\n136,488,8.0\n136,489,8.5\n136,490,9.0\n136,491,9.5\n136,492,10.0\n136,493,10.5\n136,494,11.0\n136,495,11.5\n136,496,12.0\n136,497,12.5\n136,498,13.0\n136,499,13.5\n136,500,13.0\n136,501,12.5\n136,502,12.0\n136,503,11.5\n136,504,11.0\n136,505,10.5\n136,506,10.0\n136,507,9.5\n136,508,9.0\n136,509,8.5\n136,510,8.0\n136,511,7.5\n136,512,8.0\n136,513,8.5\n136,514,9.0\n136,515,9.5\n136,516,10.0\n136,517,10.5\n136,518,11.0\n136,519,11.5\n136,520,12.0\n136,521,12.5\n136,522,13.0\n136,523,13.5\n136,524,14.0\n136,525,13.5\n136,526,13.0\n136,527,12.5\n136,528,12.0\n136,529,11.5\n136,530,11.0\n136,531,10.5\n136,532,10.0\n136,533,9.5\n136,534,9.0\n136,535,8.5\n136,536,8.0\n136,537,8.5\n136,538,9.0\n136,539,9.5\n136,540,10.0\n136,541,10.5\n136,542,11.0\n136,543,11.5\n136,544,12.0\n136,545,12.5\n136,546,13.0\n136,547,13.5\n136,548,14.0\n136,549,14.5\n136,550,14.0\n136,551,13.5\n136,552,13.0\n136,553,12.5\n136,554,12.0\n136,555,11.5\n136,556,11.0\n136,557,10.5\n136,558,10.0\n136,559,9.5\n136,560,9.0\n136,561,8.5\n136,562,9.0\n136,563,9.5\n136,564,10.0\n136,565,10.5\n136,566,11.0\n136,567,11.5\n136,568,12.0\n136,569,12.5\n136,570,13.0\n136,571,13.5\n136,572,14.0\n136,573,14.5\n136,574,15.0\n136,575,14.5\n136,576,14.0\n136,577,13.5\n136,578,13.0\n136,579,12.5\n136,580,12.0\n136,581,11.5\n136,582,11.0\n136,583,10.5\n136,584,10.0\n136,585,9.5\n136,586,9.0\n136,587,9.5\n136,588,10.0\n136,589,10.5\n136,590,11.0\n136,591,11.5\n136,592,12.0\n136,593,12.5\n136,594,13.0\n136,595,13.5\n136,596,14.0\n136,597,14.5\n136,598,15.0\n136,599,15.5\n136,600,15.0\n136,601,14.5\n136,602,14.0\n136,603,13.5\n136,604,13.0\n136,605,12.5\n136,606,12.0\n136,607,11.5\n136,608,11.0\n136,609,10.5\n136,610,10.0\n136,611,9.5\n136,612,10.0\n136,613,10.5\n136,614,11.0\n136,615,11.5\n136,616,12.0\n136,617,12.5\n136,618,13.0\n136,619,13.5\n136,620,14.0\n136,621,14.5\n136,622,15.0\n136,623,15.5\n136,624,16.0\n137,0,8.5\n137,1,8.0\n137,2,7.5\n137,3,7.0\n137,4,6.5\n137,5,6.0\n137,6,5.5\n137,7,5.0\n137,8,4.5\n137,9,4.0\n137,10,3.5\n137,11,3.0\n137,12,2.5\n137,13,3.0\n137,14,3.5\n137,15,4.0\n137,16,4.5\n137,17,5.0\n137,18,5.5\n137,19,6.0\n137,20,6.5\n137,21,7.0\n137,22,7.5\n137,23,8.0\n137,24,8.5\n137,25,8.0\n137,26,7.5\n137,27,7.0\n137,28,6.5\n137,29,6.0\n137,30,5.5\n137,31,5.0\n137,32,4.5\n137,33,4.0\n137,34,3.5\n137,35,3.0\n137,36,2.5\n137,37,2.0\n137,38,2.5\n137,39,3.0\n137,40,3.5\n137,41,4.0\n137,42,4.5\n137,43,5.0\n137,44,5.5\n137,45,6.0\n137,46,6.5\n137,47,7.0\n137,48,7.5\n137,49,8.0\n137,50,7.5\n137,51,7.0\n137,52,6.5\n137,53,6.0\n137,54,5.5\n137,55,5.0\n137,56,4.5\n137,57,4.0\n137,58,3.5\n137,59,3.0\n137,60,2.5\n137,61,2.0\n137,62,1.5\n137,63,2.0\n137,64,2.5\n137,65,3.0\n137,66,3.5\n137,67,4.0\n137,68,4.5\n137,69,5.0\n137,70,5.5\n137,71,6.0\n137,72,6.5\n137,73,7.0\n137,74,7.5\n137,75,7.0\n137,76,6.5\n137,77,6.0\n137,78,5.5\n137,79,5.0\n137,80,4.5\n137,81,4.0\n137,82,3.5\n137,83,3.0\n137,84,2.5\n137,85,2.0\n137,86,1.5\n137,87,1.0\n137,88,1.5\n137,89,2.0\n137,90,2.5\n137,91,3.0\n137,92,3.5\n137,93,4.0\n137,94,4.5\n137,95,5.0\n137,96,5.5\n137,97,6.0\n137,98,6.5\n137,99,7.0\n137,100,6.5\n137,101,6.0\n137,102,5.5\n137,103,5.0\n137,104,4.5\n137,105,4.0\n137,106,3.5\n137,107,3.0\n137,108,2.5\n137,109,2.0\n137,110,1.5\n137,111,1.0\n137,112,0.5\n137,113,1.0\n137,114,1.5\n137,115,2.0\n137,116,2.5\n137,117,3.0\n137,118,3.5\n137,119,4.0\n137,120,4.5\n137,121,5.0\n137,122,5.5\n137,123,6.0\n137,124,6.5\n137,125,6.0\n137,126,5.5\n137,127,5.0\n137,128,4.5\n137,129,4.0\n137,130,3.5\n137,131,3.0\n137,132,2.5\n137,133,2.0\n137,134,1.5\n137,135,1.0\n137,136,0.5\n137,137,0\n137,138,0.5\n137,139,1.0\n137,140,1.5\n137,141,2.0\n137,142,2.5\n137,143,3.0\n137,144,3.5\n137,145,4.0\n137,146,4.5\n137,147,5.0\n137,148,5.5\n137,149,6.0\n137,150,6.5\n137,151,6.0\n137,152,5.5\n137,153,5.0\n137,154,4.5\n137,155,4.0\n137,156,3.5\n137,157,3.0\n137,158,2.5\n137,159,2.0\n137,160,1.5\n137,161,1.0\n137,162,0.5\n137,163,1.0\n137,164,1.5\n137,165,2.0\n137,166,2.5\n137,167,3.0\n137,168,3.5\n137,169,4.0\n137,170,4.5\n137,171,5.0\n137,172,5.5\n137,173,6.0\n137,174,6.5\n137,175,7.0\n137,176,6.5\n137,177,6.0\n137,178,5.5\n137,179,5.0\n137,180,4.5\n137,181,4.0\n137,182,3.5\n137,183,3.0\n137,184,2.5\n137,185,2.0\n137,186,1.5\n137,187,1.0\n137,188,1.5\n137,189,2.0\n137,190,2.5\n137,191,3.0\n137,192,3.5\n137,193,4.0\n137,194,4.5\n137,195,5.0\n137,196,5.5\n137,197,6.0\n137,198,6.5\n137,199,7.0\n137,200,7.5\n137,201,7.0\n137,202,6.5\n137,203,6.0\n137,204,5.5\n137,205,5.0\n137,206,4.5\n137,207,4.0\n137,208,3.5\n137,209,3.0\n137,210,2.5\n137,211,2.0\n137,212,1.5\n137,213,2.0\n137,214,2.5\n137,215,3.0\n137,216,3.5\n137,217,4.0\n137,218,4.5\n137,219,5.0\n137,220,5.5\n137,221,6.0\n137,222,6.5\n137,223,7.0\n137,224,7.5\n137,225,8.0\n137,226,7.5\n137,227,7.0\n137,228,6.5\n137,229,6.0\n137,230,5.5\n137,231,5.0\n137,232,4.5\n137,233,4.0\n137,234,3.5\n137,235,3.0\n137,236,2.5\n137,237,2.0\n137,238,2.5\n137,239,3.0\n137,240,3.5\n137,241,4.0\n137,242,4.5\n137,243,5.0\n137,244,5.5\n137,245,6.0\n137,246,6.5\n137,247,7.0\n137,248,7.5\n137,249,8.0\n137,250,8.5\n137,251,8.0\n137,252,7.5\n137,253,7.0\n137,254,6.5\n137,255,6.0\n137,256,5.5\n137,257,5.0\n137,258,4.5\n137,259,4.0\n137,260,3.5\n137,261,3.0\n137,262,2.5\n137,263,3.0\n137,264,3.5\n137,265,4.0\n137,266,4.5\n137,267,5.0\n137,268,5.5\n137,269,6.0\n137,270,6.5\n137,271,7.0\n137,272,7.5\n137,273,8.0\n137,274,8.5\n137,275,9.0\n137,276,8.5\n137,277,8.0\n137,278,7.5\n137,279,7.0\n137,280,6.5\n137,281,6.0\n137,282,5.5\n137,283,5.0\n137,284,4.5\n137,285,4.0\n137,286,3.5\n137,287,3.0\n137,288,3.5\n137,289,4.0\n137,290,4.5\n137,291,5.0\n137,292,5.5\n137,293,6.0\n137,294,6.5\n137,295,7.0\n137,296,7.5\n137,297,8.0\n137,298,8.5\n137,299,9.0\n137,300,9.5\n137,301,9.0\n137,302,8.5\n137,303,8.0\n137,304,7.5\n137,305,7.0\n137,306,6.5\n137,307,6.0\n137,308,5.5\n137,309,5.0\n137,310,4.5\n137,311,4.0\n137,312,3.5\n137,313,4.0\n137,314,4.5\n137,315,5.0\n137,316,5.5\n137,317,6.0\n137,318,6.5\n137,319,7.0\n137,320,7.5\n137,321,8.0\n137,322,8.5\n137,323,9.0\n137,324,9.5\n137,325,10.0\n137,326,9.5\n137,327,9.0\n137,328,8.5\n137,329,8.0\n137,330,7.5\n137,331,7.0\n137,332,6.5\n137,333,6.0\n137,334,5.5\n137,335,5.0\n137,336,4.5\n137,337,4.0\n137,338,4.5\n137,339,5.0\n137,340,5.5\n137,341,6.0\n137,342,6.5\n137,343,7.0\n137,344,7.5\n137,345,8.0\n137,346,8.5\n137,347,9.0\n137,348,9.5\n137,349,10.0\n137,350,10.5\n137,351,10.0\n137,352,9.5\n137,353,9.0\n137,354,8.5\n137,355,8.0\n137,356,7.5\n137,357,7.0\n137,358,6.5\n137,359,6.0\n137,360,5.5\n137,361,5.0\n137,362,4.5\n137,363,5.0\n137,364,5.5\n137,365,6.0\n137,366,6.5\n137,367,7.0\n137,368,7.5\n137,369,8.0\n137,370,8.5\n137,371,9.0\n137,372,9.5\n137,373,10.0\n137,374,10.5\n137,375,11.0\n137,376,10.5\n137,377,10.0\n137,378,9.5\n137,379,9.0\n137,380,8.5\n137,381,8.0\n137,382,7.5\n137,383,7.0\n137,384,6.5\n137,385,6.0\n137,386,5.5\n137,387,5.0\n137,388,5.5\n137,389,6.0\n137,390,6.5\n137,391,7.0\n137,392,7.5\n137,393,8.0\n137,394,8.5\n137,395,9.0\n137,396,9.5\n137,397,10.0\n137,398,10.5\n137,399,11.0\n137,400,11.5\n137,401,11.0\n137,402,10.5\n137,403,10.0\n137,404,9.5\n137,405,9.0\n137,406,8.5\n137,407,8.0\n137,408,7.5\n137,409,7.0\n137,410,6.5\n137,411,6.0\n137,412,5.5\n137,413,6.0\n137,414,6.5\n137,415,7.0\n137,416,7.5\n137,417,8.0\n137,418,8.5\n137,419,9.0\n137,420,9.5\n137,421,10.0\n137,422,10.5\n137,423,11.0\n137,424,11.5\n137,425,12.0\n137,426,11.5\n137,427,11.0\n137,428,10.5\n137,429,10.0\n137,430,9.5\n137,431,9.0\n137,432,8.5\n137,433,8.0\n137,434,7.5\n137,435,7.0\n137,436,6.5\n137,437,6.0\n137,438,6.5\n137,439,7.0\n137,440,7.5\n137,441,8.0\n137,442,8.5\n137,443,9.0\n137,444,9.5\n137,445,10.0\n137,446,10.5\n137,447,11.0\n137,448,11.5\n137,449,12.0\n137,450,12.5\n137,451,12.0\n137,452,11.5\n137,453,11.0\n137,454,10.5\n137,455,10.0\n137,456,9.5\n137,457,9.0\n137,458,8.5\n137,459,8.0\n137,460,7.5\n137,461,7.0\n137,462,6.5\n137,463,7.0\n137,464,7.5\n137,465,8.0\n137,466,8.5\n137,467,9.0\n137,468,9.5\n137,469,10.0\n137,470,10.5\n137,471,11.0\n137,472,11.5\n137,473,12.0\n137,474,12.5\n137,475,13.0\n137,476,12.5\n137,477,12.0\n137,478,11.5\n137,479,11.0\n137,480,10.5\n137,481,10.0\n137,482,9.5\n137,483,9.0\n137,484,8.5\n137,485,8.0\n137,486,7.5\n137,487,7.0\n137,488,7.5\n137,489,8.0\n137,490,8.5\n137,491,9.0\n137,492,9.5\n137,493,10.0\n137,494,10.5\n137,495,11.0\n137,496,11.5\n137,497,12.0\n137,498,12.5\n137,499,13.0\n137,500,13.5\n137,501,13.0\n137,502,12.5\n137,503,12.0\n137,504,11.5\n137,505,11.0\n137,506,10.5\n137,507,10.0\n137,508,9.5\n137,509,9.0\n137,510,8.5\n137,511,8.0\n137,512,7.5\n137,513,8.0\n137,514,8.5\n137,515,9.0\n137,516,9.5\n137,517,10.0\n137,518,10.5\n137,519,11.0\n137,520,11.5\n137,521,12.0\n137,522,12.5\n137,523,13.0\n137,524,13.5\n137,525,14.0\n137,526,13.5\n137,527,13.0\n137,528,12.5\n137,529,12.0\n137,530,11.5\n137,531,11.0\n137,532,10.5\n137,533,10.0\n137,534,9.5\n137,535,9.0\n137,536,8.5\n137,537,8.0\n137,538,8.5\n137,539,9.0\n137,540,9.5\n137,541,10.0\n137,542,10.5\n137,543,11.0\n137,544,11.5\n137,545,12.0\n137,546,12.5\n137,547,13.0\n137,548,13.5\n137,549,14.0\n137,550,14.5\n137,551,14.0\n137,552,13.5\n137,553,13.0\n137,554,12.5\n137,555,12.0\n137,556,11.5\n137,557,11.0\n137,558,10.5\n137,559,10.0\n137,560,9.5\n137,561,9.0\n137,562,8.5\n137,563,9.0\n137,564,9.5\n137,565,10.0\n137,566,10.5\n137,567,11.0\n137,568,11.5\n137,569,12.0\n137,570,12.5\n137,571,13.0\n137,572,13.5\n137,573,14.0\n137,574,14.5\n137,575,15.0\n137,576,14.5\n137,577,14.0\n137,578,13.5\n137,579,13.0\n137,580,12.5\n137,581,12.0\n137,582,11.5\n137,583,11.0\n137,584,10.5\n137,585,10.0\n137,586,9.5\n137,587,9.0\n137,588,9.5\n137,589,10.0\n137,590,10.5\n137,591,11.0\n137,592,11.5\n137,593,12.0\n137,594,12.5\n137,595,13.0\n137,596,13.5\n137,597,14.0\n137,598,14.5\n137,599,15.0\n137,600,15.5\n137,601,15.0\n137,602,14.5\n137,603,14.0\n137,604,13.5\n137,605,13.0\n137,606,12.5\n137,607,12.0\n137,608,11.5\n137,609,11.0\n137,610,10.5\n137,611,10.0\n137,612,9.5\n137,613,10.0\n137,614,10.5\n137,615,11.0\n137,616,11.5\n137,617,12.0\n137,618,12.5\n137,619,13.0\n137,620,13.5\n137,621,14.0\n137,622,14.5\n137,623,15.0\n137,624,15.5\n138,0,9.0\n138,1,8.5\n138,2,8.0\n138,3,7.5\n138,4,7.0\n138,5,6.5\n138,6,6.0\n138,7,5.5\n138,8,5.0\n138,9,4.5\n138,10,4.0\n138,11,3.5\n138,12,3.0\n138,13,2.5\n138,14,3.0\n138,15,3.5\n138,16,4.0\n138,17,4.5\n138,18,5.0\n138,19,5.5\n138,20,6.0\n138,21,6.5\n138,22,7.0\n138,23,7.5\n138,24,8.0\n138,25,8.5\n138,26,8.0\n138,27,7.5\n138,28,7.0\n138,29,6.5\n138,30,6.0\n138,31,5.5\n138,32,5.0\n138,33,4.5\n138,34,4.0\n138,35,3.5\n138,36,3.0\n138,37,2.5\n138,38,2.0\n138,39,2.5\n138,40,3.0\n138,41,3.5\n138,42,4.0\n138,43,4.5\n138,44,5.0\n138,45,5.5\n138,46,6.0\n138,47,6.5\n138,48,7.0\n138,49,7.5\n138,50,8.0\n138,51,7.5\n138,52,7.0\n138,53,6.5\n138,54,6.0\n138,55,5.5\n138,56,5.0\n138,57,4.5\n138,58,4.0\n138,59,3.5\n138,60,3.0\n138,61,2.5\n138,62,2.0\n138,63,1.5\n138,64,2.0\n138,65,2.5\n138,66,3.0\n138,67,3.5\n138,68,4.0\n138,69,4.5\n138,70,5.0\n138,71,5.5\n138,72,6.0\n138,73,6.5\n138,74,7.0\n138,75,7.5\n138,76,7.0\n138,77,6.5\n138,78,6.0\n138,79,5.5\n138,80,5.0\n138,81,4.5\n138,82,4.0\n138,83,3.5\n138,84,3.0\n138,85,2.5\n138,86,2.0\n138,87,1.5\n138,88,1.0\n138,89,1.5\n138,90,2.0\n138,91,2.5\n138,92,3.0\n138,93,3.5\n138,94,4.0\n138,95,4.5\n138,96,5.0\n138,97,5.5\n138,98,6.0\n138,99,6.5\n138,100,7.0\n138,101,6.5\n138,102,6.0\n138,103,5.5\n138,104,5.0\n138,105,4.5\n138,106,4.0\n138,107,3.5\n138,108,3.0\n138,109,2.5\n138,110,2.0\n138,111,1.5\n138,112,1.0\n138,113,0.5\n138,114,1.0\n138,115,1.5\n138,116,2.0\n138,117,2.5\n138,118,3.0\n138,119,3.5\n138,120,4.0\n138,121,4.5\n138,122,5.0\n138,123,5.5\n138,124,6.0\n138,125,6.5\n138,126,6.0\n138,127,5.5\n138,128,5.0\n138,129,4.5\n138,130,4.0\n138,131,3.5\n138,132,3.0\n138,133,2.5\n138,134,2.0\n138,135,1.5\n138,136,1.0\n138,137,0.5\n138,138,0\n138,139,0.5\n138,140,1.0\n138,141,1.5\n138,142,2.0\n138,143,2.5\n138,144,3.0\n138,145,3.5\n138,146,4.0\n138,147,4.5\n138,148,5.0\n138,149,5.5\n138,150,7.0\n138,151,6.5\n138,152,6.0\n138,153,5.5\n138,154,5.0\n138,155,4.5\n138,156,4.0\n138,157,3.5\n138,158,3.0\n138,159,2.5\n138,160,2.0\n138,161,1.5\n138,162,1.0\n138,163,0.5\n138,164,1.0\n138,165,1.5\n138,166,2.0\n138,167,2.5\n138,168,3.0\n138,169,3.5\n138,170,4.0\n138,171,4.5\n138,172,5.0\n138,173,5.5\n138,174,6.0\n138,175,7.5\n138,176,7.0\n138,177,6.5\n138,178,6.0\n138,179,5.5\n138,180,5.0\n138,181,4.5\n138,182,4.0\n138,183,3.5\n138,184,3.0\n138,185,2.5\n138,186,2.0\n138,187,1.5\n138,188,1.0\n138,189,1.5\n138,190,2.0\n138,191,2.5\n138,192,3.0\n138,193,3.5\n138,194,4.0\n138,195,4.5\n138,196,5.0\n138,197,5.5\n138,198,6.0\n138,199,6.5\n138,200,8.0\n138,201,7.5\n138,202,7.0\n138,203,6.5\n138,204,6.0\n138,205,5.5\n138,206,5.0\n138,207,4.5\n138,208,4.0\n138,209,3.5\n138,210,3.0\n138,211,2.5\n138,212,2.0\n138,213,1.5\n138,214,2.0\n138,215,2.5\n138,216,3.0\n138,217,3.5\n138,218,4.0\n138,219,4.5\n138,220,5.0\n138,221,5.5\n138,222,6.0\n138,223,6.5\n138,224,7.0\n138,225,8.5\n138,226,8.0\n138,227,7.5\n138,228,7.0\n138,229,6.5\n138,230,6.0\n138,231,5.5\n138,232,5.0\n138,233,4.5\n138,234,4.0\n138,235,3.5\n138,236,3.0\n138,237,2.5\n138,238,2.0\n138,239,2.5\n138,240,3.0\n138,241,3.5\n138,242,4.0\n138,243,4.5\n138,244,5.0\n138,245,5.5\n138,246,6.0\n138,247,6.5\n138,248,7.0\n138,249,7.5\n138,250,9.0\n138,251,8.5\n138,252,8.0\n138,253,7.5\n138,254,7.0\n138,255,6.5\n138,256,6.0\n138,257,5.5\n138,258,5.0\n138,259,4.5\n138,260,4.0\n138,261,3.5\n138,262,3.0\n138,263,2.5\n138,264,3.0\n138,265,3.5\n138,266,4.0\n138,267,4.5\n138,268,5.0\n138,269,5.5\n138,270,6.0\n138,271,6.5\n138,272,7.0\n138,273,7.5\n138,274,8.0\n138,275,9.5\n138,276,9.0\n138,277,8.5\n138,278,8.0\n138,279,7.5\n138,280,7.0\n138,281,6.5\n138,282,6.0\n138,283,5.5\n138,284,5.0\n138,285,4.5\n138,286,4.0\n138,287,3.5\n138,288,3.0\n138,289,3.5\n138,290,4.0\n138,291,4.5\n138,292,5.0\n138,293,5.5\n138,294,6.0\n138,295,6.5\n138,296,7.0\n138,297,7.5\n138,298,8.0\n138,299,8.5\n138,300,10.0\n138,301,9.5\n138,302,9.0\n138,303,8.5\n138,304,8.0\n138,305,7.5\n138,306,7.0\n138,307,6.5\n138,308,6.0\n138,309,5.5\n138,310,5.0\n138,311,4.5\n138,312,4.0\n138,313,3.5\n138,314,4.0\n138,315,4.5\n138,316,5.0\n138,317,5.5\n138,318,6.0\n138,319,6.5\n138,320,7.0\n138,321,7.5\n138,322,8.0\n138,323,8.5\n138,324,9.0\n138,325,10.5\n138,326,10.0\n138,327,9.5\n138,328,9.0\n138,329,8.5\n138,330,8.0\n138,331,7.5\n138,332,7.0\n138,333,6.5\n138,334,6.0\n138,335,5.5\n138,336,5.0\n138,337,4.5\n138,338,4.0\n138,339,4.5\n138,340,5.0\n138,341,5.5\n138,342,6.0\n138,343,6.5\n138,344,7.0\n138,345,7.5\n138,346,8.0\n138,347,8.5\n138,348,9.0\n138,349,9.5\n138,350,11.0\n138,351,10.5\n138,352,10.0\n138,353,9.5\n138,354,9.0\n138,355,8.5\n138,356,8.0\n138,357,7.5\n138,358,7.0\n138,359,6.5\n138,360,6.0\n138,361,5.5\n138,362,5.0\n138,363,4.5\n138,364,5.0\n138,365,5.5\n138,366,6.0\n138,367,6.5\n138,368,7.0\n138,369,7.5\n138,370,8.0\n138,371,8.5\n138,372,9.0\n138,373,9.5\n138,374,10.0\n138,375,11.5\n138,376,11.0\n138,377,10.5\n138,378,10.0\n138,379,9.5\n138,380,9.0\n138,381,8.5\n138,382,8.0\n138,383,7.5\n138,384,7.0\n138,385,6.5\n138,386,6.0\n138,387,5.5\n138,388,5.0\n138,389,5.5\n138,390,6.0\n138,391,6.5\n138,392,7.0\n138,393,7.5\n138,394,8.0\n138,395,8.5\n138,396,9.0\n138,397,9.5\n138,398,10.0\n138,399,10.5\n138,400,12.0\n138,401,11.5\n138,402,11.0\n138,403,10.5\n138,404,10.0\n138,405,9.5\n138,406,9.0\n138,407,8.5\n138,408,8.0\n138,409,7.5\n138,410,7.0\n138,411,6.5\n138,412,6.0\n138,413,5.5\n138,414,6.0\n138,415,6.5\n138,416,7.0\n138,417,7.5\n138,418,8.0\n138,419,8.5\n138,420,9.0\n138,421,9.5\n138,422,10.0\n138,423,10.5\n138,424,11.0\n138,425,12.5\n138,426,12.0\n138,427,11.5\n138,428,11.0\n138,429,10.5\n138,430,10.0\n138,431,9.5\n138,432,9.0\n138,433,8.5\n138,434,8.0\n138,435,7.5\n138,436,7.0\n138,437,6.5\n138,438,6.0\n138,439,6.5\n138,440,7.0\n138,441,7.5\n138,442,8.0\n138,443,8.5\n138,444,9.0\n138,445,9.5\n138,446,10.0\n138,447,10.5\n138,448,11.0\n138,449,11.5\n138,450,13.0\n138,451,12.5\n138,452,12.0\n138,453,11.5\n138,454,11.0\n138,455,10.5\n138,456,10.0\n138,457,9.5\n138,458,9.0\n138,459,8.5\n138,460,8.0\n138,461,7.5\n138,462,7.0\n138,463,6.5\n138,464,7.0\n138,465,7.5\n138,466,8.0\n138,467,8.5\n138,468,9.0\n138,469,9.5\n138,470,10.0\n138,471,10.5\n138,472,11.0\n138,473,11.5\n138,474,12.0\n138,475,13.5\n138,476,13.0\n138,477,12.5\n138,478,12.0\n138,479,11.5\n138,480,11.0\n138,481,10.5\n138,482,10.0\n138,483,9.5\n138,484,9.0\n138,485,8.5\n138,486,8.0\n138,487,7.5\n138,488,7.0\n138,489,7.5\n138,490,8.0\n138,491,8.5\n138,492,9.0\n138,493,9.5\n138,494,10.0\n138,495,10.5\n138,496,11.0\n138,497,11.5\n138,498,12.0\n138,499,12.5\n138,500,14.0\n138,501,13.5\n138,502,13.0\n138,503,12.5\n138,504,12.0\n138,505,11.5\n138,506,11.0\n138,507,10.5\n138,508,10.0\n138,509,9.5\n138,510,9.0\n138,511,8.5\n138,512,8.0\n138,513,7.5\n138,514,8.0\n138,515,8.5\n138,516,9.0\n138,517,9.5\n138,518,10.0\n138,519,10.5\n138,520,11.0\n138,521,11.5\n138,522,12.0\n138,523,12.5\n138,524,13.0\n138,525,14.5\n138,526,14.0\n138,527,13.5\n138,528,13.0\n138,529,12.5\n138,530,12.0\n138,531,11.5\n138,532,11.0\n138,533,10.5\n138,534,10.0\n138,535,9.5\n138,536,9.0\n138,537,8.5\n138,538,8.0\n138,539,8.5\n138,540,9.0\n138,541,9.5\n138,542,10.0\n138,543,10.5\n138,544,11.0\n138,545,11.5\n138,546,12.0\n138,547,12.5\n138,548,13.0\n138,549,13.5\n138,550,15.0\n138,551,14.5\n138,552,14.0\n138,553,13.5\n138,554,13.0\n138,555,12.5\n138,556,12.0\n138,557,11.5\n138,558,11.0\n138,559,10.5\n138,560,10.0\n138,561,9.5\n138,562,9.0\n138,563,8.5\n138,564,9.0\n138,565,9.5\n138,566,10.0\n138,567,10.5\n138,568,11.0\n138,569,11.5\n138,570,12.0\n138,571,12.5\n138,572,13.0\n138,573,13.5\n138,574,14.0\n138,575,15.5\n138,576,15.0\n138,577,14.5\n138,578,14.0\n138,579,13.5\n138,580,13.0\n138,581,12.5\n138,582,12.0\n138,583,11.5\n138,584,11.0\n138,585,10.5\n138,586,10.0\n138,587,9.5\n138,588,9.0\n138,589,9.5\n138,590,10.0\n138,591,10.5\n138,592,11.0\n138,593,11.5\n138,594,12.0\n138,595,12.5\n138,596,13.0\n138,597,13.5\n138,598,14.0\n138,599,14.5\n138,600,16.0\n138,601,15.5\n138,602,15.0\n138,603,14.5\n138,604,14.0\n138,605,13.5\n138,606,13.0\n138,607,12.5\n138,608,12.0\n138,609,11.5\n138,610,11.0\n138,611,10.5\n138,612,10.0\n138,613,9.5\n138,614,10.0\n138,615,10.5\n138,616,11.0\n138,617,11.5\n138,618,12.0\n138,619,12.5\n138,620,13.0\n138,621,13.5\n138,622,14.0\n138,623,14.5\n138,624,15.0\n139,0,9.5\n139,1,9.0\n139,2,8.5\n139,3,8.0\n139,4,7.5\n139,5,7.0\n139,6,6.5\n139,7,6.0\n139,8,5.5\n139,9,5.0\n139,10,4.5\n139,11,4.0\n139,12,3.5\n139,13,3.0\n139,14,2.5\n139,15,3.0\n139,16,3.5\n139,17,4.0\n139,18,4.5\n139,19,5.0\n139,20,5.5\n139,21,6.0\n139,22,6.5\n139,23,7.0\n139,24,7.5\n139,25,9.0\n139,26,8.5\n139,27,8.0\n139,28,7.5\n139,29,7.0\n139,30,6.5\n139,31,6.0\n139,32,5.5\n139,33,5.0\n139,34,4.5\n139,35,4.0\n139,36,3.5\n139,37,3.0\n139,38,2.5\n139,39,2.0\n139,40,2.5\n139,41,3.0\n139,42,3.5\n139,43,4.0\n139,44,4.5\n139,45,5.0\n139,46,5.5\n139,47,6.0\n139,48,6.5\n139,49,7.0\n139,50,8.5\n139,51,8.0\n139,52,7.5\n139,53,7.0\n139,54,6.5\n139,55,6.0\n139,56,5.5\n139,57,5.0\n139,58,4.5\n139,59,4.0\n139,60,3.5\n139,61,3.0\n139,62,2.5\n139,63,2.0\n139,64,1.5\n139,65,2.0\n139,66,2.5\n139,67,3.0\n139,68,3.5\n139,69,4.0\n139,70,4.5\n139,71,5.0\n139,72,5.5\n139,73,6.0\n139,74,6.5\n139,75,8.0\n139,76,7.5\n139,77,7.0\n139,78,6.5\n139,79,6.0\n139,80,5.5\n139,81,5.0\n139,82,4.5\n139,83,4.0\n139,84,3.5\n139,85,3.0\n139,86,2.5\n139,87,2.0\n139,88,1.5\n139,89,1.0\n139,90,1.5\n139,91,2.0\n139,92,2.5\n139,93,3.0\n139,94,3.5\n139,95,4.0\n139,96,4.5\n139,97,5.0\n139,98,5.5\n139,99,6.0\n139,100,7.5\n139,101,7.0\n139,102,6.5\n139,103,6.0\n139,104,5.5\n139,105,5.0\n139,106,4.5\n139,107,4.0\n139,108,3.5\n139,109,3.0\n139,110,2.5\n139,111,2.0\n139,112,1.5\n139,113,1.0\n139,114,0.5\n139,115,1.0\n139,116,1.5\n139,117,2.0\n139,118,2.5\n139,119,3.0\n139,120,3.5\n139,121,4.0\n139,122,4.5\n139,123,5.0\n139,124,5.5\n139,125,7.0\n139,126,6.5\n139,127,6.0\n139,128,5.5\n139,129,5.0\n139,130,4.5\n139,131,4.0\n139,132,3.5\n139,133,3.0\n139,134,2.5\n139,135,2.0\n139,136,1.5\n139,137,1.0\n139,138,0.5\n139,139,0\n139,140,0.5\n139,141,1.0\n139,142,1.5\n139,143,2.0\n139,144,2.5\n139,145,3.0\n139,146,3.5\n139,147,4.0\n139,148,4.5\n139,149,5.0\n139,150,7.5\n139,151,7.0\n139,152,6.5\n139,153,6.0\n139,154,5.5\n139,155,5.0\n139,156,4.5\n139,157,4.0\n139,158,3.5\n139,159,3.0\n139,160,2.5\n139,161,2.0\n139,162,1.5\n139,163,1.0\n139,164,0.5\n139,165,1.0\n139,166,1.5\n139,167,2.0\n139,168,2.5\n139,169,3.0\n139,170,3.5\n139,171,4.0\n139,172,4.5\n139,173,5.0\n139,174,5.5\n139,175,8.0\n139,176,7.5\n139,177,7.0\n139,178,6.5\n139,179,6.0\n139,180,5.5\n139,181,5.0\n139,182,4.5\n139,183,4.0\n139,184,3.5\n139,185,3.0\n139,186,2.5\n139,187,2.0\n139,188,1.5\n139,189,1.0\n139,190,1.5\n139,191,2.0\n139,192,2.5\n139,193,3.0\n139,194,3.5\n139,195,4.0\n139,196,4.5\n139,197,5.0\n139,198,5.5\n139,199,6.0\n139,200,8.5\n139,201,8.0\n139,202,7.5\n139,203,7.0\n139,204,6.5\n139,205,6.0\n139,206,5.5\n139,207,5.0\n139,208,4.5\n139,209,4.0\n139,210,3.5\n139,211,3.0\n139,212,2.5\n139,213,2.0\n139,214,1.5\n139,215,2.0\n139,216,2.5\n139,217,3.0\n139,218,3.5\n139,219,4.0\n139,220,4.5\n139,221,5.0\n139,222,5.5\n139,223,6.0\n139,224,6.5\n139,225,9.0\n139,226,8.5\n139,227,8.0\n139,228,7.5\n139,229,7.0\n139,230,6.5\n139,231,6.0\n139,232,5.5\n139,233,5.0\n139,234,4.5\n139,235,4.0\n139,236,3.5\n139,237,3.0\n139,238,2.5\n139,239,2.0\n139,240,2.5\n139,241,3.0\n139,242,3.5\n139,243,4.0\n139,244,4.5\n139,245,5.0\n139,246,5.5\n139,247,6.0\n139,248,6.5\n139,249,7.0\n139,250,9.5\n139,251,9.0\n139,252,8.5\n139,253,8.0\n139,254,7.5\n139,255,7.0\n139,256,6.5\n139,257,6.0\n139,258,5.5\n139,259,5.0\n139,260,4.5\n139,261,4.0\n139,262,3.5\n139,263,3.0\n139,264,2.5\n139,265,3.0\n139,266,3.5\n139,267,4.0\n139,268,4.5\n139,269,5.0\n139,270,5.5\n139,271,6.0\n139,272,6.5\n139,273,7.0\n139,274,7.5\n139,275,10.0\n139,276,9.5\n139,277,9.0\n139,278,8.5\n139,279,8.0\n139,280,7.5\n139,281,7.0\n139,282,6.5\n139,283,6.0\n139,284,5.5\n139,285,5.0\n139,286,4.5\n139,287,4.0\n139,288,3.5\n139,289,3.0\n139,290,3.5\n139,291,4.0\n139,292,4.5\n139,293,5.0\n139,294,5.5\n139,295,6.0\n139,296,6.5\n139,297,7.0\n139,298,7.5\n139,299,8.0\n139,300,10.5\n139,301,10.0\n139,302,9.5\n139,303,9.0\n139,304,8.5\n139,305,8.0\n139,306,7.5\n139,307,7.0\n139,308,6.5\n139,309,6.0\n139,310,5.5\n139,311,5.0\n139,312,4.5\n139,313,4.0\n139,314,3.5\n139,315,4.0\n139,316,4.5\n139,317,5.0\n139,318,5.5\n139,319,6.0\n139,320,6.5\n139,321,7.0\n139,322,7.5\n139,323,8.0\n139,324,8.5\n139,325,11.0\n139,326,10.5\n139,327,10.0\n139,328,9.5\n139,329,9.0\n139,330,8.5\n139,331,8.0\n139,332,7.5\n139,333,7.0\n139,334,6.5\n139,335,6.0\n139,336,5.5\n139,337,5.0\n139,338,4.5\n139,339,4.0\n139,340,4.5\n139,341,5.0\n139,342,5.5\n139,343,6.0\n139,344,6.5\n139,345,7.0\n139,346,7.5\n139,347,8.0\n139,348,8.5\n139,349,9.0\n139,350,11.5\n139,351,11.0\n139,352,10.5\n139,353,10.0\n139,354,9.5\n139,355,9.0\n139,356,8.5\n139,357,8.0\n139,358,7.5\n139,359,7.0\n139,360,6.5\n139,361,6.0\n139,362,5.5\n139,363,5.0\n139,364,4.5\n139,365,5.0\n139,366,5.5\n139,367,6.0\n139,368,6.5\n139,369,7.0\n139,370,7.5\n139,371,8.0\n139,372,8.5\n139,373,9.0\n139,374,9.5\n139,375,12.0\n139,376,11.5\n139,377,11.0\n139,378,10.5\n139,379,10.0\n139,380,9.5\n139,381,9.0\n139,382,8.5\n139,383,8.0\n139,384,7.5\n139,385,7.0\n139,386,6.5\n139,387,6.0\n139,388,5.5\n139,389,5.0\n139,390,5.5\n139,391,6.0\n139,392,6.5\n139,393,7.0\n139,394,7.5\n139,395,8.0\n139,396,8.5\n139,397,9.0\n139,398,9.5\n139,399,10.0\n139,400,12.5\n139,401,12.0\n139,402,11.5\n139,403,11.0\n139,404,10.5\n139,405,10.0\n139,406,9.5\n139,407,9.0\n139,408,8.5\n139,409,8.0\n139,410,7.5\n139,411,7.0\n139,412,6.5\n139,413,6.0\n139,414,5.5\n139,415,6.0\n139,416,6.5\n139,417,7.0\n139,418,7.5\n139,419,8.0\n139,420,8.5\n139,421,9.0\n139,422,9.5\n139,423,10.0\n139,424,10.5\n139,425,13.0\n139,426,12.5\n139,427,12.0\n139,428,11.5\n139,429,11.0\n139,430,10.5\n139,431,10.0\n139,432,9.5\n139,433,9.0\n139,434,8.5\n139,435,8.0\n139,436,7.5\n139,437,7.0\n139,438,6.5\n139,439,6.0\n139,440,6.5\n139,441,7.0\n139,442,7.5\n139,443,8.0\n139,444,8.5\n139,445,9.0\n139,446,9.5\n139,447,10.0\n139,448,10.5\n139,449,11.0\n139,450,13.5\n139,451,13.0\n139,452,12.5\n139,453,12.0\n139,454,11.5\n139,455,11.0\n139,456,10.5\n139,457,10.0\n139,458,9.5\n139,459,9.0\n139,460,8.5\n139,461,8.0\n139,462,7.5\n139,463,7.0\n139,464,6.5\n139,465,7.0\n139,466,7.5\n139,467,8.0\n139,468,8.5\n139,469,9.0\n139,470,9.5\n139,471,10.0\n139,472,10.5\n139,473,11.0\n139,474,11.5\n139,475,14.0\n139,476,13.5\n139,477,13.0\n139,478,12.5\n139,479,12.0\n139,480,11.5\n139,481,11.0\n139,482,10.5\n139,483,10.0\n139,484,9.5\n139,485,9.0\n139,486,8.5\n139,487,8.0\n139,488,7.5\n139,489,7.0\n139,490,7.5\n139,491,8.0\n139,492,8.5\n139,493,9.0\n139,494,9.5\n139,495,10.0\n139,496,10.5\n139,497,11.0\n139,498,11.5\n139,499,12.0\n139,500,14.5\n139,501,14.0\n139,502,13.5\n139,503,13.0\n139,504,12.5\n139,505,12.0\n139,506,11.5\n139,507,11.0\n139,508,10.5\n139,509,10.0\n139,510,9.5\n139,511,9.0\n139,512,8.5\n139,513,8.0\n139,514,7.5\n139,515,8.0\n139,516,8.5\n139,517,9.0\n139,518,9.5\n139,519,10.0\n139,520,10.5\n139,521,11.0\n139,522,11.5\n139,523,12.0\n139,524,12.5\n139,525,15.0\n139,526,14.5\n139,527,14.0\n139,528,13.5\n139,529,13.0\n139,530,12.5\n139,531,12.0\n139,532,11.5\n139,533,11.0\n139,534,10.5\n139,535,10.0\n139,536,9.5\n139,537,9.0\n139,538,8.5\n139,539,8.0\n139,540,8.5\n139,541,9.0\n139,542,9.5\n139,543,10.0\n139,544,10.5\n139,545,11.0\n139,546,11.5\n139,547,12.0\n139,548,12.5\n139,549,13.0\n139,550,15.5\n139,551,15.0\n139,552,14.5\n139,553,14.0\n139,554,13.5\n139,555,13.0\n139,556,12.5\n139,557,12.0\n139,558,11.5\n139,559,11.0\n139,560,10.5\n139,561,10.0\n139,562,9.5\n139,563,9.0\n139,564,8.5\n139,565,9.0\n139,566,9.5\n139,567,10.0\n139,568,10.5\n139,569,11.0\n139,570,11.5\n139,571,12.0\n139,572,12.5\n139,573,13.0\n139,574,13.5\n139,575,16.0\n139,576,15.5\n139,577,15.0\n139,578,14.5\n139,579,14.0\n139,580,13.5\n139,581,13.0\n139,582,12.5\n139,583,12.0\n139,584,11.5\n139,585,11.0\n139,586,10.5\n139,587,10.0\n139,588,9.5\n139,589,9.0\n139,590,9.5\n139,591,10.0\n139,592,10.5\n139,593,11.0\n139,594,11.5\n139,595,12.0\n139,596,12.5\n139,597,13.0\n139,598,13.5\n139,599,14.0\n139,600,16.5\n139,601,16.0\n139,602,15.5\n139,603,15.0\n139,604,14.5\n139,605,14.0\n139,606,13.5\n139,607,13.0\n139,608,12.5\n139,609,12.0\n139,610,11.5\n139,611,11.0\n139,612,10.5\n139,613,10.0\n139,614,9.5\n139,615,10.0\n139,616,10.5\n139,617,11.0\n139,618,11.5\n139,619,12.0\n139,620,12.5\n139,621,13.0\n139,622,13.5\n139,623,14.0\n139,624,14.5\n140,0,10.0\n140,1,9.5\n140,2,9.0\n140,3,8.5\n140,4,8.0\n140,5,7.5\n140,6,7.0\n140,7,6.5\n140,8,6.0\n140,9,5.5\n140,10,5.0\n140,11,4.5\n140,12,4.0\n140,13,3.5\n140,14,3.0\n140,15,2.5\n140,16,3.0\n140,17,3.5\n140,18,4.0\n140,19,4.5\n140,20,5.0\n140,21,5.5\n140,22,6.0\n140,23,6.5\n140,24,7.0\n140,25,9.5\n140,26,9.0\n140,27,8.5\n140,28,8.0\n140,29,7.5\n140,30,7.0\n140,31,6.5\n140,32,6.0\n140,33,5.5\n140,34,5.0\n140,35,4.5\n140,36,4.0\n140,37,3.5\n140,38,3.0\n140,39,2.5\n140,40,2.0\n140,41,2.5\n140,42,3.0\n140,43,3.5\n140,44,4.0\n140,45,4.5\n140,46,5.0\n140,47,5.5\n140,48,6.0\n140,49,6.5\n140,50,9.0\n140,51,8.5\n140,52,8.0\n140,53,7.5\n140,54,7.0\n140,55,6.5\n140,56,6.0\n140,57,5.5\n140,58,5.0\n140,59,4.5\n140,60,4.0\n140,61,3.5\n140,62,3.0\n140,63,2.5\n140,64,2.0\n140,65,1.5\n140,66,2.0\n140,67,2.5\n140,68,3.0\n140,69,3.5\n140,70,4.0\n140,71,4.5\n140,72,5.0\n140,73,5.5\n140,74,6.0\n140,75,8.5\n140,76,8.0\n140,77,7.5\n140,78,7.0\n140,79,6.5\n140,80,6.0\n140,81,5.5\n140,82,5.0\n140,83,4.5\n140,84,4.0\n140,85,3.5\n140,86,3.0\n140,87,2.5\n140,88,2.0\n140,89,1.5\n140,90,1.0\n140,91,1.5\n140,92,2.0\n140,93,2.5\n140,94,3.0\n140,95,3.5\n140,96,4.0\n140,97,4.5\n140,98,5.0\n140,99,5.5\n140,100,8.0\n140,101,7.5\n140,102,7.0\n140,103,6.5\n140,104,6.0\n140,105,5.5\n140,106,5.0\n140,107,4.5\n140,108,4.0\n140,109,3.5\n140,110,3.0\n140,111,2.5\n140,112,2.0\n140,113,1.5\n140,114,1.0\n140,115,0.5\n140,116,1.0\n140,117,1.5\n140,118,2.0\n140,119,2.5\n140,120,3.0\n140,121,3.5\n140,122,4.0\n140,123,4.5\n140,124,5.0\n140,125,7.5\n140,126,7.0\n140,127,6.5\n140,128,6.0\n140,129,5.5\n140,130,5.0\n140,131,4.5\n140,132,4.0\n140,133,3.5\n140,134,3.0\n140,135,2.5\n140,136,2.0\n140,137,1.5\n140,138,1.0\n140,139,0.5\n140,140,0\n140,141,0.5\n140,142,1.0\n140,143,1.5\n140,144,2.0\n140,145,2.5\n140,146,3.0\n140,147,3.5\n140,148,4.0\n140,149,4.5\n140,150,8.0\n140,151,7.5\n140,152,7.0\n140,153,6.5\n140,154,6.0\n140,155,5.5\n140,156,5.0\n140,157,4.5\n140,158,4.0\n140,159,3.5\n140,160,3.0\n140,161,2.5\n140,162,2.0\n140,163,1.5\n140,164,1.0\n140,165,0.5\n140,166,1.0\n140,167,1.5\n140,168,2.0\n140,169,2.5\n140,170,3.0\n140,171,3.5\n140,172,4.0\n140,173,4.5\n140,174,5.0\n140,175,8.5\n140,176,8.0\n140,177,7.5\n140,178,7.0\n140,179,6.5\n140,180,6.0\n140,181,5.5\n140,182,5.0\n140,183,4.5\n140,184,4.0\n140,185,3.5\n140,186,3.0\n140,187,2.5\n140,188,2.0\n140,189,1.5\n140,190,1.0\n140,191,1.5\n140,192,2.0\n140,193,2.5\n140,194,3.0\n140,195,3.5\n140,196,4.0\n140,197,4.5\n140,198,5.0\n140,199,5.5\n140,200,9.0\n140,201,8.5\n140,202,8.0\n140,203,7.5\n140,204,7.0\n140,205,6.5\n140,206,6.0\n140,207,5.5\n140,208,5.0\n140,209,4.5\n140,210,4.0\n140,211,3.5\n140,212,3.0\n140,213,2.5\n140,214,2.0\n140,215,1.5\n140,216,2.0\n140,217,2.5\n140,218,3.0\n140,219,3.5\n140,220,4.0\n140,221,4.5\n140,222,5.0\n140,223,5.5\n140,224,6.0\n140,225,9.5\n140,226,9.0\n140,227,8.5\n140,228,8.0\n140,229,7.5\n140,230,7.0\n140,231,6.5\n140,232,6.0\n140,233,5.5\n140,234,5.0\n140,235,4.5\n140,236,4.0\n140,237,3.5\n140,238,3.0\n140,239,2.5\n140,240,2.0\n140,241,2.5\n140,242,3.0\n140,243,3.5\n140,244,4.0\n140,245,4.5\n140,246,5.0\n140,247,5.5\n140,248,6.0\n140,249,6.5\n140,250,10.0\n140,251,9.5\n140,252,9.0\n140,253,8.5\n140,254,8.0\n140,255,7.5\n140,256,7.0\n140,257,6.5\n140,258,6.0\n140,259,5.5\n140,260,5.0\n140,261,4.5\n140,262,4.0\n140,263,3.5\n140,264,3.0\n140,265,2.5\n140,266,3.0\n140,267,3.5\n140,268,4.0\n140,269,4.5\n140,270,5.0\n140,271,5.5\n140,272,6.0\n140,273,6.5\n140,274,7.0\n140,275,10.5\n140,276,10.0\n140,277,9.5\n140,278,9.0\n140,279,8.5\n140,280,8.0\n140,281,7.5\n140,282,7.0\n140,283,6.5\n140,284,6.0\n140,285,5.5\n140,286,5.0\n140,287,4.5\n140,288,4.0\n140,289,3.5\n140,290,3.0\n140,291,3.5\n140,292,4.0\n140,293,4.5\n140,294,5.0\n140,295,5.5\n140,296,6.0\n140,297,6.5\n140,298,7.0\n140,299,7.5\n140,300,11.0\n140,301,10.5\n140,302,10.0\n140,303,9.5\n140,304,9.0\n140,305,8.5\n140,306,8.0\n140,307,7.5\n140,308,7.0\n140,309,6.5\n140,310,6.0\n140,311,5.5\n140,312,5.0\n140,313,4.5\n140,314,4.0\n140,315,3.5\n140,316,4.0\n140,317,4.5\n140,318,5.0\n140,319,5.5\n140,320,6.0\n140,321,6.5\n140,322,7.0\n140,323,7.5\n140,324,8.0\n140,325,11.5\n140,326,11.0\n140,327,10.5\n140,328,10.0\n140,329,9.5\n140,330,9.0\n140,331,8.5\n140,332,8.0\n140,333,7.5\n140,334,7.0\n140,335,6.5\n140,336,6.0\n140,337,5.5\n140,338,5.0\n140,339,4.5\n140,340,4.0\n140,341,4.5\n140,342,5.0\n140,343,5.5\n140,344,6.0\n140,345,6.5\n140,346,7.0\n140,347,7.5\n140,348,8.0\n140,349,8.5\n140,350,12.0\n140,351,11.5\n140,352,11.0\n140,353,10.5\n140,354,10.0\n140,355,9.5\n140,356,9.0\n140,357,8.5\n140,358,8.0\n140,359,7.5\n140,360,7.0\n140,361,6.5\n140,362,6.0\n140,363,5.5\n140,364,5.0\n140,365,4.5\n140,366,5.0\n140,367,5.5\n140,368,6.0\n140,369,6.5\n140,370,7.0\n140,371,7.5\n140,372,8.0\n140,373,8.5\n140,374,9.0\n140,375,12.5\n140,376,12.0\n140,377,11.5\n140,378,11.0\n140,379,10.5\n140,380,10.0\n140,381,9.5\n140,382,9.0\n140,383,8.5\n140,384,8.0\n140,385,7.5\n140,386,7.0\n140,387,6.5\n140,388,6.0\n140,389,5.5\n140,390,5.0\n140,391,5.5\n140,392,6.0\n140,393,6.5\n140,394,7.0\n140,395,7.5\n140,396,8.0\n140,397,8.5\n140,398,9.0\n140,399,9.5\n140,400,13.0\n140,401,12.5\n140,402,12.0\n140,403,11.5\n140,404,11.0\n140,405,10.5\n140,406,10.0\n140,407,9.5\n140,408,9.0\n140,409,8.5\n140,410,8.0\n140,411,7.5\n140,412,7.0\n140,413,6.5\n140,414,6.0\n140,415,5.5\n140,416,6.0\n140,417,6.5\n140,418,7.0\n140,419,7.5\n140,420,8.0\n140,421,8.5\n140,422,9.0\n140,423,9.5\n140,424,10.0\n140,425,13.5\n140,426,13.0\n140,427,12.5\n140,428,12.0\n140,429,11.5\n140,430,11.0\n140,431,10.5\n140,432,10.0\n140,433,9.5\n140,434,9.0\n140,435,8.5\n140,436,8.0\n140,437,7.5\n140,438,7.0\n140,439,6.5\n140,440,6.0\n140,441,6.5\n140,442,7.0\n140,443,7.5\n140,444,8.0\n140,445,8.5\n140,446,9.0\n140,447,9.5\n140,448,10.0\n140,449,10.5\n140,450,14.0\n140,451,13.5\n140,452,13.0\n140,453,12.5\n140,454,12.0\n140,455,11.5\n140,456,11.0\n140,457,10.5\n140,458,10.0\n140,459,9.5\n140,460,9.0\n140,461,8.5\n140,462,8.0\n140,463,7.5\n140,464,7.0\n140,465,6.5\n140,466,7.0\n140,467,7.5\n140,468,8.0\n140,469,8.5\n140,470,9.0\n140,471,9.5\n140,472,10.0\n140,473,10.5\n140,474,11.0\n140,475,14.5\n140,476,14.0\n140,477,13.5\n140,478,13.0\n140,479,12.5\n140,480,12.0\n140,481,11.5\n140,482,11.0\n140,483,10.5\n140,484,10.0\n140,485,9.5\n140,486,9.0\n140,487,8.5\n140,488,8.0\n140,489,7.5\n140,490,7.0\n140,491,7.5\n140,492,8.0\n140,493,8.5\n140,494,9.0\n140,495,9.5\n140,496,10.0\n140,497,10.5\n140,498,11.0\n140,499,11.5\n140,500,15.0\n140,501,14.5\n140,502,14.0\n140,503,13.5\n140,504,13.0\n140,505,12.5\n140,506,12.0\n140,507,11.5\n140,508,11.0\n140,509,10.5\n140,510,10.0\n140,511,9.5\n140,512,9.0\n140,513,8.5\n140,514,8.0\n140,515,7.5\n140,516,8.0\n140,517,8.5\n140,518,9.0\n140,519,9.5\n140,520,10.0\n140,521,10.5\n140,522,11.0\n140,523,11.5\n140,524,12.0\n140,525,15.5\n140,526,15.0\n140,527,14.5\n140,528,14.0\n140,529,13.5\n140,530,13.0\n140,531,12.5\n140,532,12.0\n140,533,11.5\n140,534,11.0\n140,535,10.5\n140,536,10.0\n140,537,9.5\n140,538,9.0\n140,539,8.5\n140,540,8.0\n140,541,8.5\n140,542,9.0\n140,543,9.5\n140,544,10.0\n140,545,10.5\n140,546,11.0\n140,547,11.5\n140,548,12.0\n140,549,12.5\n140,550,16.0\n140,551,15.5\n140,552,15.0\n140,553,14.5\n140,554,14.0\n140,555,13.5\n140,556,13.0\n140,557,12.5\n140,558,12.0\n140,559,11.5\n140,560,11.0\n140,561,10.5\n140,562,10.0\n140,563,9.5\n140,564,9.0\n140,565,8.5\n140,566,9.0\n140,567,9.5\n140,568,10.0\n140,569,10.5\n140,570,11.0\n140,571,11.5\n140,572,12.0\n140,573,12.5\n140,574,13.0\n140,575,16.5\n140,576,16.0\n140,577,15.5\n140,578,15.0\n140,579,14.5\n140,580,14.0\n140,581,13.5\n140,582,13.0\n140,583,12.5\n140,584,12.0\n140,585,11.5\n140,586,11.0\n140,587,10.5\n140,588,10.0\n140,589,9.5\n140,590,9.0\n140,591,9.5\n140,592,10.0\n140,593,10.5\n140,594,11.0\n140,595,11.5\n140,596,12.0\n140,597,12.5\n140,598,13.0\n140,599,13.5\n140,600,17.0\n140,601,16.5\n140,602,16.0\n140,603,15.5\n140,604,15.0\n140,605,14.5\n140,606,14.0\n140,607,13.5\n140,608,13.0\n140,609,12.5\n140,610,12.0\n140,611,11.5\n140,612,11.0\n140,613,10.5\n140,614,10.0\n140,615,9.5\n140,616,10.0\n140,617,10.5\n140,618,11.0\n140,619,11.5\n140,620,12.0\n140,621,12.5\n140,622,13.0\n140,623,13.5\n140,624,14.0\n141,0,10.5\n141,1,10.0\n141,2,9.5\n141,3,9.0\n141,4,8.5\n141,5,8.0\n141,6,7.5\n141,7,7.0\n141,8,6.5\n141,9,6.0\n141,10,5.5\n141,11,5.0\n141,12,4.5\n141,13,4.0\n141,14,3.5\n141,15,3.0\n141,16,2.5\n141,17,3.0\n141,18,3.5\n141,19,4.0\n141,20,4.5\n141,21,5.0\n141,22,5.5\n141,23,6.0\n141,24,6.5\n141,25,10.0\n141,26,9.5\n141,27,9.0\n141,28,8.5\n141,29,8.0\n141,30,7.5\n141,31,7.0\n141,32,6.5\n141,33,6.0\n141,34,5.5\n141,35,5.0\n141,36,4.5\n141,37,4.0\n141,38,3.5\n141,39,3.0\n141,40,2.5\n141,41,2.0\n141,42,2.5\n141,43,3.0\n141,44,3.5\n141,45,4.0\n141,46,4.5\n141,47,5.0\n141,48,5.5\n141,49,6.0\n141,50,9.5\n141,51,9.0\n141,52,8.5\n141,53,8.0\n141,54,7.5\n141,55,7.0\n141,56,6.5\n141,57,6.0\n141,58,5.5\n141,59,5.0\n141,60,4.5\n141,61,4.0\n141,62,3.5\n141,63,3.0\n141,64,2.5\n141,65,2.0\n141,66,1.5\n141,67,2.0\n141,68,2.5\n141,69,3.0\n141,70,3.5\n141,71,4.0\n141,72,4.5\n141,73,5.0\n141,74,5.5\n141,75,9.0\n141,76,8.5\n141,77,8.0\n141,78,7.5\n141,79,7.0\n141,80,6.5\n141,81,6.0\n141,82,5.5\n141,83,5.0\n141,84,4.5\n141,85,4.0\n141,86,3.5\n141,87,3.0\n141,88,2.5\n141,89,2.0\n141,90,1.5\n141,91,1.0\n141,92,1.5\n141,93,2.0\n141,94,2.5\n141,95,3.0\n141,96,3.5\n141,97,4.0\n141,98,4.5\n141,99,5.0\n141,100,8.5\n141,101,8.0\n141,102,7.5\n141,103,7.0\n141,104,6.5\n141,105,6.0\n141,106,5.5\n141,107,5.0\n141,108,4.5\n141,109,4.0\n141,110,3.5\n141,111,3.0\n141,112,2.5\n141,113,2.0\n141,114,1.5\n141,115,1.0\n141,116,0.5\n141,117,1.0\n141,118,1.5\n141,119,2.0\n141,120,2.5\n141,121,3.0\n141,122,3.5\n141,123,4.0\n141,124,4.5\n141,125,8.0\n141,126,7.5\n141,127,7.0\n141,128,6.5\n141,129,6.0\n141,130,5.5\n141,131,5.0\n141,132,4.5\n141,133,4.0\n141,134,3.5\n141,135,3.0\n141,136,2.5\n141,137,2.0\n141,138,1.5\n141,139,1.0\n141,140,0.5\n141,141,0\n141,142,0.5\n141,143,1.0\n141,144,1.5\n141,145,2.0\n141,146,2.5\n141,147,3.0\n141,148,3.5\n141,149,4.0\n141,150,8.5\n141,151,8.0\n141,152,7.5\n141,153,7.0\n141,154,6.5\n141,155,6.0\n141,156,5.5\n141,157,5.0\n141,158,4.5\n141,159,4.0\n141,160,3.5\n141,161,3.0\n141,162,2.5\n141,163,2.0\n141,164,1.5\n141,165,1.0\n141,166,0.5\n141,167,1.0\n141,168,1.5\n141,169,2.0\n141,170,2.5\n141,171,3.0\n141,172,3.5\n141,173,4.0\n141,174,4.5\n141,175,9.0\n141,176,8.5\n141,177,8.0\n141,178,7.5\n141,179,7.0\n141,180,6.5\n141,181,6.0\n141,182,5.5\n141,183,5.0\n141,184,4.5\n141,185,4.0\n141,186,3.5\n141,187,3.0\n141,188,2.5\n141,189,2.0\n141,190,1.5\n141,191,1.0\n141,192,1.5\n141,193,2.0\n141,194,2.5\n141,195,3.0\n141,196,3.5\n141,197,4.0\n141,198,4.5\n141,199,5.0\n141,200,9.5\n141,201,9.0\n141,202,8.5\n141,203,8.0\n141,204,7.5\n141,205,7.0\n141,206,6.5\n141,207,6.0\n141,208,5.5\n141,209,5.0\n141,210,4.5\n141,211,4.0\n141,212,3.5\n141,213,3.0\n141,214,2.5\n141,215,2.0\n141,216,1.5\n141,217,2.0\n141,218,2.5\n141,219,3.0\n141,220,3.5\n141,221,4.0\n141,222,4.5\n141,223,5.0\n141,224,5.5\n141,225,10.0\n141,226,9.5\n141,227,9.0\n141,228,8.5\n141,229,8.0\n141,230,7.5\n141,231,7.0\n141,232,6.5\n141,233,6.0\n141,234,5.5\n141,235,5.0\n141,236,4.5\n141,237,4.0\n141,238,3.5\n141,239,3.0\n141,240,2.5\n141,241,2.0\n141,242,2.5\n141,243,3.0\n141,244,3.5\n141,245,4.0\n141,246,4.5\n141,247,5.0\n141,248,5.5\n141,249,6.0\n141,250,10.5\n141,251,10.0\n141,252,9.5\n141,253,9.0\n141,254,8.5\n141,255,8.0\n141,256,7.5\n141,257,7.0\n141,258,6.5\n141,259,6.0\n141,260,5.5\n141,261,5.0\n141,262,4.5\n141,263,4.0\n141,264,3.5\n141,265,3.0\n141,266,2.5\n141,267,3.0\n141,268,3.5\n141,269,4.0\n141,270,4.5\n141,271,5.0\n141,272,5.5\n141,273,6.0\n141,274,6.5\n141,275,11.0\n141,276,10.5\n141,277,10.0\n141,278,9.5\n141,279,9.0\n141,280,8.5\n141,281,8.0\n141,282,7.5\n141,283,7.0\n141,284,6.5\n141,285,6.0\n141,286,5.5\n141,287,5.0\n141,288,4.5\n141,289,4.0\n141,290,3.5\n141,291,3.0\n141,292,3.5\n141,293,4.0\n141,294,4.5\n141,295,5.0\n141,296,5.5\n141,297,6.0\n141,298,6.5\n141,299,7.0\n141,300,11.5\n141,301,11.0\n141,302,10.5\n141,303,10.0\n141,304,9.5\n141,305,9.0\n141,306,8.5\n141,307,8.0\n141,308,7.5\n141,309,7.0\n141,310,6.5\n141,311,6.0\n141,312,5.5\n141,313,5.0\n141,314,4.5\n141,315,4.0\n141,316,3.5\n141,317,4.0\n141,318,4.5\n141,319,5.0\n141,320,5.5\n141,321,6.0\n141,322,6.5\n141,323,7.0\n141,324,7.5\n141,325,12.0\n141,326,11.5\n141,327,11.0\n141,328,10.5\n141,329,10.0\n141,330,9.5\n141,331,9.0\n141,332,8.5\n141,333,8.0\n141,334,7.5\n141,335,7.0\n141,336,6.5\n141,337,6.0\n141,338,5.5\n141,339,5.0\n141,340,4.5\n141,341,4.0\n141,342,4.5\n141,343,5.0\n141,344,5.5\n141,345,6.0\n141,346,6.5\n141,347,7.0\n141,348,7.5\n141,349,8.0\n141,350,12.5\n141,351,12.0\n141,352,11.5\n141,353,11.0\n141,354,10.5\n141,355,10.0\n141,356,9.5\n141,357,9.0\n141,358,8.5\n141,359,8.0\n141,360,7.5\n141,361,7.0\n141,362,6.5\n141,363,6.0\n141,364,5.5\n141,365,5.0\n141,366,4.5\n141,367,5.0\n141,368,5.5\n141,369,6.0\n141,370,6.5\n141,371,7.0\n141,372,7.5\n141,373,8.0\n141,374,8.5\n141,375,13.0\n141,376,12.5\n141,377,12.0\n141,378,11.5\n141,379,11.0\n141,380,10.5\n141,381,10.0\n141,382,9.5\n141,383,9.0\n141,384,8.5\n141,385,8.0\n141,386,7.5\n141,387,7.0\n141,388,6.5\n141,389,6.0\n141,390,5.5\n141,391,5.0\n141,392,5.5\n141,393,6.0\n141,394,6.5\n141,395,7.0\n141,396,7.5\n141,397,8.0\n141,398,8.5\n141,399,9.0\n141,400,13.5\n141,401,13.0\n141,402,12.5\n141,403,12.0\n141,404,11.5\n141,405,11.0\n141,406,10.5\n141,407,10.0\n141,408,9.5\n141,409,9.0\n141,410,8.5\n141,411,8.0\n141,412,7.5\n141,413,7.0\n141,414,6.5\n141,415,6.0\n141,416,5.5\n141,417,6.0\n141,418,6.5\n141,419,7.0\n141,420,7.5\n141,421,8.0\n141,422,8.5\n141,423,9.0\n141,424,9.5\n141,425,14.0\n141,426,13.5\n141,427,13.0\n141,428,12.5\n141,429,12.0\n141,430,11.5\n141,431,11.0\n141,432,10.5\n141,433,10.0\n141,434,9.5\n141,435,9.0\n141,436,8.5\n141,437,8.0\n141,438,7.5\n141,439,7.0\n141,440,6.5\n141,441,6.0\n141,442,6.5\n141,443,7.0\n141,444,7.5\n141,445,8.0\n141,446,8.5\n141,447,9.0\n141,448,9.5\n141,449,10.0\n141,450,14.5\n141,451,14.0\n141,452,13.5\n141,453,13.0\n141,454,12.5\n141,455,12.0\n141,456,11.5\n141,457,11.0\n141,458,10.5\n141,459,10.0\n141,460,9.5\n141,461,9.0\n141,462,8.5\n141,463,8.0\n141,464,7.5\n141,465,7.0\n141,466,6.5\n141,467,7.0\n141,468,7.5\n141,469,8.0\n141,470,8.5\n141,471,9.0\n141,472,9.5\n141,473,10.0\n141,474,10.5\n141,475,15.0\n141,476,14.5\n141,477,14.0\n141,478,13.5\n141,479,13.0\n141,480,12.5\n141,481,12.0\n141,482,11.5\n141,483,11.0\n141,484,10.5\n141,485,10.0\n141,486,9.5\n141,487,9.0\n141,488,8.5\n141,489,8.0\n141,490,7.5\n141,491,7.0\n141,492,7.5\n141,493,8.0\n141,494,8.5\n141,495,9.0\n141,496,9.5\n141,497,10.0\n141,498,10.5\n141,499,11.0\n141,500,15.5\n141,501,15.0\n141,502,14.5\n141,503,14.0\n141,504,13.5\n141,505,13.0\n141,506,12.5\n141,507,12.0\n141,508,11.5\n141,509,11.0\n141,510,10.5\n141,511,10.0\n141,512,9.5\n141,513,9.0\n141,514,8.5\n141,515,8.0\n141,516,7.5\n141,517,8.0\n141,518,8.5\n141,519,9.0\n141,520,9.5\n141,521,10.0\n141,522,10.5\n141,523,11.0\n141,524,11.5\n141,525,16.0\n141,526,15.5\n141,527,15.0\n141,528,14.5\n141,529,14.0\n141,530,13.5\n141,531,13.0\n141,532,12.5\n141,533,12.0\n141,534,11.5\n141,535,11.0\n141,536,10.5\n141,537,10.0\n141,538,9.5\n141,539,9.0\n141,540,8.5\n141,541,8.0\n141,542,8.5\n141,543,9.0\n141,544,9.5\n141,545,10.0\n141,546,10.5\n141,547,11.0\n141,548,11.5\n141,549,12.0\n141,550,16.5\n141,551,16.0\n141,552,15.5\n141,553,15.0\n141,554,14.5\n141,555,14.0\n141,556,13.5\n141,557,13.0\n141,558,12.5\n141,559,12.0\n141,560,11.5\n141,561,11.0\n141,562,10.5\n141,563,10.0\n141,564,9.5\n141,565,9.0\n141,566,8.5\n141,567,9.0\n141,568,9.5\n141,569,10.0\n141,570,10.5\n141,571,11.0\n141,572,11.5\n141,573,12.0\n141,574,12.5\n141,575,17.0\n141,576,16.5\n141,577,16.0\n141,578,15.5\n141,579,15.0\n141,580,14.5\n141,581,14.0\n141,582,13.5\n141,583,13.0\n141,584,12.5\n141,585,12.0\n141,586,11.5\n141,587,11.0\n141,588,10.5\n141,589,10.0\n141,590,9.5\n141,591,9.0\n141,592,9.5\n141,593,10.0\n141,594,10.5\n141,595,11.0\n141,596,11.5\n141,597,12.0\n141,598,12.5\n141,599,13.0\n141,600,17.5\n141,601,17.0\n141,602,16.5\n141,603,16.0\n141,604,15.5\n141,605,15.0\n141,606,14.5\n141,607,14.0\n141,608,13.5\n141,609,13.0\n141,610,12.5\n141,611,12.0\n141,612,11.5\n141,613,11.0\n141,614,10.5\n141,615,10.0\n141,616,9.5\n141,617,10.0\n141,618,10.5\n141,619,11.0\n141,620,11.5\n141,621,12.0\n141,622,12.5\n141,623,13.0\n141,624,13.5\n142,0,11.0\n142,1,10.5\n142,2,10.0\n142,3,9.5\n142,4,9.0\n142,5,8.5\n142,6,8.0\n142,7,7.5\n142,8,7.0\n142,9,6.5\n142,10,6.0\n142,11,5.5\n142,12,5.0\n142,13,4.5\n142,14,4.0\n142,15,3.5\n142,16,3.0\n142,17,2.5\n142,18,3.0\n142,19,3.5\n142,20,4.0\n142,21,4.5\n142,22,5.0\n142,23,5.5\n142,24,6.0\n142,25,10.5\n142,26,10.0\n142,27,9.5\n142,28,9.0\n142,29,8.5\n142,30,8.0\n142,31,7.5\n142,32,7.0\n142,33,6.5\n142,34,6.0\n142,35,5.5\n142,36,5.0\n142,37,4.5\n142,38,4.0\n142,39,3.5\n142,40,3.0\n142,41,2.5\n142,42,2.0\n142,43,2.5\n142,44,3.0\n142,45,3.5\n142,46,4.0\n142,47,4.5\n142,48,5.0\n142,49,5.5\n142,50,10.0\n142,51,9.5\n142,52,9.0\n142,53,8.5\n142,54,8.0\n142,55,7.5\n142,56,7.0\n142,57,6.5\n142,58,6.0\n142,59,5.5\n142,60,5.0\n142,61,4.5\n142,62,4.0\n142,63,3.5\n142,64,3.0\n142,65,2.5\n142,66,2.0\n142,67,1.5\n142,68,2.0\n142,69,2.5\n142,70,3.0\n142,71,3.5\n142,72,4.0\n142,73,4.5\n142,74,5.0\n142,75,9.5\n142,76,9.0\n142,77,8.5\n142,78,8.0\n142,79,7.5\n142,80,7.0\n142,81,6.5\n142,82,6.0\n142,83,5.5\n142,84,5.0\n142,85,4.5\n142,86,4.0\n142,87,3.5\n142,88,3.0\n142,89,2.5\n142,90,2.0\n142,91,1.5\n142,92,1.0\n142,93,1.5\n142,94,2.0\n142,95,2.5\n142,96,3.0\n142,97,3.5\n142,98,4.0\n142,99,4.5\n142,100,9.0\n142,101,8.5\n142,102,8.0\n142,103,7.5\n142,104,7.0\n142,105,6.5\n142,106,6.0\n142,107,5.5\n142,108,5.0\n142,109,4.5\n142,110,4.0\n142,111,3.5\n142,112,3.0\n142,113,2.5\n142,114,2.0\n142,115,1.5\n142,116,1.0\n142,117,0.5\n142,118,1.0\n142,119,1.5\n142,120,2.0\n142,121,2.5\n142,122,3.0\n142,123,3.5\n142,124,4.0\n142,125,8.5\n142,126,8.0\n142,127,7.5\n142,128,7.0\n142,129,6.5\n142,130,6.0\n142,131,5.5\n142,132,5.0\n142,133,4.5\n142,134,4.0\n142,135,3.5\n142,136,3.0\n142,137,2.5\n142,138,2.0\n142,139,1.5\n142,140,1.0\n142,141,0.5\n142,142,0\n142,143,0.5\n142,144,1.0\n142,145,1.5\n142,146,2.0\n142,147,2.5\n142,148,3.0\n142,149,3.5\n142,150,9.0\n142,151,8.5\n142,152,8.0\n142,153,7.5\n142,154,7.0\n142,155,6.5\n142,156,6.0\n142,157,5.5\n142,158,5.0\n142,159,4.5\n142,160,4.0\n142,161,3.5\n142,162,3.0\n142,163,2.5\n142,164,2.0\n142,165,1.5\n142,166,1.0\n142,167,0.5\n142,168,1.0\n142,169,1.5\n142,170,2.0\n142,171,2.5\n142,172,3.0\n142,173,3.5\n142,174,4.0\n142,175,9.5\n142,176,9.0\n142,177,8.5\n142,178,8.0\n142,179,7.5\n142,180,7.0\n142,181,6.5\n142,182,6.0\n142,183,5.5\n142,184,5.0\n142,185,4.5\n142,186,4.0\n142,187,3.5\n142,188,3.0\n142,189,2.5\n142,190,2.0\n142,191,1.5\n142,192,1.0\n142,193,1.5\n142,194,2.0\n142,195,2.5\n142,196,3.0\n142,197,3.5\n142,198,4.0\n142,199,4.5\n142,200,10.0\n142,201,9.5\n142,202,9.0\n142,203,8.5\n142,204,8.0\n142,205,7.5\n142,206,7.0\n142,207,6.5\n142,208,6.0\n142,209,5.5\n142,210,5.0\n142,211,4.5\n142,212,4.0\n142,213,3.5\n142,214,3.0\n142,215,2.5\n142,216,2.0\n142,217,1.5\n142,218,2.0\n142,219,2.5\n142,220,3.0\n142,221,3.5\n142,222,4.0\n142,223,4.5\n142,224,5.0\n142,225,10.5\n142,226,10.0\n142,227,9.5\n142,228,9.0\n142,229,8.5\n142,230,8.0\n142,231,7.5\n142,232,7.0\n142,233,6.5\n142,234,6.0\n142,235,5.5\n142,236,5.0\n142,237,4.5\n142,238,4.0\n142,239,3.5\n142,240,3.0\n142,241,2.5\n142,242,2.0\n142,243,2.5\n142,244,3.0\n142,245,3.5\n142,246,4.0\n142,247,4.5\n142,248,5.0\n142,249,5.5\n142,250,11.0\n142,251,10.5\n142,252,10.0\n142,253,9.5\n142,254,9.0\n142,255,8.5\n142,256,8.0\n142,257,7.5\n142,258,7.0\n142,259,6.5\n142,260,6.0\n142,261,5.5\n142,262,5.0\n142,263,4.5\n142,264,4.0\n142,265,3.5\n142,266,3.0\n142,267,2.5\n142,268,3.0\n142,269,3.5\n142,270,4.0\n142,271,4.5\n142,272,5.0\n142,273,5.5\n142,274,6.0\n142,275,11.5\n142,276,11.0\n142,277,10.5\n142,278,10.0\n142,279,9.5\n142,280,9.0\n142,281,8.5\n142,282,8.0\n142,283,7.5\n142,284,7.0\n142,285,6.5\n142,286,6.0\n142,287,5.5\n142,288,5.0\n142,289,4.5\n142,290,4.0\n142,291,3.5\n142,292,3.0\n142,293,3.5\n142,294,4.0\n142,295,4.5\n142,296,5.0\n142,297,5.5\n142,298,6.0\n142,299,6.5\n142,300,12.0\n142,301,11.5\n142,302,11.0\n142,303,10.5\n142,304,10.0\n142,305,9.5\n142,306,9.0\n142,307,8.5\n142,308,8.0\n142,309,7.5\n142,310,7.0\n142,311,6.5\n142,312,6.0\n142,313,5.5\n142,314,5.0\n142,315,4.5\n142,316,4.0\n142,317,3.5\n142,318,4.0\n142,319,4.5\n142,320,5.0\n142,321,5.5\n142,322,6.0\n142,323,6.5\n142,324,7.0\n142,325,12.5\n142,326,12.0\n142,327,11.5\n142,328,11.0\n142,329,10.5\n142,330,10.0\n142,331,9.5\n142,332,9.0\n142,333,8.5\n142,334,8.0\n142,335,7.5\n142,336,7.0\n142,337,6.5\n142,338,6.0\n142,339,5.5\n142,340,5.0\n142,341,4.5\n142,342,4.0\n142,343,4.5\n142,344,5.0\n142,345,5.5\n142,346,6.0\n142,347,6.5\n142,348,7.0\n142,349,7.5\n142,350,13.0\n142,351,12.5\n142,352,12.0\n142,353,11.5\n142,354,11.0\n142,355,10.5\n142,356,10.0\n142,357,9.5\n142,358,9.0\n142,359,8.5\n142,360,8.0\n142,361,7.5\n142,362,7.0\n142,363,6.5\n142,364,6.0\n142,365,5.5\n142,366,5.0\n142,367,4.5\n142,368,5.0\n142,369,5.5\n142,370,6.0\n142,371,6.5\n142,372,7.0\n142,373,7.5\n142,374,8.0\n142,375,13.5\n142,376,13.0\n142,377,12.5\n142,378,12.0\n142,379,11.5\n142,380,11.0\n142,381,10.5\n142,382,10.0\n142,383,9.5\n142,384,9.0\n142,385,8.5\n142,386,8.0\n142,387,7.5\n142,388,7.0\n142,389,6.5\n142,390,6.0\n142,391,5.5\n142,392,5.0\n142,393,5.5\n142,394,6.0\n142,395,6.5\n142,396,7.0\n142,397,7.5\n142,398,8.0\n142,399,8.5\n142,400,14.0\n142,401,13.5\n142,402,13.0\n142,403,12.5\n142,404,12.0\n142,405,11.5\n142,406,11.0\n142,407,10.5\n142,408,10.0\n142,409,9.5\n142,410,9.0\n142,411,8.5\n142,412,8.0\n142,413,7.5\n142,414,7.0\n142,415,6.5\n142,416,6.0\n142,417,5.5\n142,418,6.0\n142,419,6.5\n142,420,7.0\n142,421,7.5\n142,422,8.0\n142,423,8.5\n142,424,9.0\n142,425,14.5\n142,426,14.0\n142,427,13.5\n142,428,13.0\n142,429,12.5\n142,430,12.0\n142,431,11.5\n142,432,11.0\n142,433,10.5\n142,434,10.0\n142,435,9.5\n142,436,9.0\n142,437,8.5\n142,438,8.0\n142,439,7.5\n142,440,7.0\n142,441,6.5\n142,442,6.0\n142,443,6.5\n142,444,7.0\n142,445,7.5\n142,446,8.0\n142,447,8.5\n142,448,9.0\n142,449,9.5\n142,450,15.0\n142,451,14.5\n142,452,14.0\n142,453,13.5\n142,454,13.0\n142,455,12.5\n142,456,12.0\n142,457,11.5\n142,458,11.0\n142,459,10.5\n142,460,10.0\n142,461,9.5\n142,462,9.0\n142,463,8.5\n142,464,8.0\n142,465,7.5\n142,466,7.0\n142,467,6.5\n142,468,7.0\n142,469,7.5\n142,470,8.0\n142,471,8.5\n142,472,9.0\n142,473,9.5\n142,474,10.0\n142,475,15.5\n142,476,15.0\n142,477,14.5\n142,478,14.0\n142,479,13.5\n142,480,13.0\n142,481,12.5\n142,482,12.0\n142,483,11.5\n142,484,11.0\n142,485,10.5\n142,486,10.0\n142,487,9.5\n142,488,9.0\n142,489,8.5\n142,490,8.0\n142,491,7.5\n142,492,7.0\n142,493,7.5\n142,494,8.0\n142,495,8.5\n142,496,9.0\n142,497,9.5\n142,498,10.0\n142,499,10.5\n142,500,16.0\n142,501,15.5\n142,502,15.0\n142,503,14.5\n142,504,14.0\n142,505,13.5\n142,506,13.0\n142,507,12.5\n142,508,12.0\n142,509,11.5\n142,510,11.0\n142,511,10.5\n142,512,10.0\n142,513,9.5\n142,514,9.0\n142,515,8.5\n142,516,8.0\n142,517,7.5\n142,518,8.0\n142,519,8.5\n142,520,9.0\n142,521,9.5\n142,522,10.0\n142,523,10.5\n142,524,11.0\n142,525,16.5\n142,526,16.0\n142,527,15.5\n142,528,15.0\n142,529,14.5\n142,530,14.0\n142,531,13.5\n142,532,13.0\n142,533,12.5\n142,534,12.0\n142,535,11.5\n142,536,11.0\n142,537,10.5\n142,538,10.0\n142,539,9.5\n142,540,9.0\n142,541,8.5\n142,542,8.0\n142,543,8.5\n142,544,9.0\n142,545,9.5\n142,546,10.0\n142,547,10.5\n142,548,11.0\n142,549,11.5\n142,550,17.0\n142,551,16.5\n142,552,16.0\n142,553,15.5\n142,554,15.0\n142,555,14.5\n142,556,14.0\n142,557,13.5\n142,558,13.0\n142,559,12.5\n142,560,12.0\n142,561,11.5\n142,562,11.0\n142,563,10.5\n142,564,10.0\n142,565,9.5\n142,566,9.0\n142,567,8.5\n142,568,9.0\n142,569,9.5\n142,570,10.0\n142,571,10.5\n142,572,11.0\n142,573,11.5\n142,574,12.0\n142,575,17.5\n142,576,17.0\n142,577,16.5\n142,578,16.0\n142,579,15.5\n142,580,15.0\n142,581,14.5\n142,582,14.0\n142,583,13.5\n142,584,13.0\n142,585,12.5\n142,586,12.0\n142,587,11.5\n142,588,11.0\n142,589,10.5\n142,590,10.0\n142,591,9.5\n142,592,9.0\n142,593,9.5\n142,594,10.0\n142,595,10.5\n142,596,11.0\n142,597,11.5\n142,598,12.0\n142,599,12.5\n142,600,18.0\n142,601,17.5\n142,602,17.0\n142,603,16.5\n142,604,16.0\n142,605,15.5\n142,606,15.0\n142,607,14.5\n142,608,14.0\n142,609,13.5\n142,610,13.0\n142,611,12.5\n142,612,12.0\n142,613,11.5\n142,614,11.0\n142,615,10.5\n142,616,10.0\n142,617,9.5\n142,618,10.0\n142,619,10.5\n142,620,11.0\n142,621,11.5\n142,622,12.0\n142,623,12.5\n142,624,13.0\n143,0,11.5\n143,1,11.0\n143,2,10.5\n143,3,10.0\n143,4,9.5\n143,5,9.0\n143,6,8.5\n143,7,8.0\n143,8,7.5\n143,9,7.0\n143,10,6.5\n143,11,6.0\n143,12,5.5\n143,13,5.0\n143,14,4.5\n143,15,4.0\n143,16,3.5\n143,17,3.0\n143,18,2.5\n143,19,3.0\n143,20,3.5\n143,21,4.0\n143,22,4.5\n143,23,5.0\n143,24,5.5\n143,25,11.0\n143,26,10.5\n143,27,10.0\n143,28,9.5\n143,29,9.0\n143,30,8.5\n143,31,8.0\n143,32,7.5\n143,33,7.0\n143,34,6.5\n143,35,6.0\n143,36,5.5\n143,37,5.0\n143,38,4.5\n143,39,4.0\n143,40,3.5\n143,41,3.0\n143,42,2.5\n143,43,2.0\n143,44,2.5\n143,45,3.0\n143,46,3.5\n143,47,4.0\n143,48,4.5\n143,49,5.0\n143,50,10.5\n143,51,10.0\n143,52,9.5\n143,53,9.0\n143,54,8.5\n143,55,8.0\n143,56,7.5\n143,57,7.0\n143,58,6.5\n143,59,6.0\n143,60,5.5\n143,61,5.0\n143,62,4.5\n143,63,4.0\n143,64,3.5\n143,65,3.0\n143,66,2.5\n143,67,2.0\n143,68,1.5\n143,69,2.0\n143,70,2.5\n143,71,3.0\n143,72,3.5\n143,73,4.0\n143,74,4.5\n143,75,10.0\n143,76,9.5\n143,77,9.0\n143,78,8.5\n143,79,8.0\n143,80,7.5\n143,81,7.0\n143,82,6.5\n143,83,6.0\n143,84,5.5\n143,85,5.0\n143,86,4.5\n143,87,4.0\n143,88,3.5\n143,89,3.0\n143,90,2.5\n143,91,2.0\n143,92,1.5\n143,93,1.0\n143,94,1.5\n143,95,2.0\n143,96,2.5\n143,97,3.0\n143,98,3.5\n143,99,4.0\n143,100,9.5\n143,101,9.0\n143,102,8.5\n143,103,8.0\n143,104,7.5\n143,105,7.0\n143,106,6.5\n143,107,6.0\n143,108,5.5\n143,109,5.0\n143,110,4.5\n143,111,4.0\n143,112,3.5\n143,113,3.0\n143,114,2.5\n143,115,2.0\n143,116,1.5\n143,117,1.0\n143,118,0.5\n143,119,1.0\n143,120,1.5\n143,121,2.0\n143,122,2.5\n143,123,3.0\n143,124,3.5\n143,125,9.0\n143,126,8.5\n143,127,8.0\n143,128,7.5\n143,129,7.0\n143,130,6.5\n143,131,6.0\n143,132,5.5\n143,133,5.0\n143,134,4.5\n143,135,4.0\n143,136,3.5\n143,137,3.0\n143,138,2.5\n143,139,2.0\n143,140,1.5\n143,141,1.0\n143,142,0.5\n143,143,0\n143,144,0.5\n143,145,1.0\n143,146,1.5\n143,147,2.0\n143,148,2.5\n143,149,3.0\n143,150,9.5\n143,151,9.0\n143,152,8.5\n143,153,8.0\n143,154,7.5\n143,155,7.0\n143,156,6.5\n143,157,6.0\n143,158,5.5\n143,159,5.0\n143,160,4.5\n143,161,4.0\n143,162,3.5\n143,163,3.0\n143,164,2.5\n143,165,2.0\n143,166,1.5\n143,167,1.0\n143,168,0.5\n143,169,1.0\n143,170,1.5\n143,171,2.0\n143,172,2.5\n143,173,3.0\n143,174,3.5\n143,175,10.0\n143,176,9.5\n143,177,9.0\n143,178,8.5\n143,179,8.0\n143,180,7.5\n143,181,7.0\n143,182,6.5\n143,183,6.0\n143,184,5.5\n143,185,5.0\n143,186,4.5\n143,187,4.0\n143,188,3.5\n143,189,3.0\n143,190,2.5\n143,191,2.0\n143,192,1.5\n143,193,1.0\n143,194,1.5\n143,195,2.0\n143,196,2.5\n143,197,3.0\n143,198,3.5\n143,199,4.0\n143,200,10.5\n143,201,10.0\n143,202,9.5\n143,203,9.0\n143,204,8.5\n143,205,8.0\n143,206,7.5\n143,207,7.0\n143,208,6.5\n143,209,6.0\n143,210,5.5\n143,211,5.0\n143,212,4.5\n143,213,4.0\n143,214,3.5\n143,215,3.0\n143,216,2.5\n143,217,2.0\n143,218,1.5\n143,219,2.0\n143,220,2.5\n143,221,3.0\n143,222,3.5\n143,223,4.0\n143,224,4.5\n143,225,11.0\n143,226,10.5\n143,227,10.0\n143,228,9.5\n143,229,9.0\n143,230,8.5\n143,231,8.0\n143,232,7.5\n143,233,7.0\n143,234,6.5\n143,235,6.0\n143,236,5.5\n143,237,5.0\n143,238,4.5\n143,239,4.0\n143,240,3.5\n143,241,3.0\n143,242,2.5\n143,243,2.0\n143,244,2.5\n143,245,3.0\n143,246,3.5\n143,247,4.0\n143,248,4.5\n143,249,5.0\n143,250,11.5\n143,251,11.0\n143,252,10.5\n143,253,10.0\n143,254,9.5\n143,255,9.0\n143,256,8.5\n143,257,8.0\n143,258,7.5\n143,259,7.0\n143,260,6.5\n143,261,6.0\n143,262,5.5\n143,263,5.0\n143,264,4.5\n143,265,4.0\n143,266,3.5\n143,267,3.0\n143,268,2.5\n143,269,3.0\n143,270,3.5\n143,271,4.0\n143,272,4.5\n143,273,5.0\n143,274,5.5\n143,275,12.0\n143,276,11.5\n143,277,11.0\n143,278,10.5\n143,279,10.0\n143,280,9.5\n143,281,9.0\n143,282,8.5\n143,283,8.0\n143,284,7.5\n143,285,7.0\n143,286,6.5\n143,287,6.0\n143,288,5.5\n143,289,5.0\n143,290,4.5\n143,291,4.0\n143,292,3.5\n143,293,3.0\n143,294,3.5\n143,295,4.0\n143,296,4.5\n143,297,5.0\n143,298,5.5\n143,299,6.0\n143,300,12.5\n143,301,12.0\n143,302,11.5\n143,303,11.0\n143,304,10.5\n143,305,10.0\n143,306,9.5\n143,307,9.0\n143,308,8.5\n143,309,8.0\n143,310,7.5\n143,311,7.0\n143,312,6.5\n143,313,6.0\n143,314,5.5\n143,315,5.0\n143,316,4.5\n143,317,4.0\n143,318,3.5\n143,319,4.0\n143,320,4.5\n143,321,5.0\n143,322,5.5\n143,323,6.0\n143,324,6.5\n143,325,13.0\n143,326,12.5\n143,327,12.0\n143,328,11.5\n143,329,11.0\n143,330,10.5\n143,331,10.0\n143,332,9.5\n143,333,9.0\n143,334,8.5\n143,335,8.0\n143,336,7.5\n143,337,7.0\n143,338,6.5\n143,339,6.0\n143,340,5.5\n143,341,5.0\n143,342,4.5\n143,343,4.0\n143,344,4.5\n143,345,5.0\n143,346,5.5\n143,347,6.0\n143,348,6.5\n143,349,7.0\n143,350,13.5\n143,351,13.0\n143,352,12.5\n143,353,12.0\n143,354,11.5\n143,355,11.0\n143,356,10.5\n143,357,10.0\n143,358,9.5\n143,359,9.0\n143,360,8.5\n143,361,8.0\n143,362,7.5\n143,363,7.0\n143,364,6.5\n143,365,6.0\n143,366,5.5\n143,367,5.0\n143,368,4.5\n143,369,5.0\n143,370,5.5\n143,371,6.0\n143,372,6.5\n143,373,7.0\n143,374,7.5\n143,375,14.0\n143,376,13.5\n143,377,13.0\n143,378,12.5\n143,379,12.0\n143,380,11.5\n143,381,11.0\n143,382,10.5\n143,383,10.0\n143,384,9.5\n143,385,9.0\n143,386,8.5\n143,387,8.0\n143,388,7.5\n143,389,7.0\n143,390,6.5\n143,391,6.0\n143,392,5.5\n143,393,5.0\n143,394,5.5\n143,395,6.0\n143,396,6.5\n143,397,7.0\n143,398,7.5\n143,399,8.0\n143,400,14.5\n143,401,14.0\n143,402,13.5\n143,403,13.0\n143,404,12.5\n143,405,12.0\n143,406,11.5\n143,407,11.0\n143,408,10.5\n143,409,10.0\n143,410,9.5\n143,411,9.0\n143,412,8.5\n143,413,8.0\n143,414,7.5\n143,415,7.0\n143,416,6.5\n143,417,6.0\n143,418,5.5\n143,419,6.0\n143,420,6.5\n143,421,7.0\n143,422,7.5\n143,423,8.0\n143,424,8.5\n143,425,15.0\n143,426,14.5\n143,427,14.0\n143,428,13.5\n143,429,13.0\n143,430,12.5\n143,431,12.0\n143,432,11.5\n143,433,11.0\n143,434,10.5\n143,435,10.0\n143,436,9.5\n143,437,9.0\n143,438,8.5\n143,439,8.0\n143,440,7.5\n143,441,7.0\n143,442,6.5\n143,443,6.0\n143,444,6.5\n143,445,7.0\n143,446,7.5\n143,447,8.0\n143,448,8.5\n143,449,9.0\n143,450,15.5\n143,451,15.0\n143,452,14.5\n143,453,14.0\n143,454,13.5\n143,455,13.0\n143,456,12.5\n143,457,12.0\n143,458,11.5\n143,459,11.0\n143,460,10.5\n143,461,10.0\n143,462,9.5\n143,463,9.0\n143,464,8.5\n143,465,8.0\n143,466,7.5\n143,467,7.0\n143,468,6.5\n143,469,7.0\n143,470,7.5\n143,471,8.0\n143,472,8.5\n143,473,9.0\n143,474,9.5\n143,475,16.0\n143,476,15.5\n143,477,15.0\n143,478,14.5\n143,479,14.0\n143,480,13.5\n143,481,13.0\n143,482,12.5\n143,483,12.0\n143,484,11.5\n143,485,11.0\n143,486,10.5\n143,487,10.0\n143,488,9.5\n143,489,9.0\n143,490,8.5\n143,491,8.0\n143,492,7.5\n143,493,7.0\n143,494,7.5\n143,495,8.0\n143,496,8.5\n143,497,9.0\n143,498,9.5\n143,499,10.0\n143,500,16.5\n143,501,16.0\n143,502,15.5\n143,503,15.0\n143,504,14.5\n143,505,14.0\n143,506,13.5\n143,507,13.0\n143,508,12.5\n143,509,12.0\n143,510,11.5\n143,511,11.0\n143,512,10.5\n143,513,10.0\n143,514,9.5\n143,515,9.0\n143,516,8.5\n143,517,8.0\n143,518,7.5\n143,519,8.0\n143,520,8.5\n143,521,9.0\n143,522,9.5\n143,523,10.0\n143,524,10.5\n143,525,17.0\n143,526,16.5\n143,527,16.0\n143,528,15.5\n143,529,15.0\n143,530,14.5\n143,531,14.0\n143,532,13.5\n143,533,13.0\n143,534,12.5\n143,535,12.0\n143,536,11.5\n143,537,11.0\n143,538,10.5\n143,539,10.0\n143,540,9.5\n143,541,9.0\n143,542,8.5\n143,543,8.0\n143,544,8.5\n143,545,9.0\n143,546,9.5\n143,547,10.0\n143,548,10.5\n143,549,11.0\n143,550,17.5\n143,551,17.0\n143,552,16.5\n143,553,16.0\n143,554,15.5\n143,555,15.0\n143,556,14.5\n143,557,14.0\n143,558,13.5\n143,559,13.0\n143,560,12.5\n143,561,12.0\n143,562,11.5\n143,563,11.0\n143,564,10.5\n143,565,10.0\n143,566,9.5\n143,567,9.0\n143,568,8.5\n143,569,9.0\n143,570,9.5\n143,571,10.0\n143,572,10.5\n143,573,11.0\n143,574,11.5\n143,575,18.0\n143,576,17.5\n143,577,17.0\n143,578,16.5\n143,579,16.0\n143,580,15.5\n143,581,15.0\n143,582,14.5\n143,583,14.0\n143,584,13.5\n143,585,13.0\n143,586,12.5\n143,587,12.0\n143,588,11.5\n143,589,11.0\n143,590,10.5\n143,591,10.0\n143,592,9.5\n143,593,9.0\n143,594,9.5\n143,595,10.0\n143,596,10.5\n143,597,11.0\n143,598,11.5\n143,599,12.0\n143,600,18.5\n143,601,18.0\n143,602,17.5\n143,603,17.0\n143,604,16.5\n143,605,16.0\n143,606,15.5\n143,607,15.0\n143,608,14.5\n143,609,14.0\n143,610,13.5\n143,611,13.0\n143,612,12.5\n143,613,12.0\n143,614,11.5\n143,615,11.0\n143,616,10.5\n143,617,10.0\n143,618,9.5\n143,619,10.0\n143,620,10.5\n143,621,11.0\n143,622,11.5\n143,623,12.0\n143,624,12.5\n144,0,12.0\n144,1,11.5\n144,2,11.0\n144,3,10.5\n144,4,10.0\n144,5,9.5\n144,6,9.0\n144,7,8.5\n144,8,8.0\n144,9,7.5\n144,10,7.0\n144,11,6.5\n144,12,6.0\n144,13,5.5\n144,14,5.0\n144,15,4.5\n144,16,4.0\n144,17,3.5\n144,18,3.0\n144,19,2.5\n144,20,3.0\n144,21,3.5\n144,22,4.0\n144,23,4.5\n144,24,5.0\n144,25,11.5\n144,26,11.0\n144,27,10.5\n144,28,10.0\n144,29,9.5\n144,30,9.0\n144,31,8.5\n144,32,8.0\n144,33,7.5\n144,34,7.0\n144,35,6.5\n144,36,6.0\n144,37,5.5\n144,38,5.0\n144,39,4.5\n144,40,4.0\n144,41,3.5\n144,42,3.0\n144,43,2.5\n144,44,2.0\n144,45,2.5\n144,46,3.0\n144,47,3.5\n144,48,4.0\n144,49,4.5\n144,50,11.0\n144,51,10.5\n144,52,10.0\n144,53,9.5\n144,54,9.0\n144,55,8.5\n144,56,8.0\n144,57,7.5\n144,58,7.0\n144,59,6.5\n144,60,6.0\n144,61,5.5\n144,62,5.0\n144,63,4.5\n144,64,4.0\n144,65,3.5\n144,66,3.0\n144,67,2.5\n144,68,2.0\n144,69,1.5\n144,70,2.0\n144,71,2.5\n144,72,3.0\n144,73,3.5\n144,74,4.0\n144,75,10.5\n144,76,10.0\n144,77,9.5\n144,78,9.0\n144,79,8.5\n144,80,8.0\n144,81,7.5\n144,82,7.0\n144,83,6.5\n144,84,6.0\n144,85,5.5\n144,86,5.0\n144,87,4.5\n144,88,4.0\n144,89,3.5\n144,90,3.0\n144,91,2.5\n144,92,2.0\n144,93,1.5\n144,94,1.0\n144,95,1.5\n144,96,2.0\n144,97,2.5\n144,98,3.0\n144,99,3.5\n144,100,10.0\n144,101,9.5\n144,102,9.0\n144,103,8.5\n144,104,8.0\n144,105,7.5\n144,106,7.0\n144,107,6.5\n144,108,6.0\n144,109,5.5\n144,110,5.0\n144,111,4.5\n144,112,4.0\n144,113,3.5\n144,114,3.0\n144,115,2.5\n144,116,2.0\n144,117,1.5\n144,118,1.0\n144,119,0.5\n144,120,1.0\n144,121,1.5\n144,122,2.0\n144,123,2.5\n144,124,3.0\n144,125,9.5\n144,126,9.0\n144,127,8.5\n144,128,8.0\n144,129,7.5\n144,130,7.0\n144,131,6.5\n144,132,6.0\n144,133,5.5\n144,134,5.0\n144,135,4.5\n144,136,4.0\n144,137,3.5\n144,138,3.0\n144,139,2.5\n144,140,2.0\n144,141,1.5\n144,142,1.0\n144,143,0.5\n144,144,0\n144,145,0.5\n144,146,1.0\n144,147,1.5\n144,148,2.0\n144,149,2.5\n144,150,10.0\n144,151,9.5\n144,152,9.0\n144,153,8.5\n144,154,8.0\n144,155,7.5\n144,156,7.0\n144,157,6.5\n144,158,6.0\n144,159,5.5\n144,160,5.0\n144,161,4.5\n144,162,4.0\n144,163,3.5\n144,164,3.0\n144,165,2.5\n144,166,2.0\n144,167,1.5\n144,168,1.0\n144,169,0.5\n144,170,1.0\n144,171,1.5\n144,172,2.0\n144,173,2.5\n144,174,3.0\n144,175,10.5\n144,176,10.0\n144,177,9.5\n144,178,9.0\n144,179,8.5\n144,180,8.0\n144,181,7.5\n144,182,7.0\n144,183,6.5\n144,184,6.0\n144,185,5.5\n144,186,5.0\n144,187,4.5\n144,188,4.0\n144,189,3.5\n144,190,3.0\n144,191,2.5\n144,192,2.0\n144,193,1.5\n144,194,1.0\n144,195,1.5\n144,196,2.0\n144,197,2.5\n144,198,3.0\n144,199,3.5\n144,200,11.0\n144,201,10.5\n144,202,10.0\n144,203,9.5\n144,204,9.0\n144,205,8.5\n144,206,8.0\n144,207,7.5\n144,208,7.0\n144,209,6.5\n144,210,6.0\n144,211,5.5\n144,212,5.0\n144,213,4.5\n144,214,4.0\n144,215,3.5\n144,216,3.0\n144,217,2.5\n144,218,2.0\n144,219,1.5\n144,220,2.0\n144,221,2.5\n144,222,3.0\n144,223,3.5\n144,224,4.0\n144,225,11.5\n144,226,11.0\n144,227,10.5\n144,228,10.0\n144,229,9.5\n144,230,9.0\n144,231,8.5\n144,232,8.0\n144,233,7.5\n144,234,7.0\n144,235,6.5\n144,236,6.0\n144,237,5.5\n144,238,5.0\n144,239,4.5\n144,240,4.0\n144,241,3.5\n144,242,3.0\n144,243,2.5\n144,244,2.0\n144,245,2.5\n144,246,3.0\n144,247,3.5\n144,248,4.0\n144,249,4.5\n144,250,12.0\n144,251,11.5\n144,252,11.0\n144,253,10.5\n144,254,10.0\n144,255,9.5\n144,256,9.0\n144,257,8.5\n144,258,8.0\n144,259,7.5\n144,260,7.0\n144,261,6.5\n144,262,6.0\n144,263,5.5\n144,264,5.0\n144,265,4.5\n144,266,4.0\n144,267,3.5\n144,268,3.0\n144,269,2.5\n144,270,3.0\n144,271,3.5\n144,272,4.0\n144,273,4.5\n144,274,5.0\n144,275,12.5\n144,276,12.0\n144,277,11.5\n144,278,11.0\n144,279,10.5\n144,280,10.0\n144,281,9.5\n144,282,9.0\n144,283,8.5\n144,284,8.0\n144,285,7.5\n144,286,7.0\n144,287,6.5\n144,288,6.0\n144,289,5.5\n144,290,5.0\n144,291,4.5\n144,292,4.0\n144,293,3.5\n144,294,3.0\n144,295,3.5\n144,296,4.0\n144,297,4.5\n144,298,5.0\n144,299,5.5\n144,300,13.0\n144,301,12.5\n144,302,12.0\n144,303,11.5\n144,304,11.0\n144,305,10.5\n144,306,10.0\n144,307,9.5\n144,308,9.0\n144,309,8.5\n144,310,8.0\n144,311,7.5\n144,312,7.0\n144,313,6.5\n144,314,6.0\n144,315,5.5\n144,316,5.0\n144,317,4.5\n144,318,4.0\n144,319,3.5\n144,320,4.0\n144,321,4.5\n144,322,5.0\n144,323,5.5\n144,324,6.0\n144,325,13.5\n144,326,13.0\n144,327,12.5\n144,328,12.0\n144,329,11.5\n144,330,11.0\n144,331,10.5\n144,332,10.0\n144,333,9.5\n144,334,9.0\n144,335,8.5\n144,336,8.0\n144,337,7.5\n144,338,7.0\n144,339,6.5\n144,340,6.0\n144,341,5.5\n144,342,5.0\n144,343,4.5\n144,344,4.0\n144,345,4.5\n144,346,5.0\n144,347,5.5\n144,348,6.0\n144,349,6.5\n144,350,14.0\n144,351,13.5\n144,352,13.0\n144,353,12.5\n144,354,12.0\n144,355,11.5\n144,356,11.0\n144,357,10.5\n144,358,10.0\n144,359,9.5\n144,360,9.0\n144,361,8.5\n144,362,8.0\n144,363,7.5\n144,364,7.0\n144,365,6.5\n144,366,6.0\n144,367,5.5\n144,368,5.0\n144,369,4.5\n144,370,5.0\n144,371,5.5\n144,372,6.0\n144,373,6.5\n144,374,7.0\n144,375,14.5\n144,376,14.0\n144,377,13.5\n144,378,13.0\n144,379,12.5\n144,380,12.0\n144,381,11.5\n144,382,11.0\n144,383,10.5\n144,384,10.0\n144,385,9.5\n144,386,9.0\n144,387,8.5\n144,388,8.0\n144,389,7.5\n144,390,7.0\n144,391,6.5\n144,392,6.0\n144,393,5.5\n144,394,5.0\n144,395,5.5\n144,396,6.0\n144,397,6.5\n144,398,7.0\n144,399,7.5\n144,400,15.0\n144,401,14.5\n144,402,14.0\n144,403,13.5\n144,404,13.0\n144,405,12.5\n144,406,12.0\n144,407,11.5\n144,408,11.0\n144,409,10.5\n144,410,10.0\n144,411,9.5\n144,412,9.0\n144,413,8.5\n144,414,8.0\n144,415,7.5\n144,416,7.0\n144,417,6.5\n144,418,6.0\n144,419,5.5\n144,420,6.0\n144,421,6.5\n144,422,7.0\n144,423,7.5\n144,424,8.0\n144,425,15.5\n144,426,15.0\n144,427,14.5\n144,428,14.0\n144,429,13.5\n144,430,13.0\n144,431,12.5\n144,432,12.0\n144,433,11.5\n144,434,11.0\n144,435,10.5\n144,436,10.0\n144,437,9.5\n144,438,9.0\n144,439,8.5\n144,440,8.0\n144,441,7.5\n144,442,7.0\n144,443,6.5\n144,444,6.0\n144,445,6.5\n144,446,7.0\n144,447,7.5\n144,448,8.0\n144,449,8.5\n144,450,16.0\n144,451,15.5\n144,452,15.0\n144,453,14.5\n144,454,14.0\n144,455,13.5\n144,456,13.0\n144,457,12.5\n144,458,12.0\n144,459,11.5\n144,460,11.0\n144,461,10.5\n144,462,10.0\n144,463,9.5\n144,464,9.0\n144,465,8.5\n144,466,8.0\n144,467,7.5\n144,468,7.0\n144,469,6.5\n144,470,7.0\n144,471,7.5\n144,472,8.0\n144,473,8.5\n144,474,9.0\n144,475,16.5\n144,476,16.0\n144,477,15.5\n144,478,15.0\n144,479,14.5\n144,480,14.0\n144,481,13.5\n144,482,13.0\n144,483,12.5\n144,484,12.0\n144,485,11.5\n144,486,11.0\n144,487,10.5\n144,488,10.0\n144,489,9.5\n144,490,9.0\n144,491,8.5\n144,492,8.0\n144,493,7.5\n144,494,7.0\n144,495,7.5\n144,496,8.0\n144,497,8.5\n144,498,9.0\n144,499,9.5\n144,500,17.0\n144,501,16.5\n144,502,16.0\n144,503,15.5\n144,504,15.0\n144,505,14.5\n144,506,14.0\n144,507,13.5\n144,508,13.0\n144,509,12.5\n144,510,12.0\n144,511,11.5\n144,512,11.0\n144,513,10.5\n144,514,10.0\n144,515,9.5\n144,516,9.0\n144,517,8.5\n144,518,8.0\n144,519,7.5\n144,520,8.0\n144,521,8.5\n144,522,9.0\n144,523,9.5\n144,524,10.0\n144,525,17.5\n144,526,17.0\n144,527,16.5\n144,528,16.0\n144,529,15.5\n144,530,15.0\n144,531,14.5\n144,532,14.0\n144,533,13.5\n144,534,13.0\n144,535,12.5\n144,536,12.0\n144,537,11.5\n144,538,11.0\n144,539,10.5\n144,540,10.0\n144,541,9.5\n144,542,9.0\n144,543,8.5\n144,544,8.0\n144,545,8.5\n144,546,9.0\n144,547,9.5\n144,548,10.0\n144,549,10.5\n144,550,18.0\n144,551,17.5\n144,552,17.0\n144,553,16.5\n144,554,16.0\n144,555,15.5\n144,556,15.0\n144,557,14.5\n144,558,14.0\n144,559,13.5\n144,560,13.0\n144,561,12.5\n144,562,12.0\n144,563,11.5\n144,564,11.0\n144,565,10.5\n144,566,10.0\n144,567,9.5\n144,568,9.0\n144,569,8.5\n144,570,9.0\n144,571,9.5\n144,572,10.0\n144,573,10.5\n144,574,11.0\n144,575,18.5\n144,576,18.0\n144,577,17.5\n144,578,17.0\n144,579,16.5\n144,580,16.0\n144,581,15.5\n144,582,15.0\n144,583,14.5\n144,584,14.0\n144,585,13.5\n144,586,13.0\n144,587,12.5\n144,588,12.0\n144,589,11.5\n144,590,11.0\n144,591,10.5\n144,592,10.0\n144,593,9.5\n144,594,9.0\n144,595,9.5\n144,596,10.0\n144,597,10.5\n144,598,11.0\n144,599,11.5\n144,600,19.0\n144,601,18.5\n144,602,18.0\n144,603,17.5\n144,604,17.0\n144,605,16.5\n144,606,16.0\n144,607,15.5\n144,608,15.0\n144,609,14.5\n144,610,14.0\n144,611,13.5\n144,612,13.0\n144,613,12.5\n144,614,12.0\n144,615,11.5\n144,616,11.0\n144,617,10.5\n144,618,10.0\n144,619,9.5\n144,620,10.0\n144,621,10.5\n144,622,11.0\n144,623,11.5\n144,624,12.0\n145,0,12.5\n145,1,12.0\n145,2,11.5\n145,3,11.0\n145,4,10.5\n145,5,10.0\n145,6,9.5\n145,7,9.0\n145,8,8.5\n145,9,8.0\n145,10,7.5\n145,11,7.0\n145,12,6.5\n145,13,6.0\n145,14,5.5\n145,15,5.0\n145,16,4.5\n145,17,4.0\n145,18,3.5\n145,19,3.0\n145,20,2.5\n145,21,3.0\n145,22,3.5\n145,23,4.0\n145,24,4.5\n145,25,12.0\n145,26,11.5\n145,27,11.0\n145,28,10.5\n145,29,10.0\n145,30,9.5\n145,31,9.0\n145,32,8.5\n145,33,8.0\n145,34,7.5\n145,35,7.0\n145,36,6.5\n145,37,6.0\n145,38,5.5\n145,39,5.0\n145,40,4.5\n145,41,4.0\n145,42,3.5\n145,43,3.0\n145,44,2.5\n145,45,2.0\n145,46,2.5\n145,47,3.0\n145,48,3.5\n145,49,4.0\n145,50,11.5\n145,51,11.0\n145,52,10.5\n145,53,10.0\n145,54,9.5\n145,55,9.0\n145,56,8.5\n145,57,8.0\n145,58,7.5\n145,59,7.0\n145,60,6.5\n145,61,6.0\n145,62,5.5\n145,63,5.0\n145,64,4.5\n145,65,4.0\n145,66,3.5\n145,67,3.0\n145,68,2.5\n145,69,2.0\n145,70,1.5\n145,71,2.0\n145,72,2.5\n145,73,3.0\n145,74,3.5\n145,75,11.0\n145,76,10.5\n145,77,10.0\n145,78,9.5\n145,79,9.0\n145,80,8.5\n145,81,8.0\n145,82,7.5\n145,83,7.0\n145,84,6.5\n145,85,6.0\n145,86,5.5\n145,87,5.0\n145,88,4.5\n145,89,4.0\n145,90,3.5\n145,91,3.0\n145,92,2.5\n145,93,2.0\n145,94,1.5\n145,95,1.0\n145,96,1.5\n145,97,2.0\n145,98,2.5\n145,99,3.0\n145,100,10.5\n145,101,10.0\n145,102,9.5\n145,103,9.0\n145,104,8.5\n145,105,8.0\n145,106,7.5\n145,107,7.0\n145,108,6.5\n145,109,6.0\n145,110,5.5\n145,111,5.0\n145,112,4.5\n145,113,4.0\n145,114,3.5\n145,115,3.0\n145,116,2.5\n145,117,2.0\n145,118,1.5\n145,119,1.0\n145,120,0.5\n145,121,1.0\n145,122,1.5\n145,123,2.0\n145,124,2.5\n145,125,10.0\n145,126,9.5\n145,127,9.0\n145,128,8.5\n145,129,8.0\n145,130,7.5\n145,131,7.0\n145,132,6.5\n145,133,6.0\n145,134,5.5\n145,135,5.0\n145,136,4.5\n145,137,4.0\n145,138,3.5\n145,139,3.0\n145,140,2.5\n145,141,2.0\n145,142,1.5\n145,143,1.0\n145,144,0.5\n145,145,0\n145,146,0.5\n145,147,1.0\n145,148,1.5\n145,149,2.0\n145,150,10.5\n145,151,10.0\n145,152,9.5\n145,153,9.0\n145,154,8.5\n145,155,8.0\n145,156,7.5\n145,157,7.0\n145,158,6.5\n145,159,6.0\n145,160,5.5\n145,161,5.0\n145,162,4.5\n145,163,4.0\n145,164,3.5\n145,165,3.0\n145,166,2.5\n145,167,2.0\n145,168,1.5\n145,169,1.0\n145,170,0.5\n145,171,1.0\n145,172,1.5\n145,173,2.0\n145,174,2.5\n145,175,11.0\n145,176,10.5\n145,177,10.0\n145,178,9.5\n145,179,9.0\n145,180,8.5\n145,181,8.0\n145,182,7.5\n145,183,7.0\n145,184,6.5\n145,185,6.0\n145,186,5.5\n145,187,5.0\n145,188,4.5\n145,189,4.0\n145,190,3.5\n145,191,3.0\n145,192,2.5\n145,193,2.0\n145,194,1.5\n145,195,1.0\n145,196,1.5\n145,197,2.0\n145,198,2.5\n145,199,3.0\n145,200,11.5\n145,201,11.0\n145,202,10.5\n145,203,10.0\n145,204,9.5\n145,205,9.0\n145,206,8.5\n145,207,8.0\n145,208,7.5\n145,209,7.0\n145,210,6.5\n145,211,6.0\n145,212,5.5\n145,213,5.0\n145,214,4.5\n145,215,4.0\n145,216,3.5\n145,217,3.0\n145,218,2.5\n145,219,2.0\n145,220,1.5\n145,221,2.0\n145,222,2.5\n145,223,3.0\n145,224,3.5\n145,225,12.0\n145,226,11.5\n145,227,11.0\n145,228,10.5\n145,229,10.0\n145,230,9.5\n145,231,9.0\n145,232,8.5\n145,233,8.0\n145,234,7.5\n145,235,7.0\n145,236,6.5\n145,237,6.0\n145,238,5.5\n145,239,5.0\n145,240,4.5\n145,241,4.0\n145,242,3.5\n145,243,3.0\n145,244,2.5\n145,245,2.0\n145,246,2.5\n145,247,3.0\n145,248,3.5\n145,249,4.0\n145,250,12.5\n145,251,12.0\n145,252,11.5\n145,253,11.0\n145,254,10.5\n145,255,10.0\n145,256,9.5\n145,257,9.0\n145,258,8.5\n145,259,8.0\n145,260,7.5\n145,261,7.0\n145,262,6.5\n145,263,6.0\n145,264,5.5\n145,265,5.0\n145,266,4.5\n145,267,4.0\n145,268,3.5\n145,269,3.0\n145,270,2.5\n145,271,3.0\n145,272,3.5\n145,273,4.0\n145,274,4.5\n145,275,13.0\n145,276,12.5\n145,277,12.0\n145,278,11.5\n145,279,11.0\n145,280,10.5\n145,281,10.0\n145,282,9.5\n145,283,9.0\n145,284,8.5\n145,285,8.0\n145,286,7.5\n145,287,7.0\n145,288,6.5\n145,289,6.0\n145,290,5.5\n145,291,5.0\n145,292,4.5\n145,293,4.0\n145,294,3.5\n145,295,3.0\n145,296,3.5\n145,297,4.0\n145,298,4.5\n145,299,5.0\n145,300,13.5\n145,301,13.0\n145,302,12.5\n145,303,12.0\n145,304,11.5\n145,305,11.0\n145,306,10.5\n145,307,10.0\n145,308,9.5\n145,309,9.0\n145,310,8.5\n145,311,8.0\n145,312,7.5\n145,313,7.0\n145,314,6.5\n145,315,6.0\n145,316,5.5\n145,317,5.0\n145,318,4.5\n145,319,4.0\n145,320,3.5\n145,321,4.0\n145,322,4.5\n145,323,5.0\n145,324,5.5\n145,325,14.0\n145,326,13.5\n145,327,13.0\n145,328,12.5\n145,329,12.0\n145,330,11.5\n145,331,11.0\n145,332,10.5\n145,333,10.0\n145,334,9.5\n145,335,9.0\n145,336,8.5\n145,337,8.0\n145,338,7.5\n145,339,7.0\n145,340,6.5\n145,341,6.0\n145,342,5.5\n145,343,5.0\n145,344,4.5\n145,345,4.0\n145,346,4.5\n145,347,5.0\n145,348,5.5\n145,349,6.0\n145,350,14.5\n145,351,14.0\n145,352,13.5\n145,353,13.0\n145,354,12.5\n145,355,12.0\n145,356,11.5\n145,357,11.0\n145,358,10.5\n145,359,10.0\n145,360,9.5\n145,361,9.0\n145,362,8.5\n145,363,8.0\n145,364,7.5\n145,365,7.0\n145,366,6.5\n145,367,6.0\n145,368,5.5\n145,369,5.0\n145,370,4.5\n145,371,5.0\n145,372,5.5\n145,373,6.0\n145,374,6.5\n145,375,15.0\n145,376,14.5\n145,377,14.0\n145,378,13.5\n145,379,13.0\n145,380,12.5\n145,381,12.0\n145,382,11.5\n145,383,11.0\n145,384,10.5\n145,385,10.0\n145,386,9.5\n145,387,9.0\n145,388,8.5\n145,389,8.0\n145,390,7.5\n145,391,7.0\n145,392,6.5\n145,393,6.0\n145,394,5.5\n145,395,5.0\n145,396,5.5\n145,397,6.0\n145,398,6.5\n145,399,7.0\n145,400,15.5\n145,401,15.0\n145,402,14.5\n145,403,14.0\n145,404,13.5\n145,405,13.0\n145,406,12.5\n145,407,12.0\n145,408,11.5\n145,409,11.0\n145,410,10.5\n145,411,10.0\n145,412,9.5\n145,413,9.0\n145,414,8.5\n145,415,8.0\n145,416,7.5\n145,417,7.0\n145,418,6.5\n145,419,6.0\n145,420,5.5\n145,421,6.0\n145,422,6.5\n145,423,7.0\n145,424,7.5\n145,425,16.0\n145,426,15.5\n145,427,15.0\n145,428,14.5\n145,429,14.0\n145,430,13.5\n145,431,13.0\n145,432,12.5\n145,433,12.0\n145,434,11.5\n145,435,11.0\n145,436,10.5\n145,437,10.0\n145,438,9.5\n145,439,9.0\n145,440,8.5\n145,441,8.0\n145,442,7.5\n145,443,7.0\n145,444,6.5\n145,445,6.0\n145,446,6.5\n145,447,7.0\n145,448,7.5\n145,449,8.0\n145,450,16.5\n145,451,16.0\n145,452,15.5\n145,453,15.0\n145,454,14.5\n145,455,14.0\n145,456,13.5\n145,457,13.0\n145,458,12.5\n145,459,12.0\n145,460,11.5\n145,461,11.0\n145,462,10.5\n145,463,10.0\n145,464,9.5\n145,465,9.0\n145,466,8.5\n145,467,8.0\n145,468,7.5\n145,469,7.0\n145,470,6.5\n145,471,7.0\n145,472,7.5\n145,473,8.0\n145,474,8.5\n145,475,17.0\n145,476,16.5\n145,477,16.0\n145,478,15.5\n145,479,15.0\n145,480,14.5\n145,481,14.0\n145,482,13.5\n145,483,13.0\n145,484,12.5\n145,485,12.0\n145,486,11.5\n145,487,11.0\n145,488,10.5\n145,489,10.0\n145,490,9.5\n145,491,9.0\n145,492,8.5\n145,493,8.0\n145,494,7.5\n145,495,7.0\n145,496,7.5\n145,497,8.0\n145,498,8.5\n145,499,9.0\n145,500,17.5\n145,501,17.0\n145,502,16.5\n145,503,16.0\n145,504,15.5\n145,505,15.0\n145,506,14.5\n145,507,14.0\n145,508,13.5\n145,509,13.0\n145,510,12.5\n145,511,12.0\n145,512,11.5\n145,513,11.0\n145,514,10.5\n145,515,10.0\n145,516,9.5\n145,517,9.0\n145,518,8.5\n145,519,8.0\n145,520,7.5\n145,521,8.0\n145,522,8.5\n145,523,9.0\n145,524,9.5\n145,525,18.0\n145,526,17.5\n145,527,17.0\n145,528,16.5\n145,529,16.0\n145,530,15.5\n145,531,15.0\n145,532,14.5\n145,533,14.0\n145,534,13.5\n145,535,13.0\n145,536,12.5\n145,537,12.0\n145,538,11.5\n145,539,11.0\n145,540,10.5\n145,541,10.0\n145,542,9.5\n145,543,9.0\n145,544,8.5\n145,545,8.0\n145,546,8.5\n145,547,9.0\n145,548,9.5\n145,549,10.0\n145,550,18.5\n145,551,18.0\n145,552,17.5\n145,553,17.0\n145,554,16.5\n145,555,16.0\n145,556,15.5\n145,557,15.0\n145,558,14.5\n145,559,14.0\n145,560,13.5\n145,561,13.0\n145,562,12.5\n145,563,12.0\n145,564,11.5\n145,565,11.0\n145,566,10.5\n145,567,10.0\n145,568,9.5\n145,569,9.0\n145,570,8.5\n145,571,9.0\n145,572,9.5\n145,573,10.0\n145,574,10.5\n145,575,19.0\n145,576,18.5\n145,577,18.0\n145,578,17.5\n145,579,17.0\n145,580,16.5\n145,581,16.0\n145,582,15.5\n145,583,15.0\n145,584,14.5\n145,585,14.0\n145,586,13.5\n145,587,13.0\n145,588,12.5\n145,589,12.0\n145,590,11.5\n145,591,11.0\n145,592,10.5\n145,593,10.0\n145,594,9.5\n145,595,9.0\n145,596,9.5\n145,597,10.0\n145,598,10.5\n145,599,11.0\n145,600,19.5\n145,601,19.0\n145,602,18.5\n145,603,18.0\n145,604,17.5\n145,605,17.0\n145,606,16.5\n145,607,16.0\n145,608,15.5\n145,609,15.0\n145,610,14.5\n145,611,14.0\n145,612,13.5\n145,613,13.0\n145,614,12.5\n145,615,12.0\n145,616,11.5\n145,617,11.0\n145,618,10.5\n145,619,10.0\n145,620,9.5\n145,621,10.0\n145,622,10.5\n145,623,11.0\n145,624,11.5\n146,0,13.0\n146,1,12.5\n146,2,12.0\n146,3,11.5\n146,4,11.0\n146,5,10.5\n146,6,10.0\n146,7,9.5\n146,8,9.0\n146,9,8.5\n146,10,8.0\n146,11,7.5\n146,12,7.0\n146,13,6.5\n146,14,6.0\n146,15,5.5\n146,16,5.0\n146,17,4.5\n146,18,4.0\n146,19,3.5\n146,20,3.0\n146,21,2.5\n146,22,3.0\n146,23,3.5\n146,24,4.0\n146,25,12.5\n146,26,12.0\n146,27,11.5\n146,28,11.0\n146,29,10.5\n146,30,10.0\n146,31,9.5\n146,32,9.0\n146,33,8.5\n146,34,8.0\n146,35,7.5\n146,36,7.0\n146,37,6.5\n146,38,6.0\n146,39,5.5\n146,40,5.0\n146,41,4.5\n146,42,4.0\n146,43,3.5\n146,44,3.0\n146,45,2.5\n146,46,2.0\n146,47,2.5\n146,48,3.0\n146,49,3.5\n146,50,12.0\n146,51,11.5\n146,52,11.0\n146,53,10.5\n146,54,10.0\n146,55,9.5\n146,56,9.0\n146,57,8.5\n146,58,8.0\n146,59,7.5\n146,60,7.0\n146,61,6.5\n146,62,6.0\n146,63,5.5\n146,64,5.0\n146,65,4.5\n146,66,4.0\n146,67,3.5\n146,68,3.0\n146,69,2.5\n146,70,2.0\n146,71,1.5\n146,72,2.0\n146,73,2.5\n146,74,3.0\n146,75,11.5\n146,76,11.0\n146,77,10.5\n146,78,10.0\n146,79,9.5\n146,80,9.0\n146,81,8.5\n146,82,8.0\n146,83,7.5\n146,84,7.0\n146,85,6.5\n146,86,6.0\n146,87,5.5\n146,88,5.0\n146,89,4.5\n146,90,4.0\n146,91,3.5\n146,92,3.0\n146,93,2.5\n146,94,2.0\n146,95,1.5\n146,96,1.0\n146,97,1.5\n146,98,2.0\n146,99,2.5\n146,100,11.0\n146,101,10.5\n146,102,10.0\n146,103,9.5\n146,104,9.0\n146,105,8.5\n146,106,8.0\n146,107,7.5\n146,108,7.0\n146,109,6.5\n146,110,6.0\n146,111,5.5\n146,112,5.0\n146,113,4.5\n146,114,4.0\n146,115,3.5\n146,116,3.0\n146,117,2.5\n146,118,2.0\n146,119,1.5\n146,120,1.0\n146,121,0.5\n146,122,1.0\n146,123,1.5\n146,124,2.0\n146,125,10.5\n146,126,10.0\n146,127,9.5\n146,128,9.0\n146,129,8.5\n146,130,8.0\n146,131,7.5\n146,132,7.0\n146,133,6.5\n146,134,6.0\n146,135,5.5\n146,136,5.0\n146,137,4.5\n146,138,4.0\n146,139,3.5\n146,140,3.0\n146,141,2.5\n146,142,2.0\n146,143,1.5\n146,144,1.0\n146,145,0.5\n146,146,0\n146,147,0.5\n146,148,1.0\n146,149,1.5\n146,150,11.0\n146,151,10.5\n146,152,10.0\n146,153,9.5\n146,154,9.0\n146,155,8.5\n146,156,8.0\n146,157,7.5\n146,158,7.0\n146,159,6.5\n146,160,6.0\n146,161,5.5\n146,162,5.0\n146,163,4.5\n146,164,4.0\n146,165,3.5\n146,166,3.0\n146,167,2.5\n146,168,2.0\n146,169,1.5\n146,170,1.0\n146,171,0.5\n146,172,1.0\n146,173,1.5\n146,174,2.0\n146,175,11.5\n146,176,11.0\n146,177,10.5\n146,178,10.0\n146,179,9.5\n146,180,9.0\n146,181,8.5\n146,182,8.0\n146,183,7.5\n146,184,7.0\n146,185,6.5\n146,186,6.0\n146,187,5.5\n146,188,5.0\n146,189,4.5\n146,190,4.0\n146,191,3.5\n146,192,3.0\n146,193,2.5\n146,194,2.0\n146,195,1.5\n146,196,1.0\n146,197,1.5\n146,198,2.0\n146,199,2.5\n146,200,12.0\n146,201,11.5\n146,202,11.0\n146,203,10.5\n146,204,10.0\n146,205,9.5\n146,206,9.0\n146,207,8.5\n146,208,8.0\n146,209,7.5\n146,210,7.0\n146,211,6.5\n146,212,6.0\n146,213,5.5\n146,214,5.0\n146,215,4.5\n146,216,4.0\n146,217,3.5\n146,218,3.0\n146,219,2.5\n146,220,2.0\n146,221,1.5\n146,222,2.0\n146,223,2.5\n146,224,3.0\n146,225,12.5\n146,226,12.0\n146,227,11.5\n146,228,11.0\n146,229,10.5\n146,230,10.0\n146,231,9.5\n146,232,9.0\n146,233,8.5\n146,234,8.0\n146,235,7.5\n146,236,7.0\n146,237,6.5\n146,238,6.0\n146,239,5.5\n146,240,5.0\n146,241,4.5\n146,242,4.0\n146,243,3.5\n146,244,3.0\n146,245,2.5\n146,246,2.0\n146,247,2.5\n146,248,3.0\n146,249,3.5\n146,250,13.0\n146,251,12.5\n146,252,12.0\n146,253,11.5\n146,254,11.0\n146,255,10.5\n146,256,10.0\n146,257,9.5\n146,258,9.0\n146,259,8.5\n146,260,8.0\n146,261,7.5\n146,262,7.0\n146,263,6.5\n146,264,6.0\n146,265,5.5\n146,266,5.0\n146,267,4.5\n146,268,4.0\n146,269,3.5\n146,270,3.0\n146,271,2.5\n146,272,3.0\n146,273,3.5\n146,274,4.0\n146,275,13.5\n146,276,13.0\n146,277,12.5\n146,278,12.0\n146,279,11.5\n146,280,11.0\n146,281,10.5\n146,282,10.0\n146,283,9.5\n146,284,9.0\n146,285,8.5\n146,286,8.0\n146,287,7.5\n146,288,7.0\n146,289,6.5\n146,290,6.0\n146,291,5.5\n146,292,5.0\n146,293,4.5\n146,294,4.0\n146,295,3.5\n146,296,3.0\n146,297,3.5\n146,298,4.0\n146,299,4.5\n146,300,14.0\n146,301,13.5\n146,302,13.0\n146,303,12.5\n146,304,12.0\n146,305,11.5\n146,306,11.0\n146,307,10.5\n146,308,10.0\n146,309,9.5\n146,310,9.0\n146,311,8.5\n146,312,8.0\n146,313,7.5\n146,314,7.0\n146,315,6.5\n146,316,6.0\n146,317,5.5\n146,318,5.0\n146,319,4.5\n146,320,4.0\n146,321,3.5\n146,322,4.0\n146,323,4.5\n146,324,5.0\n146,325,14.5\n146,326,14.0\n146,327,13.5\n146,328,13.0\n146,329,12.5\n146,330,12.0\n146,331,11.5\n146,332,11.0\n146,333,10.5\n146,334,10.0\n146,335,9.5\n146,336,9.0\n146,337,8.5\n146,338,8.0\n146,339,7.5\n146,340,7.0\n146,341,6.5\n146,342,6.0\n146,343,5.5\n146,344,5.0\n146,345,4.5\n146,346,4.0\n146,347,4.5\n146,348,5.0\n146,349,5.5\n146,350,15.0\n146,351,14.5\n146,352,14.0\n146,353,13.5\n146,354,13.0\n146,355,12.5\n146,356,12.0\n146,357,11.5\n146,358,11.0\n146,359,10.5\n146,360,10.0\n146,361,9.5\n146,362,9.0\n146,363,8.5\n146,364,8.0\n146,365,7.5\n146,366,7.0\n146,367,6.5\n146,368,6.0\n146,369,5.5\n146,370,5.0\n146,371,4.5\n146,372,5.0\n146,373,5.5\n146,374,6.0\n146,375,15.5\n146,376,15.0\n146,377,14.5\n146,378,14.0\n146,379,13.5\n146,380,13.0\n146,381,12.5\n146,382,12.0\n146,383,11.5\n146,384,11.0\n146,385,10.5\n146,386,10.0\n146,387,9.5\n146,388,9.0\n146,389,8.5\n146,390,8.0\n146,391,7.5\n146,392,7.0\n146,393,6.5\n146,394,6.0\n146,395,5.5\n146,396,5.0\n146,397,5.5\n146,398,6.0\n146,399,6.5\n146,400,16.0\n146,401,15.5\n146,402,15.0\n146,403,14.5\n146,404,14.0\n146,405,13.5\n146,406,13.0\n146,407,12.5\n146,408,12.0\n146,409,11.5\n146,410,11.0\n146,411,10.5\n146,412,10.0\n146,413,9.5\n146,414,9.0\n146,415,8.5\n146,416,8.0\n146,417,7.5\n146,418,7.0\n146,419,6.5\n146,420,6.0\n146,421,5.5\n146,422,6.0\n146,423,6.5\n146,424,7.0\n146,425,16.5\n146,426,16.0\n146,427,15.5\n146,428,15.0\n146,429,14.5\n146,430,14.0\n146,431,13.5\n146,432,13.0\n146,433,12.5\n146,434,12.0\n146,435,11.5\n146,436,11.0\n146,437,10.5\n146,438,10.0\n146,439,9.5\n146,440,9.0\n146,441,8.5\n146,442,8.0\n146,443,7.5\n146,444,7.0\n146,445,6.5\n146,446,6.0\n146,447,6.5\n146,448,7.0\n146,449,7.5\n146,450,17.0\n146,451,16.5\n146,452,16.0\n146,453,15.5\n146,454,15.0\n146,455,14.5\n146,456,14.0\n146,457,13.5\n146,458,13.0\n146,459,12.5\n146,460,12.0\n146,461,11.5\n146,462,11.0\n146,463,10.5\n146,464,10.0\n146,465,9.5\n146,466,9.0\n146,467,8.5\n146,468,8.0\n146,469,7.5\n146,470,7.0\n146,471,6.5\n146,472,7.0\n146,473,7.5\n146,474,8.0\n146,475,17.5\n146,476,17.0\n146,477,16.5\n146,478,16.0\n146,479,15.5\n146,480,15.0\n146,481,14.5\n146,482,14.0\n146,483,13.5\n146,484,13.0\n146,485,12.5\n146,486,12.0\n146,487,11.5\n146,488,11.0\n146,489,10.5\n146,490,10.0\n146,491,9.5\n146,492,9.0\n146,493,8.5\n146,494,8.0\n146,495,7.5\n146,496,7.0\n146,497,7.5\n146,498,8.0\n146,499,8.5\n146,500,18.0\n146,501,17.5\n146,502,17.0\n146,503,16.5\n146,504,16.0\n146,505,15.5\n146,506,15.0\n146,507,14.5\n146,508,14.0\n146,509,13.5\n146,510,13.0\n146,511,12.5\n146,512,12.0\n146,513,11.5\n146,514,11.0\n146,515,10.5\n146,516,10.0\n146,517,9.5\n146,518,9.0\n146,519,8.5\n146,520,8.0\n146,521,7.5\n146,522,8.0\n146,523,8.5\n146,524,9.0\n146,525,18.5\n146,526,18.0\n146,527,17.5\n146,528,17.0\n146,529,16.5\n146,530,16.0\n146,531,15.5\n146,532,15.0\n146,533,14.5\n146,534,14.0\n146,535,13.5\n146,536,13.0\n146,537,12.5\n146,538,12.0\n146,539,11.5\n146,540,11.0\n146,541,10.5\n146,542,10.0\n146,543,9.5\n146,544,9.0\n146,545,8.5\n146,546,8.0\n146,547,8.5\n146,548,9.0\n146,549,9.5\n146,550,19.0\n146,551,18.5\n146,552,18.0\n146,553,17.5\n146,554,17.0\n146,555,16.5\n146,556,16.0\n146,557,15.5\n146,558,15.0\n146,559,14.5\n146,560,14.0\n146,561,13.5\n146,562,13.0\n146,563,12.5\n146,564,12.0\n146,565,11.5\n146,566,11.0\n146,567,10.5\n146,568,10.0\n146,569,9.5\n146,570,9.0\n146,571,8.5\n146,572,9.0\n146,573,9.5\n146,574,10.0\n146,575,19.5\n146,576,19.0\n146,577,18.5\n146,578,18.0\n146,579,17.5\n146,580,17.0\n146,581,16.5\n146,582,16.0\n146,583,15.5\n146,584,15.0\n146,585,14.5\n146,586,14.0\n146,587,13.5\n146,588,13.0\n146,589,12.5\n146,590,12.0\n146,591,11.5\n146,592,11.0\n146,593,10.5\n146,594,10.0\n146,595,9.5\n146,596,9.0\n146,597,9.5\n146,598,10.0\n146,599,10.5\n146,600,20.0\n146,601,19.5\n146,602,19.0\n146,603,18.5\n146,604,18.0\n146,605,17.5\n146,606,17.0\n146,607,16.5\n146,608,16.0\n146,609,15.5\n146,610,15.0\n146,611,14.5\n146,612,14.0\n146,613,13.5\n146,614,13.0\n146,615,12.5\n146,616,12.0\n146,617,11.5\n146,618,11.0\n146,619,10.5\n146,620,10.0\n146,621,9.5\n146,622,10.0\n146,623,10.5\n146,624,11.0\n147,0,13.5\n147,1,13.0\n147,2,12.5\n147,3,12.0\n147,4,11.5\n147,5,11.0\n147,6,10.5\n147,7,10.0\n147,8,9.5\n147,9,9.0\n147,10,8.5\n147,11,8.0\n147,12,7.5\n147,13,7.0\n147,14,6.5\n147,15,6.0\n147,16,5.5\n147,17,5.0\n147,18,4.5\n147,19,4.0\n147,20,3.5\n147,21,3.0\n147,22,2.5\n147,23,3.0\n147,24,3.5\n147,25,13.0\n147,26,12.5\n147,27,12.0\n147,28,11.5\n147,29,11.0\n147,30,10.5\n147,31,10.0\n147,32,9.5\n147,33,9.0\n147,34,8.5\n147,35,8.0\n147,36,7.5\n147,37,7.0\n147,38,6.5\n147,39,6.0\n147,40,5.5\n147,41,5.0\n147,42,4.5\n147,43,4.0\n147,44,3.5\n147,45,3.0\n147,46,2.5\n147,47,2.0\n147,48,2.5\n147,49,3.0\n147,50,12.5\n147,51,12.0\n147,52,11.5\n147,53,11.0\n147,54,10.5\n147,55,10.0\n147,56,9.5\n147,57,9.0\n147,58,8.5\n147,59,8.0\n147,60,7.5\n147,61,7.0\n147,62,6.5\n147,63,6.0\n147,64,5.5\n147,65,5.0\n147,66,4.5\n147,67,4.0\n147,68,3.5\n147,69,3.0\n147,70,2.5\n147,71,2.0\n147,72,1.5\n147,73,2.0\n147,74,2.5\n147,75,12.0\n147,76,11.5\n147,77,11.0\n147,78,10.5\n147,79,10.0\n147,80,9.5\n147,81,9.0\n147,82,8.5\n147,83,8.0\n147,84,7.5\n147,85,7.0\n147,86,6.5\n147,87,6.0\n147,88,5.5\n147,89,5.0\n147,90,4.5\n147,91,4.0\n147,92,3.5\n147,93,3.0\n147,94,2.5\n147,95,2.0\n147,96,1.5\n147,97,1.0\n147,98,1.5\n147,99,2.0\n147,100,11.5\n147,101,11.0\n147,102,10.5\n147,103,10.0\n147,104,9.5\n147,105,9.0\n147,106,8.5\n147,107,8.0\n147,108,7.5\n147,109,7.0\n147,110,6.5\n147,111,6.0\n147,112,5.5\n147,113,5.0\n147,114,4.5\n147,115,4.0\n147,116,3.5\n147,117,3.0\n147,118,2.5\n147,119,2.0\n147,120,1.5\n147,121,1.0\n147,122,0.5\n147,123,1.0\n147,124,1.5\n147,125,11.0\n147,126,10.5\n147,127,10.0\n147,128,9.5\n147,129,9.0\n147,130,8.5\n147,131,8.0\n147,132,7.5\n147,133,7.0\n147,134,6.5\n147,135,6.0\n147,136,5.5\n147,137,5.0\n147,138,4.5\n147,139,4.0\n147,140,3.5\n147,141,3.0\n147,142,2.5\n147,143,2.0\n147,144,1.5\n147,145,1.0\n147,146,0.5\n147,147,0\n147,148,0.5\n147,149,1.0\n147,150,11.5\n147,151,11.0\n147,152,10.5\n147,153,10.0\n147,154,9.5\n147,155,9.0\n147,156,8.5\n147,157,8.0\n147,158,7.5\n147,159,7.0\n147,160,6.5\n147,161,6.0\n147,162,5.5\n147,163,5.0\n147,164,4.5\n147,165,4.0\n147,166,3.5\n147,167,3.0\n147,168,2.5\n147,169,2.0\n147,170,1.5\n147,171,1.0\n147,172,0.5\n147,173,1.0\n147,174,1.5\n147,175,12.0\n147,176,11.5\n147,177,11.0\n147,178,10.5\n147,179,10.0\n147,180,9.5\n147,181,9.0\n147,182,8.5\n147,183,8.0\n147,184,7.5\n147,185,7.0\n147,186,6.5\n147,187,6.0\n147,188,5.5\n147,189,5.0\n147,190,4.5\n147,191,4.0\n147,192,3.5\n147,193,3.0\n147,194,2.5\n147,195,2.0\n147,196,1.5\n147,197,1.0\n147,198,1.5\n147,199,2.0\n147,200,12.5\n147,201,12.0\n147,202,11.5\n147,203,11.0\n147,204,10.5\n147,205,10.0\n147,206,9.5\n147,207,9.0\n147,208,8.5\n147,209,8.0\n147,210,7.5\n147,211,7.0\n147,212,6.5\n147,213,6.0\n147,214,5.5\n147,215,5.0\n147,216,4.5\n147,217,4.0\n147,218,3.5\n147,219,3.0\n147,220,2.5\n147,221,2.0\n147,222,1.5\n147,223,2.0\n147,224,2.5\n147,225,13.0\n147,226,12.5\n147,227,12.0\n147,228,11.5\n147,229,11.0\n147,230,10.5\n147,231,10.0\n147,232,9.5\n147,233,9.0\n147,234,8.5\n147,235,8.0\n147,236,7.5\n147,237,7.0\n147,238,6.5\n147,239,6.0\n147,240,5.5\n147,241,5.0\n147,242,4.5\n147,243,4.0\n147,244,3.5\n147,245,3.0\n147,246,2.5\n147,247,2.0\n147,248,2.5\n147,249,3.0\n147,250,13.5\n147,251,13.0\n147,252,12.5\n147,253,12.0\n147,254,11.5\n147,255,11.0\n147,256,10.5\n147,257,10.0\n147,258,9.5\n147,259,9.0\n147,260,8.5\n147,261,8.0\n147,262,7.5\n147,263,7.0\n147,264,6.5\n147,265,6.0\n147,266,5.5\n147,267,5.0\n147,268,4.5\n147,269,4.0\n147,270,3.5\n147,271,3.0\n147,272,2.5\n147,273,3.0\n147,274,3.5\n147,275,14.0\n147,276,13.5\n147,277,13.0\n147,278,12.5\n147,279,12.0\n147,280,11.5\n147,281,11.0\n147,282,10.5\n147,283,10.0\n147,284,9.5\n147,285,9.0\n147,286,8.5\n147,287,8.0\n147,288,7.5\n147,289,7.0\n147,290,6.5\n147,291,6.0\n147,292,5.5\n147,293,5.0\n147,294,4.5\n147,295,4.0\n147,296,3.5\n147,297,3.0\n147,298,3.5\n147,299,4.0\n147,300,14.5\n147,301,14.0\n147,302,13.5\n147,303,13.0\n147,304,12.5\n147,305,12.0\n147,306,11.5\n147,307,11.0\n147,308,10.5\n147,309,10.0\n147,310,9.5\n147,311,9.0\n147,312,8.5\n147,313,8.0\n147,314,7.5\n147,315,7.0\n147,316,6.5\n147,317,6.0\n147,318,5.5\n147,319,5.0\n147,320,4.5\n147,321,4.0\n147,322,3.5\n147,323,4.0\n147,324,4.5\n147,325,15.0\n147,326,14.5\n147,327,14.0\n147,328,13.5\n147,329,13.0\n147,330,12.5\n147,331,12.0\n147,332,11.5\n147,333,11.0\n147,334,10.5\n147,335,10.0\n147,336,9.5\n147,337,9.0\n147,338,8.5\n147,339,8.0\n147,340,7.5\n147,341,7.0\n147,342,6.5\n147,343,6.0\n147,344,5.5\n147,345,5.0\n147,346,4.5\n147,347,4.0\n147,348,4.5\n147,349,5.0\n147,350,15.5\n147,351,15.0\n147,352,14.5\n147,353,14.0\n147,354,13.5\n147,355,13.0\n147,356,12.5\n147,357,12.0\n147,358,11.5\n147,359,11.0\n147,360,10.5\n147,361,10.0\n147,362,9.5\n147,363,9.0\n147,364,8.5\n147,365,8.0\n147,366,7.5\n147,367,7.0\n147,368,6.5\n147,369,6.0\n147,370,5.5\n147,371,5.0\n147,372,4.5\n147,373,5.0\n147,374,5.5\n147,375,16.0\n147,376,15.5\n147,377,15.0\n147,378,14.5\n147,379,14.0\n147,380,13.5\n147,381,13.0\n147,382,12.5\n147,383,12.0\n147,384,11.5\n147,385,11.0\n147,386,10.5\n147,387,10.0\n147,388,9.5\n147,389,9.0\n147,390,8.5\n147,391,8.0\n147,392,7.5\n147,393,7.0\n147,394,6.5\n147,395,6.0\n147,396,5.5\n147,397,5.0\n147,398,5.5\n147,399,6.0\n147,400,16.5\n147,401,16.0\n147,402,15.5\n147,403,15.0\n147,404,14.5\n147,405,14.0\n147,406,13.5\n147,407,13.0\n147,408,12.5\n147,409,12.0\n147,410,11.5\n147,411,11.0\n147,412,10.5\n147,413,10.0\n147,414,9.5\n147,415,9.0\n147,416,8.5\n147,417,8.0\n147,418,7.5\n147,419,7.0\n147,420,6.5\n147,421,6.0\n147,422,5.5\n147,423,6.0\n147,424,6.5\n147,425,17.0\n147,426,16.5\n147,427,16.0\n147,428,15.5\n147,429,15.0\n147,430,14.5\n147,431,14.0\n147,432,13.5\n147,433,13.0\n147,434,12.5\n147,435,12.0\n147,436,11.5\n147,437,11.0\n147,438,10.5\n147,439,10.0\n147,440,9.5\n147,441,9.0\n147,442,8.5\n147,443,8.0\n147,444,7.5\n147,445,7.0\n147,446,6.5\n147,447,6.0\n147,448,6.5\n147,449,7.0\n147,450,17.5\n147,451,17.0\n147,452,16.5\n147,453,16.0\n147,454,15.5\n147,455,15.0\n147,456,14.5\n147,457,14.0\n147,458,13.5\n147,459,13.0\n147,460,12.5\n147,461,12.0\n147,462,11.5\n147,463,11.0\n147,464,10.5\n147,465,10.0\n147,466,9.5\n147,467,9.0\n147,468,8.5\n147,469,8.0\n147,470,7.5\n147,471,7.0\n147,472,6.5\n147,473,7.0\n147,474,7.5\n147,475,18.0\n147,476,17.5\n147,477,17.0\n147,478,16.5\n147,479,16.0\n147,480,15.5\n147,481,15.0\n147,482,14.5\n147,483,14.0\n147,484,13.5\n147,485,13.0\n147,486,12.5\n147,487,12.0\n147,488,11.5\n147,489,11.0\n147,490,10.5\n147,491,10.0\n147,492,9.5\n147,493,9.0\n147,494,8.5\n147,495,8.0\n147,496,7.5\n147,497,7.0\n147,498,7.5\n147,499,8.0\n147,500,18.5\n147,501,18.0\n147,502,17.5\n147,503,17.0\n147,504,16.5\n147,505,16.0\n147,506,15.5\n147,507,15.0\n147,508,14.5\n147,509,14.0\n147,510,13.5\n147,511,13.0\n147,512,12.5\n147,513,12.0\n147,514,11.5\n147,515,11.0\n147,516,10.5\n147,517,10.0\n147,518,9.5\n147,519,9.0\n147,520,8.5\n147,521,8.0\n147,522,7.5\n147,523,8.0\n147,524,8.5\n147,525,19.0\n147,526,18.5\n147,527,18.0\n147,528,17.5\n147,529,17.0\n147,530,16.5\n147,531,16.0\n147,532,15.5\n147,533,15.0\n147,534,14.5\n147,535,14.0\n147,536,13.5\n147,537,13.0\n147,538,12.5\n147,539,12.0\n147,540,11.5\n147,541,11.0\n147,542,10.5\n147,543,10.0\n147,544,9.5\n147,545,9.0\n147,546,8.5\n147,547,8.0\n147,548,8.5\n147,549,9.0\n147,550,19.5\n147,551,19.0\n147,552,18.5\n147,553,18.0\n147,554,17.5\n147,555,17.0\n147,556,16.5\n147,557,16.0\n147,558,15.5\n147,559,15.0\n147,560,14.5\n147,561,14.0\n147,562,13.5\n147,563,13.0\n147,564,12.5\n147,565,12.0\n147,566,11.5\n147,567,11.0\n147,568,10.5\n147,569,10.0\n147,570,9.5\n147,571,9.0\n147,572,8.5\n147,573,9.0\n147,574,9.5\n147,575,20.0\n147,576,19.5\n147,577,19.0\n147,578,18.5\n147,579,18.0\n147,580,17.5\n147,581,17.0\n147,582,16.5\n147,583,16.0\n147,584,15.5\n147,585,15.0\n147,586,14.5\n147,587,14.0\n147,588,13.5\n147,589,13.0\n147,590,12.5\n147,591,12.0\n147,592,11.5\n147,593,11.0\n147,594,10.5\n147,595,10.0\n147,596,9.5\n147,597,9.0\n147,598,9.5\n147,599,10.0\n147,600,20.5\n147,601,20.0\n147,602,19.5\n147,603,19.0\n147,604,18.5\n147,605,18.0\n147,606,17.5\n147,607,17.0\n147,608,16.5\n147,609,16.0\n147,610,15.5\n147,611,15.0\n147,612,14.5\n147,613,14.0\n147,614,13.5\n147,615,13.0\n147,616,12.5\n147,617,12.0\n147,618,11.5\n147,619,11.0\n147,620,10.5\n147,621,10.0\n147,622,9.5\n147,623,10.0\n147,624,10.5\n148,0,14.0\n148,1,13.5\n148,2,13.0\n148,3,12.5\n148,4,12.0\n148,5,11.5\n148,6,11.0\n148,7,10.5\n148,8,10.0\n148,9,9.5\n148,10,9.0\n148,11,8.5\n148,12,8.0\n148,13,7.5\n148,14,7.0\n148,15,6.5\n148,16,6.0\n148,17,5.5\n148,18,5.0\n148,19,4.5\n148,20,4.0\n148,21,3.5\n148,22,3.0\n148,23,2.5\n148,24,3.0\n148,25,13.5\n148,26,13.0\n148,27,12.5\n148,28,12.0\n148,29,11.5\n148,30,11.0\n148,31,10.5\n148,32,10.0\n148,33,9.5\n148,34,9.0\n148,35,8.5\n148,36,8.0\n148,37,7.5\n148,38,7.0\n148,39,6.5\n148,40,6.0\n148,41,5.5\n148,42,5.0\n148,43,4.5\n148,44,4.0\n148,45,3.5\n148,46,3.0\n148,47,2.5\n148,48,2.0\n148,49,2.5\n148,50,13.0\n148,51,12.5\n148,52,12.0\n148,53,11.5\n148,54,11.0\n148,55,10.5\n148,56,10.0\n148,57,9.5\n148,58,9.0\n148,59,8.5\n148,60,8.0\n148,61,7.5\n148,62,7.0\n148,63,6.5\n148,64,6.0\n148,65,5.5\n148,66,5.0\n148,67,4.5\n148,68,4.0\n148,69,3.5\n148,70,3.0\n148,71,2.5\n148,72,2.0\n148,73,1.5\n148,74,2.0\n148,75,12.5\n148,76,12.0\n148,77,11.5\n148,78,11.0\n148,79,10.5\n148,80,10.0\n148,81,9.5\n148,82,9.0\n148,83,8.5\n148,84,8.0\n148,85,7.5\n148,86,7.0\n148,87,6.5\n148,88,6.0\n148,89,5.5\n148,90,5.0\n148,91,4.5\n148,92,4.0\n148,93,3.5\n148,94,3.0\n148,95,2.5\n148,96,2.0\n148,97,1.5\n148,98,1.0\n148,99,1.5\n148,100,12.0\n148,101,11.5\n148,102,11.0\n148,103,10.5\n148,104,10.0\n148,105,9.5\n148,106,9.0\n148,107,8.5\n148,108,8.0\n148,109,7.5\n148,110,7.0\n148,111,6.5\n148,112,6.0\n148,113,5.5\n148,114,5.0\n148,115,4.5\n148,116,4.0\n148,117,3.5\n148,118,3.0\n148,119,2.5\n148,120,2.0\n148,121,1.5\n148,122,1.0\n148,123,0.5\n148,124,1.0\n148,125,11.5\n148,126,11.0\n148,127,10.5\n148,128,10.0\n148,129,9.5\n148,130,9.0\n148,131,8.5\n148,132,8.0\n148,133,7.5\n148,134,7.0\n148,135,6.5\n148,136,6.0\n148,137,5.5\n148,138,5.0\n148,139,4.5\n148,140,4.0\n148,141,3.5\n148,142,3.0\n148,143,2.5\n148,144,2.0\n148,145,1.5\n148,146,1.0\n148,147,0.5\n148,148,0\n148,149,0.5\n148,150,12.0\n148,151,11.5\n148,152,11.0\n148,153,10.5\n148,154,10.0\n148,155,9.5\n148,156,9.0\n148,157,8.5\n148,158,8.0\n148,159,7.5\n148,160,7.0\n148,161,6.5\n148,162,6.0\n148,163,5.5\n148,164,5.0\n148,165,4.5\n148,166,4.0\n148,167,3.5\n148,168,3.0\n148,169,2.5\n148,170,2.0\n148,171,1.5\n148,172,1.0\n148,173,0.5\n148,174,1.0\n148,175,12.5\n148,176,12.0\n148,177,11.5\n148,178,11.0\n148,179,10.5\n148,180,10.0\n148,181,9.5\n148,182,9.0\n148,183,8.5\n148,184,8.0\n148,185,7.5\n148,186,7.0\n148,187,6.5\n148,188,6.0\n148,189,5.5\n148,190,5.0\n148,191,4.5\n148,192,4.0\n148,193,3.5\n148,194,3.0\n148,195,2.5\n148,196,2.0\n148,197,1.5\n148,198,1.0\n148,199,1.5\n148,200,13.0\n148,201,12.5\n148,202,12.0\n148,203,11.5\n148,204,11.0\n148,205,10.5\n148,206,10.0\n148,207,9.5\n148,208,9.0\n148,209,8.5\n148,210,8.0\n148,211,7.5\n148,212,7.0\n148,213,6.5\n148,214,6.0\n148,215,5.5\n148,216,5.0\n148,217,4.5\n148,218,4.0\n148,219,3.5\n148,220,3.0\n148,221,2.5\n148,222,2.0\n148,223,1.5\n148,224,2.0\n148,225,13.5\n148,226,13.0\n148,227,12.5\n148,228,12.0\n148,229,11.5\n148,230,11.0\n148,231,10.5\n148,232,10.0\n148,233,9.5\n148,234,9.0\n148,235,8.5\n148,236,8.0\n148,237,7.5\n148,238,7.0\n148,239,6.5\n148,240,6.0\n148,241,5.5\n148,242,5.0\n148,243,4.5\n148,244,4.0\n148,245,3.5\n148,246,3.0\n148,247,2.5\n148,248,2.0\n148,249,2.5\n148,250,14.0\n148,251,13.5\n148,252,13.0\n148,253,12.5\n148,254,12.0\n148,255,11.5\n148,256,11.0\n148,257,10.5\n148,258,10.0\n148,259,9.5\n148,260,9.0\n148,261,8.5\n148,262,8.0\n148,263,7.5\n148,264,7.0\n148,265,6.5\n148,266,6.0\n148,267,5.5\n148,268,5.0\n148,269,4.5\n148,270,4.0\n148,271,3.5\n148,272,3.0\n148,273,2.5\n148,274,3.0\n148,275,14.5\n148,276,14.0\n148,277,13.5\n148,278,13.0\n148,279,12.5\n148,280,12.0\n148,281,11.5\n148,282,11.0\n148,283,10.5\n148,284,10.0\n148,285,9.5\n148,286,9.0\n148,287,8.5\n148,288,8.0\n148,289,7.5\n148,290,7.0\n148,291,6.5\n148,292,6.0\n148,293,5.5\n148,294,5.0\n148,295,4.5\n148,296,4.0\n148,297,3.5\n148,298,3.0\n148,299,3.5\n148,300,15.0\n148,301,14.5\n148,302,14.0\n148,303,13.5\n148,304,13.0\n148,305,12.5\n148,306,12.0\n148,307,11.5\n148,308,11.0\n148,309,10.5\n148,310,10.0\n148,311,9.5\n148,312,9.0\n148,313,8.5\n148,314,8.0\n148,315,7.5\n148,316,7.0\n148,317,6.5\n148,318,6.0\n148,319,5.5\n148,320,5.0\n148,321,4.5\n148,322,4.0\n148,323,3.5\n148,324,4.0\n148,325,15.5\n148,326,15.0\n148,327,14.5\n148,328,14.0\n148,329,13.5\n148,330,13.0\n148,331,12.5\n148,332,12.0\n148,333,11.5\n148,334,11.0\n148,335,10.5\n148,336,10.0\n148,337,9.5\n148,338,9.0\n148,339,8.5\n148,340,8.0\n148,341,7.5\n148,342,7.0\n148,343,6.5\n148,344,6.0\n148,345,5.5\n148,346,5.0\n148,347,4.5\n148,348,4.0\n148,349,4.5\n148,350,16.0\n148,351,15.5\n148,352,15.0\n148,353,14.5\n148,354,14.0\n148,355,13.5\n148,356,13.0\n148,357,12.5\n148,358,12.0\n148,359,11.5\n148,360,11.0\n148,361,10.5\n148,362,10.0\n148,363,9.5\n148,364,9.0\n148,365,8.5\n148,366,8.0\n148,367,7.5\n148,368,7.0\n148,369,6.5\n148,370,6.0\n148,371,5.5\n148,372,5.0\n148,373,4.5\n148,374,5.0\n148,375,16.5\n148,376,16.0\n148,377,15.5\n148,378,15.0\n148,379,14.5\n148,380,14.0\n148,381,13.5\n148,382,13.0\n148,383,12.5\n148,384,12.0\n148,385,11.5\n148,386,11.0\n148,387,10.5\n148,388,10.0\n148,389,9.5\n148,390,9.0\n148,391,8.5\n148,392,8.0\n148,393,7.5\n148,394,7.0\n148,395,6.5\n148,396,6.0\n148,397,5.5\n148,398,5.0\n148,399,5.5\n148,400,17.0\n148,401,16.5\n148,402,16.0\n148,403,15.5\n148,404,15.0\n148,405,14.5\n148,406,14.0\n148,407,13.5\n148,408,13.0\n148,409,12.5\n148,410,12.0\n148,411,11.5\n148,412,11.0\n148,413,10.5\n148,414,10.0\n148,415,9.5\n148,416,9.0\n148,417,8.5\n148,418,8.0\n148,419,7.5\n148,420,7.0\n148,421,6.5\n148,422,6.0\n148,423,5.5\n148,424,6.0\n148,425,17.5\n148,426,17.0\n148,427,16.5\n148,428,16.0\n148,429,15.5\n148,430,15.0\n148,431,14.5\n148,432,14.0\n148,433,13.5\n148,434,13.0\n148,435,12.5\n148,436,12.0\n148,437,11.5\n148,438,11.0\n148,439,10.5\n148,440,10.0\n148,441,9.5\n148,442,9.0\n148,443,8.5\n148,444,8.0\n148,445,7.5\n148,446,7.0\n148,447,6.5\n148,448,6.0\n148,449,6.5\n148,450,18.0\n148,451,17.5\n148,452,17.0\n148,453,16.5\n148,454,16.0\n148,455,15.5\n148,456,15.0\n148,457,14.5\n148,458,14.0\n148,459,13.5\n148,460,13.0\n148,461,12.5\n148,462,12.0\n148,463,11.5\n148,464,11.0\n148,465,10.5\n148,466,10.0\n148,467,9.5\n148,468,9.0\n148,469,8.5\n148,470,8.0\n148,471,7.5\n148,472,7.0\n148,473,6.5\n148,474,7.0\n148,475,18.5\n148,476,18.0\n148,477,17.5\n148,478,17.0\n148,479,16.5\n148,480,16.0\n148,481,15.5\n148,482,15.0\n148,483,14.5\n148,484,14.0\n148,485,13.5\n148,486,13.0\n148,487,12.5\n148,488,12.0\n148,489,11.5\n148,490,11.0\n148,491,10.5\n148,492,10.0\n148,493,9.5\n148,494,9.0\n148,495,8.5\n148,496,8.0\n148,497,7.5\n148,498,7.0\n148,499,7.5\n148,500,19.0\n148,501,18.5\n148,502,18.0\n148,503,17.5\n148,504,17.0\n148,505,16.5\n148,506,16.0\n148,507,15.5\n148,508,15.0\n148,509,14.5\n148,510,14.0\n148,511,13.5\n148,512,13.0\n148,513,12.5\n148,514,12.0\n148,515,11.5\n148,516,11.0\n148,517,10.5\n148,518,10.0\n148,519,9.5\n148,520,9.0\n148,521,8.5\n148,522,8.0\n148,523,7.5\n148,524,8.0\n148,525,19.5\n148,526,19.0\n148,527,18.5\n148,528,18.0\n148,529,17.5\n148,530,17.0\n148,531,16.5\n148,532,16.0\n148,533,15.5\n148,534,15.0\n148,535,14.5\n148,536,14.0\n148,537,13.5\n148,538,13.0\n148,539,12.5\n148,540,12.0\n148,541,11.5\n148,542,11.0\n148,543,10.5\n148,544,10.0\n148,545,9.5\n148,546,9.0\n148,547,8.5\n148,548,8.0\n148,549,8.5\n148,550,20.0\n148,551,19.5\n148,552,19.0\n148,553,18.5\n148,554,18.0\n148,555,17.5\n148,556,17.0\n148,557,16.5\n148,558,16.0\n148,559,15.5\n148,560,15.0\n148,561,14.5\n148,562,14.0\n148,563,13.5\n148,564,13.0\n148,565,12.5\n148,566,12.0\n148,567,11.5\n148,568,11.0\n148,569,10.5\n148,570,10.0\n148,571,9.5\n148,572,9.0\n148,573,8.5\n148,574,9.0\n148,575,20.5\n148,576,20.0\n148,577,19.5\n148,578,19.0\n148,579,18.5\n148,580,18.0\n148,581,17.5\n148,582,17.0\n148,583,16.5\n148,584,16.0\n148,585,15.5\n148,586,15.0\n148,587,14.5\n148,588,14.0\n148,589,13.5\n148,590,13.0\n148,591,12.5\n148,592,12.0\n148,593,11.5\n148,594,11.0\n148,595,10.5\n148,596,10.0\n148,597,9.5\n148,598,9.0\n148,599,9.5\n148,600,21.0\n148,601,20.5\n148,602,20.0\n148,603,19.5\n148,604,19.0\n148,605,18.5\n148,606,18.0\n148,607,17.5\n148,608,17.0\n148,609,16.5\n148,610,16.0\n148,611,15.5\n148,612,15.0\n148,613,14.5\n148,614,14.0\n148,615,13.5\n148,616,13.0\n148,617,12.5\n148,618,12.0\n148,619,11.5\n148,620,11.0\n148,621,10.5\n148,622,10.0\n148,623,9.5\n148,624,10.0\n149,0,14.5\n149,1,14.0\n149,2,13.5\n149,3,13.0\n149,4,12.5\n149,5,12.0\n149,6,11.5\n149,7,11.0\n149,8,10.5\n149,9,10.0\n149,10,9.5\n149,11,9.0\n149,12,8.5\n149,13,8.0\n149,14,7.5\n149,15,7.0\n149,16,6.5\n149,17,6.0\n149,18,5.5\n149,19,5.0\n149,20,4.5\n149,21,4.0\n149,22,3.5\n149,23,3.0\n149,24,2.5\n149,25,14.0\n149,26,13.5\n149,27,13.0\n149,28,12.5\n149,29,12.0\n149,30,11.5\n149,31,11.0\n149,32,10.5\n149,33,10.0\n149,34,9.5\n149,35,9.0\n149,36,8.5\n149,37,8.0\n149,38,7.5\n149,39,7.0\n149,40,6.5\n149,41,6.0\n149,42,5.5\n149,43,5.0\n149,44,4.5\n149,45,4.0\n149,46,3.5\n149,47,3.0\n149,48,2.5\n149,49,2.0\n149,50,13.5\n149,51,13.0\n149,52,12.5\n149,53,12.0\n149,54,11.5\n149,55,11.0\n149,56,10.5\n149,57,10.0\n149,58,9.5\n149,59,9.0\n149,60,8.5\n149,61,8.0\n149,62,7.5\n149,63,7.0\n149,64,6.5\n149,65,6.0\n149,66,5.5\n149,67,5.0\n149,68,4.5\n149,69,4.0\n149,70,3.5\n149,71,3.0\n149,72,2.5\n149,73,2.0\n149,74,1.5\n149,75,13.0\n149,76,12.5\n149,77,12.0\n149,78,11.5\n149,79,11.0\n149,80,10.5\n149,81,10.0\n149,82,9.5\n149,83,9.0\n149,84,8.5\n149,85,8.0\n149,86,7.5\n149,87,7.0\n149,88,6.5\n149,89,6.0\n149,90,5.5\n149,91,5.0\n149,92,4.5\n149,93,4.0\n149,94,3.5\n149,95,3.0\n149,96,2.5\n149,97,2.0\n149,98,1.5\n149,99,1.0\n149,100,12.5\n149,101,12.0\n149,102,11.5\n149,103,11.0\n149,104,10.5\n149,105,10.0\n149,106,9.5\n149,107,9.0\n149,108,8.5\n149,109,8.0\n149,110,7.5\n149,111,7.0\n149,112,6.5\n149,113,6.0\n149,114,5.5\n149,115,5.0\n149,116,4.5\n149,117,4.0\n149,118,3.5\n149,119,3.0\n149,120,2.5\n149,121,2.0\n149,122,1.5\n149,123,1.0\n149,124,0.5\n149,125,12.0\n149,126,11.5\n149,127,11.0\n149,128,10.5\n149,129,10.0\n149,130,9.5\n149,131,9.0\n149,132,8.5\n149,133,8.0\n149,134,7.5\n149,135,7.0\n149,136,6.5\n149,137,6.0\n149,138,5.5\n149,139,5.0\n149,140,4.5\n149,141,4.0\n149,142,3.5\n149,143,3.0\n149,144,2.5\n149,145,2.0\n149,146,1.5\n149,147,1.0\n149,148,0.5\n149,149,0\n149,150,12.5\n149,151,12.0\n149,152,11.5\n149,153,11.0\n149,154,10.5\n149,155,10.0\n149,156,9.5\n149,157,9.0\n149,158,8.5\n149,159,8.0\n149,160,7.5\n149,161,7.0\n149,162,6.5\n149,163,6.0\n149,164,5.5\n149,165,5.0\n149,166,4.5\n149,167,4.0\n149,168,3.5\n149,169,3.0\n149,170,2.5\n149,171,2.0\n149,172,1.5\n149,173,1.0\n149,174,0.5\n149,175,13.0\n149,176,12.5\n149,177,12.0\n149,178,11.5\n149,179,11.0\n149,180,10.5\n149,181,10.0\n149,182,9.5\n149,183,9.0\n149,184,8.5\n149,185,8.0\n149,186,7.5\n149,187,7.0\n149,188,6.5\n149,189,6.0\n149,190,5.5\n149,191,5.0\n149,192,4.5\n149,193,4.0\n149,194,3.5\n149,195,3.0\n149,196,2.5\n149,197,2.0\n149,198,1.5\n149,199,1.0\n149,200,13.5\n149,201,13.0\n149,202,12.5\n149,203,12.0\n149,204,11.5\n149,205,11.0\n149,206,10.5\n149,207,10.0\n149,208,9.5\n149,209,9.0\n149,210,8.5\n149,211,8.0\n149,212,7.5\n149,213,7.0\n149,214,6.5\n149,215,6.0\n149,216,5.5\n149,217,5.0\n149,218,4.5\n149,219,4.0\n149,220,3.5\n149,221,3.0\n149,222,2.5\n149,223,2.0\n149,224,1.5\n149,225,14.0\n149,226,13.5\n149,227,13.0\n149,228,12.5\n149,229,12.0\n149,230,11.5\n149,231,11.0\n149,232,10.5\n149,233,10.0\n149,234,9.5\n149,235,9.0\n149,236,8.5\n149,237,8.0\n149,238,7.5\n149,239,7.0\n149,240,6.5\n149,241,6.0\n149,242,5.5\n149,243,5.0\n149,244,4.5\n149,245,4.0\n149,246,3.5\n149,247,3.0\n149,248,2.5\n149,249,2.0\n149,250,14.5\n149,251,14.0\n149,252,13.5\n149,253,13.0\n149,254,12.5\n149,255,12.0\n149,256,11.5\n149,257,11.0\n149,258,10.5\n149,259,10.0\n149,260,9.5\n149,261,9.0\n149,262,8.5\n149,263,8.0\n149,264,7.5\n149,265,7.0\n149,266,6.5\n149,267,6.0\n149,268,5.5\n149,269,5.0\n149,270,4.5\n149,271,4.0\n149,272,3.5\n149,273,3.0\n149,274,2.5\n149,275,15.0\n149,276,14.5\n149,277,14.0\n149,278,13.5\n149,279,13.0\n149,280,12.5\n149,281,12.0\n149,282,11.5\n149,283,11.0\n149,284,10.5\n149,285,10.0\n149,286,9.5\n149,287,9.0\n149,288,8.5\n149,289,8.0\n149,290,7.5\n149,291,7.0\n149,292,6.5\n149,293,6.0\n149,294,5.5\n149,295,5.0\n149,296,4.5\n149,297,4.0\n149,298,3.5\n149,299,3.0\n149,300,15.5\n149,301,15.0\n149,302,14.5\n149,303,14.0\n149,304,13.5\n149,305,13.0\n149,306,12.5\n149,307,12.0\n149,308,11.5\n149,309,11.0\n149,310,10.5\n149,311,10.0\n149,312,9.5\n149,313,9.0\n149,314,8.5\n149,315,8.0\n149,316,7.5\n149,317,7.0\n149,318,6.5\n149,319,6.0\n149,320,5.5\n149,321,5.0\n149,322,4.5\n149,323,4.0\n149,324,3.5\n149,325,16.0\n149,326,15.5\n149,327,15.0\n149,328,14.5\n149,329,14.0\n149,330,13.5\n149,331,13.0\n149,332,12.5\n149,333,12.0\n149,334,11.5\n149,335,11.0\n149,336,10.5\n149,337,10.0\n149,338,9.5\n149,339,9.0\n149,340,8.5\n149,341,8.0\n149,342,7.5\n149,343,7.0\n149,344,6.5\n149,345,6.0\n149,346,5.5\n149,347,5.0\n149,348,4.5\n149,349,4.0\n149,350,16.5\n149,351,16.0\n149,352,15.5\n149,353,15.0\n149,354,14.5\n149,355,14.0\n149,356,13.5\n149,357,13.0\n149,358,12.5\n149,359,12.0\n149,360,11.5\n149,361,11.0\n149,362,10.5\n149,363,10.0\n149,364,9.5\n149,365,9.0\n149,366,8.5\n149,367,8.0\n149,368,7.5\n149,369,7.0\n149,370,6.5\n149,371,6.0\n149,372,5.5\n149,373,5.0\n149,374,4.5\n149,375,17.0\n149,376,16.5\n149,377,16.0\n149,378,15.5\n149,379,15.0\n149,380,14.5\n149,381,14.0\n149,382,13.5\n149,383,13.0\n149,384,12.5\n149,385,12.0\n149,386,11.5\n149,387,11.0\n149,388,10.5\n149,389,10.0\n149,390,9.5\n149,391,9.0\n149,392,8.5\n149,393,8.0\n149,394,7.5\n149,395,7.0\n149,396,6.5\n149,397,6.0\n149,398,5.5\n149,399,5.0\n149,400,17.5\n149,401,17.0\n149,402,16.5\n149,403,16.0\n149,404,15.5\n149,405,15.0\n149,406,14.5\n149,407,14.0\n149,408,13.5\n149,409,13.0\n149,410,12.5\n149,411,12.0\n149,412,11.5\n149,413,11.0\n149,414,10.5\n149,415,10.0\n149,416,9.5\n149,417,9.0\n149,418,8.5\n149,419,8.0\n149,420,7.5\n149,421,7.0\n149,422,6.5\n149,423,6.0\n149,424,5.5\n149,425,18.0\n149,426,17.5\n149,427,17.0\n149,428,16.5\n149,429,16.0\n149,430,15.5\n149,431,15.0\n149,432,14.5\n149,433,14.0\n149,434,13.5\n149,435,13.0\n149,436,12.5\n149,437,12.0\n149,438,11.5\n149,439,11.0\n149,440,10.5\n149,441,10.0\n149,442,9.5\n149,443,9.0\n149,444,8.5\n149,445,8.0\n149,446,7.5\n149,447,7.0\n149,448,6.5\n149,449,6.0\n149,450,18.5\n149,451,18.0\n149,452,17.5\n149,453,17.0\n149,454,16.5\n149,455,16.0\n149,456,15.5\n149,457,15.0\n149,458,14.5\n149,459,14.0\n149,460,13.5\n149,461,13.0\n149,462,12.5\n149,463,12.0\n149,464,11.5\n149,465,11.0\n149,466,10.5\n149,467,10.0\n149,468,9.5\n149,469,9.0\n149,470,8.5\n149,471,8.0\n149,472,7.5\n149,473,7.0\n149,474,6.5\n149,475,19.0\n149,476,18.5\n149,477,18.0\n149,478,17.5\n149,479,17.0\n149,480,16.5\n149,481,16.0\n149,482,15.5\n149,483,15.0\n149,484,14.5\n149,485,14.0\n149,486,13.5\n149,487,13.0\n149,488,12.5\n149,489,12.0\n149,490,11.5\n149,491,11.0\n149,492,10.5\n149,493,10.0\n149,494,9.5\n149,495,9.0\n149,496,8.5\n149,497,8.0\n149,498,7.5\n149,499,7.0\n149,500,19.5\n149,501,19.0\n149,502,18.5\n149,503,18.0\n149,504,17.5\n149,505,17.0\n149,506,16.5\n149,507,16.0\n149,508,15.5\n149,509,15.0\n149,510,14.5\n149,511,14.0\n149,512,13.5\n149,513,13.0\n149,514,12.5\n149,515,12.0\n149,516,11.5\n149,517,11.0\n149,518,10.5\n149,519,10.0\n149,520,9.5\n149,521,9.0\n149,522,8.5\n149,523,8.0\n149,524,7.5\n149,525,20.0\n149,526,19.5\n149,527,19.0\n149,528,18.5\n149,529,18.0\n149,530,17.5\n149,531,17.0\n149,532,16.5\n149,533,16.0\n149,534,15.5\n149,535,15.0\n149,536,14.5\n149,537,14.0\n149,538,13.5\n149,539,13.0\n149,540,12.5\n149,541,12.0\n149,542,11.5\n149,543,11.0\n149,544,10.5\n149,545,10.0\n149,546,9.5\n149,547,9.0\n149,548,8.5\n149,549,8.0\n149,550,20.5\n149,551,20.0\n149,552,19.5\n149,553,19.0\n149,554,18.5\n149,555,18.0\n149,556,17.5\n149,557,17.0\n149,558,16.5\n149,559,16.0\n149,560,15.5\n149,561,15.0\n149,562,14.5\n149,563,14.0\n149,564,13.5\n149,565,13.0\n149,566,12.5\n149,567,12.0\n149,568,11.5\n149,569,11.0\n149,570,10.5\n149,571,10.0\n149,572,9.5\n149,573,9.0\n149,574,8.5\n149,575,21.0\n149,576,20.5\n149,577,20.0\n149,578,19.5\n149,579,19.0\n149,580,18.5\n149,581,18.0\n149,582,17.5\n149,583,17.0\n149,584,16.5\n149,585,16.0\n149,586,15.5\n149,587,15.0\n149,588,14.5\n149,589,14.0\n149,590,13.5\n149,591,13.0\n149,592,12.5\n149,593,12.0\n149,594,11.5\n149,595,11.0\n149,596,10.5\n149,597,10.0\n149,598,9.5\n149,599,9.0\n149,600,21.5\n149,601,21.0\n149,602,20.5\n149,603,20.0\n149,604,19.5\n149,605,19.0\n149,606,18.5\n149,607,18.0\n149,608,17.5\n149,609,17.0\n149,610,16.5\n149,611,16.0\n149,612,15.5\n149,613,15.0\n149,614,14.5\n149,615,14.0\n149,616,13.5\n149,617,13.0\n149,618,12.5\n149,619,12.0\n149,620,11.5\n149,621,11.0\n149,622,10.5\n149,623,10.0\n149,624,9.5\n150,0,3.0\n150,1,3.5\n150,2,4.0\n150,3,4.5\n150,4,5.0\n150,5,5.5\n150,6,6.0\n150,7,6.5\n150,8,7.0\n150,9,7.5\n150,10,8.0\n150,11,8.5\n150,12,9.0\n150,13,9.5\n150,14,10.0\n150,15,10.5\n150,16,11.0\n150,17,11.5\n150,18,12.0\n150,19,12.5\n150,20,13.0\n150,21,13.5\n150,22,14.0\n150,23,14.5\n150,24,15.0\n150,25,2.5\n150,26,3.0\n150,27,3.5\n150,28,4.0\n150,29,4.5\n150,30,5.0\n150,31,5.5\n150,32,6.0\n150,33,6.5\n150,34,7.0\n150,35,7.5\n150,36,8.0\n150,37,8.5\n150,38,9.0\n150,39,9.5\n150,40,10.0\n150,41,10.5\n150,42,11.0\n150,43,11.5\n150,44,12.0\n150,45,12.5\n150,46,13.0\n150,47,13.5\n150,48,14.0\n150,49,14.5\n150,50,2.0\n150,51,2.5\n150,52,3.0\n150,53,3.5\n150,54,4.0\n150,55,4.5\n150,56,5.0\n150,57,5.5\n150,58,6.0\n150,59,6.5\n150,60,7.0\n150,61,7.5\n150,62,8.0\n150,63,8.5\n150,64,9.0\n150,65,9.5\n150,66,10.0\n150,67,10.5\n150,68,11.0\n150,69,11.5\n150,70,12.0\n150,71,12.5\n150,72,13.0\n150,73,13.5\n150,74,14.0\n150,75,1.5\n150,76,2.0\n150,77,2.5\n150,78,3.0\n150,79,3.5\n150,80,4.0\n150,81,4.5\n150,82,5.0\n150,83,5.5\n150,84,6.0\n150,85,6.5\n150,86,7.0\n150,87,7.5\n150,88,8.0\n150,89,8.5\n150,90,9.0\n150,91,9.5\n150,92,10.0\n150,93,10.5\n150,94,11.0\n150,95,11.5\n150,96,12.0\n150,97,12.5\n150,98,13.0\n150,99,13.5\n150,100,1.0\n150,101,1.5\n150,102,2.0\n150,103,2.5\n150,104,3.0\n150,105,3.5\n150,106,4.0\n150,107,4.5\n150,108,5.0\n150,109,5.5\n150,110,6.0\n150,111,6.5\n150,112,7.0\n150,113,7.5\n150,114,8.0\n150,115,8.5\n150,116,9.0\n150,117,9.5\n150,118,10.0\n150,119,10.5\n150,120,11.0\n150,121,11.5\n150,122,12.0\n150,123,12.5\n150,124,13.0\n150,125,0.5\n150,126,1.0\n150,127,1.5\n150,128,2.0\n150,129,2.5\n150,130,3.0\n150,131,3.5\n150,132,4.0\n150,133,4.5\n150,134,5.0\n150,135,5.5\n150,136,6.0\n150,137,6.5\n150,138,7.0\n150,139,7.5\n150,140,8.0\n150,141,8.5\n150,142,9.0\n150,143,9.5\n150,144,10.0\n150,145,10.5\n150,146,11.0\n150,147,11.5\n150,148,12.0\n150,149,12.5\n150,150,0\n150,151,0.5\n150,152,1.0\n150,153,1.5\n150,154,2.0\n150,155,2.5\n150,156,3.0\n150,157,3.5\n150,158,4.0\n150,159,4.5\n150,160,5.0\n150,161,5.5\n150,162,6.0\n150,163,6.5\n150,164,7.0\n150,165,7.5\n150,166,8.0\n150,167,8.5\n150,168,9.0\n150,169,9.5\n150,170,10.0\n150,171,10.5\n150,172,11.0\n150,173,11.5\n150,174,12.0\n150,175,0.5\n150,176,1.0\n150,177,1.5\n150,178,2.0\n150,179,2.5\n150,180,3.0\n150,181,3.5\n150,182,4.0\n150,183,4.5\n150,184,5.0\n150,185,5.5\n150,186,6.0\n150,187,6.5\n150,188,7.0\n150,189,7.5\n150,190,8.0\n150,191,8.5\n150,192,9.0\n150,193,9.5\n150,194,10.0\n150,195,10.5\n150,196,11.0\n150,197,11.5\n150,198,12.0\n150,199,12.5\n150,200,1.0\n150,201,1.5\n150,202,2.0\n150,203,2.5\n150,204,3.0\n150,205,3.5\n150,206,4.0\n150,207,4.5\n150,208,5.0\n150,209,5.5\n150,210,6.0\n150,211,6.5\n150,212,7.0\n150,213,7.5\n150,214,8.0\n150,215,8.5\n150,216,9.0\n150,217,9.5\n150,218,10.0\n150,219,10.5\n150,220,11.0\n150,221,11.5\n150,222,12.0\n150,223,12.5\n150,224,13.0\n150,225,1.5\n150,226,2.0\n150,227,2.5\n150,228,3.0\n150,229,3.5\n150,230,4.0\n150,231,4.5\n150,232,5.0\n150,233,5.5\n150,234,6.0\n150,235,6.5\n150,236,7.0\n150,237,7.5\n150,238,8.0\n150,239,8.5\n150,240,9.0\n150,241,9.5\n150,242,10.0\n150,243,10.5\n150,244,11.0\n150,245,11.5\n150,246,12.0\n150,247,12.5\n150,248,13.0\n150,249,13.5\n150,250,2.0\n150,251,2.5\n150,252,3.0\n150,253,3.5\n150,254,4.0\n150,255,4.5\n150,256,5.0\n150,257,5.5\n150,258,6.0\n150,259,6.5\n150,260,7.0\n150,261,7.5\n150,262,8.0\n150,263,8.5\n150,264,9.0\n150,265,9.5\n150,266,10.0\n150,267,10.5\n150,268,11.0\n150,269,11.5\n150,270,12.0\n150,271,12.5\n150,272,13.0\n150,273,13.5\n150,274,14.0\n150,275,2.5\n150,276,3.0\n150,277,3.5\n150,278,4.0\n150,279,4.5\n150,280,5.0\n150,281,5.5\n150,282,6.0\n150,283,6.5\n150,284,7.0\n150,285,7.5\n150,286,8.0\n150,287,8.5\n150,288,9.0\n150,289,9.5\n150,290,10.0\n150,291,10.5\n150,292,11.0\n150,293,11.5\n150,294,12.0\n150,295,12.5\n150,296,13.0\n150,297,13.5\n150,298,14.0\n150,299,14.5\n150,300,3.0\n150,301,3.5\n150,302,4.0\n150,303,4.5\n150,304,5.0\n150,305,5.5\n150,306,6.0\n150,307,6.5\n150,308,7.0\n150,309,7.5\n150,310,8.0\n150,311,8.5\n150,312,9.0\n150,313,9.5\n150,314,10.0\n150,315,10.5\n150,316,11.0\n150,317,11.5\n150,318,12.0\n150,319,12.5\n150,320,13.0\n150,321,13.5\n150,322,14.0\n150,323,14.5\n150,324,15.0\n150,325,3.5\n150,326,4.0\n150,327,4.5\n150,328,5.0\n150,329,5.5\n150,330,6.0\n150,331,6.5\n150,332,7.0\n150,333,7.5\n150,334,8.0\n150,335,8.5\n150,336,9.0\n150,337,9.5\n150,338,10.0\n150,339,10.5\n150,340,11.0\n150,341,11.5\n150,342,12.0\n150,343,12.5\n150,344,13.0\n150,345,13.5\n150,346,14.0\n150,347,14.5\n150,348,15.0\n150,349,15.5\n150,350,4.0\n150,351,4.5\n150,352,5.0\n150,353,5.5\n150,354,6.0\n150,355,6.5\n150,356,7.0\n150,357,7.5\n150,358,8.0\n150,359,8.5\n150,360,9.0\n150,361,9.5\n150,362,10.0\n150,363,10.5\n150,364,11.0\n150,365,11.5\n150,366,12.0\n150,367,12.5\n150,368,13.0\n150,369,13.5\n150,370,14.0\n150,371,14.5\n150,372,15.0\n150,373,15.5\n150,374,16.0\n150,375,4.5\n150,376,5.0\n150,377,5.5\n150,378,6.0\n150,379,6.5\n150,380,7.0\n150,381,7.5\n150,382,8.0\n150,383,8.5\n150,384,9.0\n150,385,9.5\n150,386,10.0\n150,387,10.5\n150,388,11.0\n150,389,11.5\n150,390,12.0\n150,391,12.5\n150,392,13.0\n150,393,13.5\n150,394,14.0\n150,395,14.5\n150,396,15.0\n150,397,15.5\n150,398,16.0\n150,399,16.5\n150,400,5.0\n150,401,5.5\n150,402,6.0\n150,403,6.5\n150,404,7.0\n150,405,7.5\n150,406,8.0\n150,407,8.5\n150,408,9.0\n150,409,9.5\n150,410,10.0\n150,411,10.5\n150,412,11.0\n150,413,11.5\n150,414,12.0\n150,415,12.5\n150,416,13.0\n150,417,13.5\n150,418,14.0\n150,419,14.5\n150,420,15.0\n150,421,15.5\n150,422,16.0\n150,423,16.5\n150,424,17.0\n150,425,5.5\n150,426,6.0\n150,427,6.5\n150,428,7.0\n150,429,7.5\n150,430,8.0\n150,431,8.5\n150,432,9.0\n150,433,9.5\n150,434,10.0\n150,435,10.5\n150,436,11.0\n150,437,11.5\n150,438,12.0\n150,439,12.5\n150,440,13.0\n150,441,13.5\n150,442,14.0\n150,443,14.5\n150,444,15.0\n150,445,15.5\n150,446,16.0\n150,447,16.5\n150,448,17.0\n150,449,17.5\n150,450,6.0\n150,451,6.5\n150,452,7.0\n150,453,7.5\n150,454,8.0\n150,455,8.5\n150,456,9.0\n150,457,9.5\n150,458,10.0\n150,459,10.5\n150,460,11.0\n150,461,11.5\n150,462,12.0\n150,463,12.5\n150,464,13.0\n150,465,13.5\n150,466,14.0\n150,467,14.5\n150,468,15.0\n150,469,15.5\n150,470,16.0\n150,471,16.5\n150,472,17.0\n150,473,17.5\n150,474,18.0\n150,475,6.5\n150,476,7.0\n150,477,7.5\n150,478,8.0\n150,479,8.5\n150,480,9.0\n150,481,9.5\n150,482,10.0\n150,483,10.5\n150,484,11.0\n150,485,11.5\n150,486,12.0\n150,487,12.5\n150,488,13.0\n150,489,13.5\n150,490,14.0\n150,491,14.5\n150,492,15.0\n150,493,15.5\n150,494,16.0\n150,495,16.5\n150,496,17.0\n150,497,17.5\n150,498,18.0\n150,499,18.5\n150,500,7.0\n150,501,7.5\n150,502,8.0\n150,503,8.5\n150,504,9.0\n150,505,9.5\n150,506,10.0\n150,507,10.5\n150,508,11.0\n150,509,11.5\n150,510,12.0\n150,511,12.5\n150,512,13.0\n150,513,13.5\n150,514,14.0\n150,515,14.5\n150,516,15.0\n150,517,15.5\n150,518,16.0\n150,519,16.5\n150,520,17.0\n150,521,17.5\n150,522,18.0\n150,523,18.5\n150,524,19.0\n150,525,7.5\n150,526,8.0\n150,527,8.5\n150,528,9.0\n150,529,9.5\n150,530,10.0\n150,531,10.5\n150,532,11.0\n150,533,11.5\n150,534,12.0\n150,535,12.5\n150,536,13.0\n150,537,13.5\n150,538,14.0\n150,539,14.5\n150,540,15.0\n150,541,15.5\n150,542,16.0\n150,543,16.5\n150,544,17.0\n150,545,17.5\n150,546,18.0\n150,547,18.5\n150,548,19.0\n150,549,19.5\n150,550,8.0\n150,551,8.5\n150,552,9.0\n150,553,9.5\n150,554,10.0\n150,555,10.5\n150,556,11.0\n150,557,11.5\n150,558,12.0\n150,559,12.5\n150,560,13.0\n150,561,13.5\n150,562,14.0\n150,563,14.5\n150,564,15.0\n150,565,15.5\n150,566,16.0\n150,567,16.5\n150,568,17.0\n150,569,17.5\n150,570,18.0\n150,571,18.5\n150,572,19.0\n150,573,19.5\n150,574,20.0\n150,575,8.5\n150,576,9.0\n150,577,9.5\n150,578,10.0\n150,579,10.5\n150,580,11.0\n150,581,11.5\n150,582,12.0\n150,583,12.5\n150,584,13.0\n150,585,13.5\n150,586,14.0\n150,587,14.5\n150,588,15.0\n150,589,15.5\n150,590,16.0\n150,591,16.5\n150,592,17.0\n150,593,17.5\n150,594,18.0\n150,595,18.5\n150,596,19.0\n150,597,19.5\n150,598,20.0\n150,599,20.5\n150,600,9.0\n150,601,9.5\n150,602,10.0\n150,603,10.5\n150,604,11.0\n150,605,11.5\n150,606,12.0\n150,607,12.5\n150,608,13.0\n150,609,13.5\n150,610,14.0\n150,611,14.5\n150,612,15.0\n150,613,15.5\n150,614,16.0\n150,615,16.5\n150,616,17.0\n150,617,17.5\n150,618,18.0\n150,619,18.5\n150,620,19.0\n150,621,19.5\n150,622,20.0\n150,623,20.5\n150,624,21.0\n151,0,3.5\n151,1,3.0\n151,2,3.5\n151,3,4.0\n151,4,4.5\n151,5,5.0\n151,6,5.5\n151,7,6.0\n151,8,6.5\n151,9,7.0\n151,10,7.5\n151,11,8.0\n151,12,8.5\n151,13,9.0\n151,14,9.5\n151,15,10.0\n151,16,10.5\n151,17,11.0\n151,18,11.5\n151,19,12.0\n151,20,12.5\n151,21,13.0\n151,22,13.5\n151,23,14.0\n151,24,14.5\n151,25,3.0\n151,26,2.5\n151,27,3.0\n151,28,3.5\n151,29,4.0\n151,30,4.5\n151,31,5.0\n151,32,5.5\n151,33,6.0\n151,34,6.5\n151,35,7.0\n151,36,7.5\n151,37,8.0\n151,38,8.5\n151,39,9.0\n151,40,9.5\n151,41,10.0\n151,42,10.5\n151,43,11.0\n151,44,11.5\n151,45,12.0\n151,46,12.5\n151,47,13.0\n151,48,13.5\n151,49,14.0\n151,50,2.5\n151,51,2.0\n151,52,2.5\n151,53,3.0\n151,54,3.5\n151,55,4.0\n151,56,4.5\n151,57,5.0\n151,58,5.5\n151,59,6.0\n151,60,6.5\n151,61,7.0\n151,62,7.5\n151,63,8.0\n151,64,8.5\n151,65,9.0\n151,66,9.5\n151,67,10.0\n151,68,10.5\n151,69,11.0\n151,70,11.5\n151,71,12.0\n151,72,12.5\n151,73,13.0\n151,74,13.5\n151,75,2.0\n151,76,1.5\n151,77,2.0\n151,78,2.5\n151,79,3.0\n151,80,3.5\n151,81,4.0\n151,82,4.5\n151,83,5.0\n151,84,5.5\n151,85,6.0\n151,86,6.5\n151,87,7.0\n151,88,7.5\n151,89,8.0\n151,90,8.5\n151,91,9.0\n151,92,9.5\n151,93,10.0\n151,94,10.5\n151,95,11.0\n151,96,11.5\n151,97,12.0\n151,98,12.5\n151,99,13.0\n151,100,1.5\n151,101,1.0\n151,102,1.5\n151,103,2.0\n151,104,2.5\n151,105,3.0\n151,106,3.5\n151,107,4.0\n151,108,4.5\n151,109,5.0\n151,110,5.5\n151,111,6.0\n151,112,6.5\n151,113,7.0\n151,114,7.5\n151,115,8.0\n151,116,8.5\n151,117,9.0\n151,118,9.5\n151,119,10.0\n151,120,10.5\n151,121,11.0\n151,122,11.5\n151,123,12.0\n151,124,12.5\n151,125,1.0\n151,126,0.5\n151,127,1.0\n151,128,1.5\n151,129,2.0\n151,130,2.5\n151,131,3.0\n151,132,3.5\n151,133,4.0\n151,134,4.5\n151,135,5.0\n151,136,5.5\n151,137,6.0\n151,138,6.5\n151,139,7.0\n151,140,7.5\n151,141,8.0\n151,142,8.5\n151,143,9.0\n151,144,9.5\n151,145,10.0\n151,146,10.5\n151,147,11.0\n151,148,11.5\n151,149,12.0\n151,150,0.5\n151,151,0\n151,152,0.5\n151,153,1.0\n151,154,1.5\n151,155,2.0\n151,156,2.5\n151,157,3.0\n151,158,3.5\n151,159,4.0\n151,160,4.5\n151,161,5.0\n151,162,5.5\n151,163,6.0\n151,164,6.5\n151,165,7.0\n151,166,7.5\n151,167,8.0\n151,168,8.5\n151,169,9.0\n151,170,9.5\n151,171,10.0\n151,172,10.5\n151,173,11.0\n151,174,11.5\n151,175,1.0\n151,176,0.5\n151,177,1.0\n151,178,1.5\n151,179,2.0\n151,180,2.5\n151,181,3.0\n151,182,3.5\n151,183,4.0\n151,184,4.5\n151,185,5.0\n151,186,5.5\n151,187,6.0\n151,188,6.5\n151,189,7.0\n151,190,7.5\n151,191,8.0\n151,192,8.5\n151,193,9.0\n151,194,9.5\n151,195,10.0\n151,196,10.5\n151,197,11.0\n151,198,11.5\n151,199,12.0\n151,200,1.5\n151,201,1.0\n151,202,1.5\n151,203,2.0\n151,204,2.5\n151,205,3.0\n151,206,3.5\n151,207,4.0\n151,208,4.5\n151,209,5.0\n151,210,5.5\n151,211,6.0\n151,212,6.5\n151,213,7.0\n151,214,7.5\n151,215,8.0\n151,216,8.5\n151,217,9.0\n151,218,9.5\n151,219,10.0\n151,220,10.5\n151,221,11.0\n151,222,11.5\n151,223,12.0\n151,224,12.5\n151,225,2.0\n151,226,1.5\n151,227,2.0\n151,228,2.5\n151,229,3.0\n151,230,3.5\n151,231,4.0\n151,232,4.5\n151,233,5.0\n151,234,5.5\n151,235,6.0\n151,236,6.5\n151,237,7.0\n151,238,7.5\n151,239,8.0\n151,240,8.5\n151,241,9.0\n151,242,9.5\n151,243,10.0\n151,244,10.5\n151,245,11.0\n151,246,11.5\n151,247,12.0\n151,248,12.5\n151,249,13.0\n151,250,2.5\n151,251,2.0\n151,252,2.5\n151,253,3.0\n151,254,3.5\n151,255,4.0\n151,256,4.5\n151,257,5.0\n151,258,5.5\n151,259,6.0\n151,260,6.5\n151,261,7.0\n151,262,7.5\n151,263,8.0\n151,264,8.5\n151,265,9.0\n151,266,9.5\n151,267,10.0\n151,268,10.5\n151,269,11.0\n151,270,11.5\n151,271,12.0\n151,272,12.5\n151,273,13.0\n151,274,13.5\n151,275,3.0\n151,276,2.5\n151,277,3.0\n151,278,3.5\n151,279,4.0\n151,280,4.5\n151,281,5.0\n151,282,5.5\n151,283,6.0\n151,284,6.5\n151,285,7.0\n151,286,7.5\n151,287,8.0\n151,288,8.5\n151,289,9.0\n151,290,9.5\n151,291,10.0\n151,292,10.5\n151,293,11.0\n151,294,11.5\n151,295,12.0\n151,296,12.5\n151,297,13.0\n151,298,13.5\n151,299,14.0\n151,300,3.5\n151,301,3.0\n151,302,3.5\n151,303,4.0\n151,304,4.5\n151,305,5.0\n151,306,5.5\n151,307,6.0\n151,308,6.5\n151,309,7.0\n151,310,7.5\n151,311,8.0\n151,312,8.5\n151,313,9.0\n151,314,9.5\n151,315,10.0\n151,316,10.5\n151,317,11.0\n151,318,11.5\n151,319,12.0\n151,320,12.5\n151,321,13.0\n151,322,13.5\n151,323,14.0\n151,324,14.5\n151,325,4.0\n151,326,3.5\n151,327,4.0\n151,328,4.5\n151,329,5.0\n151,330,5.5\n151,331,6.0\n151,332,6.5\n151,333,7.0\n151,334,7.5\n151,335,8.0\n151,336,8.5\n151,337,9.0\n151,338,9.5\n151,339,10.0\n151,340,10.5\n151,341,11.0\n151,342,11.5\n151,343,12.0\n151,344,12.5\n151,345,13.0\n151,346,13.5\n151,347,14.0\n151,348,14.5\n151,349,15.0\n151,350,4.5\n151,351,4.0\n151,352,4.5\n151,353,5.0\n151,354,5.5\n151,355,6.0\n151,356,6.5\n151,357,7.0\n151,358,7.5\n151,359,8.0\n151,360,8.5\n151,361,9.0\n151,362,9.5\n151,363,10.0\n151,364,10.5\n151,365,11.0\n151,366,11.5\n151,367,12.0\n151,368,12.5\n151,369,13.0\n151,370,13.5\n151,371,14.0\n151,372,14.5\n151,373,15.0\n151,374,15.5\n151,375,5.0\n151,376,4.5\n151,377,5.0\n151,378,5.5\n151,379,6.0\n151,380,6.5\n151,381,7.0\n151,382,7.5\n151,383,8.0\n151,384,8.5\n151,385,9.0\n151,386,9.5\n151,387,10.0\n151,388,10.5\n151,389,11.0\n151,390,11.5\n151,391,12.0\n151,392,12.5\n151,393,13.0\n151,394,13.5\n151,395,14.0\n151,396,14.5\n151,397,15.0\n151,398,15.5\n151,399,16.0\n151,400,5.5\n151,401,5.0\n151,402,5.5\n151,403,6.0\n151,404,6.5\n151,405,7.0\n151,406,7.5\n151,407,8.0\n151,408,8.5\n151,409,9.0\n151,410,9.5\n151,411,10.0\n151,412,10.5\n151,413,11.0\n151,414,11.5\n151,415,12.0\n151,416,12.5\n151,417,13.0\n151,418,13.5\n151,419,14.0\n151,420,14.5\n151,421,15.0\n151,422,15.5\n151,423,16.0\n151,424,16.5\n151,425,6.0\n151,426,5.5\n151,427,6.0\n151,428,6.5\n151,429,7.0\n151,430,7.5\n151,431,8.0\n151,432,8.5\n151,433,9.0\n151,434,9.5\n151,435,10.0\n151,436,10.5\n151,437,11.0\n151,438,11.5\n151,439,12.0\n151,440,12.5\n151,441,13.0\n151,442,13.5\n151,443,14.0\n151,444,14.5\n151,445,15.0\n151,446,15.5\n151,447,16.0\n151,448,16.5\n151,449,17.0\n151,450,6.5\n151,451,6.0\n151,452,6.5\n151,453,7.0\n151,454,7.5\n151,455,8.0\n151,456,8.5\n151,457,9.0\n151,458,9.5\n151,459,10.0\n151,460,10.5\n151,461,11.0\n151,462,11.5\n151,463,12.0\n151,464,12.5\n151,465,13.0\n151,466,13.5\n151,467,14.0\n151,468,14.5\n151,469,15.0\n151,470,15.5\n151,471,16.0\n151,472,16.5\n151,473,17.0\n151,474,17.5\n151,475,7.0\n151,476,6.5\n151,477,7.0\n151,478,7.5\n151,479,8.0\n151,480,8.5\n151,481,9.0\n151,482,9.5\n151,483,10.0\n151,484,10.5\n151,485,11.0\n151,486,11.5\n151,487,12.0\n151,488,12.5\n151,489,13.0\n151,490,13.5\n151,491,14.0\n151,492,14.5\n151,493,15.0\n151,494,15.5\n151,495,16.0\n151,496,16.5\n151,497,17.0\n151,498,17.5\n151,499,18.0\n151,500,7.5\n151,501,7.0\n151,502,7.5\n151,503,8.0\n151,504,8.5\n151,505,9.0\n151,506,9.5\n151,507,10.0\n151,508,10.5\n151,509,11.0\n151,510,11.5\n151,511,12.0\n151,512,12.5\n151,513,13.0\n151,514,13.5\n151,515,14.0\n151,516,14.5\n151,517,15.0\n151,518,15.5\n151,519,16.0\n151,520,16.5\n151,521,17.0\n151,522,17.5\n151,523,18.0\n151,524,18.5\n151,525,8.0\n151,526,7.5\n151,527,8.0\n151,528,8.5\n151,529,9.0\n151,530,9.5\n151,531,10.0\n151,532,10.5\n151,533,11.0\n151,534,11.5\n151,535,12.0\n151,536,12.5\n151,537,13.0\n151,538,13.5\n151,539,14.0\n151,540,14.5\n151,541,15.0\n151,542,15.5\n151,543,16.0\n151,544,16.5\n151,545,17.0\n151,546,17.5\n151,547,18.0\n151,548,18.5\n151,549,19.0\n151,550,8.5\n151,551,8.0\n151,552,8.5\n151,553,9.0\n151,554,9.5\n151,555,10.0\n151,556,10.5\n151,557,11.0\n151,558,11.5\n151,559,12.0\n151,560,12.5\n151,561,13.0\n151,562,13.5\n151,563,14.0\n151,564,14.5\n151,565,15.0\n151,566,15.5\n151,567,16.0\n151,568,16.5\n151,569,17.0\n151,570,17.5\n151,571,18.0\n151,572,18.5\n151,573,19.0\n151,574,19.5\n151,575,9.0\n151,576,8.5\n151,577,9.0\n151,578,9.5\n151,579,10.0\n151,580,10.5\n151,581,11.0\n151,582,11.5\n151,583,12.0\n151,584,12.5\n151,585,13.0\n151,586,13.5\n151,587,14.0\n151,588,14.5\n151,589,15.0\n151,590,15.5\n151,591,16.0\n151,592,16.5\n151,593,17.0\n151,594,17.5\n151,595,18.0\n151,596,18.5\n151,597,19.0\n151,598,19.5\n151,599,20.0\n151,600,9.5\n151,601,9.0\n151,602,9.5\n151,603,10.0\n151,604,10.5\n151,605,11.0\n151,606,11.5\n151,607,12.0\n151,608,12.5\n151,609,13.0\n151,610,13.5\n151,611,14.0\n151,612,14.5\n151,613,15.0\n151,614,15.5\n151,615,16.0\n151,616,16.5\n151,617,17.0\n151,618,17.5\n151,619,18.0\n151,620,18.5\n151,621,19.0\n151,622,19.5\n151,623,20.0\n151,624,20.5\n152,0,4.0\n152,1,3.5\n152,2,3.0\n152,3,3.5\n152,4,4.0\n152,5,4.5\n152,6,5.0\n152,7,5.5\n152,8,6.0\n152,9,6.5\n152,10,7.0\n152,11,7.5\n152,12,8.0\n152,13,8.5\n152,14,9.0\n152,15,9.5\n152,16,10.0\n152,17,10.5\n152,18,11.0\n152,19,11.5\n152,20,12.0\n152,21,12.5\n152,22,13.0\n152,23,13.5\n152,24,14.0\n152,25,3.5\n152,26,3.0\n152,27,2.5\n152,28,3.0\n152,29,3.5\n152,30,4.0\n152,31,4.5\n152,32,5.0\n152,33,5.5\n152,34,6.0\n152,35,6.5\n152,36,7.0\n152,37,7.5\n152,38,8.0\n152,39,8.5\n152,40,9.0\n152,41,9.5\n152,42,10.0\n152,43,10.5\n152,44,11.0\n152,45,11.5\n152,46,12.0\n152,47,12.5\n152,48,13.0\n152,49,13.5\n152,50,3.0\n152,51,2.5\n152,52,2.0\n152,53,2.5\n152,54,3.0\n152,55,3.5\n152,56,4.0\n152,57,4.5\n152,58,5.0\n152,59,5.5\n152,60,6.0\n152,61,6.5\n152,62,7.0\n152,63,7.5\n152,64,8.0\n152,65,8.5\n152,66,9.0\n152,67,9.5\n152,68,10.0\n152,69,10.5\n152,70,11.0\n152,71,11.5\n152,72,12.0\n152,73,12.5\n152,74,13.0\n152,75,2.5\n152,76,2.0\n152,77,1.5\n152,78,2.0\n152,79,2.5\n152,80,3.0\n152,81,3.5\n152,82,4.0\n152,83,4.5\n152,84,5.0\n152,85,5.5\n152,86,6.0\n152,87,6.5\n152,88,7.0\n152,89,7.5\n152,90,8.0\n152,91,8.5\n152,92,9.0\n152,93,9.5\n152,94,10.0\n152,95,10.5\n152,96,11.0\n152,97,11.5\n152,98,12.0\n152,99,12.5\n152,100,2.0\n152,101,1.5\n152,102,1.0\n152,103,1.5\n152,104,2.0\n152,105,2.5\n152,106,3.0\n152,107,3.5\n152,108,4.0\n152,109,4.5\n152,110,5.0\n152,111,5.5\n152,112,6.0\n152,113,6.5\n152,114,7.0\n152,115,7.5\n152,116,8.0\n152,117,8.5\n152,118,9.0\n152,119,9.5\n152,120,10.0\n152,121,10.5\n152,122,11.0\n152,123,11.5\n152,124,12.0\n152,125,1.5\n152,126,1.0\n152,127,0.5\n152,128,1.0\n152,129,1.5\n152,130,2.0\n152,131,2.5\n152,132,3.0\n152,133,3.5\n152,134,4.0\n152,135,4.5\n152,136,5.0\n152,137,5.5\n152,138,6.0\n152,139,6.5\n152,140,7.0\n152,141,7.5\n152,142,8.0\n152,143,8.5\n152,144,9.0\n152,145,9.5\n152,146,10.0\n152,147,10.5\n152,148,11.0\n152,149,11.5\n152,150,1.0\n152,151,0.5\n152,152,0\n152,153,0.5\n152,154,1.0\n152,155,1.5\n152,156,2.0\n152,157,2.5\n152,158,3.0\n152,159,3.5\n152,160,4.0\n152,161,4.5\n152,162,5.0\n152,163,5.5\n152,164,6.0\n152,165,6.5\n152,166,7.0\n152,167,7.5\n152,168,8.0\n152,169,8.5\n152,170,9.0\n152,171,9.5\n152,172,10.0\n152,173,10.5\n152,174,11.0\n152,175,1.5\n152,176,1.0\n152,177,0.5\n152,178,1.0\n152,179,1.5\n152,180,2.0\n152,181,2.5\n152,182,3.0\n152,183,3.5\n152,184,4.0\n152,185,4.5\n152,186,5.0\n152,187,5.5\n152,188,6.0\n152,189,6.5\n152,190,7.0\n152,191,7.5\n152,192,8.0\n152,193,8.5\n152,194,9.0\n152,195,9.5\n152,196,10.0\n152,197,10.5\n152,198,11.0\n152,199,11.5\n152,200,2.0\n152,201,1.5\n152,202,1.0\n152,203,1.5\n152,204,2.0\n152,205,2.5\n152,206,3.0\n152,207,3.5\n152,208,4.0\n152,209,4.5\n152,210,5.0\n152,211,5.5\n152,212,6.0\n152,213,6.5\n152,214,7.0\n152,215,7.5\n152,216,8.0\n152,217,8.5\n152,218,9.0\n152,219,9.5\n152,220,10.0\n152,221,10.5\n152,222,11.0\n152,223,11.5\n152,224,12.0\n152,225,2.5\n152,226,2.0\n152,227,1.5\n152,228,2.0\n152,229,2.5\n152,230,3.0\n152,231,3.5\n152,232,4.0\n152,233,4.5\n152,234,5.0\n152,235,5.5\n152,236,6.0\n152,237,6.5\n152,238,7.0\n152,239,7.5\n152,240,8.0\n152,241,8.5\n152,242,9.0\n152,243,9.5\n152,244,10.0\n152,245,10.5\n152,246,11.0\n152,247,11.5\n152,248,12.0\n152,249,12.5\n152,250,3.0\n152,251,2.5\n152,252,2.0\n152,253,2.5\n152,254,3.0\n152,255,3.5\n152,256,4.0\n152,257,4.5\n152,258,5.0\n152,259,5.5\n152,260,6.0\n152,261,6.5\n152,262,7.0\n152,263,7.5\n152,264,8.0\n152,265,8.5\n152,266,9.0\n152,267,9.5\n152,268,10.0\n152,269,10.5\n152,270,11.0\n152,271,11.5\n152,272,12.0\n152,273,12.5\n152,274,13.0\n152,275,3.5\n152,276,3.0\n152,277,2.5\n152,278,3.0\n152,279,3.5\n152,280,4.0\n152,281,4.5\n152,282,5.0\n152,283,5.5\n152,284,6.0\n152,285,6.5\n152,286,7.0\n152,287,7.5\n152,288,8.0\n152,289,8.5\n152,290,9.0\n152,291,9.5\n152,292,10.0\n152,293,10.5\n152,294,11.0\n152,295,11.5\n152,296,12.0\n152,297,12.5\n152,298,13.0\n152,299,13.5\n152,300,4.0\n152,301,3.5\n152,302,3.0\n152,303,3.5\n152,304,4.0\n152,305,4.5\n152,306,5.0\n152,307,5.5\n152,308,6.0\n152,309,6.5\n152,310,7.0\n152,311,7.5\n152,312,8.0\n152,313,8.5\n152,314,9.0\n152,315,9.5\n152,316,10.0\n152,317,10.5\n152,318,11.0\n152,319,11.5\n152,320,12.0\n152,321,12.5\n152,322,13.0\n152,323,13.5\n152,324,14.0\n152,325,4.5\n152,326,4.0\n152,327,3.5\n152,328,4.0\n152,329,4.5\n152,330,5.0\n152,331,5.5\n152,332,6.0\n152,333,6.5\n152,334,7.0\n152,335,7.5\n152,336,8.0\n152,337,8.5\n152,338,9.0\n152,339,9.5\n152,340,10.0\n152,341,10.5\n152,342,11.0\n152,343,11.5\n152,344,12.0\n152,345,12.5\n152,346,13.0\n152,347,13.5\n152,348,14.0\n152,349,14.5\n152,350,5.0\n152,351,4.5\n152,352,4.0\n152,353,4.5\n152,354,5.0\n152,355,5.5\n152,356,6.0\n152,357,6.5\n152,358,7.0\n152,359,7.5\n152,360,8.0\n152,361,8.5\n152,362,9.0\n152,363,9.5\n152,364,10.0\n152,365,10.5\n152,366,11.0\n152,367,11.5\n152,368,12.0\n152,369,12.5\n152,370,13.0\n152,371,13.5\n152,372,14.0\n152,373,14.5\n152,374,15.0\n152,375,5.5\n152,376,5.0\n152,377,4.5\n152,378,5.0\n152,379,5.5\n152,380,6.0\n152,381,6.5\n152,382,7.0\n152,383,7.5\n152,384,8.0\n152,385,8.5\n152,386,9.0\n152,387,9.5\n152,388,10.0\n152,389,10.5\n152,390,11.0\n152,391,11.5\n152,392,12.0\n152,393,12.5\n152,394,13.0\n152,395,13.5\n152,396,14.0\n152,397,14.5\n152,398,15.0\n152,399,15.5\n152,400,6.0\n152,401,5.5\n152,402,5.0\n152,403,5.5\n152,404,6.0\n152,405,6.5\n152,406,7.0\n152,407,7.5\n152,408,8.0\n152,409,8.5\n152,410,9.0\n152,411,9.5\n152,412,10.0\n152,413,10.5\n152,414,11.0\n152,415,11.5\n152,416,12.0\n152,417,12.5\n152,418,13.0\n152,419,13.5\n152,420,14.0\n152,421,14.5\n152,422,15.0\n152,423,15.5\n152,424,16.0\n152,425,6.5\n152,426,6.0\n152,427,5.5\n152,428,6.0\n152,429,6.5\n152,430,7.0\n152,431,7.5\n152,432,8.0\n152,433,8.5\n152,434,9.0\n152,435,9.5\n152,436,10.0\n152,437,10.5\n152,438,11.0\n152,439,11.5\n152,440,12.0\n152,441,12.5\n152,442,13.0\n152,443,13.5\n152,444,14.0\n152,445,14.5\n152,446,15.0\n152,447,15.5\n152,448,16.0\n152,449,16.5\n152,450,7.0\n152,451,6.5\n152,452,6.0\n152,453,6.5\n152,454,7.0\n152,455,7.5\n152,456,8.0\n152,457,8.5\n152,458,9.0\n152,459,9.5\n152,460,10.0\n152,461,10.5\n152,462,11.0\n152,463,11.5\n152,464,12.0\n152,465,12.5\n152,466,13.0\n152,467,13.5\n152,468,14.0\n152,469,14.5\n152,470,15.0\n152,471,15.5\n152,472,16.0\n152,473,16.5\n152,474,17.0\n152,475,7.5\n152,476,7.0\n152,477,6.5\n152,478,7.0\n152,479,7.5\n152,480,8.0\n152,481,8.5\n152,482,9.0\n152,483,9.5\n152,484,10.0\n152,485,10.5\n152,486,11.0\n152,487,11.5\n152,488,12.0\n152,489,12.5\n152,490,13.0\n152,491,13.5\n152,492,14.0\n152,493,14.5\n152,494,15.0\n152,495,15.5\n152,496,16.0\n152,497,16.5\n152,498,17.0\n152,499,17.5\n152,500,8.0\n152,501,7.5\n152,502,7.0\n152,503,7.5\n152,504,8.0\n152,505,8.5\n152,506,9.0\n152,507,9.5\n152,508,10.0\n152,509,10.5\n152,510,11.0\n152,511,11.5\n152,512,12.0\n152,513,12.5\n152,514,13.0\n152,515,13.5\n152,516,14.0\n152,517,14.5\n152,518,15.0\n152,519,15.5\n152,520,16.0\n152,521,16.5\n152,522,17.0\n152,523,17.5\n152,524,18.0\n152,525,8.5\n152,526,8.0\n152,527,7.5\n152,528,8.0\n152,529,8.5\n152,530,9.0\n152,531,9.5\n152,532,10.0\n152,533,10.5\n152,534,11.0\n152,535,11.5\n152,536,12.0\n152,537,12.5\n152,538,13.0\n152,539,13.5\n152,540,14.0\n152,541,14.5\n152,542,15.0\n152,543,15.5\n152,544,16.0\n152,545,16.5\n152,546,17.0\n152,547,17.5\n152,548,18.0\n152,549,18.5\n152,550,9.0\n152,551,8.5\n152,552,8.0\n152,553,8.5\n152,554,9.0\n152,555,9.5\n152,556,10.0\n152,557,10.5\n152,558,11.0\n152,559,11.5\n152,560,12.0\n152,561,12.5\n152,562,13.0\n152,563,13.5\n152,564,14.0\n152,565,14.5\n152,566,15.0\n152,567,15.5\n152,568,16.0\n152,569,16.5\n152,570,17.0\n152,571,17.5\n152,572,18.0\n152,573,18.5\n152,574,19.0\n152,575,9.5\n152,576,9.0\n152,577,8.5\n152,578,9.0\n152,579,9.5\n152,580,10.0\n152,581,10.5\n152,582,11.0\n152,583,11.5\n152,584,12.0\n152,585,12.5\n152,586,13.0\n152,587,13.5\n152,588,14.0\n152,589,14.5\n152,590,15.0\n152,591,15.5\n152,592,16.0\n152,593,16.5\n152,594,17.0\n152,595,17.5\n152,596,18.0\n152,597,18.5\n152,598,19.0\n152,599,19.5\n152,600,10.0\n152,601,9.5\n152,602,9.0\n152,603,9.5\n152,604,10.0\n152,605,10.5\n152,606,11.0\n152,607,11.5\n152,608,12.0\n152,609,12.5\n152,610,13.0\n152,611,13.5\n152,612,14.0\n152,613,14.5\n152,614,15.0\n152,615,15.5\n152,616,16.0\n152,617,16.5\n152,618,17.0\n152,619,17.5\n152,620,18.0\n152,621,18.5\n152,622,19.0\n152,623,19.5\n152,624,20.0\n153,0,4.5\n153,1,4.0\n153,2,3.5\n153,3,3.0\n153,4,3.5\n153,5,4.0\n153,6,4.5\n153,7,5.0\n153,8,5.5\n153,9,6.0\n153,10,6.5\n153,11,7.0\n153,12,7.5\n153,13,8.0\n153,14,8.5\n153,15,9.0\n153,16,9.5\n153,17,10.0\n153,18,10.5\n153,19,11.0\n153,20,11.5\n153,21,12.0\n153,22,12.5\n153,23,13.0\n153,24,13.5\n153,25,4.0\n153,26,3.5\n153,27,3.0\n153,28,2.5\n153,29,3.0\n153,30,3.5\n153,31,4.0\n153,32,4.5\n153,33,5.0\n153,34,5.5\n153,35,6.0\n153,36,6.5\n153,37,7.0\n153,38,7.5\n153,39,8.0\n153,40,8.5\n153,41,9.0\n153,42,9.5\n153,43,10.0\n153,44,10.5\n153,45,11.0\n153,46,11.5\n153,47,12.0\n153,48,12.5\n153,49,13.0\n153,50,3.5\n153,51,3.0\n153,52,2.5\n153,53,2.0\n153,54,2.5\n153,55,3.0\n153,56,3.5\n153,57,4.0\n153,58,4.5\n153,59,5.0\n153,60,5.5\n153,61,6.0\n153,62,6.5\n153,63,7.0\n153,64,7.5\n153,65,8.0\n153,66,8.5\n153,67,9.0\n153,68,9.5\n153,69,10.0\n153,70,10.5\n153,71,11.0\n153,72,11.5\n153,73,12.0\n153,74,12.5\n153,75,3.0\n153,76,2.5\n153,77,2.0\n153,78,1.5\n153,79,2.0\n153,80,2.5\n153,81,3.0\n153,82,3.5\n153,83,4.0\n153,84,4.5\n153,85,5.0\n153,86,5.5\n153,87,6.0\n153,88,6.5\n153,89,7.0\n153,90,7.5\n153,91,8.0\n153,92,8.5\n153,93,9.0\n153,94,9.5\n153,95,10.0\n153,96,10.5\n153,97,11.0\n153,98,11.5\n153,99,12.0\n153,100,2.5\n153,101,2.0\n153,102,1.5\n153,103,1.0\n153,104,1.5\n153,105,2.0\n153,106,2.5\n153,107,3.0\n153,108,3.5\n153,109,4.0\n153,110,4.5\n153,111,5.0\n153,112,5.5\n153,113,6.0\n153,114,6.5\n153,115,7.0\n153,116,7.5\n153,117,8.0\n153,118,8.5\n153,119,9.0\n153,120,9.5\n153,121,10.0\n153,122,10.5\n153,123,11.0\n153,124,11.5\n153,125,2.0\n153,126,1.5\n153,127,1.0\n153,128,0.5\n153,129,1.0\n153,130,1.5\n153,131,2.0\n153,132,2.5\n153,133,3.0\n153,134,3.5\n153,135,4.0\n153,136,4.5\n153,137,5.0\n153,138,5.5\n153,139,6.0\n153,140,6.5\n153,141,7.0\n153,142,7.5\n153,143,8.0\n153,144,8.5\n153,145,9.0\n153,146,9.5\n153,147,10.0\n153,148,10.5\n153,149,11.0\n153,150,1.5\n153,151,1.0\n153,152,0.5\n153,153,0\n153,154,0.5\n153,155,1.0\n153,156,1.5\n153,157,2.0\n153,158,2.5\n153,159,3.0\n153,160,3.5\n153,161,4.0\n153,162,4.5\n153,163,5.0\n153,164,5.5\n153,165,6.0\n153,166,6.5\n153,167,7.0\n153,168,7.5\n153,169,8.0\n153,170,8.5\n153,171,9.0\n153,172,9.5\n153,173,10.0\n153,174,10.5\n153,175,2.0\n153,176,1.5\n153,177,1.0\n153,178,0.5\n153,179,1.0\n153,180,1.5\n153,181,2.0\n153,182,2.5\n153,183,3.0\n153,184,3.5\n153,185,4.0\n153,186,4.5\n153,187,5.0\n153,188,5.5\n153,189,6.0\n153,190,6.5\n153,191,7.0\n153,192,7.5\n153,193,8.0\n153,194,8.5\n153,195,9.0\n153,196,9.5\n153,197,10.0\n153,198,10.5\n153,199,11.0\n153,200,2.5\n153,201,2.0\n153,202,1.5\n153,203,1.0\n153,204,1.5\n153,205,2.0\n153,206,2.5\n153,207,3.0\n153,208,3.5\n153,209,4.0\n153,210,4.5\n153,211,5.0\n153,212,5.5\n153,213,6.0\n153,214,6.5\n153,215,7.0\n153,216,7.5\n153,217,8.0\n153,218,8.5\n153,219,9.0\n153,220,9.5\n153,221,10.0\n153,222,10.5\n153,223,11.0\n153,224,11.5\n153,225,3.0\n153,226,2.5\n153,227,2.0\n153,228,1.5\n153,229,2.0\n153,230,2.5\n153,231,3.0\n153,232,3.5\n153,233,4.0\n153,234,4.5\n153,235,5.0\n153,236,5.5\n153,237,6.0\n153,238,6.5\n153,239,7.0\n153,240,7.5\n153,241,8.0\n153,242,8.5\n153,243,9.0\n153,244,9.5\n153,245,10.0\n153,246,10.5\n153,247,11.0\n153,248,11.5\n153,249,12.0\n153,250,3.5\n153,251,3.0\n153,252,2.5\n153,253,2.0\n153,254,2.5\n153,255,3.0\n153,256,3.5\n153,257,4.0\n153,258,4.5\n153,259,5.0\n153,260,5.5\n153,261,6.0\n153,262,6.5\n153,263,7.0\n153,264,7.5\n153,265,8.0\n153,266,8.5\n153,267,9.0\n153,268,9.5\n153,269,10.0\n153,270,10.5\n153,271,11.0\n153,272,11.5\n153,273,12.0\n153,274,12.5\n153,275,4.0\n153,276,3.5\n153,277,3.0\n153,278,2.5\n153,279,3.0\n153,280,3.5\n153,281,4.0\n153,282,4.5\n153,283,5.0\n153,284,5.5\n153,285,6.0\n153,286,6.5\n153,287,7.0\n153,288,7.5\n153,289,8.0\n153,290,8.5\n153,291,9.0\n153,292,9.5\n153,293,10.0\n153,294,10.5\n153,295,11.0\n153,296,11.5\n153,297,12.0\n153,298,12.5\n153,299,13.0\n153,300,4.5\n153,301,4.0\n153,302,3.5\n153,303,3.0\n153,304,3.5\n153,305,4.0\n153,306,4.5\n153,307,5.0\n153,308,5.5\n153,309,6.0\n153,310,6.5\n153,311,7.0\n153,312,7.5\n153,313,8.0\n153,314,8.5\n153,315,9.0\n153,316,9.5\n153,317,10.0\n153,318,10.5\n153,319,11.0\n153,320,11.5\n153,321,12.0\n153,322,12.5\n153,323,13.0\n153,324,13.5\n153,325,5.0\n153,326,4.5\n153,327,4.0\n153,328,3.5\n153,329,4.0\n153,330,4.5\n153,331,5.0\n153,332,5.5\n153,333,6.0\n153,334,6.5\n153,335,7.0\n153,336,7.5\n153,337,8.0\n153,338,8.5\n153,339,9.0\n153,340,9.5\n153,341,10.0\n153,342,10.5\n153,343,11.0\n153,344,11.5\n153,345,12.0\n153,346,12.5\n153,347,13.0\n153,348,13.5\n153,349,14.0\n153,350,5.5\n153,351,5.0\n153,352,4.5\n153,353,4.0\n153,354,4.5\n153,355,5.0\n153,356,5.5\n153,357,6.0\n153,358,6.5\n153,359,7.0\n153,360,7.5\n153,361,8.0\n153,362,8.5\n153,363,9.0\n153,364,9.5\n153,365,10.0\n153,366,10.5\n153,367,11.0\n153,368,11.5\n153,369,12.0\n153,370,12.5\n153,371,13.0\n153,372,13.5\n153,373,14.0\n153,374,14.5\n153,375,6.0\n153,376,5.5\n153,377,5.0\n153,378,4.5\n153,379,5.0\n153,380,5.5\n153,381,6.0\n153,382,6.5\n153,383,7.0\n153,384,7.5\n153,385,8.0\n153,386,8.5\n153,387,9.0\n153,388,9.5\n153,389,10.0\n153,390,10.5\n153,391,11.0\n153,392,11.5\n153,393,12.0\n153,394,12.5\n153,395,13.0\n153,396,13.5\n153,397,14.0\n153,398,14.5\n153,399,15.0\n153,400,6.5\n153,401,6.0\n153,402,5.5\n153,403,5.0\n153,404,5.5\n153,405,6.0\n153,406,6.5\n153,407,7.0\n153,408,7.5\n153,409,8.0\n153,410,8.5\n153,411,9.0\n153,412,9.5\n153,413,10.0\n153,414,10.5\n153,415,11.0\n153,416,11.5\n153,417,12.0\n153,418,12.5\n153,419,13.0\n153,420,13.5\n153,421,14.0\n153,422,14.5\n153,423,15.0\n153,424,15.5\n153,425,7.0\n153,426,6.5\n153,427,6.0\n153,428,5.5\n153,429,6.0\n153,430,6.5\n153,431,7.0\n153,432,7.5\n153,433,8.0\n153,434,8.5\n153,435,9.0\n153,436,9.5\n153,437,10.0\n153,438,10.5\n153,439,11.0\n153,440,11.5\n153,441,12.0\n153,442,12.5\n153,443,13.0\n153,444,13.5\n153,445,14.0\n153,446,14.5\n153,447,15.0\n153,448,15.5\n153,449,16.0\n153,450,7.5\n153,451,7.0\n153,452,6.5\n153,453,6.0\n153,454,6.5\n153,455,7.0\n153,456,7.5\n153,457,8.0\n153,458,8.5\n153,459,9.0\n153,460,9.5\n153,461,10.0\n153,462,10.5\n153,463,11.0\n153,464,11.5\n153,465,12.0\n153,466,12.5\n153,467,13.0\n153,468,13.5\n153,469,14.0\n153,470,14.5\n153,471,15.0\n153,472,15.5\n153,473,16.0\n153,474,16.5\n153,475,8.0\n153,476,7.5\n153,477,7.0\n153,478,6.5\n153,479,7.0\n153,480,7.5\n153,481,8.0\n153,482,8.5\n153,483,9.0\n153,484,9.5\n153,485,10.0\n153,486,10.5\n153,487,11.0\n153,488,11.5\n153,489,12.0\n153,490,12.5\n153,491,13.0\n153,492,13.5\n153,493,14.0\n153,494,14.5\n153,495,15.0\n153,496,15.5\n153,497,16.0\n153,498,16.5\n153,499,17.0\n153,500,8.5\n153,501,8.0\n153,502,7.5\n153,503,7.0\n153,504,7.5\n153,505,8.0\n153,506,8.5\n153,507,9.0\n153,508,9.5\n153,509,10.0\n153,510,10.5\n153,511,11.0\n153,512,11.5\n153,513,12.0\n153,514,12.5\n153,515,13.0\n153,516,13.5\n153,517,14.0\n153,518,14.5\n153,519,15.0\n153,520,15.5\n153,521,16.0\n153,522,16.5\n153,523,17.0\n153,524,17.5\n153,525,9.0\n153,526,8.5\n153,527,8.0\n153,528,7.5\n153,529,8.0\n153,530,8.5\n153,531,9.0\n153,532,9.5\n153,533,10.0\n153,534,10.5\n153,535,11.0\n153,536,11.5\n153,537,12.0\n153,538,12.5\n153,539,13.0\n153,540,13.5\n153,541,14.0\n153,542,14.5\n153,543,15.0\n153,544,15.5\n153,545,16.0\n153,546,16.5\n153,547,17.0\n153,548,17.5\n153,549,18.0\n153,550,9.5\n153,551,9.0\n153,552,8.5\n153,553,8.0\n153,554,8.5\n153,555,9.0\n153,556,9.5\n153,557,10.0\n153,558,10.5\n153,559,11.0\n153,560,11.5\n153,561,12.0\n153,562,12.5\n153,563,13.0\n153,564,13.5\n153,565,14.0\n153,566,14.5\n153,567,15.0\n153,568,15.5\n153,569,16.0\n153,570,16.5\n153,571,17.0\n153,572,17.5\n153,573,18.0\n153,574,18.5\n153,575,10.0\n153,576,9.5\n153,577,9.0\n153,578,8.5\n153,579,9.0\n153,580,9.5\n153,581,10.0\n153,582,10.5\n153,583,11.0\n153,584,11.5\n153,585,12.0\n153,586,12.5\n153,587,13.0\n153,588,13.5\n153,589,14.0\n153,590,14.5\n153,591,15.0\n153,592,15.5\n153,593,16.0\n153,594,16.5\n153,595,17.0\n153,596,17.5\n153,597,18.0\n153,598,18.5\n153,599,19.0\n153,600,10.5\n153,601,10.0\n153,602,9.5\n153,603,9.0\n153,604,9.5\n153,605,10.0\n153,606,10.5\n153,607,11.0\n153,608,11.5\n153,609,12.0\n153,610,12.5\n153,611,13.0\n153,612,13.5\n153,613,14.0\n153,614,14.5\n153,615,15.0\n153,616,15.5\n153,617,16.0\n153,618,16.5\n153,619,17.0\n153,620,17.5\n153,621,18.0\n153,622,18.5\n153,623,19.0\n153,624,19.5\n154,0,5.0\n154,1,4.5\n154,2,4.0\n154,3,3.5\n154,4,3.0\n154,5,3.5\n154,6,4.0\n154,7,4.5\n154,8,5.0\n154,9,5.5\n154,10,6.0\n154,11,6.5\n154,12,7.0\n154,13,7.5\n154,14,8.0\n154,15,8.5\n154,16,9.0\n154,17,9.5\n154,18,10.0\n154,19,10.5\n154,20,11.0\n154,21,11.5\n154,22,12.0\n154,23,12.5\n154,24,13.0\n154,25,4.5\n154,26,4.0\n154,27,3.5\n154,28,3.0\n154,29,2.5\n154,30,3.0\n154,31,3.5\n154,32,4.0\n154,33,4.5\n154,34,5.0\n154,35,5.5\n154,36,6.0\n154,37,6.5\n154,38,7.0\n154,39,7.5\n154,40,8.0\n154,41,8.5\n154,42,9.0\n154,43,9.5\n154,44,10.0\n154,45,10.5\n154,46,11.0\n154,47,11.5\n154,48,12.0\n154,49,12.5\n154,50,4.0\n154,51,3.5\n154,52,3.0\n154,53,2.5\n154,54,2.0\n154,55,2.5\n154,56,3.0\n154,57,3.5\n154,58,4.0\n154,59,4.5\n154,60,5.0\n154,61,5.5\n154,62,6.0\n154,63,6.5\n154,64,7.0\n154,65,7.5\n154,66,8.0\n154,67,8.5\n154,68,9.0\n154,69,9.5\n154,70,10.0\n154,71,10.5\n154,72,11.0\n154,73,11.5\n154,74,12.0\n154,75,3.5\n154,76,3.0\n154,77,2.5\n154,78,2.0\n154,79,1.5\n154,80,2.0\n154,81,2.5\n154,82,3.0\n154,83,3.5\n154,84,4.0\n154,85,4.5\n154,86,5.0\n154,87,5.5\n154,88,6.0\n154,89,6.5\n154,90,7.0\n154,91,7.5\n154,92,8.0\n154,93,8.5\n154,94,9.0\n154,95,9.5\n154,96,10.0\n154,97,10.5\n154,98,11.0\n154,99,11.5\n154,100,3.0\n154,101,2.5\n154,102,2.0\n154,103,1.5\n154,104,1.0\n154,105,1.5\n154,106,2.0\n154,107,2.5\n154,108,3.0\n154,109,3.5\n154,110,4.0\n154,111,4.5\n154,112,5.0\n154,113,5.5\n154,114,6.0\n154,115,6.5\n154,116,7.0\n154,117,7.5\n154,118,8.0\n154,119,8.5\n154,120,9.0\n154,121,9.5\n154,122,10.0\n154,123,10.5\n154,124,11.0\n154,125,2.5\n154,126,2.0\n154,127,1.5\n154,128,1.0\n154,129,0.5\n154,130,1.0\n154,131,1.5\n154,132,2.0\n154,133,2.5\n154,134,3.0\n154,135,3.5\n154,136,4.0\n154,137,4.5\n154,138,5.0\n154,139,5.5\n154,140,6.0\n154,141,6.5\n154,142,7.0\n154,143,7.5\n154,144,8.0\n154,145,8.5\n154,146,9.0\n154,147,9.5\n154,148,10.0\n154,149,10.5\n154,150,2.0\n154,151,1.5\n154,152,1.0\n154,153,0.5\n154,154,0\n154,155,0.5\n154,156,1.0\n154,157,1.5\n154,158,2.0\n154,159,2.5\n154,160,3.0\n154,161,3.5\n154,162,4.0\n154,163,4.5\n154,164,5.0\n154,165,5.5\n154,166,6.0\n154,167,6.5\n154,168,7.0\n154,169,7.5\n154,170,8.0\n154,171,8.5\n154,172,9.0\n154,173,9.5\n154,174,10.0\n154,175,2.5\n154,176,2.0\n154,177,1.5\n154,178,1.0\n154,179,0.5\n154,180,1.0\n154,181,1.5\n154,182,2.0\n154,183,2.5\n154,184,3.0\n154,185,3.5\n154,186,4.0\n154,187,4.5\n154,188,5.0\n154,189,5.5\n154,190,6.0\n154,191,6.5\n154,192,7.0\n154,193,7.5\n154,194,8.0\n154,195,8.5\n154,196,9.0\n154,197,9.5\n154,198,10.0\n154,199,10.5\n154,200,3.0\n154,201,2.5\n154,202,2.0\n154,203,1.5\n154,204,1.0\n154,205,1.5\n154,206,2.0\n154,207,2.5\n154,208,3.0\n154,209,3.5\n154,210,4.0\n154,211,4.5\n154,212,5.0\n154,213,5.5\n154,214,6.0\n154,215,6.5\n154,216,7.0\n154,217,7.5\n154,218,8.0\n154,219,8.5\n154,220,9.0\n154,221,9.5\n154,222,10.0\n154,223,10.5\n154,224,11.0\n154,225,3.5\n154,226,3.0\n154,227,2.5\n154,228,2.0\n154,229,1.5\n154,230,2.0\n154,231,2.5\n154,232,3.0\n154,233,3.5\n154,234,4.0\n154,235,4.5\n154,236,5.0\n154,237,5.5\n154,238,6.0\n154,239,6.5\n154,240,7.0\n154,241,7.5\n154,242,8.0\n154,243,8.5\n154,244,9.0\n154,245,9.5\n154,246,10.0\n154,247,10.5\n154,248,11.0\n154,249,11.5\n154,250,4.0\n154,251,3.5\n154,252,3.0\n154,253,2.5\n154,254,2.0\n154,255,2.5\n154,256,3.0\n154,257,3.5\n154,258,4.0\n154,259,4.5\n154,260,5.0\n154,261,5.5\n154,262,6.0\n154,263,6.5\n154,264,7.0\n154,265,7.5\n154,266,8.0\n154,267,8.5\n154,268,9.0\n154,269,9.5\n154,270,10.0\n154,271,10.5\n154,272,11.0\n154,273,11.5\n154,274,12.0\n154,275,4.5\n154,276,4.0\n154,277,3.5\n154,278,3.0\n154,279,2.5\n154,280,3.0\n154,281,3.5\n154,282,4.0\n154,283,4.5\n154,284,5.0\n154,285,5.5\n154,286,6.0\n154,287,6.5\n154,288,7.0\n154,289,7.5\n154,290,8.0\n154,291,8.5\n154,292,9.0\n154,293,9.5\n154,294,10.0\n154,295,10.5\n154,296,11.0\n154,297,11.5\n154,298,12.0\n154,299,12.5\n154,300,5.0\n154,301,4.5\n154,302,4.0\n154,303,3.5\n154,304,3.0\n154,305,3.5\n154,306,4.0\n154,307,4.5\n154,308,5.0\n154,309,5.5\n154,310,6.0\n154,311,6.5\n154,312,7.0\n154,313,7.5\n154,314,8.0\n154,315,8.5\n154,316,9.0\n154,317,9.5\n154,318,10.0\n154,319,10.5\n154,320,11.0\n154,321,11.5\n154,322,12.0\n154,323,12.5\n154,324,13.0\n154,325,5.5\n154,326,5.0\n154,327,4.5\n154,328,4.0\n154,329,3.5\n154,330,4.0\n154,331,4.5\n154,332,5.0\n154,333,5.5\n154,334,6.0\n154,335,6.5\n154,336,7.0\n154,337,7.5\n154,338,8.0\n154,339,8.5\n154,340,9.0\n154,341,9.5\n154,342,10.0\n154,343,10.5\n154,344,11.0\n154,345,11.5\n154,346,12.0\n154,347,12.5\n154,348,13.0\n154,349,13.5\n154,350,6.0\n154,351,5.5\n154,352,5.0\n154,353,4.5\n154,354,4.0\n154,355,4.5\n154,356,5.0\n154,357,5.5\n154,358,6.0\n154,359,6.5\n154,360,7.0\n154,361,7.5\n154,362,8.0\n154,363,8.5\n154,364,9.0\n154,365,9.5\n154,366,10.0\n154,367,10.5\n154,368,11.0\n154,369,11.5\n154,370,12.0\n154,371,12.5\n154,372,13.0\n154,373,13.5\n154,374,14.0\n154,375,6.5\n154,376,6.0\n154,377,5.5\n154,378,5.0\n154,379,4.5\n154,380,5.0\n154,381,5.5\n154,382,6.0\n154,383,6.5\n154,384,7.0\n154,385,7.5\n154,386,8.0\n154,387,8.5\n154,388,9.0\n154,389,9.5\n154,390,10.0\n154,391,10.5\n154,392,11.0\n154,393,11.5\n154,394,12.0\n154,395,12.5\n154,396,13.0\n154,397,13.5\n154,398,14.0\n154,399,14.5\n154,400,7.0\n154,401,6.5\n154,402,6.0\n154,403,5.5\n154,404,5.0\n154,405,5.5\n154,406,6.0\n154,407,6.5\n154,408,7.0\n154,409,7.5\n154,410,8.0\n154,411,8.5\n154,412,9.0\n154,413,9.5\n154,414,10.0\n154,415,10.5\n154,416,11.0\n154,417,11.5\n154,418,12.0\n154,419,12.5\n154,420,13.0\n154,421,13.5\n154,422,14.0\n154,423,14.5\n154,424,15.0\n154,425,7.5\n154,426,7.0\n154,427,6.5\n154,428,6.0\n154,429,5.5\n154,430,6.0\n154,431,6.5\n154,432,7.0\n154,433,7.5\n154,434,8.0\n154,435,8.5\n154,436,9.0\n154,437,9.5\n154,438,10.0\n154,439,10.5\n154,440,11.0\n154,441,11.5\n154,442,12.0\n154,443,12.5\n154,444,13.0\n154,445,13.5\n154,446,14.0\n154,447,14.5\n154,448,15.0\n154,449,15.5\n154,450,8.0\n154,451,7.5\n154,452,7.0\n154,453,6.5\n154,454,6.0\n154,455,6.5\n154,456,7.0\n154,457,7.5\n154,458,8.0\n154,459,8.5\n154,460,9.0\n154,461,9.5\n154,462,10.0\n154,463,10.5\n154,464,11.0\n154,465,11.5\n154,466,12.0\n154,467,12.5\n154,468,13.0\n154,469,13.5\n154,470,14.0\n154,471,14.5\n154,472,15.0\n154,473,15.5\n154,474,16.0\n154,475,8.5\n154,476,8.0\n154,477,7.5\n154,478,7.0\n154,479,6.5\n154,480,7.0\n154,481,7.5\n154,482,8.0\n154,483,8.5\n154,484,9.0\n154,485,9.5\n154,486,10.0\n154,487,10.5\n154,488,11.0\n154,489,11.5\n154,490,12.0\n154,491,12.5\n154,492,13.0\n154,493,13.5\n154,494,14.0\n154,495,14.5\n154,496,15.0\n154,497,15.5\n154,498,16.0\n154,499,16.5\n154,500,9.0\n154,501,8.5\n154,502,8.0\n154,503,7.5\n154,504,7.0\n154,505,7.5\n154,506,8.0\n154,507,8.5\n154,508,9.0\n154,509,9.5\n154,510,10.0\n154,511,10.5\n154,512,11.0\n154,513,11.5\n154,514,12.0\n154,515,12.5\n154,516,13.0\n154,517,13.5\n154,518,14.0\n154,519,14.5\n154,520,15.0\n154,521,15.5\n154,522,16.0\n154,523,16.5\n154,524,17.0\n154,525,9.5\n154,526,9.0\n154,527,8.5\n154,528,8.0\n154,529,7.5\n154,530,8.0\n154,531,8.5\n154,532,9.0\n154,533,9.5\n154,534,10.0\n154,535,10.5\n154,536,11.0\n154,537,11.5\n154,538,12.0\n154,539,12.5\n154,540,13.0\n154,541,13.5\n154,542,14.0\n154,543,14.5\n154,544,15.0\n154,545,15.5\n154,546,16.0\n154,547,16.5\n154,548,17.0\n154,549,17.5\n154,550,10.0\n154,551,9.5\n154,552,9.0\n154,553,8.5\n154,554,8.0\n154,555,8.5\n154,556,9.0\n154,557,9.5\n154,558,10.0\n154,559,10.5\n154,560,11.0\n154,561,11.5\n154,562,12.0\n154,563,12.5\n154,564,13.0\n154,565,13.5\n154,566,14.0\n154,567,14.5\n154,568,15.0\n154,569,15.5\n154,570,16.0\n154,571,16.5\n154,572,17.0\n154,573,17.5\n154,574,18.0\n154,575,10.5\n154,576,10.0\n154,577,9.5\n154,578,9.0\n154,579,8.5\n154,580,9.0\n154,581,9.5\n154,582,10.0\n154,583,10.5\n154,584,11.0\n154,585,11.5\n154,586,12.0\n154,587,12.5\n154,588,13.0\n154,589,13.5\n154,590,14.0\n154,591,14.5\n154,592,15.0\n154,593,15.5\n154,594,16.0\n154,595,16.5\n154,596,17.0\n154,597,17.5\n154,598,18.0\n154,599,18.5\n154,600,11.0\n154,601,10.5\n154,602,10.0\n154,603,9.5\n154,604,9.0\n154,605,9.5\n154,606,10.0\n154,607,10.5\n154,608,11.0\n154,609,11.5\n154,610,12.0\n154,611,12.5\n154,612,13.0\n154,613,13.5\n154,614,14.0\n154,615,14.5\n154,616,15.0\n154,617,15.5\n154,618,16.0\n154,619,16.5\n154,620,17.0\n154,621,17.5\n154,622,18.0\n154,623,18.5\n154,624,19.0\n155,0,5.5\n155,1,5.0\n155,2,4.5\n155,3,4.0\n155,4,3.5\n155,5,3.0\n155,6,3.5\n155,7,4.0\n155,8,4.5\n155,9,5.0\n155,10,5.5\n155,11,6.0\n155,12,6.5\n155,13,7.0\n155,14,7.5\n155,15,8.0\n155,16,8.5\n155,17,9.0\n155,18,9.5\n155,19,10.0\n155,20,10.5\n155,21,11.0\n155,22,11.5\n155,23,12.0\n155,24,12.5\n155,25,5.0\n155,26,4.5\n155,27,4.0\n155,28,3.5\n155,29,3.0\n155,30,2.5\n155,31,3.0\n155,32,3.5\n155,33,4.0\n155,34,4.5\n155,35,5.0\n155,36,5.5\n155,37,6.0\n155,38,6.5\n155,39,7.0\n155,40,7.5\n155,41,8.0\n155,42,8.5\n155,43,9.0\n155,44,9.5\n155,45,10.0\n155,46,10.5\n155,47,11.0\n155,48,11.5\n155,49,12.0\n155,50,4.5\n155,51,4.0\n155,52,3.5\n155,53,3.0\n155,54,2.5\n155,55,2.0\n155,56,2.5\n155,57,3.0\n155,58,3.5\n155,59,4.0\n155,60,4.5\n155,61,5.0\n155,62,5.5\n155,63,6.0\n155,64,6.5\n155,65,7.0\n155,66,7.5\n155,67,8.0\n155,68,8.5\n155,69,9.0\n155,70,9.5\n155,71,10.0\n155,72,10.5\n155,73,11.0\n155,74,11.5\n155,75,4.0\n155,76,3.5\n155,77,3.0\n155,78,2.5\n155,79,2.0\n155,80,1.5\n155,81,2.0\n155,82,2.5\n155,83,3.0\n155,84,3.5\n155,85,4.0\n155,86,4.5\n155,87,5.0\n155,88,5.5\n155,89,6.0\n155,90,6.5\n155,91,7.0\n155,92,7.5\n155,93,8.0\n155,94,8.5\n155,95,9.0\n155,96,9.5\n155,97,10.0\n155,98,10.5\n155,99,11.0\n155,100,3.5\n155,101,3.0\n155,102,2.5\n155,103,2.0\n155,104,1.5\n155,105,1.0\n155,106,1.5\n155,107,2.0\n155,108,2.5\n155,109,3.0\n155,110,3.5\n155,111,4.0\n155,112,4.5\n155,113,5.0\n155,114,5.5\n155,115,6.0\n155,116,6.5\n155,117,7.0\n155,118,7.5\n155,119,8.0\n155,120,8.5\n155,121,9.0\n155,122,9.5\n155,123,10.0\n155,124,10.5\n155,125,3.0\n155,126,2.5\n155,127,2.0\n155,128,1.5\n155,129,1.0\n155,130,0.5\n155,131,1.0\n155,132,1.5\n155,133,2.0\n155,134,2.5\n155,135,3.0\n155,136,3.5\n155,137,4.0\n155,138,4.5\n155,139,5.0\n155,140,5.5\n155,141,6.0\n155,142,6.5\n155,143,7.0\n155,144,7.5\n155,145,8.0\n155,146,8.5\n155,147,9.0\n155,148,9.5\n155,149,10.0\n155,150,2.5\n155,151,2.0\n155,152,1.5\n155,153,1.0\n155,154,0.5\n155,155,0\n155,156,0.5\n155,157,1.0\n155,158,1.5\n155,159,2.0\n155,160,2.5\n155,161,3.0\n155,162,3.5\n155,163,4.0\n155,164,4.5\n155,165,5.0\n155,166,5.5\n155,167,6.0\n155,168,6.5\n155,169,7.0\n155,170,7.5\n155,171,8.0\n155,172,8.5\n155,173,9.0\n155,174,9.5\n155,175,3.0\n155,176,2.5\n155,177,2.0\n155,178,1.5\n155,179,1.0\n155,180,0.5\n155,181,1.0\n155,182,1.5\n155,183,2.0\n155,184,2.5\n155,185,3.0\n155,186,3.5\n155,187,4.0\n155,188,4.5\n155,189,5.0\n155,190,5.5\n155,191,6.0\n155,192,6.5\n155,193,7.0\n155,194,7.5\n155,195,8.0\n155,196,8.5\n155,197,9.0\n155,198,9.5\n155,199,10.0\n155,200,3.5\n155,201,3.0\n155,202,2.5\n155,203,2.0\n155,204,1.5\n155,205,1.0\n155,206,1.5\n155,207,2.0\n155,208,2.5\n155,209,3.0\n155,210,3.5\n155,211,4.0\n155,212,4.5\n155,213,5.0\n155,214,5.5\n155,215,6.0\n155,216,6.5\n155,217,7.0\n155,218,7.5\n155,219,8.0\n155,220,8.5\n155,221,9.0\n155,222,9.5\n155,223,10.0\n155,224,10.5\n155,225,4.0\n155,226,3.5\n155,227,3.0\n155,228,2.5\n155,229,2.0\n155,230,1.5\n155,231,2.0\n155,232,2.5\n155,233,3.0\n155,234,3.5\n155,235,4.0\n155,236,4.5\n155,237,5.0\n155,238,5.5\n155,239,6.0\n155,240,6.5\n155,241,7.0\n155,242,7.5\n155,243,8.0\n155,244,8.5\n155,245,9.0\n155,246,9.5\n155,247,10.0\n155,248,10.5\n155,249,11.0\n155,250,4.5\n155,251,4.0\n155,252,3.5\n155,253,3.0\n155,254,2.5\n155,255,2.0\n155,256,2.5\n155,257,3.0\n155,258,3.5\n155,259,4.0\n155,260,4.5\n155,261,5.0\n155,262,5.5\n155,263,6.0\n155,264,6.5\n155,265,7.0\n155,266,7.5\n155,267,8.0\n155,268,8.5\n155,269,9.0\n155,270,9.5\n155,271,10.0\n155,272,10.5\n155,273,11.0\n155,274,11.5\n155,275,5.0\n155,276,4.5\n155,277,4.0\n155,278,3.5\n155,279,3.0\n155,280,2.5\n155,281,3.0\n155,282,3.5\n155,283,4.0\n155,284,4.5\n155,285,5.0\n155,286,5.5\n155,287,6.0\n155,288,6.5\n155,289,7.0\n155,290,7.5\n155,291,8.0\n155,292,8.5\n155,293,9.0\n155,294,9.5\n155,295,10.0\n155,296,10.5\n155,297,11.0\n155,298,11.5\n155,299,12.0\n155,300,5.5\n155,301,5.0\n155,302,4.5\n155,303,4.0\n155,304,3.5\n155,305,3.0\n155,306,3.5\n155,307,4.0\n155,308,4.5\n155,309,5.0\n155,310,5.5\n155,311,6.0\n155,312,6.5\n155,313,7.0\n155,314,7.5\n155,315,8.0\n155,316,8.5\n155,317,9.0\n155,318,9.5\n155,319,10.0\n155,320,10.5\n155,321,11.0\n155,322,11.5\n155,323,12.0\n155,324,12.5\n155,325,6.0\n155,326,5.5\n155,327,5.0\n155,328,4.5\n155,329,4.0\n155,330,3.5\n155,331,4.0\n155,332,4.5\n155,333,5.0\n155,334,5.5\n155,335,6.0\n155,336,6.5\n155,337,7.0\n155,338,7.5\n155,339,8.0\n155,340,8.5\n155,341,9.0\n155,342,9.5\n155,343,10.0\n155,344,10.5\n155,345,11.0\n155,346,11.5\n155,347,12.0\n155,348,12.5\n155,349,13.0\n155,350,6.5\n155,351,6.0\n155,352,5.5\n155,353,5.0\n155,354,4.5\n155,355,4.0\n155,356,4.5\n155,357,5.0\n155,358,5.5\n155,359,6.0\n155,360,6.5\n155,361,7.0\n155,362,7.5\n155,363,8.0\n155,364,8.5\n155,365,9.0\n155,366,9.5\n155,367,10.0\n155,368,10.5\n155,369,11.0\n155,370,11.5\n155,371,12.0\n155,372,12.5\n155,373,13.0\n155,374,13.5\n155,375,7.0\n155,376,6.5\n155,377,6.0\n155,378,5.5\n155,379,5.0\n155,380,4.5\n155,381,5.0\n155,382,5.5\n155,383,6.0\n155,384,6.5\n155,385,7.0\n155,386,7.5\n155,387,8.0\n155,388,8.5\n155,389,9.0\n155,390,9.5\n155,391,10.0\n155,392,10.5\n155,393,11.0\n155,394,11.5\n155,395,12.0\n155,396,12.5\n155,397,13.0\n155,398,13.5\n155,399,14.0\n155,400,7.5\n155,401,7.0\n155,402,6.5\n155,403,6.0\n155,404,5.5\n155,405,5.0\n155,406,5.5\n155,407,6.0\n155,408,6.5\n155,409,7.0\n155,410,7.5\n155,411,8.0\n155,412,8.5\n155,413,9.0\n155,414,9.5\n155,415,10.0\n155,416,10.5\n155,417,11.0\n155,418,11.5\n155,419,12.0\n155,420,12.5\n155,421,13.0\n155,422,13.5\n155,423,14.0\n155,424,14.5\n155,425,8.0\n155,426,7.5\n155,427,7.0\n155,428,6.5\n155,429,6.0\n155,430,5.5\n155,431,6.0\n155,432,6.5\n155,433,7.0\n155,434,7.5\n155,435,8.0\n155,436,8.5\n155,437,9.0\n155,438,9.5\n155,439,10.0\n155,440,10.5\n155,441,11.0\n155,442,11.5\n155,443,12.0\n155,444,12.5\n155,445,13.0\n155,446,13.5\n155,447,14.0\n155,448,14.5\n155,449,15.0\n155,450,8.5\n155,451,8.0\n155,452,7.5\n155,453,7.0\n155,454,6.5\n155,455,6.0\n155,456,6.5\n155,457,7.0\n155,458,7.5\n155,459,8.0\n155,460,8.5\n155,461,9.0\n155,462,9.5\n155,463,10.0\n155,464,10.5\n155,465,11.0\n155,466,11.5\n155,467,12.0\n155,468,12.5\n155,469,13.0\n155,470,13.5\n155,471,14.0\n155,472,14.5\n155,473,15.0\n155,474,15.5\n155,475,9.0\n155,476,8.5\n155,477,8.0\n155,478,7.5\n155,479,7.0\n155,480,6.5\n155,481,7.0\n155,482,7.5\n155,483,8.0\n155,484,8.5\n155,485,9.0\n155,486,9.5\n155,487,10.0\n155,488,10.5\n155,489,11.0\n155,490,11.5\n155,491,12.0\n155,492,12.5\n155,493,13.0\n155,494,13.5\n155,495,14.0\n155,496,14.5\n155,497,15.0\n155,498,15.5\n155,499,16.0\n155,500,9.5\n155,501,9.0\n155,502,8.5\n155,503,8.0\n155,504,7.5\n155,505,7.0\n155,506,7.5\n155,507,8.0\n155,508,8.5\n155,509,9.0\n155,510,9.5\n155,511,10.0\n155,512,10.5\n155,513,11.0\n155,514,11.5\n155,515,12.0\n155,516,12.5\n155,517,13.0\n155,518,13.5\n155,519,14.0\n155,520,14.5\n155,521,15.0\n155,522,15.5\n155,523,16.0\n155,524,16.5\n155,525,10.0\n155,526,9.5\n155,527,9.0\n155,528,8.5\n155,529,8.0\n155,530,7.5\n155,531,8.0\n155,532,8.5\n155,533,9.0\n155,534,9.5\n155,535,10.0\n155,536,10.5\n155,537,11.0\n155,538,11.5\n155,539,12.0\n155,540,12.5\n155,541,13.0\n155,542,13.5\n155,543,14.0\n155,544,14.5\n155,545,15.0\n155,546,15.5\n155,547,16.0\n155,548,16.5\n155,549,17.0\n155,550,10.5\n155,551,10.0\n155,552,9.5\n155,553,9.0\n155,554,8.5\n155,555,8.0\n155,556,8.5\n155,557,9.0\n155,558,9.5\n155,559,10.0\n155,560,10.5\n155,561,11.0\n155,562,11.5\n155,563,12.0\n155,564,12.5\n155,565,13.0\n155,566,13.5\n155,567,14.0\n155,568,14.5\n155,569,15.0\n155,570,15.5\n155,571,16.0\n155,572,16.5\n155,573,17.0\n155,574,17.5\n155,575,11.0\n155,576,10.5\n155,577,10.0\n155,578,9.5\n155,579,9.0\n155,580,8.5\n155,581,9.0\n155,582,9.5\n155,583,10.0\n155,584,10.5\n155,585,11.0\n155,586,11.5\n155,587,12.0\n155,588,12.5\n155,589,13.0\n155,590,13.5\n155,591,14.0\n155,592,14.5\n155,593,15.0\n155,594,15.5\n155,595,16.0\n155,596,16.5\n155,597,17.0\n155,598,17.5\n155,599,18.0\n155,600,11.5\n155,601,11.0\n155,602,10.5\n155,603,10.0\n155,604,9.5\n155,605,9.0\n155,606,9.5\n155,607,10.0\n155,608,10.5\n155,609,11.0\n155,610,11.5\n155,611,12.0\n155,612,12.5\n155,613,13.0\n155,614,13.5\n155,615,14.0\n155,616,14.5\n155,617,15.0\n155,618,15.5\n155,619,16.0\n155,620,16.5\n155,621,17.0\n155,622,17.5\n155,623,18.0\n155,624,18.5\n156,0,6.0\n156,1,5.5\n156,2,5.0\n156,3,4.5\n156,4,4.0\n156,5,3.5\n156,6,3.0\n156,7,3.5\n156,8,4.0\n156,9,4.5\n156,10,5.0\n156,11,5.5\n156,12,6.0\n156,13,6.5\n156,14,7.0\n156,15,7.5\n156,16,8.0\n156,17,8.5\n156,18,9.0\n156,19,9.5\n156,20,10.0\n156,21,10.5\n156,22,11.0\n156,23,11.5\n156,24,12.0\n156,25,5.5\n156,26,5.0\n156,27,4.5\n156,28,4.0\n156,29,3.5\n156,30,3.0\n156,31,2.5\n156,32,3.0\n156,33,3.5\n156,34,4.0\n156,35,4.5\n156,36,5.0\n156,37,5.5\n156,38,6.0\n156,39,6.5\n156,40,7.0\n156,41,7.5\n156,42,8.0\n156,43,8.5\n156,44,9.0\n156,45,9.5\n156,46,10.0\n156,47,10.5\n156,48,11.0\n156,49,11.5\n156,50,5.0\n156,51,4.5\n156,52,4.0\n156,53,3.5\n156,54,3.0\n156,55,2.5\n156,56,2.0\n156,57,2.5\n156,58,3.0\n156,59,3.5\n156,60,4.0\n156,61,4.5\n156,62,5.0\n156,63,5.5\n156,64,6.0\n156,65,6.5\n156,66,7.0\n156,67,7.5\n156,68,8.0\n156,69,8.5\n156,70,9.0\n156,71,9.5\n156,72,10.0\n156,73,10.5\n156,74,11.0\n156,75,4.5\n156,76,4.0\n156,77,3.5\n156,78,3.0\n156,79,2.5\n156,80,2.0\n156,81,1.5\n156,82,2.0\n156,83,2.5\n156,84,3.0\n156,85,3.5\n156,86,4.0\n156,87,4.5\n156,88,5.0\n156,89,5.5\n156,90,6.0\n156,91,6.5\n156,92,7.0\n156,93,7.5\n156,94,8.0\n156,95,8.5\n156,96,9.0\n156,97,9.5\n156,98,10.0\n156,99,10.5\n156,100,4.0\n156,101,3.5\n156,102,3.0\n156,103,2.5\n156,104,2.0\n156,105,1.5\n156,106,1.0\n156,107,1.5\n156,108,2.0\n156,109,2.5\n156,110,3.0\n156,111,3.5\n156,112,4.0\n156,113,4.5\n156,114,5.0\n156,115,5.5\n156,116,6.0\n156,117,6.5\n156,118,7.0\n156,119,7.5\n156,120,8.0\n156,121,8.5\n156,122,9.0\n156,123,9.5\n156,124,10.0\n156,125,3.5\n156,126,3.0\n156,127,2.5\n156,128,2.0\n156,129,1.5\n156,130,1.0\n156,131,0.5\n156,132,1.0\n156,133,1.5\n156,134,2.0\n156,135,2.5\n156,136,3.0\n156,137,3.5\n156,138,4.0\n156,139,4.5\n156,140,5.0\n156,141,5.5\n156,142,6.0\n156,143,6.5\n156,144,7.0\n156,145,7.5\n156,146,8.0\n156,147,8.5\n156,148,9.0\n156,149,9.5\n156,150,3.0\n156,151,2.5\n156,152,2.0\n156,153,1.5\n156,154,1.0\n156,155,0.5\n156,156,0\n156,157,0.5\n156,158,1.0\n156,159,1.5\n156,160,2.0\n156,161,2.5\n156,162,3.0\n156,163,3.5\n156,164,4.0\n156,165,4.5\n156,166,5.0\n156,167,5.5\n156,168,6.0\n156,169,6.5\n156,170,7.0\n156,171,7.5\n156,172,8.0\n156,173,8.5\n156,174,9.0\n156,175,3.5\n156,176,3.0\n156,177,2.5\n156,178,2.0\n156,179,1.5\n156,180,1.0\n156,181,0.5\n156,182,1.0\n156,183,1.5\n156,184,2.0\n156,185,2.5\n156,186,3.0\n156,187,3.5\n156,188,4.0\n156,189,4.5\n156,190,5.0\n156,191,5.5\n156,192,6.0\n156,193,6.5\n156,194,7.0\n156,195,7.5\n156,196,8.0\n156,197,8.5\n156,198,9.0\n156,199,9.5\n156,200,4.0\n156,201,3.5\n156,202,3.0\n156,203,2.5\n156,204,2.0\n156,205,1.5\n156,206,1.0\n156,207,1.5\n156,208,2.0\n156,209,2.5\n156,210,3.0\n156,211,3.5\n156,212,4.0\n156,213,4.5\n156,214,5.0\n156,215,5.5\n156,216,6.0\n156,217,6.5\n156,218,7.0\n156,219,7.5\n156,220,8.0\n156,221,8.5\n156,222,9.0\n156,223,9.5\n156,224,10.0\n156,225,4.5\n156,226,4.0\n156,227,3.5\n156,228,3.0\n156,229,2.5\n156,230,2.0\n156,231,1.5\n156,232,2.0\n156,233,2.5\n156,234,3.0\n156,235,3.5\n156,236,4.0\n156,237,4.5\n156,238,5.0\n156,239,5.5\n156,240,6.0\n156,241,6.5\n156,242,7.0\n156,243,7.5\n156,244,8.0\n156,245,8.5\n156,246,9.0\n156,247,9.5\n156,248,10.0\n156,249,10.5\n156,250,5.0\n156,251,4.5\n156,252,4.0\n156,253,3.5\n156,254,3.0\n156,255,2.5\n156,256,2.0\n156,257,2.5\n156,258,3.0\n156,259,3.5\n156,260,4.0\n156,261,4.5\n156,262,5.0\n156,263,5.5\n156,264,6.0\n156,265,6.5\n156,266,7.0\n156,267,7.5\n156,268,8.0\n156,269,8.5\n156,270,9.0\n156,271,9.5\n156,272,10.0\n156,273,10.5\n156,274,11.0\n156,275,5.5\n156,276,5.0\n156,277,4.5\n156,278,4.0\n156,279,3.5\n156,280,3.0\n156,281,2.5\n156,282,3.0\n156,283,3.5\n156,284,4.0\n156,285,4.5\n156,286,5.0\n156,287,5.5\n156,288,6.0\n156,289,6.5\n156,290,7.0\n156,291,7.5\n156,292,8.0\n156,293,8.5\n156,294,9.0\n156,295,9.5\n156,296,10.0\n156,297,10.5\n156,298,11.0\n156,299,11.5\n156,300,6.0\n156,301,5.5\n156,302,5.0\n156,303,4.5\n156,304,4.0\n156,305,3.5\n156,306,3.0\n156,307,3.5\n156,308,4.0\n156,309,4.5\n156,310,5.0\n156,311,5.5\n156,312,6.0\n156,313,6.5\n156,314,7.0\n156,315,7.5\n156,316,8.0\n156,317,8.5\n156,318,9.0\n156,319,9.5\n156,320,10.0\n156,321,10.5\n156,322,11.0\n156,323,11.5\n156,324,12.0\n156,325,6.5\n156,326,6.0\n156,327,5.5\n156,328,5.0\n156,329,4.5\n156,330,4.0\n156,331,3.5\n156,332,4.0\n156,333,4.5\n156,334,5.0\n156,335,5.5\n156,336,6.0\n156,337,6.5\n156,338,7.0\n156,339,7.5\n156,340,8.0\n156,341,8.5\n156,342,9.0\n156,343,9.5\n156,344,10.0\n156,345,10.5\n156,346,11.0\n156,347,11.5\n156,348,12.0\n156,349,12.5\n156,350,7.0\n156,351,6.5\n156,352,6.0\n156,353,5.5\n156,354,5.0\n156,355,4.5\n156,356,4.0\n156,357,4.5\n156,358,5.0\n156,359,5.5\n156,360,6.0\n156,361,6.5\n156,362,7.0\n156,363,7.5\n156,364,8.0\n156,365,8.5\n156,366,9.0\n156,367,9.5\n156,368,10.0\n156,369,10.5\n156,370,11.0\n156,371,11.5\n156,372,12.0\n156,373,12.5\n156,374,13.0\n156,375,7.5\n156,376,7.0\n156,377,6.5\n156,378,6.0\n156,379,5.5\n156,380,5.0\n156,381,4.5\n156,382,5.0\n156,383,5.5\n156,384,6.0\n156,385,6.5\n156,386,7.0\n156,387,7.5\n156,388,8.0\n156,389,8.5\n156,390,9.0\n156,391,9.5\n156,392,10.0\n156,393,10.5\n156,394,11.0\n156,395,11.5\n156,396,12.0\n156,397,12.5\n156,398,13.0\n156,399,13.5\n156,400,8.0\n156,401,7.5\n156,402,7.0\n156,403,6.5\n156,404,6.0\n156,405,5.5\n156,406,5.0\n156,407,5.5\n156,408,6.0\n156,409,6.5\n156,410,7.0\n156,411,7.5\n156,412,8.0\n156,413,8.5\n156,414,9.0\n156,415,9.5\n156,416,10.0\n156,417,10.5\n156,418,11.0\n156,419,11.5\n156,420,12.0\n156,421,12.5\n156,422,13.0\n156,423,13.5\n156,424,14.0\n156,425,8.5\n156,426,8.0\n156,427,7.5\n156,428,7.0\n156,429,6.5\n156,430,6.0\n156,431,5.5\n156,432,6.0\n156,433,6.5\n156,434,7.0\n156,435,7.5\n156,436,8.0\n156,437,8.5\n156,438,9.0\n156,439,9.5\n156,440,10.0\n156,441,10.5\n156,442,11.0\n156,443,11.5\n156,444,12.0\n156,445,12.5\n156,446,13.0\n156,447,13.5\n156,448,14.0\n156,449,14.5\n156,450,9.0\n156,451,8.5\n156,452,8.0\n156,453,7.5\n156,454,7.0\n156,455,6.5\n156,456,6.0\n156,457,6.5\n156,458,7.0\n156,459,7.5\n156,460,8.0\n156,461,8.5\n156,462,9.0\n156,463,9.5\n156,464,10.0\n156,465,10.5\n156,466,11.0\n156,467,11.5\n156,468,12.0\n156,469,12.5\n156,470,13.0\n156,471,13.5\n156,472,14.0\n156,473,14.5\n156,474,15.0\n156,475,9.5\n156,476,9.0\n156,477,8.5\n156,478,8.0\n156,479,7.5\n156,480,7.0\n156,481,6.5\n156,482,7.0\n156,483,7.5\n156,484,8.0\n156,485,8.5\n156,486,9.0\n156,487,9.5\n156,488,10.0\n156,489,10.5\n156,490,11.0\n156,491,11.5\n156,492,12.0\n156,493,12.5\n156,494,13.0\n156,495,13.5\n156,496,14.0\n156,497,14.5\n156,498,15.0\n156,499,15.5\n156,500,10.0\n156,501,9.5\n156,502,9.0\n156,503,8.5\n156,504,8.0\n156,505,7.5\n156,506,7.0\n156,507,7.5\n156,508,8.0\n156,509,8.5\n156,510,9.0\n156,511,9.5\n156,512,10.0\n156,513,10.5\n156,514,11.0\n156,515,11.5\n156,516,12.0\n156,517,12.5\n156,518,13.0\n156,519,13.5\n156,520,14.0\n156,521,14.5\n156,522,15.0\n156,523,15.5\n156,524,16.0\n156,525,10.5\n156,526,10.0\n156,527,9.5\n156,528,9.0\n156,529,8.5\n156,530,8.0\n156,531,7.5\n156,532,8.0\n156,533,8.5\n156,534,9.0\n156,535,9.5\n156,536,10.0\n156,537,10.5\n156,538,11.0\n156,539,11.5\n156,540,12.0\n156,541,12.5\n156,542,13.0\n156,543,13.5\n156,544,14.0\n156,545,14.5\n156,546,15.0\n156,547,15.5\n156,548,16.0\n156,549,16.5\n156,550,11.0\n156,551,10.5\n156,552,10.0\n156,553,9.5\n156,554,9.0\n156,555,8.5\n156,556,8.0\n156,557,8.5\n156,558,9.0\n156,559,9.5\n156,560,10.0\n156,561,10.5\n156,562,11.0\n156,563,11.5\n156,564,12.0\n156,565,12.5\n156,566,13.0\n156,567,13.5\n156,568,14.0\n156,569,14.5\n156,570,15.0\n156,571,15.5\n156,572,16.0\n156,573,16.5\n156,574,17.0\n156,575,11.5\n156,576,11.0\n156,577,10.5\n156,578,10.0\n156,579,9.5\n156,580,9.0\n156,581,8.5\n156,582,9.0\n156,583,9.5\n156,584,10.0\n156,585,10.5\n156,586,11.0\n156,587,11.5\n156,588,12.0\n156,589,12.5\n156,590,13.0\n156,591,13.5\n156,592,14.0\n156,593,14.5\n156,594,15.0\n156,595,15.5\n156,596,16.0\n156,597,16.5\n156,598,17.0\n156,599,17.5\n156,600,12.0\n156,601,11.5\n156,602,11.0\n156,603,10.5\n156,604,10.0\n156,605,9.5\n156,606,9.0\n156,607,9.5\n156,608,10.0\n156,609,10.5\n156,610,11.0\n156,611,11.5\n156,612,12.0\n156,613,12.5\n156,614,13.0\n156,615,13.5\n156,616,14.0\n156,617,14.5\n156,618,15.0\n156,619,15.5\n156,620,16.0\n156,621,16.5\n156,622,17.0\n156,623,17.5\n156,624,18.0\n157,0,6.5\n157,1,6.0\n157,2,5.5\n157,3,5.0\n157,4,4.5\n157,5,4.0\n157,6,3.5\n157,7,3.0\n157,8,3.5\n157,9,4.0\n157,10,4.5\n157,11,5.0\n157,12,5.5\n157,13,6.0\n157,14,6.5\n157,15,7.0\n157,16,7.5\n157,17,8.0\n157,18,8.5\n157,19,9.0\n157,20,9.5\n157,21,10.0\n157,22,10.5\n157,23,11.0\n157,24,11.5\n157,25,6.0\n157,26,5.5\n157,27,5.0\n157,28,4.5\n157,29,4.0\n157,30,3.5\n157,31,3.0\n157,32,2.5\n157,33,3.0\n157,34,3.5\n157,35,4.0\n157,36,4.5\n157,37,5.0\n157,38,5.5\n157,39,6.0\n157,40,6.5\n157,41,7.0\n157,42,7.5\n157,43,8.0\n157,44,8.5\n157,45,9.0\n157,46,9.5\n157,47,10.0\n157,48,10.5\n157,49,11.0\n157,50,5.5\n157,51,5.0\n157,52,4.5\n157,53,4.0\n157,54,3.5\n157,55,3.0\n157,56,2.5\n157,57,2.0\n157,58,2.5\n157,59,3.0\n157,60,3.5\n157,61,4.0\n157,62,4.5\n157,63,5.0\n157,64,5.5\n157,65,6.0\n157,66,6.5\n157,67,7.0\n157,68,7.5\n157,69,8.0\n157,70,8.5\n157,71,9.0\n157,72,9.5\n157,73,10.0\n157,74,10.5\n157,75,5.0\n157,76,4.5\n157,77,4.0\n157,78,3.5\n157,79,3.0\n157,80,2.5\n157,81,2.0\n157,82,1.5\n157,83,2.0\n157,84,2.5\n157,85,3.0\n157,86,3.5\n157,87,4.0\n157,88,4.5\n157,89,5.0\n157,90,5.5\n157,91,6.0\n157,92,6.5\n157,93,7.0\n157,94,7.5\n157,95,8.0\n157,96,8.5\n157,97,9.0\n157,98,9.5\n157,99,10.0\n157,100,4.5\n157,101,4.0\n157,102,3.5\n157,103,3.0\n157,104,2.5\n157,105,2.0\n157,106,1.5\n157,107,1.0\n157,108,1.5\n157,109,2.0\n157,110,2.5\n157,111,3.0\n157,112,3.5\n157,113,4.0\n157,114,4.5\n157,115,5.0\n157,116,5.5\n157,117,6.0\n157,118,6.5\n157,119,7.0\n157,120,7.5\n157,121,8.0\n157,122,8.5\n157,123,9.0\n157,124,9.5\n157,125,4.0\n157,126,3.5\n157,127,3.0\n157,128,2.5\n157,129,2.0\n157,130,1.5\n157,131,1.0\n157,132,0.5\n157,133,1.0\n157,134,1.5\n157,135,2.0\n157,136,2.5\n157,137,3.0\n157,138,3.5\n157,139,4.0\n157,140,4.5\n157,141,5.0\n157,142,5.5\n157,143,6.0\n157,144,6.5\n157,145,7.0\n157,146,7.5\n157,147,8.0\n157,148,8.5\n157,149,9.0\n157,150,3.5\n157,151,3.0\n157,152,2.5\n157,153,2.0\n157,154,1.5\n157,155,1.0\n157,156,0.5\n157,157,0\n157,158,0.5\n157,159,1.0\n157,160,1.5\n157,161,2.0\n157,162,2.5\n157,163,3.0\n157,164,3.5\n157,165,4.0\n157,166,4.5\n157,167,5.0\n157,168,5.5\n157,169,6.0\n157,170,6.5\n157,171,7.0\n157,172,7.5\n157,173,8.0\n157,174,8.5\n157,175,4.0\n157,176,3.5\n157,177,3.0\n157,178,2.5\n157,179,2.0\n157,180,1.5\n157,181,1.0\n157,182,0.5\n157,183,1.0\n157,184,1.5\n157,185,2.0\n157,186,2.5\n157,187,3.0\n157,188,3.5\n157,189,4.0\n157,190,4.5\n157,191,5.0\n157,192,5.5\n157,193,6.0\n157,194,6.5\n157,195,7.0\n157,196,7.5\n157,197,8.0\n157,198,8.5\n157,199,9.0\n157,200,4.5\n157,201,4.0\n157,202,3.5\n157,203,3.0\n157,204,2.5\n157,205,2.0\n157,206,1.5\n157,207,1.0\n157,208,1.5\n157,209,2.0\n157,210,2.5\n157,211,3.0\n157,212,3.5\n157,213,4.0\n157,214,4.5\n157,215,5.0\n157,216,5.5\n157,217,6.0\n157,218,6.5\n157,219,7.0\n157,220,7.5\n157,221,8.0\n157,222,8.5\n157,223,9.0\n157,224,9.5\n157,225,5.0\n157,226,4.5\n157,227,4.0\n157,228,3.5\n157,229,3.0\n157,230,2.5\n157,231,2.0\n157,232,1.5\n157,233,2.0\n157,234,2.5\n157,235,3.0\n157,236,3.5\n157,237,4.0\n157,238,4.5\n157,239,5.0\n157,240,5.5\n157,241,6.0\n157,242,6.5\n157,243,7.0\n157,244,7.5\n157,245,8.0\n157,246,8.5\n157,247,9.0\n157,248,9.5\n157,249,10.0\n157,250,5.5\n157,251,5.0\n157,252,4.5\n157,253,4.0\n157,254,3.5\n157,255,3.0\n157,256,2.5\n157,257,2.0\n157,258,2.5\n157,259,3.0\n157,260,3.5\n157,261,4.0\n157,262,4.5\n157,263,5.0\n157,264,5.5\n157,265,6.0\n157,266,6.5\n157,267,7.0\n157,268,7.5\n157,269,8.0\n157,270,8.5\n157,271,9.0\n157,272,9.5\n157,273,10.0\n157,274,10.5\n157,275,6.0\n157,276,5.5\n157,277,5.0\n157,278,4.5\n157,279,4.0\n157,280,3.5\n157,281,3.0\n157,282,2.5\n157,283,3.0\n157,284,3.5\n157,285,4.0\n157,286,4.5\n157,287,5.0\n157,288,5.5\n157,289,6.0\n157,290,6.5\n157,291,7.0\n157,292,7.5\n157,293,8.0\n157,294,8.5\n157,295,9.0\n157,296,9.5\n157,297,10.0\n157,298,10.5\n157,299,11.0\n157,300,6.5\n157,301,6.0\n157,302,5.5\n157,303,5.0\n157,304,4.5\n157,305,4.0\n157,306,3.5\n157,307,3.0\n157,308,3.5\n157,309,4.0\n157,310,4.5\n157,311,5.0\n157,312,5.5\n157,313,6.0\n157,314,6.5\n157,315,7.0\n157,316,7.5\n157,317,8.0\n157,318,8.5\n157,319,9.0\n157,320,9.5\n157,321,10.0\n157,322,10.5\n157,323,11.0\n157,324,11.5\n157,325,7.0\n157,326,6.5\n157,327,6.0\n157,328,5.5\n157,329,5.0\n157,330,4.5\n157,331,4.0\n157,332,3.5\n157,333,4.0\n157,334,4.5\n157,335,5.0\n157,336,5.5\n157,337,6.0\n157,338,6.5\n157,339,7.0\n157,340,7.5\n157,341,8.0\n157,342,8.5\n157,343,9.0\n157,344,9.5\n157,345,10.0\n157,346,10.5\n157,347,11.0\n157,348,11.5\n157,349,12.0\n157,350,7.5\n157,351,7.0\n157,352,6.5\n157,353,6.0\n157,354,5.5\n157,355,5.0\n157,356,4.5\n157,357,4.0\n157,358,4.5\n157,359,5.0\n157,360,5.5\n157,361,6.0\n157,362,6.5\n157,363,7.0\n157,364,7.5\n157,365,8.0\n157,366,8.5\n157,367,9.0\n157,368,9.5\n157,369,10.0\n157,370,10.5\n157,371,11.0\n157,372,11.5\n157,373,12.0\n157,374,12.5\n157,375,8.0\n157,376,7.5\n157,377,7.0\n157,378,6.5\n157,379,6.0\n157,380,5.5\n157,381,5.0\n157,382,4.5\n157,383,5.0\n157,384,5.5\n157,385,6.0\n157,386,6.5\n157,387,7.0\n157,388,7.5\n157,389,8.0\n157,390,8.5\n157,391,9.0\n157,392,9.5\n157,393,10.0\n157,394,10.5\n157,395,11.0\n157,396,11.5\n157,397,12.0\n157,398,12.5\n157,399,13.0\n157,400,8.5\n157,401,8.0\n157,402,7.5\n157,403,7.0\n157,404,6.5\n157,405,6.0\n157,406,5.5\n157,407,5.0\n157,408,5.5\n157,409,6.0\n157,410,6.5\n157,411,7.0\n157,412,7.5\n157,413,8.0\n157,414,8.5\n157,415,9.0\n157,416,9.5\n157,417,10.0\n157,418,10.5\n157,419,11.0\n157,420,11.5\n157,421,12.0\n157,422,12.5\n157,423,13.0\n157,424,13.5\n157,425,9.0\n157,426,8.5\n157,427,8.0\n157,428,7.5\n157,429,7.0\n157,430,6.5\n157,431,6.0\n157,432,5.5\n157,433,6.0\n157,434,6.5\n157,435,7.0\n157,436,7.5\n157,437,8.0\n157,438,8.5\n157,439,9.0\n157,440,9.5\n157,441,10.0\n157,442,10.5\n157,443,11.0\n157,444,11.5\n157,445,12.0\n157,446,12.5\n157,447,13.0\n157,448,13.5\n157,449,14.0\n157,450,9.5\n157,451,9.0\n157,452,8.5\n157,453,8.0\n157,454,7.5\n157,455,7.0\n157,456,6.5\n157,457,6.0\n157,458,6.5\n157,459,7.0\n157,460,7.5\n157,461,8.0\n157,462,8.5\n157,463,9.0\n157,464,9.5\n157,465,10.0\n157,466,10.5\n157,467,11.0\n157,468,11.5\n157,469,12.0\n157,470,12.5\n157,471,13.0\n157,472,13.5\n157,473,14.0\n157,474,14.5\n157,475,10.0\n157,476,9.5\n157,477,9.0\n157,478,8.5\n157,479,8.0\n157,480,7.5\n157,481,7.0\n157,482,6.5\n157,483,7.0\n157,484,7.5\n157,485,8.0\n157,486,8.5\n157,487,9.0\n157,488,9.5\n157,489,10.0\n157,490,10.5\n157,491,11.0\n157,492,11.5\n157,493,12.0\n157,494,12.5\n157,495,13.0\n157,496,13.5\n157,497,14.0\n157,498,14.5\n157,499,15.0\n157,500,10.5\n157,501,10.0\n157,502,9.5\n157,503,9.0\n157,504,8.5\n157,505,8.0\n157,506,7.5\n157,507,7.0\n157,508,7.5\n157,509,8.0\n157,510,8.5\n157,511,9.0\n157,512,9.5\n157,513,10.0\n157,514,10.5\n157,515,11.0\n157,516,11.5\n157,517,12.0\n157,518,12.5\n157,519,13.0\n157,520,13.5\n157,521,14.0\n157,522,14.5\n157,523,15.0\n157,524,15.5\n157,525,11.0\n157,526,10.5\n157,527,10.0\n157,528,9.5\n157,529,9.0\n157,530,8.5\n157,531,8.0\n157,532,7.5\n157,533,8.0\n157,534,8.5\n157,535,9.0\n157,536,9.5\n157,537,10.0\n157,538,10.5\n157,539,11.0\n157,540,11.5\n157,541,12.0\n157,542,12.5\n157,543,13.0\n157,544,13.5\n157,545,14.0\n157,546,14.5\n157,547,15.0\n157,548,15.5\n157,549,16.0\n157,550,11.5\n157,551,11.0\n157,552,10.5\n157,553,10.0\n157,554,9.5\n157,555,9.0\n157,556,8.5\n157,557,8.0\n157,558,8.5\n157,559,9.0\n157,560,9.5\n157,561,10.0\n157,562,10.5\n157,563,11.0\n157,564,11.5\n157,565,12.0\n157,566,12.5\n157,567,13.0\n157,568,13.5\n157,569,14.0\n157,570,14.5\n157,571,15.0\n157,572,15.5\n157,573,16.0\n157,574,16.5\n157,575,12.0\n157,576,11.5\n157,577,11.0\n157,578,10.5\n157,579,10.0\n157,580,9.5\n157,581,9.0\n157,582,8.5\n157,583,9.0\n157,584,9.5\n157,585,10.0\n157,586,10.5\n157,587,11.0\n157,588,11.5\n157,589,12.0\n157,590,12.5\n157,591,13.0\n157,592,13.5\n157,593,14.0\n157,594,14.5\n157,595,15.0\n157,596,15.5\n157,597,16.0\n157,598,16.5\n157,599,17.0\n157,600,12.5\n157,601,12.0\n157,602,11.5\n157,603,11.0\n157,604,10.5\n157,605,10.0\n157,606,9.5\n157,607,9.0\n157,608,9.5\n157,609,10.0\n157,610,10.5\n157,611,11.0\n157,612,11.5\n157,613,12.0\n157,614,12.5\n157,615,13.0\n157,616,13.5\n157,617,14.0\n157,618,14.5\n157,619,15.0\n157,620,15.5\n157,621,16.0\n157,622,16.5\n157,623,17.0\n157,624,17.5\n158,0,7.0\n158,1,6.5\n158,2,6.0\n158,3,5.5\n158,4,5.0\n158,5,4.5\n158,6,4.0\n158,7,3.5\n158,8,3.0\n158,9,3.5\n158,10,4.0\n158,11,4.5\n158,12,5.0\n158,13,5.5\n158,14,6.0\n158,15,6.5\n158,16,7.0\n158,17,7.5\n158,18,8.0\n158,19,8.5\n158,20,9.0\n158,21,9.5\n158,22,10.0\n158,23,10.5\n158,24,11.0\n158,25,6.5\n158,26,6.0\n158,27,5.5\n158,28,5.0\n158,29,4.5\n158,30,4.0\n158,31,3.5\n158,32,3.0\n158,33,2.5\n158,34,3.0\n158,35,3.5\n158,36,4.0\n158,37,4.5\n158,38,5.0\n158,39,5.5\n158,40,6.0\n158,41,6.5\n158,42,7.0\n158,43,7.5\n158,44,8.0\n158,45,8.5\n158,46,9.0\n158,47,9.5\n158,48,10.0\n158,49,10.5\n158,50,6.0\n158,51,5.5\n158,52,5.0\n158,53,4.5\n158,54,4.0\n158,55,3.5\n158,56,3.0\n158,57,2.5\n158,58,2.0\n158,59,2.5\n158,60,3.0\n158,61,3.5\n158,62,4.0\n158,63,4.5\n158,64,5.0\n158,65,5.5\n158,66,6.0\n158,67,6.5\n158,68,7.0\n158,69,7.5\n158,70,8.0\n158,71,8.5\n158,72,9.0\n158,73,9.5\n158,74,10.0\n158,75,5.5\n158,76,5.0\n158,77,4.5\n158,78,4.0\n158,79,3.5\n158,80,3.0\n158,81,2.5\n158,82,2.0\n158,83,1.5\n158,84,2.0\n158,85,2.5\n158,86,3.0\n158,87,3.5\n158,88,4.0\n158,89,4.5\n158,90,5.0\n158,91,5.5\n158,92,6.0\n158,93,6.5\n158,94,7.0\n158,95,7.5\n158,96,8.0\n158,97,8.5\n158,98,9.0\n158,99,9.5\n158,100,5.0\n158,101,4.5\n158,102,4.0\n158,103,3.5\n158,104,3.0\n158,105,2.5\n158,106,2.0\n158,107,1.5\n158,108,1.0\n158,109,1.5\n158,110,2.0\n158,111,2.5\n158,112,3.0\n158,113,3.5\n158,114,4.0\n158,115,4.5\n158,116,5.0\n158,117,5.5\n158,118,6.0\n158,119,6.5\n158,120,7.0\n158,121,7.5\n158,122,8.0\n158,123,8.5\n158,124,9.0\n158,125,4.5\n158,126,4.0\n158,127,3.5\n158,128,3.0\n158,129,2.5\n158,130,2.0\n158,131,1.5\n158,132,1.0\n158,133,0.5\n158,134,1.0\n158,135,1.5\n158,136,2.0\n158,137,2.5\n158,138,3.0\n158,139,3.5\n158,140,4.0\n158,141,4.5\n158,142,5.0\n158,143,5.5\n158,144,6.0\n158,145,6.5\n158,146,7.0\n158,147,7.5\n158,148,8.0\n158,149,8.5\n158,150,4.0\n158,151,3.5\n158,152,3.0\n158,153,2.5\n158,154,2.0\n158,155,1.5\n158,156,1.0\n158,157,0.5\n158,158,0\n158,159,0.5\n158,160,1.0\n158,161,1.5\n158,162,2.0\n158,163,2.5\n158,164,3.0\n158,165,3.5\n158,166,4.0\n158,167,4.5\n158,168,5.0\n158,169,5.5\n158,170,6.0\n158,171,6.5\n158,172,7.0\n158,173,7.5\n158,174,8.0\n158,175,4.5\n158,176,4.0\n158,177,3.5\n158,178,3.0\n158,179,2.5\n158,180,2.0\n158,181,1.5\n158,182,1.0\n158,183,0.5\n158,184,1.0\n158,185,1.5\n158,186,2.0\n158,187,2.5\n158,188,3.0\n158,189,3.5\n158,190,4.0\n158,191,4.5\n158,192,5.0\n158,193,5.5\n158,194,6.0\n158,195,6.5\n158,196,7.0\n158,197,7.5\n158,198,8.0\n158,199,8.5\n158,200,5.0\n158,201,4.5\n158,202,4.0\n158,203,3.5\n158,204,3.0\n158,205,2.5\n158,206,2.0\n158,207,1.5\n158,208,1.0\n158,209,1.5\n158,210,2.0\n158,211,2.5\n158,212,3.0\n158,213,3.5\n158,214,4.0\n158,215,4.5\n158,216,5.0\n158,217,5.5\n158,218,6.0\n158,219,6.5\n158,220,7.0\n158,221,7.5\n158,222,8.0\n158,223,8.5\n158,224,9.0\n158,225,5.5\n158,226,5.0\n158,227,4.5\n158,228,4.0\n158,229,3.5\n158,230,3.0\n158,231,2.5\n158,232,2.0\n158,233,1.5\n158,234,2.0\n158,235,2.5\n158,236,3.0\n158,237,3.5\n158,238,4.0\n158,239,4.5\n158,240,5.0\n158,241,5.5\n158,242,6.0\n158,243,6.5\n158,244,7.0\n158,245,7.5\n158,246,8.0\n158,247,8.5\n158,248,9.0\n158,249,9.5\n158,250,6.0\n158,251,5.5\n158,252,5.0\n158,253,4.5\n158,254,4.0\n158,255,3.5\n158,256,3.0\n158,257,2.5\n158,258,2.0\n158,259,2.5\n158,260,3.0\n158,261,3.5\n158,262,4.0\n158,263,4.5\n158,264,5.0\n158,265,5.5\n158,266,6.0\n158,267,6.5\n158,268,7.0\n158,269,7.5\n158,270,8.0\n158,271,8.5\n158,272,9.0\n158,273,9.5\n158,274,10.0\n158,275,6.5\n158,276,6.0\n158,277,5.5\n158,278,5.0\n158,279,4.5\n158,280,4.0\n158,281,3.5\n158,282,3.0\n158,283,2.5\n158,284,3.0\n158,285,3.5\n158,286,4.0\n158,287,4.5\n158,288,5.0\n158,289,5.5\n158,290,6.0\n158,291,6.5\n158,292,7.0\n158,293,7.5\n158,294,8.0\n158,295,8.5\n158,296,9.0\n158,297,9.5\n158,298,10.0\n158,299,10.5\n158,300,7.0\n158,301,6.5\n158,302,6.0\n158,303,5.5\n158,304,5.0\n158,305,4.5\n158,306,4.0\n158,307,3.5\n158,308,3.0\n158,309,3.5\n158,310,4.0\n158,311,4.5\n158,312,5.0\n158,313,5.5\n158,314,6.0\n158,315,6.5\n158,316,7.0\n158,317,7.5\n158,318,8.0\n158,319,8.5\n158,320,9.0\n158,321,9.5\n158,322,10.0\n158,323,10.5\n158,324,11.0\n158,325,7.5\n158,326,7.0\n158,327,6.5\n158,328,6.0\n158,329,5.5\n158,330,5.0\n158,331,4.5\n158,332,4.0\n158,333,3.5\n158,334,4.0\n158,335,4.5\n158,336,5.0\n158,337,5.5\n158,338,6.0\n158,339,6.5\n158,340,7.0\n158,341,7.5\n158,342,8.0\n158,343,8.5\n158,344,9.0\n158,345,9.5\n158,346,10.0\n158,347,10.5\n158,348,11.0\n158,349,11.5\n158,350,8.0\n158,351,7.5\n158,352,7.0\n158,353,6.5\n158,354,6.0\n158,355,5.5\n158,356,5.0\n158,357,4.5\n158,358,4.0\n158,359,4.5\n158,360,5.0\n158,361,5.5\n158,362,6.0\n158,363,6.5\n158,364,7.0\n158,365,7.5\n158,366,8.0\n158,367,8.5\n158,368,9.0\n158,369,9.5\n158,370,10.0\n158,371,10.5\n158,372,11.0\n158,373,11.5\n158,374,12.0\n158,375,8.5\n158,376,8.0\n158,377,7.5\n158,378,7.0\n158,379,6.5\n158,380,6.0\n158,381,5.5\n158,382,5.0\n158,383,4.5\n158,384,5.0\n158,385,5.5\n158,386,6.0\n158,387,6.5\n158,388,7.0\n158,389,7.5\n158,390,8.0\n158,391,8.5\n158,392,9.0\n158,393,9.5\n158,394,10.0\n158,395,10.5\n158,396,11.0\n158,397,11.5\n158,398,12.0\n158,399,12.5\n158,400,9.0\n158,401,8.5\n158,402,8.0\n158,403,7.5\n158,404,7.0\n158,405,6.5\n158,406,6.0\n158,407,5.5\n158,408,5.0\n158,409,5.5\n158,410,6.0\n158,411,6.5\n158,412,7.0\n158,413,7.5\n158,414,8.0\n158,415,8.5\n158,416,9.0\n158,417,9.5\n158,418,10.0\n158,419,10.5\n158,420,11.0\n158,421,11.5\n158,422,12.0\n158,423,12.5\n158,424,13.0\n158,425,9.5\n158,426,9.0\n158,427,8.5\n158,428,8.0\n158,429,7.5\n158,430,7.0\n158,431,6.5\n158,432,6.0\n158,433,5.5\n158,434,6.0\n158,435,6.5\n158,436,7.0\n158,437,7.5\n158,438,8.0\n158,439,8.5\n158,440,9.0\n158,441,9.5\n158,442,10.0\n158,443,10.5\n158,444,11.0\n158,445,11.5\n158,446,12.0\n158,447,12.5\n158,448,13.0\n158,449,13.5\n158,450,10.0\n158,451,9.5\n158,452,9.0\n158,453,8.5\n158,454,8.0\n158,455,7.5\n158,456,7.0\n158,457,6.5\n158,458,6.0\n158,459,6.5\n158,460,7.0\n158,461,7.5\n158,462,8.0\n158,463,8.5\n158,464,9.0\n158,465,9.5\n158,466,10.0\n158,467,10.5\n158,468,11.0\n158,469,11.5\n158,470,12.0\n158,471,12.5\n158,472,13.0\n158,473,13.5\n158,474,14.0\n158,475,10.5\n158,476,10.0\n158,477,9.5\n158,478,9.0\n158,479,8.5\n158,480,8.0\n158,481,7.5\n158,482,7.0\n158,483,6.5\n158,484,7.0\n158,485,7.5\n158,486,8.0\n158,487,8.5\n158,488,9.0\n158,489,9.5\n158,490,10.0\n158,491,10.5\n158,492,11.0\n158,493,11.5\n158,494,12.0\n158,495,12.5\n158,496,13.0\n158,497,13.5\n158,498,14.0\n158,499,14.5\n158,500,11.0\n158,501,10.5\n158,502,10.0\n158,503,9.5\n158,504,9.0\n158,505,8.5\n158,506,8.0\n158,507,7.5\n158,508,7.0\n158,509,7.5\n158,510,8.0\n158,511,8.5\n158,512,9.0\n158,513,9.5\n158,514,10.0\n158,515,10.5\n158,516,11.0\n158,517,11.5\n158,518,12.0\n158,519,12.5\n158,520,13.0\n158,521,13.5\n158,522,14.0\n158,523,14.5\n158,524,15.0\n158,525,11.5\n158,526,11.0\n158,527,10.5\n158,528,10.0\n158,529,9.5\n158,530,9.0\n158,531,8.5\n158,532,8.0\n158,533,7.5\n158,534,8.0\n158,535,8.5\n158,536,9.0\n158,537,9.5\n158,538,10.0\n158,539,10.5\n158,540,11.0\n158,541,11.5\n158,542,12.0\n158,543,12.5\n158,544,13.0\n158,545,13.5\n158,546,14.0\n158,547,14.5\n158,548,15.0\n158,549,15.5\n158,550,12.0\n158,551,11.5\n158,552,11.0\n158,553,10.5\n158,554,10.0\n158,555,9.5\n158,556,9.0\n158,557,8.5\n158,558,8.0\n158,559,8.5\n158,560,9.0\n158,561,9.5\n158,562,10.0\n158,563,10.5\n158,564,11.0\n158,565,11.5\n158,566,12.0\n158,567,12.5\n158,568,13.0\n158,569,13.5\n158,570,14.0\n158,571,14.5\n158,572,15.0\n158,573,15.5\n158,574,16.0\n158,575,12.5\n158,576,12.0\n158,577,11.5\n158,578,11.0\n158,579,10.5\n158,580,10.0\n158,581,9.5\n158,582,9.0\n158,583,8.5\n158,584,9.0\n158,585,9.5\n158,586,10.0\n158,587,10.5\n158,588,11.0\n158,589,11.5\n158,590,12.0\n158,591,12.5\n158,592,13.0\n158,593,13.5\n158,594,14.0\n158,595,14.5\n158,596,15.0\n158,597,15.5\n158,598,16.0\n158,599,16.5\n158,600,13.0\n158,601,12.5\n158,602,12.0\n158,603,11.5\n158,604,11.0\n158,605,10.5\n158,606,10.0\n158,607,9.5\n158,608,9.0\n158,609,9.5\n158,610,10.0\n158,611,10.5\n158,612,11.0\n158,613,11.5\n158,614,12.0\n158,615,12.5\n158,616,13.0\n158,617,13.5\n158,618,14.0\n158,619,14.5\n158,620,15.0\n158,621,15.5\n158,622,16.0\n158,623,16.5\n158,624,17.0\n159,0,7.5\n159,1,7.0\n159,2,6.5\n159,3,6.0\n159,4,5.5\n159,5,5.0\n159,6,4.5\n159,7,4.0\n159,8,3.5\n159,9,3.0\n159,10,3.5\n159,11,4.0\n159,12,4.5\n159,13,5.0\n159,14,5.5\n159,15,6.0\n159,16,6.5\n159,17,7.0\n159,18,7.5\n159,19,8.0\n159,20,8.5\n159,21,9.0\n159,22,9.5\n159,23,10.0\n159,24,10.5\n159,25,7.0\n159,26,6.5\n159,27,6.0\n159,28,5.5\n159,29,5.0\n159,30,4.5\n159,31,4.0\n159,32,3.5\n159,33,3.0\n159,34,2.5\n159,35,3.0\n159,36,3.5\n159,37,4.0\n159,38,4.5\n159,39,5.0\n159,40,5.5\n159,41,6.0\n159,42,6.5\n159,43,7.0\n159,44,7.5\n159,45,8.0\n159,46,8.5\n159,47,9.0\n159,48,9.5\n159,49,10.0\n159,50,6.5\n159,51,6.0\n159,52,5.5\n159,53,5.0\n159,54,4.5\n159,55,4.0\n159,56,3.5\n159,57,3.0\n159,58,2.5\n159,59,2.0\n159,60,2.5\n159,61,3.0\n159,62,3.5\n159,63,4.0\n159,64,4.5\n159,65,5.0\n159,66,5.5\n159,67,6.0\n159,68,6.5\n159,69,7.0\n159,70,7.5\n159,71,8.0\n159,72,8.5\n159,73,9.0\n159,74,9.5\n159,75,6.0\n159,76,5.5\n159,77,5.0\n159,78,4.5\n159,79,4.0\n159,80,3.5\n159,81,3.0\n159,82,2.5\n159,83,2.0\n159,84,1.5\n159,85,2.0\n159,86,2.5\n159,87,3.0\n159,88,3.5\n159,89,4.0\n159,90,4.5\n159,91,5.0\n159,92,5.5\n159,93,6.0\n159,94,6.5\n159,95,7.0\n159,96,7.5\n159,97,8.0\n159,98,8.5\n159,99,9.0\n159,100,5.5\n159,101,5.0\n159,102,4.5\n159,103,4.0\n159,104,3.5\n159,105,3.0\n159,106,2.5\n159,107,2.0\n159,108,1.5\n159,109,1.0\n159,110,1.5\n159,111,2.0\n159,112,2.5\n159,113,3.0\n159,114,3.5\n159,115,4.0\n159,116,4.5\n159,117,5.0\n159,118,5.5\n159,119,6.0\n159,120,6.5\n159,121,7.0\n159,122,7.5\n159,123,8.0\n159,124,8.5\n159,125,5.0\n159,126,4.5\n159,127,4.0\n159,128,3.5\n159,129,3.0\n159,130,2.5\n159,131,2.0\n159,132,1.5\n159,133,1.0\n159,134,0.5\n159,135,1.0\n159,136,1.5\n159,137,2.0\n159,138,2.5\n159,139,3.0\n159,140,3.5\n159,141,4.0\n159,142,4.5\n159,143,5.0\n159,144,5.5\n159,145,6.0\n159,146,6.5\n159,147,7.0\n159,148,7.5\n159,149,8.0\n159,150,4.5\n159,151,4.0\n159,152,3.5\n159,153,3.0\n159,154,2.5\n159,155,2.0\n159,156,1.5\n159,157,1.0\n159,158,0.5\n159,159,0\n159,160,0.5\n159,161,1.0\n159,162,1.5\n159,163,2.0\n159,164,2.5\n159,165,3.0\n159,166,3.5\n159,167,4.0\n159,168,4.5\n159,169,5.0\n159,170,5.5\n159,171,6.0\n159,172,6.5\n159,173,7.0\n159,174,7.5\n159,175,5.0\n159,176,4.5\n159,177,4.0\n159,178,3.5\n159,179,3.0\n159,180,2.5\n159,181,2.0\n159,182,1.5\n159,183,1.0\n159,184,0.5\n159,185,1.0\n159,186,1.5\n159,187,2.0\n159,188,2.5\n159,189,3.0\n159,190,3.5\n159,191,4.0\n159,192,4.5\n159,193,5.0\n159,194,5.5\n159,195,6.0\n159,196,6.5\n159,197,7.0\n159,198,7.5\n159,199,8.0\n159,200,5.5\n159,201,5.0\n159,202,4.5\n159,203,4.0\n159,204,3.5\n159,205,3.0\n159,206,2.5\n159,207,2.0\n159,208,1.5\n159,209,1.0\n159,210,1.5\n159,211,2.0\n159,212,2.5\n159,213,3.0\n159,214,3.5\n159,215,4.0\n159,216,4.5\n159,217,5.0\n159,218,5.5\n159,219,6.0\n159,220,6.5\n159,221,7.0\n159,222,7.5\n159,223,8.0\n159,224,8.5\n159,225,6.0\n159,226,5.5\n159,227,5.0\n159,228,4.5\n159,229,4.0\n159,230,3.5\n159,231,3.0\n159,232,2.5\n159,233,2.0\n159,234,1.5\n159,235,2.0\n159,236,2.5\n159,237,3.0\n159,238,3.5\n159,239,4.0\n159,240,4.5\n159,241,5.0\n159,242,5.5\n159,243,6.0\n159,244,6.5\n159,245,7.0\n159,246,7.5\n159,247,8.0\n159,248,8.5\n159,249,9.0\n159,250,6.5\n159,251,6.0\n159,252,5.5\n159,253,5.0\n159,254,4.5\n159,255,4.0\n159,256,3.5\n159,257,3.0\n159,258,2.5\n159,259,2.0\n159,260,2.5\n159,261,3.0\n159,262,3.5\n159,263,4.0\n159,264,4.5\n159,265,5.0\n159,266,5.5\n159,267,6.0\n159,268,6.5\n159,269,7.0\n159,270,7.5\n159,271,8.0\n159,272,8.5\n159,273,9.0\n159,274,9.5\n159,275,7.0\n159,276,6.5\n159,277,6.0\n159,278,5.5\n159,279,5.0\n159,280,4.5\n159,281,4.0\n159,282,3.5\n159,283,3.0\n159,284,2.5\n159,285,3.0\n159,286,3.5\n159,287,4.0\n159,288,4.5\n159,289,5.0\n159,290,5.5\n159,291,6.0\n159,292,6.5\n159,293,7.0\n159,294,7.5\n159,295,8.0\n159,296,8.5\n159,297,9.0\n159,298,9.5\n159,299,10.0\n159,300,7.5\n159,301,7.0\n159,302,6.5\n159,303,6.0\n159,304,5.5\n159,305,5.0\n159,306,4.5\n159,307,4.0\n159,308,3.5\n159,309,3.0\n159,310,3.5\n159,311,4.0\n159,312,4.5\n159,313,5.0\n159,314,5.5\n159,315,6.0\n159,316,6.5\n159,317,7.0\n159,318,7.5\n159,319,8.0\n159,320,8.5\n159,321,9.0\n159,322,9.5\n159,323,10.0\n159,324,10.5\n159,325,8.0\n159,326,7.5\n159,327,7.0\n159,328,6.5\n159,329,6.0\n159,330,5.5\n159,331,5.0\n159,332,4.5\n159,333,4.0\n159,334,3.5\n159,335,4.0\n159,336,4.5\n159,337,5.0\n159,338,5.5\n159,339,6.0\n159,340,6.5\n159,341,7.0\n159,342,7.5\n159,343,8.0\n159,344,8.5\n159,345,9.0\n159,346,9.5\n159,347,10.0\n159,348,10.5\n159,349,11.0\n159,350,8.5\n159,351,8.0\n159,352,7.5\n159,353,7.0\n159,354,6.5\n159,355,6.0\n159,356,5.5\n159,357,5.0\n159,358,4.5\n159,359,4.0\n159,360,4.5\n159,361,5.0\n159,362,5.5\n159,363,6.0\n159,364,6.5\n159,365,7.0\n159,366,7.5\n159,367,8.0\n159,368,8.5\n159,369,9.0\n159,370,9.5\n159,371,10.0\n159,372,10.5\n159,373,11.0\n159,374,11.5\n159,375,9.0\n159,376,8.5\n159,377,8.0\n159,378,7.5\n159,379,7.0\n159,380,6.5\n159,381,6.0\n159,382,5.5\n159,383,5.0\n159,384,4.5\n159,385,5.0\n159,386,5.5\n159,387,6.0\n159,388,6.5\n159,389,7.0\n159,390,7.5\n159,391,8.0\n159,392,8.5\n159,393,9.0\n159,394,9.5\n159,395,10.0\n159,396,10.5\n159,397,11.0\n159,398,11.5\n159,399,12.0\n159,400,9.5\n159,401,9.0\n159,402,8.5\n159,403,8.0\n159,404,7.5\n159,405,7.0\n159,406,6.5\n159,407,6.0\n159,408,5.5\n159,409,5.0\n159,410,5.5\n159,411,6.0\n159,412,6.5\n159,413,7.0\n159,414,7.5\n159,415,8.0\n159,416,8.5\n159,417,9.0\n159,418,9.5\n159,419,10.0\n159,420,10.5\n159,421,11.0\n159,422,11.5\n159,423,12.0\n159,424,12.5\n159,425,10.0\n159,426,9.5\n159,427,9.0\n159,428,8.5\n159,429,8.0\n159,430,7.5\n159,431,7.0\n159,432,6.5\n159,433,6.0\n159,434,5.5\n159,435,6.0\n159,436,6.5\n159,437,7.0\n159,438,7.5\n159,439,8.0\n159,440,8.5\n159,441,9.0\n159,442,9.5\n159,443,10.0\n159,444,10.5\n159,445,11.0\n159,446,11.5\n159,447,12.0\n159,448,12.5\n159,449,13.0\n159,450,10.5\n159,451,10.0\n159,452,9.5\n159,453,9.0\n159,454,8.5\n159,455,8.0\n159,456,7.5\n159,457,7.0\n159,458,6.5\n159,459,6.0\n159,460,6.5\n159,461,7.0\n159,462,7.5\n159,463,8.0\n159,464,8.5\n159,465,9.0\n159,466,9.5\n159,467,10.0\n159,468,10.5\n159,469,11.0\n159,470,11.5\n159,471,12.0\n159,472,12.5\n159,473,13.0\n159,474,13.5\n159,475,11.0\n159,476,10.5\n159,477,10.0\n159,478,9.5\n159,479,9.0\n159,480,8.5\n159,481,8.0\n159,482,7.5\n159,483,7.0\n159,484,6.5\n159,485,7.0\n159,486,7.5\n159,487,8.0\n159,488,8.5\n159,489,9.0\n159,490,9.5\n159,491,10.0\n159,492,10.5\n159,493,11.0\n159,494,11.5\n159,495,12.0\n159,496,12.5\n159,497,13.0\n159,498,13.5\n159,499,14.0\n159,500,11.5\n159,501,11.0\n159,502,10.5\n159,503,10.0\n159,504,9.5\n159,505,9.0\n159,506,8.5\n159,507,8.0\n159,508,7.5\n159,509,7.0\n159,510,7.5\n159,511,8.0\n159,512,8.5\n159,513,9.0\n159,514,9.5\n159,515,10.0\n159,516,10.5\n159,517,11.0\n159,518,11.5\n159,519,12.0\n159,520,12.5\n159,521,13.0\n159,522,13.5\n159,523,14.0\n159,524,14.5\n159,525,12.0\n159,526,11.5\n159,527,11.0\n159,528,10.5\n159,529,10.0\n159,530,9.5\n159,531,9.0\n159,532,8.5\n159,533,8.0\n159,534,7.5\n159,535,8.0\n159,536,8.5\n159,537,9.0\n159,538,9.5\n159,539,10.0\n159,540,10.5\n159,541,11.0\n159,542,11.5\n159,543,12.0\n159,544,12.5\n159,545,13.0\n159,546,13.5\n159,547,14.0\n159,548,14.5\n159,549,15.0\n159,550,12.5\n159,551,12.0\n159,552,11.5\n159,553,11.0\n159,554,10.5\n159,555,10.0\n159,556,9.5\n159,557,9.0\n159,558,8.5\n159,559,8.0\n159,560,8.5\n159,561,9.0\n159,562,9.5\n159,563,10.0\n159,564,10.5\n159,565,11.0\n159,566,11.5\n159,567,12.0\n159,568,12.5\n159,569,13.0\n159,570,13.5\n159,571,14.0\n159,572,14.5\n159,573,15.0\n159,574,15.5\n159,575,13.0\n159,576,12.5\n159,577,12.0\n159,578,11.5\n159,579,11.0\n159,580,10.5\n159,581,10.0\n159,582,9.5\n159,583,9.0\n159,584,8.5\n159,585,9.0\n159,586,9.5\n159,587,10.0\n159,588,10.5\n159,589,11.0\n159,590,11.5\n159,591,12.0\n159,592,12.5\n159,593,13.0\n159,594,13.5\n159,595,14.0\n159,596,14.5\n159,597,15.0\n159,598,15.5\n159,599,16.0\n159,600,13.5\n159,601,13.0\n159,602,12.5\n159,603,12.0\n159,604,11.5\n159,605,11.0\n159,606,10.5\n159,607,10.0\n159,608,9.5\n159,609,9.0\n159,610,9.5\n159,611,10.0\n159,612,10.5\n159,613,11.0\n159,614,11.5\n159,615,12.0\n159,616,12.5\n159,617,13.0\n159,618,13.5\n159,619,14.0\n159,620,14.5\n159,621,15.0\n159,622,15.5\n159,623,16.0\n159,624,16.5\n160,0,8.0\n160,1,7.5\n160,2,7.0\n160,3,6.5\n160,4,6.0\n160,5,5.5\n160,6,5.0\n160,7,4.5\n160,8,4.0\n160,9,3.5\n160,10,3.0\n160,11,3.5\n160,12,4.0\n160,13,4.5\n160,14,5.0\n160,15,5.5\n160,16,6.0\n160,17,6.5\n160,18,7.0\n160,19,7.5\n160,20,8.0\n160,21,8.5\n160,22,9.0\n160,23,9.5\n160,24,10.0\n160,25,7.5\n160,26,7.0\n160,27,6.5\n160,28,6.0\n160,29,5.5\n160,30,5.0\n160,31,4.5\n160,32,4.0\n160,33,3.5\n160,34,3.0\n160,35,2.5\n160,36,3.0\n160,37,3.5\n160,38,4.0\n160,39,4.5\n160,40,5.0\n160,41,5.5\n160,42,6.0\n160,43,6.5\n160,44,7.0\n160,45,7.5\n160,46,8.0\n160,47,8.5\n160,48,9.0\n160,49,9.5\n160,50,7.0\n160,51,6.5\n160,52,6.0\n160,53,5.5\n160,54,5.0\n160,55,4.5\n160,56,4.0\n160,57,3.5\n160,58,3.0\n160,59,2.5\n160,60,2.0\n160,61,2.5\n160,62,3.0\n160,63,3.5\n160,64,4.0\n160,65,4.5\n160,66,5.0\n160,67,5.5\n160,68,6.0\n160,69,6.5\n160,70,7.0\n160,71,7.5\n160,72,8.0\n160,73,8.5\n160,74,9.0\n160,75,6.5\n160,76,6.0\n160,77,5.5\n160,78,5.0\n160,79,4.5\n160,80,4.0\n160,81,3.5\n160,82,3.0\n160,83,2.5\n160,84,2.0\n160,85,1.5\n160,86,2.0\n160,87,2.5\n160,88,3.0\n160,89,3.5\n160,90,4.0\n160,91,4.5\n160,92,5.0\n160,93,5.5\n160,94,6.0\n160,95,6.5\n160,96,7.0\n160,97,7.5\n160,98,8.0\n160,99,8.5\n160,100,6.0\n160,101,5.5\n160,102,5.0\n160,103,4.5\n160,104,4.0\n160,105,3.5\n160,106,3.0\n160,107,2.5\n160,108,2.0\n160,109,1.5\n160,110,1.0\n160,111,1.5\n160,112,2.0\n160,113,2.5\n160,114,3.0\n160,115,3.5\n160,116,4.0\n160,117,4.5\n160,118,5.0\n160,119,5.5\n160,120,6.0\n160,121,6.5\n160,122,7.0\n160,123,7.5\n160,124,8.0\n160,125,5.5\n160,126,5.0\n160,127,4.5\n160,128,4.0\n160,129,3.5\n160,130,3.0\n160,131,2.5\n160,132,2.0\n160,133,1.5\n160,134,1.0\n160,135,0.5\n160,136,1.0\n160,137,1.5\n160,138,2.0\n160,139,2.5\n160,140,3.0\n160,141,3.5\n160,142,4.0\n160,143,4.5\n160,144,5.0\n160,145,5.5\n160,146,6.0\n160,147,6.5\n160,148,7.0\n160,149,7.5\n160,150,5.0\n160,151,4.5\n160,152,4.0\n160,153,3.5\n160,154,3.0\n160,155,2.5\n160,156,2.0\n160,157,1.5\n160,158,1.0\n160,159,0.5\n160,160,0\n160,161,0.5\n160,162,1.0\n160,163,1.5\n160,164,2.0\n160,165,2.5\n160,166,3.0\n160,167,3.5\n160,168,4.0\n160,169,4.5\n160,170,5.0\n160,171,5.5\n160,172,6.0\n160,173,6.5\n160,174,7.0\n160,175,5.5\n160,176,5.0\n160,177,4.5\n160,178,4.0\n160,179,3.5\n160,180,3.0\n160,181,2.5\n160,182,2.0\n160,183,1.5\n160,184,1.0\n160,185,0.5\n160,186,1.0\n160,187,1.5\n160,188,2.0\n160,189,2.5\n160,190,3.0\n160,191,3.5\n160,192,4.0\n160,193,4.5\n160,194,5.0\n160,195,5.5\n160,196,6.0\n160,197,6.5\n160,198,7.0\n160,199,7.5\n160,200,6.0\n160,201,5.5\n160,202,5.0\n160,203,4.5\n160,204,4.0\n160,205,3.5\n160,206,3.0\n160,207,2.5\n160,208,2.0\n160,209,1.5\n160,210,1.0\n160,211,1.5\n160,212,2.0\n160,213,2.5\n160,214,3.0\n160,215,3.5\n160,216,4.0\n160,217,4.5\n160,218,5.0\n160,219,5.5\n160,220,6.0\n160,221,6.5\n160,222,7.0\n160,223,7.5\n160,224,8.0\n160,225,6.5\n160,226,6.0\n160,227,5.5\n160,228,5.0\n160,229,4.5\n160,230,4.0\n160,231,3.5\n160,232,3.0\n160,233,2.5\n160,234,2.0\n160,235,1.5\n160,236,2.0\n160,237,2.5\n160,238,3.0\n160,239,3.5\n160,240,4.0\n160,241,4.5\n160,242,5.0\n160,243,5.5\n160,244,6.0\n160,245,6.5\n160,246,7.0\n160,247,7.5\n160,248,8.0\n160,249,8.5\n160,250,7.0\n160,251,6.5\n160,252,6.0\n160,253,5.5\n160,254,5.0\n160,255,4.5\n160,256,4.0\n160,257,3.5\n160,258,3.0\n160,259,2.5\n160,260,2.0\n160,261,2.5\n160,262,3.0\n160,263,3.5\n160,264,4.0\n160,265,4.5\n160,266,5.0\n160,267,5.5\n160,268,6.0\n160,269,6.5\n160,270,7.0\n160,271,7.5\n160,272,8.0\n160,273,8.5\n160,274,9.0\n160,275,7.5\n160,276,7.0\n160,277,6.5\n160,278,6.0\n160,279,5.5\n160,280,5.0\n160,281,4.5\n160,282,4.0\n160,283,3.5\n160,284,3.0\n160,285,2.5\n160,286,3.0\n160,287,3.5\n160,288,4.0\n160,289,4.5\n160,290,5.0\n160,291,5.5\n160,292,6.0\n160,293,6.5\n160,294,7.0\n160,295,7.5\n160,296,8.0\n160,297,8.5\n160,298,9.0\n160,299,9.5\n160,300,8.0\n160,301,7.5\n160,302,7.0\n160,303,6.5\n160,304,6.0\n160,305,5.5\n160,306,5.0\n160,307,4.5\n160,308,4.0\n160,309,3.5\n160,310,3.0\n160,311,3.5\n160,312,4.0\n160,313,4.5\n160,314,5.0\n160,315,5.5\n160,316,6.0\n160,317,6.5\n160,318,7.0\n160,319,7.5\n160,320,8.0\n160,321,8.5\n160,322,9.0\n160,323,9.5\n160,324,10.0\n160,325,8.5\n160,326,8.0\n160,327,7.5\n160,328,7.0\n160,329,6.5\n160,330,6.0\n160,331,5.5\n160,332,5.0\n160,333,4.5\n160,334,4.0\n160,335,3.5\n160,336,4.0\n160,337,4.5\n160,338,5.0\n160,339,5.5\n160,340,6.0\n160,341,6.5\n160,342,7.0\n160,343,7.5\n160,344,8.0\n160,345,8.5\n160,346,9.0\n160,347,9.5\n160,348,10.0\n160,349,10.5\n160,350,9.0\n160,351,8.5\n160,352,8.0\n160,353,7.5\n160,354,7.0\n160,355,6.5\n160,356,6.0\n160,357,5.5\n160,358,5.0\n160,359,4.5\n160,360,4.0\n160,361,4.5\n160,362,5.0\n160,363,5.5\n160,364,6.0\n160,365,6.5\n160,366,7.0\n160,367,7.5\n160,368,8.0\n160,369,8.5\n160,370,9.0\n160,371,9.5\n160,372,10.0\n160,373,10.5\n160,374,11.0\n160,375,9.5\n160,376,9.0\n160,377,8.5\n160,378,8.0\n160,379,7.5\n160,380,7.0\n160,381,6.5\n160,382,6.0\n160,383,5.5\n160,384,5.0\n160,385,4.5\n160,386,5.0\n160,387,5.5\n160,388,6.0\n160,389,6.5\n160,390,7.0\n160,391,7.5\n160,392,8.0\n160,393,8.5\n160,394,9.0\n160,395,9.5\n160,396,10.0\n160,397,10.5\n160,398,11.0\n160,399,11.5\n160,400,10.0\n160,401,9.5\n160,402,9.0\n160,403,8.5\n160,404,8.0\n160,405,7.5\n160,406,7.0\n160,407,6.5\n160,408,6.0\n160,409,5.5\n160,410,5.0\n160,411,5.5\n160,412,6.0\n160,413,6.5\n160,414,7.0\n160,415,7.5\n160,416,8.0\n160,417,8.5\n160,418,9.0\n160,419,9.5\n160,420,10.0\n160,421,10.5\n160,422,11.0\n160,423,11.5\n160,424,12.0\n160,425,10.5\n160,426,10.0\n160,427,9.5\n160,428,9.0\n160,429,8.5\n160,430,8.0\n160,431,7.5\n160,432,7.0\n160,433,6.5\n160,434,6.0\n160,435,5.5\n160,436,6.0\n160,437,6.5\n160,438,7.0\n160,439,7.5\n160,440,8.0\n160,441,8.5\n160,442,9.0\n160,443,9.5\n160,444,10.0\n160,445,10.5\n160,446,11.0\n160,447,11.5\n160,448,12.0\n160,449,12.5\n160,450,11.0\n160,451,10.5\n160,452,10.0\n160,453,9.5\n160,454,9.0\n160,455,8.5\n160,456,8.0\n160,457,7.5\n160,458,7.0\n160,459,6.5\n160,460,6.0\n160,461,6.5\n160,462,7.0\n160,463,7.5\n160,464,8.0\n160,465,8.5\n160,466,9.0\n160,467,9.5\n160,468,10.0\n160,469,10.5\n160,470,11.0\n160,471,11.5\n160,472,12.0\n160,473,12.5\n160,474,13.0\n160,475,11.5\n160,476,11.0\n160,477,10.5\n160,478,10.0\n160,479,9.5\n160,480,9.0\n160,481,8.5\n160,482,8.0\n160,483,7.5\n160,484,7.0\n160,485,6.5\n160,486,7.0\n160,487,7.5\n160,488,8.0\n160,489,8.5\n160,490,9.0\n160,491,9.5\n160,492,10.0\n160,493,10.5\n160,494,11.0\n160,495,11.5\n160,496,12.0\n160,497,12.5\n160,498,13.0\n160,499,13.5\n160,500,12.0\n160,501,11.5\n160,502,11.0\n160,503,10.5\n160,504,10.0\n160,505,9.5\n160,506,9.0\n160,507,8.5\n160,508,8.0\n160,509,7.5\n160,510,7.0\n160,511,7.5\n160,512,8.0\n160,513,8.5\n160,514,9.0\n160,515,9.5\n160,516,10.0\n160,517,10.5\n160,518,11.0\n160,519,11.5\n160,520,12.0\n160,521,12.5\n160,522,13.0\n160,523,13.5\n160,524,14.0\n160,525,12.5\n160,526,12.0\n160,527,11.5\n160,528,11.0\n160,529,10.5\n160,530,10.0\n160,531,9.5\n160,532,9.0\n160,533,8.5\n160,534,8.0\n160,535,7.5\n160,536,8.0\n160,537,8.5\n160,538,9.0\n160,539,9.5\n160,540,10.0\n160,541,10.5\n160,542,11.0\n160,543,11.5\n160,544,12.0\n160,545,12.5\n160,546,13.0\n160,547,13.5\n160,548,14.0\n160,549,14.5\n160,550,13.0\n160,551,12.5\n160,552,12.0\n160,553,11.5\n160,554,11.0\n160,555,10.5\n160,556,10.0\n160,557,9.5\n160,558,9.0\n160,559,8.5\n160,560,8.0\n160,561,8.5\n160,562,9.0\n160,563,9.5\n160,564,10.0\n160,565,10.5\n160,566,11.0\n160,567,11.5\n160,568,12.0\n160,569,12.5\n160,570,13.0\n160,571,13.5\n160,572,14.0\n160,573,14.5\n160,574,15.0\n160,575,13.5\n160,576,13.0\n160,577,12.5\n160,578,12.0\n160,579,11.5\n160,580,11.0\n160,581,10.5\n160,582,10.0\n160,583,9.5\n160,584,9.0\n160,585,8.5\n160,586,9.0\n160,587,9.5\n160,588,10.0\n160,589,10.5\n160,590,11.0\n160,591,11.5\n160,592,12.0\n160,593,12.5\n160,594,13.0\n160,595,13.5\n160,596,14.0\n160,597,14.5\n160,598,15.0\n160,599,15.5\n160,600,14.0\n160,601,13.5\n160,602,13.0\n160,603,12.5\n160,604,12.0\n160,605,11.5\n160,606,11.0\n160,607,10.5\n160,608,10.0\n160,609,9.5\n160,610,9.0\n160,611,9.5\n160,612,10.0\n160,613,10.5\n160,614,11.0\n160,615,11.5\n160,616,12.0\n160,617,12.5\n160,618,13.0\n160,619,13.5\n160,620,14.0\n160,621,14.5\n160,622,15.0\n160,623,15.5\n160,624,16.0\n161,0,8.5\n161,1,8.0\n161,2,7.5\n161,3,7.0\n161,4,6.5\n161,5,6.0\n161,6,5.5\n161,7,5.0\n161,8,4.5\n161,9,4.0\n161,10,3.5\n161,11,3.0\n161,12,3.5\n161,13,4.0\n161,14,4.5\n161,15,5.0\n161,16,5.5\n161,17,6.0\n161,18,6.5\n161,19,7.0\n161,20,7.5\n161,21,8.0\n161,22,8.5\n161,23,9.0\n161,24,9.5\n161,25,8.0\n161,26,7.5\n161,27,7.0\n161,28,6.5\n161,29,6.0\n161,30,5.5\n161,31,5.0\n161,32,4.5\n161,33,4.0\n161,34,3.5\n161,35,3.0\n161,36,2.5\n161,37,3.0\n161,38,3.5\n161,39,4.0\n161,40,4.5\n161,41,5.0\n161,42,5.5\n161,43,6.0\n161,44,6.5\n161,45,7.0\n161,46,7.5\n161,47,8.0\n161,48,8.5\n161,49,9.0\n161,50,7.5\n161,51,7.0\n161,52,6.5\n161,53,6.0\n161,54,5.5\n161,55,5.0\n161,56,4.5\n161,57,4.0\n161,58,3.5\n161,59,3.0\n161,60,2.5\n161,61,2.0\n161,62,2.5\n161,63,3.0\n161,64,3.5\n161,65,4.0\n161,66,4.5\n161,67,5.0\n161,68,5.5\n161,69,6.0\n161,70,6.5\n161,71,7.0\n161,72,7.5\n161,73,8.0\n161,74,8.5\n161,75,7.0\n161,76,6.5\n161,77,6.0\n161,78,5.5\n161,79,5.0\n161,80,4.5\n161,81,4.0\n161,82,3.5\n161,83,3.0\n161,84,2.5\n161,85,2.0\n161,86,1.5\n161,87,2.0\n161,88,2.5\n161,89,3.0\n161,90,3.5\n161,91,4.0\n161,92,4.5\n161,93,5.0\n161,94,5.5\n161,95,6.0\n161,96,6.5\n161,97,7.0\n161,98,7.5\n161,99,8.0\n161,100,6.5\n161,101,6.0\n161,102,5.5\n161,103,5.0\n161,104,4.5\n161,105,4.0\n161,106,3.5\n161,107,3.0\n161,108,2.5\n161,109,2.0\n161,110,1.5\n161,111,1.0\n161,112,1.5\n161,113,2.0\n161,114,2.5\n161,115,3.0\n161,116,3.5\n161,117,4.0\n161,118,4.5\n161,119,5.0\n161,120,5.5\n161,121,6.0\n161,122,6.5\n161,123,7.0\n161,124,7.5\n161,125,6.0\n161,126,5.5\n161,127,5.0\n161,128,4.5\n161,129,4.0\n161,130,3.5\n161,131,3.0\n161,132,2.5\n161,133,2.0\n161,134,1.5\n161,135,1.0\n161,136,0.5\n161,137,1.0\n161,138,1.5\n161,139,2.0\n161,140,2.5\n161,141,3.0\n161,142,3.5\n161,143,4.0\n161,144,4.5\n161,145,5.0\n161,146,5.5\n161,147,6.0\n161,148,6.5\n161,149,7.0\n161,150,5.5\n161,151,5.0\n161,152,4.5\n161,153,4.0\n161,154,3.5\n161,155,3.0\n161,156,2.5\n161,157,2.0\n161,158,1.5\n161,159,1.0\n161,160,0.5\n161,161,0\n161,162,0.5\n161,163,1.0\n161,164,1.5\n161,165,2.0\n161,166,2.5\n161,167,3.0\n161,168,3.5\n161,169,4.0\n161,170,4.5\n161,171,5.0\n161,172,5.5\n161,173,6.0\n161,174,6.5\n161,175,6.0\n161,176,5.5\n161,177,5.0\n161,178,4.5\n161,179,4.0\n161,180,3.5\n161,181,3.0\n161,182,2.5\n161,183,2.0\n161,184,1.5\n161,185,1.0\n161,186,0.5\n161,187,1.0\n161,188,1.5\n161,189,2.0\n161,190,2.5\n161,191,3.0\n161,192,3.5\n161,193,4.0\n161,194,4.5\n161,195,5.0\n161,196,5.5\n161,197,6.0\n161,198,6.5\n161,199,7.0\n161,200,6.5\n161,201,6.0\n161,202,5.5\n161,203,5.0\n161,204,4.5\n161,205,4.0\n161,206,3.5\n161,207,3.0\n161,208,2.5\n161,209,2.0\n161,210,1.5\n161,211,1.0\n161,212,1.5\n161,213,2.0\n161,214,2.5\n161,215,3.0\n161,216,3.5\n161,217,4.0\n161,218,4.5\n161,219,5.0\n161,220,5.5\n161,221,6.0\n161,222,6.5\n161,223,7.0\n161,224,7.5\n161,225,7.0\n161,226,6.5\n161,227,6.0\n161,228,5.5\n161,229,5.0\n161,230,4.5\n161,231,4.0\n161,232,3.5\n161,233,3.0\n161,234,2.5\n161,235,2.0\n161,236,1.5\n161,237,2.0\n161,238,2.5\n161,239,3.0\n161,240,3.5\n161,241,4.0\n161,242,4.5\n161,243,5.0\n161,244,5.5\n161,245,6.0\n161,246,6.5\n161,247,7.0\n161,248,7.5\n161,249,8.0\n161,250,7.5\n161,251,7.0\n161,252,6.5\n161,253,6.0\n161,254,5.5\n161,255,5.0\n161,256,4.5\n161,257,4.0\n161,258,3.5\n161,259,3.0\n161,260,2.5\n161,261,2.0\n161,262,2.5\n161,263,3.0\n161,264,3.5\n161,265,4.0\n161,266,4.5\n161,267,5.0\n161,268,5.5\n161,269,6.0\n161,270,6.5\n161,271,7.0\n161,272,7.5\n161,273,8.0\n161,274,8.5\n161,275,8.0\n161,276,7.5\n161,277,7.0\n161,278,6.5\n161,279,6.0\n161,280,5.5\n161,281,5.0\n161,282,4.5\n161,283,4.0\n161,284,3.5\n161,285,3.0\n161,286,2.5\n161,287,3.0\n161,288,3.5\n161,289,4.0\n161,290,4.5\n161,291,5.0\n161,292,5.5\n161,293,6.0\n161,294,6.5\n161,295,7.0\n161,296,7.5\n161,297,8.0\n161,298,8.5\n161,299,9.0\n161,300,8.5\n161,301,8.0\n161,302,7.5\n161,303,7.0\n161,304,6.5\n161,305,6.0\n161,306,5.5\n161,307,5.0\n161,308,4.5\n161,309,4.0\n161,310,3.5\n161,311,3.0\n161,312,3.5\n161,313,4.0\n161,314,4.5\n161,315,5.0\n161,316,5.5\n161,317,6.0\n161,318,6.5\n161,319,7.0\n161,320,7.5\n161,321,8.0\n161,322,8.5\n161,323,9.0\n161,324,9.5\n161,325,9.0\n161,326,8.5\n161,327,8.0\n161,328,7.5\n161,329,7.0\n161,330,6.5\n161,331,6.0\n161,332,5.5\n161,333,5.0\n161,334,4.5\n161,335,4.0\n161,336,3.5\n161,337,4.0\n161,338,4.5\n161,339,5.0\n161,340,5.5\n161,341,6.0\n161,342,6.5\n161,343,7.0\n161,344,7.5\n161,345,8.0\n161,346,8.5\n161,347,9.0\n161,348,9.5\n161,349,10.0\n161,350,9.5\n161,351,9.0\n161,352,8.5\n161,353,8.0\n161,354,7.5\n161,355,7.0\n161,356,6.5\n161,357,6.0\n161,358,5.5\n161,359,5.0\n161,360,4.5\n161,361,4.0\n161,362,4.5\n161,363,5.0\n161,364,5.5\n161,365,6.0\n161,366,6.5\n161,367,7.0\n161,368,7.5\n161,369,8.0\n161,370,8.5\n161,371,9.0\n161,372,9.5\n161,373,10.0\n161,374,10.5\n161,375,10.0\n161,376,9.5\n161,377,9.0\n161,378,8.5\n161,379,8.0\n161,380,7.5\n161,381,7.0\n161,382,6.5\n161,383,6.0\n161,384,5.5\n161,385,5.0\n161,386,4.5\n161,387,5.0\n161,388,5.5\n161,389,6.0\n161,390,6.5\n161,391,7.0\n161,392,7.5\n161,393,8.0\n161,394,8.5\n161,395,9.0\n161,396,9.5\n161,397,10.0\n161,398,10.5\n161,399,11.0\n161,400,10.5\n161,401,10.0\n161,402,9.5\n161,403,9.0\n161,404,8.5\n161,405,8.0\n161,406,7.5\n161,407,7.0\n161,408,6.5\n161,409,6.0\n161,410,5.5\n161,411,5.0\n161,412,5.5\n161,413,6.0\n161,414,6.5\n161,415,7.0\n161,416,7.5\n161,417,8.0\n161,418,8.5\n161,419,9.0\n161,420,9.5\n161,421,10.0\n161,422,10.5\n161,423,11.0\n161,424,11.5\n161,425,11.0\n161,426,10.5\n161,427,10.0\n161,428,9.5\n161,429,9.0\n161,430,8.5\n161,431,8.0\n161,432,7.5\n161,433,7.0\n161,434,6.5\n161,435,6.0\n161,436,5.5\n161,437,6.0\n161,438,6.5\n161,439,7.0\n161,440,7.5\n161,441,8.0\n161,442,8.5\n161,443,9.0\n161,444,9.5\n161,445,10.0\n161,446,10.5\n161,447,11.0\n161,448,11.5\n161,449,12.0\n161,450,11.5\n161,451,11.0\n161,452,10.5\n161,453,10.0\n161,454,9.5\n161,455,9.0\n161,456,8.5\n161,457,8.0\n161,458,7.5\n161,459,7.0\n161,460,6.5\n161,461,6.0\n161,462,6.5\n161,463,7.0\n161,464,7.5\n161,465,8.0\n161,466,8.5\n161,467,9.0\n161,468,9.5\n161,469,10.0\n161,470,10.5\n161,471,11.0\n161,472,11.5\n161,473,12.0\n161,474,12.5\n161,475,12.0\n161,476,11.5\n161,477,11.0\n161,478,10.5\n161,479,10.0\n161,480,9.5\n161,481,9.0\n161,482,8.5\n161,483,8.0\n161,484,7.5\n161,485,7.0\n161,486,6.5\n161,487,7.0\n161,488,7.5\n161,489,8.0\n161,490,8.5\n161,491,9.0\n161,492,9.5\n161,493,10.0\n161,494,10.5\n161,495,11.0\n161,496,11.5\n161,497,12.0\n161,498,12.5\n161,499,13.0\n161,500,12.5\n161,501,12.0\n161,502,11.5\n161,503,11.0\n161,504,10.5\n161,505,10.0\n161,506,9.5\n161,507,9.0\n161,508,8.5\n161,509,8.0\n161,510,7.5\n161,511,7.0\n161,512,7.5\n161,513,8.0\n161,514,8.5\n161,515,9.0\n161,516,9.5\n161,517,10.0\n161,518,10.5\n161,519,11.0\n161,520,11.5\n161,521,12.0\n161,522,12.5\n161,523,13.0\n161,524,13.5\n161,525,13.0\n161,526,12.5\n161,527,12.0\n161,528,11.5\n161,529,11.0\n161,530,10.5\n161,531,10.0\n161,532,9.5\n161,533,9.0\n161,534,8.5\n161,535,8.0\n161,536,7.5\n161,537,8.0\n161,538,8.5\n161,539,9.0\n161,540,9.5\n161,541,10.0\n161,542,10.5\n161,543,11.0\n161,544,11.5\n161,545,12.0\n161,546,12.5\n161,547,13.0\n161,548,13.5\n161,549,14.0\n161,550,13.5\n161,551,13.0\n161,552,12.5\n161,553,12.0\n161,554,11.5\n161,555,11.0\n161,556,10.5\n161,557,10.0\n161,558,9.5\n161,559,9.0\n161,560,8.5\n161,561,8.0\n161,562,8.5\n161,563,9.0\n161,564,9.5\n161,565,10.0\n161,566,10.5\n161,567,11.0\n161,568,11.5\n161,569,12.0\n161,570,12.5\n161,571,13.0\n161,572,13.5\n161,573,14.0\n161,574,14.5\n161,575,14.0\n161,576,13.5\n161,577,13.0\n161,578,12.5\n161,579,12.0\n161,580,11.5\n161,581,11.0\n161,582,10.5\n161,583,10.0\n161,584,9.5\n161,585,9.0\n161,586,8.5\n161,587,9.0\n161,588,9.5\n161,589,10.0\n161,590,10.5\n161,591,11.0\n161,592,11.5\n161,593,12.0\n161,594,12.5\n161,595,13.0\n161,596,13.5\n161,597,14.0\n161,598,14.5\n161,599,15.0\n161,600,14.5\n161,601,14.0\n161,602,13.5\n161,603,13.0\n161,604,12.5\n161,605,12.0\n161,606,11.5\n161,607,11.0\n161,608,10.5\n161,609,10.0\n161,610,9.5\n161,611,9.0\n161,612,9.5\n161,613,10.0\n161,614,10.5\n161,615,11.0\n161,616,11.5\n161,617,12.0\n161,618,12.5\n161,619,13.0\n161,620,13.5\n161,621,14.0\n161,622,14.5\n161,623,15.0\n161,624,15.5\n162,0,9.0\n162,1,8.5\n162,2,8.0\n162,3,7.5\n162,4,7.0\n162,5,6.5\n162,6,6.0\n162,7,5.5\n162,8,5.0\n162,9,4.5\n162,10,4.0\n162,11,3.5\n162,12,3.0\n162,13,3.5\n162,14,4.0\n162,15,4.5\n162,16,5.0\n162,17,5.5\n162,18,6.0\n162,19,6.5\n162,20,7.0\n162,21,7.5\n162,22,8.0\n162,23,8.5\n162,24,9.0\n162,25,8.5\n162,26,8.0\n162,27,7.5\n162,28,7.0\n162,29,6.5\n162,30,6.0\n162,31,5.5\n162,32,5.0\n162,33,4.5\n162,34,4.0\n162,35,3.5\n162,36,3.0\n162,37,2.5\n162,38,3.0\n162,39,3.5\n162,40,4.0\n162,41,4.5\n162,42,5.0\n162,43,5.5\n162,44,6.0\n162,45,6.5\n162,46,7.0\n162,47,7.5\n162,48,8.0\n162,49,8.5\n162,50,8.0\n162,51,7.5\n162,52,7.0\n162,53,6.5\n162,54,6.0\n162,55,5.5\n162,56,5.0\n162,57,4.5\n162,58,4.0\n162,59,3.5\n162,60,3.0\n162,61,2.5\n162,62,2.0\n162,63,2.5\n162,64,3.0\n162,65,3.5\n162,66,4.0\n162,67,4.5\n162,68,5.0\n162,69,5.5\n162,70,6.0\n162,71,6.5\n162,72,7.0\n162,73,7.5\n162,74,8.0\n162,75,7.5\n162,76,7.0\n162,77,6.5\n162,78,6.0\n162,79,5.5\n162,80,5.0\n162,81,4.5\n162,82,4.0\n162,83,3.5\n162,84,3.0\n162,85,2.5\n162,86,2.0\n162,87,1.5\n162,88,2.0\n162,89,2.5\n162,90,3.0\n162,91,3.5\n162,92,4.0\n162,93,4.5\n162,94,5.0\n162,95,5.5\n162,96,6.0\n162,97,6.5\n162,98,7.0\n162,99,7.5\n162,100,7.0\n162,101,6.5\n162,102,6.0\n162,103,5.5\n162,104,5.0\n162,105,4.5\n162,106,4.0\n162,107,3.5\n162,108,3.0\n162,109,2.5\n162,110,2.0\n162,111,1.5\n162,112,1.0\n162,113,1.5\n162,114,2.0\n162,115,2.5\n162,116,3.0\n162,117,3.5\n162,118,4.0\n162,119,4.5\n162,120,5.0\n162,121,5.5\n162,122,6.0\n162,123,6.5\n162,124,7.0\n162,125,6.5\n162,126,6.0\n162,127,5.5\n162,128,5.0\n162,129,4.5\n162,130,4.0\n162,131,3.5\n162,132,3.0\n162,133,2.5\n162,134,2.0\n162,135,1.5\n162,136,1.0\n162,137,0.5\n162,138,1.0\n162,139,1.5\n162,140,2.0\n162,141,2.5\n162,142,3.0\n162,143,3.5\n162,144,4.0\n162,145,4.5\n162,146,5.0\n162,147,5.5\n162,148,6.0\n162,149,6.5\n162,150,6.0\n162,151,5.5\n162,152,5.0\n162,153,4.5\n162,154,4.0\n162,155,3.5\n162,156,3.0\n162,157,2.5\n162,158,2.0\n162,159,1.5\n162,160,1.0\n162,161,0.5\n162,162,0\n162,163,0.5\n162,164,1.0\n162,165,1.5\n162,166,2.0\n162,167,2.5\n162,168,3.0\n162,169,3.5\n162,170,4.0\n162,171,4.5\n162,172,5.0\n162,173,5.5\n162,174,6.0\n162,175,6.5\n162,176,6.0\n162,177,5.5\n162,178,5.0\n162,179,4.5\n162,180,4.0\n162,181,3.5\n162,182,3.0\n162,183,2.5\n162,184,2.0\n162,185,1.5\n162,186,1.0\n162,187,0.5\n162,188,1.0\n162,189,1.5\n162,190,2.0\n162,191,2.5\n162,192,3.0\n162,193,3.5\n162,194,4.0\n162,195,4.5\n162,196,5.0\n162,197,5.5\n162,198,6.0\n162,199,6.5\n162,200,7.0\n162,201,6.5\n162,202,6.0\n162,203,5.5\n162,204,5.0\n162,205,4.5\n162,206,4.0\n162,207,3.5\n162,208,3.0\n162,209,2.5\n162,210,2.0\n162,211,1.5\n162,212,1.0\n162,213,1.5\n162,214,2.0\n162,215,2.5\n162,216,3.0\n162,217,3.5\n162,218,4.0\n162,219,4.5\n162,220,5.0\n162,221,5.5\n162,222,6.0\n162,223,6.5\n162,224,7.0\n162,225,7.5\n162,226,7.0\n162,227,6.5\n162,228,6.0\n162,229,5.5\n162,230,5.0\n162,231,4.5\n162,232,4.0\n162,233,3.5\n162,234,3.0\n162,235,2.5\n162,236,2.0\n162,237,1.5\n162,238,2.0\n162,239,2.5\n162,240,3.0\n162,241,3.5\n162,242,4.0\n162,243,4.5\n162,244,5.0\n162,245,5.5\n162,246,6.0\n162,247,6.5\n162,248,7.0\n162,249,7.5\n162,250,8.0\n162,251,7.5\n162,252,7.0\n162,253,6.5\n162,254,6.0\n162,255,5.5\n162,256,5.0\n162,257,4.5\n162,258,4.0\n162,259,3.5\n162,260,3.0\n162,261,2.5\n162,262,2.0\n162,263,2.5\n162,264,3.0\n162,265,3.5\n162,266,4.0\n162,267,4.5\n162,268,5.0\n162,269,5.5\n162,270,6.0\n162,271,6.5\n162,272,7.0\n162,273,7.5\n162,274,8.0\n162,275,8.5\n162,276,8.0\n162,277,7.5\n162,278,7.0\n162,279,6.5\n162,280,6.0\n162,281,5.5\n162,282,5.0\n162,283,4.5\n162,284,4.0\n162,285,3.5\n162,286,3.0\n162,287,2.5\n162,288,3.0\n162,289,3.5\n162,290,4.0\n162,291,4.5\n162,292,5.0\n162,293,5.5\n162,294,6.0\n162,295,6.5\n162,296,7.0\n162,297,7.5\n162,298,8.0\n162,299,8.5\n162,300,9.0\n162,301,8.5\n162,302,8.0\n162,303,7.5\n162,304,7.0\n162,305,6.5\n162,306,6.0\n162,307,5.5\n162,308,5.0\n162,309,4.5\n162,310,4.0\n162,311,3.5\n162,312,3.0\n162,313,3.5\n162,314,4.0\n162,315,4.5\n162,316,5.0\n162,317,5.5\n162,318,6.0\n162,319,6.5\n162,320,7.0\n162,321,7.5\n162,322,8.0\n162,323,8.5\n162,324,9.0\n162,325,9.5\n162,326,9.0\n162,327,8.5\n162,328,8.0\n162,329,7.5\n162,330,7.0\n162,331,6.5\n162,332,6.0\n162,333,5.5\n162,334,5.0\n162,335,4.5\n162,336,4.0\n162,337,3.5\n162,338,4.0\n162,339,4.5\n162,340,5.0\n162,341,5.5\n162,342,6.0\n162,343,6.5\n162,344,7.0\n162,345,7.5\n162,346,8.0\n162,347,8.5\n162,348,9.0\n162,349,9.5\n162,350,10.0\n162,351,9.5\n162,352,9.0\n162,353,8.5\n162,354,8.0\n162,355,7.5\n162,356,7.0\n162,357,6.5\n162,358,6.0\n162,359,5.5\n162,360,5.0\n162,361,4.5\n162,362,4.0\n162,363,4.5\n162,364,5.0\n162,365,5.5\n162,366,6.0\n162,367,6.5\n162,368,7.0\n162,369,7.5\n162,370,8.0\n162,371,8.5\n162,372,9.0\n162,373,9.5\n162,374,10.0\n162,375,10.5\n162,376,10.0\n162,377,9.5\n162,378,9.0\n162,379,8.5\n162,380,8.0\n162,381,7.5\n162,382,7.0\n162,383,6.5\n162,384,6.0\n162,385,5.5\n162,386,5.0\n162,387,4.5\n162,388,5.0\n162,389,5.5\n162,390,6.0\n162,391,6.5\n162,392,7.0\n162,393,7.5\n162,394,8.0\n162,395,8.5\n162,396,9.0\n162,397,9.5\n162,398,10.0\n162,399,10.5\n162,400,11.0\n162,401,10.5\n162,402,10.0\n162,403,9.5\n162,404,9.0\n162,405,8.5\n162,406,8.0\n162,407,7.5\n162,408,7.0\n162,409,6.5\n162,410,6.0\n162,411,5.5\n162,412,5.0\n162,413,5.5\n162,414,6.0\n162,415,6.5\n162,416,7.0\n162,417,7.5\n162,418,8.0\n162,419,8.5\n162,420,9.0\n162,421,9.5\n162,422,10.0\n162,423,10.5\n162,424,11.0\n162,425,11.5\n162,426,11.0\n162,427,10.5\n162,428,10.0\n162,429,9.5\n162,430,9.0\n162,431,8.5\n162,432,8.0\n162,433,7.5\n162,434,7.0\n162,435,6.5\n162,436,6.0\n162,437,5.5\n162,438,6.0\n162,439,6.5\n162,440,7.0\n162,441,7.5\n162,442,8.0\n162,443,8.5\n162,444,9.0\n162,445,9.5\n162,446,10.0\n162,447,10.5\n162,448,11.0\n162,449,11.5\n162,450,12.0\n162,451,11.5\n162,452,11.0\n162,453,10.5\n162,454,10.0\n162,455,9.5\n162,456,9.0\n162,457,8.5\n162,458,8.0\n162,459,7.5\n162,460,7.0\n162,461,6.5\n162,462,6.0\n162,463,6.5\n162,464,7.0\n162,465,7.5\n162,466,8.0\n162,467,8.5\n162,468,9.0\n162,469,9.5\n162,470,10.0\n162,471,10.5\n162,472,11.0\n162,473,11.5\n162,474,12.0\n162,475,12.5\n162,476,12.0\n162,477,11.5\n162,478,11.0\n162,479,10.5\n162,480,10.0\n162,481,9.5\n162,482,9.0\n162,483,8.5\n162,484,8.0\n162,485,7.5\n162,486,7.0\n162,487,6.5\n162,488,7.0\n162,489,7.5\n162,490,8.0\n162,491,8.5\n162,492,9.0\n162,493,9.5\n162,494,10.0\n162,495,10.5\n162,496,11.0\n162,497,11.5\n162,498,12.0\n162,499,12.5\n162,500,13.0\n162,501,12.5\n162,502,12.0\n162,503,11.5\n162,504,11.0\n162,505,10.5\n162,506,10.0\n162,507,9.5\n162,508,9.0\n162,509,8.5\n162,510,8.0\n162,511,7.5\n162,512,7.0\n162,513,7.5\n162,514,8.0\n162,515,8.5\n162,516,9.0\n162,517,9.5\n162,518,10.0\n162,519,10.5\n162,520,11.0\n162,521,11.5\n162,522,12.0\n162,523,12.5\n162,524,13.0\n162,525,13.5\n162,526,13.0\n162,527,12.5\n162,528,12.0\n162,529,11.5\n162,530,11.0\n162,531,10.5\n162,532,10.0\n162,533,9.5\n162,534,9.0\n162,535,8.5\n162,536,8.0\n162,537,7.5\n162,538,8.0\n162,539,8.5\n162,540,9.0\n162,541,9.5\n162,542,10.0\n162,543,10.5\n162,544,11.0\n162,545,11.5\n162,546,12.0\n162,547,12.5\n162,548,13.0\n162,549,13.5\n162,550,14.0\n162,551,13.5\n162,552,13.0\n162,553,12.5\n162,554,12.0\n162,555,11.5\n162,556,11.0\n162,557,10.5\n162,558,10.0\n162,559,9.5\n162,560,9.0\n162,561,8.5\n162,562,8.0\n162,563,8.5\n162,564,9.0\n162,565,9.5\n162,566,10.0\n162,567,10.5\n162,568,11.0\n162,569,11.5\n162,570,12.0\n162,571,12.5\n162,572,13.0\n162,573,13.5\n162,574,14.0\n162,575,14.5\n162,576,14.0\n162,577,13.5\n162,578,13.0\n162,579,12.5\n162,580,12.0\n162,581,11.5\n162,582,11.0\n162,583,10.5\n162,584,10.0\n162,585,9.5\n162,586,9.0\n162,587,8.5\n162,588,9.0\n162,589,9.5\n162,590,10.0\n162,591,10.5\n162,592,11.0\n162,593,11.5\n162,594,12.0\n162,595,12.5\n162,596,13.0\n162,597,13.5\n162,598,14.0\n162,599,14.5\n162,600,15.0\n162,601,14.5\n162,602,14.0\n162,603,13.5\n162,604,13.0\n162,605,12.5\n162,606,12.0\n162,607,11.5\n162,608,11.0\n162,609,10.5\n162,610,10.0\n162,611,9.5\n162,612,9.0\n162,613,9.5\n162,614,10.0\n162,615,10.5\n162,616,11.0\n162,617,11.5\n162,618,12.0\n162,619,12.5\n162,620,13.0\n162,621,13.5\n162,622,14.0\n162,623,14.5\n162,624,15.0\n163,0,9.5\n163,1,9.0\n163,2,8.5\n163,3,8.0\n163,4,7.5\n163,5,7.0\n163,6,6.5\n163,7,6.0\n163,8,5.5\n163,9,5.0\n163,10,4.5\n163,11,4.0\n163,12,3.5\n163,13,3.0\n163,14,3.5\n163,15,4.0\n163,16,4.5\n163,17,5.0\n163,18,5.5\n163,19,6.0\n163,20,6.5\n163,21,7.0\n163,22,7.5\n163,23,8.0\n163,24,8.5\n163,25,9.0\n163,26,8.5\n163,27,8.0\n163,28,7.5\n163,29,7.0\n163,30,6.5\n163,31,6.0\n163,32,5.5\n163,33,5.0\n163,34,4.5\n163,35,4.0\n163,36,3.5\n163,37,3.0\n163,38,2.5\n163,39,3.0\n163,40,3.5\n163,41,4.0\n163,42,4.5\n163,43,5.0\n163,44,5.5\n163,45,6.0\n163,46,6.5\n163,47,7.0\n163,48,7.5\n163,49,8.0\n163,50,8.5\n163,51,8.0\n163,52,7.5\n163,53,7.0\n163,54,6.5\n163,55,6.0\n163,56,5.5\n163,57,5.0\n163,58,4.5\n163,59,4.0\n163,60,3.5\n163,61,3.0\n163,62,2.5\n163,63,2.0\n163,64,2.5\n163,65,3.0\n163,66,3.5\n163,67,4.0\n163,68,4.5\n163,69,5.0\n163,70,5.5\n163,71,6.0\n163,72,6.5\n163,73,7.0\n163,74,7.5\n163,75,8.0\n163,76,7.5\n163,77,7.0\n163,78,6.5\n163,79,6.0\n163,80,5.5\n163,81,5.0\n163,82,4.5\n163,83,4.0\n163,84,3.5\n163,85,3.0\n163,86,2.5\n163,87,2.0\n163,88,1.5\n163,89,2.0\n163,90,2.5\n163,91,3.0\n163,92,3.5\n163,93,4.0\n163,94,4.5\n163,95,5.0\n163,96,5.5\n163,97,6.0\n163,98,6.5\n163,99,7.0\n163,100,7.5\n163,101,7.0\n163,102,6.5\n163,103,6.0\n163,104,5.5\n163,105,5.0\n163,106,4.5\n163,107,4.0\n163,108,3.5\n163,109,3.0\n163,110,2.5\n163,111,2.0\n163,112,1.5\n163,113,1.0\n163,114,1.5\n163,115,2.0\n163,116,2.5\n163,117,3.0\n163,118,3.5\n163,119,4.0\n163,120,4.5\n163,121,5.0\n163,122,5.5\n163,123,6.0\n163,124,6.5\n163,125,7.0\n163,126,6.5\n163,127,6.0\n163,128,5.5\n163,129,5.0\n163,130,4.5\n163,131,4.0\n163,132,3.5\n163,133,3.0\n163,134,2.5\n163,135,2.0\n163,136,1.5\n163,137,1.0\n163,138,0.5\n163,139,1.0\n163,140,1.5\n163,141,2.0\n163,142,2.5\n163,143,3.0\n163,144,3.5\n163,145,4.0\n163,146,4.5\n163,147,5.0\n163,148,5.5\n163,149,6.0\n163,150,6.5\n163,151,6.0\n163,152,5.5\n163,153,5.0\n163,154,4.5\n163,155,4.0\n163,156,3.5\n163,157,3.0\n163,158,2.5\n163,159,2.0\n163,160,1.5\n163,161,1.0\n163,162,0.5\n163,163,0\n163,164,0.5\n163,165,1.0\n163,166,1.5\n163,167,2.0\n163,168,2.5\n163,169,3.0\n163,170,3.5\n163,171,4.0\n163,172,4.5\n163,173,5.0\n163,174,5.5\n163,175,7.0\n163,176,6.5\n163,177,6.0\n163,178,5.5\n163,179,5.0\n163,180,4.5\n163,181,4.0\n163,182,3.5\n163,183,3.0\n163,184,2.5\n163,185,2.0\n163,186,1.5\n163,187,1.0\n163,188,0.5\n163,189,1.0\n163,190,1.5\n163,191,2.0\n163,192,2.5\n163,193,3.0\n163,194,3.5\n163,195,4.0\n163,196,4.5\n163,197,5.0\n163,198,5.5\n163,199,6.0\n163,200,7.5\n163,201,7.0\n163,202,6.5\n163,203,6.0\n163,204,5.5\n163,205,5.0\n163,206,4.5\n163,207,4.0\n163,208,3.5\n163,209,3.0\n163,210,2.5\n163,211,2.0\n163,212,1.5\n163,213,1.0\n163,214,1.5\n163,215,2.0\n163,216,2.5\n163,217,3.0\n163,218,3.5\n163,219,4.0\n163,220,4.5\n163,221,5.0\n163,222,5.5\n163,223,6.0\n163,224,6.5\n163,225,8.0\n163,226,7.5\n163,227,7.0\n163,228,6.5\n163,229,6.0\n163,230,5.5\n163,231,5.0\n163,232,4.5\n163,233,4.0\n163,234,3.5\n163,235,3.0\n163,236,2.5\n163,237,2.0\n163,238,1.5\n163,239,2.0\n163,240,2.5\n163,241,3.0\n163,242,3.5\n163,243,4.0\n163,244,4.5\n163,245,5.0\n163,246,5.5\n163,247,6.0\n163,248,6.5\n163,249,7.0\n163,250,8.5\n163,251,8.0\n163,252,7.5\n163,253,7.0\n163,254,6.5\n163,255,6.0\n163,256,5.5\n163,257,5.0\n163,258,4.5\n163,259,4.0\n163,260,3.5\n163,261,3.0\n163,262,2.5\n163,263,2.0\n163,264,2.5\n163,265,3.0\n163,266,3.5\n163,267,4.0\n163,268,4.5\n163,269,5.0\n163,270,5.5\n163,271,6.0\n163,272,6.5\n163,273,7.0\n163,274,7.5\n163,275,9.0\n163,276,8.5\n163,277,8.0\n163,278,7.5\n163,279,7.0\n163,280,6.5\n163,281,6.0\n163,282,5.5\n163,283,5.0\n163,284,4.5\n163,285,4.0\n163,286,3.5\n163,287,3.0\n163,288,2.5\n163,289,3.0\n163,290,3.5\n163,291,4.0\n163,292,4.5\n163,293,5.0\n163,294,5.5\n163,295,6.0\n163,296,6.5\n163,297,7.0\n163,298,7.5\n163,299,8.0\n163,300,9.5\n163,301,9.0\n163,302,8.5\n163,303,8.0\n163,304,7.5\n163,305,7.0\n163,306,6.5\n163,307,6.0\n163,308,5.5\n163,309,5.0\n163,310,4.5\n163,311,4.0\n163,312,3.5\n163,313,3.0\n163,314,3.5\n163,315,4.0\n163,316,4.5\n163,317,5.0\n163,318,5.5\n163,319,6.0\n163,320,6.5\n163,321,7.0\n163,322,7.5\n163,323,8.0\n163,324,8.5\n163,325,10.0\n163,326,9.5\n163,327,9.0\n163,328,8.5\n163,329,8.0\n163,330,7.5\n163,331,7.0\n163,332,6.5\n163,333,6.0\n163,334,5.5\n163,335,5.0\n163,336,4.5\n163,337,4.0\n163,338,3.5\n163,339,4.0\n163,340,4.5\n163,341,5.0\n163,342,5.5\n163,343,6.0\n163,344,6.5\n163,345,7.0\n163,346,7.5\n163,347,8.0\n163,348,8.5\n163,349,9.0\n163,350,10.5\n163,351,10.0\n163,352,9.5\n163,353,9.0\n163,354,8.5\n163,355,8.0\n163,356,7.5\n163,357,7.0\n163,358,6.5\n163,359,6.0\n163,360,5.5\n163,361,5.0\n163,362,4.5\n163,363,4.0\n163,364,4.5\n163,365,5.0\n163,366,5.5\n163,367,6.0\n163,368,6.5\n163,369,7.0\n163,370,7.5\n163,371,8.0\n163,372,8.5\n163,373,9.0\n163,374,9.5\n163,375,11.0\n163,376,10.5\n163,377,10.0\n163,378,9.5\n163,379,9.0\n163,380,8.5\n163,381,8.0\n163,382,7.5\n163,383,7.0\n163,384,6.5\n163,385,6.0\n163,386,5.5\n163,387,5.0\n163,388,4.5\n163,389,5.0\n163,390,5.5\n163,391,6.0\n163,392,6.5\n163,393,7.0\n163,394,7.5\n163,395,8.0\n163,396,8.5\n163,397,9.0\n163,398,9.5\n163,399,10.0\n163,400,11.5\n163,401,11.0\n163,402,10.5\n163,403,10.0\n163,404,9.5\n163,405,9.0\n163,406,8.5\n163,407,8.0\n163,408,7.5\n163,409,7.0\n163,410,6.5\n163,411,6.0\n163,412,5.5\n163,413,5.0\n163,414,5.5\n163,415,6.0\n163,416,6.5\n163,417,7.0\n163,418,7.5\n163,419,8.0\n163,420,8.5\n163,421,9.0\n163,422,9.5\n163,423,10.0\n163,424,10.5\n163,425,12.0\n163,426,11.5\n163,427,11.0\n163,428,10.5\n163,429,10.0\n163,430,9.5\n163,431,9.0\n163,432,8.5\n163,433,8.0\n163,434,7.5\n163,435,7.0\n163,436,6.5\n163,437,6.0\n163,438,5.5\n163,439,6.0\n163,440,6.5\n163,441,7.0\n163,442,7.5\n163,443,8.0\n163,444,8.5\n163,445,9.0\n163,446,9.5\n163,447,10.0\n163,448,10.5\n163,449,11.0\n163,450,12.5\n163,451,12.0\n163,452,11.5\n163,453,11.0\n163,454,10.5\n163,455,10.0\n163,456,9.5\n163,457,9.0\n163,458,8.5\n163,459,8.0\n163,460,7.5\n163,461,7.0\n163,462,6.5\n163,463,6.0\n163,464,6.5\n163,465,7.0\n163,466,7.5\n163,467,8.0\n163,468,8.5\n163,469,9.0\n163,470,9.5\n163,471,10.0\n163,472,10.5\n163,473,11.0\n163,474,11.5\n163,475,13.0\n163,476,12.5\n163,477,12.0\n163,478,11.5\n163,479,11.0\n163,480,10.5\n163,481,10.0\n163,482,9.5\n163,483,9.0\n163,484,8.5\n163,485,8.0\n163,486,7.5\n163,487,7.0\n163,488,6.5\n163,489,7.0\n163,490,7.5\n163,491,8.0\n163,492,8.5\n163,493,9.0\n163,494,9.5\n163,495,10.0\n163,496,10.5\n163,497,11.0\n163,498,11.5\n163,499,12.0\n163,500,13.5\n163,501,13.0\n163,502,12.5\n163,503,12.0\n163,504,11.5\n163,505,11.0\n163,506,10.5\n163,507,10.0\n163,508,9.5\n163,509,9.0\n163,510,8.5\n163,511,8.0\n163,512,7.5\n163,513,7.0\n163,514,7.5\n163,515,8.0\n163,516,8.5\n163,517,9.0\n163,518,9.5\n163,519,10.0\n163,520,10.5\n163,521,11.0\n163,522,11.5\n163,523,12.0\n163,524,12.5\n163,525,14.0\n163,526,13.5\n163,527,13.0\n163,528,12.5\n163,529,12.0\n163,530,11.5\n163,531,11.0\n163,532,10.5\n163,533,10.0\n163,534,9.5\n163,535,9.0\n163,536,8.5\n163,537,8.0\n163,538,7.5\n163,539,8.0\n163,540,8.5\n163,541,9.0\n163,542,9.5\n163,543,10.0\n163,544,10.5\n163,545,11.0\n163,546,11.5\n163,547,12.0\n163,548,12.5\n163,549,13.0\n163,550,14.5\n163,551,14.0\n163,552,13.5\n163,553,13.0\n163,554,12.5\n163,555,12.0\n163,556,11.5\n163,557,11.0\n163,558,10.5\n163,559,10.0\n163,560,9.5\n163,561,9.0\n163,562,8.5\n163,563,8.0\n163,564,8.5\n163,565,9.0\n163,566,9.5\n163,567,10.0\n163,568,10.5\n163,569,11.0\n163,570,11.5\n163,571,12.0\n163,572,12.5\n163,573,13.0\n163,574,13.5\n163,575,15.0\n163,576,14.5\n163,577,14.0\n163,578,13.5\n163,579,13.0\n163,580,12.5\n163,581,12.0\n163,582,11.5\n163,583,11.0\n163,584,10.5\n163,585,10.0\n163,586,9.5\n163,587,9.0\n163,588,8.5\n163,589,9.0\n163,590,9.5\n163,591,10.0\n163,592,10.5\n163,593,11.0\n163,594,11.5\n163,595,12.0\n163,596,12.5\n163,597,13.0\n163,598,13.5\n163,599,14.0\n163,600,15.5\n163,601,15.0\n163,602,14.5\n163,603,14.0\n163,604,13.5\n163,605,13.0\n163,606,12.5\n163,607,12.0\n163,608,11.5\n163,609,11.0\n163,610,10.5\n163,611,10.0\n163,612,9.5\n163,613,9.0\n163,614,9.5\n163,615,10.0\n163,616,10.5\n163,617,11.0\n163,618,11.5\n163,619,12.0\n163,620,12.5\n163,621,13.0\n163,622,13.5\n163,623,14.0\n163,624,14.5\n164,0,10.0\n164,1,9.5\n164,2,9.0\n164,3,8.5\n164,4,8.0\n164,5,7.5\n164,6,7.0\n164,7,6.5\n164,8,6.0\n164,9,5.5\n164,10,5.0\n164,11,4.5\n164,12,4.0\n164,13,3.5\n164,14,3.0\n164,15,3.5\n164,16,4.0\n164,17,4.5\n164,18,5.0\n164,19,5.5\n164,20,6.0\n164,21,6.5\n164,22,7.0\n164,23,7.5\n164,24,8.0\n164,25,9.5\n164,26,9.0\n164,27,8.5\n164,28,8.0\n164,29,7.5\n164,30,7.0\n164,31,6.5\n164,32,6.0\n164,33,5.5\n164,34,5.0\n164,35,4.5\n164,36,4.0\n164,37,3.5\n164,38,3.0\n164,39,2.5\n164,40,3.0\n164,41,3.5\n164,42,4.0\n164,43,4.5\n164,44,5.0\n164,45,5.5\n164,46,6.0\n164,47,6.5\n164,48,7.0\n164,49,7.5\n164,50,9.0\n164,51,8.5\n164,52,8.0\n164,53,7.5\n164,54,7.0\n164,55,6.5\n164,56,6.0\n164,57,5.5\n164,58,5.0\n164,59,4.5\n164,60,4.0\n164,61,3.5\n164,62,3.0\n164,63,2.5\n164,64,2.0\n164,65,2.5\n164,66,3.0\n164,67,3.5\n164,68,4.0\n164,69,4.5\n164,70,5.0\n164,71,5.5\n164,72,6.0\n164,73,6.5\n164,74,7.0\n164,75,8.5\n164,76,8.0\n164,77,7.5\n164,78,7.0\n164,79,6.5\n164,80,6.0\n164,81,5.5\n164,82,5.0\n164,83,4.5\n164,84,4.0\n164,85,3.5\n164,86,3.0\n164,87,2.5\n164,88,2.0\n164,89,1.5\n164,90,2.0\n164,91,2.5\n164,92,3.0\n164,93,3.5\n164,94,4.0\n164,95,4.5\n164,96,5.0\n164,97,5.5\n164,98,6.0\n164,99,6.5\n164,100,8.0\n164,101,7.5\n164,102,7.0\n164,103,6.5\n164,104,6.0\n164,105,5.5\n164,106,5.0\n164,107,4.5\n164,108,4.0\n164,109,3.5\n164,110,3.0\n164,111,2.5\n164,112,2.0\n164,113,1.5\n164,114,1.0\n164,115,1.5\n164,116,2.0\n164,117,2.5\n164,118,3.0\n164,119,3.5\n164,120,4.0\n164,121,4.5\n164,122,5.0\n164,123,5.5\n164,124,6.0\n164,125,7.5\n164,126,7.0\n164,127,6.5\n164,128,6.0\n164,129,5.5\n164,130,5.0\n164,131,4.5\n164,132,4.0\n164,133,3.5\n164,134,3.0\n164,135,2.5\n164,136,2.0\n164,137,1.5\n164,138,1.0\n164,139,0.5\n164,140,1.0\n164,141,1.5\n164,142,2.0\n164,143,2.5\n164,144,3.0\n164,145,3.5\n164,146,4.0\n164,147,4.5\n164,148,5.0\n164,149,5.5\n164,150,7.0\n164,151,6.5\n164,152,6.0\n164,153,5.5\n164,154,5.0\n164,155,4.5\n164,156,4.0\n164,157,3.5\n164,158,3.0\n164,159,2.5\n164,160,2.0\n164,161,1.5\n164,162,1.0\n164,163,0.5\n164,164,0\n164,165,0.5\n164,166,1.0\n164,167,1.5\n164,168,2.0\n164,169,2.5\n164,170,3.0\n164,171,3.5\n164,172,4.0\n164,173,4.5\n164,174,5.0\n164,175,7.5\n164,176,7.0\n164,177,6.5\n164,178,6.0\n164,179,5.5\n164,180,5.0\n164,181,4.5\n164,182,4.0\n164,183,3.5\n164,184,3.0\n164,185,2.5\n164,186,2.0\n164,187,1.5\n164,188,1.0\n164,189,0.5\n164,190,1.0\n164,191,1.5\n164,192,2.0\n164,193,2.5\n164,194,3.0\n164,195,3.5\n164,196,4.0\n164,197,4.5\n164,198,5.0\n164,199,5.5\n164,200,8.0\n164,201,7.5\n164,202,7.0\n164,203,6.5\n164,204,6.0\n164,205,5.5\n164,206,5.0\n164,207,4.5\n164,208,4.0\n164,209,3.5\n164,210,3.0\n164,211,2.5\n164,212,2.0\n164,213,1.5\n164,214,1.0\n164,215,1.5\n164,216,2.0\n164,217,2.5\n164,218,3.0\n164,219,3.5\n164,220,4.0\n164,221,4.5\n164,222,5.0\n164,223,5.5\n164,224,6.0\n164,225,8.5\n164,226,8.0\n164,227,7.5\n164,228,7.0\n164,229,6.5\n164,230,6.0\n164,231,5.5\n164,232,5.0\n164,233,4.5\n164,234,4.0\n164,235,3.5\n164,236,3.0\n164,237,2.5\n164,238,2.0\n164,239,1.5\n164,240,2.0\n164,241,2.5\n164,242,3.0\n164,243,3.5\n164,244,4.0\n164,245,4.5\n164,246,5.0\n164,247,5.5\n164,248,6.0\n164,249,6.5\n164,250,9.0\n164,251,8.5\n164,252,8.0\n164,253,7.5\n164,254,7.0\n164,255,6.5\n164,256,6.0\n164,257,5.5\n164,258,5.0\n164,259,4.5\n164,260,4.0\n164,261,3.5\n164,262,3.0\n164,263,2.5\n164,264,2.0\n164,265,2.5\n164,266,3.0\n164,267,3.5\n164,268,4.0\n164,269,4.5\n164,270,5.0\n164,271,5.5\n164,272,6.0\n164,273,6.5\n164,274,7.0\n164,275,9.5\n164,276,9.0\n164,277,8.5\n164,278,8.0\n164,279,7.5\n164,280,7.0\n164,281,6.5\n164,282,6.0\n164,283,5.5\n164,284,5.0\n164,285,4.5\n164,286,4.0\n164,287,3.5\n164,288,3.0\n164,289,2.5\n164,290,3.0\n164,291,3.5\n164,292,4.0\n164,293,4.5\n164,294,5.0\n164,295,5.5\n164,296,6.0\n164,297,6.5\n164,298,7.0\n164,299,7.5\n164,300,10.0\n164,301,9.5\n164,302,9.0\n164,303,8.5\n164,304,8.0\n164,305,7.5\n164,306,7.0\n164,307,6.5\n164,308,6.0\n164,309,5.5\n164,310,5.0\n164,311,4.5\n164,312,4.0\n164,313,3.5\n164,314,3.0\n164,315,3.5\n164,316,4.0\n164,317,4.5\n164,318,5.0\n164,319,5.5\n164,320,6.0\n164,321,6.5\n164,322,7.0\n164,323,7.5\n164,324,8.0\n164,325,10.5\n164,326,10.0\n164,327,9.5\n164,328,9.0\n164,329,8.5\n164,330,8.0\n164,331,7.5\n164,332,7.0\n164,333,6.5\n164,334,6.0\n164,335,5.5\n164,336,5.0\n164,337,4.5\n164,338,4.0\n164,339,3.5\n164,340,4.0\n164,341,4.5\n164,342,5.0\n164,343,5.5\n164,344,6.0\n164,345,6.5\n164,346,7.0\n164,347,7.5\n164,348,8.0\n164,349,8.5\n164,350,11.0\n164,351,10.5\n164,352,10.0\n164,353,9.5\n164,354,9.0\n164,355,8.5\n164,356,8.0\n164,357,7.5\n164,358,7.0\n164,359,6.5\n164,360,6.0\n164,361,5.5\n164,362,5.0\n164,363,4.5\n164,364,4.0\n164,365,4.5\n164,366,5.0\n164,367,5.5\n164,368,6.0\n164,369,6.5\n164,370,7.0\n164,371,7.5\n164,372,8.0\n164,373,8.5\n164,374,9.0\n164,375,11.5\n164,376,11.0\n164,377,10.5\n164,378,10.0\n164,379,9.5\n164,380,9.0\n164,381,8.5\n164,382,8.0\n164,383,7.5\n164,384,7.0\n164,385,6.5\n164,386,6.0\n164,387,5.5\n164,388,5.0\n164,389,4.5\n164,390,5.0\n164,391,5.5\n164,392,6.0\n164,393,6.5\n164,394,7.0\n164,395,7.5\n164,396,8.0\n164,397,8.5\n164,398,9.0\n164,399,9.5\n164,400,12.0\n164,401,11.5\n164,402,11.0\n164,403,10.5\n164,404,10.0\n164,405,9.5\n164,406,9.0\n164,407,8.5\n164,408,8.0\n164,409,7.5\n164,410,7.0\n164,411,6.5\n164,412,6.0\n164,413,5.5\n164,414,5.0\n164,415,5.5\n164,416,6.0\n164,417,6.5\n164,418,7.0\n164,419,7.5\n164,420,8.0\n164,421,8.5\n164,422,9.0\n164,423,9.5\n164,424,10.0\n164,425,12.5\n164,426,12.0\n164,427,11.5\n164,428,11.0\n164,429,10.5\n164,430,10.0\n164,431,9.5\n164,432,9.0\n164,433,8.5\n164,434,8.0\n164,435,7.5\n164,436,7.0\n164,437,6.5\n164,438,6.0\n164,439,5.5\n164,440,6.0\n164,441,6.5\n164,442,7.0\n164,443,7.5\n164,444,8.0\n164,445,8.5\n164,446,9.0\n164,447,9.5\n164,448,10.0\n164,449,10.5\n164,450,13.0\n164,451,12.5\n164,452,12.0\n164,453,11.5\n164,454,11.0\n164,455,10.5\n164,456,10.0\n164,457,9.5\n164,458,9.0\n164,459,8.5\n164,460,8.0\n164,461,7.5\n164,462,7.0\n164,463,6.5\n164,464,6.0\n164,465,6.5\n164,466,7.0\n164,467,7.5\n164,468,8.0\n164,469,8.5\n164,470,9.0\n164,471,9.5\n164,472,10.0\n164,473,10.5\n164,474,11.0\n164,475,13.5\n164,476,13.0\n164,477,12.5\n164,478,12.0\n164,479,11.5\n164,480,11.0\n164,481,10.5\n164,482,10.0\n164,483,9.5\n164,484,9.0\n164,485,8.5\n164,486,8.0\n164,487,7.5\n164,488,7.0\n164,489,6.5\n164,490,7.0\n164,491,7.5\n164,492,8.0\n164,493,8.5\n164,494,9.0\n164,495,9.5\n164,496,10.0\n164,497,10.5\n164,498,11.0\n164,499,11.5\n164,500,14.0\n164,501,13.5\n164,502,13.0\n164,503,12.5\n164,504,12.0\n164,505,11.5\n164,506,11.0\n164,507,10.5\n164,508,10.0\n164,509,9.5\n164,510,9.0\n164,511,8.5\n164,512,8.0\n164,513,7.5\n164,514,7.0\n164,515,7.5\n164,516,8.0\n164,517,8.5\n164,518,9.0\n164,519,9.5\n164,520,10.0\n164,521,10.5\n164,522,11.0\n164,523,11.5\n164,524,12.0\n164,525,14.5\n164,526,14.0\n164,527,13.5\n164,528,13.0\n164,529,12.5\n164,530,12.0\n164,531,11.5\n164,532,11.0\n164,533,10.5\n164,534,10.0\n164,535,9.5\n164,536,9.0\n164,537,8.5\n164,538,8.0\n164,539,7.5\n164,540,8.0\n164,541,8.5\n164,542,9.0\n164,543,9.5\n164,544,10.0\n164,545,10.5\n164,546,11.0\n164,547,11.5\n164,548,12.0\n164,549,12.5\n164,550,15.0\n164,551,14.5\n164,552,14.0\n164,553,13.5\n164,554,13.0\n164,555,12.5\n164,556,12.0\n164,557,11.5\n164,558,11.0\n164,559,10.5\n164,560,10.0\n164,561,9.5\n164,562,9.0\n164,563,8.5\n164,564,8.0\n164,565,8.5\n164,566,9.0\n164,567,9.5\n164,568,10.0\n164,569,10.5\n164,570,11.0\n164,571,11.5\n164,572,12.0\n164,573,12.5\n164,574,13.0\n164,575,15.5\n164,576,15.0\n164,577,14.5\n164,578,14.0\n164,579,13.5\n164,580,13.0\n164,581,12.5\n164,582,12.0\n164,583,11.5\n164,584,11.0\n164,585,10.5\n164,586,10.0\n164,587,9.5\n164,588,9.0\n164,589,8.5\n164,590,9.0\n164,591,9.5\n164,592,10.0\n164,593,10.5\n164,594,11.0\n164,595,11.5\n164,596,12.0\n164,597,12.5\n164,598,13.0\n164,599,13.5\n164,600,16.0\n164,601,15.5\n164,602,15.0\n164,603,14.5\n164,604,14.0\n164,605,13.5\n164,606,13.0\n164,607,12.5\n164,608,12.0\n164,609,11.5\n164,610,11.0\n164,611,10.5\n164,612,10.0\n164,613,9.5\n164,614,9.0\n164,615,9.5\n164,616,10.0\n164,617,10.5\n164,618,11.0\n164,619,11.5\n164,620,12.0\n164,621,12.5\n164,622,13.0\n164,623,13.5\n164,624,14.0\n165,0,10.5\n165,1,10.0\n165,2,9.5\n165,3,9.0\n165,4,8.5\n165,5,8.0\n165,6,7.5\n165,7,7.0\n165,8,6.5\n165,9,6.0\n165,10,5.5\n165,11,5.0\n165,12,4.5\n165,13,4.0\n165,14,3.5\n165,15,3.0\n165,16,3.5\n165,17,4.0\n165,18,4.5\n165,19,5.0\n165,20,5.5\n165,21,6.0\n165,22,6.5\n165,23,7.0\n165,24,7.5\n165,25,10.0\n165,26,9.5\n165,27,9.0\n165,28,8.5\n165,29,8.0\n165,30,7.5\n165,31,7.0\n165,32,6.5\n165,33,6.0\n165,34,5.5\n165,35,5.0\n165,36,4.5\n165,37,4.0\n165,38,3.5\n165,39,3.0\n165,40,2.5\n165,41,3.0\n165,42,3.5\n165,43,4.0\n165,44,4.5\n165,45,5.0\n165,46,5.5\n165,47,6.0\n165,48,6.5\n165,49,7.0\n165,50,9.5\n165,51,9.0\n165,52,8.5\n165,53,8.0\n165,54,7.5\n165,55,7.0\n165,56,6.5\n165,57,6.0\n165,58,5.5\n165,59,5.0\n165,60,4.5\n165,61,4.0\n165,62,3.5\n165,63,3.0\n165,64,2.5\n165,65,2.0\n165,66,2.5\n165,67,3.0\n165,68,3.5\n165,69,4.0\n165,70,4.5\n165,71,5.0\n165,72,5.5\n165,73,6.0\n165,74,6.5\n165,75,9.0\n165,76,8.5\n165,77,8.0\n165,78,7.5\n165,79,7.0\n165,80,6.5\n165,81,6.0\n165,82,5.5\n165,83,5.0\n165,84,4.5\n165,85,4.0\n165,86,3.5\n165,87,3.0\n165,88,2.5\n165,89,2.0\n165,90,1.5\n165,91,2.0\n165,92,2.5\n165,93,3.0\n165,94,3.5\n165,95,4.0\n165,96,4.5\n165,97,5.0\n165,98,5.5\n165,99,6.0\n165,100,8.5\n165,101,8.0\n165,102,7.5\n165,103,7.0\n165,104,6.5\n165,105,6.0\n165,106,5.5\n165,107,5.0\n165,108,4.5\n165,109,4.0\n165,110,3.5\n165,111,3.0\n165,112,2.5\n165,113,2.0\n165,114,1.5\n165,115,1.0\n165,116,1.5\n165,117,2.0\n165,118,2.5\n165,119,3.0\n165,120,3.5\n165,121,4.0\n165,122,4.5\n165,123,5.0\n165,124,5.5\n165,125,8.0\n165,126,7.5\n165,127,7.0\n165,128,6.5\n165,129,6.0\n165,130,5.5\n165,131,5.0\n165,132,4.5\n165,133,4.0\n165,134,3.5\n165,135,3.0\n165,136,2.5\n165,137,2.0\n165,138,1.5\n165,139,1.0\n165,140,0.5\n165,141,1.0\n165,142,1.5\n165,143,2.0\n165,144,2.5\n165,145,3.0\n165,146,3.5\n165,147,4.0\n165,148,4.5\n165,149,5.0\n165,150,7.5\n165,151,7.0\n165,152,6.5\n165,153,6.0\n165,154,5.5\n165,155,5.0\n165,156,4.5\n165,157,4.0\n165,158,3.5\n165,159,3.0\n165,160,2.5\n165,161,2.0\n165,162,1.5\n165,163,1.0\n165,164,0.5\n165,165,0\n165,166,0.5\n165,167,1.0\n165,168,1.5\n165,169,2.0\n165,170,2.5\n165,171,3.0\n165,172,3.5\n165,173,4.0\n165,174,4.5\n165,175,8.0\n165,176,7.5\n165,177,7.0\n165,178,6.5\n165,179,6.0\n165,180,5.5\n165,181,5.0\n165,182,4.5\n165,183,4.0\n165,184,3.5\n165,185,3.0\n165,186,2.5\n165,187,2.0\n165,188,1.5\n165,189,1.0\n165,190,0.5\n165,191,1.0\n165,192,1.5\n165,193,2.0\n165,194,2.5\n165,195,3.0\n165,196,3.5\n165,197,4.0\n165,198,4.5\n165,199,5.0\n165,200,8.5\n165,201,8.0\n165,202,7.5\n165,203,7.0\n165,204,6.5\n165,205,6.0\n165,206,5.5\n165,207,5.0\n165,208,4.5\n165,209,4.0\n165,210,3.5\n165,211,3.0\n165,212,2.5\n165,213,2.0\n165,214,1.5\n165,215,1.0\n165,216,1.5\n165,217,2.0\n165,218,2.5\n165,219,3.0\n165,220,3.5\n165,221,4.0\n165,222,4.5\n165,223,5.0\n165,224,5.5\n165,225,9.0\n165,226,8.5\n165,227,8.0\n165,228,7.5\n165,229,7.0\n165,230,6.5\n165,231,6.0\n165,232,5.5\n165,233,5.0\n165,234,4.5\n165,235,4.0\n165,236,3.5\n165,237,3.0\n165,238,2.5\n165,239,2.0\n165,240,1.5\n165,241,2.0\n165,242,2.5\n165,243,3.0\n165,244,3.5\n165,245,4.0\n165,246,4.5\n165,247,5.0\n165,248,5.5\n165,249,6.0\n165,250,9.5\n165,251,9.0\n165,252,8.5\n165,253,8.0\n165,254,7.5\n165,255,7.0\n165,256,6.5\n165,257,6.0\n165,258,5.5\n165,259,5.0\n165,260,4.5\n165,261,4.0\n165,262,3.5\n165,263,3.0\n165,264,2.5\n165,265,2.0\n165,266,2.5\n165,267,3.0\n165,268,3.5\n165,269,4.0\n165,270,4.5\n165,271,5.0\n165,272,5.5\n165,273,6.0\n165,274,6.5\n165,275,10.0\n165,276,9.5\n165,277,9.0\n165,278,8.5\n165,279,8.0\n165,280,7.5\n165,281,7.0\n165,282,6.5\n165,283,6.0\n165,284,5.5\n165,285,5.0\n165,286,4.5\n165,287,4.0\n165,288,3.5\n165,289,3.0\n165,290,2.5\n165,291,3.0\n165,292,3.5\n165,293,4.0\n165,294,4.5\n165,295,5.0\n165,296,5.5\n165,297,6.0\n165,298,6.5\n165,299,7.0\n165,300,10.5\n165,301,10.0\n165,302,9.5\n165,303,9.0\n165,304,8.5\n165,305,8.0\n165,306,7.5\n165,307,7.0\n165,308,6.5\n165,309,6.0\n165,310,5.5\n165,311,5.0\n165,312,4.5\n165,313,4.0\n165,314,3.5\n165,315,3.0\n165,316,3.5\n165,317,4.0\n165,318,4.5\n165,319,5.0\n165,320,5.5\n165,321,6.0\n165,322,6.5\n165,323,7.0\n165,324,7.5\n165,325,11.0\n165,326,10.5\n165,327,10.0\n165,328,9.5\n165,329,9.0\n165,330,8.5\n165,331,8.0\n165,332,7.5\n165,333,7.0\n165,334,6.5\n165,335,6.0\n165,336,5.5\n165,337,5.0\n165,338,4.5\n165,339,4.0\n165,340,3.5\n165,341,4.0\n165,342,4.5\n165,343,5.0\n165,344,5.5\n165,345,6.0\n165,346,6.5\n165,347,7.0\n165,348,7.5\n165,349,8.0\n165,350,11.5\n165,351,11.0\n165,352,10.5\n165,353,10.0\n165,354,9.5\n165,355,9.0\n165,356,8.5\n165,357,8.0\n165,358,7.5\n165,359,7.0\n165,360,6.5\n165,361,6.0\n165,362,5.5\n165,363,5.0\n165,364,4.5\n165,365,4.0\n165,366,4.5\n165,367,5.0\n165,368,5.5\n165,369,6.0\n165,370,6.5\n165,371,7.0\n165,372,7.5\n165,373,8.0\n165,374,8.5\n165,375,12.0\n165,376,11.5\n165,377,11.0\n165,378,10.5\n165,379,10.0\n165,380,9.5\n165,381,9.0\n165,382,8.5\n165,383,8.0\n165,384,7.5\n165,385,7.0\n165,386,6.5\n165,387,6.0\n165,388,5.5\n165,389,5.0\n165,390,4.5\n165,391,5.0\n165,392,5.5\n165,393,6.0\n165,394,6.5\n165,395,7.0\n165,396,7.5\n165,397,8.0\n165,398,8.5\n165,399,9.0\n165,400,12.5\n165,401,12.0\n165,402,11.5\n165,403,11.0\n165,404,10.5\n165,405,10.0\n165,406,9.5\n165,407,9.0\n165,408,8.5\n165,409,8.0\n165,410,7.5\n165,411,7.0\n165,412,6.5\n165,413,6.0\n165,414,5.5\n165,415,5.0\n165,416,5.5\n165,417,6.0\n165,418,6.5\n165,419,7.0\n165,420,7.5\n165,421,8.0\n165,422,8.5\n165,423,9.0\n165,424,9.5\n165,425,13.0\n165,426,12.5\n165,427,12.0\n165,428,11.5\n165,429,11.0\n165,430,10.5\n165,431,10.0\n165,432,9.5\n165,433,9.0\n165,434,8.5\n165,435,8.0\n165,436,7.5\n165,437,7.0\n165,438,6.5\n165,439,6.0\n165,440,5.5\n165,441,6.0\n165,442,6.5\n165,443,7.0\n165,444,7.5\n165,445,8.0\n165,446,8.5\n165,447,9.0\n165,448,9.5\n165,449,10.0\n165,450,13.5\n165,451,13.0\n165,452,12.5\n165,453,12.0\n165,454,11.5\n165,455,11.0\n165,456,10.5\n165,457,10.0\n165,458,9.5\n165,459,9.0\n165,460,8.5\n165,461,8.0\n165,462,7.5\n165,463,7.0\n165,464,6.5\n165,465,6.0\n165,466,6.5\n165,467,7.0\n165,468,7.5\n165,469,8.0\n165,470,8.5\n165,471,9.0\n165,472,9.5\n165,473,10.0\n165,474,10.5\n165,475,14.0\n165,476,13.5\n165,477,13.0\n165,478,12.5\n165,479,12.0\n165,480,11.5\n165,481,11.0\n165,482,10.5\n165,483,10.0\n165,484,9.5\n165,485,9.0\n165,486,8.5\n165,487,8.0\n165,488,7.5\n165,489,7.0\n165,490,6.5\n165,491,7.0\n165,492,7.5\n165,493,8.0\n165,494,8.5\n165,495,9.0\n165,496,9.5\n165,497,10.0\n165,498,10.5\n165,499,11.0\n165,500,14.5\n165,501,14.0\n165,502,13.5\n165,503,13.0\n165,504,12.5\n165,505,12.0\n165,506,11.5\n165,507,11.0\n165,508,10.5\n165,509,10.0\n165,510,9.5\n165,511,9.0\n165,512,8.5\n165,513,8.0\n165,514,7.5\n165,515,7.0\n165,516,7.5\n165,517,8.0\n165,518,8.5\n165,519,9.0\n165,520,9.5\n165,521,10.0\n165,522,10.5\n165,523,11.0\n165,524,11.5\n165,525,15.0\n165,526,14.5\n165,527,14.0\n165,528,13.5\n165,529,13.0\n165,530,12.5\n165,531,12.0\n165,532,11.5\n165,533,11.0\n165,534,10.5\n165,535,10.0\n165,536,9.5\n165,537,9.0\n165,538,8.5\n165,539,8.0\n165,540,7.5\n165,541,8.0\n165,542,8.5\n165,543,9.0\n165,544,9.5\n165,545,10.0\n165,546,10.5\n165,547,11.0\n165,548,11.5\n165,549,12.0\n165,550,15.5\n165,551,15.0\n165,552,14.5\n165,553,14.0\n165,554,13.5\n165,555,13.0\n165,556,12.5\n165,557,12.0\n165,558,11.5\n165,559,11.0\n165,560,10.5\n165,561,10.0\n165,562,9.5\n165,563,9.0\n165,564,8.5\n165,565,8.0\n165,566,8.5\n165,567,9.0\n165,568,9.5\n165,569,10.0\n165,570,10.5\n165,571,11.0\n165,572,11.5\n165,573,12.0\n165,574,12.5\n165,575,16.0\n165,576,15.5\n165,577,15.0\n165,578,14.5\n165,579,14.0\n165,580,13.5\n165,581,13.0\n165,582,12.5\n165,583,12.0\n165,584,11.5\n165,585,11.0\n165,586,10.5\n165,587,10.0\n165,588,9.5\n165,589,9.0\n165,590,8.5\n165,591,9.0\n165,592,9.5\n165,593,10.0\n165,594,10.5\n165,595,11.0\n165,596,11.5\n165,597,12.0\n165,598,12.5\n165,599,13.0\n165,600,16.5\n165,601,16.0\n165,602,15.5\n165,603,15.0\n165,604,14.5\n165,605,14.0\n165,606,13.5\n165,607,13.0\n165,608,12.5\n165,609,12.0\n165,610,11.5\n165,611,11.0\n165,612,10.5\n165,613,10.0\n165,614,9.5\n165,615,9.0\n165,616,9.5\n165,617,10.0\n165,618,10.5\n165,619,11.0\n165,620,11.5\n165,621,12.0\n165,622,12.5\n165,623,13.0\n165,624,13.5\n166,0,11.0\n166,1,10.5\n166,2,10.0\n166,3,9.5\n166,4,9.0\n166,5,8.5\n166,6,8.0\n166,7,7.5\n166,8,7.0\n166,9,6.5\n166,10,6.0\n166,11,5.5\n166,12,5.0\n166,13,4.5\n166,14,4.0\n166,15,3.5\n166,16,3.0\n166,17,3.5\n166,18,4.0\n166,19,4.5\n166,20,5.0\n166,21,5.5\n166,22,6.0\n166,23,6.5\n166,24,7.0\n166,25,10.5\n166,26,10.0\n166,27,9.5\n166,28,9.0\n166,29,8.5\n166,30,8.0\n166,31,7.5\n166,32,7.0\n166,33,6.5\n166,34,6.0\n166,35,5.5\n166,36,5.0\n166,37,4.5\n166,38,4.0\n166,39,3.5\n166,40,3.0\n166,41,2.5\n166,42,3.0\n166,43,3.5\n166,44,4.0\n166,45,4.5\n166,46,5.0\n166,47,5.5\n166,48,6.0\n166,49,6.5\n166,50,10.0\n166,51,9.5\n166,52,9.0\n166,53,8.5\n166,54,8.0\n166,55,7.5\n166,56,7.0\n166,57,6.5\n166,58,6.0\n166,59,5.5\n166,60,5.0\n166,61,4.5\n166,62,4.0\n166,63,3.5\n166,64,3.0\n166,65,2.5\n166,66,2.0\n166,67,2.5\n166,68,3.0\n166,69,3.5\n166,70,4.0\n166,71,4.5\n166,72,5.0\n166,73,5.5\n166,74,6.0\n166,75,9.5\n166,76,9.0\n166,77,8.5\n166,78,8.0\n166,79,7.5\n166,80,7.0\n166,81,6.5\n166,82,6.0\n166,83,5.5\n166,84,5.0\n166,85,4.5\n166,86,4.0\n166,87,3.5\n166,88,3.0\n166,89,2.5\n166,90,2.0\n166,91,1.5\n166,92,2.0\n166,93,2.5\n166,94,3.0\n166,95,3.5\n166,96,4.0\n166,97,4.5\n166,98,5.0\n166,99,5.5\n166,100,9.0\n166,101,8.5\n166,102,8.0\n166,103,7.5\n166,104,7.0\n166,105,6.5\n166,106,6.0\n166,107,5.5\n166,108,5.0\n166,109,4.5\n166,110,4.0\n166,111,3.5\n166,112,3.0\n166,113,2.5\n166,114,2.0\n166,115,1.5\n166,116,1.0\n166,117,1.5\n166,118,2.0\n166,119,2.5\n166,120,3.0\n166,121,3.5\n166,122,4.0\n166,123,4.5\n166,124,5.0\n166,125,8.5\n166,126,8.0\n166,127,7.5\n166,128,7.0\n166,129,6.5\n166,130,6.0\n166,131,5.5\n166,132,5.0\n166,133,4.5\n166,134,4.0\n166,135,3.5\n166,136,3.0\n166,137,2.5\n166,138,2.0\n166,139,1.5\n166,140,1.0\n166,141,0.5\n166,142,1.0\n166,143,1.5\n166,144,2.0\n166,145,2.5\n166,146,3.0\n166,147,3.5\n166,148,4.0\n166,149,4.5\n166,150,8.0\n166,151,7.5\n166,152,7.0\n166,153,6.5\n166,154,6.0\n166,155,5.5\n166,156,5.0\n166,157,4.5\n166,158,4.0\n166,159,3.5\n166,160,3.0\n166,161,2.5\n166,162,2.0\n166,163,1.5\n166,164,1.0\n166,165,0.5\n166,166,0\n166,167,0.5\n166,168,1.0\n166,169,1.5\n166,170,2.0\n166,171,2.5\n166,172,3.0\n166,173,3.5\n166,174,4.0\n166,175,8.5\n166,176,8.0\n166,177,7.5\n166,178,7.0\n166,179,6.5\n166,180,6.0\n166,181,5.5\n166,182,5.0\n166,183,4.5\n166,184,4.0\n166,185,3.5\n166,186,3.0\n166,187,2.5\n166,188,2.0\n166,189,1.5\n166,190,1.0\n166,191,0.5\n166,192,1.0\n166,193,1.5\n166,194,2.0\n166,195,2.5\n166,196,3.0\n166,197,3.5\n166,198,4.0\n166,199,4.5\n166,200,9.0\n166,201,8.5\n166,202,8.0\n166,203,7.5\n166,204,7.0\n166,205,6.5\n166,206,6.0\n166,207,5.5\n166,208,5.0\n166,209,4.5\n166,210,4.0\n166,211,3.5\n166,212,3.0\n166,213,2.5\n166,214,2.0\n166,215,1.5\n166,216,1.0\n166,217,1.5\n166,218,2.0\n166,219,2.5\n166,220,3.0\n166,221,3.5\n166,222,4.0\n166,223,4.5\n166,224,5.0\n166,225,9.5\n166,226,9.0\n166,227,8.5\n166,228,8.0\n166,229,7.5\n166,230,7.0\n166,231,6.5\n166,232,6.0\n166,233,5.5\n166,234,5.0\n166,235,4.5\n166,236,4.0\n166,237,3.5\n166,238,3.0\n166,239,2.5\n166,240,2.0\n166,241,1.5\n166,242,2.0\n166,243,2.5\n166,244,3.0\n166,245,3.5\n166,246,4.0\n166,247,4.5\n166,248,5.0\n166,249,5.5\n166,250,10.0\n166,251,9.5\n166,252,9.0\n166,253,8.5\n166,254,8.0\n166,255,7.5\n166,256,7.0\n166,257,6.5\n166,258,6.0\n166,259,5.5\n166,260,5.0\n166,261,4.5\n166,262,4.0\n166,263,3.5\n166,264,3.0\n166,265,2.5\n166,266,2.0\n166,267,2.5\n166,268,3.0\n166,269,3.5\n166,270,4.0\n166,271,4.5\n166,272,5.0\n166,273,5.5\n166,274,6.0\n166,275,10.5\n166,276,10.0\n166,277,9.5\n166,278,9.0\n166,279,8.5\n166,280,8.0\n166,281,7.5\n166,282,7.0\n166,283,6.5\n166,284,6.0\n166,285,5.5\n166,286,5.0\n166,287,4.5\n166,288,4.0\n166,289,3.5\n166,290,3.0\n166,291,2.5\n166,292,3.0\n166,293,3.5\n166,294,4.0\n166,295,4.5\n166,296,5.0\n166,297,5.5\n166,298,6.0\n166,299,6.5\n166,300,11.0\n166,301,10.5\n166,302,10.0\n166,303,9.5\n166,304,9.0\n166,305,8.5\n166,306,8.0\n166,307,7.5\n166,308,7.0\n166,309,6.5\n166,310,6.0\n166,311,5.5\n166,312,5.0\n166,313,4.5\n166,314,4.0\n166,315,3.5\n166,316,3.0\n166,317,3.5\n166,318,4.0\n166,319,4.5\n166,320,5.0\n166,321,5.5\n166,322,6.0\n166,323,6.5\n166,324,7.0\n166,325,11.5\n166,326,11.0\n166,327,10.5\n166,328,10.0\n166,329,9.5\n166,330,9.0\n166,331,8.5\n166,332,8.0\n166,333,7.5\n166,334,7.0\n166,335,6.5\n166,336,6.0\n166,337,5.5\n166,338,5.0\n166,339,4.5\n166,340,4.0\n166,341,3.5\n166,342,4.0\n166,343,4.5\n166,344,5.0\n166,345,5.5\n166,346,6.0\n166,347,6.5\n166,348,7.0\n166,349,7.5\n166,350,12.0\n166,351,11.5\n166,352,11.0\n166,353,10.5\n166,354,10.0\n166,355,9.5\n166,356,9.0\n166,357,8.5\n166,358,8.0\n166,359,7.5\n166,360,7.0\n166,361,6.5\n166,362,6.0\n166,363,5.5\n166,364,5.0\n166,365,4.5\n166,366,4.0\n166,367,4.5\n166,368,5.0\n166,369,5.5\n166,370,6.0\n166,371,6.5\n166,372,7.0\n166,373,7.5\n166,374,8.0\n166,375,12.5\n166,376,12.0\n166,377,11.5\n166,378,11.0\n166,379,10.5\n166,380,10.0\n166,381,9.5\n166,382,9.0\n166,383,8.5\n166,384,8.0\n166,385,7.5\n166,386,7.0\n166,387,6.5\n166,388,6.0\n166,389,5.5\n166,390,5.0\n166,391,4.5\n166,392,5.0\n166,393,5.5\n166,394,6.0\n166,395,6.5\n166,396,7.0\n166,397,7.5\n166,398,8.0\n166,399,8.5\n166,400,13.0\n166,401,12.5\n166,402,12.0\n166,403,11.5\n166,404,11.0\n166,405,10.5\n166,406,10.0\n166,407,9.5\n166,408,9.0\n166,409,8.5\n166,410,8.0\n166,411,7.5\n166,412,7.0\n166,413,6.5\n166,414,6.0\n166,415,5.5\n166,416,5.0\n166,417,5.5\n166,418,6.0\n166,419,6.5\n166,420,7.0\n166,421,7.5\n166,422,8.0\n166,423,8.5\n166,424,9.0\n166,425,13.5\n166,426,13.0\n166,427,12.5\n166,428,12.0\n166,429,11.5\n166,430,11.0\n166,431,10.5\n166,432,10.0\n166,433,9.5\n166,434,9.0\n166,435,8.5\n166,436,8.0\n166,437,7.5\n166,438,7.0\n166,439,6.5\n166,440,6.0\n166,441,5.5\n166,442,6.0\n166,443,6.5\n166,444,7.0\n166,445,7.5\n166,446,8.0\n166,447,8.5\n166,448,9.0\n166,449,9.5\n166,450,14.0\n166,451,13.5\n166,452,13.0\n166,453,12.5\n166,454,12.0\n166,455,11.5\n166,456,11.0\n166,457,10.5\n166,458,10.0\n166,459,9.5\n166,460,9.0\n166,461,8.5\n166,462,8.0\n166,463,7.5\n166,464,7.0\n166,465,6.5\n166,466,6.0\n166,467,6.5\n166,468,7.0\n166,469,7.5\n166,470,8.0\n166,471,8.5\n166,472,9.0\n166,473,9.5\n166,474,10.0\n166,475,14.5\n166,476,14.0\n166,477,13.5\n166,478,13.0\n166,479,12.5\n166,480,12.0\n166,481,11.5\n166,482,11.0\n166,483,10.5\n166,484,10.0\n166,485,9.5\n166,486,9.0\n166,487,8.5\n166,488,8.0\n166,489,7.5\n166,490,7.0\n166,491,6.5\n166,492,7.0\n166,493,7.5\n166,494,8.0\n166,495,8.5\n166,496,9.0\n166,497,9.5\n166,498,10.0\n166,499,10.5\n166,500,15.0\n166,501,14.5\n166,502,14.0\n166,503,13.5\n166,504,13.0\n166,505,12.5\n166,506,12.0\n166,507,11.5\n166,508,11.0\n166,509,10.5\n166,510,10.0\n166,511,9.5\n166,512,9.0\n166,513,8.5\n166,514,8.0\n166,515,7.5\n166,516,7.0\n166,517,7.5\n166,518,8.0\n166,519,8.5\n166,520,9.0\n166,521,9.5\n166,522,10.0\n166,523,10.5\n166,524,11.0\n166,525,15.5\n166,526,15.0\n166,527,14.5\n166,528,14.0\n166,529,13.5\n166,530,13.0\n166,531,12.5\n166,532,12.0\n166,533,11.5\n166,534,11.0\n166,535,10.5\n166,536,10.0\n166,537,9.5\n166,538,9.0\n166,539,8.5\n166,540,8.0\n166,541,7.5\n166,542,8.0\n166,543,8.5\n166,544,9.0\n166,545,9.5\n166,546,10.0\n166,547,10.5\n166,548,11.0\n166,549,11.5\n166,550,16.0\n166,551,15.5\n166,552,15.0\n166,553,14.5\n166,554,14.0\n166,555,13.5\n166,556,13.0\n166,557,12.5\n166,558,12.0\n166,559,11.5\n166,560,11.0\n166,561,10.5\n166,562,10.0\n166,563,9.5\n166,564,9.0\n166,565,8.5\n166,566,8.0\n166,567,8.5\n166,568,9.0\n166,569,9.5\n166,570,10.0\n166,571,10.5\n166,572,11.0\n166,573,11.5\n166,574,12.0\n166,575,16.5\n166,576,16.0\n166,577,15.5\n166,578,15.0\n166,579,14.5\n166,580,14.0\n166,581,13.5\n166,582,13.0\n166,583,12.5\n166,584,12.0\n166,585,11.5\n166,586,11.0\n166,587,10.5\n166,588,10.0\n166,589,9.5\n166,590,9.0\n166,591,8.5\n166,592,9.0\n166,593,9.5\n166,594,10.0\n166,595,10.5\n166,596,11.0\n166,597,11.5\n166,598,12.0\n166,599,12.5\n166,600,17.0\n166,601,16.5\n166,602,16.0\n166,603,15.5\n166,604,15.0\n166,605,14.5\n166,606,14.0\n166,607,13.5\n166,608,13.0\n166,609,12.5\n166,610,12.0\n166,611,11.5\n166,612,11.0\n166,613,10.5\n166,614,10.0\n166,615,9.5\n166,616,9.0\n166,617,9.5\n166,618,10.0\n166,619,10.5\n166,620,11.0\n166,621,11.5\n166,622,12.0\n166,623,12.5\n166,624,13.0\n167,0,11.5\n167,1,11.0\n167,2,10.5\n167,3,10.0\n167,4,9.5\n167,5,9.0\n167,6,8.5\n167,7,8.0\n167,8,7.5\n167,9,7.0\n167,10,6.5\n167,11,6.0\n167,12,5.5\n167,13,5.0\n167,14,4.5\n167,15,4.0\n167,16,3.5\n167,17,3.0\n167,18,3.5\n167,19,4.0\n167,20,4.5\n167,21,5.0\n167,22,5.5\n167,23,6.0\n167,24,6.5\n167,25,11.0\n167,26,10.5\n167,27,10.0\n167,28,9.5\n167,29,9.0\n167,30,8.5\n167,31,8.0\n167,32,7.5\n167,33,7.0\n167,34,6.5\n167,35,6.0\n167,36,5.5\n167,37,5.0\n167,38,4.5\n167,39,4.0\n167,40,3.5\n167,41,3.0\n167,42,2.5\n167,43,3.0\n167,44,3.5\n167,45,4.0\n167,46,4.5\n167,47,5.0\n167,48,5.5\n167,49,6.0\n167,50,10.5\n167,51,10.0\n167,52,9.5\n167,53,9.0\n167,54,8.5\n167,55,8.0\n167,56,7.5\n167,57,7.0\n167,58,6.5\n167,59,6.0\n167,60,5.5\n167,61,5.0\n167,62,4.5\n167,63,4.0\n167,64,3.5\n167,65,3.0\n167,66,2.5\n167,67,2.0\n167,68,2.5\n167,69,3.0\n167,70,3.5\n167,71,4.0\n167,72,4.5\n167,73,5.0\n167,74,5.5\n167,75,10.0\n167,76,9.5\n167,77,9.0\n167,78,8.5\n167,79,8.0\n167,80,7.5\n167,81,7.0\n167,82,6.5\n167,83,6.0\n167,84,5.5\n167,85,5.0\n167,86,4.5\n167,87,4.0\n167,88,3.5\n167,89,3.0\n167,90,2.5\n167,91,2.0\n167,92,1.5\n167,93,2.0\n167,94,2.5\n167,95,3.0\n167,96,3.5\n167,97,4.0\n167,98,4.5\n167,99,5.0\n167,100,9.5\n167,101,9.0\n167,102,8.5\n167,103,8.0\n167,104,7.5\n167,105,7.0\n167,106,6.5\n167,107,6.0\n167,108,5.5\n167,109,5.0\n167,110,4.5\n167,111,4.0\n167,112,3.5\n167,113,3.0\n167,114,2.5\n167,115,2.0\n167,116,1.5\n167,117,1.0\n167,118,1.5\n167,119,2.0\n167,120,2.5\n167,121,3.0\n167,122,3.5\n167,123,4.0\n167,124,4.5\n167,125,9.0\n167,126,8.5\n167,127,8.0\n167,128,7.5\n167,129,7.0\n167,130,6.5\n167,131,6.0\n167,132,5.5\n167,133,5.0\n167,134,4.5\n167,135,4.0\n167,136,3.5\n167,137,3.0\n167,138,2.5\n167,139,2.0\n167,140,1.5\n167,141,1.0\n167,142,0.5\n167,143,1.0\n167,144,1.5\n167,145,2.0\n167,146,2.5\n167,147,3.0\n167,148,3.5\n167,149,4.0\n167,150,8.5\n167,151,8.0\n167,152,7.5\n167,153,7.0\n167,154,6.5\n167,155,6.0\n167,156,5.5\n167,157,5.0\n167,158,4.5\n167,159,4.0\n167,160,3.5\n167,161,3.0\n167,162,2.5\n167,163,2.0\n167,164,1.5\n167,165,1.0\n167,166,0.5\n167,167,0\n167,168,0.5\n167,169,1.0\n167,170,1.5\n167,171,2.0\n167,172,2.5\n167,173,3.0\n167,174,3.5\n167,175,9.0\n167,176,8.5\n167,177,8.0\n167,178,7.5\n167,179,7.0\n167,180,6.5\n167,181,6.0\n167,182,5.5\n167,183,5.0\n167,184,4.5\n167,185,4.0\n167,186,3.5\n167,187,3.0\n167,188,2.5\n167,189,2.0\n167,190,1.5\n167,191,1.0\n167,192,0.5\n167,193,1.0\n167,194,1.5\n167,195,2.0\n167,196,2.5\n167,197,3.0\n167,198,3.5\n167,199,4.0\n167,200,9.5\n167,201,9.0\n167,202,8.5\n167,203,8.0\n167,204,7.5\n167,205,7.0\n167,206,6.5\n167,207,6.0\n167,208,5.5\n167,209,5.0\n167,210,4.5\n167,211,4.0\n167,212,3.5\n167,213,3.0\n167,214,2.5\n167,215,2.0\n167,216,1.5\n167,217,1.0\n167,218,1.5\n167,219,2.0\n167,220,2.5\n167,221,3.0\n167,222,3.5\n167,223,4.0\n167,224,4.5\n167,225,10.0\n167,226,9.5\n167,227,9.0\n167,228,8.5\n167,229,8.0\n167,230,7.5\n167,231,7.0\n167,232,6.5\n167,233,6.0\n167,234,5.5\n167,235,5.0\n167,236,4.5\n167,237,4.0\n167,238,3.5\n167,239,3.0\n167,240,2.5\n167,241,2.0\n167,242,1.5\n167,243,2.0\n167,244,2.5\n167,245,3.0\n167,246,3.5\n167,247,4.0\n167,248,4.5\n167,249,5.0\n167,250,10.5\n167,251,10.0\n167,252,9.5\n167,253,9.0\n167,254,8.5\n167,255,8.0\n167,256,7.5\n167,257,7.0\n167,258,6.5\n167,259,6.0\n167,260,5.5\n167,261,5.0\n167,262,4.5\n167,263,4.0\n167,264,3.5\n167,265,3.0\n167,266,2.5\n167,267,2.0\n167,268,2.5\n167,269,3.0\n167,270,3.5\n167,271,4.0\n167,272,4.5\n167,273,5.0\n167,274,5.5\n167,275,11.0\n167,276,10.5\n167,277,10.0\n167,278,9.5\n167,279,9.0\n167,280,8.5\n167,281,8.0\n167,282,7.5\n167,283,7.0\n167,284,6.5\n167,285,6.0\n167,286,5.5\n167,287,5.0\n167,288,4.5\n167,289,4.0\n167,290,3.5\n167,291,3.0\n167,292,2.5\n167,293,3.0\n167,294,3.5\n167,295,4.0\n167,296,4.5\n167,297,5.0\n167,298,5.5\n167,299,6.0\n167,300,11.5\n167,301,11.0\n167,302,10.5\n167,303,10.0\n167,304,9.5\n167,305,9.0\n167,306,8.5\n167,307,8.0\n167,308,7.5\n167,309,7.0\n167,310,6.5\n167,311,6.0\n167,312,5.5\n167,313,5.0\n167,314,4.5\n167,315,4.0\n167,316,3.5\n167,317,3.0\n167,318,3.5\n167,319,4.0\n167,320,4.5\n167,321,5.0\n167,322,5.5\n167,323,6.0\n167,324,6.5\n167,325,12.0\n167,326,11.5\n167,327,11.0\n167,328,10.5\n167,329,10.0\n167,330,9.5\n167,331,9.0\n167,332,8.5\n167,333,8.0\n167,334,7.5\n167,335,7.0\n167,336,6.5\n167,337,6.0\n167,338,5.5\n167,339,5.0\n167,340,4.5\n167,341,4.0\n167,342,3.5\n167,343,4.0\n167,344,4.5\n167,345,5.0\n167,346,5.5\n167,347,6.0\n167,348,6.5\n167,349,7.0\n167,350,12.5\n167,351,12.0\n167,352,11.5\n167,353,11.0\n167,354,10.5\n167,355,10.0\n167,356,9.5\n167,357,9.0\n167,358,8.5\n167,359,8.0\n167,360,7.5\n167,361,7.0\n167,362,6.5\n167,363,6.0\n167,364,5.5\n167,365,5.0\n167,366,4.5\n167,367,4.0\n167,368,4.5\n167,369,5.0\n167,370,5.5\n167,371,6.0\n167,372,6.5\n167,373,7.0\n167,374,7.5\n167,375,13.0\n167,376,12.5\n167,377,12.0\n167,378,11.5\n167,379,11.0\n167,380,10.5\n167,381,10.0\n167,382,9.5\n167,383,9.0\n167,384,8.5\n167,385,8.0\n167,386,7.5\n167,387,7.0\n167,388,6.5\n167,389,6.0\n167,390,5.5\n167,391,5.0\n167,392,4.5\n167,393,5.0\n167,394,5.5\n167,395,6.0\n167,396,6.5\n167,397,7.0\n167,398,7.5\n167,399,8.0\n167,400,13.5\n167,401,13.0\n167,402,12.5\n167,403,12.0\n167,404,11.5\n167,405,11.0\n167,406,10.5\n167,407,10.0\n167,408,9.5\n167,409,9.0\n167,410,8.5\n167,411,8.0\n167,412,7.5\n167,413,7.0\n167,414,6.5\n167,415,6.0\n167,416,5.5\n167,417,5.0\n167,418,5.5\n167,419,6.0\n167,420,6.5\n167,421,7.0\n167,422,7.5\n167,423,8.0\n167,424,8.5\n167,425,14.0\n167,426,13.5\n167,427,13.0\n167,428,12.5\n167,429,12.0\n167,430,11.5\n167,431,11.0\n167,432,10.5\n167,433,10.0\n167,434,9.5\n167,435,9.0\n167,436,8.5\n167,437,8.0\n167,438,7.5\n167,439,7.0\n167,440,6.5\n167,441,6.0\n167,442,5.5\n167,443,6.0\n167,444,6.5\n167,445,7.0\n167,446,7.5\n167,447,8.0\n167,448,8.5\n167,449,9.0\n167,450,14.5\n167,451,14.0\n167,452,13.5\n167,453,13.0\n167,454,12.5\n167,455,12.0\n167,456,11.5\n167,457,11.0\n167,458,10.5\n167,459,10.0\n167,460,9.5\n167,461,9.0\n167,462,8.5\n167,463,8.0\n167,464,7.5\n167,465,7.0\n167,466,6.5\n167,467,6.0\n167,468,6.5\n167,469,7.0\n167,470,7.5\n167,471,8.0\n167,472,8.5\n167,473,9.0\n167,474,9.5\n167,475,15.0\n167,476,14.5\n167,477,14.0\n167,478,13.5\n167,479,13.0\n167,480,12.5\n167,481,12.0\n167,482,11.5\n167,483,11.0\n167,484,10.5\n167,485,10.0\n167,486,9.5\n167,487,9.0\n167,488,8.5\n167,489,8.0\n167,490,7.5\n167,491,7.0\n167,492,6.5\n167,493,7.0\n167,494,7.5\n167,495,8.0\n167,496,8.5\n167,497,9.0\n167,498,9.5\n167,499,10.0\n167,500,15.5\n167,501,15.0\n167,502,14.5\n167,503,14.0\n167,504,13.5\n167,505,13.0\n167,506,12.5\n167,507,12.0\n167,508,11.5\n167,509,11.0\n167,510,10.5\n167,511,10.0\n167,512,9.5\n167,513,9.0\n167,514,8.5\n167,515,8.0\n167,516,7.5\n167,517,7.0\n167,518,7.5\n167,519,8.0\n167,520,8.5\n167,521,9.0\n167,522,9.5\n167,523,10.0\n167,524,10.5\n167,525,16.0\n167,526,15.5\n167,527,15.0\n167,528,14.5\n167,529,14.0\n167,530,13.5\n167,531,13.0\n167,532,12.5\n167,533,12.0\n167,534,11.5\n167,535,11.0\n167,536,10.5\n167,537,10.0\n167,538,9.5\n167,539,9.0\n167,540,8.5\n167,541,8.0\n167,542,7.5\n167,543,8.0\n167,544,8.5\n167,545,9.0\n167,546,9.5\n167,547,10.0\n167,548,10.5\n167,549,11.0\n167,550,16.5\n167,551,16.0\n167,552,15.5\n167,553,15.0\n167,554,14.5\n167,555,14.0\n167,556,13.5\n167,557,13.0\n167,558,12.5\n167,559,12.0\n167,560,11.5\n167,561,11.0\n167,562,10.5\n167,563,10.0\n167,564,9.5\n167,565,9.0\n167,566,8.5\n167,567,8.0\n167,568,8.5\n167,569,9.0\n167,570,9.5\n167,571,10.0\n167,572,10.5\n167,573,11.0\n167,574,11.5\n167,575,17.0\n167,576,16.5\n167,577,16.0\n167,578,15.5\n167,579,15.0\n167,580,14.5\n167,581,14.0\n167,582,13.5\n167,583,13.0\n167,584,12.5\n167,585,12.0\n167,586,11.5\n167,587,11.0\n167,588,10.5\n167,589,10.0\n167,590,9.5\n167,591,9.0\n167,592,8.5\n167,593,9.0\n167,594,9.5\n167,595,10.0\n167,596,10.5\n167,597,11.0\n167,598,11.5\n167,599,12.0\n167,600,17.5\n167,601,17.0\n167,602,16.5\n167,603,16.0\n167,604,15.5\n167,605,15.0\n167,606,14.5\n167,607,14.0\n167,608,13.5\n167,609,13.0\n167,610,12.5\n167,611,12.0\n167,612,11.5\n167,613,11.0\n167,614,10.5\n167,615,10.0\n167,616,9.5\n167,617,9.0\n167,618,9.5\n167,619,10.0\n167,620,10.5\n167,621,11.0\n167,622,11.5\n167,623,12.0\n167,624,12.5\n168,0,12.0\n168,1,11.5\n168,2,11.0\n168,3,10.5\n168,4,10.0\n168,5,9.5\n168,6,9.0\n168,7,8.5\n168,8,8.0\n168,9,7.5\n168,10,7.0\n168,11,6.5\n168,12,6.0\n168,13,5.5\n168,14,5.0\n168,15,4.5\n168,16,4.0\n168,17,3.5\n168,18,3.0\n168,19,3.5\n168,20,4.0\n168,21,4.5\n168,22,5.0\n168,23,5.5\n168,24,6.0\n168,25,11.5\n168,26,11.0\n168,27,10.5\n168,28,10.0\n168,29,9.5\n168,30,9.0\n168,31,8.5\n168,32,8.0\n168,33,7.5\n168,34,7.0\n168,35,6.5\n168,36,6.0\n168,37,5.5\n168,38,5.0\n168,39,4.5\n168,40,4.0\n168,41,3.5\n168,42,3.0\n168,43,2.5\n168,44,3.0\n168,45,3.5\n168,46,4.0\n168,47,4.5\n168,48,5.0\n168,49,5.5\n168,50,11.0\n168,51,10.5\n168,52,10.0\n168,53,9.5\n168,54,9.0\n168,55,8.5\n168,56,8.0\n168,57,7.5\n168,58,7.0\n168,59,6.5\n168,60,6.0\n168,61,5.5\n168,62,5.0\n168,63,4.5\n168,64,4.0\n168,65,3.5\n168,66,3.0\n168,67,2.5\n168,68,2.0\n168,69,2.5\n168,70,3.0\n168,71,3.5\n168,72,4.0\n168,73,4.5\n168,74,5.0\n168,75,10.5\n168,76,10.0\n168,77,9.5\n168,78,9.0\n168,79,8.5\n168,80,8.0\n168,81,7.5\n168,82,7.0\n168,83,6.5\n168,84,6.0\n168,85,5.5\n168,86,5.0\n168,87,4.5\n168,88,4.0\n168,89,3.5\n168,90,3.0\n168,91,2.5\n168,92,2.0\n168,93,1.5\n168,94,2.0\n168,95,2.5\n168,96,3.0\n168,97,3.5\n168,98,4.0\n168,99,4.5\n168,100,10.0\n168,101,9.5\n168,102,9.0\n168,103,8.5\n168,104,8.0\n168,105,7.5\n168,106,7.0\n168,107,6.5\n168,108,6.0\n168,109,5.5\n168,110,5.0\n168,111,4.5\n168,112,4.0\n168,113,3.5\n168,114,3.0\n168,115,2.5\n168,116,2.0\n168,117,1.5\n168,118,1.0\n168,119,1.5\n168,120,2.0\n168,121,2.5\n168,122,3.0\n168,123,3.5\n168,124,4.0\n168,125,9.5\n168,126,9.0\n168,127,8.5\n168,128,8.0\n168,129,7.5\n168,130,7.0\n168,131,6.5\n168,132,6.0\n168,133,5.5\n168,134,5.0\n168,135,4.5\n168,136,4.0\n168,137,3.5\n168,138,3.0\n168,139,2.5\n168,140,2.0\n168,141,1.5\n168,142,1.0\n168,143,0.5\n168,144,1.0\n168,145,1.5\n168,146,2.0\n168,147,2.5\n168,148,3.0\n168,149,3.5\n168,150,9.0\n168,151,8.5\n168,152,8.0\n168,153,7.5\n168,154,7.0\n168,155,6.5\n168,156,6.0\n168,157,5.5\n168,158,5.0\n168,159,4.5\n168,160,4.0\n168,161,3.5\n168,162,3.0\n168,163,2.5\n168,164,2.0\n168,165,1.5\n168,166,1.0\n168,167,0.5\n168,168,0\n168,169,0.5\n168,170,1.0\n168,171,1.5\n168,172,2.0\n168,173,2.5\n168,174,3.0\n168,175,9.5\n168,176,9.0\n168,177,8.5\n168,178,8.0\n168,179,7.5\n168,180,7.0\n168,181,6.5\n168,182,6.0\n168,183,5.5\n168,184,5.0\n168,185,4.5\n168,186,4.0\n168,187,3.5\n168,188,3.0\n168,189,2.5\n168,190,2.0\n168,191,1.5\n168,192,1.0\n168,193,0.5\n168,194,1.0\n168,195,1.5\n168,196,2.0\n168,197,2.5\n168,198,3.0\n168,199,3.5\n168,200,10.0\n168,201,9.5\n168,202,9.0\n168,203,8.5\n168,204,8.0\n168,205,7.5\n168,206,7.0\n168,207,6.5\n168,208,6.0\n168,209,5.5\n168,210,5.0\n168,211,4.5\n168,212,4.0\n168,213,3.5\n168,214,3.0\n168,215,2.5\n168,216,2.0\n168,217,1.5\n168,218,1.0\n168,219,1.5\n168,220,2.0\n168,221,2.5\n168,222,3.0\n168,223,3.5\n168,224,4.0\n168,225,10.5\n168,226,10.0\n168,227,9.5\n168,228,9.0\n168,229,8.5\n168,230,8.0\n168,231,7.5\n168,232,7.0\n168,233,6.5\n168,234,6.0\n168,235,5.5\n168,236,5.0\n168,237,4.5\n168,238,4.0\n168,239,3.5\n168,240,3.0\n168,241,2.5\n168,242,2.0\n168,243,1.5\n168,244,2.0\n168,245,2.5\n168,246,3.0\n168,247,3.5\n168,248,4.0\n168,249,4.5\n168,250,11.0\n168,251,10.5\n168,252,10.0\n168,253,9.5\n168,254,9.0\n168,255,8.5\n168,256,8.0\n168,257,7.5\n168,258,7.0\n168,259,6.5\n168,260,6.0\n168,261,5.5\n168,262,5.0\n168,263,4.5\n168,264,4.0\n168,265,3.5\n168,266,3.0\n168,267,2.5\n168,268,2.0\n168,269,2.5\n168,270,3.0\n168,271,3.5\n168,272,4.0\n168,273,4.5\n168,274,5.0\n168,275,11.5\n168,276,11.0\n168,277,10.5\n168,278,10.0\n168,279,9.5\n168,280,9.0\n168,281,8.5\n168,282,8.0\n168,283,7.5\n168,284,7.0\n168,285,6.5\n168,286,6.0\n168,287,5.5\n168,288,5.0\n168,289,4.5\n168,290,4.0\n168,291,3.5\n168,292,3.0\n168,293,2.5\n168,294,3.0\n168,295,3.5\n168,296,4.0\n168,297,4.5\n168,298,5.0\n168,299,5.5\n168,300,12.0\n168,301,11.5\n168,302,11.0\n168,303,10.5\n168,304,10.0\n168,305,9.5\n168,306,9.0\n168,307,8.5\n168,308,8.0\n168,309,7.5\n168,310,7.0\n168,311,6.5\n168,312,6.0\n168,313,5.5\n168,314,5.0\n168,315,4.5\n168,316,4.0\n168,317,3.5\n168,318,3.0\n168,319,3.5\n168,320,4.0\n168,321,4.5\n168,322,5.0\n168,323,5.5\n168,324,6.0\n168,325,12.5\n168,326,12.0\n168,327,11.5\n168,328,11.0\n168,329,10.5\n168,330,10.0\n168,331,9.5\n168,332,9.0\n168,333,8.5\n168,334,8.0\n168,335,7.5\n168,336,7.0\n168,337,6.5\n168,338,6.0\n168,339,5.5\n168,340,5.0\n168,341,4.5\n168,342,4.0\n168,343,3.5\n168,344,4.0\n168,345,4.5\n168,346,5.0\n168,347,5.5\n168,348,6.0\n168,349,6.5\n168,350,13.0\n168,351,12.5\n168,352,12.0\n168,353,11.5\n168,354,11.0\n168,355,10.5\n168,356,10.0\n168,357,9.5\n168,358,9.0\n168,359,8.5\n168,360,8.0\n168,361,7.5\n168,362,7.0\n168,363,6.5\n168,364,6.0\n168,365,5.5\n168,366,5.0\n168,367,4.5\n168,368,4.0\n168,369,4.5\n168,370,5.0\n168,371,5.5\n168,372,6.0\n168,373,6.5\n168,374,7.0\n168,375,13.5\n168,376,13.0\n168,377,12.5\n168,378,12.0\n168,379,11.5\n168,380,11.0\n168,381,10.5\n168,382,10.0\n168,383,9.5\n168,384,9.0\n168,385,8.5\n168,386,8.0\n168,387,7.5\n168,388,7.0\n168,389,6.5\n168,390,6.0\n168,391,5.5\n168,392,5.0\n168,393,4.5\n168,394,5.0\n168,395,5.5\n168,396,6.0\n168,397,6.5\n168,398,7.0\n168,399,7.5\n168,400,14.0\n168,401,13.5\n168,402,13.0\n168,403,12.5\n168,404,12.0\n168,405,11.5\n168,406,11.0\n168,407,10.5\n168,408,10.0\n168,409,9.5\n168,410,9.0\n168,411,8.5\n168,412,8.0\n168,413,7.5\n168,414,7.0\n168,415,6.5\n168,416,6.0\n168,417,5.5\n168,418,5.0\n168,419,5.5\n168,420,6.0\n168,421,6.5\n168,422,7.0\n168,423,7.5\n168,424,8.0\n168,425,14.5\n168,426,14.0\n168,427,13.5\n168,428,13.0\n168,429,12.5\n168,430,12.0\n168,431,11.5\n168,432,11.0\n168,433,10.5\n168,434,10.0\n168,435,9.5\n168,436,9.0\n168,437,8.5\n168,438,8.0\n168,439,7.5\n168,440,7.0\n168,441,6.5\n168,442,6.0\n168,443,5.5\n168,444,6.0\n168,445,6.5\n168,446,7.0\n168,447,7.5\n168,448,8.0\n168,449,8.5\n168,450,15.0\n168,451,14.5\n168,452,14.0\n168,453,13.5\n168,454,13.0\n168,455,12.5\n168,456,12.0\n168,457,11.5\n168,458,11.0\n168,459,10.5\n168,460,10.0\n168,461,9.5\n168,462,9.0\n168,463,8.5\n168,464,8.0\n168,465,7.5\n168,466,7.0\n168,467,6.5\n168,468,6.0\n168,469,6.5\n168,470,7.0\n168,471,7.5\n168,472,8.0\n168,473,8.5\n168,474,9.0\n168,475,15.5\n168,476,15.0\n168,477,14.5\n168,478,14.0\n168,479,13.5\n168,480,13.0\n168,481,12.5\n168,482,12.0\n168,483,11.5\n168,484,11.0\n168,485,10.5\n168,486,10.0\n168,487,9.5\n168,488,9.0\n168,489,8.5\n168,490,8.0\n168,491,7.5\n168,492,7.0\n168,493,6.5\n168,494,7.0\n168,495,7.5\n168,496,8.0\n168,497,8.5\n168,498,9.0\n168,499,9.5\n168,500,16.0\n168,501,15.5\n168,502,15.0\n168,503,14.5\n168,504,14.0\n168,505,13.5\n168,506,13.0\n168,507,12.5\n168,508,12.0\n168,509,11.5\n168,510,11.0\n168,511,10.5\n168,512,10.0\n168,513,9.5\n168,514,9.0\n168,515,8.5\n168,516,8.0\n168,517,7.5\n168,518,7.0\n168,519,7.5\n168,520,8.0\n168,521,8.5\n168,522,9.0\n168,523,9.5\n168,524,10.0\n168,525,16.5\n168,526,16.0\n168,527,15.5\n168,528,15.0\n168,529,14.5\n168,530,14.0\n168,531,13.5\n168,532,13.0\n168,533,12.5\n168,534,12.0\n168,535,11.5\n168,536,11.0\n168,537,10.5\n168,538,10.0\n168,539,9.5\n168,540,9.0\n168,541,8.5\n168,542,8.0\n168,543,7.5\n168,544,8.0\n168,545,8.5\n168,546,9.0\n168,547,9.5\n168,548,10.0\n168,549,10.5\n168,550,17.0\n168,551,16.5\n168,552,16.0\n168,553,15.5\n168,554,15.0\n168,555,14.5\n168,556,14.0\n168,557,13.5\n168,558,13.0\n168,559,12.5\n168,560,12.0\n168,561,11.5\n168,562,11.0\n168,563,10.5\n168,564,10.0\n168,565,9.5\n168,566,9.0\n168,567,8.5\n168,568,8.0\n168,569,8.5\n168,570,9.0\n168,571,9.5\n168,572,10.0\n168,573,10.5\n168,574,11.0\n168,575,17.5\n168,576,17.0\n168,577,16.5\n168,578,16.0\n168,579,15.5\n168,580,15.0\n168,581,14.5\n168,582,14.0\n168,583,13.5\n168,584,13.0\n168,585,12.5\n168,586,12.0\n168,587,11.5\n168,588,11.0\n168,589,10.5\n168,590,10.0\n168,591,9.5\n168,592,9.0\n168,593,8.5\n168,594,9.0\n168,595,9.5\n168,596,10.0\n168,597,10.5\n168,598,11.0\n168,599,11.5\n168,600,18.0\n168,601,17.5\n168,602,17.0\n168,603,16.5\n168,604,16.0\n168,605,15.5\n168,606,15.0\n168,607,14.5\n168,608,14.0\n168,609,13.5\n168,610,13.0\n168,611,12.5\n168,612,12.0\n168,613,11.5\n168,614,11.0\n168,615,10.5\n168,616,10.0\n168,617,9.5\n168,618,9.0\n168,619,9.5\n168,620,10.0\n168,621,10.5\n168,622,11.0\n168,623,11.5\n168,624,12.0\n169,0,12.5\n169,1,12.0\n169,2,11.5\n169,3,11.0\n169,4,10.5\n169,5,10.0\n169,6,9.5\n169,7,9.0\n169,8,8.5\n169,9,8.0\n169,10,7.5\n169,11,7.0\n169,12,6.5\n169,13,6.0\n169,14,5.5\n169,15,5.0\n169,16,4.5\n169,17,4.0\n169,18,3.5\n169,19,3.0\n169,20,3.5\n169,21,4.0\n169,22,4.5\n169,23,5.0\n169,24,5.5\n169,25,12.0\n169,26,11.5\n169,27,11.0\n169,28,10.5\n169,29,10.0\n169,30,9.5\n169,31,9.0\n169,32,8.5\n169,33,8.0\n169,34,7.5\n169,35,7.0\n169,36,6.5\n169,37,6.0\n169,38,5.5\n169,39,5.0\n169,40,4.5\n169,41,4.0\n169,42,3.5\n169,43,3.0\n169,44,2.5\n169,45,3.0\n169,46,3.5\n169,47,4.0\n169,48,4.5\n169,49,5.0\n169,50,11.5\n169,51,11.0\n169,52,10.5\n169,53,10.0\n169,54,9.5\n169,55,9.0\n169,56,8.5\n169,57,8.0\n169,58,7.5\n169,59,7.0\n169,60,6.5\n169,61,6.0\n169,62,5.5\n169,63,5.0\n169,64,4.5\n169,65,4.0\n169,66,3.5\n169,67,3.0\n169,68,2.5\n169,69,2.0\n169,70,2.5\n169,71,3.0\n169,72,3.5\n169,73,4.0\n169,74,4.5\n169,75,11.0\n169,76,10.5\n169,77,10.0\n169,78,9.5\n169,79,9.0\n169,80,8.5\n169,81,8.0\n169,82,7.5\n169,83,7.0\n169,84,6.5\n169,85,6.0\n169,86,5.5\n169,87,5.0\n169,88,4.5\n169,89,4.0\n169,90,3.5\n169,91,3.0\n169,92,2.5\n169,93,2.0\n169,94,1.5\n169,95,2.0\n169,96,2.5\n169,97,3.0\n169,98,3.5\n169,99,4.0\n169,100,10.5\n169,101,10.0\n169,102,9.5\n169,103,9.0\n169,104,8.5\n169,105,8.0\n169,106,7.5\n169,107,7.0\n169,108,6.5\n169,109,6.0\n169,110,5.5\n169,111,5.0\n169,112,4.5\n169,113,4.0\n169,114,3.5\n169,115,3.0\n169,116,2.5\n169,117,2.0\n169,118,1.5\n169,119,1.0\n169,120,1.5\n169,121,2.0\n169,122,2.5\n169,123,3.0\n169,124,3.5\n169,125,10.0\n169,126,9.5\n169,127,9.0\n169,128,8.5\n169,129,8.0\n169,130,7.5\n169,131,7.0\n169,132,6.5\n169,133,6.0\n169,134,5.5\n169,135,5.0\n169,136,4.5\n169,137,4.0\n169,138,3.5\n169,139,3.0\n169,140,2.5\n169,141,2.0\n169,142,1.5\n169,143,1.0\n169,144,0.5\n169,145,1.0\n169,146,1.5\n169,147,2.0\n169,148,2.5\n169,149,3.0\n169,150,9.5\n169,151,9.0\n169,152,8.5\n169,153,8.0\n169,154,7.5\n169,155,7.0\n169,156,6.5\n169,157,6.0\n169,158,5.5\n169,159,5.0\n169,160,4.5\n169,161,4.0\n169,162,3.5\n169,163,3.0\n169,164,2.5\n169,165,2.0\n169,166,1.5\n169,167,1.0\n169,168,0.5\n169,169,0\n169,170,0.5\n169,171,1.0\n169,172,1.5\n169,173,2.0\n169,174,2.5\n169,175,10.0\n169,176,9.5\n169,177,9.0\n169,178,8.5\n169,179,8.0\n169,180,7.5\n169,181,7.0\n169,182,6.5\n169,183,6.0\n169,184,5.5\n169,185,5.0\n169,186,4.5\n169,187,4.0\n169,188,3.5\n169,189,3.0\n169,190,2.5\n169,191,2.0\n169,192,1.5\n169,193,1.0\n169,194,0.5\n169,195,1.0\n169,196,1.5\n169,197,2.0\n169,198,2.5\n169,199,3.0\n169,200,10.5\n169,201,10.0\n169,202,9.5\n169,203,9.0\n169,204,8.5\n169,205,8.0\n169,206,7.5\n169,207,7.0\n169,208,6.5\n169,209,6.0\n169,210,5.5\n169,211,5.0\n169,212,4.5\n169,213,4.0\n169,214,3.5\n169,215,3.0\n169,216,2.5\n169,217,2.0\n169,218,1.5\n169,219,1.0\n169,220,1.5\n169,221,2.0\n169,222,2.5\n169,223,3.0\n169,224,3.5\n169,225,11.0\n169,226,10.5\n169,227,10.0\n169,228,9.5\n169,229,9.0\n169,230,8.5\n169,231,8.0\n169,232,7.5\n169,233,7.0\n169,234,6.5\n169,235,6.0\n169,236,5.5\n169,237,5.0\n169,238,4.5\n169,239,4.0\n169,240,3.5\n169,241,3.0\n169,242,2.5\n169,243,2.0\n169,244,1.5\n169,245,2.0\n169,246,2.5\n169,247,3.0\n169,248,3.5\n169,249,4.0\n169,250,11.5\n169,251,11.0\n169,252,10.5\n169,253,10.0\n169,254,9.5\n169,255,9.0\n169,256,8.5\n169,257,8.0\n169,258,7.5\n169,259,7.0\n169,260,6.5\n169,261,6.0\n169,262,5.5\n169,263,5.0\n169,264,4.5\n169,265,4.0\n169,266,3.5\n169,267,3.0\n169,268,2.5\n169,269,2.0\n169,270,2.5\n169,271,3.0\n169,272,3.5\n169,273,4.0\n169,274,4.5\n169,275,12.0\n169,276,11.5\n169,277,11.0\n169,278,10.5\n169,279,10.0\n169,280,9.5\n169,281,9.0\n169,282,8.5\n169,283,8.0\n169,284,7.5\n169,285,7.0\n169,286,6.5\n169,287,6.0\n169,288,5.5\n169,289,5.0\n169,290,4.5\n169,291,4.0\n169,292,3.5\n169,293,3.0\n169,294,2.5\n169,295,3.0\n169,296,3.5\n169,297,4.0\n169,298,4.5\n169,299,5.0\n169,300,12.5\n169,301,12.0\n169,302,11.5\n169,303,11.0\n169,304,10.5\n169,305,10.0\n169,306,9.5\n169,307,9.0\n169,308,8.5\n169,309,8.0\n169,310,7.5\n169,311,7.0\n169,312,6.5\n169,313,6.0\n169,314,5.5\n169,315,5.0\n169,316,4.5\n169,317,4.0\n169,318,3.5\n169,319,3.0\n169,320,3.5\n169,321,4.0\n169,322,4.5\n169,323,5.0\n169,324,5.5\n169,325,13.0\n169,326,12.5\n169,327,12.0\n169,328,11.5\n169,329,11.0\n169,330,10.5\n169,331,10.0\n169,332,9.5\n169,333,9.0\n169,334,8.5\n169,335,8.0\n169,336,7.5\n169,337,7.0\n169,338,6.5\n169,339,6.0\n169,340,5.5\n169,341,5.0\n169,342,4.5\n169,343,4.0\n169,344,3.5\n169,345,4.0\n169,346,4.5\n169,347,5.0\n169,348,5.5\n169,349,6.0\n169,350,13.5\n169,351,13.0\n169,352,12.5\n169,353,12.0\n169,354,11.5\n169,355,11.0\n169,356,10.5\n169,357,10.0\n169,358,9.5\n169,359,9.0\n169,360,8.5\n169,361,8.0\n169,362,7.5\n169,363,7.0\n169,364,6.5\n169,365,6.0\n169,366,5.5\n169,367,5.0\n169,368,4.5\n169,369,4.0\n169,370,4.5\n169,371,5.0\n169,372,5.5\n169,373,6.0\n169,374,6.5\n169,375,14.0\n169,376,13.5\n169,377,13.0\n169,378,12.5\n169,379,12.0\n169,380,11.5\n169,381,11.0\n169,382,10.5\n169,383,10.0\n169,384,9.5\n169,385,9.0\n169,386,8.5\n169,387,8.0\n169,388,7.5\n169,389,7.0\n169,390,6.5\n169,391,6.0\n169,392,5.5\n169,393,5.0\n169,394,4.5\n169,395,5.0\n169,396,5.5\n169,397,6.0\n169,398,6.5\n169,399,7.0\n169,400,14.5\n169,401,14.0\n169,402,13.5\n169,403,13.0\n169,404,12.5\n169,405,12.0\n169,406,11.5\n169,407,11.0\n169,408,10.5\n169,409,10.0\n169,410,9.5\n169,411,9.0\n169,412,8.5\n169,413,8.0\n169,414,7.5\n169,415,7.0\n169,416,6.5\n169,417,6.0\n169,418,5.5\n169,419,5.0\n169,420,5.5\n169,421,6.0\n169,422,6.5\n169,423,7.0\n169,424,7.5\n169,425,15.0\n169,426,14.5\n169,427,14.0\n169,428,13.5\n169,429,13.0\n169,430,12.5\n169,431,12.0\n169,432,11.5\n169,433,11.0\n169,434,10.5\n169,435,10.0\n169,436,9.5\n169,437,9.0\n169,438,8.5\n169,439,8.0\n169,440,7.5\n169,441,7.0\n169,442,6.5\n169,443,6.0\n169,444,5.5\n169,445,6.0\n169,446,6.5\n169,447,7.0\n169,448,7.5\n169,449,8.0\n169,450,15.5\n169,451,15.0\n169,452,14.5\n169,453,14.0\n169,454,13.5\n169,455,13.0\n169,456,12.5\n169,457,12.0\n169,458,11.5\n169,459,11.0\n169,460,10.5\n169,461,10.0\n169,462,9.5\n169,463,9.0\n169,464,8.5\n169,465,8.0\n169,466,7.5\n169,467,7.0\n169,468,6.5\n169,469,6.0\n169,470,6.5\n169,471,7.0\n169,472,7.5\n169,473,8.0\n169,474,8.5\n169,475,16.0\n169,476,15.5\n169,477,15.0\n169,478,14.5\n169,479,14.0\n169,480,13.5\n169,481,13.0\n169,482,12.5\n169,483,12.0\n169,484,11.5\n169,485,11.0\n169,486,10.5\n169,487,10.0\n169,488,9.5\n169,489,9.0\n169,490,8.5\n169,491,8.0\n169,492,7.5\n169,493,7.0\n169,494,6.5\n169,495,7.0\n169,496,7.5\n169,497,8.0\n169,498,8.5\n169,499,9.0\n169,500,16.5\n169,501,16.0\n169,502,15.5\n169,503,15.0\n169,504,14.5\n169,505,14.0\n169,506,13.5\n169,507,13.0\n169,508,12.5\n169,509,12.0\n169,510,11.5\n169,511,11.0\n169,512,10.5\n169,513,10.0\n169,514,9.5\n169,515,9.0\n169,516,8.5\n169,517,8.0\n169,518,7.5\n169,519,7.0\n169,520,7.5\n169,521,8.0\n169,522,8.5\n169,523,9.0\n169,524,9.5\n169,525,17.0\n169,526,16.5\n169,527,16.0\n169,528,15.5\n169,529,15.0\n169,530,14.5\n169,531,14.0\n169,532,13.5\n169,533,13.0\n169,534,12.5\n169,535,12.0\n169,536,11.5\n169,537,11.0\n169,538,10.5\n169,539,10.0\n169,540,9.5\n169,541,9.0\n169,542,8.5\n169,543,8.0\n169,544,7.5\n169,545,8.0\n169,546,8.5\n169,547,9.0\n169,548,9.5\n169,549,10.0\n169,550,17.5\n169,551,17.0\n169,552,16.5\n169,553,16.0\n169,554,15.5\n169,555,15.0\n169,556,14.5\n169,557,14.0\n169,558,13.5\n169,559,13.0\n169,560,12.5\n169,561,12.0\n169,562,11.5\n169,563,11.0\n169,564,10.5\n169,565,10.0\n169,566,9.5\n169,567,9.0\n169,568,8.5\n169,569,8.0\n169,570,8.5\n169,571,9.0\n169,572,9.5\n169,573,10.0\n169,574,10.5\n169,575,18.0\n169,576,17.5\n169,577,17.0\n169,578,16.5\n169,579,16.0\n169,580,15.5\n169,581,15.0\n169,582,14.5\n169,583,14.0\n169,584,13.5\n169,585,13.0\n169,586,12.5\n169,587,12.0\n169,588,11.5\n169,589,11.0\n169,590,10.5\n169,591,10.0\n169,592,9.5\n169,593,9.0\n169,594,8.5\n169,595,9.0\n169,596,9.5\n169,597,10.0\n169,598,10.5\n169,599,11.0\n169,600,18.5\n169,601,18.0\n169,602,17.5\n169,603,17.0\n169,604,16.5\n169,605,16.0\n169,606,15.5\n169,607,15.0\n169,608,14.5\n169,609,14.0\n169,610,13.5\n169,611,13.0\n169,612,12.5\n169,613,12.0\n169,614,11.5\n169,615,11.0\n169,616,10.5\n169,617,10.0\n169,618,9.5\n169,619,9.0\n169,620,9.5\n169,621,10.0\n169,622,10.5\n169,623,11.0\n169,624,11.5\n170,0,13.0\n170,1,12.5\n170,2,12.0\n170,3,11.5\n170,4,11.0\n170,5,10.5\n170,6,10.0\n170,7,9.5\n170,8,9.0\n170,9,8.5\n170,10,8.0\n170,11,7.5\n170,12,7.0\n170,13,6.5\n170,14,6.0\n170,15,5.5\n170,16,5.0\n170,17,4.5\n170,18,4.0\n170,19,3.5\n170,20,3.0\n170,21,3.5\n170,22,4.0\n170,23,4.5\n170,24,5.0\n170,25,12.5\n170,26,12.0\n170,27,11.5\n170,28,11.0\n170,29,10.5\n170,30,10.0\n170,31,9.5\n170,32,9.0\n170,33,8.5\n170,34,8.0\n170,35,7.5\n170,36,7.0\n170,37,6.5\n170,38,6.0\n170,39,5.5\n170,40,5.0\n170,41,4.5\n170,42,4.0\n170,43,3.5\n170,44,3.0\n170,45,2.5\n170,46,3.0\n170,47,3.5\n170,48,4.0\n170,49,4.5\n170,50,12.0\n170,51,11.5\n170,52,11.0\n170,53,10.5\n170,54,10.0\n170,55,9.5\n170,56,9.0\n170,57,8.5\n170,58,8.0\n170,59,7.5\n170,60,7.0\n170,61,6.5\n170,62,6.0\n170,63,5.5\n170,64,5.0\n170,65,4.5\n170,66,4.0\n170,67,3.5\n170,68,3.0\n170,69,2.5\n170,70,2.0\n170,71,2.5\n170,72,3.0\n170,73,3.5\n170,74,4.0\n170,75,11.5\n170,76,11.0\n170,77,10.5\n170,78,10.0\n170,79,9.5\n170,80,9.0\n170,81,8.5\n170,82,8.0\n170,83,7.5\n170,84,7.0\n170,85,6.5\n170,86,6.0\n170,87,5.5\n170,88,5.0\n170,89,4.5\n170,90,4.0\n170,91,3.5\n170,92,3.0\n170,93,2.5\n170,94,2.0\n170,95,1.5\n170,96,2.0\n170,97,2.5\n170,98,3.0\n170,99,3.5\n170,100,11.0\n170,101,10.5\n170,102,10.0\n170,103,9.5\n170,104,9.0\n170,105,8.5\n170,106,8.0\n170,107,7.5\n170,108,7.0\n170,109,6.5\n170,110,6.0\n170,111,5.5\n170,112,5.0\n170,113,4.5\n170,114,4.0\n170,115,3.5\n170,116,3.0\n170,117,2.5\n170,118,2.0\n170,119,1.5\n170,120,1.0\n170,121,1.5\n170,122,2.0\n170,123,2.5\n170,124,3.0\n170,125,10.5\n170,126,10.0\n170,127,9.5\n170,128,9.0\n170,129,8.5\n170,130,8.0\n170,131,7.5\n170,132,7.0\n170,133,6.5\n170,134,6.0\n170,135,5.5\n170,136,5.0\n170,137,4.5\n170,138,4.0\n170,139,3.5\n170,140,3.0\n170,141,2.5\n170,142,2.0\n170,143,1.5\n170,144,1.0\n170,145,0.5\n170,146,1.0\n170,147,1.5\n170,148,2.0\n170,149,2.5\n170,150,10.0\n170,151,9.5\n170,152,9.0\n170,153,8.5\n170,154,8.0\n170,155,7.5\n170,156,7.0\n170,157,6.5\n170,158,6.0\n170,159,5.5\n170,160,5.0\n170,161,4.5\n170,162,4.0\n170,163,3.5\n170,164,3.0\n170,165,2.5\n170,166,2.0\n170,167,1.5\n170,168,1.0\n170,169,0.5\n170,170,0\n170,171,0.5\n170,172,1.0\n170,173,1.5\n170,174,2.0\n170,175,10.5\n170,176,10.0\n170,177,9.5\n170,178,9.0\n170,179,8.5\n170,180,8.0\n170,181,7.5\n170,182,7.0\n170,183,6.5\n170,184,6.0\n170,185,5.5\n170,186,5.0\n170,187,4.5\n170,188,4.0\n170,189,3.5\n170,190,3.0\n170,191,2.5\n170,192,2.0\n170,193,1.5\n170,194,1.0\n170,195,0.5\n170,196,1.0\n170,197,1.5\n170,198,2.0\n170,199,2.5\n170,200,11.0\n170,201,10.5\n170,202,10.0\n170,203,9.5\n170,204,9.0\n170,205,8.5\n170,206,8.0\n170,207,7.5\n170,208,7.0\n170,209,6.5\n170,210,6.0\n170,211,5.5\n170,212,5.0\n170,213,4.5\n170,214,4.0\n170,215,3.5\n170,216,3.0\n170,217,2.5\n170,218,2.0\n170,219,1.5\n170,220,1.0\n170,221,1.5\n170,222,2.0\n170,223,2.5\n170,224,3.0\n170,225,11.5\n170,226,11.0\n170,227,10.5\n170,228,10.0\n170,229,9.5\n170,230,9.0\n170,231,8.5\n170,232,8.0\n170,233,7.5\n170,234,7.0\n170,235,6.5\n170,236,6.0\n170,237,5.5\n170,238,5.0\n170,239,4.5\n170,240,4.0\n170,241,3.5\n170,242,3.0\n170,243,2.5\n170,244,2.0\n170,245,1.5\n170,246,2.0\n170,247,2.5\n170,248,3.0\n170,249,3.5\n170,250,12.0\n170,251,11.5\n170,252,11.0\n170,253,10.5\n170,254,10.0\n170,255,9.5\n170,256,9.0\n170,257,8.5\n170,258,8.0\n170,259,7.5\n170,260,7.0\n170,261,6.5\n170,262,6.0\n170,263,5.5\n170,264,5.0\n170,265,4.5\n170,266,4.0\n170,267,3.5\n170,268,3.0\n170,269,2.5\n170,270,2.0\n170,271,2.5\n170,272,3.0\n170,273,3.5\n170,274,4.0\n170,275,12.5\n170,276,12.0\n170,277,11.5\n170,278,11.0\n170,279,10.5\n170,280,10.0\n170,281,9.5\n170,282,9.0\n170,283,8.5\n170,284,8.0\n170,285,7.5\n170,286,7.0\n170,287,6.5\n170,288,6.0\n170,289,5.5\n170,290,5.0\n170,291,4.5\n170,292,4.0\n170,293,3.5\n170,294,3.0\n170,295,2.5\n170,296,3.0\n170,297,3.5\n170,298,4.0\n170,299,4.5\n170,300,13.0\n170,301,12.5\n170,302,12.0\n170,303,11.5\n170,304,11.0\n170,305,10.5\n170,306,10.0\n170,307,9.5\n170,308,9.0\n170,309,8.5\n170,310,8.0\n170,311,7.5\n170,312,7.0\n170,313,6.5\n170,314,6.0\n170,315,5.5\n170,316,5.0\n170,317,4.5\n170,318,4.0\n170,319,3.5\n170,320,3.0\n170,321,3.5\n170,322,4.0\n170,323,4.5\n170,324,5.0\n170,325,13.5\n170,326,13.0\n170,327,12.5\n170,328,12.0\n170,329,11.5\n170,330,11.0\n170,331,10.5\n170,332,10.0\n170,333,9.5\n170,334,9.0\n170,335,8.5\n170,336,8.0\n170,337,7.5\n170,338,7.0\n170,339,6.5\n170,340,6.0\n170,341,5.5\n170,342,5.0\n170,343,4.5\n170,344,4.0\n170,345,3.5\n170,346,4.0\n170,347,4.5\n170,348,5.0\n170,349,5.5\n170,350,14.0\n170,351,13.5\n170,352,13.0\n170,353,12.5\n170,354,12.0\n170,355,11.5\n170,356,11.0\n170,357,10.5\n170,358,10.0\n170,359,9.5\n170,360,9.0\n170,361,8.5\n170,362,8.0\n170,363,7.5\n170,364,7.0\n170,365,6.5\n170,366,6.0\n170,367,5.5\n170,368,5.0\n170,369,4.5\n170,370,4.0\n170,371,4.5\n170,372,5.0\n170,373,5.5\n170,374,6.0\n170,375,14.5\n170,376,14.0\n170,377,13.5\n170,378,13.0\n170,379,12.5\n170,380,12.0\n170,381,11.5\n170,382,11.0\n170,383,10.5\n170,384,10.0\n170,385,9.5\n170,386,9.0\n170,387,8.5\n170,388,8.0\n170,389,7.5\n170,390,7.0\n170,391,6.5\n170,392,6.0\n170,393,5.5\n170,394,5.0\n170,395,4.5\n170,396,5.0\n170,397,5.5\n170,398,6.0\n170,399,6.5\n170,400,15.0\n170,401,14.5\n170,402,14.0\n170,403,13.5\n170,404,13.0\n170,405,12.5\n170,406,12.0\n170,407,11.5\n170,408,11.0\n170,409,10.5\n170,410,10.0\n170,411,9.5\n170,412,9.0\n170,413,8.5\n170,414,8.0\n170,415,7.5\n170,416,7.0\n170,417,6.5\n170,418,6.0\n170,419,5.5\n170,420,5.0\n170,421,5.5\n170,422,6.0\n170,423,6.5\n170,424,7.0\n170,425,15.5\n170,426,15.0\n170,427,14.5\n170,428,14.0\n170,429,13.5\n170,430,13.0\n170,431,12.5\n170,432,12.0\n170,433,11.5\n170,434,11.0\n170,435,10.5\n170,436,10.0\n170,437,9.5\n170,438,9.0\n170,439,8.5\n170,440,8.0\n170,441,7.5\n170,442,7.0\n170,443,6.5\n170,444,6.0\n170,445,5.5\n170,446,6.0\n170,447,6.5\n170,448,7.0\n170,449,7.5\n170,450,16.0\n170,451,15.5\n170,452,15.0\n170,453,14.5\n170,454,14.0\n170,455,13.5\n170,456,13.0\n170,457,12.5\n170,458,12.0\n170,459,11.5\n170,460,11.0\n170,461,10.5\n170,462,10.0\n170,463,9.5\n170,464,9.0\n170,465,8.5\n170,466,8.0\n170,467,7.5\n170,468,7.0\n170,469,6.5\n170,470,6.0\n170,471,6.5\n170,472,7.0\n170,473,7.5\n170,474,8.0\n170,475,16.5\n170,476,16.0\n170,477,15.5\n170,478,15.0\n170,479,14.5\n170,480,14.0\n170,481,13.5\n170,482,13.0\n170,483,12.5\n170,484,12.0\n170,485,11.5\n170,486,11.0\n170,487,10.5\n170,488,10.0\n170,489,9.5\n170,490,9.0\n170,491,8.5\n170,492,8.0\n170,493,7.5\n170,494,7.0\n170,495,6.5\n170,496,7.0\n170,497,7.5\n170,498,8.0\n170,499,8.5\n170,500,17.0\n170,501,16.5\n170,502,16.0\n170,503,15.5\n170,504,15.0\n170,505,14.5\n170,506,14.0\n170,507,13.5\n170,508,13.0\n170,509,12.5\n170,510,12.0\n170,511,11.5\n170,512,11.0\n170,513,10.5\n170,514,10.0\n170,515,9.5\n170,516,9.0\n170,517,8.5\n170,518,8.0\n170,519,7.5\n170,520,7.0\n170,521,7.5\n170,522,8.0\n170,523,8.5\n170,524,9.0\n170,525,17.5\n170,526,17.0\n170,527,16.5\n170,528,16.0\n170,529,15.5\n170,530,15.0\n170,531,14.5\n170,532,14.0\n170,533,13.5\n170,534,13.0\n170,535,12.5\n170,536,12.0\n170,537,11.5\n170,538,11.0\n170,539,10.5\n170,540,10.0\n170,541,9.5\n170,542,9.0\n170,543,8.5\n170,544,8.0\n170,545,7.5\n170,546,8.0\n170,547,8.5\n170,548,9.0\n170,549,9.5\n170,550,18.0\n170,551,17.5\n170,552,17.0\n170,553,16.5\n170,554,16.0\n170,555,15.5\n170,556,15.0\n170,557,14.5\n170,558,14.0\n170,559,13.5\n170,560,13.0\n170,561,12.5\n170,562,12.0\n170,563,11.5\n170,564,11.0\n170,565,10.5\n170,566,10.0\n170,567,9.5\n170,568,9.0\n170,569,8.5\n170,570,8.0\n170,571,8.5\n170,572,9.0\n170,573,9.5\n170,574,10.0\n170,575,18.5\n170,576,18.0\n170,577,17.5\n170,578,17.0\n170,579,16.5\n170,580,16.0\n170,581,15.5\n170,582,15.0\n170,583,14.5\n170,584,14.0\n170,585,13.5\n170,586,13.0\n170,587,12.5\n170,588,12.0\n170,589,11.5\n170,590,11.0\n170,591,10.5\n170,592,10.0\n170,593,9.5\n170,594,9.0\n170,595,8.5\n170,596,9.0\n170,597,9.5\n170,598,10.0\n170,599,10.5\n170,600,19.0\n170,601,18.5\n170,602,18.0\n170,603,17.5\n170,604,17.0\n170,605,16.5\n170,606,16.0\n170,607,15.5\n170,608,15.0\n170,609,14.5\n170,610,14.0\n170,611,13.5\n170,612,13.0\n170,613,12.5\n170,614,12.0\n170,615,11.5\n170,616,11.0\n170,617,10.5\n170,618,10.0\n170,619,9.5\n170,620,9.0\n170,621,9.5\n170,622,10.0\n170,623,10.5\n170,624,11.0\n171,0,13.5\n171,1,13.0\n171,2,12.5\n171,3,12.0\n171,4,11.5\n171,5,11.0\n171,6,10.5\n171,7,10.0\n171,8,9.5\n171,9,9.0\n171,10,8.5\n171,11,8.0\n171,12,7.5\n171,13,7.0\n171,14,6.5\n171,15,6.0\n171,16,5.5\n171,17,5.0\n171,18,4.5\n171,19,4.0\n171,20,3.5\n171,21,3.0\n171,22,3.5\n171,23,4.0\n171,24,4.5\n171,25,13.0\n171,26,12.5\n171,27,12.0\n171,28,11.5\n171,29,11.0\n171,30,10.5\n171,31,10.0\n171,32,9.5\n171,33,9.0\n171,34,8.5\n171,35,8.0\n171,36,7.5\n171,37,7.0\n171,38,6.5\n171,39,6.0\n171,40,5.5\n171,41,5.0\n171,42,4.5\n171,43,4.0\n171,44,3.5\n171,45,3.0\n171,46,2.5\n171,47,3.0\n171,48,3.5\n171,49,4.0\n171,50,12.5\n171,51,12.0\n171,52,11.5\n171,53,11.0\n171,54,10.5\n171,55,10.0\n171,56,9.5\n171,57,9.0\n171,58,8.5\n171,59,8.0\n171,60,7.5\n171,61,7.0\n171,62,6.5\n171,63,6.0\n171,64,5.5\n171,65,5.0\n171,66,4.5\n171,67,4.0\n171,68,3.5\n171,69,3.0\n171,70,2.5\n171,71,2.0\n171,72,2.5\n171,73,3.0\n171,74,3.5\n171,75,12.0\n171,76,11.5\n171,77,11.0\n171,78,10.5\n171,79,10.0\n171,80,9.5\n171,81,9.0\n171,82,8.5\n171,83,8.0\n171,84,7.5\n171,85,7.0\n171,86,6.5\n171,87,6.0\n171,88,5.5\n171,89,5.0\n171,90,4.5\n171,91,4.0\n171,92,3.5\n171,93,3.0\n171,94,2.5\n171,95,2.0\n171,96,1.5\n171,97,2.0\n171,98,2.5\n171,99,3.0\n171,100,11.5\n171,101,11.0\n171,102,10.5\n171,103,10.0\n171,104,9.5\n171,105,9.0\n171,106,8.5\n171,107,8.0\n171,108,7.5\n171,109,7.0\n171,110,6.5\n171,111,6.0\n171,112,5.5\n171,113,5.0\n171,114,4.5\n171,115,4.0\n171,116,3.5\n171,117,3.0\n171,118,2.5\n171,119,2.0\n171,120,1.5\n171,121,1.0\n171,122,1.5\n171,123,2.0\n171,124,2.5\n171,125,11.0\n171,126,10.5\n171,127,10.0\n171,128,9.5\n171,129,9.0\n171,130,8.5\n171,131,8.0\n171,132,7.5\n171,133,7.0\n171,134,6.5\n171,135,6.0\n171,136,5.5\n171,137,5.0\n171,138,4.5\n171,139,4.0\n171,140,3.5\n171,141,3.0\n171,142,2.5\n171,143,2.0\n171,144,1.5\n171,145,1.0\n171,146,0.5\n171,147,1.0\n171,148,1.5\n171,149,2.0\n171,150,10.5\n171,151,10.0\n171,152,9.5\n171,153,9.0\n171,154,8.5\n171,155,8.0\n171,156,7.5\n171,157,7.0\n171,158,6.5\n171,159,6.0\n171,160,5.5\n171,161,5.0\n171,162,4.5\n171,163,4.0\n171,164,3.5\n171,165,3.0\n171,166,2.5\n171,167,2.0\n171,168,1.5\n171,169,1.0\n171,170,0.5\n171,171,0\n171,172,0.5\n171,173,1.0\n171,174,1.5\n171,175,11.0\n171,176,10.5\n171,177,10.0\n171,178,9.5\n171,179,9.0\n171,180,8.5\n171,181,8.0\n171,182,7.5\n171,183,7.0\n171,184,6.5\n171,185,6.0\n171,186,5.5\n171,187,5.0\n171,188,4.5\n171,189,4.0\n171,190,3.5\n171,191,3.0\n171,192,2.5\n171,193,2.0\n171,194,1.5\n171,195,1.0\n171,196,0.5\n171,197,1.0\n171,198,1.5\n171,199,2.0\n171,200,11.5\n171,201,11.0\n171,202,10.5\n171,203,10.0\n171,204,9.5\n171,205,9.0\n171,206,8.5\n171,207,8.0\n171,208,7.5\n171,209,7.0\n171,210,6.5\n171,211,6.0\n171,212,5.5\n171,213,5.0\n171,214,4.5\n171,215,4.0\n171,216,3.5\n171,217,3.0\n171,218,2.5\n171,219,2.0\n171,220,1.5\n171,221,1.0\n171,222,1.5\n171,223,2.0\n171,224,2.5\n171,225,12.0\n171,226,11.5\n171,227,11.0\n171,228,10.5\n171,229,10.0\n171,230,9.5\n171,231,9.0\n171,232,8.5\n171,233,8.0\n171,234,7.5\n171,235,7.0\n171,236,6.5\n171,237,6.0\n171,238,5.5\n171,239,5.0\n171,240,4.5\n171,241,4.0\n171,242,3.5\n171,243,3.0\n171,244,2.5\n171,245,2.0\n171,246,1.5\n171,247,2.0\n171,248,2.5\n171,249,3.0\n171,250,12.5\n171,251,12.0\n171,252,11.5\n171,253,11.0\n171,254,10.5\n171,255,10.0\n171,256,9.5\n171,257,9.0\n171,258,8.5\n171,259,8.0\n171,260,7.5\n171,261,7.0\n171,262,6.5\n171,263,6.0\n171,264,5.5\n171,265,5.0\n171,266,4.5\n171,267,4.0\n171,268,3.5\n171,269,3.0\n171,270,2.5\n171,271,2.0\n171,272,2.5\n171,273,3.0\n171,274,3.5\n171,275,13.0\n171,276,12.5\n171,277,12.0\n171,278,11.5\n171,279,11.0\n171,280,10.5\n171,281,10.0\n171,282,9.5\n171,283,9.0\n171,284,8.5\n171,285,8.0\n171,286,7.5\n171,287,7.0\n171,288,6.5\n171,289,6.0\n171,290,5.5\n171,291,5.0\n171,292,4.5\n171,293,4.0\n171,294,3.5\n171,295,3.0\n171,296,2.5\n171,297,3.0\n171,298,3.5\n171,299,4.0\n171,300,13.5\n171,301,13.0\n171,302,12.5\n171,303,12.0\n171,304,11.5\n171,305,11.0\n171,306,10.5\n171,307,10.0\n171,308,9.5\n171,309,9.0\n171,310,8.5\n171,311,8.0\n171,312,7.5\n171,313,7.0\n171,314,6.5\n171,315,6.0\n171,316,5.5\n171,317,5.0\n171,318,4.5\n171,319,4.0\n171,320,3.5\n171,321,3.0\n171,322,3.5\n171,323,4.0\n171,324,4.5\n171,325,14.0\n171,326,13.5\n171,327,13.0\n171,328,12.5\n171,329,12.0\n171,330,11.5\n171,331,11.0\n171,332,10.5\n171,333,10.0\n171,334,9.5\n171,335,9.0\n171,336,8.5\n171,337,8.0\n171,338,7.5\n171,339,7.0\n171,340,6.5\n171,341,6.0\n171,342,5.5\n171,343,5.0\n171,344,4.5\n171,345,4.0\n171,346,3.5\n171,347,4.0\n171,348,4.5\n171,349,5.0\n171,350,14.5\n171,351,14.0\n171,352,13.5\n171,353,13.0\n171,354,12.5\n171,355,12.0\n171,356,11.5\n171,357,11.0\n171,358,10.5\n171,359,10.0\n171,360,9.5\n171,361,9.0\n171,362,8.5\n171,363,8.0\n171,364,7.5\n171,365,7.0\n171,366,6.5\n171,367,6.0\n171,368,5.5\n171,369,5.0\n171,370,4.5\n171,371,4.0\n171,372,4.5\n171,373,5.0\n171,374,5.5\n171,375,15.0\n171,376,14.5\n171,377,14.0\n171,378,13.5\n171,379,13.0\n171,380,12.5\n171,381,12.0\n171,382,11.5\n171,383,11.0\n171,384,10.5\n171,385,10.0\n171,386,9.5\n171,387,9.0\n171,388,8.5\n171,389,8.0\n171,390,7.5\n171,391,7.0\n171,392,6.5\n171,393,6.0\n171,394,5.5\n171,395,5.0\n171,396,4.5\n171,397,5.0\n171,398,5.5\n171,399,6.0\n171,400,15.5\n171,401,15.0\n171,402,14.5\n171,403,14.0\n171,404,13.5\n171,405,13.0\n171,406,12.5\n171,407,12.0\n171,408,11.5\n171,409,11.0\n171,410,10.5\n171,411,10.0\n171,412,9.5\n171,413,9.0\n171,414,8.5\n171,415,8.0\n171,416,7.5\n171,417,7.0\n171,418,6.5\n171,419,6.0\n171,420,5.5\n171,421,5.0\n171,422,5.5\n171,423,6.0\n171,424,6.5\n171,425,16.0\n171,426,15.5\n171,427,15.0\n171,428,14.5\n171,429,14.0\n171,430,13.5\n171,431,13.0\n171,432,12.5\n171,433,12.0\n171,434,11.5\n171,435,11.0\n171,436,10.5\n171,437,10.0\n171,438,9.5\n171,439,9.0\n171,440,8.5\n171,441,8.0\n171,442,7.5\n171,443,7.0\n171,444,6.5\n171,445,6.0\n171,446,5.5\n171,447,6.0\n171,448,6.5\n171,449,7.0\n171,450,16.5\n171,451,16.0\n171,452,15.5\n171,453,15.0\n171,454,14.5\n171,455,14.0\n171,456,13.5\n171,457,13.0\n171,458,12.5\n171,459,12.0\n171,460,11.5\n171,461,11.0\n171,462,10.5\n171,463,10.0\n171,464,9.5\n171,465,9.0\n171,466,8.5\n171,467,8.0\n171,468,7.5\n171,469,7.0\n171,470,6.5\n171,471,6.0\n171,472,6.5\n171,473,7.0\n171,474,7.5\n171,475,17.0\n171,476,16.5\n171,477,16.0\n171,478,15.5\n171,479,15.0\n171,480,14.5\n171,481,14.0\n171,482,13.5\n171,483,13.0\n171,484,12.5\n171,485,12.0\n171,486,11.5\n171,487,11.0\n171,488,10.5\n171,489,10.0\n171,490,9.5\n171,491,9.0\n171,492,8.5\n171,493,8.0\n171,494,7.5\n171,495,7.0\n171,496,6.5\n171,497,7.0\n171,498,7.5\n171,499,8.0\n171,500,17.5\n171,501,17.0\n171,502,16.5\n171,503,16.0\n171,504,15.5\n171,505,15.0\n171,506,14.5\n171,507,14.0\n171,508,13.5\n171,509,13.0\n171,510,12.5\n171,511,12.0\n171,512,11.5\n171,513,11.0\n171,514,10.5\n171,515,10.0\n171,516,9.5\n171,517,9.0\n171,518,8.5\n171,519,8.0\n171,520,7.5\n171,521,7.0\n171,522,7.5\n171,523,8.0\n171,524,8.5\n171,525,18.0\n171,526,17.5\n171,527,17.0\n171,528,16.5\n171,529,16.0\n171,530,15.5\n171,531,15.0\n171,532,14.5\n171,533,14.0\n171,534,13.5\n171,535,13.0\n171,536,12.5\n171,537,12.0\n171,538,11.5\n171,539,11.0\n171,540,10.5\n171,541,10.0\n171,542,9.5\n171,543,9.0\n171,544,8.5\n171,545,8.0\n171,546,7.5\n171,547,8.0\n171,548,8.5\n171,549,9.0\n171,550,18.5\n171,551,18.0\n171,552,17.5\n171,553,17.0\n171,554,16.5\n171,555,16.0\n171,556,15.5\n171,557,15.0\n171,558,14.5\n171,559,14.0\n171,560,13.5\n171,561,13.0\n171,562,12.5\n171,563,12.0\n171,564,11.5\n171,565,11.0\n171,566,10.5\n171,567,10.0\n171,568,9.5\n171,569,9.0\n171,570,8.5\n171,571,8.0\n171,572,8.5\n171,573,9.0\n171,574,9.5\n171,575,19.0\n171,576,18.5\n171,577,18.0\n171,578,17.5\n171,579,17.0\n171,580,16.5\n171,581,16.0\n171,582,15.5\n171,583,15.0\n171,584,14.5\n171,585,14.0\n171,586,13.5\n171,587,13.0\n171,588,12.5\n171,589,12.0\n171,590,11.5\n171,591,11.0\n171,592,10.5\n171,593,10.0\n171,594,9.5\n171,595,9.0\n171,596,8.5\n171,597,9.0\n171,598,9.5\n171,599,10.0\n171,600,19.5\n171,601,19.0\n171,602,18.5\n171,603,18.0\n171,604,17.5\n171,605,17.0\n171,606,16.5\n171,607,16.0\n171,608,15.5\n171,609,15.0\n171,610,14.5\n171,611,14.0\n171,612,13.5\n171,613,13.0\n171,614,12.5\n171,615,12.0\n171,616,11.5\n171,617,11.0\n171,618,10.5\n171,619,10.0\n171,620,9.5\n171,621,9.0\n171,622,9.5\n171,623,10.0\n171,624,10.5\n172,0,14.0\n172,1,13.5\n172,2,13.0\n172,3,12.5\n172,4,12.0\n172,5,11.5\n172,6,11.0\n172,7,10.5\n172,8,10.0\n172,9,9.5\n172,10,9.0\n172,11,8.5\n172,12,8.0\n172,13,7.5\n172,14,7.0\n172,15,6.5\n172,16,6.0\n172,17,5.5\n172,18,5.0\n172,19,4.5\n172,20,4.0\n172,21,3.5\n172,22,3.0\n172,23,3.5\n172,24,4.0\n172,25,13.5\n172,26,13.0\n172,27,12.5\n172,28,12.0\n172,29,11.5\n172,30,11.0\n172,31,10.5\n172,32,10.0\n172,33,9.5\n172,34,9.0\n172,35,8.5\n172,36,8.0\n172,37,7.5\n172,38,7.0\n172,39,6.5\n172,40,6.0\n172,41,5.5\n172,42,5.0\n172,43,4.5\n172,44,4.0\n172,45,3.5\n172,46,3.0\n172,47,2.5\n172,48,3.0\n172,49,3.5\n172,50,13.0\n172,51,12.5\n172,52,12.0\n172,53,11.5\n172,54,11.0\n172,55,10.5\n172,56,10.0\n172,57,9.5\n172,58,9.0\n172,59,8.5\n172,60,8.0\n172,61,7.5\n172,62,7.0\n172,63,6.5\n172,64,6.0\n172,65,5.5\n172,66,5.0\n172,67,4.5\n172,68,4.0\n172,69,3.5\n172,70,3.0\n172,71,2.5\n172,72,2.0\n172,73,2.5\n172,74,3.0\n172,75,12.5\n172,76,12.0\n172,77,11.5\n172,78,11.0\n172,79,10.5\n172,80,10.0\n172,81,9.5\n172,82,9.0\n172,83,8.5\n172,84,8.0\n172,85,7.5\n172,86,7.0\n172,87,6.5\n172,88,6.0\n172,89,5.5\n172,90,5.0\n172,91,4.5\n172,92,4.0\n172,93,3.5\n172,94,3.0\n172,95,2.5\n172,96,2.0\n172,97,1.5\n172,98,2.0\n172,99,2.5\n172,100,12.0\n172,101,11.5\n172,102,11.0\n172,103,10.5\n172,104,10.0\n172,105,9.5\n172,106,9.0\n172,107,8.5\n172,108,8.0\n172,109,7.5\n172,110,7.0\n172,111,6.5\n172,112,6.0\n172,113,5.5\n172,114,5.0\n172,115,4.5\n172,116,4.0\n172,117,3.5\n172,118,3.0\n172,119,2.5\n172,120,2.0\n172,121,1.5\n172,122,1.0\n172,123,1.5\n172,124,2.0\n172,125,11.5\n172,126,11.0\n172,127,10.5\n172,128,10.0\n172,129,9.5\n172,130,9.0\n172,131,8.5\n172,132,8.0\n172,133,7.5\n172,134,7.0\n172,135,6.5\n172,136,6.0\n172,137,5.5\n172,138,5.0\n172,139,4.5\n172,140,4.0\n172,141,3.5\n172,142,3.0\n172,143,2.5\n172,144,2.0\n172,145,1.5\n172,146,1.0\n172,147,0.5\n172,148,1.0\n172,149,1.5\n172,150,11.0\n172,151,10.5\n172,152,10.0\n172,153,9.5\n172,154,9.0\n172,155,8.5\n172,156,8.0\n172,157,7.5\n172,158,7.0\n172,159,6.5\n172,160,6.0\n172,161,5.5\n172,162,5.0\n172,163,4.5\n172,164,4.0\n172,165,3.5\n172,166,3.0\n172,167,2.5\n172,168,2.0\n172,169,1.5\n172,170,1.0\n172,171,0.5\n172,172,0\n172,173,0.5\n172,174,1.0\n172,175,11.5\n172,176,11.0\n172,177,10.5\n172,178,10.0\n172,179,9.5\n172,180,9.0\n172,181,8.5\n172,182,8.0\n172,183,7.5\n172,184,7.0\n172,185,6.5\n172,186,6.0\n172,187,5.5\n172,188,5.0\n172,189,4.5\n172,190,4.0\n172,191,3.5\n172,192,3.0\n172,193,2.5\n172,194,2.0\n172,195,1.5\n172,196,1.0\n172,197,0.5\n172,198,1.0\n172,199,1.5\n172,200,12.0\n172,201,11.5\n172,202,11.0\n172,203,10.5\n172,204,10.0\n172,205,9.5\n172,206,9.0\n172,207,8.5\n172,208,8.0\n172,209,7.5\n172,210,7.0\n172,211,6.5\n172,212,6.0\n172,213,5.5\n172,214,5.0\n172,215,4.5\n172,216,4.0\n172,217,3.5\n172,218,3.0\n172,219,2.5\n172,220,2.0\n172,221,1.5\n172,222,1.0\n172,223,1.5\n172,224,2.0\n172,225,12.5\n172,226,12.0\n172,227,11.5\n172,228,11.0\n172,229,10.5\n172,230,10.0\n172,231,9.5\n172,232,9.0\n172,233,8.5\n172,234,8.0\n172,235,7.5\n172,236,7.0\n172,237,6.5\n172,238,6.0\n172,239,5.5\n172,240,5.0\n172,241,4.5\n172,242,4.0\n172,243,3.5\n172,244,3.0\n172,245,2.5\n172,246,2.0\n172,247,1.5\n172,248,2.0\n172,249,2.5\n172,250,13.0\n172,251,12.5\n172,252,12.0\n172,253,11.5\n172,254,11.0\n172,255,10.5\n172,256,10.0\n172,257,9.5\n172,258,9.0\n172,259,8.5\n172,260,8.0\n172,261,7.5\n172,262,7.0\n172,263,6.5\n172,264,6.0\n172,265,5.5\n172,266,5.0\n172,267,4.5\n172,268,4.0\n172,269,3.5\n172,270,3.0\n172,271,2.5\n172,272,2.0\n172,273,2.5\n172,274,3.0\n172,275,13.5\n172,276,13.0\n172,277,12.5\n172,278,12.0\n172,279,11.5\n172,280,11.0\n172,281,10.5\n172,282,10.0\n172,283,9.5\n172,284,9.0\n172,285,8.5\n172,286,8.0\n172,287,7.5\n172,288,7.0\n172,289,6.5\n172,290,6.0\n172,291,5.5\n172,292,5.0\n172,293,4.5\n172,294,4.0\n172,295,3.5\n172,296,3.0\n172,297,2.5\n172,298,3.0\n172,299,3.5\n172,300,14.0\n172,301,13.5\n172,302,13.0\n172,303,12.5\n172,304,12.0\n172,305,11.5\n172,306,11.0\n172,307,10.5\n172,308,10.0\n172,309,9.5\n172,310,9.0\n172,311,8.5\n172,312,8.0\n172,313,7.5\n172,314,7.0\n172,315,6.5\n172,316,6.0\n172,317,5.5\n172,318,5.0\n172,319,4.5\n172,320,4.0\n172,321,3.5\n172,322,3.0\n172,323,3.5\n172,324,4.0\n172,325,14.5\n172,326,14.0\n172,327,13.5\n172,328,13.0\n172,329,12.5\n172,330,12.0\n172,331,11.5\n172,332,11.0\n172,333,10.5\n172,334,10.0\n172,335,9.5\n172,336,9.0\n172,337,8.5\n172,338,8.0\n172,339,7.5\n172,340,7.0\n172,341,6.5\n172,342,6.0\n172,343,5.5\n172,344,5.0\n172,345,4.5\n172,346,4.0\n172,347,3.5\n172,348,4.0\n172,349,4.5\n172,350,15.0\n172,351,14.5\n172,352,14.0\n172,353,13.5\n172,354,13.0\n172,355,12.5\n172,356,12.0\n172,357,11.5\n172,358,11.0\n172,359,10.5\n172,360,10.0\n172,361,9.5\n172,362,9.0\n172,363,8.5\n172,364,8.0\n172,365,7.5\n172,366,7.0\n172,367,6.5\n172,368,6.0\n172,369,5.5\n172,370,5.0\n172,371,4.5\n172,372,4.0\n172,373,4.5\n172,374,5.0\n172,375,15.5\n172,376,15.0\n172,377,14.5\n172,378,14.0\n172,379,13.5\n172,380,13.0\n172,381,12.5\n172,382,12.0\n172,383,11.5\n172,384,11.0\n172,385,10.5\n172,386,10.0\n172,387,9.5\n172,388,9.0\n172,389,8.5\n172,390,8.0\n172,391,7.5\n172,392,7.0\n172,393,6.5\n172,394,6.0\n172,395,5.5\n172,396,5.0\n172,397,4.5\n172,398,5.0\n172,399,5.5\n172,400,16.0\n172,401,15.5\n172,402,15.0\n172,403,14.5\n172,404,14.0\n172,405,13.5\n172,406,13.0\n172,407,12.5\n172,408,12.0\n172,409,11.5\n172,410,11.0\n172,411,10.5\n172,412,10.0\n172,413,9.5\n172,414,9.0\n172,415,8.5\n172,416,8.0\n172,417,7.5\n172,418,7.0\n172,419,6.5\n172,420,6.0\n172,421,5.5\n172,422,5.0\n172,423,5.5\n172,424,6.0\n172,425,16.5\n172,426,16.0\n172,427,15.5\n172,428,15.0\n172,429,14.5\n172,430,14.0\n172,431,13.5\n172,432,13.0\n172,433,12.5\n172,434,12.0\n172,435,11.5\n172,436,11.0\n172,437,10.5\n172,438,10.0\n172,439,9.5\n172,440,9.0\n172,441,8.5\n172,442,8.0\n172,443,7.5\n172,444,7.0\n172,445,6.5\n172,446,6.0\n172,447,5.5\n172,448,6.0\n172,449,6.5\n172,450,17.0\n172,451,16.5\n172,452,16.0\n172,453,15.5\n172,454,15.0\n172,455,14.5\n172,456,14.0\n172,457,13.5\n172,458,13.0\n172,459,12.5\n172,460,12.0\n172,461,11.5\n172,462,11.0\n172,463,10.5\n172,464,10.0\n172,465,9.5\n172,466,9.0\n172,467,8.5\n172,468,8.0\n172,469,7.5\n172,470,7.0\n172,471,6.5\n172,472,6.0\n172,473,6.5\n172,474,7.0\n172,475,17.5\n172,476,17.0\n172,477,16.5\n172,478,16.0\n172,479,15.5\n172,480,15.0\n172,481,14.5\n172,482,14.0\n172,483,13.5\n172,484,13.0\n172,485,12.5\n172,486,12.0\n172,487,11.5\n172,488,11.0\n172,489,10.5\n172,490,10.0\n172,491,9.5\n172,492,9.0\n172,493,8.5\n172,494,8.0\n172,495,7.5\n172,496,7.0\n172,497,6.5\n172,498,7.0\n172,499,7.5\n172,500,18.0\n172,501,17.5\n172,502,17.0\n172,503,16.5\n172,504,16.0\n172,505,15.5\n172,506,15.0\n172,507,14.5\n172,508,14.0\n172,509,13.5\n172,510,13.0\n172,511,12.5\n172,512,12.0\n172,513,11.5\n172,514,11.0\n172,515,10.5\n172,516,10.0\n172,517,9.5\n172,518,9.0\n172,519,8.5\n172,520,8.0\n172,521,7.5\n172,522,7.0\n172,523,7.5\n172,524,8.0\n172,525,18.5\n172,526,18.0\n172,527,17.5\n172,528,17.0\n172,529,16.5\n172,530,16.0\n172,531,15.5\n172,532,15.0\n172,533,14.5\n172,534,14.0\n172,535,13.5\n172,536,13.0\n172,537,12.5\n172,538,12.0\n172,539,11.5\n172,540,11.0\n172,541,10.5\n172,542,10.0\n172,543,9.5\n172,544,9.0\n172,545,8.5\n172,546,8.0\n172,547,7.5\n172,548,8.0\n172,549,8.5\n172,550,19.0\n172,551,18.5\n172,552,18.0\n172,553,17.5\n172,554,17.0\n172,555,16.5\n172,556,16.0\n172,557,15.5\n172,558,15.0\n172,559,14.5\n172,560,14.0\n172,561,13.5\n172,562,13.0\n172,563,12.5\n172,564,12.0\n172,565,11.5\n172,566,11.0\n172,567,10.5\n172,568,10.0\n172,569,9.5\n172,570,9.0\n172,571,8.5\n172,572,8.0\n172,573,8.5\n172,574,9.0\n172,575,19.5\n172,576,19.0\n172,577,18.5\n172,578,18.0\n172,579,17.5\n172,580,17.0\n172,581,16.5\n172,582,16.0\n172,583,15.5\n172,584,15.0\n172,585,14.5\n172,586,14.0\n172,587,13.5\n172,588,13.0\n172,589,12.5\n172,590,12.0\n172,591,11.5\n172,592,11.0\n172,593,10.5\n172,594,10.0\n172,595,9.5\n172,596,9.0\n172,597,8.5\n172,598,9.0\n172,599,9.5\n172,600,20.0\n172,601,19.5\n172,602,19.0\n172,603,18.5\n172,604,18.0\n172,605,17.5\n172,606,17.0\n172,607,16.5\n172,608,16.0\n172,609,15.5\n172,610,15.0\n172,611,14.5\n172,612,14.0\n172,613,13.5\n172,614,13.0\n172,615,12.5\n172,616,12.0\n172,617,11.5\n172,618,11.0\n172,619,10.5\n172,620,10.0\n172,621,9.5\n172,622,9.0\n172,623,9.5\n172,624,10.0\n173,0,14.5\n173,1,14.0\n173,2,13.5\n173,3,13.0\n173,4,12.5\n173,5,12.0\n173,6,11.5\n173,7,11.0\n173,8,10.5\n173,9,10.0\n173,10,9.5\n173,11,9.0\n173,12,8.5\n173,13,8.0\n173,14,7.5\n173,15,7.0\n173,16,6.5\n173,17,6.0\n173,18,5.5\n173,19,5.0\n173,20,4.5\n173,21,4.0\n173,22,3.5\n173,23,3.0\n173,24,3.5\n173,25,14.0\n173,26,13.5\n173,27,13.0\n173,28,12.5\n173,29,12.0\n173,30,11.5\n173,31,11.0\n173,32,10.5\n173,33,10.0\n173,34,9.5\n173,35,9.0\n173,36,8.5\n173,37,8.0\n173,38,7.5\n173,39,7.0\n173,40,6.5\n173,41,6.0\n173,42,5.5\n173,43,5.0\n173,44,4.5\n173,45,4.0\n173,46,3.5\n173,47,3.0\n173,48,2.5\n173,49,3.0\n173,50,13.5\n173,51,13.0\n173,52,12.5\n173,53,12.0\n173,54,11.5\n173,55,11.0\n173,56,10.5\n173,57,10.0\n173,58,9.5\n173,59,9.0\n173,60,8.5\n173,61,8.0\n173,62,7.5\n173,63,7.0\n173,64,6.5\n173,65,6.0\n173,66,5.5\n173,67,5.0\n173,68,4.5\n173,69,4.0\n173,70,3.5\n173,71,3.0\n173,72,2.5\n173,73,2.0\n173,74,2.5\n173,75,13.0\n173,76,12.5\n173,77,12.0\n173,78,11.5\n173,79,11.0\n173,80,10.5\n173,81,10.0\n173,82,9.5\n173,83,9.0\n173,84,8.5\n173,85,8.0\n173,86,7.5\n173,87,7.0\n173,88,6.5\n173,89,6.0\n173,90,5.5\n173,91,5.0\n173,92,4.5\n173,93,4.0\n173,94,3.5\n173,95,3.0\n173,96,2.5\n173,97,2.0\n173,98,1.5\n173,99,2.0\n173,100,12.5\n173,101,12.0\n173,102,11.5\n173,103,11.0\n173,104,10.5\n173,105,10.0\n173,106,9.5\n173,107,9.0\n173,108,8.5\n173,109,8.0\n173,110,7.5\n173,111,7.0\n173,112,6.5\n173,113,6.0\n173,114,5.5\n173,115,5.0\n173,116,4.5\n173,117,4.0\n173,118,3.5\n173,119,3.0\n173,120,2.5\n173,121,2.0\n173,122,1.5\n173,123,1.0\n173,124,1.5\n173,125,12.0\n173,126,11.5\n173,127,11.0\n173,128,10.5\n173,129,10.0\n173,130,9.5\n173,131,9.0\n173,132,8.5\n173,133,8.0\n173,134,7.5\n173,135,7.0\n173,136,6.5\n173,137,6.0\n173,138,5.5\n173,139,5.0\n173,140,4.5\n173,141,4.0\n173,142,3.5\n173,143,3.0\n173,144,2.5\n173,145,2.0\n173,146,1.5\n173,147,1.0\n173,148,0.5\n173,149,1.0\n173,150,11.5\n173,151,11.0\n173,152,10.5\n173,153,10.0\n173,154,9.5\n173,155,9.0\n173,156,8.5\n173,157,8.0\n173,158,7.5\n173,159,7.0\n173,160,6.5\n173,161,6.0\n173,162,5.5\n173,163,5.0\n173,164,4.5\n173,165,4.0\n173,166,3.5\n173,167,3.0\n173,168,2.5\n173,169,2.0\n173,170,1.5\n173,171,1.0\n173,172,0.5\n173,173,0\n173,174,0.5\n173,175,12.0\n173,176,11.5\n173,177,11.0\n173,178,10.5\n173,179,10.0\n173,180,9.5\n173,181,9.0\n173,182,8.5\n173,183,8.0\n173,184,7.5\n173,185,7.0\n173,186,6.5\n173,187,6.0\n173,188,5.5\n173,189,5.0\n173,190,4.5\n173,191,4.0\n173,192,3.5\n173,193,3.0\n173,194,2.5\n173,195,2.0\n173,196,1.5\n173,197,1.0\n173,198,0.5\n173,199,1.0\n173,200,12.5\n173,201,12.0\n173,202,11.5\n173,203,11.0\n173,204,10.5\n173,205,10.0\n173,206,9.5\n173,207,9.0\n173,208,8.5\n173,209,8.0\n173,210,7.5\n173,211,7.0\n173,212,6.5\n173,213,6.0\n173,214,5.5\n173,215,5.0\n173,216,4.5\n173,217,4.0\n173,218,3.5\n173,219,3.0\n173,220,2.5\n173,221,2.0\n173,222,1.5\n173,223,1.0\n173,224,1.5\n173,225,13.0\n173,226,12.5\n173,227,12.0\n173,228,11.5\n173,229,11.0\n173,230,10.5\n173,231,10.0\n173,232,9.5\n173,233,9.0\n173,234,8.5\n173,235,8.0\n173,236,7.5\n173,237,7.0\n173,238,6.5\n173,239,6.0\n173,240,5.5\n173,241,5.0\n173,242,4.5\n173,243,4.0\n173,244,3.5\n173,245,3.0\n173,246,2.5\n173,247,2.0\n173,248,1.5\n173,249,2.0\n173,250,13.5\n173,251,13.0\n173,252,12.5\n173,253,12.0\n173,254,11.5\n173,255,11.0\n173,256,10.5\n173,257,10.0\n173,258,9.5\n173,259,9.0\n173,260,8.5\n173,261,8.0\n173,262,7.5\n173,263,7.0\n173,264,6.5\n173,265,6.0\n173,266,5.5\n173,267,5.0\n173,268,4.5\n173,269,4.0\n173,270,3.5\n173,271,3.0\n173,272,2.5\n173,273,2.0\n173,274,2.5\n173,275,14.0\n173,276,13.5\n173,277,13.0\n173,278,12.5\n173,279,12.0\n173,280,11.5\n173,281,11.0\n173,282,10.5\n173,283,10.0\n173,284,9.5\n173,285,9.0\n173,286,8.5\n173,287,8.0\n173,288,7.5\n173,289,7.0\n173,290,6.5\n173,291,6.0\n173,292,5.5\n173,293,5.0\n173,294,4.5\n173,295,4.0\n173,296,3.5\n173,297,3.0\n173,298,2.5\n173,299,3.0\n173,300,14.5\n173,301,14.0\n173,302,13.5\n173,303,13.0\n173,304,12.5\n173,305,12.0\n173,306,11.5\n173,307,11.0\n173,308,10.5\n173,309,10.0\n173,310,9.5\n173,311,9.0\n173,312,8.5\n173,313,8.0\n173,314,7.5\n173,315,7.0\n173,316,6.5\n173,317,6.0\n173,318,5.5\n173,319,5.0\n173,320,4.5\n173,321,4.0\n173,322,3.5\n173,323,3.0\n173,324,3.5\n173,325,15.0\n173,326,14.5\n173,327,14.0\n173,328,13.5\n173,329,13.0\n173,330,12.5\n173,331,12.0\n173,332,11.5\n173,333,11.0\n173,334,10.5\n173,335,10.0\n173,336,9.5\n173,337,9.0\n173,338,8.5\n173,339,8.0\n173,340,7.5\n173,341,7.0\n173,342,6.5\n173,343,6.0\n173,344,5.5\n173,345,5.0\n173,346,4.5\n173,347,4.0\n173,348,3.5\n173,349,4.0\n173,350,15.5\n173,351,15.0\n173,352,14.5\n173,353,14.0\n173,354,13.5\n173,355,13.0\n173,356,12.5\n173,357,12.0\n173,358,11.5\n173,359,11.0\n173,360,10.5\n173,361,10.0\n173,362,9.5\n173,363,9.0\n173,364,8.5\n173,365,8.0\n173,366,7.5\n173,367,7.0\n173,368,6.5\n173,369,6.0\n173,370,5.5\n173,371,5.0\n173,372,4.5\n173,373,4.0\n173,374,4.5\n173,375,16.0\n173,376,15.5\n173,377,15.0\n173,378,14.5\n173,379,14.0\n173,380,13.5\n173,381,13.0\n173,382,12.5\n173,383,12.0\n173,384,11.5\n173,385,11.0\n173,386,10.5\n173,387,10.0\n173,388,9.5\n173,389,9.0\n173,390,8.5\n173,391,8.0\n173,392,7.5\n173,393,7.0\n173,394,6.5\n173,395,6.0\n173,396,5.5\n173,397,5.0\n173,398,4.5\n173,399,5.0\n173,400,16.5\n173,401,16.0\n173,402,15.5\n173,403,15.0\n173,404,14.5\n173,405,14.0\n173,406,13.5\n173,407,13.0\n173,408,12.5\n173,409,12.0\n173,410,11.5\n173,411,11.0\n173,412,10.5\n173,413,10.0\n173,414,9.5\n173,415,9.0\n173,416,8.5\n173,417,8.0\n173,418,7.5\n173,419,7.0\n173,420,6.5\n173,421,6.0\n173,422,5.5\n173,423,5.0\n173,424,5.5\n173,425,17.0\n173,426,16.5\n173,427,16.0\n173,428,15.5\n173,429,15.0\n173,430,14.5\n173,431,14.0\n173,432,13.5\n173,433,13.0\n173,434,12.5\n173,435,12.0\n173,436,11.5\n173,437,11.0\n173,438,10.5\n173,439,10.0\n173,440,9.5\n173,441,9.0\n173,442,8.5\n173,443,8.0\n173,444,7.5\n173,445,7.0\n173,446,6.5\n173,447,6.0\n173,448,5.5\n173,449,6.0\n173,450,17.5\n173,451,17.0\n173,452,16.5\n173,453,16.0\n173,454,15.5\n173,455,15.0\n173,456,14.5\n173,457,14.0\n173,458,13.5\n173,459,13.0\n173,460,12.5\n173,461,12.0\n173,462,11.5\n173,463,11.0\n173,464,10.5\n173,465,10.0\n173,466,9.5\n173,467,9.0\n173,468,8.5\n173,469,8.0\n173,470,7.5\n173,471,7.0\n173,472,6.5\n173,473,6.0\n173,474,6.5\n173,475,18.0\n173,476,17.5\n173,477,17.0\n173,478,16.5\n173,479,16.0\n173,480,15.5\n173,481,15.0\n173,482,14.5\n173,483,14.0\n173,484,13.5\n173,485,13.0\n173,486,12.5\n173,487,12.0\n173,488,11.5\n173,489,11.0\n173,490,10.5\n173,491,10.0\n173,492,9.5\n173,493,9.0\n173,494,8.5\n173,495,8.0\n173,496,7.5\n173,497,7.0\n173,498,6.5\n173,499,7.0\n173,500,18.5\n173,501,18.0\n173,502,17.5\n173,503,17.0\n173,504,16.5\n173,505,16.0\n173,506,15.5\n173,507,15.0\n173,508,14.5\n173,509,14.0\n173,510,13.5\n173,511,13.0\n173,512,12.5\n173,513,12.0\n173,514,11.5\n173,515,11.0\n173,516,10.5\n173,517,10.0\n173,518,9.5\n173,519,9.0\n173,520,8.5\n173,521,8.0\n173,522,7.5\n173,523,7.0\n173,524,7.5\n173,525,19.0\n173,526,18.5\n173,527,18.0\n173,528,17.5\n173,529,17.0\n173,530,16.5\n173,531,16.0\n173,532,15.5\n173,533,15.0\n173,534,14.5\n173,535,14.0\n173,536,13.5\n173,537,13.0\n173,538,12.5\n173,539,12.0\n173,540,11.5\n173,541,11.0\n173,542,10.5\n173,543,10.0\n173,544,9.5\n173,545,9.0\n173,546,8.5\n173,547,8.0\n173,548,7.5\n173,549,8.0\n173,550,19.5\n173,551,19.0\n173,552,18.5\n173,553,18.0\n173,554,17.5\n173,555,17.0\n173,556,16.5\n173,557,16.0\n173,558,15.5\n173,559,15.0\n173,560,14.5\n173,561,14.0\n173,562,13.5\n173,563,13.0\n173,564,12.5\n173,565,12.0\n173,566,11.5\n173,567,11.0\n173,568,10.5\n173,569,10.0\n173,570,9.5\n173,571,9.0\n173,572,8.5\n173,573,8.0\n173,574,8.5\n173,575,20.0\n173,576,19.5\n173,577,19.0\n173,578,18.5\n173,579,18.0\n173,580,17.5\n173,581,17.0\n173,582,16.5\n173,583,16.0\n173,584,15.5\n173,585,15.0\n173,586,14.5\n173,587,14.0\n173,588,13.5\n173,589,13.0\n173,590,12.5\n173,591,12.0\n173,592,11.5\n173,593,11.0\n173,594,10.5\n173,595,10.0\n173,596,9.5\n173,597,9.0\n173,598,8.5\n173,599,9.0\n173,600,20.5\n173,601,20.0\n173,602,19.5\n173,603,19.0\n173,604,18.5\n173,605,18.0\n173,606,17.5\n173,607,17.0\n173,608,16.5\n173,609,16.0\n173,610,15.5\n173,611,15.0\n173,612,14.5\n173,613,14.0\n173,614,13.5\n173,615,13.0\n173,616,12.5\n173,617,12.0\n173,618,11.5\n173,619,11.0\n173,620,10.5\n173,621,10.0\n173,622,9.5\n173,623,9.0\n173,624,9.5\n174,0,15.0\n174,1,14.5\n174,2,14.0\n174,3,13.5\n174,4,13.0\n174,5,12.5\n174,6,12.0\n174,7,11.5\n174,8,11.0\n174,9,10.5\n174,10,10.0\n174,11,9.5\n174,12,9.0\n174,13,8.5\n174,14,8.0\n174,15,7.5\n174,16,7.0\n174,17,6.5\n174,18,6.0\n174,19,5.5\n174,20,5.0\n174,21,4.5\n174,22,4.0\n174,23,3.5\n174,24,3.0\n174,25,14.5\n174,26,14.0\n174,27,13.5\n174,28,13.0\n174,29,12.5\n174,30,12.0\n174,31,11.5\n174,32,11.0\n174,33,10.5\n174,34,10.0\n174,35,9.5\n174,36,9.0\n174,37,8.5\n174,38,8.0\n174,39,7.5\n174,40,7.0\n174,41,6.5\n174,42,6.0\n174,43,5.5\n174,44,5.0\n174,45,4.5\n174,46,4.0\n174,47,3.5\n174,48,3.0\n174,49,2.5\n174,50,14.0\n174,51,13.5\n174,52,13.0\n174,53,12.5\n174,54,12.0\n174,55,11.5\n174,56,11.0\n174,57,10.5\n174,58,10.0\n174,59,9.5\n174,60,9.0\n174,61,8.5\n174,62,8.0\n174,63,7.5\n174,64,7.0\n174,65,6.5\n174,66,6.0\n174,67,5.5\n174,68,5.0\n174,69,4.5\n174,70,4.0\n174,71,3.5\n174,72,3.0\n174,73,2.5\n174,74,2.0\n174,75,13.5\n174,76,13.0\n174,77,12.5\n174,78,12.0\n174,79,11.5\n174,80,11.0\n174,81,10.5\n174,82,10.0\n174,83,9.5\n174,84,9.0\n174,85,8.5\n174,86,8.0\n174,87,7.5\n174,88,7.0\n174,89,6.5\n174,90,6.0\n174,91,5.5\n174,92,5.0\n174,93,4.5\n174,94,4.0\n174,95,3.5\n174,96,3.0\n174,97,2.5\n174,98,2.0\n174,99,1.5\n174,100,13.0\n174,101,12.5\n174,102,12.0\n174,103,11.5\n174,104,11.0\n174,105,10.5\n174,106,10.0\n174,107,9.5\n174,108,9.0\n174,109,8.5\n174,110,8.0\n174,111,7.5\n174,112,7.0\n174,113,6.5\n174,114,6.0\n174,115,5.5\n174,116,5.0\n174,117,4.5\n174,118,4.0\n174,119,3.5\n174,120,3.0\n174,121,2.5\n174,122,2.0\n174,123,1.5\n174,124,1.0\n174,125,12.5\n174,126,12.0\n174,127,11.5\n174,128,11.0\n174,129,10.5\n174,130,10.0\n174,131,9.5\n174,132,9.0\n174,133,8.5\n174,134,8.0\n174,135,7.5\n174,136,7.0\n174,137,6.5\n174,138,6.0\n174,139,5.5\n174,140,5.0\n174,141,4.5\n174,142,4.0\n174,143,3.5\n174,144,3.0\n174,145,2.5\n174,146,2.0\n174,147,1.5\n174,148,1.0\n174,149,0.5\n174,150,12.0\n174,151,11.5\n174,152,11.0\n174,153,10.5\n174,154,10.0\n174,155,9.5\n174,156,9.0\n174,157,8.5\n174,158,8.0\n174,159,7.5\n174,160,7.0\n174,161,6.5\n174,162,6.0\n174,163,5.5\n174,164,5.0\n174,165,4.5\n174,166,4.0\n174,167,3.5\n174,168,3.0\n174,169,2.5\n174,170,2.0\n174,171,1.5\n174,172,1.0\n174,173,0.5\n174,174,0\n174,175,12.5\n174,176,12.0\n174,177,11.5\n174,178,11.0\n174,179,10.5\n174,180,10.0\n174,181,9.5\n174,182,9.0\n174,183,8.5\n174,184,8.0\n174,185,7.5\n174,186,7.0\n174,187,6.5\n174,188,6.0\n174,189,5.5\n174,190,5.0\n174,191,4.5\n174,192,4.0\n174,193,3.5\n174,194,3.0\n174,195,2.5\n174,196,2.0\n174,197,1.5\n174,198,1.0\n174,199,0.5\n174,200,13.0\n174,201,12.5\n174,202,12.0\n174,203,11.5\n174,204,11.0\n174,205,10.5\n174,206,10.0\n174,207,9.5\n174,208,9.0\n174,209,8.5\n174,210,8.0\n174,211,7.5\n174,212,7.0\n174,213,6.5\n174,214,6.0\n174,215,5.5\n174,216,5.0\n174,217,4.5\n174,218,4.0\n174,219,3.5\n174,220,3.0\n174,221,2.5\n174,222,2.0\n174,223,1.5\n174,224,1.0\n174,225,13.5\n174,226,13.0\n174,227,12.5\n174,228,12.0\n174,229,11.5\n174,230,11.0\n174,231,10.5\n174,232,10.0\n174,233,9.5\n174,234,9.0\n174,235,8.5\n174,236,8.0\n174,237,7.5\n174,238,7.0\n174,239,6.5\n174,240,6.0\n174,241,5.5\n174,242,5.0\n174,243,4.5\n174,244,4.0\n174,245,3.5\n174,246,3.0\n174,247,2.5\n174,248,2.0\n174,249,1.5\n174,250,14.0\n174,251,13.5\n174,252,13.0\n174,253,12.5\n174,254,12.0\n174,255,11.5\n174,256,11.0\n174,257,10.5\n174,258,10.0\n174,259,9.5\n174,260,9.0\n174,261,8.5\n174,262,8.0\n174,263,7.5\n174,264,7.0\n174,265,6.5\n174,266,6.0\n174,267,5.5\n174,268,5.0\n174,269,4.5\n174,270,4.0\n174,271,3.5\n174,272,3.0\n174,273,2.5\n174,274,2.0\n174,275,14.5\n174,276,14.0\n174,277,13.5\n174,278,13.0\n174,279,12.5\n174,280,12.0\n174,281,11.5\n174,282,11.0\n174,283,10.5\n174,284,10.0\n174,285,9.5\n174,286,9.0\n174,287,8.5\n174,288,8.0\n174,289,7.5\n174,290,7.0\n174,291,6.5\n174,292,6.0\n174,293,5.5\n174,294,5.0\n174,295,4.5\n174,296,4.0\n174,297,3.5\n174,298,3.0\n174,299,2.5\n174,300,15.0\n174,301,14.5\n174,302,14.0\n174,303,13.5\n174,304,13.0\n174,305,12.5\n174,306,12.0\n174,307,11.5\n174,308,11.0\n174,309,10.5\n174,310,10.0\n174,311,9.5\n174,312,9.0\n174,313,8.5\n174,314,8.0\n174,315,7.5\n174,316,7.0\n174,317,6.5\n174,318,6.0\n174,319,5.5\n174,320,5.0\n174,321,4.5\n174,322,4.0\n174,323,3.5\n174,324,3.0\n174,325,15.5\n174,326,15.0\n174,327,14.5\n174,328,14.0\n174,329,13.5\n174,330,13.0\n174,331,12.5\n174,332,12.0\n174,333,11.5\n174,334,11.0\n174,335,10.5\n174,336,10.0\n174,337,9.5\n174,338,9.0\n174,339,8.5\n174,340,8.0\n174,341,7.5\n174,342,7.0\n174,343,6.5\n174,344,6.0\n174,345,5.5\n174,346,5.0\n174,347,4.5\n174,348,4.0\n174,349,3.5\n174,350,16.0\n174,351,15.5\n174,352,15.0\n174,353,14.5\n174,354,14.0\n174,355,13.5\n174,356,13.0\n174,357,12.5\n174,358,12.0\n174,359,11.5\n174,360,11.0\n174,361,10.5\n174,362,10.0\n174,363,9.5\n174,364,9.0\n174,365,8.5\n174,366,8.0\n174,367,7.5\n174,368,7.0\n174,369,6.5\n174,370,6.0\n174,371,5.5\n174,372,5.0\n174,373,4.5\n174,374,4.0\n174,375,16.5\n174,376,16.0\n174,377,15.5\n174,378,15.0\n174,379,14.5\n174,380,14.0\n174,381,13.5\n174,382,13.0\n174,383,12.5\n174,384,12.0\n174,385,11.5\n174,386,11.0\n174,387,10.5\n174,388,10.0\n174,389,9.5\n174,390,9.0\n174,391,8.5\n174,392,8.0\n174,393,7.5\n174,394,7.0\n174,395,6.5\n174,396,6.0\n174,397,5.5\n174,398,5.0\n174,399,4.5\n174,400,17.0\n174,401,16.5\n174,402,16.0\n174,403,15.5\n174,404,15.0\n174,405,14.5\n174,406,14.0\n174,407,13.5\n174,408,13.0\n174,409,12.5\n174,410,12.0\n174,411,11.5\n174,412,11.0\n174,413,10.5\n174,414,10.0\n174,415,9.5\n174,416,9.0\n174,417,8.5\n174,418,8.0\n174,419,7.5\n174,420,7.0\n174,421,6.5\n174,422,6.0\n174,423,5.5\n174,424,5.0\n174,425,17.5\n174,426,17.0\n174,427,16.5\n174,428,16.0\n174,429,15.5\n174,430,15.0\n174,431,14.5\n174,432,14.0\n174,433,13.5\n174,434,13.0\n174,435,12.5\n174,436,12.0\n174,437,11.5\n174,438,11.0\n174,439,10.5\n174,440,10.0\n174,441,9.5\n174,442,9.0\n174,443,8.5\n174,444,8.0\n174,445,7.5\n174,446,7.0\n174,447,6.5\n174,448,6.0\n174,449,5.5\n174,450,18.0\n174,451,17.5\n174,452,17.0\n174,453,16.5\n174,454,16.0\n174,455,15.5\n174,456,15.0\n174,457,14.5\n174,458,14.0\n174,459,13.5\n174,460,13.0\n174,461,12.5\n174,462,12.0\n174,463,11.5\n174,464,11.0\n174,465,10.5\n174,466,10.0\n174,467,9.5\n174,468,9.0\n174,469,8.5\n174,470,8.0\n174,471,7.5\n174,472,7.0\n174,473,6.5\n174,474,6.0\n174,475,18.5\n174,476,18.0\n174,477,17.5\n174,478,17.0\n174,479,16.5\n174,480,16.0\n174,481,15.5\n174,482,15.0\n174,483,14.5\n174,484,14.0\n174,485,13.5\n174,486,13.0\n174,487,12.5\n174,488,12.0\n174,489,11.5\n174,490,11.0\n174,491,10.5\n174,492,10.0\n174,493,9.5\n174,494,9.0\n174,495,8.5\n174,496,8.0\n174,497,7.5\n174,498,7.0\n174,499,6.5\n174,500,19.0\n174,501,18.5\n174,502,18.0\n174,503,17.5\n174,504,17.0\n174,505,16.5\n174,506,16.0\n174,507,15.5\n174,508,15.0\n174,509,14.5\n174,510,14.0\n174,511,13.5\n174,512,13.0\n174,513,12.5\n174,514,12.0\n174,515,11.5\n174,516,11.0\n174,517,10.5\n174,518,10.0\n174,519,9.5\n174,520,9.0\n174,521,8.5\n174,522,8.0\n174,523,7.5\n174,524,7.0\n174,525,19.5\n174,526,19.0\n174,527,18.5\n174,528,18.0\n174,529,17.5\n174,530,17.0\n174,531,16.5\n174,532,16.0\n174,533,15.5\n174,534,15.0\n174,535,14.5\n174,536,14.0\n174,537,13.5\n174,538,13.0\n174,539,12.5\n174,540,12.0\n174,541,11.5\n174,542,11.0\n174,543,10.5\n174,544,10.0\n174,545,9.5\n174,546,9.0\n174,547,8.5\n174,548,8.0\n174,549,7.5\n174,550,20.0\n174,551,19.5\n174,552,19.0\n174,553,18.5\n174,554,18.0\n174,555,17.5\n174,556,17.0\n174,557,16.5\n174,558,16.0\n174,559,15.5\n174,560,15.0\n174,561,14.5\n174,562,14.0\n174,563,13.5\n174,564,13.0\n174,565,12.5\n174,566,12.0\n174,567,11.5\n174,568,11.0\n174,569,10.5\n174,570,10.0\n174,571,9.5\n174,572,9.0\n174,573,8.5\n174,574,8.0\n174,575,20.5\n174,576,20.0\n174,577,19.5\n174,578,19.0\n174,579,18.5\n174,580,18.0\n174,581,17.5\n174,582,17.0\n174,583,16.5\n174,584,16.0\n174,585,15.5\n174,586,15.0\n174,587,14.5\n174,588,14.0\n174,589,13.5\n174,590,13.0\n174,591,12.5\n174,592,12.0\n174,593,11.5\n174,594,11.0\n174,595,10.5\n174,596,10.0\n174,597,9.5\n174,598,9.0\n174,599,8.5\n174,600,21.0\n174,601,20.5\n174,602,20.0\n174,603,19.5\n174,604,19.0\n174,605,18.5\n174,606,18.0\n174,607,17.5\n174,608,17.0\n174,609,16.5\n174,610,16.0\n174,611,15.5\n174,612,15.0\n174,613,14.5\n174,614,14.0\n174,615,13.5\n174,616,13.0\n174,617,12.5\n174,618,12.0\n174,619,11.5\n174,620,11.0\n174,621,10.5\n174,622,10.0\n174,623,9.5\n174,624,9.0\n175,0,3.5\n175,1,4.0\n175,2,4.5\n175,3,5.0\n175,4,5.5\n175,5,6.0\n175,6,6.5\n175,7,7.0\n175,8,7.5\n175,9,8.0\n175,10,8.5\n175,11,9.0\n175,12,9.5\n175,13,10.0\n175,14,10.5\n175,15,11.0\n175,16,11.5\n175,17,12.0\n175,18,12.5\n175,19,13.0\n175,20,13.5\n175,21,14.0\n175,22,14.5\n175,23,15.0\n175,24,15.5\n175,25,3.0\n175,26,3.5\n175,27,4.0\n175,28,4.5\n175,29,5.0\n175,30,5.5\n175,31,6.0\n175,32,6.5\n175,33,7.0\n175,34,7.5\n175,35,8.0\n175,36,8.5\n175,37,9.0\n175,38,9.5\n175,39,10.0\n175,40,10.5\n175,41,11.0\n175,42,11.5\n175,43,12.0\n175,44,12.5\n175,45,13.0\n175,46,13.5\n175,47,14.0\n175,48,14.5\n175,49,15.0\n175,50,2.5\n175,51,3.0\n175,52,3.5\n175,53,4.0\n175,54,4.5\n175,55,5.0\n175,56,5.5\n175,57,6.0\n175,58,6.5\n175,59,7.0\n175,60,7.5\n175,61,8.0\n175,62,8.5\n175,63,9.0\n175,64,9.5\n175,65,10.0\n175,66,10.5\n175,67,11.0\n175,68,11.5\n175,69,12.0\n175,70,12.5\n175,71,13.0\n175,72,13.5\n175,73,14.0\n175,74,14.5\n175,75,2.0\n175,76,2.5\n175,77,3.0\n175,78,3.5\n175,79,4.0\n175,80,4.5\n175,81,5.0\n175,82,5.5\n175,83,6.0\n175,84,6.5\n175,85,7.0\n175,86,7.5\n175,87,8.0\n175,88,8.5\n175,89,9.0\n175,90,9.5\n175,91,10.0\n175,92,10.5\n175,93,11.0\n175,94,11.5\n175,95,12.0\n175,96,12.5\n175,97,13.0\n175,98,13.5\n175,99,14.0\n175,100,1.5\n175,101,2.0\n175,102,2.5\n175,103,3.0\n175,104,3.5\n175,105,4.0\n175,106,4.5\n175,107,5.0\n175,108,5.5\n175,109,6.0\n175,110,6.5\n175,111,7.0\n175,112,7.5\n175,113,8.0\n175,114,8.5\n175,115,9.0\n175,116,9.5\n175,117,10.0\n175,118,10.5\n175,119,11.0\n175,120,11.5\n175,121,12.0\n175,122,12.5\n175,123,13.0\n175,124,13.5\n175,125,1.0\n175,126,1.5\n175,127,2.0\n175,128,2.5\n175,129,3.0\n175,130,3.5\n175,131,4.0\n175,132,4.5\n175,133,5.0\n175,134,5.5\n175,135,6.0\n175,136,6.5\n175,137,7.0\n175,138,7.5\n175,139,8.0\n175,140,8.5\n175,141,9.0\n175,142,9.5\n175,143,10.0\n175,144,10.5\n175,145,11.0\n175,146,11.5\n175,147,12.0\n175,148,12.5\n175,149,13.0\n175,150,0.5\n175,151,1.0\n175,152,1.5\n175,153,2.0\n175,154,2.5\n175,155,3.0\n175,156,3.5\n175,157,4.0\n175,158,4.5\n175,159,5.0\n175,160,5.5\n175,161,6.0\n175,162,6.5\n175,163,7.0\n175,164,7.5\n175,165,8.0\n175,166,8.5\n175,167,9.0\n175,168,9.5\n175,169,10.0\n175,170,10.5\n175,171,11.0\n175,172,11.5\n175,173,12.0\n175,174,12.5\n175,175,0\n175,176,0.5\n175,177,1.0\n175,178,1.5\n175,179,2.0\n175,180,2.5\n175,181,3.0\n175,182,3.5\n175,183,4.0\n175,184,4.5\n175,185,5.0\n175,186,5.5\n175,187,6.0\n175,188,6.5\n175,189,7.0\n175,190,7.5\n175,191,8.0\n175,192,8.5\n175,193,9.0\n175,194,9.5\n175,195,10.0\n175,196,10.5\n175,197,11.0\n175,198,11.5\n175,199,12.0\n175,200,0.5\n175,201,1.0\n175,202,1.5\n175,203,2.0\n175,204,2.5\n175,205,3.0\n175,206,3.5\n175,207,4.0\n175,208,4.5\n175,209,5.0\n175,210,5.5\n175,211,6.0\n175,212,6.5\n175,213,7.0\n175,214,7.5\n175,215,8.0\n175,216,8.5\n175,217,9.0\n175,218,9.5\n175,219,10.0\n175,220,10.5\n175,221,11.0\n175,222,11.5\n175,223,12.0\n175,224,12.5\n175,225,1.0\n175,226,1.5\n175,227,2.0\n175,228,2.5\n175,229,3.0\n175,230,3.5\n175,231,4.0\n175,232,4.5\n175,233,5.0\n175,234,5.5\n175,235,6.0\n175,236,6.5\n175,237,7.0\n175,238,7.5\n175,239,8.0\n175,240,8.5\n175,241,9.0\n175,242,9.5\n175,243,10.0\n175,244,10.5\n175,245,11.0\n175,246,11.5\n175,247,12.0\n175,248,12.5\n175,249,13.0\n175,250,1.5\n175,251,2.0\n175,252,2.5\n175,253,3.0\n175,254,3.5\n175,255,4.0\n175,256,4.5\n175,257,5.0\n175,258,5.5\n175,259,6.0\n175,260,6.5\n175,261,7.0\n175,262,7.5\n175,263,8.0\n175,264,8.5\n175,265,9.0\n175,266,9.5\n175,267,10.0\n175,268,10.5\n175,269,11.0\n175,270,11.5\n175,271,12.0\n175,272,12.5\n175,273,13.0\n175,274,13.5\n175,275,2.0\n175,276,2.5\n175,277,3.0\n175,278,3.5\n175,279,4.0\n175,280,4.5\n175,281,5.0\n175,282,5.5\n175,283,6.0\n175,284,6.5\n175,285,7.0\n175,286,7.5\n175,287,8.0\n175,288,8.5\n175,289,9.0\n175,290,9.5\n175,291,10.0\n175,292,10.5\n175,293,11.0\n175,294,11.5\n175,295,12.0\n175,296,12.5\n175,297,13.0\n175,298,13.5\n175,299,14.0\n175,300,2.5\n175,301,3.0\n175,302,3.5\n175,303,4.0\n175,304,4.5\n175,305,5.0\n175,306,5.5\n175,307,6.0\n175,308,6.5\n175,309,7.0\n175,310,7.5\n175,311,8.0\n175,312,8.5\n175,313,9.0\n175,314,9.5\n175,315,10.0\n175,316,10.5\n175,317,11.0\n175,318,11.5\n175,319,12.0\n175,320,12.5\n175,321,13.0\n175,322,13.5\n175,323,14.0\n175,324,14.5\n175,325,3.0\n175,326,3.5\n175,327,4.0\n175,328,4.5\n175,329,5.0\n175,330,5.5\n175,331,6.0\n175,332,6.5\n175,333,7.0\n175,334,7.5\n175,335,8.0\n175,336,8.5\n175,337,9.0\n175,338,9.5\n175,339,10.0\n175,340,10.5\n175,341,11.0\n175,342,11.5\n175,343,12.0\n175,344,12.5\n175,345,13.0\n175,346,13.5\n175,347,14.0\n175,348,14.5\n175,349,15.0\n175,350,3.5\n175,351,4.0\n175,352,4.5\n175,353,5.0\n175,354,5.5\n175,355,6.0\n175,356,6.5\n175,357,7.0\n175,358,7.5\n175,359,8.0\n175,360,8.5\n175,361,9.0\n175,362,9.5\n175,363,10.0\n175,364,10.5\n175,365,11.0\n175,366,11.5\n175,367,12.0\n175,368,12.5\n175,369,13.0\n175,370,13.5\n175,371,14.0\n175,372,14.5\n175,373,15.0\n175,374,15.5\n175,375,4.0\n175,376,4.5\n175,377,5.0\n175,378,5.5\n175,379,6.0\n175,380,6.5\n175,381,7.0\n175,382,7.5\n175,383,8.0\n175,384,8.5\n175,385,9.0\n175,386,9.5\n175,387,10.0\n175,388,10.5\n175,389,11.0\n175,390,11.5\n175,391,12.0\n175,392,12.5\n175,393,13.0\n175,394,13.5\n175,395,14.0\n175,396,14.5\n175,397,15.0\n175,398,15.5\n175,399,16.0\n175,400,4.5\n175,401,5.0\n175,402,5.5\n175,403,6.0\n175,404,6.5\n175,405,7.0\n175,406,7.5\n175,407,8.0\n175,408,8.5\n175,409,9.0\n175,410,9.5\n175,411,10.0\n175,412,10.5\n175,413,11.0\n175,414,11.5\n175,415,12.0\n175,416,12.5\n175,417,13.0\n175,418,13.5\n175,419,14.0\n175,420,14.5\n175,421,15.0\n175,422,15.5\n175,423,16.0\n175,424,16.5\n175,425,5.0\n175,426,5.5\n175,427,6.0\n175,428,6.5\n175,429,7.0\n175,430,7.5\n175,431,8.0\n175,432,8.5\n175,433,9.0\n175,434,9.5\n175,435,10.0\n175,436,10.5\n175,437,11.0\n175,438,11.5\n175,439,12.0\n175,440,12.5\n175,441,13.0\n175,442,13.5\n175,443,14.0\n175,444,14.5\n175,445,15.0\n175,446,15.5\n175,447,16.0\n175,448,16.5\n175,449,17.0\n175,450,5.5\n175,451,6.0\n175,452,6.5\n175,453,7.0\n175,454,7.5\n175,455,8.0\n175,456,8.5\n175,457,9.0\n175,458,9.5\n175,459,10.0\n175,460,10.5\n175,461,11.0\n175,462,11.5\n175,463,12.0\n175,464,12.5\n175,465,13.0\n175,466,13.5\n175,467,14.0\n175,468,14.5\n175,469,15.0\n175,470,15.5\n175,471,16.0\n175,472,16.5\n175,473,17.0\n175,474,17.5\n175,475,6.0\n175,476,6.5\n175,477,7.0\n175,478,7.5\n175,479,8.0\n175,480,8.5\n175,481,9.0\n175,482,9.5\n175,483,10.0\n175,484,10.5\n175,485,11.0\n175,486,11.5\n175,487,12.0\n175,488,12.5\n175,489,13.0\n175,490,13.5\n175,491,14.0\n175,492,14.5\n175,493,15.0\n175,494,15.5\n175,495,16.0\n175,496,16.5\n175,497,17.0\n175,498,17.5\n175,499,18.0\n175,500,6.5\n175,501,7.0\n175,502,7.5\n175,503,8.0\n175,504,8.5\n175,505,9.0\n175,506,9.5\n175,507,10.0\n175,508,10.5\n175,509,11.0\n175,510,11.5\n175,511,12.0\n175,512,12.5\n175,513,13.0\n175,514,13.5\n175,515,14.0\n175,516,14.5\n175,517,15.0\n175,518,15.5\n175,519,16.0\n175,520,16.5\n175,521,17.0\n175,522,17.5\n175,523,18.0\n175,524,18.5\n175,525,7.0\n175,526,7.5\n175,527,8.0\n175,528,8.5\n175,529,9.0\n175,530,9.5\n175,531,10.0\n175,532,10.5\n175,533,11.0\n175,534,11.5\n175,535,12.0\n175,536,12.5\n175,537,13.0\n175,538,13.5\n175,539,14.0\n175,540,14.5\n175,541,15.0\n175,542,15.5\n175,543,16.0\n175,544,16.5\n175,545,17.0\n175,546,17.5\n175,547,18.0\n175,548,18.5\n175,549,19.0\n175,550,7.5\n175,551,8.0\n175,552,8.5\n175,553,9.0\n175,554,9.5\n175,555,10.0\n175,556,10.5\n175,557,11.0\n175,558,11.5\n175,559,12.0\n175,560,12.5\n175,561,13.0\n175,562,13.5\n175,563,14.0\n175,564,14.5\n175,565,15.0\n175,566,15.5\n175,567,16.0\n175,568,16.5\n175,569,17.0\n175,570,17.5\n175,571,18.0\n175,572,18.5\n175,573,19.0\n175,574,19.5\n175,575,8.0\n175,576,8.5\n175,577,9.0\n175,578,9.5\n175,579,10.0\n175,580,10.5\n175,581,11.0\n175,582,11.5\n175,583,12.0\n175,584,12.5\n175,585,13.0\n175,586,13.5\n175,587,14.0\n175,588,14.5\n175,589,15.0\n175,590,15.5\n175,591,16.0\n175,592,16.5\n175,593,17.0\n175,594,17.5\n175,595,18.0\n175,596,18.5\n175,597,19.0\n175,598,19.5\n175,599,20.0\n175,600,8.5\n175,601,9.0\n175,602,9.5\n175,603,10.0\n175,604,10.5\n175,605,11.0\n175,606,11.5\n175,607,12.0\n175,608,12.5\n175,609,13.0\n175,610,13.5\n175,611,14.0\n175,612,14.5\n175,613,15.0\n175,614,15.5\n175,615,16.0\n175,616,16.5\n175,617,17.0\n175,618,17.5\n175,619,18.0\n175,620,18.5\n175,621,19.0\n175,622,19.5\n175,623,20.0\n175,624,20.5\n176,0,4.0\n176,1,3.5\n176,2,4.0\n176,3,4.5\n176,4,5.0\n176,5,5.5\n176,6,6.0\n176,7,6.5\n176,8,7.0\n176,9,7.5\n176,10,8.0\n176,11,8.5\n176,12,9.0\n176,13,9.5\n176,14,10.0\n176,15,10.5\n176,16,11.0\n176,17,11.5\n176,18,12.0\n176,19,12.5\n176,20,13.0\n176,21,13.5\n176,22,14.0\n176,23,14.5\n176,24,15.0\n176,25,3.5\n176,26,3.0\n176,27,3.5\n176,28,4.0\n176,29,4.5\n176,30,5.0\n176,31,5.5\n176,32,6.0\n176,33,6.5\n176,34,7.0\n176,35,7.5\n176,36,8.0\n176,37,8.5\n176,38,9.0\n176,39,9.5\n176,40,10.0\n176,41,10.5\n176,42,11.0\n176,43,11.5\n176,44,12.0\n176,45,12.5\n176,46,13.0\n176,47,13.5\n176,48,14.0\n176,49,14.5\n176,50,3.0\n176,51,2.5\n176,52,3.0\n176,53,3.5\n176,54,4.0\n176,55,4.5\n176,56,5.0\n176,57,5.5\n176,58,6.0\n176,59,6.5\n176,60,7.0\n176,61,7.5\n176,62,8.0\n176,63,8.5\n176,64,9.0\n176,65,9.5\n176,66,10.0\n176,67,10.5\n176,68,11.0\n176,69,11.5\n176,70,12.0\n176,71,12.5\n176,72,13.0\n176,73,13.5\n176,74,14.0\n176,75,2.5\n176,76,2.0\n176,77,2.5\n176,78,3.0\n176,79,3.5\n176,80,4.0\n176,81,4.5\n176,82,5.0\n176,83,5.5\n176,84,6.0\n176,85,6.5\n176,86,7.0\n176,87,7.5\n176,88,8.0\n176,89,8.5\n176,90,9.0\n176,91,9.5\n176,92,10.0\n176,93,10.5\n176,94,11.0\n176,95,11.5\n176,96,12.0\n176,97,12.5\n176,98,13.0\n176,99,13.5\n176,100,2.0\n176,101,1.5\n176,102,2.0\n176,103,2.5\n176,104,3.0\n176,105,3.5\n176,106,4.0\n176,107,4.5\n176,108,5.0\n176,109,5.5\n176,110,6.0\n176,111,6.5\n176,112,7.0\n176,113,7.5\n176,114,8.0\n176,115,8.5\n176,116,9.0\n176,117,9.5\n176,118,10.0\n176,119,10.5\n176,120,11.0\n176,121,11.5\n176,122,12.0\n176,123,12.5\n176,124,13.0\n176,125,1.5\n176,126,1.0\n176,127,1.5\n176,128,2.0\n176,129,2.5\n176,130,3.0\n176,131,3.5\n176,132,4.0\n176,133,4.5\n176,134,5.0\n176,135,5.5\n176,136,6.0\n176,137,6.5\n176,138,7.0\n176,139,7.5\n176,140,8.0\n176,141,8.5\n176,142,9.0\n176,143,9.5\n176,144,10.0\n176,145,10.5\n176,146,11.0\n176,147,11.5\n176,148,12.0\n176,149,12.5\n176,150,1.0\n176,151,0.5\n176,152,1.0\n176,153,1.5\n176,154,2.0\n176,155,2.5\n176,156,3.0\n176,157,3.5\n176,158,4.0\n176,159,4.5\n176,160,5.0\n176,161,5.5\n176,162,6.0\n176,163,6.5\n176,164,7.0\n176,165,7.5\n176,166,8.0\n176,167,8.5\n176,168,9.0\n176,169,9.5\n176,170,10.0\n176,171,10.5\n176,172,11.0\n176,173,11.5\n176,174,12.0\n176,175,0.5\n176,176,0\n176,177,0.5\n176,178,1.0\n176,179,1.5\n176,180,2.0\n176,181,2.5\n176,182,3.0\n176,183,3.5\n176,184,4.0\n176,185,4.5\n176,186,5.0\n176,187,5.5\n176,188,6.0\n176,189,6.5\n176,190,7.0\n176,191,7.5\n176,192,8.0\n176,193,8.5\n176,194,9.0\n176,195,9.5\n176,196,10.0\n176,197,10.5\n176,198,11.0\n176,199,11.5\n176,200,1.0\n176,201,0.5\n176,202,1.0\n176,203,1.5\n176,204,2.0\n176,205,2.5\n176,206,3.0\n176,207,3.5\n176,208,4.0\n176,209,4.5\n176,210,5.0\n176,211,5.5\n176,212,6.0\n176,213,6.5\n176,214,7.0\n176,215,7.5\n176,216,8.0\n176,217,8.5\n176,218,9.0\n176,219,9.5\n176,220,10.0\n176,221,10.5\n176,222,11.0\n176,223,11.5\n176,224,12.0\n176,225,1.5\n176,226,1.0\n176,227,1.5\n176,228,2.0\n176,229,2.5\n176,230,3.0\n176,231,3.5\n176,232,4.0\n176,233,4.5\n176,234,5.0\n176,235,5.5\n176,236,6.0\n176,237,6.5\n176,238,7.0\n176,239,7.5\n176,240,8.0\n176,241,8.5\n176,242,9.0\n176,243,9.5\n176,244,10.0\n176,245,10.5\n176,246,11.0\n176,247,11.5\n176,248,12.0\n176,249,12.5\n176,250,2.0\n176,251,1.5\n176,252,2.0\n176,253,2.5\n176,254,3.0\n176,255,3.5\n176,256,4.0\n176,257,4.5\n176,258,5.0\n176,259,5.5\n176,260,6.0\n176,261,6.5\n176,262,7.0\n176,263,7.5\n176,264,8.0\n176,265,8.5\n176,266,9.0\n176,267,9.5\n176,268,10.0\n176,269,10.5\n176,270,11.0\n176,271,11.5\n176,272,12.0\n176,273,12.5\n176,274,13.0\n176,275,2.5\n176,276,2.0\n176,277,2.5\n176,278,3.0\n176,279,3.5\n176,280,4.0\n176,281,4.5\n176,282,5.0\n176,283,5.5\n176,284,6.0\n176,285,6.5\n176,286,7.0\n176,287,7.5\n176,288,8.0\n176,289,8.5\n176,290,9.0\n176,291,9.5\n176,292,10.0\n176,293,10.5\n176,294,11.0\n176,295,11.5\n176,296,12.0\n176,297,12.5\n176,298,13.0\n176,299,13.5\n176,300,3.0\n176,301,2.5\n176,302,3.0\n176,303,3.5\n176,304,4.0\n176,305,4.5\n176,306,5.0\n176,307,5.5\n176,308,6.0\n176,309,6.5\n176,310,7.0\n176,311,7.5\n176,312,8.0\n176,313,8.5\n176,314,9.0\n176,315,9.5\n176,316,10.0\n176,317,10.5\n176,318,11.0\n176,319,11.5\n176,320,12.0\n176,321,12.5\n176,322,13.0\n176,323,13.5\n176,324,14.0\n176,325,3.5\n176,326,3.0\n176,327,3.5\n176,328,4.0\n176,329,4.5\n176,330,5.0\n176,331,5.5\n176,332,6.0\n176,333,6.5\n176,334,7.0\n176,335,7.5\n176,336,8.0\n176,337,8.5\n176,338,9.0\n176,339,9.5\n176,340,10.0\n176,341,10.5\n176,342,11.0\n176,343,11.5\n176,344,12.0\n176,345,12.5\n176,346,13.0\n176,347,13.5\n176,348,14.0\n176,349,14.5\n176,350,4.0\n176,351,3.5\n176,352,4.0\n176,353,4.5\n176,354,5.0\n176,355,5.5\n176,356,6.0\n176,357,6.5\n176,358,7.0\n176,359,7.5\n176,360,8.0\n176,361,8.5\n176,362,9.0\n176,363,9.5\n176,364,10.0\n176,365,10.5\n176,366,11.0\n176,367,11.5\n176,368,12.0\n176,369,12.5\n176,370,13.0\n176,371,13.5\n176,372,14.0\n176,373,14.5\n176,374,15.0\n176,375,4.5\n176,376,4.0\n176,377,4.5\n176,378,5.0\n176,379,5.5\n176,380,6.0\n176,381,6.5\n176,382,7.0\n176,383,7.5\n176,384,8.0\n176,385,8.5\n176,386,9.0\n176,387,9.5\n176,388,10.0\n176,389,10.5\n176,390,11.0\n176,391,11.5\n176,392,12.0\n176,393,12.5\n176,394,13.0\n176,395,13.5\n176,396,14.0\n176,397,14.5\n176,398,15.0\n176,399,15.5\n176,400,5.0\n176,401,4.5\n176,402,5.0\n176,403,5.5\n176,404,6.0\n176,405,6.5\n176,406,7.0\n176,407,7.5\n176,408,8.0\n176,409,8.5\n176,410,9.0\n176,411,9.5\n176,412,10.0\n176,413,10.5\n176,414,11.0\n176,415,11.5\n176,416,12.0\n176,417,12.5\n176,418,13.0\n176,419,13.5\n176,420,14.0\n176,421,14.5\n176,422,15.0\n176,423,15.5\n176,424,16.0\n176,425,5.5\n176,426,5.0\n176,427,5.5\n176,428,6.0\n176,429,6.5\n176,430,7.0\n176,431,7.5\n176,432,8.0\n176,433,8.5\n176,434,9.0\n176,435,9.5\n176,436,10.0\n176,437,10.5\n176,438,11.0\n176,439,11.5\n176,440,12.0\n176,441,12.5\n176,442,13.0\n176,443,13.5\n176,444,14.0\n176,445,14.5\n176,446,15.0\n176,447,15.5\n176,448,16.0\n176,449,16.5\n176,450,6.0\n176,451,5.5\n176,452,6.0\n176,453,6.5\n176,454,7.0\n176,455,7.5\n176,456,8.0\n176,457,8.5\n176,458,9.0\n176,459,9.5\n176,460,10.0\n176,461,10.5\n176,462,11.0\n176,463,11.5\n176,464,12.0\n176,465,12.5\n176,466,13.0\n176,467,13.5\n176,468,14.0\n176,469,14.5\n176,470,15.0\n176,471,15.5\n176,472,16.0\n176,473,16.5\n176,474,17.0\n176,475,6.5\n176,476,6.0\n176,477,6.5\n176,478,7.0\n176,479,7.5\n176,480,8.0\n176,481,8.5\n176,482,9.0\n176,483,9.5\n176,484,10.0\n176,485,10.5\n176,486,11.0\n176,487,11.5\n176,488,12.0\n176,489,12.5\n176,490,13.0\n176,491,13.5\n176,492,14.0\n176,493,14.5\n176,494,15.0\n176,495,15.5\n176,496,16.0\n176,497,16.5\n176,498,17.0\n176,499,17.5\n176,500,7.0\n176,501,6.5\n176,502,7.0\n176,503,7.5\n176,504,8.0\n176,505,8.5\n176,506,9.0\n176,507,9.5\n176,508,10.0\n176,509,10.5\n176,510,11.0\n176,511,11.5\n176,512,12.0\n176,513,12.5\n176,514,13.0\n176,515,13.5\n176,516,14.0\n176,517,14.5\n176,518,15.0\n176,519,15.5\n176,520,16.0\n176,521,16.5\n176,522,17.0\n176,523,17.5\n176,524,18.0\n176,525,7.5\n176,526,7.0\n176,527,7.5\n176,528,8.0\n176,529,8.5\n176,530,9.0\n176,531,9.5\n176,532,10.0\n176,533,10.5\n176,534,11.0\n176,535,11.5\n176,536,12.0\n176,537,12.5\n176,538,13.0\n176,539,13.5\n176,540,14.0\n176,541,14.5\n176,542,15.0\n176,543,15.5\n176,544,16.0\n176,545,16.5\n176,546,17.0\n176,547,17.5\n176,548,18.0\n176,549,18.5\n176,550,8.0\n176,551,7.5\n176,552,8.0\n176,553,8.5\n176,554,9.0\n176,555,9.5\n176,556,10.0\n176,557,10.5\n176,558,11.0\n176,559,11.5\n176,560,12.0\n176,561,12.5\n176,562,13.0\n176,563,13.5\n176,564,14.0\n176,565,14.5\n176,566,15.0\n176,567,15.5\n176,568,16.0\n176,569,16.5\n176,570,17.0\n176,571,17.5\n176,572,18.0\n176,573,18.5\n176,574,19.0\n176,575,8.5\n176,576,8.0\n176,577,8.5\n176,578,9.0\n176,579,9.5\n176,580,10.0\n176,581,10.5\n176,582,11.0\n176,583,11.5\n176,584,12.0\n176,585,12.5\n176,586,13.0\n176,587,13.5\n176,588,14.0\n176,589,14.5\n176,590,15.0\n176,591,15.5\n176,592,16.0\n176,593,16.5\n176,594,17.0\n176,595,17.5\n176,596,18.0\n176,597,18.5\n176,598,19.0\n176,599,19.5\n176,600,9.0\n176,601,8.5\n176,602,9.0\n176,603,9.5\n176,604,10.0\n176,605,10.5\n176,606,11.0\n176,607,11.5\n176,608,12.0\n176,609,12.5\n176,610,13.0\n176,611,13.5\n176,612,14.0\n176,613,14.5\n176,614,15.0\n176,615,15.5\n176,616,16.0\n176,617,16.5\n176,618,17.0\n176,619,17.5\n176,620,18.0\n176,621,18.5\n176,622,19.0\n176,623,19.5\n176,624,20.0\n177,0,4.5\n177,1,4.0\n177,2,3.5\n177,3,4.0\n177,4,4.5\n177,5,5.0\n177,6,5.5\n177,7,6.0\n177,8,6.5\n177,9,7.0\n177,10,7.5\n177,11,8.0\n177,12,8.5\n177,13,9.0\n177,14,9.5\n177,15,10.0\n177,16,10.5\n177,17,11.0\n177,18,11.5\n177,19,12.0\n177,20,12.5\n177,21,13.0\n177,22,13.5\n177,23,14.0\n177,24,14.5\n177,25,4.0\n177,26,3.5\n177,27,3.0\n177,28,3.5\n177,29,4.0\n177,30,4.5\n177,31,5.0\n177,32,5.5\n177,33,6.0\n177,34,6.5\n177,35,7.0\n177,36,7.5\n177,37,8.0\n177,38,8.5\n177,39,9.0\n177,40,9.5\n177,41,10.0\n177,42,10.5\n177,43,11.0\n177,44,11.5\n177,45,12.0\n177,46,12.5\n177,47,13.0\n177,48,13.5\n177,49,14.0\n177,50,3.5\n177,51,3.0\n177,52,2.5\n177,53,3.0\n177,54,3.5\n177,55,4.0\n177,56,4.5\n177,57,5.0\n177,58,5.5\n177,59,6.0\n177,60,6.5\n177,61,7.0\n177,62,7.5\n177,63,8.0\n177,64,8.5\n177,65,9.0\n177,66,9.5\n177,67,10.0\n177,68,10.5\n177,69,11.0\n177,70,11.5\n177,71,12.0\n177,72,12.5\n177,73,13.0\n177,74,13.5\n177,75,3.0\n177,76,2.5\n177,77,2.0\n177,78,2.5\n177,79,3.0\n177,80,3.5\n177,81,4.0\n177,82,4.5\n177,83,5.0\n177,84,5.5\n177,85,6.0\n177,86,6.5\n177,87,7.0\n177,88,7.5\n177,89,8.0\n177,90,8.5\n177,91,9.0\n177,92,9.5\n177,93,10.0\n177,94,10.5\n177,95,11.0\n177,96,11.5\n177,97,12.0\n177,98,12.5\n177,99,13.0\n177,100,2.5\n177,101,2.0\n177,102,1.5\n177,103,2.0\n177,104,2.5\n177,105,3.0\n177,106,3.5\n177,107,4.0\n177,108,4.5\n177,109,5.0\n177,110,5.5\n177,111,6.0\n177,112,6.5\n177,113,7.0\n177,114,7.5\n177,115,8.0\n177,116,8.5\n177,117,9.0\n177,118,9.5\n177,119,10.0\n177,120,10.5\n177,121,11.0\n177,122,11.5\n177,123,12.0\n177,124,12.5\n177,125,2.0\n177,126,1.5\n177,127,1.0\n177,128,1.5\n177,129,2.0\n177,130,2.5\n177,131,3.0\n177,132,3.5\n177,133,4.0\n177,134,4.5\n177,135,5.0\n177,136,5.5\n177,137,6.0\n177,138,6.5\n177,139,7.0\n177,140,7.5\n177,141,8.0\n177,142,8.5\n177,143,9.0\n177,144,9.5\n177,145,10.0\n177,146,10.5\n177,147,11.0\n177,148,11.5\n177,149,12.0\n177,150,1.5\n177,151,1.0\n177,152,0.5\n177,153,1.0\n177,154,1.5\n177,155,2.0\n177,156,2.5\n177,157,3.0\n177,158,3.5\n177,159,4.0\n177,160,4.5\n177,161,5.0\n177,162,5.5\n177,163,6.0\n177,164,6.5\n177,165,7.0\n177,166,7.5\n177,167,8.0\n177,168,8.5\n177,169,9.0\n177,170,9.5\n177,171,10.0\n177,172,10.5\n177,173,11.0\n177,174,11.5\n177,175,1.0\n177,176,0.5\n177,177,0\n177,178,0.5\n177,179,1.0\n177,180,1.5\n177,181,2.0\n177,182,2.5\n177,183,3.0\n177,184,3.5\n177,185,4.0\n177,186,4.5\n177,187,5.0\n177,188,5.5\n177,189,6.0\n177,190,6.5\n177,191,7.0\n177,192,7.5\n177,193,8.0\n177,194,8.5\n177,195,9.0\n177,196,9.5\n177,197,10.0\n177,198,10.5\n177,199,11.0\n177,200,1.5\n177,201,1.0\n177,202,0.5\n177,203,1.0\n177,204,1.5\n177,205,2.0\n177,206,2.5\n177,207,3.0\n177,208,3.5\n177,209,4.0\n177,210,4.5\n177,211,5.0\n177,212,5.5\n177,213,6.0\n177,214,6.5\n177,215,7.0\n177,216,7.5\n177,217,8.0\n177,218,8.5\n177,219,9.0\n177,220,9.5\n177,221,10.0\n177,222,10.5\n177,223,11.0\n177,224,11.5\n177,225,2.0\n177,226,1.5\n177,227,1.0\n177,228,1.5\n177,229,2.0\n177,230,2.5\n177,231,3.0\n177,232,3.5\n177,233,4.0\n177,234,4.5\n177,235,5.0\n177,236,5.5\n177,237,6.0\n177,238,6.5\n177,239,7.0\n177,240,7.5\n177,241,8.0\n177,242,8.5\n177,243,9.0\n177,244,9.5\n177,245,10.0\n177,246,10.5\n177,247,11.0\n177,248,11.5\n177,249,12.0\n177,250,2.5\n177,251,2.0\n177,252,1.5\n177,253,2.0\n177,254,2.5\n177,255,3.0\n177,256,3.5\n177,257,4.0\n177,258,4.5\n177,259,5.0\n177,260,5.5\n177,261,6.0\n177,262,6.5\n177,263,7.0\n177,264,7.5\n177,265,8.0\n177,266,8.5\n177,267,9.0\n177,268,9.5\n177,269,10.0\n177,270,10.5\n177,271,11.0\n177,272,11.5\n177,273,12.0\n177,274,12.5\n177,275,3.0\n177,276,2.5\n177,277,2.0\n177,278,2.5\n177,279,3.0\n177,280,3.5\n177,281,4.0\n177,282,4.5\n177,283,5.0\n177,284,5.5\n177,285,6.0\n177,286,6.5\n177,287,7.0\n177,288,7.5\n177,289,8.0\n177,290,8.5\n177,291,9.0\n177,292,9.5\n177,293,10.0\n177,294,10.5\n177,295,11.0\n177,296,11.5\n177,297,12.0\n177,298,12.5\n177,299,13.0\n177,300,3.5\n177,301,3.0\n177,302,2.5\n177,303,3.0\n177,304,3.5\n177,305,4.0\n177,306,4.5\n177,307,5.0\n177,308,5.5\n177,309,6.0\n177,310,6.5\n177,311,7.0\n177,312,7.5\n177,313,8.0\n177,314,8.5\n177,315,9.0\n177,316,9.5\n177,317,10.0\n177,318,10.5\n177,319,11.0\n177,320,11.5\n177,321,12.0\n177,322,12.5\n177,323,13.0\n177,324,13.5\n177,325,4.0\n177,326,3.5\n177,327,3.0\n177,328,3.5\n177,329,4.0\n177,330,4.5\n177,331,5.0\n177,332,5.5\n177,333,6.0\n177,334,6.5\n177,335,7.0\n177,336,7.5\n177,337,8.0\n177,338,8.5\n177,339,9.0\n177,340,9.5\n177,341,10.0\n177,342,10.5\n177,343,11.0\n177,344,11.5\n177,345,12.0\n177,346,12.5\n177,347,13.0\n177,348,13.5\n177,349,14.0\n177,350,4.5\n177,351,4.0\n177,352,3.5\n177,353,4.0\n177,354,4.5\n177,355,5.0\n177,356,5.5\n177,357,6.0\n177,358,6.5\n177,359,7.0\n177,360,7.5\n177,361,8.0\n177,362,8.5\n177,363,9.0\n177,364,9.5\n177,365,10.0\n177,366,10.5\n177,367,11.0\n177,368,11.5\n177,369,12.0\n177,370,12.5\n177,371,13.0\n177,372,13.5\n177,373,14.0\n177,374,14.5\n177,375,5.0\n177,376,4.5\n177,377,4.0\n177,378,4.5\n177,379,5.0\n177,380,5.5\n177,381,6.0\n177,382,6.5\n177,383,7.0\n177,384,7.5\n177,385,8.0\n177,386,8.5\n177,387,9.0\n177,388,9.5\n177,389,10.0\n177,390,10.5\n177,391,11.0\n177,392,11.5\n177,393,12.0\n177,394,12.5\n177,395,13.0\n177,396,13.5\n177,397,14.0\n177,398,14.5\n177,399,15.0\n177,400,5.5\n177,401,5.0\n177,402,4.5\n177,403,5.0\n177,404,5.5\n177,405,6.0\n177,406,6.5\n177,407,7.0\n177,408,7.5\n177,409,8.0\n177,410,8.5\n177,411,9.0\n177,412,9.5\n177,413,10.0\n177,414,10.5\n177,415,11.0\n177,416,11.5\n177,417,12.0\n177,418,12.5\n177,419,13.0\n177,420,13.5\n177,421,14.0\n177,422,14.5\n177,423,15.0\n177,424,15.5\n177,425,6.0\n177,426,5.5\n177,427,5.0\n177,428,5.5\n177,429,6.0\n177,430,6.5\n177,431,7.0\n177,432,7.5\n177,433,8.0\n177,434,8.5\n177,435,9.0\n177,436,9.5\n177,437,10.0\n177,438,10.5\n177,439,11.0\n177,440,11.5\n177,441,12.0\n177,442,12.5\n177,443,13.0\n177,444,13.5\n177,445,14.0\n177,446,14.5\n177,447,15.0\n177,448,15.5\n177,449,16.0\n177,450,6.5\n177,451,6.0\n177,452,5.5\n177,453,6.0\n177,454,6.5\n177,455,7.0\n177,456,7.5\n177,457,8.0\n177,458,8.5\n177,459,9.0\n177,460,9.5\n177,461,10.0\n177,462,10.5\n177,463,11.0\n177,464,11.5\n177,465,12.0\n177,466,12.5\n177,467,13.0\n177,468,13.5\n177,469,14.0\n177,470,14.5\n177,471,15.0\n177,472,15.5\n177,473,16.0\n177,474,16.5\n177,475,7.0\n177,476,6.5\n177,477,6.0\n177,478,6.5\n177,479,7.0\n177,480,7.5\n177,481,8.0\n177,482,8.5\n177,483,9.0\n177,484,9.5\n177,485,10.0\n177,486,10.5\n177,487,11.0\n177,488,11.5\n177,489,12.0\n177,490,12.5\n177,491,13.0\n177,492,13.5\n177,493,14.0\n177,494,14.5\n177,495,15.0\n177,496,15.5\n177,497,16.0\n177,498,16.5\n177,499,17.0\n177,500,7.5\n177,501,7.0\n177,502,6.5\n177,503,7.0\n177,504,7.5\n177,505,8.0\n177,506,8.5\n177,507,9.0\n177,508,9.5\n177,509,10.0\n177,510,10.5\n177,511,11.0\n177,512,11.5\n177,513,12.0\n177,514,12.5\n177,515,13.0\n177,516,13.5\n177,517,14.0\n177,518,14.5\n177,519,15.0\n177,520,15.5\n177,521,16.0\n177,522,16.5\n177,523,17.0\n177,524,17.5\n177,525,8.0\n177,526,7.5\n177,527,7.0\n177,528,7.5\n177,529,8.0\n177,530,8.5\n177,531,9.0\n177,532,9.5\n177,533,10.0\n177,534,10.5\n177,535,11.0\n177,536,11.5\n177,537,12.0\n177,538,12.5\n177,539,13.0\n177,540,13.5\n177,541,14.0\n177,542,14.5\n177,543,15.0\n177,544,15.5\n177,545,16.0\n177,546,16.5\n177,547,17.0\n177,548,17.5\n177,549,18.0\n177,550,8.5\n177,551,8.0\n177,552,7.5\n177,553,8.0\n177,554,8.5\n177,555,9.0\n177,556,9.5\n177,557,10.0\n177,558,10.5\n177,559,11.0\n177,560,11.5\n177,561,12.0\n177,562,12.5\n177,563,13.0\n177,564,13.5\n177,565,14.0\n177,566,14.5\n177,567,15.0\n177,568,15.5\n177,569,16.0\n177,570,16.5\n177,571,17.0\n177,572,17.5\n177,573,18.0\n177,574,18.5\n177,575,9.0\n177,576,8.5\n177,577,8.0\n177,578,8.5\n177,579,9.0\n177,580,9.5\n177,581,10.0\n177,582,10.5\n177,583,11.0\n177,584,11.5\n177,585,12.0\n177,586,12.5\n177,587,13.0\n177,588,13.5\n177,589,14.0\n177,590,14.5\n177,591,15.0\n177,592,15.5\n177,593,16.0\n177,594,16.5\n177,595,17.0\n177,596,17.5\n177,597,18.0\n177,598,18.5\n177,599,19.0\n177,600,9.5\n177,601,9.0\n177,602,8.5\n177,603,9.0\n177,604,9.5\n177,605,10.0\n177,606,10.5\n177,607,11.0\n177,608,11.5\n177,609,12.0\n177,610,12.5\n177,611,13.0\n177,612,13.5\n177,613,14.0\n177,614,14.5\n177,615,15.0\n177,616,15.5\n177,617,16.0\n177,618,16.5\n177,619,17.0\n177,620,17.5\n177,621,18.0\n177,622,18.5\n177,623,19.0\n177,624,19.5\n178,0,5.0\n178,1,4.5\n178,2,4.0\n178,3,3.5\n178,4,4.0\n178,5,4.5\n178,6,5.0\n178,7,5.5\n178,8,6.0\n178,9,6.5\n178,10,7.0\n178,11,7.5\n178,12,8.0\n178,13,8.5\n178,14,9.0\n178,15,9.5\n178,16,10.0\n178,17,10.5\n178,18,11.0\n178,19,11.5\n178,20,12.0\n178,21,12.5\n178,22,13.0\n178,23,13.5\n178,24,14.0\n178,25,4.5\n178,26,4.0\n178,27,3.5\n178,28,3.0\n178,29,3.5\n178,30,4.0\n178,31,4.5\n178,32,5.0\n178,33,5.5\n178,34,6.0\n178,35,6.5\n178,36,7.0\n178,37,7.5\n178,38,8.0\n178,39,8.5\n178,40,9.0\n178,41,9.5\n178,42,10.0\n178,43,10.5\n178,44,11.0\n178,45,11.5\n178,46,12.0\n178,47,12.5\n178,48,13.0\n178,49,13.5\n178,50,4.0\n178,51,3.5\n178,52,3.0\n178,53,2.5\n178,54,3.0\n178,55,3.5\n178,56,4.0\n178,57,4.5\n178,58,5.0\n178,59,5.5\n178,60,6.0\n178,61,6.5\n178,62,7.0\n178,63,7.5\n178,64,8.0\n178,65,8.5\n178,66,9.0\n178,67,9.5\n178,68,10.0\n178,69,10.5\n178,70,11.0\n178,71,11.5\n178,72,12.0\n178,73,12.5\n178,74,13.0\n178,75,3.5\n178,76,3.0\n178,77,2.5\n178,78,2.0\n178,79,2.5\n178,80,3.0\n178,81,3.5\n178,82,4.0\n178,83,4.5\n178,84,5.0\n178,85,5.5\n178,86,6.0\n178,87,6.5\n178,88,7.0\n178,89,7.5\n178,90,8.0\n178,91,8.5\n178,92,9.0\n178,93,9.5\n178,94,10.0\n178,95,10.5\n178,96,11.0\n178,97,11.5\n178,98,12.0\n178,99,12.5\n178,100,3.0\n178,101,2.5\n178,102,2.0\n178,103,1.5\n178,104,2.0\n178,105,2.5\n178,106,3.0\n178,107,3.5\n178,108,4.0\n178,109,4.5\n178,110,5.0\n178,111,5.5\n178,112,6.0\n178,113,6.5\n178,114,7.0\n178,115,7.5\n178,116,8.0\n178,117,8.5\n178,118,9.0\n178,119,9.5\n178,120,10.0\n178,121,10.5\n178,122,11.0\n178,123,11.5\n178,124,12.0\n178,125,2.5\n178,126,2.0\n178,127,1.5\n178,128,1.0\n178,129,1.5\n178,130,2.0\n178,131,2.5\n178,132,3.0\n178,133,3.5\n178,134,4.0\n178,135,4.5\n178,136,5.0\n178,137,5.5\n178,138,6.0\n178,139,6.5\n178,140,7.0\n178,141,7.5\n178,142,8.0\n178,143,8.5\n178,144,9.0\n178,145,9.5\n178,146,10.0\n178,147,10.5\n178,148,11.0\n178,149,11.5\n178,150,2.0\n178,151,1.5\n178,152,1.0\n178,153,0.5\n178,154,1.0\n178,155,1.5\n178,156,2.0\n178,157,2.5\n178,158,3.0\n178,159,3.5\n178,160,4.0\n178,161,4.5\n178,162,5.0\n178,163,5.5\n178,164,6.0\n178,165,6.5\n178,166,7.0\n178,167,7.5\n178,168,8.0\n178,169,8.5\n178,170,9.0\n178,171,9.5\n178,172,10.0\n178,173,10.5\n178,174,11.0\n178,175,1.5\n178,176,1.0\n178,177,0.5\n178,178,0\n178,179,0.5\n178,180,1.0\n178,181,1.5\n178,182,2.0\n178,183,2.5\n178,184,3.0\n178,185,3.5\n178,186,4.0\n178,187,4.5\n178,188,5.0\n178,189,5.5\n178,190,6.0\n178,191,6.5\n178,192,7.0\n178,193,7.5\n178,194,8.0\n178,195,8.5\n178,196,9.0\n178,197,9.5\n178,198,10.0\n178,199,10.5\n178,200,2.0\n178,201,1.5\n178,202,1.0\n178,203,0.5\n178,204,1.0\n178,205,1.5\n178,206,2.0\n178,207,2.5\n178,208,3.0\n178,209,3.5\n178,210,4.0\n178,211,4.5\n178,212,5.0\n178,213,5.5\n178,214,6.0\n178,215,6.5\n178,216,7.0\n178,217,7.5\n178,218,8.0\n178,219,8.5\n178,220,9.0\n178,221,9.5\n178,222,10.0\n178,223,10.5\n178,224,11.0\n178,225,2.5\n178,226,2.0\n178,227,1.5\n178,228,1.0\n178,229,1.5\n178,230,2.0\n178,231,2.5\n178,232,3.0\n178,233,3.5\n178,234,4.0\n178,235,4.5\n178,236,5.0\n178,237,5.5\n178,238,6.0\n178,239,6.5\n178,240,7.0\n178,241,7.5\n178,242,8.0\n178,243,8.5\n178,244,9.0\n178,245,9.5\n178,246,10.0\n178,247,10.5\n178,248,11.0\n178,249,11.5\n178,250,3.0\n178,251,2.5\n178,252,2.0\n178,253,1.5\n178,254,2.0\n178,255,2.5\n178,256,3.0\n178,257,3.5\n178,258,4.0\n178,259,4.5\n178,260,5.0\n178,261,5.5\n178,262,6.0\n178,263,6.5\n178,264,7.0\n178,265,7.5\n178,266,8.0\n178,267,8.5\n178,268,9.0\n178,269,9.5\n178,270,10.0\n178,271,10.5\n178,272,11.0\n178,273,11.5\n178,274,12.0\n178,275,3.5\n178,276,3.0\n178,277,2.5\n178,278,2.0\n178,279,2.5\n178,280,3.0\n178,281,3.5\n178,282,4.0\n178,283,4.5\n178,284,5.0\n178,285,5.5\n178,286,6.0\n178,287,6.5\n178,288,7.0\n178,289,7.5\n178,290,8.0\n178,291,8.5\n178,292,9.0\n178,293,9.5\n178,294,10.0\n178,295,10.5\n178,296,11.0\n178,297,11.5\n178,298,12.0\n178,299,12.5\n178,300,4.0\n178,301,3.5\n178,302,3.0\n178,303,2.5\n178,304,3.0\n178,305,3.5\n178,306,4.0\n178,307,4.5\n178,308,5.0\n178,309,5.5\n178,310,6.0\n178,311,6.5\n178,312,7.0\n178,313,7.5\n178,314,8.0\n178,315,8.5\n178,316,9.0\n178,317,9.5\n178,318,10.0\n178,319,10.5\n178,320,11.0\n178,321,11.5\n178,322,12.0\n178,323,12.5\n178,324,13.0\n178,325,4.5\n178,326,4.0\n178,327,3.5\n178,328,3.0\n178,329,3.5\n178,330,4.0\n178,331,4.5\n178,332,5.0\n178,333,5.5\n178,334,6.0\n178,335,6.5\n178,336,7.0\n178,337,7.5\n178,338,8.0\n178,339,8.5\n178,340,9.0\n178,341,9.5\n178,342,10.0\n178,343,10.5\n178,344,11.0\n178,345,11.5\n178,346,12.0\n178,347,12.5\n178,348,13.0\n178,349,13.5\n178,350,5.0\n178,351,4.5\n178,352,4.0\n178,353,3.5\n178,354,4.0\n178,355,4.5\n178,356,5.0\n178,357,5.5\n178,358,6.0\n178,359,6.5\n178,360,7.0\n178,361,7.5\n178,362,8.0\n178,363,8.5\n178,364,9.0\n178,365,9.5\n178,366,10.0\n178,367,10.5\n178,368,11.0\n178,369,11.5\n178,370,12.0\n178,371,12.5\n178,372,13.0\n178,373,13.5\n178,374,14.0\n178,375,5.5\n178,376,5.0\n178,377,4.5\n178,378,4.0\n178,379,4.5\n178,380,5.0\n178,381,5.5\n178,382,6.0\n178,383,6.5\n178,384,7.0\n178,385,7.5\n178,386,8.0\n178,387,8.5\n178,388,9.0\n178,389,9.5\n178,390,10.0\n178,391,10.5\n178,392,11.0\n178,393,11.5\n178,394,12.0\n178,395,12.5\n178,396,13.0\n178,397,13.5\n178,398,14.0\n178,399,14.5\n178,400,6.0\n178,401,5.5\n178,402,5.0\n178,403,4.5\n178,404,5.0\n178,405,5.5\n178,406,6.0\n178,407,6.5\n178,408,7.0\n178,409,7.5\n178,410,8.0\n178,411,8.5\n178,412,9.0\n178,413,9.5\n178,414,10.0\n178,415,10.5\n178,416,11.0\n178,417,11.5\n178,418,12.0\n178,419,12.5\n178,420,13.0\n178,421,13.5\n178,422,14.0\n178,423,14.5\n178,424,15.0\n178,425,6.5\n178,426,6.0\n178,427,5.5\n178,428,5.0\n178,429,5.5\n178,430,6.0\n178,431,6.5\n178,432,7.0\n178,433,7.5\n178,434,8.0\n178,435,8.5\n178,436,9.0\n178,437,9.5\n178,438,10.0\n178,439,10.5\n178,440,11.0\n178,441,11.5\n178,442,12.0\n178,443,12.5\n178,444,13.0\n178,445,13.5\n178,446,14.0\n178,447,14.5\n178,448,15.0\n178,449,15.5\n178,450,7.0\n178,451,6.5\n178,452,6.0\n178,453,5.5\n178,454,6.0\n178,455,6.5\n178,456,7.0\n178,457,7.5\n178,458,8.0\n178,459,8.5\n178,460,9.0\n178,461,9.5\n178,462,10.0\n178,463,10.5\n178,464,11.0\n178,465,11.5\n178,466,12.0\n178,467,12.5\n178,468,13.0\n178,469,13.5\n178,470,14.0\n178,471,14.5\n178,472,15.0\n178,473,15.5\n178,474,16.0\n178,475,7.5\n178,476,7.0\n178,477,6.5\n178,478,6.0\n178,479,6.5\n178,480,7.0\n178,481,7.5\n178,482,8.0\n178,483,8.5\n178,484,9.0\n178,485,9.5\n178,486,10.0\n178,487,10.5\n178,488,11.0\n178,489,11.5\n178,490,12.0\n178,491,12.5\n178,492,13.0\n178,493,13.5\n178,494,14.0\n178,495,14.5\n178,496,15.0\n178,497,15.5\n178,498,16.0\n178,499,16.5\n178,500,8.0\n178,501,7.5\n178,502,7.0\n178,503,6.5\n178,504,7.0\n178,505,7.5\n178,506,8.0\n178,507,8.5\n178,508,9.0\n178,509,9.5\n178,510,10.0\n178,511,10.5\n178,512,11.0\n178,513,11.5\n178,514,12.0\n178,515,12.5\n178,516,13.0\n178,517,13.5\n178,518,14.0\n178,519,14.5\n178,520,15.0\n178,521,15.5\n178,522,16.0\n178,523,16.5\n178,524,17.0\n178,525,8.5\n178,526,8.0\n178,527,7.5\n178,528,7.0\n178,529,7.5\n178,530,8.0\n178,531,8.5\n178,532,9.0\n178,533,9.5\n178,534,10.0\n178,535,10.5\n178,536,11.0\n178,537,11.5\n178,538,12.0\n178,539,12.5\n178,540,13.0\n178,541,13.5\n178,542,14.0\n178,543,14.5\n178,544,15.0\n178,545,15.5\n178,546,16.0\n178,547,16.5\n178,548,17.0\n178,549,17.5\n178,550,9.0\n178,551,8.5\n178,552,8.0\n178,553,7.5\n178,554,8.0\n178,555,8.5\n178,556,9.0\n178,557,9.5\n178,558,10.0\n178,559,10.5\n178,560,11.0\n178,561,11.5\n178,562,12.0\n178,563,12.5\n178,564,13.0\n178,565,13.5\n178,566,14.0\n178,567,14.5\n178,568,15.0\n178,569,15.5\n178,570,16.0\n178,571,16.5\n178,572,17.0\n178,573,17.5\n178,574,18.0\n178,575,9.5\n178,576,9.0\n178,577,8.5\n178,578,8.0\n178,579,8.5\n178,580,9.0\n178,581,9.5\n178,582,10.0\n178,583,10.5\n178,584,11.0\n178,585,11.5\n178,586,12.0\n178,587,12.5\n178,588,13.0\n178,589,13.5\n178,590,14.0\n178,591,14.5\n178,592,15.0\n178,593,15.5\n178,594,16.0\n178,595,16.5\n178,596,17.0\n178,597,17.5\n178,598,18.0\n178,599,18.5\n178,600,10.0\n178,601,9.5\n178,602,9.0\n178,603,8.5\n178,604,9.0\n178,605,9.5\n178,606,10.0\n178,607,10.5\n178,608,11.0\n178,609,11.5\n178,610,12.0\n178,611,12.5\n178,612,13.0\n178,613,13.5\n178,614,14.0\n178,615,14.5\n178,616,15.0\n178,617,15.5\n178,618,16.0\n178,619,16.5\n178,620,17.0\n178,621,17.5\n178,622,18.0\n178,623,18.5\n178,624,19.0\n179,0,5.5\n179,1,5.0\n179,2,4.5\n179,3,4.0\n179,4,3.5\n179,5,4.0\n179,6,4.5\n179,7,5.0\n179,8,5.5\n179,9,6.0\n179,10,6.5\n179,11,7.0\n179,12,7.5\n179,13,8.0\n179,14,8.5\n179,15,9.0\n179,16,9.5\n179,17,10.0\n179,18,10.5\n179,19,11.0\n179,20,11.5\n179,21,12.0\n179,22,12.5\n179,23,13.0\n179,24,13.5\n179,25,5.0\n179,26,4.5\n179,27,4.0\n179,28,3.5\n179,29,3.0\n179,30,3.5\n179,31,4.0\n179,32,4.5\n179,33,5.0\n179,34,5.5\n179,35,6.0\n179,36,6.5\n179,37,7.0\n179,38,7.5\n179,39,8.0\n179,40,8.5\n179,41,9.0\n179,42,9.5\n179,43,10.0\n179,44,10.5\n179,45,11.0\n179,46,11.5\n179,47,12.0\n179,48,12.5\n179,49,13.0\n179,50,4.5\n179,51,4.0\n179,52,3.5\n179,53,3.0\n179,54,2.5\n179,55,3.0\n179,56,3.5\n179,57,4.0\n179,58,4.5\n179,59,5.0\n179,60,5.5\n179,61,6.0\n179,62,6.5\n179,63,7.0\n179,64,7.5\n179,65,8.0\n179,66,8.5\n179,67,9.0\n179,68,9.5\n179,69,10.0\n179,70,10.5\n179,71,11.0\n179,72,11.5\n179,73,12.0\n179,74,12.5\n179,75,4.0\n179,76,3.5\n179,77,3.0\n179,78,2.5\n179,79,2.0\n179,80,2.5\n179,81,3.0\n179,82,3.5\n179,83,4.0\n179,84,4.5\n179,85,5.0\n179,86,5.5\n179,87,6.0\n179,88,6.5\n179,89,7.0\n179,90,7.5\n179,91,8.0\n179,92,8.5\n179,93,9.0\n179,94,9.5\n179,95,10.0\n179,96,10.5\n179,97,11.0\n179,98,11.5\n179,99,12.0\n179,100,3.5\n179,101,3.0\n179,102,2.5\n179,103,2.0\n179,104,1.5\n179,105,2.0\n179,106,2.5\n179,107,3.0\n179,108,3.5\n179,109,4.0\n179,110,4.5\n179,111,5.0\n179,112,5.5\n179,113,6.0\n179,114,6.5\n179,115,7.0\n179,116,7.5\n179,117,8.0\n179,118,8.5\n179,119,9.0\n179,120,9.5\n179,121,10.0\n179,122,10.5\n179,123,11.0\n179,124,11.5\n179,125,3.0\n179,126,2.5\n179,127,2.0\n179,128,1.5\n179,129,1.0\n179,130,1.5\n179,131,2.0\n179,132,2.5\n179,133,3.0\n179,134,3.5\n179,135,4.0\n179,136,4.5\n179,137,5.0\n179,138,5.5\n179,139,6.0\n179,140,6.5\n179,141,7.0\n179,142,7.5\n179,143,8.0\n179,144,8.5\n179,145,9.0\n179,146,9.5\n179,147,10.0\n179,148,10.5\n179,149,11.0\n179,150,2.5\n179,151,2.0\n179,152,1.5\n179,153,1.0\n179,154,0.5\n179,155,1.0\n179,156,1.5\n179,157,2.0\n179,158,2.5\n179,159,3.0\n179,160,3.5\n179,161,4.0\n179,162,4.5\n179,163,5.0\n179,164,5.5\n179,165,6.0\n179,166,6.5\n179,167,7.0\n179,168,7.5\n179,169,8.0\n179,170,8.5\n179,171,9.0\n179,172,9.5\n179,173,10.0\n179,174,10.5\n179,175,2.0\n179,176,1.5\n179,177,1.0\n179,178,0.5\n179,179,0\n179,180,0.5\n179,181,1.0\n179,182,1.5\n179,183,2.0\n179,184,2.5\n179,185,3.0\n179,186,3.5\n179,187,4.0\n179,188,4.5\n179,189,5.0\n179,190,5.5\n179,191,6.0\n179,192,6.5\n179,193,7.0\n179,194,7.5\n179,195,8.0\n179,196,8.5\n179,197,9.0\n179,198,9.5\n179,199,10.0\n179,200,2.5\n179,201,2.0\n179,202,1.5\n179,203,1.0\n179,204,0.5\n179,205,1.0\n179,206,1.5\n179,207,2.0\n179,208,2.5\n179,209,3.0\n179,210,3.5\n179,211,4.0\n179,212,4.5\n179,213,5.0\n179,214,5.5\n179,215,6.0\n179,216,6.5\n179,217,7.0\n179,218,7.5\n179,219,8.0\n179,220,8.5\n179,221,9.0\n179,222,9.5\n179,223,10.0\n179,224,10.5\n179,225,3.0\n179,226,2.5\n179,227,2.0\n179,228,1.5\n179,229,1.0\n179,230,1.5\n179,231,2.0\n179,232,2.5\n179,233,3.0\n179,234,3.5\n179,235,4.0\n179,236,4.5\n179,237,5.0\n179,238,5.5\n179,239,6.0\n179,240,6.5\n179,241,7.0\n179,242,7.5\n179,243,8.0\n179,244,8.5\n179,245,9.0\n179,246,9.5\n179,247,10.0\n179,248,10.5\n179,249,11.0\n179,250,3.5\n179,251,3.0\n179,252,2.5\n179,253,2.0\n179,254,1.5\n179,255,2.0\n179,256,2.5\n179,257,3.0\n179,258,3.5\n179,259,4.0\n179,260,4.5\n179,261,5.0\n179,262,5.5\n179,263,6.0\n179,264,6.5\n179,265,7.0\n179,266,7.5\n179,267,8.0\n179,268,8.5\n179,269,9.0\n179,270,9.5\n179,271,10.0\n179,272,10.5\n179,273,11.0\n179,274,11.5\n179,275,4.0\n179,276,3.5\n179,277,3.0\n179,278,2.5\n179,279,2.0\n179,280,2.5\n179,281,3.0\n179,282,3.5\n179,283,4.0\n179,284,4.5\n179,285,5.0\n179,286,5.5\n179,287,6.0\n179,288,6.5\n179,289,7.0\n179,290,7.5\n179,291,8.0\n179,292,8.5\n179,293,9.0\n179,294,9.5\n179,295,10.0\n179,296,10.5\n179,297,11.0\n179,298,11.5\n179,299,12.0\n179,300,4.5\n179,301,4.0\n179,302,3.5\n179,303,3.0\n179,304,2.5\n179,305,3.0\n179,306,3.5\n179,307,4.0\n179,308,4.5\n179,309,5.0\n179,310,5.5\n179,311,6.0\n179,312,6.5\n179,313,7.0\n179,314,7.5\n179,315,8.0\n179,316,8.5\n179,317,9.0\n179,318,9.5\n179,319,10.0\n179,320,10.5\n179,321,11.0\n179,322,11.5\n179,323,12.0\n179,324,12.5\n179,325,5.0\n179,326,4.5\n179,327,4.0\n179,328,3.5\n179,329,3.0\n179,330,3.5\n179,331,4.0\n179,332,4.5\n179,333,5.0\n179,334,5.5\n179,335,6.0\n179,336,6.5\n179,337,7.0\n179,338,7.5\n179,339,8.0\n179,340,8.5\n179,341,9.0\n179,342,9.5\n179,343,10.0\n179,344,10.5\n179,345,11.0\n179,346,11.5\n179,347,12.0\n179,348,12.5\n179,349,13.0\n179,350,5.5\n179,351,5.0\n179,352,4.5\n179,353,4.0\n179,354,3.5\n179,355,4.0\n179,356,4.5\n179,357,5.0\n179,358,5.5\n179,359,6.0\n179,360,6.5\n179,361,7.0\n179,362,7.5\n179,363,8.0\n179,364,8.5\n179,365,9.0\n179,366,9.5\n179,367,10.0\n179,368,10.5\n179,369,11.0\n179,370,11.5\n179,371,12.0\n179,372,12.5\n179,373,13.0\n179,374,13.5\n179,375,6.0\n179,376,5.5\n179,377,5.0\n179,378,4.5\n179,379,4.0\n179,380,4.5\n179,381,5.0\n179,382,5.5\n179,383,6.0\n179,384,6.5\n179,385,7.0\n179,386,7.5\n179,387,8.0\n179,388,8.5\n179,389,9.0\n179,390,9.5\n179,391,10.0\n179,392,10.5\n179,393,11.0\n179,394,11.5\n179,395,12.0\n179,396,12.5\n179,397,13.0\n179,398,13.5\n179,399,14.0\n179,400,6.5\n179,401,6.0\n179,402,5.5\n179,403,5.0\n179,404,4.5\n179,405,5.0\n179,406,5.5\n179,407,6.0\n179,408,6.5\n179,409,7.0\n179,410,7.5\n179,411,8.0\n179,412,8.5\n179,413,9.0\n179,414,9.5\n179,415,10.0\n179,416,10.5\n179,417,11.0\n179,418,11.5\n179,419,12.0\n179,420,12.5\n179,421,13.0\n179,422,13.5\n179,423,14.0\n179,424,14.5\n179,425,7.0\n179,426,6.5\n179,427,6.0\n179,428,5.5\n179,429,5.0\n179,430,5.5\n179,431,6.0\n179,432,6.5\n179,433,7.0\n179,434,7.5\n179,435,8.0\n179,436,8.5\n179,437,9.0\n179,438,9.5\n179,439,10.0\n179,440,10.5\n179,441,11.0\n179,442,11.5\n179,443,12.0\n179,444,12.5\n179,445,13.0\n179,446,13.5\n179,447,14.0\n179,448,14.5\n179,449,15.0\n179,450,7.5\n179,451,7.0\n179,452,6.5\n179,453,6.0\n179,454,5.5\n179,455,6.0\n179,456,6.5\n179,457,7.0\n179,458,7.5\n179,459,8.0\n179,460,8.5\n179,461,9.0\n179,462,9.5\n179,463,10.0\n179,464,10.5\n179,465,11.0\n179,466,11.5\n179,467,12.0\n179,468,12.5\n179,469,13.0\n179,470,13.5\n179,471,14.0\n179,472,14.5\n179,473,15.0\n179,474,15.5\n179,475,8.0\n179,476,7.5\n179,477,7.0\n179,478,6.5\n179,479,6.0\n179,480,6.5\n179,481,7.0\n179,482,7.5\n179,483,8.0\n179,484,8.5\n179,485,9.0\n179,486,9.5\n179,487,10.0\n179,488,10.5\n179,489,11.0\n179,490,11.5\n179,491,12.0\n179,492,12.5\n179,493,13.0\n179,494,13.5\n179,495,14.0\n179,496,14.5\n179,497,15.0\n179,498,15.5\n179,499,16.0\n179,500,8.5\n179,501,8.0\n179,502,7.5\n179,503,7.0\n179,504,6.5\n179,505,7.0\n179,506,7.5\n179,507,8.0\n179,508,8.5\n179,509,9.0\n179,510,9.5\n179,511,10.0\n179,512,10.5\n179,513,11.0\n179,514,11.5\n179,515,12.0\n179,516,12.5\n179,517,13.0\n179,518,13.5\n179,519,14.0\n179,520,14.5\n179,521,15.0\n179,522,15.5\n179,523,16.0\n179,524,16.5\n179,525,9.0\n179,526,8.5\n179,527,8.0\n179,528,7.5\n179,529,7.0\n179,530,7.5\n179,531,8.0\n179,532,8.5\n179,533,9.0\n179,534,9.5\n179,535,10.0\n179,536,10.5\n179,537,11.0\n179,538,11.5\n179,539,12.0\n179,540,12.5\n179,541,13.0\n179,542,13.5\n179,543,14.0\n179,544,14.5\n179,545,15.0\n179,546,15.5\n179,547,16.0\n179,548,16.5\n179,549,17.0\n179,550,9.5\n179,551,9.0\n179,552,8.5\n179,553,8.0\n179,554,7.5\n179,555,8.0\n179,556,8.5\n179,557,9.0\n179,558,9.5\n179,559,10.0\n179,560,10.5\n179,561,11.0\n179,562,11.5\n179,563,12.0\n179,564,12.5\n179,565,13.0\n179,566,13.5\n179,567,14.0\n179,568,14.5\n179,569,15.0\n179,570,15.5\n179,571,16.0\n179,572,16.5\n179,573,17.0\n179,574,17.5\n179,575,10.0\n179,576,9.5\n179,577,9.0\n179,578,8.5\n179,579,8.0\n179,580,8.5\n179,581,9.0\n179,582,9.5\n179,583,10.0\n179,584,10.5\n179,585,11.0\n179,586,11.5\n179,587,12.0\n179,588,12.5\n179,589,13.0\n179,590,13.5\n179,591,14.0\n179,592,14.5\n179,593,15.0\n179,594,15.5\n179,595,16.0\n179,596,16.5\n179,597,17.0\n179,598,17.5\n179,599,18.0\n179,600,10.5\n179,601,10.0\n179,602,9.5\n179,603,9.0\n179,604,8.5\n179,605,9.0\n179,606,9.5\n179,607,10.0\n179,608,10.5\n179,609,11.0\n179,610,11.5\n179,611,12.0\n179,612,12.5\n179,613,13.0\n179,614,13.5\n179,615,14.0\n179,616,14.5\n179,617,15.0\n179,618,15.5\n179,619,16.0\n179,620,16.5\n179,621,17.0\n179,622,17.5\n179,623,18.0\n179,624,18.5\n180,0,6.0\n180,1,5.5\n180,2,5.0\n180,3,4.5\n180,4,4.0\n180,5,3.5\n180,6,4.0\n180,7,4.5\n180,8,5.0\n180,9,5.5\n180,10,6.0\n180,11,6.5\n180,12,7.0\n180,13,7.5\n180,14,8.0\n180,15,8.5\n180,16,9.0\n180,17,9.5\n180,18,10.0\n180,19,10.5\n180,20,11.0\n180,21,11.5\n180,22,12.0\n180,23,12.5\n180,24,13.0\n180,25,5.5\n180,26,5.0\n180,27,4.5\n180,28,4.0\n180,29,3.5\n180,30,3.0\n180,31,3.5\n180,32,4.0\n180,33,4.5\n180,34,5.0\n180,35,5.5\n180,36,6.0\n180,37,6.5\n180,38,7.0\n180,39,7.5\n180,40,8.0\n180,41,8.5\n180,42,9.0\n180,43,9.5\n180,44,10.0\n180,45,10.5\n180,46,11.0\n180,47,11.5\n180,48,12.0\n180,49,12.5\n180,50,5.0\n180,51,4.5\n180,52,4.0\n180,53,3.5\n180,54,3.0\n180,55,2.5\n180,56,3.0\n180,57,3.5\n180,58,4.0\n180,59,4.5\n180,60,5.0\n180,61,5.5\n180,62,6.0\n180,63,6.5\n180,64,7.0\n180,65,7.5\n180,66,8.0\n180,67,8.5\n180,68,9.0\n180,69,9.5\n180,70,10.0\n180,71,10.5\n180,72,11.0\n180,73,11.5\n180,74,12.0\n180,75,4.5\n180,76,4.0\n180,77,3.5\n180,78,3.0\n180,79,2.5\n180,80,2.0\n180,81,2.5\n180,82,3.0\n180,83,3.5\n180,84,4.0\n180,85,4.5\n180,86,5.0\n180,87,5.5\n180,88,6.0\n180,89,6.5\n180,90,7.0\n180,91,7.5\n180,92,8.0\n180,93,8.5\n180,94,9.0\n180,95,9.5\n180,96,10.0\n180,97,10.5\n180,98,11.0\n180,99,11.5\n180,100,4.0\n180,101,3.5\n180,102,3.0\n180,103,2.5\n180,104,2.0\n180,105,1.5\n180,106,2.0\n180,107,2.5\n180,108,3.0\n180,109,3.5\n180,110,4.0\n180,111,4.5\n180,112,5.0\n180,113,5.5\n180,114,6.0\n180,115,6.5\n180,116,7.0\n180,117,7.5\n180,118,8.0\n180,119,8.5\n180,120,9.0\n180,121,9.5\n180,122,10.0\n180,123,10.5\n180,124,11.0\n180,125,3.5\n180,126,3.0\n180,127,2.5\n180,128,2.0\n180,129,1.5\n180,130,1.0\n180,131,1.5\n180,132,2.0\n180,133,2.5\n180,134,3.0\n180,135,3.5\n180,136,4.0\n180,137,4.5\n180,138,5.0\n180,139,5.5\n180,140,6.0\n180,141,6.5\n180,142,7.0\n180,143,7.5\n180,144,8.0\n180,145,8.5\n180,146,9.0\n180,147,9.5\n180,148,10.0\n180,149,10.5\n180,150,3.0\n180,151,2.5\n180,152,2.0\n180,153,1.5\n180,154,1.0\n180,155,0.5\n180,156,1.0\n180,157,1.5\n180,158,2.0\n180,159,2.5\n180,160,3.0\n180,161,3.5\n180,162,4.0\n180,163,4.5\n180,164,5.0\n180,165,5.5\n180,166,6.0\n180,167,6.5\n180,168,7.0\n180,169,7.5\n180,170,8.0\n180,171,8.5\n180,172,9.0\n180,173,9.5\n180,174,10.0\n180,175,2.5\n180,176,2.0\n180,177,1.5\n180,178,1.0\n180,179,0.5\n180,180,0\n180,181,0.5\n180,182,1.0\n180,183,1.5\n180,184,2.0\n180,185,2.5\n180,186,3.0\n180,187,3.5\n180,188,4.0\n180,189,4.5\n180,190,5.0\n180,191,5.5\n180,192,6.0\n180,193,6.5\n180,194,7.0\n180,195,7.5\n180,196,8.0\n180,197,8.5\n180,198,9.0\n180,199,9.5\n180,200,3.0\n180,201,2.5\n180,202,2.0\n180,203,1.5\n180,204,1.0\n180,205,0.5\n180,206,1.0\n180,207,1.5\n180,208,2.0\n180,209,2.5\n180,210,3.0\n180,211,3.5\n180,212,4.0\n180,213,4.5\n180,214,5.0\n180,215,5.5\n180,216,6.0\n180,217,6.5\n180,218,7.0\n180,219,7.5\n180,220,8.0\n180,221,8.5\n180,222,9.0\n180,223,9.5\n180,224,10.0\n180,225,3.5\n180,226,3.0\n180,227,2.5\n180,228,2.0\n180,229,1.5\n180,230,1.0\n180,231,1.5\n180,232,2.0\n180,233,2.5\n180,234,3.0\n180,235,3.5\n180,236,4.0\n180,237,4.5\n180,238,5.0\n180,239,5.5\n180,240,6.0\n180,241,6.5\n180,242,7.0\n180,243,7.5\n180,244,8.0\n180,245,8.5\n180,246,9.0\n180,247,9.5\n180,248,10.0\n180,249,10.5\n180,250,4.0\n180,251,3.5\n180,252,3.0\n180,253,2.5\n180,254,2.0\n180,255,1.5\n180,256,2.0\n180,257,2.5\n180,258,3.0\n180,259,3.5\n180,260,4.0\n180,261,4.5\n180,262,5.0\n180,263,5.5\n180,264,6.0\n180,265,6.5\n180,266,7.0\n180,267,7.5\n180,268,8.0\n180,269,8.5\n180,270,9.0\n180,271,9.5\n180,272,10.0\n180,273,10.5\n180,274,11.0\n180,275,4.5\n180,276,4.0\n180,277,3.5\n180,278,3.0\n180,279,2.5\n180,280,2.0\n180,281,2.5\n180,282,3.0\n180,283,3.5\n180,284,4.0\n180,285,4.5\n180,286,5.0\n180,287,5.5\n180,288,6.0\n180,289,6.5\n180,290,7.0\n180,291,7.5\n180,292,8.0\n180,293,8.5\n180,294,9.0\n180,295,9.5\n180,296,10.0\n180,297,10.5\n180,298,11.0\n180,299,11.5\n180,300,5.0\n180,301,4.5\n180,302,4.0\n180,303,3.5\n180,304,3.0\n180,305,2.5\n180,306,3.0\n180,307,3.5\n180,308,4.0\n180,309,4.5\n180,310,5.0\n180,311,5.5\n180,312,6.0\n180,313,6.5\n180,314,7.0\n180,315,7.5\n180,316,8.0\n180,317,8.5\n180,318,9.0\n180,319,9.5\n180,320,10.0\n180,321,10.5\n180,322,11.0\n180,323,11.5\n180,324,12.0\n180,325,5.5\n180,326,5.0\n180,327,4.5\n180,328,4.0\n180,329,3.5\n180,330,3.0\n180,331,3.5\n180,332,4.0\n180,333,4.5\n180,334,5.0\n180,335,5.5\n180,336,6.0\n180,337,6.5\n180,338,7.0\n180,339,7.5\n180,340,8.0\n180,341,8.5\n180,342,9.0\n180,343,9.5\n180,344,10.0\n180,345,10.5\n180,346,11.0\n180,347,11.5\n180,348,12.0\n180,349,12.5\n180,350,6.0\n180,351,5.5\n180,352,5.0\n180,353,4.5\n180,354,4.0\n180,355,3.5\n180,356,4.0\n180,357,4.5\n180,358,5.0\n180,359,5.5\n180,360,6.0\n180,361,6.5\n180,362,7.0\n180,363,7.5\n180,364,8.0\n180,365,8.5\n180,366,9.0\n180,367,9.5\n180,368,10.0\n180,369,10.5\n180,370,11.0\n180,371,11.5\n180,372,12.0\n180,373,12.5\n180,374,13.0\n180,375,6.5\n180,376,6.0\n180,377,5.5\n180,378,5.0\n180,379,4.5\n180,380,4.0\n180,381,4.5\n180,382,5.0\n180,383,5.5\n180,384,6.0\n180,385,6.5\n180,386,7.0\n180,387,7.5\n180,388,8.0\n180,389,8.5\n180,390,9.0\n180,391,9.5\n180,392,10.0\n180,393,10.5\n180,394,11.0\n180,395,11.5\n180,396,12.0\n180,397,12.5\n180,398,13.0\n180,399,13.5\n180,400,7.0\n180,401,6.5\n180,402,6.0\n180,403,5.5\n180,404,5.0\n180,405,4.5\n180,406,5.0\n180,407,5.5\n180,408,6.0\n180,409,6.5\n180,410,7.0\n180,411,7.5\n180,412,8.0\n180,413,8.5\n180,414,9.0\n180,415,9.5\n180,416,10.0\n180,417,10.5\n180,418,11.0\n180,419,11.5\n180,420,12.0\n180,421,12.5\n180,422,13.0\n180,423,13.5\n180,424,14.0\n180,425,7.5\n180,426,7.0\n180,427,6.5\n180,428,6.0\n180,429,5.5\n180,430,5.0\n180,431,5.5\n180,432,6.0\n180,433,6.5\n180,434,7.0\n180,435,7.5\n180,436,8.0\n180,437,8.5\n180,438,9.0\n180,439,9.5\n180,440,10.0\n180,441,10.5\n180,442,11.0\n180,443,11.5\n180,444,12.0\n180,445,12.5\n180,446,13.0\n180,447,13.5\n180,448,14.0\n180,449,14.5\n180,450,8.0\n180,451,7.5\n180,452,7.0\n180,453,6.5\n180,454,6.0\n180,455,5.5\n180,456,6.0\n180,457,6.5\n180,458,7.0\n180,459,7.5\n180,460,8.0\n180,461,8.5\n180,462,9.0\n180,463,9.5\n180,464,10.0\n180,465,10.5\n180,466,11.0\n180,467,11.5\n180,468,12.0\n180,469,12.5\n180,470,13.0\n180,471,13.5\n180,472,14.0\n180,473,14.5\n180,474,15.0\n180,475,8.5\n180,476,8.0\n180,477,7.5\n180,478,7.0\n180,479,6.5\n180,480,6.0\n180,481,6.5\n180,482,7.0\n180,483,7.5\n180,484,8.0\n180,485,8.5\n180,486,9.0\n180,487,9.5\n180,488,10.0\n180,489,10.5\n180,490,11.0\n180,491,11.5\n180,492,12.0\n180,493,12.5\n180,494,13.0\n180,495,13.5\n180,496,14.0\n180,497,14.5\n180,498,15.0\n180,499,15.5\n180,500,9.0\n180,501,8.5\n180,502,8.0\n180,503,7.5\n180,504,7.0\n180,505,6.5\n180,506,7.0\n180,507,7.5\n180,508,8.0\n180,509,8.5\n180,510,9.0\n180,511,9.5\n180,512,10.0\n180,513,10.5\n180,514,11.0\n180,515,11.5\n180,516,12.0\n180,517,12.5\n180,518,13.0\n180,519,13.5\n180,520,14.0\n180,521,14.5\n180,522,15.0\n180,523,15.5\n180,524,16.0\n180,525,9.5\n180,526,9.0\n180,527,8.5\n180,528,8.0\n180,529,7.5\n180,530,7.0\n180,531,7.5\n180,532,8.0\n180,533,8.5\n180,534,9.0\n180,535,9.5\n180,536,10.0\n180,537,10.5\n180,538,11.0\n180,539,11.5\n180,540,12.0\n180,541,12.5\n180,542,13.0\n180,543,13.5\n180,544,14.0\n180,545,14.5\n180,546,15.0\n180,547,15.5\n180,548,16.0\n180,549,16.5\n180,550,10.0\n180,551,9.5\n180,552,9.0\n180,553,8.5\n180,554,8.0\n180,555,7.5\n180,556,8.0\n180,557,8.5\n180,558,9.0\n180,559,9.5\n180,560,10.0\n180,561,10.5\n180,562,11.0\n180,563,11.5\n180,564,12.0\n180,565,12.5\n180,566,13.0\n180,567,13.5\n180,568,14.0\n180,569,14.5\n180,570,15.0\n180,571,15.5\n180,572,16.0\n180,573,16.5\n180,574,17.0\n180,575,10.5\n180,576,10.0\n180,577,9.5\n180,578,9.0\n180,579,8.5\n180,580,8.0\n180,581,8.5\n180,582,9.0\n180,583,9.5\n180,584,10.0\n180,585,10.5\n180,586,11.0\n180,587,11.5\n180,588,12.0\n180,589,12.5\n180,590,13.0\n180,591,13.5\n180,592,14.0\n180,593,14.5\n180,594,15.0\n180,595,15.5\n180,596,16.0\n180,597,16.5\n180,598,17.0\n180,599,17.5\n180,600,11.0\n180,601,10.5\n180,602,10.0\n180,603,9.5\n180,604,9.0\n180,605,8.5\n180,606,9.0\n180,607,9.5\n180,608,10.0\n180,609,10.5\n180,610,11.0\n180,611,11.5\n180,612,12.0\n180,613,12.5\n180,614,13.0\n180,615,13.5\n180,616,14.0\n180,617,14.5\n180,618,15.0\n180,619,15.5\n180,620,16.0\n180,621,16.5\n180,622,17.0\n180,623,17.5\n180,624,18.0\n181,0,6.5\n181,1,6.0\n181,2,5.5\n181,3,5.0\n181,4,4.5\n181,5,4.0\n181,6,3.5\n181,7,4.0\n181,8,4.5\n181,9,5.0\n181,10,5.5\n181,11,6.0\n181,12,6.5\n181,13,7.0\n181,14,7.5\n181,15,8.0\n181,16,8.5\n181,17,9.0\n181,18,9.5\n181,19,10.0\n181,20,10.5\n181,21,11.0\n181,22,11.5\n181,23,12.0\n181,24,12.5\n181,25,6.0\n181,26,5.5\n181,27,5.0\n181,28,4.5\n181,29,4.0\n181,30,3.5\n181,31,3.0\n181,32,3.5\n181,33,4.0\n181,34,4.5\n181,35,5.0\n181,36,5.5\n181,37,6.0\n181,38,6.5\n181,39,7.0\n181,40,7.5\n181,41,8.0\n181,42,8.5\n181,43,9.0\n181,44,9.5\n181,45,10.0\n181,46,10.5\n181,47,11.0\n181,48,11.5\n181,49,12.0\n181,50,5.5\n181,51,5.0\n181,52,4.5\n181,53,4.0\n181,54,3.5\n181,55,3.0\n181,56,2.5\n181,57,3.0\n181,58,3.5\n181,59,4.0\n181,60,4.5\n181,61,5.0\n181,62,5.5\n181,63,6.0\n181,64,6.5\n181,65,7.0\n181,66,7.5\n181,67,8.0\n181,68,8.5\n181,69,9.0\n181,70,9.5\n181,71,10.0\n181,72,10.5\n181,73,11.0\n181,74,11.5\n181,75,5.0\n181,76,4.5\n181,77,4.0\n181,78,3.5\n181,79,3.0\n181,80,2.5\n181,81,2.0\n181,82,2.5\n181,83,3.0\n181,84,3.5\n181,85,4.0\n181,86,4.5\n181,87,5.0\n181,88,5.5\n181,89,6.0\n181,90,6.5\n181,91,7.0\n181,92,7.5\n181,93,8.0\n181,94,8.5\n181,95,9.0\n181,96,9.5\n181,97,10.0\n181,98,10.5\n181,99,11.0\n181,100,4.5\n181,101,4.0\n181,102,3.5\n181,103,3.0\n181,104,2.5\n181,105,2.0\n181,106,1.5\n181,107,2.0\n181,108,2.5\n181,109,3.0\n181,110,3.5\n181,111,4.0\n181,112,4.5\n181,113,5.0\n181,114,5.5\n181,115,6.0\n181,116,6.5\n181,117,7.0\n181,118,7.5\n181,119,8.0\n181,120,8.5\n181,121,9.0\n181,122,9.5\n181,123,10.0\n181,124,10.5\n181,125,4.0\n181,126,3.5\n181,127,3.0\n181,128,2.5\n181,129,2.0\n181,130,1.5\n181,131,1.0\n181,132,1.5\n181,133,2.0\n181,134,2.5\n181,135,3.0\n181,136,3.5\n181,137,4.0\n181,138,4.5\n181,139,5.0\n181,140,5.5\n181,141,6.0\n181,142,6.5\n181,143,7.0\n181,144,7.5\n181,145,8.0\n181,146,8.5\n181,147,9.0\n181,148,9.5\n181,149,10.0\n181,150,3.5\n181,151,3.0\n181,152,2.5\n181,153,2.0\n181,154,1.5\n181,155,1.0\n181,156,0.5\n181,157,1.0\n181,158,1.5\n181,159,2.0\n181,160,2.5\n181,161,3.0\n181,162,3.5\n181,163,4.0\n181,164,4.5\n181,165,5.0\n181,166,5.5\n181,167,6.0\n181,168,6.5\n181,169,7.0\n181,170,7.5\n181,171,8.0\n181,172,8.5\n181,173,9.0\n181,174,9.5\n181,175,3.0\n181,176,2.5\n181,177,2.0\n181,178,1.5\n181,179,1.0\n181,180,0.5\n181,181,0\n181,182,0.5\n181,183,1.0\n181,184,1.5\n181,185,2.0\n181,186,2.5\n181,187,3.0\n181,188,3.5\n181,189,4.0\n181,190,4.5\n181,191,5.0\n181,192,5.5\n181,193,6.0\n181,194,6.5\n181,195,7.0\n181,196,7.5\n181,197,8.0\n181,198,8.5\n181,199,9.0\n181,200,3.5\n181,201,3.0\n181,202,2.5\n181,203,2.0\n181,204,1.5\n181,205,1.0\n181,206,0.5\n181,207,1.0\n181,208,1.5\n181,209,2.0\n181,210,2.5\n181,211,3.0\n181,212,3.5\n181,213,4.0\n181,214,4.5\n181,215,5.0\n181,216,5.5\n181,217,6.0\n181,218,6.5\n181,219,7.0\n181,220,7.5\n181,221,8.0\n181,222,8.5\n181,223,9.0\n181,224,9.5\n181,225,4.0\n181,226,3.5\n181,227,3.0\n181,228,2.5\n181,229,2.0\n181,230,1.5\n181,231,1.0\n181,232,1.5\n181,233,2.0\n181,234,2.5\n181,235,3.0\n181,236,3.5\n181,237,4.0\n181,238,4.5\n181,239,5.0\n181,240,5.5\n181,241,6.0\n181,242,6.5\n181,243,7.0\n181,244,7.5\n181,245,8.0\n181,246,8.5\n181,247,9.0\n181,248,9.5\n181,249,10.0\n181,250,4.5\n181,251,4.0\n181,252,3.5\n181,253,3.0\n181,254,2.5\n181,255,2.0\n181,256,1.5\n181,257,2.0\n181,258,2.5\n181,259,3.0\n181,260,3.5\n181,261,4.0\n181,262,4.5\n181,263,5.0\n181,264,5.5\n181,265,6.0\n181,266,6.5\n181,267,7.0\n181,268,7.5\n181,269,8.0\n181,270,8.5\n181,271,9.0\n181,272,9.5\n181,273,10.0\n181,274,10.5\n181,275,5.0\n181,276,4.5\n181,277,4.0\n181,278,3.5\n181,279,3.0\n181,280,2.5\n181,281,2.0\n181,282,2.5\n181,283,3.0\n181,284,3.5\n181,285,4.0\n181,286,4.5\n181,287,5.0\n181,288,5.5\n181,289,6.0\n181,290,6.5\n181,291,7.0\n181,292,7.5\n181,293,8.0\n181,294,8.5\n181,295,9.0\n181,296,9.5\n181,297,10.0\n181,298,10.5\n181,299,11.0\n181,300,5.5\n181,301,5.0\n181,302,4.5\n181,303,4.0\n181,304,3.5\n181,305,3.0\n181,306,2.5\n181,307,3.0\n181,308,3.5\n181,309,4.0\n181,310,4.5\n181,311,5.0\n181,312,5.5\n181,313,6.0\n181,314,6.5\n181,315,7.0\n181,316,7.5\n181,317,8.0\n181,318,8.5\n181,319,9.0\n181,320,9.5\n181,321,10.0\n181,322,10.5\n181,323,11.0\n181,324,11.5\n181,325,6.0\n181,326,5.5\n181,327,5.0\n181,328,4.5\n181,329,4.0\n181,330,3.5\n181,331,3.0\n181,332,3.5\n181,333,4.0\n181,334,4.5\n181,335,5.0\n181,336,5.5\n181,337,6.0\n181,338,6.5\n181,339,7.0\n181,340,7.5\n181,341,8.0\n181,342,8.5\n181,343,9.0\n181,344,9.5\n181,345,10.0\n181,346,10.5\n181,347,11.0\n181,348,11.5\n181,349,12.0\n181,350,6.5\n181,351,6.0\n181,352,5.5\n181,353,5.0\n181,354,4.5\n181,355,4.0\n181,356,3.5\n181,357,4.0\n181,358,4.5\n181,359,5.0\n181,360,5.5\n181,361,6.0\n181,362,6.5\n181,363,7.0\n181,364,7.5\n181,365,8.0\n181,366,8.5\n181,367,9.0\n181,368,9.5\n181,369,10.0\n181,370,10.5\n181,371,11.0\n181,372,11.5\n181,373,12.0\n181,374,12.5\n181,375,7.0\n181,376,6.5\n181,377,6.0\n181,378,5.5\n181,379,5.0\n181,380,4.5\n181,381,4.0\n181,382,4.5\n181,383,5.0\n181,384,5.5\n181,385,6.0\n181,386,6.5\n181,387,7.0\n181,388,7.5\n181,389,8.0\n181,390,8.5\n181,391,9.0\n181,392,9.5\n181,393,10.0\n181,394,10.5\n181,395,11.0\n181,396,11.5\n181,397,12.0\n181,398,12.5\n181,399,13.0\n181,400,7.5\n181,401,7.0\n181,402,6.5\n181,403,6.0\n181,404,5.5\n181,405,5.0\n181,406,4.5\n181,407,5.0\n181,408,5.5\n181,409,6.0\n181,410,6.5\n181,411,7.0\n181,412,7.5\n181,413,8.0\n181,414,8.5\n181,415,9.0\n181,416,9.5\n181,417,10.0\n181,418,10.5\n181,419,11.0\n181,420,11.5\n181,421,12.0\n181,422,12.5\n181,423,13.0\n181,424,13.5\n181,425,8.0\n181,426,7.5\n181,427,7.0\n181,428,6.5\n181,429,6.0\n181,430,5.5\n181,431,5.0\n181,432,5.5\n181,433,6.0\n181,434,6.5\n181,435,7.0\n181,436,7.5\n181,437,8.0\n181,438,8.5\n181,439,9.0\n181,440,9.5\n181,441,10.0\n181,442,10.5\n181,443,11.0\n181,444,11.5\n181,445,12.0\n181,446,12.5\n181,447,13.0\n181,448,13.5\n181,449,14.0\n181,450,8.5\n181,451,8.0\n181,452,7.5\n181,453,7.0\n181,454,6.5\n181,455,6.0\n181,456,5.5\n181,457,6.0\n181,458,6.5\n181,459,7.0\n181,460,7.5\n181,461,8.0\n181,462,8.5\n181,463,9.0\n181,464,9.5\n181,465,10.0\n181,466,10.5\n181,467,11.0\n181,468,11.5\n181,469,12.0\n181,470,12.5\n181,471,13.0\n181,472,13.5\n181,473,14.0\n181,474,14.5\n181,475,9.0\n181,476,8.5\n181,477,8.0\n181,478,7.5\n181,479,7.0\n181,480,6.5\n181,481,6.0\n181,482,6.5\n181,483,7.0\n181,484,7.5\n181,485,8.0\n181,486,8.5\n181,487,9.0\n181,488,9.5\n181,489,10.0\n181,490,10.5\n181,491,11.0\n181,492,11.5\n181,493,12.0\n181,494,12.5\n181,495,13.0\n181,496,13.5\n181,497,14.0\n181,498,14.5\n181,499,15.0\n181,500,9.5\n181,501,9.0\n181,502,8.5\n181,503,8.0\n181,504,7.5\n181,505,7.0\n181,506,6.5\n181,507,7.0\n181,508,7.5\n181,509,8.0\n181,510,8.5\n181,511,9.0\n181,512,9.5\n181,513,10.0\n181,514,10.5\n181,515,11.0\n181,516,11.5\n181,517,12.0\n181,518,12.5\n181,519,13.0\n181,520,13.5\n181,521,14.0\n181,522,14.5\n181,523,15.0\n181,524,15.5\n181,525,10.0\n181,526,9.5\n181,527,9.0\n181,528,8.5\n181,529,8.0\n181,530,7.5\n181,531,7.0\n181,532,7.5\n181,533,8.0\n181,534,8.5\n181,535,9.0\n181,536,9.5\n181,537,10.0\n181,538,10.5\n181,539,11.0\n181,540,11.5\n181,541,12.0\n181,542,12.5\n181,543,13.0\n181,544,13.5\n181,545,14.0\n181,546,14.5\n181,547,15.0\n181,548,15.5\n181,549,16.0\n181,550,10.5\n181,551,10.0\n181,552,9.5\n181,553,9.0\n181,554,8.5\n181,555,8.0\n181,556,7.5\n181,557,8.0\n181,558,8.5\n181,559,9.0\n181,560,9.5\n181,561,10.0\n181,562,10.5\n181,563,11.0\n181,564,11.5\n181,565,12.0\n181,566,12.5\n181,567,13.0\n181,568,13.5\n181,569,14.0\n181,570,14.5\n181,571,15.0\n181,572,15.5\n181,573,16.0\n181,574,16.5\n181,575,11.0\n181,576,10.5\n181,577,10.0\n181,578,9.5\n181,579,9.0\n181,580,8.5\n181,581,8.0\n181,582,8.5\n181,583,9.0\n181,584,9.5\n181,585,10.0\n181,586,10.5\n181,587,11.0\n181,588,11.5\n181,589,12.0\n181,590,12.5\n181,591,13.0\n181,592,13.5\n181,593,14.0\n181,594,14.5\n181,595,15.0\n181,596,15.5\n181,597,16.0\n181,598,16.5\n181,599,17.0\n181,600,11.5\n181,601,11.0\n181,602,10.5\n181,603,10.0\n181,604,9.5\n181,605,9.0\n181,606,8.5\n181,607,9.0\n181,608,9.5\n181,609,10.0\n181,610,10.5\n181,611,11.0\n181,612,11.5\n181,613,12.0\n181,614,12.5\n181,615,13.0\n181,616,13.5\n181,617,14.0\n181,618,14.5\n181,619,15.0\n181,620,15.5\n181,621,16.0\n181,622,16.5\n181,623,17.0\n181,624,17.5\n182,0,7.0\n182,1,6.5\n182,2,6.0\n182,3,5.5\n182,4,5.0\n182,5,4.5\n182,6,4.0\n182,7,3.5\n182,8,4.0\n182,9,4.5\n182,10,5.0\n182,11,5.5\n182,12,6.0\n182,13,6.5\n182,14,7.0\n182,15,7.5\n182,16,8.0\n182,17,8.5\n182,18,9.0\n182,19,9.5\n182,20,10.0\n182,21,10.5\n182,22,11.0\n182,23,11.5\n182,24,12.0\n182,25,6.5\n182,26,6.0\n182,27,5.5\n182,28,5.0\n182,29,4.5\n182,30,4.0\n182,31,3.5\n182,32,3.0\n182,33,3.5\n182,34,4.0\n182,35,4.5\n182,36,5.0\n182,37,5.5\n182,38,6.0\n182,39,6.5\n182,40,7.0\n182,41,7.5\n182,42,8.0\n182,43,8.5\n182,44,9.0\n182,45,9.5\n182,46,10.0\n182,47,10.5\n182,48,11.0\n182,49,11.5\n182,50,6.0\n182,51,5.5\n182,52,5.0\n182,53,4.5\n182,54,4.0\n182,55,3.5\n182,56,3.0\n182,57,2.5\n182,58,3.0\n182,59,3.5\n182,60,4.0\n182,61,4.5\n182,62,5.0\n182,63,5.5\n182,64,6.0\n182,65,6.5\n182,66,7.0\n182,67,7.5\n182,68,8.0\n182,69,8.5\n182,70,9.0\n182,71,9.5\n182,72,10.0\n182,73,10.5\n182,74,11.0\n182,75,5.5\n182,76,5.0\n182,77,4.5\n182,78,4.0\n182,79,3.5\n182,80,3.0\n182,81,2.5\n182,82,2.0\n182,83,2.5\n182,84,3.0\n182,85,3.5\n182,86,4.0\n182,87,4.5\n182,88,5.0\n182,89,5.5\n182,90,6.0\n182,91,6.5\n182,92,7.0\n182,93,7.5\n182,94,8.0\n182,95,8.5\n182,96,9.0\n182,97,9.5\n182,98,10.0\n182,99,10.5\n182,100,5.0\n182,101,4.5\n182,102,4.0\n182,103,3.5\n182,104,3.0\n182,105,2.5\n182,106,2.0\n182,107,1.5\n182,108,2.0\n182,109,2.5\n182,110,3.0\n182,111,3.5\n182,112,4.0\n182,113,4.5\n182,114,5.0\n182,115,5.5\n182,116,6.0\n182,117,6.5\n182,118,7.0\n182,119,7.5\n182,120,8.0\n182,121,8.5\n182,122,9.0\n182,123,9.5\n182,124,10.0\n182,125,4.5\n182,126,4.0\n182,127,3.5\n182,128,3.0\n182,129,2.5\n182,130,2.0\n182,131,1.5\n182,132,1.0\n182,133,1.5\n182,134,2.0\n182,135,2.5\n182,136,3.0\n182,137,3.5\n182,138,4.0\n182,139,4.5\n182,140,5.0\n182,141,5.5\n182,142,6.0\n182,143,6.5\n182,144,7.0\n182,145,7.5\n182,146,8.0\n182,147,8.5\n182,148,9.0\n182,149,9.5\n182,150,4.0\n182,151,3.5\n182,152,3.0\n182,153,2.5\n182,154,2.0\n182,155,1.5\n182,156,1.0\n182,157,0.5\n182,158,1.0\n182,159,1.5\n182,160,2.0\n182,161,2.5\n182,162,3.0\n182,163,3.5\n182,164,4.0\n182,165,4.5\n182,166,5.0\n182,167,5.5\n182,168,6.0\n182,169,6.5\n182,170,7.0\n182,171,7.5\n182,172,8.0\n182,173,8.5\n182,174,9.0\n182,175,3.5\n182,176,3.0\n182,177,2.5\n182,178,2.0\n182,179,1.5\n182,180,1.0\n182,181,0.5\n182,182,0\n182,183,0.5\n182,184,1.0\n182,185,1.5\n182,186,2.0\n182,187,2.5\n182,188,3.0\n182,189,3.5\n182,190,4.0\n182,191,4.5\n182,192,5.0\n182,193,5.5\n182,194,6.0\n182,195,6.5\n182,196,7.0\n182,197,7.5\n182,198,8.0\n182,199,8.5\n182,200,4.0\n182,201,3.5\n182,202,3.0\n182,203,2.5\n182,204,2.0\n182,205,1.5\n182,206,1.0\n182,207,0.5\n182,208,1.0\n182,209,1.5\n182,210,2.0\n182,211,2.5\n182,212,3.0\n182,213,3.5\n182,214,4.0\n182,215,4.5\n182,216,5.0\n182,217,5.5\n182,218,6.0\n182,219,6.5\n182,220,7.0\n182,221,7.5\n182,222,8.0\n182,223,8.5\n182,224,9.0\n182,225,4.5\n182,226,4.0\n182,227,3.5\n182,228,3.0\n182,229,2.5\n182,230,2.0\n182,231,1.5\n182,232,1.0\n182,233,1.5\n182,234,2.0\n182,235,2.5\n182,236,3.0\n182,237,3.5\n182,238,4.0\n182,239,4.5\n182,240,5.0\n182,241,5.5\n182,242,6.0\n182,243,6.5\n182,244,7.0\n182,245,7.5\n182,246,8.0\n182,247,8.5\n182,248,9.0\n182,249,9.5\n182,250,5.0\n182,251,4.5\n182,252,4.0\n182,253,3.5\n182,254,3.0\n182,255,2.5\n182,256,2.0\n182,257,1.5\n182,258,2.0\n182,259,2.5\n182,260,3.0\n182,261,3.5\n182,262,4.0\n182,263,4.5\n182,264,5.0\n182,265,5.5\n182,266,6.0\n182,267,6.5\n182,268,7.0\n182,269,7.5\n182,270,8.0\n182,271,8.5\n182,272,9.0\n182,273,9.5\n182,274,10.0\n182,275,5.5\n182,276,5.0\n182,277,4.5\n182,278,4.0\n182,279,3.5\n182,280,3.0\n182,281,2.5\n182,282,2.0\n182,283,2.5\n182,284,3.0\n182,285,3.5\n182,286,4.0\n182,287,4.5\n182,288,5.0\n182,289,5.5\n182,290,6.0\n182,291,6.5\n182,292,7.0\n182,293,7.5\n182,294,8.0\n182,295,8.5\n182,296,9.0\n182,297,9.5\n182,298,10.0\n182,299,10.5\n182,300,6.0\n182,301,5.5\n182,302,5.0\n182,303,4.5\n182,304,4.0\n182,305,3.5\n182,306,3.0\n182,307,2.5\n182,308,3.0\n182,309,3.5\n182,310,4.0\n182,311,4.5\n182,312,5.0\n182,313,5.5\n182,314,6.0\n182,315,6.5\n182,316,7.0\n182,317,7.5\n182,318,8.0\n182,319,8.5\n182,320,9.0\n182,321,9.5\n182,322,10.0\n182,323,10.5\n182,324,11.0\n182,325,6.5\n182,326,6.0\n182,327,5.5\n182,328,5.0\n182,329,4.5\n182,330,4.0\n182,331,3.5\n182,332,3.0\n182,333,3.5\n182,334,4.0\n182,335,4.5\n182,336,5.0\n182,337,5.5\n182,338,6.0\n182,339,6.5\n182,340,7.0\n182,341,7.5\n182,342,8.0\n182,343,8.5\n182,344,9.0\n182,345,9.5\n182,346,10.0\n182,347,10.5\n182,348,11.0\n182,349,11.5\n182,350,7.0\n182,351,6.5\n182,352,6.0\n182,353,5.5\n182,354,5.0\n182,355,4.5\n182,356,4.0\n182,357,3.5\n182,358,4.0\n182,359,4.5\n182,360,5.0\n182,361,5.5\n182,362,6.0\n182,363,6.5\n182,364,7.0\n182,365,7.5\n182,366,8.0\n182,367,8.5\n182,368,9.0\n182,369,9.5\n182,370,10.0\n182,371,10.5\n182,372,11.0\n182,373,11.5\n182,374,12.0\n182,375,7.5\n182,376,7.0\n182,377,6.5\n182,378,6.0\n182,379,5.5\n182,380,5.0\n182,381,4.5\n182,382,4.0\n182,383,4.5\n182,384,5.0\n182,385,5.5\n182,386,6.0\n182,387,6.5\n182,388,7.0\n182,389,7.5\n182,390,8.0\n182,391,8.5\n182,392,9.0\n182,393,9.5\n182,394,10.0\n182,395,10.5\n182,396,11.0\n182,397,11.5\n182,398,12.0\n182,399,12.5\n182,400,8.0\n182,401,7.5\n182,402,7.0\n182,403,6.5\n182,404,6.0\n182,405,5.5\n182,406,5.0\n182,407,4.5\n182,408,5.0\n182,409,5.5\n182,410,6.0\n182,411,6.5\n182,412,7.0\n182,413,7.5\n182,414,8.0\n182,415,8.5\n182,416,9.0\n182,417,9.5\n182,418,10.0\n182,419,10.5\n182,420,11.0\n182,421,11.5\n182,422,12.0\n182,423,12.5\n182,424,13.0\n182,425,8.5\n182,426,8.0\n182,427,7.5\n182,428,7.0\n182,429,6.5\n182,430,6.0\n182,431,5.5\n182,432,5.0\n182,433,5.5\n182,434,6.0\n182,435,6.5\n182,436,7.0\n182,437,7.5\n182,438,8.0\n182,439,8.5\n182,440,9.0\n182,441,9.5\n182,442,10.0\n182,443,10.5\n182,444,11.0\n182,445,11.5\n182,446,12.0\n182,447,12.5\n182,448,13.0\n182,449,13.5\n182,450,9.0\n182,451,8.5\n182,452,8.0\n182,453,7.5\n182,454,7.0\n182,455,6.5\n182,456,6.0\n182,457,5.5\n182,458,6.0\n182,459,6.5\n182,460,7.0\n182,461,7.5\n182,462,8.0\n182,463,8.5\n182,464,9.0\n182,465,9.5\n182,466,10.0\n182,467,10.5\n182,468,11.0\n182,469,11.5\n182,470,12.0\n182,471,12.5\n182,472,13.0\n182,473,13.5\n182,474,14.0\n182,475,9.5\n182,476,9.0\n182,477,8.5\n182,478,8.0\n182,479,7.5\n182,480,7.0\n182,481,6.5\n182,482,6.0\n182,483,6.5\n182,484,7.0\n182,485,7.5\n182,486,8.0\n182,487,8.5\n182,488,9.0\n182,489,9.5\n182,490,10.0\n182,491,10.5\n182,492,11.0\n182,493,11.5\n182,494,12.0\n182,495,12.5\n182,496,13.0\n182,497,13.5\n182,498,14.0\n182,499,14.5\n182,500,10.0\n182,501,9.5\n182,502,9.0\n182,503,8.5\n182,504,8.0\n182,505,7.5\n182,506,7.0\n182,507,6.5\n182,508,7.0\n182,509,7.5\n182,510,8.0\n182,511,8.5\n182,512,9.0\n182,513,9.5\n182,514,10.0\n182,515,10.5\n182,516,11.0\n182,517,11.5\n182,518,12.0\n182,519,12.5\n182,520,13.0\n182,521,13.5\n182,522,14.0\n182,523,14.5\n182,524,15.0\n182,525,10.5\n182,526,10.0\n182,527,9.5\n182,528,9.0\n182,529,8.5\n182,530,8.0\n182,531,7.5\n182,532,7.0\n182,533,7.5\n182,534,8.0\n182,535,8.5\n182,536,9.0\n182,537,9.5\n182,538,10.0\n182,539,10.5\n182,540,11.0\n182,541,11.5\n182,542,12.0\n182,543,12.5\n182,544,13.0\n182,545,13.5\n182,546,14.0\n182,547,14.5\n182,548,15.0\n182,549,15.5\n182,550,11.0\n182,551,10.5\n182,552,10.0\n182,553,9.5\n182,554,9.0\n182,555,8.5\n182,556,8.0\n182,557,7.5\n182,558,8.0\n182,559,8.5\n182,560,9.0\n182,561,9.5\n182,562,10.0\n182,563,10.5\n182,564,11.0\n182,565,11.5\n182,566,12.0\n182,567,12.5\n182,568,13.0\n182,569,13.5\n182,570,14.0\n182,571,14.5\n182,572,15.0\n182,573,15.5\n182,574,16.0\n182,575,11.5\n182,576,11.0\n182,577,10.5\n182,578,10.0\n182,579,9.5\n182,580,9.0\n182,581,8.5\n182,582,8.0\n182,583,8.5\n182,584,9.0\n182,585,9.5\n182,586,10.0\n182,587,10.5\n182,588,11.0\n182,589,11.5\n182,590,12.0\n182,591,12.5\n182,592,13.0\n182,593,13.5\n182,594,14.0\n182,595,14.5\n182,596,15.0\n182,597,15.5\n182,598,16.0\n182,599,16.5\n182,600,12.0\n182,601,11.5\n182,602,11.0\n182,603,10.5\n182,604,10.0\n182,605,9.5\n182,606,9.0\n182,607,8.5\n182,608,9.0\n182,609,9.5\n182,610,10.0\n182,611,10.5\n182,612,11.0\n182,613,11.5\n182,614,12.0\n182,615,12.5\n182,616,13.0\n182,617,13.5\n182,618,14.0\n182,619,14.5\n182,620,15.0\n182,621,15.5\n182,622,16.0\n182,623,16.5\n182,624,17.0\n183,0,7.5\n183,1,7.0\n183,2,6.5\n183,3,6.0\n183,4,5.5\n183,5,5.0\n183,6,4.5\n183,7,4.0\n183,8,3.5\n183,9,4.0\n183,10,4.5\n183,11,5.0\n183,12,5.5\n183,13,6.0\n183,14,6.5\n183,15,7.0\n183,16,7.5\n183,17,8.0\n183,18,8.5\n183,19,9.0\n183,20,9.5\n183,21,10.0\n183,22,10.5\n183,23,11.0\n183,24,11.5\n183,25,7.0\n183,26,6.5\n183,27,6.0\n183,28,5.5\n183,29,5.0\n183,30,4.5\n183,31,4.0\n183,32,3.5\n183,33,3.0\n183,34,3.5\n183,35,4.0\n183,36,4.5\n183,37,5.0\n183,38,5.5\n183,39,6.0\n183,40,6.5\n183,41,7.0\n183,42,7.5\n183,43,8.0\n183,44,8.5\n183,45,9.0\n183,46,9.5\n183,47,10.0\n183,48,10.5\n183,49,11.0\n183,50,6.5\n183,51,6.0\n183,52,5.5\n183,53,5.0\n183,54,4.5\n183,55,4.0\n183,56,3.5\n183,57,3.0\n183,58,2.5\n183,59,3.0\n183,60,3.5\n183,61,4.0\n183,62,4.5\n183,63,5.0\n183,64,5.5\n183,65,6.0\n183,66,6.5\n183,67,7.0\n183,68,7.5\n183,69,8.0\n183,70,8.5\n183,71,9.0\n183,72,9.5\n183,73,10.0\n183,74,10.5\n183,75,6.0\n183,76,5.5\n183,77,5.0\n183,78,4.5\n183,79,4.0\n183,80,3.5\n183,81,3.0\n183,82,2.5\n183,83,2.0\n183,84,2.5\n183,85,3.0\n183,86,3.5\n183,87,4.0\n183,88,4.5\n183,89,5.0\n183,90,5.5\n183,91,6.0\n183,92,6.5\n183,93,7.0\n183,94,7.5\n183,95,8.0\n183,96,8.5\n183,97,9.0\n183,98,9.5\n183,99,10.0\n183,100,5.5\n183,101,5.0\n183,102,4.5\n183,103,4.0\n183,104,3.5\n183,105,3.0\n183,106,2.5\n183,107,2.0\n183,108,1.5\n183,109,2.0\n183,110,2.5\n183,111,3.0\n183,112,3.5\n183,113,4.0\n183,114,4.5\n183,115,5.0\n183,116,5.5\n183,117,6.0\n183,118,6.5\n183,119,7.0\n183,120,7.5\n183,121,8.0\n183,122,8.5\n183,123,9.0\n183,124,9.5\n183,125,5.0\n183,126,4.5\n183,127,4.0\n183,128,3.5\n183,129,3.0\n183,130,2.5\n183,131,2.0\n183,132,1.5\n183,133,1.0\n183,134,1.5\n183,135,2.0\n183,136,2.5\n183,137,3.0\n183,138,3.5\n183,139,4.0\n183,140,4.5\n183,141,5.0\n183,142,5.5\n183,143,6.0\n183,144,6.5\n183,145,7.0\n183,146,7.5\n183,147,8.0\n183,148,8.5\n183,149,9.0\n183,150,4.5\n183,151,4.0\n183,152,3.5\n183,153,3.0\n183,154,2.5\n183,155,2.0\n183,156,1.5\n183,157,1.0\n183,158,0.5\n183,159,1.0\n183,160,1.5\n183,161,2.0\n183,162,2.5\n183,163,3.0\n183,164,3.5\n183,165,4.0\n183,166,4.5\n183,167,5.0\n183,168,5.5\n183,169,6.0\n183,170,6.5\n183,171,7.0\n183,172,7.5\n183,173,8.0\n183,174,8.5\n183,175,4.0\n183,176,3.5\n183,177,3.0\n183,178,2.5\n183,179,2.0\n183,180,1.5\n183,181,1.0\n183,182,0.5\n183,183,0\n183,184,0.5\n183,185,1.0\n183,186,1.5\n183,187,2.0\n183,188,2.5\n183,189,3.0\n183,190,3.5\n183,191,4.0\n183,192,4.5\n183,193,5.0\n183,194,5.5\n183,195,6.0\n183,196,6.5\n183,197,7.0\n183,198,7.5\n183,199,8.0\n183,200,4.5\n183,201,4.0\n183,202,3.5\n183,203,3.0\n183,204,2.5\n183,205,2.0\n183,206,1.5\n183,207,1.0\n183,208,0.5\n183,209,1.0\n183,210,1.5\n183,211,2.0\n183,212,2.5\n183,213,3.0\n183,214,3.5\n183,215,4.0\n183,216,4.5\n183,217,5.0\n183,218,5.5\n183,219,6.0\n183,220,6.5\n183,221,7.0\n183,222,7.5\n183,223,8.0\n183,224,8.5\n183,225,5.0\n183,226,4.5\n183,227,4.0\n183,228,3.5\n183,229,3.0\n183,230,2.5\n183,231,2.0\n183,232,1.5\n183,233,1.0\n183,234,1.5\n183,235,2.0\n183,236,2.5\n183,237,3.0\n183,238,3.5\n183,239,4.0\n183,240,4.5\n183,241,5.0\n183,242,5.5\n183,243,6.0\n183,244,6.5\n183,245,7.0\n183,246,7.5\n183,247,8.0\n183,248,8.5\n183,249,9.0\n183,250,5.5\n183,251,5.0\n183,252,4.5\n183,253,4.0\n183,254,3.5\n183,255,3.0\n183,256,2.5\n183,257,2.0\n183,258,1.5\n183,259,2.0\n183,260,2.5\n183,261,3.0\n183,262,3.5\n183,263,4.0\n183,264,4.5\n183,265,5.0\n183,266,5.5\n183,267,6.0\n183,268,6.5\n183,269,7.0\n183,270,7.5\n183,271,8.0\n183,272,8.5\n183,273,9.0\n183,274,9.5\n183,275,6.0\n183,276,5.5\n183,277,5.0\n183,278,4.5\n183,279,4.0\n183,280,3.5\n183,281,3.0\n183,282,2.5\n183,283,2.0\n183,284,2.5\n183,285,3.0\n183,286,3.5\n183,287,4.0\n183,288,4.5\n183,289,5.0\n183,290,5.5\n183,291,6.0\n183,292,6.5\n183,293,7.0\n183,294,7.5\n183,295,8.0\n183,296,8.5\n183,297,9.0\n183,298,9.5\n183,299,10.0\n183,300,6.5\n183,301,6.0\n183,302,5.5\n183,303,5.0\n183,304,4.5\n183,305,4.0\n183,306,3.5\n183,307,3.0\n183,308,2.5\n183,309,3.0\n183,310,3.5\n183,311,4.0\n183,312,4.5\n183,313,5.0\n183,314,5.5\n183,315,6.0\n183,316,6.5\n183,317,7.0\n183,318,7.5\n183,319,8.0\n183,320,8.5\n183,321,9.0\n183,322,9.5\n183,323,10.0\n183,324,10.5\n183,325,7.0\n183,326,6.5\n183,327,6.0\n183,328,5.5\n183,329,5.0\n183,330,4.5\n183,331,4.0\n183,332,3.5\n183,333,3.0\n183,334,3.5\n183,335,4.0\n183,336,4.5\n183,337,5.0\n183,338,5.5\n183,339,6.0\n183,340,6.5\n183,341,7.0\n183,342,7.5\n183,343,8.0\n183,344,8.5\n183,345,9.0\n183,346,9.5\n183,347,10.0\n183,348,10.5\n183,349,11.0\n183,350,7.5\n183,351,7.0\n183,352,6.5\n183,353,6.0\n183,354,5.5\n183,355,5.0\n183,356,4.5\n183,357,4.0\n183,358,3.5\n183,359,4.0\n183,360,4.5\n183,361,5.0\n183,362,5.5\n183,363,6.0\n183,364,6.5\n183,365,7.0\n183,366,7.5\n183,367,8.0\n183,368,8.5\n183,369,9.0\n183,370,9.5\n183,371,10.0\n183,372,10.5\n183,373,11.0\n183,374,11.5\n183,375,8.0\n183,376,7.5\n183,377,7.0\n183,378,6.5\n183,379,6.0\n183,380,5.5\n183,381,5.0\n183,382,4.5\n183,383,4.0\n183,384,4.5\n183,385,5.0\n183,386,5.5\n183,387,6.0\n183,388,6.5\n183,389,7.0\n183,390,7.5\n183,391,8.0\n183,392,8.5\n183,393,9.0\n183,394,9.5\n183,395,10.0\n183,396,10.5\n183,397,11.0\n183,398,11.5\n183,399,12.0\n183,400,8.5\n183,401,8.0\n183,402,7.5\n183,403,7.0\n183,404,6.5\n183,405,6.0\n183,406,5.5\n183,407,5.0\n183,408,4.5\n183,409,5.0\n183,410,5.5\n183,411,6.0\n183,412,6.5\n183,413,7.0\n183,414,7.5\n183,415,8.0\n183,416,8.5\n183,417,9.0\n183,418,9.5\n183,419,10.0\n183,420,10.5\n183,421,11.0\n183,422,11.5\n183,423,12.0\n183,424,12.5\n183,425,9.0\n183,426,8.5\n183,427,8.0\n183,428,7.5\n183,429,7.0\n183,430,6.5\n183,431,6.0\n183,432,5.5\n183,433,5.0\n183,434,5.5\n183,435,6.0\n183,436,6.5\n183,437,7.0\n183,438,7.5\n183,439,8.0\n183,440,8.5\n183,441,9.0\n183,442,9.5\n183,443,10.0\n183,444,10.5\n183,445,11.0\n183,446,11.5\n183,447,12.0\n183,448,12.5\n183,449,13.0\n183,450,9.5\n183,451,9.0\n183,452,8.5\n183,453,8.0\n183,454,7.5\n183,455,7.0\n183,456,6.5\n183,457,6.0\n183,458,5.5\n183,459,6.0\n183,460,6.5\n183,461,7.0\n183,462,7.5\n183,463,8.0\n183,464,8.5\n183,465,9.0\n183,466,9.5\n183,467,10.0\n183,468,10.5\n183,469,11.0\n183,470,11.5\n183,471,12.0\n183,472,12.5\n183,473,13.0\n183,474,13.5\n183,475,10.0\n183,476,9.5\n183,477,9.0\n183,478,8.5\n183,479,8.0\n183,480,7.5\n183,481,7.0\n183,482,6.5\n183,483,6.0\n183,484,6.5\n183,485,7.0\n183,486,7.5\n183,487,8.0\n183,488,8.5\n183,489,9.0\n183,490,9.5\n183,491,10.0\n183,492,10.5\n183,493,11.0\n183,494,11.5\n183,495,12.0\n183,496,12.5\n183,497,13.0\n183,498,13.5\n183,499,14.0\n183,500,10.5\n183,501,10.0\n183,502,9.5\n183,503,9.0\n183,504,8.5\n183,505,8.0\n183,506,7.5\n183,507,7.0\n183,508,6.5\n183,509,7.0\n183,510,7.5\n183,511,8.0\n183,512,8.5\n183,513,9.0\n183,514,9.5\n183,515,10.0\n183,516,10.5\n183,517,11.0\n183,518,11.5\n183,519,12.0\n183,520,12.5\n183,521,13.0\n183,522,13.5\n183,523,14.0\n183,524,14.5\n183,525,11.0\n183,526,10.5\n183,527,10.0\n183,528,9.5\n183,529,9.0\n183,530,8.5\n183,531,8.0\n183,532,7.5\n183,533,7.0\n183,534,7.5\n183,535,8.0\n183,536,8.5\n183,537,9.0\n183,538,9.5\n183,539,10.0\n183,540,10.5\n183,541,11.0\n183,542,11.5\n183,543,12.0\n183,544,12.5\n183,545,13.0\n183,546,13.5\n183,547,14.0\n183,548,14.5\n183,549,15.0\n183,550,11.5\n183,551,11.0\n183,552,10.5\n183,553,10.0\n183,554,9.5\n183,555,9.0\n183,556,8.5\n183,557,8.0\n183,558,7.5\n183,559,8.0\n183,560,8.5\n183,561,9.0\n183,562,9.5\n183,563,10.0\n183,564,10.5\n183,565,11.0\n183,566,11.5\n183,567,12.0\n183,568,12.5\n183,569,13.0\n183,570,13.5\n183,571,14.0\n183,572,14.5\n183,573,15.0\n183,574,15.5\n183,575,12.0\n183,576,11.5\n183,577,11.0\n183,578,10.5\n183,579,10.0\n183,580,9.5\n183,581,9.0\n183,582,8.5\n183,583,8.0\n183,584,8.5\n183,585,9.0\n183,586,9.5\n183,587,10.0\n183,588,10.5\n183,589,11.0\n183,590,11.5\n183,591,12.0\n183,592,12.5\n183,593,13.0\n183,594,13.5\n183,595,14.0\n183,596,14.5\n183,597,15.0\n183,598,15.5\n183,599,16.0\n183,600,12.5\n183,601,12.0\n183,602,11.5\n183,603,11.0\n183,604,10.5\n183,605,10.0\n183,606,9.5\n183,607,9.0\n183,608,8.5\n183,609,9.0\n183,610,9.5\n183,611,10.0\n183,612,10.5\n183,613,11.0\n183,614,11.5\n183,615,12.0\n183,616,12.5\n183,617,13.0\n183,618,13.5\n183,619,14.0\n183,620,14.5\n183,621,15.0\n183,622,15.5\n183,623,16.0\n183,624,16.5\n184,0,8.0\n184,1,7.5\n184,2,7.0\n184,3,6.5\n184,4,6.0\n184,5,5.5\n184,6,5.0\n184,7,4.5\n184,8,4.0\n184,9,3.5\n184,10,4.0\n184,11,4.5\n184,12,5.0\n184,13,5.5\n184,14,6.0\n184,15,6.5\n184,16,7.0\n184,17,7.5\n184,18,8.0\n184,19,8.5\n184,20,9.0\n184,21,9.5\n184,22,10.0\n184,23,10.5\n184,24,11.0\n184,25,7.5\n184,26,7.0\n184,27,6.5\n184,28,6.0\n184,29,5.5\n184,30,5.0\n184,31,4.5\n184,32,4.0\n184,33,3.5\n184,34,3.0\n184,35,3.5\n184,36,4.0\n184,37,4.5\n184,38,5.0\n184,39,5.5\n184,40,6.0\n184,41,6.5\n184,42,7.0\n184,43,7.5\n184,44,8.0\n184,45,8.5\n184,46,9.0\n184,47,9.5\n184,48,10.0\n184,49,10.5\n184,50,7.0\n184,51,6.5\n184,52,6.0\n184,53,5.5\n184,54,5.0\n184,55,4.5\n184,56,4.0\n184,57,3.5\n184,58,3.0\n184,59,2.5\n184,60,3.0\n184,61,3.5\n184,62,4.0\n184,63,4.5\n184,64,5.0\n184,65,5.5\n184,66,6.0\n184,67,6.5\n184,68,7.0\n184,69,7.5\n184,70,8.0\n184,71,8.5\n184,72,9.0\n184,73,9.5\n184,74,10.0\n184,75,6.5\n184,76,6.0\n184,77,5.5\n184,78,5.0\n184,79,4.5\n184,80,4.0\n184,81,3.5\n184,82,3.0\n184,83,2.5\n184,84,2.0\n184,85,2.5\n184,86,3.0\n184,87,3.5\n184,88,4.0\n184,89,4.5\n184,90,5.0\n184,91,5.5\n184,92,6.0\n184,93,6.5\n184,94,7.0\n184,95,7.5\n184,96,8.0\n184,97,8.5\n184,98,9.0\n184,99,9.5\n184,100,6.0\n184,101,5.5\n184,102,5.0\n184,103,4.5\n184,104,4.0\n184,105,3.5\n184,106,3.0\n184,107,2.5\n184,108,2.0\n184,109,1.5\n184,110,2.0\n184,111,2.5\n184,112,3.0\n184,113,3.5\n184,114,4.0\n184,115,4.5\n184,116,5.0\n184,117,5.5\n184,118,6.0\n184,119,6.5\n184,120,7.0\n184,121,7.5\n184,122,8.0\n184,123,8.5\n184,124,9.0\n184,125,5.5\n184,126,5.0\n184,127,4.5\n184,128,4.0\n184,129,3.5\n184,130,3.0\n184,131,2.5\n184,132,2.0\n184,133,1.5\n184,134,1.0\n184,135,1.5\n184,136,2.0\n184,137,2.5\n184,138,3.0\n184,139,3.5\n184,140,4.0\n184,141,4.5\n184,142,5.0\n184,143,5.5\n184,144,6.0\n184,145,6.5\n184,146,7.0\n184,147,7.5\n184,148,8.0\n184,149,8.5\n184,150,5.0\n184,151,4.5\n184,152,4.0\n184,153,3.5\n184,154,3.0\n184,155,2.5\n184,156,2.0\n184,157,1.5\n184,158,1.0\n184,159,0.5\n184,160,1.0\n184,161,1.5\n184,162,2.0\n184,163,2.5\n184,164,3.0\n184,165,3.5\n184,166,4.0\n184,167,4.5\n184,168,5.0\n184,169,5.5\n184,170,6.0\n184,171,6.5\n184,172,7.0\n184,173,7.5\n184,174,8.0\n184,175,4.5\n184,176,4.0\n184,177,3.5\n184,178,3.0\n184,179,2.5\n184,180,2.0\n184,181,1.5\n184,182,1.0\n184,183,0.5\n184,184,0\n184,185,0.5\n184,186,1.0\n184,187,1.5\n184,188,2.0\n184,189,2.5\n184,190,3.0\n184,191,3.5\n184,192,4.0\n184,193,4.5\n184,194,5.0\n184,195,5.5\n184,196,6.0\n184,197,6.5\n184,198,7.0\n184,199,7.5\n184,200,5.0\n184,201,4.5\n184,202,4.0\n184,203,3.5\n184,204,3.0\n184,205,2.5\n184,206,2.0\n184,207,1.5\n184,208,1.0\n184,209,0.5\n184,210,1.0\n184,211,1.5\n184,212,2.0\n184,213,2.5\n184,214,3.0\n184,215,3.5\n184,216,4.0\n184,217,4.5\n184,218,5.0\n184,219,5.5\n184,220,6.0\n184,221,6.5\n184,222,7.0\n184,223,7.5\n184,224,8.0\n184,225,5.5\n184,226,5.0\n184,227,4.5\n184,228,4.0\n184,229,3.5\n184,230,3.0\n184,231,2.5\n184,232,2.0\n184,233,1.5\n184,234,1.0\n184,235,1.5\n184,236,2.0\n184,237,2.5\n184,238,3.0\n184,239,3.5\n184,240,4.0\n184,241,4.5\n184,242,5.0\n184,243,5.5\n184,244,6.0\n184,245,6.5\n184,246,7.0\n184,247,7.5\n184,248,8.0\n184,249,8.5\n184,250,6.0\n184,251,5.5\n184,252,5.0\n184,253,4.5\n184,254,4.0\n184,255,3.5\n184,256,3.0\n184,257,2.5\n184,258,2.0\n184,259,1.5\n184,260,2.0\n184,261,2.5\n184,262,3.0\n184,263,3.5\n184,264,4.0\n184,265,4.5\n184,266,5.0\n184,267,5.5\n184,268,6.0\n184,269,6.5\n184,270,7.0\n184,271,7.5\n184,272,8.0\n184,273,8.5\n184,274,9.0\n184,275,6.5\n184,276,6.0\n184,277,5.5\n184,278,5.0\n184,279,4.5\n184,280,4.0\n184,281,3.5\n184,282,3.0\n184,283,2.5\n184,284,2.0\n184,285,2.5\n184,286,3.0\n184,287,3.5\n184,288,4.0\n184,289,4.5\n184,290,5.0\n184,291,5.5\n184,292,6.0\n184,293,6.5\n184,294,7.0\n184,295,7.5\n184,296,8.0\n184,297,8.5\n184,298,9.0\n184,299,9.5\n184,300,7.0\n184,301,6.5\n184,302,6.0\n184,303,5.5\n184,304,5.0\n184,305,4.5\n184,306,4.0\n184,307,3.5\n184,308,3.0\n184,309,2.5\n184,310,3.0\n184,311,3.5\n184,312,4.0\n184,313,4.5\n184,314,5.0\n184,315,5.5\n184,316,6.0\n184,317,6.5\n184,318,7.0\n184,319,7.5\n184,320,8.0\n184,321,8.5\n184,322,9.0\n184,323,9.5\n184,324,10.0\n184,325,7.5\n184,326,7.0\n184,327,6.5\n184,328,6.0\n184,329,5.5\n184,330,5.0\n184,331,4.5\n184,332,4.0\n184,333,3.5\n184,334,3.0\n184,335,3.5\n184,336,4.0\n184,337,4.5\n184,338,5.0\n184,339,5.5\n184,340,6.0\n184,341,6.5\n184,342,7.0\n184,343,7.5\n184,344,8.0\n184,345,8.5\n184,346,9.0\n184,347,9.5\n184,348,10.0\n184,349,10.5\n184,350,8.0\n184,351,7.5\n184,352,7.0\n184,353,6.5\n184,354,6.0\n184,355,5.5\n184,356,5.0\n184,357,4.5\n184,358,4.0\n184,359,3.5\n184,360,4.0\n184,361,4.5\n184,362,5.0\n184,363,5.5\n184,364,6.0\n184,365,6.5\n184,366,7.0\n184,367,7.5\n184,368,8.0\n184,369,8.5\n184,370,9.0\n184,371,9.5\n184,372,10.0\n184,373,10.5\n184,374,11.0\n184,375,8.5\n184,376,8.0\n184,377,7.5\n184,378,7.0\n184,379,6.5\n184,380,6.0\n184,381,5.5\n184,382,5.0\n184,383,4.5\n184,384,4.0\n184,385,4.5\n184,386,5.0\n184,387,5.5\n184,388,6.0\n184,389,6.5\n184,390,7.0\n184,391,7.5\n184,392,8.0\n184,393,8.5\n184,394,9.0\n184,395,9.5\n184,396,10.0\n184,397,10.5\n184,398,11.0\n184,399,11.5\n184,400,9.0\n184,401,8.5\n184,402,8.0\n184,403,7.5\n184,404,7.0\n184,405,6.5\n184,406,6.0\n184,407,5.5\n184,408,5.0\n184,409,4.5\n184,410,5.0\n184,411,5.5\n184,412,6.0\n184,413,6.5\n184,414,7.0\n184,415,7.5\n184,416,8.0\n184,417,8.5\n184,418,9.0\n184,419,9.5\n184,420,10.0\n184,421,10.5\n184,422,11.0\n184,423,11.5\n184,424,12.0\n184,425,9.5\n184,426,9.0\n184,427,8.5\n184,428,8.0\n184,429,7.5\n184,430,7.0\n184,431,6.5\n184,432,6.0\n184,433,5.5\n184,434,5.0\n184,435,5.5\n184,436,6.0\n184,437,6.5\n184,438,7.0\n184,439,7.5\n184,440,8.0\n184,441,8.5\n184,442,9.0\n184,443,9.5\n184,444,10.0\n184,445,10.5\n184,446,11.0\n184,447,11.5\n184,448,12.0\n184,449,12.5\n184,450,10.0\n184,451,9.5\n184,452,9.0\n184,453,8.5\n184,454,8.0\n184,455,7.5\n184,456,7.0\n184,457,6.5\n184,458,6.0\n184,459,5.5\n184,460,6.0\n184,461,6.5\n184,462,7.0\n184,463,7.5\n184,464,8.0\n184,465,8.5\n184,466,9.0\n184,467,9.5\n184,468,10.0\n184,469,10.5\n184,470,11.0\n184,471,11.5\n184,472,12.0\n184,473,12.5\n184,474,13.0\n184,475,10.5\n184,476,10.0\n184,477,9.5\n184,478,9.0\n184,479,8.5\n184,480,8.0\n184,481,7.5\n184,482,7.0\n184,483,6.5\n184,484,6.0\n184,485,6.5\n184,486,7.0\n184,487,7.5\n184,488,8.0\n184,489,8.5\n184,490,9.0\n184,491,9.5\n184,492,10.0\n184,493,10.5\n184,494,11.0\n184,495,11.5\n184,496,12.0\n184,497,12.5\n184,498,13.0\n184,499,13.5\n184,500,11.0\n184,501,10.5\n184,502,10.0\n184,503,9.5\n184,504,9.0\n184,505,8.5\n184,506,8.0\n184,507,7.5\n184,508,7.0\n184,509,6.5\n184,510,7.0\n184,511,7.5\n184,512,8.0\n184,513,8.5\n184,514,9.0\n184,515,9.5\n184,516,10.0\n184,517,10.5\n184,518,11.0\n184,519,11.5\n184,520,12.0\n184,521,12.5\n184,522,13.0\n184,523,13.5\n184,524,14.0\n184,525,11.5\n184,526,11.0\n184,527,10.5\n184,528,10.0\n184,529,9.5\n184,530,9.0\n184,531,8.5\n184,532,8.0\n184,533,7.5\n184,534,7.0\n184,535,7.5\n184,536,8.0\n184,537,8.5\n184,538,9.0\n184,539,9.5\n184,540,10.0\n184,541,10.5\n184,542,11.0\n184,543,11.5\n184,544,12.0\n184,545,12.5\n184,546,13.0\n184,547,13.5\n184,548,14.0\n184,549,14.5\n184,550,12.0\n184,551,11.5\n184,552,11.0\n184,553,10.5\n184,554,10.0\n184,555,9.5\n184,556,9.0\n184,557,8.5\n184,558,8.0\n184,559,7.5\n184,560,8.0\n184,561,8.5\n184,562,9.0\n184,563,9.5\n184,564,10.0\n184,565,10.5\n184,566,11.0\n184,567,11.5\n184,568,12.0\n184,569,12.5\n184,570,13.0\n184,571,13.5\n184,572,14.0\n184,573,14.5\n184,574,15.0\n184,575,12.5\n184,576,12.0\n184,577,11.5\n184,578,11.0\n184,579,10.5\n184,580,10.0\n184,581,9.5\n184,582,9.0\n184,583,8.5\n184,584,8.0\n184,585,8.5\n184,586,9.0\n184,587,9.5\n184,588,10.0\n184,589,10.5\n184,590,11.0\n184,591,11.5\n184,592,12.0\n184,593,12.5\n184,594,13.0\n184,595,13.5\n184,596,14.0\n184,597,14.5\n184,598,15.0\n184,599,15.5\n184,600,13.0\n184,601,12.5\n184,602,12.0\n184,603,11.5\n184,604,11.0\n184,605,10.5\n184,606,10.0\n184,607,9.5\n184,608,9.0\n184,609,8.5\n184,610,9.0\n184,611,9.5\n184,612,10.0\n184,613,10.5\n184,614,11.0\n184,615,11.5\n184,616,12.0\n184,617,12.5\n184,618,13.0\n184,619,13.5\n184,620,14.0\n184,621,14.5\n184,622,15.0\n184,623,15.5\n184,624,16.0\n185,0,8.5\n185,1,8.0\n185,2,7.5\n185,3,7.0\n185,4,6.5\n185,5,6.0\n185,6,5.5\n185,7,5.0\n185,8,4.5\n185,9,4.0\n185,10,3.5\n185,11,4.0\n185,12,4.5\n185,13,5.0\n185,14,5.5\n185,15,6.0\n185,16,6.5\n185,17,7.0\n185,18,7.5\n185,19,8.0\n185,20,8.5\n185,21,9.0\n185,22,9.5\n185,23,10.0\n185,24,10.5\n185,25,8.0\n185,26,7.5\n185,27,7.0\n185,28,6.5\n185,29,6.0\n185,30,5.5\n185,31,5.0\n185,32,4.5\n185,33,4.0\n185,34,3.5\n185,35,3.0\n185,36,3.5\n185,37,4.0\n185,38,4.5\n185,39,5.0\n185,40,5.5\n185,41,6.0\n185,42,6.5\n185,43,7.0\n185,44,7.5\n185,45,8.0\n185,46,8.5\n185,47,9.0\n185,48,9.5\n185,49,10.0\n185,50,7.5\n185,51,7.0\n185,52,6.5\n185,53,6.0\n185,54,5.5\n185,55,5.0\n185,56,4.5\n185,57,4.0\n185,58,3.5\n185,59,3.0\n185,60,2.5\n185,61,3.0\n185,62,3.5\n185,63,4.0\n185,64,4.5\n185,65,5.0\n185,66,5.5\n185,67,6.0\n185,68,6.5\n185,69,7.0\n185,70,7.5\n185,71,8.0\n185,72,8.5\n185,73,9.0\n185,74,9.5\n185,75,7.0\n185,76,6.5\n185,77,6.0\n185,78,5.5\n185,79,5.0\n185,80,4.5\n185,81,4.0\n185,82,3.5\n185,83,3.0\n185,84,2.5\n185,85,2.0\n185,86,2.5\n185,87,3.0\n185,88,3.5\n185,89,4.0\n185,90,4.5\n185,91,5.0\n185,92,5.5\n185,93,6.0\n185,94,6.5\n185,95,7.0\n185,96,7.5\n185,97,8.0\n185,98,8.5\n185,99,9.0\n185,100,6.5\n185,101,6.0\n185,102,5.5\n185,103,5.0\n185,104,4.5\n185,105,4.0\n185,106,3.5\n185,107,3.0\n185,108,2.5\n185,109,2.0\n185,110,1.5\n185,111,2.0\n185,112,2.5\n185,113,3.0\n185,114,3.5\n185,115,4.0\n185,116,4.5\n185,117,5.0\n185,118,5.5\n185,119,6.0\n185,120,6.5\n185,121,7.0\n185,122,7.5\n185,123,8.0\n185,124,8.5\n185,125,6.0\n185,126,5.5\n185,127,5.0\n185,128,4.5\n185,129,4.0\n185,130,3.5\n185,131,3.0\n185,132,2.5\n185,133,2.0\n185,134,1.5\n185,135,1.0\n185,136,1.5\n185,137,2.0\n185,138,2.5\n185,139,3.0\n185,140,3.5\n185,141,4.0\n185,142,4.5\n185,143,5.0\n185,144,5.5\n185,145,6.0\n185,146,6.5\n185,147,7.0\n185,148,7.5\n185,149,8.0\n185,150,5.5\n185,151,5.0\n185,152,4.5\n185,153,4.0\n185,154,3.5\n185,155,3.0\n185,156,2.5\n185,157,2.0\n185,158,1.5\n185,159,1.0\n185,160,0.5\n185,161,1.0\n185,162,1.5\n185,163,2.0\n185,164,2.5\n185,165,3.0\n185,166,3.5\n185,167,4.0\n185,168,4.5\n185,169,5.0\n185,170,5.5\n185,171,6.0\n185,172,6.5\n185,173,7.0\n185,174,7.5\n185,175,5.0\n185,176,4.5\n185,177,4.0\n185,178,3.5\n185,179,3.0\n185,180,2.5\n185,181,2.0\n185,182,1.5\n185,183,1.0\n185,184,0.5\n185,185,0\n185,186,0.5\n185,187,1.0\n185,188,1.5\n185,189,2.0\n185,190,2.5\n185,191,3.0\n185,192,3.5\n185,193,4.0\n185,194,4.5\n185,195,5.0\n185,196,5.5\n185,197,6.0\n185,198,6.5\n185,199,7.0\n185,200,5.5\n185,201,5.0\n185,202,4.5\n185,203,4.0\n185,204,3.5\n185,205,3.0\n185,206,2.5\n185,207,2.0\n185,208,1.5\n185,209,1.0\n185,210,0.5\n185,211,1.0\n185,212,1.5\n185,213,2.0\n185,214,2.5\n185,215,3.0\n185,216,3.5\n185,217,4.0\n185,218,4.5\n185,219,5.0\n185,220,5.5\n185,221,6.0\n185,222,6.5\n185,223,7.0\n185,224,7.5\n185,225,6.0\n185,226,5.5\n185,227,5.0\n185,228,4.5\n185,229,4.0\n185,230,3.5\n185,231,3.0\n185,232,2.5\n185,233,2.0\n185,234,1.5\n185,235,1.0\n185,236,1.5\n185,237,2.0\n185,238,2.5\n185,239,3.0\n185,240,3.5\n185,241,4.0\n185,242,4.5\n185,243,5.0\n185,244,5.5\n185,245,6.0\n185,246,6.5\n185,247,7.0\n185,248,7.5\n185,249,8.0\n185,250,6.5\n185,251,6.0\n185,252,5.5\n185,253,5.0\n185,254,4.5\n185,255,4.0\n185,256,3.5\n185,257,3.0\n185,258,2.5\n185,259,2.0\n185,260,1.5\n185,261,2.0\n185,262,2.5\n185,263,3.0\n185,264,3.5\n185,265,4.0\n185,266,4.5\n185,267,5.0\n185,268,5.5\n185,269,6.0\n185,270,6.5\n185,271,7.0\n185,272,7.5\n185,273,8.0\n185,274,8.5\n185,275,7.0\n185,276,6.5\n185,277,6.0\n185,278,5.5\n185,279,5.0\n185,280,4.5\n185,281,4.0\n185,282,3.5\n185,283,3.0\n185,284,2.5\n185,285,2.0\n185,286,2.5\n185,287,3.0\n185,288,3.5\n185,289,4.0\n185,290,4.5\n185,291,5.0\n185,292,5.5\n185,293,6.0\n185,294,6.5\n185,295,7.0\n185,296,7.5\n185,297,8.0\n185,298,8.5\n185,299,9.0\n185,300,7.5\n185,301,7.0\n185,302,6.5\n185,303,6.0\n185,304,5.5\n185,305,5.0\n185,306,4.5\n185,307,4.0\n185,308,3.5\n185,309,3.0\n185,310,2.5\n185,311,3.0\n185,312,3.5\n185,313,4.0\n185,314,4.5\n185,315,5.0\n185,316,5.5\n185,317,6.0\n185,318,6.5\n185,319,7.0\n185,320,7.5\n185,321,8.0\n185,322,8.5\n185,323,9.0\n185,324,9.5\n185,325,8.0\n185,326,7.5\n185,327,7.0\n185,328,6.5\n185,329,6.0\n185,330,5.5\n185,331,5.0\n185,332,4.5\n185,333,4.0\n185,334,3.5\n185,335,3.0\n185,336,3.5\n185,337,4.0\n185,338,4.5\n185,339,5.0\n185,340,5.5\n185,341,6.0\n185,342,6.5\n185,343,7.0\n185,344,7.5\n185,345,8.0\n185,346,8.5\n185,347,9.0\n185,348,9.5\n185,349,10.0\n185,350,8.5\n185,351,8.0\n185,352,7.5\n185,353,7.0\n185,354,6.5\n185,355,6.0\n185,356,5.5\n185,357,5.0\n185,358,4.5\n185,359,4.0\n185,360,3.5\n185,361,4.0\n185,362,4.5\n185,363,5.0\n185,364,5.5\n185,365,6.0\n185,366,6.5\n185,367,7.0\n185,368,7.5\n185,369,8.0\n185,370,8.5\n185,371,9.0\n185,372,9.5\n185,373,10.0\n185,374,10.5\n185,375,9.0\n185,376,8.5\n185,377,8.0\n185,378,7.5\n185,379,7.0\n185,380,6.5\n185,381,6.0\n185,382,5.5\n185,383,5.0\n185,384,4.5\n185,385,4.0\n185,386,4.5\n185,387,5.0\n185,388,5.5\n185,389,6.0\n185,390,6.5\n185,391,7.0\n185,392,7.5\n185,393,8.0\n185,394,8.5\n185,395,9.0\n185,396,9.5\n185,397,10.0\n185,398,10.5\n185,399,11.0\n185,400,9.5\n185,401,9.0\n185,402,8.5\n185,403,8.0\n185,404,7.5\n185,405,7.0\n185,406,6.5\n185,407,6.0\n185,408,5.5\n185,409,5.0\n185,410,4.5\n185,411,5.0\n185,412,5.5\n185,413,6.0\n185,414,6.5\n185,415,7.0\n185,416,7.5\n185,417,8.0\n185,418,8.5\n185,419,9.0\n185,420,9.5\n185,421,10.0\n185,422,10.5\n185,423,11.0\n185,424,11.5\n185,425,10.0\n185,426,9.5\n185,427,9.0\n185,428,8.5\n185,429,8.0\n185,430,7.5\n185,431,7.0\n185,432,6.5\n185,433,6.0\n185,434,5.5\n185,435,5.0\n185,436,5.5\n185,437,6.0\n185,438,6.5\n185,439,7.0\n185,440,7.5\n185,441,8.0\n185,442,8.5\n185,443,9.0\n185,444,9.5\n185,445,10.0\n185,446,10.5\n185,447,11.0\n185,448,11.5\n185,449,12.0\n185,450,10.5\n185,451,10.0\n185,452,9.5\n185,453,9.0\n185,454,8.5\n185,455,8.0\n185,456,7.5\n185,457,7.0\n185,458,6.5\n185,459,6.0\n185,460,5.5\n185,461,6.0\n185,462,6.5\n185,463,7.0\n185,464,7.5\n185,465,8.0\n185,466,8.5\n185,467,9.0\n185,468,9.5\n185,469,10.0\n185,470,10.5\n185,471,11.0\n185,472,11.5\n185,473,12.0\n185,474,12.5\n185,475,11.0\n185,476,10.5\n185,477,10.0\n185,478,9.5\n185,479,9.0\n185,480,8.5\n185,481,8.0\n185,482,7.5\n185,483,7.0\n185,484,6.5\n185,485,6.0\n185,486,6.5\n185,487,7.0\n185,488,7.5\n185,489,8.0\n185,490,8.5\n185,491,9.0\n185,492,9.5\n185,493,10.0\n185,494,10.5\n185,495,11.0\n185,496,11.5\n185,497,12.0\n185,498,12.5\n185,499,13.0\n185,500,11.5\n185,501,11.0\n185,502,10.5\n185,503,10.0\n185,504,9.5\n185,505,9.0\n185,506,8.5\n185,507,8.0\n185,508,7.5\n185,509,7.0\n185,510,6.5\n185,511,7.0\n185,512,7.5\n185,513,8.0\n185,514,8.5\n185,515,9.0\n185,516,9.5\n185,517,10.0\n185,518,10.5\n185,519,11.0\n185,520,11.5\n185,521,12.0\n185,522,12.5\n185,523,13.0\n185,524,13.5\n185,525,12.0\n185,526,11.5\n185,527,11.0\n185,528,10.5\n185,529,10.0\n185,530,9.5\n185,531,9.0\n185,532,8.5\n185,533,8.0\n185,534,7.5\n185,535,7.0\n185,536,7.5\n185,537,8.0\n185,538,8.5\n185,539,9.0\n185,540,9.5\n185,541,10.0\n185,542,10.5\n185,543,11.0\n185,544,11.5\n185,545,12.0\n185,546,12.5\n185,547,13.0\n185,548,13.5\n185,549,14.0\n185,550,12.5\n185,551,12.0\n185,552,11.5\n185,553,11.0\n185,554,10.5\n185,555,10.0\n185,556,9.5\n185,557,9.0\n185,558,8.5\n185,559,8.0\n185,560,7.5\n185,561,8.0\n185,562,8.5\n185,563,9.0\n185,564,9.5\n185,565,10.0\n185,566,10.5\n185,567,11.0\n185,568,11.5\n185,569,12.0\n185,570,12.5\n185,571,13.0\n185,572,13.5\n185,573,14.0\n185,574,14.5\n185,575,13.0\n185,576,12.5\n185,577,12.0\n185,578,11.5\n185,579,11.0\n185,580,10.5\n185,581,10.0\n185,582,9.5\n185,583,9.0\n185,584,8.5\n185,585,8.0\n185,586,8.5\n185,587,9.0\n185,588,9.5\n185,589,10.0\n185,590,10.5\n185,591,11.0\n185,592,11.5\n185,593,12.0\n185,594,12.5\n185,595,13.0\n185,596,13.5\n185,597,14.0\n185,598,14.5\n185,599,15.0\n185,600,13.5\n185,601,13.0\n185,602,12.5\n185,603,12.0\n185,604,11.5\n185,605,11.0\n185,606,10.5\n185,607,10.0\n185,608,9.5\n185,609,9.0\n185,610,8.5\n185,611,9.0\n185,612,9.5\n185,613,10.0\n185,614,10.5\n185,615,11.0\n185,616,11.5\n185,617,12.0\n185,618,12.5\n185,619,13.0\n185,620,13.5\n185,621,14.0\n185,622,14.5\n185,623,15.0\n185,624,15.5\n186,0,9.0\n186,1,8.5\n186,2,8.0\n186,3,7.5\n186,4,7.0\n186,5,6.5\n186,6,6.0\n186,7,5.5\n186,8,5.0\n186,9,4.5\n186,10,4.0\n186,11,3.5\n186,12,4.0\n186,13,4.5\n186,14,5.0\n186,15,5.5\n186,16,6.0\n186,17,6.5\n186,18,7.0\n186,19,7.5\n186,20,8.0\n186,21,8.5\n186,22,9.0\n186,23,9.5\n186,24,10.0\n186,25,8.5\n186,26,8.0\n186,27,7.5\n186,28,7.0\n186,29,6.5\n186,30,6.0\n186,31,5.5\n186,32,5.0\n186,33,4.5\n186,34,4.0\n186,35,3.5\n186,36,3.0\n186,37,3.5\n186,38,4.0\n186,39,4.5\n186,40,5.0\n186,41,5.5\n186,42,6.0\n186,43,6.5\n186,44,7.0\n186,45,7.5\n186,46,8.0\n186,47,8.5\n186,48,9.0\n186,49,9.5\n186,50,8.0\n186,51,7.5\n186,52,7.0\n186,53,6.5\n186,54,6.0\n186,55,5.5\n186,56,5.0\n186,57,4.5\n186,58,4.0\n186,59,3.5\n186,60,3.0\n186,61,2.5\n186,62,3.0\n186,63,3.5\n186,64,4.0\n186,65,4.5\n186,66,5.0\n186,67,5.5\n186,68,6.0\n186,69,6.5\n186,70,7.0\n186,71,7.5\n186,72,8.0\n186,73,8.5\n186,74,9.0\n186,75,7.5\n186,76,7.0\n186,77,6.5\n186,78,6.0\n186,79,5.5\n186,80,5.0\n186,81,4.5\n186,82,4.0\n186,83,3.5\n186,84,3.0\n186,85,2.5\n186,86,2.0\n186,87,2.5\n186,88,3.0\n186,89,3.5\n186,90,4.0\n186,91,4.5\n186,92,5.0\n186,93,5.5\n186,94,6.0\n186,95,6.5\n186,96,7.0\n186,97,7.5\n186,98,8.0\n186,99,8.5\n186,100,7.0\n186,101,6.5\n186,102,6.0\n186,103,5.5\n186,104,5.0\n186,105,4.5\n186,106,4.0\n186,107,3.5\n186,108,3.0\n186,109,2.5\n186,110,2.0\n186,111,1.5\n186,112,2.0\n186,113,2.5\n186,114,3.0\n186,115,3.5\n186,116,4.0\n186,117,4.5\n186,118,5.0\n186,119,5.5\n186,120,6.0\n186,121,6.5\n186,122,7.0\n186,123,7.5\n186,124,8.0\n186,125,6.5\n186,126,6.0\n186,127,5.5\n186,128,5.0\n186,129,4.5\n186,130,4.0\n186,131,3.5\n186,132,3.0\n186,133,2.5\n186,134,2.0\n186,135,1.5\n186,136,1.0\n186,137,1.5\n186,138,2.0\n186,139,2.5\n186,140,3.0\n186,141,3.5\n186,142,4.0\n186,143,4.5\n186,144,5.0\n186,145,5.5\n186,146,6.0\n186,147,6.5\n186,148,7.0\n186,149,7.5\n186,150,6.0\n186,151,5.5\n186,152,5.0\n186,153,4.5\n186,154,4.0\n186,155,3.5\n186,156,3.0\n186,157,2.5\n186,158,2.0\n186,159,1.5\n186,160,1.0\n186,161,0.5\n186,162,1.0\n186,163,1.5\n186,164,2.0\n186,165,2.5\n186,166,3.0\n186,167,3.5\n186,168,4.0\n186,169,4.5\n186,170,5.0\n186,171,5.5\n186,172,6.0\n186,173,6.5\n186,174,7.0\n186,175,5.5\n186,176,5.0\n186,177,4.5\n186,178,4.0\n186,179,3.5\n186,180,3.0\n186,181,2.5\n186,182,2.0\n186,183,1.5\n186,184,1.0\n186,185,0.5\n186,186,0\n186,187,0.5\n186,188,1.0\n186,189,1.5\n186,190,2.0\n186,191,2.5\n186,192,3.0\n186,193,3.5\n186,194,4.0\n186,195,4.5\n186,196,5.0\n186,197,5.5\n186,198,6.0\n186,199,6.5\n186,200,6.0\n186,201,5.5\n186,202,5.0\n186,203,4.5\n186,204,4.0\n186,205,3.5\n186,206,3.0\n186,207,2.5\n186,208,2.0\n186,209,1.5\n186,210,1.0\n186,211,0.5\n186,212,1.0\n186,213,1.5\n186,214,2.0\n186,215,2.5\n186,216,3.0\n186,217,3.5\n186,218,4.0\n186,219,4.5\n186,220,5.0\n186,221,5.5\n186,222,6.0\n186,223,6.5\n186,224,7.0\n186,225,6.5\n186,226,6.0\n186,227,5.5\n186,228,5.0\n186,229,4.5\n186,230,4.0\n186,231,3.5\n186,232,3.0\n186,233,2.5\n186,234,2.0\n186,235,1.5\n186,236,1.0\n186,237,1.5\n186,238,2.0\n186,239,2.5\n186,240,3.0\n186,241,3.5\n186,242,4.0\n186,243,4.5\n186,244,5.0\n186,245,5.5\n186,246,6.0\n186,247,6.5\n186,248,7.0\n186,249,7.5\n186,250,7.0\n186,251,6.5\n186,252,6.0\n186,253,5.5\n186,254,5.0\n186,255,4.5\n186,256,4.0\n186,257,3.5\n186,258,3.0\n186,259,2.5\n186,260,2.0\n186,261,1.5\n186,262,2.0\n186,263,2.5\n186,264,3.0\n186,265,3.5\n186,266,4.0\n186,267,4.5\n186,268,5.0\n186,269,5.5\n186,270,6.0\n186,271,6.5\n186,272,7.0\n186,273,7.5\n186,274,8.0\n186,275,7.5\n186,276,7.0\n186,277,6.5\n186,278,6.0\n186,279,5.5\n186,280,5.0\n186,281,4.5\n186,282,4.0\n186,283,3.5\n186,284,3.0\n186,285,2.5\n186,286,2.0\n186,287,2.5\n186,288,3.0\n186,289,3.5\n186,290,4.0\n186,291,4.5\n186,292,5.0\n186,293,5.5\n186,294,6.0\n186,295,6.5\n186,296,7.0\n186,297,7.5\n186,298,8.0\n186,299,8.5\n186,300,8.0\n186,301,7.5\n186,302,7.0\n186,303,6.5\n186,304,6.0\n186,305,5.5\n186,306,5.0\n186,307,4.5\n186,308,4.0\n186,309,3.5\n186,310,3.0\n186,311,2.5\n186,312,3.0\n186,313,3.5\n186,314,4.0\n186,315,4.5\n186,316,5.0\n186,317,5.5\n186,318,6.0\n186,319,6.5\n186,320,7.0\n186,321,7.5\n186,322,8.0\n186,323,8.5\n186,324,9.0\n186,325,8.5\n186,326,8.0\n186,327,7.5\n186,328,7.0\n186,329,6.5\n186,330,6.0\n186,331,5.5\n186,332,5.0\n186,333,4.5\n186,334,4.0\n186,335,3.5\n186,336,3.0\n186,337,3.5\n186,338,4.0\n186,339,4.5\n186,340,5.0\n186,341,5.5\n186,342,6.0\n186,343,6.5\n186,344,7.0\n186,345,7.5\n186,346,8.0\n186,347,8.5\n186,348,9.0\n186,349,9.5\n186,350,9.0\n186,351,8.5\n186,352,8.0\n186,353,7.5\n186,354,7.0\n186,355,6.5\n186,356,6.0\n186,357,5.5\n186,358,5.0\n186,359,4.5\n186,360,4.0\n186,361,3.5\n186,362,4.0\n186,363,4.5\n186,364,5.0\n186,365,5.5\n186,366,6.0\n186,367,6.5\n186,368,7.0\n186,369,7.5\n186,370,8.0\n186,371,8.5\n186,372,9.0\n186,373,9.5\n186,374,10.0\n186,375,9.5\n186,376,9.0\n186,377,8.5\n186,378,8.0\n186,379,7.5\n186,380,7.0\n186,381,6.5\n186,382,6.0\n186,383,5.5\n186,384,5.0\n186,385,4.5\n186,386,4.0\n186,387,4.5\n186,388,5.0\n186,389,5.5\n186,390,6.0\n186,391,6.5\n186,392,7.0\n186,393,7.5\n186,394,8.0\n186,395,8.5\n186,396,9.0\n186,397,9.5\n186,398,10.0\n186,399,10.5\n186,400,10.0\n186,401,9.5\n186,402,9.0\n186,403,8.5\n186,404,8.0\n186,405,7.5\n186,406,7.0\n186,407,6.5\n186,408,6.0\n186,409,5.5\n186,410,5.0\n186,411,4.5\n186,412,5.0\n186,413,5.5\n186,414,6.0\n186,415,6.5\n186,416,7.0\n186,417,7.5\n186,418,8.0\n186,419,8.5\n186,420,9.0\n186,421,9.5\n186,422,10.0\n186,423,10.5\n186,424,11.0\n186,425,10.5\n186,426,10.0\n186,427,9.5\n186,428,9.0\n186,429,8.5\n186,430,8.0\n186,431,7.5\n186,432,7.0\n186,433,6.5\n186,434,6.0\n186,435,5.5\n186,436,5.0\n186,437,5.5\n186,438,6.0\n186,439,6.5\n186,440,7.0\n186,441,7.5\n186,442,8.0\n186,443,8.5\n186,444,9.0\n186,445,9.5\n186,446,10.0\n186,447,10.5\n186,448,11.0\n186,449,11.5\n186,450,11.0\n186,451,10.5\n186,452,10.0\n186,453,9.5\n186,454,9.0\n186,455,8.5\n186,456,8.0\n186,457,7.5\n186,458,7.0\n186,459,6.5\n186,460,6.0\n186,461,5.5\n186,462,6.0\n186,463,6.5\n186,464,7.0\n186,465,7.5\n186,466,8.0\n186,467,8.5\n186,468,9.0\n186,469,9.5\n186,470,10.0\n186,471,10.5\n186,472,11.0\n186,473,11.5\n186,474,12.0\n186,475,11.5\n186,476,11.0\n186,477,10.5\n186,478,10.0\n186,479,9.5\n186,480,9.0\n186,481,8.5\n186,482,8.0\n186,483,7.5\n186,484,7.0\n186,485,6.5\n186,486,6.0\n186,487,6.5\n186,488,7.0\n186,489,7.5\n186,490,8.0\n186,491,8.5\n186,492,9.0\n186,493,9.5\n186,494,10.0\n186,495,10.5\n186,496,11.0\n186,497,11.5\n186,498,12.0\n186,499,12.5\n186,500,12.0\n186,501,11.5\n186,502,11.0\n186,503,10.5\n186,504,10.0\n186,505,9.5\n186,506,9.0\n186,507,8.5\n186,508,8.0\n186,509,7.5\n186,510,7.0\n186,511,6.5\n186,512,7.0\n186,513,7.5\n186,514,8.0\n186,515,8.5\n186,516,9.0\n186,517,9.5\n186,518,10.0\n186,519,10.5\n186,520,11.0\n186,521,11.5\n186,522,12.0\n186,523,12.5\n186,524,13.0\n186,525,12.5\n186,526,12.0\n186,527,11.5\n186,528,11.0\n186,529,10.5\n186,530,10.0\n186,531,9.5\n186,532,9.0\n186,533,8.5\n186,534,8.0\n186,535,7.5\n186,536,7.0\n186,537,7.5\n186,538,8.0\n186,539,8.5\n186,540,9.0\n186,541,9.5\n186,542,10.0\n186,543,10.5\n186,544,11.0\n186,545,11.5\n186,546,12.0\n186,547,12.5\n186,548,13.0\n186,549,13.5\n186,550,13.0\n186,551,12.5\n186,552,12.0\n186,553,11.5\n186,554,11.0\n186,555,10.5\n186,556,10.0\n186,557,9.5\n186,558,9.0\n186,559,8.5\n186,560,8.0\n186,561,7.5\n186,562,8.0\n186,563,8.5\n186,564,9.0\n186,565,9.5\n186,566,10.0\n186,567,10.5\n186,568,11.0\n186,569,11.5\n186,570,12.0\n186,571,12.5\n186,572,13.0\n186,573,13.5\n186,574,14.0\n186,575,13.5\n186,576,13.0\n186,577,12.5\n186,578,12.0\n186,579,11.5\n186,580,11.0\n186,581,10.5\n186,582,10.0\n186,583,9.5\n186,584,9.0\n186,585,8.5\n186,586,8.0\n186,587,8.5\n186,588,9.0\n186,589,9.5\n186,590,10.0\n186,591,10.5\n186,592,11.0\n186,593,11.5\n186,594,12.0\n186,595,12.5\n186,596,13.0\n186,597,13.5\n186,598,14.0\n186,599,14.5\n186,600,14.0\n186,601,13.5\n186,602,13.0\n186,603,12.5\n186,604,12.0\n186,605,11.5\n186,606,11.0\n186,607,10.5\n186,608,10.0\n186,609,9.5\n186,610,9.0\n186,611,8.5\n186,612,9.0\n186,613,9.5\n186,614,10.0\n186,615,10.5\n186,616,11.0\n186,617,11.5\n186,618,12.0\n186,619,12.5\n186,620,13.0\n186,621,13.5\n186,622,14.0\n186,623,14.5\n186,624,15.0\n187,0,9.5\n187,1,9.0\n187,2,8.5\n187,3,8.0\n187,4,7.5\n187,5,7.0\n187,6,6.5\n187,7,6.0\n187,8,5.5\n187,9,5.0\n187,10,4.5\n187,11,4.0\n187,12,3.5\n187,13,4.0\n187,14,4.5\n187,15,5.0\n187,16,5.5\n187,17,6.0\n187,18,6.5\n187,19,7.0\n187,20,7.5\n187,21,8.0\n187,22,8.5\n187,23,9.0\n187,24,9.5\n187,25,9.0\n187,26,8.5\n187,27,8.0\n187,28,7.5\n187,29,7.0\n187,30,6.5\n187,31,6.0\n187,32,5.5\n187,33,5.0\n187,34,4.5\n187,35,4.0\n187,36,3.5\n187,37,3.0\n187,38,3.5\n187,39,4.0\n187,40,4.5\n187,41,5.0\n187,42,5.5\n187,43,6.0\n187,44,6.5\n187,45,7.0\n187,46,7.5\n187,47,8.0\n187,48,8.5\n187,49,9.0\n187,50,8.5\n187,51,8.0\n187,52,7.5\n187,53,7.0\n187,54,6.5\n187,55,6.0\n187,56,5.5\n187,57,5.0\n187,58,4.5\n187,59,4.0\n187,60,3.5\n187,61,3.0\n187,62,2.5\n187,63,3.0\n187,64,3.5\n187,65,4.0\n187,66,4.5\n187,67,5.0\n187,68,5.5\n187,69,6.0\n187,70,6.5\n187,71,7.0\n187,72,7.5\n187,73,8.0\n187,74,8.5\n187,75,8.0\n187,76,7.5\n187,77,7.0\n187,78,6.5\n187,79,6.0\n187,80,5.5\n187,81,5.0\n187,82,4.5\n187,83,4.0\n187,84,3.5\n187,85,3.0\n187,86,2.5\n187,87,2.0\n187,88,2.5\n187,89,3.0\n187,90,3.5\n187,91,4.0\n187,92,4.5\n187,93,5.0\n187,94,5.5\n187,95,6.0\n187,96,6.5\n187,97,7.0\n187,98,7.5\n187,99,8.0\n187,100,7.5\n187,101,7.0\n187,102,6.5\n187,103,6.0\n187,104,5.5\n187,105,5.0\n187,106,4.5\n187,107,4.0\n187,108,3.5\n187,109,3.0\n187,110,2.5\n187,111,2.0\n187,112,1.5\n187,113,2.0\n187,114,2.5\n187,115,3.0\n187,116,3.5\n187,117,4.0\n187,118,4.5\n187,119,5.0\n187,120,5.5\n187,121,6.0\n187,122,6.5\n187,123,7.0\n187,124,7.5\n187,125,7.0\n187,126,6.5\n187,127,6.0\n187,128,5.5\n187,129,5.0\n187,130,4.5\n187,131,4.0\n187,132,3.5\n187,133,3.0\n187,134,2.5\n187,135,2.0\n187,136,1.5\n187,137,1.0\n187,138,1.5\n187,139,2.0\n187,140,2.5\n187,141,3.0\n187,142,3.5\n187,143,4.0\n187,144,4.5\n187,145,5.0\n187,146,5.5\n187,147,6.0\n187,148,6.5\n187,149,7.0\n187,150,6.5\n187,151,6.0\n187,152,5.5\n187,153,5.0\n187,154,4.5\n187,155,4.0\n187,156,3.5\n187,157,3.0\n187,158,2.5\n187,159,2.0\n187,160,1.5\n187,161,1.0\n187,162,0.5\n187,163,1.0\n187,164,1.5\n187,165,2.0\n187,166,2.5\n187,167,3.0\n187,168,3.5\n187,169,4.0\n187,170,4.5\n187,171,5.0\n187,172,5.5\n187,173,6.0\n187,174,6.5\n187,175,6.0\n187,176,5.5\n187,177,5.0\n187,178,4.5\n187,179,4.0\n187,180,3.5\n187,181,3.0\n187,182,2.5\n187,183,2.0\n187,184,1.5\n187,185,1.0\n187,186,0.5\n187,187,0\n187,188,0.5\n187,189,1.0\n187,190,1.5\n187,191,2.0\n187,192,2.5\n187,193,3.0\n187,194,3.5\n187,195,4.0\n187,196,4.5\n187,197,5.0\n187,198,5.5\n187,199,6.0\n187,200,6.5\n187,201,6.0\n187,202,5.5\n187,203,5.0\n187,204,4.5\n187,205,4.0\n187,206,3.5\n187,207,3.0\n187,208,2.5\n187,209,2.0\n187,210,1.5\n187,211,1.0\n187,212,0.5\n187,213,1.0\n187,214,1.5\n187,215,2.0\n187,216,2.5\n187,217,3.0\n187,218,3.5\n187,219,4.0\n187,220,4.5\n187,221,5.0\n187,222,5.5\n187,223,6.0\n187,224,6.5\n187,225,7.0\n187,226,6.5\n187,227,6.0\n187,228,5.5\n187,229,5.0\n187,230,4.5\n187,231,4.0\n187,232,3.5\n187,233,3.0\n187,234,2.5\n187,235,2.0\n187,236,1.5\n187,237,1.0\n187,238,1.5\n187,239,2.0\n187,240,2.5\n187,241,3.0\n187,242,3.5\n187,243,4.0\n187,244,4.5\n187,245,5.0\n187,246,5.5\n187,247,6.0\n187,248,6.5\n187,249,7.0\n187,250,7.5\n187,251,7.0\n187,252,6.5\n187,253,6.0\n187,254,5.5\n187,255,5.0\n187,256,4.5\n187,257,4.0\n187,258,3.5\n187,259,3.0\n187,260,2.5\n187,261,2.0\n187,262,1.5\n187,263,2.0\n187,264,2.5\n187,265,3.0\n187,266,3.5\n187,267,4.0\n187,268,4.5\n187,269,5.0\n187,270,5.5\n187,271,6.0\n187,272,6.5\n187,273,7.0\n187,274,7.5\n187,275,8.0\n187,276,7.5\n187,277,7.0\n187,278,6.5\n187,279,6.0\n187,280,5.5\n187,281,5.0\n187,282,4.5\n187,283,4.0\n187,284,3.5\n187,285,3.0\n187,286,2.5\n187,287,2.0\n187,288,2.5\n187,289,3.0\n187,290,3.5\n187,291,4.0\n187,292,4.5\n187,293,5.0\n187,294,5.5\n187,295,6.0\n187,296,6.5\n187,297,7.0\n187,298,7.5\n187,299,8.0\n187,300,8.5\n187,301,8.0\n187,302,7.5\n187,303,7.0\n187,304,6.5\n187,305,6.0\n187,306,5.5\n187,307,5.0\n187,308,4.5\n187,309,4.0\n187,310,3.5\n187,311,3.0\n187,312,2.5\n187,313,3.0\n187,314,3.5\n187,315,4.0\n187,316,4.5\n187,317,5.0\n187,318,5.5\n187,319,6.0\n187,320,6.5\n187,321,7.0\n187,322,7.5\n187,323,8.0\n187,324,8.5\n187,325,9.0\n187,326,8.5\n187,327,8.0\n187,328,7.5\n187,329,7.0\n187,330,6.5\n187,331,6.0\n187,332,5.5\n187,333,5.0\n187,334,4.5\n187,335,4.0\n187,336,3.5\n187,337,3.0\n187,338,3.5\n187,339,4.0\n187,340,4.5\n187,341,5.0\n187,342,5.5\n187,343,6.0\n187,344,6.5\n187,345,7.0\n187,346,7.5\n187,347,8.0\n187,348,8.5\n187,349,9.0\n187,350,9.5\n187,351,9.0\n187,352,8.5\n187,353,8.0\n187,354,7.5\n187,355,7.0\n187,356,6.5\n187,357,6.0\n187,358,5.5\n187,359,5.0\n187,360,4.5\n187,361,4.0\n187,362,3.5\n187,363,4.0\n187,364,4.5\n187,365,5.0\n187,366,5.5\n187,367,6.0\n187,368,6.5\n187,369,7.0\n187,370,7.5\n187,371,8.0\n187,372,8.5\n187,373,9.0\n187,374,9.5\n187,375,10.0\n187,376,9.5\n187,377,9.0\n187,378,8.5\n187,379,8.0\n187,380,7.5\n187,381,7.0\n187,382,6.5\n187,383,6.0\n187,384,5.5\n187,385,5.0\n187,386,4.5\n187,387,4.0\n187,388,4.5\n187,389,5.0\n187,390,5.5\n187,391,6.0\n187,392,6.5\n187,393,7.0\n187,394,7.5\n187,395,8.0\n187,396,8.5\n187,397,9.0\n187,398,9.5\n187,399,10.0\n187,400,10.5\n187,401,10.0\n187,402,9.5\n187,403,9.0\n187,404,8.5\n187,405,8.0\n187,406,7.5\n187,407,7.0\n187,408,6.5\n187,409,6.0\n187,410,5.5\n187,411,5.0\n187,412,4.5\n187,413,5.0\n187,414,5.5\n187,415,6.0\n187,416,6.5\n187,417,7.0\n187,418,7.5\n187,419,8.0\n187,420,8.5\n187,421,9.0\n187,422,9.5\n187,423,10.0\n187,424,10.5\n187,425,11.0\n187,426,10.5\n187,427,10.0\n187,428,9.5\n187,429,9.0\n187,430,8.5\n187,431,8.0\n187,432,7.5\n187,433,7.0\n187,434,6.5\n187,435,6.0\n187,436,5.5\n187,437,5.0\n187,438,5.5\n187,439,6.0\n187,440,6.5\n187,441,7.0\n187,442,7.5\n187,443,8.0\n187,444,8.5\n187,445,9.0\n187,446,9.5\n187,447,10.0\n187,448,10.5\n187,449,11.0\n187,450,11.5\n187,451,11.0\n187,452,10.5\n187,453,10.0\n187,454,9.5\n187,455,9.0\n187,456,8.5\n187,457,8.0\n187,458,7.5\n187,459,7.0\n187,460,6.5\n187,461,6.0\n187,462,5.5\n187,463,6.0\n187,464,6.5\n187,465,7.0\n187,466,7.5\n187,467,8.0\n187,468,8.5\n187,469,9.0\n187,470,9.5\n187,471,10.0\n187,472,10.5\n187,473,11.0\n187,474,11.5\n187,475,12.0\n187,476,11.5\n187,477,11.0\n187,478,10.5\n187,479,10.0\n187,480,9.5\n187,481,9.0\n187,482,8.5\n187,483,8.0\n187,484,7.5\n187,485,7.0\n187,486,6.5\n187,487,6.0\n187,488,6.5\n187,489,7.0\n187,490,7.5\n187,491,8.0\n187,492,8.5\n187,493,9.0\n187,494,9.5\n187,495,10.0\n187,496,10.5\n187,497,11.0\n187,498,11.5\n187,499,12.0\n187,500,12.5\n187,501,12.0\n187,502,11.5\n187,503,11.0\n187,504,10.5\n187,505,10.0\n187,506,9.5\n187,507,9.0\n187,508,8.5\n187,509,8.0\n187,510,7.5\n187,511,7.0\n187,512,6.5\n187,513,7.0\n187,514,7.5\n187,515,8.0\n187,516,8.5\n187,517,9.0\n187,518,9.5\n187,519,10.0\n187,520,10.5\n187,521,11.0\n187,522,11.5\n187,523,12.0\n187,524,12.5\n187,525,13.0\n187,526,12.5\n187,527,12.0\n187,528,11.5\n187,529,11.0\n187,530,10.5\n187,531,10.0\n187,532,9.5\n187,533,9.0\n187,534,8.5\n187,535,8.0\n187,536,7.5\n187,537,7.0\n187,538,7.5\n187,539,8.0\n187,540,8.5\n187,541,9.0\n187,542,9.5\n187,543,10.0\n187,544,10.5\n187,545,11.0\n187,546,11.5\n187,547,12.0\n187,548,12.5\n187,549,13.0\n187,550,13.5\n187,551,13.0\n187,552,12.5\n187,553,12.0\n187,554,11.5\n187,555,11.0\n187,556,10.5\n187,557,10.0\n187,558,9.5\n187,559,9.0\n187,560,8.5\n187,561,8.0\n187,562,7.5\n187,563,8.0\n187,564,8.5\n187,565,9.0\n187,566,9.5\n187,567,10.0\n187,568,10.5\n187,569,11.0\n187,570,11.5\n187,571,12.0\n187,572,12.5\n187,573,13.0\n187,574,13.5\n187,575,14.0\n187,576,13.5\n187,577,13.0\n187,578,12.5\n187,579,12.0\n187,580,11.5\n187,581,11.0\n187,582,10.5\n187,583,10.0\n187,584,9.5\n187,585,9.0\n187,586,8.5\n187,587,8.0\n187,588,8.5\n187,589,9.0\n187,590,9.5\n187,591,10.0\n187,592,10.5\n187,593,11.0\n187,594,11.5\n187,595,12.0\n187,596,12.5\n187,597,13.0\n187,598,13.5\n187,599,14.0\n187,600,14.5\n187,601,14.0\n187,602,13.5\n187,603,13.0\n187,604,12.5\n187,605,12.0\n187,606,11.5\n187,607,11.0\n187,608,10.5\n187,609,10.0\n187,610,9.5\n187,611,9.0\n187,612,8.5\n187,613,9.0\n187,614,9.5\n187,615,10.0\n187,616,10.5\n187,617,11.0\n187,618,11.5\n187,619,12.0\n187,620,12.5\n187,621,13.0\n187,622,13.5\n187,623,14.0\n187,624,14.5\n188,0,10.0\n188,1,9.5\n188,2,9.0\n188,3,8.5\n188,4,8.0\n188,5,7.5\n188,6,7.0\n188,7,6.5\n188,8,6.0\n188,9,5.5\n188,10,5.0\n188,11,4.5\n188,12,4.0\n188,13,3.5\n188,14,4.0\n188,15,4.5\n188,16,5.0\n188,17,5.5\n188,18,6.0\n188,19,6.5\n188,20,7.0\n188,21,7.5\n188,22,8.0\n188,23,8.5\n188,24,9.0\n188,25,9.5\n188,26,9.0\n188,27,8.5\n188,28,8.0\n188,29,7.5\n188,30,7.0\n188,31,6.5\n188,32,6.0\n188,33,5.5\n188,34,5.0\n188,35,4.5\n188,36,4.0\n188,37,3.5\n188,38,3.0\n188,39,3.5\n188,40,4.0\n188,41,4.5\n188,42,5.0\n188,43,5.5\n188,44,6.0\n188,45,6.5\n188,46,7.0\n188,47,7.5\n188,48,8.0\n188,49,8.5\n188,50,9.0\n188,51,8.5\n188,52,8.0\n188,53,7.5\n188,54,7.0\n188,55,6.5\n188,56,6.0\n188,57,5.5\n188,58,5.0\n188,59,4.5\n188,60,4.0\n188,61,3.5\n188,62,3.0\n188,63,2.5\n188,64,3.0\n188,65,3.5\n188,66,4.0\n188,67,4.5\n188,68,5.0\n188,69,5.5\n188,70,6.0\n188,71,6.5\n188,72,7.0\n188,73,7.5\n188,74,8.0\n188,75,8.5\n188,76,8.0\n188,77,7.5\n188,78,7.0\n188,79,6.5\n188,80,6.0\n188,81,5.5\n188,82,5.0\n188,83,4.5\n188,84,4.0\n188,85,3.5\n188,86,3.0\n188,87,2.5\n188,88,2.0\n188,89,2.5\n188,90,3.0\n188,91,3.5\n188,92,4.0\n188,93,4.5\n188,94,5.0\n188,95,5.5\n188,96,6.0\n188,97,6.5\n188,98,7.0\n188,99,7.5\n188,100,8.0\n188,101,7.5\n188,102,7.0\n188,103,6.5\n188,104,6.0\n188,105,5.5\n188,106,5.0\n188,107,4.5\n188,108,4.0\n188,109,3.5\n188,110,3.0\n188,111,2.5\n188,112,2.0\n188,113,1.5\n188,114,2.0\n188,115,2.5\n188,116,3.0\n188,117,3.5\n188,118,4.0\n188,119,4.5\n188,120,5.0\n188,121,5.5\n188,122,6.0\n188,123,6.5\n188,124,7.0\n188,125,7.5\n188,126,7.0\n188,127,6.5\n188,128,6.0\n188,129,5.5\n188,130,5.0\n188,131,4.5\n188,132,4.0\n188,133,3.5\n188,134,3.0\n188,135,2.5\n188,136,2.0\n188,137,1.5\n188,138,1.0\n188,139,1.5\n188,140,2.0\n188,141,2.5\n188,142,3.0\n188,143,3.5\n188,144,4.0\n188,145,4.5\n188,146,5.0\n188,147,5.5\n188,148,6.0\n188,149,6.5\n188,150,7.0\n188,151,6.5\n188,152,6.0\n188,153,5.5\n188,154,5.0\n188,155,4.5\n188,156,4.0\n188,157,3.5\n188,158,3.0\n188,159,2.5\n188,160,2.0\n188,161,1.5\n188,162,1.0\n188,163,0.5\n188,164,1.0\n188,165,1.5\n188,166,2.0\n188,167,2.5\n188,168,3.0\n188,169,3.5\n188,170,4.0\n188,171,4.5\n188,172,5.0\n188,173,5.5\n188,174,6.0\n188,175,6.5\n188,176,6.0\n188,177,5.5\n188,178,5.0\n188,179,4.5\n188,180,4.0\n188,181,3.5\n188,182,3.0\n188,183,2.5\n188,184,2.0\n188,185,1.5\n188,186,1.0\n188,187,0.5\n188,188,0\n188,189,0.5\n188,190,1.0\n188,191,1.5\n188,192,2.0\n188,193,2.5\n188,194,3.0\n188,195,3.5\n188,196,4.0\n188,197,4.5\n188,198,5.0\n188,199,5.5\n188,200,7.0\n188,201,6.5\n188,202,6.0\n188,203,5.5\n188,204,5.0\n188,205,4.5\n188,206,4.0\n188,207,3.5\n188,208,3.0\n188,209,2.5\n188,210,2.0\n188,211,1.5\n188,212,1.0\n188,213,0.5\n188,214,1.0\n188,215,1.5\n188,216,2.0\n188,217,2.5\n188,218,3.0\n188,219,3.5\n188,220,4.0\n188,221,4.5\n188,222,5.0\n188,223,5.5\n188,224,6.0\n188,225,7.5\n188,226,7.0\n188,227,6.5\n188,228,6.0\n188,229,5.5\n188,230,5.0\n188,231,4.5\n188,232,4.0\n188,233,3.5\n188,234,3.0\n188,235,2.5\n188,236,2.0\n188,237,1.5\n188,238,1.0\n188,239,1.5\n188,240,2.0\n188,241,2.5\n188,242,3.0\n188,243,3.5\n188,244,4.0\n188,245,4.5\n188,246,5.0\n188,247,5.5\n188,248,6.0\n188,249,6.5\n188,250,8.0\n188,251,7.5\n188,252,7.0\n188,253,6.5\n188,254,6.0\n188,255,5.5\n188,256,5.0\n188,257,4.5\n188,258,4.0\n188,259,3.5\n188,260,3.0\n188,261,2.5\n188,262,2.0\n188,263,1.5\n188,264,2.0\n188,265,2.5\n188,266,3.0\n188,267,3.5\n188,268,4.0\n188,269,4.5\n188,270,5.0\n188,271,5.5\n188,272,6.0\n188,273,6.5\n188,274,7.0\n188,275,8.5\n188,276,8.0\n188,277,7.5\n188,278,7.0\n188,279,6.5\n188,280,6.0\n188,281,5.5\n188,282,5.0\n188,283,4.5\n188,284,4.0\n188,285,3.5\n188,286,3.0\n188,287,2.5\n188,288,2.0\n188,289,2.5\n188,290,3.0\n188,291,3.5\n188,292,4.0\n188,293,4.5\n188,294,5.0\n188,295,5.5\n188,296,6.0\n188,297,6.5\n188,298,7.0\n188,299,7.5\n188,300,9.0\n188,301,8.5\n188,302,8.0\n188,303,7.5\n188,304,7.0\n188,305,6.5\n188,306,6.0\n188,307,5.5\n188,308,5.0\n188,309,4.5\n188,310,4.0\n188,311,3.5\n188,312,3.0\n188,313,2.5\n188,314,3.0\n188,315,3.5\n188,316,4.0\n188,317,4.5\n188,318,5.0\n188,319,5.5\n188,320,6.0\n188,321,6.5\n188,322,7.0\n188,323,7.5\n188,324,8.0\n188,325,9.5\n188,326,9.0\n188,327,8.5\n188,328,8.0\n188,329,7.5\n188,330,7.0\n188,331,6.5\n188,332,6.0\n188,333,5.5\n188,334,5.0\n188,335,4.5\n188,336,4.0\n188,337,3.5\n188,338,3.0\n188,339,3.5\n188,340,4.0\n188,341,4.5\n188,342,5.0\n188,343,5.5\n188,344,6.0\n188,345,6.5\n188,346,7.0\n188,347,7.5\n188,348,8.0\n188,349,8.5\n188,350,10.0\n188,351,9.5\n188,352,9.0\n188,353,8.5\n188,354,8.0\n188,355,7.5\n188,356,7.0\n188,357,6.5\n188,358,6.0\n188,359,5.5\n188,360,5.0\n188,361,4.5\n188,362,4.0\n188,363,3.5\n188,364,4.0\n188,365,4.5\n188,366,5.0\n188,367,5.5\n188,368,6.0\n188,369,6.5\n188,370,7.0\n188,371,7.5\n188,372,8.0\n188,373,8.5\n188,374,9.0\n188,375,10.5\n188,376,10.0\n188,377,9.5\n188,378,9.0\n188,379,8.5\n188,380,8.0\n188,381,7.5\n188,382,7.0\n188,383,6.5\n188,384,6.0\n188,385,5.5\n188,386,5.0\n188,387,4.5\n188,388,4.0\n188,389,4.5\n188,390,5.0\n188,391,5.5\n188,392,6.0\n188,393,6.5\n188,394,7.0\n188,395,7.5\n188,396,8.0\n188,397,8.5\n188,398,9.0\n188,399,9.5\n188,400,11.0\n188,401,10.5\n188,402,10.0\n188,403,9.5\n188,404,9.0\n188,405,8.5\n188,406,8.0\n188,407,7.5\n188,408,7.0\n188,409,6.5\n188,410,6.0\n188,411,5.5\n188,412,5.0\n188,413,4.5\n188,414,5.0\n188,415,5.5\n188,416,6.0\n188,417,6.5\n188,418,7.0\n188,419,7.5\n188,420,8.0\n188,421,8.5\n188,422,9.0\n188,423,9.5\n188,424,10.0\n188,425,11.5\n188,426,11.0\n188,427,10.5\n188,428,10.0\n188,429,9.5\n188,430,9.0\n188,431,8.5\n188,432,8.0\n188,433,7.5\n188,434,7.0\n188,435,6.5\n188,436,6.0\n188,437,5.5\n188,438,5.0\n188,439,5.5\n188,440,6.0\n188,441,6.5\n188,442,7.0\n188,443,7.5\n188,444,8.0\n188,445,8.5\n188,446,9.0\n188,447,9.5\n188,448,10.0\n188,449,10.5\n188,450,12.0\n188,451,11.5\n188,452,11.0\n188,453,10.5\n188,454,10.0\n188,455,9.5\n188,456,9.0\n188,457,8.5\n188,458,8.0\n188,459,7.5\n188,460,7.0\n188,461,6.5\n188,462,6.0\n188,463,5.5\n188,464,6.0\n188,465,6.5\n188,466,7.0\n188,467,7.5\n188,468,8.0\n188,469,8.5\n188,470,9.0\n188,471,9.5\n188,472,10.0\n188,473,10.5\n188,474,11.0\n188,475,12.5\n188,476,12.0\n188,477,11.5\n188,478,11.0\n188,479,10.5\n188,480,10.0\n188,481,9.5\n188,482,9.0\n188,483,8.5\n188,484,8.0\n188,485,7.5\n188,486,7.0\n188,487,6.5\n188,488,6.0\n188,489,6.5\n188,490,7.0\n188,491,7.5\n188,492,8.0\n188,493,8.5\n188,494,9.0\n188,495,9.5\n188,496,10.0\n188,497,10.5\n188,498,11.0\n188,499,11.5\n188,500,13.0\n188,501,12.5\n188,502,12.0\n188,503,11.5\n188,504,11.0\n188,505,10.5\n188,506,10.0\n188,507,9.5\n188,508,9.0\n188,509,8.5\n188,510,8.0\n188,511,7.5\n188,512,7.0\n188,513,6.5\n188,514,7.0\n188,515,7.5\n188,516,8.0\n188,517,8.5\n188,518,9.0\n188,519,9.5\n188,520,10.0\n188,521,10.5\n188,522,11.0\n188,523,11.5\n188,524,12.0\n188,525,13.5\n188,526,13.0\n188,527,12.5\n188,528,12.0\n188,529,11.5\n188,530,11.0\n188,531,10.5\n188,532,10.0\n188,533,9.5\n188,534,9.0\n188,535,8.5\n188,536,8.0\n188,537,7.5\n188,538,7.0\n188,539,7.5\n188,540,8.0\n188,541,8.5\n188,542,9.0\n188,543,9.5\n188,544,10.0\n188,545,10.5\n188,546,11.0\n188,547,11.5\n188,548,12.0\n188,549,12.5\n188,550,14.0\n188,551,13.5\n188,552,13.0\n188,553,12.5\n188,554,12.0\n188,555,11.5\n188,556,11.0\n188,557,10.5\n188,558,10.0\n188,559,9.5\n188,560,9.0\n188,561,8.5\n188,562,8.0\n188,563,7.5\n188,564,8.0\n188,565,8.5\n188,566,9.0\n188,567,9.5\n188,568,10.0\n188,569,10.5\n188,570,11.0\n188,571,11.5\n188,572,12.0\n188,573,12.5\n188,574,13.0\n188,575,14.5\n188,576,14.0\n188,577,13.5\n188,578,13.0\n188,579,12.5\n188,580,12.0\n188,581,11.5\n188,582,11.0\n188,583,10.5\n188,584,10.0\n188,585,9.5\n188,586,9.0\n188,587,8.5\n188,588,8.0\n188,589,8.5\n188,590,9.0\n188,591,9.5\n188,592,10.0\n188,593,10.5\n188,594,11.0\n188,595,11.5\n188,596,12.0\n188,597,12.5\n188,598,13.0\n188,599,13.5\n188,600,15.0\n188,601,14.5\n188,602,14.0\n188,603,13.5\n188,604,13.0\n188,605,12.5\n188,606,12.0\n188,607,11.5\n188,608,11.0\n188,609,10.5\n188,610,10.0\n188,611,9.5\n188,612,9.0\n188,613,8.5\n188,614,9.0\n188,615,9.5\n188,616,10.0\n188,617,10.5\n188,618,11.0\n188,619,11.5\n188,620,12.0\n188,621,12.5\n188,622,13.0\n188,623,13.5\n188,624,14.0\n189,0,10.5\n189,1,10.0\n189,2,9.5\n189,3,9.0\n189,4,8.5\n189,5,8.0\n189,6,7.5\n189,7,7.0\n189,8,6.5\n189,9,6.0\n189,10,5.5\n189,11,5.0\n189,12,4.5\n189,13,4.0\n189,14,3.5\n189,15,4.0\n189,16,4.5\n189,17,5.0\n189,18,5.5\n189,19,6.0\n189,20,6.5\n189,21,7.0\n189,22,7.5\n189,23,8.0\n189,24,8.5\n189,25,10.0\n189,26,9.5\n189,27,9.0\n189,28,8.5\n189,29,8.0\n189,30,7.5\n189,31,7.0\n189,32,6.5\n189,33,6.0\n189,34,5.5\n189,35,5.0\n189,36,4.5\n189,37,4.0\n189,38,3.5\n189,39,3.0\n189,40,3.5\n189,41,4.0\n189,42,4.5\n189,43,5.0\n189,44,5.5\n189,45,6.0\n189,46,6.5\n189,47,7.0\n189,48,7.5\n189,49,8.0\n189,50,9.5\n189,51,9.0\n189,52,8.5\n189,53,8.0\n189,54,7.5\n189,55,7.0\n189,56,6.5\n189,57,6.0\n189,58,5.5\n189,59,5.0\n189,60,4.5\n189,61,4.0\n189,62,3.5\n189,63,3.0\n189,64,2.5\n189,65,3.0\n189,66,3.5\n189,67,4.0\n189,68,4.5\n189,69,5.0\n189,70,5.5\n189,71,6.0\n189,72,6.5\n189,73,7.0\n189,74,7.5\n189,75,9.0\n189,76,8.5\n189,77,8.0\n189,78,7.5\n189,79,7.0\n189,80,6.5\n189,81,6.0\n189,82,5.5\n189,83,5.0\n189,84,4.5\n189,85,4.0\n189,86,3.5\n189,87,3.0\n189,88,2.5\n189,89,2.0\n189,90,2.5\n189,91,3.0\n189,92,3.5\n189,93,4.0\n189,94,4.5\n189,95,5.0\n189,96,5.5\n189,97,6.0\n189,98,6.5\n189,99,7.0\n189,100,8.5\n189,101,8.0\n189,102,7.5\n189,103,7.0\n189,104,6.5\n189,105,6.0\n189,106,5.5\n189,107,5.0\n189,108,4.5\n189,109,4.0\n189,110,3.5\n189,111,3.0\n189,112,2.5\n189,113,2.0\n189,114,1.5\n189,115,2.0\n189,116,2.5\n189,117,3.0\n189,118,3.5\n189,119,4.0\n189,120,4.5\n189,121,5.0\n189,122,5.5\n189,123,6.0\n189,124,6.5\n189,125,8.0\n189,126,7.5\n189,127,7.0\n189,128,6.5\n189,129,6.0\n189,130,5.5\n189,131,5.0\n189,132,4.5\n189,133,4.0\n189,134,3.5\n189,135,3.0\n189,136,2.5\n189,137,2.0\n189,138,1.5\n189,139,1.0\n189,140,1.5\n189,141,2.0\n189,142,2.5\n189,143,3.0\n189,144,3.5\n189,145,4.0\n189,146,4.5\n189,147,5.0\n189,148,5.5\n189,149,6.0\n189,150,7.5\n189,151,7.0\n189,152,6.5\n189,153,6.0\n189,154,5.5\n189,155,5.0\n189,156,4.5\n189,157,4.0\n189,158,3.5\n189,159,3.0\n189,160,2.5\n189,161,2.0\n189,162,1.5\n189,163,1.0\n189,164,0.5\n189,165,1.0\n189,166,1.5\n189,167,2.0\n189,168,2.5\n189,169,3.0\n189,170,3.5\n189,171,4.0\n189,172,4.5\n189,173,5.0\n189,174,5.5\n189,175,7.0\n189,176,6.5\n189,177,6.0\n189,178,5.5\n189,179,5.0\n189,180,4.5\n189,181,4.0\n189,182,3.5\n189,183,3.0\n189,184,2.5\n189,185,2.0\n189,186,1.5\n189,187,1.0\n189,188,0.5\n189,189,0\n189,190,0.5\n189,191,1.0\n189,192,1.5\n189,193,2.0\n189,194,2.5\n189,195,3.0\n189,196,3.5\n189,197,4.0\n189,198,4.5\n189,199,5.0\n189,200,7.5\n189,201,7.0\n189,202,6.5\n189,203,6.0\n189,204,5.5\n189,205,5.0\n189,206,4.5\n189,207,4.0\n189,208,3.5\n189,209,3.0\n189,210,2.5\n189,211,2.0\n189,212,1.5\n189,213,1.0\n189,214,0.5\n189,215,1.0\n189,216,1.5\n189,217,2.0\n189,218,2.5\n189,219,3.0\n189,220,3.5\n189,221,4.0\n189,222,4.5\n189,223,5.0\n189,224,5.5\n189,225,8.0\n189,226,7.5\n189,227,7.0\n189,228,6.5\n189,229,6.0\n189,230,5.5\n189,231,5.0\n189,232,4.5\n189,233,4.0\n189,234,3.5\n189,235,3.0\n189,236,2.5\n189,237,2.0\n189,238,1.5\n189,239,1.0\n189,240,1.5\n189,241,2.0\n189,242,2.5\n189,243,3.0\n189,244,3.5\n189,245,4.0\n189,246,4.5\n189,247,5.0\n189,248,5.5\n189,249,6.0\n189,250,8.5\n189,251,8.0\n189,252,7.5\n189,253,7.0\n189,254,6.5\n189,255,6.0\n189,256,5.5\n189,257,5.0\n189,258,4.5\n189,259,4.0\n189,260,3.5\n189,261,3.0\n189,262,2.5\n189,263,2.0\n189,264,1.5\n189,265,2.0\n189,266,2.5\n189,267,3.0\n189,268,3.5\n189,269,4.0\n189,270,4.5\n189,271,5.0\n189,272,5.5\n189,273,6.0\n189,274,6.5\n189,275,9.0\n189,276,8.5\n189,277,8.0\n189,278,7.5\n189,279,7.0\n189,280,6.5\n189,281,6.0\n189,282,5.5\n189,283,5.0\n189,284,4.5\n189,285,4.0\n189,286,3.5\n189,287,3.0\n189,288,2.5\n189,289,2.0\n189,290,2.5\n189,291,3.0\n189,292,3.5\n189,293,4.0\n189,294,4.5\n189,295,5.0\n189,296,5.5\n189,297,6.0\n189,298,6.5\n189,299,7.0\n189,300,9.5\n189,301,9.0\n189,302,8.5\n189,303,8.0\n189,304,7.5\n189,305,7.0\n189,306,6.5\n189,307,6.0\n189,308,5.5\n189,309,5.0\n189,310,4.5\n189,311,4.0\n189,312,3.5\n189,313,3.0\n189,314,2.5\n189,315,3.0\n189,316,3.5\n189,317,4.0\n189,318,4.5\n189,319,5.0\n189,320,5.5\n189,321,6.0\n189,322,6.5\n189,323,7.0\n189,324,7.5\n189,325,10.0\n189,326,9.5\n189,327,9.0\n189,328,8.5\n189,329,8.0\n189,330,7.5\n189,331,7.0\n189,332,6.5\n189,333,6.0\n189,334,5.5\n189,335,5.0\n189,336,4.5\n189,337,4.0\n189,338,3.5\n189,339,3.0\n189,340,3.5\n189,341,4.0\n189,342,4.5\n189,343,5.0\n189,344,5.5\n189,345,6.0\n189,346,6.5\n189,347,7.0\n189,348,7.5\n189,349,8.0\n189,350,10.5\n189,351,10.0\n189,352,9.5\n189,353,9.0\n189,354,8.5\n189,355,8.0\n189,356,7.5\n189,357,7.0\n189,358,6.5\n189,359,6.0\n189,360,5.5\n189,361,5.0\n189,362,4.5\n189,363,4.0\n189,364,3.5\n189,365,4.0\n189,366,4.5\n189,367,5.0\n189,368,5.5\n189,369,6.0\n189,370,6.5\n189,371,7.0\n189,372,7.5\n189,373,8.0\n189,374,8.5\n189,375,11.0\n189,376,10.5\n189,377,10.0\n189,378,9.5\n189,379,9.0\n189,380,8.5\n189,381,8.0\n189,382,7.5\n189,383,7.0\n189,384,6.5\n189,385,6.0\n189,386,5.5\n189,387,5.0\n189,388,4.5\n189,389,4.0\n189,390,4.5\n189,391,5.0\n189,392,5.5\n189,393,6.0\n189,394,6.5\n189,395,7.0\n189,396,7.5\n189,397,8.0\n189,398,8.5\n189,399,9.0\n189,400,11.5\n189,401,11.0\n189,402,10.5\n189,403,10.0\n189,404,9.5\n189,405,9.0\n189,406,8.5\n189,407,8.0\n189,408,7.5\n189,409,7.0\n189,410,6.5\n189,411,6.0\n189,412,5.5\n189,413,5.0\n189,414,4.5\n189,415,5.0\n189,416,5.5\n189,417,6.0\n189,418,6.5\n189,419,7.0\n189,420,7.5\n189,421,8.0\n189,422,8.5\n189,423,9.0\n189,424,9.5\n189,425,12.0\n189,426,11.5\n189,427,11.0\n189,428,10.5\n189,429,10.0\n189,430,9.5\n189,431,9.0\n189,432,8.5\n189,433,8.0\n189,434,7.5\n189,435,7.0\n189,436,6.5\n189,437,6.0\n189,438,5.5\n189,439,5.0\n189,440,5.5\n189,441,6.0\n189,442,6.5\n189,443,7.0\n189,444,7.5\n189,445,8.0\n189,446,8.5\n189,447,9.0\n189,448,9.5\n189,449,10.0\n189,450,12.5\n189,451,12.0\n189,452,11.5\n189,453,11.0\n189,454,10.5\n189,455,10.0\n189,456,9.5\n189,457,9.0\n189,458,8.5\n189,459,8.0\n189,460,7.5\n189,461,7.0\n189,462,6.5\n189,463,6.0\n189,464,5.5\n189,465,6.0\n189,466,6.5\n189,467,7.0\n189,468,7.5\n189,469,8.0\n189,470,8.5\n189,471,9.0\n189,472,9.5\n189,473,10.0\n189,474,10.5\n189,475,13.0\n189,476,12.5\n189,477,12.0\n189,478,11.5\n189,479,11.0\n189,480,10.5\n189,481,10.0\n189,482,9.5\n189,483,9.0\n189,484,8.5\n189,485,8.0\n189,486,7.5\n189,487,7.0\n189,488,6.5\n189,489,6.0\n189,490,6.5\n189,491,7.0\n189,492,7.5\n189,493,8.0\n189,494,8.5\n189,495,9.0\n189,496,9.5\n189,497,10.0\n189,498,10.5\n189,499,11.0\n189,500,13.5\n189,501,13.0\n189,502,12.5\n189,503,12.0\n189,504,11.5\n189,505,11.0\n189,506,10.5\n189,507,10.0\n189,508,9.5\n189,509,9.0\n189,510,8.5\n189,511,8.0\n189,512,7.5\n189,513,7.0\n189,514,6.5\n189,515,7.0\n189,516,7.5\n189,517,8.0\n189,518,8.5\n189,519,9.0\n189,520,9.5\n189,521,10.0\n189,522,10.5\n189,523,11.0\n189,524,11.5\n189,525,14.0\n189,526,13.5\n189,527,13.0\n189,528,12.5\n189,529,12.0\n189,530,11.5\n189,531,11.0\n189,532,10.5\n189,533,10.0\n189,534,9.5\n189,535,9.0\n189,536,8.5\n189,537,8.0\n189,538,7.5\n189,539,7.0\n189,540,7.5\n189,541,8.0\n189,542,8.5\n189,543,9.0\n189,544,9.5\n189,545,10.0\n189,546,10.5\n189,547,11.0\n189,548,11.5\n189,549,12.0\n189,550,14.5\n189,551,14.0\n189,552,13.5\n189,553,13.0\n189,554,12.5\n189,555,12.0\n189,556,11.5\n189,557,11.0\n189,558,10.5\n189,559,10.0\n189,560,9.5\n189,561,9.0\n189,562,8.5\n189,563,8.0\n189,564,7.5\n189,565,8.0\n189,566,8.5\n189,567,9.0\n189,568,9.5\n189,569,10.0\n189,570,10.5\n189,571,11.0\n189,572,11.5\n189,573,12.0\n189,574,12.5\n189,575,15.0\n189,576,14.5\n189,577,14.0\n189,578,13.5\n189,579,13.0\n189,580,12.5\n189,581,12.0\n189,582,11.5\n189,583,11.0\n189,584,10.5\n189,585,10.0\n189,586,9.5\n189,587,9.0\n189,588,8.5\n189,589,8.0\n189,590,8.5\n189,591,9.0\n189,592,9.5\n189,593,10.0\n189,594,10.5\n189,595,11.0\n189,596,11.5\n189,597,12.0\n189,598,12.5\n189,599,13.0\n189,600,15.5\n189,601,15.0\n189,602,14.5\n189,603,14.0\n189,604,13.5\n189,605,13.0\n189,606,12.5\n189,607,12.0\n189,608,11.5\n189,609,11.0\n189,610,10.5\n189,611,10.0\n189,612,9.5\n189,613,9.0\n189,614,8.5\n189,615,9.0\n189,616,9.5\n189,617,10.0\n189,618,10.5\n189,619,11.0\n189,620,11.5\n189,621,12.0\n189,622,12.5\n189,623,13.0\n189,624,13.5\n190,0,11.0\n190,1,10.5\n190,2,10.0\n190,3,9.5\n190,4,9.0\n190,5,8.5\n190,6,8.0\n190,7,7.5\n190,8,7.0\n190,9,6.5\n190,10,6.0\n190,11,5.5\n190,12,5.0\n190,13,4.5\n190,14,4.0\n190,15,3.5\n190,16,4.0\n190,17,4.5\n190,18,5.0\n190,19,5.5\n190,20,6.0\n190,21,6.5\n190,22,7.0\n190,23,7.5\n190,24,8.0\n190,25,10.5\n190,26,10.0\n190,27,9.5\n190,28,9.0\n190,29,8.5\n190,30,8.0\n190,31,7.5\n190,32,7.0\n190,33,6.5\n190,34,6.0\n190,35,5.5\n190,36,5.0\n190,37,4.5\n190,38,4.0\n190,39,3.5\n190,40,3.0\n190,41,3.5\n190,42,4.0\n190,43,4.5\n190,44,5.0\n190,45,5.5\n190,46,6.0\n190,47,6.5\n190,48,7.0\n190,49,7.5\n190,50,10.0\n190,51,9.5\n190,52,9.0\n190,53,8.5\n190,54,8.0\n190,55,7.5\n190,56,7.0\n190,57,6.5\n190,58,6.0\n190,59,5.5\n190,60,5.0\n190,61,4.5\n190,62,4.0\n190,63,3.5\n190,64,3.0\n190,65,2.5\n190,66,3.0\n190,67,3.5\n190,68,4.0\n190,69,4.5\n190,70,5.0\n190,71,5.5\n190,72,6.0\n190,73,6.5\n190,74,7.0\n190,75,9.5\n190,76,9.0\n190,77,8.5\n190,78,8.0\n190,79,7.5\n190,80,7.0\n190,81,6.5\n190,82,6.0\n190,83,5.5\n190,84,5.0\n190,85,4.5\n190,86,4.0\n190,87,3.5\n190,88,3.0\n190,89,2.5\n190,90,2.0\n190,91,2.5\n190,92,3.0\n190,93,3.5\n190,94,4.0\n190,95,4.5\n190,96,5.0\n190,97,5.5\n190,98,6.0\n190,99,6.5\n190,100,9.0\n190,101,8.5\n190,102,8.0\n190,103,7.5\n190,104,7.0\n190,105,6.5\n190,106,6.0\n190,107,5.5\n190,108,5.0\n190,109,4.5\n190,110,4.0\n190,111,3.5\n190,112,3.0\n190,113,2.5\n190,114,2.0\n190,115,1.5\n190,116,2.0\n190,117,2.5\n190,118,3.0\n190,119,3.5\n190,120,4.0\n190,121,4.5\n190,122,5.0\n190,123,5.5\n190,124,6.0\n190,125,8.5\n190,126,8.0\n190,127,7.5\n190,128,7.0\n190,129,6.5\n190,130,6.0\n190,131,5.5\n190,132,5.0\n190,133,4.5\n190,134,4.0\n190,135,3.5\n190,136,3.0\n190,137,2.5\n190,138,2.0\n190,139,1.5\n190,140,1.0\n190,141,1.5\n190,142,2.0\n190,143,2.5\n190,144,3.0\n190,145,3.5\n190,146,4.0\n190,147,4.5\n190,148,5.0\n190,149,5.5\n190,150,8.0\n190,151,7.5\n190,152,7.0\n190,153,6.5\n190,154,6.0\n190,155,5.5\n190,156,5.0\n190,157,4.5\n190,158,4.0\n190,159,3.5\n190,160,3.0\n190,161,2.5\n190,162,2.0\n190,163,1.5\n190,164,1.0\n190,165,0.5\n190,166,1.0\n190,167,1.5\n190,168,2.0\n190,169,2.5\n190,170,3.0\n190,171,3.5\n190,172,4.0\n190,173,4.5\n190,174,5.0\n190,175,7.5\n190,176,7.0\n190,177,6.5\n190,178,6.0\n190,179,5.5\n190,180,5.0\n190,181,4.5\n190,182,4.0\n190,183,3.5\n190,184,3.0\n190,185,2.5\n190,186,2.0\n190,187,1.5\n190,188,1.0\n190,189,0.5\n190,190,0\n190,191,0.5\n190,192,1.0\n190,193,1.5\n190,194,2.0\n190,195,2.5\n190,196,3.0\n190,197,3.5\n190,198,4.0\n190,199,4.5\n190,200,8.0\n190,201,7.5\n190,202,7.0\n190,203,6.5\n190,204,6.0\n190,205,5.5\n190,206,5.0\n190,207,4.5\n190,208,4.0\n190,209,3.5\n190,210,3.0\n190,211,2.5\n190,212,2.0\n190,213,1.5\n190,214,1.0\n190,215,0.5\n190,216,1.0\n190,217,1.5\n190,218,2.0\n190,219,2.5\n190,220,3.0\n190,221,3.5\n190,222,4.0\n190,223,4.5\n190,224,5.0\n190,225,8.5\n190,226,8.0\n190,227,7.5\n190,228,7.0\n190,229,6.5\n190,230,6.0\n190,231,5.5\n190,232,5.0\n190,233,4.5\n190,234,4.0\n190,235,3.5\n190,236,3.0\n190,237,2.5\n190,238,2.0\n190,239,1.5\n190,240,1.0\n190,241,1.5\n190,242,2.0\n190,243,2.5\n190,244,3.0\n190,245,3.5\n190,246,4.0\n190,247,4.5\n190,248,5.0\n190,249,5.5\n190,250,9.0\n190,251,8.5\n190,252,8.0\n190,253,7.5\n190,254,7.0\n190,255,6.5\n190,256,6.0\n190,257,5.5\n190,258,5.0\n190,259,4.5\n190,260,4.0\n190,261,3.5\n190,262,3.0\n190,263,2.5\n190,264,2.0\n190,265,1.5\n190,266,2.0\n190,267,2.5\n190,268,3.0\n190,269,3.5\n190,270,4.0\n190,271,4.5\n190,272,5.0\n190,273,5.5\n190,274,6.0\n190,275,9.5\n190,276,9.0\n190,277,8.5\n190,278,8.0\n190,279,7.5\n190,280,7.0\n190,281,6.5\n190,282,6.0\n190,283,5.5\n190,284,5.0\n190,285,4.5\n190,286,4.0\n190,287,3.5\n190,288,3.0\n190,289,2.5\n190,290,2.0\n190,291,2.5\n190,292,3.0\n190,293,3.5\n190,294,4.0\n190,295,4.5\n190,296,5.0\n190,297,5.5\n190,298,6.0\n190,299,6.5\n190,300,10.0\n190,301,9.5\n190,302,9.0\n190,303,8.5\n190,304,8.0\n190,305,7.5\n190,306,7.0\n190,307,6.5\n190,308,6.0\n190,309,5.5\n190,310,5.0\n190,311,4.5\n190,312,4.0\n190,313,3.5\n190,314,3.0\n190,315,2.5\n190,316,3.0\n190,317,3.5\n190,318,4.0\n190,319,4.5\n190,320,5.0\n190,321,5.5\n190,322,6.0\n190,323,6.5\n190,324,7.0\n190,325,10.5\n190,326,10.0\n190,327,9.5\n190,328,9.0\n190,329,8.5\n190,330,8.0\n190,331,7.5\n190,332,7.0\n190,333,6.5\n190,334,6.0\n190,335,5.5\n190,336,5.0\n190,337,4.5\n190,338,4.0\n190,339,3.5\n190,340,3.0\n190,341,3.5\n190,342,4.0\n190,343,4.5\n190,344,5.0\n190,345,5.5\n190,346,6.0\n190,347,6.5\n190,348,7.0\n190,349,7.5\n190,350,11.0\n190,351,10.5\n190,352,10.0\n190,353,9.5\n190,354,9.0\n190,355,8.5\n190,356,8.0\n190,357,7.5\n190,358,7.0\n190,359,6.5\n190,360,6.0\n190,361,5.5\n190,362,5.0\n190,363,4.5\n190,364,4.0\n190,365,3.5\n190,366,4.0\n190,367,4.5\n190,368,5.0\n190,369,5.5\n190,370,6.0\n190,371,6.5\n190,372,7.0\n190,373,7.5\n190,374,8.0\n190,375,11.5\n190,376,11.0\n190,377,10.5\n190,378,10.0\n190,379,9.5\n190,380,9.0\n190,381,8.5\n190,382,8.0\n190,383,7.5\n190,384,7.0\n190,385,6.5\n190,386,6.0\n190,387,5.5\n190,388,5.0\n190,389,4.5\n190,390,4.0\n190,391,4.5\n190,392,5.0\n190,393,5.5\n190,394,6.0\n190,395,6.5\n190,396,7.0\n190,397,7.5\n190,398,8.0\n190,399,8.5\n190,400,12.0\n190,401,11.5\n190,402,11.0\n190,403,10.5\n190,404,10.0\n190,405,9.5\n190,406,9.0\n190,407,8.5\n190,408,8.0\n190,409,7.5\n190,410,7.0\n190,411,6.5\n190,412,6.0\n190,413,5.5\n190,414,5.0\n190,415,4.5\n190,416,5.0\n190,417,5.5\n190,418,6.0\n190,419,6.5\n190,420,7.0\n190,421,7.5\n190,422,8.0\n190,423,8.5\n190,424,9.0\n190,425,12.5\n190,426,12.0\n190,427,11.5\n190,428,11.0\n190,429,10.5\n190,430,10.0\n190,431,9.5\n190,432,9.0\n190,433,8.5\n190,434,8.0\n190,435,7.5\n190,436,7.0\n190,437,6.5\n190,438,6.0\n190,439,5.5\n190,440,5.0\n190,441,5.5\n190,442,6.0\n190,443,6.5\n190,444,7.0\n190,445,7.5\n190,446,8.0\n190,447,8.5\n190,448,9.0\n190,449,9.5\n190,450,13.0\n190,451,12.5\n190,452,12.0\n190,453,11.5\n190,454,11.0\n190,455,10.5\n190,456,10.0\n190,457,9.5\n190,458,9.0\n190,459,8.5\n190,460,8.0\n190,461,7.5\n190,462,7.0\n190,463,6.5\n190,464,6.0\n190,465,5.5\n190,466,6.0\n190,467,6.5\n190,468,7.0\n190,469,7.5\n190,470,8.0\n190,471,8.5\n190,472,9.0\n190,473,9.5\n190,474,10.0\n190,475,13.5\n190,476,13.0\n190,477,12.5\n190,478,12.0\n190,479,11.5\n190,480,11.0\n190,481,10.5\n190,482,10.0\n190,483,9.5\n190,484,9.0\n190,485,8.5\n190,486,8.0\n190,487,7.5\n190,488,7.0\n190,489,6.5\n190,490,6.0\n190,491,6.5\n190,492,7.0\n190,493,7.5\n190,494,8.0\n190,495,8.5\n190,496,9.0\n190,497,9.5\n190,498,10.0\n190,499,10.5\n190,500,14.0\n190,501,13.5\n190,502,13.0\n190,503,12.5\n190,504,12.0\n190,505,11.5\n190,506,11.0\n190,507,10.5\n190,508,10.0\n190,509,9.5\n190,510,9.0\n190,511,8.5\n190,512,8.0\n190,513,7.5\n190,514,7.0\n190,515,6.5\n190,516,7.0\n190,517,7.5\n190,518,8.0\n190,519,8.5\n190,520,9.0\n190,521,9.5\n190,522,10.0\n190,523,10.5\n190,524,11.0\n190,525,14.5\n190,526,14.0\n190,527,13.5\n190,528,13.0\n190,529,12.5\n190,530,12.0\n190,531,11.5\n190,532,11.0\n190,533,10.5\n190,534,10.0\n190,535,9.5\n190,536,9.0\n190,537,8.5\n190,538,8.0\n190,539,7.5\n190,540,7.0\n190,541,7.5\n190,542,8.0\n190,543,8.5\n190,544,9.0\n190,545,9.5\n190,546,10.0\n190,547,10.5\n190,548,11.0\n190,549,11.5\n190,550,15.0\n190,551,14.5\n190,552,14.0\n190,553,13.5\n190,554,13.0\n190,555,12.5\n190,556,12.0\n190,557,11.5\n190,558,11.0\n190,559,10.5\n190,560,10.0\n190,561,9.5\n190,562,9.0\n190,563,8.5\n190,564,8.0\n190,565,7.5\n190,566,8.0\n190,567,8.5\n190,568,9.0\n190,569,9.5\n190,570,10.0\n190,571,10.5\n190,572,11.0\n190,573,11.5\n190,574,12.0\n190,575,15.5\n190,576,15.0\n190,577,14.5\n190,578,14.0\n190,579,13.5\n190,580,13.0\n190,581,12.5\n190,582,12.0\n190,583,11.5\n190,584,11.0\n190,585,10.5\n190,586,10.0\n190,587,9.5\n190,588,9.0\n190,589,8.5\n190,590,8.0\n190,591,8.5\n190,592,9.0\n190,593,9.5\n190,594,10.0\n190,595,10.5\n190,596,11.0\n190,597,11.5\n190,598,12.0\n190,599,12.5\n190,600,16.0\n190,601,15.5\n190,602,15.0\n190,603,14.5\n190,604,14.0\n190,605,13.5\n190,606,13.0\n190,607,12.5\n190,608,12.0\n190,609,11.5\n190,610,11.0\n190,611,10.5\n190,612,10.0\n190,613,9.5\n190,614,9.0\n190,615,8.5\n190,616,9.0\n190,617,9.5\n190,618,10.0\n190,619,10.5\n190,620,11.0\n190,621,11.5\n190,622,12.0\n190,623,12.5\n190,624,13.0\n191,0,11.5\n191,1,11.0\n191,2,10.5\n191,3,10.0\n191,4,9.5\n191,5,9.0\n191,6,8.5\n191,7,8.0\n191,8,7.5\n191,9,7.0\n191,10,6.5\n191,11,6.0\n191,12,5.5\n191,13,5.0\n191,14,4.5\n191,15,4.0\n191,16,3.5\n191,17,4.0\n191,18,4.5\n191,19,5.0\n191,20,5.5\n191,21,6.0\n191,22,6.5\n191,23,7.0\n191,24,7.5\n191,25,11.0\n191,26,10.5\n191,27,10.0\n191,28,9.5\n191,29,9.0\n191,30,8.5\n191,31,8.0\n191,32,7.5\n191,33,7.0\n191,34,6.5\n191,35,6.0\n191,36,5.5\n191,37,5.0\n191,38,4.5\n191,39,4.0\n191,40,3.5\n191,41,3.0\n191,42,3.5\n191,43,4.0\n191,44,4.5\n191,45,5.0\n191,46,5.5\n191,47,6.0\n191,48,6.5\n191,49,7.0\n191,50,10.5\n191,51,10.0\n191,52,9.5\n191,53,9.0\n191,54,8.5\n191,55,8.0\n191,56,7.5\n191,57,7.0\n191,58,6.5\n191,59,6.0\n191,60,5.5\n191,61,5.0\n191,62,4.5\n191,63,4.0\n191,64,3.5\n191,65,3.0\n191,66,2.5\n191,67,3.0\n191,68,3.5\n191,69,4.0\n191,70,4.5\n191,71,5.0\n191,72,5.5\n191,73,6.0\n191,74,6.5\n191,75,10.0\n191,76,9.5\n191,77,9.0\n191,78,8.5\n191,79,8.0\n191,80,7.5\n191,81,7.0\n191,82,6.5\n191,83,6.0\n191,84,5.5\n191,85,5.0\n191,86,4.5\n191,87,4.0\n191,88,3.5\n191,89,3.0\n191,90,2.5\n191,91,2.0\n191,92,2.5\n191,93,3.0\n191,94,3.5\n191,95,4.0\n191,96,4.5\n191,97,5.0\n191,98,5.5\n191,99,6.0\n191,100,9.5\n191,101,9.0\n191,102,8.5\n191,103,8.0\n191,104,7.5\n191,105,7.0\n191,106,6.5\n191,107,6.0\n191,108,5.5\n191,109,5.0\n191,110,4.5\n191,111,4.0\n191,112,3.5\n191,113,3.0\n191,114,2.5\n191,115,2.0\n191,116,1.5\n191,117,2.0\n191,118,2.5\n191,119,3.0\n191,120,3.5\n191,121,4.0\n191,122,4.5\n191,123,5.0\n191,124,5.5\n191,125,9.0\n191,126,8.5\n191,127,8.0\n191,128,7.5\n191,129,7.0\n191,130,6.5\n191,131,6.0\n191,132,5.5\n191,133,5.0\n191,134,4.5\n191,135,4.0\n191,136,3.5\n191,137,3.0\n191,138,2.5\n191,139,2.0\n191,140,1.5\n191,141,1.0\n191,142,1.5\n191,143,2.0\n191,144,2.5\n191,145,3.0\n191,146,3.5\n191,147,4.0\n191,148,4.5\n191,149,5.0\n191,150,8.5\n191,151,8.0\n191,152,7.5\n191,153,7.0\n191,154,6.5\n191,155,6.0\n191,156,5.5\n191,157,5.0\n191,158,4.5\n191,159,4.0\n191,160,3.5\n191,161,3.0\n191,162,2.5\n191,163,2.0\n191,164,1.5\n191,165,1.0\n191,166,0.5\n191,167,1.0\n191,168,1.5\n191,169,2.0\n191,170,2.5\n191,171,3.0\n191,172,3.5\n191,173,4.0\n191,174,4.5\n191,175,8.0\n191,176,7.5\n191,177,7.0\n191,178,6.5\n191,179,6.0\n191,180,5.5\n191,181,5.0\n191,182,4.5\n191,183,4.0\n191,184,3.5\n191,185,3.0\n191,186,2.5\n191,187,2.0\n191,188,1.5\n191,189,1.0\n191,190,0.5\n191,191,0\n191,192,0.5\n191,193,1.0\n191,194,1.5\n191,195,2.0\n191,196,2.5\n191,197,3.0\n191,198,3.5\n191,199,4.0\n191,200,8.5\n191,201,8.0\n191,202,7.5\n191,203,7.0\n191,204,6.5\n191,205,6.0\n191,206,5.5\n191,207,5.0\n191,208,4.5\n191,209,4.0\n191,210,3.5\n191,211,3.0\n191,212,2.5\n191,213,2.0\n191,214,1.5\n191,215,1.0\n191,216,0.5\n191,217,1.0\n191,218,1.5\n191,219,2.0\n191,220,2.5\n191,221,3.0\n191,222,3.5\n191,223,4.0\n191,224,4.5\n191,225,9.0\n191,226,8.5\n191,227,8.0\n191,228,7.5\n191,229,7.0\n191,230,6.5\n191,231,6.0\n191,232,5.5\n191,233,5.0\n191,234,4.5\n191,235,4.0\n191,236,3.5\n191,237,3.0\n191,238,2.5\n191,239,2.0\n191,240,1.5\n191,241,1.0\n191,242,1.5\n191,243,2.0\n191,244,2.5\n191,245,3.0\n191,246,3.5\n191,247,4.0\n191,248,4.5\n191,249,5.0\n191,250,9.5\n191,251,9.0\n191,252,8.5\n191,253,8.0\n191,254,7.5\n191,255,7.0\n191,256,6.5\n191,257,6.0\n191,258,5.5\n191,259,5.0\n191,260,4.5\n191,261,4.0\n191,262,3.5\n191,263,3.0\n191,264,2.5\n191,265,2.0\n191,266,1.5\n191,267,2.0\n191,268,2.5\n191,269,3.0\n191,270,3.5\n191,271,4.0\n191,272,4.5\n191,273,5.0\n191,274,5.5\n191,275,10.0\n191,276,9.5\n191,277,9.0\n191,278,8.5\n191,279,8.0\n191,280,7.5\n191,281,7.0\n191,282,6.5\n191,283,6.0\n191,284,5.5\n191,285,5.0\n191,286,4.5\n191,287,4.0\n191,288,3.5\n191,289,3.0\n191,290,2.5\n191,291,2.0\n191,292,2.5\n191,293,3.0\n191,294,3.5\n191,295,4.0\n191,296,4.5\n191,297,5.0\n191,298,5.5\n191,299,6.0\n191,300,10.5\n191,301,10.0\n191,302,9.5\n191,303,9.0\n191,304,8.5\n191,305,8.0\n191,306,7.5\n191,307,7.0\n191,308,6.5\n191,309,6.0\n191,310,5.5\n191,311,5.0\n191,312,4.5\n191,313,4.0\n191,314,3.5\n191,315,3.0\n191,316,2.5\n191,317,3.0\n191,318,3.5\n191,319,4.0\n191,320,4.5\n191,321,5.0\n191,322,5.5\n191,323,6.0\n191,324,6.5\n191,325,11.0\n191,326,10.5\n191,327,10.0\n191,328,9.5\n191,329,9.0\n191,330,8.5\n191,331,8.0\n191,332,7.5\n191,333,7.0\n191,334,6.5\n191,335,6.0\n191,336,5.5\n191,337,5.0\n191,338,4.5\n191,339,4.0\n191,340,3.5\n191,341,3.0\n191,342,3.5\n191,343,4.0\n191,344,4.5\n191,345,5.0\n191,346,5.5\n191,347,6.0\n191,348,6.5\n191,349,7.0\n191,350,11.5\n191,351,11.0\n191,352,10.5\n191,353,10.0\n191,354,9.5\n191,355,9.0\n191,356,8.5\n191,357,8.0\n191,358,7.5\n191,359,7.0\n191,360,6.5\n191,361,6.0\n191,362,5.5\n191,363,5.0\n191,364,4.5\n191,365,4.0\n191,366,3.5\n191,367,4.0\n191,368,4.5\n191,369,5.0\n191,370,5.5\n191,371,6.0\n191,372,6.5\n191,373,7.0\n191,374,7.5\n191,375,12.0\n191,376,11.5\n191,377,11.0\n191,378,10.5\n191,379,10.0\n191,380,9.5\n191,381,9.0\n191,382,8.5\n191,383,8.0\n191,384,7.5\n191,385,7.0\n191,386,6.5\n191,387,6.0\n191,388,5.5\n191,389,5.0\n191,390,4.5\n191,391,4.0\n191,392,4.5\n191,393,5.0\n191,394,5.5\n191,395,6.0\n191,396,6.5\n191,397,7.0\n191,398,7.5\n191,399,8.0\n191,400,12.5\n191,401,12.0\n191,402,11.5\n191,403,11.0\n191,404,10.5\n191,405,10.0\n191,406,9.5\n191,407,9.0\n191,408,8.5\n191,409,8.0\n191,410,7.5\n191,411,7.0\n191,412,6.5\n191,413,6.0\n191,414,5.5\n191,415,5.0\n191,416,4.5\n191,417,5.0\n191,418,5.5\n191,419,6.0\n191,420,6.5\n191,421,7.0\n191,422,7.5\n191,423,8.0\n191,424,8.5\n191,425,13.0\n191,426,12.5\n191,427,12.0\n191,428,11.5\n191,429,11.0\n191,430,10.5\n191,431,10.0\n191,432,9.5\n191,433,9.0\n191,434,8.5\n191,435,8.0\n191,436,7.5\n191,437,7.0\n191,438,6.5\n191,439,6.0\n191,440,5.5\n191,441,5.0\n191,442,5.5\n191,443,6.0\n191,444,6.5\n191,445,7.0\n191,446,7.5\n191,447,8.0\n191,448,8.5\n191,449,9.0\n191,450,13.5\n191,451,13.0\n191,452,12.5\n191,453,12.0\n191,454,11.5\n191,455,11.0\n191,456,10.5\n191,457,10.0\n191,458,9.5\n191,459,9.0\n191,460,8.5\n191,461,8.0\n191,462,7.5\n191,463,7.0\n191,464,6.5\n191,465,6.0\n191,466,5.5\n191,467,6.0\n191,468,6.5\n191,469,7.0\n191,470,7.5\n191,471,8.0\n191,472,8.5\n191,473,9.0\n191,474,9.5\n191,475,14.0\n191,476,13.5\n191,477,13.0\n191,478,12.5\n191,479,12.0\n191,480,11.5\n191,481,11.0\n191,482,10.5\n191,483,10.0\n191,484,9.5\n191,485,9.0\n191,486,8.5\n191,487,8.0\n191,488,7.5\n191,489,7.0\n191,490,6.5\n191,491,6.0\n191,492,6.5\n191,493,7.0\n191,494,7.5\n191,495,8.0\n191,496,8.5\n191,497,9.0\n191,498,9.5\n191,499,10.0\n191,500,14.5\n191,501,14.0\n191,502,13.5\n191,503,13.0\n191,504,12.5\n191,505,12.0\n191,506,11.5\n191,507,11.0\n191,508,10.5\n191,509,10.0\n191,510,9.5\n191,511,9.0\n191,512,8.5\n191,513,8.0\n191,514,7.5\n191,515,7.0\n191,516,6.5\n191,517,7.0\n191,518,7.5\n191,519,8.0\n191,520,8.5\n191,521,9.0\n191,522,9.5\n191,523,10.0\n191,524,10.5\n191,525,15.0\n191,526,14.5\n191,527,14.0\n191,528,13.5\n191,529,13.0\n191,530,12.5\n191,531,12.0\n191,532,11.5\n191,533,11.0\n191,534,10.5\n191,535,10.0\n191,536,9.5\n191,537,9.0\n191,538,8.5\n191,539,8.0\n191,540,7.5\n191,541,7.0\n191,542,7.5\n191,543,8.0\n191,544,8.5\n191,545,9.0\n191,546,9.5\n191,547,10.0\n191,548,10.5\n191,549,11.0\n191,550,15.5\n191,551,15.0\n191,552,14.5\n191,553,14.0\n191,554,13.5\n191,555,13.0\n191,556,12.5\n191,557,12.0\n191,558,11.5\n191,559,11.0\n191,560,10.5\n191,561,10.0\n191,562,9.5\n191,563,9.0\n191,564,8.5\n191,565,8.0\n191,566,7.5\n191,567,8.0\n191,568,8.5\n191,569,9.0\n191,570,9.5\n191,571,10.0\n191,572,10.5\n191,573,11.0\n191,574,11.5\n191,575,16.0\n191,576,15.5\n191,577,15.0\n191,578,14.5\n191,579,14.0\n191,580,13.5\n191,581,13.0\n191,582,12.5\n191,583,12.0\n191,584,11.5\n191,585,11.0\n191,586,10.5\n191,587,10.0\n191,588,9.5\n191,589,9.0\n191,590,8.5\n191,591,8.0\n191,592,8.5\n191,593,9.0\n191,594,9.5\n191,595,10.0\n191,596,10.5\n191,597,11.0\n191,598,11.5\n191,599,12.0\n191,600,16.5\n191,601,16.0\n191,602,15.5\n191,603,15.0\n191,604,14.5\n191,605,14.0\n191,606,13.5\n191,607,13.0\n191,608,12.5\n191,609,12.0\n191,610,11.5\n191,611,11.0\n191,612,10.5\n191,613,10.0\n191,614,9.5\n191,615,9.0\n191,616,8.5\n191,617,9.0\n191,618,9.5\n191,619,10.0\n191,620,10.5\n191,621,11.0\n191,622,11.5\n191,623,12.0\n191,624,12.5\n192,0,12.0\n192,1,11.5\n192,2,11.0\n192,3,10.5\n192,4,10.0\n192,5,9.5\n192,6,9.0\n192,7,8.5\n192,8,8.0\n192,9,7.5\n192,10,7.0\n192,11,6.5\n192,12,6.0\n192,13,5.5\n192,14,5.0\n192,15,4.5\n192,16,4.0\n192,17,3.5\n192,18,4.0\n192,19,4.5\n192,20,5.0\n192,21,5.5\n192,22,6.0\n192,23,6.5\n192,24,7.0\n192,25,11.5\n192,26,11.0\n192,27,10.5\n192,28,10.0\n192,29,9.5\n192,30,9.0\n192,31,8.5\n192,32,8.0\n192,33,7.5\n192,34,7.0\n192,35,6.5\n192,36,6.0\n192,37,5.5\n192,38,5.0\n192,39,4.5\n192,40,4.0\n192,41,3.5\n192,42,3.0\n192,43,3.5\n192,44,4.0\n192,45,4.5\n192,46,5.0\n192,47,5.5\n192,48,6.0\n192,49,6.5\n192,50,11.0\n192,51,10.5\n192,52,10.0\n192,53,9.5\n192,54,9.0\n192,55,8.5\n192,56,8.0\n192,57,7.5\n192,58,7.0\n192,59,6.5\n192,60,6.0\n192,61,5.5\n192,62,5.0\n192,63,4.5\n192,64,4.0\n192,65,3.5\n192,66,3.0\n192,67,2.5\n192,68,3.0\n192,69,3.5\n192,70,4.0\n192,71,4.5\n192,72,5.0\n192,73,5.5\n192,74,6.0\n192,75,10.5\n192,76,10.0\n192,77,9.5\n192,78,9.0\n192,79,8.5\n192,80,8.0\n192,81,7.5\n192,82,7.0\n192,83,6.5\n192,84,6.0\n192,85,5.5\n192,86,5.0\n192,87,4.5\n192,88,4.0\n192,89,3.5\n192,90,3.0\n192,91,2.5\n192,92,2.0\n192,93,2.5\n192,94,3.0\n192,95,3.5\n192,96,4.0\n192,97,4.5\n192,98,5.0\n192,99,5.5\n192,100,10.0\n192,101,9.5\n192,102,9.0\n192,103,8.5\n192,104,8.0\n192,105,7.5\n192,106,7.0\n192,107,6.5\n192,108,6.0\n192,109,5.5\n192,110,5.0\n192,111,4.5\n192,112,4.0\n192,113,3.5\n192,114,3.0\n192,115,2.5\n192,116,2.0\n192,117,1.5\n192,118,2.0\n192,119,2.5\n192,120,3.0\n192,121,3.5\n192,122,4.0\n192,123,4.5\n192,124,5.0\n192,125,9.5\n192,126,9.0\n192,127,8.5\n192,128,8.0\n192,129,7.5\n192,130,7.0\n192,131,6.5\n192,132,6.0\n192,133,5.5\n192,134,5.0\n192,135,4.5\n192,136,4.0\n192,137,3.5\n192,138,3.0\n192,139,2.5\n192,140,2.0\n192,141,1.5\n192,142,1.0\n192,143,1.5\n192,144,2.0\n192,145,2.5\n192,146,3.0\n192,147,3.5\n192,148,4.0\n192,149,4.5\n192,150,9.0\n192,151,8.5\n192,152,8.0\n192,153,7.5\n192,154,7.0\n192,155,6.5\n192,156,6.0\n192,157,5.5\n192,158,5.0\n192,159,4.5\n192,160,4.0\n192,161,3.5\n192,162,3.0\n192,163,2.5\n192,164,2.0\n192,165,1.5\n192,166,1.0\n192,167,0.5\n192,168,1.0\n192,169,1.5\n192,170,2.0\n192,171,2.5\n192,172,3.0\n192,173,3.5\n192,174,4.0\n192,175,8.5\n192,176,8.0\n192,177,7.5\n192,178,7.0\n192,179,6.5\n192,180,6.0\n192,181,5.5\n192,182,5.0\n192,183,4.5\n192,184,4.0\n192,185,3.5\n192,186,3.0\n192,187,2.5\n192,188,2.0\n192,189,1.5\n192,190,1.0\n192,191,0.5\n192,192,0\n192,193,0.5\n192,194,1.0\n192,195,1.5\n192,196,2.0\n192,197,2.5\n192,198,3.0\n192,199,3.5\n192,200,9.0\n192,201,8.5\n192,202,8.0\n192,203,7.5\n192,204,7.0\n192,205,6.5\n192,206,6.0\n192,207,5.5\n192,208,5.0\n192,209,4.5\n192,210,4.0\n192,211,3.5\n192,212,3.0\n192,213,2.5\n192,214,2.0\n192,215,1.5\n192,216,1.0\n192,217,0.5\n192,218,1.0\n192,219,1.5\n192,220,2.0\n192,221,2.5\n192,222,3.0\n192,223,3.5\n192,224,4.0\n192,225,9.5\n192,226,9.0\n192,227,8.5\n192,228,8.0\n192,229,7.5\n192,230,7.0\n192,231,6.5\n192,232,6.0\n192,233,5.5\n192,234,5.0\n192,235,4.5\n192,236,4.0\n192,237,3.5\n192,238,3.0\n192,239,2.5\n192,240,2.0\n192,241,1.5\n192,242,1.0\n192,243,1.5\n192,244,2.0\n192,245,2.5\n192,246,3.0\n192,247,3.5\n192,248,4.0\n192,249,4.5\n192,250,10.0\n192,251,9.5\n192,252,9.0\n192,253,8.5\n192,254,8.0\n192,255,7.5\n192,256,7.0\n192,257,6.5\n192,258,6.0\n192,259,5.5\n192,260,5.0\n192,261,4.5\n192,262,4.0\n192,263,3.5\n192,264,3.0\n192,265,2.5\n192,266,2.0\n192,267,1.5\n192,268,2.0\n192,269,2.5\n192,270,3.0\n192,271,3.5\n192,272,4.0\n192,273,4.5\n192,274,5.0\n192,275,10.5\n192,276,10.0\n192,277,9.5\n192,278,9.0\n192,279,8.5\n192,280,8.0\n192,281,7.5\n192,282,7.0\n192,283,6.5\n192,284,6.0\n192,285,5.5\n192,286,5.0\n192,287,4.5\n192,288,4.0\n192,289,3.5\n192,290,3.0\n192,291,2.5\n192,292,2.0\n192,293,2.5\n192,294,3.0\n192,295,3.5\n192,296,4.0\n192,297,4.5\n192,298,5.0\n192,299,5.5\n192,300,11.0\n192,301,10.5\n192,302,10.0\n192,303,9.5\n192,304,9.0\n192,305,8.5\n192,306,8.0\n192,307,7.5\n192,308,7.0\n192,309,6.5\n192,310,6.0\n192,311,5.5\n192,312,5.0\n192,313,4.5\n192,314,4.0\n192,315,3.5\n192,316,3.0\n192,317,2.5\n192,318,3.0\n192,319,3.5\n192,320,4.0\n192,321,4.5\n192,322,5.0\n192,323,5.5\n192,324,6.0\n192,325,11.5\n192,326,11.0\n192,327,10.5\n192,328,10.0\n192,329,9.5\n192,330,9.0\n192,331,8.5\n192,332,8.0\n192,333,7.5\n192,334,7.0\n192,335,6.5\n192,336,6.0\n192,337,5.5\n192,338,5.0\n192,339,4.5\n192,340,4.0\n192,341,3.5\n192,342,3.0\n192,343,3.5\n192,344,4.0\n192,345,4.5\n192,346,5.0\n192,347,5.5\n192,348,6.0\n192,349,6.5\n192,350,12.0\n192,351,11.5\n192,352,11.0\n192,353,10.5\n192,354,10.0\n192,355,9.5\n192,356,9.0\n192,357,8.5\n192,358,8.0\n192,359,7.5\n192,360,7.0\n192,361,6.5\n192,362,6.0\n192,363,5.5\n192,364,5.0\n192,365,4.5\n192,366,4.0\n192,367,3.5\n192,368,4.0\n192,369,4.5\n192,370,5.0\n192,371,5.5\n192,372,6.0\n192,373,6.5\n192,374,7.0\n192,375,12.5\n192,376,12.0\n192,377,11.5\n192,378,11.0\n192,379,10.5\n192,380,10.0\n192,381,9.5\n192,382,9.0\n192,383,8.5\n192,384,8.0\n192,385,7.5\n192,386,7.0\n192,387,6.5\n192,388,6.0\n192,389,5.5\n192,390,5.0\n192,391,4.5\n192,392,4.0\n192,393,4.5\n192,394,5.0\n192,395,5.5\n192,396,6.0\n192,397,6.5\n192,398,7.0\n192,399,7.5\n192,400,13.0\n192,401,12.5\n192,402,12.0\n192,403,11.5\n192,404,11.0\n192,405,10.5\n192,406,10.0\n192,407,9.5\n192,408,9.0\n192,409,8.5\n192,410,8.0\n192,411,7.5\n192,412,7.0\n192,413,6.5\n192,414,6.0\n192,415,5.5\n192,416,5.0\n192,417,4.5\n192,418,5.0\n192,419,5.5\n192,420,6.0\n192,421,6.5\n192,422,7.0\n192,423,7.5\n192,424,8.0\n192,425,13.5\n192,426,13.0\n192,427,12.5\n192,428,12.0\n192,429,11.5\n192,430,11.0\n192,431,10.5\n192,432,10.0\n192,433,9.5\n192,434,9.0\n192,435,8.5\n192,436,8.0\n192,437,7.5\n192,438,7.0\n192,439,6.5\n192,440,6.0\n192,441,5.5\n192,442,5.0\n192,443,5.5\n192,444,6.0\n192,445,6.5\n192,446,7.0\n192,447,7.5\n192,448,8.0\n192,449,8.5\n192,450,14.0\n192,451,13.5\n192,452,13.0\n192,453,12.5\n192,454,12.0\n192,455,11.5\n192,456,11.0\n192,457,10.5\n192,458,10.0\n192,459,9.5\n192,460,9.0\n192,461,8.5\n192,462,8.0\n192,463,7.5\n192,464,7.0\n192,465,6.5\n192,466,6.0\n192,467,5.5\n192,468,6.0\n192,469,6.5\n192,470,7.0\n192,471,7.5\n192,472,8.0\n192,473,8.5\n192,474,9.0\n192,475,14.5\n192,476,14.0\n192,477,13.5\n192,478,13.0\n192,479,12.5\n192,480,12.0\n192,481,11.5\n192,482,11.0\n192,483,10.5\n192,484,10.0\n192,485,9.5\n192,486,9.0\n192,487,8.5\n192,488,8.0\n192,489,7.5\n192,490,7.0\n192,491,6.5\n192,492,6.0\n192,493,6.5\n192,494,7.0\n192,495,7.5\n192,496,8.0\n192,497,8.5\n192,498,9.0\n192,499,9.5\n192,500,15.0\n192,501,14.5\n192,502,14.0\n192,503,13.5\n192,504,13.0\n192,505,12.5\n192,506,12.0\n192,507,11.5\n192,508,11.0\n192,509,10.5\n192,510,10.0\n192,511,9.5\n192,512,9.0\n192,513,8.5\n192,514,8.0\n192,515,7.5\n192,516,7.0\n192,517,6.5\n192,518,7.0\n192,519,7.5\n192,520,8.0\n192,521,8.5\n192,522,9.0\n192,523,9.5\n192,524,10.0\n192,525,15.5\n192,526,15.0\n192,527,14.5\n192,528,14.0\n192,529,13.5\n192,530,13.0\n192,531,12.5\n192,532,12.0\n192,533,11.5\n192,534,11.0\n192,535,10.5\n192,536,10.0\n192,537,9.5\n192,538,9.0\n192,539,8.5\n192,540,8.0\n192,541,7.5\n192,542,7.0\n192,543,7.5\n192,544,8.0\n192,545,8.5\n192,546,9.0\n192,547,9.5\n192,548,10.0\n192,549,10.5\n192,550,16.0\n192,551,15.5\n192,552,15.0\n192,553,14.5\n192,554,14.0\n192,555,13.5\n192,556,13.0\n192,557,12.5\n192,558,12.0\n192,559,11.5\n192,560,11.0\n192,561,10.5\n192,562,10.0\n192,563,9.5\n192,564,9.0\n192,565,8.5\n192,566,8.0\n192,567,7.5\n192,568,8.0\n192,569,8.5\n192,570,9.0\n192,571,9.5\n192,572,10.0\n192,573,10.5\n192,574,11.0\n192,575,16.5\n192,576,16.0\n192,577,15.5\n192,578,15.0\n192,579,14.5\n192,580,14.0\n192,581,13.5\n192,582,13.0\n192,583,12.5\n192,584,12.0\n192,585,11.5\n192,586,11.0\n192,587,10.5\n192,588,10.0\n192,589,9.5\n192,590,9.0\n192,591,8.5\n192,592,8.0\n192,593,8.5\n192,594,9.0\n192,595,9.5\n192,596,10.0\n192,597,10.5\n192,598,11.0\n192,599,11.5\n192,600,17.0\n192,601,16.5\n192,602,16.0\n192,603,15.5\n192,604,15.0\n192,605,14.5\n192,606,14.0\n192,607,13.5\n192,608,13.0\n192,609,12.5\n192,610,12.0\n192,611,11.5\n192,612,11.0\n192,613,10.5\n192,614,10.0\n192,615,9.5\n192,616,9.0\n192,617,8.5\n192,618,9.0\n192,619,9.5\n192,620,10.0\n192,621,10.5\n192,622,11.0\n192,623,11.5\n192,624,12.0\n193,0,12.5\n193,1,12.0\n193,2,11.5\n193,3,11.0\n193,4,10.5\n193,5,10.0\n193,6,9.5\n193,7,9.0\n193,8,8.5\n193,9,8.0\n193,10,7.5\n193,11,7.0\n193,12,6.5\n193,13,6.0\n193,14,5.5\n193,15,5.0\n193,16,4.5\n193,17,4.0\n193,18,3.5\n193,19,4.0\n193,20,4.5\n193,21,5.0\n193,22,5.5\n193,23,6.0\n193,24,6.5\n193,25,12.0\n193,26,11.5\n193,27,11.0\n193,28,10.5\n193,29,10.0\n193,30,9.5\n193,31,9.0\n193,32,8.5\n193,33,8.0\n193,34,7.5\n193,35,7.0\n193,36,6.5\n193,37,6.0\n193,38,5.5\n193,39,5.0\n193,40,4.5\n193,41,4.0\n193,42,3.5\n193,43,3.0\n193,44,3.5\n193,45,4.0\n193,46,4.5\n193,47,5.0\n193,48,5.5\n193,49,6.0\n193,50,11.5\n193,51,11.0\n193,52,10.5\n193,53,10.0\n193,54,9.5\n193,55,9.0\n193,56,8.5\n193,57,8.0\n193,58,7.5\n193,59,7.0\n193,60,6.5\n193,61,6.0\n193,62,5.5\n193,63,5.0\n193,64,4.5\n193,65,4.0\n193,66,3.5\n193,67,3.0\n193,68,2.5\n193,69,3.0\n193,70,3.5\n193,71,4.0\n193,72,4.5\n193,73,5.0\n193,74,5.5\n193,75,11.0\n193,76,10.5\n193,77,10.0\n193,78,9.5\n193,79,9.0\n193,80,8.5\n193,81,8.0\n193,82,7.5\n193,83,7.0\n193,84,6.5\n193,85,6.0\n193,86,5.5\n193,87,5.0\n193,88,4.5\n193,89,4.0\n193,90,3.5\n193,91,3.0\n193,92,2.5\n193,93,2.0\n193,94,2.5\n193,95,3.0\n193,96,3.5\n193,97,4.0\n193,98,4.5\n193,99,5.0\n193,100,10.5\n193,101,10.0\n193,102,9.5\n193,103,9.0\n193,104,8.5\n193,105,8.0\n193,106,7.5\n193,107,7.0\n193,108,6.5\n193,109,6.0\n193,110,5.5\n193,111,5.0\n193,112,4.5\n193,113,4.0\n193,114,3.5\n193,115,3.0\n193,116,2.5\n193,117,2.0\n193,118,1.5\n193,119,2.0\n193,120,2.5\n193,121,3.0\n193,122,3.5\n193,123,4.0\n193,124,4.5\n193,125,10.0\n193,126,9.5\n193,127,9.0\n193,128,8.5\n193,129,8.0\n193,130,7.5\n193,131,7.0\n193,132,6.5\n193,133,6.0\n193,134,5.5\n193,135,5.0\n193,136,4.5\n193,137,4.0\n193,138,3.5\n193,139,3.0\n193,140,2.5\n193,141,2.0\n193,142,1.5\n193,143,1.0\n193,144,1.5\n193,145,2.0\n193,146,2.5\n193,147,3.0\n193,148,3.5\n193,149,4.0\n193,150,9.5\n193,151,9.0\n193,152,8.5\n193,153,8.0\n193,154,7.5\n193,155,7.0\n193,156,6.5\n193,157,6.0\n193,158,5.5\n193,159,5.0\n193,160,4.5\n193,161,4.0\n193,162,3.5\n193,163,3.0\n193,164,2.5\n193,165,2.0\n193,166,1.5\n193,167,1.0\n193,168,0.5\n193,169,1.0\n193,170,1.5\n193,171,2.0\n193,172,2.5\n193,173,3.0\n193,174,3.5\n193,175,9.0\n193,176,8.5\n193,177,8.0\n193,178,7.5\n193,179,7.0\n193,180,6.5\n193,181,6.0\n193,182,5.5\n193,183,5.0\n193,184,4.5\n193,185,4.0\n193,186,3.5\n193,187,3.0\n193,188,2.5\n193,189,2.0\n193,190,1.5\n193,191,1.0\n193,192,0.5\n193,193,0\n193,194,0.5\n193,195,1.0\n193,196,1.5\n193,197,2.0\n193,198,2.5\n193,199,3.0\n193,200,9.5\n193,201,9.0\n193,202,8.5\n193,203,8.0\n193,204,7.5\n193,205,7.0\n193,206,6.5\n193,207,6.0\n193,208,5.5\n193,209,5.0\n193,210,4.5\n193,211,4.0\n193,212,3.5\n193,213,3.0\n193,214,2.5\n193,215,2.0\n193,216,1.5\n193,217,1.0\n193,218,0.5\n193,219,1.0\n193,220,1.5\n193,221,2.0\n193,222,2.5\n193,223,3.0\n193,224,3.5\n193,225,10.0\n193,226,9.5\n193,227,9.0\n193,228,8.5\n193,229,8.0\n193,230,7.5\n193,231,7.0\n193,232,6.5\n193,233,6.0\n193,234,5.5\n193,235,5.0\n193,236,4.5\n193,237,4.0\n193,238,3.5\n193,239,3.0\n193,240,2.5\n193,241,2.0\n193,242,1.5\n193,243,1.0\n193,244,1.5\n193,245,2.0\n193,246,2.5\n193,247,3.0\n193,248,3.5\n193,249,4.0\n193,250,10.5\n193,251,10.0\n193,252,9.5\n193,253,9.0\n193,254,8.5\n193,255,8.0\n193,256,7.5\n193,257,7.0\n193,258,6.5\n193,259,6.0\n193,260,5.5\n193,261,5.0\n193,262,4.5\n193,263,4.0\n193,264,3.5\n193,265,3.0\n193,266,2.5\n193,267,2.0\n193,268,1.5\n193,269,2.0\n193,270,2.5\n193,271,3.0\n193,272,3.5\n193,273,4.0\n193,274,4.5\n193,275,11.0\n193,276,10.5\n193,277,10.0\n193,278,9.5\n193,279,9.0\n193,280,8.5\n193,281,8.0\n193,282,7.5\n193,283,7.0\n193,284,6.5\n193,285,6.0\n193,286,5.5\n193,287,5.0\n193,288,4.5\n193,289,4.0\n193,290,3.5\n193,291,3.0\n193,292,2.5\n193,293,2.0\n193,294,2.5\n193,295,3.0\n193,296,3.5\n193,297,4.0\n193,298,4.5\n193,299,5.0\n193,300,11.5\n193,301,11.0\n193,302,10.5\n193,303,10.0\n193,304,9.5\n193,305,9.0\n193,306,8.5\n193,307,8.0\n193,308,7.5\n193,309,7.0\n193,310,6.5\n193,311,6.0\n193,312,5.5\n193,313,5.0\n193,314,4.5\n193,315,4.0\n193,316,3.5\n193,317,3.0\n193,318,2.5\n193,319,3.0\n193,320,3.5\n193,321,4.0\n193,322,4.5\n193,323,5.0\n193,324,5.5\n193,325,12.0\n193,326,11.5\n193,327,11.0\n193,328,10.5\n193,329,10.0\n193,330,9.5\n193,331,9.0\n193,332,8.5\n193,333,8.0\n193,334,7.5\n193,335,7.0\n193,336,6.5\n193,337,6.0\n193,338,5.5\n193,339,5.0\n193,340,4.5\n193,341,4.0\n193,342,3.5\n193,343,3.0\n193,344,3.5\n193,345,4.0\n193,346,4.5\n193,347,5.0\n193,348,5.5\n193,349,6.0\n193,350,12.5\n193,351,12.0\n193,352,11.5\n193,353,11.0\n193,354,10.5\n193,355,10.0\n193,356,9.5\n193,357,9.0\n193,358,8.5\n193,359,8.0\n193,360,7.5\n193,361,7.0\n193,362,6.5\n193,363,6.0\n193,364,5.5\n193,365,5.0\n193,366,4.5\n193,367,4.0\n193,368,3.5\n193,369,4.0\n193,370,4.5\n193,371,5.0\n193,372,5.5\n193,373,6.0\n193,374,6.5\n193,375,13.0\n193,376,12.5\n193,377,12.0\n193,378,11.5\n193,379,11.0\n193,380,10.5\n193,381,10.0\n193,382,9.5\n193,383,9.0\n193,384,8.5\n193,385,8.0\n193,386,7.5\n193,387,7.0\n193,388,6.5\n193,389,6.0\n193,390,5.5\n193,391,5.0\n193,392,4.5\n193,393,4.0\n193,394,4.5\n193,395,5.0\n193,396,5.5\n193,397,6.0\n193,398,6.5\n193,399,7.0\n193,400,13.5\n193,401,13.0\n193,402,12.5\n193,403,12.0\n193,404,11.5\n193,405,11.0\n193,406,10.5\n193,407,10.0\n193,408,9.5\n193,409,9.0\n193,410,8.5\n193,411,8.0\n193,412,7.5\n193,413,7.0\n193,414,6.5\n193,415,6.0\n193,416,5.5\n193,417,5.0\n193,418,4.5\n193,419,5.0\n193,420,5.5\n193,421,6.0\n193,422,6.5\n193,423,7.0\n193,424,7.5\n193,425,14.0\n193,426,13.5\n193,427,13.0\n193,428,12.5\n193,429,12.0\n193,430,11.5\n193,431,11.0\n193,432,10.5\n193,433,10.0\n193,434,9.5\n193,435,9.0\n193,436,8.5\n193,437,8.0\n193,438,7.5\n193,439,7.0\n193,440,6.5\n193,441,6.0\n193,442,5.5\n193,443,5.0\n193,444,5.5\n193,445,6.0\n193,446,6.5\n193,447,7.0\n193,448,7.5\n193,449,8.0\n193,450,14.5\n193,451,14.0\n193,452,13.5\n193,453,13.0\n193,454,12.5\n193,455,12.0\n193,456,11.5\n193,457,11.0\n193,458,10.5\n193,459,10.0\n193,460,9.5\n193,461,9.0\n193,462,8.5\n193,463,8.0\n193,464,7.5\n193,465,7.0\n193,466,6.5\n193,467,6.0\n193,468,5.5\n193,469,6.0\n193,470,6.5\n193,471,7.0\n193,472,7.5\n193,473,8.0\n193,474,8.5\n193,475,15.0\n193,476,14.5\n193,477,14.0\n193,478,13.5\n193,479,13.0\n193,480,12.5\n193,481,12.0\n193,482,11.5\n193,483,11.0\n193,484,10.5\n193,485,10.0\n193,486,9.5\n193,487,9.0\n193,488,8.5\n193,489,8.0\n193,490,7.5\n193,491,7.0\n193,492,6.5\n193,493,6.0\n193,494,6.5\n193,495,7.0\n193,496,7.5\n193,497,8.0\n193,498,8.5\n193,499,9.0\n193,500,15.5\n193,501,15.0\n193,502,14.5\n193,503,14.0\n193,504,13.5\n193,505,13.0\n193,506,12.5\n193,507,12.0\n193,508,11.5\n193,509,11.0\n193,510,10.5\n193,511,10.0\n193,512,9.5\n193,513,9.0\n193,514,8.5\n193,515,8.0\n193,516,7.5\n193,517,7.0\n193,518,6.5\n193,519,7.0\n193,520,7.5\n193,521,8.0\n193,522,8.5\n193,523,9.0\n193,524,9.5\n193,525,16.0\n193,526,15.5\n193,527,15.0\n193,528,14.5\n193,529,14.0\n193,530,13.5\n193,531,13.0\n193,532,12.5\n193,533,12.0\n193,534,11.5\n193,535,11.0\n193,536,10.5\n193,537,10.0\n193,538,9.5\n193,539,9.0\n193,540,8.5\n193,541,8.0\n193,542,7.5\n193,543,7.0\n193,544,7.5\n193,545,8.0\n193,546,8.5\n193,547,9.0\n193,548,9.5\n193,549,10.0\n193,550,16.5\n193,551,16.0\n193,552,15.5\n193,553,15.0\n193,554,14.5\n193,555,14.0\n193,556,13.5\n193,557,13.0\n193,558,12.5\n193,559,12.0\n193,560,11.5\n193,561,11.0\n193,562,10.5\n193,563,10.0\n193,564,9.5\n193,565,9.0\n193,566,8.5\n193,567,8.0\n193,568,7.5\n193,569,8.0\n193,570,8.5\n193,571,9.0\n193,572,9.5\n193,573,10.0\n193,574,10.5\n193,575,17.0\n193,576,16.5\n193,577,16.0\n193,578,15.5\n193,579,15.0\n193,580,14.5\n193,581,14.0\n193,582,13.5\n193,583,13.0\n193,584,12.5\n193,585,12.0\n193,586,11.5\n193,587,11.0\n193,588,10.5\n193,589,10.0\n193,590,9.5\n193,591,9.0\n193,592,8.5\n193,593,8.0\n193,594,8.5\n193,595,9.0\n193,596,9.5\n193,597,10.0\n193,598,10.5\n193,599,11.0\n193,600,17.5\n193,601,17.0\n193,602,16.5\n193,603,16.0\n193,604,15.5\n193,605,15.0\n193,606,14.5\n193,607,14.0\n193,608,13.5\n193,609,13.0\n193,610,12.5\n193,611,12.0\n193,612,11.5\n193,613,11.0\n193,614,10.5\n193,615,10.0\n193,616,9.5\n193,617,9.0\n193,618,8.5\n193,619,9.0\n193,620,9.5\n193,621,10.0\n193,622,10.5\n193,623,11.0\n193,624,11.5\n194,0,13.0\n194,1,12.5\n194,2,12.0\n194,3,11.5\n194,4,11.0\n194,5,10.5\n194,6,10.0\n194,7,9.5\n194,8,9.0\n194,9,8.5\n194,10,8.0\n194,11,7.5\n194,12,7.0\n194,13,6.5\n194,14,6.0\n194,15,5.5\n194,16,5.0\n194,17,4.5\n194,18,4.0\n194,19,3.5\n194,20,4.0\n194,21,4.5\n194,22,5.0\n194,23,5.5\n194,24,6.0\n194,25,12.5\n194,26,12.0\n194,27,11.5\n194,28,11.0\n194,29,10.5\n194,30,10.0\n194,31,9.5\n194,32,9.0\n194,33,8.5\n194,34,8.0\n194,35,7.5\n194,36,7.0\n194,37,6.5\n194,38,6.0\n194,39,5.5\n194,40,5.0\n194,41,4.5\n194,42,4.0\n194,43,3.5\n194,44,3.0\n194,45,3.5\n194,46,4.0\n194,47,4.5\n194,48,5.0\n194,49,5.5\n194,50,12.0\n194,51,11.5\n194,52,11.0\n194,53,10.5\n194,54,10.0\n194,55,9.5\n194,56,9.0\n194,57,8.5\n194,58,8.0\n194,59,7.5\n194,60,7.0\n194,61,6.5\n194,62,6.0\n194,63,5.5\n194,64,5.0\n194,65,4.5\n194,66,4.0\n194,67,3.5\n194,68,3.0\n194,69,2.5\n194,70,3.0\n194,71,3.5\n194,72,4.0\n194,73,4.5\n194,74,5.0\n194,75,11.5\n194,76,11.0\n194,77,10.5\n194,78,10.0\n194,79,9.5\n194,80,9.0\n194,81,8.5\n194,82,8.0\n194,83,7.5\n194,84,7.0\n194,85,6.5\n194,86,6.0\n194,87,5.5\n194,88,5.0\n194,89,4.5\n194,90,4.0\n194,91,3.5\n194,92,3.0\n194,93,2.5\n194,94,2.0\n194,95,2.5\n194,96,3.0\n194,97,3.5\n194,98,4.0\n194,99,4.5\n194,100,11.0\n194,101,10.5\n194,102,10.0\n194,103,9.5\n194,104,9.0\n194,105,8.5\n194,106,8.0\n194,107,7.5\n194,108,7.0\n194,109,6.5\n194,110,6.0\n194,111,5.5\n194,112,5.0\n194,113,4.5\n194,114,4.0\n194,115,3.5\n194,116,3.0\n194,117,2.5\n194,118,2.0\n194,119,1.5\n194,120,2.0\n194,121,2.5\n194,122,3.0\n194,123,3.5\n194,124,4.0\n194,125,10.5\n194,126,10.0\n194,127,9.5\n194,128,9.0\n194,129,8.5\n194,130,8.0\n194,131,7.5\n194,132,7.0\n194,133,6.5\n194,134,6.0\n194,135,5.5\n194,136,5.0\n194,137,4.5\n194,138,4.0\n194,139,3.5\n194,140,3.0\n194,141,2.5\n194,142,2.0\n194,143,1.5\n194,144,1.0\n194,145,1.5\n194,146,2.0\n194,147,2.5\n194,148,3.0\n194,149,3.5\n194,150,10.0\n194,151,9.5\n194,152,9.0\n194,153,8.5\n194,154,8.0\n194,155,7.5\n194,156,7.0\n194,157,6.5\n194,158,6.0\n194,159,5.5\n194,160,5.0\n194,161,4.5\n194,162,4.0\n194,163,3.5\n194,164,3.0\n194,165,2.5\n194,166,2.0\n194,167,1.5\n194,168,1.0\n194,169,0.5\n194,170,1.0\n194,171,1.5\n194,172,2.0\n194,173,2.5\n194,174,3.0\n194,175,9.5\n194,176,9.0\n194,177,8.5\n194,178,8.0\n194,179,7.5\n194,180,7.0\n194,181,6.5\n194,182,6.0\n194,183,5.5\n194,184,5.0\n194,185,4.5\n194,186,4.0\n194,187,3.5\n194,188,3.0\n194,189,2.5\n194,190,2.0\n194,191,1.5\n194,192,1.0\n194,193,0.5\n194,194,0\n194,195,0.5\n194,196,1.0\n194,197,1.5\n194,198,2.0\n194,199,2.5\n194,200,10.0\n194,201,9.5\n194,202,9.0\n194,203,8.5\n194,204,8.0\n194,205,7.5\n194,206,7.0\n194,207,6.5\n194,208,6.0\n194,209,5.5\n194,210,5.0\n194,211,4.5\n194,212,4.0\n194,213,3.5\n194,214,3.0\n194,215,2.5\n194,216,2.0\n194,217,1.5\n194,218,1.0\n194,219,0.5\n194,220,1.0\n194,221,1.5\n194,222,2.0\n194,223,2.5\n194,224,3.0\n194,225,10.5\n194,226,10.0\n194,227,9.5\n194,228,9.0\n194,229,8.5\n194,230,8.0\n194,231,7.5\n194,232,7.0\n194,233,6.5\n194,234,6.0\n194,235,5.5\n194,236,5.0\n194,237,4.5\n194,238,4.0\n194,239,3.5\n194,240,3.0\n194,241,2.5\n194,242,2.0\n194,243,1.5\n194,244,1.0\n194,245,1.5\n194,246,2.0\n194,247,2.5\n194,248,3.0\n194,249,3.5\n194,250,11.0\n194,251,10.5\n194,252,10.0\n194,253,9.5\n194,254,9.0\n194,255,8.5\n194,256,8.0\n194,257,7.5\n194,258,7.0\n194,259,6.5\n194,260,6.0\n194,261,5.5\n194,262,5.0\n194,263,4.5\n194,264,4.0\n194,265,3.5\n194,266,3.0\n194,267,2.5\n194,268,2.0\n194,269,1.5\n194,270,2.0\n194,271,2.5\n194,272,3.0\n194,273,3.5\n194,274,4.0\n194,275,11.5\n194,276,11.0\n194,277,10.5\n194,278,10.0\n194,279,9.5\n194,280,9.0\n194,281,8.5\n194,282,8.0\n194,283,7.5\n194,284,7.0\n194,285,6.5\n194,286,6.0\n194,287,5.5\n194,288,5.0\n194,289,4.5\n194,290,4.0\n194,291,3.5\n194,292,3.0\n194,293,2.5\n194,294,2.0\n194,295,2.5\n194,296,3.0\n194,297,3.5\n194,298,4.0\n194,299,4.5\n194,300,12.0\n194,301,11.5\n194,302,11.0\n194,303,10.5\n194,304,10.0\n194,305,9.5\n194,306,9.0\n194,307,8.5\n194,308,8.0\n194,309,7.5\n194,310,7.0\n194,311,6.5\n194,312,6.0\n194,313,5.5\n194,314,5.0\n194,315,4.5\n194,316,4.0\n194,317,3.5\n194,318,3.0\n194,319,2.5\n194,320,3.0\n194,321,3.5\n194,322,4.0\n194,323,4.5\n194,324,5.0\n194,325,12.5\n194,326,12.0\n194,327,11.5\n194,328,11.0\n194,329,10.5\n194,330,10.0\n194,331,9.5\n194,332,9.0\n194,333,8.5\n194,334,8.0\n194,335,7.5\n194,336,7.0\n194,337,6.5\n194,338,6.0\n194,339,5.5\n194,340,5.0\n194,341,4.5\n194,342,4.0\n194,343,3.5\n194,344,3.0\n194,345,3.5\n194,346,4.0\n194,347,4.5\n194,348,5.0\n194,349,5.5\n194,350,13.0\n194,351,12.5\n194,352,12.0\n194,353,11.5\n194,354,11.0\n194,355,10.5\n194,356,10.0\n194,357,9.5\n194,358,9.0\n194,359,8.5\n194,360,8.0\n194,361,7.5\n194,362,7.0\n194,363,6.5\n194,364,6.0\n194,365,5.5\n194,366,5.0\n194,367,4.5\n194,368,4.0\n194,369,3.5\n194,370,4.0\n194,371,4.5\n194,372,5.0\n194,373,5.5\n194,374,6.0\n194,375,13.5\n194,376,13.0\n194,377,12.5\n194,378,12.0\n194,379,11.5\n194,380,11.0\n194,381,10.5\n194,382,10.0\n194,383,9.5\n194,384,9.0\n194,385,8.5\n194,386,8.0\n194,387,7.5\n194,388,7.0\n194,389,6.5\n194,390,6.0\n194,391,5.5\n194,392,5.0\n194,393,4.5\n194,394,4.0\n194,395,4.5\n194,396,5.0\n194,397,5.5\n194,398,6.0\n194,399,6.5\n194,400,14.0\n194,401,13.5\n194,402,13.0\n194,403,12.5\n194,404,12.0\n194,405,11.5\n194,406,11.0\n194,407,10.5\n194,408,10.0\n194,409,9.5\n194,410,9.0\n194,411,8.5\n194,412,8.0\n194,413,7.5\n194,414,7.0\n194,415,6.5\n194,416,6.0\n194,417,5.5\n194,418,5.0\n194,419,4.5\n194,420,5.0\n194,421,5.5\n194,422,6.0\n194,423,6.5\n194,424,7.0\n194,425,14.5\n194,426,14.0\n194,427,13.5\n194,428,13.0\n194,429,12.5\n194,430,12.0\n194,431,11.5\n194,432,11.0\n194,433,10.5\n194,434,10.0\n194,435,9.5\n194,436,9.0\n194,437,8.5\n194,438,8.0\n194,439,7.5\n194,440,7.0\n194,441,6.5\n194,442,6.0\n194,443,5.5\n194,444,5.0\n194,445,5.5\n194,446,6.0\n194,447,6.5\n194,448,7.0\n194,449,7.5\n194,450,15.0\n194,451,14.5\n194,452,14.0\n194,453,13.5\n194,454,13.0\n194,455,12.5\n194,456,12.0\n194,457,11.5\n194,458,11.0\n194,459,10.5\n194,460,10.0\n194,461,9.5\n194,462,9.0\n194,463,8.5\n194,464,8.0\n194,465,7.5\n194,466,7.0\n194,467,6.5\n194,468,6.0\n194,469,5.5\n194,470,6.0\n194,471,6.5\n194,472,7.0\n194,473,7.5\n194,474,8.0\n194,475,15.5\n194,476,15.0\n194,477,14.5\n194,478,14.0\n194,479,13.5\n194,480,13.0\n194,481,12.5\n194,482,12.0\n194,483,11.5\n194,484,11.0\n194,485,10.5\n194,486,10.0\n194,487,9.5\n194,488,9.0\n194,489,8.5\n194,490,8.0\n194,491,7.5\n194,492,7.0\n194,493,6.5\n194,494,6.0\n194,495,6.5\n194,496,7.0\n194,497,7.5\n194,498,8.0\n194,499,8.5\n194,500,16.0\n194,501,15.5\n194,502,15.0\n194,503,14.5\n194,504,14.0\n194,505,13.5\n194,506,13.0\n194,507,12.5\n194,508,12.0\n194,509,11.5\n194,510,11.0\n194,511,10.5\n194,512,10.0\n194,513,9.5\n194,514,9.0\n194,515,8.5\n194,516,8.0\n194,517,7.5\n194,518,7.0\n194,519,6.5\n194,520,7.0\n194,521,7.5\n194,522,8.0\n194,523,8.5\n194,524,9.0\n194,525,16.5\n194,526,16.0\n194,527,15.5\n194,528,15.0\n194,529,14.5\n194,530,14.0\n194,531,13.5\n194,532,13.0\n194,533,12.5\n194,534,12.0\n194,535,11.5\n194,536,11.0\n194,537,10.5\n194,538,10.0\n194,539,9.5\n194,540,9.0\n194,541,8.5\n194,542,8.0\n194,543,7.5\n194,544,7.0\n194,545,7.5\n194,546,8.0\n194,547,8.5\n194,548,9.0\n194,549,9.5\n194,550,17.0\n194,551,16.5\n194,552,16.0\n194,553,15.5\n194,554,15.0\n194,555,14.5\n194,556,14.0\n194,557,13.5\n194,558,13.0\n194,559,12.5\n194,560,12.0\n194,561,11.5\n194,562,11.0\n194,563,10.5\n194,564,10.0\n194,565,9.5\n194,566,9.0\n194,567,8.5\n194,568,8.0\n194,569,7.5\n194,570,8.0\n194,571,8.5\n194,572,9.0\n194,573,9.5\n194,574,10.0\n194,575,17.5\n194,576,17.0\n194,577,16.5\n194,578,16.0\n194,579,15.5\n194,580,15.0\n194,581,14.5\n194,582,14.0\n194,583,13.5\n194,584,13.0\n194,585,12.5\n194,586,12.0\n194,587,11.5\n194,588,11.0\n194,589,10.5\n194,590,10.0\n194,591,9.5\n194,592,9.0\n194,593,8.5\n194,594,8.0\n194,595,8.5\n194,596,9.0\n194,597,9.5\n194,598,10.0\n194,599,10.5\n194,600,18.0\n194,601,17.5\n194,602,17.0\n194,603,16.5\n194,604,16.0\n194,605,15.5\n194,606,15.0\n194,607,14.5\n194,608,14.0\n194,609,13.5\n194,610,13.0\n194,611,12.5\n194,612,12.0\n194,613,11.5\n194,614,11.0\n194,615,10.5\n194,616,10.0\n194,617,9.5\n194,618,9.0\n194,619,8.5\n194,620,9.0\n194,621,9.5\n194,622,10.0\n194,623,10.5\n194,624,11.0\n195,0,13.5\n195,1,13.0\n195,2,12.5\n195,3,12.0\n195,4,11.5\n195,5,11.0\n195,6,10.5\n195,7,10.0\n195,8,9.5\n195,9,9.0\n195,10,8.5\n195,11,8.0\n195,12,7.5\n195,13,7.0\n195,14,6.5\n195,15,6.0\n195,16,5.5\n195,17,5.0\n195,18,4.5\n195,19,4.0\n195,20,3.5\n195,21,4.0\n195,22,4.5\n195,23,5.0\n195,24,5.5\n195,25,13.0\n195,26,12.5\n195,27,12.0\n195,28,11.5\n195,29,11.0\n195,30,10.5\n195,31,10.0\n195,32,9.5\n195,33,9.0\n195,34,8.5\n195,35,8.0\n195,36,7.5\n195,37,7.0\n195,38,6.5\n195,39,6.0\n195,40,5.5\n195,41,5.0\n195,42,4.5\n195,43,4.0\n195,44,3.5\n195,45,3.0\n195,46,3.5\n195,47,4.0\n195,48,4.5\n195,49,5.0\n195,50,12.5\n195,51,12.0\n195,52,11.5\n195,53,11.0\n195,54,10.5\n195,55,10.0\n195,56,9.5\n195,57,9.0\n195,58,8.5\n195,59,8.0\n195,60,7.5\n195,61,7.0\n195,62,6.5\n195,63,6.0\n195,64,5.5\n195,65,5.0\n195,66,4.5\n195,67,4.0\n195,68,3.5\n195,69,3.0\n195,70,2.5\n195,71,3.0\n195,72,3.5\n195,73,4.0\n195,74,4.5\n195,75,12.0\n195,76,11.5\n195,77,11.0\n195,78,10.5\n195,79,10.0\n195,80,9.5\n195,81,9.0\n195,82,8.5\n195,83,8.0\n195,84,7.5\n195,85,7.0\n195,86,6.5\n195,87,6.0\n195,88,5.5\n195,89,5.0\n195,90,4.5\n195,91,4.0\n195,92,3.5\n195,93,3.0\n195,94,2.5\n195,95,2.0\n195,96,2.5\n195,97,3.0\n195,98,3.5\n195,99,4.0\n195,100,11.5\n195,101,11.0\n195,102,10.5\n195,103,10.0\n195,104,9.5\n195,105,9.0\n195,106,8.5\n195,107,8.0\n195,108,7.5\n195,109,7.0\n195,110,6.5\n195,111,6.0\n195,112,5.5\n195,113,5.0\n195,114,4.5\n195,115,4.0\n195,116,3.5\n195,117,3.0\n195,118,2.5\n195,119,2.0\n195,120,1.5\n195,121,2.0\n195,122,2.5\n195,123,3.0\n195,124,3.5\n195,125,11.0\n195,126,10.5\n195,127,10.0\n195,128,9.5\n195,129,9.0\n195,130,8.5\n195,131,8.0\n195,132,7.5\n195,133,7.0\n195,134,6.5\n195,135,6.0\n195,136,5.5\n195,137,5.0\n195,138,4.5\n195,139,4.0\n195,140,3.5\n195,141,3.0\n195,142,2.5\n195,143,2.0\n195,144,1.5\n195,145,1.0\n195,146,1.5\n195,147,2.0\n195,148,2.5\n195,149,3.0\n195,150,10.5\n195,151,10.0\n195,152,9.5\n195,153,9.0\n195,154,8.5\n195,155,8.0\n195,156,7.5\n195,157,7.0\n195,158,6.5\n195,159,6.0\n195,160,5.5\n195,161,5.0\n195,162,4.5\n195,163,4.0\n195,164,3.5\n195,165,3.0\n195,166,2.5\n195,167,2.0\n195,168,1.5\n195,169,1.0\n195,170,0.5\n195,171,1.0\n195,172,1.5\n195,173,2.0\n195,174,2.5\n195,175,10.0\n195,176,9.5\n195,177,9.0\n195,178,8.5\n195,179,8.0\n195,180,7.5\n195,181,7.0\n195,182,6.5\n195,183,6.0\n195,184,5.5\n195,185,5.0\n195,186,4.5\n195,187,4.0\n195,188,3.5\n195,189,3.0\n195,190,2.5\n195,191,2.0\n195,192,1.5\n195,193,1.0\n195,194,0.5\n195,195,0\n195,196,0.5\n195,197,1.0\n195,198,1.5\n195,199,2.0\n195,200,10.5\n195,201,10.0\n195,202,9.5\n195,203,9.0\n195,204,8.5\n195,205,8.0\n195,206,7.5\n195,207,7.0\n195,208,6.5\n195,209,6.0\n195,210,5.5\n195,211,5.0\n195,212,4.5\n195,213,4.0\n195,214,3.5\n195,215,3.0\n195,216,2.5\n195,217,2.0\n195,218,1.5\n195,219,1.0\n195,220,0.5\n195,221,1.0\n195,222,1.5\n195,223,2.0\n195,224,2.5\n195,225,11.0\n195,226,10.5\n195,227,10.0\n195,228,9.5\n195,229,9.0\n195,230,8.5\n195,231,8.0\n195,232,7.5\n195,233,7.0\n195,234,6.5\n195,235,6.0\n195,236,5.5\n195,237,5.0\n195,238,4.5\n195,239,4.0\n195,240,3.5\n195,241,3.0\n195,242,2.5\n195,243,2.0\n195,244,1.5\n195,245,1.0\n195,246,1.5\n195,247,2.0\n195,248,2.5\n195,249,3.0\n195,250,11.5\n195,251,11.0\n195,252,10.5\n195,253,10.0\n195,254,9.5\n195,255,9.0\n195,256,8.5\n195,257,8.0\n195,258,7.5\n195,259,7.0\n195,260,6.5\n195,261,6.0\n195,262,5.5\n195,263,5.0\n195,264,4.5\n195,265,4.0\n195,266,3.5\n195,267,3.0\n195,268,2.5\n195,269,2.0\n195,270,1.5\n195,271,2.0\n195,272,2.5\n195,273,3.0\n195,274,3.5\n195,275,12.0\n195,276,11.5\n195,277,11.0\n195,278,10.5\n195,279,10.0\n195,280,9.5\n195,281,9.0\n195,282,8.5\n195,283,8.0\n195,284,7.5\n195,285,7.0\n195,286,6.5\n195,287,6.0\n195,288,5.5\n195,289,5.0\n195,290,4.5\n195,291,4.0\n195,292,3.5\n195,293,3.0\n195,294,2.5\n195,295,2.0\n195,296,2.5\n195,297,3.0\n195,298,3.5\n195,299,4.0\n195,300,12.5\n195,301,12.0\n195,302,11.5\n195,303,11.0\n195,304,10.5\n195,305,10.0\n195,306,9.5\n195,307,9.0\n195,308,8.5\n195,309,8.0\n195,310,7.5\n195,311,7.0\n195,312,6.5\n195,313,6.0\n195,314,5.5\n195,315,5.0\n195,316,4.5\n195,317,4.0\n195,318,3.5\n195,319,3.0\n195,320,2.5\n195,321,3.0\n195,322,3.5\n195,323,4.0\n195,324,4.5\n195,325,13.0\n195,326,12.5\n195,327,12.0\n195,328,11.5\n195,329,11.0\n195,330,10.5\n195,331,10.0\n195,332,9.5\n195,333,9.0\n195,334,8.5\n195,335,8.0\n195,336,7.5\n195,337,7.0\n195,338,6.5\n195,339,6.0\n195,340,5.5\n195,341,5.0\n195,342,4.5\n195,343,4.0\n195,344,3.5\n195,345,3.0\n195,346,3.5\n195,347,4.0\n195,348,4.5\n195,349,5.0\n195,350,13.5\n195,351,13.0\n195,352,12.5\n195,353,12.0\n195,354,11.5\n195,355,11.0\n195,356,10.5\n195,357,10.0\n195,358,9.5\n195,359,9.0\n195,360,8.5\n195,361,8.0\n195,362,7.5\n195,363,7.0\n195,364,6.5\n195,365,6.0\n195,366,5.5\n195,367,5.0\n195,368,4.5\n195,369,4.0\n195,370,3.5\n195,371,4.0\n195,372,4.5\n195,373,5.0\n195,374,5.5\n195,375,14.0\n195,376,13.5\n195,377,13.0\n195,378,12.5\n195,379,12.0\n195,380,11.5\n195,381,11.0\n195,382,10.5\n195,383,10.0\n195,384,9.5\n195,385,9.0\n195,386,8.5\n195,387,8.0\n195,388,7.5\n195,389,7.0\n195,390,6.5\n195,391,6.0\n195,392,5.5\n195,393,5.0\n195,394,4.5\n195,395,4.0\n195,396,4.5\n195,397,5.0\n195,398,5.5\n195,399,6.0\n195,400,14.5\n195,401,14.0\n195,402,13.5\n195,403,13.0\n195,404,12.5\n195,405,12.0\n195,406,11.5\n195,407,11.0\n195,408,10.5\n195,409,10.0\n195,410,9.5\n195,411,9.0\n195,412,8.5\n195,413,8.0\n195,414,7.5\n195,415,7.0\n195,416,6.5\n195,417,6.0\n195,418,5.5\n195,419,5.0\n195,420,4.5\n195,421,5.0\n195,422,5.5\n195,423,6.0\n195,424,6.5\n195,425,15.0\n195,426,14.5\n195,427,14.0\n195,428,13.5\n195,429,13.0\n195,430,12.5\n195,431,12.0\n195,432,11.5\n195,433,11.0\n195,434,10.5\n195,435,10.0\n195,436,9.5\n195,437,9.0\n195,438,8.5\n195,439,8.0\n195,440,7.5\n195,441,7.0\n195,442,6.5\n195,443,6.0\n195,444,5.5\n195,445,5.0\n195,446,5.5\n195,447,6.0\n195,448,6.5\n195,449,7.0\n195,450,15.5\n195,451,15.0\n195,452,14.5\n195,453,14.0\n195,454,13.5\n195,455,13.0\n195,456,12.5\n195,457,12.0\n195,458,11.5\n195,459,11.0\n195,460,10.5\n195,461,10.0\n195,462,9.5\n195,463,9.0\n195,464,8.5\n195,465,8.0\n195,466,7.5\n195,467,7.0\n195,468,6.5\n195,469,6.0\n195,470,5.5\n195,471,6.0\n195,472,6.5\n195,473,7.0\n195,474,7.5\n195,475,16.0\n195,476,15.5\n195,477,15.0\n195,478,14.5\n195,479,14.0\n195,480,13.5\n195,481,13.0\n195,482,12.5\n195,483,12.0\n195,484,11.5\n195,485,11.0\n195,486,10.5\n195,487,10.0\n195,488,9.5\n195,489,9.0\n195,490,8.5\n195,491,8.0\n195,492,7.5\n195,493,7.0\n195,494,6.5\n195,495,6.0\n195,496,6.5\n195,497,7.0\n195,498,7.5\n195,499,8.0\n195,500,16.5\n195,501,16.0\n195,502,15.5\n195,503,15.0\n195,504,14.5\n195,505,14.0\n195,506,13.5\n195,507,13.0\n195,508,12.5\n195,509,12.0\n195,510,11.5\n195,511,11.0\n195,512,10.5\n195,513,10.0\n195,514,9.5\n195,515,9.0\n195,516,8.5\n195,517,8.0\n195,518,7.5\n195,519,7.0\n195,520,6.5\n195,521,7.0\n195,522,7.5\n195,523,8.0\n195,524,8.5\n195,525,17.0\n195,526,16.5\n195,527,16.0\n195,528,15.5\n195,529,15.0\n195,530,14.5\n195,531,14.0\n195,532,13.5\n195,533,13.0\n195,534,12.5\n195,535,12.0\n195,536,11.5\n195,537,11.0\n195,538,10.5\n195,539,10.0\n195,540,9.5\n195,541,9.0\n195,542,8.5\n195,543,8.0\n195,544,7.5\n195,545,7.0\n195,546,7.5\n195,547,8.0\n195,548,8.5\n195,549,9.0\n195,550,17.5\n195,551,17.0\n195,552,16.5\n195,553,16.0\n195,554,15.5\n195,555,15.0\n195,556,14.5\n195,557,14.0\n195,558,13.5\n195,559,13.0\n195,560,12.5\n195,561,12.0\n195,562,11.5\n195,563,11.0\n195,564,10.5\n195,565,10.0\n195,566,9.5\n195,567,9.0\n195,568,8.5\n195,569,8.0\n195,570,7.5\n195,571,8.0\n195,572,8.5\n195,573,9.0\n195,574,9.5\n195,575,18.0\n195,576,17.5\n195,577,17.0\n195,578,16.5\n195,579,16.0\n195,580,15.5\n195,581,15.0\n195,582,14.5\n195,583,14.0\n195,584,13.5\n195,585,13.0\n195,586,12.5\n195,587,12.0\n195,588,11.5\n195,589,11.0\n195,590,10.5\n195,591,10.0\n195,592,9.5\n195,593,9.0\n195,594,8.5\n195,595,8.0\n195,596,8.5\n195,597,9.0\n195,598,9.5\n195,599,10.0\n195,600,18.5\n195,601,18.0\n195,602,17.5\n195,603,17.0\n195,604,16.5\n195,605,16.0\n195,606,15.5\n195,607,15.0\n195,608,14.5\n195,609,14.0\n195,610,13.5\n195,611,13.0\n195,612,12.5\n195,613,12.0\n195,614,11.5\n195,615,11.0\n195,616,10.5\n195,617,10.0\n195,618,9.5\n195,619,9.0\n195,620,8.5\n195,621,9.0\n195,622,9.5\n195,623,10.0\n195,624,10.5\n196,0,14.0\n196,1,13.5\n196,2,13.0\n196,3,12.5\n196,4,12.0\n196,5,11.5\n196,6,11.0\n196,7,10.5\n196,8,10.0\n196,9,9.5\n196,10,9.0\n196,11,8.5\n196,12,8.0\n196,13,7.5\n196,14,7.0\n196,15,6.5\n196,16,6.0\n196,17,5.5\n196,18,5.0\n196,19,4.5\n196,20,4.0\n196,21,3.5\n196,22,4.0\n196,23,4.5\n196,24,5.0\n196,25,13.5\n196,26,13.0\n196,27,12.5\n196,28,12.0\n196,29,11.5\n196,30,11.0\n196,31,10.5\n196,32,10.0\n196,33,9.5\n196,34,9.0\n196,35,8.5\n196,36,8.0\n196,37,7.5\n196,38,7.0\n196,39,6.5\n196,40,6.0\n196,41,5.5\n196,42,5.0\n196,43,4.5\n196,44,4.0\n196,45,3.5\n196,46,3.0\n196,47,3.5\n196,48,4.0\n196,49,4.5\n196,50,13.0\n196,51,12.5\n196,52,12.0\n196,53,11.5\n196,54,11.0\n196,55,10.5\n196,56,10.0\n196,57,9.5\n196,58,9.0\n196,59,8.5\n196,60,8.0\n196,61,7.5\n196,62,7.0\n196,63,6.5\n196,64,6.0\n196,65,5.5\n196,66,5.0\n196,67,4.5\n196,68,4.0\n196,69,3.5\n196,70,3.0\n196,71,2.5\n196,72,3.0\n196,73,3.5\n196,74,4.0\n196,75,12.5\n196,76,12.0\n196,77,11.5\n196,78,11.0\n196,79,10.5\n196,80,10.0\n196,81,9.5\n196,82,9.0\n196,83,8.5\n196,84,8.0\n196,85,7.5\n196,86,7.0\n196,87,6.5\n196,88,6.0\n196,89,5.5\n196,90,5.0\n196,91,4.5\n196,92,4.0\n196,93,3.5\n196,94,3.0\n196,95,2.5\n196,96,2.0\n196,97,2.5\n196,98,3.0\n196,99,3.5\n196,100,12.0\n196,101,11.5\n196,102,11.0\n196,103,10.5\n196,104,10.0\n196,105,9.5\n196,106,9.0\n196,107,8.5\n196,108,8.0\n196,109,7.5\n196,110,7.0\n196,111,6.5\n196,112,6.0\n196,113,5.5\n196,114,5.0\n196,115,4.5\n196,116,4.0\n196,117,3.5\n196,118,3.0\n196,119,2.5\n196,120,2.0\n196,121,1.5\n196,122,2.0\n196,123,2.5\n196,124,3.0\n196,125,11.5\n196,126,11.0\n196,127,10.5\n196,128,10.0\n196,129,9.5\n196,130,9.0\n196,131,8.5\n196,132,8.0\n196,133,7.5\n196,134,7.0\n196,135,6.5\n196,136,6.0\n196,137,5.5\n196,138,5.0\n196,139,4.5\n196,140,4.0\n196,141,3.5\n196,142,3.0\n196,143,2.5\n196,144,2.0\n196,145,1.5\n196,146,1.0\n196,147,1.5\n196,148,2.0\n196,149,2.5\n196,150,11.0\n196,151,10.5\n196,152,10.0\n196,153,9.5\n196,154,9.0\n196,155,8.5\n196,156,8.0\n196,157,7.5\n196,158,7.0\n196,159,6.5\n196,160,6.0\n196,161,5.5\n196,162,5.0\n196,163,4.5\n196,164,4.0\n196,165,3.5\n196,166,3.0\n196,167,2.5\n196,168,2.0\n196,169,1.5\n196,170,1.0\n196,171,0.5\n196,172,1.0\n196,173,1.5\n196,174,2.0\n196,175,10.5\n196,176,10.0\n196,177,9.5\n196,178,9.0\n196,179,8.5\n196,180,8.0\n196,181,7.5\n196,182,7.0\n196,183,6.5\n196,184,6.0\n196,185,5.5\n196,186,5.0\n196,187,4.5\n196,188,4.0\n196,189,3.5\n196,190,3.0\n196,191,2.5\n196,192,2.0\n196,193,1.5\n196,194,1.0\n196,195,0.5\n196,196,0\n196,197,0.5\n196,198,1.0\n196,199,1.5\n196,200,11.0\n196,201,10.5\n196,202,10.0\n196,203,9.5\n196,204,9.0\n196,205,8.5\n196,206,8.0\n196,207,7.5\n196,208,7.0\n196,209,6.5\n196,210,6.0\n196,211,5.5\n196,212,5.0\n196,213,4.5\n196,214,4.0\n196,215,3.5\n196,216,3.0\n196,217,2.5\n196,218,2.0\n196,219,1.5\n196,220,1.0\n196,221,0.5\n196,222,1.0\n196,223,1.5\n196,224,2.0\n196,225,11.5\n196,226,11.0\n196,227,10.5\n196,228,10.0\n196,229,9.5\n196,230,9.0\n196,231,8.5\n196,232,8.0\n196,233,7.5\n196,234,7.0\n196,235,6.5\n196,236,6.0\n196,237,5.5\n196,238,5.0\n196,239,4.5\n196,240,4.0\n196,241,3.5\n196,242,3.0\n196,243,2.5\n196,244,2.0\n196,245,1.5\n196,246,1.0\n196,247,1.5\n196,248,2.0\n196,249,2.5\n196,250,12.0\n196,251,11.5\n196,252,11.0\n196,253,10.5\n196,254,10.0\n196,255,9.5\n196,256,9.0\n196,257,8.5\n196,258,8.0\n196,259,7.5\n196,260,7.0\n196,261,6.5\n196,262,6.0\n196,263,5.5\n196,264,5.0\n196,265,4.5\n196,266,4.0\n196,267,3.5\n196,268,3.0\n196,269,2.5\n196,270,2.0\n196,271,1.5\n196,272,2.0\n196,273,2.5\n196,274,3.0\n196,275,12.5\n196,276,12.0\n196,277,11.5\n196,278,11.0\n196,279,10.5\n196,280,10.0\n196,281,9.5\n196,282,9.0\n196,283,8.5\n196,284,8.0\n196,285,7.5\n196,286,7.0\n196,287,6.5\n196,288,6.0\n196,289,5.5\n196,290,5.0\n196,291,4.5\n196,292,4.0\n196,293,3.5\n196,294,3.0\n196,295,2.5\n196,296,2.0\n196,297,2.5\n196,298,3.0\n196,299,3.5\n196,300,13.0\n196,301,12.5\n196,302,12.0\n196,303,11.5\n196,304,11.0\n196,305,10.5\n196,306,10.0\n196,307,9.5\n196,308,9.0\n196,309,8.5\n196,310,8.0\n196,311,7.5\n196,312,7.0\n196,313,6.5\n196,314,6.0\n196,315,5.5\n196,316,5.0\n196,317,4.5\n196,318,4.0\n196,319,3.5\n196,320,3.0\n196,321,2.5\n196,322,3.0\n196,323,3.5\n196,324,4.0\n196,325,13.5\n196,326,13.0\n196,327,12.5\n196,328,12.0\n196,329,11.5\n196,330,11.0\n196,331,10.5\n196,332,10.0\n196,333,9.5\n196,334,9.0\n196,335,8.5\n196,336,8.0\n196,337,7.5\n196,338,7.0\n196,339,6.5\n196,340,6.0\n196,341,5.5\n196,342,5.0\n196,343,4.5\n196,344,4.0\n196,345,3.5\n196,346,3.0\n196,347,3.5\n196,348,4.0\n196,349,4.5\n196,350,14.0\n196,351,13.5\n196,352,13.0\n196,353,12.5\n196,354,12.0\n196,355,11.5\n196,356,11.0\n196,357,10.5\n196,358,10.0\n196,359,9.5\n196,360,9.0\n196,361,8.5\n196,362,8.0\n196,363,7.5\n196,364,7.0\n196,365,6.5\n196,366,6.0\n196,367,5.5\n196,368,5.0\n196,369,4.5\n196,370,4.0\n196,371,3.5\n196,372,4.0\n196,373,4.5\n196,374,5.0\n196,375,14.5\n196,376,14.0\n196,377,13.5\n196,378,13.0\n196,379,12.5\n196,380,12.0\n196,381,11.5\n196,382,11.0\n196,383,10.5\n196,384,10.0\n196,385,9.5\n196,386,9.0\n196,387,8.5\n196,388,8.0\n196,389,7.5\n196,390,7.0\n196,391,6.5\n196,392,6.0\n196,393,5.5\n196,394,5.0\n196,395,4.5\n196,396,4.0\n196,397,4.5\n196,398,5.0\n196,399,5.5\n196,400,15.0\n196,401,14.5\n196,402,14.0\n196,403,13.5\n196,404,13.0\n196,405,12.5\n196,406,12.0\n196,407,11.5\n196,408,11.0\n196,409,10.5\n196,410,10.0\n196,411,9.5\n196,412,9.0\n196,413,8.5\n196,414,8.0\n196,415,7.5\n196,416,7.0\n196,417,6.5\n196,418,6.0\n196,419,5.5\n196,420,5.0\n196,421,4.5\n196,422,5.0\n196,423,5.5\n196,424,6.0\n196,425,15.5\n196,426,15.0\n196,427,14.5\n196,428,14.0\n196,429,13.5\n196,430,13.0\n196,431,12.5\n196,432,12.0\n196,433,11.5\n196,434,11.0\n196,435,10.5\n196,436,10.0\n196,437,9.5\n196,438,9.0\n196,439,8.5\n196,440,8.0\n196,441,7.5\n196,442,7.0\n196,443,6.5\n196,444,6.0\n196,445,5.5\n196,446,5.0\n196,447,5.5\n196,448,6.0\n196,449,6.5\n196,450,16.0\n196,451,15.5\n196,452,15.0\n196,453,14.5\n196,454,14.0\n196,455,13.5\n196,456,13.0\n196,457,12.5\n196,458,12.0\n196,459,11.5\n196,460,11.0\n196,461,10.5\n196,462,10.0\n196,463,9.5\n196,464,9.0\n196,465,8.5\n196,466,8.0\n196,467,7.5\n196,468,7.0\n196,469,6.5\n196,470,6.0\n196,471,5.5\n196,472,6.0\n196,473,6.5\n196,474,7.0\n196,475,16.5\n196,476,16.0\n196,477,15.5\n196,478,15.0\n196,479,14.5\n196,480,14.0\n196,481,13.5\n196,482,13.0\n196,483,12.5\n196,484,12.0\n196,485,11.5\n196,486,11.0\n196,487,10.5\n196,488,10.0\n196,489,9.5\n196,490,9.0\n196,491,8.5\n196,492,8.0\n196,493,7.5\n196,494,7.0\n196,495,6.5\n196,496,6.0\n196,497,6.5\n196,498,7.0\n196,499,7.5\n196,500,17.0\n196,501,16.5\n196,502,16.0\n196,503,15.5\n196,504,15.0\n196,505,14.5\n196,506,14.0\n196,507,13.5\n196,508,13.0\n196,509,12.5\n196,510,12.0\n196,511,11.5\n196,512,11.0\n196,513,10.5\n196,514,10.0\n196,515,9.5\n196,516,9.0\n196,517,8.5\n196,518,8.0\n196,519,7.5\n196,520,7.0\n196,521,6.5\n196,522,7.0\n196,523,7.5\n196,524,8.0\n196,525,17.5\n196,526,17.0\n196,527,16.5\n196,528,16.0\n196,529,15.5\n196,530,15.0\n196,531,14.5\n196,532,14.0\n196,533,13.5\n196,534,13.0\n196,535,12.5\n196,536,12.0\n196,537,11.5\n196,538,11.0\n196,539,10.5\n196,540,10.0\n196,541,9.5\n196,542,9.0\n196,543,8.5\n196,544,8.0\n196,545,7.5\n196,546,7.0\n196,547,7.5\n196,548,8.0\n196,549,8.5\n196,550,18.0\n196,551,17.5\n196,552,17.0\n196,553,16.5\n196,554,16.0\n196,555,15.5\n196,556,15.0\n196,557,14.5\n196,558,14.0\n196,559,13.5\n196,560,13.0\n196,561,12.5\n196,562,12.0\n196,563,11.5\n196,564,11.0\n196,565,10.5\n196,566,10.0\n196,567,9.5\n196,568,9.0\n196,569,8.5\n196,570,8.0\n196,571,7.5\n196,572,8.0\n196,573,8.5\n196,574,9.0\n196,575,18.5\n196,576,18.0\n196,577,17.5\n196,578,17.0\n196,579,16.5\n196,580,16.0\n196,581,15.5\n196,582,15.0\n196,583,14.5\n196,584,14.0\n196,585,13.5\n196,586,13.0\n196,587,12.5\n196,588,12.0\n196,589,11.5\n196,590,11.0\n196,591,10.5\n196,592,10.0\n196,593,9.5\n196,594,9.0\n196,595,8.5\n196,596,8.0\n196,597,8.5\n196,598,9.0\n196,599,9.5\n196,600,19.0\n196,601,18.5\n196,602,18.0\n196,603,17.5\n196,604,17.0\n196,605,16.5\n196,606,16.0\n196,607,15.5\n196,608,15.0\n196,609,14.5\n196,610,14.0\n196,611,13.5\n196,612,13.0\n196,613,12.5\n196,614,12.0\n196,615,11.5\n196,616,11.0\n196,617,10.5\n196,618,10.0\n196,619,9.5\n196,620,9.0\n196,621,8.5\n196,622,9.0\n196,623,9.5\n196,624,10.0\n197,0,14.5\n197,1,14.0\n197,2,13.5\n197,3,13.0\n197,4,12.5\n197,5,12.0\n197,6,11.5\n197,7,11.0\n197,8,10.5\n197,9,10.0\n197,10,9.5\n197,11,9.0\n197,12,8.5\n197,13,8.0\n197,14,7.5\n197,15,7.0\n197,16,6.5\n197,17,6.0\n197,18,5.5\n197,19,5.0\n197,20,4.5\n197,21,4.0\n197,22,3.5\n197,23,4.0\n197,24,4.5\n197,25,14.0\n197,26,13.5\n197,27,13.0\n197,28,12.5\n197,29,12.0\n197,30,11.5\n197,31,11.0\n197,32,10.5\n197,33,10.0\n197,34,9.5\n197,35,9.0\n197,36,8.5\n197,37,8.0\n197,38,7.5\n197,39,7.0\n197,40,6.5\n197,41,6.0\n197,42,5.5\n197,43,5.0\n197,44,4.5\n197,45,4.0\n197,46,3.5\n197,47,3.0\n197,48,3.5\n197,49,4.0\n197,50,13.5\n197,51,13.0\n197,52,12.5\n197,53,12.0\n197,54,11.5\n197,55,11.0\n197,56,10.5\n197,57,10.0\n197,58,9.5\n197,59,9.0\n197,60,8.5\n197,61,8.0\n197,62,7.5\n197,63,7.0\n197,64,6.5\n197,65,6.0\n197,66,5.5\n197,67,5.0\n197,68,4.5\n197,69,4.0\n197,70,3.5\n197,71,3.0\n197,72,2.5\n197,73,3.0\n197,74,3.5\n197,75,13.0\n197,76,12.5\n197,77,12.0\n197,78,11.5\n197,79,11.0\n197,80,10.5\n197,81,10.0\n197,82,9.5\n197,83,9.0\n197,84,8.5\n197,85,8.0\n197,86,7.5\n197,87,7.0\n197,88,6.5\n197,89,6.0\n197,90,5.5\n197,91,5.0\n197,92,4.5\n197,93,4.0\n197,94,3.5\n197,95,3.0\n197,96,2.5\n197,97,2.0\n197,98,2.5\n197,99,3.0\n197,100,12.5\n197,101,12.0\n197,102,11.5\n197,103,11.0\n197,104,10.5\n197,105,10.0\n197,106,9.5\n197,107,9.0\n197,108,8.5\n197,109,8.0\n197,110,7.5\n197,111,7.0\n197,112,6.5\n197,113,6.0\n197,114,5.5\n197,115,5.0\n197,116,4.5\n197,117,4.0\n197,118,3.5\n197,119,3.0\n197,120,2.5\n197,121,2.0\n197,122,1.5\n197,123,2.0\n197,124,2.5\n197,125,12.0\n197,126,11.5\n197,127,11.0\n197,128,10.5\n197,129,10.0\n197,130,9.5\n197,131,9.0\n197,132,8.5\n197,133,8.0\n197,134,7.5\n197,135,7.0\n197,136,6.5\n197,137,6.0\n197,138,5.5\n197,139,5.0\n197,140,4.5\n197,141,4.0\n197,142,3.5\n197,143,3.0\n197,144,2.5\n197,145,2.0\n197,146,1.5\n197,147,1.0\n197,148,1.5\n197,149,2.0\n197,150,11.5\n197,151,11.0\n197,152,10.5\n197,153,10.0\n197,154,9.5\n197,155,9.0\n197,156,8.5\n197,157,8.0\n197,158,7.5\n197,159,7.0\n197,160,6.5\n197,161,6.0\n197,162,5.5\n197,163,5.0\n197,164,4.5\n197,165,4.0\n197,166,3.5\n197,167,3.0\n197,168,2.5\n197,169,2.0\n197,170,1.5\n197,171,1.0\n197,172,0.5\n197,173,1.0\n197,174,1.5\n197,175,11.0\n197,176,10.5\n197,177,10.0\n197,178,9.5\n197,179,9.0\n197,180,8.5\n197,181,8.0\n197,182,7.5\n197,183,7.0\n197,184,6.5\n197,185,6.0\n197,186,5.5\n197,187,5.0\n197,188,4.5\n197,189,4.0\n197,190,3.5\n197,191,3.0\n197,192,2.5\n197,193,2.0\n197,194,1.5\n197,195,1.0\n197,196,0.5\n197,197,0\n197,198,0.5\n197,199,1.0\n197,200,11.5\n197,201,11.0\n197,202,10.5\n197,203,10.0\n197,204,9.5\n197,205,9.0\n197,206,8.5\n197,207,8.0\n197,208,7.5\n197,209,7.0\n197,210,6.5\n197,211,6.0\n197,212,5.5\n197,213,5.0\n197,214,4.5\n197,215,4.0\n197,216,3.5\n197,217,3.0\n197,218,2.5\n197,219,2.0\n197,220,1.5\n197,221,1.0\n197,222,0.5\n197,223,1.0\n197,224,1.5\n197,225,12.0\n197,226,11.5\n197,227,11.0\n197,228,10.5\n197,229,10.0\n197,230,9.5\n197,231,9.0\n197,232,8.5\n197,233,8.0\n197,234,7.5\n197,235,7.0\n197,236,6.5\n197,237,6.0\n197,238,5.5\n197,239,5.0\n197,240,4.5\n197,241,4.0\n197,242,3.5\n197,243,3.0\n197,244,2.5\n197,245,2.0\n197,246,1.5\n197,247,1.0\n197,248,1.5\n197,249,2.0\n197,250,12.5\n197,251,12.0\n197,252,11.5\n197,253,11.0\n197,254,10.5\n197,255,10.0\n197,256,9.5\n197,257,9.0\n197,258,8.5\n197,259,8.0\n197,260,7.5\n197,261,7.0\n197,262,6.5\n197,263,6.0\n197,264,5.5\n197,265,5.0\n197,266,4.5\n197,267,4.0\n197,268,3.5\n197,269,3.0\n197,270,2.5\n197,271,2.0\n197,272,1.5\n197,273,2.0\n197,274,2.5\n197,275,13.0\n197,276,12.5\n197,277,12.0\n197,278,11.5\n197,279,11.0\n197,280,10.5\n197,281,10.0\n197,282,9.5\n197,283,9.0\n197,284,8.5\n197,285,8.0\n197,286,7.5\n197,287,7.0\n197,288,6.5\n197,289,6.0\n197,290,5.5\n197,291,5.0\n197,292,4.5\n197,293,4.0\n197,294,3.5\n197,295,3.0\n197,296,2.5\n197,297,2.0\n197,298,2.5\n197,299,3.0\n197,300,13.5\n197,301,13.0\n197,302,12.5\n197,303,12.0\n197,304,11.5\n197,305,11.0\n197,306,10.5\n197,307,10.0\n197,308,9.5\n197,309,9.0\n197,310,8.5\n197,311,8.0\n197,312,7.5\n197,313,7.0\n197,314,6.5\n197,315,6.0\n197,316,5.5\n197,317,5.0\n197,318,4.5\n197,319,4.0\n197,320,3.5\n197,321,3.0\n197,322,2.5\n197,323,3.0\n197,324,3.5\n197,325,14.0\n197,326,13.5\n197,327,13.0\n197,328,12.5\n197,329,12.0\n197,330,11.5\n197,331,11.0\n197,332,10.5\n197,333,10.0\n197,334,9.5\n197,335,9.0\n197,336,8.5\n197,337,8.0\n197,338,7.5\n197,339,7.0\n197,340,6.5\n197,341,6.0\n197,342,5.5\n197,343,5.0\n197,344,4.5\n197,345,4.0\n197,346,3.5\n197,347,3.0\n197,348,3.5\n197,349,4.0\n197,350,14.5\n197,351,14.0\n197,352,13.5\n197,353,13.0\n197,354,12.5\n197,355,12.0\n197,356,11.5\n197,357,11.0\n197,358,10.5\n197,359,10.0\n197,360,9.5\n197,361,9.0\n197,362,8.5\n197,363,8.0\n197,364,7.5\n197,365,7.0\n197,366,6.5\n197,367,6.0\n197,368,5.5\n197,369,5.0\n197,370,4.5\n197,371,4.0\n197,372,3.5\n197,373,4.0\n197,374,4.5\n197,375,15.0\n197,376,14.5\n197,377,14.0\n197,378,13.5\n197,379,13.0\n197,380,12.5\n197,381,12.0\n197,382,11.5\n197,383,11.0\n197,384,10.5\n197,385,10.0\n197,386,9.5\n197,387,9.0\n197,388,8.5\n197,389,8.0\n197,390,7.5\n197,391,7.0\n197,392,6.5\n197,393,6.0\n197,394,5.5\n197,395,5.0\n197,396,4.5\n197,397,4.0\n197,398,4.5\n197,399,5.0\n197,400,15.5\n197,401,15.0\n197,402,14.5\n197,403,14.0\n197,404,13.5\n197,405,13.0\n197,406,12.5\n197,407,12.0\n197,408,11.5\n197,409,11.0\n197,410,10.5\n197,411,10.0\n197,412,9.5\n197,413,9.0\n197,414,8.5\n197,415,8.0\n197,416,7.5\n197,417,7.0\n197,418,6.5\n197,419,6.0\n197,420,5.5\n197,421,5.0\n197,422,4.5\n197,423,5.0\n197,424,5.5\n197,425,16.0\n197,426,15.5\n197,427,15.0\n197,428,14.5\n197,429,14.0\n197,430,13.5\n197,431,13.0\n197,432,12.5\n197,433,12.0\n197,434,11.5\n197,435,11.0\n197,436,10.5\n197,437,10.0\n197,438,9.5\n197,439,9.0\n197,440,8.5\n197,441,8.0\n197,442,7.5\n197,443,7.0\n197,444,6.5\n197,445,6.0\n197,446,5.5\n197,447,5.0\n197,448,5.5\n197,449,6.0\n197,450,16.5\n197,451,16.0\n197,452,15.5\n197,453,15.0\n197,454,14.5\n197,455,14.0\n197,456,13.5\n197,457,13.0\n197,458,12.5\n197,459,12.0\n197,460,11.5\n197,461,11.0\n197,462,10.5\n197,463,10.0\n197,464,9.5\n197,465,9.0\n197,466,8.5\n197,467,8.0\n197,468,7.5\n197,469,7.0\n197,470,6.5\n197,471,6.0\n197,472,5.5\n197,473,6.0\n197,474,6.5\n197,475,17.0\n197,476,16.5\n197,477,16.0\n197,478,15.5\n197,479,15.0\n197,480,14.5\n197,481,14.0\n197,482,13.5\n197,483,13.0\n197,484,12.5\n197,485,12.0\n197,486,11.5\n197,487,11.0\n197,488,10.5\n197,489,10.0\n197,490,9.5\n197,491,9.0\n197,492,8.5\n197,493,8.0\n197,494,7.5\n197,495,7.0\n197,496,6.5\n197,497,6.0\n197,498,6.5\n197,499,7.0\n197,500,17.5\n197,501,17.0\n197,502,16.5\n197,503,16.0\n197,504,15.5\n197,505,15.0\n197,506,14.5\n197,507,14.0\n197,508,13.5\n197,509,13.0\n197,510,12.5\n197,511,12.0\n197,512,11.5\n197,513,11.0\n197,514,10.5\n197,515,10.0\n197,516,9.5\n197,517,9.0\n197,518,8.5\n197,519,8.0\n197,520,7.5\n197,521,7.0\n197,522,6.5\n197,523,7.0\n197,524,7.5\n197,525,18.0\n197,526,17.5\n197,527,17.0\n197,528,16.5\n197,529,16.0\n197,530,15.5\n197,531,15.0\n197,532,14.5\n197,533,14.0\n197,534,13.5\n197,535,13.0\n197,536,12.5\n197,537,12.0\n197,538,11.5\n197,539,11.0\n197,540,10.5\n197,541,10.0\n197,542,9.5\n197,543,9.0\n197,544,8.5\n197,545,8.0\n197,546,7.5\n197,547,7.0\n197,548,7.5\n197,549,8.0\n197,550,18.5\n197,551,18.0\n197,552,17.5\n197,553,17.0\n197,554,16.5\n197,555,16.0\n197,556,15.5\n197,557,15.0\n197,558,14.5\n197,559,14.0\n197,560,13.5\n197,561,13.0\n197,562,12.5\n197,563,12.0\n197,564,11.5\n197,565,11.0\n197,566,10.5\n197,567,10.0\n197,568,9.5\n197,569,9.0\n197,570,8.5\n197,571,8.0\n197,572,7.5\n197,573,8.0\n197,574,8.5\n197,575,19.0\n197,576,18.5\n197,577,18.0\n197,578,17.5\n197,579,17.0\n197,580,16.5\n197,581,16.0\n197,582,15.5\n197,583,15.0\n197,584,14.5\n197,585,14.0\n197,586,13.5\n197,587,13.0\n197,588,12.5\n197,589,12.0\n197,590,11.5\n197,591,11.0\n197,592,10.5\n197,593,10.0\n197,594,9.5\n197,595,9.0\n197,596,8.5\n197,597,8.0\n197,598,8.5\n197,599,9.0\n197,600,19.5\n197,601,19.0\n197,602,18.5\n197,603,18.0\n197,604,17.5\n197,605,17.0\n197,606,16.5\n197,607,16.0\n197,608,15.5\n197,609,15.0\n197,610,14.5\n197,611,14.0\n197,612,13.5\n197,613,13.0\n197,614,12.5\n197,615,12.0\n197,616,11.5\n197,617,11.0\n197,618,10.5\n197,619,10.0\n197,620,9.5\n197,621,9.0\n197,622,8.5\n197,623,9.0\n197,624,9.5\n198,0,15.0\n198,1,14.5\n198,2,14.0\n198,3,13.5\n198,4,13.0\n198,5,12.5\n198,6,12.0\n198,7,11.5\n198,8,11.0\n198,9,10.5\n198,10,10.0\n198,11,9.5\n198,12,9.0\n198,13,8.5\n198,14,8.0\n198,15,7.5\n198,16,7.0\n198,17,6.5\n198,18,6.0\n198,19,5.5\n198,20,5.0\n198,21,4.5\n198,22,4.0\n198,23,3.5\n198,24,4.0\n198,25,14.5\n198,26,14.0\n198,27,13.5\n198,28,13.0\n198,29,12.5\n198,30,12.0\n198,31,11.5\n198,32,11.0\n198,33,10.5\n198,34,10.0\n198,35,9.5\n198,36,9.0\n198,37,8.5\n198,38,8.0\n198,39,7.5\n198,40,7.0\n198,41,6.5\n198,42,6.0\n198,43,5.5\n198,44,5.0\n198,45,4.5\n198,46,4.0\n198,47,3.5\n198,48,3.0\n198,49,3.5\n198,50,14.0\n198,51,13.5\n198,52,13.0\n198,53,12.5\n198,54,12.0\n198,55,11.5\n198,56,11.0\n198,57,10.5\n198,58,10.0\n198,59,9.5\n198,60,9.0\n198,61,8.5\n198,62,8.0\n198,63,7.5\n198,64,7.0\n198,65,6.5\n198,66,6.0\n198,67,5.5\n198,68,5.0\n198,69,4.5\n198,70,4.0\n198,71,3.5\n198,72,3.0\n198,73,2.5\n198,74,3.0\n198,75,13.5\n198,76,13.0\n198,77,12.5\n198,78,12.0\n198,79,11.5\n198,80,11.0\n198,81,10.5\n198,82,10.0\n198,83,9.5\n198,84,9.0\n198,85,8.5\n198,86,8.0\n198,87,7.5\n198,88,7.0\n198,89,6.5\n198,90,6.0\n198,91,5.5\n198,92,5.0\n198,93,4.5\n198,94,4.0\n198,95,3.5\n198,96,3.0\n198,97,2.5\n198,98,2.0\n198,99,2.5\n198,100,13.0\n198,101,12.5\n198,102,12.0\n198,103,11.5\n198,104,11.0\n198,105,10.5\n198,106,10.0\n198,107,9.5\n198,108,9.0\n198,109,8.5\n198,110,8.0\n198,111,7.5\n198,112,7.0\n198,113,6.5\n198,114,6.0\n198,115,5.5\n198,116,5.0\n198,117,4.5\n198,118,4.0\n198,119,3.5\n198,120,3.0\n198,121,2.5\n198,122,2.0\n198,123,1.5\n198,124,2.0\n198,125,12.5\n198,126,12.0\n198,127,11.5\n198,128,11.0\n198,129,10.5\n198,130,10.0\n198,131,9.5\n198,132,9.0\n198,133,8.5\n198,134,8.0\n198,135,7.5\n198,136,7.0\n198,137,6.5\n198,138,6.0\n198,139,5.5\n198,140,5.0\n198,141,4.5\n198,142,4.0\n198,143,3.5\n198,144,3.0\n198,145,2.5\n198,146,2.0\n198,147,1.5\n198,148,1.0\n198,149,1.5\n198,150,12.0\n198,151,11.5\n198,152,11.0\n198,153,10.5\n198,154,10.0\n198,155,9.5\n198,156,9.0\n198,157,8.5\n198,158,8.0\n198,159,7.5\n198,160,7.0\n198,161,6.5\n198,162,6.0\n198,163,5.5\n198,164,5.0\n198,165,4.5\n198,166,4.0\n198,167,3.5\n198,168,3.0\n198,169,2.5\n198,170,2.0\n198,171,1.5\n198,172,1.0\n198,173,0.5\n198,174,1.0\n198,175,11.5\n198,176,11.0\n198,177,10.5\n198,178,10.0\n198,179,9.5\n198,180,9.0\n198,181,8.5\n198,182,8.0\n198,183,7.5\n198,184,7.0\n198,185,6.5\n198,186,6.0\n198,187,5.5\n198,188,5.0\n198,189,4.5\n198,190,4.0\n198,191,3.5\n198,192,3.0\n198,193,2.5\n198,194,2.0\n198,195,1.5\n198,196,1.0\n198,197,0.5\n198,198,0\n198,199,0.5\n198,200,12.0\n198,201,11.5\n198,202,11.0\n198,203,10.5\n198,204,10.0\n198,205,9.5\n198,206,9.0\n198,207,8.5\n198,208,8.0\n198,209,7.5\n198,210,7.0\n198,211,6.5\n198,212,6.0\n198,213,5.5\n198,214,5.0\n198,215,4.5\n198,216,4.0\n198,217,3.5\n198,218,3.0\n198,219,2.5\n198,220,2.0\n198,221,1.5\n198,222,1.0\n198,223,0.5\n198,224,1.0\n198,225,12.5\n198,226,12.0\n198,227,11.5\n198,228,11.0\n198,229,10.5\n198,230,10.0\n198,231,9.5\n198,232,9.0\n198,233,8.5\n198,234,8.0\n198,235,7.5\n198,236,7.0\n198,237,6.5\n198,238,6.0\n198,239,5.5\n198,240,5.0\n198,241,4.5\n198,242,4.0\n198,243,3.5\n198,244,3.0\n198,245,2.5\n198,246,2.0\n198,247,1.5\n198,248,1.0\n198,249,1.5\n198,250,13.0\n198,251,12.5\n198,252,12.0\n198,253,11.5\n198,254,11.0\n198,255,10.5\n198,256,10.0\n198,257,9.5\n198,258,9.0\n198,259,8.5\n198,260,8.0\n198,261,7.5\n198,262,7.0\n198,263,6.5\n198,264,6.0\n198,265,5.5\n198,266,5.0\n198,267,4.5\n198,268,4.0\n198,269,3.5\n198,270,3.0\n198,271,2.5\n198,272,2.0\n198,273,1.5\n198,274,2.0\n198,275,13.5\n198,276,13.0\n198,277,12.5\n198,278,12.0\n198,279,11.5\n198,280,11.0\n198,281,10.5\n198,282,10.0\n198,283,9.5\n198,284,9.0\n198,285,8.5\n198,286,8.0\n198,287,7.5\n198,288,7.0\n198,289,6.5\n198,290,6.0\n198,291,5.5\n198,292,5.0\n198,293,4.5\n198,294,4.0\n198,295,3.5\n198,296,3.0\n198,297,2.5\n198,298,2.0\n198,299,2.5\n198,300,14.0\n198,301,13.5\n198,302,13.0\n198,303,12.5\n198,304,12.0\n198,305,11.5\n198,306,11.0\n198,307,10.5\n198,308,10.0\n198,309,9.5\n198,310,9.0\n198,311,8.5\n198,312,8.0\n198,313,7.5\n198,314,7.0\n198,315,6.5\n198,316,6.0\n198,317,5.5\n198,318,5.0\n198,319,4.5\n198,320,4.0\n198,321,3.5\n198,322,3.0\n198,323,2.5\n198,324,3.0\n198,325,14.5\n198,326,14.0\n198,327,13.5\n198,328,13.0\n198,329,12.5\n198,330,12.0\n198,331,11.5\n198,332,11.0\n198,333,10.5\n198,334,10.0\n198,335,9.5\n198,336,9.0\n198,337,8.5\n198,338,8.0\n198,339,7.5\n198,340,7.0\n198,341,6.5\n198,342,6.0\n198,343,5.5\n198,344,5.0\n198,345,4.5\n198,346,4.0\n198,347,3.5\n198,348,3.0\n198,349,3.5\n198,350,15.0\n198,351,14.5\n198,352,14.0\n198,353,13.5\n198,354,13.0\n198,355,12.5\n198,356,12.0\n198,357,11.5\n198,358,11.0\n198,359,10.5\n198,360,10.0\n198,361,9.5\n198,362,9.0\n198,363,8.5\n198,364,8.0\n198,365,7.5\n198,366,7.0\n198,367,6.5\n198,368,6.0\n198,369,5.5\n198,370,5.0\n198,371,4.5\n198,372,4.0\n198,373,3.5\n198,374,4.0\n198,375,15.5\n198,376,15.0\n198,377,14.5\n198,378,14.0\n198,379,13.5\n198,380,13.0\n198,381,12.5\n198,382,12.0\n198,383,11.5\n198,384,11.0\n198,385,10.5\n198,386,10.0\n198,387,9.5\n198,388,9.0\n198,389,8.5\n198,390,8.0\n198,391,7.5\n198,392,7.0\n198,393,6.5\n198,394,6.0\n198,395,5.5\n198,396,5.0\n198,397,4.5\n198,398,4.0\n198,399,4.5\n198,400,16.0\n198,401,15.5\n198,402,15.0\n198,403,14.5\n198,404,14.0\n198,405,13.5\n198,406,13.0\n198,407,12.5\n198,408,12.0\n198,409,11.5\n198,410,11.0\n198,411,10.5\n198,412,10.0\n198,413,9.5\n198,414,9.0\n198,415,8.5\n198,416,8.0\n198,417,7.5\n198,418,7.0\n198,419,6.5\n198,420,6.0\n198,421,5.5\n198,422,5.0\n198,423,4.5\n198,424,5.0\n198,425,16.5\n198,426,16.0\n198,427,15.5\n198,428,15.0\n198,429,14.5\n198,430,14.0\n198,431,13.5\n198,432,13.0\n198,433,12.5\n198,434,12.0\n198,435,11.5\n198,436,11.0\n198,437,10.5\n198,438,10.0\n198,439,9.5\n198,440,9.0\n198,441,8.5\n198,442,8.0\n198,443,7.5\n198,444,7.0\n198,445,6.5\n198,446,6.0\n198,447,5.5\n198,448,5.0\n198,449,5.5\n198,450,17.0\n198,451,16.5\n198,452,16.0\n198,453,15.5\n198,454,15.0\n198,455,14.5\n198,456,14.0\n198,457,13.5\n198,458,13.0\n198,459,12.5\n198,460,12.0\n198,461,11.5\n198,462,11.0\n198,463,10.5\n198,464,10.0\n198,465,9.5\n198,466,9.0\n198,467,8.5\n198,468,8.0\n198,469,7.5\n198,470,7.0\n198,471,6.5\n198,472,6.0\n198,473,5.5\n198,474,6.0\n198,475,17.5\n198,476,17.0\n198,477,16.5\n198,478,16.0\n198,479,15.5\n198,480,15.0\n198,481,14.5\n198,482,14.0\n198,483,13.5\n198,484,13.0\n198,485,12.5\n198,486,12.0\n198,487,11.5\n198,488,11.0\n198,489,10.5\n198,490,10.0\n198,491,9.5\n198,492,9.0\n198,493,8.5\n198,494,8.0\n198,495,7.5\n198,496,7.0\n198,497,6.5\n198,498,6.0\n198,499,6.5\n198,500,18.0\n198,501,17.5\n198,502,17.0\n198,503,16.5\n198,504,16.0\n198,505,15.5\n198,506,15.0\n198,507,14.5\n198,508,14.0\n198,509,13.5\n198,510,13.0\n198,511,12.5\n198,512,12.0\n198,513,11.5\n198,514,11.0\n198,515,10.5\n198,516,10.0\n198,517,9.5\n198,518,9.0\n198,519,8.5\n198,520,8.0\n198,521,7.5\n198,522,7.0\n198,523,6.5\n198,524,7.0\n198,525,18.5\n198,526,18.0\n198,527,17.5\n198,528,17.0\n198,529,16.5\n198,530,16.0\n198,531,15.5\n198,532,15.0\n198,533,14.5\n198,534,14.0\n198,535,13.5\n198,536,13.0\n198,537,12.5\n198,538,12.0\n198,539,11.5\n198,540,11.0\n198,541,10.5\n198,542,10.0\n198,543,9.5\n198,544,9.0\n198,545,8.5\n198,546,8.0\n198,547,7.5\n198,548,7.0\n198,549,7.5\n198,550,19.0\n198,551,18.5\n198,552,18.0\n198,553,17.5\n198,554,17.0\n198,555,16.5\n198,556,16.0\n198,557,15.5\n198,558,15.0\n198,559,14.5\n198,560,14.0\n198,561,13.5\n198,562,13.0\n198,563,12.5\n198,564,12.0\n198,565,11.5\n198,566,11.0\n198,567,10.5\n198,568,10.0\n198,569,9.5\n198,570,9.0\n198,571,8.5\n198,572,8.0\n198,573,7.5\n198,574,8.0\n198,575,19.5\n198,576,19.0\n198,577,18.5\n198,578,18.0\n198,579,17.5\n198,580,17.0\n198,581,16.5\n198,582,16.0\n198,583,15.5\n198,584,15.0\n198,585,14.5\n198,586,14.0\n198,587,13.5\n198,588,13.0\n198,589,12.5\n198,590,12.0\n198,591,11.5\n198,592,11.0\n198,593,10.5\n198,594,10.0\n198,595,9.5\n198,596,9.0\n198,597,8.5\n198,598,8.0\n198,599,8.5\n198,600,20.0\n198,601,19.5\n198,602,19.0\n198,603,18.5\n198,604,18.0\n198,605,17.5\n198,606,17.0\n198,607,16.5\n198,608,16.0\n198,609,15.5\n198,610,15.0\n198,611,14.5\n198,612,14.0\n198,613,13.5\n198,614,13.0\n198,615,12.5\n198,616,12.0\n198,617,11.5\n198,618,11.0\n198,619,10.5\n198,620,10.0\n198,621,9.5\n198,622,9.0\n198,623,8.5\n198,624,9.0\n199,0,15.5\n199,1,15.0\n199,2,14.5\n199,3,14.0\n199,4,13.5\n199,5,13.0\n199,6,12.5\n199,7,12.0\n199,8,11.5\n199,9,11.0\n199,10,10.5\n199,11,10.0\n199,12,9.5\n199,13,9.0\n199,14,8.5\n199,15,8.0\n199,16,7.5\n199,17,7.0\n199,18,6.5\n199,19,6.0\n199,20,5.5\n199,21,5.0\n199,22,4.5\n199,23,4.0\n199,24,3.5\n199,25,15.0\n199,26,14.5\n199,27,14.0\n199,28,13.5\n199,29,13.0\n199,30,12.5\n199,31,12.0\n199,32,11.5\n199,33,11.0\n199,34,10.5\n199,35,10.0\n199,36,9.5\n199,37,9.0\n199,38,8.5\n199,39,8.0\n199,40,7.5\n199,41,7.0\n199,42,6.5\n199,43,6.0\n199,44,5.5\n199,45,5.0\n199,46,4.5\n199,47,4.0\n199,48,3.5\n199,49,3.0\n199,50,14.5\n199,51,14.0\n199,52,13.5\n199,53,13.0\n199,54,12.5\n199,55,12.0\n199,56,11.5\n199,57,11.0\n199,58,10.5\n199,59,10.0\n199,60,9.5\n199,61,9.0\n199,62,8.5\n199,63,8.0\n199,64,7.5\n199,65,7.0\n199,66,6.5\n199,67,6.0\n199,68,5.5\n199,69,5.0\n199,70,4.5\n199,71,4.0\n199,72,3.5\n199,73,3.0\n199,74,2.5\n199,75,14.0\n199,76,13.5\n199,77,13.0\n199,78,12.5\n199,79,12.0\n199,80,11.5\n199,81,11.0\n199,82,10.5\n199,83,10.0\n199,84,9.5\n199,85,9.0\n199,86,8.5\n199,87,8.0\n199,88,7.5\n199,89,7.0\n199,90,6.5\n199,91,6.0\n199,92,5.5\n199,93,5.0\n199,94,4.5\n199,95,4.0\n199,96,3.5\n199,97,3.0\n199,98,2.5\n199,99,2.0\n199,100,13.5\n199,101,13.0\n199,102,12.5\n199,103,12.0\n199,104,11.5\n199,105,11.0\n199,106,10.5\n199,107,10.0\n199,108,9.5\n199,109,9.0\n199,110,8.5\n199,111,8.0\n199,112,7.5\n199,113,7.0\n199,114,6.5\n199,115,6.0\n199,116,5.5\n199,117,5.0\n199,118,4.5\n199,119,4.0\n199,120,3.5\n199,121,3.0\n199,122,2.5\n199,123,2.0\n199,124,1.5\n199,125,13.0\n199,126,12.5\n199,127,12.0\n199,128,11.5\n199,129,11.0\n199,130,10.5\n199,131,10.0\n199,132,9.5\n199,133,9.0\n199,134,8.5\n199,135,8.0\n199,136,7.5\n199,137,7.0\n199,138,6.5\n199,139,6.0\n199,140,5.5\n199,141,5.0\n199,142,4.5\n199,143,4.0\n199,144,3.5\n199,145,3.0\n199,146,2.5\n199,147,2.0\n199,148,1.5\n199,149,1.0\n199,150,12.5\n199,151,12.0\n199,152,11.5\n199,153,11.0\n199,154,10.5\n199,155,10.0\n199,156,9.5\n199,157,9.0\n199,158,8.5\n199,159,8.0\n199,160,7.5\n199,161,7.0\n199,162,6.5\n199,163,6.0\n199,164,5.5\n199,165,5.0\n199,166,4.5\n199,167,4.0\n199,168,3.5\n199,169,3.0\n199,170,2.5\n199,171,2.0\n199,172,1.5\n199,173,1.0\n199,174,0.5\n199,175,12.0\n199,176,11.5\n199,177,11.0\n199,178,10.5\n199,179,10.0\n199,180,9.5\n199,181,9.0\n199,182,8.5\n199,183,8.0\n199,184,7.5\n199,185,7.0\n199,186,6.5\n199,187,6.0\n199,188,5.5\n199,189,5.0\n199,190,4.5\n199,191,4.0\n199,192,3.5\n199,193,3.0\n199,194,2.5\n199,195,2.0\n199,196,1.5\n199,197,1.0\n199,198,0.5\n199,199,0\n199,200,12.5\n199,201,12.0\n199,202,11.5\n199,203,11.0\n199,204,10.5\n199,205,10.0\n199,206,9.5\n199,207,9.0\n199,208,8.5\n199,209,8.0\n199,210,7.5\n199,211,7.0\n199,212,6.5\n199,213,6.0\n199,214,5.5\n199,215,5.0\n199,216,4.5\n199,217,4.0\n199,218,3.5\n199,219,3.0\n199,220,2.5\n199,221,2.0\n199,222,1.5\n199,223,1.0\n199,224,0.5\n199,225,13.0\n199,226,12.5\n199,227,12.0\n199,228,11.5\n199,229,11.0\n199,230,10.5\n199,231,10.0\n199,232,9.5\n199,233,9.0\n199,234,8.5\n199,235,8.0\n199,236,7.5\n199,237,7.0\n199,238,6.5\n199,239,6.0\n199,240,5.5\n199,241,5.0\n199,242,4.5\n199,243,4.0\n199,244,3.5\n199,245,3.0\n199,246,2.5\n199,247,2.0\n199,248,1.5\n199,249,1.0\n199,250,13.5\n199,251,13.0\n199,252,12.5\n199,253,12.0\n199,254,11.5\n199,255,11.0\n199,256,10.5\n199,257,10.0\n199,258,9.5\n199,259,9.0\n199,260,8.5\n199,261,8.0\n199,262,7.5\n199,263,7.0\n199,264,6.5\n199,265,6.0\n199,266,5.5\n199,267,5.0\n199,268,4.5\n199,269,4.0\n199,270,3.5\n199,271,3.0\n199,272,2.5\n199,273,2.0\n199,274,1.5\n199,275,14.0\n199,276,13.5\n199,277,13.0\n199,278,12.5\n199,279,12.0\n199,280,11.5\n199,281,11.0\n199,282,10.5\n199,283,10.0\n199,284,9.5\n199,285,9.0\n199,286,8.5\n199,287,8.0\n199,288,7.5\n199,289,7.0\n199,290,6.5\n199,291,6.0\n199,292,5.5\n199,293,5.0\n199,294,4.5\n199,295,4.0\n199,296,3.5\n199,297,3.0\n199,298,2.5\n199,299,2.0\n199,300,14.5\n199,301,14.0\n199,302,13.5\n199,303,13.0\n199,304,12.5\n199,305,12.0\n199,306,11.5\n199,307,11.0\n199,308,10.5\n199,309,10.0\n199,310,9.5\n199,311,9.0\n199,312,8.5\n199,313,8.0\n199,314,7.5\n199,315,7.0\n199,316,6.5\n199,317,6.0\n199,318,5.5\n199,319,5.0\n199,320,4.5\n199,321,4.0\n199,322,3.5\n199,323,3.0\n199,324,2.5\n199,325,15.0\n199,326,14.5\n199,327,14.0\n199,328,13.5\n199,329,13.0\n199,330,12.5\n199,331,12.0\n199,332,11.5\n199,333,11.0\n199,334,10.5\n199,335,10.0\n199,336,9.5\n199,337,9.0\n199,338,8.5\n199,339,8.0\n199,340,7.5\n199,341,7.0\n199,342,6.5\n199,343,6.0\n199,344,5.5\n199,345,5.0\n199,346,4.5\n199,347,4.0\n199,348,3.5\n199,349,3.0\n199,350,15.5\n199,351,15.0\n199,352,14.5\n199,353,14.0\n199,354,13.5\n199,355,13.0\n199,356,12.5\n199,357,12.0\n199,358,11.5\n199,359,11.0\n199,360,10.5\n199,361,10.0\n199,362,9.5\n199,363,9.0\n199,364,8.5\n199,365,8.0\n199,366,7.5\n199,367,7.0\n199,368,6.5\n199,369,6.0\n199,370,5.5\n199,371,5.0\n199,372,4.5\n199,373,4.0\n199,374,3.5\n199,375,16.0\n199,376,15.5\n199,377,15.0\n199,378,14.5\n199,379,14.0\n199,380,13.5\n199,381,13.0\n199,382,12.5\n199,383,12.0\n199,384,11.5\n199,385,11.0\n199,386,10.5\n199,387,10.0\n199,388,9.5\n199,389,9.0\n199,390,8.5\n199,391,8.0\n199,392,7.5\n199,393,7.0\n199,394,6.5\n199,395,6.0\n199,396,5.5\n199,397,5.0\n199,398,4.5\n199,399,4.0\n199,400,16.5\n199,401,16.0\n199,402,15.5\n199,403,15.0\n199,404,14.5\n199,405,14.0\n199,406,13.5\n199,407,13.0\n199,408,12.5\n199,409,12.0\n199,410,11.5\n199,411,11.0\n199,412,10.5\n199,413,10.0\n199,414,9.5\n199,415,9.0\n199,416,8.5\n199,417,8.0\n199,418,7.5\n199,419,7.0\n199,420,6.5\n199,421,6.0\n199,422,5.5\n199,423,5.0\n199,424,4.5\n199,425,17.0\n199,426,16.5\n199,427,16.0\n199,428,15.5\n199,429,15.0\n199,430,14.5\n199,431,14.0\n199,432,13.5\n199,433,13.0\n199,434,12.5\n199,435,12.0\n199,436,11.5\n199,437,11.0\n199,438,10.5\n199,439,10.0\n199,440,9.5\n199,441,9.0\n199,442,8.5\n199,443,8.0\n199,444,7.5\n199,445,7.0\n199,446,6.5\n199,447,6.0\n199,448,5.5\n199,449,5.0\n199,450,17.5\n199,451,17.0\n199,452,16.5\n199,453,16.0\n199,454,15.5\n199,455,15.0\n199,456,14.5\n199,457,14.0\n199,458,13.5\n199,459,13.0\n199,460,12.5\n199,461,12.0\n199,462,11.5\n199,463,11.0\n199,464,10.5\n199,465,10.0\n199,466,9.5\n199,467,9.0\n199,468,8.5\n199,469,8.0\n199,470,7.5\n199,471,7.0\n199,472,6.5\n199,473,6.0\n199,474,5.5\n199,475,18.0\n199,476,17.5\n199,477,17.0\n199,478,16.5\n199,479,16.0\n199,480,15.5\n199,481,15.0\n199,482,14.5\n199,483,14.0\n199,484,13.5\n199,485,13.0\n199,486,12.5\n199,487,12.0\n199,488,11.5\n199,489,11.0\n199,490,10.5\n199,491,10.0\n199,492,9.5\n199,493,9.0\n199,494,8.5\n199,495,8.0\n199,496,7.5\n199,497,7.0\n199,498,6.5\n199,499,6.0\n199,500,18.5\n199,501,18.0\n199,502,17.5\n199,503,17.0\n199,504,16.5\n199,505,16.0\n199,506,15.5\n199,507,15.0\n199,508,14.5\n199,509,14.0\n199,510,13.5\n199,511,13.0\n199,512,12.5\n199,513,12.0\n199,514,11.5\n199,515,11.0\n199,516,10.5\n199,517,10.0\n199,518,9.5\n199,519,9.0\n199,520,8.5\n199,521,8.0\n199,522,7.5\n199,523,7.0\n199,524,6.5\n199,525,19.0\n199,526,18.5\n199,527,18.0\n199,528,17.5\n199,529,17.0\n199,530,16.5\n199,531,16.0\n199,532,15.5\n199,533,15.0\n199,534,14.5\n199,535,14.0\n199,536,13.5\n199,537,13.0\n199,538,12.5\n199,539,12.0\n199,540,11.5\n199,541,11.0\n199,542,10.5\n199,543,10.0\n199,544,9.5\n199,545,9.0\n199,546,8.5\n199,547,8.0\n199,548,7.5\n199,549,7.0\n199,550,19.5\n199,551,19.0\n199,552,18.5\n199,553,18.0\n199,554,17.5\n199,555,17.0\n199,556,16.5\n199,557,16.0\n199,558,15.5\n199,559,15.0\n199,560,14.5\n199,561,14.0\n199,562,13.5\n199,563,13.0\n199,564,12.5\n199,565,12.0\n199,566,11.5\n199,567,11.0\n199,568,10.5\n199,569,10.0\n199,570,9.5\n199,571,9.0\n199,572,8.5\n199,573,8.0\n199,574,7.5\n199,575,20.0\n199,576,19.5\n199,577,19.0\n199,578,18.5\n199,579,18.0\n199,580,17.5\n199,581,17.0\n199,582,16.5\n199,583,16.0\n199,584,15.5\n199,585,15.0\n199,586,14.5\n199,587,14.0\n199,588,13.5\n199,589,13.0\n199,590,12.5\n199,591,12.0\n199,592,11.5\n199,593,11.0\n199,594,10.5\n199,595,10.0\n199,596,9.5\n199,597,9.0\n199,598,8.5\n199,599,8.0\n199,600,20.5\n199,601,20.0\n199,602,19.5\n199,603,19.0\n199,604,18.5\n199,605,18.0\n199,606,17.5\n199,607,17.0\n199,608,16.5\n199,609,16.0\n199,610,15.5\n199,611,15.0\n199,612,14.5\n199,613,14.0\n199,614,13.5\n199,615,13.0\n199,616,12.5\n199,617,12.0\n199,618,11.5\n199,619,11.0\n199,620,10.5\n199,621,10.0\n199,622,9.5\n199,623,9.0\n199,624,8.5\n200,0,4.0\n200,1,4.5\n200,2,5.0\n200,3,5.5\n200,4,6.0\n200,5,6.5\n200,6,7.0\n200,7,7.5\n200,8,8.0\n200,9,8.5\n200,10,9.0\n200,11,9.5\n200,12,10.0\n200,13,10.5\n200,14,11.0\n200,15,11.5\n200,16,12.0\n200,17,12.5\n200,18,13.0\n200,19,13.5\n200,20,14.0\n200,21,14.5\n200,22,15.0\n200,23,15.5\n200,24,16.0\n200,25,3.5\n200,26,4.0\n200,27,4.5\n200,28,5.0\n200,29,5.5\n200,30,6.0\n200,31,6.5\n200,32,7.0\n200,33,7.5\n200,34,8.0\n200,35,8.5\n200,36,9.0\n200,37,9.5\n200,38,10.0\n200,39,10.5\n200,40,11.0\n200,41,11.5\n200,42,12.0\n200,43,12.5\n200,44,13.0\n200,45,13.5\n200,46,14.0\n200,47,14.5\n200,48,15.0\n200,49,15.5\n200,50,3.0\n200,51,3.5\n200,52,4.0\n200,53,4.5\n200,54,5.0\n200,55,5.5\n200,56,6.0\n200,57,6.5\n200,58,7.0\n200,59,7.5\n200,60,8.0\n200,61,8.5\n200,62,9.0\n200,63,9.5\n200,64,10.0\n200,65,10.5\n200,66,11.0\n200,67,11.5\n200,68,12.0\n200,69,12.5\n200,70,13.0\n200,71,13.5\n200,72,14.0\n200,73,14.5\n200,74,15.0\n200,75,2.5\n200,76,3.0\n200,77,3.5\n200,78,4.0\n200,79,4.5\n200,80,5.0\n200,81,5.5\n200,82,6.0\n200,83,6.5\n200,84,7.0\n200,85,7.5\n200,86,8.0\n200,87,8.5\n200,88,9.0\n200,89,9.5\n200,90,10.0\n200,91,10.5\n200,92,11.0\n200,93,11.5\n200,94,12.0\n200,95,12.5\n200,96,13.0\n200,97,13.5\n200,98,14.0\n200,99,14.5\n200,100,2.0\n200,101,2.5\n200,102,3.0\n200,103,3.5\n200,104,4.0\n200,105,4.5\n200,106,5.0\n200,107,5.5\n200,108,6.0\n200,109,6.5\n200,110,7.0\n200,111,7.5\n200,112,8.0\n200,113,8.5\n200,114,9.0\n200,115,9.5\n200,116,10.0\n200,117,10.5\n200,118,11.0\n200,119,11.5\n200,120,12.0\n200,121,12.5\n200,122,13.0\n200,123,13.5\n200,124,14.0\n200,125,1.5\n200,126,2.0\n200,127,2.5\n200,128,3.0\n200,129,3.5\n200,130,4.0\n200,131,4.5\n200,132,5.0\n200,133,5.5\n200,134,6.0\n200,135,6.5\n200,136,7.0\n200,137,7.5\n200,138,8.0\n200,139,8.5\n200,140,9.0\n200,141,9.5\n200,142,10.0\n200,143,10.5\n200,144,11.0\n200,145,11.5\n200,146,12.0\n200,147,12.5\n200,148,13.0\n200,149,13.5\n200,150,1.0\n200,151,1.5\n200,152,2.0\n200,153,2.5\n200,154,3.0\n200,155,3.5\n200,156,4.0\n200,157,4.5\n200,158,5.0\n200,159,5.5\n200,160,6.0\n200,161,6.5\n200,162,7.0\n200,163,7.5\n200,164,8.0\n200,165,8.5\n200,166,9.0\n200,167,9.5\n200,168,10.0\n200,169,10.5\n200,170,11.0\n200,171,11.5\n200,172,12.0\n200,173,12.5\n200,174,13.0\n200,175,0.5\n200,176,1.0\n200,177,1.5\n200,178,2.0\n200,179,2.5\n200,180,3.0\n200,181,3.5\n200,182,4.0\n200,183,4.5\n200,184,5.0\n200,185,5.5\n200,186,6.0\n200,187,6.5\n200,188,7.0\n200,189,7.5\n200,190,8.0\n200,191,8.5\n200,192,9.0\n200,193,9.5\n200,194,10.0\n200,195,10.5\n200,196,11.0\n200,197,11.5\n200,198,12.0\n200,199,12.5\n200,200,0\n200,201,0.5\n200,202,1.0\n200,203,1.5\n200,204,2.0\n200,205,2.5\n200,206,3.0\n200,207,3.5\n200,208,4.0\n200,209,4.5\n200,210,5.0\n200,211,5.5\n200,212,6.0\n200,213,6.5\n200,214,7.0\n200,215,7.5\n200,216,8.0\n200,217,8.5\n200,218,9.0\n200,219,9.5\n200,220,10.0\n200,221,10.5\n200,222,11.0\n200,223,11.5\n200,224,12.0\n200,225,0.5\n200,226,1.0\n200,227,1.5\n200,228,2.0\n200,229,2.5\n200,230,3.0\n200,231,3.5\n200,232,4.0\n200,233,4.5\n200,234,5.0\n200,235,5.5\n200,236,6.0\n200,237,6.5\n200,238,7.0\n200,239,7.5\n200,240,8.0\n200,241,8.5\n200,242,9.0\n200,243,9.5\n200,244,10.0\n200,245,10.5\n200,246,11.0\n200,247,11.5\n200,248,12.0\n200,249,12.5\n200,250,1.0\n200,251,1.5\n200,252,2.0\n200,253,2.5\n200,254,3.0\n200,255,3.5\n200,256,4.0\n200,257,4.5\n200,258,5.0\n200,259,5.5\n200,260,6.0\n200,261,6.5\n200,262,7.0\n200,263,7.5\n200,264,8.0\n200,265,8.5\n200,266,9.0\n200,267,9.5\n200,268,10.0\n200,269,10.5\n200,270,11.0\n200,271,11.5\n200,272,12.0\n200,273,12.5\n200,274,13.0\n200,275,1.5\n200,276,2.0\n200,277,2.5\n200,278,3.0\n200,279,3.5\n200,280,4.0\n200,281,4.5\n200,282,5.0\n200,283,5.5\n200,284,6.0\n200,285,6.5\n200,286,7.0\n200,287,7.5\n200,288,8.0\n200,289,8.5\n200,290,9.0\n200,291,9.5\n200,292,10.0\n200,293,10.5\n200,294,11.0\n200,295,11.5\n200,296,12.0\n200,297,12.5\n200,298,13.0\n200,299,13.5\n200,300,2.0\n200,301,2.5\n200,302,3.0\n200,303,3.5\n200,304,4.0\n200,305,4.5\n200,306,5.0\n200,307,5.5\n200,308,6.0\n200,309,6.5\n200,310,7.0\n200,311,7.5\n200,312,8.0\n200,313,8.5\n200,314,9.0\n200,315,9.5\n200,316,10.0\n200,317,10.5\n200,318,11.0\n200,319,11.5\n200,320,12.0\n200,321,12.5\n200,322,13.0\n200,323,13.5\n200,324,14.0\n200,325,2.5\n200,326,3.0\n200,327,3.5\n200,328,4.0\n200,329,4.5\n200,330,5.0\n200,331,5.5\n200,332,6.0\n200,333,6.5\n200,334,7.0\n200,335,7.5\n200,336,8.0\n200,337,8.5\n200,338,9.0\n200,339,9.5\n200,340,10.0\n200,341,10.5\n200,342,11.0\n200,343,11.5\n200,344,12.0\n200,345,12.5\n200,346,13.0\n200,347,13.5\n200,348,14.0\n200,349,14.5\n200,350,3.0\n200,351,3.5\n200,352,4.0\n200,353,4.5\n200,354,5.0\n200,355,5.5\n200,356,6.0\n200,357,6.5\n200,358,7.0\n200,359,7.5\n200,360,8.0\n200,361,8.5\n200,362,9.0\n200,363,9.5\n200,364,10.0\n200,365,10.5\n200,366,11.0\n200,367,11.5\n200,368,12.0\n200,369,12.5\n200,370,13.0\n200,371,13.5\n200,372,14.0\n200,373,14.5\n200,374,15.0\n200,375,3.5\n200,376,4.0\n200,377,4.5\n200,378,5.0\n200,379,5.5\n200,380,6.0\n200,381,6.5\n200,382,7.0\n200,383,7.5\n200,384,8.0\n200,385,8.5\n200,386,9.0\n200,387,9.5\n200,388,10.0\n200,389,10.5\n200,390,11.0\n200,391,11.5\n200,392,12.0\n200,393,12.5\n200,394,13.0\n200,395,13.5\n200,396,14.0\n200,397,14.5\n200,398,15.0\n200,399,15.5\n200,400,4.0\n200,401,4.5\n200,402,5.0\n200,403,5.5\n200,404,6.0\n200,405,6.5\n200,406,7.0\n200,407,7.5\n200,408,8.0\n200,409,8.5\n200,410,9.0\n200,411,9.5\n200,412,10.0\n200,413,10.5\n200,414,11.0\n200,415,11.5\n200,416,12.0\n200,417,12.5\n200,418,13.0\n200,419,13.5\n200,420,14.0\n200,421,14.5\n200,422,15.0\n200,423,15.5\n200,424,16.0\n200,425,4.5\n200,426,5.0\n200,427,5.5\n200,428,6.0\n200,429,6.5\n200,430,7.0\n200,431,7.5\n200,432,8.0\n200,433,8.5\n200,434,9.0\n200,435,9.5\n200,436,10.0\n200,437,10.5\n200,438,11.0\n200,439,11.5\n200,440,12.0\n200,441,12.5\n200,442,13.0\n200,443,13.5\n200,444,14.0\n200,445,14.5\n200,446,15.0\n200,447,15.5\n200,448,16.0\n200,449,16.5\n200,450,5.0\n200,451,5.5\n200,452,6.0\n200,453,6.5\n200,454,7.0\n200,455,7.5\n200,456,8.0\n200,457,8.5\n200,458,9.0\n200,459,9.5\n200,460,10.0\n200,461,10.5\n200,462,11.0\n200,463,11.5\n200,464,12.0\n200,465,12.5\n200,466,13.0\n200,467,13.5\n200,468,14.0\n200,469,14.5\n200,470,15.0\n200,471,15.5\n200,472,16.0\n200,473,16.5\n200,474,17.0\n200,475,5.5\n200,476,6.0\n200,477,6.5\n200,478,7.0\n200,479,7.5\n200,480,8.0\n200,481,8.5\n200,482,9.0\n200,483,9.5\n200,484,10.0\n200,485,10.5\n200,486,11.0\n200,487,11.5\n200,488,12.0\n200,489,12.5\n200,490,13.0\n200,491,13.5\n200,492,14.0\n200,493,14.5\n200,494,15.0\n200,495,15.5\n200,496,16.0\n200,497,16.5\n200,498,17.0\n200,499,17.5\n200,500,6.0\n200,501,6.5\n200,502,7.0\n200,503,7.5\n200,504,8.0\n200,505,8.5\n200,506,9.0\n200,507,9.5\n200,508,10.0\n200,509,10.5\n200,510,11.0\n200,511,11.5\n200,512,12.0\n200,513,12.5\n200,514,13.0\n200,515,13.5\n200,516,14.0\n200,517,14.5\n200,518,15.0\n200,519,15.5\n200,520,16.0\n200,521,16.5\n200,522,17.0\n200,523,17.5\n200,524,18.0\n200,525,6.5\n200,526,7.0\n200,527,7.5\n200,528,8.0\n200,529,8.5\n200,530,9.0\n200,531,9.5\n200,532,10.0\n200,533,10.5\n200,534,11.0\n200,535,11.5\n200,536,12.0\n200,537,12.5\n200,538,13.0\n200,539,13.5\n200,540,14.0\n200,541,14.5\n200,542,15.0\n200,543,15.5\n200,544,16.0\n200,545,16.5\n200,546,17.0\n200,547,17.5\n200,548,18.0\n200,549,18.5\n200,550,7.0\n200,551,7.5\n200,552,8.0\n200,553,8.5\n200,554,9.0\n200,555,9.5\n200,556,10.0\n200,557,10.5\n200,558,11.0\n200,559,11.5\n200,560,12.0\n200,561,12.5\n200,562,13.0\n200,563,13.5\n200,564,14.0\n200,565,14.5\n200,566,15.0\n200,567,15.5\n200,568,16.0\n200,569,16.5\n200,570,17.0\n200,571,17.5\n200,572,18.0\n200,573,18.5\n200,574,19.0\n200,575,7.5\n200,576,8.0\n200,577,8.5\n200,578,9.0\n200,579,9.5\n200,580,10.0\n200,581,10.5\n200,582,11.0\n200,583,11.5\n200,584,12.0\n200,585,12.5\n200,586,13.0\n200,587,13.5\n200,588,14.0\n200,589,14.5\n200,590,15.0\n200,591,15.5\n200,592,16.0\n200,593,16.5\n200,594,17.0\n200,595,17.5\n200,596,18.0\n200,597,18.5\n200,598,19.0\n200,599,19.5\n200,600,8.0\n200,601,8.5\n200,602,9.0\n200,603,9.5\n200,604,10.0\n200,605,10.5\n200,606,11.0\n200,607,11.5\n200,608,12.0\n200,609,12.5\n200,610,13.0\n200,611,13.5\n200,612,14.0\n200,613,14.5\n200,614,15.0\n200,615,15.5\n200,616,16.0\n200,617,16.5\n200,618,17.0\n200,619,17.5\n200,620,18.0\n200,621,18.5\n200,622,19.0\n200,623,19.5\n200,624,20.0\n201,0,4.5\n201,1,4.0\n201,2,4.5\n201,3,5.0\n201,4,5.5\n201,5,6.0\n201,6,6.5\n201,7,7.0\n201,8,7.5\n201,9,8.0\n201,10,8.5\n201,11,9.0\n201,12,9.5\n201,13,10.0\n201,14,10.5\n201,15,11.0\n201,16,11.5\n201,17,12.0\n201,18,12.5\n201,19,13.0\n201,20,13.5\n201,21,14.0\n201,22,14.5\n201,23,15.0\n201,24,15.5\n201,25,4.0\n201,26,3.5\n201,27,4.0\n201,28,4.5\n201,29,5.0\n201,30,5.5\n201,31,6.0\n201,32,6.5\n201,33,7.0\n201,34,7.5\n201,35,8.0\n201,36,8.5\n201,37,9.0\n201,38,9.5\n201,39,10.0\n201,40,10.5\n201,41,11.0\n201,42,11.5\n201,43,12.0\n201,44,12.5\n201,45,13.0\n201,46,13.5\n201,47,14.0\n201,48,14.5\n201,49,15.0\n201,50,3.5\n201,51,3.0\n201,52,3.5\n201,53,4.0\n201,54,4.5\n201,55,5.0\n201,56,5.5\n201,57,6.0\n201,58,6.5\n201,59,7.0\n201,60,7.5\n201,61,8.0\n201,62,8.5\n201,63,9.0\n201,64,9.5\n201,65,10.0\n201,66,10.5\n201,67,11.0\n201,68,11.5\n201,69,12.0\n201,70,12.5\n201,71,13.0\n201,72,13.5\n201,73,14.0\n201,74,14.5\n201,75,3.0\n201,76,2.5\n201,77,3.0\n201,78,3.5\n201,79,4.0\n201,80,4.5\n201,81,5.0\n201,82,5.5\n201,83,6.0\n201,84,6.5\n201,85,7.0\n201,86,7.5\n201,87,8.0\n201,88,8.5\n201,89,9.0\n201,90,9.5\n201,91,10.0\n201,92,10.5\n201,93,11.0\n201,94,11.5\n201,95,12.0\n201,96,12.5\n201,97,13.0\n201,98,13.5\n201,99,14.0\n201,100,2.5\n201,101,2.0\n201,102,2.5\n201,103,3.0\n201,104,3.5\n201,105,4.0\n201,106,4.5\n201,107,5.0\n201,108,5.5\n201,109,6.0\n201,110,6.5\n201,111,7.0\n201,112,7.5\n201,113,8.0\n201,114,8.5\n201,115,9.0\n201,116,9.5\n201,117,10.0\n201,118,10.5\n201,119,11.0\n201,120,11.5\n201,121,12.0\n201,122,12.5\n201,123,13.0\n201,124,13.5\n201,125,2.0\n201,126,1.5\n201,127,2.0\n201,128,2.5\n201,129,3.0\n201,130,3.5\n201,131,4.0\n201,132,4.5\n201,133,5.0\n201,134,5.5\n201,135,6.0\n201,136,6.5\n201,137,7.0\n201,138,7.5\n201,139,8.0\n201,140,8.5\n201,141,9.0\n201,142,9.5\n201,143,10.0\n201,144,10.5\n201,145,11.0\n201,146,11.5\n201,147,12.0\n201,148,12.5\n201,149,13.0\n201,150,1.5\n201,151,1.0\n201,152,1.5\n201,153,2.0\n201,154,2.5\n201,155,3.0\n201,156,3.5\n201,157,4.0\n201,158,4.5\n201,159,5.0\n201,160,5.5\n201,161,6.0\n201,162,6.5\n201,163,7.0\n201,164,7.5\n201,165,8.0\n201,166,8.5\n201,167,9.0\n201,168,9.5\n201,169,10.0\n201,170,10.5\n201,171,11.0\n201,172,11.5\n201,173,12.0\n201,174,12.5\n201,175,1.0\n201,176,0.5\n201,177,1.0\n201,178,1.5\n201,179,2.0\n201,180,2.5\n201,181,3.0\n201,182,3.5\n201,183,4.0\n201,184,4.5\n201,185,5.0\n201,186,5.5\n201,187,6.0\n201,188,6.5\n201,189,7.0\n201,190,7.5\n201,191,8.0\n201,192,8.5\n201,193,9.0\n201,194,9.5\n201,195,10.0\n201,196,10.5\n201,197,11.0\n201,198,11.5\n201,199,12.0\n201,200,0.5\n201,201,0\n201,202,0.5\n201,203,1.0\n201,204,1.5\n201,205,2.0\n201,206,2.5\n201,207,3.0\n201,208,3.5\n201,209,4.0\n201,210,4.5\n201,211,5.0\n201,212,5.5\n201,213,6.0\n201,214,6.5\n201,215,7.0\n201,216,7.5\n201,217,8.0\n201,218,8.5\n201,219,9.0\n201,220,9.5\n201,221,10.0\n201,222,10.5\n201,223,11.0\n201,224,11.5\n201,225,1.0\n201,226,0.5\n201,227,1.0\n201,228,1.5\n201,229,2.0\n201,230,2.5\n201,231,3.0\n201,232,3.5\n201,233,4.0\n201,234,4.5\n201,235,5.0\n201,236,5.5\n201,237,6.0\n201,238,6.5\n201,239,7.0\n201,240,7.5\n201,241,8.0\n201,242,8.5\n201,243,9.0\n201,244,9.5\n201,245,10.0\n201,246,10.5\n201,247,11.0\n201,248,11.5\n201,249,12.0\n201,250,1.5\n201,251,1.0\n201,252,1.5\n201,253,2.0\n201,254,2.5\n201,255,3.0\n201,256,3.5\n201,257,4.0\n201,258,4.5\n201,259,5.0\n201,260,5.5\n201,261,6.0\n201,262,6.5\n201,263,7.0\n201,264,7.5\n201,265,8.0\n201,266,8.5\n201,267,9.0\n201,268,9.5\n201,269,10.0\n201,270,10.5\n201,271,11.0\n201,272,11.5\n201,273,12.0\n201,274,12.5\n201,275,2.0\n201,276,1.5\n201,277,2.0\n201,278,2.5\n201,279,3.0\n201,280,3.5\n201,281,4.0\n201,282,4.5\n201,283,5.0\n201,284,5.5\n201,285,6.0\n201,286,6.5\n201,287,7.0\n201,288,7.5\n201,289,8.0\n201,290,8.5\n201,291,9.0\n201,292,9.5\n201,293,10.0\n201,294,10.5\n201,295,11.0\n201,296,11.5\n201,297,12.0\n201,298,12.5\n201,299,13.0\n201,300,2.5\n201,301,2.0\n201,302,2.5\n201,303,3.0\n201,304,3.5\n201,305,4.0\n201,306,4.5\n201,307,5.0\n201,308,5.5\n201,309,6.0\n201,310,6.5\n201,311,7.0\n201,312,7.5\n201,313,8.0\n201,314,8.5\n201,315,9.0\n201,316,9.5\n201,317,10.0\n201,318,10.5\n201,319,11.0\n201,320,11.5\n201,321,12.0\n201,322,12.5\n201,323,13.0\n201,324,13.5\n201,325,3.0\n201,326,2.5\n201,327,3.0\n201,328,3.5\n201,329,4.0\n201,330,4.5\n201,331,5.0\n201,332,5.5\n201,333,6.0\n201,334,6.5\n201,335,7.0\n201,336,7.5\n201,337,8.0\n201,338,8.5\n201,339,9.0\n201,340,9.5\n201,341,10.0\n201,342,10.5\n201,343,11.0\n201,344,11.5\n201,345,12.0\n201,346,12.5\n201,347,13.0\n201,348,13.5\n201,349,14.0\n201,350,3.5\n201,351,3.0\n201,352,3.5\n201,353,4.0\n201,354,4.5\n201,355,5.0\n201,356,5.5\n201,357,6.0\n201,358,6.5\n201,359,7.0\n201,360,7.5\n201,361,8.0\n201,362,8.5\n201,363,9.0\n201,364,9.5\n201,365,10.0\n201,366,10.5\n201,367,11.0\n201,368,11.5\n201,369,12.0\n201,370,12.5\n201,371,13.0\n201,372,13.5\n201,373,14.0\n201,374,14.5\n201,375,4.0\n201,376,3.5\n201,377,4.0\n201,378,4.5\n201,379,5.0\n201,380,5.5\n201,381,6.0\n201,382,6.5\n201,383,7.0\n201,384,7.5\n201,385,8.0\n201,386,8.5\n201,387,9.0\n201,388,9.5\n201,389,10.0\n201,390,10.5\n201,391,11.0\n201,392,11.5\n201,393,12.0\n201,394,12.5\n201,395,13.0\n201,396,13.5\n201,397,14.0\n201,398,14.5\n201,399,15.0\n201,400,4.5\n201,401,4.0\n201,402,4.5\n201,403,5.0\n201,404,5.5\n201,405,6.0\n201,406,6.5\n201,407,7.0\n201,408,7.5\n201,409,8.0\n201,410,8.5\n201,411,9.0\n201,412,9.5\n201,413,10.0\n201,414,10.5\n201,415,11.0\n201,416,11.5\n201,417,12.0\n201,418,12.5\n201,419,13.0\n201,420,13.5\n201,421,14.0\n201,422,14.5\n201,423,15.0\n201,424,15.5\n201,425,5.0\n201,426,4.5\n201,427,5.0\n201,428,5.5\n201,429,6.0\n201,430,6.5\n201,431,7.0\n201,432,7.5\n201,433,8.0\n201,434,8.5\n201,435,9.0\n201,436,9.5\n201,437,10.0\n201,438,10.5\n201,439,11.0\n201,440,11.5\n201,441,12.0\n201,442,12.5\n201,443,13.0\n201,444,13.5\n201,445,14.0\n201,446,14.5\n201,447,15.0\n201,448,15.5\n201,449,16.0\n201,450,5.5\n201,451,5.0\n201,452,5.5\n201,453,6.0\n201,454,6.5\n201,455,7.0\n201,456,7.5\n201,457,8.0\n201,458,8.5\n201,459,9.0\n201,460,9.5\n201,461,10.0\n201,462,10.5\n201,463,11.0\n201,464,11.5\n201,465,12.0\n201,466,12.5\n201,467,13.0\n201,468,13.5\n201,469,14.0\n201,470,14.5\n201,471,15.0\n201,472,15.5\n201,473,16.0\n201,474,16.5\n201,475,6.0\n201,476,5.5\n201,477,6.0\n201,478,6.5\n201,479,7.0\n201,480,7.5\n201,481,8.0\n201,482,8.5\n201,483,9.0\n201,484,9.5\n201,485,10.0\n201,486,10.5\n201,487,11.0\n201,488,11.5\n201,489,12.0\n201,490,12.5\n201,491,13.0\n201,492,13.5\n201,493,14.0\n201,494,14.5\n201,495,15.0\n201,496,15.5\n201,497,16.0\n201,498,16.5\n201,499,17.0\n201,500,6.5\n201,501,6.0\n201,502,6.5\n201,503,7.0\n201,504,7.5\n201,505,8.0\n201,506,8.5\n201,507,9.0\n201,508,9.5\n201,509,10.0\n201,510,10.5\n201,511,11.0\n201,512,11.5\n201,513,12.0\n201,514,12.5\n201,515,13.0\n201,516,13.5\n201,517,14.0\n201,518,14.5\n201,519,15.0\n201,520,15.5\n201,521,16.0\n201,522,16.5\n201,523,17.0\n201,524,17.5\n201,525,7.0\n201,526,6.5\n201,527,7.0\n201,528,7.5\n201,529,8.0\n201,530,8.5\n201,531,9.0\n201,532,9.5\n201,533,10.0\n201,534,10.5\n201,535,11.0\n201,536,11.5\n201,537,12.0\n201,538,12.5\n201,539,13.0\n201,540,13.5\n201,541,14.0\n201,542,14.5\n201,543,15.0\n201,544,15.5\n201,545,16.0\n201,546,16.5\n201,547,17.0\n201,548,17.5\n201,549,18.0\n201,550,7.5\n201,551,7.0\n201,552,7.5\n201,553,8.0\n201,554,8.5\n201,555,9.0\n201,556,9.5\n201,557,10.0\n201,558,10.5\n201,559,11.0\n201,560,11.5\n201,561,12.0\n201,562,12.5\n201,563,13.0\n201,564,13.5\n201,565,14.0\n201,566,14.5\n201,567,15.0\n201,568,15.5\n201,569,16.0\n201,570,16.5\n201,571,17.0\n201,572,17.5\n201,573,18.0\n201,574,18.5\n201,575,8.0\n201,576,7.5\n201,577,8.0\n201,578,8.5\n201,579,9.0\n201,580,9.5\n201,581,10.0\n201,582,10.5\n201,583,11.0\n201,584,11.5\n201,585,12.0\n201,586,12.5\n201,587,13.0\n201,588,13.5\n201,589,14.0\n201,590,14.5\n201,591,15.0\n201,592,15.5\n201,593,16.0\n201,594,16.5\n201,595,17.0\n201,596,17.5\n201,597,18.0\n201,598,18.5\n201,599,19.0\n201,600,8.5\n201,601,8.0\n201,602,8.5\n201,603,9.0\n201,604,9.5\n201,605,10.0\n201,606,10.5\n201,607,11.0\n201,608,11.5\n201,609,12.0\n201,610,12.5\n201,611,13.0\n201,612,13.5\n201,613,14.0\n201,614,14.5\n201,615,15.0\n201,616,15.5\n201,617,16.0\n201,618,16.5\n201,619,17.0\n201,620,17.5\n201,621,18.0\n201,622,18.5\n201,623,19.0\n201,624,19.5\n202,0,5.0\n202,1,4.5\n202,2,4.0\n202,3,4.5\n202,4,5.0\n202,5,5.5\n202,6,6.0\n202,7,6.5\n202,8,7.0\n202,9,7.5\n202,10,8.0\n202,11,8.5\n202,12,9.0\n202,13,9.5\n202,14,10.0\n202,15,10.5\n202,16,11.0\n202,17,11.5\n202,18,12.0\n202,19,12.5\n202,20,13.0\n202,21,13.5\n202,22,14.0\n202,23,14.5\n202,24,15.0\n202,25,4.5\n202,26,4.0\n202,27,3.5\n202,28,4.0\n202,29,4.5\n202,30,5.0\n202,31,5.5\n202,32,6.0\n202,33,6.5\n202,34,7.0\n202,35,7.5\n202,36,8.0\n202,37,8.5\n202,38,9.0\n202,39,9.5\n202,40,10.0\n202,41,10.5\n202,42,11.0\n202,43,11.5\n202,44,12.0\n202,45,12.5\n202,46,13.0\n202,47,13.5\n202,48,14.0\n202,49,14.5\n202,50,4.0\n202,51,3.5\n202,52,3.0\n202,53,3.5\n202,54,4.0\n202,55,4.5\n202,56,5.0\n202,57,5.5\n202,58,6.0\n202,59,6.5\n202,60,7.0\n202,61,7.5\n202,62,8.0\n202,63,8.5\n202,64,9.0\n202,65,9.5\n202,66,10.0\n202,67,10.5\n202,68,11.0\n202,69,11.5\n202,70,12.0\n202,71,12.5\n202,72,13.0\n202,73,13.5\n202,74,14.0\n202,75,3.5\n202,76,3.0\n202,77,2.5\n202,78,3.0\n202,79,3.5\n202,80,4.0\n202,81,4.5\n202,82,5.0\n202,83,5.5\n202,84,6.0\n202,85,6.5\n202,86,7.0\n202,87,7.5\n202,88,8.0\n202,89,8.5\n202,90,9.0\n202,91,9.5\n202,92,10.0\n202,93,10.5\n202,94,11.0\n202,95,11.5\n202,96,12.0\n202,97,12.5\n202,98,13.0\n202,99,13.5\n202,100,3.0\n202,101,2.5\n202,102,2.0\n202,103,2.5\n202,104,3.0\n202,105,3.5\n202,106,4.0\n202,107,4.5\n202,108,5.0\n202,109,5.5\n202,110,6.0\n202,111,6.5\n202,112,7.0\n202,113,7.5\n202,114,8.0\n202,115,8.5\n202,116,9.0\n202,117,9.5\n202,118,10.0\n202,119,10.5\n202,120,11.0\n202,121,11.5\n202,122,12.0\n202,123,12.5\n202,124,13.0\n202,125,2.5\n202,126,2.0\n202,127,1.5\n202,128,2.0\n202,129,2.5\n202,130,3.0\n202,131,3.5\n202,132,4.0\n202,133,4.5\n202,134,5.0\n202,135,5.5\n202,136,6.0\n202,137,6.5\n202,138,7.0\n202,139,7.5\n202,140,8.0\n202,141,8.5\n202,142,9.0\n202,143,9.5\n202,144,10.0\n202,145,10.5\n202,146,11.0\n202,147,11.5\n202,148,12.0\n202,149,12.5\n202,150,2.0\n202,151,1.5\n202,152,1.0\n202,153,1.5\n202,154,2.0\n202,155,2.5\n202,156,3.0\n202,157,3.5\n202,158,4.0\n202,159,4.5\n202,160,5.0\n202,161,5.5\n202,162,6.0\n202,163,6.5\n202,164,7.0\n202,165,7.5\n202,166,8.0\n202,167,8.5\n202,168,9.0\n202,169,9.5\n202,170,10.0\n202,171,10.5\n202,172,11.0\n202,173,11.5\n202,174,12.0\n202,175,1.5\n202,176,1.0\n202,177,0.5\n202,178,1.0\n202,179,1.5\n202,180,2.0\n202,181,2.5\n202,182,3.0\n202,183,3.5\n202,184,4.0\n202,185,4.5\n202,186,5.0\n202,187,5.5\n202,188,6.0\n202,189,6.5\n202,190,7.0\n202,191,7.5\n202,192,8.0\n202,193,8.5\n202,194,9.0\n202,195,9.5\n202,196,10.0\n202,197,10.5\n202,198,11.0\n202,199,11.5\n202,200,1.0\n202,201,0.5\n202,202,0\n202,203,0.5\n202,204,1.0\n202,205,1.5\n202,206,2.0\n202,207,2.5\n202,208,3.0\n202,209,3.5\n202,210,4.0\n202,211,4.5\n202,212,5.0\n202,213,5.5\n202,214,6.0\n202,215,6.5\n202,216,7.0\n202,217,7.5\n202,218,8.0\n202,219,8.5\n202,220,9.0\n202,221,9.5\n202,222,10.0\n202,223,10.5\n202,224,11.0\n202,225,1.5\n202,226,1.0\n202,227,0.5\n202,228,1.0\n202,229,1.5\n202,230,2.0\n202,231,2.5\n202,232,3.0\n202,233,3.5\n202,234,4.0\n202,235,4.5\n202,236,5.0\n202,237,5.5\n202,238,6.0\n202,239,6.5\n202,240,7.0\n202,241,7.5\n202,242,8.0\n202,243,8.5\n202,244,9.0\n202,245,9.5\n202,246,10.0\n202,247,10.5\n202,248,11.0\n202,249,11.5\n202,250,2.0\n202,251,1.5\n202,252,1.0\n202,253,1.5\n202,254,2.0\n202,255,2.5\n202,256,3.0\n202,257,3.5\n202,258,4.0\n202,259,4.5\n202,260,5.0\n202,261,5.5\n202,262,6.0\n202,263,6.5\n202,264,7.0\n202,265,7.5\n202,266,8.0\n202,267,8.5\n202,268,9.0\n202,269,9.5\n202,270,10.0\n202,271,10.5\n202,272,11.0\n202,273,11.5\n202,274,12.0\n202,275,2.5\n202,276,2.0\n202,277,1.5\n202,278,2.0\n202,279,2.5\n202,280,3.0\n202,281,3.5\n202,282,4.0\n202,283,4.5\n202,284,5.0\n202,285,5.5\n202,286,6.0\n202,287,6.5\n202,288,7.0\n202,289,7.5\n202,290,8.0\n202,291,8.5\n202,292,9.0\n202,293,9.5\n202,294,10.0\n202,295,10.5\n202,296,11.0\n202,297,11.5\n202,298,12.0\n202,299,12.5\n202,300,3.0\n202,301,2.5\n202,302,2.0\n202,303,2.5\n202,304,3.0\n202,305,3.5\n202,306,4.0\n202,307,4.5\n202,308,5.0\n202,309,5.5\n202,310,6.0\n202,311,6.5\n202,312,7.0\n202,313,7.5\n202,314,8.0\n202,315,8.5\n202,316,9.0\n202,317,9.5\n202,318,10.0\n202,319,10.5\n202,320,11.0\n202,321,11.5\n202,322,12.0\n202,323,12.5\n202,324,13.0\n202,325,3.5\n202,326,3.0\n202,327,2.5\n202,328,3.0\n202,329,3.5\n202,330,4.0\n202,331,4.5\n202,332,5.0\n202,333,5.5\n202,334,6.0\n202,335,6.5\n202,336,7.0\n202,337,7.5\n202,338,8.0\n202,339,8.5\n202,340,9.0\n202,341,9.5\n202,342,10.0\n202,343,10.5\n202,344,11.0\n202,345,11.5\n202,346,12.0\n202,347,12.5\n202,348,13.0\n202,349,13.5\n202,350,4.0\n202,351,3.5\n202,352,3.0\n202,353,3.5\n202,354,4.0\n202,355,4.5\n202,356,5.0\n202,357,5.5\n202,358,6.0\n202,359,6.5\n202,360,7.0\n202,361,7.5\n202,362,8.0\n202,363,8.5\n202,364,9.0\n202,365,9.5\n202,366,10.0\n202,367,10.5\n202,368,11.0\n202,369,11.5\n202,370,12.0\n202,371,12.5\n202,372,13.0\n202,373,13.5\n202,374,14.0\n202,375,4.5\n202,376,4.0\n202,377,3.5\n202,378,4.0\n202,379,4.5\n202,380,5.0\n202,381,5.5\n202,382,6.0\n202,383,6.5\n202,384,7.0\n202,385,7.5\n202,386,8.0\n202,387,8.5\n202,388,9.0\n202,389,9.5\n202,390,10.0\n202,391,10.5\n202,392,11.0\n202,393,11.5\n202,394,12.0\n202,395,12.5\n202,396,13.0\n202,397,13.5\n202,398,14.0\n202,399,14.5\n202,400,5.0\n202,401,4.5\n202,402,4.0\n202,403,4.5\n202,404,5.0\n202,405,5.5\n202,406,6.0\n202,407,6.5\n202,408,7.0\n202,409,7.5\n202,410,8.0\n202,411,8.5\n202,412,9.0\n202,413,9.5\n202,414,10.0\n202,415,10.5\n202,416,11.0\n202,417,11.5\n202,418,12.0\n202,419,12.5\n202,420,13.0\n202,421,13.5\n202,422,14.0\n202,423,14.5\n202,424,15.0\n202,425,5.5\n202,426,5.0\n202,427,4.5\n202,428,5.0\n202,429,5.5\n202,430,6.0\n202,431,6.5\n202,432,7.0\n202,433,7.5\n202,434,8.0\n202,435,8.5\n202,436,9.0\n202,437,9.5\n202,438,10.0\n202,439,10.5\n202,440,11.0\n202,441,11.5\n202,442,12.0\n202,443,12.5\n202,444,13.0\n202,445,13.5\n202,446,14.0\n202,447,14.5\n202,448,15.0\n202,449,15.5\n202,450,6.0\n202,451,5.5\n202,452,5.0\n202,453,5.5\n202,454,6.0\n202,455,6.5\n202,456,7.0\n202,457,7.5\n202,458,8.0\n202,459,8.5\n202,460,9.0\n202,461,9.5\n202,462,10.0\n202,463,10.5\n202,464,11.0\n202,465,11.5\n202,466,12.0\n202,467,12.5\n202,468,13.0\n202,469,13.5\n202,470,14.0\n202,471,14.5\n202,472,15.0\n202,473,15.5\n202,474,16.0\n202,475,6.5\n202,476,6.0\n202,477,5.5\n202,478,6.0\n202,479,6.5\n202,480,7.0\n202,481,7.5\n202,482,8.0\n202,483,8.5\n202,484,9.0\n202,485,9.5\n202,486,10.0\n202,487,10.5\n202,488,11.0\n202,489,11.5\n202,490,12.0\n202,491,12.5\n202,492,13.0\n202,493,13.5\n202,494,14.0\n202,495,14.5\n202,496,15.0\n202,497,15.5\n202,498,16.0\n202,499,16.5\n202,500,7.0\n202,501,6.5\n202,502,6.0\n202,503,6.5\n202,504,7.0\n202,505,7.5\n202,506,8.0\n202,507,8.5\n202,508,9.0\n202,509,9.5\n202,510,10.0\n202,511,10.5\n202,512,11.0\n202,513,11.5\n202,514,12.0\n202,515,12.5\n202,516,13.0\n202,517,13.5\n202,518,14.0\n202,519,14.5\n202,520,15.0\n202,521,15.5\n202,522,16.0\n202,523,16.5\n202,524,17.0\n202,525,7.5\n202,526,7.0\n202,527,6.5\n202,528,7.0\n202,529,7.5\n202,530,8.0\n202,531,8.5\n202,532,9.0\n202,533,9.5\n202,534,10.0\n202,535,10.5\n202,536,11.0\n202,537,11.5\n202,538,12.0\n202,539,12.5\n202,540,13.0\n202,541,13.5\n202,542,14.0\n202,543,14.5\n202,544,15.0\n202,545,15.5\n202,546,16.0\n202,547,16.5\n202,548,17.0\n202,549,17.5\n202,550,8.0\n202,551,7.5\n202,552,7.0\n202,553,7.5\n202,554,8.0\n202,555,8.5\n202,556,9.0\n202,557,9.5\n202,558,10.0\n202,559,10.5\n202,560,11.0\n202,561,11.5\n202,562,12.0\n202,563,12.5\n202,564,13.0\n202,565,13.5\n202,566,14.0\n202,567,14.5\n202,568,15.0\n202,569,15.5\n202,570,16.0\n202,571,16.5\n202,572,17.0\n202,573,17.5\n202,574,18.0\n202,575,8.5\n202,576,8.0\n202,577,7.5\n202,578,8.0\n202,579,8.5\n202,580,9.0\n202,581,9.5\n202,582,10.0\n202,583,10.5\n202,584,11.0\n202,585,11.5\n202,586,12.0\n202,587,12.5\n202,588,13.0\n202,589,13.5\n202,590,14.0\n202,591,14.5\n202,592,15.0\n202,593,15.5\n202,594,16.0\n202,595,16.5\n202,596,17.0\n202,597,17.5\n202,598,18.0\n202,599,18.5\n202,600,9.0\n202,601,8.5\n202,602,8.0\n202,603,8.5\n202,604,9.0\n202,605,9.5\n202,606,10.0\n202,607,10.5\n202,608,11.0\n202,609,11.5\n202,610,12.0\n202,611,12.5\n202,612,13.0\n202,613,13.5\n202,614,14.0\n202,615,14.5\n202,616,15.0\n202,617,15.5\n202,618,16.0\n202,619,16.5\n202,620,17.0\n202,621,17.5\n202,622,18.0\n202,623,18.5\n202,624,19.0\n203,0,5.5\n203,1,5.0\n203,2,4.5\n203,3,4.0\n203,4,4.5\n203,5,5.0\n203,6,5.5\n203,7,6.0\n203,8,6.5\n203,9,7.0\n203,10,7.5\n203,11,8.0\n203,12,8.5\n203,13,9.0\n203,14,9.5\n203,15,10.0\n203,16,10.5\n203,17,11.0\n203,18,11.5\n203,19,12.0\n203,20,12.5\n203,21,13.0\n203,22,13.5\n203,23,14.0\n203,24,14.5\n203,25,5.0\n203,26,4.5\n203,27,4.0\n203,28,3.5\n203,29,4.0\n203,30,4.5\n203,31,5.0\n203,32,5.5\n203,33,6.0\n203,34,6.5\n203,35,7.0\n203,36,7.5\n203,37,8.0\n203,38,8.5\n203,39,9.0\n203,40,9.5\n203,41,10.0\n203,42,10.5\n203,43,11.0\n203,44,11.5\n203,45,12.0\n203,46,12.5\n203,47,13.0\n203,48,13.5\n203,49,14.0\n203,50,4.5\n203,51,4.0\n203,52,3.5\n203,53,3.0\n203,54,3.5\n203,55,4.0\n203,56,4.5\n203,57,5.0\n203,58,5.5\n203,59,6.0\n203,60,6.5\n203,61,7.0\n203,62,7.5\n203,63,8.0\n203,64,8.5\n203,65,9.0\n203,66,9.5\n203,67,10.0\n203,68,10.5\n203,69,11.0\n203,70,11.5\n203,71,12.0\n203,72,12.5\n203,73,13.0\n203,74,13.5\n203,75,4.0\n203,76,3.5\n203,77,3.0\n203,78,2.5\n203,79,3.0\n203,80,3.5\n203,81,4.0\n203,82,4.5\n203,83,5.0\n203,84,5.5\n203,85,6.0\n203,86,6.5\n203,87,7.0\n203,88,7.5\n203,89,8.0\n203,90,8.5\n203,91,9.0\n203,92,9.5\n203,93,10.0\n203,94,10.5\n203,95,11.0\n203,96,11.5\n203,97,12.0\n203,98,12.5\n203,99,13.0\n203,100,3.5\n203,101,3.0\n203,102,2.5\n203,103,2.0\n203,104,2.5\n203,105,3.0\n203,106,3.5\n203,107,4.0\n203,108,4.5\n203,109,5.0\n203,110,5.5\n203,111,6.0\n203,112,6.5\n203,113,7.0\n203,114,7.5\n203,115,8.0\n203,116,8.5\n203,117,9.0\n203,118,9.5\n203,119,10.0\n203,120,10.5\n203,121,11.0\n203,122,11.5\n203,123,12.0\n203,124,12.5\n203,125,3.0\n203,126,2.5\n203,127,2.0\n203,128,1.5\n203,129,2.0\n203,130,2.5\n203,131,3.0\n203,132,3.5\n203,133,4.0\n203,134,4.5\n203,135,5.0\n203,136,5.5\n203,137,6.0\n203,138,6.5\n203,139,7.0\n203,140,7.5\n203,141,8.0\n203,142,8.5\n203,143,9.0\n203,144,9.5\n203,145,10.0\n203,146,10.5\n203,147,11.0\n203,148,11.5\n203,149,12.0\n203,150,2.5\n203,151,2.0\n203,152,1.5\n203,153,1.0\n203,154,1.5\n203,155,2.0\n203,156,2.5\n203,157,3.0\n203,158,3.5\n203,159,4.0\n203,160,4.5\n203,161,5.0\n203,162,5.5\n203,163,6.0\n203,164,6.5\n203,165,7.0\n203,166,7.5\n203,167,8.0\n203,168,8.5\n203,169,9.0\n203,170,9.5\n203,171,10.0\n203,172,10.5\n203,173,11.0\n203,174,11.5\n203,175,2.0\n203,176,1.5\n203,177,1.0\n203,178,0.5\n203,179,1.0\n203,180,1.5\n203,181,2.0\n203,182,2.5\n203,183,3.0\n203,184,3.5\n203,185,4.0\n203,186,4.5\n203,187,5.0\n203,188,5.5\n203,189,6.0\n203,190,6.5\n203,191,7.0\n203,192,7.5\n203,193,8.0\n203,194,8.5\n203,195,9.0\n203,196,9.5\n203,197,10.0\n203,198,10.5\n203,199,11.0\n203,200,1.5\n203,201,1.0\n203,202,0.5\n203,203,0\n203,204,0.5\n203,205,1.0\n203,206,1.5\n203,207,2.0\n203,208,2.5\n203,209,3.0\n203,210,3.5\n203,211,4.0\n203,212,4.5\n203,213,5.0\n203,214,5.5\n203,215,6.0\n203,216,6.5\n203,217,7.0\n203,218,7.5\n203,219,8.0\n203,220,8.5\n203,221,9.0\n203,222,9.5\n203,223,10.0\n203,224,10.5\n203,225,2.0\n203,226,1.5\n203,227,1.0\n203,228,0.5\n203,229,1.0\n203,230,1.5\n203,231,2.0\n203,232,2.5\n203,233,3.0\n203,234,3.5\n203,235,4.0\n203,236,4.5\n203,237,5.0\n203,238,5.5\n203,239,6.0\n203,240,6.5\n203,241,7.0\n203,242,7.5\n203,243,8.0\n203,244,8.5\n203,245,9.0\n203,246,9.5\n203,247,10.0\n203,248,10.5\n203,249,11.0\n203,250,2.5\n203,251,2.0\n203,252,1.5\n203,253,1.0\n203,254,1.5\n203,255,2.0\n203,256,2.5\n203,257,3.0\n203,258,3.5\n203,259,4.0\n203,260,4.5\n203,261,5.0\n203,262,5.5\n203,263,6.0\n203,264,6.5\n203,265,7.0\n203,266,7.5\n203,267,8.0\n203,268,8.5\n203,269,9.0\n203,270,9.5\n203,271,10.0\n203,272,10.5\n203,273,11.0\n203,274,11.5\n203,275,3.0\n203,276,2.5\n203,277,2.0\n203,278,1.5\n203,279,2.0\n203,280,2.5\n203,281,3.0\n203,282,3.5\n203,283,4.0\n203,284,4.5\n203,285,5.0\n203,286,5.5\n203,287,6.0\n203,288,6.5\n203,289,7.0\n203,290,7.5\n203,291,8.0\n203,292,8.5\n203,293,9.0\n203,294,9.5\n203,295,10.0\n203,296,10.5\n203,297,11.0\n203,298,11.5\n203,299,12.0\n203,300,3.5\n203,301,3.0\n203,302,2.5\n203,303,2.0\n203,304,2.5\n203,305,3.0\n203,306,3.5\n203,307,4.0\n203,308,4.5\n203,309,5.0\n203,310,5.5\n203,311,6.0\n203,312,6.5\n203,313,7.0\n203,314,7.5\n203,315,8.0\n203,316,8.5\n203,317,9.0\n203,318,9.5\n203,319,10.0\n203,320,10.5\n203,321,11.0\n203,322,11.5\n203,323,12.0\n203,324,12.5\n203,325,4.0\n203,326,3.5\n203,327,3.0\n203,328,2.5\n203,329,3.0\n203,330,3.5\n203,331,4.0\n203,332,4.5\n203,333,5.0\n203,334,5.5\n203,335,6.0\n203,336,6.5\n203,337,7.0\n203,338,7.5\n203,339,8.0\n203,340,8.5\n203,341,9.0\n203,342,9.5\n203,343,10.0\n203,344,10.5\n203,345,11.0\n203,346,11.5\n203,347,12.0\n203,348,12.5\n203,349,13.0\n203,350,4.5\n203,351,4.0\n203,352,3.5\n203,353,3.0\n203,354,3.5\n203,355,4.0\n203,356,4.5\n203,357,5.0\n203,358,5.5\n203,359,6.0\n203,360,6.5\n203,361,7.0\n203,362,7.5\n203,363,8.0\n203,364,8.5\n203,365,9.0\n203,366,9.5\n203,367,10.0\n203,368,10.5\n203,369,11.0\n203,370,11.5\n203,371,12.0\n203,372,12.5\n203,373,13.0\n203,374,13.5\n203,375,5.0\n203,376,4.5\n203,377,4.0\n203,378,3.5\n203,379,4.0\n203,380,4.5\n203,381,5.0\n203,382,5.5\n203,383,6.0\n203,384,6.5\n203,385,7.0\n203,386,7.5\n203,387,8.0\n203,388,8.5\n203,389,9.0\n203,390,9.5\n203,391,10.0\n203,392,10.5\n203,393,11.0\n203,394,11.5\n203,395,12.0\n203,396,12.5\n203,397,13.0\n203,398,13.5\n203,399,14.0\n203,400,5.5\n203,401,5.0\n203,402,4.5\n203,403,4.0\n203,404,4.5\n203,405,5.0\n203,406,5.5\n203,407,6.0\n203,408,6.5\n203,409,7.0\n203,410,7.5\n203,411,8.0\n203,412,8.5\n203,413,9.0\n203,414,9.5\n203,415,10.0\n203,416,10.5\n203,417,11.0\n203,418,11.5\n203,419,12.0\n203,420,12.5\n203,421,13.0\n203,422,13.5\n203,423,14.0\n203,424,14.5\n203,425,6.0\n203,426,5.5\n203,427,5.0\n203,428,4.5\n203,429,5.0\n203,430,5.5\n203,431,6.0\n203,432,6.5\n203,433,7.0\n203,434,7.5\n203,435,8.0\n203,436,8.5\n203,437,9.0\n203,438,9.5\n203,439,10.0\n203,440,10.5\n203,441,11.0\n203,442,11.5\n203,443,12.0\n203,444,12.5\n203,445,13.0\n203,446,13.5\n203,447,14.0\n203,448,14.5\n203,449,15.0\n203,450,6.5\n203,451,6.0\n203,452,5.5\n203,453,5.0\n203,454,5.5\n203,455,6.0\n203,456,6.5\n203,457,7.0\n203,458,7.5\n203,459,8.0\n203,460,8.5\n203,461,9.0\n203,462,9.5\n203,463,10.0\n203,464,10.5\n203,465,11.0\n203,466,11.5\n203,467,12.0\n203,468,12.5\n203,469,13.0\n203,470,13.5\n203,471,14.0\n203,472,14.5\n203,473,15.0\n203,474,15.5\n203,475,7.0\n203,476,6.5\n203,477,6.0\n203,478,5.5\n203,479,6.0\n203,480,6.5\n203,481,7.0\n203,482,7.5\n203,483,8.0\n203,484,8.5\n203,485,9.0\n203,486,9.5\n203,487,10.0\n203,488,10.5\n203,489,11.0\n203,490,11.5\n203,491,12.0\n203,492,12.5\n203,493,13.0\n203,494,13.5\n203,495,14.0\n203,496,14.5\n203,497,15.0\n203,498,15.5\n203,499,16.0\n203,500,7.5\n203,501,7.0\n203,502,6.5\n203,503,6.0\n203,504,6.5\n203,505,7.0\n203,506,7.5\n203,507,8.0\n203,508,8.5\n203,509,9.0\n203,510,9.5\n203,511,10.0\n203,512,10.5\n203,513,11.0\n203,514,11.5\n203,515,12.0\n203,516,12.5\n203,517,13.0\n203,518,13.5\n203,519,14.0\n203,520,14.5\n203,521,15.0\n203,522,15.5\n203,523,16.0\n203,524,16.5\n203,525,8.0\n203,526,7.5\n203,527,7.0\n203,528,6.5\n203,529,7.0\n203,530,7.5\n203,531,8.0\n203,532,8.5\n203,533,9.0\n203,534,9.5\n203,535,10.0\n203,536,10.5\n203,537,11.0\n203,538,11.5\n203,539,12.0\n203,540,12.5\n203,541,13.0\n203,542,13.5\n203,543,14.0\n203,544,14.5\n203,545,15.0\n203,546,15.5\n203,547,16.0\n203,548,16.5\n203,549,17.0\n203,550,8.5\n203,551,8.0\n203,552,7.5\n203,553,7.0\n203,554,7.5\n203,555,8.0\n203,556,8.5\n203,557,9.0\n203,558,9.5\n203,559,10.0\n203,560,10.5\n203,561,11.0\n203,562,11.5\n203,563,12.0\n203,564,12.5\n203,565,13.0\n203,566,13.5\n203,567,14.0\n203,568,14.5\n203,569,15.0\n203,570,15.5\n203,571,16.0\n203,572,16.5\n203,573,17.0\n203,574,17.5\n203,575,9.0\n203,576,8.5\n203,577,8.0\n203,578,7.5\n203,579,8.0\n203,580,8.5\n203,581,9.0\n203,582,9.5\n203,583,10.0\n203,584,10.5\n203,585,11.0\n203,586,11.5\n203,587,12.0\n203,588,12.5\n203,589,13.0\n203,590,13.5\n203,591,14.0\n203,592,14.5\n203,593,15.0\n203,594,15.5\n203,595,16.0\n203,596,16.5\n203,597,17.0\n203,598,17.5\n203,599,18.0\n203,600,9.5\n203,601,9.0\n203,602,8.5\n203,603,8.0\n203,604,8.5\n203,605,9.0\n203,606,9.5\n203,607,10.0\n203,608,10.5\n203,609,11.0\n203,610,11.5\n203,611,12.0\n203,612,12.5\n203,613,13.0\n203,614,13.5\n203,615,14.0\n203,616,14.5\n203,617,15.0\n203,618,15.5\n203,619,16.0\n203,620,16.5\n203,621,17.0\n203,622,17.5\n203,623,18.0\n203,624,18.5\n204,0,6.0\n204,1,5.5\n204,2,5.0\n204,3,4.5\n204,4,4.0\n204,5,4.5\n204,6,5.0\n204,7,5.5\n204,8,6.0\n204,9,6.5\n204,10,7.0\n204,11,7.5\n204,12,8.0\n204,13,8.5\n204,14,9.0\n204,15,9.5\n204,16,10.0\n204,17,10.5\n204,18,11.0\n204,19,11.5\n204,20,12.0\n204,21,12.5\n204,22,13.0\n204,23,13.5\n204,24,14.0\n204,25,5.5\n204,26,5.0\n204,27,4.5\n204,28,4.0\n204,29,3.5\n204,30,4.0\n204,31,4.5\n204,32,5.0\n204,33,5.5\n204,34,6.0\n204,35,6.5\n204,36,7.0\n204,37,7.5\n204,38,8.0\n204,39,8.5\n204,40,9.0\n204,41,9.5\n204,42,10.0\n204,43,10.5\n204,44,11.0\n204,45,11.5\n204,46,12.0\n204,47,12.5\n204,48,13.0\n204,49,13.5\n204,50,5.0\n204,51,4.5\n204,52,4.0\n204,53,3.5\n204,54,3.0\n204,55,3.5\n204,56,4.0\n204,57,4.5\n204,58,5.0\n204,59,5.5\n204,60,6.0\n204,61,6.5\n204,62,7.0\n204,63,7.5\n204,64,8.0\n204,65,8.5\n204,66,9.0\n204,67,9.5\n204,68,10.0\n204,69,10.5\n204,70,11.0\n204,71,11.5\n204,72,12.0\n204,73,12.5\n204,74,13.0\n204,75,4.5\n204,76,4.0\n204,77,3.5\n204,78,3.0\n204,79,2.5\n204,80,3.0\n204,81,3.5\n204,82,4.0\n204,83,4.5\n204,84,5.0\n204,85,5.5\n204,86,6.0\n204,87,6.5\n204,88,7.0\n204,89,7.5\n204,90,8.0\n204,91,8.5\n204,92,9.0\n204,93,9.5\n204,94,10.0\n204,95,10.5\n204,96,11.0\n204,97,11.5\n204,98,12.0\n204,99,12.5\n204,100,4.0\n204,101,3.5\n204,102,3.0\n204,103,2.5\n204,104,2.0\n204,105,2.5\n204,106,3.0\n204,107,3.5\n204,108,4.0\n204,109,4.5\n204,110,5.0\n204,111,5.5\n204,112,6.0\n204,113,6.5\n204,114,7.0\n204,115,7.5\n204,116,8.0\n204,117,8.5\n204,118,9.0\n204,119,9.5\n204,120,10.0\n204,121,10.5\n204,122,11.0\n204,123,11.5\n204,124,12.0\n204,125,3.5\n204,126,3.0\n204,127,2.5\n204,128,2.0\n204,129,1.5\n204,130,2.0\n204,131,2.5\n204,132,3.0\n204,133,3.5\n204,134,4.0\n204,135,4.5\n204,136,5.0\n204,137,5.5\n204,138,6.0\n204,139,6.5\n204,140,7.0\n204,141,7.5\n204,142,8.0\n204,143,8.5\n204,144,9.0\n204,145,9.5\n204,146,10.0\n204,147,10.5\n204,148,11.0\n204,149,11.5\n204,150,3.0\n204,151,2.5\n204,152,2.0\n204,153,1.5\n204,154,1.0\n204,155,1.5\n204,156,2.0\n204,157,2.5\n204,158,3.0\n204,159,3.5\n204,160,4.0\n204,161,4.5\n204,162,5.0\n204,163,5.5\n204,164,6.0\n204,165,6.5\n204,166,7.0\n204,167,7.5\n204,168,8.0\n204,169,8.5\n204,170,9.0\n204,171,9.5\n204,172,10.0\n204,173,10.5\n204,174,11.0\n204,175,2.5\n204,176,2.0\n204,177,1.5\n204,178,1.0\n204,179,0.5\n204,180,1.0\n204,181,1.5\n204,182,2.0\n204,183,2.5\n204,184,3.0\n204,185,3.5\n204,186,4.0\n204,187,4.5\n204,188,5.0\n204,189,5.5\n204,190,6.0\n204,191,6.5\n204,192,7.0\n204,193,7.5\n204,194,8.0\n204,195,8.5\n204,196,9.0\n204,197,9.5\n204,198,10.0\n204,199,10.5\n204,200,2.0\n204,201,1.5\n204,202,1.0\n204,203,0.5\n204,204,0\n204,205,0.5\n204,206,1.0\n204,207,1.5\n204,208,2.0\n204,209,2.5\n204,210,3.0\n204,211,3.5\n204,212,4.0\n204,213,4.5\n204,214,5.0\n204,215,5.5\n204,216,6.0\n204,217,6.5\n204,218,7.0\n204,219,7.5\n204,220,8.0\n204,221,8.5\n204,222,9.0\n204,223,9.5\n204,224,10.0\n204,225,2.5\n204,226,2.0\n204,227,1.5\n204,228,1.0\n204,229,0.5\n204,230,1.0\n204,231,1.5\n204,232,2.0\n204,233,2.5\n204,234,3.0\n204,235,3.5\n204,236,4.0\n204,237,4.5\n204,238,5.0\n204,239,5.5\n204,240,6.0\n204,241,6.5\n204,242,7.0\n204,243,7.5\n204,244,8.0\n204,245,8.5\n204,246,9.0\n204,247,9.5\n204,248,10.0\n204,249,10.5\n204,250,3.0\n204,251,2.5\n204,252,2.0\n204,253,1.5\n204,254,1.0\n204,255,1.5\n204,256,2.0\n204,257,2.5\n204,258,3.0\n204,259,3.5\n204,260,4.0\n204,261,4.5\n204,262,5.0\n204,263,5.5\n204,264,6.0\n204,265,6.5\n204,266,7.0\n204,267,7.5\n204,268,8.0\n204,269,8.5\n204,270,9.0\n204,271,9.5\n204,272,10.0\n204,273,10.5\n204,274,11.0\n204,275,3.5\n204,276,3.0\n204,277,2.5\n204,278,2.0\n204,279,1.5\n204,280,2.0\n204,281,2.5\n204,282,3.0\n204,283,3.5\n204,284,4.0\n204,285,4.5\n204,286,5.0\n204,287,5.5\n204,288,6.0\n204,289,6.5\n204,290,7.0\n204,291,7.5\n204,292,8.0\n204,293,8.5\n204,294,9.0\n204,295,9.5\n204,296,10.0\n204,297,10.5\n204,298,11.0\n204,299,11.5\n204,300,4.0\n204,301,3.5\n204,302,3.0\n204,303,2.5\n204,304,2.0\n204,305,2.5\n204,306,3.0\n204,307,3.5\n204,308,4.0\n204,309,4.5\n204,310,5.0\n204,311,5.5\n204,312,6.0\n204,313,6.5\n204,314,7.0\n204,315,7.5\n204,316,8.0\n204,317,8.5\n204,318,9.0\n204,319,9.5\n204,320,10.0\n204,321,10.5\n204,322,11.0\n204,323,11.5\n204,324,12.0\n204,325,4.5\n204,326,4.0\n204,327,3.5\n204,328,3.0\n204,329,2.5\n204,330,3.0\n204,331,3.5\n204,332,4.0\n204,333,4.5\n204,334,5.0\n204,335,5.5\n204,336,6.0\n204,337,6.5\n204,338,7.0\n204,339,7.5\n204,340,8.0\n204,341,8.5\n204,342,9.0\n204,343,9.5\n204,344,10.0\n204,345,10.5\n204,346,11.0\n204,347,11.5\n204,348,12.0\n204,349,12.5\n204,350,5.0\n204,351,4.5\n204,352,4.0\n204,353,3.5\n204,354,3.0\n204,355,3.5\n204,356,4.0\n204,357,4.5\n204,358,5.0\n204,359,5.5\n204,360,6.0\n204,361,6.5\n204,362,7.0\n204,363,7.5\n204,364,8.0\n204,365,8.5\n204,366,9.0\n204,367,9.5\n204,368,10.0\n204,369,10.5\n204,370,11.0\n204,371,11.5\n204,372,12.0\n204,373,12.5\n204,374,13.0\n204,375,5.5\n204,376,5.0\n204,377,4.5\n204,378,4.0\n204,379,3.5\n204,380,4.0\n204,381,4.5\n204,382,5.0\n204,383,5.5\n204,384,6.0\n204,385,6.5\n204,386,7.0\n204,387,7.5\n204,388,8.0\n204,389,8.5\n204,390,9.0\n204,391,9.5\n204,392,10.0\n204,393,10.5\n204,394,11.0\n204,395,11.5\n204,396,12.0\n204,397,12.5\n204,398,13.0\n204,399,13.5\n204,400,6.0\n204,401,5.5\n204,402,5.0\n204,403,4.5\n204,404,4.0\n204,405,4.5\n204,406,5.0\n204,407,5.5\n204,408,6.0\n204,409,6.5\n204,410,7.0\n204,411,7.5\n204,412,8.0\n204,413,8.5\n204,414,9.0\n204,415,9.5\n204,416,10.0\n204,417,10.5\n204,418,11.0\n204,419,11.5\n204,420,12.0\n204,421,12.5\n204,422,13.0\n204,423,13.5\n204,424,14.0\n204,425,6.5\n204,426,6.0\n204,427,5.5\n204,428,5.0\n204,429,4.5\n204,430,5.0\n204,431,5.5\n204,432,6.0\n204,433,6.5\n204,434,7.0\n204,435,7.5\n204,436,8.0\n204,437,8.5\n204,438,9.0\n204,439,9.5\n204,440,10.0\n204,441,10.5\n204,442,11.0\n204,443,11.5\n204,444,12.0\n204,445,12.5\n204,446,13.0\n204,447,13.5\n204,448,14.0\n204,449,14.5\n204,450,7.0\n204,451,6.5\n204,452,6.0\n204,453,5.5\n204,454,5.0\n204,455,5.5\n204,456,6.0\n204,457,6.5\n204,458,7.0\n204,459,7.5\n204,460,8.0\n204,461,8.5\n204,462,9.0\n204,463,9.5\n204,464,10.0\n204,465,10.5\n204,466,11.0\n204,467,11.5\n204,468,12.0\n204,469,12.5\n204,470,13.0\n204,471,13.5\n204,472,14.0\n204,473,14.5\n204,474,15.0\n204,475,7.5\n204,476,7.0\n204,477,6.5\n204,478,6.0\n204,479,5.5\n204,480,6.0\n204,481,6.5\n204,482,7.0\n204,483,7.5\n204,484,8.0\n204,485,8.5\n204,486,9.0\n204,487,9.5\n204,488,10.0\n204,489,10.5\n204,490,11.0\n204,491,11.5\n204,492,12.0\n204,493,12.5\n204,494,13.0\n204,495,13.5\n204,496,14.0\n204,497,14.5\n204,498,15.0\n204,499,15.5\n204,500,8.0\n204,501,7.5\n204,502,7.0\n204,503,6.5\n204,504,6.0\n204,505,6.5\n204,506,7.0\n204,507,7.5\n204,508,8.0\n204,509,8.5\n204,510,9.0\n204,511,9.5\n204,512,10.0\n204,513,10.5\n204,514,11.0\n204,515,11.5\n204,516,12.0\n204,517,12.5\n204,518,13.0\n204,519,13.5\n204,520,14.0\n204,521,14.5\n204,522,15.0\n204,523,15.5\n204,524,16.0\n204,525,8.5\n204,526,8.0\n204,527,7.5\n204,528,7.0\n204,529,6.5\n204,530,7.0\n204,531,7.5\n204,532,8.0\n204,533,8.5\n204,534,9.0\n204,535,9.5\n204,536,10.0\n204,537,10.5\n204,538,11.0\n204,539,11.5\n204,540,12.0\n204,541,12.5\n204,542,13.0\n204,543,13.5\n204,544,14.0\n204,545,14.5\n204,546,15.0\n204,547,15.5\n204,548,16.0\n204,549,16.5\n204,550,9.0\n204,551,8.5\n204,552,8.0\n204,553,7.5\n204,554,7.0\n204,555,7.5\n204,556,8.0\n204,557,8.5\n204,558,9.0\n204,559,9.5\n204,560,10.0\n204,561,10.5\n204,562,11.0\n204,563,11.5\n204,564,12.0\n204,565,12.5\n204,566,13.0\n204,567,13.5\n204,568,14.0\n204,569,14.5\n204,570,15.0\n204,571,15.5\n204,572,16.0\n204,573,16.5\n204,574,17.0\n204,575,9.5\n204,576,9.0\n204,577,8.5\n204,578,8.0\n204,579,7.5\n204,580,8.0\n204,581,8.5\n204,582,9.0\n204,583,9.5\n204,584,10.0\n204,585,10.5\n204,586,11.0\n204,587,11.5\n204,588,12.0\n204,589,12.5\n204,590,13.0\n204,591,13.5\n204,592,14.0\n204,593,14.5\n204,594,15.0\n204,595,15.5\n204,596,16.0\n204,597,16.5\n204,598,17.0\n204,599,17.5\n204,600,10.0\n204,601,9.5\n204,602,9.0\n204,603,8.5\n204,604,8.0\n204,605,8.5\n204,606,9.0\n204,607,9.5\n204,608,10.0\n204,609,10.5\n204,610,11.0\n204,611,11.5\n204,612,12.0\n204,613,12.5\n204,614,13.0\n204,615,13.5\n204,616,14.0\n204,617,14.5\n204,618,15.0\n204,619,15.5\n204,620,16.0\n204,621,16.5\n204,622,17.0\n204,623,17.5\n204,624,18.0\n205,0,6.5\n205,1,6.0\n205,2,5.5\n205,3,5.0\n205,4,4.5\n205,5,4.0\n205,6,4.5\n205,7,5.0\n205,8,5.5\n205,9,6.0\n205,10,6.5\n205,11,7.0\n205,12,7.5\n205,13,8.0\n205,14,8.5\n205,15,9.0\n205,16,9.5\n205,17,10.0\n205,18,10.5\n205,19,11.0\n205,20,11.5\n205,21,12.0\n205,22,12.5\n205,23,13.0\n205,24,13.5\n205,25,6.0\n205,26,5.5\n205,27,5.0\n205,28,4.5\n205,29,4.0\n205,30,3.5\n205,31,4.0\n205,32,4.5\n205,33,5.0\n205,34,5.5\n205,35,6.0\n205,36,6.5\n205,37,7.0\n205,38,7.5\n205,39,8.0\n205,40,8.5\n205,41,9.0\n205,42,9.5\n205,43,10.0\n205,44,10.5\n205,45,11.0\n205,46,11.5\n205,47,12.0\n205,48,12.5\n205,49,13.0\n205,50,5.5\n205,51,5.0\n205,52,4.5\n205,53,4.0\n205,54,3.5\n205,55,3.0\n205,56,3.5\n205,57,4.0\n205,58,4.5\n205,59,5.0\n205,60,5.5\n205,61,6.0\n205,62,6.5\n205,63,7.0\n205,64,7.5\n205,65,8.0\n205,66,8.5\n205,67,9.0\n205,68,9.5\n205,69,10.0\n205,70,10.5\n205,71,11.0\n205,72,11.5\n205,73,12.0\n205,74,12.5\n205,75,5.0\n205,76,4.5\n205,77,4.0\n205,78,3.5\n205,79,3.0\n205,80,2.5\n205,81,3.0\n205,82,3.5\n205,83,4.0\n205,84,4.5\n205,85,5.0\n205,86,5.5\n205,87,6.0\n205,88,6.5\n205,89,7.0\n205,90,7.5\n205,91,8.0\n205,92,8.5\n205,93,9.0\n205,94,9.5\n205,95,10.0\n205,96,10.5\n205,97,11.0\n205,98,11.5\n205,99,12.0\n205,100,4.5\n205,101,4.0\n205,102,3.5\n205,103,3.0\n205,104,2.5\n205,105,2.0\n205,106,2.5\n205,107,3.0\n205,108,3.5\n205,109,4.0\n205,110,4.5\n205,111,5.0\n205,112,5.5\n205,113,6.0\n205,114,6.5\n205,115,7.0\n205,116,7.5\n205,117,8.0\n205,118,8.5\n205,119,9.0\n205,120,9.5\n205,121,10.0\n205,122,10.5\n205,123,11.0\n205,124,11.5\n205,125,4.0\n205,126,3.5\n205,127,3.0\n205,128,2.5\n205,129,2.0\n205,130,1.5\n205,131,2.0\n205,132,2.5\n205,133,3.0\n205,134,3.5\n205,135,4.0\n205,136,4.5\n205,137,5.0\n205,138,5.5\n205,139,6.0\n205,140,6.5\n205,141,7.0\n205,142,7.5\n205,143,8.0\n205,144,8.5\n205,145,9.0\n205,146,9.5\n205,147,10.0\n205,148,10.5\n205,149,11.0\n205,150,3.5\n205,151,3.0\n205,152,2.5\n205,153,2.0\n205,154,1.5\n205,155,1.0\n205,156,1.5\n205,157,2.0\n205,158,2.5\n205,159,3.0\n205,160,3.5\n205,161,4.0\n205,162,4.5\n205,163,5.0\n205,164,5.5\n205,165,6.0\n205,166,6.5\n205,167,7.0\n205,168,7.5\n205,169,8.0\n205,170,8.5\n205,171,9.0\n205,172,9.5\n205,173,10.0\n205,174,10.5\n205,175,3.0\n205,176,2.5\n205,177,2.0\n205,178,1.5\n205,179,1.0\n205,180,0.5\n205,181,1.0\n205,182,1.5\n205,183,2.0\n205,184,2.5\n205,185,3.0\n205,186,3.5\n205,187,4.0\n205,188,4.5\n205,189,5.0\n205,190,5.5\n205,191,6.0\n205,192,6.5\n205,193,7.0\n205,194,7.5\n205,195,8.0\n205,196,8.5\n205,197,9.0\n205,198,9.5\n205,199,10.0\n205,200,2.5\n205,201,2.0\n205,202,1.5\n205,203,1.0\n205,204,0.5\n205,205,0\n205,206,0.5\n205,207,1.0\n205,208,1.5\n205,209,2.0\n205,210,2.5\n205,211,3.0\n205,212,3.5\n205,213,4.0\n205,214,4.5\n205,215,5.0\n205,216,5.5\n205,217,6.0\n205,218,6.5\n205,219,7.0\n205,220,7.5\n205,221,8.0\n205,222,8.5\n205,223,9.0\n205,224,9.5\n205,225,3.0\n205,226,2.5\n205,227,2.0\n205,228,1.5\n205,229,1.0\n205,230,0.5\n205,231,1.0\n205,232,1.5\n205,233,2.0\n205,234,2.5\n205,235,3.0\n205,236,3.5\n205,237,4.0\n205,238,4.5\n205,239,5.0\n205,240,5.5\n205,241,6.0\n205,242,6.5\n205,243,7.0\n205,244,7.5\n205,245,8.0\n205,246,8.5\n205,247,9.0\n205,248,9.5\n205,249,10.0\n205,250,3.5\n205,251,3.0\n205,252,2.5\n205,253,2.0\n205,254,1.5\n205,255,1.0\n205,256,1.5\n205,257,2.0\n205,258,2.5\n205,259,3.0\n205,260,3.5\n205,261,4.0\n205,262,4.5\n205,263,5.0\n205,264,5.5\n205,265,6.0\n205,266,6.5\n205,267,7.0\n205,268,7.5\n205,269,8.0\n205,270,8.5\n205,271,9.0\n205,272,9.5\n205,273,10.0\n205,274,10.5\n205,275,4.0\n205,276,3.5\n205,277,3.0\n205,278,2.5\n205,279,2.0\n205,280,1.5\n205,281,2.0\n205,282,2.5\n205,283,3.0\n205,284,3.5\n205,285,4.0\n205,286,4.5\n205,287,5.0\n205,288,5.5\n205,289,6.0\n205,290,6.5\n205,291,7.0\n205,292,7.5\n205,293,8.0\n205,294,8.5\n205,295,9.0\n205,296,9.5\n205,297,10.0\n205,298,10.5\n205,299,11.0\n205,300,4.5\n205,301,4.0\n205,302,3.5\n205,303,3.0\n205,304,2.5\n205,305,2.0\n205,306,2.5\n205,307,3.0\n205,308,3.5\n205,309,4.0\n205,310,4.5\n205,311,5.0\n205,312,5.5\n205,313,6.0\n205,314,6.5\n205,315,7.0\n205,316,7.5\n205,317,8.0\n205,318,8.5\n205,319,9.0\n205,320,9.5\n205,321,10.0\n205,322,10.5\n205,323,11.0\n205,324,11.5\n205,325,5.0\n205,326,4.5\n205,327,4.0\n205,328,3.5\n205,329,3.0\n205,330,2.5\n205,331,3.0\n205,332,3.5\n205,333,4.0\n205,334,4.5\n205,335,5.0\n205,336,5.5\n205,337,6.0\n205,338,6.5\n205,339,7.0\n205,340,7.5\n205,341,8.0\n205,342,8.5\n205,343,9.0\n205,344,9.5\n205,345,10.0\n205,346,10.5\n205,347,11.0\n205,348,11.5\n205,349,12.0\n205,350,5.5\n205,351,5.0\n205,352,4.5\n205,353,4.0\n205,354,3.5\n205,355,3.0\n205,356,3.5\n205,357,4.0\n205,358,4.5\n205,359,5.0\n205,360,5.5\n205,361,6.0\n205,362,6.5\n205,363,7.0\n205,364,7.5\n205,365,8.0\n205,366,8.5\n205,367,9.0\n205,368,9.5\n205,369,10.0\n205,370,10.5\n205,371,11.0\n205,372,11.5\n205,373,12.0\n205,374,12.5\n205,375,6.0\n205,376,5.5\n205,377,5.0\n205,378,4.5\n205,379,4.0\n205,380,3.5\n205,381,4.0\n205,382,4.5\n205,383,5.0\n205,384,5.5\n205,385,6.0\n205,386,6.5\n205,387,7.0\n205,388,7.5\n205,389,8.0\n205,390,8.5\n205,391,9.0\n205,392,9.5\n205,393,10.0\n205,394,10.5\n205,395,11.0\n205,396,11.5\n205,397,12.0\n205,398,12.5\n205,399,13.0\n205,400,6.5\n205,401,6.0\n205,402,5.5\n205,403,5.0\n205,404,4.5\n205,405,4.0\n205,406,4.5\n205,407,5.0\n205,408,5.5\n205,409,6.0\n205,410,6.5\n205,411,7.0\n205,412,7.5\n205,413,8.0\n205,414,8.5\n205,415,9.0\n205,416,9.5\n205,417,10.0\n205,418,10.5\n205,419,11.0\n205,420,11.5\n205,421,12.0\n205,422,12.5\n205,423,13.0\n205,424,13.5\n205,425,7.0\n205,426,6.5\n205,427,6.0\n205,428,5.5\n205,429,5.0\n205,430,4.5\n205,431,5.0\n205,432,5.5\n205,433,6.0\n205,434,6.5\n205,435,7.0\n205,436,7.5\n205,437,8.0\n205,438,8.5\n205,439,9.0\n205,440,9.5\n205,441,10.0\n205,442,10.5\n205,443,11.0\n205,444,11.5\n205,445,12.0\n205,446,12.5\n205,447,13.0\n205,448,13.5\n205,449,14.0\n205,450,7.5\n205,451,7.0\n205,452,6.5\n205,453,6.0\n205,454,5.5\n205,455,5.0\n205,456,5.5\n205,457,6.0\n205,458,6.5\n205,459,7.0\n205,460,7.5\n205,461,8.0\n205,462,8.5\n205,463,9.0\n205,464,9.5\n205,465,10.0\n205,466,10.5\n205,467,11.0\n205,468,11.5\n205,469,12.0\n205,470,12.5\n205,471,13.0\n205,472,13.5\n205,473,14.0\n205,474,14.5\n205,475,8.0\n205,476,7.5\n205,477,7.0\n205,478,6.5\n205,479,6.0\n205,480,5.5\n205,481,6.0\n205,482,6.5\n205,483,7.0\n205,484,7.5\n205,485,8.0\n205,486,8.5\n205,487,9.0\n205,488,9.5\n205,489,10.0\n205,490,10.5\n205,491,11.0\n205,492,11.5\n205,493,12.0\n205,494,12.5\n205,495,13.0\n205,496,13.5\n205,497,14.0\n205,498,14.5\n205,499,15.0\n205,500,8.5\n205,501,8.0\n205,502,7.5\n205,503,7.0\n205,504,6.5\n205,505,6.0\n205,506,6.5\n205,507,7.0\n205,508,7.5\n205,509,8.0\n205,510,8.5\n205,511,9.0\n205,512,9.5\n205,513,10.0\n205,514,10.5\n205,515,11.0\n205,516,11.5\n205,517,12.0\n205,518,12.5\n205,519,13.0\n205,520,13.5\n205,521,14.0\n205,522,14.5\n205,523,15.0\n205,524,15.5\n205,525,9.0\n205,526,8.5\n205,527,8.0\n205,528,7.5\n205,529,7.0\n205,530,6.5\n205,531,7.0\n205,532,7.5\n205,533,8.0\n205,534,8.5\n205,535,9.0\n205,536,9.5\n205,537,10.0\n205,538,10.5\n205,539,11.0\n205,540,11.5\n205,541,12.0\n205,542,12.5\n205,543,13.0\n205,544,13.5\n205,545,14.0\n205,546,14.5\n205,547,15.0\n205,548,15.5\n205,549,16.0\n205,550,9.5\n205,551,9.0\n205,552,8.5\n205,553,8.0\n205,554,7.5\n205,555,7.0\n205,556,7.5\n205,557,8.0\n205,558,8.5\n205,559,9.0\n205,560,9.5\n205,561,10.0\n205,562,10.5\n205,563,11.0\n205,564,11.5\n205,565,12.0\n205,566,12.5\n205,567,13.0\n205,568,13.5\n205,569,14.0\n205,570,14.5\n205,571,15.0\n205,572,15.5\n205,573,16.0\n205,574,16.5\n205,575,10.0\n205,576,9.5\n205,577,9.0\n205,578,8.5\n205,579,8.0\n205,580,7.5\n205,581,8.0\n205,582,8.5\n205,583,9.0\n205,584,9.5\n205,585,10.0\n205,586,10.5\n205,587,11.0\n205,588,11.5\n205,589,12.0\n205,590,12.5\n205,591,13.0\n205,592,13.5\n205,593,14.0\n205,594,14.5\n205,595,15.0\n205,596,15.5\n205,597,16.0\n205,598,16.5\n205,599,17.0\n205,600,10.5\n205,601,10.0\n205,602,9.5\n205,603,9.0\n205,604,8.5\n205,605,8.0\n205,606,8.5\n205,607,9.0\n205,608,9.5\n205,609,10.0\n205,610,10.5\n205,611,11.0\n205,612,11.5\n205,613,12.0\n205,614,12.5\n205,615,13.0\n205,616,13.5\n205,617,14.0\n205,618,14.5\n205,619,15.0\n205,620,15.5\n205,621,16.0\n205,622,16.5\n205,623,17.0\n205,624,17.5\n206,0,7.0\n206,1,6.5\n206,2,6.0\n206,3,5.5\n206,4,5.0\n206,5,4.5\n206,6,4.0\n206,7,4.5\n206,8,5.0\n206,9,5.5\n206,10,6.0\n206,11,6.5\n206,12,7.0\n206,13,7.5\n206,14,8.0\n206,15,8.5\n206,16,9.0\n206,17,9.5\n206,18,10.0\n206,19,10.5\n206,20,11.0\n206,21,11.5\n206,22,12.0\n206,23,12.5\n206,24,13.0\n206,25,6.5\n206,26,6.0\n206,27,5.5\n206,28,5.0\n206,29,4.5\n206,30,4.0\n206,31,3.5\n206,32,4.0\n206,33,4.5\n206,34,5.0\n206,35,5.5\n206,36,6.0\n206,37,6.5\n206,38,7.0\n206,39,7.5\n206,40,8.0\n206,41,8.5\n206,42,9.0\n206,43,9.5\n206,44,10.0\n206,45,10.5\n206,46,11.0\n206,47,11.5\n206,48,12.0\n206,49,12.5\n206,50,6.0\n206,51,5.5\n206,52,5.0\n206,53,4.5\n206,54,4.0\n206,55,3.5\n206,56,3.0\n206,57,3.5\n206,58,4.0\n206,59,4.5\n206,60,5.0\n206,61,5.5\n206,62,6.0\n206,63,6.5\n206,64,7.0\n206,65,7.5\n206,66,8.0\n206,67,8.5\n206,68,9.0\n206,69,9.5\n206,70,10.0\n206,71,10.5\n206,72,11.0\n206,73,11.5\n206,74,12.0\n206,75,5.5\n206,76,5.0\n206,77,4.5\n206,78,4.0\n206,79,3.5\n206,80,3.0\n206,81,2.5\n206,82,3.0\n206,83,3.5\n206,84,4.0\n206,85,4.5\n206,86,5.0\n206,87,5.5\n206,88,6.0\n206,89,6.5\n206,90,7.0\n206,91,7.5\n206,92,8.0\n206,93,8.5\n206,94,9.0\n206,95,9.5\n206,96,10.0\n206,97,10.5\n206,98,11.0\n206,99,11.5\n206,100,5.0\n206,101,4.5\n206,102,4.0\n206,103,3.5\n206,104,3.0\n206,105,2.5\n206,106,2.0\n206,107,2.5\n206,108,3.0\n206,109,3.5\n206,110,4.0\n206,111,4.5\n206,112,5.0\n206,113,5.5\n206,114,6.0\n206,115,6.5\n206,116,7.0\n206,117,7.5\n206,118,8.0\n206,119,8.5\n206,120,9.0\n206,121,9.5\n206,122,10.0\n206,123,10.5\n206,124,11.0\n206,125,4.5\n206,126,4.0\n206,127,3.5\n206,128,3.0\n206,129,2.5\n206,130,2.0\n206,131,1.5\n206,132,2.0\n206,133,2.5\n206,134,3.0\n206,135,3.5\n206,136,4.0\n206,137,4.5\n206,138,5.0\n206,139,5.5\n206,140,6.0\n206,141,6.5\n206,142,7.0\n206,143,7.5\n206,144,8.0\n206,145,8.5\n206,146,9.0\n206,147,9.5\n206,148,10.0\n206,149,10.5\n206,150,4.0\n206,151,3.5\n206,152,3.0\n206,153,2.5\n206,154,2.0\n206,155,1.5\n206,156,1.0\n206,157,1.5\n206,158,2.0\n206,159,2.5\n206,160,3.0\n206,161,3.5\n206,162,4.0\n206,163,4.5\n206,164,5.0\n206,165,5.5\n206,166,6.0\n206,167,6.5\n206,168,7.0\n206,169,7.5\n206,170,8.0\n206,171,8.5\n206,172,9.0\n206,173,9.5\n206,174,10.0\n206,175,3.5\n206,176,3.0\n206,177,2.5\n206,178,2.0\n206,179,1.5\n206,180,1.0\n206,181,0.5\n206,182,1.0\n206,183,1.5\n206,184,2.0\n206,185,2.5\n206,186,3.0\n206,187,3.5\n206,188,4.0\n206,189,4.5\n206,190,5.0\n206,191,5.5\n206,192,6.0\n206,193,6.5\n206,194,7.0\n206,195,7.5\n206,196,8.0\n206,197,8.5\n206,198,9.0\n206,199,9.5\n206,200,3.0\n206,201,2.5\n206,202,2.0\n206,203,1.5\n206,204,1.0\n206,205,0.5\n206,206,0\n206,207,0.5\n206,208,1.0\n206,209,1.5\n206,210,2.0\n206,211,2.5\n206,212,3.0\n206,213,3.5\n206,214,4.0\n206,215,4.5\n206,216,5.0\n206,217,5.5\n206,218,6.0\n206,219,6.5\n206,220,7.0\n206,221,7.5\n206,222,8.0\n206,223,8.5\n206,224,9.0\n206,225,3.5\n206,226,3.0\n206,227,2.5\n206,228,2.0\n206,229,1.5\n206,230,1.0\n206,231,0.5\n206,232,1.0\n206,233,1.5\n206,234,2.0\n206,235,2.5\n206,236,3.0\n206,237,3.5\n206,238,4.0\n206,239,4.5\n206,240,5.0\n206,241,5.5\n206,242,6.0\n206,243,6.5\n206,244,7.0\n206,245,7.5\n206,246,8.0\n206,247,8.5\n206,248,9.0\n206,249,9.5\n206,250,4.0\n206,251,3.5\n206,252,3.0\n206,253,2.5\n206,254,2.0\n206,255,1.5\n206,256,1.0\n206,257,1.5\n206,258,2.0\n206,259,2.5\n206,260,3.0\n206,261,3.5\n206,262,4.0\n206,263,4.5\n206,264,5.0\n206,265,5.5\n206,266,6.0\n206,267,6.5\n206,268,7.0\n206,269,7.5\n206,270,8.0\n206,271,8.5\n206,272,9.0\n206,273,9.5\n206,274,10.0\n206,275,4.5\n206,276,4.0\n206,277,3.5\n206,278,3.0\n206,279,2.5\n206,280,2.0\n206,281,1.5\n206,282,2.0\n206,283,2.5\n206,284,3.0\n206,285,3.5\n206,286,4.0\n206,287,4.5\n206,288,5.0\n206,289,5.5\n206,290,6.0\n206,291,6.5\n206,292,7.0\n206,293,7.5\n206,294,8.0\n206,295,8.5\n206,296,9.0\n206,297,9.5\n206,298,10.0\n206,299,10.5\n206,300,5.0\n206,301,4.5\n206,302,4.0\n206,303,3.5\n206,304,3.0\n206,305,2.5\n206,306,2.0\n206,307,2.5\n206,308,3.0\n206,309,3.5\n206,310,4.0\n206,311,4.5\n206,312,5.0\n206,313,5.5\n206,314,6.0\n206,315,6.5\n206,316,7.0\n206,317,7.5\n206,318,8.0\n206,319,8.5\n206,320,9.0\n206,321,9.5\n206,322,10.0\n206,323,10.5\n206,324,11.0\n206,325,5.5\n206,326,5.0\n206,327,4.5\n206,328,4.0\n206,329,3.5\n206,330,3.0\n206,331,2.5\n206,332,3.0\n206,333,3.5\n206,334,4.0\n206,335,4.5\n206,336,5.0\n206,337,5.5\n206,338,6.0\n206,339,6.5\n206,340,7.0\n206,341,7.5\n206,342,8.0\n206,343,8.5\n206,344,9.0\n206,345,9.5\n206,346,10.0\n206,347,10.5\n206,348,11.0\n206,349,11.5\n206,350,6.0\n206,351,5.5\n206,352,5.0\n206,353,4.5\n206,354,4.0\n206,355,3.5\n206,356,3.0\n206,357,3.5\n206,358,4.0\n206,359,4.5\n206,360,5.0\n206,361,5.5\n206,362,6.0\n206,363,6.5\n206,364,7.0\n206,365,7.5\n206,366,8.0\n206,367,8.5\n206,368,9.0\n206,369,9.5\n206,370,10.0\n206,371,10.5\n206,372,11.0\n206,373,11.5\n206,374,12.0\n206,375,6.5\n206,376,6.0\n206,377,5.5\n206,378,5.0\n206,379,4.5\n206,380,4.0\n206,381,3.5\n206,382,4.0\n206,383,4.5\n206,384,5.0\n206,385,5.5\n206,386,6.0\n206,387,6.5\n206,388,7.0\n206,389,7.5\n206,390,8.0\n206,391,8.5\n206,392,9.0\n206,393,9.5\n206,394,10.0\n206,395,10.5\n206,396,11.0\n206,397,11.5\n206,398,12.0\n206,399,12.5\n206,400,7.0\n206,401,6.5\n206,402,6.0\n206,403,5.5\n206,404,5.0\n206,405,4.5\n206,406,4.0\n206,407,4.5\n206,408,5.0\n206,409,5.5\n206,410,6.0\n206,411,6.5\n206,412,7.0\n206,413,7.5\n206,414,8.0\n206,415,8.5\n206,416,9.0\n206,417,9.5\n206,418,10.0\n206,419,10.5\n206,420,11.0\n206,421,11.5\n206,422,12.0\n206,423,12.5\n206,424,13.0\n206,425,7.5\n206,426,7.0\n206,427,6.5\n206,428,6.0\n206,429,5.5\n206,430,5.0\n206,431,4.5\n206,432,5.0\n206,433,5.5\n206,434,6.0\n206,435,6.5\n206,436,7.0\n206,437,7.5\n206,438,8.0\n206,439,8.5\n206,440,9.0\n206,441,9.5\n206,442,10.0\n206,443,10.5\n206,444,11.0\n206,445,11.5\n206,446,12.0\n206,447,12.5\n206,448,13.0\n206,449,13.5\n206,450,8.0\n206,451,7.5\n206,452,7.0\n206,453,6.5\n206,454,6.0\n206,455,5.5\n206,456,5.0\n206,457,5.5\n206,458,6.0\n206,459,6.5\n206,460,7.0\n206,461,7.5\n206,462,8.0\n206,463,8.5\n206,464,9.0\n206,465,9.5\n206,466,10.0\n206,467,10.5\n206,468,11.0\n206,469,11.5\n206,470,12.0\n206,471,12.5\n206,472,13.0\n206,473,13.5\n206,474,14.0\n206,475,8.5\n206,476,8.0\n206,477,7.5\n206,478,7.0\n206,479,6.5\n206,480,6.0\n206,481,5.5\n206,482,6.0\n206,483,6.5\n206,484,7.0\n206,485,7.5\n206,486,8.0\n206,487,8.5\n206,488,9.0\n206,489,9.5\n206,490,10.0\n206,491,10.5\n206,492,11.0\n206,493,11.5\n206,494,12.0\n206,495,12.5\n206,496,13.0\n206,497,13.5\n206,498,14.0\n206,499,14.5\n206,500,9.0\n206,501,8.5\n206,502,8.0\n206,503,7.5\n206,504,7.0\n206,505,6.5\n206,506,6.0\n206,507,6.5\n206,508,7.0\n206,509,7.5\n206,510,8.0\n206,511,8.5\n206,512,9.0\n206,513,9.5\n206,514,10.0\n206,515,10.5\n206,516,11.0\n206,517,11.5\n206,518,12.0\n206,519,12.5\n206,520,13.0\n206,521,13.5\n206,522,14.0\n206,523,14.5\n206,524,15.0\n206,525,9.5\n206,526,9.0\n206,527,8.5\n206,528,8.0\n206,529,7.5\n206,530,7.0\n206,531,6.5\n206,532,7.0\n206,533,7.5\n206,534,8.0\n206,535,8.5\n206,536,9.0\n206,537,9.5\n206,538,10.0\n206,539,10.5\n206,540,11.0\n206,541,11.5\n206,542,12.0\n206,543,12.5\n206,544,13.0\n206,545,13.5\n206,546,14.0\n206,547,14.5\n206,548,15.0\n206,549,15.5\n206,550,10.0\n206,551,9.5\n206,552,9.0\n206,553,8.5\n206,554,8.0\n206,555,7.5\n206,556,7.0\n206,557,7.5\n206,558,8.0\n206,559,8.5\n206,560,9.0\n206,561,9.5\n206,562,10.0\n206,563,10.5\n206,564,11.0\n206,565,11.5\n206,566,12.0\n206,567,12.5\n206,568,13.0\n206,569,13.5\n206,570,14.0\n206,571,14.5\n206,572,15.0\n206,573,15.5\n206,574,16.0\n206,575,10.5\n206,576,10.0\n206,577,9.5\n206,578,9.0\n206,579,8.5\n206,580,8.0\n206,581,7.5\n206,582,8.0\n206,583,8.5\n206,584,9.0\n206,585,9.5\n206,586,10.0\n206,587,10.5\n206,588,11.0\n206,589,11.5\n206,590,12.0\n206,591,12.5\n206,592,13.0\n206,593,13.5\n206,594,14.0\n206,595,14.5\n206,596,15.0\n206,597,15.5\n206,598,16.0\n206,599,16.5\n206,600,11.0\n206,601,10.5\n206,602,10.0\n206,603,9.5\n206,604,9.0\n206,605,8.5\n206,606,8.0\n206,607,8.5\n206,608,9.0\n206,609,9.5\n206,610,10.0\n206,611,10.5\n206,612,11.0\n206,613,11.5\n206,614,12.0\n206,615,12.5\n206,616,13.0\n206,617,13.5\n206,618,14.0\n206,619,14.5\n206,620,15.0\n206,621,15.5\n206,622,16.0\n206,623,16.5\n206,624,17.0\n207,0,7.5\n207,1,7.0\n207,2,6.5\n207,3,6.0\n207,4,5.5\n207,5,5.0\n207,6,4.5\n207,7,4.0\n207,8,4.5\n207,9,5.0\n207,10,5.5\n207,11,6.0\n207,12,6.5\n207,13,7.0\n207,14,7.5\n207,15,8.0\n207,16,8.5\n207,17,9.0\n207,18,9.5\n207,19,10.0\n207,20,10.5\n207,21,11.0\n207,22,11.5\n207,23,12.0\n207,24,12.5\n207,25,7.0\n207,26,6.5\n207,27,6.0\n207,28,5.5\n207,29,5.0\n207,30,4.5\n207,31,4.0\n207,32,3.5\n207,33,4.0\n207,34,4.5\n207,35,5.0\n207,36,5.5\n207,37,6.0\n207,38,6.5\n207,39,7.0\n207,40,7.5\n207,41,8.0\n207,42,8.5\n207,43,9.0\n207,44,9.5\n207,45,10.0\n207,46,10.5\n207,47,11.0\n207,48,11.5\n207,49,12.0\n207,50,6.5\n207,51,6.0\n207,52,5.5\n207,53,5.0\n207,54,4.5\n207,55,4.0\n207,56,3.5\n207,57,3.0\n207,58,3.5\n207,59,4.0\n207,60,4.5\n207,61,5.0\n207,62,5.5\n207,63,6.0\n207,64,6.5\n207,65,7.0\n207,66,7.5\n207,67,8.0\n207,68,8.5\n207,69,9.0\n207,70,9.5\n207,71,10.0\n207,72,10.5\n207,73,11.0\n207,74,11.5\n207,75,6.0\n207,76,5.5\n207,77,5.0\n207,78,4.5\n207,79,4.0\n207,80,3.5\n207,81,3.0\n207,82,2.5\n207,83,3.0\n207,84,3.5\n207,85,4.0\n207,86,4.5\n207,87,5.0\n207,88,5.5\n207,89,6.0\n207,90,6.5\n207,91,7.0\n207,92,7.5\n207,93,8.0\n207,94,8.5\n207,95,9.0\n207,96,9.5\n207,97,10.0\n207,98,10.5\n207,99,11.0\n207,100,5.5\n207,101,5.0\n207,102,4.5\n207,103,4.0\n207,104,3.5\n207,105,3.0\n207,106,2.5\n207,107,2.0\n207,108,2.5\n207,109,3.0\n207,110,3.5\n207,111,4.0\n207,112,4.5\n207,113,5.0\n207,114,5.5\n207,115,6.0\n207,116,6.5\n207,117,7.0\n207,118,7.5\n207,119,8.0\n207,120,8.5\n207,121,9.0\n207,122,9.5\n207,123,10.0\n207,124,10.5\n207,125,5.0\n207,126,4.5\n207,127,4.0\n207,128,3.5\n207,129,3.0\n207,130,2.5\n207,131,2.0\n207,132,1.5\n207,133,2.0\n207,134,2.5\n207,135,3.0\n207,136,3.5\n207,137,4.0\n207,138,4.5\n207,139,5.0\n207,140,5.5\n207,141,6.0\n207,142,6.5\n207,143,7.0\n207,144,7.5\n207,145,8.0\n207,146,8.5\n207,147,9.0\n207,148,9.5\n207,149,10.0\n207,150,4.5\n207,151,4.0\n207,152,3.5\n207,153,3.0\n207,154,2.5\n207,155,2.0\n207,156,1.5\n207,157,1.0\n207,158,1.5\n207,159,2.0\n207,160,2.5\n207,161,3.0\n207,162,3.5\n207,163,4.0\n207,164,4.5\n207,165,5.0\n207,166,5.5\n207,167,6.0\n207,168,6.5\n207,169,7.0\n207,170,7.5\n207,171,8.0\n207,172,8.5\n207,173,9.0\n207,174,9.5\n207,175,4.0\n207,176,3.5\n207,177,3.0\n207,178,2.5\n207,179,2.0\n207,180,1.5\n207,181,1.0\n207,182,0.5\n207,183,1.0\n207,184,1.5\n207,185,2.0\n207,186,2.5\n207,187,3.0\n207,188,3.5\n207,189,4.0\n207,190,4.5\n207,191,5.0\n207,192,5.5\n207,193,6.0\n207,194,6.5\n207,195,7.0\n207,196,7.5\n207,197,8.0\n207,198,8.5\n207,199,9.0\n207,200,3.5\n207,201,3.0\n207,202,2.5\n207,203,2.0\n207,204,1.5\n207,205,1.0\n207,206,0.5\n207,207,0\n207,208,0.5\n207,209,1.0\n207,210,1.5\n207,211,2.0\n207,212,2.5\n207,213,3.0\n207,214,3.5\n207,215,4.0\n207,216,4.5\n207,217,5.0\n207,218,5.5\n207,219,6.0\n207,220,6.5\n207,221,7.0\n207,222,7.5\n207,223,8.0\n207,224,8.5\n207,225,4.0\n207,226,3.5\n207,227,3.0\n207,228,2.5\n207,229,2.0\n207,230,1.5\n207,231,1.0\n207,232,0.5\n207,233,1.0\n207,234,1.5\n207,235,2.0\n207,236,2.5\n207,237,3.0\n207,238,3.5\n207,239,4.0\n207,240,4.5\n207,241,5.0\n207,242,5.5\n207,243,6.0\n207,244,6.5\n207,245,7.0\n207,246,7.5\n207,247,8.0\n207,248,8.5\n207,249,9.0\n207,250,4.5\n207,251,4.0\n207,252,3.5\n207,253,3.0\n207,254,2.5\n207,255,2.0\n207,256,1.5\n207,257,1.0\n207,258,1.5\n207,259,2.0\n207,260,2.5\n207,261,3.0\n207,262,3.5\n207,263,4.0\n207,264,4.5\n207,265,5.0\n207,266,5.5\n207,267,6.0\n207,268,6.5\n207,269,7.0\n207,270,7.5\n207,271,8.0\n207,272,8.5\n207,273,9.0\n207,274,9.5\n207,275,5.0\n207,276,4.5\n207,277,4.0\n207,278,3.5\n207,279,3.0\n207,280,2.5\n207,281,2.0\n207,282,1.5\n207,283,2.0\n207,284,2.5\n207,285,3.0\n207,286,3.5\n207,287,4.0\n207,288,4.5\n207,289,5.0\n207,290,5.5\n207,291,6.0\n207,292,6.5\n207,293,7.0\n207,294,7.5\n207,295,8.0\n207,296,8.5\n207,297,9.0\n207,298,9.5\n207,299,10.0\n207,300,5.5\n207,301,5.0\n207,302,4.5\n207,303,4.0\n207,304,3.5\n207,305,3.0\n207,306,2.5\n207,307,2.0\n207,308,2.5\n207,309,3.0\n207,310,3.5\n207,311,4.0\n207,312,4.5\n207,313,5.0\n207,314,5.5\n207,315,6.0\n207,316,6.5\n207,317,7.0\n207,318,7.5\n207,319,8.0\n207,320,8.5\n207,321,9.0\n207,322,9.5\n207,323,10.0\n207,324,10.5\n207,325,6.0\n207,326,5.5\n207,327,5.0\n207,328,4.5\n207,329,4.0\n207,330,3.5\n207,331,3.0\n207,332,2.5\n207,333,3.0\n207,334,3.5\n207,335,4.0\n207,336,4.5\n207,337,5.0\n207,338,5.5\n207,339,6.0\n207,340,6.5\n207,341,7.0\n207,342,7.5\n207,343,8.0\n207,344,8.5\n207,345,9.0\n207,346,9.5\n207,347,10.0\n207,348,10.5\n207,349,11.0\n207,350,6.5\n207,351,6.0\n207,352,5.5\n207,353,5.0\n207,354,4.5\n207,355,4.0\n207,356,3.5\n207,357,3.0\n207,358,3.5\n207,359,4.0\n207,360,4.5\n207,361,5.0\n207,362,5.5\n207,363,6.0\n207,364,6.5\n207,365,7.0\n207,366,7.5\n207,367,8.0\n207,368,8.5\n207,369,9.0\n207,370,9.5\n207,371,10.0\n207,372,10.5\n207,373,11.0\n207,374,11.5\n207,375,7.0\n207,376,6.5\n207,377,6.0\n207,378,5.5\n207,379,5.0\n207,380,4.5\n207,381,4.0\n207,382,3.5\n207,383,4.0\n207,384,4.5\n207,385,5.0\n207,386,5.5\n207,387,6.0\n207,388,6.5\n207,389,7.0\n207,390,7.5\n207,391,8.0\n207,392,8.5\n207,393,9.0\n207,394,9.5\n207,395,10.0\n207,396,10.5\n207,397,11.0\n207,398,11.5\n207,399,12.0\n207,400,7.5\n207,401,7.0\n207,402,6.5\n207,403,6.0\n207,404,5.5\n207,405,5.0\n207,406,4.5\n207,407,4.0\n207,408,4.5\n207,409,5.0\n207,410,5.5\n207,411,6.0\n207,412,6.5\n207,413,7.0\n207,414,7.5\n207,415,8.0\n207,416,8.5\n207,417,9.0\n207,418,9.5\n207,419,10.0\n207,420,10.5\n207,421,11.0\n207,422,11.5\n207,423,12.0\n207,424,12.5\n207,425,8.0\n207,426,7.5\n207,427,7.0\n207,428,6.5\n207,429,6.0\n207,430,5.5\n207,431,5.0\n207,432,4.5\n207,433,5.0\n207,434,5.5\n207,435,6.0\n207,436,6.5\n207,437,7.0\n207,438,7.5\n207,439,8.0\n207,440,8.5\n207,441,9.0\n207,442,9.5\n207,443,10.0\n207,444,10.5\n207,445,11.0\n207,446,11.5\n207,447,12.0\n207,448,12.5\n207,449,13.0\n207,450,8.5\n207,451,8.0\n207,452,7.5\n207,453,7.0\n207,454,6.5\n207,455,6.0\n207,456,5.5\n207,457,5.0\n207,458,5.5\n207,459,6.0\n207,460,6.5\n207,461,7.0\n207,462,7.5\n207,463,8.0\n207,464,8.5\n207,465,9.0\n207,466,9.5\n207,467,10.0\n207,468,10.5\n207,469,11.0\n207,470,11.5\n207,471,12.0\n207,472,12.5\n207,473,13.0\n207,474,13.5\n207,475,9.0\n207,476,8.5\n207,477,8.0\n207,478,7.5\n207,479,7.0\n207,480,6.5\n207,481,6.0\n207,482,5.5\n207,483,6.0\n207,484,6.5\n207,485,7.0\n207,486,7.5\n207,487,8.0\n207,488,8.5\n207,489,9.0\n207,490,9.5\n207,491,10.0\n207,492,10.5\n207,493,11.0\n207,494,11.5\n207,495,12.0\n207,496,12.5\n207,497,13.0\n207,498,13.5\n207,499,14.0\n207,500,9.5\n207,501,9.0\n207,502,8.5\n207,503,8.0\n207,504,7.5\n207,505,7.0\n207,506,6.5\n207,507,6.0\n207,508,6.5\n207,509,7.0\n207,510,7.5\n207,511,8.0\n207,512,8.5\n207,513,9.0\n207,514,9.5\n207,515,10.0\n207,516,10.5\n207,517,11.0\n207,518,11.5\n207,519,12.0\n207,520,12.5\n207,521,13.0\n207,522,13.5\n207,523,14.0\n207,524,14.5\n207,525,10.0\n207,526,9.5\n207,527,9.0\n207,528,8.5\n207,529,8.0\n207,530,7.5\n207,531,7.0\n207,532,6.5\n207,533,7.0\n207,534,7.5\n207,535,8.0\n207,536,8.5\n207,537,9.0\n207,538,9.5\n207,539,10.0\n207,540,10.5\n207,541,11.0\n207,542,11.5\n207,543,12.0\n207,544,12.5\n207,545,13.0\n207,546,13.5\n207,547,14.0\n207,548,14.5\n207,549,15.0\n207,550,10.5\n207,551,10.0\n207,552,9.5\n207,553,9.0\n207,554,8.5\n207,555,8.0\n207,556,7.5\n207,557,7.0\n207,558,7.5\n207,559,8.0\n207,560,8.5\n207,561,9.0\n207,562,9.5\n207,563,10.0\n207,564,10.5\n207,565,11.0\n207,566,11.5\n207,567,12.0\n207,568,12.5\n207,569,13.0\n207,570,13.5\n207,571,14.0\n207,572,14.5\n207,573,15.0\n207,574,15.5\n207,575,11.0\n207,576,10.5\n207,577,10.0\n207,578,9.5\n207,579,9.0\n207,580,8.5\n207,581,8.0\n207,582,7.5\n207,583,8.0\n207,584,8.5\n207,585,9.0\n207,586,9.5\n207,587,10.0\n207,588,10.5\n207,589,11.0\n207,590,11.5\n207,591,12.0\n207,592,12.5\n207,593,13.0\n207,594,13.5\n207,595,14.0\n207,596,14.5\n207,597,15.0\n207,598,15.5\n207,599,16.0\n207,600,11.5\n207,601,11.0\n207,602,10.5\n207,603,10.0\n207,604,9.5\n207,605,9.0\n207,606,8.5\n207,607,8.0\n207,608,8.5\n207,609,9.0\n207,610,9.5\n207,611,10.0\n207,612,10.5\n207,613,11.0\n207,614,11.5\n207,615,12.0\n207,616,12.5\n207,617,13.0\n207,618,13.5\n207,619,14.0\n207,620,14.5\n207,621,15.0\n207,622,15.5\n207,623,16.0\n207,624,16.5\n208,0,8.0\n208,1,7.5\n208,2,7.0\n208,3,6.5\n208,4,6.0\n208,5,5.5\n208,6,5.0\n208,7,4.5\n208,8,4.0\n208,9,4.5\n208,10,5.0\n208,11,5.5\n208,12,6.0\n208,13,6.5\n208,14,7.0\n208,15,7.5\n208,16,8.0\n208,17,8.5\n208,18,9.0\n208,19,9.5\n208,20,10.0\n208,21,10.5\n208,22,11.0\n208,23,11.5\n208,24,12.0\n208,25,7.5\n208,26,7.0\n208,27,6.5\n208,28,6.0\n208,29,5.5\n208,30,5.0\n208,31,4.5\n208,32,4.0\n208,33,3.5\n208,34,4.0\n208,35,4.5\n208,36,5.0\n208,37,5.5\n208,38,6.0\n208,39,6.5\n208,40,7.0\n208,41,7.5\n208,42,8.0\n208,43,8.5\n208,44,9.0\n208,45,9.5\n208,46,10.0\n208,47,10.5\n208,48,11.0\n208,49,11.5\n208,50,7.0\n208,51,6.5\n208,52,6.0\n208,53,5.5\n208,54,5.0\n208,55,4.5\n208,56,4.0\n208,57,3.5\n208,58,3.0\n208,59,3.5\n208,60,4.0\n208,61,4.5\n208,62,5.0\n208,63,5.5\n208,64,6.0\n208,65,6.5\n208,66,7.0\n208,67,7.5\n208,68,8.0\n208,69,8.5\n208,70,9.0\n208,71,9.5\n208,72,10.0\n208,73,10.5\n208,74,11.0\n208,75,6.5\n208,76,6.0\n208,77,5.5\n208,78,5.0\n208,79,4.5\n208,80,4.0\n208,81,3.5\n208,82,3.0\n208,83,2.5\n208,84,3.0\n208,85,3.5\n208,86,4.0\n208,87,4.5\n208,88,5.0\n208,89,5.5\n208,90,6.0\n208,91,6.5\n208,92,7.0\n208,93,7.5\n208,94,8.0\n208,95,8.5\n208,96,9.0\n208,97,9.5\n208,98,10.0\n208,99,10.5\n208,100,6.0\n208,101,5.5\n208,102,5.0\n208,103,4.5\n208,104,4.0\n208,105,3.5\n208,106,3.0\n208,107,2.5\n208,108,2.0\n208,109,2.5\n208,110,3.0\n208,111,3.5\n208,112,4.0\n208,113,4.5\n208,114,5.0\n208,115,5.5\n208,116,6.0\n208,117,6.5\n208,118,7.0\n208,119,7.5\n208,120,8.0\n208,121,8.5\n208,122,9.0\n208,123,9.5\n208,124,10.0\n208,125,5.5\n208,126,5.0\n208,127,4.5\n208,128,4.0\n208,129,3.5\n208,130,3.0\n208,131,2.5\n208,132,2.0\n208,133,1.5\n208,134,2.0\n208,135,2.5\n208,136,3.0\n208,137,3.5\n208,138,4.0\n208,139,4.5\n208,140,5.0\n208,141,5.5\n208,142,6.0\n208,143,6.5\n208,144,7.0\n208,145,7.5\n208,146,8.0\n208,147,8.5\n208,148,9.0\n208,149,9.5\n208,150,5.0\n208,151,4.5\n208,152,4.0\n208,153,3.5\n208,154,3.0\n208,155,2.5\n208,156,2.0\n208,157,1.5\n208,158,1.0\n208,159,1.5\n208,160,2.0\n208,161,2.5\n208,162,3.0\n208,163,3.5\n208,164,4.0\n208,165,4.5\n208,166,5.0\n208,167,5.5\n208,168,6.0\n208,169,6.5\n208,170,7.0\n208,171,7.5\n208,172,8.0\n208,173,8.5\n208,174,9.0\n208,175,4.5\n208,176,4.0\n208,177,3.5\n208,178,3.0\n208,179,2.5\n208,180,2.0\n208,181,1.5\n208,182,1.0\n208,183,0.5\n208,184,1.0\n208,185,1.5\n208,186,2.0\n208,187,2.5\n208,188,3.0\n208,189,3.5\n208,190,4.0\n208,191,4.5\n208,192,5.0\n208,193,5.5\n208,194,6.0\n208,195,6.5\n208,196,7.0\n208,197,7.5\n208,198,8.0\n208,199,8.5\n208,200,4.0\n208,201,3.5\n208,202,3.0\n208,203,2.5\n208,204,2.0\n208,205,1.5\n208,206,1.0\n208,207,0.5\n208,208,0\n208,209,0.5\n208,210,1.0\n208,211,1.5\n208,212,2.0\n208,213,2.5\n208,214,3.0\n208,215,3.5\n208,216,4.0\n208,217,4.5\n208,218,5.0\n208,219,5.5\n208,220,6.0\n208,221,6.5\n208,222,7.0\n208,223,7.5\n208,224,8.0\n208,225,4.5\n208,226,4.0\n208,227,3.5\n208,228,3.0\n208,229,2.5\n208,230,2.0\n208,231,1.5\n208,232,1.0\n208,233,0.5\n208,234,1.0\n208,235,1.5\n208,236,2.0\n208,237,2.5\n208,238,3.0\n208,239,3.5\n208,240,4.0\n208,241,4.5\n208,242,5.0\n208,243,5.5\n208,244,6.0\n208,245,6.5\n208,246,7.0\n208,247,7.5\n208,248,8.0\n208,249,8.5\n208,250,5.0\n208,251,4.5\n208,252,4.0\n208,253,3.5\n208,254,3.0\n208,255,2.5\n208,256,2.0\n208,257,1.5\n208,258,1.0\n208,259,1.5\n208,260,2.0\n208,261,2.5\n208,262,3.0\n208,263,3.5\n208,264,4.0\n208,265,4.5\n208,266,5.0\n208,267,5.5\n208,268,6.0\n208,269,6.5\n208,270,7.0\n208,271,7.5\n208,272,8.0\n208,273,8.5\n208,274,9.0\n208,275,5.5\n208,276,5.0\n208,277,4.5\n208,278,4.0\n208,279,3.5\n208,280,3.0\n208,281,2.5\n208,282,2.0\n208,283,1.5\n208,284,2.0\n208,285,2.5\n208,286,3.0\n208,287,3.5\n208,288,4.0\n208,289,4.5\n208,290,5.0\n208,291,5.5\n208,292,6.0\n208,293,6.5\n208,294,7.0\n208,295,7.5\n208,296,8.0\n208,297,8.5\n208,298,9.0\n208,299,9.5\n208,300,6.0\n208,301,5.5\n208,302,5.0\n208,303,4.5\n208,304,4.0\n208,305,3.5\n208,306,3.0\n208,307,2.5\n208,308,2.0\n208,309,2.5\n208,310,3.0\n208,311,3.5\n208,312,4.0\n208,313,4.5\n208,314,5.0\n208,315,5.5\n208,316,6.0\n208,317,6.5\n208,318,7.0\n208,319,7.5\n208,320,8.0\n208,321,8.5\n208,322,9.0\n208,323,9.5\n208,324,10.0\n208,325,6.5\n208,326,6.0\n208,327,5.5\n208,328,5.0\n208,329,4.5\n208,330,4.0\n208,331,3.5\n208,332,3.0\n208,333,2.5\n208,334,3.0\n208,335,3.5\n208,336,4.0\n208,337,4.5\n208,338,5.0\n208,339,5.5\n208,340,6.0\n208,341,6.5\n208,342,7.0\n208,343,7.5\n208,344,8.0\n208,345,8.5\n208,346,9.0\n208,347,9.5\n208,348,10.0\n208,349,10.5\n208,350,7.0\n208,351,6.5\n208,352,6.0\n208,353,5.5\n208,354,5.0\n208,355,4.5\n208,356,4.0\n208,357,3.5\n208,358,3.0\n208,359,3.5\n208,360,4.0\n208,361,4.5\n208,362,5.0\n208,363,5.5\n208,364,6.0\n208,365,6.5\n208,366,7.0\n208,367,7.5\n208,368,8.0\n208,369,8.5\n208,370,9.0\n208,371,9.5\n208,372,10.0\n208,373,10.5\n208,374,11.0\n208,375,7.5\n208,376,7.0\n208,377,6.5\n208,378,6.0\n208,379,5.5\n208,380,5.0\n208,381,4.5\n208,382,4.0\n208,383,3.5\n208,384,4.0\n208,385,4.5\n208,386,5.0\n208,387,5.5\n208,388,6.0\n208,389,6.5\n208,390,7.0\n208,391,7.5\n208,392,8.0\n208,393,8.5\n208,394,9.0\n208,395,9.5\n208,396,10.0\n208,397,10.5\n208,398,11.0\n208,399,11.5\n208,400,8.0\n208,401,7.5\n208,402,7.0\n208,403,6.5\n208,404,6.0\n208,405,5.5\n208,406,5.0\n208,407,4.5\n208,408,4.0\n208,409,4.5\n208,410,5.0\n208,411,5.5\n208,412,6.0\n208,413,6.5\n208,414,7.0\n208,415,7.5\n208,416,8.0\n208,417,8.5\n208,418,9.0\n208,419,9.5\n208,420,10.0\n208,421,10.5\n208,422,11.0\n208,423,11.5\n208,424,12.0\n208,425,8.5\n208,426,8.0\n208,427,7.5\n208,428,7.0\n208,429,6.5\n208,430,6.0\n208,431,5.5\n208,432,5.0\n208,433,4.5\n208,434,5.0\n208,435,5.5\n208,436,6.0\n208,437,6.5\n208,438,7.0\n208,439,7.5\n208,440,8.0\n208,441,8.5\n208,442,9.0\n208,443,9.5\n208,444,10.0\n208,445,10.5\n208,446,11.0\n208,447,11.5\n208,448,12.0\n208,449,12.5\n208,450,9.0\n208,451,8.5\n208,452,8.0\n208,453,7.5\n208,454,7.0\n208,455,6.5\n208,456,6.0\n208,457,5.5\n208,458,5.0\n208,459,5.5\n208,460,6.0\n208,461,6.5\n208,462,7.0\n208,463,7.5\n208,464,8.0\n208,465,8.5\n208,466,9.0\n208,467,9.5\n208,468,10.0\n208,469,10.5\n208,470,11.0\n208,471,11.5\n208,472,12.0\n208,473,12.5\n208,474,13.0\n208,475,9.5\n208,476,9.0\n208,477,8.5\n208,478,8.0\n208,479,7.5\n208,480,7.0\n208,481,6.5\n208,482,6.0\n208,483,5.5\n208,484,6.0\n208,485,6.5\n208,486,7.0\n208,487,7.5\n208,488,8.0\n208,489,8.5\n208,490,9.0\n208,491,9.5\n208,492,10.0\n208,493,10.5\n208,494,11.0\n208,495,11.5\n208,496,12.0\n208,497,12.5\n208,498,13.0\n208,499,13.5\n208,500,10.0\n208,501,9.5\n208,502,9.0\n208,503,8.5\n208,504,8.0\n208,505,7.5\n208,506,7.0\n208,507,6.5\n208,508,6.0\n208,509,6.5\n208,510,7.0\n208,511,7.5\n208,512,8.0\n208,513,8.5\n208,514,9.0\n208,515,9.5\n208,516,10.0\n208,517,10.5\n208,518,11.0\n208,519,11.5\n208,520,12.0\n208,521,12.5\n208,522,13.0\n208,523,13.5\n208,524,14.0\n208,525,10.5\n208,526,10.0\n208,527,9.5\n208,528,9.0\n208,529,8.5\n208,530,8.0\n208,531,7.5\n208,532,7.0\n208,533,6.5\n208,534,7.0\n208,535,7.5\n208,536,8.0\n208,537,8.5\n208,538,9.0\n208,539,9.5\n208,540,10.0\n208,541,10.5\n208,542,11.0\n208,543,11.5\n208,544,12.0\n208,545,12.5\n208,546,13.0\n208,547,13.5\n208,548,14.0\n208,549,14.5\n208,550,11.0\n208,551,10.5\n208,552,10.0\n208,553,9.5\n208,554,9.0\n208,555,8.5\n208,556,8.0\n208,557,7.5\n208,558,7.0\n208,559,7.5\n208,560,8.0\n208,561,8.5\n208,562,9.0\n208,563,9.5\n208,564,10.0\n208,565,10.5\n208,566,11.0\n208,567,11.5\n208,568,12.0\n208,569,12.5\n208,570,13.0\n208,571,13.5\n208,572,14.0\n208,573,14.5\n208,574,15.0\n208,575,11.5\n208,576,11.0\n208,577,10.5\n208,578,10.0\n208,579,9.5\n208,580,9.0\n208,581,8.5\n208,582,8.0\n208,583,7.5\n208,584,8.0\n208,585,8.5\n208,586,9.0\n208,587,9.5\n208,588,10.0\n208,589,10.5\n208,590,11.0\n208,591,11.5\n208,592,12.0\n208,593,12.5\n208,594,13.0\n208,595,13.5\n208,596,14.0\n208,597,14.5\n208,598,15.0\n208,599,15.5\n208,600,12.0\n208,601,11.5\n208,602,11.0\n208,603,10.5\n208,604,10.0\n208,605,9.5\n208,606,9.0\n208,607,8.5\n208,608,8.0\n208,609,8.5\n208,610,9.0\n208,611,9.5\n208,612,10.0\n208,613,10.5\n208,614,11.0\n208,615,11.5\n208,616,12.0\n208,617,12.5\n208,618,13.0\n208,619,13.5\n208,620,14.0\n208,621,14.5\n208,622,15.0\n208,623,15.5\n208,624,16.0\n209,0,8.5\n209,1,8.0\n209,2,7.5\n209,3,7.0\n209,4,6.5\n209,5,6.0\n209,6,5.5\n209,7,5.0\n209,8,4.5\n209,9,4.0\n209,10,4.5\n209,11,5.0\n209,12,5.5\n209,13,6.0\n209,14,6.5\n209,15,7.0\n209,16,7.5\n209,17,8.0\n209,18,8.5\n209,19,9.0\n209,20,9.5\n209,21,10.0\n209,22,10.5\n209,23,11.0\n209,24,11.5\n209,25,8.0\n209,26,7.5\n209,27,7.0\n209,28,6.5\n209,29,6.0\n209,30,5.5\n209,31,5.0\n209,32,4.5\n209,33,4.0\n209,34,3.5\n209,35,4.0\n209,36,4.5\n209,37,5.0\n209,38,5.5\n209,39,6.0\n209,40,6.5\n209,41,7.0\n209,42,7.5\n209,43,8.0\n209,44,8.5\n209,45,9.0\n209,46,9.5\n209,47,10.0\n209,48,10.5\n209,49,11.0\n209,50,7.5\n209,51,7.0\n209,52,6.5\n209,53,6.0\n209,54,5.5\n209,55,5.0\n209,56,4.5\n209,57,4.0\n209,58,3.5\n209,59,3.0\n209,60,3.5\n209,61,4.0\n209,62,4.5\n209,63,5.0\n209,64,5.5\n209,65,6.0\n209,66,6.5\n209,67,7.0\n209,68,7.5\n209,69,8.0\n209,70,8.5\n209,71,9.0\n209,72,9.5\n209,73,10.0\n209,74,10.5\n209,75,7.0\n209,76,6.5\n209,77,6.0\n209,78,5.5\n209,79,5.0\n209,80,4.5\n209,81,4.0\n209,82,3.5\n209,83,3.0\n209,84,2.5\n209,85,3.0\n209,86,3.5\n209,87,4.0\n209,88,4.5\n209,89,5.0\n209,90,5.5\n209,91,6.0\n209,92,6.5\n209,93,7.0\n209,94,7.5\n209,95,8.0\n209,96,8.5\n209,97,9.0\n209,98,9.5\n209,99,10.0\n209,100,6.5\n209,101,6.0\n209,102,5.5\n209,103,5.0\n209,104,4.5\n209,105,4.0\n209,106,3.5\n209,107,3.0\n209,108,2.5\n209,109,2.0\n209,110,2.5\n209,111,3.0\n209,112,3.5\n209,113,4.0\n209,114,4.5\n209,115,5.0\n209,116,5.5\n209,117,6.0\n209,118,6.5\n209,119,7.0\n209,120,7.5\n209,121,8.0\n209,122,8.5\n209,123,9.0\n209,124,9.5\n209,125,6.0\n209,126,5.5\n209,127,5.0\n209,128,4.5\n209,129,4.0\n209,130,3.5\n209,131,3.0\n209,132,2.5\n209,133,2.0\n209,134,1.5\n209,135,2.0\n209,136,2.5\n209,137,3.0\n209,138,3.5\n209,139,4.0\n209,140,4.5\n209,141,5.0\n209,142,5.5\n209,143,6.0\n209,144,6.5\n209,145,7.0\n209,146,7.5\n209,147,8.0\n209,148,8.5\n209,149,9.0\n209,150,5.5\n209,151,5.0\n209,152,4.5\n209,153,4.0\n209,154,3.5\n209,155,3.0\n209,156,2.5\n209,157,2.0\n209,158,1.5\n209,159,1.0\n209,160,1.5\n209,161,2.0\n209,162,2.5\n209,163,3.0\n209,164,3.5\n209,165,4.0\n209,166,4.5\n209,167,5.0\n209,168,5.5\n209,169,6.0\n209,170,6.5\n209,171,7.0\n209,172,7.5\n209,173,8.0\n209,174,8.5\n209,175,5.0\n209,176,4.5\n209,177,4.0\n209,178,3.5\n209,179,3.0\n209,180,2.5\n209,181,2.0\n209,182,1.5\n209,183,1.0\n209,184,0.5\n209,185,1.0\n209,186,1.5\n209,187,2.0\n209,188,2.5\n209,189,3.0\n209,190,3.5\n209,191,4.0\n209,192,4.5\n209,193,5.0\n209,194,5.5\n209,195,6.0\n209,196,6.5\n209,197,7.0\n209,198,7.5\n209,199,8.0\n209,200,4.5\n209,201,4.0\n209,202,3.5\n209,203,3.0\n209,204,2.5\n209,205,2.0\n209,206,1.5\n209,207,1.0\n209,208,0.5\n209,209,0\n209,210,0.5\n209,211,1.0\n209,212,1.5\n209,213,2.0\n209,214,2.5\n209,215,3.0\n209,216,3.5\n209,217,4.0\n209,218,4.5\n209,219,5.0\n209,220,5.5\n209,221,6.0\n209,222,6.5\n209,223,7.0\n209,224,7.5\n209,225,5.0\n209,226,4.5\n209,227,4.0\n209,228,3.5\n209,229,3.0\n209,230,2.5\n209,231,2.0\n209,232,1.5\n209,233,1.0\n209,234,0.5\n209,235,1.0\n209,236,1.5\n209,237,2.0\n209,238,2.5\n209,239,3.0\n209,240,3.5\n209,241,4.0\n209,242,4.5\n209,243,5.0\n209,244,5.5\n209,245,6.0\n209,246,6.5\n209,247,7.0\n209,248,7.5\n209,249,8.0\n209,250,5.5\n209,251,5.0\n209,252,4.5\n209,253,4.0\n209,254,3.5\n209,255,3.0\n209,256,2.5\n209,257,2.0\n209,258,1.5\n209,259,1.0\n209,260,1.5\n209,261,2.0\n209,262,2.5\n209,263,3.0\n209,264,3.5\n209,265,4.0\n209,266,4.5\n209,267,5.0\n209,268,5.5\n209,269,6.0\n209,270,6.5\n209,271,7.0\n209,272,7.5\n209,273,8.0\n209,274,8.5\n209,275,6.0\n209,276,5.5\n209,277,5.0\n209,278,4.5\n209,279,4.0\n209,280,3.5\n209,281,3.0\n209,282,2.5\n209,283,2.0\n209,284,1.5\n209,285,2.0\n209,286,2.5\n209,287,3.0\n209,288,3.5\n209,289,4.0\n209,290,4.5\n209,291,5.0\n209,292,5.5\n209,293,6.0\n209,294,6.5\n209,295,7.0\n209,296,7.5\n209,297,8.0\n209,298,8.5\n209,299,9.0\n209,300,6.5\n209,301,6.0\n209,302,5.5\n209,303,5.0\n209,304,4.5\n209,305,4.0\n209,306,3.5\n209,307,3.0\n209,308,2.5\n209,309,2.0\n209,310,2.5\n209,311,3.0\n209,312,3.5\n209,313,4.0\n209,314,4.5\n209,315,5.0\n209,316,5.5\n209,317,6.0\n209,318,6.5\n209,319,7.0\n209,320,7.5\n209,321,8.0\n209,322,8.5\n209,323,9.0\n209,324,9.5\n209,325,7.0\n209,326,6.5\n209,327,6.0\n209,328,5.5\n209,329,5.0\n209,330,4.5\n209,331,4.0\n209,332,3.5\n209,333,3.0\n209,334,2.5\n209,335,3.0\n209,336,3.5\n209,337,4.0\n209,338,4.5\n209,339,5.0\n209,340,5.5\n209,341,6.0\n209,342,6.5\n209,343,7.0\n209,344,7.5\n209,345,8.0\n209,346,8.5\n209,347,9.0\n209,348,9.5\n209,349,10.0\n209,350,7.5\n209,351,7.0\n209,352,6.5\n209,353,6.0\n209,354,5.5\n209,355,5.0\n209,356,4.5\n209,357,4.0\n209,358,3.5\n209,359,3.0\n209,360,3.5\n209,361,4.0\n209,362,4.5\n209,363,5.0\n209,364,5.5\n209,365,6.0\n209,366,6.5\n209,367,7.0\n209,368,7.5\n209,369,8.0\n209,370,8.5\n209,371,9.0\n209,372,9.5\n209,373,10.0\n209,374,10.5\n209,375,8.0\n209,376,7.5\n209,377,7.0\n209,378,6.5\n209,379,6.0\n209,380,5.5\n209,381,5.0\n209,382,4.5\n209,383,4.0\n209,384,3.5\n209,385,4.0\n209,386,4.5\n209,387,5.0\n209,388,5.5\n209,389,6.0\n209,390,6.5\n209,391,7.0\n209,392,7.5\n209,393,8.0\n209,394,8.5\n209,395,9.0\n209,396,9.5\n209,397,10.0\n209,398,10.5\n209,399,11.0\n209,400,8.5\n209,401,8.0\n209,402,7.5\n209,403,7.0\n209,404,6.5\n209,405,6.0\n209,406,5.5\n209,407,5.0\n209,408,4.5\n209,409,4.0\n209,410,4.5\n209,411,5.0\n209,412,5.5\n209,413,6.0\n209,414,6.5\n209,415,7.0\n209,416,7.5\n209,417,8.0\n209,418,8.5\n209,419,9.0\n209,420,9.5\n209,421,10.0\n209,422,10.5\n209,423,11.0\n209,424,11.5\n209,425,9.0\n209,426,8.5\n209,427,8.0\n209,428,7.5\n209,429,7.0\n209,430,6.5\n209,431,6.0\n209,432,5.5\n209,433,5.0\n209,434,4.5\n209,435,5.0\n209,436,5.5\n209,437,6.0\n209,438,6.5\n209,439,7.0\n209,440,7.5\n209,441,8.0\n209,442,8.5\n209,443,9.0\n209,444,9.5\n209,445,10.0\n209,446,10.5\n209,447,11.0\n209,448,11.5\n209,449,12.0\n209,450,9.5\n209,451,9.0\n209,452,8.5\n209,453,8.0\n209,454,7.5\n209,455,7.0\n209,456,6.5\n209,457,6.0\n209,458,5.5\n209,459,5.0\n209,460,5.5\n209,461,6.0\n209,462,6.5\n209,463,7.0\n209,464,7.5\n209,465,8.0\n209,466,8.5\n209,467,9.0\n209,468,9.5\n209,469,10.0\n209,470,10.5\n209,471,11.0\n209,472,11.5\n209,473,12.0\n209,474,12.5\n209,475,10.0\n209,476,9.5\n209,477,9.0\n209,478,8.5\n209,479,8.0\n209,480,7.5\n209,481,7.0\n209,482,6.5\n209,483,6.0\n209,484,5.5\n209,485,6.0\n209,486,6.5\n209,487,7.0\n209,488,7.5\n209,489,8.0\n209,490,8.5\n209,491,9.0\n209,492,9.5\n209,493,10.0\n209,494,10.5\n209,495,11.0\n209,496,11.5\n209,497,12.0\n209,498,12.5\n209,499,13.0\n209,500,10.5\n209,501,10.0\n209,502,9.5\n209,503,9.0\n209,504,8.5\n209,505,8.0\n209,506,7.5\n209,507,7.0\n209,508,6.5\n209,509,6.0\n209,510,6.5\n209,511,7.0\n209,512,7.5\n209,513,8.0\n209,514,8.5\n209,515,9.0\n209,516,9.5\n209,517,10.0\n209,518,10.5\n209,519,11.0\n209,520,11.5\n209,521,12.0\n209,522,12.5\n209,523,13.0\n209,524,13.5\n209,525,11.0\n209,526,10.5\n209,527,10.0\n209,528,9.5\n209,529,9.0\n209,530,8.5\n209,531,8.0\n209,532,7.5\n209,533,7.0\n209,534,6.5\n209,535,7.0\n209,536,7.5\n209,537,8.0\n209,538,8.5\n209,539,9.0\n209,540,9.5\n209,541,10.0\n209,542,10.5\n209,543,11.0\n209,544,11.5\n209,545,12.0\n209,546,12.5\n209,547,13.0\n209,548,13.5\n209,549,14.0\n209,550,11.5\n209,551,11.0\n209,552,10.5\n209,553,10.0\n209,554,9.5\n209,555,9.0\n209,556,8.5\n209,557,8.0\n209,558,7.5\n209,559,7.0\n209,560,7.5\n209,561,8.0\n209,562,8.5\n209,563,9.0\n209,564,9.5\n209,565,10.0\n209,566,10.5\n209,567,11.0\n209,568,11.5\n209,569,12.0\n209,570,12.5\n209,571,13.0\n209,572,13.5\n209,573,14.0\n209,574,14.5\n209,575,12.0\n209,576,11.5\n209,577,11.0\n209,578,10.5\n209,579,10.0\n209,580,9.5\n209,581,9.0\n209,582,8.5\n209,583,8.0\n209,584,7.5\n209,585,8.0\n209,586,8.5\n209,587,9.0\n209,588,9.5\n209,589,10.0\n209,590,10.5\n209,591,11.0\n209,592,11.5\n209,593,12.0\n209,594,12.5\n209,595,13.0\n209,596,13.5\n209,597,14.0\n209,598,14.5\n209,599,15.0\n209,600,12.5\n209,601,12.0\n209,602,11.5\n209,603,11.0\n209,604,10.5\n209,605,10.0\n209,606,9.5\n209,607,9.0\n209,608,8.5\n209,609,8.0\n209,610,8.5\n209,611,9.0\n209,612,9.5\n209,613,10.0\n209,614,10.5\n209,615,11.0\n209,616,11.5\n209,617,12.0\n209,618,12.5\n209,619,13.0\n209,620,13.5\n209,621,14.0\n209,622,14.5\n209,623,15.0\n209,624,15.5\n210,0,9.0\n210,1,8.5\n210,2,8.0\n210,3,7.5\n210,4,7.0\n210,5,6.5\n210,6,6.0\n210,7,5.5\n210,8,5.0\n210,9,4.5\n210,10,4.0\n210,11,4.5\n210,12,5.0\n210,13,5.5\n210,14,6.0\n210,15,6.5\n210,16,7.0\n210,17,7.5\n210,18,8.0\n210,19,8.5\n210,20,9.0\n210,21,9.5\n210,22,10.0\n210,23,10.5\n210,24,11.0\n210,25,8.5\n210,26,8.0\n210,27,7.5\n210,28,7.0\n210,29,6.5\n210,30,6.0\n210,31,5.5\n210,32,5.0\n210,33,4.5\n210,34,4.0\n210,35,3.5\n210,36,4.0\n210,37,4.5\n210,38,5.0\n210,39,5.5\n210,40,6.0\n210,41,6.5\n210,42,7.0\n210,43,7.5\n210,44,8.0\n210,45,8.5\n210,46,9.0\n210,47,9.5\n210,48,10.0\n210,49,10.5\n210,50,8.0\n210,51,7.5\n210,52,7.0\n210,53,6.5\n210,54,6.0\n210,55,5.5\n210,56,5.0\n210,57,4.5\n210,58,4.0\n210,59,3.5\n210,60,3.0\n210,61,3.5\n210,62,4.0\n210,63,4.5\n210,64,5.0\n210,65,5.5\n210,66,6.0\n210,67,6.5\n210,68,7.0\n210,69,7.5\n210,70,8.0\n210,71,8.5\n210,72,9.0\n210,73,9.5\n210,74,10.0\n210,75,7.5\n210,76,7.0\n210,77,6.5\n210,78,6.0\n210,79,5.5\n210,80,5.0\n210,81,4.5\n210,82,4.0\n210,83,3.5\n210,84,3.0\n210,85,2.5\n210,86,3.0\n210,87,3.5\n210,88,4.0\n210,89,4.5\n210,90,5.0\n210,91,5.5\n210,92,6.0\n210,93,6.5\n210,94,7.0\n210,95,7.5\n210,96,8.0\n210,97,8.5\n210,98,9.0\n210,99,9.5\n210,100,7.0\n210,101,6.5\n210,102,6.0\n210,103,5.5\n210,104,5.0\n210,105,4.5\n210,106,4.0\n210,107,3.5\n210,108,3.0\n210,109,2.5\n210,110,2.0\n210,111,2.5\n210,112,3.0\n210,113,3.5\n210,114,4.0\n210,115,4.5\n210,116,5.0\n210,117,5.5\n210,118,6.0\n210,119,6.5\n210,120,7.0\n210,121,7.5\n210,122,8.0\n210,123,8.5\n210,124,9.0\n210,125,6.5\n210,126,6.0\n210,127,5.5\n210,128,5.0\n210,129,4.5\n210,130,4.0\n210,131,3.5\n210,132,3.0\n210,133,2.5\n210,134,2.0\n210,135,1.5\n210,136,2.0\n210,137,2.5\n210,138,3.0\n210,139,3.5\n210,140,4.0\n210,141,4.5\n210,142,5.0\n210,143,5.5\n210,144,6.0\n210,145,6.5\n210,146,7.0\n210,147,7.5\n210,148,8.0\n210,149,8.5\n210,150,6.0\n210,151,5.5\n210,152,5.0\n210,153,4.5\n210,154,4.0\n210,155,3.5\n210,156,3.0\n210,157,2.5\n210,158,2.0\n210,159,1.5\n210,160,1.0\n210,161,1.5\n210,162,2.0\n210,163,2.5\n210,164,3.0\n210,165,3.5\n210,166,4.0\n210,167,4.5\n210,168,5.0\n210,169,5.5\n210,170,6.0\n210,171,6.5\n210,172,7.0\n210,173,7.5\n210,174,8.0\n210,175,5.5\n210,176,5.0\n210,177,4.5\n210,178,4.0\n210,179,3.5\n210,180,3.0\n210,181,2.5\n210,182,2.0\n210,183,1.5\n210,184,1.0\n210,185,0.5\n210,186,1.0\n210,187,1.5\n210,188,2.0\n210,189,2.5\n210,190,3.0\n210,191,3.5\n210,192,4.0\n210,193,4.5\n210,194,5.0\n210,195,5.5\n210,196,6.0\n210,197,6.5\n210,198,7.0\n210,199,7.5\n210,200,5.0\n210,201,4.5\n210,202,4.0\n210,203,3.5\n210,204,3.0\n210,205,2.5\n210,206,2.0\n210,207,1.5\n210,208,1.0\n210,209,0.5\n210,210,0\n210,211,0.5\n210,212,1.0\n210,213,1.5\n210,214,2.0\n210,215,2.5\n210,216,3.0\n210,217,3.5\n210,218,4.0\n210,219,4.5\n210,220,5.0\n210,221,5.5\n210,222,6.0\n210,223,6.5\n210,224,7.0\n210,225,5.5\n210,226,5.0\n210,227,4.5\n210,228,4.0\n210,229,3.5\n210,230,3.0\n210,231,2.5\n210,232,2.0\n210,233,1.5\n210,234,1.0\n210,235,0.5\n210,236,1.0\n210,237,1.5\n210,238,2.0\n210,239,2.5\n210,240,3.0\n210,241,3.5\n210,242,4.0\n210,243,4.5\n210,244,5.0\n210,245,5.5\n210,246,6.0\n210,247,6.5\n210,248,7.0\n210,249,7.5\n210,250,6.0\n210,251,5.5\n210,252,5.0\n210,253,4.5\n210,254,4.0\n210,255,3.5\n210,256,3.0\n210,257,2.5\n210,258,2.0\n210,259,1.5\n210,260,1.0\n210,261,1.5\n210,262,2.0\n210,263,2.5\n210,264,3.0\n210,265,3.5\n210,266,4.0\n210,267,4.5\n210,268,5.0\n210,269,5.5\n210,270,6.0\n210,271,6.5\n210,272,7.0\n210,273,7.5\n210,274,8.0\n210,275,6.5\n210,276,6.0\n210,277,5.5\n210,278,5.0\n210,279,4.5\n210,280,4.0\n210,281,3.5\n210,282,3.0\n210,283,2.5\n210,284,2.0\n210,285,1.5\n210,286,2.0\n210,287,2.5\n210,288,3.0\n210,289,3.5\n210,290,4.0\n210,291,4.5\n210,292,5.0\n210,293,5.5\n210,294,6.0\n210,295,6.5\n210,296,7.0\n210,297,7.5\n210,298,8.0\n210,299,8.5\n210,300,7.0\n210,301,6.5\n210,302,6.0\n210,303,5.5\n210,304,5.0\n210,305,4.5\n210,306,4.0\n210,307,3.5\n210,308,3.0\n210,309,2.5\n210,310,2.0\n210,311,2.5\n210,312,3.0\n210,313,3.5\n210,314,4.0\n210,315,4.5\n210,316,5.0\n210,317,5.5\n210,318,6.0\n210,319,6.5\n210,320,7.0\n210,321,7.5\n210,322,8.0\n210,323,8.5\n210,324,9.0\n210,325,7.5\n210,326,7.0\n210,327,6.5\n210,328,6.0\n210,329,5.5\n210,330,5.0\n210,331,4.5\n210,332,4.0\n210,333,3.5\n210,334,3.0\n210,335,2.5\n210,336,3.0\n210,337,3.5\n210,338,4.0\n210,339,4.5\n210,340,5.0\n210,341,5.5\n210,342,6.0\n210,343,6.5\n210,344,7.0\n210,345,7.5\n210,346,8.0\n210,347,8.5\n210,348,9.0\n210,349,9.5\n210,350,8.0\n210,351,7.5\n210,352,7.0\n210,353,6.5\n210,354,6.0\n210,355,5.5\n210,356,5.0\n210,357,4.5\n210,358,4.0\n210,359,3.5\n210,360,3.0\n210,361,3.5\n210,362,4.0\n210,363,4.5\n210,364,5.0\n210,365,5.5\n210,366,6.0\n210,367,6.5\n210,368,7.0\n210,369,7.5\n210,370,8.0\n210,371,8.5\n210,372,9.0\n210,373,9.5\n210,374,10.0\n210,375,8.5\n210,376,8.0\n210,377,7.5\n210,378,7.0\n210,379,6.5\n210,380,6.0\n210,381,5.5\n210,382,5.0\n210,383,4.5\n210,384,4.0\n210,385,3.5\n210,386,4.0\n210,387,4.5\n210,388,5.0\n210,389,5.5\n210,390,6.0\n210,391,6.5\n210,392,7.0\n210,393,7.5\n210,394,8.0\n210,395,8.5\n210,396,9.0\n210,397,9.5\n210,398,10.0\n210,399,10.5\n210,400,9.0\n210,401,8.5\n210,402,8.0\n210,403,7.5\n210,404,7.0\n210,405,6.5\n210,406,6.0\n210,407,5.5\n210,408,5.0\n210,409,4.5\n210,410,4.0\n210,411,4.5\n210,412,5.0\n210,413,5.5\n210,414,6.0\n210,415,6.5\n210,416,7.0\n210,417,7.5\n210,418,8.0\n210,419,8.5\n210,420,9.0\n210,421,9.5\n210,422,10.0\n210,423,10.5\n210,424,11.0\n210,425,9.5\n210,426,9.0\n210,427,8.5\n210,428,8.0\n210,429,7.5\n210,430,7.0\n210,431,6.5\n210,432,6.0\n210,433,5.5\n210,434,5.0\n210,435,4.5\n210,436,5.0\n210,437,5.5\n210,438,6.0\n210,439,6.5\n210,440,7.0\n210,441,7.5\n210,442,8.0\n210,443,8.5\n210,444,9.0\n210,445,9.5\n210,446,10.0\n210,447,10.5\n210,448,11.0\n210,449,11.5\n210,450,10.0\n210,451,9.5\n210,452,9.0\n210,453,8.5\n210,454,8.0\n210,455,7.5\n210,456,7.0\n210,457,6.5\n210,458,6.0\n210,459,5.5\n210,460,5.0\n210,461,5.5\n210,462,6.0\n210,463,6.5\n210,464,7.0\n210,465,7.5\n210,466,8.0\n210,467,8.5\n210,468,9.0\n210,469,9.5\n210,470,10.0\n210,471,10.5\n210,472,11.0\n210,473,11.5\n210,474,12.0\n210,475,10.5\n210,476,10.0\n210,477,9.5\n210,478,9.0\n210,479,8.5\n210,480,8.0\n210,481,7.5\n210,482,7.0\n210,483,6.5\n210,484,6.0\n210,485,5.5\n210,486,6.0\n210,487,6.5\n210,488,7.0\n210,489,7.5\n210,490,8.0\n210,491,8.5\n210,492,9.0\n210,493,9.5\n210,494,10.0\n210,495,10.5\n210,496,11.0\n210,497,11.5\n210,498,12.0\n210,499,12.5\n210,500,11.0\n210,501,10.5\n210,502,10.0\n210,503,9.5\n210,504,9.0\n210,505,8.5\n210,506,8.0\n210,507,7.5\n210,508,7.0\n210,509,6.5\n210,510,6.0\n210,511,6.5\n210,512,7.0\n210,513,7.5\n210,514,8.0\n210,515,8.5\n210,516,9.0\n210,517,9.5\n210,518,10.0\n210,519,10.5\n210,520,11.0\n210,521,11.5\n210,522,12.0\n210,523,12.5\n210,524,13.0\n210,525,11.5\n210,526,11.0\n210,527,10.5\n210,528,10.0\n210,529,9.5\n210,530,9.0\n210,531,8.5\n210,532,8.0\n210,533,7.5\n210,534,7.0\n210,535,6.5\n210,536,7.0\n210,537,7.5\n210,538,8.0\n210,539,8.5\n210,540,9.0\n210,541,9.5\n210,542,10.0\n210,543,10.5\n210,544,11.0\n210,545,11.5\n210,546,12.0\n210,547,12.5\n210,548,13.0\n210,549,13.5\n210,550,12.0\n210,551,11.5\n210,552,11.0\n210,553,10.5\n210,554,10.0\n210,555,9.5\n210,556,9.0\n210,557,8.5\n210,558,8.0\n210,559,7.5\n210,560,7.0\n210,561,7.5\n210,562,8.0\n210,563,8.5\n210,564,9.0\n210,565,9.5\n210,566,10.0\n210,567,10.5\n210,568,11.0\n210,569,11.5\n210,570,12.0\n210,571,12.5\n210,572,13.0\n210,573,13.5\n210,574,14.0\n210,575,12.5\n210,576,12.0\n210,577,11.5\n210,578,11.0\n210,579,10.5\n210,580,10.0\n210,581,9.5\n210,582,9.0\n210,583,8.5\n210,584,8.0\n210,585,7.5\n210,586,8.0\n210,587,8.5\n210,588,9.0\n210,589,9.5\n210,590,10.0\n210,591,10.5\n210,592,11.0\n210,593,11.5\n210,594,12.0\n210,595,12.5\n210,596,13.0\n210,597,13.5\n210,598,14.0\n210,599,14.5\n210,600,13.0\n210,601,12.5\n210,602,12.0\n210,603,11.5\n210,604,11.0\n210,605,10.5\n210,606,10.0\n210,607,9.5\n210,608,9.0\n210,609,8.5\n210,610,8.0\n210,611,8.5\n210,612,9.0\n210,613,9.5\n210,614,10.0\n210,615,10.5\n210,616,11.0\n210,617,11.5\n210,618,12.0\n210,619,12.5\n210,620,13.0\n210,621,13.5\n210,622,14.0\n210,623,14.5\n210,624,15.0\n211,0,9.5\n211,1,9.0\n211,2,8.5\n211,3,8.0\n211,4,7.5\n211,5,7.0\n211,6,6.5\n211,7,6.0\n211,8,5.5\n211,9,5.0\n211,10,4.5\n211,11,4.0\n211,12,4.5\n211,13,5.0\n211,14,5.5\n211,15,6.0\n211,16,6.5\n211,17,7.0\n211,18,7.5\n211,19,8.0\n211,20,8.5\n211,21,9.0\n211,22,9.5\n211,23,10.0\n211,24,10.5\n211,25,9.0\n211,26,8.5\n211,27,8.0\n211,28,7.5\n211,29,7.0\n211,30,6.5\n211,31,6.0\n211,32,5.5\n211,33,5.0\n211,34,4.5\n211,35,4.0\n211,36,3.5\n211,37,4.0\n211,38,4.5\n211,39,5.0\n211,40,5.5\n211,41,6.0\n211,42,6.5\n211,43,7.0\n211,44,7.5\n211,45,8.0\n211,46,8.5\n211,47,9.0\n211,48,9.5\n211,49,10.0\n211,50,8.5\n211,51,8.0\n211,52,7.5\n211,53,7.0\n211,54,6.5\n211,55,6.0\n211,56,5.5\n211,57,5.0\n211,58,4.5\n211,59,4.0\n211,60,3.5\n211,61,3.0\n211,62,3.5\n211,63,4.0\n211,64,4.5\n211,65,5.0\n211,66,5.5\n211,67,6.0\n211,68,6.5\n211,69,7.0\n211,70,7.5\n211,71,8.0\n211,72,8.5\n211,73,9.0\n211,74,9.5\n211,75,8.0\n211,76,7.5\n211,77,7.0\n211,78,6.5\n211,79,6.0\n211,80,5.5\n211,81,5.0\n211,82,4.5\n211,83,4.0\n211,84,3.5\n211,85,3.0\n211,86,2.5\n211,87,3.0\n211,88,3.5\n211,89,4.0\n211,90,4.5\n211,91,5.0\n211,92,5.5\n211,93,6.0\n211,94,6.5\n211,95,7.0\n211,96,7.5\n211,97,8.0\n211,98,8.5\n211,99,9.0\n211,100,7.5\n211,101,7.0\n211,102,6.5\n211,103,6.0\n211,104,5.5\n211,105,5.0\n211,106,4.5\n211,107,4.0\n211,108,3.5\n211,109,3.0\n211,110,2.5\n211,111,2.0\n211,112,2.5\n211,113,3.0\n211,114,3.5\n211,115,4.0\n211,116,4.5\n211,117,5.0\n211,118,5.5\n211,119,6.0\n211,120,6.5\n211,121,7.0\n211,122,7.5\n211,123,8.0\n211,124,8.5\n211,125,7.0\n211,126,6.5\n211,127,6.0\n211,128,5.5\n211,129,5.0\n211,130,4.5\n211,131,4.0\n211,132,3.5\n211,133,3.0\n211,134,2.5\n211,135,2.0\n211,136,1.5\n211,137,2.0\n211,138,2.5\n211,139,3.0\n211,140,3.5\n211,141,4.0\n211,142,4.5\n211,143,5.0\n211,144,5.5\n211,145,6.0\n211,146,6.5\n211,147,7.0\n211,148,7.5\n211,149,8.0\n211,150,6.5\n211,151,6.0\n211,152,5.5\n211,153,5.0\n211,154,4.5\n211,155,4.0\n211,156,3.5\n211,157,3.0\n211,158,2.5\n211,159,2.0\n211,160,1.5\n211,161,1.0\n211,162,1.5\n211,163,2.0\n211,164,2.5\n211,165,3.0\n211,166,3.5\n211,167,4.0\n211,168,4.5\n211,169,5.0\n211,170,5.5\n211,171,6.0\n211,172,6.5\n211,173,7.0\n211,174,7.5\n211,175,6.0\n211,176,5.5\n211,177,5.0\n211,178,4.5\n211,179,4.0\n211,180,3.5\n211,181,3.0\n211,182,2.5\n211,183,2.0\n211,184,1.5\n211,185,1.0\n211,186,0.5\n211,187,1.0\n211,188,1.5\n211,189,2.0\n211,190,2.5\n211,191,3.0\n211,192,3.5\n211,193,4.0\n211,194,4.5\n211,195,5.0\n211,196,5.5\n211,197,6.0\n211,198,6.5\n211,199,7.0\n211,200,5.5\n211,201,5.0\n211,202,4.5\n211,203,4.0\n211,204,3.5\n211,205,3.0\n211,206,2.5\n211,207,2.0\n211,208,1.5\n211,209,1.0\n211,210,0.5\n211,211,0\n211,212,0.5\n211,213,1.0\n211,214,1.5\n211,215,2.0\n211,216,2.5\n211,217,3.0\n211,218,3.5\n211,219,4.0\n211,220,4.5\n211,221,5.0\n211,222,5.5\n211,223,6.0\n211,224,6.5\n211,225,6.0\n211,226,5.5\n211,227,5.0\n211,228,4.5\n211,229,4.0\n211,230,3.5\n211,231,3.0\n211,232,2.5\n211,233,2.0\n211,234,1.5\n211,235,1.0\n211,236,0.5\n211,237,1.0\n211,238,1.5\n211,239,2.0\n211,240,2.5\n211,241,3.0\n211,242,3.5\n211,243,4.0\n211,244,4.5\n211,245,5.0\n211,246,5.5\n211,247,6.0\n211,248,6.5\n211,249,7.0\n211,250,6.5\n211,251,6.0\n211,252,5.5\n211,253,5.0\n211,254,4.5\n211,255,4.0\n211,256,3.5\n211,257,3.0\n211,258,2.5\n211,259,2.0\n211,260,1.5\n211,261,1.0\n211,262,1.5\n211,263,2.0\n211,264,2.5\n211,265,3.0\n211,266,3.5\n211,267,4.0\n211,268,4.5\n211,269,5.0\n211,270,5.5\n211,271,6.0\n211,272,6.5\n211,273,7.0\n211,274,7.5\n211,275,7.0\n211,276,6.5\n211,277,6.0\n211,278,5.5\n211,279,5.0\n211,280,4.5\n211,281,4.0\n211,282,3.5\n211,283,3.0\n211,284,2.5\n211,285,2.0\n211,286,1.5\n211,287,2.0\n211,288,2.5\n211,289,3.0\n211,290,3.5\n211,291,4.0\n211,292,4.5\n211,293,5.0\n211,294,5.5\n211,295,6.0\n211,296,6.5\n211,297,7.0\n211,298,7.5\n211,299,8.0\n211,300,7.5\n211,301,7.0\n211,302,6.5\n211,303,6.0\n211,304,5.5\n211,305,5.0\n211,306,4.5\n211,307,4.0\n211,308,3.5\n211,309,3.0\n211,310,2.5\n211,311,2.0\n211,312,2.5\n211,313,3.0\n211,314,3.5\n211,315,4.0\n211,316,4.5\n211,317,5.0\n211,318,5.5\n211,319,6.0\n211,320,6.5\n211,321,7.0\n211,322,7.5\n211,323,8.0\n211,324,8.5\n211,325,8.0\n211,326,7.5\n211,327,7.0\n211,328,6.5\n211,329,6.0\n211,330,5.5\n211,331,5.0\n211,332,4.5\n211,333,4.0\n211,334,3.5\n211,335,3.0\n211,336,2.5\n211,337,3.0\n211,338,3.5\n211,339,4.0\n211,340,4.5\n211,341,5.0\n211,342,5.5\n211,343,6.0\n211,344,6.5\n211,345,7.0\n211,346,7.5\n211,347,8.0\n211,348,8.5\n211,349,9.0\n211,350,8.5\n211,351,8.0\n211,352,7.5\n211,353,7.0\n211,354,6.5\n211,355,6.0\n211,356,5.5\n211,357,5.0\n211,358,4.5\n211,359,4.0\n211,360,3.5\n211,361,3.0\n211,362,3.5\n211,363,4.0\n211,364,4.5\n211,365,5.0\n211,366,5.5\n211,367,6.0\n211,368,6.5\n211,369,7.0\n211,370,7.5\n211,371,8.0\n211,372,8.5\n211,373,9.0\n211,374,9.5\n211,375,9.0\n211,376,8.5\n211,377,8.0\n211,378,7.5\n211,379,7.0\n211,380,6.5\n211,381,6.0\n211,382,5.5\n211,383,5.0\n211,384,4.5\n211,385,4.0\n211,386,3.5\n211,387,4.0\n211,388,4.5\n211,389,5.0\n211,390,5.5\n211,391,6.0\n211,392,6.5\n211,393,7.0\n211,394,7.5\n211,395,8.0\n211,396,8.5\n211,397,9.0\n211,398,9.5\n211,399,10.0\n211,400,9.5\n211,401,9.0\n211,402,8.5\n211,403,8.0\n211,404,7.5\n211,405,7.0\n211,406,6.5\n211,407,6.0\n211,408,5.5\n211,409,5.0\n211,410,4.5\n211,411,4.0\n211,412,4.5\n211,413,5.0\n211,414,5.5\n211,415,6.0\n211,416,6.5\n211,417,7.0\n211,418,7.5\n211,419,8.0\n211,420,8.5\n211,421,9.0\n211,422,9.5\n211,423,10.0\n211,424,10.5\n211,425,10.0\n211,426,9.5\n211,427,9.0\n211,428,8.5\n211,429,8.0\n211,430,7.5\n211,431,7.0\n211,432,6.5\n211,433,6.0\n211,434,5.5\n211,435,5.0\n211,436,4.5\n211,437,5.0\n211,438,5.5\n211,439,6.0\n211,440,6.5\n211,441,7.0\n211,442,7.5\n211,443,8.0\n211,444,8.5\n211,445,9.0\n211,446,9.5\n211,447,10.0\n211,448,10.5\n211,449,11.0\n211,450,10.5\n211,451,10.0\n211,452,9.5\n211,453,9.0\n211,454,8.5\n211,455,8.0\n211,456,7.5\n211,457,7.0\n211,458,6.5\n211,459,6.0\n211,460,5.5\n211,461,5.0\n211,462,5.5\n211,463,6.0\n211,464,6.5\n211,465,7.0\n211,466,7.5\n211,467,8.0\n211,468,8.5\n211,469,9.0\n211,470,9.5\n211,471,10.0\n211,472,10.5\n211,473,11.0\n211,474,11.5\n211,475,11.0\n211,476,10.5\n211,477,10.0\n211,478,9.5\n211,479,9.0\n211,480,8.5\n211,481,8.0\n211,482,7.5\n211,483,7.0\n211,484,6.5\n211,485,6.0\n211,486,5.5\n211,487,6.0\n211,488,6.5\n211,489,7.0\n211,490,7.5\n211,491,8.0\n211,492,8.5\n211,493,9.0\n211,494,9.5\n211,495,10.0\n211,496,10.5\n211,497,11.0\n211,498,11.5\n211,499,12.0\n211,500,11.5\n211,501,11.0\n211,502,10.5\n211,503,10.0\n211,504,9.5\n211,505,9.0\n211,506,8.5\n211,507,8.0\n211,508,7.5\n211,509,7.0\n211,510,6.5\n211,511,6.0\n211,512,6.5\n211,513,7.0\n211,514,7.5\n211,515,8.0\n211,516,8.5\n211,517,9.0\n211,518,9.5\n211,519,10.0\n211,520,10.5\n211,521,11.0\n211,522,11.5\n211,523,12.0\n211,524,12.5\n211,525,12.0\n211,526,11.5\n211,527,11.0\n211,528,10.5\n211,529,10.0\n211,530,9.5\n211,531,9.0\n211,532,8.5\n211,533,8.0\n211,534,7.5\n211,535,7.0\n211,536,6.5\n211,537,7.0\n211,538,7.5\n211,539,8.0\n211,540,8.5\n211,541,9.0\n211,542,9.5\n211,543,10.0\n211,544,10.5\n211,545,11.0\n211,546,11.5\n211,547,12.0\n211,548,12.5\n211,549,13.0\n211,550,12.5\n211,551,12.0\n211,552,11.5\n211,553,11.0\n211,554,10.5\n211,555,10.0\n211,556,9.5\n211,557,9.0\n211,558,8.5\n211,559,8.0\n211,560,7.5\n211,561,7.0\n211,562,7.5\n211,563,8.0\n211,564,8.5\n211,565,9.0\n211,566,9.5\n211,567,10.0\n211,568,10.5\n211,569,11.0\n211,570,11.5\n211,571,12.0\n211,572,12.5\n211,573,13.0\n211,574,13.5\n211,575,13.0\n211,576,12.5\n211,577,12.0\n211,578,11.5\n211,579,11.0\n211,580,10.5\n211,581,10.0\n211,582,9.5\n211,583,9.0\n211,584,8.5\n211,585,8.0\n211,586,7.5\n211,587,8.0\n211,588,8.5\n211,589,9.0\n211,590,9.5\n211,591,10.0\n211,592,10.5\n211,593,11.0\n211,594,11.5\n211,595,12.0\n211,596,12.5\n211,597,13.0\n211,598,13.5\n211,599,14.0\n211,600,13.5\n211,601,13.0\n211,602,12.5\n211,603,12.0\n211,604,11.5\n211,605,11.0\n211,606,10.5\n211,607,10.0\n211,608,9.5\n211,609,9.0\n211,610,8.5\n211,611,8.0\n211,612,8.5\n211,613,9.0\n211,614,9.5\n211,615,10.0\n211,616,10.5\n211,617,11.0\n211,618,11.5\n211,619,12.0\n211,620,12.5\n211,621,13.0\n211,622,13.5\n211,623,14.0\n211,624,14.5\n212,0,10.0\n212,1,9.5\n212,2,9.0\n212,3,8.5\n212,4,8.0\n212,5,7.5\n212,6,7.0\n212,7,6.5\n212,8,6.0\n212,9,5.5\n212,10,5.0\n212,11,4.5\n212,12,4.0\n212,13,4.5\n212,14,5.0\n212,15,5.5\n212,16,6.0\n212,17,6.5\n212,18,7.0\n212,19,7.5\n212,20,8.0\n212,21,8.5\n212,22,9.0\n212,23,9.5\n212,24,10.0\n212,25,9.5\n212,26,9.0\n212,27,8.5\n212,28,8.0\n212,29,7.5\n212,30,7.0\n212,31,6.5\n212,32,6.0\n212,33,5.5\n212,34,5.0\n212,35,4.5\n212,36,4.0\n212,37,3.5\n212,38,4.0\n212,39,4.5\n212,40,5.0\n212,41,5.5\n212,42,6.0\n212,43,6.5\n212,44,7.0\n212,45,7.5\n212,46,8.0\n212,47,8.5\n212,48,9.0\n212,49,9.5\n212,50,9.0\n212,51,8.5\n212,52,8.0\n212,53,7.5\n212,54,7.0\n212,55,6.5\n212,56,6.0\n212,57,5.5\n212,58,5.0\n212,59,4.5\n212,60,4.0\n212,61,3.5\n212,62,3.0\n212,63,3.5\n212,64,4.0\n212,65,4.5\n212,66,5.0\n212,67,5.5\n212,68,6.0\n212,69,6.5\n212,70,7.0\n212,71,7.5\n212,72,8.0\n212,73,8.5\n212,74,9.0\n212,75,8.5\n212,76,8.0\n212,77,7.5\n212,78,7.0\n212,79,6.5\n212,80,6.0\n212,81,5.5\n212,82,5.0\n212,83,4.5\n212,84,4.0\n212,85,3.5\n212,86,3.0\n212,87,2.5\n212,88,3.0\n212,89,3.5\n212,90,4.0\n212,91,4.5\n212,92,5.0\n212,93,5.5\n212,94,6.0\n212,95,6.5\n212,96,7.0\n212,97,7.5\n212,98,8.0\n212,99,8.5\n212,100,8.0\n212,101,7.5\n212,102,7.0\n212,103,6.5\n212,104,6.0\n212,105,5.5\n212,106,5.0\n212,107,4.5\n212,108,4.0\n212,109,3.5\n212,110,3.0\n212,111,2.5\n212,112,2.0\n212,113,2.5\n212,114,3.0\n212,115,3.5\n212,116,4.0\n212,117,4.5\n212,118,5.0\n212,119,5.5\n212,120,6.0\n212,121,6.5\n212,122,7.0\n212,123,7.5\n212,124,8.0\n212,125,7.5\n212,126,7.0\n212,127,6.5\n212,128,6.0\n212,129,5.5\n212,130,5.0\n212,131,4.5\n212,132,4.0\n212,133,3.5\n212,134,3.0\n212,135,2.5\n212,136,2.0\n212,137,1.5\n212,138,2.0\n212,139,2.5\n212,140,3.0\n212,141,3.5\n212,142,4.0\n212,143,4.5\n212,144,5.0\n212,145,5.5\n212,146,6.0\n212,147,6.5\n212,148,7.0\n212,149,7.5\n212,150,7.0\n212,151,6.5\n212,152,6.0\n212,153,5.5\n212,154,5.0\n212,155,4.5\n212,156,4.0\n212,157,3.5\n212,158,3.0\n212,159,2.5\n212,160,2.0\n212,161,1.5\n212,162,1.0\n212,163,1.5\n212,164,2.0\n212,165,2.5\n212,166,3.0\n212,167,3.5\n212,168,4.0\n212,169,4.5\n212,170,5.0\n212,171,5.5\n212,172,6.0\n212,173,6.5\n212,174,7.0\n212,175,6.5\n212,176,6.0\n212,177,5.5\n212,178,5.0\n212,179,4.5\n212,180,4.0\n212,181,3.5\n212,182,3.0\n212,183,2.5\n212,184,2.0\n212,185,1.5\n212,186,1.0\n212,187,0.5\n212,188,1.0\n212,189,1.5\n212,190,2.0\n212,191,2.5\n212,192,3.0\n212,193,3.5\n212,194,4.0\n212,195,4.5\n212,196,5.0\n212,197,5.5\n212,198,6.0\n212,199,6.5\n212,200,6.0\n212,201,5.5\n212,202,5.0\n212,203,4.5\n212,204,4.0\n212,205,3.5\n212,206,3.0\n212,207,2.5\n212,208,2.0\n212,209,1.5\n212,210,1.0\n212,211,0.5\n212,212,0\n212,213,0.5\n212,214,1.0\n212,215,1.5\n212,216,2.0\n212,217,2.5\n212,218,3.0\n212,219,3.5\n212,220,4.0\n212,221,4.5\n212,222,5.0\n212,223,5.5\n212,224,6.0\n212,225,6.5\n212,226,6.0\n212,227,5.5\n212,228,5.0\n212,229,4.5\n212,230,4.0\n212,231,3.5\n212,232,3.0\n212,233,2.5\n212,234,2.0\n212,235,1.5\n212,236,1.0\n212,237,0.5\n212,238,1.0\n212,239,1.5\n212,240,2.0\n212,241,2.5\n212,242,3.0\n212,243,3.5\n212,244,4.0\n212,245,4.5\n212,246,5.0\n212,247,5.5\n212,248,6.0\n212,249,6.5\n212,250,7.0\n212,251,6.5\n212,252,6.0\n212,253,5.5\n212,254,5.0\n212,255,4.5\n212,256,4.0\n212,257,3.5\n212,258,3.0\n212,259,2.5\n212,260,2.0\n212,261,1.5\n212,262,1.0\n212,263,1.5\n212,264,2.0\n212,265,2.5\n212,266,3.0\n212,267,3.5\n212,268,4.0\n212,269,4.5\n212,270,5.0\n212,271,5.5\n212,272,6.0\n212,273,6.5\n212,274,7.0\n212,275,7.5\n212,276,7.0\n212,277,6.5\n212,278,6.0\n212,279,5.5\n212,280,5.0\n212,281,4.5\n212,282,4.0\n212,283,3.5\n212,284,3.0\n212,285,2.5\n212,286,2.0\n212,287,1.5\n212,288,2.0\n212,289,2.5\n212,290,3.0\n212,291,3.5\n212,292,4.0\n212,293,4.5\n212,294,5.0\n212,295,5.5\n212,296,6.0\n212,297,6.5\n212,298,7.0\n212,299,7.5\n212,300,8.0\n212,301,7.5\n212,302,7.0\n212,303,6.5\n212,304,6.0\n212,305,5.5\n212,306,5.0\n212,307,4.5\n212,308,4.0\n212,309,3.5\n212,310,3.0\n212,311,2.5\n212,312,2.0\n212,313,2.5\n212,314,3.0\n212,315,3.5\n212,316,4.0\n212,317,4.5\n212,318,5.0\n212,319,5.5\n212,320,6.0\n212,321,6.5\n212,322,7.0\n212,323,7.5\n212,324,8.0\n212,325,8.5\n212,326,8.0\n212,327,7.5\n212,328,7.0\n212,329,6.5\n212,330,6.0\n212,331,5.5\n212,332,5.0\n212,333,4.5\n212,334,4.0\n212,335,3.5\n212,336,3.0\n212,337,2.5\n212,338,3.0\n212,339,3.5\n212,340,4.0\n212,341,4.5\n212,342,5.0\n212,343,5.5\n212,344,6.0\n212,345,6.5\n212,346,7.0\n212,347,7.5\n212,348,8.0\n212,349,8.5\n212,350,9.0\n212,351,8.5\n212,352,8.0\n212,353,7.5\n212,354,7.0\n212,355,6.5\n212,356,6.0\n212,357,5.5\n212,358,5.0\n212,359,4.5\n212,360,4.0\n212,361,3.5\n212,362,3.0\n212,363,3.5\n212,364,4.0\n212,365,4.5\n212,366,5.0\n212,367,5.5\n212,368,6.0\n212,369,6.5\n212,370,7.0\n212,371,7.5\n212,372,8.0\n212,373,8.5\n212,374,9.0\n212,375,9.5\n212,376,9.0\n212,377,8.5\n212,378,8.0\n212,379,7.5\n212,380,7.0\n212,381,6.5\n212,382,6.0\n212,383,5.5\n212,384,5.0\n212,385,4.5\n212,386,4.0\n212,387,3.5\n212,388,4.0\n212,389,4.5\n212,390,5.0\n212,391,5.5\n212,392,6.0\n212,393,6.5\n212,394,7.0\n212,395,7.5\n212,396,8.0\n212,397,8.5\n212,398,9.0\n212,399,9.5\n212,400,10.0\n212,401,9.5\n212,402,9.0\n212,403,8.5\n212,404,8.0\n212,405,7.5\n212,406,7.0\n212,407,6.5\n212,408,6.0\n212,409,5.5\n212,410,5.0\n212,411,4.5\n212,412,4.0\n212,413,4.5\n212,414,5.0\n212,415,5.5\n212,416,6.0\n212,417,6.5\n212,418,7.0\n212,419,7.5\n212,420,8.0\n212,421,8.5\n212,422,9.0\n212,423,9.5\n212,424,10.0\n212,425,10.5\n212,426,10.0\n212,427,9.5\n212,428,9.0\n212,429,8.5\n212,430,8.0\n212,431,7.5\n212,432,7.0\n212,433,6.5\n212,434,6.0\n212,435,5.5\n212,436,5.0\n212,437,4.5\n212,438,5.0\n212,439,5.5\n212,440,6.0\n212,441,6.5\n212,442,7.0\n212,443,7.5\n212,444,8.0\n212,445,8.5\n212,446,9.0\n212,447,9.5\n212,448,10.0\n212,449,10.5\n212,450,11.0\n212,451,10.5\n212,452,10.0\n212,453,9.5\n212,454,9.0\n212,455,8.5\n212,456,8.0\n212,457,7.5\n212,458,7.0\n212,459,6.5\n212,460,6.0\n212,461,5.5\n212,462,5.0\n212,463,5.5\n212,464,6.0\n212,465,6.5\n212,466,7.0\n212,467,7.5\n212,468,8.0\n212,469,8.5\n212,470,9.0\n212,471,9.5\n212,472,10.0\n212,473,10.5\n212,474,11.0\n212,475,11.5\n212,476,11.0\n212,477,10.5\n212,478,10.0\n212,479,9.5\n212,480,9.0\n212,481,8.5\n212,482,8.0\n212,483,7.5\n212,484,7.0\n212,485,6.5\n212,486,6.0\n212,487,5.5\n212,488,6.0\n212,489,6.5\n212,490,7.0\n212,491,7.5\n212,492,8.0\n212,493,8.5\n212,494,9.0\n212,495,9.5\n212,496,10.0\n212,497,10.5\n212,498,11.0\n212,499,11.5\n212,500,12.0\n212,501,11.5\n212,502,11.0\n212,503,10.5\n212,504,10.0\n212,505,9.5\n212,506,9.0\n212,507,8.5\n212,508,8.0\n212,509,7.5\n212,510,7.0\n212,511,6.5\n212,512,6.0\n212,513,6.5\n212,514,7.0\n212,515,7.5\n212,516,8.0\n212,517,8.5\n212,518,9.0\n212,519,9.5\n212,520,10.0\n212,521,10.5\n212,522,11.0\n212,523,11.5\n212,524,12.0\n212,525,12.5\n212,526,12.0\n212,527,11.5\n212,528,11.0\n212,529,10.5\n212,530,10.0\n212,531,9.5\n212,532,9.0\n212,533,8.5\n212,534,8.0\n212,535,7.5\n212,536,7.0\n212,537,6.5\n212,538,7.0\n212,539,7.5\n212,540,8.0\n212,541,8.5\n212,542,9.0\n212,543,9.5\n212,544,10.0\n212,545,10.5\n212,546,11.0\n212,547,11.5\n212,548,12.0\n212,549,12.5\n212,550,13.0\n212,551,12.5\n212,552,12.0\n212,553,11.5\n212,554,11.0\n212,555,10.5\n212,556,10.0\n212,557,9.5\n212,558,9.0\n212,559,8.5\n212,560,8.0\n212,561,7.5\n212,562,7.0\n212,563,7.5\n212,564,8.0\n212,565,8.5\n212,566,9.0\n212,567,9.5\n212,568,10.0\n212,569,10.5\n212,570,11.0\n212,571,11.5\n212,572,12.0\n212,573,12.5\n212,574,13.0\n212,575,13.5\n212,576,13.0\n212,577,12.5\n212,578,12.0\n212,579,11.5\n212,580,11.0\n212,581,10.5\n212,582,10.0\n212,583,9.5\n212,584,9.0\n212,585,8.5\n212,586,8.0\n212,587,7.5\n212,588,8.0\n212,589,8.5\n212,590,9.0\n212,591,9.5\n212,592,10.0\n212,593,10.5\n212,594,11.0\n212,595,11.5\n212,596,12.0\n212,597,12.5\n212,598,13.0\n212,599,13.5\n212,600,14.0\n212,601,13.5\n212,602,13.0\n212,603,12.5\n212,604,12.0\n212,605,11.5\n212,606,11.0\n212,607,10.5\n212,608,10.0\n212,609,9.5\n212,610,9.0\n212,611,8.5\n212,612,8.0\n212,613,8.5\n212,614,9.0\n212,615,9.5\n212,616,10.0\n212,617,10.5\n212,618,11.0\n212,619,11.5\n212,620,12.0\n212,621,12.5\n212,622,13.0\n212,623,13.5\n212,624,14.0\n213,0,10.5\n213,1,10.0\n213,2,9.5\n213,3,9.0\n213,4,8.5\n213,5,8.0\n213,6,7.5\n213,7,7.0\n213,8,6.5\n213,9,6.0\n213,10,5.5\n213,11,5.0\n213,12,4.5\n213,13,4.0\n213,14,4.5\n213,15,5.0\n213,16,5.5\n213,17,6.0\n213,18,6.5\n213,19,7.0\n213,20,7.5\n213,21,8.0\n213,22,8.5\n213,23,9.0\n213,24,9.5\n213,25,10.0\n213,26,9.5\n213,27,9.0\n213,28,8.5\n213,29,8.0\n213,30,7.5\n213,31,7.0\n213,32,6.5\n213,33,6.0\n213,34,5.5\n213,35,5.0\n213,36,4.5\n213,37,4.0\n213,38,3.5\n213,39,4.0\n213,40,4.5\n213,41,5.0\n213,42,5.5\n213,43,6.0\n213,44,6.5\n213,45,7.0\n213,46,7.5\n213,47,8.0\n213,48,8.5\n213,49,9.0\n213,50,9.5\n213,51,9.0\n213,52,8.5\n213,53,8.0\n213,54,7.5\n213,55,7.0\n213,56,6.5\n213,57,6.0\n213,58,5.5\n213,59,5.0\n213,60,4.5\n213,61,4.0\n213,62,3.5\n213,63,3.0\n213,64,3.5\n213,65,4.0\n213,66,4.5\n213,67,5.0\n213,68,5.5\n213,69,6.0\n213,70,6.5\n213,71,7.0\n213,72,7.5\n213,73,8.0\n213,74,8.5\n213,75,9.0\n213,76,8.5\n213,77,8.0\n213,78,7.5\n213,79,7.0\n213,80,6.5\n213,81,6.0\n213,82,5.5\n213,83,5.0\n213,84,4.5\n213,85,4.0\n213,86,3.5\n213,87,3.0\n213,88,2.5\n213,89,3.0\n213,90,3.5\n213,91,4.0\n213,92,4.5\n213,93,5.0\n213,94,5.5\n213,95,6.0\n213,96,6.5\n213,97,7.0\n213,98,7.5\n213,99,8.0\n213,100,8.5\n213,101,8.0\n213,102,7.5\n213,103,7.0\n213,104,6.5\n213,105,6.0\n213,106,5.5\n213,107,5.0\n213,108,4.5\n213,109,4.0\n213,110,3.5\n213,111,3.0\n213,112,2.5\n213,113,2.0\n213,114,2.5\n213,115,3.0\n213,116,3.5\n213,117,4.0\n213,118,4.5\n213,119,5.0\n213,120,5.5\n213,121,6.0\n213,122,6.5\n213,123,7.0\n213,124,7.5\n213,125,8.0\n213,126,7.5\n213,127,7.0\n213,128,6.5\n213,129,6.0\n213,130,5.5\n213,131,5.0\n213,132,4.5\n213,133,4.0\n213,134,3.5\n213,135,3.0\n213,136,2.5\n213,137,2.0\n213,138,1.5\n213,139,2.0\n213,140,2.5\n213,141,3.0\n213,142,3.5\n213,143,4.0\n213,144,4.5\n213,145,5.0\n213,146,5.5\n213,147,6.0\n213,148,6.5\n213,149,7.0\n213,150,7.5\n213,151,7.0\n213,152,6.5\n213,153,6.0\n213,154,5.5\n213,155,5.0\n213,156,4.5\n213,157,4.0\n213,158,3.5\n213,159,3.0\n213,160,2.5\n213,161,2.0\n213,162,1.5\n213,163,1.0\n213,164,1.5\n213,165,2.0\n213,166,2.5\n213,167,3.0\n213,168,3.5\n213,169,4.0\n213,170,4.5\n213,171,5.0\n213,172,5.5\n213,173,6.0\n213,174,6.5\n213,175,7.0\n213,176,6.5\n213,177,6.0\n213,178,5.5\n213,179,5.0\n213,180,4.5\n213,181,4.0\n213,182,3.5\n213,183,3.0\n213,184,2.5\n213,185,2.0\n213,186,1.5\n213,187,1.0\n213,188,0.5\n213,189,1.0\n213,190,1.5\n213,191,2.0\n213,192,2.5\n213,193,3.0\n213,194,3.5\n213,195,4.0\n213,196,4.5\n213,197,5.0\n213,198,5.5\n213,199,6.0\n213,200,6.5\n213,201,6.0\n213,202,5.5\n213,203,5.0\n213,204,4.5\n213,205,4.0\n213,206,3.5\n213,207,3.0\n213,208,2.5\n213,209,2.0\n213,210,1.5\n213,211,1.0\n213,212,0.5\n213,213,0\n213,214,0.5\n213,215,1.0\n213,216,1.5\n213,217,2.0\n213,218,2.5\n213,219,3.0\n213,220,3.5\n213,221,4.0\n213,222,4.5\n213,223,5.0\n213,224,5.5\n213,225,7.0\n213,226,6.5\n213,227,6.0\n213,228,5.5\n213,229,5.0\n213,230,4.5\n213,231,4.0\n213,232,3.5\n213,233,3.0\n213,234,2.5\n213,235,2.0\n213,236,1.5\n213,237,1.0\n213,238,0.5\n213,239,1.0\n213,240,1.5\n213,241,2.0\n213,242,2.5\n213,243,3.0\n213,244,3.5\n213,245,4.0\n213,246,4.5\n213,247,5.0\n213,248,5.5\n213,249,6.0\n213,250,7.5\n213,251,7.0\n213,252,6.5\n213,253,6.0\n213,254,5.5\n213,255,5.0\n213,256,4.5\n213,257,4.0\n213,258,3.5\n213,259,3.0\n213,260,2.5\n213,261,2.0\n213,262,1.5\n213,263,1.0\n213,264,1.5\n213,265,2.0\n213,266,2.5\n213,267,3.0\n213,268,3.5\n213,269,4.0\n213,270,4.5\n213,271,5.0\n213,272,5.5\n213,273,6.0\n213,274,6.5\n213,275,8.0\n213,276,7.5\n213,277,7.0\n213,278,6.5\n213,279,6.0\n213,280,5.5\n213,281,5.0\n213,282,4.5\n213,283,4.0\n213,284,3.5\n213,285,3.0\n213,286,2.5\n213,287,2.0\n213,288,1.5\n213,289,2.0\n213,290,2.5\n213,291,3.0\n213,292,3.5\n213,293,4.0\n213,294,4.5\n213,295,5.0\n213,296,5.5\n213,297,6.0\n213,298,6.5\n213,299,7.0\n213,300,8.5\n213,301,8.0\n213,302,7.5\n213,303,7.0\n213,304,6.5\n213,305,6.0\n213,306,5.5\n213,307,5.0\n213,308,4.5\n213,309,4.0\n213,310,3.5\n213,311,3.0\n213,312,2.5\n213,313,2.0\n213,314,2.5\n213,315,3.0\n213,316,3.5\n213,317,4.0\n213,318,4.5\n213,319,5.0\n213,320,5.5\n213,321,6.0\n213,322,6.5\n213,323,7.0\n213,324,7.5\n213,325,9.0\n213,326,8.5\n213,327,8.0\n213,328,7.5\n213,329,7.0\n213,330,6.5\n213,331,6.0\n213,332,5.5\n213,333,5.0\n213,334,4.5\n213,335,4.0\n213,336,3.5\n213,337,3.0\n213,338,2.5\n213,339,3.0\n213,340,3.5\n213,341,4.0\n213,342,4.5\n213,343,5.0\n213,344,5.5\n213,345,6.0\n213,346,6.5\n213,347,7.0\n213,348,7.5\n213,349,8.0\n213,350,9.5\n213,351,9.0\n213,352,8.5\n213,353,8.0\n213,354,7.5\n213,355,7.0\n213,356,6.5\n213,357,6.0\n213,358,5.5\n213,359,5.0\n213,360,4.5\n213,361,4.0\n213,362,3.5\n213,363,3.0\n213,364,3.5\n213,365,4.0\n213,366,4.5\n213,367,5.0\n213,368,5.5\n213,369,6.0\n213,370,6.5\n213,371,7.0\n213,372,7.5\n213,373,8.0\n213,374,8.5\n213,375,10.0\n213,376,9.5\n213,377,9.0\n213,378,8.5\n213,379,8.0\n213,380,7.5\n213,381,7.0\n213,382,6.5\n213,383,6.0\n213,384,5.5\n213,385,5.0\n213,386,4.5\n213,387,4.0\n213,388,3.5\n213,389,4.0\n213,390,4.5\n213,391,5.0\n213,392,5.5\n213,393,6.0\n213,394,6.5\n213,395,7.0\n213,396,7.5\n213,397,8.0\n213,398,8.5\n213,399,9.0\n213,400,10.5\n213,401,10.0\n213,402,9.5\n213,403,9.0\n213,404,8.5\n213,405,8.0\n213,406,7.5\n213,407,7.0\n213,408,6.5\n213,409,6.0\n213,410,5.5\n213,411,5.0\n213,412,4.5\n213,413,4.0\n213,414,4.5\n213,415,5.0\n213,416,5.5\n213,417,6.0\n213,418,6.5\n213,419,7.0\n213,420,7.5\n213,421,8.0\n213,422,8.5\n213,423,9.0\n213,424,9.5\n213,425,11.0\n213,426,10.5\n213,427,10.0\n213,428,9.5\n213,429,9.0\n213,430,8.5\n213,431,8.0\n213,432,7.5\n213,433,7.0\n213,434,6.5\n213,435,6.0\n213,436,5.5\n213,437,5.0\n213,438,4.5\n213,439,5.0\n213,440,5.5\n213,441,6.0\n213,442,6.5\n213,443,7.0\n213,444,7.5\n213,445,8.0\n213,446,8.5\n213,447,9.0\n213,448,9.5\n213,449,10.0\n213,450,11.5\n213,451,11.0\n213,452,10.5\n213,453,10.0\n213,454,9.5\n213,455,9.0\n213,456,8.5\n213,457,8.0\n213,458,7.5\n213,459,7.0\n213,460,6.5\n213,461,6.0\n213,462,5.5\n213,463,5.0\n213,464,5.5\n213,465,6.0\n213,466,6.5\n213,467,7.0\n213,468,7.5\n213,469,8.0\n213,470,8.5\n213,471,9.0\n213,472,9.5\n213,473,10.0\n213,474,10.5\n213,475,12.0\n213,476,11.5\n213,477,11.0\n213,478,10.5\n213,479,10.0\n213,480,9.5\n213,481,9.0\n213,482,8.5\n213,483,8.0\n213,484,7.5\n213,485,7.0\n213,486,6.5\n213,487,6.0\n213,488,5.5\n213,489,6.0\n213,490,6.5\n213,491,7.0\n213,492,7.5\n213,493,8.0\n213,494,8.5\n213,495,9.0\n213,496,9.5\n213,497,10.0\n213,498,10.5\n213,499,11.0\n213,500,12.5\n213,501,12.0\n213,502,11.5\n213,503,11.0\n213,504,10.5\n213,505,10.0\n213,506,9.5\n213,507,9.0\n213,508,8.5\n213,509,8.0\n213,510,7.5\n213,511,7.0\n213,512,6.5\n213,513,6.0\n213,514,6.5\n213,515,7.0\n213,516,7.5\n213,517,8.0\n213,518,8.5\n213,519,9.0\n213,520,9.5\n213,521,10.0\n213,522,10.5\n213,523,11.0\n213,524,11.5\n213,525,13.0\n213,526,12.5\n213,527,12.0\n213,528,11.5\n213,529,11.0\n213,530,10.5\n213,531,10.0\n213,532,9.5\n213,533,9.0\n213,534,8.5\n213,535,8.0\n213,536,7.5\n213,537,7.0\n213,538,6.5\n213,539,7.0\n213,540,7.5\n213,541,8.0\n213,542,8.5\n213,543,9.0\n213,544,9.5\n213,545,10.0\n213,546,10.5\n213,547,11.0\n213,548,11.5\n213,549,12.0\n213,550,13.5\n213,551,13.0\n213,552,12.5\n213,553,12.0\n213,554,11.5\n213,555,11.0\n213,556,10.5\n213,557,10.0\n213,558,9.5\n213,559,9.0\n213,560,8.5\n213,561,8.0\n213,562,7.5\n213,563,7.0\n213,564,7.5\n213,565,8.0\n213,566,8.5\n213,567,9.0\n213,568,9.5\n213,569,10.0\n213,570,10.5\n213,571,11.0\n213,572,11.5\n213,573,12.0\n213,574,12.5\n213,575,14.0\n213,576,13.5\n213,577,13.0\n213,578,12.5\n213,579,12.0\n213,580,11.5\n213,581,11.0\n213,582,10.5\n213,583,10.0\n213,584,9.5\n213,585,9.0\n213,586,8.5\n213,587,8.0\n213,588,7.5\n213,589,8.0\n213,590,8.5\n213,591,9.0\n213,592,9.5\n213,593,10.0\n213,594,10.5\n213,595,11.0\n213,596,11.5\n213,597,12.0\n213,598,12.5\n213,599,13.0\n213,600,14.5\n213,601,14.0\n213,602,13.5\n213,603,13.0\n213,604,12.5\n213,605,12.0\n213,606,11.5\n213,607,11.0\n213,608,10.5\n213,609,10.0\n213,610,9.5\n213,611,9.0\n213,612,8.5\n213,613,8.0\n213,614,8.5\n213,615,9.0\n213,616,9.5\n213,617,10.0\n213,618,10.5\n213,619,11.0\n213,620,11.5\n213,621,12.0\n213,622,12.5\n213,623,13.0\n213,624,13.5\n214,0,11.0\n214,1,10.5\n214,2,10.0\n214,3,9.5\n214,4,9.0\n214,5,8.5\n214,6,8.0\n214,7,7.5\n214,8,7.0\n214,9,6.5\n214,10,6.0\n214,11,5.5\n214,12,5.0\n214,13,4.5\n214,14,4.0\n214,15,4.5\n214,16,5.0\n214,17,5.5\n214,18,6.0\n214,19,6.5\n214,20,7.0\n214,21,7.5\n214,22,8.0\n214,23,8.5\n214,24,9.0\n214,25,10.5\n214,26,10.0\n214,27,9.5\n214,28,9.0\n214,29,8.5\n214,30,8.0\n214,31,7.5\n214,32,7.0\n214,33,6.5\n214,34,6.0\n214,35,5.5\n214,36,5.0\n214,37,4.5\n214,38,4.0\n214,39,3.5\n214,40,4.0\n214,41,4.5\n214,42,5.0\n214,43,5.5\n214,44,6.0\n214,45,6.5\n214,46,7.0\n214,47,7.5\n214,48,8.0\n214,49,8.5\n214,50,10.0\n214,51,9.5\n214,52,9.0\n214,53,8.5\n214,54,8.0\n214,55,7.5\n214,56,7.0\n214,57,6.5\n214,58,6.0\n214,59,5.5\n214,60,5.0\n214,61,4.5\n214,62,4.0\n214,63,3.5\n214,64,3.0\n214,65,3.5\n214,66,4.0\n214,67,4.5\n214,68,5.0\n214,69,5.5\n214,70,6.0\n214,71,6.5\n214,72,7.0\n214,73,7.5\n214,74,8.0\n214,75,9.5\n214,76,9.0\n214,77,8.5\n214,78,8.0\n214,79,7.5\n214,80,7.0\n214,81,6.5\n214,82,6.0\n214,83,5.5\n214,84,5.0\n214,85,4.5\n214,86,4.0\n214,87,3.5\n214,88,3.0\n214,89,2.5\n214,90,3.0\n214,91,3.5\n214,92,4.0\n214,93,4.5\n214,94,5.0\n214,95,5.5\n214,96,6.0\n214,97,6.5\n214,98,7.0\n214,99,7.5\n214,100,9.0\n214,101,8.5\n214,102,8.0\n214,103,7.5\n214,104,7.0\n214,105,6.5\n214,106,6.0\n214,107,5.5\n214,108,5.0\n214,109,4.5\n214,110,4.0\n214,111,3.5\n214,112,3.0\n214,113,2.5\n214,114,2.0\n214,115,2.5\n214,116,3.0\n214,117,3.5\n214,118,4.0\n214,119,4.5\n214,120,5.0\n214,121,5.5\n214,122,6.0\n214,123,6.5\n214,124,7.0\n214,125,8.5\n214,126,8.0\n214,127,7.5\n214,128,7.0\n214,129,6.5\n214,130,6.0\n214,131,5.5\n214,132,5.0\n214,133,4.5\n214,134,4.0\n214,135,3.5\n214,136,3.0\n214,137,2.5\n214,138,2.0\n214,139,1.5\n214,140,2.0\n214,141,2.5\n214,142,3.0\n214,143,3.5\n214,144,4.0\n214,145,4.5\n214,146,5.0\n214,147,5.5\n214,148,6.0\n214,149,6.5\n214,150,8.0\n214,151,7.5\n214,152,7.0\n214,153,6.5\n214,154,6.0\n214,155,5.5\n214,156,5.0\n214,157,4.5\n214,158,4.0\n214,159,3.5\n214,160,3.0\n214,161,2.5\n214,162,2.0\n214,163,1.5\n214,164,1.0\n214,165,1.5\n214,166,2.0\n214,167,2.5\n214,168,3.0\n214,169,3.5\n214,170,4.0\n214,171,4.5\n214,172,5.0\n214,173,5.5\n214,174,6.0\n214,175,7.5\n214,176,7.0\n214,177,6.5\n214,178,6.0\n214,179,5.5\n214,180,5.0\n214,181,4.5\n214,182,4.0\n214,183,3.5\n214,184,3.0\n214,185,2.5\n214,186,2.0\n214,187,1.5\n214,188,1.0\n214,189,0.5\n214,190,1.0\n214,191,1.5\n214,192,2.0\n214,193,2.5\n214,194,3.0\n214,195,3.5\n214,196,4.0\n214,197,4.5\n214,198,5.0\n214,199,5.5\n214,200,7.0\n214,201,6.5\n214,202,6.0\n214,203,5.5\n214,204,5.0\n214,205,4.5\n214,206,4.0\n214,207,3.5\n214,208,3.0\n214,209,2.5\n214,210,2.0\n214,211,1.5\n214,212,1.0\n214,213,0.5\n214,214,0\n214,215,0.5\n214,216,1.0\n214,217,1.5\n214,218,2.0\n214,219,2.5\n214,220,3.0\n214,221,3.5\n214,222,4.0\n214,223,4.5\n214,224,5.0\n214,225,7.5\n214,226,7.0\n214,227,6.5\n214,228,6.0\n214,229,5.5\n214,230,5.0\n214,231,4.5\n214,232,4.0\n214,233,3.5\n214,234,3.0\n214,235,2.5\n214,236,2.0\n214,237,1.5\n214,238,1.0\n214,239,0.5\n214,240,1.0\n214,241,1.5\n214,242,2.0\n214,243,2.5\n214,244,3.0\n214,245,3.5\n214,246,4.0\n214,247,4.5\n214,248,5.0\n214,249,5.5\n214,250,8.0\n214,251,7.5\n214,252,7.0\n214,253,6.5\n214,254,6.0\n214,255,5.5\n214,256,5.0\n214,257,4.5\n214,258,4.0\n214,259,3.5\n214,260,3.0\n214,261,2.5\n214,262,2.0\n214,263,1.5\n214,264,1.0\n214,265,1.5\n214,266,2.0\n214,267,2.5\n214,268,3.0\n214,269,3.5\n214,270,4.0\n214,271,4.5\n214,272,5.0\n214,273,5.5\n214,274,6.0\n214,275,8.5\n214,276,8.0\n214,277,7.5\n214,278,7.0\n214,279,6.5\n214,280,6.0\n214,281,5.5\n214,282,5.0\n214,283,4.5\n214,284,4.0\n214,285,3.5\n214,286,3.0\n214,287,2.5\n214,288,2.0\n214,289,1.5\n214,290,2.0\n214,291,2.5\n214,292,3.0\n214,293,3.5\n214,294,4.0\n214,295,4.5\n214,296,5.0\n214,297,5.5\n214,298,6.0\n214,299,6.5\n214,300,9.0\n214,301,8.5\n214,302,8.0\n214,303,7.5\n214,304,7.0\n214,305,6.5\n214,306,6.0\n214,307,5.5\n214,308,5.0\n214,309,4.5\n214,310,4.0\n214,311,3.5\n214,312,3.0\n214,313,2.5\n214,314,2.0\n214,315,2.5\n214,316,3.0\n214,317,3.5\n214,318,4.0\n214,319,4.5\n214,320,5.0\n214,321,5.5\n214,322,6.0\n214,323,6.5\n214,324,7.0\n214,325,9.5\n214,326,9.0\n214,327,8.5\n214,328,8.0\n214,329,7.5\n214,330,7.0\n214,331,6.5\n214,332,6.0\n214,333,5.5\n214,334,5.0\n214,335,4.5\n214,336,4.0\n214,337,3.5\n214,338,3.0\n214,339,2.5\n214,340,3.0\n214,341,3.5\n214,342,4.0\n214,343,4.5\n214,344,5.0\n214,345,5.5\n214,346,6.0\n214,347,6.5\n214,348,7.0\n214,349,7.5\n214,350,10.0\n214,351,9.5\n214,352,9.0\n214,353,8.5\n214,354,8.0\n214,355,7.5\n214,356,7.0\n214,357,6.5\n214,358,6.0\n214,359,5.5\n214,360,5.0\n214,361,4.5\n214,362,4.0\n214,363,3.5\n214,364,3.0\n214,365,3.5\n214,366,4.0\n214,367,4.5\n214,368,5.0\n214,369,5.5\n214,370,6.0\n214,371,6.5\n214,372,7.0\n214,373,7.5\n214,374,8.0\n214,375,10.5\n214,376,10.0\n214,377,9.5\n214,378,9.0\n214,379,8.5\n214,380,8.0\n214,381,7.5\n214,382,7.0\n214,383,6.5\n214,384,6.0\n214,385,5.5\n214,386,5.0\n214,387,4.5\n214,388,4.0\n214,389,3.5\n214,390,4.0\n214,391,4.5\n214,392,5.0\n214,393,5.5\n214,394,6.0\n214,395,6.5\n214,396,7.0\n214,397,7.5\n214,398,8.0\n214,399,8.5\n214,400,11.0\n214,401,10.5\n214,402,10.0\n214,403,9.5\n214,404,9.0\n214,405,8.5\n214,406,8.0\n214,407,7.5\n214,408,7.0\n214,409,6.5\n214,410,6.0\n214,411,5.5\n214,412,5.0\n214,413,4.5\n214,414,4.0\n214,415,4.5\n214,416,5.0\n214,417,5.5\n214,418,6.0\n214,419,6.5\n214,420,7.0\n214,421,7.5\n214,422,8.0\n214,423,8.5\n214,424,9.0\n214,425,11.5\n214,426,11.0\n214,427,10.5\n214,428,10.0\n214,429,9.5\n214,430,9.0\n214,431,8.5\n214,432,8.0\n214,433,7.5\n214,434,7.0\n214,435,6.5\n214,436,6.0\n214,437,5.5\n214,438,5.0\n214,439,4.5\n214,440,5.0\n214,441,5.5\n214,442,6.0\n214,443,6.5\n214,444,7.0\n214,445,7.5\n214,446,8.0\n214,447,8.5\n214,448,9.0\n214,449,9.5\n214,450,12.0\n214,451,11.5\n214,452,11.0\n214,453,10.5\n214,454,10.0\n214,455,9.5\n214,456,9.0\n214,457,8.5\n214,458,8.0\n214,459,7.5\n214,460,7.0\n214,461,6.5\n214,462,6.0\n214,463,5.5\n214,464,5.0\n214,465,5.5\n214,466,6.0\n214,467,6.5\n214,468,7.0\n214,469,7.5\n214,470,8.0\n214,471,8.5\n214,472,9.0\n214,473,9.5\n214,474,10.0\n214,475,12.5\n214,476,12.0\n214,477,11.5\n214,478,11.0\n214,479,10.5\n214,480,10.0\n214,481,9.5\n214,482,9.0\n214,483,8.5\n214,484,8.0\n214,485,7.5\n214,486,7.0\n214,487,6.5\n214,488,6.0\n214,489,5.5\n214,490,6.0\n214,491,6.5\n214,492,7.0\n214,493,7.5\n214,494,8.0\n214,495,8.5\n214,496,9.0\n214,497,9.5\n214,498,10.0\n214,499,10.5\n214,500,13.0\n214,501,12.5\n214,502,12.0\n214,503,11.5\n214,504,11.0\n214,505,10.5\n214,506,10.0\n214,507,9.5\n214,508,9.0\n214,509,8.5\n214,510,8.0\n214,511,7.5\n214,512,7.0\n214,513,6.5\n214,514,6.0\n214,515,6.5\n214,516,7.0\n214,517,7.5\n214,518,8.0\n214,519,8.5\n214,520,9.0\n214,521,9.5\n214,522,10.0\n214,523,10.5\n214,524,11.0\n214,525,13.5\n214,526,13.0\n214,527,12.5\n214,528,12.0\n214,529,11.5\n214,530,11.0\n214,531,10.5\n214,532,10.0\n214,533,9.5\n214,534,9.0\n214,535,8.5\n214,536,8.0\n214,537,7.5\n214,538,7.0\n214,539,6.5\n214,540,7.0\n214,541,7.5\n214,542,8.0\n214,543,8.5\n214,544,9.0\n214,545,9.5\n214,546,10.0\n214,547,10.5\n214,548,11.0\n214,549,11.5\n214,550,14.0\n214,551,13.5\n214,552,13.0\n214,553,12.5\n214,554,12.0\n214,555,11.5\n214,556,11.0\n214,557,10.5\n214,558,10.0\n214,559,9.5\n214,560,9.0\n214,561,8.5\n214,562,8.0\n214,563,7.5\n214,564,7.0\n214,565,7.5\n214,566,8.0\n214,567,8.5\n214,568,9.0\n214,569,9.5\n214,570,10.0\n214,571,10.5\n214,572,11.0\n214,573,11.5\n214,574,12.0\n214,575,14.5\n214,576,14.0\n214,577,13.5\n214,578,13.0\n214,579,12.5\n214,580,12.0\n214,581,11.5\n214,582,11.0\n214,583,10.5\n214,584,10.0\n214,585,9.5\n214,586,9.0\n214,587,8.5\n214,588,8.0\n214,589,7.5\n214,590,8.0\n214,591,8.5\n214,592,9.0\n214,593,9.5\n214,594,10.0\n214,595,10.5\n214,596,11.0\n214,597,11.5\n214,598,12.0\n214,599,12.5\n214,600,15.0\n214,601,14.5\n214,602,14.0\n214,603,13.5\n214,604,13.0\n214,605,12.5\n214,606,12.0\n214,607,11.5\n214,608,11.0\n214,609,10.5\n214,610,10.0\n214,611,9.5\n214,612,9.0\n214,613,8.5\n214,614,8.0\n214,615,8.5\n214,616,9.0\n214,617,9.5\n214,618,10.0\n214,619,10.5\n214,620,11.0\n214,621,11.5\n214,622,12.0\n214,623,12.5\n214,624,13.0\n215,0,11.5\n215,1,11.0\n215,2,10.5\n215,3,10.0\n215,4,9.5\n215,5,9.0\n215,6,8.5\n215,7,8.0\n215,8,7.5\n215,9,7.0\n215,10,6.5\n215,11,6.0\n215,12,5.5\n215,13,5.0\n215,14,4.5\n215,15,4.0\n215,16,4.5\n215,17,5.0\n215,18,5.5\n215,19,6.0\n215,20,6.5\n215,21,7.0\n215,22,7.5\n215,23,8.0\n215,24,8.5\n215,25,11.0\n215,26,10.5\n215,27,10.0\n215,28,9.5\n215,29,9.0\n215,30,8.5\n215,31,8.0\n215,32,7.5\n215,33,7.0\n215,34,6.5\n215,35,6.0\n215,36,5.5\n215,37,5.0\n215,38,4.5\n215,39,4.0\n215,40,3.5\n215,41,4.0\n215,42,4.5\n215,43,5.0\n215,44,5.5\n215,45,6.0\n215,46,6.5\n215,47,7.0\n215,48,7.5\n215,49,8.0\n215,50,10.5\n215,51,10.0\n215,52,9.5\n215,53,9.0\n215,54,8.5\n215,55,8.0\n215,56,7.5\n215,57,7.0\n215,58,6.5\n215,59,6.0\n215,60,5.5\n215,61,5.0\n215,62,4.5\n215,63,4.0\n215,64,3.5\n215,65,3.0\n215,66,3.5\n215,67,4.0\n215,68,4.5\n215,69,5.0\n215,70,5.5\n215,71,6.0\n215,72,6.5\n215,73,7.0\n215,74,7.5\n215,75,10.0\n215,76,9.5\n215,77,9.0\n215,78,8.5\n215,79,8.0\n215,80,7.5\n215,81,7.0\n215,82,6.5\n215,83,6.0\n215,84,5.5\n215,85,5.0\n215,86,4.5\n215,87,4.0\n215,88,3.5\n215,89,3.0\n215,90,2.5\n215,91,3.0\n215,92,3.5\n215,93,4.0\n215,94,4.5\n215,95,5.0\n215,96,5.5\n215,97,6.0\n215,98,6.5\n215,99,7.0\n215,100,9.5\n215,101,9.0\n215,102,8.5\n215,103,8.0\n215,104,7.5\n215,105,7.0\n215,106,6.5\n215,107,6.0\n215,108,5.5\n215,109,5.0\n215,110,4.5\n215,111,4.0\n215,112,3.5\n215,113,3.0\n215,114,2.5\n215,115,2.0\n215,116,2.5\n215,117,3.0\n215,118,3.5\n215,119,4.0\n215,120,4.5\n215,121,5.0\n215,122,5.5\n215,123,6.0\n215,124,6.5\n215,125,9.0\n215,126,8.5\n215,127,8.0\n215,128,7.5\n215,129,7.0\n215,130,6.5\n215,131,6.0\n215,132,5.5\n215,133,5.0\n215,134,4.5\n215,135,4.0\n215,136,3.5\n215,137,3.0\n215,138,2.5\n215,139,2.0\n215,140,1.5\n215,141,2.0\n215,142,2.5\n215,143,3.0\n215,144,3.5\n215,145,4.0\n215,146,4.5\n215,147,5.0\n215,148,5.5\n215,149,6.0\n215,150,8.5\n215,151,8.0\n215,152,7.5\n215,153,7.0\n215,154,6.5\n215,155,6.0\n215,156,5.5\n215,157,5.0\n215,158,4.5\n215,159,4.0\n215,160,3.5\n215,161,3.0\n215,162,2.5\n215,163,2.0\n215,164,1.5\n215,165,1.0\n215,166,1.5\n215,167,2.0\n215,168,2.5\n215,169,3.0\n215,170,3.5\n215,171,4.0\n215,172,4.5\n215,173,5.0\n215,174,5.5\n215,175,8.0\n215,176,7.5\n215,177,7.0\n215,178,6.5\n215,179,6.0\n215,180,5.5\n215,181,5.0\n215,182,4.5\n215,183,4.0\n215,184,3.5\n215,185,3.0\n215,186,2.5\n215,187,2.0\n215,188,1.5\n215,189,1.0\n215,190,0.5\n215,191,1.0\n215,192,1.5\n215,193,2.0\n215,194,2.5\n215,195,3.0\n215,196,3.5\n215,197,4.0\n215,198,4.5\n215,199,5.0\n215,200,7.5\n215,201,7.0\n215,202,6.5\n215,203,6.0\n215,204,5.5\n215,205,5.0\n215,206,4.5\n215,207,4.0\n215,208,3.5\n215,209,3.0\n215,210,2.5\n215,211,2.0\n215,212,1.5\n215,213,1.0\n215,214,0.5\n215,215,0\n215,216,0.5\n215,217,1.0\n215,218,1.5\n215,219,2.0\n215,220,2.5\n215,221,3.0\n215,222,3.5\n215,223,4.0\n215,224,4.5\n215,225,8.0\n215,226,7.5\n215,227,7.0\n215,228,6.5\n215,229,6.0\n215,230,5.5\n215,231,5.0\n215,232,4.5\n215,233,4.0\n215,234,3.5\n215,235,3.0\n215,236,2.5\n215,237,2.0\n215,238,1.5\n215,239,1.0\n215,240,0.5\n215,241,1.0\n215,242,1.5\n215,243,2.0\n215,244,2.5\n215,245,3.0\n215,246,3.5\n215,247,4.0\n215,248,4.5\n215,249,5.0\n215,250,8.5\n215,251,8.0\n215,252,7.5\n215,253,7.0\n215,254,6.5\n215,255,6.0\n215,256,5.5\n215,257,5.0\n215,258,4.5\n215,259,4.0\n215,260,3.5\n215,261,3.0\n215,262,2.5\n215,263,2.0\n215,264,1.5\n215,265,1.0\n215,266,1.5\n215,267,2.0\n215,268,2.5\n215,269,3.0\n215,270,3.5\n215,271,4.0\n215,272,4.5\n215,273,5.0\n215,274,5.5\n215,275,9.0\n215,276,8.5\n215,277,8.0\n215,278,7.5\n215,279,7.0\n215,280,6.5\n215,281,6.0\n215,282,5.5\n215,283,5.0\n215,284,4.5\n215,285,4.0\n215,286,3.5\n215,287,3.0\n215,288,2.5\n215,289,2.0\n215,290,1.5\n215,291,2.0\n215,292,2.5\n215,293,3.0\n215,294,3.5\n215,295,4.0\n215,296,4.5\n215,297,5.0\n215,298,5.5\n215,299,6.0\n215,300,9.5\n215,301,9.0\n215,302,8.5\n215,303,8.0\n215,304,7.5\n215,305,7.0\n215,306,6.5\n215,307,6.0\n215,308,5.5\n215,309,5.0\n215,310,4.5\n215,311,4.0\n215,312,3.5\n215,313,3.0\n215,314,2.5\n215,315,2.0\n215,316,2.5\n215,317,3.0\n215,318,3.5\n215,319,4.0\n215,320,4.5\n215,321,5.0\n215,322,5.5\n215,323,6.0\n215,324,6.5\n215,325,10.0\n215,326,9.5\n215,327,9.0\n215,328,8.5\n215,329,8.0\n215,330,7.5\n215,331,7.0\n215,332,6.5\n215,333,6.0\n215,334,5.5\n215,335,5.0\n215,336,4.5\n215,337,4.0\n215,338,3.5\n215,339,3.0\n215,340,2.5\n215,341,3.0\n215,342,3.5\n215,343,4.0\n215,344,4.5\n215,345,5.0\n215,346,5.5\n215,347,6.0\n215,348,6.5\n215,349,7.0\n215,350,10.5\n215,351,10.0\n215,352,9.5\n215,353,9.0\n215,354,8.5\n215,355,8.0\n215,356,7.5\n215,357,7.0\n215,358,6.5\n215,359,6.0\n215,360,5.5\n215,361,5.0\n215,362,4.5\n215,363,4.0\n215,364,3.5\n215,365,3.0\n215,366,3.5\n215,367,4.0\n215,368,4.5\n215,369,5.0\n215,370,5.5\n215,371,6.0\n215,372,6.5\n215,373,7.0\n215,374,7.5\n215,375,11.0\n215,376,10.5\n215,377,10.0\n215,378,9.5\n215,379,9.0\n215,380,8.5\n215,381,8.0\n215,382,7.5\n215,383,7.0\n215,384,6.5\n215,385,6.0\n215,386,5.5\n215,387,5.0\n215,388,4.5\n215,389,4.0\n215,390,3.5\n215,391,4.0\n215,392,4.5\n215,393,5.0\n215,394,5.5\n215,395,6.0\n215,396,6.5\n215,397,7.0\n215,398,7.5\n215,399,8.0\n215,400,11.5\n215,401,11.0\n215,402,10.5\n215,403,10.0\n215,404,9.5\n215,405,9.0\n215,406,8.5\n215,407,8.0\n215,408,7.5\n215,409,7.0\n215,410,6.5\n215,411,6.0\n215,412,5.5\n215,413,5.0\n215,414,4.5\n215,415,4.0\n215,416,4.5\n215,417,5.0\n215,418,5.5\n215,419,6.0\n215,420,6.5\n215,421,7.0\n215,422,7.5\n215,423,8.0\n215,424,8.5\n215,425,12.0\n215,426,11.5\n215,427,11.0\n215,428,10.5\n215,429,10.0\n215,430,9.5\n215,431,9.0\n215,432,8.5\n215,433,8.0\n215,434,7.5\n215,435,7.0\n215,436,6.5\n215,437,6.0\n215,438,5.5\n215,439,5.0\n215,440,4.5\n215,441,5.0\n215,442,5.5\n215,443,6.0\n215,444,6.5\n215,445,7.0\n215,446,7.5\n215,447,8.0\n215,448,8.5\n215,449,9.0\n215,450,12.5\n215,451,12.0\n215,452,11.5\n215,453,11.0\n215,454,10.5\n215,455,10.0\n215,456,9.5\n215,457,9.0\n215,458,8.5\n215,459,8.0\n215,460,7.5\n215,461,7.0\n215,462,6.5\n215,463,6.0\n215,464,5.5\n215,465,5.0\n215,466,5.5\n215,467,6.0\n215,468,6.5\n215,469,7.0\n215,470,7.5\n215,471,8.0\n215,472,8.5\n215,473,9.0\n215,474,9.5\n215,475,13.0\n215,476,12.5\n215,477,12.0\n215,478,11.5\n215,479,11.0\n215,480,10.5\n215,481,10.0\n215,482,9.5\n215,483,9.0\n215,484,8.5\n215,485,8.0\n215,486,7.5\n215,487,7.0\n215,488,6.5\n215,489,6.0\n215,490,5.5\n215,491,6.0\n215,492,6.5\n215,493,7.0\n215,494,7.5\n215,495,8.0\n215,496,8.5\n215,497,9.0\n215,498,9.5\n215,499,10.0\n215,500,13.5\n215,501,13.0\n215,502,12.5\n215,503,12.0\n215,504,11.5\n215,505,11.0\n215,506,10.5\n215,507,10.0\n215,508,9.5\n215,509,9.0\n215,510,8.5\n215,511,8.0\n215,512,7.5\n215,513,7.0\n215,514,6.5\n215,515,6.0\n215,516,6.5\n215,517,7.0\n215,518,7.5\n215,519,8.0\n215,520,8.5\n215,521,9.0\n215,522,9.5\n215,523,10.0\n215,524,10.5\n215,525,14.0\n215,526,13.5\n215,527,13.0\n215,528,12.5\n215,529,12.0\n215,530,11.5\n215,531,11.0\n215,532,10.5\n215,533,10.0\n215,534,9.5\n215,535,9.0\n215,536,8.5\n215,537,8.0\n215,538,7.5\n215,539,7.0\n215,540,6.5\n215,541,7.0\n215,542,7.5\n215,543,8.0\n215,544,8.5\n215,545,9.0\n215,546,9.5\n215,547,10.0\n215,548,10.5\n215,549,11.0\n215,550,14.5\n215,551,14.0\n215,552,13.5\n215,553,13.0\n215,554,12.5\n215,555,12.0\n215,556,11.5\n215,557,11.0\n215,558,10.5\n215,559,10.0\n215,560,9.5\n215,561,9.0\n215,562,8.5\n215,563,8.0\n215,564,7.5\n215,565,7.0\n215,566,7.5\n215,567,8.0\n215,568,8.5\n215,569,9.0\n215,570,9.5\n215,571,10.0\n215,572,10.5\n215,573,11.0\n215,574,11.5\n215,575,15.0\n215,576,14.5\n215,577,14.0\n215,578,13.5\n215,579,13.0\n215,580,12.5\n215,581,12.0\n215,582,11.5\n215,583,11.0\n215,584,10.5\n215,585,10.0\n215,586,9.5\n215,587,9.0\n215,588,8.5\n215,589,8.0\n215,590,7.5\n215,591,8.0\n215,592,8.5\n215,593,9.0\n215,594,9.5\n215,595,10.0\n215,596,10.5\n215,597,11.0\n215,598,11.5\n215,599,12.0\n215,600,15.5\n215,601,15.0\n215,602,14.5\n215,603,14.0\n215,604,13.5\n215,605,13.0\n215,606,12.5\n215,607,12.0\n215,608,11.5\n215,609,11.0\n215,610,10.5\n215,611,10.0\n215,612,9.5\n215,613,9.0\n215,614,8.5\n215,615,8.0\n215,616,8.5\n215,617,9.0\n215,618,9.5\n215,619,10.0\n215,620,10.5\n215,621,11.0\n215,622,11.5\n215,623,12.0\n215,624,12.5\n216,0,12.0\n216,1,11.5\n216,2,11.0\n216,3,10.5\n216,4,10.0\n216,5,9.5\n216,6,9.0\n216,7,8.5\n216,8,8.0\n216,9,7.5\n216,10,7.0\n216,11,6.5\n216,12,6.0\n216,13,5.5\n216,14,5.0\n216,15,4.5\n216,16,4.0\n216,17,4.5\n216,18,5.0\n216,19,5.5\n216,20,6.0\n216,21,6.5\n216,22,7.0\n216,23,7.5\n216,24,8.0\n216,25,11.5\n216,26,11.0\n216,27,10.5\n216,28,10.0\n216,29,9.5\n216,30,9.0\n216,31,8.5\n216,32,8.0\n216,33,7.5\n216,34,7.0\n216,35,6.5\n216,36,6.0\n216,37,5.5\n216,38,5.0\n216,39,4.5\n216,40,4.0\n216,41,3.5\n216,42,4.0\n216,43,4.5\n216,44,5.0\n216,45,5.5\n216,46,6.0\n216,47,6.5\n216,48,7.0\n216,49,7.5\n216,50,11.0\n216,51,10.5\n216,52,10.0\n216,53,9.5\n216,54,9.0\n216,55,8.5\n216,56,8.0\n216,57,7.5\n216,58,7.0\n216,59,6.5\n216,60,6.0\n216,61,5.5\n216,62,5.0\n216,63,4.5\n216,64,4.0\n216,65,3.5\n216,66,3.0\n216,67,3.5\n216,68,4.0\n216,69,4.5\n216,70,5.0\n216,71,5.5\n216,72,6.0\n216,73,6.5\n216,74,7.0\n216,75,10.5\n216,76,10.0\n216,77,9.5\n216,78,9.0\n216,79,8.5\n216,80,8.0\n216,81,7.5\n216,82,7.0\n216,83,6.5\n216,84,6.0\n216,85,5.5\n216,86,5.0\n216,87,4.5\n216,88,4.0\n216,89,3.5\n216,90,3.0\n216,91,2.5\n216,92,3.0\n216,93,3.5\n216,94,4.0\n216,95,4.5\n216,96,5.0\n216,97,5.5\n216,98,6.0\n216,99,6.5\n216,100,10.0\n216,101,9.5\n216,102,9.0\n216,103,8.5\n216,104,8.0\n216,105,7.5\n216,106,7.0\n216,107,6.5\n216,108,6.0\n216,109,5.5\n216,110,5.0\n216,111,4.5\n216,112,4.0\n216,113,3.5\n216,114,3.0\n216,115,2.5\n216,116,2.0\n216,117,2.5\n216,118,3.0\n216,119,3.5\n216,120,4.0\n216,121,4.5\n216,122,5.0\n216,123,5.5\n216,124,6.0\n216,125,9.5\n216,126,9.0\n216,127,8.5\n216,128,8.0\n216,129,7.5\n216,130,7.0\n216,131,6.5\n216,132,6.0\n216,133,5.5\n216,134,5.0\n216,135,4.5\n216,136,4.0\n216,137,3.5\n216,138,3.0\n216,139,2.5\n216,140,2.0\n216,141,1.5\n216,142,2.0\n216,143,2.5\n216,144,3.0\n216,145,3.5\n216,146,4.0\n216,147,4.5\n216,148,5.0\n216,149,5.5\n216,150,9.0\n216,151,8.5\n216,152,8.0\n216,153,7.5\n216,154,7.0\n216,155,6.5\n216,156,6.0\n216,157,5.5\n216,158,5.0\n216,159,4.5\n216,160,4.0\n216,161,3.5\n216,162,3.0\n216,163,2.5\n216,164,2.0\n216,165,1.5\n216,166,1.0\n216,167,1.5\n216,168,2.0\n216,169,2.5\n216,170,3.0\n216,171,3.5\n216,172,4.0\n216,173,4.5\n216,174,5.0\n216,175,8.5\n216,176,8.0\n216,177,7.5\n216,178,7.0\n216,179,6.5\n216,180,6.0\n216,181,5.5\n216,182,5.0\n216,183,4.5\n216,184,4.0\n216,185,3.5\n216,186,3.0\n216,187,2.5\n216,188,2.0\n216,189,1.5\n216,190,1.0\n216,191,0.5\n216,192,1.0\n216,193,1.5\n216,194,2.0\n216,195,2.5\n216,196,3.0\n216,197,3.5\n216,198,4.0\n216,199,4.5\n216,200,8.0\n216,201,7.5\n216,202,7.0\n216,203,6.5\n216,204,6.0\n216,205,5.5\n216,206,5.0\n216,207,4.5\n216,208,4.0\n216,209,3.5\n216,210,3.0\n216,211,2.5\n216,212,2.0\n216,213,1.5\n216,214,1.0\n216,215,0.5\n216,216,0\n216,217,0.5\n216,218,1.0\n216,219,1.5\n216,220,2.0\n216,221,2.5\n216,222,3.0\n216,223,3.5\n216,224,4.0\n216,225,8.5\n216,226,8.0\n216,227,7.5\n216,228,7.0\n216,229,6.5\n216,230,6.0\n216,231,5.5\n216,232,5.0\n216,233,4.5\n216,234,4.0\n216,235,3.5\n216,236,3.0\n216,237,2.5\n216,238,2.0\n216,239,1.5\n216,240,1.0\n216,241,0.5\n216,242,1.0\n216,243,1.5\n216,244,2.0\n216,245,2.5\n216,246,3.0\n216,247,3.5\n216,248,4.0\n216,249,4.5\n216,250,9.0\n216,251,8.5\n216,252,8.0\n216,253,7.5\n216,254,7.0\n216,255,6.5\n216,256,6.0\n216,257,5.5\n216,258,5.0\n216,259,4.5\n216,260,4.0\n216,261,3.5\n216,262,3.0\n216,263,2.5\n216,264,2.0\n216,265,1.5\n216,266,1.0\n216,267,1.5\n216,268,2.0\n216,269,2.5\n216,270,3.0\n216,271,3.5\n216,272,4.0\n216,273,4.5\n216,274,5.0\n216,275,9.5\n216,276,9.0\n216,277,8.5\n216,278,8.0\n216,279,7.5\n216,280,7.0\n216,281,6.5\n216,282,6.0\n216,283,5.5\n216,284,5.0\n216,285,4.5\n216,286,4.0\n216,287,3.5\n216,288,3.0\n216,289,2.5\n216,290,2.0\n216,291,1.5\n216,292,2.0\n216,293,2.5\n216,294,3.0\n216,295,3.5\n216,296,4.0\n216,297,4.5\n216,298,5.0\n216,299,5.5\n216,300,10.0\n216,301,9.5\n216,302,9.0\n216,303,8.5\n216,304,8.0\n216,305,7.5\n216,306,7.0\n216,307,6.5\n216,308,6.0\n216,309,5.5\n216,310,5.0\n216,311,4.5\n216,312,4.0\n216,313,3.5\n216,314,3.0\n216,315,2.5\n216,316,2.0\n216,317,2.5\n216,318,3.0\n216,319,3.5\n216,320,4.0\n216,321,4.5\n216,322,5.0\n216,323,5.5\n216,324,6.0\n216,325,10.5\n216,326,10.0\n216,327,9.5\n216,328,9.0\n216,329,8.5\n216,330,8.0\n216,331,7.5\n216,332,7.0\n216,333,6.5\n216,334,6.0\n216,335,5.5\n216,336,5.0\n216,337,4.5\n216,338,4.0\n216,339,3.5\n216,340,3.0\n216,341,2.5\n216,342,3.0\n216,343,3.5\n216,344,4.0\n216,345,4.5\n216,346,5.0\n216,347,5.5\n216,348,6.0\n216,349,6.5\n216,350,11.0\n216,351,10.5\n216,352,10.0\n216,353,9.5\n216,354,9.0\n216,355,8.5\n216,356,8.0\n216,357,7.5\n216,358,7.0\n216,359,6.5\n216,360,6.0\n216,361,5.5\n216,362,5.0\n216,363,4.5\n216,364,4.0\n216,365,3.5\n216,366,3.0\n216,367,3.5\n216,368,4.0\n216,369,4.5\n216,370,5.0\n216,371,5.5\n216,372,6.0\n216,373,6.5\n216,374,7.0\n216,375,11.5\n216,376,11.0\n216,377,10.5\n216,378,10.0\n216,379,9.5\n216,380,9.0\n216,381,8.5\n216,382,8.0\n216,383,7.5\n216,384,7.0\n216,385,6.5\n216,386,6.0\n216,387,5.5\n216,388,5.0\n216,389,4.5\n216,390,4.0\n216,391,3.5\n216,392,4.0\n216,393,4.5\n216,394,5.0\n216,395,5.5\n216,396,6.0\n216,397,6.5\n216,398,7.0\n216,399,7.5\n216,400,12.0\n216,401,11.5\n216,402,11.0\n216,403,10.5\n216,404,10.0\n216,405,9.5\n216,406,9.0\n216,407,8.5\n216,408,8.0\n216,409,7.5\n216,410,7.0\n216,411,6.5\n216,412,6.0\n216,413,5.5\n216,414,5.0\n216,415,4.5\n216,416,4.0\n216,417,4.5\n216,418,5.0\n216,419,5.5\n216,420,6.0\n216,421,6.5\n216,422,7.0\n216,423,7.5\n216,424,8.0\n216,425,12.5\n216,426,12.0\n216,427,11.5\n216,428,11.0\n216,429,10.5\n216,430,10.0\n216,431,9.5\n216,432,9.0\n216,433,8.5\n216,434,8.0\n216,435,7.5\n216,436,7.0\n216,437,6.5\n216,438,6.0\n216,439,5.5\n216,440,5.0\n216,441,4.5\n216,442,5.0\n216,443,5.5\n216,444,6.0\n216,445,6.5\n216,446,7.0\n216,447,7.5\n216,448,8.0\n216,449,8.5\n216,450,13.0\n216,451,12.5\n216,452,12.0\n216,453,11.5\n216,454,11.0\n216,455,10.5\n216,456,10.0\n216,457,9.5\n216,458,9.0\n216,459,8.5\n216,460,8.0\n216,461,7.5\n216,462,7.0\n216,463,6.5\n216,464,6.0\n216,465,5.5\n216,466,5.0\n216,467,5.5\n216,468,6.0\n216,469,6.5\n216,470,7.0\n216,471,7.5\n216,472,8.0\n216,473,8.5\n216,474,9.0\n216,475,13.5\n216,476,13.0\n216,477,12.5\n216,478,12.0\n216,479,11.5\n216,480,11.0\n216,481,10.5\n216,482,10.0\n216,483,9.5\n216,484,9.0\n216,485,8.5\n216,486,8.0\n216,487,7.5\n216,488,7.0\n216,489,6.5\n216,490,6.0\n216,491,5.5\n216,492,6.0\n216,493,6.5\n216,494,7.0\n216,495,7.5\n216,496,8.0\n216,497,8.5\n216,498,9.0\n216,499,9.5\n216,500,14.0\n216,501,13.5\n216,502,13.0\n216,503,12.5\n216,504,12.0\n216,505,11.5\n216,506,11.0\n216,507,10.5\n216,508,10.0\n216,509,9.5\n216,510,9.0\n216,511,8.5\n216,512,8.0\n216,513,7.5\n216,514,7.0\n216,515,6.5\n216,516,6.0\n216,517,6.5\n216,518,7.0\n216,519,7.5\n216,520,8.0\n216,521,8.5\n216,522,9.0\n216,523,9.5\n216,524,10.0\n216,525,14.5\n216,526,14.0\n216,527,13.5\n216,528,13.0\n216,529,12.5\n216,530,12.0\n216,531,11.5\n216,532,11.0\n216,533,10.5\n216,534,10.0\n216,535,9.5\n216,536,9.0\n216,537,8.5\n216,538,8.0\n216,539,7.5\n216,540,7.0\n216,541,6.5\n216,542,7.0\n216,543,7.5\n216,544,8.0\n216,545,8.5\n216,546,9.0\n216,547,9.5\n216,548,10.0\n216,549,10.5\n216,550,15.0\n216,551,14.5\n216,552,14.0\n216,553,13.5\n216,554,13.0\n216,555,12.5\n216,556,12.0\n216,557,11.5\n216,558,11.0\n216,559,10.5\n216,560,10.0\n216,561,9.5\n216,562,9.0\n216,563,8.5\n216,564,8.0\n216,565,7.5\n216,566,7.0\n216,567,7.5\n216,568,8.0\n216,569,8.5\n216,570,9.0\n216,571,9.5\n216,572,10.0\n216,573,10.5\n216,574,11.0\n216,575,15.5\n216,576,15.0\n216,577,14.5\n216,578,14.0\n216,579,13.5\n216,580,13.0\n216,581,12.5\n216,582,12.0\n216,583,11.5\n216,584,11.0\n216,585,10.5\n216,586,10.0\n216,587,9.5\n216,588,9.0\n216,589,8.5\n216,590,8.0\n216,591,7.5\n216,592,8.0\n216,593,8.5\n216,594,9.0\n216,595,9.5\n216,596,10.0\n216,597,10.5\n216,598,11.0\n216,599,11.5\n216,600,16.0\n216,601,15.5\n216,602,15.0\n216,603,14.5\n216,604,14.0\n216,605,13.5\n216,606,13.0\n216,607,12.5\n216,608,12.0\n216,609,11.5\n216,610,11.0\n216,611,10.5\n216,612,10.0\n216,613,9.5\n216,614,9.0\n216,615,8.5\n216,616,8.0\n216,617,8.5\n216,618,9.0\n216,619,9.5\n216,620,10.0\n216,621,10.5\n216,622,11.0\n216,623,11.5\n216,624,12.0\n217,0,12.5\n217,1,12.0\n217,2,11.5\n217,3,11.0\n217,4,10.5\n217,5,10.0\n217,6,9.5\n217,7,9.0\n217,8,8.5\n217,9,8.0\n217,10,7.5\n217,11,7.0\n217,12,6.5\n217,13,6.0\n217,14,5.5\n217,15,5.0\n217,16,4.5\n217,17,4.0\n217,18,4.5\n217,19,5.0\n217,20,5.5\n217,21,6.0\n217,22,6.5\n217,23,7.0\n217,24,7.5\n217,25,12.0\n217,26,11.5\n217,27,11.0\n217,28,10.5\n217,29,10.0\n217,30,9.5\n217,31,9.0\n217,32,8.5\n217,33,8.0\n217,34,7.5\n217,35,7.0\n217,36,6.5\n217,37,6.0\n217,38,5.5\n217,39,5.0\n217,40,4.5\n217,41,4.0\n217,42,3.5\n217,43,4.0\n217,44,4.5\n217,45,5.0\n217,46,5.5\n217,47,6.0\n217,48,6.5\n217,49,7.0\n217,50,11.5\n217,51,11.0\n217,52,10.5\n217,53,10.0\n217,54,9.5\n217,55,9.0\n217,56,8.5\n217,57,8.0\n217,58,7.5\n217,59,7.0\n217,60,6.5\n217,61,6.0\n217,62,5.5\n217,63,5.0\n217,64,4.5\n217,65,4.0\n217,66,3.5\n217,67,3.0\n217,68,3.5\n217,69,4.0\n217,70,4.5\n217,71,5.0\n217,72,5.5\n217,73,6.0\n217,74,6.5\n217,75,11.0\n217,76,10.5\n217,77,10.0\n217,78,9.5\n217,79,9.0\n217,80,8.5\n217,81,8.0\n217,82,7.5\n217,83,7.0\n217,84,6.5\n217,85,6.0\n217,86,5.5\n217,87,5.0\n217,88,4.5\n217,89,4.0\n217,90,3.5\n217,91,3.0\n217,92,2.5\n217,93,3.0\n217,94,3.5\n217,95,4.0\n217,96,4.5\n217,97,5.0\n217,98,5.5\n217,99,6.0\n217,100,10.5\n217,101,10.0\n217,102,9.5\n217,103,9.0\n217,104,8.5\n217,105,8.0\n217,106,7.5\n217,107,7.0\n217,108,6.5\n217,109,6.0\n217,110,5.5\n217,111,5.0\n217,112,4.5\n217,113,4.0\n217,114,3.5\n217,115,3.0\n217,116,2.5\n217,117,2.0\n217,118,2.5\n217,119,3.0\n217,120,3.5\n217,121,4.0\n217,122,4.5\n217,123,5.0\n217,124,5.5\n217,125,10.0\n217,126,9.5\n217,127,9.0\n217,128,8.5\n217,129,8.0\n217,130,7.5\n217,131,7.0\n217,132,6.5\n217,133,6.0\n217,134,5.5\n217,135,5.0\n217,136,4.5\n217,137,4.0\n217,138,3.5\n217,139,3.0\n217,140,2.5\n217,141,2.0\n217,142,1.5\n217,143,2.0\n217,144,2.5\n217,145,3.0\n217,146,3.5\n217,147,4.0\n217,148,4.5\n217,149,5.0\n217,150,9.5\n217,151,9.0\n217,152,8.5\n217,153,8.0\n217,154,7.5\n217,155,7.0\n217,156,6.5\n217,157,6.0\n217,158,5.5\n217,159,5.0\n217,160,4.5\n217,161,4.0\n217,162,3.5\n217,163,3.0\n217,164,2.5\n217,165,2.0\n217,166,1.5\n217,167,1.0\n217,168,1.5\n217,169,2.0\n217,170,2.5\n217,171,3.0\n217,172,3.5\n217,173,4.0\n217,174,4.5\n217,175,9.0\n217,176,8.5\n217,177,8.0\n217,178,7.5\n217,179,7.0\n217,180,6.5\n217,181,6.0\n217,182,5.5\n217,183,5.0\n217,184,4.5\n217,185,4.0\n217,186,3.5\n217,187,3.0\n217,188,2.5\n217,189,2.0\n217,190,1.5\n217,191,1.0\n217,192,0.5\n217,193,1.0\n217,194,1.5\n217,195,2.0\n217,196,2.5\n217,197,3.0\n217,198,3.5\n217,199,4.0\n217,200,8.5\n217,201,8.0\n217,202,7.5\n217,203,7.0\n217,204,6.5\n217,205,6.0\n217,206,5.5\n217,207,5.0\n217,208,4.5\n217,209,4.0\n217,210,3.5\n217,211,3.0\n217,212,2.5\n217,213,2.0\n217,214,1.5\n217,215,1.0\n217,216,0.5\n217,217,0\n217,218,0.5\n217,219,1.0\n217,220,1.5\n217,221,2.0\n217,222,2.5\n217,223,3.0\n217,224,3.5\n217,225,9.0\n217,226,8.5\n217,227,8.0\n217,228,7.5\n217,229,7.0\n217,230,6.5\n217,231,6.0\n217,232,5.5\n217,233,5.0\n217,234,4.5\n217,235,4.0\n217,236,3.5\n217,237,3.0\n217,238,2.5\n217,239,2.0\n217,240,1.5\n217,241,1.0\n217,242,0.5\n217,243,1.0\n217,244,1.5\n217,245,2.0\n217,246,2.5\n217,247,3.0\n217,248,3.5\n217,249,4.0\n217,250,9.5\n217,251,9.0\n217,252,8.5\n217,253,8.0\n217,254,7.5\n217,255,7.0\n217,256,6.5\n217,257,6.0\n217,258,5.5\n217,259,5.0\n217,260,4.5\n217,261,4.0\n217,262,3.5\n217,263,3.0\n217,264,2.5\n217,265,2.0\n217,266,1.5\n217,267,1.0\n217,268,1.5\n217,269,2.0\n217,270,2.5\n217,271,3.0\n217,272,3.5\n217,273,4.0\n217,274,4.5\n217,275,10.0\n217,276,9.5\n217,277,9.0\n217,278,8.5\n217,279,8.0\n217,280,7.5\n217,281,7.0\n217,282,6.5\n217,283,6.0\n217,284,5.5\n217,285,5.0\n217,286,4.5\n217,287,4.0\n217,288,3.5\n217,289,3.0\n217,290,2.5\n217,291,2.0\n217,292,1.5\n217,293,2.0\n217,294,2.5\n217,295,3.0\n217,296,3.5\n217,297,4.0\n217,298,4.5\n217,299,5.0\n217,300,10.5\n217,301,10.0\n217,302,9.5\n217,303,9.0\n217,304,8.5\n217,305,8.0\n217,306,7.5\n217,307,7.0\n217,308,6.5\n217,309,6.0\n217,310,5.5\n217,311,5.0\n217,312,4.5\n217,313,4.0\n217,314,3.5\n217,315,3.0\n217,316,2.5\n217,317,2.0\n217,318,2.5\n217,319,3.0\n217,320,3.5\n217,321,4.0\n217,322,4.5\n217,323,5.0\n217,324,5.5\n217,325,11.0\n217,326,10.5\n217,327,10.0\n217,328,9.5\n217,329,9.0\n217,330,8.5\n217,331,8.0\n217,332,7.5\n217,333,7.0\n217,334,6.5\n217,335,6.0\n217,336,5.5\n217,337,5.0\n217,338,4.5\n217,339,4.0\n217,340,3.5\n217,341,3.0\n217,342,2.5\n217,343,3.0\n217,344,3.5\n217,345,4.0\n217,346,4.5\n217,347,5.0\n217,348,5.5\n217,349,6.0\n217,350,11.5\n217,351,11.0\n217,352,10.5\n217,353,10.0\n217,354,9.5\n217,355,9.0\n217,356,8.5\n217,357,8.0\n217,358,7.5\n217,359,7.0\n217,360,6.5\n217,361,6.0\n217,362,5.5\n217,363,5.0\n217,364,4.5\n217,365,4.0\n217,366,3.5\n217,367,3.0\n217,368,3.5\n217,369,4.0\n217,370,4.5\n217,371,5.0\n217,372,5.5\n217,373,6.0\n217,374,6.5\n217,375,12.0\n217,376,11.5\n217,377,11.0\n217,378,10.5\n217,379,10.0\n217,380,9.5\n217,381,9.0\n217,382,8.5\n217,383,8.0\n217,384,7.5\n217,385,7.0\n217,386,6.5\n217,387,6.0\n217,388,5.5\n217,389,5.0\n217,390,4.5\n217,391,4.0\n217,392,3.5\n217,393,4.0\n217,394,4.5\n217,395,5.0\n217,396,5.5\n217,397,6.0\n217,398,6.5\n217,399,7.0\n217,400,12.5\n217,401,12.0\n217,402,11.5\n217,403,11.0\n217,404,10.5\n217,405,10.0\n217,406,9.5\n217,407,9.0\n217,408,8.5\n217,409,8.0\n217,410,7.5\n217,411,7.0\n217,412,6.5\n217,413,6.0\n217,414,5.5\n217,415,5.0\n217,416,4.5\n217,417,4.0\n217,418,4.5\n217,419,5.0\n217,420,5.5\n217,421,6.0\n217,422,6.5\n217,423,7.0\n217,424,7.5\n217,425,13.0\n217,426,12.5\n217,427,12.0\n217,428,11.5\n217,429,11.0\n217,430,10.5\n217,431,10.0\n217,432,9.5\n217,433,9.0\n217,434,8.5\n217,435,8.0\n217,436,7.5\n217,437,7.0\n217,438,6.5\n217,439,6.0\n217,440,5.5\n217,441,5.0\n217,442,4.5\n217,443,5.0\n217,444,5.5\n217,445,6.0\n217,446,6.5\n217,447,7.0\n217,448,7.5\n217,449,8.0\n217,450,13.5\n217,451,13.0\n217,452,12.5\n217,453,12.0\n217,454,11.5\n217,455,11.0\n217,456,10.5\n217,457,10.0\n217,458,9.5\n217,459,9.0\n217,460,8.5\n217,461,8.0\n217,462,7.5\n217,463,7.0\n217,464,6.5\n217,465,6.0\n217,466,5.5\n217,467,5.0\n217,468,5.5\n217,469,6.0\n217,470,6.5\n217,471,7.0\n217,472,7.5\n217,473,8.0\n217,474,8.5\n217,475,14.0\n217,476,13.5\n217,477,13.0\n217,478,12.5\n217,479,12.0\n217,480,11.5\n217,481,11.0\n217,482,10.5\n217,483,10.0\n217,484,9.5\n217,485,9.0\n217,486,8.5\n217,487,8.0\n217,488,7.5\n217,489,7.0\n217,490,6.5\n217,491,6.0\n217,492,5.5\n217,493,6.0\n217,494,6.5\n217,495,7.0\n217,496,7.5\n217,497,8.0\n217,498,8.5\n217,499,9.0\n217,500,14.5\n217,501,14.0\n217,502,13.5\n217,503,13.0\n217,504,12.5\n217,505,12.0\n217,506,11.5\n217,507,11.0\n217,508,10.5\n217,509,10.0\n217,510,9.5\n217,511,9.0\n217,512,8.5\n217,513,8.0\n217,514,7.5\n217,515,7.0\n217,516,6.5\n217,517,6.0\n217,518,6.5\n217,519,7.0\n217,520,7.5\n217,521,8.0\n217,522,8.5\n217,523,9.0\n217,524,9.5\n217,525,15.0\n217,526,14.5\n217,527,14.0\n217,528,13.5\n217,529,13.0\n217,530,12.5\n217,531,12.0\n217,532,11.5\n217,533,11.0\n217,534,10.5\n217,535,10.0\n217,536,9.5\n217,537,9.0\n217,538,8.5\n217,539,8.0\n217,540,7.5\n217,541,7.0\n217,542,6.5\n217,543,7.0\n217,544,7.5\n217,545,8.0\n217,546,8.5\n217,547,9.0\n217,548,9.5\n217,549,10.0\n217,550,15.5\n217,551,15.0\n217,552,14.5\n217,553,14.0\n217,554,13.5\n217,555,13.0\n217,556,12.5\n217,557,12.0\n217,558,11.5\n217,559,11.0\n217,560,10.5\n217,561,10.0\n217,562,9.5\n217,563,9.0\n217,564,8.5\n217,565,8.0\n217,566,7.5\n217,567,7.0\n217,568,7.5\n217,569,8.0\n217,570,8.5\n217,571,9.0\n217,572,9.5\n217,573,10.0\n217,574,10.5\n217,575,16.0\n217,576,15.5\n217,577,15.0\n217,578,14.5\n217,579,14.0\n217,580,13.5\n217,581,13.0\n217,582,12.5\n217,583,12.0\n217,584,11.5\n217,585,11.0\n217,586,10.5\n217,587,10.0\n217,588,9.5\n217,589,9.0\n217,590,8.5\n217,591,8.0\n217,592,7.5\n217,593,8.0\n217,594,8.5\n217,595,9.0\n217,596,9.5\n217,597,10.0\n217,598,10.5\n217,599,11.0\n217,600,16.5\n217,601,16.0\n217,602,15.5\n217,603,15.0\n217,604,14.5\n217,605,14.0\n217,606,13.5\n217,607,13.0\n217,608,12.5\n217,609,12.0\n217,610,11.5\n217,611,11.0\n217,612,10.5\n217,613,10.0\n217,614,9.5\n217,615,9.0\n217,616,8.5\n217,617,8.0\n217,618,8.5\n217,619,9.0\n217,620,9.5\n217,621,10.0\n217,622,10.5\n217,623,11.0\n217,624,11.5\n218,0,13.0\n218,1,12.5\n218,2,12.0\n218,3,11.5\n218,4,11.0\n218,5,10.5\n218,6,10.0\n218,7,9.5\n218,8,9.0\n218,9,8.5\n218,10,8.0\n218,11,7.5\n218,12,7.0\n218,13,6.5\n218,14,6.0\n218,15,5.5\n218,16,5.0\n218,17,4.5\n218,18,4.0\n218,19,4.5\n218,20,5.0\n218,21,5.5\n218,22,6.0\n218,23,6.5\n218,24,7.0\n218,25,12.5\n218,26,12.0\n218,27,11.5\n218,28,11.0\n218,29,10.5\n218,30,10.0\n218,31,9.5\n218,32,9.0\n218,33,8.5\n218,34,8.0\n218,35,7.5\n218,36,7.0\n218,37,6.5\n218,38,6.0\n218,39,5.5\n218,40,5.0\n218,41,4.5\n218,42,4.0\n218,43,3.5\n218,44,4.0\n218,45,4.5\n218,46,5.0\n218,47,5.5\n218,48,6.0\n218,49,6.5\n218,50,12.0\n218,51,11.5\n218,52,11.0\n218,53,10.5\n218,54,10.0\n218,55,9.5\n218,56,9.0\n218,57,8.5\n218,58,8.0\n218,59,7.5\n218,60,7.0\n218,61,6.5\n218,62,6.0\n218,63,5.5\n218,64,5.0\n218,65,4.5\n218,66,4.0\n218,67,3.5\n218,68,3.0\n218,69,3.5\n218,70,4.0\n218,71,4.5\n218,72,5.0\n218,73,5.5\n218,74,6.0\n218,75,11.5\n218,76,11.0\n218,77,10.5\n218,78,10.0\n218,79,9.5\n218,80,9.0\n218,81,8.5\n218,82,8.0\n218,83,7.5\n218,84,7.0\n218,85,6.5\n218,86,6.0\n218,87,5.5\n218,88,5.0\n218,89,4.5\n218,90,4.0\n218,91,3.5\n218,92,3.0\n218,93,2.5\n218,94,3.0\n218,95,3.5\n218,96,4.0\n218,97,4.5\n218,98,5.0\n218,99,5.5\n218,100,11.0\n218,101,10.5\n218,102,10.0\n218,103,9.5\n218,104,9.0\n218,105,8.5\n218,106,8.0\n218,107,7.5\n218,108,7.0\n218,109,6.5\n218,110,6.0\n218,111,5.5\n218,112,5.0\n218,113,4.5\n218,114,4.0\n218,115,3.5\n218,116,3.0\n218,117,2.5\n218,118,2.0\n218,119,2.5\n218,120,3.0\n218,121,3.5\n218,122,4.0\n218,123,4.5\n218,124,5.0\n218,125,10.5\n218,126,10.0\n218,127,9.5\n218,128,9.0\n218,129,8.5\n218,130,8.0\n218,131,7.5\n218,132,7.0\n218,133,6.5\n218,134,6.0\n218,135,5.5\n218,136,5.0\n218,137,4.5\n218,138,4.0\n218,139,3.5\n218,140,3.0\n218,141,2.5\n218,142,2.0\n218,143,1.5\n218,144,2.0\n218,145,2.5\n218,146,3.0\n218,147,3.5\n218,148,4.0\n218,149,4.5\n218,150,10.0\n218,151,9.5\n218,152,9.0\n218,153,8.5\n218,154,8.0\n218,155,7.5\n218,156,7.0\n218,157,6.5\n218,158,6.0\n218,159,5.5\n218,160,5.0\n218,161,4.5\n218,162,4.0\n218,163,3.5\n218,164,3.0\n218,165,2.5\n218,166,2.0\n218,167,1.5\n218,168,1.0\n218,169,1.5\n218,170,2.0\n218,171,2.5\n218,172,3.0\n218,173,3.5\n218,174,4.0\n218,175,9.5\n218,176,9.0\n218,177,8.5\n218,178,8.0\n218,179,7.5\n218,180,7.0\n218,181,6.5\n218,182,6.0\n218,183,5.5\n218,184,5.0\n218,185,4.5\n218,186,4.0\n218,187,3.5\n218,188,3.0\n218,189,2.5\n218,190,2.0\n218,191,1.5\n218,192,1.0\n218,193,0.5\n218,194,1.0\n218,195,1.5\n218,196,2.0\n218,197,2.5\n218,198,3.0\n218,199,3.5\n218,200,9.0\n218,201,8.5\n218,202,8.0\n218,203,7.5\n218,204,7.0\n218,205,6.5\n218,206,6.0\n218,207,5.5\n218,208,5.0\n218,209,4.5\n218,210,4.0\n218,211,3.5\n218,212,3.0\n218,213,2.5\n218,214,2.0\n218,215,1.5\n218,216,1.0\n218,217,0.5\n218,218,0\n218,219,0.5\n218,220,1.0\n218,221,1.5\n218,222,2.0\n218,223,2.5\n218,224,3.0\n218,225,9.5\n218,226,9.0\n218,227,8.5\n218,228,8.0\n218,229,7.5\n218,230,7.0\n218,231,6.5\n218,232,6.0\n218,233,5.5\n218,234,5.0\n218,235,4.5\n218,236,4.0\n218,237,3.5\n218,238,3.0\n218,239,2.5\n218,240,2.0\n218,241,1.5\n218,242,1.0\n218,243,0.5\n218,244,1.0\n218,245,1.5\n218,246,2.0\n218,247,2.5\n218,248,3.0\n218,249,3.5\n218,250,10.0\n218,251,9.5\n218,252,9.0\n218,253,8.5\n218,254,8.0\n218,255,7.5\n218,256,7.0\n218,257,6.5\n218,258,6.0\n218,259,5.5\n218,260,5.0\n218,261,4.5\n218,262,4.0\n218,263,3.5\n218,264,3.0\n218,265,2.5\n218,266,2.0\n218,267,1.5\n218,268,1.0\n218,269,1.5\n218,270,2.0\n218,271,2.5\n218,272,3.0\n218,273,3.5\n218,274,4.0\n218,275,10.5\n218,276,10.0\n218,277,9.5\n218,278,9.0\n218,279,8.5\n218,280,8.0\n218,281,7.5\n218,282,7.0\n218,283,6.5\n218,284,6.0\n218,285,5.5\n218,286,5.0\n218,287,4.5\n218,288,4.0\n218,289,3.5\n218,290,3.0\n218,291,2.5\n218,292,2.0\n218,293,1.5\n218,294,2.0\n218,295,2.5\n218,296,3.0\n218,297,3.5\n218,298,4.0\n218,299,4.5\n218,300,11.0\n218,301,10.5\n218,302,10.0\n218,303,9.5\n218,304,9.0\n218,305,8.5\n218,306,8.0\n218,307,7.5\n218,308,7.0\n218,309,6.5\n218,310,6.0\n218,311,5.5\n218,312,5.0\n218,313,4.5\n218,314,4.0\n218,315,3.5\n218,316,3.0\n218,317,2.5\n218,318,2.0\n218,319,2.5\n218,320,3.0\n218,321,3.5\n218,322,4.0\n218,323,4.5\n218,324,5.0\n218,325,11.5\n218,326,11.0\n218,327,10.5\n218,328,10.0\n218,329,9.5\n218,330,9.0\n218,331,8.5\n218,332,8.0\n218,333,7.5\n218,334,7.0\n218,335,6.5\n218,336,6.0\n218,337,5.5\n218,338,5.0\n218,339,4.5\n218,340,4.0\n218,341,3.5\n218,342,3.0\n218,343,2.5\n218,344,3.0\n218,345,3.5\n218,346,4.0\n218,347,4.5\n218,348,5.0\n218,349,5.5\n218,350,12.0\n218,351,11.5\n218,352,11.0\n218,353,10.5\n218,354,10.0\n218,355,9.5\n218,356,9.0\n218,357,8.5\n218,358,8.0\n218,359,7.5\n218,360,7.0\n218,361,6.5\n218,362,6.0\n218,363,5.5\n218,364,5.0\n218,365,4.5\n218,366,4.0\n218,367,3.5\n218,368,3.0\n218,369,3.5\n218,370,4.0\n218,371,4.5\n218,372,5.0\n218,373,5.5\n218,374,6.0\n218,375,12.5\n218,376,12.0\n218,377,11.5\n218,378,11.0\n218,379,10.5\n218,380,10.0\n218,381,9.5\n218,382,9.0\n218,383,8.5\n218,384,8.0\n218,385,7.5\n218,386,7.0\n218,387,6.5\n218,388,6.0\n218,389,5.5\n218,390,5.0\n218,391,4.5\n218,392,4.0\n218,393,3.5\n218,394,4.0\n218,395,4.5\n218,396,5.0\n218,397,5.5\n218,398,6.0\n218,399,6.5\n218,400,13.0\n218,401,12.5\n218,402,12.0\n218,403,11.5\n218,404,11.0\n218,405,10.5\n218,406,10.0\n218,407,9.5\n218,408,9.0\n218,409,8.5\n218,410,8.0\n218,411,7.5\n218,412,7.0\n218,413,6.5\n218,414,6.0\n218,415,5.5\n218,416,5.0\n218,417,4.5\n218,418,4.0\n218,419,4.5\n218,420,5.0\n218,421,5.5\n218,422,6.0\n218,423,6.5\n218,424,7.0\n218,425,13.5\n218,426,13.0\n218,427,12.5\n218,428,12.0\n218,429,11.5\n218,430,11.0\n218,431,10.5\n218,432,10.0\n218,433,9.5\n218,434,9.0\n218,435,8.5\n218,436,8.0\n218,437,7.5\n218,438,7.0\n218,439,6.5\n218,440,6.0\n218,441,5.5\n218,442,5.0\n218,443,4.5\n218,444,5.0\n218,445,5.5\n218,446,6.0\n218,447,6.5\n218,448,7.0\n218,449,7.5\n218,450,14.0\n218,451,13.5\n218,452,13.0\n218,453,12.5\n218,454,12.0\n218,455,11.5\n218,456,11.0\n218,457,10.5\n218,458,10.0\n218,459,9.5\n218,460,9.0\n218,461,8.5\n218,462,8.0\n218,463,7.5\n218,464,7.0\n218,465,6.5\n218,466,6.0\n218,467,5.5\n218,468,5.0\n218,469,5.5\n218,470,6.0\n218,471,6.5\n218,472,7.0\n218,473,7.5\n218,474,8.0\n218,475,14.5\n218,476,14.0\n218,477,13.5\n218,478,13.0\n218,479,12.5\n218,480,12.0\n218,481,11.5\n218,482,11.0\n218,483,10.5\n218,484,10.0\n218,485,9.5\n218,486,9.0\n218,487,8.5\n218,488,8.0\n218,489,7.5\n218,490,7.0\n218,491,6.5\n218,492,6.0\n218,493,5.5\n218,494,6.0\n218,495,6.5\n218,496,7.0\n218,497,7.5\n218,498,8.0\n218,499,8.5\n218,500,15.0\n218,501,14.5\n218,502,14.0\n218,503,13.5\n218,504,13.0\n218,505,12.5\n218,506,12.0\n218,507,11.5\n218,508,11.0\n218,509,10.5\n218,510,10.0\n218,511,9.5\n218,512,9.0\n218,513,8.5\n218,514,8.0\n218,515,7.5\n218,516,7.0\n218,517,6.5\n218,518,6.0\n218,519,6.5\n218,520,7.0\n218,521,7.5\n218,522,8.0\n218,523,8.5\n218,524,9.0\n218,525,15.5\n218,526,15.0\n218,527,14.5\n218,528,14.0\n218,529,13.5\n218,530,13.0\n218,531,12.5\n218,532,12.0\n218,533,11.5\n218,534,11.0\n218,535,10.5\n218,536,10.0\n218,537,9.5\n218,538,9.0\n218,539,8.5\n218,540,8.0\n218,541,7.5\n218,542,7.0\n218,543,6.5\n218,544,7.0\n218,545,7.5\n218,546,8.0\n218,547,8.5\n218,548,9.0\n218,549,9.5\n218,550,16.0\n218,551,15.5\n218,552,15.0\n218,553,14.5\n218,554,14.0\n218,555,13.5\n218,556,13.0\n218,557,12.5\n218,558,12.0\n218,559,11.5\n218,560,11.0\n218,561,10.5\n218,562,10.0\n218,563,9.5\n218,564,9.0\n218,565,8.5\n218,566,8.0\n218,567,7.5\n218,568,7.0\n218,569,7.5\n218,570,8.0\n218,571,8.5\n218,572,9.0\n218,573,9.5\n218,574,10.0\n218,575,16.5\n218,576,16.0\n218,577,15.5\n218,578,15.0\n218,579,14.5\n218,580,14.0\n218,581,13.5\n218,582,13.0\n218,583,12.5\n218,584,12.0\n218,585,11.5\n218,586,11.0\n218,587,10.5\n218,588,10.0\n218,589,9.5\n218,590,9.0\n218,591,8.5\n218,592,8.0\n218,593,7.5\n218,594,8.0\n218,595,8.5\n218,596,9.0\n218,597,9.5\n218,598,10.0\n218,599,10.5\n218,600,17.0\n218,601,16.5\n218,602,16.0\n218,603,15.5\n218,604,15.0\n218,605,14.5\n218,606,14.0\n218,607,13.5\n218,608,13.0\n218,609,12.5\n218,610,12.0\n218,611,11.5\n218,612,11.0\n218,613,10.5\n218,614,10.0\n218,615,9.5\n218,616,9.0\n218,617,8.5\n218,618,8.0\n218,619,8.5\n218,620,9.0\n218,621,9.5\n218,622,10.0\n218,623,10.5\n218,624,11.0\n219,0,13.5\n219,1,13.0\n219,2,12.5\n219,3,12.0\n219,4,11.5\n219,5,11.0\n219,6,10.5\n219,7,10.0\n219,8,9.5\n219,9,9.0\n219,10,8.5\n219,11,8.0\n219,12,7.5\n219,13,7.0\n219,14,6.5\n219,15,6.0\n219,16,5.5\n219,17,5.0\n219,18,4.5\n219,19,4.0\n219,20,4.5\n219,21,5.0\n219,22,5.5\n219,23,6.0\n219,24,6.5\n219,25,13.0\n219,26,12.5\n219,27,12.0\n219,28,11.5\n219,29,11.0\n219,30,10.5\n219,31,10.0\n219,32,9.5\n219,33,9.0\n219,34,8.5\n219,35,8.0\n219,36,7.5\n219,37,7.0\n219,38,6.5\n219,39,6.0\n219,40,5.5\n219,41,5.0\n219,42,4.5\n219,43,4.0\n219,44,3.5\n219,45,4.0\n219,46,4.5\n219,47,5.0\n219,48,5.5\n219,49,6.0\n219,50,12.5\n219,51,12.0\n219,52,11.5\n219,53,11.0\n219,54,10.5\n219,55,10.0\n219,56,9.5\n219,57,9.0\n219,58,8.5\n219,59,8.0\n219,60,7.5\n219,61,7.0\n219,62,6.5\n219,63,6.0\n219,64,5.5\n219,65,5.0\n219,66,4.5\n219,67,4.0\n219,68,3.5\n219,69,3.0\n219,70,3.5\n219,71,4.0\n219,72,4.5\n219,73,5.0\n219,74,5.5\n219,75,12.0\n219,76,11.5\n219,77,11.0\n219,78,10.5\n219,79,10.0\n219,80,9.5\n219,81,9.0\n219,82,8.5\n219,83,8.0\n219,84,7.5\n219,85,7.0\n219,86,6.5\n219,87,6.0\n219,88,5.5\n219,89,5.0\n219,90,4.5\n219,91,4.0\n219,92,3.5\n219,93,3.0\n219,94,2.5\n219,95,3.0\n219,96,3.5\n219,97,4.0\n219,98,4.5\n219,99,5.0\n219,100,11.5\n219,101,11.0\n219,102,10.5\n219,103,10.0\n219,104,9.5\n219,105,9.0\n219,106,8.5\n219,107,8.0\n219,108,7.5\n219,109,7.0\n219,110,6.5\n219,111,6.0\n219,112,5.5\n219,113,5.0\n219,114,4.5\n219,115,4.0\n219,116,3.5\n219,117,3.0\n219,118,2.5\n219,119,2.0\n219,120,2.5\n219,121,3.0\n219,122,3.5\n219,123,4.0\n219,124,4.5\n219,125,11.0\n219,126,10.5\n219,127,10.0\n219,128,9.5\n219,129,9.0\n219,130,8.5\n219,131,8.0\n219,132,7.5\n219,133,7.0\n219,134,6.5\n219,135,6.0\n219,136,5.5\n219,137,5.0\n219,138,4.5\n219,139,4.0\n219,140,3.5\n219,141,3.0\n219,142,2.5\n219,143,2.0\n219,144,1.5\n219,145,2.0\n219,146,2.5\n219,147,3.0\n219,148,3.5\n219,149,4.0\n219,150,10.5\n219,151,10.0\n219,152,9.5\n219,153,9.0\n219,154,8.5\n219,155,8.0\n219,156,7.5\n219,157,7.0\n219,158,6.5\n219,159,6.0\n219,160,5.5\n219,161,5.0\n219,162,4.5\n219,163,4.0\n219,164,3.5\n219,165,3.0\n219,166,2.5\n219,167,2.0\n219,168,1.5\n219,169,1.0\n219,170,1.5\n219,171,2.0\n219,172,2.5\n219,173,3.0\n219,174,3.5\n219,175,10.0\n219,176,9.5\n219,177,9.0\n219,178,8.5\n219,179,8.0\n219,180,7.5\n219,181,7.0\n219,182,6.5\n219,183,6.0\n219,184,5.5\n219,185,5.0\n219,186,4.5\n219,187,4.0\n219,188,3.5\n219,189,3.0\n219,190,2.5\n219,191,2.0\n219,192,1.5\n219,193,1.0\n219,194,0.5\n219,195,1.0\n219,196,1.5\n219,197,2.0\n219,198,2.5\n219,199,3.0\n219,200,9.5\n219,201,9.0\n219,202,8.5\n219,203,8.0\n219,204,7.5\n219,205,7.0\n219,206,6.5\n219,207,6.0\n219,208,5.5\n219,209,5.0\n219,210,4.5\n219,211,4.0\n219,212,3.5\n219,213,3.0\n219,214,2.5\n219,215,2.0\n219,216,1.5\n219,217,1.0\n219,218,0.5\n219,219,0\n219,220,0.5\n219,221,1.0\n219,222,1.5\n219,223,2.0\n219,224,2.5\n219,225,10.0\n219,226,9.5\n219,227,9.0\n219,228,8.5\n219,229,8.0\n219,230,7.5\n219,231,7.0\n219,232,6.5\n219,233,6.0\n219,234,5.5\n219,235,5.0\n219,236,4.5\n219,237,4.0\n219,238,3.5\n219,239,3.0\n219,240,2.5\n219,241,2.0\n219,242,1.5\n219,243,1.0\n219,244,0.5\n219,245,1.0\n219,246,1.5\n219,247,2.0\n219,248,2.5\n219,249,3.0\n219,250,10.5\n219,251,10.0\n219,252,9.5\n219,253,9.0\n219,254,8.5\n219,255,8.0\n219,256,7.5\n219,257,7.0\n219,258,6.5\n219,259,6.0\n219,260,5.5\n219,261,5.0\n219,262,4.5\n219,263,4.0\n219,264,3.5\n219,265,3.0\n219,266,2.5\n219,267,2.0\n219,268,1.5\n219,269,1.0\n219,270,1.5\n219,271,2.0\n219,272,2.5\n219,273,3.0\n219,274,3.5\n219,275,11.0\n219,276,10.5\n219,277,10.0\n219,278,9.5\n219,279,9.0\n219,280,8.5\n219,281,8.0\n219,282,7.5\n219,283,7.0\n219,284,6.5\n219,285,6.0\n219,286,5.5\n219,287,5.0\n219,288,4.5\n219,289,4.0\n219,290,3.5\n219,291,3.0\n219,292,2.5\n219,293,2.0\n219,294,1.5\n219,295,2.0\n219,296,2.5\n219,297,3.0\n219,298,3.5\n219,299,4.0\n219,300,11.5\n219,301,11.0\n219,302,10.5\n219,303,10.0\n219,304,9.5\n219,305,9.0\n219,306,8.5\n219,307,8.0\n219,308,7.5\n219,309,7.0\n219,310,6.5\n219,311,6.0\n219,312,5.5\n219,313,5.0\n219,314,4.5\n219,315,4.0\n219,316,3.5\n219,317,3.0\n219,318,2.5\n219,319,2.0\n219,320,2.5\n219,321,3.0\n219,322,3.5\n219,323,4.0\n219,324,4.5\n219,325,12.0\n219,326,11.5\n219,327,11.0\n219,328,10.5\n219,329,10.0\n219,330,9.5\n219,331,9.0\n219,332,8.5\n219,333,8.0\n219,334,7.5\n219,335,7.0\n219,336,6.5\n219,337,6.0\n219,338,5.5\n219,339,5.0\n219,340,4.5\n219,341,4.0\n219,342,3.5\n219,343,3.0\n219,344,2.5\n219,345,3.0\n219,346,3.5\n219,347,4.0\n219,348,4.5\n219,349,5.0\n219,350,12.5\n219,351,12.0\n219,352,11.5\n219,353,11.0\n219,354,10.5\n219,355,10.0\n219,356,9.5\n219,357,9.0\n219,358,8.5\n219,359,8.0\n219,360,7.5\n219,361,7.0\n219,362,6.5\n219,363,6.0\n219,364,5.5\n219,365,5.0\n219,366,4.5\n219,367,4.0\n219,368,3.5\n219,369,3.0\n219,370,3.5\n219,371,4.0\n219,372,4.5\n219,373,5.0\n219,374,5.5\n219,375,13.0\n219,376,12.5\n219,377,12.0\n219,378,11.5\n219,379,11.0\n219,380,10.5\n219,381,10.0\n219,382,9.5\n219,383,9.0\n219,384,8.5\n219,385,8.0\n219,386,7.5\n219,387,7.0\n219,388,6.5\n219,389,6.0\n219,390,5.5\n219,391,5.0\n219,392,4.5\n219,393,4.0\n219,394,3.5\n219,395,4.0\n219,396,4.5\n219,397,5.0\n219,398,5.5\n219,399,6.0\n219,400,13.5\n219,401,13.0\n219,402,12.5\n219,403,12.0\n219,404,11.5\n219,405,11.0\n219,406,10.5\n219,407,10.0\n219,408,9.5\n219,409,9.0\n219,410,8.5\n219,411,8.0\n219,412,7.5\n219,413,7.0\n219,414,6.5\n219,415,6.0\n219,416,5.5\n219,417,5.0\n219,418,4.5\n219,419,4.0\n219,420,4.5\n219,421,5.0\n219,422,5.5\n219,423,6.0\n219,424,6.5\n219,425,14.0\n219,426,13.5\n219,427,13.0\n219,428,12.5\n219,429,12.0\n219,430,11.5\n219,431,11.0\n219,432,10.5\n219,433,10.0\n219,434,9.5\n219,435,9.0\n219,436,8.5\n219,437,8.0\n219,438,7.5\n219,439,7.0\n219,440,6.5\n219,441,6.0\n219,442,5.5\n219,443,5.0\n219,444,4.5\n219,445,5.0\n219,446,5.5\n219,447,6.0\n219,448,6.5\n219,449,7.0\n219,450,14.5\n219,451,14.0\n219,452,13.5\n219,453,13.0\n219,454,12.5\n219,455,12.0\n219,456,11.5\n219,457,11.0\n219,458,10.5\n219,459,10.0\n219,460,9.5\n219,461,9.0\n219,462,8.5\n219,463,8.0\n219,464,7.5\n219,465,7.0\n219,466,6.5\n219,467,6.0\n219,468,5.5\n219,469,5.0\n219,470,5.5\n219,471,6.0\n219,472,6.5\n219,473,7.0\n219,474,7.5\n219,475,15.0\n219,476,14.5\n219,477,14.0\n219,478,13.5\n219,479,13.0\n219,480,12.5\n219,481,12.0\n219,482,11.5\n219,483,11.0\n219,484,10.5\n219,485,10.0\n219,486,9.5\n219,487,9.0\n219,488,8.5\n219,489,8.0\n219,490,7.5\n219,491,7.0\n219,492,6.5\n219,493,6.0\n219,494,5.5\n219,495,6.0\n219,496,6.5\n219,497,7.0\n219,498,7.5\n219,499,8.0\n219,500,15.5\n219,501,15.0\n219,502,14.5\n219,503,14.0\n219,504,13.5\n219,505,13.0\n219,506,12.5\n219,507,12.0\n219,508,11.5\n219,509,11.0\n219,510,10.5\n219,511,10.0\n219,512,9.5\n219,513,9.0\n219,514,8.5\n219,515,8.0\n219,516,7.5\n219,517,7.0\n219,518,6.5\n219,519,6.0\n219,520,6.5\n219,521,7.0\n219,522,7.5\n219,523,8.0\n219,524,8.5\n219,525,16.0\n219,526,15.5\n219,527,15.0\n219,528,14.5\n219,529,14.0\n219,530,13.5\n219,531,13.0\n219,532,12.5\n219,533,12.0\n219,534,11.5\n219,535,11.0\n219,536,10.5\n219,537,10.0\n219,538,9.5\n219,539,9.0\n219,540,8.5\n219,541,8.0\n219,542,7.5\n219,543,7.0\n219,544,6.5\n219,545,7.0\n219,546,7.5\n219,547,8.0\n219,548,8.5\n219,549,9.0\n219,550,16.5\n219,551,16.0\n219,552,15.5\n219,553,15.0\n219,554,14.5\n219,555,14.0\n219,556,13.5\n219,557,13.0\n219,558,12.5\n219,559,12.0\n219,560,11.5\n219,561,11.0\n219,562,10.5\n219,563,10.0\n219,564,9.5\n219,565,9.0\n219,566,8.5\n219,567,8.0\n219,568,7.5\n219,569,7.0\n219,570,7.5\n219,571,8.0\n219,572,8.5\n219,573,9.0\n219,574,9.5\n219,575,17.0\n219,576,16.5\n219,577,16.0\n219,578,15.5\n219,579,15.0\n219,580,14.5\n219,581,14.0\n219,582,13.5\n219,583,13.0\n219,584,12.5\n219,585,12.0\n219,586,11.5\n219,587,11.0\n219,588,10.5\n219,589,10.0\n219,590,9.5\n219,591,9.0\n219,592,8.5\n219,593,8.0\n219,594,7.5\n219,595,8.0\n219,596,8.5\n219,597,9.0\n219,598,9.5\n219,599,10.0\n219,600,17.5\n219,601,17.0\n219,602,16.5\n219,603,16.0\n219,604,15.5\n219,605,15.0\n219,606,14.5\n219,607,14.0\n219,608,13.5\n219,609,13.0\n219,610,12.5\n219,611,12.0\n219,612,11.5\n219,613,11.0\n219,614,10.5\n219,615,10.0\n219,616,9.5\n219,617,9.0\n219,618,8.5\n219,619,8.0\n219,620,8.5\n219,621,9.0\n219,622,9.5\n219,623,10.0\n219,624,10.5\n220,0,14.0\n220,1,13.5\n220,2,13.0\n220,3,12.5\n220,4,12.0\n220,5,11.5\n220,6,11.0\n220,7,10.5\n220,8,10.0\n220,9,9.5\n220,10,9.0\n220,11,8.5\n220,12,8.0\n220,13,7.5\n220,14,7.0\n220,15,6.5\n220,16,6.0\n220,17,5.5\n220,18,5.0\n220,19,4.5\n220,20,4.0\n220,21,4.5\n220,22,5.0\n220,23,5.5\n220,24,6.0\n220,25,13.5\n220,26,13.0\n220,27,12.5\n220,28,12.0\n220,29,11.5\n220,30,11.0\n220,31,10.5\n220,32,10.0\n220,33,9.5\n220,34,9.0\n220,35,8.5\n220,36,8.0\n220,37,7.5\n220,38,7.0\n220,39,6.5\n220,40,6.0\n220,41,5.5\n220,42,5.0\n220,43,4.5\n220,44,4.0\n220,45,3.5\n220,46,4.0\n220,47,4.5\n220,48,5.0\n220,49,5.5\n220,50,13.0\n220,51,12.5\n220,52,12.0\n220,53,11.5\n220,54,11.0\n220,55,10.5\n220,56,10.0\n220,57,9.5\n220,58,9.0\n220,59,8.5\n220,60,8.0\n220,61,7.5\n220,62,7.0\n220,63,6.5\n220,64,6.0\n220,65,5.5\n220,66,5.0\n220,67,4.5\n220,68,4.0\n220,69,3.5\n220,70,3.0\n220,71,3.5\n220,72,4.0\n220,73,4.5\n220,74,5.0\n220,75,12.5\n220,76,12.0\n220,77,11.5\n220,78,11.0\n220,79,10.5\n220,80,10.0\n220,81,9.5\n220,82,9.0\n220,83,8.5\n220,84,8.0\n220,85,7.5\n220,86,7.0\n220,87,6.5\n220,88,6.0\n220,89,5.5\n220,90,5.0\n220,91,4.5\n220,92,4.0\n220,93,3.5\n220,94,3.0\n220,95,2.5\n220,96,3.0\n220,97,3.5\n220,98,4.0\n220,99,4.5\n220,100,12.0\n220,101,11.5\n220,102,11.0\n220,103,10.5\n220,104,10.0\n220,105,9.5\n220,106,9.0\n220,107,8.5\n220,108,8.0\n220,109,7.5\n220,110,7.0\n220,111,6.5\n220,112,6.0\n220,113,5.5\n220,114,5.0\n220,115,4.5\n220,116,4.0\n220,117,3.5\n220,118,3.0\n220,119,2.5\n220,120,2.0\n220,121,2.5\n220,122,3.0\n220,123,3.5\n220,124,4.0\n220,125,11.5\n220,126,11.0\n220,127,10.5\n220,128,10.0\n220,129,9.5\n220,130,9.0\n220,131,8.5\n220,132,8.0\n220,133,7.5\n220,134,7.0\n220,135,6.5\n220,136,6.0\n220,137,5.5\n220,138,5.0\n220,139,4.5\n220,140,4.0\n220,141,3.5\n220,142,3.0\n220,143,2.5\n220,144,2.0\n220,145,1.5\n220,146,2.0\n220,147,2.5\n220,148,3.0\n220,149,3.5\n220,150,11.0\n220,151,10.5\n220,152,10.0\n220,153,9.5\n220,154,9.0\n220,155,8.5\n220,156,8.0\n220,157,7.5\n220,158,7.0\n220,159,6.5\n220,160,6.0\n220,161,5.5\n220,162,5.0\n220,163,4.5\n220,164,4.0\n220,165,3.5\n220,166,3.0\n220,167,2.5\n220,168,2.0\n220,169,1.5\n220,170,1.0\n220,171,1.5\n220,172,2.0\n220,173,2.5\n220,174,3.0\n220,175,10.5\n220,176,10.0\n220,177,9.5\n220,178,9.0\n220,179,8.5\n220,180,8.0\n220,181,7.5\n220,182,7.0\n220,183,6.5\n220,184,6.0\n220,185,5.5\n220,186,5.0\n220,187,4.5\n220,188,4.0\n220,189,3.5\n220,190,3.0\n220,191,2.5\n220,192,2.0\n220,193,1.5\n220,194,1.0\n220,195,0.5\n220,196,1.0\n220,197,1.5\n220,198,2.0\n220,199,2.5\n220,200,10.0\n220,201,9.5\n220,202,9.0\n220,203,8.5\n220,204,8.0\n220,205,7.5\n220,206,7.0\n220,207,6.5\n220,208,6.0\n220,209,5.5\n220,210,5.0\n220,211,4.5\n220,212,4.0\n220,213,3.5\n220,214,3.0\n220,215,2.5\n220,216,2.0\n220,217,1.5\n220,218,1.0\n220,219,0.5\n220,220,0\n220,221,0.5\n220,222,1.0\n220,223,1.5\n220,224,2.0\n220,225,10.5\n220,226,10.0\n220,227,9.5\n220,228,9.0\n220,229,8.5\n220,230,8.0\n220,231,7.5\n220,232,7.0\n220,233,6.5\n220,234,6.0\n220,235,5.5\n220,236,5.0\n220,237,4.5\n220,238,4.0\n220,239,3.5\n220,240,3.0\n220,241,2.5\n220,242,2.0\n220,243,1.5\n220,244,1.0\n220,245,0.5\n220,246,1.0\n220,247,1.5\n220,248,2.0\n220,249,2.5\n220,250,11.0\n220,251,10.5\n220,252,10.0\n220,253,9.5\n220,254,9.0\n220,255,8.5\n220,256,8.0\n220,257,7.5\n220,258,7.0\n220,259,6.5\n220,260,6.0\n220,261,5.5\n220,262,5.0\n220,263,4.5\n220,264,4.0\n220,265,3.5\n220,266,3.0\n220,267,2.5\n220,268,2.0\n220,269,1.5\n220,270,1.0\n220,271,1.5\n220,272,2.0\n220,273,2.5\n220,274,3.0\n220,275,11.5\n220,276,11.0\n220,277,10.5\n220,278,10.0\n220,279,9.5\n220,280,9.0\n220,281,8.5\n220,282,8.0\n220,283,7.5\n220,284,7.0\n220,285,6.5\n220,286,6.0\n220,287,5.5\n220,288,5.0\n220,289,4.5\n220,290,4.0\n220,291,3.5\n220,292,3.0\n220,293,2.5\n220,294,2.0\n220,295,1.5\n220,296,2.0\n220,297,2.5\n220,298,3.0\n220,299,3.5\n220,300,12.0\n220,301,11.5\n220,302,11.0\n220,303,10.5\n220,304,10.0\n220,305,9.5\n220,306,9.0\n220,307,8.5\n220,308,8.0\n220,309,7.5\n220,310,7.0\n220,311,6.5\n220,312,6.0\n220,313,5.5\n220,314,5.0\n220,315,4.5\n220,316,4.0\n220,317,3.5\n220,318,3.0\n220,319,2.5\n220,320,2.0\n220,321,2.5\n220,322,3.0\n220,323,3.5\n220,324,4.0\n220,325,12.5\n220,326,12.0\n220,327,11.5\n220,328,11.0\n220,329,10.5\n220,330,10.0\n220,331,9.5\n220,332,9.0\n220,333,8.5\n220,334,8.0\n220,335,7.5\n220,336,7.0\n220,337,6.5\n220,338,6.0\n220,339,5.5\n220,340,5.0\n220,341,4.5\n220,342,4.0\n220,343,3.5\n220,344,3.0\n220,345,2.5\n220,346,3.0\n220,347,3.5\n220,348,4.0\n220,349,4.5\n220,350,13.0\n220,351,12.5\n220,352,12.0\n220,353,11.5\n220,354,11.0\n220,355,10.5\n220,356,10.0\n220,357,9.5\n220,358,9.0\n220,359,8.5\n220,360,8.0\n220,361,7.5\n220,362,7.0\n220,363,6.5\n220,364,6.0\n220,365,5.5\n220,366,5.0\n220,367,4.5\n220,368,4.0\n220,369,3.5\n220,370,3.0\n220,371,3.5\n220,372,4.0\n220,373,4.5\n220,374,5.0\n220,375,13.5\n220,376,13.0\n220,377,12.5\n220,378,12.0\n220,379,11.5\n220,380,11.0\n220,381,10.5\n220,382,10.0\n220,383,9.5\n220,384,9.0\n220,385,8.5\n220,386,8.0\n220,387,7.5\n220,388,7.0\n220,389,6.5\n220,390,6.0\n220,391,5.5\n220,392,5.0\n220,393,4.5\n220,394,4.0\n220,395,3.5\n220,396,4.0\n220,397,4.5\n220,398,5.0\n220,399,5.5\n220,400,14.0\n220,401,13.5\n220,402,13.0\n220,403,12.5\n220,404,12.0\n220,405,11.5\n220,406,11.0\n220,407,10.5\n220,408,10.0\n220,409,9.5\n220,410,9.0\n220,411,8.5\n220,412,8.0\n220,413,7.5\n220,414,7.0\n220,415,6.5\n220,416,6.0\n220,417,5.5\n220,418,5.0\n220,419,4.5\n220,420,4.0\n220,421,4.5\n220,422,5.0\n220,423,5.5\n220,424,6.0\n220,425,14.5\n220,426,14.0\n220,427,13.5\n220,428,13.0\n220,429,12.5\n220,430,12.0\n220,431,11.5\n220,432,11.0\n220,433,10.5\n220,434,10.0\n220,435,9.5\n220,436,9.0\n220,437,8.5\n220,438,8.0\n220,439,7.5\n220,440,7.0\n220,441,6.5\n220,442,6.0\n220,443,5.5\n220,444,5.0\n220,445,4.5\n220,446,5.0\n220,447,5.5\n220,448,6.0\n220,449,6.5\n220,450,15.0\n220,451,14.5\n220,452,14.0\n220,453,13.5\n220,454,13.0\n220,455,12.5\n220,456,12.0\n220,457,11.5\n220,458,11.0\n220,459,10.5\n220,460,10.0\n220,461,9.5\n220,462,9.0\n220,463,8.5\n220,464,8.0\n220,465,7.5\n220,466,7.0\n220,467,6.5\n220,468,6.0\n220,469,5.5\n220,470,5.0\n220,471,5.5\n220,472,6.0\n220,473,6.5\n220,474,7.0\n220,475,15.5\n220,476,15.0\n220,477,14.5\n220,478,14.0\n220,479,13.5\n220,480,13.0\n220,481,12.5\n220,482,12.0\n220,483,11.5\n220,484,11.0\n220,485,10.5\n220,486,10.0\n220,487,9.5\n220,488,9.0\n220,489,8.5\n220,490,8.0\n220,491,7.5\n220,492,7.0\n220,493,6.5\n220,494,6.0\n220,495,5.5\n220,496,6.0\n220,497,6.5\n220,498,7.0\n220,499,7.5\n220,500,16.0\n220,501,15.5\n220,502,15.0\n220,503,14.5\n220,504,14.0\n220,505,13.5\n220,506,13.0\n220,507,12.5\n220,508,12.0\n220,509,11.5\n220,510,11.0\n220,511,10.5\n220,512,10.0\n220,513,9.5\n220,514,9.0\n220,515,8.5\n220,516,8.0\n220,517,7.5\n220,518,7.0\n220,519,6.5\n220,520,6.0\n220,521,6.5\n220,522,7.0\n220,523,7.5\n220,524,8.0\n220,525,16.5\n220,526,16.0\n220,527,15.5\n220,528,15.0\n220,529,14.5\n220,530,14.0\n220,531,13.5\n220,532,13.0\n220,533,12.5\n220,534,12.0\n220,535,11.5\n220,536,11.0\n220,537,10.5\n220,538,10.0\n220,539,9.5\n220,540,9.0\n220,541,8.5\n220,542,8.0\n220,543,7.5\n220,544,7.0\n220,545,6.5\n220,546,7.0\n220,547,7.5\n220,548,8.0\n220,549,8.5\n220,550,17.0\n220,551,16.5\n220,552,16.0\n220,553,15.5\n220,554,15.0\n220,555,14.5\n220,556,14.0\n220,557,13.5\n220,558,13.0\n220,559,12.5\n220,560,12.0\n220,561,11.5\n220,562,11.0\n220,563,10.5\n220,564,10.0\n220,565,9.5\n220,566,9.0\n220,567,8.5\n220,568,8.0\n220,569,7.5\n220,570,7.0\n220,571,7.5\n220,572,8.0\n220,573,8.5\n220,574,9.0\n220,575,17.5\n220,576,17.0\n220,577,16.5\n220,578,16.0\n220,579,15.5\n220,580,15.0\n220,581,14.5\n220,582,14.0\n220,583,13.5\n220,584,13.0\n220,585,12.5\n220,586,12.0\n220,587,11.5\n220,588,11.0\n220,589,10.5\n220,590,10.0\n220,591,9.5\n220,592,9.0\n220,593,8.5\n220,594,8.0\n220,595,7.5\n220,596,8.0\n220,597,8.5\n220,598,9.0\n220,599,9.5\n220,600,18.0\n220,601,17.5\n220,602,17.0\n220,603,16.5\n220,604,16.0\n220,605,15.5\n220,606,15.0\n220,607,14.5\n220,608,14.0\n220,609,13.5\n220,610,13.0\n220,611,12.5\n220,612,12.0\n220,613,11.5\n220,614,11.0\n220,615,10.5\n220,616,10.0\n220,617,9.5\n220,618,9.0\n220,619,8.5\n220,620,8.0\n220,621,8.5\n220,622,9.0\n220,623,9.5\n220,624,10.0\n221,0,14.5\n221,1,14.0\n221,2,13.5\n221,3,13.0\n221,4,12.5\n221,5,12.0\n221,6,11.5\n221,7,11.0\n221,8,10.5\n221,9,10.0\n221,10,9.5\n221,11,9.0\n221,12,8.5\n221,13,8.0\n221,14,7.5\n221,15,7.0\n221,16,6.5\n221,17,6.0\n221,18,5.5\n221,19,5.0\n221,20,4.5\n221,21,4.0\n221,22,4.5\n221,23,5.0\n221,24,5.5\n221,25,14.0\n221,26,13.5\n221,27,13.0\n221,28,12.5\n221,29,12.0\n221,30,11.5\n221,31,11.0\n221,32,10.5\n221,33,10.0\n221,34,9.5\n221,35,9.0\n221,36,8.5\n221,37,8.0\n221,38,7.5\n221,39,7.0\n221,40,6.5\n221,41,6.0\n221,42,5.5\n221,43,5.0\n221,44,4.5\n221,45,4.0\n221,46,3.5\n221,47,4.0\n221,48,4.5\n221,49,5.0\n221,50,13.5\n221,51,13.0\n221,52,12.5\n221,53,12.0\n221,54,11.5\n221,55,11.0\n221,56,10.5\n221,57,10.0\n221,58,9.5\n221,59,9.0\n221,60,8.5\n221,61,8.0\n221,62,7.5\n221,63,7.0\n221,64,6.5\n221,65,6.0\n221,66,5.5\n221,67,5.0\n221,68,4.5\n221,69,4.0\n221,70,3.5\n221,71,3.0\n221,72,3.5\n221,73,4.0\n221,74,4.5\n221,75,13.0\n221,76,12.5\n221,77,12.0\n221,78,11.5\n221,79,11.0\n221,80,10.5\n221,81,10.0\n221,82,9.5\n221,83,9.0\n221,84,8.5\n221,85,8.0\n221,86,7.5\n221,87,7.0\n221,88,6.5\n221,89,6.0\n221,90,5.5\n221,91,5.0\n221,92,4.5\n221,93,4.0\n221,94,3.5\n221,95,3.0\n221,96,2.5\n221,97,3.0\n221,98,3.5\n221,99,4.0\n221,100,12.5\n221,101,12.0\n221,102,11.5\n221,103,11.0\n221,104,10.5\n221,105,10.0\n221,106,9.5\n221,107,9.0\n221,108,8.5\n221,109,8.0\n221,110,7.5\n221,111,7.0\n221,112,6.5\n221,113,6.0\n221,114,5.5\n221,115,5.0\n221,116,4.5\n221,117,4.0\n221,118,3.5\n221,119,3.0\n221,120,2.5\n221,121,2.0\n221,122,2.5\n221,123,3.0\n221,124,3.5\n221,125,12.0\n221,126,11.5\n221,127,11.0\n221,128,10.5\n221,129,10.0\n221,130,9.5\n221,131,9.0\n221,132,8.5\n221,133,8.0\n221,134,7.5\n221,135,7.0\n221,136,6.5\n221,137,6.0\n221,138,5.5\n221,139,5.0\n221,140,4.5\n221,141,4.0\n221,142,3.5\n221,143,3.0\n221,144,2.5\n221,145,2.0\n221,146,1.5\n221,147,2.0\n221,148,2.5\n221,149,3.0\n221,150,11.5\n221,151,11.0\n221,152,10.5\n221,153,10.0\n221,154,9.5\n221,155,9.0\n221,156,8.5\n221,157,8.0\n221,158,7.5\n221,159,7.0\n221,160,6.5\n221,161,6.0\n221,162,5.5\n221,163,5.0\n221,164,4.5\n221,165,4.0\n221,166,3.5\n221,167,3.0\n221,168,2.5\n221,169,2.0\n221,170,1.5\n221,171,1.0\n221,172,1.5\n221,173,2.0\n221,174,2.5\n221,175,11.0\n221,176,10.5\n221,177,10.0\n221,178,9.5\n221,179,9.0\n221,180,8.5\n221,181,8.0\n221,182,7.5\n221,183,7.0\n221,184,6.5\n221,185,6.0\n221,186,5.5\n221,187,5.0\n221,188,4.5\n221,189,4.0\n221,190,3.5\n221,191,3.0\n221,192,2.5\n221,193,2.0\n221,194,1.5\n221,195,1.0\n221,196,0.5\n221,197,1.0\n221,198,1.5\n221,199,2.0\n221,200,10.5\n221,201,10.0\n221,202,9.5\n221,203,9.0\n221,204,8.5\n221,205,8.0\n221,206,7.5\n221,207,7.0\n221,208,6.5\n221,209,6.0\n221,210,5.5\n221,211,5.0\n221,212,4.5\n221,213,4.0\n221,214,3.5\n221,215,3.0\n221,216,2.5\n221,217,2.0\n221,218,1.5\n221,219,1.0\n221,220,0.5\n221,221,0\n221,222,0.5\n221,223,1.0\n221,224,1.5\n221,225,11.0\n221,226,10.5\n221,227,10.0\n221,228,9.5\n221,229,9.0\n221,230,8.5\n221,231,8.0\n221,232,7.5\n221,233,7.0\n221,234,6.5\n221,235,6.0\n221,236,5.5\n221,237,5.0\n221,238,4.5\n221,239,4.0\n221,240,3.5\n221,241,3.0\n221,242,2.5\n221,243,2.0\n221,244,1.5\n221,245,1.0\n221,246,0.5\n221,247,1.0\n221,248,1.5\n221,249,2.0\n221,250,11.5\n221,251,11.0\n221,252,10.5\n221,253,10.0\n221,254,9.5\n221,255,9.0\n221,256,8.5\n221,257,8.0\n221,258,7.5\n221,259,7.0\n221,260,6.5\n221,261,6.0\n221,262,5.5\n221,263,5.0\n221,264,4.5\n221,265,4.0\n221,266,3.5\n221,267,3.0\n221,268,2.5\n221,269,2.0\n221,270,1.5\n221,271,1.0\n221,272,1.5\n221,273,2.0\n221,274,2.5\n221,275,12.0\n221,276,11.5\n221,277,11.0\n221,278,10.5\n221,279,10.0\n221,280,9.5\n221,281,9.0\n221,282,8.5\n221,283,8.0\n221,284,7.5\n221,285,7.0\n221,286,6.5\n221,287,6.0\n221,288,5.5\n221,289,5.0\n221,290,4.5\n221,291,4.0\n221,292,3.5\n221,293,3.0\n221,294,2.5\n221,295,2.0\n221,296,1.5\n221,297,2.0\n221,298,2.5\n221,299,3.0\n221,300,12.5\n221,301,12.0\n221,302,11.5\n221,303,11.0\n221,304,10.5\n221,305,10.0\n221,306,9.5\n221,307,9.0\n221,308,8.5\n221,309,8.0\n221,310,7.5\n221,311,7.0\n221,312,6.5\n221,313,6.0\n221,314,5.5\n221,315,5.0\n221,316,4.5\n221,317,4.0\n221,318,3.5\n221,319,3.0\n221,320,2.5\n221,321,2.0\n221,322,2.5\n221,323,3.0\n221,324,3.5\n221,325,13.0\n221,326,12.5\n221,327,12.0\n221,328,11.5\n221,329,11.0\n221,330,10.5\n221,331,10.0\n221,332,9.5\n221,333,9.0\n221,334,8.5\n221,335,8.0\n221,336,7.5\n221,337,7.0\n221,338,6.5\n221,339,6.0\n221,340,5.5\n221,341,5.0\n221,342,4.5\n221,343,4.0\n221,344,3.5\n221,345,3.0\n221,346,2.5\n221,347,3.0\n221,348,3.5\n221,349,4.0\n221,350,13.5\n221,351,13.0\n221,352,12.5\n221,353,12.0\n221,354,11.5\n221,355,11.0\n221,356,10.5\n221,357,10.0\n221,358,9.5\n221,359,9.0\n221,360,8.5\n221,361,8.0\n221,362,7.5\n221,363,7.0\n221,364,6.5\n221,365,6.0\n221,366,5.5\n221,367,5.0\n221,368,4.5\n221,369,4.0\n221,370,3.5\n221,371,3.0\n221,372,3.5\n221,373,4.0\n221,374,4.5\n221,375,14.0\n221,376,13.5\n221,377,13.0\n221,378,12.5\n221,379,12.0\n221,380,11.5\n221,381,11.0\n221,382,10.5\n221,383,10.0\n221,384,9.5\n221,385,9.0\n221,386,8.5\n221,387,8.0\n221,388,7.5\n221,389,7.0\n221,390,6.5\n221,391,6.0\n221,392,5.5\n221,393,5.0\n221,394,4.5\n221,395,4.0\n221,396,3.5\n221,397,4.0\n221,398,4.5\n221,399,5.0\n221,400,14.5\n221,401,14.0\n221,402,13.5\n221,403,13.0\n221,404,12.5\n221,405,12.0\n221,406,11.5\n221,407,11.0\n221,408,10.5\n221,409,10.0\n221,410,9.5\n221,411,9.0\n221,412,8.5\n221,413,8.0\n221,414,7.5\n221,415,7.0\n221,416,6.5\n221,417,6.0\n221,418,5.5\n221,419,5.0\n221,420,4.5\n221,421,4.0\n221,422,4.5\n221,423,5.0\n221,424,5.5\n221,425,15.0\n221,426,14.5\n221,427,14.0\n221,428,13.5\n221,429,13.0\n221,430,12.5\n221,431,12.0\n221,432,11.5\n221,433,11.0\n221,434,10.5\n221,435,10.0\n221,436,9.5\n221,437,9.0\n221,438,8.5\n221,439,8.0\n221,440,7.5\n221,441,7.0\n221,442,6.5\n221,443,6.0\n221,444,5.5\n221,445,5.0\n221,446,4.5\n221,447,5.0\n221,448,5.5\n221,449,6.0\n221,450,15.5\n221,451,15.0\n221,452,14.5\n221,453,14.0\n221,454,13.5\n221,455,13.0\n221,456,12.5\n221,457,12.0\n221,458,11.5\n221,459,11.0\n221,460,10.5\n221,461,10.0\n221,462,9.5\n221,463,9.0\n221,464,8.5\n221,465,8.0\n221,466,7.5\n221,467,7.0\n221,468,6.5\n221,469,6.0\n221,470,5.5\n221,471,5.0\n221,472,5.5\n221,473,6.0\n221,474,6.5\n221,475,16.0\n221,476,15.5\n221,477,15.0\n221,478,14.5\n221,479,14.0\n221,480,13.5\n221,481,13.0\n221,482,12.5\n221,483,12.0\n221,484,11.5\n221,485,11.0\n221,486,10.5\n221,487,10.0\n221,488,9.5\n221,489,9.0\n221,490,8.5\n221,491,8.0\n221,492,7.5\n221,493,7.0\n221,494,6.5\n221,495,6.0\n221,496,5.5\n221,497,6.0\n221,498,6.5\n221,499,7.0\n221,500,16.5\n221,501,16.0\n221,502,15.5\n221,503,15.0\n221,504,14.5\n221,505,14.0\n221,506,13.5\n221,507,13.0\n221,508,12.5\n221,509,12.0\n221,510,11.5\n221,511,11.0\n221,512,10.5\n221,513,10.0\n221,514,9.5\n221,515,9.0\n221,516,8.5\n221,517,8.0\n221,518,7.5\n221,519,7.0\n221,520,6.5\n221,521,6.0\n221,522,6.5\n221,523,7.0\n221,524,7.5\n221,525,17.0\n221,526,16.5\n221,527,16.0\n221,528,15.5\n221,529,15.0\n221,530,14.5\n221,531,14.0\n221,532,13.5\n221,533,13.0\n221,534,12.5\n221,535,12.0\n221,536,11.5\n221,537,11.0\n221,538,10.5\n221,539,10.0\n221,540,9.5\n221,541,9.0\n221,542,8.5\n221,543,8.0\n221,544,7.5\n221,545,7.0\n221,546,6.5\n221,547,7.0\n221,548,7.5\n221,549,8.0\n221,550,17.5\n221,551,17.0\n221,552,16.5\n221,553,16.0\n221,554,15.5\n221,555,15.0\n221,556,14.5\n221,557,14.0\n221,558,13.5\n221,559,13.0\n221,560,12.5\n221,561,12.0\n221,562,11.5\n221,563,11.0\n221,564,10.5\n221,565,10.0\n221,566,9.5\n221,567,9.0\n221,568,8.5\n221,569,8.0\n221,570,7.5\n221,571,7.0\n221,572,7.5\n221,573,8.0\n221,574,8.5\n221,575,18.0\n221,576,17.5\n221,577,17.0\n221,578,16.5\n221,579,16.0\n221,580,15.5\n221,581,15.0\n221,582,14.5\n221,583,14.0\n221,584,13.5\n221,585,13.0\n221,586,12.5\n221,587,12.0\n221,588,11.5\n221,589,11.0\n221,590,10.5\n221,591,10.0\n221,592,9.5\n221,593,9.0\n221,594,8.5\n221,595,8.0\n221,596,7.5\n221,597,8.0\n221,598,8.5\n221,599,9.0\n221,600,18.5\n221,601,18.0\n221,602,17.5\n221,603,17.0\n221,604,16.5\n221,605,16.0\n221,606,15.5\n221,607,15.0\n221,608,14.5\n221,609,14.0\n221,610,13.5\n221,611,13.0\n221,612,12.5\n221,613,12.0\n221,614,11.5\n221,615,11.0\n221,616,10.5\n221,617,10.0\n221,618,9.5\n221,619,9.0\n221,620,8.5\n221,621,8.0\n221,622,8.5\n221,623,9.0\n221,624,9.5\n222,0,15.0\n222,1,14.5\n222,2,14.0\n222,3,13.5\n222,4,13.0\n222,5,12.5\n222,6,12.0\n222,7,11.5\n222,8,11.0\n222,9,10.5\n222,10,10.0\n222,11,9.5\n222,12,9.0\n222,13,8.5\n222,14,8.0\n222,15,7.5\n222,16,7.0\n222,17,6.5\n222,18,6.0\n222,19,5.5\n222,20,5.0\n222,21,4.5\n222,22,4.0\n222,23,4.5\n222,24,5.0\n222,25,14.5\n222,26,14.0\n222,27,13.5\n222,28,13.0\n222,29,12.5\n222,30,12.0\n222,31,11.5\n222,32,11.0\n222,33,10.5\n222,34,10.0\n222,35,9.5\n222,36,9.0\n222,37,8.5\n222,38,8.0\n222,39,7.5\n222,40,7.0\n222,41,6.5\n222,42,6.0\n222,43,5.5\n222,44,5.0\n222,45,4.5\n222,46,4.0\n222,47,3.5\n222,48,4.0\n222,49,4.5\n222,50,14.0\n222,51,13.5\n222,52,13.0\n222,53,12.5\n222,54,12.0\n222,55,11.5\n222,56,11.0\n222,57,10.5\n222,58,10.0\n222,59,9.5\n222,60,9.0\n222,61,8.5\n222,62,8.0\n222,63,7.5\n222,64,7.0\n222,65,6.5\n222,66,6.0\n222,67,5.5\n222,68,5.0\n222,69,4.5\n222,70,4.0\n222,71,3.5\n222,72,3.0\n222,73,3.5\n222,74,4.0\n222,75,13.5\n222,76,13.0\n222,77,12.5\n222,78,12.0\n222,79,11.5\n222,80,11.0\n222,81,10.5\n222,82,10.0\n222,83,9.5\n222,84,9.0\n222,85,8.5\n222,86,8.0\n222,87,7.5\n222,88,7.0\n222,89,6.5\n222,90,6.0\n222,91,5.5\n222,92,5.0\n222,93,4.5\n222,94,4.0\n222,95,3.5\n222,96,3.0\n222,97,2.5\n222,98,3.0\n222,99,3.5\n222,100,13.0\n222,101,12.5\n222,102,12.0\n222,103,11.5\n222,104,11.0\n222,105,10.5\n222,106,10.0\n222,107,9.5\n222,108,9.0\n222,109,8.5\n222,110,8.0\n222,111,7.5\n222,112,7.0\n222,113,6.5\n222,114,6.0\n222,115,5.5\n222,116,5.0\n222,117,4.5\n222,118,4.0\n222,119,3.5\n222,120,3.0\n222,121,2.5\n222,122,2.0\n222,123,2.5\n222,124,3.0\n222,125,12.5\n222,126,12.0\n222,127,11.5\n222,128,11.0\n222,129,10.5\n222,130,10.0\n222,131,9.5\n222,132,9.0\n222,133,8.5\n222,134,8.0\n222,135,7.5\n222,136,7.0\n222,137,6.5\n222,138,6.0\n222,139,5.5\n222,140,5.0\n222,141,4.5\n222,142,4.0\n222,143,3.5\n222,144,3.0\n222,145,2.5\n222,146,2.0\n222,147,1.5\n222,148,2.0\n222,149,2.5\n222,150,12.0\n222,151,11.5\n222,152,11.0\n222,153,10.5\n222,154,10.0\n222,155,9.5\n222,156,9.0\n222,157,8.5\n222,158,8.0\n222,159,7.5\n222,160,7.0\n222,161,6.5\n222,162,6.0\n222,163,5.5\n222,164,5.0\n222,165,4.5\n222,166,4.0\n222,167,3.5\n222,168,3.0\n222,169,2.5\n222,170,2.0\n222,171,1.5\n222,172,1.0\n222,173,1.5\n222,174,2.0\n222,175,11.5\n222,176,11.0\n222,177,10.5\n222,178,10.0\n222,179,9.5\n222,180,9.0\n222,181,8.5\n222,182,8.0\n222,183,7.5\n222,184,7.0\n222,185,6.5\n222,186,6.0\n222,187,5.5\n222,188,5.0\n222,189,4.5\n222,190,4.0\n222,191,3.5\n222,192,3.0\n222,193,2.5\n222,194,2.0\n222,195,1.5\n222,196,1.0\n222,197,0.5\n222,198,1.0\n222,199,1.5\n222,200,11.0\n222,201,10.5\n222,202,10.0\n222,203,9.5\n222,204,9.0\n222,205,8.5\n222,206,8.0\n222,207,7.5\n222,208,7.0\n222,209,6.5\n222,210,6.0\n222,211,5.5\n222,212,5.0\n222,213,4.5\n222,214,4.0\n222,215,3.5\n222,216,3.0\n222,217,2.5\n222,218,2.0\n222,219,1.5\n222,220,1.0\n222,221,0.5\n222,222,0\n222,223,0.5\n222,224,1.0\n222,225,11.5\n222,226,11.0\n222,227,10.5\n222,228,10.0\n222,229,9.5\n222,230,9.0\n222,231,8.5\n222,232,8.0\n222,233,7.5\n222,234,7.0\n222,235,6.5\n222,236,6.0\n222,237,5.5\n222,238,5.0\n222,239,4.5\n222,240,4.0\n222,241,3.5\n222,242,3.0\n222,243,2.5\n222,244,2.0\n222,245,1.5\n222,246,1.0\n222,247,0.5\n222,248,1.0\n222,249,1.5\n222,250,12.0\n222,251,11.5\n222,252,11.0\n222,253,10.5\n222,254,10.0\n222,255,9.5\n222,256,9.0\n222,257,8.5\n222,258,8.0\n222,259,7.5\n222,260,7.0\n222,261,6.5\n222,262,6.0\n222,263,5.5\n222,264,5.0\n222,265,4.5\n222,266,4.0\n222,267,3.5\n222,268,3.0\n222,269,2.5\n222,270,2.0\n222,271,1.5\n222,272,1.0\n222,273,1.5\n222,274,2.0\n222,275,12.5\n222,276,12.0\n222,277,11.5\n222,278,11.0\n222,279,10.5\n222,280,10.0\n222,281,9.5\n222,282,9.0\n222,283,8.5\n222,284,8.0\n222,285,7.5\n222,286,7.0\n222,287,6.5\n222,288,6.0\n222,289,5.5\n222,290,5.0\n222,291,4.5\n222,292,4.0\n222,293,3.5\n222,294,3.0\n222,295,2.5\n222,296,2.0\n222,297,1.5\n222,298,2.0\n222,299,2.5\n222,300,13.0\n222,301,12.5\n222,302,12.0\n222,303,11.5\n222,304,11.0\n222,305,10.5\n222,306,10.0\n222,307,9.5\n222,308,9.0\n222,309,8.5\n222,310,8.0\n222,311,7.5\n222,312,7.0\n222,313,6.5\n222,314,6.0\n222,315,5.5\n222,316,5.0\n222,317,4.5\n222,318,4.0\n222,319,3.5\n222,320,3.0\n222,321,2.5\n222,322,2.0\n222,323,2.5\n222,324,3.0\n222,325,13.5\n222,326,13.0\n222,327,12.5\n222,328,12.0\n222,329,11.5\n222,330,11.0\n222,331,10.5\n222,332,10.0\n222,333,9.5\n222,334,9.0\n222,335,8.5\n222,336,8.0\n222,337,7.5\n222,338,7.0\n222,339,6.5\n222,340,6.0\n222,341,5.5\n222,342,5.0\n222,343,4.5\n222,344,4.0\n222,345,3.5\n222,346,3.0\n222,347,2.5\n222,348,3.0\n222,349,3.5\n222,350,14.0\n222,351,13.5\n222,352,13.0\n222,353,12.5\n222,354,12.0\n222,355,11.5\n222,356,11.0\n222,357,10.5\n222,358,10.0\n222,359,9.5\n222,360,9.0\n222,361,8.5\n222,362,8.0\n222,363,7.5\n222,364,7.0\n222,365,6.5\n222,366,6.0\n222,367,5.5\n222,368,5.0\n222,369,4.5\n222,370,4.0\n222,371,3.5\n222,372,3.0\n222,373,3.5\n222,374,4.0\n222,375,14.5\n222,376,14.0\n222,377,13.5\n222,378,13.0\n222,379,12.5\n222,380,12.0\n222,381,11.5\n222,382,11.0\n222,383,10.5\n222,384,10.0\n222,385,9.5\n222,386,9.0\n222,387,8.5\n222,388,8.0\n222,389,7.5\n222,390,7.0\n222,391,6.5\n222,392,6.0\n222,393,5.5\n222,394,5.0\n222,395,4.5\n222,396,4.0\n222,397,3.5\n222,398,4.0\n222,399,4.5\n222,400,15.0\n222,401,14.5\n222,402,14.0\n222,403,13.5\n222,404,13.0\n222,405,12.5\n222,406,12.0\n222,407,11.5\n222,408,11.0\n222,409,10.5\n222,410,10.0\n222,411,9.5\n222,412,9.0\n222,413,8.5\n222,414,8.0\n222,415,7.5\n222,416,7.0\n222,417,6.5\n222,418,6.0\n222,419,5.5\n222,420,5.0\n222,421,4.5\n222,422,4.0\n222,423,4.5\n222,424,5.0\n222,425,15.5\n222,426,15.0\n222,427,14.5\n222,428,14.0\n222,429,13.5\n222,430,13.0\n222,431,12.5\n222,432,12.0\n222,433,11.5\n222,434,11.0\n222,435,10.5\n222,436,10.0\n222,437,9.5\n222,438,9.0\n222,439,8.5\n222,440,8.0\n222,441,7.5\n222,442,7.0\n222,443,6.5\n222,444,6.0\n222,445,5.5\n222,446,5.0\n222,447,4.5\n222,448,5.0\n222,449,5.5\n222,450,16.0\n222,451,15.5\n222,452,15.0\n222,453,14.5\n222,454,14.0\n222,455,13.5\n222,456,13.0\n222,457,12.5\n222,458,12.0\n222,459,11.5\n222,460,11.0\n222,461,10.5\n222,462,10.0\n222,463,9.5\n222,464,9.0\n222,465,8.5\n222,466,8.0\n222,467,7.5\n222,468,7.0\n222,469,6.5\n222,470,6.0\n222,471,5.5\n222,472,5.0\n222,473,5.5\n222,474,6.0\n222,475,16.5\n222,476,16.0\n222,477,15.5\n222,478,15.0\n222,479,14.5\n222,480,14.0\n222,481,13.5\n222,482,13.0\n222,483,12.5\n222,484,12.0\n222,485,11.5\n222,486,11.0\n222,487,10.5\n222,488,10.0\n222,489,9.5\n222,490,9.0\n222,491,8.5\n222,492,8.0\n222,493,7.5\n222,494,7.0\n222,495,6.5\n222,496,6.0\n222,497,5.5\n222,498,6.0\n222,499,6.5\n222,500,17.0\n222,501,16.5\n222,502,16.0\n222,503,15.5\n222,504,15.0\n222,505,14.5\n222,506,14.0\n222,507,13.5\n222,508,13.0\n222,509,12.5\n222,510,12.0\n222,511,11.5\n222,512,11.0\n222,513,10.5\n222,514,10.0\n222,515,9.5\n222,516,9.0\n222,517,8.5\n222,518,8.0\n222,519,7.5\n222,520,7.0\n222,521,6.5\n222,522,6.0\n222,523,6.5\n222,524,7.0\n222,525,17.5\n222,526,17.0\n222,527,16.5\n222,528,16.0\n222,529,15.5\n222,530,15.0\n222,531,14.5\n222,532,14.0\n222,533,13.5\n222,534,13.0\n222,535,12.5\n222,536,12.0\n222,537,11.5\n222,538,11.0\n222,539,10.5\n222,540,10.0\n222,541,9.5\n222,542,9.0\n222,543,8.5\n222,544,8.0\n222,545,7.5\n222,546,7.0\n222,547,6.5\n222,548,7.0\n222,549,7.5\n222,550,18.0\n222,551,17.5\n222,552,17.0\n222,553,16.5\n222,554,16.0\n222,555,15.5\n222,556,15.0\n222,557,14.5\n222,558,14.0\n222,559,13.5\n222,560,13.0\n222,561,12.5\n222,562,12.0\n222,563,11.5\n222,564,11.0\n222,565,10.5\n222,566,10.0\n222,567,9.5\n222,568,9.0\n222,569,8.5\n222,570,8.0\n222,571,7.5\n222,572,7.0\n222,573,7.5\n222,574,8.0\n222,575,18.5\n222,576,18.0\n222,577,17.5\n222,578,17.0\n222,579,16.5\n222,580,16.0\n222,581,15.5\n222,582,15.0\n222,583,14.5\n222,584,14.0\n222,585,13.5\n222,586,13.0\n222,587,12.5\n222,588,12.0\n222,589,11.5\n222,590,11.0\n222,591,10.5\n222,592,10.0\n222,593,9.5\n222,594,9.0\n222,595,8.5\n222,596,8.0\n222,597,7.5\n222,598,8.0\n222,599,8.5\n222,600,19.0\n222,601,18.5\n222,602,18.0\n222,603,17.5\n222,604,17.0\n222,605,16.5\n222,606,16.0\n222,607,15.5\n222,608,15.0\n222,609,14.5\n222,610,14.0\n222,611,13.5\n222,612,13.0\n222,613,12.5\n222,614,12.0\n222,615,11.5\n222,616,11.0\n222,617,10.5\n222,618,10.0\n222,619,9.5\n222,620,9.0\n222,621,8.5\n222,622,8.0\n222,623,8.5\n222,624,9.0\n223,0,15.5\n223,1,15.0\n223,2,14.5\n223,3,14.0\n223,4,13.5\n223,5,13.0\n223,6,12.5\n223,7,12.0\n223,8,11.5\n223,9,11.0\n223,10,10.5\n223,11,10.0\n223,12,9.5\n223,13,9.0\n223,14,8.5\n223,15,8.0\n223,16,7.5\n223,17,7.0\n223,18,6.5\n223,19,6.0\n223,20,5.5\n223,21,5.0\n223,22,4.5\n223,23,4.0\n223,24,4.5\n223,25,15.0\n223,26,14.5\n223,27,14.0\n223,28,13.5\n223,29,13.0\n223,30,12.5\n223,31,12.0\n223,32,11.5\n223,33,11.0\n223,34,10.5\n223,35,10.0\n223,36,9.5\n223,37,9.0\n223,38,8.5\n223,39,8.0\n223,40,7.5\n223,41,7.0\n223,42,6.5\n223,43,6.0\n223,44,5.5\n223,45,5.0\n223,46,4.5\n223,47,4.0\n223,48,3.5\n223,49,4.0\n223,50,14.5\n223,51,14.0\n223,52,13.5\n223,53,13.0\n223,54,12.5\n223,55,12.0\n223,56,11.5\n223,57,11.0\n223,58,10.5\n223,59,10.0\n223,60,9.5\n223,61,9.0\n223,62,8.5\n223,63,8.0\n223,64,7.5\n223,65,7.0\n223,66,6.5\n223,67,6.0\n223,68,5.5\n223,69,5.0\n223,70,4.5\n223,71,4.0\n223,72,3.5\n223,73,3.0\n223,74,3.5\n223,75,14.0\n223,76,13.5\n223,77,13.0\n223,78,12.5\n223,79,12.0\n223,80,11.5\n223,81,11.0\n223,82,10.5\n223,83,10.0\n223,84,9.5\n223,85,9.0\n223,86,8.5\n223,87,8.0\n223,88,7.5\n223,89,7.0\n223,90,6.5\n223,91,6.0\n223,92,5.5\n223,93,5.0\n223,94,4.5\n223,95,4.0\n223,96,3.5\n223,97,3.0\n223,98,2.5\n223,99,3.0\n223,100,13.5\n223,101,13.0\n223,102,12.5\n223,103,12.0\n223,104,11.5\n223,105,11.0\n223,106,10.5\n223,107,10.0\n223,108,9.5\n223,109,9.0\n223,110,8.5\n223,111,8.0\n223,112,7.5\n223,113,7.0\n223,114,6.5\n223,115,6.0\n223,116,5.5\n223,117,5.0\n223,118,4.5\n223,119,4.0\n223,120,3.5\n223,121,3.0\n223,122,2.5\n223,123,2.0\n223,124,2.5\n223,125,13.0\n223,126,12.5\n223,127,12.0\n223,128,11.5\n223,129,11.0\n223,130,10.5\n223,131,10.0\n223,132,9.5\n223,133,9.0\n223,134,8.5\n223,135,8.0\n223,136,7.5\n223,137,7.0\n223,138,6.5\n223,139,6.0\n223,140,5.5\n223,141,5.0\n223,142,4.5\n223,143,4.0\n223,144,3.5\n223,145,3.0\n223,146,2.5\n223,147,2.0\n223,148,1.5\n223,149,2.0\n223,150,12.5\n223,151,12.0\n223,152,11.5\n223,153,11.0\n223,154,10.5\n223,155,10.0\n223,156,9.5\n223,157,9.0\n223,158,8.5\n223,159,8.0\n223,160,7.5\n223,161,7.0\n223,162,6.5\n223,163,6.0\n223,164,5.5\n223,165,5.0\n223,166,4.5\n223,167,4.0\n223,168,3.5\n223,169,3.0\n223,170,2.5\n223,171,2.0\n223,172,1.5\n223,173,1.0\n223,174,1.5\n223,175,12.0\n223,176,11.5\n223,177,11.0\n223,178,10.5\n223,179,10.0\n223,180,9.5\n223,181,9.0\n223,182,8.5\n223,183,8.0\n223,184,7.5\n223,185,7.0\n223,186,6.5\n223,187,6.0\n223,188,5.5\n223,189,5.0\n223,190,4.5\n223,191,4.0\n223,192,3.5\n223,193,3.0\n223,194,2.5\n223,195,2.0\n223,196,1.5\n223,197,1.0\n223,198,0.5\n223,199,1.0\n223,200,11.5\n223,201,11.0\n223,202,10.5\n223,203,10.0\n223,204,9.5\n223,205,9.0\n223,206,8.5\n223,207,8.0\n223,208,7.5\n223,209,7.0\n223,210,6.5\n223,211,6.0\n223,212,5.5\n223,213,5.0\n223,214,4.5\n223,215,4.0\n223,216,3.5\n223,217,3.0\n223,218,2.5\n223,219,2.0\n223,220,1.5\n223,221,1.0\n223,222,0.5\n223,223,0\n223,224,0.5\n223,225,12.0\n223,226,11.5\n223,227,11.0\n223,228,10.5\n223,229,10.0\n223,230,9.5\n223,231,9.0\n223,232,8.5\n223,233,8.0\n223,234,7.5\n223,235,7.0\n223,236,6.5\n223,237,6.0\n223,238,5.5\n223,239,5.0\n223,240,4.5\n223,241,4.0\n223,242,3.5\n223,243,3.0\n223,244,2.5\n223,245,2.0\n223,246,1.5\n223,247,1.0\n223,248,0.5\n223,249,1.0\n223,250,12.5\n223,251,12.0\n223,252,11.5\n223,253,11.0\n223,254,10.5\n223,255,10.0\n223,256,9.5\n223,257,9.0\n223,258,8.5\n223,259,8.0\n223,260,7.5\n223,261,7.0\n223,262,6.5\n223,263,6.0\n223,264,5.5\n223,265,5.0\n223,266,4.5\n223,267,4.0\n223,268,3.5\n223,269,3.0\n223,270,2.5\n223,271,2.0\n223,272,1.5\n223,273,1.0\n223,274,1.5\n223,275,13.0\n223,276,12.5\n223,277,12.0\n223,278,11.5\n223,279,11.0\n223,280,10.5\n223,281,10.0\n223,282,9.5\n223,283,9.0\n223,284,8.5\n223,285,8.0\n223,286,7.5\n223,287,7.0\n223,288,6.5\n223,289,6.0\n223,290,5.5\n223,291,5.0\n223,292,4.5\n223,293,4.0\n223,294,3.5\n223,295,3.0\n223,296,2.5\n223,297,2.0\n223,298,1.5\n223,299,2.0\n223,300,13.5\n223,301,13.0\n223,302,12.5\n223,303,12.0\n223,304,11.5\n223,305,11.0\n223,306,10.5\n223,307,10.0\n223,308,9.5\n223,309,9.0\n223,310,8.5\n223,311,8.0\n223,312,7.5\n223,313,7.0\n223,314,6.5\n223,315,6.0\n223,316,5.5\n223,317,5.0\n223,318,4.5\n223,319,4.0\n223,320,3.5\n223,321,3.0\n223,322,2.5\n223,323,2.0\n223,324,2.5\n223,325,14.0\n223,326,13.5\n223,327,13.0\n223,328,12.5\n223,329,12.0\n223,330,11.5\n223,331,11.0\n223,332,10.5\n223,333,10.0\n223,334,9.5\n223,335,9.0\n223,336,8.5\n223,337,8.0\n223,338,7.5\n223,339,7.0\n223,340,6.5\n223,341,6.0\n223,342,5.5\n223,343,5.0\n223,344,4.5\n223,345,4.0\n223,346,3.5\n223,347,3.0\n223,348,2.5\n223,349,3.0\n223,350,14.5\n223,351,14.0\n223,352,13.5\n223,353,13.0\n223,354,12.5\n223,355,12.0\n223,356,11.5\n223,357,11.0\n223,358,10.5\n223,359,10.0\n223,360,9.5\n223,361,9.0\n223,362,8.5\n223,363,8.0\n223,364,7.5\n223,365,7.0\n223,366,6.5\n223,367,6.0\n223,368,5.5\n223,369,5.0\n223,370,4.5\n223,371,4.0\n223,372,3.5\n223,373,3.0\n223,374,3.5\n223,375,15.0\n223,376,14.5\n223,377,14.0\n223,378,13.5\n223,379,13.0\n223,380,12.5\n223,381,12.0\n223,382,11.5\n223,383,11.0\n223,384,10.5\n223,385,10.0\n223,386,9.5\n223,387,9.0\n223,388,8.5\n223,389,8.0\n223,390,7.5\n223,391,7.0\n223,392,6.5\n223,393,6.0\n223,394,5.5\n223,395,5.0\n223,396,4.5\n223,397,4.0\n223,398,3.5\n223,399,4.0\n223,400,15.5\n223,401,15.0\n223,402,14.5\n223,403,14.0\n223,404,13.5\n223,405,13.0\n223,406,12.5\n223,407,12.0\n223,408,11.5\n223,409,11.0\n223,410,10.5\n223,411,10.0\n223,412,9.5\n223,413,9.0\n223,414,8.5\n223,415,8.0\n223,416,7.5\n223,417,7.0\n223,418,6.5\n223,419,6.0\n223,420,5.5\n223,421,5.0\n223,422,4.5\n223,423,4.0\n223,424,4.5\n223,425,16.0\n223,426,15.5\n223,427,15.0\n223,428,14.5\n223,429,14.0\n223,430,13.5\n223,431,13.0\n223,432,12.5\n223,433,12.0\n223,434,11.5\n223,435,11.0\n223,436,10.5\n223,437,10.0\n223,438,9.5\n223,439,9.0\n223,440,8.5\n223,441,8.0\n223,442,7.5\n223,443,7.0\n223,444,6.5\n223,445,6.0\n223,446,5.5\n223,447,5.0\n223,448,4.5\n223,449,5.0\n223,450,16.5\n223,451,16.0\n223,452,15.5\n223,453,15.0\n223,454,14.5\n223,455,14.0\n223,456,13.5\n223,457,13.0\n223,458,12.5\n223,459,12.0\n223,460,11.5\n223,461,11.0\n223,462,10.5\n223,463,10.0\n223,464,9.5\n223,465,9.0\n223,466,8.5\n223,467,8.0\n223,468,7.5\n223,469,7.0\n223,470,6.5\n223,471,6.0\n223,472,5.5\n223,473,5.0\n223,474,5.5\n223,475,17.0\n223,476,16.5\n223,477,16.0\n223,478,15.5\n223,479,15.0\n223,480,14.5\n223,481,14.0\n223,482,13.5\n223,483,13.0\n223,484,12.5\n223,485,12.0\n223,486,11.5\n223,487,11.0\n223,488,10.5\n223,489,10.0\n223,490,9.5\n223,491,9.0\n223,492,8.5\n223,493,8.0\n223,494,7.5\n223,495,7.0\n223,496,6.5\n223,497,6.0\n223,498,5.5\n223,499,6.0\n223,500,17.5\n223,501,17.0\n223,502,16.5\n223,503,16.0\n223,504,15.5\n223,505,15.0\n223,506,14.5\n223,507,14.0\n223,508,13.5\n223,509,13.0\n223,510,12.5\n223,511,12.0\n223,512,11.5\n223,513,11.0\n223,514,10.5\n223,515,10.0\n223,516,9.5\n223,517,9.0\n223,518,8.5\n223,519,8.0\n223,520,7.5\n223,521,7.0\n223,522,6.5\n223,523,6.0\n223,524,6.5\n223,525,18.0\n223,526,17.5\n223,527,17.0\n223,528,16.5\n223,529,16.0\n223,530,15.5\n223,531,15.0\n223,532,14.5\n223,533,14.0\n223,534,13.5\n223,535,13.0\n223,536,12.5\n223,537,12.0\n223,538,11.5\n223,539,11.0\n223,540,10.5\n223,541,10.0\n223,542,9.5\n223,543,9.0\n223,544,8.5\n223,545,8.0\n223,546,7.5\n223,547,7.0\n223,548,6.5\n223,549,7.0\n223,550,18.5\n223,551,18.0\n223,552,17.5\n223,553,17.0\n223,554,16.5\n223,555,16.0\n223,556,15.5\n223,557,15.0\n223,558,14.5\n223,559,14.0\n223,560,13.5\n223,561,13.0\n223,562,12.5\n223,563,12.0\n223,564,11.5\n223,565,11.0\n223,566,10.5\n223,567,10.0\n223,568,9.5\n223,569,9.0\n223,570,8.5\n223,571,8.0\n223,572,7.5\n223,573,7.0\n223,574,7.5\n223,575,19.0\n223,576,18.5\n223,577,18.0\n223,578,17.5\n223,579,17.0\n223,580,16.5\n223,581,16.0\n223,582,15.5\n223,583,15.0\n223,584,14.5\n223,585,14.0\n223,586,13.5\n223,587,13.0\n223,588,12.5\n223,589,12.0\n223,590,11.5\n223,591,11.0\n223,592,10.5\n223,593,10.0\n223,594,9.5\n223,595,9.0\n223,596,8.5\n223,597,8.0\n223,598,7.5\n223,599,8.0\n223,600,19.5\n223,601,19.0\n223,602,18.5\n223,603,18.0\n223,604,17.5\n223,605,17.0\n223,606,16.5\n223,607,16.0\n223,608,15.5\n223,609,15.0\n223,610,14.5\n223,611,14.0\n223,612,13.5\n223,613,13.0\n223,614,12.5\n223,615,12.0\n223,616,11.5\n223,617,11.0\n223,618,10.5\n223,619,10.0\n223,620,9.5\n223,621,9.0\n223,622,8.5\n223,623,8.0\n223,624,8.5\n224,0,16.0\n224,1,15.5\n224,2,15.0\n224,3,14.5\n224,4,14.0\n224,5,13.5\n224,6,13.0\n224,7,12.5\n224,8,12.0\n224,9,11.5\n224,10,11.0\n224,11,10.5\n224,12,10.0\n224,13,9.5\n224,14,9.0\n224,15,8.5\n224,16,8.0\n224,17,7.5\n224,18,7.0\n224,19,6.5\n224,20,6.0\n224,21,5.5\n224,22,5.0\n224,23,4.5\n224,24,4.0\n224,25,15.5\n224,26,15.0\n224,27,14.5\n224,28,14.0\n224,29,13.5\n224,30,13.0\n224,31,12.5\n224,32,12.0\n224,33,11.5\n224,34,11.0\n224,35,10.5\n224,36,10.0\n224,37,9.5\n224,38,9.0\n224,39,8.5\n224,40,8.0\n224,41,7.5\n224,42,7.0\n224,43,6.5\n224,44,6.0\n224,45,5.5\n224,46,5.0\n224,47,4.5\n224,48,4.0\n224,49,3.5\n224,50,15.0\n224,51,14.5\n224,52,14.0\n224,53,13.5\n224,54,13.0\n224,55,12.5\n224,56,12.0\n224,57,11.5\n224,58,11.0\n224,59,10.5\n224,60,10.0\n224,61,9.5\n224,62,9.0\n224,63,8.5\n224,64,8.0\n224,65,7.5\n224,66,7.0\n224,67,6.5\n224,68,6.0\n224,69,5.5\n224,70,5.0\n224,71,4.5\n224,72,4.0\n224,73,3.5\n224,74,3.0\n224,75,14.5\n224,76,14.0\n224,77,13.5\n224,78,13.0\n224,79,12.5\n224,80,12.0\n224,81,11.5\n224,82,11.0\n224,83,10.5\n224,84,10.0\n224,85,9.5\n224,86,9.0\n224,87,8.5\n224,88,8.0\n224,89,7.5\n224,90,7.0\n224,91,6.5\n224,92,6.0\n224,93,5.5\n224,94,5.0\n224,95,4.5\n224,96,4.0\n224,97,3.5\n224,98,3.0\n224,99,2.5\n224,100,14.0\n224,101,13.5\n224,102,13.0\n224,103,12.5\n224,104,12.0\n224,105,11.5\n224,106,11.0\n224,107,10.5\n224,108,10.0\n224,109,9.5\n224,110,9.0\n224,111,8.5\n224,112,8.0\n224,113,7.5\n224,114,7.0\n224,115,6.5\n224,116,6.0\n224,117,5.5\n224,118,5.0\n224,119,4.5\n224,120,4.0\n224,121,3.5\n224,122,3.0\n224,123,2.5\n224,124,2.0\n224,125,13.5\n224,126,13.0\n224,127,12.5\n224,128,12.0\n224,129,11.5\n224,130,11.0\n224,131,10.5\n224,132,10.0\n224,133,9.5\n224,134,9.0\n224,135,8.5\n224,136,8.0\n224,137,7.5\n224,138,7.0\n224,139,6.5\n224,140,6.0\n224,141,5.5\n224,142,5.0\n224,143,4.5\n224,144,4.0\n224,145,3.5\n224,146,3.0\n224,147,2.5\n224,148,2.0\n224,149,1.5\n224,150,13.0\n224,151,12.5\n224,152,12.0\n224,153,11.5\n224,154,11.0\n224,155,10.5\n224,156,10.0\n224,157,9.5\n224,158,9.0\n224,159,8.5\n224,160,8.0\n224,161,7.5\n224,162,7.0\n224,163,6.5\n224,164,6.0\n224,165,5.5\n224,166,5.0\n224,167,4.5\n224,168,4.0\n224,169,3.5\n224,170,3.0\n224,171,2.5\n224,172,2.0\n224,173,1.5\n224,174,1.0\n224,175,12.5\n224,176,12.0\n224,177,11.5\n224,178,11.0\n224,179,10.5\n224,180,10.0\n224,181,9.5\n224,182,9.0\n224,183,8.5\n224,184,8.0\n224,185,7.5\n224,186,7.0\n224,187,6.5\n224,188,6.0\n224,189,5.5\n224,190,5.0\n224,191,4.5\n224,192,4.0\n224,193,3.5\n224,194,3.0\n224,195,2.5\n224,196,2.0\n224,197,1.5\n224,198,1.0\n224,199,0.5\n224,200,12.0\n224,201,11.5\n224,202,11.0\n224,203,10.5\n224,204,10.0\n224,205,9.5\n224,206,9.0\n224,207,8.5\n224,208,8.0\n224,209,7.5\n224,210,7.0\n224,211,6.5\n224,212,6.0\n224,213,5.5\n224,214,5.0\n224,215,4.5\n224,216,4.0\n224,217,3.5\n224,218,3.0\n224,219,2.5\n224,220,2.0\n224,221,1.5\n224,222,1.0\n224,223,0.5\n224,224,0\n224,225,12.5\n224,226,12.0\n224,227,11.5\n224,228,11.0\n224,229,10.5\n224,230,10.0\n224,231,9.5\n224,232,9.0\n224,233,8.5\n224,234,8.0\n224,235,7.5\n224,236,7.0\n224,237,6.5\n224,238,6.0\n224,239,5.5\n224,240,5.0\n224,241,4.5\n224,242,4.0\n224,243,3.5\n224,244,3.0\n224,245,2.5\n224,246,2.0\n224,247,1.5\n224,248,1.0\n224,249,0.5\n224,250,13.0\n224,251,12.5\n224,252,12.0\n224,253,11.5\n224,254,11.0\n224,255,10.5\n224,256,10.0\n224,257,9.5\n224,258,9.0\n224,259,8.5\n224,260,8.0\n224,261,7.5\n224,262,7.0\n224,263,6.5\n224,264,6.0\n224,265,5.5\n224,266,5.0\n224,267,4.5\n224,268,4.0\n224,269,3.5\n224,270,3.0\n224,271,2.5\n224,272,2.0\n224,273,1.5\n224,274,1.0\n224,275,13.5\n224,276,13.0\n224,277,12.5\n224,278,12.0\n224,279,11.5\n224,280,11.0\n224,281,10.5\n224,282,10.0\n224,283,9.5\n224,284,9.0\n224,285,8.5\n224,286,8.0\n224,287,7.5\n224,288,7.0\n224,289,6.5\n224,290,6.0\n224,291,5.5\n224,292,5.0\n224,293,4.5\n224,294,4.0\n224,295,3.5\n224,296,3.0\n224,297,2.5\n224,298,2.0\n224,299,1.5\n224,300,14.0\n224,301,13.5\n224,302,13.0\n224,303,12.5\n224,304,12.0\n224,305,11.5\n224,306,11.0\n224,307,10.5\n224,308,10.0\n224,309,9.5\n224,310,9.0\n224,311,8.5\n224,312,8.0\n224,313,7.5\n224,314,7.0\n224,315,6.5\n224,316,6.0\n224,317,5.5\n224,318,5.0\n224,319,4.5\n224,320,4.0\n224,321,3.5\n224,322,3.0\n224,323,2.5\n224,324,2.0\n224,325,14.5\n224,326,14.0\n224,327,13.5\n224,328,13.0\n224,329,12.5\n224,330,12.0\n224,331,11.5\n224,332,11.0\n224,333,10.5\n224,334,10.0\n224,335,9.5\n224,336,9.0\n224,337,8.5\n224,338,8.0\n224,339,7.5\n224,340,7.0\n224,341,6.5\n224,342,6.0\n224,343,5.5\n224,344,5.0\n224,345,4.5\n224,346,4.0\n224,347,3.5\n224,348,3.0\n224,349,2.5\n224,350,15.0\n224,351,14.5\n224,352,14.0\n224,353,13.5\n224,354,13.0\n224,355,12.5\n224,356,12.0\n224,357,11.5\n224,358,11.0\n224,359,10.5\n224,360,10.0\n224,361,9.5\n224,362,9.0\n224,363,8.5\n224,364,8.0\n224,365,7.5\n224,366,7.0\n224,367,6.5\n224,368,6.0\n224,369,5.5\n224,370,5.0\n224,371,4.5\n224,372,4.0\n224,373,3.5\n224,374,3.0\n224,375,15.5\n224,376,15.0\n224,377,14.5\n224,378,14.0\n224,379,13.5\n224,380,13.0\n224,381,12.5\n224,382,12.0\n224,383,11.5\n224,384,11.0\n224,385,10.5\n224,386,10.0\n224,387,9.5\n224,388,9.0\n224,389,8.5\n224,390,8.0\n224,391,7.5\n224,392,7.0\n224,393,6.5\n224,394,6.0\n224,395,5.5\n224,396,5.0\n224,397,4.5\n224,398,4.0\n224,399,3.5\n224,400,16.0\n224,401,15.5\n224,402,15.0\n224,403,14.5\n224,404,14.0\n224,405,13.5\n224,406,13.0\n224,407,12.5\n224,408,12.0\n224,409,11.5\n224,410,11.0\n224,411,10.5\n224,412,10.0\n224,413,9.5\n224,414,9.0\n224,415,8.5\n224,416,8.0\n224,417,7.5\n224,418,7.0\n224,419,6.5\n224,420,6.0\n224,421,5.5\n224,422,5.0\n224,423,4.5\n224,424,4.0\n224,425,16.5\n224,426,16.0\n224,427,15.5\n224,428,15.0\n224,429,14.5\n224,430,14.0\n224,431,13.5\n224,432,13.0\n224,433,12.5\n224,434,12.0\n224,435,11.5\n224,436,11.0\n224,437,10.5\n224,438,10.0\n224,439,9.5\n224,440,9.0\n224,441,8.5\n224,442,8.0\n224,443,7.5\n224,444,7.0\n224,445,6.5\n224,446,6.0\n224,447,5.5\n224,448,5.0\n224,449,4.5\n224,450,17.0\n224,451,16.5\n224,452,16.0\n224,453,15.5\n224,454,15.0\n224,455,14.5\n224,456,14.0\n224,457,13.5\n224,458,13.0\n224,459,12.5\n224,460,12.0\n224,461,11.5\n224,462,11.0\n224,463,10.5\n224,464,10.0\n224,465,9.5\n224,466,9.0\n224,467,8.5\n224,468,8.0\n224,469,7.5\n224,470,7.0\n224,471,6.5\n224,472,6.0\n224,473,5.5\n224,474,5.0\n224,475,17.5\n224,476,17.0\n224,477,16.5\n224,478,16.0\n224,479,15.5\n224,480,15.0\n224,481,14.5\n224,482,14.0\n224,483,13.5\n224,484,13.0\n224,485,12.5\n224,486,12.0\n224,487,11.5\n224,488,11.0\n224,489,10.5\n224,490,10.0\n224,491,9.5\n224,492,9.0\n224,493,8.5\n224,494,8.0\n224,495,7.5\n224,496,7.0\n224,497,6.5\n224,498,6.0\n224,499,5.5\n224,500,18.0\n224,501,17.5\n224,502,17.0\n224,503,16.5\n224,504,16.0\n224,505,15.5\n224,506,15.0\n224,507,14.5\n224,508,14.0\n224,509,13.5\n224,510,13.0\n224,511,12.5\n224,512,12.0\n224,513,11.5\n224,514,11.0\n224,515,10.5\n224,516,10.0\n224,517,9.5\n224,518,9.0\n224,519,8.5\n224,520,8.0\n224,521,7.5\n224,522,7.0\n224,523,6.5\n224,524,6.0\n224,525,18.5\n224,526,18.0\n224,527,17.5\n224,528,17.0\n224,529,16.5\n224,530,16.0\n224,531,15.5\n224,532,15.0\n224,533,14.5\n224,534,14.0\n224,535,13.5\n224,536,13.0\n224,537,12.5\n224,538,12.0\n224,539,11.5\n224,540,11.0\n224,541,10.5\n224,542,10.0\n224,543,9.5\n224,544,9.0\n224,545,8.5\n224,546,8.0\n224,547,7.5\n224,548,7.0\n224,549,6.5\n224,550,19.0\n224,551,18.5\n224,552,18.0\n224,553,17.5\n224,554,17.0\n224,555,16.5\n224,556,16.0\n224,557,15.5\n224,558,15.0\n224,559,14.5\n224,560,14.0\n224,561,13.5\n224,562,13.0\n224,563,12.5\n224,564,12.0\n224,565,11.5\n224,566,11.0\n224,567,10.5\n224,568,10.0\n224,569,9.5\n224,570,9.0\n224,571,8.5\n224,572,8.0\n224,573,7.5\n224,574,7.0\n224,575,19.5\n224,576,19.0\n224,577,18.5\n224,578,18.0\n224,579,17.5\n224,580,17.0\n224,581,16.5\n224,582,16.0\n224,583,15.5\n224,584,15.0\n224,585,14.5\n224,586,14.0\n224,587,13.5\n224,588,13.0\n224,589,12.5\n224,590,12.0\n224,591,11.5\n224,592,11.0\n224,593,10.5\n224,594,10.0\n224,595,9.5\n224,596,9.0\n224,597,8.5\n224,598,8.0\n224,599,7.5\n224,600,20.0\n224,601,19.5\n224,602,19.0\n224,603,18.5\n224,604,18.0\n224,605,17.5\n224,606,17.0\n224,607,16.5\n224,608,16.0\n224,609,15.5\n224,610,15.0\n224,611,14.5\n224,612,14.0\n224,613,13.5\n224,614,13.0\n224,615,12.5\n224,616,12.0\n224,617,11.5\n224,618,11.0\n224,619,10.5\n224,620,10.0\n224,621,9.5\n224,622,9.0\n224,623,8.5\n224,624,8.0\n225,0,4.5\n225,1,5.0\n225,2,5.5\n225,3,6.0\n225,4,6.5\n225,5,7.0\n225,6,7.5\n225,7,8.0\n225,8,8.5\n225,9,9.0\n225,10,9.5\n225,11,10.0\n225,12,10.5\n225,13,11.0\n225,14,11.5\n225,15,12.0\n225,16,12.5\n225,17,13.0\n225,18,13.5\n225,19,14.0\n225,20,14.5\n225,21,15.0\n225,22,15.5\n225,23,16.0\n225,24,16.5\n225,25,4.0\n225,26,4.5\n225,27,5.0\n225,28,5.5\n225,29,6.0\n225,30,6.5\n225,31,7.0\n225,32,7.5\n225,33,8.0\n225,34,8.5\n225,35,9.0\n225,36,9.5\n225,37,10.0\n225,38,10.5\n225,39,11.0\n225,40,11.5\n225,41,12.0\n225,42,12.5\n225,43,13.0\n225,44,13.5\n225,45,14.0\n225,46,14.5\n225,47,15.0\n225,48,15.5\n225,49,16.0\n225,50,3.5\n225,51,4.0\n225,52,4.5\n225,53,5.0\n225,54,5.5\n225,55,6.0\n225,56,6.5\n225,57,7.0\n225,58,7.5\n225,59,8.0\n225,60,8.5\n225,61,9.0\n225,62,9.5\n225,63,10.0\n225,64,10.5\n225,65,11.0\n225,66,11.5\n225,67,12.0\n225,68,12.5\n225,69,13.0\n225,70,13.5\n225,71,14.0\n225,72,14.5\n225,73,15.0\n225,74,15.5\n225,75,3.0\n225,76,3.5\n225,77,4.0\n225,78,4.5\n225,79,5.0\n225,80,5.5\n225,81,6.0\n225,82,6.5\n225,83,7.0\n225,84,7.5\n225,85,8.0\n225,86,8.5\n225,87,9.0\n225,88,9.5\n225,89,10.0\n225,90,10.5\n225,91,11.0\n225,92,11.5\n225,93,12.0\n225,94,12.5\n225,95,13.0\n225,96,13.5\n225,97,14.0\n225,98,14.5\n225,99,15.0\n225,100,2.5\n225,101,3.0\n225,102,3.5\n225,103,4.0\n225,104,4.5\n225,105,5.0\n225,106,5.5\n225,107,6.0\n225,108,6.5\n225,109,7.0\n225,110,7.5\n225,111,8.0\n225,112,8.5\n225,113,9.0\n225,114,9.5\n225,115,10.0\n225,116,10.5\n225,117,11.0\n225,118,11.5\n225,119,12.0\n225,120,12.5\n225,121,13.0\n225,122,13.5\n225,123,14.0\n225,124,14.5\n225,125,2.0\n225,126,2.5\n225,127,3.0\n225,128,3.5\n225,129,4.0\n225,130,4.5\n225,131,5.0\n225,132,5.5\n225,133,6.0\n225,134,6.5\n225,135,7.0\n225,136,7.5\n225,137,8.0\n225,138,8.5\n225,139,9.0\n225,140,9.5\n225,141,10.0\n225,142,10.5\n225,143,11.0\n225,144,11.5\n225,145,12.0\n225,146,12.5\n225,147,13.0\n225,148,13.5\n225,149,14.0\n225,150,1.5\n225,151,2.0\n225,152,2.5\n225,153,3.0\n225,154,3.5\n225,155,4.0\n225,156,4.5\n225,157,5.0\n225,158,5.5\n225,159,6.0\n225,160,6.5\n225,161,7.0\n225,162,7.5\n225,163,8.0\n225,164,8.5\n225,165,9.0\n225,166,9.5\n225,167,10.0\n225,168,10.5\n225,169,11.0\n225,170,11.5\n225,171,12.0\n225,172,12.5\n225,173,13.0\n225,174,13.5\n225,175,1.0\n225,176,1.5\n225,177,2.0\n225,178,2.5\n225,179,3.0\n225,180,3.5\n225,181,4.0\n225,182,4.5\n225,183,5.0\n225,184,5.5\n225,185,6.0\n225,186,6.5\n225,187,7.0\n225,188,7.5\n225,189,8.0\n225,190,8.5\n225,191,9.0\n225,192,9.5\n225,193,10.0\n225,194,10.5\n225,195,11.0\n225,196,11.5\n225,197,12.0\n225,198,12.5\n225,199,13.0\n225,200,0.5\n225,201,1.0\n225,202,1.5\n225,203,2.0\n225,204,2.5\n225,205,3.0\n225,206,3.5\n225,207,4.0\n225,208,4.5\n225,209,5.0\n225,210,5.5\n225,211,6.0\n225,212,6.5\n225,213,7.0\n225,214,7.5\n225,215,8.0\n225,216,8.5\n225,217,9.0\n225,218,9.5\n225,219,10.0\n225,220,10.5\n225,221,11.0\n225,222,11.5\n225,223,12.0\n225,224,12.5\n225,225,0\n225,226,0.5\n225,227,1.0\n225,228,1.5\n225,229,2.0\n225,230,2.5\n225,231,3.0\n225,232,3.5\n225,233,4.0\n225,234,4.5\n225,235,5.0\n225,236,5.5\n225,237,6.0\n225,238,6.5\n225,239,7.0\n225,240,7.5\n225,241,8.0\n225,242,8.5\n225,243,9.0\n225,244,9.5\n225,245,10.0\n225,246,10.5\n225,247,11.0\n225,248,11.5\n225,249,12.0\n225,250,0.5\n225,251,1.0\n225,252,1.5\n225,253,2.0\n225,254,2.5\n225,255,3.0\n225,256,3.5\n225,257,4.0\n225,258,4.5\n225,259,5.0\n225,260,5.5\n225,261,6.0\n225,262,6.5\n225,263,7.0\n225,264,7.5\n225,265,8.0\n225,266,8.5\n225,267,9.0\n225,268,9.5\n225,269,10.0\n225,270,10.5\n225,271,11.0\n225,272,11.5\n225,273,12.0\n225,274,12.5\n225,275,1.0\n225,276,1.5\n225,277,2.0\n225,278,2.5\n225,279,3.0\n225,280,3.5\n225,281,4.0\n225,282,4.5\n225,283,5.0\n225,284,5.5\n225,285,6.0\n225,286,6.5\n225,287,7.0\n225,288,7.5\n225,289,8.0\n225,290,8.5\n225,291,9.0\n225,292,9.5\n225,293,10.0\n225,294,10.5\n225,295,11.0\n225,296,11.5\n225,297,12.0\n225,298,12.5\n225,299,13.0\n225,300,1.5\n225,301,2.0\n225,302,2.5\n225,303,3.0\n225,304,3.5\n225,305,4.0\n225,306,4.5\n225,307,5.0\n225,308,5.5\n225,309,6.0\n225,310,6.5\n225,311,7.0\n225,312,7.5\n225,313,8.0\n225,314,8.5\n225,315,9.0\n225,316,9.5\n225,317,10.0\n225,318,10.5\n225,319,11.0\n225,320,11.5\n225,321,12.0\n225,322,12.5\n225,323,13.0\n225,324,13.5\n225,325,2.0\n225,326,2.5\n225,327,3.0\n225,328,3.5\n225,329,4.0\n225,330,4.5\n225,331,5.0\n225,332,5.5\n225,333,6.0\n225,334,6.5\n225,335,7.0\n225,336,7.5\n225,337,8.0\n225,338,8.5\n225,339,9.0\n225,340,9.5\n225,341,10.0\n225,342,10.5\n225,343,11.0\n225,344,11.5\n225,345,12.0\n225,346,12.5\n225,347,13.0\n225,348,13.5\n225,349,14.0\n225,350,2.5\n225,351,3.0\n225,352,3.5\n225,353,4.0\n225,354,4.5\n225,355,5.0\n225,356,5.5\n225,357,6.0\n225,358,6.5\n225,359,7.0\n225,360,7.5\n225,361,8.0\n225,362,8.5\n225,363,9.0\n225,364,9.5\n225,365,10.0\n225,366,10.5\n225,367,11.0\n225,368,11.5\n225,369,12.0\n225,370,12.5\n225,371,13.0\n225,372,13.5\n225,373,14.0\n225,374,14.5\n225,375,3.0\n225,376,3.5\n225,377,4.0\n225,378,4.5\n225,379,5.0\n225,380,5.5\n225,381,6.0\n225,382,6.5\n225,383,7.0\n225,384,7.5\n225,385,8.0\n225,386,8.5\n225,387,9.0\n225,388,9.5\n225,389,10.0\n225,390,10.5\n225,391,11.0\n225,392,11.5\n225,393,12.0\n225,394,12.5\n225,395,13.0\n225,396,13.5\n225,397,14.0\n225,398,14.5\n225,399,15.0\n225,400,3.5\n225,401,4.0\n225,402,4.5\n225,403,5.0\n225,404,5.5\n225,405,6.0\n225,406,6.5\n225,407,7.0\n225,408,7.5\n225,409,8.0\n225,410,8.5\n225,411,9.0\n225,412,9.5\n225,413,10.0\n225,414,10.5\n225,415,11.0\n225,416,11.5\n225,417,12.0\n225,418,12.5\n225,419,13.0\n225,420,13.5\n225,421,14.0\n225,422,14.5\n225,423,15.0\n225,424,15.5\n225,425,4.0\n225,426,4.5\n225,427,5.0\n225,428,5.5\n225,429,6.0\n225,430,6.5\n225,431,7.0\n225,432,7.5\n225,433,8.0\n225,434,8.5\n225,435,9.0\n225,436,9.5\n225,437,10.0\n225,438,10.5\n225,439,11.0\n225,440,11.5\n225,441,12.0\n225,442,12.5\n225,443,13.0\n225,444,13.5\n225,445,14.0\n225,446,14.5\n225,447,15.0\n225,448,15.5\n225,449,16.0\n225,450,4.5\n225,451,5.0\n225,452,5.5\n225,453,6.0\n225,454,6.5\n225,455,7.0\n225,456,7.5\n225,457,8.0\n225,458,8.5\n225,459,9.0\n225,460,9.5\n225,461,10.0\n225,462,10.5\n225,463,11.0\n225,464,11.5\n225,465,12.0\n225,466,12.5\n225,467,13.0\n225,468,13.5\n225,469,14.0\n225,470,14.5\n225,471,15.0\n225,472,15.5\n225,473,16.0\n225,474,16.5\n225,475,5.0\n225,476,5.5\n225,477,6.0\n225,478,6.5\n225,479,7.0\n225,480,7.5\n225,481,8.0\n225,482,8.5\n225,483,9.0\n225,484,9.5\n225,485,10.0\n225,486,10.5\n225,487,11.0\n225,488,11.5\n225,489,12.0\n225,490,12.5\n225,491,13.0\n225,492,13.5\n225,493,14.0\n225,494,14.5\n225,495,15.0\n225,496,15.5\n225,497,16.0\n225,498,16.5\n225,499,17.0\n225,500,5.5\n225,501,6.0\n225,502,6.5\n225,503,7.0\n225,504,7.5\n225,505,8.0\n225,506,8.5\n225,507,9.0\n225,508,9.5\n225,509,10.0\n225,510,10.5\n225,511,11.0\n225,512,11.5\n225,513,12.0\n225,514,12.5\n225,515,13.0\n225,516,13.5\n225,517,14.0\n225,518,14.5\n225,519,15.0\n225,520,15.5\n225,521,16.0\n225,522,16.5\n225,523,17.0\n225,524,17.5\n225,525,6.0\n225,526,6.5\n225,527,7.0\n225,528,7.5\n225,529,8.0\n225,530,8.5\n225,531,9.0\n225,532,9.5\n225,533,10.0\n225,534,10.5\n225,535,11.0\n225,536,11.5\n225,537,12.0\n225,538,12.5\n225,539,13.0\n225,540,13.5\n225,541,14.0\n225,542,14.5\n225,543,15.0\n225,544,15.5\n225,545,16.0\n225,546,16.5\n225,547,17.0\n225,548,17.5\n225,549,18.0\n225,550,6.5\n225,551,7.0\n225,552,7.5\n225,553,8.0\n225,554,8.5\n225,555,9.0\n225,556,9.5\n225,557,10.0\n225,558,10.5\n225,559,11.0\n225,560,11.5\n225,561,12.0\n225,562,12.5\n225,563,13.0\n225,564,13.5\n225,565,14.0\n225,566,14.5\n225,567,15.0\n225,568,15.5\n225,569,16.0\n225,570,16.5\n225,571,17.0\n225,572,17.5\n225,573,18.0\n225,574,18.5\n225,575,7.0\n225,576,7.5\n225,577,8.0\n225,578,8.5\n225,579,9.0\n225,580,9.5\n225,581,10.0\n225,582,10.5\n225,583,11.0\n225,584,11.5\n225,585,12.0\n225,586,12.5\n225,587,13.0\n225,588,13.5\n225,589,14.0\n225,590,14.5\n225,591,15.0\n225,592,15.5\n225,593,16.0\n225,594,16.5\n225,595,17.0\n225,596,17.5\n225,597,18.0\n225,598,18.5\n225,599,19.0\n225,600,7.5\n225,601,8.0\n225,602,8.5\n225,603,9.0\n225,604,9.5\n225,605,10.0\n225,606,10.5\n225,607,11.0\n225,608,11.5\n225,609,12.0\n225,610,12.5\n225,611,13.0\n225,612,13.5\n225,613,14.0\n225,614,14.5\n225,615,15.0\n225,616,15.5\n225,617,16.0\n225,618,16.5\n225,619,17.0\n225,620,17.5\n225,621,18.0\n225,622,18.5\n225,623,19.0\n225,624,19.5\n226,0,5.0\n226,1,4.5\n226,2,5.0\n226,3,5.5\n226,4,6.0\n226,5,6.5\n226,6,7.0\n226,7,7.5\n226,8,8.0\n226,9,8.5\n226,10,9.0\n226,11,9.5\n226,12,10.0\n226,13,10.5\n226,14,11.0\n226,15,11.5\n226,16,12.0\n226,17,12.5\n226,18,13.0\n226,19,13.5\n226,20,14.0\n226,21,14.5\n226,22,15.0\n226,23,15.5\n226,24,16.0\n226,25,4.5\n226,26,4.0\n226,27,4.5\n226,28,5.0\n226,29,5.5\n226,30,6.0\n226,31,6.5\n226,32,7.0\n226,33,7.5\n226,34,8.0\n226,35,8.5\n226,36,9.0\n226,37,9.5\n226,38,10.0\n226,39,10.5\n226,40,11.0\n226,41,11.5\n226,42,12.0\n226,43,12.5\n226,44,13.0\n226,45,13.5\n226,46,14.0\n226,47,14.5\n226,48,15.0\n226,49,15.5\n226,50,4.0\n226,51,3.5\n226,52,4.0\n226,53,4.5\n226,54,5.0\n226,55,5.5\n226,56,6.0\n226,57,6.5\n226,58,7.0\n226,59,7.5\n226,60,8.0\n226,61,8.5\n226,62,9.0\n226,63,9.5\n226,64,10.0\n226,65,10.5\n226,66,11.0\n226,67,11.5\n226,68,12.0\n226,69,12.5\n226,70,13.0\n226,71,13.5\n226,72,14.0\n226,73,14.5\n226,74,15.0\n226,75,3.5\n226,76,3.0\n226,77,3.5\n226,78,4.0\n226,79,4.5\n226,80,5.0\n226,81,5.5\n226,82,6.0\n226,83,6.5\n226,84,7.0\n226,85,7.5\n226,86,8.0\n226,87,8.5\n226,88,9.0\n226,89,9.5\n226,90,10.0\n226,91,10.5\n226,92,11.0\n226,93,11.5\n226,94,12.0\n226,95,12.5\n226,96,13.0\n226,97,13.5\n226,98,14.0\n226,99,14.5\n226,100,3.0\n226,101,2.5\n226,102,3.0\n226,103,3.5\n226,104,4.0\n226,105,4.5\n226,106,5.0\n226,107,5.5\n226,108,6.0\n226,109,6.5\n226,110,7.0\n226,111,7.5\n226,112,8.0\n226,113,8.5\n226,114,9.0\n226,115,9.5\n226,116,10.0\n226,117,10.5\n226,118,11.0\n226,119,11.5\n226,120,12.0\n226,121,12.5\n226,122,13.0\n226,123,13.5\n226,124,14.0\n226,125,2.5\n226,126,2.0\n226,127,2.5\n226,128,3.0\n226,129,3.5\n226,130,4.0\n226,131,4.5\n226,132,5.0\n226,133,5.5\n226,134,6.0\n226,135,6.5\n226,136,7.0\n226,137,7.5\n226,138,8.0\n226,139,8.5\n226,140,9.0\n226,141,9.5\n226,142,10.0\n226,143,10.5\n226,144,11.0\n226,145,11.5\n226,146,12.0\n226,147,12.5\n226,148,13.0\n226,149,13.5\n226,150,2.0\n226,151,1.5\n226,152,2.0\n226,153,2.5\n226,154,3.0\n226,155,3.5\n226,156,4.0\n226,157,4.5\n226,158,5.0\n226,159,5.5\n226,160,6.0\n226,161,6.5\n226,162,7.0\n226,163,7.5\n226,164,8.0\n226,165,8.5\n226,166,9.0\n226,167,9.5\n226,168,10.0\n226,169,10.5\n226,170,11.0\n226,171,11.5\n226,172,12.0\n226,173,12.5\n226,174,13.0\n226,175,1.5\n226,176,1.0\n226,177,1.5\n226,178,2.0\n226,179,2.5\n226,180,3.0\n226,181,3.5\n226,182,4.0\n226,183,4.5\n226,184,5.0\n226,185,5.5\n226,186,6.0\n226,187,6.5\n226,188,7.0\n226,189,7.5\n226,190,8.0\n226,191,8.5\n226,192,9.0\n226,193,9.5\n226,194,10.0\n226,195,10.5\n226,196,11.0\n226,197,11.5\n226,198,12.0\n226,199,12.5\n226,200,1.0\n226,201,0.5\n226,202,1.0\n226,203,1.5\n226,204,2.0\n226,205,2.5\n226,206,3.0\n226,207,3.5\n226,208,4.0\n226,209,4.5\n226,210,5.0\n226,211,5.5\n226,212,6.0\n226,213,6.5\n226,214,7.0\n226,215,7.5\n226,216,8.0\n226,217,8.5\n226,218,9.0\n226,219,9.5\n226,220,10.0\n226,221,10.5\n226,222,11.0\n226,223,11.5\n226,224,12.0\n226,225,0.5\n226,226,0\n226,227,0.5\n226,228,1.0\n226,229,1.5\n226,230,2.0\n226,231,2.5\n226,232,3.0\n226,233,3.5\n226,234,4.0\n226,235,4.5\n226,236,5.0\n226,237,5.5\n226,238,6.0\n226,239,6.5\n226,240,7.0\n226,241,7.5\n226,242,8.0\n226,243,8.5\n226,244,9.0\n226,245,9.5\n226,246,10.0\n226,247,10.5\n226,248,11.0\n226,249,11.5\n226,250,1.0\n226,251,0.5\n226,252,1.0\n226,253,1.5\n226,254,2.0\n226,255,2.5\n226,256,3.0\n226,257,3.5\n226,258,4.0\n226,259,4.5\n226,260,5.0\n226,261,5.5\n226,262,6.0\n226,263,6.5\n226,264,7.0\n226,265,7.5\n226,266,8.0\n226,267,8.5\n226,268,9.0\n226,269,9.5\n226,270,10.0\n226,271,10.5\n226,272,11.0\n226,273,11.5\n226,274,12.0\n226,275,1.5\n226,276,1.0\n226,277,1.5\n226,278,2.0\n226,279,2.5\n226,280,3.0\n226,281,3.5\n226,282,4.0\n226,283,4.5\n226,284,5.0\n226,285,5.5\n226,286,6.0\n226,287,6.5\n226,288,7.0\n226,289,7.5\n226,290,8.0\n226,291,8.5\n226,292,9.0\n226,293,9.5\n226,294,10.0\n226,295,10.5\n226,296,11.0\n226,297,11.5\n226,298,12.0\n226,299,12.5\n226,300,2.0\n226,301,1.5\n226,302,2.0\n226,303,2.5\n226,304,3.0\n226,305,3.5\n226,306,4.0\n226,307,4.5\n226,308,5.0\n226,309,5.5\n226,310,6.0\n226,311,6.5\n226,312,7.0\n226,313,7.5\n226,314,8.0\n226,315,8.5\n226,316,9.0\n226,317,9.5\n226,318,10.0\n226,319,10.5\n226,320,11.0\n226,321,11.5\n226,322,12.0\n226,323,12.5\n226,324,13.0\n226,325,2.5\n226,326,2.0\n226,327,2.5\n226,328,3.0\n226,329,3.5\n226,330,4.0\n226,331,4.5\n226,332,5.0\n226,333,5.5\n226,334,6.0\n226,335,6.5\n226,336,7.0\n226,337,7.5\n226,338,8.0\n226,339,8.5\n226,340,9.0\n226,341,9.5\n226,342,10.0\n226,343,10.5\n226,344,11.0\n226,345,11.5\n226,346,12.0\n226,347,12.5\n226,348,13.0\n226,349,13.5\n226,350,3.0\n226,351,2.5\n226,352,3.0\n226,353,3.5\n226,354,4.0\n226,355,4.5\n226,356,5.0\n226,357,5.5\n226,358,6.0\n226,359,6.5\n226,360,7.0\n226,361,7.5\n226,362,8.0\n226,363,8.5\n226,364,9.0\n226,365,9.5\n226,366,10.0\n226,367,10.5\n226,368,11.0\n226,369,11.5\n226,370,12.0\n226,371,12.5\n226,372,13.0\n226,373,13.5\n226,374,14.0\n226,375,3.5\n226,376,3.0\n226,377,3.5\n226,378,4.0\n226,379,4.5\n226,380,5.0\n226,381,5.5\n226,382,6.0\n226,383,6.5\n226,384,7.0\n226,385,7.5\n226,386,8.0\n226,387,8.5\n226,388,9.0\n226,389,9.5\n226,390,10.0\n226,391,10.5\n226,392,11.0\n226,393,11.5\n226,394,12.0\n226,395,12.5\n226,396,13.0\n226,397,13.5\n226,398,14.0\n226,399,14.5\n226,400,4.0\n226,401,3.5\n226,402,4.0\n226,403,4.5\n226,404,5.0\n226,405,5.5\n226,406,6.0\n226,407,6.5\n226,408,7.0\n226,409,7.5\n226,410,8.0\n226,411,8.5\n226,412,9.0\n226,413,9.5\n226,414,10.0\n226,415,10.5\n226,416,11.0\n226,417,11.5\n226,418,12.0\n226,419,12.5\n226,420,13.0\n226,421,13.5\n226,422,14.0\n226,423,14.5\n226,424,15.0\n226,425,4.5\n226,426,4.0\n226,427,4.5\n226,428,5.0\n226,429,5.5\n226,430,6.0\n226,431,6.5\n226,432,7.0\n226,433,7.5\n226,434,8.0\n226,435,8.5\n226,436,9.0\n226,437,9.5\n226,438,10.0\n226,439,10.5\n226,440,11.0\n226,441,11.5\n226,442,12.0\n226,443,12.5\n226,444,13.0\n226,445,13.5\n226,446,14.0\n226,447,14.5\n226,448,15.0\n226,449,15.5\n226,450,5.0\n226,451,4.5\n226,452,5.0\n226,453,5.5\n226,454,6.0\n226,455,6.5\n226,456,7.0\n226,457,7.5\n226,458,8.0\n226,459,8.5\n226,460,9.0\n226,461,9.5\n226,462,10.0\n226,463,10.5\n226,464,11.0\n226,465,11.5\n226,466,12.0\n226,467,12.5\n226,468,13.0\n226,469,13.5\n226,470,14.0\n226,471,14.5\n226,472,15.0\n226,473,15.5\n226,474,16.0\n226,475,5.5\n226,476,5.0\n226,477,5.5\n226,478,6.0\n226,479,6.5\n226,480,7.0\n226,481,7.5\n226,482,8.0\n226,483,8.5\n226,484,9.0\n226,485,9.5\n226,486,10.0\n226,487,10.5\n226,488,11.0\n226,489,11.5\n226,490,12.0\n226,491,12.5\n226,492,13.0\n226,493,13.5\n226,494,14.0\n226,495,14.5\n226,496,15.0\n226,497,15.5\n226,498,16.0\n226,499,16.5\n226,500,6.0\n226,501,5.5\n226,502,6.0\n226,503,6.5\n226,504,7.0\n226,505,7.5\n226,506,8.0\n226,507,8.5\n226,508,9.0\n226,509,9.5\n226,510,10.0\n226,511,10.5\n226,512,11.0\n226,513,11.5\n226,514,12.0\n226,515,12.5\n226,516,13.0\n226,517,13.5\n226,518,14.0\n226,519,14.5\n226,520,15.0\n226,521,15.5\n226,522,16.0\n226,523,16.5\n226,524,17.0\n226,525,6.5\n226,526,6.0\n226,527,6.5\n226,528,7.0\n226,529,7.5\n226,530,8.0\n226,531,8.5\n226,532,9.0\n226,533,9.5\n226,534,10.0\n226,535,10.5\n226,536,11.0\n226,537,11.5\n226,538,12.0\n226,539,12.5\n226,540,13.0\n226,541,13.5\n226,542,14.0\n226,543,14.5\n226,544,15.0\n226,545,15.5\n226,546,16.0\n226,547,16.5\n226,548,17.0\n226,549,17.5\n226,550,7.0\n226,551,6.5\n226,552,7.0\n226,553,7.5\n226,554,8.0\n226,555,8.5\n226,556,9.0\n226,557,9.5\n226,558,10.0\n226,559,10.5\n226,560,11.0\n226,561,11.5\n226,562,12.0\n226,563,12.5\n226,564,13.0\n226,565,13.5\n226,566,14.0\n226,567,14.5\n226,568,15.0\n226,569,15.5\n226,570,16.0\n226,571,16.5\n226,572,17.0\n226,573,17.5\n226,574,18.0\n226,575,7.5\n226,576,7.0\n226,577,7.5\n226,578,8.0\n226,579,8.5\n226,580,9.0\n226,581,9.5\n226,582,10.0\n226,583,10.5\n226,584,11.0\n226,585,11.5\n226,586,12.0\n226,587,12.5\n226,588,13.0\n226,589,13.5\n226,590,14.0\n226,591,14.5\n226,592,15.0\n226,593,15.5\n226,594,16.0\n226,595,16.5\n226,596,17.0\n226,597,17.5\n226,598,18.0\n226,599,18.5\n226,600,8.0\n226,601,7.5\n226,602,8.0\n226,603,8.5\n226,604,9.0\n226,605,9.5\n226,606,10.0\n226,607,10.5\n226,608,11.0\n226,609,11.5\n226,610,12.0\n226,611,12.5\n226,612,13.0\n226,613,13.5\n226,614,14.0\n226,615,14.5\n226,616,15.0\n226,617,15.5\n226,618,16.0\n226,619,16.5\n226,620,17.0\n226,621,17.5\n226,622,18.0\n226,623,18.5\n226,624,19.0\n227,0,5.5\n227,1,5.0\n227,2,4.5\n227,3,5.0\n227,4,5.5\n227,5,6.0\n227,6,6.5\n227,7,7.0\n227,8,7.5\n227,9,8.0\n227,10,8.5\n227,11,9.0\n227,12,9.5\n227,13,10.0\n227,14,10.5\n227,15,11.0\n227,16,11.5\n227,17,12.0\n227,18,12.5\n227,19,13.0\n227,20,13.5\n227,21,14.0\n227,22,14.5\n227,23,15.0\n227,24,15.5\n227,25,5.0\n227,26,4.5\n227,27,4.0\n227,28,4.5\n227,29,5.0\n227,30,5.5\n227,31,6.0\n227,32,6.5\n227,33,7.0\n227,34,7.5\n227,35,8.0\n227,36,8.5\n227,37,9.0\n227,38,9.5\n227,39,10.0\n227,40,10.5\n227,41,11.0\n227,42,11.5\n227,43,12.0\n227,44,12.5\n227,45,13.0\n227,46,13.5\n227,47,14.0\n227,48,14.5\n227,49,15.0\n227,50,4.5\n227,51,4.0\n227,52,3.5\n227,53,4.0\n227,54,4.5\n227,55,5.0\n227,56,5.5\n227,57,6.0\n227,58,6.5\n227,59,7.0\n227,60,7.5\n227,61,8.0\n227,62,8.5\n227,63,9.0\n227,64,9.5\n227,65,10.0\n227,66,10.5\n227,67,11.0\n227,68,11.5\n227,69,12.0\n227,70,12.5\n227,71,13.0\n227,72,13.5\n227,73,14.0\n227,74,14.5\n227,75,4.0\n227,76,3.5\n227,77,3.0\n227,78,3.5\n227,79,4.0\n227,80,4.5\n227,81,5.0\n227,82,5.5\n227,83,6.0\n227,84,6.5\n227,85,7.0\n227,86,7.5\n227,87,8.0\n227,88,8.5\n227,89,9.0\n227,90,9.5\n227,91,10.0\n227,92,10.5\n227,93,11.0\n227,94,11.5\n227,95,12.0\n227,96,12.5\n227,97,13.0\n227,98,13.5\n227,99,14.0\n227,100,3.5\n227,101,3.0\n227,102,2.5\n227,103,3.0\n227,104,3.5\n227,105,4.0\n227,106,4.5\n227,107,5.0\n227,108,5.5\n227,109,6.0\n227,110,6.5\n227,111,7.0\n227,112,7.5\n227,113,8.0\n227,114,8.5\n227,115,9.0\n227,116,9.5\n227,117,10.0\n227,118,10.5\n227,119,11.0\n227,120,11.5\n227,121,12.0\n227,122,12.5\n227,123,13.0\n227,124,13.5\n227,125,3.0\n227,126,2.5\n227,127,2.0\n227,128,2.5\n227,129,3.0\n227,130,3.5\n227,131,4.0\n227,132,4.5\n227,133,5.0\n227,134,5.5\n227,135,6.0\n227,136,6.5\n227,137,7.0\n227,138,7.5\n227,139,8.0\n227,140,8.5\n227,141,9.0\n227,142,9.5\n227,143,10.0\n227,144,10.5\n227,145,11.0\n227,146,11.5\n227,147,12.0\n227,148,12.5\n227,149,13.0\n227,150,2.5\n227,151,2.0\n227,152,1.5\n227,153,2.0\n227,154,2.5\n227,155,3.0\n227,156,3.5\n227,157,4.0\n227,158,4.5\n227,159,5.0\n227,160,5.5\n227,161,6.0\n227,162,6.5\n227,163,7.0\n227,164,7.5\n227,165,8.0\n227,166,8.5\n227,167,9.0\n227,168,9.5\n227,169,10.0\n227,170,10.5\n227,171,11.0\n227,172,11.5\n227,173,12.0\n227,174,12.5\n227,175,2.0\n227,176,1.5\n227,177,1.0\n227,178,1.5\n227,179,2.0\n227,180,2.5\n227,181,3.0\n227,182,3.5\n227,183,4.0\n227,184,4.5\n227,185,5.0\n227,186,5.5\n227,187,6.0\n227,188,6.5\n227,189,7.0\n227,190,7.5\n227,191,8.0\n227,192,8.5\n227,193,9.0\n227,194,9.5\n227,195,10.0\n227,196,10.5\n227,197,11.0\n227,198,11.5\n227,199,12.0\n227,200,1.5\n227,201,1.0\n227,202,0.5\n227,203,1.0\n227,204,1.5\n227,205,2.0\n227,206,2.5\n227,207,3.0\n227,208,3.5\n227,209,4.0\n227,210,4.5\n227,211,5.0\n227,212,5.5\n227,213,6.0\n227,214,6.5\n227,215,7.0\n227,216,7.5\n227,217,8.0\n227,218,8.5\n227,219,9.0\n227,220,9.5\n227,221,10.0\n227,222,10.5\n227,223,11.0\n227,224,11.5\n227,225,1.0\n227,226,0.5\n227,227,0\n227,228,0.5\n227,229,1.0\n227,230,1.5\n227,231,2.0\n227,232,2.5\n227,233,3.0\n227,234,3.5\n227,235,4.0\n227,236,4.5\n227,237,5.0\n227,238,5.5\n227,239,6.0\n227,240,6.5\n227,241,7.0\n227,242,7.5\n227,243,8.0\n227,244,8.5\n227,245,9.0\n227,246,9.5\n227,247,10.0\n227,248,10.5\n227,249,11.0\n227,250,1.5\n227,251,1.0\n227,252,0.5\n227,253,1.0\n227,254,1.5\n227,255,2.0\n227,256,2.5\n227,257,3.0\n227,258,3.5\n227,259,4.0\n227,260,4.5\n227,261,5.0\n227,262,5.5\n227,263,6.0\n227,264,6.5\n227,265,7.0\n227,266,7.5\n227,267,8.0\n227,268,8.5\n227,269,9.0\n227,270,9.5\n227,271,10.0\n227,272,10.5\n227,273,11.0\n227,274,11.5\n227,275,2.0\n227,276,1.5\n227,277,1.0\n227,278,1.5\n227,279,2.0\n227,280,2.5\n227,281,3.0\n227,282,3.5\n227,283,4.0\n227,284,4.5\n227,285,5.0\n227,286,5.5\n227,287,6.0\n227,288,6.5\n227,289,7.0\n227,290,7.5\n227,291,8.0\n227,292,8.5\n227,293,9.0\n227,294,9.5\n227,295,10.0\n227,296,10.5\n227,297,11.0\n227,298,11.5\n227,299,12.0\n227,300,2.5\n227,301,2.0\n227,302,1.5\n227,303,2.0\n227,304,2.5\n227,305,3.0\n227,306,3.5\n227,307,4.0\n227,308,4.5\n227,309,5.0\n227,310,5.5\n227,311,6.0\n227,312,6.5\n227,313,7.0\n227,314,7.5\n227,315,8.0\n227,316,8.5\n227,317,9.0\n227,318,9.5\n227,319,10.0\n227,320,10.5\n227,321,11.0\n227,322,11.5\n227,323,12.0\n227,324,12.5\n227,325,3.0\n227,326,2.5\n227,327,2.0\n227,328,2.5\n227,329,3.0\n227,330,3.5\n227,331,4.0\n227,332,4.5\n227,333,5.0\n227,334,5.5\n227,335,6.0\n227,336,6.5\n227,337,7.0\n227,338,7.5\n227,339,8.0\n227,340,8.5\n227,341,9.0\n227,342,9.5\n227,343,10.0\n227,344,10.5\n227,345,11.0\n227,346,11.5\n227,347,12.0\n227,348,12.5\n227,349,13.0\n227,350,3.5\n227,351,3.0\n227,352,2.5\n227,353,3.0\n227,354,3.5\n227,355,4.0\n227,356,4.5\n227,357,5.0\n227,358,5.5\n227,359,6.0\n227,360,6.5\n227,361,7.0\n227,362,7.5\n227,363,8.0\n227,364,8.5\n227,365,9.0\n227,366,9.5\n227,367,10.0\n227,368,10.5\n227,369,11.0\n227,370,11.5\n227,371,12.0\n227,372,12.5\n227,373,13.0\n227,374,13.5\n227,375,4.0\n227,376,3.5\n227,377,3.0\n227,378,3.5\n227,379,4.0\n227,380,4.5\n227,381,5.0\n227,382,5.5\n227,383,6.0\n227,384,6.5\n227,385,7.0\n227,386,7.5\n227,387,8.0\n227,388,8.5\n227,389,9.0\n227,390,9.5\n227,391,10.0\n227,392,10.5\n227,393,11.0\n227,394,11.5\n227,395,12.0\n227,396,12.5\n227,397,13.0\n227,398,13.5\n227,399,14.0\n227,400,4.5\n227,401,4.0\n227,402,3.5\n227,403,4.0\n227,404,4.5\n227,405,5.0\n227,406,5.5\n227,407,6.0\n227,408,6.5\n227,409,7.0\n227,410,7.5\n227,411,8.0\n227,412,8.5\n227,413,9.0\n227,414,9.5\n227,415,10.0\n227,416,10.5\n227,417,11.0\n227,418,11.5\n227,419,12.0\n227,420,12.5\n227,421,13.0\n227,422,13.5\n227,423,14.0\n227,424,14.5\n227,425,5.0\n227,426,4.5\n227,427,4.0\n227,428,4.5\n227,429,5.0\n227,430,5.5\n227,431,6.0\n227,432,6.5\n227,433,7.0\n227,434,7.5\n227,435,8.0\n227,436,8.5\n227,437,9.0\n227,438,9.5\n227,439,10.0\n227,440,10.5\n227,441,11.0\n227,442,11.5\n227,443,12.0\n227,444,12.5\n227,445,13.0\n227,446,13.5\n227,447,14.0\n227,448,14.5\n227,449,15.0\n227,450,5.5\n227,451,5.0\n227,452,4.5\n227,453,5.0\n227,454,5.5\n227,455,6.0\n227,456,6.5\n227,457,7.0\n227,458,7.5\n227,459,8.0\n227,460,8.5\n227,461,9.0\n227,462,9.5\n227,463,10.0\n227,464,10.5\n227,465,11.0\n227,466,11.5\n227,467,12.0\n227,468,12.5\n227,469,13.0\n227,470,13.5\n227,471,14.0\n227,472,14.5\n227,473,15.0\n227,474,15.5\n227,475,6.0\n227,476,5.5\n227,477,5.0\n227,478,5.5\n227,479,6.0\n227,480,6.5\n227,481,7.0\n227,482,7.5\n227,483,8.0\n227,484,8.5\n227,485,9.0\n227,486,9.5\n227,487,10.0\n227,488,10.5\n227,489,11.0\n227,490,11.5\n227,491,12.0\n227,492,12.5\n227,493,13.0\n227,494,13.5\n227,495,14.0\n227,496,14.5\n227,497,15.0\n227,498,15.5\n227,499,16.0\n227,500,6.5\n227,501,6.0\n227,502,5.5\n227,503,6.0\n227,504,6.5\n227,505,7.0\n227,506,7.5\n227,507,8.0\n227,508,8.5\n227,509,9.0\n227,510,9.5\n227,511,10.0\n227,512,10.5\n227,513,11.0\n227,514,11.5\n227,515,12.0\n227,516,12.5\n227,517,13.0\n227,518,13.5\n227,519,14.0\n227,520,14.5\n227,521,15.0\n227,522,15.5\n227,523,16.0\n227,524,16.5\n227,525,7.0\n227,526,6.5\n227,527,6.0\n227,528,6.5\n227,529,7.0\n227,530,7.5\n227,531,8.0\n227,532,8.5\n227,533,9.0\n227,534,9.5\n227,535,10.0\n227,536,10.5\n227,537,11.0\n227,538,11.5\n227,539,12.0\n227,540,12.5\n227,541,13.0\n227,542,13.5\n227,543,14.0\n227,544,14.5\n227,545,15.0\n227,546,15.5\n227,547,16.0\n227,548,16.5\n227,549,17.0\n227,550,7.5\n227,551,7.0\n227,552,6.5\n227,553,7.0\n227,554,7.5\n227,555,8.0\n227,556,8.5\n227,557,9.0\n227,558,9.5\n227,559,10.0\n227,560,10.5\n227,561,11.0\n227,562,11.5\n227,563,12.0\n227,564,12.5\n227,565,13.0\n227,566,13.5\n227,567,14.0\n227,568,14.5\n227,569,15.0\n227,570,15.5\n227,571,16.0\n227,572,16.5\n227,573,17.0\n227,574,17.5\n227,575,8.0\n227,576,7.5\n227,577,7.0\n227,578,7.5\n227,579,8.0\n227,580,8.5\n227,581,9.0\n227,582,9.5\n227,583,10.0\n227,584,10.5\n227,585,11.0\n227,586,11.5\n227,587,12.0\n227,588,12.5\n227,589,13.0\n227,590,13.5\n227,591,14.0\n227,592,14.5\n227,593,15.0\n227,594,15.5\n227,595,16.0\n227,596,16.5\n227,597,17.0\n227,598,17.5\n227,599,18.0\n227,600,8.5\n227,601,8.0\n227,602,7.5\n227,603,8.0\n227,604,8.5\n227,605,9.0\n227,606,9.5\n227,607,10.0\n227,608,10.5\n227,609,11.0\n227,610,11.5\n227,611,12.0\n227,612,12.5\n227,613,13.0\n227,614,13.5\n227,615,14.0\n227,616,14.5\n227,617,15.0\n227,618,15.5\n227,619,16.0\n227,620,16.5\n227,621,17.0\n227,622,17.5\n227,623,18.0\n227,624,18.5\n228,0,6.0\n228,1,5.5\n228,2,5.0\n228,3,4.5\n228,4,5.0\n228,5,5.5\n228,6,6.0\n228,7,6.5\n228,8,7.0\n228,9,7.5\n228,10,8.0\n228,11,8.5\n228,12,9.0\n228,13,9.5\n228,14,10.0\n228,15,10.5\n228,16,11.0\n228,17,11.5\n228,18,12.0\n228,19,12.5\n228,20,13.0\n228,21,13.5\n228,22,14.0\n228,23,14.5\n228,24,15.0\n228,25,5.5\n228,26,5.0\n228,27,4.5\n228,28,4.0\n228,29,4.5\n228,30,5.0\n228,31,5.5\n228,32,6.0\n228,33,6.5\n228,34,7.0\n228,35,7.5\n228,36,8.0\n228,37,8.5\n228,38,9.0\n228,39,9.5\n228,40,10.0\n228,41,10.5\n228,42,11.0\n228,43,11.5\n228,44,12.0\n228,45,12.5\n228,46,13.0\n228,47,13.5\n228,48,14.0\n228,49,14.5\n228,50,5.0\n228,51,4.5\n228,52,4.0\n228,53,3.5\n228,54,4.0\n228,55,4.5\n228,56,5.0\n228,57,5.5\n228,58,6.0\n228,59,6.5\n228,60,7.0\n228,61,7.5\n228,62,8.0\n228,63,8.5\n228,64,9.0\n228,65,9.5\n228,66,10.0\n228,67,10.5\n228,68,11.0\n228,69,11.5\n228,70,12.0\n228,71,12.5\n228,72,13.0\n228,73,13.5\n228,74,14.0\n228,75,4.5\n228,76,4.0\n228,77,3.5\n228,78,3.0\n228,79,3.5\n228,80,4.0\n228,81,4.5\n228,82,5.0\n228,83,5.5\n228,84,6.0\n228,85,6.5\n228,86,7.0\n228,87,7.5\n228,88,8.0\n228,89,8.5\n228,90,9.0\n228,91,9.5\n228,92,10.0\n228,93,10.5\n228,94,11.0\n228,95,11.5\n228,96,12.0\n228,97,12.5\n228,98,13.0\n228,99,13.5\n228,100,4.0\n228,101,3.5\n228,102,3.0\n228,103,2.5\n228,104,3.0\n228,105,3.5\n228,106,4.0\n228,107,4.5\n228,108,5.0\n228,109,5.5\n228,110,6.0\n228,111,6.5\n228,112,7.0\n228,113,7.5\n228,114,8.0\n228,115,8.5\n228,116,9.0\n228,117,9.5\n228,118,10.0\n228,119,10.5\n228,120,11.0\n228,121,11.5\n228,122,12.0\n228,123,12.5\n228,124,13.0\n228,125,3.5\n228,126,3.0\n228,127,2.5\n228,128,2.0\n228,129,2.5\n228,130,3.0\n228,131,3.5\n228,132,4.0\n228,133,4.5\n228,134,5.0\n228,135,5.5\n228,136,6.0\n228,137,6.5\n228,138,7.0\n228,139,7.5\n228,140,8.0\n228,141,8.5\n228,142,9.0\n228,143,9.5\n228,144,10.0\n228,145,10.5\n228,146,11.0\n228,147,11.5\n228,148,12.0\n228,149,12.5\n228,150,3.0\n228,151,2.5\n228,152,2.0\n228,153,1.5\n228,154,2.0\n228,155,2.5\n228,156,3.0\n228,157,3.5\n228,158,4.0\n228,159,4.5\n228,160,5.0\n228,161,5.5\n228,162,6.0\n228,163,6.5\n228,164,7.0\n228,165,7.5\n228,166,8.0\n228,167,8.5\n228,168,9.0\n228,169,9.5\n228,170,10.0\n228,171,10.5\n228,172,11.0\n228,173,11.5\n228,174,12.0\n228,175,2.5\n228,176,2.0\n228,177,1.5\n228,178,1.0\n228,179,1.5\n228,180,2.0\n228,181,2.5\n228,182,3.0\n228,183,3.5\n228,184,4.0\n228,185,4.5\n228,186,5.0\n228,187,5.5\n228,188,6.0\n228,189,6.5\n228,190,7.0\n228,191,7.5\n228,192,8.0\n228,193,8.5\n228,194,9.0\n228,195,9.5\n228,196,10.0\n228,197,10.5\n228,198,11.0\n228,199,11.5\n228,200,2.0\n228,201,1.5\n228,202,1.0\n228,203,0.5\n228,204,1.0\n228,205,1.5\n228,206,2.0\n228,207,2.5\n228,208,3.0\n228,209,3.5\n228,210,4.0\n228,211,4.5\n228,212,5.0\n228,213,5.5\n228,214,6.0\n228,215,6.5\n228,216,7.0\n228,217,7.5\n228,218,8.0\n228,219,8.5\n228,220,9.0\n228,221,9.5\n228,222,10.0\n228,223,10.5\n228,224,11.0\n228,225,1.5\n228,226,1.0\n228,227,0.5\n228,228,0\n228,229,0.5\n228,230,1.0\n228,231,1.5\n228,232,2.0\n228,233,2.5\n228,234,3.0\n228,235,3.5\n228,236,4.0\n228,237,4.5\n228,238,5.0\n228,239,5.5\n228,240,6.0\n228,241,6.5\n228,242,7.0\n228,243,7.5\n228,244,8.0\n228,245,8.5\n228,246,9.0\n228,247,9.5\n228,248,10.0\n228,249,10.5\n228,250,2.0\n228,251,1.5\n228,252,1.0\n228,253,0.5\n228,254,1.0\n228,255,1.5\n228,256,2.0\n228,257,2.5\n228,258,3.0\n228,259,3.5\n228,260,4.0\n228,261,4.5\n228,262,5.0\n228,263,5.5\n228,264,6.0\n228,265,6.5\n228,266,7.0\n228,267,7.5\n228,268,8.0\n228,269,8.5\n228,270,9.0\n228,271,9.5\n228,272,10.0\n228,273,10.5\n228,274,11.0\n228,275,2.5\n228,276,2.0\n228,277,1.5\n228,278,1.0\n228,279,1.5\n228,280,2.0\n228,281,2.5\n228,282,3.0\n228,283,3.5\n228,284,4.0\n228,285,4.5\n228,286,5.0\n228,287,5.5\n228,288,6.0\n228,289,6.5\n228,290,7.0\n228,291,7.5\n228,292,8.0\n228,293,8.5\n228,294,9.0\n228,295,9.5\n228,296,10.0\n228,297,10.5\n228,298,11.0\n228,299,11.5\n228,300,3.0\n228,301,2.5\n228,302,2.0\n228,303,1.5\n228,304,2.0\n228,305,2.5\n228,306,3.0\n228,307,3.5\n228,308,4.0\n228,309,4.5\n228,310,5.0\n228,311,5.5\n228,312,6.0\n228,313,6.5\n228,314,7.0\n228,315,7.5\n228,316,8.0\n228,317,8.5\n228,318,9.0\n228,319,9.5\n228,320,10.0\n228,321,10.5\n228,322,11.0\n228,323,11.5\n228,324,12.0\n228,325,3.5\n228,326,3.0\n228,327,2.5\n228,328,2.0\n228,329,2.5\n228,330,3.0\n228,331,3.5\n228,332,4.0\n228,333,4.5\n228,334,5.0\n228,335,5.5\n228,336,6.0\n228,337,6.5\n228,338,7.0\n228,339,7.5\n228,340,8.0\n228,341,8.5\n228,342,9.0\n228,343,9.5\n228,344,10.0\n228,345,10.5\n228,346,11.0\n228,347,11.5\n228,348,12.0\n228,349,12.5\n228,350,4.0\n228,351,3.5\n228,352,3.0\n228,353,2.5\n228,354,3.0\n228,355,3.5\n228,356,4.0\n228,357,4.5\n228,358,5.0\n228,359,5.5\n228,360,6.0\n228,361,6.5\n228,362,7.0\n228,363,7.5\n228,364,8.0\n228,365,8.5\n228,366,9.0\n228,367,9.5\n228,368,10.0\n228,369,10.5\n228,370,11.0\n228,371,11.5\n228,372,12.0\n228,373,12.5\n228,374,13.0\n228,375,4.5\n228,376,4.0\n228,377,3.5\n228,378,3.0\n228,379,3.5\n228,380,4.0\n228,381,4.5\n228,382,5.0\n228,383,5.5\n228,384,6.0\n228,385,6.5\n228,386,7.0\n228,387,7.5\n228,388,8.0\n228,389,8.5\n228,390,9.0\n228,391,9.5\n228,392,10.0\n228,393,10.5\n228,394,11.0\n228,395,11.5\n228,396,12.0\n228,397,12.5\n228,398,13.0\n228,399,13.5\n228,400,5.0\n228,401,4.5\n228,402,4.0\n228,403,3.5\n228,404,4.0\n228,405,4.5\n228,406,5.0\n228,407,5.5\n228,408,6.0\n228,409,6.5\n228,410,7.0\n228,411,7.5\n228,412,8.0\n228,413,8.5\n228,414,9.0\n228,415,9.5\n228,416,10.0\n228,417,10.5\n228,418,11.0\n228,419,11.5\n228,420,12.0\n228,421,12.5\n228,422,13.0\n228,423,13.5\n228,424,14.0\n228,425,5.5\n228,426,5.0\n228,427,4.5\n228,428,4.0\n228,429,4.5\n228,430,5.0\n228,431,5.5\n228,432,6.0\n228,433,6.5\n228,434,7.0\n228,435,7.5\n228,436,8.0\n228,437,8.5\n228,438,9.0\n228,439,9.5\n228,440,10.0\n228,441,10.5\n228,442,11.0\n228,443,11.5\n228,444,12.0\n228,445,12.5\n228,446,13.0\n228,447,13.5\n228,448,14.0\n228,449,14.5\n228,450,6.0\n228,451,5.5\n228,452,5.0\n228,453,4.5\n228,454,5.0\n228,455,5.5\n228,456,6.0\n228,457,6.5\n228,458,7.0\n228,459,7.5\n228,460,8.0\n228,461,8.5\n228,462,9.0\n228,463,9.5\n228,464,10.0\n228,465,10.5\n228,466,11.0\n228,467,11.5\n228,468,12.0\n228,469,12.5\n228,470,13.0\n228,471,13.5\n228,472,14.0\n228,473,14.5\n228,474,15.0\n228,475,6.5\n228,476,6.0\n228,477,5.5\n228,478,5.0\n228,479,5.5\n228,480,6.0\n228,481,6.5\n228,482,7.0\n228,483,7.5\n228,484,8.0\n228,485,8.5\n228,486,9.0\n228,487,9.5\n228,488,10.0\n228,489,10.5\n228,490,11.0\n228,491,11.5\n228,492,12.0\n228,493,12.5\n228,494,13.0\n228,495,13.5\n228,496,14.0\n228,497,14.5\n228,498,15.0\n228,499,15.5\n228,500,7.0\n228,501,6.5\n228,502,6.0\n228,503,5.5\n228,504,6.0\n228,505,6.5\n228,506,7.0\n228,507,7.5\n228,508,8.0\n228,509,8.5\n228,510,9.0\n228,511,9.5\n228,512,10.0\n228,513,10.5\n228,514,11.0\n228,515,11.5\n228,516,12.0\n228,517,12.5\n228,518,13.0\n228,519,13.5\n228,520,14.0\n228,521,14.5\n228,522,15.0\n228,523,15.5\n228,524,16.0\n228,525,7.5\n228,526,7.0\n228,527,6.5\n228,528,6.0\n228,529,6.5\n228,530,7.0\n228,531,7.5\n228,532,8.0\n228,533,8.5\n228,534,9.0\n228,535,9.5\n228,536,10.0\n228,537,10.5\n228,538,11.0\n228,539,11.5\n228,540,12.0\n228,541,12.5\n228,542,13.0\n228,543,13.5\n228,544,14.0\n228,545,14.5\n228,546,15.0\n228,547,15.5\n228,548,16.0\n228,549,16.5\n228,550,8.0\n228,551,7.5\n228,552,7.0\n228,553,6.5\n228,554,7.0\n228,555,7.5\n228,556,8.0\n228,557,8.5\n228,558,9.0\n228,559,9.5\n228,560,10.0\n228,561,10.5\n228,562,11.0\n228,563,11.5\n228,564,12.0\n228,565,12.5\n228,566,13.0\n228,567,13.5\n228,568,14.0\n228,569,14.5\n228,570,15.0\n228,571,15.5\n228,572,16.0\n228,573,16.5\n228,574,17.0\n228,575,8.5\n228,576,8.0\n228,577,7.5\n228,578,7.0\n228,579,7.5\n228,580,8.0\n228,581,8.5\n228,582,9.0\n228,583,9.5\n228,584,10.0\n228,585,10.5\n228,586,11.0\n228,587,11.5\n228,588,12.0\n228,589,12.5\n228,590,13.0\n228,591,13.5\n228,592,14.0\n228,593,14.5\n228,594,15.0\n228,595,15.5\n228,596,16.0\n228,597,16.5\n228,598,17.0\n228,599,17.5\n228,600,9.0\n228,601,8.5\n228,602,8.0\n228,603,7.5\n228,604,8.0\n228,605,8.5\n228,606,9.0\n228,607,9.5\n228,608,10.0\n228,609,10.5\n228,610,11.0\n228,611,11.5\n228,612,12.0\n228,613,12.5\n228,614,13.0\n228,615,13.5\n228,616,14.0\n228,617,14.5\n228,618,15.0\n228,619,15.5\n228,620,16.0\n228,621,16.5\n228,622,17.0\n228,623,17.5\n228,624,18.0\n229,0,6.5\n229,1,6.0\n229,2,5.5\n229,3,5.0\n229,4,4.5\n229,5,5.0\n229,6,5.5\n229,7,6.0\n229,8,6.5\n229,9,7.0\n229,10,7.5\n229,11,8.0\n229,12,8.5\n229,13,9.0\n229,14,9.5\n229,15,10.0\n229,16,10.5\n229,17,11.0\n229,18,11.5\n229,19,12.0\n229,20,12.5\n229,21,13.0\n229,22,13.5\n229,23,14.0\n229,24,14.5\n229,25,6.0\n229,26,5.5\n229,27,5.0\n229,28,4.5\n229,29,4.0\n229,30,4.5\n229,31,5.0\n229,32,5.5\n229,33,6.0\n229,34,6.5\n229,35,7.0\n229,36,7.5\n229,37,8.0\n229,38,8.5\n229,39,9.0\n229,40,9.5\n229,41,10.0\n229,42,10.5\n229,43,11.0\n229,44,11.5\n229,45,12.0\n229,46,12.5\n229,47,13.0\n229,48,13.5\n229,49,14.0\n229,50,5.5\n229,51,5.0\n229,52,4.5\n229,53,4.0\n229,54,3.5\n229,55,4.0\n229,56,4.5\n229,57,5.0\n229,58,5.5\n229,59,6.0\n229,60,6.5\n229,61,7.0\n229,62,7.5\n229,63,8.0\n229,64,8.5\n229,65,9.0\n229,66,9.5\n229,67,10.0\n229,68,10.5\n229,69,11.0\n229,70,11.5\n229,71,12.0\n229,72,12.5\n229,73,13.0\n229,74,13.5\n229,75,5.0\n229,76,4.5\n229,77,4.0\n229,78,3.5\n229,79,3.0\n229,80,3.5\n229,81,4.0\n229,82,4.5\n229,83,5.0\n229,84,5.5\n229,85,6.0\n229,86,6.5\n229,87,7.0\n229,88,7.5\n229,89,8.0\n229,90,8.5\n229,91,9.0\n229,92,9.5\n229,93,10.0\n229,94,10.5\n229,95,11.0\n229,96,11.5\n229,97,12.0\n229,98,12.5\n229,99,13.0\n229,100,4.5\n229,101,4.0\n229,102,3.5\n229,103,3.0\n229,104,2.5\n229,105,3.0\n229,106,3.5\n229,107,4.0\n229,108,4.5\n229,109,5.0\n229,110,5.5\n229,111,6.0\n229,112,6.5\n229,113,7.0\n229,114,7.5\n229,115,8.0\n229,116,8.5\n229,117,9.0\n229,118,9.5\n229,119,10.0\n229,120,10.5\n229,121,11.0\n229,122,11.5\n229,123,12.0\n229,124,12.5\n229,125,4.0\n229,126,3.5\n229,127,3.0\n229,128,2.5\n229,129,2.0\n229,130,2.5\n229,131,3.0\n229,132,3.5\n229,133,4.0\n229,134,4.5\n229,135,5.0\n229,136,5.5\n229,137,6.0\n229,138,6.5\n229,139,7.0\n229,140,7.5\n229,141,8.0\n229,142,8.5\n229,143,9.0\n229,144,9.5\n229,145,10.0\n229,146,10.5\n229,147,11.0\n229,148,11.5\n229,149,12.0\n229,150,3.5\n229,151,3.0\n229,152,2.5\n229,153,2.0\n229,154,1.5\n229,155,2.0\n229,156,2.5\n229,157,3.0\n229,158,3.5\n229,159,4.0\n229,160,4.5\n229,161,5.0\n229,162,5.5\n229,163,6.0\n229,164,6.5\n229,165,7.0\n229,166,7.5\n229,167,8.0\n229,168,8.5\n229,169,9.0\n229,170,9.5\n229,171,10.0\n229,172,10.5\n229,173,11.0\n229,174,11.5\n229,175,3.0\n229,176,2.5\n229,177,2.0\n229,178,1.5\n229,179,1.0\n229,180,1.5\n229,181,2.0\n229,182,2.5\n229,183,3.0\n229,184,3.5\n229,185,4.0\n229,186,4.5\n229,187,5.0\n229,188,5.5\n229,189,6.0\n229,190,6.5\n229,191,7.0\n229,192,7.5\n229,193,8.0\n229,194,8.5\n229,195,9.0\n229,196,9.5\n229,197,10.0\n229,198,10.5\n229,199,11.0\n229,200,2.5\n229,201,2.0\n229,202,1.5\n229,203,1.0\n229,204,0.5\n229,205,1.0\n229,206,1.5\n229,207,2.0\n229,208,2.5\n229,209,3.0\n229,210,3.5\n229,211,4.0\n229,212,4.5\n229,213,5.0\n229,214,5.5\n229,215,6.0\n229,216,6.5\n229,217,7.0\n229,218,7.5\n229,219,8.0\n229,220,8.5\n229,221,9.0\n229,222,9.5\n229,223,10.0\n229,224,10.5\n229,225,2.0\n229,226,1.5\n229,227,1.0\n229,228,0.5\n229,229,0\n229,230,0.5\n229,231,1.0\n229,232,1.5\n229,233,2.0\n229,234,2.5\n229,235,3.0\n229,236,3.5\n229,237,4.0\n229,238,4.5\n229,239,5.0\n229,240,5.5\n229,241,6.0\n229,242,6.5\n229,243,7.0\n229,244,7.5\n229,245,8.0\n229,246,8.5\n229,247,9.0\n229,248,9.5\n229,249,10.0\n229,250,2.5\n229,251,2.0\n229,252,1.5\n229,253,1.0\n229,254,0.5\n229,255,1.0\n229,256,1.5\n229,257,2.0\n229,258,2.5\n229,259,3.0\n229,260,3.5\n229,261,4.0\n229,262,4.5\n229,263,5.0\n229,264,5.5\n229,265,6.0\n229,266,6.5\n229,267,7.0\n229,268,7.5\n229,269,8.0\n229,270,8.5\n229,271,9.0\n229,272,9.5\n229,273,10.0\n229,274,10.5\n229,275,3.0\n229,276,2.5\n229,277,2.0\n229,278,1.5\n229,279,1.0\n229,280,1.5\n229,281,2.0\n229,282,2.5\n229,283,3.0\n229,284,3.5\n229,285,4.0\n229,286,4.5\n229,287,5.0\n229,288,5.5\n229,289,6.0\n229,290,6.5\n229,291,7.0\n229,292,7.5\n229,293,8.0\n229,294,8.5\n229,295,9.0\n229,296,9.5\n229,297,10.0\n229,298,10.5\n229,299,11.0\n229,300,3.5\n229,301,3.0\n229,302,2.5\n229,303,2.0\n229,304,1.5\n229,305,2.0\n229,306,2.5\n229,307,3.0\n229,308,3.5\n229,309,4.0\n229,310,4.5\n229,311,5.0\n229,312,5.5\n229,313,6.0\n229,314,6.5\n229,315,7.0\n229,316,7.5\n229,317,8.0\n229,318,8.5\n229,319,9.0\n229,320,9.5\n229,321,10.0\n229,322,10.5\n229,323,11.0\n229,324,11.5\n229,325,4.0\n229,326,3.5\n229,327,3.0\n229,328,2.5\n229,329,2.0\n229,330,2.5\n229,331,3.0\n229,332,3.5\n229,333,4.0\n229,334,4.5\n229,335,5.0\n229,336,5.5\n229,337,6.0\n229,338,6.5\n229,339,7.0\n229,340,7.5\n229,341,8.0\n229,342,8.5\n229,343,9.0\n229,344,9.5\n229,345,10.0\n229,346,10.5\n229,347,11.0\n229,348,11.5\n229,349,12.0\n229,350,4.5\n229,351,4.0\n229,352,3.5\n229,353,3.0\n229,354,2.5\n229,355,3.0\n229,356,3.5\n229,357,4.0\n229,358,4.5\n229,359,5.0\n229,360,5.5\n229,361,6.0\n229,362,6.5\n229,363,7.0\n229,364,7.5\n229,365,8.0\n229,366,8.5\n229,367,9.0\n229,368,9.5\n229,369,10.0\n229,370,10.5\n229,371,11.0\n229,372,11.5\n229,373,12.0\n229,374,12.5\n229,375,5.0\n229,376,4.5\n229,377,4.0\n229,378,3.5\n229,379,3.0\n229,380,3.5\n229,381,4.0\n229,382,4.5\n229,383,5.0\n229,384,5.5\n229,385,6.0\n229,386,6.5\n229,387,7.0\n229,388,7.5\n229,389,8.0\n229,390,8.5\n229,391,9.0\n229,392,9.5\n229,393,10.0\n229,394,10.5\n229,395,11.0\n229,396,11.5\n229,397,12.0\n229,398,12.5\n229,399,13.0\n229,400,5.5\n229,401,5.0\n229,402,4.5\n229,403,4.0\n229,404,3.5\n229,405,4.0\n229,406,4.5\n229,407,5.0\n229,408,5.5\n229,409,6.0\n229,410,6.5\n229,411,7.0\n229,412,7.5\n229,413,8.0\n229,414,8.5\n229,415,9.0\n229,416,9.5\n229,417,10.0\n229,418,10.5\n229,419,11.0\n229,420,11.5\n229,421,12.0\n229,422,12.5\n229,423,13.0\n229,424,13.5\n229,425,6.0\n229,426,5.5\n229,427,5.0\n229,428,4.5\n229,429,4.0\n229,430,4.5\n229,431,5.0\n229,432,5.5\n229,433,6.0\n229,434,6.5\n229,435,7.0\n229,436,7.5\n229,437,8.0\n229,438,8.5\n229,439,9.0\n229,440,9.5\n229,441,10.0\n229,442,10.5\n229,443,11.0\n229,444,11.5\n229,445,12.0\n229,446,12.5\n229,447,13.0\n229,448,13.5\n229,449,14.0\n229,450,6.5\n229,451,6.0\n229,452,5.5\n229,453,5.0\n229,454,4.5\n229,455,5.0\n229,456,5.5\n229,457,6.0\n229,458,6.5\n229,459,7.0\n229,460,7.5\n229,461,8.0\n229,462,8.5\n229,463,9.0\n229,464,9.5\n229,465,10.0\n229,466,10.5\n229,467,11.0\n229,468,11.5\n229,469,12.0\n229,470,12.5\n229,471,13.0\n229,472,13.5\n229,473,14.0\n229,474,14.5\n229,475,7.0\n229,476,6.5\n229,477,6.0\n229,478,5.5\n229,479,5.0\n229,480,5.5\n229,481,6.0\n229,482,6.5\n229,483,7.0\n229,484,7.5\n229,485,8.0\n229,486,8.5\n229,487,9.0\n229,488,9.5\n229,489,10.0\n229,490,10.5\n229,491,11.0\n229,492,11.5\n229,493,12.0\n229,494,12.5\n229,495,13.0\n229,496,13.5\n229,497,14.0\n229,498,14.5\n229,499,15.0\n229,500,7.5\n229,501,7.0\n229,502,6.5\n229,503,6.0\n229,504,5.5\n229,505,6.0\n229,506,6.5\n229,507,7.0\n229,508,7.5\n229,509,8.0\n229,510,8.5\n229,511,9.0\n229,512,9.5\n229,513,10.0\n229,514,10.5\n229,515,11.0\n229,516,11.5\n229,517,12.0\n229,518,12.5\n229,519,13.0\n229,520,13.5\n229,521,14.0\n229,522,14.5\n229,523,15.0\n229,524,15.5\n229,525,8.0\n229,526,7.5\n229,527,7.0\n229,528,6.5\n229,529,6.0\n229,530,6.5\n229,531,7.0\n229,532,7.5\n229,533,8.0\n229,534,8.5\n229,535,9.0\n229,536,9.5\n229,537,10.0\n229,538,10.5\n229,539,11.0\n229,540,11.5\n229,541,12.0\n229,542,12.5\n229,543,13.0\n229,544,13.5\n229,545,14.0\n229,546,14.5\n229,547,15.0\n229,548,15.5\n229,549,16.0\n229,550,8.5\n229,551,8.0\n229,552,7.5\n229,553,7.0\n229,554,6.5\n229,555,7.0\n229,556,7.5\n229,557,8.0\n229,558,8.5\n229,559,9.0\n229,560,9.5\n229,561,10.0\n229,562,10.5\n229,563,11.0\n229,564,11.5\n229,565,12.0\n229,566,12.5\n229,567,13.0\n229,568,13.5\n229,569,14.0\n229,570,14.5\n229,571,15.0\n229,572,15.5\n229,573,16.0\n229,574,16.5\n229,575,9.0\n229,576,8.5\n229,577,8.0\n229,578,7.5\n229,579,7.0\n229,580,7.5\n229,581,8.0\n229,582,8.5\n229,583,9.0\n229,584,9.5\n229,585,10.0\n229,586,10.5\n229,587,11.0\n229,588,11.5\n229,589,12.0\n229,590,12.5\n229,591,13.0\n229,592,13.5\n229,593,14.0\n229,594,14.5\n229,595,15.0\n229,596,15.5\n229,597,16.0\n229,598,16.5\n229,599,17.0\n229,600,9.5\n229,601,9.0\n229,602,8.5\n229,603,8.0\n229,604,7.5\n229,605,8.0\n229,606,8.5\n229,607,9.0\n229,608,9.5\n229,609,10.0\n229,610,10.5\n229,611,11.0\n229,612,11.5\n229,613,12.0\n229,614,12.5\n229,615,13.0\n229,616,13.5\n229,617,14.0\n229,618,14.5\n229,619,15.0\n229,620,15.5\n229,621,16.0\n229,622,16.5\n229,623,17.0\n229,624,17.5\n230,0,7.0\n230,1,6.5\n230,2,6.0\n230,3,5.5\n230,4,5.0\n230,5,4.5\n230,6,5.0\n230,7,5.5\n230,8,6.0\n230,9,6.5\n230,10,7.0\n230,11,7.5\n230,12,8.0\n230,13,8.5\n230,14,9.0\n230,15,9.5\n230,16,10.0\n230,17,10.5\n230,18,11.0\n230,19,11.5\n230,20,12.0\n230,21,12.5\n230,22,13.0\n230,23,13.5\n230,24,14.0\n230,25,6.5\n230,26,6.0\n230,27,5.5\n230,28,5.0\n230,29,4.5\n230,30,4.0\n230,31,4.5\n230,32,5.0\n230,33,5.5\n230,34,6.0\n230,35,6.5\n230,36,7.0\n230,37,7.5\n230,38,8.0\n230,39,8.5\n230,40,9.0\n230,41,9.5\n230,42,10.0\n230,43,10.5\n230,44,11.0\n230,45,11.5\n230,46,12.0\n230,47,12.5\n230,48,13.0\n230,49,13.5\n230,50,6.0\n230,51,5.5\n230,52,5.0\n230,53,4.5\n230,54,4.0\n230,55,3.5\n230,56,4.0\n230,57,4.5\n230,58,5.0\n230,59,5.5\n230,60,6.0\n230,61,6.5\n230,62,7.0\n230,63,7.5\n230,64,8.0\n230,65,8.5\n230,66,9.0\n230,67,9.5\n230,68,10.0\n230,69,10.5\n230,70,11.0\n230,71,11.5\n230,72,12.0\n230,73,12.5\n230,74,13.0\n230,75,5.5\n230,76,5.0\n230,77,4.5\n230,78,4.0\n230,79,3.5\n230,80,3.0\n230,81,3.5\n230,82,4.0\n230,83,4.5\n230,84,5.0\n230,85,5.5\n230,86,6.0\n230,87,6.5\n230,88,7.0\n230,89,7.5\n230,90,8.0\n230,91,8.5\n230,92,9.0\n230,93,9.5\n230,94,10.0\n230,95,10.5\n230,96,11.0\n230,97,11.5\n230,98,12.0\n230,99,12.5\n230,100,5.0\n230,101,4.5\n230,102,4.0\n230,103,3.5\n230,104,3.0\n230,105,2.5\n230,106,3.0\n230,107,3.5\n230,108,4.0\n230,109,4.5\n230,110,5.0\n230,111,5.5\n230,112,6.0\n230,113,6.5\n230,114,7.0\n230,115,7.5\n230,116,8.0\n230,117,8.5\n230,118,9.0\n230,119,9.5\n230,120,10.0\n230,121,10.5\n230,122,11.0\n230,123,11.5\n230,124,12.0\n230,125,4.5\n230,126,4.0\n230,127,3.5\n230,128,3.0\n230,129,2.5\n230,130,2.0\n230,131,2.5\n230,132,3.0\n230,133,3.5\n230,134,4.0\n230,135,4.5\n230,136,5.0\n230,137,5.5\n230,138,6.0\n230,139,6.5\n230,140,7.0\n230,141,7.5\n230,142,8.0\n230,143,8.5\n230,144,9.0\n230,145,9.5\n230,146,10.0\n230,147,10.5\n230,148,11.0\n230,149,11.5\n230,150,4.0\n230,151,3.5\n230,152,3.0\n230,153,2.5\n230,154,2.0\n230,155,1.5\n230,156,2.0\n230,157,2.5\n230,158,3.0\n230,159,3.5\n230,160,4.0\n230,161,4.5\n230,162,5.0\n230,163,5.5\n230,164,6.0\n230,165,6.5\n230,166,7.0\n230,167,7.5\n230,168,8.0\n230,169,8.5\n230,170,9.0\n230,171,9.5\n230,172,10.0\n230,173,10.5\n230,174,11.0\n230,175,3.5\n230,176,3.0\n230,177,2.5\n230,178,2.0\n230,179,1.5\n230,180,1.0\n230,181,1.5\n230,182,2.0\n230,183,2.5\n230,184,3.0\n230,185,3.5\n230,186,4.0\n230,187,4.5\n230,188,5.0\n230,189,5.5\n230,190,6.0\n230,191,6.5\n230,192,7.0\n230,193,7.5\n230,194,8.0\n230,195,8.5\n230,196,9.0\n230,197,9.5\n230,198,10.0\n230,199,10.5\n230,200,3.0\n230,201,2.5\n230,202,2.0\n230,203,1.5\n230,204,1.0\n230,205,0.5\n230,206,1.0\n230,207,1.5\n230,208,2.0\n230,209,2.5\n230,210,3.0\n230,211,3.5\n230,212,4.0\n230,213,4.5\n230,214,5.0\n230,215,5.5\n230,216,6.0\n230,217,6.5\n230,218,7.0\n230,219,7.5\n230,220,8.0\n230,221,8.5\n230,222,9.0\n230,223,9.5\n230,224,10.0\n230,225,2.5\n230,226,2.0\n230,227,1.5\n230,228,1.0\n230,229,0.5\n230,230,0\n230,231,0.5\n230,232,1.0\n230,233,1.5\n230,234,2.0\n230,235,2.5\n230,236,3.0\n230,237,3.5\n230,238,4.0\n230,239,4.5\n230,240,5.0\n230,241,5.5\n230,242,6.0\n230,243,6.5\n230,244,7.0\n230,245,7.5\n230,246,8.0\n230,247,8.5\n230,248,9.0\n230,249,9.5\n230,250,3.0\n230,251,2.5\n230,252,2.0\n230,253,1.5\n230,254,1.0\n230,255,0.5\n230,256,1.0\n230,257,1.5\n230,258,2.0\n230,259,2.5\n230,260,3.0\n230,261,3.5\n230,262,4.0\n230,263,4.5\n230,264,5.0\n230,265,5.5\n230,266,6.0\n230,267,6.5\n230,268,7.0\n230,269,7.5\n230,270,8.0\n230,271,8.5\n230,272,9.0\n230,273,9.5\n230,274,10.0\n230,275,3.5\n230,276,3.0\n230,277,2.5\n230,278,2.0\n230,279,1.5\n230,280,1.0\n230,281,1.5\n230,282,2.0\n230,283,2.5\n230,284,3.0\n230,285,3.5\n230,286,4.0\n230,287,4.5\n230,288,5.0\n230,289,5.5\n230,290,6.0\n230,291,6.5\n230,292,7.0\n230,293,7.5\n230,294,8.0\n230,295,8.5\n230,296,9.0\n230,297,9.5\n230,298,10.0\n230,299,10.5\n230,300,4.0\n230,301,3.5\n230,302,3.0\n230,303,2.5\n230,304,2.0\n230,305,1.5\n230,306,2.0\n230,307,2.5\n230,308,3.0\n230,309,3.5\n230,310,4.0\n230,311,4.5\n230,312,5.0\n230,313,5.5\n230,314,6.0\n230,315,6.5\n230,316,7.0\n230,317,7.5\n230,318,8.0\n230,319,8.5\n230,320,9.0\n230,321,9.5\n230,322,10.0\n230,323,10.5\n230,324,11.0\n230,325,4.5\n230,326,4.0\n230,327,3.5\n230,328,3.0\n230,329,2.5\n230,330,2.0\n230,331,2.5\n230,332,3.0\n230,333,3.5\n230,334,4.0\n230,335,4.5\n230,336,5.0\n230,337,5.5\n230,338,6.0\n230,339,6.5\n230,340,7.0\n230,341,7.5\n230,342,8.0\n230,343,8.5\n230,344,9.0\n230,345,9.5\n230,346,10.0\n230,347,10.5\n230,348,11.0\n230,349,11.5\n230,350,5.0\n230,351,4.5\n230,352,4.0\n230,353,3.5\n230,354,3.0\n230,355,2.5\n230,356,3.0\n230,357,3.5\n230,358,4.0\n230,359,4.5\n230,360,5.0\n230,361,5.5\n230,362,6.0\n230,363,6.5\n230,364,7.0\n230,365,7.5\n230,366,8.0\n230,367,8.5\n230,368,9.0\n230,369,9.5\n230,370,10.0\n230,371,10.5\n230,372,11.0\n230,373,11.5\n230,374,12.0\n230,375,5.5\n230,376,5.0\n230,377,4.5\n230,378,4.0\n230,379,3.5\n230,380,3.0\n230,381,3.5\n230,382,4.0\n230,383,4.5\n230,384,5.0\n230,385,5.5\n230,386,6.0\n230,387,6.5\n230,388,7.0\n230,389,7.5\n230,390,8.0\n230,391,8.5\n230,392,9.0\n230,393,9.5\n230,394,10.0\n230,395,10.5\n230,396,11.0\n230,397,11.5\n230,398,12.0\n230,399,12.5\n230,400,6.0\n230,401,5.5\n230,402,5.0\n230,403,4.5\n230,404,4.0\n230,405,3.5\n230,406,4.0\n230,407,4.5\n230,408,5.0\n230,409,5.5\n230,410,6.0\n230,411,6.5\n230,412,7.0\n230,413,7.5\n230,414,8.0\n230,415,8.5\n230,416,9.0\n230,417,9.5\n230,418,10.0\n230,419,10.5\n230,420,11.0\n230,421,11.5\n230,422,12.0\n230,423,12.5\n230,424,13.0\n230,425,6.5\n230,426,6.0\n230,427,5.5\n230,428,5.0\n230,429,4.5\n230,430,4.0\n230,431,4.5\n230,432,5.0\n230,433,5.5\n230,434,6.0\n230,435,6.5\n230,436,7.0\n230,437,7.5\n230,438,8.0\n230,439,8.5\n230,440,9.0\n230,441,9.5\n230,442,10.0\n230,443,10.5\n230,444,11.0\n230,445,11.5\n230,446,12.0\n230,447,12.5\n230,448,13.0\n230,449,13.5\n230,450,7.0\n230,451,6.5\n230,452,6.0\n230,453,5.5\n230,454,5.0\n230,455,4.5\n230,456,5.0\n230,457,5.5\n230,458,6.0\n230,459,6.5\n230,460,7.0\n230,461,7.5\n230,462,8.0\n230,463,8.5\n230,464,9.0\n230,465,9.5\n230,466,10.0\n230,467,10.5\n230,468,11.0\n230,469,11.5\n230,470,12.0\n230,471,12.5\n230,472,13.0\n230,473,13.5\n230,474,14.0\n230,475,7.5\n230,476,7.0\n230,477,6.5\n230,478,6.0\n230,479,5.5\n230,480,5.0\n230,481,5.5\n230,482,6.0\n230,483,6.5\n230,484,7.0\n230,485,7.5\n230,486,8.0\n230,487,8.5\n230,488,9.0\n230,489,9.5\n230,490,10.0\n230,491,10.5\n230,492,11.0\n230,493,11.5\n230,494,12.0\n230,495,12.5\n230,496,13.0\n230,497,13.5\n230,498,14.0\n230,499,14.5\n230,500,8.0\n230,501,7.5\n230,502,7.0\n230,503,6.5\n230,504,6.0\n230,505,5.5\n230,506,6.0\n230,507,6.5\n230,508,7.0\n230,509,7.5\n230,510,8.0\n230,511,8.5\n230,512,9.0\n230,513,9.5\n230,514,10.0\n230,515,10.5\n230,516,11.0\n230,517,11.5\n230,518,12.0\n230,519,12.5\n230,520,13.0\n230,521,13.5\n230,522,14.0\n230,523,14.5\n230,524,15.0\n230,525,8.5\n230,526,8.0\n230,527,7.5\n230,528,7.0\n230,529,6.5\n230,530,6.0\n230,531,6.5\n230,532,7.0\n230,533,7.5\n230,534,8.0\n230,535,8.5\n230,536,9.0\n230,537,9.5\n230,538,10.0\n230,539,10.5\n230,540,11.0\n230,541,11.5\n230,542,12.0\n230,543,12.5\n230,544,13.0\n230,545,13.5\n230,546,14.0\n230,547,14.5\n230,548,15.0\n230,549,15.5\n230,550,9.0\n230,551,8.5\n230,552,8.0\n230,553,7.5\n230,554,7.0\n230,555,6.5\n230,556,7.0\n230,557,7.5\n230,558,8.0\n230,559,8.5\n230,560,9.0\n230,561,9.5\n230,562,10.0\n230,563,10.5\n230,564,11.0\n230,565,11.5\n230,566,12.0\n230,567,12.5\n230,568,13.0\n230,569,13.5\n230,570,14.0\n230,571,14.5\n230,572,15.0\n230,573,15.5\n230,574,16.0\n230,575,9.5\n230,576,9.0\n230,577,8.5\n230,578,8.0\n230,579,7.5\n230,580,7.0\n230,581,7.5\n230,582,8.0\n230,583,8.5\n230,584,9.0\n230,585,9.5\n230,586,10.0\n230,587,10.5\n230,588,11.0\n230,589,11.5\n230,590,12.0\n230,591,12.5\n230,592,13.0\n230,593,13.5\n230,594,14.0\n230,595,14.5\n230,596,15.0\n230,597,15.5\n230,598,16.0\n230,599,16.5\n230,600,10.0\n230,601,9.5\n230,602,9.0\n230,603,8.5\n230,604,8.0\n230,605,7.5\n230,606,8.0\n230,607,8.5\n230,608,9.0\n230,609,9.5\n230,610,10.0\n230,611,10.5\n230,612,11.0\n230,613,11.5\n230,614,12.0\n230,615,12.5\n230,616,13.0\n230,617,13.5\n230,618,14.0\n230,619,14.5\n230,620,15.0\n230,621,15.5\n230,622,16.0\n230,623,16.5\n230,624,17.0\n231,0,7.5\n231,1,7.0\n231,2,6.5\n231,3,6.0\n231,4,5.5\n231,5,5.0\n231,6,4.5\n231,7,5.0\n231,8,5.5\n231,9,6.0\n231,10,6.5\n231,11,7.0\n231,12,7.5\n231,13,8.0\n231,14,8.5\n231,15,9.0\n231,16,9.5\n231,17,10.0\n231,18,10.5\n231,19,11.0\n231,20,11.5\n231,21,12.0\n231,22,12.5\n231,23,13.0\n231,24,13.5\n231,25,7.0\n231,26,6.5\n231,27,6.0\n231,28,5.5\n231,29,5.0\n231,30,4.5\n231,31,4.0\n231,32,4.5\n231,33,5.0\n231,34,5.5\n231,35,6.0\n231,36,6.5\n231,37,7.0\n231,38,7.5\n231,39,8.0\n231,40,8.5\n231,41,9.0\n231,42,9.5\n231,43,10.0\n231,44,10.5\n231,45,11.0\n231,46,11.5\n231,47,12.0\n231,48,12.5\n231,49,13.0\n231,50,6.5\n231,51,6.0\n231,52,5.5\n231,53,5.0\n231,54,4.5\n231,55,4.0\n231,56,3.5\n231,57,4.0\n231,58,4.5\n231,59,5.0\n231,60,5.5\n231,61,6.0\n231,62,6.5\n231,63,7.0\n231,64,7.5\n231,65,8.0\n231,66,8.5\n231,67,9.0\n231,68,9.5\n231,69,10.0\n231,70,10.5\n231,71,11.0\n231,72,11.5\n231,73,12.0\n231,74,12.5\n231,75,6.0\n231,76,5.5\n231,77,5.0\n231,78,4.5\n231,79,4.0\n231,80,3.5\n231,81,3.0\n231,82,3.5\n231,83,4.0\n231,84,4.5\n231,85,5.0\n231,86,5.5\n231,87,6.0\n231,88,6.5\n231,89,7.0\n231,90,7.5\n231,91,8.0\n231,92,8.5\n231,93,9.0\n231,94,9.5\n231,95,10.0\n231,96,10.5\n231,97,11.0\n231,98,11.5\n231,99,12.0\n231,100,5.5\n231,101,5.0\n231,102,4.5\n231,103,4.0\n231,104,3.5\n231,105,3.0\n231,106,2.5\n231,107,3.0\n231,108,3.5\n231,109,4.0\n231,110,4.5\n231,111,5.0\n231,112,5.5\n231,113,6.0\n231,114,6.5\n231,115,7.0\n231,116,7.5\n231,117,8.0\n231,118,8.5\n231,119,9.0\n231,120,9.5\n231,121,10.0\n231,122,10.5\n231,123,11.0\n231,124,11.5\n231,125,5.0\n231,126,4.5\n231,127,4.0\n231,128,3.5\n231,129,3.0\n231,130,2.5\n231,131,2.0\n231,132,2.5\n231,133,3.0\n231,134,3.5\n231,135,4.0\n231,136,4.5\n231,137,5.0\n231,138,5.5\n231,139,6.0\n231,140,6.5\n231,141,7.0\n231,142,7.5\n231,143,8.0\n231,144,8.5\n231,145,9.0\n231,146,9.5\n231,147,10.0\n231,148,10.5\n231,149,11.0\n231,150,4.5\n231,151,4.0\n231,152,3.5\n231,153,3.0\n231,154,2.5\n231,155,2.0\n231,156,1.5\n231,157,2.0\n231,158,2.5\n231,159,3.0\n231,160,3.5\n231,161,4.0\n231,162,4.5\n231,163,5.0\n231,164,5.5\n231,165,6.0\n231,166,6.5\n231,167,7.0\n231,168,7.5\n231,169,8.0\n231,170,8.5\n231,171,9.0\n231,172,9.5\n231,173,10.0\n231,174,10.5\n231,175,4.0\n231,176,3.5\n231,177,3.0\n231,178,2.5\n231,179,2.0\n231,180,1.5\n231,181,1.0\n231,182,1.5\n231,183,2.0\n231,184,2.5\n231,185,3.0\n231,186,3.5\n231,187,4.0\n231,188,4.5\n231,189,5.0\n231,190,5.5\n231,191,6.0\n231,192,6.5\n231,193,7.0\n231,194,7.5\n231,195,8.0\n231,196,8.5\n231,197,9.0\n231,198,9.5\n231,199,10.0\n231,200,3.5\n231,201,3.0\n231,202,2.5\n231,203,2.0\n231,204,1.5\n231,205,1.0\n231,206,0.5\n231,207,1.0\n231,208,1.5\n231,209,2.0\n231,210,2.5\n231,211,3.0\n231,212,3.5\n231,213,4.0\n231,214,4.5\n231,215,5.0\n231,216,5.5\n231,217,6.0\n231,218,6.5\n231,219,7.0\n231,220,7.5\n231,221,8.0\n231,222,8.5\n231,223,9.0\n231,224,9.5\n231,225,3.0\n231,226,2.5\n231,227,2.0\n231,228,1.5\n231,229,1.0\n231,230,0.5\n231,231,0\n231,232,0.5\n231,233,1.0\n231,234,1.5\n231,235,2.0\n231,236,2.5\n231,237,3.0\n231,238,3.5\n231,239,4.0\n231,240,4.5\n231,241,5.0\n231,242,5.5\n231,243,6.0\n231,244,6.5\n231,245,7.0\n231,246,7.5\n231,247,8.0\n231,248,8.5\n231,249,9.0\n231,250,3.5\n231,251,3.0\n231,252,2.5\n231,253,2.0\n231,254,1.5\n231,255,1.0\n231,256,0.5\n231,257,1.0\n231,258,1.5\n231,259,2.0\n231,260,2.5\n231,261,3.0\n231,262,3.5\n231,263,4.0\n231,264,4.5\n231,265,5.0\n231,266,5.5\n231,267,6.0\n231,268,6.5\n231,269,7.0\n231,270,7.5\n231,271,8.0\n231,272,8.5\n231,273,9.0\n231,274,9.5\n231,275,4.0\n231,276,3.5\n231,277,3.0\n231,278,2.5\n231,279,2.0\n231,280,1.5\n231,281,1.0\n231,282,1.5\n231,283,2.0\n231,284,2.5\n231,285,3.0\n231,286,3.5\n231,287,4.0\n231,288,4.5\n231,289,5.0\n231,290,5.5\n231,291,6.0\n231,292,6.5\n231,293,7.0\n231,294,7.5\n231,295,8.0\n231,296,8.5\n231,297,9.0\n231,298,9.5\n231,299,10.0\n231,300,4.5\n231,301,4.0\n231,302,3.5\n231,303,3.0\n231,304,2.5\n231,305,2.0\n231,306,1.5\n231,307,2.0\n231,308,2.5\n231,309,3.0\n231,310,3.5\n231,311,4.0\n231,312,4.5\n231,313,5.0\n231,314,5.5\n231,315,6.0\n231,316,6.5\n231,317,7.0\n231,318,7.5\n231,319,8.0\n231,320,8.5\n231,321,9.0\n231,322,9.5\n231,323,10.0\n231,324,10.5\n231,325,5.0\n231,326,4.5\n231,327,4.0\n231,328,3.5\n231,329,3.0\n231,330,2.5\n231,331,2.0\n231,332,2.5\n231,333,3.0\n231,334,3.5\n231,335,4.0\n231,336,4.5\n231,337,5.0\n231,338,5.5\n231,339,6.0\n231,340,6.5\n231,341,7.0\n231,342,7.5\n231,343,8.0\n231,344,8.5\n231,345,9.0\n231,346,9.5\n231,347,10.0\n231,348,10.5\n231,349,11.0\n231,350,5.5\n231,351,5.0\n231,352,4.5\n231,353,4.0\n231,354,3.5\n231,355,3.0\n231,356,2.5\n231,357,3.0\n231,358,3.5\n231,359,4.0\n231,360,4.5\n231,361,5.0\n231,362,5.5\n231,363,6.0\n231,364,6.5\n231,365,7.0\n231,366,7.5\n231,367,8.0\n231,368,8.5\n231,369,9.0\n231,370,9.5\n231,371,10.0\n231,372,10.5\n231,373,11.0\n231,374,11.5\n231,375,6.0\n231,376,5.5\n231,377,5.0\n231,378,4.5\n231,379,4.0\n231,380,3.5\n231,381,3.0\n231,382,3.5\n231,383,4.0\n231,384,4.5\n231,385,5.0\n231,386,5.5\n231,387,6.0\n231,388,6.5\n231,389,7.0\n231,390,7.5\n231,391,8.0\n231,392,8.5\n231,393,9.0\n231,394,9.5\n231,395,10.0\n231,396,10.5\n231,397,11.0\n231,398,11.5\n231,399,12.0\n231,400,6.5\n231,401,6.0\n231,402,5.5\n231,403,5.0\n231,404,4.5\n231,405,4.0\n231,406,3.5\n231,407,4.0\n231,408,4.5\n231,409,5.0\n231,410,5.5\n231,411,6.0\n231,412,6.5\n231,413,7.0\n231,414,7.5\n231,415,8.0\n231,416,8.5\n231,417,9.0\n231,418,9.5\n231,419,10.0\n231,420,10.5\n231,421,11.0\n231,422,11.5\n231,423,12.0\n231,424,12.5\n231,425,7.0\n231,426,6.5\n231,427,6.0\n231,428,5.5\n231,429,5.0\n231,430,4.5\n231,431,4.0\n231,432,4.5\n231,433,5.0\n231,434,5.5\n231,435,6.0\n231,436,6.5\n231,437,7.0\n231,438,7.5\n231,439,8.0\n231,440,8.5\n231,441,9.0\n231,442,9.5\n231,443,10.0\n231,444,10.5\n231,445,11.0\n231,446,11.5\n231,447,12.0\n231,448,12.5\n231,449,13.0\n231,450,7.5\n231,451,7.0\n231,452,6.5\n231,453,6.0\n231,454,5.5\n231,455,5.0\n231,456,4.5\n231,457,5.0\n231,458,5.5\n231,459,6.0\n231,460,6.5\n231,461,7.0\n231,462,7.5\n231,463,8.0\n231,464,8.5\n231,465,9.0\n231,466,9.5\n231,467,10.0\n231,468,10.5\n231,469,11.0\n231,470,11.5\n231,471,12.0\n231,472,12.5\n231,473,13.0\n231,474,13.5\n231,475,8.0\n231,476,7.5\n231,477,7.0\n231,478,6.5\n231,479,6.0\n231,480,5.5\n231,481,5.0\n231,482,5.5\n231,483,6.0\n231,484,6.5\n231,485,7.0\n231,486,7.5\n231,487,8.0\n231,488,8.5\n231,489,9.0\n231,490,9.5\n231,491,10.0\n231,492,10.5\n231,493,11.0\n231,494,11.5\n231,495,12.0\n231,496,12.5\n231,497,13.0\n231,498,13.5\n231,499,14.0\n231,500,8.5\n231,501,8.0\n231,502,7.5\n231,503,7.0\n231,504,6.5\n231,505,6.0\n231,506,5.5\n231,507,6.0\n231,508,6.5\n231,509,7.0\n231,510,7.5\n231,511,8.0\n231,512,8.5\n231,513,9.0\n231,514,9.5\n231,515,10.0\n231,516,10.5\n231,517,11.0\n231,518,11.5\n231,519,12.0\n231,520,12.5\n231,521,13.0\n231,522,13.5\n231,523,14.0\n231,524,14.5\n231,525,9.0\n231,526,8.5\n231,527,8.0\n231,528,7.5\n231,529,7.0\n231,530,6.5\n231,531,6.0\n231,532,6.5\n231,533,7.0\n231,534,7.5\n231,535,8.0\n231,536,8.5\n231,537,9.0\n231,538,9.5\n231,539,10.0\n231,540,10.5\n231,541,11.0\n231,542,11.5\n231,543,12.0\n231,544,12.5\n231,545,13.0\n231,546,13.5\n231,547,14.0\n231,548,14.5\n231,549,15.0\n231,550,9.5\n231,551,9.0\n231,552,8.5\n231,553,8.0\n231,554,7.5\n231,555,7.0\n231,556,6.5\n231,557,7.0\n231,558,7.5\n231,559,8.0\n231,560,8.5\n231,561,9.0\n231,562,9.5\n231,563,10.0\n231,564,10.5\n231,565,11.0\n231,566,11.5\n231,567,12.0\n231,568,12.5\n231,569,13.0\n231,570,13.5\n231,571,14.0\n231,572,14.5\n231,573,15.0\n231,574,15.5\n231,575,10.0\n231,576,9.5\n231,577,9.0\n231,578,8.5\n231,579,8.0\n231,580,7.5\n231,581,7.0\n231,582,7.5\n231,583,8.0\n231,584,8.5\n231,585,9.0\n231,586,9.5\n231,587,10.0\n231,588,10.5\n231,589,11.0\n231,590,11.5\n231,591,12.0\n231,592,12.5\n231,593,13.0\n231,594,13.5\n231,595,14.0\n231,596,14.5\n231,597,15.0\n231,598,15.5\n231,599,16.0\n231,600,10.5\n231,601,10.0\n231,602,9.5\n231,603,9.0\n231,604,8.5\n231,605,8.0\n231,606,7.5\n231,607,8.0\n231,608,8.5\n231,609,9.0\n231,610,9.5\n231,611,10.0\n231,612,10.5\n231,613,11.0\n231,614,11.5\n231,615,12.0\n231,616,12.5\n231,617,13.0\n231,618,13.5\n231,619,14.0\n231,620,14.5\n231,621,15.0\n231,622,15.5\n231,623,16.0\n231,624,16.5\n232,0,8.0\n232,1,7.5\n232,2,7.0\n232,3,6.5\n232,4,6.0\n232,5,5.5\n232,6,5.0\n232,7,4.5\n232,8,5.0\n232,9,5.5\n232,10,6.0\n232,11,6.5\n232,12,7.0\n232,13,7.5\n232,14,8.0\n232,15,8.5\n232,16,9.0\n232,17,9.5\n232,18,10.0\n232,19,10.5\n232,20,11.0\n232,21,11.5\n232,22,12.0\n232,23,12.5\n232,24,13.0\n232,25,7.5\n232,26,7.0\n232,27,6.5\n232,28,6.0\n232,29,5.5\n232,30,5.0\n232,31,4.5\n232,32,4.0\n232,33,4.5\n232,34,5.0\n232,35,5.5\n232,36,6.0\n232,37,6.5\n232,38,7.0\n232,39,7.5\n232,40,8.0\n232,41,8.5\n232,42,9.0\n232,43,9.5\n232,44,10.0\n232,45,10.5\n232,46,11.0\n232,47,11.5\n232,48,12.0\n232,49,12.5\n232,50,7.0\n232,51,6.5\n232,52,6.0\n232,53,5.5\n232,54,5.0\n232,55,4.5\n232,56,4.0\n232,57,3.5\n232,58,4.0\n232,59,4.5\n232,60,5.0\n232,61,5.5\n232,62,6.0\n232,63,6.5\n232,64,7.0\n232,65,7.5\n232,66,8.0\n232,67,8.5\n232,68,9.0\n232,69,9.5\n232,70,10.0\n232,71,10.5\n232,72,11.0\n232,73,11.5\n232,74,12.0\n232,75,6.5\n232,76,6.0\n232,77,5.5\n232,78,5.0\n232,79,4.5\n232,80,4.0\n232,81,3.5\n232,82,3.0\n232,83,3.5\n232,84,4.0\n232,85,4.5\n232,86,5.0\n232,87,5.5\n232,88,6.0\n232,89,6.5\n232,90,7.0\n232,91,7.5\n232,92,8.0\n232,93,8.5\n232,94,9.0\n232,95,9.5\n232,96,10.0\n232,97,10.5\n232,98,11.0\n232,99,11.5\n232,100,6.0\n232,101,5.5\n232,102,5.0\n232,103,4.5\n232,104,4.0\n232,105,3.5\n232,106,3.0\n232,107,2.5\n232,108,3.0\n232,109,3.5\n232,110,4.0\n232,111,4.5\n232,112,5.0\n232,113,5.5\n232,114,6.0\n232,115,6.5\n232,116,7.0\n232,117,7.5\n232,118,8.0\n232,119,8.5\n232,120,9.0\n232,121,9.5\n232,122,10.0\n232,123,10.5\n232,124,11.0\n232,125,5.5\n232,126,5.0\n232,127,4.5\n232,128,4.0\n232,129,3.5\n232,130,3.0\n232,131,2.5\n232,132,2.0\n232,133,2.5\n232,134,3.0\n232,135,3.5\n232,136,4.0\n232,137,4.5\n232,138,5.0\n232,139,5.5\n232,140,6.0\n232,141,6.5\n232,142,7.0\n232,143,7.5\n232,144,8.0\n232,145,8.5\n232,146,9.0\n232,147,9.5\n232,148,10.0\n232,149,10.5\n232,150,5.0\n232,151,4.5\n232,152,4.0\n232,153,3.5\n232,154,3.0\n232,155,2.5\n232,156,2.0\n232,157,1.5\n232,158,2.0\n232,159,2.5\n232,160,3.0\n232,161,3.5\n232,162,4.0\n232,163,4.5\n232,164,5.0\n232,165,5.5\n232,166,6.0\n232,167,6.5\n232,168,7.0\n232,169,7.5\n232,170,8.0\n232,171,8.5\n232,172,9.0\n232,173,9.5\n232,174,10.0\n232,175,4.5\n232,176,4.0\n232,177,3.5\n232,178,3.0\n232,179,2.5\n232,180,2.0\n232,181,1.5\n232,182,1.0\n232,183,1.5\n232,184,2.0\n232,185,2.5\n232,186,3.0\n232,187,3.5\n232,188,4.0\n232,189,4.5\n232,190,5.0\n232,191,5.5\n232,192,6.0\n232,193,6.5\n232,194,7.0\n232,195,7.5\n232,196,8.0\n232,197,8.5\n232,198,9.0\n232,199,9.5\n232,200,4.0\n232,201,3.5\n232,202,3.0\n232,203,2.5\n232,204,2.0\n232,205,1.5\n232,206,1.0\n232,207,0.5\n232,208,1.0\n232,209,1.5\n232,210,2.0\n232,211,2.5\n232,212,3.0\n232,213,3.5\n232,214,4.0\n232,215,4.5\n232,216,5.0\n232,217,5.5\n232,218,6.0\n232,219,6.5\n232,220,7.0\n232,221,7.5\n232,222,8.0\n232,223,8.5\n232,224,9.0\n232,225,3.5\n232,226,3.0\n232,227,2.5\n232,228,2.0\n232,229,1.5\n232,230,1.0\n232,231,0.5\n232,232,0\n232,233,0.5\n232,234,1.0\n232,235,1.5\n232,236,2.0\n232,237,2.5\n232,238,3.0\n232,239,3.5\n232,240,4.0\n232,241,4.5\n232,242,5.0\n232,243,5.5\n232,244,6.0\n232,245,6.5\n232,246,7.0\n232,247,7.5\n232,248,8.0\n232,249,8.5\n232,250,4.0\n232,251,3.5\n232,252,3.0\n232,253,2.5\n232,254,2.0\n232,255,1.5\n232,256,1.0\n232,257,0.5\n232,258,1.0\n232,259,1.5\n232,260,2.0\n232,261,2.5\n232,262,3.0\n232,263,3.5\n232,264,4.0\n232,265,4.5\n232,266,5.0\n232,267,5.5\n232,268,6.0\n232,269,6.5\n232,270,7.0\n232,271,7.5\n232,272,8.0\n232,273,8.5\n232,274,9.0\n232,275,4.5\n232,276,4.0\n232,277,3.5\n232,278,3.0\n232,279,2.5\n232,280,2.0\n232,281,1.5\n232,282,1.0\n232,283,1.5\n232,284,2.0\n232,285,2.5\n232,286,3.0\n232,287,3.5\n232,288,4.0\n232,289,4.5\n232,290,5.0\n232,291,5.5\n232,292,6.0\n232,293,6.5\n232,294,7.0\n232,295,7.5\n232,296,8.0\n232,297,8.5\n232,298,9.0\n232,299,9.5\n232,300,5.0\n232,301,4.5\n232,302,4.0\n232,303,3.5\n232,304,3.0\n232,305,2.5\n232,306,2.0\n232,307,1.5\n232,308,2.0\n232,309,2.5\n232,310,3.0\n232,311,3.5\n232,312,4.0\n232,313,4.5\n232,314,5.0\n232,315,5.5\n232,316,6.0\n232,317,6.5\n232,318,7.0\n232,319,7.5\n232,320,8.0\n232,321,8.5\n232,322,9.0\n232,323,9.5\n232,324,10.0\n232,325,5.5\n232,326,5.0\n232,327,4.5\n232,328,4.0\n232,329,3.5\n232,330,3.0\n232,331,2.5\n232,332,2.0\n232,333,2.5\n232,334,3.0\n232,335,3.5\n232,336,4.0\n232,337,4.5\n232,338,5.0\n232,339,5.5\n232,340,6.0\n232,341,6.5\n232,342,7.0\n232,343,7.5\n232,344,8.0\n232,345,8.5\n232,346,9.0\n232,347,9.5\n232,348,10.0\n232,349,10.5\n232,350,6.0\n232,351,5.5\n232,352,5.0\n232,353,4.5\n232,354,4.0\n232,355,3.5\n232,356,3.0\n232,357,2.5\n232,358,3.0\n232,359,3.5\n232,360,4.0\n232,361,4.5\n232,362,5.0\n232,363,5.5\n232,364,6.0\n232,365,6.5\n232,366,7.0\n232,367,7.5\n232,368,8.0\n232,369,8.5\n232,370,9.0\n232,371,9.5\n232,372,10.0\n232,373,10.5\n232,374,11.0\n232,375,6.5\n232,376,6.0\n232,377,5.5\n232,378,5.0\n232,379,4.5\n232,380,4.0\n232,381,3.5\n232,382,3.0\n232,383,3.5\n232,384,4.0\n232,385,4.5\n232,386,5.0\n232,387,5.5\n232,388,6.0\n232,389,6.5\n232,390,7.0\n232,391,7.5\n232,392,8.0\n232,393,8.5\n232,394,9.0\n232,395,9.5\n232,396,10.0\n232,397,10.5\n232,398,11.0\n232,399,11.5\n232,400,7.0\n232,401,6.5\n232,402,6.0\n232,403,5.5\n232,404,5.0\n232,405,4.5\n232,406,4.0\n232,407,3.5\n232,408,4.0\n232,409,4.5\n232,410,5.0\n232,411,5.5\n232,412,6.0\n232,413,6.5\n232,414,7.0\n232,415,7.5\n232,416,8.0\n232,417,8.5\n232,418,9.0\n232,419,9.5\n232,420,10.0\n232,421,10.5\n232,422,11.0\n232,423,11.5\n232,424,12.0\n232,425,7.5\n232,426,7.0\n232,427,6.5\n232,428,6.0\n232,429,5.5\n232,430,5.0\n232,431,4.5\n232,432,4.0\n232,433,4.5\n232,434,5.0\n232,435,5.5\n232,436,6.0\n232,437,6.5\n232,438,7.0\n232,439,7.5\n232,440,8.0\n232,441,8.5\n232,442,9.0\n232,443,9.5\n232,444,10.0\n232,445,10.5\n232,446,11.0\n232,447,11.5\n232,448,12.0\n232,449,12.5\n232,450,8.0\n232,451,7.5\n232,452,7.0\n232,453,6.5\n232,454,6.0\n232,455,5.5\n232,456,5.0\n232,457,4.5\n232,458,5.0\n232,459,5.5\n232,460,6.0\n232,461,6.5\n232,462,7.0\n232,463,7.5\n232,464,8.0\n232,465,8.5\n232,466,9.0\n232,467,9.5\n232,468,10.0\n232,469,10.5\n232,470,11.0\n232,471,11.5\n232,472,12.0\n232,473,12.5\n232,474,13.0\n232,475,8.5\n232,476,8.0\n232,477,7.5\n232,478,7.0\n232,479,6.5\n232,480,6.0\n232,481,5.5\n232,482,5.0\n232,483,5.5\n232,484,6.0\n232,485,6.5\n232,486,7.0\n232,487,7.5\n232,488,8.0\n232,489,8.5\n232,490,9.0\n232,491,9.5\n232,492,10.0\n232,493,10.5\n232,494,11.0\n232,495,11.5\n232,496,12.0\n232,497,12.5\n232,498,13.0\n232,499,13.5\n232,500,9.0\n232,501,8.5\n232,502,8.0\n232,503,7.5\n232,504,7.0\n232,505,6.5\n232,506,6.0\n232,507,5.5\n232,508,6.0\n232,509,6.5\n232,510,7.0\n232,511,7.5\n232,512,8.0\n232,513,8.5\n232,514,9.0\n232,515,9.5\n232,516,10.0\n232,517,10.5\n232,518,11.0\n232,519,11.5\n232,520,12.0\n232,521,12.5\n232,522,13.0\n232,523,13.5\n232,524,14.0\n232,525,9.5\n232,526,9.0\n232,527,8.5\n232,528,8.0\n232,529,7.5\n232,530,7.0\n232,531,6.5\n232,532,6.0\n232,533,6.5\n232,534,7.0\n232,535,7.5\n232,536,8.0\n232,537,8.5\n232,538,9.0\n232,539,9.5\n232,540,10.0\n232,541,10.5\n232,542,11.0\n232,543,11.5\n232,544,12.0\n232,545,12.5\n232,546,13.0\n232,547,13.5\n232,548,14.0\n232,549,14.5\n232,550,10.0\n232,551,9.5\n232,552,9.0\n232,553,8.5\n232,554,8.0\n232,555,7.5\n232,556,7.0\n232,557,6.5\n232,558,7.0\n232,559,7.5\n232,560,8.0\n232,561,8.5\n232,562,9.0\n232,563,9.5\n232,564,10.0\n232,565,10.5\n232,566,11.0\n232,567,11.5\n232,568,12.0\n232,569,12.5\n232,570,13.0\n232,571,13.5\n232,572,14.0\n232,573,14.5\n232,574,15.0\n232,575,10.5\n232,576,10.0\n232,577,9.5\n232,578,9.0\n232,579,8.5\n232,580,8.0\n232,581,7.5\n232,582,7.0\n232,583,7.5\n232,584,8.0\n232,585,8.5\n232,586,9.0\n232,587,9.5\n232,588,10.0\n232,589,10.5\n232,590,11.0\n232,591,11.5\n232,592,12.0\n232,593,12.5\n232,594,13.0\n232,595,13.5\n232,596,14.0\n232,597,14.5\n232,598,15.0\n232,599,15.5\n232,600,11.0\n232,601,10.5\n232,602,10.0\n232,603,9.5\n232,604,9.0\n232,605,8.5\n232,606,8.0\n232,607,7.5\n232,608,8.0\n232,609,8.5\n232,610,9.0\n232,611,9.5\n232,612,10.0\n232,613,10.5\n232,614,11.0\n232,615,11.5\n232,616,12.0\n232,617,12.5\n232,618,13.0\n232,619,13.5\n232,620,14.0\n232,621,14.5\n232,622,15.0\n232,623,15.5\n232,624,16.0\n233,0,8.5\n233,1,8.0\n233,2,7.5\n233,3,7.0\n233,4,6.5\n233,5,6.0\n233,6,5.5\n233,7,5.0\n233,8,4.5\n233,9,5.0\n233,10,5.5\n233,11,6.0\n233,12,6.5\n233,13,7.0\n233,14,7.5\n233,15,8.0\n233,16,8.5\n233,17,9.0\n233,18,9.5\n233,19,10.0\n233,20,10.5\n233,21,11.0\n233,22,11.5\n233,23,12.0\n233,24,12.5\n233,25,8.0\n233,26,7.5\n233,27,7.0\n233,28,6.5\n233,29,6.0\n233,30,5.5\n233,31,5.0\n233,32,4.5\n233,33,4.0\n233,34,4.5\n233,35,5.0\n233,36,5.5\n233,37,6.0\n233,38,6.5\n233,39,7.0\n233,40,7.5\n233,41,8.0\n233,42,8.5\n233,43,9.0\n233,44,9.5\n233,45,10.0\n233,46,10.5\n233,47,11.0\n233,48,11.5\n233,49,12.0\n233,50,7.5\n233,51,7.0\n233,52,6.5\n233,53,6.0\n233,54,5.5\n233,55,5.0\n233,56,4.5\n233,57,4.0\n233,58,3.5\n233,59,4.0\n233,60,4.5\n233,61,5.0\n233,62,5.5\n233,63,6.0\n233,64,6.5\n233,65,7.0\n233,66,7.5\n233,67,8.0\n233,68,8.5\n233,69,9.0\n233,70,9.5\n233,71,10.0\n233,72,10.5\n233,73,11.0\n233,74,11.5\n233,75,7.0\n233,76,6.5\n233,77,6.0\n233,78,5.5\n233,79,5.0\n233,80,4.5\n233,81,4.0\n233,82,3.5\n233,83,3.0\n233,84,3.5\n233,85,4.0\n233,86,4.5\n233,87,5.0\n233,88,5.5\n233,89,6.0\n233,90,6.5\n233,91,7.0\n233,92,7.5\n233,93,8.0\n233,94,8.5\n233,95,9.0\n233,96,9.5\n233,97,10.0\n233,98,10.5\n233,99,11.0\n233,100,6.5\n233,101,6.0\n233,102,5.5\n233,103,5.0\n233,104,4.5\n233,105,4.0\n233,106,3.5\n233,107,3.0\n233,108,2.5\n233,109,3.0\n233,110,3.5\n233,111,4.0\n233,112,4.5\n233,113,5.0\n233,114,5.5\n233,115,6.0\n233,116,6.5\n233,117,7.0\n233,118,7.5\n233,119,8.0\n233,120,8.5\n233,121,9.0\n233,122,9.5\n233,123,10.0\n233,124,10.5\n233,125,6.0\n233,126,5.5\n233,127,5.0\n233,128,4.5\n233,129,4.0\n233,130,3.5\n233,131,3.0\n233,132,2.5\n233,133,2.0\n233,134,2.5\n233,135,3.0\n233,136,3.5\n233,137,4.0\n233,138,4.5\n233,139,5.0\n233,140,5.5\n233,141,6.0\n233,142,6.5\n233,143,7.0\n233,144,7.5\n233,145,8.0\n233,146,8.5\n233,147,9.0\n233,148,9.5\n233,149,10.0\n233,150,5.5\n233,151,5.0\n233,152,4.5\n233,153,4.0\n233,154,3.5\n233,155,3.0\n233,156,2.5\n233,157,2.0\n233,158,1.5\n233,159,2.0\n233,160,2.5\n233,161,3.0\n233,162,3.5\n233,163,4.0\n233,164,4.5\n233,165,5.0\n233,166,5.5\n233,167,6.0\n233,168,6.5\n233,169,7.0\n233,170,7.5\n233,171,8.0\n233,172,8.5\n233,173,9.0\n233,174,9.5\n233,175,5.0\n233,176,4.5\n233,177,4.0\n233,178,3.5\n233,179,3.0\n233,180,2.5\n233,181,2.0\n233,182,1.5\n233,183,1.0\n233,184,1.5\n233,185,2.0\n233,186,2.5\n233,187,3.0\n233,188,3.5\n233,189,4.0\n233,190,4.5\n233,191,5.0\n233,192,5.5\n233,193,6.0\n233,194,6.5\n233,195,7.0\n233,196,7.5\n233,197,8.0\n233,198,8.5\n233,199,9.0\n233,200,4.5\n233,201,4.0\n233,202,3.5\n233,203,3.0\n233,204,2.5\n233,205,2.0\n233,206,1.5\n233,207,1.0\n233,208,0.5\n233,209,1.0\n233,210,1.5\n233,211,2.0\n233,212,2.5\n233,213,3.0\n233,214,3.5\n233,215,4.0\n233,216,4.5\n233,217,5.0\n233,218,5.5\n233,219,6.0\n233,220,6.5\n233,221,7.0\n233,222,7.5\n233,223,8.0\n233,224,8.5\n233,225,4.0\n233,226,3.5\n233,227,3.0\n233,228,2.5\n233,229,2.0\n233,230,1.5\n233,231,1.0\n233,232,0.5\n233,233,0\n233,234,0.5\n233,235,1.0\n233,236,1.5\n233,237,2.0\n233,238,2.5\n233,239,3.0\n233,240,3.5\n233,241,4.0\n233,242,4.5\n233,243,5.0\n233,244,5.5\n233,245,6.0\n233,246,6.5\n233,247,7.0\n233,248,7.5\n233,249,8.0\n233,250,4.5\n233,251,4.0\n233,252,3.5\n233,253,3.0\n233,254,2.5\n233,255,2.0\n233,256,1.5\n233,257,1.0\n233,258,0.5\n233,259,1.0\n233,260,1.5\n233,261,2.0\n233,262,2.5\n233,263,3.0\n233,264,3.5\n233,265,4.0\n233,266,4.5\n233,267,5.0\n233,268,5.5\n233,269,6.0\n233,270,6.5\n233,271,7.0\n233,272,7.5\n233,273,8.0\n233,274,8.5\n233,275,5.0\n233,276,4.5\n233,277,4.0\n233,278,3.5\n233,279,3.0\n233,280,2.5\n233,281,2.0\n233,282,1.5\n233,283,1.0\n233,284,1.5\n233,285,2.0\n233,286,2.5\n233,287,3.0\n233,288,3.5\n233,289,4.0\n233,290,4.5\n233,291,5.0\n233,292,5.5\n233,293,6.0\n233,294,6.5\n233,295,7.0\n233,296,7.5\n233,297,8.0\n233,298,8.5\n233,299,9.0\n233,300,5.5\n233,301,5.0\n233,302,4.5\n233,303,4.0\n233,304,3.5\n233,305,3.0\n233,306,2.5\n233,307,2.0\n233,308,1.5\n233,309,2.0\n233,310,2.5\n233,311,3.0\n233,312,3.5\n233,313,4.0\n233,314,4.5\n233,315,5.0\n233,316,5.5\n233,317,6.0\n233,318,6.5\n233,319,7.0\n233,320,7.5\n233,321,8.0\n233,322,8.5\n233,323,9.0\n233,324,9.5\n233,325,6.0\n233,326,5.5\n233,327,5.0\n233,328,4.5\n233,329,4.0\n233,330,3.5\n233,331,3.0\n233,332,2.5\n233,333,2.0\n233,334,2.5\n233,335,3.0\n233,336,3.5\n233,337,4.0\n233,338,4.5\n233,339,5.0\n233,340,5.5\n233,341,6.0\n233,342,6.5\n233,343,7.0\n233,344,7.5\n233,345,8.0\n233,346,8.5\n233,347,9.0\n233,348,9.5\n233,349,10.0\n233,350,6.5\n233,351,6.0\n233,352,5.5\n233,353,5.0\n233,354,4.5\n233,355,4.0\n233,356,3.5\n233,357,3.0\n233,358,2.5\n233,359,3.0\n233,360,3.5\n233,361,4.0\n233,362,4.5\n233,363,5.0\n233,364,5.5\n233,365,6.0\n233,366,6.5\n233,367,7.0\n233,368,7.5\n233,369,8.0\n233,370,8.5\n233,371,9.0\n233,372,9.5\n233,373,10.0\n233,374,10.5\n233,375,7.0\n233,376,6.5\n233,377,6.0\n233,378,5.5\n233,379,5.0\n233,380,4.5\n233,381,4.0\n233,382,3.5\n233,383,3.0\n233,384,3.5\n233,385,4.0\n233,386,4.5\n233,387,5.0\n233,388,5.5\n233,389,6.0\n233,390,6.5\n233,391,7.0\n233,392,7.5\n233,393,8.0\n233,394,8.5\n233,395,9.0\n233,396,9.5\n233,397,10.0\n233,398,10.5\n233,399,11.0\n233,400,7.5\n233,401,7.0\n233,402,6.5\n233,403,6.0\n233,404,5.5\n233,405,5.0\n233,406,4.5\n233,407,4.0\n233,408,3.5\n233,409,4.0\n233,410,4.5\n233,411,5.0\n233,412,5.5\n233,413,6.0\n233,414,6.5\n233,415,7.0\n233,416,7.5\n233,417,8.0\n233,418,8.5\n233,419,9.0\n233,420,9.5\n233,421,10.0\n233,422,10.5\n233,423,11.0\n233,424,11.5\n233,425,8.0\n233,426,7.5\n233,427,7.0\n233,428,6.5\n233,429,6.0\n233,430,5.5\n233,431,5.0\n233,432,4.5\n233,433,4.0\n233,434,4.5\n233,435,5.0\n233,436,5.5\n233,437,6.0\n233,438,6.5\n233,439,7.0\n233,440,7.5\n233,441,8.0\n233,442,8.5\n233,443,9.0\n233,444,9.5\n233,445,10.0\n233,446,10.5\n233,447,11.0\n233,448,11.5\n233,449,12.0\n233,450,8.5\n233,451,8.0\n233,452,7.5\n233,453,7.0\n233,454,6.5\n233,455,6.0\n233,456,5.5\n233,457,5.0\n233,458,4.5\n233,459,5.0\n233,460,5.5\n233,461,6.0\n233,462,6.5\n233,463,7.0\n233,464,7.5\n233,465,8.0\n233,466,8.5\n233,467,9.0\n233,468,9.5\n233,469,10.0\n233,470,10.5\n233,471,11.0\n233,472,11.5\n233,473,12.0\n233,474,12.5\n233,475,9.0\n233,476,8.5\n233,477,8.0\n233,478,7.5\n233,479,7.0\n233,480,6.5\n233,481,6.0\n233,482,5.5\n233,483,5.0\n233,484,5.5\n233,485,6.0\n233,486,6.5\n233,487,7.0\n233,488,7.5\n233,489,8.0\n233,490,8.5\n233,491,9.0\n233,492,9.5\n233,493,10.0\n233,494,10.5\n233,495,11.0\n233,496,11.5\n233,497,12.0\n233,498,12.5\n233,499,13.0\n233,500,9.5\n233,501,9.0\n233,502,8.5\n233,503,8.0\n233,504,7.5\n233,505,7.0\n233,506,6.5\n233,507,6.0\n233,508,5.5\n233,509,6.0\n233,510,6.5\n233,511,7.0\n233,512,7.5\n233,513,8.0\n233,514,8.5\n233,515,9.0\n233,516,9.5\n233,517,10.0\n233,518,10.5\n233,519,11.0\n233,520,11.5\n233,521,12.0\n233,522,12.5\n233,523,13.0\n233,524,13.5\n233,525,10.0\n233,526,9.5\n233,527,9.0\n233,528,8.5\n233,529,8.0\n233,530,7.5\n233,531,7.0\n233,532,6.5\n233,533,6.0\n233,534,6.5\n233,535,7.0\n233,536,7.5\n233,537,8.0\n233,538,8.5\n233,539,9.0\n233,540,9.5\n233,541,10.0\n233,542,10.5\n233,543,11.0\n233,544,11.5\n233,545,12.0\n233,546,12.5\n233,547,13.0\n233,548,13.5\n233,549,14.0\n233,550,10.5\n233,551,10.0\n233,552,9.5\n233,553,9.0\n233,554,8.5\n233,555,8.0\n233,556,7.5\n233,557,7.0\n233,558,6.5\n233,559,7.0\n233,560,7.5\n233,561,8.0\n233,562,8.5\n233,563,9.0\n233,564,9.5\n233,565,10.0\n233,566,10.5\n233,567,11.0\n233,568,11.5\n233,569,12.0\n233,570,12.5\n233,571,13.0\n233,572,13.5\n233,573,14.0\n233,574,14.5\n233,575,11.0\n233,576,10.5\n233,577,10.0\n233,578,9.5\n233,579,9.0\n233,580,8.5\n233,581,8.0\n233,582,7.5\n233,583,7.0\n233,584,7.5\n233,585,8.0\n233,586,8.5\n233,587,9.0\n233,588,9.5\n233,589,10.0\n233,590,10.5\n233,591,11.0\n233,592,11.5\n233,593,12.0\n233,594,12.5\n233,595,13.0\n233,596,13.5\n233,597,14.0\n233,598,14.5\n233,599,15.0\n233,600,11.5\n233,601,11.0\n233,602,10.5\n233,603,10.0\n233,604,9.5\n233,605,9.0\n233,606,8.5\n233,607,8.0\n233,608,7.5\n233,609,8.0\n233,610,8.5\n233,611,9.0\n233,612,9.5\n233,613,10.0\n233,614,10.5\n233,615,11.0\n233,616,11.5\n233,617,12.0\n233,618,12.5\n233,619,13.0\n233,620,13.5\n233,621,14.0\n233,622,14.5\n233,623,15.0\n233,624,15.5\n234,0,9.0\n234,1,8.5\n234,2,8.0\n234,3,7.5\n234,4,7.0\n234,5,6.5\n234,6,6.0\n234,7,5.5\n234,8,5.0\n234,9,4.5\n234,10,5.0\n234,11,5.5\n234,12,6.0\n234,13,6.5\n234,14,7.0\n234,15,7.5\n234,16,8.0\n234,17,8.5\n234,18,9.0\n234,19,9.5\n234,20,10.0\n234,21,10.5\n234,22,11.0\n234,23,11.5\n234,24,12.0\n234,25,8.5\n234,26,8.0\n234,27,7.5\n234,28,7.0\n234,29,6.5\n234,30,6.0\n234,31,5.5\n234,32,5.0\n234,33,4.5\n234,34,4.0\n234,35,4.5\n234,36,5.0\n234,37,5.5\n234,38,6.0\n234,39,6.5\n234,40,7.0\n234,41,7.5\n234,42,8.0\n234,43,8.5\n234,44,9.0\n234,45,9.5\n234,46,10.0\n234,47,10.5\n234,48,11.0\n234,49,11.5\n234,50,8.0\n234,51,7.5\n234,52,7.0\n234,53,6.5\n234,54,6.0\n234,55,5.5\n234,56,5.0\n234,57,4.5\n234,58,4.0\n234,59,3.5\n234,60,4.0\n234,61,4.5\n234,62,5.0\n234,63,5.5\n234,64,6.0\n234,65,6.5\n234,66,7.0\n234,67,7.5\n234,68,8.0\n234,69,8.5\n234,70,9.0\n234,71,9.5\n234,72,10.0\n234,73,10.5\n234,74,11.0\n234,75,7.5\n234,76,7.0\n234,77,6.5\n234,78,6.0\n234,79,5.5\n234,80,5.0\n234,81,4.5\n234,82,4.0\n234,83,3.5\n234,84,3.0\n234,85,3.5\n234,86,4.0\n234,87,4.5\n234,88,5.0\n234,89,5.5\n234,90,6.0\n234,91,6.5\n234,92,7.0\n234,93,7.5\n234,94,8.0\n234,95,8.5\n234,96,9.0\n234,97,9.5\n234,98,10.0\n234,99,10.5\n234,100,7.0\n234,101,6.5\n234,102,6.0\n234,103,5.5\n234,104,5.0\n234,105,4.5\n234,106,4.0\n234,107,3.5\n234,108,3.0\n234,109,2.5\n234,110,3.0\n234,111,3.5\n234,112,4.0\n234,113,4.5\n234,114,5.0\n234,115,5.5\n234,116,6.0\n234,117,6.5\n234,118,7.0\n234,119,7.5\n234,120,8.0\n234,121,8.5\n234,122,9.0\n234,123,9.5\n234,124,10.0\n234,125,6.5\n234,126,6.0\n234,127,5.5\n234,128,5.0\n234,129,4.5\n234,130,4.0\n234,131,3.5\n234,132,3.0\n234,133,2.5\n234,134,2.0\n234,135,2.5\n234,136,3.0\n234,137,3.5\n234,138,4.0\n234,139,4.5\n234,140,5.0\n234,141,5.5\n234,142,6.0\n234,143,6.5\n234,144,7.0\n234,145,7.5\n234,146,8.0\n234,147,8.5\n234,148,9.0\n234,149,9.5\n234,150,6.0\n234,151,5.5\n234,152,5.0\n234,153,4.5\n234,154,4.0\n234,155,3.5\n234,156,3.0\n234,157,2.5\n234,158,2.0\n234,159,1.5\n234,160,2.0\n234,161,2.5\n234,162,3.0\n234,163,3.5\n234,164,4.0\n234,165,4.5\n234,166,5.0\n234,167,5.5\n234,168,6.0\n234,169,6.5\n234,170,7.0\n234,171,7.5\n234,172,8.0\n234,173,8.5\n234,174,9.0\n234,175,5.5\n234,176,5.0\n234,177,4.5\n234,178,4.0\n234,179,3.5\n234,180,3.0\n234,181,2.5\n234,182,2.0\n234,183,1.5\n234,184,1.0\n234,185,1.5\n234,186,2.0\n234,187,2.5\n234,188,3.0\n234,189,3.5\n234,190,4.0\n234,191,4.5\n234,192,5.0\n234,193,5.5\n234,194,6.0\n234,195,6.5\n234,196,7.0\n234,197,7.5\n234,198,8.0\n234,199,8.5\n234,200,5.0\n234,201,4.5\n234,202,4.0\n234,203,3.5\n234,204,3.0\n234,205,2.5\n234,206,2.0\n234,207,1.5\n234,208,1.0\n234,209,0.5\n234,210,1.0\n234,211,1.5\n234,212,2.0\n234,213,2.5\n234,214,3.0\n234,215,3.5\n234,216,4.0\n234,217,4.5\n234,218,5.0\n234,219,5.5\n234,220,6.0\n234,221,6.5\n234,222,7.0\n234,223,7.5\n234,224,8.0\n234,225,4.5\n234,226,4.0\n234,227,3.5\n234,228,3.0\n234,229,2.5\n234,230,2.0\n234,231,1.5\n234,232,1.0\n234,233,0.5\n234,234,0\n234,235,0.5\n234,236,1.0\n234,237,1.5\n234,238,2.0\n234,239,2.5\n234,240,3.0\n234,241,3.5\n234,242,4.0\n234,243,4.5\n234,244,5.0\n234,245,5.5\n234,246,6.0\n234,247,6.5\n234,248,7.0\n234,249,7.5\n234,250,5.0\n234,251,4.5\n234,252,4.0\n234,253,3.5\n234,254,3.0\n234,255,2.5\n234,256,2.0\n234,257,1.5\n234,258,1.0\n234,259,0.5\n234,260,1.0\n234,261,1.5\n234,262,2.0\n234,263,2.5\n234,264,3.0\n234,265,3.5\n234,266,4.0\n234,267,4.5\n234,268,5.0\n234,269,5.5\n234,270,6.0\n234,271,6.5\n234,272,7.0\n234,273,7.5\n234,274,8.0\n234,275,5.5\n234,276,5.0\n234,277,4.5\n234,278,4.0\n234,279,3.5\n234,280,3.0\n234,281,2.5\n234,282,2.0\n234,283,1.5\n234,284,1.0\n234,285,1.5\n234,286,2.0\n234,287,2.5\n234,288,3.0\n234,289,3.5\n234,290,4.0\n234,291,4.5\n234,292,5.0\n234,293,5.5\n234,294,6.0\n234,295,6.5\n234,296,7.0\n234,297,7.5\n234,298,8.0\n234,299,8.5\n234,300,6.0\n234,301,5.5\n234,302,5.0\n234,303,4.5\n234,304,4.0\n234,305,3.5\n234,306,3.0\n234,307,2.5\n234,308,2.0\n234,309,1.5\n234,310,2.0\n234,311,2.5\n234,312,3.0\n234,313,3.5\n234,314,4.0\n234,315,4.5\n234,316,5.0\n234,317,5.5\n234,318,6.0\n234,319,6.5\n234,320,7.0\n234,321,7.5\n234,322,8.0\n234,323,8.5\n234,324,9.0\n234,325,6.5\n234,326,6.0\n234,327,5.5\n234,328,5.0\n234,329,4.5\n234,330,4.0\n234,331,3.5\n234,332,3.0\n234,333,2.5\n234,334,2.0\n234,335,2.5\n234,336,3.0\n234,337,3.5\n234,338,4.0\n234,339,4.5\n234,340,5.0\n234,341,5.5\n234,342,6.0\n234,343,6.5\n234,344,7.0\n234,345,7.5\n234,346,8.0\n234,347,8.5\n234,348,9.0\n234,349,9.5\n234,350,7.0\n234,351,6.5\n234,352,6.0\n234,353,5.5\n234,354,5.0\n234,355,4.5\n234,356,4.0\n234,357,3.5\n234,358,3.0\n234,359,2.5\n234,360,3.0\n234,361,3.5\n234,362,4.0\n234,363,4.5\n234,364,5.0\n234,365,5.5\n234,366,6.0\n234,367,6.5\n234,368,7.0\n234,369,7.5\n234,370,8.0\n234,371,8.5\n234,372,9.0\n234,373,9.5\n234,374,10.0\n234,375,7.5\n234,376,7.0\n234,377,6.5\n234,378,6.0\n234,379,5.5\n234,380,5.0\n234,381,4.5\n234,382,4.0\n234,383,3.5\n234,384,3.0\n234,385,3.5\n234,386,4.0\n234,387,4.5\n234,388,5.0\n234,389,5.5\n234,390,6.0\n234,391,6.5\n234,392,7.0\n234,393,7.5\n234,394,8.0\n234,395,8.5\n234,396,9.0\n234,397,9.5\n234,398,10.0\n234,399,10.5\n234,400,8.0\n234,401,7.5\n234,402,7.0\n234,403,6.5\n234,404,6.0\n234,405,5.5\n234,406,5.0\n234,407,4.5\n234,408,4.0\n234,409,3.5\n234,410,4.0\n234,411,4.5\n234,412,5.0\n234,413,5.5\n234,414,6.0\n234,415,6.5\n234,416,7.0\n234,417,7.5\n234,418,8.0\n234,419,8.5\n234,420,9.0\n234,421,9.5\n234,422,10.0\n234,423,10.5\n234,424,11.0\n234,425,8.5\n234,426,8.0\n234,427,7.5\n234,428,7.0\n234,429,6.5\n234,430,6.0\n234,431,5.5\n234,432,5.0\n234,433,4.5\n234,434,4.0\n234,435,4.5\n234,436,5.0\n234,437,5.5\n234,438,6.0\n234,439,6.5\n234,440,7.0\n234,441,7.5\n234,442,8.0\n234,443,8.5\n234,444,9.0\n234,445,9.5\n234,446,10.0\n234,447,10.5\n234,448,11.0\n234,449,11.5\n234,450,9.0\n234,451,8.5\n234,452,8.0\n234,453,7.5\n234,454,7.0\n234,455,6.5\n234,456,6.0\n234,457,5.5\n234,458,5.0\n234,459,4.5\n234,460,5.0\n234,461,5.5\n234,462,6.0\n234,463,6.5\n234,464,7.0\n234,465,7.5\n234,466,8.0\n234,467,8.5\n234,468,9.0\n234,469,9.5\n234,470,10.0\n234,471,10.5\n234,472,11.0\n234,473,11.5\n234,474,12.0\n234,475,9.5\n234,476,9.0\n234,477,8.5\n234,478,8.0\n234,479,7.5\n234,480,7.0\n234,481,6.5\n234,482,6.0\n234,483,5.5\n234,484,5.0\n234,485,5.5\n234,486,6.0\n234,487,6.5\n234,488,7.0\n234,489,7.5\n234,490,8.0\n234,491,8.5\n234,492,9.0\n234,493,9.5\n234,494,10.0\n234,495,10.5\n234,496,11.0\n234,497,11.5\n234,498,12.0\n234,499,12.5\n234,500,10.0\n234,501,9.5\n234,502,9.0\n234,503,8.5\n234,504,8.0\n234,505,7.5\n234,506,7.0\n234,507,6.5\n234,508,6.0\n234,509,5.5\n234,510,6.0\n234,511,6.5\n234,512,7.0\n234,513,7.5\n234,514,8.0\n234,515,8.5\n234,516,9.0\n234,517,9.5\n234,518,10.0\n234,519,10.5\n234,520,11.0\n234,521,11.5\n234,522,12.0\n234,523,12.5\n234,524,13.0\n234,525,10.5\n234,526,10.0\n234,527,9.5\n234,528,9.0\n234,529,8.5\n234,530,8.0\n234,531,7.5\n234,532,7.0\n234,533,6.5\n234,534,6.0\n234,535,6.5\n234,536,7.0\n234,537,7.5\n234,538,8.0\n234,539,8.5\n234,540,9.0\n234,541,9.5\n234,542,10.0\n234,543,10.5\n234,544,11.0\n234,545,11.5\n234,546,12.0\n234,547,12.5\n234,548,13.0\n234,549,13.5\n234,550,11.0\n234,551,10.5\n234,552,10.0\n234,553,9.5\n234,554,9.0\n234,555,8.5\n234,556,8.0\n234,557,7.5\n234,558,7.0\n234,559,6.5\n234,560,7.0\n234,561,7.5\n234,562,8.0\n234,563,8.5\n234,564,9.0\n234,565,9.5\n234,566,10.0\n234,567,10.5\n234,568,11.0\n234,569,11.5\n234,570,12.0\n234,571,12.5\n234,572,13.0\n234,573,13.5\n234,574,14.0\n234,575,11.5\n234,576,11.0\n234,577,10.5\n234,578,10.0\n234,579,9.5\n234,580,9.0\n234,581,8.5\n234,582,8.0\n234,583,7.5\n234,584,7.0\n234,585,7.5\n234,586,8.0\n234,587,8.5\n234,588,9.0\n234,589,9.5\n234,590,10.0\n234,591,10.5\n234,592,11.0\n234,593,11.5\n234,594,12.0\n234,595,12.5\n234,596,13.0\n234,597,13.5\n234,598,14.0\n234,599,14.5\n234,600,12.0\n234,601,11.5\n234,602,11.0\n234,603,10.5\n234,604,10.0\n234,605,9.5\n234,606,9.0\n234,607,8.5\n234,608,8.0\n234,609,7.5\n234,610,8.0\n234,611,8.5\n234,612,9.0\n234,613,9.5\n234,614,10.0\n234,615,10.5\n234,616,11.0\n234,617,11.5\n234,618,12.0\n234,619,12.5\n234,620,13.0\n234,621,13.5\n234,622,14.0\n234,623,14.5\n234,624,15.0\n235,0,9.5\n235,1,9.0\n235,2,8.5\n235,3,8.0\n235,4,7.5\n235,5,7.0\n235,6,6.5\n235,7,6.0\n235,8,5.5\n235,9,5.0\n235,10,4.5\n235,11,5.0\n235,12,5.5\n235,13,6.0\n235,14,6.5\n235,15,7.0\n235,16,7.5\n235,17,8.0\n235,18,8.5\n235,19,9.0\n235,20,9.5\n235,21,10.0\n235,22,10.5\n235,23,11.0\n235,24,11.5\n235,25,9.0\n235,26,8.5\n235,27,8.0\n235,28,7.5\n235,29,7.0\n235,30,6.5\n235,31,6.0\n235,32,5.5\n235,33,5.0\n235,34,4.5\n235,35,4.0\n235,36,4.5\n235,37,5.0\n235,38,5.5\n235,39,6.0\n235,40,6.5\n235,41,7.0\n235,42,7.5\n235,43,8.0\n235,44,8.5\n235,45,9.0\n235,46,9.5\n235,47,10.0\n235,48,10.5\n235,49,11.0\n235,50,8.5\n235,51,8.0\n235,52,7.5\n235,53,7.0\n235,54,6.5\n235,55,6.0\n235,56,5.5\n235,57,5.0\n235,58,4.5\n235,59,4.0\n235,60,3.5\n235,61,4.0\n235,62,4.5\n235,63,5.0\n235,64,5.5\n235,65,6.0\n235,66,6.5\n235,67,7.0\n235,68,7.5\n235,69,8.0\n235,70,8.5\n235,71,9.0\n235,72,9.5\n235,73,10.0\n235,74,10.5\n235,75,8.0\n235,76,7.5\n235,77,7.0\n235,78,6.5\n235,79,6.0\n235,80,5.5\n235,81,5.0\n235,82,4.5\n235,83,4.0\n235,84,3.5\n235,85,3.0\n235,86,3.5\n235,87,4.0\n235,88,4.5\n235,89,5.0\n235,90,5.5\n235,91,6.0\n235,92,6.5\n235,93,7.0\n235,94,7.5\n235,95,8.0\n235,96,8.5\n235,97,9.0\n235,98,9.5\n235,99,10.0\n235,100,7.5\n235,101,7.0\n235,102,6.5\n235,103,6.0\n235,104,5.5\n235,105,5.0\n235,106,4.5\n235,107,4.0\n235,108,3.5\n235,109,3.0\n235,110,2.5\n235,111,3.0\n235,112,3.5\n235,113,4.0\n235,114,4.5\n235,115,5.0\n235,116,5.5\n235,117,6.0\n235,118,6.5\n235,119,7.0\n235,120,7.5\n235,121,8.0\n235,122,8.5\n235,123,9.0\n235,124,9.5\n235,125,7.0\n235,126,6.5\n235,127,6.0\n235,128,5.5\n235,129,5.0\n235,130,4.5\n235,131,4.0\n235,132,3.5\n235,133,3.0\n235,134,2.5\n235,135,2.0\n235,136,2.5\n235,137,3.0\n235,138,3.5\n235,139,4.0\n235,140,4.5\n235,141,5.0\n235,142,5.5\n235,143,6.0\n235,144,6.5\n235,145,7.0\n235,146,7.5\n235,147,8.0\n235,148,8.5\n235,149,9.0\n235,150,6.5\n235,151,6.0\n235,152,5.5\n235,153,5.0\n235,154,4.5\n235,155,4.0\n235,156,3.5\n235,157,3.0\n235,158,2.5\n235,159,2.0\n235,160,1.5\n235,161,2.0\n235,162,2.5\n235,163,3.0\n235,164,3.5\n235,165,4.0\n235,166,4.5\n235,167,5.0\n235,168,5.5\n235,169,6.0\n235,170,6.5\n235,171,7.0\n235,172,7.5\n235,173,8.0\n235,174,8.5\n235,175,6.0\n235,176,5.5\n235,177,5.0\n235,178,4.5\n235,179,4.0\n235,180,3.5\n235,181,3.0\n235,182,2.5\n235,183,2.0\n235,184,1.5\n235,185,1.0\n235,186,1.5\n235,187,2.0\n235,188,2.5\n235,189,3.0\n235,190,3.5\n235,191,4.0\n235,192,4.5\n235,193,5.0\n235,194,5.5\n235,195,6.0\n235,196,6.5\n235,197,7.0\n235,198,7.5\n235,199,8.0\n235,200,5.5\n235,201,5.0\n235,202,4.5\n235,203,4.0\n235,204,3.5\n235,205,3.0\n235,206,2.5\n235,207,2.0\n235,208,1.5\n235,209,1.0\n235,210,0.5\n235,211,1.0\n235,212,1.5\n235,213,2.0\n235,214,2.5\n235,215,3.0\n235,216,3.5\n235,217,4.0\n235,218,4.5\n235,219,5.0\n235,220,5.5\n235,221,6.0\n235,222,6.5\n235,223,7.0\n235,224,7.5\n235,225,5.0\n235,226,4.5\n235,227,4.0\n235,228,3.5\n235,229,3.0\n235,230,2.5\n235,231,2.0\n235,232,1.5\n235,233,1.0\n235,234,0.5\n235,235,0\n235,236,0.5\n235,237,1.0\n235,238,1.5\n235,239,2.0\n235,240,2.5\n235,241,3.0\n235,242,3.5\n235,243,4.0\n235,244,4.5\n235,245,5.0\n235,246,5.5\n235,247,6.0\n235,248,6.5\n235,249,7.0\n235,250,5.5\n235,251,5.0\n235,252,4.5\n235,253,4.0\n235,254,3.5\n235,255,3.0\n235,256,2.5\n235,257,2.0\n235,258,1.5\n235,259,1.0\n235,260,0.5\n235,261,1.0\n235,262,1.5\n235,263,2.0\n235,264,2.5\n235,265,3.0\n235,266,3.5\n235,267,4.0\n235,268,4.5\n235,269,5.0\n235,270,5.5\n235,271,6.0\n235,272,6.5\n235,273,7.0\n235,274,7.5\n235,275,6.0\n235,276,5.5\n235,277,5.0\n235,278,4.5\n235,279,4.0\n235,280,3.5\n235,281,3.0\n235,282,2.5\n235,283,2.0\n235,284,1.5\n235,285,1.0\n235,286,1.5\n235,287,2.0\n235,288,2.5\n235,289,3.0\n235,290,3.5\n235,291,4.0\n235,292,4.5\n235,293,5.0\n235,294,5.5\n235,295,6.0\n235,296,6.5\n235,297,7.0\n235,298,7.5\n235,299,8.0\n235,300,6.5\n235,301,6.0\n235,302,5.5\n235,303,5.0\n235,304,4.5\n235,305,4.0\n235,306,3.5\n235,307,3.0\n235,308,2.5\n235,309,2.0\n235,310,1.5\n235,311,2.0\n235,312,2.5\n235,313,3.0\n235,314,3.5\n235,315,4.0\n235,316,4.5\n235,317,5.0\n235,318,5.5\n235,319,6.0\n235,320,6.5\n235,321,7.0\n235,322,7.5\n235,323,8.0\n235,324,8.5\n235,325,7.0\n235,326,6.5\n235,327,6.0\n235,328,5.5\n235,329,5.0\n235,330,4.5\n235,331,4.0\n235,332,3.5\n235,333,3.0\n235,334,2.5\n235,335,2.0\n235,336,2.5\n235,337,3.0\n235,338,3.5\n235,339,4.0\n235,340,4.5\n235,341,5.0\n235,342,5.5\n235,343,6.0\n235,344,6.5\n235,345,7.0\n235,346,7.5\n235,347,8.0\n235,348,8.5\n235,349,9.0\n235,350,7.5\n235,351,7.0\n235,352,6.5\n235,353,6.0\n235,354,5.5\n235,355,5.0\n235,356,4.5\n235,357,4.0\n235,358,3.5\n235,359,3.0\n235,360,2.5\n235,361,3.0\n235,362,3.5\n235,363,4.0\n235,364,4.5\n235,365,5.0\n235,366,5.5\n235,367,6.0\n235,368,6.5\n235,369,7.0\n235,370,7.5\n235,371,8.0\n235,372,8.5\n235,373,9.0\n235,374,9.5\n235,375,8.0\n235,376,7.5\n235,377,7.0\n235,378,6.5\n235,379,6.0\n235,380,5.5\n235,381,5.0\n235,382,4.5\n235,383,4.0\n235,384,3.5\n235,385,3.0\n235,386,3.5\n235,387,4.0\n235,388,4.5\n235,389,5.0\n235,390,5.5\n235,391,6.0\n235,392,6.5\n235,393,7.0\n235,394,7.5\n235,395,8.0\n235,396,8.5\n235,397,9.0\n235,398,9.5\n235,399,10.0\n235,400,8.5\n235,401,8.0\n235,402,7.5\n235,403,7.0\n235,404,6.5\n235,405,6.0\n235,406,5.5\n235,407,5.0\n235,408,4.5\n235,409,4.0\n235,410,3.5\n235,411,4.0\n235,412,4.5\n235,413,5.0\n235,414,5.5\n235,415,6.0\n235,416,6.5\n235,417,7.0\n235,418,7.5\n235,419,8.0\n235,420,8.5\n235,421,9.0\n235,422,9.5\n235,423,10.0\n235,424,10.5\n235,425,9.0\n235,426,8.5\n235,427,8.0\n235,428,7.5\n235,429,7.0\n235,430,6.5\n235,431,6.0\n235,432,5.5\n235,433,5.0\n235,434,4.5\n235,435,4.0\n235,436,4.5\n235,437,5.0\n235,438,5.5\n235,439,6.0\n235,440,6.5\n235,441,7.0\n235,442,7.5\n235,443,8.0\n235,444,8.5\n235,445,9.0\n235,446,9.5\n235,447,10.0\n235,448,10.5\n235,449,11.0\n235,450,9.5\n235,451,9.0\n235,452,8.5\n235,453,8.0\n235,454,7.5\n235,455,7.0\n235,456,6.5\n235,457,6.0\n235,458,5.5\n235,459,5.0\n235,460,4.5\n235,461,5.0\n235,462,5.5\n235,463,6.0\n235,464,6.5\n235,465,7.0\n235,466,7.5\n235,467,8.0\n235,468,8.5\n235,469,9.0\n235,470,9.5\n235,471,10.0\n235,472,10.5\n235,473,11.0\n235,474,11.5\n235,475,10.0\n235,476,9.5\n235,477,9.0\n235,478,8.5\n235,479,8.0\n235,480,7.5\n235,481,7.0\n235,482,6.5\n235,483,6.0\n235,484,5.5\n235,485,5.0\n235,486,5.5\n235,487,6.0\n235,488,6.5\n235,489,7.0\n235,490,7.5\n235,491,8.0\n235,492,8.5\n235,493,9.0\n235,494,9.5\n235,495,10.0\n235,496,10.5\n235,497,11.0\n235,498,11.5\n235,499,12.0\n235,500,10.5\n235,501,10.0\n235,502,9.5\n235,503,9.0\n235,504,8.5\n235,505,8.0\n235,506,7.5\n235,507,7.0\n235,508,6.5\n235,509,6.0\n235,510,5.5\n235,511,6.0\n235,512,6.5\n235,513,7.0\n235,514,7.5\n235,515,8.0\n235,516,8.5\n235,517,9.0\n235,518,9.5\n235,519,10.0\n235,520,10.5\n235,521,11.0\n235,522,11.5\n235,523,12.0\n235,524,12.5\n235,525,11.0\n235,526,10.5\n235,527,10.0\n235,528,9.5\n235,529,9.0\n235,530,8.5\n235,531,8.0\n235,532,7.5\n235,533,7.0\n235,534,6.5\n235,535,6.0\n235,536,6.5\n235,537,7.0\n235,538,7.5\n235,539,8.0\n235,540,8.5\n235,541,9.0\n235,542,9.5\n235,543,10.0\n235,544,10.5\n235,545,11.0\n235,546,11.5\n235,547,12.0\n235,548,12.5\n235,549,13.0\n235,550,11.5\n235,551,11.0\n235,552,10.5\n235,553,10.0\n235,554,9.5\n235,555,9.0\n235,556,8.5\n235,557,8.0\n235,558,7.5\n235,559,7.0\n235,560,6.5\n235,561,7.0\n235,562,7.5\n235,563,8.0\n235,564,8.5\n235,565,9.0\n235,566,9.5\n235,567,10.0\n235,568,10.5\n235,569,11.0\n235,570,11.5\n235,571,12.0\n235,572,12.5\n235,573,13.0\n235,574,13.5\n235,575,12.0\n235,576,11.5\n235,577,11.0\n235,578,10.5\n235,579,10.0\n235,580,9.5\n235,581,9.0\n235,582,8.5\n235,583,8.0\n235,584,7.5\n235,585,7.0\n235,586,7.5\n235,587,8.0\n235,588,8.5\n235,589,9.0\n235,590,9.5\n235,591,10.0\n235,592,10.5\n235,593,11.0\n235,594,11.5\n235,595,12.0\n235,596,12.5\n235,597,13.0\n235,598,13.5\n235,599,14.0\n235,600,12.5\n235,601,12.0\n235,602,11.5\n235,603,11.0\n235,604,10.5\n235,605,10.0\n235,606,9.5\n235,607,9.0\n235,608,8.5\n235,609,8.0\n235,610,7.5\n235,611,8.0\n235,612,8.5\n235,613,9.0\n235,614,9.5\n235,615,10.0\n235,616,10.5\n235,617,11.0\n235,618,11.5\n235,619,12.0\n235,620,12.5\n235,621,13.0\n235,622,13.5\n235,623,14.0\n235,624,14.5\n236,0,10.0\n236,1,9.5\n236,2,9.0\n236,3,8.5\n236,4,8.0\n236,5,7.5\n236,6,7.0\n236,7,6.5\n236,8,6.0\n236,9,5.5\n236,10,5.0\n236,11,4.5\n236,12,5.0\n236,13,5.5\n236,14,6.0\n236,15,6.5\n236,16,7.0\n236,17,7.5\n236,18,8.0\n236,19,8.5\n236,20,9.0\n236,21,9.5\n236,22,10.0\n236,23,10.5\n236,24,11.0\n236,25,9.5\n236,26,9.0\n236,27,8.5\n236,28,8.0\n236,29,7.5\n236,30,7.0\n236,31,6.5\n236,32,6.0\n236,33,5.5\n236,34,5.0\n236,35,4.5\n236,36,4.0\n236,37,4.5\n236,38,5.0\n236,39,5.5\n236,40,6.0\n236,41,6.5\n236,42,7.0\n236,43,7.5\n236,44,8.0\n236,45,8.5\n236,46,9.0\n236,47,9.5\n236,48,10.0\n236,49,10.5\n236,50,9.0\n236,51,8.5\n236,52,8.0\n236,53,7.5\n236,54,7.0\n236,55,6.5\n236,56,6.0\n236,57,5.5\n236,58,5.0\n236,59,4.5\n236,60,4.0\n236,61,3.5\n236,62,4.0\n236,63,4.5\n236,64,5.0\n236,65,5.5\n236,66,6.0\n236,67,6.5\n236,68,7.0\n236,69,7.5\n236,70,8.0\n236,71,8.5\n236,72,9.0\n236,73,9.5\n236,74,10.0\n236,75,8.5\n236,76,8.0\n236,77,7.5\n236,78,7.0\n236,79,6.5\n236,80,6.0\n236,81,5.5\n236,82,5.0\n236,83,4.5\n236,84,4.0\n236,85,3.5\n236,86,3.0\n236,87,3.5\n236,88,4.0\n236,89,4.5\n236,90,5.0\n236,91,5.5\n236,92,6.0\n236,93,6.5\n236,94,7.0\n236,95,7.5\n236,96,8.0\n236,97,8.5\n236,98,9.0\n236,99,9.5\n236,100,8.0\n236,101,7.5\n236,102,7.0\n236,103,6.5\n236,104,6.0\n236,105,5.5\n236,106,5.0\n236,107,4.5\n236,108,4.0\n236,109,3.5\n236,110,3.0\n236,111,2.5\n236,112,3.0\n236,113,3.5\n236,114,4.0\n236,115,4.5\n236,116,5.0\n236,117,5.5\n236,118,6.0\n236,119,6.5\n236,120,7.0\n236,121,7.5\n236,122,8.0\n236,123,8.5\n236,124,9.0\n236,125,7.5\n236,126,7.0\n236,127,6.5\n236,128,6.0\n236,129,5.5\n236,130,5.0\n236,131,4.5\n236,132,4.0\n236,133,3.5\n236,134,3.0\n236,135,2.5\n236,136,2.0\n236,137,2.5\n236,138,3.0\n236,139,3.5\n236,140,4.0\n236,141,4.5\n236,142,5.0\n236,143,5.5\n236,144,6.0\n236,145,6.5\n236,146,7.0\n236,147,7.5\n236,148,8.0\n236,149,8.5\n236,150,7.0\n236,151,6.5\n236,152,6.0\n236,153,5.5\n236,154,5.0\n236,155,4.5\n236,156,4.0\n236,157,3.5\n236,158,3.0\n236,159,2.5\n236,160,2.0\n236,161,1.5\n236,162,2.0\n236,163,2.5\n236,164,3.0\n236,165,3.5\n236,166,4.0\n236,167,4.5\n236,168,5.0\n236,169,5.5\n236,170,6.0\n236,171,6.5\n236,172,7.0\n236,173,7.5\n236,174,8.0\n236,175,6.5\n236,176,6.0\n236,177,5.5\n236,178,5.0\n236,179,4.5\n236,180,4.0\n236,181,3.5\n236,182,3.0\n236,183,2.5\n236,184,2.0\n236,185,1.5\n236,186,1.0\n236,187,1.5\n236,188,2.0\n236,189,2.5\n236,190,3.0\n236,191,3.5\n236,192,4.0\n236,193,4.5\n236,194,5.0\n236,195,5.5\n236,196,6.0\n236,197,6.5\n236,198,7.0\n236,199,7.5\n236,200,6.0\n236,201,5.5\n236,202,5.0\n236,203,4.5\n236,204,4.0\n236,205,3.5\n236,206,3.0\n236,207,2.5\n236,208,2.0\n236,209,1.5\n236,210,1.0\n236,211,0.5\n236,212,1.0\n236,213,1.5\n236,214,2.0\n236,215,2.5\n236,216,3.0\n236,217,3.5\n236,218,4.0\n236,219,4.5\n236,220,5.0\n236,221,5.5\n236,222,6.0\n236,223,6.5\n236,224,7.0\n236,225,5.5\n236,226,5.0\n236,227,4.5\n236,228,4.0\n236,229,3.5\n236,230,3.0\n236,231,2.5\n236,232,2.0\n236,233,1.5\n236,234,1.0\n236,235,0.5\n236,236,0\n236,237,0.5\n236,238,1.0\n236,239,1.5\n236,240,2.0\n236,241,2.5\n236,242,3.0\n236,243,3.5\n236,244,4.0\n236,245,4.5\n236,246,5.0\n236,247,5.5\n236,248,6.0\n236,249,6.5\n236,250,6.0\n236,251,5.5\n236,252,5.0\n236,253,4.5\n236,254,4.0\n236,255,3.5\n236,256,3.0\n236,257,2.5\n236,258,2.0\n236,259,1.5\n236,260,1.0\n236,261,0.5\n236,262,1.0\n236,263,1.5\n236,264,2.0\n236,265,2.5\n236,266,3.0\n236,267,3.5\n236,268,4.0\n236,269,4.5\n236,270,5.0\n236,271,5.5\n236,272,6.0\n236,273,6.5\n236,274,7.0\n236,275,6.5\n236,276,6.0\n236,277,5.5\n236,278,5.0\n236,279,4.5\n236,280,4.0\n236,281,3.5\n236,282,3.0\n236,283,2.5\n236,284,2.0\n236,285,1.5\n236,286,1.0\n236,287,1.5\n236,288,2.0\n236,289,2.5\n236,290,3.0\n236,291,3.5\n236,292,4.0\n236,293,4.5\n236,294,5.0\n236,295,5.5\n236,296,6.0\n236,297,6.5\n236,298,7.0\n236,299,7.5\n236,300,7.0\n236,301,6.5\n236,302,6.0\n236,303,5.5\n236,304,5.0\n236,305,4.5\n236,306,4.0\n236,307,3.5\n236,308,3.0\n236,309,2.5\n236,310,2.0\n236,311,1.5\n236,312,2.0\n236,313,2.5\n236,314,3.0\n236,315,3.5\n236,316,4.0\n236,317,4.5\n236,318,5.0\n236,319,5.5\n236,320,6.0\n236,321,6.5\n236,322,7.0\n236,323,7.5\n236,324,8.0\n236,325,7.5\n236,326,7.0\n236,327,6.5\n236,328,6.0\n236,329,5.5\n236,330,5.0\n236,331,4.5\n236,332,4.0\n236,333,3.5\n236,334,3.0\n236,335,2.5\n236,336,2.0\n236,337,2.5\n236,338,3.0\n236,339,3.5\n236,340,4.0\n236,341,4.5\n236,342,5.0\n236,343,5.5\n236,344,6.0\n236,345,6.5\n236,346,7.0\n236,347,7.5\n236,348,8.0\n236,349,8.5\n236,350,8.0\n236,351,7.5\n236,352,7.0\n236,353,6.5\n236,354,6.0\n236,355,5.5\n236,356,5.0\n236,357,4.5\n236,358,4.0\n236,359,3.5\n236,360,3.0\n236,361,2.5\n236,362,3.0\n236,363,3.5\n236,364,4.0\n236,365,4.5\n236,366,5.0\n236,367,5.5\n236,368,6.0\n236,369,6.5\n236,370,7.0\n236,371,7.5\n236,372,8.0\n236,373,8.5\n236,374,9.0\n236,375,8.5\n236,376,8.0\n236,377,7.5\n236,378,7.0\n236,379,6.5\n236,380,6.0\n236,381,5.5\n236,382,5.0\n236,383,4.5\n236,384,4.0\n236,385,3.5\n236,386,3.0\n236,387,3.5\n236,388,4.0\n236,389,4.5\n236,390,5.0\n236,391,5.5\n236,392,6.0\n236,393,6.5\n236,394,7.0\n236,395,7.5\n236,396,8.0\n236,397,8.5\n236,398,9.0\n236,399,9.5\n236,400,9.0\n236,401,8.5\n236,402,8.0\n236,403,7.5\n236,404,7.0\n236,405,6.5\n236,406,6.0\n236,407,5.5\n236,408,5.0\n236,409,4.5\n236,410,4.0\n236,411,3.5\n236,412,4.0\n236,413,4.5\n236,414,5.0\n236,415,5.5\n236,416,6.0\n236,417,6.5\n236,418,7.0\n236,419,7.5\n236,420,8.0\n236,421,8.5\n236,422,9.0\n236,423,9.5\n236,424,10.0\n236,425,9.5\n236,426,9.0\n236,427,8.5\n236,428,8.0\n236,429,7.5\n236,430,7.0\n236,431,6.5\n236,432,6.0\n236,433,5.5\n236,434,5.0\n236,435,4.5\n236,436,4.0\n236,437,4.5\n236,438,5.0\n236,439,5.5\n236,440,6.0\n236,441,6.5\n236,442,7.0\n236,443,7.5\n236,444,8.0\n236,445,8.5\n236,446,9.0\n236,447,9.5\n236,448,10.0\n236,449,10.5\n236,450,10.0\n236,451,9.5\n236,452,9.0\n236,453,8.5\n236,454,8.0\n236,455,7.5\n236,456,7.0\n236,457,6.5\n236,458,6.0\n236,459,5.5\n236,460,5.0\n236,461,4.5\n236,462,5.0\n236,463,5.5\n236,464,6.0\n236,465,6.5\n236,466,7.0\n236,467,7.5\n236,468,8.0\n236,469,8.5\n236,470,9.0\n236,471,9.5\n236,472,10.0\n236,473,10.5\n236,474,11.0\n236,475,10.5\n236,476,10.0\n236,477,9.5\n236,478,9.0\n236,479,8.5\n236,480,8.0\n236,481,7.5\n236,482,7.0\n236,483,6.5\n236,484,6.0\n236,485,5.5\n236,486,5.0\n236,487,5.5\n236,488,6.0\n236,489,6.5\n236,490,7.0\n236,491,7.5\n236,492,8.0\n236,493,8.5\n236,494,9.0\n236,495,9.5\n236,496,10.0\n236,497,10.5\n236,498,11.0\n236,499,11.5\n236,500,11.0\n236,501,10.5\n236,502,10.0\n236,503,9.5\n236,504,9.0\n236,505,8.5\n236,506,8.0\n236,507,7.5\n236,508,7.0\n236,509,6.5\n236,510,6.0\n236,511,5.5\n236,512,6.0\n236,513,6.5\n236,514,7.0\n236,515,7.5\n236,516,8.0\n236,517,8.5\n236,518,9.0\n236,519,9.5\n236,520,10.0\n236,521,10.5\n236,522,11.0\n236,523,11.5\n236,524,12.0\n236,525,11.5\n236,526,11.0\n236,527,10.5\n236,528,10.0\n236,529,9.5\n236,530,9.0\n236,531,8.5\n236,532,8.0\n236,533,7.5\n236,534,7.0\n236,535,6.5\n236,536,6.0\n236,537,6.5\n236,538,7.0\n236,539,7.5\n236,540,8.0\n236,541,8.5\n236,542,9.0\n236,543,9.5\n236,544,10.0\n236,545,10.5\n236,546,11.0\n236,547,11.5\n236,548,12.0\n236,549,12.5\n236,550,12.0\n236,551,11.5\n236,552,11.0\n236,553,10.5\n236,554,10.0\n236,555,9.5\n236,556,9.0\n236,557,8.5\n236,558,8.0\n236,559,7.5\n236,560,7.0\n236,561,6.5\n236,562,7.0\n236,563,7.5\n236,564,8.0\n236,565,8.5\n236,566,9.0\n236,567,9.5\n236,568,10.0\n236,569,10.5\n236,570,11.0\n236,571,11.5\n236,572,12.0\n236,573,12.5\n236,574,13.0\n236,575,12.5\n236,576,12.0\n236,577,11.5\n236,578,11.0\n236,579,10.5\n236,580,10.0\n236,581,9.5\n236,582,9.0\n236,583,8.5\n236,584,8.0\n236,585,7.5\n236,586,7.0\n236,587,7.5\n236,588,8.0\n236,589,8.5\n236,590,9.0\n236,591,9.5\n236,592,10.0\n236,593,10.5\n236,594,11.0\n236,595,11.5\n236,596,12.0\n236,597,12.5\n236,598,13.0\n236,599,13.5\n236,600,13.0\n236,601,12.5\n236,602,12.0\n236,603,11.5\n236,604,11.0\n236,605,10.5\n236,606,10.0\n236,607,9.5\n236,608,9.0\n236,609,8.5\n236,610,8.0\n236,611,7.5\n236,612,8.0\n236,613,8.5\n236,614,9.0\n236,615,9.5\n236,616,10.0\n236,617,10.5\n236,618,11.0\n236,619,11.5\n236,620,12.0\n236,621,12.5\n236,622,13.0\n236,623,13.5\n236,624,14.0\n237,0,10.5\n237,1,10.0\n237,2,9.5\n237,3,9.0\n237,4,8.5\n237,5,8.0\n237,6,7.5\n237,7,7.0\n237,8,6.5\n237,9,6.0\n237,10,5.5\n237,11,5.0\n237,12,4.5\n237,13,5.0\n237,14,5.5\n237,15,6.0\n237,16,6.5\n237,17,7.0\n237,18,7.5\n237,19,8.0\n237,20,8.5\n237,21,9.0\n237,22,9.5\n237,23,10.0\n237,24,10.5\n237,25,10.0\n237,26,9.5\n237,27,9.0\n237,28,8.5\n237,29,8.0\n237,30,7.5\n237,31,7.0\n237,32,6.5\n237,33,6.0\n237,34,5.5\n237,35,5.0\n237,36,4.5\n237,37,4.0\n237,38,4.5\n237,39,5.0\n237,40,5.5\n237,41,6.0\n237,42,6.5\n237,43,7.0\n237,44,7.5\n237,45,8.0\n237,46,8.5\n237,47,9.0\n237,48,9.5\n237,49,10.0\n237,50,9.5\n237,51,9.0\n237,52,8.5\n237,53,8.0\n237,54,7.5\n237,55,7.0\n237,56,6.5\n237,57,6.0\n237,58,5.5\n237,59,5.0\n237,60,4.5\n237,61,4.0\n237,62,3.5\n237,63,4.0\n237,64,4.5\n237,65,5.0\n237,66,5.5\n237,67,6.0\n237,68,6.5\n237,69,7.0\n237,70,7.5\n237,71,8.0\n237,72,8.5\n237,73,9.0\n237,74,9.5\n237,75,9.0\n237,76,8.5\n237,77,8.0\n237,78,7.5\n237,79,7.0\n237,80,6.5\n237,81,6.0\n237,82,5.5\n237,83,5.0\n237,84,4.5\n237,85,4.0\n237,86,3.5\n237,87,3.0\n237,88,3.5\n237,89,4.0\n237,90,4.5\n237,91,5.0\n237,92,5.5\n237,93,6.0\n237,94,6.5\n237,95,7.0\n237,96,7.5\n237,97,8.0\n237,98,8.5\n237,99,9.0\n237,100,8.5\n237,101,8.0\n237,102,7.5\n237,103,7.0\n237,104,6.5\n237,105,6.0\n237,106,5.5\n237,107,5.0\n237,108,4.5\n237,109,4.0\n237,110,3.5\n237,111,3.0\n237,112,2.5\n237,113,3.0\n237,114,3.5\n237,115,4.0\n237,116,4.5\n237,117,5.0\n237,118,5.5\n237,119,6.0\n237,120,6.5\n237,121,7.0\n237,122,7.5\n237,123,8.0\n237,124,8.5\n237,125,8.0\n237,126,7.5\n237,127,7.0\n237,128,6.5\n237,129,6.0\n237,130,5.5\n237,131,5.0\n237,132,4.5\n237,133,4.0\n237,134,3.5\n237,135,3.0\n237,136,2.5\n237,137,2.0\n237,138,2.5\n237,139,3.0\n237,140,3.5\n237,141,4.0\n237,142,4.5\n237,143,5.0\n237,144,5.5\n237,145,6.0\n237,146,6.5\n237,147,7.0\n237,148,7.5\n237,149,8.0\n237,150,7.5\n237,151,7.0\n237,152,6.5\n237,153,6.0\n237,154,5.5\n237,155,5.0\n237,156,4.5\n237,157,4.0\n237,158,3.5\n237,159,3.0\n237,160,2.5\n237,161,2.0\n237,162,1.5\n237,163,2.0\n237,164,2.5\n237,165,3.0\n237,166,3.5\n237,167,4.0\n237,168,4.5\n237,169,5.0\n237,170,5.5\n237,171,6.0\n237,172,6.5\n237,173,7.0\n237,174,7.5\n237,175,7.0\n237,176,6.5\n237,177,6.0\n237,178,5.5\n237,179,5.0\n237,180,4.5\n237,181,4.0\n237,182,3.5\n237,183,3.0\n237,184,2.5\n237,185,2.0\n237,186,1.5\n237,187,1.0\n237,188,1.5\n237,189,2.0\n237,190,2.5\n237,191,3.0\n237,192,3.5\n237,193,4.0\n237,194,4.5\n237,195,5.0\n237,196,5.5\n237,197,6.0\n237,198,6.5\n237,199,7.0\n237,200,6.5\n237,201,6.0\n237,202,5.5\n237,203,5.0\n237,204,4.5\n237,205,4.0\n237,206,3.5\n237,207,3.0\n237,208,2.5\n237,209,2.0\n237,210,1.5\n237,211,1.0\n237,212,0.5\n237,213,1.0\n237,214,1.5\n237,215,2.0\n237,216,2.5\n237,217,3.0\n237,218,3.5\n237,219,4.0\n237,220,4.5\n237,221,5.0\n237,222,5.5\n237,223,6.0\n237,224,6.5\n237,225,6.0\n237,226,5.5\n237,227,5.0\n237,228,4.5\n237,229,4.0\n237,230,3.5\n237,231,3.0\n237,232,2.5\n237,233,2.0\n237,234,1.5\n237,235,1.0\n237,236,0.5\n237,237,0\n237,238,0.5\n237,239,1.0\n237,240,1.5\n237,241,2.0\n237,242,2.5\n237,243,3.0\n237,244,3.5\n237,245,4.0\n237,246,4.5\n237,247,5.0\n237,248,5.5\n237,249,6.0\n237,250,6.5\n237,251,6.0\n237,252,5.5\n237,253,5.0\n237,254,4.5\n237,255,4.0\n237,256,3.5\n237,257,3.0\n237,258,2.5\n237,259,2.0\n237,260,1.5\n237,261,1.0\n237,262,0.5\n237,263,1.0\n237,264,1.5\n237,265,2.0\n237,266,2.5\n237,267,3.0\n237,268,3.5\n237,269,4.0\n237,270,4.5\n237,271,5.0\n237,272,5.5\n237,273,6.0\n237,274,6.5\n237,275,7.0\n237,276,6.5\n237,277,6.0\n237,278,5.5\n237,279,5.0\n237,280,4.5\n237,281,4.0\n237,282,3.5\n237,283,3.0\n237,284,2.5\n237,285,2.0\n237,286,1.5\n237,287,1.0\n237,288,1.5\n237,289,2.0\n237,290,2.5\n237,291,3.0\n237,292,3.5\n237,293,4.0\n237,294,4.5\n237,295,5.0\n237,296,5.5\n237,297,6.0\n237,298,6.5\n237,299,7.0\n237,300,7.5\n237,301,7.0\n237,302,6.5\n237,303,6.0\n237,304,5.5\n237,305,5.0\n237,306,4.5\n237,307,4.0\n237,308,3.5\n237,309,3.0\n237,310,2.5\n237,311,2.0\n237,312,1.5\n237,313,2.0\n237,314,2.5\n237,315,3.0\n237,316,3.5\n237,317,4.0\n237,318,4.5\n237,319,5.0\n237,320,5.5\n237,321,6.0\n237,322,6.5\n237,323,7.0\n237,324,7.5\n237,325,8.0\n237,326,7.5\n237,327,7.0\n237,328,6.5\n237,329,6.0\n237,330,5.5\n237,331,5.0\n237,332,4.5\n237,333,4.0\n237,334,3.5\n237,335,3.0\n237,336,2.5\n237,337,2.0\n237,338,2.5\n237,339,3.0\n237,340,3.5\n237,341,4.0\n237,342,4.5\n237,343,5.0\n237,344,5.5\n237,345,6.0\n237,346,6.5\n237,347,7.0\n237,348,7.5\n237,349,8.0\n237,350,8.5\n237,351,8.0\n237,352,7.5\n237,353,7.0\n237,354,6.5\n237,355,6.0\n237,356,5.5\n237,357,5.0\n237,358,4.5\n237,359,4.0\n237,360,3.5\n237,361,3.0\n237,362,2.5\n237,363,3.0\n237,364,3.5\n237,365,4.0\n237,366,4.5\n237,367,5.0\n237,368,5.5\n237,369,6.0\n237,370,6.5\n237,371,7.0\n237,372,7.5\n237,373,8.0\n237,374,8.5\n237,375,9.0\n237,376,8.5\n237,377,8.0\n237,378,7.5\n237,379,7.0\n237,380,6.5\n237,381,6.0\n237,382,5.5\n237,383,5.0\n237,384,4.5\n237,385,4.0\n237,386,3.5\n237,387,3.0\n237,388,3.5\n237,389,4.0\n237,390,4.5\n237,391,5.0\n237,392,5.5\n237,393,6.0\n237,394,6.5\n237,395,7.0\n237,396,7.5\n237,397,8.0\n237,398,8.5\n237,399,9.0\n237,400,9.5\n237,401,9.0\n237,402,8.5\n237,403,8.0\n237,404,7.5\n237,405,7.0\n237,406,6.5\n237,407,6.0\n237,408,5.5\n237,409,5.0\n237,410,4.5\n237,411,4.0\n237,412,3.5\n237,413,4.0\n237,414,4.5\n237,415,5.0\n237,416,5.5\n237,417,6.0\n237,418,6.5\n237,419,7.0\n237,420,7.5\n237,421,8.0\n237,422,8.5\n237,423,9.0\n237,424,9.5\n237,425,10.0\n237,426,9.5\n237,427,9.0\n237,428,8.5\n237,429,8.0\n237,430,7.5\n237,431,7.0\n237,432,6.5\n237,433,6.0\n237,434,5.5\n237,435,5.0\n237,436,4.5\n237,437,4.0\n237,438,4.5\n237,439,5.0\n237,440,5.5\n237,441,6.0\n237,442,6.5\n237,443,7.0\n237,444,7.5\n237,445,8.0\n237,446,8.5\n237,447,9.0\n237,448,9.5\n237,449,10.0\n237,450,10.5\n237,451,10.0\n237,452,9.5\n237,453,9.0\n237,454,8.5\n237,455,8.0\n237,456,7.5\n237,457,7.0\n237,458,6.5\n237,459,6.0\n237,460,5.5\n237,461,5.0\n237,462,4.5\n237,463,5.0\n237,464,5.5\n237,465,6.0\n237,466,6.5\n237,467,7.0\n237,468,7.5\n237,469,8.0\n237,470,8.5\n237,471,9.0\n237,472,9.5\n237,473,10.0\n237,474,10.5\n237,475,11.0\n237,476,10.5\n237,477,10.0\n237,478,9.5\n237,479,9.0\n237,480,8.5\n237,481,8.0\n237,482,7.5\n237,483,7.0\n237,484,6.5\n237,485,6.0\n237,486,5.5\n237,487,5.0\n237,488,5.5\n237,489,6.0\n237,490,6.5\n237,491,7.0\n237,492,7.5\n237,493,8.0\n237,494,8.5\n237,495,9.0\n237,496,9.5\n237,497,10.0\n237,498,10.5\n237,499,11.0\n237,500,11.5\n237,501,11.0\n237,502,10.5\n237,503,10.0\n237,504,9.5\n237,505,9.0\n237,506,8.5\n237,507,8.0\n237,508,7.5\n237,509,7.0\n237,510,6.5\n237,511,6.0\n237,512,5.5\n237,513,6.0\n237,514,6.5\n237,515,7.0\n237,516,7.5\n237,517,8.0\n237,518,8.5\n237,519,9.0\n237,520,9.5\n237,521,10.0\n237,522,10.5\n237,523,11.0\n237,524,11.5\n237,525,12.0\n237,526,11.5\n237,527,11.0\n237,528,10.5\n237,529,10.0\n237,530,9.5\n237,531,9.0\n237,532,8.5\n237,533,8.0\n237,534,7.5\n237,535,7.0\n237,536,6.5\n237,537,6.0\n237,538,6.5\n237,539,7.0\n237,540,7.5\n237,541,8.0\n237,542,8.5\n237,543,9.0\n237,544,9.5\n237,545,10.0\n237,546,10.5\n237,547,11.0\n237,548,11.5\n237,549,12.0\n237,550,12.5\n237,551,12.0\n237,552,11.5\n237,553,11.0\n237,554,10.5\n237,555,10.0\n237,556,9.5\n237,557,9.0\n237,558,8.5\n237,559,8.0\n237,560,7.5\n237,561,7.0\n237,562,6.5\n237,563,7.0\n237,564,7.5\n237,565,8.0\n237,566,8.5\n237,567,9.0\n237,568,9.5\n237,569,10.0\n237,570,10.5\n237,571,11.0\n237,572,11.5\n237,573,12.0\n237,574,12.5\n237,575,13.0\n237,576,12.5\n237,577,12.0\n237,578,11.5\n237,579,11.0\n237,580,10.5\n237,581,10.0\n237,582,9.5\n237,583,9.0\n237,584,8.5\n237,585,8.0\n237,586,7.5\n237,587,7.0\n237,588,7.5\n237,589,8.0\n237,590,8.5\n237,591,9.0\n237,592,9.5\n237,593,10.0\n237,594,10.5\n237,595,11.0\n237,596,11.5\n237,597,12.0\n237,598,12.5\n237,599,13.0\n237,600,13.5\n237,601,13.0\n237,602,12.5\n237,603,12.0\n237,604,11.5\n237,605,11.0\n237,606,10.5\n237,607,10.0\n237,608,9.5\n237,609,9.0\n237,610,8.5\n237,611,8.0\n237,612,7.5\n237,613,8.0\n237,614,8.5\n237,615,9.0\n237,616,9.5\n237,617,10.0\n237,618,10.5\n237,619,11.0\n237,620,11.5\n237,621,12.0\n237,622,12.5\n237,623,13.0\n237,624,13.5\n238,0,11.0\n238,1,10.5\n238,2,10.0\n238,3,9.5\n238,4,9.0\n238,5,8.5\n238,6,8.0\n238,7,7.5\n238,8,7.0\n238,9,6.5\n238,10,6.0\n238,11,5.5\n238,12,5.0\n238,13,4.5\n238,14,5.0\n238,15,5.5\n238,16,6.0\n238,17,6.5\n238,18,7.0\n238,19,7.5\n238,20,8.0\n238,21,8.5\n238,22,9.0\n238,23,9.5\n238,24,10.0\n238,25,10.5\n238,26,10.0\n238,27,9.5\n238,28,9.0\n238,29,8.5\n238,30,8.0\n238,31,7.5\n238,32,7.0\n238,33,6.5\n238,34,6.0\n238,35,5.5\n238,36,5.0\n238,37,4.5\n238,38,4.0\n238,39,4.5\n238,40,5.0\n238,41,5.5\n238,42,6.0\n238,43,6.5\n238,44,7.0\n238,45,7.5\n238,46,8.0\n238,47,8.5\n238,48,9.0\n238,49,9.5\n238,50,10.0\n238,51,9.5\n238,52,9.0\n238,53,8.5\n238,54,8.0\n238,55,7.5\n238,56,7.0\n238,57,6.5\n238,58,6.0\n238,59,5.5\n238,60,5.0\n238,61,4.5\n238,62,4.0\n238,63,3.5\n238,64,4.0\n238,65,4.5\n238,66,5.0\n238,67,5.5\n238,68,6.0\n238,69,6.5\n238,70,7.0\n238,71,7.5\n238,72,8.0\n238,73,8.5\n238,74,9.0\n238,75,9.5\n238,76,9.0\n238,77,8.5\n238,78,8.0\n238,79,7.5\n238,80,7.0\n238,81,6.5\n238,82,6.0\n238,83,5.5\n238,84,5.0\n238,85,4.5\n238,86,4.0\n238,87,3.5\n238,88,3.0\n238,89,3.5\n238,90,4.0\n238,91,4.5\n238,92,5.0\n238,93,5.5\n238,94,6.0\n238,95,6.5\n238,96,7.0\n238,97,7.5\n238,98,8.0\n238,99,8.5\n238,100,9.0\n238,101,8.5\n238,102,8.0\n238,103,7.5\n238,104,7.0\n238,105,6.5\n238,106,6.0\n238,107,5.5\n238,108,5.0\n238,109,4.5\n238,110,4.0\n238,111,3.5\n238,112,3.0\n238,113,2.5\n238,114,3.0\n238,115,3.5\n238,116,4.0\n238,117,4.5\n238,118,5.0\n238,119,5.5\n238,120,6.0\n238,121,6.5\n238,122,7.0\n238,123,7.5\n238,124,8.0\n238,125,8.5\n238,126,8.0\n238,127,7.5\n238,128,7.0\n238,129,6.5\n238,130,6.0\n238,131,5.5\n238,132,5.0\n238,133,4.5\n238,134,4.0\n238,135,3.5\n238,136,3.0\n238,137,2.5\n238,138,2.0\n238,139,2.5\n238,140,3.0\n238,141,3.5\n238,142,4.0\n238,143,4.5\n238,144,5.0\n238,145,5.5\n238,146,6.0\n238,147,6.5\n238,148,7.0\n238,149,7.5\n238,150,8.0\n238,151,7.5\n238,152,7.0\n238,153,6.5\n238,154,6.0\n238,155,5.5\n238,156,5.0\n238,157,4.5\n238,158,4.0\n238,159,3.5\n238,160,3.0\n238,161,2.5\n238,162,2.0\n238,163,1.5\n238,164,2.0\n238,165,2.5\n238,166,3.0\n238,167,3.5\n238,168,4.0\n238,169,4.5\n238,170,5.0\n238,171,5.5\n238,172,6.0\n238,173,6.5\n238,174,7.0\n238,175,7.5\n238,176,7.0\n238,177,6.5\n238,178,6.0\n238,179,5.5\n238,180,5.0\n238,181,4.5\n238,182,4.0\n238,183,3.5\n238,184,3.0\n238,185,2.5\n238,186,2.0\n238,187,1.5\n238,188,1.0\n238,189,1.5\n238,190,2.0\n238,191,2.5\n238,192,3.0\n238,193,3.5\n238,194,4.0\n238,195,4.5\n238,196,5.0\n238,197,5.5\n238,198,6.0\n238,199,6.5\n238,200,7.0\n238,201,6.5\n238,202,6.0\n238,203,5.5\n238,204,5.0\n238,205,4.5\n238,206,4.0\n238,207,3.5\n238,208,3.0\n238,209,2.5\n238,210,2.0\n238,211,1.5\n238,212,1.0\n238,213,0.5\n238,214,1.0\n238,215,1.5\n238,216,2.0\n238,217,2.5\n238,218,3.0\n238,219,3.5\n238,220,4.0\n238,221,4.5\n238,222,5.0\n238,223,5.5\n238,224,6.0\n238,225,6.5\n238,226,6.0\n238,227,5.5\n238,228,5.0\n238,229,4.5\n238,230,4.0\n238,231,3.5\n238,232,3.0\n238,233,2.5\n238,234,2.0\n238,235,1.5\n238,236,1.0\n238,237,0.5\n238,238,0\n238,239,0.5\n238,240,1.0\n238,241,1.5\n238,242,2.0\n238,243,2.5\n238,244,3.0\n238,245,3.5\n238,246,4.0\n238,247,4.5\n238,248,5.0\n238,249,5.5\n238,250,7.0\n238,251,6.5\n238,252,6.0\n238,253,5.5\n238,254,5.0\n238,255,4.5\n238,256,4.0\n238,257,3.5\n238,258,3.0\n238,259,2.5\n238,260,2.0\n238,261,1.5\n238,262,1.0\n238,263,0.5\n238,264,1.0\n238,265,1.5\n238,266,2.0\n238,267,2.5\n238,268,3.0\n238,269,3.5\n238,270,4.0\n238,271,4.5\n238,272,5.0\n238,273,5.5\n238,274,6.0\n238,275,7.5\n238,276,7.0\n238,277,6.5\n238,278,6.0\n238,279,5.5\n238,280,5.0\n238,281,4.5\n238,282,4.0\n238,283,3.5\n238,284,3.0\n238,285,2.5\n238,286,2.0\n238,287,1.5\n238,288,1.0\n238,289,1.5\n238,290,2.0\n238,291,2.5\n238,292,3.0\n238,293,3.5\n238,294,4.0\n238,295,4.5\n238,296,5.0\n238,297,5.5\n238,298,6.0\n238,299,6.5\n238,300,8.0\n238,301,7.5\n238,302,7.0\n238,303,6.5\n238,304,6.0\n238,305,5.5\n238,306,5.0\n238,307,4.5\n238,308,4.0\n238,309,3.5\n238,310,3.0\n238,311,2.5\n238,312,2.0\n238,313,1.5\n238,314,2.0\n238,315,2.5\n238,316,3.0\n238,317,3.5\n238,318,4.0\n238,319,4.5\n238,320,5.0\n238,321,5.5\n238,322,6.0\n238,323,6.5\n238,324,7.0\n238,325,8.5\n238,326,8.0\n238,327,7.5\n238,328,7.0\n238,329,6.5\n238,330,6.0\n238,331,5.5\n238,332,5.0\n238,333,4.5\n238,334,4.0\n238,335,3.5\n238,336,3.0\n238,337,2.5\n238,338,2.0\n238,339,2.5\n238,340,3.0\n238,341,3.5\n238,342,4.0\n238,343,4.5\n238,344,5.0\n238,345,5.5\n238,346,6.0\n238,347,6.5\n238,348,7.0\n238,349,7.5\n238,350,9.0\n238,351,8.5\n238,352,8.0\n238,353,7.5\n238,354,7.0\n238,355,6.5\n238,356,6.0\n238,357,5.5\n238,358,5.0\n238,359,4.5\n238,360,4.0\n238,361,3.5\n238,362,3.0\n238,363,2.5\n238,364,3.0\n238,365,3.5\n238,366,4.0\n238,367,4.5\n238,368,5.0\n238,369,5.5\n238,370,6.0\n238,371,6.5\n238,372,7.0\n238,373,7.5\n238,374,8.0\n238,375,9.5\n238,376,9.0\n238,377,8.5\n238,378,8.0\n238,379,7.5\n238,380,7.0\n238,381,6.5\n238,382,6.0\n238,383,5.5\n238,384,5.0\n238,385,4.5\n238,386,4.0\n238,387,3.5\n238,388,3.0\n238,389,3.5\n238,390,4.0\n238,391,4.5\n238,392,5.0\n238,393,5.5\n238,394,6.0\n238,395,6.5\n238,396,7.0\n238,397,7.5\n238,398,8.0\n238,399,8.5\n238,400,10.0\n238,401,9.5\n238,402,9.0\n238,403,8.5\n238,404,8.0\n238,405,7.5\n238,406,7.0\n238,407,6.5\n238,408,6.0\n238,409,5.5\n238,410,5.0\n238,411,4.5\n238,412,4.0\n238,413,3.5\n238,414,4.0\n238,415,4.5\n238,416,5.0\n238,417,5.5\n238,418,6.0\n238,419,6.5\n238,420,7.0\n238,421,7.5\n238,422,8.0\n238,423,8.5\n238,424,9.0\n238,425,10.5\n238,426,10.0\n238,427,9.5\n238,428,9.0\n238,429,8.5\n238,430,8.0\n238,431,7.5\n238,432,7.0\n238,433,6.5\n238,434,6.0\n238,435,5.5\n238,436,5.0\n238,437,4.5\n238,438,4.0\n238,439,4.5\n238,440,5.0\n238,441,5.5\n238,442,6.0\n238,443,6.5\n238,444,7.0\n238,445,7.5\n238,446,8.0\n238,447,8.5\n238,448,9.0\n238,449,9.5\n238,450,11.0\n238,451,10.5\n238,452,10.0\n238,453,9.5\n238,454,9.0\n238,455,8.5\n238,456,8.0\n238,457,7.5\n238,458,7.0\n238,459,6.5\n238,460,6.0\n238,461,5.5\n238,462,5.0\n238,463,4.5\n238,464,5.0\n238,465,5.5\n238,466,6.0\n238,467,6.5\n238,468,7.0\n238,469,7.5\n238,470,8.0\n238,471,8.5\n238,472,9.0\n238,473,9.5\n238,474,10.0\n238,475,11.5\n238,476,11.0\n238,477,10.5\n238,478,10.0\n238,479,9.5\n238,480,9.0\n238,481,8.5\n238,482,8.0\n238,483,7.5\n238,484,7.0\n238,485,6.5\n238,486,6.0\n238,487,5.5\n238,488,5.0\n238,489,5.5\n238,490,6.0\n238,491,6.5\n238,492,7.0\n238,493,7.5\n238,494,8.0\n238,495,8.5\n238,496,9.0\n238,497,9.5\n238,498,10.0\n238,499,10.5\n238,500,12.0\n238,501,11.5\n238,502,11.0\n238,503,10.5\n238,504,10.0\n238,505,9.5\n238,506,9.0\n238,507,8.5\n238,508,8.0\n238,509,7.5\n238,510,7.0\n238,511,6.5\n238,512,6.0\n238,513,5.5\n238,514,6.0\n238,515,6.5\n238,516,7.0\n238,517,7.5\n238,518,8.0\n238,519,8.5\n238,520,9.0\n238,521,9.5\n238,522,10.0\n238,523,10.5\n238,524,11.0\n238,525,12.5\n238,526,12.0\n238,527,11.5\n238,528,11.0\n238,529,10.5\n238,530,10.0\n238,531,9.5\n238,532,9.0\n238,533,8.5\n238,534,8.0\n238,535,7.5\n238,536,7.0\n238,537,6.5\n238,538,6.0\n238,539,6.5\n238,540,7.0\n238,541,7.5\n238,542,8.0\n238,543,8.5\n238,544,9.0\n238,545,9.5\n238,546,10.0\n238,547,10.5\n238,548,11.0\n238,549,11.5\n238,550,13.0\n238,551,12.5\n238,552,12.0\n238,553,11.5\n238,554,11.0\n238,555,10.5\n238,556,10.0\n238,557,9.5\n238,558,9.0\n238,559,8.5\n238,560,8.0\n238,561,7.5\n238,562,7.0\n238,563,6.5\n238,564,7.0\n238,565,7.5\n238,566,8.0\n238,567,8.5\n238,568,9.0\n238,569,9.5\n238,570,10.0\n238,571,10.5\n238,572,11.0\n238,573,11.5\n238,574,12.0\n238,575,13.5\n238,576,13.0\n238,577,12.5\n238,578,12.0\n238,579,11.5\n238,580,11.0\n238,581,10.5\n238,582,10.0\n238,583,9.5\n238,584,9.0\n238,585,8.5\n238,586,8.0\n238,587,7.5\n238,588,7.0\n238,589,7.5\n238,590,8.0\n238,591,8.5\n238,592,9.0\n238,593,9.5\n238,594,10.0\n238,595,10.5\n238,596,11.0\n238,597,11.5\n238,598,12.0\n238,599,12.5\n238,600,14.0\n238,601,13.5\n238,602,13.0\n238,603,12.5\n238,604,12.0\n238,605,11.5\n238,606,11.0\n238,607,10.5\n238,608,10.0\n238,609,9.5\n238,610,9.0\n238,611,8.5\n238,612,8.0\n238,613,7.5\n238,614,8.0\n238,615,8.5\n238,616,9.0\n238,617,9.5\n238,618,10.0\n238,619,10.5\n238,620,11.0\n238,621,11.5\n238,622,12.0\n238,623,12.5\n238,624,13.0\n239,0,11.5\n239,1,11.0\n239,2,10.5\n239,3,10.0\n239,4,9.5\n239,5,9.0\n239,6,8.5\n239,7,8.0\n239,8,7.5\n239,9,7.0\n239,10,6.5\n239,11,6.0\n239,12,5.5\n239,13,5.0\n239,14,4.5\n239,15,5.0\n239,16,5.5\n239,17,6.0\n239,18,6.5\n239,19,7.0\n239,20,7.5\n239,21,8.0\n239,22,8.5\n239,23,9.0\n239,24,9.5\n239,25,11.0\n239,26,10.5\n239,27,10.0\n239,28,9.5\n239,29,9.0\n239,30,8.5\n239,31,8.0\n239,32,7.5\n239,33,7.0\n239,34,6.5\n239,35,6.0\n239,36,5.5\n239,37,5.0\n239,38,4.5\n239,39,4.0\n239,40,4.5\n239,41,5.0\n239,42,5.5\n239,43,6.0\n239,44,6.5\n239,45,7.0\n239,46,7.5\n239,47,8.0\n239,48,8.5\n239,49,9.0\n239,50,10.5\n239,51,10.0\n239,52,9.5\n239,53,9.0\n239,54,8.5\n239,55,8.0\n239,56,7.5\n239,57,7.0\n239,58,6.5\n239,59,6.0\n239,60,5.5\n239,61,5.0\n239,62,4.5\n239,63,4.0\n239,64,3.5\n239,65,4.0\n239,66,4.5\n239,67,5.0\n239,68,5.5\n239,69,6.0\n239,70,6.5\n239,71,7.0\n239,72,7.5\n239,73,8.0\n239,74,8.5\n239,75,10.0\n239,76,9.5\n239,77,9.0\n239,78,8.5\n239,79,8.0\n239,80,7.5\n239,81,7.0\n239,82,6.5\n239,83,6.0\n239,84,5.5\n239,85,5.0\n239,86,4.5\n239,87,4.0\n239,88,3.5\n239,89,3.0\n239,90,3.5\n239,91,4.0\n239,92,4.5\n239,93,5.0\n239,94,5.5\n239,95,6.0\n239,96,6.5\n239,97,7.0\n239,98,7.5\n239,99,8.0\n239,100,9.5\n239,101,9.0\n239,102,8.5\n239,103,8.0\n239,104,7.5\n239,105,7.0\n239,106,6.5\n239,107,6.0\n239,108,5.5\n239,109,5.0\n239,110,4.5\n239,111,4.0\n239,112,3.5\n239,113,3.0\n239,114,2.5\n239,115,3.0\n239,116,3.5\n239,117,4.0\n239,118,4.5\n239,119,5.0\n239,120,5.5\n239,121,6.0\n239,122,6.5\n239,123,7.0\n239,124,7.5\n239,125,9.0\n239,126,8.5\n239,127,8.0\n239,128,7.5\n239,129,7.0\n239,130,6.5\n239,131,6.0\n239,132,5.5\n239,133,5.0\n239,134,4.5\n239,135,4.0\n239,136,3.5\n239,137,3.0\n239,138,2.5\n239,139,2.0\n239,140,2.5\n239,141,3.0\n239,142,3.5\n239,143,4.0\n239,144,4.5\n239,145,5.0\n239,146,5.5\n239,147,6.0\n239,148,6.5\n239,149,7.0\n239,150,8.5\n239,151,8.0\n239,152,7.5\n239,153,7.0\n239,154,6.5\n239,155,6.0\n239,156,5.5\n239,157,5.0\n239,158,4.5\n239,159,4.0\n239,160,3.5\n239,161,3.0\n239,162,2.5\n239,163,2.0\n239,164,1.5\n239,165,2.0\n239,166,2.5\n239,167,3.0\n239,168,3.5\n239,169,4.0\n239,170,4.5\n239,171,5.0\n239,172,5.5\n239,173,6.0\n239,174,6.5\n239,175,8.0\n239,176,7.5\n239,177,7.0\n239,178,6.5\n239,179,6.0\n239,180,5.5\n239,181,5.0\n239,182,4.5\n239,183,4.0\n239,184,3.5\n239,185,3.0\n239,186,2.5\n239,187,2.0\n239,188,1.5\n239,189,1.0\n239,190,1.5\n239,191,2.0\n239,192,2.5\n239,193,3.0\n239,194,3.5\n239,195,4.0\n239,196,4.5\n239,197,5.0\n239,198,5.5\n239,199,6.0\n239,200,7.5\n239,201,7.0\n239,202,6.5\n239,203,6.0\n239,204,5.5\n239,205,5.0\n239,206,4.5\n239,207,4.0\n239,208,3.5\n239,209,3.0\n239,210,2.5\n239,211,2.0\n239,212,1.5\n239,213,1.0\n239,214,0.5\n239,215,1.0\n239,216,1.5\n239,217,2.0\n239,218,2.5\n239,219,3.0\n239,220,3.5\n239,221,4.0\n239,222,4.5\n239,223,5.0\n239,224,5.5\n239,225,7.0\n239,226,6.5\n239,227,6.0\n239,228,5.5\n239,229,5.0\n239,230,4.5\n239,231,4.0\n239,232,3.5\n239,233,3.0\n239,234,2.5\n239,235,2.0\n239,236,1.5\n239,237,1.0\n239,238,0.5\n239,239,0\n239,240,0.5\n239,241,1.0\n239,242,1.5\n239,243,2.0\n239,244,2.5\n239,245,3.0\n239,246,3.5\n239,247,4.0\n239,248,4.5\n239,249,5.0\n239,250,7.5\n239,251,7.0\n239,252,6.5\n239,253,6.0\n239,254,5.5\n239,255,5.0\n239,256,4.5\n239,257,4.0\n239,258,3.5\n239,259,3.0\n239,260,2.5\n239,261,2.0\n239,262,1.5\n239,263,1.0\n239,264,0.5\n239,265,1.0\n239,266,1.5\n239,267,2.0\n239,268,2.5\n239,269,3.0\n239,270,3.5\n239,271,4.0\n239,272,4.5\n239,273,5.0\n239,274,5.5\n239,275,8.0\n239,276,7.5\n239,277,7.0\n239,278,6.5\n239,279,6.0\n239,280,5.5\n239,281,5.0\n239,282,4.5\n239,283,4.0\n239,284,3.5\n239,285,3.0\n239,286,2.5\n239,287,2.0\n239,288,1.5\n239,289,1.0\n239,290,1.5\n239,291,2.0\n239,292,2.5\n239,293,3.0\n239,294,3.5\n239,295,4.0\n239,296,4.5\n239,297,5.0\n239,298,5.5\n239,299,6.0\n239,300,8.5\n239,301,8.0\n239,302,7.5\n239,303,7.0\n239,304,6.5\n239,305,6.0\n239,306,5.5\n239,307,5.0\n239,308,4.5\n239,309,4.0\n239,310,3.5\n239,311,3.0\n239,312,2.5\n239,313,2.0\n239,314,1.5\n239,315,2.0\n239,316,2.5\n239,317,3.0\n239,318,3.5\n239,319,4.0\n239,320,4.5\n239,321,5.0\n239,322,5.5\n239,323,6.0\n239,324,6.5\n239,325,9.0\n239,326,8.5\n239,327,8.0\n239,328,7.5\n239,329,7.0\n239,330,6.5\n239,331,6.0\n239,332,5.5\n239,333,5.0\n239,334,4.5\n239,335,4.0\n239,336,3.5\n239,337,3.0\n239,338,2.5\n239,339,2.0\n239,340,2.5\n239,341,3.0\n239,342,3.5\n239,343,4.0\n239,344,4.5\n239,345,5.0\n239,346,5.5\n239,347,6.0\n239,348,6.5\n239,349,7.0\n239,350,9.5\n239,351,9.0\n239,352,8.5\n239,353,8.0\n239,354,7.5\n239,355,7.0\n239,356,6.5\n239,357,6.0\n239,358,5.5\n239,359,5.0\n239,360,4.5\n239,361,4.0\n239,362,3.5\n239,363,3.0\n239,364,2.5\n239,365,3.0\n239,366,3.5\n239,367,4.0\n239,368,4.5\n239,369,5.0\n239,370,5.5\n239,371,6.0\n239,372,6.5\n239,373,7.0\n239,374,7.5\n239,375,10.0\n239,376,9.5\n239,377,9.0\n239,378,8.5\n239,379,8.0\n239,380,7.5\n239,381,7.0\n239,382,6.5\n239,383,6.0\n239,384,5.5\n239,385,5.0\n239,386,4.5\n239,387,4.0\n239,388,3.5\n239,389,3.0\n239,390,3.5\n239,391,4.0\n239,392,4.5\n239,393,5.0\n239,394,5.5\n239,395,6.0\n239,396,6.5\n239,397,7.0\n239,398,7.5\n239,399,8.0\n239,400,10.5\n239,401,10.0\n239,402,9.5\n239,403,9.0\n239,404,8.5\n239,405,8.0\n239,406,7.5\n239,407,7.0\n239,408,6.5\n239,409,6.0\n239,410,5.5\n239,411,5.0\n239,412,4.5\n239,413,4.0\n239,414,3.5\n239,415,4.0\n239,416,4.5\n239,417,5.0\n239,418,5.5\n239,419,6.0\n239,420,6.5\n239,421,7.0\n239,422,7.5\n239,423,8.0\n239,424,8.5\n239,425,11.0\n239,426,10.5\n239,427,10.0\n239,428,9.5\n239,429,9.0\n239,430,8.5\n239,431,8.0\n239,432,7.5\n239,433,7.0\n239,434,6.5\n239,435,6.0\n239,436,5.5\n239,437,5.0\n239,438,4.5\n239,439,4.0\n239,440,4.5\n239,441,5.0\n239,442,5.5\n239,443,6.0\n239,444,6.5\n239,445,7.0\n239,446,7.5\n239,447,8.0\n239,448,8.5\n239,449,9.0\n239,450,11.5\n239,451,11.0\n239,452,10.5\n239,453,10.0\n239,454,9.5\n239,455,9.0\n239,456,8.5\n239,457,8.0\n239,458,7.5\n239,459,7.0\n239,460,6.5\n239,461,6.0\n239,462,5.5\n239,463,5.0\n239,464,4.5\n239,465,5.0\n239,466,5.5\n239,467,6.0\n239,468,6.5\n239,469,7.0\n239,470,7.5\n239,471,8.0\n239,472,8.5\n239,473,9.0\n239,474,9.5\n239,475,12.0\n239,476,11.5\n239,477,11.0\n239,478,10.5\n239,479,10.0\n239,480,9.5\n239,481,9.0\n239,482,8.5\n239,483,8.0\n239,484,7.5\n239,485,7.0\n239,486,6.5\n239,487,6.0\n239,488,5.5\n239,489,5.0\n239,490,5.5\n239,491,6.0\n239,492,6.5\n239,493,7.0\n239,494,7.5\n239,495,8.0\n239,496,8.5\n239,497,9.0\n239,498,9.5\n239,499,10.0\n239,500,12.5\n239,501,12.0\n239,502,11.5\n239,503,11.0\n239,504,10.5\n239,505,10.0\n239,506,9.5\n239,507,9.0\n239,508,8.5\n239,509,8.0\n239,510,7.5\n239,511,7.0\n239,512,6.5\n239,513,6.0\n239,514,5.5\n239,515,6.0\n239,516,6.5\n239,517,7.0\n239,518,7.5\n239,519,8.0\n239,520,8.5\n239,521,9.0\n239,522,9.5\n239,523,10.0\n239,524,10.5\n239,525,13.0\n239,526,12.5\n239,527,12.0\n239,528,11.5\n239,529,11.0\n239,530,10.5\n239,531,10.0\n239,532,9.5\n239,533,9.0\n239,534,8.5\n239,535,8.0\n239,536,7.5\n239,537,7.0\n239,538,6.5\n239,539,6.0\n239,540,6.5\n239,541,7.0\n239,542,7.5\n239,543,8.0\n239,544,8.5\n239,545,9.0\n239,546,9.5\n239,547,10.0\n239,548,10.5\n239,549,11.0\n239,550,13.5\n239,551,13.0\n239,552,12.5\n239,553,12.0\n239,554,11.5\n239,555,11.0\n239,556,10.5\n239,557,10.0\n239,558,9.5\n239,559,9.0\n239,560,8.5\n239,561,8.0\n239,562,7.5\n239,563,7.0\n239,564,6.5\n239,565,7.0\n239,566,7.5\n239,567,8.0\n239,568,8.5\n239,569,9.0\n239,570,9.5\n239,571,10.0\n239,572,10.5\n239,573,11.0\n239,574,11.5\n239,575,14.0\n239,576,13.5\n239,577,13.0\n239,578,12.5\n239,579,12.0\n239,580,11.5\n239,581,11.0\n239,582,10.5\n239,583,10.0\n239,584,9.5\n239,585,9.0\n239,586,8.5\n239,587,8.0\n239,588,7.5\n239,589,7.0\n239,590,7.5\n239,591,8.0\n239,592,8.5\n239,593,9.0\n239,594,9.5\n239,595,10.0\n239,596,10.5\n239,597,11.0\n239,598,11.5\n239,599,12.0\n239,600,14.5\n239,601,14.0\n239,602,13.5\n239,603,13.0\n239,604,12.5\n239,605,12.0\n239,606,11.5\n239,607,11.0\n239,608,10.5\n239,609,10.0\n239,610,9.5\n239,611,9.0\n239,612,8.5\n239,613,8.0\n239,614,7.5\n239,615,8.0\n239,616,8.5\n239,617,9.0\n239,618,9.5\n239,619,10.0\n239,620,10.5\n239,621,11.0\n239,622,11.5\n239,623,12.0\n239,624,12.5\n240,0,12.0\n240,1,11.5\n240,2,11.0\n240,3,10.5\n240,4,10.0\n240,5,9.5\n240,6,9.0\n240,7,8.5\n240,8,8.0\n240,9,7.5\n240,10,7.0\n240,11,6.5\n240,12,6.0\n240,13,5.5\n240,14,5.0\n240,15,4.5\n240,16,5.0\n240,17,5.5\n240,18,6.0\n240,19,6.5\n240,20,7.0\n240,21,7.5\n240,22,8.0\n240,23,8.5\n240,24,9.0\n240,25,11.5\n240,26,11.0\n240,27,10.5\n240,28,10.0\n240,29,9.5\n240,30,9.0\n240,31,8.5\n240,32,8.0\n240,33,7.5\n240,34,7.0\n240,35,6.5\n240,36,6.0\n240,37,5.5\n240,38,5.0\n240,39,4.5\n240,40,4.0\n240,41,4.5\n240,42,5.0\n240,43,5.5\n240,44,6.0\n240,45,6.5\n240,46,7.0\n240,47,7.5\n240,48,8.0\n240,49,8.5\n240,50,11.0\n240,51,10.5\n240,52,10.0\n240,53,9.5\n240,54,9.0\n240,55,8.5\n240,56,8.0\n240,57,7.5\n240,58,7.0\n240,59,6.5\n240,60,6.0\n240,61,5.5\n240,62,5.0\n240,63,4.5\n240,64,4.0\n240,65,3.5\n240,66,4.0\n240,67,4.5\n240,68,5.0\n240,69,5.5\n240,70,6.0\n240,71,6.5\n240,72,7.0\n240,73,7.5\n240,74,8.0\n240,75,10.5\n240,76,10.0\n240,77,9.5\n240,78,9.0\n240,79,8.5\n240,80,8.0\n240,81,7.5\n240,82,7.0\n240,83,6.5\n240,84,6.0\n240,85,5.5\n240,86,5.0\n240,87,4.5\n240,88,4.0\n240,89,3.5\n240,90,3.0\n240,91,3.5\n240,92,4.0\n240,93,4.5\n240,94,5.0\n240,95,5.5\n240,96,6.0\n240,97,6.5\n240,98,7.0\n240,99,7.5\n240,100,10.0\n240,101,9.5\n240,102,9.0\n240,103,8.5\n240,104,8.0\n240,105,7.5\n240,106,7.0\n240,107,6.5\n240,108,6.0\n240,109,5.5\n240,110,5.0\n240,111,4.5\n240,112,4.0\n240,113,3.5\n240,114,3.0\n240,115,2.5\n240,116,3.0\n240,117,3.5\n240,118,4.0\n240,119,4.5\n240,120,5.0\n240,121,5.5\n240,122,6.0\n240,123,6.5\n240,124,7.0\n240,125,9.5\n240,126,9.0\n240,127,8.5\n240,128,8.0\n240,129,7.5\n240,130,7.0\n240,131,6.5\n240,132,6.0\n240,133,5.5\n240,134,5.0\n240,135,4.5\n240,136,4.0\n240,137,3.5\n240,138,3.0\n240,139,2.5\n240,140,2.0\n240,141,2.5\n240,142,3.0\n240,143,3.5\n240,144,4.0\n240,145,4.5\n240,146,5.0\n240,147,5.5\n240,148,6.0\n240,149,6.5\n240,150,9.0\n240,151,8.5\n240,152,8.0\n240,153,7.5\n240,154,7.0\n240,155,6.5\n240,156,6.0\n240,157,5.5\n240,158,5.0\n240,159,4.5\n240,160,4.0\n240,161,3.5\n240,162,3.0\n240,163,2.5\n240,164,2.0\n240,165,1.5\n240,166,2.0\n240,167,2.5\n240,168,3.0\n240,169,3.5\n240,170,4.0\n240,171,4.5\n240,172,5.0\n240,173,5.5\n240,174,6.0\n240,175,8.5\n240,176,8.0\n240,177,7.5\n240,178,7.0\n240,179,6.5\n240,180,6.0\n240,181,5.5\n240,182,5.0\n240,183,4.5\n240,184,4.0\n240,185,3.5\n240,186,3.0\n240,187,2.5\n240,188,2.0\n240,189,1.5\n240,190,1.0\n240,191,1.5\n240,192,2.0\n240,193,2.5\n240,194,3.0\n240,195,3.5\n240,196,4.0\n240,197,4.5\n240,198,5.0\n240,199,5.5\n240,200,8.0\n240,201,7.5\n240,202,7.0\n240,203,6.5\n240,204,6.0\n240,205,5.5\n240,206,5.0\n240,207,4.5\n240,208,4.0\n240,209,3.5\n240,210,3.0\n240,211,2.5\n240,212,2.0\n240,213,1.5\n240,214,1.0\n240,215,0.5\n240,216,1.0\n240,217,1.5\n240,218,2.0\n240,219,2.5\n240,220,3.0\n240,221,3.5\n240,222,4.0\n240,223,4.5\n240,224,5.0\n240,225,7.5\n240,226,7.0\n240,227,6.5\n240,228,6.0\n240,229,5.5\n240,230,5.0\n240,231,4.5\n240,232,4.0\n240,233,3.5\n240,234,3.0\n240,235,2.5\n240,236,2.0\n240,237,1.5\n240,238,1.0\n240,239,0.5\n240,240,0\n240,241,0.5\n240,242,1.0\n240,243,1.5\n240,244,2.0\n240,245,2.5\n240,246,3.0\n240,247,3.5\n240,248,4.0\n240,249,4.5\n240,250,8.0\n240,251,7.5\n240,252,7.0\n240,253,6.5\n240,254,6.0\n240,255,5.5\n240,256,5.0\n240,257,4.5\n240,258,4.0\n240,259,3.5\n240,260,3.0\n240,261,2.5\n240,262,2.0\n240,263,1.5\n240,264,1.0\n240,265,0.5\n240,266,1.0\n240,267,1.5\n240,268,2.0\n240,269,2.5\n240,270,3.0\n240,271,3.5\n240,272,4.0\n240,273,4.5\n240,274,5.0\n240,275,8.5\n240,276,8.0\n240,277,7.5\n240,278,7.0\n240,279,6.5\n240,280,6.0\n240,281,5.5\n240,282,5.0\n240,283,4.5\n240,284,4.0\n240,285,3.5\n240,286,3.0\n240,287,2.5\n240,288,2.0\n240,289,1.5\n240,290,1.0\n240,291,1.5\n240,292,2.0\n240,293,2.5\n240,294,3.0\n240,295,3.5\n240,296,4.0\n240,297,4.5\n240,298,5.0\n240,299,5.5\n240,300,9.0\n240,301,8.5\n240,302,8.0\n240,303,7.5\n240,304,7.0\n240,305,6.5\n240,306,6.0\n240,307,5.5\n240,308,5.0\n240,309,4.5\n240,310,4.0\n240,311,3.5\n240,312,3.0\n240,313,2.5\n240,314,2.0\n240,315,1.5\n240,316,2.0\n240,317,2.5\n240,318,3.0\n240,319,3.5\n240,320,4.0\n240,321,4.5\n240,322,5.0\n240,323,5.5\n240,324,6.0\n240,325,9.5\n240,326,9.0\n240,327,8.5\n240,328,8.0\n240,329,7.5\n240,330,7.0\n240,331,6.5\n240,332,6.0\n240,333,5.5\n240,334,5.0\n240,335,4.5\n240,336,4.0\n240,337,3.5\n240,338,3.0\n240,339,2.5\n240,340,2.0\n240,341,2.5\n240,342,3.0\n240,343,3.5\n240,344,4.0\n240,345,4.5\n240,346,5.0\n240,347,5.5\n240,348,6.0\n240,349,6.5\n240,350,10.0\n240,351,9.5\n240,352,9.0\n240,353,8.5\n240,354,8.0\n240,355,7.5\n240,356,7.0\n240,357,6.5\n240,358,6.0\n240,359,5.5\n240,360,5.0\n240,361,4.5\n240,362,4.0\n240,363,3.5\n240,364,3.0\n240,365,2.5\n240,366,3.0\n240,367,3.5\n240,368,4.0\n240,369,4.5\n240,370,5.0\n240,371,5.5\n240,372,6.0\n240,373,6.5\n240,374,7.0\n240,375,10.5\n240,376,10.0\n240,377,9.5\n240,378,9.0\n240,379,8.5\n240,380,8.0\n240,381,7.5\n240,382,7.0\n240,383,6.5\n240,384,6.0\n240,385,5.5\n240,386,5.0\n240,387,4.5\n240,388,4.0\n240,389,3.5\n240,390,3.0\n240,391,3.5\n240,392,4.0\n240,393,4.5\n240,394,5.0\n240,395,5.5\n240,396,6.0\n240,397,6.5\n240,398,7.0\n240,399,7.5\n240,400,11.0\n240,401,10.5\n240,402,10.0\n240,403,9.5\n240,404,9.0\n240,405,8.5\n240,406,8.0\n240,407,7.5\n240,408,7.0\n240,409,6.5\n240,410,6.0\n240,411,5.5\n240,412,5.0\n240,413,4.5\n240,414,4.0\n240,415,3.5\n240,416,4.0\n240,417,4.5\n240,418,5.0\n240,419,5.5\n240,420,6.0\n240,421,6.5\n240,422,7.0\n240,423,7.5\n240,424,8.0\n240,425,11.5\n240,426,11.0\n240,427,10.5\n240,428,10.0\n240,429,9.5\n240,430,9.0\n240,431,8.5\n240,432,8.0\n240,433,7.5\n240,434,7.0\n240,435,6.5\n240,436,6.0\n240,437,5.5\n240,438,5.0\n240,439,4.5\n240,440,4.0\n240,441,4.5\n240,442,5.0\n240,443,5.5\n240,444,6.0\n240,445,6.5\n240,446,7.0\n240,447,7.5\n240,448,8.0\n240,449,8.5\n240,450,12.0\n240,451,11.5\n240,452,11.0\n240,453,10.5\n240,454,10.0\n240,455,9.5\n240,456,9.0\n240,457,8.5\n240,458,8.0\n240,459,7.5\n240,460,7.0\n240,461,6.5\n240,462,6.0\n240,463,5.5\n240,464,5.0\n240,465,4.5\n240,466,5.0\n240,467,5.5\n240,468,6.0\n240,469,6.5\n240,470,7.0\n240,471,7.5\n240,472,8.0\n240,473,8.5\n240,474,9.0\n240,475,12.5\n240,476,12.0\n240,477,11.5\n240,478,11.0\n240,479,10.5\n240,480,10.0\n240,481,9.5\n240,482,9.0\n240,483,8.5\n240,484,8.0\n240,485,7.5\n240,486,7.0\n240,487,6.5\n240,488,6.0\n240,489,5.5\n240,490,5.0\n240,491,5.5\n240,492,6.0\n240,493,6.5\n240,494,7.0\n240,495,7.5\n240,496,8.0\n240,497,8.5\n240,498,9.0\n240,499,9.5\n240,500,13.0\n240,501,12.5\n240,502,12.0\n240,503,11.5\n240,504,11.0\n240,505,10.5\n240,506,10.0\n240,507,9.5\n240,508,9.0\n240,509,8.5\n240,510,8.0\n240,511,7.5\n240,512,7.0\n240,513,6.5\n240,514,6.0\n240,515,5.5\n240,516,6.0\n240,517,6.5\n240,518,7.0\n240,519,7.5\n240,520,8.0\n240,521,8.5\n240,522,9.0\n240,523,9.5\n240,524,10.0\n240,525,13.5\n240,526,13.0\n240,527,12.5\n240,528,12.0\n240,529,11.5\n240,530,11.0\n240,531,10.5\n240,532,10.0\n240,533,9.5\n240,534,9.0\n240,535,8.5\n240,536,8.0\n240,537,7.5\n240,538,7.0\n240,539,6.5\n240,540,6.0\n240,541,6.5\n240,542,7.0\n240,543,7.5\n240,544,8.0\n240,545,8.5\n240,546,9.0\n240,547,9.5\n240,548,10.0\n240,549,10.5\n240,550,14.0\n240,551,13.5\n240,552,13.0\n240,553,12.5\n240,554,12.0\n240,555,11.5\n240,556,11.0\n240,557,10.5\n240,558,10.0\n240,559,9.5\n240,560,9.0\n240,561,8.5\n240,562,8.0\n240,563,7.5\n240,564,7.0\n240,565,6.5\n240,566,7.0\n240,567,7.5\n240,568,8.0\n240,569,8.5\n240,570,9.0\n240,571,9.5\n240,572,10.0\n240,573,10.5\n240,574,11.0\n240,575,14.5\n240,576,14.0\n240,577,13.5\n240,578,13.0\n240,579,12.5\n240,580,12.0\n240,581,11.5\n240,582,11.0\n240,583,10.5\n240,584,10.0\n240,585,9.5\n240,586,9.0\n240,587,8.5\n240,588,8.0\n240,589,7.5\n240,590,7.0\n240,591,7.5\n240,592,8.0\n240,593,8.5\n240,594,9.0\n240,595,9.5\n240,596,10.0\n240,597,10.5\n240,598,11.0\n240,599,11.5\n240,600,15.0\n240,601,14.5\n240,602,14.0\n240,603,13.5\n240,604,13.0\n240,605,12.5\n240,606,12.0\n240,607,11.5\n240,608,11.0\n240,609,10.5\n240,610,10.0\n240,611,9.5\n240,612,9.0\n240,613,8.5\n240,614,8.0\n240,615,7.5\n240,616,8.0\n240,617,8.5\n240,618,9.0\n240,619,9.5\n240,620,10.0\n240,621,10.5\n240,622,11.0\n240,623,11.5\n240,624,12.0\n241,0,12.5\n241,1,12.0\n241,2,11.5\n241,3,11.0\n241,4,10.5\n241,5,10.0\n241,6,9.5\n241,7,9.0\n241,8,8.5\n241,9,8.0\n241,10,7.5\n241,11,7.0\n241,12,6.5\n241,13,6.0\n241,14,5.5\n241,15,5.0\n241,16,4.5\n241,17,5.0\n241,18,5.5\n241,19,6.0\n241,20,6.5\n241,21,7.0\n241,22,7.5\n241,23,8.0\n241,24,8.5\n241,25,12.0\n241,26,11.5\n241,27,11.0\n241,28,10.5\n241,29,10.0\n241,30,9.5\n241,31,9.0\n241,32,8.5\n241,33,8.0\n241,34,7.5\n241,35,7.0\n241,36,6.5\n241,37,6.0\n241,38,5.5\n241,39,5.0\n241,40,4.5\n241,41,4.0\n241,42,4.5\n241,43,5.0\n241,44,5.5\n241,45,6.0\n241,46,6.5\n241,47,7.0\n241,48,7.5\n241,49,8.0\n241,50,11.5\n241,51,11.0\n241,52,10.5\n241,53,10.0\n241,54,9.5\n241,55,9.0\n241,56,8.5\n241,57,8.0\n241,58,7.5\n241,59,7.0\n241,60,6.5\n241,61,6.0\n241,62,5.5\n241,63,5.0\n241,64,4.5\n241,65,4.0\n241,66,3.5\n241,67,4.0\n241,68,4.5\n241,69,5.0\n241,70,5.5\n241,71,6.0\n241,72,6.5\n241,73,7.0\n241,74,7.5\n241,75,11.0\n241,76,10.5\n241,77,10.0\n241,78,9.5\n241,79,9.0\n241,80,8.5\n241,81,8.0\n241,82,7.5\n241,83,7.0\n241,84,6.5\n241,85,6.0\n241,86,5.5\n241,87,5.0\n241,88,4.5\n241,89,4.0\n241,90,3.5\n241,91,3.0\n241,92,3.5\n241,93,4.0\n241,94,4.5\n241,95,5.0\n241,96,5.5\n241,97,6.0\n241,98,6.5\n241,99,7.0\n241,100,10.5\n241,101,10.0\n241,102,9.5\n241,103,9.0\n241,104,8.5\n241,105,8.0\n241,106,7.5\n241,107,7.0\n241,108,6.5\n241,109,6.0\n241,110,5.5\n241,111,5.0\n241,112,4.5\n241,113,4.0\n241,114,3.5\n241,115,3.0\n241,116,2.5\n241,117,3.0\n241,118,3.5\n241,119,4.0\n241,120,4.5\n241,121,5.0\n241,122,5.5\n241,123,6.0\n241,124,6.5\n241,125,10.0\n241,126,9.5\n241,127,9.0\n241,128,8.5\n241,129,8.0\n241,130,7.5\n241,131,7.0\n241,132,6.5\n241,133,6.0\n241,134,5.5\n241,135,5.0\n241,136,4.5\n241,137,4.0\n241,138,3.5\n241,139,3.0\n241,140,2.5\n241,141,2.0\n241,142,2.5\n241,143,3.0\n241,144,3.5\n241,145,4.0\n241,146,4.5\n241,147,5.0\n241,148,5.5\n241,149,6.0\n241,150,9.5\n241,151,9.0\n241,152,8.5\n241,153,8.0\n241,154,7.5\n241,155,7.0\n241,156,6.5\n241,157,6.0\n241,158,5.5\n241,159,5.0\n241,160,4.5\n241,161,4.0\n241,162,3.5\n241,163,3.0\n241,164,2.5\n241,165,2.0\n241,166,1.5\n241,167,2.0\n241,168,2.5\n241,169,3.0\n241,170,3.5\n241,171,4.0\n241,172,4.5\n241,173,5.0\n241,174,5.5\n241,175,9.0\n241,176,8.5\n241,177,8.0\n241,178,7.5\n241,179,7.0\n241,180,6.5\n241,181,6.0\n241,182,5.5\n241,183,5.0\n241,184,4.5\n241,185,4.0\n241,186,3.5\n241,187,3.0\n241,188,2.5\n241,189,2.0\n241,190,1.5\n241,191,1.0\n241,192,1.5\n241,193,2.0\n241,194,2.5\n241,195,3.0\n241,196,3.5\n241,197,4.0\n241,198,4.5\n241,199,5.0\n241,200,8.5\n241,201,8.0\n241,202,7.5\n241,203,7.0\n241,204,6.5\n241,205,6.0\n241,206,5.5\n241,207,5.0\n241,208,4.5\n241,209,4.0\n241,210,3.5\n241,211,3.0\n241,212,2.5\n241,213,2.0\n241,214,1.5\n241,215,1.0\n241,216,0.5\n241,217,1.0\n241,218,1.5\n241,219,2.0\n241,220,2.5\n241,221,3.0\n241,222,3.5\n241,223,4.0\n241,224,4.5\n241,225,8.0\n241,226,7.5\n241,227,7.0\n241,228,6.5\n241,229,6.0\n241,230,5.5\n241,231,5.0\n241,232,4.5\n241,233,4.0\n241,234,3.5\n241,235,3.0\n241,236,2.5\n241,237,2.0\n241,238,1.5\n241,239,1.0\n241,240,0.5\n241,241,0\n241,242,0.5\n241,243,1.0\n241,244,1.5\n241,245,2.0\n241,246,2.5\n241,247,3.0\n241,248,3.5\n241,249,4.0\n241,250,8.5\n241,251,8.0\n241,252,7.5\n241,253,7.0\n241,254,6.5\n241,255,6.0\n241,256,5.5\n241,257,5.0\n241,258,4.5\n241,259,4.0\n241,260,3.5\n241,261,3.0\n241,262,2.5\n241,263,2.0\n241,264,1.5\n241,265,1.0\n241,266,0.5\n241,267,1.0\n241,268,1.5\n241,269,2.0\n241,270,2.5\n241,271,3.0\n241,272,3.5\n241,273,4.0\n241,274,4.5\n241,275,9.0\n241,276,8.5\n241,277,8.0\n241,278,7.5\n241,279,7.0\n241,280,6.5\n241,281,6.0\n241,282,5.5\n241,283,5.0\n241,284,4.5\n241,285,4.0\n241,286,3.5\n241,287,3.0\n241,288,2.5\n241,289,2.0\n241,290,1.5\n241,291,1.0\n241,292,1.5\n241,293,2.0\n241,294,2.5\n241,295,3.0\n241,296,3.5\n241,297,4.0\n241,298,4.5\n241,299,5.0\n241,300,9.5\n241,301,9.0\n241,302,8.5\n241,303,8.0\n241,304,7.5\n241,305,7.0\n241,306,6.5\n241,307,6.0\n241,308,5.5\n241,309,5.0\n241,310,4.5\n241,311,4.0\n241,312,3.5\n241,313,3.0\n241,314,2.5\n241,315,2.0\n241,316,1.5\n241,317,2.0\n241,318,2.5\n241,319,3.0\n241,320,3.5\n241,321,4.0\n241,322,4.5\n241,323,5.0\n241,324,5.5\n241,325,10.0\n241,326,9.5\n241,327,9.0\n241,328,8.5\n241,329,8.0\n241,330,7.5\n241,331,7.0\n241,332,6.5\n241,333,6.0\n241,334,5.5\n241,335,5.0\n241,336,4.5\n241,337,4.0\n241,338,3.5\n241,339,3.0\n241,340,2.5\n241,341,2.0\n241,342,2.5\n241,343,3.0\n241,344,3.5\n241,345,4.0\n241,346,4.5\n241,347,5.0\n241,348,5.5\n241,349,6.0\n241,350,10.5\n241,351,10.0\n241,352,9.5\n241,353,9.0\n241,354,8.5\n241,355,8.0\n241,356,7.5\n241,357,7.0\n241,358,6.5\n241,359,6.0\n241,360,5.5\n241,361,5.0\n241,362,4.5\n241,363,4.0\n241,364,3.5\n241,365,3.0\n241,366,2.5\n241,367,3.0\n241,368,3.5\n241,369,4.0\n241,370,4.5\n241,371,5.0\n241,372,5.5\n241,373,6.0\n241,374,6.5\n241,375,11.0\n241,376,10.5\n241,377,10.0\n241,378,9.5\n241,379,9.0\n241,380,8.5\n241,381,8.0\n241,382,7.5\n241,383,7.0\n241,384,6.5\n241,385,6.0\n241,386,5.5\n241,387,5.0\n241,388,4.5\n241,389,4.0\n241,390,3.5\n241,391,3.0\n241,392,3.5\n241,393,4.0\n241,394,4.5\n241,395,5.0\n241,396,5.5\n241,397,6.0\n241,398,6.5\n241,399,7.0\n241,400,11.5\n241,401,11.0\n241,402,10.5\n241,403,10.0\n241,404,9.5\n241,405,9.0\n241,406,8.5\n241,407,8.0\n241,408,7.5\n241,409,7.0\n241,410,6.5\n241,411,6.0\n241,412,5.5\n241,413,5.0\n241,414,4.5\n241,415,4.0\n241,416,3.5\n241,417,4.0\n241,418,4.5\n241,419,5.0\n241,420,5.5\n241,421,6.0\n241,422,6.5\n241,423,7.0\n241,424,7.5\n241,425,12.0\n241,426,11.5\n241,427,11.0\n241,428,10.5\n241,429,10.0\n241,430,9.5\n241,431,9.0\n241,432,8.5\n241,433,8.0\n241,434,7.5\n241,435,7.0\n241,436,6.5\n241,437,6.0\n241,438,5.5\n241,439,5.0\n241,440,4.5\n241,441,4.0\n241,442,4.5\n241,443,5.0\n241,444,5.5\n241,445,6.0\n241,446,6.5\n241,447,7.0\n241,448,7.5\n241,449,8.0\n241,450,12.5\n241,451,12.0\n241,452,11.5\n241,453,11.0\n241,454,10.5\n241,455,10.0\n241,456,9.5\n241,457,9.0\n241,458,8.5\n241,459,8.0\n241,460,7.5\n241,461,7.0\n241,462,6.5\n241,463,6.0\n241,464,5.5\n241,465,5.0\n241,466,4.5\n241,467,5.0\n241,468,5.5\n241,469,6.0\n241,470,6.5\n241,471,7.0\n241,472,7.5\n241,473,8.0\n241,474,8.5\n241,475,13.0\n241,476,12.5\n241,477,12.0\n241,478,11.5\n241,479,11.0\n241,480,10.5\n241,481,10.0\n241,482,9.5\n241,483,9.0\n241,484,8.5\n241,485,8.0\n241,486,7.5\n241,487,7.0\n241,488,6.5\n241,489,6.0\n241,490,5.5\n241,491,5.0\n241,492,5.5\n241,493,6.0\n241,494,6.5\n241,495,7.0\n241,496,7.5\n241,497,8.0\n241,498,8.5\n241,499,9.0\n241,500,13.5\n241,501,13.0\n241,502,12.5\n241,503,12.0\n241,504,11.5\n241,505,11.0\n241,506,10.5\n241,507,10.0\n241,508,9.5\n241,509,9.0\n241,510,8.5\n241,511,8.0\n241,512,7.5\n241,513,7.0\n241,514,6.5\n241,515,6.0\n241,516,5.5\n241,517,6.0\n241,518,6.5\n241,519,7.0\n241,520,7.5\n241,521,8.0\n241,522,8.5\n241,523,9.0\n241,524,9.5\n241,525,14.0\n241,526,13.5\n241,527,13.0\n241,528,12.5\n241,529,12.0\n241,530,11.5\n241,531,11.0\n241,532,10.5\n241,533,10.0\n241,534,9.5\n241,535,9.0\n241,536,8.5\n241,537,8.0\n241,538,7.5\n241,539,7.0\n241,540,6.5\n241,541,6.0\n241,542,6.5\n241,543,7.0\n241,544,7.5\n241,545,8.0\n241,546,8.5\n241,547,9.0\n241,548,9.5\n241,549,10.0\n241,550,14.5\n241,551,14.0\n241,552,13.5\n241,553,13.0\n241,554,12.5\n241,555,12.0\n241,556,11.5\n241,557,11.0\n241,558,10.5\n241,559,10.0\n241,560,9.5\n241,561,9.0\n241,562,8.5\n241,563,8.0\n241,564,7.5\n241,565,7.0\n241,566,6.5\n241,567,7.0\n241,568,7.5\n241,569,8.0\n241,570,8.5\n241,571,9.0\n241,572,9.5\n241,573,10.0\n241,574,10.5\n241,575,15.0\n241,576,14.5\n241,577,14.0\n241,578,13.5\n241,579,13.0\n241,580,12.5\n241,581,12.0\n241,582,11.5\n241,583,11.0\n241,584,10.5\n241,585,10.0\n241,586,9.5\n241,587,9.0\n241,588,8.5\n241,589,8.0\n241,590,7.5\n241,591,7.0\n241,592,7.5\n241,593,8.0\n241,594,8.5\n241,595,9.0\n241,596,9.5\n241,597,10.0\n241,598,10.5\n241,599,11.0\n241,600,15.5\n241,601,15.0\n241,602,14.5\n241,603,14.0\n241,604,13.5\n241,605,13.0\n241,606,12.5\n241,607,12.0\n241,608,11.5\n241,609,11.0\n241,610,10.5\n241,611,10.0\n241,612,9.5\n241,613,9.0\n241,614,8.5\n241,615,8.0\n241,616,7.5\n241,617,8.0\n241,618,8.5\n241,619,9.0\n241,620,9.5\n241,621,10.0\n241,622,10.5\n241,623,11.0\n241,624,11.5\n242,0,13.0\n242,1,12.5\n242,2,12.0\n242,3,11.5\n242,4,11.0\n242,5,10.5\n242,6,10.0\n242,7,9.5\n242,8,9.0\n242,9,8.5\n242,10,8.0\n242,11,7.5\n242,12,7.0\n242,13,6.5\n242,14,6.0\n242,15,5.5\n242,16,5.0\n242,17,4.5\n242,18,5.0\n242,19,5.5\n242,20,6.0\n242,21,6.5\n242,22,7.0\n242,23,7.5\n242,24,8.0\n242,25,12.5\n242,26,12.0\n242,27,11.5\n242,28,11.0\n242,29,10.5\n242,30,10.0\n242,31,9.5\n242,32,9.0\n242,33,8.5\n242,34,8.0\n242,35,7.5\n242,36,7.0\n242,37,6.5\n242,38,6.0\n242,39,5.5\n242,40,5.0\n242,41,4.5\n242,42,4.0\n242,43,4.5\n242,44,5.0\n242,45,5.5\n242,46,6.0\n242,47,6.5\n242,48,7.0\n242,49,7.5\n242,50,12.0\n242,51,11.5\n242,52,11.0\n242,53,10.5\n242,54,10.0\n242,55,9.5\n242,56,9.0\n242,57,8.5\n242,58,8.0\n242,59,7.5\n242,60,7.0\n242,61,6.5\n242,62,6.0\n242,63,5.5\n242,64,5.0\n242,65,4.5\n242,66,4.0\n242,67,3.5\n242,68,4.0\n242,69,4.5\n242,70,5.0\n242,71,5.5\n242,72,6.0\n242,73,6.5\n242,74,7.0\n242,75,11.5\n242,76,11.0\n242,77,10.5\n242,78,10.0\n242,79,9.5\n242,80,9.0\n242,81,8.5\n242,82,8.0\n242,83,7.5\n242,84,7.0\n242,85,6.5\n242,86,6.0\n242,87,5.5\n242,88,5.0\n242,89,4.5\n242,90,4.0\n242,91,3.5\n242,92,3.0\n242,93,3.5\n242,94,4.0\n242,95,4.5\n242,96,5.0\n242,97,5.5\n242,98,6.0\n242,99,6.5\n242,100,11.0\n242,101,10.5\n242,102,10.0\n242,103,9.5\n242,104,9.0\n242,105,8.5\n242,106,8.0\n242,107,7.5\n242,108,7.0\n242,109,6.5\n242,110,6.0\n242,111,5.5\n242,112,5.0\n242,113,4.5\n242,114,4.0\n242,115,3.5\n242,116,3.0\n242,117,2.5\n242,118,3.0\n242,119,3.5\n242,120,4.0\n242,121,4.5\n242,122,5.0\n242,123,5.5\n242,124,6.0\n242,125,10.5\n242,126,10.0\n242,127,9.5\n242,128,9.0\n242,129,8.5\n242,130,8.0\n242,131,7.5\n242,132,7.0\n242,133,6.5\n242,134,6.0\n242,135,5.5\n242,136,5.0\n242,137,4.5\n242,138,4.0\n242,139,3.5\n242,140,3.0\n242,141,2.5\n242,142,2.0\n242,143,2.5\n242,144,3.0\n242,145,3.5\n242,146,4.0\n242,147,4.5\n242,148,5.0\n242,149,5.5\n242,150,10.0\n242,151,9.5\n242,152,9.0\n242,153,8.5\n242,154,8.0\n242,155,7.5\n242,156,7.0\n242,157,6.5\n242,158,6.0\n242,159,5.5\n242,160,5.0\n242,161,4.5\n242,162,4.0\n242,163,3.5\n242,164,3.0\n242,165,2.5\n242,166,2.0\n242,167,1.5\n242,168,2.0\n242,169,2.5\n242,170,3.0\n242,171,3.5\n242,172,4.0\n242,173,4.5\n242,174,5.0\n242,175,9.5\n242,176,9.0\n242,177,8.5\n242,178,8.0\n242,179,7.5\n242,180,7.0\n242,181,6.5\n242,182,6.0\n242,183,5.5\n242,184,5.0\n242,185,4.5\n242,186,4.0\n242,187,3.5\n242,188,3.0\n242,189,2.5\n242,190,2.0\n242,191,1.5\n242,192,1.0\n242,193,1.5\n242,194,2.0\n242,195,2.5\n242,196,3.0\n242,197,3.5\n242,198,4.0\n242,199,4.5\n242,200,9.0\n242,201,8.5\n242,202,8.0\n242,203,7.5\n242,204,7.0\n242,205,6.5\n242,206,6.0\n242,207,5.5\n242,208,5.0\n242,209,4.5\n242,210,4.0\n242,211,3.5\n242,212,3.0\n242,213,2.5\n242,214,2.0\n242,215,1.5\n242,216,1.0\n242,217,0.5\n242,218,1.0\n242,219,1.5\n242,220,2.0\n242,221,2.5\n242,222,3.0\n242,223,3.5\n242,224,4.0\n242,225,8.5\n242,226,8.0\n242,227,7.5\n242,228,7.0\n242,229,6.5\n242,230,6.0\n242,231,5.5\n242,232,5.0\n242,233,4.5\n242,234,4.0\n242,235,3.5\n242,236,3.0\n242,237,2.5\n242,238,2.0\n242,239,1.5\n242,240,1.0\n242,241,0.5\n242,242,0\n242,243,0.5\n242,244,1.0\n242,245,1.5\n242,246,2.0\n242,247,2.5\n242,248,3.0\n242,249,3.5\n242,250,9.0\n242,251,8.5\n242,252,8.0\n242,253,7.5\n242,254,7.0\n242,255,6.5\n242,256,6.0\n242,257,5.5\n242,258,5.0\n242,259,4.5\n242,260,4.0\n242,261,3.5\n242,262,3.0\n242,263,2.5\n242,264,2.0\n242,265,1.5\n242,266,1.0\n242,267,0.5\n242,268,1.0\n242,269,1.5\n242,270,2.0\n242,271,2.5\n242,272,3.0\n242,273,3.5\n242,274,4.0\n242,275,9.5\n242,276,9.0\n242,277,8.5\n242,278,8.0\n242,279,7.5\n242,280,7.0\n242,281,6.5\n242,282,6.0\n242,283,5.5\n242,284,5.0\n242,285,4.5\n242,286,4.0\n242,287,3.5\n242,288,3.0\n242,289,2.5\n242,290,2.0\n242,291,1.5\n242,292,1.0\n242,293,1.5\n242,294,2.0\n242,295,2.5\n242,296,3.0\n242,297,3.5\n242,298,4.0\n242,299,4.5\n242,300,10.0\n242,301,9.5\n242,302,9.0\n242,303,8.5\n242,304,8.0\n242,305,7.5\n242,306,7.0\n242,307,6.5\n242,308,6.0\n242,309,5.5\n242,310,5.0\n242,311,4.5\n242,312,4.0\n242,313,3.5\n242,314,3.0\n242,315,2.5\n242,316,2.0\n242,317,1.5\n242,318,2.0\n242,319,2.5\n242,320,3.0\n242,321,3.5\n242,322,4.0\n242,323,4.5\n242,324,5.0\n242,325,10.5\n242,326,10.0\n242,327,9.5\n242,328,9.0\n242,329,8.5\n242,330,8.0\n242,331,7.5\n242,332,7.0\n242,333,6.5\n242,334,6.0\n242,335,5.5\n242,336,5.0\n242,337,4.5\n242,338,4.0\n242,339,3.5\n242,340,3.0\n242,341,2.5\n242,342,2.0\n242,343,2.5\n242,344,3.0\n242,345,3.5\n242,346,4.0\n242,347,4.5\n242,348,5.0\n242,349,5.5\n242,350,11.0\n242,351,10.5\n242,352,10.0\n242,353,9.5\n242,354,9.0\n242,355,8.5\n242,356,8.0\n242,357,7.5\n242,358,7.0\n242,359,6.5\n242,360,6.0\n242,361,5.5\n242,362,5.0\n242,363,4.5\n242,364,4.0\n242,365,3.5\n242,366,3.0\n242,367,2.5\n242,368,3.0\n242,369,3.5\n242,370,4.0\n242,371,4.5\n242,372,5.0\n242,373,5.5\n242,374,6.0\n242,375,11.5\n242,376,11.0\n242,377,10.5\n242,378,10.0\n242,379,9.5\n242,380,9.0\n242,381,8.5\n242,382,8.0\n242,383,7.5\n242,384,7.0\n242,385,6.5\n242,386,6.0\n242,387,5.5\n242,388,5.0\n242,389,4.5\n242,390,4.0\n242,391,3.5\n242,392,3.0\n242,393,3.5\n242,394,4.0\n242,395,4.5\n242,396,5.0\n242,397,5.5\n242,398,6.0\n242,399,6.5\n242,400,12.0\n242,401,11.5\n242,402,11.0\n242,403,10.5\n242,404,10.0\n242,405,9.5\n242,406,9.0\n242,407,8.5\n242,408,8.0\n242,409,7.5\n242,410,7.0\n242,411,6.5\n242,412,6.0\n242,413,5.5\n242,414,5.0\n242,415,4.5\n242,416,4.0\n242,417,3.5\n242,418,4.0\n242,419,4.5\n242,420,5.0\n242,421,5.5\n242,422,6.0\n242,423,6.5\n242,424,7.0\n242,425,12.5\n242,426,12.0\n242,427,11.5\n242,428,11.0\n242,429,10.5\n242,430,10.0\n242,431,9.5\n242,432,9.0\n242,433,8.5\n242,434,8.0\n242,435,7.5\n242,436,7.0\n242,437,6.5\n242,438,6.0\n242,439,5.5\n242,440,5.0\n242,441,4.5\n242,442,4.0\n242,443,4.5\n242,444,5.0\n242,445,5.5\n242,446,6.0\n242,447,6.5\n242,448,7.0\n242,449,7.5\n242,450,13.0\n242,451,12.5\n242,452,12.0\n242,453,11.5\n242,454,11.0\n242,455,10.5\n242,456,10.0\n242,457,9.5\n242,458,9.0\n242,459,8.5\n242,460,8.0\n242,461,7.5\n242,462,7.0\n242,463,6.5\n242,464,6.0\n242,465,5.5\n242,466,5.0\n242,467,4.5\n242,468,5.0\n242,469,5.5\n242,470,6.0\n242,471,6.5\n242,472,7.0\n242,473,7.5\n242,474,8.0\n242,475,13.5\n242,476,13.0\n242,477,12.5\n242,478,12.0\n242,479,11.5\n242,480,11.0\n242,481,10.5\n242,482,10.0\n242,483,9.5\n242,484,9.0\n242,485,8.5\n242,486,8.0\n242,487,7.5\n242,488,7.0\n242,489,6.5\n242,490,6.0\n242,491,5.5\n242,492,5.0\n242,493,5.5\n242,494,6.0\n242,495,6.5\n242,496,7.0\n242,497,7.5\n242,498,8.0\n242,499,8.5\n242,500,14.0\n242,501,13.5\n242,502,13.0\n242,503,12.5\n242,504,12.0\n242,505,11.5\n242,506,11.0\n242,507,10.5\n242,508,10.0\n242,509,9.5\n242,510,9.0\n242,511,8.5\n242,512,8.0\n242,513,7.5\n242,514,7.0\n242,515,6.5\n242,516,6.0\n242,517,5.5\n242,518,6.0\n242,519,6.5\n242,520,7.0\n242,521,7.5\n242,522,8.0\n242,523,8.5\n242,524,9.0\n242,525,14.5\n242,526,14.0\n242,527,13.5\n242,528,13.0\n242,529,12.5\n242,530,12.0\n242,531,11.5\n242,532,11.0\n242,533,10.5\n242,534,10.0\n242,535,9.5\n242,536,9.0\n242,537,8.5\n242,538,8.0\n242,539,7.5\n242,540,7.0\n242,541,6.5\n242,542,6.0\n242,543,6.5\n242,544,7.0\n242,545,7.5\n242,546,8.0\n242,547,8.5\n242,548,9.0\n242,549,9.5\n242,550,15.0\n242,551,14.5\n242,552,14.0\n242,553,13.5\n242,554,13.0\n242,555,12.5\n242,556,12.0\n242,557,11.5\n242,558,11.0\n242,559,10.5\n242,560,10.0\n242,561,9.5\n242,562,9.0\n242,563,8.5\n242,564,8.0\n242,565,7.5\n242,566,7.0\n242,567,6.5\n242,568,7.0\n242,569,7.5\n242,570,8.0\n242,571,8.5\n242,572,9.0\n242,573,9.5\n242,574,10.0\n242,575,15.5\n242,576,15.0\n242,577,14.5\n242,578,14.0\n242,579,13.5\n242,580,13.0\n242,581,12.5\n242,582,12.0\n242,583,11.5\n242,584,11.0\n242,585,10.5\n242,586,10.0\n242,587,9.5\n242,588,9.0\n242,589,8.5\n242,590,8.0\n242,591,7.5\n242,592,7.0\n242,593,7.5\n242,594,8.0\n242,595,8.5\n242,596,9.0\n242,597,9.5\n242,598,10.0\n242,599,10.5\n242,600,16.0\n242,601,15.5\n242,602,15.0\n242,603,14.5\n242,604,14.0\n242,605,13.5\n242,606,13.0\n242,607,12.5\n242,608,12.0\n242,609,11.5\n242,610,11.0\n242,611,10.5\n242,612,10.0\n242,613,9.5\n242,614,9.0\n242,615,8.5\n242,616,8.0\n242,617,7.5\n242,618,8.0\n242,619,8.5\n242,620,9.0\n242,621,9.5\n242,622,10.0\n242,623,10.5\n242,624,11.0\n243,0,13.5\n243,1,13.0\n243,2,12.5\n243,3,12.0\n243,4,11.5\n243,5,11.0\n243,6,10.5\n243,7,10.0\n243,8,9.5\n243,9,9.0\n243,10,8.5\n243,11,8.0\n243,12,7.5\n243,13,7.0\n243,14,6.5\n243,15,6.0\n243,16,5.5\n243,17,5.0\n243,18,4.5\n243,19,5.0\n243,20,5.5\n243,21,6.0\n243,22,6.5\n243,23,7.0\n243,24,7.5\n243,25,13.0\n243,26,12.5\n243,27,12.0\n243,28,11.5\n243,29,11.0\n243,30,10.5\n243,31,10.0\n243,32,9.5\n243,33,9.0\n243,34,8.5\n243,35,8.0\n243,36,7.5\n243,37,7.0\n243,38,6.5\n243,39,6.0\n243,40,5.5\n243,41,5.0\n243,42,4.5\n243,43,4.0\n243,44,4.5\n243,45,5.0\n243,46,5.5\n243,47,6.0\n243,48,6.5\n243,49,7.0\n243,50,12.5\n243,51,12.0\n243,52,11.5\n243,53,11.0\n243,54,10.5\n243,55,10.0\n243,56,9.5\n243,57,9.0\n243,58,8.5\n243,59,8.0\n243,60,7.5\n243,61,7.0\n243,62,6.5\n243,63,6.0\n243,64,5.5\n243,65,5.0\n243,66,4.5\n243,67,4.0\n243,68,3.5\n243,69,4.0\n243,70,4.5\n243,71,5.0\n243,72,5.5\n243,73,6.0\n243,74,6.5\n243,75,12.0\n243,76,11.5\n243,77,11.0\n243,78,10.5\n243,79,10.0\n243,80,9.5\n243,81,9.0\n243,82,8.5\n243,83,8.0\n243,84,7.5\n243,85,7.0\n243,86,6.5\n243,87,6.0\n243,88,5.5\n243,89,5.0\n243,90,4.5\n243,91,4.0\n243,92,3.5\n243,93,3.0\n243,94,3.5\n243,95,4.0\n243,96,4.5\n243,97,5.0\n243,98,5.5\n243,99,6.0\n243,100,11.5\n243,101,11.0\n243,102,10.5\n243,103,10.0\n243,104,9.5\n243,105,9.0\n243,106,8.5\n243,107,8.0\n243,108,7.5\n243,109,7.0\n243,110,6.5\n243,111,6.0\n243,112,5.5\n243,113,5.0\n243,114,4.5\n243,115,4.0\n243,116,3.5\n243,117,3.0\n243,118,2.5\n243,119,3.0\n243,120,3.5\n243,121,4.0\n243,122,4.5\n243,123,5.0\n243,124,5.5\n243,125,11.0\n243,126,10.5\n243,127,10.0\n243,128,9.5\n243,129,9.0\n243,130,8.5\n243,131,8.0\n243,132,7.5\n243,133,7.0\n243,134,6.5\n243,135,6.0\n243,136,5.5\n243,137,5.0\n243,138,4.5\n243,139,4.0\n243,140,3.5\n243,141,3.0\n243,142,2.5\n243,143,2.0\n243,144,2.5\n243,145,3.0\n243,146,3.5\n243,147,4.0\n243,148,4.5\n243,149,5.0\n243,150,10.5\n243,151,10.0\n243,152,9.5\n243,153,9.0\n243,154,8.5\n243,155,8.0\n243,156,7.5\n243,157,7.0\n243,158,6.5\n243,159,6.0\n243,160,5.5\n243,161,5.0\n243,162,4.5\n243,163,4.0\n243,164,3.5\n243,165,3.0\n243,166,2.5\n243,167,2.0\n243,168,1.5\n243,169,2.0\n243,170,2.5\n243,171,3.0\n243,172,3.5\n243,173,4.0\n243,174,4.5\n243,175,10.0\n243,176,9.5\n243,177,9.0\n243,178,8.5\n243,179,8.0\n243,180,7.5\n243,181,7.0\n243,182,6.5\n243,183,6.0\n243,184,5.5\n243,185,5.0\n243,186,4.5\n243,187,4.0\n243,188,3.5\n243,189,3.0\n243,190,2.5\n243,191,2.0\n243,192,1.5\n243,193,1.0\n243,194,1.5\n243,195,2.0\n243,196,2.5\n243,197,3.0\n243,198,3.5\n243,199,4.0\n243,200,9.5\n243,201,9.0\n243,202,8.5\n243,203,8.0\n243,204,7.5\n243,205,7.0\n243,206,6.5\n243,207,6.0\n243,208,5.5\n243,209,5.0\n243,210,4.5\n243,211,4.0\n243,212,3.5\n243,213,3.0\n243,214,2.5\n243,215,2.0\n243,216,1.5\n243,217,1.0\n243,218,0.5\n243,219,1.0\n243,220,1.5\n243,221,2.0\n243,222,2.5\n243,223,3.0\n243,224,3.5\n243,225,9.0\n243,226,8.5\n243,227,8.0\n243,228,7.5\n243,229,7.0\n243,230,6.5\n243,231,6.0\n243,232,5.5\n243,233,5.0\n243,234,4.5\n243,235,4.0\n243,236,3.5\n243,237,3.0\n243,238,2.5\n243,239,2.0\n243,240,1.5\n243,241,1.0\n243,242,0.5\n243,243,0\n243,244,0.5\n243,245,1.0\n243,246,1.5\n243,247,2.0\n243,248,2.5\n243,249,3.0\n243,250,9.5\n243,251,9.0\n243,252,8.5\n243,253,8.0\n243,254,7.5\n243,255,7.0\n243,256,6.5\n243,257,6.0\n243,258,5.5\n243,259,5.0\n243,260,4.5\n243,261,4.0\n243,262,3.5\n243,263,3.0\n243,264,2.5\n243,265,2.0\n243,266,1.5\n243,267,1.0\n243,268,0.5\n243,269,1.0\n243,270,1.5\n243,271,2.0\n243,272,2.5\n243,273,3.0\n243,274,3.5\n243,275,10.0\n243,276,9.5\n243,277,9.0\n243,278,8.5\n243,279,8.0\n243,280,7.5\n243,281,7.0\n243,282,6.5\n243,283,6.0\n243,284,5.5\n243,285,5.0\n243,286,4.5\n243,287,4.0\n243,288,3.5\n243,289,3.0\n243,290,2.5\n243,291,2.0\n243,292,1.5\n243,293,1.0\n243,294,1.5\n243,295,2.0\n243,296,2.5\n243,297,3.0\n243,298,3.5\n243,299,4.0\n243,300,10.5\n243,301,10.0\n243,302,9.5\n243,303,9.0\n243,304,8.5\n243,305,8.0\n243,306,7.5\n243,307,7.0\n243,308,6.5\n243,309,6.0\n243,310,5.5\n243,311,5.0\n243,312,4.5\n243,313,4.0\n243,314,3.5\n243,315,3.0\n243,316,2.5\n243,317,2.0\n243,318,1.5\n243,319,2.0\n243,320,2.5\n243,321,3.0\n243,322,3.5\n243,323,4.0\n243,324,4.5\n243,325,11.0\n243,326,10.5\n243,327,10.0\n243,328,9.5\n243,329,9.0\n243,330,8.5\n243,331,8.0\n243,332,7.5\n243,333,7.0\n243,334,6.5\n243,335,6.0\n243,336,5.5\n243,337,5.0\n243,338,4.5\n243,339,4.0\n243,340,3.5\n243,341,3.0\n243,342,2.5\n243,343,2.0\n243,344,2.5\n243,345,3.0\n243,346,3.5\n243,347,4.0\n243,348,4.5\n243,349,5.0\n243,350,11.5\n243,351,11.0\n243,352,10.5\n243,353,10.0\n243,354,9.5\n243,355,9.0\n243,356,8.5\n243,357,8.0\n243,358,7.5\n243,359,7.0\n243,360,6.5\n243,361,6.0\n243,362,5.5\n243,363,5.0\n243,364,4.5\n243,365,4.0\n243,366,3.5\n243,367,3.0\n243,368,2.5\n243,369,3.0\n243,370,3.5\n243,371,4.0\n243,372,4.5\n243,373,5.0\n243,374,5.5\n243,375,12.0\n243,376,11.5\n243,377,11.0\n243,378,10.5\n243,379,10.0\n243,380,9.5\n243,381,9.0\n243,382,8.5\n243,383,8.0\n243,384,7.5\n243,385,7.0\n243,386,6.5\n243,387,6.0\n243,388,5.5\n243,389,5.0\n243,390,4.5\n243,391,4.0\n243,392,3.5\n243,393,3.0\n243,394,3.5\n243,395,4.0\n243,396,4.5\n243,397,5.0\n243,398,5.5\n243,399,6.0\n243,400,12.5\n243,401,12.0\n243,402,11.5\n243,403,11.0\n243,404,10.5\n243,405,10.0\n243,406,9.5\n243,407,9.0\n243,408,8.5\n243,409,8.0\n243,410,7.5\n243,411,7.0\n243,412,6.5\n243,413,6.0\n243,414,5.5\n243,415,5.0\n243,416,4.5\n243,417,4.0\n243,418,3.5\n243,419,4.0\n243,420,4.5\n243,421,5.0\n243,422,5.5\n243,423,6.0\n243,424,6.5\n243,425,13.0\n243,426,12.5\n243,427,12.0\n243,428,11.5\n243,429,11.0\n243,430,10.5\n243,431,10.0\n243,432,9.5\n243,433,9.0\n243,434,8.5\n243,435,8.0\n243,436,7.5\n243,437,7.0\n243,438,6.5\n243,439,6.0\n243,440,5.5\n243,441,5.0\n243,442,4.5\n243,443,4.0\n243,444,4.5\n243,445,5.0\n243,446,5.5\n243,447,6.0\n243,448,6.5\n243,449,7.0\n243,450,13.5\n243,451,13.0\n243,452,12.5\n243,453,12.0\n243,454,11.5\n243,455,11.0\n243,456,10.5\n243,457,10.0\n243,458,9.5\n243,459,9.0\n243,460,8.5\n243,461,8.0\n243,462,7.5\n243,463,7.0\n243,464,6.5\n243,465,6.0\n243,466,5.5\n243,467,5.0\n243,468,4.5\n243,469,5.0\n243,470,5.5\n243,471,6.0\n243,472,6.5\n243,473,7.0\n243,474,7.5\n243,475,14.0\n243,476,13.5\n243,477,13.0\n243,478,12.5\n243,479,12.0\n243,480,11.5\n243,481,11.0\n243,482,10.5\n243,483,10.0\n243,484,9.5\n243,485,9.0\n243,486,8.5\n243,487,8.0\n243,488,7.5\n243,489,7.0\n243,490,6.5\n243,491,6.0\n243,492,5.5\n243,493,5.0\n243,494,5.5\n243,495,6.0\n243,496,6.5\n243,497,7.0\n243,498,7.5\n243,499,8.0\n243,500,14.5\n243,501,14.0\n243,502,13.5\n243,503,13.0\n243,504,12.5\n243,505,12.0\n243,506,11.5\n243,507,11.0\n243,508,10.5\n243,509,10.0\n243,510,9.5\n243,511,9.0\n243,512,8.5\n243,513,8.0\n243,514,7.5\n243,515,7.0\n243,516,6.5\n243,517,6.0\n243,518,5.5\n243,519,6.0\n243,520,6.5\n243,521,7.0\n243,522,7.5\n243,523,8.0\n243,524,8.5\n243,525,15.0\n243,526,14.5\n243,527,14.0\n243,528,13.5\n243,529,13.0\n243,530,12.5\n243,531,12.0\n243,532,11.5\n243,533,11.0\n243,534,10.5\n243,535,10.0\n243,536,9.5\n243,537,9.0\n243,538,8.5\n243,539,8.0\n243,540,7.5\n243,541,7.0\n243,542,6.5\n243,543,6.0\n243,544,6.5\n243,545,7.0\n243,546,7.5\n243,547,8.0\n243,548,8.5\n243,549,9.0\n243,550,15.5\n243,551,15.0\n243,552,14.5\n243,553,14.0\n243,554,13.5\n243,555,13.0\n243,556,12.5\n243,557,12.0\n243,558,11.5\n243,559,11.0\n243,560,10.5\n243,561,10.0\n243,562,9.5\n243,563,9.0\n243,564,8.5\n243,565,8.0\n243,566,7.5\n243,567,7.0\n243,568,6.5\n243,569,7.0\n243,570,7.5\n243,571,8.0\n243,572,8.5\n243,573,9.0\n243,574,9.5\n243,575,16.0\n243,576,15.5\n243,577,15.0\n243,578,14.5\n243,579,14.0\n243,580,13.5\n243,581,13.0\n243,582,12.5\n243,583,12.0\n243,584,11.5\n243,585,11.0\n243,586,10.5\n243,587,10.0\n243,588,9.5\n243,589,9.0\n243,590,8.5\n243,591,8.0\n243,592,7.5\n243,593,7.0\n243,594,7.5\n243,595,8.0\n243,596,8.5\n243,597,9.0\n243,598,9.5\n243,599,10.0\n243,600,16.5\n243,601,16.0\n243,602,15.5\n243,603,15.0\n243,604,14.5\n243,605,14.0\n243,606,13.5\n243,607,13.0\n243,608,12.5\n243,609,12.0\n243,610,11.5\n243,611,11.0\n243,612,10.5\n243,613,10.0\n243,614,9.5\n243,615,9.0\n243,616,8.5\n243,617,8.0\n243,618,7.5\n243,619,8.0\n243,620,8.5\n243,621,9.0\n243,622,9.5\n243,623,10.0\n243,624,10.5\n244,0,14.0\n244,1,13.5\n244,2,13.0\n244,3,12.5\n244,4,12.0\n244,5,11.5\n244,6,11.0\n244,7,10.5\n244,8,10.0\n244,9,9.5\n244,10,9.0\n244,11,8.5\n244,12,8.0\n244,13,7.5\n244,14,7.0\n244,15,6.5\n244,16,6.0\n244,17,5.5\n244,18,5.0\n244,19,4.5\n244,20,5.0\n244,21,5.5\n244,22,6.0\n244,23,6.5\n244,24,7.0\n244,25,13.5\n244,26,13.0\n244,27,12.5\n244,28,12.0\n244,29,11.5\n244,30,11.0\n244,31,10.5\n244,32,10.0\n244,33,9.5\n244,34,9.0\n244,35,8.5\n244,36,8.0\n244,37,7.5\n244,38,7.0\n244,39,6.5\n244,40,6.0\n244,41,5.5\n244,42,5.0\n244,43,4.5\n244,44,4.0\n244,45,4.5\n244,46,5.0\n244,47,5.5\n244,48,6.0\n244,49,6.5\n244,50,13.0\n244,51,12.5\n244,52,12.0\n244,53,11.5\n244,54,11.0\n244,55,10.5\n244,56,10.0\n244,57,9.5\n244,58,9.0\n244,59,8.5\n244,60,8.0\n244,61,7.5\n244,62,7.0\n244,63,6.5\n244,64,6.0\n244,65,5.5\n244,66,5.0\n244,67,4.5\n244,68,4.0\n244,69,3.5\n244,70,4.0\n244,71,4.5\n244,72,5.0\n244,73,5.5\n244,74,6.0\n244,75,12.5\n244,76,12.0\n244,77,11.5\n244,78,11.0\n244,79,10.5\n244,80,10.0\n244,81,9.5\n244,82,9.0\n244,83,8.5\n244,84,8.0\n244,85,7.5\n244,86,7.0\n244,87,6.5\n244,88,6.0\n244,89,5.5\n244,90,5.0\n244,91,4.5\n244,92,4.0\n244,93,3.5\n244,94,3.0\n244,95,3.5\n244,96,4.0\n244,97,4.5\n244,98,5.0\n244,99,5.5\n244,100,12.0\n244,101,11.5\n244,102,11.0\n244,103,10.5\n244,104,10.0\n244,105,9.5\n244,106,9.0\n244,107,8.5\n244,108,8.0\n244,109,7.5\n244,110,7.0\n244,111,6.5\n244,112,6.0\n244,113,5.5\n244,114,5.0\n244,115,4.5\n244,116,4.0\n244,117,3.5\n244,118,3.0\n244,119,2.5\n244,120,3.0\n244,121,3.5\n244,122,4.0\n244,123,4.5\n244,124,5.0\n244,125,11.5\n244,126,11.0\n244,127,10.5\n244,128,10.0\n244,129,9.5\n244,130,9.0\n244,131,8.5\n244,132,8.0\n244,133,7.5\n244,134,7.0\n244,135,6.5\n244,136,6.0\n244,137,5.5\n244,138,5.0\n244,139,4.5\n244,140,4.0\n244,141,3.5\n244,142,3.0\n244,143,2.5\n244,144,2.0\n244,145,2.5\n244,146,3.0\n244,147,3.5\n244,148,4.0\n244,149,4.5\n244,150,11.0\n244,151,10.5\n244,152,10.0\n244,153,9.5\n244,154,9.0\n244,155,8.5\n244,156,8.0\n244,157,7.5\n244,158,7.0\n244,159,6.5\n244,160,6.0\n244,161,5.5\n244,162,5.0\n244,163,4.5\n244,164,4.0\n244,165,3.5\n244,166,3.0\n244,167,2.5\n244,168,2.0\n244,169,1.5\n244,170,2.0\n244,171,2.5\n244,172,3.0\n244,173,3.5\n244,174,4.0\n244,175,10.5\n244,176,10.0\n244,177,9.5\n244,178,9.0\n244,179,8.5\n244,180,8.0\n244,181,7.5\n244,182,7.0\n244,183,6.5\n244,184,6.0\n244,185,5.5\n244,186,5.0\n244,187,4.5\n244,188,4.0\n244,189,3.5\n244,190,3.0\n244,191,2.5\n244,192,2.0\n244,193,1.5\n244,194,1.0\n244,195,1.5\n244,196,2.0\n244,197,2.5\n244,198,3.0\n244,199,3.5\n244,200,10.0\n244,201,9.5\n244,202,9.0\n244,203,8.5\n244,204,8.0\n244,205,7.5\n244,206,7.0\n244,207,6.5\n244,208,6.0\n244,209,5.5\n244,210,5.0\n244,211,4.5\n244,212,4.0\n244,213,3.5\n244,214,3.0\n244,215,2.5\n244,216,2.0\n244,217,1.5\n244,218,1.0\n244,219,0.5\n244,220,1.0\n244,221,1.5\n244,222,2.0\n244,223,2.5\n244,224,3.0\n244,225,9.5\n244,226,9.0\n244,227,8.5\n244,228,8.0\n244,229,7.5\n244,230,7.0\n244,231,6.5\n244,232,6.0\n244,233,5.5\n244,234,5.0\n244,235,4.5\n244,236,4.0\n244,237,3.5\n244,238,3.0\n244,239,2.5\n244,240,2.0\n244,241,1.5\n244,242,1.0\n244,243,0.5\n244,244,0\n244,245,0.5\n244,246,1.0\n244,247,1.5\n244,248,2.0\n244,249,2.5\n244,250,10.0\n244,251,9.5\n244,252,9.0\n244,253,8.5\n244,254,8.0\n244,255,7.5\n244,256,7.0\n244,257,6.5\n244,258,6.0\n244,259,5.5\n244,260,5.0\n244,261,4.5\n244,262,4.0\n244,263,3.5\n244,264,3.0\n244,265,2.5\n244,266,2.0\n244,267,1.5\n244,268,1.0\n244,269,0.5\n244,270,1.0\n244,271,1.5\n244,272,2.0\n244,273,2.5\n244,274,3.0\n244,275,10.5\n244,276,10.0\n244,277,9.5\n244,278,9.0\n244,279,8.5\n244,280,8.0\n244,281,7.5\n244,282,7.0\n244,283,6.5\n244,284,6.0\n244,285,5.5\n244,286,5.0\n244,287,4.5\n244,288,4.0\n244,289,3.5\n244,290,3.0\n244,291,2.5\n244,292,2.0\n244,293,1.5\n244,294,1.0\n244,295,1.5\n244,296,2.0\n244,297,2.5\n244,298,3.0\n244,299,3.5\n244,300,11.0\n244,301,10.5\n244,302,10.0\n244,303,9.5\n244,304,9.0\n244,305,8.5\n244,306,8.0\n244,307,7.5\n244,308,7.0\n244,309,6.5\n244,310,6.0\n244,311,5.5\n244,312,5.0\n244,313,4.5\n244,314,4.0\n244,315,3.5\n244,316,3.0\n244,317,2.5\n244,318,2.0\n244,319,1.5\n244,320,2.0\n244,321,2.5\n244,322,3.0\n244,323,3.5\n244,324,4.0\n244,325,11.5\n244,326,11.0\n244,327,10.5\n244,328,10.0\n244,329,9.5\n244,330,9.0\n244,331,8.5\n244,332,8.0\n244,333,7.5\n244,334,7.0\n244,335,6.5\n244,336,6.0\n244,337,5.5\n244,338,5.0\n244,339,4.5\n244,340,4.0\n244,341,3.5\n244,342,3.0\n244,343,2.5\n244,344,2.0\n244,345,2.5\n244,346,3.0\n244,347,3.5\n244,348,4.0\n244,349,4.5\n244,350,12.0\n244,351,11.5\n244,352,11.0\n244,353,10.5\n244,354,10.0\n244,355,9.5\n244,356,9.0\n244,357,8.5\n244,358,8.0\n244,359,7.5\n244,360,7.0\n244,361,6.5\n244,362,6.0\n244,363,5.5\n244,364,5.0\n244,365,4.5\n244,366,4.0\n244,367,3.5\n244,368,3.0\n244,369,2.5\n244,370,3.0\n244,371,3.5\n244,372,4.0\n244,373,4.5\n244,374,5.0\n244,375,12.5\n244,376,12.0\n244,377,11.5\n244,378,11.0\n244,379,10.5\n244,380,10.0\n244,381,9.5\n244,382,9.0\n244,383,8.5\n244,384,8.0\n244,385,7.5\n244,386,7.0\n244,387,6.5\n244,388,6.0\n244,389,5.5\n244,390,5.0\n244,391,4.5\n244,392,4.0\n244,393,3.5\n244,394,3.0\n244,395,3.5\n244,396,4.0\n244,397,4.5\n244,398,5.0\n244,399,5.5\n244,400,13.0\n244,401,12.5\n244,402,12.0\n244,403,11.5\n244,404,11.0\n244,405,10.5\n244,406,10.0\n244,407,9.5\n244,408,9.0\n244,409,8.5\n244,410,8.0\n244,411,7.5\n244,412,7.0\n244,413,6.5\n244,414,6.0\n244,415,5.5\n244,416,5.0\n244,417,4.5\n244,418,4.0\n244,419,3.5\n244,420,4.0\n244,421,4.5\n244,422,5.0\n244,423,5.5\n244,424,6.0\n244,425,13.5\n244,426,13.0\n244,427,12.5\n244,428,12.0\n244,429,11.5\n244,430,11.0\n244,431,10.5\n244,432,10.0\n244,433,9.5\n244,434,9.0\n244,435,8.5\n244,436,8.0\n244,437,7.5\n244,438,7.0\n244,439,6.5\n244,440,6.0\n244,441,5.5\n244,442,5.0\n244,443,4.5\n244,444,4.0\n244,445,4.5\n244,446,5.0\n244,447,5.5\n244,448,6.0\n244,449,6.5\n244,450,14.0\n244,451,13.5\n244,452,13.0\n244,453,12.5\n244,454,12.0\n244,455,11.5\n244,456,11.0\n244,457,10.5\n244,458,10.0\n244,459,9.5\n244,460,9.0\n244,461,8.5\n244,462,8.0\n244,463,7.5\n244,464,7.0\n244,465,6.5\n244,466,6.0\n244,467,5.5\n244,468,5.0\n244,469,4.5\n244,470,5.0\n244,471,5.5\n244,472,6.0\n244,473,6.5\n244,474,7.0\n244,475,14.5\n244,476,14.0\n244,477,13.5\n244,478,13.0\n244,479,12.5\n244,480,12.0\n244,481,11.5\n244,482,11.0\n244,483,10.5\n244,484,10.0\n244,485,9.5\n244,486,9.0\n244,487,8.5\n244,488,8.0\n244,489,7.5\n244,490,7.0\n244,491,6.5\n244,492,6.0\n244,493,5.5\n244,494,5.0\n244,495,5.5\n244,496,6.0\n244,497,6.5\n244,498,7.0\n244,499,7.5\n244,500,15.0\n244,501,14.5\n244,502,14.0\n244,503,13.5\n244,504,13.0\n244,505,12.5\n244,506,12.0\n244,507,11.5\n244,508,11.0\n244,509,10.5\n244,510,10.0\n244,511,9.5\n244,512,9.0\n244,513,8.5\n244,514,8.0\n244,515,7.5\n244,516,7.0\n244,517,6.5\n244,518,6.0\n244,519,5.5\n244,520,6.0\n244,521,6.5\n244,522,7.0\n244,523,7.5\n244,524,8.0\n244,525,15.5\n244,526,15.0\n244,527,14.5\n244,528,14.0\n244,529,13.5\n244,530,13.0\n244,531,12.5\n244,532,12.0\n244,533,11.5\n244,534,11.0\n244,535,10.5\n244,536,10.0\n244,537,9.5\n244,538,9.0\n244,539,8.5\n244,540,8.0\n244,541,7.5\n244,542,7.0\n244,543,6.5\n244,544,6.0\n244,545,6.5\n244,546,7.0\n244,547,7.5\n244,548,8.0\n244,549,8.5\n244,550,16.0\n244,551,15.5\n244,552,15.0\n244,553,14.5\n244,554,14.0\n244,555,13.5\n244,556,13.0\n244,557,12.5\n244,558,12.0\n244,559,11.5\n244,560,11.0\n244,561,10.5\n244,562,10.0\n244,563,9.5\n244,564,9.0\n244,565,8.5\n244,566,8.0\n244,567,7.5\n244,568,7.0\n244,569,6.5\n244,570,7.0\n244,571,7.5\n244,572,8.0\n244,573,8.5\n244,574,9.0\n244,575,16.5\n244,576,16.0\n244,577,15.5\n244,578,15.0\n244,579,14.5\n244,580,14.0\n244,581,13.5\n244,582,13.0\n244,583,12.5\n244,584,12.0\n244,585,11.5\n244,586,11.0\n244,587,10.5\n244,588,10.0\n244,589,9.5\n244,590,9.0\n244,591,8.5\n244,592,8.0\n244,593,7.5\n244,594,7.0\n244,595,7.5\n244,596,8.0\n244,597,8.5\n244,598,9.0\n244,599,9.5\n244,600,17.0\n244,601,16.5\n244,602,16.0\n244,603,15.5\n244,604,15.0\n244,605,14.5\n244,606,14.0\n244,607,13.5\n244,608,13.0\n244,609,12.5\n244,610,12.0\n244,611,11.5\n244,612,11.0\n244,613,10.5\n244,614,10.0\n244,615,9.5\n244,616,9.0\n244,617,8.5\n244,618,8.0\n244,619,7.5\n244,620,8.0\n244,621,8.5\n244,622,9.0\n244,623,9.5\n244,624,10.0\n245,0,14.5\n245,1,14.0\n245,2,13.5\n245,3,13.0\n245,4,12.5\n245,5,12.0\n245,6,11.5\n245,7,11.0\n245,8,10.5\n245,9,10.0\n245,10,9.5\n245,11,9.0\n245,12,8.5\n245,13,8.0\n245,14,7.5\n245,15,7.0\n245,16,6.5\n245,17,6.0\n245,18,5.5\n245,19,5.0\n245,20,4.5\n245,21,5.0\n245,22,5.5\n245,23,6.0\n245,24,6.5\n245,25,14.0\n245,26,13.5\n245,27,13.0\n245,28,12.5\n245,29,12.0\n245,30,11.5\n245,31,11.0\n245,32,10.5\n245,33,10.0\n245,34,9.5\n245,35,9.0\n245,36,8.5\n245,37,8.0\n245,38,7.5\n245,39,7.0\n245,40,6.5\n245,41,6.0\n245,42,5.5\n245,43,5.0\n245,44,4.5\n245,45,4.0\n245,46,4.5\n245,47,5.0\n245,48,5.5\n245,49,6.0\n245,50,13.5\n245,51,13.0\n245,52,12.5\n245,53,12.0\n245,54,11.5\n245,55,11.0\n245,56,10.5\n245,57,10.0\n245,58,9.5\n245,59,9.0\n245,60,8.5\n245,61,8.0\n245,62,7.5\n245,63,7.0\n245,64,6.5\n245,65,6.0\n245,66,5.5\n245,67,5.0\n245,68,4.5\n245,69,4.0\n245,70,3.5\n245,71,4.0\n245,72,4.5\n245,73,5.0\n245,74,5.5\n245,75,13.0\n245,76,12.5\n245,77,12.0\n245,78,11.5\n245,79,11.0\n245,80,10.5\n245,81,10.0\n245,82,9.5\n245,83,9.0\n245,84,8.5\n245,85,8.0\n245,86,7.5\n245,87,7.0\n245,88,6.5\n245,89,6.0\n245,90,5.5\n245,91,5.0\n245,92,4.5\n245,93,4.0\n245,94,3.5\n245,95,3.0\n245,96,3.5\n245,97,4.0\n245,98,4.5\n245,99,5.0\n245,100,12.5\n245,101,12.0\n245,102,11.5\n245,103,11.0\n245,104,10.5\n245,105,10.0\n245,106,9.5\n245,107,9.0\n245,108,8.5\n245,109,8.0\n245,110,7.5\n245,111,7.0\n245,112,6.5\n245,113,6.0\n245,114,5.5\n245,115,5.0\n245,116,4.5\n245,117,4.0\n245,118,3.5\n245,119,3.0\n245,120,2.5\n245,121,3.0\n245,122,3.5\n245,123,4.0\n245,124,4.5\n245,125,12.0\n245,126,11.5\n245,127,11.0\n245,128,10.5\n245,129,10.0\n245,130,9.5\n245,131,9.0\n245,132,8.5\n245,133,8.0\n245,134,7.5\n245,135,7.0\n245,136,6.5\n245,137,6.0\n245,138,5.5\n245,139,5.0\n245,140,4.5\n245,141,4.0\n245,142,3.5\n245,143,3.0\n245,144,2.5\n245,145,2.0\n245,146,2.5\n245,147,3.0\n245,148,3.5\n245,149,4.0\n245,150,11.5\n245,151,11.0\n245,152,10.5\n245,153,10.0\n245,154,9.5\n245,155,9.0\n245,156,8.5\n245,157,8.0\n245,158,7.5\n245,159,7.0\n245,160,6.5\n245,161,6.0\n245,162,5.5\n245,163,5.0\n245,164,4.5\n245,165,4.0\n245,166,3.5\n245,167,3.0\n245,168,2.5\n245,169,2.0\n245,170,1.5\n245,171,2.0\n245,172,2.5\n245,173,3.0\n245,174,3.5\n245,175,11.0\n245,176,10.5\n245,177,10.0\n245,178,9.5\n245,179,9.0\n245,180,8.5\n245,181,8.0\n245,182,7.5\n245,183,7.0\n245,184,6.5\n245,185,6.0\n245,186,5.5\n245,187,5.0\n245,188,4.5\n245,189,4.0\n245,190,3.5\n245,191,3.0\n245,192,2.5\n245,193,2.0\n245,194,1.5\n245,195,1.0\n245,196,1.5\n245,197,2.0\n245,198,2.5\n245,199,3.0\n245,200,10.5\n245,201,10.0\n245,202,9.5\n245,203,9.0\n245,204,8.5\n245,205,8.0\n245,206,7.5\n245,207,7.0\n245,208,6.5\n245,209,6.0\n245,210,5.5\n245,211,5.0\n245,212,4.5\n245,213,4.0\n245,214,3.5\n245,215,3.0\n245,216,2.5\n245,217,2.0\n245,218,1.5\n245,219,1.0\n245,220,0.5\n245,221,1.0\n245,222,1.5\n245,223,2.0\n245,224,2.5\n245,225,10.0\n245,226,9.5\n245,227,9.0\n245,228,8.5\n245,229,8.0\n245,230,7.5\n245,231,7.0\n245,232,6.5\n245,233,6.0\n245,234,5.5\n245,235,5.0\n245,236,4.5\n245,237,4.0\n245,238,3.5\n245,239,3.0\n245,240,2.5\n245,241,2.0\n245,242,1.5\n245,243,1.0\n245,244,0.5\n245,245,0\n245,246,0.5\n245,247,1.0\n245,248,1.5\n245,249,2.0\n245,250,10.5\n245,251,10.0\n245,252,9.5\n245,253,9.0\n245,254,8.5\n245,255,8.0\n245,256,7.5\n245,257,7.0\n245,258,6.5\n245,259,6.0\n245,260,5.5\n245,261,5.0\n245,262,4.5\n245,263,4.0\n245,264,3.5\n245,265,3.0\n245,266,2.5\n245,267,2.0\n245,268,1.5\n245,269,1.0\n245,270,0.5\n245,271,1.0\n245,272,1.5\n245,273,2.0\n245,274,2.5\n245,275,11.0\n245,276,10.5\n245,277,10.0\n245,278,9.5\n245,279,9.0\n245,280,8.5\n245,281,8.0\n245,282,7.5\n245,283,7.0\n245,284,6.5\n245,285,6.0\n245,286,5.5\n245,287,5.0\n245,288,4.5\n245,289,4.0\n245,290,3.5\n245,291,3.0\n245,292,2.5\n245,293,2.0\n245,294,1.5\n245,295,1.0\n245,296,1.5\n245,297,2.0\n245,298,2.5\n245,299,3.0\n245,300,11.5\n245,301,11.0\n245,302,10.5\n245,303,10.0\n245,304,9.5\n245,305,9.0\n245,306,8.5\n245,307,8.0\n245,308,7.5\n245,309,7.0\n245,310,6.5\n245,311,6.0\n245,312,5.5\n245,313,5.0\n245,314,4.5\n245,315,4.0\n245,316,3.5\n245,317,3.0\n245,318,2.5\n245,319,2.0\n245,320,1.5\n245,321,2.0\n245,322,2.5\n245,323,3.0\n245,324,3.5\n245,325,12.0\n245,326,11.5\n245,327,11.0\n245,328,10.5\n245,329,10.0\n245,330,9.5\n245,331,9.0\n245,332,8.5\n245,333,8.0\n245,334,7.5\n245,335,7.0\n245,336,6.5\n245,337,6.0\n245,338,5.5\n245,339,5.0\n245,340,4.5\n245,341,4.0\n245,342,3.5\n245,343,3.0\n245,344,2.5\n245,345,2.0\n245,346,2.5\n245,347,3.0\n245,348,3.5\n245,349,4.0\n245,350,12.5\n245,351,12.0\n245,352,11.5\n245,353,11.0\n245,354,10.5\n245,355,10.0\n245,356,9.5\n245,357,9.0\n245,358,8.5\n245,359,8.0\n245,360,7.5\n245,361,7.0\n245,362,6.5\n245,363,6.0\n245,364,5.5\n245,365,5.0\n245,366,4.5\n245,367,4.0\n245,368,3.5\n245,369,3.0\n245,370,2.5\n245,371,3.0\n245,372,3.5\n245,373,4.0\n245,374,4.5\n245,375,13.0\n245,376,12.5\n245,377,12.0\n245,378,11.5\n245,379,11.0\n245,380,10.5\n245,381,10.0\n245,382,9.5\n245,383,9.0\n245,384,8.5\n245,385,8.0\n245,386,7.5\n245,387,7.0\n245,388,6.5\n245,389,6.0\n245,390,5.5\n245,391,5.0\n245,392,4.5\n245,393,4.0\n245,394,3.5\n245,395,3.0\n245,396,3.5\n245,397,4.0\n245,398,4.5\n245,399,5.0\n245,400,13.5\n245,401,13.0\n245,402,12.5\n245,403,12.0\n245,404,11.5\n245,405,11.0\n245,406,10.5\n245,407,10.0\n245,408,9.5\n245,409,9.0\n245,410,8.5\n245,411,8.0\n245,412,7.5\n245,413,7.0\n245,414,6.5\n245,415,6.0\n245,416,5.5\n245,417,5.0\n245,418,4.5\n245,419,4.0\n245,420,3.5\n245,421,4.0\n245,422,4.5\n245,423,5.0\n245,424,5.5\n245,425,14.0\n245,426,13.5\n245,427,13.0\n245,428,12.5\n245,429,12.0\n245,430,11.5\n245,431,11.0\n245,432,10.5\n245,433,10.0\n245,434,9.5\n245,435,9.0\n245,436,8.5\n245,437,8.0\n245,438,7.5\n245,439,7.0\n245,440,6.5\n245,441,6.0\n245,442,5.5\n245,443,5.0\n245,444,4.5\n245,445,4.0\n245,446,4.5\n245,447,5.0\n245,448,5.5\n245,449,6.0\n245,450,14.5\n245,451,14.0\n245,452,13.5\n245,453,13.0\n245,454,12.5\n245,455,12.0\n245,456,11.5\n245,457,11.0\n245,458,10.5\n245,459,10.0\n245,460,9.5\n245,461,9.0\n245,462,8.5\n245,463,8.0\n245,464,7.5\n245,465,7.0\n245,466,6.5\n245,467,6.0\n245,468,5.5\n245,469,5.0\n245,470,4.5\n245,471,5.0\n245,472,5.5\n245,473,6.0\n245,474,6.5\n245,475,15.0\n245,476,14.5\n245,477,14.0\n245,478,13.5\n245,479,13.0\n245,480,12.5\n245,481,12.0\n245,482,11.5\n245,483,11.0\n245,484,10.5\n245,485,10.0\n245,486,9.5\n245,487,9.0\n245,488,8.5\n245,489,8.0\n245,490,7.5\n245,491,7.0\n245,492,6.5\n245,493,6.0\n245,494,5.5\n245,495,5.0\n245,496,5.5\n245,497,6.0\n245,498,6.5\n245,499,7.0\n245,500,15.5\n245,501,15.0\n245,502,14.5\n245,503,14.0\n245,504,13.5\n245,505,13.0\n245,506,12.5\n245,507,12.0\n245,508,11.5\n245,509,11.0\n245,510,10.5\n245,511,10.0\n245,512,9.5\n245,513,9.0\n245,514,8.5\n245,515,8.0\n245,516,7.5\n245,517,7.0\n245,518,6.5\n245,519,6.0\n245,520,5.5\n245,521,6.0\n245,522,6.5\n245,523,7.0\n245,524,7.5\n245,525,16.0\n245,526,15.5\n245,527,15.0\n245,528,14.5\n245,529,14.0\n245,530,13.5\n245,531,13.0\n245,532,12.5\n245,533,12.0\n245,534,11.5\n245,535,11.0\n245,536,10.5\n245,537,10.0\n245,538,9.5\n245,539,9.0\n245,540,8.5\n245,541,8.0\n245,542,7.5\n245,543,7.0\n245,544,6.5\n245,545,6.0\n245,546,6.5\n245,547,7.0\n245,548,7.5\n245,549,8.0\n245,550,16.5\n245,551,16.0\n245,552,15.5\n245,553,15.0\n245,554,14.5\n245,555,14.0\n245,556,13.5\n245,557,13.0\n245,558,12.5\n245,559,12.0\n245,560,11.5\n245,561,11.0\n245,562,10.5\n245,563,10.0\n245,564,9.5\n245,565,9.0\n245,566,8.5\n245,567,8.0\n245,568,7.5\n245,569,7.0\n245,570,6.5\n245,571,7.0\n245,572,7.5\n245,573,8.0\n245,574,8.5\n245,575,17.0\n245,576,16.5\n245,577,16.0\n245,578,15.5\n245,579,15.0\n245,580,14.5\n245,581,14.0\n245,582,13.5\n245,583,13.0\n245,584,12.5\n245,585,12.0\n245,586,11.5\n245,587,11.0\n245,588,10.5\n245,589,10.0\n245,590,9.5\n245,591,9.0\n245,592,8.5\n245,593,8.0\n245,594,7.5\n245,595,7.0\n245,596,7.5\n245,597,8.0\n245,598,8.5\n245,599,9.0\n245,600,17.5\n245,601,17.0\n245,602,16.5\n245,603,16.0\n245,604,15.5\n245,605,15.0\n245,606,14.5\n245,607,14.0\n245,608,13.5\n245,609,13.0\n245,610,12.5\n245,611,12.0\n245,612,11.5\n245,613,11.0\n245,614,10.5\n245,615,10.0\n245,616,9.5\n245,617,9.0\n245,618,8.5\n245,619,8.0\n245,620,7.5\n245,621,8.0\n245,622,8.5\n245,623,9.0\n245,624,9.5\n246,0,15.0\n246,1,14.5\n246,2,14.0\n246,3,13.5\n246,4,13.0\n246,5,12.5\n246,6,12.0\n246,7,11.5\n246,8,11.0\n246,9,10.5\n246,10,10.0\n246,11,9.5\n246,12,9.0\n246,13,8.5\n246,14,8.0\n246,15,7.5\n246,16,7.0\n246,17,6.5\n246,18,6.0\n246,19,5.5\n246,20,5.0\n246,21,4.5\n246,22,5.0\n246,23,5.5\n246,24,6.0\n246,25,14.5\n246,26,14.0\n246,27,13.5\n246,28,13.0\n246,29,12.5\n246,30,12.0\n246,31,11.5\n246,32,11.0\n246,33,10.5\n246,34,10.0\n246,35,9.5\n246,36,9.0\n246,37,8.5\n246,38,8.0\n246,39,7.5\n246,40,7.0\n246,41,6.5\n246,42,6.0\n246,43,5.5\n246,44,5.0\n246,45,4.5\n246,46,4.0\n246,47,4.5\n246,48,5.0\n246,49,5.5\n246,50,14.0\n246,51,13.5\n246,52,13.0\n246,53,12.5\n246,54,12.0\n246,55,11.5\n246,56,11.0\n246,57,10.5\n246,58,10.0\n246,59,9.5\n246,60,9.0\n246,61,8.5\n246,62,8.0\n246,63,7.5\n246,64,7.0\n246,65,6.5\n246,66,6.0\n246,67,5.5\n246,68,5.0\n246,69,4.5\n246,70,4.0\n246,71,3.5\n246,72,4.0\n246,73,4.5\n246,74,5.0\n246,75,13.5\n246,76,13.0\n246,77,12.5\n246,78,12.0\n246,79,11.5\n246,80,11.0\n246,81,10.5\n246,82,10.0\n246,83,9.5\n246,84,9.0\n246,85,8.5\n246,86,8.0\n246,87,7.5\n246,88,7.0\n246,89,6.5\n246,90,6.0\n246,91,5.5\n246,92,5.0\n246,93,4.5\n246,94,4.0\n246,95,3.5\n246,96,3.0\n246,97,3.5\n246,98,4.0\n246,99,4.5\n246,100,13.0\n246,101,12.5\n246,102,12.0\n246,103,11.5\n246,104,11.0\n246,105,10.5\n246,106,10.0\n246,107,9.5\n246,108,9.0\n246,109,8.5\n246,110,8.0\n246,111,7.5\n246,112,7.0\n246,113,6.5\n246,114,6.0\n246,115,5.5\n246,116,5.0\n246,117,4.5\n246,118,4.0\n246,119,3.5\n246,120,3.0\n246,121,2.5\n246,122,3.0\n246,123,3.5\n246,124,4.0\n246,125,12.5\n246,126,12.0\n246,127,11.5\n246,128,11.0\n246,129,10.5\n246,130,10.0\n246,131,9.5\n246,132,9.0\n246,133,8.5\n246,134,8.0\n246,135,7.5\n246,136,7.0\n246,137,6.5\n246,138,6.0\n246,139,5.5\n246,140,5.0\n246,141,4.5\n246,142,4.0\n246,143,3.5\n246,144,3.0\n246,145,2.5\n246,146,2.0\n246,147,2.5\n246,148,3.0\n246,149,3.5\n246,150,12.0\n246,151,11.5\n246,152,11.0\n246,153,10.5\n246,154,10.0\n246,155,9.5\n246,156,9.0\n246,157,8.5\n246,158,8.0\n246,159,7.5\n246,160,7.0\n246,161,6.5\n246,162,6.0\n246,163,5.5\n246,164,5.0\n246,165,4.5\n246,166,4.0\n246,167,3.5\n246,168,3.0\n246,169,2.5\n246,170,2.0\n246,171,1.5\n246,172,2.0\n246,173,2.5\n246,174,3.0\n246,175,11.5\n246,176,11.0\n246,177,10.5\n246,178,10.0\n246,179,9.5\n246,180,9.0\n246,181,8.5\n246,182,8.0\n246,183,7.5\n246,184,7.0\n246,185,6.5\n246,186,6.0\n246,187,5.5\n246,188,5.0\n246,189,4.5\n246,190,4.0\n246,191,3.5\n246,192,3.0\n246,193,2.5\n246,194,2.0\n246,195,1.5\n246,196,1.0\n246,197,1.5\n246,198,2.0\n246,199,2.5\n246,200,11.0\n246,201,10.5\n246,202,10.0\n246,203,9.5\n246,204,9.0\n246,205,8.5\n246,206,8.0\n246,207,7.5\n246,208,7.0\n246,209,6.5\n246,210,6.0\n246,211,5.5\n246,212,5.0\n246,213,4.5\n246,214,4.0\n246,215,3.5\n246,216,3.0\n246,217,2.5\n246,218,2.0\n246,219,1.5\n246,220,1.0\n246,221,0.5\n246,222,1.0\n246,223,1.5\n246,224,2.0\n246,225,10.5\n246,226,10.0\n246,227,9.5\n246,228,9.0\n246,229,8.5\n246,230,8.0\n246,231,7.5\n246,232,7.0\n246,233,6.5\n246,234,6.0\n246,235,5.5\n246,236,5.0\n246,237,4.5\n246,238,4.0\n246,239,3.5\n246,240,3.0\n246,241,2.5\n246,242,2.0\n246,243,1.5\n246,244,1.0\n246,245,0.5\n246,246,0\n246,247,0.5\n246,248,1.0\n246,249,1.5\n246,250,11.0\n246,251,10.5\n246,252,10.0\n246,253,9.5\n246,254,9.0\n246,255,8.5\n246,256,8.0\n246,257,7.5\n246,258,7.0\n246,259,6.5\n246,260,6.0\n246,261,5.5\n246,262,5.0\n246,263,4.5\n246,264,4.0\n246,265,3.5\n246,266,3.0\n246,267,2.5\n246,268,2.0\n246,269,1.5\n246,270,1.0\n246,271,0.5\n246,272,1.0\n246,273,1.5\n246,274,2.0\n246,275,11.5\n246,276,11.0\n246,277,10.5\n246,278,10.0\n246,279,9.5\n246,280,9.0\n246,281,8.5\n246,282,8.0\n246,283,7.5\n246,284,7.0\n246,285,6.5\n246,286,6.0\n246,287,5.5\n246,288,5.0\n246,289,4.5\n246,290,4.0\n246,291,3.5\n246,292,3.0\n246,293,2.5\n246,294,2.0\n246,295,1.5\n246,296,1.0\n246,297,1.5\n246,298,2.0\n246,299,2.5\n246,300,12.0\n246,301,11.5\n246,302,11.0\n246,303,10.5\n246,304,10.0\n246,305,9.5\n246,306,9.0\n246,307,8.5\n246,308,8.0\n246,309,7.5\n246,310,7.0\n246,311,6.5\n246,312,6.0\n246,313,5.5\n246,314,5.0\n246,315,4.5\n246,316,4.0\n246,317,3.5\n246,318,3.0\n246,319,2.5\n246,320,2.0\n246,321,1.5\n246,322,2.0\n246,323,2.5\n246,324,3.0\n246,325,12.5\n246,326,12.0\n246,327,11.5\n246,328,11.0\n246,329,10.5\n246,330,10.0\n246,331,9.5\n246,332,9.0\n246,333,8.5\n246,334,8.0\n246,335,7.5\n246,336,7.0\n246,337,6.5\n246,338,6.0\n246,339,5.5\n246,340,5.0\n246,341,4.5\n246,342,4.0\n246,343,3.5\n246,344,3.0\n246,345,2.5\n246,346,2.0\n246,347,2.5\n246,348,3.0\n246,349,3.5\n246,350,13.0\n246,351,12.5\n246,352,12.0\n246,353,11.5\n246,354,11.0\n246,355,10.5\n246,356,10.0\n246,357,9.5\n246,358,9.0\n246,359,8.5\n246,360,8.0\n246,361,7.5\n246,362,7.0\n246,363,6.5\n246,364,6.0\n246,365,5.5\n246,366,5.0\n246,367,4.5\n246,368,4.0\n246,369,3.5\n246,370,3.0\n246,371,2.5\n246,372,3.0\n246,373,3.5\n246,374,4.0\n246,375,13.5\n246,376,13.0\n246,377,12.5\n246,378,12.0\n246,379,11.5\n246,380,11.0\n246,381,10.5\n246,382,10.0\n246,383,9.5\n246,384,9.0\n246,385,8.5\n246,386,8.0\n246,387,7.5\n246,388,7.0\n246,389,6.5\n246,390,6.0\n246,391,5.5\n246,392,5.0\n246,393,4.5\n246,394,4.0\n246,395,3.5\n246,396,3.0\n246,397,3.5\n246,398,4.0\n246,399,4.5\n246,400,14.0\n246,401,13.5\n246,402,13.0\n246,403,12.5\n246,404,12.0\n246,405,11.5\n246,406,11.0\n246,407,10.5\n246,408,10.0\n246,409,9.5\n246,410,9.0\n246,411,8.5\n246,412,8.0\n246,413,7.5\n246,414,7.0\n246,415,6.5\n246,416,6.0\n246,417,5.5\n246,418,5.0\n246,419,4.5\n246,420,4.0\n246,421,3.5\n246,422,4.0\n246,423,4.5\n246,424,5.0\n246,425,14.5\n246,426,14.0\n246,427,13.5\n246,428,13.0\n246,429,12.5\n246,430,12.0\n246,431,11.5\n246,432,11.0\n246,433,10.5\n246,434,10.0\n246,435,9.5\n246,436,9.0\n246,437,8.5\n246,438,8.0\n246,439,7.5\n246,440,7.0\n246,441,6.5\n246,442,6.0\n246,443,5.5\n246,444,5.0\n246,445,4.5\n246,446,4.0\n246,447,4.5\n246,448,5.0\n246,449,5.5\n246,450,15.0\n246,451,14.5\n246,452,14.0\n246,453,13.5\n246,454,13.0\n246,455,12.5\n246,456,12.0\n246,457,11.5\n246,458,11.0\n246,459,10.5\n246,460,10.0\n246,461,9.5\n246,462,9.0\n246,463,8.5\n246,464,8.0\n246,465,7.5\n246,466,7.0\n246,467,6.5\n246,468,6.0\n246,469,5.5\n246,470,5.0\n246,471,4.5\n246,472,5.0\n246,473,5.5\n246,474,6.0\n246,475,15.5\n246,476,15.0\n246,477,14.5\n246,478,14.0\n246,479,13.5\n246,480,13.0\n246,481,12.5\n246,482,12.0\n246,483,11.5\n246,484,11.0\n246,485,10.5\n246,486,10.0\n246,487,9.5\n246,488,9.0\n246,489,8.5\n246,490,8.0\n246,491,7.5\n246,492,7.0\n246,493,6.5\n246,494,6.0\n246,495,5.5\n246,496,5.0\n246,497,5.5\n246,498,6.0\n246,499,6.5\n246,500,16.0\n246,501,15.5\n246,502,15.0\n246,503,14.5\n246,504,14.0\n246,505,13.5\n246,506,13.0\n246,507,12.5\n246,508,12.0\n246,509,11.5\n246,510,11.0\n246,511,10.5\n246,512,10.0\n246,513,9.5\n246,514,9.0\n246,515,8.5\n246,516,8.0\n246,517,7.5\n246,518,7.0\n246,519,6.5\n246,520,6.0\n246,521,5.5\n246,522,6.0\n246,523,6.5\n246,524,7.0\n246,525,16.5\n246,526,16.0\n246,527,15.5\n246,528,15.0\n246,529,14.5\n246,530,14.0\n246,531,13.5\n246,532,13.0\n246,533,12.5\n246,534,12.0\n246,535,11.5\n246,536,11.0\n246,537,10.5\n246,538,10.0\n246,539,9.5\n246,540,9.0\n246,541,8.5\n246,542,8.0\n246,543,7.5\n246,544,7.0\n246,545,6.5\n246,546,6.0\n246,547,6.5\n246,548,7.0\n246,549,7.5\n246,550,17.0\n246,551,16.5\n246,552,16.0\n246,553,15.5\n246,554,15.0\n246,555,14.5\n246,556,14.0\n246,557,13.5\n246,558,13.0\n246,559,12.5\n246,560,12.0\n246,561,11.5\n246,562,11.0\n246,563,10.5\n246,564,10.0\n246,565,9.5\n246,566,9.0\n246,567,8.5\n246,568,8.0\n246,569,7.5\n246,570,7.0\n246,571,6.5\n246,572,7.0\n246,573,7.5\n246,574,8.0\n246,575,17.5\n246,576,17.0\n246,577,16.5\n246,578,16.0\n246,579,15.5\n246,580,15.0\n246,581,14.5\n246,582,14.0\n246,583,13.5\n246,584,13.0\n246,585,12.5\n246,586,12.0\n246,587,11.5\n246,588,11.0\n246,589,10.5\n246,590,10.0\n246,591,9.5\n246,592,9.0\n246,593,8.5\n246,594,8.0\n246,595,7.5\n246,596,7.0\n246,597,7.5\n246,598,8.0\n246,599,8.5\n246,600,18.0\n246,601,17.5\n246,602,17.0\n246,603,16.5\n246,604,16.0\n246,605,15.5\n246,606,15.0\n246,607,14.5\n246,608,14.0\n246,609,13.5\n246,610,13.0\n246,611,12.5\n246,612,12.0\n246,613,11.5\n246,614,11.0\n246,615,10.5\n246,616,10.0\n246,617,9.5\n246,618,9.0\n246,619,8.5\n246,620,8.0\n246,621,7.5\n246,622,8.0\n246,623,8.5\n246,624,9.0\n247,0,15.5\n247,1,15.0\n247,2,14.5\n247,3,14.0\n247,4,13.5\n247,5,13.0\n247,6,12.5\n247,7,12.0\n247,8,11.5\n247,9,11.0\n247,10,10.5\n247,11,10.0\n247,12,9.5\n247,13,9.0\n247,14,8.5\n247,15,8.0\n247,16,7.5\n247,17,7.0\n247,18,6.5\n247,19,6.0\n247,20,5.5\n247,21,5.0\n247,22,4.5\n247,23,5.0\n247,24,5.5\n247,25,15.0\n247,26,14.5\n247,27,14.0\n247,28,13.5\n247,29,13.0\n247,30,12.5\n247,31,12.0\n247,32,11.5\n247,33,11.0\n247,34,10.5\n247,35,10.0\n247,36,9.5\n247,37,9.0\n247,38,8.5\n247,39,8.0\n247,40,7.5\n247,41,7.0\n247,42,6.5\n247,43,6.0\n247,44,5.5\n247,45,5.0\n247,46,4.5\n247,47,4.0\n247,48,4.5\n247,49,5.0\n247,50,14.5\n247,51,14.0\n247,52,13.5\n247,53,13.0\n247,54,12.5\n247,55,12.0\n247,56,11.5\n247,57,11.0\n247,58,10.5\n247,59,10.0\n247,60,9.5\n247,61,9.0\n247,62,8.5\n247,63,8.0\n247,64,7.5\n247,65,7.0\n247,66,6.5\n247,67,6.0\n247,68,5.5\n247,69,5.0\n247,70,4.5\n247,71,4.0\n247,72,3.5\n247,73,4.0\n247,74,4.5\n247,75,14.0\n247,76,13.5\n247,77,13.0\n247,78,12.5\n247,79,12.0\n247,80,11.5\n247,81,11.0\n247,82,10.5\n247,83,10.0\n247,84,9.5\n247,85,9.0\n247,86,8.5\n247,87,8.0\n247,88,7.5\n247,89,7.0\n247,90,6.5\n247,91,6.0\n247,92,5.5\n247,93,5.0\n247,94,4.5\n247,95,4.0\n247,96,3.5\n247,97,3.0\n247,98,3.5\n247,99,4.0\n247,100,13.5\n247,101,13.0\n247,102,12.5\n247,103,12.0\n247,104,11.5\n247,105,11.0\n247,106,10.5\n247,107,10.0\n247,108,9.5\n247,109,9.0\n247,110,8.5\n247,111,8.0\n247,112,7.5\n247,113,7.0\n247,114,6.5\n247,115,6.0\n247,116,5.5\n247,117,5.0\n247,118,4.5\n247,119,4.0\n247,120,3.5\n247,121,3.0\n247,122,2.5\n247,123,3.0\n247,124,3.5\n247,125,13.0\n247,126,12.5\n247,127,12.0\n247,128,11.5\n247,129,11.0\n247,130,10.5\n247,131,10.0\n247,132,9.5\n247,133,9.0\n247,134,8.5\n247,135,8.0\n247,136,7.5\n247,137,7.0\n247,138,6.5\n247,139,6.0\n247,140,5.5\n247,141,5.0\n247,142,4.5\n247,143,4.0\n247,144,3.5\n247,145,3.0\n247,146,2.5\n247,147,2.0\n247,148,2.5\n247,149,3.0\n247,150,12.5\n247,151,12.0\n247,152,11.5\n247,153,11.0\n247,154,10.5\n247,155,10.0\n247,156,9.5\n247,157,9.0\n247,158,8.5\n247,159,8.0\n247,160,7.5\n247,161,7.0\n247,162,6.5\n247,163,6.0\n247,164,5.5\n247,165,5.0\n247,166,4.5\n247,167,4.0\n247,168,3.5\n247,169,3.0\n247,170,2.5\n247,171,2.0\n247,172,1.5\n247,173,2.0\n247,174,2.5\n247,175,12.0\n247,176,11.5\n247,177,11.0\n247,178,10.5\n247,179,10.0\n247,180,9.5\n247,181,9.0\n247,182,8.5\n247,183,8.0\n247,184,7.5\n247,185,7.0\n247,186,6.5\n247,187,6.0\n247,188,5.5\n247,189,5.0\n247,190,4.5\n247,191,4.0\n247,192,3.5\n247,193,3.0\n247,194,2.5\n247,195,2.0\n247,196,1.5\n247,197,1.0\n247,198,1.5\n247,199,2.0\n247,200,11.5\n247,201,11.0\n247,202,10.5\n247,203,10.0\n247,204,9.5\n247,205,9.0\n247,206,8.5\n247,207,8.0\n247,208,7.5\n247,209,7.0\n247,210,6.5\n247,211,6.0\n247,212,5.5\n247,213,5.0\n247,214,4.5\n247,215,4.0\n247,216,3.5\n247,217,3.0\n247,218,2.5\n247,219,2.0\n247,220,1.5\n247,221,1.0\n247,222,0.5\n247,223,1.0\n247,224,1.5\n247,225,11.0\n247,226,10.5\n247,227,10.0\n247,228,9.5\n247,229,9.0\n247,230,8.5\n247,231,8.0\n247,232,7.5\n247,233,7.0\n247,234,6.5\n247,235,6.0\n247,236,5.5\n247,237,5.0\n247,238,4.5\n247,239,4.0\n247,240,3.5\n247,241,3.0\n247,242,2.5\n247,243,2.0\n247,244,1.5\n247,245,1.0\n247,246,0.5\n247,247,0\n247,248,0.5\n247,249,1.0\n247,250,11.5\n247,251,11.0\n247,252,10.5\n247,253,10.0\n247,254,9.5\n247,255,9.0\n247,256,8.5\n247,257,8.0\n247,258,7.5\n247,259,7.0\n247,260,6.5\n247,261,6.0\n247,262,5.5\n247,263,5.0\n247,264,4.5\n247,265,4.0\n247,266,3.5\n247,267,3.0\n247,268,2.5\n247,269,2.0\n247,270,1.5\n247,271,1.0\n247,272,0.5\n247,273,1.0\n247,274,1.5\n247,275,12.0\n247,276,11.5\n247,277,11.0\n247,278,10.5\n247,279,10.0\n247,280,9.5\n247,281,9.0\n247,282,8.5\n247,283,8.0\n247,284,7.5\n247,285,7.0\n247,286,6.5\n247,287,6.0\n247,288,5.5\n247,289,5.0\n247,290,4.5\n247,291,4.0\n247,292,3.5\n247,293,3.0\n247,294,2.5\n247,295,2.0\n247,296,1.5\n247,297,1.0\n247,298,1.5\n247,299,2.0\n247,300,12.5\n247,301,12.0\n247,302,11.5\n247,303,11.0\n247,304,10.5\n247,305,10.0\n247,306,9.5\n247,307,9.0\n247,308,8.5\n247,309,8.0\n247,310,7.5\n247,311,7.0\n247,312,6.5\n247,313,6.0\n247,314,5.5\n247,315,5.0\n247,316,4.5\n247,317,4.0\n247,318,3.5\n247,319,3.0\n247,320,2.5\n247,321,2.0\n247,322,1.5\n247,323,2.0\n247,324,2.5\n247,325,13.0\n247,326,12.5\n247,327,12.0\n247,328,11.5\n247,329,11.0\n247,330,10.5\n247,331,10.0\n247,332,9.5\n247,333,9.0\n247,334,8.5\n247,335,8.0\n247,336,7.5\n247,337,7.0\n247,338,6.5\n247,339,6.0\n247,340,5.5\n247,341,5.0\n247,342,4.5\n247,343,4.0\n247,344,3.5\n247,345,3.0\n247,346,2.5\n247,347,2.0\n247,348,2.5\n247,349,3.0\n247,350,13.5\n247,351,13.0\n247,352,12.5\n247,353,12.0\n247,354,11.5\n247,355,11.0\n247,356,10.5\n247,357,10.0\n247,358,9.5\n247,359,9.0\n247,360,8.5\n247,361,8.0\n247,362,7.5\n247,363,7.0\n247,364,6.5\n247,365,6.0\n247,366,5.5\n247,367,5.0\n247,368,4.5\n247,369,4.0\n247,370,3.5\n247,371,3.0\n247,372,2.5\n247,373,3.0\n247,374,3.5\n247,375,14.0\n247,376,13.5\n247,377,13.0\n247,378,12.5\n247,379,12.0\n247,380,11.5\n247,381,11.0\n247,382,10.5\n247,383,10.0\n247,384,9.5\n247,385,9.0\n247,386,8.5\n247,387,8.0\n247,388,7.5\n247,389,7.0\n247,390,6.5\n247,391,6.0\n247,392,5.5\n247,393,5.0\n247,394,4.5\n247,395,4.0\n247,396,3.5\n247,397,3.0\n247,398,3.5\n247,399,4.0\n247,400,14.5\n247,401,14.0\n247,402,13.5\n247,403,13.0\n247,404,12.5\n247,405,12.0\n247,406,11.5\n247,407,11.0\n247,408,10.5\n247,409,10.0\n247,410,9.5\n247,411,9.0\n247,412,8.5\n247,413,8.0\n247,414,7.5\n247,415,7.0\n247,416,6.5\n247,417,6.0\n247,418,5.5\n247,419,5.0\n247,420,4.5\n247,421,4.0\n247,422,3.5\n247,423,4.0\n247,424,4.5\n247,425,15.0\n247,426,14.5\n247,427,14.0\n247,428,13.5\n247,429,13.0\n247,430,12.5\n247,431,12.0\n247,432,11.5\n247,433,11.0\n247,434,10.5\n247,435,10.0\n247,436,9.5\n247,437,9.0\n247,438,8.5\n247,439,8.0\n247,440,7.5\n247,441,7.0\n247,442,6.5\n247,443,6.0\n247,444,5.5\n247,445,5.0\n247,446,4.5\n247,447,4.0\n247,448,4.5\n247,449,5.0\n247,450,15.5\n247,451,15.0\n247,452,14.5\n247,453,14.0\n247,454,13.5\n247,455,13.0\n247,456,12.5\n247,457,12.0\n247,458,11.5\n247,459,11.0\n247,460,10.5\n247,461,10.0\n247,462,9.5\n247,463,9.0\n247,464,8.5\n247,465,8.0\n247,466,7.5\n247,467,7.0\n247,468,6.5\n247,469,6.0\n247,470,5.5\n247,471,5.0\n247,472,4.5\n247,473,5.0\n247,474,5.5\n247,475,16.0\n247,476,15.5\n247,477,15.0\n247,478,14.5\n247,479,14.0\n247,480,13.5\n247,481,13.0\n247,482,12.5\n247,483,12.0\n247,484,11.5\n247,485,11.0\n247,486,10.5\n247,487,10.0\n247,488,9.5\n247,489,9.0\n247,490,8.5\n247,491,8.0\n247,492,7.5\n247,493,7.0\n247,494,6.5\n247,495,6.0\n247,496,5.5\n247,497,5.0\n247,498,5.5\n247,499,6.0\n247,500,16.5\n247,501,16.0\n247,502,15.5\n247,503,15.0\n247,504,14.5\n247,505,14.0\n247,506,13.5\n247,507,13.0\n247,508,12.5\n247,509,12.0\n247,510,11.5\n247,511,11.0\n247,512,10.5\n247,513,10.0\n247,514,9.5\n247,515,9.0\n247,516,8.5\n247,517,8.0\n247,518,7.5\n247,519,7.0\n247,520,6.5\n247,521,6.0\n247,522,5.5\n247,523,6.0\n247,524,6.5\n247,525,17.0\n247,526,16.5\n247,527,16.0\n247,528,15.5\n247,529,15.0\n247,530,14.5\n247,531,14.0\n247,532,13.5\n247,533,13.0\n247,534,12.5\n247,535,12.0\n247,536,11.5\n247,537,11.0\n247,538,10.5\n247,539,10.0\n247,540,9.5\n247,541,9.0\n247,542,8.5\n247,543,8.0\n247,544,7.5\n247,545,7.0\n247,546,6.5\n247,547,6.0\n247,548,6.5\n247,549,7.0\n247,550,17.5\n247,551,17.0\n247,552,16.5\n247,553,16.0\n247,554,15.5\n247,555,15.0\n247,556,14.5\n247,557,14.0\n247,558,13.5\n247,559,13.0\n247,560,12.5\n247,561,12.0\n247,562,11.5\n247,563,11.0\n247,564,10.5\n247,565,10.0\n247,566,9.5\n247,567,9.0\n247,568,8.5\n247,569,8.0\n247,570,7.5\n247,571,7.0\n247,572,6.5\n247,573,7.0\n247,574,7.5\n247,575,18.0\n247,576,17.5\n247,577,17.0\n247,578,16.5\n247,579,16.0\n247,580,15.5\n247,581,15.0\n247,582,14.5\n247,583,14.0\n247,584,13.5\n247,585,13.0\n247,586,12.5\n247,587,12.0\n247,588,11.5\n247,589,11.0\n247,590,10.5\n247,591,10.0\n247,592,9.5\n247,593,9.0\n247,594,8.5\n247,595,8.0\n247,596,7.5\n247,597,7.0\n247,598,7.5\n247,599,8.0\n247,600,18.5\n247,601,18.0\n247,602,17.5\n247,603,17.0\n247,604,16.5\n247,605,16.0\n247,606,15.5\n247,607,15.0\n247,608,14.5\n247,609,14.0\n247,610,13.5\n247,611,13.0\n247,612,12.5\n247,613,12.0\n247,614,11.5\n247,615,11.0\n247,616,10.5\n247,617,10.0\n247,618,9.5\n247,619,9.0\n247,620,8.5\n247,621,8.0\n247,622,7.5\n247,623,8.0\n247,624,8.5\n248,0,16.0\n248,1,15.5\n248,2,15.0\n248,3,14.5\n248,4,14.0\n248,5,13.5\n248,6,13.0\n248,7,12.5\n248,8,12.0\n248,9,11.5\n248,10,11.0\n248,11,10.5\n248,12,10.0\n248,13,9.5\n248,14,9.0\n248,15,8.5\n248,16,8.0\n248,17,7.5\n248,18,7.0\n248,19,6.5\n248,20,6.0\n248,21,5.5\n248,22,5.0\n248,23,4.5\n248,24,5.0\n248,25,15.5\n248,26,15.0\n248,27,14.5\n248,28,14.0\n248,29,13.5\n248,30,13.0\n248,31,12.5\n248,32,12.0\n248,33,11.5\n248,34,11.0\n248,35,10.5\n248,36,10.0\n248,37,9.5\n248,38,9.0\n248,39,8.5\n248,40,8.0\n248,41,7.5\n248,42,7.0\n248,43,6.5\n248,44,6.0\n248,45,5.5\n248,46,5.0\n248,47,4.5\n248,48,4.0\n248,49,4.5\n248,50,15.0\n248,51,14.5\n248,52,14.0\n248,53,13.5\n248,54,13.0\n248,55,12.5\n248,56,12.0\n248,57,11.5\n248,58,11.0\n248,59,10.5\n248,60,10.0\n248,61,9.5\n248,62,9.0\n248,63,8.5\n248,64,8.0\n248,65,7.5\n248,66,7.0\n248,67,6.5\n248,68,6.0\n248,69,5.5\n248,70,5.0\n248,71,4.5\n248,72,4.0\n248,73,3.5\n248,74,4.0\n248,75,14.5\n248,76,14.0\n248,77,13.5\n248,78,13.0\n248,79,12.5\n248,80,12.0\n248,81,11.5\n248,82,11.0\n248,83,10.5\n248,84,10.0\n248,85,9.5\n248,86,9.0\n248,87,8.5\n248,88,8.0\n248,89,7.5\n248,90,7.0\n248,91,6.5\n248,92,6.0\n248,93,5.5\n248,94,5.0\n248,95,4.5\n248,96,4.0\n248,97,3.5\n248,98,3.0\n248,99,3.5\n248,100,14.0\n248,101,13.5\n248,102,13.0\n248,103,12.5\n248,104,12.0\n248,105,11.5\n248,106,11.0\n248,107,10.5\n248,108,10.0\n248,109,9.5\n248,110,9.0\n248,111,8.5\n248,112,8.0\n248,113,7.5\n248,114,7.0\n248,115,6.5\n248,116,6.0\n248,117,5.5\n248,118,5.0\n248,119,4.5\n248,120,4.0\n248,121,3.5\n248,122,3.0\n248,123,2.5\n248,124,3.0\n248,125,13.5\n248,126,13.0\n248,127,12.5\n248,128,12.0\n248,129,11.5\n248,130,11.0\n248,131,10.5\n248,132,10.0\n248,133,9.5\n248,134,9.0\n248,135,8.5\n248,136,8.0\n248,137,7.5\n248,138,7.0\n248,139,6.5\n248,140,6.0\n248,141,5.5\n248,142,5.0\n248,143,4.5\n248,144,4.0\n248,145,3.5\n248,146,3.0\n248,147,2.5\n248,148,2.0\n248,149,2.5\n248,150,13.0\n248,151,12.5\n248,152,12.0\n248,153,11.5\n248,154,11.0\n248,155,10.5\n248,156,10.0\n248,157,9.5\n248,158,9.0\n248,159,8.5\n248,160,8.0\n248,161,7.5\n248,162,7.0\n248,163,6.5\n248,164,6.0\n248,165,5.5\n248,166,5.0\n248,167,4.5\n248,168,4.0\n248,169,3.5\n248,170,3.0\n248,171,2.5\n248,172,2.0\n248,173,1.5\n248,174,2.0\n248,175,12.5\n248,176,12.0\n248,177,11.5\n248,178,11.0\n248,179,10.5\n248,180,10.0\n248,181,9.5\n248,182,9.0\n248,183,8.5\n248,184,8.0\n248,185,7.5\n248,186,7.0\n248,187,6.5\n248,188,6.0\n248,189,5.5\n248,190,5.0\n248,191,4.5\n248,192,4.0\n248,193,3.5\n248,194,3.0\n248,195,2.5\n248,196,2.0\n248,197,1.5\n248,198,1.0\n248,199,1.5\n248,200,12.0\n248,201,11.5\n248,202,11.0\n248,203,10.5\n248,204,10.0\n248,205,9.5\n248,206,9.0\n248,207,8.5\n248,208,8.0\n248,209,7.5\n248,210,7.0\n248,211,6.5\n248,212,6.0\n248,213,5.5\n248,214,5.0\n248,215,4.5\n248,216,4.0\n248,217,3.5\n248,218,3.0\n248,219,2.5\n248,220,2.0\n248,221,1.5\n248,222,1.0\n248,223,0.5\n248,224,1.0\n248,225,11.5\n248,226,11.0\n248,227,10.5\n248,228,10.0\n248,229,9.5\n248,230,9.0\n248,231,8.5\n248,232,8.0\n248,233,7.5\n248,234,7.0\n248,235,6.5\n248,236,6.0\n248,237,5.5\n248,238,5.0\n248,239,4.5\n248,240,4.0\n248,241,3.5\n248,242,3.0\n248,243,2.5\n248,244,2.0\n248,245,1.5\n248,246,1.0\n248,247,0.5\n248,248,0\n248,249,0.5\n248,250,12.0\n248,251,11.5\n248,252,11.0\n248,253,10.5\n248,254,10.0\n248,255,9.5\n248,256,9.0\n248,257,8.5\n248,258,8.0\n248,259,7.5\n248,260,7.0\n248,261,6.5\n248,262,6.0\n248,263,5.5\n248,264,5.0\n248,265,4.5\n248,266,4.0\n248,267,3.5\n248,268,3.0\n248,269,2.5\n248,270,2.0\n248,271,1.5\n248,272,1.0\n248,273,0.5\n248,274,1.0\n248,275,12.5\n248,276,12.0\n248,277,11.5\n248,278,11.0\n248,279,10.5\n248,280,10.0\n248,281,9.5\n248,282,9.0\n248,283,8.5\n248,284,8.0\n248,285,7.5\n248,286,7.0\n248,287,6.5\n248,288,6.0\n248,289,5.5\n248,290,5.0\n248,291,4.5\n248,292,4.0\n248,293,3.5\n248,294,3.0\n248,295,2.5\n248,296,2.0\n248,297,1.5\n248,298,1.0\n248,299,1.5\n248,300,13.0\n248,301,12.5\n248,302,12.0\n248,303,11.5\n248,304,11.0\n248,305,10.5\n248,306,10.0\n248,307,9.5\n248,308,9.0\n248,309,8.5\n248,310,8.0\n248,311,7.5\n248,312,7.0\n248,313,6.5\n248,314,6.0\n248,315,5.5\n248,316,5.0\n248,317,4.5\n248,318,4.0\n248,319,3.5\n248,320,3.0\n248,321,2.5\n248,322,2.0\n248,323,1.5\n248,324,2.0\n248,325,13.5\n248,326,13.0\n248,327,12.5\n248,328,12.0\n248,329,11.5\n248,330,11.0\n248,331,10.5\n248,332,10.0\n248,333,9.5\n248,334,9.0\n248,335,8.5\n248,336,8.0\n248,337,7.5\n248,338,7.0\n248,339,6.5\n248,340,6.0\n248,341,5.5\n248,342,5.0\n248,343,4.5\n248,344,4.0\n248,345,3.5\n248,346,3.0\n248,347,2.5\n248,348,2.0\n248,349,2.5\n248,350,14.0\n248,351,13.5\n248,352,13.0\n248,353,12.5\n248,354,12.0\n248,355,11.5\n248,356,11.0\n248,357,10.5\n248,358,10.0\n248,359,9.5\n248,360,9.0\n248,361,8.5\n248,362,8.0\n248,363,7.5\n248,364,7.0\n248,365,6.5\n248,366,6.0\n248,367,5.5\n248,368,5.0\n248,369,4.5\n248,370,4.0\n248,371,3.5\n248,372,3.0\n248,373,2.5\n248,374,3.0\n248,375,14.5\n248,376,14.0\n248,377,13.5\n248,378,13.0\n248,379,12.5\n248,380,12.0\n248,381,11.5\n248,382,11.0\n248,383,10.5\n248,384,10.0\n248,385,9.5\n248,386,9.0\n248,387,8.5\n248,388,8.0\n248,389,7.5\n248,390,7.0\n248,391,6.5\n248,392,6.0\n248,393,5.5\n248,394,5.0\n248,395,4.5\n248,396,4.0\n248,397,3.5\n248,398,3.0\n248,399,3.5\n248,400,15.0\n248,401,14.5\n248,402,14.0\n248,403,13.5\n248,404,13.0\n248,405,12.5\n248,406,12.0\n248,407,11.5\n248,408,11.0\n248,409,10.5\n248,410,10.0\n248,411,9.5\n248,412,9.0\n248,413,8.5\n248,414,8.0\n248,415,7.5\n248,416,7.0\n248,417,6.5\n248,418,6.0\n248,419,5.5\n248,420,5.0\n248,421,4.5\n248,422,4.0\n248,423,3.5\n248,424,4.0\n248,425,15.5\n248,426,15.0\n248,427,14.5\n248,428,14.0\n248,429,13.5\n248,430,13.0\n248,431,12.5\n248,432,12.0\n248,433,11.5\n248,434,11.0\n248,435,10.5\n248,436,10.0\n248,437,9.5\n248,438,9.0\n248,439,8.5\n248,440,8.0\n248,441,7.5\n248,442,7.0\n248,443,6.5\n248,444,6.0\n248,445,5.5\n248,446,5.0\n248,447,4.5\n248,448,4.0\n248,449,4.5\n248,450,16.0\n248,451,15.5\n248,452,15.0\n248,453,14.5\n248,454,14.0\n248,455,13.5\n248,456,13.0\n248,457,12.5\n248,458,12.0\n248,459,11.5\n248,460,11.0\n248,461,10.5\n248,462,10.0\n248,463,9.5\n248,464,9.0\n248,465,8.5\n248,466,8.0\n248,467,7.5\n248,468,7.0\n248,469,6.5\n248,470,6.0\n248,471,5.5\n248,472,5.0\n248,473,4.5\n248,474,5.0\n248,475,16.5\n248,476,16.0\n248,477,15.5\n248,478,15.0\n248,479,14.5\n248,480,14.0\n248,481,13.5\n248,482,13.0\n248,483,12.5\n248,484,12.0\n248,485,11.5\n248,486,11.0\n248,487,10.5\n248,488,10.0\n248,489,9.5\n248,490,9.0\n248,491,8.5\n248,492,8.0\n248,493,7.5\n248,494,7.0\n248,495,6.5\n248,496,6.0\n248,497,5.5\n248,498,5.0\n248,499,5.5\n248,500,17.0\n248,501,16.5\n248,502,16.0\n248,503,15.5\n248,504,15.0\n248,505,14.5\n248,506,14.0\n248,507,13.5\n248,508,13.0\n248,509,12.5\n248,510,12.0\n248,511,11.5\n248,512,11.0\n248,513,10.5\n248,514,10.0\n248,515,9.5\n248,516,9.0\n248,517,8.5\n248,518,8.0\n248,519,7.5\n248,520,7.0\n248,521,6.5\n248,522,6.0\n248,523,5.5\n248,524,6.0\n248,525,17.5\n248,526,17.0\n248,527,16.5\n248,528,16.0\n248,529,15.5\n248,530,15.0\n248,531,14.5\n248,532,14.0\n248,533,13.5\n248,534,13.0\n248,535,12.5\n248,536,12.0\n248,537,11.5\n248,538,11.0\n248,539,10.5\n248,540,10.0\n248,541,9.5\n248,542,9.0\n248,543,8.5\n248,544,8.0\n248,545,7.5\n248,546,7.0\n248,547,6.5\n248,548,6.0\n248,549,6.5\n248,550,18.0\n248,551,17.5\n248,552,17.0\n248,553,16.5\n248,554,16.0\n248,555,15.5\n248,556,15.0\n248,557,14.5\n248,558,14.0\n248,559,13.5\n248,560,13.0\n248,561,12.5\n248,562,12.0\n248,563,11.5\n248,564,11.0\n248,565,10.5\n248,566,10.0\n248,567,9.5\n248,568,9.0\n248,569,8.5\n248,570,8.0\n248,571,7.5\n248,572,7.0\n248,573,6.5\n248,574,7.0\n248,575,18.5\n248,576,18.0\n248,577,17.5\n248,578,17.0\n248,579,16.5\n248,580,16.0\n248,581,15.5\n248,582,15.0\n248,583,14.5\n248,584,14.0\n248,585,13.5\n248,586,13.0\n248,587,12.5\n248,588,12.0\n248,589,11.5\n248,590,11.0\n248,591,10.5\n248,592,10.0\n248,593,9.5\n248,594,9.0\n248,595,8.5\n248,596,8.0\n248,597,7.5\n248,598,7.0\n248,599,7.5\n248,600,19.0\n248,601,18.5\n248,602,18.0\n248,603,17.5\n248,604,17.0\n248,605,16.5\n248,606,16.0\n248,607,15.5\n248,608,15.0\n248,609,14.5\n248,610,14.0\n248,611,13.5\n248,612,13.0\n248,613,12.5\n248,614,12.0\n248,615,11.5\n248,616,11.0\n248,617,10.5\n248,618,10.0\n248,619,9.5\n248,620,9.0\n248,621,8.5\n248,622,8.0\n248,623,7.5\n248,624,8.0\n249,0,16.5\n249,1,16.0\n249,2,15.5\n249,3,15.0\n249,4,14.5\n249,5,14.0\n249,6,13.5\n249,7,13.0\n249,8,12.5\n249,9,12.0\n249,10,11.5\n249,11,11.0\n249,12,10.5\n249,13,10.0\n249,14,9.5\n249,15,9.0\n249,16,8.5\n249,17,8.0\n249,18,7.5\n249,19,7.0\n249,20,6.5\n249,21,6.0\n249,22,5.5\n249,23,5.0\n249,24,4.5\n249,25,16.0\n249,26,15.5\n249,27,15.0\n249,28,14.5\n249,29,14.0\n249,30,13.5\n249,31,13.0\n249,32,12.5\n249,33,12.0\n249,34,11.5\n249,35,11.0\n249,36,10.5\n249,37,10.0\n249,38,9.5\n249,39,9.0\n249,40,8.5\n249,41,8.0\n249,42,7.5\n249,43,7.0\n249,44,6.5\n249,45,6.0\n249,46,5.5\n249,47,5.0\n249,48,4.5\n249,49,4.0\n249,50,15.5\n249,51,15.0\n249,52,14.5\n249,53,14.0\n249,54,13.5\n249,55,13.0\n249,56,12.5\n249,57,12.0\n249,58,11.5\n249,59,11.0\n249,60,10.5\n249,61,10.0\n249,62,9.5\n249,63,9.0\n249,64,8.5\n249,65,8.0\n249,66,7.5\n249,67,7.0\n249,68,6.5\n249,69,6.0\n249,70,5.5\n249,71,5.0\n249,72,4.5\n249,73,4.0\n249,74,3.5\n249,75,15.0\n249,76,14.5\n249,77,14.0\n249,78,13.5\n249,79,13.0\n249,80,12.5\n249,81,12.0\n249,82,11.5\n249,83,11.0\n249,84,10.5\n249,85,10.0\n249,86,9.5\n249,87,9.0\n249,88,8.5\n249,89,8.0\n249,90,7.5\n249,91,7.0\n249,92,6.5\n249,93,6.0\n249,94,5.5\n249,95,5.0\n249,96,4.5\n249,97,4.0\n249,98,3.5\n249,99,3.0\n249,100,14.5\n249,101,14.0\n249,102,13.5\n249,103,13.0\n249,104,12.5\n249,105,12.0\n249,106,11.5\n249,107,11.0\n249,108,10.5\n249,109,10.0\n249,110,9.5\n249,111,9.0\n249,112,8.5\n249,113,8.0\n249,114,7.5\n249,115,7.0\n249,116,6.5\n249,117,6.0\n249,118,5.5\n249,119,5.0\n249,120,4.5\n249,121,4.0\n249,122,3.5\n249,123,3.0\n249,124,2.5\n249,125,14.0\n249,126,13.5\n249,127,13.0\n249,128,12.5\n249,129,12.0\n249,130,11.5\n249,131,11.0\n249,132,10.5\n249,133,10.0\n249,134,9.5\n249,135,9.0\n249,136,8.5\n249,137,8.0\n249,138,7.5\n249,139,7.0\n249,140,6.5\n249,141,6.0\n249,142,5.5\n249,143,5.0\n249,144,4.5\n249,145,4.0\n249,146,3.5\n249,147,3.0\n249,148,2.5\n249,149,2.0\n249,150,13.5\n249,151,13.0\n249,152,12.5\n249,153,12.0\n249,154,11.5\n249,155,11.0\n249,156,10.5\n249,157,10.0\n249,158,9.5\n249,159,9.0\n249,160,8.5\n249,161,8.0\n249,162,7.5\n249,163,7.0\n249,164,6.5\n249,165,6.0\n249,166,5.5\n249,167,5.0\n249,168,4.5\n249,169,4.0\n249,170,3.5\n249,171,3.0\n249,172,2.5\n249,173,2.0\n249,174,1.5\n249,175,13.0\n249,176,12.5\n249,177,12.0\n249,178,11.5\n249,179,11.0\n249,180,10.5\n249,181,10.0\n249,182,9.5\n249,183,9.0\n249,184,8.5\n249,185,8.0\n249,186,7.5\n249,187,7.0\n249,188,6.5\n249,189,6.0\n249,190,5.5\n249,191,5.0\n249,192,4.5\n249,193,4.0\n249,194,3.5\n249,195,3.0\n249,196,2.5\n249,197,2.0\n249,198,1.5\n249,199,1.0\n249,200,12.5\n249,201,12.0\n249,202,11.5\n249,203,11.0\n249,204,10.5\n249,205,10.0\n249,206,9.5\n249,207,9.0\n249,208,8.5\n249,209,8.0\n249,210,7.5\n249,211,7.0\n249,212,6.5\n249,213,6.0\n249,214,5.5\n249,215,5.0\n249,216,4.5\n249,217,4.0\n249,218,3.5\n249,219,3.0\n249,220,2.5\n249,221,2.0\n249,222,1.5\n249,223,1.0\n249,224,0.5\n249,225,12.0\n249,226,11.5\n249,227,11.0\n249,228,10.5\n249,229,10.0\n249,230,9.5\n249,231,9.0\n249,232,8.5\n249,233,8.0\n249,234,7.5\n249,235,7.0\n249,236,6.5\n249,237,6.0\n249,238,5.5\n249,239,5.0\n249,240,4.5\n249,241,4.0\n249,242,3.5\n249,243,3.0\n249,244,2.5\n249,245,2.0\n249,246,1.5\n249,247,1.0\n249,248,0.5\n249,249,0\n249,250,12.5\n249,251,12.0\n249,252,11.5\n249,253,11.0\n249,254,10.5\n249,255,10.0\n249,256,9.5\n249,257,9.0\n249,258,8.5\n249,259,8.0\n249,260,7.5\n249,261,7.0\n249,262,6.5\n249,263,6.0\n249,264,5.5\n249,265,5.0\n249,266,4.5\n249,267,4.0\n249,268,3.5\n249,269,3.0\n249,270,2.5\n249,271,2.0\n249,272,1.5\n249,273,1.0\n249,274,0.5\n249,275,13.0\n249,276,12.5\n249,277,12.0\n249,278,11.5\n249,279,11.0\n249,280,10.5\n249,281,10.0\n249,282,9.5\n249,283,9.0\n249,284,8.5\n249,285,8.0\n249,286,7.5\n249,287,7.0\n249,288,6.5\n249,289,6.0\n249,290,5.5\n249,291,5.0\n249,292,4.5\n249,293,4.0\n249,294,3.5\n249,295,3.0\n249,296,2.5\n249,297,2.0\n249,298,1.5\n249,299,1.0\n249,300,13.5\n249,301,13.0\n249,302,12.5\n249,303,12.0\n249,304,11.5\n249,305,11.0\n249,306,10.5\n249,307,10.0\n249,308,9.5\n249,309,9.0\n249,310,8.5\n249,311,8.0\n249,312,7.5\n249,313,7.0\n249,314,6.5\n249,315,6.0\n249,316,5.5\n249,317,5.0\n249,318,4.5\n249,319,4.0\n249,320,3.5\n249,321,3.0\n249,322,2.5\n249,323,2.0\n249,324,1.5\n249,325,14.0\n249,326,13.5\n249,327,13.0\n249,328,12.5\n249,329,12.0\n249,330,11.5\n249,331,11.0\n249,332,10.5\n249,333,10.0\n249,334,9.5\n249,335,9.0\n249,336,8.5\n249,337,8.0\n249,338,7.5\n249,339,7.0\n249,340,6.5\n249,341,6.0\n249,342,5.5\n249,343,5.0\n249,344,4.5\n249,345,4.0\n249,346,3.5\n249,347,3.0\n249,348,2.5\n249,349,2.0\n249,350,14.5\n249,351,14.0\n249,352,13.5\n249,353,13.0\n249,354,12.5\n249,355,12.0\n249,356,11.5\n249,357,11.0\n249,358,10.5\n249,359,10.0\n249,360,9.5\n249,361,9.0\n249,362,8.5\n249,363,8.0\n249,364,7.5\n249,365,7.0\n249,366,6.5\n249,367,6.0\n249,368,5.5\n249,369,5.0\n249,370,4.5\n249,371,4.0\n249,372,3.5\n249,373,3.0\n249,374,2.5\n249,375,15.0\n249,376,14.5\n249,377,14.0\n249,378,13.5\n249,379,13.0\n249,380,12.5\n249,381,12.0\n249,382,11.5\n249,383,11.0\n249,384,10.5\n249,385,10.0\n249,386,9.5\n249,387,9.0\n249,388,8.5\n249,389,8.0\n249,390,7.5\n249,391,7.0\n249,392,6.5\n249,393,6.0\n249,394,5.5\n249,395,5.0\n249,396,4.5\n249,397,4.0\n249,398,3.5\n249,399,3.0\n249,400,15.5\n249,401,15.0\n249,402,14.5\n249,403,14.0\n249,404,13.5\n249,405,13.0\n249,406,12.5\n249,407,12.0\n249,408,11.5\n249,409,11.0\n249,410,10.5\n249,411,10.0\n249,412,9.5\n249,413,9.0\n249,414,8.5\n249,415,8.0\n249,416,7.5\n249,417,7.0\n249,418,6.5\n249,419,6.0\n249,420,5.5\n249,421,5.0\n249,422,4.5\n249,423,4.0\n249,424,3.5\n249,425,16.0\n249,426,15.5\n249,427,15.0\n249,428,14.5\n249,429,14.0\n249,430,13.5\n249,431,13.0\n249,432,12.5\n249,433,12.0\n249,434,11.5\n249,435,11.0\n249,436,10.5\n249,437,10.0\n249,438,9.5\n249,439,9.0\n249,440,8.5\n249,441,8.0\n249,442,7.5\n249,443,7.0\n249,444,6.5\n249,445,6.0\n249,446,5.5\n249,447,5.0\n249,448,4.5\n249,449,4.0\n249,450,16.5\n249,451,16.0\n249,452,15.5\n249,453,15.0\n249,454,14.5\n249,455,14.0\n249,456,13.5\n249,457,13.0\n249,458,12.5\n249,459,12.0\n249,460,11.5\n249,461,11.0\n249,462,10.5\n249,463,10.0\n249,464,9.5\n249,465,9.0\n249,466,8.5\n249,467,8.0\n249,468,7.5\n249,469,7.0\n249,470,6.5\n249,471,6.0\n249,472,5.5\n249,473,5.0\n249,474,4.5\n249,475,17.0\n249,476,16.5\n249,477,16.0\n249,478,15.5\n249,479,15.0\n249,480,14.5\n249,481,14.0\n249,482,13.5\n249,483,13.0\n249,484,12.5\n249,485,12.0\n249,486,11.5\n249,487,11.0\n249,488,10.5\n249,489,10.0\n249,490,9.5\n249,491,9.0\n249,492,8.5\n249,493,8.0\n249,494,7.5\n249,495,7.0\n249,496,6.5\n249,497,6.0\n249,498,5.5\n249,499,5.0\n249,500,17.5\n249,501,17.0\n249,502,16.5\n249,503,16.0\n249,504,15.5\n249,505,15.0\n249,506,14.5\n249,507,14.0\n249,508,13.5\n249,509,13.0\n249,510,12.5\n249,511,12.0\n249,512,11.5\n249,513,11.0\n249,514,10.5\n249,515,10.0\n249,516,9.5\n249,517,9.0\n249,518,8.5\n249,519,8.0\n249,520,7.5\n249,521,7.0\n249,522,6.5\n249,523,6.0\n249,524,5.5\n249,525,18.0\n249,526,17.5\n249,527,17.0\n249,528,16.5\n249,529,16.0\n249,530,15.5\n249,531,15.0\n249,532,14.5\n249,533,14.0\n249,534,13.5\n249,535,13.0\n249,536,12.5\n249,537,12.0\n249,538,11.5\n249,539,11.0\n249,540,10.5\n249,541,10.0\n249,542,9.5\n249,543,9.0\n249,544,8.5\n249,545,8.0\n249,546,7.5\n249,547,7.0\n249,548,6.5\n249,549,6.0\n249,550,18.5\n249,551,18.0\n249,552,17.5\n249,553,17.0\n249,554,16.5\n249,555,16.0\n249,556,15.5\n249,557,15.0\n249,558,14.5\n249,559,14.0\n249,560,13.5\n249,561,13.0\n249,562,12.5\n249,563,12.0\n249,564,11.5\n249,565,11.0\n249,566,10.5\n249,567,10.0\n249,568,9.5\n249,569,9.0\n249,570,8.5\n249,571,8.0\n249,572,7.5\n249,573,7.0\n249,574,6.5\n249,575,19.0\n249,576,18.5\n249,577,18.0\n249,578,17.5\n249,579,17.0\n249,580,16.5\n249,581,16.0\n249,582,15.5\n249,583,15.0\n249,584,14.5\n249,585,14.0\n249,586,13.5\n249,587,13.0\n249,588,12.5\n249,589,12.0\n249,590,11.5\n249,591,11.0\n249,592,10.5\n249,593,10.0\n249,594,9.5\n249,595,9.0\n249,596,8.5\n249,597,8.0\n249,598,7.5\n249,599,7.0\n249,600,19.5\n249,601,19.0\n249,602,18.5\n249,603,18.0\n249,604,17.5\n249,605,17.0\n249,606,16.5\n249,607,16.0\n249,608,15.5\n249,609,15.0\n249,610,14.5\n249,611,14.0\n249,612,13.5\n249,613,13.0\n249,614,12.5\n249,615,12.0\n249,616,11.5\n249,617,11.0\n249,618,10.5\n249,619,10.0\n249,620,9.5\n249,621,9.0\n249,622,8.5\n249,623,8.0\n249,624,7.5\n250,0,5.0\n250,1,5.5\n250,2,6.0\n250,3,6.5\n250,4,7.0\n250,5,7.5\n250,6,8.0\n250,7,8.5\n250,8,9.0\n250,9,9.5\n250,10,10.0\n250,11,10.5\n250,12,11.0\n250,13,11.5\n250,14,12.0\n250,15,12.5\n250,16,13.0\n250,17,13.5\n250,18,14.0\n250,19,14.5\n250,20,15.0\n250,21,15.5\n250,22,16.0\n250,23,16.5\n250,24,17.0\n250,25,4.5\n250,26,5.0\n250,27,5.5\n250,28,6.0\n250,29,6.5\n250,30,7.0\n250,31,7.5\n250,32,8.0\n250,33,8.5\n250,34,9.0\n250,35,9.5\n250,36,10.0\n250,37,10.5\n250,38,11.0\n250,39,11.5\n250,40,12.0\n250,41,12.5\n250,42,13.0\n250,43,13.5\n250,44,14.0\n250,45,14.5\n250,46,15.0\n250,47,15.5\n250,48,16.0\n250,49,16.5\n250,50,4.0\n250,51,4.5\n250,52,5.0\n250,53,5.5\n250,54,6.0\n250,55,6.5\n250,56,7.0\n250,57,7.5\n250,58,8.0\n250,59,8.5\n250,60,9.0\n250,61,9.5\n250,62,10.0\n250,63,10.5\n250,64,11.0\n250,65,11.5\n250,66,12.0\n250,67,12.5\n250,68,13.0\n250,69,13.5\n250,70,14.0\n250,71,14.5\n250,72,15.0\n250,73,15.5\n250,74,16.0\n250,75,3.5\n250,76,4.0\n250,77,4.5\n250,78,5.0\n250,79,5.5\n250,80,6.0\n250,81,6.5\n250,82,7.0\n250,83,7.5\n250,84,8.0\n250,85,8.5\n250,86,9.0\n250,87,9.5\n250,88,10.0\n250,89,10.5\n250,90,11.0\n250,91,11.5\n250,92,12.0\n250,93,12.5\n250,94,13.0\n250,95,13.5\n250,96,14.0\n250,97,14.5\n250,98,15.0\n250,99,15.5\n250,100,3.0\n250,101,3.5\n250,102,4.0\n250,103,4.5\n250,104,5.0\n250,105,5.5\n250,106,6.0\n250,107,6.5\n250,108,7.0\n250,109,7.5\n250,110,8.0\n250,111,8.5\n250,112,9.0\n250,113,9.5\n250,114,10.0\n250,115,10.5\n250,116,11.0\n250,117,11.5\n250,118,12.0\n250,119,12.5\n250,120,13.0\n250,121,13.5\n250,122,14.0\n250,123,14.5\n250,124,15.0\n250,125,2.5\n250,126,3.0\n250,127,3.5\n250,128,4.0\n250,129,4.5\n250,130,5.0\n250,131,5.5\n250,132,6.0\n250,133,6.5\n250,134,7.0\n250,135,7.5\n250,136,8.0\n250,137,8.5\n250,138,9.0\n250,139,9.5\n250,140,10.0\n250,141,10.5\n250,142,11.0\n250,143,11.5\n250,144,12.0\n250,145,12.5\n250,146,13.0\n250,147,13.5\n250,148,14.0\n250,149,14.5\n250,150,2.0\n250,151,2.5\n250,152,3.0\n250,153,3.5\n250,154,4.0\n250,155,4.5\n250,156,5.0\n250,157,5.5\n250,158,6.0\n250,159,6.5\n250,160,7.0\n250,161,7.5\n250,162,8.0\n250,163,8.5\n250,164,9.0\n250,165,9.5\n250,166,10.0\n250,167,10.5\n250,168,11.0\n250,169,11.5\n250,170,12.0\n250,171,12.5\n250,172,13.0\n250,173,13.5\n250,174,14.0\n250,175,1.5\n250,176,2.0\n250,177,2.5\n250,178,3.0\n250,179,3.5\n250,180,4.0\n250,181,4.5\n250,182,5.0\n250,183,5.5\n250,184,6.0\n250,185,6.5\n250,186,7.0\n250,187,7.5\n250,188,8.0\n250,189,8.5\n250,190,9.0\n250,191,9.5\n250,192,10.0\n250,193,10.5\n250,194,11.0\n250,195,11.5\n250,196,12.0\n250,197,12.5\n250,198,13.0\n250,199,13.5\n250,200,1.0\n250,201,1.5\n250,202,2.0\n250,203,2.5\n250,204,3.0\n250,205,3.5\n250,206,4.0\n250,207,4.5\n250,208,5.0\n250,209,5.5\n250,210,6.0\n250,211,6.5\n250,212,7.0\n250,213,7.5\n250,214,8.0\n250,215,8.5\n250,216,9.0\n250,217,9.5\n250,218,10.0\n250,219,10.5\n250,220,11.0\n250,221,11.5\n250,222,12.0\n250,223,12.5\n250,224,13.0\n250,225,0.5\n250,226,1.0\n250,227,1.5\n250,228,2.0\n250,229,2.5\n250,230,3.0\n250,231,3.5\n250,232,4.0\n250,233,4.5\n250,234,5.0\n250,235,5.5\n250,236,6.0\n250,237,6.5\n250,238,7.0\n250,239,7.5\n250,240,8.0\n250,241,8.5\n250,242,9.0\n250,243,9.5\n250,244,10.0\n250,245,10.5\n250,246,11.0\n250,247,11.5\n250,248,12.0\n250,249,12.5\n250,250,0\n250,251,0.5\n250,252,1.0\n250,253,1.5\n250,254,2.0\n250,255,2.5\n250,256,3.0\n250,257,3.5\n250,258,4.0\n250,259,4.5\n250,260,5.0\n250,261,5.5\n250,262,6.0\n250,263,6.5\n250,264,7.0\n250,265,7.5\n250,266,8.0\n250,267,8.5\n250,268,9.0\n250,269,9.5\n250,270,10.0\n250,271,10.5\n250,272,11.0\n250,273,11.5\n250,274,12.0\n250,275,0.5\n250,276,1.0\n250,277,1.5\n250,278,2.0\n250,279,2.5\n250,280,3.0\n250,281,3.5\n250,282,4.0\n250,283,4.5\n250,284,5.0\n250,285,5.5\n250,286,6.0\n250,287,6.5\n250,288,7.0\n250,289,7.5\n250,290,8.0\n250,291,8.5\n250,292,9.0\n250,293,9.5\n250,294,10.0\n250,295,10.5\n250,296,11.0\n250,297,11.5\n250,298,12.0\n250,299,12.5\n250,300,1.0\n250,301,1.5\n250,302,2.0\n250,303,2.5\n250,304,3.0\n250,305,3.5\n250,306,4.0\n250,307,4.5\n250,308,5.0\n250,309,5.5\n250,310,6.0\n250,311,6.5\n250,312,7.0\n250,313,7.5\n250,314,8.0\n250,315,8.5\n250,316,9.0\n250,317,9.5\n250,318,10.0\n250,319,10.5\n250,320,11.0\n250,321,11.5\n250,322,12.0\n250,323,12.5\n250,324,13.0\n250,325,1.5\n250,326,2.0\n250,327,2.5\n250,328,3.0\n250,329,3.5\n250,330,4.0\n250,331,4.5\n250,332,5.0\n250,333,5.5\n250,334,6.0\n250,335,6.5\n250,336,7.0\n250,337,7.5\n250,338,8.0\n250,339,8.5\n250,340,9.0\n250,341,9.5\n250,342,10.0\n250,343,10.5\n250,344,11.0\n250,345,11.5\n250,346,12.0\n250,347,12.5\n250,348,13.0\n250,349,13.5\n250,350,2.0\n250,351,2.5\n250,352,3.0\n250,353,3.5\n250,354,4.0\n250,355,4.5\n250,356,5.0\n250,357,5.5\n250,358,6.0\n250,359,6.5\n250,360,7.0\n250,361,7.5\n250,362,8.0\n250,363,8.5\n250,364,9.0\n250,365,9.5\n250,366,10.0\n250,367,10.5\n250,368,11.0\n250,369,11.5\n250,370,12.0\n250,371,12.5\n250,372,13.0\n250,373,13.5\n250,374,14.0\n250,375,2.5\n250,376,3.0\n250,377,3.5\n250,378,4.0\n250,379,4.5\n250,380,5.0\n250,381,5.5\n250,382,6.0\n250,383,6.5\n250,384,7.0\n250,385,7.5\n250,386,8.0\n250,387,8.5\n250,388,9.0\n250,389,9.5\n250,390,10.0\n250,391,10.5\n250,392,11.0\n250,393,11.5\n250,394,12.0\n250,395,12.5\n250,396,13.0\n250,397,13.5\n250,398,14.0\n250,399,14.5\n250,400,3.0\n250,401,3.5\n250,402,4.0\n250,403,4.5\n250,404,5.0\n250,405,5.5\n250,406,6.0\n250,407,6.5\n250,408,7.0\n250,409,7.5\n250,410,8.0\n250,411,8.5\n250,412,9.0\n250,413,9.5\n250,414,10.0\n250,415,10.5\n250,416,11.0\n250,417,11.5\n250,418,12.0\n250,419,12.5\n250,420,13.0\n250,421,13.5\n250,422,14.0\n250,423,14.5\n250,424,15.0\n250,425,3.5\n250,426,4.0\n250,427,4.5\n250,428,5.0\n250,429,5.5\n250,430,6.0\n250,431,6.5\n250,432,7.0\n250,433,7.5\n250,434,8.0\n250,435,8.5\n250,436,9.0\n250,437,9.5\n250,438,10.0\n250,439,10.5\n250,440,11.0\n250,441,11.5\n250,442,12.0\n250,443,12.5\n250,444,13.0\n250,445,13.5\n250,446,14.0\n250,447,14.5\n250,448,15.0\n250,449,15.5\n250,450,4.0\n250,451,4.5\n250,452,5.0\n250,453,5.5\n250,454,6.0\n250,455,6.5\n250,456,7.0\n250,457,7.5\n250,458,8.0\n250,459,8.5\n250,460,9.0\n250,461,9.5\n250,462,10.0\n250,463,10.5\n250,464,11.0\n250,465,11.5\n250,466,12.0\n250,467,12.5\n250,468,13.0\n250,469,13.5\n250,470,14.0\n250,471,14.5\n250,472,15.0\n250,473,15.5\n250,474,16.0\n250,475,4.5\n250,476,5.0\n250,477,5.5\n250,478,6.0\n250,479,6.5\n250,480,7.0\n250,481,7.5\n250,482,8.0\n250,483,8.5\n250,484,9.0\n250,485,9.5\n250,486,10.0\n250,487,10.5\n250,488,11.0\n250,489,11.5\n250,490,12.0\n250,491,12.5\n250,492,13.0\n250,493,13.5\n250,494,14.0\n250,495,14.5\n250,496,15.0\n250,497,15.5\n250,498,16.0\n250,499,16.5\n250,500,5.0\n250,501,5.5\n250,502,6.0\n250,503,6.5\n250,504,7.0\n250,505,7.5\n250,506,8.0\n250,507,8.5\n250,508,9.0\n250,509,9.5\n250,510,10.0\n250,511,10.5\n250,512,11.0\n250,513,11.5\n250,514,12.0\n250,515,12.5\n250,516,13.0\n250,517,13.5\n250,518,14.0\n250,519,14.5\n250,520,15.0\n250,521,15.5\n250,522,16.0\n250,523,16.5\n250,524,17.0\n250,525,5.5\n250,526,6.0\n250,527,6.5\n250,528,7.0\n250,529,7.5\n250,530,8.0\n250,531,8.5\n250,532,9.0\n250,533,9.5\n250,534,10.0\n250,535,10.5\n250,536,11.0\n250,537,11.5\n250,538,12.0\n250,539,12.5\n250,540,13.0\n250,541,13.5\n250,542,14.0\n250,543,14.5\n250,544,15.0\n250,545,15.5\n250,546,16.0\n250,547,16.5\n250,548,17.0\n250,549,17.5\n250,550,6.0\n250,551,6.5\n250,552,7.0\n250,553,7.5\n250,554,8.0\n250,555,8.5\n250,556,9.0\n250,557,9.5\n250,558,10.0\n250,559,10.5\n250,560,11.0\n250,561,11.5\n250,562,12.0\n250,563,12.5\n250,564,13.0\n250,565,13.5\n250,566,14.0\n250,567,14.5\n250,568,15.0\n250,569,15.5\n250,570,16.0\n250,571,16.5\n250,572,17.0\n250,573,17.5\n250,574,18.0\n250,575,6.5\n250,576,7.0\n250,577,7.5\n250,578,8.0\n250,579,8.5\n250,580,9.0\n250,581,9.5\n250,582,10.0\n250,583,10.5\n250,584,11.0\n250,585,11.5\n250,586,12.0\n250,587,12.5\n250,588,13.0\n250,589,13.5\n250,590,14.0\n250,591,14.5\n250,592,15.0\n250,593,15.5\n250,594,16.0\n250,595,16.5\n250,596,17.0\n250,597,17.5\n250,598,18.0\n250,599,18.5\n250,600,7.0\n250,601,7.5\n250,602,8.0\n250,603,8.5\n250,604,9.0\n250,605,9.5\n250,606,10.0\n250,607,10.5\n250,608,11.0\n250,609,11.5\n250,610,12.0\n250,611,12.5\n250,612,13.0\n250,613,13.5\n250,614,14.0\n250,615,14.5\n250,616,15.0\n250,617,15.5\n250,618,16.0\n250,619,16.5\n250,620,17.0\n250,621,17.5\n250,622,18.0\n250,623,18.5\n250,624,19.0\n251,0,5.5\n251,1,5.0\n251,2,5.5\n251,3,6.0\n251,4,6.5\n251,5,7.0\n251,6,7.5\n251,7,8.0\n251,8,8.5\n251,9,9.0\n251,10,9.5\n251,11,10.0\n251,12,10.5\n251,13,11.0\n251,14,11.5\n251,15,12.0\n251,16,12.5\n251,17,13.0\n251,18,13.5\n251,19,14.0\n251,20,14.5\n251,21,15.0\n251,22,15.5\n251,23,16.0\n251,24,16.5\n251,25,5.0\n251,26,4.5\n251,27,5.0\n251,28,5.5\n251,29,6.0\n251,30,6.5\n251,31,7.0\n251,32,7.5\n251,33,8.0\n251,34,8.5\n251,35,9.0\n251,36,9.5\n251,37,10.0\n251,38,10.5\n251,39,11.0\n251,40,11.5\n251,41,12.0\n251,42,12.5\n251,43,13.0\n251,44,13.5\n251,45,14.0\n251,46,14.5\n251,47,15.0\n251,48,15.5\n251,49,16.0\n251,50,4.5\n251,51,4.0\n251,52,4.5\n251,53,5.0\n251,54,5.5\n251,55,6.0\n251,56,6.5\n251,57,7.0\n251,58,7.5\n251,59,8.0\n251,60,8.5\n251,61,9.0\n251,62,9.5\n251,63,10.0\n251,64,10.5\n251,65,11.0\n251,66,11.5\n251,67,12.0\n251,68,12.5\n251,69,13.0\n251,70,13.5\n251,71,14.0\n251,72,14.5\n251,73,15.0\n251,74,15.5\n251,75,4.0\n251,76,3.5\n251,77,4.0\n251,78,4.5\n251,79,5.0\n251,80,5.5\n251,81,6.0\n251,82,6.5\n251,83,7.0\n251,84,7.5\n251,85,8.0\n251,86,8.5\n251,87,9.0\n251,88,9.5\n251,89,10.0\n251,90,10.5\n251,91,11.0\n251,92,11.5\n251,93,12.0\n251,94,12.5\n251,95,13.0\n251,96,13.5\n251,97,14.0\n251,98,14.5\n251,99,15.0\n251,100,3.5\n251,101,3.0\n251,102,3.5\n251,103,4.0\n251,104,4.5\n251,105,5.0\n251,106,5.5\n251,107,6.0\n251,108,6.5\n251,109,7.0\n251,110,7.5\n251,111,8.0\n251,112,8.5\n251,113,9.0\n251,114,9.5\n251,115,10.0\n251,116,10.5\n251,117,11.0\n251,118,11.5\n251,119,12.0\n251,120,12.5\n251,121,13.0\n251,122,13.5\n251,123,14.0\n251,124,14.5\n251,125,3.0\n251,126,2.5\n251,127,3.0\n251,128,3.5\n251,129,4.0\n251,130,4.5\n251,131,5.0\n251,132,5.5\n251,133,6.0\n251,134,6.5\n251,135,7.0\n251,136,7.5\n251,137,8.0\n251,138,8.5\n251,139,9.0\n251,140,9.5\n251,141,10.0\n251,142,10.5\n251,143,11.0\n251,144,11.5\n251,145,12.0\n251,146,12.5\n251,147,13.0\n251,148,13.5\n251,149,14.0\n251,150,2.5\n251,151,2.0\n251,152,2.5\n251,153,3.0\n251,154,3.5\n251,155,4.0\n251,156,4.5\n251,157,5.0\n251,158,5.5\n251,159,6.0\n251,160,6.5\n251,161,7.0\n251,162,7.5\n251,163,8.0\n251,164,8.5\n251,165,9.0\n251,166,9.5\n251,167,10.0\n251,168,10.5\n251,169,11.0\n251,170,11.5\n251,171,12.0\n251,172,12.5\n251,173,13.0\n251,174,13.5\n251,175,2.0\n251,176,1.5\n251,177,2.0\n251,178,2.5\n251,179,3.0\n251,180,3.5\n251,181,4.0\n251,182,4.5\n251,183,5.0\n251,184,5.5\n251,185,6.0\n251,186,6.5\n251,187,7.0\n251,188,7.5\n251,189,8.0\n251,190,8.5\n251,191,9.0\n251,192,9.5\n251,193,10.0\n251,194,10.5\n251,195,11.0\n251,196,11.5\n251,197,12.0\n251,198,12.5\n251,199,13.0\n251,200,1.5\n251,201,1.0\n251,202,1.5\n251,203,2.0\n251,204,2.5\n251,205,3.0\n251,206,3.5\n251,207,4.0\n251,208,4.5\n251,209,5.0\n251,210,5.5\n251,211,6.0\n251,212,6.5\n251,213,7.0\n251,214,7.5\n251,215,8.0\n251,216,8.5\n251,217,9.0\n251,218,9.5\n251,219,10.0\n251,220,10.5\n251,221,11.0\n251,222,11.5\n251,223,12.0\n251,224,12.5\n251,225,1.0\n251,226,0.5\n251,227,1.0\n251,228,1.5\n251,229,2.0\n251,230,2.5\n251,231,3.0\n251,232,3.5\n251,233,4.0\n251,234,4.5\n251,235,5.0\n251,236,5.5\n251,237,6.0\n251,238,6.5\n251,239,7.0\n251,240,7.5\n251,241,8.0\n251,242,8.5\n251,243,9.0\n251,244,9.5\n251,245,10.0\n251,246,10.5\n251,247,11.0\n251,248,11.5\n251,249,12.0\n251,250,0.5\n251,251,0\n251,252,0.5\n251,253,1.0\n251,254,1.5\n251,255,2.0\n251,256,2.5\n251,257,3.0\n251,258,3.5\n251,259,4.0\n251,260,4.5\n251,261,5.0\n251,262,5.5\n251,263,6.0\n251,264,6.5\n251,265,7.0\n251,266,7.5\n251,267,8.0\n251,268,8.5\n251,269,9.0\n251,270,9.5\n251,271,10.0\n251,272,10.5\n251,273,11.0\n251,274,11.5\n251,275,1.0\n251,276,0.5\n251,277,1.0\n251,278,1.5\n251,279,2.0\n251,280,2.5\n251,281,3.0\n251,282,3.5\n251,283,4.0\n251,284,4.5\n251,285,5.0\n251,286,5.5\n251,287,6.0\n251,288,6.5\n251,289,7.0\n251,290,7.5\n251,291,8.0\n251,292,8.5\n251,293,9.0\n251,294,9.5\n251,295,10.0\n251,296,10.5\n251,297,11.0\n251,298,11.5\n251,299,12.0\n251,300,1.5\n251,301,1.0\n251,302,1.5\n251,303,2.0\n251,304,2.5\n251,305,3.0\n251,306,3.5\n251,307,4.0\n251,308,4.5\n251,309,5.0\n251,310,5.5\n251,311,6.0\n251,312,6.5\n251,313,7.0\n251,314,7.5\n251,315,8.0\n251,316,8.5\n251,317,9.0\n251,318,9.5\n251,319,10.0\n251,320,10.5\n251,321,11.0\n251,322,11.5\n251,323,12.0\n251,324,12.5\n251,325,2.0\n251,326,1.5\n251,327,2.0\n251,328,2.5\n251,329,3.0\n251,330,3.5\n251,331,4.0\n251,332,4.5\n251,333,5.0\n251,334,5.5\n251,335,6.0\n251,336,6.5\n251,337,7.0\n251,338,7.5\n251,339,8.0\n251,340,8.5\n251,341,9.0\n251,342,9.5\n251,343,10.0\n251,344,10.5\n251,345,11.0\n251,346,11.5\n251,347,12.0\n251,348,12.5\n251,349,13.0\n251,350,2.5\n251,351,2.0\n251,352,2.5\n251,353,3.0\n251,354,3.5\n251,355,4.0\n251,356,4.5\n251,357,5.0\n251,358,5.5\n251,359,6.0\n251,360,6.5\n251,361,7.0\n251,362,7.5\n251,363,8.0\n251,364,8.5\n251,365,9.0\n251,366,9.5\n251,367,10.0\n251,368,10.5\n251,369,11.0\n251,370,11.5\n251,371,12.0\n251,372,12.5\n251,373,13.0\n251,374,13.5\n251,375,3.0\n251,376,2.5\n251,377,3.0\n251,378,3.5\n251,379,4.0\n251,380,4.5\n251,381,5.0\n251,382,5.5\n251,383,6.0\n251,384,6.5\n251,385,7.0\n251,386,7.5\n251,387,8.0\n251,388,8.5\n251,389,9.0\n251,390,9.5\n251,391,10.0\n251,392,10.5\n251,393,11.0\n251,394,11.5\n251,395,12.0\n251,396,12.5\n251,397,13.0\n251,398,13.5\n251,399,14.0\n251,400,3.5\n251,401,3.0\n251,402,3.5\n251,403,4.0\n251,404,4.5\n251,405,5.0\n251,406,5.5\n251,407,6.0\n251,408,6.5\n251,409,7.0\n251,410,7.5\n251,411,8.0\n251,412,8.5\n251,413,9.0\n251,414,9.5\n251,415,10.0\n251,416,10.5\n251,417,11.0\n251,418,11.5\n251,419,12.0\n251,420,12.5\n251,421,13.0\n251,422,13.5\n251,423,14.0\n251,424,14.5\n251,425,4.0\n251,426,3.5\n251,427,4.0\n251,428,4.5\n251,429,5.0\n251,430,5.5\n251,431,6.0\n251,432,6.5\n251,433,7.0\n251,434,7.5\n251,435,8.0\n251,436,8.5\n251,437,9.0\n251,438,9.5\n251,439,10.0\n251,440,10.5\n251,441,11.0\n251,442,11.5\n251,443,12.0\n251,444,12.5\n251,445,13.0\n251,446,13.5\n251,447,14.0\n251,448,14.5\n251,449,15.0\n251,450,4.5\n251,451,4.0\n251,452,4.5\n251,453,5.0\n251,454,5.5\n251,455,6.0\n251,456,6.5\n251,457,7.0\n251,458,7.5\n251,459,8.0\n251,460,8.5\n251,461,9.0\n251,462,9.5\n251,463,10.0\n251,464,10.5\n251,465,11.0\n251,466,11.5\n251,467,12.0\n251,468,12.5\n251,469,13.0\n251,470,13.5\n251,471,14.0\n251,472,14.5\n251,473,15.0\n251,474,15.5\n251,475,5.0\n251,476,4.5\n251,477,5.0\n251,478,5.5\n251,479,6.0\n251,480,6.5\n251,481,7.0\n251,482,7.5\n251,483,8.0\n251,484,8.5\n251,485,9.0\n251,486,9.5\n251,487,10.0\n251,488,10.5\n251,489,11.0\n251,490,11.5\n251,491,12.0\n251,492,12.5\n251,493,13.0\n251,494,13.5\n251,495,14.0\n251,496,14.5\n251,497,15.0\n251,498,15.5\n251,499,16.0\n251,500,5.5\n251,501,5.0\n251,502,5.5\n251,503,6.0\n251,504,6.5\n251,505,7.0\n251,506,7.5\n251,507,8.0\n251,508,8.5\n251,509,9.0\n251,510,9.5\n251,511,10.0\n251,512,10.5\n251,513,11.0\n251,514,11.5\n251,515,12.0\n251,516,12.5\n251,517,13.0\n251,518,13.5\n251,519,14.0\n251,520,14.5\n251,521,15.0\n251,522,15.5\n251,523,16.0\n251,524,16.5\n251,525,6.0\n251,526,5.5\n251,527,6.0\n251,528,6.5\n251,529,7.0\n251,530,7.5\n251,531,8.0\n251,532,8.5\n251,533,9.0\n251,534,9.5\n251,535,10.0\n251,536,10.5\n251,537,11.0\n251,538,11.5\n251,539,12.0\n251,540,12.5\n251,541,13.0\n251,542,13.5\n251,543,14.0\n251,544,14.5\n251,545,15.0\n251,546,15.5\n251,547,16.0\n251,548,16.5\n251,549,17.0\n251,550,6.5\n251,551,6.0\n251,552,6.5\n251,553,7.0\n251,554,7.5\n251,555,8.0\n251,556,8.5\n251,557,9.0\n251,558,9.5\n251,559,10.0\n251,560,10.5\n251,561,11.0\n251,562,11.5\n251,563,12.0\n251,564,12.5\n251,565,13.0\n251,566,13.5\n251,567,14.0\n251,568,14.5\n251,569,15.0\n251,570,15.5\n251,571,16.0\n251,572,16.5\n251,573,17.0\n251,574,17.5\n251,575,7.0\n251,576,6.5\n251,577,7.0\n251,578,7.5\n251,579,8.0\n251,580,8.5\n251,581,9.0\n251,582,9.5\n251,583,10.0\n251,584,10.5\n251,585,11.0\n251,586,11.5\n251,587,12.0\n251,588,12.5\n251,589,13.0\n251,590,13.5\n251,591,14.0\n251,592,14.5\n251,593,15.0\n251,594,15.5\n251,595,16.0\n251,596,16.5\n251,597,17.0\n251,598,17.5\n251,599,18.0\n251,600,7.5\n251,601,7.0\n251,602,7.5\n251,603,8.0\n251,604,8.5\n251,605,9.0\n251,606,9.5\n251,607,10.0\n251,608,10.5\n251,609,11.0\n251,610,11.5\n251,611,12.0\n251,612,12.5\n251,613,13.0\n251,614,13.5\n251,615,14.0\n251,616,14.5\n251,617,15.0\n251,618,15.5\n251,619,16.0\n251,620,16.5\n251,621,17.0\n251,622,17.5\n251,623,18.0\n251,624,18.5\n252,0,6.0\n252,1,5.5\n252,2,5.0\n252,3,5.5\n252,4,6.0\n252,5,6.5\n252,6,7.0\n252,7,7.5\n252,8,8.0\n252,9,8.5\n252,10,9.0\n252,11,9.5\n252,12,10.0\n252,13,10.5\n252,14,11.0\n252,15,11.5\n252,16,12.0\n252,17,12.5\n252,18,13.0\n252,19,13.5\n252,20,14.0\n252,21,14.5\n252,22,15.0\n252,23,15.5\n252,24,16.0\n252,25,5.5\n252,26,5.0\n252,27,4.5\n252,28,5.0\n252,29,5.5\n252,30,6.0\n252,31,6.5\n252,32,7.0\n252,33,7.5\n252,34,8.0\n252,35,8.5\n252,36,9.0\n252,37,9.5\n252,38,10.0\n252,39,10.5\n252,40,11.0\n252,41,11.5\n252,42,12.0\n252,43,12.5\n252,44,13.0\n252,45,13.5\n252,46,14.0\n252,47,14.5\n252,48,15.0\n252,49,15.5\n252,50,5.0\n252,51,4.5\n252,52,4.0\n252,53,4.5\n252,54,5.0\n252,55,5.5\n252,56,6.0\n252,57,6.5\n252,58,7.0\n252,59,7.5\n252,60,8.0\n252,61,8.5\n252,62,9.0\n252,63,9.5\n252,64,10.0\n252,65,10.5\n252,66,11.0\n252,67,11.5\n252,68,12.0\n252,69,12.5\n252,70,13.0\n252,71,13.5\n252,72,14.0\n252,73,14.5\n252,74,15.0\n252,75,4.5\n252,76,4.0\n252,77,3.5\n252,78,4.0\n252,79,4.5\n252,80,5.0\n252,81,5.5\n252,82,6.0\n252,83,6.5\n252,84,7.0\n252,85,7.5\n252,86,8.0\n252,87,8.5\n252,88,9.0\n252,89,9.5\n252,90,10.0\n252,91,10.5\n252,92,11.0\n252,93,11.5\n252,94,12.0\n252,95,12.5\n252,96,13.0\n252,97,13.5\n252,98,14.0\n252,99,14.5\n252,100,4.0\n252,101,3.5\n252,102,3.0\n252,103,3.5\n252,104,4.0\n252,105,4.5\n252,106,5.0\n252,107,5.5\n252,108,6.0\n252,109,6.5\n252,110,7.0\n252,111,7.5\n252,112,8.0\n252,113,8.5\n252,114,9.0\n252,115,9.5\n252,116,10.0\n252,117,10.5\n252,118,11.0\n252,119,11.5\n252,120,12.0\n252,121,12.5\n252,122,13.0\n252,123,13.5\n252,124,14.0\n252,125,3.5\n252,126,3.0\n252,127,2.5\n252,128,3.0\n252,129,3.5\n252,130,4.0\n252,131,4.5\n252,132,5.0\n252,133,5.5\n252,134,6.0\n252,135,6.5\n252,136,7.0\n252,137,7.5\n252,138,8.0\n252,139,8.5\n252,140,9.0\n252,141,9.5\n252,142,10.0\n252,143,10.5\n252,144,11.0\n252,145,11.5\n252,146,12.0\n252,147,12.5\n252,148,13.0\n252,149,13.5\n252,150,3.0\n252,151,2.5\n252,152,2.0\n252,153,2.5\n252,154,3.0\n252,155,3.5\n252,156,4.0\n252,157,4.5\n252,158,5.0\n252,159,5.5\n252,160,6.0\n252,161,6.5\n252,162,7.0\n252,163,7.5\n252,164,8.0\n252,165,8.5\n252,166,9.0\n252,167,9.5\n252,168,10.0\n252,169,10.5\n252,170,11.0\n252,171,11.5\n252,172,12.0\n252,173,12.5\n252,174,13.0\n252,175,2.5\n252,176,2.0\n252,177,1.5\n252,178,2.0\n252,179,2.5\n252,180,3.0\n252,181,3.5\n252,182,4.0\n252,183,4.5\n252,184,5.0\n252,185,5.5\n252,186,6.0\n252,187,6.5\n252,188,7.0\n252,189,7.5\n252,190,8.0\n252,191,8.5\n252,192,9.0\n252,193,9.5\n252,194,10.0\n252,195,10.5\n252,196,11.0\n252,197,11.5\n252,198,12.0\n252,199,12.5\n252,200,2.0\n252,201,1.5\n252,202,1.0\n252,203,1.5\n252,204,2.0\n252,205,2.5\n252,206,3.0\n252,207,3.5\n252,208,4.0\n252,209,4.5\n252,210,5.0\n252,211,5.5\n252,212,6.0\n252,213,6.5\n252,214,7.0\n252,215,7.5\n252,216,8.0\n252,217,8.5\n252,218,9.0\n252,219,9.5\n252,220,10.0\n252,221,10.5\n252,222,11.0\n252,223,11.5\n252,224,12.0\n252,225,1.5\n252,226,1.0\n252,227,0.5\n252,228,1.0\n252,229,1.5\n252,230,2.0\n252,231,2.5\n252,232,3.0\n252,233,3.5\n252,234,4.0\n252,235,4.5\n252,236,5.0\n252,237,5.5\n252,238,6.0\n252,239,6.5\n252,240,7.0\n252,241,7.5\n252,242,8.0\n252,243,8.5\n252,244,9.0\n252,245,9.5\n252,246,10.0\n252,247,10.5\n252,248,11.0\n252,249,11.5\n252,250,1.0\n252,251,0.5\n252,252,0\n252,253,0.5\n252,254,1.0\n252,255,1.5\n252,256,2.0\n252,257,2.5\n252,258,3.0\n252,259,3.5\n252,260,4.0\n252,261,4.5\n252,262,5.0\n252,263,5.5\n252,264,6.0\n252,265,6.5\n252,266,7.0\n252,267,7.5\n252,268,8.0\n252,269,8.5\n252,270,9.0\n252,271,9.5\n252,272,10.0\n252,273,10.5\n252,274,11.0\n252,275,1.5\n252,276,1.0\n252,277,0.5\n252,278,1.0\n252,279,1.5\n252,280,2.0\n252,281,2.5\n252,282,3.0\n252,283,3.5\n252,284,4.0\n252,285,4.5\n252,286,5.0\n252,287,5.5\n252,288,6.0\n252,289,6.5\n252,290,7.0\n252,291,7.5\n252,292,8.0\n252,293,8.5\n252,294,9.0\n252,295,9.5\n252,296,10.0\n252,297,10.5\n252,298,11.0\n252,299,11.5\n252,300,2.0\n252,301,1.5\n252,302,1.0\n252,303,1.5\n252,304,2.0\n252,305,2.5\n252,306,3.0\n252,307,3.5\n252,308,4.0\n252,309,4.5\n252,310,5.0\n252,311,5.5\n252,312,6.0\n252,313,6.5\n252,314,7.0\n252,315,7.5\n252,316,8.0\n252,317,8.5\n252,318,9.0\n252,319,9.5\n252,320,10.0\n252,321,10.5\n252,322,11.0\n252,323,11.5\n252,324,12.0\n252,325,2.5\n252,326,2.0\n252,327,1.5\n252,328,2.0\n252,329,2.5\n252,330,3.0\n252,331,3.5\n252,332,4.0\n252,333,4.5\n252,334,5.0\n252,335,5.5\n252,336,6.0\n252,337,6.5\n252,338,7.0\n252,339,7.5\n252,340,8.0\n252,341,8.5\n252,342,9.0\n252,343,9.5\n252,344,10.0\n252,345,10.5\n252,346,11.0\n252,347,11.5\n252,348,12.0\n252,349,12.5\n252,350,3.0\n252,351,2.5\n252,352,2.0\n252,353,2.5\n252,354,3.0\n252,355,3.5\n252,356,4.0\n252,357,4.5\n252,358,5.0\n252,359,5.5\n252,360,6.0\n252,361,6.5\n252,362,7.0\n252,363,7.5\n252,364,8.0\n252,365,8.5\n252,366,9.0\n252,367,9.5\n252,368,10.0\n252,369,10.5\n252,370,11.0\n252,371,11.5\n252,372,12.0\n252,373,12.5\n252,374,13.0\n252,375,3.5\n252,376,3.0\n252,377,2.5\n252,378,3.0\n252,379,3.5\n252,380,4.0\n252,381,4.5\n252,382,5.0\n252,383,5.5\n252,384,6.0\n252,385,6.5\n252,386,7.0\n252,387,7.5\n252,388,8.0\n252,389,8.5\n252,390,9.0\n252,391,9.5\n252,392,10.0\n252,393,10.5\n252,394,11.0\n252,395,11.5\n252,396,12.0\n252,397,12.5\n252,398,13.0\n252,399,13.5\n252,400,4.0\n252,401,3.5\n252,402,3.0\n252,403,3.5\n252,404,4.0\n252,405,4.5\n252,406,5.0\n252,407,5.5\n252,408,6.0\n252,409,6.5\n252,410,7.0\n252,411,7.5\n252,412,8.0\n252,413,8.5\n252,414,9.0\n252,415,9.5\n252,416,10.0\n252,417,10.5\n252,418,11.0\n252,419,11.5\n252,420,12.0\n252,421,12.5\n252,422,13.0\n252,423,13.5\n252,424,14.0\n252,425,4.5\n252,426,4.0\n252,427,3.5\n252,428,4.0\n252,429,4.5\n252,430,5.0\n252,431,5.5\n252,432,6.0\n252,433,6.5\n252,434,7.0\n252,435,7.5\n252,436,8.0\n252,437,8.5\n252,438,9.0\n252,439,9.5\n252,440,10.0\n252,441,10.5\n252,442,11.0\n252,443,11.5\n252,444,12.0\n252,445,12.5\n252,446,13.0\n252,447,13.5\n252,448,14.0\n252,449,14.5\n252,450,5.0\n252,451,4.5\n252,452,4.0\n252,453,4.5\n252,454,5.0\n252,455,5.5\n252,456,6.0\n252,457,6.5\n252,458,7.0\n252,459,7.5\n252,460,8.0\n252,461,8.5\n252,462,9.0\n252,463,9.5\n252,464,10.0\n252,465,10.5\n252,466,11.0\n252,467,11.5\n252,468,12.0\n252,469,12.5\n252,470,13.0\n252,471,13.5\n252,472,14.0\n252,473,14.5\n252,474,15.0\n252,475,5.5\n252,476,5.0\n252,477,4.5\n252,478,5.0\n252,479,5.5\n252,480,6.0\n252,481,6.5\n252,482,7.0\n252,483,7.5\n252,484,8.0\n252,485,8.5\n252,486,9.0\n252,487,9.5\n252,488,10.0\n252,489,10.5\n252,490,11.0\n252,491,11.5\n252,492,12.0\n252,493,12.5\n252,494,13.0\n252,495,13.5\n252,496,14.0\n252,497,14.5\n252,498,15.0\n252,499,15.5\n252,500,6.0\n252,501,5.5\n252,502,5.0\n252,503,5.5\n252,504,6.0\n252,505,6.5\n252,506,7.0\n252,507,7.5\n252,508,8.0\n252,509,8.5\n252,510,9.0\n252,511,9.5\n252,512,10.0\n252,513,10.5\n252,514,11.0\n252,515,11.5\n252,516,12.0\n252,517,12.5\n252,518,13.0\n252,519,13.5\n252,520,14.0\n252,521,14.5\n252,522,15.0\n252,523,15.5\n252,524,16.0\n252,525,6.5\n252,526,6.0\n252,527,5.5\n252,528,6.0\n252,529,6.5\n252,530,7.0\n252,531,7.5\n252,532,8.0\n252,533,8.5\n252,534,9.0\n252,535,9.5\n252,536,10.0\n252,537,10.5\n252,538,11.0\n252,539,11.5\n252,540,12.0\n252,541,12.5\n252,542,13.0\n252,543,13.5\n252,544,14.0\n252,545,14.5\n252,546,15.0\n252,547,15.5\n252,548,16.0\n252,549,16.5\n252,550,7.0\n252,551,6.5\n252,552,6.0\n252,553,6.5\n252,554,7.0\n252,555,7.5\n252,556,8.0\n252,557,8.5\n252,558,9.0\n252,559,9.5\n252,560,10.0\n252,561,10.5\n252,562,11.0\n252,563,11.5\n252,564,12.0\n252,565,12.5\n252,566,13.0\n252,567,13.5\n252,568,14.0\n252,569,14.5\n252,570,15.0\n252,571,15.5\n252,572,16.0\n252,573,16.5\n252,574,17.0\n252,575,7.5\n252,576,7.0\n252,577,6.5\n252,578,7.0\n252,579,7.5\n252,580,8.0\n252,581,8.5\n252,582,9.0\n252,583,9.5\n252,584,10.0\n252,585,10.5\n252,586,11.0\n252,587,11.5\n252,588,12.0\n252,589,12.5\n252,590,13.0\n252,591,13.5\n252,592,14.0\n252,593,14.5\n252,594,15.0\n252,595,15.5\n252,596,16.0\n252,597,16.5\n252,598,17.0\n252,599,17.5\n252,600,8.0\n252,601,7.5\n252,602,7.0\n252,603,7.5\n252,604,8.0\n252,605,8.5\n252,606,9.0\n252,607,9.5\n252,608,10.0\n252,609,10.5\n252,610,11.0\n252,611,11.5\n252,612,12.0\n252,613,12.5\n252,614,13.0\n252,615,13.5\n252,616,14.0\n252,617,14.5\n252,618,15.0\n252,619,15.5\n252,620,16.0\n252,621,16.5\n252,622,17.0\n252,623,17.5\n252,624,18.0\n253,0,6.5\n253,1,6.0\n253,2,5.5\n253,3,5.0\n253,4,5.5\n253,5,6.0\n253,6,6.5\n253,7,7.0\n253,8,7.5\n253,9,8.0\n253,10,8.5\n253,11,9.0\n253,12,9.5\n253,13,10.0\n253,14,10.5\n253,15,11.0\n253,16,11.5\n253,17,12.0\n253,18,12.5\n253,19,13.0\n253,20,13.5\n253,21,14.0\n253,22,14.5\n253,23,15.0\n253,24,15.5\n253,25,6.0\n253,26,5.5\n253,27,5.0\n253,28,4.5\n253,29,5.0\n253,30,5.5\n253,31,6.0\n253,32,6.5\n253,33,7.0\n253,34,7.5\n253,35,8.0\n253,36,8.5\n253,37,9.0\n253,38,9.5\n253,39,10.0\n253,40,10.5\n253,41,11.0\n253,42,11.5\n253,43,12.0\n253,44,12.5\n253,45,13.0\n253,46,13.5\n253,47,14.0\n253,48,14.5\n253,49,15.0\n253,50,5.5\n253,51,5.0\n253,52,4.5\n253,53,4.0\n253,54,4.5\n253,55,5.0\n253,56,5.5\n253,57,6.0\n253,58,6.5\n253,59,7.0\n253,60,7.5\n253,61,8.0\n253,62,8.5\n253,63,9.0\n253,64,9.5\n253,65,10.0\n253,66,10.5\n253,67,11.0\n253,68,11.5\n253,69,12.0\n253,70,12.5\n253,71,13.0\n253,72,13.5\n253,73,14.0\n253,74,14.5\n253,75,5.0\n253,76,4.5\n253,77,4.0\n253,78,3.5\n253,79,4.0\n253,80,4.5\n253,81,5.0\n253,82,5.5\n253,83,6.0\n253,84,6.5\n253,85,7.0\n253,86,7.5\n253,87,8.0\n253,88,8.5\n253,89,9.0\n253,90,9.5\n253,91,10.0\n253,92,10.5\n253,93,11.0\n253,94,11.5\n253,95,12.0\n253,96,12.5\n253,97,13.0\n253,98,13.5\n253,99,14.0\n253,100,4.5\n253,101,4.0\n253,102,3.5\n253,103,3.0\n253,104,3.5\n253,105,4.0\n253,106,4.5\n253,107,5.0\n253,108,5.5\n253,109,6.0\n253,110,6.5\n253,111,7.0\n253,112,7.5\n253,113,8.0\n253,114,8.5\n253,115,9.0\n253,116,9.5\n253,117,10.0\n253,118,10.5\n253,119,11.0\n253,120,11.5\n253,121,12.0\n253,122,12.5\n253,123,13.0\n253,124,13.5\n253,125,4.0\n253,126,3.5\n253,127,3.0\n253,128,2.5\n253,129,3.0\n253,130,3.5\n253,131,4.0\n253,132,4.5\n253,133,5.0\n253,134,5.5\n253,135,6.0\n253,136,6.5\n253,137,7.0\n253,138,7.5\n253,139,8.0\n253,140,8.5\n253,141,9.0\n253,142,9.5\n253,143,10.0\n253,144,10.5\n253,145,11.0\n253,146,11.5\n253,147,12.0\n253,148,12.5\n253,149,13.0\n253,150,3.5\n253,151,3.0\n253,152,2.5\n253,153,2.0\n253,154,2.5\n253,155,3.0\n253,156,3.5\n253,157,4.0\n253,158,4.5\n253,159,5.0\n253,160,5.5\n253,161,6.0\n253,162,6.5\n253,163,7.0\n253,164,7.5\n253,165,8.0\n253,166,8.5\n253,167,9.0\n253,168,9.5\n253,169,10.0\n253,170,10.5\n253,171,11.0\n253,172,11.5\n253,173,12.0\n253,174,12.5\n253,175,3.0\n253,176,2.5\n253,177,2.0\n253,178,1.5\n253,179,2.0\n253,180,2.5\n253,181,3.0\n253,182,3.5\n253,183,4.0\n253,184,4.5\n253,185,5.0\n253,186,5.5\n253,187,6.0\n253,188,6.5\n253,189,7.0\n253,190,7.5\n253,191,8.0\n253,192,8.5\n253,193,9.0\n253,194,9.5\n253,195,10.0\n253,196,10.5\n253,197,11.0\n253,198,11.5\n253,199,12.0\n253,200,2.5\n253,201,2.0\n253,202,1.5\n253,203,1.0\n253,204,1.5\n253,205,2.0\n253,206,2.5\n253,207,3.0\n253,208,3.5\n253,209,4.0\n253,210,4.5\n253,211,5.0\n253,212,5.5\n253,213,6.0\n253,214,6.5\n253,215,7.0\n253,216,7.5\n253,217,8.0\n253,218,8.5\n253,219,9.0\n253,220,9.5\n253,221,10.0\n253,222,10.5\n253,223,11.0\n253,224,11.5\n253,225,2.0\n253,226,1.5\n253,227,1.0\n253,228,0.5\n253,229,1.0\n253,230,1.5\n253,231,2.0\n253,232,2.5\n253,233,3.0\n253,234,3.5\n253,235,4.0\n253,236,4.5\n253,237,5.0\n253,238,5.5\n253,239,6.0\n253,240,6.5\n253,241,7.0\n253,242,7.5\n253,243,8.0\n253,244,8.5\n253,245,9.0\n253,246,9.5\n253,247,10.0\n253,248,10.5\n253,249,11.0\n253,250,1.5\n253,251,1.0\n253,252,0.5\n253,253,0\n253,254,0.5\n253,255,1.0\n253,256,1.5\n253,257,2.0\n253,258,2.5\n253,259,3.0\n253,260,3.5\n253,261,4.0\n253,262,4.5\n253,263,5.0\n253,264,5.5\n253,265,6.0\n253,266,6.5\n253,267,7.0\n253,268,7.5\n253,269,8.0\n253,270,8.5\n253,271,9.0\n253,272,9.5\n253,273,10.0\n253,274,10.5\n253,275,2.0\n253,276,1.5\n253,277,1.0\n253,278,0.5\n253,279,1.0\n253,280,1.5\n253,281,2.0\n253,282,2.5\n253,283,3.0\n253,284,3.5\n253,285,4.0\n253,286,4.5\n253,287,5.0\n253,288,5.5\n253,289,6.0\n253,290,6.5\n253,291,7.0\n253,292,7.5\n253,293,8.0\n253,294,8.5\n253,295,9.0\n253,296,9.5\n253,297,10.0\n253,298,10.5\n253,299,11.0\n253,300,2.5\n253,301,2.0\n253,302,1.5\n253,303,1.0\n253,304,1.5\n253,305,2.0\n253,306,2.5\n253,307,3.0\n253,308,3.5\n253,309,4.0\n253,310,4.5\n253,311,5.0\n253,312,5.5\n253,313,6.0\n253,314,6.5\n253,315,7.0\n253,316,7.5\n253,317,8.0\n253,318,8.5\n253,319,9.0\n253,320,9.5\n253,321,10.0\n253,322,10.5\n253,323,11.0\n253,324,11.5\n253,325,3.0\n253,326,2.5\n253,327,2.0\n253,328,1.5\n253,329,2.0\n253,330,2.5\n253,331,3.0\n253,332,3.5\n253,333,4.0\n253,334,4.5\n253,335,5.0\n253,336,5.5\n253,337,6.0\n253,338,6.5\n253,339,7.0\n253,340,7.5\n253,341,8.0\n253,342,8.5\n253,343,9.0\n253,344,9.5\n253,345,10.0\n253,346,10.5\n253,347,11.0\n253,348,11.5\n253,349,12.0\n253,350,3.5\n253,351,3.0\n253,352,2.5\n253,353,2.0\n253,354,2.5\n253,355,3.0\n253,356,3.5\n253,357,4.0\n253,358,4.5\n253,359,5.0\n253,360,5.5\n253,361,6.0\n253,362,6.5\n253,363,7.0\n253,364,7.5\n253,365,8.0\n253,366,8.5\n253,367,9.0\n253,368,9.5\n253,369,10.0\n253,370,10.5\n253,371,11.0\n253,372,11.5\n253,373,12.0\n253,374,12.5\n253,375,4.0\n253,376,3.5\n253,377,3.0\n253,378,2.5\n253,379,3.0\n253,380,3.5\n253,381,4.0\n253,382,4.5\n253,383,5.0\n253,384,5.5\n253,385,6.0\n253,386,6.5\n253,387,7.0\n253,388,7.5\n253,389,8.0\n253,390,8.5\n253,391,9.0\n253,392,9.5\n253,393,10.0\n253,394,10.5\n253,395,11.0\n253,396,11.5\n253,397,12.0\n253,398,12.5\n253,399,13.0\n253,400,4.5\n253,401,4.0\n253,402,3.5\n253,403,3.0\n253,404,3.5\n253,405,4.0\n253,406,4.5\n253,407,5.0\n253,408,5.5\n253,409,6.0\n253,410,6.5\n253,411,7.0\n253,412,7.5\n253,413,8.0\n253,414,8.5\n253,415,9.0\n253,416,9.5\n253,417,10.0\n253,418,10.5\n253,419,11.0\n253,420,11.5\n253,421,12.0\n253,422,12.5\n253,423,13.0\n253,424,13.5\n253,425,5.0\n253,426,4.5\n253,427,4.0\n253,428,3.5\n253,429,4.0\n253,430,4.5\n253,431,5.0\n253,432,5.5\n253,433,6.0\n253,434,6.5\n253,435,7.0\n253,436,7.5\n253,437,8.0\n253,438,8.5\n253,439,9.0\n253,440,9.5\n253,441,10.0\n253,442,10.5\n253,443,11.0\n253,444,11.5\n253,445,12.0\n253,446,12.5\n253,447,13.0\n253,448,13.5\n253,449,14.0\n253,450,5.5\n253,451,5.0\n253,452,4.5\n253,453,4.0\n253,454,4.5\n253,455,5.0\n253,456,5.5\n253,457,6.0\n253,458,6.5\n253,459,7.0\n253,460,7.5\n253,461,8.0\n253,462,8.5\n253,463,9.0\n253,464,9.5\n253,465,10.0\n253,466,10.5\n253,467,11.0\n253,468,11.5\n253,469,12.0\n253,470,12.5\n253,471,13.0\n253,472,13.5\n253,473,14.0\n253,474,14.5\n253,475,6.0\n253,476,5.5\n253,477,5.0\n253,478,4.5\n253,479,5.0\n253,480,5.5\n253,481,6.0\n253,482,6.5\n253,483,7.0\n253,484,7.5\n253,485,8.0\n253,486,8.5\n253,487,9.0\n253,488,9.5\n253,489,10.0\n253,490,10.5\n253,491,11.0\n253,492,11.5\n253,493,12.0\n253,494,12.5\n253,495,13.0\n253,496,13.5\n253,497,14.0\n253,498,14.5\n253,499,15.0\n253,500,6.5\n253,501,6.0\n253,502,5.5\n253,503,5.0\n253,504,5.5\n253,505,6.0\n253,506,6.5\n253,507,7.0\n253,508,7.5\n253,509,8.0\n253,510,8.5\n253,511,9.0\n253,512,9.5\n253,513,10.0\n253,514,10.5\n253,515,11.0\n253,516,11.5\n253,517,12.0\n253,518,12.5\n253,519,13.0\n253,520,13.5\n253,521,14.0\n253,522,14.5\n253,523,15.0\n253,524,15.5\n253,525,7.0\n253,526,6.5\n253,527,6.0\n253,528,5.5\n253,529,6.0\n253,530,6.5\n253,531,7.0\n253,532,7.5\n253,533,8.0\n253,534,8.5\n253,535,9.0\n253,536,9.5\n253,537,10.0\n253,538,10.5\n253,539,11.0\n253,540,11.5\n253,541,12.0\n253,542,12.5\n253,543,13.0\n253,544,13.5\n253,545,14.0\n253,546,14.5\n253,547,15.0\n253,548,15.5\n253,549,16.0\n253,550,7.5\n253,551,7.0\n253,552,6.5\n253,553,6.0\n253,554,6.5\n253,555,7.0\n253,556,7.5\n253,557,8.0\n253,558,8.5\n253,559,9.0\n253,560,9.5\n253,561,10.0\n253,562,10.5\n253,563,11.0\n253,564,11.5\n253,565,12.0\n253,566,12.5\n253,567,13.0\n253,568,13.5\n253,569,14.0\n253,570,14.5\n253,571,15.0\n253,572,15.5\n253,573,16.0\n253,574,16.5\n253,575,8.0\n253,576,7.5\n253,577,7.0\n253,578,6.5\n253,579,7.0\n253,580,7.5\n253,581,8.0\n253,582,8.5\n253,583,9.0\n253,584,9.5\n253,585,10.0\n253,586,10.5\n253,587,11.0\n253,588,11.5\n253,589,12.0\n253,590,12.5\n253,591,13.0\n253,592,13.5\n253,593,14.0\n253,594,14.5\n253,595,15.0\n253,596,15.5\n253,597,16.0\n253,598,16.5\n253,599,17.0\n253,600,8.5\n253,601,8.0\n253,602,7.5\n253,603,7.0\n253,604,7.5\n253,605,8.0\n253,606,8.5\n253,607,9.0\n253,608,9.5\n253,609,10.0\n253,610,10.5\n253,611,11.0\n253,612,11.5\n253,613,12.0\n253,614,12.5\n253,615,13.0\n253,616,13.5\n253,617,14.0\n253,618,14.5\n253,619,15.0\n253,620,15.5\n253,621,16.0\n253,622,16.5\n253,623,17.0\n253,624,17.5\n254,0,7.0\n254,1,6.5\n254,2,6.0\n254,3,5.5\n254,4,5.0\n254,5,5.5\n254,6,6.0\n254,7,6.5\n254,8,7.0\n254,9,7.5\n254,10,8.0\n254,11,8.5\n254,12,9.0\n254,13,9.5\n254,14,10.0\n254,15,10.5\n254,16,11.0\n254,17,11.5\n254,18,12.0\n254,19,12.5\n254,20,13.0\n254,21,13.5\n254,22,14.0\n254,23,14.5\n254,24,15.0\n254,25,6.5\n254,26,6.0\n254,27,5.5\n254,28,5.0\n254,29,4.5\n254,30,5.0\n254,31,5.5\n254,32,6.0\n254,33,6.5\n254,34,7.0\n254,35,7.5\n254,36,8.0\n254,37,8.5\n254,38,9.0\n254,39,9.5\n254,40,10.0\n254,41,10.5\n254,42,11.0\n254,43,11.5\n254,44,12.0\n254,45,12.5\n254,46,13.0\n254,47,13.5\n254,48,14.0\n254,49,14.5\n254,50,6.0\n254,51,5.5\n254,52,5.0\n254,53,4.5\n254,54,4.0\n254,55,4.5\n254,56,5.0\n254,57,5.5\n254,58,6.0\n254,59,6.5\n254,60,7.0\n254,61,7.5\n254,62,8.0\n254,63,8.5\n254,64,9.0\n254,65,9.5\n254,66,10.0\n254,67,10.5\n254,68,11.0\n254,69,11.5\n254,70,12.0\n254,71,12.5\n254,72,13.0\n254,73,13.5\n254,74,14.0\n254,75,5.5\n254,76,5.0\n254,77,4.5\n254,78,4.0\n254,79,3.5\n254,80,4.0\n254,81,4.5\n254,82,5.0\n254,83,5.5\n254,84,6.0\n254,85,6.5\n254,86,7.0\n254,87,7.5\n254,88,8.0\n254,89,8.5\n254,90,9.0\n254,91,9.5\n254,92,10.0\n254,93,10.5\n254,94,11.0\n254,95,11.5\n254,96,12.0\n254,97,12.5\n254,98,13.0\n254,99,13.5\n254,100,5.0\n254,101,4.5\n254,102,4.0\n254,103,3.5\n254,104,3.0\n254,105,3.5\n254,106,4.0\n254,107,4.5\n254,108,5.0\n254,109,5.5\n254,110,6.0\n254,111,6.5\n254,112,7.0\n254,113,7.5\n254,114,8.0\n254,115,8.5\n254,116,9.0\n254,117,9.5\n254,118,10.0\n254,119,10.5\n254,120,11.0\n254,121,11.5\n254,122,12.0\n254,123,12.5\n254,124,13.0\n254,125,4.5\n254,126,4.0\n254,127,3.5\n254,128,3.0\n254,129,2.5\n254,130,3.0\n254,131,3.5\n254,132,4.0\n254,133,4.5\n254,134,5.0\n254,135,5.5\n254,136,6.0\n254,137,6.5\n254,138,7.0\n254,139,7.5\n254,140,8.0\n254,141,8.5\n254,142,9.0\n254,143,9.5\n254,144,10.0\n254,145,10.5\n254,146,11.0\n254,147,11.5\n254,148,12.0\n254,149,12.5\n254,150,4.0\n254,151,3.5\n254,152,3.0\n254,153,2.5\n254,154,2.0\n254,155,2.5\n254,156,3.0\n254,157,3.5\n254,158,4.0\n254,159,4.5\n254,160,5.0\n254,161,5.5\n254,162,6.0\n254,163,6.5\n254,164,7.0\n254,165,7.5\n254,166,8.0\n254,167,8.5\n254,168,9.0\n254,169,9.5\n254,170,10.0\n254,171,10.5\n254,172,11.0\n254,173,11.5\n254,174,12.0\n254,175,3.5\n254,176,3.0\n254,177,2.5\n254,178,2.0\n254,179,1.5\n254,180,2.0\n254,181,2.5\n254,182,3.0\n254,183,3.5\n254,184,4.0\n254,185,4.5\n254,186,5.0\n254,187,5.5\n254,188,6.0\n254,189,6.5\n254,190,7.0\n254,191,7.5\n254,192,8.0\n254,193,8.5\n254,194,9.0\n254,195,9.5\n254,196,10.0\n254,197,10.5\n254,198,11.0\n254,199,11.5\n254,200,3.0\n254,201,2.5\n254,202,2.0\n254,203,1.5\n254,204,1.0\n254,205,1.5\n254,206,2.0\n254,207,2.5\n254,208,3.0\n254,209,3.5\n254,210,4.0\n254,211,4.5\n254,212,5.0\n254,213,5.5\n254,214,6.0\n254,215,6.5\n254,216,7.0\n254,217,7.5\n254,218,8.0\n254,219,8.5\n254,220,9.0\n254,221,9.5\n254,222,10.0\n254,223,10.5\n254,224,11.0\n254,225,2.5\n254,226,2.0\n254,227,1.5\n254,228,1.0\n254,229,0.5\n254,230,1.0\n254,231,1.5\n254,232,2.0\n254,233,2.5\n254,234,3.0\n254,235,3.5\n254,236,4.0\n254,237,4.5\n254,238,5.0\n254,239,5.5\n254,240,6.0\n254,241,6.5\n254,242,7.0\n254,243,7.5\n254,244,8.0\n254,245,8.5\n254,246,9.0\n254,247,9.5\n254,248,10.0\n254,249,10.5\n254,250,2.0\n254,251,1.5\n254,252,1.0\n254,253,0.5\n254,254,0\n254,255,0.5\n254,256,1.0\n254,257,1.5\n254,258,2.0\n254,259,2.5\n254,260,3.0\n254,261,3.5\n254,262,4.0\n254,263,4.5\n254,264,5.0\n254,265,5.5\n254,266,6.0\n254,267,6.5\n254,268,7.0\n254,269,7.5\n254,270,8.0\n254,271,8.5\n254,272,9.0\n254,273,9.5\n254,274,10.0\n254,275,2.5\n254,276,2.0\n254,277,1.5\n254,278,1.0\n254,279,0.5\n254,280,1.0\n254,281,1.5\n254,282,2.0\n254,283,2.5\n254,284,3.0\n254,285,3.5\n254,286,4.0\n254,287,4.5\n254,288,5.0\n254,289,5.5\n254,290,6.0\n254,291,6.5\n254,292,7.0\n254,293,7.5\n254,294,8.0\n254,295,8.5\n254,296,9.0\n254,297,9.5\n254,298,10.0\n254,299,10.5\n254,300,3.0\n254,301,2.5\n254,302,2.0\n254,303,1.5\n254,304,1.0\n254,305,1.5\n254,306,2.0\n254,307,2.5\n254,308,3.0\n254,309,3.5\n254,310,4.0\n254,311,4.5\n254,312,5.0\n254,313,5.5\n254,314,6.0\n254,315,6.5\n254,316,7.0\n254,317,7.5\n254,318,8.0\n254,319,8.5\n254,320,9.0\n254,321,9.5\n254,322,10.0\n254,323,10.5\n254,324,11.0\n254,325,3.5\n254,326,3.0\n254,327,2.5\n254,328,2.0\n254,329,1.5\n254,330,2.0\n254,331,2.5\n254,332,3.0\n254,333,3.5\n254,334,4.0\n254,335,4.5\n254,336,5.0\n254,337,5.5\n254,338,6.0\n254,339,6.5\n254,340,7.0\n254,341,7.5\n254,342,8.0\n254,343,8.5\n254,344,9.0\n254,345,9.5\n254,346,10.0\n254,347,10.5\n254,348,11.0\n254,349,11.5\n254,350,4.0\n254,351,3.5\n254,352,3.0\n254,353,2.5\n254,354,2.0\n254,355,2.5\n254,356,3.0\n254,357,3.5\n254,358,4.0\n254,359,4.5\n254,360,5.0\n254,361,5.5\n254,362,6.0\n254,363,6.5\n254,364,7.0\n254,365,7.5\n254,366,8.0\n254,367,8.5\n254,368,9.0\n254,369,9.5\n254,370,10.0\n254,371,10.5\n254,372,11.0\n254,373,11.5\n254,374,12.0\n254,375,4.5\n254,376,4.0\n254,377,3.5\n254,378,3.0\n254,379,2.5\n254,380,3.0\n254,381,3.5\n254,382,4.0\n254,383,4.5\n254,384,5.0\n254,385,5.5\n254,386,6.0\n254,387,6.5\n254,388,7.0\n254,389,7.5\n254,390,8.0\n254,391,8.5\n254,392,9.0\n254,393,9.5\n254,394,10.0\n254,395,10.5\n254,396,11.0\n254,397,11.5\n254,398,12.0\n254,399,12.5\n254,400,5.0\n254,401,4.5\n254,402,4.0\n254,403,3.5\n254,404,3.0\n254,405,3.5\n254,406,4.0\n254,407,4.5\n254,408,5.0\n254,409,5.5\n254,410,6.0\n254,411,6.5\n254,412,7.0\n254,413,7.5\n254,414,8.0\n254,415,8.5\n254,416,9.0\n254,417,9.5\n254,418,10.0\n254,419,10.5\n254,420,11.0\n254,421,11.5\n254,422,12.0\n254,423,12.5\n254,424,13.0\n254,425,5.5\n254,426,5.0\n254,427,4.5\n254,428,4.0\n254,429,3.5\n254,430,4.0\n254,431,4.5\n254,432,5.0\n254,433,5.5\n254,434,6.0\n254,435,6.5\n254,436,7.0\n254,437,7.5\n254,438,8.0\n254,439,8.5\n254,440,9.0\n254,441,9.5\n254,442,10.0\n254,443,10.5\n254,444,11.0\n254,445,11.5\n254,446,12.0\n254,447,12.5\n254,448,13.0\n254,449,13.5\n254,450,6.0\n254,451,5.5\n254,452,5.0\n254,453,4.5\n254,454,4.0\n254,455,4.5\n254,456,5.0\n254,457,5.5\n254,458,6.0\n254,459,6.5\n254,460,7.0\n254,461,7.5\n254,462,8.0\n254,463,8.5\n254,464,9.0\n254,465,9.5\n254,466,10.0\n254,467,10.5\n254,468,11.0\n254,469,11.5\n254,470,12.0\n254,471,12.5\n254,472,13.0\n254,473,13.5\n254,474,14.0\n254,475,6.5\n254,476,6.0\n254,477,5.5\n254,478,5.0\n254,479,4.5\n254,480,5.0\n254,481,5.5\n254,482,6.0\n254,483,6.5\n254,484,7.0\n254,485,7.5\n254,486,8.0\n254,487,8.5\n254,488,9.0\n254,489,9.5\n254,490,10.0\n254,491,10.5\n254,492,11.0\n254,493,11.5\n254,494,12.0\n254,495,12.5\n254,496,13.0\n254,497,13.5\n254,498,14.0\n254,499,14.5\n254,500,7.0\n254,501,6.5\n254,502,6.0\n254,503,5.5\n254,504,5.0\n254,505,5.5\n254,506,6.0\n254,507,6.5\n254,508,7.0\n254,509,7.5\n254,510,8.0\n254,511,8.5\n254,512,9.0\n254,513,9.5\n254,514,10.0\n254,515,10.5\n254,516,11.0\n254,517,11.5\n254,518,12.0\n254,519,12.5\n254,520,13.0\n254,521,13.5\n254,522,14.0\n254,523,14.5\n254,524,15.0\n254,525,7.5\n254,526,7.0\n254,527,6.5\n254,528,6.0\n254,529,5.5\n254,530,6.0\n254,531,6.5\n254,532,7.0\n254,533,7.5\n254,534,8.0\n254,535,8.5\n254,536,9.0\n254,537,9.5\n254,538,10.0\n254,539,10.5\n254,540,11.0\n254,541,11.5\n254,542,12.0\n254,543,12.5\n254,544,13.0\n254,545,13.5\n254,546,14.0\n254,547,14.5\n254,548,15.0\n254,549,15.5\n254,550,8.0\n254,551,7.5\n254,552,7.0\n254,553,6.5\n254,554,6.0\n254,555,6.5\n254,556,7.0\n254,557,7.5\n254,558,8.0\n254,559,8.5\n254,560,9.0\n254,561,9.5\n254,562,10.0\n254,563,10.5\n254,564,11.0\n254,565,11.5\n254,566,12.0\n254,567,12.5\n254,568,13.0\n254,569,13.5\n254,570,14.0\n254,571,14.5\n254,572,15.0\n254,573,15.5\n254,574,16.0\n254,575,8.5\n254,576,8.0\n254,577,7.5\n254,578,7.0\n254,579,6.5\n254,580,7.0\n254,581,7.5\n254,582,8.0\n254,583,8.5\n254,584,9.0\n254,585,9.5\n254,586,10.0\n254,587,10.5\n254,588,11.0\n254,589,11.5\n254,590,12.0\n254,591,12.5\n254,592,13.0\n254,593,13.5\n254,594,14.0\n254,595,14.5\n254,596,15.0\n254,597,15.5\n254,598,16.0\n254,599,16.5\n254,600,9.0\n254,601,8.5\n254,602,8.0\n254,603,7.5\n254,604,7.0\n254,605,7.5\n254,606,8.0\n254,607,8.5\n254,608,9.0\n254,609,9.5\n254,610,10.0\n254,611,10.5\n254,612,11.0\n254,613,11.5\n254,614,12.0\n254,615,12.5\n254,616,13.0\n254,617,13.5\n254,618,14.0\n254,619,14.5\n254,620,15.0\n254,621,15.5\n254,622,16.0\n254,623,16.5\n254,624,17.0\n255,0,7.5\n255,1,7.0\n255,2,6.5\n255,3,6.0\n255,4,5.5\n255,5,5.0\n255,6,5.5\n255,7,6.0\n255,8,6.5\n255,9,7.0\n255,10,7.5\n255,11,8.0\n255,12,8.5\n255,13,9.0\n255,14,9.5\n255,15,10.0\n255,16,10.5\n255,17,11.0\n255,18,11.5\n255,19,12.0\n255,20,12.5\n255,21,13.0\n255,22,13.5\n255,23,14.0\n255,24,14.5\n255,25,7.0\n255,26,6.5\n255,27,6.0\n255,28,5.5\n255,29,5.0\n255,30,4.5\n255,31,5.0\n255,32,5.5\n255,33,6.0\n255,34,6.5\n255,35,7.0\n255,36,7.5\n255,37,8.0\n255,38,8.5\n255,39,9.0\n255,40,9.5\n255,41,10.0\n255,42,10.5\n255,43,11.0\n255,44,11.5\n255,45,12.0\n255,46,12.5\n255,47,13.0\n255,48,13.5\n255,49,14.0\n255,50,6.5\n255,51,6.0\n255,52,5.5\n255,53,5.0\n255,54,4.5\n255,55,4.0\n255,56,4.5\n255,57,5.0\n255,58,5.5\n255,59,6.0\n255,60,6.5\n255,61,7.0\n255,62,7.5\n255,63,8.0\n255,64,8.5\n255,65,9.0\n255,66,9.5\n255,67,10.0\n255,68,10.5\n255,69,11.0\n255,70,11.5\n255,71,12.0\n255,72,12.5\n255,73,13.0\n255,74,13.5\n255,75,6.0\n255,76,5.5\n255,77,5.0\n255,78,4.5\n255,79,4.0\n255,80,3.5\n255,81,4.0\n255,82,4.5\n255,83,5.0\n255,84,5.5\n255,85,6.0\n255,86,6.5\n255,87,7.0\n255,88,7.5\n255,89,8.0\n255,90,8.5\n255,91,9.0\n255,92,9.5\n255,93,10.0\n255,94,10.5\n255,95,11.0\n255,96,11.5\n255,97,12.0\n255,98,12.5\n255,99,13.0\n255,100,5.5\n255,101,5.0\n255,102,4.5\n255,103,4.0\n255,104,3.5\n255,105,3.0\n255,106,3.5\n255,107,4.0\n255,108,4.5\n255,109,5.0\n255,110,5.5\n255,111,6.0\n255,112,6.5\n255,113,7.0\n255,114,7.5\n255,115,8.0\n255,116,8.5\n255,117,9.0\n255,118,9.5\n255,119,10.0\n255,120,10.5\n255,121,11.0\n255,122,11.5\n255,123,12.0\n255,124,12.5\n255,125,5.0\n255,126,4.5\n255,127,4.0\n255,128,3.5\n255,129,3.0\n255,130,2.5\n255,131,3.0\n255,132,3.5\n255,133,4.0\n255,134,4.5\n255,135,5.0\n255,136,5.5\n255,137,6.0\n255,138,6.5\n255,139,7.0\n255,140,7.5\n255,141,8.0\n255,142,8.5\n255,143,9.0\n255,144,9.5\n255,145,10.0\n255,146,10.5\n255,147,11.0\n255,148,11.5\n255,149,12.0\n255,150,4.5\n255,151,4.0\n255,152,3.5\n255,153,3.0\n255,154,2.5\n255,155,2.0\n255,156,2.5\n255,157,3.0\n255,158,3.5\n255,159,4.0\n255,160,4.5\n255,161,5.0\n255,162,5.5\n255,163,6.0\n255,164,6.5\n255,165,7.0\n255,166,7.5\n255,167,8.0\n255,168,8.5\n255,169,9.0\n255,170,9.5\n255,171,10.0\n255,172,10.5\n255,173,11.0\n255,174,11.5\n255,175,4.0\n255,176,3.5\n255,177,3.0\n255,178,2.5\n255,179,2.0\n255,180,1.5\n255,181,2.0\n255,182,2.5\n255,183,3.0\n255,184,3.5\n255,185,4.0\n255,186,4.5\n255,187,5.0\n255,188,5.5\n255,189,6.0\n255,190,6.5\n255,191,7.0\n255,192,7.5\n255,193,8.0\n255,194,8.5\n255,195,9.0\n255,196,9.5\n255,197,10.0\n255,198,10.5\n255,199,11.0\n255,200,3.5\n255,201,3.0\n255,202,2.5\n255,203,2.0\n255,204,1.5\n255,205,1.0\n255,206,1.5\n255,207,2.0\n255,208,2.5\n255,209,3.0\n255,210,3.5\n255,211,4.0\n255,212,4.5\n255,213,5.0\n255,214,5.5\n255,215,6.0\n255,216,6.5\n255,217,7.0\n255,218,7.5\n255,219,8.0\n255,220,8.5\n255,221,9.0\n255,222,9.5\n255,223,10.0\n255,224,10.5\n255,225,3.0\n255,226,2.5\n255,227,2.0\n255,228,1.5\n255,229,1.0\n255,230,0.5\n255,231,1.0\n255,232,1.5\n255,233,2.0\n255,234,2.5\n255,235,3.0\n255,236,3.5\n255,237,4.0\n255,238,4.5\n255,239,5.0\n255,240,5.5\n255,241,6.0\n255,242,6.5\n255,243,7.0\n255,244,7.5\n255,245,8.0\n255,246,8.5\n255,247,9.0\n255,248,9.5\n255,249,10.0\n255,250,2.5\n255,251,2.0\n255,252,1.5\n255,253,1.0\n255,254,0.5\n255,255,0\n255,256,0.5\n255,257,1.0\n255,258,1.5\n255,259,2.0\n255,260,2.5\n255,261,3.0\n255,262,3.5\n255,263,4.0\n255,264,4.5\n255,265,5.0\n255,266,5.5\n255,267,6.0\n255,268,6.5\n255,269,7.0\n255,270,7.5\n255,271,8.0\n255,272,8.5\n255,273,9.0\n255,274,9.5\n255,275,3.0\n255,276,2.5\n255,277,2.0\n255,278,1.5\n255,279,1.0\n255,280,0.5\n255,281,1.0\n255,282,1.5\n255,283,2.0\n255,284,2.5\n255,285,3.0\n255,286,3.5\n255,287,4.0\n255,288,4.5\n255,289,5.0\n255,290,5.5\n255,291,6.0\n255,292,6.5\n255,293,7.0\n255,294,7.5\n255,295,8.0\n255,296,8.5\n255,297,9.0\n255,298,9.5\n255,299,10.0\n255,300,3.5\n255,301,3.0\n255,302,2.5\n255,303,2.0\n255,304,1.5\n255,305,1.0\n255,306,1.5\n255,307,2.0\n255,308,2.5\n255,309,3.0\n255,310,3.5\n255,311,4.0\n255,312,4.5\n255,313,5.0\n255,314,5.5\n255,315,6.0\n255,316,6.5\n255,317,7.0\n255,318,7.5\n255,319,8.0\n255,320,8.5\n255,321,9.0\n255,322,9.5\n255,323,10.0\n255,324,10.5\n255,325,4.0\n255,326,3.5\n255,327,3.0\n255,328,2.5\n255,329,2.0\n255,330,1.5\n255,331,2.0\n255,332,2.5\n255,333,3.0\n255,334,3.5\n255,335,4.0\n255,336,4.5\n255,337,5.0\n255,338,5.5\n255,339,6.0\n255,340,6.5\n255,341,7.0\n255,342,7.5\n255,343,8.0\n255,344,8.5\n255,345,9.0\n255,346,9.5\n255,347,10.0\n255,348,10.5\n255,349,11.0\n255,350,4.5\n255,351,4.0\n255,352,3.5\n255,353,3.0\n255,354,2.5\n255,355,2.0\n255,356,2.5\n255,357,3.0\n255,358,3.5\n255,359,4.0\n255,360,4.5\n255,361,5.0\n255,362,5.5\n255,363,6.0\n255,364,6.5\n255,365,7.0\n255,366,7.5\n255,367,8.0\n255,368,8.5\n255,369,9.0\n255,370,9.5\n255,371,10.0\n255,372,10.5\n255,373,11.0\n255,374,11.5\n255,375,5.0\n255,376,4.5\n255,377,4.0\n255,378,3.5\n255,379,3.0\n255,380,2.5\n255,381,3.0\n255,382,3.5\n255,383,4.0\n255,384,4.5\n255,385,5.0\n255,386,5.5\n255,387,6.0\n255,388,6.5\n255,389,7.0\n255,390,7.5\n255,391,8.0\n255,392,8.5\n255,393,9.0\n255,394,9.5\n255,395,10.0\n255,396,10.5\n255,397,11.0\n255,398,11.5\n255,399,12.0\n255,400,5.5\n255,401,5.0\n255,402,4.5\n255,403,4.0\n255,404,3.5\n255,405,3.0\n255,406,3.5\n255,407,4.0\n255,408,4.5\n255,409,5.0\n255,410,5.5\n255,411,6.0\n255,412,6.5\n255,413,7.0\n255,414,7.5\n255,415,8.0\n255,416,8.5\n255,417,9.0\n255,418,9.5\n255,419,10.0\n255,420,10.5\n255,421,11.0\n255,422,11.5\n255,423,12.0\n255,424,12.5\n255,425,6.0\n255,426,5.5\n255,427,5.0\n255,428,4.5\n255,429,4.0\n255,430,3.5\n255,431,4.0\n255,432,4.5\n255,433,5.0\n255,434,5.5\n255,435,6.0\n255,436,6.5\n255,437,7.0\n255,438,7.5\n255,439,8.0\n255,440,8.5\n255,441,9.0\n255,442,9.5\n255,443,10.0\n255,444,10.5\n255,445,11.0\n255,446,11.5\n255,447,12.0\n255,448,12.5\n255,449,13.0\n255,450,6.5\n255,451,6.0\n255,452,5.5\n255,453,5.0\n255,454,4.5\n255,455,4.0\n255,456,4.5\n255,457,5.0\n255,458,5.5\n255,459,6.0\n255,460,6.5\n255,461,7.0\n255,462,7.5\n255,463,8.0\n255,464,8.5\n255,465,9.0\n255,466,9.5\n255,467,10.0\n255,468,10.5\n255,469,11.0\n255,470,11.5\n255,471,12.0\n255,472,12.5\n255,473,13.0\n255,474,13.5\n255,475,7.0\n255,476,6.5\n255,477,6.0\n255,478,5.5\n255,479,5.0\n255,480,4.5\n255,481,5.0\n255,482,5.5\n255,483,6.0\n255,484,6.5\n255,485,7.0\n255,486,7.5\n255,487,8.0\n255,488,8.5\n255,489,9.0\n255,490,9.5\n255,491,10.0\n255,492,10.5\n255,493,11.0\n255,494,11.5\n255,495,12.0\n255,496,12.5\n255,497,13.0\n255,498,13.5\n255,499,14.0\n255,500,7.5\n255,501,7.0\n255,502,6.5\n255,503,6.0\n255,504,5.5\n255,505,5.0\n255,506,5.5\n255,507,6.0\n255,508,6.5\n255,509,7.0\n255,510,7.5\n255,511,8.0\n255,512,8.5\n255,513,9.0\n255,514,9.5\n255,515,10.0\n255,516,10.5\n255,517,11.0\n255,518,11.5\n255,519,12.0\n255,520,12.5\n255,521,13.0\n255,522,13.5\n255,523,14.0\n255,524,14.5\n255,525,8.0\n255,526,7.5\n255,527,7.0\n255,528,6.5\n255,529,6.0\n255,530,5.5\n255,531,6.0\n255,532,6.5\n255,533,7.0\n255,534,7.5\n255,535,8.0\n255,536,8.5\n255,537,9.0\n255,538,9.5\n255,539,10.0\n255,540,10.5\n255,541,11.0\n255,542,11.5\n255,543,12.0\n255,544,12.5\n255,545,13.0\n255,546,13.5\n255,547,14.0\n255,548,14.5\n255,549,15.0\n255,550,8.5\n255,551,8.0\n255,552,7.5\n255,553,7.0\n255,554,6.5\n255,555,6.0\n255,556,6.5\n255,557,7.0\n255,558,7.5\n255,559,8.0\n255,560,8.5\n255,561,9.0\n255,562,9.5\n255,563,10.0\n255,564,10.5\n255,565,11.0\n255,566,11.5\n255,567,12.0\n255,568,12.5\n255,569,13.0\n255,570,13.5\n255,571,14.0\n255,572,14.5\n255,573,15.0\n255,574,15.5\n255,575,9.0\n255,576,8.5\n255,577,8.0\n255,578,7.5\n255,579,7.0\n255,580,6.5\n255,581,7.0\n255,582,7.5\n255,583,8.0\n255,584,8.5\n255,585,9.0\n255,586,9.5\n255,587,10.0\n255,588,10.5\n255,589,11.0\n255,590,11.5\n255,591,12.0\n255,592,12.5\n255,593,13.0\n255,594,13.5\n255,595,14.0\n255,596,14.5\n255,597,15.0\n255,598,15.5\n255,599,16.0\n255,600,9.5\n255,601,9.0\n255,602,8.5\n255,603,8.0\n255,604,7.5\n255,605,7.0\n255,606,7.5\n255,607,8.0\n255,608,8.5\n255,609,9.0\n255,610,9.5\n255,611,10.0\n255,612,10.5\n255,613,11.0\n255,614,11.5\n255,615,12.0\n255,616,12.5\n255,617,13.0\n255,618,13.5\n255,619,14.0\n255,620,14.5\n255,621,15.0\n255,622,15.5\n255,623,16.0\n255,624,16.5\n256,0,8.0\n256,1,7.5\n256,2,7.0\n256,3,6.5\n256,4,6.0\n256,5,5.5\n256,6,5.0\n256,7,5.5\n256,8,6.0\n256,9,6.5\n256,10,7.0\n256,11,7.5\n256,12,8.0\n256,13,8.5\n256,14,9.0\n256,15,9.5\n256,16,10.0\n256,17,10.5\n256,18,11.0\n256,19,11.5\n256,20,12.0\n256,21,12.5\n256,22,13.0\n256,23,13.5\n256,24,14.0\n256,25,7.5\n256,26,7.0\n256,27,6.5\n256,28,6.0\n256,29,5.5\n256,30,5.0\n256,31,4.5\n256,32,5.0\n256,33,5.5\n256,34,6.0\n256,35,6.5\n256,36,7.0\n256,37,7.5\n256,38,8.0\n256,39,8.5\n256,40,9.0\n256,41,9.5\n256,42,10.0\n256,43,10.5\n256,44,11.0\n256,45,11.5\n256,46,12.0\n256,47,12.5\n256,48,13.0\n256,49,13.5\n256,50,7.0\n256,51,6.5\n256,52,6.0\n256,53,5.5\n256,54,5.0\n256,55,4.5\n256,56,4.0\n256,57,4.5\n256,58,5.0\n256,59,5.5\n256,60,6.0\n256,61,6.5\n256,62,7.0\n256,63,7.5\n256,64,8.0\n256,65,8.5\n256,66,9.0\n256,67,9.5\n256,68,10.0\n256,69,10.5\n256,70,11.0\n256,71,11.5\n256,72,12.0\n256,73,12.5\n256,74,13.0\n256,75,6.5\n256,76,6.0\n256,77,5.5\n256,78,5.0\n256,79,4.5\n256,80,4.0\n256,81,3.5\n256,82,4.0\n256,83,4.5\n256,84,5.0\n256,85,5.5\n256,86,6.0\n256,87,6.5\n256,88,7.0\n256,89,7.5\n256,90,8.0\n256,91,8.5\n256,92,9.0\n256,93,9.5\n256,94,10.0\n256,95,10.5\n256,96,11.0\n256,97,11.5\n256,98,12.0\n256,99,12.5\n256,100,6.0\n256,101,5.5\n256,102,5.0\n256,103,4.5\n256,104,4.0\n256,105,3.5\n256,106,3.0\n256,107,3.5\n256,108,4.0\n256,109,4.5\n256,110,5.0\n256,111,5.5\n256,112,6.0\n256,113,6.5\n256,114,7.0\n256,115,7.5\n256,116,8.0\n256,117,8.5\n256,118,9.0\n256,119,9.5\n256,120,10.0\n256,121,10.5\n256,122,11.0\n256,123,11.5\n256,124,12.0\n256,125,5.5\n256,126,5.0\n256,127,4.5\n256,128,4.0\n256,129,3.5\n256,130,3.0\n256,131,2.5\n256,132,3.0\n256,133,3.5\n256,134,4.0\n256,135,4.5\n256,136,5.0\n256,137,5.5\n256,138,6.0\n256,139,6.5\n256,140,7.0\n256,141,7.5\n256,142,8.0\n256,143,8.5\n256,144,9.0\n256,145,9.5\n256,146,10.0\n256,147,10.5\n256,148,11.0\n256,149,11.5\n256,150,5.0\n256,151,4.5\n256,152,4.0\n256,153,3.5\n256,154,3.0\n256,155,2.5\n256,156,2.0\n256,157,2.5\n256,158,3.0\n256,159,3.5\n256,160,4.0\n256,161,4.5\n256,162,5.0\n256,163,5.5\n256,164,6.0\n256,165,6.5\n256,166,7.0\n256,167,7.5\n256,168,8.0\n256,169,8.5\n256,170,9.0\n256,171,9.5\n256,172,10.0\n256,173,10.5\n256,174,11.0\n256,175,4.5\n256,176,4.0\n256,177,3.5\n256,178,3.0\n256,179,2.5\n256,180,2.0\n256,181,1.5\n256,182,2.0\n256,183,2.5\n256,184,3.0\n256,185,3.5\n256,186,4.0\n256,187,4.5\n256,188,5.0\n256,189,5.5\n256,190,6.0\n256,191,6.5\n256,192,7.0\n256,193,7.5\n256,194,8.0\n256,195,8.5\n256,196,9.0\n256,197,9.5\n256,198,10.0\n256,199,10.5\n256,200,4.0\n256,201,3.5\n256,202,3.0\n256,203,2.5\n256,204,2.0\n256,205,1.5\n256,206,1.0\n256,207,1.5\n256,208,2.0\n256,209,2.5\n256,210,3.0\n256,211,3.5\n256,212,4.0\n256,213,4.5\n256,214,5.0\n256,215,5.5\n256,216,6.0\n256,217,6.5\n256,218,7.0\n256,219,7.5\n256,220,8.0\n256,221,8.5\n256,222,9.0\n256,223,9.5\n256,224,10.0\n256,225,3.5\n256,226,3.0\n256,227,2.5\n256,228,2.0\n256,229,1.5\n256,230,1.0\n256,231,0.5\n256,232,1.0\n256,233,1.5\n256,234,2.0\n256,235,2.5\n256,236,3.0\n256,237,3.5\n256,238,4.0\n256,239,4.5\n256,240,5.0\n256,241,5.5\n256,242,6.0\n256,243,6.5\n256,244,7.0\n256,245,7.5\n256,246,8.0\n256,247,8.5\n256,248,9.0\n256,249,9.5\n256,250,3.0\n256,251,2.5\n256,252,2.0\n256,253,1.5\n256,254,1.0\n256,255,0.5\n256,256,0\n256,257,0.5\n256,258,1.0\n256,259,1.5\n256,260,2.0\n256,261,2.5\n256,262,3.0\n256,263,3.5\n256,264,4.0\n256,265,4.5\n256,266,5.0\n256,267,5.5\n256,268,6.0\n256,269,6.5\n256,270,7.0\n256,271,7.5\n256,272,8.0\n256,273,8.5\n256,274,9.0\n256,275,3.5\n256,276,3.0\n256,277,2.5\n256,278,2.0\n256,279,1.5\n256,280,1.0\n256,281,0.5\n256,282,1.0\n256,283,1.5\n256,284,2.0\n256,285,2.5\n256,286,3.0\n256,287,3.5\n256,288,4.0\n256,289,4.5\n256,290,5.0\n256,291,5.5\n256,292,6.0\n256,293,6.5\n256,294,7.0\n256,295,7.5\n256,296,8.0\n256,297,8.5\n256,298,9.0\n256,299,9.5\n256,300,4.0\n256,301,3.5\n256,302,3.0\n256,303,2.5\n256,304,2.0\n256,305,1.5\n256,306,1.0\n256,307,1.5\n256,308,2.0\n256,309,2.5\n256,310,3.0\n256,311,3.5\n256,312,4.0\n256,313,4.5\n256,314,5.0\n256,315,5.5\n256,316,6.0\n256,317,6.5\n256,318,7.0\n256,319,7.5\n256,320,8.0\n256,321,8.5\n256,322,9.0\n256,323,9.5\n256,324,10.0\n256,325,4.5\n256,326,4.0\n256,327,3.5\n256,328,3.0\n256,329,2.5\n256,330,2.0\n256,331,1.5\n256,332,2.0\n256,333,2.5\n256,334,3.0\n256,335,3.5\n256,336,4.0\n256,337,4.5\n256,338,5.0\n256,339,5.5\n256,340,6.0\n256,341,6.5\n256,342,7.0\n256,343,7.5\n256,344,8.0\n256,345,8.5\n256,346,9.0\n256,347,9.5\n256,348,10.0\n256,349,10.5\n256,350,5.0\n256,351,4.5\n256,352,4.0\n256,353,3.5\n256,354,3.0\n256,355,2.5\n256,356,2.0\n256,357,2.5\n256,358,3.0\n256,359,3.5\n256,360,4.0\n256,361,4.5\n256,362,5.0\n256,363,5.5\n256,364,6.0\n256,365,6.5\n256,366,7.0\n256,367,7.5\n256,368,8.0\n256,369,8.5\n256,370,9.0\n256,371,9.5\n256,372,10.0\n256,373,10.5\n256,374,11.0\n256,375,5.5\n256,376,5.0\n256,377,4.5\n256,378,4.0\n256,379,3.5\n256,380,3.0\n256,381,2.5\n256,382,3.0\n256,383,3.5\n256,384,4.0\n256,385,4.5\n256,386,5.0\n256,387,5.5\n256,388,6.0\n256,389,6.5\n256,390,7.0\n256,391,7.5\n256,392,8.0\n256,393,8.5\n256,394,9.0\n256,395,9.5\n256,396,10.0\n256,397,10.5\n256,398,11.0\n256,399,11.5\n256,400,6.0\n256,401,5.5\n256,402,5.0\n256,403,4.5\n256,404,4.0\n256,405,3.5\n256,406,3.0\n256,407,3.5\n256,408,4.0\n256,409,4.5\n256,410,5.0\n256,411,5.5\n256,412,6.0\n256,413,6.5\n256,414,7.0\n256,415,7.5\n256,416,8.0\n256,417,8.5\n256,418,9.0\n256,419,9.5\n256,420,10.0\n256,421,10.5\n256,422,11.0\n256,423,11.5\n256,424,12.0\n256,425,6.5\n256,426,6.0\n256,427,5.5\n256,428,5.0\n256,429,4.5\n256,430,4.0\n256,431,3.5\n256,432,4.0\n256,433,4.5\n256,434,5.0\n256,435,5.5\n256,436,6.0\n256,437,6.5\n256,438,7.0\n256,439,7.5\n256,440,8.0\n256,441,8.5\n256,442,9.0\n256,443,9.5\n256,444,10.0\n256,445,10.5\n256,446,11.0\n256,447,11.5\n256,448,12.0\n256,449,12.5\n256,450,7.0\n256,451,6.5\n256,452,6.0\n256,453,5.5\n256,454,5.0\n256,455,4.5\n256,456,4.0\n256,457,4.5\n256,458,5.0\n256,459,5.5\n256,460,6.0\n256,461,6.5\n256,462,7.0\n256,463,7.5\n256,464,8.0\n256,465,8.5\n256,466,9.0\n256,467,9.5\n256,468,10.0\n256,469,10.5\n256,470,11.0\n256,471,11.5\n256,472,12.0\n256,473,12.5\n256,474,13.0\n256,475,7.5\n256,476,7.0\n256,477,6.5\n256,478,6.0\n256,479,5.5\n256,480,5.0\n256,481,4.5\n256,482,5.0\n256,483,5.5\n256,484,6.0\n256,485,6.5\n256,486,7.0\n256,487,7.5\n256,488,8.0\n256,489,8.5\n256,490,9.0\n256,491,9.5\n256,492,10.0\n256,493,10.5\n256,494,11.0\n256,495,11.5\n256,496,12.0\n256,497,12.5\n256,498,13.0\n256,499,13.5\n256,500,8.0\n256,501,7.5\n256,502,7.0\n256,503,6.5\n256,504,6.0\n256,505,5.5\n256,506,5.0\n256,507,5.5\n256,508,6.0\n256,509,6.5\n256,510,7.0\n256,511,7.5\n256,512,8.0\n256,513,8.5\n256,514,9.0\n256,515,9.5\n256,516,10.0\n256,517,10.5\n256,518,11.0\n256,519,11.5\n256,520,12.0\n256,521,12.5\n256,522,13.0\n256,523,13.5\n256,524,14.0\n256,525,8.5\n256,526,8.0\n256,527,7.5\n256,528,7.0\n256,529,6.5\n256,530,6.0\n256,531,5.5\n256,532,6.0\n256,533,6.5\n256,534,7.0\n256,535,7.5\n256,536,8.0\n256,537,8.5\n256,538,9.0\n256,539,9.5\n256,540,10.0\n256,541,10.5\n256,542,11.0\n256,543,11.5\n256,544,12.0\n256,545,12.5\n256,546,13.0\n256,547,13.5\n256,548,14.0\n256,549,14.5\n256,550,9.0\n256,551,8.5\n256,552,8.0\n256,553,7.5\n256,554,7.0\n256,555,6.5\n256,556,6.0\n256,557,6.5\n256,558,7.0\n256,559,7.5\n256,560,8.0\n256,561,8.5\n256,562,9.0\n256,563,9.5\n256,564,10.0\n256,565,10.5\n256,566,11.0\n256,567,11.5\n256,568,12.0\n256,569,12.5\n256,570,13.0\n256,571,13.5\n256,572,14.0\n256,573,14.5\n256,574,15.0\n256,575,9.5\n256,576,9.0\n256,577,8.5\n256,578,8.0\n256,579,7.5\n256,580,7.0\n256,581,6.5\n256,582,7.0\n256,583,7.5\n256,584,8.0\n256,585,8.5\n256,586,9.0\n256,587,9.5\n256,588,10.0\n256,589,10.5\n256,590,11.0\n256,591,11.5\n256,592,12.0\n256,593,12.5\n256,594,13.0\n256,595,13.5\n256,596,14.0\n256,597,14.5\n256,598,15.0\n256,599,15.5\n256,600,10.0\n256,601,9.5\n256,602,9.0\n256,603,8.5\n256,604,8.0\n256,605,7.5\n256,606,7.0\n256,607,7.5\n256,608,8.0\n256,609,8.5\n256,610,9.0\n256,611,9.5\n256,612,10.0\n256,613,10.5\n256,614,11.0\n256,615,11.5\n256,616,12.0\n256,617,12.5\n256,618,13.0\n256,619,13.5\n256,620,14.0\n256,621,14.5\n256,622,15.0\n256,623,15.5\n256,624,16.0\n257,0,8.5\n257,1,8.0\n257,2,7.5\n257,3,7.0\n257,4,6.5\n257,5,6.0\n257,6,5.5\n257,7,5.0\n257,8,5.5\n257,9,6.0\n257,10,6.5\n257,11,7.0\n257,12,7.5\n257,13,8.0\n257,14,8.5\n257,15,9.0\n257,16,9.5\n257,17,10.0\n257,18,10.5\n257,19,11.0\n257,20,11.5\n257,21,12.0\n257,22,12.5\n257,23,13.0\n257,24,13.5\n257,25,8.0\n257,26,7.5\n257,27,7.0\n257,28,6.5\n257,29,6.0\n257,30,5.5\n257,31,5.0\n257,32,4.5\n257,33,5.0\n257,34,5.5\n257,35,6.0\n257,36,6.5\n257,37,7.0\n257,38,7.5\n257,39,8.0\n257,40,8.5\n257,41,9.0\n257,42,9.5\n257,43,10.0\n257,44,10.5\n257,45,11.0\n257,46,11.5\n257,47,12.0\n257,48,12.5\n257,49,13.0\n257,50,7.5\n257,51,7.0\n257,52,6.5\n257,53,6.0\n257,54,5.5\n257,55,5.0\n257,56,4.5\n257,57,4.0\n257,58,4.5\n257,59,5.0\n257,60,5.5\n257,61,6.0\n257,62,6.5\n257,63,7.0\n257,64,7.5\n257,65,8.0\n257,66,8.5\n257,67,9.0\n257,68,9.5\n257,69,10.0\n257,70,10.5\n257,71,11.0\n257,72,11.5\n257,73,12.0\n257,74,12.5\n257,75,7.0\n257,76,6.5\n257,77,6.0\n257,78,5.5\n257,79,5.0\n257,80,4.5\n257,81,4.0\n257,82,3.5\n257,83,4.0\n257,84,4.5\n257,85,5.0\n257,86,5.5\n257,87,6.0\n257,88,6.5\n257,89,7.0\n257,90,7.5\n257,91,8.0\n257,92,8.5\n257,93,9.0\n257,94,9.5\n257,95,10.0\n257,96,10.5\n257,97,11.0\n257,98,11.5\n257,99,12.0\n257,100,6.5\n257,101,6.0\n257,102,5.5\n257,103,5.0\n257,104,4.5\n257,105,4.0\n257,106,3.5\n257,107,3.0\n257,108,3.5\n257,109,4.0\n257,110,4.5\n257,111,5.0\n257,112,5.5\n257,113,6.0\n257,114,6.5\n257,115,7.0\n257,116,7.5\n257,117,8.0\n257,118,8.5\n257,119,9.0\n257,120,9.5\n257,121,10.0\n257,122,10.5\n257,123,11.0\n257,124,11.5\n257,125,6.0\n257,126,5.5\n257,127,5.0\n257,128,4.5\n257,129,4.0\n257,130,3.5\n257,131,3.0\n257,132,2.5\n257,133,3.0\n257,134,3.5\n257,135,4.0\n257,136,4.5\n257,137,5.0\n257,138,5.5\n257,139,6.0\n257,140,6.5\n257,141,7.0\n257,142,7.5\n257,143,8.0\n257,144,8.5\n257,145,9.0\n257,146,9.5\n257,147,10.0\n257,148,10.5\n257,149,11.0\n257,150,5.5\n257,151,5.0\n257,152,4.5\n257,153,4.0\n257,154,3.5\n257,155,3.0\n257,156,2.5\n257,157,2.0\n257,158,2.5\n257,159,3.0\n257,160,3.5\n257,161,4.0\n257,162,4.5\n257,163,5.0\n257,164,5.5\n257,165,6.0\n257,166,6.5\n257,167,7.0\n257,168,7.5\n257,169,8.0\n257,170,8.5\n257,171,9.0\n257,172,9.5\n257,173,10.0\n257,174,10.5\n257,175,5.0\n257,176,4.5\n257,177,4.0\n257,178,3.5\n257,179,3.0\n257,180,2.5\n257,181,2.0\n257,182,1.5\n257,183,2.0\n257,184,2.5\n257,185,3.0\n257,186,3.5\n257,187,4.0\n257,188,4.5\n257,189,5.0\n257,190,5.5\n257,191,6.0\n257,192,6.5\n257,193,7.0\n257,194,7.5\n257,195,8.0\n257,196,8.5\n257,197,9.0\n257,198,9.5\n257,199,10.0\n257,200,4.5\n257,201,4.0\n257,202,3.5\n257,203,3.0\n257,204,2.5\n257,205,2.0\n257,206,1.5\n257,207,1.0\n257,208,1.5\n257,209,2.0\n257,210,2.5\n257,211,3.0\n257,212,3.5\n257,213,4.0\n257,214,4.5\n257,215,5.0\n257,216,5.5\n257,217,6.0\n257,218,6.5\n257,219,7.0\n257,220,7.5\n257,221,8.0\n257,222,8.5\n257,223,9.0\n257,224,9.5\n257,225,4.0\n257,226,3.5\n257,227,3.0\n257,228,2.5\n257,229,2.0\n257,230,1.5\n257,231,1.0\n257,232,0.5\n257,233,1.0\n257,234,1.5\n257,235,2.0\n257,236,2.5\n257,237,3.0\n257,238,3.5\n257,239,4.0\n257,240,4.5\n257,241,5.0\n257,242,5.5\n257,243,6.0\n257,244,6.5\n257,245,7.0\n257,246,7.5\n257,247,8.0\n257,248,8.5\n257,249,9.0\n257,250,3.5\n257,251,3.0\n257,252,2.5\n257,253,2.0\n257,254,1.5\n257,255,1.0\n257,256,0.5\n257,257,0\n257,258,0.5\n257,259,1.0\n257,260,1.5\n257,261,2.0\n257,262,2.5\n257,263,3.0\n257,264,3.5\n257,265,4.0\n257,266,4.5\n257,267,5.0\n257,268,5.5\n257,269,6.0\n257,270,6.5\n257,271,7.0\n257,272,7.5\n257,273,8.0\n257,274,8.5\n257,275,4.0\n257,276,3.5\n257,277,3.0\n257,278,2.5\n257,279,2.0\n257,280,1.5\n257,281,1.0\n257,282,0.5\n257,283,1.0\n257,284,1.5\n257,285,2.0\n257,286,2.5\n257,287,3.0\n257,288,3.5\n257,289,4.0\n257,290,4.5\n257,291,5.0\n257,292,5.5\n257,293,6.0\n257,294,6.5\n257,295,7.0\n257,296,7.5\n257,297,8.0\n257,298,8.5\n257,299,9.0\n257,300,4.5\n257,301,4.0\n257,302,3.5\n257,303,3.0\n257,304,2.5\n257,305,2.0\n257,306,1.5\n257,307,1.0\n257,308,1.5\n257,309,2.0\n257,310,2.5\n257,311,3.0\n257,312,3.5\n257,313,4.0\n257,314,4.5\n257,315,5.0\n257,316,5.5\n257,317,6.0\n257,318,6.5\n257,319,7.0\n257,320,7.5\n257,321,8.0\n257,322,8.5\n257,323,9.0\n257,324,9.5\n257,325,5.0\n257,326,4.5\n257,327,4.0\n257,328,3.5\n257,329,3.0\n257,330,2.5\n257,331,2.0\n257,332,1.5\n257,333,2.0\n257,334,2.5\n257,335,3.0\n257,336,3.5\n257,337,4.0\n257,338,4.5\n257,339,5.0\n257,340,5.5\n257,341,6.0\n257,342,6.5\n257,343,7.0\n257,344,7.5\n257,345,8.0\n257,346,8.5\n257,347,9.0\n257,348,9.5\n257,349,10.0\n257,350,5.5\n257,351,5.0\n257,352,4.5\n257,353,4.0\n257,354,3.5\n257,355,3.0\n257,356,2.5\n257,357,2.0\n257,358,2.5\n257,359,3.0\n257,360,3.5\n257,361,4.0\n257,362,4.5\n257,363,5.0\n257,364,5.5\n257,365,6.0\n257,366,6.5\n257,367,7.0\n257,368,7.5\n257,369,8.0\n257,370,8.5\n257,371,9.0\n257,372,9.5\n257,373,10.0\n257,374,10.5\n257,375,6.0\n257,376,5.5\n257,377,5.0\n257,378,4.5\n257,379,4.0\n257,380,3.5\n257,381,3.0\n257,382,2.5\n257,383,3.0\n257,384,3.5\n257,385,4.0\n257,386,4.5\n257,387,5.0\n257,388,5.5\n257,389,6.0\n257,390,6.5\n257,391,7.0\n257,392,7.5\n257,393,8.0\n257,394,8.5\n257,395,9.0\n257,396,9.5\n257,397,10.0\n257,398,10.5\n257,399,11.0\n257,400,6.5\n257,401,6.0\n257,402,5.5\n257,403,5.0\n257,404,4.5\n257,405,4.0\n257,406,3.5\n257,407,3.0\n257,408,3.5\n257,409,4.0\n257,410,4.5\n257,411,5.0\n257,412,5.5\n257,413,6.0\n257,414,6.5\n257,415,7.0\n257,416,7.5\n257,417,8.0\n257,418,8.5\n257,419,9.0\n257,420,9.5\n257,421,10.0\n257,422,10.5\n257,423,11.0\n257,424,11.5\n257,425,7.0\n257,426,6.5\n257,427,6.0\n257,428,5.5\n257,429,5.0\n257,430,4.5\n257,431,4.0\n257,432,3.5\n257,433,4.0\n257,434,4.5\n257,435,5.0\n257,436,5.5\n257,437,6.0\n257,438,6.5\n257,439,7.0\n257,440,7.5\n257,441,8.0\n257,442,8.5\n257,443,9.0\n257,444,9.5\n257,445,10.0\n257,446,10.5\n257,447,11.0\n257,448,11.5\n257,449,12.0\n257,450,7.5\n257,451,7.0\n257,452,6.5\n257,453,6.0\n257,454,5.5\n257,455,5.0\n257,456,4.5\n257,457,4.0\n257,458,4.5\n257,459,5.0\n257,460,5.5\n257,461,6.0\n257,462,6.5\n257,463,7.0\n257,464,7.5\n257,465,8.0\n257,466,8.5\n257,467,9.0\n257,468,9.5\n257,469,10.0\n257,470,10.5\n257,471,11.0\n257,472,11.5\n257,473,12.0\n257,474,12.5\n257,475,8.0\n257,476,7.5\n257,477,7.0\n257,478,6.5\n257,479,6.0\n257,480,5.5\n257,481,5.0\n257,482,4.5\n257,483,5.0\n257,484,5.5\n257,485,6.0\n257,486,6.5\n257,487,7.0\n257,488,7.5\n257,489,8.0\n257,490,8.5\n257,491,9.0\n257,492,9.5\n257,493,10.0\n257,494,10.5\n257,495,11.0\n257,496,11.5\n257,497,12.0\n257,498,12.5\n257,499,13.0\n257,500,8.5\n257,501,8.0\n257,502,7.5\n257,503,7.0\n257,504,6.5\n257,505,6.0\n257,506,5.5\n257,507,5.0\n257,508,5.5\n257,509,6.0\n257,510,6.5\n257,511,7.0\n257,512,7.5\n257,513,8.0\n257,514,8.5\n257,515,9.0\n257,516,9.5\n257,517,10.0\n257,518,10.5\n257,519,11.0\n257,520,11.5\n257,521,12.0\n257,522,12.5\n257,523,13.0\n257,524,13.5\n257,525,9.0\n257,526,8.5\n257,527,8.0\n257,528,7.5\n257,529,7.0\n257,530,6.5\n257,531,6.0\n257,532,5.5\n257,533,6.0\n257,534,6.5\n257,535,7.0\n257,536,7.5\n257,537,8.0\n257,538,8.5\n257,539,9.0\n257,540,9.5\n257,541,10.0\n257,542,10.5\n257,543,11.0\n257,544,11.5\n257,545,12.0\n257,546,12.5\n257,547,13.0\n257,548,13.5\n257,549,14.0\n257,550,9.5\n257,551,9.0\n257,552,8.5\n257,553,8.0\n257,554,7.5\n257,555,7.0\n257,556,6.5\n257,557,6.0\n257,558,6.5\n257,559,7.0\n257,560,7.5\n257,561,8.0\n257,562,8.5\n257,563,9.0\n257,564,9.5\n257,565,10.0\n257,566,10.5\n257,567,11.0\n257,568,11.5\n257,569,12.0\n257,570,12.5\n257,571,13.0\n257,572,13.5\n257,573,14.0\n257,574,14.5\n257,575,10.0\n257,576,9.5\n257,577,9.0\n257,578,8.5\n257,579,8.0\n257,580,7.5\n257,581,7.0\n257,582,6.5\n257,583,7.0\n257,584,7.5\n257,585,8.0\n257,586,8.5\n257,587,9.0\n257,588,9.5\n257,589,10.0\n257,590,10.5\n257,591,11.0\n257,592,11.5\n257,593,12.0\n257,594,12.5\n257,595,13.0\n257,596,13.5\n257,597,14.0\n257,598,14.5\n257,599,15.0\n257,600,10.5\n257,601,10.0\n257,602,9.5\n257,603,9.0\n257,604,8.5\n257,605,8.0\n257,606,7.5\n257,607,7.0\n257,608,7.5\n257,609,8.0\n257,610,8.5\n257,611,9.0\n257,612,9.5\n257,613,10.0\n257,614,10.5\n257,615,11.0\n257,616,11.5\n257,617,12.0\n257,618,12.5\n257,619,13.0\n257,620,13.5\n257,621,14.0\n257,622,14.5\n257,623,15.0\n257,624,15.5\n258,0,9.0\n258,1,8.5\n258,2,8.0\n258,3,7.5\n258,4,7.0\n258,5,6.5\n258,6,6.0\n258,7,5.5\n258,8,5.0\n258,9,5.5\n258,10,6.0\n258,11,6.5\n258,12,7.0\n258,13,7.5\n258,14,8.0\n258,15,8.5\n258,16,9.0\n258,17,9.5\n258,18,10.0\n258,19,10.5\n258,20,11.0\n258,21,11.5\n258,22,12.0\n258,23,12.5\n258,24,13.0\n258,25,8.5\n258,26,8.0\n258,27,7.5\n258,28,7.0\n258,29,6.5\n258,30,6.0\n258,31,5.5\n258,32,5.0\n258,33,4.5\n258,34,5.0\n258,35,5.5\n258,36,6.0\n258,37,6.5\n258,38,7.0\n258,39,7.5\n258,40,8.0\n258,41,8.5\n258,42,9.0\n258,43,9.5\n258,44,10.0\n258,45,10.5\n258,46,11.0\n258,47,11.5\n258,48,12.0\n258,49,12.5\n258,50,8.0\n258,51,7.5\n258,52,7.0\n258,53,6.5\n258,54,6.0\n258,55,5.5\n258,56,5.0\n258,57,4.5\n258,58,4.0\n258,59,4.5\n258,60,5.0\n258,61,5.5\n258,62,6.0\n258,63,6.5\n258,64,7.0\n258,65,7.5\n258,66,8.0\n258,67,8.5\n258,68,9.0\n258,69,9.5\n258,70,10.0\n258,71,10.5\n258,72,11.0\n258,73,11.5\n258,74,12.0\n258,75,7.5\n258,76,7.0\n258,77,6.5\n258,78,6.0\n258,79,5.5\n258,80,5.0\n258,81,4.5\n258,82,4.0\n258,83,3.5\n258,84,4.0\n258,85,4.5\n258,86,5.0\n258,87,5.5\n258,88,6.0\n258,89,6.5\n258,90,7.0\n258,91,7.5\n258,92,8.0\n258,93,8.5\n258,94,9.0\n258,95,9.5\n258,96,10.0\n258,97,10.5\n258,98,11.0\n258,99,11.5\n258,100,7.0\n258,101,6.5\n258,102,6.0\n258,103,5.5\n258,104,5.0\n258,105,4.5\n258,106,4.0\n258,107,3.5\n258,108,3.0\n258,109,3.5\n258,110,4.0\n258,111,4.5\n258,112,5.0\n258,113,5.5\n258,114,6.0\n258,115,6.5\n258,116,7.0\n258,117,7.5\n258,118,8.0\n258,119,8.5\n258,120,9.0\n258,121,9.5\n258,122,10.0\n258,123,10.5\n258,124,11.0\n258,125,6.5\n258,126,6.0\n258,127,5.5\n258,128,5.0\n258,129,4.5\n258,130,4.0\n258,131,3.5\n258,132,3.0\n258,133,2.5\n258,134,3.0\n258,135,3.5\n258,136,4.0\n258,137,4.5\n258,138,5.0\n258,139,5.5\n258,140,6.0\n258,141,6.5\n258,142,7.0\n258,143,7.5\n258,144,8.0\n258,145,8.5\n258,146,9.0\n258,147,9.5\n258,148,10.0\n258,149,10.5\n258,150,6.0\n258,151,5.5\n258,152,5.0\n258,153,4.5\n258,154,4.0\n258,155,3.5\n258,156,3.0\n258,157,2.5\n258,158,2.0\n258,159,2.5\n258,160,3.0\n258,161,3.5\n258,162,4.0\n258,163,4.5\n258,164,5.0\n258,165,5.5\n258,166,6.0\n258,167,6.5\n258,168,7.0\n258,169,7.5\n258,170,8.0\n258,171,8.5\n258,172,9.0\n258,173,9.5\n258,174,10.0\n258,175,5.5\n258,176,5.0\n258,177,4.5\n258,178,4.0\n258,179,3.5\n258,180,3.0\n258,181,2.5\n258,182,2.0\n258,183,1.5\n258,184,2.0\n258,185,2.5\n258,186,3.0\n258,187,3.5\n258,188,4.0\n258,189,4.5\n258,190,5.0\n258,191,5.5\n258,192,6.0\n258,193,6.5\n258,194,7.0\n258,195,7.5\n258,196,8.0\n258,197,8.5\n258,198,9.0\n258,199,9.5\n258,200,5.0\n258,201,4.5\n258,202,4.0\n258,203,3.5\n258,204,3.0\n258,205,2.5\n258,206,2.0\n258,207,1.5\n258,208,1.0\n258,209,1.5\n258,210,2.0\n258,211,2.5\n258,212,3.0\n258,213,3.5\n258,214,4.0\n258,215,4.5\n258,216,5.0\n258,217,5.5\n258,218,6.0\n258,219,6.5\n258,220,7.0\n258,221,7.5\n258,222,8.0\n258,223,8.5\n258,224,9.0\n258,225,4.5\n258,226,4.0\n258,227,3.5\n258,228,3.0\n258,229,2.5\n258,230,2.0\n258,231,1.5\n258,232,1.0\n258,233,0.5\n258,234,1.0\n258,235,1.5\n258,236,2.0\n258,237,2.5\n258,238,3.0\n258,239,3.5\n258,240,4.0\n258,241,4.5\n258,242,5.0\n258,243,5.5\n258,244,6.0\n258,245,6.5\n258,246,7.0\n258,247,7.5\n258,248,8.0\n258,249,8.5\n258,250,4.0\n258,251,3.5\n258,252,3.0\n258,253,2.5\n258,254,2.0\n258,255,1.5\n258,256,1.0\n258,257,0.5\n258,258,0\n258,259,0.5\n258,260,1.0\n258,261,1.5\n258,262,2.0\n258,263,2.5\n258,264,3.0\n258,265,3.5\n258,266,4.0\n258,267,4.5\n258,268,5.0\n258,269,5.5\n258,270,6.0\n258,271,6.5\n258,272,7.0\n258,273,7.5\n258,274,8.0\n258,275,4.5\n258,276,4.0\n258,277,3.5\n258,278,3.0\n258,279,2.5\n258,280,2.0\n258,281,1.5\n258,282,1.0\n258,283,0.5\n258,284,1.0\n258,285,1.5\n258,286,2.0\n258,287,2.5\n258,288,3.0\n258,289,3.5\n258,290,4.0\n258,291,4.5\n258,292,5.0\n258,293,5.5\n258,294,6.0\n258,295,6.5\n258,296,7.0\n258,297,7.5\n258,298,8.0\n258,299,8.5\n258,300,5.0\n258,301,4.5\n258,302,4.0\n258,303,3.5\n258,304,3.0\n258,305,2.5\n258,306,2.0\n258,307,1.5\n258,308,1.0\n258,309,1.5\n258,310,2.0\n258,311,2.5\n258,312,3.0\n258,313,3.5\n258,314,4.0\n258,315,4.5\n258,316,5.0\n258,317,5.5\n258,318,6.0\n258,319,6.5\n258,320,7.0\n258,321,7.5\n258,322,8.0\n258,323,8.5\n258,324,9.0\n258,325,5.5\n258,326,5.0\n258,327,4.5\n258,328,4.0\n258,329,3.5\n258,330,3.0\n258,331,2.5\n258,332,2.0\n258,333,1.5\n258,334,2.0\n258,335,2.5\n258,336,3.0\n258,337,3.5\n258,338,4.0\n258,339,4.5\n258,340,5.0\n258,341,5.5\n258,342,6.0\n258,343,6.5\n258,344,7.0\n258,345,7.5\n258,346,8.0\n258,347,8.5\n258,348,9.0\n258,349,9.5\n258,350,6.0\n258,351,5.5\n258,352,5.0\n258,353,4.5\n258,354,4.0\n258,355,3.5\n258,356,3.0\n258,357,2.5\n258,358,2.0\n258,359,2.5\n258,360,3.0\n258,361,3.5\n258,362,4.0\n258,363,4.5\n258,364,5.0\n258,365,5.5\n258,366,6.0\n258,367,6.5\n258,368,7.0\n258,369,7.5\n258,370,8.0\n258,371,8.5\n258,372,9.0\n258,373,9.5\n258,374,10.0\n258,375,6.5\n258,376,6.0\n258,377,5.5\n258,378,5.0\n258,379,4.5\n258,380,4.0\n258,381,3.5\n258,382,3.0\n258,383,2.5\n258,384,3.0\n258,385,3.5\n258,386,4.0\n258,387,4.5\n258,388,5.0\n258,389,5.5\n258,390,6.0\n258,391,6.5\n258,392,7.0\n258,393,7.5\n258,394,8.0\n258,395,8.5\n258,396,9.0\n258,397,9.5\n258,398,10.0\n258,399,10.5\n258,400,7.0\n258,401,6.5\n258,402,6.0\n258,403,5.5\n258,404,5.0\n258,405,4.5\n258,406,4.0\n258,407,3.5\n258,408,3.0\n258,409,3.5\n258,410,4.0\n258,411,4.5\n258,412,5.0\n258,413,5.5\n258,414,6.0\n258,415,6.5\n258,416,7.0\n258,417,7.5\n258,418,8.0\n258,419,8.5\n258,420,9.0\n258,421,9.5\n258,422,10.0\n258,423,10.5\n258,424,11.0\n258,425,7.5\n258,426,7.0\n258,427,6.5\n258,428,6.0\n258,429,5.5\n258,430,5.0\n258,431,4.5\n258,432,4.0\n258,433,3.5\n258,434,4.0\n258,435,4.5\n258,436,5.0\n258,437,5.5\n258,438,6.0\n258,439,6.5\n258,440,7.0\n258,441,7.5\n258,442,8.0\n258,443,8.5\n258,444,9.0\n258,445,9.5\n258,446,10.0\n258,447,10.5\n258,448,11.0\n258,449,11.5\n258,450,8.0\n258,451,7.5\n258,452,7.0\n258,453,6.5\n258,454,6.0\n258,455,5.5\n258,456,5.0\n258,457,4.5\n258,458,4.0\n258,459,4.5\n258,460,5.0\n258,461,5.5\n258,462,6.0\n258,463,6.5\n258,464,7.0\n258,465,7.5\n258,466,8.0\n258,467,8.5\n258,468,9.0\n258,469,9.5\n258,470,10.0\n258,471,10.5\n258,472,11.0\n258,473,11.5\n258,474,12.0\n258,475,8.5\n258,476,8.0\n258,477,7.5\n258,478,7.0\n258,479,6.5\n258,480,6.0\n258,481,5.5\n258,482,5.0\n258,483,4.5\n258,484,5.0\n258,485,5.5\n258,486,6.0\n258,487,6.5\n258,488,7.0\n258,489,7.5\n258,490,8.0\n258,491,8.5\n258,492,9.0\n258,493,9.5\n258,494,10.0\n258,495,10.5\n258,496,11.0\n258,497,11.5\n258,498,12.0\n258,499,12.5\n258,500,9.0\n258,501,8.5\n258,502,8.0\n258,503,7.5\n258,504,7.0\n258,505,6.5\n258,506,6.0\n258,507,5.5\n258,508,5.0\n258,509,5.5\n258,510,6.0\n258,511,6.5\n258,512,7.0\n258,513,7.5\n258,514,8.0\n258,515,8.5\n258,516,9.0\n258,517,9.5\n258,518,10.0\n258,519,10.5\n258,520,11.0\n258,521,11.5\n258,522,12.0\n258,523,12.5\n258,524,13.0\n258,525,9.5\n258,526,9.0\n258,527,8.5\n258,528,8.0\n258,529,7.5\n258,530,7.0\n258,531,6.5\n258,532,6.0\n258,533,5.5\n258,534,6.0\n258,535,6.5\n258,536,7.0\n258,537,7.5\n258,538,8.0\n258,539,8.5\n258,540,9.0\n258,541,9.5\n258,542,10.0\n258,543,10.5\n258,544,11.0\n258,545,11.5\n258,546,12.0\n258,547,12.5\n258,548,13.0\n258,549,13.5\n258,550,10.0\n258,551,9.5\n258,552,9.0\n258,553,8.5\n258,554,8.0\n258,555,7.5\n258,556,7.0\n258,557,6.5\n258,558,6.0\n258,559,6.5\n258,560,7.0\n258,561,7.5\n258,562,8.0\n258,563,8.5\n258,564,9.0\n258,565,9.5\n258,566,10.0\n258,567,10.5\n258,568,11.0\n258,569,11.5\n258,570,12.0\n258,571,12.5\n258,572,13.0\n258,573,13.5\n258,574,14.0\n258,575,10.5\n258,576,10.0\n258,577,9.5\n258,578,9.0\n258,579,8.5\n258,580,8.0\n258,581,7.5\n258,582,7.0\n258,583,6.5\n258,584,7.0\n258,585,7.5\n258,586,8.0\n258,587,8.5\n258,588,9.0\n258,589,9.5\n258,590,10.0\n258,591,10.5\n258,592,11.0\n258,593,11.5\n258,594,12.0\n258,595,12.5\n258,596,13.0\n258,597,13.5\n258,598,14.0\n258,599,14.5\n258,600,11.0\n258,601,10.5\n258,602,10.0\n258,603,9.5\n258,604,9.0\n258,605,8.5\n258,606,8.0\n258,607,7.5\n258,608,7.0\n258,609,7.5\n258,610,8.0\n258,611,8.5\n258,612,9.0\n258,613,9.5\n258,614,10.0\n258,615,10.5\n258,616,11.0\n258,617,11.5\n258,618,12.0\n258,619,12.5\n258,620,13.0\n258,621,13.5\n258,622,14.0\n258,623,14.5\n258,624,15.0\n259,0,9.5\n259,1,9.0\n259,2,8.5\n259,3,8.0\n259,4,7.5\n259,5,7.0\n259,6,6.5\n259,7,6.0\n259,8,5.5\n259,9,5.0\n259,10,5.5\n259,11,6.0\n259,12,6.5\n259,13,7.0\n259,14,7.5\n259,15,8.0\n259,16,8.5\n259,17,9.0\n259,18,9.5\n259,19,10.0\n259,20,10.5\n259,21,11.0\n259,22,11.5\n259,23,12.0\n259,24,12.5\n259,25,9.0\n259,26,8.5\n259,27,8.0\n259,28,7.5\n259,29,7.0\n259,30,6.5\n259,31,6.0\n259,32,5.5\n259,33,5.0\n259,34,4.5\n259,35,5.0\n259,36,5.5\n259,37,6.0\n259,38,6.5\n259,39,7.0\n259,40,7.5\n259,41,8.0\n259,42,8.5\n259,43,9.0\n259,44,9.5\n259,45,10.0\n259,46,10.5\n259,47,11.0\n259,48,11.5\n259,49,12.0\n259,50,8.5\n259,51,8.0\n259,52,7.5\n259,53,7.0\n259,54,6.5\n259,55,6.0\n259,56,5.5\n259,57,5.0\n259,58,4.5\n259,59,4.0\n259,60,4.5\n259,61,5.0\n259,62,5.5\n259,63,6.0\n259,64,6.5\n259,65,7.0\n259,66,7.5\n259,67,8.0\n259,68,8.5\n259,69,9.0\n259,70,9.5\n259,71,10.0\n259,72,10.5\n259,73,11.0\n259,74,11.5\n259,75,8.0\n259,76,7.5\n259,77,7.0\n259,78,6.5\n259,79,6.0\n259,80,5.5\n259,81,5.0\n259,82,4.5\n259,83,4.0\n259,84,3.5\n259,85,4.0\n259,86,4.5\n259,87,5.0\n259,88,5.5\n259,89,6.0\n259,90,6.5\n259,91,7.0\n259,92,7.5\n259,93,8.0\n259,94,8.5\n259,95,9.0\n259,96,9.5\n259,97,10.0\n259,98,10.5\n259,99,11.0\n259,100,7.5\n259,101,7.0\n259,102,6.5\n259,103,6.0\n259,104,5.5\n259,105,5.0\n259,106,4.5\n259,107,4.0\n259,108,3.5\n259,109,3.0\n259,110,3.5\n259,111,4.0\n259,112,4.5\n259,113,5.0\n259,114,5.5\n259,115,6.0\n259,116,6.5\n259,117,7.0\n259,118,7.5\n259,119,8.0\n259,120,8.5\n259,121,9.0\n259,122,9.5\n259,123,10.0\n259,124,10.5\n259,125,7.0\n259,126,6.5\n259,127,6.0\n259,128,5.5\n259,129,5.0\n259,130,4.5\n259,131,4.0\n259,132,3.5\n259,133,3.0\n259,134,2.5\n259,135,3.0\n259,136,3.5\n259,137,4.0\n259,138,4.5\n259,139,5.0\n259,140,5.5\n259,141,6.0\n259,142,6.5\n259,143,7.0\n259,144,7.5\n259,145,8.0\n259,146,8.5\n259,147,9.0\n259,148,9.5\n259,149,10.0\n259,150,6.5\n259,151,6.0\n259,152,5.5\n259,153,5.0\n259,154,4.5\n259,155,4.0\n259,156,3.5\n259,157,3.0\n259,158,2.5\n259,159,2.0\n259,160,2.5\n259,161,3.0\n259,162,3.5\n259,163,4.0\n259,164,4.5\n259,165,5.0\n259,166,5.5\n259,167,6.0\n259,168,6.5\n259,169,7.0\n259,170,7.5\n259,171,8.0\n259,172,8.5\n259,173,9.0\n259,174,9.5\n259,175,6.0\n259,176,5.5\n259,177,5.0\n259,178,4.5\n259,179,4.0\n259,180,3.5\n259,181,3.0\n259,182,2.5\n259,183,2.0\n259,184,1.5\n259,185,2.0\n259,186,2.5\n259,187,3.0\n259,188,3.5\n259,189,4.0\n259,190,4.5\n259,191,5.0\n259,192,5.5\n259,193,6.0\n259,194,6.5\n259,195,7.0\n259,196,7.5\n259,197,8.0\n259,198,8.5\n259,199,9.0\n259,200,5.5\n259,201,5.0\n259,202,4.5\n259,203,4.0\n259,204,3.5\n259,205,3.0\n259,206,2.5\n259,207,2.0\n259,208,1.5\n259,209,1.0\n259,210,1.5\n259,211,2.0\n259,212,2.5\n259,213,3.0\n259,214,3.5\n259,215,4.0\n259,216,4.5\n259,217,5.0\n259,218,5.5\n259,219,6.0\n259,220,6.5\n259,221,7.0\n259,222,7.5\n259,223,8.0\n259,224,8.5\n259,225,5.0\n259,226,4.5\n259,227,4.0\n259,228,3.5\n259,229,3.0\n259,230,2.5\n259,231,2.0\n259,232,1.5\n259,233,1.0\n259,234,0.5\n259,235,1.0\n259,236,1.5\n259,237,2.0\n259,238,2.5\n259,239,3.0\n259,240,3.5\n259,241,4.0\n259,242,4.5\n259,243,5.0\n259,244,5.5\n259,245,6.0\n259,246,6.5\n259,247,7.0\n259,248,7.5\n259,249,8.0\n259,250,4.5\n259,251,4.0\n259,252,3.5\n259,253,3.0\n259,254,2.5\n259,255,2.0\n259,256,1.5\n259,257,1.0\n259,258,0.5\n259,259,0\n259,260,0.5\n259,261,1.0\n259,262,1.5\n259,263,2.0\n259,264,2.5\n259,265,3.0\n259,266,3.5\n259,267,4.0\n259,268,4.5\n259,269,5.0\n259,270,5.5\n259,271,6.0\n259,272,6.5\n259,273,7.0\n259,274,7.5\n259,275,5.0\n259,276,4.5\n259,277,4.0\n259,278,3.5\n259,279,3.0\n259,280,2.5\n259,281,2.0\n259,282,1.5\n259,283,1.0\n259,284,0.5\n259,285,1.0\n259,286,1.5\n259,287,2.0\n259,288,2.5\n259,289,3.0\n259,290,3.5\n259,291,4.0\n259,292,4.5\n259,293,5.0\n259,294,5.5\n259,295,6.0\n259,296,6.5\n259,297,7.0\n259,298,7.5\n259,299,8.0\n259,300,5.5\n259,301,5.0\n259,302,4.5\n259,303,4.0\n259,304,3.5\n259,305,3.0\n259,306,2.5\n259,307,2.0\n259,308,1.5\n259,309,1.0\n259,310,1.5\n259,311,2.0\n259,312,2.5\n259,313,3.0\n259,314,3.5\n259,315,4.0\n259,316,4.5\n259,317,5.0\n259,318,5.5\n259,319,6.0\n259,320,6.5\n259,321,7.0\n259,322,7.5\n259,323,8.0\n259,324,8.5\n259,325,6.0\n259,326,5.5\n259,327,5.0\n259,328,4.5\n259,329,4.0\n259,330,3.5\n259,331,3.0\n259,332,2.5\n259,333,2.0\n259,334,1.5\n259,335,2.0\n259,336,2.5\n259,337,3.0\n259,338,3.5\n259,339,4.0\n259,340,4.5\n259,341,5.0\n259,342,5.5\n259,343,6.0\n259,344,6.5\n259,345,7.0\n259,346,7.5\n259,347,8.0\n259,348,8.5\n259,349,9.0\n259,350,6.5\n259,351,6.0\n259,352,5.5\n259,353,5.0\n259,354,4.5\n259,355,4.0\n259,356,3.5\n259,357,3.0\n259,358,2.5\n259,359,2.0\n259,360,2.5\n259,361,3.0\n259,362,3.5\n259,363,4.0\n259,364,4.5\n259,365,5.0\n259,366,5.5\n259,367,6.0\n259,368,6.5\n259,369,7.0\n259,370,7.5\n259,371,8.0\n259,372,8.5\n259,373,9.0\n259,374,9.5\n259,375,7.0\n259,376,6.5\n259,377,6.0\n259,378,5.5\n259,379,5.0\n259,380,4.5\n259,381,4.0\n259,382,3.5\n259,383,3.0\n259,384,2.5\n259,385,3.0\n259,386,3.5\n259,387,4.0\n259,388,4.5\n259,389,5.0\n259,390,5.5\n259,391,6.0\n259,392,6.5\n259,393,7.0\n259,394,7.5\n259,395,8.0\n259,396,8.5\n259,397,9.0\n259,398,9.5\n259,399,10.0\n259,400,7.5\n259,401,7.0\n259,402,6.5\n259,403,6.0\n259,404,5.5\n259,405,5.0\n259,406,4.5\n259,407,4.0\n259,408,3.5\n259,409,3.0\n259,410,3.5\n259,411,4.0\n259,412,4.5\n259,413,5.0\n259,414,5.5\n259,415,6.0\n259,416,6.5\n259,417,7.0\n259,418,7.5\n259,419,8.0\n259,420,8.5\n259,421,9.0\n259,422,9.5\n259,423,10.0\n259,424,10.5\n259,425,8.0\n259,426,7.5\n259,427,7.0\n259,428,6.5\n259,429,6.0\n259,430,5.5\n259,431,5.0\n259,432,4.5\n259,433,4.0\n259,434,3.5\n259,435,4.0\n259,436,4.5\n259,437,5.0\n259,438,5.5\n259,439,6.0\n259,440,6.5\n259,441,7.0\n259,442,7.5\n259,443,8.0\n259,444,8.5\n259,445,9.0\n259,446,9.5\n259,447,10.0\n259,448,10.5\n259,449,11.0\n259,450,8.5\n259,451,8.0\n259,452,7.5\n259,453,7.0\n259,454,6.5\n259,455,6.0\n259,456,5.5\n259,457,5.0\n259,458,4.5\n259,459,4.0\n259,460,4.5\n259,461,5.0\n259,462,5.5\n259,463,6.0\n259,464,6.5\n259,465,7.0\n259,466,7.5\n259,467,8.0\n259,468,8.5\n259,469,9.0\n259,470,9.5\n259,471,10.0\n259,472,10.5\n259,473,11.0\n259,474,11.5\n259,475,9.0\n259,476,8.5\n259,477,8.0\n259,478,7.5\n259,479,7.0\n259,480,6.5\n259,481,6.0\n259,482,5.5\n259,483,5.0\n259,484,4.5\n259,485,5.0\n259,486,5.5\n259,487,6.0\n259,488,6.5\n259,489,7.0\n259,490,7.5\n259,491,8.0\n259,492,8.5\n259,493,9.0\n259,494,9.5\n259,495,10.0\n259,496,10.5\n259,497,11.0\n259,498,11.5\n259,499,12.0\n259,500,9.5\n259,501,9.0\n259,502,8.5\n259,503,8.0\n259,504,7.5\n259,505,7.0\n259,506,6.5\n259,507,6.0\n259,508,5.5\n259,509,5.0\n259,510,5.5\n259,511,6.0\n259,512,6.5\n259,513,7.0\n259,514,7.5\n259,515,8.0\n259,516,8.5\n259,517,9.0\n259,518,9.5\n259,519,10.0\n259,520,10.5\n259,521,11.0\n259,522,11.5\n259,523,12.0\n259,524,12.5\n259,525,10.0\n259,526,9.5\n259,527,9.0\n259,528,8.5\n259,529,8.0\n259,530,7.5\n259,531,7.0\n259,532,6.5\n259,533,6.0\n259,534,5.5\n259,535,6.0\n259,536,6.5\n259,537,7.0\n259,538,7.5\n259,539,8.0\n259,540,8.5\n259,541,9.0\n259,542,9.5\n259,543,10.0\n259,544,10.5\n259,545,11.0\n259,546,11.5\n259,547,12.0\n259,548,12.5\n259,549,13.0\n259,550,10.5\n259,551,10.0\n259,552,9.5\n259,553,9.0\n259,554,8.5\n259,555,8.0\n259,556,7.5\n259,557,7.0\n259,558,6.5\n259,559,6.0\n259,560,6.5\n259,561,7.0\n259,562,7.5\n259,563,8.0\n259,564,8.5\n259,565,9.0\n259,566,9.5\n259,567,10.0\n259,568,10.5\n259,569,11.0\n259,570,11.5\n259,571,12.0\n259,572,12.5\n259,573,13.0\n259,574,13.5\n259,575,11.0\n259,576,10.5\n259,577,10.0\n259,578,9.5\n259,579,9.0\n259,580,8.5\n259,581,8.0\n259,582,7.5\n259,583,7.0\n259,584,6.5\n259,585,7.0\n259,586,7.5\n259,587,8.0\n259,588,8.5\n259,589,9.0\n259,590,9.5\n259,591,10.0\n259,592,10.5\n259,593,11.0\n259,594,11.5\n259,595,12.0\n259,596,12.5\n259,597,13.0\n259,598,13.5\n259,599,14.0\n259,600,11.5\n259,601,11.0\n259,602,10.5\n259,603,10.0\n259,604,9.5\n259,605,9.0\n259,606,8.5\n259,607,8.0\n259,608,7.5\n259,609,7.0\n259,610,7.5\n259,611,8.0\n259,612,8.5\n259,613,9.0\n259,614,9.5\n259,615,10.0\n259,616,10.5\n259,617,11.0\n259,618,11.5\n259,619,12.0\n259,620,12.5\n259,621,13.0\n259,622,13.5\n259,623,14.0\n259,624,14.5\n260,0,10.0\n260,1,9.5\n260,2,9.0\n260,3,8.5\n260,4,8.0\n260,5,7.5\n260,6,7.0\n260,7,6.5\n260,8,6.0\n260,9,5.5\n260,10,5.0\n260,11,5.5\n260,12,6.0\n260,13,6.5\n260,14,7.0\n260,15,7.5\n260,16,8.0\n260,17,8.5\n260,18,9.0\n260,19,9.5\n260,20,10.0\n260,21,10.5\n260,22,11.0\n260,23,11.5\n260,24,12.0\n260,25,9.5\n260,26,9.0\n260,27,8.5\n260,28,8.0\n260,29,7.5\n260,30,7.0\n260,31,6.5\n260,32,6.0\n260,33,5.5\n260,34,5.0\n260,35,4.5\n260,36,5.0\n260,37,5.5\n260,38,6.0\n260,39,6.5\n260,40,7.0\n260,41,7.5\n260,42,8.0\n260,43,8.5\n260,44,9.0\n260,45,9.5\n260,46,10.0\n260,47,10.5\n260,48,11.0\n260,49,11.5\n260,50,9.0\n260,51,8.5\n260,52,8.0\n260,53,7.5\n260,54,7.0\n260,55,6.5\n260,56,6.0\n260,57,5.5\n260,58,5.0\n260,59,4.5\n260,60,4.0\n260,61,4.5\n260,62,5.0\n260,63,5.5\n260,64,6.0\n260,65,6.5\n260,66,7.0\n260,67,7.5\n260,68,8.0\n260,69,8.5\n260,70,9.0\n260,71,9.5\n260,72,10.0\n260,73,10.5\n260,74,11.0\n260,75,8.5\n260,76,8.0\n260,77,7.5\n260,78,7.0\n260,79,6.5\n260,80,6.0\n260,81,5.5\n260,82,5.0\n260,83,4.5\n260,84,4.0\n260,85,3.5\n260,86,4.0\n260,87,4.5\n260,88,5.0\n260,89,5.5\n260,90,6.0\n260,91,6.5\n260,92,7.0\n260,93,7.5\n260,94,8.0\n260,95,8.5\n260,96,9.0\n260,97,9.5\n260,98,10.0\n260,99,10.5\n260,100,8.0\n260,101,7.5\n260,102,7.0\n260,103,6.5\n260,104,6.0\n260,105,5.5\n260,106,5.0\n260,107,4.5\n260,108,4.0\n260,109,3.5\n260,110,3.0\n260,111,3.5\n260,112,4.0\n260,113,4.5\n260,114,5.0\n260,115,5.5\n260,116,6.0\n260,117,6.5\n260,118,7.0\n260,119,7.5\n260,120,8.0\n260,121,8.5\n260,122,9.0\n260,123,9.5\n260,124,10.0\n260,125,7.5\n260,126,7.0\n260,127,6.5\n260,128,6.0\n260,129,5.5\n260,130,5.0\n260,131,4.5\n260,132,4.0\n260,133,3.5\n260,134,3.0\n260,135,2.5\n260,136,3.0\n260,137,3.5\n260,138,4.0\n260,139,4.5\n260,140,5.0\n260,141,5.5\n260,142,6.0\n260,143,6.5\n260,144,7.0\n260,145,7.5\n260,146,8.0\n260,147,8.5\n260,148,9.0\n260,149,9.5\n260,150,7.0\n260,151,6.5\n260,152,6.0\n260,153,5.5\n260,154,5.0\n260,155,4.5\n260,156,4.0\n260,157,3.5\n260,158,3.0\n260,159,2.5\n260,160,2.0\n260,161,2.5\n260,162,3.0\n260,163,3.5\n260,164,4.0\n260,165,4.5\n260,166,5.0\n260,167,5.5\n260,168,6.0\n260,169,6.5\n260,170,7.0\n260,171,7.5\n260,172,8.0\n260,173,8.5\n260,174,9.0\n260,175,6.5\n260,176,6.0\n260,177,5.5\n260,178,5.0\n260,179,4.5\n260,180,4.0\n260,181,3.5\n260,182,3.0\n260,183,2.5\n260,184,2.0\n260,185,1.5\n260,186,2.0\n260,187,2.5\n260,188,3.0\n260,189,3.5\n260,190,4.0\n260,191,4.5\n260,192,5.0\n260,193,5.5\n260,194,6.0\n260,195,6.5\n260,196,7.0\n260,197,7.5\n260,198,8.0\n260,199,8.5\n260,200,6.0\n260,201,5.5\n260,202,5.0\n260,203,4.5\n260,204,4.0\n260,205,3.5\n260,206,3.0\n260,207,2.5\n260,208,2.0\n260,209,1.5\n260,210,1.0\n260,211,1.5\n260,212,2.0\n260,213,2.5\n260,214,3.0\n260,215,3.5\n260,216,4.0\n260,217,4.5\n260,218,5.0\n260,219,5.5\n260,220,6.0\n260,221,6.5\n260,222,7.0\n260,223,7.5\n260,224,8.0\n260,225,5.5\n260,226,5.0\n260,227,4.5\n260,228,4.0\n260,229,3.5\n260,230,3.0\n260,231,2.5\n260,232,2.0\n260,233,1.5\n260,234,1.0\n260,235,0.5\n260,236,1.0\n260,237,1.5\n260,238,2.0\n260,239,2.5\n260,240,3.0\n260,241,3.5\n260,242,4.0\n260,243,4.5\n260,244,5.0\n260,245,5.5\n260,246,6.0\n260,247,6.5\n260,248,7.0\n260,249,7.5\n260,250,5.0\n260,251,4.5\n260,252,4.0\n260,253,3.5\n260,254,3.0\n260,255,2.5\n260,256,2.0\n260,257,1.5\n260,258,1.0\n260,259,0.5\n260,260,0\n260,261,0.5\n260,262,1.0\n260,263,1.5\n260,264,2.0\n260,265,2.5\n260,266,3.0\n260,267,3.5\n260,268,4.0\n260,269,4.5\n260,270,5.0\n260,271,5.5\n260,272,6.0\n260,273,6.5\n260,274,7.0\n260,275,5.5\n260,276,5.0\n260,277,4.5\n260,278,4.0\n260,279,3.5\n260,280,3.0\n260,281,2.5\n260,282,2.0\n260,283,1.5\n260,284,1.0\n260,285,0.5\n260,286,1.0\n260,287,1.5\n260,288,2.0\n260,289,2.5\n260,290,3.0\n260,291,3.5\n260,292,4.0\n260,293,4.5\n260,294,5.0\n260,295,5.5\n260,296,6.0\n260,297,6.5\n260,298,7.0\n260,299,7.5\n260,300,6.0\n260,301,5.5\n260,302,5.0\n260,303,4.5\n260,304,4.0\n260,305,3.5\n260,306,3.0\n260,307,2.5\n260,308,2.0\n260,309,1.5\n260,310,1.0\n260,311,1.5\n260,312,2.0\n260,313,2.5\n260,314,3.0\n260,315,3.5\n260,316,4.0\n260,317,4.5\n260,318,5.0\n260,319,5.5\n260,320,6.0\n260,321,6.5\n260,322,7.0\n260,323,7.5\n260,324,8.0\n260,325,6.5\n260,326,6.0\n260,327,5.5\n260,328,5.0\n260,329,4.5\n260,330,4.0\n260,331,3.5\n260,332,3.0\n260,333,2.5\n260,334,2.0\n260,335,1.5\n260,336,2.0\n260,337,2.5\n260,338,3.0\n260,339,3.5\n260,340,4.0\n260,341,4.5\n260,342,5.0\n260,343,5.5\n260,344,6.0\n260,345,6.5\n260,346,7.0\n260,347,7.5\n260,348,8.0\n260,349,8.5\n260,350,7.0\n260,351,6.5\n260,352,6.0\n260,353,5.5\n260,354,5.0\n260,355,4.5\n260,356,4.0\n260,357,3.5\n260,358,3.0\n260,359,2.5\n260,360,2.0\n260,361,2.5\n260,362,3.0\n260,363,3.5\n260,364,4.0\n260,365,4.5\n260,366,5.0\n260,367,5.5\n260,368,6.0\n260,369,6.5\n260,370,7.0\n260,371,7.5\n260,372,8.0\n260,373,8.5\n260,374,9.0\n260,375,7.5\n260,376,7.0\n260,377,6.5\n260,378,6.0\n260,379,5.5\n260,380,5.0\n260,381,4.5\n260,382,4.0\n260,383,3.5\n260,384,3.0\n260,385,2.5\n260,386,3.0\n260,387,3.5\n260,388,4.0\n260,389,4.5\n260,390,5.0\n260,391,5.5\n260,392,6.0\n260,393,6.5\n260,394,7.0\n260,395,7.5\n260,396,8.0\n260,397,8.5\n260,398,9.0\n260,399,9.5\n260,400,8.0\n260,401,7.5\n260,402,7.0\n260,403,6.5\n260,404,6.0\n260,405,5.5\n260,406,5.0\n260,407,4.5\n260,408,4.0\n260,409,3.5\n260,410,3.0\n260,411,3.5\n260,412,4.0\n260,413,4.5\n260,414,5.0\n260,415,5.5\n260,416,6.0\n260,417,6.5\n260,418,7.0\n260,419,7.5\n260,420,8.0\n260,421,8.5\n260,422,9.0\n260,423,9.5\n260,424,10.0\n260,425,8.5\n260,426,8.0\n260,427,7.5\n260,428,7.0\n260,429,6.5\n260,430,6.0\n260,431,5.5\n260,432,5.0\n260,433,4.5\n260,434,4.0\n260,435,3.5\n260,436,4.0\n260,437,4.5\n260,438,5.0\n260,439,5.5\n260,440,6.0\n260,441,6.5\n260,442,7.0\n260,443,7.5\n260,444,8.0\n260,445,8.5\n260,446,9.0\n260,447,9.5\n260,448,10.0\n260,449,10.5\n260,450,9.0\n260,451,8.5\n260,452,8.0\n260,453,7.5\n260,454,7.0\n260,455,6.5\n260,456,6.0\n260,457,5.5\n260,458,5.0\n260,459,4.5\n260,460,4.0\n260,461,4.5\n260,462,5.0\n260,463,5.5\n260,464,6.0\n260,465,6.5\n260,466,7.0\n260,467,7.5\n260,468,8.0\n260,469,8.5\n260,470,9.0\n260,471,9.5\n260,472,10.0\n260,473,10.5\n260,474,11.0\n260,475,9.5\n260,476,9.0\n260,477,8.5\n260,478,8.0\n260,479,7.5\n260,480,7.0\n260,481,6.5\n260,482,6.0\n260,483,5.5\n260,484,5.0\n260,485,4.5\n260,486,5.0\n260,487,5.5\n260,488,6.0\n260,489,6.5\n260,490,7.0\n260,491,7.5\n260,492,8.0\n260,493,8.5\n260,494,9.0\n260,495,9.5\n260,496,10.0\n260,497,10.5\n260,498,11.0\n260,499,11.5\n260,500,10.0\n260,501,9.5\n260,502,9.0\n260,503,8.5\n260,504,8.0\n260,505,7.5\n260,506,7.0\n260,507,6.5\n260,508,6.0\n260,509,5.5\n260,510,5.0\n260,511,5.5\n260,512,6.0\n260,513,6.5\n260,514,7.0\n260,515,7.5\n260,516,8.0\n260,517,8.5\n260,518,9.0\n260,519,9.5\n260,520,10.0\n260,521,10.5\n260,522,11.0\n260,523,11.5\n260,524,12.0\n260,525,10.5\n260,526,10.0\n260,527,9.5\n260,528,9.0\n260,529,8.5\n260,530,8.0\n260,531,7.5\n260,532,7.0\n260,533,6.5\n260,534,6.0\n260,535,5.5\n260,536,6.0\n260,537,6.5\n260,538,7.0\n260,539,7.5\n260,540,8.0\n260,541,8.5\n260,542,9.0\n260,543,9.5\n260,544,10.0\n260,545,10.5\n260,546,11.0\n260,547,11.5\n260,548,12.0\n260,549,12.5\n260,550,11.0\n260,551,10.5\n260,552,10.0\n260,553,9.5\n260,554,9.0\n260,555,8.5\n260,556,8.0\n260,557,7.5\n260,558,7.0\n260,559,6.5\n260,560,6.0\n260,561,6.5\n260,562,7.0\n260,563,7.5\n260,564,8.0\n260,565,8.5\n260,566,9.0\n260,567,9.5\n260,568,10.0\n260,569,10.5\n260,570,11.0\n260,571,11.5\n260,572,12.0\n260,573,12.5\n260,574,13.0\n260,575,11.5\n260,576,11.0\n260,577,10.5\n260,578,10.0\n260,579,9.5\n260,580,9.0\n260,581,8.5\n260,582,8.0\n260,583,7.5\n260,584,7.0\n260,585,6.5\n260,586,7.0\n260,587,7.5\n260,588,8.0\n260,589,8.5\n260,590,9.0\n260,591,9.5\n260,592,10.0\n260,593,10.5\n260,594,11.0\n260,595,11.5\n260,596,12.0\n260,597,12.5\n260,598,13.0\n260,599,13.5\n260,600,12.0\n260,601,11.5\n260,602,11.0\n260,603,10.5\n260,604,10.0\n260,605,9.5\n260,606,9.0\n260,607,8.5\n260,608,8.0\n260,609,7.5\n260,610,7.0\n260,611,7.5\n260,612,8.0\n260,613,8.5\n260,614,9.0\n260,615,9.5\n260,616,10.0\n260,617,10.5\n260,618,11.0\n260,619,11.5\n260,620,12.0\n260,621,12.5\n260,622,13.0\n260,623,13.5\n260,624,14.0\n261,0,10.5\n261,1,10.0\n261,2,9.5\n261,3,9.0\n261,4,8.5\n261,5,8.0\n261,6,7.5\n261,7,7.0\n261,8,6.5\n261,9,6.0\n261,10,5.5\n261,11,5.0\n261,12,5.5\n261,13,6.0\n261,14,6.5\n261,15,7.0\n261,16,7.5\n261,17,8.0\n261,18,8.5\n261,19,9.0\n261,20,9.5\n261,21,10.0\n261,22,10.5\n261,23,11.0\n261,24,11.5\n261,25,10.0\n261,26,9.5\n261,27,9.0\n261,28,8.5\n261,29,8.0\n261,30,7.5\n261,31,7.0\n261,32,6.5\n261,33,6.0\n261,34,5.5\n261,35,5.0\n261,36,4.5\n261,37,5.0\n261,38,5.5\n261,39,6.0\n261,40,6.5\n261,41,7.0\n261,42,7.5\n261,43,8.0\n261,44,8.5\n261,45,9.0\n261,46,9.5\n261,47,10.0\n261,48,10.5\n261,49,11.0\n261,50,9.5\n261,51,9.0\n261,52,8.5\n261,53,8.0\n261,54,7.5\n261,55,7.0\n261,56,6.5\n261,57,6.0\n261,58,5.5\n261,59,5.0\n261,60,4.5\n261,61,4.0\n261,62,4.5\n261,63,5.0\n261,64,5.5\n261,65,6.0\n261,66,6.5\n261,67,7.0\n261,68,7.5\n261,69,8.0\n261,70,8.5\n261,71,9.0\n261,72,9.5\n261,73,10.0\n261,74,10.5\n261,75,9.0\n261,76,8.5\n261,77,8.0\n261,78,7.5\n261,79,7.0\n261,80,6.5\n261,81,6.0\n261,82,5.5\n261,83,5.0\n261,84,4.5\n261,85,4.0\n261,86,3.5\n261,87,4.0\n261,88,4.5\n261,89,5.0\n261,90,5.5\n261,91,6.0\n261,92,6.5\n261,93,7.0\n261,94,7.5\n261,95,8.0\n261,96,8.5\n261,97,9.0\n261,98,9.5\n261,99,10.0\n261,100,8.5\n261,101,8.0\n261,102,7.5\n261,103,7.0\n261,104,6.5\n261,105,6.0\n261,106,5.5\n261,107,5.0\n261,108,4.5\n261,109,4.0\n261,110,3.5\n261,111,3.0\n261,112,3.5\n261,113,4.0\n261,114,4.5\n261,115,5.0\n261,116,5.5\n261,117,6.0\n261,118,6.5\n261,119,7.0\n261,120,7.5\n261,121,8.0\n261,122,8.5\n261,123,9.0\n261,124,9.5\n261,125,8.0\n261,126,7.5\n261,127,7.0\n261,128,6.5\n261,129,6.0\n261,130,5.5\n261,131,5.0\n261,132,4.5\n261,133,4.0\n261,134,3.5\n261,135,3.0\n261,136,2.5\n261,137,3.0\n261,138,3.5\n261,139,4.0\n261,140,4.5\n261,141,5.0\n261,142,5.5\n261,143,6.0\n261,144,6.5\n261,145,7.0\n261,146,7.5\n261,147,8.0\n261,148,8.5\n261,149,9.0\n261,150,7.5\n261,151,7.0\n261,152,6.5\n261,153,6.0\n261,154,5.5\n261,155,5.0\n261,156,4.5\n261,157,4.0\n261,158,3.5\n261,159,3.0\n261,160,2.5\n261,161,2.0\n261,162,2.5\n261,163,3.0\n261,164,3.5\n261,165,4.0\n261,166,4.5\n261,167,5.0\n261,168,5.5\n261,169,6.0\n261,170,6.5\n261,171,7.0\n261,172,7.5\n261,173,8.0\n261,174,8.5\n261,175,7.0\n261,176,6.5\n261,177,6.0\n261,178,5.5\n261,179,5.0\n261,180,4.5\n261,181,4.0\n261,182,3.5\n261,183,3.0\n261,184,2.5\n261,185,2.0\n261,186,1.5\n261,187,2.0\n261,188,2.5\n261,189,3.0\n261,190,3.5\n261,191,4.0\n261,192,4.5\n261,193,5.0\n261,194,5.5\n261,195,6.0\n261,196,6.5\n261,197,7.0\n261,198,7.5\n261,199,8.0\n261,200,6.5\n261,201,6.0\n261,202,5.5\n261,203,5.0\n261,204,4.5\n261,205,4.0\n261,206,3.5\n261,207,3.0\n261,208,2.5\n261,209,2.0\n261,210,1.5\n261,211,1.0\n261,212,1.5\n261,213,2.0\n261,214,2.5\n261,215,3.0\n261,216,3.5\n261,217,4.0\n261,218,4.5\n261,219,5.0\n261,220,5.5\n261,221,6.0\n261,222,6.5\n261,223,7.0\n261,224,7.5\n261,225,6.0\n261,226,5.5\n261,227,5.0\n261,228,4.5\n261,229,4.0\n261,230,3.5\n261,231,3.0\n261,232,2.5\n261,233,2.0\n261,234,1.5\n261,235,1.0\n261,236,0.5\n261,237,1.0\n261,238,1.5\n261,239,2.0\n261,240,2.5\n261,241,3.0\n261,242,3.5\n261,243,4.0\n261,244,4.5\n261,245,5.0\n261,246,5.5\n261,247,6.0\n261,248,6.5\n261,249,7.0\n261,250,5.5\n261,251,5.0\n261,252,4.5\n261,253,4.0\n261,254,3.5\n261,255,3.0\n261,256,2.5\n261,257,2.0\n261,258,1.5\n261,259,1.0\n261,260,0.5\n261,261,0\n261,262,0.5\n261,263,1.0\n261,264,1.5\n261,265,2.0\n261,266,2.5\n261,267,3.0\n261,268,3.5\n261,269,4.0\n261,270,4.5\n261,271,5.0\n261,272,5.5\n261,273,6.0\n261,274,6.5\n261,275,6.0\n261,276,5.5\n261,277,5.0\n261,278,4.5\n261,279,4.0\n261,280,3.5\n261,281,3.0\n261,282,2.5\n261,283,2.0\n261,284,1.5\n261,285,1.0\n261,286,0.5\n261,287,1.0\n261,288,1.5\n261,289,2.0\n261,290,2.5\n261,291,3.0\n261,292,3.5\n261,293,4.0\n261,294,4.5\n261,295,5.0\n261,296,5.5\n261,297,6.0\n261,298,6.5\n261,299,7.0\n261,300,6.5\n261,301,6.0\n261,302,5.5\n261,303,5.0\n261,304,4.5\n261,305,4.0\n261,306,3.5\n261,307,3.0\n261,308,2.5\n261,309,2.0\n261,310,1.5\n261,311,1.0\n261,312,1.5\n261,313,2.0\n261,314,2.5\n261,315,3.0\n261,316,3.5\n261,317,4.0\n261,318,4.5\n261,319,5.0\n261,320,5.5\n261,321,6.0\n261,322,6.5\n261,323,7.0\n261,324,7.5\n261,325,7.0\n261,326,6.5\n261,327,6.0\n261,328,5.5\n261,329,5.0\n261,330,4.5\n261,331,4.0\n261,332,3.5\n261,333,3.0\n261,334,2.5\n261,335,2.0\n261,336,1.5\n261,337,2.0\n261,338,2.5\n261,339,3.0\n261,340,3.5\n261,341,4.0\n261,342,4.5\n261,343,5.0\n261,344,5.5\n261,345,6.0\n261,346,6.5\n261,347,7.0\n261,348,7.5\n261,349,8.0\n261,350,7.5\n261,351,7.0\n261,352,6.5\n261,353,6.0\n261,354,5.5\n261,355,5.0\n261,356,4.5\n261,357,4.0\n261,358,3.5\n261,359,3.0\n261,360,2.5\n261,361,2.0\n261,362,2.5\n261,363,3.0\n261,364,3.5\n261,365,4.0\n261,366,4.5\n261,367,5.0\n261,368,5.5\n261,369,6.0\n261,370,6.5\n261,371,7.0\n261,372,7.5\n261,373,8.0\n261,374,8.5\n261,375,8.0\n261,376,7.5\n261,377,7.0\n261,378,6.5\n261,379,6.0\n261,380,5.5\n261,381,5.0\n261,382,4.5\n261,383,4.0\n261,384,3.5\n261,385,3.0\n261,386,2.5\n261,387,3.0\n261,388,3.5\n261,389,4.0\n261,390,4.5\n261,391,5.0\n261,392,5.5\n261,393,6.0\n261,394,6.5\n261,395,7.0\n261,396,7.5\n261,397,8.0\n261,398,8.5\n261,399,9.0\n261,400,8.5\n261,401,8.0\n261,402,7.5\n261,403,7.0\n261,404,6.5\n261,405,6.0\n261,406,5.5\n261,407,5.0\n261,408,4.5\n261,409,4.0\n261,410,3.5\n261,411,3.0\n261,412,3.5\n261,413,4.0\n261,414,4.5\n261,415,5.0\n261,416,5.5\n261,417,6.0\n261,418,6.5\n261,419,7.0\n261,420,7.5\n261,421,8.0\n261,422,8.5\n261,423,9.0\n261,424,9.5\n261,425,9.0\n261,426,8.5\n261,427,8.0\n261,428,7.5\n261,429,7.0\n261,430,6.5\n261,431,6.0\n261,432,5.5\n261,433,5.0\n261,434,4.5\n261,435,4.0\n261,436,3.5\n261,437,4.0\n261,438,4.5\n261,439,5.0\n261,440,5.5\n261,441,6.0\n261,442,6.5\n261,443,7.0\n261,444,7.5\n261,445,8.0\n261,446,8.5\n261,447,9.0\n261,448,9.5\n261,449,10.0\n261,450,9.5\n261,451,9.0\n261,452,8.5\n261,453,8.0\n261,454,7.5\n261,455,7.0\n261,456,6.5\n261,457,6.0\n261,458,5.5\n261,459,5.0\n261,460,4.5\n261,461,4.0\n261,462,4.5\n261,463,5.0\n261,464,5.5\n261,465,6.0\n261,466,6.5\n261,467,7.0\n261,468,7.5\n261,469,8.0\n261,470,8.5\n261,471,9.0\n261,472,9.5\n261,473,10.0\n261,474,10.5\n261,475,10.0\n261,476,9.5\n261,477,9.0\n261,478,8.5\n261,479,8.0\n261,480,7.5\n261,481,7.0\n261,482,6.5\n261,483,6.0\n261,484,5.5\n261,485,5.0\n261,486,4.5\n261,487,5.0\n261,488,5.5\n261,489,6.0\n261,490,6.5\n261,491,7.0\n261,492,7.5\n261,493,8.0\n261,494,8.5\n261,495,9.0\n261,496,9.5\n261,497,10.0\n261,498,10.5\n261,499,11.0\n261,500,10.5\n261,501,10.0\n261,502,9.5\n261,503,9.0\n261,504,8.5\n261,505,8.0\n261,506,7.5\n261,507,7.0\n261,508,6.5\n261,509,6.0\n261,510,5.5\n261,511,5.0\n261,512,5.5\n261,513,6.0\n261,514,6.5\n261,515,7.0\n261,516,7.5\n261,517,8.0\n261,518,8.5\n261,519,9.0\n261,520,9.5\n261,521,10.0\n261,522,10.5\n261,523,11.0\n261,524,11.5\n261,525,11.0\n261,526,10.5\n261,527,10.0\n261,528,9.5\n261,529,9.0\n261,530,8.5\n261,531,8.0\n261,532,7.5\n261,533,7.0\n261,534,6.5\n261,535,6.0\n261,536,5.5\n261,537,6.0\n261,538,6.5\n261,539,7.0\n261,540,7.5\n261,541,8.0\n261,542,8.5\n261,543,9.0\n261,544,9.5\n261,545,10.0\n261,546,10.5\n261,547,11.0\n261,548,11.5\n261,549,12.0\n261,550,11.5\n261,551,11.0\n261,552,10.5\n261,553,10.0\n261,554,9.5\n261,555,9.0\n261,556,8.5\n261,557,8.0\n261,558,7.5\n261,559,7.0\n261,560,6.5\n261,561,6.0\n261,562,6.5\n261,563,7.0\n261,564,7.5\n261,565,8.0\n261,566,8.5\n261,567,9.0\n261,568,9.5\n261,569,10.0\n261,570,10.5\n261,571,11.0\n261,572,11.5\n261,573,12.0\n261,574,12.5\n261,575,12.0\n261,576,11.5\n261,577,11.0\n261,578,10.5\n261,579,10.0\n261,580,9.5\n261,581,9.0\n261,582,8.5\n261,583,8.0\n261,584,7.5\n261,585,7.0\n261,586,6.5\n261,587,7.0\n261,588,7.5\n261,589,8.0\n261,590,8.5\n261,591,9.0\n261,592,9.5\n261,593,10.0\n261,594,10.5\n261,595,11.0\n261,596,11.5\n261,597,12.0\n261,598,12.5\n261,599,13.0\n261,600,12.5\n261,601,12.0\n261,602,11.5\n261,603,11.0\n261,604,10.5\n261,605,10.0\n261,606,9.5\n261,607,9.0\n261,608,8.5\n261,609,8.0\n261,610,7.5\n261,611,7.0\n261,612,7.5\n261,613,8.0\n261,614,8.5\n261,615,9.0\n261,616,9.5\n261,617,10.0\n261,618,10.5\n261,619,11.0\n261,620,11.5\n261,621,12.0\n261,622,12.5\n261,623,13.0\n261,624,13.5\n262,0,11.0\n262,1,10.5\n262,2,10.0\n262,3,9.5\n262,4,9.0\n262,5,8.5\n262,6,8.0\n262,7,7.5\n262,8,7.0\n262,9,6.5\n262,10,6.0\n262,11,5.5\n262,12,5.0\n262,13,5.5\n262,14,6.0\n262,15,6.5\n262,16,7.0\n262,17,7.5\n262,18,8.0\n262,19,8.5\n262,20,9.0\n262,21,9.5\n262,22,10.0\n262,23,10.5\n262,24,11.0\n262,25,10.5\n262,26,10.0\n262,27,9.5\n262,28,9.0\n262,29,8.5\n262,30,8.0\n262,31,7.5\n262,32,7.0\n262,33,6.5\n262,34,6.0\n262,35,5.5\n262,36,5.0\n262,37,4.5\n262,38,5.0\n262,39,5.5\n262,40,6.0\n262,41,6.5\n262,42,7.0\n262,43,7.5\n262,44,8.0\n262,45,8.5\n262,46,9.0\n262,47,9.5\n262,48,10.0\n262,49,10.5\n262,50,10.0\n262,51,9.5\n262,52,9.0\n262,53,8.5\n262,54,8.0\n262,55,7.5\n262,56,7.0\n262,57,6.5\n262,58,6.0\n262,59,5.5\n262,60,5.0\n262,61,4.5\n262,62,4.0\n262,63,4.5\n262,64,5.0\n262,65,5.5\n262,66,6.0\n262,67,6.5\n262,68,7.0\n262,69,7.5\n262,70,8.0\n262,71,8.5\n262,72,9.0\n262,73,9.5\n262,74,10.0\n262,75,9.5\n262,76,9.0\n262,77,8.5\n262,78,8.0\n262,79,7.5\n262,80,7.0\n262,81,6.5\n262,82,6.0\n262,83,5.5\n262,84,5.0\n262,85,4.5\n262,86,4.0\n262,87,3.5\n262,88,4.0\n262,89,4.5\n262,90,5.0\n262,91,5.5\n262,92,6.0\n262,93,6.5\n262,94,7.0\n262,95,7.5\n262,96,8.0\n262,97,8.5\n262,98,9.0\n262,99,9.5\n262,100,9.0\n262,101,8.5\n262,102,8.0\n262,103,7.5\n262,104,7.0\n262,105,6.5\n262,106,6.0\n262,107,5.5\n262,108,5.0\n262,109,4.5\n262,110,4.0\n262,111,3.5\n262,112,3.0\n262,113,3.5\n262,114,4.0\n262,115,4.5\n262,116,5.0\n262,117,5.5\n262,118,6.0\n262,119,6.5\n262,120,7.0\n262,121,7.5\n262,122,8.0\n262,123,8.5\n262,124,9.0\n262,125,8.5\n262,126,8.0\n262,127,7.5\n262,128,7.0\n262,129,6.5\n262,130,6.0\n262,131,5.5\n262,132,5.0\n262,133,4.5\n262,134,4.0\n262,135,3.5\n262,136,3.0\n262,137,2.5\n262,138,3.0\n262,139,3.5\n262,140,4.0\n262,141,4.5\n262,142,5.0\n262,143,5.5\n262,144,6.0\n262,145,6.5\n262,146,7.0\n262,147,7.5\n262,148,8.0\n262,149,8.5\n262,150,8.0\n262,151,7.5\n262,152,7.0\n262,153,6.5\n262,154,6.0\n262,155,5.5\n262,156,5.0\n262,157,4.5\n262,158,4.0\n262,159,3.5\n262,160,3.0\n262,161,2.5\n262,162,2.0\n262,163,2.5\n262,164,3.0\n262,165,3.5\n262,166,4.0\n262,167,4.5\n262,168,5.0\n262,169,5.5\n262,170,6.0\n262,171,6.5\n262,172,7.0\n262,173,7.5\n262,174,8.0\n262,175,7.5\n262,176,7.0\n262,177,6.5\n262,178,6.0\n262,179,5.5\n262,180,5.0\n262,181,4.5\n262,182,4.0\n262,183,3.5\n262,184,3.0\n262,185,2.5\n262,186,2.0\n262,187,1.5\n262,188,2.0\n262,189,2.5\n262,190,3.0\n262,191,3.5\n262,192,4.0\n262,193,4.5\n262,194,5.0\n262,195,5.5\n262,196,6.0\n262,197,6.5\n262,198,7.0\n262,199,7.5\n262,200,7.0\n262,201,6.5\n262,202,6.0\n262,203,5.5\n262,204,5.0\n262,205,4.5\n262,206,4.0\n262,207,3.5\n262,208,3.0\n262,209,2.5\n262,210,2.0\n262,211,1.5\n262,212,1.0\n262,213,1.5\n262,214,2.0\n262,215,2.5\n262,216,3.0\n262,217,3.5\n262,218,4.0\n262,219,4.5\n262,220,5.0\n262,221,5.5\n262,222,6.0\n262,223,6.5\n262,224,7.0\n262,225,6.5\n262,226,6.0\n262,227,5.5\n262,228,5.0\n262,229,4.5\n262,230,4.0\n262,231,3.5\n262,232,3.0\n262,233,2.5\n262,234,2.0\n262,235,1.5\n262,236,1.0\n262,237,0.5\n262,238,1.0\n262,239,1.5\n262,240,2.0\n262,241,2.5\n262,242,3.0\n262,243,3.5\n262,244,4.0\n262,245,4.5\n262,246,5.0\n262,247,5.5\n262,248,6.0\n262,249,6.5\n262,250,6.0\n262,251,5.5\n262,252,5.0\n262,253,4.5\n262,254,4.0\n262,255,3.5\n262,256,3.0\n262,257,2.5\n262,258,2.0\n262,259,1.5\n262,260,1.0\n262,261,0.5\n262,262,0\n262,263,0.5\n262,264,1.0\n262,265,1.5\n262,266,2.0\n262,267,2.5\n262,268,3.0\n262,269,3.5\n262,270,4.0\n262,271,4.5\n262,272,5.0\n262,273,5.5\n262,274,6.0\n262,275,6.5\n262,276,6.0\n262,277,5.5\n262,278,5.0\n262,279,4.5\n262,280,4.0\n262,281,3.5\n262,282,3.0\n262,283,2.5\n262,284,2.0\n262,285,1.5\n262,286,1.0\n262,287,0.5\n262,288,1.0\n262,289,1.5\n262,290,2.0\n262,291,2.5\n262,292,3.0\n262,293,3.5\n262,294,4.0\n262,295,4.5\n262,296,5.0\n262,297,5.5\n262,298,6.0\n262,299,6.5\n262,300,7.0\n262,301,6.5\n262,302,6.0\n262,303,5.5\n262,304,5.0\n262,305,4.5\n262,306,4.0\n262,307,3.5\n262,308,3.0\n262,309,2.5\n262,310,2.0\n262,311,1.5\n262,312,1.0\n262,313,1.5\n262,314,2.0\n262,315,2.5\n262,316,3.0\n262,317,3.5\n262,318,4.0\n262,319,4.5\n262,320,5.0\n262,321,5.5\n262,322,6.0\n262,323,6.5\n262,324,7.0\n262,325,7.5\n262,326,7.0\n262,327,6.5\n262,328,6.0\n262,329,5.5\n262,330,5.0\n262,331,4.5\n262,332,4.0\n262,333,3.5\n262,334,3.0\n262,335,2.5\n262,336,2.0\n262,337,1.5\n262,338,2.0\n262,339,2.5\n262,340,3.0\n262,341,3.5\n262,342,4.0\n262,343,4.5\n262,344,5.0\n262,345,5.5\n262,346,6.0\n262,347,6.5\n262,348,7.0\n262,349,7.5\n262,350,8.0\n262,351,7.5\n262,352,7.0\n262,353,6.5\n262,354,6.0\n262,355,5.5\n262,356,5.0\n262,357,4.5\n262,358,4.0\n262,359,3.5\n262,360,3.0\n262,361,2.5\n262,362,2.0\n262,363,2.5\n262,364,3.0\n262,365,3.5\n262,366,4.0\n262,367,4.5\n262,368,5.0\n262,369,5.5\n262,370,6.0\n262,371,6.5\n262,372,7.0\n262,373,7.5\n262,374,8.0\n262,375,8.5\n262,376,8.0\n262,377,7.5\n262,378,7.0\n262,379,6.5\n262,380,6.0\n262,381,5.5\n262,382,5.0\n262,383,4.5\n262,384,4.0\n262,385,3.5\n262,386,3.0\n262,387,2.5\n262,388,3.0\n262,389,3.5\n262,390,4.0\n262,391,4.5\n262,392,5.0\n262,393,5.5\n262,394,6.0\n262,395,6.5\n262,396,7.0\n262,397,7.5\n262,398,8.0\n262,399,8.5\n262,400,9.0\n262,401,8.5\n262,402,8.0\n262,403,7.5\n262,404,7.0\n262,405,6.5\n262,406,6.0\n262,407,5.5\n262,408,5.0\n262,409,4.5\n262,410,4.0\n262,411,3.5\n262,412,3.0\n262,413,3.5\n262,414,4.0\n262,415,4.5\n262,416,5.0\n262,417,5.5\n262,418,6.0\n262,419,6.5\n262,420,7.0\n262,421,7.5\n262,422,8.0\n262,423,8.5\n262,424,9.0\n262,425,9.5\n262,426,9.0\n262,427,8.5\n262,428,8.0\n262,429,7.5\n262,430,7.0\n262,431,6.5\n262,432,6.0\n262,433,5.5\n262,434,5.0\n262,435,4.5\n262,436,4.0\n262,437,3.5\n262,438,4.0\n262,439,4.5\n262,440,5.0\n262,441,5.5\n262,442,6.0\n262,443,6.5\n262,444,7.0\n262,445,7.5\n262,446,8.0\n262,447,8.5\n262,448,9.0\n262,449,9.5\n262,450,10.0\n262,451,9.5\n262,452,9.0\n262,453,8.5\n262,454,8.0\n262,455,7.5\n262,456,7.0\n262,457,6.5\n262,458,6.0\n262,459,5.5\n262,460,5.0\n262,461,4.5\n262,462,4.0\n262,463,4.5\n262,464,5.0\n262,465,5.5\n262,466,6.0\n262,467,6.5\n262,468,7.0\n262,469,7.5\n262,470,8.0\n262,471,8.5\n262,472,9.0\n262,473,9.5\n262,474,10.0\n262,475,10.5\n262,476,10.0\n262,477,9.5\n262,478,9.0\n262,479,8.5\n262,480,8.0\n262,481,7.5\n262,482,7.0\n262,483,6.5\n262,484,6.0\n262,485,5.5\n262,486,5.0\n262,487,4.5\n262,488,5.0\n262,489,5.5\n262,490,6.0\n262,491,6.5\n262,492,7.0\n262,493,7.5\n262,494,8.0\n262,495,8.5\n262,496,9.0\n262,497,9.5\n262,498,10.0\n262,499,10.5\n262,500,11.0\n262,501,10.5\n262,502,10.0\n262,503,9.5\n262,504,9.0\n262,505,8.5\n262,506,8.0\n262,507,7.5\n262,508,7.0\n262,509,6.5\n262,510,6.0\n262,511,5.5\n262,512,5.0\n262,513,5.5\n262,514,6.0\n262,515,6.5\n262,516,7.0\n262,517,7.5\n262,518,8.0\n262,519,8.5\n262,520,9.0\n262,521,9.5\n262,522,10.0\n262,523,10.5\n262,524,11.0\n262,525,11.5\n262,526,11.0\n262,527,10.5\n262,528,10.0\n262,529,9.5\n262,530,9.0\n262,531,8.5\n262,532,8.0\n262,533,7.5\n262,534,7.0\n262,535,6.5\n262,536,6.0\n262,537,5.5\n262,538,6.0\n262,539,6.5\n262,540,7.0\n262,541,7.5\n262,542,8.0\n262,543,8.5\n262,544,9.0\n262,545,9.5\n262,546,10.0\n262,547,10.5\n262,548,11.0\n262,549,11.5\n262,550,12.0\n262,551,11.5\n262,552,11.0\n262,553,10.5\n262,554,10.0\n262,555,9.5\n262,556,9.0\n262,557,8.5\n262,558,8.0\n262,559,7.5\n262,560,7.0\n262,561,6.5\n262,562,6.0\n262,563,6.5\n262,564,7.0\n262,565,7.5\n262,566,8.0\n262,567,8.5\n262,568,9.0\n262,569,9.5\n262,570,10.0\n262,571,10.5\n262,572,11.0\n262,573,11.5\n262,574,12.0\n262,575,12.5\n262,576,12.0\n262,577,11.5\n262,578,11.0\n262,579,10.5\n262,580,10.0\n262,581,9.5\n262,582,9.0\n262,583,8.5\n262,584,8.0\n262,585,7.5\n262,586,7.0\n262,587,6.5\n262,588,7.0\n262,589,7.5\n262,590,8.0\n262,591,8.5\n262,592,9.0\n262,593,9.5\n262,594,10.0\n262,595,10.5\n262,596,11.0\n262,597,11.5\n262,598,12.0\n262,599,12.5\n262,600,13.0\n262,601,12.5\n262,602,12.0\n262,603,11.5\n262,604,11.0\n262,605,10.5\n262,606,10.0\n262,607,9.5\n262,608,9.0\n262,609,8.5\n262,610,8.0\n262,611,7.5\n262,612,7.0\n262,613,7.5\n262,614,8.0\n262,615,8.5\n262,616,9.0\n262,617,9.5\n262,618,10.0\n262,619,10.5\n262,620,11.0\n262,621,11.5\n262,622,12.0\n262,623,12.5\n262,624,13.0\n263,0,11.5\n263,1,11.0\n263,2,10.5\n263,3,10.0\n263,4,9.5\n263,5,9.0\n263,6,8.5\n263,7,8.0\n263,8,7.5\n263,9,7.0\n263,10,6.5\n263,11,6.0\n263,12,5.5\n263,13,5.0\n263,14,5.5\n263,15,6.0\n263,16,6.5\n263,17,7.0\n263,18,7.5\n263,19,8.0\n263,20,8.5\n263,21,9.0\n263,22,9.5\n263,23,10.0\n263,24,10.5\n263,25,11.0\n263,26,10.5\n263,27,10.0\n263,28,9.5\n263,29,9.0\n263,30,8.5\n263,31,8.0\n263,32,7.5\n263,33,7.0\n263,34,6.5\n263,35,6.0\n263,36,5.5\n263,37,5.0\n263,38,4.5\n263,39,5.0\n263,40,5.5\n263,41,6.0\n263,42,6.5\n263,43,7.0\n263,44,7.5\n263,45,8.0\n263,46,8.5\n263,47,9.0\n263,48,9.5\n263,49,10.0\n263,50,10.5\n263,51,10.0\n263,52,9.5\n263,53,9.0\n263,54,8.5\n263,55,8.0\n263,56,7.5\n263,57,7.0\n263,58,6.5\n263,59,6.0\n263,60,5.5\n263,61,5.0\n263,62,4.5\n263,63,4.0\n263,64,4.5\n263,65,5.0\n263,66,5.5\n263,67,6.0\n263,68,6.5\n263,69,7.0\n263,70,7.5\n263,71,8.0\n263,72,8.5\n263,73,9.0\n263,74,9.5\n263,75,10.0\n263,76,9.5\n263,77,9.0\n263,78,8.5\n263,79,8.0\n263,80,7.5\n263,81,7.0\n263,82,6.5\n263,83,6.0\n263,84,5.5\n263,85,5.0\n263,86,4.5\n263,87,4.0\n263,88,3.5\n263,89,4.0\n263,90,4.5\n263,91,5.0\n263,92,5.5\n263,93,6.0\n263,94,6.5\n263,95,7.0\n263,96,7.5\n263,97,8.0\n263,98,8.5\n263,99,9.0\n263,100,9.5\n263,101,9.0\n263,102,8.5\n263,103,8.0\n263,104,7.5\n263,105,7.0\n263,106,6.5\n263,107,6.0\n263,108,5.5\n263,109,5.0\n263,110,4.5\n263,111,4.0\n263,112,3.5\n263,113,3.0\n263,114,3.5\n263,115,4.0\n263,116,4.5\n263,117,5.0\n263,118,5.5\n263,119,6.0\n263,120,6.5\n263,121,7.0\n263,122,7.5\n263,123,8.0\n263,124,8.5\n263,125,9.0\n263,126,8.5\n263,127,8.0\n263,128,7.5\n263,129,7.0\n263,130,6.5\n263,131,6.0\n263,132,5.5\n263,133,5.0\n263,134,4.5\n263,135,4.0\n263,136,3.5\n263,137,3.0\n263,138,2.5\n263,139,3.0\n263,140,3.5\n263,141,4.0\n263,142,4.5\n263,143,5.0\n263,144,5.5\n263,145,6.0\n263,146,6.5\n263,147,7.0\n263,148,7.5\n263,149,8.0\n263,150,8.5\n263,151,8.0\n263,152,7.5\n263,153,7.0\n263,154,6.5\n263,155,6.0\n263,156,5.5\n263,157,5.0\n263,158,4.5\n263,159,4.0\n263,160,3.5\n263,161,3.0\n263,162,2.5\n263,163,2.0\n263,164,2.5\n263,165,3.0\n263,166,3.5\n263,167,4.0\n263,168,4.5\n263,169,5.0\n263,170,5.5\n263,171,6.0\n263,172,6.5\n263,173,7.0\n263,174,7.5\n263,175,8.0\n263,176,7.5\n263,177,7.0\n263,178,6.5\n263,179,6.0\n263,180,5.5\n263,181,5.0\n263,182,4.5\n263,183,4.0\n263,184,3.5\n263,185,3.0\n263,186,2.5\n263,187,2.0\n263,188,1.5\n263,189,2.0\n263,190,2.5\n263,191,3.0\n263,192,3.5\n263,193,4.0\n263,194,4.5\n263,195,5.0\n263,196,5.5\n263,197,6.0\n263,198,6.5\n263,199,7.0\n263,200,7.5\n263,201,7.0\n263,202,6.5\n263,203,6.0\n263,204,5.5\n263,205,5.0\n263,206,4.5\n263,207,4.0\n263,208,3.5\n263,209,3.0\n263,210,2.5\n263,211,2.0\n263,212,1.5\n263,213,1.0\n263,214,1.5\n263,215,2.0\n263,216,2.5\n263,217,3.0\n263,218,3.5\n263,219,4.0\n263,220,4.5\n263,221,5.0\n263,222,5.5\n263,223,6.0\n263,224,6.5\n263,225,7.0\n263,226,6.5\n263,227,6.0\n263,228,5.5\n263,229,5.0\n263,230,4.5\n263,231,4.0\n263,232,3.5\n263,233,3.0\n263,234,2.5\n263,235,2.0\n263,236,1.5\n263,237,1.0\n263,238,0.5\n263,239,1.0\n263,240,1.5\n263,241,2.0\n263,242,2.5\n263,243,3.0\n263,244,3.5\n263,245,4.0\n263,246,4.5\n263,247,5.0\n263,248,5.5\n263,249,6.0\n263,250,6.5\n263,251,6.0\n263,252,5.5\n263,253,5.0\n263,254,4.5\n263,255,4.0\n263,256,3.5\n263,257,3.0\n263,258,2.5\n263,259,2.0\n263,260,1.5\n263,261,1.0\n263,262,0.5\n263,263,0\n263,264,0.5\n263,265,1.0\n263,266,1.5\n263,267,2.0\n263,268,2.5\n263,269,3.0\n263,270,3.5\n263,271,4.0\n263,272,4.5\n263,273,5.0\n263,274,5.5\n263,275,7.0\n263,276,6.5\n263,277,6.0\n263,278,5.5\n263,279,5.0\n263,280,4.5\n263,281,4.0\n263,282,3.5\n263,283,3.0\n263,284,2.5\n263,285,2.0\n263,286,1.5\n263,287,1.0\n263,288,0.5\n263,289,1.0\n263,290,1.5\n263,291,2.0\n263,292,2.5\n263,293,3.0\n263,294,3.5\n263,295,4.0\n263,296,4.5\n263,297,5.0\n263,298,5.5\n263,299,6.0\n263,300,7.5\n263,301,7.0\n263,302,6.5\n263,303,6.0\n263,304,5.5\n263,305,5.0\n263,306,4.5\n263,307,4.0\n263,308,3.5\n263,309,3.0\n263,310,2.5\n263,311,2.0\n263,312,1.5\n263,313,1.0\n263,314,1.5\n263,315,2.0\n263,316,2.5\n263,317,3.0\n263,318,3.5\n263,319,4.0\n263,320,4.5\n263,321,5.0\n263,322,5.5\n263,323,6.0\n263,324,6.5\n263,325,8.0\n263,326,7.5\n263,327,7.0\n263,328,6.5\n263,329,6.0\n263,330,5.5\n263,331,5.0\n263,332,4.5\n263,333,4.0\n263,334,3.5\n263,335,3.0\n263,336,2.5\n263,337,2.0\n263,338,1.5\n263,339,2.0\n263,340,2.5\n263,341,3.0\n263,342,3.5\n263,343,4.0\n263,344,4.5\n263,345,5.0\n263,346,5.5\n263,347,6.0\n263,348,6.5\n263,349,7.0\n263,350,8.5\n263,351,8.0\n263,352,7.5\n263,353,7.0\n263,354,6.5\n263,355,6.0\n263,356,5.5\n263,357,5.0\n263,358,4.5\n263,359,4.0\n263,360,3.5\n263,361,3.0\n263,362,2.5\n263,363,2.0\n263,364,2.5\n263,365,3.0\n263,366,3.5\n263,367,4.0\n263,368,4.5\n263,369,5.0\n263,370,5.5\n263,371,6.0\n263,372,6.5\n263,373,7.0\n263,374,7.5\n263,375,9.0\n263,376,8.5\n263,377,8.0\n263,378,7.5\n263,379,7.0\n263,380,6.5\n263,381,6.0\n263,382,5.5\n263,383,5.0\n263,384,4.5\n263,385,4.0\n263,386,3.5\n263,387,3.0\n263,388,2.5\n263,389,3.0\n263,390,3.5\n263,391,4.0\n263,392,4.5\n263,393,5.0\n263,394,5.5\n263,395,6.0\n263,396,6.5\n263,397,7.0\n263,398,7.5\n263,399,8.0\n263,400,9.5\n263,401,9.0\n263,402,8.5\n263,403,8.0\n263,404,7.5\n263,405,7.0\n263,406,6.5\n263,407,6.0\n263,408,5.5\n263,409,5.0\n263,410,4.5\n263,411,4.0\n263,412,3.5\n263,413,3.0\n263,414,3.5\n263,415,4.0\n263,416,4.5\n263,417,5.0\n263,418,5.5\n263,419,6.0\n263,420,6.5\n263,421,7.0\n263,422,7.5\n263,423,8.0\n263,424,8.5\n263,425,10.0\n263,426,9.5\n263,427,9.0\n263,428,8.5\n263,429,8.0\n263,430,7.5\n263,431,7.0\n263,432,6.5\n263,433,6.0\n263,434,5.5\n263,435,5.0\n263,436,4.5\n263,437,4.0\n263,438,3.5\n263,439,4.0\n263,440,4.5\n263,441,5.0\n263,442,5.5\n263,443,6.0\n263,444,6.5\n263,445,7.0\n263,446,7.5\n263,447,8.0\n263,448,8.5\n263,449,9.0\n263,450,10.5\n263,451,10.0\n263,452,9.5\n263,453,9.0\n263,454,8.5\n263,455,8.0\n263,456,7.5\n263,457,7.0\n263,458,6.5\n263,459,6.0\n263,460,5.5\n263,461,5.0\n263,462,4.5\n263,463,4.0\n263,464,4.5\n263,465,5.0\n263,466,5.5\n263,467,6.0\n263,468,6.5\n263,469,7.0\n263,470,7.5\n263,471,8.0\n263,472,8.5\n263,473,9.0\n263,474,9.5\n263,475,11.0\n263,476,10.5\n263,477,10.0\n263,478,9.5\n263,479,9.0\n263,480,8.5\n263,481,8.0\n263,482,7.5\n263,483,7.0\n263,484,6.5\n263,485,6.0\n263,486,5.5\n263,487,5.0\n263,488,4.5\n263,489,5.0\n263,490,5.5\n263,491,6.0\n263,492,6.5\n263,493,7.0\n263,494,7.5\n263,495,8.0\n263,496,8.5\n263,497,9.0\n263,498,9.5\n263,499,10.0\n263,500,11.5\n263,501,11.0\n263,502,10.5\n263,503,10.0\n263,504,9.5\n263,505,9.0\n263,506,8.5\n263,507,8.0\n263,508,7.5\n263,509,7.0\n263,510,6.5\n263,511,6.0\n263,512,5.5\n263,513,5.0\n263,514,5.5\n263,515,6.0\n263,516,6.5\n263,517,7.0\n263,518,7.5\n263,519,8.0\n263,520,8.5\n263,521,9.0\n263,522,9.5\n263,523,10.0\n263,524,10.5\n263,525,12.0\n263,526,11.5\n263,527,11.0\n263,528,10.5\n263,529,10.0\n263,530,9.5\n263,531,9.0\n263,532,8.5\n263,533,8.0\n263,534,7.5\n263,535,7.0\n263,536,6.5\n263,537,6.0\n263,538,5.5\n263,539,6.0\n263,540,6.5\n263,541,7.0\n263,542,7.5\n263,543,8.0\n263,544,8.5\n263,545,9.0\n263,546,9.5\n263,547,10.0\n263,548,10.5\n263,549,11.0\n263,550,12.5\n263,551,12.0\n263,552,11.5\n263,553,11.0\n263,554,10.5\n263,555,10.0\n263,556,9.5\n263,557,9.0\n263,558,8.5\n263,559,8.0\n263,560,7.5\n263,561,7.0\n263,562,6.5\n263,563,6.0\n263,564,6.5\n263,565,7.0\n263,566,7.5\n263,567,8.0\n263,568,8.5\n263,569,9.0\n263,570,9.5\n263,571,10.0\n263,572,10.5\n263,573,11.0\n263,574,11.5\n263,575,13.0\n263,576,12.5\n263,577,12.0\n263,578,11.5\n263,579,11.0\n263,580,10.5\n263,581,10.0\n263,582,9.5\n263,583,9.0\n263,584,8.5\n263,585,8.0\n263,586,7.5\n263,587,7.0\n263,588,6.5\n263,589,7.0\n263,590,7.5\n263,591,8.0\n263,592,8.5\n263,593,9.0\n263,594,9.5\n263,595,10.0\n263,596,10.5\n263,597,11.0\n263,598,11.5\n263,599,12.0\n263,600,13.5\n263,601,13.0\n263,602,12.5\n263,603,12.0\n263,604,11.5\n263,605,11.0\n263,606,10.5\n263,607,10.0\n263,608,9.5\n263,609,9.0\n263,610,8.5\n263,611,8.0\n263,612,7.5\n263,613,7.0\n263,614,7.5\n263,615,8.0\n263,616,8.5\n263,617,9.0\n263,618,9.5\n263,619,10.0\n263,620,10.5\n263,621,11.0\n263,622,11.5\n263,623,12.0\n263,624,12.5\n264,0,12.0\n264,1,11.5\n264,2,11.0\n264,3,10.5\n264,4,10.0\n264,5,9.5\n264,6,9.0\n264,7,8.5\n264,8,8.0\n264,9,7.5\n264,10,7.0\n264,11,6.5\n264,12,6.0\n264,13,5.5\n264,14,5.0\n264,15,5.5\n264,16,6.0\n264,17,6.5\n264,18,7.0\n264,19,7.5\n264,20,8.0\n264,21,8.5\n264,22,9.0\n264,23,9.5\n264,24,10.0\n264,25,11.5\n264,26,11.0\n264,27,10.5\n264,28,10.0\n264,29,9.5\n264,30,9.0\n264,31,8.5\n264,32,8.0\n264,33,7.5\n264,34,7.0\n264,35,6.5\n264,36,6.0\n264,37,5.5\n264,38,5.0\n264,39,4.5\n264,40,5.0\n264,41,5.5\n264,42,6.0\n264,43,6.5\n264,44,7.0\n264,45,7.5\n264,46,8.0\n264,47,8.5\n264,48,9.0\n264,49,9.5\n264,50,11.0\n264,51,10.5\n264,52,10.0\n264,53,9.5\n264,54,9.0\n264,55,8.5\n264,56,8.0\n264,57,7.5\n264,58,7.0\n264,59,6.5\n264,60,6.0\n264,61,5.5\n264,62,5.0\n264,63,4.5\n264,64,4.0\n264,65,4.5\n264,66,5.0\n264,67,5.5\n264,68,6.0\n264,69,6.5\n264,70,7.0\n264,71,7.5\n264,72,8.0\n264,73,8.5\n264,74,9.0\n264,75,10.5\n264,76,10.0\n264,77,9.5\n264,78,9.0\n264,79,8.5\n264,80,8.0\n264,81,7.5\n264,82,7.0\n264,83,6.5\n264,84,6.0\n264,85,5.5\n264,86,5.0\n264,87,4.5\n264,88,4.0\n264,89,3.5\n264,90,4.0\n264,91,4.5\n264,92,5.0\n264,93,5.5\n264,94,6.0\n264,95,6.5\n264,96,7.0\n264,97,7.5\n264,98,8.0\n264,99,8.5\n264,100,10.0\n264,101,9.5\n264,102,9.0\n264,103,8.5\n264,104,8.0\n264,105,7.5\n264,106,7.0\n264,107,6.5\n264,108,6.0\n264,109,5.5\n264,110,5.0\n264,111,4.5\n264,112,4.0\n264,113,3.5\n264,114,3.0\n264,115,3.5\n264,116,4.0\n264,117,4.5\n264,118,5.0\n264,119,5.5\n264,120,6.0\n264,121,6.5\n264,122,7.0\n264,123,7.5\n264,124,8.0\n264,125,9.5\n264,126,9.0\n264,127,8.5\n264,128,8.0\n264,129,7.5\n264,130,7.0\n264,131,6.5\n264,132,6.0\n264,133,5.5\n264,134,5.0\n264,135,4.5\n264,136,4.0\n264,137,3.5\n264,138,3.0\n264,139,2.5\n264,140,3.0\n264,141,3.5\n264,142,4.0\n264,143,4.5\n264,144,5.0\n264,145,5.5\n264,146,6.0\n264,147,6.5\n264,148,7.0\n264,149,7.5\n264,150,9.0\n264,151,8.5\n264,152,8.0\n264,153,7.5\n264,154,7.0\n264,155,6.5\n264,156,6.0\n264,157,5.5\n264,158,5.0\n264,159,4.5\n264,160,4.0\n264,161,3.5\n264,162,3.0\n264,163,2.5\n264,164,2.0\n264,165,2.5\n264,166,3.0\n264,167,3.5\n264,168,4.0\n264,169,4.5\n264,170,5.0\n264,171,5.5\n264,172,6.0\n264,173,6.5\n264,174,7.0\n264,175,8.5\n264,176,8.0\n264,177,7.5\n264,178,7.0\n264,179,6.5\n264,180,6.0\n264,181,5.5\n264,182,5.0\n264,183,4.5\n264,184,4.0\n264,185,3.5\n264,186,3.0\n264,187,2.5\n264,188,2.0\n264,189,1.5\n264,190,2.0\n264,191,2.5\n264,192,3.0\n264,193,3.5\n264,194,4.0\n264,195,4.5\n264,196,5.0\n264,197,5.5\n264,198,6.0\n264,199,6.5\n264,200,8.0\n264,201,7.5\n264,202,7.0\n264,203,6.5\n264,204,6.0\n264,205,5.5\n264,206,5.0\n264,207,4.5\n264,208,4.0\n264,209,3.5\n264,210,3.0\n264,211,2.5\n264,212,2.0\n264,213,1.5\n264,214,1.0\n264,215,1.5\n264,216,2.0\n264,217,2.5\n264,218,3.0\n264,219,3.5\n264,220,4.0\n264,221,4.5\n264,222,5.0\n264,223,5.5\n264,224,6.0\n264,225,7.5\n264,226,7.0\n264,227,6.5\n264,228,6.0\n264,229,5.5\n264,230,5.0\n264,231,4.5\n264,232,4.0\n264,233,3.5\n264,234,3.0\n264,235,2.5\n264,236,2.0\n264,237,1.5\n264,238,1.0\n264,239,0.5\n264,240,1.0\n264,241,1.5\n264,242,2.0\n264,243,2.5\n264,244,3.0\n264,245,3.5\n264,246,4.0\n264,247,4.5\n264,248,5.0\n264,249,5.5\n264,250,7.0\n264,251,6.5\n264,252,6.0\n264,253,5.5\n264,254,5.0\n264,255,4.5\n264,256,4.0\n264,257,3.5\n264,258,3.0\n264,259,2.5\n264,260,2.0\n264,261,1.5\n264,262,1.0\n264,263,0.5\n264,264,0\n264,265,0.5\n264,266,1.0\n264,267,1.5\n264,268,2.0\n264,269,2.5\n264,270,3.0\n264,271,3.5\n264,272,4.0\n264,273,4.5\n264,274,5.0\n264,275,7.5\n264,276,7.0\n264,277,6.5\n264,278,6.0\n264,279,5.5\n264,280,5.0\n264,281,4.5\n264,282,4.0\n264,283,3.5\n264,284,3.0\n264,285,2.5\n264,286,2.0\n264,287,1.5\n264,288,1.0\n264,289,0.5\n264,290,1.0\n264,291,1.5\n264,292,2.0\n264,293,2.5\n264,294,3.0\n264,295,3.5\n264,296,4.0\n264,297,4.5\n264,298,5.0\n264,299,5.5\n264,300,8.0\n264,301,7.5\n264,302,7.0\n264,303,6.5\n264,304,6.0\n264,305,5.5\n264,306,5.0\n264,307,4.5\n264,308,4.0\n264,309,3.5\n264,310,3.0\n264,311,2.5\n264,312,2.0\n264,313,1.5\n264,314,1.0\n264,315,1.5\n264,316,2.0\n264,317,2.5\n264,318,3.0\n264,319,3.5\n264,320,4.0\n264,321,4.5\n264,322,5.0\n264,323,5.5\n264,324,6.0\n264,325,8.5\n264,326,8.0\n264,327,7.5\n264,328,7.0\n264,329,6.5\n264,330,6.0\n264,331,5.5\n264,332,5.0\n264,333,4.5\n264,334,4.0\n264,335,3.5\n264,336,3.0\n264,337,2.5\n264,338,2.0\n264,339,1.5\n264,340,2.0\n264,341,2.5\n264,342,3.0\n264,343,3.5\n264,344,4.0\n264,345,4.5\n264,346,5.0\n264,347,5.5\n264,348,6.0\n264,349,6.5\n264,350,9.0\n264,351,8.5\n264,352,8.0\n264,353,7.5\n264,354,7.0\n264,355,6.5\n264,356,6.0\n264,357,5.5\n264,358,5.0\n264,359,4.5\n264,360,4.0\n264,361,3.5\n264,362,3.0\n264,363,2.5\n264,364,2.0\n264,365,2.5\n264,366,3.0\n264,367,3.5\n264,368,4.0\n264,369,4.5\n264,370,5.0\n264,371,5.5\n264,372,6.0\n264,373,6.5\n264,374,7.0\n264,375,9.5\n264,376,9.0\n264,377,8.5\n264,378,8.0\n264,379,7.5\n264,380,7.0\n264,381,6.5\n264,382,6.0\n264,383,5.5\n264,384,5.0\n264,385,4.5\n264,386,4.0\n264,387,3.5\n264,388,3.0\n264,389,2.5\n264,390,3.0\n264,391,3.5\n264,392,4.0\n264,393,4.5\n264,394,5.0\n264,395,5.5\n264,396,6.0\n264,397,6.5\n264,398,7.0\n264,399,7.5\n264,400,10.0\n264,401,9.5\n264,402,9.0\n264,403,8.5\n264,404,8.0\n264,405,7.5\n264,406,7.0\n264,407,6.5\n264,408,6.0\n264,409,5.5\n264,410,5.0\n264,411,4.5\n264,412,4.0\n264,413,3.5\n264,414,3.0\n264,415,3.5\n264,416,4.0\n264,417,4.5\n264,418,5.0\n264,419,5.5\n264,420,6.0\n264,421,6.5\n264,422,7.0\n264,423,7.5\n264,424,8.0\n264,425,10.5\n264,426,10.0\n264,427,9.5\n264,428,9.0\n264,429,8.5\n264,430,8.0\n264,431,7.5\n264,432,7.0\n264,433,6.5\n264,434,6.0\n264,435,5.5\n264,436,5.0\n264,437,4.5\n264,438,4.0\n264,439,3.5\n264,440,4.0\n264,441,4.5\n264,442,5.0\n264,443,5.5\n264,444,6.0\n264,445,6.5\n264,446,7.0\n264,447,7.5\n264,448,8.0\n264,449,8.5\n264,450,11.0\n264,451,10.5\n264,452,10.0\n264,453,9.5\n264,454,9.0\n264,455,8.5\n264,456,8.0\n264,457,7.5\n264,458,7.0\n264,459,6.5\n264,460,6.0\n264,461,5.5\n264,462,5.0\n264,463,4.5\n264,464,4.0\n264,465,4.5\n264,466,5.0\n264,467,5.5\n264,468,6.0\n264,469,6.5\n264,470,7.0\n264,471,7.5\n264,472,8.0\n264,473,8.5\n264,474,9.0\n264,475,11.5\n264,476,11.0\n264,477,10.5\n264,478,10.0\n264,479,9.5\n264,480,9.0\n264,481,8.5\n264,482,8.0\n264,483,7.5\n264,484,7.0\n264,485,6.5\n264,486,6.0\n264,487,5.5\n264,488,5.0\n264,489,4.5\n264,490,5.0\n264,491,5.5\n264,492,6.0\n264,493,6.5\n264,494,7.0\n264,495,7.5\n264,496,8.0\n264,497,8.5\n264,498,9.0\n264,499,9.5\n264,500,12.0\n264,501,11.5\n264,502,11.0\n264,503,10.5\n264,504,10.0\n264,505,9.5\n264,506,9.0\n264,507,8.5\n264,508,8.0\n264,509,7.5\n264,510,7.0\n264,511,6.5\n264,512,6.0\n264,513,5.5\n264,514,5.0\n264,515,5.5\n264,516,6.0\n264,517,6.5\n264,518,7.0\n264,519,7.5\n264,520,8.0\n264,521,8.5\n264,522,9.0\n264,523,9.5\n264,524,10.0\n264,525,12.5\n264,526,12.0\n264,527,11.5\n264,528,11.0\n264,529,10.5\n264,530,10.0\n264,531,9.5\n264,532,9.0\n264,533,8.5\n264,534,8.0\n264,535,7.5\n264,536,7.0\n264,537,6.5\n264,538,6.0\n264,539,5.5\n264,540,6.0\n264,541,6.5\n264,542,7.0\n264,543,7.5\n264,544,8.0\n264,545,8.5\n264,546,9.0\n264,547,9.5\n264,548,10.0\n264,549,10.5\n264,550,13.0\n264,551,12.5\n264,552,12.0\n264,553,11.5\n264,554,11.0\n264,555,10.5\n264,556,10.0\n264,557,9.5\n264,558,9.0\n264,559,8.5\n264,560,8.0\n264,561,7.5\n264,562,7.0\n264,563,6.5\n264,564,6.0\n264,565,6.5\n264,566,7.0\n264,567,7.5\n264,568,8.0\n264,569,8.5\n264,570,9.0\n264,571,9.5\n264,572,10.0\n264,573,10.5\n264,574,11.0\n264,575,13.5\n264,576,13.0\n264,577,12.5\n264,578,12.0\n264,579,11.5\n264,580,11.0\n264,581,10.5\n264,582,10.0\n264,583,9.5\n264,584,9.0\n264,585,8.5\n264,586,8.0\n264,587,7.5\n264,588,7.0\n264,589,6.5\n264,590,7.0\n264,591,7.5\n264,592,8.0\n264,593,8.5\n264,594,9.0\n264,595,9.5\n264,596,10.0\n264,597,10.5\n264,598,11.0\n264,599,11.5\n264,600,14.0\n264,601,13.5\n264,602,13.0\n264,603,12.5\n264,604,12.0\n264,605,11.5\n264,606,11.0\n264,607,10.5\n264,608,10.0\n264,609,9.5\n264,610,9.0\n264,611,8.5\n264,612,8.0\n264,613,7.5\n264,614,7.0\n264,615,7.5\n264,616,8.0\n264,617,8.5\n264,618,9.0\n264,619,9.5\n264,620,10.0\n264,621,10.5\n264,622,11.0\n264,623,11.5\n264,624,12.0\n265,0,12.5\n265,1,12.0\n265,2,11.5\n265,3,11.0\n265,4,10.5\n265,5,10.0\n265,6,9.5\n265,7,9.0\n265,8,8.5\n265,9,8.0\n265,10,7.5\n265,11,7.0\n265,12,6.5\n265,13,6.0\n265,14,5.5\n265,15,5.0\n265,16,5.5\n265,17,6.0\n265,18,6.5\n265,19,7.0\n265,20,7.5\n265,21,8.0\n265,22,8.5\n265,23,9.0\n265,24,9.5\n265,25,12.0\n265,26,11.5\n265,27,11.0\n265,28,10.5\n265,29,10.0\n265,30,9.5\n265,31,9.0\n265,32,8.5\n265,33,8.0\n265,34,7.5\n265,35,7.0\n265,36,6.5\n265,37,6.0\n265,38,5.5\n265,39,5.0\n265,40,4.5\n265,41,5.0\n265,42,5.5\n265,43,6.0\n265,44,6.5\n265,45,7.0\n265,46,7.5\n265,47,8.0\n265,48,8.5\n265,49,9.0\n265,50,11.5\n265,51,11.0\n265,52,10.5\n265,53,10.0\n265,54,9.5\n265,55,9.0\n265,56,8.5\n265,57,8.0\n265,58,7.5\n265,59,7.0\n265,60,6.5\n265,61,6.0\n265,62,5.5\n265,63,5.0\n265,64,4.5\n265,65,4.0\n265,66,4.5\n265,67,5.0\n265,68,5.5\n265,69,6.0\n265,70,6.5\n265,71,7.0\n265,72,7.5\n265,73,8.0\n265,74,8.5\n265,75,11.0\n265,76,10.5\n265,77,10.0\n265,78,9.5\n265,79,9.0\n265,80,8.5\n265,81,8.0\n265,82,7.5\n265,83,7.0\n265,84,6.5\n265,85,6.0\n265,86,5.5\n265,87,5.0\n265,88,4.5\n265,89,4.0\n265,90,3.5\n265,91,4.0\n265,92,4.5\n265,93,5.0\n265,94,5.5\n265,95,6.0\n265,96,6.5\n265,97,7.0\n265,98,7.5\n265,99,8.0\n265,100,10.5\n265,101,10.0\n265,102,9.5\n265,103,9.0\n265,104,8.5\n265,105,8.0\n265,106,7.5\n265,107,7.0\n265,108,6.5\n265,109,6.0\n265,110,5.5\n265,111,5.0\n265,112,4.5\n265,113,4.0\n265,114,3.5\n265,115,3.0\n265,116,3.5\n265,117,4.0\n265,118,4.5\n265,119,5.0\n265,120,5.5\n265,121,6.0\n265,122,6.5\n265,123,7.0\n265,124,7.5\n265,125,10.0\n265,126,9.5\n265,127,9.0\n265,128,8.5\n265,129,8.0\n265,130,7.5\n265,131,7.0\n265,132,6.5\n265,133,6.0\n265,134,5.5\n265,135,5.0\n265,136,4.5\n265,137,4.0\n265,138,3.5\n265,139,3.0\n265,140,2.5\n265,141,3.0\n265,142,3.5\n265,143,4.0\n265,144,4.5\n265,145,5.0\n265,146,5.5\n265,147,6.0\n265,148,6.5\n265,149,7.0\n265,150,9.5\n265,151,9.0\n265,152,8.5\n265,153,8.0\n265,154,7.5\n265,155,7.0\n265,156,6.5\n265,157,6.0\n265,158,5.5\n265,159,5.0\n265,160,4.5\n265,161,4.0\n265,162,3.5\n265,163,3.0\n265,164,2.5\n265,165,2.0\n265,166,2.5\n265,167,3.0\n265,168,3.5\n265,169,4.0\n265,170,4.5\n265,171,5.0\n265,172,5.5\n265,173,6.0\n265,174,6.5\n265,175,9.0\n265,176,8.5\n265,177,8.0\n265,178,7.5\n265,179,7.0\n265,180,6.5\n265,181,6.0\n265,182,5.5\n265,183,5.0\n265,184,4.5\n265,185,4.0\n265,186,3.5\n265,187,3.0\n265,188,2.5\n265,189,2.0\n265,190,1.5\n265,191,2.0\n265,192,2.5\n265,193,3.0\n265,194,3.5\n265,195,4.0\n265,196,4.5\n265,197,5.0\n265,198,5.5\n265,199,6.0\n265,200,8.5\n265,201,8.0\n265,202,7.5\n265,203,7.0\n265,204,6.5\n265,205,6.0\n265,206,5.5\n265,207,5.0\n265,208,4.5\n265,209,4.0\n265,210,3.5\n265,211,3.0\n265,212,2.5\n265,213,2.0\n265,214,1.5\n265,215,1.0\n265,216,1.5\n265,217,2.0\n265,218,2.5\n265,219,3.0\n265,220,3.5\n265,221,4.0\n265,222,4.5\n265,223,5.0\n265,224,5.5\n265,225,8.0\n265,226,7.5\n265,227,7.0\n265,228,6.5\n265,229,6.0\n265,230,5.5\n265,231,5.0\n265,232,4.5\n265,233,4.0\n265,234,3.5\n265,235,3.0\n265,236,2.5\n265,237,2.0\n265,238,1.5\n265,239,1.0\n265,240,0.5\n265,241,1.0\n265,242,1.5\n265,243,2.0\n265,244,2.5\n265,245,3.0\n265,246,3.5\n265,247,4.0\n265,248,4.5\n265,249,5.0\n265,250,7.5\n265,251,7.0\n265,252,6.5\n265,253,6.0\n265,254,5.5\n265,255,5.0\n265,256,4.5\n265,257,4.0\n265,258,3.5\n265,259,3.0\n265,260,2.5\n265,261,2.0\n265,262,1.5\n265,263,1.0\n265,264,0.5\n265,265,0\n265,266,0.5\n265,267,1.0\n265,268,1.5\n265,269,2.0\n265,270,2.5\n265,271,3.0\n265,272,3.5\n265,273,4.0\n265,274,4.5\n265,275,8.0\n265,276,7.5\n265,277,7.0\n265,278,6.5\n265,279,6.0\n265,280,5.5\n265,281,5.0\n265,282,4.5\n265,283,4.0\n265,284,3.5\n265,285,3.0\n265,286,2.5\n265,287,2.0\n265,288,1.5\n265,289,1.0\n265,290,0.5\n265,291,1.0\n265,292,1.5\n265,293,2.0\n265,294,2.5\n265,295,3.0\n265,296,3.5\n265,297,4.0\n265,298,4.5\n265,299,5.0\n265,300,8.5\n265,301,8.0\n265,302,7.5\n265,303,7.0\n265,304,6.5\n265,305,6.0\n265,306,5.5\n265,307,5.0\n265,308,4.5\n265,309,4.0\n265,310,3.5\n265,311,3.0\n265,312,2.5\n265,313,2.0\n265,314,1.5\n265,315,1.0\n265,316,1.5\n265,317,2.0\n265,318,2.5\n265,319,3.0\n265,320,3.5\n265,321,4.0\n265,322,4.5\n265,323,5.0\n265,324,5.5\n265,325,9.0\n265,326,8.5\n265,327,8.0\n265,328,7.5\n265,329,7.0\n265,330,6.5\n265,331,6.0\n265,332,5.5\n265,333,5.0\n265,334,4.5\n265,335,4.0\n265,336,3.5\n265,337,3.0\n265,338,2.5\n265,339,2.0\n265,340,1.5\n265,341,2.0\n265,342,2.5\n265,343,3.0\n265,344,3.5\n265,345,4.0\n265,346,4.5\n265,347,5.0\n265,348,5.5\n265,349,6.0\n265,350,9.5\n265,351,9.0\n265,352,8.5\n265,353,8.0\n265,354,7.5\n265,355,7.0\n265,356,6.5\n265,357,6.0\n265,358,5.5\n265,359,5.0\n265,360,4.5\n265,361,4.0\n265,362,3.5\n265,363,3.0\n265,364,2.5\n265,365,2.0\n265,366,2.5\n265,367,3.0\n265,368,3.5\n265,369,4.0\n265,370,4.5\n265,371,5.0\n265,372,5.5\n265,373,6.0\n265,374,6.5\n265,375,10.0\n265,376,9.5\n265,377,9.0\n265,378,8.5\n265,379,8.0\n265,380,7.5\n265,381,7.0\n265,382,6.5\n265,383,6.0\n265,384,5.5\n265,385,5.0\n265,386,4.5\n265,387,4.0\n265,388,3.5\n265,389,3.0\n265,390,2.5\n265,391,3.0\n265,392,3.5\n265,393,4.0\n265,394,4.5\n265,395,5.0\n265,396,5.5\n265,397,6.0\n265,398,6.5\n265,399,7.0\n265,400,10.5\n265,401,10.0\n265,402,9.5\n265,403,9.0\n265,404,8.5\n265,405,8.0\n265,406,7.5\n265,407,7.0\n265,408,6.5\n265,409,6.0\n265,410,5.5\n265,411,5.0\n265,412,4.5\n265,413,4.0\n265,414,3.5\n265,415,3.0\n265,416,3.5\n265,417,4.0\n265,418,4.5\n265,419,5.0\n265,420,5.5\n265,421,6.0\n265,422,6.5\n265,423,7.0\n265,424,7.5\n265,425,11.0\n265,426,10.5\n265,427,10.0\n265,428,9.5\n265,429,9.0\n265,430,8.5\n265,431,8.0\n265,432,7.5\n265,433,7.0\n265,434,6.5\n265,435,6.0\n265,436,5.5\n265,437,5.0\n265,438,4.5\n265,439,4.0\n265,440,3.5\n265,441,4.0\n265,442,4.5\n265,443,5.0\n265,444,5.5\n265,445,6.0\n265,446,6.5\n265,447,7.0\n265,448,7.5\n265,449,8.0\n265,450,11.5\n265,451,11.0\n265,452,10.5\n265,453,10.0\n265,454,9.5\n265,455,9.0\n265,456,8.5\n265,457,8.0\n265,458,7.5\n265,459,7.0\n265,460,6.5\n265,461,6.0\n265,462,5.5\n265,463,5.0\n265,464,4.5\n265,465,4.0\n265,466,4.5\n265,467,5.0\n265,468,5.5\n265,469,6.0\n265,470,6.5\n265,471,7.0\n265,472,7.5\n265,473,8.0\n265,474,8.5\n265,475,12.0\n265,476,11.5\n265,477,11.0\n265,478,10.5\n265,479,10.0\n265,480,9.5\n265,481,9.0\n265,482,8.5\n265,483,8.0\n265,484,7.5\n265,485,7.0\n265,486,6.5\n265,487,6.0\n265,488,5.5\n265,489,5.0\n265,490,4.5\n265,491,5.0\n265,492,5.5\n265,493,6.0\n265,494,6.5\n265,495,7.0\n265,496,7.5\n265,497,8.0\n265,498,8.5\n265,499,9.0\n265,500,12.5\n265,501,12.0\n265,502,11.5\n265,503,11.0\n265,504,10.5\n265,505,10.0\n265,506,9.5\n265,507,9.0\n265,508,8.5\n265,509,8.0\n265,510,7.5\n265,511,7.0\n265,512,6.5\n265,513,6.0\n265,514,5.5\n265,515,5.0\n265,516,5.5\n265,517,6.0\n265,518,6.5\n265,519,7.0\n265,520,7.5\n265,521,8.0\n265,522,8.5\n265,523,9.0\n265,524,9.5\n265,525,13.0\n265,526,12.5\n265,527,12.0\n265,528,11.5\n265,529,11.0\n265,530,10.5\n265,531,10.0\n265,532,9.5\n265,533,9.0\n265,534,8.5\n265,535,8.0\n265,536,7.5\n265,537,7.0\n265,538,6.5\n265,539,6.0\n265,540,5.5\n265,541,6.0\n265,542,6.5\n265,543,7.0\n265,544,7.5\n265,545,8.0\n265,546,8.5\n265,547,9.0\n265,548,9.5\n265,549,10.0\n265,550,13.5\n265,551,13.0\n265,552,12.5\n265,553,12.0\n265,554,11.5\n265,555,11.0\n265,556,10.5\n265,557,10.0\n265,558,9.5\n265,559,9.0\n265,560,8.5\n265,561,8.0\n265,562,7.5\n265,563,7.0\n265,564,6.5\n265,565,6.0\n265,566,6.5\n265,567,7.0\n265,568,7.5\n265,569,8.0\n265,570,8.5\n265,571,9.0\n265,572,9.5\n265,573,10.0\n265,574,10.5\n265,575,14.0\n265,576,13.5\n265,577,13.0\n265,578,12.5\n265,579,12.0\n265,580,11.5\n265,581,11.0\n265,582,10.5\n265,583,10.0\n265,584,9.5\n265,585,9.0\n265,586,8.5\n265,587,8.0\n265,588,7.5\n265,589,7.0\n265,590,6.5\n265,591,7.0\n265,592,7.5\n265,593,8.0\n265,594,8.5\n265,595,9.0\n265,596,9.5\n265,597,10.0\n265,598,10.5\n265,599,11.0\n265,600,14.5\n265,601,14.0\n265,602,13.5\n265,603,13.0\n265,604,12.5\n265,605,12.0\n265,606,11.5\n265,607,11.0\n265,608,10.5\n265,609,10.0\n265,610,9.5\n265,611,9.0\n265,612,8.5\n265,613,8.0\n265,614,7.5\n265,615,7.0\n265,616,7.5\n265,617,8.0\n265,618,8.5\n265,619,9.0\n265,620,9.5\n265,621,10.0\n265,622,10.5\n265,623,11.0\n265,624,11.5\n266,0,13.0\n266,1,12.5\n266,2,12.0\n266,3,11.5\n266,4,11.0\n266,5,10.5\n266,6,10.0\n266,7,9.5\n266,8,9.0\n266,9,8.5\n266,10,8.0\n266,11,7.5\n266,12,7.0\n266,13,6.5\n266,14,6.0\n266,15,5.5\n266,16,5.0\n266,17,5.5\n266,18,6.0\n266,19,6.5\n266,20,7.0\n266,21,7.5\n266,22,8.0\n266,23,8.5\n266,24,9.0\n266,25,12.5\n266,26,12.0\n266,27,11.5\n266,28,11.0\n266,29,10.5\n266,30,10.0\n266,31,9.5\n266,32,9.0\n266,33,8.5\n266,34,8.0\n266,35,7.5\n266,36,7.0\n266,37,6.5\n266,38,6.0\n266,39,5.5\n266,40,5.0\n266,41,4.5\n266,42,5.0\n266,43,5.5\n266,44,6.0\n266,45,6.5\n266,46,7.0\n266,47,7.5\n266,48,8.0\n266,49,8.5\n266,50,12.0\n266,51,11.5\n266,52,11.0\n266,53,10.5\n266,54,10.0\n266,55,9.5\n266,56,9.0\n266,57,8.5\n266,58,8.0\n266,59,7.5\n266,60,7.0\n266,61,6.5\n266,62,6.0\n266,63,5.5\n266,64,5.0\n266,65,4.5\n266,66,4.0\n266,67,4.5\n266,68,5.0\n266,69,5.5\n266,70,6.0\n266,71,6.5\n266,72,7.0\n266,73,7.5\n266,74,8.0\n266,75,11.5\n266,76,11.0\n266,77,10.5\n266,78,10.0\n266,79,9.5\n266,80,9.0\n266,81,8.5\n266,82,8.0\n266,83,7.5\n266,84,7.0\n266,85,6.5\n266,86,6.0\n266,87,5.5\n266,88,5.0\n266,89,4.5\n266,90,4.0\n266,91,3.5\n266,92,4.0\n266,93,4.5\n266,94,5.0\n266,95,5.5\n266,96,6.0\n266,97,6.5\n266,98,7.0\n266,99,7.5\n266,100,11.0\n266,101,10.5\n266,102,10.0\n266,103,9.5\n266,104,9.0\n266,105,8.5\n266,106,8.0\n266,107,7.5\n266,108,7.0\n266,109,6.5\n266,110,6.0\n266,111,5.5\n266,112,5.0\n266,113,4.5\n266,114,4.0\n266,115,3.5\n266,116,3.0\n266,117,3.5\n266,118,4.0\n266,119,4.5\n266,120,5.0\n266,121,5.5\n266,122,6.0\n266,123,6.5\n266,124,7.0\n266,125,10.5\n266,126,10.0\n266,127,9.5\n266,128,9.0\n266,129,8.5\n266,130,8.0\n266,131,7.5\n266,132,7.0\n266,133,6.5\n266,134,6.0\n266,135,5.5\n266,136,5.0\n266,137,4.5\n266,138,4.0\n266,139,3.5\n266,140,3.0\n266,141,2.5\n266,142,3.0\n266,143,3.5\n266,144,4.0\n266,145,4.5\n266,146,5.0\n266,147,5.5\n266,148,6.0\n266,149,6.5\n266,150,10.0\n266,151,9.5\n266,152,9.0\n266,153,8.5\n266,154,8.0\n266,155,7.5\n266,156,7.0\n266,157,6.5\n266,158,6.0\n266,159,5.5\n266,160,5.0\n266,161,4.5\n266,162,4.0\n266,163,3.5\n266,164,3.0\n266,165,2.5\n266,166,2.0\n266,167,2.5\n266,168,3.0\n266,169,3.5\n266,170,4.0\n266,171,4.5\n266,172,5.0\n266,173,5.5\n266,174,6.0\n266,175,9.5\n266,176,9.0\n266,177,8.5\n266,178,8.0\n266,179,7.5\n266,180,7.0\n266,181,6.5\n266,182,6.0\n266,183,5.5\n266,184,5.0\n266,185,4.5\n266,186,4.0\n266,187,3.5\n266,188,3.0\n266,189,2.5\n266,190,2.0\n266,191,1.5\n266,192,2.0\n266,193,2.5\n266,194,3.0\n266,195,3.5\n266,196,4.0\n266,197,4.5\n266,198,5.0\n266,199,5.5\n266,200,9.0\n266,201,8.5\n266,202,8.0\n266,203,7.5\n266,204,7.0\n266,205,6.5\n266,206,6.0\n266,207,5.5\n266,208,5.0\n266,209,4.5\n266,210,4.0\n266,211,3.5\n266,212,3.0\n266,213,2.5\n266,214,2.0\n266,215,1.5\n266,216,1.0\n266,217,1.5\n266,218,2.0\n266,219,2.5\n266,220,3.0\n266,221,3.5\n266,222,4.0\n266,223,4.5\n266,224,5.0\n266,225,8.5\n266,226,8.0\n266,227,7.5\n266,228,7.0\n266,229,6.5\n266,230,6.0\n266,231,5.5\n266,232,5.0\n266,233,4.5\n266,234,4.0\n266,235,3.5\n266,236,3.0\n266,237,2.5\n266,238,2.0\n266,239,1.5\n266,240,1.0\n266,241,0.5\n266,242,1.0\n266,243,1.5\n266,244,2.0\n266,245,2.5\n266,246,3.0\n266,247,3.5\n266,248,4.0\n266,249,4.5\n266,250,8.0\n266,251,7.5\n266,252,7.0\n266,253,6.5\n266,254,6.0\n266,255,5.5\n266,256,5.0\n266,257,4.5\n266,258,4.0\n266,259,3.5\n266,260,3.0\n266,261,2.5\n266,262,2.0\n266,263,1.5\n266,264,1.0\n266,265,0.5\n266,266,0\n266,267,0.5\n266,268,1.0\n266,269,1.5\n266,270,2.0\n266,271,2.5\n266,272,3.0\n266,273,3.5\n266,274,4.0\n266,275,8.5\n266,276,8.0\n266,277,7.5\n266,278,7.0\n266,279,6.5\n266,280,6.0\n266,281,5.5\n266,282,5.0\n266,283,4.5\n266,284,4.0\n266,285,3.5\n266,286,3.0\n266,287,2.5\n266,288,2.0\n266,289,1.5\n266,290,1.0\n266,291,0.5\n266,292,1.0\n266,293,1.5\n266,294,2.0\n266,295,2.5\n266,296,3.0\n266,297,3.5\n266,298,4.0\n266,299,4.5\n266,300,9.0\n266,301,8.5\n266,302,8.0\n266,303,7.5\n266,304,7.0\n266,305,6.5\n266,306,6.0\n266,307,5.5\n266,308,5.0\n266,309,4.5\n266,310,4.0\n266,311,3.5\n266,312,3.0\n266,313,2.5\n266,314,2.0\n266,315,1.5\n266,316,1.0\n266,317,1.5\n266,318,2.0\n266,319,2.5\n266,320,3.0\n266,321,3.5\n266,322,4.0\n266,323,4.5\n266,324,5.0\n266,325,9.5\n266,326,9.0\n266,327,8.5\n266,328,8.0\n266,329,7.5\n266,330,7.0\n266,331,6.5\n266,332,6.0\n266,333,5.5\n266,334,5.0\n266,335,4.5\n266,336,4.0\n266,337,3.5\n266,338,3.0\n266,339,2.5\n266,340,2.0\n266,341,1.5\n266,342,2.0\n266,343,2.5\n266,344,3.0\n266,345,3.5\n266,346,4.0\n266,347,4.5\n266,348,5.0\n266,349,5.5\n266,350,10.0\n266,351,9.5\n266,352,9.0\n266,353,8.5\n266,354,8.0\n266,355,7.5\n266,356,7.0\n266,357,6.5\n266,358,6.0\n266,359,5.5\n266,360,5.0\n266,361,4.5\n266,362,4.0\n266,363,3.5\n266,364,3.0\n266,365,2.5\n266,366,2.0\n266,367,2.5\n266,368,3.0\n266,369,3.5\n266,370,4.0\n266,371,4.5\n266,372,5.0\n266,373,5.5\n266,374,6.0\n266,375,10.5\n266,376,10.0\n266,377,9.5\n266,378,9.0\n266,379,8.5\n266,380,8.0\n266,381,7.5\n266,382,7.0\n266,383,6.5\n266,384,6.0\n266,385,5.5\n266,386,5.0\n266,387,4.5\n266,388,4.0\n266,389,3.5\n266,390,3.0\n266,391,2.5\n266,392,3.0\n266,393,3.5\n266,394,4.0\n266,395,4.5\n266,396,5.0\n266,397,5.5\n266,398,6.0\n266,399,6.5\n266,400,11.0\n266,401,10.5\n266,402,10.0\n266,403,9.5\n266,404,9.0\n266,405,8.5\n266,406,8.0\n266,407,7.5\n266,408,7.0\n266,409,6.5\n266,410,6.0\n266,411,5.5\n266,412,5.0\n266,413,4.5\n266,414,4.0\n266,415,3.5\n266,416,3.0\n266,417,3.5\n266,418,4.0\n266,419,4.5\n266,420,5.0\n266,421,5.5\n266,422,6.0\n266,423,6.5\n266,424,7.0\n266,425,11.5\n266,426,11.0\n266,427,10.5\n266,428,10.0\n266,429,9.5\n266,430,9.0\n266,431,8.5\n266,432,8.0\n266,433,7.5\n266,434,7.0\n266,435,6.5\n266,436,6.0\n266,437,5.5\n266,438,5.0\n266,439,4.5\n266,440,4.0\n266,441,3.5\n266,442,4.0\n266,443,4.5\n266,444,5.0\n266,445,5.5\n266,446,6.0\n266,447,6.5\n266,448,7.0\n266,449,7.5\n266,450,12.0\n266,451,11.5\n266,452,11.0\n266,453,10.5\n266,454,10.0\n266,455,9.5\n266,456,9.0\n266,457,8.5\n266,458,8.0\n266,459,7.5\n266,460,7.0\n266,461,6.5\n266,462,6.0\n266,463,5.5\n266,464,5.0\n266,465,4.5\n266,466,4.0\n266,467,4.5\n266,468,5.0\n266,469,5.5\n266,470,6.0\n266,471,6.5\n266,472,7.0\n266,473,7.5\n266,474,8.0\n266,475,12.5\n266,476,12.0\n266,477,11.5\n266,478,11.0\n266,479,10.5\n266,480,10.0\n266,481,9.5\n266,482,9.0\n266,483,8.5\n266,484,8.0\n266,485,7.5\n266,486,7.0\n266,487,6.5\n266,488,6.0\n266,489,5.5\n266,490,5.0\n266,491,4.5\n266,492,5.0\n266,493,5.5\n266,494,6.0\n266,495,6.5\n266,496,7.0\n266,497,7.5\n266,498,8.0\n266,499,8.5\n266,500,13.0\n266,501,12.5\n266,502,12.0\n266,503,11.5\n266,504,11.0\n266,505,10.5\n266,506,10.0\n266,507,9.5\n266,508,9.0\n266,509,8.5\n266,510,8.0\n266,511,7.5\n266,512,7.0\n266,513,6.5\n266,514,6.0\n266,515,5.5\n266,516,5.0\n266,517,5.5\n266,518,6.0\n266,519,6.5\n266,520,7.0\n266,521,7.5\n266,522,8.0\n266,523,8.5\n266,524,9.0\n266,525,13.5\n266,526,13.0\n266,527,12.5\n266,528,12.0\n266,529,11.5\n266,530,11.0\n266,531,10.5\n266,532,10.0\n266,533,9.5\n266,534,9.0\n266,535,8.5\n266,536,8.0\n266,537,7.5\n266,538,7.0\n266,539,6.5\n266,540,6.0\n266,541,5.5\n266,542,6.0\n266,543,6.5\n266,544,7.0\n266,545,7.5\n266,546,8.0\n266,547,8.5\n266,548,9.0\n266,549,9.5\n266,550,14.0\n266,551,13.5\n266,552,13.0\n266,553,12.5\n266,554,12.0\n266,555,11.5\n266,556,11.0\n266,557,10.5\n266,558,10.0\n266,559,9.5\n266,560,9.0\n266,561,8.5\n266,562,8.0\n266,563,7.5\n266,564,7.0\n266,565,6.5\n266,566,6.0\n266,567,6.5\n266,568,7.0\n266,569,7.5\n266,570,8.0\n266,571,8.5\n266,572,9.0\n266,573,9.5\n266,574,10.0\n266,575,14.5\n266,576,14.0\n266,577,13.5\n266,578,13.0\n266,579,12.5\n266,580,12.0\n266,581,11.5\n266,582,11.0\n266,583,10.5\n266,584,10.0\n266,585,9.5\n266,586,9.0\n266,587,8.5\n266,588,8.0\n266,589,7.5\n266,590,7.0\n266,591,6.5\n266,592,7.0\n266,593,7.5\n266,594,8.0\n266,595,8.5\n266,596,9.0\n266,597,9.5\n266,598,10.0\n266,599,10.5\n266,600,15.0\n266,601,14.5\n266,602,14.0\n266,603,13.5\n266,604,13.0\n266,605,12.5\n266,606,12.0\n266,607,11.5\n266,608,11.0\n266,609,10.5\n266,610,10.0\n266,611,9.5\n266,612,9.0\n266,613,8.5\n266,614,8.0\n266,615,7.5\n266,616,7.0\n266,617,7.5\n266,618,8.0\n266,619,8.5\n266,620,9.0\n266,621,9.5\n266,622,10.0\n266,623,10.5\n266,624,11.0\n267,0,13.5\n267,1,13.0\n267,2,12.5\n267,3,12.0\n267,4,11.5\n267,5,11.0\n267,6,10.5\n267,7,10.0\n267,8,9.5\n267,9,9.0\n267,10,8.5\n267,11,8.0\n267,12,7.5\n267,13,7.0\n267,14,6.5\n267,15,6.0\n267,16,5.5\n267,17,5.0\n267,18,5.5\n267,19,6.0\n267,20,6.5\n267,21,7.0\n267,22,7.5\n267,23,8.0\n267,24,8.5\n267,25,13.0\n267,26,12.5\n267,27,12.0\n267,28,11.5\n267,29,11.0\n267,30,10.5\n267,31,10.0\n267,32,9.5\n267,33,9.0\n267,34,8.5\n267,35,8.0\n267,36,7.5\n267,37,7.0\n267,38,6.5\n267,39,6.0\n267,40,5.5\n267,41,5.0\n267,42,4.5\n267,43,5.0\n267,44,5.5\n267,45,6.0\n267,46,6.5\n267,47,7.0\n267,48,7.5\n267,49,8.0\n267,50,12.5\n267,51,12.0\n267,52,11.5\n267,53,11.0\n267,54,10.5\n267,55,10.0\n267,56,9.5\n267,57,9.0\n267,58,8.5\n267,59,8.0\n267,60,7.5\n267,61,7.0\n267,62,6.5\n267,63,6.0\n267,64,5.5\n267,65,5.0\n267,66,4.5\n267,67,4.0\n267,68,4.5\n267,69,5.0\n267,70,5.5\n267,71,6.0\n267,72,6.5\n267,73,7.0\n267,74,7.5\n267,75,12.0\n267,76,11.5\n267,77,11.0\n267,78,10.5\n267,79,10.0\n267,80,9.5\n267,81,9.0\n267,82,8.5\n267,83,8.0\n267,84,7.5\n267,85,7.0\n267,86,6.5\n267,87,6.0\n267,88,5.5\n267,89,5.0\n267,90,4.5\n267,91,4.0\n267,92,3.5\n267,93,4.0\n267,94,4.5\n267,95,5.0\n267,96,5.5\n267,97,6.0\n267,98,6.5\n267,99,7.0\n267,100,11.5\n267,101,11.0\n267,102,10.5\n267,103,10.0\n267,104,9.5\n267,105,9.0\n267,106,8.5\n267,107,8.0\n267,108,7.5\n267,109,7.0\n267,110,6.5\n267,111,6.0\n267,112,5.5\n267,113,5.0\n267,114,4.5\n267,115,4.0\n267,116,3.5\n267,117,3.0\n267,118,3.5\n267,119,4.0\n267,120,4.5\n267,121,5.0\n267,122,5.5\n267,123,6.0\n267,124,6.5\n267,125,11.0\n267,126,10.5\n267,127,10.0\n267,128,9.5\n267,129,9.0\n267,130,8.5\n267,131,8.0\n267,132,7.5\n267,133,7.0\n267,134,6.5\n267,135,6.0\n267,136,5.5\n267,137,5.0\n267,138,4.5\n267,139,4.0\n267,140,3.5\n267,141,3.0\n267,142,2.5\n267,143,3.0\n267,144,3.5\n267,145,4.0\n267,146,4.5\n267,147,5.0\n267,148,5.5\n267,149,6.0\n267,150,10.5\n267,151,10.0\n267,152,9.5\n267,153,9.0\n267,154,8.5\n267,155,8.0\n267,156,7.5\n267,157,7.0\n267,158,6.5\n267,159,6.0\n267,160,5.5\n267,161,5.0\n267,162,4.5\n267,163,4.0\n267,164,3.5\n267,165,3.0\n267,166,2.5\n267,167,2.0\n267,168,2.5\n267,169,3.0\n267,170,3.5\n267,171,4.0\n267,172,4.5\n267,173,5.0\n267,174,5.5\n267,175,10.0\n267,176,9.5\n267,177,9.0\n267,178,8.5\n267,179,8.0\n267,180,7.5\n267,181,7.0\n267,182,6.5\n267,183,6.0\n267,184,5.5\n267,185,5.0\n267,186,4.5\n267,187,4.0\n267,188,3.5\n267,189,3.0\n267,190,2.5\n267,191,2.0\n267,192,1.5\n267,193,2.0\n267,194,2.5\n267,195,3.0\n267,196,3.5\n267,197,4.0\n267,198,4.5\n267,199,5.0\n267,200,9.5\n267,201,9.0\n267,202,8.5\n267,203,8.0\n267,204,7.5\n267,205,7.0\n267,206,6.5\n267,207,6.0\n267,208,5.5\n267,209,5.0\n267,210,4.5\n267,211,4.0\n267,212,3.5\n267,213,3.0\n267,214,2.5\n267,215,2.0\n267,216,1.5\n267,217,1.0\n267,218,1.5\n267,219,2.0\n267,220,2.5\n267,221,3.0\n267,222,3.5\n267,223,4.0\n267,224,4.5\n267,225,9.0\n267,226,8.5\n267,227,8.0\n267,228,7.5\n267,229,7.0\n267,230,6.5\n267,231,6.0\n267,232,5.5\n267,233,5.0\n267,234,4.5\n267,235,4.0\n267,236,3.5\n267,237,3.0\n267,238,2.5\n267,239,2.0\n267,240,1.5\n267,241,1.0\n267,242,0.5\n267,243,1.0\n267,244,1.5\n267,245,2.0\n267,246,2.5\n267,247,3.0\n267,248,3.5\n267,249,4.0\n267,250,8.5\n267,251,8.0\n267,252,7.5\n267,253,7.0\n267,254,6.5\n267,255,6.0\n267,256,5.5\n267,257,5.0\n267,258,4.5\n267,259,4.0\n267,260,3.5\n267,261,3.0\n267,262,2.5\n267,263,2.0\n267,264,1.5\n267,265,1.0\n267,266,0.5\n267,267,0\n267,268,0.5\n267,269,1.0\n267,270,1.5\n267,271,2.0\n267,272,2.5\n267,273,3.0\n267,274,3.5\n267,275,9.0\n267,276,8.5\n267,277,8.0\n267,278,7.5\n267,279,7.0\n267,280,6.5\n267,281,6.0\n267,282,5.5\n267,283,5.0\n267,284,4.5\n267,285,4.0\n267,286,3.5\n267,287,3.0\n267,288,2.5\n267,289,2.0\n267,290,1.5\n267,291,1.0\n267,292,0.5\n267,293,1.0\n267,294,1.5\n267,295,2.0\n267,296,2.5\n267,297,3.0\n267,298,3.5\n267,299,4.0\n267,300,9.5\n267,301,9.0\n267,302,8.5\n267,303,8.0\n267,304,7.5\n267,305,7.0\n267,306,6.5\n267,307,6.0\n267,308,5.5\n267,309,5.0\n267,310,4.5\n267,311,4.0\n267,312,3.5\n267,313,3.0\n267,314,2.5\n267,315,2.0\n267,316,1.5\n267,317,1.0\n267,318,1.5\n267,319,2.0\n267,320,2.5\n267,321,3.0\n267,322,3.5\n267,323,4.0\n267,324,4.5\n267,325,10.0\n267,326,9.5\n267,327,9.0\n267,328,8.5\n267,329,8.0\n267,330,7.5\n267,331,7.0\n267,332,6.5\n267,333,6.0\n267,334,5.5\n267,335,5.0\n267,336,4.5\n267,337,4.0\n267,338,3.5\n267,339,3.0\n267,340,2.5\n267,341,2.0\n267,342,1.5\n267,343,2.0\n267,344,2.5\n267,345,3.0\n267,346,3.5\n267,347,4.0\n267,348,4.5\n267,349,5.0\n267,350,10.5\n267,351,10.0\n267,352,9.5\n267,353,9.0\n267,354,8.5\n267,355,8.0\n267,356,7.5\n267,357,7.0\n267,358,6.5\n267,359,6.0\n267,360,5.5\n267,361,5.0\n267,362,4.5\n267,363,4.0\n267,364,3.5\n267,365,3.0\n267,366,2.5\n267,367,2.0\n267,368,2.5\n267,369,3.0\n267,370,3.5\n267,371,4.0\n267,372,4.5\n267,373,5.0\n267,374,5.5\n267,375,11.0\n267,376,10.5\n267,377,10.0\n267,378,9.5\n267,379,9.0\n267,380,8.5\n267,381,8.0\n267,382,7.5\n267,383,7.0\n267,384,6.5\n267,385,6.0\n267,386,5.5\n267,387,5.0\n267,388,4.5\n267,389,4.0\n267,390,3.5\n267,391,3.0\n267,392,2.5\n267,393,3.0\n267,394,3.5\n267,395,4.0\n267,396,4.5\n267,397,5.0\n267,398,5.5\n267,399,6.0\n267,400,11.5\n267,401,11.0\n267,402,10.5\n267,403,10.0\n267,404,9.5\n267,405,9.0\n267,406,8.5\n267,407,8.0\n267,408,7.5\n267,409,7.0\n267,410,6.5\n267,411,6.0\n267,412,5.5\n267,413,5.0\n267,414,4.5\n267,415,4.0\n267,416,3.5\n267,417,3.0\n267,418,3.5\n267,419,4.0\n267,420,4.5\n267,421,5.0\n267,422,5.5\n267,423,6.0\n267,424,6.5\n267,425,12.0\n267,426,11.5\n267,427,11.0\n267,428,10.5\n267,429,10.0\n267,430,9.5\n267,431,9.0\n267,432,8.5\n267,433,8.0\n267,434,7.5\n267,435,7.0\n267,436,6.5\n267,437,6.0\n267,438,5.5\n267,439,5.0\n267,440,4.5\n267,441,4.0\n267,442,3.5\n267,443,4.0\n267,444,4.5\n267,445,5.0\n267,446,5.5\n267,447,6.0\n267,448,6.5\n267,449,7.0\n267,450,12.5\n267,451,12.0\n267,452,11.5\n267,453,11.0\n267,454,10.5\n267,455,10.0\n267,456,9.5\n267,457,9.0\n267,458,8.5\n267,459,8.0\n267,460,7.5\n267,461,7.0\n267,462,6.5\n267,463,6.0\n267,464,5.5\n267,465,5.0\n267,466,4.5\n267,467,4.0\n267,468,4.5\n267,469,5.0\n267,470,5.5\n267,471,6.0\n267,472,6.5\n267,473,7.0\n267,474,7.5\n267,475,13.0\n267,476,12.5\n267,477,12.0\n267,478,11.5\n267,479,11.0\n267,480,10.5\n267,481,10.0\n267,482,9.5\n267,483,9.0\n267,484,8.5\n267,485,8.0\n267,486,7.5\n267,487,7.0\n267,488,6.5\n267,489,6.0\n267,490,5.5\n267,491,5.0\n267,492,4.5\n267,493,5.0\n267,494,5.5\n267,495,6.0\n267,496,6.5\n267,497,7.0\n267,498,7.5\n267,499,8.0\n267,500,13.5\n267,501,13.0\n267,502,12.5\n267,503,12.0\n267,504,11.5\n267,505,11.0\n267,506,10.5\n267,507,10.0\n267,508,9.5\n267,509,9.0\n267,510,8.5\n267,511,8.0\n267,512,7.5\n267,513,7.0\n267,514,6.5\n267,515,6.0\n267,516,5.5\n267,517,5.0\n267,518,5.5\n267,519,6.0\n267,520,6.5\n267,521,7.0\n267,522,7.5\n267,523,8.0\n267,524,8.5\n267,525,14.0\n267,526,13.5\n267,527,13.0\n267,528,12.5\n267,529,12.0\n267,530,11.5\n267,531,11.0\n267,532,10.5\n267,533,10.0\n267,534,9.5\n267,535,9.0\n267,536,8.5\n267,537,8.0\n267,538,7.5\n267,539,7.0\n267,540,6.5\n267,541,6.0\n267,542,5.5\n267,543,6.0\n267,544,6.5\n267,545,7.0\n267,546,7.5\n267,547,8.0\n267,548,8.5\n267,549,9.0\n267,550,14.5\n267,551,14.0\n267,552,13.5\n267,553,13.0\n267,554,12.5\n267,555,12.0\n267,556,11.5\n267,557,11.0\n267,558,10.5\n267,559,10.0\n267,560,9.5\n267,561,9.0\n267,562,8.5\n267,563,8.0\n267,564,7.5\n267,565,7.0\n267,566,6.5\n267,567,6.0\n267,568,6.5\n267,569,7.0\n267,570,7.5\n267,571,8.0\n267,572,8.5\n267,573,9.0\n267,574,9.5\n267,575,15.0\n267,576,14.5\n267,577,14.0\n267,578,13.5\n267,579,13.0\n267,580,12.5\n267,581,12.0\n267,582,11.5\n267,583,11.0\n267,584,10.5\n267,585,10.0\n267,586,9.5\n267,587,9.0\n267,588,8.5\n267,589,8.0\n267,590,7.5\n267,591,7.0\n267,592,6.5\n267,593,7.0\n267,594,7.5\n267,595,8.0\n267,596,8.5\n267,597,9.0\n267,598,9.5\n267,599,10.0\n267,600,15.5\n267,601,15.0\n267,602,14.5\n267,603,14.0\n267,604,13.5\n267,605,13.0\n267,606,12.5\n267,607,12.0\n267,608,11.5\n267,609,11.0\n267,610,10.5\n267,611,10.0\n267,612,9.5\n267,613,9.0\n267,614,8.5\n267,615,8.0\n267,616,7.5\n267,617,7.0\n267,618,7.5\n267,619,8.0\n267,620,8.5\n267,621,9.0\n267,622,9.5\n267,623,10.0\n267,624,10.5\n268,0,14.0\n268,1,13.5\n268,2,13.0\n268,3,12.5\n268,4,12.0\n268,5,11.5\n268,6,11.0\n268,7,10.5\n268,8,10.0\n268,9,9.5\n268,10,9.0\n268,11,8.5\n268,12,8.0\n268,13,7.5\n268,14,7.0\n268,15,6.5\n268,16,6.0\n268,17,5.5\n268,18,5.0\n268,19,5.5\n268,20,6.0\n268,21,6.5\n268,22,7.0\n268,23,7.5\n268,24,8.0\n268,25,13.5\n268,26,13.0\n268,27,12.5\n268,28,12.0\n268,29,11.5\n268,30,11.0\n268,31,10.5\n268,32,10.0\n268,33,9.5\n268,34,9.0\n268,35,8.5\n268,36,8.0\n268,37,7.5\n268,38,7.0\n268,39,6.5\n268,40,6.0\n268,41,5.5\n268,42,5.0\n268,43,4.5\n268,44,5.0\n268,45,5.5\n268,46,6.0\n268,47,6.5\n268,48,7.0\n268,49,7.5\n268,50,13.0\n268,51,12.5\n268,52,12.0\n268,53,11.5\n268,54,11.0\n268,55,10.5\n268,56,10.0\n268,57,9.5\n268,58,9.0\n268,59,8.5\n268,60,8.0\n268,61,7.5\n268,62,7.0\n268,63,6.5\n268,64,6.0\n268,65,5.5\n268,66,5.0\n268,67,4.5\n268,68,4.0\n268,69,4.5\n268,70,5.0\n268,71,5.5\n268,72,6.0\n268,73,6.5\n268,74,7.0\n268,75,12.5\n268,76,12.0\n268,77,11.5\n268,78,11.0\n268,79,10.5\n268,80,10.0\n268,81,9.5\n268,82,9.0\n268,83,8.5\n268,84,8.0\n268,85,7.5\n268,86,7.0\n268,87,6.5\n268,88,6.0\n268,89,5.5\n268,90,5.0\n268,91,4.5\n268,92,4.0\n268,93,3.5\n268,94,4.0\n268,95,4.5\n268,96,5.0\n268,97,5.5\n268,98,6.0\n268,99,6.5\n268,100,12.0\n268,101,11.5\n268,102,11.0\n268,103,10.5\n268,104,10.0\n268,105,9.5\n268,106,9.0\n268,107,8.5\n268,108,8.0\n268,109,7.5\n268,110,7.0\n268,111,6.5\n268,112,6.0\n268,113,5.5\n268,114,5.0\n268,115,4.5\n268,116,4.0\n268,117,3.5\n268,118,3.0\n268,119,3.5\n268,120,4.0\n268,121,4.5\n268,122,5.0\n268,123,5.5\n268,124,6.0\n268,125,11.5\n268,126,11.0\n268,127,10.5\n268,128,10.0\n268,129,9.5\n268,130,9.0\n268,131,8.5\n268,132,8.0\n268,133,7.5\n268,134,7.0\n268,135,6.5\n268,136,6.0\n268,137,5.5\n268,138,5.0\n268,139,4.5\n268,140,4.0\n268,141,3.5\n268,142,3.0\n268,143,2.5\n268,144,3.0\n268,145,3.5\n268,146,4.0\n268,147,4.5\n268,148,5.0\n268,149,5.5\n268,150,11.0\n268,151,10.5\n268,152,10.0\n268,153,9.5\n268,154,9.0\n268,155,8.5\n268,156,8.0\n268,157,7.5\n268,158,7.0\n268,159,6.5\n268,160,6.0\n268,161,5.5\n268,162,5.0\n268,163,4.5\n268,164,4.0\n268,165,3.5\n268,166,3.0\n268,167,2.5\n268,168,2.0\n268,169,2.5\n268,170,3.0\n268,171,3.5\n268,172,4.0\n268,173,4.5\n268,174,5.0\n268,175,10.5\n268,176,10.0\n268,177,9.5\n268,178,9.0\n268,179,8.5\n268,180,8.0\n268,181,7.5\n268,182,7.0\n268,183,6.5\n268,184,6.0\n268,185,5.5\n268,186,5.0\n268,187,4.5\n268,188,4.0\n268,189,3.5\n268,190,3.0\n268,191,2.5\n268,192,2.0\n268,193,1.5\n268,194,2.0\n268,195,2.5\n268,196,3.0\n268,197,3.5\n268,198,4.0\n268,199,4.5\n268,200,10.0\n268,201,9.5\n268,202,9.0\n268,203,8.5\n268,204,8.0\n268,205,7.5\n268,206,7.0\n268,207,6.5\n268,208,6.0\n268,209,5.5\n268,210,5.0\n268,211,4.5\n268,212,4.0\n268,213,3.5\n268,214,3.0\n268,215,2.5\n268,216,2.0\n268,217,1.5\n268,218,1.0\n268,219,1.5\n268,220,2.0\n268,221,2.5\n268,222,3.0\n268,223,3.5\n268,224,4.0\n268,225,9.5\n268,226,9.0\n268,227,8.5\n268,228,8.0\n268,229,7.5\n268,230,7.0\n268,231,6.5\n268,232,6.0\n268,233,5.5\n268,234,5.0\n268,235,4.5\n268,236,4.0\n268,237,3.5\n268,238,3.0\n268,239,2.5\n268,240,2.0\n268,241,1.5\n268,242,1.0\n268,243,0.5\n268,244,1.0\n268,245,1.5\n268,246,2.0\n268,247,2.5\n268,248,3.0\n268,249,3.5\n268,250,9.0\n268,251,8.5\n268,252,8.0\n268,253,7.5\n268,254,7.0\n268,255,6.5\n268,256,6.0\n268,257,5.5\n268,258,5.0\n268,259,4.5\n268,260,4.0\n268,261,3.5\n268,262,3.0\n268,263,2.5\n268,264,2.0\n268,265,1.5\n268,266,1.0\n268,267,0.5\n268,268,0\n268,269,0.5\n268,270,1.0\n268,271,1.5\n268,272,2.0\n268,273,2.5\n268,274,3.0\n268,275,9.5\n268,276,9.0\n268,277,8.5\n268,278,8.0\n268,279,7.5\n268,280,7.0\n268,281,6.5\n268,282,6.0\n268,283,5.5\n268,284,5.0\n268,285,4.5\n268,286,4.0\n268,287,3.5\n268,288,3.0\n268,289,2.5\n268,290,2.0\n268,291,1.5\n268,292,1.0\n268,293,0.5\n268,294,1.0\n268,295,1.5\n268,296,2.0\n268,297,2.5\n268,298,3.0\n268,299,3.5\n268,300,10.0\n268,301,9.5\n268,302,9.0\n268,303,8.5\n268,304,8.0\n268,305,7.5\n268,306,7.0\n268,307,6.5\n268,308,6.0\n268,309,5.5\n268,310,5.0\n268,311,4.5\n268,312,4.0\n268,313,3.5\n268,314,3.0\n268,315,2.5\n268,316,2.0\n268,317,1.5\n268,318,1.0\n268,319,1.5\n268,320,2.0\n268,321,2.5\n268,322,3.0\n268,323,3.5\n268,324,4.0\n268,325,10.5\n268,326,10.0\n268,327,9.5\n268,328,9.0\n268,329,8.5\n268,330,8.0\n268,331,7.5\n268,332,7.0\n268,333,6.5\n268,334,6.0\n268,335,5.5\n268,336,5.0\n268,337,4.5\n268,338,4.0\n268,339,3.5\n268,340,3.0\n268,341,2.5\n268,342,2.0\n268,343,1.5\n268,344,2.0\n268,345,2.5\n268,346,3.0\n268,347,3.5\n268,348,4.0\n268,349,4.5\n268,350,11.0\n268,351,10.5\n268,352,10.0\n268,353,9.5\n268,354,9.0\n268,355,8.5\n268,356,8.0\n268,357,7.5\n268,358,7.0\n268,359,6.5\n268,360,6.0\n268,361,5.5\n268,362,5.0\n268,363,4.5\n268,364,4.0\n268,365,3.5\n268,366,3.0\n268,367,2.5\n268,368,2.0\n268,369,2.5\n268,370,3.0\n268,371,3.5\n268,372,4.0\n268,373,4.5\n268,374,5.0\n268,375,11.5\n268,376,11.0\n268,377,10.5\n268,378,10.0\n268,379,9.5\n268,380,9.0\n268,381,8.5\n268,382,8.0\n268,383,7.5\n268,384,7.0\n268,385,6.5\n268,386,6.0\n268,387,5.5\n268,388,5.0\n268,389,4.5\n268,390,4.0\n268,391,3.5\n268,392,3.0\n268,393,2.5\n268,394,3.0\n268,395,3.5\n268,396,4.0\n268,397,4.5\n268,398,5.0\n268,399,5.5\n268,400,12.0\n268,401,11.5\n268,402,11.0\n268,403,10.5\n268,404,10.0\n268,405,9.5\n268,406,9.0\n268,407,8.5\n268,408,8.0\n268,409,7.5\n268,410,7.0\n268,411,6.5\n268,412,6.0\n268,413,5.5\n268,414,5.0\n268,415,4.5\n268,416,4.0\n268,417,3.5\n268,418,3.0\n268,419,3.5\n268,420,4.0\n268,421,4.5\n268,422,5.0\n268,423,5.5\n268,424,6.0\n268,425,12.5\n268,426,12.0\n268,427,11.5\n268,428,11.0\n268,429,10.5\n268,430,10.0\n268,431,9.5\n268,432,9.0\n268,433,8.5\n268,434,8.0\n268,435,7.5\n268,436,7.0\n268,437,6.5\n268,438,6.0\n268,439,5.5\n268,440,5.0\n268,441,4.5\n268,442,4.0\n268,443,3.5\n268,444,4.0\n268,445,4.5\n268,446,5.0\n268,447,5.5\n268,448,6.0\n268,449,6.5\n268,450,13.0\n268,451,12.5\n268,452,12.0\n268,453,11.5\n268,454,11.0\n268,455,10.5\n268,456,10.0\n268,457,9.5\n268,458,9.0\n268,459,8.5\n268,460,8.0\n268,461,7.5\n268,462,7.0\n268,463,6.5\n268,464,6.0\n268,465,5.5\n268,466,5.0\n268,467,4.5\n268,468,4.0\n268,469,4.5\n268,470,5.0\n268,471,5.5\n268,472,6.0\n268,473,6.5\n268,474,7.0\n268,475,13.5\n268,476,13.0\n268,477,12.5\n268,478,12.0\n268,479,11.5\n268,480,11.0\n268,481,10.5\n268,482,10.0\n268,483,9.5\n268,484,9.0\n268,485,8.5\n268,486,8.0\n268,487,7.5\n268,488,7.0\n268,489,6.5\n268,490,6.0\n268,491,5.5\n268,492,5.0\n268,493,4.5\n268,494,5.0\n268,495,5.5\n268,496,6.0\n268,497,6.5\n268,498,7.0\n268,499,7.5\n268,500,14.0\n268,501,13.5\n268,502,13.0\n268,503,12.5\n268,504,12.0\n268,505,11.5\n268,506,11.0\n268,507,10.5\n268,508,10.0\n268,509,9.5\n268,510,9.0\n268,511,8.5\n268,512,8.0\n268,513,7.5\n268,514,7.0\n268,515,6.5\n268,516,6.0\n268,517,5.5\n268,518,5.0\n268,519,5.5\n268,520,6.0\n268,521,6.5\n268,522,7.0\n268,523,7.5\n268,524,8.0\n268,525,14.5\n268,526,14.0\n268,527,13.5\n268,528,13.0\n268,529,12.5\n268,530,12.0\n268,531,11.5\n268,532,11.0\n268,533,10.5\n268,534,10.0\n268,535,9.5\n268,536,9.0\n268,537,8.5\n268,538,8.0\n268,539,7.5\n268,540,7.0\n268,541,6.5\n268,542,6.0\n268,543,5.5\n268,544,6.0\n268,545,6.5\n268,546,7.0\n268,547,7.5\n268,548,8.0\n268,549,8.5\n268,550,15.0\n268,551,14.5\n268,552,14.0\n268,553,13.5\n268,554,13.0\n268,555,12.5\n268,556,12.0\n268,557,11.5\n268,558,11.0\n268,559,10.5\n268,560,10.0\n268,561,9.5\n268,562,9.0\n268,563,8.5\n268,564,8.0\n268,565,7.5\n268,566,7.0\n268,567,6.5\n268,568,6.0\n268,569,6.5\n268,570,7.0\n268,571,7.5\n268,572,8.0\n268,573,8.5\n268,574,9.0\n268,575,15.5\n268,576,15.0\n268,577,14.5\n268,578,14.0\n268,579,13.5\n268,580,13.0\n268,581,12.5\n268,582,12.0\n268,583,11.5\n268,584,11.0\n268,585,10.5\n268,586,10.0\n268,587,9.5\n268,588,9.0\n268,589,8.5\n268,590,8.0\n268,591,7.5\n268,592,7.0\n268,593,6.5\n268,594,7.0\n268,595,7.5\n268,596,8.0\n268,597,8.5\n268,598,9.0\n268,599,9.5\n268,600,16.0\n268,601,15.5\n268,602,15.0\n268,603,14.5\n268,604,14.0\n268,605,13.5\n268,606,13.0\n268,607,12.5\n268,608,12.0\n268,609,11.5\n268,610,11.0\n268,611,10.5\n268,612,10.0\n268,613,9.5\n268,614,9.0\n268,615,8.5\n268,616,8.0\n268,617,7.5\n268,618,7.0\n268,619,7.5\n268,620,8.0\n268,621,8.5\n268,622,9.0\n268,623,9.5\n268,624,10.0\n269,0,14.5\n269,1,14.0\n269,2,13.5\n269,3,13.0\n269,4,12.5\n269,5,12.0\n269,6,11.5\n269,7,11.0\n269,8,10.5\n269,9,10.0\n269,10,9.5\n269,11,9.0\n269,12,8.5\n269,13,8.0\n269,14,7.5\n269,15,7.0\n269,16,6.5\n269,17,6.0\n269,18,5.5\n269,19,5.0\n269,20,5.5\n269,21,6.0\n269,22,6.5\n269,23,7.0\n269,24,7.5\n269,25,14.0\n269,26,13.5\n269,27,13.0\n269,28,12.5\n269,29,12.0\n269,30,11.5\n269,31,11.0\n269,32,10.5\n269,33,10.0\n269,34,9.5\n269,35,9.0\n269,36,8.5\n269,37,8.0\n269,38,7.5\n269,39,7.0\n269,40,6.5\n269,41,6.0\n269,42,5.5\n269,43,5.0\n269,44,4.5\n269,45,5.0\n269,46,5.5\n269,47,6.0\n269,48,6.5\n269,49,7.0\n269,50,13.5\n269,51,13.0\n269,52,12.5\n269,53,12.0\n269,54,11.5\n269,55,11.0\n269,56,10.5\n269,57,10.0\n269,58,9.5\n269,59,9.0\n269,60,8.5\n269,61,8.0\n269,62,7.5\n269,63,7.0\n269,64,6.5\n269,65,6.0\n269,66,5.5\n269,67,5.0\n269,68,4.5\n269,69,4.0\n269,70,4.5\n269,71,5.0\n269,72,5.5\n269,73,6.0\n269,74,6.5\n269,75,13.0\n269,76,12.5\n269,77,12.0\n269,78,11.5\n269,79,11.0\n269,80,10.5\n269,81,10.0\n269,82,9.5\n269,83,9.0\n269,84,8.5\n269,85,8.0\n269,86,7.5\n269,87,7.0\n269,88,6.5\n269,89,6.0\n269,90,5.5\n269,91,5.0\n269,92,4.5\n269,93,4.0\n269,94,3.5\n269,95,4.0\n269,96,4.5\n269,97,5.0\n269,98,5.5\n269,99,6.0\n269,100,12.5\n269,101,12.0\n269,102,11.5\n269,103,11.0\n269,104,10.5\n269,105,10.0\n269,106,9.5\n269,107,9.0\n269,108,8.5\n269,109,8.0\n269,110,7.5\n269,111,7.0\n269,112,6.5\n269,113,6.0\n269,114,5.5\n269,115,5.0\n269,116,4.5\n269,117,4.0\n269,118,3.5\n269,119,3.0\n269,120,3.5\n269,121,4.0\n269,122,4.5\n269,123,5.0\n269,124,5.5\n269,125,12.0\n269,126,11.5\n269,127,11.0\n269,128,10.5\n269,129,10.0\n269,130,9.5\n269,131,9.0\n269,132,8.5\n269,133,8.0\n269,134,7.5\n269,135,7.0\n269,136,6.5\n269,137,6.0\n269,138,5.5\n269,139,5.0\n269,140,4.5\n269,141,4.0\n269,142,3.5\n269,143,3.0\n269,144,2.5\n269,145,3.0\n269,146,3.5\n269,147,4.0\n269,148,4.5\n269,149,5.0\n269,150,11.5\n269,151,11.0\n269,152,10.5\n269,153,10.0\n269,154,9.5\n269,155,9.0\n269,156,8.5\n269,157,8.0\n269,158,7.5\n269,159,7.0\n269,160,6.5\n269,161,6.0\n269,162,5.5\n269,163,5.0\n269,164,4.5\n269,165,4.0\n269,166,3.5\n269,167,3.0\n269,168,2.5\n269,169,2.0\n269,170,2.5\n269,171,3.0\n269,172,3.5\n269,173,4.0\n269,174,4.5\n269,175,11.0\n269,176,10.5\n269,177,10.0\n269,178,9.5\n269,179,9.0\n269,180,8.5\n269,181,8.0\n269,182,7.5\n269,183,7.0\n269,184,6.5\n269,185,6.0\n269,186,5.5\n269,187,5.0\n269,188,4.5\n269,189,4.0\n269,190,3.5\n269,191,3.0\n269,192,2.5\n269,193,2.0\n269,194,1.5\n269,195,2.0\n269,196,2.5\n269,197,3.0\n269,198,3.5\n269,199,4.0\n269,200,10.5\n269,201,10.0\n269,202,9.5\n269,203,9.0\n269,204,8.5\n269,205,8.0\n269,206,7.5\n269,207,7.0\n269,208,6.5\n269,209,6.0\n269,210,5.5\n269,211,5.0\n269,212,4.5\n269,213,4.0\n269,214,3.5\n269,215,3.0\n269,216,2.5\n269,217,2.0\n269,218,1.5\n269,219,1.0\n269,220,1.5\n269,221,2.0\n269,222,2.5\n269,223,3.0\n269,224,3.5\n269,225,10.0\n269,226,9.5\n269,227,9.0\n269,228,8.5\n269,229,8.0\n269,230,7.5\n269,231,7.0\n269,232,6.5\n269,233,6.0\n269,234,5.5\n269,235,5.0\n269,236,4.5\n269,237,4.0\n269,238,3.5\n269,239,3.0\n269,240,2.5\n269,241,2.0\n269,242,1.5\n269,243,1.0\n269,244,0.5\n269,245,1.0\n269,246,1.5\n269,247,2.0\n269,248,2.5\n269,249,3.0\n269,250,9.5\n269,251,9.0\n269,252,8.5\n269,253,8.0\n269,254,7.5\n269,255,7.0\n269,256,6.5\n269,257,6.0\n269,258,5.5\n269,259,5.0\n269,260,4.5\n269,261,4.0\n269,262,3.5\n269,263,3.0\n269,264,2.5\n269,265,2.0\n269,266,1.5\n269,267,1.0\n269,268,0.5\n269,269,0\n269,270,0.5\n269,271,1.0\n269,272,1.5\n269,273,2.0\n269,274,2.5\n269,275,10.0\n269,276,9.5\n269,277,9.0\n269,278,8.5\n269,279,8.0\n269,280,7.5\n269,281,7.0\n269,282,6.5\n269,283,6.0\n269,284,5.5\n269,285,5.0\n269,286,4.5\n269,287,4.0\n269,288,3.5\n269,289,3.0\n269,290,2.5\n269,291,2.0\n269,292,1.5\n269,293,1.0\n269,294,0.5\n269,295,1.0\n269,296,1.5\n269,297,2.0\n269,298,2.5\n269,299,3.0\n269,300,10.5\n269,301,10.0\n269,302,9.5\n269,303,9.0\n269,304,8.5\n269,305,8.0\n269,306,7.5\n269,307,7.0\n269,308,6.5\n269,309,6.0\n269,310,5.5\n269,311,5.0\n269,312,4.5\n269,313,4.0\n269,314,3.5\n269,315,3.0\n269,316,2.5\n269,317,2.0\n269,318,1.5\n269,319,1.0\n269,320,1.5\n269,321,2.0\n269,322,2.5\n269,323,3.0\n269,324,3.5\n269,325,11.0\n269,326,10.5\n269,327,10.0\n269,328,9.5\n269,329,9.0\n269,330,8.5\n269,331,8.0\n269,332,7.5\n269,333,7.0\n269,334,6.5\n269,335,6.0\n269,336,5.5\n269,337,5.0\n269,338,4.5\n269,339,4.0\n269,340,3.5\n269,341,3.0\n269,342,2.5\n269,343,2.0\n269,344,1.5\n269,345,2.0\n269,346,2.5\n269,347,3.0\n269,348,3.5\n269,349,4.0\n269,350,11.5\n269,351,11.0\n269,352,10.5\n269,353,10.0\n269,354,9.5\n269,355,9.0\n269,356,8.5\n269,357,8.0\n269,358,7.5\n269,359,7.0\n269,360,6.5\n269,361,6.0\n269,362,5.5\n269,363,5.0\n269,364,4.5\n269,365,4.0\n269,366,3.5\n269,367,3.0\n269,368,2.5\n269,369,2.0\n269,370,2.5\n269,371,3.0\n269,372,3.5\n269,373,4.0\n269,374,4.5\n269,375,12.0\n269,376,11.5\n269,377,11.0\n269,378,10.5\n269,379,10.0\n269,380,9.5\n269,381,9.0\n269,382,8.5\n269,383,8.0\n269,384,7.5\n269,385,7.0\n269,386,6.5\n269,387,6.0\n269,388,5.5\n269,389,5.0\n269,390,4.5\n269,391,4.0\n269,392,3.5\n269,393,3.0\n269,394,2.5\n269,395,3.0\n269,396,3.5\n269,397,4.0\n269,398,4.5\n269,399,5.0\n269,400,12.5\n269,401,12.0\n269,402,11.5\n269,403,11.0\n269,404,10.5\n269,405,10.0\n269,406,9.5\n269,407,9.0\n269,408,8.5\n269,409,8.0\n269,410,7.5\n269,411,7.0\n269,412,6.5\n269,413,6.0\n269,414,5.5\n269,415,5.0\n269,416,4.5\n269,417,4.0\n269,418,3.5\n269,419,3.0\n269,420,3.5\n269,421,4.0\n269,422,4.5\n269,423,5.0\n269,424,5.5\n269,425,13.0\n269,426,12.5\n269,427,12.0\n269,428,11.5\n269,429,11.0\n269,430,10.5\n269,431,10.0\n269,432,9.5\n269,433,9.0\n269,434,8.5\n269,435,8.0\n269,436,7.5\n269,437,7.0\n269,438,6.5\n269,439,6.0\n269,440,5.5\n269,441,5.0\n269,442,4.5\n269,443,4.0\n269,444,3.5\n269,445,4.0\n269,446,4.5\n269,447,5.0\n269,448,5.5\n269,449,6.0\n269,450,13.5\n269,451,13.0\n269,452,12.5\n269,453,12.0\n269,454,11.5\n269,455,11.0\n269,456,10.5\n269,457,10.0\n269,458,9.5\n269,459,9.0\n269,460,8.5\n269,461,8.0\n269,462,7.5\n269,463,7.0\n269,464,6.5\n269,465,6.0\n269,466,5.5\n269,467,5.0\n269,468,4.5\n269,469,4.0\n269,470,4.5\n269,471,5.0\n269,472,5.5\n269,473,6.0\n269,474,6.5\n269,475,14.0\n269,476,13.5\n269,477,13.0\n269,478,12.5\n269,479,12.0\n269,480,11.5\n269,481,11.0\n269,482,10.5\n269,483,10.0\n269,484,9.5\n269,485,9.0\n269,486,8.5\n269,487,8.0\n269,488,7.5\n269,489,7.0\n269,490,6.5\n269,491,6.0\n269,492,5.5\n269,493,5.0\n269,494,4.5\n269,495,5.0\n269,496,5.5\n269,497,6.0\n269,498,6.5\n269,499,7.0\n269,500,14.5\n269,501,14.0\n269,502,13.5\n269,503,13.0\n269,504,12.5\n269,505,12.0\n269,506,11.5\n269,507,11.0\n269,508,10.5\n269,509,10.0\n269,510,9.5\n269,511,9.0\n269,512,8.5\n269,513,8.0\n269,514,7.5\n269,515,7.0\n269,516,6.5\n269,517,6.0\n269,518,5.5\n269,519,5.0\n269,520,5.5\n269,521,6.0\n269,522,6.5\n269,523,7.0\n269,524,7.5\n269,525,15.0\n269,526,14.5\n269,527,14.0\n269,528,13.5\n269,529,13.0\n269,530,12.5\n269,531,12.0\n269,532,11.5\n269,533,11.0\n269,534,10.5\n269,535,10.0\n269,536,9.5\n269,537,9.0\n269,538,8.5\n269,539,8.0\n269,540,7.5\n269,541,7.0\n269,542,6.5\n269,543,6.0\n269,544,5.5\n269,545,6.0\n269,546,6.5\n269,547,7.0\n269,548,7.5\n269,549,8.0\n269,550,15.5\n269,551,15.0\n269,552,14.5\n269,553,14.0\n269,554,13.5\n269,555,13.0\n269,556,12.5\n269,557,12.0\n269,558,11.5\n269,559,11.0\n269,560,10.5\n269,561,10.0\n269,562,9.5\n269,563,9.0\n269,564,8.5\n269,565,8.0\n269,566,7.5\n269,567,7.0\n269,568,6.5\n269,569,6.0\n269,570,6.5\n269,571,7.0\n269,572,7.5\n269,573,8.0\n269,574,8.5\n269,575,16.0\n269,576,15.5\n269,577,15.0\n269,578,14.5\n269,579,14.0\n269,580,13.5\n269,581,13.0\n269,582,12.5\n269,583,12.0\n269,584,11.5\n269,585,11.0\n269,586,10.5\n269,587,10.0\n269,588,9.5\n269,589,9.0\n269,590,8.5\n269,591,8.0\n269,592,7.5\n269,593,7.0\n269,594,6.5\n269,595,7.0\n269,596,7.5\n269,597,8.0\n269,598,8.5\n269,599,9.0\n269,600,16.5\n269,601,16.0\n269,602,15.5\n269,603,15.0\n269,604,14.5\n269,605,14.0\n269,606,13.5\n269,607,13.0\n269,608,12.5\n269,609,12.0\n269,610,11.5\n269,611,11.0\n269,612,10.5\n269,613,10.0\n269,614,9.5\n269,615,9.0\n269,616,8.5\n269,617,8.0\n269,618,7.5\n269,619,7.0\n269,620,7.5\n269,621,8.0\n269,622,8.5\n269,623,9.0\n269,624,9.5\n270,0,15.0\n270,1,14.5\n270,2,14.0\n270,3,13.5\n270,4,13.0\n270,5,12.5\n270,6,12.0\n270,7,11.5\n270,8,11.0\n270,9,10.5\n270,10,10.0\n270,11,9.5\n270,12,9.0\n270,13,8.5\n270,14,8.0\n270,15,7.5\n270,16,7.0\n270,17,6.5\n270,18,6.0\n270,19,5.5\n270,20,5.0\n270,21,5.5\n270,22,6.0\n270,23,6.5\n270,24,7.0\n270,25,14.5\n270,26,14.0\n270,27,13.5\n270,28,13.0\n270,29,12.5\n270,30,12.0\n270,31,11.5\n270,32,11.0\n270,33,10.5\n270,34,10.0\n270,35,9.5\n270,36,9.0\n270,37,8.5\n270,38,8.0\n270,39,7.5\n270,40,7.0\n270,41,6.5\n270,42,6.0\n270,43,5.5\n270,44,5.0\n270,45,4.5\n270,46,5.0\n270,47,5.5\n270,48,6.0\n270,49,6.5\n270,50,14.0\n270,51,13.5\n270,52,13.0\n270,53,12.5\n270,54,12.0\n270,55,11.5\n270,56,11.0\n270,57,10.5\n270,58,10.0\n270,59,9.5\n270,60,9.0\n270,61,8.5\n270,62,8.0\n270,63,7.5\n270,64,7.0\n270,65,6.5\n270,66,6.0\n270,67,5.5\n270,68,5.0\n270,69,4.5\n270,70,4.0\n270,71,4.5\n270,72,5.0\n270,73,5.5\n270,74,6.0\n270,75,13.5\n270,76,13.0\n270,77,12.5\n270,78,12.0\n270,79,11.5\n270,80,11.0\n270,81,10.5\n270,82,10.0\n270,83,9.5\n270,84,9.0\n270,85,8.5\n270,86,8.0\n270,87,7.5\n270,88,7.0\n270,89,6.5\n270,90,6.0\n270,91,5.5\n270,92,5.0\n270,93,4.5\n270,94,4.0\n270,95,3.5\n270,96,4.0\n270,97,4.5\n270,98,5.0\n270,99,5.5\n270,100,13.0\n270,101,12.5\n270,102,12.0\n270,103,11.5\n270,104,11.0\n270,105,10.5\n270,106,10.0\n270,107,9.5\n270,108,9.0\n270,109,8.5\n270,110,8.0\n270,111,7.5\n270,112,7.0\n270,113,6.5\n270,114,6.0\n270,115,5.5\n270,116,5.0\n270,117,4.5\n270,118,4.0\n270,119,3.5\n270,120,3.0\n270,121,3.5\n270,122,4.0\n270,123,4.5\n270,124,5.0\n270,125,12.5\n270,126,12.0\n270,127,11.5\n270,128,11.0\n270,129,10.5\n270,130,10.0\n270,131,9.5\n270,132,9.0\n270,133,8.5\n270,134,8.0\n270,135,7.5\n270,136,7.0\n270,137,6.5\n270,138,6.0\n270,139,5.5\n270,140,5.0\n270,141,4.5\n270,142,4.0\n270,143,3.5\n270,144,3.0\n270,145,2.5\n270,146,3.0\n270,147,3.5\n270,148,4.0\n270,149,4.5\n270,150,12.0\n270,151,11.5\n270,152,11.0\n270,153,10.5\n270,154,10.0\n270,155,9.5\n270,156,9.0\n270,157,8.5\n270,158,8.0\n270,159,7.5\n270,160,7.0\n270,161,6.5\n270,162,6.0\n270,163,5.5\n270,164,5.0\n270,165,4.5\n270,166,4.0\n270,167,3.5\n270,168,3.0\n270,169,2.5\n270,170,2.0\n270,171,2.5\n270,172,3.0\n270,173,3.5\n270,174,4.0\n270,175,11.5\n270,176,11.0\n270,177,10.5\n270,178,10.0\n270,179,9.5\n270,180,9.0\n270,181,8.5\n270,182,8.0\n270,183,7.5\n270,184,7.0\n270,185,6.5\n270,186,6.0\n270,187,5.5\n270,188,5.0\n270,189,4.5\n270,190,4.0\n270,191,3.5\n270,192,3.0\n270,193,2.5\n270,194,2.0\n270,195,1.5\n270,196,2.0\n270,197,2.5\n270,198,3.0\n270,199,3.5\n270,200,11.0\n270,201,10.5\n270,202,10.0\n270,203,9.5\n270,204,9.0\n270,205,8.5\n270,206,8.0\n270,207,7.5\n270,208,7.0\n270,209,6.5\n270,210,6.0\n270,211,5.5\n270,212,5.0\n270,213,4.5\n270,214,4.0\n270,215,3.5\n270,216,3.0\n270,217,2.5\n270,218,2.0\n270,219,1.5\n270,220,1.0\n270,221,1.5\n270,222,2.0\n270,223,2.5\n270,224,3.0\n270,225,10.5\n270,226,10.0\n270,227,9.5\n270,228,9.0\n270,229,8.5\n270,230,8.0\n270,231,7.5\n270,232,7.0\n270,233,6.5\n270,234,6.0\n270,235,5.5\n270,236,5.0\n270,237,4.5\n270,238,4.0\n270,239,3.5\n270,240,3.0\n270,241,2.5\n270,242,2.0\n270,243,1.5\n270,244,1.0\n270,245,0.5\n270,246,1.0\n270,247,1.5\n270,248,2.0\n270,249,2.5\n270,250,10.0\n270,251,9.5\n270,252,9.0\n270,253,8.5\n270,254,8.0\n270,255,7.5\n270,256,7.0\n270,257,6.5\n270,258,6.0\n270,259,5.5\n270,260,5.0\n270,261,4.5\n270,262,4.0\n270,263,3.5\n270,264,3.0\n270,265,2.5\n270,266,2.0\n270,267,1.5\n270,268,1.0\n270,269,0.5\n270,270,0\n270,271,0.5\n270,272,1.0\n270,273,1.5\n270,274,2.0\n270,275,10.5\n270,276,10.0\n270,277,9.5\n270,278,9.0\n270,279,8.5\n270,280,8.0\n270,281,7.5\n270,282,7.0\n270,283,6.5\n270,284,6.0\n270,285,5.5\n270,286,5.0\n270,287,4.5\n270,288,4.0\n270,289,3.5\n270,290,3.0\n270,291,2.5\n270,292,2.0\n270,293,1.5\n270,294,1.0\n270,295,0.5\n270,296,1.0\n270,297,1.5\n270,298,2.0\n270,299,2.5\n270,300,11.0\n270,301,10.5\n270,302,10.0\n270,303,9.5\n270,304,9.0\n270,305,8.5\n270,306,8.0\n270,307,7.5\n270,308,7.0\n270,309,6.5\n270,310,6.0\n270,311,5.5\n270,312,5.0\n270,313,4.5\n270,314,4.0\n270,315,3.5\n270,316,3.0\n270,317,2.5\n270,318,2.0\n270,319,1.5\n270,320,1.0\n270,321,1.5\n270,322,2.0\n270,323,2.5\n270,324,3.0\n270,325,11.5\n270,326,11.0\n270,327,10.5\n270,328,10.0\n270,329,9.5\n270,330,9.0\n270,331,8.5\n270,332,8.0\n270,333,7.5\n270,334,7.0\n270,335,6.5\n270,336,6.0\n270,337,5.5\n270,338,5.0\n270,339,4.5\n270,340,4.0\n270,341,3.5\n270,342,3.0\n270,343,2.5\n270,344,2.0\n270,345,1.5\n270,346,2.0\n270,347,2.5\n270,348,3.0\n270,349,3.5\n270,350,12.0\n270,351,11.5\n270,352,11.0\n270,353,10.5\n270,354,10.0\n270,355,9.5\n270,356,9.0\n270,357,8.5\n270,358,8.0\n270,359,7.5\n270,360,7.0\n270,361,6.5\n270,362,6.0\n270,363,5.5\n270,364,5.0\n270,365,4.5\n270,366,4.0\n270,367,3.5\n270,368,3.0\n270,369,2.5\n270,370,2.0\n270,371,2.5\n270,372,3.0\n270,373,3.5\n270,374,4.0\n270,375,12.5\n270,376,12.0\n270,377,11.5\n270,378,11.0\n270,379,10.5\n270,380,10.0\n270,381,9.5\n270,382,9.0\n270,383,8.5\n270,384,8.0\n270,385,7.5\n270,386,7.0\n270,387,6.5\n270,388,6.0\n270,389,5.5\n270,390,5.0\n270,391,4.5\n270,392,4.0\n270,393,3.5\n270,394,3.0\n270,395,2.5\n270,396,3.0\n270,397,3.5\n270,398,4.0\n270,399,4.5\n270,400,13.0\n270,401,12.5\n270,402,12.0\n270,403,11.5\n270,404,11.0\n270,405,10.5\n270,406,10.0\n270,407,9.5\n270,408,9.0\n270,409,8.5\n270,410,8.0\n270,411,7.5\n270,412,7.0\n270,413,6.5\n270,414,6.0\n270,415,5.5\n270,416,5.0\n270,417,4.5\n270,418,4.0\n270,419,3.5\n270,420,3.0\n270,421,3.5\n270,422,4.0\n270,423,4.5\n270,424,5.0\n270,425,13.5\n270,426,13.0\n270,427,12.5\n270,428,12.0\n270,429,11.5\n270,430,11.0\n270,431,10.5\n270,432,10.0\n270,433,9.5\n270,434,9.0\n270,435,8.5\n270,436,8.0\n270,437,7.5\n270,438,7.0\n270,439,6.5\n270,440,6.0\n270,441,5.5\n270,442,5.0\n270,443,4.5\n270,444,4.0\n270,445,3.5\n270,446,4.0\n270,447,4.5\n270,448,5.0\n270,449,5.5\n270,450,14.0\n270,451,13.5\n270,452,13.0\n270,453,12.5\n270,454,12.0\n270,455,11.5\n270,456,11.0\n270,457,10.5\n270,458,10.0\n270,459,9.5\n270,460,9.0\n270,461,8.5\n270,462,8.0\n270,463,7.5\n270,464,7.0\n270,465,6.5\n270,466,6.0\n270,467,5.5\n270,468,5.0\n270,469,4.5\n270,470,4.0\n270,471,4.5\n270,472,5.0\n270,473,5.5\n270,474,6.0\n270,475,14.5\n270,476,14.0\n270,477,13.5\n270,478,13.0\n270,479,12.5\n270,480,12.0\n270,481,11.5\n270,482,11.0\n270,483,10.5\n270,484,10.0\n270,485,9.5\n270,486,9.0\n270,487,8.5\n270,488,8.0\n270,489,7.5\n270,490,7.0\n270,491,6.5\n270,492,6.0\n270,493,5.5\n270,494,5.0\n270,495,4.5\n270,496,5.0\n270,497,5.5\n270,498,6.0\n270,499,6.5\n270,500,15.0\n270,501,14.5\n270,502,14.0\n270,503,13.5\n270,504,13.0\n270,505,12.5\n270,506,12.0\n270,507,11.5\n270,508,11.0\n270,509,10.5\n270,510,10.0\n270,511,9.5\n270,512,9.0\n270,513,8.5\n270,514,8.0\n270,515,7.5\n270,516,7.0\n270,517,6.5\n270,518,6.0\n270,519,5.5\n270,520,5.0\n270,521,5.5\n270,522,6.0\n270,523,6.5\n270,524,7.0\n270,525,15.5\n270,526,15.0\n270,527,14.5\n270,528,14.0\n270,529,13.5\n270,530,13.0\n270,531,12.5\n270,532,12.0\n270,533,11.5\n270,534,11.0\n270,535,10.5\n270,536,10.0\n270,537,9.5\n270,538,9.0\n270,539,8.5\n270,540,8.0\n270,541,7.5\n270,542,7.0\n270,543,6.5\n270,544,6.0\n270,545,5.5\n270,546,6.0\n270,547,6.5\n270,548,7.0\n270,549,7.5\n270,550,16.0\n270,551,15.5\n270,552,15.0\n270,553,14.5\n270,554,14.0\n270,555,13.5\n270,556,13.0\n270,557,12.5\n270,558,12.0\n270,559,11.5\n270,560,11.0\n270,561,10.5\n270,562,10.0\n270,563,9.5\n270,564,9.0\n270,565,8.5\n270,566,8.0\n270,567,7.5\n270,568,7.0\n270,569,6.5\n270,570,6.0\n270,571,6.5\n270,572,7.0\n270,573,7.5\n270,574,8.0\n270,575,16.5\n270,576,16.0\n270,577,15.5\n270,578,15.0\n270,579,14.5\n270,580,14.0\n270,581,13.5\n270,582,13.0\n270,583,12.5\n270,584,12.0\n270,585,11.5\n270,586,11.0\n270,587,10.5\n270,588,10.0\n270,589,9.5\n270,590,9.0\n270,591,8.5\n270,592,8.0\n270,593,7.5\n270,594,7.0\n270,595,6.5\n270,596,7.0\n270,597,7.5\n270,598,8.0\n270,599,8.5\n270,600,17.0\n270,601,16.5\n270,602,16.0\n270,603,15.5\n270,604,15.0\n270,605,14.5\n270,606,14.0\n270,607,13.5\n270,608,13.0\n270,609,12.5\n270,610,12.0\n270,611,11.5\n270,612,11.0\n270,613,10.5\n270,614,10.0\n270,615,9.5\n270,616,9.0\n270,617,8.5\n270,618,8.0\n270,619,7.5\n270,620,7.0\n270,621,7.5\n270,622,8.0\n270,623,8.5\n270,624,9.0\n271,0,15.5\n271,1,15.0\n271,2,14.5\n271,3,14.0\n271,4,13.5\n271,5,13.0\n271,6,12.5\n271,7,12.0\n271,8,11.5\n271,9,11.0\n271,10,10.5\n271,11,10.0\n271,12,9.5\n271,13,9.0\n271,14,8.5\n271,15,8.0\n271,16,7.5\n271,17,7.0\n271,18,6.5\n271,19,6.0\n271,20,5.5\n271,21,5.0\n271,22,5.5\n271,23,6.0\n271,24,6.5\n271,25,15.0\n271,26,14.5\n271,27,14.0\n271,28,13.5\n271,29,13.0\n271,30,12.5\n271,31,12.0\n271,32,11.5\n271,33,11.0\n271,34,10.5\n271,35,10.0\n271,36,9.5\n271,37,9.0\n271,38,8.5\n271,39,8.0\n271,40,7.5\n271,41,7.0\n271,42,6.5\n271,43,6.0\n271,44,5.5\n271,45,5.0\n271,46,4.5\n271,47,5.0\n271,48,5.5\n271,49,6.0\n271,50,14.5\n271,51,14.0\n271,52,13.5\n271,53,13.0\n271,54,12.5\n271,55,12.0\n271,56,11.5\n271,57,11.0\n271,58,10.5\n271,59,10.0\n271,60,9.5\n271,61,9.0\n271,62,8.5\n271,63,8.0\n271,64,7.5\n271,65,7.0\n271,66,6.5\n271,67,6.0\n271,68,5.5\n271,69,5.0\n271,70,4.5\n271,71,4.0\n271,72,4.5\n271,73,5.0\n271,74,5.5\n271,75,14.0\n271,76,13.5\n271,77,13.0\n271,78,12.5\n271,79,12.0\n271,80,11.5\n271,81,11.0\n271,82,10.5\n271,83,10.0\n271,84,9.5\n271,85,9.0\n271,86,8.5\n271,87,8.0\n271,88,7.5\n271,89,7.0\n271,90,6.5\n271,91,6.0\n271,92,5.5\n271,93,5.0\n271,94,4.5\n271,95,4.0\n271,96,3.5\n271,97,4.0\n271,98,4.5\n271,99,5.0\n271,100,13.5\n271,101,13.0\n271,102,12.5\n271,103,12.0\n271,104,11.5\n271,105,11.0\n271,106,10.5\n271,107,10.0\n271,108,9.5\n271,109,9.0\n271,110,8.5\n271,111,8.0\n271,112,7.5\n271,113,7.0\n271,114,6.5\n271,115,6.0\n271,116,5.5\n271,117,5.0\n271,118,4.5\n271,119,4.0\n271,120,3.5\n271,121,3.0\n271,122,3.5\n271,123,4.0\n271,124,4.5\n271,125,13.0\n271,126,12.5\n271,127,12.0\n271,128,11.5\n271,129,11.0\n271,130,10.5\n271,131,10.0\n271,132,9.5\n271,133,9.0\n271,134,8.5\n271,135,8.0\n271,136,7.5\n271,137,7.0\n271,138,6.5\n271,139,6.0\n271,140,5.5\n271,141,5.0\n271,142,4.5\n271,143,4.0\n271,144,3.5\n271,145,3.0\n271,146,2.5\n271,147,3.0\n271,148,3.5\n271,149,4.0\n271,150,12.5\n271,151,12.0\n271,152,11.5\n271,153,11.0\n271,154,10.5\n271,155,10.0\n271,156,9.5\n271,157,9.0\n271,158,8.5\n271,159,8.0\n271,160,7.5\n271,161,7.0\n271,162,6.5\n271,163,6.0\n271,164,5.5\n271,165,5.0\n271,166,4.5\n271,167,4.0\n271,168,3.5\n271,169,3.0\n271,170,2.5\n271,171,2.0\n271,172,2.5\n271,173,3.0\n271,174,3.5\n271,175,12.0\n271,176,11.5\n271,177,11.0\n271,178,10.5\n271,179,10.0\n271,180,9.5\n271,181,9.0\n271,182,8.5\n271,183,8.0\n271,184,7.5\n271,185,7.0\n271,186,6.5\n271,187,6.0\n271,188,5.5\n271,189,5.0\n271,190,4.5\n271,191,4.0\n271,192,3.5\n271,193,3.0\n271,194,2.5\n271,195,2.0\n271,196,1.5\n271,197,2.0\n271,198,2.5\n271,199,3.0\n271,200,11.5\n271,201,11.0\n271,202,10.5\n271,203,10.0\n271,204,9.5\n271,205,9.0\n271,206,8.5\n271,207,8.0\n271,208,7.5\n271,209,7.0\n271,210,6.5\n271,211,6.0\n271,212,5.5\n271,213,5.0\n271,214,4.5\n271,215,4.0\n271,216,3.5\n271,217,3.0\n271,218,2.5\n271,219,2.0\n271,220,1.5\n271,221,1.0\n271,222,1.5\n271,223,2.0\n271,224,2.5\n271,225,11.0\n271,226,10.5\n271,227,10.0\n271,228,9.5\n271,229,9.0\n271,230,8.5\n271,231,8.0\n271,232,7.5\n271,233,7.0\n271,234,6.5\n271,235,6.0\n271,236,5.5\n271,237,5.0\n271,238,4.5\n271,239,4.0\n271,240,3.5\n271,241,3.0\n271,242,2.5\n271,243,2.0\n271,244,1.5\n271,245,1.0\n271,246,0.5\n271,247,1.0\n271,248,1.5\n271,249,2.0\n271,250,10.5\n271,251,10.0\n271,252,9.5\n271,253,9.0\n271,254,8.5\n271,255,8.0\n271,256,7.5\n271,257,7.0\n271,258,6.5\n271,259,6.0\n271,260,5.5\n271,261,5.0\n271,262,4.5\n271,263,4.0\n271,264,3.5\n271,265,3.0\n271,266,2.5\n271,267,2.0\n271,268,1.5\n271,269,1.0\n271,270,0.5\n271,271,0\n271,272,0.5\n271,273,1.0\n271,274,1.5\n271,275,11.0\n271,276,10.5\n271,277,10.0\n271,278,9.5\n271,279,9.0\n271,280,8.5\n271,281,8.0\n271,282,7.5\n271,283,7.0\n271,284,6.5\n271,285,6.0\n271,286,5.5\n271,287,5.0\n271,288,4.5\n271,289,4.0\n271,290,3.5\n271,291,3.0\n271,292,2.5\n271,293,2.0\n271,294,1.5\n271,295,1.0\n271,296,0.5\n271,297,1.0\n271,298,1.5\n271,299,2.0\n271,300,11.5\n271,301,11.0\n271,302,10.5\n271,303,10.0\n271,304,9.5\n271,305,9.0\n271,306,8.5\n271,307,8.0\n271,308,7.5\n271,309,7.0\n271,310,6.5\n271,311,6.0\n271,312,5.5\n271,313,5.0\n271,314,4.5\n271,315,4.0\n271,316,3.5\n271,317,3.0\n271,318,2.5\n271,319,2.0\n271,320,1.5\n271,321,1.0\n271,322,1.5\n271,323,2.0\n271,324,2.5\n271,325,12.0\n271,326,11.5\n271,327,11.0\n271,328,10.5\n271,329,10.0\n271,330,9.5\n271,331,9.0\n271,332,8.5\n271,333,8.0\n271,334,7.5\n271,335,7.0\n271,336,6.5\n271,337,6.0\n271,338,5.5\n271,339,5.0\n271,340,4.5\n271,341,4.0\n271,342,3.5\n271,343,3.0\n271,344,2.5\n271,345,2.0\n271,346,1.5\n271,347,2.0\n271,348,2.5\n271,349,3.0\n271,350,12.5\n271,351,12.0\n271,352,11.5\n271,353,11.0\n271,354,10.5\n271,355,10.0\n271,356,9.5\n271,357,9.0\n271,358,8.5\n271,359,8.0\n271,360,7.5\n271,361,7.0\n271,362,6.5\n271,363,6.0\n271,364,5.5\n271,365,5.0\n271,366,4.5\n271,367,4.0\n271,368,3.5\n271,369,3.0\n271,370,2.5\n271,371,2.0\n271,372,2.5\n271,373,3.0\n271,374,3.5\n271,375,13.0\n271,376,12.5\n271,377,12.0\n271,378,11.5\n271,379,11.0\n271,380,10.5\n271,381,10.0\n271,382,9.5\n271,383,9.0\n271,384,8.5\n271,385,8.0\n271,386,7.5\n271,387,7.0\n271,388,6.5\n271,389,6.0\n271,390,5.5\n271,391,5.0\n271,392,4.5\n271,393,4.0\n271,394,3.5\n271,395,3.0\n271,396,2.5\n271,397,3.0\n271,398,3.5\n271,399,4.0\n271,400,13.5\n271,401,13.0\n271,402,12.5\n271,403,12.0\n271,404,11.5\n271,405,11.0\n271,406,10.5\n271,407,10.0\n271,408,9.5\n271,409,9.0\n271,410,8.5\n271,411,8.0\n271,412,7.5\n271,413,7.0\n271,414,6.5\n271,415,6.0\n271,416,5.5\n271,417,5.0\n271,418,4.5\n271,419,4.0\n271,420,3.5\n271,421,3.0\n271,422,3.5\n271,423,4.0\n271,424,4.5\n271,425,14.0\n271,426,13.5\n271,427,13.0\n271,428,12.5\n271,429,12.0\n271,430,11.5\n271,431,11.0\n271,432,10.5\n271,433,10.0\n271,434,9.5\n271,435,9.0\n271,436,8.5\n271,437,8.0\n271,438,7.5\n271,439,7.0\n271,440,6.5\n271,441,6.0\n271,442,5.5\n271,443,5.0\n271,444,4.5\n271,445,4.0\n271,446,3.5\n271,447,4.0\n271,448,4.5\n271,449,5.0\n271,450,14.5\n271,451,14.0\n271,452,13.5\n271,453,13.0\n271,454,12.5\n271,455,12.0\n271,456,11.5\n271,457,11.0\n271,458,10.5\n271,459,10.0\n271,460,9.5\n271,461,9.0\n271,462,8.5\n271,463,8.0\n271,464,7.5\n271,465,7.0\n271,466,6.5\n271,467,6.0\n271,468,5.5\n271,469,5.0\n271,470,4.5\n271,471,4.0\n271,472,4.5\n271,473,5.0\n271,474,5.5\n271,475,15.0\n271,476,14.5\n271,477,14.0\n271,478,13.5\n271,479,13.0\n271,480,12.5\n271,481,12.0\n271,482,11.5\n271,483,11.0\n271,484,10.5\n271,485,10.0\n271,486,9.5\n271,487,9.0\n271,488,8.5\n271,489,8.0\n271,490,7.5\n271,491,7.0\n271,492,6.5\n271,493,6.0\n271,494,5.5\n271,495,5.0\n271,496,4.5\n271,497,5.0\n271,498,5.5\n271,499,6.0\n271,500,15.5\n271,501,15.0\n271,502,14.5\n271,503,14.0\n271,504,13.5\n271,505,13.0\n271,506,12.5\n271,507,12.0\n271,508,11.5\n271,509,11.0\n271,510,10.5\n271,511,10.0\n271,512,9.5\n271,513,9.0\n271,514,8.5\n271,515,8.0\n271,516,7.5\n271,517,7.0\n271,518,6.5\n271,519,6.0\n271,520,5.5\n271,521,5.0\n271,522,5.5\n271,523,6.0\n271,524,6.5\n271,525,16.0\n271,526,15.5\n271,527,15.0\n271,528,14.5\n271,529,14.0\n271,530,13.5\n271,531,13.0\n271,532,12.5\n271,533,12.0\n271,534,11.5\n271,535,11.0\n271,536,10.5\n271,537,10.0\n271,538,9.5\n271,539,9.0\n271,540,8.5\n271,541,8.0\n271,542,7.5\n271,543,7.0\n271,544,6.5\n271,545,6.0\n271,546,5.5\n271,547,6.0\n271,548,6.5\n271,549,7.0\n271,550,16.5\n271,551,16.0\n271,552,15.5\n271,553,15.0\n271,554,14.5\n271,555,14.0\n271,556,13.5\n271,557,13.0\n271,558,12.5\n271,559,12.0\n271,560,11.5\n271,561,11.0\n271,562,10.5\n271,563,10.0\n271,564,9.5\n271,565,9.0\n271,566,8.5\n271,567,8.0\n271,568,7.5\n271,569,7.0\n271,570,6.5\n271,571,6.0\n271,572,6.5\n271,573,7.0\n271,574,7.5\n271,575,17.0\n271,576,16.5\n271,577,16.0\n271,578,15.5\n271,579,15.0\n271,580,14.5\n271,581,14.0\n271,582,13.5\n271,583,13.0\n271,584,12.5\n271,585,12.0\n271,586,11.5\n271,587,11.0\n271,588,10.5\n271,589,10.0\n271,590,9.5\n271,591,9.0\n271,592,8.5\n271,593,8.0\n271,594,7.5\n271,595,7.0\n271,596,6.5\n271,597,7.0\n271,598,7.5\n271,599,8.0\n271,600,17.5\n271,601,17.0\n271,602,16.5\n271,603,16.0\n271,604,15.5\n271,605,15.0\n271,606,14.5\n271,607,14.0\n271,608,13.5\n271,609,13.0\n271,610,12.5\n271,611,12.0\n271,612,11.5\n271,613,11.0\n271,614,10.5\n271,615,10.0\n271,616,9.5\n271,617,9.0\n271,618,8.5\n271,619,8.0\n271,620,7.5\n271,621,7.0\n271,622,7.5\n271,623,8.0\n271,624,8.5\n272,0,16.0\n272,1,15.5\n272,2,15.0\n272,3,14.5\n272,4,14.0\n272,5,13.5\n272,6,13.0\n272,7,12.5\n272,8,12.0\n272,9,11.5\n272,10,11.0\n272,11,10.5\n272,12,10.0\n272,13,9.5\n272,14,9.0\n272,15,8.5\n272,16,8.0\n272,17,7.5\n272,18,7.0\n272,19,6.5\n272,20,6.0\n272,21,5.5\n272,22,5.0\n272,23,5.5\n272,24,6.0\n272,25,15.5\n272,26,15.0\n272,27,14.5\n272,28,14.0\n272,29,13.5\n272,30,13.0\n272,31,12.5\n272,32,12.0\n272,33,11.5\n272,34,11.0\n272,35,10.5\n272,36,10.0\n272,37,9.5\n272,38,9.0\n272,39,8.5\n272,40,8.0\n272,41,7.5\n272,42,7.0\n272,43,6.5\n272,44,6.0\n272,45,5.5\n272,46,5.0\n272,47,4.5\n272,48,5.0\n272,49,5.5\n272,50,15.0\n272,51,14.5\n272,52,14.0\n272,53,13.5\n272,54,13.0\n272,55,12.5\n272,56,12.0\n272,57,11.5\n272,58,11.0\n272,59,10.5\n272,60,10.0\n272,61,9.5\n272,62,9.0\n272,63,8.5\n272,64,8.0\n272,65,7.5\n272,66,7.0\n272,67,6.5\n272,68,6.0\n272,69,5.5\n272,70,5.0\n272,71,4.5\n272,72,4.0\n272,73,4.5\n272,74,5.0\n272,75,14.5\n272,76,14.0\n272,77,13.5\n272,78,13.0\n272,79,12.5\n272,80,12.0\n272,81,11.5\n272,82,11.0\n272,83,10.5\n272,84,10.0\n272,85,9.5\n272,86,9.0\n272,87,8.5\n272,88,8.0\n272,89,7.5\n272,90,7.0\n272,91,6.5\n272,92,6.0\n272,93,5.5\n272,94,5.0\n272,95,4.5\n272,96,4.0\n272,97,3.5\n272,98,4.0\n272,99,4.5\n272,100,14.0\n272,101,13.5\n272,102,13.0\n272,103,12.5\n272,104,12.0\n272,105,11.5\n272,106,11.0\n272,107,10.5\n272,108,10.0\n272,109,9.5\n272,110,9.0\n272,111,8.5\n272,112,8.0\n272,113,7.5\n272,114,7.0\n272,115,6.5\n272,116,6.0\n272,117,5.5\n272,118,5.0\n272,119,4.5\n272,120,4.0\n272,121,3.5\n272,122,3.0\n272,123,3.5\n272,124,4.0\n272,125,13.5\n272,126,13.0\n272,127,12.5\n272,128,12.0\n272,129,11.5\n272,130,11.0\n272,131,10.5\n272,132,10.0\n272,133,9.5\n272,134,9.0\n272,135,8.5\n272,136,8.0\n272,137,7.5\n272,138,7.0\n272,139,6.5\n272,140,6.0\n272,141,5.5\n272,142,5.0\n272,143,4.5\n272,144,4.0\n272,145,3.5\n272,146,3.0\n272,147,2.5\n272,148,3.0\n272,149,3.5\n272,150,13.0\n272,151,12.5\n272,152,12.0\n272,153,11.5\n272,154,11.0\n272,155,10.5\n272,156,10.0\n272,157,9.5\n272,158,9.0\n272,159,8.5\n272,160,8.0\n272,161,7.5\n272,162,7.0\n272,163,6.5\n272,164,6.0\n272,165,5.5\n272,166,5.0\n272,167,4.5\n272,168,4.0\n272,169,3.5\n272,170,3.0\n272,171,2.5\n272,172,2.0\n272,173,2.5\n272,174,3.0\n272,175,12.5\n272,176,12.0\n272,177,11.5\n272,178,11.0\n272,179,10.5\n272,180,10.0\n272,181,9.5\n272,182,9.0\n272,183,8.5\n272,184,8.0\n272,185,7.5\n272,186,7.0\n272,187,6.5\n272,188,6.0\n272,189,5.5\n272,190,5.0\n272,191,4.5\n272,192,4.0\n272,193,3.5\n272,194,3.0\n272,195,2.5\n272,196,2.0\n272,197,1.5\n272,198,2.0\n272,199,2.5\n272,200,12.0\n272,201,11.5\n272,202,11.0\n272,203,10.5\n272,204,10.0\n272,205,9.5\n272,206,9.0\n272,207,8.5\n272,208,8.0\n272,209,7.5\n272,210,7.0\n272,211,6.5\n272,212,6.0\n272,213,5.5\n272,214,5.0\n272,215,4.5\n272,216,4.0\n272,217,3.5\n272,218,3.0\n272,219,2.5\n272,220,2.0\n272,221,1.5\n272,222,1.0\n272,223,1.5\n272,224,2.0\n272,225,11.5\n272,226,11.0\n272,227,10.5\n272,228,10.0\n272,229,9.5\n272,230,9.0\n272,231,8.5\n272,232,8.0\n272,233,7.5\n272,234,7.0\n272,235,6.5\n272,236,6.0\n272,237,5.5\n272,238,5.0\n272,239,4.5\n272,240,4.0\n272,241,3.5\n272,242,3.0\n272,243,2.5\n272,244,2.0\n272,245,1.5\n272,246,1.0\n272,247,0.5\n272,248,1.0\n272,249,1.5\n272,250,11.0\n272,251,10.5\n272,252,10.0\n272,253,9.5\n272,254,9.0\n272,255,8.5\n272,256,8.0\n272,257,7.5\n272,258,7.0\n272,259,6.5\n272,260,6.0\n272,261,5.5\n272,262,5.0\n272,263,4.5\n272,264,4.0\n272,265,3.5\n272,266,3.0\n272,267,2.5\n272,268,2.0\n272,269,1.5\n272,270,1.0\n272,271,0.5\n272,272,0\n272,273,0.5\n272,274,1.0\n272,275,11.5\n272,276,11.0\n272,277,10.5\n272,278,10.0\n272,279,9.5\n272,280,9.0\n272,281,8.5\n272,282,8.0\n272,283,7.5\n272,284,7.0\n272,285,6.5\n272,286,6.0\n272,287,5.5\n272,288,5.0\n272,289,4.5\n272,290,4.0\n272,291,3.5\n272,292,3.0\n272,293,2.5\n272,294,2.0\n272,295,1.5\n272,296,1.0\n272,297,0.5\n272,298,1.0\n272,299,1.5\n272,300,12.0\n272,301,11.5\n272,302,11.0\n272,303,10.5\n272,304,10.0\n272,305,9.5\n272,306,9.0\n272,307,8.5\n272,308,8.0\n272,309,7.5\n272,310,7.0\n272,311,6.5\n272,312,6.0\n272,313,5.5\n272,314,5.0\n272,315,4.5\n272,316,4.0\n272,317,3.5\n272,318,3.0\n272,319,2.5\n272,320,2.0\n272,321,1.5\n272,322,1.0\n272,323,1.5\n272,324,2.0\n272,325,12.5\n272,326,12.0\n272,327,11.5\n272,328,11.0\n272,329,10.5\n272,330,10.0\n272,331,9.5\n272,332,9.0\n272,333,8.5\n272,334,8.0\n272,335,7.5\n272,336,7.0\n272,337,6.5\n272,338,6.0\n272,339,5.5\n272,340,5.0\n272,341,4.5\n272,342,4.0\n272,343,3.5\n272,344,3.0\n272,345,2.5\n272,346,2.0\n272,347,1.5\n272,348,2.0\n272,349,2.5\n272,350,13.0\n272,351,12.5\n272,352,12.0\n272,353,11.5\n272,354,11.0\n272,355,10.5\n272,356,10.0\n272,357,9.5\n272,358,9.0\n272,359,8.5\n272,360,8.0\n272,361,7.5\n272,362,7.0\n272,363,6.5\n272,364,6.0\n272,365,5.5\n272,366,5.0\n272,367,4.5\n272,368,4.0\n272,369,3.5\n272,370,3.0\n272,371,2.5\n272,372,2.0\n272,373,2.5\n272,374,3.0\n272,375,13.5\n272,376,13.0\n272,377,12.5\n272,378,12.0\n272,379,11.5\n272,380,11.0\n272,381,10.5\n272,382,10.0\n272,383,9.5\n272,384,9.0\n272,385,8.5\n272,386,8.0\n272,387,7.5\n272,388,7.0\n272,389,6.5\n272,390,6.0\n272,391,5.5\n272,392,5.0\n272,393,4.5\n272,394,4.0\n272,395,3.5\n272,396,3.0\n272,397,2.5\n272,398,3.0\n272,399,3.5\n272,400,14.0\n272,401,13.5\n272,402,13.0\n272,403,12.5\n272,404,12.0\n272,405,11.5\n272,406,11.0\n272,407,10.5\n272,408,10.0\n272,409,9.5\n272,410,9.0\n272,411,8.5\n272,412,8.0\n272,413,7.5\n272,414,7.0\n272,415,6.5\n272,416,6.0\n272,417,5.5\n272,418,5.0\n272,419,4.5\n272,420,4.0\n272,421,3.5\n272,422,3.0\n272,423,3.5\n272,424,4.0\n272,425,14.5\n272,426,14.0\n272,427,13.5\n272,428,13.0\n272,429,12.5\n272,430,12.0\n272,431,11.5\n272,432,11.0\n272,433,10.5\n272,434,10.0\n272,435,9.5\n272,436,9.0\n272,437,8.5\n272,438,8.0\n272,439,7.5\n272,440,7.0\n272,441,6.5\n272,442,6.0\n272,443,5.5\n272,444,5.0\n272,445,4.5\n272,446,4.0\n272,447,3.5\n272,448,4.0\n272,449,4.5\n272,450,15.0\n272,451,14.5\n272,452,14.0\n272,453,13.5\n272,454,13.0\n272,455,12.5\n272,456,12.0\n272,457,11.5\n272,458,11.0\n272,459,10.5\n272,460,10.0\n272,461,9.5\n272,462,9.0\n272,463,8.5\n272,464,8.0\n272,465,7.5\n272,466,7.0\n272,467,6.5\n272,468,6.0\n272,469,5.5\n272,470,5.0\n272,471,4.5\n272,472,4.0\n272,473,4.5\n272,474,5.0\n272,475,15.5\n272,476,15.0\n272,477,14.5\n272,478,14.0\n272,479,13.5\n272,480,13.0\n272,481,12.5\n272,482,12.0\n272,483,11.5\n272,484,11.0\n272,485,10.5\n272,486,10.0\n272,487,9.5\n272,488,9.0\n272,489,8.5\n272,490,8.0\n272,491,7.5\n272,492,7.0\n272,493,6.5\n272,494,6.0\n272,495,5.5\n272,496,5.0\n272,497,4.5\n272,498,5.0\n272,499,5.5\n272,500,16.0\n272,501,15.5\n272,502,15.0\n272,503,14.5\n272,504,14.0\n272,505,13.5\n272,506,13.0\n272,507,12.5\n272,508,12.0\n272,509,11.5\n272,510,11.0\n272,511,10.5\n272,512,10.0\n272,513,9.5\n272,514,9.0\n272,515,8.5\n272,516,8.0\n272,517,7.5\n272,518,7.0\n272,519,6.5\n272,520,6.0\n272,521,5.5\n272,522,5.0\n272,523,5.5\n272,524,6.0\n272,525,16.5\n272,526,16.0\n272,527,15.5\n272,528,15.0\n272,529,14.5\n272,530,14.0\n272,531,13.5\n272,532,13.0\n272,533,12.5\n272,534,12.0\n272,535,11.5\n272,536,11.0\n272,537,10.5\n272,538,10.0\n272,539,9.5\n272,540,9.0\n272,541,8.5\n272,542,8.0\n272,543,7.5\n272,544,7.0\n272,545,6.5\n272,546,6.0\n272,547,5.5\n272,548,6.0\n272,549,6.5\n272,550,17.0\n272,551,16.5\n272,552,16.0\n272,553,15.5\n272,554,15.0\n272,555,14.5\n272,556,14.0\n272,557,13.5\n272,558,13.0\n272,559,12.5\n272,560,12.0\n272,561,11.5\n272,562,11.0\n272,563,10.5\n272,564,10.0\n272,565,9.5\n272,566,9.0\n272,567,8.5\n272,568,8.0\n272,569,7.5\n272,570,7.0\n272,571,6.5\n272,572,6.0\n272,573,6.5\n272,574,7.0\n272,575,17.5\n272,576,17.0\n272,577,16.5\n272,578,16.0\n272,579,15.5\n272,580,15.0\n272,581,14.5\n272,582,14.0\n272,583,13.5\n272,584,13.0\n272,585,12.5\n272,586,12.0\n272,587,11.5\n272,588,11.0\n272,589,10.5\n272,590,10.0\n272,591,9.5\n272,592,9.0\n272,593,8.5\n272,594,8.0\n272,595,7.5\n272,596,7.0\n272,597,6.5\n272,598,7.0\n272,599,7.5\n272,600,18.0\n272,601,17.5\n272,602,17.0\n272,603,16.5\n272,604,16.0\n272,605,15.5\n272,606,15.0\n272,607,14.5\n272,608,14.0\n272,609,13.5\n272,610,13.0\n272,611,12.5\n272,612,12.0\n272,613,11.5\n272,614,11.0\n272,615,10.5\n272,616,10.0\n272,617,9.5\n272,618,9.0\n272,619,8.5\n272,620,8.0\n272,621,7.5\n272,622,7.0\n272,623,7.5\n272,624,8.0\n273,0,16.5\n273,1,16.0\n273,2,15.5\n273,3,15.0\n273,4,14.5\n273,5,14.0\n273,6,13.5\n273,7,13.0\n273,8,12.5\n273,9,12.0\n273,10,11.5\n273,11,11.0\n273,12,10.5\n273,13,10.0\n273,14,9.5\n273,15,9.0\n273,16,8.5\n273,17,8.0\n273,18,7.5\n273,19,7.0\n273,20,6.5\n273,21,6.0\n273,22,5.5\n273,23,5.0\n273,24,5.5\n273,25,16.0\n273,26,15.5\n273,27,15.0\n273,28,14.5\n273,29,14.0\n273,30,13.5\n273,31,13.0\n273,32,12.5\n273,33,12.0\n273,34,11.5\n273,35,11.0\n273,36,10.5\n273,37,10.0\n273,38,9.5\n273,39,9.0\n273,40,8.5\n273,41,8.0\n273,42,7.5\n273,43,7.0\n273,44,6.5\n273,45,6.0\n273,46,5.5\n273,47,5.0\n273,48,4.5\n273,49,5.0\n273,50,15.5\n273,51,15.0\n273,52,14.5\n273,53,14.0\n273,54,13.5\n273,55,13.0\n273,56,12.5\n273,57,12.0\n273,58,11.5\n273,59,11.0\n273,60,10.5\n273,61,10.0\n273,62,9.5\n273,63,9.0\n273,64,8.5\n273,65,8.0\n273,66,7.5\n273,67,7.0\n273,68,6.5\n273,69,6.0\n273,70,5.5\n273,71,5.0\n273,72,4.5\n273,73,4.0\n273,74,4.5\n273,75,15.0\n273,76,14.5\n273,77,14.0\n273,78,13.5\n273,79,13.0\n273,80,12.5\n273,81,12.0\n273,82,11.5\n273,83,11.0\n273,84,10.5\n273,85,10.0\n273,86,9.5\n273,87,9.0\n273,88,8.5\n273,89,8.0\n273,90,7.5\n273,91,7.0\n273,92,6.5\n273,93,6.0\n273,94,5.5\n273,95,5.0\n273,96,4.5\n273,97,4.0\n273,98,3.5\n273,99,4.0\n273,100,14.5\n273,101,14.0\n273,102,13.5\n273,103,13.0\n273,104,12.5\n273,105,12.0\n273,106,11.5\n273,107,11.0\n273,108,10.5\n273,109,10.0\n273,110,9.5\n273,111,9.0\n273,112,8.5\n273,113,8.0\n273,114,7.5\n273,115,7.0\n273,116,6.5\n273,117,6.0\n273,118,5.5\n273,119,5.0\n273,120,4.5\n273,121,4.0\n273,122,3.5\n273,123,3.0\n273,124,3.5\n273,125,14.0\n273,126,13.5\n273,127,13.0\n273,128,12.5\n273,129,12.0\n273,130,11.5\n273,131,11.0\n273,132,10.5\n273,133,10.0\n273,134,9.5\n273,135,9.0\n273,136,8.5\n273,137,8.0\n273,138,7.5\n273,139,7.0\n273,140,6.5\n273,141,6.0\n273,142,5.5\n273,143,5.0\n273,144,4.5\n273,145,4.0\n273,146,3.5\n273,147,3.0\n273,148,2.5\n273,149,3.0\n273,150,13.5\n273,151,13.0\n273,152,12.5\n273,153,12.0\n273,154,11.5\n273,155,11.0\n273,156,10.5\n273,157,10.0\n273,158,9.5\n273,159,9.0\n273,160,8.5\n273,161,8.0\n273,162,7.5\n273,163,7.0\n273,164,6.5\n273,165,6.0\n273,166,5.5\n273,167,5.0\n273,168,4.5\n273,169,4.0\n273,170,3.5\n273,171,3.0\n273,172,2.5\n273,173,2.0\n273,174,2.5\n273,175,13.0\n273,176,12.5\n273,177,12.0\n273,178,11.5\n273,179,11.0\n273,180,10.5\n273,181,10.0\n273,182,9.5\n273,183,9.0\n273,184,8.5\n273,185,8.0\n273,186,7.5\n273,187,7.0\n273,188,6.5\n273,189,6.0\n273,190,5.5\n273,191,5.0\n273,192,4.5\n273,193,4.0\n273,194,3.5\n273,195,3.0\n273,196,2.5\n273,197,2.0\n273,198,1.5\n273,199,2.0\n273,200,12.5\n273,201,12.0\n273,202,11.5\n273,203,11.0\n273,204,10.5\n273,205,10.0\n273,206,9.5\n273,207,9.0\n273,208,8.5\n273,209,8.0\n273,210,7.5\n273,211,7.0\n273,212,6.5\n273,213,6.0\n273,214,5.5\n273,215,5.0\n273,216,4.5\n273,217,4.0\n273,218,3.5\n273,219,3.0\n273,220,2.5\n273,221,2.0\n273,222,1.5\n273,223,1.0\n273,224,1.5\n273,225,12.0\n273,226,11.5\n273,227,11.0\n273,228,10.5\n273,229,10.0\n273,230,9.5\n273,231,9.0\n273,232,8.5\n273,233,8.0\n273,234,7.5\n273,235,7.0\n273,236,6.5\n273,237,6.0\n273,238,5.5\n273,239,5.0\n273,240,4.5\n273,241,4.0\n273,242,3.5\n273,243,3.0\n273,244,2.5\n273,245,2.0\n273,246,1.5\n273,247,1.0\n273,248,0.5\n273,249,1.0\n273,250,11.5\n273,251,11.0\n273,252,10.5\n273,253,10.0\n273,254,9.5\n273,255,9.0\n273,256,8.5\n273,257,8.0\n273,258,7.5\n273,259,7.0\n273,260,6.5\n273,261,6.0\n273,262,5.5\n273,263,5.0\n273,264,4.5\n273,265,4.0\n273,266,3.5\n273,267,3.0\n273,268,2.5\n273,269,2.0\n273,270,1.5\n273,271,1.0\n273,272,0.5\n273,273,0\n273,274,0.5\n273,275,12.0\n273,276,11.5\n273,277,11.0\n273,278,10.5\n273,279,10.0\n273,280,9.5\n273,281,9.0\n273,282,8.5\n273,283,8.0\n273,284,7.5\n273,285,7.0\n273,286,6.5\n273,287,6.0\n273,288,5.5\n273,289,5.0\n273,290,4.5\n273,291,4.0\n273,292,3.5\n273,293,3.0\n273,294,2.5\n273,295,2.0\n273,296,1.5\n273,297,1.0\n273,298,0.5\n273,299,1.0\n273,300,12.5\n273,301,12.0\n273,302,11.5\n273,303,11.0\n273,304,10.5\n273,305,10.0\n273,306,9.5\n273,307,9.0\n273,308,8.5\n273,309,8.0\n273,310,7.5\n273,311,7.0\n273,312,6.5\n273,313,6.0\n273,314,5.5\n273,315,5.0\n273,316,4.5\n273,317,4.0\n273,318,3.5\n273,319,3.0\n273,320,2.5\n273,321,2.0\n273,322,1.5\n273,323,1.0\n273,324,1.5\n273,325,13.0\n273,326,12.5\n273,327,12.0\n273,328,11.5\n273,329,11.0\n273,330,10.5\n273,331,10.0\n273,332,9.5\n273,333,9.0\n273,334,8.5\n273,335,8.0\n273,336,7.5\n273,337,7.0\n273,338,6.5\n273,339,6.0\n273,340,5.5\n273,341,5.0\n273,342,4.5\n273,343,4.0\n273,344,3.5\n273,345,3.0\n273,346,2.5\n273,347,2.0\n273,348,1.5\n273,349,2.0\n273,350,13.5\n273,351,13.0\n273,352,12.5\n273,353,12.0\n273,354,11.5\n273,355,11.0\n273,356,10.5\n273,357,10.0\n273,358,9.5\n273,359,9.0\n273,360,8.5\n273,361,8.0\n273,362,7.5\n273,363,7.0\n273,364,6.5\n273,365,6.0\n273,366,5.5\n273,367,5.0\n273,368,4.5\n273,369,4.0\n273,370,3.5\n273,371,3.0\n273,372,2.5\n273,373,2.0\n273,374,2.5\n273,375,14.0\n273,376,13.5\n273,377,13.0\n273,378,12.5\n273,379,12.0\n273,380,11.5\n273,381,11.0\n273,382,10.5\n273,383,10.0\n273,384,9.5\n273,385,9.0\n273,386,8.5\n273,387,8.0\n273,388,7.5\n273,389,7.0\n273,390,6.5\n273,391,6.0\n273,392,5.5\n273,393,5.0\n273,394,4.5\n273,395,4.0\n273,396,3.5\n273,397,3.0\n273,398,2.5\n273,399,3.0\n273,400,14.5\n273,401,14.0\n273,402,13.5\n273,403,13.0\n273,404,12.5\n273,405,12.0\n273,406,11.5\n273,407,11.0\n273,408,10.5\n273,409,10.0\n273,410,9.5\n273,411,9.0\n273,412,8.5\n273,413,8.0\n273,414,7.5\n273,415,7.0\n273,416,6.5\n273,417,6.0\n273,418,5.5\n273,419,5.0\n273,420,4.5\n273,421,4.0\n273,422,3.5\n273,423,3.0\n273,424,3.5\n273,425,15.0\n273,426,14.5\n273,427,14.0\n273,428,13.5\n273,429,13.0\n273,430,12.5\n273,431,12.0\n273,432,11.5\n273,433,11.0\n273,434,10.5\n273,435,10.0\n273,436,9.5\n273,437,9.0\n273,438,8.5\n273,439,8.0\n273,440,7.5\n273,441,7.0\n273,442,6.5\n273,443,6.0\n273,444,5.5\n273,445,5.0\n273,446,4.5\n273,447,4.0\n273,448,3.5\n273,449,4.0\n273,450,15.5\n273,451,15.0\n273,452,14.5\n273,453,14.0\n273,454,13.5\n273,455,13.0\n273,456,12.5\n273,457,12.0\n273,458,11.5\n273,459,11.0\n273,460,10.5\n273,461,10.0\n273,462,9.5\n273,463,9.0\n273,464,8.5\n273,465,8.0\n273,466,7.5\n273,467,7.0\n273,468,6.5\n273,469,6.0\n273,470,5.5\n273,471,5.0\n273,472,4.5\n273,473,4.0\n273,474,4.5\n273,475,16.0\n273,476,15.5\n273,477,15.0\n273,478,14.5\n273,479,14.0\n273,480,13.5\n273,481,13.0\n273,482,12.5\n273,483,12.0\n273,484,11.5\n273,485,11.0\n273,486,10.5\n273,487,10.0\n273,488,9.5\n273,489,9.0\n273,490,8.5\n273,491,8.0\n273,492,7.5\n273,493,7.0\n273,494,6.5\n273,495,6.0\n273,496,5.5\n273,497,5.0\n273,498,4.5\n273,499,5.0\n273,500,16.5\n273,501,16.0\n273,502,15.5\n273,503,15.0\n273,504,14.5\n273,505,14.0\n273,506,13.5\n273,507,13.0\n273,508,12.5\n273,509,12.0\n273,510,11.5\n273,511,11.0\n273,512,10.5\n273,513,10.0\n273,514,9.5\n273,515,9.0\n273,516,8.5\n273,517,8.0\n273,518,7.5\n273,519,7.0\n273,520,6.5\n273,521,6.0\n273,522,5.5\n273,523,5.0\n273,524,5.5\n273,525,17.0\n273,526,16.5\n273,527,16.0\n273,528,15.5\n273,529,15.0\n273,530,14.5\n273,531,14.0\n273,532,13.5\n273,533,13.0\n273,534,12.5\n273,535,12.0\n273,536,11.5\n273,537,11.0\n273,538,10.5\n273,539,10.0\n273,540,9.5\n273,541,9.0\n273,542,8.5\n273,543,8.0\n273,544,7.5\n273,545,7.0\n273,546,6.5\n273,547,6.0\n273,548,5.5\n273,549,6.0\n273,550,17.5\n273,551,17.0\n273,552,16.5\n273,553,16.0\n273,554,15.5\n273,555,15.0\n273,556,14.5\n273,557,14.0\n273,558,13.5\n273,559,13.0\n273,560,12.5\n273,561,12.0\n273,562,11.5\n273,563,11.0\n273,564,10.5\n273,565,10.0\n273,566,9.5\n273,567,9.0\n273,568,8.5\n273,569,8.0\n273,570,7.5\n273,571,7.0\n273,572,6.5\n273,573,6.0\n273,574,6.5\n273,575,18.0\n273,576,17.5\n273,577,17.0\n273,578,16.5\n273,579,16.0\n273,580,15.5\n273,581,15.0\n273,582,14.5\n273,583,14.0\n273,584,13.5\n273,585,13.0\n273,586,12.5\n273,587,12.0\n273,588,11.5\n273,589,11.0\n273,590,10.5\n273,591,10.0\n273,592,9.5\n273,593,9.0\n273,594,8.5\n273,595,8.0\n273,596,7.5\n273,597,7.0\n273,598,6.5\n273,599,7.0\n273,600,18.5\n273,601,18.0\n273,602,17.5\n273,603,17.0\n273,604,16.5\n273,605,16.0\n273,606,15.5\n273,607,15.0\n273,608,14.5\n273,609,14.0\n273,610,13.5\n273,611,13.0\n273,612,12.5\n273,613,12.0\n273,614,11.5\n273,615,11.0\n273,616,10.5\n273,617,10.0\n273,618,9.5\n273,619,9.0\n273,620,8.5\n273,621,8.0\n273,622,7.5\n273,623,7.0\n273,624,7.5\n274,0,17.0\n274,1,16.5\n274,2,16.0\n274,3,15.5\n274,4,15.0\n274,5,14.5\n274,6,14.0\n274,7,13.5\n274,8,13.0\n274,9,12.5\n274,10,12.0\n274,11,11.5\n274,12,11.0\n274,13,10.5\n274,14,10.0\n274,15,9.5\n274,16,9.0\n274,17,8.5\n274,18,8.0\n274,19,7.5\n274,20,7.0\n274,21,6.5\n274,22,6.0\n274,23,5.5\n274,24,5.0\n274,25,16.5\n274,26,16.0\n274,27,15.5\n274,28,15.0\n274,29,14.5\n274,30,14.0\n274,31,13.5\n274,32,13.0\n274,33,12.5\n274,34,12.0\n274,35,11.5\n274,36,11.0\n274,37,10.5\n274,38,10.0\n274,39,9.5\n274,40,9.0\n274,41,8.5\n274,42,8.0\n274,43,7.5\n274,44,7.0\n274,45,6.5\n274,46,6.0\n274,47,5.5\n274,48,5.0\n274,49,4.5\n274,50,16.0\n274,51,15.5\n274,52,15.0\n274,53,14.5\n274,54,14.0\n274,55,13.5\n274,56,13.0\n274,57,12.5\n274,58,12.0\n274,59,11.5\n274,60,11.0\n274,61,10.5\n274,62,10.0\n274,63,9.5\n274,64,9.0\n274,65,8.5\n274,66,8.0\n274,67,7.5\n274,68,7.0\n274,69,6.5\n274,70,6.0\n274,71,5.5\n274,72,5.0\n274,73,4.5\n274,74,4.0\n274,75,15.5\n274,76,15.0\n274,77,14.5\n274,78,14.0\n274,79,13.5\n274,80,13.0\n274,81,12.5\n274,82,12.0\n274,83,11.5\n274,84,11.0\n274,85,10.5\n274,86,10.0\n274,87,9.5\n274,88,9.0\n274,89,8.5\n274,90,8.0\n274,91,7.5\n274,92,7.0\n274,93,6.5\n274,94,6.0\n274,95,5.5\n274,96,5.0\n274,97,4.5\n274,98,4.0\n274,99,3.5\n274,100,15.0\n274,101,14.5\n274,102,14.0\n274,103,13.5\n274,104,13.0\n274,105,12.5\n274,106,12.0\n274,107,11.5\n274,108,11.0\n274,109,10.5\n274,110,10.0\n274,111,9.5\n274,112,9.0\n274,113,8.5\n274,114,8.0\n274,115,7.5\n274,116,7.0\n274,117,6.5\n274,118,6.0\n274,119,5.5\n274,120,5.0\n274,121,4.5\n274,122,4.0\n274,123,3.5\n274,124,3.0\n274,125,14.5\n274,126,14.0\n274,127,13.5\n274,128,13.0\n274,129,12.5\n274,130,12.0\n274,131,11.5\n274,132,11.0\n274,133,10.5\n274,134,10.0\n274,135,9.5\n274,136,9.0\n274,137,8.5\n274,138,8.0\n274,139,7.5\n274,140,7.0\n274,141,6.5\n274,142,6.0\n274,143,5.5\n274,144,5.0\n274,145,4.5\n274,146,4.0\n274,147,3.5\n274,148,3.0\n274,149,2.5\n274,150,14.0\n274,151,13.5\n274,152,13.0\n274,153,12.5\n274,154,12.0\n274,155,11.5\n274,156,11.0\n274,157,10.5\n274,158,10.0\n274,159,9.5\n274,160,9.0\n274,161,8.5\n274,162,8.0\n274,163,7.5\n274,164,7.0\n274,165,6.5\n274,166,6.0\n274,167,5.5\n274,168,5.0\n274,169,4.5\n274,170,4.0\n274,171,3.5\n274,172,3.0\n274,173,2.5\n274,174,2.0\n274,175,13.5\n274,176,13.0\n274,177,12.5\n274,178,12.0\n274,179,11.5\n274,180,11.0\n274,181,10.5\n274,182,10.0\n274,183,9.5\n274,184,9.0\n274,185,8.5\n274,186,8.0\n274,187,7.5\n274,188,7.0\n274,189,6.5\n274,190,6.0\n274,191,5.5\n274,192,5.0\n274,193,4.5\n274,194,4.0\n274,195,3.5\n274,196,3.0\n274,197,2.5\n274,198,2.0\n274,199,1.5\n274,200,13.0\n274,201,12.5\n274,202,12.0\n274,203,11.5\n274,204,11.0\n274,205,10.5\n274,206,10.0\n274,207,9.5\n274,208,9.0\n274,209,8.5\n274,210,8.0\n274,211,7.5\n274,212,7.0\n274,213,6.5\n274,214,6.0\n274,215,5.5\n274,216,5.0\n274,217,4.5\n274,218,4.0\n274,219,3.5\n274,220,3.0\n274,221,2.5\n274,222,2.0\n274,223,1.5\n274,224,1.0\n274,225,12.5\n274,226,12.0\n274,227,11.5\n274,228,11.0\n274,229,10.5\n274,230,10.0\n274,231,9.5\n274,232,9.0\n274,233,8.5\n274,234,8.0\n274,235,7.5\n274,236,7.0\n274,237,6.5\n274,238,6.0\n274,239,5.5\n274,240,5.0\n274,241,4.5\n274,242,4.0\n274,243,3.5\n274,244,3.0\n274,245,2.5\n274,246,2.0\n274,247,1.5\n274,248,1.0\n274,249,0.5\n274,250,12.0\n274,251,11.5\n274,252,11.0\n274,253,10.5\n274,254,10.0\n274,255,9.5\n274,256,9.0\n274,257,8.5\n274,258,8.0\n274,259,7.5\n274,260,7.0\n274,261,6.5\n274,262,6.0\n274,263,5.5\n274,264,5.0\n274,265,4.5\n274,266,4.0\n274,267,3.5\n274,268,3.0\n274,269,2.5\n274,270,2.0\n274,271,1.5\n274,272,1.0\n274,273,0.5\n274,274,0\n274,275,12.5\n274,276,12.0\n274,277,11.5\n274,278,11.0\n274,279,10.5\n274,280,10.0\n274,281,9.5\n274,282,9.0\n274,283,8.5\n274,284,8.0\n274,285,7.5\n274,286,7.0\n274,287,6.5\n274,288,6.0\n274,289,5.5\n274,290,5.0\n274,291,4.5\n274,292,4.0\n274,293,3.5\n274,294,3.0\n274,295,2.5\n274,296,2.0\n274,297,1.5\n274,298,1.0\n274,299,0.5\n274,300,13.0\n274,301,12.5\n274,302,12.0\n274,303,11.5\n274,304,11.0\n274,305,10.5\n274,306,10.0\n274,307,9.5\n274,308,9.0\n274,309,8.5\n274,310,8.0\n274,311,7.5\n274,312,7.0\n274,313,6.5\n274,314,6.0\n274,315,5.5\n274,316,5.0\n274,317,4.5\n274,318,4.0\n274,319,3.5\n274,320,3.0\n274,321,2.5\n274,322,2.0\n274,323,1.5\n274,324,1.0\n274,325,13.5\n274,326,13.0\n274,327,12.5\n274,328,12.0\n274,329,11.5\n274,330,11.0\n274,331,10.5\n274,332,10.0\n274,333,9.5\n274,334,9.0\n274,335,8.5\n274,336,8.0\n274,337,7.5\n274,338,7.0\n274,339,6.5\n274,340,6.0\n274,341,5.5\n274,342,5.0\n274,343,4.5\n274,344,4.0\n274,345,3.5\n274,346,3.0\n274,347,2.5\n274,348,2.0\n274,349,1.5\n274,350,14.0\n274,351,13.5\n274,352,13.0\n274,353,12.5\n274,354,12.0\n274,355,11.5\n274,356,11.0\n274,357,10.5\n274,358,10.0\n274,359,9.5\n274,360,9.0\n274,361,8.5\n274,362,8.0\n274,363,7.5\n274,364,7.0\n274,365,6.5\n274,366,6.0\n274,367,5.5\n274,368,5.0\n274,369,4.5\n274,370,4.0\n274,371,3.5\n274,372,3.0\n274,373,2.5\n274,374,2.0\n274,375,14.5\n274,376,14.0\n274,377,13.5\n274,378,13.0\n274,379,12.5\n274,380,12.0\n274,381,11.5\n274,382,11.0\n274,383,10.5\n274,384,10.0\n274,385,9.5\n274,386,9.0\n274,387,8.5\n274,388,8.0\n274,389,7.5\n274,390,7.0\n274,391,6.5\n274,392,6.0\n274,393,5.5\n274,394,5.0\n274,395,4.5\n274,396,4.0\n274,397,3.5\n274,398,3.0\n274,399,2.5\n274,400,15.0\n274,401,14.5\n274,402,14.0\n274,403,13.5\n274,404,13.0\n274,405,12.5\n274,406,12.0\n274,407,11.5\n274,408,11.0\n274,409,10.5\n274,410,10.0\n274,411,9.5\n274,412,9.0\n274,413,8.5\n274,414,8.0\n274,415,7.5\n274,416,7.0\n274,417,6.5\n274,418,6.0\n274,419,5.5\n274,420,5.0\n274,421,4.5\n274,422,4.0\n274,423,3.5\n274,424,3.0\n274,425,15.5\n274,426,15.0\n274,427,14.5\n274,428,14.0\n274,429,13.5\n274,430,13.0\n274,431,12.5\n274,432,12.0\n274,433,11.5\n274,434,11.0\n274,435,10.5\n274,436,10.0\n274,437,9.5\n274,438,9.0\n274,439,8.5\n274,440,8.0\n274,441,7.5\n274,442,7.0\n274,443,6.5\n274,444,6.0\n274,445,5.5\n274,446,5.0\n274,447,4.5\n274,448,4.0\n274,449,3.5\n274,450,16.0\n274,451,15.5\n274,452,15.0\n274,453,14.5\n274,454,14.0\n274,455,13.5\n274,456,13.0\n274,457,12.5\n274,458,12.0\n274,459,11.5\n274,460,11.0\n274,461,10.5\n274,462,10.0\n274,463,9.5\n274,464,9.0\n274,465,8.5\n274,466,8.0\n274,467,7.5\n274,468,7.0\n274,469,6.5\n274,470,6.0\n274,471,5.5\n274,472,5.0\n274,473,4.5\n274,474,4.0\n274,475,16.5\n274,476,16.0\n274,477,15.5\n274,478,15.0\n274,479,14.5\n274,480,14.0\n274,481,13.5\n274,482,13.0\n274,483,12.5\n274,484,12.0\n274,485,11.5\n274,486,11.0\n274,487,10.5\n274,488,10.0\n274,489,9.5\n274,490,9.0\n274,491,8.5\n274,492,8.0\n274,493,7.5\n274,494,7.0\n274,495,6.5\n274,496,6.0\n274,497,5.5\n274,498,5.0\n274,499,4.5\n274,500,17.0\n274,501,16.5\n274,502,16.0\n274,503,15.5\n274,504,15.0\n274,505,14.5\n274,506,14.0\n274,507,13.5\n274,508,13.0\n274,509,12.5\n274,510,12.0\n274,511,11.5\n274,512,11.0\n274,513,10.5\n274,514,10.0\n274,515,9.5\n274,516,9.0\n274,517,8.5\n274,518,8.0\n274,519,7.5\n274,520,7.0\n274,521,6.5\n274,522,6.0\n274,523,5.5\n274,524,5.0\n274,525,17.5\n274,526,17.0\n274,527,16.5\n274,528,16.0\n274,529,15.5\n274,530,15.0\n274,531,14.5\n274,532,14.0\n274,533,13.5\n274,534,13.0\n274,535,12.5\n274,536,12.0\n274,537,11.5\n274,538,11.0\n274,539,10.5\n274,540,10.0\n274,541,9.5\n274,542,9.0\n274,543,8.5\n274,544,8.0\n274,545,7.5\n274,546,7.0\n274,547,6.5\n274,548,6.0\n274,549,5.5\n274,550,18.0\n274,551,17.5\n274,552,17.0\n274,553,16.5\n274,554,16.0\n274,555,15.5\n274,556,15.0\n274,557,14.5\n274,558,14.0\n274,559,13.5\n274,560,13.0\n274,561,12.5\n274,562,12.0\n274,563,11.5\n274,564,11.0\n274,565,10.5\n274,566,10.0\n274,567,9.5\n274,568,9.0\n274,569,8.5\n274,570,8.0\n274,571,7.5\n274,572,7.0\n274,573,6.5\n274,574,6.0\n274,575,18.5\n274,576,18.0\n274,577,17.5\n274,578,17.0\n274,579,16.5\n274,580,16.0\n274,581,15.5\n274,582,15.0\n274,583,14.5\n274,584,14.0\n274,585,13.5\n274,586,13.0\n274,587,12.5\n274,588,12.0\n274,589,11.5\n274,590,11.0\n274,591,10.5\n274,592,10.0\n274,593,9.5\n274,594,9.0\n274,595,8.5\n274,596,8.0\n274,597,7.5\n274,598,7.0\n274,599,6.5\n274,600,19.0\n274,601,18.5\n274,602,18.0\n274,603,17.5\n274,604,17.0\n274,605,16.5\n274,606,16.0\n274,607,15.5\n274,608,15.0\n274,609,14.5\n274,610,14.0\n274,611,13.5\n274,612,13.0\n274,613,12.5\n274,614,12.0\n274,615,11.5\n274,616,11.0\n274,617,10.5\n274,618,10.0\n274,619,9.5\n274,620,9.0\n274,621,8.5\n274,622,8.0\n274,623,7.5\n274,624,7.0\n275,0,5.5\n275,1,6.0\n275,2,6.5\n275,3,7.0\n275,4,7.5\n275,5,8.0\n275,6,8.5\n275,7,9.0\n275,8,9.5\n275,9,10.0\n275,10,10.5\n275,11,11.0\n275,12,11.5\n275,13,12.0\n275,14,12.5\n275,15,13.0\n275,16,13.5\n275,17,14.0\n275,18,14.5\n275,19,15.0\n275,20,15.5\n275,21,16.0\n275,22,16.5\n275,23,17.0\n275,24,17.5\n275,25,5.0\n275,26,5.5\n275,27,6.0\n275,28,6.5\n275,29,7.0\n275,30,7.5\n275,31,8.0\n275,32,8.5\n275,33,9.0\n275,34,9.5\n275,35,10.0\n275,36,10.5\n275,37,11.0\n275,38,11.5\n275,39,12.0\n275,40,12.5\n275,41,13.0\n275,42,13.5\n275,43,14.0\n275,44,14.5\n275,45,15.0\n275,46,15.5\n275,47,16.0\n275,48,16.5\n275,49,17.0\n275,50,4.5\n275,51,5.0\n275,52,5.5\n275,53,6.0\n275,54,6.5\n275,55,7.0\n275,56,7.5\n275,57,8.0\n275,58,8.5\n275,59,9.0\n275,60,9.5\n275,61,10.0\n275,62,10.5\n275,63,11.0\n275,64,11.5\n275,65,12.0\n275,66,12.5\n275,67,13.0\n275,68,13.5\n275,69,14.0\n275,70,14.5\n275,71,15.0\n275,72,15.5\n275,73,16.0\n275,74,16.5\n275,75,4.0\n275,76,4.5\n275,77,5.0\n275,78,5.5\n275,79,6.0\n275,80,6.5\n275,81,7.0\n275,82,7.5\n275,83,8.0\n275,84,8.5\n275,85,9.0\n275,86,9.5\n275,87,10.0\n275,88,10.5\n275,89,11.0\n275,90,11.5\n275,91,12.0\n275,92,12.5\n275,93,13.0\n275,94,13.5\n275,95,14.0\n275,96,14.5\n275,97,15.0\n275,98,15.5\n275,99,16.0\n275,100,3.5\n275,101,4.0\n275,102,4.5\n275,103,5.0\n275,104,5.5\n275,105,6.0\n275,106,6.5\n275,107,7.0\n275,108,7.5\n275,109,8.0\n275,110,8.5\n275,111,9.0\n275,112,9.5\n275,113,10.0\n275,114,10.5\n275,115,11.0\n275,116,11.5\n275,117,12.0\n275,118,12.5\n275,119,13.0\n275,120,13.5\n275,121,14.0\n275,122,14.5\n275,123,15.0\n275,124,15.5\n275,125,3.0\n275,126,3.5\n275,127,4.0\n275,128,4.5\n275,129,5.0\n275,130,5.5\n275,131,6.0\n275,132,6.5\n275,133,7.0\n275,134,7.5\n275,135,8.0\n275,136,8.5\n275,137,9.0\n275,138,9.5\n275,139,10.0\n275,140,10.5\n275,141,11.0\n275,142,11.5\n275,143,12.0\n275,144,12.5\n275,145,13.0\n275,146,13.5\n275,147,14.0\n275,148,14.5\n275,149,15.0\n275,150,2.5\n275,151,3.0\n275,152,3.5\n275,153,4.0\n275,154,4.5\n275,155,5.0\n275,156,5.5\n275,157,6.0\n275,158,6.5\n275,159,7.0\n275,160,7.5\n275,161,8.0\n275,162,8.5\n275,163,9.0\n275,164,9.5\n275,165,10.0\n275,166,10.5\n275,167,11.0\n275,168,11.5\n275,169,12.0\n275,170,12.5\n275,171,13.0\n275,172,13.5\n275,173,14.0\n275,174,14.5\n275,175,2.0\n275,176,2.5\n275,177,3.0\n275,178,3.5\n275,179,4.0\n275,180,4.5\n275,181,5.0\n275,182,5.5\n275,183,6.0\n275,184,6.5\n275,185,7.0\n275,186,7.5\n275,187,8.0\n275,188,8.5\n275,189,9.0\n275,190,9.5\n275,191,10.0\n275,192,10.5\n275,193,11.0\n275,194,11.5\n275,195,12.0\n275,196,12.5\n275,197,13.0\n275,198,13.5\n275,199,14.0\n275,200,1.5\n275,201,2.0\n275,202,2.5\n275,203,3.0\n275,204,3.5\n275,205,4.0\n275,206,4.5\n275,207,5.0\n275,208,5.5\n275,209,6.0\n275,210,6.5\n275,211,7.0\n275,212,7.5\n275,213,8.0\n275,214,8.5\n275,215,9.0\n275,216,9.5\n275,217,10.0\n275,218,10.5\n275,219,11.0\n275,220,11.5\n275,221,12.0\n275,222,12.5\n275,223,13.0\n275,224,13.5\n275,225,1.0\n275,226,1.5\n275,227,2.0\n275,228,2.5\n275,229,3.0\n275,230,3.5\n275,231,4.0\n275,232,4.5\n275,233,5.0\n275,234,5.5\n275,235,6.0\n275,236,6.5\n275,237,7.0\n275,238,7.5\n275,239,8.0\n275,240,8.5\n275,241,9.0\n275,242,9.5\n275,243,10.0\n275,244,10.5\n275,245,11.0\n275,246,11.5\n275,247,12.0\n275,248,12.5\n275,249,13.0\n275,250,0.5\n275,251,1.0\n275,252,1.5\n275,253,2.0\n275,254,2.5\n275,255,3.0\n275,256,3.5\n275,257,4.0\n275,258,4.5\n275,259,5.0\n275,260,5.5\n275,261,6.0\n275,262,6.5\n275,263,7.0\n275,264,7.5\n275,265,8.0\n275,266,8.5\n275,267,9.0\n275,268,9.5\n275,269,10.0\n275,270,10.5\n275,271,11.0\n275,272,11.5\n275,273,12.0\n275,274,12.5\n275,275,0\n275,276,0.5\n275,277,1.0\n275,278,1.5\n275,279,2.0\n275,280,2.5\n275,281,3.0\n275,282,3.5\n275,283,4.0\n275,284,4.5\n275,285,5.0\n275,286,5.5\n275,287,6.0\n275,288,6.5\n275,289,7.0\n275,290,7.5\n275,291,8.0\n275,292,8.5\n275,293,9.0\n275,294,9.5\n275,295,10.0\n275,296,10.5\n275,297,11.0\n275,298,11.5\n275,299,12.0\n275,300,0.5\n275,301,1.0\n275,302,1.5\n275,303,2.0\n275,304,2.5\n275,305,3.0\n275,306,3.5\n275,307,4.0\n275,308,4.5\n275,309,5.0\n275,310,5.5\n275,311,6.0\n275,312,6.5\n275,313,7.0\n275,314,7.5\n275,315,8.0\n275,316,8.5\n275,317,9.0\n275,318,9.5\n275,319,10.0\n275,320,10.5\n275,321,11.0\n275,322,11.5\n275,323,12.0\n275,324,12.5\n275,325,1.0\n275,326,1.5\n275,327,2.0\n275,328,2.5\n275,329,3.0\n275,330,3.5\n275,331,4.0\n275,332,4.5\n275,333,5.0\n275,334,5.5\n275,335,6.0\n275,336,6.5\n275,337,7.0\n275,338,7.5\n275,339,8.0\n275,340,8.5\n275,341,9.0\n275,342,9.5\n275,343,10.0\n275,344,10.5\n275,345,11.0\n275,346,11.5\n275,347,12.0\n275,348,12.5\n275,349,13.0\n275,350,1.5\n275,351,2.0\n275,352,2.5\n275,353,3.0\n275,354,3.5\n275,355,4.0\n275,356,4.5\n275,357,5.0\n275,358,5.5\n275,359,6.0\n275,360,6.5\n275,361,7.0\n275,362,7.5\n275,363,8.0\n275,364,8.5\n275,365,9.0\n275,366,9.5\n275,367,10.0\n275,368,10.5\n275,369,11.0\n275,370,11.5\n275,371,12.0\n275,372,12.5\n275,373,13.0\n275,374,13.5\n275,375,2.0\n275,376,2.5\n275,377,3.0\n275,378,3.5\n275,379,4.0\n275,380,4.5\n275,381,5.0\n275,382,5.5\n275,383,6.0\n275,384,6.5\n275,385,7.0\n275,386,7.5\n275,387,8.0\n275,388,8.5\n275,389,9.0\n275,390,9.5\n275,391,10.0\n275,392,10.5\n275,393,11.0\n275,394,11.5\n275,395,12.0\n275,396,12.5\n275,397,13.0\n275,398,13.5\n275,399,14.0\n275,400,2.5\n275,401,3.0\n275,402,3.5\n275,403,4.0\n275,404,4.5\n275,405,5.0\n275,406,5.5\n275,407,6.0\n275,408,6.5\n275,409,7.0\n275,410,7.5\n275,411,8.0\n275,412,8.5\n275,413,9.0\n275,414,9.5\n275,415,10.0\n275,416,10.5\n275,417,11.0\n275,418,11.5\n275,419,12.0\n275,420,12.5\n275,421,13.0\n275,422,13.5\n275,423,14.0\n275,424,14.5\n275,425,3.0\n275,426,3.5\n275,427,4.0\n275,428,4.5\n275,429,5.0\n275,430,5.5\n275,431,6.0\n275,432,6.5\n275,433,7.0\n275,434,7.5\n275,435,8.0\n275,436,8.5\n275,437,9.0\n275,438,9.5\n275,439,10.0\n275,440,10.5\n275,441,11.0\n275,442,11.5\n275,443,12.0\n275,444,12.5\n275,445,13.0\n275,446,13.5\n275,447,14.0\n275,448,14.5\n275,449,15.0\n275,450,3.5\n275,451,4.0\n275,452,4.5\n275,453,5.0\n275,454,5.5\n275,455,6.0\n275,456,6.5\n275,457,7.0\n275,458,7.5\n275,459,8.0\n275,460,8.5\n275,461,9.0\n275,462,9.5\n275,463,10.0\n275,464,10.5\n275,465,11.0\n275,466,11.5\n275,467,12.0\n275,468,12.5\n275,469,13.0\n275,470,13.5\n275,471,14.0\n275,472,14.5\n275,473,15.0\n275,474,15.5\n275,475,4.0\n275,476,4.5\n275,477,5.0\n275,478,5.5\n275,479,6.0\n275,480,6.5\n275,481,7.0\n275,482,7.5\n275,483,8.0\n275,484,8.5\n275,485,9.0\n275,486,9.5\n275,487,10.0\n275,488,10.5\n275,489,11.0\n275,490,11.5\n275,491,12.0\n275,492,12.5\n275,493,13.0\n275,494,13.5\n275,495,14.0\n275,496,14.5\n275,497,15.0\n275,498,15.5\n275,499,16.0\n275,500,4.5\n275,501,5.0\n275,502,5.5\n275,503,6.0\n275,504,6.5\n275,505,7.0\n275,506,7.5\n275,507,8.0\n275,508,8.5\n275,509,9.0\n275,510,9.5\n275,511,10.0\n275,512,10.5\n275,513,11.0\n275,514,11.5\n275,515,12.0\n275,516,12.5\n275,517,13.0\n275,518,13.5\n275,519,14.0\n275,520,14.5\n275,521,15.0\n275,522,15.5\n275,523,16.0\n275,524,16.5\n275,525,5.0\n275,526,5.5\n275,527,6.0\n275,528,6.5\n275,529,7.0\n275,530,7.5\n275,531,8.0\n275,532,8.5\n275,533,9.0\n275,534,9.5\n275,535,10.0\n275,536,10.5\n275,537,11.0\n275,538,11.5\n275,539,12.0\n275,540,12.5\n275,541,13.0\n275,542,13.5\n275,543,14.0\n275,544,14.5\n275,545,15.0\n275,546,15.5\n275,547,16.0\n275,548,16.5\n275,549,17.0\n275,550,5.5\n275,551,6.0\n275,552,6.5\n275,553,7.0\n275,554,7.5\n275,555,8.0\n275,556,8.5\n275,557,9.0\n275,558,9.5\n275,559,10.0\n275,560,10.5\n275,561,11.0\n275,562,11.5\n275,563,12.0\n275,564,12.5\n275,565,13.0\n275,566,13.5\n275,567,14.0\n275,568,14.5\n275,569,15.0\n275,570,15.5\n275,571,16.0\n275,572,16.5\n275,573,17.0\n275,574,17.5\n275,575,6.0\n275,576,6.5\n275,577,7.0\n275,578,7.5\n275,579,8.0\n275,580,8.5\n275,581,9.0\n275,582,9.5\n275,583,10.0\n275,584,10.5\n275,585,11.0\n275,586,11.5\n275,587,12.0\n275,588,12.5\n275,589,13.0\n275,590,13.5\n275,591,14.0\n275,592,14.5\n275,593,15.0\n275,594,15.5\n275,595,16.0\n275,596,16.5\n275,597,17.0\n275,598,17.5\n275,599,18.0\n275,600,6.5\n275,601,7.0\n275,602,7.5\n275,603,8.0\n275,604,8.5\n275,605,9.0\n275,606,9.5\n275,607,10.0\n275,608,10.5\n275,609,11.0\n275,610,11.5\n275,611,12.0\n275,612,12.5\n275,613,13.0\n275,614,13.5\n275,615,14.0\n275,616,14.5\n275,617,15.0\n275,618,15.5\n275,619,16.0\n275,620,16.5\n275,621,17.0\n275,622,17.5\n275,623,18.0\n275,624,18.5\n276,0,6.0\n276,1,5.5\n276,2,6.0\n276,3,6.5\n276,4,7.0\n276,5,7.5\n276,6,8.0\n276,7,8.5\n276,8,9.0\n276,9,9.5\n276,10,10.0\n276,11,10.5\n276,12,11.0\n276,13,11.5\n276,14,12.0\n276,15,12.5\n276,16,13.0\n276,17,13.5\n276,18,14.0\n276,19,14.5\n276,20,15.0\n276,21,15.5\n276,22,16.0\n276,23,16.5\n276,24,17.0\n276,25,5.5\n276,26,5.0\n276,27,5.5\n276,28,6.0\n276,29,6.5\n276,30,7.0\n276,31,7.5\n276,32,8.0\n276,33,8.5\n276,34,9.0\n276,35,9.5\n276,36,10.0\n276,37,10.5\n276,38,11.0\n276,39,11.5\n276,40,12.0\n276,41,12.5\n276,42,13.0\n276,43,13.5\n276,44,14.0\n276,45,14.5\n276,46,15.0\n276,47,15.5\n276,48,16.0\n276,49,16.5\n276,50,5.0\n276,51,4.5\n276,52,5.0\n276,53,5.5\n276,54,6.0\n276,55,6.5\n276,56,7.0\n276,57,7.5\n276,58,8.0\n276,59,8.5\n276,60,9.0\n276,61,9.5\n276,62,10.0\n276,63,10.5\n276,64,11.0\n276,65,11.5\n276,66,12.0\n276,67,12.5\n276,68,13.0\n276,69,13.5\n276,70,14.0\n276,71,14.5\n276,72,15.0\n276,73,15.5\n276,74,16.0\n276,75,4.5\n276,76,4.0\n276,77,4.5\n276,78,5.0\n276,79,5.5\n276,80,6.0\n276,81,6.5\n276,82,7.0\n276,83,7.5\n276,84,8.0\n276,85,8.5\n276,86,9.0\n276,87,9.5\n276,88,10.0\n276,89,10.5\n276,90,11.0\n276,91,11.5\n276,92,12.0\n276,93,12.5\n276,94,13.0\n276,95,13.5\n276,96,14.0\n276,97,14.5\n276,98,15.0\n276,99,15.5\n276,100,4.0\n276,101,3.5\n276,102,4.0\n276,103,4.5\n276,104,5.0\n276,105,5.5\n276,106,6.0\n276,107,6.5\n276,108,7.0\n276,109,7.5\n276,110,8.0\n276,111,8.5\n276,112,9.0\n276,113,9.5\n276,114,10.0\n276,115,10.5\n276,116,11.0\n276,117,11.5\n276,118,12.0\n276,119,12.5\n276,120,13.0\n276,121,13.5\n276,122,14.0\n276,123,14.5\n276,124,15.0\n276,125,3.5\n276,126,3.0\n276,127,3.5\n276,128,4.0\n276,129,4.5\n276,130,5.0\n276,131,5.5\n276,132,6.0\n276,133,6.5\n276,134,7.0\n276,135,7.5\n276,136,8.0\n276,137,8.5\n276,138,9.0\n276,139,9.5\n276,140,10.0\n276,141,10.5\n276,142,11.0\n276,143,11.5\n276,144,12.0\n276,145,12.5\n276,146,13.0\n276,147,13.5\n276,148,14.0\n276,149,14.5\n276,150,3.0\n276,151,2.5\n276,152,3.0\n276,153,3.5\n276,154,4.0\n276,155,4.5\n276,156,5.0\n276,157,5.5\n276,158,6.0\n276,159,6.5\n276,160,7.0\n276,161,7.5\n276,162,8.0\n276,163,8.5\n276,164,9.0\n276,165,9.5\n276,166,10.0\n276,167,10.5\n276,168,11.0\n276,169,11.5\n276,170,12.0\n276,171,12.5\n276,172,13.0\n276,173,13.5\n276,174,14.0\n276,175,2.5\n276,176,2.0\n276,177,2.5\n276,178,3.0\n276,179,3.5\n276,180,4.0\n276,181,4.5\n276,182,5.0\n276,183,5.5\n276,184,6.0\n276,185,6.5\n276,186,7.0\n276,187,7.5\n276,188,8.0\n276,189,8.5\n276,190,9.0\n276,191,9.5\n276,192,10.0\n276,193,10.5\n276,194,11.0\n276,195,11.5\n276,196,12.0\n276,197,12.5\n276,198,13.0\n276,199,13.5\n276,200,2.0\n276,201,1.5\n276,202,2.0\n276,203,2.5\n276,204,3.0\n276,205,3.5\n276,206,4.0\n276,207,4.5\n276,208,5.0\n276,209,5.5\n276,210,6.0\n276,211,6.5\n276,212,7.0\n276,213,7.5\n276,214,8.0\n276,215,8.5\n276,216,9.0\n276,217,9.5\n276,218,10.0\n276,219,10.5\n276,220,11.0\n276,221,11.5\n276,222,12.0\n276,223,12.5\n276,224,13.0\n276,225,1.5\n276,226,1.0\n276,227,1.5\n276,228,2.0\n276,229,2.5\n276,230,3.0\n276,231,3.5\n276,232,4.0\n276,233,4.5\n276,234,5.0\n276,235,5.5\n276,236,6.0\n276,237,6.5\n276,238,7.0\n276,239,7.5\n276,240,8.0\n276,241,8.5\n276,242,9.0\n276,243,9.5\n276,244,10.0\n276,245,10.5\n276,246,11.0\n276,247,11.5\n276,248,12.0\n276,249,12.5\n276,250,1.0\n276,251,0.5\n276,252,1.0\n276,253,1.5\n276,254,2.0\n276,255,2.5\n276,256,3.0\n276,257,3.5\n276,258,4.0\n276,259,4.5\n276,260,5.0\n276,261,5.5\n276,262,6.0\n276,263,6.5\n276,264,7.0\n276,265,7.5\n276,266,8.0\n276,267,8.5\n276,268,9.0\n276,269,9.5\n276,270,10.0\n276,271,10.5\n276,272,11.0\n276,273,11.5\n276,274,12.0\n276,275,0.5\n276,276,0\n276,277,0.5\n276,278,1.0\n276,279,1.5\n276,280,2.0\n276,281,2.5\n276,282,3.0\n276,283,3.5\n276,284,4.0\n276,285,4.5\n276,286,5.0\n276,287,5.5\n276,288,6.0\n276,289,6.5\n276,290,7.0\n276,291,7.5\n276,292,8.0\n276,293,8.5\n276,294,9.0\n276,295,9.5\n276,296,10.0\n276,297,10.5\n276,298,11.0\n276,299,11.5\n276,300,1.0\n276,301,0.5\n276,302,1.0\n276,303,1.5\n276,304,2.0\n276,305,2.5\n276,306,3.0\n276,307,3.5\n276,308,4.0\n276,309,4.5\n276,310,5.0\n276,311,5.5\n276,312,6.0\n276,313,6.5\n276,314,7.0\n276,315,7.5\n276,316,8.0\n276,317,8.5\n276,318,9.0\n276,319,9.5\n276,320,10.0\n276,321,10.5\n276,322,11.0\n276,323,11.5\n276,324,12.0\n276,325,1.5\n276,326,1.0\n276,327,1.5\n276,328,2.0\n276,329,2.5\n276,330,3.0\n276,331,3.5\n276,332,4.0\n276,333,4.5\n276,334,5.0\n276,335,5.5\n276,336,6.0\n276,337,6.5\n276,338,7.0\n276,339,7.5\n276,340,8.0\n276,341,8.5\n276,342,9.0\n276,343,9.5\n276,344,10.0\n276,345,10.5\n276,346,11.0\n276,347,11.5\n276,348,12.0\n276,349,12.5\n276,350,2.0\n276,351,1.5\n276,352,2.0\n276,353,2.5\n276,354,3.0\n276,355,3.5\n276,356,4.0\n276,357,4.5\n276,358,5.0\n276,359,5.5\n276,360,6.0\n276,361,6.5\n276,362,7.0\n276,363,7.5\n276,364,8.0\n276,365,8.5\n276,366,9.0\n276,367,9.5\n276,368,10.0\n276,369,10.5\n276,370,11.0\n276,371,11.5\n276,372,12.0\n276,373,12.5\n276,374,13.0\n276,375,2.5\n276,376,2.0\n276,377,2.5\n276,378,3.0\n276,379,3.5\n276,380,4.0\n276,381,4.5\n276,382,5.0\n276,383,5.5\n276,384,6.0\n276,385,6.5\n276,386,7.0\n276,387,7.5\n276,388,8.0\n276,389,8.5\n276,390,9.0\n276,391,9.5\n276,392,10.0\n276,393,10.5\n276,394,11.0\n276,395,11.5\n276,396,12.0\n276,397,12.5\n276,398,13.0\n276,399,13.5\n276,400,3.0\n276,401,2.5\n276,402,3.0\n276,403,3.5\n276,404,4.0\n276,405,4.5\n276,406,5.0\n276,407,5.5\n276,408,6.0\n276,409,6.5\n276,410,7.0\n276,411,7.5\n276,412,8.0\n276,413,8.5\n276,414,9.0\n276,415,9.5\n276,416,10.0\n276,417,10.5\n276,418,11.0\n276,419,11.5\n276,420,12.0\n276,421,12.5\n276,422,13.0\n276,423,13.5\n276,424,14.0\n276,425,3.5\n276,426,3.0\n276,427,3.5\n276,428,4.0\n276,429,4.5\n276,430,5.0\n276,431,5.5\n276,432,6.0\n276,433,6.5\n276,434,7.0\n276,435,7.5\n276,436,8.0\n276,437,8.5\n276,438,9.0\n276,439,9.5\n276,440,10.0\n276,441,10.5\n276,442,11.0\n276,443,11.5\n276,444,12.0\n276,445,12.5\n276,446,13.0\n276,447,13.5\n276,448,14.0\n276,449,14.5\n276,450,4.0\n276,451,3.5\n276,452,4.0\n276,453,4.5\n276,454,5.0\n276,455,5.5\n276,456,6.0\n276,457,6.5\n276,458,7.0\n276,459,7.5\n276,460,8.0\n276,461,8.5\n276,462,9.0\n276,463,9.5\n276,464,10.0\n276,465,10.5\n276,466,11.0\n276,467,11.5\n276,468,12.0\n276,469,12.5\n276,470,13.0\n276,471,13.5\n276,472,14.0\n276,473,14.5\n276,474,15.0\n276,475,4.5\n276,476,4.0\n276,477,4.5\n276,478,5.0\n276,479,5.5\n276,480,6.0\n276,481,6.5\n276,482,7.0\n276,483,7.5\n276,484,8.0\n276,485,8.5\n276,486,9.0\n276,487,9.5\n276,488,10.0\n276,489,10.5\n276,490,11.0\n276,491,11.5\n276,492,12.0\n276,493,12.5\n276,494,13.0\n276,495,13.5\n276,496,14.0\n276,497,14.5\n276,498,15.0\n276,499,15.5\n276,500,5.0\n276,501,4.5\n276,502,5.0\n276,503,5.5\n276,504,6.0\n276,505,6.5\n276,506,7.0\n276,507,7.5\n276,508,8.0\n276,509,8.5\n276,510,9.0\n276,511,9.5\n276,512,10.0\n276,513,10.5\n276,514,11.0\n276,515,11.5\n276,516,12.0\n276,517,12.5\n276,518,13.0\n276,519,13.5\n276,520,14.0\n276,521,14.5\n276,522,15.0\n276,523,15.5\n276,524,16.0\n276,525,5.5\n276,526,5.0\n276,527,5.5\n276,528,6.0\n276,529,6.5\n276,530,7.0\n276,531,7.5\n276,532,8.0\n276,533,8.5\n276,534,9.0\n276,535,9.5\n276,536,10.0\n276,537,10.5\n276,538,11.0\n276,539,11.5\n276,540,12.0\n276,541,12.5\n276,542,13.0\n276,543,13.5\n276,544,14.0\n276,545,14.5\n276,546,15.0\n276,547,15.5\n276,548,16.0\n276,549,16.5\n276,550,6.0\n276,551,5.5\n276,552,6.0\n276,553,6.5\n276,554,7.0\n276,555,7.5\n276,556,8.0\n276,557,8.5\n276,558,9.0\n276,559,9.5\n276,560,10.0\n276,561,10.5\n276,562,11.0\n276,563,11.5\n276,564,12.0\n276,565,12.5\n276,566,13.0\n276,567,13.5\n276,568,14.0\n276,569,14.5\n276,570,15.0\n276,571,15.5\n276,572,16.0\n276,573,16.5\n276,574,17.0\n276,575,6.5\n276,576,6.0\n276,577,6.5\n276,578,7.0\n276,579,7.5\n276,580,8.0\n276,581,8.5\n276,582,9.0\n276,583,9.5\n276,584,10.0\n276,585,10.5\n276,586,11.0\n276,587,11.5\n276,588,12.0\n276,589,12.5\n276,590,13.0\n276,591,13.5\n276,592,14.0\n276,593,14.5\n276,594,15.0\n276,595,15.5\n276,596,16.0\n276,597,16.5\n276,598,17.0\n276,599,17.5\n276,600,7.0\n276,601,6.5\n276,602,7.0\n276,603,7.5\n276,604,8.0\n276,605,8.5\n276,606,9.0\n276,607,9.5\n276,608,10.0\n276,609,10.5\n276,610,11.0\n276,611,11.5\n276,612,12.0\n276,613,12.5\n276,614,13.0\n276,615,13.5\n276,616,14.0\n276,617,14.5\n276,618,15.0\n276,619,15.5\n276,620,16.0\n276,621,16.5\n276,622,17.0\n276,623,17.5\n276,624,18.0\n277,0,6.5\n277,1,6.0\n277,2,5.5\n277,3,6.0\n277,4,6.5\n277,5,7.0\n277,6,7.5\n277,7,8.0\n277,8,8.5\n277,9,9.0\n277,10,9.5\n277,11,10.0\n277,12,10.5\n277,13,11.0\n277,14,11.5\n277,15,12.0\n277,16,12.5\n277,17,13.0\n277,18,13.5\n277,19,14.0\n277,20,14.5\n277,21,15.0\n277,22,15.5\n277,23,16.0\n277,24,16.5\n277,25,6.0\n277,26,5.5\n277,27,5.0\n277,28,5.5\n277,29,6.0\n277,30,6.5\n277,31,7.0\n277,32,7.5\n277,33,8.0\n277,34,8.5\n277,35,9.0\n277,36,9.5\n277,37,10.0\n277,38,10.5\n277,39,11.0\n277,40,11.5\n277,41,12.0\n277,42,12.5\n277,43,13.0\n277,44,13.5\n277,45,14.0\n277,46,14.5\n277,47,15.0\n277,48,15.5\n277,49,16.0\n277,50,5.5\n277,51,5.0\n277,52,4.5\n277,53,5.0\n277,54,5.5\n277,55,6.0\n277,56,6.5\n277,57,7.0\n277,58,7.5\n277,59,8.0\n277,60,8.5\n277,61,9.0\n277,62,9.5\n277,63,10.0\n277,64,10.5\n277,65,11.0\n277,66,11.5\n277,67,12.0\n277,68,12.5\n277,69,13.0\n277,70,13.5\n277,71,14.0\n277,72,14.5\n277,73,15.0\n277,74,15.5\n277,75,5.0\n277,76,4.5\n277,77,4.0\n277,78,4.5\n277,79,5.0\n277,80,5.5\n277,81,6.0\n277,82,6.5\n277,83,7.0\n277,84,7.5\n277,85,8.0\n277,86,8.5\n277,87,9.0\n277,88,9.5\n277,89,10.0\n277,90,10.5\n277,91,11.0\n277,92,11.5\n277,93,12.0\n277,94,12.5\n277,95,13.0\n277,96,13.5\n277,97,14.0\n277,98,14.5\n277,99,15.0\n277,100,4.5\n277,101,4.0\n277,102,3.5\n277,103,4.0\n277,104,4.5\n277,105,5.0\n277,106,5.5\n277,107,6.0\n277,108,6.5\n277,109,7.0\n277,110,7.5\n277,111,8.0\n277,112,8.5\n277,113,9.0\n277,114,9.5\n277,115,10.0\n277,116,10.5\n277,117,11.0\n277,118,11.5\n277,119,12.0\n277,120,12.5\n277,121,13.0\n277,122,13.5\n277,123,14.0\n277,124,14.5\n277,125,4.0\n277,126,3.5\n277,127,3.0\n277,128,3.5\n277,129,4.0\n277,130,4.5\n277,131,5.0\n277,132,5.5\n277,133,6.0\n277,134,6.5\n277,135,7.0\n277,136,7.5\n277,137,8.0\n277,138,8.5\n277,139,9.0\n277,140,9.5\n277,141,10.0\n277,142,10.5\n277,143,11.0\n277,144,11.5\n277,145,12.0\n277,146,12.5\n277,147,13.0\n277,148,13.5\n277,149,14.0\n277,150,3.5\n277,151,3.0\n277,152,2.5\n277,153,3.0\n277,154,3.5\n277,155,4.0\n277,156,4.5\n277,157,5.0\n277,158,5.5\n277,159,6.0\n277,160,6.5\n277,161,7.0\n277,162,7.5\n277,163,8.0\n277,164,8.5\n277,165,9.0\n277,166,9.5\n277,167,10.0\n277,168,10.5\n277,169,11.0\n277,170,11.5\n277,171,12.0\n277,172,12.5\n277,173,13.0\n277,174,13.5\n277,175,3.0\n277,176,2.5\n277,177,2.0\n277,178,2.5\n277,179,3.0\n277,180,3.5\n277,181,4.0\n277,182,4.5\n277,183,5.0\n277,184,5.5\n277,185,6.0\n277,186,6.5\n277,187,7.0\n277,188,7.5\n277,189,8.0\n277,190,8.5\n277,191,9.0\n277,192,9.5\n277,193,10.0\n277,194,10.5\n277,195,11.0\n277,196,11.5\n277,197,12.0\n277,198,12.5\n277,199,13.0\n277,200,2.5\n277,201,2.0\n277,202,1.5\n277,203,2.0\n277,204,2.5\n277,205,3.0\n277,206,3.5\n277,207,4.0\n277,208,4.5\n277,209,5.0\n277,210,5.5\n277,211,6.0\n277,212,6.5\n277,213,7.0\n277,214,7.5\n277,215,8.0\n277,216,8.5\n277,217,9.0\n277,218,9.5\n277,219,10.0\n277,220,10.5\n277,221,11.0\n277,222,11.5\n277,223,12.0\n277,224,12.5\n277,225,2.0\n277,226,1.5\n277,227,1.0\n277,228,1.5\n277,229,2.0\n277,230,2.5\n277,231,3.0\n277,232,3.5\n277,233,4.0\n277,234,4.5\n277,235,5.0\n277,236,5.5\n277,237,6.0\n277,238,6.5\n277,239,7.0\n277,240,7.5\n277,241,8.0\n277,242,8.5\n277,243,9.0\n277,244,9.5\n277,245,10.0\n277,246,10.5\n277,247,11.0\n277,248,11.5\n277,249,12.0\n277,250,1.5\n277,251,1.0\n277,252,0.5\n277,253,1.0\n277,254,1.5\n277,255,2.0\n277,256,2.5\n277,257,3.0\n277,258,3.5\n277,259,4.0\n277,260,4.5\n277,261,5.0\n277,262,5.5\n277,263,6.0\n277,264,6.5\n277,265,7.0\n277,266,7.5\n277,267,8.0\n277,268,8.5\n277,269,9.0\n277,270,9.5\n277,271,10.0\n277,272,10.5\n277,273,11.0\n277,274,11.5\n277,275,1.0\n277,276,0.5\n277,277,0\n277,278,0.5\n277,279,1.0\n277,280,1.5\n277,281,2.0\n277,282,2.5\n277,283,3.0\n277,284,3.5\n277,285,4.0\n277,286,4.5\n277,287,5.0\n277,288,5.5\n277,289,6.0\n277,290,6.5\n277,291,7.0\n277,292,7.5\n277,293,8.0\n277,294,8.5\n277,295,9.0\n277,296,9.5\n277,297,10.0\n277,298,10.5\n277,299,11.0\n277,300,1.5\n277,301,1.0\n277,302,0.5\n277,303,1.0\n277,304,1.5\n277,305,2.0\n277,306,2.5\n277,307,3.0\n277,308,3.5\n277,309,4.0\n277,310,4.5\n277,311,5.0\n277,312,5.5\n277,313,6.0\n277,314,6.5\n277,315,7.0\n277,316,7.5\n277,317,8.0\n277,318,8.5\n277,319,9.0\n277,320,9.5\n277,321,10.0\n277,322,10.5\n277,323,11.0\n277,324,11.5\n277,325,2.0\n277,326,1.5\n277,327,1.0\n277,328,1.5\n277,329,2.0\n277,330,2.5\n277,331,3.0\n277,332,3.5\n277,333,4.0\n277,334,4.5\n277,335,5.0\n277,336,5.5\n277,337,6.0\n277,338,6.5\n277,339,7.0\n277,340,7.5\n277,341,8.0\n277,342,8.5\n277,343,9.0\n277,344,9.5\n277,345,10.0\n277,346,10.5\n277,347,11.0\n277,348,11.5\n277,349,12.0\n277,350,2.5\n277,351,2.0\n277,352,1.5\n277,353,2.0\n277,354,2.5\n277,355,3.0\n277,356,3.5\n277,357,4.0\n277,358,4.5\n277,359,5.0\n277,360,5.5\n277,361,6.0\n277,362,6.5\n277,363,7.0\n277,364,7.5\n277,365,8.0\n277,366,8.5\n277,367,9.0\n277,368,9.5\n277,369,10.0\n277,370,10.5\n277,371,11.0\n277,372,11.5\n277,373,12.0\n277,374,12.5\n277,375,3.0\n277,376,2.5\n277,377,2.0\n277,378,2.5\n277,379,3.0\n277,380,3.5\n277,381,4.0\n277,382,4.5\n277,383,5.0\n277,384,5.5\n277,385,6.0\n277,386,6.5\n277,387,7.0\n277,388,7.5\n277,389,8.0\n277,390,8.5\n277,391,9.0\n277,392,9.5\n277,393,10.0\n277,394,10.5\n277,395,11.0\n277,396,11.5\n277,397,12.0\n277,398,12.5\n277,399,13.0\n277,400,3.5\n277,401,3.0\n277,402,2.5\n277,403,3.0\n277,404,3.5\n277,405,4.0\n277,406,4.5\n277,407,5.0\n277,408,5.5\n277,409,6.0\n277,410,6.5\n277,411,7.0\n277,412,7.5\n277,413,8.0\n277,414,8.5\n277,415,9.0\n277,416,9.5\n277,417,10.0\n277,418,10.5\n277,419,11.0\n277,420,11.5\n277,421,12.0\n277,422,12.5\n277,423,13.0\n277,424,13.5\n277,425,4.0\n277,426,3.5\n277,427,3.0\n277,428,3.5\n277,429,4.0\n277,430,4.5\n277,431,5.0\n277,432,5.5\n277,433,6.0\n277,434,6.5\n277,435,7.0\n277,436,7.5\n277,437,8.0\n277,438,8.5\n277,439,9.0\n277,440,9.5\n277,441,10.0\n277,442,10.5\n277,443,11.0\n277,444,11.5\n277,445,12.0\n277,446,12.5\n277,447,13.0\n277,448,13.5\n277,449,14.0\n277,450,4.5\n277,451,4.0\n277,452,3.5\n277,453,4.0\n277,454,4.5\n277,455,5.0\n277,456,5.5\n277,457,6.0\n277,458,6.5\n277,459,7.0\n277,460,7.5\n277,461,8.0\n277,462,8.5\n277,463,9.0\n277,464,9.5\n277,465,10.0\n277,466,10.5\n277,467,11.0\n277,468,11.5\n277,469,12.0\n277,470,12.5\n277,471,13.0\n277,472,13.5\n277,473,14.0\n277,474,14.5\n277,475,5.0\n277,476,4.5\n277,477,4.0\n277,478,4.5\n277,479,5.0\n277,480,5.5\n277,481,6.0\n277,482,6.5\n277,483,7.0\n277,484,7.5\n277,485,8.0\n277,486,8.5\n277,487,9.0\n277,488,9.5\n277,489,10.0\n277,490,10.5\n277,491,11.0\n277,492,11.5\n277,493,12.0\n277,494,12.5\n277,495,13.0\n277,496,13.5\n277,497,14.0\n277,498,14.5\n277,499,15.0\n277,500,5.5\n277,501,5.0\n277,502,4.5\n277,503,5.0\n277,504,5.5\n277,505,6.0\n277,506,6.5\n277,507,7.0\n277,508,7.5\n277,509,8.0\n277,510,8.5\n277,511,9.0\n277,512,9.5\n277,513,10.0\n277,514,10.5\n277,515,11.0\n277,516,11.5\n277,517,12.0\n277,518,12.5\n277,519,13.0\n277,520,13.5\n277,521,14.0\n277,522,14.5\n277,523,15.0\n277,524,15.5\n277,525,6.0\n277,526,5.5\n277,527,5.0\n277,528,5.5\n277,529,6.0\n277,530,6.5\n277,531,7.0\n277,532,7.5\n277,533,8.0\n277,534,8.5\n277,535,9.0\n277,536,9.5\n277,537,10.0\n277,538,10.5\n277,539,11.0\n277,540,11.5\n277,541,12.0\n277,542,12.5\n277,543,13.0\n277,544,13.5\n277,545,14.0\n277,546,14.5\n277,547,15.0\n277,548,15.5\n277,549,16.0\n277,550,6.5\n277,551,6.0\n277,552,5.5\n277,553,6.0\n277,554,6.5\n277,555,7.0\n277,556,7.5\n277,557,8.0\n277,558,8.5\n277,559,9.0\n277,560,9.5\n277,561,10.0\n277,562,10.5\n277,563,11.0\n277,564,11.5\n277,565,12.0\n277,566,12.5\n277,567,13.0\n277,568,13.5\n277,569,14.0\n277,570,14.5\n277,571,15.0\n277,572,15.5\n277,573,16.0\n277,574,16.5\n277,575,7.0\n277,576,6.5\n277,577,6.0\n277,578,6.5\n277,579,7.0\n277,580,7.5\n277,581,8.0\n277,582,8.5\n277,583,9.0\n277,584,9.5\n277,585,10.0\n277,586,10.5\n277,587,11.0\n277,588,11.5\n277,589,12.0\n277,590,12.5\n277,591,13.0\n277,592,13.5\n277,593,14.0\n277,594,14.5\n277,595,15.0\n277,596,15.5\n277,597,16.0\n277,598,16.5\n277,599,17.0\n277,600,7.5\n277,601,7.0\n277,602,6.5\n277,603,7.0\n277,604,7.5\n277,605,8.0\n277,606,8.5\n277,607,9.0\n277,608,9.5\n277,609,10.0\n277,610,10.5\n277,611,11.0\n277,612,11.5\n277,613,12.0\n277,614,12.5\n277,615,13.0\n277,616,13.5\n277,617,14.0\n277,618,14.5\n277,619,15.0\n277,620,15.5\n277,621,16.0\n277,622,16.5\n277,623,17.0\n277,624,17.5\n278,0,7.0\n278,1,6.5\n278,2,6.0\n278,3,5.5\n278,4,6.0\n278,5,6.5\n278,6,7.0\n278,7,7.5\n278,8,8.0\n278,9,8.5\n278,10,9.0\n278,11,9.5\n278,12,10.0\n278,13,10.5\n278,14,11.0\n278,15,11.5\n278,16,12.0\n278,17,12.5\n278,18,13.0\n278,19,13.5\n278,20,14.0\n278,21,14.5\n278,22,15.0\n278,23,15.5\n278,24,16.0\n278,25,6.5\n278,26,6.0\n278,27,5.5\n278,28,5.0\n278,29,5.5\n278,30,6.0\n278,31,6.5\n278,32,7.0\n278,33,7.5\n278,34,8.0\n278,35,8.5\n278,36,9.0\n278,37,9.5\n278,38,10.0\n278,39,10.5\n278,40,11.0\n278,41,11.5\n278,42,12.0\n278,43,12.5\n278,44,13.0\n278,45,13.5\n278,46,14.0\n278,47,14.5\n278,48,15.0\n278,49,15.5\n278,50,6.0\n278,51,5.5\n278,52,5.0\n278,53,4.5\n278,54,5.0\n278,55,5.5\n278,56,6.0\n278,57,6.5\n278,58,7.0\n278,59,7.5\n278,60,8.0\n278,61,8.5\n278,62,9.0\n278,63,9.5\n278,64,10.0\n278,65,10.5\n278,66,11.0\n278,67,11.5\n278,68,12.0\n278,69,12.5\n278,70,13.0\n278,71,13.5\n278,72,14.0\n278,73,14.5\n278,74,15.0\n278,75,5.5\n278,76,5.0\n278,77,4.5\n278,78,4.0\n278,79,4.5\n278,80,5.0\n278,81,5.5\n278,82,6.0\n278,83,6.5\n278,84,7.0\n278,85,7.5\n278,86,8.0\n278,87,8.5\n278,88,9.0\n278,89,9.5\n278,90,10.0\n278,91,10.5\n278,92,11.0\n278,93,11.5\n278,94,12.0\n278,95,12.5\n278,96,13.0\n278,97,13.5\n278,98,14.0\n278,99,14.5\n278,100,5.0\n278,101,4.5\n278,102,4.0\n278,103,3.5\n278,104,4.0\n278,105,4.5\n278,106,5.0\n278,107,5.5\n278,108,6.0\n278,109,6.5\n278,110,7.0\n278,111,7.5\n278,112,8.0\n278,113,8.5\n278,114,9.0\n278,115,9.5\n278,116,10.0\n278,117,10.5\n278,118,11.0\n278,119,11.5\n278,120,12.0\n278,121,12.5\n278,122,13.0\n278,123,13.5\n278,124,14.0\n278,125,4.5\n278,126,4.0\n278,127,3.5\n278,128,3.0\n278,129,3.5\n278,130,4.0\n278,131,4.5\n278,132,5.0\n278,133,5.5\n278,134,6.0\n278,135,6.5\n278,136,7.0\n278,137,7.5\n278,138,8.0\n278,139,8.5\n278,140,9.0\n278,141,9.5\n278,142,10.0\n278,143,10.5\n278,144,11.0\n278,145,11.5\n278,146,12.0\n278,147,12.5\n278,148,13.0\n278,149,13.5\n278,150,4.0\n278,151,3.5\n278,152,3.0\n278,153,2.5\n278,154,3.0\n278,155,3.5\n278,156,4.0\n278,157,4.5\n278,158,5.0\n278,159,5.5\n278,160,6.0\n278,161,6.5\n278,162,7.0\n278,163,7.5\n278,164,8.0\n278,165,8.5\n278,166,9.0\n278,167,9.5\n278,168,10.0\n278,169,10.5\n278,170,11.0\n278,171,11.5\n278,172,12.0\n278,173,12.5\n278,174,13.0\n278,175,3.5\n278,176,3.0\n278,177,2.5\n278,178,2.0\n278,179,2.5\n278,180,3.0\n278,181,3.5\n278,182,4.0\n278,183,4.5\n278,184,5.0\n278,185,5.5\n278,186,6.0\n278,187,6.5\n278,188,7.0\n278,189,7.5\n278,190,8.0\n278,191,8.5\n278,192,9.0\n278,193,9.5\n278,194,10.0\n278,195,10.5\n278,196,11.0\n278,197,11.5\n278,198,12.0\n278,199,12.5\n278,200,3.0\n278,201,2.5\n278,202,2.0\n278,203,1.5\n278,204,2.0\n278,205,2.5\n278,206,3.0\n278,207,3.5\n278,208,4.0\n278,209,4.5\n278,210,5.0\n278,211,5.5\n278,212,6.0\n278,213,6.5\n278,214,7.0\n278,215,7.5\n278,216,8.0\n278,217,8.5\n278,218,9.0\n278,219,9.5\n278,220,10.0\n278,221,10.5\n278,222,11.0\n278,223,11.5\n278,224,12.0\n278,225,2.5\n278,226,2.0\n278,227,1.5\n278,228,1.0\n278,229,1.5\n278,230,2.0\n278,231,2.5\n278,232,3.0\n278,233,3.5\n278,234,4.0\n278,235,4.5\n278,236,5.0\n278,237,5.5\n278,238,6.0\n278,239,6.5\n278,240,7.0\n278,241,7.5\n278,242,8.0\n278,243,8.5\n278,244,9.0\n278,245,9.5\n278,246,10.0\n278,247,10.5\n278,248,11.0\n278,249,11.5\n278,250,2.0\n278,251,1.5\n278,252,1.0\n278,253,0.5\n278,254,1.0\n278,255,1.5\n278,256,2.0\n278,257,2.5\n278,258,3.0\n278,259,3.5\n278,260,4.0\n278,261,4.5\n278,262,5.0\n278,263,5.5\n278,264,6.0\n278,265,6.5\n278,266,7.0\n278,267,7.5\n278,268,8.0\n278,269,8.5\n278,270,9.0\n278,271,9.5\n278,272,10.0\n278,273,10.5\n278,274,11.0\n278,275,1.5\n278,276,1.0\n278,277,0.5\n278,278,0\n278,279,0.5\n278,280,1.0\n278,281,1.5\n278,282,2.0\n278,283,2.5\n278,284,3.0\n278,285,3.5\n278,286,4.0\n278,287,4.5\n278,288,5.0\n278,289,5.5\n278,290,6.0\n278,291,6.5\n278,292,7.0\n278,293,7.5\n278,294,8.0\n278,295,8.5\n278,296,9.0\n278,297,9.5\n278,298,10.0\n278,299,10.5\n278,300,2.0\n278,301,1.5\n278,302,1.0\n278,303,0.5\n278,304,1.0\n278,305,1.5\n278,306,2.0\n278,307,2.5\n278,308,3.0\n278,309,3.5\n278,310,4.0\n278,311,4.5\n278,312,5.0\n278,313,5.5\n278,314,6.0\n278,315,6.5\n278,316,7.0\n278,317,7.5\n278,318,8.0\n278,319,8.5\n278,320,9.0\n278,321,9.5\n278,322,10.0\n278,323,10.5\n278,324,11.0\n278,325,2.5\n278,326,2.0\n278,327,1.5\n278,328,1.0\n278,329,1.5\n278,330,2.0\n278,331,2.5\n278,332,3.0\n278,333,3.5\n278,334,4.0\n278,335,4.5\n278,336,5.0\n278,337,5.5\n278,338,6.0\n278,339,6.5\n278,340,7.0\n278,341,7.5\n278,342,8.0\n278,343,8.5\n278,344,9.0\n278,345,9.5\n278,346,10.0\n278,347,10.5\n278,348,11.0\n278,349,11.5\n278,350,3.0\n278,351,2.5\n278,352,2.0\n278,353,1.5\n278,354,2.0\n278,355,2.5\n278,356,3.0\n278,357,3.5\n278,358,4.0\n278,359,4.5\n278,360,5.0\n278,361,5.5\n278,362,6.0\n278,363,6.5\n278,364,7.0\n278,365,7.5\n278,366,8.0\n278,367,8.5\n278,368,9.0\n278,369,9.5\n278,370,10.0\n278,371,10.5\n278,372,11.0\n278,373,11.5\n278,374,12.0\n278,375,3.5\n278,376,3.0\n278,377,2.5\n278,378,2.0\n278,379,2.5\n278,380,3.0\n278,381,3.5\n278,382,4.0\n278,383,4.5\n278,384,5.0\n278,385,5.5\n278,386,6.0\n278,387,6.5\n278,388,7.0\n278,389,7.5\n278,390,8.0\n278,391,8.5\n278,392,9.0\n278,393,9.5\n278,394,10.0\n278,395,10.5\n278,396,11.0\n278,397,11.5\n278,398,12.0\n278,399,12.5\n278,400,4.0\n278,401,3.5\n278,402,3.0\n278,403,2.5\n278,404,3.0\n278,405,3.5\n278,406,4.0\n278,407,4.5\n278,408,5.0\n278,409,5.5\n278,410,6.0\n278,411,6.5\n278,412,7.0\n278,413,7.5\n278,414,8.0\n278,415,8.5\n278,416,9.0\n278,417,9.5\n278,418,10.0\n278,419,10.5\n278,420,11.0\n278,421,11.5\n278,422,12.0\n278,423,12.5\n278,424,13.0\n278,425,4.5\n278,426,4.0\n278,427,3.5\n278,428,3.0\n278,429,3.5\n278,430,4.0\n278,431,4.5\n278,432,5.0\n278,433,5.5\n278,434,6.0\n278,435,6.5\n278,436,7.0\n278,437,7.5\n278,438,8.0\n278,439,8.5\n278,440,9.0\n278,441,9.5\n278,442,10.0\n278,443,10.5\n278,444,11.0\n278,445,11.5\n278,446,12.0\n278,447,12.5\n278,448,13.0\n278,449,13.5\n278,450,5.0\n278,451,4.5\n278,452,4.0\n278,453,3.5\n278,454,4.0\n278,455,4.5\n278,456,5.0\n278,457,5.5\n278,458,6.0\n278,459,6.5\n278,460,7.0\n278,461,7.5\n278,462,8.0\n278,463,8.5\n278,464,9.0\n278,465,9.5\n278,466,10.0\n278,467,10.5\n278,468,11.0\n278,469,11.5\n278,470,12.0\n278,471,12.5\n278,472,13.0\n278,473,13.5\n278,474,14.0\n278,475,5.5\n278,476,5.0\n278,477,4.5\n278,478,4.0\n278,479,4.5\n278,480,5.0\n278,481,5.5\n278,482,6.0\n278,483,6.5\n278,484,7.0\n278,485,7.5\n278,486,8.0\n278,487,8.5\n278,488,9.0\n278,489,9.5\n278,490,10.0\n278,491,10.5\n278,492,11.0\n278,493,11.5\n278,494,12.0\n278,495,12.5\n278,496,13.0\n278,497,13.5\n278,498,14.0\n278,499,14.5\n278,500,6.0\n278,501,5.5\n278,502,5.0\n278,503,4.5\n278,504,5.0\n278,505,5.5\n278,506,6.0\n278,507,6.5\n278,508,7.0\n278,509,7.5\n278,510,8.0\n278,511,8.5\n278,512,9.0\n278,513,9.5\n278,514,10.0\n278,515,10.5\n278,516,11.0\n278,517,11.5\n278,518,12.0\n278,519,12.5\n278,520,13.0\n278,521,13.5\n278,522,14.0\n278,523,14.5\n278,524,15.0\n278,525,6.5\n278,526,6.0\n278,527,5.5\n278,528,5.0\n278,529,5.5\n278,530,6.0\n278,531,6.5\n278,532,7.0\n278,533,7.5\n278,534,8.0\n278,535,8.5\n278,536,9.0\n278,537,9.5\n278,538,10.0\n278,539,10.5\n278,540,11.0\n278,541,11.5\n278,542,12.0\n278,543,12.5\n278,544,13.0\n278,545,13.5\n278,546,14.0\n278,547,14.5\n278,548,15.0\n278,549,15.5\n278,550,7.0\n278,551,6.5\n278,552,6.0\n278,553,5.5\n278,554,6.0\n278,555,6.5\n278,556,7.0\n278,557,7.5\n278,558,8.0\n278,559,8.5\n278,560,9.0\n278,561,9.5\n278,562,10.0\n278,563,10.5\n278,564,11.0\n278,565,11.5\n278,566,12.0\n278,567,12.5\n278,568,13.0\n278,569,13.5\n278,570,14.0\n278,571,14.5\n278,572,15.0\n278,573,15.5\n278,574,16.0\n278,575,7.5\n278,576,7.0\n278,577,6.5\n278,578,6.0\n278,579,6.5\n278,580,7.0\n278,581,7.5\n278,582,8.0\n278,583,8.5\n278,584,9.0\n278,585,9.5\n278,586,10.0\n278,587,10.5\n278,588,11.0\n278,589,11.5\n278,590,12.0\n278,591,12.5\n278,592,13.0\n278,593,13.5\n278,594,14.0\n278,595,14.5\n278,596,15.0\n278,597,15.5\n278,598,16.0\n278,599,16.5\n278,600,8.0\n278,601,7.5\n278,602,7.0\n278,603,6.5\n278,604,7.0\n278,605,7.5\n278,606,8.0\n278,607,8.5\n278,608,9.0\n278,609,9.5\n278,610,10.0\n278,611,10.5\n278,612,11.0\n278,613,11.5\n278,614,12.0\n278,615,12.5\n278,616,13.0\n278,617,13.5\n278,618,14.0\n278,619,14.5\n278,620,15.0\n278,621,15.5\n278,622,16.0\n278,623,16.5\n278,624,17.0\n279,0,7.5\n279,1,7.0\n279,2,6.5\n279,3,6.0\n279,4,5.5\n279,5,6.0\n279,6,6.5\n279,7,7.0\n279,8,7.5\n279,9,8.0\n279,10,8.5\n279,11,9.0\n279,12,9.5\n279,13,10.0\n279,14,10.5\n279,15,11.0\n279,16,11.5\n279,17,12.0\n279,18,12.5\n279,19,13.0\n279,20,13.5\n279,21,14.0\n279,22,14.5\n279,23,15.0\n279,24,15.5\n279,25,7.0\n279,26,6.5\n279,27,6.0\n279,28,5.5\n279,29,5.0\n279,30,5.5\n279,31,6.0\n279,32,6.5\n279,33,7.0\n279,34,7.5\n279,35,8.0\n279,36,8.5\n279,37,9.0\n279,38,9.5\n279,39,10.0\n279,40,10.5\n279,41,11.0\n279,42,11.5\n279,43,12.0\n279,44,12.5\n279,45,13.0\n279,46,13.5\n279,47,14.0\n279,48,14.5\n279,49,15.0\n279,50,6.5\n279,51,6.0\n279,52,5.5\n279,53,5.0\n279,54,4.5\n279,55,5.0\n279,56,5.5\n279,57,6.0\n279,58,6.5\n279,59,7.0\n279,60,7.5\n279,61,8.0\n279,62,8.5\n279,63,9.0\n279,64,9.5\n279,65,10.0\n279,66,10.5\n279,67,11.0\n279,68,11.5\n279,69,12.0\n279,70,12.5\n279,71,13.0\n279,72,13.5\n279,73,14.0\n279,74,14.5\n279,75,6.0\n279,76,5.5\n279,77,5.0\n279,78,4.5\n279,79,4.0\n279,80,4.5\n279,81,5.0\n279,82,5.5\n279,83,6.0\n279,84,6.5\n279,85,7.0\n279,86,7.5\n279,87,8.0\n279,88,8.5\n279,89,9.0\n279,90,9.5\n279,91,10.0\n279,92,10.5\n279,93,11.0\n279,94,11.5\n279,95,12.0\n279,96,12.5\n279,97,13.0\n279,98,13.5\n279,99,14.0\n279,100,5.5\n279,101,5.0\n279,102,4.5\n279,103,4.0\n279,104,3.5\n279,105,4.0\n279,106,4.5\n279,107,5.0\n279,108,5.5\n279,109,6.0\n279,110,6.5\n279,111,7.0\n279,112,7.5\n279,113,8.0\n279,114,8.5\n279,115,9.0\n279,116,9.5\n279,117,10.0\n279,118,10.5\n279,119,11.0\n279,120,11.5\n279,121,12.0\n279,122,12.5\n279,123,13.0\n279,124,13.5\n279,125,5.0\n279,126,4.5\n279,127,4.0\n279,128,3.5\n279,129,3.0\n279,130,3.5\n279,131,4.0\n279,132,4.5\n279,133,5.0\n279,134,5.5\n279,135,6.0\n279,136,6.5\n279,137,7.0\n279,138,7.5\n279,139,8.0\n279,140,8.5\n279,141,9.0\n279,142,9.5\n279,143,10.0\n279,144,10.5\n279,145,11.0\n279,146,11.5\n279,147,12.0\n279,148,12.5\n279,149,13.0\n279,150,4.5\n279,151,4.0\n279,152,3.5\n279,153,3.0\n279,154,2.5\n279,155,3.0\n279,156,3.5\n279,157,4.0\n279,158,4.5\n279,159,5.0\n279,160,5.5\n279,161,6.0\n279,162,6.5\n279,163,7.0\n279,164,7.5\n279,165,8.0\n279,166,8.5\n279,167,9.0\n279,168,9.5\n279,169,10.0\n279,170,10.5\n279,171,11.0\n279,172,11.5\n279,173,12.0\n279,174,12.5\n279,175,4.0\n279,176,3.5\n279,177,3.0\n279,178,2.5\n279,179,2.0\n279,180,2.5\n279,181,3.0\n279,182,3.5\n279,183,4.0\n279,184,4.5\n279,185,5.0\n279,186,5.5\n279,187,6.0\n279,188,6.5\n279,189,7.0\n279,190,7.5\n279,191,8.0\n279,192,8.5\n279,193,9.0\n279,194,9.5\n279,195,10.0\n279,196,10.5\n279,197,11.0\n279,198,11.5\n279,199,12.0\n279,200,3.5\n279,201,3.0\n279,202,2.5\n279,203,2.0\n279,204,1.5\n279,205,2.0\n279,206,2.5\n279,207,3.0\n279,208,3.5\n279,209,4.0\n279,210,4.5\n279,211,5.0\n279,212,5.5\n279,213,6.0\n279,214,6.5\n279,215,7.0\n279,216,7.5\n279,217,8.0\n279,218,8.5\n279,219,9.0\n279,220,9.5\n279,221,10.0\n279,222,10.5\n279,223,11.0\n279,224,11.5\n279,225,3.0\n279,226,2.5\n279,227,2.0\n279,228,1.5\n279,229,1.0\n279,230,1.5\n279,231,2.0\n279,232,2.5\n279,233,3.0\n279,234,3.5\n279,235,4.0\n279,236,4.5\n279,237,5.0\n279,238,5.5\n279,239,6.0\n279,240,6.5\n279,241,7.0\n279,242,7.5\n279,243,8.0\n279,244,8.5\n279,245,9.0\n279,246,9.5\n279,247,10.0\n279,248,10.5\n279,249,11.0\n279,250,2.5\n279,251,2.0\n279,252,1.5\n279,253,1.0\n279,254,0.5\n279,255,1.0\n279,256,1.5\n279,257,2.0\n279,258,2.5\n279,259,3.0\n279,260,3.5\n279,261,4.0\n279,262,4.5\n279,263,5.0\n279,264,5.5\n279,265,6.0\n279,266,6.5\n279,267,7.0\n279,268,7.5\n279,269,8.0\n279,270,8.5\n279,271,9.0\n279,272,9.5\n279,273,10.0\n279,274,10.5\n279,275,2.0\n279,276,1.5\n279,277,1.0\n279,278,0.5\n279,279,0\n279,280,0.5\n279,281,1.0\n279,282,1.5\n279,283,2.0\n279,284,2.5\n279,285,3.0\n279,286,3.5\n279,287,4.0\n279,288,4.5\n279,289,5.0\n279,290,5.5\n279,291,6.0\n279,292,6.5\n279,293,7.0\n279,294,7.5\n279,295,8.0\n279,296,8.5\n279,297,9.0\n279,298,9.5\n279,299,10.0\n279,300,2.5\n279,301,2.0\n279,302,1.5\n279,303,1.0\n279,304,0.5\n279,305,1.0\n279,306,1.5\n279,307,2.0\n279,308,2.5\n279,309,3.0\n279,310,3.5\n279,311,4.0\n279,312,4.5\n279,313,5.0\n279,314,5.5\n279,315,6.0\n279,316,6.5\n279,317,7.0\n279,318,7.5\n279,319,8.0\n279,320,8.5\n279,321,9.0\n279,322,9.5\n279,323,10.0\n279,324,10.5\n279,325,3.0\n279,326,2.5\n279,327,2.0\n279,328,1.5\n279,329,1.0\n279,330,1.5\n279,331,2.0\n279,332,2.5\n279,333,3.0\n279,334,3.5\n279,335,4.0\n279,336,4.5\n279,337,5.0\n279,338,5.5\n279,339,6.0\n279,340,6.5\n279,341,7.0\n279,342,7.5\n279,343,8.0\n279,344,8.5\n279,345,9.0\n279,346,9.5\n279,347,10.0\n279,348,10.5\n279,349,11.0\n279,350,3.5\n279,351,3.0\n279,352,2.5\n279,353,2.0\n279,354,1.5\n279,355,2.0\n279,356,2.5\n279,357,3.0\n279,358,3.5\n279,359,4.0\n279,360,4.5\n279,361,5.0\n279,362,5.5\n279,363,6.0\n279,364,6.5\n279,365,7.0\n279,366,7.5\n279,367,8.0\n279,368,8.5\n279,369,9.0\n279,370,9.5\n279,371,10.0\n279,372,10.5\n279,373,11.0\n279,374,11.5\n279,375,4.0\n279,376,3.5\n279,377,3.0\n279,378,2.5\n279,379,2.0\n279,380,2.5\n279,381,3.0\n279,382,3.5\n279,383,4.0\n279,384,4.5\n279,385,5.0\n279,386,5.5\n279,387,6.0\n279,388,6.5\n279,389,7.0\n279,390,7.5\n279,391,8.0\n279,392,8.5\n279,393,9.0\n279,394,9.5\n279,395,10.0\n279,396,10.5\n279,397,11.0\n279,398,11.5\n279,399,12.0\n279,400,4.5\n279,401,4.0\n279,402,3.5\n279,403,3.0\n279,404,2.5\n279,405,3.0\n279,406,3.5\n279,407,4.0\n279,408,4.5\n279,409,5.0\n279,410,5.5\n279,411,6.0\n279,412,6.5\n279,413,7.0\n279,414,7.5\n279,415,8.0\n279,416,8.5\n279,417,9.0\n279,418,9.5\n279,419,10.0\n279,420,10.5\n279,421,11.0\n279,422,11.5\n279,423,12.0\n279,424,12.5\n279,425,5.0\n279,426,4.5\n279,427,4.0\n279,428,3.5\n279,429,3.0\n279,430,3.5\n279,431,4.0\n279,432,4.5\n279,433,5.0\n279,434,5.5\n279,435,6.0\n279,436,6.5\n279,437,7.0\n279,438,7.5\n279,439,8.0\n279,440,8.5\n279,441,9.0\n279,442,9.5\n279,443,10.0\n279,444,10.5\n279,445,11.0\n279,446,11.5\n279,447,12.0\n279,448,12.5\n279,449,13.0\n279,450,5.5\n279,451,5.0\n279,452,4.5\n279,453,4.0\n279,454,3.5\n279,455,4.0\n279,456,4.5\n279,457,5.0\n279,458,5.5\n279,459,6.0\n279,460,6.5\n279,461,7.0\n279,462,7.5\n279,463,8.0\n279,464,8.5\n279,465,9.0\n279,466,9.5\n279,467,10.0\n279,468,10.5\n279,469,11.0\n279,470,11.5\n279,471,12.0\n279,472,12.5\n279,473,13.0\n279,474,13.5\n279,475,6.0\n279,476,5.5\n279,477,5.0\n279,478,4.5\n279,479,4.0\n279,480,4.5\n279,481,5.0\n279,482,5.5\n279,483,6.0\n279,484,6.5\n279,485,7.0\n279,486,7.5\n279,487,8.0\n279,488,8.5\n279,489,9.0\n279,490,9.5\n279,491,10.0\n279,492,10.5\n279,493,11.0\n279,494,11.5\n279,495,12.0\n279,496,12.5\n279,497,13.0\n279,498,13.5\n279,499,14.0\n279,500,6.5\n279,501,6.0\n279,502,5.5\n279,503,5.0\n279,504,4.5\n279,505,5.0\n279,506,5.5\n279,507,6.0\n279,508,6.5\n279,509,7.0\n279,510,7.5\n279,511,8.0\n279,512,8.5\n279,513,9.0\n279,514,9.5\n279,515,10.0\n279,516,10.5\n279,517,11.0\n279,518,11.5\n279,519,12.0\n279,520,12.5\n279,521,13.0\n279,522,13.5\n279,523,14.0\n279,524,14.5\n279,525,7.0\n279,526,6.5\n279,527,6.0\n279,528,5.5\n279,529,5.0\n279,530,5.5\n279,531,6.0\n279,532,6.5\n279,533,7.0\n279,534,7.5\n279,535,8.0\n279,536,8.5\n279,537,9.0\n279,538,9.5\n279,539,10.0\n279,540,10.5\n279,541,11.0\n279,542,11.5\n279,543,12.0\n279,544,12.5\n279,545,13.0\n279,546,13.5\n279,547,14.0\n279,548,14.5\n279,549,15.0\n279,550,7.5\n279,551,7.0\n279,552,6.5\n279,553,6.0\n279,554,5.5\n279,555,6.0\n279,556,6.5\n279,557,7.0\n279,558,7.5\n279,559,8.0\n279,560,8.5\n279,561,9.0\n279,562,9.5\n279,563,10.0\n279,564,10.5\n279,565,11.0\n279,566,11.5\n279,567,12.0\n279,568,12.5\n279,569,13.0\n279,570,13.5\n279,571,14.0\n279,572,14.5\n279,573,15.0\n279,574,15.5\n279,575,8.0\n279,576,7.5\n279,577,7.0\n279,578,6.5\n279,579,6.0\n279,580,6.5\n279,581,7.0\n279,582,7.5\n279,583,8.0\n279,584,8.5\n279,585,9.0\n279,586,9.5\n279,587,10.0\n279,588,10.5\n279,589,11.0\n279,590,11.5\n279,591,12.0\n279,592,12.5\n279,593,13.0\n279,594,13.5\n279,595,14.0\n279,596,14.5\n279,597,15.0\n279,598,15.5\n279,599,16.0\n279,600,8.5\n279,601,8.0\n279,602,7.5\n279,603,7.0\n279,604,6.5\n279,605,7.0\n279,606,7.5\n279,607,8.0\n279,608,8.5\n279,609,9.0\n279,610,9.5\n279,611,10.0\n279,612,10.5\n279,613,11.0\n279,614,11.5\n279,615,12.0\n279,616,12.5\n279,617,13.0\n279,618,13.5\n279,619,14.0\n279,620,14.5\n279,621,15.0\n279,622,15.5\n279,623,16.0\n279,624,16.5\n280,0,8.0\n280,1,7.5\n280,2,7.0\n280,3,6.5\n280,4,6.0\n280,5,5.5\n280,6,6.0\n280,7,6.5\n280,8,7.0\n280,9,7.5\n280,10,8.0\n280,11,8.5\n280,12,9.0\n280,13,9.5\n280,14,10.0\n280,15,10.5\n280,16,11.0\n280,17,11.5\n280,18,12.0\n280,19,12.5\n280,20,13.0\n280,21,13.5\n280,22,14.0\n280,23,14.5\n280,24,15.0\n280,25,7.5\n280,26,7.0\n280,27,6.5\n280,28,6.0\n280,29,5.5\n280,30,5.0\n280,31,5.5\n280,32,6.0\n280,33,6.5\n280,34,7.0\n280,35,7.5\n280,36,8.0\n280,37,8.5\n280,38,9.0\n280,39,9.5\n280,40,10.0\n280,41,10.5\n280,42,11.0\n280,43,11.5\n280,44,12.0\n280,45,12.5\n280,46,13.0\n280,47,13.5\n280,48,14.0\n280,49,14.5\n280,50,7.0\n280,51,6.5\n280,52,6.0\n280,53,5.5\n280,54,5.0\n280,55,4.5\n280,56,5.0\n280,57,5.5\n280,58,6.0\n280,59,6.5\n280,60,7.0\n280,61,7.5\n280,62,8.0\n280,63,8.5\n280,64,9.0\n280,65,9.5\n280,66,10.0\n280,67,10.5\n280,68,11.0\n280,69,11.5\n280,70,12.0\n280,71,12.5\n280,72,13.0\n280,73,13.5\n280,74,14.0\n280,75,6.5\n280,76,6.0\n280,77,5.5\n280,78,5.0\n280,79,4.5\n280,80,4.0\n280,81,4.5\n280,82,5.0\n280,83,5.5\n280,84,6.0\n280,85,6.5\n280,86,7.0\n280,87,7.5\n280,88,8.0\n280,89,8.5\n280,90,9.0\n280,91,9.5\n280,92,10.0\n280,93,10.5\n280,94,11.0\n280,95,11.5\n280,96,12.0\n280,97,12.5\n280,98,13.0\n280,99,13.5\n280,100,6.0\n280,101,5.5\n280,102,5.0\n280,103,4.5\n280,104,4.0\n280,105,3.5\n280,106,4.0\n280,107,4.5\n280,108,5.0\n280,109,5.5\n280,110,6.0\n280,111,6.5\n280,112,7.0\n280,113,7.5\n280,114,8.0\n280,115,8.5\n280,116,9.0\n280,117,9.5\n280,118,10.0\n280,119,10.5\n280,120,11.0\n280,121,11.5\n280,122,12.0\n280,123,12.5\n280,124,13.0\n280,125,5.5\n280,126,5.0\n280,127,4.5\n280,128,4.0\n280,129,3.5\n280,130,3.0\n280,131,3.5\n280,132,4.0\n280,133,4.5\n280,134,5.0\n280,135,5.5\n280,136,6.0\n280,137,6.5\n280,138,7.0\n280,139,7.5\n280,140,8.0\n280,141,8.5\n280,142,9.0\n280,143,9.5\n280,144,10.0\n280,145,10.5\n280,146,11.0\n280,147,11.5\n280,148,12.0\n280,149,12.5\n280,150,5.0\n280,151,4.5\n280,152,4.0\n280,153,3.5\n280,154,3.0\n280,155,2.5\n280,156,3.0\n280,157,3.5\n280,158,4.0\n280,159,4.5\n280,160,5.0\n280,161,5.5\n280,162,6.0\n280,163,6.5\n280,164,7.0\n280,165,7.5\n280,166,8.0\n280,167,8.5\n280,168,9.0\n280,169,9.5\n280,170,10.0\n280,171,10.5\n280,172,11.0\n280,173,11.5\n280,174,12.0\n280,175,4.5\n280,176,4.0\n280,177,3.5\n280,178,3.0\n280,179,2.5\n280,180,2.0\n280,181,2.5\n280,182,3.0\n280,183,3.5\n280,184,4.0\n280,185,4.5\n280,186,5.0\n280,187,5.5\n280,188,6.0\n280,189,6.5\n280,190,7.0\n280,191,7.5\n280,192,8.0\n280,193,8.5\n280,194,9.0\n280,195,9.5\n280,196,10.0\n280,197,10.5\n280,198,11.0\n280,199,11.5\n280,200,4.0\n280,201,3.5\n280,202,3.0\n280,203,2.5\n280,204,2.0\n280,205,1.5\n280,206,2.0\n280,207,2.5\n280,208,3.0\n280,209,3.5\n280,210,4.0\n280,211,4.5\n280,212,5.0\n280,213,5.5\n280,214,6.0\n280,215,6.5\n280,216,7.0\n280,217,7.5\n280,218,8.0\n280,219,8.5\n280,220,9.0\n280,221,9.5\n280,222,10.0\n280,223,10.5\n280,224,11.0\n280,225,3.5\n280,226,3.0\n280,227,2.5\n280,228,2.0\n280,229,1.5\n280,230,1.0\n280,231,1.5\n280,232,2.0\n280,233,2.5\n280,234,3.0\n280,235,3.5\n280,236,4.0\n280,237,4.5\n280,238,5.0\n280,239,5.5\n280,240,6.0\n280,241,6.5\n280,242,7.0\n280,243,7.5\n280,244,8.0\n280,245,8.5\n280,246,9.0\n280,247,9.5\n280,248,10.0\n280,249,10.5\n280,250,3.0\n280,251,2.5\n280,252,2.0\n280,253,1.5\n280,254,1.0\n280,255,0.5\n280,256,1.0\n280,257,1.5\n280,258,2.0\n280,259,2.5\n280,260,3.0\n280,261,3.5\n280,262,4.0\n280,263,4.5\n280,264,5.0\n280,265,5.5\n280,266,6.0\n280,267,6.5\n280,268,7.0\n280,269,7.5\n280,270,8.0\n280,271,8.5\n280,272,9.0\n280,273,9.5\n280,274,10.0\n280,275,2.5\n280,276,2.0\n280,277,1.5\n280,278,1.0\n280,279,0.5\n280,280,0\n280,281,0.5\n280,282,1.0\n280,283,1.5\n280,284,2.0\n280,285,2.5\n280,286,3.0\n280,287,3.5\n280,288,4.0\n280,289,4.5\n280,290,5.0\n280,291,5.5\n280,292,6.0\n280,293,6.5\n280,294,7.0\n280,295,7.5\n280,296,8.0\n280,297,8.5\n280,298,9.0\n280,299,9.5\n280,300,3.0\n280,301,2.5\n280,302,2.0\n280,303,1.5\n280,304,1.0\n280,305,0.5\n280,306,1.0\n280,307,1.5\n280,308,2.0\n280,309,2.5\n280,310,3.0\n280,311,3.5\n280,312,4.0\n280,313,4.5\n280,314,5.0\n280,315,5.5\n280,316,6.0\n280,317,6.5\n280,318,7.0\n280,319,7.5\n280,320,8.0\n280,321,8.5\n280,322,9.0\n280,323,9.5\n280,324,10.0\n280,325,3.5\n280,326,3.0\n280,327,2.5\n280,328,2.0\n280,329,1.5\n280,330,1.0\n280,331,1.5\n280,332,2.0\n280,333,2.5\n280,334,3.0\n280,335,3.5\n280,336,4.0\n280,337,4.5\n280,338,5.0\n280,339,5.5\n280,340,6.0\n280,341,6.5\n280,342,7.0\n280,343,7.5\n280,344,8.0\n280,345,8.5\n280,346,9.0\n280,347,9.5\n280,348,10.0\n280,349,10.5\n280,350,4.0\n280,351,3.5\n280,352,3.0\n280,353,2.5\n280,354,2.0\n280,355,1.5\n280,356,2.0\n280,357,2.5\n280,358,3.0\n280,359,3.5\n280,360,4.0\n280,361,4.5\n280,362,5.0\n280,363,5.5\n280,364,6.0\n280,365,6.5\n280,366,7.0\n280,367,7.5\n280,368,8.0\n280,369,8.5\n280,370,9.0\n280,371,9.5\n280,372,10.0\n280,373,10.5\n280,374,11.0\n280,375,4.5\n280,376,4.0\n280,377,3.5\n280,378,3.0\n280,379,2.5\n280,380,2.0\n280,381,2.5\n280,382,3.0\n280,383,3.5\n280,384,4.0\n280,385,4.5\n280,386,5.0\n280,387,5.5\n280,388,6.0\n280,389,6.5\n280,390,7.0\n280,391,7.5\n280,392,8.0\n280,393,8.5\n280,394,9.0\n280,395,9.5\n280,396,10.0\n280,397,10.5\n280,398,11.0\n280,399,11.5\n280,400,5.0\n280,401,4.5\n280,402,4.0\n280,403,3.5\n280,404,3.0\n280,405,2.5\n280,406,3.0\n280,407,3.5\n280,408,4.0\n280,409,4.5\n280,410,5.0\n280,411,5.5\n280,412,6.0\n280,413,6.5\n280,414,7.0\n280,415,7.5\n280,416,8.0\n280,417,8.5\n280,418,9.0\n280,419,9.5\n280,420,10.0\n280,421,10.5\n280,422,11.0\n280,423,11.5\n280,424,12.0\n280,425,5.5\n280,426,5.0\n280,427,4.5\n280,428,4.0\n280,429,3.5\n280,430,3.0\n280,431,3.5\n280,432,4.0\n280,433,4.5\n280,434,5.0\n280,435,5.5\n280,436,6.0\n280,437,6.5\n280,438,7.0\n280,439,7.5\n280,440,8.0\n280,441,8.5\n280,442,9.0\n280,443,9.5\n280,444,10.0\n280,445,10.5\n280,446,11.0\n280,447,11.5\n280,448,12.0\n280,449,12.5\n280,450,6.0\n280,451,5.5\n280,452,5.0\n280,453,4.5\n280,454,4.0\n280,455,3.5\n280,456,4.0\n280,457,4.5\n280,458,5.0\n280,459,5.5\n280,460,6.0\n280,461,6.5\n280,462,7.0\n280,463,7.5\n280,464,8.0\n280,465,8.5\n280,466,9.0\n280,467,9.5\n280,468,10.0\n280,469,10.5\n280,470,11.0\n280,471,11.5\n280,472,12.0\n280,473,12.5\n280,474,13.0\n280,475,6.5\n280,476,6.0\n280,477,5.5\n280,478,5.0\n280,479,4.5\n280,480,4.0\n280,481,4.5\n280,482,5.0\n280,483,5.5\n280,484,6.0\n280,485,6.5\n280,486,7.0\n280,487,7.5\n280,488,8.0\n280,489,8.5\n280,490,9.0\n280,491,9.5\n280,492,10.0\n280,493,10.5\n280,494,11.0\n280,495,11.5\n280,496,12.0\n280,497,12.5\n280,498,13.0\n280,499,13.5\n280,500,7.0\n280,501,6.5\n280,502,6.0\n280,503,5.5\n280,504,5.0\n280,505,4.5\n280,506,5.0\n280,507,5.5\n280,508,6.0\n280,509,6.5\n280,510,7.0\n280,511,7.5\n280,512,8.0\n280,513,8.5\n280,514,9.0\n280,515,9.5\n280,516,10.0\n280,517,10.5\n280,518,11.0\n280,519,11.5\n280,520,12.0\n280,521,12.5\n280,522,13.0\n280,523,13.5\n280,524,14.0\n280,525,7.5\n280,526,7.0\n280,527,6.5\n280,528,6.0\n280,529,5.5\n280,530,5.0\n280,531,5.5\n280,532,6.0\n280,533,6.5\n280,534,7.0\n280,535,7.5\n280,536,8.0\n280,537,8.5\n280,538,9.0\n280,539,9.5\n280,540,10.0\n280,541,10.5\n280,542,11.0\n280,543,11.5\n280,544,12.0\n280,545,12.5\n280,546,13.0\n280,547,13.5\n280,548,14.0\n280,549,14.5\n280,550,8.0\n280,551,7.5\n280,552,7.0\n280,553,6.5\n280,554,6.0\n280,555,5.5\n280,556,6.0\n280,557,6.5\n280,558,7.0\n280,559,7.5\n280,560,8.0\n280,561,8.5\n280,562,9.0\n280,563,9.5\n280,564,10.0\n280,565,10.5\n280,566,11.0\n280,567,11.5\n280,568,12.0\n280,569,12.5\n280,570,13.0\n280,571,13.5\n280,572,14.0\n280,573,14.5\n280,574,15.0\n280,575,8.5\n280,576,8.0\n280,577,7.5\n280,578,7.0\n280,579,6.5\n280,580,6.0\n280,581,6.5\n280,582,7.0\n280,583,7.5\n280,584,8.0\n280,585,8.5\n280,586,9.0\n280,587,9.5\n280,588,10.0\n280,589,10.5\n280,590,11.0\n280,591,11.5\n280,592,12.0\n280,593,12.5\n280,594,13.0\n280,595,13.5\n280,596,14.0\n280,597,14.5\n280,598,15.0\n280,599,15.5\n280,600,9.0\n280,601,8.5\n280,602,8.0\n280,603,7.5\n280,604,7.0\n280,605,6.5\n280,606,7.0\n280,607,7.5\n280,608,8.0\n280,609,8.5\n280,610,9.0\n280,611,9.5\n280,612,10.0\n280,613,10.5\n280,614,11.0\n280,615,11.5\n280,616,12.0\n280,617,12.5\n280,618,13.0\n280,619,13.5\n280,620,14.0\n280,621,14.5\n280,622,15.0\n280,623,15.5\n280,624,16.0\n281,0,8.5\n281,1,8.0\n281,2,7.5\n281,3,7.0\n281,4,6.5\n281,5,6.0\n281,6,5.5\n281,7,6.0\n281,8,6.5\n281,9,7.0\n281,10,7.5\n281,11,8.0\n281,12,8.5\n281,13,9.0\n281,14,9.5\n281,15,10.0\n281,16,10.5\n281,17,11.0\n281,18,11.5\n281,19,12.0\n281,20,12.5\n281,21,13.0\n281,22,13.5\n281,23,14.0\n281,24,14.5\n281,25,8.0\n281,26,7.5\n281,27,7.0\n281,28,6.5\n281,29,6.0\n281,30,5.5\n281,31,5.0\n281,32,5.5\n281,33,6.0\n281,34,6.5\n281,35,7.0\n281,36,7.5\n281,37,8.0\n281,38,8.5\n281,39,9.0\n281,40,9.5\n281,41,10.0\n281,42,10.5\n281,43,11.0\n281,44,11.5\n281,45,12.0\n281,46,12.5\n281,47,13.0\n281,48,13.5\n281,49,14.0\n281,50,7.5\n281,51,7.0\n281,52,6.5\n281,53,6.0\n281,54,5.5\n281,55,5.0\n281,56,4.5\n281,57,5.0\n281,58,5.5\n281,59,6.0\n281,60,6.5\n281,61,7.0\n281,62,7.5\n281,63,8.0\n281,64,8.5\n281,65,9.0\n281,66,9.5\n281,67,10.0\n281,68,10.5\n281,69,11.0\n281,70,11.5\n281,71,12.0\n281,72,12.5\n281,73,13.0\n281,74,13.5\n281,75,7.0\n281,76,6.5\n281,77,6.0\n281,78,5.5\n281,79,5.0\n281,80,4.5\n281,81,4.0\n281,82,4.5\n281,83,5.0\n281,84,5.5\n281,85,6.0\n281,86,6.5\n281,87,7.0\n281,88,7.5\n281,89,8.0\n281,90,8.5\n281,91,9.0\n281,92,9.5\n281,93,10.0\n281,94,10.5\n281,95,11.0\n281,96,11.5\n281,97,12.0\n281,98,12.5\n281,99,13.0\n281,100,6.5\n281,101,6.0\n281,102,5.5\n281,103,5.0\n281,104,4.5\n281,105,4.0\n281,106,3.5\n281,107,4.0\n281,108,4.5\n281,109,5.0\n281,110,5.5\n281,111,6.0\n281,112,6.5\n281,113,7.0\n281,114,7.5\n281,115,8.0\n281,116,8.5\n281,117,9.0\n281,118,9.5\n281,119,10.0\n281,120,10.5\n281,121,11.0\n281,122,11.5\n281,123,12.0\n281,124,12.5\n281,125,6.0\n281,126,5.5\n281,127,5.0\n281,128,4.5\n281,129,4.0\n281,130,3.5\n281,131,3.0\n281,132,3.5\n281,133,4.0\n281,134,4.5\n281,135,5.0\n281,136,5.5\n281,137,6.0\n281,138,6.5\n281,139,7.0\n281,140,7.5\n281,141,8.0\n281,142,8.5\n281,143,9.0\n281,144,9.5\n281,145,10.0\n281,146,10.5\n281,147,11.0\n281,148,11.5\n281,149,12.0\n281,150,5.5\n281,151,5.0\n281,152,4.5\n281,153,4.0\n281,154,3.5\n281,155,3.0\n281,156,2.5\n281,157,3.0\n281,158,3.5\n281,159,4.0\n281,160,4.5\n281,161,5.0\n281,162,5.5\n281,163,6.0\n281,164,6.5\n281,165,7.0\n281,166,7.5\n281,167,8.0\n281,168,8.5\n281,169,9.0\n281,170,9.5\n281,171,10.0\n281,172,10.5\n281,173,11.0\n281,174,11.5\n281,175,5.0\n281,176,4.5\n281,177,4.0\n281,178,3.5\n281,179,3.0\n281,180,2.5\n281,181,2.0\n281,182,2.5\n281,183,3.0\n281,184,3.5\n281,185,4.0\n281,186,4.5\n281,187,5.0\n281,188,5.5\n281,189,6.0\n281,190,6.5\n281,191,7.0\n281,192,7.5\n281,193,8.0\n281,194,8.5\n281,195,9.0\n281,196,9.5\n281,197,10.0\n281,198,10.5\n281,199,11.0\n281,200,4.5\n281,201,4.0\n281,202,3.5\n281,203,3.0\n281,204,2.5\n281,205,2.0\n281,206,1.5\n281,207,2.0\n281,208,2.5\n281,209,3.0\n281,210,3.5\n281,211,4.0\n281,212,4.5\n281,213,5.0\n281,214,5.5\n281,215,6.0\n281,216,6.5\n281,217,7.0\n281,218,7.5\n281,219,8.0\n281,220,8.5\n281,221,9.0\n281,222,9.5\n281,223,10.0\n281,224,10.5\n281,225,4.0\n281,226,3.5\n281,227,3.0\n281,228,2.5\n281,229,2.0\n281,230,1.5\n281,231,1.0\n281,232,1.5\n281,233,2.0\n281,234,2.5\n281,235,3.0\n281,236,3.5\n281,237,4.0\n281,238,4.5\n281,239,5.0\n281,240,5.5\n281,241,6.0\n281,242,6.5\n281,243,7.0\n281,244,7.5\n281,245,8.0\n281,246,8.5\n281,247,9.0\n281,248,9.5\n281,249,10.0\n281,250,3.5\n281,251,3.0\n281,252,2.5\n281,253,2.0\n281,254,1.5\n281,255,1.0\n281,256,0.5\n281,257,1.0\n281,258,1.5\n281,259,2.0\n281,260,2.5\n281,261,3.0\n281,262,3.5\n281,263,4.0\n281,264,4.5\n281,265,5.0\n281,266,5.5\n281,267,6.0\n281,268,6.5\n281,269,7.0\n281,270,7.5\n281,271,8.0\n281,272,8.5\n281,273,9.0\n281,274,9.5\n281,275,3.0\n281,276,2.5\n281,277,2.0\n281,278,1.5\n281,279,1.0\n281,280,0.5\n281,281,0\n281,282,0.5\n281,283,1.0\n281,284,1.5\n281,285,2.0\n281,286,2.5\n281,287,3.0\n281,288,3.5\n281,289,4.0\n281,290,4.5\n281,291,5.0\n281,292,5.5\n281,293,6.0\n281,294,6.5\n281,295,7.0\n281,296,7.5\n281,297,8.0\n281,298,8.5\n281,299,9.0\n281,300,3.5\n281,301,3.0\n281,302,2.5\n281,303,2.0\n281,304,1.5\n281,305,1.0\n281,306,0.5\n281,307,1.0\n281,308,1.5\n281,309,2.0\n281,310,2.5\n281,311,3.0\n281,312,3.5\n281,313,4.0\n281,314,4.5\n281,315,5.0\n281,316,5.5\n281,317,6.0\n281,318,6.5\n281,319,7.0\n281,320,7.5\n281,321,8.0\n281,322,8.5\n281,323,9.0\n281,324,9.5\n281,325,4.0\n281,326,3.5\n281,327,3.0\n281,328,2.5\n281,329,2.0\n281,330,1.5\n281,331,1.0\n281,332,1.5\n281,333,2.0\n281,334,2.5\n281,335,3.0\n281,336,3.5\n281,337,4.0\n281,338,4.5\n281,339,5.0\n281,340,5.5\n281,341,6.0\n281,342,6.5\n281,343,7.0\n281,344,7.5\n281,345,8.0\n281,346,8.5\n281,347,9.0\n281,348,9.5\n281,349,10.0\n281,350,4.5\n281,351,4.0\n281,352,3.5\n281,353,3.0\n281,354,2.5\n281,355,2.0\n281,356,1.5\n281,357,2.0\n281,358,2.5\n281,359,3.0\n281,360,3.5\n281,361,4.0\n281,362,4.5\n281,363,5.0\n281,364,5.5\n281,365,6.0\n281,366,6.5\n281,367,7.0\n281,368,7.5\n281,369,8.0\n281,370,8.5\n281,371,9.0\n281,372,9.5\n281,373,10.0\n281,374,10.5\n281,375,5.0\n281,376,4.5\n281,377,4.0\n281,378,3.5\n281,379,3.0\n281,380,2.5\n281,381,2.0\n281,382,2.5\n281,383,3.0\n281,384,3.5\n281,385,4.0\n281,386,4.5\n281,387,5.0\n281,388,5.5\n281,389,6.0\n281,390,6.5\n281,391,7.0\n281,392,7.5\n281,393,8.0\n281,394,8.5\n281,395,9.0\n281,396,9.5\n281,397,10.0\n281,398,10.5\n281,399,11.0\n281,400,5.5\n281,401,5.0\n281,402,4.5\n281,403,4.0\n281,404,3.5\n281,405,3.0\n281,406,2.5\n281,407,3.0\n281,408,3.5\n281,409,4.0\n281,410,4.5\n281,411,5.0\n281,412,5.5\n281,413,6.0\n281,414,6.5\n281,415,7.0\n281,416,7.5\n281,417,8.0\n281,418,8.5\n281,419,9.0\n281,420,9.5\n281,421,10.0\n281,422,10.5\n281,423,11.0\n281,424,11.5\n281,425,6.0\n281,426,5.5\n281,427,5.0\n281,428,4.5\n281,429,4.0\n281,430,3.5\n281,431,3.0\n281,432,3.5\n281,433,4.0\n281,434,4.5\n281,435,5.0\n281,436,5.5\n281,437,6.0\n281,438,6.5\n281,439,7.0\n281,440,7.5\n281,441,8.0\n281,442,8.5\n281,443,9.0\n281,444,9.5\n281,445,10.0\n281,446,10.5\n281,447,11.0\n281,448,11.5\n281,449,12.0\n281,450,6.5\n281,451,6.0\n281,452,5.5\n281,453,5.0\n281,454,4.5\n281,455,4.0\n281,456,3.5\n281,457,4.0\n281,458,4.5\n281,459,5.0\n281,460,5.5\n281,461,6.0\n281,462,6.5\n281,463,7.0\n281,464,7.5\n281,465,8.0\n281,466,8.5\n281,467,9.0\n281,468,9.5\n281,469,10.0\n281,470,10.5\n281,471,11.0\n281,472,11.5\n281,473,12.0\n281,474,12.5\n281,475,7.0\n281,476,6.5\n281,477,6.0\n281,478,5.5\n281,479,5.0\n281,480,4.5\n281,481,4.0\n281,482,4.5\n281,483,5.0\n281,484,5.5\n281,485,6.0\n281,486,6.5\n281,487,7.0\n281,488,7.5\n281,489,8.0\n281,490,8.5\n281,491,9.0\n281,492,9.5\n281,493,10.0\n281,494,10.5\n281,495,11.0\n281,496,11.5\n281,497,12.0\n281,498,12.5\n281,499,13.0\n281,500,7.5\n281,501,7.0\n281,502,6.5\n281,503,6.0\n281,504,5.5\n281,505,5.0\n281,506,4.5\n281,507,5.0\n281,508,5.5\n281,509,6.0\n281,510,6.5\n281,511,7.0\n281,512,7.5\n281,513,8.0\n281,514,8.5\n281,515,9.0\n281,516,9.5\n281,517,10.0\n281,518,10.5\n281,519,11.0\n281,520,11.5\n281,521,12.0\n281,522,12.5\n281,523,13.0\n281,524,13.5\n281,525,8.0\n281,526,7.5\n281,527,7.0\n281,528,6.5\n281,529,6.0\n281,530,5.5\n281,531,5.0\n281,532,5.5\n281,533,6.0\n281,534,6.5\n281,535,7.0\n281,536,7.5\n281,537,8.0\n281,538,8.5\n281,539,9.0\n281,540,9.5\n281,541,10.0\n281,542,10.5\n281,543,11.0\n281,544,11.5\n281,545,12.0\n281,546,12.5\n281,547,13.0\n281,548,13.5\n281,549,14.0\n281,550,8.5\n281,551,8.0\n281,552,7.5\n281,553,7.0\n281,554,6.5\n281,555,6.0\n281,556,5.5\n281,557,6.0\n281,558,6.5\n281,559,7.0\n281,560,7.5\n281,561,8.0\n281,562,8.5\n281,563,9.0\n281,564,9.5\n281,565,10.0\n281,566,10.5\n281,567,11.0\n281,568,11.5\n281,569,12.0\n281,570,12.5\n281,571,13.0\n281,572,13.5\n281,573,14.0\n281,574,14.5\n281,575,9.0\n281,576,8.5\n281,577,8.0\n281,578,7.5\n281,579,7.0\n281,580,6.5\n281,581,6.0\n281,582,6.5\n281,583,7.0\n281,584,7.5\n281,585,8.0\n281,586,8.5\n281,587,9.0\n281,588,9.5\n281,589,10.0\n281,590,10.5\n281,591,11.0\n281,592,11.5\n281,593,12.0\n281,594,12.5\n281,595,13.0\n281,596,13.5\n281,597,14.0\n281,598,14.5\n281,599,15.0\n281,600,9.5\n281,601,9.0\n281,602,8.5\n281,603,8.0\n281,604,7.5\n281,605,7.0\n281,606,6.5\n281,607,7.0\n281,608,7.5\n281,609,8.0\n281,610,8.5\n281,611,9.0\n281,612,9.5\n281,613,10.0\n281,614,10.5\n281,615,11.0\n281,616,11.5\n281,617,12.0\n281,618,12.5\n281,619,13.0\n281,620,13.5\n281,621,14.0\n281,622,14.5\n281,623,15.0\n281,624,15.5\n282,0,9.0\n282,1,8.5\n282,2,8.0\n282,3,7.5\n282,4,7.0\n282,5,6.5\n282,6,6.0\n282,7,5.5\n282,8,6.0\n282,9,6.5\n282,10,7.0\n282,11,7.5\n282,12,8.0\n282,13,8.5\n282,14,9.0\n282,15,9.5\n282,16,10.0\n282,17,10.5\n282,18,11.0\n282,19,11.5\n282,20,12.0\n282,21,12.5\n282,22,13.0\n282,23,13.5\n282,24,14.0\n282,25,8.5\n282,26,8.0\n282,27,7.5\n282,28,7.0\n282,29,6.5\n282,30,6.0\n282,31,5.5\n282,32,5.0\n282,33,5.5\n282,34,6.0\n282,35,6.5\n282,36,7.0\n282,37,7.5\n282,38,8.0\n282,39,8.5\n282,40,9.0\n282,41,9.5\n282,42,10.0\n282,43,10.5\n282,44,11.0\n282,45,11.5\n282,46,12.0\n282,47,12.5\n282,48,13.0\n282,49,13.5\n282,50,8.0\n282,51,7.5\n282,52,7.0\n282,53,6.5\n282,54,6.0\n282,55,5.5\n282,56,5.0\n282,57,4.5\n282,58,5.0\n282,59,5.5\n282,60,6.0\n282,61,6.5\n282,62,7.0\n282,63,7.5\n282,64,8.0\n282,65,8.5\n282,66,9.0\n282,67,9.5\n282,68,10.0\n282,69,10.5\n282,70,11.0\n282,71,11.5\n282,72,12.0\n282,73,12.5\n282,74,13.0\n282,75,7.5\n282,76,7.0\n282,77,6.5\n282,78,6.0\n282,79,5.5\n282,80,5.0\n282,81,4.5\n282,82,4.0\n282,83,4.5\n282,84,5.0\n282,85,5.5\n282,86,6.0\n282,87,6.5\n282,88,7.0\n282,89,7.5\n282,90,8.0\n282,91,8.5\n282,92,9.0\n282,93,9.5\n282,94,10.0\n282,95,10.5\n282,96,11.0\n282,97,11.5\n282,98,12.0\n282,99,12.5\n282,100,7.0\n282,101,6.5\n282,102,6.0\n282,103,5.5\n282,104,5.0\n282,105,4.5\n282,106,4.0\n282,107,3.5\n282,108,4.0\n282,109,4.5\n282,110,5.0\n282,111,5.5\n282,112,6.0\n282,113,6.5\n282,114,7.0\n282,115,7.5\n282,116,8.0\n282,117,8.5\n282,118,9.0\n282,119,9.5\n282,120,10.0\n282,121,10.5\n282,122,11.0\n282,123,11.5\n282,124,12.0\n282,125,6.5\n282,126,6.0\n282,127,5.5\n282,128,5.0\n282,129,4.5\n282,130,4.0\n282,131,3.5\n282,132,3.0\n282,133,3.5\n282,134,4.0\n282,135,4.5\n282,136,5.0\n282,137,5.5\n282,138,6.0\n282,139,6.5\n282,140,7.0\n282,141,7.5\n282,142,8.0\n282,143,8.5\n282,144,9.0\n282,145,9.5\n282,146,10.0\n282,147,10.5\n282,148,11.0\n282,149,11.5\n282,150,6.0\n282,151,5.5\n282,152,5.0\n282,153,4.5\n282,154,4.0\n282,155,3.5\n282,156,3.0\n282,157,2.5\n282,158,3.0\n282,159,3.5\n282,160,4.0\n282,161,4.5\n282,162,5.0\n282,163,5.5\n282,164,6.0\n282,165,6.5\n282,166,7.0\n282,167,7.5\n282,168,8.0\n282,169,8.5\n282,170,9.0\n282,171,9.5\n282,172,10.0\n282,173,10.5\n282,174,11.0\n282,175,5.5\n282,176,5.0\n282,177,4.5\n282,178,4.0\n282,179,3.5\n282,180,3.0\n282,181,2.5\n282,182,2.0\n282,183,2.5\n282,184,3.0\n282,185,3.5\n282,186,4.0\n282,187,4.5\n282,188,5.0\n282,189,5.5\n282,190,6.0\n282,191,6.5\n282,192,7.0\n282,193,7.5\n282,194,8.0\n282,195,8.5\n282,196,9.0\n282,197,9.5\n282,198,10.0\n282,199,10.5\n282,200,5.0\n282,201,4.5\n282,202,4.0\n282,203,3.5\n282,204,3.0\n282,205,2.5\n282,206,2.0\n282,207,1.5\n282,208,2.0\n282,209,2.5\n282,210,3.0\n282,211,3.5\n282,212,4.0\n282,213,4.5\n282,214,5.0\n282,215,5.5\n282,216,6.0\n282,217,6.5\n282,218,7.0\n282,219,7.5\n282,220,8.0\n282,221,8.5\n282,222,9.0\n282,223,9.5\n282,224,10.0\n282,225,4.5\n282,226,4.0\n282,227,3.5\n282,228,3.0\n282,229,2.5\n282,230,2.0\n282,231,1.5\n282,232,1.0\n282,233,1.5\n282,234,2.0\n282,235,2.5\n282,236,3.0\n282,237,3.5\n282,238,4.0\n282,239,4.5\n282,240,5.0\n282,241,5.5\n282,242,6.0\n282,243,6.5\n282,244,7.0\n282,245,7.5\n282,246,8.0\n282,247,8.5\n282,248,9.0\n282,249,9.5\n282,250,4.0\n282,251,3.5\n282,252,3.0\n282,253,2.5\n282,254,2.0\n282,255,1.5\n282,256,1.0\n282,257,0.5\n282,258,1.0\n282,259,1.5\n282,260,2.0\n282,261,2.5\n282,262,3.0\n282,263,3.5\n282,264,4.0\n282,265,4.5\n282,266,5.0\n282,267,5.5\n282,268,6.0\n282,269,6.5\n282,270,7.0\n282,271,7.5\n282,272,8.0\n282,273,8.5\n282,274,9.0\n282,275,3.5\n282,276,3.0\n282,277,2.5\n282,278,2.0\n282,279,1.5\n282,280,1.0\n282,281,0.5\n282,282,0\n282,283,0.5\n282,284,1.0\n282,285,1.5\n282,286,2.0\n282,287,2.5\n282,288,3.0\n282,289,3.5\n282,290,4.0\n282,291,4.5\n282,292,5.0\n282,293,5.5\n282,294,6.0\n282,295,6.5\n282,296,7.0\n282,297,7.5\n282,298,8.0\n282,299,8.5\n282,300,4.0\n282,301,3.5\n282,302,3.0\n282,303,2.5\n282,304,2.0\n282,305,1.5\n282,306,1.0\n282,307,0.5\n282,308,1.0\n282,309,1.5\n282,310,2.0\n282,311,2.5\n282,312,3.0\n282,313,3.5\n282,314,4.0\n282,315,4.5\n282,316,5.0\n282,317,5.5\n282,318,6.0\n282,319,6.5\n282,320,7.0\n282,321,7.5\n282,322,8.0\n282,323,8.5\n282,324,9.0\n282,325,4.5\n282,326,4.0\n282,327,3.5\n282,328,3.0\n282,329,2.5\n282,330,2.0\n282,331,1.5\n282,332,1.0\n282,333,1.5\n282,334,2.0\n282,335,2.5\n282,336,3.0\n282,337,3.5\n282,338,4.0\n282,339,4.5\n282,340,5.0\n282,341,5.5\n282,342,6.0\n282,343,6.5\n282,344,7.0\n282,345,7.5\n282,346,8.0\n282,347,8.5\n282,348,9.0\n282,349,9.5\n282,350,5.0\n282,351,4.5\n282,352,4.0\n282,353,3.5\n282,354,3.0\n282,355,2.5\n282,356,2.0\n282,357,1.5\n282,358,2.0\n282,359,2.5\n282,360,3.0\n282,361,3.5\n282,362,4.0\n282,363,4.5\n282,364,5.0\n282,365,5.5\n282,366,6.0\n282,367,6.5\n282,368,7.0\n282,369,7.5\n282,370,8.0\n282,371,8.5\n282,372,9.0\n282,373,9.5\n282,374,10.0\n282,375,5.5\n282,376,5.0\n282,377,4.5\n282,378,4.0\n282,379,3.5\n282,380,3.0\n282,381,2.5\n282,382,2.0\n282,383,2.5\n282,384,3.0\n282,385,3.5\n282,386,4.0\n282,387,4.5\n282,388,5.0\n282,389,5.5\n282,390,6.0\n282,391,6.5\n282,392,7.0\n282,393,7.5\n282,394,8.0\n282,395,8.5\n282,396,9.0\n282,397,9.5\n282,398,10.0\n282,399,10.5\n282,400,6.0\n282,401,5.5\n282,402,5.0\n282,403,4.5\n282,404,4.0\n282,405,3.5\n282,406,3.0\n282,407,2.5\n282,408,3.0\n282,409,3.5\n282,410,4.0\n282,411,4.5\n282,412,5.0\n282,413,5.5\n282,414,6.0\n282,415,6.5\n282,416,7.0\n282,417,7.5\n282,418,8.0\n282,419,8.5\n282,420,9.0\n282,421,9.5\n282,422,10.0\n282,423,10.5\n282,424,11.0\n282,425,6.5\n282,426,6.0\n282,427,5.5\n282,428,5.0\n282,429,4.5\n282,430,4.0\n282,431,3.5\n282,432,3.0\n282,433,3.5\n282,434,4.0\n282,435,4.5\n282,436,5.0\n282,437,5.5\n282,438,6.0\n282,439,6.5\n282,440,7.0\n282,441,7.5\n282,442,8.0\n282,443,8.5\n282,444,9.0\n282,445,9.5\n282,446,10.0\n282,447,10.5\n282,448,11.0\n282,449,11.5\n282,450,7.0\n282,451,6.5\n282,452,6.0\n282,453,5.5\n282,454,5.0\n282,455,4.5\n282,456,4.0\n282,457,3.5\n282,458,4.0\n282,459,4.5\n282,460,5.0\n282,461,5.5\n282,462,6.0\n282,463,6.5\n282,464,7.0\n282,465,7.5\n282,466,8.0\n282,467,8.5\n282,468,9.0\n282,469,9.5\n282,470,10.0\n282,471,10.5\n282,472,11.0\n282,473,11.5\n282,474,12.0\n282,475,7.5\n282,476,7.0\n282,477,6.5\n282,478,6.0\n282,479,5.5\n282,480,5.0\n282,481,4.5\n282,482,4.0\n282,483,4.5\n282,484,5.0\n282,485,5.5\n282,486,6.0\n282,487,6.5\n282,488,7.0\n282,489,7.5\n282,490,8.0\n282,491,8.5\n282,492,9.0\n282,493,9.5\n282,494,10.0\n282,495,10.5\n282,496,11.0\n282,497,11.5\n282,498,12.0\n282,499,12.5\n282,500,8.0\n282,501,7.5\n282,502,7.0\n282,503,6.5\n282,504,6.0\n282,505,5.5\n282,506,5.0\n282,507,4.5\n282,508,5.0\n282,509,5.5\n282,510,6.0\n282,511,6.5\n282,512,7.0\n282,513,7.5\n282,514,8.0\n282,515,8.5\n282,516,9.0\n282,517,9.5\n282,518,10.0\n282,519,10.5\n282,520,11.0\n282,521,11.5\n282,522,12.0\n282,523,12.5\n282,524,13.0\n282,525,8.5\n282,526,8.0\n282,527,7.5\n282,528,7.0\n282,529,6.5\n282,530,6.0\n282,531,5.5\n282,532,5.0\n282,533,5.5\n282,534,6.0\n282,535,6.5\n282,536,7.0\n282,537,7.5\n282,538,8.0\n282,539,8.5\n282,540,9.0\n282,541,9.5\n282,542,10.0\n282,543,10.5\n282,544,11.0\n282,545,11.5\n282,546,12.0\n282,547,12.5\n282,548,13.0\n282,549,13.5\n282,550,9.0\n282,551,8.5\n282,552,8.0\n282,553,7.5\n282,554,7.0\n282,555,6.5\n282,556,6.0\n282,557,5.5\n282,558,6.0\n282,559,6.5\n282,560,7.0\n282,561,7.5\n282,562,8.0\n282,563,8.5\n282,564,9.0\n282,565,9.5\n282,566,10.0\n282,567,10.5\n282,568,11.0\n282,569,11.5\n282,570,12.0\n282,571,12.5\n282,572,13.0\n282,573,13.5\n282,574,14.0\n282,575,9.5\n282,576,9.0\n282,577,8.5\n282,578,8.0\n282,579,7.5\n282,580,7.0\n282,581,6.5\n282,582,6.0\n282,583,6.5\n282,584,7.0\n282,585,7.5\n282,586,8.0\n282,587,8.5\n282,588,9.0\n282,589,9.5\n282,590,10.0\n282,591,10.5\n282,592,11.0\n282,593,11.5\n282,594,12.0\n282,595,12.5\n282,596,13.0\n282,597,13.5\n282,598,14.0\n282,599,14.5\n282,600,10.0\n282,601,9.5\n282,602,9.0\n282,603,8.5\n282,604,8.0\n282,605,7.5\n282,606,7.0\n282,607,6.5\n282,608,7.0\n282,609,7.5\n282,610,8.0\n282,611,8.5\n282,612,9.0\n282,613,9.5\n282,614,10.0\n282,615,10.5\n282,616,11.0\n282,617,11.5\n282,618,12.0\n282,619,12.5\n282,620,13.0\n282,621,13.5\n282,622,14.0\n282,623,14.5\n282,624,15.0\n283,0,9.5\n283,1,9.0\n283,2,8.5\n283,3,8.0\n283,4,7.5\n283,5,7.0\n283,6,6.5\n283,7,6.0\n283,8,5.5\n283,9,6.0\n283,10,6.5\n283,11,7.0\n283,12,7.5\n283,13,8.0\n283,14,8.5\n283,15,9.0\n283,16,9.5\n283,17,10.0\n283,18,10.5\n283,19,11.0\n283,20,11.5\n283,21,12.0\n283,22,12.5\n283,23,13.0\n283,24,13.5\n283,25,9.0\n283,26,8.5\n283,27,8.0\n283,28,7.5\n283,29,7.0\n283,30,6.5\n283,31,6.0\n283,32,5.5\n283,33,5.0\n283,34,5.5\n283,35,6.0\n283,36,6.5\n283,37,7.0\n283,38,7.5\n283,39,8.0\n283,40,8.5\n283,41,9.0\n283,42,9.5\n283,43,10.0\n283,44,10.5\n283,45,11.0\n283,46,11.5\n283,47,12.0\n283,48,12.5\n283,49,13.0\n283,50,8.5\n283,51,8.0\n283,52,7.5\n283,53,7.0\n283,54,6.5\n283,55,6.0\n283,56,5.5\n283,57,5.0\n283,58,4.5\n283,59,5.0\n283,60,5.5\n283,61,6.0\n283,62,6.5\n283,63,7.0\n283,64,7.5\n283,65,8.0\n283,66,8.5\n283,67,9.0\n283,68,9.5\n283,69,10.0\n283,70,10.5\n283,71,11.0\n283,72,11.5\n283,73,12.0\n283,74,12.5\n283,75,8.0\n283,76,7.5\n283,77,7.0\n283,78,6.5\n283,79,6.0\n283,80,5.5\n283,81,5.0\n283,82,4.5\n283,83,4.0\n283,84,4.5\n283,85,5.0\n283,86,5.5\n283,87,6.0\n283,88,6.5\n283,89,7.0\n283,90,7.5\n283,91,8.0\n283,92,8.5\n283,93,9.0\n283,94,9.5\n283,95,10.0\n283,96,10.5\n283,97,11.0\n283,98,11.5\n283,99,12.0\n283,100,7.5\n283,101,7.0\n283,102,6.5\n283,103,6.0\n283,104,5.5\n283,105,5.0\n283,106,4.5\n283,107,4.0\n283,108,3.5\n283,109,4.0\n283,110,4.5\n283,111,5.0\n283,112,5.5\n283,113,6.0\n283,114,6.5\n283,115,7.0\n283,116,7.5\n283,117,8.0\n283,118,8.5\n283,119,9.0\n283,120,9.5\n283,121,10.0\n283,122,10.5\n283,123,11.0\n283,124,11.5\n283,125,7.0\n283,126,6.5\n283,127,6.0\n283,128,5.5\n283,129,5.0\n283,130,4.5\n283,131,4.0\n283,132,3.5\n283,133,3.0\n283,134,3.5\n283,135,4.0\n283,136,4.5\n283,137,5.0\n283,138,5.5\n283,139,6.0\n283,140,6.5\n283,141,7.0\n283,142,7.5\n283,143,8.0\n283,144,8.5\n283,145,9.0\n283,146,9.5\n283,147,10.0\n283,148,10.5\n283,149,11.0\n283,150,6.5\n283,151,6.0\n283,152,5.5\n283,153,5.0\n283,154,4.5\n283,155,4.0\n283,156,3.5\n283,157,3.0\n283,158,2.5\n283,159,3.0\n283,160,3.5\n283,161,4.0\n283,162,4.5\n283,163,5.0\n283,164,5.5\n283,165,6.0\n283,166,6.5\n283,167,7.0\n283,168,7.5\n283,169,8.0\n283,170,8.5\n283,171,9.0\n283,172,9.5\n283,173,10.0\n283,174,10.5\n283,175,6.0\n283,176,5.5\n283,177,5.0\n283,178,4.5\n283,179,4.0\n283,180,3.5\n283,181,3.0\n283,182,2.5\n283,183,2.0\n283,184,2.5\n283,185,3.0\n283,186,3.5\n283,187,4.0\n283,188,4.5\n283,189,5.0\n283,190,5.5\n283,191,6.0\n283,192,6.5\n283,193,7.0\n283,194,7.5\n283,195,8.0\n283,196,8.5\n283,197,9.0\n283,198,9.5\n283,199,10.0\n283,200,5.5\n283,201,5.0\n283,202,4.5\n283,203,4.0\n283,204,3.5\n283,205,3.0\n283,206,2.5\n283,207,2.0\n283,208,1.5\n283,209,2.0\n283,210,2.5\n283,211,3.0\n283,212,3.5\n283,213,4.0\n283,214,4.5\n283,215,5.0\n283,216,5.5\n283,217,6.0\n283,218,6.5\n283,219,7.0\n283,220,7.5\n283,221,8.0\n283,222,8.5\n283,223,9.0\n283,224,9.5\n283,225,5.0\n283,226,4.5\n283,227,4.0\n283,228,3.5\n283,229,3.0\n283,230,2.5\n283,231,2.0\n283,232,1.5\n283,233,1.0\n283,234,1.5\n283,235,2.0\n283,236,2.5\n283,237,3.0\n283,238,3.5\n283,239,4.0\n283,240,4.5\n283,241,5.0\n283,242,5.5\n283,243,6.0\n283,244,6.5\n283,245,7.0\n283,246,7.5\n283,247,8.0\n283,248,8.5\n283,249,9.0\n283,250,4.5\n283,251,4.0\n283,252,3.5\n283,253,3.0\n283,254,2.5\n283,255,2.0\n283,256,1.5\n283,257,1.0\n283,258,0.5\n283,259,1.0\n283,260,1.5\n283,261,2.0\n283,262,2.5\n283,263,3.0\n283,264,3.5\n283,265,4.0\n283,266,4.5\n283,267,5.0\n283,268,5.5\n283,269,6.0\n283,270,6.5\n283,271,7.0\n283,272,7.5\n283,273,8.0\n283,274,8.5\n283,275,4.0\n283,276,3.5\n283,277,3.0\n283,278,2.5\n283,279,2.0\n283,280,1.5\n283,281,1.0\n283,282,0.5\n283,283,0\n283,284,0.5\n283,285,1.0\n283,286,1.5\n283,287,2.0\n283,288,2.5\n283,289,3.0\n283,290,3.5\n283,291,4.0\n283,292,4.5\n283,293,5.0\n283,294,5.5\n283,295,6.0\n283,296,6.5\n283,297,7.0\n283,298,7.5\n283,299,8.0\n283,300,4.5\n283,301,4.0\n283,302,3.5\n283,303,3.0\n283,304,2.5\n283,305,2.0\n283,306,1.5\n283,307,1.0\n283,308,0.5\n283,309,1.0\n283,310,1.5\n283,311,2.0\n283,312,2.5\n283,313,3.0\n283,314,3.5\n283,315,4.0\n283,316,4.5\n283,317,5.0\n283,318,5.5\n283,319,6.0\n283,320,6.5\n283,321,7.0\n283,322,7.5\n283,323,8.0\n283,324,8.5\n283,325,5.0\n283,326,4.5\n283,327,4.0\n283,328,3.5\n283,329,3.0\n283,330,2.5\n283,331,2.0\n283,332,1.5\n283,333,1.0\n283,334,1.5\n283,335,2.0\n283,336,2.5\n283,337,3.0\n283,338,3.5\n283,339,4.0\n283,340,4.5\n283,341,5.0\n283,342,5.5\n283,343,6.0\n283,344,6.5\n283,345,7.0\n283,346,7.5\n283,347,8.0\n283,348,8.5\n283,349,9.0\n283,350,5.5\n283,351,5.0\n283,352,4.5\n283,353,4.0\n283,354,3.5\n283,355,3.0\n283,356,2.5\n283,357,2.0\n283,358,1.5\n283,359,2.0\n283,360,2.5\n283,361,3.0\n283,362,3.5\n283,363,4.0\n283,364,4.5\n283,365,5.0\n283,366,5.5\n283,367,6.0\n283,368,6.5\n283,369,7.0\n283,370,7.5\n283,371,8.0\n283,372,8.5\n283,373,9.0\n283,374,9.5\n283,375,6.0\n283,376,5.5\n283,377,5.0\n283,378,4.5\n283,379,4.0\n283,380,3.5\n283,381,3.0\n283,382,2.5\n283,383,2.0\n283,384,2.5\n283,385,3.0\n283,386,3.5\n283,387,4.0\n283,388,4.5\n283,389,5.0\n283,390,5.5\n283,391,6.0\n283,392,6.5\n283,393,7.0\n283,394,7.5\n283,395,8.0\n283,396,8.5\n283,397,9.0\n283,398,9.5\n283,399,10.0\n283,400,6.5\n283,401,6.0\n283,402,5.5\n283,403,5.0\n283,404,4.5\n283,405,4.0\n283,406,3.5\n283,407,3.0\n283,408,2.5\n283,409,3.0\n283,410,3.5\n283,411,4.0\n283,412,4.5\n283,413,5.0\n283,414,5.5\n283,415,6.0\n283,416,6.5\n283,417,7.0\n283,418,7.5\n283,419,8.0\n283,420,8.5\n283,421,9.0\n283,422,9.5\n283,423,10.0\n283,424,10.5\n283,425,7.0\n283,426,6.5\n283,427,6.0\n283,428,5.5\n283,429,5.0\n283,430,4.5\n283,431,4.0\n283,432,3.5\n283,433,3.0\n283,434,3.5\n283,435,4.0\n283,436,4.5\n283,437,5.0\n283,438,5.5\n283,439,6.0\n283,440,6.5\n283,441,7.0\n283,442,7.5\n283,443,8.0\n283,444,8.5\n283,445,9.0\n283,446,9.5\n283,447,10.0\n283,448,10.5\n283,449,11.0\n283,450,7.5\n283,451,7.0\n283,452,6.5\n283,453,6.0\n283,454,5.5\n283,455,5.0\n283,456,4.5\n283,457,4.0\n283,458,3.5\n283,459,4.0\n283,460,4.5\n283,461,5.0\n283,462,5.5\n283,463,6.0\n283,464,6.5\n283,465,7.0\n283,466,7.5\n283,467,8.0\n283,468,8.5\n283,469,9.0\n283,470,9.5\n283,471,10.0\n283,472,10.5\n283,473,11.0\n283,474,11.5\n283,475,8.0\n283,476,7.5\n283,477,7.0\n283,478,6.5\n283,479,6.0\n283,480,5.5\n283,481,5.0\n283,482,4.5\n283,483,4.0\n283,484,4.5\n283,485,5.0\n283,486,5.5\n283,487,6.0\n283,488,6.5\n283,489,7.0\n283,490,7.5\n283,491,8.0\n283,492,8.5\n283,493,9.0\n283,494,9.5\n283,495,10.0\n283,496,10.5\n283,497,11.0\n283,498,11.5\n283,499,12.0\n283,500,8.5\n283,501,8.0\n283,502,7.5\n283,503,7.0\n283,504,6.5\n283,505,6.0\n283,506,5.5\n283,507,5.0\n283,508,4.5\n283,509,5.0\n283,510,5.5\n283,511,6.0\n283,512,6.5\n283,513,7.0\n283,514,7.5\n283,515,8.0\n283,516,8.5\n283,517,9.0\n283,518,9.5\n283,519,10.0\n283,520,10.5\n283,521,11.0\n283,522,11.5\n283,523,12.0\n283,524,12.5\n283,525,9.0\n283,526,8.5\n283,527,8.0\n283,528,7.5\n283,529,7.0\n283,530,6.5\n283,531,6.0\n283,532,5.5\n283,533,5.0\n283,534,5.5\n283,535,6.0\n283,536,6.5\n283,537,7.0\n283,538,7.5\n283,539,8.0\n283,540,8.5\n283,541,9.0\n283,542,9.5\n283,543,10.0\n283,544,10.5\n283,545,11.0\n283,546,11.5\n283,547,12.0\n283,548,12.5\n283,549,13.0\n283,550,9.5\n283,551,9.0\n283,552,8.5\n283,553,8.0\n283,554,7.5\n283,555,7.0\n283,556,6.5\n283,557,6.0\n283,558,5.5\n283,559,6.0\n283,560,6.5\n283,561,7.0\n283,562,7.5\n283,563,8.0\n283,564,8.5\n283,565,9.0\n283,566,9.5\n283,567,10.0\n283,568,10.5\n283,569,11.0\n283,570,11.5\n283,571,12.0\n283,572,12.5\n283,573,13.0\n283,574,13.5\n283,575,10.0\n283,576,9.5\n283,577,9.0\n283,578,8.5\n283,579,8.0\n283,580,7.5\n283,581,7.0\n283,582,6.5\n283,583,6.0\n283,584,6.5\n283,585,7.0\n283,586,7.5\n283,587,8.0\n283,588,8.5\n283,589,9.0\n283,590,9.5\n283,591,10.0\n283,592,10.5\n283,593,11.0\n283,594,11.5\n283,595,12.0\n283,596,12.5\n283,597,13.0\n283,598,13.5\n283,599,14.0\n283,600,10.5\n283,601,10.0\n283,602,9.5\n283,603,9.0\n283,604,8.5\n283,605,8.0\n283,606,7.5\n283,607,7.0\n283,608,6.5\n283,609,7.0\n283,610,7.5\n283,611,8.0\n283,612,8.5\n283,613,9.0\n283,614,9.5\n283,615,10.0\n283,616,10.5\n283,617,11.0\n283,618,11.5\n283,619,12.0\n283,620,12.5\n283,621,13.0\n283,622,13.5\n283,623,14.0\n283,624,14.5\n284,0,10.0\n284,1,9.5\n284,2,9.0\n284,3,8.5\n284,4,8.0\n284,5,7.5\n284,6,7.0\n284,7,6.5\n284,8,6.0\n284,9,5.5\n284,10,6.0\n284,11,6.5\n284,12,7.0\n284,13,7.5\n284,14,8.0\n284,15,8.5\n284,16,9.0\n284,17,9.5\n284,18,10.0\n284,19,10.5\n284,20,11.0\n284,21,11.5\n284,22,12.0\n284,23,12.5\n284,24,13.0\n284,25,9.5\n284,26,9.0\n284,27,8.5\n284,28,8.0\n284,29,7.5\n284,30,7.0\n284,31,6.5\n284,32,6.0\n284,33,5.5\n284,34,5.0\n284,35,5.5\n284,36,6.0\n284,37,6.5\n284,38,7.0\n284,39,7.5\n284,40,8.0\n284,41,8.5\n284,42,9.0\n284,43,9.5\n284,44,10.0\n284,45,10.5\n284,46,11.0\n284,47,11.5\n284,48,12.0\n284,49,12.5\n284,50,9.0\n284,51,8.5\n284,52,8.0\n284,53,7.5\n284,54,7.0\n284,55,6.5\n284,56,6.0\n284,57,5.5\n284,58,5.0\n284,59,4.5\n284,60,5.0\n284,61,5.5\n284,62,6.0\n284,63,6.5\n284,64,7.0\n284,65,7.5\n284,66,8.0\n284,67,8.5\n284,68,9.0\n284,69,9.5\n284,70,10.0\n284,71,10.5\n284,72,11.0\n284,73,11.5\n284,74,12.0\n284,75,8.5\n284,76,8.0\n284,77,7.5\n284,78,7.0\n284,79,6.5\n284,80,6.0\n284,81,5.5\n284,82,5.0\n284,83,4.5\n284,84,4.0\n284,85,4.5\n284,86,5.0\n284,87,5.5\n284,88,6.0\n284,89,6.5\n284,90,7.0\n284,91,7.5\n284,92,8.0\n284,93,8.5\n284,94,9.0\n284,95,9.5\n284,96,10.0\n284,97,10.5\n284,98,11.0\n284,99,11.5\n284,100,8.0\n284,101,7.5\n284,102,7.0\n284,103,6.5\n284,104,6.0\n284,105,5.5\n284,106,5.0\n284,107,4.5\n284,108,4.0\n284,109,3.5\n284,110,4.0\n284,111,4.5\n284,112,5.0\n284,113,5.5\n284,114,6.0\n284,115,6.5\n284,116,7.0\n284,117,7.5\n284,118,8.0\n284,119,8.5\n284,120,9.0\n284,121,9.5\n284,122,10.0\n284,123,10.5\n284,124,11.0\n284,125,7.5\n284,126,7.0\n284,127,6.5\n284,128,6.0\n284,129,5.5\n284,130,5.0\n284,131,4.5\n284,132,4.0\n284,133,3.5\n284,134,3.0\n284,135,3.5\n284,136,4.0\n284,137,4.5\n284,138,5.0\n284,139,5.5\n284,140,6.0\n284,141,6.5\n284,142,7.0\n284,143,7.5\n284,144,8.0\n284,145,8.5\n284,146,9.0\n284,147,9.5\n284,148,10.0\n284,149,10.5\n284,150,7.0\n284,151,6.5\n284,152,6.0\n284,153,5.5\n284,154,5.0\n284,155,4.5\n284,156,4.0\n284,157,3.5\n284,158,3.0\n284,159,2.5\n284,160,3.0\n284,161,3.5\n284,162,4.0\n284,163,4.5\n284,164,5.0\n284,165,5.5\n284,166,6.0\n284,167,6.5\n284,168,7.0\n284,169,7.5\n284,170,8.0\n284,171,8.5\n284,172,9.0\n284,173,9.5\n284,174,10.0\n284,175,6.5\n284,176,6.0\n284,177,5.5\n284,178,5.0\n284,179,4.5\n284,180,4.0\n284,181,3.5\n284,182,3.0\n284,183,2.5\n284,184,2.0\n284,185,2.5\n284,186,3.0\n284,187,3.5\n284,188,4.0\n284,189,4.5\n284,190,5.0\n284,191,5.5\n284,192,6.0\n284,193,6.5\n284,194,7.0\n284,195,7.5\n284,196,8.0\n284,197,8.5\n284,198,9.0\n284,199,9.5\n284,200,6.0\n284,201,5.5\n284,202,5.0\n284,203,4.5\n284,204,4.0\n284,205,3.5\n284,206,3.0\n284,207,2.5\n284,208,2.0\n284,209,1.5\n284,210,2.0\n284,211,2.5\n284,212,3.0\n284,213,3.5\n284,214,4.0\n284,215,4.5\n284,216,5.0\n284,217,5.5\n284,218,6.0\n284,219,6.5\n284,220,7.0\n284,221,7.5\n284,222,8.0\n284,223,8.5\n284,224,9.0\n284,225,5.5\n284,226,5.0\n284,227,4.5\n284,228,4.0\n284,229,3.5\n284,230,3.0\n284,231,2.5\n284,232,2.0\n284,233,1.5\n284,234,1.0\n284,235,1.5\n284,236,2.0\n284,237,2.5\n284,238,3.0\n284,239,3.5\n284,240,4.0\n284,241,4.5\n284,242,5.0\n284,243,5.5\n284,244,6.0\n284,245,6.5\n284,246,7.0\n284,247,7.5\n284,248,8.0\n284,249,8.5\n284,250,5.0\n284,251,4.5\n284,252,4.0\n284,253,3.5\n284,254,3.0\n284,255,2.5\n284,256,2.0\n284,257,1.5\n284,258,1.0\n284,259,0.5\n284,260,1.0\n284,261,1.5\n284,262,2.0\n284,263,2.5\n284,264,3.0\n284,265,3.5\n284,266,4.0\n284,267,4.5\n284,268,5.0\n284,269,5.5\n284,270,6.0\n284,271,6.5\n284,272,7.0\n284,273,7.5\n284,274,8.0\n284,275,4.5\n284,276,4.0\n284,277,3.5\n284,278,3.0\n284,279,2.5\n284,280,2.0\n284,281,1.5\n284,282,1.0\n284,283,0.5\n284,284,0\n284,285,0.5\n284,286,1.0\n284,287,1.5\n284,288,2.0\n284,289,2.5\n284,290,3.0\n284,291,3.5\n284,292,4.0\n284,293,4.5\n284,294,5.0\n284,295,5.5\n284,296,6.0\n284,297,6.5\n284,298,7.0\n284,299,7.5\n284,300,5.0\n284,301,4.5\n284,302,4.0\n284,303,3.5\n284,304,3.0\n284,305,2.5\n284,306,2.0\n284,307,1.5\n284,308,1.0\n284,309,0.5\n284,310,1.0\n284,311,1.5\n284,312,2.0\n284,313,2.5\n284,314,3.0\n284,315,3.5\n284,316,4.0\n284,317,4.5\n284,318,5.0\n284,319,5.5\n284,320,6.0\n284,321,6.5\n284,322,7.0\n284,323,7.5\n284,324,8.0\n284,325,5.5\n284,326,5.0\n284,327,4.5\n284,328,4.0\n284,329,3.5\n284,330,3.0\n284,331,2.5\n284,332,2.0\n284,333,1.5\n284,334,1.0\n284,335,1.5\n284,336,2.0\n284,337,2.5\n284,338,3.0\n284,339,3.5\n284,340,4.0\n284,341,4.5\n284,342,5.0\n284,343,5.5\n284,344,6.0\n284,345,6.5\n284,346,7.0\n284,347,7.5\n284,348,8.0\n284,349,8.5\n284,350,6.0\n284,351,5.5\n284,352,5.0\n284,353,4.5\n284,354,4.0\n284,355,3.5\n284,356,3.0\n284,357,2.5\n284,358,2.0\n284,359,1.5\n284,360,2.0\n284,361,2.5\n284,362,3.0\n284,363,3.5\n284,364,4.0\n284,365,4.5\n284,366,5.0\n284,367,5.5\n284,368,6.0\n284,369,6.5\n284,370,7.0\n284,371,7.5\n284,372,8.0\n284,373,8.5\n284,374,9.0\n284,375,6.5\n284,376,6.0\n284,377,5.5\n284,378,5.0\n284,379,4.5\n284,380,4.0\n284,381,3.5\n284,382,3.0\n284,383,2.5\n284,384,2.0\n284,385,2.5\n284,386,3.0\n284,387,3.5\n284,388,4.0\n284,389,4.5\n284,390,5.0\n284,391,5.5\n284,392,6.0\n284,393,6.5\n284,394,7.0\n284,395,7.5\n284,396,8.0\n284,397,8.5\n284,398,9.0\n284,399,9.5\n284,400,7.0\n284,401,6.5\n284,402,6.0\n284,403,5.5\n284,404,5.0\n284,405,4.5\n284,406,4.0\n284,407,3.5\n284,408,3.0\n284,409,2.5\n284,410,3.0\n284,411,3.5\n284,412,4.0\n284,413,4.5\n284,414,5.0\n284,415,5.5\n284,416,6.0\n284,417,6.5\n284,418,7.0\n284,419,7.5\n284,420,8.0\n284,421,8.5\n284,422,9.0\n284,423,9.5\n284,424,10.0\n284,425,7.5\n284,426,7.0\n284,427,6.5\n284,428,6.0\n284,429,5.5\n284,430,5.0\n284,431,4.5\n284,432,4.0\n284,433,3.5\n284,434,3.0\n284,435,3.5\n284,436,4.0\n284,437,4.5\n284,438,5.0\n284,439,5.5\n284,440,6.0\n284,441,6.5\n284,442,7.0\n284,443,7.5\n284,444,8.0\n284,445,8.5\n284,446,9.0\n284,447,9.5\n284,448,10.0\n284,449,10.5\n284,450,8.0\n284,451,7.5\n284,452,7.0\n284,453,6.5\n284,454,6.0\n284,455,5.5\n284,456,5.0\n284,457,4.5\n284,458,4.0\n284,459,3.5\n284,460,4.0\n284,461,4.5\n284,462,5.0\n284,463,5.5\n284,464,6.0\n284,465,6.5\n284,466,7.0\n284,467,7.5\n284,468,8.0\n284,469,8.5\n284,470,9.0\n284,471,9.5\n284,472,10.0\n284,473,10.5\n284,474,11.0\n284,475,8.5\n284,476,8.0\n284,477,7.5\n284,478,7.0\n284,479,6.5\n284,480,6.0\n284,481,5.5\n284,482,5.0\n284,483,4.5\n284,484,4.0\n284,485,4.5\n284,486,5.0\n284,487,5.5\n284,488,6.0\n284,489,6.5\n284,490,7.0\n284,491,7.5\n284,492,8.0\n284,493,8.5\n284,494,9.0\n284,495,9.5\n284,496,10.0\n284,497,10.5\n284,498,11.0\n284,499,11.5\n284,500,9.0\n284,501,8.5\n284,502,8.0\n284,503,7.5\n284,504,7.0\n284,505,6.5\n284,506,6.0\n284,507,5.5\n284,508,5.0\n284,509,4.5\n284,510,5.0\n284,511,5.5\n284,512,6.0\n284,513,6.5\n284,514,7.0\n284,515,7.5\n284,516,8.0\n284,517,8.5\n284,518,9.0\n284,519,9.5\n284,520,10.0\n284,521,10.5\n284,522,11.0\n284,523,11.5\n284,524,12.0\n284,525,9.5\n284,526,9.0\n284,527,8.5\n284,528,8.0\n284,529,7.5\n284,530,7.0\n284,531,6.5\n284,532,6.0\n284,533,5.5\n284,534,5.0\n284,535,5.5\n284,536,6.0\n284,537,6.5\n284,538,7.0\n284,539,7.5\n284,540,8.0\n284,541,8.5\n284,542,9.0\n284,543,9.5\n284,544,10.0\n284,545,10.5\n284,546,11.0\n284,547,11.5\n284,548,12.0\n284,549,12.5\n284,550,10.0\n284,551,9.5\n284,552,9.0\n284,553,8.5\n284,554,8.0\n284,555,7.5\n284,556,7.0\n284,557,6.5\n284,558,6.0\n284,559,5.5\n284,560,6.0\n284,561,6.5\n284,562,7.0\n284,563,7.5\n284,564,8.0\n284,565,8.5\n284,566,9.0\n284,567,9.5\n284,568,10.0\n284,569,10.5\n284,570,11.0\n284,571,11.5\n284,572,12.0\n284,573,12.5\n284,574,13.0\n284,575,10.5\n284,576,10.0\n284,577,9.5\n284,578,9.0\n284,579,8.5\n284,580,8.0\n284,581,7.5\n284,582,7.0\n284,583,6.5\n284,584,6.0\n284,585,6.5\n284,586,7.0\n284,587,7.5\n284,588,8.0\n284,589,8.5\n284,590,9.0\n284,591,9.5\n284,592,10.0\n284,593,10.5\n284,594,11.0\n284,595,11.5\n284,596,12.0\n284,597,12.5\n284,598,13.0\n284,599,13.5\n284,600,11.0\n284,601,10.5\n284,602,10.0\n284,603,9.5\n284,604,9.0\n284,605,8.5\n284,606,8.0\n284,607,7.5\n284,608,7.0\n284,609,6.5\n284,610,7.0\n284,611,7.5\n284,612,8.0\n284,613,8.5\n284,614,9.0\n284,615,9.5\n284,616,10.0\n284,617,10.5\n284,618,11.0\n284,619,11.5\n284,620,12.0\n284,621,12.5\n284,622,13.0\n284,623,13.5\n284,624,14.0\n285,0,10.5\n285,1,10.0\n285,2,9.5\n285,3,9.0\n285,4,8.5\n285,5,8.0\n285,6,7.5\n285,7,7.0\n285,8,6.5\n285,9,6.0\n285,10,5.5\n285,11,6.0\n285,12,6.5\n285,13,7.0\n285,14,7.5\n285,15,8.0\n285,16,8.5\n285,17,9.0\n285,18,9.5\n285,19,10.0\n285,20,10.5\n285,21,11.0\n285,22,11.5\n285,23,12.0\n285,24,12.5\n285,25,10.0\n285,26,9.5\n285,27,9.0\n285,28,8.5\n285,29,8.0\n285,30,7.5\n285,31,7.0\n285,32,6.5\n285,33,6.0\n285,34,5.5\n285,35,5.0\n285,36,5.5\n285,37,6.0\n285,38,6.5\n285,39,7.0\n285,40,7.5\n285,41,8.0\n285,42,8.5\n285,43,9.0\n285,44,9.5\n285,45,10.0\n285,46,10.5\n285,47,11.0\n285,48,11.5\n285,49,12.0\n285,50,9.5\n285,51,9.0\n285,52,8.5\n285,53,8.0\n285,54,7.5\n285,55,7.0\n285,56,6.5\n285,57,6.0\n285,58,5.5\n285,59,5.0\n285,60,4.5\n285,61,5.0\n285,62,5.5\n285,63,6.0\n285,64,6.5\n285,65,7.0\n285,66,7.5\n285,67,8.0\n285,68,8.5\n285,69,9.0\n285,70,9.5\n285,71,10.0\n285,72,10.5\n285,73,11.0\n285,74,11.5\n285,75,9.0\n285,76,8.5\n285,77,8.0\n285,78,7.5\n285,79,7.0\n285,80,6.5\n285,81,6.0\n285,82,5.5\n285,83,5.0\n285,84,4.5\n285,85,4.0\n285,86,4.5\n285,87,5.0\n285,88,5.5\n285,89,6.0\n285,90,6.5\n285,91,7.0\n285,92,7.5\n285,93,8.0\n285,94,8.5\n285,95,9.0\n285,96,9.5\n285,97,10.0\n285,98,10.5\n285,99,11.0\n285,100,8.5\n285,101,8.0\n285,102,7.5\n285,103,7.0\n285,104,6.5\n285,105,6.0\n285,106,5.5\n285,107,5.0\n285,108,4.5\n285,109,4.0\n285,110,3.5\n285,111,4.0\n285,112,4.5\n285,113,5.0\n285,114,5.5\n285,115,6.0\n285,116,6.5\n285,117,7.0\n285,118,7.5\n285,119,8.0\n285,120,8.5\n285,121,9.0\n285,122,9.5\n285,123,10.0\n285,124,10.5\n285,125,8.0\n285,126,7.5\n285,127,7.0\n285,128,6.5\n285,129,6.0\n285,130,5.5\n285,131,5.0\n285,132,4.5\n285,133,4.0\n285,134,3.5\n285,135,3.0\n285,136,3.5\n285,137,4.0\n285,138,4.5\n285,139,5.0\n285,140,5.5\n285,141,6.0\n285,142,6.5\n285,143,7.0\n285,144,7.5\n285,145,8.0\n285,146,8.5\n285,147,9.0\n285,148,9.5\n285,149,10.0\n285,150,7.5\n285,151,7.0\n285,152,6.5\n285,153,6.0\n285,154,5.5\n285,155,5.0\n285,156,4.5\n285,157,4.0\n285,158,3.5\n285,159,3.0\n285,160,2.5\n285,161,3.0\n285,162,3.5\n285,163,4.0\n285,164,4.5\n285,165,5.0\n285,166,5.5\n285,167,6.0\n285,168,6.5\n285,169,7.0\n285,170,7.5\n285,171,8.0\n285,172,8.5\n285,173,9.0\n285,174,9.5\n285,175,7.0\n285,176,6.5\n285,177,6.0\n285,178,5.5\n285,179,5.0\n285,180,4.5\n285,181,4.0\n285,182,3.5\n285,183,3.0\n285,184,2.5\n285,185,2.0\n285,186,2.5\n285,187,3.0\n285,188,3.5\n285,189,4.0\n285,190,4.5\n285,191,5.0\n285,192,5.5\n285,193,6.0\n285,194,6.5\n285,195,7.0\n285,196,7.5\n285,197,8.0\n285,198,8.5\n285,199,9.0\n285,200,6.5\n285,201,6.0\n285,202,5.5\n285,203,5.0\n285,204,4.5\n285,205,4.0\n285,206,3.5\n285,207,3.0\n285,208,2.5\n285,209,2.0\n285,210,1.5\n285,211,2.0\n285,212,2.5\n285,213,3.0\n285,214,3.5\n285,215,4.0\n285,216,4.5\n285,217,5.0\n285,218,5.5\n285,219,6.0\n285,220,6.5\n285,221,7.0\n285,222,7.5\n285,223,8.0\n285,224,8.5\n285,225,6.0\n285,226,5.5\n285,227,5.0\n285,228,4.5\n285,229,4.0\n285,230,3.5\n285,231,3.0\n285,232,2.5\n285,233,2.0\n285,234,1.5\n285,235,1.0\n285,236,1.5\n285,237,2.0\n285,238,2.5\n285,239,3.0\n285,240,3.5\n285,241,4.0\n285,242,4.5\n285,243,5.0\n285,244,5.5\n285,245,6.0\n285,246,6.5\n285,247,7.0\n285,248,7.5\n285,249,8.0\n285,250,5.5\n285,251,5.0\n285,252,4.5\n285,253,4.0\n285,254,3.5\n285,255,3.0\n285,256,2.5\n285,257,2.0\n285,258,1.5\n285,259,1.0\n285,260,0.5\n285,261,1.0\n285,262,1.5\n285,263,2.0\n285,264,2.5\n285,265,3.0\n285,266,3.5\n285,267,4.0\n285,268,4.5\n285,269,5.0\n285,270,5.5\n285,271,6.0\n285,272,6.5\n285,273,7.0\n285,274,7.5\n285,275,5.0\n285,276,4.5\n285,277,4.0\n285,278,3.5\n285,279,3.0\n285,280,2.5\n285,281,2.0\n285,282,1.5\n285,283,1.0\n285,284,0.5\n285,285,0\n285,286,0.5\n285,287,1.0\n285,288,1.5\n285,289,2.0\n285,290,2.5\n285,291,3.0\n285,292,3.5\n285,293,4.0\n285,294,4.5\n285,295,5.0\n285,296,5.5\n285,297,6.0\n285,298,6.5\n285,299,7.0\n285,300,5.5\n285,301,5.0\n285,302,4.5\n285,303,4.0\n285,304,3.5\n285,305,3.0\n285,306,2.5\n285,307,2.0\n285,308,1.5\n285,309,1.0\n285,310,0.5\n285,311,1.0\n285,312,1.5\n285,313,2.0\n285,314,2.5\n285,315,3.0\n285,316,3.5\n285,317,4.0\n285,318,4.5\n285,319,5.0\n285,320,5.5\n285,321,6.0\n285,322,6.5\n285,323,7.0\n285,324,7.5\n285,325,6.0\n285,326,5.5\n285,327,5.0\n285,328,4.5\n285,329,4.0\n285,330,3.5\n285,331,3.0\n285,332,2.5\n285,333,2.0\n285,334,1.5\n285,335,1.0\n285,336,1.5\n285,337,2.0\n285,338,2.5\n285,339,3.0\n285,340,3.5\n285,341,4.0\n285,342,4.5\n285,343,5.0\n285,344,5.5\n285,345,6.0\n285,346,6.5\n285,347,7.0\n285,348,7.5\n285,349,8.0\n285,350,6.5\n285,351,6.0\n285,352,5.5\n285,353,5.0\n285,354,4.5\n285,355,4.0\n285,356,3.5\n285,357,3.0\n285,358,2.5\n285,359,2.0\n285,360,1.5\n285,361,2.0\n285,362,2.5\n285,363,3.0\n285,364,3.5\n285,365,4.0\n285,366,4.5\n285,367,5.0\n285,368,5.5\n285,369,6.0\n285,370,6.5\n285,371,7.0\n285,372,7.5\n285,373,8.0\n285,374,8.5\n285,375,7.0\n285,376,6.5\n285,377,6.0\n285,378,5.5\n285,379,5.0\n285,380,4.5\n285,381,4.0\n285,382,3.5\n285,383,3.0\n285,384,2.5\n285,385,2.0\n285,386,2.5\n285,387,3.0\n285,388,3.5\n285,389,4.0\n285,390,4.5\n285,391,5.0\n285,392,5.5\n285,393,6.0\n285,394,6.5\n285,395,7.0\n285,396,7.5\n285,397,8.0\n285,398,8.5\n285,399,9.0\n285,400,7.5\n285,401,7.0\n285,402,6.5\n285,403,6.0\n285,404,5.5\n285,405,5.0\n285,406,4.5\n285,407,4.0\n285,408,3.5\n285,409,3.0\n285,410,2.5\n285,411,3.0\n285,412,3.5\n285,413,4.0\n285,414,4.5\n285,415,5.0\n285,416,5.5\n285,417,6.0\n285,418,6.5\n285,419,7.0\n285,420,7.5\n285,421,8.0\n285,422,8.5\n285,423,9.0\n285,424,9.5\n285,425,8.0\n285,426,7.5\n285,427,7.0\n285,428,6.5\n285,429,6.0\n285,430,5.5\n285,431,5.0\n285,432,4.5\n285,433,4.0\n285,434,3.5\n285,435,3.0\n285,436,3.5\n285,437,4.0\n285,438,4.5\n285,439,5.0\n285,440,5.5\n285,441,6.0\n285,442,6.5\n285,443,7.0\n285,444,7.5\n285,445,8.0\n285,446,8.5\n285,447,9.0\n285,448,9.5\n285,449,10.0\n285,450,8.5\n285,451,8.0\n285,452,7.5\n285,453,7.0\n285,454,6.5\n285,455,6.0\n285,456,5.5\n285,457,5.0\n285,458,4.5\n285,459,4.0\n285,460,3.5\n285,461,4.0\n285,462,4.5\n285,463,5.0\n285,464,5.5\n285,465,6.0\n285,466,6.5\n285,467,7.0\n285,468,7.5\n285,469,8.0\n285,470,8.5\n285,471,9.0\n285,472,9.5\n285,473,10.0\n285,474,10.5\n285,475,9.0\n285,476,8.5\n285,477,8.0\n285,478,7.5\n285,479,7.0\n285,480,6.5\n285,481,6.0\n285,482,5.5\n285,483,5.0\n285,484,4.5\n285,485,4.0\n285,486,4.5\n285,487,5.0\n285,488,5.5\n285,489,6.0\n285,490,6.5\n285,491,7.0\n285,492,7.5\n285,493,8.0\n285,494,8.5\n285,495,9.0\n285,496,9.5\n285,497,10.0\n285,498,10.5\n285,499,11.0\n285,500,9.5\n285,501,9.0\n285,502,8.5\n285,503,8.0\n285,504,7.5\n285,505,7.0\n285,506,6.5\n285,507,6.0\n285,508,5.5\n285,509,5.0\n285,510,4.5\n285,511,5.0\n285,512,5.5\n285,513,6.0\n285,514,6.5\n285,515,7.0\n285,516,7.5\n285,517,8.0\n285,518,8.5\n285,519,9.0\n285,520,9.5\n285,521,10.0\n285,522,10.5\n285,523,11.0\n285,524,11.5\n285,525,10.0\n285,526,9.5\n285,527,9.0\n285,528,8.5\n285,529,8.0\n285,530,7.5\n285,531,7.0\n285,532,6.5\n285,533,6.0\n285,534,5.5\n285,535,5.0\n285,536,5.5\n285,537,6.0\n285,538,6.5\n285,539,7.0\n285,540,7.5\n285,541,8.0\n285,542,8.5\n285,543,9.0\n285,544,9.5\n285,545,10.0\n285,546,10.5\n285,547,11.0\n285,548,11.5\n285,549,12.0\n285,550,10.5\n285,551,10.0\n285,552,9.5\n285,553,9.0\n285,554,8.5\n285,555,8.0\n285,556,7.5\n285,557,7.0\n285,558,6.5\n285,559,6.0\n285,560,5.5\n285,561,6.0\n285,562,6.5\n285,563,7.0\n285,564,7.5\n285,565,8.0\n285,566,8.5\n285,567,9.0\n285,568,9.5\n285,569,10.0\n285,570,10.5\n285,571,11.0\n285,572,11.5\n285,573,12.0\n285,574,12.5\n285,575,11.0\n285,576,10.5\n285,577,10.0\n285,578,9.5\n285,579,9.0\n285,580,8.5\n285,581,8.0\n285,582,7.5\n285,583,7.0\n285,584,6.5\n285,585,6.0\n285,586,6.5\n285,587,7.0\n285,588,7.5\n285,589,8.0\n285,590,8.5\n285,591,9.0\n285,592,9.5\n285,593,10.0\n285,594,10.5\n285,595,11.0\n285,596,11.5\n285,597,12.0\n285,598,12.5\n285,599,13.0\n285,600,11.5\n285,601,11.0\n285,602,10.5\n285,603,10.0\n285,604,9.5\n285,605,9.0\n285,606,8.5\n285,607,8.0\n285,608,7.5\n285,609,7.0\n285,610,6.5\n285,611,7.0\n285,612,7.5\n285,613,8.0\n285,614,8.5\n285,615,9.0\n285,616,9.5\n285,617,10.0\n285,618,10.5\n285,619,11.0\n285,620,11.5\n285,621,12.0\n285,622,12.5\n285,623,13.0\n285,624,13.5\n286,0,11.0\n286,1,10.5\n286,2,10.0\n286,3,9.5\n286,4,9.0\n286,5,8.5\n286,6,8.0\n286,7,7.5\n286,8,7.0\n286,9,6.5\n286,10,6.0\n286,11,5.5\n286,12,6.0\n286,13,6.5\n286,14,7.0\n286,15,7.5\n286,16,8.0\n286,17,8.5\n286,18,9.0\n286,19,9.5\n286,20,10.0\n286,21,10.5\n286,22,11.0\n286,23,11.5\n286,24,12.0\n286,25,10.5\n286,26,10.0\n286,27,9.5\n286,28,9.0\n286,29,8.5\n286,30,8.0\n286,31,7.5\n286,32,7.0\n286,33,6.5\n286,34,6.0\n286,35,5.5\n286,36,5.0\n286,37,5.5\n286,38,6.0\n286,39,6.5\n286,40,7.0\n286,41,7.5\n286,42,8.0\n286,43,8.5\n286,44,9.0\n286,45,9.5\n286,46,10.0\n286,47,10.5\n286,48,11.0\n286,49,11.5\n286,50,10.0\n286,51,9.5\n286,52,9.0\n286,53,8.5\n286,54,8.0\n286,55,7.5\n286,56,7.0\n286,57,6.5\n286,58,6.0\n286,59,5.5\n286,60,5.0\n286,61,4.5\n286,62,5.0\n286,63,5.5\n286,64,6.0\n286,65,6.5\n286,66,7.0\n286,67,7.5\n286,68,8.0\n286,69,8.5\n286,70,9.0\n286,71,9.5\n286,72,10.0\n286,73,10.5\n286,74,11.0\n286,75,9.5\n286,76,9.0\n286,77,8.5\n286,78,8.0\n286,79,7.5\n286,80,7.0\n286,81,6.5\n286,82,6.0\n286,83,5.5\n286,84,5.0\n286,85,4.5\n286,86,4.0\n286,87,4.5\n286,88,5.0\n286,89,5.5\n286,90,6.0\n286,91,6.5\n286,92,7.0\n286,93,7.5\n286,94,8.0\n286,95,8.5\n286,96,9.0\n286,97,9.5\n286,98,10.0\n286,99,10.5\n286,100,9.0\n286,101,8.5\n286,102,8.0\n286,103,7.5\n286,104,7.0\n286,105,6.5\n286,106,6.0\n286,107,5.5\n286,108,5.0\n286,109,4.5\n286,110,4.0\n286,111,3.5\n286,112,4.0\n286,113,4.5\n286,114,5.0\n286,115,5.5\n286,116,6.0\n286,117,6.5\n286,118,7.0\n286,119,7.5\n286,120,8.0\n286,121,8.5\n286,122,9.0\n286,123,9.5\n286,124,10.0\n286,125,8.5\n286,126,8.0\n286,127,7.5\n286,128,7.0\n286,129,6.5\n286,130,6.0\n286,131,5.5\n286,132,5.0\n286,133,4.5\n286,134,4.0\n286,135,3.5\n286,136,3.0\n286,137,3.5\n286,138,4.0\n286,139,4.5\n286,140,5.0\n286,141,5.5\n286,142,6.0\n286,143,6.5\n286,144,7.0\n286,145,7.5\n286,146,8.0\n286,147,8.5\n286,148,9.0\n286,149,9.5\n286,150,8.0\n286,151,7.5\n286,152,7.0\n286,153,6.5\n286,154,6.0\n286,155,5.5\n286,156,5.0\n286,157,4.5\n286,158,4.0\n286,159,3.5\n286,160,3.0\n286,161,2.5\n286,162,3.0\n286,163,3.5\n286,164,4.0\n286,165,4.5\n286,166,5.0\n286,167,5.5\n286,168,6.0\n286,169,6.5\n286,170,7.0\n286,171,7.5\n286,172,8.0\n286,173,8.5\n286,174,9.0\n286,175,7.5\n286,176,7.0\n286,177,6.5\n286,178,6.0\n286,179,5.5\n286,180,5.0\n286,181,4.5\n286,182,4.0\n286,183,3.5\n286,184,3.0\n286,185,2.5\n286,186,2.0\n286,187,2.5\n286,188,3.0\n286,189,3.5\n286,190,4.0\n286,191,4.5\n286,192,5.0\n286,193,5.5\n286,194,6.0\n286,195,6.5\n286,196,7.0\n286,197,7.5\n286,198,8.0\n286,199,8.5\n286,200,7.0\n286,201,6.5\n286,202,6.0\n286,203,5.5\n286,204,5.0\n286,205,4.5\n286,206,4.0\n286,207,3.5\n286,208,3.0\n286,209,2.5\n286,210,2.0\n286,211,1.5\n286,212,2.0\n286,213,2.5\n286,214,3.0\n286,215,3.5\n286,216,4.0\n286,217,4.5\n286,218,5.0\n286,219,5.5\n286,220,6.0\n286,221,6.5\n286,222,7.0\n286,223,7.5\n286,224,8.0\n286,225,6.5\n286,226,6.0\n286,227,5.5\n286,228,5.0\n286,229,4.5\n286,230,4.0\n286,231,3.5\n286,232,3.0\n286,233,2.5\n286,234,2.0\n286,235,1.5\n286,236,1.0\n286,237,1.5\n286,238,2.0\n286,239,2.5\n286,240,3.0\n286,241,3.5\n286,242,4.0\n286,243,4.5\n286,244,5.0\n286,245,5.5\n286,246,6.0\n286,247,6.5\n286,248,7.0\n286,249,7.5\n286,250,6.0\n286,251,5.5\n286,252,5.0\n286,253,4.5\n286,254,4.0\n286,255,3.5\n286,256,3.0\n286,257,2.5\n286,258,2.0\n286,259,1.5\n286,260,1.0\n286,261,0.5\n286,262,1.0\n286,263,1.5\n286,264,2.0\n286,265,2.5\n286,266,3.0\n286,267,3.5\n286,268,4.0\n286,269,4.5\n286,270,5.0\n286,271,5.5\n286,272,6.0\n286,273,6.5\n286,274,7.0\n286,275,5.5\n286,276,5.0\n286,277,4.5\n286,278,4.0\n286,279,3.5\n286,280,3.0\n286,281,2.5\n286,282,2.0\n286,283,1.5\n286,284,1.0\n286,285,0.5\n286,286,0\n286,287,0.5\n286,288,1.0\n286,289,1.5\n286,290,2.0\n286,291,2.5\n286,292,3.0\n286,293,3.5\n286,294,4.0\n286,295,4.5\n286,296,5.0\n286,297,5.5\n286,298,6.0\n286,299,6.5\n286,300,6.0\n286,301,5.5\n286,302,5.0\n286,303,4.5\n286,304,4.0\n286,305,3.5\n286,306,3.0\n286,307,2.5\n286,308,2.0\n286,309,1.5\n286,310,1.0\n286,311,0.5\n286,312,1.0\n286,313,1.5\n286,314,2.0\n286,315,2.5\n286,316,3.0\n286,317,3.5\n286,318,4.0\n286,319,4.5\n286,320,5.0\n286,321,5.5\n286,322,6.0\n286,323,6.5\n286,324,7.0\n286,325,6.5\n286,326,6.0\n286,327,5.5\n286,328,5.0\n286,329,4.5\n286,330,4.0\n286,331,3.5\n286,332,3.0\n286,333,2.5\n286,334,2.0\n286,335,1.5\n286,336,1.0\n286,337,1.5\n286,338,2.0\n286,339,2.5\n286,340,3.0\n286,341,3.5\n286,342,4.0\n286,343,4.5\n286,344,5.0\n286,345,5.5\n286,346,6.0\n286,347,6.5\n286,348,7.0\n286,349,7.5\n286,350,7.0\n286,351,6.5\n286,352,6.0\n286,353,5.5\n286,354,5.0\n286,355,4.5\n286,356,4.0\n286,357,3.5\n286,358,3.0\n286,359,2.5\n286,360,2.0\n286,361,1.5\n286,362,2.0\n286,363,2.5\n286,364,3.0\n286,365,3.5\n286,366,4.0\n286,367,4.5\n286,368,5.0\n286,369,5.5\n286,370,6.0\n286,371,6.5\n286,372,7.0\n286,373,7.5\n286,374,8.0\n286,375,7.5\n286,376,7.0\n286,377,6.5\n286,378,6.0\n286,379,5.5\n286,380,5.0\n286,381,4.5\n286,382,4.0\n286,383,3.5\n286,384,3.0\n286,385,2.5\n286,386,2.0\n286,387,2.5\n286,388,3.0\n286,389,3.5\n286,390,4.0\n286,391,4.5\n286,392,5.0\n286,393,5.5\n286,394,6.0\n286,395,6.5\n286,396,7.0\n286,397,7.5\n286,398,8.0\n286,399,8.5\n286,400,8.0\n286,401,7.5\n286,402,7.0\n286,403,6.5\n286,404,6.0\n286,405,5.5\n286,406,5.0\n286,407,4.5\n286,408,4.0\n286,409,3.5\n286,410,3.0\n286,411,2.5\n286,412,3.0\n286,413,3.5\n286,414,4.0\n286,415,4.5\n286,416,5.0\n286,417,5.5\n286,418,6.0\n286,419,6.5\n286,420,7.0\n286,421,7.5\n286,422,8.0\n286,423,8.5\n286,424,9.0\n286,425,8.5\n286,426,8.0\n286,427,7.5\n286,428,7.0\n286,429,6.5\n286,430,6.0\n286,431,5.5\n286,432,5.0\n286,433,4.5\n286,434,4.0\n286,435,3.5\n286,436,3.0\n286,437,3.5\n286,438,4.0\n286,439,4.5\n286,440,5.0\n286,441,5.5\n286,442,6.0\n286,443,6.5\n286,444,7.0\n286,445,7.5\n286,446,8.0\n286,447,8.5\n286,448,9.0\n286,449,9.5\n286,450,9.0\n286,451,8.5\n286,452,8.0\n286,453,7.5\n286,454,7.0\n286,455,6.5\n286,456,6.0\n286,457,5.5\n286,458,5.0\n286,459,4.5\n286,460,4.0\n286,461,3.5\n286,462,4.0\n286,463,4.5\n286,464,5.0\n286,465,5.5\n286,466,6.0\n286,467,6.5\n286,468,7.0\n286,469,7.5\n286,470,8.0\n286,471,8.5\n286,472,9.0\n286,473,9.5\n286,474,10.0\n286,475,9.5\n286,476,9.0\n286,477,8.5\n286,478,8.0\n286,479,7.5\n286,480,7.0\n286,481,6.5\n286,482,6.0\n286,483,5.5\n286,484,5.0\n286,485,4.5\n286,486,4.0\n286,487,4.5\n286,488,5.0\n286,489,5.5\n286,490,6.0\n286,491,6.5\n286,492,7.0\n286,493,7.5\n286,494,8.0\n286,495,8.5\n286,496,9.0\n286,497,9.5\n286,498,10.0\n286,499,10.5\n286,500,10.0\n286,501,9.5\n286,502,9.0\n286,503,8.5\n286,504,8.0\n286,505,7.5\n286,506,7.0\n286,507,6.5\n286,508,6.0\n286,509,5.5\n286,510,5.0\n286,511,4.5\n286,512,5.0\n286,513,5.5\n286,514,6.0\n286,515,6.5\n286,516,7.0\n286,517,7.5\n286,518,8.0\n286,519,8.5\n286,520,9.0\n286,521,9.5\n286,522,10.0\n286,523,10.5\n286,524,11.0\n286,525,10.5\n286,526,10.0\n286,527,9.5\n286,528,9.0\n286,529,8.5\n286,530,8.0\n286,531,7.5\n286,532,7.0\n286,533,6.5\n286,534,6.0\n286,535,5.5\n286,536,5.0\n286,537,5.5\n286,538,6.0\n286,539,6.5\n286,540,7.0\n286,541,7.5\n286,542,8.0\n286,543,8.5\n286,544,9.0\n286,545,9.5\n286,546,10.0\n286,547,10.5\n286,548,11.0\n286,549,11.5\n286,550,11.0\n286,551,10.5\n286,552,10.0\n286,553,9.5\n286,554,9.0\n286,555,8.5\n286,556,8.0\n286,557,7.5\n286,558,7.0\n286,559,6.5\n286,560,6.0\n286,561,5.5\n286,562,6.0\n286,563,6.5\n286,564,7.0\n286,565,7.5\n286,566,8.0\n286,567,8.5\n286,568,9.0\n286,569,9.5\n286,570,10.0\n286,571,10.5\n286,572,11.0\n286,573,11.5\n286,574,12.0\n286,575,11.5\n286,576,11.0\n286,577,10.5\n286,578,10.0\n286,579,9.5\n286,580,9.0\n286,581,8.5\n286,582,8.0\n286,583,7.5\n286,584,7.0\n286,585,6.5\n286,586,6.0\n286,587,6.5\n286,588,7.0\n286,589,7.5\n286,590,8.0\n286,591,8.5\n286,592,9.0\n286,593,9.5\n286,594,10.0\n286,595,10.5\n286,596,11.0\n286,597,11.5\n286,598,12.0\n286,599,12.5\n286,600,12.0\n286,601,11.5\n286,602,11.0\n286,603,10.5\n286,604,10.0\n286,605,9.5\n286,606,9.0\n286,607,8.5\n286,608,8.0\n286,609,7.5\n286,610,7.0\n286,611,6.5\n286,612,7.0\n286,613,7.5\n286,614,8.0\n286,615,8.5\n286,616,9.0\n286,617,9.5\n286,618,10.0\n286,619,10.5\n286,620,11.0\n286,621,11.5\n286,622,12.0\n286,623,12.5\n286,624,13.0\n287,0,11.5\n287,1,11.0\n287,2,10.5\n287,3,10.0\n287,4,9.5\n287,5,9.0\n287,6,8.5\n287,7,8.0\n287,8,7.5\n287,9,7.0\n287,10,6.5\n287,11,6.0\n287,12,5.5\n287,13,6.0\n287,14,6.5\n287,15,7.0\n287,16,7.5\n287,17,8.0\n287,18,8.5\n287,19,9.0\n287,20,9.5\n287,21,10.0\n287,22,10.5\n287,23,11.0\n287,24,11.5\n287,25,11.0\n287,26,10.5\n287,27,10.0\n287,28,9.5\n287,29,9.0\n287,30,8.5\n287,31,8.0\n287,32,7.5\n287,33,7.0\n287,34,6.5\n287,35,6.0\n287,36,5.5\n287,37,5.0\n287,38,5.5\n287,39,6.0\n287,40,6.5\n287,41,7.0\n287,42,7.5\n287,43,8.0\n287,44,8.5\n287,45,9.0\n287,46,9.5\n287,47,10.0\n287,48,10.5\n287,49,11.0\n287,50,10.5\n287,51,10.0\n287,52,9.5\n287,53,9.0\n287,54,8.5\n287,55,8.0\n287,56,7.5\n287,57,7.0\n287,58,6.5\n287,59,6.0\n287,60,5.5\n287,61,5.0\n287,62,4.5\n287,63,5.0\n287,64,5.5\n287,65,6.0\n287,66,6.5\n287,67,7.0\n287,68,7.5\n287,69,8.0\n287,70,8.5\n287,71,9.0\n287,72,9.5\n287,73,10.0\n287,74,10.5\n287,75,10.0\n287,76,9.5\n287,77,9.0\n287,78,8.5\n287,79,8.0\n287,80,7.5\n287,81,7.0\n287,82,6.5\n287,83,6.0\n287,84,5.5\n287,85,5.0\n287,86,4.5\n287,87,4.0\n287,88,4.5\n287,89,5.0\n287,90,5.5\n287,91,6.0\n287,92,6.5\n287,93,7.0\n287,94,7.5\n287,95,8.0\n287,96,8.5\n287,97,9.0\n287,98,9.5\n287,99,10.0\n287,100,9.5\n287,101,9.0\n287,102,8.5\n287,103,8.0\n287,104,7.5\n287,105,7.0\n287,106,6.5\n287,107,6.0\n287,108,5.5\n287,109,5.0\n287,110,4.5\n287,111,4.0\n287,112,3.5\n287,113,4.0\n287,114,4.5\n287,115,5.0\n287,116,5.5\n287,117,6.0\n287,118,6.5\n287,119,7.0\n287,120,7.5\n287,121,8.0\n287,122,8.5\n287,123,9.0\n287,124,9.5\n287,125,9.0\n287,126,8.5\n287,127,8.0\n287,128,7.5\n287,129,7.0\n287,130,6.5\n287,131,6.0\n287,132,5.5\n287,133,5.0\n287,134,4.5\n287,135,4.0\n287,136,3.5\n287,137,3.0\n287,138,3.5\n287,139,4.0\n287,140,4.5\n287,141,5.0\n287,142,5.5\n287,143,6.0\n287,144,6.5\n287,145,7.0\n287,146,7.5\n287,147,8.0\n287,148,8.5\n287,149,9.0\n287,150,8.5\n287,151,8.0\n287,152,7.5\n287,153,7.0\n287,154,6.5\n287,155,6.0\n287,156,5.5\n287,157,5.0\n287,158,4.5\n287,159,4.0\n287,160,3.5\n287,161,3.0\n287,162,2.5\n287,163,3.0\n287,164,3.5\n287,165,4.0\n287,166,4.5\n287,167,5.0\n287,168,5.5\n287,169,6.0\n287,170,6.5\n287,171,7.0\n287,172,7.5\n287,173,8.0\n287,174,8.5\n287,175,8.0\n287,176,7.5\n287,177,7.0\n287,178,6.5\n287,179,6.0\n287,180,5.5\n287,181,5.0\n287,182,4.5\n287,183,4.0\n287,184,3.5\n287,185,3.0\n287,186,2.5\n287,187,2.0\n287,188,2.5\n287,189,3.0\n287,190,3.5\n287,191,4.0\n287,192,4.5\n287,193,5.0\n287,194,5.5\n287,195,6.0\n287,196,6.5\n287,197,7.0\n287,198,7.5\n287,199,8.0\n287,200,7.5\n287,201,7.0\n287,202,6.5\n287,203,6.0\n287,204,5.5\n287,205,5.0\n287,206,4.5\n287,207,4.0\n287,208,3.5\n287,209,3.0\n287,210,2.5\n287,211,2.0\n287,212,1.5\n287,213,2.0\n287,214,2.5\n287,215,3.0\n287,216,3.5\n287,217,4.0\n287,218,4.5\n287,219,5.0\n287,220,5.5\n287,221,6.0\n287,222,6.5\n287,223,7.0\n287,224,7.5\n287,225,7.0\n287,226,6.5\n287,227,6.0\n287,228,5.5\n287,229,5.0\n287,230,4.5\n287,231,4.0\n287,232,3.5\n287,233,3.0\n287,234,2.5\n287,235,2.0\n287,236,1.5\n287,237,1.0\n287,238,1.5\n287,239,2.0\n287,240,2.5\n287,241,3.0\n287,242,3.5\n287,243,4.0\n287,244,4.5\n287,245,5.0\n287,246,5.5\n287,247,6.0\n287,248,6.5\n287,249,7.0\n287,250,6.5\n287,251,6.0\n287,252,5.5\n287,253,5.0\n287,254,4.5\n287,255,4.0\n287,256,3.5\n287,257,3.0\n287,258,2.5\n287,259,2.0\n287,260,1.5\n287,261,1.0\n287,262,0.5\n287,263,1.0\n287,264,1.5\n287,265,2.0\n287,266,2.5\n287,267,3.0\n287,268,3.5\n287,269,4.0\n287,270,4.5\n287,271,5.0\n287,272,5.5\n287,273,6.0\n287,274,6.5\n287,275,6.0\n287,276,5.5\n287,277,5.0\n287,278,4.5\n287,279,4.0\n287,280,3.5\n287,281,3.0\n287,282,2.5\n287,283,2.0\n287,284,1.5\n287,285,1.0\n287,286,0.5\n287,287,0\n287,288,0.5\n287,289,1.0\n287,290,1.5\n287,291,2.0\n287,292,2.5\n287,293,3.0\n287,294,3.5\n287,295,4.0\n287,296,4.5\n287,297,5.0\n287,298,5.5\n287,299,6.0\n287,300,6.5\n287,301,6.0\n287,302,5.5\n287,303,5.0\n287,304,4.5\n287,305,4.0\n287,306,3.5\n287,307,3.0\n287,308,2.5\n287,309,2.0\n287,310,1.5\n287,311,1.0\n287,312,0.5\n287,313,1.0\n287,314,1.5\n287,315,2.0\n287,316,2.5\n287,317,3.0\n287,318,3.5\n287,319,4.0\n287,320,4.5\n287,321,5.0\n287,322,5.5\n287,323,6.0\n287,324,6.5\n287,325,7.0\n287,326,6.5\n287,327,6.0\n287,328,5.5\n287,329,5.0\n287,330,4.5\n287,331,4.0\n287,332,3.5\n287,333,3.0\n287,334,2.5\n287,335,2.0\n287,336,1.5\n287,337,1.0\n287,338,1.5\n287,339,2.0\n287,340,2.5\n287,341,3.0\n287,342,3.5\n287,343,4.0\n287,344,4.5\n287,345,5.0\n287,346,5.5\n287,347,6.0\n287,348,6.5\n287,349,7.0\n287,350,7.5\n287,351,7.0\n287,352,6.5\n287,353,6.0\n287,354,5.5\n287,355,5.0\n287,356,4.5\n287,357,4.0\n287,358,3.5\n287,359,3.0\n287,360,2.5\n287,361,2.0\n287,362,1.5\n287,363,2.0\n287,364,2.5\n287,365,3.0\n287,366,3.5\n287,367,4.0\n287,368,4.5\n287,369,5.0\n287,370,5.5\n287,371,6.0\n287,372,6.5\n287,373,7.0\n287,374,7.5\n287,375,8.0\n287,376,7.5\n287,377,7.0\n287,378,6.5\n287,379,6.0\n287,380,5.5\n287,381,5.0\n287,382,4.5\n287,383,4.0\n287,384,3.5\n287,385,3.0\n287,386,2.5\n287,387,2.0\n287,388,2.5\n287,389,3.0\n287,390,3.5\n287,391,4.0\n287,392,4.5\n287,393,5.0\n287,394,5.5\n287,395,6.0\n287,396,6.5\n287,397,7.0\n287,398,7.5\n287,399,8.0\n287,400,8.5\n287,401,8.0\n287,402,7.5\n287,403,7.0\n287,404,6.5\n287,405,6.0\n287,406,5.5\n287,407,5.0\n287,408,4.5\n287,409,4.0\n287,410,3.5\n287,411,3.0\n287,412,2.5\n287,413,3.0\n287,414,3.5\n287,415,4.0\n287,416,4.5\n287,417,5.0\n287,418,5.5\n287,419,6.0\n287,420,6.5\n287,421,7.0\n287,422,7.5\n287,423,8.0\n287,424,8.5\n287,425,9.0\n287,426,8.5\n287,427,8.0\n287,428,7.5\n287,429,7.0\n287,430,6.5\n287,431,6.0\n287,432,5.5\n287,433,5.0\n287,434,4.5\n287,435,4.0\n287,436,3.5\n287,437,3.0\n287,438,3.5\n287,439,4.0\n287,440,4.5\n287,441,5.0\n287,442,5.5\n287,443,6.0\n287,444,6.5\n287,445,7.0\n287,446,7.5\n287,447,8.0\n287,448,8.5\n287,449,9.0\n287,450,9.5\n287,451,9.0\n287,452,8.5\n287,453,8.0\n287,454,7.5\n287,455,7.0\n287,456,6.5\n287,457,6.0\n287,458,5.5\n287,459,5.0\n287,460,4.5\n287,461,4.0\n287,462,3.5\n287,463,4.0\n287,464,4.5\n287,465,5.0\n287,466,5.5\n287,467,6.0\n287,468,6.5\n287,469,7.0\n287,470,7.5\n287,471,8.0\n287,472,8.5\n287,473,9.0\n287,474,9.5\n287,475,10.0\n287,476,9.5\n287,477,9.0\n287,478,8.5\n287,479,8.0\n287,480,7.5\n287,481,7.0\n287,482,6.5\n287,483,6.0\n287,484,5.5\n287,485,5.0\n287,486,4.5\n287,487,4.0\n287,488,4.5\n287,489,5.0\n287,490,5.5\n287,491,6.0\n287,492,6.5\n287,493,7.0\n287,494,7.5\n287,495,8.0\n287,496,8.5\n287,497,9.0\n287,498,9.5\n287,499,10.0\n287,500,10.5\n287,501,10.0\n287,502,9.5\n287,503,9.0\n287,504,8.5\n287,505,8.0\n287,506,7.5\n287,507,7.0\n287,508,6.5\n287,509,6.0\n287,510,5.5\n287,511,5.0\n287,512,4.5\n287,513,5.0\n287,514,5.5\n287,515,6.0\n287,516,6.5\n287,517,7.0\n287,518,7.5\n287,519,8.0\n287,520,8.5\n287,521,9.0\n287,522,9.5\n287,523,10.0\n287,524,10.5\n287,525,11.0\n287,526,10.5\n287,527,10.0\n287,528,9.5\n287,529,9.0\n287,530,8.5\n287,531,8.0\n287,532,7.5\n287,533,7.0\n287,534,6.5\n287,535,6.0\n287,536,5.5\n287,537,5.0\n287,538,5.5\n287,539,6.0\n287,540,6.5\n287,541,7.0\n287,542,7.5\n287,543,8.0\n287,544,8.5\n287,545,9.0\n287,546,9.5\n287,547,10.0\n287,548,10.5\n287,549,11.0\n287,550,11.5\n287,551,11.0\n287,552,10.5\n287,553,10.0\n287,554,9.5\n287,555,9.0\n287,556,8.5\n287,557,8.0\n287,558,7.5\n287,559,7.0\n287,560,6.5\n287,561,6.0\n287,562,5.5\n287,563,6.0\n287,564,6.5\n287,565,7.0\n287,566,7.5\n287,567,8.0\n287,568,8.5\n287,569,9.0\n287,570,9.5\n287,571,10.0\n287,572,10.5\n287,573,11.0\n287,574,11.5\n287,575,12.0\n287,576,11.5\n287,577,11.0\n287,578,10.5\n287,579,10.0\n287,580,9.5\n287,581,9.0\n287,582,8.5\n287,583,8.0\n287,584,7.5\n287,585,7.0\n287,586,6.5\n287,587,6.0\n287,588,6.5\n287,589,7.0\n287,590,7.5\n287,591,8.0\n287,592,8.5\n287,593,9.0\n287,594,9.5\n287,595,10.0\n287,596,10.5\n287,597,11.0\n287,598,11.5\n287,599,12.0\n287,600,12.5\n287,601,12.0\n287,602,11.5\n287,603,11.0\n287,604,10.5\n287,605,10.0\n287,606,9.5\n287,607,9.0\n287,608,8.5\n287,609,8.0\n287,610,7.5\n287,611,7.0\n287,612,6.5\n287,613,7.0\n287,614,7.5\n287,615,8.0\n287,616,8.5\n287,617,9.0\n287,618,9.5\n287,619,10.0\n287,620,10.5\n287,621,11.0\n287,622,11.5\n287,623,12.0\n287,624,12.5\n288,0,12.0\n288,1,11.5\n288,2,11.0\n288,3,10.5\n288,4,10.0\n288,5,9.5\n288,6,9.0\n288,7,8.5\n288,8,8.0\n288,9,7.5\n288,10,7.0\n288,11,6.5\n288,12,6.0\n288,13,5.5\n288,14,6.0\n288,15,6.5\n288,16,7.0\n288,17,7.5\n288,18,8.0\n288,19,8.5\n288,20,9.0\n288,21,9.5\n288,22,10.0\n288,23,10.5\n288,24,11.0\n288,25,11.5\n288,26,11.0\n288,27,10.5\n288,28,10.0\n288,29,9.5\n288,30,9.0\n288,31,8.5\n288,32,8.0\n288,33,7.5\n288,34,7.0\n288,35,6.5\n288,36,6.0\n288,37,5.5\n288,38,5.0\n288,39,5.5\n288,40,6.0\n288,41,6.5\n288,42,7.0\n288,43,7.5\n288,44,8.0\n288,45,8.5\n288,46,9.0\n288,47,9.5\n288,48,10.0\n288,49,10.5\n288,50,11.0\n288,51,10.5\n288,52,10.0\n288,53,9.5\n288,54,9.0\n288,55,8.5\n288,56,8.0\n288,57,7.5\n288,58,7.0\n288,59,6.5\n288,60,6.0\n288,61,5.5\n288,62,5.0\n288,63,4.5\n288,64,5.0\n288,65,5.5\n288,66,6.0\n288,67,6.5\n288,68,7.0\n288,69,7.5\n288,70,8.0\n288,71,8.5\n288,72,9.0\n288,73,9.5\n288,74,10.0\n288,75,10.5\n288,76,10.0\n288,77,9.5\n288,78,9.0\n288,79,8.5\n288,80,8.0\n288,81,7.5\n288,82,7.0\n288,83,6.5\n288,84,6.0\n288,85,5.5\n288,86,5.0\n288,87,4.5\n288,88,4.0\n288,89,4.5\n288,90,5.0\n288,91,5.5\n288,92,6.0\n288,93,6.5\n288,94,7.0\n288,95,7.5\n288,96,8.0\n288,97,8.5\n288,98,9.0\n288,99,9.5\n288,100,10.0\n288,101,9.5\n288,102,9.0\n288,103,8.5\n288,104,8.0\n288,105,7.5\n288,106,7.0\n288,107,6.5\n288,108,6.0\n288,109,5.5\n288,110,5.0\n288,111,4.5\n288,112,4.0\n288,113,3.5\n288,114,4.0\n288,115,4.5\n288,116,5.0\n288,117,5.5\n288,118,6.0\n288,119,6.5\n288,120,7.0\n288,121,7.5\n288,122,8.0\n288,123,8.5\n288,124,9.0\n288,125,9.5\n288,126,9.0\n288,127,8.5\n288,128,8.0\n288,129,7.5\n288,130,7.0\n288,131,6.5\n288,132,6.0\n288,133,5.5\n288,134,5.0\n288,135,4.5\n288,136,4.0\n288,137,3.5\n288,138,3.0\n288,139,3.5\n288,140,4.0\n288,141,4.5\n288,142,5.0\n288,143,5.5\n288,144,6.0\n288,145,6.5\n288,146,7.0\n288,147,7.5\n288,148,8.0\n288,149,8.5\n288,150,9.0\n288,151,8.5\n288,152,8.0\n288,153,7.5\n288,154,7.0\n288,155,6.5\n288,156,6.0\n288,157,5.5\n288,158,5.0\n288,159,4.5\n288,160,4.0\n288,161,3.5\n288,162,3.0\n288,163,2.5\n288,164,3.0\n288,165,3.5\n288,166,4.0\n288,167,4.5\n288,168,5.0\n288,169,5.5\n288,170,6.0\n288,171,6.5\n288,172,7.0\n288,173,7.5\n288,174,8.0\n288,175,8.5\n288,176,8.0\n288,177,7.5\n288,178,7.0\n288,179,6.5\n288,180,6.0\n288,181,5.5\n288,182,5.0\n288,183,4.5\n288,184,4.0\n288,185,3.5\n288,186,3.0\n288,187,2.5\n288,188,2.0\n288,189,2.5\n288,190,3.0\n288,191,3.5\n288,192,4.0\n288,193,4.5\n288,194,5.0\n288,195,5.5\n288,196,6.0\n288,197,6.5\n288,198,7.0\n288,199,7.5\n288,200,8.0\n288,201,7.5\n288,202,7.0\n288,203,6.5\n288,204,6.0\n288,205,5.5\n288,206,5.0\n288,207,4.5\n288,208,4.0\n288,209,3.5\n288,210,3.0\n288,211,2.5\n288,212,2.0\n288,213,1.5\n288,214,2.0\n288,215,2.5\n288,216,3.0\n288,217,3.5\n288,218,4.0\n288,219,4.5\n288,220,5.0\n288,221,5.5\n288,222,6.0\n288,223,6.5\n288,224,7.0\n288,225,7.5\n288,226,7.0\n288,227,6.5\n288,228,6.0\n288,229,5.5\n288,230,5.0\n288,231,4.5\n288,232,4.0\n288,233,3.5\n288,234,3.0\n288,235,2.5\n288,236,2.0\n288,237,1.5\n288,238,1.0\n288,239,1.5\n288,240,2.0\n288,241,2.5\n288,242,3.0\n288,243,3.5\n288,244,4.0\n288,245,4.5\n288,246,5.0\n288,247,5.5\n288,248,6.0\n288,249,6.5\n288,250,7.0\n288,251,6.5\n288,252,6.0\n288,253,5.5\n288,254,5.0\n288,255,4.5\n288,256,4.0\n288,257,3.5\n288,258,3.0\n288,259,2.5\n288,260,2.0\n288,261,1.5\n288,262,1.0\n288,263,0.5\n288,264,1.0\n288,265,1.5\n288,266,2.0\n288,267,2.5\n288,268,3.0\n288,269,3.5\n288,270,4.0\n288,271,4.5\n288,272,5.0\n288,273,5.5\n288,274,6.0\n288,275,6.5\n288,276,6.0\n288,277,5.5\n288,278,5.0\n288,279,4.5\n288,280,4.0\n288,281,3.5\n288,282,3.0\n288,283,2.5\n288,284,2.0\n288,285,1.5\n288,286,1.0\n288,287,0.5\n288,288,0\n288,289,0.5\n288,290,1.0\n288,291,1.5\n288,292,2.0\n288,293,2.5\n288,294,3.0\n288,295,3.5\n288,296,4.0\n288,297,4.5\n288,298,5.0\n288,299,5.5\n288,300,7.0\n288,301,6.5\n288,302,6.0\n288,303,5.5\n288,304,5.0\n288,305,4.5\n288,306,4.0\n288,307,3.5\n288,308,3.0\n288,309,2.5\n288,310,2.0\n288,311,1.5\n288,312,1.0\n288,313,0.5\n288,314,1.0\n288,315,1.5\n288,316,2.0\n288,317,2.5\n288,318,3.0\n288,319,3.5\n288,320,4.0\n288,321,4.5\n288,322,5.0\n288,323,5.5\n288,324,6.0\n288,325,7.5\n288,326,7.0\n288,327,6.5\n288,328,6.0\n288,329,5.5\n288,330,5.0\n288,331,4.5\n288,332,4.0\n288,333,3.5\n288,334,3.0\n288,335,2.5\n288,336,2.0\n288,337,1.5\n288,338,1.0\n288,339,1.5\n288,340,2.0\n288,341,2.5\n288,342,3.0\n288,343,3.5\n288,344,4.0\n288,345,4.5\n288,346,5.0\n288,347,5.5\n288,348,6.0\n288,349,6.5\n288,350,8.0\n288,351,7.5\n288,352,7.0\n288,353,6.5\n288,354,6.0\n288,355,5.5\n288,356,5.0\n288,357,4.5\n288,358,4.0\n288,359,3.5\n288,360,3.0\n288,361,2.5\n288,362,2.0\n288,363,1.5\n288,364,2.0\n288,365,2.5\n288,366,3.0\n288,367,3.5\n288,368,4.0\n288,369,4.5\n288,370,5.0\n288,371,5.5\n288,372,6.0\n288,373,6.5\n288,374,7.0\n288,375,8.5\n288,376,8.0\n288,377,7.5\n288,378,7.0\n288,379,6.5\n288,380,6.0\n288,381,5.5\n288,382,5.0\n288,383,4.5\n288,384,4.0\n288,385,3.5\n288,386,3.0\n288,387,2.5\n288,388,2.0\n288,389,2.5\n288,390,3.0\n288,391,3.5\n288,392,4.0\n288,393,4.5\n288,394,5.0\n288,395,5.5\n288,396,6.0\n288,397,6.5\n288,398,7.0\n288,399,7.5\n288,400,9.0\n288,401,8.5\n288,402,8.0\n288,403,7.5\n288,404,7.0\n288,405,6.5\n288,406,6.0\n288,407,5.5\n288,408,5.0\n288,409,4.5\n288,410,4.0\n288,411,3.5\n288,412,3.0\n288,413,2.5\n288,414,3.0\n288,415,3.5\n288,416,4.0\n288,417,4.5\n288,418,5.0\n288,419,5.5\n288,420,6.0\n288,421,6.5\n288,422,7.0\n288,423,7.5\n288,424,8.0\n288,425,9.5\n288,426,9.0\n288,427,8.5\n288,428,8.0\n288,429,7.5\n288,430,7.0\n288,431,6.5\n288,432,6.0\n288,433,5.5\n288,434,5.0\n288,435,4.5\n288,436,4.0\n288,437,3.5\n288,438,3.0\n288,439,3.5\n288,440,4.0\n288,441,4.5\n288,442,5.0\n288,443,5.5\n288,444,6.0\n288,445,6.5\n288,446,7.0\n288,447,7.5\n288,448,8.0\n288,449,8.5\n288,450,10.0\n288,451,9.5\n288,452,9.0\n288,453,8.5\n288,454,8.0\n288,455,7.5\n288,456,7.0\n288,457,6.5\n288,458,6.0\n288,459,5.5\n288,460,5.0\n288,461,4.5\n288,462,4.0\n288,463,3.5\n288,464,4.0\n288,465,4.5\n288,466,5.0\n288,467,5.5\n288,468,6.0\n288,469,6.5\n288,470,7.0\n288,471,7.5\n288,472,8.0\n288,473,8.5\n288,474,9.0\n288,475,10.5\n288,476,10.0\n288,477,9.5\n288,478,9.0\n288,479,8.5\n288,480,8.0\n288,481,7.5\n288,482,7.0\n288,483,6.5\n288,484,6.0\n288,485,5.5\n288,486,5.0\n288,487,4.5\n288,488,4.0\n288,489,4.5\n288,490,5.0\n288,491,5.5\n288,492,6.0\n288,493,6.5\n288,494,7.0\n288,495,7.5\n288,496,8.0\n288,497,8.5\n288,498,9.0\n288,499,9.5\n288,500,11.0\n288,501,10.5\n288,502,10.0\n288,503,9.5\n288,504,9.0\n288,505,8.5\n288,506,8.0\n288,507,7.5\n288,508,7.0\n288,509,6.5\n288,510,6.0\n288,511,5.5\n288,512,5.0\n288,513,4.5\n288,514,5.0\n288,515,5.5\n288,516,6.0\n288,517,6.5\n288,518,7.0\n288,519,7.5\n288,520,8.0\n288,521,8.5\n288,522,9.0\n288,523,9.5\n288,524,10.0\n288,525,11.5\n288,526,11.0\n288,527,10.5\n288,528,10.0\n288,529,9.5\n288,530,9.0\n288,531,8.5\n288,532,8.0\n288,533,7.5\n288,534,7.0\n288,535,6.5\n288,536,6.0\n288,537,5.5\n288,538,5.0\n288,539,5.5\n288,540,6.0\n288,541,6.5\n288,542,7.0\n288,543,7.5\n288,544,8.0\n288,545,8.5\n288,546,9.0\n288,547,9.5\n288,548,10.0\n288,549,10.5\n288,550,12.0\n288,551,11.5\n288,552,11.0\n288,553,10.5\n288,554,10.0\n288,555,9.5\n288,556,9.0\n288,557,8.5\n288,558,8.0\n288,559,7.5\n288,560,7.0\n288,561,6.5\n288,562,6.0\n288,563,5.5\n288,564,6.0\n288,565,6.5\n288,566,7.0\n288,567,7.5\n288,568,8.0\n288,569,8.5\n288,570,9.0\n288,571,9.5\n288,572,10.0\n288,573,10.5\n288,574,11.0\n288,575,12.5\n288,576,12.0\n288,577,11.5\n288,578,11.0\n288,579,10.5\n288,580,10.0\n288,581,9.5\n288,582,9.0\n288,583,8.5\n288,584,8.0\n288,585,7.5\n288,586,7.0\n288,587,6.5\n288,588,6.0\n288,589,6.5\n288,590,7.0\n288,591,7.5\n288,592,8.0\n288,593,8.5\n288,594,9.0\n288,595,9.5\n288,596,10.0\n288,597,10.5\n288,598,11.0\n288,599,11.5\n288,600,13.0\n288,601,12.5\n288,602,12.0\n288,603,11.5\n288,604,11.0\n288,605,10.5\n288,606,10.0\n288,607,9.5\n288,608,9.0\n288,609,8.5\n288,610,8.0\n288,611,7.5\n288,612,7.0\n288,613,6.5\n288,614,7.0\n288,615,7.5\n288,616,8.0\n288,617,8.5\n288,618,9.0\n288,619,9.5\n288,620,10.0\n288,621,10.5\n288,622,11.0\n288,623,11.5\n288,624,12.0\n289,0,12.5\n289,1,12.0\n289,2,11.5\n289,3,11.0\n289,4,10.5\n289,5,10.0\n289,6,9.5\n289,7,9.0\n289,8,8.5\n289,9,8.0\n289,10,7.5\n289,11,7.0\n289,12,6.5\n289,13,6.0\n289,14,5.5\n289,15,6.0\n289,16,6.5\n289,17,7.0\n289,18,7.5\n289,19,8.0\n289,20,8.5\n289,21,9.0\n289,22,9.5\n289,23,10.0\n289,24,10.5\n289,25,12.0\n289,26,11.5\n289,27,11.0\n289,28,10.5\n289,29,10.0\n289,30,9.5\n289,31,9.0\n289,32,8.5\n289,33,8.0\n289,34,7.5\n289,35,7.0\n289,36,6.5\n289,37,6.0\n289,38,5.5\n289,39,5.0\n289,40,5.5\n289,41,6.0\n289,42,6.5\n289,43,7.0\n289,44,7.5\n289,45,8.0\n289,46,8.5\n289,47,9.0\n289,48,9.5\n289,49,10.0\n289,50,11.5\n289,51,11.0\n289,52,10.5\n289,53,10.0\n289,54,9.5\n289,55,9.0\n289,56,8.5\n289,57,8.0\n289,58,7.5\n289,59,7.0\n289,60,6.5\n289,61,6.0\n289,62,5.5\n289,63,5.0\n289,64,4.5\n289,65,5.0\n289,66,5.5\n289,67,6.0\n289,68,6.5\n289,69,7.0\n289,70,7.5\n289,71,8.0\n289,72,8.5\n289,73,9.0\n289,74,9.5\n289,75,11.0\n289,76,10.5\n289,77,10.0\n289,78,9.5\n289,79,9.0\n289,80,8.5\n289,81,8.0\n289,82,7.5\n289,83,7.0\n289,84,6.5\n289,85,6.0\n289,86,5.5\n289,87,5.0\n289,88,4.5\n289,89,4.0\n289,90,4.5\n289,91,5.0\n289,92,5.5\n289,93,6.0\n289,94,6.5\n289,95,7.0\n289,96,7.5\n289,97,8.0\n289,98,8.5\n289,99,9.0\n289,100,10.5\n289,101,10.0\n289,102,9.5\n289,103,9.0\n289,104,8.5\n289,105,8.0\n289,106,7.5\n289,107,7.0\n289,108,6.5\n289,109,6.0\n289,110,5.5\n289,111,5.0\n289,112,4.5\n289,113,4.0\n289,114,3.5\n289,115,4.0\n289,116,4.5\n289,117,5.0\n289,118,5.5\n289,119,6.0\n289,120,6.5\n289,121,7.0\n289,122,7.5\n289,123,8.0\n289,124,8.5\n289,125,10.0\n289,126,9.5\n289,127,9.0\n289,128,8.5\n289,129,8.0\n289,130,7.5\n289,131,7.0\n289,132,6.5\n289,133,6.0\n289,134,5.5\n289,135,5.0\n289,136,4.5\n289,137,4.0\n289,138,3.5\n289,139,3.0\n289,140,3.5\n289,141,4.0\n289,142,4.5\n289,143,5.0\n289,144,5.5\n289,145,6.0\n289,146,6.5\n289,147,7.0\n289,148,7.5\n289,149,8.0\n289,150,9.5\n289,151,9.0\n289,152,8.5\n289,153,8.0\n289,154,7.5\n289,155,7.0\n289,156,6.5\n289,157,6.0\n289,158,5.5\n289,159,5.0\n289,160,4.5\n289,161,4.0\n289,162,3.5\n289,163,3.0\n289,164,2.5\n289,165,3.0\n289,166,3.5\n289,167,4.0\n289,168,4.5\n289,169,5.0\n289,170,5.5\n289,171,6.0\n289,172,6.5\n289,173,7.0\n289,174,7.5\n289,175,9.0\n289,176,8.5\n289,177,8.0\n289,178,7.5\n289,179,7.0\n289,180,6.5\n289,181,6.0\n289,182,5.5\n289,183,5.0\n289,184,4.5\n289,185,4.0\n289,186,3.5\n289,187,3.0\n289,188,2.5\n289,189,2.0\n289,190,2.5\n289,191,3.0\n289,192,3.5\n289,193,4.0\n289,194,4.5\n289,195,5.0\n289,196,5.5\n289,197,6.0\n289,198,6.5\n289,199,7.0\n289,200,8.5\n289,201,8.0\n289,202,7.5\n289,203,7.0\n289,204,6.5\n289,205,6.0\n289,206,5.5\n289,207,5.0\n289,208,4.5\n289,209,4.0\n289,210,3.5\n289,211,3.0\n289,212,2.5\n289,213,2.0\n289,214,1.5\n289,215,2.0\n289,216,2.5\n289,217,3.0\n289,218,3.5\n289,219,4.0\n289,220,4.5\n289,221,5.0\n289,222,5.5\n289,223,6.0\n289,224,6.5\n289,225,8.0\n289,226,7.5\n289,227,7.0\n289,228,6.5\n289,229,6.0\n289,230,5.5\n289,231,5.0\n289,232,4.5\n289,233,4.0\n289,234,3.5\n289,235,3.0\n289,236,2.5\n289,237,2.0\n289,238,1.5\n289,239,1.0\n289,240,1.5\n289,241,2.0\n289,242,2.5\n289,243,3.0\n289,244,3.5\n289,245,4.0\n289,246,4.5\n289,247,5.0\n289,248,5.5\n289,249,6.0\n289,250,7.5\n289,251,7.0\n289,252,6.5\n289,253,6.0\n289,254,5.5\n289,255,5.0\n289,256,4.5\n289,257,4.0\n289,258,3.5\n289,259,3.0\n289,260,2.5\n289,261,2.0\n289,262,1.5\n289,263,1.0\n289,264,0.5\n289,265,1.0\n289,266,1.5\n289,267,2.0\n289,268,2.5\n289,269,3.0\n289,270,3.5\n289,271,4.0\n289,272,4.5\n289,273,5.0\n289,274,5.5\n289,275,7.0\n289,276,6.5\n289,277,6.0\n289,278,5.5\n289,279,5.0\n289,280,4.5\n289,281,4.0\n289,282,3.5\n289,283,3.0\n289,284,2.5\n289,285,2.0\n289,286,1.5\n289,287,1.0\n289,288,0.5\n289,289,0\n289,290,0.5\n289,291,1.0\n289,292,1.5\n289,293,2.0\n289,294,2.5\n289,295,3.0\n289,296,3.5\n289,297,4.0\n289,298,4.5\n289,299,5.0\n289,300,7.5\n289,301,7.0\n289,302,6.5\n289,303,6.0\n289,304,5.5\n289,305,5.0\n289,306,4.5\n289,307,4.0\n289,308,3.5\n289,309,3.0\n289,310,2.5\n289,311,2.0\n289,312,1.5\n289,313,1.0\n289,314,0.5\n289,315,1.0\n289,316,1.5\n289,317,2.0\n289,318,2.5\n289,319,3.0\n289,320,3.5\n289,321,4.0\n289,322,4.5\n289,323,5.0\n289,324,5.5\n289,325,8.0\n289,326,7.5\n289,327,7.0\n289,328,6.5\n289,329,6.0\n289,330,5.5\n289,331,5.0\n289,332,4.5\n289,333,4.0\n289,334,3.5\n289,335,3.0\n289,336,2.5\n289,337,2.0\n289,338,1.5\n289,339,1.0\n289,340,1.5\n289,341,2.0\n289,342,2.5\n289,343,3.0\n289,344,3.5\n289,345,4.0\n289,346,4.5\n289,347,5.0\n289,348,5.5\n289,349,6.0\n289,350,8.5\n289,351,8.0\n289,352,7.5\n289,353,7.0\n289,354,6.5\n289,355,6.0\n289,356,5.5\n289,357,5.0\n289,358,4.5\n289,359,4.0\n289,360,3.5\n289,361,3.0\n289,362,2.5\n289,363,2.0\n289,364,1.5\n289,365,2.0\n289,366,2.5\n289,367,3.0\n289,368,3.5\n289,369,4.0\n289,370,4.5\n289,371,5.0\n289,372,5.5\n289,373,6.0\n289,374,6.5\n289,375,9.0\n289,376,8.5\n289,377,8.0\n289,378,7.5\n289,379,7.0\n289,380,6.5\n289,381,6.0\n289,382,5.5\n289,383,5.0\n289,384,4.5\n289,385,4.0\n289,386,3.5\n289,387,3.0\n289,388,2.5\n289,389,2.0\n289,390,2.5\n289,391,3.0\n289,392,3.5\n289,393,4.0\n289,394,4.5\n289,395,5.0\n289,396,5.5\n289,397,6.0\n289,398,6.5\n289,399,7.0\n289,400,9.5\n289,401,9.0\n289,402,8.5\n289,403,8.0\n289,404,7.5\n289,405,7.0\n289,406,6.5\n289,407,6.0\n289,408,5.5\n289,409,5.0\n289,410,4.5\n289,411,4.0\n289,412,3.5\n289,413,3.0\n289,414,2.5\n289,415,3.0\n289,416,3.5\n289,417,4.0\n289,418,4.5\n289,419,5.0\n289,420,5.5\n289,421,6.0\n289,422,6.5\n289,423,7.0\n289,424,7.5\n289,425,10.0\n289,426,9.5\n289,427,9.0\n289,428,8.5\n289,429,8.0\n289,430,7.5\n289,431,7.0\n289,432,6.5\n289,433,6.0\n289,434,5.5\n289,435,5.0\n289,436,4.5\n289,437,4.0\n289,438,3.5\n289,439,3.0\n289,440,3.5\n289,441,4.0\n289,442,4.5\n289,443,5.0\n289,444,5.5\n289,445,6.0\n289,446,6.5\n289,447,7.0\n289,448,7.5\n289,449,8.0\n289,450,10.5\n289,451,10.0\n289,452,9.5\n289,453,9.0\n289,454,8.5\n289,455,8.0\n289,456,7.5\n289,457,7.0\n289,458,6.5\n289,459,6.0\n289,460,5.5\n289,461,5.0\n289,462,4.5\n289,463,4.0\n289,464,3.5\n289,465,4.0\n289,466,4.5\n289,467,5.0\n289,468,5.5\n289,469,6.0\n289,470,6.5\n289,471,7.0\n289,472,7.5\n289,473,8.0\n289,474,8.5\n289,475,11.0\n289,476,10.5\n289,477,10.0\n289,478,9.5\n289,479,9.0\n289,480,8.5\n289,481,8.0\n289,482,7.5\n289,483,7.0\n289,484,6.5\n289,485,6.0\n289,486,5.5\n289,487,5.0\n289,488,4.5\n289,489,4.0\n289,490,4.5\n289,491,5.0\n289,492,5.5\n289,493,6.0\n289,494,6.5\n289,495,7.0\n289,496,7.5\n289,497,8.0\n289,498,8.5\n289,499,9.0\n289,500,11.5\n289,501,11.0\n289,502,10.5\n289,503,10.0\n289,504,9.5\n289,505,9.0\n289,506,8.5\n289,507,8.0\n289,508,7.5\n289,509,7.0\n289,510,6.5\n289,511,6.0\n289,512,5.5\n289,513,5.0\n289,514,4.5\n289,515,5.0\n289,516,5.5\n289,517,6.0\n289,518,6.5\n289,519,7.0\n289,520,7.5\n289,521,8.0\n289,522,8.5\n289,523,9.0\n289,524,9.5\n289,525,12.0\n289,526,11.5\n289,527,11.0\n289,528,10.5\n289,529,10.0\n289,530,9.5\n289,531,9.0\n289,532,8.5\n289,533,8.0\n289,534,7.5\n289,535,7.0\n289,536,6.5\n289,537,6.0\n289,538,5.5\n289,539,5.0\n289,540,5.5\n289,541,6.0\n289,542,6.5\n289,543,7.0\n289,544,7.5\n289,545,8.0\n289,546,8.5\n289,547,9.0\n289,548,9.5\n289,549,10.0\n289,550,12.5\n289,551,12.0\n289,552,11.5\n289,553,11.0\n289,554,10.5\n289,555,10.0\n289,556,9.5\n289,557,9.0\n289,558,8.5\n289,559,8.0\n289,560,7.5\n289,561,7.0\n289,562,6.5\n289,563,6.0\n289,564,5.5\n289,565,6.0\n289,566,6.5\n289,567,7.0\n289,568,7.5\n289,569,8.0\n289,570,8.5\n289,571,9.0\n289,572,9.5\n289,573,10.0\n289,574,10.5\n289,575,13.0\n289,576,12.5\n289,577,12.0\n289,578,11.5\n289,579,11.0\n289,580,10.5\n289,581,10.0\n289,582,9.5\n289,583,9.0\n289,584,8.5\n289,585,8.0\n289,586,7.5\n289,587,7.0\n289,588,6.5\n289,589,6.0\n289,590,6.5\n289,591,7.0\n289,592,7.5\n289,593,8.0\n289,594,8.5\n289,595,9.0\n289,596,9.5\n289,597,10.0\n289,598,10.5\n289,599,11.0\n289,600,13.5\n289,601,13.0\n289,602,12.5\n289,603,12.0\n289,604,11.5\n289,605,11.0\n289,606,10.5\n289,607,10.0\n289,608,9.5\n289,609,9.0\n289,610,8.5\n289,611,8.0\n289,612,7.5\n289,613,7.0\n289,614,6.5\n289,615,7.0\n289,616,7.5\n289,617,8.0\n289,618,8.5\n289,619,9.0\n289,620,9.5\n289,621,10.0\n289,622,10.5\n289,623,11.0\n289,624,11.5\n290,0,13.0\n290,1,12.5\n290,2,12.0\n290,3,11.5\n290,4,11.0\n290,5,10.5\n290,6,10.0\n290,7,9.5\n290,8,9.0\n290,9,8.5\n290,10,8.0\n290,11,7.5\n290,12,7.0\n290,13,6.5\n290,14,6.0\n290,15,5.5\n290,16,6.0\n290,17,6.5\n290,18,7.0\n290,19,7.5\n290,20,8.0\n290,21,8.5\n290,22,9.0\n290,23,9.5\n290,24,10.0\n290,25,12.5\n290,26,12.0\n290,27,11.5\n290,28,11.0\n290,29,10.5\n290,30,10.0\n290,31,9.5\n290,32,9.0\n290,33,8.5\n290,34,8.0\n290,35,7.5\n290,36,7.0\n290,37,6.5\n290,38,6.0\n290,39,5.5\n290,40,5.0\n290,41,5.5\n290,42,6.0\n290,43,6.5\n290,44,7.0\n290,45,7.5\n290,46,8.0\n290,47,8.5\n290,48,9.0\n290,49,9.5\n290,50,12.0\n290,51,11.5\n290,52,11.0\n290,53,10.5\n290,54,10.0\n290,55,9.5\n290,56,9.0\n290,57,8.5\n290,58,8.0\n290,59,7.5\n290,60,7.0\n290,61,6.5\n290,62,6.0\n290,63,5.5\n290,64,5.0\n290,65,4.5\n290,66,5.0\n290,67,5.5\n290,68,6.0\n290,69,6.5\n290,70,7.0\n290,71,7.5\n290,72,8.0\n290,73,8.5\n290,74,9.0\n290,75,11.5\n290,76,11.0\n290,77,10.5\n290,78,10.0\n290,79,9.5\n290,80,9.0\n290,81,8.5\n290,82,8.0\n290,83,7.5\n290,84,7.0\n290,85,6.5\n290,86,6.0\n290,87,5.5\n290,88,5.0\n290,89,4.5\n290,90,4.0\n290,91,4.5\n290,92,5.0\n290,93,5.5\n290,94,6.0\n290,95,6.5\n290,96,7.0\n290,97,7.5\n290,98,8.0\n290,99,8.5\n290,100,11.0\n290,101,10.5\n290,102,10.0\n290,103,9.5\n290,104,9.0\n290,105,8.5\n290,106,8.0\n290,107,7.5\n290,108,7.0\n290,109,6.5\n290,110,6.0\n290,111,5.5\n290,112,5.0\n290,113,4.5\n290,114,4.0\n290,115,3.5\n290,116,4.0\n290,117,4.5\n290,118,5.0\n290,119,5.5\n290,120,6.0\n290,121,6.5\n290,122,7.0\n290,123,7.5\n290,124,8.0\n290,125,10.5\n290,126,10.0\n290,127,9.5\n290,128,9.0\n290,129,8.5\n290,130,8.0\n290,131,7.5\n290,132,7.0\n290,133,6.5\n290,134,6.0\n290,135,5.5\n290,136,5.0\n290,137,4.5\n290,138,4.0\n290,139,3.5\n290,140,3.0\n290,141,3.5\n290,142,4.0\n290,143,4.5\n290,144,5.0\n290,145,5.5\n290,146,6.0\n290,147,6.5\n290,148,7.0\n290,149,7.5\n290,150,10.0\n290,151,9.5\n290,152,9.0\n290,153,8.5\n290,154,8.0\n290,155,7.5\n290,156,7.0\n290,157,6.5\n290,158,6.0\n290,159,5.5\n290,160,5.0\n290,161,4.5\n290,162,4.0\n290,163,3.5\n290,164,3.0\n290,165,2.5\n290,166,3.0\n290,167,3.5\n290,168,4.0\n290,169,4.5\n290,170,5.0\n290,171,5.5\n290,172,6.0\n290,173,6.5\n290,174,7.0\n290,175,9.5\n290,176,9.0\n290,177,8.5\n290,178,8.0\n290,179,7.5\n290,180,7.0\n290,181,6.5\n290,182,6.0\n290,183,5.5\n290,184,5.0\n290,185,4.5\n290,186,4.0\n290,187,3.5\n290,188,3.0\n290,189,2.5\n290,190,2.0\n290,191,2.5\n290,192,3.0\n290,193,3.5\n290,194,4.0\n290,195,4.5\n290,196,5.0\n290,197,5.5\n290,198,6.0\n290,199,6.5\n290,200,9.0\n290,201,8.5\n290,202,8.0\n290,203,7.5\n290,204,7.0\n290,205,6.5\n290,206,6.0\n290,207,5.5\n290,208,5.0\n290,209,4.5\n290,210,4.0\n290,211,3.5\n290,212,3.0\n290,213,2.5\n290,214,2.0\n290,215,1.5\n290,216,2.0\n290,217,2.5\n290,218,3.0\n290,219,3.5\n290,220,4.0\n290,221,4.5\n290,222,5.0\n290,223,5.5\n290,224,6.0\n290,225,8.5\n290,226,8.0\n290,227,7.5\n290,228,7.0\n290,229,6.5\n290,230,6.0\n290,231,5.5\n290,232,5.0\n290,233,4.5\n290,234,4.0\n290,235,3.5\n290,236,3.0\n290,237,2.5\n290,238,2.0\n290,239,1.5\n290,240,1.0\n290,241,1.5\n290,242,2.0\n290,243,2.5\n290,244,3.0\n290,245,3.5\n290,246,4.0\n290,247,4.5\n290,248,5.0\n290,249,5.5\n290,250,8.0\n290,251,7.5\n290,252,7.0\n290,253,6.5\n290,254,6.0\n290,255,5.5\n290,256,5.0\n290,257,4.5\n290,258,4.0\n290,259,3.5\n290,260,3.0\n290,261,2.5\n290,262,2.0\n290,263,1.5\n290,264,1.0\n290,265,0.5\n290,266,1.0\n290,267,1.5\n290,268,2.0\n290,269,2.5\n290,270,3.0\n290,271,3.5\n290,272,4.0\n290,273,4.5\n290,274,5.0\n290,275,7.5\n290,276,7.0\n290,277,6.5\n290,278,6.0\n290,279,5.5\n290,280,5.0\n290,281,4.5\n290,282,4.0\n290,283,3.5\n290,284,3.0\n290,285,2.5\n290,286,2.0\n290,287,1.5\n290,288,1.0\n290,289,0.5\n290,290,0\n290,291,0.5\n290,292,1.0\n290,293,1.5\n290,294,2.0\n290,295,2.5\n290,296,3.0\n290,297,3.5\n290,298,4.0\n290,299,4.5\n290,300,8.0\n290,301,7.5\n290,302,7.0\n290,303,6.5\n290,304,6.0\n290,305,5.5\n290,306,5.0\n290,307,4.5\n290,308,4.0\n290,309,3.5\n290,310,3.0\n290,311,2.5\n290,312,2.0\n290,313,1.5\n290,314,1.0\n290,315,0.5\n290,316,1.0\n290,317,1.5\n290,318,2.0\n290,319,2.5\n290,320,3.0\n290,321,3.5\n290,322,4.0\n290,323,4.5\n290,324,5.0\n290,325,8.5\n290,326,8.0\n290,327,7.5\n290,328,7.0\n290,329,6.5\n290,330,6.0\n290,331,5.5\n290,332,5.0\n290,333,4.5\n290,334,4.0\n290,335,3.5\n290,336,3.0\n290,337,2.5\n290,338,2.0\n290,339,1.5\n290,340,1.0\n290,341,1.5\n290,342,2.0\n290,343,2.5\n290,344,3.0\n290,345,3.5\n290,346,4.0\n290,347,4.5\n290,348,5.0\n290,349,5.5\n290,350,9.0\n290,351,8.5\n290,352,8.0\n290,353,7.5\n290,354,7.0\n290,355,6.5\n290,356,6.0\n290,357,5.5\n290,358,5.0\n290,359,4.5\n290,360,4.0\n290,361,3.5\n290,362,3.0\n290,363,2.5\n290,364,2.0\n290,365,1.5\n290,366,2.0\n290,367,2.5\n290,368,3.0\n290,369,3.5\n290,370,4.0\n290,371,4.5\n290,372,5.0\n290,373,5.5\n290,374,6.0\n290,375,9.5\n290,376,9.0\n290,377,8.5\n290,378,8.0\n290,379,7.5\n290,380,7.0\n290,381,6.5\n290,382,6.0\n290,383,5.5\n290,384,5.0\n290,385,4.5\n290,386,4.0\n290,387,3.5\n290,388,3.0\n290,389,2.5\n290,390,2.0\n290,391,2.5\n290,392,3.0\n290,393,3.5\n290,394,4.0\n290,395,4.5\n290,396,5.0\n290,397,5.5\n290,398,6.0\n290,399,6.5\n290,400,10.0\n290,401,9.5\n290,402,9.0\n290,403,8.5\n290,404,8.0\n290,405,7.5\n290,406,7.0\n290,407,6.5\n290,408,6.0\n290,409,5.5\n290,410,5.0\n290,411,4.5\n290,412,4.0\n290,413,3.5\n290,414,3.0\n290,415,2.5\n290,416,3.0\n290,417,3.5\n290,418,4.0\n290,419,4.5\n290,420,5.0\n290,421,5.5\n290,422,6.0\n290,423,6.5\n290,424,7.0\n290,425,10.5\n290,426,10.0\n290,427,9.5\n290,428,9.0\n290,429,8.5\n290,430,8.0\n290,431,7.5\n290,432,7.0\n290,433,6.5\n290,434,6.0\n290,435,5.5\n290,436,5.0\n290,437,4.5\n290,438,4.0\n290,439,3.5\n290,440,3.0\n290,441,3.5\n290,442,4.0\n290,443,4.5\n290,444,5.0\n290,445,5.5\n290,446,6.0\n290,447,6.5\n290,448,7.0\n290,449,7.5\n290,450,11.0\n290,451,10.5\n290,452,10.0\n290,453,9.5\n290,454,9.0\n290,455,8.5\n290,456,8.0\n290,457,7.5\n290,458,7.0\n290,459,6.5\n290,460,6.0\n290,461,5.5\n290,462,5.0\n290,463,4.5\n290,464,4.0\n290,465,3.5\n290,466,4.0\n290,467,4.5\n290,468,5.0\n290,469,5.5\n290,470,6.0\n290,471,6.5\n290,472,7.0\n290,473,7.5\n290,474,8.0\n290,475,11.5\n290,476,11.0\n290,477,10.5\n290,478,10.0\n290,479,9.5\n290,480,9.0\n290,481,8.5\n290,482,8.0\n290,483,7.5\n290,484,7.0\n290,485,6.5\n290,486,6.0\n290,487,5.5\n290,488,5.0\n290,489,4.5\n290,490,4.0\n290,491,4.5\n290,492,5.0\n290,493,5.5\n290,494,6.0\n290,495,6.5\n290,496,7.0\n290,497,7.5\n290,498,8.0\n290,499,8.5\n290,500,12.0\n290,501,11.5\n290,502,11.0\n290,503,10.5\n290,504,10.0\n290,505,9.5\n290,506,9.0\n290,507,8.5\n290,508,8.0\n290,509,7.5\n290,510,7.0\n290,511,6.5\n290,512,6.0\n290,513,5.5\n290,514,5.0\n290,515,4.5\n290,516,5.0\n290,517,5.5\n290,518,6.0\n290,519,6.5\n290,520,7.0\n290,521,7.5\n290,522,8.0\n290,523,8.5\n290,524,9.0\n290,525,12.5\n290,526,12.0\n290,527,11.5\n290,528,11.0\n290,529,10.5\n290,530,10.0\n290,531,9.5\n290,532,9.0\n290,533,8.5\n290,534,8.0\n290,535,7.5\n290,536,7.0\n290,537,6.5\n290,538,6.0\n290,539,5.5\n290,540,5.0\n290,541,5.5\n290,542,6.0\n290,543,6.5\n290,544,7.0\n290,545,7.5\n290,546,8.0\n290,547,8.5\n290,548,9.0\n290,549,9.5\n290,550,13.0\n290,551,12.5\n290,552,12.0\n290,553,11.5\n290,554,11.0\n290,555,10.5\n290,556,10.0\n290,557,9.5\n290,558,9.0\n290,559,8.5\n290,560,8.0\n290,561,7.5\n290,562,7.0\n290,563,6.5\n290,564,6.0\n290,565,5.5\n290,566,6.0\n290,567,6.5\n290,568,7.0\n290,569,7.5\n290,570,8.0\n290,571,8.5\n290,572,9.0\n290,573,9.5\n290,574,10.0\n290,575,13.5\n290,576,13.0\n290,577,12.5\n290,578,12.0\n290,579,11.5\n290,580,11.0\n290,581,10.5\n290,582,10.0\n290,583,9.5\n290,584,9.0\n290,585,8.5\n290,586,8.0\n290,587,7.5\n290,588,7.0\n290,589,6.5\n290,590,6.0\n290,591,6.5\n290,592,7.0\n290,593,7.5\n290,594,8.0\n290,595,8.5\n290,596,9.0\n290,597,9.5\n290,598,10.0\n290,599,10.5\n290,600,14.0\n290,601,13.5\n290,602,13.0\n290,603,12.5\n290,604,12.0\n290,605,11.5\n290,606,11.0\n290,607,10.5\n290,608,10.0\n290,609,9.5\n290,610,9.0\n290,611,8.5\n290,612,8.0\n290,613,7.5\n290,614,7.0\n290,615,6.5\n290,616,7.0\n290,617,7.5\n290,618,8.0\n290,619,8.5\n290,620,9.0\n290,621,9.5\n290,622,10.0\n290,623,10.5\n290,624,11.0\n291,0,13.5\n291,1,13.0\n291,2,12.5\n291,3,12.0\n291,4,11.5\n291,5,11.0\n291,6,10.5\n291,7,10.0\n291,8,9.5\n291,9,9.0\n291,10,8.5\n291,11,8.0\n291,12,7.5\n291,13,7.0\n291,14,6.5\n291,15,6.0\n291,16,5.5\n291,17,6.0\n291,18,6.5\n291,19,7.0\n291,20,7.5\n291,21,8.0\n291,22,8.5\n291,23,9.0\n291,24,9.5\n291,25,13.0\n291,26,12.5\n291,27,12.0\n291,28,11.5\n291,29,11.0\n291,30,10.5\n291,31,10.0\n291,32,9.5\n291,33,9.0\n291,34,8.5\n291,35,8.0\n291,36,7.5\n291,37,7.0\n291,38,6.5\n291,39,6.0\n291,40,5.5\n291,41,5.0\n291,42,5.5\n291,43,6.0\n291,44,6.5\n291,45,7.0\n291,46,7.5\n291,47,8.0\n291,48,8.5\n291,49,9.0\n291,50,12.5\n291,51,12.0\n291,52,11.5\n291,53,11.0\n291,54,10.5\n291,55,10.0\n291,56,9.5\n291,57,9.0\n291,58,8.5\n291,59,8.0\n291,60,7.5\n291,61,7.0\n291,62,6.5\n291,63,6.0\n291,64,5.5\n291,65,5.0\n291,66,4.5\n291,67,5.0\n291,68,5.5\n291,69,6.0\n291,70,6.5\n291,71,7.0\n291,72,7.5\n291,73,8.0\n291,74,8.5\n291,75,12.0\n291,76,11.5\n291,77,11.0\n291,78,10.5\n291,79,10.0\n291,80,9.5\n291,81,9.0\n291,82,8.5\n291,83,8.0\n291,84,7.5\n291,85,7.0\n291,86,6.5\n291,87,6.0\n291,88,5.5\n291,89,5.0\n291,90,4.5\n291,91,4.0\n291,92,4.5\n291,93,5.0\n291,94,5.5\n291,95,6.0\n291,96,6.5\n291,97,7.0\n291,98,7.5\n291,99,8.0\n291,100,11.5\n291,101,11.0\n291,102,10.5\n291,103,10.0\n291,104,9.5\n291,105,9.0\n291,106,8.5\n291,107,8.0\n291,108,7.5\n291,109,7.0\n291,110,6.5\n291,111,6.0\n291,112,5.5\n291,113,5.0\n291,114,4.5\n291,115,4.0\n291,116,3.5\n291,117,4.0\n291,118,4.5\n291,119,5.0\n291,120,5.5\n291,121,6.0\n291,122,6.5\n291,123,7.0\n291,124,7.5\n291,125,11.0\n291,126,10.5\n291,127,10.0\n291,128,9.5\n291,129,9.0\n291,130,8.5\n291,131,8.0\n291,132,7.5\n291,133,7.0\n291,134,6.5\n291,135,6.0\n291,136,5.5\n291,137,5.0\n291,138,4.5\n291,139,4.0\n291,140,3.5\n291,141,3.0\n291,142,3.5\n291,143,4.0\n291,144,4.5\n291,145,5.0\n291,146,5.5\n291,147,6.0\n291,148,6.5\n291,149,7.0\n291,150,10.5\n291,151,10.0\n291,152,9.5\n291,153,9.0\n291,154,8.5\n291,155,8.0\n291,156,7.5\n291,157,7.0\n291,158,6.5\n291,159,6.0\n291,160,5.5\n291,161,5.0\n291,162,4.5\n291,163,4.0\n291,164,3.5\n291,165,3.0\n291,166,2.5\n291,167,3.0\n291,168,3.5\n291,169,4.0\n291,170,4.5\n291,171,5.0\n291,172,5.5\n291,173,6.0\n291,174,6.5\n291,175,10.0\n291,176,9.5\n291,177,9.0\n291,178,8.5\n291,179,8.0\n291,180,7.5\n291,181,7.0\n291,182,6.5\n291,183,6.0\n291,184,5.5\n291,185,5.0\n291,186,4.5\n291,187,4.0\n291,188,3.5\n291,189,3.0\n291,190,2.5\n291,191,2.0\n291,192,2.5\n291,193,3.0\n291,194,3.5\n291,195,4.0\n291,196,4.5\n291,197,5.0\n291,198,5.5\n291,199,6.0\n291,200,9.5\n291,201,9.0\n291,202,8.5\n291,203,8.0\n291,204,7.5\n291,205,7.0\n291,206,6.5\n291,207,6.0\n291,208,5.5\n291,209,5.0\n291,210,4.5\n291,211,4.0\n291,212,3.5\n291,213,3.0\n291,214,2.5\n291,215,2.0\n291,216,1.5\n291,217,2.0\n291,218,2.5\n291,219,3.0\n291,220,3.5\n291,221,4.0\n291,222,4.5\n291,223,5.0\n291,224,5.5\n291,225,9.0\n291,226,8.5\n291,227,8.0\n291,228,7.5\n291,229,7.0\n291,230,6.5\n291,231,6.0\n291,232,5.5\n291,233,5.0\n291,234,4.5\n291,235,4.0\n291,236,3.5\n291,237,3.0\n291,238,2.5\n291,239,2.0\n291,240,1.5\n291,241,1.0\n291,242,1.5\n291,243,2.0\n291,244,2.5\n291,245,3.0\n291,246,3.5\n291,247,4.0\n291,248,4.5\n291,249,5.0\n291,250,8.5\n291,251,8.0\n291,252,7.5\n291,253,7.0\n291,254,6.5\n291,255,6.0\n291,256,5.5\n291,257,5.0\n291,258,4.5\n291,259,4.0\n291,260,3.5\n291,261,3.0\n291,262,2.5\n291,263,2.0\n291,264,1.5\n291,265,1.0\n291,266,0.5\n291,267,1.0\n291,268,1.5\n291,269,2.0\n291,270,2.5\n291,271,3.0\n291,272,3.5\n291,273,4.0\n291,274,4.5\n291,275,8.0\n291,276,7.5\n291,277,7.0\n291,278,6.5\n291,279,6.0\n291,280,5.5\n291,281,5.0\n291,282,4.5\n291,283,4.0\n291,284,3.5\n291,285,3.0\n291,286,2.5\n291,287,2.0\n291,288,1.5\n291,289,1.0\n291,290,0.5\n291,291,0\n291,292,0.5\n291,293,1.0\n291,294,1.5\n291,295,2.0\n291,296,2.5\n291,297,3.0\n291,298,3.5\n291,299,4.0\n291,300,8.5\n291,301,8.0\n291,302,7.5\n291,303,7.0\n291,304,6.5\n291,305,6.0\n291,306,5.5\n291,307,5.0\n291,308,4.5\n291,309,4.0\n291,310,3.5\n291,311,3.0\n291,312,2.5\n291,313,2.0\n291,314,1.5\n291,315,1.0\n291,316,0.5\n291,317,1.0\n291,318,1.5\n291,319,2.0\n291,320,2.5\n291,321,3.0\n291,322,3.5\n291,323,4.0\n291,324,4.5\n291,325,9.0\n291,326,8.5\n291,327,8.0\n291,328,7.5\n291,329,7.0\n291,330,6.5\n291,331,6.0\n291,332,5.5\n291,333,5.0\n291,334,4.5\n291,335,4.0\n291,336,3.5\n291,337,3.0\n291,338,2.5\n291,339,2.0\n291,340,1.5\n291,341,1.0\n291,342,1.5\n291,343,2.0\n291,344,2.5\n291,345,3.0\n291,346,3.5\n291,347,4.0\n291,348,4.5\n291,349,5.0\n291,350,9.5\n291,351,9.0\n291,352,8.5\n291,353,8.0\n291,354,7.5\n291,355,7.0\n291,356,6.5\n291,357,6.0\n291,358,5.5\n291,359,5.0\n291,360,4.5\n291,361,4.0\n291,362,3.5\n291,363,3.0\n291,364,2.5\n291,365,2.0\n291,366,1.5\n291,367,2.0\n291,368,2.5\n291,369,3.0\n291,370,3.5\n291,371,4.0\n291,372,4.5\n291,373,5.0\n291,374,5.5\n291,375,10.0\n291,376,9.5\n291,377,9.0\n291,378,8.5\n291,379,8.0\n291,380,7.5\n291,381,7.0\n291,382,6.5\n291,383,6.0\n291,384,5.5\n291,385,5.0\n291,386,4.5\n291,387,4.0\n291,388,3.5\n291,389,3.0\n291,390,2.5\n291,391,2.0\n291,392,2.5\n291,393,3.0\n291,394,3.5\n291,395,4.0\n291,396,4.5\n291,397,5.0\n291,398,5.5\n291,399,6.0\n291,400,10.5\n291,401,10.0\n291,402,9.5\n291,403,9.0\n291,404,8.5\n291,405,8.0\n291,406,7.5\n291,407,7.0\n291,408,6.5\n291,409,6.0\n291,410,5.5\n291,411,5.0\n291,412,4.5\n291,413,4.0\n291,414,3.5\n291,415,3.0\n291,416,2.5\n291,417,3.0\n291,418,3.5\n291,419,4.0\n291,420,4.5\n291,421,5.0\n291,422,5.5\n291,423,6.0\n291,424,6.5\n291,425,11.0\n291,426,10.5\n291,427,10.0\n291,428,9.5\n291,429,9.0\n291,430,8.5\n291,431,8.0\n291,432,7.5\n291,433,7.0\n291,434,6.5\n291,435,6.0\n291,436,5.5\n291,437,5.0\n291,438,4.5\n291,439,4.0\n291,440,3.5\n291,441,3.0\n291,442,3.5\n291,443,4.0\n291,444,4.5\n291,445,5.0\n291,446,5.5\n291,447,6.0\n291,448,6.5\n291,449,7.0\n291,450,11.5\n291,451,11.0\n291,452,10.5\n291,453,10.0\n291,454,9.5\n291,455,9.0\n291,456,8.5\n291,457,8.0\n291,458,7.5\n291,459,7.0\n291,460,6.5\n291,461,6.0\n291,462,5.5\n291,463,5.0\n291,464,4.5\n291,465,4.0\n291,466,3.5\n291,467,4.0\n291,468,4.5\n291,469,5.0\n291,470,5.5\n291,471,6.0\n291,472,6.5\n291,473,7.0\n291,474,7.5\n291,475,12.0\n291,476,11.5\n291,477,11.0\n291,478,10.5\n291,479,10.0\n291,480,9.5\n291,481,9.0\n291,482,8.5\n291,483,8.0\n291,484,7.5\n291,485,7.0\n291,486,6.5\n291,487,6.0\n291,488,5.5\n291,489,5.0\n291,490,4.5\n291,491,4.0\n291,492,4.5\n291,493,5.0\n291,494,5.5\n291,495,6.0\n291,496,6.5\n291,497,7.0\n291,498,7.5\n291,499,8.0\n291,500,12.5\n291,501,12.0\n291,502,11.5\n291,503,11.0\n291,504,10.5\n291,505,10.0\n291,506,9.5\n291,507,9.0\n291,508,8.5\n291,509,8.0\n291,510,7.5\n291,511,7.0\n291,512,6.5\n291,513,6.0\n291,514,5.5\n291,515,5.0\n291,516,4.5\n291,517,5.0\n291,518,5.5\n291,519,6.0\n291,520,6.5\n291,521,7.0\n291,522,7.5\n291,523,8.0\n291,524,8.5\n291,525,13.0\n291,526,12.5\n291,527,12.0\n291,528,11.5\n291,529,11.0\n291,530,10.5\n291,531,10.0\n291,532,9.5\n291,533,9.0\n291,534,8.5\n291,535,8.0\n291,536,7.5\n291,537,7.0\n291,538,6.5\n291,539,6.0\n291,540,5.5\n291,541,5.0\n291,542,5.5\n291,543,6.0\n291,544,6.5\n291,545,7.0\n291,546,7.5\n291,547,8.0\n291,548,8.5\n291,549,9.0\n291,550,13.5\n291,551,13.0\n291,552,12.5\n291,553,12.0\n291,554,11.5\n291,555,11.0\n291,556,10.5\n291,557,10.0\n291,558,9.5\n291,559,9.0\n291,560,8.5\n291,561,8.0\n291,562,7.5\n291,563,7.0\n291,564,6.5\n291,565,6.0\n291,566,5.5\n291,567,6.0\n291,568,6.5\n291,569,7.0\n291,570,7.5\n291,571,8.0\n291,572,8.5\n291,573,9.0\n291,574,9.5\n291,575,14.0\n291,576,13.5\n291,577,13.0\n291,578,12.5\n291,579,12.0\n291,580,11.5\n291,581,11.0\n291,582,10.5\n291,583,10.0\n291,584,9.5\n291,585,9.0\n291,586,8.5\n291,587,8.0\n291,588,7.5\n291,589,7.0\n291,590,6.5\n291,591,6.0\n291,592,6.5\n291,593,7.0\n291,594,7.5\n291,595,8.0\n291,596,8.5\n291,597,9.0\n291,598,9.5\n291,599,10.0\n291,600,14.5\n291,601,14.0\n291,602,13.5\n291,603,13.0\n291,604,12.5\n291,605,12.0\n291,606,11.5\n291,607,11.0\n291,608,10.5\n291,609,10.0\n291,610,9.5\n291,611,9.0\n291,612,8.5\n291,613,8.0\n291,614,7.5\n291,615,7.0\n291,616,6.5\n291,617,7.0\n291,618,7.5\n291,619,8.0\n291,620,8.5\n291,621,9.0\n291,622,9.5\n291,623,10.0\n291,624,10.5\n292,0,14.0\n292,1,13.5\n292,2,13.0\n292,3,12.5\n292,4,12.0\n292,5,11.5\n292,6,11.0\n292,7,10.5\n292,8,10.0\n292,9,9.5\n292,10,9.0\n292,11,8.5\n292,12,8.0\n292,13,7.5\n292,14,7.0\n292,15,6.5\n292,16,6.0\n292,17,5.5\n292,18,6.0\n292,19,6.5\n292,20,7.0\n292,21,7.5\n292,22,8.0\n292,23,8.5\n292,24,9.0\n292,25,13.5\n292,26,13.0\n292,27,12.5\n292,28,12.0\n292,29,11.5\n292,30,11.0\n292,31,10.5\n292,32,10.0\n292,33,9.5\n292,34,9.0\n292,35,8.5\n292,36,8.0\n292,37,7.5\n292,38,7.0\n292,39,6.5\n292,40,6.0\n292,41,5.5\n292,42,5.0\n292,43,5.5\n292,44,6.0\n292,45,6.5\n292,46,7.0\n292,47,7.5\n292,48,8.0\n292,49,8.5\n292,50,13.0\n292,51,12.5\n292,52,12.0\n292,53,11.5\n292,54,11.0\n292,55,10.5\n292,56,10.0\n292,57,9.5\n292,58,9.0\n292,59,8.5\n292,60,8.0\n292,61,7.5\n292,62,7.0\n292,63,6.5\n292,64,6.0\n292,65,5.5\n292,66,5.0\n292,67,4.5\n292,68,5.0\n292,69,5.5\n292,70,6.0\n292,71,6.5\n292,72,7.0\n292,73,7.5\n292,74,8.0\n292,75,12.5\n292,76,12.0\n292,77,11.5\n292,78,11.0\n292,79,10.5\n292,80,10.0\n292,81,9.5\n292,82,9.0\n292,83,8.5\n292,84,8.0\n292,85,7.5\n292,86,7.0\n292,87,6.5\n292,88,6.0\n292,89,5.5\n292,90,5.0\n292,91,4.5\n292,92,4.0\n292,93,4.5\n292,94,5.0\n292,95,5.5\n292,96,6.0\n292,97,6.5\n292,98,7.0\n292,99,7.5\n292,100,12.0\n292,101,11.5\n292,102,11.0\n292,103,10.5\n292,104,10.0\n292,105,9.5\n292,106,9.0\n292,107,8.5\n292,108,8.0\n292,109,7.5\n292,110,7.0\n292,111,6.5\n292,112,6.0\n292,113,5.5\n292,114,5.0\n292,115,4.5\n292,116,4.0\n292,117,3.5\n292,118,4.0\n292,119,4.5\n292,120,5.0\n292,121,5.5\n292,122,6.0\n292,123,6.5\n292,124,7.0\n292,125,11.5\n292,126,11.0\n292,127,10.5\n292,128,10.0\n292,129,9.5\n292,130,9.0\n292,131,8.5\n292,132,8.0\n292,133,7.5\n292,134,7.0\n292,135,6.5\n292,136,6.0\n292,137,5.5\n292,138,5.0\n292,139,4.5\n292,140,4.0\n292,141,3.5\n292,142,3.0\n292,143,3.5\n292,144,4.0\n292,145,4.5\n292,146,5.0\n292,147,5.5\n292,148,6.0\n292,149,6.5\n292,150,11.0\n292,151,10.5\n292,152,10.0\n292,153,9.5\n292,154,9.0\n292,155,8.5\n292,156,8.0\n292,157,7.5\n292,158,7.0\n292,159,6.5\n292,160,6.0\n292,161,5.5\n292,162,5.0\n292,163,4.5\n292,164,4.0\n292,165,3.5\n292,166,3.0\n292,167,2.5\n292,168,3.0\n292,169,3.5\n292,170,4.0\n292,171,4.5\n292,172,5.0\n292,173,5.5\n292,174,6.0\n292,175,10.5\n292,176,10.0\n292,177,9.5\n292,178,9.0\n292,179,8.5\n292,180,8.0\n292,181,7.5\n292,182,7.0\n292,183,6.5\n292,184,6.0\n292,185,5.5\n292,186,5.0\n292,187,4.5\n292,188,4.0\n292,189,3.5\n292,190,3.0\n292,191,2.5\n292,192,2.0\n292,193,2.5\n292,194,3.0\n292,195,3.5\n292,196,4.0\n292,197,4.5\n292,198,5.0\n292,199,5.5\n292,200,10.0\n292,201,9.5\n292,202,9.0\n292,203,8.5\n292,204,8.0\n292,205,7.5\n292,206,7.0\n292,207,6.5\n292,208,6.0\n292,209,5.5\n292,210,5.0\n292,211,4.5\n292,212,4.0\n292,213,3.5\n292,214,3.0\n292,215,2.5\n292,216,2.0\n292,217,1.5\n292,218,2.0\n292,219,2.5\n292,220,3.0\n292,221,3.5\n292,222,4.0\n292,223,4.5\n292,224,5.0\n292,225,9.5\n292,226,9.0\n292,227,8.5\n292,228,8.0\n292,229,7.5\n292,230,7.0\n292,231,6.5\n292,232,6.0\n292,233,5.5\n292,234,5.0\n292,235,4.5\n292,236,4.0\n292,237,3.5\n292,238,3.0\n292,239,2.5\n292,240,2.0\n292,241,1.5\n292,242,1.0\n292,243,1.5\n292,244,2.0\n292,245,2.5\n292,246,3.0\n292,247,3.5\n292,248,4.0\n292,249,4.5\n292,250,9.0\n292,251,8.5\n292,252,8.0\n292,253,7.5\n292,254,7.0\n292,255,6.5\n292,256,6.0\n292,257,5.5\n292,258,5.0\n292,259,4.5\n292,260,4.0\n292,261,3.5\n292,262,3.0\n292,263,2.5\n292,264,2.0\n292,265,1.5\n292,266,1.0\n292,267,0.5\n292,268,1.0\n292,269,1.5\n292,270,2.0\n292,271,2.5\n292,272,3.0\n292,273,3.5\n292,274,4.0\n292,275,8.5\n292,276,8.0\n292,277,7.5\n292,278,7.0\n292,279,6.5\n292,280,6.0\n292,281,5.5\n292,282,5.0\n292,283,4.5\n292,284,4.0\n292,285,3.5\n292,286,3.0\n292,287,2.5\n292,288,2.0\n292,289,1.5\n292,290,1.0\n292,291,0.5\n292,292,0\n292,293,0.5\n292,294,1.0\n292,295,1.5\n292,296,2.0\n292,297,2.5\n292,298,3.0\n292,299,3.5\n292,300,9.0\n292,301,8.5\n292,302,8.0\n292,303,7.5\n292,304,7.0\n292,305,6.5\n292,306,6.0\n292,307,5.5\n292,308,5.0\n292,309,4.5\n292,310,4.0\n292,311,3.5\n292,312,3.0\n292,313,2.5\n292,314,2.0\n292,315,1.5\n292,316,1.0\n292,317,0.5\n292,318,1.0\n292,319,1.5\n292,320,2.0\n292,321,2.5\n292,322,3.0\n292,323,3.5\n292,324,4.0\n292,325,9.5\n292,326,9.0\n292,327,8.5\n292,328,8.0\n292,329,7.5\n292,330,7.0\n292,331,6.5\n292,332,6.0\n292,333,5.5\n292,334,5.0\n292,335,4.5\n292,336,4.0\n292,337,3.5\n292,338,3.0\n292,339,2.5\n292,340,2.0\n292,341,1.5\n292,342,1.0\n292,343,1.5\n292,344,2.0\n292,345,2.5\n292,346,3.0\n292,347,3.5\n292,348,4.0\n292,349,4.5\n292,350,10.0\n292,351,9.5\n292,352,9.0\n292,353,8.5\n292,354,8.0\n292,355,7.5\n292,356,7.0\n292,357,6.5\n292,358,6.0\n292,359,5.5\n292,360,5.0\n292,361,4.5\n292,362,4.0\n292,363,3.5\n292,364,3.0\n292,365,2.5\n292,366,2.0\n292,367,1.5\n292,368,2.0\n292,369,2.5\n292,370,3.0\n292,371,3.5\n292,372,4.0\n292,373,4.5\n292,374,5.0\n292,375,10.5\n292,376,10.0\n292,377,9.5\n292,378,9.0\n292,379,8.5\n292,380,8.0\n292,381,7.5\n292,382,7.0\n292,383,6.5\n292,384,6.0\n292,385,5.5\n292,386,5.0\n292,387,4.5\n292,388,4.0\n292,389,3.5\n292,390,3.0\n292,391,2.5\n292,392,2.0\n292,393,2.5\n292,394,3.0\n292,395,3.5\n292,396,4.0\n292,397,4.5\n292,398,5.0\n292,399,5.5\n292,400,11.0\n292,401,10.5\n292,402,10.0\n292,403,9.5\n292,404,9.0\n292,405,8.5\n292,406,8.0\n292,407,7.5\n292,408,7.0\n292,409,6.5\n292,410,6.0\n292,411,5.5\n292,412,5.0\n292,413,4.5\n292,414,4.0\n292,415,3.5\n292,416,3.0\n292,417,2.5\n292,418,3.0\n292,419,3.5\n292,420,4.0\n292,421,4.5\n292,422,5.0\n292,423,5.5\n292,424,6.0\n292,425,11.5\n292,426,11.0\n292,427,10.5\n292,428,10.0\n292,429,9.5\n292,430,9.0\n292,431,8.5\n292,432,8.0\n292,433,7.5\n292,434,7.0\n292,435,6.5\n292,436,6.0\n292,437,5.5\n292,438,5.0\n292,439,4.5\n292,440,4.0\n292,441,3.5\n292,442,3.0\n292,443,3.5\n292,444,4.0\n292,445,4.5\n292,446,5.0\n292,447,5.5\n292,448,6.0\n292,449,6.5\n292,450,12.0\n292,451,11.5\n292,452,11.0\n292,453,10.5\n292,454,10.0\n292,455,9.5\n292,456,9.0\n292,457,8.5\n292,458,8.0\n292,459,7.5\n292,460,7.0\n292,461,6.5\n292,462,6.0\n292,463,5.5\n292,464,5.0\n292,465,4.5\n292,466,4.0\n292,467,3.5\n292,468,4.0\n292,469,4.5\n292,470,5.0\n292,471,5.5\n292,472,6.0\n292,473,6.5\n292,474,7.0\n292,475,12.5\n292,476,12.0\n292,477,11.5\n292,478,11.0\n292,479,10.5\n292,480,10.0\n292,481,9.5\n292,482,9.0\n292,483,8.5\n292,484,8.0\n292,485,7.5\n292,486,7.0\n292,487,6.5\n292,488,6.0\n292,489,5.5\n292,490,5.0\n292,491,4.5\n292,492,4.0\n292,493,4.5\n292,494,5.0\n292,495,5.5\n292,496,6.0\n292,497,6.5\n292,498,7.0\n292,499,7.5\n292,500,13.0\n292,501,12.5\n292,502,12.0\n292,503,11.5\n292,504,11.0\n292,505,10.5\n292,506,10.0\n292,507,9.5\n292,508,9.0\n292,509,8.5\n292,510,8.0\n292,511,7.5\n292,512,7.0\n292,513,6.5\n292,514,6.0\n292,515,5.5\n292,516,5.0\n292,517,4.5\n292,518,5.0\n292,519,5.5\n292,520,6.0\n292,521,6.5\n292,522,7.0\n292,523,7.5\n292,524,8.0\n292,525,13.5\n292,526,13.0\n292,527,12.5\n292,528,12.0\n292,529,11.5\n292,530,11.0\n292,531,10.5\n292,532,10.0\n292,533,9.5\n292,534,9.0\n292,535,8.5\n292,536,8.0\n292,537,7.5\n292,538,7.0\n292,539,6.5\n292,540,6.0\n292,541,5.5\n292,542,5.0\n292,543,5.5\n292,544,6.0\n292,545,6.5\n292,546,7.0\n292,547,7.5\n292,548,8.0\n292,549,8.5\n292,550,14.0\n292,551,13.5\n292,552,13.0\n292,553,12.5\n292,554,12.0\n292,555,11.5\n292,556,11.0\n292,557,10.5\n292,558,10.0\n292,559,9.5\n292,560,9.0\n292,561,8.5\n292,562,8.0\n292,563,7.5\n292,564,7.0\n292,565,6.5\n292,566,6.0\n292,567,5.5\n292,568,6.0\n292,569,6.5\n292,570,7.0\n292,571,7.5\n292,572,8.0\n292,573,8.5\n292,574,9.0\n292,575,14.5\n292,576,14.0\n292,577,13.5\n292,578,13.0\n292,579,12.5\n292,580,12.0\n292,581,11.5\n292,582,11.0\n292,583,10.5\n292,584,10.0\n292,585,9.5\n292,586,9.0\n292,587,8.5\n292,588,8.0\n292,589,7.5\n292,590,7.0\n292,591,6.5\n292,592,6.0\n292,593,6.5\n292,594,7.0\n292,595,7.5\n292,596,8.0\n292,597,8.5\n292,598,9.0\n292,599,9.5\n292,600,15.0\n292,601,14.5\n292,602,14.0\n292,603,13.5\n292,604,13.0\n292,605,12.5\n292,606,12.0\n292,607,11.5\n292,608,11.0\n292,609,10.5\n292,610,10.0\n292,611,9.5\n292,612,9.0\n292,613,8.5\n292,614,8.0\n292,615,7.5\n292,616,7.0\n292,617,6.5\n292,618,7.0\n292,619,7.5\n292,620,8.0\n292,621,8.5\n292,622,9.0\n292,623,9.5\n292,624,10.0\n293,0,14.5\n293,1,14.0\n293,2,13.5\n293,3,13.0\n293,4,12.5\n293,5,12.0\n293,6,11.5\n293,7,11.0\n293,8,10.5\n293,9,10.0\n293,10,9.5\n293,11,9.0\n293,12,8.5\n293,13,8.0\n293,14,7.5\n293,15,7.0\n293,16,6.5\n293,17,6.0\n293,18,5.5\n293,19,6.0\n293,20,6.5\n293,21,7.0\n293,22,7.5\n293,23,8.0\n293,24,8.5\n293,25,14.0\n293,26,13.5\n293,27,13.0\n293,28,12.5\n293,29,12.0\n293,30,11.5\n293,31,11.0\n293,32,10.5\n293,33,10.0\n293,34,9.5\n293,35,9.0\n293,36,8.5\n293,37,8.0\n293,38,7.5\n293,39,7.0\n293,40,6.5\n293,41,6.0\n293,42,5.5\n293,43,5.0\n293,44,5.5\n293,45,6.0\n293,46,6.5\n293,47,7.0\n293,48,7.5\n293,49,8.0\n293,50,13.5\n293,51,13.0\n293,52,12.5\n293,53,12.0\n293,54,11.5\n293,55,11.0\n293,56,10.5\n293,57,10.0\n293,58,9.5\n293,59,9.0\n293,60,8.5\n293,61,8.0\n293,62,7.5\n293,63,7.0\n293,64,6.5\n293,65,6.0\n293,66,5.5\n293,67,5.0\n293,68,4.5\n293,69,5.0\n293,70,5.5\n293,71,6.0\n293,72,6.5\n293,73,7.0\n293,74,7.5\n293,75,13.0\n293,76,12.5\n293,77,12.0\n293,78,11.5\n293,79,11.0\n293,80,10.5\n293,81,10.0\n293,82,9.5\n293,83,9.0\n293,84,8.5\n293,85,8.0\n293,86,7.5\n293,87,7.0\n293,88,6.5\n293,89,6.0\n293,90,5.5\n293,91,5.0\n293,92,4.5\n293,93,4.0\n293,94,4.5\n293,95,5.0\n293,96,5.5\n293,97,6.0\n293,98,6.5\n293,99,7.0\n293,100,12.5\n293,101,12.0\n293,102,11.5\n293,103,11.0\n293,104,10.5\n293,105,10.0\n293,106,9.5\n293,107,9.0\n293,108,8.5\n293,109,8.0\n293,110,7.5\n293,111,7.0\n293,112,6.5\n293,113,6.0\n293,114,5.5\n293,115,5.0\n293,116,4.5\n293,117,4.0\n293,118,3.5\n293,119,4.0\n293,120,4.5\n293,121,5.0\n293,122,5.5\n293,123,6.0\n293,124,6.5\n293,125,12.0\n293,126,11.5\n293,127,11.0\n293,128,10.5\n293,129,10.0\n293,130,9.5\n293,131,9.0\n293,132,8.5\n293,133,8.0\n293,134,7.5\n293,135,7.0\n293,136,6.5\n293,137,6.0\n293,138,5.5\n293,139,5.0\n293,140,4.5\n293,141,4.0\n293,142,3.5\n293,143,3.0\n293,144,3.5\n293,145,4.0\n293,146,4.5\n293,147,5.0\n293,148,5.5\n293,149,6.0\n293,150,11.5\n293,151,11.0\n293,152,10.5\n293,153,10.0\n293,154,9.5\n293,155,9.0\n293,156,8.5\n293,157,8.0\n293,158,7.5\n293,159,7.0\n293,160,6.5\n293,161,6.0\n293,162,5.5\n293,163,5.0\n293,164,4.5\n293,165,4.0\n293,166,3.5\n293,167,3.0\n293,168,2.5\n293,169,3.0\n293,170,3.5\n293,171,4.0\n293,172,4.5\n293,173,5.0\n293,174,5.5\n293,175,11.0\n293,176,10.5\n293,177,10.0\n293,178,9.5\n293,179,9.0\n293,180,8.5\n293,181,8.0\n293,182,7.5\n293,183,7.0\n293,184,6.5\n293,185,6.0\n293,186,5.5\n293,187,5.0\n293,188,4.5\n293,189,4.0\n293,190,3.5\n293,191,3.0\n293,192,2.5\n293,193,2.0\n293,194,2.5\n293,195,3.0\n293,196,3.5\n293,197,4.0\n293,198,4.5\n293,199,5.0\n293,200,10.5\n293,201,10.0\n293,202,9.5\n293,203,9.0\n293,204,8.5\n293,205,8.0\n293,206,7.5\n293,207,7.0\n293,208,6.5\n293,209,6.0\n293,210,5.5\n293,211,5.0\n293,212,4.5\n293,213,4.0\n293,214,3.5\n293,215,3.0\n293,216,2.5\n293,217,2.0\n293,218,1.5\n293,219,2.0\n293,220,2.5\n293,221,3.0\n293,222,3.5\n293,223,4.0\n293,224,4.5\n293,225,10.0\n293,226,9.5\n293,227,9.0\n293,228,8.5\n293,229,8.0\n293,230,7.5\n293,231,7.0\n293,232,6.5\n293,233,6.0\n293,234,5.5\n293,235,5.0\n293,236,4.5\n293,237,4.0\n293,238,3.5\n293,239,3.0\n293,240,2.5\n293,241,2.0\n293,242,1.5\n293,243,1.0\n293,244,1.5\n293,245,2.0\n293,246,2.5\n293,247,3.0\n293,248,3.5\n293,249,4.0\n293,250,9.5\n293,251,9.0\n293,252,8.5\n293,253,8.0\n293,254,7.5\n293,255,7.0\n293,256,6.5\n293,257,6.0\n293,258,5.5\n293,259,5.0\n293,260,4.5\n293,261,4.0\n293,262,3.5\n293,263,3.0\n293,264,2.5\n293,265,2.0\n293,266,1.5\n293,267,1.0\n293,268,0.5\n293,269,1.0\n293,270,1.5\n293,271,2.0\n293,272,2.5\n293,273,3.0\n293,274,3.5\n293,275,9.0\n293,276,8.5\n293,277,8.0\n293,278,7.5\n293,279,7.0\n293,280,6.5\n293,281,6.0\n293,282,5.5\n293,283,5.0\n293,284,4.5\n293,285,4.0\n293,286,3.5\n293,287,3.0\n293,288,2.5\n293,289,2.0\n293,290,1.5\n293,291,1.0\n293,292,0.5\n293,293,0\n293,294,0.5\n293,295,1.0\n293,296,1.5\n293,297,2.0\n293,298,2.5\n293,299,3.0\n293,300,9.5\n293,301,9.0\n293,302,8.5\n293,303,8.0\n293,304,7.5\n293,305,7.0\n293,306,6.5\n293,307,6.0\n293,308,5.5\n293,309,5.0\n293,310,4.5\n293,311,4.0\n293,312,3.5\n293,313,3.0\n293,314,2.5\n293,315,2.0\n293,316,1.5\n293,317,1.0\n293,318,0.5\n293,319,1.0\n293,320,1.5\n293,321,2.0\n293,322,2.5\n293,323,3.0\n293,324,3.5\n293,325,10.0\n293,326,9.5\n293,327,9.0\n293,328,8.5\n293,329,8.0\n293,330,7.5\n293,331,7.0\n293,332,6.5\n293,333,6.0\n293,334,5.5\n293,335,5.0\n293,336,4.5\n293,337,4.0\n293,338,3.5\n293,339,3.0\n293,340,2.5\n293,341,2.0\n293,342,1.5\n293,343,1.0\n293,344,1.5\n293,345,2.0\n293,346,2.5\n293,347,3.0\n293,348,3.5\n293,349,4.0\n293,350,10.5\n293,351,10.0\n293,352,9.5\n293,353,9.0\n293,354,8.5\n293,355,8.0\n293,356,7.5\n293,357,7.0\n293,358,6.5\n293,359,6.0\n293,360,5.5\n293,361,5.0\n293,362,4.5\n293,363,4.0\n293,364,3.5\n293,365,3.0\n293,366,2.5\n293,367,2.0\n293,368,1.5\n293,369,2.0\n293,370,2.5\n293,371,3.0\n293,372,3.5\n293,373,4.0\n293,374,4.5\n293,375,11.0\n293,376,10.5\n293,377,10.0\n293,378,9.5\n293,379,9.0\n293,380,8.5\n293,381,8.0\n293,382,7.5\n293,383,7.0\n293,384,6.5\n293,385,6.0\n293,386,5.5\n293,387,5.0\n293,388,4.5\n293,389,4.0\n293,390,3.5\n293,391,3.0\n293,392,2.5\n293,393,2.0\n293,394,2.5\n293,395,3.0\n293,396,3.5\n293,397,4.0\n293,398,4.5\n293,399,5.0\n293,400,11.5\n293,401,11.0\n293,402,10.5\n293,403,10.0\n293,404,9.5\n293,405,9.0\n293,406,8.5\n293,407,8.0\n293,408,7.5\n293,409,7.0\n293,410,6.5\n293,411,6.0\n293,412,5.5\n293,413,5.0\n293,414,4.5\n293,415,4.0\n293,416,3.5\n293,417,3.0\n293,418,2.5\n293,419,3.0\n293,420,3.5\n293,421,4.0\n293,422,4.5\n293,423,5.0\n293,424,5.5\n293,425,12.0\n293,426,11.5\n293,427,11.0\n293,428,10.5\n293,429,10.0\n293,430,9.5\n293,431,9.0\n293,432,8.5\n293,433,8.0\n293,434,7.5\n293,435,7.0\n293,436,6.5\n293,437,6.0\n293,438,5.5\n293,439,5.0\n293,440,4.5\n293,441,4.0\n293,442,3.5\n293,443,3.0\n293,444,3.5\n293,445,4.0\n293,446,4.5\n293,447,5.0\n293,448,5.5\n293,449,6.0\n293,450,12.5\n293,451,12.0\n293,452,11.5\n293,453,11.0\n293,454,10.5\n293,455,10.0\n293,456,9.5\n293,457,9.0\n293,458,8.5\n293,459,8.0\n293,460,7.5\n293,461,7.0\n293,462,6.5\n293,463,6.0\n293,464,5.5\n293,465,5.0\n293,466,4.5\n293,467,4.0\n293,468,3.5\n293,469,4.0\n293,470,4.5\n293,471,5.0\n293,472,5.5\n293,473,6.0\n293,474,6.5\n293,475,13.0\n293,476,12.5\n293,477,12.0\n293,478,11.5\n293,479,11.0\n293,480,10.5\n293,481,10.0\n293,482,9.5\n293,483,9.0\n293,484,8.5\n293,485,8.0\n293,486,7.5\n293,487,7.0\n293,488,6.5\n293,489,6.0\n293,490,5.5\n293,491,5.0\n293,492,4.5\n293,493,4.0\n293,494,4.5\n293,495,5.0\n293,496,5.5\n293,497,6.0\n293,498,6.5\n293,499,7.0\n293,500,13.5\n293,501,13.0\n293,502,12.5\n293,503,12.0\n293,504,11.5\n293,505,11.0\n293,506,10.5\n293,507,10.0\n293,508,9.5\n293,509,9.0\n293,510,8.5\n293,511,8.0\n293,512,7.5\n293,513,7.0\n293,514,6.5\n293,515,6.0\n293,516,5.5\n293,517,5.0\n293,518,4.5\n293,519,5.0\n293,520,5.5\n293,521,6.0\n293,522,6.5\n293,523,7.0\n293,524,7.5\n293,525,14.0\n293,526,13.5\n293,527,13.0\n293,528,12.5\n293,529,12.0\n293,530,11.5\n293,531,11.0\n293,532,10.5\n293,533,10.0\n293,534,9.5\n293,535,9.0\n293,536,8.5\n293,537,8.0\n293,538,7.5\n293,539,7.0\n293,540,6.5\n293,541,6.0\n293,542,5.5\n293,543,5.0\n293,544,5.5\n293,545,6.0\n293,546,6.5\n293,547,7.0\n293,548,7.5\n293,549,8.0\n293,550,14.5\n293,551,14.0\n293,552,13.5\n293,553,13.0\n293,554,12.5\n293,555,12.0\n293,556,11.5\n293,557,11.0\n293,558,10.5\n293,559,10.0\n293,560,9.5\n293,561,9.0\n293,562,8.5\n293,563,8.0\n293,564,7.5\n293,565,7.0\n293,566,6.5\n293,567,6.0\n293,568,5.5\n293,569,6.0\n293,570,6.5\n293,571,7.0\n293,572,7.5\n293,573,8.0\n293,574,8.5\n293,575,15.0\n293,576,14.5\n293,577,14.0\n293,578,13.5\n293,579,13.0\n293,580,12.5\n293,581,12.0\n293,582,11.5\n293,583,11.0\n293,584,10.5\n293,585,10.0\n293,586,9.5\n293,587,9.0\n293,588,8.5\n293,589,8.0\n293,590,7.5\n293,591,7.0\n293,592,6.5\n293,593,6.0\n293,594,6.5\n293,595,7.0\n293,596,7.5\n293,597,8.0\n293,598,8.5\n293,599,9.0\n293,600,15.5\n293,601,15.0\n293,602,14.5\n293,603,14.0\n293,604,13.5\n293,605,13.0\n293,606,12.5\n293,607,12.0\n293,608,11.5\n293,609,11.0\n293,610,10.5\n293,611,10.0\n293,612,9.5\n293,613,9.0\n293,614,8.5\n293,615,8.0\n293,616,7.5\n293,617,7.0\n293,618,6.5\n293,619,7.0\n293,620,7.5\n293,621,8.0\n293,622,8.5\n293,623,9.0\n293,624,9.5\n294,0,15.0\n294,1,14.5\n294,2,14.0\n294,3,13.5\n294,4,13.0\n294,5,12.5\n294,6,12.0\n294,7,11.5\n294,8,11.0\n294,9,10.5\n294,10,10.0\n294,11,9.5\n294,12,9.0\n294,13,8.5\n294,14,8.0\n294,15,7.5\n294,16,7.0\n294,17,6.5\n294,18,6.0\n294,19,5.5\n294,20,6.0\n294,21,6.5\n294,22,7.0\n294,23,7.5\n294,24,8.0\n294,25,14.5\n294,26,14.0\n294,27,13.5\n294,28,13.0\n294,29,12.5\n294,30,12.0\n294,31,11.5\n294,32,11.0\n294,33,10.5\n294,34,10.0\n294,35,9.5\n294,36,9.0\n294,37,8.5\n294,38,8.0\n294,39,7.5\n294,40,7.0\n294,41,6.5\n294,42,6.0\n294,43,5.5\n294,44,5.0\n294,45,5.5\n294,46,6.0\n294,47,6.5\n294,48,7.0\n294,49,7.5\n294,50,14.0\n294,51,13.5\n294,52,13.0\n294,53,12.5\n294,54,12.0\n294,55,11.5\n294,56,11.0\n294,57,10.5\n294,58,10.0\n294,59,9.5\n294,60,9.0\n294,61,8.5\n294,62,8.0\n294,63,7.5\n294,64,7.0\n294,65,6.5\n294,66,6.0\n294,67,5.5\n294,68,5.0\n294,69,4.5\n294,70,5.0\n294,71,5.5\n294,72,6.0\n294,73,6.5\n294,74,7.0\n294,75,13.5\n294,76,13.0\n294,77,12.5\n294,78,12.0\n294,79,11.5\n294,80,11.0\n294,81,10.5\n294,82,10.0\n294,83,9.5\n294,84,9.0\n294,85,8.5\n294,86,8.0\n294,87,7.5\n294,88,7.0\n294,89,6.5\n294,90,6.0\n294,91,5.5\n294,92,5.0\n294,93,4.5\n294,94,4.0\n294,95,4.5\n294,96,5.0\n294,97,5.5\n294,98,6.0\n294,99,6.5\n294,100,13.0\n294,101,12.5\n294,102,12.0\n294,103,11.5\n294,104,11.0\n294,105,10.5\n294,106,10.0\n294,107,9.5\n294,108,9.0\n294,109,8.5\n294,110,8.0\n294,111,7.5\n294,112,7.0\n294,113,6.5\n294,114,6.0\n294,115,5.5\n294,116,5.0\n294,117,4.5\n294,118,4.0\n294,119,3.5\n294,120,4.0\n294,121,4.5\n294,122,5.0\n294,123,5.5\n294,124,6.0\n294,125,12.5\n294,126,12.0\n294,127,11.5\n294,128,11.0\n294,129,10.5\n294,130,10.0\n294,131,9.5\n294,132,9.0\n294,133,8.5\n294,134,8.0\n294,135,7.5\n294,136,7.0\n294,137,6.5\n294,138,6.0\n294,139,5.5\n294,140,5.0\n294,141,4.5\n294,142,4.0\n294,143,3.5\n294,144,3.0\n294,145,3.5\n294,146,4.0\n294,147,4.5\n294,148,5.0\n294,149,5.5\n294,150,12.0\n294,151,11.5\n294,152,11.0\n294,153,10.5\n294,154,10.0\n294,155,9.5\n294,156,9.0\n294,157,8.5\n294,158,8.0\n294,159,7.5\n294,160,7.0\n294,161,6.5\n294,162,6.0\n294,163,5.5\n294,164,5.0\n294,165,4.5\n294,166,4.0\n294,167,3.5\n294,168,3.0\n294,169,2.5\n294,170,3.0\n294,171,3.5\n294,172,4.0\n294,173,4.5\n294,174,5.0\n294,175,11.5\n294,176,11.0\n294,177,10.5\n294,178,10.0\n294,179,9.5\n294,180,9.0\n294,181,8.5\n294,182,8.0\n294,183,7.5\n294,184,7.0\n294,185,6.5\n294,186,6.0\n294,187,5.5\n294,188,5.0\n294,189,4.5\n294,190,4.0\n294,191,3.5\n294,192,3.0\n294,193,2.5\n294,194,2.0\n294,195,2.5\n294,196,3.0\n294,197,3.5\n294,198,4.0\n294,199,4.5\n294,200,11.0\n294,201,10.5\n294,202,10.0\n294,203,9.5\n294,204,9.0\n294,205,8.5\n294,206,8.0\n294,207,7.5\n294,208,7.0\n294,209,6.5\n294,210,6.0\n294,211,5.5\n294,212,5.0\n294,213,4.5\n294,214,4.0\n294,215,3.5\n294,216,3.0\n294,217,2.5\n294,218,2.0\n294,219,1.5\n294,220,2.0\n294,221,2.5\n294,222,3.0\n294,223,3.5\n294,224,4.0\n294,225,10.5\n294,226,10.0\n294,227,9.5\n294,228,9.0\n294,229,8.5\n294,230,8.0\n294,231,7.5\n294,232,7.0\n294,233,6.5\n294,234,6.0\n294,235,5.5\n294,236,5.0\n294,237,4.5\n294,238,4.0\n294,239,3.5\n294,240,3.0\n294,241,2.5\n294,242,2.0\n294,243,1.5\n294,244,1.0\n294,245,1.5\n294,246,2.0\n294,247,2.5\n294,248,3.0\n294,249,3.5\n294,250,10.0\n294,251,9.5\n294,252,9.0\n294,253,8.5\n294,254,8.0\n294,255,7.5\n294,256,7.0\n294,257,6.5\n294,258,6.0\n294,259,5.5\n294,260,5.0\n294,261,4.5\n294,262,4.0\n294,263,3.5\n294,264,3.0\n294,265,2.5\n294,266,2.0\n294,267,1.5\n294,268,1.0\n294,269,0.5\n294,270,1.0\n294,271,1.5\n294,272,2.0\n294,273,2.5\n294,274,3.0\n294,275,9.5\n294,276,9.0\n294,277,8.5\n294,278,8.0\n294,279,7.5\n294,280,7.0\n294,281,6.5\n294,282,6.0\n294,283,5.5\n294,284,5.0\n294,285,4.5\n294,286,4.0\n294,287,3.5\n294,288,3.0\n294,289,2.5\n294,290,2.0\n294,291,1.5\n294,292,1.0\n294,293,0.5\n294,294,0\n294,295,0.5\n294,296,1.0\n294,297,1.5\n294,298,2.0\n294,299,2.5\n294,300,10.0\n294,301,9.5\n294,302,9.0\n294,303,8.5\n294,304,8.0\n294,305,7.5\n294,306,7.0\n294,307,6.5\n294,308,6.0\n294,309,5.5\n294,310,5.0\n294,311,4.5\n294,312,4.0\n294,313,3.5\n294,314,3.0\n294,315,2.5\n294,316,2.0\n294,317,1.5\n294,318,1.0\n294,319,0.5\n294,320,1.0\n294,321,1.5\n294,322,2.0\n294,323,2.5\n294,324,3.0\n294,325,10.5\n294,326,10.0\n294,327,9.5\n294,328,9.0\n294,329,8.5\n294,330,8.0\n294,331,7.5\n294,332,7.0\n294,333,6.5\n294,334,6.0\n294,335,5.5\n294,336,5.0\n294,337,4.5\n294,338,4.0\n294,339,3.5\n294,340,3.0\n294,341,2.5\n294,342,2.0\n294,343,1.5\n294,344,1.0\n294,345,1.5\n294,346,2.0\n294,347,2.5\n294,348,3.0\n294,349,3.5\n294,350,11.0\n294,351,10.5\n294,352,10.0\n294,353,9.5\n294,354,9.0\n294,355,8.5\n294,356,8.0\n294,357,7.5\n294,358,7.0\n294,359,6.5\n294,360,6.0\n294,361,5.5\n294,362,5.0\n294,363,4.5\n294,364,4.0\n294,365,3.5\n294,366,3.0\n294,367,2.5\n294,368,2.0\n294,369,1.5\n294,370,2.0\n294,371,2.5\n294,372,3.0\n294,373,3.5\n294,374,4.0\n294,375,11.5\n294,376,11.0\n294,377,10.5\n294,378,10.0\n294,379,9.5\n294,380,9.0\n294,381,8.5\n294,382,8.0\n294,383,7.5\n294,384,7.0\n294,385,6.5\n294,386,6.0\n294,387,5.5\n294,388,5.0\n294,389,4.5\n294,390,4.0\n294,391,3.5\n294,392,3.0\n294,393,2.5\n294,394,2.0\n294,395,2.5\n294,396,3.0\n294,397,3.5\n294,398,4.0\n294,399,4.5\n294,400,12.0\n294,401,11.5\n294,402,11.0\n294,403,10.5\n294,404,10.0\n294,405,9.5\n294,406,9.0\n294,407,8.5\n294,408,8.0\n294,409,7.5\n294,410,7.0\n294,411,6.5\n294,412,6.0\n294,413,5.5\n294,414,5.0\n294,415,4.5\n294,416,4.0\n294,417,3.5\n294,418,3.0\n294,419,2.5\n294,420,3.0\n294,421,3.5\n294,422,4.0\n294,423,4.5\n294,424,5.0\n294,425,12.5\n294,426,12.0\n294,427,11.5\n294,428,11.0\n294,429,10.5\n294,430,10.0\n294,431,9.5\n294,432,9.0\n294,433,8.5\n294,434,8.0\n294,435,7.5\n294,436,7.0\n294,437,6.5\n294,438,6.0\n294,439,5.5\n294,440,5.0\n294,441,4.5\n294,442,4.0\n294,443,3.5\n294,444,3.0\n294,445,3.5\n294,446,4.0\n294,447,4.5\n294,448,5.0\n294,449,5.5\n294,450,13.0\n294,451,12.5\n294,452,12.0\n294,453,11.5\n294,454,11.0\n294,455,10.5\n294,456,10.0\n294,457,9.5\n294,458,9.0\n294,459,8.5\n294,460,8.0\n294,461,7.5\n294,462,7.0\n294,463,6.5\n294,464,6.0\n294,465,5.5\n294,466,5.0\n294,467,4.5\n294,468,4.0\n294,469,3.5\n294,470,4.0\n294,471,4.5\n294,472,5.0\n294,473,5.5\n294,474,6.0\n294,475,13.5\n294,476,13.0\n294,477,12.5\n294,478,12.0\n294,479,11.5\n294,480,11.0\n294,481,10.5\n294,482,10.0\n294,483,9.5\n294,484,9.0\n294,485,8.5\n294,486,8.0\n294,487,7.5\n294,488,7.0\n294,489,6.5\n294,490,6.0\n294,491,5.5\n294,492,5.0\n294,493,4.5\n294,494,4.0\n294,495,4.5\n294,496,5.0\n294,497,5.5\n294,498,6.0\n294,499,6.5\n294,500,14.0\n294,501,13.5\n294,502,13.0\n294,503,12.5\n294,504,12.0\n294,505,11.5\n294,506,11.0\n294,507,10.5\n294,508,10.0\n294,509,9.5\n294,510,9.0\n294,511,8.5\n294,512,8.0\n294,513,7.5\n294,514,7.0\n294,515,6.5\n294,516,6.0\n294,517,5.5\n294,518,5.0\n294,519,4.5\n294,520,5.0\n294,521,5.5\n294,522,6.0\n294,523,6.5\n294,524,7.0\n294,525,14.5\n294,526,14.0\n294,527,13.5\n294,528,13.0\n294,529,12.5\n294,530,12.0\n294,531,11.5\n294,532,11.0\n294,533,10.5\n294,534,10.0\n294,535,9.5\n294,536,9.0\n294,537,8.5\n294,538,8.0\n294,539,7.5\n294,540,7.0\n294,541,6.5\n294,542,6.0\n294,543,5.5\n294,544,5.0\n294,545,5.5\n294,546,6.0\n294,547,6.5\n294,548,7.0\n294,549,7.5\n294,550,15.0\n294,551,14.5\n294,552,14.0\n294,553,13.5\n294,554,13.0\n294,555,12.5\n294,556,12.0\n294,557,11.5\n294,558,11.0\n294,559,10.5\n294,560,10.0\n294,561,9.5\n294,562,9.0\n294,563,8.5\n294,564,8.0\n294,565,7.5\n294,566,7.0\n294,567,6.5\n294,568,6.0\n294,569,5.5\n294,570,6.0\n294,571,6.5\n294,572,7.0\n294,573,7.5\n294,574,8.0\n294,575,15.5\n294,576,15.0\n294,577,14.5\n294,578,14.0\n294,579,13.5\n294,580,13.0\n294,581,12.5\n294,582,12.0\n294,583,11.5\n294,584,11.0\n294,585,10.5\n294,586,10.0\n294,587,9.5\n294,588,9.0\n294,589,8.5\n294,590,8.0\n294,591,7.5\n294,592,7.0\n294,593,6.5\n294,594,6.0\n294,595,6.5\n294,596,7.0\n294,597,7.5\n294,598,8.0\n294,599,8.5\n294,600,16.0\n294,601,15.5\n294,602,15.0\n294,603,14.5\n294,604,14.0\n294,605,13.5\n294,606,13.0\n294,607,12.5\n294,608,12.0\n294,609,11.5\n294,610,11.0\n294,611,10.5\n294,612,10.0\n294,613,9.5\n294,614,9.0\n294,615,8.5\n294,616,8.0\n294,617,7.5\n294,618,7.0\n294,619,6.5\n294,620,7.0\n294,621,7.5\n294,622,8.0\n294,623,8.5\n294,624,9.0\n295,0,15.5\n295,1,15.0\n295,2,14.5\n295,3,14.0\n295,4,13.5\n295,5,13.0\n295,6,12.5\n295,7,12.0\n295,8,11.5\n295,9,11.0\n295,10,10.5\n295,11,10.0\n295,12,9.5\n295,13,9.0\n295,14,8.5\n295,15,8.0\n295,16,7.5\n295,17,7.0\n295,18,6.5\n295,19,6.0\n295,20,5.5\n295,21,6.0\n295,22,6.5\n295,23,7.0\n295,24,7.5\n295,25,15.0\n295,26,14.5\n295,27,14.0\n295,28,13.5\n295,29,13.0\n295,30,12.5\n295,31,12.0\n295,32,11.5\n295,33,11.0\n295,34,10.5\n295,35,10.0\n295,36,9.5\n295,37,9.0\n295,38,8.5\n295,39,8.0\n295,40,7.5\n295,41,7.0\n295,42,6.5\n295,43,6.0\n295,44,5.5\n295,45,5.0\n295,46,5.5\n295,47,6.0\n295,48,6.5\n295,49,7.0\n295,50,14.5\n295,51,14.0\n295,52,13.5\n295,53,13.0\n295,54,12.5\n295,55,12.0\n295,56,11.5\n295,57,11.0\n295,58,10.5\n295,59,10.0\n295,60,9.5\n295,61,9.0\n295,62,8.5\n295,63,8.0\n295,64,7.5\n295,65,7.0\n295,66,6.5\n295,67,6.0\n295,68,5.5\n295,69,5.0\n295,70,4.5\n295,71,5.0\n295,72,5.5\n295,73,6.0\n295,74,6.5\n295,75,14.0\n295,76,13.5\n295,77,13.0\n295,78,12.5\n295,79,12.0\n295,80,11.5\n295,81,11.0\n295,82,10.5\n295,83,10.0\n295,84,9.5\n295,85,9.0\n295,86,8.5\n295,87,8.0\n295,88,7.5\n295,89,7.0\n295,90,6.5\n295,91,6.0\n295,92,5.5\n295,93,5.0\n295,94,4.5\n295,95,4.0\n295,96,4.5\n295,97,5.0\n295,98,5.5\n295,99,6.0\n295,100,13.5\n295,101,13.0\n295,102,12.5\n295,103,12.0\n295,104,11.5\n295,105,11.0\n295,106,10.5\n295,107,10.0\n295,108,9.5\n295,109,9.0\n295,110,8.5\n295,111,8.0\n295,112,7.5\n295,113,7.0\n295,114,6.5\n295,115,6.0\n295,116,5.5\n295,117,5.0\n295,118,4.5\n295,119,4.0\n295,120,3.5\n295,121,4.0\n295,122,4.5\n295,123,5.0\n295,124,5.5\n295,125,13.0\n295,126,12.5\n295,127,12.0\n295,128,11.5\n295,129,11.0\n295,130,10.5\n295,131,10.0\n295,132,9.5\n295,133,9.0\n295,134,8.5\n295,135,8.0\n295,136,7.5\n295,137,7.0\n295,138,6.5\n295,139,6.0\n295,140,5.5\n295,141,5.0\n295,142,4.5\n295,143,4.0\n295,144,3.5\n295,145,3.0\n295,146,3.5\n295,147,4.0\n295,148,4.5\n295,149,5.0\n295,150,12.5\n295,151,12.0\n295,152,11.5\n295,153,11.0\n295,154,10.5\n295,155,10.0\n295,156,9.5\n295,157,9.0\n295,158,8.5\n295,159,8.0\n295,160,7.5\n295,161,7.0\n295,162,6.5\n295,163,6.0\n295,164,5.5\n295,165,5.0\n295,166,4.5\n295,167,4.0\n295,168,3.5\n295,169,3.0\n295,170,2.5\n295,171,3.0\n295,172,3.5\n295,173,4.0\n295,174,4.5\n295,175,12.0\n295,176,11.5\n295,177,11.0\n295,178,10.5\n295,179,10.0\n295,180,9.5\n295,181,9.0\n295,182,8.5\n295,183,8.0\n295,184,7.5\n295,185,7.0\n295,186,6.5\n295,187,6.0\n295,188,5.5\n295,189,5.0\n295,190,4.5\n295,191,4.0\n295,192,3.5\n295,193,3.0\n295,194,2.5\n295,195,2.0\n295,196,2.5\n295,197,3.0\n295,198,3.5\n295,199,4.0\n295,200,11.5\n295,201,11.0\n295,202,10.5\n295,203,10.0\n295,204,9.5\n295,205,9.0\n295,206,8.5\n295,207,8.0\n295,208,7.5\n295,209,7.0\n295,210,6.5\n295,211,6.0\n295,212,5.5\n295,213,5.0\n295,214,4.5\n295,215,4.0\n295,216,3.5\n295,217,3.0\n295,218,2.5\n295,219,2.0\n295,220,1.5\n295,221,2.0\n295,222,2.5\n295,223,3.0\n295,224,3.5\n295,225,11.0\n295,226,10.5\n295,227,10.0\n295,228,9.5\n295,229,9.0\n295,230,8.5\n295,231,8.0\n295,232,7.5\n295,233,7.0\n295,234,6.5\n295,235,6.0\n295,236,5.5\n295,237,5.0\n295,238,4.5\n295,239,4.0\n295,240,3.5\n295,241,3.0\n295,242,2.5\n295,243,2.0\n295,244,1.5\n295,245,1.0\n295,246,1.5\n295,247,2.0\n295,248,2.5\n295,249,3.0\n295,250,10.5\n295,251,10.0\n295,252,9.5\n295,253,9.0\n295,254,8.5\n295,255,8.0\n295,256,7.5\n295,257,7.0\n295,258,6.5\n295,259,6.0\n295,260,5.5\n295,261,5.0\n295,262,4.5\n295,263,4.0\n295,264,3.5\n295,265,3.0\n295,266,2.5\n295,267,2.0\n295,268,1.5\n295,269,1.0\n295,270,0.5\n295,271,1.0\n295,272,1.5\n295,273,2.0\n295,274,2.5\n295,275,10.0\n295,276,9.5\n295,277,9.0\n295,278,8.5\n295,279,8.0\n295,280,7.5\n295,281,7.0\n295,282,6.5\n295,283,6.0\n295,284,5.5\n295,285,5.0\n295,286,4.5\n295,287,4.0\n295,288,3.5\n295,289,3.0\n295,290,2.5\n295,291,2.0\n295,292,1.5\n295,293,1.0\n295,294,0.5\n295,295,0\n295,296,0.5\n295,297,1.0\n295,298,1.5\n295,299,2.0\n295,300,10.5\n295,301,10.0\n295,302,9.5\n295,303,9.0\n295,304,8.5\n295,305,8.0\n295,306,7.5\n295,307,7.0\n295,308,6.5\n295,309,6.0\n295,310,5.5\n295,311,5.0\n295,312,4.5\n295,313,4.0\n295,314,3.5\n295,315,3.0\n295,316,2.5\n295,317,2.0\n295,318,1.5\n295,319,1.0\n295,320,0.5\n295,321,1.0\n295,322,1.5\n295,323,2.0\n295,324,2.5\n295,325,11.0\n295,326,10.5\n295,327,10.0\n295,328,9.5\n295,329,9.0\n295,330,8.5\n295,331,8.0\n295,332,7.5\n295,333,7.0\n295,334,6.5\n295,335,6.0\n295,336,5.5\n295,337,5.0\n295,338,4.5\n295,339,4.0\n295,340,3.5\n295,341,3.0\n295,342,2.5\n295,343,2.0\n295,344,1.5\n295,345,1.0\n295,346,1.5\n295,347,2.0\n295,348,2.5\n295,349,3.0\n295,350,11.5\n295,351,11.0\n295,352,10.5\n295,353,10.0\n295,354,9.5\n295,355,9.0\n295,356,8.5\n295,357,8.0\n295,358,7.5\n295,359,7.0\n295,360,6.5\n295,361,6.0\n295,362,5.5\n295,363,5.0\n295,364,4.5\n295,365,4.0\n295,366,3.5\n295,367,3.0\n295,368,2.5\n295,369,2.0\n295,370,1.5\n295,371,2.0\n295,372,2.5\n295,373,3.0\n295,374,3.5\n295,375,12.0\n295,376,11.5\n295,377,11.0\n295,378,10.5\n295,379,10.0\n295,380,9.5\n295,381,9.0\n295,382,8.5\n295,383,8.0\n295,384,7.5\n295,385,7.0\n295,386,6.5\n295,387,6.0\n295,388,5.5\n295,389,5.0\n295,390,4.5\n295,391,4.0\n295,392,3.5\n295,393,3.0\n295,394,2.5\n295,395,2.0\n295,396,2.5\n295,397,3.0\n295,398,3.5\n295,399,4.0\n295,400,12.5\n295,401,12.0\n295,402,11.5\n295,403,11.0\n295,404,10.5\n295,405,10.0\n295,406,9.5\n295,407,9.0\n295,408,8.5\n295,409,8.0\n295,410,7.5\n295,411,7.0\n295,412,6.5\n295,413,6.0\n295,414,5.5\n295,415,5.0\n295,416,4.5\n295,417,4.0\n295,418,3.5\n295,419,3.0\n295,420,2.5\n295,421,3.0\n295,422,3.5\n295,423,4.0\n295,424,4.5\n295,425,13.0\n295,426,12.5\n295,427,12.0\n295,428,11.5\n295,429,11.0\n295,430,10.5\n295,431,10.0\n295,432,9.5\n295,433,9.0\n295,434,8.5\n295,435,8.0\n295,436,7.5\n295,437,7.0\n295,438,6.5\n295,439,6.0\n295,440,5.5\n295,441,5.0\n295,442,4.5\n295,443,4.0\n295,444,3.5\n295,445,3.0\n295,446,3.5\n295,447,4.0\n295,448,4.5\n295,449,5.0\n295,450,13.5\n295,451,13.0\n295,452,12.5\n295,453,12.0\n295,454,11.5\n295,455,11.0\n295,456,10.5\n295,457,10.0\n295,458,9.5\n295,459,9.0\n295,460,8.5\n295,461,8.0\n295,462,7.5\n295,463,7.0\n295,464,6.5\n295,465,6.0\n295,466,5.5\n295,467,5.0\n295,468,4.5\n295,469,4.0\n295,470,3.5\n295,471,4.0\n295,472,4.5\n295,473,5.0\n295,474,5.5\n295,475,14.0\n295,476,13.5\n295,477,13.0\n295,478,12.5\n295,479,12.0\n295,480,11.5\n295,481,11.0\n295,482,10.5\n295,483,10.0\n295,484,9.5\n295,485,9.0\n295,486,8.5\n295,487,8.0\n295,488,7.5\n295,489,7.0\n295,490,6.5\n295,491,6.0\n295,492,5.5\n295,493,5.0\n295,494,4.5\n295,495,4.0\n295,496,4.5\n295,497,5.0\n295,498,5.5\n295,499,6.0\n295,500,14.5\n295,501,14.0\n295,502,13.5\n295,503,13.0\n295,504,12.5\n295,505,12.0\n295,506,11.5\n295,507,11.0\n295,508,10.5\n295,509,10.0\n295,510,9.5\n295,511,9.0\n295,512,8.5\n295,513,8.0\n295,514,7.5\n295,515,7.0\n295,516,6.5\n295,517,6.0\n295,518,5.5\n295,519,5.0\n295,520,4.5\n295,521,5.0\n295,522,5.5\n295,523,6.0\n295,524,6.5\n295,525,15.0\n295,526,14.5\n295,527,14.0\n295,528,13.5\n295,529,13.0\n295,530,12.5\n295,531,12.0\n295,532,11.5\n295,533,11.0\n295,534,10.5\n295,535,10.0\n295,536,9.5\n295,537,9.0\n295,538,8.5\n295,539,8.0\n295,540,7.5\n295,541,7.0\n295,542,6.5\n295,543,6.0\n295,544,5.5\n295,545,5.0\n295,546,5.5\n295,547,6.0\n295,548,6.5\n295,549,7.0\n295,550,15.5\n295,551,15.0\n295,552,14.5\n295,553,14.0\n295,554,13.5\n295,555,13.0\n295,556,12.5\n295,557,12.0\n295,558,11.5\n295,559,11.0\n295,560,10.5\n295,561,10.0\n295,562,9.5\n295,563,9.0\n295,564,8.5\n295,565,8.0\n295,566,7.5\n295,567,7.0\n295,568,6.5\n295,569,6.0\n295,570,5.5\n295,571,6.0\n295,572,6.5\n295,573,7.0\n295,574,7.5\n295,575,16.0\n295,576,15.5\n295,577,15.0\n295,578,14.5\n295,579,14.0\n295,580,13.5\n295,581,13.0\n295,582,12.5\n295,583,12.0\n295,584,11.5\n295,585,11.0\n295,586,10.5\n295,587,10.0\n295,588,9.5\n295,589,9.0\n295,590,8.5\n295,591,8.0\n295,592,7.5\n295,593,7.0\n295,594,6.5\n295,595,6.0\n295,596,6.5\n295,597,7.0\n295,598,7.5\n295,599,8.0\n295,600,16.5\n295,601,16.0\n295,602,15.5\n295,603,15.0\n295,604,14.5\n295,605,14.0\n295,606,13.5\n295,607,13.0\n295,608,12.5\n295,609,12.0\n295,610,11.5\n295,611,11.0\n295,612,10.5\n295,613,10.0\n295,614,9.5\n295,615,9.0\n295,616,8.5\n295,617,8.0\n295,618,7.5\n295,619,7.0\n295,620,6.5\n295,621,7.0\n295,622,7.5\n295,623,8.0\n295,624,8.5\n296,0,16.0\n296,1,15.5\n296,2,15.0\n296,3,14.5\n296,4,14.0\n296,5,13.5\n296,6,13.0\n296,7,12.5\n296,8,12.0\n296,9,11.5\n296,10,11.0\n296,11,10.5\n296,12,10.0\n296,13,9.5\n296,14,9.0\n296,15,8.5\n296,16,8.0\n296,17,7.5\n296,18,7.0\n296,19,6.5\n296,20,6.0\n296,21,5.5\n296,22,6.0\n296,23,6.5\n296,24,7.0\n296,25,15.5\n296,26,15.0\n296,27,14.5\n296,28,14.0\n296,29,13.5\n296,30,13.0\n296,31,12.5\n296,32,12.0\n296,33,11.5\n296,34,11.0\n296,35,10.5\n296,36,10.0\n296,37,9.5\n296,38,9.0\n296,39,8.5\n296,40,8.0\n296,41,7.5\n296,42,7.0\n296,43,6.5\n296,44,6.0\n296,45,5.5\n296,46,5.0\n296,47,5.5\n296,48,6.0\n296,49,6.5\n296,50,15.0\n296,51,14.5\n296,52,14.0\n296,53,13.5\n296,54,13.0\n296,55,12.5\n296,56,12.0\n296,57,11.5\n296,58,11.0\n296,59,10.5\n296,60,10.0\n296,61,9.5\n296,62,9.0\n296,63,8.5\n296,64,8.0\n296,65,7.5\n296,66,7.0\n296,67,6.5\n296,68,6.0\n296,69,5.5\n296,70,5.0\n296,71,4.5\n296,72,5.0\n296,73,5.5\n296,74,6.0\n296,75,14.5\n296,76,14.0\n296,77,13.5\n296,78,13.0\n296,79,12.5\n296,80,12.0\n296,81,11.5\n296,82,11.0\n296,83,10.5\n296,84,10.0\n296,85,9.5\n296,86,9.0\n296,87,8.5\n296,88,8.0\n296,89,7.5\n296,90,7.0\n296,91,6.5\n296,92,6.0\n296,93,5.5\n296,94,5.0\n296,95,4.5\n296,96,4.0\n296,97,4.5\n296,98,5.0\n296,99,5.5\n296,100,14.0\n296,101,13.5\n296,102,13.0\n296,103,12.5\n296,104,12.0\n296,105,11.5\n296,106,11.0\n296,107,10.5\n296,108,10.0\n296,109,9.5\n296,110,9.0\n296,111,8.5\n296,112,8.0\n296,113,7.5\n296,114,7.0\n296,115,6.5\n296,116,6.0\n296,117,5.5\n296,118,5.0\n296,119,4.5\n296,120,4.0\n296,121,3.5\n296,122,4.0\n296,123,4.5\n296,124,5.0\n296,125,13.5\n296,126,13.0\n296,127,12.5\n296,128,12.0\n296,129,11.5\n296,130,11.0\n296,131,10.5\n296,132,10.0\n296,133,9.5\n296,134,9.0\n296,135,8.5\n296,136,8.0\n296,137,7.5\n296,138,7.0\n296,139,6.5\n296,140,6.0\n296,141,5.5\n296,142,5.0\n296,143,4.5\n296,144,4.0\n296,145,3.5\n296,146,3.0\n296,147,3.5\n296,148,4.0\n296,149,4.5\n296,150,13.0\n296,151,12.5\n296,152,12.0\n296,153,11.5\n296,154,11.0\n296,155,10.5\n296,156,10.0\n296,157,9.5\n296,158,9.0\n296,159,8.5\n296,160,8.0\n296,161,7.5\n296,162,7.0\n296,163,6.5\n296,164,6.0\n296,165,5.5\n296,166,5.0\n296,167,4.5\n296,168,4.0\n296,169,3.5\n296,170,3.0\n296,171,2.5\n296,172,3.0\n296,173,3.5\n296,174,4.0\n296,175,12.5\n296,176,12.0\n296,177,11.5\n296,178,11.0\n296,179,10.5\n296,180,10.0\n296,181,9.5\n296,182,9.0\n296,183,8.5\n296,184,8.0\n296,185,7.5\n296,186,7.0\n296,187,6.5\n296,188,6.0\n296,189,5.5\n296,190,5.0\n296,191,4.5\n296,192,4.0\n296,193,3.5\n296,194,3.0\n296,195,2.5\n296,196,2.0\n296,197,2.5\n296,198,3.0\n296,199,3.5\n296,200,12.0\n296,201,11.5\n296,202,11.0\n296,203,10.5\n296,204,10.0\n296,205,9.5\n296,206,9.0\n296,207,8.5\n296,208,8.0\n296,209,7.5\n296,210,7.0\n296,211,6.5\n296,212,6.0\n296,213,5.5\n296,214,5.0\n296,215,4.5\n296,216,4.0\n296,217,3.5\n296,218,3.0\n296,219,2.5\n296,220,2.0\n296,221,1.5\n296,222,2.0\n296,223,2.5\n296,224,3.0\n296,225,11.5\n296,226,11.0\n296,227,10.5\n296,228,10.0\n296,229,9.5\n296,230,9.0\n296,231,8.5\n296,232,8.0\n296,233,7.5\n296,234,7.0\n296,235,6.5\n296,236,6.0\n296,237,5.5\n296,238,5.0\n296,239,4.5\n296,240,4.0\n296,241,3.5\n296,242,3.0\n296,243,2.5\n296,244,2.0\n296,245,1.5\n296,246,1.0\n296,247,1.5\n296,248,2.0\n296,249,2.5\n296,250,11.0\n296,251,10.5\n296,252,10.0\n296,253,9.5\n296,254,9.0\n296,255,8.5\n296,256,8.0\n296,257,7.5\n296,258,7.0\n296,259,6.5\n296,260,6.0\n296,261,5.5\n296,262,5.0\n296,263,4.5\n296,264,4.0\n296,265,3.5\n296,266,3.0\n296,267,2.5\n296,268,2.0\n296,269,1.5\n296,270,1.0\n296,271,0.5\n296,272,1.0\n296,273,1.5\n296,274,2.0\n296,275,10.5\n296,276,10.0\n296,277,9.5\n296,278,9.0\n296,279,8.5\n296,280,8.0\n296,281,7.5\n296,282,7.0\n296,283,6.5\n296,284,6.0\n296,285,5.5\n296,286,5.0\n296,287,4.5\n296,288,4.0\n296,289,3.5\n296,290,3.0\n296,291,2.5\n296,292,2.0\n296,293,1.5\n296,294,1.0\n296,295,0.5\n296,296,0\n296,297,0.5\n296,298,1.0\n296,299,1.5\n296,300,11.0\n296,301,10.5\n296,302,10.0\n296,303,9.5\n296,304,9.0\n296,305,8.5\n296,306,8.0\n296,307,7.5\n296,308,7.0\n296,309,6.5\n296,310,6.0\n296,311,5.5\n296,312,5.0\n296,313,4.5\n296,314,4.0\n296,315,3.5\n296,316,3.0\n296,317,2.5\n296,318,2.0\n296,319,1.5\n296,320,1.0\n296,321,0.5\n296,322,1.0\n296,323,1.5\n296,324,2.0\n296,325,11.5\n296,326,11.0\n296,327,10.5\n296,328,10.0\n296,329,9.5\n296,330,9.0\n296,331,8.5\n296,332,8.0\n296,333,7.5\n296,334,7.0\n296,335,6.5\n296,336,6.0\n296,337,5.5\n296,338,5.0\n296,339,4.5\n296,340,4.0\n296,341,3.5\n296,342,3.0\n296,343,2.5\n296,344,2.0\n296,345,1.5\n296,346,1.0\n296,347,1.5\n296,348,2.0\n296,349,2.5\n296,350,12.0\n296,351,11.5\n296,352,11.0\n296,353,10.5\n296,354,10.0\n296,355,9.5\n296,356,9.0\n296,357,8.5\n296,358,8.0\n296,359,7.5\n296,360,7.0\n296,361,6.5\n296,362,6.0\n296,363,5.5\n296,364,5.0\n296,365,4.5\n296,366,4.0\n296,367,3.5\n296,368,3.0\n296,369,2.5\n296,370,2.0\n296,371,1.5\n296,372,2.0\n296,373,2.5\n296,374,3.0\n296,375,12.5\n296,376,12.0\n296,377,11.5\n296,378,11.0\n296,379,10.5\n296,380,10.0\n296,381,9.5\n296,382,9.0\n296,383,8.5\n296,384,8.0\n296,385,7.5\n296,386,7.0\n296,387,6.5\n296,388,6.0\n296,389,5.5\n296,390,5.0\n296,391,4.5\n296,392,4.0\n296,393,3.5\n296,394,3.0\n296,395,2.5\n296,396,2.0\n296,397,2.5\n296,398,3.0\n296,399,3.5\n296,400,13.0\n296,401,12.5\n296,402,12.0\n296,403,11.5\n296,404,11.0\n296,405,10.5\n296,406,10.0\n296,407,9.5\n296,408,9.0\n296,409,8.5\n296,410,8.0\n296,411,7.5\n296,412,7.0\n296,413,6.5\n296,414,6.0\n296,415,5.5\n296,416,5.0\n296,417,4.5\n296,418,4.0\n296,419,3.5\n296,420,3.0\n296,421,2.5\n296,422,3.0\n296,423,3.5\n296,424,4.0\n296,425,13.5\n296,426,13.0\n296,427,12.5\n296,428,12.0\n296,429,11.5\n296,430,11.0\n296,431,10.5\n296,432,10.0\n296,433,9.5\n296,434,9.0\n296,435,8.5\n296,436,8.0\n296,437,7.5\n296,438,7.0\n296,439,6.5\n296,440,6.0\n296,441,5.5\n296,442,5.0\n296,443,4.5\n296,444,4.0\n296,445,3.5\n296,446,3.0\n296,447,3.5\n296,448,4.0\n296,449,4.5\n296,450,14.0\n296,451,13.5\n296,452,13.0\n296,453,12.5\n296,454,12.0\n296,455,11.5\n296,456,11.0\n296,457,10.5\n296,458,10.0\n296,459,9.5\n296,460,9.0\n296,461,8.5\n296,462,8.0\n296,463,7.5\n296,464,7.0\n296,465,6.5\n296,466,6.0\n296,467,5.5\n296,468,5.0\n296,469,4.5\n296,470,4.0\n296,471,3.5\n296,472,4.0\n296,473,4.5\n296,474,5.0\n296,475,14.5\n296,476,14.0\n296,477,13.5\n296,478,13.0\n296,479,12.5\n296,480,12.0\n296,481,11.5\n296,482,11.0\n296,483,10.5\n296,484,10.0\n296,485,9.5\n296,486,9.0\n296,487,8.5\n296,488,8.0\n296,489,7.5\n296,490,7.0\n296,491,6.5\n296,492,6.0\n296,493,5.5\n296,494,5.0\n296,495,4.5\n296,496,4.0\n296,497,4.5\n296,498,5.0\n296,499,5.5\n296,500,15.0\n296,501,14.5\n296,502,14.0\n296,503,13.5\n296,504,13.0\n296,505,12.5\n296,506,12.0\n296,507,11.5\n296,508,11.0\n296,509,10.5\n296,510,10.0\n296,511,9.5\n296,512,9.0\n296,513,8.5\n296,514,8.0\n296,515,7.5\n296,516,7.0\n296,517,6.5\n296,518,6.0\n296,519,5.5\n296,520,5.0\n296,521,4.5\n296,522,5.0\n296,523,5.5\n296,524,6.0\n296,525,15.5\n296,526,15.0\n296,527,14.5\n296,528,14.0\n296,529,13.5\n296,530,13.0\n296,531,12.5\n296,532,12.0\n296,533,11.5\n296,534,11.0\n296,535,10.5\n296,536,10.0\n296,537,9.5\n296,538,9.0\n296,539,8.5\n296,540,8.0\n296,541,7.5\n296,542,7.0\n296,543,6.5\n296,544,6.0\n296,545,5.5\n296,546,5.0\n296,547,5.5\n296,548,6.0\n296,549,6.5\n296,550,16.0\n296,551,15.5\n296,552,15.0\n296,553,14.5\n296,554,14.0\n296,555,13.5\n296,556,13.0\n296,557,12.5\n296,558,12.0\n296,559,11.5\n296,560,11.0\n296,561,10.5\n296,562,10.0\n296,563,9.5\n296,564,9.0\n296,565,8.5\n296,566,8.0\n296,567,7.5\n296,568,7.0\n296,569,6.5\n296,570,6.0\n296,571,5.5\n296,572,6.0\n296,573,6.5\n296,574,7.0\n296,575,16.5\n296,576,16.0\n296,577,15.5\n296,578,15.0\n296,579,14.5\n296,580,14.0\n296,581,13.5\n296,582,13.0\n296,583,12.5\n296,584,12.0\n296,585,11.5\n296,586,11.0\n296,587,10.5\n296,588,10.0\n296,589,9.5\n296,590,9.0\n296,591,8.5\n296,592,8.0\n296,593,7.5\n296,594,7.0\n296,595,6.5\n296,596,6.0\n296,597,6.5\n296,598,7.0\n296,599,7.5\n296,600,17.0\n296,601,16.5\n296,602,16.0\n296,603,15.5\n296,604,15.0\n296,605,14.5\n296,606,14.0\n296,607,13.5\n296,608,13.0\n296,609,12.5\n296,610,12.0\n296,611,11.5\n296,612,11.0\n296,613,10.5\n296,614,10.0\n296,615,9.5\n296,616,9.0\n296,617,8.5\n296,618,8.0\n296,619,7.5\n296,620,7.0\n296,621,6.5\n296,622,7.0\n296,623,7.5\n296,624,8.0\n297,0,16.5\n297,1,16.0\n297,2,15.5\n297,3,15.0\n297,4,14.5\n297,5,14.0\n297,6,13.5\n297,7,13.0\n297,8,12.5\n297,9,12.0\n297,10,11.5\n297,11,11.0\n297,12,10.5\n297,13,10.0\n297,14,9.5\n297,15,9.0\n297,16,8.5\n297,17,8.0\n297,18,7.5\n297,19,7.0\n297,20,6.5\n297,21,6.0\n297,22,5.5\n297,23,6.0\n297,24,6.5\n297,25,16.0\n297,26,15.5\n297,27,15.0\n297,28,14.5\n297,29,14.0\n297,30,13.5\n297,31,13.0\n297,32,12.5\n297,33,12.0\n297,34,11.5\n297,35,11.0\n297,36,10.5\n297,37,10.0\n297,38,9.5\n297,39,9.0\n297,40,8.5\n297,41,8.0\n297,42,7.5\n297,43,7.0\n297,44,6.5\n297,45,6.0\n297,46,5.5\n297,47,5.0\n297,48,5.5\n297,49,6.0\n297,50,15.5\n297,51,15.0\n297,52,14.5\n297,53,14.0\n297,54,13.5\n297,55,13.0\n297,56,12.5\n297,57,12.0\n297,58,11.5\n297,59,11.0\n297,60,10.5\n297,61,10.0\n297,62,9.5\n297,63,9.0\n297,64,8.5\n297,65,8.0\n297,66,7.5\n297,67,7.0\n297,68,6.5\n297,69,6.0\n297,70,5.5\n297,71,5.0\n297,72,4.5\n297,73,5.0\n297,74,5.5\n297,75,15.0\n297,76,14.5\n297,77,14.0\n297,78,13.5\n297,79,13.0\n297,80,12.5\n297,81,12.0\n297,82,11.5\n297,83,11.0\n297,84,10.5\n297,85,10.0\n297,86,9.5\n297,87,9.0\n297,88,8.5\n297,89,8.0\n297,90,7.5\n297,91,7.0\n297,92,6.5\n297,93,6.0\n297,94,5.5\n297,95,5.0\n297,96,4.5\n297,97,4.0\n297,98,4.5\n297,99,5.0\n297,100,14.5\n297,101,14.0\n297,102,13.5\n297,103,13.0\n297,104,12.5\n297,105,12.0\n297,106,11.5\n297,107,11.0\n297,108,10.5\n297,109,10.0\n297,110,9.5\n297,111,9.0\n297,112,8.5\n297,113,8.0\n297,114,7.5\n297,115,7.0\n297,116,6.5\n297,117,6.0\n297,118,5.5\n297,119,5.0\n297,120,4.5\n297,121,4.0\n297,122,3.5\n297,123,4.0\n297,124,4.5\n297,125,14.0\n297,126,13.5\n297,127,13.0\n297,128,12.5\n297,129,12.0\n297,130,11.5\n297,131,11.0\n297,132,10.5\n297,133,10.0\n297,134,9.5\n297,135,9.0\n297,136,8.5\n297,137,8.0\n297,138,7.5\n297,139,7.0\n297,140,6.5\n297,141,6.0\n297,142,5.5\n297,143,5.0\n297,144,4.5\n297,145,4.0\n297,146,3.5\n297,147,3.0\n297,148,3.5\n297,149,4.0\n297,150,13.5\n297,151,13.0\n297,152,12.5\n297,153,12.0\n297,154,11.5\n297,155,11.0\n297,156,10.5\n297,157,10.0\n297,158,9.5\n297,159,9.0\n297,160,8.5\n297,161,8.0\n297,162,7.5\n297,163,7.0\n297,164,6.5\n297,165,6.0\n297,166,5.5\n297,167,5.0\n297,168,4.5\n297,169,4.0\n297,170,3.5\n297,171,3.0\n297,172,2.5\n297,173,3.0\n297,174,3.5\n297,175,13.0\n297,176,12.5\n297,177,12.0\n297,178,11.5\n297,179,11.0\n297,180,10.5\n297,181,10.0\n297,182,9.5\n297,183,9.0\n297,184,8.5\n297,185,8.0\n297,186,7.5\n297,187,7.0\n297,188,6.5\n297,189,6.0\n297,190,5.5\n297,191,5.0\n297,192,4.5\n297,193,4.0\n297,194,3.5\n297,195,3.0\n297,196,2.5\n297,197,2.0\n297,198,2.5\n297,199,3.0\n297,200,12.5\n297,201,12.0\n297,202,11.5\n297,203,11.0\n297,204,10.5\n297,205,10.0\n297,206,9.5\n297,207,9.0\n297,208,8.5\n297,209,8.0\n297,210,7.5\n297,211,7.0\n297,212,6.5\n297,213,6.0\n297,214,5.5\n297,215,5.0\n297,216,4.5\n297,217,4.0\n297,218,3.5\n297,219,3.0\n297,220,2.5\n297,221,2.0\n297,222,1.5\n297,223,2.0\n297,224,2.5\n297,225,12.0\n297,226,11.5\n297,227,11.0\n297,228,10.5\n297,229,10.0\n297,230,9.5\n297,231,9.0\n297,232,8.5\n297,233,8.0\n297,234,7.5\n297,235,7.0\n297,236,6.5\n297,237,6.0\n297,238,5.5\n297,239,5.0\n297,240,4.5\n297,241,4.0\n297,242,3.5\n297,243,3.0\n297,244,2.5\n297,245,2.0\n297,246,1.5\n297,247,1.0\n297,248,1.5\n297,249,2.0\n297,250,11.5\n297,251,11.0\n297,252,10.5\n297,253,10.0\n297,254,9.5\n297,255,9.0\n297,256,8.5\n297,257,8.0\n297,258,7.5\n297,259,7.0\n297,260,6.5\n297,261,6.0\n297,262,5.5\n297,263,5.0\n297,264,4.5\n297,265,4.0\n297,266,3.5\n297,267,3.0\n297,268,2.5\n297,269,2.0\n297,270,1.5\n297,271,1.0\n297,272,0.5\n297,273,1.0\n297,274,1.5\n297,275,11.0\n297,276,10.5\n297,277,10.0\n297,278,9.5\n297,279,9.0\n297,280,8.5\n297,281,8.0\n297,282,7.5\n297,283,7.0\n297,284,6.5\n297,285,6.0\n297,286,5.5\n297,287,5.0\n297,288,4.5\n297,289,4.0\n297,290,3.5\n297,291,3.0\n297,292,2.5\n297,293,2.0\n297,294,1.5\n297,295,1.0\n297,296,0.5\n297,297,0\n297,298,0.5\n297,299,1.0\n297,300,11.5\n297,301,11.0\n297,302,10.5\n297,303,10.0\n297,304,9.5\n297,305,9.0\n297,306,8.5\n297,307,8.0\n297,308,7.5\n297,309,7.0\n297,310,6.5\n297,311,6.0\n297,312,5.5\n297,313,5.0\n297,314,4.5\n297,315,4.0\n297,316,3.5\n297,317,3.0\n297,318,2.5\n297,319,2.0\n297,320,1.5\n297,321,1.0\n297,322,0.5\n297,323,1.0\n297,324,1.5\n297,325,12.0\n297,326,11.5\n297,327,11.0\n297,328,10.5\n297,329,10.0\n297,330,9.5\n297,331,9.0\n297,332,8.5\n297,333,8.0\n297,334,7.5\n297,335,7.0\n297,336,6.5\n297,337,6.0\n297,338,5.5\n297,339,5.0\n297,340,4.5\n297,341,4.0\n297,342,3.5\n297,343,3.0\n297,344,2.5\n297,345,2.0\n297,346,1.5\n297,347,1.0\n297,348,1.5\n297,349,2.0\n297,350,12.5\n297,351,12.0\n297,352,11.5\n297,353,11.0\n297,354,10.5\n297,355,10.0\n297,356,9.5\n297,357,9.0\n297,358,8.5\n297,359,8.0\n297,360,7.5\n297,361,7.0\n297,362,6.5\n297,363,6.0\n297,364,5.5\n297,365,5.0\n297,366,4.5\n297,367,4.0\n297,368,3.5\n297,369,3.0\n297,370,2.5\n297,371,2.0\n297,372,1.5\n297,373,2.0\n297,374,2.5\n297,375,13.0\n297,376,12.5\n297,377,12.0\n297,378,11.5\n297,379,11.0\n297,380,10.5\n297,381,10.0\n297,382,9.5\n297,383,9.0\n297,384,8.5\n297,385,8.0\n297,386,7.5\n297,387,7.0\n297,388,6.5\n297,389,6.0\n297,390,5.5\n297,391,5.0\n297,392,4.5\n297,393,4.0\n297,394,3.5\n297,395,3.0\n297,396,2.5\n297,397,2.0\n297,398,2.5\n297,399,3.0\n297,400,13.5\n297,401,13.0\n297,402,12.5\n297,403,12.0\n297,404,11.5\n297,405,11.0\n297,406,10.5\n297,407,10.0\n297,408,9.5\n297,409,9.0\n297,410,8.5\n297,411,8.0\n297,412,7.5\n297,413,7.0\n297,414,6.5\n297,415,6.0\n297,416,5.5\n297,417,5.0\n297,418,4.5\n297,419,4.0\n297,420,3.5\n297,421,3.0\n297,422,2.5\n297,423,3.0\n297,424,3.5\n297,425,14.0\n297,426,13.5\n297,427,13.0\n297,428,12.5\n297,429,12.0\n297,430,11.5\n297,431,11.0\n297,432,10.5\n297,433,10.0\n297,434,9.5\n297,435,9.0\n297,436,8.5\n297,437,8.0\n297,438,7.5\n297,439,7.0\n297,440,6.5\n297,441,6.0\n297,442,5.5\n297,443,5.0\n297,444,4.5\n297,445,4.0\n297,446,3.5\n297,447,3.0\n297,448,3.5\n297,449,4.0\n297,450,14.5\n297,451,14.0\n297,452,13.5\n297,453,13.0\n297,454,12.5\n297,455,12.0\n297,456,11.5\n297,457,11.0\n297,458,10.5\n297,459,10.0\n297,460,9.5\n297,461,9.0\n297,462,8.5\n297,463,8.0\n297,464,7.5\n297,465,7.0\n297,466,6.5\n297,467,6.0\n297,468,5.5\n297,469,5.0\n297,470,4.5\n297,471,4.0\n297,472,3.5\n297,473,4.0\n297,474,4.5\n297,475,15.0\n297,476,14.5\n297,477,14.0\n297,478,13.5\n297,479,13.0\n297,480,12.5\n297,481,12.0\n297,482,11.5\n297,483,11.0\n297,484,10.5\n297,485,10.0\n297,486,9.5\n297,487,9.0\n297,488,8.5\n297,489,8.0\n297,490,7.5\n297,491,7.0\n297,492,6.5\n297,493,6.0\n297,494,5.5\n297,495,5.0\n297,496,4.5\n297,497,4.0\n297,498,4.5\n297,499,5.0\n297,500,15.5\n297,501,15.0\n297,502,14.5\n297,503,14.0\n297,504,13.5\n297,505,13.0\n297,506,12.5\n297,507,12.0\n297,508,11.5\n297,509,11.0\n297,510,10.5\n297,511,10.0\n297,512,9.5\n297,513,9.0\n297,514,8.5\n297,515,8.0\n297,516,7.5\n297,517,7.0\n297,518,6.5\n297,519,6.0\n297,520,5.5\n297,521,5.0\n297,522,4.5\n297,523,5.0\n297,524,5.5\n297,525,16.0\n297,526,15.5\n297,527,15.0\n297,528,14.5\n297,529,14.0\n297,530,13.5\n297,531,13.0\n297,532,12.5\n297,533,12.0\n297,534,11.5\n297,535,11.0\n297,536,10.5\n297,537,10.0\n297,538,9.5\n297,539,9.0\n297,540,8.5\n297,541,8.0\n297,542,7.5\n297,543,7.0\n297,544,6.5\n297,545,6.0\n297,546,5.5\n297,547,5.0\n297,548,5.5\n297,549,6.0\n297,550,16.5\n297,551,16.0\n297,552,15.5\n297,553,15.0\n297,554,14.5\n297,555,14.0\n297,556,13.5\n297,557,13.0\n297,558,12.5\n297,559,12.0\n297,560,11.5\n297,561,11.0\n297,562,10.5\n297,563,10.0\n297,564,9.5\n297,565,9.0\n297,566,8.5\n297,567,8.0\n297,568,7.5\n297,569,7.0\n297,570,6.5\n297,571,6.0\n297,572,5.5\n297,573,6.0\n297,574,6.5\n297,575,17.0\n297,576,16.5\n297,577,16.0\n297,578,15.5\n297,579,15.0\n297,580,14.5\n297,581,14.0\n297,582,13.5\n297,583,13.0\n297,584,12.5\n297,585,12.0\n297,586,11.5\n297,587,11.0\n297,588,10.5\n297,589,10.0\n297,590,9.5\n297,591,9.0\n297,592,8.5\n297,593,8.0\n297,594,7.5\n297,595,7.0\n297,596,6.5\n297,597,6.0\n297,598,6.5\n297,599,7.0\n297,600,17.5\n297,601,17.0\n297,602,16.5\n297,603,16.0\n297,604,15.5\n297,605,15.0\n297,606,14.5\n297,607,14.0\n297,608,13.5\n297,609,13.0\n297,610,12.5\n297,611,12.0\n297,612,11.5\n297,613,11.0\n297,614,10.5\n297,615,10.0\n297,616,9.5\n297,617,9.0\n297,618,8.5\n297,619,8.0\n297,620,7.5\n297,621,7.0\n297,622,6.5\n297,623,7.0\n297,624,7.5\n298,0,17.0\n298,1,16.5\n298,2,16.0\n298,3,15.5\n298,4,15.0\n298,5,14.5\n298,6,14.0\n298,7,13.5\n298,8,13.0\n298,9,12.5\n298,10,12.0\n298,11,11.5\n298,12,11.0\n298,13,10.5\n298,14,10.0\n298,15,9.5\n298,16,9.0\n298,17,8.5\n298,18,8.0\n298,19,7.5\n298,20,7.0\n298,21,6.5\n298,22,6.0\n298,23,5.5\n298,24,6.0\n298,25,16.5\n298,26,16.0\n298,27,15.5\n298,28,15.0\n298,29,14.5\n298,30,14.0\n298,31,13.5\n298,32,13.0\n298,33,12.5\n298,34,12.0\n298,35,11.5\n298,36,11.0\n298,37,10.5\n298,38,10.0\n298,39,9.5\n298,40,9.0\n298,41,8.5\n298,42,8.0\n298,43,7.5\n298,44,7.0\n298,45,6.5\n298,46,6.0\n298,47,5.5\n298,48,5.0\n298,49,5.5\n298,50,16.0\n298,51,15.5\n298,52,15.0\n298,53,14.5\n298,54,14.0\n298,55,13.5\n298,56,13.0\n298,57,12.5\n298,58,12.0\n298,59,11.5\n298,60,11.0\n298,61,10.5\n298,62,10.0\n298,63,9.5\n298,64,9.0\n298,65,8.5\n298,66,8.0\n298,67,7.5\n298,68,7.0\n298,69,6.5\n298,70,6.0\n298,71,5.5\n298,72,5.0\n298,73,4.5\n298,74,5.0\n298,75,15.5\n298,76,15.0\n298,77,14.5\n298,78,14.0\n298,79,13.5\n298,80,13.0\n298,81,12.5\n298,82,12.0\n298,83,11.5\n298,84,11.0\n298,85,10.5\n298,86,10.0\n298,87,9.5\n298,88,9.0\n298,89,8.5\n298,90,8.0\n298,91,7.5\n298,92,7.0\n298,93,6.5\n298,94,6.0\n298,95,5.5\n298,96,5.0\n298,97,4.5\n298,98,4.0\n298,99,4.5\n298,100,15.0\n298,101,14.5\n298,102,14.0\n298,103,13.5\n298,104,13.0\n298,105,12.5\n298,106,12.0\n298,107,11.5\n298,108,11.0\n298,109,10.5\n298,110,10.0\n298,111,9.5\n298,112,9.0\n298,113,8.5\n298,114,8.0\n298,115,7.5\n298,116,7.0\n298,117,6.5\n298,118,6.0\n298,119,5.5\n298,120,5.0\n298,121,4.5\n298,122,4.0\n298,123,3.5\n298,124,4.0\n298,125,14.5\n298,126,14.0\n298,127,13.5\n298,128,13.0\n298,129,12.5\n298,130,12.0\n298,131,11.5\n298,132,11.0\n298,133,10.5\n298,134,10.0\n298,135,9.5\n298,136,9.0\n298,137,8.5\n298,138,8.0\n298,139,7.5\n298,140,7.0\n298,141,6.5\n298,142,6.0\n298,143,5.5\n298,144,5.0\n298,145,4.5\n298,146,4.0\n298,147,3.5\n298,148,3.0\n298,149,3.5\n298,150,14.0\n298,151,13.5\n298,152,13.0\n298,153,12.5\n298,154,12.0\n298,155,11.5\n298,156,11.0\n298,157,10.5\n298,158,10.0\n298,159,9.5\n298,160,9.0\n298,161,8.5\n298,162,8.0\n298,163,7.5\n298,164,7.0\n298,165,6.5\n298,166,6.0\n298,167,5.5\n298,168,5.0\n298,169,4.5\n298,170,4.0\n298,171,3.5\n298,172,3.0\n298,173,2.5\n298,174,3.0\n298,175,13.5\n298,176,13.0\n298,177,12.5\n298,178,12.0\n298,179,11.5\n298,180,11.0\n298,181,10.5\n298,182,10.0\n298,183,9.5\n298,184,9.0\n298,185,8.5\n298,186,8.0\n298,187,7.5\n298,188,7.0\n298,189,6.5\n298,190,6.0\n298,191,5.5\n298,192,5.0\n298,193,4.5\n298,194,4.0\n298,195,3.5\n298,196,3.0\n298,197,2.5\n298,198,2.0\n298,199,2.5\n298,200,13.0\n298,201,12.5\n298,202,12.0\n298,203,11.5\n298,204,11.0\n298,205,10.5\n298,206,10.0\n298,207,9.5\n298,208,9.0\n298,209,8.5\n298,210,8.0\n298,211,7.5\n298,212,7.0\n298,213,6.5\n298,214,6.0\n298,215,5.5\n298,216,5.0\n298,217,4.5\n298,218,4.0\n298,219,3.5\n298,220,3.0\n298,221,2.5\n298,222,2.0\n298,223,1.5\n298,224,2.0\n298,225,12.5\n298,226,12.0\n298,227,11.5\n298,228,11.0\n298,229,10.5\n298,230,10.0\n298,231,9.5\n298,232,9.0\n298,233,8.5\n298,234,8.0\n298,235,7.5\n298,236,7.0\n298,237,6.5\n298,238,6.0\n298,239,5.5\n298,240,5.0\n298,241,4.5\n298,242,4.0\n298,243,3.5\n298,244,3.0\n298,245,2.5\n298,246,2.0\n298,247,1.5\n298,248,1.0\n298,249,1.5\n298,250,12.0\n298,251,11.5\n298,252,11.0\n298,253,10.5\n298,254,10.0\n298,255,9.5\n298,256,9.0\n298,257,8.5\n298,258,8.0\n298,259,7.5\n298,260,7.0\n298,261,6.5\n298,262,6.0\n298,263,5.5\n298,264,5.0\n298,265,4.5\n298,266,4.0\n298,267,3.5\n298,268,3.0\n298,269,2.5\n298,270,2.0\n298,271,1.5\n298,272,1.0\n298,273,0.5\n298,274,1.0\n298,275,11.5\n298,276,11.0\n298,277,10.5\n298,278,10.0\n298,279,9.5\n298,280,9.0\n298,281,8.5\n298,282,8.0\n298,283,7.5\n298,284,7.0\n298,285,6.5\n298,286,6.0\n298,287,5.5\n298,288,5.0\n298,289,4.5\n298,290,4.0\n298,291,3.5\n298,292,3.0\n298,293,2.5\n298,294,2.0\n298,295,1.5\n298,296,1.0\n298,297,0.5\n298,298,0\n298,299,0.5\n298,300,12.0\n298,301,11.5\n298,302,11.0\n298,303,10.5\n298,304,10.0\n298,305,9.5\n298,306,9.0\n298,307,8.5\n298,308,8.0\n298,309,7.5\n298,310,7.0\n298,311,6.5\n298,312,6.0\n298,313,5.5\n298,314,5.0\n298,315,4.5\n298,316,4.0\n298,317,3.5\n298,318,3.0\n298,319,2.5\n298,320,2.0\n298,321,1.5\n298,322,1.0\n298,323,0.5\n298,324,1.0\n298,325,12.5\n298,326,12.0\n298,327,11.5\n298,328,11.0\n298,329,10.5\n298,330,10.0\n298,331,9.5\n298,332,9.0\n298,333,8.5\n298,334,8.0\n298,335,7.5\n298,336,7.0\n298,337,6.5\n298,338,6.0\n298,339,5.5\n298,340,5.0\n298,341,4.5\n298,342,4.0\n298,343,3.5\n298,344,3.0\n298,345,2.5\n298,346,2.0\n298,347,1.5\n298,348,1.0\n298,349,1.5\n298,350,13.0\n298,351,12.5\n298,352,12.0\n298,353,11.5\n298,354,11.0\n298,355,10.5\n298,356,10.0\n298,357,9.5\n298,358,9.0\n298,359,8.5\n298,360,8.0\n298,361,7.5\n298,362,7.0\n298,363,6.5\n298,364,6.0\n298,365,5.5\n298,366,5.0\n298,367,4.5\n298,368,4.0\n298,369,3.5\n298,370,3.0\n298,371,2.5\n298,372,2.0\n298,373,1.5\n298,374,2.0\n298,375,13.5\n298,376,13.0\n298,377,12.5\n298,378,12.0\n298,379,11.5\n298,380,11.0\n298,381,10.5\n298,382,10.0\n298,383,9.5\n298,384,9.0\n298,385,8.5\n298,386,8.0\n298,387,7.5\n298,388,7.0\n298,389,6.5\n298,390,6.0\n298,391,5.5\n298,392,5.0\n298,393,4.5\n298,394,4.0\n298,395,3.5\n298,396,3.0\n298,397,2.5\n298,398,2.0\n298,399,2.5\n298,400,14.0\n298,401,13.5\n298,402,13.0\n298,403,12.5\n298,404,12.0\n298,405,11.5\n298,406,11.0\n298,407,10.5\n298,408,10.0\n298,409,9.5\n298,410,9.0\n298,411,8.5\n298,412,8.0\n298,413,7.5\n298,414,7.0\n298,415,6.5\n298,416,6.0\n298,417,5.5\n298,418,5.0\n298,419,4.5\n298,420,4.0\n298,421,3.5\n298,422,3.0\n298,423,2.5\n298,424,3.0\n298,425,14.5\n298,426,14.0\n298,427,13.5\n298,428,13.0\n298,429,12.5\n298,430,12.0\n298,431,11.5\n298,432,11.0\n298,433,10.5\n298,434,10.0\n298,435,9.5\n298,436,9.0\n298,437,8.5\n298,438,8.0\n298,439,7.5\n298,440,7.0\n298,441,6.5\n298,442,6.0\n298,443,5.5\n298,444,5.0\n298,445,4.5\n298,446,4.0\n298,447,3.5\n298,448,3.0\n298,449,3.5\n298,450,15.0\n298,451,14.5\n298,452,14.0\n298,453,13.5\n298,454,13.0\n298,455,12.5\n298,456,12.0\n298,457,11.5\n298,458,11.0\n298,459,10.5\n298,460,10.0\n298,461,9.5\n298,462,9.0\n298,463,8.5\n298,464,8.0\n298,465,7.5\n298,466,7.0\n298,467,6.5\n298,468,6.0\n298,469,5.5\n298,470,5.0\n298,471,4.5\n298,472,4.0\n298,473,3.5\n298,474,4.0\n298,475,15.5\n298,476,15.0\n298,477,14.5\n298,478,14.0\n298,479,13.5\n298,480,13.0\n298,481,12.5\n298,482,12.0\n298,483,11.5\n298,484,11.0\n298,485,10.5\n298,486,10.0\n298,487,9.5\n298,488,9.0\n298,489,8.5\n298,490,8.0\n298,491,7.5\n298,492,7.0\n298,493,6.5\n298,494,6.0\n298,495,5.5\n298,496,5.0\n298,497,4.5\n298,498,4.0\n298,499,4.5\n298,500,16.0\n298,501,15.5\n298,502,15.0\n298,503,14.5\n298,504,14.0\n298,505,13.5\n298,506,13.0\n298,507,12.5\n298,508,12.0\n298,509,11.5\n298,510,11.0\n298,511,10.5\n298,512,10.0\n298,513,9.5\n298,514,9.0\n298,515,8.5\n298,516,8.0\n298,517,7.5\n298,518,7.0\n298,519,6.5\n298,520,6.0\n298,521,5.5\n298,522,5.0\n298,523,4.5\n298,524,5.0\n298,525,16.5\n298,526,16.0\n298,527,15.5\n298,528,15.0\n298,529,14.5\n298,530,14.0\n298,531,13.5\n298,532,13.0\n298,533,12.5\n298,534,12.0\n298,535,11.5\n298,536,11.0\n298,537,10.5\n298,538,10.0\n298,539,9.5\n298,540,9.0\n298,541,8.5\n298,542,8.0\n298,543,7.5\n298,544,7.0\n298,545,6.5\n298,546,6.0\n298,547,5.5\n298,548,5.0\n298,549,5.5\n298,550,17.0\n298,551,16.5\n298,552,16.0\n298,553,15.5\n298,554,15.0\n298,555,14.5\n298,556,14.0\n298,557,13.5\n298,558,13.0\n298,559,12.5\n298,560,12.0\n298,561,11.5\n298,562,11.0\n298,563,10.5\n298,564,10.0\n298,565,9.5\n298,566,9.0\n298,567,8.5\n298,568,8.0\n298,569,7.5\n298,570,7.0\n298,571,6.5\n298,572,6.0\n298,573,5.5\n298,574,6.0\n298,575,17.5\n298,576,17.0\n298,577,16.5\n298,578,16.0\n298,579,15.5\n298,580,15.0\n298,581,14.5\n298,582,14.0\n298,583,13.5\n298,584,13.0\n298,585,12.5\n298,586,12.0\n298,587,11.5\n298,588,11.0\n298,589,10.5\n298,590,10.0\n298,591,9.5\n298,592,9.0\n298,593,8.5\n298,594,8.0\n298,595,7.5\n298,596,7.0\n298,597,6.5\n298,598,6.0\n298,599,6.5\n298,600,18.0\n298,601,17.5\n298,602,17.0\n298,603,16.5\n298,604,16.0\n298,605,15.5\n298,606,15.0\n298,607,14.5\n298,608,14.0\n298,609,13.5\n298,610,13.0\n298,611,12.5\n298,612,12.0\n298,613,11.5\n298,614,11.0\n298,615,10.5\n298,616,10.0\n298,617,9.5\n298,618,9.0\n298,619,8.5\n298,620,8.0\n298,621,7.5\n298,622,7.0\n298,623,6.5\n298,624,7.0\n299,0,17.5\n299,1,17.0\n299,2,16.5\n299,3,16.0\n299,4,15.5\n299,5,15.0\n299,6,14.5\n299,7,14.0\n299,8,13.5\n299,9,13.0\n299,10,12.5\n299,11,12.0\n299,12,11.5\n299,13,11.0\n299,14,10.5\n299,15,10.0\n299,16,9.5\n299,17,9.0\n299,18,8.5\n299,19,8.0\n299,20,7.5\n299,21,7.0\n299,22,6.5\n299,23,6.0\n299,24,5.5\n299,25,17.0\n299,26,16.5\n299,27,16.0\n299,28,15.5\n299,29,15.0\n299,30,14.5\n299,31,14.0\n299,32,13.5\n299,33,13.0\n299,34,12.5\n299,35,12.0\n299,36,11.5\n299,37,11.0\n299,38,10.5\n299,39,10.0\n299,40,9.5\n299,41,9.0\n299,42,8.5\n299,43,8.0\n299,44,7.5\n299,45,7.0\n299,46,6.5\n299,47,6.0\n299,48,5.5\n299,49,5.0\n299,50,16.5\n299,51,16.0\n299,52,15.5\n299,53,15.0\n299,54,14.5\n299,55,14.0\n299,56,13.5\n299,57,13.0\n299,58,12.5\n299,59,12.0\n299,60,11.5\n299,61,11.0\n299,62,10.5\n299,63,10.0\n299,64,9.5\n299,65,9.0\n299,66,8.5\n299,67,8.0\n299,68,7.5\n299,69,7.0\n299,70,6.5\n299,71,6.0\n299,72,5.5\n299,73,5.0\n299,74,4.5\n299,75,16.0\n299,76,15.5\n299,77,15.0\n299,78,14.5\n299,79,14.0\n299,80,13.5\n299,81,13.0\n299,82,12.5\n299,83,12.0\n299,84,11.5\n299,85,11.0\n299,86,10.5\n299,87,10.0\n299,88,9.5\n299,89,9.0\n299,90,8.5\n299,91,8.0\n299,92,7.5\n299,93,7.0\n299,94,6.5\n299,95,6.0\n299,96,5.5\n299,97,5.0\n299,98,4.5\n299,99,4.0\n299,100,15.5\n299,101,15.0\n299,102,14.5\n299,103,14.0\n299,104,13.5\n299,105,13.0\n299,106,12.5\n299,107,12.0\n299,108,11.5\n299,109,11.0\n299,110,10.5\n299,111,10.0\n299,112,9.5\n299,113,9.0\n299,114,8.5\n299,115,8.0\n299,116,7.5\n299,117,7.0\n299,118,6.5\n299,119,6.0\n299,120,5.5\n299,121,5.0\n299,122,4.5\n299,123,4.0\n299,124,3.5\n299,125,15.0\n299,126,14.5\n299,127,14.0\n299,128,13.5\n299,129,13.0\n299,130,12.5\n299,131,12.0\n299,132,11.5\n299,133,11.0\n299,134,10.5\n299,135,10.0\n299,136,9.5\n299,137,9.0\n299,138,8.5\n299,139,8.0\n299,140,7.5\n299,141,7.0\n299,142,6.5\n299,143,6.0\n299,144,5.5\n299,145,5.0\n299,146,4.5\n299,147,4.0\n299,148,3.5\n299,149,3.0\n299,150,14.5\n299,151,14.0\n299,152,13.5\n299,153,13.0\n299,154,12.5\n299,155,12.0\n299,156,11.5\n299,157,11.0\n299,158,10.5\n299,159,10.0\n299,160,9.5\n299,161,9.0\n299,162,8.5\n299,163,8.0\n299,164,7.5\n299,165,7.0\n299,166,6.5\n299,167,6.0\n299,168,5.5\n299,169,5.0\n299,170,4.5\n299,171,4.0\n299,172,3.5\n299,173,3.0\n299,174,2.5\n299,175,14.0\n299,176,13.5\n299,177,13.0\n299,178,12.5\n299,179,12.0\n299,180,11.5\n299,181,11.0\n299,182,10.5\n299,183,10.0\n299,184,9.5\n299,185,9.0\n299,186,8.5\n299,187,8.0\n299,188,7.5\n299,189,7.0\n299,190,6.5\n299,191,6.0\n299,192,5.5\n299,193,5.0\n299,194,4.5\n299,195,4.0\n299,196,3.5\n299,197,3.0\n299,198,2.5\n299,199,2.0\n299,200,13.5\n299,201,13.0\n299,202,12.5\n299,203,12.0\n299,204,11.5\n299,205,11.0\n299,206,10.5\n299,207,10.0\n299,208,9.5\n299,209,9.0\n299,210,8.5\n299,211,8.0\n299,212,7.5\n299,213,7.0\n299,214,6.5\n299,215,6.0\n299,216,5.5\n299,217,5.0\n299,218,4.5\n299,219,4.0\n299,220,3.5\n299,221,3.0\n299,222,2.5\n299,223,2.0\n299,224,1.5\n299,225,13.0\n299,226,12.5\n299,227,12.0\n299,228,11.5\n299,229,11.0\n299,230,10.5\n299,231,10.0\n299,232,9.5\n299,233,9.0\n299,234,8.5\n299,235,8.0\n299,236,7.5\n299,237,7.0\n299,238,6.5\n299,239,6.0\n299,240,5.5\n299,241,5.0\n299,242,4.5\n299,243,4.0\n299,244,3.5\n299,245,3.0\n299,246,2.5\n299,247,2.0\n299,248,1.5\n299,249,1.0\n299,250,12.5\n299,251,12.0\n299,252,11.5\n299,253,11.0\n299,254,10.5\n299,255,10.0\n299,256,9.5\n299,257,9.0\n299,258,8.5\n299,259,8.0\n299,260,7.5\n299,261,7.0\n299,262,6.5\n299,263,6.0\n299,264,5.5\n299,265,5.0\n299,266,4.5\n299,267,4.0\n299,268,3.5\n299,269,3.0\n299,270,2.5\n299,271,2.0\n299,272,1.5\n299,273,1.0\n299,274,0.5\n299,275,12.0\n299,276,11.5\n299,277,11.0\n299,278,10.5\n299,279,10.0\n299,280,9.5\n299,281,9.0\n299,282,8.5\n299,283,8.0\n299,284,7.5\n299,285,7.0\n299,286,6.5\n299,287,6.0\n299,288,5.5\n299,289,5.0\n299,290,4.5\n299,291,4.0\n299,292,3.5\n299,293,3.0\n299,294,2.5\n299,295,2.0\n299,296,1.5\n299,297,1.0\n299,298,0.5\n299,299,0\n299,300,12.5\n299,301,12.0\n299,302,11.5\n299,303,11.0\n299,304,10.5\n299,305,10.0\n299,306,9.5\n299,307,9.0\n299,308,8.5\n299,309,8.0\n299,310,7.5\n299,311,7.0\n299,312,6.5\n299,313,6.0\n299,314,5.5\n299,315,5.0\n299,316,4.5\n299,317,4.0\n299,318,3.5\n299,319,3.0\n299,320,2.5\n299,321,2.0\n299,322,1.5\n299,323,1.0\n299,324,0.5\n299,325,13.0\n299,326,12.5\n299,327,12.0\n299,328,11.5\n299,329,11.0\n299,330,10.5\n299,331,10.0\n299,332,9.5\n299,333,9.0\n299,334,8.5\n299,335,8.0\n299,336,7.5\n299,337,7.0\n299,338,6.5\n299,339,6.0\n299,340,5.5\n299,341,5.0\n299,342,4.5\n299,343,4.0\n299,344,3.5\n299,345,3.0\n299,346,2.5\n299,347,2.0\n299,348,1.5\n299,349,1.0\n299,350,13.5\n299,351,13.0\n299,352,12.5\n299,353,12.0\n299,354,11.5\n299,355,11.0\n299,356,10.5\n299,357,10.0\n299,358,9.5\n299,359,9.0\n299,360,8.5\n299,361,8.0\n299,362,7.5\n299,363,7.0\n299,364,6.5\n299,365,6.0\n299,366,5.5\n299,367,5.0\n299,368,4.5\n299,369,4.0\n299,370,3.5\n299,371,3.0\n299,372,2.5\n299,373,2.0\n299,374,1.5\n299,375,14.0\n299,376,13.5\n299,377,13.0\n299,378,12.5\n299,379,12.0\n299,380,11.5\n299,381,11.0\n299,382,10.5\n299,383,10.0\n299,384,9.5\n299,385,9.0\n299,386,8.5\n299,387,8.0\n299,388,7.5\n299,389,7.0\n299,390,6.5\n299,391,6.0\n299,392,5.5\n299,393,5.0\n299,394,4.5\n299,395,4.0\n299,396,3.5\n299,397,3.0\n299,398,2.5\n299,399,2.0\n299,400,14.5\n299,401,14.0\n299,402,13.5\n299,403,13.0\n299,404,12.5\n299,405,12.0\n299,406,11.5\n299,407,11.0\n299,408,10.5\n299,409,10.0\n299,410,9.5\n299,411,9.0\n299,412,8.5\n299,413,8.0\n299,414,7.5\n299,415,7.0\n299,416,6.5\n299,417,6.0\n299,418,5.5\n299,419,5.0\n299,420,4.5\n299,421,4.0\n299,422,3.5\n299,423,3.0\n299,424,2.5\n299,425,15.0\n299,426,14.5\n299,427,14.0\n299,428,13.5\n299,429,13.0\n299,430,12.5\n299,431,12.0\n299,432,11.5\n299,433,11.0\n299,434,10.5\n299,435,10.0\n299,436,9.5\n299,437,9.0\n299,438,8.5\n299,439,8.0\n299,440,7.5\n299,441,7.0\n299,442,6.5\n299,443,6.0\n299,444,5.5\n299,445,5.0\n299,446,4.5\n299,447,4.0\n299,448,3.5\n299,449,3.0\n299,450,15.5\n299,451,15.0\n299,452,14.5\n299,453,14.0\n299,454,13.5\n299,455,13.0\n299,456,12.5\n299,457,12.0\n299,458,11.5\n299,459,11.0\n299,460,10.5\n299,461,10.0\n299,462,9.5\n299,463,9.0\n299,464,8.5\n299,465,8.0\n299,466,7.5\n299,467,7.0\n299,468,6.5\n299,469,6.0\n299,470,5.5\n299,471,5.0\n299,472,4.5\n299,473,4.0\n299,474,3.5\n299,475,16.0\n299,476,15.5\n299,477,15.0\n299,478,14.5\n299,479,14.0\n299,480,13.5\n299,481,13.0\n299,482,12.5\n299,483,12.0\n299,484,11.5\n299,485,11.0\n299,486,10.5\n299,487,10.0\n299,488,9.5\n299,489,9.0\n299,490,8.5\n299,491,8.0\n299,492,7.5\n299,493,7.0\n299,494,6.5\n299,495,6.0\n299,496,5.5\n299,497,5.0\n299,498,4.5\n299,499,4.0\n299,500,16.5\n299,501,16.0\n299,502,15.5\n299,503,15.0\n299,504,14.5\n299,505,14.0\n299,506,13.5\n299,507,13.0\n299,508,12.5\n299,509,12.0\n299,510,11.5\n299,511,11.0\n299,512,10.5\n299,513,10.0\n299,514,9.5\n299,515,9.0\n299,516,8.5\n299,517,8.0\n299,518,7.5\n299,519,7.0\n299,520,6.5\n299,521,6.0\n299,522,5.5\n299,523,5.0\n299,524,4.5\n299,525,17.0\n299,526,16.5\n299,527,16.0\n299,528,15.5\n299,529,15.0\n299,530,14.5\n299,531,14.0\n299,532,13.5\n299,533,13.0\n299,534,12.5\n299,535,12.0\n299,536,11.5\n299,537,11.0\n299,538,10.5\n299,539,10.0\n299,540,9.5\n299,541,9.0\n299,542,8.5\n299,543,8.0\n299,544,7.5\n299,545,7.0\n299,546,6.5\n299,547,6.0\n299,548,5.5\n299,549,5.0\n299,550,17.5\n299,551,17.0\n299,552,16.5\n299,553,16.0\n299,554,15.5\n299,555,15.0\n299,556,14.5\n299,557,14.0\n299,558,13.5\n299,559,13.0\n299,560,12.5\n299,561,12.0\n299,562,11.5\n299,563,11.0\n299,564,10.5\n299,565,10.0\n299,566,9.5\n299,567,9.0\n299,568,8.5\n299,569,8.0\n299,570,7.5\n299,571,7.0\n299,572,6.5\n299,573,6.0\n299,574,5.5\n299,575,18.0\n299,576,17.5\n299,577,17.0\n299,578,16.5\n299,579,16.0\n299,580,15.5\n299,581,15.0\n299,582,14.5\n299,583,14.0\n299,584,13.5\n299,585,13.0\n299,586,12.5\n299,587,12.0\n299,588,11.5\n299,589,11.0\n299,590,10.5\n299,591,10.0\n299,592,9.5\n299,593,9.0\n299,594,8.5\n299,595,8.0\n299,596,7.5\n299,597,7.0\n299,598,6.5\n299,599,6.0\n299,600,18.5\n299,601,18.0\n299,602,17.5\n299,603,17.0\n299,604,16.5\n299,605,16.0\n299,606,15.5\n299,607,15.0\n299,608,14.5\n299,609,14.0\n299,610,13.5\n299,611,13.0\n299,612,12.5\n299,613,12.0\n299,614,11.5\n299,615,11.0\n299,616,10.5\n299,617,10.0\n299,618,9.5\n299,619,9.0\n299,620,8.5\n299,621,8.0\n299,622,7.5\n299,623,7.0\n299,624,6.5\n300,0,6.0\n300,1,6.5\n300,2,7.0\n300,3,7.5\n300,4,8.0\n300,5,8.5\n300,6,9.0\n300,7,9.5\n300,8,10.0\n300,9,10.5\n300,10,11.0\n300,11,11.5\n300,12,12.0\n300,13,12.5\n300,14,13.0\n300,15,13.5\n300,16,14.0\n300,17,14.5\n300,18,15.0\n300,19,15.5\n300,20,16.0\n300,21,16.5\n300,22,17.0\n300,23,17.5\n300,24,18.0\n300,25,5.5\n300,26,6.0\n300,27,6.5\n300,28,7.0\n300,29,7.5\n300,30,8.0\n300,31,8.5\n300,32,9.0\n300,33,9.5\n300,34,10.0\n300,35,10.5\n300,36,11.0\n300,37,11.5\n300,38,12.0\n300,39,12.5\n300,40,13.0\n300,41,13.5\n300,42,14.0\n300,43,14.5\n300,44,15.0\n300,45,15.5\n300,46,16.0\n300,47,16.5\n300,48,17.0\n300,49,17.5\n300,50,5.0\n300,51,5.5\n300,52,6.0\n300,53,6.5\n300,54,7.0\n300,55,7.5\n300,56,8.0\n300,57,8.5\n300,58,9.0\n300,59,9.5\n300,60,10.0\n300,61,10.5\n300,62,11.0\n300,63,11.5\n300,64,12.0\n300,65,12.5\n300,66,13.0\n300,67,13.5\n300,68,14.0\n300,69,14.5\n300,70,15.0\n300,71,15.5\n300,72,16.0\n300,73,16.5\n300,74,17.0\n300,75,4.5\n300,76,5.0\n300,77,5.5\n300,78,6.0\n300,79,6.5\n300,80,7.0\n300,81,7.5\n300,82,8.0\n300,83,8.5\n300,84,9.0\n300,85,9.5\n300,86,10.0\n300,87,10.5\n300,88,11.0\n300,89,11.5\n300,90,12.0\n300,91,12.5\n300,92,13.0\n300,93,13.5\n300,94,14.0\n300,95,14.5\n300,96,15.0\n300,97,15.5\n300,98,16.0\n300,99,16.5\n300,100,4.0\n300,101,4.5\n300,102,5.0\n300,103,5.5\n300,104,6.0\n300,105,6.5\n300,106,7.0\n300,107,7.5\n300,108,8.0\n300,109,8.5\n300,110,9.0\n300,111,9.5\n300,112,10.0\n300,113,10.5\n300,114,11.0\n300,115,11.5\n300,116,12.0\n300,117,12.5\n300,118,13.0\n300,119,13.5\n300,120,14.0\n300,121,14.5\n300,122,15.0\n300,123,15.5\n300,124,16.0\n300,125,3.5\n300,126,4.0\n300,127,4.5\n300,128,5.0\n300,129,5.5\n300,130,6.0\n300,131,6.5\n300,132,7.0\n300,133,7.5\n300,134,8.0\n300,135,8.5\n300,136,9.0\n300,137,9.5\n300,138,10.0\n300,139,10.5\n300,140,11.0\n300,141,11.5\n300,142,12.0\n300,143,12.5\n300,144,13.0\n300,145,13.5\n300,146,14.0\n300,147,14.5\n300,148,15.0\n300,149,15.5\n300,150,3.0\n300,151,3.5\n300,152,4.0\n300,153,4.5\n300,154,5.0\n300,155,5.5\n300,156,6.0\n300,157,6.5\n300,158,7.0\n300,159,7.5\n300,160,8.0\n300,161,8.5\n300,162,9.0\n300,163,9.5\n300,164,10.0\n300,165,10.5\n300,166,11.0\n300,167,11.5\n300,168,12.0\n300,169,12.5\n300,170,13.0\n300,171,13.5\n300,172,14.0\n300,173,14.5\n300,174,15.0\n300,175,2.5\n300,176,3.0\n300,177,3.5\n300,178,4.0\n300,179,4.5\n300,180,5.0\n300,181,5.5\n300,182,6.0\n300,183,6.5\n300,184,7.0\n300,185,7.5\n300,186,8.0\n300,187,8.5\n300,188,9.0\n300,189,9.5\n300,190,10.0\n300,191,10.5\n300,192,11.0\n300,193,11.5\n300,194,12.0\n300,195,12.5\n300,196,13.0\n300,197,13.5\n300,198,14.0\n300,199,14.5\n300,200,2.0\n300,201,2.5\n300,202,3.0\n300,203,3.5\n300,204,4.0\n300,205,4.5\n300,206,5.0\n300,207,5.5\n300,208,6.0\n300,209,6.5\n300,210,7.0\n300,211,7.5\n300,212,8.0\n300,213,8.5\n300,214,9.0\n300,215,9.5\n300,216,10.0\n300,217,10.5\n300,218,11.0\n300,219,11.5\n300,220,12.0\n300,221,12.5\n300,222,13.0\n300,223,13.5\n300,224,14.0\n300,225,1.5\n300,226,2.0\n300,227,2.5\n300,228,3.0\n300,229,3.5\n300,230,4.0\n300,231,4.5\n300,232,5.0\n300,233,5.5\n300,234,6.0\n300,235,6.5\n300,236,7.0\n300,237,7.5\n300,238,8.0\n300,239,8.5\n300,240,9.0\n300,241,9.5\n300,242,10.0\n300,243,10.5\n300,244,11.0\n300,245,11.5\n300,246,12.0\n300,247,12.5\n300,248,13.0\n300,249,13.5\n300,250,1.0\n300,251,1.5\n300,252,2.0\n300,253,2.5\n300,254,3.0\n300,255,3.5\n300,256,4.0\n300,257,4.5\n300,258,5.0\n300,259,5.5\n300,260,6.0\n300,261,6.5\n300,262,7.0\n300,263,7.5\n300,264,8.0\n300,265,8.5\n300,266,9.0\n300,267,9.5\n300,268,10.0\n300,269,10.5\n300,270,11.0\n300,271,11.5\n300,272,12.0\n300,273,12.5\n300,274,13.0\n300,275,0.5\n300,276,1.0\n300,277,1.5\n300,278,2.0\n300,279,2.5\n300,280,3.0\n300,281,3.5\n300,282,4.0\n300,283,4.5\n300,284,5.0\n300,285,5.5\n300,286,6.0\n300,287,6.5\n300,288,7.0\n300,289,7.5\n300,290,8.0\n300,291,8.5\n300,292,9.0\n300,293,9.5\n300,294,10.0\n300,295,10.5\n300,296,11.0\n300,297,11.5\n300,298,12.0\n300,299,12.5\n300,300,0\n300,301,0.5\n300,302,1.0\n300,303,1.5\n300,304,2.0\n300,305,2.5\n300,306,3.0\n300,307,3.5\n300,308,4.0\n300,309,4.5\n300,310,5.0\n300,311,5.5\n300,312,6.0\n300,313,6.5\n300,314,7.0\n300,315,7.5\n300,316,8.0\n300,317,8.5\n300,318,9.0\n300,319,9.5\n300,320,10.0\n300,321,10.5\n300,322,11.0\n300,323,11.5\n300,324,12.0\n300,325,0.5\n300,326,1.0\n300,327,1.5\n300,328,2.0\n300,329,2.5\n300,330,3.0\n300,331,3.5\n300,332,4.0\n300,333,4.5\n300,334,5.0\n300,335,5.5\n300,336,6.0\n300,337,6.5\n300,338,7.0\n300,339,7.5\n300,340,8.0\n300,341,8.5\n300,342,9.0\n300,343,9.5\n300,344,10.0\n300,345,10.5\n300,346,11.0\n300,347,11.5\n300,348,12.0\n300,349,12.5\n300,350,1.0\n300,351,1.5\n300,352,2.0\n300,353,2.5\n300,354,3.0\n300,355,3.5\n300,356,4.0\n300,357,4.5\n300,358,5.0\n300,359,5.5\n300,360,6.0\n300,361,6.5\n300,362,7.0\n300,363,7.5\n300,364,8.0\n300,365,8.5\n300,366,9.0\n300,367,9.5\n300,368,10.0\n300,369,10.5\n300,370,11.0\n300,371,11.5\n300,372,12.0\n300,373,12.5\n300,374,13.0\n300,375,1.5\n300,376,2.0\n300,377,2.5\n300,378,3.0\n300,379,3.5\n300,380,4.0\n300,381,4.5\n300,382,5.0\n300,383,5.5\n300,384,6.0\n300,385,6.5\n300,386,7.0\n300,387,7.5\n300,388,8.0\n300,389,8.5\n300,390,9.0\n300,391,9.5\n300,392,10.0\n300,393,10.5\n300,394,11.0\n300,395,11.5\n300,396,12.0\n300,397,12.5\n300,398,13.0\n300,399,13.5\n300,400,2.0\n300,401,2.5\n300,402,3.0\n300,403,3.5\n300,404,4.0\n300,405,4.5\n300,406,5.0\n300,407,5.5\n300,408,6.0\n300,409,6.5\n300,410,7.0\n300,411,7.5\n300,412,8.0\n300,413,8.5\n300,414,9.0\n300,415,9.5\n300,416,10.0\n300,417,10.5\n300,418,11.0\n300,419,11.5\n300,420,12.0\n300,421,12.5\n300,422,13.0\n300,423,13.5\n300,424,14.0\n300,425,2.5\n300,426,3.0\n300,427,3.5\n300,428,4.0\n300,429,4.5\n300,430,5.0\n300,431,5.5\n300,432,6.0\n300,433,6.5\n300,434,7.0\n300,435,7.5\n300,436,8.0\n300,437,8.5\n300,438,9.0\n300,439,9.5\n300,440,10.0\n300,441,10.5\n300,442,11.0\n300,443,11.5\n300,444,12.0\n300,445,12.5\n300,446,13.0\n300,447,13.5\n300,448,14.0\n300,449,14.5\n300,450,3.0\n300,451,3.5\n300,452,4.0\n300,453,4.5\n300,454,5.0\n300,455,5.5\n300,456,6.0\n300,457,6.5\n300,458,7.0\n300,459,7.5\n300,460,8.0\n300,461,8.5\n300,462,9.0\n300,463,9.5\n300,464,10.0\n300,465,10.5\n300,466,11.0\n300,467,11.5\n300,468,12.0\n300,469,12.5\n300,470,13.0\n300,471,13.5\n300,472,14.0\n300,473,14.5\n300,474,15.0\n300,475,3.5\n300,476,4.0\n300,477,4.5\n300,478,5.0\n300,479,5.5\n300,480,6.0\n300,481,6.5\n300,482,7.0\n300,483,7.5\n300,484,8.0\n300,485,8.5\n300,486,9.0\n300,487,9.5\n300,488,10.0\n300,489,10.5\n300,490,11.0\n300,491,11.5\n300,492,12.0\n300,493,12.5\n300,494,13.0\n300,495,13.5\n300,496,14.0\n300,497,14.5\n300,498,15.0\n300,499,15.5\n300,500,4.0\n300,501,4.5\n300,502,5.0\n300,503,5.5\n300,504,6.0\n300,505,6.5\n300,506,7.0\n300,507,7.5\n300,508,8.0\n300,509,8.5\n300,510,9.0\n300,511,9.5\n300,512,10.0\n300,513,10.5\n300,514,11.0\n300,515,11.5\n300,516,12.0\n300,517,12.5\n300,518,13.0\n300,519,13.5\n300,520,14.0\n300,521,14.5\n300,522,15.0\n300,523,15.5\n300,524,16.0\n300,525,4.5\n300,526,5.0\n300,527,5.5\n300,528,6.0\n300,529,6.5\n300,530,7.0\n300,531,7.5\n300,532,8.0\n300,533,8.5\n300,534,9.0\n300,535,9.5\n300,536,10.0\n300,537,10.5\n300,538,11.0\n300,539,11.5\n300,540,12.0\n300,541,12.5\n300,542,13.0\n300,543,13.5\n300,544,14.0\n300,545,14.5\n300,546,15.0\n300,547,15.5\n300,548,16.0\n300,549,16.5\n300,550,5.0\n300,551,5.5\n300,552,6.0\n300,553,6.5\n300,554,7.0\n300,555,7.5\n300,556,8.0\n300,557,8.5\n300,558,9.0\n300,559,9.5\n300,560,10.0\n300,561,10.5\n300,562,11.0\n300,563,11.5\n300,564,12.0\n300,565,12.5\n300,566,13.0\n300,567,13.5\n300,568,14.0\n300,569,14.5\n300,570,15.0\n300,571,15.5\n300,572,16.0\n300,573,16.5\n300,574,17.0\n300,575,5.5\n300,576,6.0\n300,577,6.5\n300,578,7.0\n300,579,7.5\n300,580,8.0\n300,581,8.5\n300,582,9.0\n300,583,9.5\n300,584,10.0\n300,585,10.5\n300,586,11.0\n300,587,11.5\n300,588,12.0\n300,589,12.5\n300,590,13.0\n300,591,13.5\n300,592,14.0\n300,593,14.5\n300,594,15.0\n300,595,15.5\n300,596,16.0\n300,597,16.5\n300,598,17.0\n300,599,17.5\n300,600,6.0\n300,601,6.5\n300,602,7.0\n300,603,7.5\n300,604,8.0\n300,605,8.5\n300,606,9.0\n300,607,9.5\n300,608,10.0\n300,609,10.5\n300,610,11.0\n300,611,11.5\n300,612,12.0\n300,613,12.5\n300,614,13.0\n300,615,13.5\n300,616,14.0\n300,617,14.5\n300,618,15.0\n300,619,15.5\n300,620,16.0\n300,621,16.5\n300,622,17.0\n300,623,17.5\n300,624,18.0\n301,0,6.5\n301,1,6.0\n301,2,6.5\n301,3,7.0\n301,4,7.5\n301,5,8.0\n301,6,8.5\n301,7,9.0\n301,8,9.5\n301,9,10.0\n301,10,10.5\n301,11,11.0\n301,12,11.5\n301,13,12.0\n301,14,12.5\n301,15,13.0\n301,16,13.5\n301,17,14.0\n301,18,14.5\n301,19,15.0\n301,20,15.5\n301,21,16.0\n301,22,16.5\n301,23,17.0\n301,24,17.5\n301,25,6.0\n301,26,5.5\n301,27,6.0\n301,28,6.5\n301,29,7.0\n301,30,7.5\n301,31,8.0\n301,32,8.5\n301,33,9.0\n301,34,9.5\n301,35,10.0\n301,36,10.5\n301,37,11.0\n301,38,11.5\n301,39,12.0\n301,40,12.5\n301,41,13.0\n301,42,13.5\n301,43,14.0\n301,44,14.5\n301,45,15.0\n301,46,15.5\n301,47,16.0\n301,48,16.5\n301,49,17.0\n301,50,5.5\n301,51,5.0\n301,52,5.5\n301,53,6.0\n301,54,6.5\n301,55,7.0\n301,56,7.5\n301,57,8.0\n301,58,8.5\n301,59,9.0\n301,60,9.5\n301,61,10.0\n301,62,10.5\n301,63,11.0\n301,64,11.5\n301,65,12.0\n301,66,12.5\n301,67,13.0\n301,68,13.5\n301,69,14.0\n301,70,14.5\n301,71,15.0\n301,72,15.5\n301,73,16.0\n301,74,16.5\n301,75,5.0\n301,76,4.5\n301,77,5.0\n301,78,5.5\n301,79,6.0\n301,80,6.5\n301,81,7.0\n301,82,7.5\n301,83,8.0\n301,84,8.5\n301,85,9.0\n301,86,9.5\n301,87,10.0\n301,88,10.5\n301,89,11.0\n301,90,11.5\n301,91,12.0\n301,92,12.5\n301,93,13.0\n301,94,13.5\n301,95,14.0\n301,96,14.5\n301,97,15.0\n301,98,15.5\n301,99,16.0\n301,100,4.5\n301,101,4.0\n301,102,4.5\n301,103,5.0\n301,104,5.5\n301,105,6.0\n301,106,6.5\n301,107,7.0\n301,108,7.5\n301,109,8.0\n301,110,8.5\n301,111,9.0\n301,112,9.5\n301,113,10.0\n301,114,10.5\n301,115,11.0\n301,116,11.5\n301,117,12.0\n301,118,12.5\n301,119,13.0\n301,120,13.5\n301,121,14.0\n301,122,14.5\n301,123,15.0\n301,124,15.5\n301,125,4.0\n301,126,3.5\n301,127,4.0\n301,128,4.5\n301,129,5.0\n301,130,5.5\n301,131,6.0\n301,132,6.5\n301,133,7.0\n301,134,7.5\n301,135,8.0\n301,136,8.5\n301,137,9.0\n301,138,9.5\n301,139,10.0\n301,140,10.5\n301,141,11.0\n301,142,11.5\n301,143,12.0\n301,144,12.5\n301,145,13.0\n301,146,13.5\n301,147,14.0\n301,148,14.5\n301,149,15.0\n301,150,3.5\n301,151,3.0\n301,152,3.5\n301,153,4.0\n301,154,4.5\n301,155,5.0\n301,156,5.5\n301,157,6.0\n301,158,6.5\n301,159,7.0\n301,160,7.5\n301,161,8.0\n301,162,8.5\n301,163,9.0\n301,164,9.5\n301,165,10.0\n301,166,10.5\n301,167,11.0\n301,168,11.5\n301,169,12.0\n301,170,12.5\n301,171,13.0\n301,172,13.5\n301,173,14.0\n301,174,14.5\n301,175,3.0\n301,176,2.5\n301,177,3.0\n301,178,3.5\n301,179,4.0\n301,180,4.5\n301,181,5.0\n301,182,5.5\n301,183,6.0\n301,184,6.5\n301,185,7.0\n301,186,7.5\n301,187,8.0\n301,188,8.5\n301,189,9.0\n301,190,9.5\n301,191,10.0\n301,192,10.5\n301,193,11.0\n301,194,11.5\n301,195,12.0\n301,196,12.5\n301,197,13.0\n301,198,13.5\n301,199,14.0\n301,200,2.5\n301,201,2.0\n301,202,2.5\n301,203,3.0\n301,204,3.5\n301,205,4.0\n301,206,4.5\n301,207,5.0\n301,208,5.5\n301,209,6.0\n301,210,6.5\n301,211,7.0\n301,212,7.5\n301,213,8.0\n301,214,8.5\n301,215,9.0\n301,216,9.5\n301,217,10.0\n301,218,10.5\n301,219,11.0\n301,220,11.5\n301,221,12.0\n301,222,12.5\n301,223,13.0\n301,224,13.5\n301,225,2.0\n301,226,1.5\n301,227,2.0\n301,228,2.5\n301,229,3.0\n301,230,3.5\n301,231,4.0\n301,232,4.5\n301,233,5.0\n301,234,5.5\n301,235,6.0\n301,236,6.5\n301,237,7.0\n301,238,7.5\n301,239,8.0\n301,240,8.5\n301,241,9.0\n301,242,9.5\n301,243,10.0\n301,244,10.5\n301,245,11.0\n301,246,11.5\n301,247,12.0\n301,248,12.5\n301,249,13.0\n301,250,1.5\n301,251,1.0\n301,252,1.5\n301,253,2.0\n301,254,2.5\n301,255,3.0\n301,256,3.5\n301,257,4.0\n301,258,4.5\n301,259,5.0\n301,260,5.5\n301,261,6.0\n301,262,6.5\n301,263,7.0\n301,264,7.5\n301,265,8.0\n301,266,8.5\n301,267,9.0\n301,268,9.5\n301,269,10.0\n301,270,10.5\n301,271,11.0\n301,272,11.5\n301,273,12.0\n301,274,12.5\n301,275,1.0\n301,276,0.5\n301,277,1.0\n301,278,1.5\n301,279,2.0\n301,280,2.5\n301,281,3.0\n301,282,3.5\n301,283,4.0\n301,284,4.5\n301,285,5.0\n301,286,5.5\n301,287,6.0\n301,288,6.5\n301,289,7.0\n301,290,7.5\n301,291,8.0\n301,292,8.5\n301,293,9.0\n301,294,9.5\n301,295,10.0\n301,296,10.5\n301,297,11.0\n301,298,11.5\n301,299,12.0\n301,300,0.5\n301,301,0\n301,302,0.5\n301,303,1.0\n301,304,1.5\n301,305,2.0\n301,306,2.5\n301,307,3.0\n301,308,3.5\n301,309,4.0\n301,310,4.5\n301,311,5.0\n301,312,5.5\n301,313,6.0\n301,314,6.5\n301,315,7.0\n301,316,7.5\n301,317,8.0\n301,318,8.5\n301,319,9.0\n301,320,9.5\n301,321,10.0\n301,322,10.5\n301,323,11.0\n301,324,11.5\n301,325,1.0\n301,326,0.5\n301,327,1.0\n301,328,1.5\n301,329,2.0\n301,330,2.5\n301,331,3.0\n301,332,3.5\n301,333,4.0\n301,334,4.5\n301,335,5.0\n301,336,5.5\n301,337,6.0\n301,338,6.5\n301,339,7.0\n301,340,7.5\n301,341,8.0\n301,342,8.5\n301,343,9.0\n301,344,9.5\n301,345,10.0\n301,346,10.5\n301,347,11.0\n301,348,11.5\n301,349,12.0\n301,350,1.5\n301,351,1.0\n301,352,1.5\n301,353,2.0\n301,354,2.5\n301,355,3.0\n301,356,3.5\n301,357,4.0\n301,358,4.5\n301,359,5.0\n301,360,5.5\n301,361,6.0\n301,362,6.5\n301,363,7.0\n301,364,7.5\n301,365,8.0\n301,366,8.5\n301,367,9.0\n301,368,9.5\n301,369,10.0\n301,370,10.5\n301,371,11.0\n301,372,11.5\n301,373,12.0\n301,374,12.5\n301,375,2.0\n301,376,1.5\n301,377,2.0\n301,378,2.5\n301,379,3.0\n301,380,3.5\n301,381,4.0\n301,382,4.5\n301,383,5.0\n301,384,5.5\n301,385,6.0\n301,386,6.5\n301,387,7.0\n301,388,7.5\n301,389,8.0\n301,390,8.5\n301,391,9.0\n301,392,9.5\n301,393,10.0\n301,394,10.5\n301,395,11.0\n301,396,11.5\n301,397,12.0\n301,398,12.5\n301,399,13.0\n301,400,2.5\n301,401,2.0\n301,402,2.5\n301,403,3.0\n301,404,3.5\n301,405,4.0\n301,406,4.5\n301,407,5.0\n301,408,5.5\n301,409,6.0\n301,410,6.5\n301,411,7.0\n301,412,7.5\n301,413,8.0\n301,414,8.5\n301,415,9.0\n301,416,9.5\n301,417,10.0\n301,418,10.5\n301,419,11.0\n301,420,11.5\n301,421,12.0\n301,422,12.5\n301,423,13.0\n301,424,13.5\n301,425,3.0\n301,426,2.5\n301,427,3.0\n301,428,3.5\n301,429,4.0\n301,430,4.5\n301,431,5.0\n301,432,5.5\n301,433,6.0\n301,434,6.5\n301,435,7.0\n301,436,7.5\n301,437,8.0\n301,438,8.5\n301,439,9.0\n301,440,9.5\n301,441,10.0\n301,442,10.5\n301,443,11.0\n301,444,11.5\n301,445,12.0\n301,446,12.5\n301,447,13.0\n301,448,13.5\n301,449,14.0\n301,450,3.5\n301,451,3.0\n301,452,3.5\n301,453,4.0\n301,454,4.5\n301,455,5.0\n301,456,5.5\n301,457,6.0\n301,458,6.5\n301,459,7.0\n301,460,7.5\n301,461,8.0\n301,462,8.5\n301,463,9.0\n301,464,9.5\n301,465,10.0\n301,466,10.5\n301,467,11.0\n301,468,11.5\n301,469,12.0\n301,470,12.5\n301,471,13.0\n301,472,13.5\n301,473,14.0\n301,474,14.5\n301,475,4.0\n301,476,3.5\n301,477,4.0\n301,478,4.5\n301,479,5.0\n301,480,5.5\n301,481,6.0\n301,482,6.5\n301,483,7.0\n301,484,7.5\n301,485,8.0\n301,486,8.5\n301,487,9.0\n301,488,9.5\n301,489,10.0\n301,490,10.5\n301,491,11.0\n301,492,11.5\n301,493,12.0\n301,494,12.5\n301,495,13.0\n301,496,13.5\n301,497,14.0\n301,498,14.5\n301,499,15.0\n301,500,4.5\n301,501,4.0\n301,502,4.5\n301,503,5.0\n301,504,5.5\n301,505,6.0\n301,506,6.5\n301,507,7.0\n301,508,7.5\n301,509,8.0\n301,510,8.5\n301,511,9.0\n301,512,9.5\n301,513,10.0\n301,514,10.5\n301,515,11.0\n301,516,11.5\n301,517,12.0\n301,518,12.5\n301,519,13.0\n301,520,13.5\n301,521,14.0\n301,522,14.5\n301,523,15.0\n301,524,15.5\n301,525,5.0\n301,526,4.5\n301,527,5.0\n301,528,5.5\n301,529,6.0\n301,530,6.5\n301,531,7.0\n301,532,7.5\n301,533,8.0\n301,534,8.5\n301,535,9.0\n301,536,9.5\n301,537,10.0\n301,538,10.5\n301,539,11.0\n301,540,11.5\n301,541,12.0\n301,542,12.5\n301,543,13.0\n301,544,13.5\n301,545,14.0\n301,546,14.5\n301,547,15.0\n301,548,15.5\n301,549,16.0\n301,550,5.5\n301,551,5.0\n301,552,5.5\n301,553,6.0\n301,554,6.5\n301,555,7.0\n301,556,7.5\n301,557,8.0\n301,558,8.5\n301,559,9.0\n301,560,9.5\n301,561,10.0\n301,562,10.5\n301,563,11.0\n301,564,11.5\n301,565,12.0\n301,566,12.5\n301,567,13.0\n301,568,13.5\n301,569,14.0\n301,570,14.5\n301,571,15.0\n301,572,15.5\n301,573,16.0\n301,574,16.5\n301,575,6.0\n301,576,5.5\n301,577,6.0\n301,578,6.5\n301,579,7.0\n301,580,7.5\n301,581,8.0\n301,582,8.5\n301,583,9.0\n301,584,9.5\n301,585,10.0\n301,586,10.5\n301,587,11.0\n301,588,11.5\n301,589,12.0\n301,590,12.5\n301,591,13.0\n301,592,13.5\n301,593,14.0\n301,594,14.5\n301,595,15.0\n301,596,15.5\n301,597,16.0\n301,598,16.5\n301,599,17.0\n301,600,6.5\n301,601,6.0\n301,602,6.5\n301,603,7.0\n301,604,7.5\n301,605,8.0\n301,606,8.5\n301,607,9.0\n301,608,9.5\n301,609,10.0\n301,610,10.5\n301,611,11.0\n301,612,11.5\n301,613,12.0\n301,614,12.5\n301,615,13.0\n301,616,13.5\n301,617,14.0\n301,618,14.5\n301,619,15.0\n301,620,15.5\n301,621,16.0\n301,622,16.5\n301,623,17.0\n301,624,17.5\n302,0,7.0\n302,1,6.5\n302,2,6.0\n302,3,6.5\n302,4,7.0\n302,5,7.5\n302,6,8.0\n302,7,8.5\n302,8,9.0\n302,9,9.5\n302,10,10.0\n302,11,10.5\n302,12,11.0\n302,13,11.5\n302,14,12.0\n302,15,12.5\n302,16,13.0\n302,17,13.5\n302,18,14.0\n302,19,14.5\n302,20,15.0\n302,21,15.5\n302,22,16.0\n302,23,16.5\n302,24,17.0\n302,25,6.5\n302,26,6.0\n302,27,5.5\n302,28,6.0\n302,29,6.5\n302,30,7.0\n302,31,7.5\n302,32,8.0\n302,33,8.5\n302,34,9.0\n302,35,9.5\n302,36,10.0\n302,37,10.5\n302,38,11.0\n302,39,11.5\n302,40,12.0\n302,41,12.5\n302,42,13.0\n302,43,13.5\n302,44,14.0\n302,45,14.5\n302,46,15.0\n302,47,15.5\n302,48,16.0\n302,49,16.5\n302,50,6.0\n302,51,5.5\n302,52,5.0\n302,53,5.5\n302,54,6.0\n302,55,6.5\n302,56,7.0\n302,57,7.5\n302,58,8.0\n302,59,8.5\n302,60,9.0\n302,61,9.5\n302,62,10.0\n302,63,10.5\n302,64,11.0\n302,65,11.5\n302,66,12.0\n302,67,12.5\n302,68,13.0\n302,69,13.5\n302,70,14.0\n302,71,14.5\n302,72,15.0\n302,73,15.5\n302,74,16.0\n302,75,5.5\n302,76,5.0\n302,77,4.5\n302,78,5.0\n302,79,5.5\n302,80,6.0\n302,81,6.5\n302,82,7.0\n302,83,7.5\n302,84,8.0\n302,85,8.5\n302,86,9.0\n302,87,9.5\n302,88,10.0\n302,89,10.5\n302,90,11.0\n302,91,11.5\n302,92,12.0\n302,93,12.5\n302,94,13.0\n302,95,13.5\n302,96,14.0\n302,97,14.5\n302,98,15.0\n302,99,15.5\n302,100,5.0\n302,101,4.5\n302,102,4.0\n302,103,4.5\n302,104,5.0\n302,105,5.5\n302,106,6.0\n302,107,6.5\n302,108,7.0\n302,109,7.5\n302,110,8.0\n302,111,8.5\n302,112,9.0\n302,113,9.5\n302,114,10.0\n302,115,10.5\n302,116,11.0\n302,117,11.5\n302,118,12.0\n302,119,12.5\n302,120,13.0\n302,121,13.5\n302,122,14.0\n302,123,14.5\n302,124,15.0\n302,125,4.5\n302,126,4.0\n302,127,3.5\n302,128,4.0\n302,129,4.5\n302,130,5.0\n302,131,5.5\n302,132,6.0\n302,133,6.5\n302,134,7.0\n302,135,7.5\n302,136,8.0\n302,137,8.5\n302,138,9.0\n302,139,9.5\n302,140,10.0\n302,141,10.5\n302,142,11.0\n302,143,11.5\n302,144,12.0\n302,145,12.5\n302,146,13.0\n302,147,13.5\n302,148,14.0\n302,149,14.5\n302,150,4.0\n302,151,3.5\n302,152,3.0\n302,153,3.5\n302,154,4.0\n302,155,4.5\n302,156,5.0\n302,157,5.5\n302,158,6.0\n302,159,6.5\n302,160,7.0\n302,161,7.5\n302,162,8.0\n302,163,8.5\n302,164,9.0\n302,165,9.5\n302,166,10.0\n302,167,10.5\n302,168,11.0\n302,169,11.5\n302,170,12.0\n302,171,12.5\n302,172,13.0\n302,173,13.5\n302,174,14.0\n302,175,3.5\n302,176,3.0\n302,177,2.5\n302,178,3.0\n302,179,3.5\n302,180,4.0\n302,181,4.5\n302,182,5.0\n302,183,5.5\n302,184,6.0\n302,185,6.5\n302,186,7.0\n302,187,7.5\n302,188,8.0\n302,189,8.5\n302,190,9.0\n302,191,9.5\n302,192,10.0\n302,193,10.5\n302,194,11.0\n302,195,11.5\n302,196,12.0\n302,197,12.5\n302,198,13.0\n302,199,13.5\n302,200,3.0\n302,201,2.5\n302,202,2.0\n302,203,2.5\n302,204,3.0\n302,205,3.5\n302,206,4.0\n302,207,4.5\n302,208,5.0\n302,209,5.5\n302,210,6.0\n302,211,6.5\n302,212,7.0\n302,213,7.5\n302,214,8.0\n302,215,8.5\n302,216,9.0\n302,217,9.5\n302,218,10.0\n302,219,10.5\n302,220,11.0\n302,221,11.5\n302,222,12.0\n302,223,12.5\n302,224,13.0\n302,225,2.5\n302,226,2.0\n302,227,1.5\n302,228,2.0\n302,229,2.5\n302,230,3.0\n302,231,3.5\n302,232,4.0\n302,233,4.5\n302,234,5.0\n302,235,5.5\n302,236,6.0\n302,237,6.5\n302,238,7.0\n302,239,7.5\n302,240,8.0\n302,241,8.5\n302,242,9.0\n302,243,9.5\n302,244,10.0\n302,245,10.5\n302,246,11.0\n302,247,11.5\n302,248,12.0\n302,249,12.5\n302,250,2.0\n302,251,1.5\n302,252,1.0\n302,253,1.5\n302,254,2.0\n302,255,2.5\n302,256,3.0\n302,257,3.5\n302,258,4.0\n302,259,4.5\n302,260,5.0\n302,261,5.5\n302,262,6.0\n302,263,6.5\n302,264,7.0\n302,265,7.5\n302,266,8.0\n302,267,8.5\n302,268,9.0\n302,269,9.5\n302,270,10.0\n302,271,10.5\n302,272,11.0\n302,273,11.5\n302,274,12.0\n302,275,1.5\n302,276,1.0\n302,277,0.5\n302,278,1.0\n302,279,1.5\n302,280,2.0\n302,281,2.5\n302,282,3.0\n302,283,3.5\n302,284,4.0\n302,285,4.5\n302,286,5.0\n302,287,5.5\n302,288,6.0\n302,289,6.5\n302,290,7.0\n302,291,7.5\n302,292,8.0\n302,293,8.5\n302,294,9.0\n302,295,9.5\n302,296,10.0\n302,297,10.5\n302,298,11.0\n302,299,11.5\n302,300,1.0\n302,301,0.5\n302,302,0\n302,303,0.5\n302,304,1.0\n302,305,1.5\n302,306,2.0\n302,307,2.5\n302,308,3.0\n302,309,3.5\n302,310,4.0\n302,311,4.5\n302,312,5.0\n302,313,5.5\n302,314,6.0\n302,315,6.5\n302,316,7.0\n302,317,7.5\n302,318,8.0\n302,319,8.5\n302,320,9.0\n302,321,9.5\n302,322,10.0\n302,323,10.5\n302,324,11.0\n302,325,1.5\n302,326,1.0\n302,327,0.5\n302,328,1.0\n302,329,1.5\n302,330,2.0\n302,331,2.5\n302,332,3.0\n302,333,3.5\n302,334,4.0\n302,335,4.5\n302,336,5.0\n302,337,5.5\n302,338,6.0\n302,339,6.5\n302,340,7.0\n302,341,7.5\n302,342,8.0\n302,343,8.5\n302,344,9.0\n302,345,9.5\n302,346,10.0\n302,347,10.5\n302,348,11.0\n302,349,11.5\n302,350,2.0\n302,351,1.5\n302,352,1.0\n302,353,1.5\n302,354,2.0\n302,355,2.5\n302,356,3.0\n302,357,3.5\n302,358,4.0\n302,359,4.5\n302,360,5.0\n302,361,5.5\n302,362,6.0\n302,363,6.5\n302,364,7.0\n302,365,7.5\n302,366,8.0\n302,367,8.5\n302,368,9.0\n302,369,9.5\n302,370,10.0\n302,371,10.5\n302,372,11.0\n302,373,11.5\n302,374,12.0\n302,375,2.5\n302,376,2.0\n302,377,1.5\n302,378,2.0\n302,379,2.5\n302,380,3.0\n302,381,3.5\n302,382,4.0\n302,383,4.5\n302,384,5.0\n302,385,5.5\n302,386,6.0\n302,387,6.5\n302,388,7.0\n302,389,7.5\n302,390,8.0\n302,391,8.5\n302,392,9.0\n302,393,9.5\n302,394,10.0\n302,395,10.5\n302,396,11.0\n302,397,11.5\n302,398,12.0\n302,399,12.5\n302,400,3.0\n302,401,2.5\n302,402,2.0\n302,403,2.5\n302,404,3.0\n302,405,3.5\n302,406,4.0\n302,407,4.5\n302,408,5.0\n302,409,5.5\n302,410,6.0\n302,411,6.5\n302,412,7.0\n302,413,7.5\n302,414,8.0\n302,415,8.5\n302,416,9.0\n302,417,9.5\n302,418,10.0\n302,419,10.5\n302,420,11.0\n302,421,11.5\n302,422,12.0\n302,423,12.5\n302,424,13.0\n302,425,3.5\n302,426,3.0\n302,427,2.5\n302,428,3.0\n302,429,3.5\n302,430,4.0\n302,431,4.5\n302,432,5.0\n302,433,5.5\n302,434,6.0\n302,435,6.5\n302,436,7.0\n302,437,7.5\n302,438,8.0\n302,439,8.5\n302,440,9.0\n302,441,9.5\n302,442,10.0\n302,443,10.5\n302,444,11.0\n302,445,11.5\n302,446,12.0\n302,447,12.5\n302,448,13.0\n302,449,13.5\n302,450,4.0\n302,451,3.5\n302,452,3.0\n302,453,3.5\n302,454,4.0\n302,455,4.5\n302,456,5.0\n302,457,5.5\n302,458,6.0\n302,459,6.5\n302,460,7.0\n302,461,7.5\n302,462,8.0\n302,463,8.5\n302,464,9.0\n302,465,9.5\n302,466,10.0\n302,467,10.5\n302,468,11.0\n302,469,11.5\n302,470,12.0\n302,471,12.5\n302,472,13.0\n302,473,13.5\n302,474,14.0\n302,475,4.5\n302,476,4.0\n302,477,3.5\n302,478,4.0\n302,479,4.5\n302,480,5.0\n302,481,5.5\n302,482,6.0\n302,483,6.5\n302,484,7.0\n302,485,7.5\n302,486,8.0\n302,487,8.5\n302,488,9.0\n302,489,9.5\n302,490,10.0\n302,491,10.5\n302,492,11.0\n302,493,11.5\n302,494,12.0\n302,495,12.5\n302,496,13.0\n302,497,13.5\n302,498,14.0\n302,499,14.5\n302,500,5.0\n302,501,4.5\n302,502,4.0\n302,503,4.5\n302,504,5.0\n302,505,5.5\n302,506,6.0\n302,507,6.5\n302,508,7.0\n302,509,7.5\n302,510,8.0\n302,511,8.5\n302,512,9.0\n302,513,9.5\n302,514,10.0\n302,515,10.5\n302,516,11.0\n302,517,11.5\n302,518,12.0\n302,519,12.5\n302,520,13.0\n302,521,13.5\n302,522,14.0\n302,523,14.5\n302,524,15.0\n302,525,5.5\n302,526,5.0\n302,527,4.5\n302,528,5.0\n302,529,5.5\n302,530,6.0\n302,531,6.5\n302,532,7.0\n302,533,7.5\n302,534,8.0\n302,535,8.5\n302,536,9.0\n302,537,9.5\n302,538,10.0\n302,539,10.5\n302,540,11.0\n302,541,11.5\n302,542,12.0\n302,543,12.5\n302,544,13.0\n302,545,13.5\n302,546,14.0\n302,547,14.5\n302,548,15.0\n302,549,15.5\n302,550,6.0\n302,551,5.5\n302,552,5.0\n302,553,5.5\n302,554,6.0\n302,555,6.5\n302,556,7.0\n302,557,7.5\n302,558,8.0\n302,559,8.5\n302,560,9.0\n302,561,9.5\n302,562,10.0\n302,563,10.5\n302,564,11.0\n302,565,11.5\n302,566,12.0\n302,567,12.5\n302,568,13.0\n302,569,13.5\n302,570,14.0\n302,571,14.5\n302,572,15.0\n302,573,15.5\n302,574,16.0\n302,575,6.5\n302,576,6.0\n302,577,5.5\n302,578,6.0\n302,579,6.5\n302,580,7.0\n302,581,7.5\n302,582,8.0\n302,583,8.5\n302,584,9.0\n302,585,9.5\n302,586,10.0\n302,587,10.5\n302,588,11.0\n302,589,11.5\n302,590,12.0\n302,591,12.5\n302,592,13.0\n302,593,13.5\n302,594,14.0\n302,595,14.5\n302,596,15.0\n302,597,15.5\n302,598,16.0\n302,599,16.5\n302,600,7.0\n302,601,6.5\n302,602,6.0\n302,603,6.5\n302,604,7.0\n302,605,7.5\n302,606,8.0\n302,607,8.5\n302,608,9.0\n302,609,9.5\n302,610,10.0\n302,611,10.5\n302,612,11.0\n302,613,11.5\n302,614,12.0\n302,615,12.5\n302,616,13.0\n302,617,13.5\n302,618,14.0\n302,619,14.5\n302,620,15.0\n302,621,15.5\n302,622,16.0\n302,623,16.5\n302,624,17.0\n303,0,7.5\n303,1,7.0\n303,2,6.5\n303,3,6.0\n303,4,6.5\n303,5,7.0\n303,6,7.5\n303,7,8.0\n303,8,8.5\n303,9,9.0\n303,10,9.5\n303,11,10.0\n303,12,10.5\n303,13,11.0\n303,14,11.5\n303,15,12.0\n303,16,12.5\n303,17,13.0\n303,18,13.5\n303,19,14.0\n303,20,14.5\n303,21,15.0\n303,22,15.5\n303,23,16.0\n303,24,16.5\n303,25,7.0\n303,26,6.5\n303,27,6.0\n303,28,5.5\n303,29,6.0\n303,30,6.5\n303,31,7.0\n303,32,7.5\n303,33,8.0\n303,34,8.5\n303,35,9.0\n303,36,9.5\n303,37,10.0\n303,38,10.5\n303,39,11.0\n303,40,11.5\n303,41,12.0\n303,42,12.5\n303,43,13.0\n303,44,13.5\n303,45,14.0\n303,46,14.5\n303,47,15.0\n303,48,15.5\n303,49,16.0\n303,50,6.5\n303,51,6.0\n303,52,5.5\n303,53,5.0\n303,54,5.5\n303,55,6.0\n303,56,6.5\n303,57,7.0\n303,58,7.5\n303,59,8.0\n303,60,8.5\n303,61,9.0\n303,62,9.5\n303,63,10.0\n303,64,10.5\n303,65,11.0\n303,66,11.5\n303,67,12.0\n303,68,12.5\n303,69,13.0\n303,70,13.5\n303,71,14.0\n303,72,14.5\n303,73,15.0\n303,74,15.5\n303,75,6.0\n303,76,5.5\n303,77,5.0\n303,78,4.5\n303,79,5.0\n303,80,5.5\n303,81,6.0\n303,82,6.5\n303,83,7.0\n303,84,7.5\n303,85,8.0\n303,86,8.5\n303,87,9.0\n303,88,9.5\n303,89,10.0\n303,90,10.5\n303,91,11.0\n303,92,11.5\n303,93,12.0\n303,94,12.5\n303,95,13.0\n303,96,13.5\n303,97,14.0\n303,98,14.5\n303,99,15.0\n303,100,5.5\n303,101,5.0\n303,102,4.5\n303,103,4.0\n303,104,4.5\n303,105,5.0\n303,106,5.5\n303,107,6.0\n303,108,6.5\n303,109,7.0\n303,110,7.5\n303,111,8.0\n303,112,8.5\n303,113,9.0\n303,114,9.5\n303,115,10.0\n303,116,10.5\n303,117,11.0\n303,118,11.5\n303,119,12.0\n303,120,12.5\n303,121,13.0\n303,122,13.5\n303,123,14.0\n303,124,14.5\n303,125,5.0\n303,126,4.5\n303,127,4.0\n303,128,3.5\n303,129,4.0\n303,130,4.5\n303,131,5.0\n303,132,5.5\n303,133,6.0\n303,134,6.5\n303,135,7.0\n303,136,7.5\n303,137,8.0\n303,138,8.5\n303,139,9.0\n303,140,9.5\n303,141,10.0\n303,142,10.5\n303,143,11.0\n303,144,11.5\n303,145,12.0\n303,146,12.5\n303,147,13.0\n303,148,13.5\n303,149,14.0\n303,150,4.5\n303,151,4.0\n303,152,3.5\n303,153,3.0\n303,154,3.5\n303,155,4.0\n303,156,4.5\n303,157,5.0\n303,158,5.5\n303,159,6.0\n303,160,6.5\n303,161,7.0\n303,162,7.5\n303,163,8.0\n303,164,8.5\n303,165,9.0\n303,166,9.5\n303,167,10.0\n303,168,10.5\n303,169,11.0\n303,170,11.5\n303,171,12.0\n303,172,12.5\n303,173,13.0\n303,174,13.5\n303,175,4.0\n303,176,3.5\n303,177,3.0\n303,178,2.5\n303,179,3.0\n303,180,3.5\n303,181,4.0\n303,182,4.5\n303,183,5.0\n303,184,5.5\n303,185,6.0\n303,186,6.5\n303,187,7.0\n303,188,7.5\n303,189,8.0\n303,190,8.5\n303,191,9.0\n303,192,9.5\n303,193,10.0\n303,194,10.5\n303,195,11.0\n303,196,11.5\n303,197,12.0\n303,198,12.5\n303,199,13.0\n303,200,3.5\n303,201,3.0\n303,202,2.5\n303,203,2.0\n303,204,2.5\n303,205,3.0\n303,206,3.5\n303,207,4.0\n303,208,4.5\n303,209,5.0\n303,210,5.5\n303,211,6.0\n303,212,6.5\n303,213,7.0\n303,214,7.5\n303,215,8.0\n303,216,8.5\n303,217,9.0\n303,218,9.5\n303,219,10.0\n303,220,10.5\n303,221,11.0\n303,222,11.5\n303,223,12.0\n303,224,12.5\n303,225,3.0\n303,226,2.5\n303,227,2.0\n303,228,1.5\n303,229,2.0\n303,230,2.5\n303,231,3.0\n303,232,3.5\n303,233,4.0\n303,234,4.5\n303,235,5.0\n303,236,5.5\n303,237,6.0\n303,238,6.5\n303,239,7.0\n303,240,7.5\n303,241,8.0\n303,242,8.5\n303,243,9.0\n303,244,9.5\n303,245,10.0\n303,246,10.5\n303,247,11.0\n303,248,11.5\n303,249,12.0\n303,250,2.5\n303,251,2.0\n303,252,1.5\n303,253,1.0\n303,254,1.5\n303,255,2.0\n303,256,2.5\n303,257,3.0\n303,258,3.5\n303,259,4.0\n303,260,4.5\n303,261,5.0\n303,262,5.5\n303,263,6.0\n303,264,6.5\n303,265,7.0\n303,266,7.5\n303,267,8.0\n303,268,8.5\n303,269,9.0\n303,270,9.5\n303,271,10.0\n303,272,10.5\n303,273,11.0\n303,274,11.5\n303,275,2.0\n303,276,1.5\n303,277,1.0\n303,278,0.5\n303,279,1.0\n303,280,1.5\n303,281,2.0\n303,282,2.5\n303,283,3.0\n303,284,3.5\n303,285,4.0\n303,286,4.5\n303,287,5.0\n303,288,5.5\n303,289,6.0\n303,290,6.5\n303,291,7.0\n303,292,7.5\n303,293,8.0\n303,294,8.5\n303,295,9.0\n303,296,9.5\n303,297,10.0\n303,298,10.5\n303,299,11.0\n303,300,1.5\n303,301,1.0\n303,302,0.5\n303,303,0\n303,304,0.5\n303,305,1.0\n303,306,1.5\n303,307,2.0\n303,308,2.5\n303,309,3.0\n303,310,3.5\n303,311,4.0\n303,312,4.5\n303,313,5.0\n303,314,5.5\n303,315,6.0\n303,316,6.5\n303,317,7.0\n303,318,7.5\n303,319,8.0\n303,320,8.5\n303,321,9.0\n303,322,9.5\n303,323,10.0\n303,324,10.5\n303,325,2.0\n303,326,1.5\n303,327,1.0\n303,328,0.5\n303,329,1.0\n303,330,1.5\n303,331,2.0\n303,332,2.5\n303,333,3.0\n303,334,3.5\n303,335,4.0\n303,336,4.5\n303,337,5.0\n303,338,5.5\n303,339,6.0\n303,340,6.5\n303,341,7.0\n303,342,7.5\n303,343,8.0\n303,344,8.5\n303,345,9.0\n303,346,9.5\n303,347,10.0\n303,348,10.5\n303,349,11.0\n303,350,2.5\n303,351,2.0\n303,352,1.5\n303,353,1.0\n303,354,1.5\n303,355,2.0\n303,356,2.5\n303,357,3.0\n303,358,3.5\n303,359,4.0\n303,360,4.5\n303,361,5.0\n303,362,5.5\n303,363,6.0\n303,364,6.5\n303,365,7.0\n303,366,7.5\n303,367,8.0\n303,368,8.5\n303,369,9.0\n303,370,9.5\n303,371,10.0\n303,372,10.5\n303,373,11.0\n303,374,11.5\n303,375,3.0\n303,376,2.5\n303,377,2.0\n303,378,1.5\n303,379,2.0\n303,380,2.5\n303,381,3.0\n303,382,3.5\n303,383,4.0\n303,384,4.5\n303,385,5.0\n303,386,5.5\n303,387,6.0\n303,388,6.5\n303,389,7.0\n303,390,7.5\n303,391,8.0\n303,392,8.5\n303,393,9.0\n303,394,9.5\n303,395,10.0\n303,396,10.5\n303,397,11.0\n303,398,11.5\n303,399,12.0\n303,400,3.5\n303,401,3.0\n303,402,2.5\n303,403,2.0\n303,404,2.5\n303,405,3.0\n303,406,3.5\n303,407,4.0\n303,408,4.5\n303,409,5.0\n303,410,5.5\n303,411,6.0\n303,412,6.5\n303,413,7.0\n303,414,7.5\n303,415,8.0\n303,416,8.5\n303,417,9.0\n303,418,9.5\n303,419,10.0\n303,420,10.5\n303,421,11.0\n303,422,11.5\n303,423,12.0\n303,424,12.5\n303,425,4.0\n303,426,3.5\n303,427,3.0\n303,428,2.5\n303,429,3.0\n303,430,3.5\n303,431,4.0\n303,432,4.5\n303,433,5.0\n303,434,5.5\n303,435,6.0\n303,436,6.5\n303,437,7.0\n303,438,7.5\n303,439,8.0\n303,440,8.5\n303,441,9.0\n303,442,9.5\n303,443,10.0\n303,444,10.5\n303,445,11.0\n303,446,11.5\n303,447,12.0\n303,448,12.5\n303,449,13.0\n303,450,4.5\n303,451,4.0\n303,452,3.5\n303,453,3.0\n303,454,3.5\n303,455,4.0\n303,456,4.5\n303,457,5.0\n303,458,5.5\n303,459,6.0\n303,460,6.5\n303,461,7.0\n303,462,7.5\n303,463,8.0\n303,464,8.5\n303,465,9.0\n303,466,9.5\n303,467,10.0\n303,468,10.5\n303,469,11.0\n303,470,11.5\n303,471,12.0\n303,472,12.5\n303,473,13.0\n303,474,13.5\n303,475,5.0\n303,476,4.5\n303,477,4.0\n303,478,3.5\n303,479,4.0\n303,480,4.5\n303,481,5.0\n303,482,5.5\n303,483,6.0\n303,484,6.5\n303,485,7.0\n303,486,7.5\n303,487,8.0\n303,488,8.5\n303,489,9.0\n303,490,9.5\n303,491,10.0\n303,492,10.5\n303,493,11.0\n303,494,11.5\n303,495,12.0\n303,496,12.5\n303,497,13.0\n303,498,13.5\n303,499,14.0\n303,500,5.5\n303,501,5.0\n303,502,4.5\n303,503,4.0\n303,504,4.5\n303,505,5.0\n303,506,5.5\n303,507,6.0\n303,508,6.5\n303,509,7.0\n303,510,7.5\n303,511,8.0\n303,512,8.5\n303,513,9.0\n303,514,9.5\n303,515,10.0\n303,516,10.5\n303,517,11.0\n303,518,11.5\n303,519,12.0\n303,520,12.5\n303,521,13.0\n303,522,13.5\n303,523,14.0\n303,524,14.5\n303,525,6.0\n303,526,5.5\n303,527,5.0\n303,528,4.5\n303,529,5.0\n303,530,5.5\n303,531,6.0\n303,532,6.5\n303,533,7.0\n303,534,7.5\n303,535,8.0\n303,536,8.5\n303,537,9.0\n303,538,9.5\n303,539,10.0\n303,540,10.5\n303,541,11.0\n303,542,11.5\n303,543,12.0\n303,544,12.5\n303,545,13.0\n303,546,13.5\n303,547,14.0\n303,548,14.5\n303,549,15.0\n303,550,6.5\n303,551,6.0\n303,552,5.5\n303,553,5.0\n303,554,5.5\n303,555,6.0\n303,556,6.5\n303,557,7.0\n303,558,7.5\n303,559,8.0\n303,560,8.5\n303,561,9.0\n303,562,9.5\n303,563,10.0\n303,564,10.5\n303,565,11.0\n303,566,11.5\n303,567,12.0\n303,568,12.5\n303,569,13.0\n303,570,13.5\n303,571,14.0\n303,572,14.5\n303,573,15.0\n303,574,15.5\n303,575,7.0\n303,576,6.5\n303,577,6.0\n303,578,5.5\n303,579,6.0\n303,580,6.5\n303,581,7.0\n303,582,7.5\n303,583,8.0\n303,584,8.5\n303,585,9.0\n303,586,9.5\n303,587,10.0\n303,588,10.5\n303,589,11.0\n303,590,11.5\n303,591,12.0\n303,592,12.5\n303,593,13.0\n303,594,13.5\n303,595,14.0\n303,596,14.5\n303,597,15.0\n303,598,15.5\n303,599,16.0\n303,600,7.5\n303,601,7.0\n303,602,6.5\n303,603,6.0\n303,604,6.5\n303,605,7.0\n303,606,7.5\n303,607,8.0\n303,608,8.5\n303,609,9.0\n303,610,9.5\n303,611,10.0\n303,612,10.5\n303,613,11.0\n303,614,11.5\n303,615,12.0\n303,616,12.5\n303,617,13.0\n303,618,13.5\n303,619,14.0\n303,620,14.5\n303,621,15.0\n303,622,15.5\n303,623,16.0\n303,624,16.5\n304,0,8.0\n304,1,7.5\n304,2,7.0\n304,3,6.5\n304,4,6.0\n304,5,6.5\n304,6,7.0\n304,7,7.5\n304,8,8.0\n304,9,8.5\n304,10,9.0\n304,11,9.5\n304,12,10.0\n304,13,10.5\n304,14,11.0\n304,15,11.5\n304,16,12.0\n304,17,12.5\n304,18,13.0\n304,19,13.5\n304,20,14.0\n304,21,14.5\n304,22,15.0\n304,23,15.5\n304,24,16.0\n304,25,7.5\n304,26,7.0\n304,27,6.5\n304,28,6.0\n304,29,5.5\n304,30,6.0\n304,31,6.5\n304,32,7.0\n304,33,7.5\n304,34,8.0\n304,35,8.5\n304,36,9.0\n304,37,9.5\n304,38,10.0\n304,39,10.5\n304,40,11.0\n304,41,11.5\n304,42,12.0\n304,43,12.5\n304,44,13.0\n304,45,13.5\n304,46,14.0\n304,47,14.5\n304,48,15.0\n304,49,15.5\n304,50,7.0\n304,51,6.5\n304,52,6.0\n304,53,5.5\n304,54,5.0\n304,55,5.5\n304,56,6.0\n304,57,6.5\n304,58,7.0\n304,59,7.5\n304,60,8.0\n304,61,8.5\n304,62,9.0\n304,63,9.5\n304,64,10.0\n304,65,10.5\n304,66,11.0\n304,67,11.5\n304,68,12.0\n304,69,12.5\n304,70,13.0\n304,71,13.5\n304,72,14.0\n304,73,14.5\n304,74,15.0\n304,75,6.5\n304,76,6.0\n304,77,5.5\n304,78,5.0\n304,79,4.5\n304,80,5.0\n304,81,5.5\n304,82,6.0\n304,83,6.5\n304,84,7.0\n304,85,7.5\n304,86,8.0\n304,87,8.5\n304,88,9.0\n304,89,9.5\n304,90,10.0\n304,91,10.5\n304,92,11.0\n304,93,11.5\n304,94,12.0\n304,95,12.5\n304,96,13.0\n304,97,13.5\n304,98,14.0\n304,99,14.5\n304,100,6.0\n304,101,5.5\n304,102,5.0\n304,103,4.5\n304,104,4.0\n304,105,4.5\n304,106,5.0\n304,107,5.5\n304,108,6.0\n304,109,6.5\n304,110,7.0\n304,111,7.5\n304,112,8.0\n304,113,8.5\n304,114,9.0\n304,115,9.5\n304,116,10.0\n304,117,10.5\n304,118,11.0\n304,119,11.5\n304,120,12.0\n304,121,12.5\n304,122,13.0\n304,123,13.5\n304,124,14.0\n304,125,5.5\n304,126,5.0\n304,127,4.5\n304,128,4.0\n304,129,3.5\n304,130,4.0\n304,131,4.5\n304,132,5.0\n304,133,5.5\n304,134,6.0\n304,135,6.5\n304,136,7.0\n304,137,7.5\n304,138,8.0\n304,139,8.5\n304,140,9.0\n304,141,9.5\n304,142,10.0\n304,143,10.5\n304,144,11.0\n304,145,11.5\n304,146,12.0\n304,147,12.5\n304,148,13.0\n304,149,13.5\n304,150,5.0\n304,151,4.5\n304,152,4.0\n304,153,3.5\n304,154,3.0\n304,155,3.5\n304,156,4.0\n304,157,4.5\n304,158,5.0\n304,159,5.5\n304,160,6.0\n304,161,6.5\n304,162,7.0\n304,163,7.5\n304,164,8.0\n304,165,8.5\n304,166,9.0\n304,167,9.5\n304,168,10.0\n304,169,10.5\n304,170,11.0\n304,171,11.5\n304,172,12.0\n304,173,12.5\n304,174,13.0\n304,175,4.5\n304,176,4.0\n304,177,3.5\n304,178,3.0\n304,179,2.5\n304,180,3.0\n304,181,3.5\n304,182,4.0\n304,183,4.5\n304,184,5.0\n304,185,5.5\n304,186,6.0\n304,187,6.5\n304,188,7.0\n304,189,7.5\n304,190,8.0\n304,191,8.5\n304,192,9.0\n304,193,9.5\n304,194,10.0\n304,195,10.5\n304,196,11.0\n304,197,11.5\n304,198,12.0\n304,199,12.5\n304,200,4.0\n304,201,3.5\n304,202,3.0\n304,203,2.5\n304,204,2.0\n304,205,2.5\n304,206,3.0\n304,207,3.5\n304,208,4.0\n304,209,4.5\n304,210,5.0\n304,211,5.5\n304,212,6.0\n304,213,6.5\n304,214,7.0\n304,215,7.5\n304,216,8.0\n304,217,8.5\n304,218,9.0\n304,219,9.5\n304,220,10.0\n304,221,10.5\n304,222,11.0\n304,223,11.5\n304,224,12.0\n304,225,3.5\n304,226,3.0\n304,227,2.5\n304,228,2.0\n304,229,1.5\n304,230,2.0\n304,231,2.5\n304,232,3.0\n304,233,3.5\n304,234,4.0\n304,235,4.5\n304,236,5.0\n304,237,5.5\n304,238,6.0\n304,239,6.5\n304,240,7.0\n304,241,7.5\n304,242,8.0\n304,243,8.5\n304,244,9.0\n304,245,9.5\n304,246,10.0\n304,247,10.5\n304,248,11.0\n304,249,11.5\n304,250,3.0\n304,251,2.5\n304,252,2.0\n304,253,1.5\n304,254,1.0\n304,255,1.5\n304,256,2.0\n304,257,2.5\n304,258,3.0\n304,259,3.5\n304,260,4.0\n304,261,4.5\n304,262,5.0\n304,263,5.5\n304,264,6.0\n304,265,6.5\n304,266,7.0\n304,267,7.5\n304,268,8.0\n304,269,8.5\n304,270,9.0\n304,271,9.5\n304,272,10.0\n304,273,10.5\n304,274,11.0\n304,275,2.5\n304,276,2.0\n304,277,1.5\n304,278,1.0\n304,279,0.5\n304,280,1.0\n304,281,1.5\n304,282,2.0\n304,283,2.5\n304,284,3.0\n304,285,3.5\n304,286,4.0\n304,287,4.5\n304,288,5.0\n304,289,5.5\n304,290,6.0\n304,291,6.5\n304,292,7.0\n304,293,7.5\n304,294,8.0\n304,295,8.5\n304,296,9.0\n304,297,9.5\n304,298,10.0\n304,299,10.5\n304,300,2.0\n304,301,1.5\n304,302,1.0\n304,303,0.5\n304,304,0\n304,305,0.5\n304,306,1.0\n304,307,1.5\n304,308,2.0\n304,309,2.5\n304,310,3.0\n304,311,3.5\n304,312,4.0\n304,313,4.5\n304,314,5.0\n304,315,5.5\n304,316,6.0\n304,317,6.5\n304,318,7.0\n304,319,7.5\n304,320,8.0\n304,321,8.5\n304,322,9.0\n304,323,9.5\n304,324,10.0\n304,325,2.5\n304,326,2.0\n304,327,1.5\n304,328,1.0\n304,329,0.5\n304,330,1.0\n304,331,1.5\n304,332,2.0\n304,333,2.5\n304,334,3.0\n304,335,3.5\n304,336,4.0\n304,337,4.5\n304,338,5.0\n304,339,5.5\n304,340,6.0\n304,341,6.5\n304,342,7.0\n304,343,7.5\n304,344,8.0\n304,345,8.5\n304,346,9.0\n304,347,9.5\n304,348,10.0\n304,349,10.5\n304,350,3.0\n304,351,2.5\n304,352,2.0\n304,353,1.5\n304,354,1.0\n304,355,1.5\n304,356,2.0\n304,357,2.5\n304,358,3.0\n304,359,3.5\n304,360,4.0\n304,361,4.5\n304,362,5.0\n304,363,5.5\n304,364,6.0\n304,365,6.5\n304,366,7.0\n304,367,7.5\n304,368,8.0\n304,369,8.5\n304,370,9.0\n304,371,9.5\n304,372,10.0\n304,373,10.5\n304,374,11.0\n304,375,3.5\n304,376,3.0\n304,377,2.5\n304,378,2.0\n304,379,1.5\n304,380,2.0\n304,381,2.5\n304,382,3.0\n304,383,3.5\n304,384,4.0\n304,385,4.5\n304,386,5.0\n304,387,5.5\n304,388,6.0\n304,389,6.5\n304,390,7.0\n304,391,7.5\n304,392,8.0\n304,393,8.5\n304,394,9.0\n304,395,9.5\n304,396,10.0\n304,397,10.5\n304,398,11.0\n304,399,11.5\n304,400,4.0\n304,401,3.5\n304,402,3.0\n304,403,2.5\n304,404,2.0\n304,405,2.5\n304,406,3.0\n304,407,3.5\n304,408,4.0\n304,409,4.5\n304,410,5.0\n304,411,5.5\n304,412,6.0\n304,413,6.5\n304,414,7.0\n304,415,7.5\n304,416,8.0\n304,417,8.5\n304,418,9.0\n304,419,9.5\n304,420,10.0\n304,421,10.5\n304,422,11.0\n304,423,11.5\n304,424,12.0\n304,425,4.5\n304,426,4.0\n304,427,3.5\n304,428,3.0\n304,429,2.5\n304,430,3.0\n304,431,3.5\n304,432,4.0\n304,433,4.5\n304,434,5.0\n304,435,5.5\n304,436,6.0\n304,437,6.5\n304,438,7.0\n304,439,7.5\n304,440,8.0\n304,441,8.5\n304,442,9.0\n304,443,9.5\n304,444,10.0\n304,445,10.5\n304,446,11.0\n304,447,11.5\n304,448,12.0\n304,449,12.5\n304,450,5.0\n304,451,4.5\n304,452,4.0\n304,453,3.5\n304,454,3.0\n304,455,3.5\n304,456,4.0\n304,457,4.5\n304,458,5.0\n304,459,5.5\n304,460,6.0\n304,461,6.5\n304,462,7.0\n304,463,7.5\n304,464,8.0\n304,465,8.5\n304,466,9.0\n304,467,9.5\n304,468,10.0\n304,469,10.5\n304,470,11.0\n304,471,11.5\n304,472,12.0\n304,473,12.5\n304,474,13.0\n304,475,5.5\n304,476,5.0\n304,477,4.5\n304,478,4.0\n304,479,3.5\n304,480,4.0\n304,481,4.5\n304,482,5.0\n304,483,5.5\n304,484,6.0\n304,485,6.5\n304,486,7.0\n304,487,7.5\n304,488,8.0\n304,489,8.5\n304,490,9.0\n304,491,9.5\n304,492,10.0\n304,493,10.5\n304,494,11.0\n304,495,11.5\n304,496,12.0\n304,497,12.5\n304,498,13.0\n304,499,13.5\n304,500,6.0\n304,501,5.5\n304,502,5.0\n304,503,4.5\n304,504,4.0\n304,505,4.5\n304,506,5.0\n304,507,5.5\n304,508,6.0\n304,509,6.5\n304,510,7.0\n304,511,7.5\n304,512,8.0\n304,513,8.5\n304,514,9.0\n304,515,9.5\n304,516,10.0\n304,517,10.5\n304,518,11.0\n304,519,11.5\n304,520,12.0\n304,521,12.5\n304,522,13.0\n304,523,13.5\n304,524,14.0\n304,525,6.5\n304,526,6.0\n304,527,5.5\n304,528,5.0\n304,529,4.5\n304,530,5.0\n304,531,5.5\n304,532,6.0\n304,533,6.5\n304,534,7.0\n304,535,7.5\n304,536,8.0\n304,537,8.5\n304,538,9.0\n304,539,9.5\n304,540,10.0\n304,541,10.5\n304,542,11.0\n304,543,11.5\n304,544,12.0\n304,545,12.5\n304,546,13.0\n304,547,13.5\n304,548,14.0\n304,549,14.5\n304,550,7.0\n304,551,6.5\n304,552,6.0\n304,553,5.5\n304,554,5.0\n304,555,5.5\n304,556,6.0\n304,557,6.5\n304,558,7.0\n304,559,7.5\n304,560,8.0\n304,561,8.5\n304,562,9.0\n304,563,9.5\n304,564,10.0\n304,565,10.5\n304,566,11.0\n304,567,11.5\n304,568,12.0\n304,569,12.5\n304,570,13.0\n304,571,13.5\n304,572,14.0\n304,573,14.5\n304,574,15.0\n304,575,7.5\n304,576,7.0\n304,577,6.5\n304,578,6.0\n304,579,5.5\n304,580,6.0\n304,581,6.5\n304,582,7.0\n304,583,7.5\n304,584,8.0\n304,585,8.5\n304,586,9.0\n304,587,9.5\n304,588,10.0\n304,589,10.5\n304,590,11.0\n304,591,11.5\n304,592,12.0\n304,593,12.5\n304,594,13.0\n304,595,13.5\n304,596,14.0\n304,597,14.5\n304,598,15.0\n304,599,15.5\n304,600,8.0\n304,601,7.5\n304,602,7.0\n304,603,6.5\n304,604,6.0\n304,605,6.5\n304,606,7.0\n304,607,7.5\n304,608,8.0\n304,609,8.5\n304,610,9.0\n304,611,9.5\n304,612,10.0\n304,613,10.5\n304,614,11.0\n304,615,11.5\n304,616,12.0\n304,617,12.5\n304,618,13.0\n304,619,13.5\n304,620,14.0\n304,621,14.5\n304,622,15.0\n304,623,15.5\n304,624,16.0\n305,0,8.5\n305,1,8.0\n305,2,7.5\n305,3,7.0\n305,4,6.5\n305,5,6.0\n305,6,6.5\n305,7,7.0\n305,8,7.5\n305,9,8.0\n305,10,8.5\n305,11,9.0\n305,12,9.5\n305,13,10.0\n305,14,10.5\n305,15,11.0\n305,16,11.5\n305,17,12.0\n305,18,12.5\n305,19,13.0\n305,20,13.5\n305,21,14.0\n305,22,14.5\n305,23,15.0\n305,24,15.5\n305,25,8.0\n305,26,7.5\n305,27,7.0\n305,28,6.5\n305,29,6.0\n305,30,5.5\n305,31,6.0\n305,32,6.5\n305,33,7.0\n305,34,7.5\n305,35,8.0\n305,36,8.5\n305,37,9.0\n305,38,9.5\n305,39,10.0\n305,40,10.5\n305,41,11.0\n305,42,11.5\n305,43,12.0\n305,44,12.5\n305,45,13.0\n305,46,13.5\n305,47,14.0\n305,48,14.5\n305,49,15.0\n305,50,7.5\n305,51,7.0\n305,52,6.5\n305,53,6.0\n305,54,5.5\n305,55,5.0\n305,56,5.5\n305,57,6.0\n305,58,6.5\n305,59,7.0\n305,60,7.5\n305,61,8.0\n305,62,8.5\n305,63,9.0\n305,64,9.5\n305,65,10.0\n305,66,10.5\n305,67,11.0\n305,68,11.5\n305,69,12.0\n305,70,12.5\n305,71,13.0\n305,72,13.5\n305,73,14.0\n305,74,14.5\n305,75,7.0\n305,76,6.5\n305,77,6.0\n305,78,5.5\n305,79,5.0\n305,80,4.5\n305,81,5.0\n305,82,5.5\n305,83,6.0\n305,84,6.5\n305,85,7.0\n305,86,7.5\n305,87,8.0\n305,88,8.5\n305,89,9.0\n305,90,9.5\n305,91,10.0\n305,92,10.5\n305,93,11.0\n305,94,11.5\n305,95,12.0\n305,96,12.5\n305,97,13.0\n305,98,13.5\n305,99,14.0\n305,100,6.5\n305,101,6.0\n305,102,5.5\n305,103,5.0\n305,104,4.5\n305,105,4.0\n305,106,4.5\n305,107,5.0\n305,108,5.5\n305,109,6.0\n305,110,6.5\n305,111,7.0\n305,112,7.5\n305,113,8.0\n305,114,8.5\n305,115,9.0\n305,116,9.5\n305,117,10.0\n305,118,10.5\n305,119,11.0\n305,120,11.5\n305,121,12.0\n305,122,12.5\n305,123,13.0\n305,124,13.5\n305,125,6.0\n305,126,5.5\n305,127,5.0\n305,128,4.5\n305,129,4.0\n305,130,3.5\n305,131,4.0\n305,132,4.5\n305,133,5.0\n305,134,5.5\n305,135,6.0\n305,136,6.5\n305,137,7.0\n305,138,7.5\n305,139,8.0\n305,140,8.5\n305,141,9.0\n305,142,9.5\n305,143,10.0\n305,144,10.5\n305,145,11.0\n305,146,11.5\n305,147,12.0\n305,148,12.5\n305,149,13.0\n305,150,5.5\n305,151,5.0\n305,152,4.5\n305,153,4.0\n305,154,3.5\n305,155,3.0\n305,156,3.5\n305,157,4.0\n305,158,4.5\n305,159,5.0\n305,160,5.5\n305,161,6.0\n305,162,6.5\n305,163,7.0\n305,164,7.5\n305,165,8.0\n305,166,8.5\n305,167,9.0\n305,168,9.5\n305,169,10.0\n305,170,10.5\n305,171,11.0\n305,172,11.5\n305,173,12.0\n305,174,12.5\n305,175,5.0\n305,176,4.5\n305,177,4.0\n305,178,3.5\n305,179,3.0\n305,180,2.5\n305,181,3.0\n305,182,3.5\n305,183,4.0\n305,184,4.5\n305,185,5.0\n305,186,5.5\n305,187,6.0\n305,188,6.5\n305,189,7.0\n305,190,7.5\n305,191,8.0\n305,192,8.5\n305,193,9.0\n305,194,9.5\n305,195,10.0\n305,196,10.5\n305,197,11.0\n305,198,11.5\n305,199,12.0\n305,200,4.5\n305,201,4.0\n305,202,3.5\n305,203,3.0\n305,204,2.5\n305,205,2.0\n305,206,2.5\n305,207,3.0\n305,208,3.5\n305,209,4.0\n305,210,4.5\n305,211,5.0\n305,212,5.5\n305,213,6.0\n305,214,6.5\n305,215,7.0\n305,216,7.5\n305,217,8.0\n305,218,8.5\n305,219,9.0\n305,220,9.5\n305,221,10.0\n305,222,10.5\n305,223,11.0\n305,224,11.5\n305,225,4.0\n305,226,3.5\n305,227,3.0\n305,228,2.5\n305,229,2.0\n305,230,1.5\n305,231,2.0\n305,232,2.5\n305,233,3.0\n305,234,3.5\n305,235,4.0\n305,236,4.5\n305,237,5.0\n305,238,5.5\n305,239,6.0\n305,240,6.5\n305,241,7.0\n305,242,7.5\n305,243,8.0\n305,244,8.5\n305,245,9.0\n305,246,9.5\n305,247,10.0\n305,248,10.5\n305,249,11.0\n305,250,3.5\n305,251,3.0\n305,252,2.5\n305,253,2.0\n305,254,1.5\n305,255,1.0\n305,256,1.5\n305,257,2.0\n305,258,2.5\n305,259,3.0\n305,260,3.5\n305,261,4.0\n305,262,4.5\n305,263,5.0\n305,264,5.5\n305,265,6.0\n305,266,6.5\n305,267,7.0\n305,268,7.5\n305,269,8.0\n305,270,8.5\n305,271,9.0\n305,272,9.5\n305,273,10.0\n305,274,10.5\n305,275,3.0\n305,276,2.5\n305,277,2.0\n305,278,1.5\n305,279,1.0\n305,280,0.5\n305,281,1.0\n305,282,1.5\n305,283,2.0\n305,284,2.5\n305,285,3.0\n305,286,3.5\n305,287,4.0\n305,288,4.5\n305,289,5.0\n305,290,5.5\n305,291,6.0\n305,292,6.5\n305,293,7.0\n305,294,7.5\n305,295,8.0\n305,296,8.5\n305,297,9.0\n305,298,9.5\n305,299,10.0\n305,300,2.5\n305,301,2.0\n305,302,1.5\n305,303,1.0\n305,304,0.5\n305,305,0\n305,306,0.5\n305,307,1.0\n305,308,1.5\n305,309,2.0\n305,310,2.5\n305,311,3.0\n305,312,3.5\n305,313,4.0\n305,314,4.5\n305,315,5.0\n305,316,5.5\n305,317,6.0\n305,318,6.5\n305,319,7.0\n305,320,7.5\n305,321,8.0\n305,322,8.5\n305,323,9.0\n305,324,9.5\n305,325,3.0\n305,326,2.5\n305,327,2.0\n305,328,1.5\n305,329,1.0\n305,330,0.5\n305,331,1.0\n305,332,1.5\n305,333,2.0\n305,334,2.5\n305,335,3.0\n305,336,3.5\n305,337,4.0\n305,338,4.5\n305,339,5.0\n305,340,5.5\n305,341,6.0\n305,342,6.5\n305,343,7.0\n305,344,7.5\n305,345,8.0\n305,346,8.5\n305,347,9.0\n305,348,9.5\n305,349,10.0\n305,350,3.5\n305,351,3.0\n305,352,2.5\n305,353,2.0\n305,354,1.5\n305,355,1.0\n305,356,1.5\n305,357,2.0\n305,358,2.5\n305,359,3.0\n305,360,3.5\n305,361,4.0\n305,362,4.5\n305,363,5.0\n305,364,5.5\n305,365,6.0\n305,366,6.5\n305,367,7.0\n305,368,7.5\n305,369,8.0\n305,370,8.5\n305,371,9.0\n305,372,9.5\n305,373,10.0\n305,374,10.5\n305,375,4.0\n305,376,3.5\n305,377,3.0\n305,378,2.5\n305,379,2.0\n305,380,1.5\n305,381,2.0\n305,382,2.5\n305,383,3.0\n305,384,3.5\n305,385,4.0\n305,386,4.5\n305,387,5.0\n305,388,5.5\n305,389,6.0\n305,390,6.5\n305,391,7.0\n305,392,7.5\n305,393,8.0\n305,394,8.5\n305,395,9.0\n305,396,9.5\n305,397,10.0\n305,398,10.5\n305,399,11.0\n305,400,4.5\n305,401,4.0\n305,402,3.5\n305,403,3.0\n305,404,2.5\n305,405,2.0\n305,406,2.5\n305,407,3.0\n305,408,3.5\n305,409,4.0\n305,410,4.5\n305,411,5.0\n305,412,5.5\n305,413,6.0\n305,414,6.5\n305,415,7.0\n305,416,7.5\n305,417,8.0\n305,418,8.5\n305,419,9.0\n305,420,9.5\n305,421,10.0\n305,422,10.5\n305,423,11.0\n305,424,11.5\n305,425,5.0\n305,426,4.5\n305,427,4.0\n305,428,3.5\n305,429,3.0\n305,430,2.5\n305,431,3.0\n305,432,3.5\n305,433,4.0\n305,434,4.5\n305,435,5.0\n305,436,5.5\n305,437,6.0\n305,438,6.5\n305,439,7.0\n305,440,7.5\n305,441,8.0\n305,442,8.5\n305,443,9.0\n305,444,9.5\n305,445,10.0\n305,446,10.5\n305,447,11.0\n305,448,11.5\n305,449,12.0\n305,450,5.5\n305,451,5.0\n305,452,4.5\n305,453,4.0\n305,454,3.5\n305,455,3.0\n305,456,3.5\n305,457,4.0\n305,458,4.5\n305,459,5.0\n305,460,5.5\n305,461,6.0\n305,462,6.5\n305,463,7.0\n305,464,7.5\n305,465,8.0\n305,466,8.5\n305,467,9.0\n305,468,9.5\n305,469,10.0\n305,470,10.5\n305,471,11.0\n305,472,11.5\n305,473,12.0\n305,474,12.5\n305,475,6.0\n305,476,5.5\n305,477,5.0\n305,478,4.5\n305,479,4.0\n305,480,3.5\n305,481,4.0\n305,482,4.5\n305,483,5.0\n305,484,5.5\n305,485,6.0\n305,486,6.5\n305,487,7.0\n305,488,7.5\n305,489,8.0\n305,490,8.5\n305,491,9.0\n305,492,9.5\n305,493,10.0\n305,494,10.5\n305,495,11.0\n305,496,11.5\n305,497,12.0\n305,498,12.5\n305,499,13.0\n305,500,6.5\n305,501,6.0\n305,502,5.5\n305,503,5.0\n305,504,4.5\n305,505,4.0\n305,506,4.5\n305,507,5.0\n305,508,5.5\n305,509,6.0\n305,510,6.5\n305,511,7.0\n305,512,7.5\n305,513,8.0\n305,514,8.5\n305,515,9.0\n305,516,9.5\n305,517,10.0\n305,518,10.5\n305,519,11.0\n305,520,11.5\n305,521,12.0\n305,522,12.5\n305,523,13.0\n305,524,13.5\n305,525,7.0\n305,526,6.5\n305,527,6.0\n305,528,5.5\n305,529,5.0\n305,530,4.5\n305,531,5.0\n305,532,5.5\n305,533,6.0\n305,534,6.5\n305,535,7.0\n305,536,7.5\n305,537,8.0\n305,538,8.5\n305,539,9.0\n305,540,9.5\n305,541,10.0\n305,542,10.5\n305,543,11.0\n305,544,11.5\n305,545,12.0\n305,546,12.5\n305,547,13.0\n305,548,13.5\n305,549,14.0\n305,550,7.5\n305,551,7.0\n305,552,6.5\n305,553,6.0\n305,554,5.5\n305,555,5.0\n305,556,5.5\n305,557,6.0\n305,558,6.5\n305,559,7.0\n305,560,7.5\n305,561,8.0\n305,562,8.5\n305,563,9.0\n305,564,9.5\n305,565,10.0\n305,566,10.5\n305,567,11.0\n305,568,11.5\n305,569,12.0\n305,570,12.5\n305,571,13.0\n305,572,13.5\n305,573,14.0\n305,574,14.5\n305,575,8.0\n305,576,7.5\n305,577,7.0\n305,578,6.5\n305,579,6.0\n305,580,5.5\n305,581,6.0\n305,582,6.5\n305,583,7.0\n305,584,7.5\n305,585,8.0\n305,586,8.5\n305,587,9.0\n305,588,9.5\n305,589,10.0\n305,590,10.5\n305,591,11.0\n305,592,11.5\n305,593,12.0\n305,594,12.5\n305,595,13.0\n305,596,13.5\n305,597,14.0\n305,598,14.5\n305,599,15.0\n305,600,8.5\n305,601,8.0\n305,602,7.5\n305,603,7.0\n305,604,6.5\n305,605,6.0\n305,606,6.5\n305,607,7.0\n305,608,7.5\n305,609,8.0\n305,610,8.5\n305,611,9.0\n305,612,9.5\n305,613,10.0\n305,614,10.5\n305,615,11.0\n305,616,11.5\n305,617,12.0\n305,618,12.5\n305,619,13.0\n305,620,13.5\n305,621,14.0\n305,622,14.5\n305,623,15.0\n305,624,15.5\n306,0,9.0\n306,1,8.5\n306,2,8.0\n306,3,7.5\n306,4,7.0\n306,5,6.5\n306,6,6.0\n306,7,6.5\n306,8,7.0\n306,9,7.5\n306,10,8.0\n306,11,8.5\n306,12,9.0\n306,13,9.5\n306,14,10.0\n306,15,10.5\n306,16,11.0\n306,17,11.5\n306,18,12.0\n306,19,12.5\n306,20,13.0\n306,21,13.5\n306,22,14.0\n306,23,14.5\n306,24,15.0\n306,25,8.5\n306,26,8.0\n306,27,7.5\n306,28,7.0\n306,29,6.5\n306,30,6.0\n306,31,5.5\n306,32,6.0\n306,33,6.5\n306,34,7.0\n306,35,7.5\n306,36,8.0\n306,37,8.5\n306,38,9.0\n306,39,9.5\n306,40,10.0\n306,41,10.5\n306,42,11.0\n306,43,11.5\n306,44,12.0\n306,45,12.5\n306,46,13.0\n306,47,13.5\n306,48,14.0\n306,49,14.5\n306,50,8.0\n306,51,7.5\n306,52,7.0\n306,53,6.5\n306,54,6.0\n306,55,5.5\n306,56,5.0\n306,57,5.5\n306,58,6.0\n306,59,6.5\n306,60,7.0\n306,61,7.5\n306,62,8.0\n306,63,8.5\n306,64,9.0\n306,65,9.5\n306,66,10.0\n306,67,10.5\n306,68,11.0\n306,69,11.5\n306,70,12.0\n306,71,12.5\n306,72,13.0\n306,73,13.5\n306,74,14.0\n306,75,7.5\n306,76,7.0\n306,77,6.5\n306,78,6.0\n306,79,5.5\n306,80,5.0\n306,81,4.5\n306,82,5.0\n306,83,5.5\n306,84,6.0\n306,85,6.5\n306,86,7.0\n306,87,7.5\n306,88,8.0\n306,89,8.5\n306,90,9.0\n306,91,9.5\n306,92,10.0\n306,93,10.5\n306,94,11.0\n306,95,11.5\n306,96,12.0\n306,97,12.5\n306,98,13.0\n306,99,13.5\n306,100,7.0\n306,101,6.5\n306,102,6.0\n306,103,5.5\n306,104,5.0\n306,105,4.5\n306,106,4.0\n306,107,4.5\n306,108,5.0\n306,109,5.5\n306,110,6.0\n306,111,6.5\n306,112,7.0\n306,113,7.5\n306,114,8.0\n306,115,8.5\n306,116,9.0\n306,117,9.5\n306,118,10.0\n306,119,10.5\n306,120,11.0\n306,121,11.5\n306,122,12.0\n306,123,12.5\n306,124,13.0\n306,125,6.5\n306,126,6.0\n306,127,5.5\n306,128,5.0\n306,129,4.5\n306,130,4.0\n306,131,3.5\n306,132,4.0\n306,133,4.5\n306,134,5.0\n306,135,5.5\n306,136,6.0\n306,137,6.5\n306,138,7.0\n306,139,7.5\n306,140,8.0\n306,141,8.5\n306,142,9.0\n306,143,9.5\n306,144,10.0\n306,145,10.5\n306,146,11.0\n306,147,11.5\n306,148,12.0\n306,149,12.5\n306,150,6.0\n306,151,5.5\n306,152,5.0\n306,153,4.5\n306,154,4.0\n306,155,3.5\n306,156,3.0\n306,157,3.5\n306,158,4.0\n306,159,4.5\n306,160,5.0\n306,161,5.5\n306,162,6.0\n306,163,6.5\n306,164,7.0\n306,165,7.5\n306,166,8.0\n306,167,8.5\n306,168,9.0\n306,169,9.5\n306,170,10.0\n306,171,10.5\n306,172,11.0\n306,173,11.5\n306,174,12.0\n306,175,5.5\n306,176,5.0\n306,177,4.5\n306,178,4.0\n306,179,3.5\n306,180,3.0\n306,181,2.5\n306,182,3.0\n306,183,3.5\n306,184,4.0\n306,185,4.5\n306,186,5.0\n306,187,5.5\n306,188,6.0\n306,189,6.5\n306,190,7.0\n306,191,7.5\n306,192,8.0\n306,193,8.5\n306,194,9.0\n306,195,9.5\n306,196,10.0\n306,197,10.5\n306,198,11.0\n306,199,11.5\n306,200,5.0\n306,201,4.5\n306,202,4.0\n306,203,3.5\n306,204,3.0\n306,205,2.5\n306,206,2.0\n306,207,2.5\n306,208,3.0\n306,209,3.5\n306,210,4.0\n306,211,4.5\n306,212,5.0\n306,213,5.5\n306,214,6.0\n306,215,6.5\n306,216,7.0\n306,217,7.5\n306,218,8.0\n306,219,8.5\n306,220,9.0\n306,221,9.5\n306,222,10.0\n306,223,10.5\n306,224,11.0\n306,225,4.5\n306,226,4.0\n306,227,3.5\n306,228,3.0\n306,229,2.5\n306,230,2.0\n306,231,1.5\n306,232,2.0\n306,233,2.5\n306,234,3.0\n306,235,3.5\n306,236,4.0\n306,237,4.5\n306,238,5.0\n306,239,5.5\n306,240,6.0\n306,241,6.5\n306,242,7.0\n306,243,7.5\n306,244,8.0\n306,245,8.5\n306,246,9.0\n306,247,9.5\n306,248,10.0\n306,249,10.5\n306,250,4.0\n306,251,3.5\n306,252,3.0\n306,253,2.5\n306,254,2.0\n306,255,1.5\n306,256,1.0\n306,257,1.5\n306,258,2.0\n306,259,2.5\n306,260,3.0\n306,261,3.5\n306,262,4.0\n306,263,4.5\n306,264,5.0\n306,265,5.5\n306,266,6.0\n306,267,6.5\n306,268,7.0\n306,269,7.5\n306,270,8.0\n306,271,8.5\n306,272,9.0\n306,273,9.5\n306,274,10.0\n306,275,3.5\n306,276,3.0\n306,277,2.5\n306,278,2.0\n306,279,1.5\n306,280,1.0\n306,281,0.5\n306,282,1.0\n306,283,1.5\n306,284,2.0\n306,285,2.5\n306,286,3.0\n306,287,3.5\n306,288,4.0\n306,289,4.5\n306,290,5.0\n306,291,5.5\n306,292,6.0\n306,293,6.5\n306,294,7.0\n306,295,7.5\n306,296,8.0\n306,297,8.5\n306,298,9.0\n306,299,9.5\n306,300,3.0\n306,301,2.5\n306,302,2.0\n306,303,1.5\n306,304,1.0\n306,305,0.5\n306,306,0\n306,307,0.5\n306,308,1.0\n306,309,1.5\n306,310,2.0\n306,311,2.5\n306,312,3.0\n306,313,3.5\n306,314,4.0\n306,315,4.5\n306,316,5.0\n306,317,5.5\n306,318,6.0\n306,319,6.5\n306,320,7.0\n306,321,7.5\n306,322,8.0\n306,323,8.5\n306,324,9.0\n306,325,3.5\n306,326,3.0\n306,327,2.5\n306,328,2.0\n306,329,1.5\n306,330,1.0\n306,331,0.5\n306,332,1.0\n306,333,1.5\n306,334,2.0\n306,335,2.5\n306,336,3.0\n306,337,3.5\n306,338,4.0\n306,339,4.5\n306,340,5.0\n306,341,5.5\n306,342,6.0\n306,343,6.5\n306,344,7.0\n306,345,7.5\n306,346,8.0\n306,347,8.5\n306,348,9.0\n306,349,9.5\n306,350,4.0\n306,351,3.5\n306,352,3.0\n306,353,2.5\n306,354,2.0\n306,355,1.5\n306,356,1.0\n306,357,1.5\n306,358,2.0\n306,359,2.5\n306,360,3.0\n306,361,3.5\n306,362,4.0\n306,363,4.5\n306,364,5.0\n306,365,5.5\n306,366,6.0\n306,367,6.5\n306,368,7.0\n306,369,7.5\n306,370,8.0\n306,371,8.5\n306,372,9.0\n306,373,9.5\n306,374,10.0\n306,375,4.5\n306,376,4.0\n306,377,3.5\n306,378,3.0\n306,379,2.5\n306,380,2.0\n306,381,1.5\n306,382,2.0\n306,383,2.5\n306,384,3.0\n306,385,3.5\n306,386,4.0\n306,387,4.5\n306,388,5.0\n306,389,5.5\n306,390,6.0\n306,391,6.5\n306,392,7.0\n306,393,7.5\n306,394,8.0\n306,395,8.5\n306,396,9.0\n306,397,9.5\n306,398,10.0\n306,399,10.5\n306,400,5.0\n306,401,4.5\n306,402,4.0\n306,403,3.5\n306,404,3.0\n306,405,2.5\n306,406,2.0\n306,407,2.5\n306,408,3.0\n306,409,3.5\n306,410,4.0\n306,411,4.5\n306,412,5.0\n306,413,5.5\n306,414,6.0\n306,415,6.5\n306,416,7.0\n306,417,7.5\n306,418,8.0\n306,419,8.5\n306,420,9.0\n306,421,9.5\n306,422,10.0\n306,423,10.5\n306,424,11.0\n306,425,5.5\n306,426,5.0\n306,427,4.5\n306,428,4.0\n306,429,3.5\n306,430,3.0\n306,431,2.5\n306,432,3.0\n306,433,3.5\n306,434,4.0\n306,435,4.5\n306,436,5.0\n306,437,5.5\n306,438,6.0\n306,439,6.5\n306,440,7.0\n306,441,7.5\n306,442,8.0\n306,443,8.5\n306,444,9.0\n306,445,9.5\n306,446,10.0\n306,447,10.5\n306,448,11.0\n306,449,11.5\n306,450,6.0\n306,451,5.5\n306,452,5.0\n306,453,4.5\n306,454,4.0\n306,455,3.5\n306,456,3.0\n306,457,3.5\n306,458,4.0\n306,459,4.5\n306,460,5.0\n306,461,5.5\n306,462,6.0\n306,463,6.5\n306,464,7.0\n306,465,7.5\n306,466,8.0\n306,467,8.5\n306,468,9.0\n306,469,9.5\n306,470,10.0\n306,471,10.5\n306,472,11.0\n306,473,11.5\n306,474,12.0\n306,475,6.5\n306,476,6.0\n306,477,5.5\n306,478,5.0\n306,479,4.5\n306,480,4.0\n306,481,3.5\n306,482,4.0\n306,483,4.5\n306,484,5.0\n306,485,5.5\n306,486,6.0\n306,487,6.5\n306,488,7.0\n306,489,7.5\n306,490,8.0\n306,491,8.5\n306,492,9.0\n306,493,9.5\n306,494,10.0\n306,495,10.5\n306,496,11.0\n306,497,11.5\n306,498,12.0\n306,499,12.5\n306,500,7.0\n306,501,6.5\n306,502,6.0\n306,503,5.5\n306,504,5.0\n306,505,4.5\n306,506,4.0\n306,507,4.5\n306,508,5.0\n306,509,5.5\n306,510,6.0\n306,511,6.5\n306,512,7.0\n306,513,7.5\n306,514,8.0\n306,515,8.5\n306,516,9.0\n306,517,9.5\n306,518,10.0\n306,519,10.5\n306,520,11.0\n306,521,11.5\n306,522,12.0\n306,523,12.5\n306,524,13.0\n306,525,7.5\n306,526,7.0\n306,527,6.5\n306,528,6.0\n306,529,5.5\n306,530,5.0\n306,531,4.5\n306,532,5.0\n306,533,5.5\n306,534,6.0\n306,535,6.5\n306,536,7.0\n306,537,7.5\n306,538,8.0\n306,539,8.5\n306,540,9.0\n306,541,9.5\n306,542,10.0\n306,543,10.5\n306,544,11.0\n306,545,11.5\n306,546,12.0\n306,547,12.5\n306,548,13.0\n306,549,13.5\n306,550,8.0\n306,551,7.5\n306,552,7.0\n306,553,6.5\n306,554,6.0\n306,555,5.5\n306,556,5.0\n306,557,5.5\n306,558,6.0\n306,559,6.5\n306,560,7.0\n306,561,7.5\n306,562,8.0\n306,563,8.5\n306,564,9.0\n306,565,9.5\n306,566,10.0\n306,567,10.5\n306,568,11.0\n306,569,11.5\n306,570,12.0\n306,571,12.5\n306,572,13.0\n306,573,13.5\n306,574,14.0\n306,575,8.5\n306,576,8.0\n306,577,7.5\n306,578,7.0\n306,579,6.5\n306,580,6.0\n306,581,5.5\n306,582,6.0\n306,583,6.5\n306,584,7.0\n306,585,7.5\n306,586,8.0\n306,587,8.5\n306,588,9.0\n306,589,9.5\n306,590,10.0\n306,591,10.5\n306,592,11.0\n306,593,11.5\n306,594,12.0\n306,595,12.5\n306,596,13.0\n306,597,13.5\n306,598,14.0\n306,599,14.5\n306,600,9.0\n306,601,8.5\n306,602,8.0\n306,603,7.5\n306,604,7.0\n306,605,6.5\n306,606,6.0\n306,607,6.5\n306,608,7.0\n306,609,7.5\n306,610,8.0\n306,611,8.5\n306,612,9.0\n306,613,9.5\n306,614,10.0\n306,615,10.5\n306,616,11.0\n306,617,11.5\n306,618,12.0\n306,619,12.5\n306,620,13.0\n306,621,13.5\n306,622,14.0\n306,623,14.5\n306,624,15.0\n307,0,9.5\n307,1,9.0\n307,2,8.5\n307,3,8.0\n307,4,7.5\n307,5,7.0\n307,6,6.5\n307,7,6.0\n307,8,6.5\n307,9,7.0\n307,10,7.5\n307,11,8.0\n307,12,8.5\n307,13,9.0\n307,14,9.5\n307,15,10.0\n307,16,10.5\n307,17,11.0\n307,18,11.5\n307,19,12.0\n307,20,12.5\n307,21,13.0\n307,22,13.5\n307,23,14.0\n307,24,14.5\n307,25,9.0\n307,26,8.5\n307,27,8.0\n307,28,7.5\n307,29,7.0\n307,30,6.5\n307,31,6.0\n307,32,5.5\n307,33,6.0\n307,34,6.5\n307,35,7.0\n307,36,7.5\n307,37,8.0\n307,38,8.5\n307,39,9.0\n307,40,9.5\n307,41,10.0\n307,42,10.5\n307,43,11.0\n307,44,11.5\n307,45,12.0\n307,46,12.5\n307,47,13.0\n307,48,13.5\n307,49,14.0\n307,50,8.5\n307,51,8.0\n307,52,7.5\n307,53,7.0\n307,54,6.5\n307,55,6.0\n307,56,5.5\n307,57,5.0\n307,58,5.5\n307,59,6.0\n307,60,6.5\n307,61,7.0\n307,62,7.5\n307,63,8.0\n307,64,8.5\n307,65,9.0\n307,66,9.5\n307,67,10.0\n307,68,10.5\n307,69,11.0\n307,70,11.5\n307,71,12.0\n307,72,12.5\n307,73,13.0\n307,74,13.5\n307,75,8.0\n307,76,7.5\n307,77,7.0\n307,78,6.5\n307,79,6.0\n307,80,5.5\n307,81,5.0\n307,82,4.5\n307,83,5.0\n307,84,5.5\n307,85,6.0\n307,86,6.5\n307,87,7.0\n307,88,7.5\n307,89,8.0\n307,90,8.5\n307,91,9.0\n307,92,9.5\n307,93,10.0\n307,94,10.5\n307,95,11.0\n307,96,11.5\n307,97,12.0\n307,98,12.5\n307,99,13.0\n307,100,7.5\n307,101,7.0\n307,102,6.5\n307,103,6.0\n307,104,5.5\n307,105,5.0\n307,106,4.5\n307,107,4.0\n307,108,4.5\n307,109,5.0\n307,110,5.5\n307,111,6.0\n307,112,6.5\n307,113,7.0\n307,114,7.5\n307,115,8.0\n307,116,8.5\n307,117,9.0\n307,118,9.5\n307,119,10.0\n307,120,10.5\n307,121,11.0\n307,122,11.5\n307,123,12.0\n307,124,12.5\n307,125,7.0\n307,126,6.5\n307,127,6.0\n307,128,5.5\n307,129,5.0\n307,130,4.5\n307,131,4.0\n307,132,3.5\n307,133,4.0\n307,134,4.5\n307,135,5.0\n307,136,5.5\n307,137,6.0\n307,138,6.5\n307,139,7.0\n307,140,7.5\n307,141,8.0\n307,142,8.5\n307,143,9.0\n307,144,9.5\n307,145,10.0\n307,146,10.5\n307,147,11.0\n307,148,11.5\n307,149,12.0\n307,150,6.5\n307,151,6.0\n307,152,5.5\n307,153,5.0\n307,154,4.5\n307,155,4.0\n307,156,3.5\n307,157,3.0\n307,158,3.5\n307,159,4.0\n307,160,4.5\n307,161,5.0\n307,162,5.5\n307,163,6.0\n307,164,6.5\n307,165,7.0\n307,166,7.5\n307,167,8.0\n307,168,8.5\n307,169,9.0\n307,170,9.5\n307,171,10.0\n307,172,10.5\n307,173,11.0\n307,174,11.5\n307,175,6.0\n307,176,5.5\n307,177,5.0\n307,178,4.5\n307,179,4.0\n307,180,3.5\n307,181,3.0\n307,182,2.5\n307,183,3.0\n307,184,3.5\n307,185,4.0\n307,186,4.5\n307,187,5.0\n307,188,5.5\n307,189,6.0\n307,190,6.5\n307,191,7.0\n307,192,7.5\n307,193,8.0\n307,194,8.5\n307,195,9.0\n307,196,9.5\n307,197,10.0\n307,198,10.5\n307,199,11.0\n307,200,5.5\n307,201,5.0\n307,202,4.5\n307,203,4.0\n307,204,3.5\n307,205,3.0\n307,206,2.5\n307,207,2.0\n307,208,2.5\n307,209,3.0\n307,210,3.5\n307,211,4.0\n307,212,4.5\n307,213,5.0\n307,214,5.5\n307,215,6.0\n307,216,6.5\n307,217,7.0\n307,218,7.5\n307,219,8.0\n307,220,8.5\n307,221,9.0\n307,222,9.5\n307,223,10.0\n307,224,10.5\n307,225,5.0\n307,226,4.5\n307,227,4.0\n307,228,3.5\n307,229,3.0\n307,230,2.5\n307,231,2.0\n307,232,1.5\n307,233,2.0\n307,234,2.5\n307,235,3.0\n307,236,3.5\n307,237,4.0\n307,238,4.5\n307,239,5.0\n307,240,5.5\n307,241,6.0\n307,242,6.5\n307,243,7.0\n307,244,7.5\n307,245,8.0\n307,246,8.5\n307,247,9.0\n307,248,9.5\n307,249,10.0\n307,250,4.5\n307,251,4.0\n307,252,3.5\n307,253,3.0\n307,254,2.5\n307,255,2.0\n307,256,1.5\n307,257,1.0\n307,258,1.5\n307,259,2.0\n307,260,2.5\n307,261,3.0\n307,262,3.5\n307,263,4.0\n307,264,4.5\n307,265,5.0\n307,266,5.5\n307,267,6.0\n307,268,6.5\n307,269,7.0\n307,270,7.5\n307,271,8.0\n307,272,8.5\n307,273,9.0\n307,274,9.5\n307,275,4.0\n307,276,3.5\n307,277,3.0\n307,278,2.5\n307,279,2.0\n307,280,1.5\n307,281,1.0\n307,282,0.5\n307,283,1.0\n307,284,1.5\n307,285,2.0\n307,286,2.5\n307,287,3.0\n307,288,3.5\n307,289,4.0\n307,290,4.5\n307,291,5.0\n307,292,5.5\n307,293,6.0\n307,294,6.5\n307,295,7.0\n307,296,7.5\n307,297,8.0\n307,298,8.5\n307,299,9.0\n307,300,3.5\n307,301,3.0\n307,302,2.5\n307,303,2.0\n307,304,1.5\n307,305,1.0\n307,306,0.5\n307,307,0\n307,308,0.5\n307,309,1.0\n307,310,1.5\n307,311,2.0\n307,312,2.5\n307,313,3.0\n307,314,3.5\n307,315,4.0\n307,316,4.5\n307,317,5.0\n307,318,5.5\n307,319,6.0\n307,320,6.5\n307,321,7.0\n307,322,7.5\n307,323,8.0\n307,324,8.5\n307,325,4.0\n307,326,3.5\n307,327,3.0\n307,328,2.5\n307,329,2.0\n307,330,1.5\n307,331,1.0\n307,332,0.5\n307,333,1.0\n307,334,1.5\n307,335,2.0\n307,336,2.5\n307,337,3.0\n307,338,3.5\n307,339,4.0\n307,340,4.5\n307,341,5.0\n307,342,5.5\n307,343,6.0\n307,344,6.5\n307,345,7.0\n307,346,7.5\n307,347,8.0\n307,348,8.5\n307,349,9.0\n307,350,4.5\n307,351,4.0\n307,352,3.5\n307,353,3.0\n307,354,2.5\n307,355,2.0\n307,356,1.5\n307,357,1.0\n307,358,1.5\n307,359,2.0\n307,360,2.5\n307,361,3.0\n307,362,3.5\n307,363,4.0\n307,364,4.5\n307,365,5.0\n307,366,5.5\n307,367,6.0\n307,368,6.5\n307,369,7.0\n307,370,7.5\n307,371,8.0\n307,372,8.5\n307,373,9.0\n307,374,9.5\n307,375,5.0\n307,376,4.5\n307,377,4.0\n307,378,3.5\n307,379,3.0\n307,380,2.5\n307,381,2.0\n307,382,1.5\n307,383,2.0\n307,384,2.5\n307,385,3.0\n307,386,3.5\n307,387,4.0\n307,388,4.5\n307,389,5.0\n307,390,5.5\n307,391,6.0\n307,392,6.5\n307,393,7.0\n307,394,7.5\n307,395,8.0\n307,396,8.5\n307,397,9.0\n307,398,9.5\n307,399,10.0\n307,400,5.5\n307,401,5.0\n307,402,4.5\n307,403,4.0\n307,404,3.5\n307,405,3.0\n307,406,2.5\n307,407,2.0\n307,408,2.5\n307,409,3.0\n307,410,3.5\n307,411,4.0\n307,412,4.5\n307,413,5.0\n307,414,5.5\n307,415,6.0\n307,416,6.5\n307,417,7.0\n307,418,7.5\n307,419,8.0\n307,420,8.5\n307,421,9.0\n307,422,9.5\n307,423,10.0\n307,424,10.5\n307,425,6.0\n307,426,5.5\n307,427,5.0\n307,428,4.5\n307,429,4.0\n307,430,3.5\n307,431,3.0\n307,432,2.5\n307,433,3.0\n307,434,3.5\n307,435,4.0\n307,436,4.5\n307,437,5.0\n307,438,5.5\n307,439,6.0\n307,440,6.5\n307,441,7.0\n307,442,7.5\n307,443,8.0\n307,444,8.5\n307,445,9.0\n307,446,9.5\n307,447,10.0\n307,448,10.5\n307,449,11.0\n307,450,6.5\n307,451,6.0\n307,452,5.5\n307,453,5.0\n307,454,4.5\n307,455,4.0\n307,456,3.5\n307,457,3.0\n307,458,3.5\n307,459,4.0\n307,460,4.5\n307,461,5.0\n307,462,5.5\n307,463,6.0\n307,464,6.5\n307,465,7.0\n307,466,7.5\n307,467,8.0\n307,468,8.5\n307,469,9.0\n307,470,9.5\n307,471,10.0\n307,472,10.5\n307,473,11.0\n307,474,11.5\n307,475,7.0\n307,476,6.5\n307,477,6.0\n307,478,5.5\n307,479,5.0\n307,480,4.5\n307,481,4.0\n307,482,3.5\n307,483,4.0\n307,484,4.5\n307,485,5.0\n307,486,5.5\n307,487,6.0\n307,488,6.5\n307,489,7.0\n307,490,7.5\n307,491,8.0\n307,492,8.5\n307,493,9.0\n307,494,9.5\n307,495,10.0\n307,496,10.5\n307,497,11.0\n307,498,11.5\n307,499,12.0\n307,500,7.5\n307,501,7.0\n307,502,6.5\n307,503,6.0\n307,504,5.5\n307,505,5.0\n307,506,4.5\n307,507,4.0\n307,508,4.5\n307,509,5.0\n307,510,5.5\n307,511,6.0\n307,512,6.5\n307,513,7.0\n307,514,7.5\n307,515,8.0\n307,516,8.5\n307,517,9.0\n307,518,9.5\n307,519,10.0\n307,520,10.5\n307,521,11.0\n307,522,11.5\n307,523,12.0\n307,524,12.5\n307,525,8.0\n307,526,7.5\n307,527,7.0\n307,528,6.5\n307,529,6.0\n307,530,5.5\n307,531,5.0\n307,532,4.5\n307,533,5.0\n307,534,5.5\n307,535,6.0\n307,536,6.5\n307,537,7.0\n307,538,7.5\n307,539,8.0\n307,540,8.5\n307,541,9.0\n307,542,9.5\n307,543,10.0\n307,544,10.5\n307,545,11.0\n307,546,11.5\n307,547,12.0\n307,548,12.5\n307,549,13.0\n307,550,8.5\n307,551,8.0\n307,552,7.5\n307,553,7.0\n307,554,6.5\n307,555,6.0\n307,556,5.5\n307,557,5.0\n307,558,5.5\n307,559,6.0\n307,560,6.5\n307,561,7.0\n307,562,7.5\n307,563,8.0\n307,564,8.5\n307,565,9.0\n307,566,9.5\n307,567,10.0\n307,568,10.5\n307,569,11.0\n307,570,11.5\n307,571,12.0\n307,572,12.5\n307,573,13.0\n307,574,13.5\n307,575,9.0\n307,576,8.5\n307,577,8.0\n307,578,7.5\n307,579,7.0\n307,580,6.5\n307,581,6.0\n307,582,5.5\n307,583,6.0\n307,584,6.5\n307,585,7.0\n307,586,7.5\n307,587,8.0\n307,588,8.5\n307,589,9.0\n307,590,9.5\n307,591,10.0\n307,592,10.5\n307,593,11.0\n307,594,11.5\n307,595,12.0\n307,596,12.5\n307,597,13.0\n307,598,13.5\n307,599,14.0\n307,600,9.5\n307,601,9.0\n307,602,8.5\n307,603,8.0\n307,604,7.5\n307,605,7.0\n307,606,6.5\n307,607,6.0\n307,608,6.5\n307,609,7.0\n307,610,7.5\n307,611,8.0\n307,612,8.5\n307,613,9.0\n307,614,9.5\n307,615,10.0\n307,616,10.5\n307,617,11.0\n307,618,11.5\n307,619,12.0\n307,620,12.5\n307,621,13.0\n307,622,13.5\n307,623,14.0\n307,624,14.5\n308,0,10.0\n308,1,9.5\n308,2,9.0\n308,3,8.5\n308,4,8.0\n308,5,7.5\n308,6,7.0\n308,7,6.5\n308,8,6.0\n308,9,6.5\n308,10,7.0\n308,11,7.5\n308,12,8.0\n308,13,8.5\n308,14,9.0\n308,15,9.5\n308,16,10.0\n308,17,10.5\n308,18,11.0\n308,19,11.5\n308,20,12.0\n308,21,12.5\n308,22,13.0\n308,23,13.5\n308,24,14.0\n308,25,9.5\n308,26,9.0\n308,27,8.5\n308,28,8.0\n308,29,7.5\n308,30,7.0\n308,31,6.5\n308,32,6.0\n308,33,5.5\n308,34,6.0\n308,35,6.5\n308,36,7.0\n308,37,7.5\n308,38,8.0\n308,39,8.5\n308,40,9.0\n308,41,9.5\n308,42,10.0\n308,43,10.5\n308,44,11.0\n308,45,11.5\n308,46,12.0\n308,47,12.5\n308,48,13.0\n308,49,13.5\n308,50,9.0\n308,51,8.5\n308,52,8.0\n308,53,7.5\n308,54,7.0\n308,55,6.5\n308,56,6.0\n308,57,5.5\n308,58,5.0\n308,59,5.5\n308,60,6.0\n308,61,6.5\n308,62,7.0\n308,63,7.5\n308,64,8.0\n308,65,8.5\n308,66,9.0\n308,67,9.5\n308,68,10.0\n308,69,10.5\n308,70,11.0\n308,71,11.5\n308,72,12.0\n308,73,12.5\n308,74,13.0\n308,75,8.5\n308,76,8.0\n308,77,7.5\n308,78,7.0\n308,79,6.5\n308,80,6.0\n308,81,5.5\n308,82,5.0\n308,83,4.5\n308,84,5.0\n308,85,5.5\n308,86,6.0\n308,87,6.5\n308,88,7.0\n308,89,7.5\n308,90,8.0\n308,91,8.5\n308,92,9.0\n308,93,9.5\n308,94,10.0\n308,95,10.5\n308,96,11.0\n308,97,11.5\n308,98,12.0\n308,99,12.5\n308,100,8.0\n308,101,7.5\n308,102,7.0\n308,103,6.5\n308,104,6.0\n308,105,5.5\n308,106,5.0\n308,107,4.5\n308,108,4.0\n308,109,4.5\n308,110,5.0\n308,111,5.5\n308,112,6.0\n308,113,6.5\n308,114,7.0\n308,115,7.5\n308,116,8.0\n308,117,8.5\n308,118,9.0\n308,119,9.5\n308,120,10.0\n308,121,10.5\n308,122,11.0\n308,123,11.5\n308,124,12.0\n308,125,7.5\n308,126,7.0\n308,127,6.5\n308,128,6.0\n308,129,5.5\n308,130,5.0\n308,131,4.5\n308,132,4.0\n308,133,3.5\n308,134,4.0\n308,135,4.5\n308,136,5.0\n308,137,5.5\n308,138,6.0\n308,139,6.5\n308,140,7.0\n308,141,7.5\n308,142,8.0\n308,143,8.5\n308,144,9.0\n308,145,9.5\n308,146,10.0\n308,147,10.5\n308,148,11.0\n308,149,11.5\n308,150,7.0\n308,151,6.5\n308,152,6.0\n308,153,5.5\n308,154,5.0\n308,155,4.5\n308,156,4.0\n308,157,3.5\n308,158,3.0\n308,159,3.5\n308,160,4.0\n308,161,4.5\n308,162,5.0\n308,163,5.5\n308,164,6.0\n308,165,6.5\n308,166,7.0\n308,167,7.5\n308,168,8.0\n308,169,8.5\n308,170,9.0\n308,171,9.5\n308,172,10.0\n308,173,10.5\n308,174,11.0\n308,175,6.5\n308,176,6.0\n308,177,5.5\n308,178,5.0\n308,179,4.5\n308,180,4.0\n308,181,3.5\n308,182,3.0\n308,183,2.5\n308,184,3.0\n308,185,3.5\n308,186,4.0\n308,187,4.5\n308,188,5.0\n308,189,5.5\n308,190,6.0\n308,191,6.5\n308,192,7.0\n308,193,7.5\n308,194,8.0\n308,195,8.5\n308,196,9.0\n308,197,9.5\n308,198,10.0\n308,199,10.5\n308,200,6.0\n308,201,5.5\n308,202,5.0\n308,203,4.5\n308,204,4.0\n308,205,3.5\n308,206,3.0\n308,207,2.5\n308,208,2.0\n308,209,2.5\n308,210,3.0\n308,211,3.5\n308,212,4.0\n308,213,4.5\n308,214,5.0\n308,215,5.5\n308,216,6.0\n308,217,6.5\n308,218,7.0\n308,219,7.5\n308,220,8.0\n308,221,8.5\n308,222,9.0\n308,223,9.5\n308,224,10.0\n308,225,5.5\n308,226,5.0\n308,227,4.5\n308,228,4.0\n308,229,3.5\n308,230,3.0\n308,231,2.5\n308,232,2.0\n308,233,1.5\n308,234,2.0\n308,235,2.5\n308,236,3.0\n308,237,3.5\n308,238,4.0\n308,239,4.5\n308,240,5.0\n308,241,5.5\n308,242,6.0\n308,243,6.5\n308,244,7.0\n308,245,7.5\n308,246,8.0\n308,247,8.5\n308,248,9.0\n308,249,9.5\n308,250,5.0\n308,251,4.5\n308,252,4.0\n308,253,3.5\n308,254,3.0\n308,255,2.5\n308,256,2.0\n308,257,1.5\n308,258,1.0\n308,259,1.5\n308,260,2.0\n308,261,2.5\n308,262,3.0\n308,263,3.5\n308,264,4.0\n308,265,4.5\n308,266,5.0\n308,267,5.5\n308,268,6.0\n308,269,6.5\n308,270,7.0\n308,271,7.5\n308,272,8.0\n308,273,8.5\n308,274,9.0\n308,275,4.5\n308,276,4.0\n308,277,3.5\n308,278,3.0\n308,279,2.5\n308,280,2.0\n308,281,1.5\n308,282,1.0\n308,283,0.5\n308,284,1.0\n308,285,1.5\n308,286,2.0\n308,287,2.5\n308,288,3.0\n308,289,3.5\n308,290,4.0\n308,291,4.5\n308,292,5.0\n308,293,5.5\n308,294,6.0\n308,295,6.5\n308,296,7.0\n308,297,7.5\n308,298,8.0\n308,299,8.5\n308,300,4.0\n308,301,3.5\n308,302,3.0\n308,303,2.5\n308,304,2.0\n308,305,1.5\n308,306,1.0\n308,307,0.5\n308,308,0\n308,309,0.5\n308,310,1.0\n308,311,1.5\n308,312,2.0\n308,313,2.5\n308,314,3.0\n308,315,3.5\n308,316,4.0\n308,317,4.5\n308,318,5.0\n308,319,5.5\n308,320,6.0\n308,321,6.5\n308,322,7.0\n308,323,7.5\n308,324,8.0\n308,325,4.5\n308,326,4.0\n308,327,3.5\n308,328,3.0\n308,329,2.5\n308,330,2.0\n308,331,1.5\n308,332,1.0\n308,333,0.5\n308,334,1.0\n308,335,1.5\n308,336,2.0\n308,337,2.5\n308,338,3.0\n308,339,3.5\n308,340,4.0\n308,341,4.5\n308,342,5.0\n308,343,5.5\n308,344,6.0\n308,345,6.5\n308,346,7.0\n308,347,7.5\n308,348,8.0\n308,349,8.5\n308,350,5.0\n308,351,4.5\n308,352,4.0\n308,353,3.5\n308,354,3.0\n308,355,2.5\n308,356,2.0\n308,357,1.5\n308,358,1.0\n308,359,1.5\n308,360,2.0\n308,361,2.5\n308,362,3.0\n308,363,3.5\n308,364,4.0\n308,365,4.5\n308,366,5.0\n308,367,5.5\n308,368,6.0\n308,369,6.5\n308,370,7.0\n308,371,7.5\n308,372,8.0\n308,373,8.5\n308,374,9.0\n308,375,5.5\n308,376,5.0\n308,377,4.5\n308,378,4.0\n308,379,3.5\n308,380,3.0\n308,381,2.5\n308,382,2.0\n308,383,1.5\n308,384,2.0\n308,385,2.5\n308,386,3.0\n308,387,3.5\n308,388,4.0\n308,389,4.5\n308,390,5.0\n308,391,5.5\n308,392,6.0\n308,393,6.5\n308,394,7.0\n308,395,7.5\n308,396,8.0\n308,397,8.5\n308,398,9.0\n308,399,9.5\n308,400,6.0\n308,401,5.5\n308,402,5.0\n308,403,4.5\n308,404,4.0\n308,405,3.5\n308,406,3.0\n308,407,2.5\n308,408,2.0\n308,409,2.5\n308,410,3.0\n308,411,3.5\n308,412,4.0\n308,413,4.5\n308,414,5.0\n308,415,5.5\n308,416,6.0\n308,417,6.5\n308,418,7.0\n308,419,7.5\n308,420,8.0\n308,421,8.5\n308,422,9.0\n308,423,9.5\n308,424,10.0\n308,425,6.5\n308,426,6.0\n308,427,5.5\n308,428,5.0\n308,429,4.5\n308,430,4.0\n308,431,3.5\n308,432,3.0\n308,433,2.5\n308,434,3.0\n308,435,3.5\n308,436,4.0\n308,437,4.5\n308,438,5.0\n308,439,5.5\n308,440,6.0\n308,441,6.5\n308,442,7.0\n308,443,7.5\n308,444,8.0\n308,445,8.5\n308,446,9.0\n308,447,9.5\n308,448,10.0\n308,449,10.5\n308,450,7.0\n308,451,6.5\n308,452,6.0\n308,453,5.5\n308,454,5.0\n308,455,4.5\n308,456,4.0\n308,457,3.5\n308,458,3.0\n308,459,3.5\n308,460,4.0\n308,461,4.5\n308,462,5.0\n308,463,5.5\n308,464,6.0\n308,465,6.5\n308,466,7.0\n308,467,7.5\n308,468,8.0\n308,469,8.5\n308,470,9.0\n308,471,9.5\n308,472,10.0\n308,473,10.5\n308,474,11.0\n308,475,7.5\n308,476,7.0\n308,477,6.5\n308,478,6.0\n308,479,5.5\n308,480,5.0\n308,481,4.5\n308,482,4.0\n308,483,3.5\n308,484,4.0\n308,485,4.5\n308,486,5.0\n308,487,5.5\n308,488,6.0\n308,489,6.5\n308,490,7.0\n308,491,7.5\n308,492,8.0\n308,493,8.5\n308,494,9.0\n308,495,9.5\n308,496,10.0\n308,497,10.5\n308,498,11.0\n308,499,11.5\n308,500,8.0\n308,501,7.5\n308,502,7.0\n308,503,6.5\n308,504,6.0\n308,505,5.5\n308,506,5.0\n308,507,4.5\n308,508,4.0\n308,509,4.5\n308,510,5.0\n308,511,5.5\n308,512,6.0\n308,513,6.5\n308,514,7.0\n308,515,7.5\n308,516,8.0\n308,517,8.5\n308,518,9.0\n308,519,9.5\n308,520,10.0\n308,521,10.5\n308,522,11.0\n308,523,11.5\n308,524,12.0\n308,525,8.5\n308,526,8.0\n308,527,7.5\n308,528,7.0\n308,529,6.5\n308,530,6.0\n308,531,5.5\n308,532,5.0\n308,533,4.5\n308,534,5.0\n308,535,5.5\n308,536,6.0\n308,537,6.5\n308,538,7.0\n308,539,7.5\n308,540,8.0\n308,541,8.5\n308,542,9.0\n308,543,9.5\n308,544,10.0\n308,545,10.5\n308,546,11.0\n308,547,11.5\n308,548,12.0\n308,549,12.5\n308,550,9.0\n308,551,8.5\n308,552,8.0\n308,553,7.5\n308,554,7.0\n308,555,6.5\n308,556,6.0\n308,557,5.5\n308,558,5.0\n308,559,5.5\n308,560,6.0\n308,561,6.5\n308,562,7.0\n308,563,7.5\n308,564,8.0\n308,565,8.5\n308,566,9.0\n308,567,9.5\n308,568,10.0\n308,569,10.5\n308,570,11.0\n308,571,11.5\n308,572,12.0\n308,573,12.5\n308,574,13.0\n308,575,9.5\n308,576,9.0\n308,577,8.5\n308,578,8.0\n308,579,7.5\n308,580,7.0\n308,581,6.5\n308,582,6.0\n308,583,5.5\n308,584,6.0\n308,585,6.5\n308,586,7.0\n308,587,7.5\n308,588,8.0\n308,589,8.5\n308,590,9.0\n308,591,9.5\n308,592,10.0\n308,593,10.5\n308,594,11.0\n308,595,11.5\n308,596,12.0\n308,597,12.5\n308,598,13.0\n308,599,13.5\n308,600,10.0\n308,601,9.5\n308,602,9.0\n308,603,8.5\n308,604,8.0\n308,605,7.5\n308,606,7.0\n308,607,6.5\n308,608,6.0\n308,609,6.5\n308,610,7.0\n308,611,7.5\n308,612,8.0\n308,613,8.5\n308,614,9.0\n308,615,9.5\n308,616,10.0\n308,617,10.5\n308,618,11.0\n308,619,11.5\n308,620,12.0\n308,621,12.5\n308,622,13.0\n308,623,13.5\n308,624,14.0\n309,0,10.5\n309,1,10.0\n309,2,9.5\n309,3,9.0\n309,4,8.5\n309,5,8.0\n309,6,7.5\n309,7,7.0\n309,8,6.5\n309,9,6.0\n309,10,6.5\n309,11,7.0\n309,12,7.5\n309,13,8.0\n309,14,8.5\n309,15,9.0\n309,16,9.5\n309,17,10.0\n309,18,10.5\n309,19,11.0\n309,20,11.5\n309,21,12.0\n309,22,12.5\n309,23,13.0\n309,24,13.5\n309,25,10.0\n309,26,9.5\n309,27,9.0\n309,28,8.5\n309,29,8.0\n309,30,7.5\n309,31,7.0\n309,32,6.5\n309,33,6.0\n309,34,5.5\n309,35,6.0\n309,36,6.5\n309,37,7.0\n309,38,7.5\n309,39,8.0\n309,40,8.5\n309,41,9.0\n309,42,9.5\n309,43,10.0\n309,44,10.5\n309,45,11.0\n309,46,11.5\n309,47,12.0\n309,48,12.5\n309,49,13.0\n309,50,9.5\n309,51,9.0\n309,52,8.5\n309,53,8.0\n309,54,7.5\n309,55,7.0\n309,56,6.5\n309,57,6.0\n309,58,5.5\n309,59,5.0\n309,60,5.5\n309,61,6.0\n309,62,6.5\n309,63,7.0\n309,64,7.5\n309,65,8.0\n309,66,8.5\n309,67,9.0\n309,68,9.5\n309,69,10.0\n309,70,10.5\n309,71,11.0\n309,72,11.5\n309,73,12.0\n309,74,12.5\n309,75,9.0\n309,76,8.5\n309,77,8.0\n309,78,7.5\n309,79,7.0\n309,80,6.5\n309,81,6.0\n309,82,5.5\n309,83,5.0\n309,84,4.5\n309,85,5.0\n309,86,5.5\n309,87,6.0\n309,88,6.5\n309,89,7.0\n309,90,7.5\n309,91,8.0\n309,92,8.5\n309,93,9.0\n309,94,9.5\n309,95,10.0\n309,96,10.5\n309,97,11.0\n309,98,11.5\n309,99,12.0\n309,100,8.5\n309,101,8.0\n309,102,7.5\n309,103,7.0\n309,104,6.5\n309,105,6.0\n309,106,5.5\n309,107,5.0\n309,108,4.5\n309,109,4.0\n309,110,4.5\n309,111,5.0\n309,112,5.5\n309,113,6.0\n309,114,6.5\n309,115,7.0\n309,116,7.5\n309,117,8.0\n309,118,8.5\n309,119,9.0\n309,120,9.5\n309,121,10.0\n309,122,10.5\n309,123,11.0\n309,124,11.5\n309,125,8.0\n309,126,7.5\n309,127,7.0\n309,128,6.5\n309,129,6.0\n309,130,5.5\n309,131,5.0\n309,132,4.5\n309,133,4.0\n309,134,3.5\n309,135,4.0\n309,136,4.5\n309,137,5.0\n309,138,5.5\n309,139,6.0\n309,140,6.5\n309,141,7.0\n309,142,7.5\n309,143,8.0\n309,144,8.5\n309,145,9.0\n309,146,9.5\n309,147,10.0\n309,148,10.5\n309,149,11.0\n309,150,7.5\n309,151,7.0\n309,152,6.5\n309,153,6.0\n309,154,5.5\n309,155,5.0\n309,156,4.5\n309,157,4.0\n309,158,3.5\n309,159,3.0\n309,160,3.5\n309,161,4.0\n309,162,4.5\n309,163,5.0\n309,164,5.5\n309,165,6.0\n309,166,6.5\n309,167,7.0\n309,168,7.5\n309,169,8.0\n309,170,8.5\n309,171,9.0\n309,172,9.5\n309,173,10.0\n309,174,10.5\n309,175,7.0\n309,176,6.5\n309,177,6.0\n309,178,5.5\n309,179,5.0\n309,180,4.5\n309,181,4.0\n309,182,3.5\n309,183,3.0\n309,184,2.5\n309,185,3.0\n309,186,3.5\n309,187,4.0\n309,188,4.5\n309,189,5.0\n309,190,5.5\n309,191,6.0\n309,192,6.5\n309,193,7.0\n309,194,7.5\n309,195,8.0\n309,196,8.5\n309,197,9.0\n309,198,9.5\n309,199,10.0\n309,200,6.5\n309,201,6.0\n309,202,5.5\n309,203,5.0\n309,204,4.5\n309,205,4.0\n309,206,3.5\n309,207,3.0\n309,208,2.5\n309,209,2.0\n309,210,2.5\n309,211,3.0\n309,212,3.5\n309,213,4.0\n309,214,4.5\n309,215,5.0\n309,216,5.5\n309,217,6.0\n309,218,6.5\n309,219,7.0\n309,220,7.5\n309,221,8.0\n309,222,8.5\n309,223,9.0\n309,224,9.5\n309,225,6.0\n309,226,5.5\n309,227,5.0\n309,228,4.5\n309,229,4.0\n309,230,3.5\n309,231,3.0\n309,232,2.5\n309,233,2.0\n309,234,1.5\n309,235,2.0\n309,236,2.5\n309,237,3.0\n309,238,3.5\n309,239,4.0\n309,240,4.5\n309,241,5.0\n309,242,5.5\n309,243,6.0\n309,244,6.5\n309,245,7.0\n309,246,7.5\n309,247,8.0\n309,248,8.5\n309,249,9.0\n309,250,5.5\n309,251,5.0\n309,252,4.5\n309,253,4.0\n309,254,3.5\n309,255,3.0\n309,256,2.5\n309,257,2.0\n309,258,1.5\n309,259,1.0\n309,260,1.5\n309,261,2.0\n309,262,2.5\n309,263,3.0\n309,264,3.5\n309,265,4.0\n309,266,4.5\n309,267,5.0\n309,268,5.5\n309,269,6.0\n309,270,6.5\n309,271,7.0\n309,272,7.5\n309,273,8.0\n309,274,8.5\n309,275,5.0\n309,276,4.5\n309,277,4.0\n309,278,3.5\n309,279,3.0\n309,280,2.5\n309,281,2.0\n309,282,1.5\n309,283,1.0\n309,284,0.5\n309,285,1.0\n309,286,1.5\n309,287,2.0\n309,288,2.5\n309,289,3.0\n309,290,3.5\n309,291,4.0\n309,292,4.5\n309,293,5.0\n309,294,5.5\n309,295,6.0\n309,296,6.5\n309,297,7.0\n309,298,7.5\n309,299,8.0\n309,300,4.5\n309,301,4.0\n309,302,3.5\n309,303,3.0\n309,304,2.5\n309,305,2.0\n309,306,1.5\n309,307,1.0\n309,308,0.5\n309,309,0\n309,310,0.5\n309,311,1.0\n309,312,1.5\n309,313,2.0\n309,314,2.5\n309,315,3.0\n309,316,3.5\n309,317,4.0\n309,318,4.5\n309,319,5.0\n309,320,5.5\n309,321,6.0\n309,322,6.5\n309,323,7.0\n309,324,7.5\n309,325,5.0\n309,326,4.5\n309,327,4.0\n309,328,3.5\n309,329,3.0\n309,330,2.5\n309,331,2.0\n309,332,1.5\n309,333,1.0\n309,334,0.5\n309,335,1.0\n309,336,1.5\n309,337,2.0\n309,338,2.5\n309,339,3.0\n309,340,3.5\n309,341,4.0\n309,342,4.5\n309,343,5.0\n309,344,5.5\n309,345,6.0\n309,346,6.5\n309,347,7.0\n309,348,7.5\n309,349,8.0\n309,350,5.5\n309,351,5.0\n309,352,4.5\n309,353,4.0\n309,354,3.5\n309,355,3.0\n309,356,2.5\n309,357,2.0\n309,358,1.5\n309,359,1.0\n309,360,1.5\n309,361,2.0\n309,362,2.5\n309,363,3.0\n309,364,3.5\n309,365,4.0\n309,366,4.5\n309,367,5.0\n309,368,5.5\n309,369,6.0\n309,370,6.5\n309,371,7.0\n309,372,7.5\n309,373,8.0\n309,374,8.5\n309,375,6.0\n309,376,5.5\n309,377,5.0\n309,378,4.5\n309,379,4.0\n309,380,3.5\n309,381,3.0\n309,382,2.5\n309,383,2.0\n309,384,1.5\n309,385,2.0\n309,386,2.5\n309,387,3.0\n309,388,3.5\n309,389,4.0\n309,390,4.5\n309,391,5.0\n309,392,5.5\n309,393,6.0\n309,394,6.5\n309,395,7.0\n309,396,7.5\n309,397,8.0\n309,398,8.5\n309,399,9.0\n309,400,6.5\n309,401,6.0\n309,402,5.5\n309,403,5.0\n309,404,4.5\n309,405,4.0\n309,406,3.5\n309,407,3.0\n309,408,2.5\n309,409,2.0\n309,410,2.5\n309,411,3.0\n309,412,3.5\n309,413,4.0\n309,414,4.5\n309,415,5.0\n309,416,5.5\n309,417,6.0\n309,418,6.5\n309,419,7.0\n309,420,7.5\n309,421,8.0\n309,422,8.5\n309,423,9.0\n309,424,9.5\n309,425,7.0\n309,426,6.5\n309,427,6.0\n309,428,5.5\n309,429,5.0\n309,430,4.5\n309,431,4.0\n309,432,3.5\n309,433,3.0\n309,434,2.5\n309,435,3.0\n309,436,3.5\n309,437,4.0\n309,438,4.5\n309,439,5.0\n309,440,5.5\n309,441,6.0\n309,442,6.5\n309,443,7.0\n309,444,7.5\n309,445,8.0\n309,446,8.5\n309,447,9.0\n309,448,9.5\n309,449,10.0\n309,450,7.5\n309,451,7.0\n309,452,6.5\n309,453,6.0\n309,454,5.5\n309,455,5.0\n309,456,4.5\n309,457,4.0\n309,458,3.5\n309,459,3.0\n309,460,3.5\n309,461,4.0\n309,462,4.5\n309,463,5.0\n309,464,5.5\n309,465,6.0\n309,466,6.5\n309,467,7.0\n309,468,7.5\n309,469,8.0\n309,470,8.5\n309,471,9.0\n309,472,9.5\n309,473,10.0\n309,474,10.5\n309,475,8.0\n309,476,7.5\n309,477,7.0\n309,478,6.5\n309,479,6.0\n309,480,5.5\n309,481,5.0\n309,482,4.5\n309,483,4.0\n309,484,3.5\n309,485,4.0\n309,486,4.5\n309,487,5.0\n309,488,5.5\n309,489,6.0\n309,490,6.5\n309,491,7.0\n309,492,7.5\n309,493,8.0\n309,494,8.5\n309,495,9.0\n309,496,9.5\n309,497,10.0\n309,498,10.5\n309,499,11.0\n309,500,8.5\n309,501,8.0\n309,502,7.5\n309,503,7.0\n309,504,6.5\n309,505,6.0\n309,506,5.5\n309,507,5.0\n309,508,4.5\n309,509,4.0\n309,510,4.5\n309,511,5.0\n309,512,5.5\n309,513,6.0\n309,514,6.5\n309,515,7.0\n309,516,7.5\n309,517,8.0\n309,518,8.5\n309,519,9.0\n309,520,9.5\n309,521,10.0\n309,522,10.5\n309,523,11.0\n309,524,11.5\n309,525,9.0\n309,526,8.5\n309,527,8.0\n309,528,7.5\n309,529,7.0\n309,530,6.5\n309,531,6.0\n309,532,5.5\n309,533,5.0\n309,534,4.5\n309,535,5.0\n309,536,5.5\n309,537,6.0\n309,538,6.5\n309,539,7.0\n309,540,7.5\n309,541,8.0\n309,542,8.5\n309,543,9.0\n309,544,9.5\n309,545,10.0\n309,546,10.5\n309,547,11.0\n309,548,11.5\n309,549,12.0\n309,550,9.5\n309,551,9.0\n309,552,8.5\n309,553,8.0\n309,554,7.5\n309,555,7.0\n309,556,6.5\n309,557,6.0\n309,558,5.5\n309,559,5.0\n309,560,5.5\n309,561,6.0\n309,562,6.5\n309,563,7.0\n309,564,7.5\n309,565,8.0\n309,566,8.5\n309,567,9.0\n309,568,9.5\n309,569,10.0\n309,570,10.5\n309,571,11.0\n309,572,11.5\n309,573,12.0\n309,574,12.5\n309,575,10.0\n309,576,9.5\n309,577,9.0\n309,578,8.5\n309,579,8.0\n309,580,7.5\n309,581,7.0\n309,582,6.5\n309,583,6.0\n309,584,5.5\n309,585,6.0\n309,586,6.5\n309,587,7.0\n309,588,7.5\n309,589,8.0\n309,590,8.5\n309,591,9.0\n309,592,9.5\n309,593,10.0\n309,594,10.5\n309,595,11.0\n309,596,11.5\n309,597,12.0\n309,598,12.5\n309,599,13.0\n309,600,10.5\n309,601,10.0\n309,602,9.5\n309,603,9.0\n309,604,8.5\n309,605,8.0\n309,606,7.5\n309,607,7.0\n309,608,6.5\n309,609,6.0\n309,610,6.5\n309,611,7.0\n309,612,7.5\n309,613,8.0\n309,614,8.5\n309,615,9.0\n309,616,9.5\n309,617,10.0\n309,618,10.5\n309,619,11.0\n309,620,11.5\n309,621,12.0\n309,622,12.5\n309,623,13.0\n309,624,13.5\n310,0,11.0\n310,1,10.5\n310,2,10.0\n310,3,9.5\n310,4,9.0\n310,5,8.5\n310,6,8.0\n310,7,7.5\n310,8,7.0\n310,9,6.5\n310,10,6.0\n310,11,6.5\n310,12,7.0\n310,13,7.5\n310,14,8.0\n310,15,8.5\n310,16,9.0\n310,17,9.5\n310,18,10.0\n310,19,10.5\n310,20,11.0\n310,21,11.5\n310,22,12.0\n310,23,12.5\n310,24,13.0\n310,25,10.5\n310,26,10.0\n310,27,9.5\n310,28,9.0\n310,29,8.5\n310,30,8.0\n310,31,7.5\n310,32,7.0\n310,33,6.5\n310,34,6.0\n310,35,5.5\n310,36,6.0\n310,37,6.5\n310,38,7.0\n310,39,7.5\n310,40,8.0\n310,41,8.5\n310,42,9.0\n310,43,9.5\n310,44,10.0\n310,45,10.5\n310,46,11.0\n310,47,11.5\n310,48,12.0\n310,49,12.5\n310,50,10.0\n310,51,9.5\n310,52,9.0\n310,53,8.5\n310,54,8.0\n310,55,7.5\n310,56,7.0\n310,57,6.5\n310,58,6.0\n310,59,5.5\n310,60,5.0\n310,61,5.5\n310,62,6.0\n310,63,6.5\n310,64,7.0\n310,65,7.5\n310,66,8.0\n310,67,8.5\n310,68,9.0\n310,69,9.5\n310,70,10.0\n310,71,10.5\n310,72,11.0\n310,73,11.5\n310,74,12.0\n310,75,9.5\n310,76,9.0\n310,77,8.5\n310,78,8.0\n310,79,7.5\n310,80,7.0\n310,81,6.5\n310,82,6.0\n310,83,5.5\n310,84,5.0\n310,85,4.5\n310,86,5.0\n310,87,5.5\n310,88,6.0\n310,89,6.5\n310,90,7.0\n310,91,7.5\n310,92,8.0\n310,93,8.5\n310,94,9.0\n310,95,9.5\n310,96,10.0\n310,97,10.5\n310,98,11.0\n310,99,11.5\n310,100,9.0\n310,101,8.5\n310,102,8.0\n310,103,7.5\n310,104,7.0\n310,105,6.5\n310,106,6.0\n310,107,5.5\n310,108,5.0\n310,109,4.5\n310,110,4.0\n310,111,4.5\n310,112,5.0\n310,113,5.5\n310,114,6.0\n310,115,6.5\n310,116,7.0\n310,117,7.5\n310,118,8.0\n310,119,8.5\n310,120,9.0\n310,121,9.5\n310,122,10.0\n310,123,10.5\n310,124,11.0\n310,125,8.5\n310,126,8.0\n310,127,7.5\n310,128,7.0\n310,129,6.5\n310,130,6.0\n310,131,5.5\n310,132,5.0\n310,133,4.5\n310,134,4.0\n310,135,3.5\n310,136,4.0\n310,137,4.5\n310,138,5.0\n310,139,5.5\n310,140,6.0\n310,141,6.5\n310,142,7.0\n310,143,7.5\n310,144,8.0\n310,145,8.5\n310,146,9.0\n310,147,9.5\n310,148,10.0\n310,149,10.5\n310,150,8.0\n310,151,7.5\n310,152,7.0\n310,153,6.5\n310,154,6.0\n310,155,5.5\n310,156,5.0\n310,157,4.5\n310,158,4.0\n310,159,3.5\n310,160,3.0\n310,161,3.5\n310,162,4.0\n310,163,4.5\n310,164,5.0\n310,165,5.5\n310,166,6.0\n310,167,6.5\n310,168,7.0\n310,169,7.5\n310,170,8.0\n310,171,8.5\n310,172,9.0\n310,173,9.5\n310,174,10.0\n310,175,7.5\n310,176,7.0\n310,177,6.5\n310,178,6.0\n310,179,5.5\n310,180,5.0\n310,181,4.5\n310,182,4.0\n310,183,3.5\n310,184,3.0\n310,185,2.5\n310,186,3.0\n310,187,3.5\n310,188,4.0\n310,189,4.5\n310,190,5.0\n310,191,5.5\n310,192,6.0\n310,193,6.5\n310,194,7.0\n310,195,7.5\n310,196,8.0\n310,197,8.5\n310,198,9.0\n310,199,9.5\n310,200,7.0\n310,201,6.5\n310,202,6.0\n310,203,5.5\n310,204,5.0\n310,205,4.5\n310,206,4.0\n310,207,3.5\n310,208,3.0\n310,209,2.5\n310,210,2.0\n310,211,2.5\n310,212,3.0\n310,213,3.5\n310,214,4.0\n310,215,4.5\n310,216,5.0\n310,217,5.5\n310,218,6.0\n310,219,6.5\n310,220,7.0\n310,221,7.5\n310,222,8.0\n310,223,8.5\n310,224,9.0\n310,225,6.5\n310,226,6.0\n310,227,5.5\n310,228,5.0\n310,229,4.5\n310,230,4.0\n310,231,3.5\n310,232,3.0\n310,233,2.5\n310,234,2.0\n310,235,1.5\n310,236,2.0\n310,237,2.5\n310,238,3.0\n310,239,3.5\n310,240,4.0\n310,241,4.5\n310,242,5.0\n310,243,5.5\n310,244,6.0\n310,245,6.5\n310,246,7.0\n310,247,7.5\n310,248,8.0\n310,249,8.5\n310,250,6.0\n310,251,5.5\n310,252,5.0\n310,253,4.5\n310,254,4.0\n310,255,3.5\n310,256,3.0\n310,257,2.5\n310,258,2.0\n310,259,1.5\n310,260,1.0\n310,261,1.5\n310,262,2.0\n310,263,2.5\n310,264,3.0\n310,265,3.5\n310,266,4.0\n310,267,4.5\n310,268,5.0\n310,269,5.5\n310,270,6.0\n310,271,6.5\n310,272,7.0\n310,273,7.5\n310,274,8.0\n310,275,5.5\n310,276,5.0\n310,277,4.5\n310,278,4.0\n310,279,3.5\n310,280,3.0\n310,281,2.5\n310,282,2.0\n310,283,1.5\n310,284,1.0\n310,285,0.5\n310,286,1.0\n310,287,1.5\n310,288,2.0\n310,289,2.5\n310,290,3.0\n310,291,3.5\n310,292,4.0\n310,293,4.5\n310,294,5.0\n310,295,5.5\n310,296,6.0\n310,297,6.5\n310,298,7.0\n310,299,7.5\n310,300,5.0\n310,301,4.5\n310,302,4.0\n310,303,3.5\n310,304,3.0\n310,305,2.5\n310,306,2.0\n310,307,1.5\n310,308,1.0\n310,309,0.5\n310,310,0\n310,311,0.5\n310,312,1.0\n310,313,1.5\n310,314,2.0\n310,315,2.5\n310,316,3.0\n310,317,3.5\n310,318,4.0\n310,319,4.5\n310,320,5.0\n310,321,5.5\n310,322,6.0\n310,323,6.5\n310,324,7.0\n310,325,5.5\n310,326,5.0\n310,327,4.5\n310,328,4.0\n310,329,3.5\n310,330,3.0\n310,331,2.5\n310,332,2.0\n310,333,1.5\n310,334,1.0\n310,335,0.5\n310,336,1.0\n310,337,1.5\n310,338,2.0\n310,339,2.5\n310,340,3.0\n310,341,3.5\n310,342,4.0\n310,343,4.5\n310,344,5.0\n310,345,5.5\n310,346,6.0\n310,347,6.5\n310,348,7.0\n310,349,7.5\n310,350,6.0\n310,351,5.5\n310,352,5.0\n310,353,4.5\n310,354,4.0\n310,355,3.5\n310,356,3.0\n310,357,2.5\n310,358,2.0\n310,359,1.5\n310,360,1.0\n310,361,1.5\n310,362,2.0\n310,363,2.5\n310,364,3.0\n310,365,3.5\n310,366,4.0\n310,367,4.5\n310,368,5.0\n310,369,5.5\n310,370,6.0\n310,371,6.5\n310,372,7.0\n310,373,7.5\n310,374,8.0\n310,375,6.5\n310,376,6.0\n310,377,5.5\n310,378,5.0\n310,379,4.5\n310,380,4.0\n310,381,3.5\n310,382,3.0\n310,383,2.5\n310,384,2.0\n310,385,1.5\n310,386,2.0\n310,387,2.5\n310,388,3.0\n310,389,3.5\n310,390,4.0\n310,391,4.5\n310,392,5.0\n310,393,5.5\n310,394,6.0\n310,395,6.5\n310,396,7.0\n310,397,7.5\n310,398,8.0\n310,399,8.5\n310,400,7.0\n310,401,6.5\n310,402,6.0\n310,403,5.5\n310,404,5.0\n310,405,4.5\n310,406,4.0\n310,407,3.5\n310,408,3.0\n310,409,2.5\n310,410,2.0\n310,411,2.5\n310,412,3.0\n310,413,3.5\n310,414,4.0\n310,415,4.5\n310,416,5.0\n310,417,5.5\n310,418,6.0\n310,419,6.5\n310,420,7.0\n310,421,7.5\n310,422,8.0\n310,423,8.5\n310,424,9.0\n310,425,7.5\n310,426,7.0\n310,427,6.5\n310,428,6.0\n310,429,5.5\n310,430,5.0\n310,431,4.5\n310,432,4.0\n310,433,3.5\n310,434,3.0\n310,435,2.5\n310,436,3.0\n310,437,3.5\n310,438,4.0\n310,439,4.5\n310,440,5.0\n310,441,5.5\n310,442,6.0\n310,443,6.5\n310,444,7.0\n310,445,7.5\n310,446,8.0\n310,447,8.5\n310,448,9.0\n310,449,9.5\n310,450,8.0\n310,451,7.5\n310,452,7.0\n310,453,6.5\n310,454,6.0\n310,455,5.5\n310,456,5.0\n310,457,4.5\n310,458,4.0\n310,459,3.5\n310,460,3.0\n310,461,3.5\n310,462,4.0\n310,463,4.5\n310,464,5.0\n310,465,5.5\n310,466,6.0\n310,467,6.5\n310,468,7.0\n310,469,7.5\n310,470,8.0\n310,471,8.5\n310,472,9.0\n310,473,9.5\n310,474,10.0\n310,475,8.5\n310,476,8.0\n310,477,7.5\n310,478,7.0\n310,479,6.5\n310,480,6.0\n310,481,5.5\n310,482,5.0\n310,483,4.5\n310,484,4.0\n310,485,3.5\n310,486,4.0\n310,487,4.5\n310,488,5.0\n310,489,5.5\n310,490,6.0\n310,491,6.5\n310,492,7.0\n310,493,7.5\n310,494,8.0\n310,495,8.5\n310,496,9.0\n310,497,9.5\n310,498,10.0\n310,499,10.5\n310,500,9.0\n310,501,8.5\n310,502,8.0\n310,503,7.5\n310,504,7.0\n310,505,6.5\n310,506,6.0\n310,507,5.5\n310,508,5.0\n310,509,4.5\n310,510,4.0\n310,511,4.5\n310,512,5.0\n310,513,5.5\n310,514,6.0\n310,515,6.5\n310,516,7.0\n310,517,7.5\n310,518,8.0\n310,519,8.5\n310,520,9.0\n310,521,9.5\n310,522,10.0\n310,523,10.5\n310,524,11.0\n310,525,9.5\n310,526,9.0\n310,527,8.5\n310,528,8.0\n310,529,7.5\n310,530,7.0\n310,531,6.5\n310,532,6.0\n310,533,5.5\n310,534,5.0\n310,535,4.5\n310,536,5.0\n310,537,5.5\n310,538,6.0\n310,539,6.5\n310,540,7.0\n310,541,7.5\n310,542,8.0\n310,543,8.5\n310,544,9.0\n310,545,9.5\n310,546,10.0\n310,547,10.5\n310,548,11.0\n310,549,11.5\n310,550,10.0\n310,551,9.5\n310,552,9.0\n310,553,8.5\n310,554,8.0\n310,555,7.5\n310,556,7.0\n310,557,6.5\n310,558,6.0\n310,559,5.5\n310,560,5.0\n310,561,5.5\n310,562,6.0\n310,563,6.5\n310,564,7.0\n310,565,7.5\n310,566,8.0\n310,567,8.5\n310,568,9.0\n310,569,9.5\n310,570,10.0\n310,571,10.5\n310,572,11.0\n310,573,11.5\n310,574,12.0\n310,575,10.5\n310,576,10.0\n310,577,9.5\n310,578,9.0\n310,579,8.5\n310,580,8.0\n310,581,7.5\n310,582,7.0\n310,583,6.5\n310,584,6.0\n310,585,5.5\n310,586,6.0\n310,587,6.5\n310,588,7.0\n310,589,7.5\n310,590,8.0\n310,591,8.5\n310,592,9.0\n310,593,9.5\n310,594,10.0\n310,595,10.5\n310,596,11.0\n310,597,11.5\n310,598,12.0\n310,599,12.5\n310,600,11.0\n310,601,10.5\n310,602,10.0\n310,603,9.5\n310,604,9.0\n310,605,8.5\n310,606,8.0\n310,607,7.5\n310,608,7.0\n310,609,6.5\n310,610,6.0\n310,611,6.5\n310,612,7.0\n310,613,7.5\n310,614,8.0\n310,615,8.5\n310,616,9.0\n310,617,9.5\n310,618,10.0\n310,619,10.5\n310,620,11.0\n310,621,11.5\n310,622,12.0\n310,623,12.5\n310,624,13.0\n311,0,11.5\n311,1,11.0\n311,2,10.5\n311,3,10.0\n311,4,9.5\n311,5,9.0\n311,6,8.5\n311,7,8.0\n311,8,7.5\n311,9,7.0\n311,10,6.5\n311,11,6.0\n311,12,6.5\n311,13,7.0\n311,14,7.5\n311,15,8.0\n311,16,8.5\n311,17,9.0\n311,18,9.5\n311,19,10.0\n311,20,10.5\n311,21,11.0\n311,22,11.5\n311,23,12.0\n311,24,12.5\n311,25,11.0\n311,26,10.5\n311,27,10.0\n311,28,9.5\n311,29,9.0\n311,30,8.5\n311,31,8.0\n311,32,7.5\n311,33,7.0\n311,34,6.5\n311,35,6.0\n311,36,5.5\n311,37,6.0\n311,38,6.5\n311,39,7.0\n311,40,7.5\n311,41,8.0\n311,42,8.5\n311,43,9.0\n311,44,9.5\n311,45,10.0\n311,46,10.5\n311,47,11.0\n311,48,11.5\n311,49,12.0\n311,50,10.5\n311,51,10.0\n311,52,9.5\n311,53,9.0\n311,54,8.5\n311,55,8.0\n311,56,7.5\n311,57,7.0\n311,58,6.5\n311,59,6.0\n311,60,5.5\n311,61,5.0\n311,62,5.5\n311,63,6.0\n311,64,6.5\n311,65,7.0\n311,66,7.5\n311,67,8.0\n311,68,8.5\n311,69,9.0\n311,70,9.5\n311,71,10.0\n311,72,10.5\n311,73,11.0\n311,74,11.5\n311,75,10.0\n311,76,9.5\n311,77,9.0\n311,78,8.5\n311,79,8.0\n311,80,7.5\n311,81,7.0\n311,82,6.5\n311,83,6.0\n311,84,5.5\n311,85,5.0\n311,86,4.5\n311,87,5.0\n311,88,5.5\n311,89,6.0\n311,90,6.5\n311,91,7.0\n311,92,7.5\n311,93,8.0\n311,94,8.5\n311,95,9.0\n311,96,9.5\n311,97,10.0\n311,98,10.5\n311,99,11.0\n311,100,9.5\n311,101,9.0\n311,102,8.5\n311,103,8.0\n311,104,7.5\n311,105,7.0\n311,106,6.5\n311,107,6.0\n311,108,5.5\n311,109,5.0\n311,110,4.5\n311,111,4.0\n311,112,4.5\n311,113,5.0\n311,114,5.5\n311,115,6.0\n311,116,6.5\n311,117,7.0\n311,118,7.5\n311,119,8.0\n311,120,8.5\n311,121,9.0\n311,122,9.5\n311,123,10.0\n311,124,10.5\n311,125,9.0\n311,126,8.5\n311,127,8.0\n311,128,7.5\n311,129,7.0\n311,130,6.5\n311,131,6.0\n311,132,5.5\n311,133,5.0\n311,134,4.5\n311,135,4.0\n311,136,3.5\n311,137,4.0\n311,138,4.5\n311,139,5.0\n311,140,5.5\n311,141,6.0\n311,142,6.5\n311,143,7.0\n311,144,7.5\n311,145,8.0\n311,146,8.5\n311,147,9.0\n311,148,9.5\n311,149,10.0\n311,150,8.5\n311,151,8.0\n311,152,7.5\n311,153,7.0\n311,154,6.5\n311,155,6.0\n311,156,5.5\n311,157,5.0\n311,158,4.5\n311,159,4.0\n311,160,3.5\n311,161,3.0\n311,162,3.5\n311,163,4.0\n311,164,4.5\n311,165,5.0\n311,166,5.5\n311,167,6.0\n311,168,6.5\n311,169,7.0\n311,170,7.5\n311,171,8.0\n311,172,8.5\n311,173,9.0\n311,174,9.5\n311,175,8.0\n311,176,7.5\n311,177,7.0\n311,178,6.5\n311,179,6.0\n311,180,5.5\n311,181,5.0\n311,182,4.5\n311,183,4.0\n311,184,3.5\n311,185,3.0\n311,186,2.5\n311,187,3.0\n311,188,3.5\n311,189,4.0\n311,190,4.5\n311,191,5.0\n311,192,5.5\n311,193,6.0\n311,194,6.5\n311,195,7.0\n311,196,7.5\n311,197,8.0\n311,198,8.5\n311,199,9.0\n311,200,7.5\n311,201,7.0\n311,202,6.5\n311,203,6.0\n311,204,5.5\n311,205,5.0\n311,206,4.5\n311,207,4.0\n311,208,3.5\n311,209,3.0\n311,210,2.5\n311,211,2.0\n311,212,2.5\n311,213,3.0\n311,214,3.5\n311,215,4.0\n311,216,4.5\n311,217,5.0\n311,218,5.5\n311,219,6.0\n311,220,6.5\n311,221,7.0\n311,222,7.5\n311,223,8.0\n311,224,8.5\n311,225,7.0\n311,226,6.5\n311,227,6.0\n311,228,5.5\n311,229,5.0\n311,230,4.5\n311,231,4.0\n311,232,3.5\n311,233,3.0\n311,234,2.5\n311,235,2.0\n311,236,1.5\n311,237,2.0\n311,238,2.5\n311,239,3.0\n311,240,3.5\n311,241,4.0\n311,242,4.5\n311,243,5.0\n311,244,5.5\n311,245,6.0\n311,246,6.5\n311,247,7.0\n311,248,7.5\n311,249,8.0\n311,250,6.5\n311,251,6.0\n311,252,5.5\n311,253,5.0\n311,254,4.5\n311,255,4.0\n311,256,3.5\n311,257,3.0\n311,258,2.5\n311,259,2.0\n311,260,1.5\n311,261,1.0\n311,262,1.5\n311,263,2.0\n311,264,2.5\n311,265,3.0\n311,266,3.5\n311,267,4.0\n311,268,4.5\n311,269,5.0\n311,270,5.5\n311,271,6.0\n311,272,6.5\n311,273,7.0\n311,274,7.5\n311,275,6.0\n311,276,5.5\n311,277,5.0\n311,278,4.5\n311,279,4.0\n311,280,3.5\n311,281,3.0\n311,282,2.5\n311,283,2.0\n311,284,1.5\n311,285,1.0\n311,286,0.5\n311,287,1.0\n311,288,1.5\n311,289,2.0\n311,290,2.5\n311,291,3.0\n311,292,3.5\n311,293,4.0\n311,294,4.5\n311,295,5.0\n311,296,5.5\n311,297,6.0\n311,298,6.5\n311,299,7.0\n311,300,5.5\n311,301,5.0\n311,302,4.5\n311,303,4.0\n311,304,3.5\n311,305,3.0\n311,306,2.5\n311,307,2.0\n311,308,1.5\n311,309,1.0\n311,310,0.5\n311,311,0\n311,312,0.5\n311,313,1.0\n311,314,1.5\n311,315,2.0\n311,316,2.5\n311,317,3.0\n311,318,3.5\n311,319,4.0\n311,320,4.5\n311,321,5.0\n311,322,5.5\n311,323,6.0\n311,324,6.5\n311,325,6.0\n311,326,5.5\n311,327,5.0\n311,328,4.5\n311,329,4.0\n311,330,3.5\n311,331,3.0\n311,332,2.5\n311,333,2.0\n311,334,1.5\n311,335,1.0\n311,336,0.5\n311,337,1.0\n311,338,1.5\n311,339,2.0\n311,340,2.5\n311,341,3.0\n311,342,3.5\n311,343,4.0\n311,344,4.5\n311,345,5.0\n311,346,5.5\n311,347,6.0\n311,348,6.5\n311,349,7.0\n311,350,6.5\n311,351,6.0\n311,352,5.5\n311,353,5.0\n311,354,4.5\n311,355,4.0\n311,356,3.5\n311,357,3.0\n311,358,2.5\n311,359,2.0\n311,360,1.5\n311,361,1.0\n311,362,1.5\n311,363,2.0\n311,364,2.5\n311,365,3.0\n311,366,3.5\n311,367,4.0\n311,368,4.5\n311,369,5.0\n311,370,5.5\n311,371,6.0\n311,372,6.5\n311,373,7.0\n311,374,7.5\n311,375,7.0\n311,376,6.5\n311,377,6.0\n311,378,5.5\n311,379,5.0\n311,380,4.5\n311,381,4.0\n311,382,3.5\n311,383,3.0\n311,384,2.5\n311,385,2.0\n311,386,1.5\n311,387,2.0\n311,388,2.5\n311,389,3.0\n311,390,3.5\n311,391,4.0\n311,392,4.5\n311,393,5.0\n311,394,5.5\n311,395,6.0\n311,396,6.5\n311,397,7.0\n311,398,7.5\n311,399,8.0\n311,400,7.5\n311,401,7.0\n311,402,6.5\n311,403,6.0\n311,404,5.5\n311,405,5.0\n311,406,4.5\n311,407,4.0\n311,408,3.5\n311,409,3.0\n311,410,2.5\n311,411,2.0\n311,412,2.5\n311,413,3.0\n311,414,3.5\n311,415,4.0\n311,416,4.5\n311,417,5.0\n311,418,5.5\n311,419,6.0\n311,420,6.5\n311,421,7.0\n311,422,7.5\n311,423,8.0\n311,424,8.5\n311,425,8.0\n311,426,7.5\n311,427,7.0\n311,428,6.5\n311,429,6.0\n311,430,5.5\n311,431,5.0\n311,432,4.5\n311,433,4.0\n311,434,3.5\n311,435,3.0\n311,436,2.5\n311,437,3.0\n311,438,3.5\n311,439,4.0\n311,440,4.5\n311,441,5.0\n311,442,5.5\n311,443,6.0\n311,444,6.5\n311,445,7.0\n311,446,7.5\n311,447,8.0\n311,448,8.5\n311,449,9.0\n311,450,8.5\n311,451,8.0\n311,452,7.5\n311,453,7.0\n311,454,6.5\n311,455,6.0\n311,456,5.5\n311,457,5.0\n311,458,4.5\n311,459,4.0\n311,460,3.5\n311,461,3.0\n311,462,3.5\n311,463,4.0\n311,464,4.5\n311,465,5.0\n311,466,5.5\n311,467,6.0\n311,468,6.5\n311,469,7.0\n311,470,7.5\n311,471,8.0\n311,472,8.5\n311,473,9.0\n311,474,9.5\n311,475,9.0\n311,476,8.5\n311,477,8.0\n311,478,7.5\n311,479,7.0\n311,480,6.5\n311,481,6.0\n311,482,5.5\n311,483,5.0\n311,484,4.5\n311,485,4.0\n311,486,3.5\n311,487,4.0\n311,488,4.5\n311,489,5.0\n311,490,5.5\n311,491,6.0\n311,492,6.5\n311,493,7.0\n311,494,7.5\n311,495,8.0\n311,496,8.5\n311,497,9.0\n311,498,9.5\n311,499,10.0\n311,500,9.5\n311,501,9.0\n311,502,8.5\n311,503,8.0\n311,504,7.5\n311,505,7.0\n311,506,6.5\n311,507,6.0\n311,508,5.5\n311,509,5.0\n311,510,4.5\n311,511,4.0\n311,512,4.5\n311,513,5.0\n311,514,5.5\n311,515,6.0\n311,516,6.5\n311,517,7.0\n311,518,7.5\n311,519,8.0\n311,520,8.5\n311,521,9.0\n311,522,9.5\n311,523,10.0\n311,524,10.5\n311,525,10.0\n311,526,9.5\n311,527,9.0\n311,528,8.5\n311,529,8.0\n311,530,7.5\n311,531,7.0\n311,532,6.5\n311,533,6.0\n311,534,5.5\n311,535,5.0\n311,536,4.5\n311,537,5.0\n311,538,5.5\n311,539,6.0\n311,540,6.5\n311,541,7.0\n311,542,7.5\n311,543,8.0\n311,544,8.5\n311,545,9.0\n311,546,9.5\n311,547,10.0\n311,548,10.5\n311,549,11.0\n311,550,10.5\n311,551,10.0\n311,552,9.5\n311,553,9.0\n311,554,8.5\n311,555,8.0\n311,556,7.5\n311,557,7.0\n311,558,6.5\n311,559,6.0\n311,560,5.5\n311,561,5.0\n311,562,5.5\n311,563,6.0\n311,564,6.5\n311,565,7.0\n311,566,7.5\n311,567,8.0\n311,568,8.5\n311,569,9.0\n311,570,9.5\n311,571,10.0\n311,572,10.5\n311,573,11.0\n311,574,11.5\n311,575,11.0\n311,576,10.5\n311,577,10.0\n311,578,9.5\n311,579,9.0\n311,580,8.5\n311,581,8.0\n311,582,7.5\n311,583,7.0\n311,584,6.5\n311,585,6.0\n311,586,5.5\n311,587,6.0\n311,588,6.5\n311,589,7.0\n311,590,7.5\n311,591,8.0\n311,592,8.5\n311,593,9.0\n311,594,9.5\n311,595,10.0\n311,596,10.5\n311,597,11.0\n311,598,11.5\n311,599,12.0\n311,600,11.5\n311,601,11.0\n311,602,10.5\n311,603,10.0\n311,604,9.5\n311,605,9.0\n311,606,8.5\n311,607,8.0\n311,608,7.5\n311,609,7.0\n311,610,6.5\n311,611,6.0\n311,612,6.5\n311,613,7.0\n311,614,7.5\n311,615,8.0\n311,616,8.5\n311,617,9.0\n311,618,9.5\n311,619,10.0\n311,620,10.5\n311,621,11.0\n311,622,11.5\n311,623,12.0\n311,624,12.5\n312,0,12.0\n312,1,11.5\n312,2,11.0\n312,3,10.5\n312,4,10.0\n312,5,9.5\n312,6,9.0\n312,7,8.5\n312,8,8.0\n312,9,7.5\n312,10,7.0\n312,11,6.5\n312,12,6.0\n312,13,6.5\n312,14,7.0\n312,15,7.5\n312,16,8.0\n312,17,8.5\n312,18,9.0\n312,19,9.5\n312,20,10.0\n312,21,10.5\n312,22,11.0\n312,23,11.5\n312,24,12.0\n312,25,11.5\n312,26,11.0\n312,27,10.5\n312,28,10.0\n312,29,9.5\n312,30,9.0\n312,31,8.5\n312,32,8.0\n312,33,7.5\n312,34,7.0\n312,35,6.5\n312,36,6.0\n312,37,5.5\n312,38,6.0\n312,39,6.5\n312,40,7.0\n312,41,7.5\n312,42,8.0\n312,43,8.5\n312,44,9.0\n312,45,9.5\n312,46,10.0\n312,47,10.5\n312,48,11.0\n312,49,11.5\n312,50,11.0\n312,51,10.5\n312,52,10.0\n312,53,9.5\n312,54,9.0\n312,55,8.5\n312,56,8.0\n312,57,7.5\n312,58,7.0\n312,59,6.5\n312,60,6.0\n312,61,5.5\n312,62,5.0\n312,63,5.5\n312,64,6.0\n312,65,6.5\n312,66,7.0\n312,67,7.5\n312,68,8.0\n312,69,8.5\n312,70,9.0\n312,71,9.5\n312,72,10.0\n312,73,10.5\n312,74,11.0\n312,75,10.5\n312,76,10.0\n312,77,9.5\n312,78,9.0\n312,79,8.5\n312,80,8.0\n312,81,7.5\n312,82,7.0\n312,83,6.5\n312,84,6.0\n312,85,5.5\n312,86,5.0\n312,87,4.5\n312,88,5.0\n312,89,5.5\n312,90,6.0\n312,91,6.5\n312,92,7.0\n312,93,7.5\n312,94,8.0\n312,95,8.5\n312,96,9.0\n312,97,9.5\n312,98,10.0\n312,99,10.5\n312,100,10.0\n312,101,9.5\n312,102,9.0\n312,103,8.5\n312,104,8.0\n312,105,7.5\n312,106,7.0\n312,107,6.5\n312,108,6.0\n312,109,5.5\n312,110,5.0\n312,111,4.5\n312,112,4.0\n312,113,4.5\n312,114,5.0\n312,115,5.5\n312,116,6.0\n312,117,6.5\n312,118,7.0\n312,119,7.5\n312,120,8.0\n312,121,8.5\n312,122,9.0\n312,123,9.5\n312,124,10.0\n312,125,9.5\n312,126,9.0\n312,127,8.5\n312,128,8.0\n312,129,7.5\n312,130,7.0\n312,131,6.5\n312,132,6.0\n312,133,5.5\n312,134,5.0\n312,135,4.5\n312,136,4.0\n312,137,3.5\n312,138,4.0\n312,139,4.5\n312,140,5.0\n312,141,5.5\n312,142,6.0\n312,143,6.5\n312,144,7.0\n312,145,7.5\n312,146,8.0\n312,147,8.5\n312,148,9.0\n312,149,9.5\n312,150,9.0\n312,151,8.5\n312,152,8.0\n312,153,7.5\n312,154,7.0\n312,155,6.5\n312,156,6.0\n312,157,5.5\n312,158,5.0\n312,159,4.5\n312,160,4.0\n312,161,3.5\n312,162,3.0\n312,163,3.5\n312,164,4.0\n312,165,4.5\n312,166,5.0\n312,167,5.5\n312,168,6.0\n312,169,6.5\n312,170,7.0\n312,171,7.5\n312,172,8.0\n312,173,8.5\n312,174,9.0\n312,175,8.5\n312,176,8.0\n312,177,7.5\n312,178,7.0\n312,179,6.5\n312,180,6.0\n312,181,5.5\n312,182,5.0\n312,183,4.5\n312,184,4.0\n312,185,3.5\n312,186,3.0\n312,187,2.5\n312,188,3.0\n312,189,3.5\n312,190,4.0\n312,191,4.5\n312,192,5.0\n312,193,5.5\n312,194,6.0\n312,195,6.5\n312,196,7.0\n312,197,7.5\n312,198,8.0\n312,199,8.5\n312,200,8.0\n312,201,7.5\n312,202,7.0\n312,203,6.5\n312,204,6.0\n312,205,5.5\n312,206,5.0\n312,207,4.5\n312,208,4.0\n312,209,3.5\n312,210,3.0\n312,211,2.5\n312,212,2.0\n312,213,2.5\n312,214,3.0\n312,215,3.5\n312,216,4.0\n312,217,4.5\n312,218,5.0\n312,219,5.5\n312,220,6.0\n312,221,6.5\n312,222,7.0\n312,223,7.5\n312,224,8.0\n312,225,7.5\n312,226,7.0\n312,227,6.5\n312,228,6.0\n312,229,5.5\n312,230,5.0\n312,231,4.5\n312,232,4.0\n312,233,3.5\n312,234,3.0\n312,235,2.5\n312,236,2.0\n312,237,1.5\n312,238,2.0\n312,239,2.5\n312,240,3.0\n312,241,3.5\n312,242,4.0\n312,243,4.5\n312,244,5.0\n312,245,5.5\n312,246,6.0\n312,247,6.5\n312,248,7.0\n312,249,7.5\n312,250,7.0\n312,251,6.5\n312,252,6.0\n312,253,5.5\n312,254,5.0\n312,255,4.5\n312,256,4.0\n312,257,3.5\n312,258,3.0\n312,259,2.5\n312,260,2.0\n312,261,1.5\n312,262,1.0\n312,263,1.5\n312,264,2.0\n312,265,2.5\n312,266,3.0\n312,267,3.5\n312,268,4.0\n312,269,4.5\n312,270,5.0\n312,271,5.5\n312,272,6.0\n312,273,6.5\n312,274,7.0\n312,275,6.5\n312,276,6.0\n312,277,5.5\n312,278,5.0\n312,279,4.5\n312,280,4.0\n312,281,3.5\n312,282,3.0\n312,283,2.5\n312,284,2.0\n312,285,1.5\n312,286,1.0\n312,287,0.5\n312,288,1.0\n312,289,1.5\n312,290,2.0\n312,291,2.5\n312,292,3.0\n312,293,3.5\n312,294,4.0\n312,295,4.5\n312,296,5.0\n312,297,5.5\n312,298,6.0\n312,299,6.5\n312,300,6.0\n312,301,5.5\n312,302,5.0\n312,303,4.5\n312,304,4.0\n312,305,3.5\n312,306,3.0\n312,307,2.5\n312,308,2.0\n312,309,1.5\n312,310,1.0\n312,311,0.5\n312,312,0\n312,313,0.5\n312,314,1.0\n312,315,1.5\n312,316,2.0\n312,317,2.5\n312,318,3.0\n312,319,3.5\n312,320,4.0\n312,321,4.5\n312,322,5.0\n312,323,5.5\n312,324,6.0\n312,325,6.5\n312,326,6.0\n312,327,5.5\n312,328,5.0\n312,329,4.5\n312,330,4.0\n312,331,3.5\n312,332,3.0\n312,333,2.5\n312,334,2.0\n312,335,1.5\n312,336,1.0\n312,337,0.5\n312,338,1.0\n312,339,1.5\n312,340,2.0\n312,341,2.5\n312,342,3.0\n312,343,3.5\n312,344,4.0\n312,345,4.5\n312,346,5.0\n312,347,5.5\n312,348,6.0\n312,349,6.5\n312,350,7.0\n312,351,6.5\n312,352,6.0\n312,353,5.5\n312,354,5.0\n312,355,4.5\n312,356,4.0\n312,357,3.5\n312,358,3.0\n312,359,2.5\n312,360,2.0\n312,361,1.5\n312,362,1.0\n312,363,1.5\n312,364,2.0\n312,365,2.5\n312,366,3.0\n312,367,3.5\n312,368,4.0\n312,369,4.5\n312,370,5.0\n312,371,5.5\n312,372,6.0\n312,373,6.5\n312,374,7.0\n312,375,7.5\n312,376,7.0\n312,377,6.5\n312,378,6.0\n312,379,5.5\n312,380,5.0\n312,381,4.5\n312,382,4.0\n312,383,3.5\n312,384,3.0\n312,385,2.5\n312,386,2.0\n312,387,1.5\n312,388,2.0\n312,389,2.5\n312,390,3.0\n312,391,3.5\n312,392,4.0\n312,393,4.5\n312,394,5.0\n312,395,5.5\n312,396,6.0\n312,397,6.5\n312,398,7.0\n312,399,7.5\n312,400,8.0\n312,401,7.5\n312,402,7.0\n312,403,6.5\n312,404,6.0\n312,405,5.5\n312,406,5.0\n312,407,4.5\n312,408,4.0\n312,409,3.5\n312,410,3.0\n312,411,2.5\n312,412,2.0\n312,413,2.5\n312,414,3.0\n312,415,3.5\n312,416,4.0\n312,417,4.5\n312,418,5.0\n312,419,5.5\n312,420,6.0\n312,421,6.5\n312,422,7.0\n312,423,7.5\n312,424,8.0\n312,425,8.5\n312,426,8.0\n312,427,7.5\n312,428,7.0\n312,429,6.5\n312,430,6.0\n312,431,5.5\n312,432,5.0\n312,433,4.5\n312,434,4.0\n312,435,3.5\n312,436,3.0\n312,437,2.5\n312,438,3.0\n312,439,3.5\n312,440,4.0\n312,441,4.5\n312,442,5.0\n312,443,5.5\n312,444,6.0\n312,445,6.5\n312,446,7.0\n312,447,7.5\n312,448,8.0\n312,449,8.5\n312,450,9.0\n312,451,8.5\n312,452,8.0\n312,453,7.5\n312,454,7.0\n312,455,6.5\n312,456,6.0\n312,457,5.5\n312,458,5.0\n312,459,4.5\n312,460,4.0\n312,461,3.5\n312,462,3.0\n312,463,3.5\n312,464,4.0\n312,465,4.5\n312,466,5.0\n312,467,5.5\n312,468,6.0\n312,469,6.5\n312,470,7.0\n312,471,7.5\n312,472,8.0\n312,473,8.5\n312,474,9.0\n312,475,9.5\n312,476,9.0\n312,477,8.5\n312,478,8.0\n312,479,7.5\n312,480,7.0\n312,481,6.5\n312,482,6.0\n312,483,5.5\n312,484,5.0\n312,485,4.5\n312,486,4.0\n312,487,3.5\n312,488,4.0\n312,489,4.5\n312,490,5.0\n312,491,5.5\n312,492,6.0\n312,493,6.5\n312,494,7.0\n312,495,7.5\n312,496,8.0\n312,497,8.5\n312,498,9.0\n312,499,9.5\n312,500,10.0\n312,501,9.5\n312,502,9.0\n312,503,8.5\n312,504,8.0\n312,505,7.5\n312,506,7.0\n312,507,6.5\n312,508,6.0\n312,509,5.5\n312,510,5.0\n312,511,4.5\n312,512,4.0\n312,513,4.5\n312,514,5.0\n312,515,5.5\n312,516,6.0\n312,517,6.5\n312,518,7.0\n312,519,7.5\n312,520,8.0\n312,521,8.5\n312,522,9.0\n312,523,9.5\n312,524,10.0\n312,525,10.5\n312,526,10.0\n312,527,9.5\n312,528,9.0\n312,529,8.5\n312,530,8.0\n312,531,7.5\n312,532,7.0\n312,533,6.5\n312,534,6.0\n312,535,5.5\n312,536,5.0\n312,537,4.5\n312,538,5.0\n312,539,5.5\n312,540,6.0\n312,541,6.5\n312,542,7.0\n312,543,7.5\n312,544,8.0\n312,545,8.5\n312,546,9.0\n312,547,9.5\n312,548,10.0\n312,549,10.5\n312,550,11.0\n312,551,10.5\n312,552,10.0\n312,553,9.5\n312,554,9.0\n312,555,8.5\n312,556,8.0\n312,557,7.5\n312,558,7.0\n312,559,6.5\n312,560,6.0\n312,561,5.5\n312,562,5.0\n312,563,5.5\n312,564,6.0\n312,565,6.5\n312,566,7.0\n312,567,7.5\n312,568,8.0\n312,569,8.5\n312,570,9.0\n312,571,9.5\n312,572,10.0\n312,573,10.5\n312,574,11.0\n312,575,11.5\n312,576,11.0\n312,577,10.5\n312,578,10.0\n312,579,9.5\n312,580,9.0\n312,581,8.5\n312,582,8.0\n312,583,7.5\n312,584,7.0\n312,585,6.5\n312,586,6.0\n312,587,5.5\n312,588,6.0\n312,589,6.5\n312,590,7.0\n312,591,7.5\n312,592,8.0\n312,593,8.5\n312,594,9.0\n312,595,9.5\n312,596,10.0\n312,597,10.5\n312,598,11.0\n312,599,11.5\n312,600,12.0\n312,601,11.5\n312,602,11.0\n312,603,10.5\n312,604,10.0\n312,605,9.5\n312,606,9.0\n312,607,8.5\n312,608,8.0\n312,609,7.5\n312,610,7.0\n312,611,6.5\n312,612,6.0\n312,613,6.5\n312,614,7.0\n312,615,7.5\n312,616,8.0\n312,617,8.5\n312,618,9.0\n312,619,9.5\n312,620,10.0\n312,621,10.5\n312,622,11.0\n312,623,11.5\n312,624,12.0\n313,0,12.5\n313,1,12.0\n313,2,11.5\n313,3,11.0\n313,4,10.5\n313,5,10.0\n313,6,9.5\n313,7,9.0\n313,8,8.5\n313,9,8.0\n313,10,7.5\n313,11,7.0\n313,12,6.5\n313,13,6.0\n313,14,6.5\n313,15,7.0\n313,16,7.5\n313,17,8.0\n313,18,8.5\n313,19,9.0\n313,20,9.5\n313,21,10.0\n313,22,10.5\n313,23,11.0\n313,24,11.5\n313,25,12.0\n313,26,11.5\n313,27,11.0\n313,28,10.5\n313,29,10.0\n313,30,9.5\n313,31,9.0\n313,32,8.5\n313,33,8.0\n313,34,7.5\n313,35,7.0\n313,36,6.5\n313,37,6.0\n313,38,5.5\n313,39,6.0\n313,40,6.5\n313,41,7.0\n313,42,7.5\n313,43,8.0\n313,44,8.5\n313,45,9.0\n313,46,9.5\n313,47,10.0\n313,48,10.5\n313,49,11.0\n313,50,11.5\n313,51,11.0\n313,52,10.5\n313,53,10.0\n313,54,9.5\n313,55,9.0\n313,56,8.5\n313,57,8.0\n313,58,7.5\n313,59,7.0\n313,60,6.5\n313,61,6.0\n313,62,5.5\n313,63,5.0\n313,64,5.5\n313,65,6.0\n313,66,6.5\n313,67,7.0\n313,68,7.5\n313,69,8.0\n313,70,8.5\n313,71,9.0\n313,72,9.5\n313,73,10.0\n313,74,10.5\n313,75,11.0\n313,76,10.5\n313,77,10.0\n313,78,9.5\n313,79,9.0\n313,80,8.5\n313,81,8.0\n313,82,7.5\n313,83,7.0\n313,84,6.5\n313,85,6.0\n313,86,5.5\n313,87,5.0\n313,88,4.5\n313,89,5.0\n313,90,5.5\n313,91,6.0\n313,92,6.5\n313,93,7.0\n313,94,7.5\n313,95,8.0\n313,96,8.5\n313,97,9.0\n313,98,9.5\n313,99,10.0\n313,100,10.5\n313,101,10.0\n313,102,9.5\n313,103,9.0\n313,104,8.5\n313,105,8.0\n313,106,7.5\n313,107,7.0\n313,108,6.5\n313,109,6.0\n313,110,5.5\n313,111,5.0\n313,112,4.5\n313,113,4.0\n313,114,4.5\n313,115,5.0\n313,116,5.5\n313,117,6.0\n313,118,6.5\n313,119,7.0\n313,120,7.5\n313,121,8.0\n313,122,8.5\n313,123,9.0\n313,124,9.5\n313,125,10.0\n313,126,9.5\n313,127,9.0\n313,128,8.5\n313,129,8.0\n313,130,7.5\n313,131,7.0\n313,132,6.5\n313,133,6.0\n313,134,5.5\n313,135,5.0\n313,136,4.5\n313,137,4.0\n313,138,3.5\n313,139,4.0\n313,140,4.5\n313,141,5.0\n313,142,5.5\n313,143,6.0\n313,144,6.5\n313,145,7.0\n313,146,7.5\n313,147,8.0\n313,148,8.5\n313,149,9.0\n313,150,9.5\n313,151,9.0\n313,152,8.5\n313,153,8.0\n313,154,7.5\n313,155,7.0\n313,156,6.5\n313,157,6.0\n313,158,5.5\n313,159,5.0\n313,160,4.5\n313,161,4.0\n313,162,3.5\n313,163,3.0\n313,164,3.5\n313,165,4.0\n313,166,4.5\n313,167,5.0\n313,168,5.5\n313,169,6.0\n313,170,6.5\n313,171,7.0\n313,172,7.5\n313,173,8.0\n313,174,8.5\n313,175,9.0\n313,176,8.5\n313,177,8.0\n313,178,7.5\n313,179,7.0\n313,180,6.5\n313,181,6.0\n313,182,5.5\n313,183,5.0\n313,184,4.5\n313,185,4.0\n313,186,3.5\n313,187,3.0\n313,188,2.5\n313,189,3.0\n313,190,3.5\n313,191,4.0\n313,192,4.5\n313,193,5.0\n313,194,5.5\n313,195,6.0\n313,196,6.5\n313,197,7.0\n313,198,7.5\n313,199,8.0\n313,200,8.5\n313,201,8.0\n313,202,7.5\n313,203,7.0\n313,204,6.5\n313,205,6.0\n313,206,5.5\n313,207,5.0\n313,208,4.5\n313,209,4.0\n313,210,3.5\n313,211,3.0\n313,212,2.5\n313,213,2.0\n313,214,2.5\n313,215,3.0\n313,216,3.5\n313,217,4.0\n313,218,4.5\n313,219,5.0\n313,220,5.5\n313,221,6.0\n313,222,6.5\n313,223,7.0\n313,224,7.5\n313,225,8.0\n313,226,7.5\n313,227,7.0\n313,228,6.5\n313,229,6.0\n313,230,5.5\n313,231,5.0\n313,232,4.5\n313,233,4.0\n313,234,3.5\n313,235,3.0\n313,236,2.5\n313,237,2.0\n313,238,1.5\n313,239,2.0\n313,240,2.5\n313,241,3.0\n313,242,3.5\n313,243,4.0\n313,244,4.5\n313,245,5.0\n313,246,5.5\n313,247,6.0\n313,248,6.5\n313,249,7.0\n313,250,7.5\n313,251,7.0\n313,252,6.5\n313,253,6.0\n313,254,5.5\n313,255,5.0\n313,256,4.5\n313,257,4.0\n313,258,3.5\n313,259,3.0\n313,260,2.5\n313,261,2.0\n313,262,1.5\n313,263,1.0\n313,264,1.5\n313,265,2.0\n313,266,2.5\n313,267,3.0\n313,268,3.5\n313,269,4.0\n313,270,4.5\n313,271,5.0\n313,272,5.5\n313,273,6.0\n313,274,6.5\n313,275,7.0\n313,276,6.5\n313,277,6.0\n313,278,5.5\n313,279,5.0\n313,280,4.5\n313,281,4.0\n313,282,3.5\n313,283,3.0\n313,284,2.5\n313,285,2.0\n313,286,1.5\n313,287,1.0\n313,288,0.5\n313,289,1.0\n313,290,1.5\n313,291,2.0\n313,292,2.5\n313,293,3.0\n313,294,3.5\n313,295,4.0\n313,296,4.5\n313,297,5.0\n313,298,5.5\n313,299,6.0\n313,300,6.5\n313,301,6.0\n313,302,5.5\n313,303,5.0\n313,304,4.5\n313,305,4.0\n313,306,3.5\n313,307,3.0\n313,308,2.5\n313,309,2.0\n313,310,1.5\n313,311,1.0\n313,312,0.5\n313,313,0\n313,314,0.5\n313,315,1.0\n313,316,1.5\n313,317,2.0\n313,318,2.5\n313,319,3.0\n313,320,3.5\n313,321,4.0\n313,322,4.5\n313,323,5.0\n313,324,5.5\n313,325,7.0\n313,326,6.5\n313,327,6.0\n313,328,5.5\n313,329,5.0\n313,330,4.5\n313,331,4.0\n313,332,3.5\n313,333,3.0\n313,334,2.5\n313,335,2.0\n313,336,1.5\n313,337,1.0\n313,338,0.5\n313,339,1.0\n313,340,1.5\n313,341,2.0\n313,342,2.5\n313,343,3.0\n313,344,3.5\n313,345,4.0\n313,346,4.5\n313,347,5.0\n313,348,5.5\n313,349,6.0\n313,350,7.5\n313,351,7.0\n313,352,6.5\n313,353,6.0\n313,354,5.5\n313,355,5.0\n313,356,4.5\n313,357,4.0\n313,358,3.5\n313,359,3.0\n313,360,2.5\n313,361,2.0\n313,362,1.5\n313,363,1.0\n313,364,1.5\n313,365,2.0\n313,366,2.5\n313,367,3.0\n313,368,3.5\n313,369,4.0\n313,370,4.5\n313,371,5.0\n313,372,5.5\n313,373,6.0\n313,374,6.5\n313,375,8.0\n313,376,7.5\n313,377,7.0\n313,378,6.5\n313,379,6.0\n313,380,5.5\n313,381,5.0\n313,382,4.5\n313,383,4.0\n313,384,3.5\n313,385,3.0\n313,386,2.5\n313,387,2.0\n313,388,1.5\n313,389,2.0\n313,390,2.5\n313,391,3.0\n313,392,3.5\n313,393,4.0\n313,394,4.5\n313,395,5.0\n313,396,5.5\n313,397,6.0\n313,398,6.5\n313,399,7.0\n313,400,8.5\n313,401,8.0\n313,402,7.5\n313,403,7.0\n313,404,6.5\n313,405,6.0\n313,406,5.5\n313,407,5.0\n313,408,4.5\n313,409,4.0\n313,410,3.5\n313,411,3.0\n313,412,2.5\n313,413,2.0\n313,414,2.5\n313,415,3.0\n313,416,3.5\n313,417,4.0\n313,418,4.5\n313,419,5.0\n313,420,5.5\n313,421,6.0\n313,422,6.5\n313,423,7.0\n313,424,7.5\n313,425,9.0\n313,426,8.5\n313,427,8.0\n313,428,7.5\n313,429,7.0\n313,430,6.5\n313,431,6.0\n313,432,5.5\n313,433,5.0\n313,434,4.5\n313,435,4.0\n313,436,3.5\n313,437,3.0\n313,438,2.5\n313,439,3.0\n313,440,3.5\n313,441,4.0\n313,442,4.5\n313,443,5.0\n313,444,5.5\n313,445,6.0\n313,446,6.5\n313,447,7.0\n313,448,7.5\n313,449,8.0\n313,450,9.5\n313,451,9.0\n313,452,8.5\n313,453,8.0\n313,454,7.5\n313,455,7.0\n313,456,6.5\n313,457,6.0\n313,458,5.5\n313,459,5.0\n313,460,4.5\n313,461,4.0\n313,462,3.5\n313,463,3.0\n313,464,3.5\n313,465,4.0\n313,466,4.5\n313,467,5.0\n313,468,5.5\n313,469,6.0\n313,470,6.5\n313,471,7.0\n313,472,7.5\n313,473,8.0\n313,474,8.5\n313,475,10.0\n313,476,9.5\n313,477,9.0\n313,478,8.5\n313,479,8.0\n313,480,7.5\n313,481,7.0\n313,482,6.5\n313,483,6.0\n313,484,5.5\n313,485,5.0\n313,486,4.5\n313,487,4.0\n313,488,3.5\n313,489,4.0\n313,490,4.5\n313,491,5.0\n313,492,5.5\n313,493,6.0\n313,494,6.5\n313,495,7.0\n313,496,7.5\n313,497,8.0\n313,498,8.5\n313,499,9.0\n313,500,10.5\n313,501,10.0\n313,502,9.5\n313,503,9.0\n313,504,8.5\n313,505,8.0\n313,506,7.5\n313,507,7.0\n313,508,6.5\n313,509,6.0\n313,510,5.5\n313,511,5.0\n313,512,4.5\n313,513,4.0\n313,514,4.5\n313,515,5.0\n313,516,5.5\n313,517,6.0\n313,518,6.5\n313,519,7.0\n313,520,7.5\n313,521,8.0\n313,522,8.5\n313,523,9.0\n313,524,9.5\n313,525,11.0\n313,526,10.5\n313,527,10.0\n313,528,9.5\n313,529,9.0\n313,530,8.5\n313,531,8.0\n313,532,7.5\n313,533,7.0\n313,534,6.5\n313,535,6.0\n313,536,5.5\n313,537,5.0\n313,538,4.5\n313,539,5.0\n313,540,5.5\n313,541,6.0\n313,542,6.5\n313,543,7.0\n313,544,7.5\n313,545,8.0\n313,546,8.5\n313,547,9.0\n313,548,9.5\n313,549,10.0\n313,550,11.5\n313,551,11.0\n313,552,10.5\n313,553,10.0\n313,554,9.5\n313,555,9.0\n313,556,8.5\n313,557,8.0\n313,558,7.5\n313,559,7.0\n313,560,6.5\n313,561,6.0\n313,562,5.5\n313,563,5.0\n313,564,5.5\n313,565,6.0\n313,566,6.5\n313,567,7.0\n313,568,7.5\n313,569,8.0\n313,570,8.5\n313,571,9.0\n313,572,9.5\n313,573,10.0\n313,574,10.5\n313,575,12.0\n313,576,11.5\n313,577,11.0\n313,578,10.5\n313,579,10.0\n313,580,9.5\n313,581,9.0\n313,582,8.5\n313,583,8.0\n313,584,7.5\n313,585,7.0\n313,586,6.5\n313,587,6.0\n313,588,5.5\n313,589,6.0\n313,590,6.5\n313,591,7.0\n313,592,7.5\n313,593,8.0\n313,594,8.5\n313,595,9.0\n313,596,9.5\n313,597,10.0\n313,598,10.5\n313,599,11.0\n313,600,12.5\n313,601,12.0\n313,602,11.5\n313,603,11.0\n313,604,10.5\n313,605,10.0\n313,606,9.5\n313,607,9.0\n313,608,8.5\n313,609,8.0\n313,610,7.5\n313,611,7.0\n313,612,6.5\n313,613,6.0\n313,614,6.5\n313,615,7.0\n313,616,7.5\n313,617,8.0\n313,618,8.5\n313,619,9.0\n313,620,9.5\n313,621,10.0\n313,622,10.5\n313,623,11.0\n313,624,11.5\n314,0,13.0\n314,1,12.5\n314,2,12.0\n314,3,11.5\n314,4,11.0\n314,5,10.5\n314,6,10.0\n314,7,9.5\n314,8,9.0\n314,9,8.5\n314,10,8.0\n314,11,7.5\n314,12,7.0\n314,13,6.5\n314,14,6.0\n314,15,6.5\n314,16,7.0\n314,17,7.5\n314,18,8.0\n314,19,8.5\n314,20,9.0\n314,21,9.5\n314,22,10.0\n314,23,10.5\n314,24,11.0\n314,25,12.5\n314,26,12.0\n314,27,11.5\n314,28,11.0\n314,29,10.5\n314,30,10.0\n314,31,9.5\n314,32,9.0\n314,33,8.5\n314,34,8.0\n314,35,7.5\n314,36,7.0\n314,37,6.5\n314,38,6.0\n314,39,5.5\n314,40,6.0\n314,41,6.5\n314,42,7.0\n314,43,7.5\n314,44,8.0\n314,45,8.5\n314,46,9.0\n314,47,9.5\n314,48,10.0\n314,49,10.5\n314,50,12.0\n314,51,11.5\n314,52,11.0\n314,53,10.5\n314,54,10.0\n314,55,9.5\n314,56,9.0\n314,57,8.5\n314,58,8.0\n314,59,7.5\n314,60,7.0\n314,61,6.5\n314,62,6.0\n314,63,5.5\n314,64,5.0\n314,65,5.5\n314,66,6.0\n314,67,6.5\n314,68,7.0\n314,69,7.5\n314,70,8.0\n314,71,8.5\n314,72,9.0\n314,73,9.5\n314,74,10.0\n314,75,11.5\n314,76,11.0\n314,77,10.5\n314,78,10.0\n314,79,9.5\n314,80,9.0\n314,81,8.5\n314,82,8.0\n314,83,7.5\n314,84,7.0\n314,85,6.5\n314,86,6.0\n314,87,5.5\n314,88,5.0\n314,89,4.5\n314,90,5.0\n314,91,5.5\n314,92,6.0\n314,93,6.5\n314,94,7.0\n314,95,7.5\n314,96,8.0\n314,97,8.5\n314,98,9.0\n314,99,9.5\n314,100,11.0\n314,101,10.5\n314,102,10.0\n314,103,9.5\n314,104,9.0\n314,105,8.5\n314,106,8.0\n314,107,7.5\n314,108,7.0\n314,109,6.5\n314,110,6.0\n314,111,5.5\n314,112,5.0\n314,113,4.5\n314,114,4.0\n314,115,4.5\n314,116,5.0\n314,117,5.5\n314,118,6.0\n314,119,6.5\n314,120,7.0\n314,121,7.5\n314,122,8.0\n314,123,8.5\n314,124,9.0\n314,125,10.5\n314,126,10.0\n314,127,9.5\n314,128,9.0\n314,129,8.5\n314,130,8.0\n314,131,7.5\n314,132,7.0\n314,133,6.5\n314,134,6.0\n314,135,5.5\n314,136,5.0\n314,137,4.5\n314,138,4.0\n314,139,3.5\n314,140,4.0\n314,141,4.5\n314,142,5.0\n314,143,5.5\n314,144,6.0\n314,145,6.5\n314,146,7.0\n314,147,7.5\n314,148,8.0\n314,149,8.5\n314,150,10.0\n314,151,9.5\n314,152,9.0\n314,153,8.5\n314,154,8.0\n314,155,7.5\n314,156,7.0\n314,157,6.5\n314,158,6.0\n314,159,5.5\n314,160,5.0\n314,161,4.5\n314,162,4.0\n314,163,3.5\n314,164,3.0\n314,165,3.5\n314,166,4.0\n314,167,4.5\n314,168,5.0\n314,169,5.5\n314,170,6.0\n314,171,6.5\n314,172,7.0\n314,173,7.5\n314,174,8.0\n314,175,9.5\n314,176,9.0\n314,177,8.5\n314,178,8.0\n314,179,7.5\n314,180,7.0\n314,181,6.5\n314,182,6.0\n314,183,5.5\n314,184,5.0\n314,185,4.5\n314,186,4.0\n314,187,3.5\n314,188,3.0\n314,189,2.5\n314,190,3.0\n314,191,3.5\n314,192,4.0\n314,193,4.5\n314,194,5.0\n314,195,5.5\n314,196,6.0\n314,197,6.5\n314,198,7.0\n314,199,7.5\n314,200,9.0\n314,201,8.5\n314,202,8.0\n314,203,7.5\n314,204,7.0\n314,205,6.5\n314,206,6.0\n314,207,5.5\n314,208,5.0\n314,209,4.5\n314,210,4.0\n314,211,3.5\n314,212,3.0\n314,213,2.5\n314,214,2.0\n314,215,2.5\n314,216,3.0\n314,217,3.5\n314,218,4.0\n314,219,4.5\n314,220,5.0\n314,221,5.5\n314,222,6.0\n314,223,6.5\n314,224,7.0\n314,225,8.5\n314,226,8.0\n314,227,7.5\n314,228,7.0\n314,229,6.5\n314,230,6.0\n314,231,5.5\n314,232,5.0\n314,233,4.5\n314,234,4.0\n314,235,3.5\n314,236,3.0\n314,237,2.5\n314,238,2.0\n314,239,1.5\n314,240,2.0\n314,241,2.5\n314,242,3.0\n314,243,3.5\n314,244,4.0\n314,245,4.5\n314,246,5.0\n314,247,5.5\n314,248,6.0\n314,249,6.5\n314,250,8.0\n314,251,7.5\n314,252,7.0\n314,253,6.5\n314,254,6.0\n314,255,5.5\n314,256,5.0\n314,257,4.5\n314,258,4.0\n314,259,3.5\n314,260,3.0\n314,261,2.5\n314,262,2.0\n314,263,1.5\n314,264,1.0\n314,265,1.5\n314,266,2.0\n314,267,2.5\n314,268,3.0\n314,269,3.5\n314,270,4.0\n314,271,4.5\n314,272,5.0\n314,273,5.5\n314,274,6.0\n314,275,7.5\n314,276,7.0\n314,277,6.5\n314,278,6.0\n314,279,5.5\n314,280,5.0\n314,281,4.5\n314,282,4.0\n314,283,3.5\n314,284,3.0\n314,285,2.5\n314,286,2.0\n314,287,1.5\n314,288,1.0\n314,289,0.5\n314,290,1.0\n314,291,1.5\n314,292,2.0\n314,293,2.5\n314,294,3.0\n314,295,3.5\n314,296,4.0\n314,297,4.5\n314,298,5.0\n314,299,5.5\n314,300,7.0\n314,301,6.5\n314,302,6.0\n314,303,5.5\n314,304,5.0\n314,305,4.5\n314,306,4.0\n314,307,3.5\n314,308,3.0\n314,309,2.5\n314,310,2.0\n314,311,1.5\n314,312,1.0\n314,313,0.5\n314,314,0\n314,315,0.5\n314,316,1.0\n314,317,1.5\n314,318,2.0\n314,319,2.5\n314,320,3.0\n314,321,3.5\n314,322,4.0\n314,323,4.5\n314,324,5.0\n314,325,7.5\n314,326,7.0\n314,327,6.5\n314,328,6.0\n314,329,5.5\n314,330,5.0\n314,331,4.5\n314,332,4.0\n314,333,3.5\n314,334,3.0\n314,335,2.5\n314,336,2.0\n314,337,1.5\n314,338,1.0\n314,339,0.5\n314,340,1.0\n314,341,1.5\n314,342,2.0\n314,343,2.5\n314,344,3.0\n314,345,3.5\n314,346,4.0\n314,347,4.5\n314,348,5.0\n314,349,5.5\n314,350,8.0\n314,351,7.5\n314,352,7.0\n314,353,6.5\n314,354,6.0\n314,355,5.5\n314,356,5.0\n314,357,4.5\n314,358,4.0\n314,359,3.5\n314,360,3.0\n314,361,2.5\n314,362,2.0\n314,363,1.5\n314,364,1.0\n314,365,1.5\n314,366,2.0\n314,367,2.5\n314,368,3.0\n314,369,3.5\n314,370,4.0\n314,371,4.5\n314,372,5.0\n314,373,5.5\n314,374,6.0\n314,375,8.5\n314,376,8.0\n314,377,7.5\n314,378,7.0\n314,379,6.5\n314,380,6.0\n314,381,5.5\n314,382,5.0\n314,383,4.5\n314,384,4.0\n314,385,3.5\n314,386,3.0\n314,387,2.5\n314,388,2.0\n314,389,1.5\n314,390,2.0\n314,391,2.5\n314,392,3.0\n314,393,3.5\n314,394,4.0\n314,395,4.5\n314,396,5.0\n314,397,5.5\n314,398,6.0\n314,399,6.5\n314,400,9.0\n314,401,8.5\n314,402,8.0\n314,403,7.5\n314,404,7.0\n314,405,6.5\n314,406,6.0\n314,407,5.5\n314,408,5.0\n314,409,4.5\n314,410,4.0\n314,411,3.5\n314,412,3.0\n314,413,2.5\n314,414,2.0\n314,415,2.5\n314,416,3.0\n314,417,3.5\n314,418,4.0\n314,419,4.5\n314,420,5.0\n314,421,5.5\n314,422,6.0\n314,423,6.5\n314,424,7.0\n314,425,9.5\n314,426,9.0\n314,427,8.5\n314,428,8.0\n314,429,7.5\n314,430,7.0\n314,431,6.5\n314,432,6.0\n314,433,5.5\n314,434,5.0\n314,435,4.5\n314,436,4.0\n314,437,3.5\n314,438,3.0\n314,439,2.5\n314,440,3.0\n314,441,3.5\n314,442,4.0\n314,443,4.5\n314,444,5.0\n314,445,5.5\n314,446,6.0\n314,447,6.5\n314,448,7.0\n314,449,7.5\n314,450,10.0\n314,451,9.5\n314,452,9.0\n314,453,8.5\n314,454,8.0\n314,455,7.5\n314,456,7.0\n314,457,6.5\n314,458,6.0\n314,459,5.5\n314,460,5.0\n314,461,4.5\n314,462,4.0\n314,463,3.5\n314,464,3.0\n314,465,3.5\n314,466,4.0\n314,467,4.5\n314,468,5.0\n314,469,5.5\n314,470,6.0\n314,471,6.5\n314,472,7.0\n314,473,7.5\n314,474,8.0\n314,475,10.5\n314,476,10.0\n314,477,9.5\n314,478,9.0\n314,479,8.5\n314,480,8.0\n314,481,7.5\n314,482,7.0\n314,483,6.5\n314,484,6.0\n314,485,5.5\n314,486,5.0\n314,487,4.5\n314,488,4.0\n314,489,3.5\n314,490,4.0\n314,491,4.5\n314,492,5.0\n314,493,5.5\n314,494,6.0\n314,495,6.5\n314,496,7.0\n314,497,7.5\n314,498,8.0\n314,499,8.5\n314,500,11.0\n314,501,10.5\n314,502,10.0\n314,503,9.5\n314,504,9.0\n314,505,8.5\n314,506,8.0\n314,507,7.5\n314,508,7.0\n314,509,6.5\n314,510,6.0\n314,511,5.5\n314,512,5.0\n314,513,4.5\n314,514,4.0\n314,515,4.5\n314,516,5.0\n314,517,5.5\n314,518,6.0\n314,519,6.5\n314,520,7.0\n314,521,7.5\n314,522,8.0\n314,523,8.5\n314,524,9.0\n314,525,11.5\n314,526,11.0\n314,527,10.5\n314,528,10.0\n314,529,9.5\n314,530,9.0\n314,531,8.5\n314,532,8.0\n314,533,7.5\n314,534,7.0\n314,535,6.5\n314,536,6.0\n314,537,5.5\n314,538,5.0\n314,539,4.5\n314,540,5.0\n314,541,5.5\n314,542,6.0\n314,543,6.5\n314,544,7.0\n314,545,7.5\n314,546,8.0\n314,547,8.5\n314,548,9.0\n314,549,9.5\n314,550,12.0\n314,551,11.5\n314,552,11.0\n314,553,10.5\n314,554,10.0\n314,555,9.5\n314,556,9.0\n314,557,8.5\n314,558,8.0\n314,559,7.5\n314,560,7.0\n314,561,6.5\n314,562,6.0\n314,563,5.5\n314,564,5.0\n314,565,5.5\n314,566,6.0\n314,567,6.5\n314,568,7.0\n314,569,7.5\n314,570,8.0\n314,571,8.5\n314,572,9.0\n314,573,9.5\n314,574,10.0\n314,575,12.5\n314,576,12.0\n314,577,11.5\n314,578,11.0\n314,579,10.5\n314,580,10.0\n314,581,9.5\n314,582,9.0\n314,583,8.5\n314,584,8.0\n314,585,7.5\n314,586,7.0\n314,587,6.5\n314,588,6.0\n314,589,5.5\n314,590,6.0\n314,591,6.5\n314,592,7.0\n314,593,7.5\n314,594,8.0\n314,595,8.5\n314,596,9.0\n314,597,9.5\n314,598,10.0\n314,599,10.5\n314,600,13.0\n314,601,12.5\n314,602,12.0\n314,603,11.5\n314,604,11.0\n314,605,10.5\n314,606,10.0\n314,607,9.5\n314,608,9.0\n314,609,8.5\n314,610,8.0\n314,611,7.5\n314,612,7.0\n314,613,6.5\n314,614,6.0\n314,615,6.5\n314,616,7.0\n314,617,7.5\n314,618,8.0\n314,619,8.5\n314,620,9.0\n314,621,9.5\n314,622,10.0\n314,623,10.5\n314,624,11.0\n315,0,13.5\n315,1,13.0\n315,2,12.5\n315,3,12.0\n315,4,11.5\n315,5,11.0\n315,6,10.5\n315,7,10.0\n315,8,9.5\n315,9,9.0\n315,10,8.5\n315,11,8.0\n315,12,7.5\n315,13,7.0\n315,14,6.5\n315,15,6.0\n315,16,6.5\n315,17,7.0\n315,18,7.5\n315,19,8.0\n315,20,8.5\n315,21,9.0\n315,22,9.5\n315,23,10.0\n315,24,10.5\n315,25,13.0\n315,26,12.5\n315,27,12.0\n315,28,11.5\n315,29,11.0\n315,30,10.5\n315,31,10.0\n315,32,9.5\n315,33,9.0\n315,34,8.5\n315,35,8.0\n315,36,7.5\n315,37,7.0\n315,38,6.5\n315,39,6.0\n315,40,5.5\n315,41,6.0\n315,42,6.5\n315,43,7.0\n315,44,7.5\n315,45,8.0\n315,46,8.5\n315,47,9.0\n315,48,9.5\n315,49,10.0\n315,50,12.5\n315,51,12.0\n315,52,11.5\n315,53,11.0\n315,54,10.5\n315,55,10.0\n315,56,9.5\n315,57,9.0\n315,58,8.5\n315,59,8.0\n315,60,7.5\n315,61,7.0\n315,62,6.5\n315,63,6.0\n315,64,5.5\n315,65,5.0\n315,66,5.5\n315,67,6.0\n315,68,6.5\n315,69,7.0\n315,70,7.5\n315,71,8.0\n315,72,8.5\n315,73,9.0\n315,74,9.5\n315,75,12.0\n315,76,11.5\n315,77,11.0\n315,78,10.5\n315,79,10.0\n315,80,9.5\n315,81,9.0\n315,82,8.5\n315,83,8.0\n315,84,7.5\n315,85,7.0\n315,86,6.5\n315,87,6.0\n315,88,5.5\n315,89,5.0\n315,90,4.5\n315,91,5.0\n315,92,5.5\n315,93,6.0\n315,94,6.5\n315,95,7.0\n315,96,7.5\n315,97,8.0\n315,98,8.5\n315,99,9.0\n315,100,11.5\n315,101,11.0\n315,102,10.5\n315,103,10.0\n315,104,9.5\n315,105,9.0\n315,106,8.5\n315,107,8.0\n315,108,7.5\n315,109,7.0\n315,110,6.5\n315,111,6.0\n315,112,5.5\n315,113,5.0\n315,114,4.5\n315,115,4.0\n315,116,4.5\n315,117,5.0\n315,118,5.5\n315,119,6.0\n315,120,6.5\n315,121,7.0\n315,122,7.5\n315,123,8.0\n315,124,8.5\n315,125,11.0\n315,126,10.5\n315,127,10.0\n315,128,9.5\n315,129,9.0\n315,130,8.5\n315,131,8.0\n315,132,7.5\n315,133,7.0\n315,134,6.5\n315,135,6.0\n315,136,5.5\n315,137,5.0\n315,138,4.5\n315,139,4.0\n315,140,3.5\n315,141,4.0\n315,142,4.5\n315,143,5.0\n315,144,5.5\n315,145,6.0\n315,146,6.5\n315,147,7.0\n315,148,7.5\n315,149,8.0\n315,150,10.5\n315,151,10.0\n315,152,9.5\n315,153,9.0\n315,154,8.5\n315,155,8.0\n315,156,7.5\n315,157,7.0\n315,158,6.5\n315,159,6.0\n315,160,5.5\n315,161,5.0\n315,162,4.5\n315,163,4.0\n315,164,3.5\n315,165,3.0\n315,166,3.5\n315,167,4.0\n315,168,4.5\n315,169,5.0\n315,170,5.5\n315,171,6.0\n315,172,6.5\n315,173,7.0\n315,174,7.5\n315,175,10.0\n315,176,9.5\n315,177,9.0\n315,178,8.5\n315,179,8.0\n315,180,7.5\n315,181,7.0\n315,182,6.5\n315,183,6.0\n315,184,5.5\n315,185,5.0\n315,186,4.5\n315,187,4.0\n315,188,3.5\n315,189,3.0\n315,190,2.5\n315,191,3.0\n315,192,3.5\n315,193,4.0\n315,194,4.5\n315,195,5.0\n315,196,5.5\n315,197,6.0\n315,198,6.5\n315,199,7.0\n315,200,9.5\n315,201,9.0\n315,202,8.5\n315,203,8.0\n315,204,7.5\n315,205,7.0\n315,206,6.5\n315,207,6.0\n315,208,5.5\n315,209,5.0\n315,210,4.5\n315,211,4.0\n315,212,3.5\n315,213,3.0\n315,214,2.5\n315,215,2.0\n315,216,2.5\n315,217,3.0\n315,218,3.5\n315,219,4.0\n315,220,4.5\n315,221,5.0\n315,222,5.5\n315,223,6.0\n315,224,6.5\n315,225,9.0\n315,226,8.5\n315,227,8.0\n315,228,7.5\n315,229,7.0\n315,230,6.5\n315,231,6.0\n315,232,5.5\n315,233,5.0\n315,234,4.5\n315,235,4.0\n315,236,3.5\n315,237,3.0\n315,238,2.5\n315,239,2.0\n315,240,1.5\n315,241,2.0\n315,242,2.5\n315,243,3.0\n315,244,3.5\n315,245,4.0\n315,246,4.5\n315,247,5.0\n315,248,5.5\n315,249,6.0\n315,250,8.5\n315,251,8.0\n315,252,7.5\n315,253,7.0\n315,254,6.5\n315,255,6.0\n315,256,5.5\n315,257,5.0\n315,258,4.5\n315,259,4.0\n315,260,3.5\n315,261,3.0\n315,262,2.5\n315,263,2.0\n315,264,1.5\n315,265,1.0\n315,266,1.5\n315,267,2.0\n315,268,2.5\n315,269,3.0\n315,270,3.5\n315,271,4.0\n315,272,4.5\n315,273,5.0\n315,274,5.5\n315,275,8.0\n315,276,7.5\n315,277,7.0\n315,278,6.5\n315,279,6.0\n315,280,5.5\n315,281,5.0\n315,282,4.5\n315,283,4.0\n315,284,3.5\n315,285,3.0\n315,286,2.5\n315,287,2.0\n315,288,1.5\n315,289,1.0\n315,290,0.5\n315,291,1.0\n315,292,1.5\n315,293,2.0\n315,294,2.5\n315,295,3.0\n315,296,3.5\n315,297,4.0\n315,298,4.5\n315,299,5.0\n315,300,7.5\n315,301,7.0\n315,302,6.5\n315,303,6.0\n315,304,5.5\n315,305,5.0\n315,306,4.5\n315,307,4.0\n315,308,3.5\n315,309,3.0\n315,310,2.5\n315,311,2.0\n315,312,1.5\n315,313,1.0\n315,314,0.5\n315,315,0\n315,316,0.5\n315,317,1.0\n315,318,1.5\n315,319,2.0\n315,320,2.5\n315,321,3.0\n315,322,3.5\n315,323,4.0\n315,324,4.5\n315,325,8.0\n315,326,7.5\n315,327,7.0\n315,328,6.5\n315,329,6.0\n315,330,5.5\n315,331,5.0\n315,332,4.5\n315,333,4.0\n315,334,3.5\n315,335,3.0\n315,336,2.5\n315,337,2.0\n315,338,1.5\n315,339,1.0\n315,340,0.5\n315,341,1.0\n315,342,1.5\n315,343,2.0\n315,344,2.5\n315,345,3.0\n315,346,3.5\n315,347,4.0\n315,348,4.5\n315,349,5.0\n315,350,8.5\n315,351,8.0\n315,352,7.5\n315,353,7.0\n315,354,6.5\n315,355,6.0\n315,356,5.5\n315,357,5.0\n315,358,4.5\n315,359,4.0\n315,360,3.5\n315,361,3.0\n315,362,2.5\n315,363,2.0\n315,364,1.5\n315,365,1.0\n315,366,1.5\n315,367,2.0\n315,368,2.5\n315,369,3.0\n315,370,3.5\n315,371,4.0\n315,372,4.5\n315,373,5.0\n315,374,5.5\n315,375,9.0\n315,376,8.5\n315,377,8.0\n315,378,7.5\n315,379,7.0\n315,380,6.5\n315,381,6.0\n315,382,5.5\n315,383,5.0\n315,384,4.5\n315,385,4.0\n315,386,3.5\n315,387,3.0\n315,388,2.5\n315,389,2.0\n315,390,1.5\n315,391,2.0\n315,392,2.5\n315,393,3.0\n315,394,3.5\n315,395,4.0\n315,396,4.5\n315,397,5.0\n315,398,5.5\n315,399,6.0\n315,400,9.5\n315,401,9.0\n315,402,8.5\n315,403,8.0\n315,404,7.5\n315,405,7.0\n315,406,6.5\n315,407,6.0\n315,408,5.5\n315,409,5.0\n315,410,4.5\n315,411,4.0\n315,412,3.5\n315,413,3.0\n315,414,2.5\n315,415,2.0\n315,416,2.5\n315,417,3.0\n315,418,3.5\n315,419,4.0\n315,420,4.5\n315,421,5.0\n315,422,5.5\n315,423,6.0\n315,424,6.5\n315,425,10.0\n315,426,9.5\n315,427,9.0\n315,428,8.5\n315,429,8.0\n315,430,7.5\n315,431,7.0\n315,432,6.5\n315,433,6.0\n315,434,5.5\n315,435,5.0\n315,436,4.5\n315,437,4.0\n315,438,3.5\n315,439,3.0\n315,440,2.5\n315,441,3.0\n315,442,3.5\n315,443,4.0\n315,444,4.5\n315,445,5.0\n315,446,5.5\n315,447,6.0\n315,448,6.5\n315,449,7.0\n315,450,10.5\n315,451,10.0\n315,452,9.5\n315,453,9.0\n315,454,8.5\n315,455,8.0\n315,456,7.5\n315,457,7.0\n315,458,6.5\n315,459,6.0\n315,460,5.5\n315,461,5.0\n315,462,4.5\n315,463,4.0\n315,464,3.5\n315,465,3.0\n315,466,3.5\n315,467,4.0\n315,468,4.5\n315,469,5.0\n315,470,5.5\n315,471,6.0\n315,472,6.5\n315,473,7.0\n315,474,7.5\n315,475,11.0\n315,476,10.5\n315,477,10.0\n315,478,9.5\n315,479,9.0\n315,480,8.5\n315,481,8.0\n315,482,7.5\n315,483,7.0\n315,484,6.5\n315,485,6.0\n315,486,5.5\n315,487,5.0\n315,488,4.5\n315,489,4.0\n315,490,3.5\n315,491,4.0\n315,492,4.5\n315,493,5.0\n315,494,5.5\n315,495,6.0\n315,496,6.5\n315,497,7.0\n315,498,7.5\n315,499,8.0\n315,500,11.5\n315,501,11.0\n315,502,10.5\n315,503,10.0\n315,504,9.5\n315,505,9.0\n315,506,8.5\n315,507,8.0\n315,508,7.5\n315,509,7.0\n315,510,6.5\n315,511,6.0\n315,512,5.5\n315,513,5.0\n315,514,4.5\n315,515,4.0\n315,516,4.5\n315,517,5.0\n315,518,5.5\n315,519,6.0\n315,520,6.5\n315,521,7.0\n315,522,7.5\n315,523,8.0\n315,524,8.5\n315,525,12.0\n315,526,11.5\n315,527,11.0\n315,528,10.5\n315,529,10.0\n315,530,9.5\n315,531,9.0\n315,532,8.5\n315,533,8.0\n315,534,7.5\n315,535,7.0\n315,536,6.5\n315,537,6.0\n315,538,5.5\n315,539,5.0\n315,540,4.5\n315,541,5.0\n315,542,5.5\n315,543,6.0\n315,544,6.5\n315,545,7.0\n315,546,7.5\n315,547,8.0\n315,548,8.5\n315,549,9.0\n315,550,12.5\n315,551,12.0\n315,552,11.5\n315,553,11.0\n315,554,10.5\n315,555,10.0\n315,556,9.5\n315,557,9.0\n315,558,8.5\n315,559,8.0\n315,560,7.5\n315,561,7.0\n315,562,6.5\n315,563,6.0\n315,564,5.5\n315,565,5.0\n315,566,5.5\n315,567,6.0\n315,568,6.5\n315,569,7.0\n315,570,7.5\n315,571,8.0\n315,572,8.5\n315,573,9.0\n315,574,9.5\n315,575,13.0\n315,576,12.5\n315,577,12.0\n315,578,11.5\n315,579,11.0\n315,580,10.5\n315,581,10.0\n315,582,9.5\n315,583,9.0\n315,584,8.5\n315,585,8.0\n315,586,7.5\n315,587,7.0\n315,588,6.5\n315,589,6.0\n315,590,5.5\n315,591,6.0\n315,592,6.5\n315,593,7.0\n315,594,7.5\n315,595,8.0\n315,596,8.5\n315,597,9.0\n315,598,9.5\n315,599,10.0\n315,600,13.5\n315,601,13.0\n315,602,12.5\n315,603,12.0\n315,604,11.5\n315,605,11.0\n315,606,10.5\n315,607,10.0\n315,608,9.5\n315,609,9.0\n315,610,8.5\n315,611,8.0\n315,612,7.5\n315,613,7.0\n315,614,6.5\n315,615,6.0\n315,616,6.5\n315,617,7.0\n315,618,7.5\n315,619,8.0\n315,620,8.5\n315,621,9.0\n315,622,9.5\n315,623,10.0\n315,624,10.5\n316,0,14.0\n316,1,13.5\n316,2,13.0\n316,3,12.5\n316,4,12.0\n316,5,11.5\n316,6,11.0\n316,7,10.5\n316,8,10.0\n316,9,9.5\n316,10,9.0\n316,11,8.5\n316,12,8.0\n316,13,7.5\n316,14,7.0\n316,15,6.5\n316,16,6.0\n316,17,6.5\n316,18,7.0\n316,19,7.5\n316,20,8.0\n316,21,8.5\n316,22,9.0\n316,23,9.5\n316,24,10.0\n316,25,13.5\n316,26,13.0\n316,27,12.5\n316,28,12.0\n316,29,11.5\n316,30,11.0\n316,31,10.5\n316,32,10.0\n316,33,9.5\n316,34,9.0\n316,35,8.5\n316,36,8.0\n316,37,7.5\n316,38,7.0\n316,39,6.5\n316,40,6.0\n316,41,5.5\n316,42,6.0\n316,43,6.5\n316,44,7.0\n316,45,7.5\n316,46,8.0\n316,47,8.5\n316,48,9.0\n316,49,9.5\n316,50,13.0\n316,51,12.5\n316,52,12.0\n316,53,11.5\n316,54,11.0\n316,55,10.5\n316,56,10.0\n316,57,9.5\n316,58,9.0\n316,59,8.5\n316,60,8.0\n316,61,7.5\n316,62,7.0\n316,63,6.5\n316,64,6.0\n316,65,5.5\n316,66,5.0\n316,67,5.5\n316,68,6.0\n316,69,6.5\n316,70,7.0\n316,71,7.5\n316,72,8.0\n316,73,8.5\n316,74,9.0\n316,75,12.5\n316,76,12.0\n316,77,11.5\n316,78,11.0\n316,79,10.5\n316,80,10.0\n316,81,9.5\n316,82,9.0\n316,83,8.5\n316,84,8.0\n316,85,7.5\n316,86,7.0\n316,87,6.5\n316,88,6.0\n316,89,5.5\n316,90,5.0\n316,91,4.5\n316,92,5.0\n316,93,5.5\n316,94,6.0\n316,95,6.5\n316,96,7.0\n316,97,7.5\n316,98,8.0\n316,99,8.5\n316,100,12.0\n316,101,11.5\n316,102,11.0\n316,103,10.5\n316,104,10.0\n316,105,9.5\n316,106,9.0\n316,107,8.5\n316,108,8.0\n316,109,7.5\n316,110,7.0\n316,111,6.5\n316,112,6.0\n316,113,5.5\n316,114,5.0\n316,115,4.5\n316,116,4.0\n316,117,4.5\n316,118,5.0\n316,119,5.5\n316,120,6.0\n316,121,6.5\n316,122,7.0\n316,123,7.5\n316,124,8.0\n316,125,11.5\n316,126,11.0\n316,127,10.5\n316,128,10.0\n316,129,9.5\n316,130,9.0\n316,131,8.5\n316,132,8.0\n316,133,7.5\n316,134,7.0\n316,135,6.5\n316,136,6.0\n316,137,5.5\n316,138,5.0\n316,139,4.5\n316,140,4.0\n316,141,3.5\n316,142,4.0\n316,143,4.5\n316,144,5.0\n316,145,5.5\n316,146,6.0\n316,147,6.5\n316,148,7.0\n316,149,7.5\n316,150,11.0\n316,151,10.5\n316,152,10.0\n316,153,9.5\n316,154,9.0\n316,155,8.5\n316,156,8.0\n316,157,7.5\n316,158,7.0\n316,159,6.5\n316,160,6.0\n316,161,5.5\n316,162,5.0\n316,163,4.5\n316,164,4.0\n316,165,3.5\n316,166,3.0\n316,167,3.5\n316,168,4.0\n316,169,4.5\n316,170,5.0\n316,171,5.5\n316,172,6.0\n316,173,6.5\n316,174,7.0\n316,175,10.5\n316,176,10.0\n316,177,9.5\n316,178,9.0\n316,179,8.5\n316,180,8.0\n316,181,7.5\n316,182,7.0\n316,183,6.5\n316,184,6.0\n316,185,5.5\n316,186,5.0\n316,187,4.5\n316,188,4.0\n316,189,3.5\n316,190,3.0\n316,191,2.5\n316,192,3.0\n316,193,3.5\n316,194,4.0\n316,195,4.5\n316,196,5.0\n316,197,5.5\n316,198,6.0\n316,199,6.5\n316,200,10.0\n316,201,9.5\n316,202,9.0\n316,203,8.5\n316,204,8.0\n316,205,7.5\n316,206,7.0\n316,207,6.5\n316,208,6.0\n316,209,5.5\n316,210,5.0\n316,211,4.5\n316,212,4.0\n316,213,3.5\n316,214,3.0\n316,215,2.5\n316,216,2.0\n316,217,2.5\n316,218,3.0\n316,219,3.5\n316,220,4.0\n316,221,4.5\n316,222,5.0\n316,223,5.5\n316,224,6.0\n316,225,9.5\n316,226,9.0\n316,227,8.5\n316,228,8.0\n316,229,7.5\n316,230,7.0\n316,231,6.5\n316,232,6.0\n316,233,5.5\n316,234,5.0\n316,235,4.5\n316,236,4.0\n316,237,3.5\n316,238,3.0\n316,239,2.5\n316,240,2.0\n316,241,1.5\n316,242,2.0\n316,243,2.5\n316,244,3.0\n316,245,3.5\n316,246,4.0\n316,247,4.5\n316,248,5.0\n316,249,5.5\n316,250,9.0\n316,251,8.5\n316,252,8.0\n316,253,7.5\n316,254,7.0\n316,255,6.5\n316,256,6.0\n316,257,5.5\n316,258,5.0\n316,259,4.5\n316,260,4.0\n316,261,3.5\n316,262,3.0\n316,263,2.5\n316,264,2.0\n316,265,1.5\n316,266,1.0\n316,267,1.5\n316,268,2.0\n316,269,2.5\n316,270,3.0\n316,271,3.5\n316,272,4.0\n316,273,4.5\n316,274,5.0\n316,275,8.5\n316,276,8.0\n316,277,7.5\n316,278,7.0\n316,279,6.5\n316,280,6.0\n316,281,5.5\n316,282,5.0\n316,283,4.5\n316,284,4.0\n316,285,3.5\n316,286,3.0\n316,287,2.5\n316,288,2.0\n316,289,1.5\n316,290,1.0\n316,291,0.5\n316,292,1.0\n316,293,1.5\n316,294,2.0\n316,295,2.5\n316,296,3.0\n316,297,3.5\n316,298,4.0\n316,299,4.5\n316,300,8.0\n316,301,7.5\n316,302,7.0\n316,303,6.5\n316,304,6.0\n316,305,5.5\n316,306,5.0\n316,307,4.5\n316,308,4.0\n316,309,3.5\n316,310,3.0\n316,311,2.5\n316,312,2.0\n316,313,1.5\n316,314,1.0\n316,315,0.5\n316,316,0\n316,317,0.5\n316,318,1.0\n316,319,1.5\n316,320,2.0\n316,321,2.5\n316,322,3.0\n316,323,3.5\n316,324,4.0\n316,325,8.5\n316,326,8.0\n316,327,7.5\n316,328,7.0\n316,329,6.5\n316,330,6.0\n316,331,5.5\n316,332,5.0\n316,333,4.5\n316,334,4.0\n316,335,3.5\n316,336,3.0\n316,337,2.5\n316,338,2.0\n316,339,1.5\n316,340,1.0\n316,341,0.5\n316,342,1.0\n316,343,1.5\n316,344,2.0\n316,345,2.5\n316,346,3.0\n316,347,3.5\n316,348,4.0\n316,349,4.5\n316,350,9.0\n316,351,8.5\n316,352,8.0\n316,353,7.5\n316,354,7.0\n316,355,6.5\n316,356,6.0\n316,357,5.5\n316,358,5.0\n316,359,4.5\n316,360,4.0\n316,361,3.5\n316,362,3.0\n316,363,2.5\n316,364,2.0\n316,365,1.5\n316,366,1.0\n316,367,1.5\n316,368,2.0\n316,369,2.5\n316,370,3.0\n316,371,3.5\n316,372,4.0\n316,373,4.5\n316,374,5.0\n316,375,9.5\n316,376,9.0\n316,377,8.5\n316,378,8.0\n316,379,7.5\n316,380,7.0\n316,381,6.5\n316,382,6.0\n316,383,5.5\n316,384,5.0\n316,385,4.5\n316,386,4.0\n316,387,3.5\n316,388,3.0\n316,389,2.5\n316,390,2.0\n316,391,1.5\n316,392,2.0\n316,393,2.5\n316,394,3.0\n316,395,3.5\n316,396,4.0\n316,397,4.5\n316,398,5.0\n316,399,5.5\n316,400,10.0\n316,401,9.5\n316,402,9.0\n316,403,8.5\n316,404,8.0\n316,405,7.5\n316,406,7.0\n316,407,6.5\n316,408,6.0\n316,409,5.5\n316,410,5.0\n316,411,4.5\n316,412,4.0\n316,413,3.5\n316,414,3.0\n316,415,2.5\n316,416,2.0\n316,417,2.5\n316,418,3.0\n316,419,3.5\n316,420,4.0\n316,421,4.5\n316,422,5.0\n316,423,5.5\n316,424,6.0\n316,425,10.5\n316,426,10.0\n316,427,9.5\n316,428,9.0\n316,429,8.5\n316,430,8.0\n316,431,7.5\n316,432,7.0\n316,433,6.5\n316,434,6.0\n316,435,5.5\n316,436,5.0\n316,437,4.5\n316,438,4.0\n316,439,3.5\n316,440,3.0\n316,441,2.5\n316,442,3.0\n316,443,3.5\n316,444,4.0\n316,445,4.5\n316,446,5.0\n316,447,5.5\n316,448,6.0\n316,449,6.5\n316,450,11.0\n316,451,10.5\n316,452,10.0\n316,453,9.5\n316,454,9.0\n316,455,8.5\n316,456,8.0\n316,457,7.5\n316,458,7.0\n316,459,6.5\n316,460,6.0\n316,461,5.5\n316,462,5.0\n316,463,4.5\n316,464,4.0\n316,465,3.5\n316,466,3.0\n316,467,3.5\n316,468,4.0\n316,469,4.5\n316,470,5.0\n316,471,5.5\n316,472,6.0\n316,473,6.5\n316,474,7.0\n316,475,11.5\n316,476,11.0\n316,477,10.5\n316,478,10.0\n316,479,9.5\n316,480,9.0\n316,481,8.5\n316,482,8.0\n316,483,7.5\n316,484,7.0\n316,485,6.5\n316,486,6.0\n316,487,5.5\n316,488,5.0\n316,489,4.5\n316,490,4.0\n316,491,3.5\n316,492,4.0\n316,493,4.5\n316,494,5.0\n316,495,5.5\n316,496,6.0\n316,497,6.5\n316,498,7.0\n316,499,7.5\n316,500,12.0\n316,501,11.5\n316,502,11.0\n316,503,10.5\n316,504,10.0\n316,505,9.5\n316,506,9.0\n316,507,8.5\n316,508,8.0\n316,509,7.5\n316,510,7.0\n316,511,6.5\n316,512,6.0\n316,513,5.5\n316,514,5.0\n316,515,4.5\n316,516,4.0\n316,517,4.5\n316,518,5.0\n316,519,5.5\n316,520,6.0\n316,521,6.5\n316,522,7.0\n316,523,7.5\n316,524,8.0\n316,525,12.5\n316,526,12.0\n316,527,11.5\n316,528,11.0\n316,529,10.5\n316,530,10.0\n316,531,9.5\n316,532,9.0\n316,533,8.5\n316,534,8.0\n316,535,7.5\n316,536,7.0\n316,537,6.5\n316,538,6.0\n316,539,5.5\n316,540,5.0\n316,541,4.5\n316,542,5.0\n316,543,5.5\n316,544,6.0\n316,545,6.5\n316,546,7.0\n316,547,7.5\n316,548,8.0\n316,549,8.5\n316,550,13.0\n316,551,12.5\n316,552,12.0\n316,553,11.5\n316,554,11.0\n316,555,10.5\n316,556,10.0\n316,557,9.5\n316,558,9.0\n316,559,8.5\n316,560,8.0\n316,561,7.5\n316,562,7.0\n316,563,6.5\n316,564,6.0\n316,565,5.5\n316,566,5.0\n316,567,5.5\n316,568,6.0\n316,569,6.5\n316,570,7.0\n316,571,7.5\n316,572,8.0\n316,573,8.5\n316,574,9.0\n316,575,13.5\n316,576,13.0\n316,577,12.5\n316,578,12.0\n316,579,11.5\n316,580,11.0\n316,581,10.5\n316,582,10.0\n316,583,9.5\n316,584,9.0\n316,585,8.5\n316,586,8.0\n316,587,7.5\n316,588,7.0\n316,589,6.5\n316,590,6.0\n316,591,5.5\n316,592,6.0\n316,593,6.5\n316,594,7.0\n316,595,7.5\n316,596,8.0\n316,597,8.5\n316,598,9.0\n316,599,9.5\n316,600,14.0\n316,601,13.5\n316,602,13.0\n316,603,12.5\n316,604,12.0\n316,605,11.5\n316,606,11.0\n316,607,10.5\n316,608,10.0\n316,609,9.5\n316,610,9.0\n316,611,8.5\n316,612,8.0\n316,613,7.5\n316,614,7.0\n316,615,6.5\n316,616,6.0\n316,617,6.5\n316,618,7.0\n316,619,7.5\n316,620,8.0\n316,621,8.5\n316,622,9.0\n316,623,9.5\n316,624,10.0\n317,0,14.5\n317,1,14.0\n317,2,13.5\n317,3,13.0\n317,4,12.5\n317,5,12.0\n317,6,11.5\n317,7,11.0\n317,8,10.5\n317,9,10.0\n317,10,9.5\n317,11,9.0\n317,12,8.5\n317,13,8.0\n317,14,7.5\n317,15,7.0\n317,16,6.5\n317,17,6.0\n317,18,6.5\n317,19,7.0\n317,20,7.5\n317,21,8.0\n317,22,8.5\n317,23,9.0\n317,24,9.5\n317,25,14.0\n317,26,13.5\n317,27,13.0\n317,28,12.5\n317,29,12.0\n317,30,11.5\n317,31,11.0\n317,32,10.5\n317,33,10.0\n317,34,9.5\n317,35,9.0\n317,36,8.5\n317,37,8.0\n317,38,7.5\n317,39,7.0\n317,40,6.5\n317,41,6.0\n317,42,5.5\n317,43,6.0\n317,44,6.5\n317,45,7.0\n317,46,7.5\n317,47,8.0\n317,48,8.5\n317,49,9.0\n317,50,13.5\n317,51,13.0\n317,52,12.5\n317,53,12.0\n317,54,11.5\n317,55,11.0\n317,56,10.5\n317,57,10.0\n317,58,9.5\n317,59,9.0\n317,60,8.5\n317,61,8.0\n317,62,7.5\n317,63,7.0\n317,64,6.5\n317,65,6.0\n317,66,5.5\n317,67,5.0\n317,68,5.5\n317,69,6.0\n317,70,6.5\n317,71,7.0\n317,72,7.5\n317,73,8.0\n317,74,8.5\n317,75,13.0\n317,76,12.5\n317,77,12.0\n317,78,11.5\n317,79,11.0\n317,80,10.5\n317,81,10.0\n317,82,9.5\n317,83,9.0\n317,84,8.5\n317,85,8.0\n317,86,7.5\n317,87,7.0\n317,88,6.5\n317,89,6.0\n317,90,5.5\n317,91,5.0\n317,92,4.5\n317,93,5.0\n317,94,5.5\n317,95,6.0\n317,96,6.5\n317,97,7.0\n317,98,7.5\n317,99,8.0\n317,100,12.5\n317,101,12.0\n317,102,11.5\n317,103,11.0\n317,104,10.5\n317,105,10.0\n317,106,9.5\n317,107,9.0\n317,108,8.5\n317,109,8.0\n317,110,7.5\n317,111,7.0\n317,112,6.5\n317,113,6.0\n317,114,5.5\n317,115,5.0\n317,116,4.5\n317,117,4.0\n317,118,4.5\n317,119,5.0\n317,120,5.5\n317,121,6.0\n317,122,6.5\n317,123,7.0\n317,124,7.5\n317,125,12.0\n317,126,11.5\n317,127,11.0\n317,128,10.5\n317,129,10.0\n317,130,9.5\n317,131,9.0\n317,132,8.5\n317,133,8.0\n317,134,7.5\n317,135,7.0\n317,136,6.5\n317,137,6.0\n317,138,5.5\n317,139,5.0\n317,140,4.5\n317,141,4.0\n317,142,3.5\n317,143,4.0\n317,144,4.5\n317,145,5.0\n317,146,5.5\n317,147,6.0\n317,148,6.5\n317,149,7.0\n317,150,11.5\n317,151,11.0\n317,152,10.5\n317,153,10.0\n317,154,9.5\n317,155,9.0\n317,156,8.5\n317,157,8.0\n317,158,7.5\n317,159,7.0\n317,160,6.5\n317,161,6.0\n317,162,5.5\n317,163,5.0\n317,164,4.5\n317,165,4.0\n317,166,3.5\n317,167,3.0\n317,168,3.5\n317,169,4.0\n317,170,4.5\n317,171,5.0\n317,172,5.5\n317,173,6.0\n317,174,6.5\n317,175,11.0\n317,176,10.5\n317,177,10.0\n317,178,9.5\n317,179,9.0\n317,180,8.5\n317,181,8.0\n317,182,7.5\n317,183,7.0\n317,184,6.5\n317,185,6.0\n317,186,5.5\n317,187,5.0\n317,188,4.5\n317,189,4.0\n317,190,3.5\n317,191,3.0\n317,192,2.5\n317,193,3.0\n317,194,3.5\n317,195,4.0\n317,196,4.5\n317,197,5.0\n317,198,5.5\n317,199,6.0\n317,200,10.5\n317,201,10.0\n317,202,9.5\n317,203,9.0\n317,204,8.5\n317,205,8.0\n317,206,7.5\n317,207,7.0\n317,208,6.5\n317,209,6.0\n317,210,5.5\n317,211,5.0\n317,212,4.5\n317,213,4.0\n317,214,3.5\n317,215,3.0\n317,216,2.5\n317,217,2.0\n317,218,2.5\n317,219,3.0\n317,220,3.5\n317,221,4.0\n317,222,4.5\n317,223,5.0\n317,224,5.5\n317,225,10.0\n317,226,9.5\n317,227,9.0\n317,228,8.5\n317,229,8.0\n317,230,7.5\n317,231,7.0\n317,232,6.5\n317,233,6.0\n317,234,5.5\n317,235,5.0\n317,236,4.5\n317,237,4.0\n317,238,3.5\n317,239,3.0\n317,240,2.5\n317,241,2.0\n317,242,1.5\n317,243,2.0\n317,244,2.5\n317,245,3.0\n317,246,3.5\n317,247,4.0\n317,248,4.5\n317,249,5.0\n317,250,9.5\n317,251,9.0\n317,252,8.5\n317,253,8.0\n317,254,7.5\n317,255,7.0\n317,256,6.5\n317,257,6.0\n317,258,5.5\n317,259,5.0\n317,260,4.5\n317,261,4.0\n317,262,3.5\n317,263,3.0\n317,264,2.5\n317,265,2.0\n317,266,1.5\n317,267,1.0\n317,268,1.5\n317,269,2.0\n317,270,2.5\n317,271,3.0\n317,272,3.5\n317,273,4.0\n317,274,4.5\n317,275,9.0\n317,276,8.5\n317,277,8.0\n317,278,7.5\n317,279,7.0\n317,280,6.5\n317,281,6.0\n317,282,5.5\n317,283,5.0\n317,284,4.5\n317,285,4.0\n317,286,3.5\n317,287,3.0\n317,288,2.5\n317,289,2.0\n317,290,1.5\n317,291,1.0\n317,292,0.5\n317,293,1.0\n317,294,1.5\n317,295,2.0\n317,296,2.5\n317,297,3.0\n317,298,3.5\n317,299,4.0\n317,300,8.5\n317,301,8.0\n317,302,7.5\n317,303,7.0\n317,304,6.5\n317,305,6.0\n317,306,5.5\n317,307,5.0\n317,308,4.5\n317,309,4.0\n317,310,3.5\n317,311,3.0\n317,312,2.5\n317,313,2.0\n317,314,1.5\n317,315,1.0\n317,316,0.5\n317,317,0\n317,318,0.5\n317,319,1.0\n317,320,1.5\n317,321,2.0\n317,322,2.5\n317,323,3.0\n317,324,3.5\n317,325,9.0\n317,326,8.5\n317,327,8.0\n317,328,7.5\n317,329,7.0\n317,330,6.5\n317,331,6.0\n317,332,5.5\n317,333,5.0\n317,334,4.5\n317,335,4.0\n317,336,3.5\n317,337,3.0\n317,338,2.5\n317,339,2.0\n317,340,1.5\n317,341,1.0\n317,342,0.5\n317,343,1.0\n317,344,1.5\n317,345,2.0\n317,346,2.5\n317,347,3.0\n317,348,3.5\n317,349,4.0\n317,350,9.5\n317,351,9.0\n317,352,8.5\n317,353,8.0\n317,354,7.5\n317,355,7.0\n317,356,6.5\n317,357,6.0\n317,358,5.5\n317,359,5.0\n317,360,4.5\n317,361,4.0\n317,362,3.5\n317,363,3.0\n317,364,2.5\n317,365,2.0\n317,366,1.5\n317,367,1.0\n317,368,1.5\n317,369,2.0\n317,370,2.5\n317,371,3.0\n317,372,3.5\n317,373,4.0\n317,374,4.5\n317,375,10.0\n317,376,9.5\n317,377,9.0\n317,378,8.5\n317,379,8.0\n317,380,7.5\n317,381,7.0\n317,382,6.5\n317,383,6.0\n317,384,5.5\n317,385,5.0\n317,386,4.5\n317,387,4.0\n317,388,3.5\n317,389,3.0\n317,390,2.5\n317,391,2.0\n317,392,1.5\n317,393,2.0\n317,394,2.5\n317,395,3.0\n317,396,3.5\n317,397,4.0\n317,398,4.5\n317,399,5.0\n317,400,10.5\n317,401,10.0\n317,402,9.5\n317,403,9.0\n317,404,8.5\n317,405,8.0\n317,406,7.5\n317,407,7.0\n317,408,6.5\n317,409,6.0\n317,410,5.5\n317,411,5.0\n317,412,4.5\n317,413,4.0\n317,414,3.5\n317,415,3.0\n317,416,2.5\n317,417,2.0\n317,418,2.5\n317,419,3.0\n317,420,3.5\n317,421,4.0\n317,422,4.5\n317,423,5.0\n317,424,5.5\n317,425,11.0\n317,426,10.5\n317,427,10.0\n317,428,9.5\n317,429,9.0\n317,430,8.5\n317,431,8.0\n317,432,7.5\n317,433,7.0\n317,434,6.5\n317,435,6.0\n317,436,5.5\n317,437,5.0\n317,438,4.5\n317,439,4.0\n317,440,3.5\n317,441,3.0\n317,442,2.5\n317,443,3.0\n317,444,3.5\n317,445,4.0\n317,446,4.5\n317,447,5.0\n317,448,5.5\n317,449,6.0\n317,450,11.5\n317,451,11.0\n317,452,10.5\n317,453,10.0\n317,454,9.5\n317,455,9.0\n317,456,8.5\n317,457,8.0\n317,458,7.5\n317,459,7.0\n317,460,6.5\n317,461,6.0\n317,462,5.5\n317,463,5.0\n317,464,4.5\n317,465,4.0\n317,466,3.5\n317,467,3.0\n317,468,3.5\n317,469,4.0\n317,470,4.5\n317,471,5.0\n317,472,5.5\n317,473,6.0\n317,474,6.5\n317,475,12.0\n317,476,11.5\n317,477,11.0\n317,478,10.5\n317,479,10.0\n317,480,9.5\n317,481,9.0\n317,482,8.5\n317,483,8.0\n317,484,7.5\n317,485,7.0\n317,486,6.5\n317,487,6.0\n317,488,5.5\n317,489,5.0\n317,490,4.5\n317,491,4.0\n317,492,3.5\n317,493,4.0\n317,494,4.5\n317,495,5.0\n317,496,5.5\n317,497,6.0\n317,498,6.5\n317,499,7.0\n317,500,12.5\n317,501,12.0\n317,502,11.5\n317,503,11.0\n317,504,10.5\n317,505,10.0\n317,506,9.5\n317,507,9.0\n317,508,8.5\n317,509,8.0\n317,510,7.5\n317,511,7.0\n317,512,6.5\n317,513,6.0\n317,514,5.5\n317,515,5.0\n317,516,4.5\n317,517,4.0\n317,518,4.5\n317,519,5.0\n317,520,5.5\n317,521,6.0\n317,522,6.5\n317,523,7.0\n317,524,7.5\n317,525,13.0\n317,526,12.5\n317,527,12.0\n317,528,11.5\n317,529,11.0\n317,530,10.5\n317,531,10.0\n317,532,9.5\n317,533,9.0\n317,534,8.5\n317,535,8.0\n317,536,7.5\n317,537,7.0\n317,538,6.5\n317,539,6.0\n317,540,5.5\n317,541,5.0\n317,542,4.5\n317,543,5.0\n317,544,5.5\n317,545,6.0\n317,546,6.5\n317,547,7.0\n317,548,7.5\n317,549,8.0\n317,550,13.5\n317,551,13.0\n317,552,12.5\n317,553,12.0\n317,554,11.5\n317,555,11.0\n317,556,10.5\n317,557,10.0\n317,558,9.5\n317,559,9.0\n317,560,8.5\n317,561,8.0\n317,562,7.5\n317,563,7.0\n317,564,6.5\n317,565,6.0\n317,566,5.5\n317,567,5.0\n317,568,5.5\n317,569,6.0\n317,570,6.5\n317,571,7.0\n317,572,7.5\n317,573,8.0\n317,574,8.5\n317,575,14.0\n317,576,13.5\n317,577,13.0\n317,578,12.5\n317,579,12.0\n317,580,11.5\n317,581,11.0\n317,582,10.5\n317,583,10.0\n317,584,9.5\n317,585,9.0\n317,586,8.5\n317,587,8.0\n317,588,7.5\n317,589,7.0\n317,590,6.5\n317,591,6.0\n317,592,5.5\n317,593,6.0\n317,594,6.5\n317,595,7.0\n317,596,7.5\n317,597,8.0\n317,598,8.5\n317,599,9.0\n317,600,14.5\n317,601,14.0\n317,602,13.5\n317,603,13.0\n317,604,12.5\n317,605,12.0\n317,606,11.5\n317,607,11.0\n317,608,10.5\n317,609,10.0\n317,610,9.5\n317,611,9.0\n317,612,8.5\n317,613,8.0\n317,614,7.5\n317,615,7.0\n317,616,6.5\n317,617,6.0\n317,618,6.5\n317,619,7.0\n317,620,7.5\n317,621,8.0\n317,622,8.5\n317,623,9.0\n317,624,9.5\n318,0,15.0\n318,1,14.5\n318,2,14.0\n318,3,13.5\n318,4,13.0\n318,5,12.5\n318,6,12.0\n318,7,11.5\n318,8,11.0\n318,9,10.5\n318,10,10.0\n318,11,9.5\n318,12,9.0\n318,13,8.5\n318,14,8.0\n318,15,7.5\n318,16,7.0\n318,17,6.5\n318,18,6.0\n318,19,6.5\n318,20,7.0\n318,21,7.5\n318,22,8.0\n318,23,8.5\n318,24,9.0\n318,25,14.5\n318,26,14.0\n318,27,13.5\n318,28,13.0\n318,29,12.5\n318,30,12.0\n318,31,11.5\n318,32,11.0\n318,33,10.5\n318,34,10.0\n318,35,9.5\n318,36,9.0\n318,37,8.5\n318,38,8.0\n318,39,7.5\n318,40,7.0\n318,41,6.5\n318,42,6.0\n318,43,5.5\n318,44,6.0\n318,45,6.5\n318,46,7.0\n318,47,7.5\n318,48,8.0\n318,49,8.5\n318,50,14.0\n318,51,13.5\n318,52,13.0\n318,53,12.5\n318,54,12.0\n318,55,11.5\n318,56,11.0\n318,57,10.5\n318,58,10.0\n318,59,9.5\n318,60,9.0\n318,61,8.5\n318,62,8.0\n318,63,7.5\n318,64,7.0\n318,65,6.5\n318,66,6.0\n318,67,5.5\n318,68,5.0\n318,69,5.5\n318,70,6.0\n318,71,6.5\n318,72,7.0\n318,73,7.5\n318,74,8.0\n318,75,13.5\n318,76,13.0\n318,77,12.5\n318,78,12.0\n318,79,11.5\n318,80,11.0\n318,81,10.5\n318,82,10.0\n318,83,9.5\n318,84,9.0\n318,85,8.5\n318,86,8.0\n318,87,7.5\n318,88,7.0\n318,89,6.5\n318,90,6.0\n318,91,5.5\n318,92,5.0\n318,93,4.5\n318,94,5.0\n318,95,5.5\n318,96,6.0\n318,97,6.5\n318,98,7.0\n318,99,7.5\n318,100,13.0\n318,101,12.5\n318,102,12.0\n318,103,11.5\n318,104,11.0\n318,105,10.5\n318,106,10.0\n318,107,9.5\n318,108,9.0\n318,109,8.5\n318,110,8.0\n318,111,7.5\n318,112,7.0\n318,113,6.5\n318,114,6.0\n318,115,5.5\n318,116,5.0\n318,117,4.5\n318,118,4.0\n318,119,4.5\n318,120,5.0\n318,121,5.5\n318,122,6.0\n318,123,6.5\n318,124,7.0\n318,125,12.5\n318,126,12.0\n318,127,11.5\n318,128,11.0\n318,129,10.5\n318,130,10.0\n318,131,9.5\n318,132,9.0\n318,133,8.5\n318,134,8.0\n318,135,7.5\n318,136,7.0\n318,137,6.5\n318,138,6.0\n318,139,5.5\n318,140,5.0\n318,141,4.5\n318,142,4.0\n318,143,3.5\n318,144,4.0\n318,145,4.5\n318,146,5.0\n318,147,5.5\n318,148,6.0\n318,149,6.5\n318,150,12.0\n318,151,11.5\n318,152,11.0\n318,153,10.5\n318,154,10.0\n318,155,9.5\n318,156,9.0\n318,157,8.5\n318,158,8.0\n318,159,7.5\n318,160,7.0\n318,161,6.5\n318,162,6.0\n318,163,5.5\n318,164,5.0\n318,165,4.5\n318,166,4.0\n318,167,3.5\n318,168,3.0\n318,169,3.5\n318,170,4.0\n318,171,4.5\n318,172,5.0\n318,173,5.5\n318,174,6.0\n318,175,11.5\n318,176,11.0\n318,177,10.5\n318,178,10.0\n318,179,9.5\n318,180,9.0\n318,181,8.5\n318,182,8.0\n318,183,7.5\n318,184,7.0\n318,185,6.5\n318,186,6.0\n318,187,5.5\n318,188,5.0\n318,189,4.5\n318,190,4.0\n318,191,3.5\n318,192,3.0\n318,193,2.5\n318,194,3.0\n318,195,3.5\n318,196,4.0\n318,197,4.5\n318,198,5.0\n318,199,5.5\n318,200,11.0\n318,201,10.5\n318,202,10.0\n318,203,9.5\n318,204,9.0\n318,205,8.5\n318,206,8.0\n318,207,7.5\n318,208,7.0\n318,209,6.5\n318,210,6.0\n318,211,5.5\n318,212,5.0\n318,213,4.5\n318,214,4.0\n318,215,3.5\n318,216,3.0\n318,217,2.5\n318,218,2.0\n318,219,2.5\n318,220,3.0\n318,221,3.5\n318,222,4.0\n318,223,4.5\n318,224,5.0\n318,225,10.5\n318,226,10.0\n318,227,9.5\n318,228,9.0\n318,229,8.5\n318,230,8.0\n318,231,7.5\n318,232,7.0\n318,233,6.5\n318,234,6.0\n318,235,5.5\n318,236,5.0\n318,237,4.5\n318,238,4.0\n318,239,3.5\n318,240,3.0\n318,241,2.5\n318,242,2.0\n318,243,1.5\n318,244,2.0\n318,245,2.5\n318,246,3.0\n318,247,3.5\n318,248,4.0\n318,249,4.5\n318,250,10.0\n318,251,9.5\n318,252,9.0\n318,253,8.5\n318,254,8.0\n318,255,7.5\n318,256,7.0\n318,257,6.5\n318,258,6.0\n318,259,5.5\n318,260,5.0\n318,261,4.5\n318,262,4.0\n318,263,3.5\n318,264,3.0\n318,265,2.5\n318,266,2.0\n318,267,1.5\n318,268,1.0\n318,269,1.5\n318,270,2.0\n318,271,2.5\n318,272,3.0\n318,273,3.5\n318,274,4.0\n318,275,9.5\n318,276,9.0\n318,277,8.5\n318,278,8.0\n318,279,7.5\n318,280,7.0\n318,281,6.5\n318,282,6.0\n318,283,5.5\n318,284,5.0\n318,285,4.5\n318,286,4.0\n318,287,3.5\n318,288,3.0\n318,289,2.5\n318,290,2.0\n318,291,1.5\n318,292,1.0\n318,293,0.5\n318,294,1.0\n318,295,1.5\n318,296,2.0\n318,297,2.5\n318,298,3.0\n318,299,3.5\n318,300,9.0\n318,301,8.5\n318,302,8.0\n318,303,7.5\n318,304,7.0\n318,305,6.5\n318,306,6.0\n318,307,5.5\n318,308,5.0\n318,309,4.5\n318,310,4.0\n318,311,3.5\n318,312,3.0\n318,313,2.5\n318,314,2.0\n318,315,1.5\n318,316,1.0\n318,317,0.5\n318,318,0\n318,319,0.5\n318,320,1.0\n318,321,1.5\n318,322,2.0\n318,323,2.5\n318,324,3.0\n318,325,9.5\n318,326,9.0\n318,327,8.5\n318,328,8.0\n318,329,7.5\n318,330,7.0\n318,331,6.5\n318,332,6.0\n318,333,5.5\n318,334,5.0\n318,335,4.5\n318,336,4.0\n318,337,3.5\n318,338,3.0\n318,339,2.5\n318,340,2.0\n318,341,1.5\n318,342,1.0\n318,343,0.5\n318,344,1.0\n318,345,1.5\n318,346,2.0\n318,347,2.5\n318,348,3.0\n318,349,3.5\n318,350,10.0\n318,351,9.5\n318,352,9.0\n318,353,8.5\n318,354,8.0\n318,355,7.5\n318,356,7.0\n318,357,6.5\n318,358,6.0\n318,359,5.5\n318,360,5.0\n318,361,4.5\n318,362,4.0\n318,363,3.5\n318,364,3.0\n318,365,2.5\n318,366,2.0\n318,367,1.5\n318,368,1.0\n318,369,1.5\n318,370,2.0\n318,371,2.5\n318,372,3.0\n318,373,3.5\n318,374,4.0\n318,375,10.5\n318,376,10.0\n318,377,9.5\n318,378,9.0\n318,379,8.5\n318,380,8.0\n318,381,7.5\n318,382,7.0\n318,383,6.5\n318,384,6.0\n318,385,5.5\n318,386,5.0\n318,387,4.5\n318,388,4.0\n318,389,3.5\n318,390,3.0\n318,391,2.5\n318,392,2.0\n318,393,1.5\n318,394,2.0\n318,395,2.5\n318,396,3.0\n318,397,3.5\n318,398,4.0\n318,399,4.5\n318,400,11.0\n318,401,10.5\n318,402,10.0\n318,403,9.5\n318,404,9.0\n318,405,8.5\n318,406,8.0\n318,407,7.5\n318,408,7.0\n318,409,6.5\n318,410,6.0\n318,411,5.5\n318,412,5.0\n318,413,4.5\n318,414,4.0\n318,415,3.5\n318,416,3.0\n318,417,2.5\n318,418,2.0\n318,419,2.5\n318,420,3.0\n318,421,3.5\n318,422,4.0\n318,423,4.5\n318,424,5.0\n318,425,11.5\n318,426,11.0\n318,427,10.5\n318,428,10.0\n318,429,9.5\n318,430,9.0\n318,431,8.5\n318,432,8.0\n318,433,7.5\n318,434,7.0\n318,435,6.5\n318,436,6.0\n318,437,5.5\n318,438,5.0\n318,439,4.5\n318,440,4.0\n318,441,3.5\n318,442,3.0\n318,443,2.5\n318,444,3.0\n318,445,3.5\n318,446,4.0\n318,447,4.5\n318,448,5.0\n318,449,5.5\n318,450,12.0\n318,451,11.5\n318,452,11.0\n318,453,10.5\n318,454,10.0\n318,455,9.5\n318,456,9.0\n318,457,8.5\n318,458,8.0\n318,459,7.5\n318,460,7.0\n318,461,6.5\n318,462,6.0\n318,463,5.5\n318,464,5.0\n318,465,4.5\n318,466,4.0\n318,467,3.5\n318,468,3.0\n318,469,3.5\n318,470,4.0\n318,471,4.5\n318,472,5.0\n318,473,5.5\n318,474,6.0\n318,475,12.5\n318,476,12.0\n318,477,11.5\n318,478,11.0\n318,479,10.5\n318,480,10.0\n318,481,9.5\n318,482,9.0\n318,483,8.5\n318,484,8.0\n318,485,7.5\n318,486,7.0\n318,487,6.5\n318,488,6.0\n318,489,5.5\n318,490,5.0\n318,491,4.5\n318,492,4.0\n318,493,3.5\n318,494,4.0\n318,495,4.5\n318,496,5.0\n318,497,5.5\n318,498,6.0\n318,499,6.5\n318,500,13.0\n318,501,12.5\n318,502,12.0\n318,503,11.5\n318,504,11.0\n318,505,10.5\n318,506,10.0\n318,507,9.5\n318,508,9.0\n318,509,8.5\n318,510,8.0\n318,511,7.5\n318,512,7.0\n318,513,6.5\n318,514,6.0\n318,515,5.5\n318,516,5.0\n318,517,4.5\n318,518,4.0\n318,519,4.5\n318,520,5.0\n318,521,5.5\n318,522,6.0\n318,523,6.5\n318,524,7.0\n318,525,13.5\n318,526,13.0\n318,527,12.5\n318,528,12.0\n318,529,11.5\n318,530,11.0\n318,531,10.5\n318,532,10.0\n318,533,9.5\n318,534,9.0\n318,535,8.5\n318,536,8.0\n318,537,7.5\n318,538,7.0\n318,539,6.5\n318,540,6.0\n318,541,5.5\n318,542,5.0\n318,543,4.5\n318,544,5.0\n318,545,5.5\n318,546,6.0\n318,547,6.5\n318,548,7.0\n318,549,7.5\n318,550,14.0\n318,551,13.5\n318,552,13.0\n318,553,12.5\n318,554,12.0\n318,555,11.5\n318,556,11.0\n318,557,10.5\n318,558,10.0\n318,559,9.5\n318,560,9.0\n318,561,8.5\n318,562,8.0\n318,563,7.5\n318,564,7.0\n318,565,6.5\n318,566,6.0\n318,567,5.5\n318,568,5.0\n318,569,5.5\n318,570,6.0\n318,571,6.5\n318,572,7.0\n318,573,7.5\n318,574,8.0\n318,575,14.5\n318,576,14.0\n318,577,13.5\n318,578,13.0\n318,579,12.5\n318,580,12.0\n318,581,11.5\n318,582,11.0\n318,583,10.5\n318,584,10.0\n318,585,9.5\n318,586,9.0\n318,587,8.5\n318,588,8.0\n318,589,7.5\n318,590,7.0\n318,591,6.5\n318,592,6.0\n318,593,5.5\n318,594,6.0\n318,595,6.5\n318,596,7.0\n318,597,7.5\n318,598,8.0\n318,599,8.5\n318,600,15.0\n318,601,14.5\n318,602,14.0\n318,603,13.5\n318,604,13.0\n318,605,12.5\n318,606,12.0\n318,607,11.5\n318,608,11.0\n318,609,10.5\n318,610,10.0\n318,611,9.5\n318,612,9.0\n318,613,8.5\n318,614,8.0\n318,615,7.5\n318,616,7.0\n318,617,6.5\n318,618,6.0\n318,619,6.5\n318,620,7.0\n318,621,7.5\n318,622,8.0\n318,623,8.5\n318,624,9.0\n319,0,15.5\n319,1,15.0\n319,2,14.5\n319,3,14.0\n319,4,13.5\n319,5,13.0\n319,6,12.5\n319,7,12.0\n319,8,11.5\n319,9,11.0\n319,10,10.5\n319,11,10.0\n319,12,9.5\n319,13,9.0\n319,14,8.5\n319,15,8.0\n319,16,7.5\n319,17,7.0\n319,18,6.5\n319,19,6.0\n319,20,6.5\n319,21,7.0\n319,22,7.5\n319,23,8.0\n319,24,8.5\n319,25,15.0\n319,26,14.5\n319,27,14.0\n319,28,13.5\n319,29,13.0\n319,30,12.5\n319,31,12.0\n319,32,11.5\n319,33,11.0\n319,34,10.5\n319,35,10.0\n319,36,9.5\n319,37,9.0\n319,38,8.5\n319,39,8.0\n319,40,7.5\n319,41,7.0\n319,42,6.5\n319,43,6.0\n319,44,5.5\n319,45,6.0\n319,46,6.5\n319,47,7.0\n319,48,7.5\n319,49,8.0\n319,50,14.5\n319,51,14.0\n319,52,13.5\n319,53,13.0\n319,54,12.5\n319,55,12.0\n319,56,11.5\n319,57,11.0\n319,58,10.5\n319,59,10.0\n319,60,9.5\n319,61,9.0\n319,62,8.5\n319,63,8.0\n319,64,7.5\n319,65,7.0\n319,66,6.5\n319,67,6.0\n319,68,5.5\n319,69,5.0\n319,70,5.5\n319,71,6.0\n319,72,6.5\n319,73,7.0\n319,74,7.5\n319,75,14.0\n319,76,13.5\n319,77,13.0\n319,78,12.5\n319,79,12.0\n319,80,11.5\n319,81,11.0\n319,82,10.5\n319,83,10.0\n319,84,9.5\n319,85,9.0\n319,86,8.5\n319,87,8.0\n319,88,7.5\n319,89,7.0\n319,90,6.5\n319,91,6.0\n319,92,5.5\n319,93,5.0\n319,94,4.5\n319,95,5.0\n319,96,5.5\n319,97,6.0\n319,98,6.5\n319,99,7.0\n319,100,13.5\n319,101,13.0\n319,102,12.5\n319,103,12.0\n319,104,11.5\n319,105,11.0\n319,106,10.5\n319,107,10.0\n319,108,9.5\n319,109,9.0\n319,110,8.5\n319,111,8.0\n319,112,7.5\n319,113,7.0\n319,114,6.5\n319,115,6.0\n319,116,5.5\n319,117,5.0\n319,118,4.5\n319,119,4.0\n319,120,4.5\n319,121,5.0\n319,122,5.5\n319,123,6.0\n319,124,6.5\n319,125,13.0\n319,126,12.5\n319,127,12.0\n319,128,11.5\n319,129,11.0\n319,130,10.5\n319,131,10.0\n319,132,9.5\n319,133,9.0\n319,134,8.5\n319,135,8.0\n319,136,7.5\n319,137,7.0\n319,138,6.5\n319,139,6.0\n319,140,5.5\n319,141,5.0\n319,142,4.5\n319,143,4.0\n319,144,3.5\n319,145,4.0\n319,146,4.5\n319,147,5.0\n319,148,5.5\n319,149,6.0\n319,150,12.5\n319,151,12.0\n319,152,11.5\n319,153,11.0\n319,154,10.5\n319,155,10.0\n319,156,9.5\n319,157,9.0\n319,158,8.5\n319,159,8.0\n319,160,7.5\n319,161,7.0\n319,162,6.5\n319,163,6.0\n319,164,5.5\n319,165,5.0\n319,166,4.5\n319,167,4.0\n319,168,3.5\n319,169,3.0\n319,170,3.5\n319,171,4.0\n319,172,4.5\n319,173,5.0\n319,174,5.5\n319,175,12.0\n319,176,11.5\n319,177,11.0\n319,178,10.5\n319,179,10.0\n319,180,9.5\n319,181,9.0\n319,182,8.5\n319,183,8.0\n319,184,7.5\n319,185,7.0\n319,186,6.5\n319,187,6.0\n319,188,5.5\n319,189,5.0\n319,190,4.5\n319,191,4.0\n319,192,3.5\n319,193,3.0\n319,194,2.5\n319,195,3.0\n319,196,3.5\n319,197,4.0\n319,198,4.5\n319,199,5.0\n319,200,11.5\n319,201,11.0\n319,202,10.5\n319,203,10.0\n319,204,9.5\n319,205,9.0\n319,206,8.5\n319,207,8.0\n319,208,7.5\n319,209,7.0\n319,210,6.5\n319,211,6.0\n319,212,5.5\n319,213,5.0\n319,214,4.5\n319,215,4.0\n319,216,3.5\n319,217,3.0\n319,218,2.5\n319,219,2.0\n319,220,2.5\n319,221,3.0\n319,222,3.5\n319,223,4.0\n319,224,4.5\n319,225,11.0\n319,226,10.5\n319,227,10.0\n319,228,9.5\n319,229,9.0\n319,230,8.5\n319,231,8.0\n319,232,7.5\n319,233,7.0\n319,234,6.5\n319,235,6.0\n319,236,5.5\n319,237,5.0\n319,238,4.5\n319,239,4.0\n319,240,3.5\n319,241,3.0\n319,242,2.5\n319,243,2.0\n319,244,1.5\n319,245,2.0\n319,246,2.5\n319,247,3.0\n319,248,3.5\n319,249,4.0\n319,250,10.5\n319,251,10.0\n319,252,9.5\n319,253,9.0\n319,254,8.5\n319,255,8.0\n319,256,7.5\n319,257,7.0\n319,258,6.5\n319,259,6.0\n319,260,5.5\n319,261,5.0\n319,262,4.5\n319,263,4.0\n319,264,3.5\n319,265,3.0\n319,266,2.5\n319,267,2.0\n319,268,1.5\n319,269,1.0\n319,270,1.5\n319,271,2.0\n319,272,2.5\n319,273,3.0\n319,274,3.5\n319,275,10.0\n319,276,9.5\n319,277,9.0\n319,278,8.5\n319,279,8.0\n319,280,7.5\n319,281,7.0\n319,282,6.5\n319,283,6.0\n319,284,5.5\n319,285,5.0\n319,286,4.5\n319,287,4.0\n319,288,3.5\n319,289,3.0\n319,290,2.5\n319,291,2.0\n319,292,1.5\n319,293,1.0\n319,294,0.5\n319,295,1.0\n319,296,1.5\n319,297,2.0\n319,298,2.5\n319,299,3.0\n319,300,9.5\n319,301,9.0\n319,302,8.5\n319,303,8.0\n319,304,7.5\n319,305,7.0\n319,306,6.5\n319,307,6.0\n319,308,5.5\n319,309,5.0\n319,310,4.5\n319,311,4.0\n319,312,3.5\n319,313,3.0\n319,314,2.5\n319,315,2.0\n319,316,1.5\n319,317,1.0\n319,318,0.5\n319,319,0\n319,320,0.5\n319,321,1.0\n319,322,1.5\n319,323,2.0\n319,324,2.5\n319,325,10.0\n319,326,9.5\n319,327,9.0\n319,328,8.5\n319,329,8.0\n319,330,7.5\n319,331,7.0\n319,332,6.5\n319,333,6.0\n319,334,5.5\n319,335,5.0\n319,336,4.5\n319,337,4.0\n319,338,3.5\n319,339,3.0\n319,340,2.5\n319,341,2.0\n319,342,1.5\n319,343,1.0\n319,344,0.5\n319,345,1.0\n319,346,1.5\n319,347,2.0\n319,348,2.5\n319,349,3.0\n319,350,10.5\n319,351,10.0\n319,352,9.5\n319,353,9.0\n319,354,8.5\n319,355,8.0\n319,356,7.5\n319,357,7.0\n319,358,6.5\n319,359,6.0\n319,360,5.5\n319,361,5.0\n319,362,4.5\n319,363,4.0\n319,364,3.5\n319,365,3.0\n319,366,2.5\n319,367,2.0\n319,368,1.5\n319,369,1.0\n319,370,1.5\n319,371,2.0\n319,372,2.5\n319,373,3.0\n319,374,3.5\n319,375,11.0\n319,376,10.5\n319,377,10.0\n319,378,9.5\n319,379,9.0\n319,380,8.5\n319,381,8.0\n319,382,7.5\n319,383,7.0\n319,384,6.5\n319,385,6.0\n319,386,5.5\n319,387,5.0\n319,388,4.5\n319,389,4.0\n319,390,3.5\n319,391,3.0\n319,392,2.5\n319,393,2.0\n319,394,1.5\n319,395,2.0\n319,396,2.5\n319,397,3.0\n319,398,3.5\n319,399,4.0\n319,400,11.5\n319,401,11.0\n319,402,10.5\n319,403,10.0\n319,404,9.5\n319,405,9.0\n319,406,8.5\n319,407,8.0\n319,408,7.5\n319,409,7.0\n319,410,6.5\n319,411,6.0\n319,412,5.5\n319,413,5.0\n319,414,4.5\n319,415,4.0\n319,416,3.5\n319,417,3.0\n319,418,2.5\n319,419,2.0\n319,420,2.5\n319,421,3.0\n319,422,3.5\n319,423,4.0\n319,424,4.5\n319,425,12.0\n319,426,11.5\n319,427,11.0\n319,428,10.5\n319,429,10.0\n319,430,9.5\n319,431,9.0\n319,432,8.5\n319,433,8.0\n319,434,7.5\n319,435,7.0\n319,436,6.5\n319,437,6.0\n319,438,5.5\n319,439,5.0\n319,440,4.5\n319,441,4.0\n319,442,3.5\n319,443,3.0\n319,444,2.5\n319,445,3.0\n319,446,3.5\n319,447,4.0\n319,448,4.5\n319,449,5.0\n319,450,12.5\n319,451,12.0\n319,452,11.5\n319,453,11.0\n319,454,10.5\n319,455,10.0\n319,456,9.5\n319,457,9.0\n319,458,8.5\n319,459,8.0\n319,460,7.5\n319,461,7.0\n319,462,6.5\n319,463,6.0\n319,464,5.5\n319,465,5.0\n319,466,4.5\n319,467,4.0\n319,468,3.5\n319,469,3.0\n319,470,3.5\n319,471,4.0\n319,472,4.5\n319,473,5.0\n319,474,5.5\n319,475,13.0\n319,476,12.5\n319,477,12.0\n319,478,11.5\n319,479,11.0\n319,480,10.5\n319,481,10.0\n319,482,9.5\n319,483,9.0\n319,484,8.5\n319,485,8.0\n319,486,7.5\n319,487,7.0\n319,488,6.5\n319,489,6.0\n319,490,5.5\n319,491,5.0\n319,492,4.5\n319,493,4.0\n319,494,3.5\n319,495,4.0\n319,496,4.5\n319,497,5.0\n319,498,5.5\n319,499,6.0\n319,500,13.5\n319,501,13.0\n319,502,12.5\n319,503,12.0\n319,504,11.5\n319,505,11.0\n319,506,10.5\n319,507,10.0\n319,508,9.5\n319,509,9.0\n319,510,8.5\n319,511,8.0\n319,512,7.5\n319,513,7.0\n319,514,6.5\n319,515,6.0\n319,516,5.5\n319,517,5.0\n319,518,4.5\n319,519,4.0\n319,520,4.5\n319,521,5.0\n319,522,5.5\n319,523,6.0\n319,524,6.5\n319,525,14.0\n319,526,13.5\n319,527,13.0\n319,528,12.5\n319,529,12.0\n319,530,11.5\n319,531,11.0\n319,532,10.5\n319,533,10.0\n319,534,9.5\n319,535,9.0\n319,536,8.5\n319,537,8.0\n319,538,7.5\n319,539,7.0\n319,540,6.5\n319,541,6.0\n319,542,5.5\n319,543,5.0\n319,544,4.5\n319,545,5.0\n319,546,5.5\n319,547,6.0\n319,548,6.5\n319,549,7.0\n319,550,14.5\n319,551,14.0\n319,552,13.5\n319,553,13.0\n319,554,12.5\n319,555,12.0\n319,556,11.5\n319,557,11.0\n319,558,10.5\n319,559,10.0\n319,560,9.5\n319,561,9.0\n319,562,8.5\n319,563,8.0\n319,564,7.5\n319,565,7.0\n319,566,6.5\n319,567,6.0\n319,568,5.5\n319,569,5.0\n319,570,5.5\n319,571,6.0\n319,572,6.5\n319,573,7.0\n319,574,7.5\n319,575,15.0\n319,576,14.5\n319,577,14.0\n319,578,13.5\n319,579,13.0\n319,580,12.5\n319,581,12.0\n319,582,11.5\n319,583,11.0\n319,584,10.5\n319,585,10.0\n319,586,9.5\n319,587,9.0\n319,588,8.5\n319,589,8.0\n319,590,7.5\n319,591,7.0\n319,592,6.5\n319,593,6.0\n319,594,5.5\n319,595,6.0\n319,596,6.5\n319,597,7.0\n319,598,7.5\n319,599,8.0\n319,600,15.5\n319,601,15.0\n319,602,14.5\n319,603,14.0\n319,604,13.5\n319,605,13.0\n319,606,12.5\n319,607,12.0\n319,608,11.5\n319,609,11.0\n319,610,10.5\n319,611,10.0\n319,612,9.5\n319,613,9.0\n319,614,8.5\n319,615,8.0\n319,616,7.5\n319,617,7.0\n319,618,6.5\n319,619,6.0\n319,620,6.5\n319,621,7.0\n319,622,7.5\n319,623,8.0\n319,624,8.5\n320,0,16.0\n320,1,15.5\n320,2,15.0\n320,3,14.5\n320,4,14.0\n320,5,13.5\n320,6,13.0\n320,7,12.5\n320,8,12.0\n320,9,11.5\n320,10,11.0\n320,11,10.5\n320,12,10.0\n320,13,9.5\n320,14,9.0\n320,15,8.5\n320,16,8.0\n320,17,7.5\n320,18,7.0\n320,19,6.5\n320,20,6.0\n320,21,6.5\n320,22,7.0\n320,23,7.5\n320,24,8.0\n320,25,15.5\n320,26,15.0\n320,27,14.5\n320,28,14.0\n320,29,13.5\n320,30,13.0\n320,31,12.5\n320,32,12.0\n320,33,11.5\n320,34,11.0\n320,35,10.5\n320,36,10.0\n320,37,9.5\n320,38,9.0\n320,39,8.5\n320,40,8.0\n320,41,7.5\n320,42,7.0\n320,43,6.5\n320,44,6.0\n320,45,5.5\n320,46,6.0\n320,47,6.5\n320,48,7.0\n320,49,7.5\n320,50,15.0\n320,51,14.5\n320,52,14.0\n320,53,13.5\n320,54,13.0\n320,55,12.5\n320,56,12.0\n320,57,11.5\n320,58,11.0\n320,59,10.5\n320,60,10.0\n320,61,9.5\n320,62,9.0\n320,63,8.5\n320,64,8.0\n320,65,7.5\n320,66,7.0\n320,67,6.5\n320,68,6.0\n320,69,5.5\n320,70,5.0\n320,71,5.5\n320,72,6.0\n320,73,6.5\n320,74,7.0\n320,75,14.5\n320,76,14.0\n320,77,13.5\n320,78,13.0\n320,79,12.5\n320,80,12.0\n320,81,11.5\n320,82,11.0\n320,83,10.5\n320,84,10.0\n320,85,9.5\n320,86,9.0\n320,87,8.5\n320,88,8.0\n320,89,7.5\n320,90,7.0\n320,91,6.5\n320,92,6.0\n320,93,5.5\n320,94,5.0\n320,95,4.5\n320,96,5.0\n320,97,5.5\n320,98,6.0\n320,99,6.5\n320,100,14.0\n320,101,13.5\n320,102,13.0\n320,103,12.5\n320,104,12.0\n320,105,11.5\n320,106,11.0\n320,107,10.5\n320,108,10.0\n320,109,9.5\n320,110,9.0\n320,111,8.5\n320,112,8.0\n320,113,7.5\n320,114,7.0\n320,115,6.5\n320,116,6.0\n320,117,5.5\n320,118,5.0\n320,119,4.5\n320,120,4.0\n320,121,4.5\n320,122,5.0\n320,123,5.5\n320,124,6.0\n320,125,13.5\n320,126,13.0\n320,127,12.5\n320,128,12.0\n320,129,11.5\n320,130,11.0\n320,131,10.5\n320,132,10.0\n320,133,9.5\n320,134,9.0\n320,135,8.5\n320,136,8.0\n320,137,7.5\n320,138,7.0\n320,139,6.5\n320,140,6.0\n320,141,5.5\n320,142,5.0\n320,143,4.5\n320,144,4.0\n320,145,3.5\n320,146,4.0\n320,147,4.5\n320,148,5.0\n320,149,5.5\n320,150,13.0\n320,151,12.5\n320,152,12.0\n320,153,11.5\n320,154,11.0\n320,155,10.5\n320,156,10.0\n320,157,9.5\n320,158,9.0\n320,159,8.5\n320,160,8.0\n320,161,7.5\n320,162,7.0\n320,163,6.5\n320,164,6.0\n320,165,5.5\n320,166,5.0\n320,167,4.5\n320,168,4.0\n320,169,3.5\n320,170,3.0\n320,171,3.5\n320,172,4.0\n320,173,4.5\n320,174,5.0\n320,175,12.5\n320,176,12.0\n320,177,11.5\n320,178,11.0\n320,179,10.5\n320,180,10.0\n320,181,9.5\n320,182,9.0\n320,183,8.5\n320,184,8.0\n320,185,7.5\n320,186,7.0\n320,187,6.5\n320,188,6.0\n320,189,5.5\n320,190,5.0\n320,191,4.5\n320,192,4.0\n320,193,3.5\n320,194,3.0\n320,195,2.5\n320,196,3.0\n320,197,3.5\n320,198,4.0\n320,199,4.5\n320,200,12.0\n320,201,11.5\n320,202,11.0\n320,203,10.5\n320,204,10.0\n320,205,9.5\n320,206,9.0\n320,207,8.5\n320,208,8.0\n320,209,7.5\n320,210,7.0\n320,211,6.5\n320,212,6.0\n320,213,5.5\n320,214,5.0\n320,215,4.5\n320,216,4.0\n320,217,3.5\n320,218,3.0\n320,219,2.5\n320,220,2.0\n320,221,2.5\n320,222,3.0\n320,223,3.5\n320,224,4.0\n320,225,11.5\n320,226,11.0\n320,227,10.5\n320,228,10.0\n320,229,9.5\n320,230,9.0\n320,231,8.5\n320,232,8.0\n320,233,7.5\n320,234,7.0\n320,235,6.5\n320,236,6.0\n320,237,5.5\n320,238,5.0\n320,239,4.5\n320,240,4.0\n320,241,3.5\n320,242,3.0\n320,243,2.5\n320,244,2.0\n320,245,1.5\n320,246,2.0\n320,247,2.5\n320,248,3.0\n320,249,3.5\n320,250,11.0\n320,251,10.5\n320,252,10.0\n320,253,9.5\n320,254,9.0\n320,255,8.5\n320,256,8.0\n320,257,7.5\n320,258,7.0\n320,259,6.5\n320,260,6.0\n320,261,5.5\n320,262,5.0\n320,263,4.5\n320,264,4.0\n320,265,3.5\n320,266,3.0\n320,267,2.5\n320,268,2.0\n320,269,1.5\n320,270,1.0\n320,271,1.5\n320,272,2.0\n320,273,2.5\n320,274,3.0\n320,275,10.5\n320,276,10.0\n320,277,9.5\n320,278,9.0\n320,279,8.5\n320,280,8.0\n320,281,7.5\n320,282,7.0\n320,283,6.5\n320,284,6.0\n320,285,5.5\n320,286,5.0\n320,287,4.5\n320,288,4.0\n320,289,3.5\n320,290,3.0\n320,291,2.5\n320,292,2.0\n320,293,1.5\n320,294,1.0\n320,295,0.5\n320,296,1.0\n320,297,1.5\n320,298,2.0\n320,299,2.5\n320,300,10.0\n320,301,9.5\n320,302,9.0\n320,303,8.5\n320,304,8.0\n320,305,7.5\n320,306,7.0\n320,307,6.5\n320,308,6.0\n320,309,5.5\n320,310,5.0\n320,311,4.5\n320,312,4.0\n320,313,3.5\n320,314,3.0\n320,315,2.5\n320,316,2.0\n320,317,1.5\n320,318,1.0\n320,319,0.5\n320,320,0\n320,321,0.5\n320,322,1.0\n320,323,1.5\n320,324,2.0\n320,325,10.5\n320,326,10.0\n320,327,9.5\n320,328,9.0\n320,329,8.5\n320,330,8.0\n320,331,7.5\n320,332,7.0\n320,333,6.5\n320,334,6.0\n320,335,5.5\n320,336,5.0\n320,337,4.5\n320,338,4.0\n320,339,3.5\n320,340,3.0\n320,341,2.5\n320,342,2.0\n320,343,1.5\n320,344,1.0\n320,345,0.5\n320,346,1.0\n320,347,1.5\n320,348,2.0\n320,349,2.5\n320,350,11.0\n320,351,10.5\n320,352,10.0\n320,353,9.5\n320,354,9.0\n320,355,8.5\n320,356,8.0\n320,357,7.5\n320,358,7.0\n320,359,6.5\n320,360,6.0\n320,361,5.5\n320,362,5.0\n320,363,4.5\n320,364,4.0\n320,365,3.5\n320,366,3.0\n320,367,2.5\n320,368,2.0\n320,369,1.5\n320,370,1.0\n320,371,1.5\n320,372,2.0\n320,373,2.5\n320,374,3.0\n320,375,11.5\n320,376,11.0\n320,377,10.5\n320,378,10.0\n320,379,9.5\n320,380,9.0\n320,381,8.5\n320,382,8.0\n320,383,7.5\n320,384,7.0\n320,385,6.5\n320,386,6.0\n320,387,5.5\n320,388,5.0\n320,389,4.5\n320,390,4.0\n320,391,3.5\n320,392,3.0\n320,393,2.5\n320,394,2.0\n320,395,1.5\n320,396,2.0\n320,397,2.5\n320,398,3.0\n320,399,3.5\n320,400,12.0\n320,401,11.5\n320,402,11.0\n320,403,10.5\n320,404,10.0\n320,405,9.5\n320,406,9.0\n320,407,8.5\n320,408,8.0\n320,409,7.5\n320,410,7.0\n320,411,6.5\n320,412,6.0\n320,413,5.5\n320,414,5.0\n320,415,4.5\n320,416,4.0\n320,417,3.5\n320,418,3.0\n320,419,2.5\n320,420,2.0\n320,421,2.5\n320,422,3.0\n320,423,3.5\n320,424,4.0\n320,425,12.5\n320,426,12.0\n320,427,11.5\n320,428,11.0\n320,429,10.5\n320,430,10.0\n320,431,9.5\n320,432,9.0\n320,433,8.5\n320,434,8.0\n320,435,7.5\n320,436,7.0\n320,437,6.5\n320,438,6.0\n320,439,5.5\n320,440,5.0\n320,441,4.5\n320,442,4.0\n320,443,3.5\n320,444,3.0\n320,445,2.5\n320,446,3.0\n320,447,3.5\n320,448,4.0\n320,449,4.5\n320,450,13.0\n320,451,12.5\n320,452,12.0\n320,453,11.5\n320,454,11.0\n320,455,10.5\n320,456,10.0\n320,457,9.5\n320,458,9.0\n320,459,8.5\n320,460,8.0\n320,461,7.5\n320,462,7.0\n320,463,6.5\n320,464,6.0\n320,465,5.5\n320,466,5.0\n320,467,4.5\n320,468,4.0\n320,469,3.5\n320,470,3.0\n320,471,3.5\n320,472,4.0\n320,473,4.5\n320,474,5.0\n320,475,13.5\n320,476,13.0\n320,477,12.5\n320,478,12.0\n320,479,11.5\n320,480,11.0\n320,481,10.5\n320,482,10.0\n320,483,9.5\n320,484,9.0\n320,485,8.5\n320,486,8.0\n320,487,7.5\n320,488,7.0\n320,489,6.5\n320,490,6.0\n320,491,5.5\n320,492,5.0\n320,493,4.5\n320,494,4.0\n320,495,3.5\n320,496,4.0\n320,497,4.5\n320,498,5.0\n320,499,5.5\n320,500,14.0\n320,501,13.5\n320,502,13.0\n320,503,12.5\n320,504,12.0\n320,505,11.5\n320,506,11.0\n320,507,10.5\n320,508,10.0\n320,509,9.5\n320,510,9.0\n320,511,8.5\n320,512,8.0\n320,513,7.5\n320,514,7.0\n320,515,6.5\n320,516,6.0\n320,517,5.5\n320,518,5.0\n320,519,4.5\n320,520,4.0\n320,521,4.5\n320,522,5.0\n320,523,5.5\n320,524,6.0\n320,525,14.5\n320,526,14.0\n320,527,13.5\n320,528,13.0\n320,529,12.5\n320,530,12.0\n320,531,11.5\n320,532,11.0\n320,533,10.5\n320,534,10.0\n320,535,9.5\n320,536,9.0\n320,537,8.5\n320,538,8.0\n320,539,7.5\n320,540,7.0\n320,541,6.5\n320,542,6.0\n320,543,5.5\n320,544,5.0\n320,545,4.5\n320,546,5.0\n320,547,5.5\n320,548,6.0\n320,549,6.5\n320,550,15.0\n320,551,14.5\n320,552,14.0\n320,553,13.5\n320,554,13.0\n320,555,12.5\n320,556,12.0\n320,557,11.5\n320,558,11.0\n320,559,10.5\n320,560,10.0\n320,561,9.5\n320,562,9.0\n320,563,8.5\n320,564,8.0\n320,565,7.5\n320,566,7.0\n320,567,6.5\n320,568,6.0\n320,569,5.5\n320,570,5.0\n320,571,5.5\n320,572,6.0\n320,573,6.5\n320,574,7.0\n320,575,15.5\n320,576,15.0\n320,577,14.5\n320,578,14.0\n320,579,13.5\n320,580,13.0\n320,581,12.5\n320,582,12.0\n320,583,11.5\n320,584,11.0\n320,585,10.5\n320,586,10.0\n320,587,9.5\n320,588,9.0\n320,589,8.5\n320,590,8.0\n320,591,7.5\n320,592,7.0\n320,593,6.5\n320,594,6.0\n320,595,5.5\n320,596,6.0\n320,597,6.5\n320,598,7.0\n320,599,7.5\n320,600,16.0\n320,601,15.5\n320,602,15.0\n320,603,14.5\n320,604,14.0\n320,605,13.5\n320,606,13.0\n320,607,12.5\n320,608,12.0\n320,609,11.5\n320,610,11.0\n320,611,10.5\n320,612,10.0\n320,613,9.5\n320,614,9.0\n320,615,8.5\n320,616,8.0\n320,617,7.5\n320,618,7.0\n320,619,6.5\n320,620,6.0\n320,621,6.5\n320,622,7.0\n320,623,7.5\n320,624,8.0\n321,0,16.5\n321,1,16.0\n321,2,15.5\n321,3,15.0\n321,4,14.5\n321,5,14.0\n321,6,13.5\n321,7,13.0\n321,8,12.5\n321,9,12.0\n321,10,11.5\n321,11,11.0\n321,12,10.5\n321,13,10.0\n321,14,9.5\n321,15,9.0\n321,16,8.5\n321,17,8.0\n321,18,7.5\n321,19,7.0\n321,20,6.5\n321,21,6.0\n321,22,6.5\n321,23,7.0\n321,24,7.5\n321,25,16.0\n321,26,15.5\n321,27,15.0\n321,28,14.5\n321,29,14.0\n321,30,13.5\n321,31,13.0\n321,32,12.5\n321,33,12.0\n321,34,11.5\n321,35,11.0\n321,36,10.5\n321,37,10.0\n321,38,9.5\n321,39,9.0\n321,40,8.5\n321,41,8.0\n321,42,7.5\n321,43,7.0\n321,44,6.5\n321,45,6.0\n321,46,5.5\n321,47,6.0\n321,48,6.5\n321,49,7.0\n321,50,15.5\n321,51,15.0\n321,52,14.5\n321,53,14.0\n321,54,13.5\n321,55,13.0\n321,56,12.5\n321,57,12.0\n321,58,11.5\n321,59,11.0\n321,60,10.5\n321,61,10.0\n321,62,9.5\n321,63,9.0\n321,64,8.5\n321,65,8.0\n321,66,7.5\n321,67,7.0\n321,68,6.5\n321,69,6.0\n321,70,5.5\n321,71,5.0\n321,72,5.5\n321,73,6.0\n321,74,6.5\n321,75,15.0\n321,76,14.5\n321,77,14.0\n321,78,13.5\n321,79,13.0\n321,80,12.5\n321,81,12.0\n321,82,11.5\n321,83,11.0\n321,84,10.5\n321,85,10.0\n321,86,9.5\n321,87,9.0\n321,88,8.5\n321,89,8.0\n321,90,7.5\n321,91,7.0\n321,92,6.5\n321,93,6.0\n321,94,5.5\n321,95,5.0\n321,96,4.5\n321,97,5.0\n321,98,5.5\n321,99,6.0\n321,100,14.5\n321,101,14.0\n321,102,13.5\n321,103,13.0\n321,104,12.5\n321,105,12.0\n321,106,11.5\n321,107,11.0\n321,108,10.5\n321,109,10.0\n321,110,9.5\n321,111,9.0\n321,112,8.5\n321,113,8.0\n321,114,7.5\n321,115,7.0\n321,116,6.5\n321,117,6.0\n321,118,5.5\n321,119,5.0\n321,120,4.5\n321,121,4.0\n321,122,4.5\n321,123,5.0\n321,124,5.5\n321,125,14.0\n321,126,13.5\n321,127,13.0\n321,128,12.5\n321,129,12.0\n321,130,11.5\n321,131,11.0\n321,132,10.5\n321,133,10.0\n321,134,9.5\n321,135,9.0\n321,136,8.5\n321,137,8.0\n321,138,7.5\n321,139,7.0\n321,140,6.5\n321,141,6.0\n321,142,5.5\n321,143,5.0\n321,144,4.5\n321,145,4.0\n321,146,3.5\n321,147,4.0\n321,148,4.5\n321,149,5.0\n321,150,13.5\n321,151,13.0\n321,152,12.5\n321,153,12.0\n321,154,11.5\n321,155,11.0\n321,156,10.5\n321,157,10.0\n321,158,9.5\n321,159,9.0\n321,160,8.5\n321,161,8.0\n321,162,7.5\n321,163,7.0\n321,164,6.5\n321,165,6.0\n321,166,5.5\n321,167,5.0\n321,168,4.5\n321,169,4.0\n321,170,3.5\n321,171,3.0\n321,172,3.5\n321,173,4.0\n321,174,4.5\n321,175,13.0\n321,176,12.5\n321,177,12.0\n321,178,11.5\n321,179,11.0\n321,180,10.5\n321,181,10.0\n321,182,9.5\n321,183,9.0\n321,184,8.5\n321,185,8.0\n321,186,7.5\n321,187,7.0\n321,188,6.5\n321,189,6.0\n321,190,5.5\n321,191,5.0\n321,192,4.5\n321,193,4.0\n321,194,3.5\n321,195,3.0\n321,196,2.5\n321,197,3.0\n321,198,3.5\n321,199,4.0\n321,200,12.5\n321,201,12.0\n321,202,11.5\n321,203,11.0\n321,204,10.5\n321,205,10.0\n321,206,9.5\n321,207,9.0\n321,208,8.5\n321,209,8.0\n321,210,7.5\n321,211,7.0\n321,212,6.5\n321,213,6.0\n321,214,5.5\n321,215,5.0\n321,216,4.5\n321,217,4.0\n321,218,3.5\n321,219,3.0\n321,220,2.5\n321,221,2.0\n321,222,2.5\n321,223,3.0\n321,224,3.5\n321,225,12.0\n321,226,11.5\n321,227,11.0\n321,228,10.5\n321,229,10.0\n321,230,9.5\n321,231,9.0\n321,232,8.5\n321,233,8.0\n321,234,7.5\n321,235,7.0\n321,236,6.5\n321,237,6.0\n321,238,5.5\n321,239,5.0\n321,240,4.5\n321,241,4.0\n321,242,3.5\n321,243,3.0\n321,244,2.5\n321,245,2.0\n321,246,1.5\n321,247,2.0\n321,248,2.5\n321,249,3.0\n321,250,11.5\n321,251,11.0\n321,252,10.5\n321,253,10.0\n321,254,9.5\n321,255,9.0\n321,256,8.5\n321,257,8.0\n321,258,7.5\n321,259,7.0\n321,260,6.5\n321,261,6.0\n321,262,5.5\n321,263,5.0\n321,264,4.5\n321,265,4.0\n321,266,3.5\n321,267,3.0\n321,268,2.5\n321,269,2.0\n321,270,1.5\n321,271,1.0\n321,272,1.5\n321,273,2.0\n321,274,2.5\n321,275,11.0\n321,276,10.5\n321,277,10.0\n321,278,9.5\n321,279,9.0\n321,280,8.5\n321,281,8.0\n321,282,7.5\n321,283,7.0\n321,284,6.5\n321,285,6.0\n321,286,5.5\n321,287,5.0\n321,288,4.5\n321,289,4.0\n321,290,3.5\n321,291,3.0\n321,292,2.5\n321,293,2.0\n321,294,1.5\n321,295,1.0\n321,296,0.5\n321,297,1.0\n321,298,1.5\n321,299,2.0\n321,300,10.5\n321,301,10.0\n321,302,9.5\n321,303,9.0\n321,304,8.5\n321,305,8.0\n321,306,7.5\n321,307,7.0\n321,308,6.5\n321,309,6.0\n321,310,5.5\n321,311,5.0\n321,312,4.5\n321,313,4.0\n321,314,3.5\n321,315,3.0\n321,316,2.5\n321,317,2.0\n321,318,1.5\n321,319,1.0\n321,320,0.5\n321,321,0\n321,322,0.5\n321,323,1.0\n321,324,1.5\n321,325,11.0\n321,326,10.5\n321,327,10.0\n321,328,9.5\n321,329,9.0\n321,330,8.5\n321,331,8.0\n321,332,7.5\n321,333,7.0\n321,334,6.5\n321,335,6.0\n321,336,5.5\n321,337,5.0\n321,338,4.5\n321,339,4.0\n321,340,3.5\n321,341,3.0\n321,342,2.5\n321,343,2.0\n321,344,1.5\n321,345,1.0\n321,346,0.5\n321,347,1.0\n321,348,1.5\n321,349,2.0\n321,350,11.5\n321,351,11.0\n321,352,10.5\n321,353,10.0\n321,354,9.5\n321,355,9.0\n321,356,8.5\n321,357,8.0\n321,358,7.5\n321,359,7.0\n321,360,6.5\n321,361,6.0\n321,362,5.5\n321,363,5.0\n321,364,4.5\n321,365,4.0\n321,366,3.5\n321,367,3.0\n321,368,2.5\n321,369,2.0\n321,370,1.5\n321,371,1.0\n321,372,1.5\n321,373,2.0\n321,374,2.5\n321,375,12.0\n321,376,11.5\n321,377,11.0\n321,378,10.5\n321,379,10.0\n321,380,9.5\n321,381,9.0\n321,382,8.5\n321,383,8.0\n321,384,7.5\n321,385,7.0\n321,386,6.5\n321,387,6.0\n321,388,5.5\n321,389,5.0\n321,390,4.5\n321,391,4.0\n321,392,3.5\n321,393,3.0\n321,394,2.5\n321,395,2.0\n321,396,1.5\n321,397,2.0\n321,398,2.5\n321,399,3.0\n321,400,12.5\n321,401,12.0\n321,402,11.5\n321,403,11.0\n321,404,10.5\n321,405,10.0\n321,406,9.5\n321,407,9.0\n321,408,8.5\n321,409,8.0\n321,410,7.5\n321,411,7.0\n321,412,6.5\n321,413,6.0\n321,414,5.5\n321,415,5.0\n321,416,4.5\n321,417,4.0\n321,418,3.5\n321,419,3.0\n321,420,2.5\n321,421,2.0\n321,422,2.5\n321,423,3.0\n321,424,3.5\n321,425,13.0\n321,426,12.5\n321,427,12.0\n321,428,11.5\n321,429,11.0\n321,430,10.5\n321,431,10.0\n321,432,9.5\n321,433,9.0\n321,434,8.5\n321,435,8.0\n321,436,7.5\n321,437,7.0\n321,438,6.5\n321,439,6.0\n321,440,5.5\n321,441,5.0\n321,442,4.5\n321,443,4.0\n321,444,3.5\n321,445,3.0\n321,446,2.5\n321,447,3.0\n321,448,3.5\n321,449,4.0\n321,450,13.5\n321,451,13.0\n321,452,12.5\n321,453,12.0\n321,454,11.5\n321,455,11.0\n321,456,10.5\n321,457,10.0\n321,458,9.5\n321,459,9.0\n321,460,8.5\n321,461,8.0\n321,462,7.5\n321,463,7.0\n321,464,6.5\n321,465,6.0\n321,466,5.5\n321,467,5.0\n321,468,4.5\n321,469,4.0\n321,470,3.5\n321,471,3.0\n321,472,3.5\n321,473,4.0\n321,474,4.5\n321,475,14.0\n321,476,13.5\n321,477,13.0\n321,478,12.5\n321,479,12.0\n321,480,11.5\n321,481,11.0\n321,482,10.5\n321,483,10.0\n321,484,9.5\n321,485,9.0\n321,486,8.5\n321,487,8.0\n321,488,7.5\n321,489,7.0\n321,490,6.5\n321,491,6.0\n321,492,5.5\n321,493,5.0\n321,494,4.5\n321,495,4.0\n321,496,3.5\n321,497,4.0\n321,498,4.5\n321,499,5.0\n321,500,14.5\n321,501,14.0\n321,502,13.5\n321,503,13.0\n321,504,12.5\n321,505,12.0\n321,506,11.5\n321,507,11.0\n321,508,10.5\n321,509,10.0\n321,510,9.5\n321,511,9.0\n321,512,8.5\n321,513,8.0\n321,514,7.5\n321,515,7.0\n321,516,6.5\n321,517,6.0\n321,518,5.5\n321,519,5.0\n321,520,4.5\n321,521,4.0\n321,522,4.5\n321,523,5.0\n321,524,5.5\n321,525,15.0\n321,526,14.5\n321,527,14.0\n321,528,13.5\n321,529,13.0\n321,530,12.5\n321,531,12.0\n321,532,11.5\n321,533,11.0\n321,534,10.5\n321,535,10.0\n321,536,9.5\n321,537,9.0\n321,538,8.5\n321,539,8.0\n321,540,7.5\n321,541,7.0\n321,542,6.5\n321,543,6.0\n321,544,5.5\n321,545,5.0\n321,546,4.5\n321,547,5.0\n321,548,5.5\n321,549,6.0\n321,550,15.5\n321,551,15.0\n321,552,14.5\n321,553,14.0\n321,554,13.5\n321,555,13.0\n321,556,12.5\n321,557,12.0\n321,558,11.5\n321,559,11.0\n321,560,10.5\n321,561,10.0\n321,562,9.5\n321,563,9.0\n321,564,8.5\n321,565,8.0\n321,566,7.5\n321,567,7.0\n321,568,6.5\n321,569,6.0\n321,570,5.5\n321,571,5.0\n321,572,5.5\n321,573,6.0\n321,574,6.5\n321,575,16.0\n321,576,15.5\n321,577,15.0\n321,578,14.5\n321,579,14.0\n321,580,13.5\n321,581,13.0\n321,582,12.5\n321,583,12.0\n321,584,11.5\n321,585,11.0\n321,586,10.5\n321,587,10.0\n321,588,9.5\n321,589,9.0\n321,590,8.5\n321,591,8.0\n321,592,7.5\n321,593,7.0\n321,594,6.5\n321,595,6.0\n321,596,5.5\n321,597,6.0\n321,598,6.5\n321,599,7.0\n321,600,16.5\n321,601,16.0\n321,602,15.5\n321,603,15.0\n321,604,14.5\n321,605,14.0\n321,606,13.5\n321,607,13.0\n321,608,12.5\n321,609,12.0\n321,610,11.5\n321,611,11.0\n321,612,10.5\n321,613,10.0\n321,614,9.5\n321,615,9.0\n321,616,8.5\n321,617,8.0\n321,618,7.5\n321,619,7.0\n321,620,6.5\n321,621,6.0\n321,622,6.5\n321,623,7.0\n321,624,7.5\n322,0,17.0\n322,1,16.5\n322,2,16.0\n322,3,15.5\n322,4,15.0\n322,5,14.5\n322,6,14.0\n322,7,13.5\n322,8,13.0\n322,9,12.5\n322,10,12.0\n322,11,11.5\n322,12,11.0\n322,13,10.5\n322,14,10.0\n322,15,9.5\n322,16,9.0\n322,17,8.5\n322,18,8.0\n322,19,7.5\n322,20,7.0\n322,21,6.5\n322,22,6.0\n322,23,6.5\n322,24,7.0\n322,25,16.5\n322,26,16.0\n322,27,15.5\n322,28,15.0\n322,29,14.5\n322,30,14.0\n322,31,13.5\n322,32,13.0\n322,33,12.5\n322,34,12.0\n322,35,11.5\n322,36,11.0\n322,37,10.5\n322,38,10.0\n322,39,9.5\n322,40,9.0\n322,41,8.5\n322,42,8.0\n322,43,7.5\n322,44,7.0\n322,45,6.5\n322,46,6.0\n322,47,5.5\n322,48,6.0\n322,49,6.5\n322,50,16.0\n322,51,15.5\n322,52,15.0\n322,53,14.5\n322,54,14.0\n322,55,13.5\n322,56,13.0\n322,57,12.5\n322,58,12.0\n322,59,11.5\n322,60,11.0\n322,61,10.5\n322,62,10.0\n322,63,9.5\n322,64,9.0\n322,65,8.5\n322,66,8.0\n322,67,7.5\n322,68,7.0\n322,69,6.5\n322,70,6.0\n322,71,5.5\n322,72,5.0\n322,73,5.5\n322,74,6.0\n322,75,15.5\n322,76,15.0\n322,77,14.5\n322,78,14.0\n322,79,13.5\n322,80,13.0\n322,81,12.5\n322,82,12.0\n322,83,11.5\n322,84,11.0\n322,85,10.5\n322,86,10.0\n322,87,9.5\n322,88,9.0\n322,89,8.5\n322,90,8.0\n322,91,7.5\n322,92,7.0\n322,93,6.5\n322,94,6.0\n322,95,5.5\n322,96,5.0\n322,97,4.5\n322,98,5.0\n322,99,5.5\n322,100,15.0\n322,101,14.5\n322,102,14.0\n322,103,13.5\n322,104,13.0\n322,105,12.5\n322,106,12.0\n322,107,11.5\n322,108,11.0\n322,109,10.5\n322,110,10.0\n322,111,9.5\n322,112,9.0\n322,113,8.5\n322,114,8.0\n322,115,7.5\n322,116,7.0\n322,117,6.5\n322,118,6.0\n322,119,5.5\n322,120,5.0\n322,121,4.5\n322,122,4.0\n322,123,4.5\n322,124,5.0\n322,125,14.5\n322,126,14.0\n322,127,13.5\n322,128,13.0\n322,129,12.5\n322,130,12.0\n322,131,11.5\n322,132,11.0\n322,133,10.5\n322,134,10.0\n322,135,9.5\n322,136,9.0\n322,137,8.5\n322,138,8.0\n322,139,7.5\n322,140,7.0\n322,141,6.5\n322,142,6.0\n322,143,5.5\n322,144,5.0\n322,145,4.5\n322,146,4.0\n322,147,3.5\n322,148,4.0\n322,149,4.5\n322,150,14.0\n322,151,13.5\n322,152,13.0\n322,153,12.5\n322,154,12.0\n322,155,11.5\n322,156,11.0\n322,157,10.5\n322,158,10.0\n322,159,9.5\n322,160,9.0\n322,161,8.5\n322,162,8.0\n322,163,7.5\n322,164,7.0\n322,165,6.5\n322,166,6.0\n322,167,5.5\n322,168,5.0\n322,169,4.5\n322,170,4.0\n322,171,3.5\n322,172,3.0\n322,173,3.5\n322,174,4.0\n322,175,13.5\n322,176,13.0\n322,177,12.5\n322,178,12.0\n322,179,11.5\n322,180,11.0\n322,181,10.5\n322,182,10.0\n322,183,9.5\n322,184,9.0\n322,185,8.5\n322,186,8.0\n322,187,7.5\n322,188,7.0\n322,189,6.5\n322,190,6.0\n322,191,5.5\n322,192,5.0\n322,193,4.5\n322,194,4.0\n322,195,3.5\n322,196,3.0\n322,197,2.5\n322,198,3.0\n322,199,3.5\n322,200,13.0\n322,201,12.5\n322,202,12.0\n322,203,11.5\n322,204,11.0\n322,205,10.5\n322,206,10.0\n322,207,9.5\n322,208,9.0\n322,209,8.5\n322,210,8.0\n322,211,7.5\n322,212,7.0\n322,213,6.5\n322,214,6.0\n322,215,5.5\n322,216,5.0\n322,217,4.5\n322,218,4.0\n322,219,3.5\n322,220,3.0\n322,221,2.5\n322,222,2.0\n322,223,2.5\n322,224,3.0\n322,225,12.5\n322,226,12.0\n322,227,11.5\n322,228,11.0\n322,229,10.5\n322,230,10.0\n322,231,9.5\n322,232,9.0\n322,233,8.5\n322,234,8.0\n322,235,7.5\n322,236,7.0\n322,237,6.5\n322,238,6.0\n322,239,5.5\n322,240,5.0\n322,241,4.5\n322,242,4.0\n322,243,3.5\n322,244,3.0\n322,245,2.5\n322,246,2.0\n322,247,1.5\n322,248,2.0\n322,249,2.5\n322,250,12.0\n322,251,11.5\n322,252,11.0\n322,253,10.5\n322,254,10.0\n322,255,9.5\n322,256,9.0\n322,257,8.5\n322,258,8.0\n322,259,7.5\n322,260,7.0\n322,261,6.5\n322,262,6.0\n322,263,5.5\n322,264,5.0\n322,265,4.5\n322,266,4.0\n322,267,3.5\n322,268,3.0\n322,269,2.5\n322,270,2.0\n322,271,1.5\n322,272,1.0\n322,273,1.5\n322,274,2.0\n322,275,11.5\n322,276,11.0\n322,277,10.5\n322,278,10.0\n322,279,9.5\n322,280,9.0\n322,281,8.5\n322,282,8.0\n322,283,7.5\n322,284,7.0\n322,285,6.5\n322,286,6.0\n322,287,5.5\n322,288,5.0\n322,289,4.5\n322,290,4.0\n322,291,3.5\n322,292,3.0\n322,293,2.5\n322,294,2.0\n322,295,1.5\n322,296,1.0\n322,297,0.5\n322,298,1.0\n322,299,1.5\n322,300,11.0\n322,301,10.5\n322,302,10.0\n322,303,9.5\n322,304,9.0\n322,305,8.5\n322,306,8.0\n322,307,7.5\n322,308,7.0\n322,309,6.5\n322,310,6.0\n322,311,5.5\n322,312,5.0\n322,313,4.5\n322,314,4.0\n322,315,3.5\n322,316,3.0\n322,317,2.5\n322,318,2.0\n322,319,1.5\n322,320,1.0\n322,321,0.5\n322,322,0\n322,323,0.5\n322,324,1.0\n322,325,11.5\n322,326,11.0\n322,327,10.5\n322,328,10.0\n322,329,9.5\n322,330,9.0\n322,331,8.5\n322,332,8.0\n322,333,7.5\n322,334,7.0\n322,335,6.5\n322,336,6.0\n322,337,5.5\n322,338,5.0\n322,339,4.5\n322,340,4.0\n322,341,3.5\n322,342,3.0\n322,343,2.5\n322,344,2.0\n322,345,1.5\n322,346,1.0\n322,347,0.5\n322,348,1.0\n322,349,1.5\n322,350,12.0\n322,351,11.5\n322,352,11.0\n322,353,10.5\n322,354,10.0\n322,355,9.5\n322,356,9.0\n322,357,8.5\n322,358,8.0\n322,359,7.5\n322,360,7.0\n322,361,6.5\n322,362,6.0\n322,363,5.5\n322,364,5.0\n322,365,4.5\n322,366,4.0\n322,367,3.5\n322,368,3.0\n322,369,2.5\n322,370,2.0\n322,371,1.5\n322,372,1.0\n322,373,1.5\n322,374,2.0\n322,375,12.5\n322,376,12.0\n322,377,11.5\n322,378,11.0\n322,379,10.5\n322,380,10.0\n322,381,9.5\n322,382,9.0\n322,383,8.5\n322,384,8.0\n322,385,7.5\n322,386,7.0\n322,387,6.5\n322,388,6.0\n322,389,5.5\n322,390,5.0\n322,391,4.5\n322,392,4.0\n322,393,3.5\n322,394,3.0\n322,395,2.5\n322,396,2.0\n322,397,1.5\n322,398,2.0\n322,399,2.5\n322,400,13.0\n322,401,12.5\n322,402,12.0\n322,403,11.5\n322,404,11.0\n322,405,10.5\n322,406,10.0\n322,407,9.5\n322,408,9.0\n322,409,8.5\n322,410,8.0\n322,411,7.5\n322,412,7.0\n322,413,6.5\n322,414,6.0\n322,415,5.5\n322,416,5.0\n322,417,4.5\n322,418,4.0\n322,419,3.5\n322,420,3.0\n322,421,2.5\n322,422,2.0\n322,423,2.5\n322,424,3.0\n322,425,13.5\n322,426,13.0\n322,427,12.5\n322,428,12.0\n322,429,11.5\n322,430,11.0\n322,431,10.5\n322,432,10.0\n322,433,9.5\n322,434,9.0\n322,435,8.5\n322,436,8.0\n322,437,7.5\n322,438,7.0\n322,439,6.5\n322,440,6.0\n322,441,5.5\n322,442,5.0\n322,443,4.5\n322,444,4.0\n322,445,3.5\n322,446,3.0\n322,447,2.5\n322,448,3.0\n322,449,3.5\n322,450,14.0\n322,451,13.5\n322,452,13.0\n322,453,12.5\n322,454,12.0\n322,455,11.5\n322,456,11.0\n322,457,10.5\n322,458,10.0\n322,459,9.5\n322,460,9.0\n322,461,8.5\n322,462,8.0\n322,463,7.5\n322,464,7.0\n322,465,6.5\n322,466,6.0\n322,467,5.5\n322,468,5.0\n322,469,4.5\n322,470,4.0\n322,471,3.5\n322,472,3.0\n322,473,3.5\n322,474,4.0\n322,475,14.5\n322,476,14.0\n322,477,13.5\n322,478,13.0\n322,479,12.5\n322,480,12.0\n322,481,11.5\n322,482,11.0\n322,483,10.5\n322,484,10.0\n322,485,9.5\n322,486,9.0\n322,487,8.5\n322,488,8.0\n322,489,7.5\n322,490,7.0\n322,491,6.5\n322,492,6.0\n322,493,5.5\n322,494,5.0\n322,495,4.5\n322,496,4.0\n322,497,3.5\n322,498,4.0\n322,499,4.5\n322,500,15.0\n322,501,14.5\n322,502,14.0\n322,503,13.5\n322,504,13.0\n322,505,12.5\n322,506,12.0\n322,507,11.5\n322,508,11.0\n322,509,10.5\n322,510,10.0\n322,511,9.5\n322,512,9.0\n322,513,8.5\n322,514,8.0\n322,515,7.5\n322,516,7.0\n322,517,6.5\n322,518,6.0\n322,519,5.5\n322,520,5.0\n322,521,4.5\n322,522,4.0\n322,523,4.5\n322,524,5.0\n322,525,15.5\n322,526,15.0\n322,527,14.5\n322,528,14.0\n322,529,13.5\n322,530,13.0\n322,531,12.5\n322,532,12.0\n322,533,11.5\n322,534,11.0\n322,535,10.5\n322,536,10.0\n322,537,9.5\n322,538,9.0\n322,539,8.5\n322,540,8.0\n322,541,7.5\n322,542,7.0\n322,543,6.5\n322,544,6.0\n322,545,5.5\n322,546,5.0\n322,547,4.5\n322,548,5.0\n322,549,5.5\n322,550,16.0\n322,551,15.5\n322,552,15.0\n322,553,14.5\n322,554,14.0\n322,555,13.5\n322,556,13.0\n322,557,12.5\n322,558,12.0\n322,559,11.5\n322,560,11.0\n322,561,10.5\n322,562,10.0\n322,563,9.5\n322,564,9.0\n322,565,8.5\n322,566,8.0\n322,567,7.5\n322,568,7.0\n322,569,6.5\n322,570,6.0\n322,571,5.5\n322,572,5.0\n322,573,5.5\n322,574,6.0\n322,575,16.5\n322,576,16.0\n322,577,15.5\n322,578,15.0\n322,579,14.5\n322,580,14.0\n322,581,13.5\n322,582,13.0\n322,583,12.5\n322,584,12.0\n322,585,11.5\n322,586,11.0\n322,587,10.5\n322,588,10.0\n322,589,9.5\n322,590,9.0\n322,591,8.5\n322,592,8.0\n322,593,7.5\n322,594,7.0\n322,595,6.5\n322,596,6.0\n322,597,5.5\n322,598,6.0\n322,599,6.5\n322,600,17.0\n322,601,16.5\n322,602,16.0\n322,603,15.5\n322,604,15.0\n322,605,14.5\n322,606,14.0\n322,607,13.5\n322,608,13.0\n322,609,12.5\n322,610,12.0\n322,611,11.5\n322,612,11.0\n322,613,10.5\n322,614,10.0\n322,615,9.5\n322,616,9.0\n322,617,8.5\n322,618,8.0\n322,619,7.5\n322,620,7.0\n322,621,6.5\n322,622,6.0\n322,623,6.5\n322,624,7.0\n323,0,17.5\n323,1,17.0\n323,2,16.5\n323,3,16.0\n323,4,15.5\n323,5,15.0\n323,6,14.5\n323,7,14.0\n323,8,13.5\n323,9,13.0\n323,10,12.5\n323,11,12.0\n323,12,11.5\n323,13,11.0\n323,14,10.5\n323,15,10.0\n323,16,9.5\n323,17,9.0\n323,18,8.5\n323,19,8.0\n323,20,7.5\n323,21,7.0\n323,22,6.5\n323,23,6.0\n323,24,6.5\n323,25,17.0\n323,26,16.5\n323,27,16.0\n323,28,15.5\n323,29,15.0\n323,30,14.5\n323,31,14.0\n323,32,13.5\n323,33,13.0\n323,34,12.5\n323,35,12.0\n323,36,11.5\n323,37,11.0\n323,38,10.5\n323,39,10.0\n323,40,9.5\n323,41,9.0\n323,42,8.5\n323,43,8.0\n323,44,7.5\n323,45,7.0\n323,46,6.5\n323,47,6.0\n323,48,5.5\n323,49,6.0\n323,50,16.5\n323,51,16.0\n323,52,15.5\n323,53,15.0\n323,54,14.5\n323,55,14.0\n323,56,13.5\n323,57,13.0\n323,58,12.5\n323,59,12.0\n323,60,11.5\n323,61,11.0\n323,62,10.5\n323,63,10.0\n323,64,9.5\n323,65,9.0\n323,66,8.5\n323,67,8.0\n323,68,7.5\n323,69,7.0\n323,70,6.5\n323,71,6.0\n323,72,5.5\n323,73,5.0\n323,74,5.5\n323,75,16.0\n323,76,15.5\n323,77,15.0\n323,78,14.5\n323,79,14.0\n323,80,13.5\n323,81,13.0\n323,82,12.5\n323,83,12.0\n323,84,11.5\n323,85,11.0\n323,86,10.5\n323,87,10.0\n323,88,9.5\n323,89,9.0\n323,90,8.5\n323,91,8.0\n323,92,7.5\n323,93,7.0\n323,94,6.5\n323,95,6.0\n323,96,5.5\n323,97,5.0\n323,98,4.5\n323,99,5.0\n323,100,15.5\n323,101,15.0\n323,102,14.5\n323,103,14.0\n323,104,13.5\n323,105,13.0\n323,106,12.5\n323,107,12.0\n323,108,11.5\n323,109,11.0\n323,110,10.5\n323,111,10.0\n323,112,9.5\n323,113,9.0\n323,114,8.5\n323,115,8.0\n323,116,7.5\n323,117,7.0\n323,118,6.5\n323,119,6.0\n323,120,5.5\n323,121,5.0\n323,122,4.5\n323,123,4.0\n323,124,4.5\n323,125,15.0\n323,126,14.5\n323,127,14.0\n323,128,13.5\n323,129,13.0\n323,130,12.5\n323,131,12.0\n323,132,11.5\n323,133,11.0\n323,134,10.5\n323,135,10.0\n323,136,9.5\n323,137,9.0\n323,138,8.5\n323,139,8.0\n323,140,7.5\n323,141,7.0\n323,142,6.5\n323,143,6.0\n323,144,5.5\n323,145,5.0\n323,146,4.5\n323,147,4.0\n323,148,3.5\n323,149,4.0\n323,150,14.5\n323,151,14.0\n323,152,13.5\n323,153,13.0\n323,154,12.5\n323,155,12.0\n323,156,11.5\n323,157,11.0\n323,158,10.5\n323,159,10.0\n323,160,9.5\n323,161,9.0\n323,162,8.5\n323,163,8.0\n323,164,7.5\n323,165,7.0\n323,166,6.5\n323,167,6.0\n323,168,5.5\n323,169,5.0\n323,170,4.5\n323,171,4.0\n323,172,3.5\n323,173,3.0\n323,174,3.5\n323,175,14.0\n323,176,13.5\n323,177,13.0\n323,178,12.5\n323,179,12.0\n323,180,11.5\n323,181,11.0\n323,182,10.5\n323,183,10.0\n323,184,9.5\n323,185,9.0\n323,186,8.5\n323,187,8.0\n323,188,7.5\n323,189,7.0\n323,190,6.5\n323,191,6.0\n323,192,5.5\n323,193,5.0\n323,194,4.5\n323,195,4.0\n323,196,3.5\n323,197,3.0\n323,198,2.5\n323,199,3.0\n323,200,13.5\n323,201,13.0\n323,202,12.5\n323,203,12.0\n323,204,11.5\n323,205,11.0\n323,206,10.5\n323,207,10.0\n323,208,9.5\n323,209,9.0\n323,210,8.5\n323,211,8.0\n323,212,7.5\n323,213,7.0\n323,214,6.5\n323,215,6.0\n323,216,5.5\n323,217,5.0\n323,218,4.5\n323,219,4.0\n323,220,3.5\n323,221,3.0\n323,222,2.5\n323,223,2.0\n323,224,2.5\n323,225,13.0\n323,226,12.5\n323,227,12.0\n323,228,11.5\n323,229,11.0\n323,230,10.5\n323,231,10.0\n323,232,9.5\n323,233,9.0\n323,234,8.5\n323,235,8.0\n323,236,7.5\n323,237,7.0\n323,238,6.5\n323,239,6.0\n323,240,5.5\n323,241,5.0\n323,242,4.5\n323,243,4.0\n323,244,3.5\n323,245,3.0\n323,246,2.5\n323,247,2.0\n323,248,1.5\n323,249,2.0\n323,250,12.5\n323,251,12.0\n323,252,11.5\n323,253,11.0\n323,254,10.5\n323,255,10.0\n323,256,9.5\n323,257,9.0\n323,258,8.5\n323,259,8.0\n323,260,7.5\n323,261,7.0\n323,262,6.5\n323,263,6.0\n323,264,5.5\n323,265,5.0\n323,266,4.5\n323,267,4.0\n323,268,3.5\n323,269,3.0\n323,270,2.5\n323,271,2.0\n323,272,1.5\n323,273,1.0\n323,274,1.5\n323,275,12.0\n323,276,11.5\n323,277,11.0\n323,278,10.5\n323,279,10.0\n323,280,9.5\n323,281,9.0\n323,282,8.5\n323,283,8.0\n323,284,7.5\n323,285,7.0\n323,286,6.5\n323,287,6.0\n323,288,5.5\n323,289,5.0\n323,290,4.5\n323,291,4.0\n323,292,3.5\n323,293,3.0\n323,294,2.5\n323,295,2.0\n323,296,1.5\n323,297,1.0\n323,298,0.5\n323,299,1.0\n323,300,11.5\n323,301,11.0\n323,302,10.5\n323,303,10.0\n323,304,9.5\n323,305,9.0\n323,306,8.5\n323,307,8.0\n323,308,7.5\n323,309,7.0\n323,310,6.5\n323,311,6.0\n323,312,5.5\n323,313,5.0\n323,314,4.5\n323,315,4.0\n323,316,3.5\n323,317,3.0\n323,318,2.5\n323,319,2.0\n323,320,1.5\n323,321,1.0\n323,322,0.5\n323,323,0\n323,324,0.5\n323,325,12.0\n323,326,11.5\n323,327,11.0\n323,328,10.5\n323,329,10.0\n323,330,9.5\n323,331,9.0\n323,332,8.5\n323,333,8.0\n323,334,7.5\n323,335,7.0\n323,336,6.5\n323,337,6.0\n323,338,5.5\n323,339,5.0\n323,340,4.5\n323,341,4.0\n323,342,3.5\n323,343,3.0\n323,344,2.5\n323,345,2.0\n323,346,1.5\n323,347,1.0\n323,348,0.5\n323,349,1.0\n323,350,12.5\n323,351,12.0\n323,352,11.5\n323,353,11.0\n323,354,10.5\n323,355,10.0\n323,356,9.5\n323,357,9.0\n323,358,8.5\n323,359,8.0\n323,360,7.5\n323,361,7.0\n323,362,6.5\n323,363,6.0\n323,364,5.5\n323,365,5.0\n323,366,4.5\n323,367,4.0\n323,368,3.5\n323,369,3.0\n323,370,2.5\n323,371,2.0\n323,372,1.5\n323,373,1.0\n323,374,1.5\n323,375,13.0\n323,376,12.5\n323,377,12.0\n323,378,11.5\n323,379,11.0\n323,380,10.5\n323,381,10.0\n323,382,9.5\n323,383,9.0\n323,384,8.5\n323,385,8.0\n323,386,7.5\n323,387,7.0\n323,388,6.5\n323,389,6.0\n323,390,5.5\n323,391,5.0\n323,392,4.5\n323,393,4.0\n323,394,3.5\n323,395,3.0\n323,396,2.5\n323,397,2.0\n323,398,1.5\n323,399,2.0\n323,400,13.5\n323,401,13.0\n323,402,12.5\n323,403,12.0\n323,404,11.5\n323,405,11.0\n323,406,10.5\n323,407,10.0\n323,408,9.5\n323,409,9.0\n323,410,8.5\n323,411,8.0\n323,412,7.5\n323,413,7.0\n323,414,6.5\n323,415,6.0\n323,416,5.5\n323,417,5.0\n323,418,4.5\n323,419,4.0\n323,420,3.5\n323,421,3.0\n323,422,2.5\n323,423,2.0\n323,424,2.5\n323,425,14.0\n323,426,13.5\n323,427,13.0\n323,428,12.5\n323,429,12.0\n323,430,11.5\n323,431,11.0\n323,432,10.5\n323,433,10.0\n323,434,9.5\n323,435,9.0\n323,436,8.5\n323,437,8.0\n323,438,7.5\n323,439,7.0\n323,440,6.5\n323,441,6.0\n323,442,5.5\n323,443,5.0\n323,444,4.5\n323,445,4.0\n323,446,3.5\n323,447,3.0\n323,448,2.5\n323,449,3.0\n323,450,14.5\n323,451,14.0\n323,452,13.5\n323,453,13.0\n323,454,12.5\n323,455,12.0\n323,456,11.5\n323,457,11.0\n323,458,10.5\n323,459,10.0\n323,460,9.5\n323,461,9.0\n323,462,8.5\n323,463,8.0\n323,464,7.5\n323,465,7.0\n323,466,6.5\n323,467,6.0\n323,468,5.5\n323,469,5.0\n323,470,4.5\n323,471,4.0\n323,472,3.5\n323,473,3.0\n323,474,3.5\n323,475,15.0\n323,476,14.5\n323,477,14.0\n323,478,13.5\n323,479,13.0\n323,480,12.5\n323,481,12.0\n323,482,11.5\n323,483,11.0\n323,484,10.5\n323,485,10.0\n323,486,9.5\n323,487,9.0\n323,488,8.5\n323,489,8.0\n323,490,7.5\n323,491,7.0\n323,492,6.5\n323,493,6.0\n323,494,5.5\n323,495,5.0\n323,496,4.5\n323,497,4.0\n323,498,3.5\n323,499,4.0\n323,500,15.5\n323,501,15.0\n323,502,14.5\n323,503,14.0\n323,504,13.5\n323,505,13.0\n323,506,12.5\n323,507,12.0\n323,508,11.5\n323,509,11.0\n323,510,10.5\n323,511,10.0\n323,512,9.5\n323,513,9.0\n323,514,8.5\n323,515,8.0\n323,516,7.5\n323,517,7.0\n323,518,6.5\n323,519,6.0\n323,520,5.5\n323,521,5.0\n323,522,4.5\n323,523,4.0\n323,524,4.5\n323,525,16.0\n323,526,15.5\n323,527,15.0\n323,528,14.5\n323,529,14.0\n323,530,13.5\n323,531,13.0\n323,532,12.5\n323,533,12.0\n323,534,11.5\n323,535,11.0\n323,536,10.5\n323,537,10.0\n323,538,9.5\n323,539,9.0\n323,540,8.5\n323,541,8.0\n323,542,7.5\n323,543,7.0\n323,544,6.5\n323,545,6.0\n323,546,5.5\n323,547,5.0\n323,548,4.5\n323,549,5.0\n323,550,16.5\n323,551,16.0\n323,552,15.5\n323,553,15.0\n323,554,14.5\n323,555,14.0\n323,556,13.5\n323,557,13.0\n323,558,12.5\n323,559,12.0\n323,560,11.5\n323,561,11.0\n323,562,10.5\n323,563,10.0\n323,564,9.5\n323,565,9.0\n323,566,8.5\n323,567,8.0\n323,568,7.5\n323,569,7.0\n323,570,6.5\n323,571,6.0\n323,572,5.5\n323,573,5.0\n323,574,5.5\n323,575,17.0\n323,576,16.5\n323,577,16.0\n323,578,15.5\n323,579,15.0\n323,580,14.5\n323,581,14.0\n323,582,13.5\n323,583,13.0\n323,584,12.5\n323,585,12.0\n323,586,11.5\n323,587,11.0\n323,588,10.5\n323,589,10.0\n323,590,9.5\n323,591,9.0\n323,592,8.5\n323,593,8.0\n323,594,7.5\n323,595,7.0\n323,596,6.5\n323,597,6.0\n323,598,5.5\n323,599,6.0\n323,600,17.5\n323,601,17.0\n323,602,16.5\n323,603,16.0\n323,604,15.5\n323,605,15.0\n323,606,14.5\n323,607,14.0\n323,608,13.5\n323,609,13.0\n323,610,12.5\n323,611,12.0\n323,612,11.5\n323,613,11.0\n323,614,10.5\n323,615,10.0\n323,616,9.5\n323,617,9.0\n323,618,8.5\n323,619,8.0\n323,620,7.5\n323,621,7.0\n323,622,6.5\n323,623,6.0\n323,624,6.5\n324,0,18.0\n324,1,17.5\n324,2,17.0\n324,3,16.5\n324,4,16.0\n324,5,15.5\n324,6,15.0\n324,7,14.5\n324,8,14.0\n324,9,13.5\n324,10,13.0\n324,11,12.5\n324,12,12.0\n324,13,11.5\n324,14,11.0\n324,15,10.5\n324,16,10.0\n324,17,9.5\n324,18,9.0\n324,19,8.5\n324,20,8.0\n324,21,7.5\n324,22,7.0\n324,23,6.5\n324,24,6.0\n324,25,17.5\n324,26,17.0\n324,27,16.5\n324,28,16.0\n324,29,15.5\n324,30,15.0\n324,31,14.5\n324,32,14.0\n324,33,13.5\n324,34,13.0\n324,35,12.5\n324,36,12.0\n324,37,11.5\n324,38,11.0\n324,39,10.5\n324,40,10.0\n324,41,9.5\n324,42,9.0\n324,43,8.5\n324,44,8.0\n324,45,7.5\n324,46,7.0\n324,47,6.5\n324,48,6.0\n324,49,5.5\n324,50,17.0\n324,51,16.5\n324,52,16.0\n324,53,15.5\n324,54,15.0\n324,55,14.5\n324,56,14.0\n324,57,13.5\n324,58,13.0\n324,59,12.5\n324,60,12.0\n324,61,11.5\n324,62,11.0\n324,63,10.5\n324,64,10.0\n324,65,9.5\n324,66,9.0\n324,67,8.5\n324,68,8.0\n324,69,7.5\n324,70,7.0\n324,71,6.5\n324,72,6.0\n324,73,5.5\n324,74,5.0\n324,75,16.5\n324,76,16.0\n324,77,15.5\n324,78,15.0\n324,79,14.5\n324,80,14.0\n324,81,13.5\n324,82,13.0\n324,83,12.5\n324,84,12.0\n324,85,11.5\n324,86,11.0\n324,87,10.5\n324,88,10.0\n324,89,9.5\n324,90,9.0\n324,91,8.5\n324,92,8.0\n324,93,7.5\n324,94,7.0\n324,95,6.5\n324,96,6.0\n324,97,5.5\n324,98,5.0\n324,99,4.5\n324,100,16.0\n324,101,15.5\n324,102,15.0\n324,103,14.5\n324,104,14.0\n324,105,13.5\n324,106,13.0\n324,107,12.5\n324,108,12.0\n324,109,11.5\n324,110,11.0\n324,111,10.5\n324,112,10.0\n324,113,9.5\n324,114,9.0\n324,115,8.5\n324,116,8.0\n324,117,7.5\n324,118,7.0\n324,119,6.5\n324,120,6.0\n324,121,5.5\n324,122,5.0\n324,123,4.5\n324,124,4.0\n324,125,15.5\n324,126,15.0\n324,127,14.5\n324,128,14.0\n324,129,13.5\n324,130,13.0\n324,131,12.5\n324,132,12.0\n324,133,11.5\n324,134,11.0\n324,135,10.5\n324,136,10.0\n324,137,9.5\n324,138,9.0\n324,139,8.5\n324,140,8.0\n324,141,7.5\n324,142,7.0\n324,143,6.5\n324,144,6.0\n324,145,5.5\n324,146,5.0\n324,147,4.5\n324,148,4.0\n324,149,3.5\n324,150,15.0\n324,151,14.5\n324,152,14.0\n324,153,13.5\n324,154,13.0\n324,155,12.5\n324,156,12.0\n324,157,11.5\n324,158,11.0\n324,159,10.5\n324,160,10.0\n324,161,9.5\n324,162,9.0\n324,163,8.5\n324,164,8.0\n324,165,7.5\n324,166,7.0\n324,167,6.5\n324,168,6.0\n324,169,5.5\n324,170,5.0\n324,171,4.5\n324,172,4.0\n324,173,3.5\n324,174,3.0\n324,175,14.5\n324,176,14.0\n324,177,13.5\n324,178,13.0\n324,179,12.5\n324,180,12.0\n324,181,11.5\n324,182,11.0\n324,183,10.5\n324,184,10.0\n324,185,9.5\n324,186,9.0\n324,187,8.5\n324,188,8.0\n324,189,7.5\n324,190,7.0\n324,191,6.5\n324,192,6.0\n324,193,5.5\n324,194,5.0\n324,195,4.5\n324,196,4.0\n324,197,3.5\n324,198,3.0\n324,199,2.5\n324,200,14.0\n324,201,13.5\n324,202,13.0\n324,203,12.5\n324,204,12.0\n324,205,11.5\n324,206,11.0\n324,207,10.5\n324,208,10.0\n324,209,9.5\n324,210,9.0\n324,211,8.5\n324,212,8.0\n324,213,7.5\n324,214,7.0\n324,215,6.5\n324,216,6.0\n324,217,5.5\n324,218,5.0\n324,219,4.5\n324,220,4.0\n324,221,3.5\n324,222,3.0\n324,223,2.5\n324,224,2.0\n324,225,13.5\n324,226,13.0\n324,227,12.5\n324,228,12.0\n324,229,11.5\n324,230,11.0\n324,231,10.5\n324,232,10.0\n324,233,9.5\n324,234,9.0\n324,235,8.5\n324,236,8.0\n324,237,7.5\n324,238,7.0\n324,239,6.5\n324,240,6.0\n324,241,5.5\n324,242,5.0\n324,243,4.5\n324,244,4.0\n324,245,3.5\n324,246,3.0\n324,247,2.5\n324,248,2.0\n324,249,1.5\n324,250,13.0\n324,251,12.5\n324,252,12.0\n324,253,11.5\n324,254,11.0\n324,255,10.5\n324,256,10.0\n324,257,9.5\n324,258,9.0\n324,259,8.5\n324,260,8.0\n324,261,7.5\n324,262,7.0\n324,263,6.5\n324,264,6.0\n324,265,5.5\n324,266,5.0\n324,267,4.5\n324,268,4.0\n324,269,3.5\n324,270,3.0\n324,271,2.5\n324,272,2.0\n324,273,1.5\n324,274,1.0\n324,275,12.5\n324,276,12.0\n324,277,11.5\n324,278,11.0\n324,279,10.5\n324,280,10.0\n324,281,9.5\n324,282,9.0\n324,283,8.5\n324,284,8.0\n324,285,7.5\n324,286,7.0\n324,287,6.5\n324,288,6.0\n324,289,5.5\n324,290,5.0\n324,291,4.5\n324,292,4.0\n324,293,3.5\n324,294,3.0\n324,295,2.5\n324,296,2.0\n324,297,1.5\n324,298,1.0\n324,299,0.5\n324,300,12.0\n324,301,11.5\n324,302,11.0\n324,303,10.5\n324,304,10.0\n324,305,9.5\n324,306,9.0\n324,307,8.5\n324,308,8.0\n324,309,7.5\n324,310,7.0\n324,311,6.5\n324,312,6.0\n324,313,5.5\n324,314,5.0\n324,315,4.5\n324,316,4.0\n324,317,3.5\n324,318,3.0\n324,319,2.5\n324,320,2.0\n324,321,1.5\n324,322,1.0\n324,323,0.5\n324,324,0\n324,325,12.5\n324,326,12.0\n324,327,11.5\n324,328,11.0\n324,329,10.5\n324,330,10.0\n324,331,9.5\n324,332,9.0\n324,333,8.5\n324,334,8.0\n324,335,7.5\n324,336,7.0\n324,337,6.5\n324,338,6.0\n324,339,5.5\n324,340,5.0\n324,341,4.5\n324,342,4.0\n324,343,3.5\n324,344,3.0\n324,345,2.5\n324,346,2.0\n324,347,1.5\n324,348,1.0\n324,349,0.5\n324,350,13.0\n324,351,12.5\n324,352,12.0\n324,353,11.5\n324,354,11.0\n324,355,10.5\n324,356,10.0\n324,357,9.5\n324,358,9.0\n324,359,8.5\n324,360,8.0\n324,361,7.5\n324,362,7.0\n324,363,6.5\n324,364,6.0\n324,365,5.5\n324,366,5.0\n324,367,4.5\n324,368,4.0\n324,369,3.5\n324,370,3.0\n324,371,2.5\n324,372,2.0\n324,373,1.5\n324,374,1.0\n324,375,13.5\n324,376,13.0\n324,377,12.5\n324,378,12.0\n324,379,11.5\n324,380,11.0\n324,381,10.5\n324,382,10.0\n324,383,9.5\n324,384,9.0\n324,385,8.5\n324,386,8.0\n324,387,7.5\n324,388,7.0\n324,389,6.5\n324,390,6.0\n324,391,5.5\n324,392,5.0\n324,393,4.5\n324,394,4.0\n324,395,3.5\n324,396,3.0\n324,397,2.5\n324,398,2.0\n324,399,1.5\n324,400,14.0\n324,401,13.5\n324,402,13.0\n324,403,12.5\n324,404,12.0\n324,405,11.5\n324,406,11.0\n324,407,10.5\n324,408,10.0\n324,409,9.5\n324,410,9.0\n324,411,8.5\n324,412,8.0\n324,413,7.5\n324,414,7.0\n324,415,6.5\n324,416,6.0\n324,417,5.5\n324,418,5.0\n324,419,4.5\n324,420,4.0\n324,421,3.5\n324,422,3.0\n324,423,2.5\n324,424,2.0\n324,425,14.5\n324,426,14.0\n324,427,13.5\n324,428,13.0\n324,429,12.5\n324,430,12.0\n324,431,11.5\n324,432,11.0\n324,433,10.5\n324,434,10.0\n324,435,9.5\n324,436,9.0\n324,437,8.5\n324,438,8.0\n324,439,7.5\n324,440,7.0\n324,441,6.5\n324,442,6.0\n324,443,5.5\n324,444,5.0\n324,445,4.5\n324,446,4.0\n324,447,3.5\n324,448,3.0\n324,449,2.5\n324,450,15.0\n324,451,14.5\n324,452,14.0\n324,453,13.5\n324,454,13.0\n324,455,12.5\n324,456,12.0\n324,457,11.5\n324,458,11.0\n324,459,10.5\n324,460,10.0\n324,461,9.5\n324,462,9.0\n324,463,8.5\n324,464,8.0\n324,465,7.5\n324,466,7.0\n324,467,6.5\n324,468,6.0\n324,469,5.5\n324,470,5.0\n324,471,4.5\n324,472,4.0\n324,473,3.5\n324,474,3.0\n324,475,15.5\n324,476,15.0\n324,477,14.5\n324,478,14.0\n324,479,13.5\n324,480,13.0\n324,481,12.5\n324,482,12.0\n324,483,11.5\n324,484,11.0\n324,485,10.5\n324,486,10.0\n324,487,9.5\n324,488,9.0\n324,489,8.5\n324,490,8.0\n324,491,7.5\n324,492,7.0\n324,493,6.5\n324,494,6.0\n324,495,5.5\n324,496,5.0\n324,497,4.5\n324,498,4.0\n324,499,3.5\n324,500,16.0\n324,501,15.5\n324,502,15.0\n324,503,14.5\n324,504,14.0\n324,505,13.5\n324,506,13.0\n324,507,12.5\n324,508,12.0\n324,509,11.5\n324,510,11.0\n324,511,10.5\n324,512,10.0\n324,513,9.5\n324,514,9.0\n324,515,8.5\n324,516,8.0\n324,517,7.5\n324,518,7.0\n324,519,6.5\n324,520,6.0\n324,521,5.5\n324,522,5.0\n324,523,4.5\n324,524,4.0\n324,525,16.5\n324,526,16.0\n324,527,15.5\n324,528,15.0\n324,529,14.5\n324,530,14.0\n324,531,13.5\n324,532,13.0\n324,533,12.5\n324,534,12.0\n324,535,11.5\n324,536,11.0\n324,537,10.5\n324,538,10.0\n324,539,9.5\n324,540,9.0\n324,541,8.5\n324,542,8.0\n324,543,7.5\n324,544,7.0\n324,545,6.5\n324,546,6.0\n324,547,5.5\n324,548,5.0\n324,549,4.5\n324,550,17.0\n324,551,16.5\n324,552,16.0\n324,553,15.5\n324,554,15.0\n324,555,14.5\n324,556,14.0\n324,557,13.5\n324,558,13.0\n324,559,12.5\n324,560,12.0\n324,561,11.5\n324,562,11.0\n324,563,10.5\n324,564,10.0\n324,565,9.5\n324,566,9.0\n324,567,8.5\n324,568,8.0\n324,569,7.5\n324,570,7.0\n324,571,6.5\n324,572,6.0\n324,573,5.5\n324,574,5.0\n324,575,17.5\n324,576,17.0\n324,577,16.5\n324,578,16.0\n324,579,15.5\n324,580,15.0\n324,581,14.5\n324,582,14.0\n324,583,13.5\n324,584,13.0\n324,585,12.5\n324,586,12.0\n324,587,11.5\n324,588,11.0\n324,589,10.5\n324,590,10.0\n324,591,9.5\n324,592,9.0\n324,593,8.5\n324,594,8.0\n324,595,7.5\n324,596,7.0\n324,597,6.5\n324,598,6.0\n324,599,5.5\n324,600,18.0\n324,601,17.5\n324,602,17.0\n324,603,16.5\n324,604,16.0\n324,605,15.5\n324,606,15.0\n324,607,14.5\n324,608,14.0\n324,609,13.5\n324,610,13.0\n324,611,12.5\n324,612,12.0\n324,613,11.5\n324,614,11.0\n324,615,10.5\n324,616,10.0\n324,617,9.5\n324,618,9.0\n324,619,8.5\n324,620,8.0\n324,621,7.5\n324,622,7.0\n324,623,6.5\n324,624,6.0\n325,0,6.5\n325,1,7.0\n325,2,7.5\n325,3,8.0\n325,4,8.5\n325,5,9.0\n325,6,9.5\n325,7,10.0\n325,8,10.5\n325,9,11.0\n325,10,11.5\n325,11,12.0\n325,12,12.5\n325,13,13.0\n325,14,13.5\n325,15,14.0\n325,16,14.5\n325,17,15.0\n325,18,15.5\n325,19,16.0\n325,20,16.5\n325,21,17.0\n325,22,17.5\n325,23,18.0\n325,24,18.5\n325,25,6.0\n325,26,6.5\n325,27,7.0\n325,28,7.5\n325,29,8.0\n325,30,8.5\n325,31,9.0\n325,32,9.5\n325,33,10.0\n325,34,10.5\n325,35,11.0\n325,36,11.5\n325,37,12.0\n325,38,12.5\n325,39,13.0\n325,40,13.5\n325,41,14.0\n325,42,14.5\n325,43,15.0\n325,44,15.5\n325,45,16.0\n325,46,16.5\n325,47,17.0\n325,48,17.5\n325,49,18.0\n325,50,5.5\n325,51,6.0\n325,52,6.5\n325,53,7.0\n325,54,7.5\n325,55,8.0\n325,56,8.5\n325,57,9.0\n325,58,9.5\n325,59,10.0\n325,60,10.5\n325,61,11.0\n325,62,11.5\n325,63,12.0\n325,64,12.5\n325,65,13.0\n325,66,13.5\n325,67,14.0\n325,68,14.5\n325,69,15.0\n325,70,15.5\n325,71,16.0\n325,72,16.5\n325,73,17.0\n325,74,17.5\n325,75,5.0\n325,76,5.5\n325,77,6.0\n325,78,6.5\n325,79,7.0\n325,80,7.5\n325,81,8.0\n325,82,8.5\n325,83,9.0\n325,84,9.5\n325,85,10.0\n325,86,10.5\n325,87,11.0\n325,88,11.5\n325,89,12.0\n325,90,12.5\n325,91,13.0\n325,92,13.5\n325,93,14.0\n325,94,14.5\n325,95,15.0\n325,96,15.5\n325,97,16.0\n325,98,16.5\n325,99,17.0\n325,100,4.5\n325,101,5.0\n325,102,5.5\n325,103,6.0\n325,104,6.5\n325,105,7.0\n325,106,7.5\n325,107,8.0\n325,108,8.5\n325,109,9.0\n325,110,9.5\n325,111,10.0\n325,112,10.5\n325,113,11.0\n325,114,11.5\n325,115,12.0\n325,116,12.5\n325,117,13.0\n325,118,13.5\n325,119,14.0\n325,120,14.5\n325,121,15.0\n325,122,15.5\n325,123,16.0\n325,124,16.5\n325,125,4.0\n325,126,4.5\n325,127,5.0\n325,128,5.5\n325,129,6.0\n325,130,6.5\n325,131,7.0\n325,132,7.5\n325,133,8.0\n325,134,8.5\n325,135,9.0\n325,136,9.5\n325,137,10.0\n325,138,10.5\n325,139,11.0\n325,140,11.5\n325,141,12.0\n325,142,12.5\n325,143,13.0\n325,144,13.5\n325,145,14.0\n325,146,14.5\n325,147,15.0\n325,148,15.5\n325,149,16.0\n325,150,3.5\n325,151,4.0\n325,152,4.5\n325,153,5.0\n325,154,5.5\n325,155,6.0\n325,156,6.5\n325,157,7.0\n325,158,7.5\n325,159,8.0\n325,160,8.5\n325,161,9.0\n325,162,9.5\n325,163,10.0\n325,164,10.5\n325,165,11.0\n325,166,11.5\n325,167,12.0\n325,168,12.5\n325,169,13.0\n325,170,13.5\n325,171,14.0\n325,172,14.5\n325,173,15.0\n325,174,15.5\n325,175,3.0\n325,176,3.5\n325,177,4.0\n325,178,4.5\n325,179,5.0\n325,180,5.5\n325,181,6.0\n325,182,6.5\n325,183,7.0\n325,184,7.5\n325,185,8.0\n325,186,8.5\n325,187,9.0\n325,188,9.5\n325,189,10.0\n325,190,10.5\n325,191,11.0\n325,192,11.5\n325,193,12.0\n325,194,12.5\n325,195,13.0\n325,196,13.5\n325,197,14.0\n325,198,14.5\n325,199,15.0\n325,200,2.5\n325,201,3.0\n325,202,3.5\n325,203,4.0\n325,204,4.5\n325,205,5.0\n325,206,5.5\n325,207,6.0\n325,208,6.5\n325,209,7.0\n325,210,7.5\n325,211,8.0\n325,212,8.5\n325,213,9.0\n325,214,9.5\n325,215,10.0\n325,216,10.5\n325,217,11.0\n325,218,11.5\n325,219,12.0\n325,220,12.5\n325,221,13.0\n325,222,13.5\n325,223,14.0\n325,224,14.5\n325,225,2.0\n325,226,2.5\n325,227,3.0\n325,228,3.5\n325,229,4.0\n325,230,4.5\n325,231,5.0\n325,232,5.5\n325,233,6.0\n325,234,6.5\n325,235,7.0\n325,236,7.5\n325,237,8.0\n325,238,8.5\n325,239,9.0\n325,240,9.5\n325,241,10.0\n325,242,10.5\n325,243,11.0\n325,244,11.5\n325,245,12.0\n325,246,12.5\n325,247,13.0\n325,248,13.5\n325,249,14.0\n325,250,1.5\n325,251,2.0\n325,252,2.5\n325,253,3.0\n325,254,3.5\n325,255,4.0\n325,256,4.5\n325,257,5.0\n325,258,5.5\n325,259,6.0\n325,260,6.5\n325,261,7.0\n325,262,7.5\n325,263,8.0\n325,264,8.5\n325,265,9.0\n325,266,9.5\n325,267,10.0\n325,268,10.5\n325,269,11.0\n325,270,11.5\n325,271,12.0\n325,272,12.5\n325,273,13.0\n325,274,13.5\n325,275,1.0\n325,276,1.5\n325,277,2.0\n325,278,2.5\n325,279,3.0\n325,280,3.5\n325,281,4.0\n325,282,4.5\n325,283,5.0\n325,284,5.5\n325,285,6.0\n325,286,6.5\n325,287,7.0\n325,288,7.5\n325,289,8.0\n325,290,8.5\n325,291,9.0\n325,292,9.5\n325,293,10.0\n325,294,10.5\n325,295,11.0\n325,296,11.5\n325,297,12.0\n325,298,12.5\n325,299,13.0\n325,300,0.5\n325,301,1.0\n325,302,1.5\n325,303,2.0\n325,304,2.5\n325,305,3.0\n325,306,3.5\n325,307,4.0\n325,308,4.5\n325,309,5.0\n325,310,5.5\n325,311,6.0\n325,312,6.5\n325,313,7.0\n325,314,7.5\n325,315,8.0\n325,316,8.5\n325,317,9.0\n325,318,9.5\n325,319,10.0\n325,320,10.5\n325,321,11.0\n325,322,11.5\n325,323,12.0\n325,324,12.5\n325,325,0\n325,326,0.5\n325,327,1.0\n325,328,1.5\n325,329,2.0\n325,330,2.5\n325,331,3.0\n325,332,3.5\n325,333,4.0\n325,334,4.5\n325,335,5.0\n325,336,5.5\n325,337,6.0\n325,338,6.5\n325,339,7.0\n325,340,7.5\n325,341,8.0\n325,342,8.5\n325,343,9.0\n325,344,9.5\n325,345,10.0\n325,346,10.5\n325,347,11.0\n325,348,11.5\n325,349,12.0\n325,350,0.5\n325,351,1.0\n325,352,1.5\n325,353,2.0\n325,354,2.5\n325,355,3.0\n325,356,3.5\n325,357,4.0\n325,358,4.5\n325,359,5.0\n325,360,5.5\n325,361,6.0\n325,362,6.5\n325,363,7.0\n325,364,7.5\n325,365,8.0\n325,366,8.5\n325,367,9.0\n325,368,9.5\n325,369,10.0\n325,370,10.5\n325,371,11.0\n325,372,11.5\n325,373,12.0\n325,374,12.5\n325,375,1.0\n325,376,1.5\n325,377,2.0\n325,378,2.5\n325,379,3.0\n325,380,3.5\n325,381,4.0\n325,382,4.5\n325,383,5.0\n325,384,5.5\n325,385,6.0\n325,386,6.5\n325,387,7.0\n325,388,7.5\n325,389,8.0\n325,390,8.5\n325,391,9.0\n325,392,9.5\n325,393,10.0\n325,394,10.5\n325,395,11.0\n325,396,11.5\n325,397,12.0\n325,398,12.5\n325,399,13.0\n325,400,1.5\n325,401,2.0\n325,402,2.5\n325,403,3.0\n325,404,3.5\n325,405,4.0\n325,406,4.5\n325,407,5.0\n325,408,5.5\n325,409,6.0\n325,410,6.5\n325,411,7.0\n325,412,7.5\n325,413,8.0\n325,414,8.5\n325,415,9.0\n325,416,9.5\n325,417,10.0\n325,418,10.5\n325,419,11.0\n325,420,11.5\n325,421,12.0\n325,422,12.5\n325,423,13.0\n325,424,13.5\n325,425,2.0\n325,426,2.5\n325,427,3.0\n325,428,3.5\n325,429,4.0\n325,430,4.5\n325,431,5.0\n325,432,5.5\n325,433,6.0\n325,434,6.5\n325,435,7.0\n325,436,7.5\n325,437,8.0\n325,438,8.5\n325,439,9.0\n325,440,9.5\n325,441,10.0\n325,442,10.5\n325,443,11.0\n325,444,11.5\n325,445,12.0\n325,446,12.5\n325,447,13.0\n325,448,13.5\n325,449,14.0\n325,450,2.5\n325,451,3.0\n325,452,3.5\n325,453,4.0\n325,454,4.5\n325,455,5.0\n325,456,5.5\n325,457,6.0\n325,458,6.5\n325,459,7.0\n325,460,7.5\n325,461,8.0\n325,462,8.5\n325,463,9.0\n325,464,9.5\n325,465,10.0\n325,466,10.5\n325,467,11.0\n325,468,11.5\n325,469,12.0\n325,470,12.5\n325,471,13.0\n325,472,13.5\n325,473,14.0\n325,474,14.5\n325,475,3.0\n325,476,3.5\n325,477,4.0\n325,478,4.5\n325,479,5.0\n325,480,5.5\n325,481,6.0\n325,482,6.5\n325,483,7.0\n325,484,7.5\n325,485,8.0\n325,486,8.5\n325,487,9.0\n325,488,9.5\n325,489,10.0\n325,490,10.5\n325,491,11.0\n325,492,11.5\n325,493,12.0\n325,494,12.5\n325,495,13.0\n325,496,13.5\n325,497,14.0\n325,498,14.5\n325,499,15.0\n325,500,3.5\n325,501,4.0\n325,502,4.5\n325,503,5.0\n325,504,5.5\n325,505,6.0\n325,506,6.5\n325,507,7.0\n325,508,7.5\n325,509,8.0\n325,510,8.5\n325,511,9.0\n325,512,9.5\n325,513,10.0\n325,514,10.5\n325,515,11.0\n325,516,11.5\n325,517,12.0\n325,518,12.5\n325,519,13.0\n325,520,13.5\n325,521,14.0\n325,522,14.5\n325,523,15.0\n325,524,15.5\n325,525,4.0\n325,526,4.5\n325,527,5.0\n325,528,5.5\n325,529,6.0\n325,530,6.5\n325,531,7.0\n325,532,7.5\n325,533,8.0\n325,534,8.5\n325,535,9.0\n325,536,9.5\n325,537,10.0\n325,538,10.5\n325,539,11.0\n325,540,11.5\n325,541,12.0\n325,542,12.5\n325,543,13.0\n325,544,13.5\n325,545,14.0\n325,546,14.5\n325,547,15.0\n325,548,15.5\n325,549,16.0\n325,550,4.5\n325,551,5.0\n325,552,5.5\n325,553,6.0\n325,554,6.5\n325,555,7.0\n325,556,7.5\n325,557,8.0\n325,558,8.5\n325,559,9.0\n325,560,9.5\n325,561,10.0\n325,562,10.5\n325,563,11.0\n325,564,11.5\n325,565,12.0\n325,566,12.5\n325,567,13.0\n325,568,13.5\n325,569,14.0\n325,570,14.5\n325,571,15.0\n325,572,15.5\n325,573,16.0\n325,574,16.5\n325,575,5.0\n325,576,5.5\n325,577,6.0\n325,578,6.5\n325,579,7.0\n325,580,7.5\n325,581,8.0\n325,582,8.5\n325,583,9.0\n325,584,9.5\n325,585,10.0\n325,586,10.5\n325,587,11.0\n325,588,11.5\n325,589,12.0\n325,590,12.5\n325,591,13.0\n325,592,13.5\n325,593,14.0\n325,594,14.5\n325,595,15.0\n325,596,15.5\n325,597,16.0\n325,598,16.5\n325,599,17.0\n325,600,5.5\n325,601,6.0\n325,602,6.5\n325,603,7.0\n325,604,7.5\n325,605,8.0\n325,606,8.5\n325,607,9.0\n325,608,9.5\n325,609,10.0\n325,610,10.5\n325,611,11.0\n325,612,11.5\n325,613,12.0\n325,614,12.5\n325,615,13.0\n325,616,13.5\n325,617,14.0\n325,618,14.5\n325,619,15.0\n325,620,15.5\n325,621,16.0\n325,622,16.5\n325,623,17.0\n325,624,17.5\n326,0,7.0\n326,1,6.5\n326,2,7.0\n326,3,7.5\n326,4,8.0\n326,5,8.5\n326,6,9.0\n326,7,9.5\n326,8,10.0\n326,9,10.5\n326,10,11.0\n326,11,11.5\n326,12,12.0\n326,13,12.5\n326,14,13.0\n326,15,13.5\n326,16,14.0\n326,17,14.5\n326,18,15.0\n326,19,15.5\n326,20,16.0\n326,21,16.5\n326,22,17.0\n326,23,17.5\n326,24,18.0\n326,25,6.5\n326,26,6.0\n326,27,6.5\n326,28,7.0\n326,29,7.5\n326,30,8.0\n326,31,8.5\n326,32,9.0\n326,33,9.5\n326,34,10.0\n326,35,10.5\n326,36,11.0\n326,37,11.5\n326,38,12.0\n326,39,12.5\n326,40,13.0\n326,41,13.5\n326,42,14.0\n326,43,14.5\n326,44,15.0\n326,45,15.5\n326,46,16.0\n326,47,16.5\n326,48,17.0\n326,49,17.5\n326,50,6.0\n326,51,5.5\n326,52,6.0\n326,53,6.5\n326,54,7.0\n326,55,7.5\n326,56,8.0\n326,57,8.5\n326,58,9.0\n326,59,9.5\n326,60,10.0\n326,61,10.5\n326,62,11.0\n326,63,11.5\n326,64,12.0\n326,65,12.5\n326,66,13.0\n326,67,13.5\n326,68,14.0\n326,69,14.5\n326,70,15.0\n326,71,15.5\n326,72,16.0\n326,73,16.5\n326,74,17.0\n326,75,5.5\n326,76,5.0\n326,77,5.5\n326,78,6.0\n326,79,6.5\n326,80,7.0\n326,81,7.5\n326,82,8.0\n326,83,8.5\n326,84,9.0\n326,85,9.5\n326,86,10.0\n326,87,10.5\n326,88,11.0\n326,89,11.5\n326,90,12.0\n326,91,12.5\n326,92,13.0\n326,93,13.5\n326,94,14.0\n326,95,14.5\n326,96,15.0\n326,97,15.5\n326,98,16.0\n326,99,16.5\n326,100,5.0\n326,101,4.5\n326,102,5.0\n326,103,5.5\n326,104,6.0\n326,105,6.5\n326,106,7.0\n326,107,7.5\n326,108,8.0\n326,109,8.5\n326,110,9.0\n326,111,9.5\n326,112,10.0\n326,113,10.5\n326,114,11.0\n326,115,11.5\n326,116,12.0\n326,117,12.5\n326,118,13.0\n326,119,13.5\n326,120,14.0\n326,121,14.5\n326,122,15.0\n326,123,15.5\n326,124,16.0\n326,125,4.5\n326,126,4.0\n326,127,4.5\n326,128,5.0\n326,129,5.5\n326,130,6.0\n326,131,6.5\n326,132,7.0\n326,133,7.5\n326,134,8.0\n326,135,8.5\n326,136,9.0\n326,137,9.5\n326,138,10.0\n326,139,10.5\n326,140,11.0\n326,141,11.5\n326,142,12.0\n326,143,12.5\n326,144,13.0\n326,145,13.5\n326,146,14.0\n326,147,14.5\n326,148,15.0\n326,149,15.5\n326,150,4.0\n326,151,3.5\n326,152,4.0\n326,153,4.5\n326,154,5.0\n326,155,5.5\n326,156,6.0\n326,157,6.5\n326,158,7.0\n326,159,7.5\n326,160,8.0\n326,161,8.5\n326,162,9.0\n326,163,9.5\n326,164,10.0\n326,165,10.5\n326,166,11.0\n326,167,11.5\n326,168,12.0\n326,169,12.5\n326,170,13.0\n326,171,13.5\n326,172,14.0\n326,173,14.5\n326,174,15.0\n326,175,3.5\n326,176,3.0\n326,177,3.5\n326,178,4.0\n326,179,4.5\n326,180,5.0\n326,181,5.5\n326,182,6.0\n326,183,6.5\n326,184,7.0\n326,185,7.5\n326,186,8.0\n326,187,8.5\n326,188,9.0\n326,189,9.5\n326,190,10.0\n326,191,10.5\n326,192,11.0\n326,193,11.5\n326,194,12.0\n326,195,12.5\n326,196,13.0\n326,197,13.5\n326,198,14.0\n326,199,14.5\n326,200,3.0\n326,201,2.5\n326,202,3.0\n326,203,3.5\n326,204,4.0\n326,205,4.5\n326,206,5.0\n326,207,5.5\n326,208,6.0\n326,209,6.5\n326,210,7.0\n326,211,7.5\n326,212,8.0\n326,213,8.5\n326,214,9.0\n326,215,9.5\n326,216,10.0\n326,217,10.5\n326,218,11.0\n326,219,11.5\n326,220,12.0\n326,221,12.5\n326,222,13.0\n326,223,13.5\n326,224,14.0\n326,225,2.5\n326,226,2.0\n326,227,2.5\n326,228,3.0\n326,229,3.5\n326,230,4.0\n326,231,4.5\n326,232,5.0\n326,233,5.5\n326,234,6.0\n326,235,6.5\n326,236,7.0\n326,237,7.5\n326,238,8.0\n326,239,8.5\n326,240,9.0\n326,241,9.5\n326,242,10.0\n326,243,10.5\n326,244,11.0\n326,245,11.5\n326,246,12.0\n326,247,12.5\n326,248,13.0\n326,249,13.5\n326,250,2.0\n326,251,1.5\n326,252,2.0\n326,253,2.5\n326,254,3.0\n326,255,3.5\n326,256,4.0\n326,257,4.5\n326,258,5.0\n326,259,5.5\n326,260,6.0\n326,261,6.5\n326,262,7.0\n326,263,7.5\n326,264,8.0\n326,265,8.5\n326,266,9.0\n326,267,9.5\n326,268,10.0\n326,269,10.5\n326,270,11.0\n326,271,11.5\n326,272,12.0\n326,273,12.5\n326,274,13.0\n326,275,1.5\n326,276,1.0\n326,277,1.5\n326,278,2.0\n326,279,2.5\n326,280,3.0\n326,281,3.5\n326,282,4.0\n326,283,4.5\n326,284,5.0\n326,285,5.5\n326,286,6.0\n326,287,6.5\n326,288,7.0\n326,289,7.5\n326,290,8.0\n326,291,8.5\n326,292,9.0\n326,293,9.5\n326,294,10.0\n326,295,10.5\n326,296,11.0\n326,297,11.5\n326,298,12.0\n326,299,12.5\n326,300,1.0\n326,301,0.5\n326,302,1.0\n326,303,1.5\n326,304,2.0\n326,305,2.5\n326,306,3.0\n326,307,3.5\n326,308,4.0\n326,309,4.5\n326,310,5.0\n326,311,5.5\n326,312,6.0\n326,313,6.5\n326,314,7.0\n326,315,7.5\n326,316,8.0\n326,317,8.5\n326,318,9.0\n326,319,9.5\n326,320,10.0\n326,321,10.5\n326,322,11.0\n326,323,11.5\n326,324,12.0\n326,325,0.5\n326,326,0\n326,327,0.5\n326,328,1.0\n326,329,1.5\n326,330,2.0\n326,331,2.5\n326,332,3.0\n326,333,3.5\n326,334,4.0\n326,335,4.5\n326,336,5.0\n326,337,5.5\n326,338,6.0\n326,339,6.5\n326,340,7.0\n326,341,7.5\n326,342,8.0\n326,343,8.5\n326,344,9.0\n326,345,9.5\n326,346,10.0\n326,347,10.5\n326,348,11.0\n326,349,11.5\n326,350,1.0\n326,351,0.5\n326,352,1.0\n326,353,1.5\n326,354,2.0\n326,355,2.5\n326,356,3.0\n326,357,3.5\n326,358,4.0\n326,359,4.5\n326,360,5.0\n326,361,5.5\n326,362,6.0\n326,363,6.5\n326,364,7.0\n326,365,7.5\n326,366,8.0\n326,367,8.5\n326,368,9.0\n326,369,9.5\n326,370,10.0\n326,371,10.5\n326,372,11.0\n326,373,11.5\n326,374,12.0\n326,375,1.5\n326,376,1.0\n326,377,1.5\n326,378,2.0\n326,379,2.5\n326,380,3.0\n326,381,3.5\n326,382,4.0\n326,383,4.5\n326,384,5.0\n326,385,5.5\n326,386,6.0\n326,387,6.5\n326,388,7.0\n326,389,7.5\n326,390,8.0\n326,391,8.5\n326,392,9.0\n326,393,9.5\n326,394,10.0\n326,395,10.5\n326,396,11.0\n326,397,11.5\n326,398,12.0\n326,399,12.5\n326,400,2.0\n326,401,1.5\n326,402,2.0\n326,403,2.5\n326,404,3.0\n326,405,3.5\n326,406,4.0\n326,407,4.5\n326,408,5.0\n326,409,5.5\n326,410,6.0\n326,411,6.5\n326,412,7.0\n326,413,7.5\n326,414,8.0\n326,415,8.5\n326,416,9.0\n326,417,9.5\n326,418,10.0\n326,419,10.5\n326,420,11.0\n326,421,11.5\n326,422,12.0\n326,423,12.5\n326,424,13.0\n326,425,2.5\n326,426,2.0\n326,427,2.5\n326,428,3.0\n326,429,3.5\n326,430,4.0\n326,431,4.5\n326,432,5.0\n326,433,5.5\n326,434,6.0\n326,435,6.5\n326,436,7.0\n326,437,7.5\n326,438,8.0\n326,439,8.5\n326,440,9.0\n326,441,9.5\n326,442,10.0\n326,443,10.5\n326,444,11.0\n326,445,11.5\n326,446,12.0\n326,447,12.5\n326,448,13.0\n326,449,13.5\n326,450,3.0\n326,451,2.5\n326,452,3.0\n326,453,3.5\n326,454,4.0\n326,455,4.5\n326,456,5.0\n326,457,5.5\n326,458,6.0\n326,459,6.5\n326,460,7.0\n326,461,7.5\n326,462,8.0\n326,463,8.5\n326,464,9.0\n326,465,9.5\n326,466,10.0\n326,467,10.5\n326,468,11.0\n326,469,11.5\n326,470,12.0\n326,471,12.5\n326,472,13.0\n326,473,13.5\n326,474,14.0\n326,475,3.5\n326,476,3.0\n326,477,3.5\n326,478,4.0\n326,479,4.5\n326,480,5.0\n326,481,5.5\n326,482,6.0\n326,483,6.5\n326,484,7.0\n326,485,7.5\n326,486,8.0\n326,487,8.5\n326,488,9.0\n326,489,9.5\n326,490,10.0\n326,491,10.5\n326,492,11.0\n326,493,11.5\n326,494,12.0\n326,495,12.5\n326,496,13.0\n326,497,13.5\n326,498,14.0\n326,499,14.5\n326,500,4.0\n326,501,3.5\n326,502,4.0\n326,503,4.5\n326,504,5.0\n326,505,5.5\n326,506,6.0\n326,507,6.5\n326,508,7.0\n326,509,7.5\n326,510,8.0\n326,511,8.5\n326,512,9.0\n326,513,9.5\n326,514,10.0\n326,515,10.5\n326,516,11.0\n326,517,11.5\n326,518,12.0\n326,519,12.5\n326,520,13.0\n326,521,13.5\n326,522,14.0\n326,523,14.5\n326,524,15.0\n326,525,4.5\n326,526,4.0\n326,527,4.5\n326,528,5.0\n326,529,5.5\n326,530,6.0\n326,531,6.5\n326,532,7.0\n326,533,7.5\n326,534,8.0\n326,535,8.5\n326,536,9.0\n326,537,9.5\n326,538,10.0\n326,539,10.5\n326,540,11.0\n326,541,11.5\n326,542,12.0\n326,543,12.5\n326,544,13.0\n326,545,13.5\n326,546,14.0\n326,547,14.5\n326,548,15.0\n326,549,15.5\n326,550,5.0\n326,551,4.5\n326,552,5.0\n326,553,5.5\n326,554,6.0\n326,555,6.5\n326,556,7.0\n326,557,7.5\n326,558,8.0\n326,559,8.5\n326,560,9.0\n326,561,9.5\n326,562,10.0\n326,563,10.5\n326,564,11.0\n326,565,11.5\n326,566,12.0\n326,567,12.5\n326,568,13.0\n326,569,13.5\n326,570,14.0\n326,571,14.5\n326,572,15.0\n326,573,15.5\n326,574,16.0\n326,575,5.5\n326,576,5.0\n326,577,5.5\n326,578,6.0\n326,579,6.5\n326,580,7.0\n326,581,7.5\n326,582,8.0\n326,583,8.5\n326,584,9.0\n326,585,9.5\n326,586,10.0\n326,587,10.5\n326,588,11.0\n326,589,11.5\n326,590,12.0\n326,591,12.5\n326,592,13.0\n326,593,13.5\n326,594,14.0\n326,595,14.5\n326,596,15.0\n326,597,15.5\n326,598,16.0\n326,599,16.5\n326,600,6.0\n326,601,5.5\n326,602,6.0\n326,603,6.5\n326,604,7.0\n326,605,7.5\n326,606,8.0\n326,607,8.5\n326,608,9.0\n326,609,9.5\n326,610,10.0\n326,611,10.5\n326,612,11.0\n326,613,11.5\n326,614,12.0\n326,615,12.5\n326,616,13.0\n326,617,13.5\n326,618,14.0\n326,619,14.5\n326,620,15.0\n326,621,15.5\n326,622,16.0\n326,623,16.5\n326,624,17.0\n327,0,7.5\n327,1,7.0\n327,2,6.5\n327,3,7.0\n327,4,7.5\n327,5,8.0\n327,6,8.5\n327,7,9.0\n327,8,9.5\n327,9,10.0\n327,10,10.5\n327,11,11.0\n327,12,11.5\n327,13,12.0\n327,14,12.5\n327,15,13.0\n327,16,13.5\n327,17,14.0\n327,18,14.5\n327,19,15.0\n327,20,15.5\n327,21,16.0\n327,22,16.5\n327,23,17.0\n327,24,17.5\n327,25,7.0\n327,26,6.5\n327,27,6.0\n327,28,6.5\n327,29,7.0\n327,30,7.5\n327,31,8.0\n327,32,8.5\n327,33,9.0\n327,34,9.5\n327,35,10.0\n327,36,10.5\n327,37,11.0\n327,38,11.5\n327,39,12.0\n327,40,12.5\n327,41,13.0\n327,42,13.5\n327,43,14.0\n327,44,14.5\n327,45,15.0\n327,46,15.5\n327,47,16.0\n327,48,16.5\n327,49,17.0\n327,50,6.5\n327,51,6.0\n327,52,5.5\n327,53,6.0\n327,54,6.5\n327,55,7.0\n327,56,7.5\n327,57,8.0\n327,58,8.5\n327,59,9.0\n327,60,9.5\n327,61,10.0\n327,62,10.5\n327,63,11.0\n327,64,11.5\n327,65,12.0\n327,66,12.5\n327,67,13.0\n327,68,13.5\n327,69,14.0\n327,70,14.5\n327,71,15.0\n327,72,15.5\n327,73,16.0\n327,74,16.5\n327,75,6.0\n327,76,5.5\n327,77,5.0\n327,78,5.5\n327,79,6.0\n327,80,6.5\n327,81,7.0\n327,82,7.5\n327,83,8.0\n327,84,8.5\n327,85,9.0\n327,86,9.5\n327,87,10.0\n327,88,10.5\n327,89,11.0\n327,90,11.5\n327,91,12.0\n327,92,12.5\n327,93,13.0\n327,94,13.5\n327,95,14.0\n327,96,14.5\n327,97,15.0\n327,98,15.5\n327,99,16.0\n327,100,5.5\n327,101,5.0\n327,102,4.5\n327,103,5.0\n327,104,5.5\n327,105,6.0\n327,106,6.5\n327,107,7.0\n327,108,7.5\n327,109,8.0\n327,110,8.5\n327,111,9.0\n327,112,9.5\n327,113,10.0\n327,114,10.5\n327,115,11.0\n327,116,11.5\n327,117,12.0\n327,118,12.5\n327,119,13.0\n327,120,13.5\n327,121,14.0\n327,122,14.5\n327,123,15.0\n327,124,15.5\n327,125,5.0\n327,126,4.5\n327,127,4.0\n327,128,4.5\n327,129,5.0\n327,130,5.5\n327,131,6.0\n327,132,6.5\n327,133,7.0\n327,134,7.5\n327,135,8.0\n327,136,8.5\n327,137,9.0\n327,138,9.5\n327,139,10.0\n327,140,10.5\n327,141,11.0\n327,142,11.5\n327,143,12.0\n327,144,12.5\n327,145,13.0\n327,146,13.5\n327,147,14.0\n327,148,14.5\n327,149,15.0\n327,150,4.5\n327,151,4.0\n327,152,3.5\n327,153,4.0\n327,154,4.5\n327,155,5.0\n327,156,5.5\n327,157,6.0\n327,158,6.5\n327,159,7.0\n327,160,7.5\n327,161,8.0\n327,162,8.5\n327,163,9.0\n327,164,9.5\n327,165,10.0\n327,166,10.5\n327,167,11.0\n327,168,11.5\n327,169,12.0\n327,170,12.5\n327,171,13.0\n327,172,13.5\n327,173,14.0\n327,174,14.5\n327,175,4.0\n327,176,3.5\n327,177,3.0\n327,178,3.5\n327,179,4.0\n327,180,4.5\n327,181,5.0\n327,182,5.5\n327,183,6.0\n327,184,6.5\n327,185,7.0\n327,186,7.5\n327,187,8.0\n327,188,8.5\n327,189,9.0\n327,190,9.5\n327,191,10.0\n327,192,10.5\n327,193,11.0\n327,194,11.5\n327,195,12.0\n327,196,12.5\n327,197,13.0\n327,198,13.5\n327,199,14.0\n327,200,3.5\n327,201,3.0\n327,202,2.5\n327,203,3.0\n327,204,3.5\n327,205,4.0\n327,206,4.5\n327,207,5.0\n327,208,5.5\n327,209,6.0\n327,210,6.5\n327,211,7.0\n327,212,7.5\n327,213,8.0\n327,214,8.5\n327,215,9.0\n327,216,9.5\n327,217,10.0\n327,218,10.5\n327,219,11.0\n327,220,11.5\n327,221,12.0\n327,222,12.5\n327,223,13.0\n327,224,13.5\n327,225,3.0\n327,226,2.5\n327,227,2.0\n327,228,2.5\n327,229,3.0\n327,230,3.5\n327,231,4.0\n327,232,4.5\n327,233,5.0\n327,234,5.5\n327,235,6.0\n327,236,6.5\n327,237,7.0\n327,238,7.5\n327,239,8.0\n327,240,8.5\n327,241,9.0\n327,242,9.5\n327,243,10.0\n327,244,10.5\n327,245,11.0\n327,246,11.5\n327,247,12.0\n327,248,12.5\n327,249,13.0\n327,250,2.5\n327,251,2.0\n327,252,1.5\n327,253,2.0\n327,254,2.5\n327,255,3.0\n327,256,3.5\n327,257,4.0\n327,258,4.5\n327,259,5.0\n327,260,5.5\n327,261,6.0\n327,262,6.5\n327,263,7.0\n327,264,7.5\n327,265,8.0\n327,266,8.5\n327,267,9.0\n327,268,9.5\n327,269,10.0\n327,270,10.5\n327,271,11.0\n327,272,11.5\n327,273,12.0\n327,274,12.5\n327,275,2.0\n327,276,1.5\n327,277,1.0\n327,278,1.5\n327,279,2.0\n327,280,2.5\n327,281,3.0\n327,282,3.5\n327,283,4.0\n327,284,4.5\n327,285,5.0\n327,286,5.5\n327,287,6.0\n327,288,6.5\n327,289,7.0\n327,290,7.5\n327,291,8.0\n327,292,8.5\n327,293,9.0\n327,294,9.5\n327,295,10.0\n327,296,10.5\n327,297,11.0\n327,298,11.5\n327,299,12.0\n327,300,1.5\n327,301,1.0\n327,302,0.5\n327,303,1.0\n327,304,1.5\n327,305,2.0\n327,306,2.5\n327,307,3.0\n327,308,3.5\n327,309,4.0\n327,310,4.5\n327,311,5.0\n327,312,5.5\n327,313,6.0\n327,314,6.5\n327,315,7.0\n327,316,7.5\n327,317,8.0\n327,318,8.5\n327,319,9.0\n327,320,9.5\n327,321,10.0\n327,322,10.5\n327,323,11.0\n327,324,11.5\n327,325,1.0\n327,326,0.5\n327,327,0\n327,328,0.5\n327,329,1.0\n327,330,1.5\n327,331,2.0\n327,332,2.5\n327,333,3.0\n327,334,3.5\n327,335,4.0\n327,336,4.5\n327,337,5.0\n327,338,5.5\n327,339,6.0\n327,340,6.5\n327,341,7.0\n327,342,7.5\n327,343,8.0\n327,344,8.5\n327,345,9.0\n327,346,9.5\n327,347,10.0\n327,348,10.5\n327,349,11.0\n327,350,1.5\n327,351,1.0\n327,352,0.5\n327,353,1.0\n327,354,1.5\n327,355,2.0\n327,356,2.5\n327,357,3.0\n327,358,3.5\n327,359,4.0\n327,360,4.5\n327,361,5.0\n327,362,5.5\n327,363,6.0\n327,364,6.5\n327,365,7.0\n327,366,7.5\n327,367,8.0\n327,368,8.5\n327,369,9.0\n327,370,9.5\n327,371,10.0\n327,372,10.5\n327,373,11.0\n327,374,11.5\n327,375,2.0\n327,376,1.5\n327,377,1.0\n327,378,1.5\n327,379,2.0\n327,380,2.5\n327,381,3.0\n327,382,3.5\n327,383,4.0\n327,384,4.5\n327,385,5.0\n327,386,5.5\n327,387,6.0\n327,388,6.5\n327,389,7.0\n327,390,7.5\n327,391,8.0\n327,392,8.5\n327,393,9.0\n327,394,9.5\n327,395,10.0\n327,396,10.5\n327,397,11.0\n327,398,11.5\n327,399,12.0\n327,400,2.5\n327,401,2.0\n327,402,1.5\n327,403,2.0\n327,404,2.5\n327,405,3.0\n327,406,3.5\n327,407,4.0\n327,408,4.5\n327,409,5.0\n327,410,5.5\n327,411,6.0\n327,412,6.5\n327,413,7.0\n327,414,7.5\n327,415,8.0\n327,416,8.5\n327,417,9.0\n327,418,9.5\n327,419,10.0\n327,420,10.5\n327,421,11.0\n327,422,11.5\n327,423,12.0\n327,424,12.5\n327,425,3.0\n327,426,2.5\n327,427,2.0\n327,428,2.5\n327,429,3.0\n327,430,3.5\n327,431,4.0\n327,432,4.5\n327,433,5.0\n327,434,5.5\n327,435,6.0\n327,436,6.5\n327,437,7.0\n327,438,7.5\n327,439,8.0\n327,440,8.5\n327,441,9.0\n327,442,9.5\n327,443,10.0\n327,444,10.5\n327,445,11.0\n327,446,11.5\n327,447,12.0\n327,448,12.5\n327,449,13.0\n327,450,3.5\n327,451,3.0\n327,452,2.5\n327,453,3.0\n327,454,3.5\n327,455,4.0\n327,456,4.5\n327,457,5.0\n327,458,5.5\n327,459,6.0\n327,460,6.5\n327,461,7.0\n327,462,7.5\n327,463,8.0\n327,464,8.5\n327,465,9.0\n327,466,9.5\n327,467,10.0\n327,468,10.5\n327,469,11.0\n327,470,11.5\n327,471,12.0\n327,472,12.5\n327,473,13.0\n327,474,13.5\n327,475,4.0\n327,476,3.5\n327,477,3.0\n327,478,3.5\n327,479,4.0\n327,480,4.5\n327,481,5.0\n327,482,5.5\n327,483,6.0\n327,484,6.5\n327,485,7.0\n327,486,7.5\n327,487,8.0\n327,488,8.5\n327,489,9.0\n327,490,9.5\n327,491,10.0\n327,492,10.5\n327,493,11.0\n327,494,11.5\n327,495,12.0\n327,496,12.5\n327,497,13.0\n327,498,13.5\n327,499,14.0\n327,500,4.5\n327,501,4.0\n327,502,3.5\n327,503,4.0\n327,504,4.5\n327,505,5.0\n327,506,5.5\n327,507,6.0\n327,508,6.5\n327,509,7.0\n327,510,7.5\n327,511,8.0\n327,512,8.5\n327,513,9.0\n327,514,9.5\n327,515,10.0\n327,516,10.5\n327,517,11.0\n327,518,11.5\n327,519,12.0\n327,520,12.5\n327,521,13.0\n327,522,13.5\n327,523,14.0\n327,524,14.5\n327,525,5.0\n327,526,4.5\n327,527,4.0\n327,528,4.5\n327,529,5.0\n327,530,5.5\n327,531,6.0\n327,532,6.5\n327,533,7.0\n327,534,7.5\n327,535,8.0\n327,536,8.5\n327,537,9.0\n327,538,9.5\n327,539,10.0\n327,540,10.5\n327,541,11.0\n327,542,11.5\n327,543,12.0\n327,544,12.5\n327,545,13.0\n327,546,13.5\n327,547,14.0\n327,548,14.5\n327,549,15.0\n327,550,5.5\n327,551,5.0\n327,552,4.5\n327,553,5.0\n327,554,5.5\n327,555,6.0\n327,556,6.5\n327,557,7.0\n327,558,7.5\n327,559,8.0\n327,560,8.5\n327,561,9.0\n327,562,9.5\n327,563,10.0\n327,564,10.5\n327,565,11.0\n327,566,11.5\n327,567,12.0\n327,568,12.5\n327,569,13.0\n327,570,13.5\n327,571,14.0\n327,572,14.5\n327,573,15.0\n327,574,15.5\n327,575,6.0\n327,576,5.5\n327,577,5.0\n327,578,5.5\n327,579,6.0\n327,580,6.5\n327,581,7.0\n327,582,7.5\n327,583,8.0\n327,584,8.5\n327,585,9.0\n327,586,9.5\n327,587,10.0\n327,588,10.5\n327,589,11.0\n327,590,11.5\n327,591,12.0\n327,592,12.5\n327,593,13.0\n327,594,13.5\n327,595,14.0\n327,596,14.5\n327,597,15.0\n327,598,15.5\n327,599,16.0\n327,600,6.5\n327,601,6.0\n327,602,5.5\n327,603,6.0\n327,604,6.5\n327,605,7.0\n327,606,7.5\n327,607,8.0\n327,608,8.5\n327,609,9.0\n327,610,9.5\n327,611,10.0\n327,612,10.5\n327,613,11.0\n327,614,11.5\n327,615,12.0\n327,616,12.5\n327,617,13.0\n327,618,13.5\n327,619,14.0\n327,620,14.5\n327,621,15.0\n327,622,15.5\n327,623,16.0\n327,624,16.5\n328,0,8.0\n328,1,7.5\n328,2,7.0\n328,3,6.5\n328,4,7.0\n328,5,7.5\n328,6,8.0\n328,7,8.5\n328,8,9.0\n328,9,9.5\n328,10,10.0\n328,11,10.5\n328,12,11.0\n328,13,11.5\n328,14,12.0\n328,15,12.5\n328,16,13.0\n328,17,13.5\n328,18,14.0\n328,19,14.5\n328,20,15.0\n328,21,15.5\n328,22,16.0\n328,23,16.5\n328,24,17.0\n328,25,7.5\n328,26,7.0\n328,27,6.5\n328,28,6.0\n328,29,6.5\n328,30,7.0\n328,31,7.5\n328,32,8.0\n328,33,8.5\n328,34,9.0\n328,35,9.5\n328,36,10.0\n328,37,10.5\n328,38,11.0\n328,39,11.5\n328,40,12.0\n328,41,12.5\n328,42,13.0\n328,43,13.5\n328,44,14.0\n328,45,14.5\n328,46,15.0\n328,47,15.5\n328,48,16.0\n328,49,16.5\n328,50,7.0\n328,51,6.5\n328,52,6.0\n328,53,5.5\n328,54,6.0\n328,55,6.5\n328,56,7.0\n328,57,7.5\n328,58,8.0\n328,59,8.5\n328,60,9.0\n328,61,9.5\n328,62,10.0\n328,63,10.5\n328,64,11.0\n328,65,11.5\n328,66,12.0\n328,67,12.5\n328,68,13.0\n328,69,13.5\n328,70,14.0\n328,71,14.5\n328,72,15.0\n328,73,15.5\n328,74,16.0\n328,75,6.5\n328,76,6.0\n328,77,5.5\n328,78,5.0\n328,79,5.5\n328,80,6.0\n328,81,6.5\n328,82,7.0\n328,83,7.5\n328,84,8.0\n328,85,8.5\n328,86,9.0\n328,87,9.5\n328,88,10.0\n328,89,10.5\n328,90,11.0\n328,91,11.5\n328,92,12.0\n328,93,12.5\n328,94,13.0\n328,95,13.5\n328,96,14.0\n328,97,14.5\n328,98,15.0\n328,99,15.5\n328,100,6.0\n328,101,5.5\n328,102,5.0\n328,103,4.5\n328,104,5.0\n328,105,5.5\n328,106,6.0\n328,107,6.5\n328,108,7.0\n328,109,7.5\n328,110,8.0\n328,111,8.5\n328,112,9.0\n328,113,9.5\n328,114,10.0\n328,115,10.5\n328,116,11.0\n328,117,11.5\n328,118,12.0\n328,119,12.5\n328,120,13.0\n328,121,13.5\n328,122,14.0\n328,123,14.5\n328,124,15.0\n328,125,5.5\n328,126,5.0\n328,127,4.5\n328,128,4.0\n328,129,4.5\n328,130,5.0\n328,131,5.5\n328,132,6.0\n328,133,6.5\n328,134,7.0\n328,135,7.5\n328,136,8.0\n328,137,8.5\n328,138,9.0\n328,139,9.5\n328,140,10.0\n328,141,10.5\n328,142,11.0\n328,143,11.5\n328,144,12.0\n328,145,12.5\n328,146,13.0\n328,147,13.5\n328,148,14.0\n328,149,14.5\n328,150,5.0\n328,151,4.5\n328,152,4.0\n328,153,3.5\n328,154,4.0\n328,155,4.5\n328,156,5.0\n328,157,5.5\n328,158,6.0\n328,159,6.5\n328,160,7.0\n328,161,7.5\n328,162,8.0\n328,163,8.5\n328,164,9.0\n328,165,9.5\n328,166,10.0\n328,167,10.5\n328,168,11.0\n328,169,11.5\n328,170,12.0\n328,171,12.5\n328,172,13.0\n328,173,13.5\n328,174,14.0\n328,175,4.5\n328,176,4.0\n328,177,3.5\n328,178,3.0\n328,179,3.5\n328,180,4.0\n328,181,4.5\n328,182,5.0\n328,183,5.5\n328,184,6.0\n328,185,6.5\n328,186,7.0\n328,187,7.5\n328,188,8.0\n328,189,8.5\n328,190,9.0\n328,191,9.5\n328,192,10.0\n328,193,10.5\n328,194,11.0\n328,195,11.5\n328,196,12.0\n328,197,12.5\n328,198,13.0\n328,199,13.5\n328,200,4.0\n328,201,3.5\n328,202,3.0\n328,203,2.5\n328,204,3.0\n328,205,3.5\n328,206,4.0\n328,207,4.5\n328,208,5.0\n328,209,5.5\n328,210,6.0\n328,211,6.5\n328,212,7.0\n328,213,7.5\n328,214,8.0\n328,215,8.5\n328,216,9.0\n328,217,9.5\n328,218,10.0\n328,219,10.5\n328,220,11.0\n328,221,11.5\n328,222,12.0\n328,223,12.5\n328,224,13.0\n328,225,3.5\n328,226,3.0\n328,227,2.5\n328,228,2.0\n328,229,2.5\n328,230,3.0\n328,231,3.5\n328,232,4.0\n328,233,4.5\n328,234,5.0\n328,235,5.5\n328,236,6.0\n328,237,6.5\n328,238,7.0\n328,239,7.5\n328,240,8.0\n328,241,8.5\n328,242,9.0\n328,243,9.5\n328,244,10.0\n328,245,10.5\n328,246,11.0\n328,247,11.5\n328,248,12.0\n328,249,12.5\n328,250,3.0\n328,251,2.5\n328,252,2.0\n328,253,1.5\n328,254,2.0\n328,255,2.5\n328,256,3.0\n328,257,3.5\n328,258,4.0\n328,259,4.5\n328,260,5.0\n328,261,5.5\n328,262,6.0\n328,263,6.5\n328,264,7.0\n328,265,7.5\n328,266,8.0\n328,267,8.5\n328,268,9.0\n328,269,9.5\n328,270,10.0\n328,271,10.5\n328,272,11.0\n328,273,11.5\n328,274,12.0\n328,275,2.5\n328,276,2.0\n328,277,1.5\n328,278,1.0\n328,279,1.5\n328,280,2.0\n328,281,2.5\n328,282,3.0\n328,283,3.5\n328,284,4.0\n328,285,4.5\n328,286,5.0\n328,287,5.5\n328,288,6.0\n328,289,6.5\n328,290,7.0\n328,291,7.5\n328,292,8.0\n328,293,8.5\n328,294,9.0\n328,295,9.5\n328,296,10.0\n328,297,10.5\n328,298,11.0\n328,299,11.5\n328,300,2.0\n328,301,1.5\n328,302,1.0\n328,303,0.5\n328,304,1.0\n328,305,1.5\n328,306,2.0\n328,307,2.5\n328,308,3.0\n328,309,3.5\n328,310,4.0\n328,311,4.5\n328,312,5.0\n328,313,5.5\n328,314,6.0\n328,315,6.5\n328,316,7.0\n328,317,7.5\n328,318,8.0\n328,319,8.5\n328,320,9.0\n328,321,9.5\n328,322,10.0\n328,323,10.5\n328,324,11.0\n328,325,1.5\n328,326,1.0\n328,327,0.5\n328,328,0\n328,329,0.5\n328,330,1.0\n328,331,1.5\n328,332,2.0\n328,333,2.5\n328,334,3.0\n328,335,3.5\n328,336,4.0\n328,337,4.5\n328,338,5.0\n328,339,5.5\n328,340,6.0\n328,341,6.5\n328,342,7.0\n328,343,7.5\n328,344,8.0\n328,345,8.5\n328,346,9.0\n328,347,9.5\n328,348,10.0\n328,349,10.5\n328,350,2.0\n328,351,1.5\n328,352,1.0\n328,353,0.5\n328,354,1.0\n328,355,1.5\n328,356,2.0\n328,357,2.5\n328,358,3.0\n328,359,3.5\n328,360,4.0\n328,361,4.5\n328,362,5.0\n328,363,5.5\n328,364,6.0\n328,365,6.5\n328,366,7.0\n328,367,7.5\n328,368,8.0\n328,369,8.5\n328,370,9.0\n328,371,9.5\n328,372,10.0\n328,373,10.5\n328,374,11.0\n328,375,2.5\n328,376,2.0\n328,377,1.5\n328,378,1.0\n328,379,1.5\n328,380,2.0\n328,381,2.5\n328,382,3.0\n328,383,3.5\n328,384,4.0\n328,385,4.5\n328,386,5.0\n328,387,5.5\n328,388,6.0\n328,389,6.5\n328,390,7.0\n328,391,7.5\n328,392,8.0\n328,393,8.5\n328,394,9.0\n328,395,9.5\n328,396,10.0\n328,397,10.5\n328,398,11.0\n328,399,11.5\n328,400,3.0\n328,401,2.5\n328,402,2.0\n328,403,1.5\n328,404,2.0\n328,405,2.5\n328,406,3.0\n328,407,3.5\n328,408,4.0\n328,409,4.5\n328,410,5.0\n328,411,5.5\n328,412,6.0\n328,413,6.5\n328,414,7.0\n328,415,7.5\n328,416,8.0\n328,417,8.5\n328,418,9.0\n328,419,9.5\n328,420,10.0\n328,421,10.5\n328,422,11.0\n328,423,11.5\n328,424,12.0\n328,425,3.5\n328,426,3.0\n328,427,2.5\n328,428,2.0\n328,429,2.5\n328,430,3.0\n328,431,3.5\n328,432,4.0\n328,433,4.5\n328,434,5.0\n328,435,5.5\n328,436,6.0\n328,437,6.5\n328,438,7.0\n328,439,7.5\n328,440,8.0\n328,441,8.5\n328,442,9.0\n328,443,9.5\n328,444,10.0\n328,445,10.5\n328,446,11.0\n328,447,11.5\n328,448,12.0\n328,449,12.5\n328,450,4.0\n328,451,3.5\n328,452,3.0\n328,453,2.5\n328,454,3.0\n328,455,3.5\n328,456,4.0\n328,457,4.5\n328,458,5.0\n328,459,5.5\n328,460,6.0\n328,461,6.5\n328,462,7.0\n328,463,7.5\n328,464,8.0\n328,465,8.5\n328,466,9.0\n328,467,9.5\n328,468,10.0\n328,469,10.5\n328,470,11.0\n328,471,11.5\n328,472,12.0\n328,473,12.5\n328,474,13.0\n328,475,4.5\n328,476,4.0\n328,477,3.5\n328,478,3.0\n328,479,3.5\n328,480,4.0\n328,481,4.5\n328,482,5.0\n328,483,5.5\n328,484,6.0\n328,485,6.5\n328,486,7.0\n328,487,7.5\n328,488,8.0\n328,489,8.5\n328,490,9.0\n328,491,9.5\n328,492,10.0\n328,493,10.5\n328,494,11.0\n328,495,11.5\n328,496,12.0\n328,497,12.5\n328,498,13.0\n328,499,13.5\n328,500,5.0\n328,501,4.5\n328,502,4.0\n328,503,3.5\n328,504,4.0\n328,505,4.5\n328,506,5.0\n328,507,5.5\n328,508,6.0\n328,509,6.5\n328,510,7.0\n328,511,7.5\n328,512,8.0\n328,513,8.5\n328,514,9.0\n328,515,9.5\n328,516,10.0\n328,517,10.5\n328,518,11.0\n328,519,11.5\n328,520,12.0\n328,521,12.5\n328,522,13.0\n328,523,13.5\n328,524,14.0\n328,525,5.5\n328,526,5.0\n328,527,4.5\n328,528,4.0\n328,529,4.5\n328,530,5.0\n328,531,5.5\n328,532,6.0\n328,533,6.5\n328,534,7.0\n328,535,7.5\n328,536,8.0\n328,537,8.5\n328,538,9.0\n328,539,9.5\n328,540,10.0\n328,541,10.5\n328,542,11.0\n328,543,11.5\n328,544,12.0\n328,545,12.5\n328,546,13.0\n328,547,13.5\n328,548,14.0\n328,549,14.5\n328,550,6.0\n328,551,5.5\n328,552,5.0\n328,553,4.5\n328,554,5.0\n328,555,5.5\n328,556,6.0\n328,557,6.5\n328,558,7.0\n328,559,7.5\n328,560,8.0\n328,561,8.5\n328,562,9.0\n328,563,9.5\n328,564,10.0\n328,565,10.5\n328,566,11.0\n328,567,11.5\n328,568,12.0\n328,569,12.5\n328,570,13.0\n328,571,13.5\n328,572,14.0\n328,573,14.5\n328,574,15.0\n328,575,6.5\n328,576,6.0\n328,577,5.5\n328,578,5.0\n328,579,5.5\n328,580,6.0\n328,581,6.5\n328,582,7.0\n328,583,7.5\n328,584,8.0\n328,585,8.5\n328,586,9.0\n328,587,9.5\n328,588,10.0\n328,589,10.5\n328,590,11.0\n328,591,11.5\n328,592,12.0\n328,593,12.5\n328,594,13.0\n328,595,13.5\n328,596,14.0\n328,597,14.5\n328,598,15.0\n328,599,15.5\n328,600,7.0\n328,601,6.5\n328,602,6.0\n328,603,5.5\n328,604,6.0\n328,605,6.5\n328,606,7.0\n328,607,7.5\n328,608,8.0\n328,609,8.5\n328,610,9.0\n328,611,9.5\n328,612,10.0\n328,613,10.5\n328,614,11.0\n328,615,11.5\n328,616,12.0\n328,617,12.5\n328,618,13.0\n328,619,13.5\n328,620,14.0\n328,621,14.5\n328,622,15.0\n328,623,15.5\n328,624,16.0\n329,0,8.5\n329,1,8.0\n329,2,7.5\n329,3,7.0\n329,4,6.5\n329,5,7.0\n329,6,7.5\n329,7,8.0\n329,8,8.5\n329,9,9.0\n329,10,9.5\n329,11,10.0\n329,12,10.5\n329,13,11.0\n329,14,11.5\n329,15,12.0\n329,16,12.5\n329,17,13.0\n329,18,13.5\n329,19,14.0\n329,20,14.5\n329,21,15.0\n329,22,15.5\n329,23,16.0\n329,24,16.5\n329,25,8.0\n329,26,7.5\n329,27,7.0\n329,28,6.5\n329,29,6.0\n329,30,6.5\n329,31,7.0\n329,32,7.5\n329,33,8.0\n329,34,8.5\n329,35,9.0\n329,36,9.5\n329,37,10.0\n329,38,10.5\n329,39,11.0\n329,40,11.5\n329,41,12.0\n329,42,12.5\n329,43,13.0\n329,44,13.5\n329,45,14.0\n329,46,14.5\n329,47,15.0\n329,48,15.5\n329,49,16.0\n329,50,7.5\n329,51,7.0\n329,52,6.5\n329,53,6.0\n329,54,5.5\n329,55,6.0\n329,56,6.5\n329,57,7.0\n329,58,7.5\n329,59,8.0\n329,60,8.5\n329,61,9.0\n329,62,9.5\n329,63,10.0\n329,64,10.5\n329,65,11.0\n329,66,11.5\n329,67,12.0\n329,68,12.5\n329,69,13.0\n329,70,13.5\n329,71,14.0\n329,72,14.5\n329,73,15.0\n329,74,15.5\n329,75,7.0\n329,76,6.5\n329,77,6.0\n329,78,5.5\n329,79,5.0\n329,80,5.5\n329,81,6.0\n329,82,6.5\n329,83,7.0\n329,84,7.5\n329,85,8.0\n329,86,8.5\n329,87,9.0\n329,88,9.5\n329,89,10.0\n329,90,10.5\n329,91,11.0\n329,92,11.5\n329,93,12.0\n329,94,12.5\n329,95,13.0\n329,96,13.5\n329,97,14.0\n329,98,14.5\n329,99,15.0\n329,100,6.5\n329,101,6.0\n329,102,5.5\n329,103,5.0\n329,104,4.5\n329,105,5.0\n329,106,5.5\n329,107,6.0\n329,108,6.5\n329,109,7.0\n329,110,7.5\n329,111,8.0\n329,112,8.5\n329,113,9.0\n329,114,9.5\n329,115,10.0\n329,116,10.5\n329,117,11.0\n329,118,11.5\n329,119,12.0\n329,120,12.5\n329,121,13.0\n329,122,13.5\n329,123,14.0\n329,124,14.5\n329,125,6.0\n329,126,5.5\n329,127,5.0\n329,128,4.5\n329,129,4.0\n329,130,4.5\n329,131,5.0\n329,132,5.5\n329,133,6.0\n329,134,6.5\n329,135,7.0\n329,136,7.5\n329,137,8.0\n329,138,8.5\n329,139,9.0\n329,140,9.5\n329,141,10.0\n329,142,10.5\n329,143,11.0\n329,144,11.5\n329,145,12.0\n329,146,12.5\n329,147,13.0\n329,148,13.5\n329,149,14.0\n329,150,5.5\n329,151,5.0\n329,152,4.5\n329,153,4.0\n329,154,3.5\n329,155,4.0\n329,156,4.5\n329,157,5.0\n329,158,5.5\n329,159,6.0\n329,160,6.5\n329,161,7.0\n329,162,7.5\n329,163,8.0\n329,164,8.5\n329,165,9.0\n329,166,9.5\n329,167,10.0\n329,168,10.5\n329,169,11.0\n329,170,11.5\n329,171,12.0\n329,172,12.5\n329,173,13.0\n329,174,13.5\n329,175,5.0\n329,176,4.5\n329,177,4.0\n329,178,3.5\n329,179,3.0\n329,180,3.5\n329,181,4.0\n329,182,4.5\n329,183,5.0\n329,184,5.5\n329,185,6.0\n329,186,6.5\n329,187,7.0\n329,188,7.5\n329,189,8.0\n329,190,8.5\n329,191,9.0\n329,192,9.5\n329,193,10.0\n329,194,10.5\n329,195,11.0\n329,196,11.5\n329,197,12.0\n329,198,12.5\n329,199,13.0\n329,200,4.5\n329,201,4.0\n329,202,3.5\n329,203,3.0\n329,204,2.5\n329,205,3.0\n329,206,3.5\n329,207,4.0\n329,208,4.5\n329,209,5.0\n329,210,5.5\n329,211,6.0\n329,212,6.5\n329,213,7.0\n329,214,7.5\n329,215,8.0\n329,216,8.5\n329,217,9.0\n329,218,9.5\n329,219,10.0\n329,220,10.5\n329,221,11.0\n329,222,11.5\n329,223,12.0\n329,224,12.5\n329,225,4.0\n329,226,3.5\n329,227,3.0\n329,228,2.5\n329,229,2.0\n329,230,2.5\n329,231,3.0\n329,232,3.5\n329,233,4.0\n329,234,4.5\n329,235,5.0\n329,236,5.5\n329,237,6.0\n329,238,6.5\n329,239,7.0\n329,240,7.5\n329,241,8.0\n329,242,8.5\n329,243,9.0\n329,244,9.5\n329,245,10.0\n329,246,10.5\n329,247,11.0\n329,248,11.5\n329,249,12.0\n329,250,3.5\n329,251,3.0\n329,252,2.5\n329,253,2.0\n329,254,1.5\n329,255,2.0\n329,256,2.5\n329,257,3.0\n329,258,3.5\n329,259,4.0\n329,260,4.5\n329,261,5.0\n329,262,5.5\n329,263,6.0\n329,264,6.5\n329,265,7.0\n329,266,7.5\n329,267,8.0\n329,268,8.5\n329,269,9.0\n329,270,9.5\n329,271,10.0\n329,272,10.5\n329,273,11.0\n329,274,11.5\n329,275,3.0\n329,276,2.5\n329,277,2.0\n329,278,1.5\n329,279,1.0\n329,280,1.5\n329,281,2.0\n329,282,2.5\n329,283,3.0\n329,284,3.5\n329,285,4.0\n329,286,4.5\n329,287,5.0\n329,288,5.5\n329,289,6.0\n329,290,6.5\n329,291,7.0\n329,292,7.5\n329,293,8.0\n329,294,8.5\n329,295,9.0\n329,296,9.5\n329,297,10.0\n329,298,10.5\n329,299,11.0\n329,300,2.5\n329,301,2.0\n329,302,1.5\n329,303,1.0\n329,304,0.5\n329,305,1.0\n329,306,1.5\n329,307,2.0\n329,308,2.5\n329,309,3.0\n329,310,3.5\n329,311,4.0\n329,312,4.5\n329,313,5.0\n329,314,5.5\n329,315,6.0\n329,316,6.5\n329,317,7.0\n329,318,7.5\n329,319,8.0\n329,320,8.5\n329,321,9.0\n329,322,9.5\n329,323,10.0\n329,324,10.5\n329,325,2.0\n329,326,1.5\n329,327,1.0\n329,328,0.5\n329,329,0\n329,330,0.5\n329,331,1.0\n329,332,1.5\n329,333,2.0\n329,334,2.5\n329,335,3.0\n329,336,3.5\n329,337,4.0\n329,338,4.5\n329,339,5.0\n329,340,5.5\n329,341,6.0\n329,342,6.5\n329,343,7.0\n329,344,7.5\n329,345,8.0\n329,346,8.5\n329,347,9.0\n329,348,9.5\n329,349,10.0\n329,350,2.5\n329,351,2.0\n329,352,1.5\n329,353,1.0\n329,354,0.5\n329,355,1.0\n329,356,1.5\n329,357,2.0\n329,358,2.5\n329,359,3.0\n329,360,3.5\n329,361,4.0\n329,362,4.5\n329,363,5.0\n329,364,5.5\n329,365,6.0\n329,366,6.5\n329,367,7.0\n329,368,7.5\n329,369,8.0\n329,370,8.5\n329,371,9.0\n329,372,9.5\n329,373,10.0\n329,374,10.5\n329,375,3.0\n329,376,2.5\n329,377,2.0\n329,378,1.5\n329,379,1.0\n329,380,1.5\n329,381,2.0\n329,382,2.5\n329,383,3.0\n329,384,3.5\n329,385,4.0\n329,386,4.5\n329,387,5.0\n329,388,5.5\n329,389,6.0\n329,390,6.5\n329,391,7.0\n329,392,7.5\n329,393,8.0\n329,394,8.5\n329,395,9.0\n329,396,9.5\n329,397,10.0\n329,398,10.5\n329,399,11.0\n329,400,3.5\n329,401,3.0\n329,402,2.5\n329,403,2.0\n329,404,1.5\n329,405,2.0\n329,406,2.5\n329,407,3.0\n329,408,3.5\n329,409,4.0\n329,410,4.5\n329,411,5.0\n329,412,5.5\n329,413,6.0\n329,414,6.5\n329,415,7.0\n329,416,7.5\n329,417,8.0\n329,418,8.5\n329,419,9.0\n329,420,9.5\n329,421,10.0\n329,422,10.5\n329,423,11.0\n329,424,11.5\n329,425,4.0\n329,426,3.5\n329,427,3.0\n329,428,2.5\n329,429,2.0\n329,430,2.5\n329,431,3.0\n329,432,3.5\n329,433,4.0\n329,434,4.5\n329,435,5.0\n329,436,5.5\n329,437,6.0\n329,438,6.5\n329,439,7.0\n329,440,7.5\n329,441,8.0\n329,442,8.5\n329,443,9.0\n329,444,9.5\n329,445,10.0\n329,446,10.5\n329,447,11.0\n329,448,11.5\n329,449,12.0\n329,450,4.5\n329,451,4.0\n329,452,3.5\n329,453,3.0\n329,454,2.5\n329,455,3.0\n329,456,3.5\n329,457,4.0\n329,458,4.5\n329,459,5.0\n329,460,5.5\n329,461,6.0\n329,462,6.5\n329,463,7.0\n329,464,7.5\n329,465,8.0\n329,466,8.5\n329,467,9.0\n329,468,9.5\n329,469,10.0\n329,470,10.5\n329,471,11.0\n329,472,11.5\n329,473,12.0\n329,474,12.5\n329,475,5.0\n329,476,4.5\n329,477,4.0\n329,478,3.5\n329,479,3.0\n329,480,3.5\n329,481,4.0\n329,482,4.5\n329,483,5.0\n329,484,5.5\n329,485,6.0\n329,486,6.5\n329,487,7.0\n329,488,7.5\n329,489,8.0\n329,490,8.5\n329,491,9.0\n329,492,9.5\n329,493,10.0\n329,494,10.5\n329,495,11.0\n329,496,11.5\n329,497,12.0\n329,498,12.5\n329,499,13.0\n329,500,5.5\n329,501,5.0\n329,502,4.5\n329,503,4.0\n329,504,3.5\n329,505,4.0\n329,506,4.5\n329,507,5.0\n329,508,5.5\n329,509,6.0\n329,510,6.5\n329,511,7.0\n329,512,7.5\n329,513,8.0\n329,514,8.5\n329,515,9.0\n329,516,9.5\n329,517,10.0\n329,518,10.5\n329,519,11.0\n329,520,11.5\n329,521,12.0\n329,522,12.5\n329,523,13.0\n329,524,13.5\n329,525,6.0\n329,526,5.5\n329,527,5.0\n329,528,4.5\n329,529,4.0\n329,530,4.5\n329,531,5.0\n329,532,5.5\n329,533,6.0\n329,534,6.5\n329,535,7.0\n329,536,7.5\n329,537,8.0\n329,538,8.5\n329,539,9.0\n329,540,9.5\n329,541,10.0\n329,542,10.5\n329,543,11.0\n329,544,11.5\n329,545,12.0\n329,546,12.5\n329,547,13.0\n329,548,13.5\n329,549,14.0\n329,550,6.5\n329,551,6.0\n329,552,5.5\n329,553,5.0\n329,554,4.5\n329,555,5.0\n329,556,5.5\n329,557,6.0\n329,558,6.5\n329,559,7.0\n329,560,7.5\n329,561,8.0\n329,562,8.5\n329,563,9.0\n329,564,9.5\n329,565,10.0\n329,566,10.5\n329,567,11.0\n329,568,11.5\n329,569,12.0\n329,570,12.5\n329,571,13.0\n329,572,13.5\n329,573,14.0\n329,574,14.5\n329,575,7.0\n329,576,6.5\n329,577,6.0\n329,578,5.5\n329,579,5.0\n329,580,5.5\n329,581,6.0\n329,582,6.5\n329,583,7.0\n329,584,7.5\n329,585,8.0\n329,586,8.5\n329,587,9.0\n329,588,9.5\n329,589,10.0\n329,590,10.5\n329,591,11.0\n329,592,11.5\n329,593,12.0\n329,594,12.5\n329,595,13.0\n329,596,13.5\n329,597,14.0\n329,598,14.5\n329,599,15.0\n329,600,7.5\n329,601,7.0\n329,602,6.5\n329,603,6.0\n329,604,5.5\n329,605,6.0\n329,606,6.5\n329,607,7.0\n329,608,7.5\n329,609,8.0\n329,610,8.5\n329,611,9.0\n329,612,9.5\n329,613,10.0\n329,614,10.5\n329,615,11.0\n329,616,11.5\n329,617,12.0\n329,618,12.5\n329,619,13.0\n329,620,13.5\n329,621,14.0\n329,622,14.5\n329,623,15.0\n329,624,15.5\n330,0,9.0\n330,1,8.5\n330,2,8.0\n330,3,7.5\n330,4,7.0\n330,5,6.5\n330,6,7.0\n330,7,7.5\n330,8,8.0\n330,9,8.5\n330,10,9.0\n330,11,9.5\n330,12,10.0\n330,13,10.5\n330,14,11.0\n330,15,11.5\n330,16,12.0\n330,17,12.5\n330,18,13.0\n330,19,13.5\n330,20,14.0\n330,21,14.5\n330,22,15.0\n330,23,15.5\n330,24,16.0\n330,25,8.5\n330,26,8.0\n330,27,7.5\n330,28,7.0\n330,29,6.5\n330,30,6.0\n330,31,6.5\n330,32,7.0\n330,33,7.5\n330,34,8.0\n330,35,8.5\n330,36,9.0\n330,37,9.5\n330,38,10.0\n330,39,10.5\n330,40,11.0\n330,41,11.5\n330,42,12.0\n330,43,12.5\n330,44,13.0\n330,45,13.5\n330,46,14.0\n330,47,14.5\n330,48,15.0\n330,49,15.5\n330,50,8.0\n330,51,7.5\n330,52,7.0\n330,53,6.5\n330,54,6.0\n330,55,5.5\n330,56,6.0\n330,57,6.5\n330,58,7.0\n330,59,7.5\n330,60,8.0\n330,61,8.5\n330,62,9.0\n330,63,9.5\n330,64,10.0\n330,65,10.5\n330,66,11.0\n330,67,11.5\n330,68,12.0\n330,69,12.5\n330,70,13.0\n330,71,13.5\n330,72,14.0\n330,73,14.5\n330,74,15.0\n330,75,7.5\n330,76,7.0\n330,77,6.5\n330,78,6.0\n330,79,5.5\n330,80,5.0\n330,81,5.5\n330,82,6.0\n330,83,6.5\n330,84,7.0\n330,85,7.5\n330,86,8.0\n330,87,8.5\n330,88,9.0\n330,89,9.5\n330,90,10.0\n330,91,10.5\n330,92,11.0\n330,93,11.5\n330,94,12.0\n330,95,12.5\n330,96,13.0\n330,97,13.5\n330,98,14.0\n330,99,14.5\n330,100,7.0\n330,101,6.5\n330,102,6.0\n330,103,5.5\n330,104,5.0\n330,105,4.5\n330,106,5.0\n330,107,5.5\n330,108,6.0\n330,109,6.5\n330,110,7.0\n330,111,7.5\n330,112,8.0\n330,113,8.5\n330,114,9.0\n330,115,9.5\n330,116,10.0\n330,117,10.5\n330,118,11.0\n330,119,11.5\n330,120,12.0\n330,121,12.5\n330,122,13.0\n330,123,13.5\n330,124,14.0\n330,125,6.5\n330,126,6.0\n330,127,5.5\n330,128,5.0\n330,129,4.5\n330,130,4.0\n330,131,4.5\n330,132,5.0\n330,133,5.5\n330,134,6.0\n330,135,6.5\n330,136,7.0\n330,137,7.5\n330,138,8.0\n330,139,8.5\n330,140,9.0\n330,141,9.5\n330,142,10.0\n330,143,10.5\n330,144,11.0\n330,145,11.5\n330,146,12.0\n330,147,12.5\n330,148,13.0\n330,149,13.5\n330,150,6.0\n330,151,5.5\n330,152,5.0\n330,153,4.5\n330,154,4.0\n330,155,3.5\n330,156,4.0\n330,157,4.5\n330,158,5.0\n330,159,5.5\n330,160,6.0\n330,161,6.5\n330,162,7.0\n330,163,7.5\n330,164,8.0\n330,165,8.5\n330,166,9.0\n330,167,9.5\n330,168,10.0\n330,169,10.5\n330,170,11.0\n330,171,11.5\n330,172,12.0\n330,173,12.5\n330,174,13.0\n330,175,5.5\n330,176,5.0\n330,177,4.5\n330,178,4.0\n330,179,3.5\n330,180,3.0\n330,181,3.5\n330,182,4.0\n330,183,4.5\n330,184,5.0\n330,185,5.5\n330,186,6.0\n330,187,6.5\n330,188,7.0\n330,189,7.5\n330,190,8.0\n330,191,8.5\n330,192,9.0\n330,193,9.5\n330,194,10.0\n330,195,10.5\n330,196,11.0\n330,197,11.5\n330,198,12.0\n330,199,12.5\n330,200,5.0\n330,201,4.5\n330,202,4.0\n330,203,3.5\n330,204,3.0\n330,205,2.5\n330,206,3.0\n330,207,3.5\n330,208,4.0\n330,209,4.5\n330,210,5.0\n330,211,5.5\n330,212,6.0\n330,213,6.5\n330,214,7.0\n330,215,7.5\n330,216,8.0\n330,217,8.5\n330,218,9.0\n330,219,9.5\n330,220,10.0\n330,221,10.5\n330,222,11.0\n330,223,11.5\n330,224,12.0\n330,225,4.5\n330,226,4.0\n330,227,3.5\n330,228,3.0\n330,229,2.5\n330,230,2.0\n330,231,2.5\n330,232,3.0\n330,233,3.5\n330,234,4.0\n330,235,4.5\n330,236,5.0\n330,237,5.5\n330,238,6.0\n330,239,6.5\n330,240,7.0\n330,241,7.5\n330,242,8.0\n330,243,8.5\n330,244,9.0\n330,245,9.5\n330,246,10.0\n330,247,10.5\n330,248,11.0\n330,249,11.5\n330,250,4.0\n330,251,3.5\n330,252,3.0\n330,253,2.5\n330,254,2.0\n330,255,1.5\n330,256,2.0\n330,257,2.5\n330,258,3.0\n330,259,3.5\n330,260,4.0\n330,261,4.5\n330,262,5.0\n330,263,5.5\n330,264,6.0\n330,265,6.5\n330,266,7.0\n330,267,7.5\n330,268,8.0\n330,269,8.5\n330,270,9.0\n330,271,9.5\n330,272,10.0\n330,273,10.5\n330,274,11.0\n330,275,3.5\n330,276,3.0\n330,277,2.5\n330,278,2.0\n330,279,1.5\n330,280,1.0\n330,281,1.5\n330,282,2.0\n330,283,2.5\n330,284,3.0\n330,285,3.5\n330,286,4.0\n330,287,4.5\n330,288,5.0\n330,289,5.5\n330,290,6.0\n330,291,6.5\n330,292,7.0\n330,293,7.5\n330,294,8.0\n330,295,8.5\n330,296,9.0\n330,297,9.5\n330,298,10.0\n330,299,10.5\n330,300,3.0\n330,301,2.5\n330,302,2.0\n330,303,1.5\n330,304,1.0\n330,305,0.5\n330,306,1.0\n330,307,1.5\n330,308,2.0\n330,309,2.5\n330,310,3.0\n330,311,3.5\n330,312,4.0\n330,313,4.5\n330,314,5.0\n330,315,5.5\n330,316,6.0\n330,317,6.5\n330,318,7.0\n330,319,7.5\n330,320,8.0\n330,321,8.5\n330,322,9.0\n330,323,9.5\n330,324,10.0\n330,325,2.5\n330,326,2.0\n330,327,1.5\n330,328,1.0\n330,329,0.5\n330,330,0\n330,331,0.5\n330,332,1.0\n330,333,1.5\n330,334,2.0\n330,335,2.5\n330,336,3.0\n330,337,3.5\n330,338,4.0\n330,339,4.5\n330,340,5.0\n330,341,5.5\n330,342,6.0\n330,343,6.5\n330,344,7.0\n330,345,7.5\n330,346,8.0\n330,347,8.5\n330,348,9.0\n330,349,9.5\n330,350,3.0\n330,351,2.5\n330,352,2.0\n330,353,1.5\n330,354,1.0\n330,355,0.5\n330,356,1.0\n330,357,1.5\n330,358,2.0\n330,359,2.5\n330,360,3.0\n330,361,3.5\n330,362,4.0\n330,363,4.5\n330,364,5.0\n330,365,5.5\n330,366,6.0\n330,367,6.5\n330,368,7.0\n330,369,7.5\n330,370,8.0\n330,371,8.5\n330,372,9.0\n330,373,9.5\n330,374,10.0\n330,375,3.5\n330,376,3.0\n330,377,2.5\n330,378,2.0\n330,379,1.5\n330,380,1.0\n330,381,1.5\n330,382,2.0\n330,383,2.5\n330,384,3.0\n330,385,3.5\n330,386,4.0\n330,387,4.5\n330,388,5.0\n330,389,5.5\n330,390,6.0\n330,391,6.5\n330,392,7.0\n330,393,7.5\n330,394,8.0\n330,395,8.5\n330,396,9.0\n330,397,9.5\n330,398,10.0\n330,399,10.5\n330,400,4.0\n330,401,3.5\n330,402,3.0\n330,403,2.5\n330,404,2.0\n330,405,1.5\n330,406,2.0\n330,407,2.5\n330,408,3.0\n330,409,3.5\n330,410,4.0\n330,411,4.5\n330,412,5.0\n330,413,5.5\n330,414,6.0\n330,415,6.5\n330,416,7.0\n330,417,7.5\n330,418,8.0\n330,419,8.5\n330,420,9.0\n330,421,9.5\n330,422,10.0\n330,423,10.5\n330,424,11.0\n330,425,4.5\n330,426,4.0\n330,427,3.5\n330,428,3.0\n330,429,2.5\n330,430,2.0\n330,431,2.5\n330,432,3.0\n330,433,3.5\n330,434,4.0\n330,435,4.5\n330,436,5.0\n330,437,5.5\n330,438,6.0\n330,439,6.5\n330,440,7.0\n330,441,7.5\n330,442,8.0\n330,443,8.5\n330,444,9.0\n330,445,9.5\n330,446,10.0\n330,447,10.5\n330,448,11.0\n330,449,11.5\n330,450,5.0\n330,451,4.5\n330,452,4.0\n330,453,3.5\n330,454,3.0\n330,455,2.5\n330,456,3.0\n330,457,3.5\n330,458,4.0\n330,459,4.5\n330,460,5.0\n330,461,5.5\n330,462,6.0\n330,463,6.5\n330,464,7.0\n330,465,7.5\n330,466,8.0\n330,467,8.5\n330,468,9.0\n330,469,9.5\n330,470,10.0\n330,471,10.5\n330,472,11.0\n330,473,11.5\n330,474,12.0\n330,475,5.5\n330,476,5.0\n330,477,4.5\n330,478,4.0\n330,479,3.5\n330,480,3.0\n330,481,3.5\n330,482,4.0\n330,483,4.5\n330,484,5.0\n330,485,5.5\n330,486,6.0\n330,487,6.5\n330,488,7.0\n330,489,7.5\n330,490,8.0\n330,491,8.5\n330,492,9.0\n330,493,9.5\n330,494,10.0\n330,495,10.5\n330,496,11.0\n330,497,11.5\n330,498,12.0\n330,499,12.5\n330,500,6.0\n330,501,5.5\n330,502,5.0\n330,503,4.5\n330,504,4.0\n330,505,3.5\n330,506,4.0\n330,507,4.5\n330,508,5.0\n330,509,5.5\n330,510,6.0\n330,511,6.5\n330,512,7.0\n330,513,7.5\n330,514,8.0\n330,515,8.5\n330,516,9.0\n330,517,9.5\n330,518,10.0\n330,519,10.5\n330,520,11.0\n330,521,11.5\n330,522,12.0\n330,523,12.5\n330,524,13.0\n330,525,6.5\n330,526,6.0\n330,527,5.5\n330,528,5.0\n330,529,4.5\n330,530,4.0\n330,531,4.5\n330,532,5.0\n330,533,5.5\n330,534,6.0\n330,535,6.5\n330,536,7.0\n330,537,7.5\n330,538,8.0\n330,539,8.5\n330,540,9.0\n330,541,9.5\n330,542,10.0\n330,543,10.5\n330,544,11.0\n330,545,11.5\n330,546,12.0\n330,547,12.5\n330,548,13.0\n330,549,13.5\n330,550,7.0\n330,551,6.5\n330,552,6.0\n330,553,5.5\n330,554,5.0\n330,555,4.5\n330,556,5.0\n330,557,5.5\n330,558,6.0\n330,559,6.5\n330,560,7.0\n330,561,7.5\n330,562,8.0\n330,563,8.5\n330,564,9.0\n330,565,9.5\n330,566,10.0\n330,567,10.5\n330,568,11.0\n330,569,11.5\n330,570,12.0\n330,571,12.5\n330,572,13.0\n330,573,13.5\n330,574,14.0\n330,575,7.5\n330,576,7.0\n330,577,6.5\n330,578,6.0\n330,579,5.5\n330,580,5.0\n330,581,5.5\n330,582,6.0\n330,583,6.5\n330,584,7.0\n330,585,7.5\n330,586,8.0\n330,587,8.5\n330,588,9.0\n330,589,9.5\n330,590,10.0\n330,591,10.5\n330,592,11.0\n330,593,11.5\n330,594,12.0\n330,595,12.5\n330,596,13.0\n330,597,13.5\n330,598,14.0\n330,599,14.5\n330,600,8.0\n330,601,7.5\n330,602,7.0\n330,603,6.5\n330,604,6.0\n330,605,5.5\n330,606,6.0\n330,607,6.5\n330,608,7.0\n330,609,7.5\n330,610,8.0\n330,611,8.5\n330,612,9.0\n330,613,9.5\n330,614,10.0\n330,615,10.5\n330,616,11.0\n330,617,11.5\n330,618,12.0\n330,619,12.5\n330,620,13.0\n330,621,13.5\n330,622,14.0\n330,623,14.5\n330,624,15.0\n331,0,9.5\n331,1,9.0\n331,2,8.5\n331,3,8.0\n331,4,7.5\n331,5,7.0\n331,6,6.5\n331,7,7.0\n331,8,7.5\n331,9,8.0\n331,10,8.5\n331,11,9.0\n331,12,9.5\n331,13,10.0\n331,14,10.5\n331,15,11.0\n331,16,11.5\n331,17,12.0\n331,18,12.5\n331,19,13.0\n331,20,13.5\n331,21,14.0\n331,22,14.5\n331,23,15.0\n331,24,15.5\n331,25,9.0\n331,26,8.5\n331,27,8.0\n331,28,7.5\n331,29,7.0\n331,30,6.5\n331,31,6.0\n331,32,6.5\n331,33,7.0\n331,34,7.5\n331,35,8.0\n331,36,8.5\n331,37,9.0\n331,38,9.5\n331,39,10.0\n331,40,10.5\n331,41,11.0\n331,42,11.5\n331,43,12.0\n331,44,12.5\n331,45,13.0\n331,46,13.5\n331,47,14.0\n331,48,14.5\n331,49,15.0\n331,50,8.5\n331,51,8.0\n331,52,7.5\n331,53,7.0\n331,54,6.5\n331,55,6.0\n331,56,5.5\n331,57,6.0\n331,58,6.5\n331,59,7.0\n331,60,7.5\n331,61,8.0\n331,62,8.5\n331,63,9.0\n331,64,9.5\n331,65,10.0\n331,66,10.5\n331,67,11.0\n331,68,11.5\n331,69,12.0\n331,70,12.5\n331,71,13.0\n331,72,13.5\n331,73,14.0\n331,74,14.5\n331,75,8.0\n331,76,7.5\n331,77,7.0\n331,78,6.5\n331,79,6.0\n331,80,5.5\n331,81,5.0\n331,82,5.5\n331,83,6.0\n331,84,6.5\n331,85,7.0\n331,86,7.5\n331,87,8.0\n331,88,8.5\n331,89,9.0\n331,90,9.5\n331,91,10.0\n331,92,10.5\n331,93,11.0\n331,94,11.5\n331,95,12.0\n331,96,12.5\n331,97,13.0\n331,98,13.5\n331,99,14.0\n331,100,7.5\n331,101,7.0\n331,102,6.5\n331,103,6.0\n331,104,5.5\n331,105,5.0\n331,106,4.5\n331,107,5.0\n331,108,5.5\n331,109,6.0\n331,110,6.5\n331,111,7.0\n331,112,7.5\n331,113,8.0\n331,114,8.5\n331,115,9.0\n331,116,9.5\n331,117,10.0\n331,118,10.5\n331,119,11.0\n331,120,11.5\n331,121,12.0\n331,122,12.5\n331,123,13.0\n331,124,13.5\n331,125,7.0\n331,126,6.5\n331,127,6.0\n331,128,5.5\n331,129,5.0\n331,130,4.5\n331,131,4.0\n331,132,4.5\n331,133,5.0\n331,134,5.5\n331,135,6.0\n331,136,6.5\n331,137,7.0\n331,138,7.5\n331,139,8.0\n331,140,8.5\n331,141,9.0\n331,142,9.5\n331,143,10.0\n331,144,10.5\n331,145,11.0\n331,146,11.5\n331,147,12.0\n331,148,12.5\n331,149,13.0\n331,150,6.5\n331,151,6.0\n331,152,5.5\n331,153,5.0\n331,154,4.5\n331,155,4.0\n331,156,3.5\n331,157,4.0\n331,158,4.5\n331,159,5.0\n331,160,5.5\n331,161,6.0\n331,162,6.5\n331,163,7.0\n331,164,7.5\n331,165,8.0\n331,166,8.5\n331,167,9.0\n331,168,9.5\n331,169,10.0\n331,170,10.5\n331,171,11.0\n331,172,11.5\n331,173,12.0\n331,174,12.5\n331,175,6.0\n331,176,5.5\n331,177,5.0\n331,178,4.5\n331,179,4.0\n331,180,3.5\n331,181,3.0\n331,182,3.5\n331,183,4.0\n331,184,4.5\n331,185,5.0\n331,186,5.5\n331,187,6.0\n331,188,6.5\n331,189,7.0\n331,190,7.5\n331,191,8.0\n331,192,8.5\n331,193,9.0\n331,194,9.5\n331,195,10.0\n331,196,10.5\n331,197,11.0\n331,198,11.5\n331,199,12.0\n331,200,5.5\n331,201,5.0\n331,202,4.5\n331,203,4.0\n331,204,3.5\n331,205,3.0\n331,206,2.5\n331,207,3.0\n331,208,3.5\n331,209,4.0\n331,210,4.5\n331,211,5.0\n331,212,5.5\n331,213,6.0\n331,214,6.5\n331,215,7.0\n331,216,7.5\n331,217,8.0\n331,218,8.5\n331,219,9.0\n331,220,9.5\n331,221,10.0\n331,222,10.5\n331,223,11.0\n331,224,11.5\n331,225,5.0\n331,226,4.5\n331,227,4.0\n331,228,3.5\n331,229,3.0\n331,230,2.5\n331,231,2.0\n331,232,2.5\n331,233,3.0\n331,234,3.5\n331,235,4.0\n331,236,4.5\n331,237,5.0\n331,238,5.5\n331,239,6.0\n331,240,6.5\n331,241,7.0\n331,242,7.5\n331,243,8.0\n331,244,8.5\n331,245,9.0\n331,246,9.5\n331,247,10.0\n331,248,10.5\n331,249,11.0\n331,250,4.5\n331,251,4.0\n331,252,3.5\n331,253,3.0\n331,254,2.5\n331,255,2.0\n331,256,1.5\n331,257,2.0\n331,258,2.5\n331,259,3.0\n331,260,3.5\n331,261,4.0\n331,262,4.5\n331,263,5.0\n331,264,5.5\n331,265,6.0\n331,266,6.5\n331,267,7.0\n331,268,7.5\n331,269,8.0\n331,270,8.5\n331,271,9.0\n331,272,9.5\n331,273,10.0\n331,274,10.5\n331,275,4.0\n331,276,3.5\n331,277,3.0\n331,278,2.5\n331,279,2.0\n331,280,1.5\n331,281,1.0\n331,282,1.5\n331,283,2.0\n331,284,2.5\n331,285,3.0\n331,286,3.5\n331,287,4.0\n331,288,4.5\n331,289,5.0\n331,290,5.5\n331,291,6.0\n331,292,6.5\n331,293,7.0\n331,294,7.5\n331,295,8.0\n331,296,8.5\n331,297,9.0\n331,298,9.5\n331,299,10.0\n331,300,3.5\n331,301,3.0\n331,302,2.5\n331,303,2.0\n331,304,1.5\n331,305,1.0\n331,306,0.5\n331,307,1.0\n331,308,1.5\n331,309,2.0\n331,310,2.5\n331,311,3.0\n331,312,3.5\n331,313,4.0\n331,314,4.5\n331,315,5.0\n331,316,5.5\n331,317,6.0\n331,318,6.5\n331,319,7.0\n331,320,7.5\n331,321,8.0\n331,322,8.5\n331,323,9.0\n331,324,9.5\n331,325,3.0\n331,326,2.5\n331,327,2.0\n331,328,1.5\n331,329,1.0\n331,330,0.5\n331,331,0\n331,332,0.5\n331,333,1.0\n331,334,1.5\n331,335,2.0\n331,336,2.5\n331,337,3.0\n331,338,3.5\n331,339,4.0\n331,340,4.5\n331,341,5.0\n331,342,5.5\n331,343,6.0\n331,344,6.5\n331,345,7.0\n331,346,7.5\n331,347,8.0\n331,348,8.5\n331,349,9.0\n331,350,3.5\n331,351,3.0\n331,352,2.5\n331,353,2.0\n331,354,1.5\n331,355,1.0\n331,356,0.5\n331,357,1.0\n331,358,1.5\n331,359,2.0\n331,360,2.5\n331,361,3.0\n331,362,3.5\n331,363,4.0\n331,364,4.5\n331,365,5.0\n331,366,5.5\n331,367,6.0\n331,368,6.5\n331,369,7.0\n331,370,7.5\n331,371,8.0\n331,372,8.5\n331,373,9.0\n331,374,9.5\n331,375,4.0\n331,376,3.5\n331,377,3.0\n331,378,2.5\n331,379,2.0\n331,380,1.5\n331,381,1.0\n331,382,1.5\n331,383,2.0\n331,384,2.5\n331,385,3.0\n331,386,3.5\n331,387,4.0\n331,388,4.5\n331,389,5.0\n331,390,5.5\n331,391,6.0\n331,392,6.5\n331,393,7.0\n331,394,7.5\n331,395,8.0\n331,396,8.5\n331,397,9.0\n331,398,9.5\n331,399,10.0\n331,400,4.5\n331,401,4.0\n331,402,3.5\n331,403,3.0\n331,404,2.5\n331,405,2.0\n331,406,1.5\n331,407,2.0\n331,408,2.5\n331,409,3.0\n331,410,3.5\n331,411,4.0\n331,412,4.5\n331,413,5.0\n331,414,5.5\n331,415,6.0\n331,416,6.5\n331,417,7.0\n331,418,7.5\n331,419,8.0\n331,420,8.5\n331,421,9.0\n331,422,9.5\n331,423,10.0\n331,424,10.5\n331,425,5.0\n331,426,4.5\n331,427,4.0\n331,428,3.5\n331,429,3.0\n331,430,2.5\n331,431,2.0\n331,432,2.5\n331,433,3.0\n331,434,3.5\n331,435,4.0\n331,436,4.5\n331,437,5.0\n331,438,5.5\n331,439,6.0\n331,440,6.5\n331,441,7.0\n331,442,7.5\n331,443,8.0\n331,444,8.5\n331,445,9.0\n331,446,9.5\n331,447,10.0\n331,448,10.5\n331,449,11.0\n331,450,5.5\n331,451,5.0\n331,452,4.5\n331,453,4.0\n331,454,3.5\n331,455,3.0\n331,456,2.5\n331,457,3.0\n331,458,3.5\n331,459,4.0\n331,460,4.5\n331,461,5.0\n331,462,5.5\n331,463,6.0\n331,464,6.5\n331,465,7.0\n331,466,7.5\n331,467,8.0\n331,468,8.5\n331,469,9.0\n331,470,9.5\n331,471,10.0\n331,472,10.5\n331,473,11.0\n331,474,11.5\n331,475,6.0\n331,476,5.5\n331,477,5.0\n331,478,4.5\n331,479,4.0\n331,480,3.5\n331,481,3.0\n331,482,3.5\n331,483,4.0\n331,484,4.5\n331,485,5.0\n331,486,5.5\n331,487,6.0\n331,488,6.5\n331,489,7.0\n331,490,7.5\n331,491,8.0\n331,492,8.5\n331,493,9.0\n331,494,9.5\n331,495,10.0\n331,496,10.5\n331,497,11.0\n331,498,11.5\n331,499,12.0\n331,500,6.5\n331,501,6.0\n331,502,5.5\n331,503,5.0\n331,504,4.5\n331,505,4.0\n331,506,3.5\n331,507,4.0\n331,508,4.5\n331,509,5.0\n331,510,5.5\n331,511,6.0\n331,512,6.5\n331,513,7.0\n331,514,7.5\n331,515,8.0\n331,516,8.5\n331,517,9.0\n331,518,9.5\n331,519,10.0\n331,520,10.5\n331,521,11.0\n331,522,11.5\n331,523,12.0\n331,524,12.5\n331,525,7.0\n331,526,6.5\n331,527,6.0\n331,528,5.5\n331,529,5.0\n331,530,4.5\n331,531,4.0\n331,532,4.5\n331,533,5.0\n331,534,5.5\n331,535,6.0\n331,536,6.5\n331,537,7.0\n331,538,7.5\n331,539,8.0\n331,540,8.5\n331,541,9.0\n331,542,9.5\n331,543,10.0\n331,544,10.5\n331,545,11.0\n331,546,11.5\n331,547,12.0\n331,548,12.5\n331,549,13.0\n331,550,7.5\n331,551,7.0\n331,552,6.5\n331,553,6.0\n331,554,5.5\n331,555,5.0\n331,556,4.5\n331,557,5.0\n331,558,5.5\n331,559,6.0\n331,560,6.5\n331,561,7.0\n331,562,7.5\n331,563,8.0\n331,564,8.5\n331,565,9.0\n331,566,9.5\n331,567,10.0\n331,568,10.5\n331,569,11.0\n331,570,11.5\n331,571,12.0\n331,572,12.5\n331,573,13.0\n331,574,13.5\n331,575,8.0\n331,576,7.5\n331,577,7.0\n331,578,6.5\n331,579,6.0\n331,580,5.5\n331,581,5.0\n331,582,5.5\n331,583,6.0\n331,584,6.5\n331,585,7.0\n331,586,7.5\n331,587,8.0\n331,588,8.5\n331,589,9.0\n331,590,9.5\n331,591,10.0\n331,592,10.5\n331,593,11.0\n331,594,11.5\n331,595,12.0\n331,596,12.5\n331,597,13.0\n331,598,13.5\n331,599,14.0\n331,600,8.5\n331,601,8.0\n331,602,7.5\n331,603,7.0\n331,604,6.5\n331,605,6.0\n331,606,5.5\n331,607,6.0\n331,608,6.5\n331,609,7.0\n331,610,7.5\n331,611,8.0\n331,612,8.5\n331,613,9.0\n331,614,9.5\n331,615,10.0\n331,616,10.5\n331,617,11.0\n331,618,11.5\n331,619,12.0\n331,620,12.5\n331,621,13.0\n331,622,13.5\n331,623,14.0\n331,624,14.5\n332,0,10.0\n332,1,9.5\n332,2,9.0\n332,3,8.5\n332,4,8.0\n332,5,7.5\n332,6,7.0\n332,7,6.5\n332,8,7.0\n332,9,7.5\n332,10,8.0\n332,11,8.5\n332,12,9.0\n332,13,9.5\n332,14,10.0\n332,15,10.5\n332,16,11.0\n332,17,11.5\n332,18,12.0\n332,19,12.5\n332,20,13.0\n332,21,13.5\n332,22,14.0\n332,23,14.5\n332,24,15.0\n332,25,9.5\n332,26,9.0\n332,27,8.5\n332,28,8.0\n332,29,7.5\n332,30,7.0\n332,31,6.5\n332,32,6.0\n332,33,6.5\n332,34,7.0\n332,35,7.5\n332,36,8.0\n332,37,8.5\n332,38,9.0\n332,39,9.5\n332,40,10.0\n332,41,10.5\n332,42,11.0\n332,43,11.5\n332,44,12.0\n332,45,12.5\n332,46,13.0\n332,47,13.5\n332,48,14.0\n332,49,14.5\n332,50,9.0\n332,51,8.5\n332,52,8.0\n332,53,7.5\n332,54,7.0\n332,55,6.5\n332,56,6.0\n332,57,5.5\n332,58,6.0\n332,59,6.5\n332,60,7.0\n332,61,7.5\n332,62,8.0\n332,63,8.5\n332,64,9.0\n332,65,9.5\n332,66,10.0\n332,67,10.5\n332,68,11.0\n332,69,11.5\n332,70,12.0\n332,71,12.5\n332,72,13.0\n332,73,13.5\n332,74,14.0\n332,75,8.5\n332,76,8.0\n332,77,7.5\n332,78,7.0\n332,79,6.5\n332,80,6.0\n332,81,5.5\n332,82,5.0\n332,83,5.5\n332,84,6.0\n332,85,6.5\n332,86,7.0\n332,87,7.5\n332,88,8.0\n332,89,8.5\n332,90,9.0\n332,91,9.5\n332,92,10.0\n332,93,10.5\n332,94,11.0\n332,95,11.5\n332,96,12.0\n332,97,12.5\n332,98,13.0\n332,99,13.5\n332,100,8.0\n332,101,7.5\n332,102,7.0\n332,103,6.5\n332,104,6.0\n332,105,5.5\n332,106,5.0\n332,107,4.5\n332,108,5.0\n332,109,5.5\n332,110,6.0\n332,111,6.5\n332,112,7.0\n332,113,7.5\n332,114,8.0\n332,115,8.5\n332,116,9.0\n332,117,9.5\n332,118,10.0\n332,119,10.5\n332,120,11.0\n332,121,11.5\n332,122,12.0\n332,123,12.5\n332,124,13.0\n332,125,7.5\n332,126,7.0\n332,127,6.5\n332,128,6.0\n332,129,5.5\n332,130,5.0\n332,131,4.5\n332,132,4.0\n332,133,4.5\n332,134,5.0\n332,135,5.5\n332,136,6.0\n332,137,6.5\n332,138,7.0\n332,139,7.5\n332,140,8.0\n332,141,8.5\n332,142,9.0\n332,143,9.5\n332,144,10.0\n332,145,10.5\n332,146,11.0\n332,147,11.5\n332,148,12.0\n332,149,12.5\n332,150,7.0\n332,151,6.5\n332,152,6.0\n332,153,5.5\n332,154,5.0\n332,155,4.5\n332,156,4.0\n332,157,3.5\n332,158,4.0\n332,159,4.5\n332,160,5.0\n332,161,5.5\n332,162,6.0\n332,163,6.5\n332,164,7.0\n332,165,7.5\n332,166,8.0\n332,167,8.5\n332,168,9.0\n332,169,9.5\n332,170,10.0\n332,171,10.5\n332,172,11.0\n332,173,11.5\n332,174,12.0\n332,175,6.5\n332,176,6.0\n332,177,5.5\n332,178,5.0\n332,179,4.5\n332,180,4.0\n332,181,3.5\n332,182,3.0\n332,183,3.5\n332,184,4.0\n332,185,4.5\n332,186,5.0\n332,187,5.5\n332,188,6.0\n332,189,6.5\n332,190,7.0\n332,191,7.5\n332,192,8.0\n332,193,8.5\n332,194,9.0\n332,195,9.5\n332,196,10.0\n332,197,10.5\n332,198,11.0\n332,199,11.5\n332,200,6.0\n332,201,5.5\n332,202,5.0\n332,203,4.5\n332,204,4.0\n332,205,3.5\n332,206,3.0\n332,207,2.5\n332,208,3.0\n332,209,3.5\n332,210,4.0\n332,211,4.5\n332,212,5.0\n332,213,5.5\n332,214,6.0\n332,215,6.5\n332,216,7.0\n332,217,7.5\n332,218,8.0\n332,219,8.5\n332,220,9.0\n332,221,9.5\n332,222,10.0\n332,223,10.5\n332,224,11.0\n332,225,5.5\n332,226,5.0\n332,227,4.5\n332,228,4.0\n332,229,3.5\n332,230,3.0\n332,231,2.5\n332,232,2.0\n332,233,2.5\n332,234,3.0\n332,235,3.5\n332,236,4.0\n332,237,4.5\n332,238,5.0\n332,239,5.5\n332,240,6.0\n332,241,6.5\n332,242,7.0\n332,243,7.5\n332,244,8.0\n332,245,8.5\n332,246,9.0\n332,247,9.5\n332,248,10.0\n332,249,10.5\n332,250,5.0\n332,251,4.5\n332,252,4.0\n332,253,3.5\n332,254,3.0\n332,255,2.5\n332,256,2.0\n332,257,1.5\n332,258,2.0\n332,259,2.5\n332,260,3.0\n332,261,3.5\n332,262,4.0\n332,263,4.5\n332,264,5.0\n332,265,5.5\n332,266,6.0\n332,267,6.5\n332,268,7.0\n332,269,7.5\n332,270,8.0\n332,271,8.5\n332,272,9.0\n332,273,9.5\n332,274,10.0\n332,275,4.5\n332,276,4.0\n332,277,3.5\n332,278,3.0\n332,279,2.5\n332,280,2.0\n332,281,1.5\n332,282,1.0\n332,283,1.5\n332,284,2.0\n332,285,2.5\n332,286,3.0\n332,287,3.5\n332,288,4.0\n332,289,4.5\n332,290,5.0\n332,291,5.5\n332,292,6.0\n332,293,6.5\n332,294,7.0\n332,295,7.5\n332,296,8.0\n332,297,8.5\n332,298,9.0\n332,299,9.5\n332,300,4.0\n332,301,3.5\n332,302,3.0\n332,303,2.5\n332,304,2.0\n332,305,1.5\n332,306,1.0\n332,307,0.5\n332,308,1.0\n332,309,1.5\n332,310,2.0\n332,311,2.5\n332,312,3.0\n332,313,3.5\n332,314,4.0\n332,315,4.5\n332,316,5.0\n332,317,5.5\n332,318,6.0\n332,319,6.5\n332,320,7.0\n332,321,7.5\n332,322,8.0\n332,323,8.5\n332,324,9.0\n332,325,3.5\n332,326,3.0\n332,327,2.5\n332,328,2.0\n332,329,1.5\n332,330,1.0\n332,331,0.5\n332,332,0\n332,333,0.5\n332,334,1.0\n332,335,1.5\n332,336,2.0\n332,337,2.5\n332,338,3.0\n332,339,3.5\n332,340,4.0\n332,341,4.5\n332,342,5.0\n332,343,5.5\n332,344,6.0\n332,345,6.5\n332,346,7.0\n332,347,7.5\n332,348,8.0\n332,349,8.5\n332,350,4.0\n332,351,3.5\n332,352,3.0\n332,353,2.5\n332,354,2.0\n332,355,1.5\n332,356,1.0\n332,357,0.5\n332,358,1.0\n332,359,1.5\n332,360,2.0\n332,361,2.5\n332,362,3.0\n332,363,3.5\n332,364,4.0\n332,365,4.5\n332,366,5.0\n332,367,5.5\n332,368,6.0\n332,369,6.5\n332,370,7.0\n332,371,7.5\n332,372,8.0\n332,373,8.5\n332,374,9.0\n332,375,4.5\n332,376,4.0\n332,377,3.5\n332,378,3.0\n332,379,2.5\n332,380,2.0\n332,381,1.5\n332,382,1.0\n332,383,1.5\n332,384,2.0\n332,385,2.5\n332,386,3.0\n332,387,3.5\n332,388,4.0\n332,389,4.5\n332,390,5.0\n332,391,5.5\n332,392,6.0\n332,393,6.5\n332,394,7.0\n332,395,7.5\n332,396,8.0\n332,397,8.5\n332,398,9.0\n332,399,9.5\n332,400,5.0\n332,401,4.5\n332,402,4.0\n332,403,3.5\n332,404,3.0\n332,405,2.5\n332,406,2.0\n332,407,1.5\n332,408,2.0\n332,409,2.5\n332,410,3.0\n332,411,3.5\n332,412,4.0\n332,413,4.5\n332,414,5.0\n332,415,5.5\n332,416,6.0\n332,417,6.5\n332,418,7.0\n332,419,7.5\n332,420,8.0\n332,421,8.5\n332,422,9.0\n332,423,9.5\n332,424,10.0\n332,425,5.5\n332,426,5.0\n332,427,4.5\n332,428,4.0\n332,429,3.5\n332,430,3.0\n332,431,2.5\n332,432,2.0\n332,433,2.5\n332,434,3.0\n332,435,3.5\n332,436,4.0\n332,437,4.5\n332,438,5.0\n332,439,5.5\n332,440,6.0\n332,441,6.5\n332,442,7.0\n332,443,7.5\n332,444,8.0\n332,445,8.5\n332,446,9.0\n332,447,9.5\n332,448,10.0\n332,449,10.5\n332,450,6.0\n332,451,5.5\n332,452,5.0\n332,453,4.5\n332,454,4.0\n332,455,3.5\n332,456,3.0\n332,457,2.5\n332,458,3.0\n332,459,3.5\n332,460,4.0\n332,461,4.5\n332,462,5.0\n332,463,5.5\n332,464,6.0\n332,465,6.5\n332,466,7.0\n332,467,7.5\n332,468,8.0\n332,469,8.5\n332,470,9.0\n332,471,9.5\n332,472,10.0\n332,473,10.5\n332,474,11.0\n332,475,6.5\n332,476,6.0\n332,477,5.5\n332,478,5.0\n332,479,4.5\n332,480,4.0\n332,481,3.5\n332,482,3.0\n332,483,3.5\n332,484,4.0\n332,485,4.5\n332,486,5.0\n332,487,5.5\n332,488,6.0\n332,489,6.5\n332,490,7.0\n332,491,7.5\n332,492,8.0\n332,493,8.5\n332,494,9.0\n332,495,9.5\n332,496,10.0\n332,497,10.5\n332,498,11.0\n332,499,11.5\n332,500,7.0\n332,501,6.5\n332,502,6.0\n332,503,5.5\n332,504,5.0\n332,505,4.5\n332,506,4.0\n332,507,3.5\n332,508,4.0\n332,509,4.5\n332,510,5.0\n332,511,5.5\n332,512,6.0\n332,513,6.5\n332,514,7.0\n332,515,7.5\n332,516,8.0\n332,517,8.5\n332,518,9.0\n332,519,9.5\n332,520,10.0\n332,521,10.5\n332,522,11.0\n332,523,11.5\n332,524,12.0\n332,525,7.5\n332,526,7.0\n332,527,6.5\n332,528,6.0\n332,529,5.5\n332,530,5.0\n332,531,4.5\n332,532,4.0\n332,533,4.5\n332,534,5.0\n332,535,5.5\n332,536,6.0\n332,537,6.5\n332,538,7.0\n332,539,7.5\n332,540,8.0\n332,541,8.5\n332,542,9.0\n332,543,9.5\n332,544,10.0\n332,545,10.5\n332,546,11.0\n332,547,11.5\n332,548,12.0\n332,549,12.5\n332,550,8.0\n332,551,7.5\n332,552,7.0\n332,553,6.5\n332,554,6.0\n332,555,5.5\n332,556,5.0\n332,557,4.5\n332,558,5.0\n332,559,5.5\n332,560,6.0\n332,561,6.5\n332,562,7.0\n332,563,7.5\n332,564,8.0\n332,565,8.5\n332,566,9.0\n332,567,9.5\n332,568,10.0\n332,569,10.5\n332,570,11.0\n332,571,11.5\n332,572,12.0\n332,573,12.5\n332,574,13.0\n332,575,8.5\n332,576,8.0\n332,577,7.5\n332,578,7.0\n332,579,6.5\n332,580,6.0\n332,581,5.5\n332,582,5.0\n332,583,5.5\n332,584,6.0\n332,585,6.5\n332,586,7.0\n332,587,7.5\n332,588,8.0\n332,589,8.5\n332,590,9.0\n332,591,9.5\n332,592,10.0\n332,593,10.5\n332,594,11.0\n332,595,11.5\n332,596,12.0\n332,597,12.5\n332,598,13.0\n332,599,13.5\n332,600,9.0\n332,601,8.5\n332,602,8.0\n332,603,7.5\n332,604,7.0\n332,605,6.5\n332,606,6.0\n332,607,5.5\n332,608,6.0\n332,609,6.5\n332,610,7.0\n332,611,7.5\n332,612,8.0\n332,613,8.5\n332,614,9.0\n332,615,9.5\n332,616,10.0\n332,617,10.5\n332,618,11.0\n332,619,11.5\n332,620,12.0\n332,621,12.5\n332,622,13.0\n332,623,13.5\n332,624,14.0\n333,0,10.5\n333,1,10.0\n333,2,9.5\n333,3,9.0\n333,4,8.5\n333,5,8.0\n333,6,7.5\n333,7,7.0\n333,8,6.5\n333,9,7.0\n333,10,7.5\n333,11,8.0\n333,12,8.5\n333,13,9.0\n333,14,9.5\n333,15,10.0\n333,16,10.5\n333,17,11.0\n333,18,11.5\n333,19,12.0\n333,20,12.5\n333,21,13.0\n333,22,13.5\n333,23,14.0\n333,24,14.5\n333,25,10.0\n333,26,9.5\n333,27,9.0\n333,28,8.5\n333,29,8.0\n333,30,7.5\n333,31,7.0\n333,32,6.5\n333,33,6.0\n333,34,6.5\n333,35,7.0\n333,36,7.5\n333,37,8.0\n333,38,8.5\n333,39,9.0\n333,40,9.5\n333,41,10.0\n333,42,10.5\n333,43,11.0\n333,44,11.5\n333,45,12.0\n333,46,12.5\n333,47,13.0\n333,48,13.5\n333,49,14.0\n333,50,9.5\n333,51,9.0\n333,52,8.5\n333,53,8.0\n333,54,7.5\n333,55,7.0\n333,56,6.5\n333,57,6.0\n333,58,5.5\n333,59,6.0\n333,60,6.5\n333,61,7.0\n333,62,7.5\n333,63,8.0\n333,64,8.5\n333,65,9.0\n333,66,9.5\n333,67,10.0\n333,68,10.5\n333,69,11.0\n333,70,11.5\n333,71,12.0\n333,72,12.5\n333,73,13.0\n333,74,13.5\n333,75,9.0\n333,76,8.5\n333,77,8.0\n333,78,7.5\n333,79,7.0\n333,80,6.5\n333,81,6.0\n333,82,5.5\n333,83,5.0\n333,84,5.5\n333,85,6.0\n333,86,6.5\n333,87,7.0\n333,88,7.5\n333,89,8.0\n333,90,8.5\n333,91,9.0\n333,92,9.5\n333,93,10.0\n333,94,10.5\n333,95,11.0\n333,96,11.5\n333,97,12.0\n333,98,12.5\n333,99,13.0\n333,100,8.5\n333,101,8.0\n333,102,7.5\n333,103,7.0\n333,104,6.5\n333,105,6.0\n333,106,5.5\n333,107,5.0\n333,108,4.5\n333,109,5.0\n333,110,5.5\n333,111,6.0\n333,112,6.5\n333,113,7.0\n333,114,7.5\n333,115,8.0\n333,116,8.5\n333,117,9.0\n333,118,9.5\n333,119,10.0\n333,120,10.5\n333,121,11.0\n333,122,11.5\n333,123,12.0\n333,124,12.5\n333,125,8.0\n333,126,7.5\n333,127,7.0\n333,128,6.5\n333,129,6.0\n333,130,5.5\n333,131,5.0\n333,132,4.5\n333,133,4.0\n333,134,4.5\n333,135,5.0\n333,136,5.5\n333,137,6.0\n333,138,6.5\n333,139,7.0\n333,140,7.5\n333,141,8.0\n333,142,8.5\n333,143,9.0\n333,144,9.5\n333,145,10.0\n333,146,10.5\n333,147,11.0\n333,148,11.5\n333,149,12.0\n333,150,7.5\n333,151,7.0\n333,152,6.5\n333,153,6.0\n333,154,5.5\n333,155,5.0\n333,156,4.5\n333,157,4.0\n333,158,3.5\n333,159,4.0\n333,160,4.5\n333,161,5.0\n333,162,5.5\n333,163,6.0\n333,164,6.5\n333,165,7.0\n333,166,7.5\n333,167,8.0\n333,168,8.5\n333,169,9.0\n333,170,9.5\n333,171,10.0\n333,172,10.5\n333,173,11.0\n333,174,11.5\n333,175,7.0\n333,176,6.5\n333,177,6.0\n333,178,5.5\n333,179,5.0\n333,180,4.5\n333,181,4.0\n333,182,3.5\n333,183,3.0\n333,184,3.5\n333,185,4.0\n333,186,4.5\n333,187,5.0\n333,188,5.5\n333,189,6.0\n333,190,6.5\n333,191,7.0\n333,192,7.5\n333,193,8.0\n333,194,8.5\n333,195,9.0\n333,196,9.5\n333,197,10.0\n333,198,10.5\n333,199,11.0\n333,200,6.5\n333,201,6.0\n333,202,5.5\n333,203,5.0\n333,204,4.5\n333,205,4.0\n333,206,3.5\n333,207,3.0\n333,208,2.5\n333,209,3.0\n333,210,3.5\n333,211,4.0\n333,212,4.5\n333,213,5.0\n333,214,5.5\n333,215,6.0\n333,216,6.5\n333,217,7.0\n333,218,7.5\n333,219,8.0\n333,220,8.5\n333,221,9.0\n333,222,9.5\n333,223,10.0\n333,224,10.5\n333,225,6.0\n333,226,5.5\n333,227,5.0\n333,228,4.5\n333,229,4.0\n333,230,3.5\n333,231,3.0\n333,232,2.5\n333,233,2.0\n333,234,2.5\n333,235,3.0\n333,236,3.5\n333,237,4.0\n333,238,4.5\n333,239,5.0\n333,240,5.5\n333,241,6.0\n333,242,6.5\n333,243,7.0\n333,244,7.5\n333,245,8.0\n333,246,8.5\n333,247,9.0\n333,248,9.5\n333,249,10.0\n333,250,5.5\n333,251,5.0\n333,252,4.5\n333,253,4.0\n333,254,3.5\n333,255,3.0\n333,256,2.5\n333,257,2.0\n333,258,1.5\n333,259,2.0\n333,260,2.5\n333,261,3.0\n333,262,3.5\n333,263,4.0\n333,264,4.5\n333,265,5.0\n333,266,5.5\n333,267,6.0\n333,268,6.5\n333,269,7.0\n333,270,7.5\n333,271,8.0\n333,272,8.5\n333,273,9.0\n333,274,9.5\n333,275,5.0\n333,276,4.5\n333,277,4.0\n333,278,3.5\n333,279,3.0\n333,280,2.5\n333,281,2.0\n333,282,1.5\n333,283,1.0\n333,284,1.5\n333,285,2.0\n333,286,2.5\n333,287,3.0\n333,288,3.5\n333,289,4.0\n333,290,4.5\n333,291,5.0\n333,292,5.5\n333,293,6.0\n333,294,6.5\n333,295,7.0\n333,296,7.5\n333,297,8.0\n333,298,8.5\n333,299,9.0\n333,300,4.5\n333,301,4.0\n333,302,3.5\n333,303,3.0\n333,304,2.5\n333,305,2.0\n333,306,1.5\n333,307,1.0\n333,308,0.5\n333,309,1.0\n333,310,1.5\n333,311,2.0\n333,312,2.5\n333,313,3.0\n333,314,3.5\n333,315,4.0\n333,316,4.5\n333,317,5.0\n333,318,5.5\n333,319,6.0\n333,320,6.5\n333,321,7.0\n333,322,7.5\n333,323,8.0\n333,324,8.5\n333,325,4.0\n333,326,3.5\n333,327,3.0\n333,328,2.5\n333,329,2.0\n333,330,1.5\n333,331,1.0\n333,332,0.5\n333,333,0\n333,334,0.5\n333,335,1.0\n333,336,1.5\n333,337,2.0\n333,338,2.5\n333,339,3.0\n333,340,3.5\n333,341,4.0\n333,342,4.5\n333,343,5.0\n333,344,5.5\n333,345,6.0\n333,346,6.5\n333,347,7.0\n333,348,7.5\n333,349,8.0\n333,350,4.5\n333,351,4.0\n333,352,3.5\n333,353,3.0\n333,354,2.5\n333,355,2.0\n333,356,1.5\n333,357,1.0\n333,358,0.5\n333,359,1.0\n333,360,1.5\n333,361,2.0\n333,362,2.5\n333,363,3.0\n333,364,3.5\n333,365,4.0\n333,366,4.5\n333,367,5.0\n333,368,5.5\n333,369,6.0\n333,370,6.5\n333,371,7.0\n333,372,7.5\n333,373,8.0\n333,374,8.5\n333,375,5.0\n333,376,4.5\n333,377,4.0\n333,378,3.5\n333,379,3.0\n333,380,2.5\n333,381,2.0\n333,382,1.5\n333,383,1.0\n333,384,1.5\n333,385,2.0\n333,386,2.5\n333,387,3.0\n333,388,3.5\n333,389,4.0\n333,390,4.5\n333,391,5.0\n333,392,5.5\n333,393,6.0\n333,394,6.5\n333,395,7.0\n333,396,7.5\n333,397,8.0\n333,398,8.5\n333,399,9.0\n333,400,5.5\n333,401,5.0\n333,402,4.5\n333,403,4.0\n333,404,3.5\n333,405,3.0\n333,406,2.5\n333,407,2.0\n333,408,1.5\n333,409,2.0\n333,410,2.5\n333,411,3.0\n333,412,3.5\n333,413,4.0\n333,414,4.5\n333,415,5.0\n333,416,5.5\n333,417,6.0\n333,418,6.5\n333,419,7.0\n333,420,7.5\n333,421,8.0\n333,422,8.5\n333,423,9.0\n333,424,9.5\n333,425,6.0\n333,426,5.5\n333,427,5.0\n333,428,4.5\n333,429,4.0\n333,430,3.5\n333,431,3.0\n333,432,2.5\n333,433,2.0\n333,434,2.5\n333,435,3.0\n333,436,3.5\n333,437,4.0\n333,438,4.5\n333,439,5.0\n333,440,5.5\n333,441,6.0\n333,442,6.5\n333,443,7.0\n333,444,7.5\n333,445,8.0\n333,446,8.5\n333,447,9.0\n333,448,9.5\n333,449,10.0\n333,450,6.5\n333,451,6.0\n333,452,5.5\n333,453,5.0\n333,454,4.5\n333,455,4.0\n333,456,3.5\n333,457,3.0\n333,458,2.5\n333,459,3.0\n333,460,3.5\n333,461,4.0\n333,462,4.5\n333,463,5.0\n333,464,5.5\n333,465,6.0\n333,466,6.5\n333,467,7.0\n333,468,7.5\n333,469,8.0\n333,470,8.5\n333,471,9.0\n333,472,9.5\n333,473,10.0\n333,474,10.5\n333,475,7.0\n333,476,6.5\n333,477,6.0\n333,478,5.5\n333,479,5.0\n333,480,4.5\n333,481,4.0\n333,482,3.5\n333,483,3.0\n333,484,3.5\n333,485,4.0\n333,486,4.5\n333,487,5.0\n333,488,5.5\n333,489,6.0\n333,490,6.5\n333,491,7.0\n333,492,7.5\n333,493,8.0\n333,494,8.5\n333,495,9.0\n333,496,9.5\n333,497,10.0\n333,498,10.5\n333,499,11.0\n333,500,7.5\n333,501,7.0\n333,502,6.5\n333,503,6.0\n333,504,5.5\n333,505,5.0\n333,506,4.5\n333,507,4.0\n333,508,3.5\n333,509,4.0\n333,510,4.5\n333,511,5.0\n333,512,5.5\n333,513,6.0\n333,514,6.5\n333,515,7.0\n333,516,7.5\n333,517,8.0\n333,518,8.5\n333,519,9.0\n333,520,9.5\n333,521,10.0\n333,522,10.5\n333,523,11.0\n333,524,11.5\n333,525,8.0\n333,526,7.5\n333,527,7.0\n333,528,6.5\n333,529,6.0\n333,530,5.5\n333,531,5.0\n333,532,4.5\n333,533,4.0\n333,534,4.5\n333,535,5.0\n333,536,5.5\n333,537,6.0\n333,538,6.5\n333,539,7.0\n333,540,7.5\n333,541,8.0\n333,542,8.5\n333,543,9.0\n333,544,9.5\n333,545,10.0\n333,546,10.5\n333,547,11.0\n333,548,11.5\n333,549,12.0\n333,550,8.5\n333,551,8.0\n333,552,7.5\n333,553,7.0\n333,554,6.5\n333,555,6.0\n333,556,5.5\n333,557,5.0\n333,558,4.5\n333,559,5.0\n333,560,5.5\n333,561,6.0\n333,562,6.5\n333,563,7.0\n333,564,7.5\n333,565,8.0\n333,566,8.5\n333,567,9.0\n333,568,9.5\n333,569,10.0\n333,570,10.5\n333,571,11.0\n333,572,11.5\n333,573,12.0\n333,574,12.5\n333,575,9.0\n333,576,8.5\n333,577,8.0\n333,578,7.5\n333,579,7.0\n333,580,6.5\n333,581,6.0\n333,582,5.5\n333,583,5.0\n333,584,5.5\n333,585,6.0\n333,586,6.5\n333,587,7.0\n333,588,7.5\n333,589,8.0\n333,590,8.5\n333,591,9.0\n333,592,9.5\n333,593,10.0\n333,594,10.5\n333,595,11.0\n333,596,11.5\n333,597,12.0\n333,598,12.5\n333,599,13.0\n333,600,9.5\n333,601,9.0\n333,602,8.5\n333,603,8.0\n333,604,7.5\n333,605,7.0\n333,606,6.5\n333,607,6.0\n333,608,5.5\n333,609,6.0\n333,610,6.5\n333,611,7.0\n333,612,7.5\n333,613,8.0\n333,614,8.5\n333,615,9.0\n333,616,9.5\n333,617,10.0\n333,618,10.5\n333,619,11.0\n333,620,11.5\n333,621,12.0\n333,622,12.5\n333,623,13.0\n333,624,13.5\n334,0,11.0\n334,1,10.5\n334,2,10.0\n334,3,9.5\n334,4,9.0\n334,5,8.5\n334,6,8.0\n334,7,7.5\n334,8,7.0\n334,9,6.5\n334,10,7.0\n334,11,7.5\n334,12,8.0\n334,13,8.5\n334,14,9.0\n334,15,9.5\n334,16,10.0\n334,17,10.5\n334,18,11.0\n334,19,11.5\n334,20,12.0\n334,21,12.5\n334,22,13.0\n334,23,13.5\n334,24,14.0\n334,25,10.5\n334,26,10.0\n334,27,9.5\n334,28,9.0\n334,29,8.5\n334,30,8.0\n334,31,7.5\n334,32,7.0\n334,33,6.5\n334,34,6.0\n334,35,6.5\n334,36,7.0\n334,37,7.5\n334,38,8.0\n334,39,8.5\n334,40,9.0\n334,41,9.5\n334,42,10.0\n334,43,10.5\n334,44,11.0\n334,45,11.5\n334,46,12.0\n334,47,12.5\n334,48,13.0\n334,49,13.5\n334,50,10.0\n334,51,9.5\n334,52,9.0\n334,53,8.5\n334,54,8.0\n334,55,7.5\n334,56,7.0\n334,57,6.5\n334,58,6.0\n334,59,5.5\n334,60,6.0\n334,61,6.5\n334,62,7.0\n334,63,7.5\n334,64,8.0\n334,65,8.5\n334,66,9.0\n334,67,9.5\n334,68,10.0\n334,69,10.5\n334,70,11.0\n334,71,11.5\n334,72,12.0\n334,73,12.5\n334,74,13.0\n334,75,9.5\n334,76,9.0\n334,77,8.5\n334,78,8.0\n334,79,7.5\n334,80,7.0\n334,81,6.5\n334,82,6.0\n334,83,5.5\n334,84,5.0\n334,85,5.5\n334,86,6.0\n334,87,6.5\n334,88,7.0\n334,89,7.5\n334,90,8.0\n334,91,8.5\n334,92,9.0\n334,93,9.5\n334,94,10.0\n334,95,10.5\n334,96,11.0\n334,97,11.5\n334,98,12.0\n334,99,12.5\n334,100,9.0\n334,101,8.5\n334,102,8.0\n334,103,7.5\n334,104,7.0\n334,105,6.5\n334,106,6.0\n334,107,5.5\n334,108,5.0\n334,109,4.5\n334,110,5.0\n334,111,5.5\n334,112,6.0\n334,113,6.5\n334,114,7.0\n334,115,7.5\n334,116,8.0\n334,117,8.5\n334,118,9.0\n334,119,9.5\n334,120,10.0\n334,121,10.5\n334,122,11.0\n334,123,11.5\n334,124,12.0\n334,125,8.5\n334,126,8.0\n334,127,7.5\n334,128,7.0\n334,129,6.5\n334,130,6.0\n334,131,5.5\n334,132,5.0\n334,133,4.5\n334,134,4.0\n334,135,4.5\n334,136,5.0\n334,137,5.5\n334,138,6.0\n334,139,6.5\n334,140,7.0\n334,141,7.5\n334,142,8.0\n334,143,8.5\n334,144,9.0\n334,145,9.5\n334,146,10.0\n334,147,10.5\n334,148,11.0\n334,149,11.5\n334,150,8.0\n334,151,7.5\n334,152,7.0\n334,153,6.5\n334,154,6.0\n334,155,5.5\n334,156,5.0\n334,157,4.5\n334,158,4.0\n334,159,3.5\n334,160,4.0\n334,161,4.5\n334,162,5.0\n334,163,5.5\n334,164,6.0\n334,165,6.5\n334,166,7.0\n334,167,7.5\n334,168,8.0\n334,169,8.5\n334,170,9.0\n334,171,9.5\n334,172,10.0\n334,173,10.5\n334,174,11.0\n334,175,7.5\n334,176,7.0\n334,177,6.5\n334,178,6.0\n334,179,5.5\n334,180,5.0\n334,181,4.5\n334,182,4.0\n334,183,3.5\n334,184,3.0\n334,185,3.5\n334,186,4.0\n334,187,4.5\n334,188,5.0\n334,189,5.5\n334,190,6.0\n334,191,6.5\n334,192,7.0\n334,193,7.5\n334,194,8.0\n334,195,8.5\n334,196,9.0\n334,197,9.5\n334,198,10.0\n334,199,10.5\n334,200,7.0\n334,201,6.5\n334,202,6.0\n334,203,5.5\n334,204,5.0\n334,205,4.5\n334,206,4.0\n334,207,3.5\n334,208,3.0\n334,209,2.5\n334,210,3.0\n334,211,3.5\n334,212,4.0\n334,213,4.5\n334,214,5.0\n334,215,5.5\n334,216,6.0\n334,217,6.5\n334,218,7.0\n334,219,7.5\n334,220,8.0\n334,221,8.5\n334,222,9.0\n334,223,9.5\n334,224,10.0\n334,225,6.5\n334,226,6.0\n334,227,5.5\n334,228,5.0\n334,229,4.5\n334,230,4.0\n334,231,3.5\n334,232,3.0\n334,233,2.5\n334,234,2.0\n334,235,2.5\n334,236,3.0\n334,237,3.5\n334,238,4.0\n334,239,4.5\n334,240,5.0\n334,241,5.5\n334,242,6.0\n334,243,6.5\n334,244,7.0\n334,245,7.5\n334,246,8.0\n334,247,8.5\n334,248,9.0\n334,249,9.5\n334,250,6.0\n334,251,5.5\n334,252,5.0\n334,253,4.5\n334,254,4.0\n334,255,3.5\n334,256,3.0\n334,257,2.5\n334,258,2.0\n334,259,1.5\n334,260,2.0\n334,261,2.5\n334,262,3.0\n334,263,3.5\n334,264,4.0\n334,265,4.5\n334,266,5.0\n334,267,5.5\n334,268,6.0\n334,269,6.5\n334,270,7.0\n334,271,7.5\n334,272,8.0\n334,273,8.5\n334,274,9.0\n334,275,5.5\n334,276,5.0\n334,277,4.5\n334,278,4.0\n334,279,3.5\n334,280,3.0\n334,281,2.5\n334,282,2.0\n334,283,1.5\n334,284,1.0\n334,285,1.5\n334,286,2.0\n334,287,2.5\n334,288,3.0\n334,289,3.5\n334,290,4.0\n334,291,4.5\n334,292,5.0\n334,293,5.5\n334,294,6.0\n334,295,6.5\n334,296,7.0\n334,297,7.5\n334,298,8.0\n334,299,8.5\n334,300,5.0\n334,301,4.5\n334,302,4.0\n334,303,3.5\n334,304,3.0\n334,305,2.5\n334,306,2.0\n334,307,1.5\n334,308,1.0\n334,309,0.5\n334,310,1.0\n334,311,1.5\n334,312,2.0\n334,313,2.5\n334,314,3.0\n334,315,3.5\n334,316,4.0\n334,317,4.5\n334,318,5.0\n334,319,5.5\n334,320,6.0\n334,321,6.5\n334,322,7.0\n334,323,7.5\n334,324,8.0\n334,325,4.5\n334,326,4.0\n334,327,3.5\n334,328,3.0\n334,329,2.5\n334,330,2.0\n334,331,1.5\n334,332,1.0\n334,333,0.5\n334,334,0\n334,335,0.5\n334,336,1.0\n334,337,1.5\n334,338,2.0\n334,339,2.5\n334,340,3.0\n334,341,3.5\n334,342,4.0\n334,343,4.5\n334,344,5.0\n334,345,5.5\n334,346,6.0\n334,347,6.5\n334,348,7.0\n334,349,7.5\n334,350,5.0\n334,351,4.5\n334,352,4.0\n334,353,3.5\n334,354,3.0\n334,355,2.5\n334,356,2.0\n334,357,1.5\n334,358,1.0\n334,359,0.5\n334,360,1.0\n334,361,1.5\n334,362,2.0\n334,363,2.5\n334,364,3.0\n334,365,3.5\n334,366,4.0\n334,367,4.5\n334,368,5.0\n334,369,5.5\n334,370,6.0\n334,371,6.5\n334,372,7.0\n334,373,7.5\n334,374,8.0\n334,375,5.5\n334,376,5.0\n334,377,4.5\n334,378,4.0\n334,379,3.5\n334,380,3.0\n334,381,2.5\n334,382,2.0\n334,383,1.5\n334,384,1.0\n334,385,1.5\n334,386,2.0\n334,387,2.5\n334,388,3.0\n334,389,3.5\n334,390,4.0\n334,391,4.5\n334,392,5.0\n334,393,5.5\n334,394,6.0\n334,395,6.5\n334,396,7.0\n334,397,7.5\n334,398,8.0\n334,399,8.5\n334,400,6.0\n334,401,5.5\n334,402,5.0\n334,403,4.5\n334,404,4.0\n334,405,3.5\n334,406,3.0\n334,407,2.5\n334,408,2.0\n334,409,1.5\n334,410,2.0\n334,411,2.5\n334,412,3.0\n334,413,3.5\n334,414,4.0\n334,415,4.5\n334,416,5.0\n334,417,5.5\n334,418,6.0\n334,419,6.5\n334,420,7.0\n334,421,7.5\n334,422,8.0\n334,423,8.5\n334,424,9.0\n334,425,6.5\n334,426,6.0\n334,427,5.5\n334,428,5.0\n334,429,4.5\n334,430,4.0\n334,431,3.5\n334,432,3.0\n334,433,2.5\n334,434,2.0\n334,435,2.5\n334,436,3.0\n334,437,3.5\n334,438,4.0\n334,439,4.5\n334,440,5.0\n334,441,5.5\n334,442,6.0\n334,443,6.5\n334,444,7.0\n334,445,7.5\n334,446,8.0\n334,447,8.5\n334,448,9.0\n334,449,9.5\n334,450,7.0\n334,451,6.5\n334,452,6.0\n334,453,5.5\n334,454,5.0\n334,455,4.5\n334,456,4.0\n334,457,3.5\n334,458,3.0\n334,459,2.5\n334,460,3.0\n334,461,3.5\n334,462,4.0\n334,463,4.5\n334,464,5.0\n334,465,5.5\n334,466,6.0\n334,467,6.5\n334,468,7.0\n334,469,7.5\n334,470,8.0\n334,471,8.5\n334,472,9.0\n334,473,9.5\n334,474,10.0\n334,475,7.5\n334,476,7.0\n334,477,6.5\n334,478,6.0\n334,479,5.5\n334,480,5.0\n334,481,4.5\n334,482,4.0\n334,483,3.5\n334,484,3.0\n334,485,3.5\n334,486,4.0\n334,487,4.5\n334,488,5.0\n334,489,5.5\n334,490,6.0\n334,491,6.5\n334,492,7.0\n334,493,7.5\n334,494,8.0\n334,495,8.5\n334,496,9.0\n334,497,9.5\n334,498,10.0\n334,499,10.5\n334,500,8.0\n334,501,7.5\n334,502,7.0\n334,503,6.5\n334,504,6.0\n334,505,5.5\n334,506,5.0\n334,507,4.5\n334,508,4.0\n334,509,3.5\n334,510,4.0\n334,511,4.5\n334,512,5.0\n334,513,5.5\n334,514,6.0\n334,515,6.5\n334,516,7.0\n334,517,7.5\n334,518,8.0\n334,519,8.5\n334,520,9.0\n334,521,9.5\n334,522,10.0\n334,523,10.5\n334,524,11.0\n334,525,8.5\n334,526,8.0\n334,527,7.5\n334,528,7.0\n334,529,6.5\n334,530,6.0\n334,531,5.5\n334,532,5.0\n334,533,4.5\n334,534,4.0\n334,535,4.5\n334,536,5.0\n334,537,5.5\n334,538,6.0\n334,539,6.5\n334,540,7.0\n334,541,7.5\n334,542,8.0\n334,543,8.5\n334,544,9.0\n334,545,9.5\n334,546,10.0\n334,547,10.5\n334,548,11.0\n334,549,11.5\n334,550,9.0\n334,551,8.5\n334,552,8.0\n334,553,7.5\n334,554,7.0\n334,555,6.5\n334,556,6.0\n334,557,5.5\n334,558,5.0\n334,559,4.5\n334,560,5.0\n334,561,5.5\n334,562,6.0\n334,563,6.5\n334,564,7.0\n334,565,7.5\n334,566,8.0\n334,567,8.5\n334,568,9.0\n334,569,9.5\n334,570,10.0\n334,571,10.5\n334,572,11.0\n334,573,11.5\n334,574,12.0\n334,575,9.5\n334,576,9.0\n334,577,8.5\n334,578,8.0\n334,579,7.5\n334,580,7.0\n334,581,6.5\n334,582,6.0\n334,583,5.5\n334,584,5.0\n334,585,5.5\n334,586,6.0\n334,587,6.5\n334,588,7.0\n334,589,7.5\n334,590,8.0\n334,591,8.5\n334,592,9.0\n334,593,9.5\n334,594,10.0\n334,595,10.5\n334,596,11.0\n334,597,11.5\n334,598,12.0\n334,599,12.5\n334,600,10.0\n334,601,9.5\n334,602,9.0\n334,603,8.5\n334,604,8.0\n334,605,7.5\n334,606,7.0\n334,607,6.5\n334,608,6.0\n334,609,5.5\n334,610,6.0\n334,611,6.5\n334,612,7.0\n334,613,7.5\n334,614,8.0\n334,615,8.5\n334,616,9.0\n334,617,9.5\n334,618,10.0\n334,619,10.5\n334,620,11.0\n334,621,11.5\n334,622,12.0\n334,623,12.5\n334,624,13.0\n335,0,11.5\n335,1,11.0\n335,2,10.5\n335,3,10.0\n335,4,9.5\n335,5,9.0\n335,6,8.5\n335,7,8.0\n335,8,7.5\n335,9,7.0\n335,10,6.5\n335,11,7.0\n335,12,7.5\n335,13,8.0\n335,14,8.5\n335,15,9.0\n335,16,9.5\n335,17,10.0\n335,18,10.5\n335,19,11.0\n335,20,11.5\n335,21,12.0\n335,22,12.5\n335,23,13.0\n335,24,13.5\n335,25,11.0\n335,26,10.5\n335,27,10.0\n335,28,9.5\n335,29,9.0\n335,30,8.5\n335,31,8.0\n335,32,7.5\n335,33,7.0\n335,34,6.5\n335,35,6.0\n335,36,6.5\n335,37,7.0\n335,38,7.5\n335,39,8.0\n335,40,8.5\n335,41,9.0\n335,42,9.5\n335,43,10.0\n335,44,10.5\n335,45,11.0\n335,46,11.5\n335,47,12.0\n335,48,12.5\n335,49,13.0\n335,50,10.5\n335,51,10.0\n335,52,9.5\n335,53,9.0\n335,54,8.5\n335,55,8.0\n335,56,7.5\n335,57,7.0\n335,58,6.5\n335,59,6.0\n335,60,5.5\n335,61,6.0\n335,62,6.5\n335,63,7.0\n335,64,7.5\n335,65,8.0\n335,66,8.5\n335,67,9.0\n335,68,9.5\n335,69,10.0\n335,70,10.5\n335,71,11.0\n335,72,11.5\n335,73,12.0\n335,74,12.5\n335,75,10.0\n335,76,9.5\n335,77,9.0\n335,78,8.5\n335,79,8.0\n335,80,7.5\n335,81,7.0\n335,82,6.5\n335,83,6.0\n335,84,5.5\n335,85,5.0\n335,86,5.5\n335,87,6.0\n335,88,6.5\n335,89,7.0\n335,90,7.5\n335,91,8.0\n335,92,8.5\n335,93,9.0\n335,94,9.5\n335,95,10.0\n335,96,10.5\n335,97,11.0\n335,98,11.5\n335,99,12.0\n335,100,9.5\n335,101,9.0\n335,102,8.5\n335,103,8.0\n335,104,7.5\n335,105,7.0\n335,106,6.5\n335,107,6.0\n335,108,5.5\n335,109,5.0\n335,110,4.5\n335,111,5.0\n335,112,5.5\n335,113,6.0\n335,114,6.5\n335,115,7.0\n335,116,7.5\n335,117,8.0\n335,118,8.5\n335,119,9.0\n335,120,9.5\n335,121,10.0\n335,122,10.5\n335,123,11.0\n335,124,11.5\n335,125,9.0\n335,126,8.5\n335,127,8.0\n335,128,7.5\n335,129,7.0\n335,130,6.5\n335,131,6.0\n335,132,5.5\n335,133,5.0\n335,134,4.5\n335,135,4.0\n335,136,4.5\n335,137,5.0\n335,138,5.5\n335,139,6.0\n335,140,6.5\n335,141,7.0\n335,142,7.5\n335,143,8.0\n335,144,8.5\n335,145,9.0\n335,146,9.5\n335,147,10.0\n335,148,10.5\n335,149,11.0\n335,150,8.5\n335,151,8.0\n335,152,7.5\n335,153,7.0\n335,154,6.5\n335,155,6.0\n335,156,5.5\n335,157,5.0\n335,158,4.5\n335,159,4.0\n335,160,3.5\n335,161,4.0\n335,162,4.5\n335,163,5.0\n335,164,5.5\n335,165,6.0\n335,166,6.5\n335,167,7.0\n335,168,7.5\n335,169,8.0\n335,170,8.5\n335,171,9.0\n335,172,9.5\n335,173,10.0\n335,174,10.5\n335,175,8.0\n335,176,7.5\n335,177,7.0\n335,178,6.5\n335,179,6.0\n335,180,5.5\n335,181,5.0\n335,182,4.5\n335,183,4.0\n335,184,3.5\n335,185,3.0\n335,186,3.5\n335,187,4.0\n335,188,4.5\n335,189,5.0\n335,190,5.5\n335,191,6.0\n335,192,6.5\n335,193,7.0\n335,194,7.5\n335,195,8.0\n335,196,8.5\n335,197,9.0\n335,198,9.5\n335,199,10.0\n335,200,7.5\n335,201,7.0\n335,202,6.5\n335,203,6.0\n335,204,5.5\n335,205,5.0\n335,206,4.5\n335,207,4.0\n335,208,3.5\n335,209,3.0\n335,210,2.5\n335,211,3.0\n335,212,3.5\n335,213,4.0\n335,214,4.5\n335,215,5.0\n335,216,5.5\n335,217,6.0\n335,218,6.5\n335,219,7.0\n335,220,7.5\n335,221,8.0\n335,222,8.5\n335,223,9.0\n335,224,9.5\n335,225,7.0\n335,226,6.5\n335,227,6.0\n335,228,5.5\n335,229,5.0\n335,230,4.5\n335,231,4.0\n335,232,3.5\n335,233,3.0\n335,234,2.5\n335,235,2.0\n335,236,2.5\n335,237,3.0\n335,238,3.5\n335,239,4.0\n335,240,4.5\n335,241,5.0\n335,242,5.5\n335,243,6.0\n335,244,6.5\n335,245,7.0\n335,246,7.5\n335,247,8.0\n335,248,8.5\n335,249,9.0\n335,250,6.5\n335,251,6.0\n335,252,5.5\n335,253,5.0\n335,254,4.5\n335,255,4.0\n335,256,3.5\n335,257,3.0\n335,258,2.5\n335,259,2.0\n335,260,1.5\n335,261,2.0\n335,262,2.5\n335,263,3.0\n335,264,3.5\n335,265,4.0\n335,266,4.5\n335,267,5.0\n335,268,5.5\n335,269,6.0\n335,270,6.5\n335,271,7.0\n335,272,7.5\n335,273,8.0\n335,274,8.5\n335,275,6.0\n335,276,5.5\n335,277,5.0\n335,278,4.5\n335,279,4.0\n335,280,3.5\n335,281,3.0\n335,282,2.5\n335,283,2.0\n335,284,1.5\n335,285,1.0\n335,286,1.5\n335,287,2.0\n335,288,2.5\n335,289,3.0\n335,290,3.5\n335,291,4.0\n335,292,4.5\n335,293,5.0\n335,294,5.5\n335,295,6.0\n335,296,6.5\n335,297,7.0\n335,298,7.5\n335,299,8.0\n335,300,5.5\n335,301,5.0\n335,302,4.5\n335,303,4.0\n335,304,3.5\n335,305,3.0\n335,306,2.5\n335,307,2.0\n335,308,1.5\n335,309,1.0\n335,310,0.5\n335,311,1.0\n335,312,1.5\n335,313,2.0\n335,314,2.5\n335,315,3.0\n335,316,3.5\n335,317,4.0\n335,318,4.5\n335,319,5.0\n335,320,5.5\n335,321,6.0\n335,322,6.5\n335,323,7.0\n335,324,7.5\n335,325,5.0\n335,326,4.5\n335,327,4.0\n335,328,3.5\n335,329,3.0\n335,330,2.5\n335,331,2.0\n335,332,1.5\n335,333,1.0\n335,334,0.5\n335,335,0\n335,336,0.5\n335,337,1.0\n335,338,1.5\n335,339,2.0\n335,340,2.5\n335,341,3.0\n335,342,3.5\n335,343,4.0\n335,344,4.5\n335,345,5.0\n335,346,5.5\n335,347,6.0\n335,348,6.5\n335,349,7.0\n335,350,5.5\n335,351,5.0\n335,352,4.5\n335,353,4.0\n335,354,3.5\n335,355,3.0\n335,356,2.5\n335,357,2.0\n335,358,1.5\n335,359,1.0\n335,360,0.5\n335,361,1.0\n335,362,1.5\n335,363,2.0\n335,364,2.5\n335,365,3.0\n335,366,3.5\n335,367,4.0\n335,368,4.5\n335,369,5.0\n335,370,5.5\n335,371,6.0\n335,372,6.5\n335,373,7.0\n335,374,7.5\n335,375,6.0\n335,376,5.5\n335,377,5.0\n335,378,4.5\n335,379,4.0\n335,380,3.5\n335,381,3.0\n335,382,2.5\n335,383,2.0\n335,384,1.5\n335,385,1.0\n335,386,1.5\n335,387,2.0\n335,388,2.5\n335,389,3.0\n335,390,3.5\n335,391,4.0\n335,392,4.5\n335,393,5.0\n335,394,5.5\n335,395,6.0\n335,396,6.5\n335,397,7.0\n335,398,7.5\n335,399,8.0\n335,400,6.5\n335,401,6.0\n335,402,5.5\n335,403,5.0\n335,404,4.5\n335,405,4.0\n335,406,3.5\n335,407,3.0\n335,408,2.5\n335,409,2.0\n335,410,1.5\n335,411,2.0\n335,412,2.5\n335,413,3.0\n335,414,3.5\n335,415,4.0\n335,416,4.5\n335,417,5.0\n335,418,5.5\n335,419,6.0\n335,420,6.5\n335,421,7.0\n335,422,7.5\n335,423,8.0\n335,424,8.5\n335,425,7.0\n335,426,6.5\n335,427,6.0\n335,428,5.5\n335,429,5.0\n335,430,4.5\n335,431,4.0\n335,432,3.5\n335,433,3.0\n335,434,2.5\n335,435,2.0\n335,436,2.5\n335,437,3.0\n335,438,3.5\n335,439,4.0\n335,440,4.5\n335,441,5.0\n335,442,5.5\n335,443,6.0\n335,444,6.5\n335,445,7.0\n335,446,7.5\n335,447,8.0\n335,448,8.5\n335,449,9.0\n335,450,7.5\n335,451,7.0\n335,452,6.5\n335,453,6.0\n335,454,5.5\n335,455,5.0\n335,456,4.5\n335,457,4.0\n335,458,3.5\n335,459,3.0\n335,460,2.5\n335,461,3.0\n335,462,3.5\n335,463,4.0\n335,464,4.5\n335,465,5.0\n335,466,5.5\n335,467,6.0\n335,468,6.5\n335,469,7.0\n335,470,7.5\n335,471,8.0\n335,472,8.5\n335,473,9.0\n335,474,9.5\n335,475,8.0\n335,476,7.5\n335,477,7.0\n335,478,6.5\n335,479,6.0\n335,480,5.5\n335,481,5.0\n335,482,4.5\n335,483,4.0\n335,484,3.5\n335,485,3.0\n335,486,3.5\n335,487,4.0\n335,488,4.5\n335,489,5.0\n335,490,5.5\n335,491,6.0\n335,492,6.5\n335,493,7.0\n335,494,7.5\n335,495,8.0\n335,496,8.5\n335,497,9.0\n335,498,9.5\n335,499,10.0\n335,500,8.5\n335,501,8.0\n335,502,7.5\n335,503,7.0\n335,504,6.5\n335,505,6.0\n335,506,5.5\n335,507,5.0\n335,508,4.5\n335,509,4.0\n335,510,3.5\n335,511,4.0\n335,512,4.5\n335,513,5.0\n335,514,5.5\n335,515,6.0\n335,516,6.5\n335,517,7.0\n335,518,7.5\n335,519,8.0\n335,520,8.5\n335,521,9.0\n335,522,9.5\n335,523,10.0\n335,524,10.5\n335,525,9.0\n335,526,8.5\n335,527,8.0\n335,528,7.5\n335,529,7.0\n335,530,6.5\n335,531,6.0\n335,532,5.5\n335,533,5.0\n335,534,4.5\n335,535,4.0\n335,536,4.5\n335,537,5.0\n335,538,5.5\n335,539,6.0\n335,540,6.5\n335,541,7.0\n335,542,7.5\n335,543,8.0\n335,544,8.5\n335,545,9.0\n335,546,9.5\n335,547,10.0\n335,548,10.5\n335,549,11.0\n335,550,9.5\n335,551,9.0\n335,552,8.5\n335,553,8.0\n335,554,7.5\n335,555,7.0\n335,556,6.5\n335,557,6.0\n335,558,5.5\n335,559,5.0\n335,560,4.5\n335,561,5.0\n335,562,5.5\n335,563,6.0\n335,564,6.5\n335,565,7.0\n335,566,7.5\n335,567,8.0\n335,568,8.5\n335,569,9.0\n335,570,9.5\n335,571,10.0\n335,572,10.5\n335,573,11.0\n335,574,11.5\n335,575,10.0\n335,576,9.5\n335,577,9.0\n335,578,8.5\n335,579,8.0\n335,580,7.5\n335,581,7.0\n335,582,6.5\n335,583,6.0\n335,584,5.5\n335,585,5.0\n335,586,5.5\n335,587,6.0\n335,588,6.5\n335,589,7.0\n335,590,7.5\n335,591,8.0\n335,592,8.5\n335,593,9.0\n335,594,9.5\n335,595,10.0\n335,596,10.5\n335,597,11.0\n335,598,11.5\n335,599,12.0\n335,600,10.5\n335,601,10.0\n335,602,9.5\n335,603,9.0\n335,604,8.5\n335,605,8.0\n335,606,7.5\n335,607,7.0\n335,608,6.5\n335,609,6.0\n335,610,5.5\n335,611,6.0\n335,612,6.5\n335,613,7.0\n335,614,7.5\n335,615,8.0\n335,616,8.5\n335,617,9.0\n335,618,9.5\n335,619,10.0\n335,620,10.5\n335,621,11.0\n335,622,11.5\n335,623,12.0\n335,624,12.5\n336,0,12.0\n336,1,11.5\n336,2,11.0\n336,3,10.5\n336,4,10.0\n336,5,9.5\n336,6,9.0\n336,7,8.5\n336,8,8.0\n336,9,7.5\n336,10,7.0\n336,11,6.5\n336,12,7.0\n336,13,7.5\n336,14,8.0\n336,15,8.5\n336,16,9.0\n336,17,9.5\n336,18,10.0\n336,19,10.5\n336,20,11.0\n336,21,11.5\n336,22,12.0\n336,23,12.5\n336,24,13.0\n336,25,11.5\n336,26,11.0\n336,27,10.5\n336,28,10.0\n336,29,9.5\n336,30,9.0\n336,31,8.5\n336,32,8.0\n336,33,7.5\n336,34,7.0\n336,35,6.5\n336,36,6.0\n336,37,6.5\n336,38,7.0\n336,39,7.5\n336,40,8.0\n336,41,8.5\n336,42,9.0\n336,43,9.5\n336,44,10.0\n336,45,10.5\n336,46,11.0\n336,47,11.5\n336,48,12.0\n336,49,12.5\n336,50,11.0\n336,51,10.5\n336,52,10.0\n336,53,9.5\n336,54,9.0\n336,55,8.5\n336,56,8.0\n336,57,7.5\n336,58,7.0\n336,59,6.5\n336,60,6.0\n336,61,5.5\n336,62,6.0\n336,63,6.5\n336,64,7.0\n336,65,7.5\n336,66,8.0\n336,67,8.5\n336,68,9.0\n336,69,9.5\n336,70,10.0\n336,71,10.5\n336,72,11.0\n336,73,11.5\n336,74,12.0\n336,75,10.5\n336,76,10.0\n336,77,9.5\n336,78,9.0\n336,79,8.5\n336,80,8.0\n336,81,7.5\n336,82,7.0\n336,83,6.5\n336,84,6.0\n336,85,5.5\n336,86,5.0\n336,87,5.5\n336,88,6.0\n336,89,6.5\n336,90,7.0\n336,91,7.5\n336,92,8.0\n336,93,8.5\n336,94,9.0\n336,95,9.5\n336,96,10.0\n336,97,10.5\n336,98,11.0\n336,99,11.5\n336,100,10.0\n336,101,9.5\n336,102,9.0\n336,103,8.5\n336,104,8.0\n336,105,7.5\n336,106,7.0\n336,107,6.5\n336,108,6.0\n336,109,5.5\n336,110,5.0\n336,111,4.5\n336,112,5.0\n336,113,5.5\n336,114,6.0\n336,115,6.5\n336,116,7.0\n336,117,7.5\n336,118,8.0\n336,119,8.5\n336,120,9.0\n336,121,9.5\n336,122,10.0\n336,123,10.5\n336,124,11.0\n336,125,9.5\n336,126,9.0\n336,127,8.5\n336,128,8.0\n336,129,7.5\n336,130,7.0\n336,131,6.5\n336,132,6.0\n336,133,5.5\n336,134,5.0\n336,135,4.5\n336,136,4.0\n336,137,4.5\n336,138,5.0\n336,139,5.5\n336,140,6.0\n336,141,6.5\n336,142,7.0\n336,143,7.5\n336,144,8.0\n336,145,8.5\n336,146,9.0\n336,147,9.5\n336,148,10.0\n336,149,10.5\n336,150,9.0\n336,151,8.5\n336,152,8.0\n336,153,7.5\n336,154,7.0\n336,155,6.5\n336,156,6.0\n336,157,5.5\n336,158,5.0\n336,159,4.5\n336,160,4.0\n336,161,3.5\n336,162,4.0\n336,163,4.5\n336,164,5.0\n336,165,5.5\n336,166,6.0\n336,167,6.5\n336,168,7.0\n336,169,7.5\n336,170,8.0\n336,171,8.5\n336,172,9.0\n336,173,9.5\n336,174,10.0\n336,175,8.5\n336,176,8.0\n336,177,7.5\n336,178,7.0\n336,179,6.5\n336,180,6.0\n336,181,5.5\n336,182,5.0\n336,183,4.5\n336,184,4.0\n336,185,3.5\n336,186,3.0\n336,187,3.5\n336,188,4.0\n336,189,4.5\n336,190,5.0\n336,191,5.5\n336,192,6.0\n336,193,6.5\n336,194,7.0\n336,195,7.5\n336,196,8.0\n336,197,8.5\n336,198,9.0\n336,199,9.5\n336,200,8.0\n336,201,7.5\n336,202,7.0\n336,203,6.5\n336,204,6.0\n336,205,5.5\n336,206,5.0\n336,207,4.5\n336,208,4.0\n336,209,3.5\n336,210,3.0\n336,211,2.5\n336,212,3.0\n336,213,3.5\n336,214,4.0\n336,215,4.5\n336,216,5.0\n336,217,5.5\n336,218,6.0\n336,219,6.5\n336,220,7.0\n336,221,7.5\n336,222,8.0\n336,223,8.5\n336,224,9.0\n336,225,7.5\n336,226,7.0\n336,227,6.5\n336,228,6.0\n336,229,5.5\n336,230,5.0\n336,231,4.5\n336,232,4.0\n336,233,3.5\n336,234,3.0\n336,235,2.5\n336,236,2.0\n336,237,2.5\n336,238,3.0\n336,239,3.5\n336,240,4.0\n336,241,4.5\n336,242,5.0\n336,243,5.5\n336,244,6.0\n336,245,6.5\n336,246,7.0\n336,247,7.5\n336,248,8.0\n336,249,8.5\n336,250,7.0\n336,251,6.5\n336,252,6.0\n336,253,5.5\n336,254,5.0\n336,255,4.5\n336,256,4.0\n336,257,3.5\n336,258,3.0\n336,259,2.5\n336,260,2.0\n336,261,1.5\n336,262,2.0\n336,263,2.5\n336,264,3.0\n336,265,3.5\n336,266,4.0\n336,267,4.5\n336,268,5.0\n336,269,5.5\n336,270,6.0\n336,271,6.5\n336,272,7.0\n336,273,7.5\n336,274,8.0\n336,275,6.5\n336,276,6.0\n336,277,5.5\n336,278,5.0\n336,279,4.5\n336,280,4.0\n336,281,3.5\n336,282,3.0\n336,283,2.5\n336,284,2.0\n336,285,1.5\n336,286,1.0\n336,287,1.5\n336,288,2.0\n336,289,2.5\n336,290,3.0\n336,291,3.5\n336,292,4.0\n336,293,4.5\n336,294,5.0\n336,295,5.5\n336,296,6.0\n336,297,6.5\n336,298,7.0\n336,299,7.5\n336,300,6.0\n336,301,5.5\n336,302,5.0\n336,303,4.5\n336,304,4.0\n336,305,3.5\n336,306,3.0\n336,307,2.5\n336,308,2.0\n336,309,1.5\n336,310,1.0\n336,311,0.5\n336,312,1.0\n336,313,1.5\n336,314,2.0\n336,315,2.5\n336,316,3.0\n336,317,3.5\n336,318,4.0\n336,319,4.5\n336,320,5.0\n336,321,5.5\n336,322,6.0\n336,323,6.5\n336,324,7.0\n336,325,5.5\n336,326,5.0\n336,327,4.5\n336,328,4.0\n336,329,3.5\n336,330,3.0\n336,331,2.5\n336,332,2.0\n336,333,1.5\n336,334,1.0\n336,335,0.5\n336,336,0\n336,337,0.5\n336,338,1.0\n336,339,1.5\n336,340,2.0\n336,341,2.5\n336,342,3.0\n336,343,3.5\n336,344,4.0\n336,345,4.5\n336,346,5.0\n336,347,5.5\n336,348,6.0\n336,349,6.5\n336,350,6.0\n336,351,5.5\n336,352,5.0\n336,353,4.5\n336,354,4.0\n336,355,3.5\n336,356,3.0\n336,357,2.5\n336,358,2.0\n336,359,1.5\n336,360,1.0\n336,361,0.5\n336,362,1.0\n336,363,1.5\n336,364,2.0\n336,365,2.5\n336,366,3.0\n336,367,3.5\n336,368,4.0\n336,369,4.5\n336,370,5.0\n336,371,5.5\n336,372,6.0\n336,373,6.5\n336,374,7.0\n336,375,6.5\n336,376,6.0\n336,377,5.5\n336,378,5.0\n336,379,4.5\n336,380,4.0\n336,381,3.5\n336,382,3.0\n336,383,2.5\n336,384,2.0\n336,385,1.5\n336,386,1.0\n336,387,1.5\n336,388,2.0\n336,389,2.5\n336,390,3.0\n336,391,3.5\n336,392,4.0\n336,393,4.5\n336,394,5.0\n336,395,5.5\n336,396,6.0\n336,397,6.5\n336,398,7.0\n336,399,7.5\n336,400,7.0\n336,401,6.5\n336,402,6.0\n336,403,5.5\n336,404,5.0\n336,405,4.5\n336,406,4.0\n336,407,3.5\n336,408,3.0\n336,409,2.5\n336,410,2.0\n336,411,1.5\n336,412,2.0\n336,413,2.5\n336,414,3.0\n336,415,3.5\n336,416,4.0\n336,417,4.5\n336,418,5.0\n336,419,5.5\n336,420,6.0\n336,421,6.5\n336,422,7.0\n336,423,7.5\n336,424,8.0\n336,425,7.5\n336,426,7.0\n336,427,6.5\n336,428,6.0\n336,429,5.5\n336,430,5.0\n336,431,4.5\n336,432,4.0\n336,433,3.5\n336,434,3.0\n336,435,2.5\n336,436,2.0\n336,437,2.5\n336,438,3.0\n336,439,3.5\n336,440,4.0\n336,441,4.5\n336,442,5.0\n336,443,5.5\n336,444,6.0\n336,445,6.5\n336,446,7.0\n336,447,7.5\n336,448,8.0\n336,449,8.5\n336,450,8.0\n336,451,7.5\n336,452,7.0\n336,453,6.5\n336,454,6.0\n336,455,5.5\n336,456,5.0\n336,457,4.5\n336,458,4.0\n336,459,3.5\n336,460,3.0\n336,461,2.5\n336,462,3.0\n336,463,3.5\n336,464,4.0\n336,465,4.5\n336,466,5.0\n336,467,5.5\n336,468,6.0\n336,469,6.5\n336,470,7.0\n336,471,7.5\n336,472,8.0\n336,473,8.5\n336,474,9.0\n336,475,8.5\n336,476,8.0\n336,477,7.5\n336,478,7.0\n336,479,6.5\n336,480,6.0\n336,481,5.5\n336,482,5.0\n336,483,4.5\n336,484,4.0\n336,485,3.5\n336,486,3.0\n336,487,3.5\n336,488,4.0\n336,489,4.5\n336,490,5.0\n336,491,5.5\n336,492,6.0\n336,493,6.5\n336,494,7.0\n336,495,7.5\n336,496,8.0\n336,497,8.5\n336,498,9.0\n336,499,9.5\n336,500,9.0\n336,501,8.5\n336,502,8.0\n336,503,7.5\n336,504,7.0\n336,505,6.5\n336,506,6.0\n336,507,5.5\n336,508,5.0\n336,509,4.5\n336,510,4.0\n336,511,3.5\n336,512,4.0\n336,513,4.5\n336,514,5.0\n336,515,5.5\n336,516,6.0\n336,517,6.5\n336,518,7.0\n336,519,7.5\n336,520,8.0\n336,521,8.5\n336,522,9.0\n336,523,9.5\n336,524,10.0\n336,525,9.5\n336,526,9.0\n336,527,8.5\n336,528,8.0\n336,529,7.5\n336,530,7.0\n336,531,6.5\n336,532,6.0\n336,533,5.5\n336,534,5.0\n336,535,4.5\n336,536,4.0\n336,537,4.5\n336,538,5.0\n336,539,5.5\n336,540,6.0\n336,541,6.5\n336,542,7.0\n336,543,7.5\n336,544,8.0\n336,545,8.5\n336,546,9.0\n336,547,9.5\n336,548,10.0\n336,549,10.5\n336,550,10.0\n336,551,9.5\n336,552,9.0\n336,553,8.5\n336,554,8.0\n336,555,7.5\n336,556,7.0\n336,557,6.5\n336,558,6.0\n336,559,5.5\n336,560,5.0\n336,561,4.5\n336,562,5.0\n336,563,5.5\n336,564,6.0\n336,565,6.5\n336,566,7.0\n336,567,7.5\n336,568,8.0\n336,569,8.5\n336,570,9.0\n336,571,9.5\n336,572,10.0\n336,573,10.5\n336,574,11.0\n336,575,10.5\n336,576,10.0\n336,577,9.5\n336,578,9.0\n336,579,8.5\n336,580,8.0\n336,581,7.5\n336,582,7.0\n336,583,6.5\n336,584,6.0\n336,585,5.5\n336,586,5.0\n336,587,5.5\n336,588,6.0\n336,589,6.5\n336,590,7.0\n336,591,7.5\n336,592,8.0\n336,593,8.5\n336,594,9.0\n336,595,9.5\n336,596,10.0\n336,597,10.5\n336,598,11.0\n336,599,11.5\n336,600,11.0\n336,601,10.5\n336,602,10.0\n336,603,9.5\n336,604,9.0\n336,605,8.5\n336,606,8.0\n336,607,7.5\n336,608,7.0\n336,609,6.5\n336,610,6.0\n336,611,5.5\n336,612,6.0\n336,613,6.5\n336,614,7.0\n336,615,7.5\n336,616,8.0\n336,617,8.5\n336,618,9.0\n336,619,9.5\n336,620,10.0\n336,621,10.5\n336,622,11.0\n336,623,11.5\n336,624,12.0\n337,0,12.5\n337,1,12.0\n337,2,11.5\n337,3,11.0\n337,4,10.5\n337,5,10.0\n337,6,9.5\n337,7,9.0\n337,8,8.5\n337,9,8.0\n337,10,7.5\n337,11,7.0\n337,12,6.5\n337,13,7.0\n337,14,7.5\n337,15,8.0\n337,16,8.5\n337,17,9.0\n337,18,9.5\n337,19,10.0\n337,20,10.5\n337,21,11.0\n337,22,11.5\n337,23,12.0\n337,24,12.5\n337,25,12.0\n337,26,11.5\n337,27,11.0\n337,28,10.5\n337,29,10.0\n337,30,9.5\n337,31,9.0\n337,32,8.5\n337,33,8.0\n337,34,7.5\n337,35,7.0\n337,36,6.5\n337,37,6.0\n337,38,6.5\n337,39,7.0\n337,40,7.5\n337,41,8.0\n337,42,8.5\n337,43,9.0\n337,44,9.5\n337,45,10.0\n337,46,10.5\n337,47,11.0\n337,48,11.5\n337,49,12.0\n337,50,11.5\n337,51,11.0\n337,52,10.5\n337,53,10.0\n337,54,9.5\n337,55,9.0\n337,56,8.5\n337,57,8.0\n337,58,7.5\n337,59,7.0\n337,60,6.5\n337,61,6.0\n337,62,5.5\n337,63,6.0\n337,64,6.5\n337,65,7.0\n337,66,7.5\n337,67,8.0\n337,68,8.5\n337,69,9.0\n337,70,9.5\n337,71,10.0\n337,72,10.5\n337,73,11.0\n337,74,11.5\n337,75,11.0\n337,76,10.5\n337,77,10.0\n337,78,9.5\n337,79,9.0\n337,80,8.5\n337,81,8.0\n337,82,7.5\n337,83,7.0\n337,84,6.5\n337,85,6.0\n337,86,5.5\n337,87,5.0\n337,88,5.5\n337,89,6.0\n337,90,6.5\n337,91,7.0\n337,92,7.5\n337,93,8.0\n337,94,8.5\n337,95,9.0\n337,96,9.5\n337,97,10.0\n337,98,10.5\n337,99,11.0\n337,100,10.5\n337,101,10.0\n337,102,9.5\n337,103,9.0\n337,104,8.5\n337,105,8.0\n337,106,7.5\n337,107,7.0\n337,108,6.5\n337,109,6.0\n337,110,5.5\n337,111,5.0\n337,112,4.5\n337,113,5.0\n337,114,5.5\n337,115,6.0\n337,116,6.5\n337,117,7.0\n337,118,7.5\n337,119,8.0\n337,120,8.5\n337,121,9.0\n337,122,9.5\n337,123,10.0\n337,124,10.5\n337,125,10.0\n337,126,9.5\n337,127,9.0\n337,128,8.5\n337,129,8.0\n337,130,7.5\n337,131,7.0\n337,132,6.5\n337,133,6.0\n337,134,5.5\n337,135,5.0\n337,136,4.5\n337,137,4.0\n337,138,4.5\n337,139,5.0\n337,140,5.5\n337,141,6.0\n337,142,6.5\n337,143,7.0\n337,144,7.5\n337,145,8.0\n337,146,8.5\n337,147,9.0\n337,148,9.5\n337,149,10.0\n337,150,9.5\n337,151,9.0\n337,152,8.5\n337,153,8.0\n337,154,7.5\n337,155,7.0\n337,156,6.5\n337,157,6.0\n337,158,5.5\n337,159,5.0\n337,160,4.5\n337,161,4.0\n337,162,3.5\n337,163,4.0\n337,164,4.5\n337,165,5.0\n337,166,5.5\n337,167,6.0\n337,168,6.5\n337,169,7.0\n337,170,7.5\n337,171,8.0\n337,172,8.5\n337,173,9.0\n337,174,9.5\n337,175,9.0\n337,176,8.5\n337,177,8.0\n337,178,7.5\n337,179,7.0\n337,180,6.5\n337,181,6.0\n337,182,5.5\n337,183,5.0\n337,184,4.5\n337,185,4.0\n337,186,3.5\n337,187,3.0\n337,188,3.5\n337,189,4.0\n337,190,4.5\n337,191,5.0\n337,192,5.5\n337,193,6.0\n337,194,6.5\n337,195,7.0\n337,196,7.5\n337,197,8.0\n337,198,8.5\n337,199,9.0\n337,200,8.5\n337,201,8.0\n337,202,7.5\n337,203,7.0\n337,204,6.5\n337,205,6.0\n337,206,5.5\n337,207,5.0\n337,208,4.5\n337,209,4.0\n337,210,3.5\n337,211,3.0\n337,212,2.5\n337,213,3.0\n337,214,3.5\n337,215,4.0\n337,216,4.5\n337,217,5.0\n337,218,5.5\n337,219,6.0\n337,220,6.5\n337,221,7.0\n337,222,7.5\n337,223,8.0\n337,224,8.5\n337,225,8.0\n337,226,7.5\n337,227,7.0\n337,228,6.5\n337,229,6.0\n337,230,5.5\n337,231,5.0\n337,232,4.5\n337,233,4.0\n337,234,3.5\n337,235,3.0\n337,236,2.5\n337,237,2.0\n337,238,2.5\n337,239,3.0\n337,240,3.5\n337,241,4.0\n337,242,4.5\n337,243,5.0\n337,244,5.5\n337,245,6.0\n337,246,6.5\n337,247,7.0\n337,248,7.5\n337,249,8.0\n337,250,7.5\n337,251,7.0\n337,252,6.5\n337,253,6.0\n337,254,5.5\n337,255,5.0\n337,256,4.5\n337,257,4.0\n337,258,3.5\n337,259,3.0\n337,260,2.5\n337,261,2.0\n337,262,1.5\n337,263,2.0\n337,264,2.5\n337,265,3.0\n337,266,3.5\n337,267,4.0\n337,268,4.5\n337,269,5.0\n337,270,5.5\n337,271,6.0\n337,272,6.5\n337,273,7.0\n337,274,7.5\n337,275,7.0\n337,276,6.5\n337,277,6.0\n337,278,5.5\n337,279,5.0\n337,280,4.5\n337,281,4.0\n337,282,3.5\n337,283,3.0\n337,284,2.5\n337,285,2.0\n337,286,1.5\n337,287,1.0\n337,288,1.5\n337,289,2.0\n337,290,2.5\n337,291,3.0\n337,292,3.5\n337,293,4.0\n337,294,4.5\n337,295,5.0\n337,296,5.5\n337,297,6.0\n337,298,6.5\n337,299,7.0\n337,300,6.5\n337,301,6.0\n337,302,5.5\n337,303,5.0\n337,304,4.5\n337,305,4.0\n337,306,3.5\n337,307,3.0\n337,308,2.5\n337,309,2.0\n337,310,1.5\n337,311,1.0\n337,312,0.5\n337,313,1.0\n337,314,1.5\n337,315,2.0\n337,316,2.5\n337,317,3.0\n337,318,3.5\n337,319,4.0\n337,320,4.5\n337,321,5.0\n337,322,5.5\n337,323,6.0\n337,324,6.5\n337,325,6.0\n337,326,5.5\n337,327,5.0\n337,328,4.5\n337,329,4.0\n337,330,3.5\n337,331,3.0\n337,332,2.5\n337,333,2.0\n337,334,1.5\n337,335,1.0\n337,336,0.5\n337,337,0\n337,338,0.5\n337,339,1.0\n337,340,1.5\n337,341,2.0\n337,342,2.5\n337,343,3.0\n337,344,3.5\n337,345,4.0\n337,346,4.5\n337,347,5.0\n337,348,5.5\n337,349,6.0\n337,350,6.5\n337,351,6.0\n337,352,5.5\n337,353,5.0\n337,354,4.5\n337,355,4.0\n337,356,3.5\n337,357,3.0\n337,358,2.5\n337,359,2.0\n337,360,1.5\n337,361,1.0\n337,362,0.5\n337,363,1.0\n337,364,1.5\n337,365,2.0\n337,366,2.5\n337,367,3.0\n337,368,3.5\n337,369,4.0\n337,370,4.5\n337,371,5.0\n337,372,5.5\n337,373,6.0\n337,374,6.5\n337,375,7.0\n337,376,6.5\n337,377,6.0\n337,378,5.5\n337,379,5.0\n337,380,4.5\n337,381,4.0\n337,382,3.5\n337,383,3.0\n337,384,2.5\n337,385,2.0\n337,386,1.5\n337,387,1.0\n337,388,1.5\n337,389,2.0\n337,390,2.5\n337,391,3.0\n337,392,3.5\n337,393,4.0\n337,394,4.5\n337,395,5.0\n337,396,5.5\n337,397,6.0\n337,398,6.5\n337,399,7.0\n337,400,7.5\n337,401,7.0\n337,402,6.5\n337,403,6.0\n337,404,5.5\n337,405,5.0\n337,406,4.5\n337,407,4.0\n337,408,3.5\n337,409,3.0\n337,410,2.5\n337,411,2.0\n337,412,1.5\n337,413,2.0\n337,414,2.5\n337,415,3.0\n337,416,3.5\n337,417,4.0\n337,418,4.5\n337,419,5.0\n337,420,5.5\n337,421,6.0\n337,422,6.5\n337,423,7.0\n337,424,7.5\n337,425,8.0\n337,426,7.5\n337,427,7.0\n337,428,6.5\n337,429,6.0\n337,430,5.5\n337,431,5.0\n337,432,4.5\n337,433,4.0\n337,434,3.5\n337,435,3.0\n337,436,2.5\n337,437,2.0\n337,438,2.5\n337,439,3.0\n337,440,3.5\n337,441,4.0\n337,442,4.5\n337,443,5.0\n337,444,5.5\n337,445,6.0\n337,446,6.5\n337,447,7.0\n337,448,7.5\n337,449,8.0\n337,450,8.5\n337,451,8.0\n337,452,7.5\n337,453,7.0\n337,454,6.5\n337,455,6.0\n337,456,5.5\n337,457,5.0\n337,458,4.5\n337,459,4.0\n337,460,3.5\n337,461,3.0\n337,462,2.5\n337,463,3.0\n337,464,3.5\n337,465,4.0\n337,466,4.5\n337,467,5.0\n337,468,5.5\n337,469,6.0\n337,470,6.5\n337,471,7.0\n337,472,7.5\n337,473,8.0\n337,474,8.5\n337,475,9.0\n337,476,8.5\n337,477,8.0\n337,478,7.5\n337,479,7.0\n337,480,6.5\n337,481,6.0\n337,482,5.5\n337,483,5.0\n337,484,4.5\n337,485,4.0\n337,486,3.5\n337,487,3.0\n337,488,3.5\n337,489,4.0\n337,490,4.5\n337,491,5.0\n337,492,5.5\n337,493,6.0\n337,494,6.5\n337,495,7.0\n337,496,7.5\n337,497,8.0\n337,498,8.5\n337,499,9.0\n337,500,9.5\n337,501,9.0\n337,502,8.5\n337,503,8.0\n337,504,7.5\n337,505,7.0\n337,506,6.5\n337,507,6.0\n337,508,5.5\n337,509,5.0\n337,510,4.5\n337,511,4.0\n337,512,3.5\n337,513,4.0\n337,514,4.5\n337,515,5.0\n337,516,5.5\n337,517,6.0\n337,518,6.5\n337,519,7.0\n337,520,7.5\n337,521,8.0\n337,522,8.5\n337,523,9.0\n337,524,9.5\n337,525,10.0\n337,526,9.5\n337,527,9.0\n337,528,8.5\n337,529,8.0\n337,530,7.5\n337,531,7.0\n337,532,6.5\n337,533,6.0\n337,534,5.5\n337,535,5.0\n337,536,4.5\n337,537,4.0\n337,538,4.5\n337,539,5.0\n337,540,5.5\n337,541,6.0\n337,542,6.5\n337,543,7.0\n337,544,7.5\n337,545,8.0\n337,546,8.5\n337,547,9.0\n337,548,9.5\n337,549,10.0\n337,550,10.5\n337,551,10.0\n337,552,9.5\n337,553,9.0\n337,554,8.5\n337,555,8.0\n337,556,7.5\n337,557,7.0\n337,558,6.5\n337,559,6.0\n337,560,5.5\n337,561,5.0\n337,562,4.5\n337,563,5.0\n337,564,5.5\n337,565,6.0\n337,566,6.5\n337,567,7.0\n337,568,7.5\n337,569,8.0\n337,570,8.5\n337,571,9.0\n337,572,9.5\n337,573,10.0\n337,574,10.5\n337,575,11.0\n337,576,10.5\n337,577,10.0\n337,578,9.5\n337,579,9.0\n337,580,8.5\n337,581,8.0\n337,582,7.5\n337,583,7.0\n337,584,6.5\n337,585,6.0\n337,586,5.5\n337,587,5.0\n337,588,5.5\n337,589,6.0\n337,590,6.5\n337,591,7.0\n337,592,7.5\n337,593,8.0\n337,594,8.5\n337,595,9.0\n337,596,9.5\n337,597,10.0\n337,598,10.5\n337,599,11.0\n337,600,11.5\n337,601,11.0\n337,602,10.5\n337,603,10.0\n337,604,9.5\n337,605,9.0\n337,606,8.5\n337,607,8.0\n337,608,7.5\n337,609,7.0\n337,610,6.5\n337,611,6.0\n337,612,5.5\n337,613,6.0\n337,614,6.5\n337,615,7.0\n337,616,7.5\n337,617,8.0\n337,618,8.5\n337,619,9.0\n337,620,9.5\n337,621,10.0\n337,622,10.5\n337,623,11.0\n337,624,11.5\n338,0,13.0\n338,1,12.5\n338,2,12.0\n338,3,11.5\n338,4,11.0\n338,5,10.5\n338,6,10.0\n338,7,9.5\n338,8,9.0\n338,9,8.5\n338,10,8.0\n338,11,7.5\n338,12,7.0\n338,13,6.5\n338,14,7.0\n338,15,7.5\n338,16,8.0\n338,17,8.5\n338,18,9.0\n338,19,9.5\n338,20,10.0\n338,21,10.5\n338,22,11.0\n338,23,11.5\n338,24,12.0\n338,25,12.5\n338,26,12.0\n338,27,11.5\n338,28,11.0\n338,29,10.5\n338,30,10.0\n338,31,9.5\n338,32,9.0\n338,33,8.5\n338,34,8.0\n338,35,7.5\n338,36,7.0\n338,37,6.5\n338,38,6.0\n338,39,6.5\n338,40,7.0\n338,41,7.5\n338,42,8.0\n338,43,8.5\n338,44,9.0\n338,45,9.5\n338,46,10.0\n338,47,10.5\n338,48,11.0\n338,49,11.5\n338,50,12.0\n338,51,11.5\n338,52,11.0\n338,53,10.5\n338,54,10.0\n338,55,9.5\n338,56,9.0\n338,57,8.5\n338,58,8.0\n338,59,7.5\n338,60,7.0\n338,61,6.5\n338,62,6.0\n338,63,5.5\n338,64,6.0\n338,65,6.5\n338,66,7.0\n338,67,7.5\n338,68,8.0\n338,69,8.5\n338,70,9.0\n338,71,9.5\n338,72,10.0\n338,73,10.5\n338,74,11.0\n338,75,11.5\n338,76,11.0\n338,77,10.5\n338,78,10.0\n338,79,9.5\n338,80,9.0\n338,81,8.5\n338,82,8.0\n338,83,7.5\n338,84,7.0\n338,85,6.5\n338,86,6.0\n338,87,5.5\n338,88,5.0\n338,89,5.5\n338,90,6.0\n338,91,6.5\n338,92,7.0\n338,93,7.5\n338,94,8.0\n338,95,8.5\n338,96,9.0\n338,97,9.5\n338,98,10.0\n338,99,10.5\n338,100,11.0\n338,101,10.5\n338,102,10.0\n338,103,9.5\n338,104,9.0\n338,105,8.5\n338,106,8.0\n338,107,7.5\n338,108,7.0\n338,109,6.5\n338,110,6.0\n338,111,5.5\n338,112,5.0\n338,113,4.5\n338,114,5.0\n338,115,5.5\n338,116,6.0\n338,117,6.5\n338,118,7.0\n338,119,7.5\n338,120,8.0\n338,121,8.5\n338,122,9.0\n338,123,9.5\n338,124,10.0\n338,125,10.5\n338,126,10.0\n338,127,9.5\n338,128,9.0\n338,129,8.5\n338,130,8.0\n338,131,7.5\n338,132,7.0\n338,133,6.5\n338,134,6.0\n338,135,5.5\n338,136,5.0\n338,137,4.5\n338,138,4.0\n338,139,4.5\n338,140,5.0\n338,141,5.5\n338,142,6.0\n338,143,6.5\n338,144,7.0\n338,145,7.5\n338,146,8.0\n338,147,8.5\n338,148,9.0\n338,149,9.5\n338,150,10.0\n338,151,9.5\n338,152,9.0\n338,153,8.5\n338,154,8.0\n338,155,7.5\n338,156,7.0\n338,157,6.5\n338,158,6.0\n338,159,5.5\n338,160,5.0\n338,161,4.5\n338,162,4.0\n338,163,3.5\n338,164,4.0\n338,165,4.5\n338,166,5.0\n338,167,5.5\n338,168,6.0\n338,169,6.5\n338,170,7.0\n338,171,7.5\n338,172,8.0\n338,173,8.5\n338,174,9.0\n338,175,9.5\n338,176,9.0\n338,177,8.5\n338,178,8.0\n338,179,7.5\n338,180,7.0\n338,181,6.5\n338,182,6.0\n338,183,5.5\n338,184,5.0\n338,185,4.5\n338,186,4.0\n338,187,3.5\n338,188,3.0\n338,189,3.5\n338,190,4.0\n338,191,4.5\n338,192,5.0\n338,193,5.5\n338,194,6.0\n338,195,6.5\n338,196,7.0\n338,197,7.5\n338,198,8.0\n338,199,8.5\n338,200,9.0\n338,201,8.5\n338,202,8.0\n338,203,7.5\n338,204,7.0\n338,205,6.5\n338,206,6.0\n338,207,5.5\n338,208,5.0\n338,209,4.5\n338,210,4.0\n338,211,3.5\n338,212,3.0\n338,213,2.5\n338,214,3.0\n338,215,3.5\n338,216,4.0\n338,217,4.5\n338,218,5.0\n338,219,5.5\n338,220,6.0\n338,221,6.5\n338,222,7.0\n338,223,7.5\n338,224,8.0\n338,225,8.5\n338,226,8.0\n338,227,7.5\n338,228,7.0\n338,229,6.5\n338,230,6.0\n338,231,5.5\n338,232,5.0\n338,233,4.5\n338,234,4.0\n338,235,3.5\n338,236,3.0\n338,237,2.5\n338,238,2.0\n338,239,2.5\n338,240,3.0\n338,241,3.5\n338,242,4.0\n338,243,4.5\n338,244,5.0\n338,245,5.5\n338,246,6.0\n338,247,6.5\n338,248,7.0\n338,249,7.5\n338,250,8.0\n338,251,7.5\n338,252,7.0\n338,253,6.5\n338,254,6.0\n338,255,5.5\n338,256,5.0\n338,257,4.5\n338,258,4.0\n338,259,3.5\n338,260,3.0\n338,261,2.5\n338,262,2.0\n338,263,1.5\n338,264,2.0\n338,265,2.5\n338,266,3.0\n338,267,3.5\n338,268,4.0\n338,269,4.5\n338,270,5.0\n338,271,5.5\n338,272,6.0\n338,273,6.5\n338,274,7.0\n338,275,7.5\n338,276,7.0\n338,277,6.5\n338,278,6.0\n338,279,5.5\n338,280,5.0\n338,281,4.5\n338,282,4.0\n338,283,3.5\n338,284,3.0\n338,285,2.5\n338,286,2.0\n338,287,1.5\n338,288,1.0\n338,289,1.5\n338,290,2.0\n338,291,2.5\n338,292,3.0\n338,293,3.5\n338,294,4.0\n338,295,4.5\n338,296,5.0\n338,297,5.5\n338,298,6.0\n338,299,6.5\n338,300,7.0\n338,301,6.5\n338,302,6.0\n338,303,5.5\n338,304,5.0\n338,305,4.5\n338,306,4.0\n338,307,3.5\n338,308,3.0\n338,309,2.5\n338,310,2.0\n338,311,1.5\n338,312,1.0\n338,313,0.5\n338,314,1.0\n338,315,1.5\n338,316,2.0\n338,317,2.5\n338,318,3.0\n338,319,3.5\n338,320,4.0\n338,321,4.5\n338,322,5.0\n338,323,5.5\n338,324,6.0\n338,325,6.5\n338,326,6.0\n338,327,5.5\n338,328,5.0\n338,329,4.5\n338,330,4.0\n338,331,3.5\n338,332,3.0\n338,333,2.5\n338,334,2.0\n338,335,1.5\n338,336,1.0\n338,337,0.5\n338,338,0\n338,339,0.5\n338,340,1.0\n338,341,1.5\n338,342,2.0\n338,343,2.5\n338,344,3.0\n338,345,3.5\n338,346,4.0\n338,347,4.5\n338,348,5.0\n338,349,5.5\n338,350,7.0\n338,351,6.5\n338,352,6.0\n338,353,5.5\n338,354,5.0\n338,355,4.5\n338,356,4.0\n338,357,3.5\n338,358,3.0\n338,359,2.5\n338,360,2.0\n338,361,1.5\n338,362,1.0\n338,363,0.5\n338,364,1.0\n338,365,1.5\n338,366,2.0\n338,367,2.5\n338,368,3.0\n338,369,3.5\n338,370,4.0\n338,371,4.5\n338,372,5.0\n338,373,5.5\n338,374,6.0\n338,375,7.5\n338,376,7.0\n338,377,6.5\n338,378,6.0\n338,379,5.5\n338,380,5.0\n338,381,4.5\n338,382,4.0\n338,383,3.5\n338,384,3.0\n338,385,2.5\n338,386,2.0\n338,387,1.5\n338,388,1.0\n338,389,1.5\n338,390,2.0\n338,391,2.5\n338,392,3.0\n338,393,3.5\n338,394,4.0\n338,395,4.5\n338,396,5.0\n338,397,5.5\n338,398,6.0\n338,399,6.5\n338,400,8.0\n338,401,7.5\n338,402,7.0\n338,403,6.5\n338,404,6.0\n338,405,5.5\n338,406,5.0\n338,407,4.5\n338,408,4.0\n338,409,3.5\n338,410,3.0\n338,411,2.5\n338,412,2.0\n338,413,1.5\n338,414,2.0\n338,415,2.5\n338,416,3.0\n338,417,3.5\n338,418,4.0\n338,419,4.5\n338,420,5.0\n338,421,5.5\n338,422,6.0\n338,423,6.5\n338,424,7.0\n338,425,8.5\n338,426,8.0\n338,427,7.5\n338,428,7.0\n338,429,6.5\n338,430,6.0\n338,431,5.5\n338,432,5.0\n338,433,4.5\n338,434,4.0\n338,435,3.5\n338,436,3.0\n338,437,2.5\n338,438,2.0\n338,439,2.5\n338,440,3.0\n338,441,3.5\n338,442,4.0\n338,443,4.5\n338,444,5.0\n338,445,5.5\n338,446,6.0\n338,447,6.5\n338,448,7.0\n338,449,7.5\n338,450,9.0\n338,451,8.5\n338,452,8.0\n338,453,7.5\n338,454,7.0\n338,455,6.5\n338,456,6.0\n338,457,5.5\n338,458,5.0\n338,459,4.5\n338,460,4.0\n338,461,3.5\n338,462,3.0\n338,463,2.5\n338,464,3.0\n338,465,3.5\n338,466,4.0\n338,467,4.5\n338,468,5.0\n338,469,5.5\n338,470,6.0\n338,471,6.5\n338,472,7.0\n338,473,7.5\n338,474,8.0\n338,475,9.5\n338,476,9.0\n338,477,8.5\n338,478,8.0\n338,479,7.5\n338,480,7.0\n338,481,6.5\n338,482,6.0\n338,483,5.5\n338,484,5.0\n338,485,4.5\n338,486,4.0\n338,487,3.5\n338,488,3.0\n338,489,3.5\n338,490,4.0\n338,491,4.5\n338,492,5.0\n338,493,5.5\n338,494,6.0\n338,495,6.5\n338,496,7.0\n338,497,7.5\n338,498,8.0\n338,499,8.5\n338,500,10.0\n338,501,9.5\n338,502,9.0\n338,503,8.5\n338,504,8.0\n338,505,7.5\n338,506,7.0\n338,507,6.5\n338,508,6.0\n338,509,5.5\n338,510,5.0\n338,511,4.5\n338,512,4.0\n338,513,3.5\n338,514,4.0\n338,515,4.5\n338,516,5.0\n338,517,5.5\n338,518,6.0\n338,519,6.5\n338,520,7.0\n338,521,7.5\n338,522,8.0\n338,523,8.5\n338,524,9.0\n338,525,10.5\n338,526,10.0\n338,527,9.5\n338,528,9.0\n338,529,8.5\n338,530,8.0\n338,531,7.5\n338,532,7.0\n338,533,6.5\n338,534,6.0\n338,535,5.5\n338,536,5.0\n338,537,4.5\n338,538,4.0\n338,539,4.5\n338,540,5.0\n338,541,5.5\n338,542,6.0\n338,543,6.5\n338,544,7.0\n338,545,7.5\n338,546,8.0\n338,547,8.5\n338,548,9.0\n338,549,9.5\n338,550,11.0\n338,551,10.5\n338,552,10.0\n338,553,9.5\n338,554,9.0\n338,555,8.5\n338,556,8.0\n338,557,7.5\n338,558,7.0\n338,559,6.5\n338,560,6.0\n338,561,5.5\n338,562,5.0\n338,563,4.5\n338,564,5.0\n338,565,5.5\n338,566,6.0\n338,567,6.5\n338,568,7.0\n338,569,7.5\n338,570,8.0\n338,571,8.5\n338,572,9.0\n338,573,9.5\n338,574,10.0\n338,575,11.5\n338,576,11.0\n338,577,10.5\n338,578,10.0\n338,579,9.5\n338,580,9.0\n338,581,8.5\n338,582,8.0\n338,583,7.5\n338,584,7.0\n338,585,6.5\n338,586,6.0\n338,587,5.5\n338,588,5.0\n338,589,5.5\n338,590,6.0\n338,591,6.5\n338,592,7.0\n338,593,7.5\n338,594,8.0\n338,595,8.5\n338,596,9.0\n338,597,9.5\n338,598,10.0\n338,599,10.5\n338,600,12.0\n338,601,11.5\n338,602,11.0\n338,603,10.5\n338,604,10.0\n338,605,9.5\n338,606,9.0\n338,607,8.5\n338,608,8.0\n338,609,7.5\n338,610,7.0\n338,611,6.5\n338,612,6.0\n338,613,5.5\n338,614,6.0\n338,615,6.5\n338,616,7.0\n338,617,7.5\n338,618,8.0\n338,619,8.5\n338,620,9.0\n338,621,9.5\n338,622,10.0\n338,623,10.5\n338,624,11.0\n339,0,13.5\n339,1,13.0\n339,2,12.5\n339,3,12.0\n339,4,11.5\n339,5,11.0\n339,6,10.5\n339,7,10.0\n339,8,9.5\n339,9,9.0\n339,10,8.5\n339,11,8.0\n339,12,7.5\n339,13,7.0\n339,14,6.5\n339,15,7.0\n339,16,7.5\n339,17,8.0\n339,18,8.5\n339,19,9.0\n339,20,9.5\n339,21,10.0\n339,22,10.5\n339,23,11.0\n339,24,11.5\n339,25,13.0\n339,26,12.5\n339,27,12.0\n339,28,11.5\n339,29,11.0\n339,30,10.5\n339,31,10.0\n339,32,9.5\n339,33,9.0\n339,34,8.5\n339,35,8.0\n339,36,7.5\n339,37,7.0\n339,38,6.5\n339,39,6.0\n339,40,6.5\n339,41,7.0\n339,42,7.5\n339,43,8.0\n339,44,8.5\n339,45,9.0\n339,46,9.5\n339,47,10.0\n339,48,10.5\n339,49,11.0\n339,50,12.5\n339,51,12.0\n339,52,11.5\n339,53,11.0\n339,54,10.5\n339,55,10.0\n339,56,9.5\n339,57,9.0\n339,58,8.5\n339,59,8.0\n339,60,7.5\n339,61,7.0\n339,62,6.5\n339,63,6.0\n339,64,5.5\n339,65,6.0\n339,66,6.5\n339,67,7.0\n339,68,7.5\n339,69,8.0\n339,70,8.5\n339,71,9.0\n339,72,9.5\n339,73,10.0\n339,74,10.5\n339,75,12.0\n339,76,11.5\n339,77,11.0\n339,78,10.5\n339,79,10.0\n339,80,9.5\n339,81,9.0\n339,82,8.5\n339,83,8.0\n339,84,7.5\n339,85,7.0\n339,86,6.5\n339,87,6.0\n339,88,5.5\n339,89,5.0\n339,90,5.5\n339,91,6.0\n339,92,6.5\n339,93,7.0\n339,94,7.5\n339,95,8.0\n339,96,8.5\n339,97,9.0\n339,98,9.5\n339,99,10.0\n339,100,11.5\n339,101,11.0\n339,102,10.5\n339,103,10.0\n339,104,9.5\n339,105,9.0\n339,106,8.5\n339,107,8.0\n339,108,7.5\n339,109,7.0\n339,110,6.5\n339,111,6.0\n339,112,5.5\n339,113,5.0\n339,114,4.5\n339,115,5.0\n339,116,5.5\n339,117,6.0\n339,118,6.5\n339,119,7.0\n339,120,7.5\n339,121,8.0\n339,122,8.5\n339,123,9.0\n339,124,9.5\n339,125,11.0\n339,126,10.5\n339,127,10.0\n339,128,9.5\n339,129,9.0\n339,130,8.5\n339,131,8.0\n339,132,7.5\n339,133,7.0\n339,134,6.5\n339,135,6.0\n339,136,5.5\n339,137,5.0\n339,138,4.5\n339,139,4.0\n339,140,4.5\n339,141,5.0\n339,142,5.5\n339,143,6.0\n339,144,6.5\n339,145,7.0\n339,146,7.5\n339,147,8.0\n339,148,8.5\n339,149,9.0\n339,150,10.5\n339,151,10.0\n339,152,9.5\n339,153,9.0\n339,154,8.5\n339,155,8.0\n339,156,7.5\n339,157,7.0\n339,158,6.5\n339,159,6.0\n339,160,5.5\n339,161,5.0\n339,162,4.5\n339,163,4.0\n339,164,3.5\n339,165,4.0\n339,166,4.5\n339,167,5.0\n339,168,5.5\n339,169,6.0\n339,170,6.5\n339,171,7.0\n339,172,7.5\n339,173,8.0\n339,174,8.5\n339,175,10.0\n339,176,9.5\n339,177,9.0\n339,178,8.5\n339,179,8.0\n339,180,7.5\n339,181,7.0\n339,182,6.5\n339,183,6.0\n339,184,5.5\n339,185,5.0\n339,186,4.5\n339,187,4.0\n339,188,3.5\n339,189,3.0\n339,190,3.5\n339,191,4.0\n339,192,4.5\n339,193,5.0\n339,194,5.5\n339,195,6.0\n339,196,6.5\n339,197,7.0\n339,198,7.5\n339,199,8.0\n339,200,9.5\n339,201,9.0\n339,202,8.5\n339,203,8.0\n339,204,7.5\n339,205,7.0\n339,206,6.5\n339,207,6.0\n339,208,5.5\n339,209,5.0\n339,210,4.5\n339,211,4.0\n339,212,3.5\n339,213,3.0\n339,214,2.5\n339,215,3.0\n339,216,3.5\n339,217,4.0\n339,218,4.5\n339,219,5.0\n339,220,5.5\n339,221,6.0\n339,222,6.5\n339,223,7.0\n339,224,7.5\n339,225,9.0\n339,226,8.5\n339,227,8.0\n339,228,7.5\n339,229,7.0\n339,230,6.5\n339,231,6.0\n339,232,5.5\n339,233,5.0\n339,234,4.5\n339,235,4.0\n339,236,3.5\n339,237,3.0\n339,238,2.5\n339,239,2.0\n339,240,2.5\n339,241,3.0\n339,242,3.5\n339,243,4.0\n339,244,4.5\n339,245,5.0\n339,246,5.5\n339,247,6.0\n339,248,6.5\n339,249,7.0\n339,250,8.5\n339,251,8.0\n339,252,7.5\n339,253,7.0\n339,254,6.5\n339,255,6.0\n339,256,5.5\n339,257,5.0\n339,258,4.5\n339,259,4.0\n339,260,3.5\n339,261,3.0\n339,262,2.5\n339,263,2.0\n339,264,1.5\n339,265,2.0\n339,266,2.5\n339,267,3.0\n339,268,3.5\n339,269,4.0\n339,270,4.5\n339,271,5.0\n339,272,5.5\n339,273,6.0\n339,274,6.5\n339,275,8.0\n339,276,7.5\n339,277,7.0\n339,278,6.5\n339,279,6.0\n339,280,5.5\n339,281,5.0\n339,282,4.5\n339,283,4.0\n339,284,3.5\n339,285,3.0\n339,286,2.5\n339,287,2.0\n339,288,1.5\n339,289,1.0\n339,290,1.5\n339,291,2.0\n339,292,2.5\n339,293,3.0\n339,294,3.5\n339,295,4.0\n339,296,4.5\n339,297,5.0\n339,298,5.5\n339,299,6.0\n339,300,7.5\n339,301,7.0\n339,302,6.5\n339,303,6.0\n339,304,5.5\n339,305,5.0\n339,306,4.5\n339,307,4.0\n339,308,3.5\n339,309,3.0\n339,310,2.5\n339,311,2.0\n339,312,1.5\n339,313,1.0\n339,314,0.5\n339,315,1.0\n339,316,1.5\n339,317,2.0\n339,318,2.5\n339,319,3.0\n339,320,3.5\n339,321,4.0\n339,322,4.5\n339,323,5.0\n339,324,5.5\n339,325,7.0\n339,326,6.5\n339,327,6.0\n339,328,5.5\n339,329,5.0\n339,330,4.5\n339,331,4.0\n339,332,3.5\n339,333,3.0\n339,334,2.5\n339,335,2.0\n339,336,1.5\n339,337,1.0\n339,338,0.5\n339,339,0\n339,340,0.5\n339,341,1.0\n339,342,1.5\n339,343,2.0\n339,344,2.5\n339,345,3.0\n339,346,3.5\n339,347,4.0\n339,348,4.5\n339,349,5.0\n339,350,7.5\n339,351,7.0\n339,352,6.5\n339,353,6.0\n339,354,5.5\n339,355,5.0\n339,356,4.5\n339,357,4.0\n339,358,3.5\n339,359,3.0\n339,360,2.5\n339,361,2.0\n339,362,1.5\n339,363,1.0\n339,364,0.5\n339,365,1.0\n339,366,1.5\n339,367,2.0\n339,368,2.5\n339,369,3.0\n339,370,3.5\n339,371,4.0\n339,372,4.5\n339,373,5.0\n339,374,5.5\n339,375,8.0\n339,376,7.5\n339,377,7.0\n339,378,6.5\n339,379,6.0\n339,380,5.5\n339,381,5.0\n339,382,4.5\n339,383,4.0\n339,384,3.5\n339,385,3.0\n339,386,2.5\n339,387,2.0\n339,388,1.5\n339,389,1.0\n339,390,1.5\n339,391,2.0\n339,392,2.5\n339,393,3.0\n339,394,3.5\n339,395,4.0\n339,396,4.5\n339,397,5.0\n339,398,5.5\n339,399,6.0\n339,400,8.5\n339,401,8.0\n339,402,7.5\n339,403,7.0\n339,404,6.5\n339,405,6.0\n339,406,5.5\n339,407,5.0\n339,408,4.5\n339,409,4.0\n339,410,3.5\n339,411,3.0\n339,412,2.5\n339,413,2.0\n339,414,1.5\n339,415,2.0\n339,416,2.5\n339,417,3.0\n339,418,3.5\n339,419,4.0\n339,420,4.5\n339,421,5.0\n339,422,5.5\n339,423,6.0\n339,424,6.5\n339,425,9.0\n339,426,8.5\n339,427,8.0\n339,428,7.5\n339,429,7.0\n339,430,6.5\n339,431,6.0\n339,432,5.5\n339,433,5.0\n339,434,4.5\n339,435,4.0\n339,436,3.5\n339,437,3.0\n339,438,2.5\n339,439,2.0\n339,440,2.5\n339,441,3.0\n339,442,3.5\n339,443,4.0\n339,444,4.5\n339,445,5.0\n339,446,5.5\n339,447,6.0\n339,448,6.5\n339,449,7.0\n339,450,9.5\n339,451,9.0\n339,452,8.5\n339,453,8.0\n339,454,7.5\n339,455,7.0\n339,456,6.5\n339,457,6.0\n339,458,5.5\n339,459,5.0\n339,460,4.5\n339,461,4.0\n339,462,3.5\n339,463,3.0\n339,464,2.5\n339,465,3.0\n339,466,3.5\n339,467,4.0\n339,468,4.5\n339,469,5.0\n339,470,5.5\n339,471,6.0\n339,472,6.5\n339,473,7.0\n339,474,7.5\n339,475,10.0\n339,476,9.5\n339,477,9.0\n339,478,8.5\n339,479,8.0\n339,480,7.5\n339,481,7.0\n339,482,6.5\n339,483,6.0\n339,484,5.5\n339,485,5.0\n339,486,4.5\n339,487,4.0\n339,488,3.5\n339,489,3.0\n339,490,3.5\n339,491,4.0\n339,492,4.5\n339,493,5.0\n339,494,5.5\n339,495,6.0\n339,496,6.5\n339,497,7.0\n339,498,7.5\n339,499,8.0\n339,500,10.5\n339,501,10.0\n339,502,9.5\n339,503,9.0\n339,504,8.5\n339,505,8.0\n339,506,7.5\n339,507,7.0\n339,508,6.5\n339,509,6.0\n339,510,5.5\n339,511,5.0\n339,512,4.5\n339,513,4.0\n339,514,3.5\n339,515,4.0\n339,516,4.5\n339,517,5.0\n339,518,5.5\n339,519,6.0\n339,520,6.5\n339,521,7.0\n339,522,7.5\n339,523,8.0\n339,524,8.5\n339,525,11.0\n339,526,10.5\n339,527,10.0\n339,528,9.5\n339,529,9.0\n339,530,8.5\n339,531,8.0\n339,532,7.5\n339,533,7.0\n339,534,6.5\n339,535,6.0\n339,536,5.5\n339,537,5.0\n339,538,4.5\n339,539,4.0\n339,540,4.5\n339,541,5.0\n339,542,5.5\n339,543,6.0\n339,544,6.5\n339,545,7.0\n339,546,7.5\n339,547,8.0\n339,548,8.5\n339,549,9.0\n339,550,11.5\n339,551,11.0\n339,552,10.5\n339,553,10.0\n339,554,9.5\n339,555,9.0\n339,556,8.5\n339,557,8.0\n339,558,7.5\n339,559,7.0\n339,560,6.5\n339,561,6.0\n339,562,5.5\n339,563,5.0\n339,564,4.5\n339,565,5.0\n339,566,5.5\n339,567,6.0\n339,568,6.5\n339,569,7.0\n339,570,7.5\n339,571,8.0\n339,572,8.5\n339,573,9.0\n339,574,9.5\n339,575,12.0\n339,576,11.5\n339,577,11.0\n339,578,10.5\n339,579,10.0\n339,580,9.5\n339,581,9.0\n339,582,8.5\n339,583,8.0\n339,584,7.5\n339,585,7.0\n339,586,6.5\n339,587,6.0\n339,588,5.5\n339,589,5.0\n339,590,5.5\n339,591,6.0\n339,592,6.5\n339,593,7.0\n339,594,7.5\n339,595,8.0\n339,596,8.5\n339,597,9.0\n339,598,9.5\n339,599,10.0\n339,600,12.5\n339,601,12.0\n339,602,11.5\n339,603,11.0\n339,604,10.5\n339,605,10.0\n339,606,9.5\n339,607,9.0\n339,608,8.5\n339,609,8.0\n339,610,7.5\n339,611,7.0\n339,612,6.5\n339,613,6.0\n339,614,5.5\n339,615,6.0\n339,616,6.5\n339,617,7.0\n339,618,7.5\n339,619,8.0\n339,620,8.5\n339,621,9.0\n339,622,9.5\n339,623,10.0\n339,624,10.5\n340,0,14.0\n340,1,13.5\n340,2,13.0\n340,3,12.5\n340,4,12.0\n340,5,11.5\n340,6,11.0\n340,7,10.5\n340,8,10.0\n340,9,9.5\n340,10,9.0\n340,11,8.5\n340,12,8.0\n340,13,7.5\n340,14,7.0\n340,15,6.5\n340,16,7.0\n340,17,7.5\n340,18,8.0\n340,19,8.5\n340,20,9.0\n340,21,9.5\n340,22,10.0\n340,23,10.5\n340,24,11.0\n340,25,13.5\n340,26,13.0\n340,27,12.5\n340,28,12.0\n340,29,11.5\n340,30,11.0\n340,31,10.5\n340,32,10.0\n340,33,9.5\n340,34,9.0\n340,35,8.5\n340,36,8.0\n340,37,7.5\n340,38,7.0\n340,39,6.5\n340,40,6.0\n340,41,6.5\n340,42,7.0\n340,43,7.5\n340,44,8.0\n340,45,8.5\n340,46,9.0\n340,47,9.5\n340,48,10.0\n340,49,10.5\n340,50,13.0\n340,51,12.5\n340,52,12.0\n340,53,11.5\n340,54,11.0\n340,55,10.5\n340,56,10.0\n340,57,9.5\n340,58,9.0\n340,59,8.5\n340,60,8.0\n340,61,7.5\n340,62,7.0\n340,63,6.5\n340,64,6.0\n340,65,5.5\n340,66,6.0\n340,67,6.5\n340,68,7.0\n340,69,7.5\n340,70,8.0\n340,71,8.5\n340,72,9.0\n340,73,9.5\n340,74,10.0\n340,75,12.5\n340,76,12.0\n340,77,11.5\n340,78,11.0\n340,79,10.5\n340,80,10.0\n340,81,9.5\n340,82,9.0\n340,83,8.5\n340,84,8.0\n340,85,7.5\n340,86,7.0\n340,87,6.5\n340,88,6.0\n340,89,5.5\n340,90,5.0\n340,91,5.5\n340,92,6.0\n340,93,6.5\n340,94,7.0\n340,95,7.5\n340,96,8.0\n340,97,8.5\n340,98,9.0\n340,99,9.5\n340,100,12.0\n340,101,11.5\n340,102,11.0\n340,103,10.5\n340,104,10.0\n340,105,9.5\n340,106,9.0\n340,107,8.5\n340,108,8.0\n340,109,7.5\n340,110,7.0\n340,111,6.5\n340,112,6.0\n340,113,5.5\n340,114,5.0\n340,115,4.5\n340,116,5.0\n340,117,5.5\n340,118,6.0\n340,119,6.5\n340,120,7.0\n340,121,7.5\n340,122,8.0\n340,123,8.5\n340,124,9.0\n340,125,11.5\n340,126,11.0\n340,127,10.5\n340,128,10.0\n340,129,9.5\n340,130,9.0\n340,131,8.5\n340,132,8.0\n340,133,7.5\n340,134,7.0\n340,135,6.5\n340,136,6.0\n340,137,5.5\n340,138,5.0\n340,139,4.5\n340,140,4.0\n340,141,4.5\n340,142,5.0\n340,143,5.5\n340,144,6.0\n340,145,6.5\n340,146,7.0\n340,147,7.5\n340,148,8.0\n340,149,8.5\n340,150,11.0\n340,151,10.5\n340,152,10.0\n340,153,9.5\n340,154,9.0\n340,155,8.5\n340,156,8.0\n340,157,7.5\n340,158,7.0\n340,159,6.5\n340,160,6.0\n340,161,5.5\n340,162,5.0\n340,163,4.5\n340,164,4.0\n340,165,3.5\n340,166,4.0\n340,167,4.5\n340,168,5.0\n340,169,5.5\n340,170,6.0\n340,171,6.5\n340,172,7.0\n340,173,7.5\n340,174,8.0\n340,175,10.5\n340,176,10.0\n340,177,9.5\n340,178,9.0\n340,179,8.5\n340,180,8.0\n340,181,7.5\n340,182,7.0\n340,183,6.5\n340,184,6.0\n340,185,5.5\n340,186,5.0\n340,187,4.5\n340,188,4.0\n340,189,3.5\n340,190,3.0\n340,191,3.5\n340,192,4.0\n340,193,4.5\n340,194,5.0\n340,195,5.5\n340,196,6.0\n340,197,6.5\n340,198,7.0\n340,199,7.5\n340,200,10.0\n340,201,9.5\n340,202,9.0\n340,203,8.5\n340,204,8.0\n340,205,7.5\n340,206,7.0\n340,207,6.5\n340,208,6.0\n340,209,5.5\n340,210,5.0\n340,211,4.5\n340,212,4.0\n340,213,3.5\n340,214,3.0\n340,215,2.5\n340,216,3.0\n340,217,3.5\n340,218,4.0\n340,219,4.5\n340,220,5.0\n340,221,5.5\n340,222,6.0\n340,223,6.5\n340,224,7.0\n340,225,9.5\n340,226,9.0\n340,227,8.5\n340,228,8.0\n340,229,7.5\n340,230,7.0\n340,231,6.5\n340,232,6.0\n340,233,5.5\n340,234,5.0\n340,235,4.5\n340,236,4.0\n340,237,3.5\n340,238,3.0\n340,239,2.5\n340,240,2.0\n340,241,2.5\n340,242,3.0\n340,243,3.5\n340,244,4.0\n340,245,4.5\n340,246,5.0\n340,247,5.5\n340,248,6.0\n340,249,6.5\n340,250,9.0\n340,251,8.5\n340,252,8.0\n340,253,7.5\n340,254,7.0\n340,255,6.5\n340,256,6.0\n340,257,5.5\n340,258,5.0\n340,259,4.5\n340,260,4.0\n340,261,3.5\n340,262,3.0\n340,263,2.5\n340,264,2.0\n340,265,1.5\n340,266,2.0\n340,267,2.5\n340,268,3.0\n340,269,3.5\n340,270,4.0\n340,271,4.5\n340,272,5.0\n340,273,5.5\n340,274,6.0\n340,275,8.5\n340,276,8.0\n340,277,7.5\n340,278,7.0\n340,279,6.5\n340,280,6.0\n340,281,5.5\n340,282,5.0\n340,283,4.5\n340,284,4.0\n340,285,3.5\n340,286,3.0\n340,287,2.5\n340,288,2.0\n340,289,1.5\n340,290,1.0\n340,291,1.5\n340,292,2.0\n340,293,2.5\n340,294,3.0\n340,295,3.5\n340,296,4.0\n340,297,4.5\n340,298,5.0\n340,299,5.5\n340,300,8.0\n340,301,7.5\n340,302,7.0\n340,303,6.5\n340,304,6.0\n340,305,5.5\n340,306,5.0\n340,307,4.5\n340,308,4.0\n340,309,3.5\n340,310,3.0\n340,311,2.5\n340,312,2.0\n340,313,1.5\n340,314,1.0\n340,315,0.5\n340,316,1.0\n340,317,1.5\n340,318,2.0\n340,319,2.5\n340,320,3.0\n340,321,3.5\n340,322,4.0\n340,323,4.5\n340,324,5.0\n340,325,7.5\n340,326,7.0\n340,327,6.5\n340,328,6.0\n340,329,5.5\n340,330,5.0\n340,331,4.5\n340,332,4.0\n340,333,3.5\n340,334,3.0\n340,335,2.5\n340,336,2.0\n340,337,1.5\n340,338,1.0\n340,339,0.5\n340,340,0\n340,341,0.5\n340,342,1.0\n340,343,1.5\n340,344,2.0\n340,345,2.5\n340,346,3.0\n340,347,3.5\n340,348,4.0\n340,349,4.5\n340,350,8.0\n340,351,7.5\n340,352,7.0\n340,353,6.5\n340,354,6.0\n340,355,5.5\n340,356,5.0\n340,357,4.5\n340,358,4.0\n340,359,3.5\n340,360,3.0\n340,361,2.5\n340,362,2.0\n340,363,1.5\n340,364,1.0\n340,365,0.5\n340,366,1.0\n340,367,1.5\n340,368,2.0\n340,369,2.5\n340,370,3.0\n340,371,3.5\n340,372,4.0\n340,373,4.5\n340,374,5.0\n340,375,8.5\n340,376,8.0\n340,377,7.5\n340,378,7.0\n340,379,6.5\n340,380,6.0\n340,381,5.5\n340,382,5.0\n340,383,4.5\n340,384,4.0\n340,385,3.5\n340,386,3.0\n340,387,2.5\n340,388,2.0\n340,389,1.5\n340,390,1.0\n340,391,1.5\n340,392,2.0\n340,393,2.5\n340,394,3.0\n340,395,3.5\n340,396,4.0\n340,397,4.5\n340,398,5.0\n340,399,5.5\n340,400,9.0\n340,401,8.5\n340,402,8.0\n340,403,7.5\n340,404,7.0\n340,405,6.5\n340,406,6.0\n340,407,5.5\n340,408,5.0\n340,409,4.5\n340,410,4.0\n340,411,3.5\n340,412,3.0\n340,413,2.5\n340,414,2.0\n340,415,1.5\n340,416,2.0\n340,417,2.5\n340,418,3.0\n340,419,3.5\n340,420,4.0\n340,421,4.5\n340,422,5.0\n340,423,5.5\n340,424,6.0\n340,425,9.5\n340,426,9.0\n340,427,8.5\n340,428,8.0\n340,429,7.5\n340,430,7.0\n340,431,6.5\n340,432,6.0\n340,433,5.5\n340,434,5.0\n340,435,4.5\n340,436,4.0\n340,437,3.5\n340,438,3.0\n340,439,2.5\n340,440,2.0\n340,441,2.5\n340,442,3.0\n340,443,3.5\n340,444,4.0\n340,445,4.5\n340,446,5.0\n340,447,5.5\n340,448,6.0\n340,449,6.5\n340,450,10.0\n340,451,9.5\n340,452,9.0\n340,453,8.5\n340,454,8.0\n340,455,7.5\n340,456,7.0\n340,457,6.5\n340,458,6.0\n340,459,5.5\n340,460,5.0\n340,461,4.5\n340,462,4.0\n340,463,3.5\n340,464,3.0\n340,465,2.5\n340,466,3.0\n340,467,3.5\n340,468,4.0\n340,469,4.5\n340,470,5.0\n340,471,5.5\n340,472,6.0\n340,473,6.5\n340,474,7.0\n340,475,10.5\n340,476,10.0\n340,477,9.5\n340,478,9.0\n340,479,8.5\n340,480,8.0\n340,481,7.5\n340,482,7.0\n340,483,6.5\n340,484,6.0\n340,485,5.5\n340,486,5.0\n340,487,4.5\n340,488,4.0\n340,489,3.5\n340,490,3.0\n340,491,3.5\n340,492,4.0\n340,493,4.5\n340,494,5.0\n340,495,5.5\n340,496,6.0\n340,497,6.5\n340,498,7.0\n340,499,7.5\n340,500,11.0\n340,501,10.5\n340,502,10.0\n340,503,9.5\n340,504,9.0\n340,505,8.5\n340,506,8.0\n340,507,7.5\n340,508,7.0\n340,509,6.5\n340,510,6.0\n340,511,5.5\n340,512,5.0\n340,513,4.5\n340,514,4.0\n340,515,3.5\n340,516,4.0\n340,517,4.5\n340,518,5.0\n340,519,5.5\n340,520,6.0\n340,521,6.5\n340,522,7.0\n340,523,7.5\n340,524,8.0\n340,525,11.5\n340,526,11.0\n340,527,10.5\n340,528,10.0\n340,529,9.5\n340,530,9.0\n340,531,8.5\n340,532,8.0\n340,533,7.5\n340,534,7.0\n340,535,6.5\n340,536,6.0\n340,537,5.5\n340,538,5.0\n340,539,4.5\n340,540,4.0\n340,541,4.5\n340,542,5.0\n340,543,5.5\n340,544,6.0\n340,545,6.5\n340,546,7.0\n340,547,7.5\n340,548,8.0\n340,549,8.5\n340,550,12.0\n340,551,11.5\n340,552,11.0\n340,553,10.5\n340,554,10.0\n340,555,9.5\n340,556,9.0\n340,557,8.5\n340,558,8.0\n340,559,7.5\n340,560,7.0\n340,561,6.5\n340,562,6.0\n340,563,5.5\n340,564,5.0\n340,565,4.5\n340,566,5.0\n340,567,5.5\n340,568,6.0\n340,569,6.5\n340,570,7.0\n340,571,7.5\n340,572,8.0\n340,573,8.5\n340,574,9.0\n340,575,12.5\n340,576,12.0\n340,577,11.5\n340,578,11.0\n340,579,10.5\n340,580,10.0\n340,581,9.5\n340,582,9.0\n340,583,8.5\n340,584,8.0\n340,585,7.5\n340,586,7.0\n340,587,6.5\n340,588,6.0\n340,589,5.5\n340,590,5.0\n340,591,5.5\n340,592,6.0\n340,593,6.5\n340,594,7.0\n340,595,7.5\n340,596,8.0\n340,597,8.5\n340,598,9.0\n340,599,9.5\n340,600,13.0\n340,601,12.5\n340,602,12.0\n340,603,11.5\n340,604,11.0\n340,605,10.5\n340,606,10.0\n340,607,9.5\n340,608,9.0\n340,609,8.5\n340,610,8.0\n340,611,7.5\n340,612,7.0\n340,613,6.5\n340,614,6.0\n340,615,5.5\n340,616,6.0\n340,617,6.5\n340,618,7.0\n340,619,7.5\n340,620,8.0\n340,621,8.5\n340,622,9.0\n340,623,9.5\n340,624,10.0\n341,0,14.5\n341,1,14.0\n341,2,13.5\n341,3,13.0\n341,4,12.5\n341,5,12.0\n341,6,11.5\n341,7,11.0\n341,8,10.5\n341,9,10.0\n341,10,9.5\n341,11,9.0\n341,12,8.5\n341,13,8.0\n341,14,7.5\n341,15,7.0\n341,16,6.5\n341,17,7.0\n341,18,7.5\n341,19,8.0\n341,20,8.5\n341,21,9.0\n341,22,9.5\n341,23,10.0\n341,24,10.5\n341,25,14.0\n341,26,13.5\n341,27,13.0\n341,28,12.5\n341,29,12.0\n341,30,11.5\n341,31,11.0\n341,32,10.5\n341,33,10.0\n341,34,9.5\n341,35,9.0\n341,36,8.5\n341,37,8.0\n341,38,7.5\n341,39,7.0\n341,40,6.5\n341,41,6.0\n341,42,6.5\n341,43,7.0\n341,44,7.5\n341,45,8.0\n341,46,8.5\n341,47,9.0\n341,48,9.5\n341,49,10.0\n341,50,13.5\n341,51,13.0\n341,52,12.5\n341,53,12.0\n341,54,11.5\n341,55,11.0\n341,56,10.5\n341,57,10.0\n341,58,9.5\n341,59,9.0\n341,60,8.5\n341,61,8.0\n341,62,7.5\n341,63,7.0\n341,64,6.5\n341,65,6.0\n341,66,5.5\n341,67,6.0\n341,68,6.5\n341,69,7.0\n341,70,7.5\n341,71,8.0\n341,72,8.5\n341,73,9.0\n341,74,9.5\n341,75,13.0\n341,76,12.5\n341,77,12.0\n341,78,11.5\n341,79,11.0\n341,80,10.5\n341,81,10.0\n341,82,9.5\n341,83,9.0\n341,84,8.5\n341,85,8.0\n341,86,7.5\n341,87,7.0\n341,88,6.5\n341,89,6.0\n341,90,5.5\n341,91,5.0\n341,92,5.5\n341,93,6.0\n341,94,6.5\n341,95,7.0\n341,96,7.5\n341,97,8.0\n341,98,8.5\n341,99,9.0\n341,100,12.5\n341,101,12.0\n341,102,11.5\n341,103,11.0\n341,104,10.5\n341,105,10.0\n341,106,9.5\n341,107,9.0\n341,108,8.5\n341,109,8.0\n341,110,7.5\n341,111,7.0\n341,112,6.5\n341,113,6.0\n341,114,5.5\n341,115,5.0\n341,116,4.5\n341,117,5.0\n341,118,5.5\n341,119,6.0\n341,120,6.5\n341,121,7.0\n341,122,7.5\n341,123,8.0\n341,124,8.5\n341,125,12.0\n341,126,11.5\n341,127,11.0\n341,128,10.5\n341,129,10.0\n341,130,9.5\n341,131,9.0\n341,132,8.5\n341,133,8.0\n341,134,7.5\n341,135,7.0\n341,136,6.5\n341,137,6.0\n341,138,5.5\n341,139,5.0\n341,140,4.5\n341,141,4.0\n341,142,4.5\n341,143,5.0\n341,144,5.5\n341,145,6.0\n341,146,6.5\n341,147,7.0\n341,148,7.5\n341,149,8.0\n341,150,11.5\n341,151,11.0\n341,152,10.5\n341,153,10.0\n341,154,9.5\n341,155,9.0\n341,156,8.5\n341,157,8.0\n341,158,7.5\n341,159,7.0\n341,160,6.5\n341,161,6.0\n341,162,5.5\n341,163,5.0\n341,164,4.5\n341,165,4.0\n341,166,3.5\n341,167,4.0\n341,168,4.5\n341,169,5.0\n341,170,5.5\n341,171,6.0\n341,172,6.5\n341,173,7.0\n341,174,7.5\n341,175,11.0\n341,176,10.5\n341,177,10.0\n341,178,9.5\n341,179,9.0\n341,180,8.5\n341,181,8.0\n341,182,7.5\n341,183,7.0\n341,184,6.5\n341,185,6.0\n341,186,5.5\n341,187,5.0\n341,188,4.5\n341,189,4.0\n341,190,3.5\n341,191,3.0\n341,192,3.5\n341,193,4.0\n341,194,4.5\n341,195,5.0\n341,196,5.5\n341,197,6.0\n341,198,6.5\n341,199,7.0\n341,200,10.5\n341,201,10.0\n341,202,9.5\n341,203,9.0\n341,204,8.5\n341,205,8.0\n341,206,7.5\n341,207,7.0\n341,208,6.5\n341,209,6.0\n341,210,5.5\n341,211,5.0\n341,212,4.5\n341,213,4.0\n341,214,3.5\n341,215,3.0\n341,216,2.5\n341,217,3.0\n341,218,3.5\n341,219,4.0\n341,220,4.5\n341,221,5.0\n341,222,5.5\n341,223,6.0\n341,224,6.5\n341,225,10.0\n341,226,9.5\n341,227,9.0\n341,228,8.5\n341,229,8.0\n341,230,7.5\n341,231,7.0\n341,232,6.5\n341,233,6.0\n341,234,5.5\n341,235,5.0\n341,236,4.5\n341,237,4.0\n341,238,3.5\n341,239,3.0\n341,240,2.5\n341,241,2.0\n341,242,2.5\n341,243,3.0\n341,244,3.5\n341,245,4.0\n341,246,4.5\n341,247,5.0\n341,248,5.5\n341,249,6.0\n341,250,9.5\n341,251,9.0\n341,252,8.5\n341,253,8.0\n341,254,7.5\n341,255,7.0\n341,256,6.5\n341,257,6.0\n341,258,5.5\n341,259,5.0\n341,260,4.5\n341,261,4.0\n341,262,3.5\n341,263,3.0\n341,264,2.5\n341,265,2.0\n341,266,1.5\n341,267,2.0\n341,268,2.5\n341,269,3.0\n341,270,3.5\n341,271,4.0\n341,272,4.5\n341,273,5.0\n341,274,5.5\n341,275,9.0\n341,276,8.5\n341,277,8.0\n341,278,7.5\n341,279,7.0\n341,280,6.5\n341,281,6.0\n341,282,5.5\n341,283,5.0\n341,284,4.5\n341,285,4.0\n341,286,3.5\n341,287,3.0\n341,288,2.5\n341,289,2.0\n341,290,1.5\n341,291,1.0\n341,292,1.5\n341,293,2.0\n341,294,2.5\n341,295,3.0\n341,296,3.5\n341,297,4.0\n341,298,4.5\n341,299,5.0\n341,300,8.5\n341,301,8.0\n341,302,7.5\n341,303,7.0\n341,304,6.5\n341,305,6.0\n341,306,5.5\n341,307,5.0\n341,308,4.5\n341,309,4.0\n341,310,3.5\n341,311,3.0\n341,312,2.5\n341,313,2.0\n341,314,1.5\n341,315,1.0\n341,316,0.5\n341,317,1.0\n341,318,1.5\n341,319,2.0\n341,320,2.5\n341,321,3.0\n341,322,3.5\n341,323,4.0\n341,324,4.5\n341,325,8.0\n341,326,7.5\n341,327,7.0\n341,328,6.5\n341,329,6.0\n341,330,5.5\n341,331,5.0\n341,332,4.5\n341,333,4.0\n341,334,3.5\n341,335,3.0\n341,336,2.5\n341,337,2.0\n341,338,1.5\n341,339,1.0\n341,340,0.5\n341,341,0\n341,342,0.5\n341,343,1.0\n341,344,1.5\n341,345,2.0\n341,346,2.5\n341,347,3.0\n341,348,3.5\n341,349,4.0\n341,350,8.5\n341,351,8.0\n341,352,7.5\n341,353,7.0\n341,354,6.5\n341,355,6.0\n341,356,5.5\n341,357,5.0\n341,358,4.5\n341,359,4.0\n341,360,3.5\n341,361,3.0\n341,362,2.5\n341,363,2.0\n341,364,1.5\n341,365,1.0\n341,366,0.5\n341,367,1.0\n341,368,1.5\n341,369,2.0\n341,370,2.5\n341,371,3.0\n341,372,3.5\n341,373,4.0\n341,374,4.5\n341,375,9.0\n341,376,8.5\n341,377,8.0\n341,378,7.5\n341,379,7.0\n341,380,6.5\n341,381,6.0\n341,382,5.5\n341,383,5.0\n341,384,4.5\n341,385,4.0\n341,386,3.5\n341,387,3.0\n341,388,2.5\n341,389,2.0\n341,390,1.5\n341,391,1.0\n341,392,1.5\n341,393,2.0\n341,394,2.5\n341,395,3.0\n341,396,3.5\n341,397,4.0\n341,398,4.5\n341,399,5.0\n341,400,9.5\n341,401,9.0\n341,402,8.5\n341,403,8.0\n341,404,7.5\n341,405,7.0\n341,406,6.5\n341,407,6.0\n341,408,5.5\n341,409,5.0\n341,410,4.5\n341,411,4.0\n341,412,3.5\n341,413,3.0\n341,414,2.5\n341,415,2.0\n341,416,1.5\n341,417,2.0\n341,418,2.5\n341,419,3.0\n341,420,3.5\n341,421,4.0\n341,422,4.5\n341,423,5.0\n341,424,5.5\n341,425,10.0\n341,426,9.5\n341,427,9.0\n341,428,8.5\n341,429,8.0\n341,430,7.5\n341,431,7.0\n341,432,6.5\n341,433,6.0\n341,434,5.5\n341,435,5.0\n341,436,4.5\n341,437,4.0\n341,438,3.5\n341,439,3.0\n341,440,2.5\n341,441,2.0\n341,442,2.5\n341,443,3.0\n341,444,3.5\n341,445,4.0\n341,446,4.5\n341,447,5.0\n341,448,5.5\n341,449,6.0\n341,450,10.5\n341,451,10.0\n341,452,9.5\n341,453,9.0\n341,454,8.5\n341,455,8.0\n341,456,7.5\n341,457,7.0\n341,458,6.5\n341,459,6.0\n341,460,5.5\n341,461,5.0\n341,462,4.5\n341,463,4.0\n341,464,3.5\n341,465,3.0\n341,466,2.5\n341,467,3.0\n341,468,3.5\n341,469,4.0\n341,470,4.5\n341,471,5.0\n341,472,5.5\n341,473,6.0\n341,474,6.5\n341,475,11.0\n341,476,10.5\n341,477,10.0\n341,478,9.5\n341,479,9.0\n341,480,8.5\n341,481,8.0\n341,482,7.5\n341,483,7.0\n341,484,6.5\n341,485,6.0\n341,486,5.5\n341,487,5.0\n341,488,4.5\n341,489,4.0\n341,490,3.5\n341,491,3.0\n341,492,3.5\n341,493,4.0\n341,494,4.5\n341,495,5.0\n341,496,5.5\n341,497,6.0\n341,498,6.5\n341,499,7.0\n341,500,11.5\n341,501,11.0\n341,502,10.5\n341,503,10.0\n341,504,9.5\n341,505,9.0\n341,506,8.5\n341,507,8.0\n341,508,7.5\n341,509,7.0\n341,510,6.5\n341,511,6.0\n341,512,5.5\n341,513,5.0\n341,514,4.5\n341,515,4.0\n341,516,3.5\n341,517,4.0\n341,518,4.5\n341,519,5.0\n341,520,5.5\n341,521,6.0\n341,522,6.5\n341,523,7.0\n341,524,7.5\n341,525,12.0\n341,526,11.5\n341,527,11.0\n341,528,10.5\n341,529,10.0\n341,530,9.5\n341,531,9.0\n341,532,8.5\n341,533,8.0\n341,534,7.5\n341,535,7.0\n341,536,6.5\n341,537,6.0\n341,538,5.5\n341,539,5.0\n341,540,4.5\n341,541,4.0\n341,542,4.5\n341,543,5.0\n341,544,5.5\n341,545,6.0\n341,546,6.5\n341,547,7.0\n341,548,7.5\n341,549,8.0\n341,550,12.5\n341,551,12.0\n341,552,11.5\n341,553,11.0\n341,554,10.5\n341,555,10.0\n341,556,9.5\n341,557,9.0\n341,558,8.5\n341,559,8.0\n341,560,7.5\n341,561,7.0\n341,562,6.5\n341,563,6.0\n341,564,5.5\n341,565,5.0\n341,566,4.5\n341,567,5.0\n341,568,5.5\n341,569,6.0\n341,570,6.5\n341,571,7.0\n341,572,7.5\n341,573,8.0\n341,574,8.5\n341,575,13.0\n341,576,12.5\n341,577,12.0\n341,578,11.5\n341,579,11.0\n341,580,10.5\n341,581,10.0\n341,582,9.5\n341,583,9.0\n341,584,8.5\n341,585,8.0\n341,586,7.5\n341,587,7.0\n341,588,6.5\n341,589,6.0\n341,590,5.5\n341,591,5.0\n341,592,5.5\n341,593,6.0\n341,594,6.5\n341,595,7.0\n341,596,7.5\n341,597,8.0\n341,598,8.5\n341,599,9.0\n341,600,13.5\n341,601,13.0\n341,602,12.5\n341,603,12.0\n341,604,11.5\n341,605,11.0\n341,606,10.5\n341,607,10.0\n341,608,9.5\n341,609,9.0\n341,610,8.5\n341,611,8.0\n341,612,7.5\n341,613,7.0\n341,614,6.5\n341,615,6.0\n341,616,5.5\n341,617,6.0\n341,618,6.5\n341,619,7.0\n341,620,7.5\n341,621,8.0\n341,622,8.5\n341,623,9.0\n341,624,9.5\n342,0,15.0\n342,1,14.5\n342,2,14.0\n342,3,13.5\n342,4,13.0\n342,5,12.5\n342,6,12.0\n342,7,11.5\n342,8,11.0\n342,9,10.5\n342,10,10.0\n342,11,9.5\n342,12,9.0\n342,13,8.5\n342,14,8.0\n342,15,7.5\n342,16,7.0\n342,17,6.5\n342,18,7.0\n342,19,7.5\n342,20,8.0\n342,21,8.5\n342,22,9.0\n342,23,9.5\n342,24,10.0\n342,25,14.5\n342,26,14.0\n342,27,13.5\n342,28,13.0\n342,29,12.5\n342,30,12.0\n342,31,11.5\n342,32,11.0\n342,33,10.5\n342,34,10.0\n342,35,9.5\n342,36,9.0\n342,37,8.5\n342,38,8.0\n342,39,7.5\n342,40,7.0\n342,41,6.5\n342,42,6.0\n342,43,6.5\n342,44,7.0\n342,45,7.5\n342,46,8.0\n342,47,8.5\n342,48,9.0\n342,49,9.5\n342,50,14.0\n342,51,13.5\n342,52,13.0\n342,53,12.5\n342,54,12.0\n342,55,11.5\n342,56,11.0\n342,57,10.5\n342,58,10.0\n342,59,9.5\n342,60,9.0\n342,61,8.5\n342,62,8.0\n342,63,7.5\n342,64,7.0\n342,65,6.5\n342,66,6.0\n342,67,5.5\n342,68,6.0\n342,69,6.5\n342,70,7.0\n342,71,7.5\n342,72,8.0\n342,73,8.5\n342,74,9.0\n342,75,13.5\n342,76,13.0\n342,77,12.5\n342,78,12.0\n342,79,11.5\n342,80,11.0\n342,81,10.5\n342,82,10.0\n342,83,9.5\n342,84,9.0\n342,85,8.5\n342,86,8.0\n342,87,7.5\n342,88,7.0\n342,89,6.5\n342,90,6.0\n342,91,5.5\n342,92,5.0\n342,93,5.5\n342,94,6.0\n342,95,6.5\n342,96,7.0\n342,97,7.5\n342,98,8.0\n342,99,8.5\n342,100,13.0\n342,101,12.5\n342,102,12.0\n342,103,11.5\n342,104,11.0\n342,105,10.5\n342,106,10.0\n342,107,9.5\n342,108,9.0\n342,109,8.5\n342,110,8.0\n342,111,7.5\n342,112,7.0\n342,113,6.5\n342,114,6.0\n342,115,5.5\n342,116,5.0\n342,117,4.5\n342,118,5.0\n342,119,5.5\n342,120,6.0\n342,121,6.5\n342,122,7.0\n342,123,7.5\n342,124,8.0\n342,125,12.5\n342,126,12.0\n342,127,11.5\n342,128,11.0\n342,129,10.5\n342,130,10.0\n342,131,9.5\n342,132,9.0\n342,133,8.5\n342,134,8.0\n342,135,7.5\n342,136,7.0\n342,137,6.5\n342,138,6.0\n342,139,5.5\n342,140,5.0\n342,141,4.5\n342,142,4.0\n342,143,4.5\n342,144,5.0\n342,145,5.5\n342,146,6.0\n342,147,6.5\n342,148,7.0\n342,149,7.5\n342,150,12.0\n342,151,11.5\n342,152,11.0\n342,153,10.5\n342,154,10.0\n342,155,9.5\n342,156,9.0\n342,157,8.5\n342,158,8.0\n342,159,7.5\n342,160,7.0\n342,161,6.5\n342,162,6.0\n342,163,5.5\n342,164,5.0\n342,165,4.5\n342,166,4.0\n342,167,3.5\n342,168,4.0\n342,169,4.5\n342,170,5.0\n342,171,5.5\n342,172,6.0\n342,173,6.5\n342,174,7.0\n342,175,11.5\n342,176,11.0\n342,177,10.5\n342,178,10.0\n342,179,9.5\n342,180,9.0\n342,181,8.5\n342,182,8.0\n342,183,7.5\n342,184,7.0\n342,185,6.5\n342,186,6.0\n342,187,5.5\n342,188,5.0\n342,189,4.5\n342,190,4.0\n342,191,3.5\n342,192,3.0\n342,193,3.5\n342,194,4.0\n342,195,4.5\n342,196,5.0\n342,197,5.5\n342,198,6.0\n342,199,6.5\n342,200,11.0\n342,201,10.5\n342,202,10.0\n342,203,9.5\n342,204,9.0\n342,205,8.5\n342,206,8.0\n342,207,7.5\n342,208,7.0\n342,209,6.5\n342,210,6.0\n342,211,5.5\n342,212,5.0\n342,213,4.5\n342,214,4.0\n342,215,3.5\n342,216,3.0\n342,217,2.5\n342,218,3.0\n342,219,3.5\n342,220,4.0\n342,221,4.5\n342,222,5.0\n342,223,5.5\n342,224,6.0\n342,225,10.5\n342,226,10.0\n342,227,9.5\n342,228,9.0\n342,229,8.5\n342,230,8.0\n342,231,7.5\n342,232,7.0\n342,233,6.5\n342,234,6.0\n342,235,5.5\n342,236,5.0\n342,237,4.5\n342,238,4.0\n342,239,3.5\n342,240,3.0\n342,241,2.5\n342,242,2.0\n342,243,2.5\n342,244,3.0\n342,245,3.5\n342,246,4.0\n342,247,4.5\n342,248,5.0\n342,249,5.5\n342,250,10.0\n342,251,9.5\n342,252,9.0\n342,253,8.5\n342,254,8.0\n342,255,7.5\n342,256,7.0\n342,257,6.5\n342,258,6.0\n342,259,5.5\n342,260,5.0\n342,261,4.5\n342,262,4.0\n342,263,3.5\n342,264,3.0\n342,265,2.5\n342,266,2.0\n342,267,1.5\n342,268,2.0\n342,269,2.5\n342,270,3.0\n342,271,3.5\n342,272,4.0\n342,273,4.5\n342,274,5.0\n342,275,9.5\n342,276,9.0\n342,277,8.5\n342,278,8.0\n342,279,7.5\n342,280,7.0\n342,281,6.5\n342,282,6.0\n342,283,5.5\n342,284,5.0\n342,285,4.5\n342,286,4.0\n342,287,3.5\n342,288,3.0\n342,289,2.5\n342,290,2.0\n342,291,1.5\n342,292,1.0\n342,293,1.5\n342,294,2.0\n342,295,2.5\n342,296,3.0\n342,297,3.5\n342,298,4.0\n342,299,4.5\n342,300,9.0\n342,301,8.5\n342,302,8.0\n342,303,7.5\n342,304,7.0\n342,305,6.5\n342,306,6.0\n342,307,5.5\n342,308,5.0\n342,309,4.5\n342,310,4.0\n342,311,3.5\n342,312,3.0\n342,313,2.5\n342,314,2.0\n342,315,1.5\n342,316,1.0\n342,317,0.5\n342,318,1.0\n342,319,1.5\n342,320,2.0\n342,321,2.5\n342,322,3.0\n342,323,3.5\n342,324,4.0\n342,325,8.5\n342,326,8.0\n342,327,7.5\n342,328,7.0\n342,329,6.5\n342,330,6.0\n342,331,5.5\n342,332,5.0\n342,333,4.5\n342,334,4.0\n342,335,3.5\n342,336,3.0\n342,337,2.5\n342,338,2.0\n342,339,1.5\n342,340,1.0\n342,341,0.5\n342,342,0\n342,343,0.5\n342,344,1.0\n342,345,1.5\n342,346,2.0\n342,347,2.5\n342,348,3.0\n342,349,3.5\n342,350,9.0\n342,351,8.5\n342,352,8.0\n342,353,7.5\n342,354,7.0\n342,355,6.5\n342,356,6.0\n342,357,5.5\n342,358,5.0\n342,359,4.5\n342,360,4.0\n342,361,3.5\n342,362,3.0\n342,363,2.5\n342,364,2.0\n342,365,1.5\n342,366,1.0\n342,367,0.5\n342,368,1.0\n342,369,1.5\n342,370,2.0\n342,371,2.5\n342,372,3.0\n342,373,3.5\n342,374,4.0\n342,375,9.5\n342,376,9.0\n342,377,8.5\n342,378,8.0\n342,379,7.5\n342,380,7.0\n342,381,6.5\n342,382,6.0\n342,383,5.5\n342,384,5.0\n342,385,4.5\n342,386,4.0\n342,387,3.5\n342,388,3.0\n342,389,2.5\n342,390,2.0\n342,391,1.5\n342,392,1.0\n342,393,1.5\n342,394,2.0\n342,395,2.5\n342,396,3.0\n342,397,3.5\n342,398,4.0\n342,399,4.5\n342,400,10.0\n342,401,9.5\n342,402,9.0\n342,403,8.5\n342,404,8.0\n342,405,7.5\n342,406,7.0\n342,407,6.5\n342,408,6.0\n342,409,5.5\n342,410,5.0\n342,411,4.5\n342,412,4.0\n342,413,3.5\n342,414,3.0\n342,415,2.5\n342,416,2.0\n342,417,1.5\n342,418,2.0\n342,419,2.5\n342,420,3.0\n342,421,3.5\n342,422,4.0\n342,423,4.5\n342,424,5.0\n342,425,10.5\n342,426,10.0\n342,427,9.5\n342,428,9.0\n342,429,8.5\n342,430,8.0\n342,431,7.5\n342,432,7.0\n342,433,6.5\n342,434,6.0\n342,435,5.5\n342,436,5.0\n342,437,4.5\n342,438,4.0\n342,439,3.5\n342,440,3.0\n342,441,2.5\n342,442,2.0\n342,443,2.5\n342,444,3.0\n342,445,3.5\n342,446,4.0\n342,447,4.5\n342,448,5.0\n342,449,5.5\n342,450,11.0\n342,451,10.5\n342,452,10.0\n342,453,9.5\n342,454,9.0\n342,455,8.5\n342,456,8.0\n342,457,7.5\n342,458,7.0\n342,459,6.5\n342,460,6.0\n342,461,5.5\n342,462,5.0\n342,463,4.5\n342,464,4.0\n342,465,3.5\n342,466,3.0\n342,467,2.5\n342,468,3.0\n342,469,3.5\n342,470,4.0\n342,471,4.5\n342,472,5.0\n342,473,5.5\n342,474,6.0\n342,475,11.5\n342,476,11.0\n342,477,10.5\n342,478,10.0\n342,479,9.5\n342,480,9.0\n342,481,8.5\n342,482,8.0\n342,483,7.5\n342,484,7.0\n342,485,6.5\n342,486,6.0\n342,487,5.5\n342,488,5.0\n342,489,4.5\n342,490,4.0\n342,491,3.5\n342,492,3.0\n342,493,3.5\n342,494,4.0\n342,495,4.5\n342,496,5.0\n342,497,5.5\n342,498,6.0\n342,499,6.5\n342,500,12.0\n342,501,11.5\n342,502,11.0\n342,503,10.5\n342,504,10.0\n342,505,9.5\n342,506,9.0\n342,507,8.5\n342,508,8.0\n342,509,7.5\n342,510,7.0\n342,511,6.5\n342,512,6.0\n342,513,5.5\n342,514,5.0\n342,515,4.5\n342,516,4.0\n342,517,3.5\n342,518,4.0\n342,519,4.5\n342,520,5.0\n342,521,5.5\n342,522,6.0\n342,523,6.5\n342,524,7.0\n342,525,12.5\n342,526,12.0\n342,527,11.5\n342,528,11.0\n342,529,10.5\n342,530,10.0\n342,531,9.5\n342,532,9.0\n342,533,8.5\n342,534,8.0\n342,535,7.5\n342,536,7.0\n342,537,6.5\n342,538,6.0\n342,539,5.5\n342,540,5.0\n342,541,4.5\n342,542,4.0\n342,543,4.5\n342,544,5.0\n342,545,5.5\n342,546,6.0\n342,547,6.5\n342,548,7.0\n342,549,7.5\n342,550,13.0\n342,551,12.5\n342,552,12.0\n342,553,11.5\n342,554,11.0\n342,555,10.5\n342,556,10.0\n342,557,9.5\n342,558,9.0\n342,559,8.5\n342,560,8.0\n342,561,7.5\n342,562,7.0\n342,563,6.5\n342,564,6.0\n342,565,5.5\n342,566,5.0\n342,567,4.5\n342,568,5.0\n342,569,5.5\n342,570,6.0\n342,571,6.5\n342,572,7.0\n342,573,7.5\n342,574,8.0\n342,575,13.5\n342,576,13.0\n342,577,12.5\n342,578,12.0\n342,579,11.5\n342,580,11.0\n342,581,10.5\n342,582,10.0\n342,583,9.5\n342,584,9.0\n342,585,8.5\n342,586,8.0\n342,587,7.5\n342,588,7.0\n342,589,6.5\n342,590,6.0\n342,591,5.5\n342,592,5.0\n342,593,5.5\n342,594,6.0\n342,595,6.5\n342,596,7.0\n342,597,7.5\n342,598,8.0\n342,599,8.5\n342,600,14.0\n342,601,13.5\n342,602,13.0\n342,603,12.5\n342,604,12.0\n342,605,11.5\n342,606,11.0\n342,607,10.5\n342,608,10.0\n342,609,9.5\n342,610,9.0\n342,611,8.5\n342,612,8.0\n342,613,7.5\n342,614,7.0\n342,615,6.5\n342,616,6.0\n342,617,5.5\n342,618,6.0\n342,619,6.5\n342,620,7.0\n342,621,7.5\n342,622,8.0\n342,623,8.5\n342,624,9.0\n343,0,15.5\n343,1,15.0\n343,2,14.5\n343,3,14.0\n343,4,13.5\n343,5,13.0\n343,6,12.5\n343,7,12.0\n343,8,11.5\n343,9,11.0\n343,10,10.5\n343,11,10.0\n343,12,9.5\n343,13,9.0\n343,14,8.5\n343,15,8.0\n343,16,7.5\n343,17,7.0\n343,18,6.5\n343,19,7.0\n343,20,7.5\n343,21,8.0\n343,22,8.5\n343,23,9.0\n343,24,9.5\n343,25,15.0\n343,26,14.5\n343,27,14.0\n343,28,13.5\n343,29,13.0\n343,30,12.5\n343,31,12.0\n343,32,11.5\n343,33,11.0\n343,34,10.5\n343,35,10.0\n343,36,9.5\n343,37,9.0\n343,38,8.5\n343,39,8.0\n343,40,7.5\n343,41,7.0\n343,42,6.5\n343,43,6.0\n343,44,6.5\n343,45,7.0\n343,46,7.5\n343,47,8.0\n343,48,8.5\n343,49,9.0\n343,50,14.5\n343,51,14.0\n343,52,13.5\n343,53,13.0\n343,54,12.5\n343,55,12.0\n343,56,11.5\n343,57,11.0\n343,58,10.5\n343,59,10.0\n343,60,9.5\n343,61,9.0\n343,62,8.5\n343,63,8.0\n343,64,7.5\n343,65,7.0\n343,66,6.5\n343,67,6.0\n343,68,5.5\n343,69,6.0\n343,70,6.5\n343,71,7.0\n343,72,7.5\n343,73,8.0\n343,74,8.5\n343,75,14.0\n343,76,13.5\n343,77,13.0\n343,78,12.5\n343,79,12.0\n343,80,11.5\n343,81,11.0\n343,82,10.5\n343,83,10.0\n343,84,9.5\n343,85,9.0\n343,86,8.5\n343,87,8.0\n343,88,7.5\n343,89,7.0\n343,90,6.5\n343,91,6.0\n343,92,5.5\n343,93,5.0\n343,94,5.5\n343,95,6.0\n343,96,6.5\n343,97,7.0\n343,98,7.5\n343,99,8.0\n343,100,13.5\n343,101,13.0\n343,102,12.5\n343,103,12.0\n343,104,11.5\n343,105,11.0\n343,106,10.5\n343,107,10.0\n343,108,9.5\n343,109,9.0\n343,110,8.5\n343,111,8.0\n343,112,7.5\n343,113,7.0\n343,114,6.5\n343,115,6.0\n343,116,5.5\n343,117,5.0\n343,118,4.5\n343,119,5.0\n343,120,5.5\n343,121,6.0\n343,122,6.5\n343,123,7.0\n343,124,7.5\n343,125,13.0\n343,126,12.5\n343,127,12.0\n343,128,11.5\n343,129,11.0\n343,130,10.5\n343,131,10.0\n343,132,9.5\n343,133,9.0\n343,134,8.5\n343,135,8.0\n343,136,7.5\n343,137,7.0\n343,138,6.5\n343,139,6.0\n343,140,5.5\n343,141,5.0\n343,142,4.5\n343,143,4.0\n343,144,4.5\n343,145,5.0\n343,146,5.5\n343,147,6.0\n343,148,6.5\n343,149,7.0\n343,150,12.5\n343,151,12.0\n343,152,11.5\n343,153,11.0\n343,154,10.5\n343,155,10.0\n343,156,9.5\n343,157,9.0\n343,158,8.5\n343,159,8.0\n343,160,7.5\n343,161,7.0\n343,162,6.5\n343,163,6.0\n343,164,5.5\n343,165,5.0\n343,166,4.5\n343,167,4.0\n343,168,3.5\n343,169,4.0\n343,170,4.5\n343,171,5.0\n343,172,5.5\n343,173,6.0\n343,174,6.5\n343,175,12.0\n343,176,11.5\n343,177,11.0\n343,178,10.5\n343,179,10.0\n343,180,9.5\n343,181,9.0\n343,182,8.5\n343,183,8.0\n343,184,7.5\n343,185,7.0\n343,186,6.5\n343,187,6.0\n343,188,5.5\n343,189,5.0\n343,190,4.5\n343,191,4.0\n343,192,3.5\n343,193,3.0\n343,194,3.5\n343,195,4.0\n343,196,4.5\n343,197,5.0\n343,198,5.5\n343,199,6.0\n343,200,11.5\n343,201,11.0\n343,202,10.5\n343,203,10.0\n343,204,9.5\n343,205,9.0\n343,206,8.5\n343,207,8.0\n343,208,7.5\n343,209,7.0\n343,210,6.5\n343,211,6.0\n343,212,5.5\n343,213,5.0\n343,214,4.5\n343,215,4.0\n343,216,3.5\n343,217,3.0\n343,218,2.5\n343,219,3.0\n343,220,3.5\n343,221,4.0\n343,222,4.5\n343,223,5.0\n343,224,5.5\n343,225,11.0\n343,226,10.5\n343,227,10.0\n343,228,9.5\n343,229,9.0\n343,230,8.5\n343,231,8.0\n343,232,7.5\n343,233,7.0\n343,234,6.5\n343,235,6.0\n343,236,5.5\n343,237,5.0\n343,238,4.5\n343,239,4.0\n343,240,3.5\n343,241,3.0\n343,242,2.5\n343,243,2.0\n343,244,2.5\n343,245,3.0\n343,246,3.5\n343,247,4.0\n343,248,4.5\n343,249,5.0\n343,250,10.5\n343,251,10.0\n343,252,9.5\n343,253,9.0\n343,254,8.5\n343,255,8.0\n343,256,7.5\n343,257,7.0\n343,258,6.5\n343,259,6.0\n343,260,5.5\n343,261,5.0\n343,262,4.5\n343,263,4.0\n343,264,3.5\n343,265,3.0\n343,266,2.5\n343,267,2.0\n343,268,1.5\n343,269,2.0\n343,270,2.5\n343,271,3.0\n343,272,3.5\n343,273,4.0\n343,274,4.5\n343,275,10.0\n343,276,9.5\n343,277,9.0\n343,278,8.5\n343,279,8.0\n343,280,7.5\n343,281,7.0\n343,282,6.5\n343,283,6.0\n343,284,5.5\n343,285,5.0\n343,286,4.5\n343,287,4.0\n343,288,3.5\n343,289,3.0\n343,290,2.5\n343,291,2.0\n343,292,1.5\n343,293,1.0\n343,294,1.5\n343,295,2.0\n343,296,2.5\n343,297,3.0\n343,298,3.5\n343,299,4.0\n343,300,9.5\n343,301,9.0\n343,302,8.5\n343,303,8.0\n343,304,7.5\n343,305,7.0\n343,306,6.5\n343,307,6.0\n343,308,5.5\n343,309,5.0\n343,310,4.5\n343,311,4.0\n343,312,3.5\n343,313,3.0\n343,314,2.5\n343,315,2.0\n343,316,1.5\n343,317,1.0\n343,318,0.5\n343,319,1.0\n343,320,1.5\n343,321,2.0\n343,322,2.5\n343,323,3.0\n343,324,3.5\n343,325,9.0\n343,326,8.5\n343,327,8.0\n343,328,7.5\n343,329,7.0\n343,330,6.5\n343,331,6.0\n343,332,5.5\n343,333,5.0\n343,334,4.5\n343,335,4.0\n343,336,3.5\n343,337,3.0\n343,338,2.5\n343,339,2.0\n343,340,1.5\n343,341,1.0\n343,342,0.5\n343,343,0\n343,344,0.5\n343,345,1.0\n343,346,1.5\n343,347,2.0\n343,348,2.5\n343,349,3.0\n343,350,9.5\n343,351,9.0\n343,352,8.5\n343,353,8.0\n343,354,7.5\n343,355,7.0\n343,356,6.5\n343,357,6.0\n343,358,5.5\n343,359,5.0\n343,360,4.5\n343,361,4.0\n343,362,3.5\n343,363,3.0\n343,364,2.5\n343,365,2.0\n343,366,1.5\n343,367,1.0\n343,368,0.5\n343,369,1.0\n343,370,1.5\n343,371,2.0\n343,372,2.5\n343,373,3.0\n343,374,3.5\n343,375,10.0\n343,376,9.5\n343,377,9.0\n343,378,8.5\n343,379,8.0\n343,380,7.5\n343,381,7.0\n343,382,6.5\n343,383,6.0\n343,384,5.5\n343,385,5.0\n343,386,4.5\n343,387,4.0\n343,388,3.5\n343,389,3.0\n343,390,2.5\n343,391,2.0\n343,392,1.5\n343,393,1.0\n343,394,1.5\n343,395,2.0\n343,396,2.5\n343,397,3.0\n343,398,3.5\n343,399,4.0\n343,400,10.5\n343,401,10.0\n343,402,9.5\n343,403,9.0\n343,404,8.5\n343,405,8.0\n343,406,7.5\n343,407,7.0\n343,408,6.5\n343,409,6.0\n343,410,5.5\n343,411,5.0\n343,412,4.5\n343,413,4.0\n343,414,3.5\n343,415,3.0\n343,416,2.5\n343,417,2.0\n343,418,1.5\n343,419,2.0\n343,420,2.5\n343,421,3.0\n343,422,3.5\n343,423,4.0\n343,424,4.5\n343,425,11.0\n343,426,10.5\n343,427,10.0\n343,428,9.5\n343,429,9.0\n343,430,8.5\n343,431,8.0\n343,432,7.5\n343,433,7.0\n343,434,6.5\n343,435,6.0\n343,436,5.5\n343,437,5.0\n343,438,4.5\n343,439,4.0\n343,440,3.5\n343,441,3.0\n343,442,2.5\n343,443,2.0\n343,444,2.5\n343,445,3.0\n343,446,3.5\n343,447,4.0\n343,448,4.5\n343,449,5.0\n343,450,11.5\n343,451,11.0\n343,452,10.5\n343,453,10.0\n343,454,9.5\n343,455,9.0\n343,456,8.5\n343,457,8.0\n343,458,7.5\n343,459,7.0\n343,460,6.5\n343,461,6.0\n343,462,5.5\n343,463,5.0\n343,464,4.5\n343,465,4.0\n343,466,3.5\n343,467,3.0\n343,468,2.5\n343,469,3.0\n343,470,3.5\n343,471,4.0\n343,472,4.5\n343,473,5.0\n343,474,5.5\n343,475,12.0\n343,476,11.5\n343,477,11.0\n343,478,10.5\n343,479,10.0\n343,480,9.5\n343,481,9.0\n343,482,8.5\n343,483,8.0\n343,484,7.5\n343,485,7.0\n343,486,6.5\n343,487,6.0\n343,488,5.5\n343,489,5.0\n343,490,4.5\n343,491,4.0\n343,492,3.5\n343,493,3.0\n343,494,3.5\n343,495,4.0\n343,496,4.5\n343,497,5.0\n343,498,5.5\n343,499,6.0\n343,500,12.5\n343,501,12.0\n343,502,11.5\n343,503,11.0\n343,504,10.5\n343,505,10.0\n343,506,9.5\n343,507,9.0\n343,508,8.5\n343,509,8.0\n343,510,7.5\n343,511,7.0\n343,512,6.5\n343,513,6.0\n343,514,5.5\n343,515,5.0\n343,516,4.5\n343,517,4.0\n343,518,3.5\n343,519,4.0\n343,520,4.5\n343,521,5.0\n343,522,5.5\n343,523,6.0\n343,524,6.5\n343,525,13.0\n343,526,12.5\n343,527,12.0\n343,528,11.5\n343,529,11.0\n343,530,10.5\n343,531,10.0\n343,532,9.5\n343,533,9.0\n343,534,8.5\n343,535,8.0\n343,536,7.5\n343,537,7.0\n343,538,6.5\n343,539,6.0\n343,540,5.5\n343,541,5.0\n343,542,4.5\n343,543,4.0\n343,544,4.5\n343,545,5.0\n343,546,5.5\n343,547,6.0\n343,548,6.5\n343,549,7.0\n343,550,13.5\n343,551,13.0\n343,552,12.5\n343,553,12.0\n343,554,11.5\n343,555,11.0\n343,556,10.5\n343,557,10.0\n343,558,9.5\n343,559,9.0\n343,560,8.5\n343,561,8.0\n343,562,7.5\n343,563,7.0\n343,564,6.5\n343,565,6.0\n343,566,5.5\n343,567,5.0\n343,568,4.5\n343,569,5.0\n343,570,5.5\n343,571,6.0\n343,572,6.5\n343,573,7.0\n343,574,7.5\n343,575,14.0\n343,576,13.5\n343,577,13.0\n343,578,12.5\n343,579,12.0\n343,580,11.5\n343,581,11.0\n343,582,10.5\n343,583,10.0\n343,584,9.5\n343,585,9.0\n343,586,8.5\n343,587,8.0\n343,588,7.5\n343,589,7.0\n343,590,6.5\n343,591,6.0\n343,592,5.5\n343,593,5.0\n343,594,5.5\n343,595,6.0\n343,596,6.5\n343,597,7.0\n343,598,7.5\n343,599,8.0\n343,600,14.5\n343,601,14.0\n343,602,13.5\n343,603,13.0\n343,604,12.5\n343,605,12.0\n343,606,11.5\n343,607,11.0\n343,608,10.5\n343,609,10.0\n343,610,9.5\n343,611,9.0\n343,612,8.5\n343,613,8.0\n343,614,7.5\n343,615,7.0\n343,616,6.5\n343,617,6.0\n343,618,5.5\n343,619,6.0\n343,620,6.5\n343,621,7.0\n343,622,7.5\n343,623,8.0\n343,624,8.5\n344,0,16.0\n344,1,15.5\n344,2,15.0\n344,3,14.5\n344,4,14.0\n344,5,13.5\n344,6,13.0\n344,7,12.5\n344,8,12.0\n344,9,11.5\n344,10,11.0\n344,11,10.5\n344,12,10.0\n344,13,9.5\n344,14,9.0\n344,15,8.5\n344,16,8.0\n344,17,7.5\n344,18,7.0\n344,19,6.5\n344,20,7.0\n344,21,7.5\n344,22,8.0\n344,23,8.5\n344,24,9.0\n344,25,15.5\n344,26,15.0\n344,27,14.5\n344,28,14.0\n344,29,13.5\n344,30,13.0\n344,31,12.5\n344,32,12.0\n344,33,11.5\n344,34,11.0\n344,35,10.5\n344,36,10.0\n344,37,9.5\n344,38,9.0\n344,39,8.5\n344,40,8.0\n344,41,7.5\n344,42,7.0\n344,43,6.5\n344,44,6.0\n344,45,6.5\n344,46,7.0\n344,47,7.5\n344,48,8.0\n344,49,8.5\n344,50,15.0\n344,51,14.5\n344,52,14.0\n344,53,13.5\n344,54,13.0\n344,55,12.5\n344,56,12.0\n344,57,11.5\n344,58,11.0\n344,59,10.5\n344,60,10.0\n344,61,9.5\n344,62,9.0\n344,63,8.5\n344,64,8.0\n344,65,7.5\n344,66,7.0\n344,67,6.5\n344,68,6.0\n344,69,5.5\n344,70,6.0\n344,71,6.5\n344,72,7.0\n344,73,7.5\n344,74,8.0\n344,75,14.5\n344,76,14.0\n344,77,13.5\n344,78,13.0\n344,79,12.5\n344,80,12.0\n344,81,11.5\n344,82,11.0\n344,83,10.5\n344,84,10.0\n344,85,9.5\n344,86,9.0\n344,87,8.5\n344,88,8.0\n344,89,7.5\n344,90,7.0\n344,91,6.5\n344,92,6.0\n344,93,5.5\n344,94,5.0\n344,95,5.5\n344,96,6.0\n344,97,6.5\n344,98,7.0\n344,99,7.5\n344,100,14.0\n344,101,13.5\n344,102,13.0\n344,103,12.5\n344,104,12.0\n344,105,11.5\n344,106,11.0\n344,107,10.5\n344,108,10.0\n344,109,9.5\n344,110,9.0\n344,111,8.5\n344,112,8.0\n344,113,7.5\n344,114,7.0\n344,115,6.5\n344,116,6.0\n344,117,5.5\n344,118,5.0\n344,119,4.5\n344,120,5.0\n344,121,5.5\n344,122,6.0\n344,123,6.5\n344,124,7.0\n344,125,13.5\n344,126,13.0\n344,127,12.5\n344,128,12.0\n344,129,11.5\n344,130,11.0\n344,131,10.5\n344,132,10.0\n344,133,9.5\n344,134,9.0\n344,135,8.5\n344,136,8.0\n344,137,7.5\n344,138,7.0\n344,139,6.5\n344,140,6.0\n344,141,5.5\n344,142,5.0\n344,143,4.5\n344,144,4.0\n344,145,4.5\n344,146,5.0\n344,147,5.5\n344,148,6.0\n344,149,6.5\n344,150,13.0\n344,151,12.5\n344,152,12.0\n344,153,11.5\n344,154,11.0\n344,155,10.5\n344,156,10.0\n344,157,9.5\n344,158,9.0\n344,159,8.5\n344,160,8.0\n344,161,7.5\n344,162,7.0\n344,163,6.5\n344,164,6.0\n344,165,5.5\n344,166,5.0\n344,167,4.5\n344,168,4.0\n344,169,3.5\n344,170,4.0\n344,171,4.5\n344,172,5.0\n344,173,5.5\n344,174,6.0\n344,175,12.5\n344,176,12.0\n344,177,11.5\n344,178,11.0\n344,179,10.5\n344,180,10.0\n344,181,9.5\n344,182,9.0\n344,183,8.5\n344,184,8.0\n344,185,7.5\n344,186,7.0\n344,187,6.5\n344,188,6.0\n344,189,5.5\n344,190,5.0\n344,191,4.5\n344,192,4.0\n344,193,3.5\n344,194,3.0\n344,195,3.5\n344,196,4.0\n344,197,4.5\n344,198,5.0\n344,199,5.5\n344,200,12.0\n344,201,11.5\n344,202,11.0\n344,203,10.5\n344,204,10.0\n344,205,9.5\n344,206,9.0\n344,207,8.5\n344,208,8.0\n344,209,7.5\n344,210,7.0\n344,211,6.5\n344,212,6.0\n344,213,5.5\n344,214,5.0\n344,215,4.5\n344,216,4.0\n344,217,3.5\n344,218,3.0\n344,219,2.5\n344,220,3.0\n344,221,3.5\n344,222,4.0\n344,223,4.5\n344,224,5.0\n344,225,11.5\n344,226,11.0\n344,227,10.5\n344,228,10.0\n344,229,9.5\n344,230,9.0\n344,231,8.5\n344,232,8.0\n344,233,7.5\n344,234,7.0\n344,235,6.5\n344,236,6.0\n344,237,5.5\n344,238,5.0\n344,239,4.5\n344,240,4.0\n344,241,3.5\n344,242,3.0\n344,243,2.5\n344,244,2.0\n344,245,2.5\n344,246,3.0\n344,247,3.5\n344,248,4.0\n344,249,4.5\n344,250,11.0\n344,251,10.5\n344,252,10.0\n344,253,9.5\n344,254,9.0\n344,255,8.5\n344,256,8.0\n344,257,7.5\n344,258,7.0\n344,259,6.5\n344,260,6.0\n344,261,5.5\n344,262,5.0\n344,263,4.5\n344,264,4.0\n344,265,3.5\n344,266,3.0\n344,267,2.5\n344,268,2.0\n344,269,1.5\n344,270,2.0\n344,271,2.5\n344,272,3.0\n344,273,3.5\n344,274,4.0\n344,275,10.5\n344,276,10.0\n344,277,9.5\n344,278,9.0\n344,279,8.5\n344,280,8.0\n344,281,7.5\n344,282,7.0\n344,283,6.5\n344,284,6.0\n344,285,5.5\n344,286,5.0\n344,287,4.5\n344,288,4.0\n344,289,3.5\n344,290,3.0\n344,291,2.5\n344,292,2.0\n344,293,1.5\n344,294,1.0\n344,295,1.5\n344,296,2.0\n344,297,2.5\n344,298,3.0\n344,299,3.5\n344,300,10.0\n344,301,9.5\n344,302,9.0\n344,303,8.5\n344,304,8.0\n344,305,7.5\n344,306,7.0\n344,307,6.5\n344,308,6.0\n344,309,5.5\n344,310,5.0\n344,311,4.5\n344,312,4.0\n344,313,3.5\n344,314,3.0\n344,315,2.5\n344,316,2.0\n344,317,1.5\n344,318,1.0\n344,319,0.5\n344,320,1.0\n344,321,1.5\n344,322,2.0\n344,323,2.5\n344,324,3.0\n344,325,9.5\n344,326,9.0\n344,327,8.5\n344,328,8.0\n344,329,7.5\n344,330,7.0\n344,331,6.5\n344,332,6.0\n344,333,5.5\n344,334,5.0\n344,335,4.5\n344,336,4.0\n344,337,3.5\n344,338,3.0\n344,339,2.5\n344,340,2.0\n344,341,1.5\n344,342,1.0\n344,343,0.5\n344,344,0\n344,345,0.5\n344,346,1.0\n344,347,1.5\n344,348,2.0\n344,349,2.5\n344,350,10.0\n344,351,9.5\n344,352,9.0\n344,353,8.5\n344,354,8.0\n344,355,7.5\n344,356,7.0\n344,357,6.5\n344,358,6.0\n344,359,5.5\n344,360,5.0\n344,361,4.5\n344,362,4.0\n344,363,3.5\n344,364,3.0\n344,365,2.5\n344,366,2.0\n344,367,1.5\n344,368,1.0\n344,369,0.5\n344,370,1.0\n344,371,1.5\n344,372,2.0\n344,373,2.5\n344,374,3.0\n344,375,10.5\n344,376,10.0\n344,377,9.5\n344,378,9.0\n344,379,8.5\n344,380,8.0\n344,381,7.5\n344,382,7.0\n344,383,6.5\n344,384,6.0\n344,385,5.5\n344,386,5.0\n344,387,4.5\n344,388,4.0\n344,389,3.5\n344,390,3.0\n344,391,2.5\n344,392,2.0\n344,393,1.5\n344,394,1.0\n344,395,1.5\n344,396,2.0\n344,397,2.5\n344,398,3.0\n344,399,3.5\n344,400,11.0\n344,401,10.5\n344,402,10.0\n344,403,9.5\n344,404,9.0\n344,405,8.5\n344,406,8.0\n344,407,7.5\n344,408,7.0\n344,409,6.5\n344,410,6.0\n344,411,5.5\n344,412,5.0\n344,413,4.5\n344,414,4.0\n344,415,3.5\n344,416,3.0\n344,417,2.5\n344,418,2.0\n344,419,1.5\n344,420,2.0\n344,421,2.5\n344,422,3.0\n344,423,3.5\n344,424,4.0\n344,425,11.5\n344,426,11.0\n344,427,10.5\n344,428,10.0\n344,429,9.5\n344,430,9.0\n344,431,8.5\n344,432,8.0\n344,433,7.5\n344,434,7.0\n344,435,6.5\n344,436,6.0\n344,437,5.5\n344,438,5.0\n344,439,4.5\n344,440,4.0\n344,441,3.5\n344,442,3.0\n344,443,2.5\n344,444,2.0\n344,445,2.5\n344,446,3.0\n344,447,3.5\n344,448,4.0\n344,449,4.5\n344,450,12.0\n344,451,11.5\n344,452,11.0\n344,453,10.5\n344,454,10.0\n344,455,9.5\n344,456,9.0\n344,457,8.5\n344,458,8.0\n344,459,7.5\n344,460,7.0\n344,461,6.5\n344,462,6.0\n344,463,5.5\n344,464,5.0\n344,465,4.5\n344,466,4.0\n344,467,3.5\n344,468,3.0\n344,469,2.5\n344,470,3.0\n344,471,3.5\n344,472,4.0\n344,473,4.5\n344,474,5.0\n344,475,12.5\n344,476,12.0\n344,477,11.5\n344,478,11.0\n344,479,10.5\n344,480,10.0\n344,481,9.5\n344,482,9.0\n344,483,8.5\n344,484,8.0\n344,485,7.5\n344,486,7.0\n344,487,6.5\n344,488,6.0\n344,489,5.5\n344,490,5.0\n344,491,4.5\n344,492,4.0\n344,493,3.5\n344,494,3.0\n344,495,3.5\n344,496,4.0\n344,497,4.5\n344,498,5.0\n344,499,5.5\n344,500,13.0\n344,501,12.5\n344,502,12.0\n344,503,11.5\n344,504,11.0\n344,505,10.5\n344,506,10.0\n344,507,9.5\n344,508,9.0\n344,509,8.5\n344,510,8.0\n344,511,7.5\n344,512,7.0\n344,513,6.5\n344,514,6.0\n344,515,5.5\n344,516,5.0\n344,517,4.5\n344,518,4.0\n344,519,3.5\n344,520,4.0\n344,521,4.5\n344,522,5.0\n344,523,5.5\n344,524,6.0\n344,525,13.5\n344,526,13.0\n344,527,12.5\n344,528,12.0\n344,529,11.5\n344,530,11.0\n344,531,10.5\n344,532,10.0\n344,533,9.5\n344,534,9.0\n344,535,8.5\n344,536,8.0\n344,537,7.5\n344,538,7.0\n344,539,6.5\n344,540,6.0\n344,541,5.5\n344,542,5.0\n344,543,4.5\n344,544,4.0\n344,545,4.5\n344,546,5.0\n344,547,5.5\n344,548,6.0\n344,549,6.5\n344,550,14.0\n344,551,13.5\n344,552,13.0\n344,553,12.5\n344,554,12.0\n344,555,11.5\n344,556,11.0\n344,557,10.5\n344,558,10.0\n344,559,9.5\n344,560,9.0\n344,561,8.5\n344,562,8.0\n344,563,7.5\n344,564,7.0\n344,565,6.5\n344,566,6.0\n344,567,5.5\n344,568,5.0\n344,569,4.5\n344,570,5.0\n344,571,5.5\n344,572,6.0\n344,573,6.5\n344,574,7.0\n344,575,14.5\n344,576,14.0\n344,577,13.5\n344,578,13.0\n344,579,12.5\n344,580,12.0\n344,581,11.5\n344,582,11.0\n344,583,10.5\n344,584,10.0\n344,585,9.5\n344,586,9.0\n344,587,8.5\n344,588,8.0\n344,589,7.5\n344,590,7.0\n344,591,6.5\n344,592,6.0\n344,593,5.5\n344,594,5.0\n344,595,5.5\n344,596,6.0\n344,597,6.5\n344,598,7.0\n344,599,7.5\n344,600,15.0\n344,601,14.5\n344,602,14.0\n344,603,13.5\n344,604,13.0\n344,605,12.5\n344,606,12.0\n344,607,11.5\n344,608,11.0\n344,609,10.5\n344,610,10.0\n344,611,9.5\n344,612,9.0\n344,613,8.5\n344,614,8.0\n344,615,7.5\n344,616,7.0\n344,617,6.5\n344,618,6.0\n344,619,5.5\n344,620,6.0\n344,621,6.5\n344,622,7.0\n344,623,7.5\n344,624,8.0\n345,0,16.5\n345,1,16.0\n345,2,15.5\n345,3,15.0\n345,4,14.5\n345,5,14.0\n345,6,13.5\n345,7,13.0\n345,8,12.5\n345,9,12.0\n345,10,11.5\n345,11,11.0\n345,12,10.5\n345,13,10.0\n345,14,9.5\n345,15,9.0\n345,16,8.5\n345,17,8.0\n345,18,7.5\n345,19,7.0\n345,20,6.5\n345,21,7.0\n345,22,7.5\n345,23,8.0\n345,24,8.5\n345,25,16.0\n345,26,15.5\n345,27,15.0\n345,28,14.5\n345,29,14.0\n345,30,13.5\n345,31,13.0\n345,32,12.5\n345,33,12.0\n345,34,11.5\n345,35,11.0\n345,36,10.5\n345,37,10.0\n345,38,9.5\n345,39,9.0\n345,40,8.5\n345,41,8.0\n345,42,7.5\n345,43,7.0\n345,44,6.5\n345,45,6.0\n345,46,6.5\n345,47,7.0\n345,48,7.5\n345,49,8.0\n345,50,15.5\n345,51,15.0\n345,52,14.5\n345,53,14.0\n345,54,13.5\n345,55,13.0\n345,56,12.5\n345,57,12.0\n345,58,11.5\n345,59,11.0\n345,60,10.5\n345,61,10.0\n345,62,9.5\n345,63,9.0\n345,64,8.5\n345,65,8.0\n345,66,7.5\n345,67,7.0\n345,68,6.5\n345,69,6.0\n345,70,5.5\n345,71,6.0\n345,72,6.5\n345,73,7.0\n345,74,7.5\n345,75,15.0\n345,76,14.5\n345,77,14.0\n345,78,13.5\n345,79,13.0\n345,80,12.5\n345,81,12.0\n345,82,11.5\n345,83,11.0\n345,84,10.5\n345,85,10.0\n345,86,9.5\n345,87,9.0\n345,88,8.5\n345,89,8.0\n345,90,7.5\n345,91,7.0\n345,92,6.5\n345,93,6.0\n345,94,5.5\n345,95,5.0\n345,96,5.5\n345,97,6.0\n345,98,6.5\n345,99,7.0\n345,100,14.5\n345,101,14.0\n345,102,13.5\n345,103,13.0\n345,104,12.5\n345,105,12.0\n345,106,11.5\n345,107,11.0\n345,108,10.5\n345,109,10.0\n345,110,9.5\n345,111,9.0\n345,112,8.5\n345,113,8.0\n345,114,7.5\n345,115,7.0\n345,116,6.5\n345,117,6.0\n345,118,5.5\n345,119,5.0\n345,120,4.5\n345,121,5.0\n345,122,5.5\n345,123,6.0\n345,124,6.5\n345,125,14.0\n345,126,13.5\n345,127,13.0\n345,128,12.5\n345,129,12.0\n345,130,11.5\n345,131,11.0\n345,132,10.5\n345,133,10.0\n345,134,9.5\n345,135,9.0\n345,136,8.5\n345,137,8.0\n345,138,7.5\n345,139,7.0\n345,140,6.5\n345,141,6.0\n345,142,5.5\n345,143,5.0\n345,144,4.5\n345,145,4.0\n345,146,4.5\n345,147,5.0\n345,148,5.5\n345,149,6.0\n345,150,13.5\n345,151,13.0\n345,152,12.5\n345,153,12.0\n345,154,11.5\n345,155,11.0\n345,156,10.5\n345,157,10.0\n345,158,9.5\n345,159,9.0\n345,160,8.5\n345,161,8.0\n345,162,7.5\n345,163,7.0\n345,164,6.5\n345,165,6.0\n345,166,5.5\n345,167,5.0\n345,168,4.5\n345,169,4.0\n345,170,3.5\n345,171,4.0\n345,172,4.5\n345,173,5.0\n345,174,5.5\n345,175,13.0\n345,176,12.5\n345,177,12.0\n345,178,11.5\n345,179,11.0\n345,180,10.5\n345,181,10.0\n345,182,9.5\n345,183,9.0\n345,184,8.5\n345,185,8.0\n345,186,7.5\n345,187,7.0\n345,188,6.5\n345,189,6.0\n345,190,5.5\n345,191,5.0\n345,192,4.5\n345,193,4.0\n345,194,3.5\n345,195,3.0\n345,196,3.5\n345,197,4.0\n345,198,4.5\n345,199,5.0\n345,200,12.5\n345,201,12.0\n345,202,11.5\n345,203,11.0\n345,204,10.5\n345,205,10.0\n345,206,9.5\n345,207,9.0\n345,208,8.5\n345,209,8.0\n345,210,7.5\n345,211,7.0\n345,212,6.5\n345,213,6.0\n345,214,5.5\n345,215,5.0\n345,216,4.5\n345,217,4.0\n345,218,3.5\n345,219,3.0\n345,220,2.5\n345,221,3.0\n345,222,3.5\n345,223,4.0\n345,224,4.5\n345,225,12.0\n345,226,11.5\n345,227,11.0\n345,228,10.5\n345,229,10.0\n345,230,9.5\n345,231,9.0\n345,232,8.5\n345,233,8.0\n345,234,7.5\n345,235,7.0\n345,236,6.5\n345,237,6.0\n345,238,5.5\n345,239,5.0\n345,240,4.5\n345,241,4.0\n345,242,3.5\n345,243,3.0\n345,244,2.5\n345,245,2.0\n345,246,2.5\n345,247,3.0\n345,248,3.5\n345,249,4.0\n345,250,11.5\n345,251,11.0\n345,252,10.5\n345,253,10.0\n345,254,9.5\n345,255,9.0\n345,256,8.5\n345,257,8.0\n345,258,7.5\n345,259,7.0\n345,260,6.5\n345,261,6.0\n345,262,5.5\n345,263,5.0\n345,264,4.5\n345,265,4.0\n345,266,3.5\n345,267,3.0\n345,268,2.5\n345,269,2.0\n345,270,1.5\n345,271,2.0\n345,272,2.5\n345,273,3.0\n345,274,3.5\n345,275,11.0\n345,276,10.5\n345,277,10.0\n345,278,9.5\n345,279,9.0\n345,280,8.5\n345,281,8.0\n345,282,7.5\n345,283,7.0\n345,284,6.5\n345,285,6.0\n345,286,5.5\n345,287,5.0\n345,288,4.5\n345,289,4.0\n345,290,3.5\n345,291,3.0\n345,292,2.5\n345,293,2.0\n345,294,1.5\n345,295,1.0\n345,296,1.5\n345,297,2.0\n345,298,2.5\n345,299,3.0\n345,300,10.5\n345,301,10.0\n345,302,9.5\n345,303,9.0\n345,304,8.5\n345,305,8.0\n345,306,7.5\n345,307,7.0\n345,308,6.5\n345,309,6.0\n345,310,5.5\n345,311,5.0\n345,312,4.5\n345,313,4.0\n345,314,3.5\n345,315,3.0\n345,316,2.5\n345,317,2.0\n345,318,1.5\n345,319,1.0\n345,320,0.5\n345,321,1.0\n345,322,1.5\n345,323,2.0\n345,324,2.5\n345,325,10.0\n345,326,9.5\n345,327,9.0\n345,328,8.5\n345,329,8.0\n345,330,7.5\n345,331,7.0\n345,332,6.5\n345,333,6.0\n345,334,5.5\n345,335,5.0\n345,336,4.5\n345,337,4.0\n345,338,3.5\n345,339,3.0\n345,340,2.5\n345,341,2.0\n345,342,1.5\n345,343,1.0\n345,344,0.5\n345,345,0\n345,346,0.5\n345,347,1.0\n345,348,1.5\n345,349,2.0\n345,350,10.5\n345,351,10.0\n345,352,9.5\n345,353,9.0\n345,354,8.5\n345,355,8.0\n345,356,7.5\n345,357,7.0\n345,358,6.5\n345,359,6.0\n345,360,5.5\n345,361,5.0\n345,362,4.5\n345,363,4.0\n345,364,3.5\n345,365,3.0\n345,366,2.5\n345,367,2.0\n345,368,1.5\n345,369,1.0\n345,370,0.5\n345,371,1.0\n345,372,1.5\n345,373,2.0\n345,374,2.5\n345,375,11.0\n345,376,10.5\n345,377,10.0\n345,378,9.5\n345,379,9.0\n345,380,8.5\n345,381,8.0\n345,382,7.5\n345,383,7.0\n345,384,6.5\n345,385,6.0\n345,386,5.5\n345,387,5.0\n345,388,4.5\n345,389,4.0\n345,390,3.5\n345,391,3.0\n345,392,2.5\n345,393,2.0\n345,394,1.5\n345,395,1.0\n345,396,1.5\n345,397,2.0\n345,398,2.5\n345,399,3.0\n345,400,11.5\n345,401,11.0\n345,402,10.5\n345,403,10.0\n345,404,9.5\n345,405,9.0\n345,406,8.5\n345,407,8.0\n345,408,7.5\n345,409,7.0\n345,410,6.5\n345,411,6.0\n345,412,5.5\n345,413,5.0\n345,414,4.5\n345,415,4.0\n345,416,3.5\n345,417,3.0\n345,418,2.5\n345,419,2.0\n345,420,1.5\n345,421,2.0\n345,422,2.5\n345,423,3.0\n345,424,3.5\n345,425,12.0\n345,426,11.5\n345,427,11.0\n345,428,10.5\n345,429,10.0\n345,430,9.5\n345,431,9.0\n345,432,8.5\n345,433,8.0\n345,434,7.5\n345,435,7.0\n345,436,6.5\n345,437,6.0\n345,438,5.5\n345,439,5.0\n345,440,4.5\n345,441,4.0\n345,442,3.5\n345,443,3.0\n345,444,2.5\n345,445,2.0\n345,446,2.5\n345,447,3.0\n345,448,3.5\n345,449,4.0\n345,450,12.5\n345,451,12.0\n345,452,11.5\n345,453,11.0\n345,454,10.5\n345,455,10.0\n345,456,9.5\n345,457,9.0\n345,458,8.5\n345,459,8.0\n345,460,7.5\n345,461,7.0\n345,462,6.5\n345,463,6.0\n345,464,5.5\n345,465,5.0\n345,466,4.5\n345,467,4.0\n345,468,3.5\n345,469,3.0\n345,470,2.5\n345,471,3.0\n345,472,3.5\n345,473,4.0\n345,474,4.5\n345,475,13.0\n345,476,12.5\n345,477,12.0\n345,478,11.5\n345,479,11.0\n345,480,10.5\n345,481,10.0\n345,482,9.5\n345,483,9.0\n345,484,8.5\n345,485,8.0\n345,486,7.5\n345,487,7.0\n345,488,6.5\n345,489,6.0\n345,490,5.5\n345,491,5.0\n345,492,4.5\n345,493,4.0\n345,494,3.5\n345,495,3.0\n345,496,3.5\n345,497,4.0\n345,498,4.5\n345,499,5.0\n345,500,13.5\n345,501,13.0\n345,502,12.5\n345,503,12.0\n345,504,11.5\n345,505,11.0\n345,506,10.5\n345,507,10.0\n345,508,9.5\n345,509,9.0\n345,510,8.5\n345,511,8.0\n345,512,7.5\n345,513,7.0\n345,514,6.5\n345,515,6.0\n345,516,5.5\n345,517,5.0\n345,518,4.5\n345,519,4.0\n345,520,3.5\n345,521,4.0\n345,522,4.5\n345,523,5.0\n345,524,5.5\n345,525,14.0\n345,526,13.5\n345,527,13.0\n345,528,12.5\n345,529,12.0\n345,530,11.5\n345,531,11.0\n345,532,10.5\n345,533,10.0\n345,534,9.5\n345,535,9.0\n345,536,8.5\n345,537,8.0\n345,538,7.5\n345,539,7.0\n345,540,6.5\n345,541,6.0\n345,542,5.5\n345,543,5.0\n345,544,4.5\n345,545,4.0\n345,546,4.5\n345,547,5.0\n345,548,5.5\n345,549,6.0\n345,550,14.5\n345,551,14.0\n345,552,13.5\n345,553,13.0\n345,554,12.5\n345,555,12.0\n345,556,11.5\n345,557,11.0\n345,558,10.5\n345,559,10.0\n345,560,9.5\n345,561,9.0\n345,562,8.5\n345,563,8.0\n345,564,7.5\n345,565,7.0\n345,566,6.5\n345,567,6.0\n345,568,5.5\n345,569,5.0\n345,570,4.5\n345,571,5.0\n345,572,5.5\n345,573,6.0\n345,574,6.5\n345,575,15.0\n345,576,14.5\n345,577,14.0\n345,578,13.5\n345,579,13.0\n345,580,12.5\n345,581,12.0\n345,582,11.5\n345,583,11.0\n345,584,10.5\n345,585,10.0\n345,586,9.5\n345,587,9.0\n345,588,8.5\n345,589,8.0\n345,590,7.5\n345,591,7.0\n345,592,6.5\n345,593,6.0\n345,594,5.5\n345,595,5.0\n345,596,5.5\n345,597,6.0\n345,598,6.5\n345,599,7.0\n345,600,15.5\n345,601,15.0\n345,602,14.5\n345,603,14.0\n345,604,13.5\n345,605,13.0\n345,606,12.5\n345,607,12.0\n345,608,11.5\n345,609,11.0\n345,610,10.5\n345,611,10.0\n345,612,9.5\n345,613,9.0\n345,614,8.5\n345,615,8.0\n345,616,7.5\n345,617,7.0\n345,618,6.5\n345,619,6.0\n345,620,5.5\n345,621,6.0\n345,622,6.5\n345,623,7.0\n345,624,7.5\n346,0,17.0\n346,1,16.5\n346,2,16.0\n346,3,15.5\n346,4,15.0\n346,5,14.5\n346,6,14.0\n346,7,13.5\n346,8,13.0\n346,9,12.5\n346,10,12.0\n346,11,11.5\n346,12,11.0\n346,13,10.5\n346,14,10.0\n346,15,9.5\n346,16,9.0\n346,17,8.5\n346,18,8.0\n346,19,7.5\n346,20,7.0\n346,21,6.5\n346,22,7.0\n346,23,7.5\n346,24,8.0\n346,25,16.5\n346,26,16.0\n346,27,15.5\n346,28,15.0\n346,29,14.5\n346,30,14.0\n346,31,13.5\n346,32,13.0\n346,33,12.5\n346,34,12.0\n346,35,11.5\n346,36,11.0\n346,37,10.5\n346,38,10.0\n346,39,9.5\n346,40,9.0\n346,41,8.5\n346,42,8.0\n346,43,7.5\n346,44,7.0\n346,45,6.5\n346,46,6.0\n346,47,6.5\n346,48,7.0\n346,49,7.5\n346,50,16.0\n346,51,15.5\n346,52,15.0\n346,53,14.5\n346,54,14.0\n346,55,13.5\n346,56,13.0\n346,57,12.5\n346,58,12.0\n346,59,11.5\n346,60,11.0\n346,61,10.5\n346,62,10.0\n346,63,9.5\n346,64,9.0\n346,65,8.5\n346,66,8.0\n346,67,7.5\n346,68,7.0\n346,69,6.5\n346,70,6.0\n346,71,5.5\n346,72,6.0\n346,73,6.5\n346,74,7.0\n346,75,15.5\n346,76,15.0\n346,77,14.5\n346,78,14.0\n346,79,13.5\n346,80,13.0\n346,81,12.5\n346,82,12.0\n346,83,11.5\n346,84,11.0\n346,85,10.5\n346,86,10.0\n346,87,9.5\n346,88,9.0\n346,89,8.5\n346,90,8.0\n346,91,7.5\n346,92,7.0\n346,93,6.5\n346,94,6.0\n346,95,5.5\n346,96,5.0\n346,97,5.5\n346,98,6.0\n346,99,6.5\n346,100,15.0\n346,101,14.5\n346,102,14.0\n346,103,13.5\n346,104,13.0\n346,105,12.5\n346,106,12.0\n346,107,11.5\n346,108,11.0\n346,109,10.5\n346,110,10.0\n346,111,9.5\n346,112,9.0\n346,113,8.5\n346,114,8.0\n346,115,7.5\n346,116,7.0\n346,117,6.5\n346,118,6.0\n346,119,5.5\n346,120,5.0\n346,121,4.5\n346,122,5.0\n346,123,5.5\n346,124,6.0\n346,125,14.5\n346,126,14.0\n346,127,13.5\n346,128,13.0\n346,129,12.5\n346,130,12.0\n346,131,11.5\n346,132,11.0\n346,133,10.5\n346,134,10.0\n346,135,9.5\n346,136,9.0\n346,137,8.5\n346,138,8.0\n346,139,7.5\n346,140,7.0\n346,141,6.5\n346,142,6.0\n346,143,5.5\n346,144,5.0\n346,145,4.5\n346,146,4.0\n346,147,4.5\n346,148,5.0\n346,149,5.5\n346,150,14.0\n346,151,13.5\n346,152,13.0\n346,153,12.5\n346,154,12.0\n346,155,11.5\n346,156,11.0\n346,157,10.5\n346,158,10.0\n346,159,9.5\n346,160,9.0\n346,161,8.5\n346,162,8.0\n346,163,7.5\n346,164,7.0\n346,165,6.5\n346,166,6.0\n346,167,5.5\n346,168,5.0\n346,169,4.5\n346,170,4.0\n346,171,3.5\n346,172,4.0\n346,173,4.5\n346,174,5.0\n346,175,13.5\n346,176,13.0\n346,177,12.5\n346,178,12.0\n346,179,11.5\n346,180,11.0\n346,181,10.5\n346,182,10.0\n346,183,9.5\n346,184,9.0\n346,185,8.5\n346,186,8.0\n346,187,7.5\n346,188,7.0\n346,189,6.5\n346,190,6.0\n346,191,5.5\n346,192,5.0\n346,193,4.5\n346,194,4.0\n346,195,3.5\n346,196,3.0\n346,197,3.5\n346,198,4.0\n346,199,4.5\n346,200,13.0\n346,201,12.5\n346,202,12.0\n346,203,11.5\n346,204,11.0\n346,205,10.5\n346,206,10.0\n346,207,9.5\n346,208,9.0\n346,209,8.5\n346,210,8.0\n346,211,7.5\n346,212,7.0\n346,213,6.5\n346,214,6.0\n346,215,5.5\n346,216,5.0\n346,217,4.5\n346,218,4.0\n346,219,3.5\n346,220,3.0\n346,221,2.5\n346,222,3.0\n346,223,3.5\n346,224,4.0\n346,225,12.5\n346,226,12.0\n346,227,11.5\n346,228,11.0\n346,229,10.5\n346,230,10.0\n346,231,9.5\n346,232,9.0\n346,233,8.5\n346,234,8.0\n346,235,7.5\n346,236,7.0\n346,237,6.5\n346,238,6.0\n346,239,5.5\n346,240,5.0\n346,241,4.5\n346,242,4.0\n346,243,3.5\n346,244,3.0\n346,245,2.5\n346,246,2.0\n346,247,2.5\n346,248,3.0\n346,249,3.5\n346,250,12.0\n346,251,11.5\n346,252,11.0\n346,253,10.5\n346,254,10.0\n346,255,9.5\n346,256,9.0\n346,257,8.5\n346,258,8.0\n346,259,7.5\n346,260,7.0\n346,261,6.5\n346,262,6.0\n346,263,5.5\n346,264,5.0\n346,265,4.5\n346,266,4.0\n346,267,3.5\n346,268,3.0\n346,269,2.5\n346,270,2.0\n346,271,1.5\n346,272,2.0\n346,273,2.5\n346,274,3.0\n346,275,11.5\n346,276,11.0\n346,277,10.5\n346,278,10.0\n346,279,9.5\n346,280,9.0\n346,281,8.5\n346,282,8.0\n346,283,7.5\n346,284,7.0\n346,285,6.5\n346,286,6.0\n346,287,5.5\n346,288,5.0\n346,289,4.5\n346,290,4.0\n346,291,3.5\n346,292,3.0\n346,293,2.5\n346,294,2.0\n346,295,1.5\n346,296,1.0\n346,297,1.5\n346,298,2.0\n346,299,2.5\n346,300,11.0\n346,301,10.5\n346,302,10.0\n346,303,9.5\n346,304,9.0\n346,305,8.5\n346,306,8.0\n346,307,7.5\n346,308,7.0\n346,309,6.5\n346,310,6.0\n346,311,5.5\n346,312,5.0\n346,313,4.5\n346,314,4.0\n346,315,3.5\n346,316,3.0\n346,317,2.5\n346,318,2.0\n346,319,1.5\n346,320,1.0\n346,321,0.5\n346,322,1.0\n346,323,1.5\n346,324,2.0\n346,325,10.5\n346,326,10.0\n346,327,9.5\n346,328,9.0\n346,329,8.5\n346,330,8.0\n346,331,7.5\n346,332,7.0\n346,333,6.5\n346,334,6.0\n346,335,5.5\n346,336,5.0\n346,337,4.5\n346,338,4.0\n346,339,3.5\n346,340,3.0\n346,341,2.5\n346,342,2.0\n346,343,1.5\n346,344,1.0\n346,345,0.5\n346,346,0\n346,347,0.5\n346,348,1.0\n346,349,1.5\n346,350,11.0\n346,351,10.5\n346,352,10.0\n346,353,9.5\n346,354,9.0\n346,355,8.5\n346,356,8.0\n346,357,7.5\n346,358,7.0\n346,359,6.5\n346,360,6.0\n346,361,5.5\n346,362,5.0\n346,363,4.5\n346,364,4.0\n346,365,3.5\n346,366,3.0\n346,367,2.5\n346,368,2.0\n346,369,1.5\n346,370,1.0\n346,371,0.5\n346,372,1.0\n346,373,1.5\n346,374,2.0\n346,375,11.5\n346,376,11.0\n346,377,10.5\n346,378,10.0\n346,379,9.5\n346,380,9.0\n346,381,8.5\n346,382,8.0\n346,383,7.5\n346,384,7.0\n346,385,6.5\n346,386,6.0\n346,387,5.5\n346,388,5.0\n346,389,4.5\n346,390,4.0\n346,391,3.5\n346,392,3.0\n346,393,2.5\n346,394,2.0\n346,395,1.5\n346,396,1.0\n346,397,1.5\n346,398,2.0\n346,399,2.5\n346,400,12.0\n346,401,11.5\n346,402,11.0\n346,403,10.5\n346,404,10.0\n346,405,9.5\n346,406,9.0\n346,407,8.5\n346,408,8.0\n346,409,7.5\n346,410,7.0\n346,411,6.5\n346,412,6.0\n346,413,5.5\n346,414,5.0\n346,415,4.5\n346,416,4.0\n346,417,3.5\n346,418,3.0\n346,419,2.5\n346,420,2.0\n346,421,1.5\n346,422,2.0\n346,423,2.5\n346,424,3.0\n346,425,12.5\n346,426,12.0\n346,427,11.5\n346,428,11.0\n346,429,10.5\n346,430,10.0\n346,431,9.5\n346,432,9.0\n346,433,8.5\n346,434,8.0\n346,435,7.5\n346,436,7.0\n346,437,6.5\n346,438,6.0\n346,439,5.5\n346,440,5.0\n346,441,4.5\n346,442,4.0\n346,443,3.5\n346,444,3.0\n346,445,2.5\n346,446,2.0\n346,447,2.5\n346,448,3.0\n346,449,3.5\n346,450,13.0\n346,451,12.5\n346,452,12.0\n346,453,11.5\n346,454,11.0\n346,455,10.5\n346,456,10.0\n346,457,9.5\n346,458,9.0\n346,459,8.5\n346,460,8.0\n346,461,7.5\n346,462,7.0\n346,463,6.5\n346,464,6.0\n346,465,5.5\n346,466,5.0\n346,467,4.5\n346,468,4.0\n346,469,3.5\n346,470,3.0\n346,471,2.5\n346,472,3.0\n346,473,3.5\n346,474,4.0\n346,475,13.5\n346,476,13.0\n346,477,12.5\n346,478,12.0\n346,479,11.5\n346,480,11.0\n346,481,10.5\n346,482,10.0\n346,483,9.5\n346,484,9.0\n346,485,8.5\n346,486,8.0\n346,487,7.5\n346,488,7.0\n346,489,6.5\n346,490,6.0\n346,491,5.5\n346,492,5.0\n346,493,4.5\n346,494,4.0\n346,495,3.5\n346,496,3.0\n346,497,3.5\n346,498,4.0\n346,499,4.5\n346,500,14.0\n346,501,13.5\n346,502,13.0\n346,503,12.5\n346,504,12.0\n346,505,11.5\n346,506,11.0\n346,507,10.5\n346,508,10.0\n346,509,9.5\n346,510,9.0\n346,511,8.5\n346,512,8.0\n346,513,7.5\n346,514,7.0\n346,515,6.5\n346,516,6.0\n346,517,5.5\n346,518,5.0\n346,519,4.5\n346,520,4.0\n346,521,3.5\n346,522,4.0\n346,523,4.5\n346,524,5.0\n346,525,14.5\n346,526,14.0\n346,527,13.5\n346,528,13.0\n346,529,12.5\n346,530,12.0\n346,531,11.5\n346,532,11.0\n346,533,10.5\n346,534,10.0\n346,535,9.5\n346,536,9.0\n346,537,8.5\n346,538,8.0\n346,539,7.5\n346,540,7.0\n346,541,6.5\n346,542,6.0\n346,543,5.5\n346,544,5.0\n346,545,4.5\n346,546,4.0\n346,547,4.5\n346,548,5.0\n346,549,5.5\n346,550,15.0\n346,551,14.5\n346,552,14.0\n346,553,13.5\n346,554,13.0\n346,555,12.5\n346,556,12.0\n346,557,11.5\n346,558,11.0\n346,559,10.5\n346,560,10.0\n346,561,9.5\n346,562,9.0\n346,563,8.5\n346,564,8.0\n346,565,7.5\n346,566,7.0\n346,567,6.5\n346,568,6.0\n346,569,5.5\n346,570,5.0\n346,571,4.5\n346,572,5.0\n346,573,5.5\n346,574,6.0\n346,575,15.5\n346,576,15.0\n346,577,14.5\n346,578,14.0\n346,579,13.5\n346,580,13.0\n346,581,12.5\n346,582,12.0\n346,583,11.5\n346,584,11.0\n346,585,10.5\n346,586,10.0\n346,587,9.5\n346,588,9.0\n346,589,8.5\n346,590,8.0\n346,591,7.5\n346,592,7.0\n346,593,6.5\n346,594,6.0\n346,595,5.5\n346,596,5.0\n346,597,5.5\n346,598,6.0\n346,599,6.5\n346,600,16.0\n346,601,15.5\n346,602,15.0\n346,603,14.5\n346,604,14.0\n346,605,13.5\n346,606,13.0\n346,607,12.5\n346,608,12.0\n346,609,11.5\n346,610,11.0\n346,611,10.5\n346,612,10.0\n346,613,9.5\n346,614,9.0\n346,615,8.5\n346,616,8.0\n346,617,7.5\n346,618,7.0\n346,619,6.5\n346,620,6.0\n346,621,5.5\n346,622,6.0\n346,623,6.5\n346,624,7.0\n347,0,17.5\n347,1,17.0\n347,2,16.5\n347,3,16.0\n347,4,15.5\n347,5,15.0\n347,6,14.5\n347,7,14.0\n347,8,13.5\n347,9,13.0\n347,10,12.5\n347,11,12.0\n347,12,11.5\n347,13,11.0\n347,14,10.5\n347,15,10.0\n347,16,9.5\n347,17,9.0\n347,18,8.5\n347,19,8.0\n347,20,7.5\n347,21,7.0\n347,22,6.5\n347,23,7.0\n347,24,7.5\n347,25,17.0\n347,26,16.5\n347,27,16.0\n347,28,15.5\n347,29,15.0\n347,30,14.5\n347,31,14.0\n347,32,13.5\n347,33,13.0\n347,34,12.5\n347,35,12.0\n347,36,11.5\n347,37,11.0\n347,38,10.5\n347,39,10.0\n347,40,9.5\n347,41,9.0\n347,42,8.5\n347,43,8.0\n347,44,7.5\n347,45,7.0\n347,46,6.5\n347,47,6.0\n347,48,6.5\n347,49,7.0\n347,50,16.5\n347,51,16.0\n347,52,15.5\n347,53,15.0\n347,54,14.5\n347,55,14.0\n347,56,13.5\n347,57,13.0\n347,58,12.5\n347,59,12.0\n347,60,11.5\n347,61,11.0\n347,62,10.5\n347,63,10.0\n347,64,9.5\n347,65,9.0\n347,66,8.5\n347,67,8.0\n347,68,7.5\n347,69,7.0\n347,70,6.5\n347,71,6.0\n347,72,5.5\n347,73,6.0\n347,74,6.5\n347,75,16.0\n347,76,15.5\n347,77,15.0\n347,78,14.5\n347,79,14.0\n347,80,13.5\n347,81,13.0\n347,82,12.5\n347,83,12.0\n347,84,11.5\n347,85,11.0\n347,86,10.5\n347,87,10.0\n347,88,9.5\n347,89,9.0\n347,90,8.5\n347,91,8.0\n347,92,7.5\n347,93,7.0\n347,94,6.5\n347,95,6.0\n347,96,5.5\n347,97,5.0\n347,98,5.5\n347,99,6.0\n347,100,15.5\n347,101,15.0\n347,102,14.5\n347,103,14.0\n347,104,13.5\n347,105,13.0\n347,106,12.5\n347,107,12.0\n347,108,11.5\n347,109,11.0\n347,110,10.5\n347,111,10.0\n347,112,9.5\n347,113,9.0\n347,114,8.5\n347,115,8.0\n347,116,7.5\n347,117,7.0\n347,118,6.5\n347,119,6.0\n347,120,5.5\n347,121,5.0\n347,122,4.5\n347,123,5.0\n347,124,5.5\n347,125,15.0\n347,126,14.5\n347,127,14.0\n347,128,13.5\n347,129,13.0\n347,130,12.5\n347,131,12.0\n347,132,11.5\n347,133,11.0\n347,134,10.5\n347,135,10.0\n347,136,9.5\n347,137,9.0\n347,138,8.5\n347,139,8.0\n347,140,7.5\n347,141,7.0\n347,142,6.5\n347,143,6.0\n347,144,5.5\n347,145,5.0\n347,146,4.5\n347,147,4.0\n347,148,4.5\n347,149,5.0\n347,150,14.5\n347,151,14.0\n347,152,13.5\n347,153,13.0\n347,154,12.5\n347,155,12.0\n347,156,11.5\n347,157,11.0\n347,158,10.5\n347,159,10.0\n347,160,9.5\n347,161,9.0\n347,162,8.5\n347,163,8.0\n347,164,7.5\n347,165,7.0\n347,166,6.5\n347,167,6.0\n347,168,5.5\n347,169,5.0\n347,170,4.5\n347,171,4.0\n347,172,3.5\n347,173,4.0\n347,174,4.5\n347,175,14.0\n347,176,13.5\n347,177,13.0\n347,178,12.5\n347,179,12.0\n347,180,11.5\n347,181,11.0\n347,182,10.5\n347,183,10.0\n347,184,9.5\n347,185,9.0\n347,186,8.5\n347,187,8.0\n347,188,7.5\n347,189,7.0\n347,190,6.5\n347,191,6.0\n347,192,5.5\n347,193,5.0\n347,194,4.5\n347,195,4.0\n347,196,3.5\n347,197,3.0\n347,198,3.5\n347,199,4.0\n347,200,13.5\n347,201,13.0\n347,202,12.5\n347,203,12.0\n347,204,11.5\n347,205,11.0\n347,206,10.5\n347,207,10.0\n347,208,9.5\n347,209,9.0\n347,210,8.5\n347,211,8.0\n347,212,7.5\n347,213,7.0\n347,214,6.5\n347,215,6.0\n347,216,5.5\n347,217,5.0\n347,218,4.5\n347,219,4.0\n347,220,3.5\n347,221,3.0\n347,222,2.5\n347,223,3.0\n347,224,3.5\n347,225,13.0\n347,226,12.5\n347,227,12.0\n347,228,11.5\n347,229,11.0\n347,230,10.5\n347,231,10.0\n347,232,9.5\n347,233,9.0\n347,234,8.5\n347,235,8.0\n347,236,7.5\n347,237,7.0\n347,238,6.5\n347,239,6.0\n347,240,5.5\n347,241,5.0\n347,242,4.5\n347,243,4.0\n347,244,3.5\n347,245,3.0\n347,246,2.5\n347,247,2.0\n347,248,2.5\n347,249,3.0\n347,250,12.5\n347,251,12.0\n347,252,11.5\n347,253,11.0\n347,254,10.5\n347,255,10.0\n347,256,9.5\n347,257,9.0\n347,258,8.5\n347,259,8.0\n347,260,7.5\n347,261,7.0\n347,262,6.5\n347,263,6.0\n347,264,5.5\n347,265,5.0\n347,266,4.5\n347,267,4.0\n347,268,3.5\n347,269,3.0\n347,270,2.5\n347,271,2.0\n347,272,1.5\n347,273,2.0\n347,274,2.5\n347,275,12.0\n347,276,11.5\n347,277,11.0\n347,278,10.5\n347,279,10.0\n347,280,9.5\n347,281,9.0\n347,282,8.5\n347,283,8.0\n347,284,7.5\n347,285,7.0\n347,286,6.5\n347,287,6.0\n347,288,5.5\n347,289,5.0\n347,290,4.5\n347,291,4.0\n347,292,3.5\n347,293,3.0\n347,294,2.5\n347,295,2.0\n347,296,1.5\n347,297,1.0\n347,298,1.5\n347,299,2.0\n347,300,11.5\n347,301,11.0\n347,302,10.5\n347,303,10.0\n347,304,9.5\n347,305,9.0\n347,306,8.5\n347,307,8.0\n347,308,7.5\n347,309,7.0\n347,310,6.5\n347,311,6.0\n347,312,5.5\n347,313,5.0\n347,314,4.5\n347,315,4.0\n347,316,3.5\n347,317,3.0\n347,318,2.5\n347,319,2.0\n347,320,1.5\n347,321,1.0\n347,322,0.5\n347,323,1.0\n347,324,1.5\n347,325,11.0\n347,326,10.5\n347,327,10.0\n347,328,9.5\n347,329,9.0\n347,330,8.5\n347,331,8.0\n347,332,7.5\n347,333,7.0\n347,334,6.5\n347,335,6.0\n347,336,5.5\n347,337,5.0\n347,338,4.5\n347,339,4.0\n347,340,3.5\n347,341,3.0\n347,342,2.5\n347,343,2.0\n347,344,1.5\n347,345,1.0\n347,346,0.5\n347,347,0\n347,348,0.5\n347,349,1.0\n347,350,11.5\n347,351,11.0\n347,352,10.5\n347,353,10.0\n347,354,9.5\n347,355,9.0\n347,356,8.5\n347,357,8.0\n347,358,7.5\n347,359,7.0\n347,360,6.5\n347,361,6.0\n347,362,5.5\n347,363,5.0\n347,364,4.5\n347,365,4.0\n347,366,3.5\n347,367,3.0\n347,368,2.5\n347,369,2.0\n347,370,1.5\n347,371,1.0\n347,372,0.5\n347,373,1.0\n347,374,1.5\n347,375,12.0\n347,376,11.5\n347,377,11.0\n347,378,10.5\n347,379,10.0\n347,380,9.5\n347,381,9.0\n347,382,8.5\n347,383,8.0\n347,384,7.5\n347,385,7.0\n347,386,6.5\n347,387,6.0\n347,388,5.5\n347,389,5.0\n347,390,4.5\n347,391,4.0\n347,392,3.5\n347,393,3.0\n347,394,2.5\n347,395,2.0\n347,396,1.5\n347,397,1.0\n347,398,1.5\n347,399,2.0\n347,400,12.5\n347,401,12.0\n347,402,11.5\n347,403,11.0\n347,404,10.5\n347,405,10.0\n347,406,9.5\n347,407,9.0\n347,408,8.5\n347,409,8.0\n347,410,7.5\n347,411,7.0\n347,412,6.5\n347,413,6.0\n347,414,5.5\n347,415,5.0\n347,416,4.5\n347,417,4.0\n347,418,3.5\n347,419,3.0\n347,420,2.5\n347,421,2.0\n347,422,1.5\n347,423,2.0\n347,424,2.5\n347,425,13.0\n347,426,12.5\n347,427,12.0\n347,428,11.5\n347,429,11.0\n347,430,10.5\n347,431,10.0\n347,432,9.5\n347,433,9.0\n347,434,8.5\n347,435,8.0\n347,436,7.5\n347,437,7.0\n347,438,6.5\n347,439,6.0\n347,440,5.5\n347,441,5.0\n347,442,4.5\n347,443,4.0\n347,444,3.5\n347,445,3.0\n347,446,2.5\n347,447,2.0\n347,448,2.5\n347,449,3.0\n347,450,13.5\n347,451,13.0\n347,452,12.5\n347,453,12.0\n347,454,11.5\n347,455,11.0\n347,456,10.5\n347,457,10.0\n347,458,9.5\n347,459,9.0\n347,460,8.5\n347,461,8.0\n347,462,7.5\n347,463,7.0\n347,464,6.5\n347,465,6.0\n347,466,5.5\n347,467,5.0\n347,468,4.5\n347,469,4.0\n347,470,3.5\n347,471,3.0\n347,472,2.5\n347,473,3.0\n347,474,3.5\n347,475,14.0\n347,476,13.5\n347,477,13.0\n347,478,12.5\n347,479,12.0\n347,480,11.5\n347,481,11.0\n347,482,10.5\n347,483,10.0\n347,484,9.5\n347,485,9.0\n347,486,8.5\n347,487,8.0\n347,488,7.5\n347,489,7.0\n347,490,6.5\n347,491,6.0\n347,492,5.5\n347,493,5.0\n347,494,4.5\n347,495,4.0\n347,496,3.5\n347,497,3.0\n347,498,3.5\n347,499,4.0\n347,500,14.5\n347,501,14.0\n347,502,13.5\n347,503,13.0\n347,504,12.5\n347,505,12.0\n347,506,11.5\n347,507,11.0\n347,508,10.5\n347,509,10.0\n347,510,9.5\n347,511,9.0\n347,512,8.5\n347,513,8.0\n347,514,7.5\n347,515,7.0\n347,516,6.5\n347,517,6.0\n347,518,5.5\n347,519,5.0\n347,520,4.5\n347,521,4.0\n347,522,3.5\n347,523,4.0\n347,524,4.5\n347,525,15.0\n347,526,14.5\n347,527,14.0\n347,528,13.5\n347,529,13.0\n347,530,12.5\n347,531,12.0\n347,532,11.5\n347,533,11.0\n347,534,10.5\n347,535,10.0\n347,536,9.5\n347,537,9.0\n347,538,8.5\n347,539,8.0\n347,540,7.5\n347,541,7.0\n347,542,6.5\n347,543,6.0\n347,544,5.5\n347,545,5.0\n347,546,4.5\n347,547,4.0\n347,548,4.5\n347,549,5.0\n347,550,15.5\n347,551,15.0\n347,552,14.5\n347,553,14.0\n347,554,13.5\n347,555,13.0\n347,556,12.5\n347,557,12.0\n347,558,11.5\n347,559,11.0\n347,560,10.5\n347,561,10.0\n347,562,9.5\n347,563,9.0\n347,564,8.5\n347,565,8.0\n347,566,7.5\n347,567,7.0\n347,568,6.5\n347,569,6.0\n347,570,5.5\n347,571,5.0\n347,572,4.5\n347,573,5.0\n347,574,5.5\n347,575,16.0\n347,576,15.5\n347,577,15.0\n347,578,14.5\n347,579,14.0\n347,580,13.5\n347,581,13.0\n347,582,12.5\n347,583,12.0\n347,584,11.5\n347,585,11.0\n347,586,10.5\n347,587,10.0\n347,588,9.5\n347,589,9.0\n347,590,8.5\n347,591,8.0\n347,592,7.5\n347,593,7.0\n347,594,6.5\n347,595,6.0\n347,596,5.5\n347,597,5.0\n347,598,5.5\n347,599,6.0\n347,600,16.5\n347,601,16.0\n347,602,15.5\n347,603,15.0\n347,604,14.5\n347,605,14.0\n347,606,13.5\n347,607,13.0\n347,608,12.5\n347,609,12.0\n347,610,11.5\n347,611,11.0\n347,612,10.5\n347,613,10.0\n347,614,9.5\n347,615,9.0\n347,616,8.5\n347,617,8.0\n347,618,7.5\n347,619,7.0\n347,620,6.5\n347,621,6.0\n347,622,5.5\n347,623,6.0\n347,624,6.5\n348,0,18.0\n348,1,17.5\n348,2,17.0\n348,3,16.5\n348,4,16.0\n348,5,15.5\n348,6,15.0\n348,7,14.5\n348,8,14.0\n348,9,13.5\n348,10,13.0\n348,11,12.5\n348,12,12.0\n348,13,11.5\n348,14,11.0\n348,15,10.5\n348,16,10.0\n348,17,9.5\n348,18,9.0\n348,19,8.5\n348,20,8.0\n348,21,7.5\n348,22,7.0\n348,23,6.5\n348,24,7.0\n348,25,17.5\n348,26,17.0\n348,27,16.5\n348,28,16.0\n348,29,15.5\n348,30,15.0\n348,31,14.5\n348,32,14.0\n348,33,13.5\n348,34,13.0\n348,35,12.5\n348,36,12.0\n348,37,11.5\n348,38,11.0\n348,39,10.5\n348,40,10.0\n348,41,9.5\n348,42,9.0\n348,43,8.5\n348,44,8.0\n348,45,7.5\n348,46,7.0\n348,47,6.5\n348,48,6.0\n348,49,6.5\n348,50,17.0\n348,51,16.5\n348,52,16.0\n348,53,15.5\n348,54,15.0\n348,55,14.5\n348,56,14.0\n348,57,13.5\n348,58,13.0\n348,59,12.5\n348,60,12.0\n348,61,11.5\n348,62,11.0\n348,63,10.5\n348,64,10.0\n348,65,9.5\n348,66,9.0\n348,67,8.5\n348,68,8.0\n348,69,7.5\n348,70,7.0\n348,71,6.5\n348,72,6.0\n348,73,5.5\n348,74,6.0\n348,75,16.5\n348,76,16.0\n348,77,15.5\n348,78,15.0\n348,79,14.5\n348,80,14.0\n348,81,13.5\n348,82,13.0\n348,83,12.5\n348,84,12.0\n348,85,11.5\n348,86,11.0\n348,87,10.5\n348,88,10.0\n348,89,9.5\n348,90,9.0\n348,91,8.5\n348,92,8.0\n348,93,7.5\n348,94,7.0\n348,95,6.5\n348,96,6.0\n348,97,5.5\n348,98,5.0\n348,99,5.5\n348,100,16.0\n348,101,15.5\n348,102,15.0\n348,103,14.5\n348,104,14.0\n348,105,13.5\n348,106,13.0\n348,107,12.5\n348,108,12.0\n348,109,11.5\n348,110,11.0\n348,111,10.5\n348,112,10.0\n348,113,9.5\n348,114,9.0\n348,115,8.5\n348,116,8.0\n348,117,7.5\n348,118,7.0\n348,119,6.5\n348,120,6.0\n348,121,5.5\n348,122,5.0\n348,123,4.5\n348,124,5.0\n348,125,15.5\n348,126,15.0\n348,127,14.5\n348,128,14.0\n348,129,13.5\n348,130,13.0\n348,131,12.5\n348,132,12.0\n348,133,11.5\n348,134,11.0\n348,135,10.5\n348,136,10.0\n348,137,9.5\n348,138,9.0\n348,139,8.5\n348,140,8.0\n348,141,7.5\n348,142,7.0\n348,143,6.5\n348,144,6.0\n348,145,5.5\n348,146,5.0\n348,147,4.5\n348,148,4.0\n348,149,4.5\n348,150,15.0\n348,151,14.5\n348,152,14.0\n348,153,13.5\n348,154,13.0\n348,155,12.5\n348,156,12.0\n348,157,11.5\n348,158,11.0\n348,159,10.5\n348,160,10.0\n348,161,9.5\n348,162,9.0\n348,163,8.5\n348,164,8.0\n348,165,7.5\n348,166,7.0\n348,167,6.5\n348,168,6.0\n348,169,5.5\n348,170,5.0\n348,171,4.5\n348,172,4.0\n348,173,3.5\n348,174,4.0\n348,175,14.5\n348,176,14.0\n348,177,13.5\n348,178,13.0\n348,179,12.5\n348,180,12.0\n348,181,11.5\n348,182,11.0\n348,183,10.5\n348,184,10.0\n348,185,9.5\n348,186,9.0\n348,187,8.5\n348,188,8.0\n348,189,7.5\n348,190,7.0\n348,191,6.5\n348,192,6.0\n348,193,5.5\n348,194,5.0\n348,195,4.5\n348,196,4.0\n348,197,3.5\n348,198,3.0\n348,199,3.5\n348,200,14.0\n348,201,13.5\n348,202,13.0\n348,203,12.5\n348,204,12.0\n348,205,11.5\n348,206,11.0\n348,207,10.5\n348,208,10.0\n348,209,9.5\n348,210,9.0\n348,211,8.5\n348,212,8.0\n348,213,7.5\n348,214,7.0\n348,215,6.5\n348,216,6.0\n348,217,5.5\n348,218,5.0\n348,219,4.5\n348,220,4.0\n348,221,3.5\n348,222,3.0\n348,223,2.5\n348,224,3.0\n348,225,13.5\n348,226,13.0\n348,227,12.5\n348,228,12.0\n348,229,11.5\n348,230,11.0\n348,231,10.5\n348,232,10.0\n348,233,9.5\n348,234,9.0\n348,235,8.5\n348,236,8.0\n348,237,7.5\n348,238,7.0\n348,239,6.5\n348,240,6.0\n348,241,5.5\n348,242,5.0\n348,243,4.5\n348,244,4.0\n348,245,3.5\n348,246,3.0\n348,247,2.5\n348,248,2.0\n348,249,2.5\n348,250,13.0\n348,251,12.5\n348,252,12.0\n348,253,11.5\n348,254,11.0\n348,255,10.5\n348,256,10.0\n348,257,9.5\n348,258,9.0\n348,259,8.5\n348,260,8.0\n348,261,7.5\n348,262,7.0\n348,263,6.5\n348,264,6.0\n348,265,5.5\n348,266,5.0\n348,267,4.5\n348,268,4.0\n348,269,3.5\n348,270,3.0\n348,271,2.5\n348,272,2.0\n348,273,1.5\n348,274,2.0\n348,275,12.5\n348,276,12.0\n348,277,11.5\n348,278,11.0\n348,279,10.5\n348,280,10.0\n348,281,9.5\n348,282,9.0\n348,283,8.5\n348,284,8.0\n348,285,7.5\n348,286,7.0\n348,287,6.5\n348,288,6.0\n348,289,5.5\n348,290,5.0\n348,291,4.5\n348,292,4.0\n348,293,3.5\n348,294,3.0\n348,295,2.5\n348,296,2.0\n348,297,1.5\n348,298,1.0\n348,299,1.5\n348,300,12.0\n348,301,11.5\n348,302,11.0\n348,303,10.5\n348,304,10.0\n348,305,9.5\n348,306,9.0\n348,307,8.5\n348,308,8.0\n348,309,7.5\n348,310,7.0\n348,311,6.5\n348,312,6.0\n348,313,5.5\n348,314,5.0\n348,315,4.5\n348,316,4.0\n348,317,3.5\n348,318,3.0\n348,319,2.5\n348,320,2.0\n348,321,1.5\n348,322,1.0\n348,323,0.5\n348,324,1.0\n348,325,11.5\n348,326,11.0\n348,327,10.5\n348,328,10.0\n348,329,9.5\n348,330,9.0\n348,331,8.5\n348,332,8.0\n348,333,7.5\n348,334,7.0\n348,335,6.5\n348,336,6.0\n348,337,5.5\n348,338,5.0\n348,339,4.5\n348,340,4.0\n348,341,3.5\n348,342,3.0\n348,343,2.5\n348,344,2.0\n348,345,1.5\n348,346,1.0\n348,347,0.5\n348,348,0\n348,349,0.5\n348,350,12.0\n348,351,11.5\n348,352,11.0\n348,353,10.5\n348,354,10.0\n348,355,9.5\n348,356,9.0\n348,357,8.5\n348,358,8.0\n348,359,7.5\n348,360,7.0\n348,361,6.5\n348,362,6.0\n348,363,5.5\n348,364,5.0\n348,365,4.5\n348,366,4.0\n348,367,3.5\n348,368,3.0\n348,369,2.5\n348,370,2.0\n348,371,1.5\n348,372,1.0\n348,373,0.5\n348,374,1.0\n348,375,12.5\n348,376,12.0\n348,377,11.5\n348,378,11.0\n348,379,10.5\n348,380,10.0\n348,381,9.5\n348,382,9.0\n348,383,8.5\n348,384,8.0\n348,385,7.5\n348,386,7.0\n348,387,6.5\n348,388,6.0\n348,389,5.5\n348,390,5.0\n348,391,4.5\n348,392,4.0\n348,393,3.5\n348,394,3.0\n348,395,2.5\n348,396,2.0\n348,397,1.5\n348,398,1.0\n348,399,1.5\n348,400,13.0\n348,401,12.5\n348,402,12.0\n348,403,11.5\n348,404,11.0\n348,405,10.5\n348,406,10.0\n348,407,9.5\n348,408,9.0\n348,409,8.5\n348,410,8.0\n348,411,7.5\n348,412,7.0\n348,413,6.5\n348,414,6.0\n348,415,5.5\n348,416,5.0\n348,417,4.5\n348,418,4.0\n348,419,3.5\n348,420,3.0\n348,421,2.5\n348,422,2.0\n348,423,1.5\n348,424,2.0\n348,425,13.5\n348,426,13.0\n348,427,12.5\n348,428,12.0\n348,429,11.5\n348,430,11.0\n348,431,10.5\n348,432,10.0\n348,433,9.5\n348,434,9.0\n348,435,8.5\n348,436,8.0\n348,437,7.5\n348,438,7.0\n348,439,6.5\n348,440,6.0\n348,441,5.5\n348,442,5.0\n348,443,4.5\n348,444,4.0\n348,445,3.5\n348,446,3.0\n348,447,2.5\n348,448,2.0\n348,449,2.5\n348,450,14.0\n348,451,13.5\n348,452,13.0\n348,453,12.5\n348,454,12.0\n348,455,11.5\n348,456,11.0\n348,457,10.5\n348,458,10.0\n348,459,9.5\n348,460,9.0\n348,461,8.5\n348,462,8.0\n348,463,7.5\n348,464,7.0\n348,465,6.5\n348,466,6.0\n348,467,5.5\n348,468,5.0\n348,469,4.5\n348,470,4.0\n348,471,3.5\n348,472,3.0\n348,473,2.5\n348,474,3.0\n348,475,14.5\n348,476,14.0\n348,477,13.5\n348,478,13.0\n348,479,12.5\n348,480,12.0\n348,481,11.5\n348,482,11.0\n348,483,10.5\n348,484,10.0\n348,485,9.5\n348,486,9.0\n348,487,8.5\n348,488,8.0\n348,489,7.5\n348,490,7.0\n348,491,6.5\n348,492,6.0\n348,493,5.5\n348,494,5.0\n348,495,4.5\n348,496,4.0\n348,497,3.5\n348,498,3.0\n348,499,3.5\n348,500,15.0\n348,501,14.5\n348,502,14.0\n348,503,13.5\n348,504,13.0\n348,505,12.5\n348,506,12.0\n348,507,11.5\n348,508,11.0\n348,509,10.5\n348,510,10.0\n348,511,9.5\n348,512,9.0\n348,513,8.5\n348,514,8.0\n348,515,7.5\n348,516,7.0\n348,517,6.5\n348,518,6.0\n348,519,5.5\n348,520,5.0\n348,521,4.5\n348,522,4.0\n348,523,3.5\n348,524,4.0\n348,525,15.5\n348,526,15.0\n348,527,14.5\n348,528,14.0\n348,529,13.5\n348,530,13.0\n348,531,12.5\n348,532,12.0\n348,533,11.5\n348,534,11.0\n348,535,10.5\n348,536,10.0\n348,537,9.5\n348,538,9.0\n348,539,8.5\n348,540,8.0\n348,541,7.5\n348,542,7.0\n348,543,6.5\n348,544,6.0\n348,545,5.5\n348,546,5.0\n348,547,4.5\n348,548,4.0\n348,549,4.5\n348,550,16.0\n348,551,15.5\n348,552,15.0\n348,553,14.5\n348,554,14.0\n348,555,13.5\n348,556,13.0\n348,557,12.5\n348,558,12.0\n348,559,11.5\n348,560,11.0\n348,561,10.5\n348,562,10.0\n348,563,9.5\n348,564,9.0\n348,565,8.5\n348,566,8.0\n348,567,7.5\n348,568,7.0\n348,569,6.5\n348,570,6.0\n348,571,5.5\n348,572,5.0\n348,573,4.5\n348,574,5.0\n348,575,16.5\n348,576,16.0\n348,577,15.5\n348,578,15.0\n348,579,14.5\n348,580,14.0\n348,581,13.5\n348,582,13.0\n348,583,12.5\n348,584,12.0\n348,585,11.5\n348,586,11.0\n348,587,10.5\n348,588,10.0\n348,589,9.5\n348,590,9.0\n348,591,8.5\n348,592,8.0\n348,593,7.5\n348,594,7.0\n348,595,6.5\n348,596,6.0\n348,597,5.5\n348,598,5.0\n348,599,5.5\n348,600,17.0\n348,601,16.5\n348,602,16.0\n348,603,15.5\n348,604,15.0\n348,605,14.5\n348,606,14.0\n348,607,13.5\n348,608,13.0\n348,609,12.5\n348,610,12.0\n348,611,11.5\n348,612,11.0\n348,613,10.5\n348,614,10.0\n348,615,9.5\n348,616,9.0\n348,617,8.5\n348,618,8.0\n348,619,7.5\n348,620,7.0\n348,621,6.5\n348,622,6.0\n348,623,5.5\n348,624,6.0\n349,0,18.5\n349,1,18.0\n349,2,17.5\n349,3,17.0\n349,4,16.5\n349,5,16.0\n349,6,15.5\n349,7,15.0\n349,8,14.5\n349,9,14.0\n349,10,13.5\n349,11,13.0\n349,12,12.5\n349,13,12.0\n349,14,11.5\n349,15,11.0\n349,16,10.5\n349,17,10.0\n349,18,9.5\n349,19,9.0\n349,20,8.5\n349,21,8.0\n349,22,7.5\n349,23,7.0\n349,24,6.5\n349,25,18.0\n349,26,17.5\n349,27,17.0\n349,28,16.5\n349,29,16.0\n349,30,15.5\n349,31,15.0\n349,32,14.5\n349,33,14.0\n349,34,13.5\n349,35,13.0\n349,36,12.5\n349,37,12.0\n349,38,11.5\n349,39,11.0\n349,40,10.5\n349,41,10.0\n349,42,9.5\n349,43,9.0\n349,44,8.5\n349,45,8.0\n349,46,7.5\n349,47,7.0\n349,48,6.5\n349,49,6.0\n349,50,17.5\n349,51,17.0\n349,52,16.5\n349,53,16.0\n349,54,15.5\n349,55,15.0\n349,56,14.5\n349,57,14.0\n349,58,13.5\n349,59,13.0\n349,60,12.5\n349,61,12.0\n349,62,11.5\n349,63,11.0\n349,64,10.5\n349,65,10.0\n349,66,9.5\n349,67,9.0\n349,68,8.5\n349,69,8.0\n349,70,7.5\n349,71,7.0\n349,72,6.5\n349,73,6.0\n349,74,5.5\n349,75,17.0\n349,76,16.5\n349,77,16.0\n349,78,15.5\n349,79,15.0\n349,80,14.5\n349,81,14.0\n349,82,13.5\n349,83,13.0\n349,84,12.5\n349,85,12.0\n349,86,11.5\n349,87,11.0\n349,88,10.5\n349,89,10.0\n349,90,9.5\n349,91,9.0\n349,92,8.5\n349,93,8.0\n349,94,7.5\n349,95,7.0\n349,96,6.5\n349,97,6.0\n349,98,5.5\n349,99,5.0\n349,100,16.5\n349,101,16.0\n349,102,15.5\n349,103,15.0\n349,104,14.5\n349,105,14.0\n349,106,13.5\n349,107,13.0\n349,108,12.5\n349,109,12.0\n349,110,11.5\n349,111,11.0\n349,112,10.5\n349,113,10.0\n349,114,9.5\n349,115,9.0\n349,116,8.5\n349,117,8.0\n349,118,7.5\n349,119,7.0\n349,120,6.5\n349,121,6.0\n349,122,5.5\n349,123,5.0\n349,124,4.5\n349,125,16.0\n349,126,15.5\n349,127,15.0\n349,128,14.5\n349,129,14.0\n349,130,13.5\n349,131,13.0\n349,132,12.5\n349,133,12.0\n349,134,11.5\n349,135,11.0\n349,136,10.5\n349,137,10.0\n349,138,9.5\n349,139,9.0\n349,140,8.5\n349,141,8.0\n349,142,7.5\n349,143,7.0\n349,144,6.5\n349,145,6.0\n349,146,5.5\n349,147,5.0\n349,148,4.5\n349,149,4.0\n349,150,15.5\n349,151,15.0\n349,152,14.5\n349,153,14.0\n349,154,13.5\n349,155,13.0\n349,156,12.5\n349,157,12.0\n349,158,11.5\n349,159,11.0\n349,160,10.5\n349,161,10.0\n349,162,9.5\n349,163,9.0\n349,164,8.5\n349,165,8.0\n349,166,7.5\n349,167,7.0\n349,168,6.5\n349,169,6.0\n349,170,5.5\n349,171,5.0\n349,172,4.5\n349,173,4.0\n349,174,3.5\n349,175,15.0\n349,176,14.5\n349,177,14.0\n349,178,13.5\n349,179,13.0\n349,180,12.5\n349,181,12.0\n349,182,11.5\n349,183,11.0\n349,184,10.5\n349,185,10.0\n349,186,9.5\n349,187,9.0\n349,188,8.5\n349,189,8.0\n349,190,7.5\n349,191,7.0\n349,192,6.5\n349,193,6.0\n349,194,5.5\n349,195,5.0\n349,196,4.5\n349,197,4.0\n349,198,3.5\n349,199,3.0\n349,200,14.5\n349,201,14.0\n349,202,13.5\n349,203,13.0\n349,204,12.5\n349,205,12.0\n349,206,11.5\n349,207,11.0\n349,208,10.5\n349,209,10.0\n349,210,9.5\n349,211,9.0\n349,212,8.5\n349,213,8.0\n349,214,7.5\n349,215,7.0\n349,216,6.5\n349,217,6.0\n349,218,5.5\n349,219,5.0\n349,220,4.5\n349,221,4.0\n349,222,3.5\n349,223,3.0\n349,224,2.5\n349,225,14.0\n349,226,13.5\n349,227,13.0\n349,228,12.5\n349,229,12.0\n349,230,11.5\n349,231,11.0\n349,232,10.5\n349,233,10.0\n349,234,9.5\n349,235,9.0\n349,236,8.5\n349,237,8.0\n349,238,7.5\n349,239,7.0\n349,240,6.5\n349,241,6.0\n349,242,5.5\n349,243,5.0\n349,244,4.5\n349,245,4.0\n349,246,3.5\n349,247,3.0\n349,248,2.5\n349,249,2.0\n349,250,13.5\n349,251,13.0\n349,252,12.5\n349,253,12.0\n349,254,11.5\n349,255,11.0\n349,256,10.5\n349,257,10.0\n349,258,9.5\n349,259,9.0\n349,260,8.5\n349,261,8.0\n349,262,7.5\n349,263,7.0\n349,264,6.5\n349,265,6.0\n349,266,5.5\n349,267,5.0\n349,268,4.5\n349,269,4.0\n349,270,3.5\n349,271,3.0\n349,272,2.5\n349,273,2.0\n349,274,1.5\n349,275,13.0\n349,276,12.5\n349,277,12.0\n349,278,11.5\n349,279,11.0\n349,280,10.5\n349,281,10.0\n349,282,9.5\n349,283,9.0\n349,284,8.5\n349,285,8.0\n349,286,7.5\n349,287,7.0\n349,288,6.5\n349,289,6.0\n349,290,5.5\n349,291,5.0\n349,292,4.5\n349,293,4.0\n349,294,3.5\n349,295,3.0\n349,296,2.5\n349,297,2.0\n349,298,1.5\n349,299,1.0\n349,300,12.5\n349,301,12.0\n349,302,11.5\n349,303,11.0\n349,304,10.5\n349,305,10.0\n349,306,9.5\n349,307,9.0\n349,308,8.5\n349,309,8.0\n349,310,7.5\n349,311,7.0\n349,312,6.5\n349,313,6.0\n349,314,5.5\n349,315,5.0\n349,316,4.5\n349,317,4.0\n349,318,3.5\n349,319,3.0\n349,320,2.5\n349,321,2.0\n349,322,1.5\n349,323,1.0\n349,324,0.5\n349,325,12.0\n349,326,11.5\n349,327,11.0\n349,328,10.5\n349,329,10.0\n349,330,9.5\n349,331,9.0\n349,332,8.5\n349,333,8.0\n349,334,7.5\n349,335,7.0\n349,336,6.5\n349,337,6.0\n349,338,5.5\n349,339,5.0\n349,340,4.5\n349,341,4.0\n349,342,3.5\n349,343,3.0\n349,344,2.5\n349,345,2.0\n349,346,1.5\n349,347,1.0\n349,348,0.5\n349,349,0\n349,350,12.5\n349,351,12.0\n349,352,11.5\n349,353,11.0\n349,354,10.5\n349,355,10.0\n349,356,9.5\n349,357,9.0\n349,358,8.5\n349,359,8.0\n349,360,7.5\n349,361,7.0\n349,362,6.5\n349,363,6.0\n349,364,5.5\n349,365,5.0\n349,366,4.5\n349,367,4.0\n349,368,3.5\n349,369,3.0\n349,370,2.5\n349,371,2.0\n349,372,1.5\n349,373,1.0\n349,374,0.5\n349,375,13.0\n349,376,12.5\n349,377,12.0\n349,378,11.5\n349,379,11.0\n349,380,10.5\n349,381,10.0\n349,382,9.5\n349,383,9.0\n349,384,8.5\n349,385,8.0\n349,386,7.5\n349,387,7.0\n349,388,6.5\n349,389,6.0\n349,390,5.5\n349,391,5.0\n349,392,4.5\n349,393,4.0\n349,394,3.5\n349,395,3.0\n349,396,2.5\n349,397,2.0\n349,398,1.5\n349,399,1.0\n349,400,13.5\n349,401,13.0\n349,402,12.5\n349,403,12.0\n349,404,11.5\n349,405,11.0\n349,406,10.5\n349,407,10.0\n349,408,9.5\n349,409,9.0\n349,410,8.5\n349,411,8.0\n349,412,7.5\n349,413,7.0\n349,414,6.5\n349,415,6.0\n349,416,5.5\n349,417,5.0\n349,418,4.5\n349,419,4.0\n349,420,3.5\n349,421,3.0\n349,422,2.5\n349,423,2.0\n349,424,1.5\n349,425,14.0\n349,426,13.5\n349,427,13.0\n349,428,12.5\n349,429,12.0\n349,430,11.5\n349,431,11.0\n349,432,10.5\n349,433,10.0\n349,434,9.5\n349,435,9.0\n349,436,8.5\n349,437,8.0\n349,438,7.5\n349,439,7.0\n349,440,6.5\n349,441,6.0\n349,442,5.5\n349,443,5.0\n349,444,4.5\n349,445,4.0\n349,446,3.5\n349,447,3.0\n349,448,2.5\n349,449,2.0\n349,450,14.5\n349,451,14.0\n349,452,13.5\n349,453,13.0\n349,454,12.5\n349,455,12.0\n349,456,11.5\n349,457,11.0\n349,458,10.5\n349,459,10.0\n349,460,9.5\n349,461,9.0\n349,462,8.5\n349,463,8.0\n349,464,7.5\n349,465,7.0\n349,466,6.5\n349,467,6.0\n349,468,5.5\n349,469,5.0\n349,470,4.5\n349,471,4.0\n349,472,3.5\n349,473,3.0\n349,474,2.5\n349,475,15.0\n349,476,14.5\n349,477,14.0\n349,478,13.5\n349,479,13.0\n349,480,12.5\n349,481,12.0\n349,482,11.5\n349,483,11.0\n349,484,10.5\n349,485,10.0\n349,486,9.5\n349,487,9.0\n349,488,8.5\n349,489,8.0\n349,490,7.5\n349,491,7.0\n349,492,6.5\n349,493,6.0\n349,494,5.5\n349,495,5.0\n349,496,4.5\n349,497,4.0\n349,498,3.5\n349,499,3.0\n349,500,15.5\n349,501,15.0\n349,502,14.5\n349,503,14.0\n349,504,13.5\n349,505,13.0\n349,506,12.5\n349,507,12.0\n349,508,11.5\n349,509,11.0\n349,510,10.5\n349,511,10.0\n349,512,9.5\n349,513,9.0\n349,514,8.5\n349,515,8.0\n349,516,7.5\n349,517,7.0\n349,518,6.5\n349,519,6.0\n349,520,5.5\n349,521,5.0\n349,522,4.5\n349,523,4.0\n349,524,3.5\n349,525,16.0\n349,526,15.5\n349,527,15.0\n349,528,14.5\n349,529,14.0\n349,530,13.5\n349,531,13.0\n349,532,12.5\n349,533,12.0\n349,534,11.5\n349,535,11.0\n349,536,10.5\n349,537,10.0\n349,538,9.5\n349,539,9.0\n349,540,8.5\n349,541,8.0\n349,542,7.5\n349,543,7.0\n349,544,6.5\n349,545,6.0\n349,546,5.5\n349,547,5.0\n349,548,4.5\n349,549,4.0\n349,550,16.5\n349,551,16.0\n349,552,15.5\n349,553,15.0\n349,554,14.5\n349,555,14.0\n349,556,13.5\n349,557,13.0\n349,558,12.5\n349,559,12.0\n349,560,11.5\n349,561,11.0\n349,562,10.5\n349,563,10.0\n349,564,9.5\n349,565,9.0\n349,566,8.5\n349,567,8.0\n349,568,7.5\n349,569,7.0\n349,570,6.5\n349,571,6.0\n349,572,5.5\n349,573,5.0\n349,574,4.5\n349,575,17.0\n349,576,16.5\n349,577,16.0\n349,578,15.5\n349,579,15.0\n349,580,14.5\n349,581,14.0\n349,582,13.5\n349,583,13.0\n349,584,12.5\n349,585,12.0\n349,586,11.5\n349,587,11.0\n349,588,10.5\n349,589,10.0\n349,590,9.5\n349,591,9.0\n349,592,8.5\n349,593,8.0\n349,594,7.5\n349,595,7.0\n349,596,6.5\n349,597,6.0\n349,598,5.5\n349,599,5.0\n349,600,17.5\n349,601,17.0\n349,602,16.5\n349,603,16.0\n349,604,15.5\n349,605,15.0\n349,606,14.5\n349,607,14.0\n349,608,13.5\n349,609,13.0\n349,610,12.5\n349,611,12.0\n349,612,11.5\n349,613,11.0\n349,614,10.5\n349,615,10.0\n349,616,9.5\n349,617,9.0\n349,618,8.5\n349,619,8.0\n349,620,7.5\n349,621,7.0\n349,622,6.5\n349,623,6.0\n349,624,5.5\n350,0,7.0\n350,1,7.5\n350,2,8.0\n350,3,8.5\n350,4,9.0\n350,5,9.5\n350,6,10.0\n350,7,10.5\n350,8,11.0\n350,9,11.5\n350,10,12.0\n350,11,12.5\n350,12,13.0\n350,13,13.5\n350,14,14.0\n350,15,14.5\n350,16,15.0\n350,17,15.5\n350,18,16.0\n350,19,16.5\n350,20,17.0\n350,21,17.5\n350,22,18.0\n350,23,18.5\n350,24,19.0\n350,25,6.5\n350,26,7.0\n350,27,7.5\n350,28,8.0\n350,29,8.5\n350,30,9.0\n350,31,9.5\n350,32,10.0\n350,33,10.5\n350,34,11.0\n350,35,11.5\n350,36,12.0\n350,37,12.5\n350,38,13.0\n350,39,13.5\n350,40,14.0\n350,41,14.5\n350,42,15.0\n350,43,15.5\n350,44,16.0\n350,45,16.5\n350,46,17.0\n350,47,17.5\n350,48,18.0\n350,49,18.5\n350,50,6.0\n350,51,6.5\n350,52,7.0\n350,53,7.5\n350,54,8.0\n350,55,8.5\n350,56,9.0\n350,57,9.5\n350,58,10.0\n350,59,10.5\n350,60,11.0\n350,61,11.5\n350,62,12.0\n350,63,12.5\n350,64,13.0\n350,65,13.5\n350,66,14.0\n350,67,14.5\n350,68,15.0\n350,69,15.5\n350,70,16.0\n350,71,16.5\n350,72,17.0\n350,73,17.5\n350,74,18.0\n350,75,5.5\n350,76,6.0\n350,77,6.5\n350,78,7.0\n350,79,7.5\n350,80,8.0\n350,81,8.5\n350,82,9.0\n350,83,9.5\n350,84,10.0\n350,85,10.5\n350,86,11.0\n350,87,11.5\n350,88,12.0\n350,89,12.5\n350,90,13.0\n350,91,13.5\n350,92,14.0\n350,93,14.5\n350,94,15.0\n350,95,15.5\n350,96,16.0\n350,97,16.5\n350,98,17.0\n350,99,17.5\n350,100,5.0\n350,101,5.5\n350,102,6.0\n350,103,6.5\n350,104,7.0\n350,105,7.5\n350,106,8.0\n350,107,8.5\n350,108,9.0\n350,109,9.5\n350,110,10.0\n350,111,10.5\n350,112,11.0\n350,113,11.5\n350,114,12.0\n350,115,12.5\n350,116,13.0\n350,117,13.5\n350,118,14.0\n350,119,14.5\n350,120,15.0\n350,121,15.5\n350,122,16.0\n350,123,16.5\n350,124,17.0\n350,125,4.5\n350,126,5.0\n350,127,5.5\n350,128,6.0\n350,129,6.5\n350,130,7.0\n350,131,7.5\n350,132,8.0\n350,133,8.5\n350,134,9.0\n350,135,9.5\n350,136,10.0\n350,137,10.5\n350,138,11.0\n350,139,11.5\n350,140,12.0\n350,141,12.5\n350,142,13.0\n350,143,13.5\n350,144,14.0\n350,145,14.5\n350,146,15.0\n350,147,15.5\n350,148,16.0\n350,149,16.5\n350,150,4.0\n350,151,4.5\n350,152,5.0\n350,153,5.5\n350,154,6.0\n350,155,6.5\n350,156,7.0\n350,157,7.5\n350,158,8.0\n350,159,8.5\n350,160,9.0\n350,161,9.5\n350,162,10.0\n350,163,10.5\n350,164,11.0\n350,165,11.5\n350,166,12.0\n350,167,12.5\n350,168,13.0\n350,169,13.5\n350,170,14.0\n350,171,14.5\n350,172,15.0\n350,173,15.5\n350,174,16.0\n350,175,3.5\n350,176,4.0\n350,177,4.5\n350,178,5.0\n350,179,5.5\n350,180,6.0\n350,181,6.5\n350,182,7.0\n350,183,7.5\n350,184,8.0\n350,185,8.5\n350,186,9.0\n350,187,9.5\n350,188,10.0\n350,189,10.5\n350,190,11.0\n350,191,11.5\n350,192,12.0\n350,193,12.5\n350,194,13.0\n350,195,13.5\n350,196,14.0\n350,197,14.5\n350,198,15.0\n350,199,15.5\n350,200,3.0\n350,201,3.5\n350,202,4.0\n350,203,4.5\n350,204,5.0\n350,205,5.5\n350,206,6.0\n350,207,6.5\n350,208,7.0\n350,209,7.5\n350,210,8.0\n350,211,8.5\n350,212,9.0\n350,213,9.5\n350,214,10.0\n350,215,10.5\n350,216,11.0\n350,217,11.5\n350,218,12.0\n350,219,12.5\n350,220,13.0\n350,221,13.5\n350,222,14.0\n350,223,14.5\n350,224,15.0\n350,225,2.5\n350,226,3.0\n350,227,3.5\n350,228,4.0\n350,229,4.5\n350,230,5.0\n350,231,5.5\n350,232,6.0\n350,233,6.5\n350,234,7.0\n350,235,7.5\n350,236,8.0\n350,237,8.5\n350,238,9.0\n350,239,9.5\n350,240,10.0\n350,241,10.5\n350,242,11.0\n350,243,11.5\n350,244,12.0\n350,245,12.5\n350,246,13.0\n350,247,13.5\n350,248,14.0\n350,249,14.5\n350,250,2.0\n350,251,2.5\n350,252,3.0\n350,253,3.5\n350,254,4.0\n350,255,4.5\n350,256,5.0\n350,257,5.5\n350,258,6.0\n350,259,6.5\n350,260,7.0\n350,261,7.5\n350,262,8.0\n350,263,8.5\n350,264,9.0\n350,265,9.5\n350,266,10.0\n350,267,10.5\n350,268,11.0\n350,269,11.5\n350,270,12.0\n350,271,12.5\n350,272,13.0\n350,273,13.5\n350,274,14.0\n350,275,1.5\n350,276,2.0\n350,277,2.5\n350,278,3.0\n350,279,3.5\n350,280,4.0\n350,281,4.5\n350,282,5.0\n350,283,5.5\n350,284,6.0\n350,285,6.5\n350,286,7.0\n350,287,7.5\n350,288,8.0\n350,289,8.5\n350,290,9.0\n350,291,9.5\n350,292,10.0\n350,293,10.5\n350,294,11.0\n350,295,11.5\n350,296,12.0\n350,297,12.5\n350,298,13.0\n350,299,13.5\n350,300,1.0\n350,301,1.5\n350,302,2.0\n350,303,2.5\n350,304,3.0\n350,305,3.5\n350,306,4.0\n350,307,4.5\n350,308,5.0\n350,309,5.5\n350,310,6.0\n350,311,6.5\n350,312,7.0\n350,313,7.5\n350,314,8.0\n350,315,8.5\n350,316,9.0\n350,317,9.5\n350,318,10.0\n350,319,10.5\n350,320,11.0\n350,321,11.5\n350,322,12.0\n350,323,12.5\n350,324,13.0\n350,325,0.5\n350,326,1.0\n350,327,1.5\n350,328,2.0\n350,329,2.5\n350,330,3.0\n350,331,3.5\n350,332,4.0\n350,333,4.5\n350,334,5.0\n350,335,5.5\n350,336,6.0\n350,337,6.5\n350,338,7.0\n350,339,7.5\n350,340,8.0\n350,341,8.5\n350,342,9.0\n350,343,9.5\n350,344,10.0\n350,345,10.5\n350,346,11.0\n350,347,11.5\n350,348,12.0\n350,349,12.5\n350,350,0\n350,351,0.5\n350,352,1.0\n350,353,1.5\n350,354,2.0\n350,355,2.5\n350,356,3.0\n350,357,3.5\n350,358,4.0\n350,359,4.5\n350,360,5.0\n350,361,5.5\n350,362,6.0\n350,363,6.5\n350,364,7.0\n350,365,7.5\n350,366,8.0\n350,367,8.5\n350,368,9.0\n350,369,9.5\n350,370,10.0\n350,371,10.5\n350,372,11.0\n350,373,11.5\n350,374,12.0\n350,375,0.5\n350,376,1.0\n350,377,1.5\n350,378,2.0\n350,379,2.5\n350,380,3.0\n350,381,3.5\n350,382,4.0\n350,383,4.5\n350,384,5.0\n350,385,5.5\n350,386,6.0\n350,387,6.5\n350,388,7.0\n350,389,7.5\n350,390,8.0\n350,391,8.5\n350,392,9.0\n350,393,9.5\n350,394,10.0\n350,395,10.5\n350,396,11.0\n350,397,11.5\n350,398,12.0\n350,399,12.5\n350,400,1.0\n350,401,1.5\n350,402,2.0\n350,403,2.5\n350,404,3.0\n350,405,3.5\n350,406,4.0\n350,407,4.5\n350,408,5.0\n350,409,5.5\n350,410,6.0\n350,411,6.5\n350,412,7.0\n350,413,7.5\n350,414,8.0\n350,415,8.5\n350,416,9.0\n350,417,9.5\n350,418,10.0\n350,419,10.5\n350,420,11.0\n350,421,11.5\n350,422,12.0\n350,423,12.5\n350,424,13.0\n350,425,1.5\n350,426,2.0\n350,427,2.5\n350,428,3.0\n350,429,3.5\n350,430,4.0\n350,431,4.5\n350,432,5.0\n350,433,5.5\n350,434,6.0\n350,435,6.5\n350,436,7.0\n350,437,7.5\n350,438,8.0\n350,439,8.5\n350,440,9.0\n350,441,9.5\n350,442,10.0\n350,443,10.5\n350,444,11.0\n350,445,11.5\n350,446,12.0\n350,447,12.5\n350,448,13.0\n350,449,13.5\n350,450,2.0\n350,451,2.5\n350,452,3.0\n350,453,3.5\n350,454,4.0\n350,455,4.5\n350,456,5.0\n350,457,5.5\n350,458,6.0\n350,459,6.5\n350,460,7.0\n350,461,7.5\n350,462,8.0\n350,463,8.5\n350,464,9.0\n350,465,9.5\n350,466,10.0\n350,467,10.5\n350,468,11.0\n350,469,11.5\n350,470,12.0\n350,471,12.5\n350,472,13.0\n350,473,13.5\n350,474,14.0\n350,475,2.5\n350,476,3.0\n350,477,3.5\n350,478,4.0\n350,479,4.5\n350,480,5.0\n350,481,5.5\n350,482,6.0\n350,483,6.5\n350,484,7.0\n350,485,7.5\n350,486,8.0\n350,487,8.5\n350,488,9.0\n350,489,9.5\n350,490,10.0\n350,491,10.5\n350,492,11.0\n350,493,11.5\n350,494,12.0\n350,495,12.5\n350,496,13.0\n350,497,13.5\n350,498,14.0\n350,499,14.5\n350,500,3.0\n350,501,3.5\n350,502,4.0\n350,503,4.5\n350,504,5.0\n350,505,5.5\n350,506,6.0\n350,507,6.5\n350,508,7.0\n350,509,7.5\n350,510,8.0\n350,511,8.5\n350,512,9.0\n350,513,9.5\n350,514,10.0\n350,515,10.5\n350,516,11.0\n350,517,11.5\n350,518,12.0\n350,519,12.5\n350,520,13.0\n350,521,13.5\n350,522,14.0\n350,523,14.5\n350,524,15.0\n350,525,3.5\n350,526,4.0\n350,527,4.5\n350,528,5.0\n350,529,5.5\n350,530,6.0\n350,531,6.5\n350,532,7.0\n350,533,7.5\n350,534,8.0\n350,535,8.5\n350,536,9.0\n350,537,9.5\n350,538,10.0\n350,539,10.5\n350,540,11.0\n350,541,11.5\n350,542,12.0\n350,543,12.5\n350,544,13.0\n350,545,13.5\n350,546,14.0\n350,547,14.5\n350,548,15.0\n350,549,15.5\n350,550,4.0\n350,551,4.5\n350,552,5.0\n350,553,5.5\n350,554,6.0\n350,555,6.5\n350,556,7.0\n350,557,7.5\n350,558,8.0\n350,559,8.5\n350,560,9.0\n350,561,9.5\n350,562,10.0\n350,563,10.5\n350,564,11.0\n350,565,11.5\n350,566,12.0\n350,567,12.5\n350,568,13.0\n350,569,13.5\n350,570,14.0\n350,571,14.5\n350,572,15.0\n350,573,15.5\n350,574,16.0\n350,575,4.5\n350,576,5.0\n350,577,5.5\n350,578,6.0\n350,579,6.5\n350,580,7.0\n350,581,7.5\n350,582,8.0\n350,583,8.5\n350,584,9.0\n350,585,9.5\n350,586,10.0\n350,587,10.5\n350,588,11.0\n350,589,11.5\n350,590,12.0\n350,591,12.5\n350,592,13.0\n350,593,13.5\n350,594,14.0\n350,595,14.5\n350,596,15.0\n350,597,15.5\n350,598,16.0\n350,599,16.5\n350,600,5.0\n350,601,5.5\n350,602,6.0\n350,603,6.5\n350,604,7.0\n350,605,7.5\n350,606,8.0\n350,607,8.5\n350,608,9.0\n350,609,9.5\n350,610,10.0\n350,611,10.5\n350,612,11.0\n350,613,11.5\n350,614,12.0\n350,615,12.5\n350,616,13.0\n350,617,13.5\n350,618,14.0\n350,619,14.5\n350,620,15.0\n350,621,15.5\n350,622,16.0\n350,623,16.5\n350,624,17.0\n351,0,7.5\n351,1,7.0\n351,2,7.5\n351,3,8.0\n351,4,8.5\n351,5,9.0\n351,6,9.5\n351,7,10.0\n351,8,10.5\n351,9,11.0\n351,10,11.5\n351,11,12.0\n351,12,12.5\n351,13,13.0\n351,14,13.5\n351,15,14.0\n351,16,14.5\n351,17,15.0\n351,18,15.5\n351,19,16.0\n351,20,16.5\n351,21,17.0\n351,22,17.5\n351,23,18.0\n351,24,18.5\n351,25,7.0\n351,26,6.5\n351,27,7.0\n351,28,7.5\n351,29,8.0\n351,30,8.5\n351,31,9.0\n351,32,9.5\n351,33,10.0\n351,34,10.5\n351,35,11.0\n351,36,11.5\n351,37,12.0\n351,38,12.5\n351,39,13.0\n351,40,13.5\n351,41,14.0\n351,42,14.5\n351,43,15.0\n351,44,15.5\n351,45,16.0\n351,46,16.5\n351,47,17.0\n351,48,17.5\n351,49,18.0\n351,50,6.5\n351,51,6.0\n351,52,6.5\n351,53,7.0\n351,54,7.5\n351,55,8.0\n351,56,8.5\n351,57,9.0\n351,58,9.5\n351,59,10.0\n351,60,10.5\n351,61,11.0\n351,62,11.5\n351,63,12.0\n351,64,12.5\n351,65,13.0\n351,66,13.5\n351,67,14.0\n351,68,14.5\n351,69,15.0\n351,70,15.5\n351,71,16.0\n351,72,16.5\n351,73,17.0\n351,74,17.5\n351,75,6.0\n351,76,5.5\n351,77,6.0\n351,78,6.5\n351,79,7.0\n351,80,7.5\n351,81,8.0\n351,82,8.5\n351,83,9.0\n351,84,9.5\n351,85,10.0\n351,86,10.5\n351,87,11.0\n351,88,11.5\n351,89,12.0\n351,90,12.5\n351,91,13.0\n351,92,13.5\n351,93,14.0\n351,94,14.5\n351,95,15.0\n351,96,15.5\n351,97,16.0\n351,98,16.5\n351,99,17.0\n351,100,5.5\n351,101,5.0\n351,102,5.5\n351,103,6.0\n351,104,6.5\n351,105,7.0\n351,106,7.5\n351,107,8.0\n351,108,8.5\n351,109,9.0\n351,110,9.5\n351,111,10.0\n351,112,10.5\n351,113,11.0\n351,114,11.5\n351,115,12.0\n351,116,12.5\n351,117,13.0\n351,118,13.5\n351,119,14.0\n351,120,14.5\n351,121,15.0\n351,122,15.5\n351,123,16.0\n351,124,16.5\n351,125,5.0\n351,126,4.5\n351,127,5.0\n351,128,5.5\n351,129,6.0\n351,130,6.5\n351,131,7.0\n351,132,7.5\n351,133,8.0\n351,134,8.5\n351,135,9.0\n351,136,9.5\n351,137,10.0\n351,138,10.5\n351,139,11.0\n351,140,11.5\n351,141,12.0\n351,142,12.5\n351,143,13.0\n351,144,13.5\n351,145,14.0\n351,146,14.5\n351,147,15.0\n351,148,15.5\n351,149,16.0\n351,150,4.5\n351,151,4.0\n351,152,4.5\n351,153,5.0\n351,154,5.5\n351,155,6.0\n351,156,6.5\n351,157,7.0\n351,158,7.5\n351,159,8.0\n351,160,8.5\n351,161,9.0\n351,162,9.5\n351,163,10.0\n351,164,10.5\n351,165,11.0\n351,166,11.5\n351,167,12.0\n351,168,12.5\n351,169,13.0\n351,170,13.5\n351,171,14.0\n351,172,14.5\n351,173,15.0\n351,174,15.5\n351,175,4.0\n351,176,3.5\n351,177,4.0\n351,178,4.5\n351,179,5.0\n351,180,5.5\n351,181,6.0\n351,182,6.5\n351,183,7.0\n351,184,7.5\n351,185,8.0\n351,186,8.5\n351,187,9.0\n351,188,9.5\n351,189,10.0\n351,190,10.5\n351,191,11.0\n351,192,11.5\n351,193,12.0\n351,194,12.5\n351,195,13.0\n351,196,13.5\n351,197,14.0\n351,198,14.5\n351,199,15.0\n351,200,3.5\n351,201,3.0\n351,202,3.5\n351,203,4.0\n351,204,4.5\n351,205,5.0\n351,206,5.5\n351,207,6.0\n351,208,6.5\n351,209,7.0\n351,210,7.5\n351,211,8.0\n351,212,8.5\n351,213,9.0\n351,214,9.5\n351,215,10.0\n351,216,10.5\n351,217,11.0\n351,218,11.5\n351,219,12.0\n351,220,12.5\n351,221,13.0\n351,222,13.5\n351,223,14.0\n351,224,14.5\n351,225,3.0\n351,226,2.5\n351,227,3.0\n351,228,3.5\n351,229,4.0\n351,230,4.5\n351,231,5.0\n351,232,5.5\n351,233,6.0\n351,234,6.5\n351,235,7.0\n351,236,7.5\n351,237,8.0\n351,238,8.5\n351,239,9.0\n351,240,9.5\n351,241,10.0\n351,242,10.5\n351,243,11.0\n351,244,11.5\n351,245,12.0\n351,246,12.5\n351,247,13.0\n351,248,13.5\n351,249,14.0\n351,250,2.5\n351,251,2.0\n351,252,2.5\n351,253,3.0\n351,254,3.5\n351,255,4.0\n351,256,4.5\n351,257,5.0\n351,258,5.5\n351,259,6.0\n351,260,6.5\n351,261,7.0\n351,262,7.5\n351,263,8.0\n351,264,8.5\n351,265,9.0\n351,266,9.5\n351,267,10.0\n351,268,10.5\n351,269,11.0\n351,270,11.5\n351,271,12.0\n351,272,12.5\n351,273,13.0\n351,274,13.5\n351,275,2.0\n351,276,1.5\n351,277,2.0\n351,278,2.5\n351,279,3.0\n351,280,3.5\n351,281,4.0\n351,282,4.5\n351,283,5.0\n351,284,5.5\n351,285,6.0\n351,286,6.5\n351,287,7.0\n351,288,7.5\n351,289,8.0\n351,290,8.5\n351,291,9.0\n351,292,9.5\n351,293,10.0\n351,294,10.5\n351,295,11.0\n351,296,11.5\n351,297,12.0\n351,298,12.5\n351,299,13.0\n351,300,1.5\n351,301,1.0\n351,302,1.5\n351,303,2.0\n351,304,2.5\n351,305,3.0\n351,306,3.5\n351,307,4.0\n351,308,4.5\n351,309,5.0\n351,310,5.5\n351,311,6.0\n351,312,6.5\n351,313,7.0\n351,314,7.5\n351,315,8.0\n351,316,8.5\n351,317,9.0\n351,318,9.5\n351,319,10.0\n351,320,10.5\n351,321,11.0\n351,322,11.5\n351,323,12.0\n351,324,12.5\n351,325,1.0\n351,326,0.5\n351,327,1.0\n351,328,1.5\n351,329,2.0\n351,330,2.5\n351,331,3.0\n351,332,3.5\n351,333,4.0\n351,334,4.5\n351,335,5.0\n351,336,5.5\n351,337,6.0\n351,338,6.5\n351,339,7.0\n351,340,7.5\n351,341,8.0\n351,342,8.5\n351,343,9.0\n351,344,9.5\n351,345,10.0\n351,346,10.5\n351,347,11.0\n351,348,11.5\n351,349,12.0\n351,350,0.5\n351,351,0\n351,352,0.5\n351,353,1.0\n351,354,1.5\n351,355,2.0\n351,356,2.5\n351,357,3.0\n351,358,3.5\n351,359,4.0\n351,360,4.5\n351,361,5.0\n351,362,5.5\n351,363,6.0\n351,364,6.5\n351,365,7.0\n351,366,7.5\n351,367,8.0\n351,368,8.5\n351,369,9.0\n351,370,9.5\n351,371,10.0\n351,372,10.5\n351,373,11.0\n351,374,11.5\n351,375,1.0\n351,376,0.5\n351,377,1.0\n351,378,1.5\n351,379,2.0\n351,380,2.5\n351,381,3.0\n351,382,3.5\n351,383,4.0\n351,384,4.5\n351,385,5.0\n351,386,5.5\n351,387,6.0\n351,388,6.5\n351,389,7.0\n351,390,7.5\n351,391,8.0\n351,392,8.5\n351,393,9.0\n351,394,9.5\n351,395,10.0\n351,396,10.5\n351,397,11.0\n351,398,11.5\n351,399,12.0\n351,400,1.5\n351,401,1.0\n351,402,1.5\n351,403,2.0\n351,404,2.5\n351,405,3.0\n351,406,3.5\n351,407,4.0\n351,408,4.5\n351,409,5.0\n351,410,5.5\n351,411,6.0\n351,412,6.5\n351,413,7.0\n351,414,7.5\n351,415,8.0\n351,416,8.5\n351,417,9.0\n351,418,9.5\n351,419,10.0\n351,420,10.5\n351,421,11.0\n351,422,11.5\n351,423,12.0\n351,424,12.5\n351,425,2.0\n351,426,1.5\n351,427,2.0\n351,428,2.5\n351,429,3.0\n351,430,3.5\n351,431,4.0\n351,432,4.5\n351,433,5.0\n351,434,5.5\n351,435,6.0\n351,436,6.5\n351,437,7.0\n351,438,7.5\n351,439,8.0\n351,440,8.5\n351,441,9.0\n351,442,9.5\n351,443,10.0\n351,444,10.5\n351,445,11.0\n351,446,11.5\n351,447,12.0\n351,448,12.5\n351,449,13.0\n351,450,2.5\n351,451,2.0\n351,452,2.5\n351,453,3.0\n351,454,3.5\n351,455,4.0\n351,456,4.5\n351,457,5.0\n351,458,5.5\n351,459,6.0\n351,460,6.5\n351,461,7.0\n351,462,7.5\n351,463,8.0\n351,464,8.5\n351,465,9.0\n351,466,9.5\n351,467,10.0\n351,468,10.5\n351,469,11.0\n351,470,11.5\n351,471,12.0\n351,472,12.5\n351,473,13.0\n351,474,13.5\n351,475,3.0\n351,476,2.5\n351,477,3.0\n351,478,3.5\n351,479,4.0\n351,480,4.5\n351,481,5.0\n351,482,5.5\n351,483,6.0\n351,484,6.5\n351,485,7.0\n351,486,7.5\n351,487,8.0\n351,488,8.5\n351,489,9.0\n351,490,9.5\n351,491,10.0\n351,492,10.5\n351,493,11.0\n351,494,11.5\n351,495,12.0\n351,496,12.5\n351,497,13.0\n351,498,13.5\n351,499,14.0\n351,500,3.5\n351,501,3.0\n351,502,3.5\n351,503,4.0\n351,504,4.5\n351,505,5.0\n351,506,5.5\n351,507,6.0\n351,508,6.5\n351,509,7.0\n351,510,7.5\n351,511,8.0\n351,512,8.5\n351,513,9.0\n351,514,9.5\n351,515,10.0\n351,516,10.5\n351,517,11.0\n351,518,11.5\n351,519,12.0\n351,520,12.5\n351,521,13.0\n351,522,13.5\n351,523,14.0\n351,524,14.5\n351,525,4.0\n351,526,3.5\n351,527,4.0\n351,528,4.5\n351,529,5.0\n351,530,5.5\n351,531,6.0\n351,532,6.5\n351,533,7.0\n351,534,7.5\n351,535,8.0\n351,536,8.5\n351,537,9.0\n351,538,9.5\n351,539,10.0\n351,540,10.5\n351,541,11.0\n351,542,11.5\n351,543,12.0\n351,544,12.5\n351,545,13.0\n351,546,13.5\n351,547,14.0\n351,548,14.5\n351,549,15.0\n351,550,4.5\n351,551,4.0\n351,552,4.5\n351,553,5.0\n351,554,5.5\n351,555,6.0\n351,556,6.5\n351,557,7.0\n351,558,7.5\n351,559,8.0\n351,560,8.5\n351,561,9.0\n351,562,9.5\n351,563,10.0\n351,564,10.5\n351,565,11.0\n351,566,11.5\n351,567,12.0\n351,568,12.5\n351,569,13.0\n351,570,13.5\n351,571,14.0\n351,572,14.5\n351,573,15.0\n351,574,15.5\n351,575,5.0\n351,576,4.5\n351,577,5.0\n351,578,5.5\n351,579,6.0\n351,580,6.5\n351,581,7.0\n351,582,7.5\n351,583,8.0\n351,584,8.5\n351,585,9.0\n351,586,9.5\n351,587,10.0\n351,588,10.5\n351,589,11.0\n351,590,11.5\n351,591,12.0\n351,592,12.5\n351,593,13.0\n351,594,13.5\n351,595,14.0\n351,596,14.5\n351,597,15.0\n351,598,15.5\n351,599,16.0\n351,600,5.5\n351,601,5.0\n351,602,5.5\n351,603,6.0\n351,604,6.5\n351,605,7.0\n351,606,7.5\n351,607,8.0\n351,608,8.5\n351,609,9.0\n351,610,9.5\n351,611,10.0\n351,612,10.5\n351,613,11.0\n351,614,11.5\n351,615,12.0\n351,616,12.5\n351,617,13.0\n351,618,13.5\n351,619,14.0\n351,620,14.5\n351,621,15.0\n351,622,15.5\n351,623,16.0\n351,624,16.5\n352,0,8.0\n352,1,7.5\n352,2,7.0\n352,3,7.5\n352,4,8.0\n352,5,8.5\n352,6,9.0\n352,7,9.5\n352,8,10.0\n352,9,10.5\n352,10,11.0\n352,11,11.5\n352,12,12.0\n352,13,12.5\n352,14,13.0\n352,15,13.5\n352,16,14.0\n352,17,14.5\n352,18,15.0\n352,19,15.5\n352,20,16.0\n352,21,16.5\n352,22,17.0\n352,23,17.5\n352,24,18.0\n352,25,7.5\n352,26,7.0\n352,27,6.5\n352,28,7.0\n352,29,7.5\n352,30,8.0\n352,31,8.5\n352,32,9.0\n352,33,9.5\n352,34,10.0\n352,35,10.5\n352,36,11.0\n352,37,11.5\n352,38,12.0\n352,39,12.5\n352,40,13.0\n352,41,13.5\n352,42,14.0\n352,43,14.5\n352,44,15.0\n352,45,15.5\n352,46,16.0\n352,47,16.5\n352,48,17.0\n352,49,17.5\n352,50,7.0\n352,51,6.5\n352,52,6.0\n352,53,6.5\n352,54,7.0\n352,55,7.5\n352,56,8.0\n352,57,8.5\n352,58,9.0\n352,59,9.5\n352,60,10.0\n352,61,10.5\n352,62,11.0\n352,63,11.5\n352,64,12.0\n352,65,12.5\n352,66,13.0\n352,67,13.5\n352,68,14.0\n352,69,14.5\n352,70,15.0\n352,71,15.5\n352,72,16.0\n352,73,16.5\n352,74,17.0\n352,75,6.5\n352,76,6.0\n352,77,5.5\n352,78,6.0\n352,79,6.5\n352,80,7.0\n352,81,7.5\n352,82,8.0\n352,83,8.5\n352,84,9.0\n352,85,9.5\n352,86,10.0\n352,87,10.5\n352,88,11.0\n352,89,11.5\n352,90,12.0\n352,91,12.5\n352,92,13.0\n352,93,13.5\n352,94,14.0\n352,95,14.5\n352,96,15.0\n352,97,15.5\n352,98,16.0\n352,99,16.5\n352,100,6.0\n352,101,5.5\n352,102,5.0\n352,103,5.5\n352,104,6.0\n352,105,6.5\n352,106,7.0\n352,107,7.5\n352,108,8.0\n352,109,8.5\n352,110,9.0\n352,111,9.5\n352,112,10.0\n352,113,10.5\n352,114,11.0\n352,115,11.5\n352,116,12.0\n352,117,12.5\n352,118,13.0\n352,119,13.5\n352,120,14.0\n352,121,14.5\n352,122,15.0\n352,123,15.5\n352,124,16.0\n352,125,5.5\n352,126,5.0\n352,127,4.5\n352,128,5.0\n352,129,5.5\n352,130,6.0\n352,131,6.5\n352,132,7.0\n352,133,7.5\n352,134,8.0\n352,135,8.5\n352,136,9.0\n352,137,9.5\n352,138,10.0\n352,139,10.5\n352,140,11.0\n352,141,11.5\n352,142,12.0\n352,143,12.5\n352,144,13.0\n352,145,13.5\n352,146,14.0\n352,147,14.5\n352,148,15.0\n352,149,15.5\n352,150,5.0\n352,151,4.5\n352,152,4.0\n352,153,4.5\n352,154,5.0\n352,155,5.5\n352,156,6.0\n352,157,6.5\n352,158,7.0\n352,159,7.5\n352,160,8.0\n352,161,8.5\n352,162,9.0\n352,163,9.5\n352,164,10.0\n352,165,10.5\n352,166,11.0\n352,167,11.5\n352,168,12.0\n352,169,12.5\n352,170,13.0\n352,171,13.5\n352,172,14.0\n352,173,14.5\n352,174,15.0\n352,175,4.5\n352,176,4.0\n352,177,3.5\n352,178,4.0\n352,179,4.5\n352,180,5.0\n352,181,5.5\n352,182,6.0\n352,183,6.5\n352,184,7.0\n352,185,7.5\n352,186,8.0\n352,187,8.5\n352,188,9.0\n352,189,9.5\n352,190,10.0\n352,191,10.5\n352,192,11.0\n352,193,11.5\n352,194,12.0\n352,195,12.5\n352,196,13.0\n352,197,13.5\n352,198,14.0\n352,199,14.5\n352,200,4.0\n352,201,3.5\n352,202,3.0\n352,203,3.5\n352,204,4.0\n352,205,4.5\n352,206,5.0\n352,207,5.5\n352,208,6.0\n352,209,6.5\n352,210,7.0\n352,211,7.5\n352,212,8.0\n352,213,8.5\n352,214,9.0\n352,215,9.5\n352,216,10.0\n352,217,10.5\n352,218,11.0\n352,219,11.5\n352,220,12.0\n352,221,12.5\n352,222,13.0\n352,223,13.5\n352,224,14.0\n352,225,3.5\n352,226,3.0\n352,227,2.5\n352,228,3.0\n352,229,3.5\n352,230,4.0\n352,231,4.5\n352,232,5.0\n352,233,5.5\n352,234,6.0\n352,235,6.5\n352,236,7.0\n352,237,7.5\n352,238,8.0\n352,239,8.5\n352,240,9.0\n352,241,9.5\n352,242,10.0\n352,243,10.5\n352,244,11.0\n352,245,11.5\n352,246,12.0\n352,247,12.5\n352,248,13.0\n352,249,13.5\n352,250,3.0\n352,251,2.5\n352,252,2.0\n352,253,2.5\n352,254,3.0\n352,255,3.5\n352,256,4.0\n352,257,4.5\n352,258,5.0\n352,259,5.5\n352,260,6.0\n352,261,6.5\n352,262,7.0\n352,263,7.5\n352,264,8.0\n352,265,8.5\n352,266,9.0\n352,267,9.5\n352,268,10.0\n352,269,10.5\n352,270,11.0\n352,271,11.5\n352,272,12.0\n352,273,12.5\n352,274,13.0\n352,275,2.5\n352,276,2.0\n352,277,1.5\n352,278,2.0\n352,279,2.5\n352,280,3.0\n352,281,3.5\n352,282,4.0\n352,283,4.5\n352,284,5.0\n352,285,5.5\n352,286,6.0\n352,287,6.5\n352,288,7.0\n352,289,7.5\n352,290,8.0\n352,291,8.5\n352,292,9.0\n352,293,9.5\n352,294,10.0\n352,295,10.5\n352,296,11.0\n352,297,11.5\n352,298,12.0\n352,299,12.5\n352,300,2.0\n352,301,1.5\n352,302,1.0\n352,303,1.5\n352,304,2.0\n352,305,2.5\n352,306,3.0\n352,307,3.5\n352,308,4.0\n352,309,4.5\n352,310,5.0\n352,311,5.5\n352,312,6.0\n352,313,6.5\n352,314,7.0\n352,315,7.5\n352,316,8.0\n352,317,8.5\n352,318,9.0\n352,319,9.5\n352,320,10.0\n352,321,10.5\n352,322,11.0\n352,323,11.5\n352,324,12.0\n352,325,1.5\n352,326,1.0\n352,327,0.5\n352,328,1.0\n352,329,1.5\n352,330,2.0\n352,331,2.5\n352,332,3.0\n352,333,3.5\n352,334,4.0\n352,335,4.5\n352,336,5.0\n352,337,5.5\n352,338,6.0\n352,339,6.5\n352,340,7.0\n352,341,7.5\n352,342,8.0\n352,343,8.5\n352,344,9.0\n352,345,9.5\n352,346,10.0\n352,347,10.5\n352,348,11.0\n352,349,11.5\n352,350,1.0\n352,351,0.5\n352,352,0\n352,353,0.5\n352,354,1.0\n352,355,1.5\n352,356,2.0\n352,357,2.5\n352,358,3.0\n352,359,3.5\n352,360,4.0\n352,361,4.5\n352,362,5.0\n352,363,5.5\n352,364,6.0\n352,365,6.5\n352,366,7.0\n352,367,7.5\n352,368,8.0\n352,369,8.5\n352,370,9.0\n352,371,9.5\n352,372,10.0\n352,373,10.5\n352,374,11.0\n352,375,1.5\n352,376,1.0\n352,377,0.5\n352,378,1.0\n352,379,1.5\n352,380,2.0\n352,381,2.5\n352,382,3.0\n352,383,3.5\n352,384,4.0\n352,385,4.5\n352,386,5.0\n352,387,5.5\n352,388,6.0\n352,389,6.5\n352,390,7.0\n352,391,7.5\n352,392,8.0\n352,393,8.5\n352,394,9.0\n352,395,9.5\n352,396,10.0\n352,397,10.5\n352,398,11.0\n352,399,11.5\n352,400,2.0\n352,401,1.5\n352,402,1.0\n352,403,1.5\n352,404,2.0\n352,405,2.5\n352,406,3.0\n352,407,3.5\n352,408,4.0\n352,409,4.5\n352,410,5.0\n352,411,5.5\n352,412,6.0\n352,413,6.5\n352,414,7.0\n352,415,7.5\n352,416,8.0\n352,417,8.5\n352,418,9.0\n352,419,9.5\n352,420,10.0\n352,421,10.5\n352,422,11.0\n352,423,11.5\n352,424,12.0\n352,425,2.5\n352,426,2.0\n352,427,1.5\n352,428,2.0\n352,429,2.5\n352,430,3.0\n352,431,3.5\n352,432,4.0\n352,433,4.5\n352,434,5.0\n352,435,5.5\n352,436,6.0\n352,437,6.5\n352,438,7.0\n352,439,7.5\n352,440,8.0\n352,441,8.5\n352,442,9.0\n352,443,9.5\n352,444,10.0\n352,445,10.5\n352,446,11.0\n352,447,11.5\n352,448,12.0\n352,449,12.5\n352,450,3.0\n352,451,2.5\n352,452,2.0\n352,453,2.5\n352,454,3.0\n352,455,3.5\n352,456,4.0\n352,457,4.5\n352,458,5.0\n352,459,5.5\n352,460,6.0\n352,461,6.5\n352,462,7.0\n352,463,7.5\n352,464,8.0\n352,465,8.5\n352,466,9.0\n352,467,9.5\n352,468,10.0\n352,469,10.5\n352,470,11.0\n352,471,11.5\n352,472,12.0\n352,473,12.5\n352,474,13.0\n352,475,3.5\n352,476,3.0\n352,477,2.5\n352,478,3.0\n352,479,3.5\n352,480,4.0\n352,481,4.5\n352,482,5.0\n352,483,5.5\n352,484,6.0\n352,485,6.5\n352,486,7.0\n352,487,7.5\n352,488,8.0\n352,489,8.5\n352,490,9.0\n352,491,9.5\n352,492,10.0\n352,493,10.5\n352,494,11.0\n352,495,11.5\n352,496,12.0\n352,497,12.5\n352,498,13.0\n352,499,13.5\n352,500,4.0\n352,501,3.5\n352,502,3.0\n352,503,3.5\n352,504,4.0\n352,505,4.5\n352,506,5.0\n352,507,5.5\n352,508,6.0\n352,509,6.5\n352,510,7.0\n352,511,7.5\n352,512,8.0\n352,513,8.5\n352,514,9.0\n352,515,9.5\n352,516,10.0\n352,517,10.5\n352,518,11.0\n352,519,11.5\n352,520,12.0\n352,521,12.5\n352,522,13.0\n352,523,13.5\n352,524,14.0\n352,525,4.5\n352,526,4.0\n352,527,3.5\n352,528,4.0\n352,529,4.5\n352,530,5.0\n352,531,5.5\n352,532,6.0\n352,533,6.5\n352,534,7.0\n352,535,7.5\n352,536,8.0\n352,537,8.5\n352,538,9.0\n352,539,9.5\n352,540,10.0\n352,541,10.5\n352,542,11.0\n352,543,11.5\n352,544,12.0\n352,545,12.5\n352,546,13.0\n352,547,13.5\n352,548,14.0\n352,549,14.5\n352,550,5.0\n352,551,4.5\n352,552,4.0\n352,553,4.5\n352,554,5.0\n352,555,5.5\n352,556,6.0\n352,557,6.5\n352,558,7.0\n352,559,7.5\n352,560,8.0\n352,561,8.5\n352,562,9.0\n352,563,9.5\n352,564,10.0\n352,565,10.5\n352,566,11.0\n352,567,11.5\n352,568,12.0\n352,569,12.5\n352,570,13.0\n352,571,13.5\n352,572,14.0\n352,573,14.5\n352,574,15.0\n352,575,5.5\n352,576,5.0\n352,577,4.5\n352,578,5.0\n352,579,5.5\n352,580,6.0\n352,581,6.5\n352,582,7.0\n352,583,7.5\n352,584,8.0\n352,585,8.5\n352,586,9.0\n352,587,9.5\n352,588,10.0\n352,589,10.5\n352,590,11.0\n352,591,11.5\n352,592,12.0\n352,593,12.5\n352,594,13.0\n352,595,13.5\n352,596,14.0\n352,597,14.5\n352,598,15.0\n352,599,15.5\n352,600,6.0\n352,601,5.5\n352,602,5.0\n352,603,5.5\n352,604,6.0\n352,605,6.5\n352,606,7.0\n352,607,7.5\n352,608,8.0\n352,609,8.5\n352,610,9.0\n352,611,9.5\n352,612,10.0\n352,613,10.5\n352,614,11.0\n352,615,11.5\n352,616,12.0\n352,617,12.5\n352,618,13.0\n352,619,13.5\n352,620,14.0\n352,621,14.5\n352,622,15.0\n352,623,15.5\n352,624,16.0\n353,0,8.5\n353,1,8.0\n353,2,7.5\n353,3,7.0\n353,4,7.5\n353,5,8.0\n353,6,8.5\n353,7,9.0\n353,8,9.5\n353,9,10.0\n353,10,10.5\n353,11,11.0\n353,12,11.5\n353,13,12.0\n353,14,12.5\n353,15,13.0\n353,16,13.5\n353,17,14.0\n353,18,14.5\n353,19,15.0\n353,20,15.5\n353,21,16.0\n353,22,16.5\n353,23,17.0\n353,24,17.5\n353,25,8.0\n353,26,7.5\n353,27,7.0\n353,28,6.5\n353,29,7.0\n353,30,7.5\n353,31,8.0\n353,32,8.5\n353,33,9.0\n353,34,9.5\n353,35,10.0\n353,36,10.5\n353,37,11.0\n353,38,11.5\n353,39,12.0\n353,40,12.5\n353,41,13.0\n353,42,13.5\n353,43,14.0\n353,44,14.5\n353,45,15.0\n353,46,15.5\n353,47,16.0\n353,48,16.5\n353,49,17.0\n353,50,7.5\n353,51,7.0\n353,52,6.5\n353,53,6.0\n353,54,6.5\n353,55,7.0\n353,56,7.5\n353,57,8.0\n353,58,8.5\n353,59,9.0\n353,60,9.5\n353,61,10.0\n353,62,10.5\n353,63,11.0\n353,64,11.5\n353,65,12.0\n353,66,12.5\n353,67,13.0\n353,68,13.5\n353,69,14.0\n353,70,14.5\n353,71,15.0\n353,72,15.5\n353,73,16.0\n353,74,16.5\n353,75,7.0\n353,76,6.5\n353,77,6.0\n353,78,5.5\n353,79,6.0\n353,80,6.5\n353,81,7.0\n353,82,7.5\n353,83,8.0\n353,84,8.5\n353,85,9.0\n353,86,9.5\n353,87,10.0\n353,88,10.5\n353,89,11.0\n353,90,11.5\n353,91,12.0\n353,92,12.5\n353,93,13.0\n353,94,13.5\n353,95,14.0\n353,96,14.5\n353,97,15.0\n353,98,15.5\n353,99,16.0\n353,100,6.5\n353,101,6.0\n353,102,5.5\n353,103,5.0\n353,104,5.5\n353,105,6.0\n353,106,6.5\n353,107,7.0\n353,108,7.5\n353,109,8.0\n353,110,8.5\n353,111,9.0\n353,112,9.5\n353,113,10.0\n353,114,10.5\n353,115,11.0\n353,116,11.5\n353,117,12.0\n353,118,12.5\n353,119,13.0\n353,120,13.5\n353,121,14.0\n353,122,14.5\n353,123,15.0\n353,124,15.5\n353,125,6.0\n353,126,5.5\n353,127,5.0\n353,128,4.5\n353,129,5.0\n353,130,5.5\n353,131,6.0\n353,132,6.5\n353,133,7.0\n353,134,7.5\n353,135,8.0\n353,136,8.5\n353,137,9.0\n353,138,9.5\n353,139,10.0\n353,140,10.5\n353,141,11.0\n353,142,11.5\n353,143,12.0\n353,144,12.5\n353,145,13.0\n353,146,13.5\n353,147,14.0\n353,148,14.5\n353,149,15.0\n353,150,5.5\n353,151,5.0\n353,152,4.5\n353,153,4.0\n353,154,4.5\n353,155,5.0\n353,156,5.5\n353,157,6.0\n353,158,6.5\n353,159,7.0\n353,160,7.5\n353,161,8.0\n353,162,8.5\n353,163,9.0\n353,164,9.5\n353,165,10.0\n353,166,10.5\n353,167,11.0\n353,168,11.5\n353,169,12.0\n353,170,12.5\n353,171,13.0\n353,172,13.5\n353,173,14.0\n353,174,14.5\n353,175,5.0\n353,176,4.5\n353,177,4.0\n353,178,3.5\n353,179,4.0\n353,180,4.5\n353,181,5.0\n353,182,5.5\n353,183,6.0\n353,184,6.5\n353,185,7.0\n353,186,7.5\n353,187,8.0\n353,188,8.5\n353,189,9.0\n353,190,9.5\n353,191,10.0\n353,192,10.5\n353,193,11.0\n353,194,11.5\n353,195,12.0\n353,196,12.5\n353,197,13.0\n353,198,13.5\n353,199,14.0\n353,200,4.5\n353,201,4.0\n353,202,3.5\n353,203,3.0\n353,204,3.5\n353,205,4.0\n353,206,4.5\n353,207,5.0\n353,208,5.5\n353,209,6.0\n353,210,6.5\n353,211,7.0\n353,212,7.5\n353,213,8.0\n353,214,8.5\n353,215,9.0\n353,216,9.5\n353,217,10.0\n353,218,10.5\n353,219,11.0\n353,220,11.5\n353,221,12.0\n353,222,12.5\n353,223,13.0\n353,224,13.5\n353,225,4.0\n353,226,3.5\n353,227,3.0\n353,228,2.5\n353,229,3.0\n353,230,3.5\n353,231,4.0\n353,232,4.5\n353,233,5.0\n353,234,5.5\n353,235,6.0\n353,236,6.5\n353,237,7.0\n353,238,7.5\n353,239,8.0\n353,240,8.5\n353,241,9.0\n353,242,9.5\n353,243,10.0\n353,244,10.5\n353,245,11.0\n353,246,11.5\n353,247,12.0\n353,248,12.5\n353,249,13.0\n353,250,3.5\n353,251,3.0\n353,252,2.5\n353,253,2.0\n353,254,2.5\n353,255,3.0\n353,256,3.5\n353,257,4.0\n353,258,4.5\n353,259,5.0\n353,260,5.5\n353,261,6.0\n353,262,6.5\n353,263,7.0\n353,264,7.5\n353,265,8.0\n353,266,8.5\n353,267,9.0\n353,268,9.5\n353,269,10.0\n353,270,10.5\n353,271,11.0\n353,272,11.5\n353,273,12.0\n353,274,12.5\n353,275,3.0\n353,276,2.5\n353,277,2.0\n353,278,1.5\n353,279,2.0\n353,280,2.5\n353,281,3.0\n353,282,3.5\n353,283,4.0\n353,284,4.5\n353,285,5.0\n353,286,5.5\n353,287,6.0\n353,288,6.5\n353,289,7.0\n353,290,7.5\n353,291,8.0\n353,292,8.5\n353,293,9.0\n353,294,9.5\n353,295,10.0\n353,296,10.5\n353,297,11.0\n353,298,11.5\n353,299,12.0\n353,300,2.5\n353,301,2.0\n353,302,1.5\n353,303,1.0\n353,304,1.5\n353,305,2.0\n353,306,2.5\n353,307,3.0\n353,308,3.5\n353,309,4.0\n353,310,4.5\n353,311,5.0\n353,312,5.5\n353,313,6.0\n353,314,6.5\n353,315,7.0\n353,316,7.5\n353,317,8.0\n353,318,8.5\n353,319,9.0\n353,320,9.5\n353,321,10.0\n353,322,10.5\n353,323,11.0\n353,324,11.5\n353,325,2.0\n353,326,1.5\n353,327,1.0\n353,328,0.5\n353,329,1.0\n353,330,1.5\n353,331,2.0\n353,332,2.5\n353,333,3.0\n353,334,3.5\n353,335,4.0\n353,336,4.5\n353,337,5.0\n353,338,5.5\n353,339,6.0\n353,340,6.5\n353,341,7.0\n353,342,7.5\n353,343,8.0\n353,344,8.5\n353,345,9.0\n353,346,9.5\n353,347,10.0\n353,348,10.5\n353,349,11.0\n353,350,1.5\n353,351,1.0\n353,352,0.5\n353,353,0\n353,354,0.5\n353,355,1.0\n353,356,1.5\n353,357,2.0\n353,358,2.5\n353,359,3.0\n353,360,3.5\n353,361,4.0\n353,362,4.5\n353,363,5.0\n353,364,5.5\n353,365,6.0\n353,366,6.5\n353,367,7.0\n353,368,7.5\n353,369,8.0\n353,370,8.5\n353,371,9.0\n353,372,9.5\n353,373,10.0\n353,374,10.5\n353,375,2.0\n353,376,1.5\n353,377,1.0\n353,378,0.5\n353,379,1.0\n353,380,1.5\n353,381,2.0\n353,382,2.5\n353,383,3.0\n353,384,3.5\n353,385,4.0\n353,386,4.5\n353,387,5.0\n353,388,5.5\n353,389,6.0\n353,390,6.5\n353,391,7.0\n353,392,7.5\n353,393,8.0\n353,394,8.5\n353,395,9.0\n353,396,9.5\n353,397,10.0\n353,398,10.5\n353,399,11.0\n353,400,2.5\n353,401,2.0\n353,402,1.5\n353,403,1.0\n353,404,1.5\n353,405,2.0\n353,406,2.5\n353,407,3.0\n353,408,3.5\n353,409,4.0\n353,410,4.5\n353,411,5.0\n353,412,5.5\n353,413,6.0\n353,414,6.5\n353,415,7.0\n353,416,7.5\n353,417,8.0\n353,418,8.5\n353,419,9.0\n353,420,9.5\n353,421,10.0\n353,422,10.5\n353,423,11.0\n353,424,11.5\n353,425,3.0\n353,426,2.5\n353,427,2.0\n353,428,1.5\n353,429,2.0\n353,430,2.5\n353,431,3.0\n353,432,3.5\n353,433,4.0\n353,434,4.5\n353,435,5.0\n353,436,5.5\n353,437,6.0\n353,438,6.5\n353,439,7.0\n353,440,7.5\n353,441,8.0\n353,442,8.5\n353,443,9.0\n353,444,9.5\n353,445,10.0\n353,446,10.5\n353,447,11.0\n353,448,11.5\n353,449,12.0\n353,450,3.5\n353,451,3.0\n353,452,2.5\n353,453,2.0\n353,454,2.5\n353,455,3.0\n353,456,3.5\n353,457,4.0\n353,458,4.5\n353,459,5.0\n353,460,5.5\n353,461,6.0\n353,462,6.5\n353,463,7.0\n353,464,7.5\n353,465,8.0\n353,466,8.5\n353,467,9.0\n353,468,9.5\n353,469,10.0\n353,470,10.5\n353,471,11.0\n353,472,11.5\n353,473,12.0\n353,474,12.5\n353,475,4.0\n353,476,3.5\n353,477,3.0\n353,478,2.5\n353,479,3.0\n353,480,3.5\n353,481,4.0\n353,482,4.5\n353,483,5.0\n353,484,5.5\n353,485,6.0\n353,486,6.5\n353,487,7.0\n353,488,7.5\n353,489,8.0\n353,490,8.5\n353,491,9.0\n353,492,9.5\n353,493,10.0\n353,494,10.5\n353,495,11.0\n353,496,11.5\n353,497,12.0\n353,498,12.5\n353,499,13.0\n353,500,4.5\n353,501,4.0\n353,502,3.5\n353,503,3.0\n353,504,3.5\n353,505,4.0\n353,506,4.5\n353,507,5.0\n353,508,5.5\n353,509,6.0\n353,510,6.5\n353,511,7.0\n353,512,7.5\n353,513,8.0\n353,514,8.5\n353,515,9.0\n353,516,9.5\n353,517,10.0\n353,518,10.5\n353,519,11.0\n353,520,11.5\n353,521,12.0\n353,522,12.5\n353,523,13.0\n353,524,13.5\n353,525,5.0\n353,526,4.5\n353,527,4.0\n353,528,3.5\n353,529,4.0\n353,530,4.5\n353,531,5.0\n353,532,5.5\n353,533,6.0\n353,534,6.5\n353,535,7.0\n353,536,7.5\n353,537,8.0\n353,538,8.5\n353,539,9.0\n353,540,9.5\n353,541,10.0\n353,542,10.5\n353,543,11.0\n353,544,11.5\n353,545,12.0\n353,546,12.5\n353,547,13.0\n353,548,13.5\n353,549,14.0\n353,550,5.5\n353,551,5.0\n353,552,4.5\n353,553,4.0\n353,554,4.5\n353,555,5.0\n353,556,5.5\n353,557,6.0\n353,558,6.5\n353,559,7.0\n353,560,7.5\n353,561,8.0\n353,562,8.5\n353,563,9.0\n353,564,9.5\n353,565,10.0\n353,566,10.5\n353,567,11.0\n353,568,11.5\n353,569,12.0\n353,570,12.5\n353,571,13.0\n353,572,13.5\n353,573,14.0\n353,574,14.5\n353,575,6.0\n353,576,5.5\n353,577,5.0\n353,578,4.5\n353,579,5.0\n353,580,5.5\n353,581,6.0\n353,582,6.5\n353,583,7.0\n353,584,7.5\n353,585,8.0\n353,586,8.5\n353,587,9.0\n353,588,9.5\n353,589,10.0\n353,590,10.5\n353,591,11.0\n353,592,11.5\n353,593,12.0\n353,594,12.5\n353,595,13.0\n353,596,13.5\n353,597,14.0\n353,598,14.5\n353,599,15.0\n353,600,6.5\n353,601,6.0\n353,602,5.5\n353,603,5.0\n353,604,5.5\n353,605,6.0\n353,606,6.5\n353,607,7.0\n353,608,7.5\n353,609,8.0\n353,610,8.5\n353,611,9.0\n353,612,9.5\n353,613,10.0\n353,614,10.5\n353,615,11.0\n353,616,11.5\n353,617,12.0\n353,618,12.5\n353,619,13.0\n353,620,13.5\n353,621,14.0\n353,622,14.5\n353,623,15.0\n353,624,15.5\n354,0,9.0\n354,1,8.5\n354,2,8.0\n354,3,7.5\n354,4,7.0\n354,5,7.5\n354,6,8.0\n354,7,8.5\n354,8,9.0\n354,9,9.5\n354,10,10.0\n354,11,10.5\n354,12,11.0\n354,13,11.5\n354,14,12.0\n354,15,12.5\n354,16,13.0\n354,17,13.5\n354,18,14.0\n354,19,14.5\n354,20,15.0\n354,21,15.5\n354,22,16.0\n354,23,16.5\n354,24,17.0\n354,25,8.5\n354,26,8.0\n354,27,7.5\n354,28,7.0\n354,29,6.5\n354,30,7.0\n354,31,7.5\n354,32,8.0\n354,33,8.5\n354,34,9.0\n354,35,9.5\n354,36,10.0\n354,37,10.5\n354,38,11.0\n354,39,11.5\n354,40,12.0\n354,41,12.5\n354,42,13.0\n354,43,13.5\n354,44,14.0\n354,45,14.5\n354,46,15.0\n354,47,15.5\n354,48,16.0\n354,49,16.5\n354,50,8.0\n354,51,7.5\n354,52,7.0\n354,53,6.5\n354,54,6.0\n354,55,6.5\n354,56,7.0\n354,57,7.5\n354,58,8.0\n354,59,8.5\n354,60,9.0\n354,61,9.5\n354,62,10.0\n354,63,10.5\n354,64,11.0\n354,65,11.5\n354,66,12.0\n354,67,12.5\n354,68,13.0\n354,69,13.5\n354,70,14.0\n354,71,14.5\n354,72,15.0\n354,73,15.5\n354,74,16.0\n354,75,7.5\n354,76,7.0\n354,77,6.5\n354,78,6.0\n354,79,5.5\n354,80,6.0\n354,81,6.5\n354,82,7.0\n354,83,7.5\n354,84,8.0\n354,85,8.5\n354,86,9.0\n354,87,9.5\n354,88,10.0\n354,89,10.5\n354,90,11.0\n354,91,11.5\n354,92,12.0\n354,93,12.5\n354,94,13.0\n354,95,13.5\n354,96,14.0\n354,97,14.5\n354,98,15.0\n354,99,15.5\n354,100,7.0\n354,101,6.5\n354,102,6.0\n354,103,5.5\n354,104,5.0\n354,105,5.5\n354,106,6.0\n354,107,6.5\n354,108,7.0\n354,109,7.5\n354,110,8.0\n354,111,8.5\n354,112,9.0\n354,113,9.5\n354,114,10.0\n354,115,10.5\n354,116,11.0\n354,117,11.5\n354,118,12.0\n354,119,12.5\n354,120,13.0\n354,121,13.5\n354,122,14.0\n354,123,14.5\n354,124,15.0\n354,125,6.5\n354,126,6.0\n354,127,5.5\n354,128,5.0\n354,129,4.5\n354,130,5.0\n354,131,5.5\n354,132,6.0\n354,133,6.5\n354,134,7.0\n354,135,7.5\n354,136,8.0\n354,137,8.5\n354,138,9.0\n354,139,9.5\n354,140,10.0\n354,141,10.5\n354,142,11.0\n354,143,11.5\n354,144,12.0\n354,145,12.5\n354,146,13.0\n354,147,13.5\n354,148,14.0\n354,149,14.5\n354,150,6.0\n354,151,5.5\n354,152,5.0\n354,153,4.5\n354,154,4.0\n354,155,4.5\n354,156,5.0\n354,157,5.5\n354,158,6.0\n354,159,6.5\n354,160,7.0\n354,161,7.5\n354,162,8.0\n354,163,8.5\n354,164,9.0\n354,165,9.5\n354,166,10.0\n354,167,10.5\n354,168,11.0\n354,169,11.5\n354,170,12.0\n354,171,12.5\n354,172,13.0\n354,173,13.5\n354,174,14.0\n354,175,5.5\n354,176,5.0\n354,177,4.5\n354,178,4.0\n354,179,3.5\n354,180,4.0\n354,181,4.5\n354,182,5.0\n354,183,5.5\n354,184,6.0\n354,185,6.5\n354,186,7.0\n354,187,7.5\n354,188,8.0\n354,189,8.5\n354,190,9.0\n354,191,9.5\n354,192,10.0\n354,193,10.5\n354,194,11.0\n354,195,11.5\n354,196,12.0\n354,197,12.5\n354,198,13.0\n354,199,13.5\n354,200,5.0\n354,201,4.5\n354,202,4.0\n354,203,3.5\n354,204,3.0\n354,205,3.5\n354,206,4.0\n354,207,4.5\n354,208,5.0\n354,209,5.5\n354,210,6.0\n354,211,6.5\n354,212,7.0\n354,213,7.5\n354,214,8.0\n354,215,8.5\n354,216,9.0\n354,217,9.5\n354,218,10.0\n354,219,10.5\n354,220,11.0\n354,221,11.5\n354,222,12.0\n354,223,12.5\n354,224,13.0\n354,225,4.5\n354,226,4.0\n354,227,3.5\n354,228,3.0\n354,229,2.5\n354,230,3.0\n354,231,3.5\n354,232,4.0\n354,233,4.5\n354,234,5.0\n354,235,5.5\n354,236,6.0\n354,237,6.5\n354,238,7.0\n354,239,7.5\n354,240,8.0\n354,241,8.5\n354,242,9.0\n354,243,9.5\n354,244,10.0\n354,245,10.5\n354,246,11.0\n354,247,11.5\n354,248,12.0\n354,249,12.5\n354,250,4.0\n354,251,3.5\n354,252,3.0\n354,253,2.5\n354,254,2.0\n354,255,2.5\n354,256,3.0\n354,257,3.5\n354,258,4.0\n354,259,4.5\n354,260,5.0\n354,261,5.5\n354,262,6.0\n354,263,6.5\n354,264,7.0\n354,265,7.5\n354,266,8.0\n354,267,8.5\n354,268,9.0\n354,269,9.5\n354,270,10.0\n354,271,10.5\n354,272,11.0\n354,273,11.5\n354,274,12.0\n354,275,3.5\n354,276,3.0\n354,277,2.5\n354,278,2.0\n354,279,1.5\n354,280,2.0\n354,281,2.5\n354,282,3.0\n354,283,3.5\n354,284,4.0\n354,285,4.5\n354,286,5.0\n354,287,5.5\n354,288,6.0\n354,289,6.5\n354,290,7.0\n354,291,7.5\n354,292,8.0\n354,293,8.5\n354,294,9.0\n354,295,9.5\n354,296,10.0\n354,297,10.5\n354,298,11.0\n354,299,11.5\n354,300,3.0\n354,301,2.5\n354,302,2.0\n354,303,1.5\n354,304,1.0\n354,305,1.5\n354,306,2.0\n354,307,2.5\n354,308,3.0\n354,309,3.5\n354,310,4.0\n354,311,4.5\n354,312,5.0\n354,313,5.5\n354,314,6.0\n354,315,6.5\n354,316,7.0\n354,317,7.5\n354,318,8.0\n354,319,8.5\n354,320,9.0\n354,321,9.5\n354,322,10.0\n354,323,10.5\n354,324,11.0\n354,325,2.5\n354,326,2.0\n354,327,1.5\n354,328,1.0\n354,329,0.5\n354,330,1.0\n354,331,1.5\n354,332,2.0\n354,333,2.5\n354,334,3.0\n354,335,3.5\n354,336,4.0\n354,337,4.5\n354,338,5.0\n354,339,5.5\n354,340,6.0\n354,341,6.5\n354,342,7.0\n354,343,7.5\n354,344,8.0\n354,345,8.5\n354,346,9.0\n354,347,9.5\n354,348,10.0\n354,349,10.5\n354,350,2.0\n354,351,1.5\n354,352,1.0\n354,353,0.5\n354,354,0\n354,355,0.5\n354,356,1.0\n354,357,1.5\n354,358,2.0\n354,359,2.5\n354,360,3.0\n354,361,3.5\n354,362,4.0\n354,363,4.5\n354,364,5.0\n354,365,5.5\n354,366,6.0\n354,367,6.5\n354,368,7.0\n354,369,7.5\n354,370,8.0\n354,371,8.5\n354,372,9.0\n354,373,9.5\n354,374,10.0\n354,375,2.5\n354,376,2.0\n354,377,1.5\n354,378,1.0\n354,379,0.5\n354,380,1.0\n354,381,1.5\n354,382,2.0\n354,383,2.5\n354,384,3.0\n354,385,3.5\n354,386,4.0\n354,387,4.5\n354,388,5.0\n354,389,5.5\n354,390,6.0\n354,391,6.5\n354,392,7.0\n354,393,7.5\n354,394,8.0\n354,395,8.5\n354,396,9.0\n354,397,9.5\n354,398,10.0\n354,399,10.5\n354,400,3.0\n354,401,2.5\n354,402,2.0\n354,403,1.5\n354,404,1.0\n354,405,1.5\n354,406,2.0\n354,407,2.5\n354,408,3.0\n354,409,3.5\n354,410,4.0\n354,411,4.5\n354,412,5.0\n354,413,5.5\n354,414,6.0\n354,415,6.5\n354,416,7.0\n354,417,7.5\n354,418,8.0\n354,419,8.5\n354,420,9.0\n354,421,9.5\n354,422,10.0\n354,423,10.5\n354,424,11.0\n354,425,3.5\n354,426,3.0\n354,427,2.5\n354,428,2.0\n354,429,1.5\n354,430,2.0\n354,431,2.5\n354,432,3.0\n354,433,3.5\n354,434,4.0\n354,435,4.5\n354,436,5.0\n354,437,5.5\n354,438,6.0\n354,439,6.5\n354,440,7.0\n354,441,7.5\n354,442,8.0\n354,443,8.5\n354,444,9.0\n354,445,9.5\n354,446,10.0\n354,447,10.5\n354,448,11.0\n354,449,11.5\n354,450,4.0\n354,451,3.5\n354,452,3.0\n354,453,2.5\n354,454,2.0\n354,455,2.5\n354,456,3.0\n354,457,3.5\n354,458,4.0\n354,459,4.5\n354,460,5.0\n354,461,5.5\n354,462,6.0\n354,463,6.5\n354,464,7.0\n354,465,7.5\n354,466,8.0\n354,467,8.5\n354,468,9.0\n354,469,9.5\n354,470,10.0\n354,471,10.5\n354,472,11.0\n354,473,11.5\n354,474,12.0\n354,475,4.5\n354,476,4.0\n354,477,3.5\n354,478,3.0\n354,479,2.5\n354,480,3.0\n354,481,3.5\n354,482,4.0\n354,483,4.5\n354,484,5.0\n354,485,5.5\n354,486,6.0\n354,487,6.5\n354,488,7.0\n354,489,7.5\n354,490,8.0\n354,491,8.5\n354,492,9.0\n354,493,9.5\n354,494,10.0\n354,495,10.5\n354,496,11.0\n354,497,11.5\n354,498,12.0\n354,499,12.5\n354,500,5.0\n354,501,4.5\n354,502,4.0\n354,503,3.5\n354,504,3.0\n354,505,3.5\n354,506,4.0\n354,507,4.5\n354,508,5.0\n354,509,5.5\n354,510,6.0\n354,511,6.5\n354,512,7.0\n354,513,7.5\n354,514,8.0\n354,515,8.5\n354,516,9.0\n354,517,9.5\n354,518,10.0\n354,519,10.5\n354,520,11.0\n354,521,11.5\n354,522,12.0\n354,523,12.5\n354,524,13.0\n354,525,5.5\n354,526,5.0\n354,527,4.5\n354,528,4.0\n354,529,3.5\n354,530,4.0\n354,531,4.5\n354,532,5.0\n354,533,5.5\n354,534,6.0\n354,535,6.5\n354,536,7.0\n354,537,7.5\n354,538,8.0\n354,539,8.5\n354,540,9.0\n354,541,9.5\n354,542,10.0\n354,543,10.5\n354,544,11.0\n354,545,11.5\n354,546,12.0\n354,547,12.5\n354,548,13.0\n354,549,13.5\n354,550,6.0\n354,551,5.5\n354,552,5.0\n354,553,4.5\n354,554,4.0\n354,555,4.5\n354,556,5.0\n354,557,5.5\n354,558,6.0\n354,559,6.5\n354,560,7.0\n354,561,7.5\n354,562,8.0\n354,563,8.5\n354,564,9.0\n354,565,9.5\n354,566,10.0\n354,567,10.5\n354,568,11.0\n354,569,11.5\n354,570,12.0\n354,571,12.5\n354,572,13.0\n354,573,13.5\n354,574,14.0\n354,575,6.5\n354,576,6.0\n354,577,5.5\n354,578,5.0\n354,579,4.5\n354,580,5.0\n354,581,5.5\n354,582,6.0\n354,583,6.5\n354,584,7.0\n354,585,7.5\n354,586,8.0\n354,587,8.5\n354,588,9.0\n354,589,9.5\n354,590,10.0\n354,591,10.5\n354,592,11.0\n354,593,11.5\n354,594,12.0\n354,595,12.5\n354,596,13.0\n354,597,13.5\n354,598,14.0\n354,599,14.5\n354,600,7.0\n354,601,6.5\n354,602,6.0\n354,603,5.5\n354,604,5.0\n354,605,5.5\n354,606,6.0\n354,607,6.5\n354,608,7.0\n354,609,7.5\n354,610,8.0\n354,611,8.5\n354,612,9.0\n354,613,9.5\n354,614,10.0\n354,615,10.5\n354,616,11.0\n354,617,11.5\n354,618,12.0\n354,619,12.5\n354,620,13.0\n354,621,13.5\n354,622,14.0\n354,623,14.5\n354,624,15.0\n355,0,9.5\n355,1,9.0\n355,2,8.5\n355,3,8.0\n355,4,7.5\n355,5,7.0\n355,6,7.5\n355,7,8.0\n355,8,8.5\n355,9,9.0\n355,10,9.5\n355,11,10.0\n355,12,10.5\n355,13,11.0\n355,14,11.5\n355,15,12.0\n355,16,12.5\n355,17,13.0\n355,18,13.5\n355,19,14.0\n355,20,14.5\n355,21,15.0\n355,22,15.5\n355,23,16.0\n355,24,16.5\n355,25,9.0\n355,26,8.5\n355,27,8.0\n355,28,7.5\n355,29,7.0\n355,30,6.5\n355,31,7.0\n355,32,7.5\n355,33,8.0\n355,34,8.5\n355,35,9.0\n355,36,9.5\n355,37,10.0\n355,38,10.5\n355,39,11.0\n355,40,11.5\n355,41,12.0\n355,42,12.5\n355,43,13.0\n355,44,13.5\n355,45,14.0\n355,46,14.5\n355,47,15.0\n355,48,15.5\n355,49,16.0\n355,50,8.5\n355,51,8.0\n355,52,7.5\n355,53,7.0\n355,54,6.5\n355,55,6.0\n355,56,6.5\n355,57,7.0\n355,58,7.5\n355,59,8.0\n355,60,8.5\n355,61,9.0\n355,62,9.5\n355,63,10.0\n355,64,10.5\n355,65,11.0\n355,66,11.5\n355,67,12.0\n355,68,12.5\n355,69,13.0\n355,70,13.5\n355,71,14.0\n355,72,14.5\n355,73,15.0\n355,74,15.5\n355,75,8.0\n355,76,7.5\n355,77,7.0\n355,78,6.5\n355,79,6.0\n355,80,5.5\n355,81,6.0\n355,82,6.5\n355,83,7.0\n355,84,7.5\n355,85,8.0\n355,86,8.5\n355,87,9.0\n355,88,9.5\n355,89,10.0\n355,90,10.5\n355,91,11.0\n355,92,11.5\n355,93,12.0\n355,94,12.5\n355,95,13.0\n355,96,13.5\n355,97,14.0\n355,98,14.5\n355,99,15.0\n355,100,7.5\n355,101,7.0\n355,102,6.5\n355,103,6.0\n355,104,5.5\n355,105,5.0\n355,106,5.5\n355,107,6.0\n355,108,6.5\n355,109,7.0\n355,110,7.5\n355,111,8.0\n355,112,8.5\n355,113,9.0\n355,114,9.5\n355,115,10.0\n355,116,10.5\n355,117,11.0\n355,118,11.5\n355,119,12.0\n355,120,12.5\n355,121,13.0\n355,122,13.5\n355,123,14.0\n355,124,14.5\n355,125,7.0\n355,126,6.5\n355,127,6.0\n355,128,5.5\n355,129,5.0\n355,130,4.5\n355,131,5.0\n355,132,5.5\n355,133,6.0\n355,134,6.5\n355,135,7.0\n355,136,7.5\n355,137,8.0\n355,138,8.5\n355,139,9.0\n355,140,9.5\n355,141,10.0\n355,142,10.5\n355,143,11.0\n355,144,11.5\n355,145,12.0\n355,146,12.5\n355,147,13.0\n355,148,13.5\n355,149,14.0\n355,150,6.5\n355,151,6.0\n355,152,5.5\n355,153,5.0\n355,154,4.5\n355,155,4.0\n355,156,4.5\n355,157,5.0\n355,158,5.5\n355,159,6.0\n355,160,6.5\n355,161,7.0\n355,162,7.5\n355,163,8.0\n355,164,8.5\n355,165,9.0\n355,166,9.5\n355,167,10.0\n355,168,10.5\n355,169,11.0\n355,170,11.5\n355,171,12.0\n355,172,12.5\n355,173,13.0\n355,174,13.5\n355,175,6.0\n355,176,5.5\n355,177,5.0\n355,178,4.5\n355,179,4.0\n355,180,3.5\n355,181,4.0\n355,182,4.5\n355,183,5.0\n355,184,5.5\n355,185,6.0\n355,186,6.5\n355,187,7.0\n355,188,7.5\n355,189,8.0\n355,190,8.5\n355,191,9.0\n355,192,9.5\n355,193,10.0\n355,194,10.5\n355,195,11.0\n355,196,11.5\n355,197,12.0\n355,198,12.5\n355,199,13.0\n355,200,5.5\n355,201,5.0\n355,202,4.5\n355,203,4.0\n355,204,3.5\n355,205,3.0\n355,206,3.5\n355,207,4.0\n355,208,4.5\n355,209,5.0\n355,210,5.5\n355,211,6.0\n355,212,6.5\n355,213,7.0\n355,214,7.5\n355,215,8.0\n355,216,8.5\n355,217,9.0\n355,218,9.5\n355,219,10.0\n355,220,10.5\n355,221,11.0\n355,222,11.5\n355,223,12.0\n355,224,12.5\n355,225,5.0\n355,226,4.5\n355,227,4.0\n355,228,3.5\n355,229,3.0\n355,230,2.5\n355,231,3.0\n355,232,3.5\n355,233,4.0\n355,234,4.5\n355,235,5.0\n355,236,5.5\n355,237,6.0\n355,238,6.5\n355,239,7.0\n355,240,7.5\n355,241,8.0\n355,242,8.5\n355,243,9.0\n355,244,9.5\n355,245,10.0\n355,246,10.5\n355,247,11.0\n355,248,11.5\n355,249,12.0\n355,250,4.5\n355,251,4.0\n355,252,3.5\n355,253,3.0\n355,254,2.5\n355,255,2.0\n355,256,2.5\n355,257,3.0\n355,258,3.5\n355,259,4.0\n355,260,4.5\n355,261,5.0\n355,262,5.5\n355,263,6.0\n355,264,6.5\n355,265,7.0\n355,266,7.5\n355,267,8.0\n355,268,8.5\n355,269,9.0\n355,270,9.5\n355,271,10.0\n355,272,10.5\n355,273,11.0\n355,274,11.5\n355,275,4.0\n355,276,3.5\n355,277,3.0\n355,278,2.5\n355,279,2.0\n355,280,1.5\n355,281,2.0\n355,282,2.5\n355,283,3.0\n355,284,3.5\n355,285,4.0\n355,286,4.5\n355,287,5.0\n355,288,5.5\n355,289,6.0\n355,290,6.5\n355,291,7.0\n355,292,7.5\n355,293,8.0\n355,294,8.5\n355,295,9.0\n355,296,9.5\n355,297,10.0\n355,298,10.5\n355,299,11.0\n355,300,3.5\n355,301,3.0\n355,302,2.5\n355,303,2.0\n355,304,1.5\n355,305,1.0\n355,306,1.5\n355,307,2.0\n355,308,2.5\n355,309,3.0\n355,310,3.5\n355,311,4.0\n355,312,4.5\n355,313,5.0\n355,314,5.5\n355,315,6.0\n355,316,6.5\n355,317,7.0\n355,318,7.5\n355,319,8.0\n355,320,8.5\n355,321,9.0\n355,322,9.5\n355,323,10.0\n355,324,10.5\n355,325,3.0\n355,326,2.5\n355,327,2.0\n355,328,1.5\n355,329,1.0\n355,330,0.5\n355,331,1.0\n355,332,1.5\n355,333,2.0\n355,334,2.5\n355,335,3.0\n355,336,3.5\n355,337,4.0\n355,338,4.5\n355,339,5.0\n355,340,5.5\n355,341,6.0\n355,342,6.5\n355,343,7.0\n355,344,7.5\n355,345,8.0\n355,346,8.5\n355,347,9.0\n355,348,9.5\n355,349,10.0\n355,350,2.5\n355,351,2.0\n355,352,1.5\n355,353,1.0\n355,354,0.5\n355,355,0\n355,356,0.5\n355,357,1.0\n355,358,1.5\n355,359,2.0\n355,360,2.5\n355,361,3.0\n355,362,3.5\n355,363,4.0\n355,364,4.5\n355,365,5.0\n355,366,5.5\n355,367,6.0\n355,368,6.5\n355,369,7.0\n355,370,7.5\n355,371,8.0\n355,372,8.5\n355,373,9.0\n355,374,9.5\n355,375,3.0\n355,376,2.5\n355,377,2.0\n355,378,1.5\n355,379,1.0\n355,380,0.5\n355,381,1.0\n355,382,1.5\n355,383,2.0\n355,384,2.5\n355,385,3.0\n355,386,3.5\n355,387,4.0\n355,388,4.5\n355,389,5.0\n355,390,5.5\n355,391,6.0\n355,392,6.5\n355,393,7.0\n355,394,7.5\n355,395,8.0\n355,396,8.5\n355,397,9.0\n355,398,9.5\n355,399,10.0\n355,400,3.5\n355,401,3.0\n355,402,2.5\n355,403,2.0\n355,404,1.5\n355,405,1.0\n355,406,1.5\n355,407,2.0\n355,408,2.5\n355,409,3.0\n355,410,3.5\n355,411,4.0\n355,412,4.5\n355,413,5.0\n355,414,5.5\n355,415,6.0\n355,416,6.5\n355,417,7.0\n355,418,7.5\n355,419,8.0\n355,420,8.5\n355,421,9.0\n355,422,9.5\n355,423,10.0\n355,424,10.5\n355,425,4.0\n355,426,3.5\n355,427,3.0\n355,428,2.5\n355,429,2.0\n355,430,1.5\n355,431,2.0\n355,432,2.5\n355,433,3.0\n355,434,3.5\n355,435,4.0\n355,436,4.5\n355,437,5.0\n355,438,5.5\n355,439,6.0\n355,440,6.5\n355,441,7.0\n355,442,7.5\n355,443,8.0\n355,444,8.5\n355,445,9.0\n355,446,9.5\n355,447,10.0\n355,448,10.5\n355,449,11.0\n355,450,4.5\n355,451,4.0\n355,452,3.5\n355,453,3.0\n355,454,2.5\n355,455,2.0\n355,456,2.5\n355,457,3.0\n355,458,3.5\n355,459,4.0\n355,460,4.5\n355,461,5.0\n355,462,5.5\n355,463,6.0\n355,464,6.5\n355,465,7.0\n355,466,7.5\n355,467,8.0\n355,468,8.5\n355,469,9.0\n355,470,9.5\n355,471,10.0\n355,472,10.5\n355,473,11.0\n355,474,11.5\n355,475,5.0\n355,476,4.5\n355,477,4.0\n355,478,3.5\n355,479,3.0\n355,480,2.5\n355,481,3.0\n355,482,3.5\n355,483,4.0\n355,484,4.5\n355,485,5.0\n355,486,5.5\n355,487,6.0\n355,488,6.5\n355,489,7.0\n355,490,7.5\n355,491,8.0\n355,492,8.5\n355,493,9.0\n355,494,9.5\n355,495,10.0\n355,496,10.5\n355,497,11.0\n355,498,11.5\n355,499,12.0\n355,500,5.5\n355,501,5.0\n355,502,4.5\n355,503,4.0\n355,504,3.5\n355,505,3.0\n355,506,3.5\n355,507,4.0\n355,508,4.5\n355,509,5.0\n355,510,5.5\n355,511,6.0\n355,512,6.5\n355,513,7.0\n355,514,7.5\n355,515,8.0\n355,516,8.5\n355,517,9.0\n355,518,9.5\n355,519,10.0\n355,520,10.5\n355,521,11.0\n355,522,11.5\n355,523,12.0\n355,524,12.5\n355,525,6.0\n355,526,5.5\n355,527,5.0\n355,528,4.5\n355,529,4.0\n355,530,3.5\n355,531,4.0\n355,532,4.5\n355,533,5.0\n355,534,5.5\n355,535,6.0\n355,536,6.5\n355,537,7.0\n355,538,7.5\n355,539,8.0\n355,540,8.5\n355,541,9.0\n355,542,9.5\n355,543,10.0\n355,544,10.5\n355,545,11.0\n355,546,11.5\n355,547,12.0\n355,548,12.5\n355,549,13.0\n355,550,6.5\n355,551,6.0\n355,552,5.5\n355,553,5.0\n355,554,4.5\n355,555,4.0\n355,556,4.5\n355,557,5.0\n355,558,5.5\n355,559,6.0\n355,560,6.5\n355,561,7.0\n355,562,7.5\n355,563,8.0\n355,564,8.5\n355,565,9.0\n355,566,9.5\n355,567,10.0\n355,568,10.5\n355,569,11.0\n355,570,11.5\n355,571,12.0\n355,572,12.5\n355,573,13.0\n355,574,13.5\n355,575,7.0\n355,576,6.5\n355,577,6.0\n355,578,5.5\n355,579,5.0\n355,580,4.5\n355,581,5.0\n355,582,5.5\n355,583,6.0\n355,584,6.5\n355,585,7.0\n355,586,7.5\n355,587,8.0\n355,588,8.5\n355,589,9.0\n355,590,9.5\n355,591,10.0\n355,592,10.5\n355,593,11.0\n355,594,11.5\n355,595,12.0\n355,596,12.5\n355,597,13.0\n355,598,13.5\n355,599,14.0\n355,600,7.5\n355,601,7.0\n355,602,6.5\n355,603,6.0\n355,604,5.5\n355,605,5.0\n355,606,5.5\n355,607,6.0\n355,608,6.5\n355,609,7.0\n355,610,7.5\n355,611,8.0\n355,612,8.5\n355,613,9.0\n355,614,9.5\n355,615,10.0\n355,616,10.5\n355,617,11.0\n355,618,11.5\n355,619,12.0\n355,620,12.5\n355,621,13.0\n355,622,13.5\n355,623,14.0\n355,624,14.5\n356,0,10.0\n356,1,9.5\n356,2,9.0\n356,3,8.5\n356,4,8.0\n356,5,7.5\n356,6,7.0\n356,7,7.5\n356,8,8.0\n356,9,8.5\n356,10,9.0\n356,11,9.5\n356,12,10.0\n356,13,10.5\n356,14,11.0\n356,15,11.5\n356,16,12.0\n356,17,12.5\n356,18,13.0\n356,19,13.5\n356,20,14.0\n356,21,14.5\n356,22,15.0\n356,23,15.5\n356,24,16.0\n356,25,9.5\n356,26,9.0\n356,27,8.5\n356,28,8.0\n356,29,7.5\n356,30,7.0\n356,31,6.5\n356,32,7.0\n356,33,7.5\n356,34,8.0\n356,35,8.5\n356,36,9.0\n356,37,9.5\n356,38,10.0\n356,39,10.5\n356,40,11.0\n356,41,11.5\n356,42,12.0\n356,43,12.5\n356,44,13.0\n356,45,13.5\n356,46,14.0\n356,47,14.5\n356,48,15.0\n356,49,15.5\n356,50,9.0\n356,51,8.5\n356,52,8.0\n356,53,7.5\n356,54,7.0\n356,55,6.5\n356,56,6.0\n356,57,6.5\n356,58,7.0\n356,59,7.5\n356,60,8.0\n356,61,8.5\n356,62,9.0\n356,63,9.5\n356,64,10.0\n356,65,10.5\n356,66,11.0\n356,67,11.5\n356,68,12.0\n356,69,12.5\n356,70,13.0\n356,71,13.5\n356,72,14.0\n356,73,14.5\n356,74,15.0\n356,75,8.5\n356,76,8.0\n356,77,7.5\n356,78,7.0\n356,79,6.5\n356,80,6.0\n356,81,5.5\n356,82,6.0\n356,83,6.5\n356,84,7.0\n356,85,7.5\n356,86,8.0\n356,87,8.5\n356,88,9.0\n356,89,9.5\n356,90,10.0\n356,91,10.5\n356,92,11.0\n356,93,11.5\n356,94,12.0\n356,95,12.5\n356,96,13.0\n356,97,13.5\n356,98,14.0\n356,99,14.5\n356,100,8.0\n356,101,7.5\n356,102,7.0\n356,103,6.5\n356,104,6.0\n356,105,5.5\n356,106,5.0\n356,107,5.5\n356,108,6.0\n356,109,6.5\n356,110,7.0\n356,111,7.5\n356,112,8.0\n356,113,8.5\n356,114,9.0\n356,115,9.5\n356,116,10.0\n356,117,10.5\n356,118,11.0\n356,119,11.5\n356,120,12.0\n356,121,12.5\n356,122,13.0\n356,123,13.5\n356,124,14.0\n356,125,7.5\n356,126,7.0\n356,127,6.5\n356,128,6.0\n356,129,5.5\n356,130,5.0\n356,131,4.5\n356,132,5.0\n356,133,5.5\n356,134,6.0\n356,135,6.5\n356,136,7.0\n356,137,7.5\n356,138,8.0\n356,139,8.5\n356,140,9.0\n356,141,9.5\n356,142,10.0\n356,143,10.5\n356,144,11.0\n356,145,11.5\n356,146,12.0\n356,147,12.5\n356,148,13.0\n356,149,13.5\n356,150,7.0\n356,151,6.5\n356,152,6.0\n356,153,5.5\n356,154,5.0\n356,155,4.5\n356,156,4.0\n356,157,4.5\n356,158,5.0\n356,159,5.5\n356,160,6.0\n356,161,6.5\n356,162,7.0\n356,163,7.5\n356,164,8.0\n356,165,8.5\n356,166,9.0\n356,167,9.5\n356,168,10.0\n356,169,10.5\n356,170,11.0\n356,171,11.5\n356,172,12.0\n356,173,12.5\n356,174,13.0\n356,175,6.5\n356,176,6.0\n356,177,5.5\n356,178,5.0\n356,179,4.5\n356,180,4.0\n356,181,3.5\n356,182,4.0\n356,183,4.5\n356,184,5.0\n356,185,5.5\n356,186,6.0\n356,187,6.5\n356,188,7.0\n356,189,7.5\n356,190,8.0\n356,191,8.5\n356,192,9.0\n356,193,9.5\n356,194,10.0\n356,195,10.5\n356,196,11.0\n356,197,11.5\n356,198,12.0\n356,199,12.5\n356,200,6.0\n356,201,5.5\n356,202,5.0\n356,203,4.5\n356,204,4.0\n356,205,3.5\n356,206,3.0\n356,207,3.5\n356,208,4.0\n356,209,4.5\n356,210,5.0\n356,211,5.5\n356,212,6.0\n356,213,6.5\n356,214,7.0\n356,215,7.5\n356,216,8.0\n356,217,8.5\n356,218,9.0\n356,219,9.5\n356,220,10.0\n356,221,10.5\n356,222,11.0\n356,223,11.5\n356,224,12.0\n356,225,5.5\n356,226,5.0\n356,227,4.5\n356,228,4.0\n356,229,3.5\n356,230,3.0\n356,231,2.5\n356,232,3.0\n356,233,3.5\n356,234,4.0\n356,235,4.5\n356,236,5.0\n356,237,5.5\n356,238,6.0\n356,239,6.5\n356,240,7.0\n356,241,7.5\n356,242,8.0\n356,243,8.5\n356,244,9.0\n356,245,9.5\n356,246,10.0\n356,247,10.5\n356,248,11.0\n356,249,11.5\n356,250,5.0\n356,251,4.5\n356,252,4.0\n356,253,3.5\n356,254,3.0\n356,255,2.5\n356,256,2.0\n356,257,2.5\n356,258,3.0\n356,259,3.5\n356,260,4.0\n356,261,4.5\n356,262,5.0\n356,263,5.5\n356,264,6.0\n356,265,6.5\n356,266,7.0\n356,267,7.5\n356,268,8.0\n356,269,8.5\n356,270,9.0\n356,271,9.5\n356,272,10.0\n356,273,10.5\n356,274,11.0\n356,275,4.5\n356,276,4.0\n356,277,3.5\n356,278,3.0\n356,279,2.5\n356,280,2.0\n356,281,1.5\n356,282,2.0\n356,283,2.5\n356,284,3.0\n356,285,3.5\n356,286,4.0\n356,287,4.5\n356,288,5.0\n356,289,5.5\n356,290,6.0\n356,291,6.5\n356,292,7.0\n356,293,7.5\n356,294,8.0\n356,295,8.5\n356,296,9.0\n356,297,9.5\n356,298,10.0\n356,299,10.5\n356,300,4.0\n356,301,3.5\n356,302,3.0\n356,303,2.5\n356,304,2.0\n356,305,1.5\n356,306,1.0\n356,307,1.5\n356,308,2.0\n356,309,2.5\n356,310,3.0\n356,311,3.5\n356,312,4.0\n356,313,4.5\n356,314,5.0\n356,315,5.5\n356,316,6.0\n356,317,6.5\n356,318,7.0\n356,319,7.5\n356,320,8.0\n356,321,8.5\n356,322,9.0\n356,323,9.5\n356,324,10.0\n356,325,3.5\n356,326,3.0\n356,327,2.5\n356,328,2.0\n356,329,1.5\n356,330,1.0\n356,331,0.5\n356,332,1.0\n356,333,1.5\n356,334,2.0\n356,335,2.5\n356,336,3.0\n356,337,3.5\n356,338,4.0\n356,339,4.5\n356,340,5.0\n356,341,5.5\n356,342,6.0\n356,343,6.5\n356,344,7.0\n356,345,7.5\n356,346,8.0\n356,347,8.5\n356,348,9.0\n356,349,9.5\n356,350,3.0\n356,351,2.5\n356,352,2.0\n356,353,1.5\n356,354,1.0\n356,355,0.5\n356,356,0\n356,357,0.5\n356,358,1.0\n356,359,1.5\n356,360,2.0\n356,361,2.5\n356,362,3.0\n356,363,3.5\n356,364,4.0\n356,365,4.5\n356,366,5.0\n356,367,5.5\n356,368,6.0\n356,369,6.5\n356,370,7.0\n356,371,7.5\n356,372,8.0\n356,373,8.5\n356,374,9.0\n356,375,3.5\n356,376,3.0\n356,377,2.5\n356,378,2.0\n356,379,1.5\n356,380,1.0\n356,381,0.5\n356,382,1.0\n356,383,1.5\n356,384,2.0\n356,385,2.5\n356,386,3.0\n356,387,3.5\n356,388,4.0\n356,389,4.5\n356,390,5.0\n356,391,5.5\n356,392,6.0\n356,393,6.5\n356,394,7.0\n356,395,7.5\n356,396,8.0\n356,397,8.5\n356,398,9.0\n356,399,9.5\n356,400,4.0\n356,401,3.5\n356,402,3.0\n356,403,2.5\n356,404,2.0\n356,405,1.5\n356,406,1.0\n356,407,1.5\n356,408,2.0\n356,409,2.5\n356,410,3.0\n356,411,3.5\n356,412,4.0\n356,413,4.5\n356,414,5.0\n356,415,5.5\n356,416,6.0\n356,417,6.5\n356,418,7.0\n356,419,7.5\n356,420,8.0\n356,421,8.5\n356,422,9.0\n356,423,9.5\n356,424,10.0\n356,425,4.5\n356,426,4.0\n356,427,3.5\n356,428,3.0\n356,429,2.5\n356,430,2.0\n356,431,1.5\n356,432,2.0\n356,433,2.5\n356,434,3.0\n356,435,3.5\n356,436,4.0\n356,437,4.5\n356,438,5.0\n356,439,5.5\n356,440,6.0\n356,441,6.5\n356,442,7.0\n356,443,7.5\n356,444,8.0\n356,445,8.5\n356,446,9.0\n356,447,9.5\n356,448,10.0\n356,449,10.5\n356,450,5.0\n356,451,4.5\n356,452,4.0\n356,453,3.5\n356,454,3.0\n356,455,2.5\n356,456,2.0\n356,457,2.5\n356,458,3.0\n356,459,3.5\n356,460,4.0\n356,461,4.5\n356,462,5.0\n356,463,5.5\n356,464,6.0\n356,465,6.5\n356,466,7.0\n356,467,7.5\n356,468,8.0\n356,469,8.5\n356,470,9.0\n356,471,9.5\n356,472,10.0\n356,473,10.5\n356,474,11.0\n356,475,5.5\n356,476,5.0\n356,477,4.5\n356,478,4.0\n356,479,3.5\n356,480,3.0\n356,481,2.5\n356,482,3.0\n356,483,3.5\n356,484,4.0\n356,485,4.5\n356,486,5.0\n356,487,5.5\n356,488,6.0\n356,489,6.5\n356,490,7.0\n356,491,7.5\n356,492,8.0\n356,493,8.5\n356,494,9.0\n356,495,9.5\n356,496,10.0\n356,497,10.5\n356,498,11.0\n356,499,11.5\n356,500,6.0\n356,501,5.5\n356,502,5.0\n356,503,4.5\n356,504,4.0\n356,505,3.5\n356,506,3.0\n356,507,3.5\n356,508,4.0\n356,509,4.5\n356,510,5.0\n356,511,5.5\n356,512,6.0\n356,513,6.5\n356,514,7.0\n356,515,7.5\n356,516,8.0\n356,517,8.5\n356,518,9.0\n356,519,9.5\n356,520,10.0\n356,521,10.5\n356,522,11.0\n356,523,11.5\n356,524,12.0\n356,525,6.5\n356,526,6.0\n356,527,5.5\n356,528,5.0\n356,529,4.5\n356,530,4.0\n356,531,3.5\n356,532,4.0\n356,533,4.5\n356,534,5.0\n356,535,5.5\n356,536,6.0\n356,537,6.5\n356,538,7.0\n356,539,7.5\n356,540,8.0\n356,541,8.5\n356,542,9.0\n356,543,9.5\n356,544,10.0\n356,545,10.5\n356,546,11.0\n356,547,11.5\n356,548,12.0\n356,549,12.5\n356,550,7.0\n356,551,6.5\n356,552,6.0\n356,553,5.5\n356,554,5.0\n356,555,4.5\n356,556,4.0\n356,557,4.5\n356,558,5.0\n356,559,5.5\n356,560,6.0\n356,561,6.5\n356,562,7.0\n356,563,7.5\n356,564,8.0\n356,565,8.5\n356,566,9.0\n356,567,9.5\n356,568,10.0\n356,569,10.5\n356,570,11.0\n356,571,11.5\n356,572,12.0\n356,573,12.5\n356,574,13.0\n356,575,7.5\n356,576,7.0\n356,577,6.5\n356,578,6.0\n356,579,5.5\n356,580,5.0\n356,581,4.5\n356,582,5.0\n356,583,5.5\n356,584,6.0\n356,585,6.5\n356,586,7.0\n356,587,7.5\n356,588,8.0\n356,589,8.5\n356,590,9.0\n356,591,9.5\n356,592,10.0\n356,593,10.5\n356,594,11.0\n356,595,11.5\n356,596,12.0\n356,597,12.5\n356,598,13.0\n356,599,13.5\n356,600,8.0\n356,601,7.5\n356,602,7.0\n356,603,6.5\n356,604,6.0\n356,605,5.5\n356,606,5.0\n356,607,5.5\n356,608,6.0\n356,609,6.5\n356,610,7.0\n356,611,7.5\n356,612,8.0\n356,613,8.5\n356,614,9.0\n356,615,9.5\n356,616,10.0\n356,617,10.5\n356,618,11.0\n356,619,11.5\n356,620,12.0\n356,621,12.5\n356,622,13.0\n356,623,13.5\n356,624,14.0\n357,0,10.5\n357,1,10.0\n357,2,9.5\n357,3,9.0\n357,4,8.5\n357,5,8.0\n357,6,7.5\n357,7,7.0\n357,8,7.5\n357,9,8.0\n357,10,8.5\n357,11,9.0\n357,12,9.5\n357,13,10.0\n357,14,10.5\n357,15,11.0\n357,16,11.5\n357,17,12.0\n357,18,12.5\n357,19,13.0\n357,20,13.5\n357,21,14.0\n357,22,14.5\n357,23,15.0\n357,24,15.5\n357,25,10.0\n357,26,9.5\n357,27,9.0\n357,28,8.5\n357,29,8.0\n357,30,7.5\n357,31,7.0\n357,32,6.5\n357,33,7.0\n357,34,7.5\n357,35,8.0\n357,36,8.5\n357,37,9.0\n357,38,9.5\n357,39,10.0\n357,40,10.5\n357,41,11.0\n357,42,11.5\n357,43,12.0\n357,44,12.5\n357,45,13.0\n357,46,13.5\n357,47,14.0\n357,48,14.5\n357,49,15.0\n357,50,9.5\n357,51,9.0\n357,52,8.5\n357,53,8.0\n357,54,7.5\n357,55,7.0\n357,56,6.5\n357,57,6.0\n357,58,6.5\n357,59,7.0\n357,60,7.5\n357,61,8.0\n357,62,8.5\n357,63,9.0\n357,64,9.5\n357,65,10.0\n357,66,10.5\n357,67,11.0\n357,68,11.5\n357,69,12.0\n357,70,12.5\n357,71,13.0\n357,72,13.5\n357,73,14.0\n357,74,14.5\n357,75,9.0\n357,76,8.5\n357,77,8.0\n357,78,7.5\n357,79,7.0\n357,80,6.5\n357,81,6.0\n357,82,5.5\n357,83,6.0\n357,84,6.5\n357,85,7.0\n357,86,7.5\n357,87,8.0\n357,88,8.5\n357,89,9.0\n357,90,9.5\n357,91,10.0\n357,92,10.5\n357,93,11.0\n357,94,11.5\n357,95,12.0\n357,96,12.5\n357,97,13.0\n357,98,13.5\n357,99,14.0\n357,100,8.5\n357,101,8.0\n357,102,7.5\n357,103,7.0\n357,104,6.5\n357,105,6.0\n357,106,5.5\n357,107,5.0\n357,108,5.5\n357,109,6.0\n357,110,6.5\n357,111,7.0\n357,112,7.5\n357,113,8.0\n357,114,8.5\n357,115,9.0\n357,116,9.5\n357,117,10.0\n357,118,10.5\n357,119,11.0\n357,120,11.5\n357,121,12.0\n357,122,12.5\n357,123,13.0\n357,124,13.5\n357,125,8.0\n357,126,7.5\n357,127,7.0\n357,128,6.5\n357,129,6.0\n357,130,5.5\n357,131,5.0\n357,132,4.5\n357,133,5.0\n357,134,5.5\n357,135,6.0\n357,136,6.5\n357,137,7.0\n357,138,7.5\n357,139,8.0\n357,140,8.5\n357,141,9.0\n357,142,9.5\n357,143,10.0\n357,144,10.5\n357,145,11.0\n357,146,11.5\n357,147,12.0\n357,148,12.5\n357,149,13.0\n357,150,7.5\n357,151,7.0\n357,152,6.5\n357,153,6.0\n357,154,5.5\n357,155,5.0\n357,156,4.5\n357,157,4.0\n357,158,4.5\n357,159,5.0\n357,160,5.5\n357,161,6.0\n357,162,6.5\n357,163,7.0\n357,164,7.5\n357,165,8.0\n357,166,8.5\n357,167,9.0\n357,168,9.5\n357,169,10.0\n357,170,10.5\n357,171,11.0\n357,172,11.5\n357,173,12.0\n357,174,12.5\n357,175,7.0\n357,176,6.5\n357,177,6.0\n357,178,5.5\n357,179,5.0\n357,180,4.5\n357,181,4.0\n357,182,3.5\n357,183,4.0\n357,184,4.5\n357,185,5.0\n357,186,5.5\n357,187,6.0\n357,188,6.5\n357,189,7.0\n357,190,7.5\n357,191,8.0\n357,192,8.5\n357,193,9.0\n357,194,9.5\n357,195,10.0\n357,196,10.5\n357,197,11.0\n357,198,11.5\n357,199,12.0\n357,200,6.5\n357,201,6.0\n357,202,5.5\n357,203,5.0\n357,204,4.5\n357,205,4.0\n357,206,3.5\n357,207,3.0\n357,208,3.5\n357,209,4.0\n357,210,4.5\n357,211,5.0\n357,212,5.5\n357,213,6.0\n357,214,6.5\n357,215,7.0\n357,216,7.5\n357,217,8.0\n357,218,8.5\n357,219,9.0\n357,220,9.5\n357,221,10.0\n357,222,10.5\n357,223,11.0\n357,224,11.5\n357,225,6.0\n357,226,5.5\n357,227,5.0\n357,228,4.5\n357,229,4.0\n357,230,3.5\n357,231,3.0\n357,232,2.5\n357,233,3.0\n357,234,3.5\n357,235,4.0\n357,236,4.5\n357,237,5.0\n357,238,5.5\n357,239,6.0\n357,240,6.5\n357,241,7.0\n357,242,7.5\n357,243,8.0\n357,244,8.5\n357,245,9.0\n357,246,9.5\n357,247,10.0\n357,248,10.5\n357,249,11.0\n357,250,5.5\n357,251,5.0\n357,252,4.5\n357,253,4.0\n357,254,3.5\n357,255,3.0\n357,256,2.5\n357,257,2.0\n357,258,2.5\n357,259,3.0\n357,260,3.5\n357,261,4.0\n357,262,4.5\n357,263,5.0\n357,264,5.5\n357,265,6.0\n357,266,6.5\n357,267,7.0\n357,268,7.5\n357,269,8.0\n357,270,8.5\n357,271,9.0\n357,272,9.5\n357,273,10.0\n357,274,10.5\n357,275,5.0\n357,276,4.5\n357,277,4.0\n357,278,3.5\n357,279,3.0\n357,280,2.5\n357,281,2.0\n357,282,1.5\n357,283,2.0\n357,284,2.5\n357,285,3.0\n357,286,3.5\n357,287,4.0\n357,288,4.5\n357,289,5.0\n357,290,5.5\n357,291,6.0\n357,292,6.5\n357,293,7.0\n357,294,7.5\n357,295,8.0\n357,296,8.5\n357,297,9.0\n357,298,9.5\n357,299,10.0\n357,300,4.5\n357,301,4.0\n357,302,3.5\n357,303,3.0\n357,304,2.5\n357,305,2.0\n357,306,1.5\n357,307,1.0\n357,308,1.5\n357,309,2.0\n357,310,2.5\n357,311,3.0\n357,312,3.5\n357,313,4.0\n357,314,4.5\n357,315,5.0\n357,316,5.5\n357,317,6.0\n357,318,6.5\n357,319,7.0\n357,320,7.5\n357,321,8.0\n357,322,8.5\n357,323,9.0\n357,324,9.5\n357,325,4.0\n357,326,3.5\n357,327,3.0\n357,328,2.5\n357,329,2.0\n357,330,1.5\n357,331,1.0\n357,332,0.5\n357,333,1.0\n357,334,1.5\n357,335,2.0\n357,336,2.5\n357,337,3.0\n357,338,3.5\n357,339,4.0\n357,340,4.5\n357,341,5.0\n357,342,5.5\n357,343,6.0\n357,344,6.5\n357,345,7.0\n357,346,7.5\n357,347,8.0\n357,348,8.5\n357,349,9.0\n357,350,3.5\n357,351,3.0\n357,352,2.5\n357,353,2.0\n357,354,1.5\n357,355,1.0\n357,356,0.5\n357,357,0\n357,358,0.5\n357,359,1.0\n357,360,1.5\n357,361,2.0\n357,362,2.5\n357,363,3.0\n357,364,3.5\n357,365,4.0\n357,366,4.5\n357,367,5.0\n357,368,5.5\n357,369,6.0\n357,370,6.5\n357,371,7.0\n357,372,7.5\n357,373,8.0\n357,374,8.5\n357,375,4.0\n357,376,3.5\n357,377,3.0\n357,378,2.5\n357,379,2.0\n357,380,1.5\n357,381,1.0\n357,382,0.5\n357,383,1.0\n357,384,1.5\n357,385,2.0\n357,386,2.5\n357,387,3.0\n357,388,3.5\n357,389,4.0\n357,390,4.5\n357,391,5.0\n357,392,5.5\n357,393,6.0\n357,394,6.5\n357,395,7.0\n357,396,7.5\n357,397,8.0\n357,398,8.5\n357,399,9.0\n357,400,4.5\n357,401,4.0\n357,402,3.5\n357,403,3.0\n357,404,2.5\n357,405,2.0\n357,406,1.5\n357,407,1.0\n357,408,1.5\n357,409,2.0\n357,410,2.5\n357,411,3.0\n357,412,3.5\n357,413,4.0\n357,414,4.5\n357,415,5.0\n357,416,5.5\n357,417,6.0\n357,418,6.5\n357,419,7.0\n357,420,7.5\n357,421,8.0\n357,422,8.5\n357,423,9.0\n357,424,9.5\n357,425,5.0\n357,426,4.5\n357,427,4.0\n357,428,3.5\n357,429,3.0\n357,430,2.5\n357,431,2.0\n357,432,1.5\n357,433,2.0\n357,434,2.5\n357,435,3.0\n357,436,3.5\n357,437,4.0\n357,438,4.5\n357,439,5.0\n357,440,5.5\n357,441,6.0\n357,442,6.5\n357,443,7.0\n357,444,7.5\n357,445,8.0\n357,446,8.5\n357,447,9.0\n357,448,9.5\n357,449,10.0\n357,450,5.5\n357,451,5.0\n357,452,4.5\n357,453,4.0\n357,454,3.5\n357,455,3.0\n357,456,2.5\n357,457,2.0\n357,458,2.5\n357,459,3.0\n357,460,3.5\n357,461,4.0\n357,462,4.5\n357,463,5.0\n357,464,5.5\n357,465,6.0\n357,466,6.5\n357,467,7.0\n357,468,7.5\n357,469,8.0\n357,470,8.5\n357,471,9.0\n357,472,9.5\n357,473,10.0\n357,474,10.5\n357,475,6.0\n357,476,5.5\n357,477,5.0\n357,478,4.5\n357,479,4.0\n357,480,3.5\n357,481,3.0\n357,482,2.5\n357,483,3.0\n357,484,3.5\n357,485,4.0\n357,486,4.5\n357,487,5.0\n357,488,5.5\n357,489,6.0\n357,490,6.5\n357,491,7.0\n357,492,7.5\n357,493,8.0\n357,494,8.5\n357,495,9.0\n357,496,9.5\n357,497,10.0\n357,498,10.5\n357,499,11.0\n357,500,6.5\n357,501,6.0\n357,502,5.5\n357,503,5.0\n357,504,4.5\n357,505,4.0\n357,506,3.5\n357,507,3.0\n357,508,3.5\n357,509,4.0\n357,510,4.5\n357,511,5.0\n357,512,5.5\n357,513,6.0\n357,514,6.5\n357,515,7.0\n357,516,7.5\n357,517,8.0\n357,518,8.5\n357,519,9.0\n357,520,9.5\n357,521,10.0\n357,522,10.5\n357,523,11.0\n357,524,11.5\n357,525,7.0\n357,526,6.5\n357,527,6.0\n357,528,5.5\n357,529,5.0\n357,530,4.5\n357,531,4.0\n357,532,3.5\n357,533,4.0\n357,534,4.5\n357,535,5.0\n357,536,5.5\n357,537,6.0\n357,538,6.5\n357,539,7.0\n357,540,7.5\n357,541,8.0\n357,542,8.5\n357,543,9.0\n357,544,9.5\n357,545,10.0\n357,546,10.5\n357,547,11.0\n357,548,11.5\n357,549,12.0\n357,550,7.5\n357,551,7.0\n357,552,6.5\n357,553,6.0\n357,554,5.5\n357,555,5.0\n357,556,4.5\n357,557,4.0\n357,558,4.5\n357,559,5.0\n357,560,5.5\n357,561,6.0\n357,562,6.5\n357,563,7.0\n357,564,7.5\n357,565,8.0\n357,566,8.5\n357,567,9.0\n357,568,9.5\n357,569,10.0\n357,570,10.5\n357,571,11.0\n357,572,11.5\n357,573,12.0\n357,574,12.5\n357,575,8.0\n357,576,7.5\n357,577,7.0\n357,578,6.5\n357,579,6.0\n357,580,5.5\n357,581,5.0\n357,582,4.5\n357,583,5.0\n357,584,5.5\n357,585,6.0\n357,586,6.5\n357,587,7.0\n357,588,7.5\n357,589,8.0\n357,590,8.5\n357,591,9.0\n357,592,9.5\n357,593,10.0\n357,594,10.5\n357,595,11.0\n357,596,11.5\n357,597,12.0\n357,598,12.5\n357,599,13.0\n357,600,8.5\n357,601,8.0\n357,602,7.5\n357,603,7.0\n357,604,6.5\n357,605,6.0\n357,606,5.5\n357,607,5.0\n357,608,5.5\n357,609,6.0\n357,610,6.5\n357,611,7.0\n357,612,7.5\n357,613,8.0\n357,614,8.5\n357,615,9.0\n357,616,9.5\n357,617,10.0\n357,618,10.5\n357,619,11.0\n357,620,11.5\n357,621,12.0\n357,622,12.5\n357,623,13.0\n357,624,13.5\n358,0,11.0\n358,1,10.5\n358,2,10.0\n358,3,9.5\n358,4,9.0\n358,5,8.5\n358,6,8.0\n358,7,7.5\n358,8,7.0\n358,9,7.5\n358,10,8.0\n358,11,8.5\n358,12,9.0\n358,13,9.5\n358,14,10.0\n358,15,10.5\n358,16,11.0\n358,17,11.5\n358,18,12.0\n358,19,12.5\n358,20,13.0\n358,21,13.5\n358,22,14.0\n358,23,14.5\n358,24,15.0\n358,25,10.5\n358,26,10.0\n358,27,9.5\n358,28,9.0\n358,29,8.5\n358,30,8.0\n358,31,7.5\n358,32,7.0\n358,33,6.5\n358,34,7.0\n358,35,7.5\n358,36,8.0\n358,37,8.5\n358,38,9.0\n358,39,9.5\n358,40,10.0\n358,41,10.5\n358,42,11.0\n358,43,11.5\n358,44,12.0\n358,45,12.5\n358,46,13.0\n358,47,13.5\n358,48,14.0\n358,49,14.5\n358,50,10.0\n358,51,9.5\n358,52,9.0\n358,53,8.5\n358,54,8.0\n358,55,7.5\n358,56,7.0\n358,57,6.5\n358,58,6.0\n358,59,6.5\n358,60,7.0\n358,61,7.5\n358,62,8.0\n358,63,8.5\n358,64,9.0\n358,65,9.5\n358,66,10.0\n358,67,10.5\n358,68,11.0\n358,69,11.5\n358,70,12.0\n358,71,12.5\n358,72,13.0\n358,73,13.5\n358,74,14.0\n358,75,9.5\n358,76,9.0\n358,77,8.5\n358,78,8.0\n358,79,7.5\n358,80,7.0\n358,81,6.5\n358,82,6.0\n358,83,5.5\n358,84,6.0\n358,85,6.5\n358,86,7.0\n358,87,7.5\n358,88,8.0\n358,89,8.5\n358,90,9.0\n358,91,9.5\n358,92,10.0\n358,93,10.5\n358,94,11.0\n358,95,11.5\n358,96,12.0\n358,97,12.5\n358,98,13.0\n358,99,13.5\n358,100,9.0\n358,101,8.5\n358,102,8.0\n358,103,7.5\n358,104,7.0\n358,105,6.5\n358,106,6.0\n358,107,5.5\n358,108,5.0\n358,109,5.5\n358,110,6.0\n358,111,6.5\n358,112,7.0\n358,113,7.5\n358,114,8.0\n358,115,8.5\n358,116,9.0\n358,117,9.5\n358,118,10.0\n358,119,10.5\n358,120,11.0\n358,121,11.5\n358,122,12.0\n358,123,12.5\n358,124,13.0\n358,125,8.5\n358,126,8.0\n358,127,7.5\n358,128,7.0\n358,129,6.5\n358,130,6.0\n358,131,5.5\n358,132,5.0\n358,133,4.5\n358,134,5.0\n358,135,5.5\n358,136,6.0\n358,137,6.5\n358,138,7.0\n358,139,7.5\n358,140,8.0\n358,141,8.5\n358,142,9.0\n358,143,9.5\n358,144,10.0\n358,145,10.5\n358,146,11.0\n358,147,11.5\n358,148,12.0\n358,149,12.5\n358,150,8.0\n358,151,7.5\n358,152,7.0\n358,153,6.5\n358,154,6.0\n358,155,5.5\n358,156,5.0\n358,157,4.5\n358,158,4.0\n358,159,4.5\n358,160,5.0\n358,161,5.5\n358,162,6.0\n358,163,6.5\n358,164,7.0\n358,165,7.5\n358,166,8.0\n358,167,8.5\n358,168,9.0\n358,169,9.5\n358,170,10.0\n358,171,10.5\n358,172,11.0\n358,173,11.5\n358,174,12.0\n358,175,7.5\n358,176,7.0\n358,177,6.5\n358,178,6.0\n358,179,5.5\n358,180,5.0\n358,181,4.5\n358,182,4.0\n358,183,3.5\n358,184,4.0\n358,185,4.5\n358,186,5.0\n358,187,5.5\n358,188,6.0\n358,189,6.5\n358,190,7.0\n358,191,7.5\n358,192,8.0\n358,193,8.5\n358,194,9.0\n358,195,9.5\n358,196,10.0\n358,197,10.5\n358,198,11.0\n358,199,11.5\n358,200,7.0\n358,201,6.5\n358,202,6.0\n358,203,5.5\n358,204,5.0\n358,205,4.5\n358,206,4.0\n358,207,3.5\n358,208,3.0\n358,209,3.5\n358,210,4.0\n358,211,4.5\n358,212,5.0\n358,213,5.5\n358,214,6.0\n358,215,6.5\n358,216,7.0\n358,217,7.5\n358,218,8.0\n358,219,8.5\n358,220,9.0\n358,221,9.5\n358,222,10.0\n358,223,10.5\n358,224,11.0\n358,225,6.5\n358,226,6.0\n358,227,5.5\n358,228,5.0\n358,229,4.5\n358,230,4.0\n358,231,3.5\n358,232,3.0\n358,233,2.5\n358,234,3.0\n358,235,3.5\n358,236,4.0\n358,237,4.5\n358,238,5.0\n358,239,5.5\n358,240,6.0\n358,241,6.5\n358,242,7.0\n358,243,7.5\n358,244,8.0\n358,245,8.5\n358,246,9.0\n358,247,9.5\n358,248,10.0\n358,249,10.5\n358,250,6.0\n358,251,5.5\n358,252,5.0\n358,253,4.5\n358,254,4.0\n358,255,3.5\n358,256,3.0\n358,257,2.5\n358,258,2.0\n358,259,2.5\n358,260,3.0\n358,261,3.5\n358,262,4.0\n358,263,4.5\n358,264,5.0\n358,265,5.5\n358,266,6.0\n358,267,6.5\n358,268,7.0\n358,269,7.5\n358,270,8.0\n358,271,8.5\n358,272,9.0\n358,273,9.5\n358,274,10.0\n358,275,5.5\n358,276,5.0\n358,277,4.5\n358,278,4.0\n358,279,3.5\n358,280,3.0\n358,281,2.5\n358,282,2.0\n358,283,1.5\n358,284,2.0\n358,285,2.5\n358,286,3.0\n358,287,3.5\n358,288,4.0\n358,289,4.5\n358,290,5.0\n358,291,5.5\n358,292,6.0\n358,293,6.5\n358,294,7.0\n358,295,7.5\n358,296,8.0\n358,297,8.5\n358,298,9.0\n358,299,9.5\n358,300,5.0\n358,301,4.5\n358,302,4.0\n358,303,3.5\n358,304,3.0\n358,305,2.5\n358,306,2.0\n358,307,1.5\n358,308,1.0\n358,309,1.5\n358,310,2.0\n358,311,2.5\n358,312,3.0\n358,313,3.5\n358,314,4.0\n358,315,4.5\n358,316,5.0\n358,317,5.5\n358,318,6.0\n358,319,6.5\n358,320,7.0\n358,321,7.5\n358,322,8.0\n358,323,8.5\n358,324,9.0\n358,325,4.5\n358,326,4.0\n358,327,3.5\n358,328,3.0\n358,329,2.5\n358,330,2.0\n358,331,1.5\n358,332,1.0\n358,333,0.5\n358,334,1.0\n358,335,1.5\n358,336,2.0\n358,337,2.5\n358,338,3.0\n358,339,3.5\n358,340,4.0\n358,341,4.5\n358,342,5.0\n358,343,5.5\n358,344,6.0\n358,345,6.5\n358,346,7.0\n358,347,7.5\n358,348,8.0\n358,349,8.5\n358,350,4.0\n358,351,3.5\n358,352,3.0\n358,353,2.5\n358,354,2.0\n358,355,1.5\n358,356,1.0\n358,357,0.5\n358,358,0\n358,359,0.5\n358,360,1.0\n358,361,1.5\n358,362,2.0\n358,363,2.5\n358,364,3.0\n358,365,3.5\n358,366,4.0\n358,367,4.5\n358,368,5.0\n358,369,5.5\n358,370,6.0\n358,371,6.5\n358,372,7.0\n358,373,7.5\n358,374,8.0\n358,375,4.5\n358,376,4.0\n358,377,3.5\n358,378,3.0\n358,379,2.5\n358,380,2.0\n358,381,1.5\n358,382,1.0\n358,383,0.5\n358,384,1.0\n358,385,1.5\n358,386,2.0\n358,387,2.5\n358,388,3.0\n358,389,3.5\n358,390,4.0\n358,391,4.5\n358,392,5.0\n358,393,5.5\n358,394,6.0\n358,395,6.5\n358,396,7.0\n358,397,7.5\n358,398,8.0\n358,399,8.5\n358,400,5.0\n358,401,4.5\n358,402,4.0\n358,403,3.5\n358,404,3.0\n358,405,2.5\n358,406,2.0\n358,407,1.5\n358,408,1.0\n358,409,1.5\n358,410,2.0\n358,411,2.5\n358,412,3.0\n358,413,3.5\n358,414,4.0\n358,415,4.5\n358,416,5.0\n358,417,5.5\n358,418,6.0\n358,419,6.5\n358,420,7.0\n358,421,7.5\n358,422,8.0\n358,423,8.5\n358,424,9.0\n358,425,5.5\n358,426,5.0\n358,427,4.5\n358,428,4.0\n358,429,3.5\n358,430,3.0\n358,431,2.5\n358,432,2.0\n358,433,1.5\n358,434,2.0\n358,435,2.5\n358,436,3.0\n358,437,3.5\n358,438,4.0\n358,439,4.5\n358,440,5.0\n358,441,5.5\n358,442,6.0\n358,443,6.5\n358,444,7.0\n358,445,7.5\n358,446,8.0\n358,447,8.5\n358,448,9.0\n358,449,9.5\n358,450,6.0\n358,451,5.5\n358,452,5.0\n358,453,4.5\n358,454,4.0\n358,455,3.5\n358,456,3.0\n358,457,2.5\n358,458,2.0\n358,459,2.5\n358,460,3.0\n358,461,3.5\n358,462,4.0\n358,463,4.5\n358,464,5.0\n358,465,5.5\n358,466,6.0\n358,467,6.5\n358,468,7.0\n358,469,7.5\n358,470,8.0\n358,471,8.5\n358,472,9.0\n358,473,9.5\n358,474,10.0\n358,475,6.5\n358,476,6.0\n358,477,5.5\n358,478,5.0\n358,479,4.5\n358,480,4.0\n358,481,3.5\n358,482,3.0\n358,483,2.5\n358,484,3.0\n358,485,3.5\n358,486,4.0\n358,487,4.5\n358,488,5.0\n358,489,5.5\n358,490,6.0\n358,491,6.5\n358,492,7.0\n358,493,7.5\n358,494,8.0\n358,495,8.5\n358,496,9.0\n358,497,9.5\n358,498,10.0\n358,499,10.5\n358,500,7.0\n358,501,6.5\n358,502,6.0\n358,503,5.5\n358,504,5.0\n358,505,4.5\n358,506,4.0\n358,507,3.5\n358,508,3.0\n358,509,3.5\n358,510,4.0\n358,511,4.5\n358,512,5.0\n358,513,5.5\n358,514,6.0\n358,515,6.5\n358,516,7.0\n358,517,7.5\n358,518,8.0\n358,519,8.5\n358,520,9.0\n358,521,9.5\n358,522,10.0\n358,523,10.5\n358,524,11.0\n358,525,7.5\n358,526,7.0\n358,527,6.5\n358,528,6.0\n358,529,5.5\n358,530,5.0\n358,531,4.5\n358,532,4.0\n358,533,3.5\n358,534,4.0\n358,535,4.5\n358,536,5.0\n358,537,5.5\n358,538,6.0\n358,539,6.5\n358,540,7.0\n358,541,7.5\n358,542,8.0\n358,543,8.5\n358,544,9.0\n358,545,9.5\n358,546,10.0\n358,547,10.5\n358,548,11.0\n358,549,11.5\n358,550,8.0\n358,551,7.5\n358,552,7.0\n358,553,6.5\n358,554,6.0\n358,555,5.5\n358,556,5.0\n358,557,4.5\n358,558,4.0\n358,559,4.5\n358,560,5.0\n358,561,5.5\n358,562,6.0\n358,563,6.5\n358,564,7.0\n358,565,7.5\n358,566,8.0\n358,567,8.5\n358,568,9.0\n358,569,9.5\n358,570,10.0\n358,571,10.5\n358,572,11.0\n358,573,11.5\n358,574,12.0\n358,575,8.5\n358,576,8.0\n358,577,7.5\n358,578,7.0\n358,579,6.5\n358,580,6.0\n358,581,5.5\n358,582,5.0\n358,583,4.5\n358,584,5.0\n358,585,5.5\n358,586,6.0\n358,587,6.5\n358,588,7.0\n358,589,7.5\n358,590,8.0\n358,591,8.5\n358,592,9.0\n358,593,9.5\n358,594,10.0\n358,595,10.5\n358,596,11.0\n358,597,11.5\n358,598,12.0\n358,599,12.5\n358,600,9.0\n358,601,8.5\n358,602,8.0\n358,603,7.5\n358,604,7.0\n358,605,6.5\n358,606,6.0\n358,607,5.5\n358,608,5.0\n358,609,5.5\n358,610,6.0\n358,611,6.5\n358,612,7.0\n358,613,7.5\n358,614,8.0\n358,615,8.5\n358,616,9.0\n358,617,9.5\n358,618,10.0\n358,619,10.5\n358,620,11.0\n358,621,11.5\n358,622,12.0\n358,623,12.5\n358,624,13.0\n359,0,11.5\n359,1,11.0\n359,2,10.5\n359,3,10.0\n359,4,9.5\n359,5,9.0\n359,6,8.5\n359,7,8.0\n359,8,7.5\n359,9,7.0\n359,10,7.5\n359,11,8.0\n359,12,8.5\n359,13,9.0\n359,14,9.5\n359,15,10.0\n359,16,10.5\n359,17,11.0\n359,18,11.5\n359,19,12.0\n359,20,12.5\n359,21,13.0\n359,22,13.5\n359,23,14.0\n359,24,14.5\n359,25,11.0\n359,26,10.5\n359,27,10.0\n359,28,9.5\n359,29,9.0\n359,30,8.5\n359,31,8.0\n359,32,7.5\n359,33,7.0\n359,34,6.5\n359,35,7.0\n359,36,7.5\n359,37,8.0\n359,38,8.5\n359,39,9.0\n359,40,9.5\n359,41,10.0\n359,42,10.5\n359,43,11.0\n359,44,11.5\n359,45,12.0\n359,46,12.5\n359,47,13.0\n359,48,13.5\n359,49,14.0\n359,50,10.5\n359,51,10.0\n359,52,9.5\n359,53,9.0\n359,54,8.5\n359,55,8.0\n359,56,7.5\n359,57,7.0\n359,58,6.5\n359,59,6.0\n359,60,6.5\n359,61,7.0\n359,62,7.5\n359,63,8.0\n359,64,8.5\n359,65,9.0\n359,66,9.5\n359,67,10.0\n359,68,10.5\n359,69,11.0\n359,70,11.5\n359,71,12.0\n359,72,12.5\n359,73,13.0\n359,74,13.5\n359,75,10.0\n359,76,9.5\n359,77,9.0\n359,78,8.5\n359,79,8.0\n359,80,7.5\n359,81,7.0\n359,82,6.5\n359,83,6.0\n359,84,5.5\n359,85,6.0\n359,86,6.5\n359,87,7.0\n359,88,7.5\n359,89,8.0\n359,90,8.5\n359,91,9.0\n359,92,9.5\n359,93,10.0\n359,94,10.5\n359,95,11.0\n359,96,11.5\n359,97,12.0\n359,98,12.5\n359,99,13.0\n359,100,9.5\n359,101,9.0\n359,102,8.5\n359,103,8.0\n359,104,7.5\n359,105,7.0\n359,106,6.5\n359,107,6.0\n359,108,5.5\n359,109,5.0\n359,110,5.5\n359,111,6.0\n359,112,6.5\n359,113,7.0\n359,114,7.5\n359,115,8.0\n359,116,8.5\n359,117,9.0\n359,118,9.5\n359,119,10.0\n359,120,10.5\n359,121,11.0\n359,122,11.5\n359,123,12.0\n359,124,12.5\n359,125,9.0\n359,126,8.5\n359,127,8.0\n359,128,7.5\n359,129,7.0\n359,130,6.5\n359,131,6.0\n359,132,5.5\n359,133,5.0\n359,134,4.5\n359,135,5.0\n359,136,5.5\n359,137,6.0\n359,138,6.5\n359,139,7.0\n359,140,7.5\n359,141,8.0\n359,142,8.5\n359,143,9.0\n359,144,9.5\n359,145,10.0\n359,146,10.5\n359,147,11.0\n359,148,11.5\n359,149,12.0\n359,150,8.5\n359,151,8.0\n359,152,7.5\n359,153,7.0\n359,154,6.5\n359,155,6.0\n359,156,5.5\n359,157,5.0\n359,158,4.5\n359,159,4.0\n359,160,4.5\n359,161,5.0\n359,162,5.5\n359,163,6.0\n359,164,6.5\n359,165,7.0\n359,166,7.5\n359,167,8.0\n359,168,8.5\n359,169,9.0\n359,170,9.5\n359,171,10.0\n359,172,10.5\n359,173,11.0\n359,174,11.5\n359,175,8.0\n359,176,7.5\n359,177,7.0\n359,178,6.5\n359,179,6.0\n359,180,5.5\n359,181,5.0\n359,182,4.5\n359,183,4.0\n359,184,3.5\n359,185,4.0\n359,186,4.5\n359,187,5.0\n359,188,5.5\n359,189,6.0\n359,190,6.5\n359,191,7.0\n359,192,7.5\n359,193,8.0\n359,194,8.5\n359,195,9.0\n359,196,9.5\n359,197,10.0\n359,198,10.5\n359,199,11.0\n359,200,7.5\n359,201,7.0\n359,202,6.5\n359,203,6.0\n359,204,5.5\n359,205,5.0\n359,206,4.5\n359,207,4.0\n359,208,3.5\n359,209,3.0\n359,210,3.5\n359,211,4.0\n359,212,4.5\n359,213,5.0\n359,214,5.5\n359,215,6.0\n359,216,6.5\n359,217,7.0\n359,218,7.5\n359,219,8.0\n359,220,8.5\n359,221,9.0\n359,222,9.5\n359,223,10.0\n359,224,10.5\n359,225,7.0\n359,226,6.5\n359,227,6.0\n359,228,5.5\n359,229,5.0\n359,230,4.5\n359,231,4.0\n359,232,3.5\n359,233,3.0\n359,234,2.5\n359,235,3.0\n359,236,3.5\n359,237,4.0\n359,238,4.5\n359,239,5.0\n359,240,5.5\n359,241,6.0\n359,242,6.5\n359,243,7.0\n359,244,7.5\n359,245,8.0\n359,246,8.5\n359,247,9.0\n359,248,9.5\n359,249,10.0\n359,250,6.5\n359,251,6.0\n359,252,5.5\n359,253,5.0\n359,254,4.5\n359,255,4.0\n359,256,3.5\n359,257,3.0\n359,258,2.5\n359,259,2.0\n359,260,2.5\n359,261,3.0\n359,262,3.5\n359,263,4.0\n359,264,4.5\n359,265,5.0\n359,266,5.5\n359,267,6.0\n359,268,6.5\n359,269,7.0\n359,270,7.5\n359,271,8.0\n359,272,8.5\n359,273,9.0\n359,274,9.5\n359,275,6.0\n359,276,5.5\n359,277,5.0\n359,278,4.5\n359,279,4.0\n359,280,3.5\n359,281,3.0\n359,282,2.5\n359,283,2.0\n359,284,1.5\n359,285,2.0\n359,286,2.5\n359,287,3.0\n359,288,3.5\n359,289,4.0\n359,290,4.5\n359,291,5.0\n359,292,5.5\n359,293,6.0\n359,294,6.5\n359,295,7.0\n359,296,7.5\n359,297,8.0\n359,298,8.5\n359,299,9.0\n359,300,5.5\n359,301,5.0\n359,302,4.5\n359,303,4.0\n359,304,3.5\n359,305,3.0\n359,306,2.5\n359,307,2.0\n359,308,1.5\n359,309,1.0\n359,310,1.5\n359,311,2.0\n359,312,2.5\n359,313,3.0\n359,314,3.5\n359,315,4.0\n359,316,4.5\n359,317,5.0\n359,318,5.5\n359,319,6.0\n359,320,6.5\n359,321,7.0\n359,322,7.5\n359,323,8.0\n359,324,8.5\n359,325,5.0\n359,326,4.5\n359,327,4.0\n359,328,3.5\n359,329,3.0\n359,330,2.5\n359,331,2.0\n359,332,1.5\n359,333,1.0\n359,334,0.5\n359,335,1.0\n359,336,1.5\n359,337,2.0\n359,338,2.5\n359,339,3.0\n359,340,3.5\n359,341,4.0\n359,342,4.5\n359,343,5.0\n359,344,5.5\n359,345,6.0\n359,346,6.5\n359,347,7.0\n359,348,7.5\n359,349,8.0\n359,350,4.5\n359,351,4.0\n359,352,3.5\n359,353,3.0\n359,354,2.5\n359,355,2.0\n359,356,1.5\n359,357,1.0\n359,358,0.5\n359,359,0\n359,360,0.5\n359,361,1.0\n359,362,1.5\n359,363,2.0\n359,364,2.5\n359,365,3.0\n359,366,3.5\n359,367,4.0\n359,368,4.5\n359,369,5.0\n359,370,5.5\n359,371,6.0\n359,372,6.5\n359,373,7.0\n359,374,7.5\n359,375,5.0\n359,376,4.5\n359,377,4.0\n359,378,3.5\n359,379,3.0\n359,380,2.5\n359,381,2.0\n359,382,1.5\n359,383,1.0\n359,384,0.5\n359,385,1.0\n359,386,1.5\n359,387,2.0\n359,388,2.5\n359,389,3.0\n359,390,3.5\n359,391,4.0\n359,392,4.5\n359,393,5.0\n359,394,5.5\n359,395,6.0\n359,396,6.5\n359,397,7.0\n359,398,7.5\n359,399,8.0\n359,400,5.5\n359,401,5.0\n359,402,4.5\n359,403,4.0\n359,404,3.5\n359,405,3.0\n359,406,2.5\n359,407,2.0\n359,408,1.5\n359,409,1.0\n359,410,1.5\n359,411,2.0\n359,412,2.5\n359,413,3.0\n359,414,3.5\n359,415,4.0\n359,416,4.5\n359,417,5.0\n359,418,5.5\n359,419,6.0\n359,420,6.5\n359,421,7.0\n359,422,7.5\n359,423,8.0\n359,424,8.5\n359,425,6.0\n359,426,5.5\n359,427,5.0\n359,428,4.5\n359,429,4.0\n359,430,3.5\n359,431,3.0\n359,432,2.5\n359,433,2.0\n359,434,1.5\n359,435,2.0\n359,436,2.5\n359,437,3.0\n359,438,3.5\n359,439,4.0\n359,440,4.5\n359,441,5.0\n359,442,5.5\n359,443,6.0\n359,444,6.5\n359,445,7.0\n359,446,7.5\n359,447,8.0\n359,448,8.5\n359,449,9.0\n359,450,6.5\n359,451,6.0\n359,452,5.5\n359,453,5.0\n359,454,4.5\n359,455,4.0\n359,456,3.5\n359,457,3.0\n359,458,2.5\n359,459,2.0\n359,460,2.5\n359,461,3.0\n359,462,3.5\n359,463,4.0\n359,464,4.5\n359,465,5.0\n359,466,5.5\n359,467,6.0\n359,468,6.5\n359,469,7.0\n359,470,7.5\n359,471,8.0\n359,472,8.5\n359,473,9.0\n359,474,9.5\n359,475,7.0\n359,476,6.5\n359,477,6.0\n359,478,5.5\n359,479,5.0\n359,480,4.5\n359,481,4.0\n359,482,3.5\n359,483,3.0\n359,484,2.5\n359,485,3.0\n359,486,3.5\n359,487,4.0\n359,488,4.5\n359,489,5.0\n359,490,5.5\n359,491,6.0\n359,492,6.5\n359,493,7.0\n359,494,7.5\n359,495,8.0\n359,496,8.5\n359,497,9.0\n359,498,9.5\n359,499,10.0\n359,500,7.5\n359,501,7.0\n359,502,6.5\n359,503,6.0\n359,504,5.5\n359,505,5.0\n359,506,4.5\n359,507,4.0\n359,508,3.5\n359,509,3.0\n359,510,3.5\n359,511,4.0\n359,512,4.5\n359,513,5.0\n359,514,5.5\n359,515,6.0\n359,516,6.5\n359,517,7.0\n359,518,7.5\n359,519,8.0\n359,520,8.5\n359,521,9.0\n359,522,9.5\n359,523,10.0\n359,524,10.5\n359,525,8.0\n359,526,7.5\n359,527,7.0\n359,528,6.5\n359,529,6.0\n359,530,5.5\n359,531,5.0\n359,532,4.5\n359,533,4.0\n359,534,3.5\n359,535,4.0\n359,536,4.5\n359,537,5.0\n359,538,5.5\n359,539,6.0\n359,540,6.5\n359,541,7.0\n359,542,7.5\n359,543,8.0\n359,544,8.5\n359,545,9.0\n359,546,9.5\n359,547,10.0\n359,548,10.5\n359,549,11.0\n359,550,8.5\n359,551,8.0\n359,552,7.5\n359,553,7.0\n359,554,6.5\n359,555,6.0\n359,556,5.5\n359,557,5.0\n359,558,4.5\n359,559,4.0\n359,560,4.5\n359,561,5.0\n359,562,5.5\n359,563,6.0\n359,564,6.5\n359,565,7.0\n359,566,7.5\n359,567,8.0\n359,568,8.5\n359,569,9.0\n359,570,9.5\n359,571,10.0\n359,572,10.5\n359,573,11.0\n359,574,11.5\n359,575,9.0\n359,576,8.5\n359,577,8.0\n359,578,7.5\n359,579,7.0\n359,580,6.5\n359,581,6.0\n359,582,5.5\n359,583,5.0\n359,584,4.5\n359,585,5.0\n359,586,5.5\n359,587,6.0\n359,588,6.5\n359,589,7.0\n359,590,7.5\n359,591,8.0\n359,592,8.5\n359,593,9.0\n359,594,9.5\n359,595,10.0\n359,596,10.5\n359,597,11.0\n359,598,11.5\n359,599,12.0\n359,600,9.5\n359,601,9.0\n359,602,8.5\n359,603,8.0\n359,604,7.5\n359,605,7.0\n359,606,6.5\n359,607,6.0\n359,608,5.5\n359,609,5.0\n359,610,5.5\n359,611,6.0\n359,612,6.5\n359,613,7.0\n359,614,7.5\n359,615,8.0\n359,616,8.5\n359,617,9.0\n359,618,9.5\n359,619,10.0\n359,620,10.5\n359,621,11.0\n359,622,11.5\n359,623,12.0\n359,624,12.5\n360,0,12.0\n360,1,11.5\n360,2,11.0\n360,3,10.5\n360,4,10.0\n360,5,9.5\n360,6,9.0\n360,7,8.5\n360,8,8.0\n360,9,7.5\n360,10,7.0\n360,11,7.5\n360,12,8.0\n360,13,8.5\n360,14,9.0\n360,15,9.5\n360,16,10.0\n360,17,10.5\n360,18,11.0\n360,19,11.5\n360,20,12.0\n360,21,12.5\n360,22,13.0\n360,23,13.5\n360,24,14.0\n360,25,11.5\n360,26,11.0\n360,27,10.5\n360,28,10.0\n360,29,9.5\n360,30,9.0\n360,31,8.5\n360,32,8.0\n360,33,7.5\n360,34,7.0\n360,35,6.5\n360,36,7.0\n360,37,7.5\n360,38,8.0\n360,39,8.5\n360,40,9.0\n360,41,9.5\n360,42,10.0\n360,43,10.5\n360,44,11.0\n360,45,11.5\n360,46,12.0\n360,47,12.5\n360,48,13.0\n360,49,13.5\n360,50,11.0\n360,51,10.5\n360,52,10.0\n360,53,9.5\n360,54,9.0\n360,55,8.5\n360,56,8.0\n360,57,7.5\n360,58,7.0\n360,59,6.5\n360,60,6.0\n360,61,6.5\n360,62,7.0\n360,63,7.5\n360,64,8.0\n360,65,8.5\n360,66,9.0\n360,67,9.5\n360,68,10.0\n360,69,10.5\n360,70,11.0\n360,71,11.5\n360,72,12.0\n360,73,12.5\n360,74,13.0\n360,75,10.5\n360,76,10.0\n360,77,9.5\n360,78,9.0\n360,79,8.5\n360,80,8.0\n360,81,7.5\n360,82,7.0\n360,83,6.5\n360,84,6.0\n360,85,5.5\n360,86,6.0\n360,87,6.5\n360,88,7.0\n360,89,7.5\n360,90,8.0\n360,91,8.5\n360,92,9.0\n360,93,9.5\n360,94,10.0\n360,95,10.5\n360,96,11.0\n360,97,11.5\n360,98,12.0\n360,99,12.5\n360,100,10.0\n360,101,9.5\n360,102,9.0\n360,103,8.5\n360,104,8.0\n360,105,7.5\n360,106,7.0\n360,107,6.5\n360,108,6.0\n360,109,5.5\n360,110,5.0\n360,111,5.5\n360,112,6.0\n360,113,6.5\n360,114,7.0\n360,115,7.5\n360,116,8.0\n360,117,8.5\n360,118,9.0\n360,119,9.5\n360,120,10.0\n360,121,10.5\n360,122,11.0\n360,123,11.5\n360,124,12.0\n360,125,9.5\n360,126,9.0\n360,127,8.5\n360,128,8.0\n360,129,7.5\n360,130,7.0\n360,131,6.5\n360,132,6.0\n360,133,5.5\n360,134,5.0\n360,135,4.5\n360,136,5.0\n360,137,5.5\n360,138,6.0\n360,139,6.5\n360,140,7.0\n360,141,7.5\n360,142,8.0\n360,143,8.5\n360,144,9.0\n360,145,9.5\n360,146,10.0\n360,147,10.5\n360,148,11.0\n360,149,11.5\n360,150,9.0\n360,151,8.5\n360,152,8.0\n360,153,7.5\n360,154,7.0\n360,155,6.5\n360,156,6.0\n360,157,5.5\n360,158,5.0\n360,159,4.5\n360,160,4.0\n360,161,4.5\n360,162,5.0\n360,163,5.5\n360,164,6.0\n360,165,6.5\n360,166,7.0\n360,167,7.5\n360,168,8.0\n360,169,8.5\n360,170,9.0\n360,171,9.5\n360,172,10.0\n360,173,10.5\n360,174,11.0\n360,175,8.5\n360,176,8.0\n360,177,7.5\n360,178,7.0\n360,179,6.5\n360,180,6.0\n360,181,5.5\n360,182,5.0\n360,183,4.5\n360,184,4.0\n360,185,3.5\n360,186,4.0\n360,187,4.5\n360,188,5.0\n360,189,5.5\n360,190,6.0\n360,191,6.5\n360,192,7.0\n360,193,7.5\n360,194,8.0\n360,195,8.5\n360,196,9.0\n360,197,9.5\n360,198,10.0\n360,199,10.5\n360,200,8.0\n360,201,7.5\n360,202,7.0\n360,203,6.5\n360,204,6.0\n360,205,5.5\n360,206,5.0\n360,207,4.5\n360,208,4.0\n360,209,3.5\n360,210,3.0\n360,211,3.5\n360,212,4.0\n360,213,4.5\n360,214,5.0\n360,215,5.5\n360,216,6.0\n360,217,6.5\n360,218,7.0\n360,219,7.5\n360,220,8.0\n360,221,8.5\n360,222,9.0\n360,223,9.5\n360,224,10.0\n360,225,7.5\n360,226,7.0\n360,227,6.5\n360,228,6.0\n360,229,5.5\n360,230,5.0\n360,231,4.5\n360,232,4.0\n360,233,3.5\n360,234,3.0\n360,235,2.5\n360,236,3.0\n360,237,3.5\n360,238,4.0\n360,239,4.5\n360,240,5.0\n360,241,5.5\n360,242,6.0\n360,243,6.5\n360,244,7.0\n360,245,7.5\n360,246,8.0\n360,247,8.5\n360,248,9.0\n360,249,9.5\n360,250,7.0\n360,251,6.5\n360,252,6.0\n360,253,5.5\n360,254,5.0\n360,255,4.5\n360,256,4.0\n360,257,3.5\n360,258,3.0\n360,259,2.5\n360,260,2.0\n360,261,2.5\n360,262,3.0\n360,263,3.5\n360,264,4.0\n360,265,4.5\n360,266,5.0\n360,267,5.5\n360,268,6.0\n360,269,6.5\n360,270,7.0\n360,271,7.5\n360,272,8.0\n360,273,8.5\n360,274,9.0\n360,275,6.5\n360,276,6.0\n360,277,5.5\n360,278,5.0\n360,279,4.5\n360,280,4.0\n360,281,3.5\n360,282,3.0\n360,283,2.5\n360,284,2.0\n360,285,1.5\n360,286,2.0\n360,287,2.5\n360,288,3.0\n360,289,3.5\n360,290,4.0\n360,291,4.5\n360,292,5.0\n360,293,5.5\n360,294,6.0\n360,295,6.5\n360,296,7.0\n360,297,7.5\n360,298,8.0\n360,299,8.5\n360,300,6.0\n360,301,5.5\n360,302,5.0\n360,303,4.5\n360,304,4.0\n360,305,3.5\n360,306,3.0\n360,307,2.5\n360,308,2.0\n360,309,1.5\n360,310,1.0\n360,311,1.5\n360,312,2.0\n360,313,2.5\n360,314,3.0\n360,315,3.5\n360,316,4.0\n360,317,4.5\n360,318,5.0\n360,319,5.5\n360,320,6.0\n360,321,6.5\n360,322,7.0\n360,323,7.5\n360,324,8.0\n360,325,5.5\n360,326,5.0\n360,327,4.5\n360,328,4.0\n360,329,3.5\n360,330,3.0\n360,331,2.5\n360,332,2.0\n360,333,1.5\n360,334,1.0\n360,335,0.5\n360,336,1.0\n360,337,1.5\n360,338,2.0\n360,339,2.5\n360,340,3.0\n360,341,3.5\n360,342,4.0\n360,343,4.5\n360,344,5.0\n360,345,5.5\n360,346,6.0\n360,347,6.5\n360,348,7.0\n360,349,7.5\n360,350,5.0\n360,351,4.5\n360,352,4.0\n360,353,3.5\n360,354,3.0\n360,355,2.5\n360,356,2.0\n360,357,1.5\n360,358,1.0\n360,359,0.5\n360,360,0\n360,361,0.5\n360,362,1.0\n360,363,1.5\n360,364,2.0\n360,365,2.5\n360,366,3.0\n360,367,3.5\n360,368,4.0\n360,369,4.5\n360,370,5.0\n360,371,5.5\n360,372,6.0\n360,373,6.5\n360,374,7.0\n360,375,5.5\n360,376,5.0\n360,377,4.5\n360,378,4.0\n360,379,3.5\n360,380,3.0\n360,381,2.5\n360,382,2.0\n360,383,1.5\n360,384,1.0\n360,385,0.5\n360,386,1.0\n360,387,1.5\n360,388,2.0\n360,389,2.5\n360,390,3.0\n360,391,3.5\n360,392,4.0\n360,393,4.5\n360,394,5.0\n360,395,5.5\n360,396,6.0\n360,397,6.5\n360,398,7.0\n360,399,7.5\n360,400,6.0\n360,401,5.5\n360,402,5.0\n360,403,4.5\n360,404,4.0\n360,405,3.5\n360,406,3.0\n360,407,2.5\n360,408,2.0\n360,409,1.5\n360,410,1.0\n360,411,1.5\n360,412,2.0\n360,413,2.5\n360,414,3.0\n360,415,3.5\n360,416,4.0\n360,417,4.5\n360,418,5.0\n360,419,5.5\n360,420,6.0\n360,421,6.5\n360,422,7.0\n360,423,7.5\n360,424,8.0\n360,425,6.5\n360,426,6.0\n360,427,5.5\n360,428,5.0\n360,429,4.5\n360,430,4.0\n360,431,3.5\n360,432,3.0\n360,433,2.5\n360,434,2.0\n360,435,1.5\n360,436,2.0\n360,437,2.5\n360,438,3.0\n360,439,3.5\n360,440,4.0\n360,441,4.5\n360,442,5.0\n360,443,5.5\n360,444,6.0\n360,445,6.5\n360,446,7.0\n360,447,7.5\n360,448,8.0\n360,449,8.5\n360,450,7.0\n360,451,6.5\n360,452,6.0\n360,453,5.5\n360,454,5.0\n360,455,4.5\n360,456,4.0\n360,457,3.5\n360,458,3.0\n360,459,2.5\n360,460,2.0\n360,461,2.5\n360,462,3.0\n360,463,3.5\n360,464,4.0\n360,465,4.5\n360,466,5.0\n360,467,5.5\n360,468,6.0\n360,469,6.5\n360,470,7.0\n360,471,7.5\n360,472,8.0\n360,473,8.5\n360,474,9.0\n360,475,7.5\n360,476,7.0\n360,477,6.5\n360,478,6.0\n360,479,5.5\n360,480,5.0\n360,481,4.5\n360,482,4.0\n360,483,3.5\n360,484,3.0\n360,485,2.5\n360,486,3.0\n360,487,3.5\n360,488,4.0\n360,489,4.5\n360,490,5.0\n360,491,5.5\n360,492,6.0\n360,493,6.5\n360,494,7.0\n360,495,7.5\n360,496,8.0\n360,497,8.5\n360,498,9.0\n360,499,9.5\n360,500,8.0\n360,501,7.5\n360,502,7.0\n360,503,6.5\n360,504,6.0\n360,505,5.5\n360,506,5.0\n360,507,4.5\n360,508,4.0\n360,509,3.5\n360,510,3.0\n360,511,3.5\n360,512,4.0\n360,513,4.5\n360,514,5.0\n360,515,5.5\n360,516,6.0\n360,517,6.5\n360,518,7.0\n360,519,7.5\n360,520,8.0\n360,521,8.5\n360,522,9.0\n360,523,9.5\n360,524,10.0\n360,525,8.5\n360,526,8.0\n360,527,7.5\n360,528,7.0\n360,529,6.5\n360,530,6.0\n360,531,5.5\n360,532,5.0\n360,533,4.5\n360,534,4.0\n360,535,3.5\n360,536,4.0\n360,537,4.5\n360,538,5.0\n360,539,5.5\n360,540,6.0\n360,541,6.5\n360,542,7.0\n360,543,7.5\n360,544,8.0\n360,545,8.5\n360,546,9.0\n360,547,9.5\n360,548,10.0\n360,549,10.5\n360,550,9.0\n360,551,8.5\n360,552,8.0\n360,553,7.5\n360,554,7.0\n360,555,6.5\n360,556,6.0\n360,557,5.5\n360,558,5.0\n360,559,4.5\n360,560,4.0\n360,561,4.5\n360,562,5.0\n360,563,5.5\n360,564,6.0\n360,565,6.5\n360,566,7.0\n360,567,7.5\n360,568,8.0\n360,569,8.5\n360,570,9.0\n360,571,9.5\n360,572,10.0\n360,573,10.5\n360,574,11.0\n360,575,9.5\n360,576,9.0\n360,577,8.5\n360,578,8.0\n360,579,7.5\n360,580,7.0\n360,581,6.5\n360,582,6.0\n360,583,5.5\n360,584,5.0\n360,585,4.5\n360,586,5.0\n360,587,5.5\n360,588,6.0\n360,589,6.5\n360,590,7.0\n360,591,7.5\n360,592,8.0\n360,593,8.5\n360,594,9.0\n360,595,9.5\n360,596,10.0\n360,597,10.5\n360,598,11.0\n360,599,11.5\n360,600,10.0\n360,601,9.5\n360,602,9.0\n360,603,8.5\n360,604,8.0\n360,605,7.5\n360,606,7.0\n360,607,6.5\n360,608,6.0\n360,609,5.5\n360,610,5.0\n360,611,5.5\n360,612,6.0\n360,613,6.5\n360,614,7.0\n360,615,7.5\n360,616,8.0\n360,617,8.5\n360,618,9.0\n360,619,9.5\n360,620,10.0\n360,621,10.5\n360,622,11.0\n360,623,11.5\n360,624,12.0\n361,0,12.5\n361,1,12.0\n361,2,11.5\n361,3,11.0\n361,4,10.5\n361,5,10.0\n361,6,9.5\n361,7,9.0\n361,8,8.5\n361,9,8.0\n361,10,7.5\n361,11,7.0\n361,12,7.5\n361,13,8.0\n361,14,8.5\n361,15,9.0\n361,16,9.5\n361,17,10.0\n361,18,10.5\n361,19,11.0\n361,20,11.5\n361,21,12.0\n361,22,12.5\n361,23,13.0\n361,24,13.5\n361,25,12.0\n361,26,11.5\n361,27,11.0\n361,28,10.5\n361,29,10.0\n361,30,9.5\n361,31,9.0\n361,32,8.5\n361,33,8.0\n361,34,7.5\n361,35,7.0\n361,36,6.5\n361,37,7.0\n361,38,7.5\n361,39,8.0\n361,40,8.5\n361,41,9.0\n361,42,9.5\n361,43,10.0\n361,44,10.5\n361,45,11.0\n361,46,11.5\n361,47,12.0\n361,48,12.5\n361,49,13.0\n361,50,11.5\n361,51,11.0\n361,52,10.5\n361,53,10.0\n361,54,9.5\n361,55,9.0\n361,56,8.5\n361,57,8.0\n361,58,7.5\n361,59,7.0\n361,60,6.5\n361,61,6.0\n361,62,6.5\n361,63,7.0\n361,64,7.5\n361,65,8.0\n361,66,8.5\n361,67,9.0\n361,68,9.5\n361,69,10.0\n361,70,10.5\n361,71,11.0\n361,72,11.5\n361,73,12.0\n361,74,12.5\n361,75,11.0\n361,76,10.5\n361,77,10.0\n361,78,9.5\n361,79,9.0\n361,80,8.5\n361,81,8.0\n361,82,7.5\n361,83,7.0\n361,84,6.5\n361,85,6.0\n361,86,5.5\n361,87,6.0\n361,88,6.5\n361,89,7.0\n361,90,7.5\n361,91,8.0\n361,92,8.5\n361,93,9.0\n361,94,9.5\n361,95,10.0\n361,96,10.5\n361,97,11.0\n361,98,11.5\n361,99,12.0\n361,100,10.5\n361,101,10.0\n361,102,9.5\n361,103,9.0\n361,104,8.5\n361,105,8.0\n361,106,7.5\n361,107,7.0\n361,108,6.5\n361,109,6.0\n361,110,5.5\n361,111,5.0\n361,112,5.5\n361,113,6.0\n361,114,6.5\n361,115,7.0\n361,116,7.5\n361,117,8.0\n361,118,8.5\n361,119,9.0\n361,120,9.5\n361,121,10.0\n361,122,10.5\n361,123,11.0\n361,124,11.5\n361,125,10.0\n361,126,9.5\n361,127,9.0\n361,128,8.5\n361,129,8.0\n361,130,7.5\n361,131,7.0\n361,132,6.5\n361,133,6.0\n361,134,5.5\n361,135,5.0\n361,136,4.5\n361,137,5.0\n361,138,5.5\n361,139,6.0\n361,140,6.5\n361,141,7.0\n361,142,7.5\n361,143,8.0\n361,144,8.5\n361,145,9.0\n361,146,9.5\n361,147,10.0\n361,148,10.5\n361,149,11.0\n361,150,9.5\n361,151,9.0\n361,152,8.5\n361,153,8.0\n361,154,7.5\n361,155,7.0\n361,156,6.5\n361,157,6.0\n361,158,5.5\n361,159,5.0\n361,160,4.5\n361,161,4.0\n361,162,4.5\n361,163,5.0\n361,164,5.5\n361,165,6.0\n361,166,6.5\n361,167,7.0\n361,168,7.5\n361,169,8.0\n361,170,8.5\n361,171,9.0\n361,172,9.5\n361,173,10.0\n361,174,10.5\n361,175,9.0\n361,176,8.5\n361,177,8.0\n361,178,7.5\n361,179,7.0\n361,180,6.5\n361,181,6.0\n361,182,5.5\n361,183,5.0\n361,184,4.5\n361,185,4.0\n361,186,3.5\n361,187,4.0\n361,188,4.5\n361,189,5.0\n361,190,5.5\n361,191,6.0\n361,192,6.5\n361,193,7.0\n361,194,7.5\n361,195,8.0\n361,196,8.5\n361,197,9.0\n361,198,9.5\n361,199,10.0\n361,200,8.5\n361,201,8.0\n361,202,7.5\n361,203,7.0\n361,204,6.5\n361,205,6.0\n361,206,5.5\n361,207,5.0\n361,208,4.5\n361,209,4.0\n361,210,3.5\n361,211,3.0\n361,212,3.5\n361,213,4.0\n361,214,4.5\n361,215,5.0\n361,216,5.5\n361,217,6.0\n361,218,6.5\n361,219,7.0\n361,220,7.5\n361,221,8.0\n361,222,8.5\n361,223,9.0\n361,224,9.5\n361,225,8.0\n361,226,7.5\n361,227,7.0\n361,228,6.5\n361,229,6.0\n361,230,5.5\n361,231,5.0\n361,232,4.5\n361,233,4.0\n361,234,3.5\n361,235,3.0\n361,236,2.5\n361,237,3.0\n361,238,3.5\n361,239,4.0\n361,240,4.5\n361,241,5.0\n361,242,5.5\n361,243,6.0\n361,244,6.5\n361,245,7.0\n361,246,7.5\n361,247,8.0\n361,248,8.5\n361,249,9.0\n361,250,7.5\n361,251,7.0\n361,252,6.5\n361,253,6.0\n361,254,5.5\n361,255,5.0\n361,256,4.5\n361,257,4.0\n361,258,3.5\n361,259,3.0\n361,260,2.5\n361,261,2.0\n361,262,2.5\n361,263,3.0\n361,264,3.5\n361,265,4.0\n361,266,4.5\n361,267,5.0\n361,268,5.5\n361,269,6.0\n361,270,6.5\n361,271,7.0\n361,272,7.5\n361,273,8.0\n361,274,8.5\n361,275,7.0\n361,276,6.5\n361,277,6.0\n361,278,5.5\n361,279,5.0\n361,280,4.5\n361,281,4.0\n361,282,3.5\n361,283,3.0\n361,284,2.5\n361,285,2.0\n361,286,1.5\n361,287,2.0\n361,288,2.5\n361,289,3.0\n361,290,3.5\n361,291,4.0\n361,292,4.5\n361,293,5.0\n361,294,5.5\n361,295,6.0\n361,296,6.5\n361,297,7.0\n361,298,7.5\n361,299,8.0\n361,300,6.5\n361,301,6.0\n361,302,5.5\n361,303,5.0\n361,304,4.5\n361,305,4.0\n361,306,3.5\n361,307,3.0\n361,308,2.5\n361,309,2.0\n361,310,1.5\n361,311,1.0\n361,312,1.5\n361,313,2.0\n361,314,2.5\n361,315,3.0\n361,316,3.5\n361,317,4.0\n361,318,4.5\n361,319,5.0\n361,320,5.5\n361,321,6.0\n361,322,6.5\n361,323,7.0\n361,324,7.5\n361,325,6.0\n361,326,5.5\n361,327,5.0\n361,328,4.5\n361,329,4.0\n361,330,3.5\n361,331,3.0\n361,332,2.5\n361,333,2.0\n361,334,1.5\n361,335,1.0\n361,336,0.5\n361,337,1.0\n361,338,1.5\n361,339,2.0\n361,340,2.5\n361,341,3.0\n361,342,3.5\n361,343,4.0\n361,344,4.5\n361,345,5.0\n361,346,5.5\n361,347,6.0\n361,348,6.5\n361,349,7.0\n361,350,5.5\n361,351,5.0\n361,352,4.5\n361,353,4.0\n361,354,3.5\n361,355,3.0\n361,356,2.5\n361,357,2.0\n361,358,1.5\n361,359,1.0\n361,360,0.5\n361,361,0\n361,362,0.5\n361,363,1.0\n361,364,1.5\n361,365,2.0\n361,366,2.5\n361,367,3.0\n361,368,3.5\n361,369,4.0\n361,370,4.5\n361,371,5.0\n361,372,5.5\n361,373,6.0\n361,374,6.5\n361,375,6.0\n361,376,5.5\n361,377,5.0\n361,378,4.5\n361,379,4.0\n361,380,3.5\n361,381,3.0\n361,382,2.5\n361,383,2.0\n361,384,1.5\n361,385,1.0\n361,386,0.5\n361,387,1.0\n361,388,1.5\n361,389,2.0\n361,390,2.5\n361,391,3.0\n361,392,3.5\n361,393,4.0\n361,394,4.5\n361,395,5.0\n361,396,5.5\n361,397,6.0\n361,398,6.5\n361,399,7.0\n361,400,6.5\n361,401,6.0\n361,402,5.5\n361,403,5.0\n361,404,4.5\n361,405,4.0\n361,406,3.5\n361,407,3.0\n361,408,2.5\n361,409,2.0\n361,410,1.5\n361,411,1.0\n361,412,1.5\n361,413,2.0\n361,414,2.5\n361,415,3.0\n361,416,3.5\n361,417,4.0\n361,418,4.5\n361,419,5.0\n361,420,5.5\n361,421,6.0\n361,422,6.5\n361,423,7.0\n361,424,7.5\n361,425,7.0\n361,426,6.5\n361,427,6.0\n361,428,5.5\n361,429,5.0\n361,430,4.5\n361,431,4.0\n361,432,3.5\n361,433,3.0\n361,434,2.5\n361,435,2.0\n361,436,1.5\n361,437,2.0\n361,438,2.5\n361,439,3.0\n361,440,3.5\n361,441,4.0\n361,442,4.5\n361,443,5.0\n361,444,5.5\n361,445,6.0\n361,446,6.5\n361,447,7.0\n361,448,7.5\n361,449,8.0\n361,450,7.5\n361,451,7.0\n361,452,6.5\n361,453,6.0\n361,454,5.5\n361,455,5.0\n361,456,4.5\n361,457,4.0\n361,458,3.5\n361,459,3.0\n361,460,2.5\n361,461,2.0\n361,462,2.5\n361,463,3.0\n361,464,3.5\n361,465,4.0\n361,466,4.5\n361,467,5.0\n361,468,5.5\n361,469,6.0\n361,470,6.5\n361,471,7.0\n361,472,7.5\n361,473,8.0\n361,474,8.5\n361,475,8.0\n361,476,7.5\n361,477,7.0\n361,478,6.5\n361,479,6.0\n361,480,5.5\n361,481,5.0\n361,482,4.5\n361,483,4.0\n361,484,3.5\n361,485,3.0\n361,486,2.5\n361,487,3.0\n361,488,3.5\n361,489,4.0\n361,490,4.5\n361,491,5.0\n361,492,5.5\n361,493,6.0\n361,494,6.5\n361,495,7.0\n361,496,7.5\n361,497,8.0\n361,498,8.5\n361,499,9.0\n361,500,8.5\n361,501,8.0\n361,502,7.5\n361,503,7.0\n361,504,6.5\n361,505,6.0\n361,506,5.5\n361,507,5.0\n361,508,4.5\n361,509,4.0\n361,510,3.5\n361,511,3.0\n361,512,3.5\n361,513,4.0\n361,514,4.5\n361,515,5.0\n361,516,5.5\n361,517,6.0\n361,518,6.5\n361,519,7.0\n361,520,7.5\n361,521,8.0\n361,522,8.5\n361,523,9.0\n361,524,9.5\n361,525,9.0\n361,526,8.5\n361,527,8.0\n361,528,7.5\n361,529,7.0\n361,530,6.5\n361,531,6.0\n361,532,5.5\n361,533,5.0\n361,534,4.5\n361,535,4.0\n361,536,3.5\n361,537,4.0\n361,538,4.5\n361,539,5.0\n361,540,5.5\n361,541,6.0\n361,542,6.5\n361,543,7.0\n361,544,7.5\n361,545,8.0\n361,546,8.5\n361,547,9.0\n361,548,9.5\n361,549,10.0\n361,550,9.5\n361,551,9.0\n361,552,8.5\n361,553,8.0\n361,554,7.5\n361,555,7.0\n361,556,6.5\n361,557,6.0\n361,558,5.5\n361,559,5.0\n361,560,4.5\n361,561,4.0\n361,562,4.5\n361,563,5.0\n361,564,5.5\n361,565,6.0\n361,566,6.5\n361,567,7.0\n361,568,7.5\n361,569,8.0\n361,570,8.5\n361,571,9.0\n361,572,9.5\n361,573,10.0\n361,574,10.5\n361,575,10.0\n361,576,9.5\n361,577,9.0\n361,578,8.5\n361,579,8.0\n361,580,7.5\n361,581,7.0\n361,582,6.5\n361,583,6.0\n361,584,5.5\n361,585,5.0\n361,586,4.5\n361,587,5.0\n361,588,5.5\n361,589,6.0\n361,590,6.5\n361,591,7.0\n361,592,7.5\n361,593,8.0\n361,594,8.5\n361,595,9.0\n361,596,9.5\n361,597,10.0\n361,598,10.5\n361,599,11.0\n361,600,10.5\n361,601,10.0\n361,602,9.5\n361,603,9.0\n361,604,8.5\n361,605,8.0\n361,606,7.5\n361,607,7.0\n361,608,6.5\n361,609,6.0\n361,610,5.5\n361,611,5.0\n361,612,5.5\n361,613,6.0\n361,614,6.5\n361,615,7.0\n361,616,7.5\n361,617,8.0\n361,618,8.5\n361,619,9.0\n361,620,9.5\n361,621,10.0\n361,622,10.5\n361,623,11.0\n361,624,11.5\n362,0,13.0\n362,1,12.5\n362,2,12.0\n362,3,11.5\n362,4,11.0\n362,5,10.5\n362,6,10.0\n362,7,9.5\n362,8,9.0\n362,9,8.5\n362,10,8.0\n362,11,7.5\n362,12,7.0\n362,13,7.5\n362,14,8.0\n362,15,8.5\n362,16,9.0\n362,17,9.5\n362,18,10.0\n362,19,10.5\n362,20,11.0\n362,21,11.5\n362,22,12.0\n362,23,12.5\n362,24,13.0\n362,25,12.5\n362,26,12.0\n362,27,11.5\n362,28,11.0\n362,29,10.5\n362,30,10.0\n362,31,9.5\n362,32,9.0\n362,33,8.5\n362,34,8.0\n362,35,7.5\n362,36,7.0\n362,37,6.5\n362,38,7.0\n362,39,7.5\n362,40,8.0\n362,41,8.5\n362,42,9.0\n362,43,9.5\n362,44,10.0\n362,45,10.5\n362,46,11.0\n362,47,11.5\n362,48,12.0\n362,49,12.5\n362,50,12.0\n362,51,11.5\n362,52,11.0\n362,53,10.5\n362,54,10.0\n362,55,9.5\n362,56,9.0\n362,57,8.5\n362,58,8.0\n362,59,7.5\n362,60,7.0\n362,61,6.5\n362,62,6.0\n362,63,6.5\n362,64,7.0\n362,65,7.5\n362,66,8.0\n362,67,8.5\n362,68,9.0\n362,69,9.5\n362,70,10.0\n362,71,10.5\n362,72,11.0\n362,73,11.5\n362,74,12.0\n362,75,11.5\n362,76,11.0\n362,77,10.5\n362,78,10.0\n362,79,9.5\n362,80,9.0\n362,81,8.5\n362,82,8.0\n362,83,7.5\n362,84,7.0\n362,85,6.5\n362,86,6.0\n362,87,5.5\n362,88,6.0\n362,89,6.5\n362,90,7.0\n362,91,7.5\n362,92,8.0\n362,93,8.5\n362,94,9.0\n362,95,9.5\n362,96,10.0\n362,97,10.5\n362,98,11.0\n362,99,11.5\n362,100,11.0\n362,101,10.5\n362,102,10.0\n362,103,9.5\n362,104,9.0\n362,105,8.5\n362,106,8.0\n362,107,7.5\n362,108,7.0\n362,109,6.5\n362,110,6.0\n362,111,5.5\n362,112,5.0\n362,113,5.5\n362,114,6.0\n362,115,6.5\n362,116,7.0\n362,117,7.5\n362,118,8.0\n362,119,8.5\n362,120,9.0\n362,121,9.5\n362,122,10.0\n362,123,10.5\n362,124,11.0\n362,125,10.5\n362,126,10.0\n362,127,9.5\n362,128,9.0\n362,129,8.5\n362,130,8.0\n362,131,7.5\n362,132,7.0\n362,133,6.5\n362,134,6.0\n362,135,5.5\n362,136,5.0\n362,137,4.5\n362,138,5.0\n362,139,5.5\n362,140,6.0\n362,141,6.5\n362,142,7.0\n362,143,7.5\n362,144,8.0\n362,145,8.5\n362,146,9.0\n362,147,9.5\n362,148,10.0\n362,149,10.5\n362,150,10.0\n362,151,9.5\n362,152,9.0\n362,153,8.5\n362,154,8.0\n362,155,7.5\n362,156,7.0\n362,157,6.5\n362,158,6.0\n362,159,5.5\n362,160,5.0\n362,161,4.5\n362,162,4.0\n362,163,4.5\n362,164,5.0\n362,165,5.5\n362,166,6.0\n362,167,6.5\n362,168,7.0\n362,169,7.5\n362,170,8.0\n362,171,8.5\n362,172,9.0\n362,173,9.5\n362,174,10.0\n362,175,9.5\n362,176,9.0\n362,177,8.5\n362,178,8.0\n362,179,7.5\n362,180,7.0\n362,181,6.5\n362,182,6.0\n362,183,5.5\n362,184,5.0\n362,185,4.5\n362,186,4.0\n362,187,3.5\n362,188,4.0\n362,189,4.5\n362,190,5.0\n362,191,5.5\n362,192,6.0\n362,193,6.5\n362,194,7.0\n362,195,7.5\n362,196,8.0\n362,197,8.5\n362,198,9.0\n362,199,9.5\n362,200,9.0\n362,201,8.5\n362,202,8.0\n362,203,7.5\n362,204,7.0\n362,205,6.5\n362,206,6.0\n362,207,5.5\n362,208,5.0\n362,209,4.5\n362,210,4.0\n362,211,3.5\n362,212,3.0\n362,213,3.5\n362,214,4.0\n362,215,4.5\n362,216,5.0\n362,217,5.5\n362,218,6.0\n362,219,6.5\n362,220,7.0\n362,221,7.5\n362,222,8.0\n362,223,8.5\n362,224,9.0\n362,225,8.5\n362,226,8.0\n362,227,7.5\n362,228,7.0\n362,229,6.5\n362,230,6.0\n362,231,5.5\n362,232,5.0\n362,233,4.5\n362,234,4.0\n362,235,3.5\n362,236,3.0\n362,237,2.5\n362,238,3.0\n362,239,3.5\n362,240,4.0\n362,241,4.5\n362,242,5.0\n362,243,5.5\n362,244,6.0\n362,245,6.5\n362,246,7.0\n362,247,7.5\n362,248,8.0\n362,249,8.5\n362,250,8.0\n362,251,7.5\n362,252,7.0\n362,253,6.5\n362,254,6.0\n362,255,5.5\n362,256,5.0\n362,257,4.5\n362,258,4.0\n362,259,3.5\n362,260,3.0\n362,261,2.5\n362,262,2.0\n362,263,2.5\n362,264,3.0\n362,265,3.5\n362,266,4.0\n362,267,4.5\n362,268,5.0\n362,269,5.5\n362,270,6.0\n362,271,6.5\n362,272,7.0\n362,273,7.5\n362,274,8.0\n362,275,7.5\n362,276,7.0\n362,277,6.5\n362,278,6.0\n362,279,5.5\n362,280,5.0\n362,281,4.5\n362,282,4.0\n362,283,3.5\n362,284,3.0\n362,285,2.5\n362,286,2.0\n362,287,1.5\n362,288,2.0\n362,289,2.5\n362,290,3.0\n362,291,3.5\n362,292,4.0\n362,293,4.5\n362,294,5.0\n362,295,5.5\n362,296,6.0\n362,297,6.5\n362,298,7.0\n362,299,7.5\n362,300,7.0\n362,301,6.5\n362,302,6.0\n362,303,5.5\n362,304,5.0\n362,305,4.5\n362,306,4.0\n362,307,3.5\n362,308,3.0\n362,309,2.5\n362,310,2.0\n362,311,1.5\n362,312,1.0\n362,313,1.5\n362,314,2.0\n362,315,2.5\n362,316,3.0\n362,317,3.5\n362,318,4.0\n362,319,4.5\n362,320,5.0\n362,321,5.5\n362,322,6.0\n362,323,6.5\n362,324,7.0\n362,325,6.5\n362,326,6.0\n362,327,5.5\n362,328,5.0\n362,329,4.5\n362,330,4.0\n362,331,3.5\n362,332,3.0\n362,333,2.5\n362,334,2.0\n362,335,1.5\n362,336,1.0\n362,337,0.5\n362,338,1.0\n362,339,1.5\n362,340,2.0\n362,341,2.5\n362,342,3.0\n362,343,3.5\n362,344,4.0\n362,345,4.5\n362,346,5.0\n362,347,5.5\n362,348,6.0\n362,349,6.5\n362,350,6.0\n362,351,5.5\n362,352,5.0\n362,353,4.5\n362,354,4.0\n362,355,3.5\n362,356,3.0\n362,357,2.5\n362,358,2.0\n362,359,1.5\n362,360,1.0\n362,361,0.5\n362,362,0\n362,363,0.5\n362,364,1.0\n362,365,1.5\n362,366,2.0\n362,367,2.5\n362,368,3.0\n362,369,3.5\n362,370,4.0\n362,371,4.5\n362,372,5.0\n362,373,5.5\n362,374,6.0\n362,375,6.5\n362,376,6.0\n362,377,5.5\n362,378,5.0\n362,379,4.5\n362,380,4.0\n362,381,3.5\n362,382,3.0\n362,383,2.5\n362,384,2.0\n362,385,1.5\n362,386,1.0\n362,387,0.5\n362,388,1.0\n362,389,1.5\n362,390,2.0\n362,391,2.5\n362,392,3.0\n362,393,3.5\n362,394,4.0\n362,395,4.5\n362,396,5.0\n362,397,5.5\n362,398,6.0\n362,399,6.5\n362,400,7.0\n362,401,6.5\n362,402,6.0\n362,403,5.5\n362,404,5.0\n362,405,4.5\n362,406,4.0\n362,407,3.5\n362,408,3.0\n362,409,2.5\n362,410,2.0\n362,411,1.5\n362,412,1.0\n362,413,1.5\n362,414,2.0\n362,415,2.5\n362,416,3.0\n362,417,3.5\n362,418,4.0\n362,419,4.5\n362,420,5.0\n362,421,5.5\n362,422,6.0\n362,423,6.5\n362,424,7.0\n362,425,7.5\n362,426,7.0\n362,427,6.5\n362,428,6.0\n362,429,5.5\n362,430,5.0\n362,431,4.5\n362,432,4.0\n362,433,3.5\n362,434,3.0\n362,435,2.5\n362,436,2.0\n362,437,1.5\n362,438,2.0\n362,439,2.5\n362,440,3.0\n362,441,3.5\n362,442,4.0\n362,443,4.5\n362,444,5.0\n362,445,5.5\n362,446,6.0\n362,447,6.5\n362,448,7.0\n362,449,7.5\n362,450,8.0\n362,451,7.5\n362,452,7.0\n362,453,6.5\n362,454,6.0\n362,455,5.5\n362,456,5.0\n362,457,4.5\n362,458,4.0\n362,459,3.5\n362,460,3.0\n362,461,2.5\n362,462,2.0\n362,463,2.5\n362,464,3.0\n362,465,3.5\n362,466,4.0\n362,467,4.5\n362,468,5.0\n362,469,5.5\n362,470,6.0\n362,471,6.5\n362,472,7.0\n362,473,7.5\n362,474,8.0\n362,475,8.5\n362,476,8.0\n362,477,7.5\n362,478,7.0\n362,479,6.5\n362,480,6.0\n362,481,5.5\n362,482,5.0\n362,483,4.5\n362,484,4.0\n362,485,3.5\n362,486,3.0\n362,487,2.5\n362,488,3.0\n362,489,3.5\n362,490,4.0\n362,491,4.5\n362,492,5.0\n362,493,5.5\n362,494,6.0\n362,495,6.5\n362,496,7.0\n362,497,7.5\n362,498,8.0\n362,499,8.5\n362,500,9.0\n362,501,8.5\n362,502,8.0\n362,503,7.5\n362,504,7.0\n362,505,6.5\n362,506,6.0\n362,507,5.5\n362,508,5.0\n362,509,4.5\n362,510,4.0\n362,511,3.5\n362,512,3.0\n362,513,3.5\n362,514,4.0\n362,515,4.5\n362,516,5.0\n362,517,5.5\n362,518,6.0\n362,519,6.5\n362,520,7.0\n362,521,7.5\n362,522,8.0\n362,523,8.5\n362,524,9.0\n362,525,9.5\n362,526,9.0\n362,527,8.5\n362,528,8.0\n362,529,7.5\n362,530,7.0\n362,531,6.5\n362,532,6.0\n362,533,5.5\n362,534,5.0\n362,535,4.5\n362,536,4.0\n362,537,3.5\n362,538,4.0\n362,539,4.5\n362,540,5.0\n362,541,5.5\n362,542,6.0\n362,543,6.5\n362,544,7.0\n362,545,7.5\n362,546,8.0\n362,547,8.5\n362,548,9.0\n362,549,9.5\n362,550,10.0\n362,551,9.5\n362,552,9.0\n362,553,8.5\n362,554,8.0\n362,555,7.5\n362,556,7.0\n362,557,6.5\n362,558,6.0\n362,559,5.5\n362,560,5.0\n362,561,4.5\n362,562,4.0\n362,563,4.5\n362,564,5.0\n362,565,5.5\n362,566,6.0\n362,567,6.5\n362,568,7.0\n362,569,7.5\n362,570,8.0\n362,571,8.5\n362,572,9.0\n362,573,9.5\n362,574,10.0\n362,575,10.5\n362,576,10.0\n362,577,9.5\n362,578,9.0\n362,579,8.5\n362,580,8.0\n362,581,7.5\n362,582,7.0\n362,583,6.5\n362,584,6.0\n362,585,5.5\n362,586,5.0\n362,587,4.5\n362,588,5.0\n362,589,5.5\n362,590,6.0\n362,591,6.5\n362,592,7.0\n362,593,7.5\n362,594,8.0\n362,595,8.5\n362,596,9.0\n362,597,9.5\n362,598,10.0\n362,599,10.5\n362,600,11.0\n362,601,10.5\n362,602,10.0\n362,603,9.5\n362,604,9.0\n362,605,8.5\n362,606,8.0\n362,607,7.5\n362,608,7.0\n362,609,6.5\n362,610,6.0\n362,611,5.5\n362,612,5.0\n362,613,5.5\n362,614,6.0\n362,615,6.5\n362,616,7.0\n362,617,7.5\n362,618,8.0\n362,619,8.5\n362,620,9.0\n362,621,9.5\n362,622,10.0\n362,623,10.5\n362,624,11.0\n363,0,13.5\n363,1,13.0\n363,2,12.5\n363,3,12.0\n363,4,11.5\n363,5,11.0\n363,6,10.5\n363,7,10.0\n363,8,9.5\n363,9,9.0\n363,10,8.5\n363,11,8.0\n363,12,7.5\n363,13,7.0\n363,14,7.5\n363,15,8.0\n363,16,8.5\n363,17,9.0\n363,18,9.5\n363,19,10.0\n363,20,10.5\n363,21,11.0\n363,22,11.5\n363,23,12.0\n363,24,12.5\n363,25,13.0\n363,26,12.5\n363,27,12.0\n363,28,11.5\n363,29,11.0\n363,30,10.5\n363,31,10.0\n363,32,9.5\n363,33,9.0\n363,34,8.5\n363,35,8.0\n363,36,7.5\n363,37,7.0\n363,38,6.5\n363,39,7.0\n363,40,7.5\n363,41,8.0\n363,42,8.5\n363,43,9.0\n363,44,9.5\n363,45,10.0\n363,46,10.5\n363,47,11.0\n363,48,11.5\n363,49,12.0\n363,50,12.5\n363,51,12.0\n363,52,11.5\n363,53,11.0\n363,54,10.5\n363,55,10.0\n363,56,9.5\n363,57,9.0\n363,58,8.5\n363,59,8.0\n363,60,7.5\n363,61,7.0\n363,62,6.5\n363,63,6.0\n363,64,6.5\n363,65,7.0\n363,66,7.5\n363,67,8.0\n363,68,8.5\n363,69,9.0\n363,70,9.5\n363,71,10.0\n363,72,10.5\n363,73,11.0\n363,74,11.5\n363,75,12.0\n363,76,11.5\n363,77,11.0\n363,78,10.5\n363,79,10.0\n363,80,9.5\n363,81,9.0\n363,82,8.5\n363,83,8.0\n363,84,7.5\n363,85,7.0\n363,86,6.5\n363,87,6.0\n363,88,5.5\n363,89,6.0\n363,90,6.5\n363,91,7.0\n363,92,7.5\n363,93,8.0\n363,94,8.5\n363,95,9.0\n363,96,9.5\n363,97,10.0\n363,98,10.5\n363,99,11.0\n363,100,11.5\n363,101,11.0\n363,102,10.5\n363,103,10.0\n363,104,9.5\n363,105,9.0\n363,106,8.5\n363,107,8.0\n363,108,7.5\n363,109,7.0\n363,110,6.5\n363,111,6.0\n363,112,5.5\n363,113,5.0\n363,114,5.5\n363,115,6.0\n363,116,6.5\n363,117,7.0\n363,118,7.5\n363,119,8.0\n363,120,8.5\n363,121,9.0\n363,122,9.5\n363,123,10.0\n363,124,10.5\n363,125,11.0\n363,126,10.5\n363,127,10.0\n363,128,9.5\n363,129,9.0\n363,130,8.5\n363,131,8.0\n363,132,7.5\n363,133,7.0\n363,134,6.5\n363,135,6.0\n363,136,5.5\n363,137,5.0\n363,138,4.5\n363,139,5.0\n363,140,5.5\n363,141,6.0\n363,142,6.5\n363,143,7.0\n363,144,7.5\n363,145,8.0\n363,146,8.5\n363,147,9.0\n363,148,9.5\n363,149,10.0\n363,150,10.5\n363,151,10.0\n363,152,9.5\n363,153,9.0\n363,154,8.5\n363,155,8.0\n363,156,7.5\n363,157,7.0\n363,158,6.5\n363,159,6.0\n363,160,5.5\n363,161,5.0\n363,162,4.5\n363,163,4.0\n363,164,4.5\n363,165,5.0\n363,166,5.5\n363,167,6.0\n363,168,6.5\n363,169,7.0\n363,170,7.5\n363,171,8.0\n363,172,8.5\n363,173,9.0\n363,174,9.5\n363,175,10.0\n363,176,9.5\n363,177,9.0\n363,178,8.5\n363,179,8.0\n363,180,7.5\n363,181,7.0\n363,182,6.5\n363,183,6.0\n363,184,5.5\n363,185,5.0\n363,186,4.5\n363,187,4.0\n363,188,3.5\n363,189,4.0\n363,190,4.5\n363,191,5.0\n363,192,5.5\n363,193,6.0\n363,194,6.5\n363,195,7.0\n363,196,7.5\n363,197,8.0\n363,198,8.5\n363,199,9.0\n363,200,9.5\n363,201,9.0\n363,202,8.5\n363,203,8.0\n363,204,7.5\n363,205,7.0\n363,206,6.5\n363,207,6.0\n363,208,5.5\n363,209,5.0\n363,210,4.5\n363,211,4.0\n363,212,3.5\n363,213,3.0\n363,214,3.5\n363,215,4.0\n363,216,4.5\n363,217,5.0\n363,218,5.5\n363,219,6.0\n363,220,6.5\n363,221,7.0\n363,222,7.5\n363,223,8.0\n363,224,8.5\n363,225,9.0\n363,226,8.5\n363,227,8.0\n363,228,7.5\n363,229,7.0\n363,230,6.5\n363,231,6.0\n363,232,5.5\n363,233,5.0\n363,234,4.5\n363,235,4.0\n363,236,3.5\n363,237,3.0\n363,238,2.5\n363,239,3.0\n363,240,3.5\n363,241,4.0\n363,242,4.5\n363,243,5.0\n363,244,5.5\n363,245,6.0\n363,246,6.5\n363,247,7.0\n363,248,7.5\n363,249,8.0\n363,250,8.5\n363,251,8.0\n363,252,7.5\n363,253,7.0\n363,254,6.5\n363,255,6.0\n363,256,5.5\n363,257,5.0\n363,258,4.5\n363,259,4.0\n363,260,3.5\n363,261,3.0\n363,262,2.5\n363,263,2.0\n363,264,2.5\n363,265,3.0\n363,266,3.5\n363,267,4.0\n363,268,4.5\n363,269,5.0\n363,270,5.5\n363,271,6.0\n363,272,6.5\n363,273,7.0\n363,274,7.5\n363,275,8.0\n363,276,7.5\n363,277,7.0\n363,278,6.5\n363,279,6.0\n363,280,5.5\n363,281,5.0\n363,282,4.5\n363,283,4.0\n363,284,3.5\n363,285,3.0\n363,286,2.5\n363,287,2.0\n363,288,1.5\n363,289,2.0\n363,290,2.5\n363,291,3.0\n363,292,3.5\n363,293,4.0\n363,294,4.5\n363,295,5.0\n363,296,5.5\n363,297,6.0\n363,298,6.5\n363,299,7.0\n363,300,7.5\n363,301,7.0\n363,302,6.5\n363,303,6.0\n363,304,5.5\n363,305,5.0\n363,306,4.5\n363,307,4.0\n363,308,3.5\n363,309,3.0\n363,310,2.5\n363,311,2.0\n363,312,1.5\n363,313,1.0\n363,314,1.5\n363,315,2.0\n363,316,2.5\n363,317,3.0\n363,318,3.5\n363,319,4.0\n363,320,4.5\n363,321,5.0\n363,322,5.5\n363,323,6.0\n363,324,6.5\n363,325,7.0\n363,326,6.5\n363,327,6.0\n363,328,5.5\n363,329,5.0\n363,330,4.5\n363,331,4.0\n363,332,3.5\n363,333,3.0\n363,334,2.5\n363,335,2.0\n363,336,1.5\n363,337,1.0\n363,338,0.5\n363,339,1.0\n363,340,1.5\n363,341,2.0\n363,342,2.5\n363,343,3.0\n363,344,3.5\n363,345,4.0\n363,346,4.5\n363,347,5.0\n363,348,5.5\n363,349,6.0\n363,350,6.5\n363,351,6.0\n363,352,5.5\n363,353,5.0\n363,354,4.5\n363,355,4.0\n363,356,3.5\n363,357,3.0\n363,358,2.5\n363,359,2.0\n363,360,1.5\n363,361,1.0\n363,362,0.5\n363,363,0\n363,364,0.5\n363,365,1.0\n363,366,1.5\n363,367,2.0\n363,368,2.5\n363,369,3.0\n363,370,3.5\n363,371,4.0\n363,372,4.5\n363,373,5.0\n363,374,5.5\n363,375,7.0\n363,376,6.5\n363,377,6.0\n363,378,5.5\n363,379,5.0\n363,380,4.5\n363,381,4.0\n363,382,3.5\n363,383,3.0\n363,384,2.5\n363,385,2.0\n363,386,1.5\n363,387,1.0\n363,388,0.5\n363,389,1.0\n363,390,1.5\n363,391,2.0\n363,392,2.5\n363,393,3.0\n363,394,3.5\n363,395,4.0\n363,396,4.5\n363,397,5.0\n363,398,5.5\n363,399,6.0\n363,400,7.5\n363,401,7.0\n363,402,6.5\n363,403,6.0\n363,404,5.5\n363,405,5.0\n363,406,4.5\n363,407,4.0\n363,408,3.5\n363,409,3.0\n363,410,2.5\n363,411,2.0\n363,412,1.5\n363,413,1.0\n363,414,1.5\n363,415,2.0\n363,416,2.5\n363,417,3.0\n363,418,3.5\n363,419,4.0\n363,420,4.5\n363,421,5.0\n363,422,5.5\n363,423,6.0\n363,424,6.5\n363,425,8.0\n363,426,7.5\n363,427,7.0\n363,428,6.5\n363,429,6.0\n363,430,5.5\n363,431,5.0\n363,432,4.5\n363,433,4.0\n363,434,3.5\n363,435,3.0\n363,436,2.5\n363,437,2.0\n363,438,1.5\n363,439,2.0\n363,440,2.5\n363,441,3.0\n363,442,3.5\n363,443,4.0\n363,444,4.5\n363,445,5.0\n363,446,5.5\n363,447,6.0\n363,448,6.5\n363,449,7.0\n363,450,8.5\n363,451,8.0\n363,452,7.5\n363,453,7.0\n363,454,6.5\n363,455,6.0\n363,456,5.5\n363,457,5.0\n363,458,4.5\n363,459,4.0\n363,460,3.5\n363,461,3.0\n363,462,2.5\n363,463,2.0\n363,464,2.5\n363,465,3.0\n363,466,3.5\n363,467,4.0\n363,468,4.5\n363,469,5.0\n363,470,5.5\n363,471,6.0\n363,472,6.5\n363,473,7.0\n363,474,7.5\n363,475,9.0\n363,476,8.5\n363,477,8.0\n363,478,7.5\n363,479,7.0\n363,480,6.5\n363,481,6.0\n363,482,5.5\n363,483,5.0\n363,484,4.5\n363,485,4.0\n363,486,3.5\n363,487,3.0\n363,488,2.5\n363,489,3.0\n363,490,3.5\n363,491,4.0\n363,492,4.5\n363,493,5.0\n363,494,5.5\n363,495,6.0\n363,496,6.5\n363,497,7.0\n363,498,7.5\n363,499,8.0\n363,500,9.5\n363,501,9.0\n363,502,8.5\n363,503,8.0\n363,504,7.5\n363,505,7.0\n363,506,6.5\n363,507,6.0\n363,508,5.5\n363,509,5.0\n363,510,4.5\n363,511,4.0\n363,512,3.5\n363,513,3.0\n363,514,3.5\n363,515,4.0\n363,516,4.5\n363,517,5.0\n363,518,5.5\n363,519,6.0\n363,520,6.5\n363,521,7.0\n363,522,7.5\n363,523,8.0\n363,524,8.5\n363,525,10.0\n363,526,9.5\n363,527,9.0\n363,528,8.5\n363,529,8.0\n363,530,7.5\n363,531,7.0\n363,532,6.5\n363,533,6.0\n363,534,5.5\n363,535,5.0\n363,536,4.5\n363,537,4.0\n363,538,3.5\n363,539,4.0\n363,540,4.5\n363,541,5.0\n363,542,5.5\n363,543,6.0\n363,544,6.5\n363,545,7.0\n363,546,7.5\n363,547,8.0\n363,548,8.5\n363,549,9.0\n363,550,10.5\n363,551,10.0\n363,552,9.5\n363,553,9.0\n363,554,8.5\n363,555,8.0\n363,556,7.5\n363,557,7.0\n363,558,6.5\n363,559,6.0\n363,560,5.5\n363,561,5.0\n363,562,4.5\n363,563,4.0\n363,564,4.5\n363,565,5.0\n363,566,5.5\n363,567,6.0\n363,568,6.5\n363,569,7.0\n363,570,7.5\n363,571,8.0\n363,572,8.5\n363,573,9.0\n363,574,9.5\n363,575,11.0\n363,576,10.5\n363,577,10.0\n363,578,9.5\n363,579,9.0\n363,580,8.5\n363,581,8.0\n363,582,7.5\n363,583,7.0\n363,584,6.5\n363,585,6.0\n363,586,5.5\n363,587,5.0\n363,588,4.5\n363,589,5.0\n363,590,5.5\n363,591,6.0\n363,592,6.5\n363,593,7.0\n363,594,7.5\n363,595,8.0\n363,596,8.5\n363,597,9.0\n363,598,9.5\n363,599,10.0\n363,600,11.5\n363,601,11.0\n363,602,10.5\n363,603,10.0\n363,604,9.5\n363,605,9.0\n363,606,8.5\n363,607,8.0\n363,608,7.5\n363,609,7.0\n363,610,6.5\n363,611,6.0\n363,612,5.5\n363,613,5.0\n363,614,5.5\n363,615,6.0\n363,616,6.5\n363,617,7.0\n363,618,7.5\n363,619,8.0\n363,620,8.5\n363,621,9.0\n363,622,9.5\n363,623,10.0\n363,624,10.5\n364,0,14.0\n364,1,13.5\n364,2,13.0\n364,3,12.5\n364,4,12.0\n364,5,11.5\n364,6,11.0\n364,7,10.5\n364,8,10.0\n364,9,9.5\n364,10,9.0\n364,11,8.5\n364,12,8.0\n364,13,7.5\n364,14,7.0\n364,15,7.5\n364,16,8.0\n364,17,8.5\n364,18,9.0\n364,19,9.5\n364,20,10.0\n364,21,10.5\n364,22,11.0\n364,23,11.5\n364,24,12.0\n364,25,13.5\n364,26,13.0\n364,27,12.5\n364,28,12.0\n364,29,11.5\n364,30,11.0\n364,31,10.5\n364,32,10.0\n364,33,9.5\n364,34,9.0\n364,35,8.5\n364,36,8.0\n364,37,7.5\n364,38,7.0\n364,39,6.5\n364,40,7.0\n364,41,7.5\n364,42,8.0\n364,43,8.5\n364,44,9.0\n364,45,9.5\n364,46,10.0\n364,47,10.5\n364,48,11.0\n364,49,11.5\n364,50,13.0\n364,51,12.5\n364,52,12.0\n364,53,11.5\n364,54,11.0\n364,55,10.5\n364,56,10.0\n364,57,9.5\n364,58,9.0\n364,59,8.5\n364,60,8.0\n364,61,7.5\n364,62,7.0\n364,63,6.5\n364,64,6.0\n364,65,6.5\n364,66,7.0\n364,67,7.5\n364,68,8.0\n364,69,8.5\n364,70,9.0\n364,71,9.5\n364,72,10.0\n364,73,10.5\n364,74,11.0\n364,75,12.5\n364,76,12.0\n364,77,11.5\n364,78,11.0\n364,79,10.5\n364,80,10.0\n364,81,9.5\n364,82,9.0\n364,83,8.5\n364,84,8.0\n364,85,7.5\n364,86,7.0\n364,87,6.5\n364,88,6.0\n364,89,5.5\n364,90,6.0\n364,91,6.5\n364,92,7.0\n364,93,7.5\n364,94,8.0\n364,95,8.5\n364,96,9.0\n364,97,9.5\n364,98,10.0\n364,99,10.5\n364,100,12.0\n364,101,11.5\n364,102,11.0\n364,103,10.5\n364,104,10.0\n364,105,9.5\n364,106,9.0\n364,107,8.5\n364,108,8.0\n364,109,7.5\n364,110,7.0\n364,111,6.5\n364,112,6.0\n364,113,5.5\n364,114,5.0\n364,115,5.5\n364,116,6.0\n364,117,6.5\n364,118,7.0\n364,119,7.5\n364,120,8.0\n364,121,8.5\n364,122,9.0\n364,123,9.5\n364,124,10.0\n364,125,11.5\n364,126,11.0\n364,127,10.5\n364,128,10.0\n364,129,9.5\n364,130,9.0\n364,131,8.5\n364,132,8.0\n364,133,7.5\n364,134,7.0\n364,135,6.5\n364,136,6.0\n364,137,5.5\n364,138,5.0\n364,139,4.5\n364,140,5.0\n364,141,5.5\n364,142,6.0\n364,143,6.5\n364,144,7.0\n364,145,7.5\n364,146,8.0\n364,147,8.5\n364,148,9.0\n364,149,9.5\n364,150,11.0\n364,151,10.5\n364,152,10.0\n364,153,9.5\n364,154,9.0\n364,155,8.5\n364,156,8.0\n364,157,7.5\n364,158,7.0\n364,159,6.5\n364,160,6.0\n364,161,5.5\n364,162,5.0\n364,163,4.5\n364,164,4.0\n364,165,4.5\n364,166,5.0\n364,167,5.5\n364,168,6.0\n364,169,6.5\n364,170,7.0\n364,171,7.5\n364,172,8.0\n364,173,8.5\n364,174,9.0\n364,175,10.5\n364,176,10.0\n364,177,9.5\n364,178,9.0\n364,179,8.5\n364,180,8.0\n364,181,7.5\n364,182,7.0\n364,183,6.5\n364,184,6.0\n364,185,5.5\n364,186,5.0\n364,187,4.5\n364,188,4.0\n364,189,3.5\n364,190,4.0\n364,191,4.5\n364,192,5.0\n364,193,5.5\n364,194,6.0\n364,195,6.5\n364,196,7.0\n364,197,7.5\n364,198,8.0\n364,199,8.5\n364,200,10.0\n364,201,9.5\n364,202,9.0\n364,203,8.5\n364,204,8.0\n364,205,7.5\n364,206,7.0\n364,207,6.5\n364,208,6.0\n364,209,5.5\n364,210,5.0\n364,211,4.5\n364,212,4.0\n364,213,3.5\n364,214,3.0\n364,215,3.5\n364,216,4.0\n364,217,4.5\n364,218,5.0\n364,219,5.5\n364,220,6.0\n364,221,6.5\n364,222,7.0\n364,223,7.5\n364,224,8.0\n364,225,9.5\n364,226,9.0\n364,227,8.5\n364,228,8.0\n364,229,7.5\n364,230,7.0\n364,231,6.5\n364,232,6.0\n364,233,5.5\n364,234,5.0\n364,235,4.5\n364,236,4.0\n364,237,3.5\n364,238,3.0\n364,239,2.5\n364,240,3.0\n364,241,3.5\n364,242,4.0\n364,243,4.5\n364,244,5.0\n364,245,5.5\n364,246,6.0\n364,247,6.5\n364,248,7.0\n364,249,7.5\n364,250,9.0\n364,251,8.5\n364,252,8.0\n364,253,7.5\n364,254,7.0\n364,255,6.5\n364,256,6.0\n364,257,5.5\n364,258,5.0\n364,259,4.5\n364,260,4.0\n364,261,3.5\n364,262,3.0\n364,263,2.5\n364,264,2.0\n364,265,2.5\n364,266,3.0\n364,267,3.5\n364,268,4.0\n364,269,4.5\n364,270,5.0\n364,271,5.5\n364,272,6.0\n364,273,6.5\n364,274,7.0\n364,275,8.5\n364,276,8.0\n364,277,7.5\n364,278,7.0\n364,279,6.5\n364,280,6.0\n364,281,5.5\n364,282,5.0\n364,283,4.5\n364,284,4.0\n364,285,3.5\n364,286,3.0\n364,287,2.5\n364,288,2.0\n364,289,1.5\n364,290,2.0\n364,291,2.5\n364,292,3.0\n364,293,3.5\n364,294,4.0\n364,295,4.5\n364,296,5.0\n364,297,5.5\n364,298,6.0\n364,299,6.5\n364,300,8.0\n364,301,7.5\n364,302,7.0\n364,303,6.5\n364,304,6.0\n364,305,5.5\n364,306,5.0\n364,307,4.5\n364,308,4.0\n364,309,3.5\n364,310,3.0\n364,311,2.5\n364,312,2.0\n364,313,1.5\n364,314,1.0\n364,315,1.5\n364,316,2.0\n364,317,2.5\n364,318,3.0\n364,319,3.5\n364,320,4.0\n364,321,4.5\n364,322,5.0\n364,323,5.5\n364,324,6.0\n364,325,7.5\n364,326,7.0\n364,327,6.5\n364,328,6.0\n364,329,5.5\n364,330,5.0\n364,331,4.5\n364,332,4.0\n364,333,3.5\n364,334,3.0\n364,335,2.5\n364,336,2.0\n364,337,1.5\n364,338,1.0\n364,339,0.5\n364,340,1.0\n364,341,1.5\n364,342,2.0\n364,343,2.5\n364,344,3.0\n364,345,3.5\n364,346,4.0\n364,347,4.5\n364,348,5.0\n364,349,5.5\n364,350,7.0\n364,351,6.5\n364,352,6.0\n364,353,5.5\n364,354,5.0\n364,355,4.5\n364,356,4.0\n364,357,3.5\n364,358,3.0\n364,359,2.5\n364,360,2.0\n364,361,1.5\n364,362,1.0\n364,363,0.5\n364,364,0\n364,365,0.5\n364,366,1.0\n364,367,1.5\n364,368,2.0\n364,369,2.5\n364,370,3.0\n364,371,3.5\n364,372,4.0\n364,373,4.5\n364,374,5.0\n364,375,7.5\n364,376,7.0\n364,377,6.5\n364,378,6.0\n364,379,5.5\n364,380,5.0\n364,381,4.5\n364,382,4.0\n364,383,3.5\n364,384,3.0\n364,385,2.5\n364,386,2.0\n364,387,1.5\n364,388,1.0\n364,389,0.5\n364,390,1.0\n364,391,1.5\n364,392,2.0\n364,393,2.5\n364,394,3.0\n364,395,3.5\n364,396,4.0\n364,397,4.5\n364,398,5.0\n364,399,5.5\n364,400,8.0\n364,401,7.5\n364,402,7.0\n364,403,6.5\n364,404,6.0\n364,405,5.5\n364,406,5.0\n364,407,4.5\n364,408,4.0\n364,409,3.5\n364,410,3.0\n364,411,2.5\n364,412,2.0\n364,413,1.5\n364,414,1.0\n364,415,1.5\n364,416,2.0\n364,417,2.5\n364,418,3.0\n364,419,3.5\n364,420,4.0\n364,421,4.5\n364,422,5.0\n364,423,5.5\n364,424,6.0\n364,425,8.5\n364,426,8.0\n364,427,7.5\n364,428,7.0\n364,429,6.5\n364,430,6.0\n364,431,5.5\n364,432,5.0\n364,433,4.5\n364,434,4.0\n364,435,3.5\n364,436,3.0\n364,437,2.5\n364,438,2.0\n364,439,1.5\n364,440,2.0\n364,441,2.5\n364,442,3.0\n364,443,3.5\n364,444,4.0\n364,445,4.5\n364,446,5.0\n364,447,5.5\n364,448,6.0\n364,449,6.5\n364,450,9.0\n364,451,8.5\n364,452,8.0\n364,453,7.5\n364,454,7.0\n364,455,6.5\n364,456,6.0\n364,457,5.5\n364,458,5.0\n364,459,4.5\n364,460,4.0\n364,461,3.5\n364,462,3.0\n364,463,2.5\n364,464,2.0\n364,465,2.5\n364,466,3.0\n364,467,3.5\n364,468,4.0\n364,469,4.5\n364,470,5.0\n364,471,5.5\n364,472,6.0\n364,473,6.5\n364,474,7.0\n364,475,9.5\n364,476,9.0\n364,477,8.5\n364,478,8.0\n364,479,7.5\n364,480,7.0\n364,481,6.5\n364,482,6.0\n364,483,5.5\n364,484,5.0\n364,485,4.5\n364,486,4.0\n364,487,3.5\n364,488,3.0\n364,489,2.5\n364,490,3.0\n364,491,3.5\n364,492,4.0\n364,493,4.5\n364,494,5.0\n364,495,5.5\n364,496,6.0\n364,497,6.5\n364,498,7.0\n364,499,7.5\n364,500,10.0\n364,501,9.5\n364,502,9.0\n364,503,8.5\n364,504,8.0\n364,505,7.5\n364,506,7.0\n364,507,6.5\n364,508,6.0\n364,509,5.5\n364,510,5.0\n364,511,4.5\n364,512,4.0\n364,513,3.5\n364,514,3.0\n364,515,3.5\n364,516,4.0\n364,517,4.5\n364,518,5.0\n364,519,5.5\n364,520,6.0\n364,521,6.5\n364,522,7.0\n364,523,7.5\n364,524,8.0\n364,525,10.5\n364,526,10.0\n364,527,9.5\n364,528,9.0\n364,529,8.5\n364,530,8.0\n364,531,7.5\n364,532,7.0\n364,533,6.5\n364,534,6.0\n364,535,5.5\n364,536,5.0\n364,537,4.5\n364,538,4.0\n364,539,3.5\n364,540,4.0\n364,541,4.5\n364,542,5.0\n364,543,5.5\n364,544,6.0\n364,545,6.5\n364,546,7.0\n364,547,7.5\n364,548,8.0\n364,549,8.5\n364,550,11.0\n364,551,10.5\n364,552,10.0\n364,553,9.5\n364,554,9.0\n364,555,8.5\n364,556,8.0\n364,557,7.5\n364,558,7.0\n364,559,6.5\n364,560,6.0\n364,561,5.5\n364,562,5.0\n364,563,4.5\n364,564,4.0\n364,565,4.5\n364,566,5.0\n364,567,5.5\n364,568,6.0\n364,569,6.5\n364,570,7.0\n364,571,7.5\n364,572,8.0\n364,573,8.5\n364,574,9.0\n364,575,11.5\n364,576,11.0\n364,577,10.5\n364,578,10.0\n364,579,9.5\n364,580,9.0\n364,581,8.5\n364,582,8.0\n364,583,7.5\n364,584,7.0\n364,585,6.5\n364,586,6.0\n364,587,5.5\n364,588,5.0\n364,589,4.5\n364,590,5.0\n364,591,5.5\n364,592,6.0\n364,593,6.5\n364,594,7.0\n364,595,7.5\n364,596,8.0\n364,597,8.5\n364,598,9.0\n364,599,9.5\n364,600,12.0\n364,601,11.5\n364,602,11.0\n364,603,10.5\n364,604,10.0\n364,605,9.5\n364,606,9.0\n364,607,8.5\n364,608,8.0\n364,609,7.5\n364,610,7.0\n364,611,6.5\n364,612,6.0\n364,613,5.5\n364,614,5.0\n364,615,5.5\n364,616,6.0\n364,617,6.5\n364,618,7.0\n364,619,7.5\n364,620,8.0\n364,621,8.5\n364,622,9.0\n364,623,9.5\n364,624,10.0\n365,0,14.5\n365,1,14.0\n365,2,13.5\n365,3,13.0\n365,4,12.5\n365,5,12.0\n365,6,11.5\n365,7,11.0\n365,8,10.5\n365,9,10.0\n365,10,9.5\n365,11,9.0\n365,12,8.5\n365,13,8.0\n365,14,7.5\n365,15,7.0\n365,16,7.5\n365,17,8.0\n365,18,8.5\n365,19,9.0\n365,20,9.5\n365,21,10.0\n365,22,10.5\n365,23,11.0\n365,24,11.5\n365,25,14.0\n365,26,13.5\n365,27,13.0\n365,28,12.5\n365,29,12.0\n365,30,11.5\n365,31,11.0\n365,32,10.5\n365,33,10.0\n365,34,9.5\n365,35,9.0\n365,36,8.5\n365,37,8.0\n365,38,7.5\n365,39,7.0\n365,40,6.5\n365,41,7.0\n365,42,7.5\n365,43,8.0\n365,44,8.5\n365,45,9.0\n365,46,9.5\n365,47,10.0\n365,48,10.5\n365,49,11.0\n365,50,13.5\n365,51,13.0\n365,52,12.5\n365,53,12.0\n365,54,11.5\n365,55,11.0\n365,56,10.5\n365,57,10.0\n365,58,9.5\n365,59,9.0\n365,60,8.5\n365,61,8.0\n365,62,7.5\n365,63,7.0\n365,64,6.5\n365,65,6.0\n365,66,6.5\n365,67,7.0\n365,68,7.5\n365,69,8.0\n365,70,8.5\n365,71,9.0\n365,72,9.5\n365,73,10.0\n365,74,10.5\n365,75,13.0\n365,76,12.5\n365,77,12.0\n365,78,11.5\n365,79,11.0\n365,80,10.5\n365,81,10.0\n365,82,9.5\n365,83,9.0\n365,84,8.5\n365,85,8.0\n365,86,7.5\n365,87,7.0\n365,88,6.5\n365,89,6.0\n365,90,5.5\n365,91,6.0\n365,92,6.5\n365,93,7.0\n365,94,7.5\n365,95,8.0\n365,96,8.5\n365,97,9.0\n365,98,9.5\n365,99,10.0\n365,100,12.5\n365,101,12.0\n365,102,11.5\n365,103,11.0\n365,104,10.5\n365,105,10.0\n365,106,9.5\n365,107,9.0\n365,108,8.5\n365,109,8.0\n365,110,7.5\n365,111,7.0\n365,112,6.5\n365,113,6.0\n365,114,5.5\n365,115,5.0\n365,116,5.5\n365,117,6.0\n365,118,6.5\n365,119,7.0\n365,120,7.5\n365,121,8.0\n365,122,8.5\n365,123,9.0\n365,124,9.5\n365,125,12.0\n365,126,11.5\n365,127,11.0\n365,128,10.5\n365,129,10.0\n365,130,9.5\n365,131,9.0\n365,132,8.5\n365,133,8.0\n365,134,7.5\n365,135,7.0\n365,136,6.5\n365,137,6.0\n365,138,5.5\n365,139,5.0\n365,140,4.5\n365,141,5.0\n365,142,5.5\n365,143,6.0\n365,144,6.5\n365,145,7.0\n365,146,7.5\n365,147,8.0\n365,148,8.5\n365,149,9.0\n365,150,11.5\n365,151,11.0\n365,152,10.5\n365,153,10.0\n365,154,9.5\n365,155,9.0\n365,156,8.5\n365,157,8.0\n365,158,7.5\n365,159,7.0\n365,160,6.5\n365,161,6.0\n365,162,5.5\n365,163,5.0\n365,164,4.5\n365,165,4.0\n365,166,4.5\n365,167,5.0\n365,168,5.5\n365,169,6.0\n365,170,6.5\n365,171,7.0\n365,172,7.5\n365,173,8.0\n365,174,8.5\n365,175,11.0\n365,176,10.5\n365,177,10.0\n365,178,9.5\n365,179,9.0\n365,180,8.5\n365,181,8.0\n365,182,7.5\n365,183,7.0\n365,184,6.5\n365,185,6.0\n365,186,5.5\n365,187,5.0\n365,188,4.5\n365,189,4.0\n365,190,3.5\n365,191,4.0\n365,192,4.5\n365,193,5.0\n365,194,5.5\n365,195,6.0\n365,196,6.5\n365,197,7.0\n365,198,7.5\n365,199,8.0\n365,200,10.5\n365,201,10.0\n365,202,9.5\n365,203,9.0\n365,204,8.5\n365,205,8.0\n365,206,7.5\n365,207,7.0\n365,208,6.5\n365,209,6.0\n365,210,5.5\n365,211,5.0\n365,212,4.5\n365,213,4.0\n365,214,3.5\n365,215,3.0\n365,216,3.5\n365,217,4.0\n365,218,4.5\n365,219,5.0\n365,220,5.5\n365,221,6.0\n365,222,6.5\n365,223,7.0\n365,224,7.5\n365,225,10.0\n365,226,9.5\n365,227,9.0\n365,228,8.5\n365,229,8.0\n365,230,7.5\n365,231,7.0\n365,232,6.5\n365,233,6.0\n365,234,5.5\n365,235,5.0\n365,236,4.5\n365,237,4.0\n365,238,3.5\n365,239,3.0\n365,240,2.5\n365,241,3.0\n365,242,3.5\n365,243,4.0\n365,244,4.5\n365,245,5.0\n365,246,5.5\n365,247,6.0\n365,248,6.5\n365,249,7.0\n365,250,9.5\n365,251,9.0\n365,252,8.5\n365,253,8.0\n365,254,7.5\n365,255,7.0\n365,256,6.5\n365,257,6.0\n365,258,5.5\n365,259,5.0\n365,260,4.5\n365,261,4.0\n365,262,3.5\n365,263,3.0\n365,264,2.5\n365,265,2.0\n365,266,2.5\n365,267,3.0\n365,268,3.5\n365,269,4.0\n365,270,4.5\n365,271,5.0\n365,272,5.5\n365,273,6.0\n365,274,6.5\n365,275,9.0\n365,276,8.5\n365,277,8.0\n365,278,7.5\n365,279,7.0\n365,280,6.5\n365,281,6.0\n365,282,5.5\n365,283,5.0\n365,284,4.5\n365,285,4.0\n365,286,3.5\n365,287,3.0\n365,288,2.5\n365,289,2.0\n365,290,1.5\n365,291,2.0\n365,292,2.5\n365,293,3.0\n365,294,3.5\n365,295,4.0\n365,296,4.5\n365,297,5.0\n365,298,5.5\n365,299,6.0\n365,300,8.5\n365,301,8.0\n365,302,7.5\n365,303,7.0\n365,304,6.5\n365,305,6.0\n365,306,5.5\n365,307,5.0\n365,308,4.5\n365,309,4.0\n365,310,3.5\n365,311,3.0\n365,312,2.5\n365,313,2.0\n365,314,1.5\n365,315,1.0\n365,316,1.5\n365,317,2.0\n365,318,2.5\n365,319,3.0\n365,320,3.5\n365,321,4.0\n365,322,4.5\n365,323,5.0\n365,324,5.5\n365,325,8.0\n365,326,7.5\n365,327,7.0\n365,328,6.5\n365,329,6.0\n365,330,5.5\n365,331,5.0\n365,332,4.5\n365,333,4.0\n365,334,3.5\n365,335,3.0\n365,336,2.5\n365,337,2.0\n365,338,1.5\n365,339,1.0\n365,340,0.5\n365,341,1.0\n365,342,1.5\n365,343,2.0\n365,344,2.5\n365,345,3.0\n365,346,3.5\n365,347,4.0\n365,348,4.5\n365,349,5.0\n365,350,7.5\n365,351,7.0\n365,352,6.5\n365,353,6.0\n365,354,5.5\n365,355,5.0\n365,356,4.5\n365,357,4.0\n365,358,3.5\n365,359,3.0\n365,360,2.5\n365,361,2.0\n365,362,1.5\n365,363,1.0\n365,364,0.5\n365,365,0\n365,366,0.5\n365,367,1.0\n365,368,1.5\n365,369,2.0\n365,370,2.5\n365,371,3.0\n365,372,3.5\n365,373,4.0\n365,374,4.5\n365,375,8.0\n365,376,7.5\n365,377,7.0\n365,378,6.5\n365,379,6.0\n365,380,5.5\n365,381,5.0\n365,382,4.5\n365,383,4.0\n365,384,3.5\n365,385,3.0\n365,386,2.5\n365,387,2.0\n365,388,1.5\n365,389,1.0\n365,390,0.5\n365,391,1.0\n365,392,1.5\n365,393,2.0\n365,394,2.5\n365,395,3.0\n365,396,3.5\n365,397,4.0\n365,398,4.5\n365,399,5.0\n365,400,8.5\n365,401,8.0\n365,402,7.5\n365,403,7.0\n365,404,6.5\n365,405,6.0\n365,406,5.5\n365,407,5.0\n365,408,4.5\n365,409,4.0\n365,410,3.5\n365,411,3.0\n365,412,2.5\n365,413,2.0\n365,414,1.5\n365,415,1.0\n365,416,1.5\n365,417,2.0\n365,418,2.5\n365,419,3.0\n365,420,3.5\n365,421,4.0\n365,422,4.5\n365,423,5.0\n365,424,5.5\n365,425,9.0\n365,426,8.5\n365,427,8.0\n365,428,7.5\n365,429,7.0\n365,430,6.5\n365,431,6.0\n365,432,5.5\n365,433,5.0\n365,434,4.5\n365,435,4.0\n365,436,3.5\n365,437,3.0\n365,438,2.5\n365,439,2.0\n365,440,1.5\n365,441,2.0\n365,442,2.5\n365,443,3.0\n365,444,3.5\n365,445,4.0\n365,446,4.5\n365,447,5.0\n365,448,5.5\n365,449,6.0\n365,450,9.5\n365,451,9.0\n365,452,8.5\n365,453,8.0\n365,454,7.5\n365,455,7.0\n365,456,6.5\n365,457,6.0\n365,458,5.5\n365,459,5.0\n365,460,4.5\n365,461,4.0\n365,462,3.5\n365,463,3.0\n365,464,2.5\n365,465,2.0\n365,466,2.5\n365,467,3.0\n365,468,3.5\n365,469,4.0\n365,470,4.5\n365,471,5.0\n365,472,5.5\n365,473,6.0\n365,474,6.5\n365,475,10.0\n365,476,9.5\n365,477,9.0\n365,478,8.5\n365,479,8.0\n365,480,7.5\n365,481,7.0\n365,482,6.5\n365,483,6.0\n365,484,5.5\n365,485,5.0\n365,486,4.5\n365,487,4.0\n365,488,3.5\n365,489,3.0\n365,490,2.5\n365,491,3.0\n365,492,3.5\n365,493,4.0\n365,494,4.5\n365,495,5.0\n365,496,5.5\n365,497,6.0\n365,498,6.5\n365,499,7.0\n365,500,10.5\n365,501,10.0\n365,502,9.5\n365,503,9.0\n365,504,8.5\n365,505,8.0\n365,506,7.5\n365,507,7.0\n365,508,6.5\n365,509,6.0\n365,510,5.5\n365,511,5.0\n365,512,4.5\n365,513,4.0\n365,514,3.5\n365,515,3.0\n365,516,3.5\n365,517,4.0\n365,518,4.5\n365,519,5.0\n365,520,5.5\n365,521,6.0\n365,522,6.5\n365,523,7.0\n365,524,7.5\n365,525,11.0\n365,526,10.5\n365,527,10.0\n365,528,9.5\n365,529,9.0\n365,530,8.5\n365,531,8.0\n365,532,7.5\n365,533,7.0\n365,534,6.5\n365,535,6.0\n365,536,5.5\n365,537,5.0\n365,538,4.5\n365,539,4.0\n365,540,3.5\n365,541,4.0\n365,542,4.5\n365,543,5.0\n365,544,5.5\n365,545,6.0\n365,546,6.5\n365,547,7.0\n365,548,7.5\n365,549,8.0\n365,550,11.5\n365,551,11.0\n365,552,10.5\n365,553,10.0\n365,554,9.5\n365,555,9.0\n365,556,8.5\n365,557,8.0\n365,558,7.5\n365,559,7.0\n365,560,6.5\n365,561,6.0\n365,562,5.5\n365,563,5.0\n365,564,4.5\n365,565,4.0\n365,566,4.5\n365,567,5.0\n365,568,5.5\n365,569,6.0\n365,570,6.5\n365,571,7.0\n365,572,7.5\n365,573,8.0\n365,574,8.5\n365,575,12.0\n365,576,11.5\n365,577,11.0\n365,578,10.5\n365,579,10.0\n365,580,9.5\n365,581,9.0\n365,582,8.5\n365,583,8.0\n365,584,7.5\n365,585,7.0\n365,586,6.5\n365,587,6.0\n365,588,5.5\n365,589,5.0\n365,590,4.5\n365,591,5.0\n365,592,5.5\n365,593,6.0\n365,594,6.5\n365,595,7.0\n365,596,7.5\n365,597,8.0\n365,598,8.5\n365,599,9.0\n365,600,12.5\n365,601,12.0\n365,602,11.5\n365,603,11.0\n365,604,10.5\n365,605,10.0\n365,606,9.5\n365,607,9.0\n365,608,8.5\n365,609,8.0\n365,610,7.5\n365,611,7.0\n365,612,6.5\n365,613,6.0\n365,614,5.5\n365,615,5.0\n365,616,5.5\n365,617,6.0\n365,618,6.5\n365,619,7.0\n365,620,7.5\n365,621,8.0\n365,622,8.5\n365,623,9.0\n365,624,9.5\n366,0,15.0\n366,1,14.5\n366,2,14.0\n366,3,13.5\n366,4,13.0\n366,5,12.5\n366,6,12.0\n366,7,11.5\n366,8,11.0\n366,9,10.5\n366,10,10.0\n366,11,9.5\n366,12,9.0\n366,13,8.5\n366,14,8.0\n366,15,7.5\n366,16,7.0\n366,17,7.5\n366,18,8.0\n366,19,8.5\n366,20,9.0\n366,21,9.5\n366,22,10.0\n366,23,10.5\n366,24,11.0\n366,25,14.5\n366,26,14.0\n366,27,13.5\n366,28,13.0\n366,29,12.5\n366,30,12.0\n366,31,11.5\n366,32,11.0\n366,33,10.5\n366,34,10.0\n366,35,9.5\n366,36,9.0\n366,37,8.5\n366,38,8.0\n366,39,7.5\n366,40,7.0\n366,41,6.5\n366,42,7.0\n366,43,7.5\n366,44,8.0\n366,45,8.5\n366,46,9.0\n366,47,9.5\n366,48,10.0\n366,49,10.5\n366,50,14.0\n366,51,13.5\n366,52,13.0\n366,53,12.5\n366,54,12.0\n366,55,11.5\n366,56,11.0\n366,57,10.5\n366,58,10.0\n366,59,9.5\n366,60,9.0\n366,61,8.5\n366,62,8.0\n366,63,7.5\n366,64,7.0\n366,65,6.5\n366,66,6.0\n366,67,6.5\n366,68,7.0\n366,69,7.5\n366,70,8.0\n366,71,8.5\n366,72,9.0\n366,73,9.5\n366,74,10.0\n366,75,13.5\n366,76,13.0\n366,77,12.5\n366,78,12.0\n366,79,11.5\n366,80,11.0\n366,81,10.5\n366,82,10.0\n366,83,9.5\n366,84,9.0\n366,85,8.5\n366,86,8.0\n366,87,7.5\n366,88,7.0\n366,89,6.5\n366,90,6.0\n366,91,5.5\n366,92,6.0\n366,93,6.5\n366,94,7.0\n366,95,7.5\n366,96,8.0\n366,97,8.5\n366,98,9.0\n366,99,9.5\n366,100,13.0\n366,101,12.5\n366,102,12.0\n366,103,11.5\n366,104,11.0\n366,105,10.5\n366,106,10.0\n366,107,9.5\n366,108,9.0\n366,109,8.5\n366,110,8.0\n366,111,7.5\n366,112,7.0\n366,113,6.5\n366,114,6.0\n366,115,5.5\n366,116,5.0\n366,117,5.5\n366,118,6.0\n366,119,6.5\n366,120,7.0\n366,121,7.5\n366,122,8.0\n366,123,8.5\n366,124,9.0\n366,125,12.5\n366,126,12.0\n366,127,11.5\n366,128,11.0\n366,129,10.5\n366,130,10.0\n366,131,9.5\n366,132,9.0\n366,133,8.5\n366,134,8.0\n366,135,7.5\n366,136,7.0\n366,137,6.5\n366,138,6.0\n366,139,5.5\n366,140,5.0\n366,141,4.5\n366,142,5.0\n366,143,5.5\n366,144,6.0\n366,145,6.5\n366,146,7.0\n366,147,7.5\n366,148,8.0\n366,149,8.5\n366,150,12.0\n366,151,11.5\n366,152,11.0\n366,153,10.5\n366,154,10.0\n366,155,9.5\n366,156,9.0\n366,157,8.5\n366,158,8.0\n366,159,7.5\n366,160,7.0\n366,161,6.5\n366,162,6.0\n366,163,5.5\n366,164,5.0\n366,165,4.5\n366,166,4.0\n366,167,4.5\n366,168,5.0\n366,169,5.5\n366,170,6.0\n366,171,6.5\n366,172,7.0\n366,173,7.5\n366,174,8.0\n366,175,11.5\n366,176,11.0\n366,177,10.5\n366,178,10.0\n366,179,9.5\n366,180,9.0\n366,181,8.5\n366,182,8.0\n366,183,7.5\n366,184,7.0\n366,185,6.5\n366,186,6.0\n366,187,5.5\n366,188,5.0\n366,189,4.5\n366,190,4.0\n366,191,3.5\n366,192,4.0\n366,193,4.5\n366,194,5.0\n366,195,5.5\n366,196,6.0\n366,197,6.5\n366,198,7.0\n366,199,7.5\n366,200,11.0\n366,201,10.5\n366,202,10.0\n366,203,9.5\n366,204,9.0\n366,205,8.5\n366,206,8.0\n366,207,7.5\n366,208,7.0\n366,209,6.5\n366,210,6.0\n366,211,5.5\n366,212,5.0\n366,213,4.5\n366,214,4.0\n366,215,3.5\n366,216,3.0\n366,217,3.5\n366,218,4.0\n366,219,4.5\n366,220,5.0\n366,221,5.5\n366,222,6.0\n366,223,6.5\n366,224,7.0\n366,225,10.5\n366,226,10.0\n366,227,9.5\n366,228,9.0\n366,229,8.5\n366,230,8.0\n366,231,7.5\n366,232,7.0\n366,233,6.5\n366,234,6.0\n366,235,5.5\n366,236,5.0\n366,237,4.5\n366,238,4.0\n366,239,3.5\n366,240,3.0\n366,241,2.5\n366,242,3.0\n366,243,3.5\n366,244,4.0\n366,245,4.5\n366,246,5.0\n366,247,5.5\n366,248,6.0\n366,249,6.5\n366,250,10.0\n366,251,9.5\n366,252,9.0\n366,253,8.5\n366,254,8.0\n366,255,7.5\n366,256,7.0\n366,257,6.5\n366,258,6.0\n366,259,5.5\n366,260,5.0\n366,261,4.5\n366,262,4.0\n366,263,3.5\n366,264,3.0\n366,265,2.5\n366,266,2.0\n366,267,2.5\n366,268,3.0\n366,269,3.5\n366,270,4.0\n366,271,4.5\n366,272,5.0\n366,273,5.5\n366,274,6.0\n366,275,9.5\n366,276,9.0\n366,277,8.5\n366,278,8.0\n366,279,7.5\n366,280,7.0\n366,281,6.5\n366,282,6.0\n366,283,5.5\n366,284,5.0\n366,285,4.5\n366,286,4.0\n366,287,3.5\n366,288,3.0\n366,289,2.5\n366,290,2.0\n366,291,1.5\n366,292,2.0\n366,293,2.5\n366,294,3.0\n366,295,3.5\n366,296,4.0\n366,297,4.5\n366,298,5.0\n366,299,5.5\n366,300,9.0\n366,301,8.5\n366,302,8.0\n366,303,7.5\n366,304,7.0\n366,305,6.5\n366,306,6.0\n366,307,5.5\n366,308,5.0\n366,309,4.5\n366,310,4.0\n366,311,3.5\n366,312,3.0\n366,313,2.5\n366,314,2.0\n366,315,1.5\n366,316,1.0\n366,317,1.5\n366,318,2.0\n366,319,2.5\n366,320,3.0\n366,321,3.5\n366,322,4.0\n366,323,4.5\n366,324,5.0\n366,325,8.5\n366,326,8.0\n366,327,7.5\n366,328,7.0\n366,329,6.5\n366,330,6.0\n366,331,5.5\n366,332,5.0\n366,333,4.5\n366,334,4.0\n366,335,3.5\n366,336,3.0\n366,337,2.5\n366,338,2.0\n366,339,1.5\n366,340,1.0\n366,341,0.5\n366,342,1.0\n366,343,1.5\n366,344,2.0\n366,345,2.5\n366,346,3.0\n366,347,3.5\n366,348,4.0\n366,349,4.5\n366,350,8.0\n366,351,7.5\n366,352,7.0\n366,353,6.5\n366,354,6.0\n366,355,5.5\n366,356,5.0\n366,357,4.5\n366,358,4.0\n366,359,3.5\n366,360,3.0\n366,361,2.5\n366,362,2.0\n366,363,1.5\n366,364,1.0\n366,365,0.5\n366,366,0\n366,367,0.5\n366,368,1.0\n366,369,1.5\n366,370,2.0\n366,371,2.5\n366,372,3.0\n366,373,3.5\n366,374,4.0\n366,375,8.5\n366,376,8.0\n366,377,7.5\n366,378,7.0\n366,379,6.5\n366,380,6.0\n366,381,5.5\n366,382,5.0\n366,383,4.5\n366,384,4.0\n366,385,3.5\n366,386,3.0\n366,387,2.5\n366,388,2.0\n366,389,1.5\n366,390,1.0\n366,391,0.5\n366,392,1.0\n366,393,1.5\n366,394,2.0\n366,395,2.5\n366,396,3.0\n366,397,3.5\n366,398,4.0\n366,399,4.5\n366,400,9.0\n366,401,8.5\n366,402,8.0\n366,403,7.5\n366,404,7.0\n366,405,6.5\n366,406,6.0\n366,407,5.5\n366,408,5.0\n366,409,4.5\n366,410,4.0\n366,411,3.5\n366,412,3.0\n366,413,2.5\n366,414,2.0\n366,415,1.5\n366,416,1.0\n366,417,1.5\n366,418,2.0\n366,419,2.5\n366,420,3.0\n366,421,3.5\n366,422,4.0\n366,423,4.5\n366,424,5.0\n366,425,9.5\n366,426,9.0\n366,427,8.5\n366,428,8.0\n366,429,7.5\n366,430,7.0\n366,431,6.5\n366,432,6.0\n366,433,5.5\n366,434,5.0\n366,435,4.5\n366,436,4.0\n366,437,3.5\n366,438,3.0\n366,439,2.5\n366,440,2.0\n366,441,1.5\n366,442,2.0\n366,443,2.5\n366,444,3.0\n366,445,3.5\n366,446,4.0\n366,447,4.5\n366,448,5.0\n366,449,5.5\n366,450,10.0\n366,451,9.5\n366,452,9.0\n366,453,8.5\n366,454,8.0\n366,455,7.5\n366,456,7.0\n366,457,6.5\n366,458,6.0\n366,459,5.5\n366,460,5.0\n366,461,4.5\n366,462,4.0\n366,463,3.5\n366,464,3.0\n366,465,2.5\n366,466,2.0\n366,467,2.5\n366,468,3.0\n366,469,3.5\n366,470,4.0\n366,471,4.5\n366,472,5.0\n366,473,5.5\n366,474,6.0\n366,475,10.5\n366,476,10.0\n366,477,9.5\n366,478,9.0\n366,479,8.5\n366,480,8.0\n366,481,7.5\n366,482,7.0\n366,483,6.5\n366,484,6.0\n366,485,5.5\n366,486,5.0\n366,487,4.5\n366,488,4.0\n366,489,3.5\n366,490,3.0\n366,491,2.5\n366,492,3.0\n366,493,3.5\n366,494,4.0\n366,495,4.5\n366,496,5.0\n366,497,5.5\n366,498,6.0\n366,499,6.5\n366,500,11.0\n366,501,10.5\n366,502,10.0\n366,503,9.5\n366,504,9.0\n366,505,8.5\n366,506,8.0\n366,507,7.5\n366,508,7.0\n366,509,6.5\n366,510,6.0\n366,511,5.5\n366,512,5.0\n366,513,4.5\n366,514,4.0\n366,515,3.5\n366,516,3.0\n366,517,3.5\n366,518,4.0\n366,519,4.5\n366,520,5.0\n366,521,5.5\n366,522,6.0\n366,523,6.5\n366,524,7.0\n366,525,11.5\n366,526,11.0\n366,527,10.5\n366,528,10.0\n366,529,9.5\n366,530,9.0\n366,531,8.5\n366,532,8.0\n366,533,7.5\n366,534,7.0\n366,535,6.5\n366,536,6.0\n366,537,5.5\n366,538,5.0\n366,539,4.5\n366,540,4.0\n366,541,3.5\n366,542,4.0\n366,543,4.5\n366,544,5.0\n366,545,5.5\n366,546,6.0\n366,547,6.5\n366,548,7.0\n366,549,7.5\n366,550,12.0\n366,551,11.5\n366,552,11.0\n366,553,10.5\n366,554,10.0\n366,555,9.5\n366,556,9.0\n366,557,8.5\n366,558,8.0\n366,559,7.5\n366,560,7.0\n366,561,6.5\n366,562,6.0\n366,563,5.5\n366,564,5.0\n366,565,4.5\n366,566,4.0\n366,567,4.5\n366,568,5.0\n366,569,5.5\n366,570,6.0\n366,571,6.5\n366,572,7.0\n366,573,7.5\n366,574,8.0\n366,575,12.5\n366,576,12.0\n366,577,11.5\n366,578,11.0\n366,579,10.5\n366,580,10.0\n366,581,9.5\n366,582,9.0\n366,583,8.5\n366,584,8.0\n366,585,7.5\n366,586,7.0\n366,587,6.5\n366,588,6.0\n366,589,5.5\n366,590,5.0\n366,591,4.5\n366,592,5.0\n366,593,5.5\n366,594,6.0\n366,595,6.5\n366,596,7.0\n366,597,7.5\n366,598,8.0\n366,599,8.5\n366,600,13.0\n366,601,12.5\n366,602,12.0\n366,603,11.5\n366,604,11.0\n366,605,10.5\n366,606,10.0\n366,607,9.5\n366,608,9.0\n366,609,8.5\n366,610,8.0\n366,611,7.5\n366,612,7.0\n366,613,6.5\n366,614,6.0\n366,615,5.5\n366,616,5.0\n366,617,5.5\n366,618,6.0\n366,619,6.5\n366,620,7.0\n366,621,7.5\n366,622,8.0\n366,623,8.5\n366,624,9.0\n367,0,15.5\n367,1,15.0\n367,2,14.5\n367,3,14.0\n367,4,13.5\n367,5,13.0\n367,6,12.5\n367,7,12.0\n367,8,11.5\n367,9,11.0\n367,10,10.5\n367,11,10.0\n367,12,9.5\n367,13,9.0\n367,14,8.5\n367,15,8.0\n367,16,7.5\n367,17,7.0\n367,18,7.5\n367,19,8.0\n367,20,8.5\n367,21,9.0\n367,22,9.5\n367,23,10.0\n367,24,10.5\n367,25,15.0\n367,26,14.5\n367,27,14.0\n367,28,13.5\n367,29,13.0\n367,30,12.5\n367,31,12.0\n367,32,11.5\n367,33,11.0\n367,34,10.5\n367,35,10.0\n367,36,9.5\n367,37,9.0\n367,38,8.5\n367,39,8.0\n367,40,7.5\n367,41,7.0\n367,42,6.5\n367,43,7.0\n367,44,7.5\n367,45,8.0\n367,46,8.5\n367,47,9.0\n367,48,9.5\n367,49,10.0\n367,50,14.5\n367,51,14.0\n367,52,13.5\n367,53,13.0\n367,54,12.5\n367,55,12.0\n367,56,11.5\n367,57,11.0\n367,58,10.5\n367,59,10.0\n367,60,9.5\n367,61,9.0\n367,62,8.5\n367,63,8.0\n367,64,7.5\n367,65,7.0\n367,66,6.5\n367,67,6.0\n367,68,6.5\n367,69,7.0\n367,70,7.5\n367,71,8.0\n367,72,8.5\n367,73,9.0\n367,74,9.5\n367,75,14.0\n367,76,13.5\n367,77,13.0\n367,78,12.5\n367,79,12.0\n367,80,11.5\n367,81,11.0\n367,82,10.5\n367,83,10.0\n367,84,9.5\n367,85,9.0\n367,86,8.5\n367,87,8.0\n367,88,7.5\n367,89,7.0\n367,90,6.5\n367,91,6.0\n367,92,5.5\n367,93,6.0\n367,94,6.5\n367,95,7.0\n367,96,7.5\n367,97,8.0\n367,98,8.5\n367,99,9.0\n367,100,13.5\n367,101,13.0\n367,102,12.5\n367,103,12.0\n367,104,11.5\n367,105,11.0\n367,106,10.5\n367,107,10.0\n367,108,9.5\n367,109,9.0\n367,110,8.5\n367,111,8.0\n367,112,7.5\n367,113,7.0\n367,114,6.5\n367,115,6.0\n367,116,5.5\n367,117,5.0\n367,118,5.5\n367,119,6.0\n367,120,6.5\n367,121,7.0\n367,122,7.5\n367,123,8.0\n367,124,8.5\n367,125,13.0\n367,126,12.5\n367,127,12.0\n367,128,11.5\n367,129,11.0\n367,130,10.5\n367,131,10.0\n367,132,9.5\n367,133,9.0\n367,134,8.5\n367,135,8.0\n367,136,7.5\n367,137,7.0\n367,138,6.5\n367,139,6.0\n367,140,5.5\n367,141,5.0\n367,142,4.5\n367,143,5.0\n367,144,5.5\n367,145,6.0\n367,146,6.5\n367,147,7.0\n367,148,7.5\n367,149,8.0\n367,150,12.5\n367,151,12.0\n367,152,11.5\n367,153,11.0\n367,154,10.5\n367,155,10.0\n367,156,9.5\n367,157,9.0\n367,158,8.5\n367,159,8.0\n367,160,7.5\n367,161,7.0\n367,162,6.5\n367,163,6.0\n367,164,5.5\n367,165,5.0\n367,166,4.5\n367,167,4.0\n367,168,4.5\n367,169,5.0\n367,170,5.5\n367,171,6.0\n367,172,6.5\n367,173,7.0\n367,174,7.5\n367,175,12.0\n367,176,11.5\n367,177,11.0\n367,178,10.5\n367,179,10.0\n367,180,9.5\n367,181,9.0\n367,182,8.5\n367,183,8.0\n367,184,7.5\n367,185,7.0\n367,186,6.5\n367,187,6.0\n367,188,5.5\n367,189,5.0\n367,190,4.5\n367,191,4.0\n367,192,3.5\n367,193,4.0\n367,194,4.5\n367,195,5.0\n367,196,5.5\n367,197,6.0\n367,198,6.5\n367,199,7.0\n367,200,11.5\n367,201,11.0\n367,202,10.5\n367,203,10.0\n367,204,9.5\n367,205,9.0\n367,206,8.5\n367,207,8.0\n367,208,7.5\n367,209,7.0\n367,210,6.5\n367,211,6.0\n367,212,5.5\n367,213,5.0\n367,214,4.5\n367,215,4.0\n367,216,3.5\n367,217,3.0\n367,218,3.5\n367,219,4.0\n367,220,4.5\n367,221,5.0\n367,222,5.5\n367,223,6.0\n367,224,6.5\n367,225,11.0\n367,226,10.5\n367,227,10.0\n367,228,9.5\n367,229,9.0\n367,230,8.5\n367,231,8.0\n367,232,7.5\n367,233,7.0\n367,234,6.5\n367,235,6.0\n367,236,5.5\n367,237,5.0\n367,238,4.5\n367,239,4.0\n367,240,3.5\n367,241,3.0\n367,242,2.5\n367,243,3.0\n367,244,3.5\n367,245,4.0\n367,246,4.5\n367,247,5.0\n367,248,5.5\n367,249,6.0\n367,250,10.5\n367,251,10.0\n367,252,9.5\n367,253,9.0\n367,254,8.5\n367,255,8.0\n367,256,7.5\n367,257,7.0\n367,258,6.5\n367,259,6.0\n367,260,5.5\n367,261,5.0\n367,262,4.5\n367,263,4.0\n367,264,3.5\n367,265,3.0\n367,266,2.5\n367,267,2.0\n367,268,2.5\n367,269,3.0\n367,270,3.5\n367,271,4.0\n367,272,4.5\n367,273,5.0\n367,274,5.5\n367,275,10.0\n367,276,9.5\n367,277,9.0\n367,278,8.5\n367,279,8.0\n367,280,7.5\n367,281,7.0\n367,282,6.5\n367,283,6.0\n367,284,5.5\n367,285,5.0\n367,286,4.5\n367,287,4.0\n367,288,3.5\n367,289,3.0\n367,290,2.5\n367,291,2.0\n367,292,1.5\n367,293,2.0\n367,294,2.5\n367,295,3.0\n367,296,3.5\n367,297,4.0\n367,298,4.5\n367,299,5.0\n367,300,9.5\n367,301,9.0\n367,302,8.5\n367,303,8.0\n367,304,7.5\n367,305,7.0\n367,306,6.5\n367,307,6.0\n367,308,5.5\n367,309,5.0\n367,310,4.5\n367,311,4.0\n367,312,3.5\n367,313,3.0\n367,314,2.5\n367,315,2.0\n367,316,1.5\n367,317,1.0\n367,318,1.5\n367,319,2.0\n367,320,2.5\n367,321,3.0\n367,322,3.5\n367,323,4.0\n367,324,4.5\n367,325,9.0\n367,326,8.5\n367,327,8.0\n367,328,7.5\n367,329,7.0\n367,330,6.5\n367,331,6.0\n367,332,5.5\n367,333,5.0\n367,334,4.5\n367,335,4.0\n367,336,3.5\n367,337,3.0\n367,338,2.5\n367,339,2.0\n367,340,1.5\n367,341,1.0\n367,342,0.5\n367,343,1.0\n367,344,1.5\n367,345,2.0\n367,346,2.5\n367,347,3.0\n367,348,3.5\n367,349,4.0\n367,350,8.5\n367,351,8.0\n367,352,7.5\n367,353,7.0\n367,354,6.5\n367,355,6.0\n367,356,5.5\n367,357,5.0\n367,358,4.5\n367,359,4.0\n367,360,3.5\n367,361,3.0\n367,362,2.5\n367,363,2.0\n367,364,1.5\n367,365,1.0\n367,366,0.5\n367,367,0\n367,368,0.5\n367,369,1.0\n367,370,1.5\n367,371,2.0\n367,372,2.5\n367,373,3.0\n367,374,3.5\n367,375,9.0\n367,376,8.5\n367,377,8.0\n367,378,7.5\n367,379,7.0\n367,380,6.5\n367,381,6.0\n367,382,5.5\n367,383,5.0\n367,384,4.5\n367,385,4.0\n367,386,3.5\n367,387,3.0\n367,388,2.5\n367,389,2.0\n367,390,1.5\n367,391,1.0\n367,392,0.5\n367,393,1.0\n367,394,1.5\n367,395,2.0\n367,396,2.5\n367,397,3.0\n367,398,3.5\n367,399,4.0\n367,400,9.5\n367,401,9.0\n367,402,8.5\n367,403,8.0\n367,404,7.5\n367,405,7.0\n367,406,6.5\n367,407,6.0\n367,408,5.5\n367,409,5.0\n367,410,4.5\n367,411,4.0\n367,412,3.5\n367,413,3.0\n367,414,2.5\n367,415,2.0\n367,416,1.5\n367,417,1.0\n367,418,1.5\n367,419,2.0\n367,420,2.5\n367,421,3.0\n367,422,3.5\n367,423,4.0\n367,424,4.5\n367,425,10.0\n367,426,9.5\n367,427,9.0\n367,428,8.5\n367,429,8.0\n367,430,7.5\n367,431,7.0\n367,432,6.5\n367,433,6.0\n367,434,5.5\n367,435,5.0\n367,436,4.5\n367,437,4.0\n367,438,3.5\n367,439,3.0\n367,440,2.5\n367,441,2.0\n367,442,1.5\n367,443,2.0\n367,444,2.5\n367,445,3.0\n367,446,3.5\n367,447,4.0\n367,448,4.5\n367,449,5.0\n367,450,10.5\n367,451,10.0\n367,452,9.5\n367,453,9.0\n367,454,8.5\n367,455,8.0\n367,456,7.5\n367,457,7.0\n367,458,6.5\n367,459,6.0\n367,460,5.5\n367,461,5.0\n367,462,4.5\n367,463,4.0\n367,464,3.5\n367,465,3.0\n367,466,2.5\n367,467,2.0\n367,468,2.5\n367,469,3.0\n367,470,3.5\n367,471,4.0\n367,472,4.5\n367,473,5.0\n367,474,5.5\n367,475,11.0\n367,476,10.5\n367,477,10.0\n367,478,9.5\n367,479,9.0\n367,480,8.5\n367,481,8.0\n367,482,7.5\n367,483,7.0\n367,484,6.5\n367,485,6.0\n367,486,5.5\n367,487,5.0\n367,488,4.5\n367,489,4.0\n367,490,3.5\n367,491,3.0\n367,492,2.5\n367,493,3.0\n367,494,3.5\n367,495,4.0\n367,496,4.5\n367,497,5.0\n367,498,5.5\n367,499,6.0\n367,500,11.5\n367,501,11.0\n367,502,10.5\n367,503,10.0\n367,504,9.5\n367,505,9.0\n367,506,8.5\n367,507,8.0\n367,508,7.5\n367,509,7.0\n367,510,6.5\n367,511,6.0\n367,512,5.5\n367,513,5.0\n367,514,4.5\n367,515,4.0\n367,516,3.5\n367,517,3.0\n367,518,3.5\n367,519,4.0\n367,520,4.5\n367,521,5.0\n367,522,5.5\n367,523,6.0\n367,524,6.5\n367,525,12.0\n367,526,11.5\n367,527,11.0\n367,528,10.5\n367,529,10.0\n367,530,9.5\n367,531,9.0\n367,532,8.5\n367,533,8.0\n367,534,7.5\n367,535,7.0\n367,536,6.5\n367,537,6.0\n367,538,5.5\n367,539,5.0\n367,540,4.5\n367,541,4.0\n367,542,3.5\n367,543,4.0\n367,544,4.5\n367,545,5.0\n367,546,5.5\n367,547,6.0\n367,548,6.5\n367,549,7.0\n367,550,12.5\n367,551,12.0\n367,552,11.5\n367,553,11.0\n367,554,10.5\n367,555,10.0\n367,556,9.5\n367,557,9.0\n367,558,8.5\n367,559,8.0\n367,560,7.5\n367,561,7.0\n367,562,6.5\n367,563,6.0\n367,564,5.5\n367,565,5.0\n367,566,4.5\n367,567,4.0\n367,568,4.5\n367,569,5.0\n367,570,5.5\n367,571,6.0\n367,572,6.5\n367,573,7.0\n367,574,7.5\n367,575,13.0\n367,576,12.5\n367,577,12.0\n367,578,11.5\n367,579,11.0\n367,580,10.5\n367,581,10.0\n367,582,9.5\n367,583,9.0\n367,584,8.5\n367,585,8.0\n367,586,7.5\n367,587,7.0\n367,588,6.5\n367,589,6.0\n367,590,5.5\n367,591,5.0\n367,592,4.5\n367,593,5.0\n367,594,5.5\n367,595,6.0\n367,596,6.5\n367,597,7.0\n367,598,7.5\n367,599,8.0\n367,600,13.5\n367,601,13.0\n367,602,12.5\n367,603,12.0\n367,604,11.5\n367,605,11.0\n367,606,10.5\n367,607,10.0\n367,608,9.5\n367,609,9.0\n367,610,8.5\n367,611,8.0\n367,612,7.5\n367,613,7.0\n367,614,6.5\n367,615,6.0\n367,616,5.5\n367,617,5.0\n367,618,5.5\n367,619,6.0\n367,620,6.5\n367,621,7.0\n367,622,7.5\n367,623,8.0\n367,624,8.5\n368,0,16.0\n368,1,15.5\n368,2,15.0\n368,3,14.5\n368,4,14.0\n368,5,13.5\n368,6,13.0\n368,7,12.5\n368,8,12.0\n368,9,11.5\n368,10,11.0\n368,11,10.5\n368,12,10.0\n368,13,9.5\n368,14,9.0\n368,15,8.5\n368,16,8.0\n368,17,7.5\n368,18,7.0\n368,19,7.5\n368,20,8.0\n368,21,8.5\n368,22,9.0\n368,23,9.5\n368,24,10.0\n368,25,15.5\n368,26,15.0\n368,27,14.5\n368,28,14.0\n368,29,13.5\n368,30,13.0\n368,31,12.5\n368,32,12.0\n368,33,11.5\n368,34,11.0\n368,35,10.5\n368,36,10.0\n368,37,9.5\n368,38,9.0\n368,39,8.5\n368,40,8.0\n368,41,7.5\n368,42,7.0\n368,43,6.5\n368,44,7.0\n368,45,7.5\n368,46,8.0\n368,47,8.5\n368,48,9.0\n368,49,9.5\n368,50,15.0\n368,51,14.5\n368,52,14.0\n368,53,13.5\n368,54,13.0\n368,55,12.5\n368,56,12.0\n368,57,11.5\n368,58,11.0\n368,59,10.5\n368,60,10.0\n368,61,9.5\n368,62,9.0\n368,63,8.5\n368,64,8.0\n368,65,7.5\n368,66,7.0\n368,67,6.5\n368,68,6.0\n368,69,6.5\n368,70,7.0\n368,71,7.5\n368,72,8.0\n368,73,8.5\n368,74,9.0\n368,75,14.5\n368,76,14.0\n368,77,13.5\n368,78,13.0\n368,79,12.5\n368,80,12.0\n368,81,11.5\n368,82,11.0\n368,83,10.5\n368,84,10.0\n368,85,9.5\n368,86,9.0\n368,87,8.5\n368,88,8.0\n368,89,7.5\n368,90,7.0\n368,91,6.5\n368,92,6.0\n368,93,5.5\n368,94,6.0\n368,95,6.5\n368,96,7.0\n368,97,7.5\n368,98,8.0\n368,99,8.5\n368,100,14.0\n368,101,13.5\n368,102,13.0\n368,103,12.5\n368,104,12.0\n368,105,11.5\n368,106,11.0\n368,107,10.5\n368,108,10.0\n368,109,9.5\n368,110,9.0\n368,111,8.5\n368,112,8.0\n368,113,7.5\n368,114,7.0\n368,115,6.5\n368,116,6.0\n368,117,5.5\n368,118,5.0\n368,119,5.5\n368,120,6.0\n368,121,6.5\n368,122,7.0\n368,123,7.5\n368,124,8.0\n368,125,13.5\n368,126,13.0\n368,127,12.5\n368,128,12.0\n368,129,11.5\n368,130,11.0\n368,131,10.5\n368,132,10.0\n368,133,9.5\n368,134,9.0\n368,135,8.5\n368,136,8.0\n368,137,7.5\n368,138,7.0\n368,139,6.5\n368,140,6.0\n368,141,5.5\n368,142,5.0\n368,143,4.5\n368,144,5.0\n368,145,5.5\n368,146,6.0\n368,147,6.5\n368,148,7.0\n368,149,7.5\n368,150,13.0\n368,151,12.5\n368,152,12.0\n368,153,11.5\n368,154,11.0\n368,155,10.5\n368,156,10.0\n368,157,9.5\n368,158,9.0\n368,159,8.5\n368,160,8.0\n368,161,7.5\n368,162,7.0\n368,163,6.5\n368,164,6.0\n368,165,5.5\n368,166,5.0\n368,167,4.5\n368,168,4.0\n368,169,4.5\n368,170,5.0\n368,171,5.5\n368,172,6.0\n368,173,6.5\n368,174,7.0\n368,175,12.5\n368,176,12.0\n368,177,11.5\n368,178,11.0\n368,179,10.5\n368,180,10.0\n368,181,9.5\n368,182,9.0\n368,183,8.5\n368,184,8.0\n368,185,7.5\n368,186,7.0\n368,187,6.5\n368,188,6.0\n368,189,5.5\n368,190,5.0\n368,191,4.5\n368,192,4.0\n368,193,3.5\n368,194,4.0\n368,195,4.5\n368,196,5.0\n368,197,5.5\n368,198,6.0\n368,199,6.5\n368,200,12.0\n368,201,11.5\n368,202,11.0\n368,203,10.5\n368,204,10.0\n368,205,9.5\n368,206,9.0\n368,207,8.5\n368,208,8.0\n368,209,7.5\n368,210,7.0\n368,211,6.5\n368,212,6.0\n368,213,5.5\n368,214,5.0\n368,215,4.5\n368,216,4.0\n368,217,3.5\n368,218,3.0\n368,219,3.5\n368,220,4.0\n368,221,4.5\n368,222,5.0\n368,223,5.5\n368,224,6.0\n368,225,11.5\n368,226,11.0\n368,227,10.5\n368,228,10.0\n368,229,9.5\n368,230,9.0\n368,231,8.5\n368,232,8.0\n368,233,7.5\n368,234,7.0\n368,235,6.5\n368,236,6.0\n368,237,5.5\n368,238,5.0\n368,239,4.5\n368,240,4.0\n368,241,3.5\n368,242,3.0\n368,243,2.5\n368,244,3.0\n368,245,3.5\n368,246,4.0\n368,247,4.5\n368,248,5.0\n368,249,5.5\n368,250,11.0\n368,251,10.5\n368,252,10.0\n368,253,9.5\n368,254,9.0\n368,255,8.5\n368,256,8.0\n368,257,7.5\n368,258,7.0\n368,259,6.5\n368,260,6.0\n368,261,5.5\n368,262,5.0\n368,263,4.5\n368,264,4.0\n368,265,3.5\n368,266,3.0\n368,267,2.5\n368,268,2.0\n368,269,2.5\n368,270,3.0\n368,271,3.5\n368,272,4.0\n368,273,4.5\n368,274,5.0\n368,275,10.5\n368,276,10.0\n368,277,9.5\n368,278,9.0\n368,279,8.5\n368,280,8.0\n368,281,7.5\n368,282,7.0\n368,283,6.5\n368,284,6.0\n368,285,5.5\n368,286,5.0\n368,287,4.5\n368,288,4.0\n368,289,3.5\n368,290,3.0\n368,291,2.5\n368,292,2.0\n368,293,1.5\n368,294,2.0\n368,295,2.5\n368,296,3.0\n368,297,3.5\n368,298,4.0\n368,299,4.5\n368,300,10.0\n368,301,9.5\n368,302,9.0\n368,303,8.5\n368,304,8.0\n368,305,7.5\n368,306,7.0\n368,307,6.5\n368,308,6.0\n368,309,5.5\n368,310,5.0\n368,311,4.5\n368,312,4.0\n368,313,3.5\n368,314,3.0\n368,315,2.5\n368,316,2.0\n368,317,1.5\n368,318,1.0\n368,319,1.5\n368,320,2.0\n368,321,2.5\n368,322,3.0\n368,323,3.5\n368,324,4.0\n368,325,9.5\n368,326,9.0\n368,327,8.5\n368,328,8.0\n368,329,7.5\n368,330,7.0\n368,331,6.5\n368,332,6.0\n368,333,5.5\n368,334,5.0\n368,335,4.5\n368,336,4.0\n368,337,3.5\n368,338,3.0\n368,339,2.5\n368,340,2.0\n368,341,1.5\n368,342,1.0\n368,343,0.5\n368,344,1.0\n368,345,1.5\n368,346,2.0\n368,347,2.5\n368,348,3.0\n368,349,3.5\n368,350,9.0\n368,351,8.5\n368,352,8.0\n368,353,7.5\n368,354,7.0\n368,355,6.5\n368,356,6.0\n368,357,5.5\n368,358,5.0\n368,359,4.5\n368,360,4.0\n368,361,3.5\n368,362,3.0\n368,363,2.5\n368,364,2.0\n368,365,1.5\n368,366,1.0\n368,367,0.5\n368,368,0\n368,369,0.5\n368,370,1.0\n368,371,1.5\n368,372,2.0\n368,373,2.5\n368,374,3.0\n368,375,9.5\n368,376,9.0\n368,377,8.5\n368,378,8.0\n368,379,7.5\n368,380,7.0\n368,381,6.5\n368,382,6.0\n368,383,5.5\n368,384,5.0\n368,385,4.5\n368,386,4.0\n368,387,3.5\n368,388,3.0\n368,389,2.5\n368,390,2.0\n368,391,1.5\n368,392,1.0\n368,393,0.5\n368,394,1.0\n368,395,1.5\n368,396,2.0\n368,397,2.5\n368,398,3.0\n368,399,3.5\n368,400,10.0\n368,401,9.5\n368,402,9.0\n368,403,8.5\n368,404,8.0\n368,405,7.5\n368,406,7.0\n368,407,6.5\n368,408,6.0\n368,409,5.5\n368,410,5.0\n368,411,4.5\n368,412,4.0\n368,413,3.5\n368,414,3.0\n368,415,2.5\n368,416,2.0\n368,417,1.5\n368,418,1.0\n368,419,1.5\n368,420,2.0\n368,421,2.5\n368,422,3.0\n368,423,3.5\n368,424,4.0\n368,425,10.5\n368,426,10.0\n368,427,9.5\n368,428,9.0\n368,429,8.5\n368,430,8.0\n368,431,7.5\n368,432,7.0\n368,433,6.5\n368,434,6.0\n368,435,5.5\n368,436,5.0\n368,437,4.5\n368,438,4.0\n368,439,3.5\n368,440,3.0\n368,441,2.5\n368,442,2.0\n368,443,1.5\n368,444,2.0\n368,445,2.5\n368,446,3.0\n368,447,3.5\n368,448,4.0\n368,449,4.5\n368,450,11.0\n368,451,10.5\n368,452,10.0\n368,453,9.5\n368,454,9.0\n368,455,8.5\n368,456,8.0\n368,457,7.5\n368,458,7.0\n368,459,6.5\n368,460,6.0\n368,461,5.5\n368,462,5.0\n368,463,4.5\n368,464,4.0\n368,465,3.5\n368,466,3.0\n368,467,2.5\n368,468,2.0\n368,469,2.5\n368,470,3.0\n368,471,3.5\n368,472,4.0\n368,473,4.5\n368,474,5.0\n368,475,11.5\n368,476,11.0\n368,477,10.5\n368,478,10.0\n368,479,9.5\n368,480,9.0\n368,481,8.5\n368,482,8.0\n368,483,7.5\n368,484,7.0\n368,485,6.5\n368,486,6.0\n368,487,5.5\n368,488,5.0\n368,489,4.5\n368,490,4.0\n368,491,3.5\n368,492,3.0\n368,493,2.5\n368,494,3.0\n368,495,3.5\n368,496,4.0\n368,497,4.5\n368,498,5.0\n368,499,5.5\n368,500,12.0\n368,501,11.5\n368,502,11.0\n368,503,10.5\n368,504,10.0\n368,505,9.5\n368,506,9.0\n368,507,8.5\n368,508,8.0\n368,509,7.5\n368,510,7.0\n368,511,6.5\n368,512,6.0\n368,513,5.5\n368,514,5.0\n368,515,4.5\n368,516,4.0\n368,517,3.5\n368,518,3.0\n368,519,3.5\n368,520,4.0\n368,521,4.5\n368,522,5.0\n368,523,5.5\n368,524,6.0\n368,525,12.5\n368,526,12.0\n368,527,11.5\n368,528,11.0\n368,529,10.5\n368,530,10.0\n368,531,9.5\n368,532,9.0\n368,533,8.5\n368,534,8.0\n368,535,7.5\n368,536,7.0\n368,537,6.5\n368,538,6.0\n368,539,5.5\n368,540,5.0\n368,541,4.5\n368,542,4.0\n368,543,3.5\n368,544,4.0\n368,545,4.5\n368,546,5.0\n368,547,5.5\n368,548,6.0\n368,549,6.5\n368,550,13.0\n368,551,12.5\n368,552,12.0\n368,553,11.5\n368,554,11.0\n368,555,10.5\n368,556,10.0\n368,557,9.5\n368,558,9.0\n368,559,8.5\n368,560,8.0\n368,561,7.5\n368,562,7.0\n368,563,6.5\n368,564,6.0\n368,565,5.5\n368,566,5.0\n368,567,4.5\n368,568,4.0\n368,569,4.5\n368,570,5.0\n368,571,5.5\n368,572,6.0\n368,573,6.5\n368,574,7.0\n368,575,13.5\n368,576,13.0\n368,577,12.5\n368,578,12.0\n368,579,11.5\n368,580,11.0\n368,581,10.5\n368,582,10.0\n368,583,9.5\n368,584,9.0\n368,585,8.5\n368,586,8.0\n368,587,7.5\n368,588,7.0\n368,589,6.5\n368,590,6.0\n368,591,5.5\n368,592,5.0\n368,593,4.5\n368,594,5.0\n368,595,5.5\n368,596,6.0\n368,597,6.5\n368,598,7.0\n368,599,7.5\n368,600,14.0\n368,601,13.5\n368,602,13.0\n368,603,12.5\n368,604,12.0\n368,605,11.5\n368,606,11.0\n368,607,10.5\n368,608,10.0\n368,609,9.5\n368,610,9.0\n368,611,8.5\n368,612,8.0\n368,613,7.5\n368,614,7.0\n368,615,6.5\n368,616,6.0\n368,617,5.5\n368,618,5.0\n368,619,5.5\n368,620,6.0\n368,621,6.5\n368,622,7.0\n368,623,7.5\n368,624,8.0\n369,0,16.5\n369,1,16.0\n369,2,15.5\n369,3,15.0\n369,4,14.5\n369,5,14.0\n369,6,13.5\n369,7,13.0\n369,8,12.5\n369,9,12.0\n369,10,11.5\n369,11,11.0\n369,12,10.5\n369,13,10.0\n369,14,9.5\n369,15,9.0\n369,16,8.5\n369,17,8.0\n369,18,7.5\n369,19,7.0\n369,20,7.5\n369,21,8.0\n369,22,8.5\n369,23,9.0\n369,24,9.5\n369,25,16.0\n369,26,15.5\n369,27,15.0\n369,28,14.5\n369,29,14.0\n369,30,13.5\n369,31,13.0\n369,32,12.5\n369,33,12.0\n369,34,11.5\n369,35,11.0\n369,36,10.5\n369,37,10.0\n369,38,9.5\n369,39,9.0\n369,40,8.5\n369,41,8.0\n369,42,7.5\n369,43,7.0\n369,44,6.5\n369,45,7.0\n369,46,7.5\n369,47,8.0\n369,48,8.5\n369,49,9.0\n369,50,15.5\n369,51,15.0\n369,52,14.5\n369,53,14.0\n369,54,13.5\n369,55,13.0\n369,56,12.5\n369,57,12.0\n369,58,11.5\n369,59,11.0\n369,60,10.5\n369,61,10.0\n369,62,9.5\n369,63,9.0\n369,64,8.5\n369,65,8.0\n369,66,7.5\n369,67,7.0\n369,68,6.5\n369,69,6.0\n369,70,6.5\n369,71,7.0\n369,72,7.5\n369,73,8.0\n369,74,8.5\n369,75,15.0\n369,76,14.5\n369,77,14.0\n369,78,13.5\n369,79,13.0\n369,80,12.5\n369,81,12.0\n369,82,11.5\n369,83,11.0\n369,84,10.5\n369,85,10.0\n369,86,9.5\n369,87,9.0\n369,88,8.5\n369,89,8.0\n369,90,7.5\n369,91,7.0\n369,92,6.5\n369,93,6.0\n369,94,5.5\n369,95,6.0\n369,96,6.5\n369,97,7.0\n369,98,7.5\n369,99,8.0\n369,100,14.5\n369,101,14.0\n369,102,13.5\n369,103,13.0\n369,104,12.5\n369,105,12.0\n369,106,11.5\n369,107,11.0\n369,108,10.5\n369,109,10.0\n369,110,9.5\n369,111,9.0\n369,112,8.5\n369,113,8.0\n369,114,7.5\n369,115,7.0\n369,116,6.5\n369,117,6.0\n369,118,5.5\n369,119,5.0\n369,120,5.5\n369,121,6.0\n369,122,6.5\n369,123,7.0\n369,124,7.5\n369,125,14.0\n369,126,13.5\n369,127,13.0\n369,128,12.5\n369,129,12.0\n369,130,11.5\n369,131,11.0\n369,132,10.5\n369,133,10.0\n369,134,9.5\n369,135,9.0\n369,136,8.5\n369,137,8.0\n369,138,7.5\n369,139,7.0\n369,140,6.5\n369,141,6.0\n369,142,5.5\n369,143,5.0\n369,144,4.5\n369,145,5.0\n369,146,5.5\n369,147,6.0\n369,148,6.5\n369,149,7.0\n369,150,13.5\n369,151,13.0\n369,152,12.5\n369,153,12.0\n369,154,11.5\n369,155,11.0\n369,156,10.5\n369,157,10.0\n369,158,9.5\n369,159,9.0\n369,160,8.5\n369,161,8.0\n369,162,7.5\n369,163,7.0\n369,164,6.5\n369,165,6.0\n369,166,5.5\n369,167,5.0\n369,168,4.5\n369,169,4.0\n369,170,4.5\n369,171,5.0\n369,172,5.5\n369,173,6.0\n369,174,6.5\n369,175,13.0\n369,176,12.5\n369,177,12.0\n369,178,11.5\n369,179,11.0\n369,180,10.5\n369,181,10.0\n369,182,9.5\n369,183,9.0\n369,184,8.5\n369,185,8.0\n369,186,7.5\n369,187,7.0\n369,188,6.5\n369,189,6.0\n369,190,5.5\n369,191,5.0\n369,192,4.5\n369,193,4.0\n369,194,3.5\n369,195,4.0\n369,196,4.5\n369,197,5.0\n369,198,5.5\n369,199,6.0\n369,200,12.5\n369,201,12.0\n369,202,11.5\n369,203,11.0\n369,204,10.5\n369,205,10.0\n369,206,9.5\n369,207,9.0\n369,208,8.5\n369,209,8.0\n369,210,7.5\n369,211,7.0\n369,212,6.5\n369,213,6.0\n369,214,5.5\n369,215,5.0\n369,216,4.5\n369,217,4.0\n369,218,3.5\n369,219,3.0\n369,220,3.5\n369,221,4.0\n369,222,4.5\n369,223,5.0\n369,224,5.5\n369,225,12.0\n369,226,11.5\n369,227,11.0\n369,228,10.5\n369,229,10.0\n369,230,9.5\n369,231,9.0\n369,232,8.5\n369,233,8.0\n369,234,7.5\n369,235,7.0\n369,236,6.5\n369,237,6.0\n369,238,5.5\n369,239,5.0\n369,240,4.5\n369,241,4.0\n369,242,3.5\n369,243,3.0\n369,244,2.5\n369,245,3.0\n369,246,3.5\n369,247,4.0\n369,248,4.5\n369,249,5.0\n369,250,11.5\n369,251,11.0\n369,252,10.5\n369,253,10.0\n369,254,9.5\n369,255,9.0\n369,256,8.5\n369,257,8.0\n369,258,7.5\n369,259,7.0\n369,260,6.5\n369,261,6.0\n369,262,5.5\n369,263,5.0\n369,264,4.5\n369,265,4.0\n369,266,3.5\n369,267,3.0\n369,268,2.5\n369,269,2.0\n369,270,2.5\n369,271,3.0\n369,272,3.5\n369,273,4.0\n369,274,4.5\n369,275,11.0\n369,276,10.5\n369,277,10.0\n369,278,9.5\n369,279,9.0\n369,280,8.5\n369,281,8.0\n369,282,7.5\n369,283,7.0\n369,284,6.5\n369,285,6.0\n369,286,5.5\n369,287,5.0\n369,288,4.5\n369,289,4.0\n369,290,3.5\n369,291,3.0\n369,292,2.5\n369,293,2.0\n369,294,1.5\n369,295,2.0\n369,296,2.5\n369,297,3.0\n369,298,3.5\n369,299,4.0\n369,300,10.5\n369,301,10.0\n369,302,9.5\n369,303,9.0\n369,304,8.5\n369,305,8.0\n369,306,7.5\n369,307,7.0\n369,308,6.5\n369,309,6.0\n369,310,5.5\n369,311,5.0\n369,312,4.5\n369,313,4.0\n369,314,3.5\n369,315,3.0\n369,316,2.5\n369,317,2.0\n369,318,1.5\n369,319,1.0\n369,320,1.5\n369,321,2.0\n369,322,2.5\n369,323,3.0\n369,324,3.5\n369,325,10.0\n369,326,9.5\n369,327,9.0\n369,328,8.5\n369,329,8.0\n369,330,7.5\n369,331,7.0\n369,332,6.5\n369,333,6.0\n369,334,5.5\n369,335,5.0\n369,336,4.5\n369,337,4.0\n369,338,3.5\n369,339,3.0\n369,340,2.5\n369,341,2.0\n369,342,1.5\n369,343,1.0\n369,344,0.5\n369,345,1.0\n369,346,1.5\n369,347,2.0\n369,348,2.5\n369,349,3.0\n369,350,9.5\n369,351,9.0\n369,352,8.5\n369,353,8.0\n369,354,7.5\n369,355,7.0\n369,356,6.5\n369,357,6.0\n369,358,5.5\n369,359,5.0\n369,360,4.5\n369,361,4.0\n369,362,3.5\n369,363,3.0\n369,364,2.5\n369,365,2.0\n369,366,1.5\n369,367,1.0\n369,368,0.5\n369,369,0\n369,370,0.5\n369,371,1.0\n369,372,1.5\n369,373,2.0\n369,374,2.5\n369,375,10.0\n369,376,9.5\n369,377,9.0\n369,378,8.5\n369,379,8.0\n369,380,7.5\n369,381,7.0\n369,382,6.5\n369,383,6.0\n369,384,5.5\n369,385,5.0\n369,386,4.5\n369,387,4.0\n369,388,3.5\n369,389,3.0\n369,390,2.5\n369,391,2.0\n369,392,1.5\n369,393,1.0\n369,394,0.5\n369,395,1.0\n369,396,1.5\n369,397,2.0\n369,398,2.5\n369,399,3.0\n369,400,10.5\n369,401,10.0\n369,402,9.5\n369,403,9.0\n369,404,8.5\n369,405,8.0\n369,406,7.5\n369,407,7.0\n369,408,6.5\n369,409,6.0\n369,410,5.5\n369,411,5.0\n369,412,4.5\n369,413,4.0\n369,414,3.5\n369,415,3.0\n369,416,2.5\n369,417,2.0\n369,418,1.5\n369,419,1.0\n369,420,1.5\n369,421,2.0\n369,422,2.5\n369,423,3.0\n369,424,3.5\n369,425,11.0\n369,426,10.5\n369,427,10.0\n369,428,9.5\n369,429,9.0\n369,430,8.5\n369,431,8.0\n369,432,7.5\n369,433,7.0\n369,434,6.5\n369,435,6.0\n369,436,5.5\n369,437,5.0\n369,438,4.5\n369,439,4.0\n369,440,3.5\n369,441,3.0\n369,442,2.5\n369,443,2.0\n369,444,1.5\n369,445,2.0\n369,446,2.5\n369,447,3.0\n369,448,3.5\n369,449,4.0\n369,450,11.5\n369,451,11.0\n369,452,10.5\n369,453,10.0\n369,454,9.5\n369,455,9.0\n369,456,8.5\n369,457,8.0\n369,458,7.5\n369,459,7.0\n369,460,6.5\n369,461,6.0\n369,462,5.5\n369,463,5.0\n369,464,4.5\n369,465,4.0\n369,466,3.5\n369,467,3.0\n369,468,2.5\n369,469,2.0\n369,470,2.5\n369,471,3.0\n369,472,3.5\n369,473,4.0\n369,474,4.5\n369,475,12.0\n369,476,11.5\n369,477,11.0\n369,478,10.5\n369,479,10.0\n369,480,9.5\n369,481,9.0\n369,482,8.5\n369,483,8.0\n369,484,7.5\n369,485,7.0\n369,486,6.5\n369,487,6.0\n369,488,5.5\n369,489,5.0\n369,490,4.5\n369,491,4.0\n369,492,3.5\n369,493,3.0\n369,494,2.5\n369,495,3.0\n369,496,3.5\n369,497,4.0\n369,498,4.5\n369,499,5.0\n369,500,12.5\n369,501,12.0\n369,502,11.5\n369,503,11.0\n369,504,10.5\n369,505,10.0\n369,506,9.5\n369,507,9.0\n369,508,8.5\n369,509,8.0\n369,510,7.5\n369,511,7.0\n369,512,6.5\n369,513,6.0\n369,514,5.5\n369,515,5.0\n369,516,4.5\n369,517,4.0\n369,518,3.5\n369,519,3.0\n369,520,3.5\n369,521,4.0\n369,522,4.5\n369,523,5.0\n369,524,5.5\n369,525,13.0\n369,526,12.5\n369,527,12.0\n369,528,11.5\n369,529,11.0\n369,530,10.5\n369,531,10.0\n369,532,9.5\n369,533,9.0\n369,534,8.5\n369,535,8.0\n369,536,7.5\n369,537,7.0\n369,538,6.5\n369,539,6.0\n369,540,5.5\n369,541,5.0\n369,542,4.5\n369,543,4.0\n369,544,3.5\n369,545,4.0\n369,546,4.5\n369,547,5.0\n369,548,5.5\n369,549,6.0\n369,550,13.5\n369,551,13.0\n369,552,12.5\n369,553,12.0\n369,554,11.5\n369,555,11.0\n369,556,10.5\n369,557,10.0\n369,558,9.5\n369,559,9.0\n369,560,8.5\n369,561,8.0\n369,562,7.5\n369,563,7.0\n369,564,6.5\n369,565,6.0\n369,566,5.5\n369,567,5.0\n369,568,4.5\n369,569,4.0\n369,570,4.5\n369,571,5.0\n369,572,5.5\n369,573,6.0\n369,574,6.5\n369,575,14.0\n369,576,13.5\n369,577,13.0\n369,578,12.5\n369,579,12.0\n369,580,11.5\n369,581,11.0\n369,582,10.5\n369,583,10.0\n369,584,9.5\n369,585,9.0\n369,586,8.5\n369,587,8.0\n369,588,7.5\n369,589,7.0\n369,590,6.5\n369,591,6.0\n369,592,5.5\n369,593,5.0\n369,594,4.5\n369,595,5.0\n369,596,5.5\n369,597,6.0\n369,598,6.5\n369,599,7.0\n369,600,14.5\n369,601,14.0\n369,602,13.5\n369,603,13.0\n369,604,12.5\n369,605,12.0\n369,606,11.5\n369,607,11.0\n369,608,10.5\n369,609,10.0\n369,610,9.5\n369,611,9.0\n369,612,8.5\n369,613,8.0\n369,614,7.5\n369,615,7.0\n369,616,6.5\n369,617,6.0\n369,618,5.5\n369,619,5.0\n369,620,5.5\n369,621,6.0\n369,622,6.5\n369,623,7.0\n369,624,7.5\n370,0,17.0\n370,1,16.5\n370,2,16.0\n370,3,15.5\n370,4,15.0\n370,5,14.5\n370,6,14.0\n370,7,13.5\n370,8,13.0\n370,9,12.5\n370,10,12.0\n370,11,11.5\n370,12,11.0\n370,13,10.5\n370,14,10.0\n370,15,9.5\n370,16,9.0\n370,17,8.5\n370,18,8.0\n370,19,7.5\n370,20,7.0\n370,21,7.5\n370,22,8.0\n370,23,8.5\n370,24,9.0\n370,25,16.5\n370,26,16.0\n370,27,15.5\n370,28,15.0\n370,29,14.5\n370,30,14.0\n370,31,13.5\n370,32,13.0\n370,33,12.5\n370,34,12.0\n370,35,11.5\n370,36,11.0\n370,37,10.5\n370,38,10.0\n370,39,9.5\n370,40,9.0\n370,41,8.5\n370,42,8.0\n370,43,7.5\n370,44,7.0\n370,45,6.5\n370,46,7.0\n370,47,7.5\n370,48,8.0\n370,49,8.5\n370,50,16.0\n370,51,15.5\n370,52,15.0\n370,53,14.5\n370,54,14.0\n370,55,13.5\n370,56,13.0\n370,57,12.5\n370,58,12.0\n370,59,11.5\n370,60,11.0\n370,61,10.5\n370,62,10.0\n370,63,9.5\n370,64,9.0\n370,65,8.5\n370,66,8.0\n370,67,7.5\n370,68,7.0\n370,69,6.5\n370,70,6.0\n370,71,6.5\n370,72,7.0\n370,73,7.5\n370,74,8.0\n370,75,15.5\n370,76,15.0\n370,77,14.5\n370,78,14.0\n370,79,13.5\n370,80,13.0\n370,81,12.5\n370,82,12.0\n370,83,11.5\n370,84,11.0\n370,85,10.5\n370,86,10.0\n370,87,9.5\n370,88,9.0\n370,89,8.5\n370,90,8.0\n370,91,7.5\n370,92,7.0\n370,93,6.5\n370,94,6.0\n370,95,5.5\n370,96,6.0\n370,97,6.5\n370,98,7.0\n370,99,7.5\n370,100,15.0\n370,101,14.5\n370,102,14.0\n370,103,13.5\n370,104,13.0\n370,105,12.5\n370,106,12.0\n370,107,11.5\n370,108,11.0\n370,109,10.5\n370,110,10.0\n370,111,9.5\n370,112,9.0\n370,113,8.5\n370,114,8.0\n370,115,7.5\n370,116,7.0\n370,117,6.5\n370,118,6.0\n370,119,5.5\n370,120,5.0\n370,121,5.5\n370,122,6.0\n370,123,6.5\n370,124,7.0\n370,125,14.5\n370,126,14.0\n370,127,13.5\n370,128,13.0\n370,129,12.5\n370,130,12.0\n370,131,11.5\n370,132,11.0\n370,133,10.5\n370,134,10.0\n370,135,9.5\n370,136,9.0\n370,137,8.5\n370,138,8.0\n370,139,7.5\n370,140,7.0\n370,141,6.5\n370,142,6.0\n370,143,5.5\n370,144,5.0\n370,145,4.5\n370,146,5.0\n370,147,5.5\n370,148,6.0\n370,149,6.5\n370,150,14.0\n370,151,13.5\n370,152,13.0\n370,153,12.5\n370,154,12.0\n370,155,11.5\n370,156,11.0\n370,157,10.5\n370,158,10.0\n370,159,9.5\n370,160,9.0\n370,161,8.5\n370,162,8.0\n370,163,7.5\n370,164,7.0\n370,165,6.5\n370,166,6.0\n370,167,5.5\n370,168,5.0\n370,169,4.5\n370,170,4.0\n370,171,4.5\n370,172,5.0\n370,173,5.5\n370,174,6.0\n370,175,13.5\n370,176,13.0\n370,177,12.5\n370,178,12.0\n370,179,11.5\n370,180,11.0\n370,181,10.5\n370,182,10.0\n370,183,9.5\n370,184,9.0\n370,185,8.5\n370,186,8.0\n370,187,7.5\n370,188,7.0\n370,189,6.5\n370,190,6.0\n370,191,5.5\n370,192,5.0\n370,193,4.5\n370,194,4.0\n370,195,3.5\n370,196,4.0\n370,197,4.5\n370,198,5.0\n370,199,5.5\n370,200,13.0\n370,201,12.5\n370,202,12.0\n370,203,11.5\n370,204,11.0\n370,205,10.5\n370,206,10.0\n370,207,9.5\n370,208,9.0\n370,209,8.5\n370,210,8.0\n370,211,7.5\n370,212,7.0\n370,213,6.5\n370,214,6.0\n370,215,5.5\n370,216,5.0\n370,217,4.5\n370,218,4.0\n370,219,3.5\n370,220,3.0\n370,221,3.5\n370,222,4.0\n370,223,4.5\n370,224,5.0\n370,225,12.5\n370,226,12.0\n370,227,11.5\n370,228,11.0\n370,229,10.5\n370,230,10.0\n370,231,9.5\n370,232,9.0\n370,233,8.5\n370,234,8.0\n370,235,7.5\n370,236,7.0\n370,237,6.5\n370,238,6.0\n370,239,5.5\n370,240,5.0\n370,241,4.5\n370,242,4.0\n370,243,3.5\n370,244,3.0\n370,245,2.5\n370,246,3.0\n370,247,3.5\n370,248,4.0\n370,249,4.5\n370,250,12.0\n370,251,11.5\n370,252,11.0\n370,253,10.5\n370,254,10.0\n370,255,9.5\n370,256,9.0\n370,257,8.5\n370,258,8.0\n370,259,7.5\n370,260,7.0\n370,261,6.5\n370,262,6.0\n370,263,5.5\n370,264,5.0\n370,265,4.5\n370,266,4.0\n370,267,3.5\n370,268,3.0\n370,269,2.5\n370,270,2.0\n370,271,2.5\n370,272,3.0\n370,273,3.5\n370,274,4.0\n370,275,11.5\n370,276,11.0\n370,277,10.5\n370,278,10.0\n370,279,9.5\n370,280,9.0\n370,281,8.5\n370,282,8.0\n370,283,7.5\n370,284,7.0\n370,285,6.5\n370,286,6.0\n370,287,5.5\n370,288,5.0\n370,289,4.5\n370,290,4.0\n370,291,3.5\n370,292,3.0\n370,293,2.5\n370,294,2.0\n370,295,1.5\n370,296,2.0\n370,297,2.5\n370,298,3.0\n370,299,3.5\n370,300,11.0\n370,301,10.5\n370,302,10.0\n370,303,9.5\n370,304,9.0\n370,305,8.5\n370,306,8.0\n370,307,7.5\n370,308,7.0\n370,309,6.5\n370,310,6.0\n370,311,5.5\n370,312,5.0\n370,313,4.5\n370,314,4.0\n370,315,3.5\n370,316,3.0\n370,317,2.5\n370,318,2.0\n370,319,1.5\n370,320,1.0\n370,321,1.5\n370,322,2.0\n370,323,2.5\n370,324,3.0\n370,325,10.5\n370,326,10.0\n370,327,9.5\n370,328,9.0\n370,329,8.5\n370,330,8.0\n370,331,7.5\n370,332,7.0\n370,333,6.5\n370,334,6.0\n370,335,5.5\n370,336,5.0\n370,337,4.5\n370,338,4.0\n370,339,3.5\n370,340,3.0\n370,341,2.5\n370,342,2.0\n370,343,1.5\n370,344,1.0\n370,345,0.5\n370,346,1.0\n370,347,1.5\n370,348,2.0\n370,349,2.5\n370,350,10.0\n370,351,9.5\n370,352,9.0\n370,353,8.5\n370,354,8.0\n370,355,7.5\n370,356,7.0\n370,357,6.5\n370,358,6.0\n370,359,5.5\n370,360,5.0\n370,361,4.5\n370,362,4.0\n370,363,3.5\n370,364,3.0\n370,365,2.5\n370,366,2.0\n370,367,1.5\n370,368,1.0\n370,369,0.5\n370,370,0\n370,371,0.5\n370,372,1.0\n370,373,1.5\n370,374,2.0\n370,375,10.5\n370,376,10.0\n370,377,9.5\n370,378,9.0\n370,379,8.5\n370,380,8.0\n370,381,7.5\n370,382,7.0\n370,383,6.5\n370,384,6.0\n370,385,5.5\n370,386,5.0\n370,387,4.5\n370,388,4.0\n370,389,3.5\n370,390,3.0\n370,391,2.5\n370,392,2.0\n370,393,1.5\n370,394,1.0\n370,395,0.5\n370,396,1.0\n370,397,1.5\n370,398,2.0\n370,399,2.5\n370,400,11.0\n370,401,10.5\n370,402,10.0\n370,403,9.5\n370,404,9.0\n370,405,8.5\n370,406,8.0\n370,407,7.5\n370,408,7.0\n370,409,6.5\n370,410,6.0\n370,411,5.5\n370,412,5.0\n370,413,4.5\n370,414,4.0\n370,415,3.5\n370,416,3.0\n370,417,2.5\n370,418,2.0\n370,419,1.5\n370,420,1.0\n370,421,1.5\n370,422,2.0\n370,423,2.5\n370,424,3.0\n370,425,11.5\n370,426,11.0\n370,427,10.5\n370,428,10.0\n370,429,9.5\n370,430,9.0\n370,431,8.5\n370,432,8.0\n370,433,7.5\n370,434,7.0\n370,435,6.5\n370,436,6.0\n370,437,5.5\n370,438,5.0\n370,439,4.5\n370,440,4.0\n370,441,3.5\n370,442,3.0\n370,443,2.5\n370,444,2.0\n370,445,1.5\n370,446,2.0\n370,447,2.5\n370,448,3.0\n370,449,3.5\n370,450,12.0\n370,451,11.5\n370,452,11.0\n370,453,10.5\n370,454,10.0\n370,455,9.5\n370,456,9.0\n370,457,8.5\n370,458,8.0\n370,459,7.5\n370,460,7.0\n370,461,6.5\n370,462,6.0\n370,463,5.5\n370,464,5.0\n370,465,4.5\n370,466,4.0\n370,467,3.5\n370,468,3.0\n370,469,2.5\n370,470,2.0\n370,471,2.5\n370,472,3.0\n370,473,3.5\n370,474,4.0\n370,475,12.5\n370,476,12.0\n370,477,11.5\n370,478,11.0\n370,479,10.5\n370,480,10.0\n370,481,9.5\n370,482,9.0\n370,483,8.5\n370,484,8.0\n370,485,7.5\n370,486,7.0\n370,487,6.5\n370,488,6.0\n370,489,5.5\n370,490,5.0\n370,491,4.5\n370,492,4.0\n370,493,3.5\n370,494,3.0\n370,495,2.5\n370,496,3.0\n370,497,3.5\n370,498,4.0\n370,499,4.5\n370,500,13.0\n370,501,12.5\n370,502,12.0\n370,503,11.5\n370,504,11.0\n370,505,10.5\n370,506,10.0\n370,507,9.5\n370,508,9.0\n370,509,8.5\n370,510,8.0\n370,511,7.5\n370,512,7.0\n370,513,6.5\n370,514,6.0\n370,515,5.5\n370,516,5.0\n370,517,4.5\n370,518,4.0\n370,519,3.5\n370,520,3.0\n370,521,3.5\n370,522,4.0\n370,523,4.5\n370,524,5.0\n370,525,13.5\n370,526,13.0\n370,527,12.5\n370,528,12.0\n370,529,11.5\n370,530,11.0\n370,531,10.5\n370,532,10.0\n370,533,9.5\n370,534,9.0\n370,535,8.5\n370,536,8.0\n370,537,7.5\n370,538,7.0\n370,539,6.5\n370,540,6.0\n370,541,5.5\n370,542,5.0\n370,543,4.5\n370,544,4.0\n370,545,3.5\n370,546,4.0\n370,547,4.5\n370,548,5.0\n370,549,5.5\n370,550,14.0\n370,551,13.5\n370,552,13.0\n370,553,12.5\n370,554,12.0\n370,555,11.5\n370,556,11.0\n370,557,10.5\n370,558,10.0\n370,559,9.5\n370,560,9.0\n370,561,8.5\n370,562,8.0\n370,563,7.5\n370,564,7.0\n370,565,6.5\n370,566,6.0\n370,567,5.5\n370,568,5.0\n370,569,4.5\n370,570,4.0\n370,571,4.5\n370,572,5.0\n370,573,5.5\n370,574,6.0\n370,575,14.5\n370,576,14.0\n370,577,13.5\n370,578,13.0\n370,579,12.5\n370,580,12.0\n370,581,11.5\n370,582,11.0\n370,583,10.5\n370,584,10.0\n370,585,9.5\n370,586,9.0\n370,587,8.5\n370,588,8.0\n370,589,7.5\n370,590,7.0\n370,591,6.5\n370,592,6.0\n370,593,5.5\n370,594,5.0\n370,595,4.5\n370,596,5.0\n370,597,5.5\n370,598,6.0\n370,599,6.5\n370,600,15.0\n370,601,14.5\n370,602,14.0\n370,603,13.5\n370,604,13.0\n370,605,12.5\n370,606,12.0\n370,607,11.5\n370,608,11.0\n370,609,10.5\n370,610,10.0\n370,611,9.5\n370,612,9.0\n370,613,8.5\n370,614,8.0\n370,615,7.5\n370,616,7.0\n370,617,6.5\n370,618,6.0\n370,619,5.5\n370,620,5.0\n370,621,5.5\n370,622,6.0\n370,623,6.5\n370,624,7.0\n371,0,17.5\n371,1,17.0\n371,2,16.5\n371,3,16.0\n371,4,15.5\n371,5,15.0\n371,6,14.5\n371,7,14.0\n371,8,13.5\n371,9,13.0\n371,10,12.5\n371,11,12.0\n371,12,11.5\n371,13,11.0\n371,14,10.5\n371,15,10.0\n371,16,9.5\n371,17,9.0\n371,18,8.5\n371,19,8.0\n371,20,7.5\n371,21,7.0\n371,22,7.5\n371,23,8.0\n371,24,8.5\n371,25,17.0\n371,26,16.5\n371,27,16.0\n371,28,15.5\n371,29,15.0\n371,30,14.5\n371,31,14.0\n371,32,13.5\n371,33,13.0\n371,34,12.5\n371,35,12.0\n371,36,11.5\n371,37,11.0\n371,38,10.5\n371,39,10.0\n371,40,9.5\n371,41,9.0\n371,42,8.5\n371,43,8.0\n371,44,7.5\n371,45,7.0\n371,46,6.5\n371,47,7.0\n371,48,7.5\n371,49,8.0\n371,50,16.5\n371,51,16.0\n371,52,15.5\n371,53,15.0\n371,54,14.5\n371,55,14.0\n371,56,13.5\n371,57,13.0\n371,58,12.5\n371,59,12.0\n371,60,11.5\n371,61,11.0\n371,62,10.5\n371,63,10.0\n371,64,9.5\n371,65,9.0\n371,66,8.5\n371,67,8.0\n371,68,7.5\n371,69,7.0\n371,70,6.5\n371,71,6.0\n371,72,6.5\n371,73,7.0\n371,74,7.5\n371,75,16.0\n371,76,15.5\n371,77,15.0\n371,78,14.5\n371,79,14.0\n371,80,13.5\n371,81,13.0\n371,82,12.5\n371,83,12.0\n371,84,11.5\n371,85,11.0\n371,86,10.5\n371,87,10.0\n371,88,9.5\n371,89,9.0\n371,90,8.5\n371,91,8.0\n371,92,7.5\n371,93,7.0\n371,94,6.5\n371,95,6.0\n371,96,5.5\n371,97,6.0\n371,98,6.5\n371,99,7.0\n371,100,15.5\n371,101,15.0\n371,102,14.5\n371,103,14.0\n371,104,13.5\n371,105,13.0\n371,106,12.5\n371,107,12.0\n371,108,11.5\n371,109,11.0\n371,110,10.5\n371,111,10.0\n371,112,9.5\n371,113,9.0\n371,114,8.5\n371,115,8.0\n371,116,7.5\n371,117,7.0\n371,118,6.5\n371,119,6.0\n371,120,5.5\n371,121,5.0\n371,122,5.5\n371,123,6.0\n371,124,6.5\n371,125,15.0\n371,126,14.5\n371,127,14.0\n371,128,13.5\n371,129,13.0\n371,130,12.5\n371,131,12.0\n371,132,11.5\n371,133,11.0\n371,134,10.5\n371,135,10.0\n371,136,9.5\n371,137,9.0\n371,138,8.5\n371,139,8.0\n371,140,7.5\n371,141,7.0\n371,142,6.5\n371,143,6.0\n371,144,5.5\n371,145,5.0\n371,146,4.5\n371,147,5.0\n371,148,5.5\n371,149,6.0\n371,150,14.5\n371,151,14.0\n371,152,13.5\n371,153,13.0\n371,154,12.5\n371,155,12.0\n371,156,11.5\n371,157,11.0\n371,158,10.5\n371,159,10.0\n371,160,9.5\n371,161,9.0\n371,162,8.5\n371,163,8.0\n371,164,7.5\n371,165,7.0\n371,166,6.5\n371,167,6.0\n371,168,5.5\n371,169,5.0\n371,170,4.5\n371,171,4.0\n371,172,4.5\n371,173,5.0\n371,174,5.5\n371,175,14.0\n371,176,13.5\n371,177,13.0\n371,178,12.5\n371,179,12.0\n371,180,11.5\n371,181,11.0\n371,182,10.5\n371,183,10.0\n371,184,9.5\n371,185,9.0\n371,186,8.5\n371,187,8.0\n371,188,7.5\n371,189,7.0\n371,190,6.5\n371,191,6.0\n371,192,5.5\n371,193,5.0\n371,194,4.5\n371,195,4.0\n371,196,3.5\n371,197,4.0\n371,198,4.5\n371,199,5.0\n371,200,13.5\n371,201,13.0\n371,202,12.5\n371,203,12.0\n371,204,11.5\n371,205,11.0\n371,206,10.5\n371,207,10.0\n371,208,9.5\n371,209,9.0\n371,210,8.5\n371,211,8.0\n371,212,7.5\n371,213,7.0\n371,214,6.5\n371,215,6.0\n371,216,5.5\n371,217,5.0\n371,218,4.5\n371,219,4.0\n371,220,3.5\n371,221,3.0\n371,222,3.5\n371,223,4.0\n371,224,4.5\n371,225,13.0\n371,226,12.5\n371,227,12.0\n371,228,11.5\n371,229,11.0\n371,230,10.5\n371,231,10.0\n371,232,9.5\n371,233,9.0\n371,234,8.5\n371,235,8.0\n371,236,7.5\n371,237,7.0\n371,238,6.5\n371,239,6.0\n371,240,5.5\n371,241,5.0\n371,242,4.5\n371,243,4.0\n371,244,3.5\n371,245,3.0\n371,246,2.5\n371,247,3.0\n371,248,3.5\n371,249,4.0\n371,250,12.5\n371,251,12.0\n371,252,11.5\n371,253,11.0\n371,254,10.5\n371,255,10.0\n371,256,9.5\n371,257,9.0\n371,258,8.5\n371,259,8.0\n371,260,7.5\n371,261,7.0\n371,262,6.5\n371,263,6.0\n371,264,5.5\n371,265,5.0\n371,266,4.5\n371,267,4.0\n371,268,3.5\n371,269,3.0\n371,270,2.5\n371,271,2.0\n371,272,2.5\n371,273,3.0\n371,274,3.5\n371,275,12.0\n371,276,11.5\n371,277,11.0\n371,278,10.5\n371,279,10.0\n371,280,9.5\n371,281,9.0\n371,282,8.5\n371,283,8.0\n371,284,7.5\n371,285,7.0\n371,286,6.5\n371,287,6.0\n371,288,5.5\n371,289,5.0\n371,290,4.5\n371,291,4.0\n371,292,3.5\n371,293,3.0\n371,294,2.5\n371,295,2.0\n371,296,1.5\n371,297,2.0\n371,298,2.5\n371,299,3.0\n371,300,11.5\n371,301,11.0\n371,302,10.5\n371,303,10.0\n371,304,9.5\n371,305,9.0\n371,306,8.5\n371,307,8.0\n371,308,7.5\n371,309,7.0\n371,310,6.5\n371,311,6.0\n371,312,5.5\n371,313,5.0\n371,314,4.5\n371,315,4.0\n371,316,3.5\n371,317,3.0\n371,318,2.5\n371,319,2.0\n371,320,1.5\n371,321,1.0\n371,322,1.5\n371,323,2.0\n371,324,2.5\n371,325,11.0\n371,326,10.5\n371,327,10.0\n371,328,9.5\n371,329,9.0\n371,330,8.5\n371,331,8.0\n371,332,7.5\n371,333,7.0\n371,334,6.5\n371,335,6.0\n371,336,5.5\n371,337,5.0\n371,338,4.5\n371,339,4.0\n371,340,3.5\n371,341,3.0\n371,342,2.5\n371,343,2.0\n371,344,1.5\n371,345,1.0\n371,346,0.5\n371,347,1.0\n371,348,1.5\n371,349,2.0\n371,350,10.5\n371,351,10.0\n371,352,9.5\n371,353,9.0\n371,354,8.5\n371,355,8.0\n371,356,7.5\n371,357,7.0\n371,358,6.5\n371,359,6.0\n371,360,5.5\n371,361,5.0\n371,362,4.5\n371,363,4.0\n371,364,3.5\n371,365,3.0\n371,366,2.5\n371,367,2.0\n371,368,1.5\n371,369,1.0\n371,370,0.5\n371,371,0\n371,372,0.5\n371,373,1.0\n371,374,1.5\n371,375,11.0\n371,376,10.5\n371,377,10.0\n371,378,9.5\n371,379,9.0\n371,380,8.5\n371,381,8.0\n371,382,7.5\n371,383,7.0\n371,384,6.5\n371,385,6.0\n371,386,5.5\n371,387,5.0\n371,388,4.5\n371,389,4.0\n371,390,3.5\n371,391,3.0\n371,392,2.5\n371,393,2.0\n371,394,1.5\n371,395,1.0\n371,396,0.5\n371,397,1.0\n371,398,1.5\n371,399,2.0\n371,400,11.5\n371,401,11.0\n371,402,10.5\n371,403,10.0\n371,404,9.5\n371,405,9.0\n371,406,8.5\n371,407,8.0\n371,408,7.5\n371,409,7.0\n371,410,6.5\n371,411,6.0\n371,412,5.5\n371,413,5.0\n371,414,4.5\n371,415,4.0\n371,416,3.5\n371,417,3.0\n371,418,2.5\n371,419,2.0\n371,420,1.5\n371,421,1.0\n371,422,1.5\n371,423,2.0\n371,424,2.5\n371,425,12.0\n371,426,11.5\n371,427,11.0\n371,428,10.5\n371,429,10.0\n371,430,9.5\n371,431,9.0\n371,432,8.5\n371,433,8.0\n371,434,7.5\n371,435,7.0\n371,436,6.5\n371,437,6.0\n371,438,5.5\n371,439,5.0\n371,440,4.5\n371,441,4.0\n371,442,3.5\n371,443,3.0\n371,444,2.5\n371,445,2.0\n371,446,1.5\n371,447,2.0\n371,448,2.5\n371,449,3.0\n371,450,12.5\n371,451,12.0\n371,452,11.5\n371,453,11.0\n371,454,10.5\n371,455,10.0\n371,456,9.5\n371,457,9.0\n371,458,8.5\n371,459,8.0\n371,460,7.5\n371,461,7.0\n371,462,6.5\n371,463,6.0\n371,464,5.5\n371,465,5.0\n371,466,4.5\n371,467,4.0\n371,468,3.5\n371,469,3.0\n371,470,2.5\n371,471,2.0\n371,472,2.5\n371,473,3.0\n371,474,3.5\n371,475,13.0\n371,476,12.5\n371,477,12.0\n371,478,11.5\n371,479,11.0\n371,480,10.5\n371,481,10.0\n371,482,9.5\n371,483,9.0\n371,484,8.5\n371,485,8.0\n371,486,7.5\n371,487,7.0\n371,488,6.5\n371,489,6.0\n371,490,5.5\n371,491,5.0\n371,492,4.5\n371,493,4.0\n371,494,3.5\n371,495,3.0\n371,496,2.5\n371,497,3.0\n371,498,3.5\n371,499,4.0\n371,500,13.5\n371,501,13.0\n371,502,12.5\n371,503,12.0\n371,504,11.5\n371,505,11.0\n371,506,10.5\n371,507,10.0\n371,508,9.5\n371,509,9.0\n371,510,8.5\n371,511,8.0\n371,512,7.5\n371,513,7.0\n371,514,6.5\n371,515,6.0\n371,516,5.5\n371,517,5.0\n371,518,4.5\n371,519,4.0\n371,520,3.5\n371,521,3.0\n371,522,3.5\n371,523,4.0\n371,524,4.5\n371,525,14.0\n371,526,13.5\n371,527,13.0\n371,528,12.5\n371,529,12.0\n371,530,11.5\n371,531,11.0\n371,532,10.5\n371,533,10.0\n371,534,9.5\n371,535,9.0\n371,536,8.5\n371,537,8.0\n371,538,7.5\n371,539,7.0\n371,540,6.5\n371,541,6.0\n371,542,5.5\n371,543,5.0\n371,544,4.5\n371,545,4.0\n371,546,3.5\n371,547,4.0\n371,548,4.5\n371,549,5.0\n371,550,14.5\n371,551,14.0\n371,552,13.5\n371,553,13.0\n371,554,12.5\n371,555,12.0\n371,556,11.5\n371,557,11.0\n371,558,10.5\n371,559,10.0\n371,560,9.5\n371,561,9.0\n371,562,8.5\n371,563,8.0\n371,564,7.5\n371,565,7.0\n371,566,6.5\n371,567,6.0\n371,568,5.5\n371,569,5.0\n371,570,4.5\n371,571,4.0\n371,572,4.5\n371,573,5.0\n371,574,5.5\n371,575,15.0\n371,576,14.5\n371,577,14.0\n371,578,13.5\n371,579,13.0\n371,580,12.5\n371,581,12.0\n371,582,11.5\n371,583,11.0\n371,584,10.5\n371,585,10.0\n371,586,9.5\n371,587,9.0\n371,588,8.5\n371,589,8.0\n371,590,7.5\n371,591,7.0\n371,592,6.5\n371,593,6.0\n371,594,5.5\n371,595,5.0\n371,596,4.5\n371,597,5.0\n371,598,5.5\n371,599,6.0\n371,600,15.5\n371,601,15.0\n371,602,14.5\n371,603,14.0\n371,604,13.5\n371,605,13.0\n371,606,12.5\n371,607,12.0\n371,608,11.5\n371,609,11.0\n371,610,10.5\n371,611,10.0\n371,612,9.5\n371,613,9.0\n371,614,8.5\n371,615,8.0\n371,616,7.5\n371,617,7.0\n371,618,6.5\n371,619,6.0\n371,620,5.5\n371,621,5.0\n371,622,5.5\n371,623,6.0\n371,624,6.5\n372,0,18.0\n372,1,17.5\n372,2,17.0\n372,3,16.5\n372,4,16.0\n372,5,15.5\n372,6,15.0\n372,7,14.5\n372,8,14.0\n372,9,13.5\n372,10,13.0\n372,11,12.5\n372,12,12.0\n372,13,11.5\n372,14,11.0\n372,15,10.5\n372,16,10.0\n372,17,9.5\n372,18,9.0\n372,19,8.5\n372,20,8.0\n372,21,7.5\n372,22,7.0\n372,23,7.5\n372,24,8.0\n372,25,17.5\n372,26,17.0\n372,27,16.5\n372,28,16.0\n372,29,15.5\n372,30,15.0\n372,31,14.5\n372,32,14.0\n372,33,13.5\n372,34,13.0\n372,35,12.5\n372,36,12.0\n372,37,11.5\n372,38,11.0\n372,39,10.5\n372,40,10.0\n372,41,9.5\n372,42,9.0\n372,43,8.5\n372,44,8.0\n372,45,7.5\n372,46,7.0\n372,47,6.5\n372,48,7.0\n372,49,7.5\n372,50,17.0\n372,51,16.5\n372,52,16.0\n372,53,15.5\n372,54,15.0\n372,55,14.5\n372,56,14.0\n372,57,13.5\n372,58,13.0\n372,59,12.5\n372,60,12.0\n372,61,11.5\n372,62,11.0\n372,63,10.5\n372,64,10.0\n372,65,9.5\n372,66,9.0\n372,67,8.5\n372,68,8.0\n372,69,7.5\n372,70,7.0\n372,71,6.5\n372,72,6.0\n372,73,6.5\n372,74,7.0\n372,75,16.5\n372,76,16.0\n372,77,15.5\n372,78,15.0\n372,79,14.5\n372,80,14.0\n372,81,13.5\n372,82,13.0\n372,83,12.5\n372,84,12.0\n372,85,11.5\n372,86,11.0\n372,87,10.5\n372,88,10.0\n372,89,9.5\n372,90,9.0\n372,91,8.5\n372,92,8.0\n372,93,7.5\n372,94,7.0\n372,95,6.5\n372,96,6.0\n372,97,5.5\n372,98,6.0\n372,99,6.5\n372,100,16.0\n372,101,15.5\n372,102,15.0\n372,103,14.5\n372,104,14.0\n372,105,13.5\n372,106,13.0\n372,107,12.5\n372,108,12.0\n372,109,11.5\n372,110,11.0\n372,111,10.5\n372,112,10.0\n372,113,9.5\n372,114,9.0\n372,115,8.5\n372,116,8.0\n372,117,7.5\n372,118,7.0\n372,119,6.5\n372,120,6.0\n372,121,5.5\n372,122,5.0\n372,123,5.5\n372,124,6.0\n372,125,15.5\n372,126,15.0\n372,127,14.5\n372,128,14.0\n372,129,13.5\n372,130,13.0\n372,131,12.5\n372,132,12.0\n372,133,11.5\n372,134,11.0\n372,135,10.5\n372,136,10.0\n372,137,9.5\n372,138,9.0\n372,139,8.5\n372,140,8.0\n372,141,7.5\n372,142,7.0\n372,143,6.5\n372,144,6.0\n372,145,5.5\n372,146,5.0\n372,147,4.5\n372,148,5.0\n372,149,5.5\n372,150,15.0\n372,151,14.5\n372,152,14.0\n372,153,13.5\n372,154,13.0\n372,155,12.5\n372,156,12.0\n372,157,11.5\n372,158,11.0\n372,159,10.5\n372,160,10.0\n372,161,9.5\n372,162,9.0\n372,163,8.5\n372,164,8.0\n372,165,7.5\n372,166,7.0\n372,167,6.5\n372,168,6.0\n372,169,5.5\n372,170,5.0\n372,171,4.5\n372,172,4.0\n372,173,4.5\n372,174,5.0\n372,175,14.5\n372,176,14.0\n372,177,13.5\n372,178,13.0\n372,179,12.5\n372,180,12.0\n372,181,11.5\n372,182,11.0\n372,183,10.5\n372,184,10.0\n372,185,9.5\n372,186,9.0\n372,187,8.5\n372,188,8.0\n372,189,7.5\n372,190,7.0\n372,191,6.5\n372,192,6.0\n372,193,5.5\n372,194,5.0\n372,195,4.5\n372,196,4.0\n372,197,3.5\n372,198,4.0\n372,199,4.5\n372,200,14.0\n372,201,13.5\n372,202,13.0\n372,203,12.5\n372,204,12.0\n372,205,11.5\n372,206,11.0\n372,207,10.5\n372,208,10.0\n372,209,9.5\n372,210,9.0\n372,211,8.5\n372,212,8.0\n372,213,7.5\n372,214,7.0\n372,215,6.5\n372,216,6.0\n372,217,5.5\n372,218,5.0\n372,219,4.5\n372,220,4.0\n372,221,3.5\n372,222,3.0\n372,223,3.5\n372,224,4.0\n372,225,13.5\n372,226,13.0\n372,227,12.5\n372,228,12.0\n372,229,11.5\n372,230,11.0\n372,231,10.5\n372,232,10.0\n372,233,9.5\n372,234,9.0\n372,235,8.5\n372,236,8.0\n372,237,7.5\n372,238,7.0\n372,239,6.5\n372,240,6.0\n372,241,5.5\n372,242,5.0\n372,243,4.5\n372,244,4.0\n372,245,3.5\n372,246,3.0\n372,247,2.5\n372,248,3.0\n372,249,3.5\n372,250,13.0\n372,251,12.5\n372,252,12.0\n372,253,11.5\n372,254,11.0\n372,255,10.5\n372,256,10.0\n372,257,9.5\n372,258,9.0\n372,259,8.5\n372,260,8.0\n372,261,7.5\n372,262,7.0\n372,263,6.5\n372,264,6.0\n372,265,5.5\n372,266,5.0\n372,267,4.5\n372,268,4.0\n372,269,3.5\n372,270,3.0\n372,271,2.5\n372,272,2.0\n372,273,2.5\n372,274,3.0\n372,275,12.5\n372,276,12.0\n372,277,11.5\n372,278,11.0\n372,279,10.5\n372,280,10.0\n372,281,9.5\n372,282,9.0\n372,283,8.5\n372,284,8.0\n372,285,7.5\n372,286,7.0\n372,287,6.5\n372,288,6.0\n372,289,5.5\n372,290,5.0\n372,291,4.5\n372,292,4.0\n372,293,3.5\n372,294,3.0\n372,295,2.5\n372,296,2.0\n372,297,1.5\n372,298,2.0\n372,299,2.5\n372,300,12.0\n372,301,11.5\n372,302,11.0\n372,303,10.5\n372,304,10.0\n372,305,9.5\n372,306,9.0\n372,307,8.5\n372,308,8.0\n372,309,7.5\n372,310,7.0\n372,311,6.5\n372,312,6.0\n372,313,5.5\n372,314,5.0\n372,315,4.5\n372,316,4.0\n372,317,3.5\n372,318,3.0\n372,319,2.5\n372,320,2.0\n372,321,1.5\n372,322,1.0\n372,323,1.5\n372,324,2.0\n372,325,11.5\n372,326,11.0\n372,327,10.5\n372,328,10.0\n372,329,9.5\n372,330,9.0\n372,331,8.5\n372,332,8.0\n372,333,7.5\n372,334,7.0\n372,335,6.5\n372,336,6.0\n372,337,5.5\n372,338,5.0\n372,339,4.5\n372,340,4.0\n372,341,3.5\n372,342,3.0\n372,343,2.5\n372,344,2.0\n372,345,1.5\n372,346,1.0\n372,347,0.5\n372,348,1.0\n372,349,1.5\n372,350,11.0\n372,351,10.5\n372,352,10.0\n372,353,9.5\n372,354,9.0\n372,355,8.5\n372,356,8.0\n372,357,7.5\n372,358,7.0\n372,359,6.5\n372,360,6.0\n372,361,5.5\n372,362,5.0\n372,363,4.5\n372,364,4.0\n372,365,3.5\n372,366,3.0\n372,367,2.5\n372,368,2.0\n372,369,1.5\n372,370,1.0\n372,371,0.5\n372,372,0\n372,373,0.5\n372,374,1.0\n372,375,11.5\n372,376,11.0\n372,377,10.5\n372,378,10.0\n372,379,9.5\n372,380,9.0\n372,381,8.5\n372,382,8.0\n372,383,7.5\n372,384,7.0\n372,385,6.5\n372,386,6.0\n372,387,5.5\n372,388,5.0\n372,389,4.5\n372,390,4.0\n372,391,3.5\n372,392,3.0\n372,393,2.5\n372,394,2.0\n372,395,1.5\n372,396,1.0\n372,397,0.5\n372,398,1.0\n372,399,1.5\n372,400,12.0\n372,401,11.5\n372,402,11.0\n372,403,10.5\n372,404,10.0\n372,405,9.5\n372,406,9.0\n372,407,8.5\n372,408,8.0\n372,409,7.5\n372,410,7.0\n372,411,6.5\n372,412,6.0\n372,413,5.5\n372,414,5.0\n372,415,4.5\n372,416,4.0\n372,417,3.5\n372,418,3.0\n372,419,2.5\n372,420,2.0\n372,421,1.5\n372,422,1.0\n372,423,1.5\n372,424,2.0\n372,425,12.5\n372,426,12.0\n372,427,11.5\n372,428,11.0\n372,429,10.5\n372,430,10.0\n372,431,9.5\n372,432,9.0\n372,433,8.5\n372,434,8.0\n372,435,7.5\n372,436,7.0\n372,437,6.5\n372,438,6.0\n372,439,5.5\n372,440,5.0\n372,441,4.5\n372,442,4.0\n372,443,3.5\n372,444,3.0\n372,445,2.5\n372,446,2.0\n372,447,1.5\n372,448,2.0\n372,449,2.5\n372,450,13.0\n372,451,12.5\n372,452,12.0\n372,453,11.5\n372,454,11.0\n372,455,10.5\n372,456,10.0\n372,457,9.5\n372,458,9.0\n372,459,8.5\n372,460,8.0\n372,461,7.5\n372,462,7.0\n372,463,6.5\n372,464,6.0\n372,465,5.5\n372,466,5.0\n372,467,4.5\n372,468,4.0\n372,469,3.5\n372,470,3.0\n372,471,2.5\n372,472,2.0\n372,473,2.5\n372,474,3.0\n372,475,13.5\n372,476,13.0\n372,477,12.5\n372,478,12.0\n372,479,11.5\n372,480,11.0\n372,481,10.5\n372,482,10.0\n372,483,9.5\n372,484,9.0\n372,485,8.5\n372,486,8.0\n372,487,7.5\n372,488,7.0\n372,489,6.5\n372,490,6.0\n372,491,5.5\n372,492,5.0\n372,493,4.5\n372,494,4.0\n372,495,3.5\n372,496,3.0\n372,497,2.5\n372,498,3.0\n372,499,3.5\n372,500,14.0\n372,501,13.5\n372,502,13.0\n372,503,12.5\n372,504,12.0\n372,505,11.5\n372,506,11.0\n372,507,10.5\n372,508,10.0\n372,509,9.5\n372,510,9.0\n372,511,8.5\n372,512,8.0\n372,513,7.5\n372,514,7.0\n372,515,6.5\n372,516,6.0\n372,517,5.5\n372,518,5.0\n372,519,4.5\n372,520,4.0\n372,521,3.5\n372,522,3.0\n372,523,3.5\n372,524,4.0\n372,525,14.5\n372,526,14.0\n372,527,13.5\n372,528,13.0\n372,529,12.5\n372,530,12.0\n372,531,11.5\n372,532,11.0\n372,533,10.5\n372,534,10.0\n372,535,9.5\n372,536,9.0\n372,537,8.5\n372,538,8.0\n372,539,7.5\n372,540,7.0\n372,541,6.5\n372,542,6.0\n372,543,5.5\n372,544,5.0\n372,545,4.5\n372,546,4.0\n372,547,3.5\n372,548,4.0\n372,549,4.5\n372,550,15.0\n372,551,14.5\n372,552,14.0\n372,553,13.5\n372,554,13.0\n372,555,12.5\n372,556,12.0\n372,557,11.5\n372,558,11.0\n372,559,10.5\n372,560,10.0\n372,561,9.5\n372,562,9.0\n372,563,8.5\n372,564,8.0\n372,565,7.5\n372,566,7.0\n372,567,6.5\n372,568,6.0\n372,569,5.5\n372,570,5.0\n372,571,4.5\n372,572,4.0\n372,573,4.5\n372,574,5.0\n372,575,15.5\n372,576,15.0\n372,577,14.5\n372,578,14.0\n372,579,13.5\n372,580,13.0\n372,581,12.5\n372,582,12.0\n372,583,11.5\n372,584,11.0\n372,585,10.5\n372,586,10.0\n372,587,9.5\n372,588,9.0\n372,589,8.5\n372,590,8.0\n372,591,7.5\n372,592,7.0\n372,593,6.5\n372,594,6.0\n372,595,5.5\n372,596,5.0\n372,597,4.5\n372,598,5.0\n372,599,5.5\n372,600,16.0\n372,601,15.5\n372,602,15.0\n372,603,14.5\n372,604,14.0\n372,605,13.5\n372,606,13.0\n372,607,12.5\n372,608,12.0\n372,609,11.5\n372,610,11.0\n372,611,10.5\n372,612,10.0\n372,613,9.5\n372,614,9.0\n372,615,8.5\n372,616,8.0\n372,617,7.5\n372,618,7.0\n372,619,6.5\n372,620,6.0\n372,621,5.5\n372,622,5.0\n372,623,5.5\n372,624,6.0\n373,0,18.5\n373,1,18.0\n373,2,17.5\n373,3,17.0\n373,4,16.5\n373,5,16.0\n373,6,15.5\n373,7,15.0\n373,8,14.5\n373,9,14.0\n373,10,13.5\n373,11,13.0\n373,12,12.5\n373,13,12.0\n373,14,11.5\n373,15,11.0\n373,16,10.5\n373,17,10.0\n373,18,9.5\n373,19,9.0\n373,20,8.5\n373,21,8.0\n373,22,7.5\n373,23,7.0\n373,24,7.5\n373,25,18.0\n373,26,17.5\n373,27,17.0\n373,28,16.5\n373,29,16.0\n373,30,15.5\n373,31,15.0\n373,32,14.5\n373,33,14.0\n373,34,13.5\n373,35,13.0\n373,36,12.5\n373,37,12.0\n373,38,11.5\n373,39,11.0\n373,40,10.5\n373,41,10.0\n373,42,9.5\n373,43,9.0\n373,44,8.5\n373,45,8.0\n373,46,7.5\n373,47,7.0\n373,48,6.5\n373,49,7.0\n373,50,17.5\n373,51,17.0\n373,52,16.5\n373,53,16.0\n373,54,15.5\n373,55,15.0\n373,56,14.5\n373,57,14.0\n373,58,13.5\n373,59,13.0\n373,60,12.5\n373,61,12.0\n373,62,11.5\n373,63,11.0\n373,64,10.5\n373,65,10.0\n373,66,9.5\n373,67,9.0\n373,68,8.5\n373,69,8.0\n373,70,7.5\n373,71,7.0\n373,72,6.5\n373,73,6.0\n373,74,6.5\n373,75,17.0\n373,76,16.5\n373,77,16.0\n373,78,15.5\n373,79,15.0\n373,80,14.5\n373,81,14.0\n373,82,13.5\n373,83,13.0\n373,84,12.5\n373,85,12.0\n373,86,11.5\n373,87,11.0\n373,88,10.5\n373,89,10.0\n373,90,9.5\n373,91,9.0\n373,92,8.5\n373,93,8.0\n373,94,7.5\n373,95,7.0\n373,96,6.5\n373,97,6.0\n373,98,5.5\n373,99,6.0\n373,100,16.5\n373,101,16.0\n373,102,15.5\n373,103,15.0\n373,104,14.5\n373,105,14.0\n373,106,13.5\n373,107,13.0\n373,108,12.5\n373,109,12.0\n373,110,11.5\n373,111,11.0\n373,112,10.5\n373,113,10.0\n373,114,9.5\n373,115,9.0\n373,116,8.5\n373,117,8.0\n373,118,7.5\n373,119,7.0\n373,120,6.5\n373,121,6.0\n373,122,5.5\n373,123,5.0\n373,124,5.5\n373,125,16.0\n373,126,15.5\n373,127,15.0\n373,128,14.5\n373,129,14.0\n373,130,13.5\n373,131,13.0\n373,132,12.5\n373,133,12.0\n373,134,11.5\n373,135,11.0\n373,136,10.5\n373,137,10.0\n373,138,9.5\n373,139,9.0\n373,140,8.5\n373,141,8.0\n373,142,7.5\n373,143,7.0\n373,144,6.5\n373,145,6.0\n373,146,5.5\n373,147,5.0\n373,148,4.5\n373,149,5.0\n373,150,15.5\n373,151,15.0\n373,152,14.5\n373,153,14.0\n373,154,13.5\n373,155,13.0\n373,156,12.5\n373,157,12.0\n373,158,11.5\n373,159,11.0\n373,160,10.5\n373,161,10.0\n373,162,9.5\n373,163,9.0\n373,164,8.5\n373,165,8.0\n373,166,7.5\n373,167,7.0\n373,168,6.5\n373,169,6.0\n373,170,5.5\n373,171,5.0\n373,172,4.5\n373,173,4.0\n373,174,4.5\n373,175,15.0\n373,176,14.5\n373,177,14.0\n373,178,13.5\n373,179,13.0\n373,180,12.5\n373,181,12.0\n373,182,11.5\n373,183,11.0\n373,184,10.5\n373,185,10.0\n373,186,9.5\n373,187,9.0\n373,188,8.5\n373,189,8.0\n373,190,7.5\n373,191,7.0\n373,192,6.5\n373,193,6.0\n373,194,5.5\n373,195,5.0\n373,196,4.5\n373,197,4.0\n373,198,3.5\n373,199,4.0\n373,200,14.5\n373,201,14.0\n373,202,13.5\n373,203,13.0\n373,204,12.5\n373,205,12.0\n373,206,11.5\n373,207,11.0\n373,208,10.5\n373,209,10.0\n373,210,9.5\n373,211,9.0\n373,212,8.5\n373,213,8.0\n373,214,7.5\n373,215,7.0\n373,216,6.5\n373,217,6.0\n373,218,5.5\n373,219,5.0\n373,220,4.5\n373,221,4.0\n373,222,3.5\n373,223,3.0\n373,224,3.5\n373,225,14.0\n373,226,13.5\n373,227,13.0\n373,228,12.5\n373,229,12.0\n373,230,11.5\n373,231,11.0\n373,232,10.5\n373,233,10.0\n373,234,9.5\n373,235,9.0\n373,236,8.5\n373,237,8.0\n373,238,7.5\n373,239,7.0\n373,240,6.5\n373,241,6.0\n373,242,5.5\n373,243,5.0\n373,244,4.5\n373,245,4.0\n373,246,3.5\n373,247,3.0\n373,248,2.5\n373,249,3.0\n373,250,13.5\n373,251,13.0\n373,252,12.5\n373,253,12.0\n373,254,11.5\n373,255,11.0\n373,256,10.5\n373,257,10.0\n373,258,9.5\n373,259,9.0\n373,260,8.5\n373,261,8.0\n373,262,7.5\n373,263,7.0\n373,264,6.5\n373,265,6.0\n373,266,5.5\n373,267,5.0\n373,268,4.5\n373,269,4.0\n373,270,3.5\n373,271,3.0\n373,272,2.5\n373,273,2.0\n373,274,2.5\n373,275,13.0\n373,276,12.5\n373,277,12.0\n373,278,11.5\n373,279,11.0\n373,280,10.5\n373,281,10.0\n373,282,9.5\n373,283,9.0\n373,284,8.5\n373,285,8.0\n373,286,7.5\n373,287,7.0\n373,288,6.5\n373,289,6.0\n373,290,5.5\n373,291,5.0\n373,292,4.5\n373,293,4.0\n373,294,3.5\n373,295,3.0\n373,296,2.5\n373,297,2.0\n373,298,1.5\n373,299,2.0\n373,300,12.5\n373,301,12.0\n373,302,11.5\n373,303,11.0\n373,304,10.5\n373,305,10.0\n373,306,9.5\n373,307,9.0\n373,308,8.5\n373,309,8.0\n373,310,7.5\n373,311,7.0\n373,312,6.5\n373,313,6.0\n373,314,5.5\n373,315,5.0\n373,316,4.5\n373,317,4.0\n373,318,3.5\n373,319,3.0\n373,320,2.5\n373,321,2.0\n373,322,1.5\n373,323,1.0\n373,324,1.5\n373,325,12.0\n373,326,11.5\n373,327,11.0\n373,328,10.5\n373,329,10.0\n373,330,9.5\n373,331,9.0\n373,332,8.5\n373,333,8.0\n373,334,7.5\n373,335,7.0\n373,336,6.5\n373,337,6.0\n373,338,5.5\n373,339,5.0\n373,340,4.5\n373,341,4.0\n373,342,3.5\n373,343,3.0\n373,344,2.5\n373,345,2.0\n373,346,1.5\n373,347,1.0\n373,348,0.5\n373,349,1.0\n373,350,11.5\n373,351,11.0\n373,352,10.5\n373,353,10.0\n373,354,9.5\n373,355,9.0\n373,356,8.5\n373,357,8.0\n373,358,7.5\n373,359,7.0\n373,360,6.5\n373,361,6.0\n373,362,5.5\n373,363,5.0\n373,364,4.5\n373,365,4.0\n373,366,3.5\n373,367,3.0\n373,368,2.5\n373,369,2.0\n373,370,1.5\n373,371,1.0\n373,372,0.5\n373,373,0\n373,374,0.5\n373,375,12.0\n373,376,11.5\n373,377,11.0\n373,378,10.5\n373,379,10.0\n373,380,9.5\n373,381,9.0\n373,382,8.5\n373,383,8.0\n373,384,7.5\n373,385,7.0\n373,386,6.5\n373,387,6.0\n373,388,5.5\n373,389,5.0\n373,390,4.5\n373,391,4.0\n373,392,3.5\n373,393,3.0\n373,394,2.5\n373,395,2.0\n373,396,1.5\n373,397,1.0\n373,398,0.5\n373,399,1.0\n373,400,12.5\n373,401,12.0\n373,402,11.5\n373,403,11.0\n373,404,10.5\n373,405,10.0\n373,406,9.5\n373,407,9.0\n373,408,8.5\n373,409,8.0\n373,410,7.5\n373,411,7.0\n373,412,6.5\n373,413,6.0\n373,414,5.5\n373,415,5.0\n373,416,4.5\n373,417,4.0\n373,418,3.5\n373,419,3.0\n373,420,2.5\n373,421,2.0\n373,422,1.5\n373,423,1.0\n373,424,1.5\n373,425,13.0\n373,426,12.5\n373,427,12.0\n373,428,11.5\n373,429,11.0\n373,430,10.5\n373,431,10.0\n373,432,9.5\n373,433,9.0\n373,434,8.5\n373,435,8.0\n373,436,7.5\n373,437,7.0\n373,438,6.5\n373,439,6.0\n373,440,5.5\n373,441,5.0\n373,442,4.5\n373,443,4.0\n373,444,3.5\n373,445,3.0\n373,446,2.5\n373,447,2.0\n373,448,1.5\n373,449,2.0\n373,450,13.5\n373,451,13.0\n373,452,12.5\n373,453,12.0\n373,454,11.5\n373,455,11.0\n373,456,10.5\n373,457,10.0\n373,458,9.5\n373,459,9.0\n373,460,8.5\n373,461,8.0\n373,462,7.5\n373,463,7.0\n373,464,6.5\n373,465,6.0\n373,466,5.5\n373,467,5.0\n373,468,4.5\n373,469,4.0\n373,470,3.5\n373,471,3.0\n373,472,2.5\n373,473,2.0\n373,474,2.5\n373,475,14.0\n373,476,13.5\n373,477,13.0\n373,478,12.5\n373,479,12.0\n373,480,11.5\n373,481,11.0\n373,482,10.5\n373,483,10.0\n373,484,9.5\n373,485,9.0\n373,486,8.5\n373,487,8.0\n373,488,7.5\n373,489,7.0\n373,490,6.5\n373,491,6.0\n373,492,5.5\n373,493,5.0\n373,494,4.5\n373,495,4.0\n373,496,3.5\n373,497,3.0\n373,498,2.5\n373,499,3.0\n373,500,14.5\n373,501,14.0\n373,502,13.5\n373,503,13.0\n373,504,12.5\n373,505,12.0\n373,506,11.5\n373,507,11.0\n373,508,10.5\n373,509,10.0\n373,510,9.5\n373,511,9.0\n373,512,8.5\n373,513,8.0\n373,514,7.5\n373,515,7.0\n373,516,6.5\n373,517,6.0\n373,518,5.5\n373,519,5.0\n373,520,4.5\n373,521,4.0\n373,522,3.5\n373,523,3.0\n373,524,3.5\n373,525,15.0\n373,526,14.5\n373,527,14.0\n373,528,13.5\n373,529,13.0\n373,530,12.5\n373,531,12.0\n373,532,11.5\n373,533,11.0\n373,534,10.5\n373,535,10.0\n373,536,9.5\n373,537,9.0\n373,538,8.5\n373,539,8.0\n373,540,7.5\n373,541,7.0\n373,542,6.5\n373,543,6.0\n373,544,5.5\n373,545,5.0\n373,546,4.5\n373,547,4.0\n373,548,3.5\n373,549,4.0\n373,550,15.5\n373,551,15.0\n373,552,14.5\n373,553,14.0\n373,554,13.5\n373,555,13.0\n373,556,12.5\n373,557,12.0\n373,558,11.5\n373,559,11.0\n373,560,10.5\n373,561,10.0\n373,562,9.5\n373,563,9.0\n373,564,8.5\n373,565,8.0\n373,566,7.5\n373,567,7.0\n373,568,6.5\n373,569,6.0\n373,570,5.5\n373,571,5.0\n373,572,4.5\n373,573,4.0\n373,574,4.5\n373,575,16.0\n373,576,15.5\n373,577,15.0\n373,578,14.5\n373,579,14.0\n373,580,13.5\n373,581,13.0\n373,582,12.5\n373,583,12.0\n373,584,11.5\n373,585,11.0\n373,586,10.5\n373,587,10.0\n373,588,9.5\n373,589,9.0\n373,590,8.5\n373,591,8.0\n373,592,7.5\n373,593,7.0\n373,594,6.5\n373,595,6.0\n373,596,5.5\n373,597,5.0\n373,598,4.5\n373,599,5.0\n373,600,16.5\n373,601,16.0\n373,602,15.5\n373,603,15.0\n373,604,14.5\n373,605,14.0\n373,606,13.5\n373,607,13.0\n373,608,12.5\n373,609,12.0\n373,610,11.5\n373,611,11.0\n373,612,10.5\n373,613,10.0\n373,614,9.5\n373,615,9.0\n373,616,8.5\n373,617,8.0\n373,618,7.5\n373,619,7.0\n373,620,6.5\n373,621,6.0\n373,622,5.5\n373,623,5.0\n373,624,5.5\n374,0,19.0\n374,1,18.5\n374,2,18.0\n374,3,17.5\n374,4,17.0\n374,5,16.5\n374,6,16.0\n374,7,15.5\n374,8,15.0\n374,9,14.5\n374,10,14.0\n374,11,13.5\n374,12,13.0\n374,13,12.5\n374,14,12.0\n374,15,11.5\n374,16,11.0\n374,17,10.5\n374,18,10.0\n374,19,9.5\n374,20,9.0\n374,21,8.5\n374,22,8.0\n374,23,7.5\n374,24,7.0\n374,25,18.5\n374,26,18.0\n374,27,17.5\n374,28,17.0\n374,29,16.5\n374,30,16.0\n374,31,15.5\n374,32,15.0\n374,33,14.5\n374,34,14.0\n374,35,13.5\n374,36,13.0\n374,37,12.5\n374,38,12.0\n374,39,11.5\n374,40,11.0\n374,41,10.5\n374,42,10.0\n374,43,9.5\n374,44,9.0\n374,45,8.5\n374,46,8.0\n374,47,7.5\n374,48,7.0\n374,49,6.5\n374,50,18.0\n374,51,17.5\n374,52,17.0\n374,53,16.5\n374,54,16.0\n374,55,15.5\n374,56,15.0\n374,57,14.5\n374,58,14.0\n374,59,13.5\n374,60,13.0\n374,61,12.5\n374,62,12.0\n374,63,11.5\n374,64,11.0\n374,65,10.5\n374,66,10.0\n374,67,9.5\n374,68,9.0\n374,69,8.5\n374,70,8.0\n374,71,7.5\n374,72,7.0\n374,73,6.5\n374,74,6.0\n374,75,17.5\n374,76,17.0\n374,77,16.5\n374,78,16.0\n374,79,15.5\n374,80,15.0\n374,81,14.5\n374,82,14.0\n374,83,13.5\n374,84,13.0\n374,85,12.5\n374,86,12.0\n374,87,11.5\n374,88,11.0\n374,89,10.5\n374,90,10.0\n374,91,9.5\n374,92,9.0\n374,93,8.5\n374,94,8.0\n374,95,7.5\n374,96,7.0\n374,97,6.5\n374,98,6.0\n374,99,5.5\n374,100,17.0\n374,101,16.5\n374,102,16.0\n374,103,15.5\n374,104,15.0\n374,105,14.5\n374,106,14.0\n374,107,13.5\n374,108,13.0\n374,109,12.5\n374,110,12.0\n374,111,11.5\n374,112,11.0\n374,113,10.5\n374,114,10.0\n374,115,9.5\n374,116,9.0\n374,117,8.5\n374,118,8.0\n374,119,7.5\n374,120,7.0\n374,121,6.5\n374,122,6.0\n374,123,5.5\n374,124,5.0\n374,125,16.5\n374,126,16.0\n374,127,15.5\n374,128,15.0\n374,129,14.5\n374,130,14.0\n374,131,13.5\n374,132,13.0\n374,133,12.5\n374,134,12.0\n374,135,11.5\n374,136,11.0\n374,137,10.5\n374,138,10.0\n374,139,9.5\n374,140,9.0\n374,141,8.5\n374,142,8.0\n374,143,7.5\n374,144,7.0\n374,145,6.5\n374,146,6.0\n374,147,5.5\n374,148,5.0\n374,149,4.5\n374,150,16.0\n374,151,15.5\n374,152,15.0\n374,153,14.5\n374,154,14.0\n374,155,13.5\n374,156,13.0\n374,157,12.5\n374,158,12.0\n374,159,11.5\n374,160,11.0\n374,161,10.5\n374,162,10.0\n374,163,9.5\n374,164,9.0\n374,165,8.5\n374,166,8.0\n374,167,7.5\n374,168,7.0\n374,169,6.5\n374,170,6.0\n374,171,5.5\n374,172,5.0\n374,173,4.5\n374,174,4.0\n374,175,15.5\n374,176,15.0\n374,177,14.5\n374,178,14.0\n374,179,13.5\n374,180,13.0\n374,181,12.5\n374,182,12.0\n374,183,11.5\n374,184,11.0\n374,185,10.5\n374,186,10.0\n374,187,9.5\n374,188,9.0\n374,189,8.5\n374,190,8.0\n374,191,7.5\n374,192,7.0\n374,193,6.5\n374,194,6.0\n374,195,5.5\n374,196,5.0\n374,197,4.5\n374,198,4.0\n374,199,3.5\n374,200,15.0\n374,201,14.5\n374,202,14.0\n374,203,13.5\n374,204,13.0\n374,205,12.5\n374,206,12.0\n374,207,11.5\n374,208,11.0\n374,209,10.5\n374,210,10.0\n374,211,9.5\n374,212,9.0\n374,213,8.5\n374,214,8.0\n374,215,7.5\n374,216,7.0\n374,217,6.5\n374,218,6.0\n374,219,5.5\n374,220,5.0\n374,221,4.5\n374,222,4.0\n374,223,3.5\n374,224,3.0\n374,225,14.5\n374,226,14.0\n374,227,13.5\n374,228,13.0\n374,229,12.5\n374,230,12.0\n374,231,11.5\n374,232,11.0\n374,233,10.5\n374,234,10.0\n374,235,9.5\n374,236,9.0\n374,237,8.5\n374,238,8.0\n374,239,7.5\n374,240,7.0\n374,241,6.5\n374,242,6.0\n374,243,5.5\n374,244,5.0\n374,245,4.5\n374,246,4.0\n374,247,3.5\n374,248,3.0\n374,249,2.5\n374,250,14.0\n374,251,13.5\n374,252,13.0\n374,253,12.5\n374,254,12.0\n374,255,11.5\n374,256,11.0\n374,257,10.5\n374,258,10.0\n374,259,9.5\n374,260,9.0\n374,261,8.5\n374,262,8.0\n374,263,7.5\n374,264,7.0\n374,265,6.5\n374,266,6.0\n374,267,5.5\n374,268,5.0\n374,269,4.5\n374,270,4.0\n374,271,3.5\n374,272,3.0\n374,273,2.5\n374,274,2.0\n374,275,13.5\n374,276,13.0\n374,277,12.5\n374,278,12.0\n374,279,11.5\n374,280,11.0\n374,281,10.5\n374,282,10.0\n374,283,9.5\n374,284,9.0\n374,285,8.5\n374,286,8.0\n374,287,7.5\n374,288,7.0\n374,289,6.5\n374,290,6.0\n374,291,5.5\n374,292,5.0\n374,293,4.5\n374,294,4.0\n374,295,3.5\n374,296,3.0\n374,297,2.5\n374,298,2.0\n374,299,1.5\n374,300,13.0\n374,301,12.5\n374,302,12.0\n374,303,11.5\n374,304,11.0\n374,305,10.5\n374,306,10.0\n374,307,9.5\n374,308,9.0\n374,309,8.5\n374,310,8.0\n374,311,7.5\n374,312,7.0\n374,313,6.5\n374,314,6.0\n374,315,5.5\n374,316,5.0\n374,317,4.5\n374,318,4.0\n374,319,3.5\n374,320,3.0\n374,321,2.5\n374,322,2.0\n374,323,1.5\n374,324,1.0\n374,325,12.5\n374,326,12.0\n374,327,11.5\n374,328,11.0\n374,329,10.5\n374,330,10.0\n374,331,9.5\n374,332,9.0\n374,333,8.5\n374,334,8.0\n374,335,7.5\n374,336,7.0\n374,337,6.5\n374,338,6.0\n374,339,5.5\n374,340,5.0\n374,341,4.5\n374,342,4.0\n374,343,3.5\n374,344,3.0\n374,345,2.5\n374,346,2.0\n374,347,1.5\n374,348,1.0\n374,349,0.5\n374,350,12.0\n374,351,11.5\n374,352,11.0\n374,353,10.5\n374,354,10.0\n374,355,9.5\n374,356,9.0\n374,357,8.5\n374,358,8.0\n374,359,7.5\n374,360,7.0\n374,361,6.5\n374,362,6.0\n374,363,5.5\n374,364,5.0\n374,365,4.5\n374,366,4.0\n374,367,3.5\n374,368,3.0\n374,369,2.5\n374,370,2.0\n374,371,1.5\n374,372,1.0\n374,373,0.5\n374,374,0\n374,375,12.5\n374,376,12.0\n374,377,11.5\n374,378,11.0\n374,379,10.5\n374,380,10.0\n374,381,9.5\n374,382,9.0\n374,383,8.5\n374,384,8.0\n374,385,7.5\n374,386,7.0\n374,387,6.5\n374,388,6.0\n374,389,5.5\n374,390,5.0\n374,391,4.5\n374,392,4.0\n374,393,3.5\n374,394,3.0\n374,395,2.5\n374,396,2.0\n374,397,1.5\n374,398,1.0\n374,399,0.5\n374,400,13.0\n374,401,12.5\n374,402,12.0\n374,403,11.5\n374,404,11.0\n374,405,10.5\n374,406,10.0\n374,407,9.5\n374,408,9.0\n374,409,8.5\n374,410,8.0\n374,411,7.5\n374,412,7.0\n374,413,6.5\n374,414,6.0\n374,415,5.5\n374,416,5.0\n374,417,4.5\n374,418,4.0\n374,419,3.5\n374,420,3.0\n374,421,2.5\n374,422,2.0\n374,423,1.5\n374,424,1.0\n374,425,13.5\n374,426,13.0\n374,427,12.5\n374,428,12.0\n374,429,11.5\n374,430,11.0\n374,431,10.5\n374,432,10.0\n374,433,9.5\n374,434,9.0\n374,435,8.5\n374,436,8.0\n374,437,7.5\n374,438,7.0\n374,439,6.5\n374,440,6.0\n374,441,5.5\n374,442,5.0\n374,443,4.5\n374,444,4.0\n374,445,3.5\n374,446,3.0\n374,447,2.5\n374,448,2.0\n374,449,1.5\n374,450,14.0\n374,451,13.5\n374,452,13.0\n374,453,12.5\n374,454,12.0\n374,455,11.5\n374,456,11.0\n374,457,10.5\n374,458,10.0\n374,459,9.5\n374,460,9.0\n374,461,8.5\n374,462,8.0\n374,463,7.5\n374,464,7.0\n374,465,6.5\n374,466,6.0\n374,467,5.5\n374,468,5.0\n374,469,4.5\n374,470,4.0\n374,471,3.5\n374,472,3.0\n374,473,2.5\n374,474,2.0\n374,475,14.5\n374,476,14.0\n374,477,13.5\n374,478,13.0\n374,479,12.5\n374,480,12.0\n374,481,11.5\n374,482,11.0\n374,483,10.5\n374,484,10.0\n374,485,9.5\n374,486,9.0\n374,487,8.5\n374,488,8.0\n374,489,7.5\n374,490,7.0\n374,491,6.5\n374,492,6.0\n374,493,5.5\n374,494,5.0\n374,495,4.5\n374,496,4.0\n374,497,3.5\n374,498,3.0\n374,499,2.5\n374,500,15.0\n374,501,14.5\n374,502,14.0\n374,503,13.5\n374,504,13.0\n374,505,12.5\n374,506,12.0\n374,507,11.5\n374,508,11.0\n374,509,10.5\n374,510,10.0\n374,511,9.5\n374,512,9.0\n374,513,8.5\n374,514,8.0\n374,515,7.5\n374,516,7.0\n374,517,6.5\n374,518,6.0\n374,519,5.5\n374,520,5.0\n374,521,4.5\n374,522,4.0\n374,523,3.5\n374,524,3.0\n374,525,15.5\n374,526,15.0\n374,527,14.5\n374,528,14.0\n374,529,13.5\n374,530,13.0\n374,531,12.5\n374,532,12.0\n374,533,11.5\n374,534,11.0\n374,535,10.5\n374,536,10.0\n374,537,9.5\n374,538,9.0\n374,539,8.5\n374,540,8.0\n374,541,7.5\n374,542,7.0\n374,543,6.5\n374,544,6.0\n374,545,5.5\n374,546,5.0\n374,547,4.5\n374,548,4.0\n374,549,3.5\n374,550,16.0\n374,551,15.5\n374,552,15.0\n374,553,14.5\n374,554,14.0\n374,555,13.5\n374,556,13.0\n374,557,12.5\n374,558,12.0\n374,559,11.5\n374,560,11.0\n374,561,10.5\n374,562,10.0\n374,563,9.5\n374,564,9.0\n374,565,8.5\n374,566,8.0\n374,567,7.5\n374,568,7.0\n374,569,6.5\n374,570,6.0\n374,571,5.5\n374,572,5.0\n374,573,4.5\n374,574,4.0\n374,575,16.5\n374,576,16.0\n374,577,15.5\n374,578,15.0\n374,579,14.5\n374,580,14.0\n374,581,13.5\n374,582,13.0\n374,583,12.5\n374,584,12.0\n374,585,11.5\n374,586,11.0\n374,587,10.5\n374,588,10.0\n374,589,9.5\n374,590,9.0\n374,591,8.5\n374,592,8.0\n374,593,7.5\n374,594,7.0\n374,595,6.5\n374,596,6.0\n374,597,5.5\n374,598,5.0\n374,599,4.5\n374,600,17.0\n374,601,16.5\n374,602,16.0\n374,603,15.5\n374,604,15.0\n374,605,14.5\n374,606,14.0\n374,607,13.5\n374,608,13.0\n374,609,12.5\n374,610,12.0\n374,611,11.5\n374,612,11.0\n374,613,10.5\n374,614,10.0\n374,615,9.5\n374,616,9.0\n374,617,8.5\n374,618,8.0\n374,619,7.5\n374,620,7.0\n374,621,6.5\n374,622,6.0\n374,623,5.5\n374,624,5.0\n375,0,7.5\n375,1,8.0\n375,2,8.5\n375,3,9.0\n375,4,9.5\n375,5,10.0\n375,6,10.5\n375,7,11.0\n375,8,11.5\n375,9,12.0\n375,10,12.5\n375,11,13.0\n375,12,13.5\n375,13,14.0\n375,14,14.5\n375,15,15.0\n375,16,15.5\n375,17,16.0\n375,18,16.5\n375,19,17.0\n375,20,17.5\n375,21,18.0\n375,22,18.5\n375,23,19.0\n375,24,19.5\n375,25,7.0\n375,26,7.5\n375,27,8.0\n375,28,8.5\n375,29,9.0\n375,30,9.5\n375,31,10.0\n375,32,10.5\n375,33,11.0\n375,34,11.5\n375,35,12.0\n375,36,12.5\n375,37,13.0\n375,38,13.5\n375,39,14.0\n375,40,14.5\n375,41,15.0\n375,42,15.5\n375,43,16.0\n375,44,16.5\n375,45,17.0\n375,46,17.5\n375,47,18.0\n375,48,18.5\n375,49,19.0\n375,50,6.5\n375,51,7.0\n375,52,7.5\n375,53,8.0\n375,54,8.5\n375,55,9.0\n375,56,9.5\n375,57,10.0\n375,58,10.5\n375,59,11.0\n375,60,11.5\n375,61,12.0\n375,62,12.5\n375,63,13.0\n375,64,13.5\n375,65,14.0\n375,66,14.5\n375,67,15.0\n375,68,15.5\n375,69,16.0\n375,70,16.5\n375,71,17.0\n375,72,17.5\n375,73,18.0\n375,74,18.5\n375,75,6.0\n375,76,6.5\n375,77,7.0\n375,78,7.5\n375,79,8.0\n375,80,8.5\n375,81,9.0\n375,82,9.5\n375,83,10.0\n375,84,10.5\n375,85,11.0\n375,86,11.5\n375,87,12.0\n375,88,12.5\n375,89,13.0\n375,90,13.5\n375,91,14.0\n375,92,14.5\n375,93,15.0\n375,94,15.5\n375,95,16.0\n375,96,16.5\n375,97,17.0\n375,98,17.5\n375,99,18.0\n375,100,5.5\n375,101,6.0\n375,102,6.5\n375,103,7.0\n375,104,7.5\n375,105,8.0\n375,106,8.5\n375,107,9.0\n375,108,9.5\n375,109,10.0\n375,110,10.5\n375,111,11.0\n375,112,11.5\n375,113,12.0\n375,114,12.5\n375,115,13.0\n375,116,13.5\n375,117,14.0\n375,118,14.5\n375,119,15.0\n375,120,15.5\n375,121,16.0\n375,122,16.5\n375,123,17.0\n375,124,17.5\n375,125,5.0\n375,126,5.5\n375,127,6.0\n375,128,6.5\n375,129,7.0\n375,130,7.5\n375,131,8.0\n375,132,8.5\n375,133,9.0\n375,134,9.5\n375,135,10.0\n375,136,10.5\n375,137,11.0\n375,138,11.5\n375,139,12.0\n375,140,12.5\n375,141,13.0\n375,142,13.5\n375,143,14.0\n375,144,14.5\n375,145,15.0\n375,146,15.5\n375,147,16.0\n375,148,16.5\n375,149,17.0\n375,150,4.5\n375,151,5.0\n375,152,5.5\n375,153,6.0\n375,154,6.5\n375,155,7.0\n375,156,7.5\n375,157,8.0\n375,158,8.5\n375,159,9.0\n375,160,9.5\n375,161,10.0\n375,162,10.5\n375,163,11.0\n375,164,11.5\n375,165,12.0\n375,166,12.5\n375,167,13.0\n375,168,13.5\n375,169,14.0\n375,170,14.5\n375,171,15.0\n375,172,15.5\n375,173,16.0\n375,174,16.5\n375,175,4.0\n375,176,4.5\n375,177,5.0\n375,178,5.5\n375,179,6.0\n375,180,6.5\n375,181,7.0\n375,182,7.5\n375,183,8.0\n375,184,8.5\n375,185,9.0\n375,186,9.5\n375,187,10.0\n375,188,10.5\n375,189,11.0\n375,190,11.5\n375,191,12.0\n375,192,12.5\n375,193,13.0\n375,194,13.5\n375,195,14.0\n375,196,14.5\n375,197,15.0\n375,198,15.5\n375,199,16.0\n375,200,3.5\n375,201,4.0\n375,202,4.5\n375,203,5.0\n375,204,5.5\n375,205,6.0\n375,206,6.5\n375,207,7.0\n375,208,7.5\n375,209,8.0\n375,210,8.5\n375,211,9.0\n375,212,9.5\n375,213,10.0\n375,214,10.5\n375,215,11.0\n375,216,11.5\n375,217,12.0\n375,218,12.5\n375,219,13.0\n375,220,13.5\n375,221,14.0\n375,222,14.5\n375,223,15.0\n375,224,15.5\n375,225,3.0\n375,226,3.5\n375,227,4.0\n375,228,4.5\n375,229,5.0\n375,230,5.5\n375,231,6.0\n375,232,6.5\n375,233,7.0\n375,234,7.5\n375,235,8.0\n375,236,8.5\n375,237,9.0\n375,238,9.5\n375,239,10.0\n375,240,10.5\n375,241,11.0\n375,242,11.5\n375,243,12.0\n375,244,12.5\n375,245,13.0\n375,246,13.5\n375,247,14.0\n375,248,14.5\n375,249,15.0\n375,250,2.5\n375,251,3.0\n375,252,3.5\n375,253,4.0\n375,254,4.5\n375,255,5.0\n375,256,5.5\n375,257,6.0\n375,258,6.5\n375,259,7.0\n375,260,7.5\n375,261,8.0\n375,262,8.5\n375,263,9.0\n375,264,9.5\n375,265,10.0\n375,266,10.5\n375,267,11.0\n375,268,11.5\n375,269,12.0\n375,270,12.5\n375,271,13.0\n375,272,13.5\n375,273,14.0\n375,274,14.5\n375,275,2.0\n375,276,2.5\n375,277,3.0\n375,278,3.5\n375,279,4.0\n375,280,4.5\n375,281,5.0\n375,282,5.5\n375,283,6.0\n375,284,6.5\n375,285,7.0\n375,286,7.5\n375,287,8.0\n375,288,8.5\n375,289,9.0\n375,290,9.5\n375,291,10.0\n375,292,10.5\n375,293,11.0\n375,294,11.5\n375,295,12.0\n375,296,12.5\n375,297,13.0\n375,298,13.5\n375,299,14.0\n375,300,1.5\n375,301,2.0\n375,302,2.5\n375,303,3.0\n375,304,3.5\n375,305,4.0\n375,306,4.5\n375,307,5.0\n375,308,5.5\n375,309,6.0\n375,310,6.5\n375,311,7.0\n375,312,7.5\n375,313,8.0\n375,314,8.5\n375,315,9.0\n375,316,9.5\n375,317,10.0\n375,318,10.5\n375,319,11.0\n375,320,11.5\n375,321,12.0\n375,322,12.5\n375,323,13.0\n375,324,13.5\n375,325,1.0\n375,326,1.5\n375,327,2.0\n375,328,2.5\n375,329,3.0\n375,330,3.5\n375,331,4.0\n375,332,4.5\n375,333,5.0\n375,334,5.5\n375,335,6.0\n375,336,6.5\n375,337,7.0\n375,338,7.5\n375,339,8.0\n375,340,8.5\n375,341,9.0\n375,342,9.5\n375,343,10.0\n375,344,10.5\n375,345,11.0\n375,346,11.5\n375,347,12.0\n375,348,12.5\n375,349,13.0\n375,350,0.5\n375,351,1.0\n375,352,1.5\n375,353,2.0\n375,354,2.5\n375,355,3.0\n375,356,3.5\n375,357,4.0\n375,358,4.5\n375,359,5.0\n375,360,5.5\n375,361,6.0\n375,362,6.5\n375,363,7.0\n375,364,7.5\n375,365,8.0\n375,366,8.5\n375,367,9.0\n375,368,9.5\n375,369,10.0\n375,370,10.5\n375,371,11.0\n375,372,11.5\n375,373,12.0\n375,374,12.5\n375,375,0\n375,376,0.5\n375,377,1.0\n375,378,1.5\n375,379,2.0\n375,380,2.5\n375,381,3.0\n375,382,3.5\n375,383,4.0\n375,384,4.5\n375,385,5.0\n375,386,5.5\n375,387,6.0\n375,388,6.5\n375,389,7.0\n375,390,7.5\n375,391,8.0\n375,392,8.5\n375,393,9.0\n375,394,9.5\n375,395,10.0\n375,396,10.5\n375,397,11.0\n375,398,11.5\n375,399,12.0\n375,400,0.5\n375,401,1.0\n375,402,1.5\n375,403,2.0\n375,404,2.5\n375,405,3.0\n375,406,3.5\n375,407,4.0\n375,408,4.5\n375,409,5.0\n375,410,5.5\n375,411,6.0\n375,412,6.5\n375,413,7.0\n375,414,7.5\n375,415,8.0\n375,416,8.5\n375,417,9.0\n375,418,9.5\n375,419,10.0\n375,420,10.5\n375,421,11.0\n375,422,11.5\n375,423,12.0\n375,424,12.5\n375,425,1.0\n375,426,1.5\n375,427,2.0\n375,428,2.5\n375,429,3.0\n375,430,3.5\n375,431,4.0\n375,432,4.5\n375,433,5.0\n375,434,5.5\n375,435,6.0\n375,436,6.5\n375,437,7.0\n375,438,7.5\n375,439,8.0\n375,440,8.5\n375,441,9.0\n375,442,9.5\n375,443,10.0\n375,444,10.5\n375,445,11.0\n375,446,11.5\n375,447,12.0\n375,448,12.5\n375,449,13.0\n375,450,1.5\n375,451,2.0\n375,452,2.5\n375,453,3.0\n375,454,3.5\n375,455,4.0\n375,456,4.5\n375,457,5.0\n375,458,5.5\n375,459,6.0\n375,460,6.5\n375,461,7.0\n375,462,7.5\n375,463,8.0\n375,464,8.5\n375,465,9.0\n375,466,9.5\n375,467,10.0\n375,468,10.5\n375,469,11.0\n375,470,11.5\n375,471,12.0\n375,472,12.5\n375,473,13.0\n375,474,13.5\n375,475,2.0\n375,476,2.5\n375,477,3.0\n375,478,3.5\n375,479,4.0\n375,480,4.5\n375,481,5.0\n375,482,5.5\n375,483,6.0\n375,484,6.5\n375,485,7.0\n375,486,7.5\n375,487,8.0\n375,488,8.5\n375,489,9.0\n375,490,9.5\n375,491,10.0\n375,492,10.5\n375,493,11.0\n375,494,11.5\n375,495,12.0\n375,496,12.5\n375,497,13.0\n375,498,13.5\n375,499,14.0\n375,500,2.5\n375,501,3.0\n375,502,3.5\n375,503,4.0\n375,504,4.5\n375,505,5.0\n375,506,5.5\n375,507,6.0\n375,508,6.5\n375,509,7.0\n375,510,7.5\n375,511,8.0\n375,512,8.5\n375,513,9.0\n375,514,9.5\n375,515,10.0\n375,516,10.5\n375,517,11.0\n375,518,11.5\n375,519,12.0\n375,520,12.5\n375,521,13.0\n375,522,13.5\n375,523,14.0\n375,524,14.5\n375,525,3.0\n375,526,3.5\n375,527,4.0\n375,528,4.5\n375,529,5.0\n375,530,5.5\n375,531,6.0\n375,532,6.5\n375,533,7.0\n375,534,7.5\n375,535,8.0\n375,536,8.5\n375,537,9.0\n375,538,9.5\n375,539,10.0\n375,540,10.5\n375,541,11.0\n375,542,11.5\n375,543,12.0\n375,544,12.5\n375,545,13.0\n375,546,13.5\n375,547,14.0\n375,548,14.5\n375,549,15.0\n375,550,3.5\n375,551,4.0\n375,552,4.5\n375,553,5.0\n375,554,5.5\n375,555,6.0\n375,556,6.5\n375,557,7.0\n375,558,7.5\n375,559,8.0\n375,560,8.5\n375,561,9.0\n375,562,9.5\n375,563,10.0\n375,564,10.5\n375,565,11.0\n375,566,11.5\n375,567,12.0\n375,568,12.5\n375,569,13.0\n375,570,13.5\n375,571,14.0\n375,572,14.5\n375,573,15.0\n375,574,15.5\n375,575,4.0\n375,576,4.5\n375,577,5.0\n375,578,5.5\n375,579,6.0\n375,580,6.5\n375,581,7.0\n375,582,7.5\n375,583,8.0\n375,584,8.5\n375,585,9.0\n375,586,9.5\n375,587,10.0\n375,588,10.5\n375,589,11.0\n375,590,11.5\n375,591,12.0\n375,592,12.5\n375,593,13.0\n375,594,13.5\n375,595,14.0\n375,596,14.5\n375,597,15.0\n375,598,15.5\n375,599,16.0\n375,600,4.5\n375,601,5.0\n375,602,5.5\n375,603,6.0\n375,604,6.5\n375,605,7.0\n375,606,7.5\n375,607,8.0\n375,608,8.5\n375,609,9.0\n375,610,9.5\n375,611,10.0\n375,612,10.5\n375,613,11.0\n375,614,11.5\n375,615,12.0\n375,616,12.5\n375,617,13.0\n375,618,13.5\n375,619,14.0\n375,620,14.5\n375,621,15.0\n375,622,15.5\n375,623,16.0\n375,624,16.5\n376,0,8.0\n376,1,7.5\n376,2,8.0\n376,3,8.5\n376,4,9.0\n376,5,9.5\n376,6,10.0\n376,7,10.5\n376,8,11.0\n376,9,11.5\n376,10,12.0\n376,11,12.5\n376,12,13.0\n376,13,13.5\n376,14,14.0\n376,15,14.5\n376,16,15.0\n376,17,15.5\n376,18,16.0\n376,19,16.5\n376,20,17.0\n376,21,17.5\n376,22,18.0\n376,23,18.5\n376,24,19.0\n376,25,7.5\n376,26,7.0\n376,27,7.5\n376,28,8.0\n376,29,8.5\n376,30,9.0\n376,31,9.5\n376,32,10.0\n376,33,10.5\n376,34,11.0\n376,35,11.5\n376,36,12.0\n376,37,12.5\n376,38,13.0\n376,39,13.5\n376,40,14.0\n376,41,14.5\n376,42,15.0\n376,43,15.5\n376,44,16.0\n376,45,16.5\n376,46,17.0\n376,47,17.5\n376,48,18.0\n376,49,18.5\n376,50,7.0\n376,51,6.5\n376,52,7.0\n376,53,7.5\n376,54,8.0\n376,55,8.5\n376,56,9.0\n376,57,9.5\n376,58,10.0\n376,59,10.5\n376,60,11.0\n376,61,11.5\n376,62,12.0\n376,63,12.5\n376,64,13.0\n376,65,13.5\n376,66,14.0\n376,67,14.5\n376,68,15.0\n376,69,15.5\n376,70,16.0\n376,71,16.5\n376,72,17.0\n376,73,17.5\n376,74,18.0\n376,75,6.5\n376,76,6.0\n376,77,6.5\n376,78,7.0\n376,79,7.5\n376,80,8.0\n376,81,8.5\n376,82,9.0\n376,83,9.5\n376,84,10.0\n376,85,10.5\n376,86,11.0\n376,87,11.5\n376,88,12.0\n376,89,12.5\n376,90,13.0\n376,91,13.5\n376,92,14.0\n376,93,14.5\n376,94,15.0\n376,95,15.5\n376,96,16.0\n376,97,16.5\n376,98,17.0\n376,99,17.5\n376,100,6.0\n376,101,5.5\n376,102,6.0\n376,103,6.5\n376,104,7.0\n376,105,7.5\n376,106,8.0\n376,107,8.5\n376,108,9.0\n376,109,9.5\n376,110,10.0\n376,111,10.5\n376,112,11.0\n376,113,11.5\n376,114,12.0\n376,115,12.5\n376,116,13.0\n376,117,13.5\n376,118,14.0\n376,119,14.5\n376,120,15.0\n376,121,15.5\n376,122,16.0\n376,123,16.5\n376,124,17.0\n376,125,5.5\n376,126,5.0\n376,127,5.5\n376,128,6.0\n376,129,6.5\n376,130,7.0\n376,131,7.5\n376,132,8.0\n376,133,8.5\n376,134,9.0\n376,135,9.5\n376,136,10.0\n376,137,10.5\n376,138,11.0\n376,139,11.5\n376,140,12.0\n376,141,12.5\n376,142,13.0\n376,143,13.5\n376,144,14.0\n376,145,14.5\n376,146,15.0\n376,147,15.5\n376,148,16.0\n376,149,16.5\n376,150,5.0\n376,151,4.5\n376,152,5.0\n376,153,5.5\n376,154,6.0\n376,155,6.5\n376,156,7.0\n376,157,7.5\n376,158,8.0\n376,159,8.5\n376,160,9.0\n376,161,9.5\n376,162,10.0\n376,163,10.5\n376,164,11.0\n376,165,11.5\n376,166,12.0\n376,167,12.5\n376,168,13.0\n376,169,13.5\n376,170,14.0\n376,171,14.5\n376,172,15.0\n376,173,15.5\n376,174,16.0\n376,175,4.5\n376,176,4.0\n376,177,4.5\n376,178,5.0\n376,179,5.5\n376,180,6.0\n376,181,6.5\n376,182,7.0\n376,183,7.5\n376,184,8.0\n376,185,8.5\n376,186,9.0\n376,187,9.5\n376,188,10.0\n376,189,10.5\n376,190,11.0\n376,191,11.5\n376,192,12.0\n376,193,12.5\n376,194,13.0\n376,195,13.5\n376,196,14.0\n376,197,14.5\n376,198,15.0\n376,199,15.5\n376,200,4.0\n376,201,3.5\n376,202,4.0\n376,203,4.5\n376,204,5.0\n376,205,5.5\n376,206,6.0\n376,207,6.5\n376,208,7.0\n376,209,7.5\n376,210,8.0\n376,211,8.5\n376,212,9.0\n376,213,9.5\n376,214,10.0\n376,215,10.5\n376,216,11.0\n376,217,11.5\n376,218,12.0\n376,219,12.5\n376,220,13.0\n376,221,13.5\n376,222,14.0\n376,223,14.5\n376,224,15.0\n376,225,3.5\n376,226,3.0\n376,227,3.5\n376,228,4.0\n376,229,4.5\n376,230,5.0\n376,231,5.5\n376,232,6.0\n376,233,6.5\n376,234,7.0\n376,235,7.5\n376,236,8.0\n376,237,8.5\n376,238,9.0\n376,239,9.5\n376,240,10.0\n376,241,10.5\n376,242,11.0\n376,243,11.5\n376,244,12.0\n376,245,12.5\n376,246,13.0\n376,247,13.5\n376,248,14.0\n376,249,14.5\n376,250,3.0\n376,251,2.5\n376,252,3.0\n376,253,3.5\n376,254,4.0\n376,255,4.5\n376,256,5.0\n376,257,5.5\n376,258,6.0\n376,259,6.5\n376,260,7.0\n376,261,7.5\n376,262,8.0\n376,263,8.5\n376,264,9.0\n376,265,9.5\n376,266,10.0\n376,267,10.5\n376,268,11.0\n376,269,11.5\n376,270,12.0\n376,271,12.5\n376,272,13.0\n376,273,13.5\n376,274,14.0\n376,275,2.5\n376,276,2.0\n376,277,2.5\n376,278,3.0\n376,279,3.5\n376,280,4.0\n376,281,4.5\n376,282,5.0\n376,283,5.5\n376,284,6.0\n376,285,6.5\n376,286,7.0\n376,287,7.5\n376,288,8.0\n376,289,8.5\n376,290,9.0\n376,291,9.5\n376,292,10.0\n376,293,10.5\n376,294,11.0\n376,295,11.5\n376,296,12.0\n376,297,12.5\n376,298,13.0\n376,299,13.5\n376,300,2.0\n376,301,1.5\n376,302,2.0\n376,303,2.5\n376,304,3.0\n376,305,3.5\n376,306,4.0\n376,307,4.5\n376,308,5.0\n376,309,5.5\n376,310,6.0\n376,311,6.5\n376,312,7.0\n376,313,7.5\n376,314,8.0\n376,315,8.5\n376,316,9.0\n376,317,9.5\n376,318,10.0\n376,319,10.5\n376,320,11.0\n376,321,11.5\n376,322,12.0\n376,323,12.5\n376,324,13.0\n376,325,1.5\n376,326,1.0\n376,327,1.5\n376,328,2.0\n376,329,2.5\n376,330,3.0\n376,331,3.5\n376,332,4.0\n376,333,4.5\n376,334,5.0\n376,335,5.5\n376,336,6.0\n376,337,6.5\n376,338,7.0\n376,339,7.5\n376,340,8.0\n376,341,8.5\n376,342,9.0\n376,343,9.5\n376,344,10.0\n376,345,10.5\n376,346,11.0\n376,347,11.5\n376,348,12.0\n376,349,12.5\n376,350,1.0\n376,351,0.5\n376,352,1.0\n376,353,1.5\n376,354,2.0\n376,355,2.5\n376,356,3.0\n376,357,3.5\n376,358,4.0\n376,359,4.5\n376,360,5.0\n376,361,5.5\n376,362,6.0\n376,363,6.5\n376,364,7.0\n376,365,7.5\n376,366,8.0\n376,367,8.5\n376,368,9.0\n376,369,9.5\n376,370,10.0\n376,371,10.5\n376,372,11.0\n376,373,11.5\n376,374,12.0\n376,375,0.5\n376,376,0\n376,377,0.5\n376,378,1.0\n376,379,1.5\n376,380,2.0\n376,381,2.5\n376,382,3.0\n376,383,3.5\n376,384,4.0\n376,385,4.5\n376,386,5.0\n376,387,5.5\n376,388,6.0\n376,389,6.5\n376,390,7.0\n376,391,7.5\n376,392,8.0\n376,393,8.5\n376,394,9.0\n376,395,9.5\n376,396,10.0\n376,397,10.5\n376,398,11.0\n376,399,11.5\n376,400,1.0\n376,401,0.5\n376,402,1.0\n376,403,1.5\n376,404,2.0\n376,405,2.5\n376,406,3.0\n376,407,3.5\n376,408,4.0\n376,409,4.5\n376,410,5.0\n376,411,5.5\n376,412,6.0\n376,413,6.5\n376,414,7.0\n376,415,7.5\n376,416,8.0\n376,417,8.5\n376,418,9.0\n376,419,9.5\n376,420,10.0\n376,421,10.5\n376,422,11.0\n376,423,11.5\n376,424,12.0\n376,425,1.5\n376,426,1.0\n376,427,1.5\n376,428,2.0\n376,429,2.5\n376,430,3.0\n376,431,3.5\n376,432,4.0\n376,433,4.5\n376,434,5.0\n376,435,5.5\n376,436,6.0\n376,437,6.5\n376,438,7.0\n376,439,7.5\n376,440,8.0\n376,441,8.5\n376,442,9.0\n376,443,9.5\n376,444,10.0\n376,445,10.5\n376,446,11.0\n376,447,11.5\n376,448,12.0\n376,449,12.5\n376,450,2.0\n376,451,1.5\n376,452,2.0\n376,453,2.5\n376,454,3.0\n376,455,3.5\n376,456,4.0\n376,457,4.5\n376,458,5.0\n376,459,5.5\n376,460,6.0\n376,461,6.5\n376,462,7.0\n376,463,7.5\n376,464,8.0\n376,465,8.5\n376,466,9.0\n376,467,9.5\n376,468,10.0\n376,469,10.5\n376,470,11.0\n376,471,11.5\n376,472,12.0\n376,473,12.5\n376,474,13.0\n376,475,2.5\n376,476,2.0\n376,477,2.5\n376,478,3.0\n376,479,3.5\n376,480,4.0\n376,481,4.5\n376,482,5.0\n376,483,5.5\n376,484,6.0\n376,485,6.5\n376,486,7.0\n376,487,7.5\n376,488,8.0\n376,489,8.5\n376,490,9.0\n376,491,9.5\n376,492,10.0\n376,493,10.5\n376,494,11.0\n376,495,11.5\n376,496,12.0\n376,497,12.5\n376,498,13.0\n376,499,13.5\n376,500,3.0\n376,501,2.5\n376,502,3.0\n376,503,3.5\n376,504,4.0\n376,505,4.5\n376,506,5.0\n376,507,5.5\n376,508,6.0\n376,509,6.5\n376,510,7.0\n376,511,7.5\n376,512,8.0\n376,513,8.5\n376,514,9.0\n376,515,9.5\n376,516,10.0\n376,517,10.5\n376,518,11.0\n376,519,11.5\n376,520,12.0\n376,521,12.5\n376,522,13.0\n376,523,13.5\n376,524,14.0\n376,525,3.5\n376,526,3.0\n376,527,3.5\n376,528,4.0\n376,529,4.5\n376,530,5.0\n376,531,5.5\n376,532,6.0\n376,533,6.5\n376,534,7.0\n376,535,7.5\n376,536,8.0\n376,537,8.5\n376,538,9.0\n376,539,9.5\n376,540,10.0\n376,541,10.5\n376,542,11.0\n376,543,11.5\n376,544,12.0\n376,545,12.5\n376,546,13.0\n376,547,13.5\n376,548,14.0\n376,549,14.5\n376,550,4.0\n376,551,3.5\n376,552,4.0\n376,553,4.5\n376,554,5.0\n376,555,5.5\n376,556,6.0\n376,557,6.5\n376,558,7.0\n376,559,7.5\n376,560,8.0\n376,561,8.5\n376,562,9.0\n376,563,9.5\n376,564,10.0\n376,565,10.5\n376,566,11.0\n376,567,11.5\n376,568,12.0\n376,569,12.5\n376,570,13.0\n376,571,13.5\n376,572,14.0\n376,573,14.5\n376,574,15.0\n376,575,4.5\n376,576,4.0\n376,577,4.5\n376,578,5.0\n376,579,5.5\n376,580,6.0\n376,581,6.5\n376,582,7.0\n376,583,7.5\n376,584,8.0\n376,585,8.5\n376,586,9.0\n376,587,9.5\n376,588,10.0\n376,589,10.5\n376,590,11.0\n376,591,11.5\n376,592,12.0\n376,593,12.5\n376,594,13.0\n376,595,13.5\n376,596,14.0\n376,597,14.5\n376,598,15.0\n376,599,15.5\n376,600,5.0\n376,601,4.5\n376,602,5.0\n376,603,5.5\n376,604,6.0\n376,605,6.5\n376,606,7.0\n376,607,7.5\n376,608,8.0\n376,609,8.5\n376,610,9.0\n376,611,9.5\n376,612,10.0\n376,613,10.5\n376,614,11.0\n376,615,11.5\n376,616,12.0\n376,617,12.5\n376,618,13.0\n376,619,13.5\n376,620,14.0\n376,621,14.5\n376,622,15.0\n376,623,15.5\n376,624,16.0\n377,0,8.5\n377,1,8.0\n377,2,7.5\n377,3,8.0\n377,4,8.5\n377,5,9.0\n377,6,9.5\n377,7,10.0\n377,8,10.5\n377,9,11.0\n377,10,11.5\n377,11,12.0\n377,12,12.5\n377,13,13.0\n377,14,13.5\n377,15,14.0\n377,16,14.5\n377,17,15.0\n377,18,15.5\n377,19,16.0\n377,20,16.5\n377,21,17.0\n377,22,17.5\n377,23,18.0\n377,24,18.5\n377,25,8.0\n377,26,7.5\n377,27,7.0\n377,28,7.5\n377,29,8.0\n377,30,8.5\n377,31,9.0\n377,32,9.5\n377,33,10.0\n377,34,10.5\n377,35,11.0\n377,36,11.5\n377,37,12.0\n377,38,12.5\n377,39,13.0\n377,40,13.5\n377,41,14.0\n377,42,14.5\n377,43,15.0\n377,44,15.5\n377,45,16.0\n377,46,16.5\n377,47,17.0\n377,48,17.5\n377,49,18.0\n377,50,7.5\n377,51,7.0\n377,52,6.5\n377,53,7.0\n377,54,7.5\n377,55,8.0\n377,56,8.5\n377,57,9.0\n377,58,9.5\n377,59,10.0\n377,60,10.5\n377,61,11.0\n377,62,11.5\n377,63,12.0\n377,64,12.5\n377,65,13.0\n377,66,13.5\n377,67,14.0\n377,68,14.5\n377,69,15.0\n377,70,15.5\n377,71,16.0\n377,72,16.5\n377,73,17.0\n377,74,17.5\n377,75,7.0\n377,76,6.5\n377,77,6.0\n377,78,6.5\n377,79,7.0\n377,80,7.5\n377,81,8.0\n377,82,8.5\n377,83,9.0\n377,84,9.5\n377,85,10.0\n377,86,10.5\n377,87,11.0\n377,88,11.5\n377,89,12.0\n377,90,12.5\n377,91,13.0\n377,92,13.5\n377,93,14.0\n377,94,14.5\n377,95,15.0\n377,96,15.5\n377,97,16.0\n377,98,16.5\n377,99,17.0\n377,100,6.5\n377,101,6.0\n377,102,5.5\n377,103,6.0\n377,104,6.5\n377,105,7.0\n377,106,7.5\n377,107,8.0\n377,108,8.5\n377,109,9.0\n377,110,9.5\n377,111,10.0\n377,112,10.5\n377,113,11.0\n377,114,11.5\n377,115,12.0\n377,116,12.5\n377,117,13.0\n377,118,13.5\n377,119,14.0\n377,120,14.5\n377,121,15.0\n377,122,15.5\n377,123,16.0\n377,124,16.5\n377,125,6.0\n377,126,5.5\n377,127,5.0\n377,128,5.5\n377,129,6.0\n377,130,6.5\n377,131,7.0\n377,132,7.5\n377,133,8.0\n377,134,8.5\n377,135,9.0\n377,136,9.5\n377,137,10.0\n377,138,10.5\n377,139,11.0\n377,140,11.5\n377,141,12.0\n377,142,12.5\n377,143,13.0\n377,144,13.5\n377,145,14.0\n377,146,14.5\n377,147,15.0\n377,148,15.5\n377,149,16.0\n377,150,5.5\n377,151,5.0\n377,152,4.5\n377,153,5.0\n377,154,5.5\n377,155,6.0\n377,156,6.5\n377,157,7.0\n377,158,7.5\n377,159,8.0\n377,160,8.5\n377,161,9.0\n377,162,9.5\n377,163,10.0\n377,164,10.5\n377,165,11.0\n377,166,11.5\n377,167,12.0\n377,168,12.5\n377,169,13.0\n377,170,13.5\n377,171,14.0\n377,172,14.5\n377,173,15.0\n377,174,15.5\n377,175,5.0\n377,176,4.5\n377,177,4.0\n377,178,4.5\n377,179,5.0\n377,180,5.5\n377,181,6.0\n377,182,6.5\n377,183,7.0\n377,184,7.5\n377,185,8.0\n377,186,8.5\n377,187,9.0\n377,188,9.5\n377,189,10.0\n377,190,10.5\n377,191,11.0\n377,192,11.5\n377,193,12.0\n377,194,12.5\n377,195,13.0\n377,196,13.5\n377,197,14.0\n377,198,14.5\n377,199,15.0\n377,200,4.5\n377,201,4.0\n377,202,3.5\n377,203,4.0\n377,204,4.5\n377,205,5.0\n377,206,5.5\n377,207,6.0\n377,208,6.5\n377,209,7.0\n377,210,7.5\n377,211,8.0\n377,212,8.5\n377,213,9.0\n377,214,9.5\n377,215,10.0\n377,216,10.5\n377,217,11.0\n377,218,11.5\n377,219,12.0\n377,220,12.5\n377,221,13.0\n377,222,13.5\n377,223,14.0\n377,224,14.5\n377,225,4.0\n377,226,3.5\n377,227,3.0\n377,228,3.5\n377,229,4.0\n377,230,4.5\n377,231,5.0\n377,232,5.5\n377,233,6.0\n377,234,6.5\n377,235,7.0\n377,236,7.5\n377,237,8.0\n377,238,8.5\n377,239,9.0\n377,240,9.5\n377,241,10.0\n377,242,10.5\n377,243,11.0\n377,244,11.5\n377,245,12.0\n377,246,12.5\n377,247,13.0\n377,248,13.5\n377,249,14.0\n377,250,3.5\n377,251,3.0\n377,252,2.5\n377,253,3.0\n377,254,3.5\n377,255,4.0\n377,256,4.5\n377,257,5.0\n377,258,5.5\n377,259,6.0\n377,260,6.5\n377,261,7.0\n377,262,7.5\n377,263,8.0\n377,264,8.5\n377,265,9.0\n377,266,9.5\n377,267,10.0\n377,268,10.5\n377,269,11.0\n377,270,11.5\n377,271,12.0\n377,272,12.5\n377,273,13.0\n377,274,13.5\n377,275,3.0\n377,276,2.5\n377,277,2.0\n377,278,2.5\n377,279,3.0\n377,280,3.5\n377,281,4.0\n377,282,4.5\n377,283,5.0\n377,284,5.5\n377,285,6.0\n377,286,6.5\n377,287,7.0\n377,288,7.5\n377,289,8.0\n377,290,8.5\n377,291,9.0\n377,292,9.5\n377,293,10.0\n377,294,10.5\n377,295,11.0\n377,296,11.5\n377,297,12.0\n377,298,12.5\n377,299,13.0\n377,300,2.5\n377,301,2.0\n377,302,1.5\n377,303,2.0\n377,304,2.5\n377,305,3.0\n377,306,3.5\n377,307,4.0\n377,308,4.5\n377,309,5.0\n377,310,5.5\n377,311,6.0\n377,312,6.5\n377,313,7.0\n377,314,7.5\n377,315,8.0\n377,316,8.5\n377,317,9.0\n377,318,9.5\n377,319,10.0\n377,320,10.5\n377,321,11.0\n377,322,11.5\n377,323,12.0\n377,324,12.5\n377,325,2.0\n377,326,1.5\n377,327,1.0\n377,328,1.5\n377,329,2.0\n377,330,2.5\n377,331,3.0\n377,332,3.5\n377,333,4.0\n377,334,4.5\n377,335,5.0\n377,336,5.5\n377,337,6.0\n377,338,6.5\n377,339,7.0\n377,340,7.5\n377,341,8.0\n377,342,8.5\n377,343,9.0\n377,344,9.5\n377,345,10.0\n377,346,10.5\n377,347,11.0\n377,348,11.5\n377,349,12.0\n377,350,1.5\n377,351,1.0\n377,352,0.5\n377,353,1.0\n377,354,1.5\n377,355,2.0\n377,356,2.5\n377,357,3.0\n377,358,3.5\n377,359,4.0\n377,360,4.5\n377,361,5.0\n377,362,5.5\n377,363,6.0\n377,364,6.5\n377,365,7.0\n377,366,7.5\n377,367,8.0\n377,368,8.5\n377,369,9.0\n377,370,9.5\n377,371,10.0\n377,372,10.5\n377,373,11.0\n377,374,11.5\n377,375,1.0\n377,376,0.5\n377,377,0\n377,378,0.5\n377,379,1.0\n377,380,1.5\n377,381,2.0\n377,382,2.5\n377,383,3.0\n377,384,3.5\n377,385,4.0\n377,386,4.5\n377,387,5.0\n377,388,5.5\n377,389,6.0\n377,390,6.5\n377,391,7.0\n377,392,7.5\n377,393,8.0\n377,394,8.5\n377,395,9.0\n377,396,9.5\n377,397,10.0\n377,398,10.5\n377,399,11.0\n377,400,1.5\n377,401,1.0\n377,402,0.5\n377,403,1.0\n377,404,1.5\n377,405,2.0\n377,406,2.5\n377,407,3.0\n377,408,3.5\n377,409,4.0\n377,410,4.5\n377,411,5.0\n377,412,5.5\n377,413,6.0\n377,414,6.5\n377,415,7.0\n377,416,7.5\n377,417,8.0\n377,418,8.5\n377,419,9.0\n377,420,9.5\n377,421,10.0\n377,422,10.5\n377,423,11.0\n377,424,11.5\n377,425,2.0\n377,426,1.5\n377,427,1.0\n377,428,1.5\n377,429,2.0\n377,430,2.5\n377,431,3.0\n377,432,3.5\n377,433,4.0\n377,434,4.5\n377,435,5.0\n377,436,5.5\n377,437,6.0\n377,438,6.5\n377,439,7.0\n377,440,7.5\n377,441,8.0\n377,442,8.5\n377,443,9.0\n377,444,9.5\n377,445,10.0\n377,446,10.5\n377,447,11.0\n377,448,11.5\n377,449,12.0\n377,450,2.5\n377,451,2.0\n377,452,1.5\n377,453,2.0\n377,454,2.5\n377,455,3.0\n377,456,3.5\n377,457,4.0\n377,458,4.5\n377,459,5.0\n377,460,5.5\n377,461,6.0\n377,462,6.5\n377,463,7.0\n377,464,7.5\n377,465,8.0\n377,466,8.5\n377,467,9.0\n377,468,9.5\n377,469,10.0\n377,470,10.5\n377,471,11.0\n377,472,11.5\n377,473,12.0\n377,474,12.5\n377,475,3.0\n377,476,2.5\n377,477,2.0\n377,478,2.5\n377,479,3.0\n377,480,3.5\n377,481,4.0\n377,482,4.5\n377,483,5.0\n377,484,5.5\n377,485,6.0\n377,486,6.5\n377,487,7.0\n377,488,7.5\n377,489,8.0\n377,490,8.5\n377,491,9.0\n377,492,9.5\n377,493,10.0\n377,494,10.5\n377,495,11.0\n377,496,11.5\n377,497,12.0\n377,498,12.5\n377,499,13.0\n377,500,3.5\n377,501,3.0\n377,502,2.5\n377,503,3.0\n377,504,3.5\n377,505,4.0\n377,506,4.5\n377,507,5.0\n377,508,5.5\n377,509,6.0\n377,510,6.5\n377,511,7.0\n377,512,7.5\n377,513,8.0\n377,514,8.5\n377,515,9.0\n377,516,9.5\n377,517,10.0\n377,518,10.5\n377,519,11.0\n377,520,11.5\n377,521,12.0\n377,522,12.5\n377,523,13.0\n377,524,13.5\n377,525,4.0\n377,526,3.5\n377,527,3.0\n377,528,3.5\n377,529,4.0\n377,530,4.5\n377,531,5.0\n377,532,5.5\n377,533,6.0\n377,534,6.5\n377,535,7.0\n377,536,7.5\n377,537,8.0\n377,538,8.5\n377,539,9.0\n377,540,9.5\n377,541,10.0\n377,542,10.5\n377,543,11.0\n377,544,11.5\n377,545,12.0\n377,546,12.5\n377,547,13.0\n377,548,13.5\n377,549,14.0\n377,550,4.5\n377,551,4.0\n377,552,3.5\n377,553,4.0\n377,554,4.5\n377,555,5.0\n377,556,5.5\n377,557,6.0\n377,558,6.5\n377,559,7.0\n377,560,7.5\n377,561,8.0\n377,562,8.5\n377,563,9.0\n377,564,9.5\n377,565,10.0\n377,566,10.5\n377,567,11.0\n377,568,11.5\n377,569,12.0\n377,570,12.5\n377,571,13.0\n377,572,13.5\n377,573,14.0\n377,574,14.5\n377,575,5.0\n377,576,4.5\n377,577,4.0\n377,578,4.5\n377,579,5.0\n377,580,5.5\n377,581,6.0\n377,582,6.5\n377,583,7.0\n377,584,7.5\n377,585,8.0\n377,586,8.5\n377,587,9.0\n377,588,9.5\n377,589,10.0\n377,590,10.5\n377,591,11.0\n377,592,11.5\n377,593,12.0\n377,594,12.5\n377,595,13.0\n377,596,13.5\n377,597,14.0\n377,598,14.5\n377,599,15.0\n377,600,5.5\n377,601,5.0\n377,602,4.5\n377,603,5.0\n377,604,5.5\n377,605,6.0\n377,606,6.5\n377,607,7.0\n377,608,7.5\n377,609,8.0\n377,610,8.5\n377,611,9.0\n377,612,9.5\n377,613,10.0\n377,614,10.5\n377,615,11.0\n377,616,11.5\n377,617,12.0\n377,618,12.5\n377,619,13.0\n377,620,13.5\n377,621,14.0\n377,622,14.5\n377,623,15.0\n377,624,15.5\n378,0,9.0\n378,1,8.5\n378,2,8.0\n378,3,7.5\n378,4,8.0\n378,5,8.5\n378,6,9.0\n378,7,9.5\n378,8,10.0\n378,9,10.5\n378,10,11.0\n378,11,11.5\n378,12,12.0\n378,13,12.5\n378,14,13.0\n378,15,13.5\n378,16,14.0\n378,17,14.5\n378,18,15.0\n378,19,15.5\n378,20,16.0\n378,21,16.5\n378,22,17.0\n378,23,17.5\n378,24,18.0\n378,25,8.5\n378,26,8.0\n378,27,7.5\n378,28,7.0\n378,29,7.5\n378,30,8.0\n378,31,8.5\n378,32,9.0\n378,33,9.5\n378,34,10.0\n378,35,10.5\n378,36,11.0\n378,37,11.5\n378,38,12.0\n378,39,12.5\n378,40,13.0\n378,41,13.5\n378,42,14.0\n378,43,14.5\n378,44,15.0\n378,45,15.5\n378,46,16.0\n378,47,16.5\n378,48,17.0\n378,49,17.5\n378,50,8.0\n378,51,7.5\n378,52,7.0\n378,53,6.5\n378,54,7.0\n378,55,7.5\n378,56,8.0\n378,57,8.5\n378,58,9.0\n378,59,9.5\n378,60,10.0\n378,61,10.5\n378,62,11.0\n378,63,11.5\n378,64,12.0\n378,65,12.5\n378,66,13.0\n378,67,13.5\n378,68,14.0\n378,69,14.5\n378,70,15.0\n378,71,15.5\n378,72,16.0\n378,73,16.5\n378,74,17.0\n378,75,7.5\n378,76,7.0\n378,77,6.5\n378,78,6.0\n378,79,6.5\n378,80,7.0\n378,81,7.5\n378,82,8.0\n378,83,8.5\n378,84,9.0\n378,85,9.5\n378,86,10.0\n378,87,10.5\n378,88,11.0\n378,89,11.5\n378,90,12.0\n378,91,12.5\n378,92,13.0\n378,93,13.5\n378,94,14.0\n378,95,14.5\n378,96,15.0\n378,97,15.5\n378,98,16.0\n378,99,16.5\n378,100,7.0\n378,101,6.5\n378,102,6.0\n378,103,5.5\n378,104,6.0\n378,105,6.5\n378,106,7.0\n378,107,7.5\n378,108,8.0\n378,109,8.5\n378,110,9.0\n378,111,9.5\n378,112,10.0\n378,113,10.5\n378,114,11.0\n378,115,11.5\n378,116,12.0\n378,117,12.5\n378,118,13.0\n378,119,13.5\n378,120,14.0\n378,121,14.5\n378,122,15.0\n378,123,15.5\n378,124,16.0\n378,125,6.5\n378,126,6.0\n378,127,5.5\n378,128,5.0\n378,129,5.5\n378,130,6.0\n378,131,6.5\n378,132,7.0\n378,133,7.5\n378,134,8.0\n378,135,8.5\n378,136,9.0\n378,137,9.5\n378,138,10.0\n378,139,10.5\n378,140,11.0\n378,141,11.5\n378,142,12.0\n378,143,12.5\n378,144,13.0\n378,145,13.5\n378,146,14.0\n378,147,14.5\n378,148,15.0\n378,149,15.5\n378,150,6.0\n378,151,5.5\n378,152,5.0\n378,153,4.5\n378,154,5.0\n378,155,5.5\n378,156,6.0\n378,157,6.5\n378,158,7.0\n378,159,7.5\n378,160,8.0\n378,161,8.5\n378,162,9.0\n378,163,9.5\n378,164,10.0\n378,165,10.5\n378,166,11.0\n378,167,11.5\n378,168,12.0\n378,169,12.5\n378,170,13.0\n378,171,13.5\n378,172,14.0\n378,173,14.5\n378,174,15.0\n378,175,5.5\n378,176,5.0\n378,177,4.5\n378,178,4.0\n378,179,4.5\n378,180,5.0\n378,181,5.5\n378,182,6.0\n378,183,6.5\n378,184,7.0\n378,185,7.5\n378,186,8.0\n378,187,8.5\n378,188,9.0\n378,189,9.5\n378,190,10.0\n378,191,10.5\n378,192,11.0\n378,193,11.5\n378,194,12.0\n378,195,12.5\n378,196,13.0\n378,197,13.5\n378,198,14.0\n378,199,14.5\n378,200,5.0\n378,201,4.5\n378,202,4.0\n378,203,3.5\n378,204,4.0\n378,205,4.5\n378,206,5.0\n378,207,5.5\n378,208,6.0\n378,209,6.5\n378,210,7.0\n378,211,7.5\n378,212,8.0\n378,213,8.5\n378,214,9.0\n378,215,9.5\n378,216,10.0\n378,217,10.5\n378,218,11.0\n378,219,11.5\n378,220,12.0\n378,221,12.5\n378,222,13.0\n378,223,13.5\n378,224,14.0\n378,225,4.5\n378,226,4.0\n378,227,3.5\n378,228,3.0\n378,229,3.5\n378,230,4.0\n378,231,4.5\n378,232,5.0\n378,233,5.5\n378,234,6.0\n378,235,6.5\n378,236,7.0\n378,237,7.5\n378,238,8.0\n378,239,8.5\n378,240,9.0\n378,241,9.5\n378,242,10.0\n378,243,10.5\n378,244,11.0\n378,245,11.5\n378,246,12.0\n378,247,12.5\n378,248,13.0\n378,249,13.5\n378,250,4.0\n378,251,3.5\n378,252,3.0\n378,253,2.5\n378,254,3.0\n378,255,3.5\n378,256,4.0\n378,257,4.5\n378,258,5.0\n378,259,5.5\n378,260,6.0\n378,261,6.5\n378,262,7.0\n378,263,7.5\n378,264,8.0\n378,265,8.5\n378,266,9.0\n378,267,9.5\n378,268,10.0\n378,269,10.5\n378,270,11.0\n378,271,11.5\n378,272,12.0\n378,273,12.5\n378,274,13.0\n378,275,3.5\n378,276,3.0\n378,277,2.5\n378,278,2.0\n378,279,2.5\n378,280,3.0\n378,281,3.5\n378,282,4.0\n378,283,4.5\n378,284,5.0\n378,285,5.5\n378,286,6.0\n378,287,6.5\n378,288,7.0\n378,289,7.5\n378,290,8.0\n378,291,8.5\n378,292,9.0\n378,293,9.5\n378,294,10.0\n378,295,10.5\n378,296,11.0\n378,297,11.5\n378,298,12.0\n378,299,12.5\n378,300,3.0\n378,301,2.5\n378,302,2.0\n378,303,1.5\n378,304,2.0\n378,305,2.5\n378,306,3.0\n378,307,3.5\n378,308,4.0\n378,309,4.5\n378,310,5.0\n378,311,5.5\n378,312,6.0\n378,313,6.5\n378,314,7.0\n378,315,7.5\n378,316,8.0\n378,317,8.5\n378,318,9.0\n378,319,9.5\n378,320,10.0\n378,321,10.5\n378,322,11.0\n378,323,11.5\n378,324,12.0\n378,325,2.5\n378,326,2.0\n378,327,1.5\n378,328,1.0\n378,329,1.5\n378,330,2.0\n378,331,2.5\n378,332,3.0\n378,333,3.5\n378,334,4.0\n378,335,4.5\n378,336,5.0\n378,337,5.5\n378,338,6.0\n378,339,6.5\n378,340,7.0\n378,341,7.5\n378,342,8.0\n378,343,8.5\n378,344,9.0\n378,345,9.5\n378,346,10.0\n378,347,10.5\n378,348,11.0\n378,349,11.5\n378,350,2.0\n378,351,1.5\n378,352,1.0\n378,353,0.5\n378,354,1.0\n378,355,1.5\n378,356,2.0\n378,357,2.5\n378,358,3.0\n378,359,3.5\n378,360,4.0\n378,361,4.5\n378,362,5.0\n378,363,5.5\n378,364,6.0\n378,365,6.5\n378,366,7.0\n378,367,7.5\n378,368,8.0\n378,369,8.5\n378,370,9.0\n378,371,9.5\n378,372,10.0\n378,373,10.5\n378,374,11.0\n378,375,1.5\n378,376,1.0\n378,377,0.5\n378,378,0\n378,379,0.5\n378,380,1.0\n378,381,1.5\n378,382,2.0\n378,383,2.5\n378,384,3.0\n378,385,3.5\n378,386,4.0\n378,387,4.5\n378,388,5.0\n378,389,5.5\n378,390,6.0\n378,391,6.5\n378,392,7.0\n378,393,7.5\n378,394,8.0\n378,395,8.5\n378,396,9.0\n378,397,9.5\n378,398,10.0\n378,399,10.5\n378,400,2.0\n378,401,1.5\n378,402,1.0\n378,403,0.5\n378,404,1.0\n378,405,1.5\n378,406,2.0\n378,407,2.5\n378,408,3.0\n378,409,3.5\n378,410,4.0\n378,411,4.5\n378,412,5.0\n378,413,5.5\n378,414,6.0\n378,415,6.5\n378,416,7.0\n378,417,7.5\n378,418,8.0\n378,419,8.5\n378,420,9.0\n378,421,9.5\n378,422,10.0\n378,423,10.5\n378,424,11.0\n378,425,2.5\n378,426,2.0\n378,427,1.5\n378,428,1.0\n378,429,1.5\n378,430,2.0\n378,431,2.5\n378,432,3.0\n378,433,3.5\n378,434,4.0\n378,435,4.5\n378,436,5.0\n378,437,5.5\n378,438,6.0\n378,439,6.5\n378,440,7.0\n378,441,7.5\n378,442,8.0\n378,443,8.5\n378,444,9.0\n378,445,9.5\n378,446,10.0\n378,447,10.5\n378,448,11.0\n378,449,11.5\n378,450,3.0\n378,451,2.5\n378,452,2.0\n378,453,1.5\n378,454,2.0\n378,455,2.5\n378,456,3.0\n378,457,3.5\n378,458,4.0\n378,459,4.5\n378,460,5.0\n378,461,5.5\n378,462,6.0\n378,463,6.5\n378,464,7.0\n378,465,7.5\n378,466,8.0\n378,467,8.5\n378,468,9.0\n378,469,9.5\n378,470,10.0\n378,471,10.5\n378,472,11.0\n378,473,11.5\n378,474,12.0\n378,475,3.5\n378,476,3.0\n378,477,2.5\n378,478,2.0\n378,479,2.5\n378,480,3.0\n378,481,3.5\n378,482,4.0\n378,483,4.5\n378,484,5.0\n378,485,5.5\n378,486,6.0\n378,487,6.5\n378,488,7.0\n378,489,7.5\n378,490,8.0\n378,491,8.5\n378,492,9.0\n378,493,9.5\n378,494,10.0\n378,495,10.5\n378,496,11.0\n378,497,11.5\n378,498,12.0\n378,499,12.5\n378,500,4.0\n378,501,3.5\n378,502,3.0\n378,503,2.5\n378,504,3.0\n378,505,3.5\n378,506,4.0\n378,507,4.5\n378,508,5.0\n378,509,5.5\n378,510,6.0\n378,511,6.5\n378,512,7.0\n378,513,7.5\n378,514,8.0\n378,515,8.5\n378,516,9.0\n378,517,9.5\n378,518,10.0\n378,519,10.5\n378,520,11.0\n378,521,11.5\n378,522,12.0\n378,523,12.5\n378,524,13.0\n378,525,4.5\n378,526,4.0\n378,527,3.5\n378,528,3.0\n378,529,3.5\n378,530,4.0\n378,531,4.5\n378,532,5.0\n378,533,5.5\n378,534,6.0\n378,535,6.5\n378,536,7.0\n378,537,7.5\n378,538,8.0\n378,539,8.5\n378,540,9.0\n378,541,9.5\n378,542,10.0\n378,543,10.5\n378,544,11.0\n378,545,11.5\n378,546,12.0\n378,547,12.5\n378,548,13.0\n378,549,13.5\n378,550,5.0\n378,551,4.5\n378,552,4.0\n378,553,3.5\n378,554,4.0\n378,555,4.5\n378,556,5.0\n378,557,5.5\n378,558,6.0\n378,559,6.5\n378,560,7.0\n378,561,7.5\n378,562,8.0\n378,563,8.5\n378,564,9.0\n378,565,9.5\n378,566,10.0\n378,567,10.5\n378,568,11.0\n378,569,11.5\n378,570,12.0\n378,571,12.5\n378,572,13.0\n378,573,13.5\n378,574,14.0\n378,575,5.5\n378,576,5.0\n378,577,4.5\n378,578,4.0\n378,579,4.5\n378,580,5.0\n378,581,5.5\n378,582,6.0\n378,583,6.5\n378,584,7.0\n378,585,7.5\n378,586,8.0\n378,587,8.5\n378,588,9.0\n378,589,9.5\n378,590,10.0\n378,591,10.5\n378,592,11.0\n378,593,11.5\n378,594,12.0\n378,595,12.5\n378,596,13.0\n378,597,13.5\n378,598,14.0\n378,599,14.5\n378,600,6.0\n378,601,5.5\n378,602,5.0\n378,603,4.5\n378,604,5.0\n378,605,5.5\n378,606,6.0\n378,607,6.5\n378,608,7.0\n378,609,7.5\n378,610,8.0\n378,611,8.5\n378,612,9.0\n378,613,9.5\n378,614,10.0\n378,615,10.5\n378,616,11.0\n378,617,11.5\n378,618,12.0\n378,619,12.5\n378,620,13.0\n378,621,13.5\n378,622,14.0\n378,623,14.5\n378,624,15.0\n379,0,9.5\n379,1,9.0\n379,2,8.5\n379,3,8.0\n379,4,7.5\n379,5,8.0\n379,6,8.5\n379,7,9.0\n379,8,9.5\n379,9,10.0\n379,10,10.5\n379,11,11.0\n379,12,11.5\n379,13,12.0\n379,14,12.5\n379,15,13.0\n379,16,13.5\n379,17,14.0\n379,18,14.5\n379,19,15.0\n379,20,15.5\n379,21,16.0\n379,22,16.5\n379,23,17.0\n379,24,17.5\n379,25,9.0\n379,26,8.5\n379,27,8.0\n379,28,7.5\n379,29,7.0\n379,30,7.5\n379,31,8.0\n379,32,8.5\n379,33,9.0\n379,34,9.5\n379,35,10.0\n379,36,10.5\n379,37,11.0\n379,38,11.5\n379,39,12.0\n379,40,12.5\n379,41,13.0\n379,42,13.5\n379,43,14.0\n379,44,14.5\n379,45,15.0\n379,46,15.5\n379,47,16.0\n379,48,16.5\n379,49,17.0\n379,50,8.5\n379,51,8.0\n379,52,7.5\n379,53,7.0\n379,54,6.5\n379,55,7.0\n379,56,7.5\n379,57,8.0\n379,58,8.5\n379,59,9.0\n379,60,9.5\n379,61,10.0\n379,62,10.5\n379,63,11.0\n379,64,11.5\n379,65,12.0\n379,66,12.5\n379,67,13.0\n379,68,13.5\n379,69,14.0\n379,70,14.5\n379,71,15.0\n379,72,15.5\n379,73,16.0\n379,74,16.5\n379,75,8.0\n379,76,7.5\n379,77,7.0\n379,78,6.5\n379,79,6.0\n379,80,6.5\n379,81,7.0\n379,82,7.5\n379,83,8.0\n379,84,8.5\n379,85,9.0\n379,86,9.5\n379,87,10.0\n379,88,10.5\n379,89,11.0\n379,90,11.5\n379,91,12.0\n379,92,12.5\n379,93,13.0\n379,94,13.5\n379,95,14.0\n379,96,14.5\n379,97,15.0\n379,98,15.5\n379,99,16.0\n379,100,7.5\n379,101,7.0\n379,102,6.5\n379,103,6.0\n379,104,5.5\n379,105,6.0\n379,106,6.5\n379,107,7.0\n379,108,7.5\n379,109,8.0\n379,110,8.5\n379,111,9.0\n379,112,9.5\n379,113,10.0\n379,114,10.5\n379,115,11.0\n379,116,11.5\n379,117,12.0\n379,118,12.5\n379,119,13.0\n379,120,13.5\n379,121,14.0\n379,122,14.5\n379,123,15.0\n379,124,15.5\n379,125,7.0\n379,126,6.5\n379,127,6.0\n379,128,5.5\n379,129,5.0\n379,130,5.5\n379,131,6.0\n379,132,6.5\n379,133,7.0\n379,134,7.5\n379,135,8.0\n379,136,8.5\n379,137,9.0\n379,138,9.5\n379,139,10.0\n379,140,10.5\n379,141,11.0\n379,142,11.5\n379,143,12.0\n379,144,12.5\n379,145,13.0\n379,146,13.5\n379,147,14.0\n379,148,14.5\n379,149,15.0\n379,150,6.5\n379,151,6.0\n379,152,5.5\n379,153,5.0\n379,154,4.5\n379,155,5.0\n379,156,5.5\n379,157,6.0\n379,158,6.5\n379,159,7.0\n379,160,7.5\n379,161,8.0\n379,162,8.5\n379,163,9.0\n379,164,9.5\n379,165,10.0\n379,166,10.5\n379,167,11.0\n379,168,11.5\n379,169,12.0\n379,170,12.5\n379,171,13.0\n379,172,13.5\n379,173,14.0\n379,174,14.5\n379,175,6.0\n379,176,5.5\n379,177,5.0\n379,178,4.5\n379,179,4.0\n379,180,4.5\n379,181,5.0\n379,182,5.5\n379,183,6.0\n379,184,6.5\n379,185,7.0\n379,186,7.5\n379,187,8.0\n379,188,8.5\n379,189,9.0\n379,190,9.5\n379,191,10.0\n379,192,10.5\n379,193,11.0\n379,194,11.5\n379,195,12.0\n379,196,12.5\n379,197,13.0\n379,198,13.5\n379,199,14.0\n379,200,5.5\n379,201,5.0\n379,202,4.5\n379,203,4.0\n379,204,3.5\n379,205,4.0\n379,206,4.5\n379,207,5.0\n379,208,5.5\n379,209,6.0\n379,210,6.5\n379,211,7.0\n379,212,7.5\n379,213,8.0\n379,214,8.5\n379,215,9.0\n379,216,9.5\n379,217,10.0\n379,218,10.5\n379,219,11.0\n379,220,11.5\n379,221,12.0\n379,222,12.5\n379,223,13.0\n379,224,13.5\n379,225,5.0\n379,226,4.5\n379,227,4.0\n379,228,3.5\n379,229,3.0\n379,230,3.5\n379,231,4.0\n379,232,4.5\n379,233,5.0\n379,234,5.5\n379,235,6.0\n379,236,6.5\n379,237,7.0\n379,238,7.5\n379,239,8.0\n379,240,8.5\n379,241,9.0\n379,242,9.5\n379,243,10.0\n379,244,10.5\n379,245,11.0\n379,246,11.5\n379,247,12.0\n379,248,12.5\n379,249,13.0\n379,250,4.5\n379,251,4.0\n379,252,3.5\n379,253,3.0\n379,254,2.5\n379,255,3.0\n379,256,3.5\n379,257,4.0\n379,258,4.5\n379,259,5.0\n379,260,5.5\n379,261,6.0\n379,262,6.5\n379,263,7.0\n379,264,7.5\n379,265,8.0\n379,266,8.5\n379,267,9.0\n379,268,9.5\n379,269,10.0\n379,270,10.5\n379,271,11.0\n379,272,11.5\n379,273,12.0\n379,274,12.5\n379,275,4.0\n379,276,3.5\n379,277,3.0\n379,278,2.5\n379,279,2.0\n379,280,2.5\n379,281,3.0\n379,282,3.5\n379,283,4.0\n379,284,4.5\n379,285,5.0\n379,286,5.5\n379,287,6.0\n379,288,6.5\n379,289,7.0\n379,290,7.5\n379,291,8.0\n379,292,8.5\n379,293,9.0\n379,294,9.5\n379,295,10.0\n379,296,10.5\n379,297,11.0\n379,298,11.5\n379,299,12.0\n379,300,3.5\n379,301,3.0\n379,302,2.5\n379,303,2.0\n379,304,1.5\n379,305,2.0\n379,306,2.5\n379,307,3.0\n379,308,3.5\n379,309,4.0\n379,310,4.5\n379,311,5.0\n379,312,5.5\n379,313,6.0\n379,314,6.5\n379,315,7.0\n379,316,7.5\n379,317,8.0\n379,318,8.5\n379,319,9.0\n379,320,9.5\n379,321,10.0\n379,322,10.5\n379,323,11.0\n379,324,11.5\n379,325,3.0\n379,326,2.5\n379,327,2.0\n379,328,1.5\n379,329,1.0\n379,330,1.5\n379,331,2.0\n379,332,2.5\n379,333,3.0\n379,334,3.5\n379,335,4.0\n379,336,4.5\n379,337,5.0\n379,338,5.5\n379,339,6.0\n379,340,6.5\n379,341,7.0\n379,342,7.5\n379,343,8.0\n379,344,8.5\n379,345,9.0\n379,346,9.5\n379,347,10.0\n379,348,10.5\n379,349,11.0\n379,350,2.5\n379,351,2.0\n379,352,1.5\n379,353,1.0\n379,354,0.5\n379,355,1.0\n379,356,1.5\n379,357,2.0\n379,358,2.5\n379,359,3.0\n379,360,3.5\n379,361,4.0\n379,362,4.5\n379,363,5.0\n379,364,5.5\n379,365,6.0\n379,366,6.5\n379,367,7.0\n379,368,7.5\n379,369,8.0\n379,370,8.5\n379,371,9.0\n379,372,9.5\n379,373,10.0\n379,374,10.5\n379,375,2.0\n379,376,1.5\n379,377,1.0\n379,378,0.5\n379,379,0\n379,380,0.5\n379,381,1.0\n379,382,1.5\n379,383,2.0\n379,384,2.5\n379,385,3.0\n379,386,3.5\n379,387,4.0\n379,388,4.5\n379,389,5.0\n379,390,5.5\n379,391,6.0\n379,392,6.5\n379,393,7.0\n379,394,7.5\n379,395,8.0\n379,396,8.5\n379,397,9.0\n379,398,9.5\n379,399,10.0\n379,400,2.5\n379,401,2.0\n379,402,1.5\n379,403,1.0\n379,404,0.5\n379,405,1.0\n379,406,1.5\n379,407,2.0\n379,408,2.5\n379,409,3.0\n379,410,3.5\n379,411,4.0\n379,412,4.5\n379,413,5.0\n379,414,5.5\n379,415,6.0\n379,416,6.5\n379,417,7.0\n379,418,7.5\n379,419,8.0\n379,420,8.5\n379,421,9.0\n379,422,9.5\n379,423,10.0\n379,424,10.5\n379,425,3.0\n379,426,2.5\n379,427,2.0\n379,428,1.5\n379,429,1.0\n379,430,1.5\n379,431,2.0\n379,432,2.5\n379,433,3.0\n379,434,3.5\n379,435,4.0\n379,436,4.5\n379,437,5.0\n379,438,5.5\n379,439,6.0\n379,440,6.5\n379,441,7.0\n379,442,7.5\n379,443,8.0\n379,444,8.5\n379,445,9.0\n379,446,9.5\n379,447,10.0\n379,448,10.5\n379,449,11.0\n379,450,3.5\n379,451,3.0\n379,452,2.5\n379,453,2.0\n379,454,1.5\n379,455,2.0\n379,456,2.5\n379,457,3.0\n379,458,3.5\n379,459,4.0\n379,460,4.5\n379,461,5.0\n379,462,5.5\n379,463,6.0\n379,464,6.5\n379,465,7.0\n379,466,7.5\n379,467,8.0\n379,468,8.5\n379,469,9.0\n379,470,9.5\n379,471,10.0\n379,472,10.5\n379,473,11.0\n379,474,11.5\n379,475,4.0\n379,476,3.5\n379,477,3.0\n379,478,2.5\n379,479,2.0\n379,480,2.5\n379,481,3.0\n379,482,3.5\n379,483,4.0\n379,484,4.5\n379,485,5.0\n379,486,5.5\n379,487,6.0\n379,488,6.5\n379,489,7.0\n379,490,7.5\n379,491,8.0\n379,492,8.5\n379,493,9.0\n379,494,9.5\n379,495,10.0\n379,496,10.5\n379,497,11.0\n379,498,11.5\n379,499,12.0\n379,500,4.5\n379,501,4.0\n379,502,3.5\n379,503,3.0\n379,504,2.5\n379,505,3.0\n379,506,3.5\n379,507,4.0\n379,508,4.5\n379,509,5.0\n379,510,5.5\n379,511,6.0\n379,512,6.5\n379,513,7.0\n379,514,7.5\n379,515,8.0\n379,516,8.5\n379,517,9.0\n379,518,9.5\n379,519,10.0\n379,520,10.5\n379,521,11.0\n379,522,11.5\n379,523,12.0\n379,524,12.5\n379,525,5.0\n379,526,4.5\n379,527,4.0\n379,528,3.5\n379,529,3.0\n379,530,3.5\n379,531,4.0\n379,532,4.5\n379,533,5.0\n379,534,5.5\n379,535,6.0\n379,536,6.5\n379,537,7.0\n379,538,7.5\n379,539,8.0\n379,540,8.5\n379,541,9.0\n379,542,9.5\n379,543,10.0\n379,544,10.5\n379,545,11.0\n379,546,11.5\n379,547,12.0\n379,548,12.5\n379,549,13.0\n379,550,5.5\n379,551,5.0\n379,552,4.5\n379,553,4.0\n379,554,3.5\n379,555,4.0\n379,556,4.5\n379,557,5.0\n379,558,5.5\n379,559,6.0\n379,560,6.5\n379,561,7.0\n379,562,7.5\n379,563,8.0\n379,564,8.5\n379,565,9.0\n379,566,9.5\n379,567,10.0\n379,568,10.5\n379,569,11.0\n379,570,11.5\n379,571,12.0\n379,572,12.5\n379,573,13.0\n379,574,13.5\n379,575,6.0\n379,576,5.5\n379,577,5.0\n379,578,4.5\n379,579,4.0\n379,580,4.5\n379,581,5.0\n379,582,5.5\n379,583,6.0\n379,584,6.5\n379,585,7.0\n379,586,7.5\n379,587,8.0\n379,588,8.5\n379,589,9.0\n379,590,9.5\n379,591,10.0\n379,592,10.5\n379,593,11.0\n379,594,11.5\n379,595,12.0\n379,596,12.5\n379,597,13.0\n379,598,13.5\n379,599,14.0\n379,600,6.5\n379,601,6.0\n379,602,5.5\n379,603,5.0\n379,604,4.5\n379,605,5.0\n379,606,5.5\n379,607,6.0\n379,608,6.5\n379,609,7.0\n379,610,7.5\n379,611,8.0\n379,612,8.5\n379,613,9.0\n379,614,9.5\n379,615,10.0\n379,616,10.5\n379,617,11.0\n379,618,11.5\n379,619,12.0\n379,620,12.5\n379,621,13.0\n379,622,13.5\n379,623,14.0\n379,624,14.5\n380,0,10.0\n380,1,9.5\n380,2,9.0\n380,3,8.5\n380,4,8.0\n380,5,7.5\n380,6,8.0\n380,7,8.5\n380,8,9.0\n380,9,9.5\n380,10,10.0\n380,11,10.5\n380,12,11.0\n380,13,11.5\n380,14,12.0\n380,15,12.5\n380,16,13.0\n380,17,13.5\n380,18,14.0\n380,19,14.5\n380,20,15.0\n380,21,15.5\n380,22,16.0\n380,23,16.5\n380,24,17.0\n380,25,9.5\n380,26,9.0\n380,27,8.5\n380,28,8.0\n380,29,7.5\n380,30,7.0\n380,31,7.5\n380,32,8.0\n380,33,8.5\n380,34,9.0\n380,35,9.5\n380,36,10.0\n380,37,10.5\n380,38,11.0\n380,39,11.5\n380,40,12.0\n380,41,12.5\n380,42,13.0\n380,43,13.5\n380,44,14.0\n380,45,14.5\n380,46,15.0\n380,47,15.5\n380,48,16.0\n380,49,16.5\n380,50,9.0\n380,51,8.5\n380,52,8.0\n380,53,7.5\n380,54,7.0\n380,55,6.5\n380,56,7.0\n380,57,7.5\n380,58,8.0\n380,59,8.5\n380,60,9.0\n380,61,9.5\n380,62,10.0\n380,63,10.5\n380,64,11.0\n380,65,11.5\n380,66,12.0\n380,67,12.5\n380,68,13.0\n380,69,13.5\n380,70,14.0\n380,71,14.5\n380,72,15.0\n380,73,15.5\n380,74,16.0\n380,75,8.5\n380,76,8.0\n380,77,7.5\n380,78,7.0\n380,79,6.5\n380,80,6.0\n380,81,6.5\n380,82,7.0\n380,83,7.5\n380,84,8.0\n380,85,8.5\n380,86,9.0\n380,87,9.5\n380,88,10.0\n380,89,10.5\n380,90,11.0\n380,91,11.5\n380,92,12.0\n380,93,12.5\n380,94,13.0\n380,95,13.5\n380,96,14.0\n380,97,14.5\n380,98,15.0\n380,99,15.5\n380,100,8.0\n380,101,7.5\n380,102,7.0\n380,103,6.5\n380,104,6.0\n380,105,5.5\n380,106,6.0\n380,107,6.5\n380,108,7.0\n380,109,7.5\n380,110,8.0\n380,111,8.5\n380,112,9.0\n380,113,9.5\n380,114,10.0\n380,115,10.5\n380,116,11.0\n380,117,11.5\n380,118,12.0\n380,119,12.5\n380,120,13.0\n380,121,13.5\n380,122,14.0\n380,123,14.5\n380,124,15.0\n380,125,7.5\n380,126,7.0\n380,127,6.5\n380,128,6.0\n380,129,5.5\n380,130,5.0\n380,131,5.5\n380,132,6.0\n380,133,6.5\n380,134,7.0\n380,135,7.5\n380,136,8.0\n380,137,8.5\n380,138,9.0\n380,139,9.5\n380,140,10.0\n380,141,10.5\n380,142,11.0\n380,143,11.5\n380,144,12.0\n380,145,12.5\n380,146,13.0\n380,147,13.5\n380,148,14.0\n380,149,14.5\n380,150,7.0\n380,151,6.5\n380,152,6.0\n380,153,5.5\n380,154,5.0\n380,155,4.5\n380,156,5.0\n380,157,5.5\n380,158,6.0\n380,159,6.5\n380,160,7.0\n380,161,7.5\n380,162,8.0\n380,163,8.5\n380,164,9.0\n380,165,9.5\n380,166,10.0\n380,167,10.5\n380,168,11.0\n380,169,11.5\n380,170,12.0\n380,171,12.5\n380,172,13.0\n380,173,13.5\n380,174,14.0\n380,175,6.5\n380,176,6.0\n380,177,5.5\n380,178,5.0\n380,179,4.5\n380,180,4.0\n380,181,4.5\n380,182,5.0\n380,183,5.5\n380,184,6.0\n380,185,6.5\n380,186,7.0\n380,187,7.5\n380,188,8.0\n380,189,8.5\n380,190,9.0\n380,191,9.5\n380,192,10.0\n380,193,10.5\n380,194,11.0\n380,195,11.5\n380,196,12.0\n380,197,12.5\n380,198,13.0\n380,199,13.5\n380,200,6.0\n380,201,5.5\n380,202,5.0\n380,203,4.5\n380,204,4.0\n380,205,3.5\n380,206,4.0\n380,207,4.5\n380,208,5.0\n380,209,5.5\n380,210,6.0\n380,211,6.5\n380,212,7.0\n380,213,7.5\n380,214,8.0\n380,215,8.5\n380,216,9.0\n380,217,9.5\n380,218,10.0\n380,219,10.5\n380,220,11.0\n380,221,11.5\n380,222,12.0\n380,223,12.5\n380,224,13.0\n380,225,5.5\n380,226,5.0\n380,227,4.5\n380,228,4.0\n380,229,3.5\n380,230,3.0\n380,231,3.5\n380,232,4.0\n380,233,4.5\n380,234,5.0\n380,235,5.5\n380,236,6.0\n380,237,6.5\n380,238,7.0\n380,239,7.5\n380,240,8.0\n380,241,8.5\n380,242,9.0\n380,243,9.5\n380,244,10.0\n380,245,10.5\n380,246,11.0\n380,247,11.5\n380,248,12.0\n380,249,12.5\n380,250,5.0\n380,251,4.5\n380,252,4.0\n380,253,3.5\n380,254,3.0\n380,255,2.5\n380,256,3.0\n380,257,3.5\n380,258,4.0\n380,259,4.5\n380,260,5.0\n380,261,5.5\n380,262,6.0\n380,263,6.5\n380,264,7.0\n380,265,7.5\n380,266,8.0\n380,267,8.5\n380,268,9.0\n380,269,9.5\n380,270,10.0\n380,271,10.5\n380,272,11.0\n380,273,11.5\n380,274,12.0\n380,275,4.5\n380,276,4.0\n380,277,3.5\n380,278,3.0\n380,279,2.5\n380,280,2.0\n380,281,2.5\n380,282,3.0\n380,283,3.5\n380,284,4.0\n380,285,4.5\n380,286,5.0\n380,287,5.5\n380,288,6.0\n380,289,6.5\n380,290,7.0\n380,291,7.5\n380,292,8.0\n380,293,8.5\n380,294,9.0\n380,295,9.5\n380,296,10.0\n380,297,10.5\n380,298,11.0\n380,299,11.5\n380,300,4.0\n380,301,3.5\n380,302,3.0\n380,303,2.5\n380,304,2.0\n380,305,1.5\n380,306,2.0\n380,307,2.5\n380,308,3.0\n380,309,3.5\n380,310,4.0\n380,311,4.5\n380,312,5.0\n380,313,5.5\n380,314,6.0\n380,315,6.5\n380,316,7.0\n380,317,7.5\n380,318,8.0\n380,319,8.5\n380,320,9.0\n380,321,9.5\n380,322,10.0\n380,323,10.5\n380,324,11.0\n380,325,3.5\n380,326,3.0\n380,327,2.5\n380,328,2.0\n380,329,1.5\n380,330,1.0\n380,331,1.5\n380,332,2.0\n380,333,2.5\n380,334,3.0\n380,335,3.5\n380,336,4.0\n380,337,4.5\n380,338,5.0\n380,339,5.5\n380,340,6.0\n380,341,6.5\n380,342,7.0\n380,343,7.5\n380,344,8.0\n380,345,8.5\n380,346,9.0\n380,347,9.5\n380,348,10.0\n380,349,10.5\n380,350,3.0\n380,351,2.5\n380,352,2.0\n380,353,1.5\n380,354,1.0\n380,355,0.5\n380,356,1.0\n380,357,1.5\n380,358,2.0\n380,359,2.5\n380,360,3.0\n380,361,3.5\n380,362,4.0\n380,363,4.5\n380,364,5.0\n380,365,5.5\n380,366,6.0\n380,367,6.5\n380,368,7.0\n380,369,7.5\n380,370,8.0\n380,371,8.5\n380,372,9.0\n380,373,9.5\n380,374,10.0\n380,375,2.5\n380,376,2.0\n380,377,1.5\n380,378,1.0\n380,379,0.5\n380,380,0\n380,381,0.5\n380,382,1.0\n380,383,1.5\n380,384,2.0\n380,385,2.5\n380,386,3.0\n380,387,3.5\n380,388,4.0\n380,389,4.5\n380,390,5.0\n380,391,5.5\n380,392,6.0\n380,393,6.5\n380,394,7.0\n380,395,7.5\n380,396,8.0\n380,397,8.5\n380,398,9.0\n380,399,9.5\n380,400,3.0\n380,401,2.5\n380,402,2.0\n380,403,1.5\n380,404,1.0\n380,405,0.5\n380,406,1.0\n380,407,1.5\n380,408,2.0\n380,409,2.5\n380,410,3.0\n380,411,3.5\n380,412,4.0\n380,413,4.5\n380,414,5.0\n380,415,5.5\n380,416,6.0\n380,417,6.5\n380,418,7.0\n380,419,7.5\n380,420,8.0\n380,421,8.5\n380,422,9.0\n380,423,9.5\n380,424,10.0\n380,425,3.5\n380,426,3.0\n380,427,2.5\n380,428,2.0\n380,429,1.5\n380,430,1.0\n380,431,1.5\n380,432,2.0\n380,433,2.5\n380,434,3.0\n380,435,3.5\n380,436,4.0\n380,437,4.5\n380,438,5.0\n380,439,5.5\n380,440,6.0\n380,441,6.5\n380,442,7.0\n380,443,7.5\n380,444,8.0\n380,445,8.5\n380,446,9.0\n380,447,9.5\n380,448,10.0\n380,449,10.5\n380,450,4.0\n380,451,3.5\n380,452,3.0\n380,453,2.5\n380,454,2.0\n380,455,1.5\n380,456,2.0\n380,457,2.5\n380,458,3.0\n380,459,3.5\n380,460,4.0\n380,461,4.5\n380,462,5.0\n380,463,5.5\n380,464,6.0\n380,465,6.5\n380,466,7.0\n380,467,7.5\n380,468,8.0\n380,469,8.5\n380,470,9.0\n380,471,9.5\n380,472,10.0\n380,473,10.5\n380,474,11.0\n380,475,4.5\n380,476,4.0\n380,477,3.5\n380,478,3.0\n380,479,2.5\n380,480,2.0\n380,481,2.5\n380,482,3.0\n380,483,3.5\n380,484,4.0\n380,485,4.5\n380,486,5.0\n380,487,5.5\n380,488,6.0\n380,489,6.5\n380,490,7.0\n380,491,7.5\n380,492,8.0\n380,493,8.5\n380,494,9.0\n380,495,9.5\n380,496,10.0\n380,497,10.5\n380,498,11.0\n380,499,11.5\n380,500,5.0\n380,501,4.5\n380,502,4.0\n380,503,3.5\n380,504,3.0\n380,505,2.5\n380,506,3.0\n380,507,3.5\n380,508,4.0\n380,509,4.5\n380,510,5.0\n380,511,5.5\n380,512,6.0\n380,513,6.5\n380,514,7.0\n380,515,7.5\n380,516,8.0\n380,517,8.5\n380,518,9.0\n380,519,9.5\n380,520,10.0\n380,521,10.5\n380,522,11.0\n380,523,11.5\n380,524,12.0\n380,525,5.5\n380,526,5.0\n380,527,4.5\n380,528,4.0\n380,529,3.5\n380,530,3.0\n380,531,3.5\n380,532,4.0\n380,533,4.5\n380,534,5.0\n380,535,5.5\n380,536,6.0\n380,537,6.5\n380,538,7.0\n380,539,7.5\n380,540,8.0\n380,541,8.5\n380,542,9.0\n380,543,9.5\n380,544,10.0\n380,545,10.5\n380,546,11.0\n380,547,11.5\n380,548,12.0\n380,549,12.5\n380,550,6.0\n380,551,5.5\n380,552,5.0\n380,553,4.5\n380,554,4.0\n380,555,3.5\n380,556,4.0\n380,557,4.5\n380,558,5.0\n380,559,5.5\n380,560,6.0\n380,561,6.5\n380,562,7.0\n380,563,7.5\n380,564,8.0\n380,565,8.5\n380,566,9.0\n380,567,9.5\n380,568,10.0\n380,569,10.5\n380,570,11.0\n380,571,11.5\n380,572,12.0\n380,573,12.5\n380,574,13.0\n380,575,6.5\n380,576,6.0\n380,577,5.5\n380,578,5.0\n380,579,4.5\n380,580,4.0\n380,581,4.5\n380,582,5.0\n380,583,5.5\n380,584,6.0\n380,585,6.5\n380,586,7.0\n380,587,7.5\n380,588,8.0\n380,589,8.5\n380,590,9.0\n380,591,9.5\n380,592,10.0\n380,593,10.5\n380,594,11.0\n380,595,11.5\n380,596,12.0\n380,597,12.5\n380,598,13.0\n380,599,13.5\n380,600,7.0\n380,601,6.5\n380,602,6.0\n380,603,5.5\n380,604,5.0\n380,605,4.5\n380,606,5.0\n380,607,5.5\n380,608,6.0\n380,609,6.5\n380,610,7.0\n380,611,7.5\n380,612,8.0\n380,613,8.5\n380,614,9.0\n380,615,9.5\n380,616,10.0\n380,617,10.5\n380,618,11.0\n380,619,11.5\n380,620,12.0\n380,621,12.5\n380,622,13.0\n380,623,13.5\n380,624,14.0\n381,0,10.5\n381,1,10.0\n381,2,9.5\n381,3,9.0\n381,4,8.5\n381,5,8.0\n381,6,7.5\n381,7,8.0\n381,8,8.5\n381,9,9.0\n381,10,9.5\n381,11,10.0\n381,12,10.5\n381,13,11.0\n381,14,11.5\n381,15,12.0\n381,16,12.5\n381,17,13.0\n381,18,13.5\n381,19,14.0\n381,20,14.5\n381,21,15.0\n381,22,15.5\n381,23,16.0\n381,24,16.5\n381,25,10.0\n381,26,9.5\n381,27,9.0\n381,28,8.5\n381,29,8.0\n381,30,7.5\n381,31,7.0\n381,32,7.5\n381,33,8.0\n381,34,8.5\n381,35,9.0\n381,36,9.5\n381,37,10.0\n381,38,10.5\n381,39,11.0\n381,40,11.5\n381,41,12.0\n381,42,12.5\n381,43,13.0\n381,44,13.5\n381,45,14.0\n381,46,14.5\n381,47,15.0\n381,48,15.5\n381,49,16.0\n381,50,9.5\n381,51,9.0\n381,52,8.5\n381,53,8.0\n381,54,7.5\n381,55,7.0\n381,56,6.5\n381,57,7.0\n381,58,7.5\n381,59,8.0\n381,60,8.5\n381,61,9.0\n381,62,9.5\n381,63,10.0\n381,64,10.5\n381,65,11.0\n381,66,11.5\n381,67,12.0\n381,68,12.5\n381,69,13.0\n381,70,13.5\n381,71,14.0\n381,72,14.5\n381,73,15.0\n381,74,15.5\n381,75,9.0\n381,76,8.5\n381,77,8.0\n381,78,7.5\n381,79,7.0\n381,80,6.5\n381,81,6.0\n381,82,6.5\n381,83,7.0\n381,84,7.5\n381,85,8.0\n381,86,8.5\n381,87,9.0\n381,88,9.5\n381,89,10.0\n381,90,10.5\n381,91,11.0\n381,92,11.5\n381,93,12.0\n381,94,12.5\n381,95,13.0\n381,96,13.5\n381,97,14.0\n381,98,14.5\n381,99,15.0\n381,100,8.5\n381,101,8.0\n381,102,7.5\n381,103,7.0\n381,104,6.5\n381,105,6.0\n381,106,5.5\n381,107,6.0\n381,108,6.5\n381,109,7.0\n381,110,7.5\n381,111,8.0\n381,112,8.5\n381,113,9.0\n381,114,9.5\n381,115,10.0\n381,116,10.5\n381,117,11.0\n381,118,11.5\n381,119,12.0\n381,120,12.5\n381,121,13.0\n381,122,13.5\n381,123,14.0\n381,124,14.5\n381,125,8.0\n381,126,7.5\n381,127,7.0\n381,128,6.5\n381,129,6.0\n381,130,5.5\n381,131,5.0\n381,132,5.5\n381,133,6.0\n381,134,6.5\n381,135,7.0\n381,136,7.5\n381,137,8.0\n381,138,8.5\n381,139,9.0\n381,140,9.5\n381,141,10.0\n381,142,10.5\n381,143,11.0\n381,144,11.5\n381,145,12.0\n381,146,12.5\n381,147,13.0\n381,148,13.5\n381,149,14.0\n381,150,7.5\n381,151,7.0\n381,152,6.5\n381,153,6.0\n381,154,5.5\n381,155,5.0\n381,156,4.5\n381,157,5.0\n381,158,5.5\n381,159,6.0\n381,160,6.5\n381,161,7.0\n381,162,7.5\n381,163,8.0\n381,164,8.5\n381,165,9.0\n381,166,9.5\n381,167,10.0\n381,168,10.5\n381,169,11.0\n381,170,11.5\n381,171,12.0\n381,172,12.5\n381,173,13.0\n381,174,13.5\n381,175,7.0\n381,176,6.5\n381,177,6.0\n381,178,5.5\n381,179,5.0\n381,180,4.5\n381,181,4.0\n381,182,4.5\n381,183,5.0\n381,184,5.5\n381,185,6.0\n381,186,6.5\n381,187,7.0\n381,188,7.5\n381,189,8.0\n381,190,8.5\n381,191,9.0\n381,192,9.5\n381,193,10.0\n381,194,10.5\n381,195,11.0\n381,196,11.5\n381,197,12.0\n381,198,12.5\n381,199,13.0\n381,200,6.5\n381,201,6.0\n381,202,5.5\n381,203,5.0\n381,204,4.5\n381,205,4.0\n381,206,3.5\n381,207,4.0\n381,208,4.5\n381,209,5.0\n381,210,5.5\n381,211,6.0\n381,212,6.5\n381,213,7.0\n381,214,7.5\n381,215,8.0\n381,216,8.5\n381,217,9.0\n381,218,9.5\n381,219,10.0\n381,220,10.5\n381,221,11.0\n381,222,11.5\n381,223,12.0\n381,224,12.5\n381,225,6.0\n381,226,5.5\n381,227,5.0\n381,228,4.5\n381,229,4.0\n381,230,3.5\n381,231,3.0\n381,232,3.5\n381,233,4.0\n381,234,4.5\n381,235,5.0\n381,236,5.5\n381,237,6.0\n381,238,6.5\n381,239,7.0\n381,240,7.5\n381,241,8.0\n381,242,8.5\n381,243,9.0\n381,244,9.5\n381,245,10.0\n381,246,10.5\n381,247,11.0\n381,248,11.5\n381,249,12.0\n381,250,5.5\n381,251,5.0\n381,252,4.5\n381,253,4.0\n381,254,3.5\n381,255,3.0\n381,256,2.5\n381,257,3.0\n381,258,3.5\n381,259,4.0\n381,260,4.5\n381,261,5.0\n381,262,5.5\n381,263,6.0\n381,264,6.5\n381,265,7.0\n381,266,7.5\n381,267,8.0\n381,268,8.5\n381,269,9.0\n381,270,9.5\n381,271,10.0\n381,272,10.5\n381,273,11.0\n381,274,11.5\n381,275,5.0\n381,276,4.5\n381,277,4.0\n381,278,3.5\n381,279,3.0\n381,280,2.5\n381,281,2.0\n381,282,2.5\n381,283,3.0\n381,284,3.5\n381,285,4.0\n381,286,4.5\n381,287,5.0\n381,288,5.5\n381,289,6.0\n381,290,6.5\n381,291,7.0\n381,292,7.5\n381,293,8.0\n381,294,8.5\n381,295,9.0\n381,296,9.5\n381,297,10.0\n381,298,10.5\n381,299,11.0\n381,300,4.5\n381,301,4.0\n381,302,3.5\n381,303,3.0\n381,304,2.5\n381,305,2.0\n381,306,1.5\n381,307,2.0\n381,308,2.5\n381,309,3.0\n381,310,3.5\n381,311,4.0\n381,312,4.5\n381,313,5.0\n381,314,5.5\n381,315,6.0\n381,316,6.5\n381,317,7.0\n381,318,7.5\n381,319,8.0\n381,320,8.5\n381,321,9.0\n381,322,9.5\n381,323,10.0\n381,324,10.5\n381,325,4.0\n381,326,3.5\n381,327,3.0\n381,328,2.5\n381,329,2.0\n381,330,1.5\n381,331,1.0\n381,332,1.5\n381,333,2.0\n381,334,2.5\n381,335,3.0\n381,336,3.5\n381,337,4.0\n381,338,4.5\n381,339,5.0\n381,340,5.5\n381,341,6.0\n381,342,6.5\n381,343,7.0\n381,344,7.5\n381,345,8.0\n381,346,8.5\n381,347,9.0\n381,348,9.5\n381,349,10.0\n381,350,3.5\n381,351,3.0\n381,352,2.5\n381,353,2.0\n381,354,1.5\n381,355,1.0\n381,356,0.5\n381,357,1.0\n381,358,1.5\n381,359,2.0\n381,360,2.5\n381,361,3.0\n381,362,3.5\n381,363,4.0\n381,364,4.5\n381,365,5.0\n381,366,5.5\n381,367,6.0\n381,368,6.5\n381,369,7.0\n381,370,7.5\n381,371,8.0\n381,372,8.5\n381,373,9.0\n381,374,9.5\n381,375,3.0\n381,376,2.5\n381,377,2.0\n381,378,1.5\n381,379,1.0\n381,380,0.5\n381,381,0\n381,382,0.5\n381,383,1.0\n381,384,1.5\n381,385,2.0\n381,386,2.5\n381,387,3.0\n381,388,3.5\n381,389,4.0\n381,390,4.5\n381,391,5.0\n381,392,5.5\n381,393,6.0\n381,394,6.5\n381,395,7.0\n381,396,7.5\n381,397,8.0\n381,398,8.5\n381,399,9.0\n381,400,3.5\n381,401,3.0\n381,402,2.5\n381,403,2.0\n381,404,1.5\n381,405,1.0\n381,406,0.5\n381,407,1.0\n381,408,1.5\n381,409,2.0\n381,410,2.5\n381,411,3.0\n381,412,3.5\n381,413,4.0\n381,414,4.5\n381,415,5.0\n381,416,5.5\n381,417,6.0\n381,418,6.5\n381,419,7.0\n381,420,7.5\n381,421,8.0\n381,422,8.5\n381,423,9.0\n381,424,9.5\n381,425,4.0\n381,426,3.5\n381,427,3.0\n381,428,2.5\n381,429,2.0\n381,430,1.5\n381,431,1.0\n381,432,1.5\n381,433,2.0\n381,434,2.5\n381,435,3.0\n381,436,3.5\n381,437,4.0\n381,438,4.5\n381,439,5.0\n381,440,5.5\n381,441,6.0\n381,442,6.5\n381,443,7.0\n381,444,7.5\n381,445,8.0\n381,446,8.5\n381,447,9.0\n381,448,9.5\n381,449,10.0\n381,450,4.5\n381,451,4.0\n381,452,3.5\n381,453,3.0\n381,454,2.5\n381,455,2.0\n381,456,1.5\n381,457,2.0\n381,458,2.5\n381,459,3.0\n381,460,3.5\n381,461,4.0\n381,462,4.5\n381,463,5.0\n381,464,5.5\n381,465,6.0\n381,466,6.5\n381,467,7.0\n381,468,7.5\n381,469,8.0\n381,470,8.5\n381,471,9.0\n381,472,9.5\n381,473,10.0\n381,474,10.5\n381,475,5.0\n381,476,4.5\n381,477,4.0\n381,478,3.5\n381,479,3.0\n381,480,2.5\n381,481,2.0\n381,482,2.5\n381,483,3.0\n381,484,3.5\n381,485,4.0\n381,486,4.5\n381,487,5.0\n381,488,5.5\n381,489,6.0\n381,490,6.5\n381,491,7.0\n381,492,7.5\n381,493,8.0\n381,494,8.5\n381,495,9.0\n381,496,9.5\n381,497,10.0\n381,498,10.5\n381,499,11.0\n381,500,5.5\n381,501,5.0\n381,502,4.5\n381,503,4.0\n381,504,3.5\n381,505,3.0\n381,506,2.5\n381,507,3.0\n381,508,3.5\n381,509,4.0\n381,510,4.5\n381,511,5.0\n381,512,5.5\n381,513,6.0\n381,514,6.5\n381,515,7.0\n381,516,7.5\n381,517,8.0\n381,518,8.5\n381,519,9.0\n381,520,9.5\n381,521,10.0\n381,522,10.5\n381,523,11.0\n381,524,11.5\n381,525,6.0\n381,526,5.5\n381,527,5.0\n381,528,4.5\n381,529,4.0\n381,530,3.5\n381,531,3.0\n381,532,3.5\n381,533,4.0\n381,534,4.5\n381,535,5.0\n381,536,5.5\n381,537,6.0\n381,538,6.5\n381,539,7.0\n381,540,7.5\n381,541,8.0\n381,542,8.5\n381,543,9.0\n381,544,9.5\n381,545,10.0\n381,546,10.5\n381,547,11.0\n381,548,11.5\n381,549,12.0\n381,550,6.5\n381,551,6.0\n381,552,5.5\n381,553,5.0\n381,554,4.5\n381,555,4.0\n381,556,3.5\n381,557,4.0\n381,558,4.5\n381,559,5.0\n381,560,5.5\n381,561,6.0\n381,562,6.5\n381,563,7.0\n381,564,7.5\n381,565,8.0\n381,566,8.5\n381,567,9.0\n381,568,9.5\n381,569,10.0\n381,570,10.5\n381,571,11.0\n381,572,11.5\n381,573,12.0\n381,574,12.5\n381,575,7.0\n381,576,6.5\n381,577,6.0\n381,578,5.5\n381,579,5.0\n381,580,4.5\n381,581,4.0\n381,582,4.5\n381,583,5.0\n381,584,5.5\n381,585,6.0\n381,586,6.5\n381,587,7.0\n381,588,7.5\n381,589,8.0\n381,590,8.5\n381,591,9.0\n381,592,9.5\n381,593,10.0\n381,594,10.5\n381,595,11.0\n381,596,11.5\n381,597,12.0\n381,598,12.5\n381,599,13.0\n381,600,7.5\n381,601,7.0\n381,602,6.5\n381,603,6.0\n381,604,5.5\n381,605,5.0\n381,606,4.5\n381,607,5.0\n381,608,5.5\n381,609,6.0\n381,610,6.5\n381,611,7.0\n381,612,7.5\n381,613,8.0\n381,614,8.5\n381,615,9.0\n381,616,9.5\n381,617,10.0\n381,618,10.5\n381,619,11.0\n381,620,11.5\n381,621,12.0\n381,622,12.5\n381,623,13.0\n381,624,13.5\n382,0,11.0\n382,1,10.5\n382,2,10.0\n382,3,9.5\n382,4,9.0\n382,5,8.5\n382,6,8.0\n382,7,7.5\n382,8,8.0\n382,9,8.5\n382,10,9.0\n382,11,9.5\n382,12,10.0\n382,13,10.5\n382,14,11.0\n382,15,11.5\n382,16,12.0\n382,17,12.5\n382,18,13.0\n382,19,13.5\n382,20,14.0\n382,21,14.5\n382,22,15.0\n382,23,15.5\n382,24,16.0\n382,25,10.5\n382,26,10.0\n382,27,9.5\n382,28,9.0\n382,29,8.5\n382,30,8.0\n382,31,7.5\n382,32,7.0\n382,33,7.5\n382,34,8.0\n382,35,8.5\n382,36,9.0\n382,37,9.5\n382,38,10.0\n382,39,10.5\n382,40,11.0\n382,41,11.5\n382,42,12.0\n382,43,12.5\n382,44,13.0\n382,45,13.5\n382,46,14.0\n382,47,14.5\n382,48,15.0\n382,49,15.5\n382,50,10.0\n382,51,9.5\n382,52,9.0\n382,53,8.5\n382,54,8.0\n382,55,7.5\n382,56,7.0\n382,57,6.5\n382,58,7.0\n382,59,7.5\n382,60,8.0\n382,61,8.5\n382,62,9.0\n382,63,9.5\n382,64,10.0\n382,65,10.5\n382,66,11.0\n382,67,11.5\n382,68,12.0\n382,69,12.5\n382,70,13.0\n382,71,13.5\n382,72,14.0\n382,73,14.5\n382,74,15.0\n382,75,9.5\n382,76,9.0\n382,77,8.5\n382,78,8.0\n382,79,7.5\n382,80,7.0\n382,81,6.5\n382,82,6.0\n382,83,6.5\n382,84,7.0\n382,85,7.5\n382,86,8.0\n382,87,8.5\n382,88,9.0\n382,89,9.5\n382,90,10.0\n382,91,10.5\n382,92,11.0\n382,93,11.5\n382,94,12.0\n382,95,12.5\n382,96,13.0\n382,97,13.5\n382,98,14.0\n382,99,14.5\n382,100,9.0\n382,101,8.5\n382,102,8.0\n382,103,7.5\n382,104,7.0\n382,105,6.5\n382,106,6.0\n382,107,5.5\n382,108,6.0\n382,109,6.5\n382,110,7.0\n382,111,7.5\n382,112,8.0\n382,113,8.5\n382,114,9.0\n382,115,9.5\n382,116,10.0\n382,117,10.5\n382,118,11.0\n382,119,11.5\n382,120,12.0\n382,121,12.5\n382,122,13.0\n382,123,13.5\n382,124,14.0\n382,125,8.5\n382,126,8.0\n382,127,7.5\n382,128,7.0\n382,129,6.5\n382,130,6.0\n382,131,5.5\n382,132,5.0\n382,133,5.5\n382,134,6.0\n382,135,6.5\n382,136,7.0\n382,137,7.5\n382,138,8.0\n382,139,8.5\n382,140,9.0\n382,141,9.5\n382,142,10.0\n382,143,10.5\n382,144,11.0\n382,145,11.5\n382,146,12.0\n382,147,12.5\n382,148,13.0\n382,149,13.5\n382,150,8.0\n382,151,7.5\n382,152,7.0\n382,153,6.5\n382,154,6.0\n382,155,5.5\n382,156,5.0\n382,157,4.5\n382,158,5.0\n382,159,5.5\n382,160,6.0\n382,161,6.5\n382,162,7.0\n382,163,7.5\n382,164,8.0\n382,165,8.5\n382,166,9.0\n382,167,9.5\n382,168,10.0\n382,169,10.5\n382,170,11.0\n382,171,11.5\n382,172,12.0\n382,173,12.5\n382,174,13.0\n382,175,7.5\n382,176,7.0\n382,177,6.5\n382,178,6.0\n382,179,5.5\n382,180,5.0\n382,181,4.5\n382,182,4.0\n382,183,4.5\n382,184,5.0\n382,185,5.5\n382,186,6.0\n382,187,6.5\n382,188,7.0\n382,189,7.5\n382,190,8.0\n382,191,8.5\n382,192,9.0\n382,193,9.5\n382,194,10.0\n382,195,10.5\n382,196,11.0\n382,197,11.5\n382,198,12.0\n382,199,12.5\n382,200,7.0\n382,201,6.5\n382,202,6.0\n382,203,5.5\n382,204,5.0\n382,205,4.5\n382,206,4.0\n382,207,3.5\n382,208,4.0\n382,209,4.5\n382,210,5.0\n382,211,5.5\n382,212,6.0\n382,213,6.5\n382,214,7.0\n382,215,7.5\n382,216,8.0\n382,217,8.5\n382,218,9.0\n382,219,9.5\n382,220,10.0\n382,221,10.5\n382,222,11.0\n382,223,11.5\n382,224,12.0\n382,225,6.5\n382,226,6.0\n382,227,5.5\n382,228,5.0\n382,229,4.5\n382,230,4.0\n382,231,3.5\n382,232,3.0\n382,233,3.5\n382,234,4.0\n382,235,4.5\n382,236,5.0\n382,237,5.5\n382,238,6.0\n382,239,6.5\n382,240,7.0\n382,241,7.5\n382,242,8.0\n382,243,8.5\n382,244,9.0\n382,245,9.5\n382,246,10.0\n382,247,10.5\n382,248,11.0\n382,249,11.5\n382,250,6.0\n382,251,5.5\n382,252,5.0\n382,253,4.5\n382,254,4.0\n382,255,3.5\n382,256,3.0\n382,257,2.5\n382,258,3.0\n382,259,3.5\n382,260,4.0\n382,261,4.5\n382,262,5.0\n382,263,5.5\n382,264,6.0\n382,265,6.5\n382,266,7.0\n382,267,7.5\n382,268,8.0\n382,269,8.5\n382,270,9.0\n382,271,9.5\n382,272,10.0\n382,273,10.5\n382,274,11.0\n382,275,5.5\n382,276,5.0\n382,277,4.5\n382,278,4.0\n382,279,3.5\n382,280,3.0\n382,281,2.5\n382,282,2.0\n382,283,2.5\n382,284,3.0\n382,285,3.5\n382,286,4.0\n382,287,4.5\n382,288,5.0\n382,289,5.5\n382,290,6.0\n382,291,6.5\n382,292,7.0\n382,293,7.5\n382,294,8.0\n382,295,8.5\n382,296,9.0\n382,297,9.5\n382,298,10.0\n382,299,10.5\n382,300,5.0\n382,301,4.5\n382,302,4.0\n382,303,3.5\n382,304,3.0\n382,305,2.5\n382,306,2.0\n382,307,1.5\n382,308,2.0\n382,309,2.5\n382,310,3.0\n382,311,3.5\n382,312,4.0\n382,313,4.5\n382,314,5.0\n382,315,5.5\n382,316,6.0\n382,317,6.5\n382,318,7.0\n382,319,7.5\n382,320,8.0\n382,321,8.5\n382,322,9.0\n382,323,9.5\n382,324,10.0\n382,325,4.5\n382,326,4.0\n382,327,3.5\n382,328,3.0\n382,329,2.5\n382,330,2.0\n382,331,1.5\n382,332,1.0\n382,333,1.5\n382,334,2.0\n382,335,2.5\n382,336,3.0\n382,337,3.5\n382,338,4.0\n382,339,4.5\n382,340,5.0\n382,341,5.5\n382,342,6.0\n382,343,6.5\n382,344,7.0\n382,345,7.5\n382,346,8.0\n382,347,8.5\n382,348,9.0\n382,349,9.5\n382,350,4.0\n382,351,3.5\n382,352,3.0\n382,353,2.5\n382,354,2.0\n382,355,1.5\n382,356,1.0\n382,357,0.5\n382,358,1.0\n382,359,1.5\n382,360,2.0\n382,361,2.5\n382,362,3.0\n382,363,3.5\n382,364,4.0\n382,365,4.5\n382,366,5.0\n382,367,5.5\n382,368,6.0\n382,369,6.5\n382,370,7.0\n382,371,7.5\n382,372,8.0\n382,373,8.5\n382,374,9.0\n382,375,3.5\n382,376,3.0\n382,377,2.5\n382,378,2.0\n382,379,1.5\n382,380,1.0\n382,381,0.5\n382,382,0\n382,383,0.5\n382,384,1.0\n382,385,1.5\n382,386,2.0\n382,387,2.5\n382,388,3.0\n382,389,3.5\n382,390,4.0\n382,391,4.5\n382,392,5.0\n382,393,5.5\n382,394,6.0\n382,395,6.5\n382,396,7.0\n382,397,7.5\n382,398,8.0\n382,399,8.5\n382,400,4.0\n382,401,3.5\n382,402,3.0\n382,403,2.5\n382,404,2.0\n382,405,1.5\n382,406,1.0\n382,407,0.5\n382,408,1.0\n382,409,1.5\n382,410,2.0\n382,411,2.5\n382,412,3.0\n382,413,3.5\n382,414,4.0\n382,415,4.5\n382,416,5.0\n382,417,5.5\n382,418,6.0\n382,419,6.5\n382,420,7.0\n382,421,7.5\n382,422,8.0\n382,423,8.5\n382,424,9.0\n382,425,4.5\n382,426,4.0\n382,427,3.5\n382,428,3.0\n382,429,2.5\n382,430,2.0\n382,431,1.5\n382,432,1.0\n382,433,1.5\n382,434,2.0\n382,435,2.5\n382,436,3.0\n382,437,3.5\n382,438,4.0\n382,439,4.5\n382,440,5.0\n382,441,5.5\n382,442,6.0\n382,443,6.5\n382,444,7.0\n382,445,7.5\n382,446,8.0\n382,447,8.5\n382,448,9.0\n382,449,9.5\n382,450,5.0\n382,451,4.5\n382,452,4.0\n382,453,3.5\n382,454,3.0\n382,455,2.5\n382,456,2.0\n382,457,1.5\n382,458,2.0\n382,459,2.5\n382,460,3.0\n382,461,3.5\n382,462,4.0\n382,463,4.5\n382,464,5.0\n382,465,5.5\n382,466,6.0\n382,467,6.5\n382,468,7.0\n382,469,7.5\n382,470,8.0\n382,471,8.5\n382,472,9.0\n382,473,9.5\n382,474,10.0\n382,475,5.5\n382,476,5.0\n382,477,4.5\n382,478,4.0\n382,479,3.5\n382,480,3.0\n382,481,2.5\n382,482,2.0\n382,483,2.5\n382,484,3.0\n382,485,3.5\n382,486,4.0\n382,487,4.5\n382,488,5.0\n382,489,5.5\n382,490,6.0\n382,491,6.5\n382,492,7.0\n382,493,7.5\n382,494,8.0\n382,495,8.5\n382,496,9.0\n382,497,9.5\n382,498,10.0\n382,499,10.5\n382,500,6.0\n382,501,5.5\n382,502,5.0\n382,503,4.5\n382,504,4.0\n382,505,3.5\n382,506,3.0\n382,507,2.5\n382,508,3.0\n382,509,3.5\n382,510,4.0\n382,511,4.5\n382,512,5.0\n382,513,5.5\n382,514,6.0\n382,515,6.5\n382,516,7.0\n382,517,7.5\n382,518,8.0\n382,519,8.5\n382,520,9.0\n382,521,9.5\n382,522,10.0\n382,523,10.5\n382,524,11.0\n382,525,6.5\n382,526,6.0\n382,527,5.5\n382,528,5.0\n382,529,4.5\n382,530,4.0\n382,531,3.5\n382,532,3.0\n382,533,3.5\n382,534,4.0\n382,535,4.5\n382,536,5.0\n382,537,5.5\n382,538,6.0\n382,539,6.5\n382,540,7.0\n382,541,7.5\n382,542,8.0\n382,543,8.5\n382,544,9.0\n382,545,9.5\n382,546,10.0\n382,547,10.5\n382,548,11.0\n382,549,11.5\n382,550,7.0\n382,551,6.5\n382,552,6.0\n382,553,5.5\n382,554,5.0\n382,555,4.5\n382,556,4.0\n382,557,3.5\n382,558,4.0\n382,559,4.5\n382,560,5.0\n382,561,5.5\n382,562,6.0\n382,563,6.5\n382,564,7.0\n382,565,7.5\n382,566,8.0\n382,567,8.5\n382,568,9.0\n382,569,9.5\n382,570,10.0\n382,571,10.5\n382,572,11.0\n382,573,11.5\n382,574,12.0\n382,575,7.5\n382,576,7.0\n382,577,6.5\n382,578,6.0\n382,579,5.5\n382,580,5.0\n382,581,4.5\n382,582,4.0\n382,583,4.5\n382,584,5.0\n382,585,5.5\n382,586,6.0\n382,587,6.5\n382,588,7.0\n382,589,7.5\n382,590,8.0\n382,591,8.5\n382,592,9.0\n382,593,9.5\n382,594,10.0\n382,595,10.5\n382,596,11.0\n382,597,11.5\n382,598,12.0\n382,599,12.5\n382,600,8.0\n382,601,7.5\n382,602,7.0\n382,603,6.5\n382,604,6.0\n382,605,5.5\n382,606,5.0\n382,607,4.5\n382,608,5.0\n382,609,5.5\n382,610,6.0\n382,611,6.5\n382,612,7.0\n382,613,7.5\n382,614,8.0\n382,615,8.5\n382,616,9.0\n382,617,9.5\n382,618,10.0\n382,619,10.5\n382,620,11.0\n382,621,11.5\n382,622,12.0\n382,623,12.5\n382,624,13.0\n383,0,11.5\n383,1,11.0\n383,2,10.5\n383,3,10.0\n383,4,9.5\n383,5,9.0\n383,6,8.5\n383,7,8.0\n383,8,7.5\n383,9,8.0\n383,10,8.5\n383,11,9.0\n383,12,9.5\n383,13,10.0\n383,14,10.5\n383,15,11.0\n383,16,11.5\n383,17,12.0\n383,18,12.5\n383,19,13.0\n383,20,13.5\n383,21,14.0\n383,22,14.5\n383,23,15.0\n383,24,15.5\n383,25,11.0\n383,26,10.5\n383,27,10.0\n383,28,9.5\n383,29,9.0\n383,30,8.5\n383,31,8.0\n383,32,7.5\n383,33,7.0\n383,34,7.5\n383,35,8.0\n383,36,8.5\n383,37,9.0\n383,38,9.5\n383,39,10.0\n383,40,10.5\n383,41,11.0\n383,42,11.5\n383,43,12.0\n383,44,12.5\n383,45,13.0\n383,46,13.5\n383,47,14.0\n383,48,14.5\n383,49,15.0\n383,50,10.5\n383,51,10.0\n383,52,9.5\n383,53,9.0\n383,54,8.5\n383,55,8.0\n383,56,7.5\n383,57,7.0\n383,58,6.5\n383,59,7.0\n383,60,7.5\n383,61,8.0\n383,62,8.5\n383,63,9.0\n383,64,9.5\n383,65,10.0\n383,66,10.5\n383,67,11.0\n383,68,11.5\n383,69,12.0\n383,70,12.5\n383,71,13.0\n383,72,13.5\n383,73,14.0\n383,74,14.5\n383,75,10.0\n383,76,9.5\n383,77,9.0\n383,78,8.5\n383,79,8.0\n383,80,7.5\n383,81,7.0\n383,82,6.5\n383,83,6.0\n383,84,6.5\n383,85,7.0\n383,86,7.5\n383,87,8.0\n383,88,8.5\n383,89,9.0\n383,90,9.5\n383,91,10.0\n383,92,10.5\n383,93,11.0\n383,94,11.5\n383,95,12.0\n383,96,12.5\n383,97,13.0\n383,98,13.5\n383,99,14.0\n383,100,9.5\n383,101,9.0\n383,102,8.5\n383,103,8.0\n383,104,7.5\n383,105,7.0\n383,106,6.5\n383,107,6.0\n383,108,5.5\n383,109,6.0\n383,110,6.5\n383,111,7.0\n383,112,7.5\n383,113,8.0\n383,114,8.5\n383,115,9.0\n383,116,9.5\n383,117,10.0\n383,118,10.5\n383,119,11.0\n383,120,11.5\n383,121,12.0\n383,122,12.5\n383,123,13.0\n383,124,13.5\n383,125,9.0\n383,126,8.5\n383,127,8.0\n383,128,7.5\n383,129,7.0\n383,130,6.5\n383,131,6.0\n383,132,5.5\n383,133,5.0\n383,134,5.5\n383,135,6.0\n383,136,6.5\n383,137,7.0\n383,138,7.5\n383,139,8.0\n383,140,8.5\n383,141,9.0\n383,142,9.5\n383,143,10.0\n383,144,10.5\n383,145,11.0\n383,146,11.5\n383,147,12.0\n383,148,12.5\n383,149,13.0\n383,150,8.5\n383,151,8.0\n383,152,7.5\n383,153,7.0\n383,154,6.5\n383,155,6.0\n383,156,5.5\n383,157,5.0\n383,158,4.5\n383,159,5.0\n383,160,5.5\n383,161,6.0\n383,162,6.5\n383,163,7.0\n383,164,7.5\n383,165,8.0\n383,166,8.5\n383,167,9.0\n383,168,9.5\n383,169,10.0\n383,170,10.5\n383,171,11.0\n383,172,11.5\n383,173,12.0\n383,174,12.5\n383,175,8.0\n383,176,7.5\n383,177,7.0\n383,178,6.5\n383,179,6.0\n383,180,5.5\n383,181,5.0\n383,182,4.5\n383,183,4.0\n383,184,4.5\n383,185,5.0\n383,186,5.5\n383,187,6.0\n383,188,6.5\n383,189,7.0\n383,190,7.5\n383,191,8.0\n383,192,8.5\n383,193,9.0\n383,194,9.5\n383,195,10.0\n383,196,10.5\n383,197,11.0\n383,198,11.5\n383,199,12.0\n383,200,7.5\n383,201,7.0\n383,202,6.5\n383,203,6.0\n383,204,5.5\n383,205,5.0\n383,206,4.5\n383,207,4.0\n383,208,3.5\n383,209,4.0\n383,210,4.5\n383,211,5.0\n383,212,5.5\n383,213,6.0\n383,214,6.5\n383,215,7.0\n383,216,7.5\n383,217,8.0\n383,218,8.5\n383,219,9.0\n383,220,9.5\n383,221,10.0\n383,222,10.5\n383,223,11.0\n383,224,11.5\n383,225,7.0\n383,226,6.5\n383,227,6.0\n383,228,5.5\n383,229,5.0\n383,230,4.5\n383,231,4.0\n383,232,3.5\n383,233,3.0\n383,234,3.5\n383,235,4.0\n383,236,4.5\n383,237,5.0\n383,238,5.5\n383,239,6.0\n383,240,6.5\n383,241,7.0\n383,242,7.5\n383,243,8.0\n383,244,8.5\n383,245,9.0\n383,246,9.5\n383,247,10.0\n383,248,10.5\n383,249,11.0\n383,250,6.5\n383,251,6.0\n383,252,5.5\n383,253,5.0\n383,254,4.5\n383,255,4.0\n383,256,3.5\n383,257,3.0\n383,258,2.5\n383,259,3.0\n383,260,3.5\n383,261,4.0\n383,262,4.5\n383,263,5.0\n383,264,5.5\n383,265,6.0\n383,266,6.5\n383,267,7.0\n383,268,7.5\n383,269,8.0\n383,270,8.5\n383,271,9.0\n383,272,9.5\n383,273,10.0\n383,274,10.5\n383,275,6.0\n383,276,5.5\n383,277,5.0\n383,278,4.5\n383,279,4.0\n383,280,3.5\n383,281,3.0\n383,282,2.5\n383,283,2.0\n383,284,2.5\n383,285,3.0\n383,286,3.5\n383,287,4.0\n383,288,4.5\n383,289,5.0\n383,290,5.5\n383,291,6.0\n383,292,6.5\n383,293,7.0\n383,294,7.5\n383,295,8.0\n383,296,8.5\n383,297,9.0\n383,298,9.5\n383,299,10.0\n383,300,5.5\n383,301,5.0\n383,302,4.5\n383,303,4.0\n383,304,3.5\n383,305,3.0\n383,306,2.5\n383,307,2.0\n383,308,1.5\n383,309,2.0\n383,310,2.5\n383,311,3.0\n383,312,3.5\n383,313,4.0\n383,314,4.5\n383,315,5.0\n383,316,5.5\n383,317,6.0\n383,318,6.5\n383,319,7.0\n383,320,7.5\n383,321,8.0\n383,322,8.5\n383,323,9.0\n383,324,9.5\n383,325,5.0\n383,326,4.5\n383,327,4.0\n383,328,3.5\n383,329,3.0\n383,330,2.5\n383,331,2.0\n383,332,1.5\n383,333,1.0\n383,334,1.5\n383,335,2.0\n383,336,2.5\n383,337,3.0\n383,338,3.5\n383,339,4.0\n383,340,4.5\n383,341,5.0\n383,342,5.5\n383,343,6.0\n383,344,6.5\n383,345,7.0\n383,346,7.5\n383,347,8.0\n383,348,8.5\n383,349,9.0\n383,350,4.5\n383,351,4.0\n383,352,3.5\n383,353,3.0\n383,354,2.5\n383,355,2.0\n383,356,1.5\n383,357,1.0\n383,358,0.5\n383,359,1.0\n383,360,1.5\n383,361,2.0\n383,362,2.5\n383,363,3.0\n383,364,3.5\n383,365,4.0\n383,366,4.5\n383,367,5.0\n383,368,5.5\n383,369,6.0\n383,370,6.5\n383,371,7.0\n383,372,7.5\n383,373,8.0\n383,374,8.5\n383,375,4.0\n383,376,3.5\n383,377,3.0\n383,378,2.5\n383,379,2.0\n383,380,1.5\n383,381,1.0\n383,382,0.5\n383,383,0\n383,384,0.5\n383,385,1.0\n383,386,1.5\n383,387,2.0\n383,388,2.5\n383,389,3.0\n383,390,3.5\n383,391,4.0\n383,392,4.5\n383,393,5.0\n383,394,5.5\n383,395,6.0\n383,396,6.5\n383,397,7.0\n383,398,7.5\n383,399,8.0\n383,400,4.5\n383,401,4.0\n383,402,3.5\n383,403,3.0\n383,404,2.5\n383,405,2.0\n383,406,1.5\n383,407,1.0\n383,408,0.5\n383,409,1.0\n383,410,1.5\n383,411,2.0\n383,412,2.5\n383,413,3.0\n383,414,3.5\n383,415,4.0\n383,416,4.5\n383,417,5.0\n383,418,5.5\n383,419,6.0\n383,420,6.5\n383,421,7.0\n383,422,7.5\n383,423,8.0\n383,424,8.5\n383,425,5.0\n383,426,4.5\n383,427,4.0\n383,428,3.5\n383,429,3.0\n383,430,2.5\n383,431,2.0\n383,432,1.5\n383,433,1.0\n383,434,1.5\n383,435,2.0\n383,436,2.5\n383,437,3.0\n383,438,3.5\n383,439,4.0\n383,440,4.5\n383,441,5.0\n383,442,5.5\n383,443,6.0\n383,444,6.5\n383,445,7.0\n383,446,7.5\n383,447,8.0\n383,448,8.5\n383,449,9.0\n383,450,5.5\n383,451,5.0\n383,452,4.5\n383,453,4.0\n383,454,3.5\n383,455,3.0\n383,456,2.5\n383,457,2.0\n383,458,1.5\n383,459,2.0\n383,460,2.5\n383,461,3.0\n383,462,3.5\n383,463,4.0\n383,464,4.5\n383,465,5.0\n383,466,5.5\n383,467,6.0\n383,468,6.5\n383,469,7.0\n383,470,7.5\n383,471,8.0\n383,472,8.5\n383,473,9.0\n383,474,9.5\n383,475,6.0\n383,476,5.5\n383,477,5.0\n383,478,4.5\n383,479,4.0\n383,480,3.5\n383,481,3.0\n383,482,2.5\n383,483,2.0\n383,484,2.5\n383,485,3.0\n383,486,3.5\n383,487,4.0\n383,488,4.5\n383,489,5.0\n383,490,5.5\n383,491,6.0\n383,492,6.5\n383,493,7.0\n383,494,7.5\n383,495,8.0\n383,496,8.5\n383,497,9.0\n383,498,9.5\n383,499,10.0\n383,500,6.5\n383,501,6.0\n383,502,5.5\n383,503,5.0\n383,504,4.5\n383,505,4.0\n383,506,3.5\n383,507,3.0\n383,508,2.5\n383,509,3.0\n383,510,3.5\n383,511,4.0\n383,512,4.5\n383,513,5.0\n383,514,5.5\n383,515,6.0\n383,516,6.5\n383,517,7.0\n383,518,7.5\n383,519,8.0\n383,520,8.5\n383,521,9.0\n383,522,9.5\n383,523,10.0\n383,524,10.5\n383,525,7.0\n383,526,6.5\n383,527,6.0\n383,528,5.5\n383,529,5.0\n383,530,4.5\n383,531,4.0\n383,532,3.5\n383,533,3.0\n383,534,3.5\n383,535,4.0\n383,536,4.5\n383,537,5.0\n383,538,5.5\n383,539,6.0\n383,540,6.5\n383,541,7.0\n383,542,7.5\n383,543,8.0\n383,544,8.5\n383,545,9.0\n383,546,9.5\n383,547,10.0\n383,548,10.5\n383,549,11.0\n383,550,7.5\n383,551,7.0\n383,552,6.5\n383,553,6.0\n383,554,5.5\n383,555,5.0\n383,556,4.5\n383,557,4.0\n383,558,3.5\n383,559,4.0\n383,560,4.5\n383,561,5.0\n383,562,5.5\n383,563,6.0\n383,564,6.5\n383,565,7.0\n383,566,7.5\n383,567,8.0\n383,568,8.5\n383,569,9.0\n383,570,9.5\n383,571,10.0\n383,572,10.5\n383,573,11.0\n383,574,11.5\n383,575,8.0\n383,576,7.5\n383,577,7.0\n383,578,6.5\n383,579,6.0\n383,580,5.5\n383,581,5.0\n383,582,4.5\n383,583,4.0\n383,584,4.5\n383,585,5.0\n383,586,5.5\n383,587,6.0\n383,588,6.5\n383,589,7.0\n383,590,7.5\n383,591,8.0\n383,592,8.5\n383,593,9.0\n383,594,9.5\n383,595,10.0\n383,596,10.5\n383,597,11.0\n383,598,11.5\n383,599,12.0\n383,600,8.5\n383,601,8.0\n383,602,7.5\n383,603,7.0\n383,604,6.5\n383,605,6.0\n383,606,5.5\n383,607,5.0\n383,608,4.5\n383,609,5.0\n383,610,5.5\n383,611,6.0\n383,612,6.5\n383,613,7.0\n383,614,7.5\n383,615,8.0\n383,616,8.5\n383,617,9.0\n383,618,9.5\n383,619,10.0\n383,620,10.5\n383,621,11.0\n383,622,11.5\n383,623,12.0\n383,624,12.5\n384,0,12.0\n384,1,11.5\n384,2,11.0\n384,3,10.5\n384,4,10.0\n384,5,9.5\n384,6,9.0\n384,7,8.5\n384,8,8.0\n384,9,7.5\n384,10,8.0\n384,11,8.5\n384,12,9.0\n384,13,9.5\n384,14,10.0\n384,15,10.5\n384,16,11.0\n384,17,11.5\n384,18,12.0\n384,19,12.5\n384,20,13.0\n384,21,13.5\n384,22,14.0\n384,23,14.5\n384,24,15.0\n384,25,11.5\n384,26,11.0\n384,27,10.5\n384,28,10.0\n384,29,9.5\n384,30,9.0\n384,31,8.5\n384,32,8.0\n384,33,7.5\n384,34,7.0\n384,35,7.5\n384,36,8.0\n384,37,8.5\n384,38,9.0\n384,39,9.5\n384,40,10.0\n384,41,10.5\n384,42,11.0\n384,43,11.5\n384,44,12.0\n384,45,12.5\n384,46,13.0\n384,47,13.5\n384,48,14.0\n384,49,14.5\n384,50,11.0\n384,51,10.5\n384,52,10.0\n384,53,9.5\n384,54,9.0\n384,55,8.5\n384,56,8.0\n384,57,7.5\n384,58,7.0\n384,59,6.5\n384,60,7.0\n384,61,7.5\n384,62,8.0\n384,63,8.5\n384,64,9.0\n384,65,9.5\n384,66,10.0\n384,67,10.5\n384,68,11.0\n384,69,11.5\n384,70,12.0\n384,71,12.5\n384,72,13.0\n384,73,13.5\n384,74,14.0\n384,75,10.5\n384,76,10.0\n384,77,9.5\n384,78,9.0\n384,79,8.5\n384,80,8.0\n384,81,7.5\n384,82,7.0\n384,83,6.5\n384,84,6.0\n384,85,6.5\n384,86,7.0\n384,87,7.5\n384,88,8.0\n384,89,8.5\n384,90,9.0\n384,91,9.5\n384,92,10.0\n384,93,10.5\n384,94,11.0\n384,95,11.5\n384,96,12.0\n384,97,12.5\n384,98,13.0\n384,99,13.5\n384,100,10.0\n384,101,9.5\n384,102,9.0\n384,103,8.5\n384,104,8.0\n384,105,7.5\n384,106,7.0\n384,107,6.5\n384,108,6.0\n384,109,5.5\n384,110,6.0\n384,111,6.5\n384,112,7.0\n384,113,7.5\n384,114,8.0\n384,115,8.5\n384,116,9.0\n384,117,9.5\n384,118,10.0\n384,119,10.5\n384,120,11.0\n384,121,11.5\n384,122,12.0\n384,123,12.5\n384,124,13.0\n384,125,9.5\n384,126,9.0\n384,127,8.5\n384,128,8.0\n384,129,7.5\n384,130,7.0\n384,131,6.5\n384,132,6.0\n384,133,5.5\n384,134,5.0\n384,135,5.5\n384,136,6.0\n384,137,6.5\n384,138,7.0\n384,139,7.5\n384,140,8.0\n384,141,8.5\n384,142,9.0\n384,143,9.5\n384,144,10.0\n384,145,10.5\n384,146,11.0\n384,147,11.5\n384,148,12.0\n384,149,12.5\n384,150,9.0\n384,151,8.5\n384,152,8.0\n384,153,7.5\n384,154,7.0\n384,155,6.5\n384,156,6.0\n384,157,5.5\n384,158,5.0\n384,159,4.5\n384,160,5.0\n384,161,5.5\n384,162,6.0\n384,163,6.5\n384,164,7.0\n384,165,7.5\n384,166,8.0\n384,167,8.5\n384,168,9.0\n384,169,9.5\n384,170,10.0\n384,171,10.5\n384,172,11.0\n384,173,11.5\n384,174,12.0\n384,175,8.5\n384,176,8.0\n384,177,7.5\n384,178,7.0\n384,179,6.5\n384,180,6.0\n384,181,5.5\n384,182,5.0\n384,183,4.5\n384,184,4.0\n384,185,4.5\n384,186,5.0\n384,187,5.5\n384,188,6.0\n384,189,6.5\n384,190,7.0\n384,191,7.5\n384,192,8.0\n384,193,8.5\n384,194,9.0\n384,195,9.5\n384,196,10.0\n384,197,10.5\n384,198,11.0\n384,199,11.5\n384,200,8.0\n384,201,7.5\n384,202,7.0\n384,203,6.5\n384,204,6.0\n384,205,5.5\n384,206,5.0\n384,207,4.5\n384,208,4.0\n384,209,3.5\n384,210,4.0\n384,211,4.5\n384,212,5.0\n384,213,5.5\n384,214,6.0\n384,215,6.5\n384,216,7.0\n384,217,7.5\n384,218,8.0\n384,219,8.5\n384,220,9.0\n384,221,9.5\n384,222,10.0\n384,223,10.5\n384,224,11.0\n384,225,7.5\n384,226,7.0\n384,227,6.5\n384,228,6.0\n384,229,5.5\n384,230,5.0\n384,231,4.5\n384,232,4.0\n384,233,3.5\n384,234,3.0\n384,235,3.5\n384,236,4.0\n384,237,4.5\n384,238,5.0\n384,239,5.5\n384,240,6.0\n384,241,6.5\n384,242,7.0\n384,243,7.5\n384,244,8.0\n384,245,8.5\n384,246,9.0\n384,247,9.5\n384,248,10.0\n384,249,10.5\n384,250,7.0\n384,251,6.5\n384,252,6.0\n384,253,5.5\n384,254,5.0\n384,255,4.5\n384,256,4.0\n384,257,3.5\n384,258,3.0\n384,259,2.5\n384,260,3.0\n384,261,3.5\n384,262,4.0\n384,263,4.5\n384,264,5.0\n384,265,5.5\n384,266,6.0\n384,267,6.5\n384,268,7.0\n384,269,7.5\n384,270,8.0\n384,271,8.5\n384,272,9.0\n384,273,9.5\n384,274,10.0\n384,275,6.5\n384,276,6.0\n384,277,5.5\n384,278,5.0\n384,279,4.5\n384,280,4.0\n384,281,3.5\n384,282,3.0\n384,283,2.5\n384,284,2.0\n384,285,2.5\n384,286,3.0\n384,287,3.5\n384,288,4.0\n384,289,4.5\n384,290,5.0\n384,291,5.5\n384,292,6.0\n384,293,6.5\n384,294,7.0\n384,295,7.5\n384,296,8.0\n384,297,8.5\n384,298,9.0\n384,299,9.5\n384,300,6.0\n384,301,5.5\n384,302,5.0\n384,303,4.5\n384,304,4.0\n384,305,3.5\n384,306,3.0\n384,307,2.5\n384,308,2.0\n384,309,1.5\n384,310,2.0\n384,311,2.5\n384,312,3.0\n384,313,3.5\n384,314,4.0\n384,315,4.5\n384,316,5.0\n384,317,5.5\n384,318,6.0\n384,319,6.5\n384,320,7.0\n384,321,7.5\n384,322,8.0\n384,323,8.5\n384,324,9.0\n384,325,5.5\n384,326,5.0\n384,327,4.5\n384,328,4.0\n384,329,3.5\n384,330,3.0\n384,331,2.5\n384,332,2.0\n384,333,1.5\n384,334,1.0\n384,335,1.5\n384,336,2.0\n384,337,2.5\n384,338,3.0\n384,339,3.5\n384,340,4.0\n384,341,4.5\n384,342,5.0\n384,343,5.5\n384,344,6.0\n384,345,6.5\n384,346,7.0\n384,347,7.5\n384,348,8.0\n384,349,8.5\n384,350,5.0\n384,351,4.5\n384,352,4.0\n384,353,3.5\n384,354,3.0\n384,355,2.5\n384,356,2.0\n384,357,1.5\n384,358,1.0\n384,359,0.5\n384,360,1.0\n384,361,1.5\n384,362,2.0\n384,363,2.5\n384,364,3.0\n384,365,3.5\n384,366,4.0\n384,367,4.5\n384,368,5.0\n384,369,5.5\n384,370,6.0\n384,371,6.5\n384,372,7.0\n384,373,7.5\n384,374,8.0\n384,375,4.5\n384,376,4.0\n384,377,3.5\n384,378,3.0\n384,379,2.5\n384,380,2.0\n384,381,1.5\n384,382,1.0\n384,383,0.5\n384,384,0\n384,385,0.5\n384,386,1.0\n384,387,1.5\n384,388,2.0\n384,389,2.5\n384,390,3.0\n384,391,3.5\n384,392,4.0\n384,393,4.5\n384,394,5.0\n384,395,5.5\n384,396,6.0\n384,397,6.5\n384,398,7.0\n384,399,7.5\n384,400,5.0\n384,401,4.5\n384,402,4.0\n384,403,3.5\n384,404,3.0\n384,405,2.5\n384,406,2.0\n384,407,1.5\n384,408,1.0\n384,409,0.5\n384,410,1.0\n384,411,1.5\n384,412,2.0\n384,413,2.5\n384,414,3.0\n384,415,3.5\n384,416,4.0\n384,417,4.5\n384,418,5.0\n384,419,5.5\n384,420,6.0\n384,421,6.5\n384,422,7.0\n384,423,7.5\n384,424,8.0\n384,425,5.5\n384,426,5.0\n384,427,4.5\n384,428,4.0\n384,429,3.5\n384,430,3.0\n384,431,2.5\n384,432,2.0\n384,433,1.5\n384,434,1.0\n384,435,1.5\n384,436,2.0\n384,437,2.5\n384,438,3.0\n384,439,3.5\n384,440,4.0\n384,441,4.5\n384,442,5.0\n384,443,5.5\n384,444,6.0\n384,445,6.5\n384,446,7.0\n384,447,7.5\n384,448,8.0\n384,449,8.5\n384,450,6.0\n384,451,5.5\n384,452,5.0\n384,453,4.5\n384,454,4.0\n384,455,3.5\n384,456,3.0\n384,457,2.5\n384,458,2.0\n384,459,1.5\n384,460,2.0\n384,461,2.5\n384,462,3.0\n384,463,3.5\n384,464,4.0\n384,465,4.5\n384,466,5.0\n384,467,5.5\n384,468,6.0\n384,469,6.5\n384,470,7.0\n384,471,7.5\n384,472,8.0\n384,473,8.5\n384,474,9.0\n384,475,6.5\n384,476,6.0\n384,477,5.5\n384,478,5.0\n384,479,4.5\n384,480,4.0\n384,481,3.5\n384,482,3.0\n384,483,2.5\n384,484,2.0\n384,485,2.5\n384,486,3.0\n384,487,3.5\n384,488,4.0\n384,489,4.5\n384,490,5.0\n384,491,5.5\n384,492,6.0\n384,493,6.5\n384,494,7.0\n384,495,7.5\n384,496,8.0\n384,497,8.5\n384,498,9.0\n384,499,9.5\n384,500,7.0\n384,501,6.5\n384,502,6.0\n384,503,5.5\n384,504,5.0\n384,505,4.5\n384,506,4.0\n384,507,3.5\n384,508,3.0\n384,509,2.5\n384,510,3.0\n384,511,3.5\n384,512,4.0\n384,513,4.5\n384,514,5.0\n384,515,5.5\n384,516,6.0\n384,517,6.5\n384,518,7.0\n384,519,7.5\n384,520,8.0\n384,521,8.5\n384,522,9.0\n384,523,9.5\n384,524,10.0\n384,525,7.5\n384,526,7.0\n384,527,6.5\n384,528,6.0\n384,529,5.5\n384,530,5.0\n384,531,4.5\n384,532,4.0\n384,533,3.5\n384,534,3.0\n384,535,3.5\n384,536,4.0\n384,537,4.5\n384,538,5.0\n384,539,5.5\n384,540,6.0\n384,541,6.5\n384,542,7.0\n384,543,7.5\n384,544,8.0\n384,545,8.5\n384,546,9.0\n384,547,9.5\n384,548,10.0\n384,549,10.5\n384,550,8.0\n384,551,7.5\n384,552,7.0\n384,553,6.5\n384,554,6.0\n384,555,5.5\n384,556,5.0\n384,557,4.5\n384,558,4.0\n384,559,3.5\n384,560,4.0\n384,561,4.5\n384,562,5.0\n384,563,5.5\n384,564,6.0\n384,565,6.5\n384,566,7.0\n384,567,7.5\n384,568,8.0\n384,569,8.5\n384,570,9.0\n384,571,9.5\n384,572,10.0\n384,573,10.5\n384,574,11.0\n384,575,8.5\n384,576,8.0\n384,577,7.5\n384,578,7.0\n384,579,6.5\n384,580,6.0\n384,581,5.5\n384,582,5.0\n384,583,4.5\n384,584,4.0\n384,585,4.5\n384,586,5.0\n384,587,5.5\n384,588,6.0\n384,589,6.5\n384,590,7.0\n384,591,7.5\n384,592,8.0\n384,593,8.5\n384,594,9.0\n384,595,9.5\n384,596,10.0\n384,597,10.5\n384,598,11.0\n384,599,11.5\n384,600,9.0\n384,601,8.5\n384,602,8.0\n384,603,7.5\n384,604,7.0\n384,605,6.5\n384,606,6.0\n384,607,5.5\n384,608,5.0\n384,609,4.5\n384,610,5.0\n384,611,5.5\n384,612,6.0\n384,613,6.5\n384,614,7.0\n384,615,7.5\n384,616,8.0\n384,617,8.5\n384,618,9.0\n384,619,9.5\n384,620,10.0\n384,621,10.5\n384,622,11.0\n384,623,11.5\n384,624,12.0\n385,0,12.5\n385,1,12.0\n385,2,11.5\n385,3,11.0\n385,4,10.5\n385,5,10.0\n385,6,9.5\n385,7,9.0\n385,8,8.5\n385,9,8.0\n385,10,7.5\n385,11,8.0\n385,12,8.5\n385,13,9.0\n385,14,9.5\n385,15,10.0\n385,16,10.5\n385,17,11.0\n385,18,11.5\n385,19,12.0\n385,20,12.5\n385,21,13.0\n385,22,13.5\n385,23,14.0\n385,24,14.5\n385,25,12.0\n385,26,11.5\n385,27,11.0\n385,28,10.5\n385,29,10.0\n385,30,9.5\n385,31,9.0\n385,32,8.5\n385,33,8.0\n385,34,7.5\n385,35,7.0\n385,36,7.5\n385,37,8.0\n385,38,8.5\n385,39,9.0\n385,40,9.5\n385,41,10.0\n385,42,10.5\n385,43,11.0\n385,44,11.5\n385,45,12.0\n385,46,12.5\n385,47,13.0\n385,48,13.5\n385,49,14.0\n385,50,11.5\n385,51,11.0\n385,52,10.5\n385,53,10.0\n385,54,9.5\n385,55,9.0\n385,56,8.5\n385,57,8.0\n385,58,7.5\n385,59,7.0\n385,60,6.5\n385,61,7.0\n385,62,7.5\n385,63,8.0\n385,64,8.5\n385,65,9.0\n385,66,9.5\n385,67,10.0\n385,68,10.5\n385,69,11.0\n385,70,11.5\n385,71,12.0\n385,72,12.5\n385,73,13.0\n385,74,13.5\n385,75,11.0\n385,76,10.5\n385,77,10.0\n385,78,9.5\n385,79,9.0\n385,80,8.5\n385,81,8.0\n385,82,7.5\n385,83,7.0\n385,84,6.5\n385,85,6.0\n385,86,6.5\n385,87,7.0\n385,88,7.5\n385,89,8.0\n385,90,8.5\n385,91,9.0\n385,92,9.5\n385,93,10.0\n385,94,10.5\n385,95,11.0\n385,96,11.5\n385,97,12.0\n385,98,12.5\n385,99,13.0\n385,100,10.5\n385,101,10.0\n385,102,9.5\n385,103,9.0\n385,104,8.5\n385,105,8.0\n385,106,7.5\n385,107,7.0\n385,108,6.5\n385,109,6.0\n385,110,5.5\n385,111,6.0\n385,112,6.5\n385,113,7.0\n385,114,7.5\n385,115,8.0\n385,116,8.5\n385,117,9.0\n385,118,9.5\n385,119,10.0\n385,120,10.5\n385,121,11.0\n385,122,11.5\n385,123,12.0\n385,124,12.5\n385,125,10.0\n385,126,9.5\n385,127,9.0\n385,128,8.5\n385,129,8.0\n385,130,7.5\n385,131,7.0\n385,132,6.5\n385,133,6.0\n385,134,5.5\n385,135,5.0\n385,136,5.5\n385,137,6.0\n385,138,6.5\n385,139,7.0\n385,140,7.5\n385,141,8.0\n385,142,8.5\n385,143,9.0\n385,144,9.5\n385,145,10.0\n385,146,10.5\n385,147,11.0\n385,148,11.5\n385,149,12.0\n385,150,9.5\n385,151,9.0\n385,152,8.5\n385,153,8.0\n385,154,7.5\n385,155,7.0\n385,156,6.5\n385,157,6.0\n385,158,5.5\n385,159,5.0\n385,160,4.5\n385,161,5.0\n385,162,5.5\n385,163,6.0\n385,164,6.5\n385,165,7.0\n385,166,7.5\n385,167,8.0\n385,168,8.5\n385,169,9.0\n385,170,9.5\n385,171,10.0\n385,172,10.5\n385,173,11.0\n385,174,11.5\n385,175,9.0\n385,176,8.5\n385,177,8.0\n385,178,7.5\n385,179,7.0\n385,180,6.5\n385,181,6.0\n385,182,5.5\n385,183,5.0\n385,184,4.5\n385,185,4.0\n385,186,4.5\n385,187,5.0\n385,188,5.5\n385,189,6.0\n385,190,6.5\n385,191,7.0\n385,192,7.5\n385,193,8.0\n385,194,8.5\n385,195,9.0\n385,196,9.5\n385,197,10.0\n385,198,10.5\n385,199,11.0\n385,200,8.5\n385,201,8.0\n385,202,7.5\n385,203,7.0\n385,204,6.5\n385,205,6.0\n385,206,5.5\n385,207,5.0\n385,208,4.5\n385,209,4.0\n385,210,3.5\n385,211,4.0\n385,212,4.5\n385,213,5.0\n385,214,5.5\n385,215,6.0\n385,216,6.5\n385,217,7.0\n385,218,7.5\n385,219,8.0\n385,220,8.5\n385,221,9.0\n385,222,9.5\n385,223,10.0\n385,224,10.5\n385,225,8.0\n385,226,7.5\n385,227,7.0\n385,228,6.5\n385,229,6.0\n385,230,5.5\n385,231,5.0\n385,232,4.5\n385,233,4.0\n385,234,3.5\n385,235,3.0\n385,236,3.5\n385,237,4.0\n385,238,4.5\n385,239,5.0\n385,240,5.5\n385,241,6.0\n385,242,6.5\n385,243,7.0\n385,244,7.5\n385,245,8.0\n385,246,8.5\n385,247,9.0\n385,248,9.5\n385,249,10.0\n385,250,7.5\n385,251,7.0\n385,252,6.5\n385,253,6.0\n385,254,5.5\n385,255,5.0\n385,256,4.5\n385,257,4.0\n385,258,3.5\n385,259,3.0\n385,260,2.5\n385,261,3.0\n385,262,3.5\n385,263,4.0\n385,264,4.5\n385,265,5.0\n385,266,5.5\n385,267,6.0\n385,268,6.5\n385,269,7.0\n385,270,7.5\n385,271,8.0\n385,272,8.5\n385,273,9.0\n385,274,9.5\n385,275,7.0\n385,276,6.5\n385,277,6.0\n385,278,5.5\n385,279,5.0\n385,280,4.5\n385,281,4.0\n385,282,3.5\n385,283,3.0\n385,284,2.5\n385,285,2.0\n385,286,2.5\n385,287,3.0\n385,288,3.5\n385,289,4.0\n385,290,4.5\n385,291,5.0\n385,292,5.5\n385,293,6.0\n385,294,6.5\n385,295,7.0\n385,296,7.5\n385,297,8.0\n385,298,8.5\n385,299,9.0\n385,300,6.5\n385,301,6.0\n385,302,5.5\n385,303,5.0\n385,304,4.5\n385,305,4.0\n385,306,3.5\n385,307,3.0\n385,308,2.5\n385,309,2.0\n385,310,1.5\n385,311,2.0\n385,312,2.5\n385,313,3.0\n385,314,3.5\n385,315,4.0\n385,316,4.5\n385,317,5.0\n385,318,5.5\n385,319,6.0\n385,320,6.5\n385,321,7.0\n385,322,7.5\n385,323,8.0\n385,324,8.5\n385,325,6.0\n385,326,5.5\n385,327,5.0\n385,328,4.5\n385,329,4.0\n385,330,3.5\n385,331,3.0\n385,332,2.5\n385,333,2.0\n385,334,1.5\n385,335,1.0\n385,336,1.5\n385,337,2.0\n385,338,2.5\n385,339,3.0\n385,340,3.5\n385,341,4.0\n385,342,4.5\n385,343,5.0\n385,344,5.5\n385,345,6.0\n385,346,6.5\n385,347,7.0\n385,348,7.5\n385,349,8.0\n385,350,5.5\n385,351,5.0\n385,352,4.5\n385,353,4.0\n385,354,3.5\n385,355,3.0\n385,356,2.5\n385,357,2.0\n385,358,1.5\n385,359,1.0\n385,360,0.5\n385,361,1.0\n385,362,1.5\n385,363,2.0\n385,364,2.5\n385,365,3.0\n385,366,3.5\n385,367,4.0\n385,368,4.5\n385,369,5.0\n385,370,5.5\n385,371,6.0\n385,372,6.5\n385,373,7.0\n385,374,7.5\n385,375,5.0\n385,376,4.5\n385,377,4.0\n385,378,3.5\n385,379,3.0\n385,380,2.5\n385,381,2.0\n385,382,1.5\n385,383,1.0\n385,384,0.5\n385,385,0\n385,386,0.5\n385,387,1.0\n385,388,1.5\n385,389,2.0\n385,390,2.5\n385,391,3.0\n385,392,3.5\n385,393,4.0\n385,394,4.5\n385,395,5.0\n385,396,5.5\n385,397,6.0\n385,398,6.5\n385,399,7.0\n385,400,5.5\n385,401,5.0\n385,402,4.5\n385,403,4.0\n385,404,3.5\n385,405,3.0\n385,406,2.5\n385,407,2.0\n385,408,1.5\n385,409,1.0\n385,410,0.5\n385,411,1.0\n385,412,1.5\n385,413,2.0\n385,414,2.5\n385,415,3.0\n385,416,3.5\n385,417,4.0\n385,418,4.5\n385,419,5.0\n385,420,5.5\n385,421,6.0\n385,422,6.5\n385,423,7.0\n385,424,7.5\n385,425,6.0\n385,426,5.5\n385,427,5.0\n385,428,4.5\n385,429,4.0\n385,430,3.5\n385,431,3.0\n385,432,2.5\n385,433,2.0\n385,434,1.5\n385,435,1.0\n385,436,1.5\n385,437,2.0\n385,438,2.5\n385,439,3.0\n385,440,3.5\n385,441,4.0\n385,442,4.5\n385,443,5.0\n385,444,5.5\n385,445,6.0\n385,446,6.5\n385,447,7.0\n385,448,7.5\n385,449,8.0\n385,450,6.5\n385,451,6.0\n385,452,5.5\n385,453,5.0\n385,454,4.5\n385,455,4.0\n385,456,3.5\n385,457,3.0\n385,458,2.5\n385,459,2.0\n385,460,1.5\n385,461,2.0\n385,462,2.5\n385,463,3.0\n385,464,3.5\n385,465,4.0\n385,466,4.5\n385,467,5.0\n385,468,5.5\n385,469,6.0\n385,470,6.5\n385,471,7.0\n385,472,7.5\n385,473,8.0\n385,474,8.5\n385,475,7.0\n385,476,6.5\n385,477,6.0\n385,478,5.5\n385,479,5.0\n385,480,4.5\n385,481,4.0\n385,482,3.5\n385,483,3.0\n385,484,2.5\n385,485,2.0\n385,486,2.5\n385,487,3.0\n385,488,3.5\n385,489,4.0\n385,490,4.5\n385,491,5.0\n385,492,5.5\n385,493,6.0\n385,494,6.5\n385,495,7.0\n385,496,7.5\n385,497,8.0\n385,498,8.5\n385,499,9.0\n385,500,7.5\n385,501,7.0\n385,502,6.5\n385,503,6.0\n385,504,5.5\n385,505,5.0\n385,506,4.5\n385,507,4.0\n385,508,3.5\n385,509,3.0\n385,510,2.5\n385,511,3.0\n385,512,3.5\n385,513,4.0\n385,514,4.5\n385,515,5.0\n385,516,5.5\n385,517,6.0\n385,518,6.5\n385,519,7.0\n385,520,7.5\n385,521,8.0\n385,522,8.5\n385,523,9.0\n385,524,9.5\n385,525,8.0\n385,526,7.5\n385,527,7.0\n385,528,6.5\n385,529,6.0\n385,530,5.5\n385,531,5.0\n385,532,4.5\n385,533,4.0\n385,534,3.5\n385,535,3.0\n385,536,3.5\n385,537,4.0\n385,538,4.5\n385,539,5.0\n385,540,5.5\n385,541,6.0\n385,542,6.5\n385,543,7.0\n385,544,7.5\n385,545,8.0\n385,546,8.5\n385,547,9.0\n385,548,9.5\n385,549,10.0\n385,550,8.5\n385,551,8.0\n385,552,7.5\n385,553,7.0\n385,554,6.5\n385,555,6.0\n385,556,5.5\n385,557,5.0\n385,558,4.5\n385,559,4.0\n385,560,3.5\n385,561,4.0\n385,562,4.5\n385,563,5.0\n385,564,5.5\n385,565,6.0\n385,566,6.5\n385,567,7.0\n385,568,7.5\n385,569,8.0\n385,570,8.5\n385,571,9.0\n385,572,9.5\n385,573,10.0\n385,574,10.5\n385,575,9.0\n385,576,8.5\n385,577,8.0\n385,578,7.5\n385,579,7.0\n385,580,6.5\n385,581,6.0\n385,582,5.5\n385,583,5.0\n385,584,4.5\n385,585,4.0\n385,586,4.5\n385,587,5.0\n385,588,5.5\n385,589,6.0\n385,590,6.5\n385,591,7.0\n385,592,7.5\n385,593,8.0\n385,594,8.5\n385,595,9.0\n385,596,9.5\n385,597,10.0\n385,598,10.5\n385,599,11.0\n385,600,9.5\n385,601,9.0\n385,602,8.5\n385,603,8.0\n385,604,7.5\n385,605,7.0\n385,606,6.5\n385,607,6.0\n385,608,5.5\n385,609,5.0\n385,610,4.5\n385,611,5.0\n385,612,5.5\n385,613,6.0\n385,614,6.5\n385,615,7.0\n385,616,7.5\n385,617,8.0\n385,618,8.5\n385,619,9.0\n385,620,9.5\n385,621,10.0\n385,622,10.5\n385,623,11.0\n385,624,11.5\n386,0,13.0\n386,1,12.5\n386,2,12.0\n386,3,11.5\n386,4,11.0\n386,5,10.5\n386,6,10.0\n386,7,9.5\n386,8,9.0\n386,9,8.5\n386,10,8.0\n386,11,7.5\n386,12,8.0\n386,13,8.5\n386,14,9.0\n386,15,9.5\n386,16,10.0\n386,17,10.5\n386,18,11.0\n386,19,11.5\n386,20,12.0\n386,21,12.5\n386,22,13.0\n386,23,13.5\n386,24,14.0\n386,25,12.5\n386,26,12.0\n386,27,11.5\n386,28,11.0\n386,29,10.5\n386,30,10.0\n386,31,9.5\n386,32,9.0\n386,33,8.5\n386,34,8.0\n386,35,7.5\n386,36,7.0\n386,37,7.5\n386,38,8.0\n386,39,8.5\n386,40,9.0\n386,41,9.5\n386,42,10.0\n386,43,10.5\n386,44,11.0\n386,45,11.5\n386,46,12.0\n386,47,12.5\n386,48,13.0\n386,49,13.5\n386,50,12.0\n386,51,11.5\n386,52,11.0\n386,53,10.5\n386,54,10.0\n386,55,9.5\n386,56,9.0\n386,57,8.5\n386,58,8.0\n386,59,7.5\n386,60,7.0\n386,61,6.5\n386,62,7.0\n386,63,7.5\n386,64,8.0\n386,65,8.5\n386,66,9.0\n386,67,9.5\n386,68,10.0\n386,69,10.5\n386,70,11.0\n386,71,11.5\n386,72,12.0\n386,73,12.5\n386,74,13.0\n386,75,11.5\n386,76,11.0\n386,77,10.5\n386,78,10.0\n386,79,9.5\n386,80,9.0\n386,81,8.5\n386,82,8.0\n386,83,7.5\n386,84,7.0\n386,85,6.5\n386,86,6.0\n386,87,6.5\n386,88,7.0\n386,89,7.5\n386,90,8.0\n386,91,8.5\n386,92,9.0\n386,93,9.5\n386,94,10.0\n386,95,10.5\n386,96,11.0\n386,97,11.5\n386,98,12.0\n386,99,12.5\n386,100,11.0\n386,101,10.5\n386,102,10.0\n386,103,9.5\n386,104,9.0\n386,105,8.5\n386,106,8.0\n386,107,7.5\n386,108,7.0\n386,109,6.5\n386,110,6.0\n386,111,5.5\n386,112,6.0\n386,113,6.5\n386,114,7.0\n386,115,7.5\n386,116,8.0\n386,117,8.5\n386,118,9.0\n386,119,9.5\n386,120,10.0\n386,121,10.5\n386,122,11.0\n386,123,11.5\n386,124,12.0\n386,125,10.5\n386,126,10.0\n386,127,9.5\n386,128,9.0\n386,129,8.5\n386,130,8.0\n386,131,7.5\n386,132,7.0\n386,133,6.5\n386,134,6.0\n386,135,5.5\n386,136,5.0\n386,137,5.5\n386,138,6.0\n386,139,6.5\n386,140,7.0\n386,141,7.5\n386,142,8.0\n386,143,8.5\n386,144,9.0\n386,145,9.5\n386,146,10.0\n386,147,10.5\n386,148,11.0\n386,149,11.5\n386,150,10.0\n386,151,9.5\n386,152,9.0\n386,153,8.5\n386,154,8.0\n386,155,7.5\n386,156,7.0\n386,157,6.5\n386,158,6.0\n386,159,5.5\n386,160,5.0\n386,161,4.5\n386,162,5.0\n386,163,5.5\n386,164,6.0\n386,165,6.5\n386,166,7.0\n386,167,7.5\n386,168,8.0\n386,169,8.5\n386,170,9.0\n386,171,9.5\n386,172,10.0\n386,173,10.5\n386,174,11.0\n386,175,9.5\n386,176,9.0\n386,177,8.5\n386,178,8.0\n386,179,7.5\n386,180,7.0\n386,181,6.5\n386,182,6.0\n386,183,5.5\n386,184,5.0\n386,185,4.5\n386,186,4.0\n386,187,4.5\n386,188,5.0\n386,189,5.5\n386,190,6.0\n386,191,6.5\n386,192,7.0\n386,193,7.5\n386,194,8.0\n386,195,8.5\n386,196,9.0\n386,197,9.5\n386,198,10.0\n386,199,10.5\n386,200,9.0\n386,201,8.5\n386,202,8.0\n386,203,7.5\n386,204,7.0\n386,205,6.5\n386,206,6.0\n386,207,5.5\n386,208,5.0\n386,209,4.5\n386,210,4.0\n386,211,3.5\n386,212,4.0\n386,213,4.5\n386,214,5.0\n386,215,5.5\n386,216,6.0\n386,217,6.5\n386,218,7.0\n386,219,7.5\n386,220,8.0\n386,221,8.5\n386,222,9.0\n386,223,9.5\n386,224,10.0\n386,225,8.5\n386,226,8.0\n386,227,7.5\n386,228,7.0\n386,229,6.5\n386,230,6.0\n386,231,5.5\n386,232,5.0\n386,233,4.5\n386,234,4.0\n386,235,3.5\n386,236,3.0\n386,237,3.5\n386,238,4.0\n386,239,4.5\n386,240,5.0\n386,241,5.5\n386,242,6.0\n386,243,6.5\n386,244,7.0\n386,245,7.5\n386,246,8.0\n386,247,8.5\n386,248,9.0\n386,249,9.5\n386,250,8.0\n386,251,7.5\n386,252,7.0\n386,253,6.5\n386,254,6.0\n386,255,5.5\n386,256,5.0\n386,257,4.5\n386,258,4.0\n386,259,3.5\n386,260,3.0\n386,261,2.5\n386,262,3.0\n386,263,3.5\n386,264,4.0\n386,265,4.5\n386,266,5.0\n386,267,5.5\n386,268,6.0\n386,269,6.5\n386,270,7.0\n386,271,7.5\n386,272,8.0\n386,273,8.5\n386,274,9.0\n386,275,7.5\n386,276,7.0\n386,277,6.5\n386,278,6.0\n386,279,5.5\n386,280,5.0\n386,281,4.5\n386,282,4.0\n386,283,3.5\n386,284,3.0\n386,285,2.5\n386,286,2.0\n386,287,2.5\n386,288,3.0\n386,289,3.5\n386,290,4.0\n386,291,4.5\n386,292,5.0\n386,293,5.5\n386,294,6.0\n386,295,6.5\n386,296,7.0\n386,297,7.5\n386,298,8.0\n386,299,8.5\n386,300,7.0\n386,301,6.5\n386,302,6.0\n386,303,5.5\n386,304,5.0\n386,305,4.5\n386,306,4.0\n386,307,3.5\n386,308,3.0\n386,309,2.5\n386,310,2.0\n386,311,1.5\n386,312,2.0\n386,313,2.5\n386,314,3.0\n386,315,3.5\n386,316,4.0\n386,317,4.5\n386,318,5.0\n386,319,5.5\n386,320,6.0\n386,321,6.5\n386,322,7.0\n386,323,7.5\n386,324,8.0\n386,325,6.5\n386,326,6.0\n386,327,5.5\n386,328,5.0\n386,329,4.5\n386,330,4.0\n386,331,3.5\n386,332,3.0\n386,333,2.5\n386,334,2.0\n386,335,1.5\n386,336,1.0\n386,337,1.5\n386,338,2.0\n386,339,2.5\n386,340,3.0\n386,341,3.5\n386,342,4.0\n386,343,4.5\n386,344,5.0\n386,345,5.5\n386,346,6.0\n386,347,6.5\n386,348,7.0\n386,349,7.5\n386,350,6.0\n386,351,5.5\n386,352,5.0\n386,353,4.5\n386,354,4.0\n386,355,3.5\n386,356,3.0\n386,357,2.5\n386,358,2.0\n386,359,1.5\n386,360,1.0\n386,361,0.5\n386,362,1.0\n386,363,1.5\n386,364,2.0\n386,365,2.5\n386,366,3.0\n386,367,3.5\n386,368,4.0\n386,369,4.5\n386,370,5.0\n386,371,5.5\n386,372,6.0\n386,373,6.5\n386,374,7.0\n386,375,5.5\n386,376,5.0\n386,377,4.5\n386,378,4.0\n386,379,3.5\n386,380,3.0\n386,381,2.5\n386,382,2.0\n386,383,1.5\n386,384,1.0\n386,385,0.5\n386,386,0\n386,387,0.5\n386,388,1.0\n386,389,1.5\n386,390,2.0\n386,391,2.5\n386,392,3.0\n386,393,3.5\n386,394,4.0\n386,395,4.5\n386,396,5.0\n386,397,5.5\n386,398,6.0\n386,399,6.5\n386,400,6.0\n386,401,5.5\n386,402,5.0\n386,403,4.5\n386,404,4.0\n386,405,3.5\n386,406,3.0\n386,407,2.5\n386,408,2.0\n386,409,1.5\n386,410,1.0\n386,411,0.5\n386,412,1.0\n386,413,1.5\n386,414,2.0\n386,415,2.5\n386,416,3.0\n386,417,3.5\n386,418,4.0\n386,419,4.5\n386,420,5.0\n386,421,5.5\n386,422,6.0\n386,423,6.5\n386,424,7.0\n386,425,6.5\n386,426,6.0\n386,427,5.5\n386,428,5.0\n386,429,4.5\n386,430,4.0\n386,431,3.5\n386,432,3.0\n386,433,2.5\n386,434,2.0\n386,435,1.5\n386,436,1.0\n386,437,1.5\n386,438,2.0\n386,439,2.5\n386,440,3.0\n386,441,3.5\n386,442,4.0\n386,443,4.5\n386,444,5.0\n386,445,5.5\n386,446,6.0\n386,447,6.5\n386,448,7.0\n386,449,7.5\n386,450,7.0\n386,451,6.5\n386,452,6.0\n386,453,5.5\n386,454,5.0\n386,455,4.5\n386,456,4.0\n386,457,3.5\n386,458,3.0\n386,459,2.5\n386,460,2.0\n386,461,1.5\n386,462,2.0\n386,463,2.5\n386,464,3.0\n386,465,3.5\n386,466,4.0\n386,467,4.5\n386,468,5.0\n386,469,5.5\n386,470,6.0\n386,471,6.5\n386,472,7.0\n386,473,7.5\n386,474,8.0\n386,475,7.5\n386,476,7.0\n386,477,6.5\n386,478,6.0\n386,479,5.5\n386,480,5.0\n386,481,4.5\n386,482,4.0\n386,483,3.5\n386,484,3.0\n386,485,2.5\n386,486,2.0\n386,487,2.5\n386,488,3.0\n386,489,3.5\n386,490,4.0\n386,491,4.5\n386,492,5.0\n386,493,5.5\n386,494,6.0\n386,495,6.5\n386,496,7.0\n386,497,7.5\n386,498,8.0\n386,499,8.5\n386,500,8.0\n386,501,7.5\n386,502,7.0\n386,503,6.5\n386,504,6.0\n386,505,5.5\n386,506,5.0\n386,507,4.5\n386,508,4.0\n386,509,3.5\n386,510,3.0\n386,511,2.5\n386,512,3.0\n386,513,3.5\n386,514,4.0\n386,515,4.5\n386,516,5.0\n386,517,5.5\n386,518,6.0\n386,519,6.5\n386,520,7.0\n386,521,7.5\n386,522,8.0\n386,523,8.5\n386,524,9.0\n386,525,8.5\n386,526,8.0\n386,527,7.5\n386,528,7.0\n386,529,6.5\n386,530,6.0\n386,531,5.5\n386,532,5.0\n386,533,4.5\n386,534,4.0\n386,535,3.5\n386,536,3.0\n386,537,3.5\n386,538,4.0\n386,539,4.5\n386,540,5.0\n386,541,5.5\n386,542,6.0\n386,543,6.5\n386,544,7.0\n386,545,7.5\n386,546,8.0\n386,547,8.5\n386,548,9.0\n386,549,9.5\n386,550,9.0\n386,551,8.5\n386,552,8.0\n386,553,7.5\n386,554,7.0\n386,555,6.5\n386,556,6.0\n386,557,5.5\n386,558,5.0\n386,559,4.5\n386,560,4.0\n386,561,3.5\n386,562,4.0\n386,563,4.5\n386,564,5.0\n386,565,5.5\n386,566,6.0\n386,567,6.5\n386,568,7.0\n386,569,7.5\n386,570,8.0\n386,571,8.5\n386,572,9.0\n386,573,9.5\n386,574,10.0\n386,575,9.5\n386,576,9.0\n386,577,8.5\n386,578,8.0\n386,579,7.5\n386,580,7.0\n386,581,6.5\n386,582,6.0\n386,583,5.5\n386,584,5.0\n386,585,4.5\n386,586,4.0\n386,587,4.5\n386,588,5.0\n386,589,5.5\n386,590,6.0\n386,591,6.5\n386,592,7.0\n386,593,7.5\n386,594,8.0\n386,595,8.5\n386,596,9.0\n386,597,9.5\n386,598,10.0\n386,599,10.5\n386,600,10.0\n386,601,9.5\n386,602,9.0\n386,603,8.5\n386,604,8.0\n386,605,7.5\n386,606,7.0\n386,607,6.5\n386,608,6.0\n386,609,5.5\n386,610,5.0\n386,611,4.5\n386,612,5.0\n386,613,5.5\n386,614,6.0\n386,615,6.5\n386,616,7.0\n386,617,7.5\n386,618,8.0\n386,619,8.5\n386,620,9.0\n386,621,9.5\n386,622,10.0\n386,623,10.5\n386,624,11.0\n387,0,13.5\n387,1,13.0\n387,2,12.5\n387,3,12.0\n387,4,11.5\n387,5,11.0\n387,6,10.5\n387,7,10.0\n387,8,9.5\n387,9,9.0\n387,10,8.5\n387,11,8.0\n387,12,7.5\n387,13,8.0\n387,14,8.5\n387,15,9.0\n387,16,9.5\n387,17,10.0\n387,18,10.5\n387,19,11.0\n387,20,11.5\n387,21,12.0\n387,22,12.5\n387,23,13.0\n387,24,13.5\n387,25,13.0\n387,26,12.5\n387,27,12.0\n387,28,11.5\n387,29,11.0\n387,30,10.5\n387,31,10.0\n387,32,9.5\n387,33,9.0\n387,34,8.5\n387,35,8.0\n387,36,7.5\n387,37,7.0\n387,38,7.5\n387,39,8.0\n387,40,8.5\n387,41,9.0\n387,42,9.5\n387,43,10.0\n387,44,10.5\n387,45,11.0\n387,46,11.5\n387,47,12.0\n387,48,12.5\n387,49,13.0\n387,50,12.5\n387,51,12.0\n387,52,11.5\n387,53,11.0\n387,54,10.5\n387,55,10.0\n387,56,9.5\n387,57,9.0\n387,58,8.5\n387,59,8.0\n387,60,7.5\n387,61,7.0\n387,62,6.5\n387,63,7.0\n387,64,7.5\n387,65,8.0\n387,66,8.5\n387,67,9.0\n387,68,9.5\n387,69,10.0\n387,70,10.5\n387,71,11.0\n387,72,11.5\n387,73,12.0\n387,74,12.5\n387,75,12.0\n387,76,11.5\n387,77,11.0\n387,78,10.5\n387,79,10.0\n387,80,9.5\n387,81,9.0\n387,82,8.5\n387,83,8.0\n387,84,7.5\n387,85,7.0\n387,86,6.5\n387,87,6.0\n387,88,6.5\n387,89,7.0\n387,90,7.5\n387,91,8.0\n387,92,8.5\n387,93,9.0\n387,94,9.5\n387,95,10.0\n387,96,10.5\n387,97,11.0\n387,98,11.5\n387,99,12.0\n387,100,11.5\n387,101,11.0\n387,102,10.5\n387,103,10.0\n387,104,9.5\n387,105,9.0\n387,106,8.5\n387,107,8.0\n387,108,7.5\n387,109,7.0\n387,110,6.5\n387,111,6.0\n387,112,5.5\n387,113,6.0\n387,114,6.5\n387,115,7.0\n387,116,7.5\n387,117,8.0\n387,118,8.5\n387,119,9.0\n387,120,9.5\n387,121,10.0\n387,122,10.5\n387,123,11.0\n387,124,11.5\n387,125,11.0\n387,126,10.5\n387,127,10.0\n387,128,9.5\n387,129,9.0\n387,130,8.5\n387,131,8.0\n387,132,7.5\n387,133,7.0\n387,134,6.5\n387,135,6.0\n387,136,5.5\n387,137,5.0\n387,138,5.5\n387,139,6.0\n387,140,6.5\n387,141,7.0\n387,142,7.5\n387,143,8.0\n387,144,8.5\n387,145,9.0\n387,146,9.5\n387,147,10.0\n387,148,10.5\n387,149,11.0\n387,150,10.5\n387,151,10.0\n387,152,9.5\n387,153,9.0\n387,154,8.5\n387,155,8.0\n387,156,7.5\n387,157,7.0\n387,158,6.5\n387,159,6.0\n387,160,5.5\n387,161,5.0\n387,162,4.5\n387,163,5.0\n387,164,5.5\n387,165,6.0\n387,166,6.5\n387,167,7.0\n387,168,7.5\n387,169,8.0\n387,170,8.5\n387,171,9.0\n387,172,9.5\n387,173,10.0\n387,174,10.5\n387,175,10.0\n387,176,9.5\n387,177,9.0\n387,178,8.5\n387,179,8.0\n387,180,7.5\n387,181,7.0\n387,182,6.5\n387,183,6.0\n387,184,5.5\n387,185,5.0\n387,186,4.5\n387,187,4.0\n387,188,4.5\n387,189,5.0\n387,190,5.5\n387,191,6.0\n387,192,6.5\n387,193,7.0\n387,194,7.5\n387,195,8.0\n387,196,8.5\n387,197,9.0\n387,198,9.5\n387,199,10.0\n387,200,9.5\n387,201,9.0\n387,202,8.5\n387,203,8.0\n387,204,7.5\n387,205,7.0\n387,206,6.5\n387,207,6.0\n387,208,5.5\n387,209,5.0\n387,210,4.5\n387,211,4.0\n387,212,3.5\n387,213,4.0\n387,214,4.5\n387,215,5.0\n387,216,5.5\n387,217,6.0\n387,218,6.5\n387,219,7.0\n387,220,7.5\n387,221,8.0\n387,222,8.5\n387,223,9.0\n387,224,9.5\n387,225,9.0\n387,226,8.5\n387,227,8.0\n387,228,7.5\n387,229,7.0\n387,230,6.5\n387,231,6.0\n387,232,5.5\n387,233,5.0\n387,234,4.5\n387,235,4.0\n387,236,3.5\n387,237,3.0\n387,238,3.5\n387,239,4.0\n387,240,4.5\n387,241,5.0\n387,242,5.5\n387,243,6.0\n387,244,6.5\n387,245,7.0\n387,246,7.5\n387,247,8.0\n387,248,8.5\n387,249,9.0\n387,250,8.5\n387,251,8.0\n387,252,7.5\n387,253,7.0\n387,254,6.5\n387,255,6.0\n387,256,5.5\n387,257,5.0\n387,258,4.5\n387,259,4.0\n387,260,3.5\n387,261,3.0\n387,262,2.5\n387,263,3.0\n387,264,3.5\n387,265,4.0\n387,266,4.5\n387,267,5.0\n387,268,5.5\n387,269,6.0\n387,270,6.5\n387,271,7.0\n387,272,7.5\n387,273,8.0\n387,274,8.5\n387,275,8.0\n387,276,7.5\n387,277,7.0\n387,278,6.5\n387,279,6.0\n387,280,5.5\n387,281,5.0\n387,282,4.5\n387,283,4.0\n387,284,3.5\n387,285,3.0\n387,286,2.5\n387,287,2.0\n387,288,2.5\n387,289,3.0\n387,290,3.5\n387,291,4.0\n387,292,4.5\n387,293,5.0\n387,294,5.5\n387,295,6.0\n387,296,6.5\n387,297,7.0\n387,298,7.5\n387,299,8.0\n387,300,7.5\n387,301,7.0\n387,302,6.5\n387,303,6.0\n387,304,5.5\n387,305,5.0\n387,306,4.5\n387,307,4.0\n387,308,3.5\n387,309,3.0\n387,310,2.5\n387,311,2.0\n387,312,1.5\n387,313,2.0\n387,314,2.5\n387,315,3.0\n387,316,3.5\n387,317,4.0\n387,318,4.5\n387,319,5.0\n387,320,5.5\n387,321,6.0\n387,322,6.5\n387,323,7.0\n387,324,7.5\n387,325,7.0\n387,326,6.5\n387,327,6.0\n387,328,5.5\n387,329,5.0\n387,330,4.5\n387,331,4.0\n387,332,3.5\n387,333,3.0\n387,334,2.5\n387,335,2.0\n387,336,1.5\n387,337,1.0\n387,338,1.5\n387,339,2.0\n387,340,2.5\n387,341,3.0\n387,342,3.5\n387,343,4.0\n387,344,4.5\n387,345,5.0\n387,346,5.5\n387,347,6.0\n387,348,6.5\n387,349,7.0\n387,350,6.5\n387,351,6.0\n387,352,5.5\n387,353,5.0\n387,354,4.5\n387,355,4.0\n387,356,3.5\n387,357,3.0\n387,358,2.5\n387,359,2.0\n387,360,1.5\n387,361,1.0\n387,362,0.5\n387,363,1.0\n387,364,1.5\n387,365,2.0\n387,366,2.5\n387,367,3.0\n387,368,3.5\n387,369,4.0\n387,370,4.5\n387,371,5.0\n387,372,5.5\n387,373,6.0\n387,374,6.5\n387,375,6.0\n387,376,5.5\n387,377,5.0\n387,378,4.5\n387,379,4.0\n387,380,3.5\n387,381,3.0\n387,382,2.5\n387,383,2.0\n387,384,1.5\n387,385,1.0\n387,386,0.5\n387,387,0\n387,388,0.5\n387,389,1.0\n387,390,1.5\n387,391,2.0\n387,392,2.5\n387,393,3.0\n387,394,3.5\n387,395,4.0\n387,396,4.5\n387,397,5.0\n387,398,5.5\n387,399,6.0\n387,400,6.5\n387,401,6.0\n387,402,5.5\n387,403,5.0\n387,404,4.5\n387,405,4.0\n387,406,3.5\n387,407,3.0\n387,408,2.5\n387,409,2.0\n387,410,1.5\n387,411,1.0\n387,412,0.5\n387,413,1.0\n387,414,1.5\n387,415,2.0\n387,416,2.5\n387,417,3.0\n387,418,3.5\n387,419,4.0\n387,420,4.5\n387,421,5.0\n387,422,5.5\n387,423,6.0\n387,424,6.5\n387,425,7.0\n387,426,6.5\n387,427,6.0\n387,428,5.5\n387,429,5.0\n387,430,4.5\n387,431,4.0\n387,432,3.5\n387,433,3.0\n387,434,2.5\n387,435,2.0\n387,436,1.5\n387,437,1.0\n387,438,1.5\n387,439,2.0\n387,440,2.5\n387,441,3.0\n387,442,3.5\n387,443,4.0\n387,444,4.5\n387,445,5.0\n387,446,5.5\n387,447,6.0\n387,448,6.5\n387,449,7.0\n387,450,7.5\n387,451,7.0\n387,452,6.5\n387,453,6.0\n387,454,5.5\n387,455,5.0\n387,456,4.5\n387,457,4.0\n387,458,3.5\n387,459,3.0\n387,460,2.5\n387,461,2.0\n387,462,1.5\n387,463,2.0\n387,464,2.5\n387,465,3.0\n387,466,3.5\n387,467,4.0\n387,468,4.5\n387,469,5.0\n387,470,5.5\n387,471,6.0\n387,472,6.5\n387,473,7.0\n387,474,7.5\n387,475,8.0\n387,476,7.5\n387,477,7.0\n387,478,6.5\n387,479,6.0\n387,480,5.5\n387,481,5.0\n387,482,4.5\n387,483,4.0\n387,484,3.5\n387,485,3.0\n387,486,2.5\n387,487,2.0\n387,488,2.5\n387,489,3.0\n387,490,3.5\n387,491,4.0\n387,492,4.5\n387,493,5.0\n387,494,5.5\n387,495,6.0\n387,496,6.5\n387,497,7.0\n387,498,7.5\n387,499,8.0\n387,500,8.5\n387,501,8.0\n387,502,7.5\n387,503,7.0\n387,504,6.5\n387,505,6.0\n387,506,5.5\n387,507,5.0\n387,508,4.5\n387,509,4.0\n387,510,3.5\n387,511,3.0\n387,512,2.5\n387,513,3.0\n387,514,3.5\n387,515,4.0\n387,516,4.5\n387,517,5.0\n387,518,5.5\n387,519,6.0\n387,520,6.5\n387,521,7.0\n387,522,7.5\n387,523,8.0\n387,524,8.5\n387,525,9.0\n387,526,8.5\n387,527,8.0\n387,528,7.5\n387,529,7.0\n387,530,6.5\n387,531,6.0\n387,532,5.5\n387,533,5.0\n387,534,4.5\n387,535,4.0\n387,536,3.5\n387,537,3.0\n387,538,3.5\n387,539,4.0\n387,540,4.5\n387,541,5.0\n387,542,5.5\n387,543,6.0\n387,544,6.5\n387,545,7.0\n387,546,7.5\n387,547,8.0\n387,548,8.5\n387,549,9.0\n387,550,9.5\n387,551,9.0\n387,552,8.5\n387,553,8.0\n387,554,7.5\n387,555,7.0\n387,556,6.5\n387,557,6.0\n387,558,5.5\n387,559,5.0\n387,560,4.5\n387,561,4.0\n387,562,3.5\n387,563,4.0\n387,564,4.5\n387,565,5.0\n387,566,5.5\n387,567,6.0\n387,568,6.5\n387,569,7.0\n387,570,7.5\n387,571,8.0\n387,572,8.5\n387,573,9.0\n387,574,9.5\n387,575,10.0\n387,576,9.5\n387,577,9.0\n387,578,8.5\n387,579,8.0\n387,580,7.5\n387,581,7.0\n387,582,6.5\n387,583,6.0\n387,584,5.5\n387,585,5.0\n387,586,4.5\n387,587,4.0\n387,588,4.5\n387,589,5.0\n387,590,5.5\n387,591,6.0\n387,592,6.5\n387,593,7.0\n387,594,7.5\n387,595,8.0\n387,596,8.5\n387,597,9.0\n387,598,9.5\n387,599,10.0\n387,600,10.5\n387,601,10.0\n387,602,9.5\n387,603,9.0\n387,604,8.5\n387,605,8.0\n387,606,7.5\n387,607,7.0\n387,608,6.5\n387,609,6.0\n387,610,5.5\n387,611,5.0\n387,612,4.5\n387,613,5.0\n387,614,5.5\n387,615,6.0\n387,616,6.5\n387,617,7.0\n387,618,7.5\n387,619,8.0\n387,620,8.5\n387,621,9.0\n387,622,9.5\n387,623,10.0\n387,624,10.5\n388,0,14.0\n388,1,13.5\n388,2,13.0\n388,3,12.5\n388,4,12.0\n388,5,11.5\n388,6,11.0\n388,7,10.5\n388,8,10.0\n388,9,9.5\n388,10,9.0\n388,11,8.5\n388,12,8.0\n388,13,7.5\n388,14,8.0\n388,15,8.5\n388,16,9.0\n388,17,9.5\n388,18,10.0\n388,19,10.5\n388,20,11.0\n388,21,11.5\n388,22,12.0\n388,23,12.5\n388,24,13.0\n388,25,13.5\n388,26,13.0\n388,27,12.5\n388,28,12.0\n388,29,11.5\n388,30,11.0\n388,31,10.5\n388,32,10.0\n388,33,9.5\n388,34,9.0\n388,35,8.5\n388,36,8.0\n388,37,7.5\n388,38,7.0\n388,39,7.5\n388,40,8.0\n388,41,8.5\n388,42,9.0\n388,43,9.5\n388,44,10.0\n388,45,10.5\n388,46,11.0\n388,47,11.5\n388,48,12.0\n388,49,12.5\n388,50,13.0\n388,51,12.5\n388,52,12.0\n388,53,11.5\n388,54,11.0\n388,55,10.5\n388,56,10.0\n388,57,9.5\n388,58,9.0\n388,59,8.5\n388,60,8.0\n388,61,7.5\n388,62,7.0\n388,63,6.5\n388,64,7.0\n388,65,7.5\n388,66,8.0\n388,67,8.5\n388,68,9.0\n388,69,9.5\n388,70,10.0\n388,71,10.5\n388,72,11.0\n388,73,11.5\n388,74,12.0\n388,75,12.5\n388,76,12.0\n388,77,11.5\n388,78,11.0\n388,79,10.5\n388,80,10.0\n388,81,9.5\n388,82,9.0\n388,83,8.5\n388,84,8.0\n388,85,7.5\n388,86,7.0\n388,87,6.5\n388,88,6.0\n388,89,6.5\n388,90,7.0\n388,91,7.5\n388,92,8.0\n388,93,8.5\n388,94,9.0\n388,95,9.5\n388,96,10.0\n388,97,10.5\n388,98,11.0\n388,99,11.5\n388,100,12.0\n388,101,11.5\n388,102,11.0\n388,103,10.5\n388,104,10.0\n388,105,9.5\n388,106,9.0\n388,107,8.5\n388,108,8.0\n388,109,7.5\n388,110,7.0\n388,111,6.5\n388,112,6.0\n388,113,5.5\n388,114,6.0\n388,115,6.5\n388,116,7.0\n388,117,7.5\n388,118,8.0\n388,119,8.5\n388,120,9.0\n388,121,9.5\n388,122,10.0\n388,123,10.5\n388,124,11.0\n388,125,11.5\n388,126,11.0\n388,127,10.5\n388,128,10.0\n388,129,9.5\n388,130,9.0\n388,131,8.5\n388,132,8.0\n388,133,7.5\n388,134,7.0\n388,135,6.5\n388,136,6.0\n388,137,5.5\n388,138,5.0\n388,139,5.5\n388,140,6.0\n388,141,6.5\n388,142,7.0\n388,143,7.5\n388,144,8.0\n388,145,8.5\n388,146,9.0\n388,147,9.5\n388,148,10.0\n388,149,10.5\n388,150,11.0\n388,151,10.5\n388,152,10.0\n388,153,9.5\n388,154,9.0\n388,155,8.5\n388,156,8.0\n388,157,7.5\n388,158,7.0\n388,159,6.5\n388,160,6.0\n388,161,5.5\n388,162,5.0\n388,163,4.5\n388,164,5.0\n388,165,5.5\n388,166,6.0\n388,167,6.5\n388,168,7.0\n388,169,7.5\n388,170,8.0\n388,171,8.5\n388,172,9.0\n388,173,9.5\n388,174,10.0\n388,175,10.5\n388,176,10.0\n388,177,9.5\n388,178,9.0\n388,179,8.5\n388,180,8.0\n388,181,7.5\n388,182,7.0\n388,183,6.5\n388,184,6.0\n388,185,5.5\n388,186,5.0\n388,187,4.5\n388,188,4.0\n388,189,4.5\n388,190,5.0\n388,191,5.5\n388,192,6.0\n388,193,6.5\n388,194,7.0\n388,195,7.5\n388,196,8.0\n388,197,8.5\n388,198,9.0\n388,199,9.5\n388,200,10.0\n388,201,9.5\n388,202,9.0\n388,203,8.5\n388,204,8.0\n388,205,7.5\n388,206,7.0\n388,207,6.5\n388,208,6.0\n388,209,5.5\n388,210,5.0\n388,211,4.5\n388,212,4.0\n388,213,3.5\n388,214,4.0\n388,215,4.5\n388,216,5.0\n388,217,5.5\n388,218,6.0\n388,219,6.5\n388,220,7.0\n388,221,7.5\n388,222,8.0\n388,223,8.5\n388,224,9.0\n388,225,9.5\n388,226,9.0\n388,227,8.5\n388,228,8.0\n388,229,7.5\n388,230,7.0\n388,231,6.5\n388,232,6.0\n388,233,5.5\n388,234,5.0\n388,235,4.5\n388,236,4.0\n388,237,3.5\n388,238,3.0\n388,239,3.5\n388,240,4.0\n388,241,4.5\n388,242,5.0\n388,243,5.5\n388,244,6.0\n388,245,6.5\n388,246,7.0\n388,247,7.5\n388,248,8.0\n388,249,8.5\n388,250,9.0\n388,251,8.5\n388,252,8.0\n388,253,7.5\n388,254,7.0\n388,255,6.5\n388,256,6.0\n388,257,5.5\n388,258,5.0\n388,259,4.5\n388,260,4.0\n388,261,3.5\n388,262,3.0\n388,263,2.5\n388,264,3.0\n388,265,3.5\n388,266,4.0\n388,267,4.5\n388,268,5.0\n388,269,5.5\n388,270,6.0\n388,271,6.5\n388,272,7.0\n388,273,7.5\n388,274,8.0\n388,275,8.5\n388,276,8.0\n388,277,7.5\n388,278,7.0\n388,279,6.5\n388,280,6.0\n388,281,5.5\n388,282,5.0\n388,283,4.5\n388,284,4.0\n388,285,3.5\n388,286,3.0\n388,287,2.5\n388,288,2.0\n388,289,2.5\n388,290,3.0\n388,291,3.5\n388,292,4.0\n388,293,4.5\n388,294,5.0\n388,295,5.5\n388,296,6.0\n388,297,6.5\n388,298,7.0\n388,299,7.5\n388,300,8.0\n388,301,7.5\n388,302,7.0\n388,303,6.5\n388,304,6.0\n388,305,5.5\n388,306,5.0\n388,307,4.5\n388,308,4.0\n388,309,3.5\n388,310,3.0\n388,311,2.5\n388,312,2.0\n388,313,1.5\n388,314,2.0\n388,315,2.5\n388,316,3.0\n388,317,3.5\n388,318,4.0\n388,319,4.5\n388,320,5.0\n388,321,5.5\n388,322,6.0\n388,323,6.5\n388,324,7.0\n388,325,7.5\n388,326,7.0\n388,327,6.5\n388,328,6.0\n388,329,5.5\n388,330,5.0\n388,331,4.5\n388,332,4.0\n388,333,3.5\n388,334,3.0\n388,335,2.5\n388,336,2.0\n388,337,1.5\n388,338,1.0\n388,339,1.5\n388,340,2.0\n388,341,2.5\n388,342,3.0\n388,343,3.5\n388,344,4.0\n388,345,4.5\n388,346,5.0\n388,347,5.5\n388,348,6.0\n388,349,6.5\n388,350,7.0\n388,351,6.5\n388,352,6.0\n388,353,5.5\n388,354,5.0\n388,355,4.5\n388,356,4.0\n388,357,3.5\n388,358,3.0\n388,359,2.5\n388,360,2.0\n388,361,1.5\n388,362,1.0\n388,363,0.5\n388,364,1.0\n388,365,1.5\n388,366,2.0\n388,367,2.5\n388,368,3.0\n388,369,3.5\n388,370,4.0\n388,371,4.5\n388,372,5.0\n388,373,5.5\n388,374,6.0\n388,375,6.5\n388,376,6.0\n388,377,5.5\n388,378,5.0\n388,379,4.5\n388,380,4.0\n388,381,3.5\n388,382,3.0\n388,383,2.5\n388,384,2.0\n388,385,1.5\n388,386,1.0\n388,387,0.5\n388,388,0\n388,389,0.5\n388,390,1.0\n388,391,1.5\n388,392,2.0\n388,393,2.5\n388,394,3.0\n388,395,3.5\n388,396,4.0\n388,397,4.5\n388,398,5.0\n388,399,5.5\n388,400,7.0\n388,401,6.5\n388,402,6.0\n388,403,5.5\n388,404,5.0\n388,405,4.5\n388,406,4.0\n388,407,3.5\n388,408,3.0\n388,409,2.5\n388,410,2.0\n388,411,1.5\n388,412,1.0\n388,413,0.5\n388,414,1.0\n388,415,1.5\n388,416,2.0\n388,417,2.5\n388,418,3.0\n388,419,3.5\n388,420,4.0\n388,421,4.5\n388,422,5.0\n388,423,5.5\n388,424,6.0\n388,425,7.5\n388,426,7.0\n388,427,6.5\n388,428,6.0\n388,429,5.5\n388,430,5.0\n388,431,4.5\n388,432,4.0\n388,433,3.5\n388,434,3.0\n388,435,2.5\n388,436,2.0\n388,437,1.5\n388,438,1.0\n388,439,1.5\n388,440,2.0\n388,441,2.5\n388,442,3.0\n388,443,3.5\n388,444,4.0\n388,445,4.5\n388,446,5.0\n388,447,5.5\n388,448,6.0\n388,449,6.5\n388,450,8.0\n388,451,7.5\n388,452,7.0\n388,453,6.5\n388,454,6.0\n388,455,5.5\n388,456,5.0\n388,457,4.5\n388,458,4.0\n388,459,3.5\n388,460,3.0\n388,461,2.5\n388,462,2.0\n388,463,1.5\n388,464,2.0\n388,465,2.5\n388,466,3.0\n388,467,3.5\n388,468,4.0\n388,469,4.5\n388,470,5.0\n388,471,5.5\n388,472,6.0\n388,473,6.5\n388,474,7.0\n388,475,8.5\n388,476,8.0\n388,477,7.5\n388,478,7.0\n388,479,6.5\n388,480,6.0\n388,481,5.5\n388,482,5.0\n388,483,4.5\n388,484,4.0\n388,485,3.5\n388,486,3.0\n388,487,2.5\n388,488,2.0\n388,489,2.5\n388,490,3.0\n388,491,3.5\n388,492,4.0\n388,493,4.5\n388,494,5.0\n388,495,5.5\n388,496,6.0\n388,497,6.5\n388,498,7.0\n388,499,7.5\n388,500,9.0\n388,501,8.5\n388,502,8.0\n388,503,7.5\n388,504,7.0\n388,505,6.5\n388,506,6.0\n388,507,5.5\n388,508,5.0\n388,509,4.5\n388,510,4.0\n388,511,3.5\n388,512,3.0\n388,513,2.5\n388,514,3.0\n388,515,3.5\n388,516,4.0\n388,517,4.5\n388,518,5.0\n388,519,5.5\n388,520,6.0\n388,521,6.5\n388,522,7.0\n388,523,7.5\n388,524,8.0\n388,525,9.5\n388,526,9.0\n388,527,8.5\n388,528,8.0\n388,529,7.5\n388,530,7.0\n388,531,6.5\n388,532,6.0\n388,533,5.5\n388,534,5.0\n388,535,4.5\n388,536,4.0\n388,537,3.5\n388,538,3.0\n388,539,3.5\n388,540,4.0\n388,541,4.5\n388,542,5.0\n388,543,5.5\n388,544,6.0\n388,545,6.5\n388,546,7.0\n388,547,7.5\n388,548,8.0\n388,549,8.5\n388,550,10.0\n388,551,9.5\n388,552,9.0\n388,553,8.5\n388,554,8.0\n388,555,7.5\n388,556,7.0\n388,557,6.5\n388,558,6.0\n388,559,5.5\n388,560,5.0\n388,561,4.5\n388,562,4.0\n388,563,3.5\n388,564,4.0\n388,565,4.5\n388,566,5.0\n388,567,5.5\n388,568,6.0\n388,569,6.5\n388,570,7.0\n388,571,7.5\n388,572,8.0\n388,573,8.5\n388,574,9.0\n388,575,10.5\n388,576,10.0\n388,577,9.5\n388,578,9.0\n388,579,8.5\n388,580,8.0\n388,581,7.5\n388,582,7.0\n388,583,6.5\n388,584,6.0\n388,585,5.5\n388,586,5.0\n388,587,4.5\n388,588,4.0\n388,589,4.5\n388,590,5.0\n388,591,5.5\n388,592,6.0\n388,593,6.5\n388,594,7.0\n388,595,7.5\n388,596,8.0\n388,597,8.5\n388,598,9.0\n388,599,9.5\n388,600,11.0\n388,601,10.5\n388,602,10.0\n388,603,9.5\n388,604,9.0\n388,605,8.5\n388,606,8.0\n388,607,7.5\n388,608,7.0\n388,609,6.5\n388,610,6.0\n388,611,5.5\n388,612,5.0\n388,613,4.5\n388,614,5.0\n388,615,5.5\n388,616,6.0\n388,617,6.5\n388,618,7.0\n388,619,7.5\n388,620,8.0\n388,621,8.5\n388,622,9.0\n388,623,9.5\n388,624,10.0\n389,0,14.5\n389,1,14.0\n389,2,13.5\n389,3,13.0\n389,4,12.5\n389,5,12.0\n389,6,11.5\n389,7,11.0\n389,8,10.5\n389,9,10.0\n389,10,9.5\n389,11,9.0\n389,12,8.5\n389,13,8.0\n389,14,7.5\n389,15,8.0\n389,16,8.5\n389,17,9.0\n389,18,9.5\n389,19,10.0\n389,20,10.5\n389,21,11.0\n389,22,11.5\n389,23,12.0\n389,24,12.5\n389,25,14.0\n389,26,13.5\n389,27,13.0\n389,28,12.5\n389,29,12.0\n389,30,11.5\n389,31,11.0\n389,32,10.5\n389,33,10.0\n389,34,9.5\n389,35,9.0\n389,36,8.5\n389,37,8.0\n389,38,7.5\n389,39,7.0\n389,40,7.5\n389,41,8.0\n389,42,8.5\n389,43,9.0\n389,44,9.5\n389,45,10.0\n389,46,10.5\n389,47,11.0\n389,48,11.5\n389,49,12.0\n389,50,13.5\n389,51,13.0\n389,52,12.5\n389,53,12.0\n389,54,11.5\n389,55,11.0\n389,56,10.5\n389,57,10.0\n389,58,9.5\n389,59,9.0\n389,60,8.5\n389,61,8.0\n389,62,7.5\n389,63,7.0\n389,64,6.5\n389,65,7.0\n389,66,7.5\n389,67,8.0\n389,68,8.5\n389,69,9.0\n389,70,9.5\n389,71,10.0\n389,72,10.5\n389,73,11.0\n389,74,11.5\n389,75,13.0\n389,76,12.5\n389,77,12.0\n389,78,11.5\n389,79,11.0\n389,80,10.5\n389,81,10.0\n389,82,9.5\n389,83,9.0\n389,84,8.5\n389,85,8.0\n389,86,7.5\n389,87,7.0\n389,88,6.5\n389,89,6.0\n389,90,6.5\n389,91,7.0\n389,92,7.5\n389,93,8.0\n389,94,8.5\n389,95,9.0\n389,96,9.5\n389,97,10.0\n389,98,10.5\n389,99,11.0\n389,100,12.5\n389,101,12.0\n389,102,11.5\n389,103,11.0\n389,104,10.5\n389,105,10.0\n389,106,9.5\n389,107,9.0\n389,108,8.5\n389,109,8.0\n389,110,7.5\n389,111,7.0\n389,112,6.5\n389,113,6.0\n389,114,5.5\n389,115,6.0\n389,116,6.5\n389,117,7.0\n389,118,7.5\n389,119,8.0\n389,120,8.5\n389,121,9.0\n389,122,9.5\n389,123,10.0\n389,124,10.5\n389,125,12.0\n389,126,11.5\n389,127,11.0\n389,128,10.5\n389,129,10.0\n389,130,9.5\n389,131,9.0\n389,132,8.5\n389,133,8.0\n389,134,7.5\n389,135,7.0\n389,136,6.5\n389,137,6.0\n389,138,5.5\n389,139,5.0\n389,140,5.5\n389,141,6.0\n389,142,6.5\n389,143,7.0\n389,144,7.5\n389,145,8.0\n389,146,8.5\n389,147,9.0\n389,148,9.5\n389,149,10.0\n389,150,11.5\n389,151,11.0\n389,152,10.5\n389,153,10.0\n389,154,9.5\n389,155,9.0\n389,156,8.5\n389,157,8.0\n389,158,7.5\n389,159,7.0\n389,160,6.5\n389,161,6.0\n389,162,5.5\n389,163,5.0\n389,164,4.5\n389,165,5.0\n389,166,5.5\n389,167,6.0\n389,168,6.5\n389,169,7.0\n389,170,7.5\n389,171,8.0\n389,172,8.5\n389,173,9.0\n389,174,9.5\n389,175,11.0\n389,176,10.5\n389,177,10.0\n389,178,9.5\n389,179,9.0\n389,180,8.5\n389,181,8.0\n389,182,7.5\n389,183,7.0\n389,184,6.5\n389,185,6.0\n389,186,5.5\n389,187,5.0\n389,188,4.5\n389,189,4.0\n389,190,4.5\n389,191,5.0\n389,192,5.5\n389,193,6.0\n389,194,6.5\n389,195,7.0\n389,196,7.5\n389,197,8.0\n389,198,8.5\n389,199,9.0\n389,200,10.5\n389,201,10.0\n389,202,9.5\n389,203,9.0\n389,204,8.5\n389,205,8.0\n389,206,7.5\n389,207,7.0\n389,208,6.5\n389,209,6.0\n389,210,5.5\n389,211,5.0\n389,212,4.5\n389,213,4.0\n389,214,3.5\n389,215,4.0\n389,216,4.5\n389,217,5.0\n389,218,5.5\n389,219,6.0\n389,220,6.5\n389,221,7.0\n389,222,7.5\n389,223,8.0\n389,224,8.5\n389,225,10.0\n389,226,9.5\n389,227,9.0\n389,228,8.5\n389,229,8.0\n389,230,7.5\n389,231,7.0\n389,232,6.5\n389,233,6.0\n389,234,5.5\n389,235,5.0\n389,236,4.5\n389,237,4.0\n389,238,3.5\n389,239,3.0\n389,240,3.5\n389,241,4.0\n389,242,4.5\n389,243,5.0\n389,244,5.5\n389,245,6.0\n389,246,6.5\n389,247,7.0\n389,248,7.5\n389,249,8.0\n389,250,9.5\n389,251,9.0\n389,252,8.5\n389,253,8.0\n389,254,7.5\n389,255,7.0\n389,256,6.5\n389,257,6.0\n389,258,5.5\n389,259,5.0\n389,260,4.5\n389,261,4.0\n389,262,3.5\n389,263,3.0\n389,264,2.5\n389,265,3.0\n389,266,3.5\n389,267,4.0\n389,268,4.5\n389,269,5.0\n389,270,5.5\n389,271,6.0\n389,272,6.5\n389,273,7.0\n389,274,7.5\n389,275,9.0\n389,276,8.5\n389,277,8.0\n389,278,7.5\n389,279,7.0\n389,280,6.5\n389,281,6.0\n389,282,5.5\n389,283,5.0\n389,284,4.5\n389,285,4.0\n389,286,3.5\n389,287,3.0\n389,288,2.5\n389,289,2.0\n389,290,2.5\n389,291,3.0\n389,292,3.5\n389,293,4.0\n389,294,4.5\n389,295,5.0\n389,296,5.5\n389,297,6.0\n389,298,6.5\n389,299,7.0\n389,300,8.5\n389,301,8.0\n389,302,7.5\n389,303,7.0\n389,304,6.5\n389,305,6.0\n389,306,5.5\n389,307,5.0\n389,308,4.5\n389,309,4.0\n389,310,3.5\n389,311,3.0\n389,312,2.5\n389,313,2.0\n389,314,1.5\n389,315,2.0\n389,316,2.5\n389,317,3.0\n389,318,3.5\n389,319,4.0\n389,320,4.5\n389,321,5.0\n389,322,5.5\n389,323,6.0\n389,324,6.5\n389,325,8.0\n389,326,7.5\n389,327,7.0\n389,328,6.5\n389,329,6.0\n389,330,5.5\n389,331,5.0\n389,332,4.5\n389,333,4.0\n389,334,3.5\n389,335,3.0\n389,336,2.5\n389,337,2.0\n389,338,1.5\n389,339,1.0\n389,340,1.5\n389,341,2.0\n389,342,2.5\n389,343,3.0\n389,344,3.5\n389,345,4.0\n389,346,4.5\n389,347,5.0\n389,348,5.5\n389,349,6.0\n389,350,7.5\n389,351,7.0\n389,352,6.5\n389,353,6.0\n389,354,5.5\n389,355,5.0\n389,356,4.5\n389,357,4.0\n389,358,3.5\n389,359,3.0\n389,360,2.5\n389,361,2.0\n389,362,1.5\n389,363,1.0\n389,364,0.5\n389,365,1.0\n389,366,1.5\n389,367,2.0\n389,368,2.5\n389,369,3.0\n389,370,3.5\n389,371,4.0\n389,372,4.5\n389,373,5.0\n389,374,5.5\n389,375,7.0\n389,376,6.5\n389,377,6.0\n389,378,5.5\n389,379,5.0\n389,380,4.5\n389,381,4.0\n389,382,3.5\n389,383,3.0\n389,384,2.5\n389,385,2.0\n389,386,1.5\n389,387,1.0\n389,388,0.5\n389,389,0\n389,390,0.5\n389,391,1.0\n389,392,1.5\n389,393,2.0\n389,394,2.5\n389,395,3.0\n389,396,3.5\n389,397,4.0\n389,398,4.5\n389,399,5.0\n389,400,7.5\n389,401,7.0\n389,402,6.5\n389,403,6.0\n389,404,5.5\n389,405,5.0\n389,406,4.5\n389,407,4.0\n389,408,3.5\n389,409,3.0\n389,410,2.5\n389,411,2.0\n389,412,1.5\n389,413,1.0\n389,414,0.5\n389,415,1.0\n389,416,1.5\n389,417,2.0\n389,418,2.5\n389,419,3.0\n389,420,3.5\n389,421,4.0\n389,422,4.5\n389,423,5.0\n389,424,5.5\n389,425,8.0\n389,426,7.5\n389,427,7.0\n389,428,6.5\n389,429,6.0\n389,430,5.5\n389,431,5.0\n389,432,4.5\n389,433,4.0\n389,434,3.5\n389,435,3.0\n389,436,2.5\n389,437,2.0\n389,438,1.5\n389,439,1.0\n389,440,1.5\n389,441,2.0\n389,442,2.5\n389,443,3.0\n389,444,3.5\n389,445,4.0\n389,446,4.5\n389,447,5.0\n389,448,5.5\n389,449,6.0\n389,450,8.5\n389,451,8.0\n389,452,7.5\n389,453,7.0\n389,454,6.5\n389,455,6.0\n389,456,5.5\n389,457,5.0\n389,458,4.5\n389,459,4.0\n389,460,3.5\n389,461,3.0\n389,462,2.5\n389,463,2.0\n389,464,1.5\n389,465,2.0\n389,466,2.5\n389,467,3.0\n389,468,3.5\n389,469,4.0\n389,470,4.5\n389,471,5.0\n389,472,5.5\n389,473,6.0\n389,474,6.5\n389,475,9.0\n389,476,8.5\n389,477,8.0\n389,478,7.5\n389,479,7.0\n389,480,6.5\n389,481,6.0\n389,482,5.5\n389,483,5.0\n389,484,4.5\n389,485,4.0\n389,486,3.5\n389,487,3.0\n389,488,2.5\n389,489,2.0\n389,490,2.5\n389,491,3.0\n389,492,3.5\n389,493,4.0\n389,494,4.5\n389,495,5.0\n389,496,5.5\n389,497,6.0\n389,498,6.5\n389,499,7.0\n389,500,9.5\n389,501,9.0\n389,502,8.5\n389,503,8.0\n389,504,7.5\n389,505,7.0\n389,506,6.5\n389,507,6.0\n389,508,5.5\n389,509,5.0\n389,510,4.5\n389,511,4.0\n389,512,3.5\n389,513,3.0\n389,514,2.5\n389,515,3.0\n389,516,3.5\n389,517,4.0\n389,518,4.5\n389,519,5.0\n389,520,5.5\n389,521,6.0\n389,522,6.5\n389,523,7.0\n389,524,7.5\n389,525,10.0\n389,526,9.5\n389,527,9.0\n389,528,8.5\n389,529,8.0\n389,530,7.5\n389,531,7.0\n389,532,6.5\n389,533,6.0\n389,534,5.5\n389,535,5.0\n389,536,4.5\n389,537,4.0\n389,538,3.5\n389,539,3.0\n389,540,3.5\n389,541,4.0\n389,542,4.5\n389,543,5.0\n389,544,5.5\n389,545,6.0\n389,546,6.5\n389,547,7.0\n389,548,7.5\n389,549,8.0\n389,550,10.5\n389,551,10.0\n389,552,9.5\n389,553,9.0\n389,554,8.5\n389,555,8.0\n389,556,7.5\n389,557,7.0\n389,558,6.5\n389,559,6.0\n389,560,5.5\n389,561,5.0\n389,562,4.5\n389,563,4.0\n389,564,3.5\n389,565,4.0\n389,566,4.5\n389,567,5.0\n389,568,5.5\n389,569,6.0\n389,570,6.5\n389,571,7.0\n389,572,7.5\n389,573,8.0\n389,574,8.5\n389,575,11.0\n389,576,10.5\n389,577,10.0\n389,578,9.5\n389,579,9.0\n389,580,8.5\n389,581,8.0\n389,582,7.5\n389,583,7.0\n389,584,6.5\n389,585,6.0\n389,586,5.5\n389,587,5.0\n389,588,4.5\n389,589,4.0\n389,590,4.5\n389,591,5.0\n389,592,5.5\n389,593,6.0\n389,594,6.5\n389,595,7.0\n389,596,7.5\n389,597,8.0\n389,598,8.5\n389,599,9.0\n389,600,11.5\n389,601,11.0\n389,602,10.5\n389,603,10.0\n389,604,9.5\n389,605,9.0\n389,606,8.5\n389,607,8.0\n389,608,7.5\n389,609,7.0\n389,610,6.5\n389,611,6.0\n389,612,5.5\n389,613,5.0\n389,614,4.5\n389,615,5.0\n389,616,5.5\n389,617,6.0\n389,618,6.5\n389,619,7.0\n389,620,7.5\n389,621,8.0\n389,622,8.5\n389,623,9.0\n389,624,9.5\n390,0,15.0\n390,1,14.5\n390,2,14.0\n390,3,13.5\n390,4,13.0\n390,5,12.5\n390,6,12.0\n390,7,11.5\n390,8,11.0\n390,9,10.5\n390,10,10.0\n390,11,9.5\n390,12,9.0\n390,13,8.5\n390,14,8.0\n390,15,7.5\n390,16,8.0\n390,17,8.5\n390,18,9.0\n390,19,9.5\n390,20,10.0\n390,21,10.5\n390,22,11.0\n390,23,11.5\n390,24,12.0\n390,25,14.5\n390,26,14.0\n390,27,13.5\n390,28,13.0\n390,29,12.5\n390,30,12.0\n390,31,11.5\n390,32,11.0\n390,33,10.5\n390,34,10.0\n390,35,9.5\n390,36,9.0\n390,37,8.5\n390,38,8.0\n390,39,7.5\n390,40,7.0\n390,41,7.5\n390,42,8.0\n390,43,8.5\n390,44,9.0\n390,45,9.5\n390,46,10.0\n390,47,10.5\n390,48,11.0\n390,49,11.5\n390,50,14.0\n390,51,13.5\n390,52,13.0\n390,53,12.5\n390,54,12.0\n390,55,11.5\n390,56,11.0\n390,57,10.5\n390,58,10.0\n390,59,9.5\n390,60,9.0\n390,61,8.5\n390,62,8.0\n390,63,7.5\n390,64,7.0\n390,65,6.5\n390,66,7.0\n390,67,7.5\n390,68,8.0\n390,69,8.5\n390,70,9.0\n390,71,9.5\n390,72,10.0\n390,73,10.5\n390,74,11.0\n390,75,13.5\n390,76,13.0\n390,77,12.5\n390,78,12.0\n390,79,11.5\n390,80,11.0\n390,81,10.5\n390,82,10.0\n390,83,9.5\n390,84,9.0\n390,85,8.5\n390,86,8.0\n390,87,7.5\n390,88,7.0\n390,89,6.5\n390,90,6.0\n390,91,6.5\n390,92,7.0\n390,93,7.5\n390,94,8.0\n390,95,8.5\n390,96,9.0\n390,97,9.5\n390,98,10.0\n390,99,10.5\n390,100,13.0\n390,101,12.5\n390,102,12.0\n390,103,11.5\n390,104,11.0\n390,105,10.5\n390,106,10.0\n390,107,9.5\n390,108,9.0\n390,109,8.5\n390,110,8.0\n390,111,7.5\n390,112,7.0\n390,113,6.5\n390,114,6.0\n390,115,5.5\n390,116,6.0\n390,117,6.5\n390,118,7.0\n390,119,7.5\n390,120,8.0\n390,121,8.5\n390,122,9.0\n390,123,9.5\n390,124,10.0\n390,125,12.5\n390,126,12.0\n390,127,11.5\n390,128,11.0\n390,129,10.5\n390,130,10.0\n390,131,9.5\n390,132,9.0\n390,133,8.5\n390,134,8.0\n390,135,7.5\n390,136,7.0\n390,137,6.5\n390,138,6.0\n390,139,5.5\n390,140,5.0\n390,141,5.5\n390,142,6.0\n390,143,6.5\n390,144,7.0\n390,145,7.5\n390,146,8.0\n390,147,8.5\n390,148,9.0\n390,149,9.5\n390,150,12.0\n390,151,11.5\n390,152,11.0\n390,153,10.5\n390,154,10.0\n390,155,9.5\n390,156,9.0\n390,157,8.5\n390,158,8.0\n390,159,7.5\n390,160,7.0\n390,161,6.5\n390,162,6.0\n390,163,5.5\n390,164,5.0\n390,165,4.5\n390,166,5.0\n390,167,5.5\n390,168,6.0\n390,169,6.5\n390,170,7.0\n390,171,7.5\n390,172,8.0\n390,173,8.5\n390,174,9.0\n390,175,11.5\n390,176,11.0\n390,177,10.5\n390,178,10.0\n390,179,9.5\n390,180,9.0\n390,181,8.5\n390,182,8.0\n390,183,7.5\n390,184,7.0\n390,185,6.5\n390,186,6.0\n390,187,5.5\n390,188,5.0\n390,189,4.5\n390,190,4.0\n390,191,4.5\n390,192,5.0\n390,193,5.5\n390,194,6.0\n390,195,6.5\n390,196,7.0\n390,197,7.5\n390,198,8.0\n390,199,8.5\n390,200,11.0\n390,201,10.5\n390,202,10.0\n390,203,9.5\n390,204,9.0\n390,205,8.5\n390,206,8.0\n390,207,7.5\n390,208,7.0\n390,209,6.5\n390,210,6.0\n390,211,5.5\n390,212,5.0\n390,213,4.5\n390,214,4.0\n390,215,3.5\n390,216,4.0\n390,217,4.5\n390,218,5.0\n390,219,5.5\n390,220,6.0\n390,221,6.5\n390,222,7.0\n390,223,7.5\n390,224,8.0\n390,225,10.5\n390,226,10.0\n390,227,9.5\n390,228,9.0\n390,229,8.5\n390,230,8.0\n390,231,7.5\n390,232,7.0\n390,233,6.5\n390,234,6.0\n390,235,5.5\n390,236,5.0\n390,237,4.5\n390,238,4.0\n390,239,3.5\n390,240,3.0\n390,241,3.5\n390,242,4.0\n390,243,4.5\n390,244,5.0\n390,245,5.5\n390,246,6.0\n390,247,6.5\n390,248,7.0\n390,249,7.5\n390,250,10.0\n390,251,9.5\n390,252,9.0\n390,253,8.5\n390,254,8.0\n390,255,7.5\n390,256,7.0\n390,257,6.5\n390,258,6.0\n390,259,5.5\n390,260,5.0\n390,261,4.5\n390,262,4.0\n390,263,3.5\n390,264,3.0\n390,265,2.5\n390,266,3.0\n390,267,3.5\n390,268,4.0\n390,269,4.5\n390,270,5.0\n390,271,5.5\n390,272,6.0\n390,273,6.5\n390,274,7.0\n390,275,9.5\n390,276,9.0\n390,277,8.5\n390,278,8.0\n390,279,7.5\n390,280,7.0\n390,281,6.5\n390,282,6.0\n390,283,5.5\n390,284,5.0\n390,285,4.5\n390,286,4.0\n390,287,3.5\n390,288,3.0\n390,289,2.5\n390,290,2.0\n390,291,2.5\n390,292,3.0\n390,293,3.5\n390,294,4.0\n390,295,4.5\n390,296,5.0\n390,297,5.5\n390,298,6.0\n390,299,6.5\n390,300,9.0\n390,301,8.5\n390,302,8.0\n390,303,7.5\n390,304,7.0\n390,305,6.5\n390,306,6.0\n390,307,5.5\n390,308,5.0\n390,309,4.5\n390,310,4.0\n390,311,3.5\n390,312,3.0\n390,313,2.5\n390,314,2.0\n390,315,1.5\n390,316,2.0\n390,317,2.5\n390,318,3.0\n390,319,3.5\n390,320,4.0\n390,321,4.5\n390,322,5.0\n390,323,5.5\n390,324,6.0\n390,325,8.5\n390,326,8.0\n390,327,7.5\n390,328,7.0\n390,329,6.5\n390,330,6.0\n390,331,5.5\n390,332,5.0\n390,333,4.5\n390,334,4.0\n390,335,3.5\n390,336,3.0\n390,337,2.5\n390,338,2.0\n390,339,1.5\n390,340,1.0\n390,341,1.5\n390,342,2.0\n390,343,2.5\n390,344,3.0\n390,345,3.5\n390,346,4.0\n390,347,4.5\n390,348,5.0\n390,349,5.5\n390,350,8.0\n390,351,7.5\n390,352,7.0\n390,353,6.5\n390,354,6.0\n390,355,5.5\n390,356,5.0\n390,357,4.5\n390,358,4.0\n390,359,3.5\n390,360,3.0\n390,361,2.5\n390,362,2.0\n390,363,1.5\n390,364,1.0\n390,365,0.5\n390,366,1.0\n390,367,1.5\n390,368,2.0\n390,369,2.5\n390,370,3.0\n390,371,3.5\n390,372,4.0\n390,373,4.5\n390,374,5.0\n390,375,7.5\n390,376,7.0\n390,377,6.5\n390,378,6.0\n390,379,5.5\n390,380,5.0\n390,381,4.5\n390,382,4.0\n390,383,3.5\n390,384,3.0\n390,385,2.5\n390,386,2.0\n390,387,1.5\n390,388,1.0\n390,389,0.5\n390,390,0\n390,391,0.5\n390,392,1.0\n390,393,1.5\n390,394,2.0\n390,395,2.5\n390,396,3.0\n390,397,3.5\n390,398,4.0\n390,399,4.5\n390,400,8.0\n390,401,7.5\n390,402,7.0\n390,403,6.5\n390,404,6.0\n390,405,5.5\n390,406,5.0\n390,407,4.5\n390,408,4.0\n390,409,3.5\n390,410,3.0\n390,411,2.5\n390,412,2.0\n390,413,1.5\n390,414,1.0\n390,415,0.5\n390,416,1.0\n390,417,1.5\n390,418,2.0\n390,419,2.5\n390,420,3.0\n390,421,3.5\n390,422,4.0\n390,423,4.5\n390,424,5.0\n390,425,8.5\n390,426,8.0\n390,427,7.5\n390,428,7.0\n390,429,6.5\n390,430,6.0\n390,431,5.5\n390,432,5.0\n390,433,4.5\n390,434,4.0\n390,435,3.5\n390,436,3.0\n390,437,2.5\n390,438,2.0\n390,439,1.5\n390,440,1.0\n390,441,1.5\n390,442,2.0\n390,443,2.5\n390,444,3.0\n390,445,3.5\n390,446,4.0\n390,447,4.5\n390,448,5.0\n390,449,5.5\n390,450,9.0\n390,451,8.5\n390,452,8.0\n390,453,7.5\n390,454,7.0\n390,455,6.5\n390,456,6.0\n390,457,5.5\n390,458,5.0\n390,459,4.5\n390,460,4.0\n390,461,3.5\n390,462,3.0\n390,463,2.5\n390,464,2.0\n390,465,1.5\n390,466,2.0\n390,467,2.5\n390,468,3.0\n390,469,3.5\n390,470,4.0\n390,471,4.5\n390,472,5.0\n390,473,5.5\n390,474,6.0\n390,475,9.5\n390,476,9.0\n390,477,8.5\n390,478,8.0\n390,479,7.5\n390,480,7.0\n390,481,6.5\n390,482,6.0\n390,483,5.5\n390,484,5.0\n390,485,4.5\n390,486,4.0\n390,487,3.5\n390,488,3.0\n390,489,2.5\n390,490,2.0\n390,491,2.5\n390,492,3.0\n390,493,3.5\n390,494,4.0\n390,495,4.5\n390,496,5.0\n390,497,5.5\n390,498,6.0\n390,499,6.5\n390,500,10.0\n390,501,9.5\n390,502,9.0\n390,503,8.5\n390,504,8.0\n390,505,7.5\n390,506,7.0\n390,507,6.5\n390,508,6.0\n390,509,5.5\n390,510,5.0\n390,511,4.5\n390,512,4.0\n390,513,3.5\n390,514,3.0\n390,515,2.5\n390,516,3.0\n390,517,3.5\n390,518,4.0\n390,519,4.5\n390,520,5.0\n390,521,5.5\n390,522,6.0\n390,523,6.5\n390,524,7.0\n390,525,10.5\n390,526,10.0\n390,527,9.5\n390,528,9.0\n390,529,8.5\n390,530,8.0\n390,531,7.5\n390,532,7.0\n390,533,6.5\n390,534,6.0\n390,535,5.5\n390,536,5.0\n390,537,4.5\n390,538,4.0\n390,539,3.5\n390,540,3.0\n390,541,3.5\n390,542,4.0\n390,543,4.5\n390,544,5.0\n390,545,5.5\n390,546,6.0\n390,547,6.5\n390,548,7.0\n390,549,7.5\n390,550,11.0\n390,551,10.5\n390,552,10.0\n390,553,9.5\n390,554,9.0\n390,555,8.5\n390,556,8.0\n390,557,7.5\n390,558,7.0\n390,559,6.5\n390,560,6.0\n390,561,5.5\n390,562,5.0\n390,563,4.5\n390,564,4.0\n390,565,3.5\n390,566,4.0\n390,567,4.5\n390,568,5.0\n390,569,5.5\n390,570,6.0\n390,571,6.5\n390,572,7.0\n390,573,7.5\n390,574,8.0\n390,575,11.5\n390,576,11.0\n390,577,10.5\n390,578,10.0\n390,579,9.5\n390,580,9.0\n390,581,8.5\n390,582,8.0\n390,583,7.5\n390,584,7.0\n390,585,6.5\n390,586,6.0\n390,587,5.5\n390,588,5.0\n390,589,4.5\n390,590,4.0\n390,591,4.5\n390,592,5.0\n390,593,5.5\n390,594,6.0\n390,595,6.5\n390,596,7.0\n390,597,7.5\n390,598,8.0\n390,599,8.5\n390,600,12.0\n390,601,11.5\n390,602,11.0\n390,603,10.5\n390,604,10.0\n390,605,9.5\n390,606,9.0\n390,607,8.5\n390,608,8.0\n390,609,7.5\n390,610,7.0\n390,611,6.5\n390,612,6.0\n390,613,5.5\n390,614,5.0\n390,615,4.5\n390,616,5.0\n390,617,5.5\n390,618,6.0\n390,619,6.5\n390,620,7.0\n390,621,7.5\n390,622,8.0\n390,623,8.5\n390,624,9.0\n391,0,15.5\n391,1,15.0\n391,2,14.5\n391,3,14.0\n391,4,13.5\n391,5,13.0\n391,6,12.5\n391,7,12.0\n391,8,11.5\n391,9,11.0\n391,10,10.5\n391,11,10.0\n391,12,9.5\n391,13,9.0\n391,14,8.5\n391,15,8.0\n391,16,7.5\n391,17,8.0\n391,18,8.5\n391,19,9.0\n391,20,9.5\n391,21,10.0\n391,22,10.5\n391,23,11.0\n391,24,11.5\n391,25,15.0\n391,26,14.5\n391,27,14.0\n391,28,13.5\n391,29,13.0\n391,30,12.5\n391,31,12.0\n391,32,11.5\n391,33,11.0\n391,34,10.5\n391,35,10.0\n391,36,9.5\n391,37,9.0\n391,38,8.5\n391,39,8.0\n391,40,7.5\n391,41,7.0\n391,42,7.5\n391,43,8.0\n391,44,8.5\n391,45,9.0\n391,46,9.5\n391,47,10.0\n391,48,10.5\n391,49,11.0\n391,50,14.5\n391,51,14.0\n391,52,13.5\n391,53,13.0\n391,54,12.5\n391,55,12.0\n391,56,11.5\n391,57,11.0\n391,58,10.5\n391,59,10.0\n391,60,9.5\n391,61,9.0\n391,62,8.5\n391,63,8.0\n391,64,7.5\n391,65,7.0\n391,66,6.5\n391,67,7.0\n391,68,7.5\n391,69,8.0\n391,70,8.5\n391,71,9.0\n391,72,9.5\n391,73,10.0\n391,74,10.5\n391,75,14.0\n391,76,13.5\n391,77,13.0\n391,78,12.5\n391,79,12.0\n391,80,11.5\n391,81,11.0\n391,82,10.5\n391,83,10.0\n391,84,9.5\n391,85,9.0\n391,86,8.5\n391,87,8.0\n391,88,7.5\n391,89,7.0\n391,90,6.5\n391,91,6.0\n391,92,6.5\n391,93,7.0\n391,94,7.5\n391,95,8.0\n391,96,8.5\n391,97,9.0\n391,98,9.5\n391,99,10.0\n391,100,13.5\n391,101,13.0\n391,102,12.5\n391,103,12.0\n391,104,11.5\n391,105,11.0\n391,106,10.5\n391,107,10.0\n391,108,9.5\n391,109,9.0\n391,110,8.5\n391,111,8.0\n391,112,7.5\n391,113,7.0\n391,114,6.5\n391,115,6.0\n391,116,5.5\n391,117,6.0\n391,118,6.5\n391,119,7.0\n391,120,7.5\n391,121,8.0\n391,122,8.5\n391,123,9.0\n391,124,9.5\n391,125,13.0\n391,126,12.5\n391,127,12.0\n391,128,11.5\n391,129,11.0\n391,130,10.5\n391,131,10.0\n391,132,9.5\n391,133,9.0\n391,134,8.5\n391,135,8.0\n391,136,7.5\n391,137,7.0\n391,138,6.5\n391,139,6.0\n391,140,5.5\n391,141,5.0\n391,142,5.5\n391,143,6.0\n391,144,6.5\n391,145,7.0\n391,146,7.5\n391,147,8.0\n391,148,8.5\n391,149,9.0\n391,150,12.5\n391,151,12.0\n391,152,11.5\n391,153,11.0\n391,154,10.5\n391,155,10.0\n391,156,9.5\n391,157,9.0\n391,158,8.5\n391,159,8.0\n391,160,7.5\n391,161,7.0\n391,162,6.5\n391,163,6.0\n391,164,5.5\n391,165,5.0\n391,166,4.5\n391,167,5.0\n391,168,5.5\n391,169,6.0\n391,170,6.5\n391,171,7.0\n391,172,7.5\n391,173,8.0\n391,174,8.5\n391,175,12.0\n391,176,11.5\n391,177,11.0\n391,178,10.5\n391,179,10.0\n391,180,9.5\n391,181,9.0\n391,182,8.5\n391,183,8.0\n391,184,7.5\n391,185,7.0\n391,186,6.5\n391,187,6.0\n391,188,5.5\n391,189,5.0\n391,190,4.5\n391,191,4.0\n391,192,4.5\n391,193,5.0\n391,194,5.5\n391,195,6.0\n391,196,6.5\n391,197,7.0\n391,198,7.5\n391,199,8.0\n391,200,11.5\n391,201,11.0\n391,202,10.5\n391,203,10.0\n391,204,9.5\n391,205,9.0\n391,206,8.5\n391,207,8.0\n391,208,7.5\n391,209,7.0\n391,210,6.5\n391,211,6.0\n391,212,5.5\n391,213,5.0\n391,214,4.5\n391,215,4.0\n391,216,3.5\n391,217,4.0\n391,218,4.5\n391,219,5.0\n391,220,5.5\n391,221,6.0\n391,222,6.5\n391,223,7.0\n391,224,7.5\n391,225,11.0\n391,226,10.5\n391,227,10.0\n391,228,9.5\n391,229,9.0\n391,230,8.5\n391,231,8.0\n391,232,7.5\n391,233,7.0\n391,234,6.5\n391,235,6.0\n391,236,5.5\n391,237,5.0\n391,238,4.5\n391,239,4.0\n391,240,3.5\n391,241,3.0\n391,242,3.5\n391,243,4.0\n391,244,4.5\n391,245,5.0\n391,246,5.5\n391,247,6.0\n391,248,6.5\n391,249,7.0\n391,250,10.5\n391,251,10.0\n391,252,9.5\n391,253,9.0\n391,254,8.5\n391,255,8.0\n391,256,7.5\n391,257,7.0\n391,258,6.5\n391,259,6.0\n391,260,5.5\n391,261,5.0\n391,262,4.5\n391,263,4.0\n391,264,3.5\n391,265,3.0\n391,266,2.5\n391,267,3.0\n391,268,3.5\n391,269,4.0\n391,270,4.5\n391,271,5.0\n391,272,5.5\n391,273,6.0\n391,274,6.5\n391,275,10.0\n391,276,9.5\n391,277,9.0\n391,278,8.5\n391,279,8.0\n391,280,7.5\n391,281,7.0\n391,282,6.5\n391,283,6.0\n391,284,5.5\n391,285,5.0\n391,286,4.5\n391,287,4.0\n391,288,3.5\n391,289,3.0\n391,290,2.5\n391,291,2.0\n391,292,2.5\n391,293,3.0\n391,294,3.5\n391,295,4.0\n391,296,4.5\n391,297,5.0\n391,298,5.5\n391,299,6.0\n391,300,9.5\n391,301,9.0\n391,302,8.5\n391,303,8.0\n391,304,7.5\n391,305,7.0\n391,306,6.5\n391,307,6.0\n391,308,5.5\n391,309,5.0\n391,310,4.5\n391,311,4.0\n391,312,3.5\n391,313,3.0\n391,314,2.5\n391,315,2.0\n391,316,1.5\n391,317,2.0\n391,318,2.5\n391,319,3.0\n391,320,3.5\n391,321,4.0\n391,322,4.5\n391,323,5.0\n391,324,5.5\n391,325,9.0\n391,326,8.5\n391,327,8.0\n391,328,7.5\n391,329,7.0\n391,330,6.5\n391,331,6.0\n391,332,5.5\n391,333,5.0\n391,334,4.5\n391,335,4.0\n391,336,3.5\n391,337,3.0\n391,338,2.5\n391,339,2.0\n391,340,1.5\n391,341,1.0\n391,342,1.5\n391,343,2.0\n391,344,2.5\n391,345,3.0\n391,346,3.5\n391,347,4.0\n391,348,4.5\n391,349,5.0\n391,350,8.5\n391,351,8.0\n391,352,7.5\n391,353,7.0\n391,354,6.5\n391,355,6.0\n391,356,5.5\n391,357,5.0\n391,358,4.5\n391,359,4.0\n391,360,3.5\n391,361,3.0\n391,362,2.5\n391,363,2.0\n391,364,1.5\n391,365,1.0\n391,366,0.5\n391,367,1.0\n391,368,1.5\n391,369,2.0\n391,370,2.5\n391,371,3.0\n391,372,3.5\n391,373,4.0\n391,374,4.5\n391,375,8.0\n391,376,7.5\n391,377,7.0\n391,378,6.5\n391,379,6.0\n391,380,5.5\n391,381,5.0\n391,382,4.5\n391,383,4.0\n391,384,3.5\n391,385,3.0\n391,386,2.5\n391,387,2.0\n391,388,1.5\n391,389,1.0\n391,390,0.5\n391,391,0\n391,392,0.5\n391,393,1.0\n391,394,1.5\n391,395,2.0\n391,396,2.5\n391,397,3.0\n391,398,3.5\n391,399,4.0\n391,400,8.5\n391,401,8.0\n391,402,7.5\n391,403,7.0\n391,404,6.5\n391,405,6.0\n391,406,5.5\n391,407,5.0\n391,408,4.5\n391,409,4.0\n391,410,3.5\n391,411,3.0\n391,412,2.5\n391,413,2.0\n391,414,1.5\n391,415,1.0\n391,416,0.5\n391,417,1.0\n391,418,1.5\n391,419,2.0\n391,420,2.5\n391,421,3.0\n391,422,3.5\n391,423,4.0\n391,424,4.5\n391,425,9.0\n391,426,8.5\n391,427,8.0\n391,428,7.5\n391,429,7.0\n391,430,6.5\n391,431,6.0\n391,432,5.5\n391,433,5.0\n391,434,4.5\n391,435,4.0\n391,436,3.5\n391,437,3.0\n391,438,2.5\n391,439,2.0\n391,440,1.5\n391,441,1.0\n391,442,1.5\n391,443,2.0\n391,444,2.5\n391,445,3.0\n391,446,3.5\n391,447,4.0\n391,448,4.5\n391,449,5.0\n391,450,9.5\n391,451,9.0\n391,452,8.5\n391,453,8.0\n391,454,7.5\n391,455,7.0\n391,456,6.5\n391,457,6.0\n391,458,5.5\n391,459,5.0\n391,460,4.5\n391,461,4.0\n391,462,3.5\n391,463,3.0\n391,464,2.5\n391,465,2.0\n391,466,1.5\n391,467,2.0\n391,468,2.5\n391,469,3.0\n391,470,3.5\n391,471,4.0\n391,472,4.5\n391,473,5.0\n391,474,5.5\n391,475,10.0\n391,476,9.5\n391,477,9.0\n391,478,8.5\n391,479,8.0\n391,480,7.5\n391,481,7.0\n391,482,6.5\n391,483,6.0\n391,484,5.5\n391,485,5.0\n391,486,4.5\n391,487,4.0\n391,488,3.5\n391,489,3.0\n391,490,2.5\n391,491,2.0\n391,492,2.5\n391,493,3.0\n391,494,3.5\n391,495,4.0\n391,496,4.5\n391,497,5.0\n391,498,5.5\n391,499,6.0\n391,500,10.5\n391,501,10.0\n391,502,9.5\n391,503,9.0\n391,504,8.5\n391,505,8.0\n391,506,7.5\n391,507,7.0\n391,508,6.5\n391,509,6.0\n391,510,5.5\n391,511,5.0\n391,512,4.5\n391,513,4.0\n391,514,3.5\n391,515,3.0\n391,516,2.5\n391,517,3.0\n391,518,3.5\n391,519,4.0\n391,520,4.5\n391,521,5.0\n391,522,5.5\n391,523,6.0\n391,524,6.5\n391,525,11.0\n391,526,10.5\n391,527,10.0\n391,528,9.5\n391,529,9.0\n391,530,8.5\n391,531,8.0\n391,532,7.5\n391,533,7.0\n391,534,6.5\n391,535,6.0\n391,536,5.5\n391,537,5.0\n391,538,4.5\n391,539,4.0\n391,540,3.5\n391,541,3.0\n391,542,3.5\n391,543,4.0\n391,544,4.5\n391,545,5.0\n391,546,5.5\n391,547,6.0\n391,548,6.5\n391,549,7.0\n391,550,11.5\n391,551,11.0\n391,552,10.5\n391,553,10.0\n391,554,9.5\n391,555,9.0\n391,556,8.5\n391,557,8.0\n391,558,7.5\n391,559,7.0\n391,560,6.5\n391,561,6.0\n391,562,5.5\n391,563,5.0\n391,564,4.5\n391,565,4.0\n391,566,3.5\n391,567,4.0\n391,568,4.5\n391,569,5.0\n391,570,5.5\n391,571,6.0\n391,572,6.5\n391,573,7.0\n391,574,7.5\n391,575,12.0\n391,576,11.5\n391,577,11.0\n391,578,10.5\n391,579,10.0\n391,580,9.5\n391,581,9.0\n391,582,8.5\n391,583,8.0\n391,584,7.5\n391,585,7.0\n391,586,6.5\n391,587,6.0\n391,588,5.5\n391,589,5.0\n391,590,4.5\n391,591,4.0\n391,592,4.5\n391,593,5.0\n391,594,5.5\n391,595,6.0\n391,596,6.5\n391,597,7.0\n391,598,7.5\n391,599,8.0\n391,600,12.5\n391,601,12.0\n391,602,11.5\n391,603,11.0\n391,604,10.5\n391,605,10.0\n391,606,9.5\n391,607,9.0\n391,608,8.5\n391,609,8.0\n391,610,7.5\n391,611,7.0\n391,612,6.5\n391,613,6.0\n391,614,5.5\n391,615,5.0\n391,616,4.5\n391,617,5.0\n391,618,5.5\n391,619,6.0\n391,620,6.5\n391,621,7.0\n391,622,7.5\n391,623,8.0\n391,624,8.5\n392,0,16.0\n392,1,15.5\n392,2,15.0\n392,3,14.5\n392,4,14.0\n392,5,13.5\n392,6,13.0\n392,7,12.5\n392,8,12.0\n392,9,11.5\n392,10,11.0\n392,11,10.5\n392,12,10.0\n392,13,9.5\n392,14,9.0\n392,15,8.5\n392,16,8.0\n392,17,7.5\n392,18,8.0\n392,19,8.5\n392,20,9.0\n392,21,9.5\n392,22,10.0\n392,23,10.5\n392,24,11.0\n392,25,15.5\n392,26,15.0\n392,27,14.5\n392,28,14.0\n392,29,13.5\n392,30,13.0\n392,31,12.5\n392,32,12.0\n392,33,11.5\n392,34,11.0\n392,35,10.5\n392,36,10.0\n392,37,9.5\n392,38,9.0\n392,39,8.5\n392,40,8.0\n392,41,7.5\n392,42,7.0\n392,43,7.5\n392,44,8.0\n392,45,8.5\n392,46,9.0\n392,47,9.5\n392,48,10.0\n392,49,10.5\n392,50,15.0\n392,51,14.5\n392,52,14.0\n392,53,13.5\n392,54,13.0\n392,55,12.5\n392,56,12.0\n392,57,11.5\n392,58,11.0\n392,59,10.5\n392,60,10.0\n392,61,9.5\n392,62,9.0\n392,63,8.5\n392,64,8.0\n392,65,7.5\n392,66,7.0\n392,67,6.5\n392,68,7.0\n392,69,7.5\n392,70,8.0\n392,71,8.5\n392,72,9.0\n392,73,9.5\n392,74,10.0\n392,75,14.5\n392,76,14.0\n392,77,13.5\n392,78,13.0\n392,79,12.5\n392,80,12.0\n392,81,11.5\n392,82,11.0\n392,83,10.5\n392,84,10.0\n392,85,9.5\n392,86,9.0\n392,87,8.5\n392,88,8.0\n392,89,7.5\n392,90,7.0\n392,91,6.5\n392,92,6.0\n392,93,6.5\n392,94,7.0\n392,95,7.5\n392,96,8.0\n392,97,8.5\n392,98,9.0\n392,99,9.5\n392,100,14.0\n392,101,13.5\n392,102,13.0\n392,103,12.5\n392,104,12.0\n392,105,11.5\n392,106,11.0\n392,107,10.5\n392,108,10.0\n392,109,9.5\n392,110,9.0\n392,111,8.5\n392,112,8.0\n392,113,7.5\n392,114,7.0\n392,115,6.5\n392,116,6.0\n392,117,5.5\n392,118,6.0\n392,119,6.5\n392,120,7.0\n392,121,7.5\n392,122,8.0\n392,123,8.5\n392,124,9.0\n392,125,13.5\n392,126,13.0\n392,127,12.5\n392,128,12.0\n392,129,11.5\n392,130,11.0\n392,131,10.5\n392,132,10.0\n392,133,9.5\n392,134,9.0\n392,135,8.5\n392,136,8.0\n392,137,7.5\n392,138,7.0\n392,139,6.5\n392,140,6.0\n392,141,5.5\n392,142,5.0\n392,143,5.5\n392,144,6.0\n392,145,6.5\n392,146,7.0\n392,147,7.5\n392,148,8.0\n392,149,8.5\n392,150,13.0\n392,151,12.5\n392,152,12.0\n392,153,11.5\n392,154,11.0\n392,155,10.5\n392,156,10.0\n392,157,9.5\n392,158,9.0\n392,159,8.5\n392,160,8.0\n392,161,7.5\n392,162,7.0\n392,163,6.5\n392,164,6.0\n392,165,5.5\n392,166,5.0\n392,167,4.5\n392,168,5.0\n392,169,5.5\n392,170,6.0\n392,171,6.5\n392,172,7.0\n392,173,7.5\n392,174,8.0\n392,175,12.5\n392,176,12.0\n392,177,11.5\n392,178,11.0\n392,179,10.5\n392,180,10.0\n392,181,9.5\n392,182,9.0\n392,183,8.5\n392,184,8.0\n392,185,7.5\n392,186,7.0\n392,187,6.5\n392,188,6.0\n392,189,5.5\n392,190,5.0\n392,191,4.5\n392,192,4.0\n392,193,4.5\n392,194,5.0\n392,195,5.5\n392,196,6.0\n392,197,6.5\n392,198,7.0\n392,199,7.5\n392,200,12.0\n392,201,11.5\n392,202,11.0\n392,203,10.5\n392,204,10.0\n392,205,9.5\n392,206,9.0\n392,207,8.5\n392,208,8.0\n392,209,7.5\n392,210,7.0\n392,211,6.5\n392,212,6.0\n392,213,5.5\n392,214,5.0\n392,215,4.5\n392,216,4.0\n392,217,3.5\n392,218,4.0\n392,219,4.5\n392,220,5.0\n392,221,5.5\n392,222,6.0\n392,223,6.5\n392,224,7.0\n392,225,11.5\n392,226,11.0\n392,227,10.5\n392,228,10.0\n392,229,9.5\n392,230,9.0\n392,231,8.5\n392,232,8.0\n392,233,7.5\n392,234,7.0\n392,235,6.5\n392,236,6.0\n392,237,5.5\n392,238,5.0\n392,239,4.5\n392,240,4.0\n392,241,3.5\n392,242,3.0\n392,243,3.5\n392,244,4.0\n392,245,4.5\n392,246,5.0\n392,247,5.5\n392,248,6.0\n392,249,6.5\n392,250,11.0\n392,251,10.5\n392,252,10.0\n392,253,9.5\n392,254,9.0\n392,255,8.5\n392,256,8.0\n392,257,7.5\n392,258,7.0\n392,259,6.5\n392,260,6.0\n392,261,5.5\n392,262,5.0\n392,263,4.5\n392,264,4.0\n392,265,3.5\n392,266,3.0\n392,267,2.5\n392,268,3.0\n392,269,3.5\n392,270,4.0\n392,271,4.5\n392,272,5.0\n392,273,5.5\n392,274,6.0\n392,275,10.5\n392,276,10.0\n392,277,9.5\n392,278,9.0\n392,279,8.5\n392,280,8.0\n392,281,7.5\n392,282,7.0\n392,283,6.5\n392,284,6.0\n392,285,5.5\n392,286,5.0\n392,287,4.5\n392,288,4.0\n392,289,3.5\n392,290,3.0\n392,291,2.5\n392,292,2.0\n392,293,2.5\n392,294,3.0\n392,295,3.5\n392,296,4.0\n392,297,4.5\n392,298,5.0\n392,299,5.5\n392,300,10.0\n392,301,9.5\n392,302,9.0\n392,303,8.5\n392,304,8.0\n392,305,7.5\n392,306,7.0\n392,307,6.5\n392,308,6.0\n392,309,5.5\n392,310,5.0\n392,311,4.5\n392,312,4.0\n392,313,3.5\n392,314,3.0\n392,315,2.5\n392,316,2.0\n392,317,1.5\n392,318,2.0\n392,319,2.5\n392,320,3.0\n392,321,3.5\n392,322,4.0\n392,323,4.5\n392,324,5.0\n392,325,9.5\n392,326,9.0\n392,327,8.5\n392,328,8.0\n392,329,7.5\n392,330,7.0\n392,331,6.5\n392,332,6.0\n392,333,5.5\n392,334,5.0\n392,335,4.5\n392,336,4.0\n392,337,3.5\n392,338,3.0\n392,339,2.5\n392,340,2.0\n392,341,1.5\n392,342,1.0\n392,343,1.5\n392,344,2.0\n392,345,2.5\n392,346,3.0\n392,347,3.5\n392,348,4.0\n392,349,4.5\n392,350,9.0\n392,351,8.5\n392,352,8.0\n392,353,7.5\n392,354,7.0\n392,355,6.5\n392,356,6.0\n392,357,5.5\n392,358,5.0\n392,359,4.5\n392,360,4.0\n392,361,3.5\n392,362,3.0\n392,363,2.5\n392,364,2.0\n392,365,1.5\n392,366,1.0\n392,367,0.5\n392,368,1.0\n392,369,1.5\n392,370,2.0\n392,371,2.5\n392,372,3.0\n392,373,3.5\n392,374,4.0\n392,375,8.5\n392,376,8.0\n392,377,7.5\n392,378,7.0\n392,379,6.5\n392,380,6.0\n392,381,5.5\n392,382,5.0\n392,383,4.5\n392,384,4.0\n392,385,3.5\n392,386,3.0\n392,387,2.5\n392,388,2.0\n392,389,1.5\n392,390,1.0\n392,391,0.5\n392,392,0\n392,393,0.5\n392,394,1.0\n392,395,1.5\n392,396,2.0\n392,397,2.5\n392,398,3.0\n392,399,3.5\n392,400,9.0\n392,401,8.5\n392,402,8.0\n392,403,7.5\n392,404,7.0\n392,405,6.5\n392,406,6.0\n392,407,5.5\n392,408,5.0\n392,409,4.5\n392,410,4.0\n392,411,3.5\n392,412,3.0\n392,413,2.5\n392,414,2.0\n392,415,1.5\n392,416,1.0\n392,417,0.5\n392,418,1.0\n392,419,1.5\n392,420,2.0\n392,421,2.5\n392,422,3.0\n392,423,3.5\n392,424,4.0\n392,425,9.5\n392,426,9.0\n392,427,8.5\n392,428,8.0\n392,429,7.5\n392,430,7.0\n392,431,6.5\n392,432,6.0\n392,433,5.5\n392,434,5.0\n392,435,4.5\n392,436,4.0\n392,437,3.5\n392,438,3.0\n392,439,2.5\n392,440,2.0\n392,441,1.5\n392,442,1.0\n392,443,1.5\n392,444,2.0\n392,445,2.5\n392,446,3.0\n392,447,3.5\n392,448,4.0\n392,449,4.5\n392,450,10.0\n392,451,9.5\n392,452,9.0\n392,453,8.5\n392,454,8.0\n392,455,7.5\n392,456,7.0\n392,457,6.5\n392,458,6.0\n392,459,5.5\n392,460,5.0\n392,461,4.5\n392,462,4.0\n392,463,3.5\n392,464,3.0\n392,465,2.5\n392,466,2.0\n392,467,1.5\n392,468,2.0\n392,469,2.5\n392,470,3.0\n392,471,3.5\n392,472,4.0\n392,473,4.5\n392,474,5.0\n392,475,10.5\n392,476,10.0\n392,477,9.5\n392,478,9.0\n392,479,8.5\n392,480,8.0\n392,481,7.5\n392,482,7.0\n392,483,6.5\n392,484,6.0\n392,485,5.5\n392,486,5.0\n392,487,4.5\n392,488,4.0\n392,489,3.5\n392,490,3.0\n392,491,2.5\n392,492,2.0\n392,493,2.5\n392,494,3.0\n392,495,3.5\n392,496,4.0\n392,497,4.5\n392,498,5.0\n392,499,5.5\n392,500,11.0\n392,501,10.5\n392,502,10.0\n392,503,9.5\n392,504,9.0\n392,505,8.5\n392,506,8.0\n392,507,7.5\n392,508,7.0\n392,509,6.5\n392,510,6.0\n392,511,5.5\n392,512,5.0\n392,513,4.5\n392,514,4.0\n392,515,3.5\n392,516,3.0\n392,517,2.5\n392,518,3.0\n392,519,3.5\n392,520,4.0\n392,521,4.5\n392,522,5.0\n392,523,5.5\n392,524,6.0\n392,525,11.5\n392,526,11.0\n392,527,10.5\n392,528,10.0\n392,529,9.5\n392,530,9.0\n392,531,8.5\n392,532,8.0\n392,533,7.5\n392,534,7.0\n392,535,6.5\n392,536,6.0\n392,537,5.5\n392,538,5.0\n392,539,4.5\n392,540,4.0\n392,541,3.5\n392,542,3.0\n392,543,3.5\n392,544,4.0\n392,545,4.5\n392,546,5.0\n392,547,5.5\n392,548,6.0\n392,549,6.5\n392,550,12.0\n392,551,11.5\n392,552,11.0\n392,553,10.5\n392,554,10.0\n392,555,9.5\n392,556,9.0\n392,557,8.5\n392,558,8.0\n392,559,7.5\n392,560,7.0\n392,561,6.5\n392,562,6.0\n392,563,5.5\n392,564,5.0\n392,565,4.5\n392,566,4.0\n392,567,3.5\n392,568,4.0\n392,569,4.5\n392,570,5.0\n392,571,5.5\n392,572,6.0\n392,573,6.5\n392,574,7.0\n392,575,12.5\n392,576,12.0\n392,577,11.5\n392,578,11.0\n392,579,10.5\n392,580,10.0\n392,581,9.5\n392,582,9.0\n392,583,8.5\n392,584,8.0\n392,585,7.5\n392,586,7.0\n392,587,6.5\n392,588,6.0\n392,589,5.5\n392,590,5.0\n392,591,4.5\n392,592,4.0\n392,593,4.5\n392,594,5.0\n392,595,5.5\n392,596,6.0\n392,597,6.5\n392,598,7.0\n392,599,7.5\n392,600,13.0\n392,601,12.5\n392,602,12.0\n392,603,11.5\n392,604,11.0\n392,605,10.5\n392,606,10.0\n392,607,9.5\n392,608,9.0\n392,609,8.5\n392,610,8.0\n392,611,7.5\n392,612,7.0\n392,613,6.5\n392,614,6.0\n392,615,5.5\n392,616,5.0\n392,617,4.5\n392,618,5.0\n392,619,5.5\n392,620,6.0\n392,621,6.5\n392,622,7.0\n392,623,7.5\n392,624,8.0\n393,0,16.5\n393,1,16.0\n393,2,15.5\n393,3,15.0\n393,4,14.5\n393,5,14.0\n393,6,13.5\n393,7,13.0\n393,8,12.5\n393,9,12.0\n393,10,11.5\n393,11,11.0\n393,12,10.5\n393,13,10.0\n393,14,9.5\n393,15,9.0\n393,16,8.5\n393,17,8.0\n393,18,7.5\n393,19,8.0\n393,20,8.5\n393,21,9.0\n393,22,9.5\n393,23,10.0\n393,24,10.5\n393,25,16.0\n393,26,15.5\n393,27,15.0\n393,28,14.5\n393,29,14.0\n393,30,13.5\n393,31,13.0\n393,32,12.5\n393,33,12.0\n393,34,11.5\n393,35,11.0\n393,36,10.5\n393,37,10.0\n393,38,9.5\n393,39,9.0\n393,40,8.5\n393,41,8.0\n393,42,7.5\n393,43,7.0\n393,44,7.5\n393,45,8.0\n393,46,8.5\n393,47,9.0\n393,48,9.5\n393,49,10.0\n393,50,15.5\n393,51,15.0\n393,52,14.5\n393,53,14.0\n393,54,13.5\n393,55,13.0\n393,56,12.5\n393,57,12.0\n393,58,11.5\n393,59,11.0\n393,60,10.5\n393,61,10.0\n393,62,9.5\n393,63,9.0\n393,64,8.5\n393,65,8.0\n393,66,7.5\n393,67,7.0\n393,68,6.5\n393,69,7.0\n393,70,7.5\n393,71,8.0\n393,72,8.5\n393,73,9.0\n393,74,9.5\n393,75,15.0\n393,76,14.5\n393,77,14.0\n393,78,13.5\n393,79,13.0\n393,80,12.5\n393,81,12.0\n393,82,11.5\n393,83,11.0\n393,84,10.5\n393,85,10.0\n393,86,9.5\n393,87,9.0\n393,88,8.5\n393,89,8.0\n393,90,7.5\n393,91,7.0\n393,92,6.5\n393,93,6.0\n393,94,6.5\n393,95,7.0\n393,96,7.5\n393,97,8.0\n393,98,8.5\n393,99,9.0\n393,100,14.5\n393,101,14.0\n393,102,13.5\n393,103,13.0\n393,104,12.5\n393,105,12.0\n393,106,11.5\n393,107,11.0\n393,108,10.5\n393,109,10.0\n393,110,9.5\n393,111,9.0\n393,112,8.5\n393,113,8.0\n393,114,7.5\n393,115,7.0\n393,116,6.5\n393,117,6.0\n393,118,5.5\n393,119,6.0\n393,120,6.5\n393,121,7.0\n393,122,7.5\n393,123,8.0\n393,124,8.5\n393,125,14.0\n393,126,13.5\n393,127,13.0\n393,128,12.5\n393,129,12.0\n393,130,11.5\n393,131,11.0\n393,132,10.5\n393,133,10.0\n393,134,9.5\n393,135,9.0\n393,136,8.5\n393,137,8.0\n393,138,7.5\n393,139,7.0\n393,140,6.5\n393,141,6.0\n393,142,5.5\n393,143,5.0\n393,144,5.5\n393,145,6.0\n393,146,6.5\n393,147,7.0\n393,148,7.5\n393,149,8.0\n393,150,13.5\n393,151,13.0\n393,152,12.5\n393,153,12.0\n393,154,11.5\n393,155,11.0\n393,156,10.5\n393,157,10.0\n393,158,9.5\n393,159,9.0\n393,160,8.5\n393,161,8.0\n393,162,7.5\n393,163,7.0\n393,164,6.5\n393,165,6.0\n393,166,5.5\n393,167,5.0\n393,168,4.5\n393,169,5.0\n393,170,5.5\n393,171,6.0\n393,172,6.5\n393,173,7.0\n393,174,7.5\n393,175,13.0\n393,176,12.5\n393,177,12.0\n393,178,11.5\n393,179,11.0\n393,180,10.5\n393,181,10.0\n393,182,9.5\n393,183,9.0\n393,184,8.5\n393,185,8.0\n393,186,7.5\n393,187,7.0\n393,188,6.5\n393,189,6.0\n393,190,5.5\n393,191,5.0\n393,192,4.5\n393,193,4.0\n393,194,4.5\n393,195,5.0\n393,196,5.5\n393,197,6.0\n393,198,6.5\n393,199,7.0\n393,200,12.5\n393,201,12.0\n393,202,11.5\n393,203,11.0\n393,204,10.5\n393,205,10.0\n393,206,9.5\n393,207,9.0\n393,208,8.5\n393,209,8.0\n393,210,7.5\n393,211,7.0\n393,212,6.5\n393,213,6.0\n393,214,5.5\n393,215,5.0\n393,216,4.5\n393,217,4.0\n393,218,3.5\n393,219,4.0\n393,220,4.5\n393,221,5.0\n393,222,5.5\n393,223,6.0\n393,224,6.5\n393,225,12.0\n393,226,11.5\n393,227,11.0\n393,228,10.5\n393,229,10.0\n393,230,9.5\n393,231,9.0\n393,232,8.5\n393,233,8.0\n393,234,7.5\n393,235,7.0\n393,236,6.5\n393,237,6.0\n393,238,5.5\n393,239,5.0\n393,240,4.5\n393,241,4.0\n393,242,3.5\n393,243,3.0\n393,244,3.5\n393,245,4.0\n393,246,4.5\n393,247,5.0\n393,248,5.5\n393,249,6.0\n393,250,11.5\n393,251,11.0\n393,252,10.5\n393,253,10.0\n393,254,9.5\n393,255,9.0\n393,256,8.5\n393,257,8.0\n393,258,7.5\n393,259,7.0\n393,260,6.5\n393,261,6.0\n393,262,5.5\n393,263,5.0\n393,264,4.5\n393,265,4.0\n393,266,3.5\n393,267,3.0\n393,268,2.5\n393,269,3.0\n393,270,3.5\n393,271,4.0\n393,272,4.5\n393,273,5.0\n393,274,5.5\n393,275,11.0\n393,276,10.5\n393,277,10.0\n393,278,9.5\n393,279,9.0\n393,280,8.5\n393,281,8.0\n393,282,7.5\n393,283,7.0\n393,284,6.5\n393,285,6.0\n393,286,5.5\n393,287,5.0\n393,288,4.5\n393,289,4.0\n393,290,3.5\n393,291,3.0\n393,292,2.5\n393,293,2.0\n393,294,2.5\n393,295,3.0\n393,296,3.5\n393,297,4.0\n393,298,4.5\n393,299,5.0\n393,300,10.5\n393,301,10.0\n393,302,9.5\n393,303,9.0\n393,304,8.5\n393,305,8.0\n393,306,7.5\n393,307,7.0\n393,308,6.5\n393,309,6.0\n393,310,5.5\n393,311,5.0\n393,312,4.5\n393,313,4.0\n393,314,3.5\n393,315,3.0\n393,316,2.5\n393,317,2.0\n393,318,1.5\n393,319,2.0\n393,320,2.5\n393,321,3.0\n393,322,3.5\n393,323,4.0\n393,324,4.5\n393,325,10.0\n393,326,9.5\n393,327,9.0\n393,328,8.5\n393,329,8.0\n393,330,7.5\n393,331,7.0\n393,332,6.5\n393,333,6.0\n393,334,5.5\n393,335,5.0\n393,336,4.5\n393,337,4.0\n393,338,3.5\n393,339,3.0\n393,340,2.5\n393,341,2.0\n393,342,1.5\n393,343,1.0\n393,344,1.5\n393,345,2.0\n393,346,2.5\n393,347,3.0\n393,348,3.5\n393,349,4.0\n393,350,9.5\n393,351,9.0\n393,352,8.5\n393,353,8.0\n393,354,7.5\n393,355,7.0\n393,356,6.5\n393,357,6.0\n393,358,5.5\n393,359,5.0\n393,360,4.5\n393,361,4.0\n393,362,3.5\n393,363,3.0\n393,364,2.5\n393,365,2.0\n393,366,1.5\n393,367,1.0\n393,368,0.5\n393,369,1.0\n393,370,1.5\n393,371,2.0\n393,372,2.5\n393,373,3.0\n393,374,3.5\n393,375,9.0\n393,376,8.5\n393,377,8.0\n393,378,7.5\n393,379,7.0\n393,380,6.5\n393,381,6.0\n393,382,5.5\n393,383,5.0\n393,384,4.5\n393,385,4.0\n393,386,3.5\n393,387,3.0\n393,388,2.5\n393,389,2.0\n393,390,1.5\n393,391,1.0\n393,392,0.5\n393,393,0\n393,394,0.5\n393,395,1.0\n393,396,1.5\n393,397,2.0\n393,398,2.5\n393,399,3.0\n393,400,9.5\n393,401,9.0\n393,402,8.5\n393,403,8.0\n393,404,7.5\n393,405,7.0\n393,406,6.5\n393,407,6.0\n393,408,5.5\n393,409,5.0\n393,410,4.5\n393,411,4.0\n393,412,3.5\n393,413,3.0\n393,414,2.5\n393,415,2.0\n393,416,1.5\n393,417,1.0\n393,418,0.5\n393,419,1.0\n393,420,1.5\n393,421,2.0\n393,422,2.5\n393,423,3.0\n393,424,3.5\n393,425,10.0\n393,426,9.5\n393,427,9.0\n393,428,8.5\n393,429,8.0\n393,430,7.5\n393,431,7.0\n393,432,6.5\n393,433,6.0\n393,434,5.5\n393,435,5.0\n393,436,4.5\n393,437,4.0\n393,438,3.5\n393,439,3.0\n393,440,2.5\n393,441,2.0\n393,442,1.5\n393,443,1.0\n393,444,1.5\n393,445,2.0\n393,446,2.5\n393,447,3.0\n393,448,3.5\n393,449,4.0\n393,450,10.5\n393,451,10.0\n393,452,9.5\n393,453,9.0\n393,454,8.5\n393,455,8.0\n393,456,7.5\n393,457,7.0\n393,458,6.5\n393,459,6.0\n393,460,5.5\n393,461,5.0\n393,462,4.5\n393,463,4.0\n393,464,3.5\n393,465,3.0\n393,466,2.5\n393,467,2.0\n393,468,1.5\n393,469,2.0\n393,470,2.5\n393,471,3.0\n393,472,3.5\n393,473,4.0\n393,474,4.5\n393,475,11.0\n393,476,10.5\n393,477,10.0\n393,478,9.5\n393,479,9.0\n393,480,8.5\n393,481,8.0\n393,482,7.5\n393,483,7.0\n393,484,6.5\n393,485,6.0\n393,486,5.5\n393,487,5.0\n393,488,4.5\n393,489,4.0\n393,490,3.5\n393,491,3.0\n393,492,2.5\n393,493,2.0\n393,494,2.5\n393,495,3.0\n393,496,3.5\n393,497,4.0\n393,498,4.5\n393,499,5.0\n393,500,11.5\n393,501,11.0\n393,502,10.5\n393,503,10.0\n393,504,9.5\n393,505,9.0\n393,506,8.5\n393,507,8.0\n393,508,7.5\n393,509,7.0\n393,510,6.5\n393,511,6.0\n393,512,5.5\n393,513,5.0\n393,514,4.5\n393,515,4.0\n393,516,3.5\n393,517,3.0\n393,518,2.5\n393,519,3.0\n393,520,3.5\n393,521,4.0\n393,522,4.5\n393,523,5.0\n393,524,5.5\n393,525,12.0\n393,526,11.5\n393,527,11.0\n393,528,10.5\n393,529,10.0\n393,530,9.5\n393,531,9.0\n393,532,8.5\n393,533,8.0\n393,534,7.5\n393,535,7.0\n393,536,6.5\n393,537,6.0\n393,538,5.5\n393,539,5.0\n393,540,4.5\n393,541,4.0\n393,542,3.5\n393,543,3.0\n393,544,3.5\n393,545,4.0\n393,546,4.5\n393,547,5.0\n393,548,5.5\n393,549,6.0\n393,550,12.5\n393,551,12.0\n393,552,11.5\n393,553,11.0\n393,554,10.5\n393,555,10.0\n393,556,9.5\n393,557,9.0\n393,558,8.5\n393,559,8.0\n393,560,7.5\n393,561,7.0\n393,562,6.5\n393,563,6.0\n393,564,5.5\n393,565,5.0\n393,566,4.5\n393,567,4.0\n393,568,3.5\n393,569,4.0\n393,570,4.5\n393,571,5.0\n393,572,5.5\n393,573,6.0\n393,574,6.5\n393,575,13.0\n393,576,12.5\n393,577,12.0\n393,578,11.5\n393,579,11.0\n393,580,10.5\n393,581,10.0\n393,582,9.5\n393,583,9.0\n393,584,8.5\n393,585,8.0\n393,586,7.5\n393,587,7.0\n393,588,6.5\n393,589,6.0\n393,590,5.5\n393,591,5.0\n393,592,4.5\n393,593,4.0\n393,594,4.5\n393,595,5.0\n393,596,5.5\n393,597,6.0\n393,598,6.5\n393,599,7.0\n393,600,13.5\n393,601,13.0\n393,602,12.5\n393,603,12.0\n393,604,11.5\n393,605,11.0\n393,606,10.5\n393,607,10.0\n393,608,9.5\n393,609,9.0\n393,610,8.5\n393,611,8.0\n393,612,7.5\n393,613,7.0\n393,614,6.5\n393,615,6.0\n393,616,5.5\n393,617,5.0\n393,618,4.5\n393,619,5.0\n393,620,5.5\n393,621,6.0\n393,622,6.5\n393,623,7.0\n393,624,7.5\n394,0,17.0\n394,1,16.5\n394,2,16.0\n394,3,15.5\n394,4,15.0\n394,5,14.5\n394,6,14.0\n394,7,13.5\n394,8,13.0\n394,9,12.5\n394,10,12.0\n394,11,11.5\n394,12,11.0\n394,13,10.5\n394,14,10.0\n394,15,9.5\n394,16,9.0\n394,17,8.5\n394,18,8.0\n394,19,7.5\n394,20,8.0\n394,21,8.5\n394,22,9.0\n394,23,9.5\n394,24,10.0\n394,25,16.5\n394,26,16.0\n394,27,15.5\n394,28,15.0\n394,29,14.5\n394,30,14.0\n394,31,13.5\n394,32,13.0\n394,33,12.5\n394,34,12.0\n394,35,11.5\n394,36,11.0\n394,37,10.5\n394,38,10.0\n394,39,9.5\n394,40,9.0\n394,41,8.5\n394,42,8.0\n394,43,7.5\n394,44,7.0\n394,45,7.5\n394,46,8.0\n394,47,8.5\n394,48,9.0\n394,49,9.5\n394,50,16.0\n394,51,15.5\n394,52,15.0\n394,53,14.5\n394,54,14.0\n394,55,13.5\n394,56,13.0\n394,57,12.5\n394,58,12.0\n394,59,11.5\n394,60,11.0\n394,61,10.5\n394,62,10.0\n394,63,9.5\n394,64,9.0\n394,65,8.5\n394,66,8.0\n394,67,7.5\n394,68,7.0\n394,69,6.5\n394,70,7.0\n394,71,7.5\n394,72,8.0\n394,73,8.5\n394,74,9.0\n394,75,15.5\n394,76,15.0\n394,77,14.5\n394,78,14.0\n394,79,13.5\n394,80,13.0\n394,81,12.5\n394,82,12.0\n394,83,11.5\n394,84,11.0\n394,85,10.5\n394,86,10.0\n394,87,9.5\n394,88,9.0\n394,89,8.5\n394,90,8.0\n394,91,7.5\n394,92,7.0\n394,93,6.5\n394,94,6.0\n394,95,6.5\n394,96,7.0\n394,97,7.5\n394,98,8.0\n394,99,8.5\n394,100,15.0\n394,101,14.5\n394,102,14.0\n394,103,13.5\n394,104,13.0\n394,105,12.5\n394,106,12.0\n394,107,11.5\n394,108,11.0\n394,109,10.5\n394,110,10.0\n394,111,9.5\n394,112,9.0\n394,113,8.5\n394,114,8.0\n394,115,7.5\n394,116,7.0\n394,117,6.5\n394,118,6.0\n394,119,5.5\n394,120,6.0\n394,121,6.5\n394,122,7.0\n394,123,7.5\n394,124,8.0\n394,125,14.5\n394,126,14.0\n394,127,13.5\n394,128,13.0\n394,129,12.5\n394,130,12.0\n394,131,11.5\n394,132,11.0\n394,133,10.5\n394,134,10.0\n394,135,9.5\n394,136,9.0\n394,137,8.5\n394,138,8.0\n394,139,7.5\n394,140,7.0\n394,141,6.5\n394,142,6.0\n394,143,5.5\n394,144,5.0\n394,145,5.5\n394,146,6.0\n394,147,6.5\n394,148,7.0\n394,149,7.5\n394,150,14.0\n394,151,13.5\n394,152,13.0\n394,153,12.5\n394,154,12.0\n394,155,11.5\n394,156,11.0\n394,157,10.5\n394,158,10.0\n394,159,9.5\n394,160,9.0\n394,161,8.5\n394,162,8.0\n394,163,7.5\n394,164,7.0\n394,165,6.5\n394,166,6.0\n394,167,5.5\n394,168,5.0\n394,169,4.5\n394,170,5.0\n394,171,5.5\n394,172,6.0\n394,173,6.5\n394,174,7.0\n394,175,13.5\n394,176,13.0\n394,177,12.5\n394,178,12.0\n394,179,11.5\n394,180,11.0\n394,181,10.5\n394,182,10.0\n394,183,9.5\n394,184,9.0\n394,185,8.5\n394,186,8.0\n394,187,7.5\n394,188,7.0\n394,189,6.5\n394,190,6.0\n394,191,5.5\n394,192,5.0\n394,193,4.5\n394,194,4.0\n394,195,4.5\n394,196,5.0\n394,197,5.5\n394,198,6.0\n394,199,6.5\n394,200,13.0\n394,201,12.5\n394,202,12.0\n394,203,11.5\n394,204,11.0\n394,205,10.5\n394,206,10.0\n394,207,9.5\n394,208,9.0\n394,209,8.5\n394,210,8.0\n394,211,7.5\n394,212,7.0\n394,213,6.5\n394,214,6.0\n394,215,5.5\n394,216,5.0\n394,217,4.5\n394,218,4.0\n394,219,3.5\n394,220,4.0\n394,221,4.5\n394,222,5.0\n394,223,5.5\n394,224,6.0\n394,225,12.5\n394,226,12.0\n394,227,11.5\n394,228,11.0\n394,229,10.5\n394,230,10.0\n394,231,9.5\n394,232,9.0\n394,233,8.5\n394,234,8.0\n394,235,7.5\n394,236,7.0\n394,237,6.5\n394,238,6.0\n394,239,5.5\n394,240,5.0\n394,241,4.5\n394,242,4.0\n394,243,3.5\n394,244,3.0\n394,245,3.5\n394,246,4.0\n394,247,4.5\n394,248,5.0\n394,249,5.5\n394,250,12.0\n394,251,11.5\n394,252,11.0\n394,253,10.5\n394,254,10.0\n394,255,9.5\n394,256,9.0\n394,257,8.5\n394,258,8.0\n394,259,7.5\n394,260,7.0\n394,261,6.5\n394,262,6.0\n394,263,5.5\n394,264,5.0\n394,265,4.5\n394,266,4.0\n394,267,3.5\n394,268,3.0\n394,269,2.5\n394,270,3.0\n394,271,3.5\n394,272,4.0\n394,273,4.5\n394,274,5.0\n394,275,11.5\n394,276,11.0\n394,277,10.5\n394,278,10.0\n394,279,9.5\n394,280,9.0\n394,281,8.5\n394,282,8.0\n394,283,7.5\n394,284,7.0\n394,285,6.5\n394,286,6.0\n394,287,5.5\n394,288,5.0\n394,289,4.5\n394,290,4.0\n394,291,3.5\n394,292,3.0\n394,293,2.5\n394,294,2.0\n394,295,2.5\n394,296,3.0\n394,297,3.5\n394,298,4.0\n394,299,4.5\n394,300,11.0\n394,301,10.5\n394,302,10.0\n394,303,9.5\n394,304,9.0\n394,305,8.5\n394,306,8.0\n394,307,7.5\n394,308,7.0\n394,309,6.5\n394,310,6.0\n394,311,5.5\n394,312,5.0\n394,313,4.5\n394,314,4.0\n394,315,3.5\n394,316,3.0\n394,317,2.5\n394,318,2.0\n394,319,1.5\n394,320,2.0\n394,321,2.5\n394,322,3.0\n394,323,3.5\n394,324,4.0\n394,325,10.5\n394,326,10.0\n394,327,9.5\n394,328,9.0\n394,329,8.5\n394,330,8.0\n394,331,7.5\n394,332,7.0\n394,333,6.5\n394,334,6.0\n394,335,5.5\n394,336,5.0\n394,337,4.5\n394,338,4.0\n394,339,3.5\n394,340,3.0\n394,341,2.5\n394,342,2.0\n394,343,1.5\n394,344,1.0\n394,345,1.5\n394,346,2.0\n394,347,2.5\n394,348,3.0\n394,349,3.5\n394,350,10.0\n394,351,9.5\n394,352,9.0\n394,353,8.5\n394,354,8.0\n394,355,7.5\n394,356,7.0\n394,357,6.5\n394,358,6.0\n394,359,5.5\n394,360,5.0\n394,361,4.5\n394,362,4.0\n394,363,3.5\n394,364,3.0\n394,365,2.5\n394,366,2.0\n394,367,1.5\n394,368,1.0\n394,369,0.5\n394,370,1.0\n394,371,1.5\n394,372,2.0\n394,373,2.5\n394,374,3.0\n394,375,9.5\n394,376,9.0\n394,377,8.5\n394,378,8.0\n394,379,7.5\n394,380,7.0\n394,381,6.5\n394,382,6.0\n394,383,5.5\n394,384,5.0\n394,385,4.5\n394,386,4.0\n394,387,3.5\n394,388,3.0\n394,389,2.5\n394,390,2.0\n394,391,1.5\n394,392,1.0\n394,393,0.5\n394,394,0\n394,395,0.5\n394,396,1.0\n394,397,1.5\n394,398,2.0\n394,399,2.5\n394,400,10.0\n394,401,9.5\n394,402,9.0\n394,403,8.5\n394,404,8.0\n394,405,7.5\n394,406,7.0\n394,407,6.5\n394,408,6.0\n394,409,5.5\n394,410,5.0\n394,411,4.5\n394,412,4.0\n394,413,3.5\n394,414,3.0\n394,415,2.5\n394,416,2.0\n394,417,1.5\n394,418,1.0\n394,419,0.5\n394,420,1.0\n394,421,1.5\n394,422,2.0\n394,423,2.5\n394,424,3.0\n394,425,10.5\n394,426,10.0\n394,427,9.5\n394,428,9.0\n394,429,8.5\n394,430,8.0\n394,431,7.5\n394,432,7.0\n394,433,6.5\n394,434,6.0\n394,435,5.5\n394,436,5.0\n394,437,4.5\n394,438,4.0\n394,439,3.5\n394,440,3.0\n394,441,2.5\n394,442,2.0\n394,443,1.5\n394,444,1.0\n394,445,1.5\n394,446,2.0\n394,447,2.5\n394,448,3.0\n394,449,3.5\n394,450,11.0\n394,451,10.5\n394,452,10.0\n394,453,9.5\n394,454,9.0\n394,455,8.5\n394,456,8.0\n394,457,7.5\n394,458,7.0\n394,459,6.5\n394,460,6.0\n394,461,5.5\n394,462,5.0\n394,463,4.5\n394,464,4.0\n394,465,3.5\n394,466,3.0\n394,467,2.5\n394,468,2.0\n394,469,1.5\n394,470,2.0\n394,471,2.5\n394,472,3.0\n394,473,3.5\n394,474,4.0\n394,475,11.5\n394,476,11.0\n394,477,10.5\n394,478,10.0\n394,479,9.5\n394,480,9.0\n394,481,8.5\n394,482,8.0\n394,483,7.5\n394,484,7.0\n394,485,6.5\n394,486,6.0\n394,487,5.5\n394,488,5.0\n394,489,4.5\n394,490,4.0\n394,491,3.5\n394,492,3.0\n394,493,2.5\n394,494,2.0\n394,495,2.5\n394,496,3.0\n394,497,3.5\n394,498,4.0\n394,499,4.5\n394,500,12.0\n394,501,11.5\n394,502,11.0\n394,503,10.5\n394,504,10.0\n394,505,9.5\n394,506,9.0\n394,507,8.5\n394,508,8.0\n394,509,7.5\n394,510,7.0\n394,511,6.5\n394,512,6.0\n394,513,5.5\n394,514,5.0\n394,515,4.5\n394,516,4.0\n394,517,3.5\n394,518,3.0\n394,519,2.5\n394,520,3.0\n394,521,3.5\n394,522,4.0\n394,523,4.5\n394,524,5.0\n394,525,12.5\n394,526,12.0\n394,527,11.5\n394,528,11.0\n394,529,10.5\n394,530,10.0\n394,531,9.5\n394,532,9.0\n394,533,8.5\n394,534,8.0\n394,535,7.5\n394,536,7.0\n394,537,6.5\n394,538,6.0\n394,539,5.5\n394,540,5.0\n394,541,4.5\n394,542,4.0\n394,543,3.5\n394,544,3.0\n394,545,3.5\n394,546,4.0\n394,547,4.5\n394,548,5.0\n394,549,5.5\n394,550,13.0\n394,551,12.5\n394,552,12.0\n394,553,11.5\n394,554,11.0\n394,555,10.5\n394,556,10.0\n394,557,9.5\n394,558,9.0\n394,559,8.5\n394,560,8.0\n394,561,7.5\n394,562,7.0\n394,563,6.5\n394,564,6.0\n394,565,5.5\n394,566,5.0\n394,567,4.5\n394,568,4.0\n394,569,3.5\n394,570,4.0\n394,571,4.5\n394,572,5.0\n394,573,5.5\n394,574,6.0\n394,575,13.5\n394,576,13.0\n394,577,12.5\n394,578,12.0\n394,579,11.5\n394,580,11.0\n394,581,10.5\n394,582,10.0\n394,583,9.5\n394,584,9.0\n394,585,8.5\n394,586,8.0\n394,587,7.5\n394,588,7.0\n394,589,6.5\n394,590,6.0\n394,591,5.5\n394,592,5.0\n394,593,4.5\n394,594,4.0\n394,595,4.5\n394,596,5.0\n394,597,5.5\n394,598,6.0\n394,599,6.5\n394,600,14.0\n394,601,13.5\n394,602,13.0\n394,603,12.5\n394,604,12.0\n394,605,11.5\n394,606,11.0\n394,607,10.5\n394,608,10.0\n394,609,9.5\n394,610,9.0\n394,611,8.5\n394,612,8.0\n394,613,7.5\n394,614,7.0\n394,615,6.5\n394,616,6.0\n394,617,5.5\n394,618,5.0\n394,619,4.5\n394,620,5.0\n394,621,5.5\n394,622,6.0\n394,623,6.5\n394,624,7.0\n395,0,17.5\n395,1,17.0\n395,2,16.5\n395,3,16.0\n395,4,15.5\n395,5,15.0\n395,6,14.5\n395,7,14.0\n395,8,13.5\n395,9,13.0\n395,10,12.5\n395,11,12.0\n395,12,11.5\n395,13,11.0\n395,14,10.5\n395,15,10.0\n395,16,9.5\n395,17,9.0\n395,18,8.5\n395,19,8.0\n395,20,7.5\n395,21,8.0\n395,22,8.5\n395,23,9.0\n395,24,9.5\n395,25,17.0\n395,26,16.5\n395,27,16.0\n395,28,15.5\n395,29,15.0\n395,30,14.5\n395,31,14.0\n395,32,13.5\n395,33,13.0\n395,34,12.5\n395,35,12.0\n395,36,11.5\n395,37,11.0\n395,38,10.5\n395,39,10.0\n395,40,9.5\n395,41,9.0\n395,42,8.5\n395,43,8.0\n395,44,7.5\n395,45,7.0\n395,46,7.5\n395,47,8.0\n395,48,8.5\n395,49,9.0\n395,50,16.5\n395,51,16.0\n395,52,15.5\n395,53,15.0\n395,54,14.5\n395,55,14.0\n395,56,13.5\n395,57,13.0\n395,58,12.5\n395,59,12.0\n395,60,11.5\n395,61,11.0\n395,62,10.5\n395,63,10.0\n395,64,9.5\n395,65,9.0\n395,66,8.5\n395,67,8.0\n395,68,7.5\n395,69,7.0\n395,70,6.5\n395,71,7.0\n395,72,7.5\n395,73,8.0\n395,74,8.5\n395,75,16.0\n395,76,15.5\n395,77,15.0\n395,78,14.5\n395,79,14.0\n395,80,13.5\n395,81,13.0\n395,82,12.5\n395,83,12.0\n395,84,11.5\n395,85,11.0\n395,86,10.5\n395,87,10.0\n395,88,9.5\n395,89,9.0\n395,90,8.5\n395,91,8.0\n395,92,7.5\n395,93,7.0\n395,94,6.5\n395,95,6.0\n395,96,6.5\n395,97,7.0\n395,98,7.5\n395,99,8.0\n395,100,15.5\n395,101,15.0\n395,102,14.5\n395,103,14.0\n395,104,13.5\n395,105,13.0\n395,106,12.5\n395,107,12.0\n395,108,11.5\n395,109,11.0\n395,110,10.5\n395,111,10.0\n395,112,9.5\n395,113,9.0\n395,114,8.5\n395,115,8.0\n395,116,7.5\n395,117,7.0\n395,118,6.5\n395,119,6.0\n395,120,5.5\n395,121,6.0\n395,122,6.5\n395,123,7.0\n395,124,7.5\n395,125,15.0\n395,126,14.5\n395,127,14.0\n395,128,13.5\n395,129,13.0\n395,130,12.5\n395,131,12.0\n395,132,11.5\n395,133,11.0\n395,134,10.5\n395,135,10.0\n395,136,9.5\n395,137,9.0\n395,138,8.5\n395,139,8.0\n395,140,7.5\n395,141,7.0\n395,142,6.5\n395,143,6.0\n395,144,5.5\n395,145,5.0\n395,146,5.5\n395,147,6.0\n395,148,6.5\n395,149,7.0\n395,150,14.5\n395,151,14.0\n395,152,13.5\n395,153,13.0\n395,154,12.5\n395,155,12.0\n395,156,11.5\n395,157,11.0\n395,158,10.5\n395,159,10.0\n395,160,9.5\n395,161,9.0\n395,162,8.5\n395,163,8.0\n395,164,7.5\n395,165,7.0\n395,166,6.5\n395,167,6.0\n395,168,5.5\n395,169,5.0\n395,170,4.5\n395,171,5.0\n395,172,5.5\n395,173,6.0\n395,174,6.5\n395,175,14.0\n395,176,13.5\n395,177,13.0\n395,178,12.5\n395,179,12.0\n395,180,11.5\n395,181,11.0\n395,182,10.5\n395,183,10.0\n395,184,9.5\n395,185,9.0\n395,186,8.5\n395,187,8.0\n395,188,7.5\n395,189,7.0\n395,190,6.5\n395,191,6.0\n395,192,5.5\n395,193,5.0\n395,194,4.5\n395,195,4.0\n395,196,4.5\n395,197,5.0\n395,198,5.5\n395,199,6.0\n395,200,13.5\n395,201,13.0\n395,202,12.5\n395,203,12.0\n395,204,11.5\n395,205,11.0\n395,206,10.5\n395,207,10.0\n395,208,9.5\n395,209,9.0\n395,210,8.5\n395,211,8.0\n395,212,7.5\n395,213,7.0\n395,214,6.5\n395,215,6.0\n395,216,5.5\n395,217,5.0\n395,218,4.5\n395,219,4.0\n395,220,3.5\n395,221,4.0\n395,222,4.5\n395,223,5.0\n395,224,5.5\n395,225,13.0\n395,226,12.5\n395,227,12.0\n395,228,11.5\n395,229,11.0\n395,230,10.5\n395,231,10.0\n395,232,9.5\n395,233,9.0\n395,234,8.5\n395,235,8.0\n395,236,7.5\n395,237,7.0\n395,238,6.5\n395,239,6.0\n395,240,5.5\n395,241,5.0\n395,242,4.5\n395,243,4.0\n395,244,3.5\n395,245,3.0\n395,246,3.5\n395,247,4.0\n395,248,4.5\n395,249,5.0\n395,250,12.5\n395,251,12.0\n395,252,11.5\n395,253,11.0\n395,254,10.5\n395,255,10.0\n395,256,9.5\n395,257,9.0\n395,258,8.5\n395,259,8.0\n395,260,7.5\n395,261,7.0\n395,262,6.5\n395,263,6.0\n395,264,5.5\n395,265,5.0\n395,266,4.5\n395,267,4.0\n395,268,3.5\n395,269,3.0\n395,270,2.5\n395,271,3.0\n395,272,3.5\n395,273,4.0\n395,274,4.5\n395,275,12.0\n395,276,11.5\n395,277,11.0\n395,278,10.5\n395,279,10.0\n395,280,9.5\n395,281,9.0\n395,282,8.5\n395,283,8.0\n395,284,7.5\n395,285,7.0\n395,286,6.5\n395,287,6.0\n395,288,5.5\n395,289,5.0\n395,290,4.5\n395,291,4.0\n395,292,3.5\n395,293,3.0\n395,294,2.5\n395,295,2.0\n395,296,2.5\n395,297,3.0\n395,298,3.5\n395,299,4.0\n395,300,11.5\n395,301,11.0\n395,302,10.5\n395,303,10.0\n395,304,9.5\n395,305,9.0\n395,306,8.5\n395,307,8.0\n395,308,7.5\n395,309,7.0\n395,310,6.5\n395,311,6.0\n395,312,5.5\n395,313,5.0\n395,314,4.5\n395,315,4.0\n395,316,3.5\n395,317,3.0\n395,318,2.5\n395,319,2.0\n395,320,1.5\n395,321,2.0\n395,322,2.5\n395,323,3.0\n395,324,3.5\n395,325,11.0\n395,326,10.5\n395,327,10.0\n395,328,9.5\n395,329,9.0\n395,330,8.5\n395,331,8.0\n395,332,7.5\n395,333,7.0\n395,334,6.5\n395,335,6.0\n395,336,5.5\n395,337,5.0\n395,338,4.5\n395,339,4.0\n395,340,3.5\n395,341,3.0\n395,342,2.5\n395,343,2.0\n395,344,1.5\n395,345,1.0\n395,346,1.5\n395,347,2.0\n395,348,2.5\n395,349,3.0\n395,350,10.5\n395,351,10.0\n395,352,9.5\n395,353,9.0\n395,354,8.5\n395,355,8.0\n395,356,7.5\n395,357,7.0\n395,358,6.5\n395,359,6.0\n395,360,5.5\n395,361,5.0\n395,362,4.5\n395,363,4.0\n395,364,3.5\n395,365,3.0\n395,366,2.5\n395,367,2.0\n395,368,1.5\n395,369,1.0\n395,370,0.5\n395,371,1.0\n395,372,1.5\n395,373,2.0\n395,374,2.5\n395,375,10.0\n395,376,9.5\n395,377,9.0\n395,378,8.5\n395,379,8.0\n395,380,7.5\n395,381,7.0\n395,382,6.5\n395,383,6.0\n395,384,5.5\n395,385,5.0\n395,386,4.5\n395,387,4.0\n395,388,3.5\n395,389,3.0\n395,390,2.5\n395,391,2.0\n395,392,1.5\n395,393,1.0\n395,394,0.5\n395,395,0\n395,396,0.5\n395,397,1.0\n395,398,1.5\n395,399,2.0\n395,400,10.5\n395,401,10.0\n395,402,9.5\n395,403,9.0\n395,404,8.5\n395,405,8.0\n395,406,7.5\n395,407,7.0\n395,408,6.5\n395,409,6.0\n395,410,5.5\n395,411,5.0\n395,412,4.5\n395,413,4.0\n395,414,3.5\n395,415,3.0\n395,416,2.5\n395,417,2.0\n395,418,1.5\n395,419,1.0\n395,420,0.5\n395,421,1.0\n395,422,1.5\n395,423,2.0\n395,424,2.5\n395,425,11.0\n395,426,10.5\n395,427,10.0\n395,428,9.5\n395,429,9.0\n395,430,8.5\n395,431,8.0\n395,432,7.5\n395,433,7.0\n395,434,6.5\n395,435,6.0\n395,436,5.5\n395,437,5.0\n395,438,4.5\n395,439,4.0\n395,440,3.5\n395,441,3.0\n395,442,2.5\n395,443,2.0\n395,444,1.5\n395,445,1.0\n395,446,1.5\n395,447,2.0\n395,448,2.5\n395,449,3.0\n395,450,11.5\n395,451,11.0\n395,452,10.5\n395,453,10.0\n395,454,9.5\n395,455,9.0\n395,456,8.5\n395,457,8.0\n395,458,7.5\n395,459,7.0\n395,460,6.5\n395,461,6.0\n395,462,5.5\n395,463,5.0\n395,464,4.5\n395,465,4.0\n395,466,3.5\n395,467,3.0\n395,468,2.5\n395,469,2.0\n395,470,1.5\n395,471,2.0\n395,472,2.5\n395,473,3.0\n395,474,3.5\n395,475,12.0\n395,476,11.5\n395,477,11.0\n395,478,10.5\n395,479,10.0\n395,480,9.5\n395,481,9.0\n395,482,8.5\n395,483,8.0\n395,484,7.5\n395,485,7.0\n395,486,6.5\n395,487,6.0\n395,488,5.5\n395,489,5.0\n395,490,4.5\n395,491,4.0\n395,492,3.5\n395,493,3.0\n395,494,2.5\n395,495,2.0\n395,496,2.5\n395,497,3.0\n395,498,3.5\n395,499,4.0\n395,500,12.5\n395,501,12.0\n395,502,11.5\n395,503,11.0\n395,504,10.5\n395,505,10.0\n395,506,9.5\n395,507,9.0\n395,508,8.5\n395,509,8.0\n395,510,7.5\n395,511,7.0\n395,512,6.5\n395,513,6.0\n395,514,5.5\n395,515,5.0\n395,516,4.5\n395,517,4.0\n395,518,3.5\n395,519,3.0\n395,520,2.5\n395,521,3.0\n395,522,3.5\n395,523,4.0\n395,524,4.5\n395,525,13.0\n395,526,12.5\n395,527,12.0\n395,528,11.5\n395,529,11.0\n395,530,10.5\n395,531,10.0\n395,532,9.5\n395,533,9.0\n395,534,8.5\n395,535,8.0\n395,536,7.5\n395,537,7.0\n395,538,6.5\n395,539,6.0\n395,540,5.5\n395,541,5.0\n395,542,4.5\n395,543,4.0\n395,544,3.5\n395,545,3.0\n395,546,3.5\n395,547,4.0\n395,548,4.5\n395,549,5.0\n395,550,13.5\n395,551,13.0\n395,552,12.5\n395,553,12.0\n395,554,11.5\n395,555,11.0\n395,556,10.5\n395,557,10.0\n395,558,9.5\n395,559,9.0\n395,560,8.5\n395,561,8.0\n395,562,7.5\n395,563,7.0\n395,564,6.5\n395,565,6.0\n395,566,5.5\n395,567,5.0\n395,568,4.5\n395,569,4.0\n395,570,3.5\n395,571,4.0\n395,572,4.5\n395,573,5.0\n395,574,5.5\n395,575,14.0\n395,576,13.5\n395,577,13.0\n395,578,12.5\n395,579,12.0\n395,580,11.5\n395,581,11.0\n395,582,10.5\n395,583,10.0\n395,584,9.5\n395,585,9.0\n395,586,8.5\n395,587,8.0\n395,588,7.5\n395,589,7.0\n395,590,6.5\n395,591,6.0\n395,592,5.5\n395,593,5.0\n395,594,4.5\n395,595,4.0\n395,596,4.5\n395,597,5.0\n395,598,5.5\n395,599,6.0\n395,600,14.5\n395,601,14.0\n395,602,13.5\n395,603,13.0\n395,604,12.5\n395,605,12.0\n395,606,11.5\n395,607,11.0\n395,608,10.5\n395,609,10.0\n395,610,9.5\n395,611,9.0\n395,612,8.5\n395,613,8.0\n395,614,7.5\n395,615,7.0\n395,616,6.5\n395,617,6.0\n395,618,5.5\n395,619,5.0\n395,620,4.5\n395,621,5.0\n395,622,5.5\n395,623,6.0\n395,624,6.5\n396,0,18.0\n396,1,17.5\n396,2,17.0\n396,3,16.5\n396,4,16.0\n396,5,15.5\n396,6,15.0\n396,7,14.5\n396,8,14.0\n396,9,13.5\n396,10,13.0\n396,11,12.5\n396,12,12.0\n396,13,11.5\n396,14,11.0\n396,15,10.5\n396,16,10.0\n396,17,9.5\n396,18,9.0\n396,19,8.5\n396,20,8.0\n396,21,7.5\n396,22,8.0\n396,23,8.5\n396,24,9.0\n396,25,17.5\n396,26,17.0\n396,27,16.5\n396,28,16.0\n396,29,15.5\n396,30,15.0\n396,31,14.5\n396,32,14.0\n396,33,13.5\n396,34,13.0\n396,35,12.5\n396,36,12.0\n396,37,11.5\n396,38,11.0\n396,39,10.5\n396,40,10.0\n396,41,9.5\n396,42,9.0\n396,43,8.5\n396,44,8.0\n396,45,7.5\n396,46,7.0\n396,47,7.5\n396,48,8.0\n396,49,8.5\n396,50,17.0\n396,51,16.5\n396,52,16.0\n396,53,15.5\n396,54,15.0\n396,55,14.5\n396,56,14.0\n396,57,13.5\n396,58,13.0\n396,59,12.5\n396,60,12.0\n396,61,11.5\n396,62,11.0\n396,63,10.5\n396,64,10.0\n396,65,9.5\n396,66,9.0\n396,67,8.5\n396,68,8.0\n396,69,7.5\n396,70,7.0\n396,71,6.5\n396,72,7.0\n396,73,7.5\n396,74,8.0\n396,75,16.5\n396,76,16.0\n396,77,15.5\n396,78,15.0\n396,79,14.5\n396,80,14.0\n396,81,13.5\n396,82,13.0\n396,83,12.5\n396,84,12.0\n396,85,11.5\n396,86,11.0\n396,87,10.5\n396,88,10.0\n396,89,9.5\n396,90,9.0\n396,91,8.5\n396,92,8.0\n396,93,7.5\n396,94,7.0\n396,95,6.5\n396,96,6.0\n396,97,6.5\n396,98,7.0\n396,99,7.5\n396,100,16.0\n396,101,15.5\n396,102,15.0\n396,103,14.5\n396,104,14.0\n396,105,13.5\n396,106,13.0\n396,107,12.5\n396,108,12.0\n396,109,11.5\n396,110,11.0\n396,111,10.5\n396,112,10.0\n396,113,9.5\n396,114,9.0\n396,115,8.5\n396,116,8.0\n396,117,7.5\n396,118,7.0\n396,119,6.5\n396,120,6.0\n396,121,5.5\n396,122,6.0\n396,123,6.5\n396,124,7.0\n396,125,15.5\n396,126,15.0\n396,127,14.5\n396,128,14.0\n396,129,13.5\n396,130,13.0\n396,131,12.5\n396,132,12.0\n396,133,11.5\n396,134,11.0\n396,135,10.5\n396,136,10.0\n396,137,9.5\n396,138,9.0\n396,139,8.5\n396,140,8.0\n396,141,7.5\n396,142,7.0\n396,143,6.5\n396,144,6.0\n396,145,5.5\n396,146,5.0\n396,147,5.5\n396,148,6.0\n396,149,6.5\n396,150,15.0\n396,151,14.5\n396,152,14.0\n396,153,13.5\n396,154,13.0\n396,155,12.5\n396,156,12.0\n396,157,11.5\n396,158,11.0\n396,159,10.5\n396,160,10.0\n396,161,9.5\n396,162,9.0\n396,163,8.5\n396,164,8.0\n396,165,7.5\n396,166,7.0\n396,167,6.5\n396,168,6.0\n396,169,5.5\n396,170,5.0\n396,171,4.5\n396,172,5.0\n396,173,5.5\n396,174,6.0\n396,175,14.5\n396,176,14.0\n396,177,13.5\n396,178,13.0\n396,179,12.5\n396,180,12.0\n396,181,11.5\n396,182,11.0\n396,183,10.5\n396,184,10.0\n396,185,9.5\n396,186,9.0\n396,187,8.5\n396,188,8.0\n396,189,7.5\n396,190,7.0\n396,191,6.5\n396,192,6.0\n396,193,5.5\n396,194,5.0\n396,195,4.5\n396,196,4.0\n396,197,4.5\n396,198,5.0\n396,199,5.5\n396,200,14.0\n396,201,13.5\n396,202,13.0\n396,203,12.5\n396,204,12.0\n396,205,11.5\n396,206,11.0\n396,207,10.5\n396,208,10.0\n396,209,9.5\n396,210,9.0\n396,211,8.5\n396,212,8.0\n396,213,7.5\n396,214,7.0\n396,215,6.5\n396,216,6.0\n396,217,5.5\n396,218,5.0\n396,219,4.5\n396,220,4.0\n396,221,3.5\n396,222,4.0\n396,223,4.5\n396,224,5.0\n396,225,13.5\n396,226,13.0\n396,227,12.5\n396,228,12.0\n396,229,11.5\n396,230,11.0\n396,231,10.5\n396,232,10.0\n396,233,9.5\n396,234,9.0\n396,235,8.5\n396,236,8.0\n396,237,7.5\n396,238,7.0\n396,239,6.5\n396,240,6.0\n396,241,5.5\n396,242,5.0\n396,243,4.5\n396,244,4.0\n396,245,3.5\n396,246,3.0\n396,247,3.5\n396,248,4.0\n396,249,4.5\n396,250,13.0\n396,251,12.5\n396,252,12.0\n396,253,11.5\n396,254,11.0\n396,255,10.5\n396,256,10.0\n396,257,9.5\n396,258,9.0\n396,259,8.5\n396,260,8.0\n396,261,7.5\n396,262,7.0\n396,263,6.5\n396,264,6.0\n396,265,5.5\n396,266,5.0\n396,267,4.5\n396,268,4.0\n396,269,3.5\n396,270,3.0\n396,271,2.5\n396,272,3.0\n396,273,3.5\n396,274,4.0\n396,275,12.5\n396,276,12.0\n396,277,11.5\n396,278,11.0\n396,279,10.5\n396,280,10.0\n396,281,9.5\n396,282,9.0\n396,283,8.5\n396,284,8.0\n396,285,7.5\n396,286,7.0\n396,287,6.5\n396,288,6.0\n396,289,5.5\n396,290,5.0\n396,291,4.5\n396,292,4.0\n396,293,3.5\n396,294,3.0\n396,295,2.5\n396,296,2.0\n396,297,2.5\n396,298,3.0\n396,299,3.5\n396,300,12.0\n396,301,11.5\n396,302,11.0\n396,303,10.5\n396,304,10.0\n396,305,9.5\n396,306,9.0\n396,307,8.5\n396,308,8.0\n396,309,7.5\n396,310,7.0\n396,311,6.5\n396,312,6.0\n396,313,5.5\n396,314,5.0\n396,315,4.5\n396,316,4.0\n396,317,3.5\n396,318,3.0\n396,319,2.5\n396,320,2.0\n396,321,1.5\n396,322,2.0\n396,323,2.5\n396,324,3.0\n396,325,11.5\n396,326,11.0\n396,327,10.5\n396,328,10.0\n396,329,9.5\n396,330,9.0\n396,331,8.5\n396,332,8.0\n396,333,7.5\n396,334,7.0\n396,335,6.5\n396,336,6.0\n396,337,5.5\n396,338,5.0\n396,339,4.5\n396,340,4.0\n396,341,3.5\n396,342,3.0\n396,343,2.5\n396,344,2.0\n396,345,1.5\n396,346,1.0\n396,347,1.5\n396,348,2.0\n396,349,2.5\n396,350,11.0\n396,351,10.5\n396,352,10.0\n396,353,9.5\n396,354,9.0\n396,355,8.5\n396,356,8.0\n396,357,7.5\n396,358,7.0\n396,359,6.5\n396,360,6.0\n396,361,5.5\n396,362,5.0\n396,363,4.5\n396,364,4.0\n396,365,3.5\n396,366,3.0\n396,367,2.5\n396,368,2.0\n396,369,1.5\n396,370,1.0\n396,371,0.5\n396,372,1.0\n396,373,1.5\n396,374,2.0\n396,375,10.5\n396,376,10.0\n396,377,9.5\n396,378,9.0\n396,379,8.5\n396,380,8.0\n396,381,7.5\n396,382,7.0\n396,383,6.5\n396,384,6.0\n396,385,5.5\n396,386,5.0\n396,387,4.5\n396,388,4.0\n396,389,3.5\n396,390,3.0\n396,391,2.5\n396,392,2.0\n396,393,1.5\n396,394,1.0\n396,395,0.5\n396,396,0\n396,397,0.5\n396,398,1.0\n396,399,1.5\n396,400,11.0\n396,401,10.5\n396,402,10.0\n396,403,9.5\n396,404,9.0\n396,405,8.5\n396,406,8.0\n396,407,7.5\n396,408,7.0\n396,409,6.5\n396,410,6.0\n396,411,5.5\n396,412,5.0\n396,413,4.5\n396,414,4.0\n396,415,3.5\n396,416,3.0\n396,417,2.5\n396,418,2.0\n396,419,1.5\n396,420,1.0\n396,421,0.5\n396,422,1.0\n396,423,1.5\n396,424,2.0\n396,425,11.5\n396,426,11.0\n396,427,10.5\n396,428,10.0\n396,429,9.5\n396,430,9.0\n396,431,8.5\n396,432,8.0\n396,433,7.5\n396,434,7.0\n396,435,6.5\n396,436,6.0\n396,437,5.5\n396,438,5.0\n396,439,4.5\n396,440,4.0\n396,441,3.5\n396,442,3.0\n396,443,2.5\n396,444,2.0\n396,445,1.5\n396,446,1.0\n396,447,1.5\n396,448,2.0\n396,449,2.5\n396,450,12.0\n396,451,11.5\n396,452,11.0\n396,453,10.5\n396,454,10.0\n396,455,9.5\n396,456,9.0\n396,457,8.5\n396,458,8.0\n396,459,7.5\n396,460,7.0\n396,461,6.5\n396,462,6.0\n396,463,5.5\n396,464,5.0\n396,465,4.5\n396,466,4.0\n396,467,3.5\n396,468,3.0\n396,469,2.5\n396,470,2.0\n396,471,1.5\n396,472,2.0\n396,473,2.5\n396,474,3.0\n396,475,12.5\n396,476,12.0\n396,477,11.5\n396,478,11.0\n396,479,10.5\n396,480,10.0\n396,481,9.5\n396,482,9.0\n396,483,8.5\n396,484,8.0\n396,485,7.5\n396,486,7.0\n396,487,6.5\n396,488,6.0\n396,489,5.5\n396,490,5.0\n396,491,4.5\n396,492,4.0\n396,493,3.5\n396,494,3.0\n396,495,2.5\n396,496,2.0\n396,497,2.5\n396,498,3.0\n396,499,3.5\n396,500,13.0\n396,501,12.5\n396,502,12.0\n396,503,11.5\n396,504,11.0\n396,505,10.5\n396,506,10.0\n396,507,9.5\n396,508,9.0\n396,509,8.5\n396,510,8.0\n396,511,7.5\n396,512,7.0\n396,513,6.5\n396,514,6.0\n396,515,5.5\n396,516,5.0\n396,517,4.5\n396,518,4.0\n396,519,3.5\n396,520,3.0\n396,521,2.5\n396,522,3.0\n396,523,3.5\n396,524,4.0\n396,525,13.5\n396,526,13.0\n396,527,12.5\n396,528,12.0\n396,529,11.5\n396,530,11.0\n396,531,10.5\n396,532,10.0\n396,533,9.5\n396,534,9.0\n396,535,8.5\n396,536,8.0\n396,537,7.5\n396,538,7.0\n396,539,6.5\n396,540,6.0\n396,541,5.5\n396,542,5.0\n396,543,4.5\n396,544,4.0\n396,545,3.5\n396,546,3.0\n396,547,3.5\n396,548,4.0\n396,549,4.5\n396,550,14.0\n396,551,13.5\n396,552,13.0\n396,553,12.5\n396,554,12.0\n396,555,11.5\n396,556,11.0\n396,557,10.5\n396,558,10.0\n396,559,9.5\n396,560,9.0\n396,561,8.5\n396,562,8.0\n396,563,7.5\n396,564,7.0\n396,565,6.5\n396,566,6.0\n396,567,5.5\n396,568,5.0\n396,569,4.5\n396,570,4.0\n396,571,3.5\n396,572,4.0\n396,573,4.5\n396,574,5.0\n396,575,14.5\n396,576,14.0\n396,577,13.5\n396,578,13.0\n396,579,12.5\n396,580,12.0\n396,581,11.5\n396,582,11.0\n396,583,10.5\n396,584,10.0\n396,585,9.5\n396,586,9.0\n396,587,8.5\n396,588,8.0\n396,589,7.5\n396,590,7.0\n396,591,6.5\n396,592,6.0\n396,593,5.5\n396,594,5.0\n396,595,4.5\n396,596,4.0\n396,597,4.5\n396,598,5.0\n396,599,5.5\n396,600,15.0\n396,601,14.5\n396,602,14.0\n396,603,13.5\n396,604,13.0\n396,605,12.5\n396,606,12.0\n396,607,11.5\n396,608,11.0\n396,609,10.5\n396,610,10.0\n396,611,9.5\n396,612,9.0\n396,613,8.5\n396,614,8.0\n396,615,7.5\n396,616,7.0\n396,617,6.5\n396,618,6.0\n396,619,5.5\n396,620,5.0\n396,621,4.5\n396,622,5.0\n396,623,5.5\n396,624,6.0\n397,0,18.5\n397,1,18.0\n397,2,17.5\n397,3,17.0\n397,4,16.5\n397,5,16.0\n397,6,15.5\n397,7,15.0\n397,8,14.5\n397,9,14.0\n397,10,13.5\n397,11,13.0\n397,12,12.5\n397,13,12.0\n397,14,11.5\n397,15,11.0\n397,16,10.5\n397,17,10.0\n397,18,9.5\n397,19,9.0\n397,20,8.5\n397,21,8.0\n397,22,7.5\n397,23,8.0\n397,24,8.5\n397,25,18.0\n397,26,17.5\n397,27,17.0\n397,28,16.5\n397,29,16.0\n397,30,15.5\n397,31,15.0\n397,32,14.5\n397,33,14.0\n397,34,13.5\n397,35,13.0\n397,36,12.5\n397,37,12.0\n397,38,11.5\n397,39,11.0\n397,40,10.5\n397,41,10.0\n397,42,9.5\n397,43,9.0\n397,44,8.5\n397,45,8.0\n397,46,7.5\n397,47,7.0\n397,48,7.5\n397,49,8.0\n397,50,17.5\n397,51,17.0\n397,52,16.5\n397,53,16.0\n397,54,15.5\n397,55,15.0\n397,56,14.5\n397,57,14.0\n397,58,13.5\n397,59,13.0\n397,60,12.5\n397,61,12.0\n397,62,11.5\n397,63,11.0\n397,64,10.5\n397,65,10.0\n397,66,9.5\n397,67,9.0\n397,68,8.5\n397,69,8.0\n397,70,7.5\n397,71,7.0\n397,72,6.5\n397,73,7.0\n397,74,7.5\n397,75,17.0\n397,76,16.5\n397,77,16.0\n397,78,15.5\n397,79,15.0\n397,80,14.5\n397,81,14.0\n397,82,13.5\n397,83,13.0\n397,84,12.5\n397,85,12.0\n397,86,11.5\n397,87,11.0\n397,88,10.5\n397,89,10.0\n397,90,9.5\n397,91,9.0\n397,92,8.5\n397,93,8.0\n397,94,7.5\n397,95,7.0\n397,96,6.5\n397,97,6.0\n397,98,6.5\n397,99,7.0\n397,100,16.5\n397,101,16.0\n397,102,15.5\n397,103,15.0\n397,104,14.5\n397,105,14.0\n397,106,13.5\n397,107,13.0\n397,108,12.5\n397,109,12.0\n397,110,11.5\n397,111,11.0\n397,112,10.5\n397,113,10.0\n397,114,9.5\n397,115,9.0\n397,116,8.5\n397,117,8.0\n397,118,7.5\n397,119,7.0\n397,120,6.5\n397,121,6.0\n397,122,5.5\n397,123,6.0\n397,124,6.5\n397,125,16.0\n397,126,15.5\n397,127,15.0\n397,128,14.5\n397,129,14.0\n397,130,13.5\n397,131,13.0\n397,132,12.5\n397,133,12.0\n397,134,11.5\n397,135,11.0\n397,136,10.5\n397,137,10.0\n397,138,9.5\n397,139,9.0\n397,140,8.5\n397,141,8.0\n397,142,7.5\n397,143,7.0\n397,144,6.5\n397,145,6.0\n397,146,5.5\n397,147,5.0\n397,148,5.5\n397,149,6.0\n397,150,15.5\n397,151,15.0\n397,152,14.5\n397,153,14.0\n397,154,13.5\n397,155,13.0\n397,156,12.5\n397,157,12.0\n397,158,11.5\n397,159,11.0\n397,160,10.5\n397,161,10.0\n397,162,9.5\n397,163,9.0\n397,164,8.5\n397,165,8.0\n397,166,7.5\n397,167,7.0\n397,168,6.5\n397,169,6.0\n397,170,5.5\n397,171,5.0\n397,172,4.5\n397,173,5.0\n397,174,5.5\n397,175,15.0\n397,176,14.5\n397,177,14.0\n397,178,13.5\n397,179,13.0\n397,180,12.5\n397,181,12.0\n397,182,11.5\n397,183,11.0\n397,184,10.5\n397,185,10.0\n397,186,9.5\n397,187,9.0\n397,188,8.5\n397,189,8.0\n397,190,7.5\n397,191,7.0\n397,192,6.5\n397,193,6.0\n397,194,5.5\n397,195,5.0\n397,196,4.5\n397,197,4.0\n397,198,4.5\n397,199,5.0\n397,200,14.5\n397,201,14.0\n397,202,13.5\n397,203,13.0\n397,204,12.5\n397,205,12.0\n397,206,11.5\n397,207,11.0\n397,208,10.5\n397,209,10.0\n397,210,9.5\n397,211,9.0\n397,212,8.5\n397,213,8.0\n397,214,7.5\n397,215,7.0\n397,216,6.5\n397,217,6.0\n397,218,5.5\n397,219,5.0\n397,220,4.5\n397,221,4.0\n397,222,3.5\n397,223,4.0\n397,224,4.5\n397,225,14.0\n397,226,13.5\n397,227,13.0\n397,228,12.5\n397,229,12.0\n397,230,11.5\n397,231,11.0\n397,232,10.5\n397,233,10.0\n397,234,9.5\n397,235,9.0\n397,236,8.5\n397,237,8.0\n397,238,7.5\n397,239,7.0\n397,240,6.5\n397,241,6.0\n397,242,5.5\n397,243,5.0\n397,244,4.5\n397,245,4.0\n397,246,3.5\n397,247,3.0\n397,248,3.5\n397,249,4.0\n397,250,13.5\n397,251,13.0\n397,252,12.5\n397,253,12.0\n397,254,11.5\n397,255,11.0\n397,256,10.5\n397,257,10.0\n397,258,9.5\n397,259,9.0\n397,260,8.5\n397,261,8.0\n397,262,7.5\n397,263,7.0\n397,264,6.5\n397,265,6.0\n397,266,5.5\n397,267,5.0\n397,268,4.5\n397,269,4.0\n397,270,3.5\n397,271,3.0\n397,272,2.5\n397,273,3.0\n397,274,3.5\n397,275,13.0\n397,276,12.5\n397,277,12.0\n397,278,11.5\n397,279,11.0\n397,280,10.5\n397,281,10.0\n397,282,9.5\n397,283,9.0\n397,284,8.5\n397,285,8.0\n397,286,7.5\n397,287,7.0\n397,288,6.5\n397,289,6.0\n397,290,5.5\n397,291,5.0\n397,292,4.5\n397,293,4.0\n397,294,3.5\n397,295,3.0\n397,296,2.5\n397,297,2.0\n397,298,2.5\n397,299,3.0\n397,300,12.5\n397,301,12.0\n397,302,11.5\n397,303,11.0\n397,304,10.5\n397,305,10.0\n397,306,9.5\n397,307,9.0\n397,308,8.5\n397,309,8.0\n397,310,7.5\n397,311,7.0\n397,312,6.5\n397,313,6.0\n397,314,5.5\n397,315,5.0\n397,316,4.5\n397,317,4.0\n397,318,3.5\n397,319,3.0\n397,320,2.5\n397,321,2.0\n397,322,1.5\n397,323,2.0\n397,324,2.5\n397,325,12.0\n397,326,11.5\n397,327,11.0\n397,328,10.5\n397,329,10.0\n397,330,9.5\n397,331,9.0\n397,332,8.5\n397,333,8.0\n397,334,7.5\n397,335,7.0\n397,336,6.5\n397,337,6.0\n397,338,5.5\n397,339,5.0\n397,340,4.5\n397,341,4.0\n397,342,3.5\n397,343,3.0\n397,344,2.5\n397,345,2.0\n397,346,1.5\n397,347,1.0\n397,348,1.5\n397,349,2.0\n397,350,11.5\n397,351,11.0\n397,352,10.5\n397,353,10.0\n397,354,9.5\n397,355,9.0\n397,356,8.5\n397,357,8.0\n397,358,7.5\n397,359,7.0\n397,360,6.5\n397,361,6.0\n397,362,5.5\n397,363,5.0\n397,364,4.5\n397,365,4.0\n397,366,3.5\n397,367,3.0\n397,368,2.5\n397,369,2.0\n397,370,1.5\n397,371,1.0\n397,372,0.5\n397,373,1.0\n397,374,1.5\n397,375,11.0\n397,376,10.5\n397,377,10.0\n397,378,9.5\n397,379,9.0\n397,380,8.5\n397,381,8.0\n397,382,7.5\n397,383,7.0\n397,384,6.5\n397,385,6.0\n397,386,5.5\n397,387,5.0\n397,388,4.5\n397,389,4.0\n397,390,3.5\n397,391,3.0\n397,392,2.5\n397,393,2.0\n397,394,1.5\n397,395,1.0\n397,396,0.5\n397,397,0\n397,398,0.5\n397,399,1.0\n397,400,11.5\n397,401,11.0\n397,402,10.5\n397,403,10.0\n397,404,9.5\n397,405,9.0\n397,406,8.5\n397,407,8.0\n397,408,7.5\n397,409,7.0\n397,410,6.5\n397,411,6.0\n397,412,5.5\n397,413,5.0\n397,414,4.5\n397,415,4.0\n397,416,3.5\n397,417,3.0\n397,418,2.5\n397,419,2.0\n397,420,1.5\n397,421,1.0\n397,422,0.5\n397,423,1.0\n397,424,1.5\n397,425,12.0\n397,426,11.5\n397,427,11.0\n397,428,10.5\n397,429,10.0\n397,430,9.5\n397,431,9.0\n397,432,8.5\n397,433,8.0\n397,434,7.5\n397,435,7.0\n397,436,6.5\n397,437,6.0\n397,438,5.5\n397,439,5.0\n397,440,4.5\n397,441,4.0\n397,442,3.5\n397,443,3.0\n397,444,2.5\n397,445,2.0\n397,446,1.5\n397,447,1.0\n397,448,1.5\n397,449,2.0\n397,450,12.5\n397,451,12.0\n397,452,11.5\n397,453,11.0\n397,454,10.5\n397,455,10.0\n397,456,9.5\n397,457,9.0\n397,458,8.5\n397,459,8.0\n397,460,7.5\n397,461,7.0\n397,462,6.5\n397,463,6.0\n397,464,5.5\n397,465,5.0\n397,466,4.5\n397,467,4.0\n397,468,3.5\n397,469,3.0\n397,470,2.5\n397,471,2.0\n397,472,1.5\n397,473,2.0\n397,474,2.5\n397,475,13.0\n397,476,12.5\n397,477,12.0\n397,478,11.5\n397,479,11.0\n397,480,10.5\n397,481,10.0\n397,482,9.5\n397,483,9.0\n397,484,8.5\n397,485,8.0\n397,486,7.5\n397,487,7.0\n397,488,6.5\n397,489,6.0\n397,490,5.5\n397,491,5.0\n397,492,4.5\n397,493,4.0\n397,494,3.5\n397,495,3.0\n397,496,2.5\n397,497,2.0\n397,498,2.5\n397,499,3.0\n397,500,13.5\n397,501,13.0\n397,502,12.5\n397,503,12.0\n397,504,11.5\n397,505,11.0\n397,506,10.5\n397,507,10.0\n397,508,9.5\n397,509,9.0\n397,510,8.5\n397,511,8.0\n397,512,7.5\n397,513,7.0\n397,514,6.5\n397,515,6.0\n397,516,5.5\n397,517,5.0\n397,518,4.5\n397,519,4.0\n397,520,3.5\n397,521,3.0\n397,522,2.5\n397,523,3.0\n397,524,3.5\n397,525,14.0\n397,526,13.5\n397,527,13.0\n397,528,12.5\n397,529,12.0\n397,530,11.5\n397,531,11.0\n397,532,10.5\n397,533,10.0\n397,534,9.5\n397,535,9.0\n397,536,8.5\n397,537,8.0\n397,538,7.5\n397,539,7.0\n397,540,6.5\n397,541,6.0\n397,542,5.5\n397,543,5.0\n397,544,4.5\n397,545,4.0\n397,546,3.5\n397,547,3.0\n397,548,3.5\n397,549,4.0\n397,550,14.5\n397,551,14.0\n397,552,13.5\n397,553,13.0\n397,554,12.5\n397,555,12.0\n397,556,11.5\n397,557,11.0\n397,558,10.5\n397,559,10.0\n397,560,9.5\n397,561,9.0\n397,562,8.5\n397,563,8.0\n397,564,7.5\n397,565,7.0\n397,566,6.5\n397,567,6.0\n397,568,5.5\n397,569,5.0\n397,570,4.5\n397,571,4.0\n397,572,3.5\n397,573,4.0\n397,574,4.5\n397,575,15.0\n397,576,14.5\n397,577,14.0\n397,578,13.5\n397,579,13.0\n397,580,12.5\n397,581,12.0\n397,582,11.5\n397,583,11.0\n397,584,10.5\n397,585,10.0\n397,586,9.5\n397,587,9.0\n397,588,8.5\n397,589,8.0\n397,590,7.5\n397,591,7.0\n397,592,6.5\n397,593,6.0\n397,594,5.5\n397,595,5.0\n397,596,4.5\n397,597,4.0\n397,598,4.5\n397,599,5.0\n397,600,15.5\n397,601,15.0\n397,602,14.5\n397,603,14.0\n397,604,13.5\n397,605,13.0\n397,606,12.5\n397,607,12.0\n397,608,11.5\n397,609,11.0\n397,610,10.5\n397,611,10.0\n397,612,9.5\n397,613,9.0\n397,614,8.5\n397,615,8.0\n397,616,7.5\n397,617,7.0\n397,618,6.5\n397,619,6.0\n397,620,5.5\n397,621,5.0\n397,622,4.5\n397,623,5.0\n397,624,5.5\n398,0,19.0\n398,1,18.5\n398,2,18.0\n398,3,17.5\n398,4,17.0\n398,5,16.5\n398,6,16.0\n398,7,15.5\n398,8,15.0\n398,9,14.5\n398,10,14.0\n398,11,13.5\n398,12,13.0\n398,13,12.5\n398,14,12.0\n398,15,11.5\n398,16,11.0\n398,17,10.5\n398,18,10.0\n398,19,9.5\n398,20,9.0\n398,21,8.5\n398,22,8.0\n398,23,7.5\n398,24,8.0\n398,25,18.5\n398,26,18.0\n398,27,17.5\n398,28,17.0\n398,29,16.5\n398,30,16.0\n398,31,15.5\n398,32,15.0\n398,33,14.5\n398,34,14.0\n398,35,13.5\n398,36,13.0\n398,37,12.5\n398,38,12.0\n398,39,11.5\n398,40,11.0\n398,41,10.5\n398,42,10.0\n398,43,9.5\n398,44,9.0\n398,45,8.5\n398,46,8.0\n398,47,7.5\n398,48,7.0\n398,49,7.5\n398,50,18.0\n398,51,17.5\n398,52,17.0\n398,53,16.5\n398,54,16.0\n398,55,15.5\n398,56,15.0\n398,57,14.5\n398,58,14.0\n398,59,13.5\n398,60,13.0\n398,61,12.5\n398,62,12.0\n398,63,11.5\n398,64,11.0\n398,65,10.5\n398,66,10.0\n398,67,9.5\n398,68,9.0\n398,69,8.5\n398,70,8.0\n398,71,7.5\n398,72,7.0\n398,73,6.5\n398,74,7.0\n398,75,17.5\n398,76,17.0\n398,77,16.5\n398,78,16.0\n398,79,15.5\n398,80,15.0\n398,81,14.5\n398,82,14.0\n398,83,13.5\n398,84,13.0\n398,85,12.5\n398,86,12.0\n398,87,11.5\n398,88,11.0\n398,89,10.5\n398,90,10.0\n398,91,9.5\n398,92,9.0\n398,93,8.5\n398,94,8.0\n398,95,7.5\n398,96,7.0\n398,97,6.5\n398,98,6.0\n398,99,6.5\n398,100,17.0\n398,101,16.5\n398,102,16.0\n398,103,15.5\n398,104,15.0\n398,105,14.5\n398,106,14.0\n398,107,13.5\n398,108,13.0\n398,109,12.5\n398,110,12.0\n398,111,11.5\n398,112,11.0\n398,113,10.5\n398,114,10.0\n398,115,9.5\n398,116,9.0\n398,117,8.5\n398,118,8.0\n398,119,7.5\n398,120,7.0\n398,121,6.5\n398,122,6.0\n398,123,5.5\n398,124,6.0\n398,125,16.5\n398,126,16.0\n398,127,15.5\n398,128,15.0\n398,129,14.5\n398,130,14.0\n398,131,13.5\n398,132,13.0\n398,133,12.5\n398,134,12.0\n398,135,11.5\n398,136,11.0\n398,137,10.5\n398,138,10.0\n398,139,9.5\n398,140,9.0\n398,141,8.5\n398,142,8.0\n398,143,7.5\n398,144,7.0\n398,145,6.5\n398,146,6.0\n398,147,5.5\n398,148,5.0\n398,149,5.5\n398,150,16.0\n398,151,15.5\n398,152,15.0\n398,153,14.5\n398,154,14.0\n398,155,13.5\n398,156,13.0\n398,157,12.5\n398,158,12.0\n398,159,11.5\n398,160,11.0\n398,161,10.5\n398,162,10.0\n398,163,9.5\n398,164,9.0\n398,165,8.5\n398,166,8.0\n398,167,7.5\n398,168,7.0\n398,169,6.5\n398,170,6.0\n398,171,5.5\n398,172,5.0\n398,173,4.5\n398,174,5.0\n398,175,15.5\n398,176,15.0\n398,177,14.5\n398,178,14.0\n398,179,13.5\n398,180,13.0\n398,181,12.5\n398,182,12.0\n398,183,11.5\n398,184,11.0\n398,185,10.5\n398,186,10.0\n398,187,9.5\n398,188,9.0\n398,189,8.5\n398,190,8.0\n398,191,7.5\n398,192,7.0\n398,193,6.5\n398,194,6.0\n398,195,5.5\n398,196,5.0\n398,197,4.5\n398,198,4.0\n398,199,4.5\n398,200,15.0\n398,201,14.5\n398,202,14.0\n398,203,13.5\n398,204,13.0\n398,205,12.5\n398,206,12.0\n398,207,11.5\n398,208,11.0\n398,209,10.5\n398,210,10.0\n398,211,9.5\n398,212,9.0\n398,213,8.5\n398,214,8.0\n398,215,7.5\n398,216,7.0\n398,217,6.5\n398,218,6.0\n398,219,5.5\n398,220,5.0\n398,221,4.5\n398,222,4.0\n398,223,3.5\n398,224,4.0\n398,225,14.5\n398,226,14.0\n398,227,13.5\n398,228,13.0\n398,229,12.5\n398,230,12.0\n398,231,11.5\n398,232,11.0\n398,233,10.5\n398,234,10.0\n398,235,9.5\n398,236,9.0\n398,237,8.5\n398,238,8.0\n398,239,7.5\n398,240,7.0\n398,241,6.5\n398,242,6.0\n398,243,5.5\n398,244,5.0\n398,245,4.5\n398,246,4.0\n398,247,3.5\n398,248,3.0\n398,249,3.5\n398,250,14.0\n398,251,13.5\n398,252,13.0\n398,253,12.5\n398,254,12.0\n398,255,11.5\n398,256,11.0\n398,257,10.5\n398,258,10.0\n398,259,9.5\n398,260,9.0\n398,261,8.5\n398,262,8.0\n398,263,7.5\n398,264,7.0\n398,265,6.5\n398,266,6.0\n398,267,5.5\n398,268,5.0\n398,269,4.5\n398,270,4.0\n398,271,3.5\n398,272,3.0\n398,273,2.5\n398,274,3.0\n398,275,13.5\n398,276,13.0\n398,277,12.5\n398,278,12.0\n398,279,11.5\n398,280,11.0\n398,281,10.5\n398,282,10.0\n398,283,9.5\n398,284,9.0\n398,285,8.5\n398,286,8.0\n398,287,7.5\n398,288,7.0\n398,289,6.5\n398,290,6.0\n398,291,5.5\n398,292,5.0\n398,293,4.5\n398,294,4.0\n398,295,3.5\n398,296,3.0\n398,297,2.5\n398,298,2.0\n398,299,2.5\n398,300,13.0\n398,301,12.5\n398,302,12.0\n398,303,11.5\n398,304,11.0\n398,305,10.5\n398,306,10.0\n398,307,9.5\n398,308,9.0\n398,309,8.5\n398,310,8.0\n398,311,7.5\n398,312,7.0\n398,313,6.5\n398,314,6.0\n398,315,5.5\n398,316,5.0\n398,317,4.5\n398,318,4.0\n398,319,3.5\n398,320,3.0\n398,321,2.5\n398,322,2.0\n398,323,1.5\n398,324,2.0\n398,325,12.5\n398,326,12.0\n398,327,11.5\n398,328,11.0\n398,329,10.5\n398,330,10.0\n398,331,9.5\n398,332,9.0\n398,333,8.5\n398,334,8.0\n398,335,7.5\n398,336,7.0\n398,337,6.5\n398,338,6.0\n398,339,5.5\n398,340,5.0\n398,341,4.5\n398,342,4.0\n398,343,3.5\n398,344,3.0\n398,345,2.5\n398,346,2.0\n398,347,1.5\n398,348,1.0\n398,349,1.5\n398,350,12.0\n398,351,11.5\n398,352,11.0\n398,353,10.5\n398,354,10.0\n398,355,9.5\n398,356,9.0\n398,357,8.5\n398,358,8.0\n398,359,7.5\n398,360,7.0\n398,361,6.5\n398,362,6.0\n398,363,5.5\n398,364,5.0\n398,365,4.5\n398,366,4.0\n398,367,3.5\n398,368,3.0\n398,369,2.5\n398,370,2.0\n398,371,1.5\n398,372,1.0\n398,373,0.5\n398,374,1.0\n398,375,11.5\n398,376,11.0\n398,377,10.5\n398,378,10.0\n398,379,9.5\n398,380,9.0\n398,381,8.5\n398,382,8.0\n398,383,7.5\n398,384,7.0\n398,385,6.5\n398,386,6.0\n398,387,5.5\n398,388,5.0\n398,389,4.5\n398,390,4.0\n398,391,3.5\n398,392,3.0\n398,393,2.5\n398,394,2.0\n398,395,1.5\n398,396,1.0\n398,397,0.5\n398,398,0\n398,399,0.5\n398,400,12.0\n398,401,11.5\n398,402,11.0\n398,403,10.5\n398,404,10.0\n398,405,9.5\n398,406,9.0\n398,407,8.5\n398,408,8.0\n398,409,7.5\n398,410,7.0\n398,411,6.5\n398,412,6.0\n398,413,5.5\n398,414,5.0\n398,415,4.5\n398,416,4.0\n398,417,3.5\n398,418,3.0\n398,419,2.5\n398,420,2.0\n398,421,1.5\n398,422,1.0\n398,423,0.5\n398,424,1.0\n398,425,12.5\n398,426,12.0\n398,427,11.5\n398,428,11.0\n398,429,10.5\n398,430,10.0\n398,431,9.5\n398,432,9.0\n398,433,8.5\n398,434,8.0\n398,435,7.5\n398,436,7.0\n398,437,6.5\n398,438,6.0\n398,439,5.5\n398,440,5.0\n398,441,4.5\n398,442,4.0\n398,443,3.5\n398,444,3.0\n398,445,2.5\n398,446,2.0\n398,447,1.5\n398,448,1.0\n398,449,1.5\n398,450,13.0\n398,451,12.5\n398,452,12.0\n398,453,11.5\n398,454,11.0\n398,455,10.5\n398,456,10.0\n398,457,9.5\n398,458,9.0\n398,459,8.5\n398,460,8.0\n398,461,7.5\n398,462,7.0\n398,463,6.5\n398,464,6.0\n398,465,5.5\n398,466,5.0\n398,467,4.5\n398,468,4.0\n398,469,3.5\n398,470,3.0\n398,471,2.5\n398,472,2.0\n398,473,1.5\n398,474,2.0\n398,475,13.5\n398,476,13.0\n398,477,12.5\n398,478,12.0\n398,479,11.5\n398,480,11.0\n398,481,10.5\n398,482,10.0\n398,483,9.5\n398,484,9.0\n398,485,8.5\n398,486,8.0\n398,487,7.5\n398,488,7.0\n398,489,6.5\n398,490,6.0\n398,491,5.5\n398,492,5.0\n398,493,4.5\n398,494,4.0\n398,495,3.5\n398,496,3.0\n398,497,2.5\n398,498,2.0\n398,499,2.5\n398,500,14.0\n398,501,13.5\n398,502,13.0\n398,503,12.5\n398,504,12.0\n398,505,11.5\n398,506,11.0\n398,507,10.5\n398,508,10.0\n398,509,9.5\n398,510,9.0\n398,511,8.5\n398,512,8.0\n398,513,7.5\n398,514,7.0\n398,515,6.5\n398,516,6.0\n398,517,5.5\n398,518,5.0\n398,519,4.5\n398,520,4.0\n398,521,3.5\n398,522,3.0\n398,523,2.5\n398,524,3.0\n398,525,14.5\n398,526,14.0\n398,527,13.5\n398,528,13.0\n398,529,12.5\n398,530,12.0\n398,531,11.5\n398,532,11.0\n398,533,10.5\n398,534,10.0\n398,535,9.5\n398,536,9.0\n398,537,8.5\n398,538,8.0\n398,539,7.5\n398,540,7.0\n398,541,6.5\n398,542,6.0\n398,543,5.5\n398,544,5.0\n398,545,4.5\n398,546,4.0\n398,547,3.5\n398,548,3.0\n398,549,3.5\n398,550,15.0\n398,551,14.5\n398,552,14.0\n398,553,13.5\n398,554,13.0\n398,555,12.5\n398,556,12.0\n398,557,11.5\n398,558,11.0\n398,559,10.5\n398,560,10.0\n398,561,9.5\n398,562,9.0\n398,563,8.5\n398,564,8.0\n398,565,7.5\n398,566,7.0\n398,567,6.5\n398,568,6.0\n398,569,5.5\n398,570,5.0\n398,571,4.5\n398,572,4.0\n398,573,3.5\n398,574,4.0\n398,575,15.5\n398,576,15.0\n398,577,14.5\n398,578,14.0\n398,579,13.5\n398,580,13.0\n398,581,12.5\n398,582,12.0\n398,583,11.5\n398,584,11.0\n398,585,10.5\n398,586,10.0\n398,587,9.5\n398,588,9.0\n398,589,8.5\n398,590,8.0\n398,591,7.5\n398,592,7.0\n398,593,6.5\n398,594,6.0\n398,595,5.5\n398,596,5.0\n398,597,4.5\n398,598,4.0\n398,599,4.5\n398,600,16.0\n398,601,15.5\n398,602,15.0\n398,603,14.5\n398,604,14.0\n398,605,13.5\n398,606,13.0\n398,607,12.5\n398,608,12.0\n398,609,11.5\n398,610,11.0\n398,611,10.5\n398,612,10.0\n398,613,9.5\n398,614,9.0\n398,615,8.5\n398,616,8.0\n398,617,7.5\n398,618,7.0\n398,619,6.5\n398,620,6.0\n398,621,5.5\n398,622,5.0\n398,623,4.5\n398,624,5.0\n399,0,19.5\n399,1,19.0\n399,2,18.5\n399,3,18.0\n399,4,17.5\n399,5,17.0\n399,6,16.5\n399,7,16.0\n399,8,15.5\n399,9,15.0\n399,10,14.5\n399,11,14.0\n399,12,13.5\n399,13,13.0\n399,14,12.5\n399,15,12.0\n399,16,11.5\n399,17,11.0\n399,18,10.5\n399,19,10.0\n399,20,9.5\n399,21,9.0\n399,22,8.5\n399,23,8.0\n399,24,7.5\n399,25,19.0\n399,26,18.5\n399,27,18.0\n399,28,17.5\n399,29,17.0\n399,30,16.5\n399,31,16.0\n399,32,15.5\n399,33,15.0\n399,34,14.5\n399,35,14.0\n399,36,13.5\n399,37,13.0\n399,38,12.5\n399,39,12.0\n399,40,11.5\n399,41,11.0\n399,42,10.5\n399,43,10.0\n399,44,9.5\n399,45,9.0\n399,46,8.5\n399,47,8.0\n399,48,7.5\n399,49,7.0\n399,50,18.5\n399,51,18.0\n399,52,17.5\n399,53,17.0\n399,54,16.5\n399,55,16.0\n399,56,15.5\n399,57,15.0\n399,58,14.5\n399,59,14.0\n399,60,13.5\n399,61,13.0\n399,62,12.5\n399,63,12.0\n399,64,11.5\n399,65,11.0\n399,66,10.5\n399,67,10.0\n399,68,9.5\n399,69,9.0\n399,70,8.5\n399,71,8.0\n399,72,7.5\n399,73,7.0\n399,74,6.5\n399,75,18.0\n399,76,17.5\n399,77,17.0\n399,78,16.5\n399,79,16.0\n399,80,15.5\n399,81,15.0\n399,82,14.5\n399,83,14.0\n399,84,13.5\n399,85,13.0\n399,86,12.5\n399,87,12.0\n399,88,11.5\n399,89,11.0\n399,90,10.5\n399,91,10.0\n399,92,9.5\n399,93,9.0\n399,94,8.5\n399,95,8.0\n399,96,7.5\n399,97,7.0\n399,98,6.5\n399,99,6.0\n399,100,17.5\n399,101,17.0\n399,102,16.5\n399,103,16.0\n399,104,15.5\n399,105,15.0\n399,106,14.5\n399,107,14.0\n399,108,13.5\n399,109,13.0\n399,110,12.5\n399,111,12.0\n399,112,11.5\n399,113,11.0\n399,114,10.5\n399,115,10.0\n399,116,9.5\n399,117,9.0\n399,118,8.5\n399,119,8.0\n399,120,7.5\n399,121,7.0\n399,122,6.5\n399,123,6.0\n399,124,5.5\n399,125,17.0\n399,126,16.5\n399,127,16.0\n399,128,15.5\n399,129,15.0\n399,130,14.5\n399,131,14.0\n399,132,13.5\n399,133,13.0\n399,134,12.5\n399,135,12.0\n399,136,11.5\n399,137,11.0\n399,138,10.5\n399,139,10.0\n399,140,9.5\n399,141,9.0\n399,142,8.5\n399,143,8.0\n399,144,7.5\n399,145,7.0\n399,146,6.5\n399,147,6.0\n399,148,5.5\n399,149,5.0\n399,150,16.5\n399,151,16.0\n399,152,15.5\n399,153,15.0\n399,154,14.5\n399,155,14.0\n399,156,13.5\n399,157,13.0\n399,158,12.5\n399,159,12.0\n399,160,11.5\n399,161,11.0\n399,162,10.5\n399,163,10.0\n399,164,9.5\n399,165,9.0\n399,166,8.5\n399,167,8.0\n399,168,7.5\n399,169,7.0\n399,170,6.5\n399,171,6.0\n399,172,5.5\n399,173,5.0\n399,174,4.5\n399,175,16.0\n399,176,15.5\n399,177,15.0\n399,178,14.5\n399,179,14.0\n399,180,13.5\n399,181,13.0\n399,182,12.5\n399,183,12.0\n399,184,11.5\n399,185,11.0\n399,186,10.5\n399,187,10.0\n399,188,9.5\n399,189,9.0\n399,190,8.5\n399,191,8.0\n399,192,7.5\n399,193,7.0\n399,194,6.5\n399,195,6.0\n399,196,5.5\n399,197,5.0\n399,198,4.5\n399,199,4.0\n399,200,15.5\n399,201,15.0\n399,202,14.5\n399,203,14.0\n399,204,13.5\n399,205,13.0\n399,206,12.5\n399,207,12.0\n399,208,11.5\n399,209,11.0\n399,210,10.5\n399,211,10.0\n399,212,9.5\n399,213,9.0\n399,214,8.5\n399,215,8.0\n399,216,7.5\n399,217,7.0\n399,218,6.5\n399,219,6.0\n399,220,5.5\n399,221,5.0\n399,222,4.5\n399,223,4.0\n399,224,3.5\n399,225,15.0\n399,226,14.5\n399,227,14.0\n399,228,13.5\n399,229,13.0\n399,230,12.5\n399,231,12.0\n399,232,11.5\n399,233,11.0\n399,234,10.5\n399,235,10.0\n399,236,9.5\n399,237,9.0\n399,238,8.5\n399,239,8.0\n399,240,7.5\n399,241,7.0\n399,242,6.5\n399,243,6.0\n399,244,5.5\n399,245,5.0\n399,246,4.5\n399,247,4.0\n399,248,3.5\n399,249,3.0\n399,250,14.5\n399,251,14.0\n399,252,13.5\n399,253,13.0\n399,254,12.5\n399,255,12.0\n399,256,11.5\n399,257,11.0\n399,258,10.5\n399,259,10.0\n399,260,9.5\n399,261,9.0\n399,262,8.5\n399,263,8.0\n399,264,7.5\n399,265,7.0\n399,266,6.5\n399,267,6.0\n399,268,5.5\n399,269,5.0\n399,270,4.5\n399,271,4.0\n399,272,3.5\n399,273,3.0\n399,274,2.5\n399,275,14.0\n399,276,13.5\n399,277,13.0\n399,278,12.5\n399,279,12.0\n399,280,11.5\n399,281,11.0\n399,282,10.5\n399,283,10.0\n399,284,9.5\n399,285,9.0\n399,286,8.5\n399,287,8.0\n399,288,7.5\n399,289,7.0\n399,290,6.5\n399,291,6.0\n399,292,5.5\n399,293,5.0\n399,294,4.5\n399,295,4.0\n399,296,3.5\n399,297,3.0\n399,298,2.5\n399,299,2.0\n399,300,13.5\n399,301,13.0\n399,302,12.5\n399,303,12.0\n399,304,11.5\n399,305,11.0\n399,306,10.5\n399,307,10.0\n399,308,9.5\n399,309,9.0\n399,310,8.5\n399,311,8.0\n399,312,7.5\n399,313,7.0\n399,314,6.5\n399,315,6.0\n399,316,5.5\n399,317,5.0\n399,318,4.5\n399,319,4.0\n399,320,3.5\n399,321,3.0\n399,322,2.5\n399,323,2.0\n399,324,1.5\n399,325,13.0\n399,326,12.5\n399,327,12.0\n399,328,11.5\n399,329,11.0\n399,330,10.5\n399,331,10.0\n399,332,9.5\n399,333,9.0\n399,334,8.5\n399,335,8.0\n399,336,7.5\n399,337,7.0\n399,338,6.5\n399,339,6.0\n399,340,5.5\n399,341,5.0\n399,342,4.5\n399,343,4.0\n399,344,3.5\n399,345,3.0\n399,346,2.5\n399,347,2.0\n399,348,1.5\n399,349,1.0\n399,350,12.5\n399,351,12.0\n399,352,11.5\n399,353,11.0\n399,354,10.5\n399,355,10.0\n399,356,9.5\n399,357,9.0\n399,358,8.5\n399,359,8.0\n399,360,7.5\n399,361,7.0\n399,362,6.5\n399,363,6.0\n399,364,5.5\n399,365,5.0\n399,366,4.5\n399,367,4.0\n399,368,3.5\n399,369,3.0\n399,370,2.5\n399,371,2.0\n399,372,1.5\n399,373,1.0\n399,374,0.5\n399,375,12.0\n399,376,11.5\n399,377,11.0\n399,378,10.5\n399,379,10.0\n399,380,9.5\n399,381,9.0\n399,382,8.5\n399,383,8.0\n399,384,7.5\n399,385,7.0\n399,386,6.5\n399,387,6.0\n399,388,5.5\n399,389,5.0\n399,390,4.5\n399,391,4.0\n399,392,3.5\n399,393,3.0\n399,394,2.5\n399,395,2.0\n399,396,1.5\n399,397,1.0\n399,398,0.5\n399,399,0\n399,400,12.5\n399,401,12.0\n399,402,11.5\n399,403,11.0\n399,404,10.5\n399,405,10.0\n399,406,9.5\n399,407,9.0\n399,408,8.5\n399,409,8.0\n399,410,7.5\n399,411,7.0\n399,412,6.5\n399,413,6.0\n399,414,5.5\n399,415,5.0\n399,416,4.5\n399,417,4.0\n399,418,3.5\n399,419,3.0\n399,420,2.5\n399,421,2.0\n399,422,1.5\n399,423,1.0\n399,424,0.5\n399,425,13.0\n399,426,12.5\n399,427,12.0\n399,428,11.5\n399,429,11.0\n399,430,10.5\n399,431,10.0\n399,432,9.5\n399,433,9.0\n399,434,8.5\n399,435,8.0\n399,436,7.5\n399,437,7.0\n399,438,6.5\n399,439,6.0\n399,440,5.5\n399,441,5.0\n399,442,4.5\n399,443,4.0\n399,444,3.5\n399,445,3.0\n399,446,2.5\n399,447,2.0\n399,448,1.5\n399,449,1.0\n399,450,13.5\n399,451,13.0\n399,452,12.5\n399,453,12.0\n399,454,11.5\n399,455,11.0\n399,456,10.5\n399,457,10.0\n399,458,9.5\n399,459,9.0\n399,460,8.5\n399,461,8.0\n399,462,7.5\n399,463,7.0\n399,464,6.5\n399,465,6.0\n399,466,5.5\n399,467,5.0\n399,468,4.5\n399,469,4.0\n399,470,3.5\n399,471,3.0\n399,472,2.5\n399,473,2.0\n399,474,1.5\n399,475,14.0\n399,476,13.5\n399,477,13.0\n399,478,12.5\n399,479,12.0\n399,480,11.5\n399,481,11.0\n399,482,10.5\n399,483,10.0\n399,484,9.5\n399,485,9.0\n399,486,8.5\n399,487,8.0\n399,488,7.5\n399,489,7.0\n399,490,6.5\n399,491,6.0\n399,492,5.5\n399,493,5.0\n399,494,4.5\n399,495,4.0\n399,496,3.5\n399,497,3.0\n399,498,2.5\n399,499,2.0\n399,500,14.5\n399,501,14.0\n399,502,13.5\n399,503,13.0\n399,504,12.5\n399,505,12.0\n399,506,11.5\n399,507,11.0\n399,508,10.5\n399,509,10.0\n399,510,9.5\n399,511,9.0\n399,512,8.5\n399,513,8.0\n399,514,7.5\n399,515,7.0\n399,516,6.5\n399,517,6.0\n399,518,5.5\n399,519,5.0\n399,520,4.5\n399,521,4.0\n399,522,3.5\n399,523,3.0\n399,524,2.5\n399,525,15.0\n399,526,14.5\n399,527,14.0\n399,528,13.5\n399,529,13.0\n399,530,12.5\n399,531,12.0\n399,532,11.5\n399,533,11.0\n399,534,10.5\n399,535,10.0\n399,536,9.5\n399,537,9.0\n399,538,8.5\n399,539,8.0\n399,540,7.5\n399,541,7.0\n399,542,6.5\n399,543,6.0\n399,544,5.5\n399,545,5.0\n399,546,4.5\n399,547,4.0\n399,548,3.5\n399,549,3.0\n399,550,15.5\n399,551,15.0\n399,552,14.5\n399,553,14.0\n399,554,13.5\n399,555,13.0\n399,556,12.5\n399,557,12.0\n399,558,11.5\n399,559,11.0\n399,560,10.5\n399,561,10.0\n399,562,9.5\n399,563,9.0\n399,564,8.5\n399,565,8.0\n399,566,7.5\n399,567,7.0\n399,568,6.5\n399,569,6.0\n399,570,5.5\n399,571,5.0\n399,572,4.5\n399,573,4.0\n399,574,3.5\n399,575,16.0\n399,576,15.5\n399,577,15.0\n399,578,14.5\n399,579,14.0\n399,580,13.5\n399,581,13.0\n399,582,12.5\n399,583,12.0\n399,584,11.5\n399,585,11.0\n399,586,10.5\n399,587,10.0\n399,588,9.5\n399,589,9.0\n399,590,8.5\n399,591,8.0\n399,592,7.5\n399,593,7.0\n399,594,6.5\n399,595,6.0\n399,596,5.5\n399,597,5.0\n399,598,4.5\n399,599,4.0\n399,600,16.5\n399,601,16.0\n399,602,15.5\n399,603,15.0\n399,604,14.5\n399,605,14.0\n399,606,13.5\n399,607,13.0\n399,608,12.5\n399,609,12.0\n399,610,11.5\n399,611,11.0\n399,612,10.5\n399,613,10.0\n399,614,9.5\n399,615,9.0\n399,616,8.5\n399,617,8.0\n399,618,7.5\n399,619,7.0\n399,620,6.5\n399,621,6.0\n399,622,5.5\n399,623,5.0\n399,624,4.5\n400,0,8.0\n400,1,8.5\n400,2,9.0\n400,3,9.5\n400,4,10.0\n400,5,10.5\n400,6,11.0\n400,7,11.5\n400,8,12.0\n400,9,12.5\n400,10,13.0\n400,11,13.5\n400,12,14.0\n400,13,14.5\n400,14,15.0\n400,15,15.5\n400,16,16.0\n400,17,16.5\n400,18,17.0\n400,19,17.5\n400,20,18.0\n400,21,18.5\n400,22,19.0\n400,23,19.5\n400,24,20.0\n400,25,7.5\n400,26,8.0\n400,27,8.5\n400,28,9.0\n400,29,9.5\n400,30,10.0\n400,31,10.5\n400,32,11.0\n400,33,11.5\n400,34,12.0\n400,35,12.5\n400,36,13.0\n400,37,13.5\n400,38,14.0\n400,39,14.5\n400,40,15.0\n400,41,15.5\n400,42,16.0\n400,43,16.5\n400,44,17.0\n400,45,17.5\n400,46,18.0\n400,47,18.5\n400,48,19.0\n400,49,19.5\n400,50,7.0\n400,51,7.5\n400,52,8.0\n400,53,8.5\n400,54,9.0\n400,55,9.5\n400,56,10.0\n400,57,10.5\n400,58,11.0\n400,59,11.5\n400,60,12.0\n400,61,12.5\n400,62,13.0\n400,63,13.5\n400,64,14.0\n400,65,14.5\n400,66,15.0\n400,67,15.5\n400,68,16.0\n400,69,16.5\n400,70,17.0\n400,71,17.5\n400,72,18.0\n400,73,18.5\n400,74,19.0\n400,75,6.5\n400,76,7.0\n400,77,7.5\n400,78,8.0\n400,79,8.5\n400,80,9.0\n400,81,9.5\n400,82,10.0\n400,83,10.5\n400,84,11.0\n400,85,11.5\n400,86,12.0\n400,87,12.5\n400,88,13.0\n400,89,13.5\n400,90,14.0\n400,91,14.5\n400,92,15.0\n400,93,15.5\n400,94,16.0\n400,95,16.5\n400,96,17.0\n400,97,17.5\n400,98,18.0\n400,99,18.5\n400,100,6.0\n400,101,6.5\n400,102,7.0\n400,103,7.5\n400,104,8.0\n400,105,8.5\n400,106,9.0\n400,107,9.5\n400,108,10.0\n400,109,10.5\n400,110,11.0\n400,111,11.5\n400,112,12.0\n400,113,12.5\n400,114,13.0\n400,115,13.5\n400,116,14.0\n400,117,14.5\n400,118,15.0\n400,119,15.5\n400,120,16.0\n400,121,16.5\n400,122,17.0\n400,123,17.5\n400,124,18.0\n400,125,5.5\n400,126,6.0\n400,127,6.5\n400,128,7.0\n400,129,7.5\n400,130,8.0\n400,131,8.5\n400,132,9.0\n400,133,9.5\n400,134,10.0\n400,135,10.5\n400,136,11.0\n400,137,11.5\n400,138,12.0\n400,139,12.5\n400,140,13.0\n400,141,13.5\n400,142,14.0\n400,143,14.5\n400,144,15.0\n400,145,15.5\n400,146,16.0\n400,147,16.5\n400,148,17.0\n400,149,17.5\n400,150,5.0\n400,151,5.5\n400,152,6.0\n400,153,6.5\n400,154,7.0\n400,155,7.5\n400,156,8.0\n400,157,8.5\n400,158,9.0\n400,159,9.5\n400,160,10.0\n400,161,10.5\n400,162,11.0\n400,163,11.5\n400,164,12.0\n400,165,12.5\n400,166,13.0\n400,167,13.5\n400,168,14.0\n400,169,14.5\n400,170,15.0\n400,171,15.5\n400,172,16.0\n400,173,16.5\n400,174,17.0\n400,175,4.5\n400,176,5.0\n400,177,5.5\n400,178,6.0\n400,179,6.5\n400,180,7.0\n400,181,7.5\n400,182,8.0\n400,183,8.5\n400,184,9.0\n400,185,9.5\n400,186,10.0\n400,187,10.5\n400,188,11.0\n400,189,11.5\n400,190,12.0\n400,191,12.5\n400,192,13.0\n400,193,13.5\n400,194,14.0\n400,195,14.5\n400,196,15.0\n400,197,15.5\n400,198,16.0\n400,199,16.5\n400,200,4.0\n400,201,4.5\n400,202,5.0\n400,203,5.5\n400,204,6.0\n400,205,6.5\n400,206,7.0\n400,207,7.5\n400,208,8.0\n400,209,8.5\n400,210,9.0\n400,211,9.5\n400,212,10.0\n400,213,10.5\n400,214,11.0\n400,215,11.5\n400,216,12.0\n400,217,12.5\n400,218,13.0\n400,219,13.5\n400,220,14.0\n400,221,14.5\n400,222,15.0\n400,223,15.5\n400,224,16.0\n400,225,3.5\n400,226,4.0\n400,227,4.5\n400,228,5.0\n400,229,5.5\n400,230,6.0\n400,231,6.5\n400,232,7.0\n400,233,7.5\n400,234,8.0\n400,235,8.5\n400,236,9.0\n400,237,9.5\n400,238,10.0\n400,239,10.5\n400,240,11.0\n400,241,11.5\n400,242,12.0\n400,243,12.5\n400,244,13.0\n400,245,13.5\n400,246,14.0\n400,247,14.5\n400,248,15.0\n400,249,15.5\n400,250,3.0\n400,251,3.5\n400,252,4.0\n400,253,4.5\n400,254,5.0\n400,255,5.5\n400,256,6.0\n400,257,6.5\n400,258,7.0\n400,259,7.5\n400,260,8.0\n400,261,8.5\n400,262,9.0\n400,263,9.5\n400,264,10.0\n400,265,10.5\n400,266,11.0\n400,267,11.5\n400,268,12.0\n400,269,12.5\n400,270,13.0\n400,271,13.5\n400,272,14.0\n400,273,14.5\n400,274,15.0\n400,275,2.5\n400,276,3.0\n400,277,3.5\n400,278,4.0\n400,279,4.5\n400,280,5.0\n400,281,5.5\n400,282,6.0\n400,283,6.5\n400,284,7.0\n400,285,7.5\n400,286,8.0\n400,287,8.5\n400,288,9.0\n400,289,9.5\n400,290,10.0\n400,291,10.5\n400,292,11.0\n400,293,11.5\n400,294,12.0\n400,295,12.5\n400,296,13.0\n400,297,13.5\n400,298,14.0\n400,299,14.5\n400,300,2.0\n400,301,2.5\n400,302,3.0\n400,303,3.5\n400,304,4.0\n400,305,4.5\n400,306,5.0\n400,307,5.5\n400,308,6.0\n400,309,6.5\n400,310,7.0\n400,311,7.5\n400,312,8.0\n400,313,8.5\n400,314,9.0\n400,315,9.5\n400,316,10.0\n400,317,10.5\n400,318,11.0\n400,319,11.5\n400,320,12.0\n400,321,12.5\n400,322,13.0\n400,323,13.5\n400,324,14.0\n400,325,1.5\n400,326,2.0\n400,327,2.5\n400,328,3.0\n400,329,3.5\n400,330,4.0\n400,331,4.5\n400,332,5.0\n400,333,5.5\n400,334,6.0\n400,335,6.5\n400,336,7.0\n400,337,7.5\n400,338,8.0\n400,339,8.5\n400,340,9.0\n400,341,9.5\n400,342,10.0\n400,343,10.5\n400,344,11.0\n400,345,11.5\n400,346,12.0\n400,347,12.5\n400,348,13.0\n400,349,13.5\n400,350,1.0\n400,351,1.5\n400,352,2.0\n400,353,2.5\n400,354,3.0\n400,355,3.5\n400,356,4.0\n400,357,4.5\n400,358,5.0\n400,359,5.5\n400,360,6.0\n400,361,6.5\n400,362,7.0\n400,363,7.5\n400,364,8.0\n400,365,8.5\n400,366,9.0\n400,367,9.5\n400,368,10.0\n400,369,10.5\n400,370,11.0\n400,371,11.5\n400,372,12.0\n400,373,12.5\n400,374,13.0\n400,375,0.5\n400,376,1.0\n400,377,1.5\n400,378,2.0\n400,379,2.5\n400,380,3.0\n400,381,3.5\n400,382,4.0\n400,383,4.5\n400,384,5.0\n400,385,5.5\n400,386,6.0\n400,387,6.5\n400,388,7.0\n400,389,7.5\n400,390,8.0\n400,391,8.5\n400,392,9.0\n400,393,9.5\n400,394,10.0\n400,395,10.5\n400,396,11.0\n400,397,11.5\n400,398,12.0\n400,399,12.5\n400,400,0\n400,401,0.5\n400,402,1.0\n400,403,1.5\n400,404,2.0\n400,405,2.5\n400,406,3.0\n400,407,3.5\n400,408,4.0\n400,409,4.5\n400,410,5.0\n400,411,5.5\n400,412,6.0\n400,413,6.5\n400,414,7.0\n400,415,7.5\n400,416,8.0\n400,417,8.5\n400,418,9.0\n400,419,9.5\n400,420,10.0\n400,421,10.5\n400,422,11.0\n400,423,11.5\n400,424,12.0\n400,425,0.5\n400,426,1.0\n400,427,1.5\n400,428,2.0\n400,429,2.5\n400,430,3.0\n400,431,3.5\n400,432,4.0\n400,433,4.5\n400,434,5.0\n400,435,5.5\n400,436,6.0\n400,437,6.5\n400,438,7.0\n400,439,7.5\n400,440,8.0\n400,441,8.5\n400,442,9.0\n400,443,9.5\n400,444,10.0\n400,445,10.5\n400,446,11.0\n400,447,11.5\n400,448,12.0\n400,449,12.5\n400,450,1.0\n400,451,1.5\n400,452,2.0\n400,453,2.5\n400,454,3.0\n400,455,3.5\n400,456,4.0\n400,457,4.5\n400,458,5.0\n400,459,5.5\n400,460,6.0\n400,461,6.5\n400,462,7.0\n400,463,7.5\n400,464,8.0\n400,465,8.5\n400,466,9.0\n400,467,9.5\n400,468,10.0\n400,469,10.5\n400,470,11.0\n400,471,11.5\n400,472,12.0\n400,473,12.5\n400,474,13.0\n400,475,1.5\n400,476,2.0\n400,477,2.5\n400,478,3.0\n400,479,3.5\n400,480,4.0\n400,481,4.5\n400,482,5.0\n400,483,5.5\n400,484,6.0\n400,485,6.5\n400,486,7.0\n400,487,7.5\n400,488,8.0\n400,489,8.5\n400,490,9.0\n400,491,9.5\n400,492,10.0\n400,493,10.5\n400,494,11.0\n400,495,11.5\n400,496,12.0\n400,497,12.5\n400,498,13.0\n400,499,13.5\n400,500,2.0\n400,501,2.5\n400,502,3.0\n400,503,3.5\n400,504,4.0\n400,505,4.5\n400,506,5.0\n400,507,5.5\n400,508,6.0\n400,509,6.5\n400,510,7.0\n400,511,7.5\n400,512,8.0\n400,513,8.5\n400,514,9.0\n400,515,9.5\n400,516,10.0\n400,517,10.5\n400,518,11.0\n400,519,11.5\n400,520,12.0\n400,521,12.5\n400,522,13.0\n400,523,13.5\n400,524,14.0\n400,525,2.5\n400,526,3.0\n400,527,3.5\n400,528,4.0\n400,529,4.5\n400,530,5.0\n400,531,5.5\n400,532,6.0\n400,533,6.5\n400,534,7.0\n400,535,7.5\n400,536,8.0\n400,537,8.5\n400,538,9.0\n400,539,9.5\n400,540,10.0\n400,541,10.5\n400,542,11.0\n400,543,11.5\n400,544,12.0\n400,545,12.5\n400,546,13.0\n400,547,13.5\n400,548,14.0\n400,549,14.5\n400,550,3.0\n400,551,3.5\n400,552,4.0\n400,553,4.5\n400,554,5.0\n400,555,5.5\n400,556,6.0\n400,557,6.5\n400,558,7.0\n400,559,7.5\n400,560,8.0\n400,561,8.5\n400,562,9.0\n400,563,9.5\n400,564,10.0\n400,565,10.5\n400,566,11.0\n400,567,11.5\n400,568,12.0\n400,569,12.5\n400,570,13.0\n400,571,13.5\n400,572,14.0\n400,573,14.5\n400,574,15.0\n400,575,3.5\n400,576,4.0\n400,577,4.5\n400,578,5.0\n400,579,5.5\n400,580,6.0\n400,581,6.5\n400,582,7.0\n400,583,7.5\n400,584,8.0\n400,585,8.5\n400,586,9.0\n400,587,9.5\n400,588,10.0\n400,589,10.5\n400,590,11.0\n400,591,11.5\n400,592,12.0\n400,593,12.5\n400,594,13.0\n400,595,13.5\n400,596,14.0\n400,597,14.5\n400,598,15.0\n400,599,15.5\n400,600,4.0\n400,601,4.5\n400,602,5.0\n400,603,5.5\n400,604,6.0\n400,605,6.5\n400,606,7.0\n400,607,7.5\n400,608,8.0\n400,609,8.5\n400,610,9.0\n400,611,9.5\n400,612,10.0\n400,613,10.5\n400,614,11.0\n400,615,11.5\n400,616,12.0\n400,617,12.5\n400,618,13.0\n400,619,13.5\n400,620,14.0\n400,621,14.5\n400,622,15.0\n400,623,15.5\n400,624,16.0\n401,0,8.5\n401,1,8.0\n401,2,8.5\n401,3,9.0\n401,4,9.5\n401,5,10.0\n401,6,10.5\n401,7,11.0\n401,8,11.5\n401,9,12.0\n401,10,12.5\n401,11,13.0\n401,12,13.5\n401,13,14.0\n401,14,14.5\n401,15,15.0\n401,16,15.5\n401,17,16.0\n401,18,16.5\n401,19,17.0\n401,20,17.5\n401,21,18.0\n401,22,18.5\n401,23,19.0\n401,24,19.5\n401,25,8.0\n401,26,7.5\n401,27,8.0\n401,28,8.5\n401,29,9.0\n401,30,9.5\n401,31,10.0\n401,32,10.5\n401,33,11.0\n401,34,11.5\n401,35,12.0\n401,36,12.5\n401,37,13.0\n401,38,13.5\n401,39,14.0\n401,40,14.5\n401,41,15.0\n401,42,15.5\n401,43,16.0\n401,44,16.5\n401,45,17.0\n401,46,17.5\n401,47,18.0\n401,48,18.5\n401,49,19.0\n401,50,7.5\n401,51,7.0\n401,52,7.5\n401,53,8.0\n401,54,8.5\n401,55,9.0\n401,56,9.5\n401,57,10.0\n401,58,10.5\n401,59,11.0\n401,60,11.5\n401,61,12.0\n401,62,12.5\n401,63,13.0\n401,64,13.5\n401,65,14.0\n401,66,14.5\n401,67,15.0\n401,68,15.5\n401,69,16.0\n401,70,16.5\n401,71,17.0\n401,72,17.5\n401,73,18.0\n401,74,18.5\n401,75,7.0\n401,76,6.5\n401,77,7.0\n401,78,7.5\n401,79,8.0\n401,80,8.5\n401,81,9.0\n401,82,9.5\n401,83,10.0\n401,84,10.5\n401,85,11.0\n401,86,11.5\n401,87,12.0\n401,88,12.5\n401,89,13.0\n401,90,13.5\n401,91,14.0\n401,92,14.5\n401,93,15.0\n401,94,15.5\n401,95,16.0\n401,96,16.5\n401,97,17.0\n401,98,17.5\n401,99,18.0\n401,100,6.5\n401,101,6.0\n401,102,6.5\n401,103,7.0\n401,104,7.5\n401,105,8.0\n401,106,8.5\n401,107,9.0\n401,108,9.5\n401,109,10.0\n401,110,10.5\n401,111,11.0\n401,112,11.5\n401,113,12.0\n401,114,12.5\n401,115,13.0\n401,116,13.5\n401,117,14.0\n401,118,14.5\n401,119,15.0\n401,120,15.5\n401,121,16.0\n401,122,16.5\n401,123,17.0\n401,124,17.5\n401,125,6.0\n401,126,5.5\n401,127,6.0\n401,128,6.5\n401,129,7.0\n401,130,7.5\n401,131,8.0\n401,132,8.5\n401,133,9.0\n401,134,9.5\n401,135,10.0\n401,136,10.5\n401,137,11.0\n401,138,11.5\n401,139,12.0\n401,140,12.5\n401,141,13.0\n401,142,13.5\n401,143,14.0\n401,144,14.5\n401,145,15.0\n401,146,15.5\n401,147,16.0\n401,148,16.5\n401,149,17.0\n401,150,5.5\n401,151,5.0\n401,152,5.5\n401,153,6.0\n401,154,6.5\n401,155,7.0\n401,156,7.5\n401,157,8.0\n401,158,8.5\n401,159,9.0\n401,160,9.5\n401,161,10.0\n401,162,10.5\n401,163,11.0\n401,164,11.5\n401,165,12.0\n401,166,12.5\n401,167,13.0\n401,168,13.5\n401,169,14.0\n401,170,14.5\n401,171,15.0\n401,172,15.5\n401,173,16.0\n401,174,16.5\n401,175,5.0\n401,176,4.5\n401,177,5.0\n401,178,5.5\n401,179,6.0\n401,180,6.5\n401,181,7.0\n401,182,7.5\n401,183,8.0\n401,184,8.5\n401,185,9.0\n401,186,9.5\n401,187,10.0\n401,188,10.5\n401,189,11.0\n401,190,11.5\n401,191,12.0\n401,192,12.5\n401,193,13.0\n401,194,13.5\n401,195,14.0\n401,196,14.5\n401,197,15.0\n401,198,15.5\n401,199,16.0\n401,200,4.5\n401,201,4.0\n401,202,4.5\n401,203,5.0\n401,204,5.5\n401,205,6.0\n401,206,6.5\n401,207,7.0\n401,208,7.5\n401,209,8.0\n401,210,8.5\n401,211,9.0\n401,212,9.5\n401,213,10.0\n401,214,10.5\n401,215,11.0\n401,216,11.5\n401,217,12.0\n401,218,12.5\n401,219,13.0\n401,220,13.5\n401,221,14.0\n401,222,14.5\n401,223,15.0\n401,224,15.5\n401,225,4.0\n401,226,3.5\n401,227,4.0\n401,228,4.5\n401,229,5.0\n401,230,5.5\n401,231,6.0\n401,232,6.5\n401,233,7.0\n401,234,7.5\n401,235,8.0\n401,236,8.5\n401,237,9.0\n401,238,9.5\n401,239,10.0\n401,240,10.5\n401,241,11.0\n401,242,11.5\n401,243,12.0\n401,244,12.5\n401,245,13.0\n401,246,13.5\n401,247,14.0\n401,248,14.5\n401,249,15.0\n401,250,3.5\n401,251,3.0\n401,252,3.5\n401,253,4.0\n401,254,4.5\n401,255,5.0\n401,256,5.5\n401,257,6.0\n401,258,6.5\n401,259,7.0\n401,260,7.5\n401,261,8.0\n401,262,8.5\n401,263,9.0\n401,264,9.5\n401,265,10.0\n401,266,10.5\n401,267,11.0\n401,268,11.5\n401,269,12.0\n401,270,12.5\n401,271,13.0\n401,272,13.5\n401,273,14.0\n401,274,14.5\n401,275,3.0\n401,276,2.5\n401,277,3.0\n401,278,3.5\n401,279,4.0\n401,280,4.5\n401,281,5.0\n401,282,5.5\n401,283,6.0\n401,284,6.5\n401,285,7.0\n401,286,7.5\n401,287,8.0\n401,288,8.5\n401,289,9.0\n401,290,9.5\n401,291,10.0\n401,292,10.5\n401,293,11.0\n401,294,11.5\n401,295,12.0\n401,296,12.5\n401,297,13.0\n401,298,13.5\n401,299,14.0\n401,300,2.5\n401,301,2.0\n401,302,2.5\n401,303,3.0\n401,304,3.5\n401,305,4.0\n401,306,4.5\n401,307,5.0\n401,308,5.5\n401,309,6.0\n401,310,6.5\n401,311,7.0\n401,312,7.5\n401,313,8.0\n401,314,8.5\n401,315,9.0\n401,316,9.5\n401,317,10.0\n401,318,10.5\n401,319,11.0\n401,320,11.5\n401,321,12.0\n401,322,12.5\n401,323,13.0\n401,324,13.5\n401,325,2.0\n401,326,1.5\n401,327,2.0\n401,328,2.5\n401,329,3.0\n401,330,3.5\n401,331,4.0\n401,332,4.5\n401,333,5.0\n401,334,5.5\n401,335,6.0\n401,336,6.5\n401,337,7.0\n401,338,7.5\n401,339,8.0\n401,340,8.5\n401,341,9.0\n401,342,9.5\n401,343,10.0\n401,344,10.5\n401,345,11.0\n401,346,11.5\n401,347,12.0\n401,348,12.5\n401,349,13.0\n401,350,1.5\n401,351,1.0\n401,352,1.5\n401,353,2.0\n401,354,2.5\n401,355,3.0\n401,356,3.5\n401,357,4.0\n401,358,4.5\n401,359,5.0\n401,360,5.5\n401,361,6.0\n401,362,6.5\n401,363,7.0\n401,364,7.5\n401,365,8.0\n401,366,8.5\n401,367,9.0\n401,368,9.5\n401,369,10.0\n401,370,10.5\n401,371,11.0\n401,372,11.5\n401,373,12.0\n401,374,12.5\n401,375,1.0\n401,376,0.5\n401,377,1.0\n401,378,1.5\n401,379,2.0\n401,380,2.5\n401,381,3.0\n401,382,3.5\n401,383,4.0\n401,384,4.5\n401,385,5.0\n401,386,5.5\n401,387,6.0\n401,388,6.5\n401,389,7.0\n401,390,7.5\n401,391,8.0\n401,392,8.5\n401,393,9.0\n401,394,9.5\n401,395,10.0\n401,396,10.5\n401,397,11.0\n401,398,11.5\n401,399,12.0\n401,400,0.5\n401,401,0\n401,402,0.5\n401,403,1.0\n401,404,1.5\n401,405,2.0\n401,406,2.5\n401,407,3.0\n401,408,3.5\n401,409,4.0\n401,410,4.5\n401,411,5.0\n401,412,5.5\n401,413,6.0\n401,414,6.5\n401,415,7.0\n401,416,7.5\n401,417,8.0\n401,418,8.5\n401,419,9.0\n401,420,9.5\n401,421,10.0\n401,422,10.5\n401,423,11.0\n401,424,11.5\n401,425,1.0\n401,426,0.5\n401,427,1.0\n401,428,1.5\n401,429,2.0\n401,430,2.5\n401,431,3.0\n401,432,3.5\n401,433,4.0\n401,434,4.5\n401,435,5.0\n401,436,5.5\n401,437,6.0\n401,438,6.5\n401,439,7.0\n401,440,7.5\n401,441,8.0\n401,442,8.5\n401,443,9.0\n401,444,9.5\n401,445,10.0\n401,446,10.5\n401,447,11.0\n401,448,11.5\n401,449,12.0\n401,450,1.5\n401,451,1.0\n401,452,1.5\n401,453,2.0\n401,454,2.5\n401,455,3.0\n401,456,3.5\n401,457,4.0\n401,458,4.5\n401,459,5.0\n401,460,5.5\n401,461,6.0\n401,462,6.5\n401,463,7.0\n401,464,7.5\n401,465,8.0\n401,466,8.5\n401,467,9.0\n401,468,9.5\n401,469,10.0\n401,470,10.5\n401,471,11.0\n401,472,11.5\n401,473,12.0\n401,474,12.5\n401,475,2.0\n401,476,1.5\n401,477,2.0\n401,478,2.5\n401,479,3.0\n401,480,3.5\n401,481,4.0\n401,482,4.5\n401,483,5.0\n401,484,5.5\n401,485,6.0\n401,486,6.5\n401,487,7.0\n401,488,7.5\n401,489,8.0\n401,490,8.5\n401,491,9.0\n401,492,9.5\n401,493,10.0\n401,494,10.5\n401,495,11.0\n401,496,11.5\n401,497,12.0\n401,498,12.5\n401,499,13.0\n401,500,2.5\n401,501,2.0\n401,502,2.5\n401,503,3.0\n401,504,3.5\n401,505,4.0\n401,506,4.5\n401,507,5.0\n401,508,5.5\n401,509,6.0\n401,510,6.5\n401,511,7.0\n401,512,7.5\n401,513,8.0\n401,514,8.5\n401,515,9.0\n401,516,9.5\n401,517,10.0\n401,518,10.5\n401,519,11.0\n401,520,11.5\n401,521,12.0\n401,522,12.5\n401,523,13.0\n401,524,13.5\n401,525,3.0\n401,526,2.5\n401,527,3.0\n401,528,3.5\n401,529,4.0\n401,530,4.5\n401,531,5.0\n401,532,5.5\n401,533,6.0\n401,534,6.5\n401,535,7.0\n401,536,7.5\n401,537,8.0\n401,538,8.5\n401,539,9.0\n401,540,9.5\n401,541,10.0\n401,542,10.5\n401,543,11.0\n401,544,11.5\n401,545,12.0\n401,546,12.5\n401,547,13.0\n401,548,13.5\n401,549,14.0\n401,550,3.5\n401,551,3.0\n401,552,3.5\n401,553,4.0\n401,554,4.5\n401,555,5.0\n401,556,5.5\n401,557,6.0\n401,558,6.5\n401,559,7.0\n401,560,7.5\n401,561,8.0\n401,562,8.5\n401,563,9.0\n401,564,9.5\n401,565,10.0\n401,566,10.5\n401,567,11.0\n401,568,11.5\n401,569,12.0\n401,570,12.5\n401,571,13.0\n401,572,13.5\n401,573,14.0\n401,574,14.5\n401,575,4.0\n401,576,3.5\n401,577,4.0\n401,578,4.5\n401,579,5.0\n401,580,5.5\n401,581,6.0\n401,582,6.5\n401,583,7.0\n401,584,7.5\n401,585,8.0\n401,586,8.5\n401,587,9.0\n401,588,9.5\n401,589,10.0\n401,590,10.5\n401,591,11.0\n401,592,11.5\n401,593,12.0\n401,594,12.5\n401,595,13.0\n401,596,13.5\n401,597,14.0\n401,598,14.5\n401,599,15.0\n401,600,4.5\n401,601,4.0\n401,602,4.5\n401,603,5.0\n401,604,5.5\n401,605,6.0\n401,606,6.5\n401,607,7.0\n401,608,7.5\n401,609,8.0\n401,610,8.5\n401,611,9.0\n401,612,9.5\n401,613,10.0\n401,614,10.5\n401,615,11.0\n401,616,11.5\n401,617,12.0\n401,618,12.5\n401,619,13.0\n401,620,13.5\n401,621,14.0\n401,622,14.5\n401,623,15.0\n401,624,15.5\n402,0,9.0\n402,1,8.5\n402,2,8.0\n402,3,8.5\n402,4,9.0\n402,5,9.5\n402,6,10.0\n402,7,10.5\n402,8,11.0\n402,9,11.5\n402,10,12.0\n402,11,12.5\n402,12,13.0\n402,13,13.5\n402,14,14.0\n402,15,14.5\n402,16,15.0\n402,17,15.5\n402,18,16.0\n402,19,16.5\n402,20,17.0\n402,21,17.5\n402,22,18.0\n402,23,18.5\n402,24,19.0\n402,25,8.5\n402,26,8.0\n402,27,7.5\n402,28,8.0\n402,29,8.5\n402,30,9.0\n402,31,9.5\n402,32,10.0\n402,33,10.5\n402,34,11.0\n402,35,11.5\n402,36,12.0\n402,37,12.5\n402,38,13.0\n402,39,13.5\n402,40,14.0\n402,41,14.5\n402,42,15.0\n402,43,15.5\n402,44,16.0\n402,45,16.5\n402,46,17.0\n402,47,17.5\n402,48,18.0\n402,49,18.5\n402,50,8.0\n402,51,7.5\n402,52,7.0\n402,53,7.5\n402,54,8.0\n402,55,8.5\n402,56,9.0\n402,57,9.5\n402,58,10.0\n402,59,10.5\n402,60,11.0\n402,61,11.5\n402,62,12.0\n402,63,12.5\n402,64,13.0\n402,65,13.5\n402,66,14.0\n402,67,14.5\n402,68,15.0\n402,69,15.5\n402,70,16.0\n402,71,16.5\n402,72,17.0\n402,73,17.5\n402,74,18.0\n402,75,7.5\n402,76,7.0\n402,77,6.5\n402,78,7.0\n402,79,7.5\n402,80,8.0\n402,81,8.5\n402,82,9.0\n402,83,9.5\n402,84,10.0\n402,85,10.5\n402,86,11.0\n402,87,11.5\n402,88,12.0\n402,89,12.5\n402,90,13.0\n402,91,13.5\n402,92,14.0\n402,93,14.5\n402,94,15.0\n402,95,15.5\n402,96,16.0\n402,97,16.5\n402,98,17.0\n402,99,17.5\n402,100,7.0\n402,101,6.5\n402,102,6.0\n402,103,6.5\n402,104,7.0\n402,105,7.5\n402,106,8.0\n402,107,8.5\n402,108,9.0\n402,109,9.5\n402,110,10.0\n402,111,10.5\n402,112,11.0\n402,113,11.5\n402,114,12.0\n402,115,12.5\n402,116,13.0\n402,117,13.5\n402,118,14.0\n402,119,14.5\n402,120,15.0\n402,121,15.5\n402,122,16.0\n402,123,16.5\n402,124,17.0\n402,125,6.5\n402,126,6.0\n402,127,5.5\n402,128,6.0\n402,129,6.5\n402,130,7.0\n402,131,7.5\n402,132,8.0\n402,133,8.5\n402,134,9.0\n402,135,9.5\n402,136,10.0\n402,137,10.5\n402,138,11.0\n402,139,11.5\n402,140,12.0\n402,141,12.5\n402,142,13.0\n402,143,13.5\n402,144,14.0\n402,145,14.5\n402,146,15.0\n402,147,15.5\n402,148,16.0\n402,149,16.5\n402,150,6.0\n402,151,5.5\n402,152,5.0\n402,153,5.5\n402,154,6.0\n402,155,6.5\n402,156,7.0\n402,157,7.5\n402,158,8.0\n402,159,8.5\n402,160,9.0\n402,161,9.5\n402,162,10.0\n402,163,10.5\n402,164,11.0\n402,165,11.5\n402,166,12.0\n402,167,12.5\n402,168,13.0\n402,169,13.5\n402,170,14.0\n402,171,14.5\n402,172,15.0\n402,173,15.5\n402,174,16.0\n402,175,5.5\n402,176,5.0\n402,177,4.5\n402,178,5.0\n402,179,5.5\n402,180,6.0\n402,181,6.5\n402,182,7.0\n402,183,7.5\n402,184,8.0\n402,185,8.5\n402,186,9.0\n402,187,9.5\n402,188,10.0\n402,189,10.5\n402,190,11.0\n402,191,11.5\n402,192,12.0\n402,193,12.5\n402,194,13.0\n402,195,13.5\n402,196,14.0\n402,197,14.5\n402,198,15.0\n402,199,15.5\n402,200,5.0\n402,201,4.5\n402,202,4.0\n402,203,4.5\n402,204,5.0\n402,205,5.5\n402,206,6.0\n402,207,6.5\n402,208,7.0\n402,209,7.5\n402,210,8.0\n402,211,8.5\n402,212,9.0\n402,213,9.5\n402,214,10.0\n402,215,10.5\n402,216,11.0\n402,217,11.5\n402,218,12.0\n402,219,12.5\n402,220,13.0\n402,221,13.5\n402,222,14.0\n402,223,14.5\n402,224,15.0\n402,225,4.5\n402,226,4.0\n402,227,3.5\n402,228,4.0\n402,229,4.5\n402,230,5.0\n402,231,5.5\n402,232,6.0\n402,233,6.5\n402,234,7.0\n402,235,7.5\n402,236,8.0\n402,237,8.5\n402,238,9.0\n402,239,9.5\n402,240,10.0\n402,241,10.5\n402,242,11.0\n402,243,11.5\n402,244,12.0\n402,245,12.5\n402,246,13.0\n402,247,13.5\n402,248,14.0\n402,249,14.5\n402,250,4.0\n402,251,3.5\n402,252,3.0\n402,253,3.5\n402,254,4.0\n402,255,4.5\n402,256,5.0\n402,257,5.5\n402,258,6.0\n402,259,6.5\n402,260,7.0\n402,261,7.5\n402,262,8.0\n402,263,8.5\n402,264,9.0\n402,265,9.5\n402,266,10.0\n402,267,10.5\n402,268,11.0\n402,269,11.5\n402,270,12.0\n402,271,12.5\n402,272,13.0\n402,273,13.5\n402,274,14.0\n402,275,3.5\n402,276,3.0\n402,277,2.5\n402,278,3.0\n402,279,3.5\n402,280,4.0\n402,281,4.5\n402,282,5.0\n402,283,5.5\n402,284,6.0\n402,285,6.5\n402,286,7.0\n402,287,7.5\n402,288,8.0\n402,289,8.5\n402,290,9.0\n402,291,9.5\n402,292,10.0\n402,293,10.5\n402,294,11.0\n402,295,11.5\n402,296,12.0\n402,297,12.5\n402,298,13.0\n402,299,13.5\n402,300,3.0\n402,301,2.5\n402,302,2.0\n402,303,2.5\n402,304,3.0\n402,305,3.5\n402,306,4.0\n402,307,4.5\n402,308,5.0\n402,309,5.5\n402,310,6.0\n402,311,6.5\n402,312,7.0\n402,313,7.5\n402,314,8.0\n402,315,8.5\n402,316,9.0\n402,317,9.5\n402,318,10.0\n402,319,10.5\n402,320,11.0\n402,321,11.5\n402,322,12.0\n402,323,12.5\n402,324,13.0\n402,325,2.5\n402,326,2.0\n402,327,1.5\n402,328,2.0\n402,329,2.5\n402,330,3.0\n402,331,3.5\n402,332,4.0\n402,333,4.5\n402,334,5.0\n402,335,5.5\n402,336,6.0\n402,337,6.5\n402,338,7.0\n402,339,7.5\n402,340,8.0\n402,341,8.5\n402,342,9.0\n402,343,9.5\n402,344,10.0\n402,345,10.5\n402,346,11.0\n402,347,11.5\n402,348,12.0\n402,349,12.5\n402,350,2.0\n402,351,1.5\n402,352,1.0\n402,353,1.5\n402,354,2.0\n402,355,2.5\n402,356,3.0\n402,357,3.5\n402,358,4.0\n402,359,4.5\n402,360,5.0\n402,361,5.5\n402,362,6.0\n402,363,6.5\n402,364,7.0\n402,365,7.5\n402,366,8.0\n402,367,8.5\n402,368,9.0\n402,369,9.5\n402,370,10.0\n402,371,10.5\n402,372,11.0\n402,373,11.5\n402,374,12.0\n402,375,1.5\n402,376,1.0\n402,377,0.5\n402,378,1.0\n402,379,1.5\n402,380,2.0\n402,381,2.5\n402,382,3.0\n402,383,3.5\n402,384,4.0\n402,385,4.5\n402,386,5.0\n402,387,5.5\n402,388,6.0\n402,389,6.5\n402,390,7.0\n402,391,7.5\n402,392,8.0\n402,393,8.5\n402,394,9.0\n402,395,9.5\n402,396,10.0\n402,397,10.5\n402,398,11.0\n402,399,11.5\n402,400,1.0\n402,401,0.5\n402,402,0\n402,403,0.5\n402,404,1.0\n402,405,1.5\n402,406,2.0\n402,407,2.5\n402,408,3.0\n402,409,3.5\n402,410,4.0\n402,411,4.5\n402,412,5.0\n402,413,5.5\n402,414,6.0\n402,415,6.5\n402,416,7.0\n402,417,7.5\n402,418,8.0\n402,419,8.5\n402,420,9.0\n402,421,9.5\n402,422,10.0\n402,423,10.5\n402,424,11.0\n402,425,1.5\n402,426,1.0\n402,427,0.5\n402,428,1.0\n402,429,1.5\n402,430,2.0\n402,431,2.5\n402,432,3.0\n402,433,3.5\n402,434,4.0\n402,435,4.5\n402,436,5.0\n402,437,5.5\n402,438,6.0\n402,439,6.5\n402,440,7.0\n402,441,7.5\n402,442,8.0\n402,443,8.5\n402,444,9.0\n402,445,9.5\n402,446,10.0\n402,447,10.5\n402,448,11.0\n402,449,11.5\n402,450,2.0\n402,451,1.5\n402,452,1.0\n402,453,1.5\n402,454,2.0\n402,455,2.5\n402,456,3.0\n402,457,3.5\n402,458,4.0\n402,459,4.5\n402,460,5.0\n402,461,5.5\n402,462,6.0\n402,463,6.5\n402,464,7.0\n402,465,7.5\n402,466,8.0\n402,467,8.5\n402,468,9.0\n402,469,9.5\n402,470,10.0\n402,471,10.5\n402,472,11.0\n402,473,11.5\n402,474,12.0\n402,475,2.5\n402,476,2.0\n402,477,1.5\n402,478,2.0\n402,479,2.5\n402,480,3.0\n402,481,3.5\n402,482,4.0\n402,483,4.5\n402,484,5.0\n402,485,5.5\n402,486,6.0\n402,487,6.5\n402,488,7.0\n402,489,7.5\n402,490,8.0\n402,491,8.5\n402,492,9.0\n402,493,9.5\n402,494,10.0\n402,495,10.5\n402,496,11.0\n402,497,11.5\n402,498,12.0\n402,499,12.5\n402,500,3.0\n402,501,2.5\n402,502,2.0\n402,503,2.5\n402,504,3.0\n402,505,3.5\n402,506,4.0\n402,507,4.5\n402,508,5.0\n402,509,5.5\n402,510,6.0\n402,511,6.5\n402,512,7.0\n402,513,7.5\n402,514,8.0\n402,515,8.5\n402,516,9.0\n402,517,9.5\n402,518,10.0\n402,519,10.5\n402,520,11.0\n402,521,11.5\n402,522,12.0\n402,523,12.5\n402,524,13.0\n402,525,3.5\n402,526,3.0\n402,527,2.5\n402,528,3.0\n402,529,3.5\n402,530,4.0\n402,531,4.5\n402,532,5.0\n402,533,5.5\n402,534,6.0\n402,535,6.5\n402,536,7.0\n402,537,7.5\n402,538,8.0\n402,539,8.5\n402,540,9.0\n402,541,9.5\n402,542,10.0\n402,543,10.5\n402,544,11.0\n402,545,11.5\n402,546,12.0\n402,547,12.5\n402,548,13.0\n402,549,13.5\n402,550,4.0\n402,551,3.5\n402,552,3.0\n402,553,3.5\n402,554,4.0\n402,555,4.5\n402,556,5.0\n402,557,5.5\n402,558,6.0\n402,559,6.5\n402,560,7.0\n402,561,7.5\n402,562,8.0\n402,563,8.5\n402,564,9.0\n402,565,9.5\n402,566,10.0\n402,567,10.5\n402,568,11.0\n402,569,11.5\n402,570,12.0\n402,571,12.5\n402,572,13.0\n402,573,13.5\n402,574,14.0\n402,575,4.5\n402,576,4.0\n402,577,3.5\n402,578,4.0\n402,579,4.5\n402,580,5.0\n402,581,5.5\n402,582,6.0\n402,583,6.5\n402,584,7.0\n402,585,7.5\n402,586,8.0\n402,587,8.5\n402,588,9.0\n402,589,9.5\n402,590,10.0\n402,591,10.5\n402,592,11.0\n402,593,11.5\n402,594,12.0\n402,595,12.5\n402,596,13.0\n402,597,13.5\n402,598,14.0\n402,599,14.5\n402,600,5.0\n402,601,4.5\n402,602,4.0\n402,603,4.5\n402,604,5.0\n402,605,5.5\n402,606,6.0\n402,607,6.5\n402,608,7.0\n402,609,7.5\n402,610,8.0\n402,611,8.5\n402,612,9.0\n402,613,9.5\n402,614,10.0\n402,615,10.5\n402,616,11.0\n402,617,11.5\n402,618,12.0\n402,619,12.5\n402,620,13.0\n402,621,13.5\n402,622,14.0\n402,623,14.5\n402,624,15.0\n403,0,9.5\n403,1,9.0\n403,2,8.5\n403,3,8.0\n403,4,8.5\n403,5,9.0\n403,6,9.5\n403,7,10.0\n403,8,10.5\n403,9,11.0\n403,10,11.5\n403,11,12.0\n403,12,12.5\n403,13,13.0\n403,14,13.5\n403,15,14.0\n403,16,14.5\n403,17,15.0\n403,18,15.5\n403,19,16.0\n403,20,16.5\n403,21,17.0\n403,22,17.5\n403,23,18.0\n403,24,18.5\n403,25,9.0\n403,26,8.5\n403,27,8.0\n403,28,7.5\n403,29,8.0\n403,30,8.5\n403,31,9.0\n403,32,9.5\n403,33,10.0\n403,34,10.5\n403,35,11.0\n403,36,11.5\n403,37,12.0\n403,38,12.5\n403,39,13.0\n403,40,13.5\n403,41,14.0\n403,42,14.5\n403,43,15.0\n403,44,15.5\n403,45,16.0\n403,46,16.5\n403,47,17.0\n403,48,17.5\n403,49,18.0\n403,50,8.5\n403,51,8.0\n403,52,7.5\n403,53,7.0\n403,54,7.5\n403,55,8.0\n403,56,8.5\n403,57,9.0\n403,58,9.5\n403,59,10.0\n403,60,10.5\n403,61,11.0\n403,62,11.5\n403,63,12.0\n403,64,12.5\n403,65,13.0\n403,66,13.5\n403,67,14.0\n403,68,14.5\n403,69,15.0\n403,70,15.5\n403,71,16.0\n403,72,16.5\n403,73,17.0\n403,74,17.5\n403,75,8.0\n403,76,7.5\n403,77,7.0\n403,78,6.5\n403,79,7.0\n403,80,7.5\n403,81,8.0\n403,82,8.5\n403,83,9.0\n403,84,9.5\n403,85,10.0\n403,86,10.5\n403,87,11.0\n403,88,11.5\n403,89,12.0\n403,90,12.5\n403,91,13.0\n403,92,13.5\n403,93,14.0\n403,94,14.5\n403,95,15.0\n403,96,15.5\n403,97,16.0\n403,98,16.5\n403,99,17.0\n403,100,7.5\n403,101,7.0\n403,102,6.5\n403,103,6.0\n403,104,6.5\n403,105,7.0\n403,106,7.5\n403,107,8.0\n403,108,8.5\n403,109,9.0\n403,110,9.5\n403,111,10.0\n403,112,10.5\n403,113,11.0\n403,114,11.5\n403,115,12.0\n403,116,12.5\n403,117,13.0\n403,118,13.5\n403,119,14.0\n403,120,14.5\n403,121,15.0\n403,122,15.5\n403,123,16.0\n403,124,16.5\n403,125,7.0\n403,126,6.5\n403,127,6.0\n403,128,5.5\n403,129,6.0\n403,130,6.5\n403,131,7.0\n403,132,7.5\n403,133,8.0\n403,134,8.5\n403,135,9.0\n403,136,9.5\n403,137,10.0\n403,138,10.5\n403,139,11.0\n403,140,11.5\n403,141,12.0\n403,142,12.5\n403,143,13.0\n403,144,13.5\n403,145,14.0\n403,146,14.5\n403,147,15.0\n403,148,15.5\n403,149,16.0\n403,150,6.5\n403,151,6.0\n403,152,5.5\n403,153,5.0\n403,154,5.5\n403,155,6.0\n403,156,6.5\n403,157,7.0\n403,158,7.5\n403,159,8.0\n403,160,8.5\n403,161,9.0\n403,162,9.5\n403,163,10.0\n403,164,10.5\n403,165,11.0\n403,166,11.5\n403,167,12.0\n403,168,12.5\n403,169,13.0\n403,170,13.5\n403,171,14.0\n403,172,14.5\n403,173,15.0\n403,174,15.5\n403,175,6.0\n403,176,5.5\n403,177,5.0\n403,178,4.5\n403,179,5.0\n403,180,5.5\n403,181,6.0\n403,182,6.5\n403,183,7.0\n403,184,7.5\n403,185,8.0\n403,186,8.5\n403,187,9.0\n403,188,9.5\n403,189,10.0\n403,190,10.5\n403,191,11.0\n403,192,11.5\n403,193,12.0\n403,194,12.5\n403,195,13.0\n403,196,13.5\n403,197,14.0\n403,198,14.5\n403,199,15.0\n403,200,5.5\n403,201,5.0\n403,202,4.5\n403,203,4.0\n403,204,4.5\n403,205,5.0\n403,206,5.5\n403,207,6.0\n403,208,6.5\n403,209,7.0\n403,210,7.5\n403,211,8.0\n403,212,8.5\n403,213,9.0\n403,214,9.5\n403,215,10.0\n403,216,10.5\n403,217,11.0\n403,218,11.5\n403,219,12.0\n403,220,12.5\n403,221,13.0\n403,222,13.5\n403,223,14.0\n403,224,14.5\n403,225,5.0\n403,226,4.5\n403,227,4.0\n403,228,3.5\n403,229,4.0\n403,230,4.5\n403,231,5.0\n403,232,5.5\n403,233,6.0\n403,234,6.5\n403,235,7.0\n403,236,7.5\n403,237,8.0\n403,238,8.5\n403,239,9.0\n403,240,9.5\n403,241,10.0\n403,242,10.5\n403,243,11.0\n403,244,11.5\n403,245,12.0\n403,246,12.5\n403,247,13.0\n403,248,13.5\n403,249,14.0\n403,250,4.5\n403,251,4.0\n403,252,3.5\n403,253,3.0\n403,254,3.5\n403,255,4.0\n403,256,4.5\n403,257,5.0\n403,258,5.5\n403,259,6.0\n403,260,6.5\n403,261,7.0\n403,262,7.5\n403,263,8.0\n403,264,8.5\n403,265,9.0\n403,266,9.5\n403,267,10.0\n403,268,10.5\n403,269,11.0\n403,270,11.5\n403,271,12.0\n403,272,12.5\n403,273,13.0\n403,274,13.5\n403,275,4.0\n403,276,3.5\n403,277,3.0\n403,278,2.5\n403,279,3.0\n403,280,3.5\n403,281,4.0\n403,282,4.5\n403,283,5.0\n403,284,5.5\n403,285,6.0\n403,286,6.5\n403,287,7.0\n403,288,7.5\n403,289,8.0\n403,290,8.5\n403,291,9.0\n403,292,9.5\n403,293,10.0\n403,294,10.5\n403,295,11.0\n403,296,11.5\n403,297,12.0\n403,298,12.5\n403,299,13.0\n403,300,3.5\n403,301,3.0\n403,302,2.5\n403,303,2.0\n403,304,2.5\n403,305,3.0\n403,306,3.5\n403,307,4.0\n403,308,4.5\n403,309,5.0\n403,310,5.5\n403,311,6.0\n403,312,6.5\n403,313,7.0\n403,314,7.5\n403,315,8.0\n403,316,8.5\n403,317,9.0\n403,318,9.5\n403,319,10.0\n403,320,10.5\n403,321,11.0\n403,322,11.5\n403,323,12.0\n403,324,12.5\n403,325,3.0\n403,326,2.5\n403,327,2.0\n403,328,1.5\n403,329,2.0\n403,330,2.5\n403,331,3.0\n403,332,3.5\n403,333,4.0\n403,334,4.5\n403,335,5.0\n403,336,5.5\n403,337,6.0\n403,338,6.5\n403,339,7.0\n403,340,7.5\n403,341,8.0\n403,342,8.5\n403,343,9.0\n403,344,9.5\n403,345,10.0\n403,346,10.5\n403,347,11.0\n403,348,11.5\n403,349,12.0\n403,350,2.5\n403,351,2.0\n403,352,1.5\n403,353,1.0\n403,354,1.5\n403,355,2.0\n403,356,2.5\n403,357,3.0\n403,358,3.5\n403,359,4.0\n403,360,4.5\n403,361,5.0\n403,362,5.5\n403,363,6.0\n403,364,6.5\n403,365,7.0\n403,366,7.5\n403,367,8.0\n403,368,8.5\n403,369,9.0\n403,370,9.5\n403,371,10.0\n403,372,10.5\n403,373,11.0\n403,374,11.5\n403,375,2.0\n403,376,1.5\n403,377,1.0\n403,378,0.5\n403,379,1.0\n403,380,1.5\n403,381,2.0\n403,382,2.5\n403,383,3.0\n403,384,3.5\n403,385,4.0\n403,386,4.5\n403,387,5.0\n403,388,5.5\n403,389,6.0\n403,390,6.5\n403,391,7.0\n403,392,7.5\n403,393,8.0\n403,394,8.5\n403,395,9.0\n403,396,9.5\n403,397,10.0\n403,398,10.5\n403,399,11.0\n403,400,1.5\n403,401,1.0\n403,402,0.5\n403,403,0\n403,404,0.5\n403,405,1.0\n403,406,1.5\n403,407,2.0\n403,408,2.5\n403,409,3.0\n403,410,3.5\n403,411,4.0\n403,412,4.5\n403,413,5.0\n403,414,5.5\n403,415,6.0\n403,416,6.5\n403,417,7.0\n403,418,7.5\n403,419,8.0\n403,420,8.5\n403,421,9.0\n403,422,9.5\n403,423,10.0\n403,424,10.5\n403,425,2.0\n403,426,1.5\n403,427,1.0\n403,428,0.5\n403,429,1.0\n403,430,1.5\n403,431,2.0\n403,432,2.5\n403,433,3.0\n403,434,3.5\n403,435,4.0\n403,436,4.5\n403,437,5.0\n403,438,5.5\n403,439,6.0\n403,440,6.5\n403,441,7.0\n403,442,7.5\n403,443,8.0\n403,444,8.5\n403,445,9.0\n403,446,9.5\n403,447,10.0\n403,448,10.5\n403,449,11.0\n403,450,2.5\n403,451,2.0\n403,452,1.5\n403,453,1.0\n403,454,1.5\n403,455,2.0\n403,456,2.5\n403,457,3.0\n403,458,3.5\n403,459,4.0\n403,460,4.5\n403,461,5.0\n403,462,5.5\n403,463,6.0\n403,464,6.5\n403,465,7.0\n403,466,7.5\n403,467,8.0\n403,468,8.5\n403,469,9.0\n403,470,9.5\n403,471,10.0\n403,472,10.5\n403,473,11.0\n403,474,11.5\n403,475,3.0\n403,476,2.5\n403,477,2.0\n403,478,1.5\n403,479,2.0\n403,480,2.5\n403,481,3.0\n403,482,3.5\n403,483,4.0\n403,484,4.5\n403,485,5.0\n403,486,5.5\n403,487,6.0\n403,488,6.5\n403,489,7.0\n403,490,7.5\n403,491,8.0\n403,492,8.5\n403,493,9.0\n403,494,9.5\n403,495,10.0\n403,496,10.5\n403,497,11.0\n403,498,11.5\n403,499,12.0\n403,500,3.5\n403,501,3.0\n403,502,2.5\n403,503,2.0\n403,504,2.5\n403,505,3.0\n403,506,3.5\n403,507,4.0\n403,508,4.5\n403,509,5.0\n403,510,5.5\n403,511,6.0\n403,512,6.5\n403,513,7.0\n403,514,7.5\n403,515,8.0\n403,516,8.5\n403,517,9.0\n403,518,9.5\n403,519,10.0\n403,520,10.5\n403,521,11.0\n403,522,11.5\n403,523,12.0\n403,524,12.5\n403,525,4.0\n403,526,3.5\n403,527,3.0\n403,528,2.5\n403,529,3.0\n403,530,3.5\n403,531,4.0\n403,532,4.5\n403,533,5.0\n403,534,5.5\n403,535,6.0\n403,536,6.5\n403,537,7.0\n403,538,7.5\n403,539,8.0\n403,540,8.5\n403,541,9.0\n403,542,9.5\n403,543,10.0\n403,544,10.5\n403,545,11.0\n403,546,11.5\n403,547,12.0\n403,548,12.5\n403,549,13.0\n403,550,4.5\n403,551,4.0\n403,552,3.5\n403,553,3.0\n403,554,3.5\n403,555,4.0\n403,556,4.5\n403,557,5.0\n403,558,5.5\n403,559,6.0\n403,560,6.5\n403,561,7.0\n403,562,7.5\n403,563,8.0\n403,564,8.5\n403,565,9.0\n403,566,9.5\n403,567,10.0\n403,568,10.5\n403,569,11.0\n403,570,11.5\n403,571,12.0\n403,572,12.5\n403,573,13.0\n403,574,13.5\n403,575,5.0\n403,576,4.5\n403,577,4.0\n403,578,3.5\n403,579,4.0\n403,580,4.5\n403,581,5.0\n403,582,5.5\n403,583,6.0\n403,584,6.5\n403,585,7.0\n403,586,7.5\n403,587,8.0\n403,588,8.5\n403,589,9.0\n403,590,9.5\n403,591,10.0\n403,592,10.5\n403,593,11.0\n403,594,11.5\n403,595,12.0\n403,596,12.5\n403,597,13.0\n403,598,13.5\n403,599,14.0\n403,600,5.5\n403,601,5.0\n403,602,4.5\n403,603,4.0\n403,604,4.5\n403,605,5.0\n403,606,5.5\n403,607,6.0\n403,608,6.5\n403,609,7.0\n403,610,7.5\n403,611,8.0\n403,612,8.5\n403,613,9.0\n403,614,9.5\n403,615,10.0\n403,616,10.5\n403,617,11.0\n403,618,11.5\n403,619,12.0\n403,620,12.5\n403,621,13.0\n403,622,13.5\n403,623,14.0\n403,624,14.5\n404,0,10.0\n404,1,9.5\n404,2,9.0\n404,3,8.5\n404,4,8.0\n404,5,8.5\n404,6,9.0\n404,7,9.5\n404,8,10.0\n404,9,10.5\n404,10,11.0\n404,11,11.5\n404,12,12.0\n404,13,12.5\n404,14,13.0\n404,15,13.5\n404,16,14.0\n404,17,14.5\n404,18,15.0\n404,19,15.5\n404,20,16.0\n404,21,16.5\n404,22,17.0\n404,23,17.5\n404,24,18.0\n404,25,9.5\n404,26,9.0\n404,27,8.5\n404,28,8.0\n404,29,7.5\n404,30,8.0\n404,31,8.5\n404,32,9.0\n404,33,9.5\n404,34,10.0\n404,35,10.5\n404,36,11.0\n404,37,11.5\n404,38,12.0\n404,39,12.5\n404,40,13.0\n404,41,13.5\n404,42,14.0\n404,43,14.5\n404,44,15.0\n404,45,15.5\n404,46,16.0\n404,47,16.5\n404,48,17.0\n404,49,17.5\n404,50,9.0\n404,51,8.5\n404,52,8.0\n404,53,7.5\n404,54,7.0\n404,55,7.5\n404,56,8.0\n404,57,8.5\n404,58,9.0\n404,59,9.5\n404,60,10.0\n404,61,10.5\n404,62,11.0\n404,63,11.5\n404,64,12.0\n404,65,12.5\n404,66,13.0\n404,67,13.5\n404,68,14.0\n404,69,14.5\n404,70,15.0\n404,71,15.5\n404,72,16.0\n404,73,16.5\n404,74,17.0\n404,75,8.5\n404,76,8.0\n404,77,7.5\n404,78,7.0\n404,79,6.5\n404,80,7.0\n404,81,7.5\n404,82,8.0\n404,83,8.5\n404,84,9.0\n404,85,9.5\n404,86,10.0\n404,87,10.5\n404,88,11.0\n404,89,11.5\n404,90,12.0\n404,91,12.5\n404,92,13.0\n404,93,13.5\n404,94,14.0\n404,95,14.5\n404,96,15.0\n404,97,15.5\n404,98,16.0\n404,99,16.5\n404,100,8.0\n404,101,7.5\n404,102,7.0\n404,103,6.5\n404,104,6.0\n404,105,6.5\n404,106,7.0\n404,107,7.5\n404,108,8.0\n404,109,8.5\n404,110,9.0\n404,111,9.5\n404,112,10.0\n404,113,10.5\n404,114,11.0\n404,115,11.5\n404,116,12.0\n404,117,12.5\n404,118,13.0\n404,119,13.5\n404,120,14.0\n404,121,14.5\n404,122,15.0\n404,123,15.5\n404,124,16.0\n404,125,7.5\n404,126,7.0\n404,127,6.5\n404,128,6.0\n404,129,5.5\n404,130,6.0\n404,131,6.5\n404,132,7.0\n404,133,7.5\n404,134,8.0\n404,135,8.5\n404,136,9.0\n404,137,9.5\n404,138,10.0\n404,139,10.5\n404,140,11.0\n404,141,11.5\n404,142,12.0\n404,143,12.5\n404,144,13.0\n404,145,13.5\n404,146,14.0\n404,147,14.5\n404,148,15.0\n404,149,15.5\n404,150,7.0\n404,151,6.5\n404,152,6.0\n404,153,5.5\n404,154,5.0\n404,155,5.5\n404,156,6.0\n404,157,6.5\n404,158,7.0\n404,159,7.5\n404,160,8.0\n404,161,8.5\n404,162,9.0\n404,163,9.5\n404,164,10.0\n404,165,10.5\n404,166,11.0\n404,167,11.5\n404,168,12.0\n404,169,12.5\n404,170,13.0\n404,171,13.5\n404,172,14.0\n404,173,14.5\n404,174,15.0\n404,175,6.5\n404,176,6.0\n404,177,5.5\n404,178,5.0\n404,179,4.5\n404,180,5.0\n404,181,5.5\n404,182,6.0\n404,183,6.5\n404,184,7.0\n404,185,7.5\n404,186,8.0\n404,187,8.5\n404,188,9.0\n404,189,9.5\n404,190,10.0\n404,191,10.5\n404,192,11.0\n404,193,11.5\n404,194,12.0\n404,195,12.5\n404,196,13.0\n404,197,13.5\n404,198,14.0\n404,199,14.5\n404,200,6.0\n404,201,5.5\n404,202,5.0\n404,203,4.5\n404,204,4.0\n404,205,4.5\n404,206,5.0\n404,207,5.5\n404,208,6.0\n404,209,6.5\n404,210,7.0\n404,211,7.5\n404,212,8.0\n404,213,8.5\n404,214,9.0\n404,215,9.5\n404,216,10.0\n404,217,10.5\n404,218,11.0\n404,219,11.5\n404,220,12.0\n404,221,12.5\n404,222,13.0\n404,223,13.5\n404,224,14.0\n404,225,5.5\n404,226,5.0\n404,227,4.5\n404,228,4.0\n404,229,3.5\n404,230,4.0\n404,231,4.5\n404,232,5.0\n404,233,5.5\n404,234,6.0\n404,235,6.5\n404,236,7.0\n404,237,7.5\n404,238,8.0\n404,239,8.5\n404,240,9.0\n404,241,9.5\n404,242,10.0\n404,243,10.5\n404,244,11.0\n404,245,11.5\n404,246,12.0\n404,247,12.5\n404,248,13.0\n404,249,13.5\n404,250,5.0\n404,251,4.5\n404,252,4.0\n404,253,3.5\n404,254,3.0\n404,255,3.5\n404,256,4.0\n404,257,4.5\n404,258,5.0\n404,259,5.5\n404,260,6.0\n404,261,6.5\n404,262,7.0\n404,263,7.5\n404,264,8.0\n404,265,8.5\n404,266,9.0\n404,267,9.5\n404,268,10.0\n404,269,10.5\n404,270,11.0\n404,271,11.5\n404,272,12.0\n404,273,12.5\n404,274,13.0\n404,275,4.5\n404,276,4.0\n404,277,3.5\n404,278,3.0\n404,279,2.5\n404,280,3.0\n404,281,3.5\n404,282,4.0\n404,283,4.5\n404,284,5.0\n404,285,5.5\n404,286,6.0\n404,287,6.5\n404,288,7.0\n404,289,7.5\n404,290,8.0\n404,291,8.5\n404,292,9.0\n404,293,9.5\n404,294,10.0\n404,295,10.5\n404,296,11.0\n404,297,11.5\n404,298,12.0\n404,299,12.5\n404,300,4.0\n404,301,3.5\n404,302,3.0\n404,303,2.5\n404,304,2.0\n404,305,2.5\n404,306,3.0\n404,307,3.5\n404,308,4.0\n404,309,4.5\n404,310,5.0\n404,311,5.5\n404,312,6.0\n404,313,6.5\n404,314,7.0\n404,315,7.5\n404,316,8.0\n404,317,8.5\n404,318,9.0\n404,319,9.5\n404,320,10.0\n404,321,10.5\n404,322,11.0\n404,323,11.5\n404,324,12.0\n404,325,3.5\n404,326,3.0\n404,327,2.5\n404,328,2.0\n404,329,1.5\n404,330,2.0\n404,331,2.5\n404,332,3.0\n404,333,3.5\n404,334,4.0\n404,335,4.5\n404,336,5.0\n404,337,5.5\n404,338,6.0\n404,339,6.5\n404,340,7.0\n404,341,7.5\n404,342,8.0\n404,343,8.5\n404,344,9.0\n404,345,9.5\n404,346,10.0\n404,347,10.5\n404,348,11.0\n404,349,11.5\n404,350,3.0\n404,351,2.5\n404,352,2.0\n404,353,1.5\n404,354,1.0\n404,355,1.5\n404,356,2.0\n404,357,2.5\n404,358,3.0\n404,359,3.5\n404,360,4.0\n404,361,4.5\n404,362,5.0\n404,363,5.5\n404,364,6.0\n404,365,6.5\n404,366,7.0\n404,367,7.5\n404,368,8.0\n404,369,8.5\n404,370,9.0\n404,371,9.5\n404,372,10.0\n404,373,10.5\n404,374,11.0\n404,375,2.5\n404,376,2.0\n404,377,1.5\n404,378,1.0\n404,379,0.5\n404,380,1.0\n404,381,1.5\n404,382,2.0\n404,383,2.5\n404,384,3.0\n404,385,3.5\n404,386,4.0\n404,387,4.5\n404,388,5.0\n404,389,5.5\n404,390,6.0\n404,391,6.5\n404,392,7.0\n404,393,7.5\n404,394,8.0\n404,395,8.5\n404,396,9.0\n404,397,9.5\n404,398,10.0\n404,399,10.5\n404,400,2.0\n404,401,1.5\n404,402,1.0\n404,403,0.5\n404,404,0\n404,405,0.5\n404,406,1.0\n404,407,1.5\n404,408,2.0\n404,409,2.5\n404,410,3.0\n404,411,3.5\n404,412,4.0\n404,413,4.5\n404,414,5.0\n404,415,5.5\n404,416,6.0\n404,417,6.5\n404,418,7.0\n404,419,7.5\n404,420,8.0\n404,421,8.5\n404,422,9.0\n404,423,9.5\n404,424,10.0\n404,425,2.5\n404,426,2.0\n404,427,1.5\n404,428,1.0\n404,429,0.5\n404,430,1.0\n404,431,1.5\n404,432,2.0\n404,433,2.5\n404,434,3.0\n404,435,3.5\n404,436,4.0\n404,437,4.5\n404,438,5.0\n404,439,5.5\n404,440,6.0\n404,441,6.5\n404,442,7.0\n404,443,7.5\n404,444,8.0\n404,445,8.5\n404,446,9.0\n404,447,9.5\n404,448,10.0\n404,449,10.5\n404,450,3.0\n404,451,2.5\n404,452,2.0\n404,453,1.5\n404,454,1.0\n404,455,1.5\n404,456,2.0\n404,457,2.5\n404,458,3.0\n404,459,3.5\n404,460,4.0\n404,461,4.5\n404,462,5.0\n404,463,5.5\n404,464,6.0\n404,465,6.5\n404,466,7.0\n404,467,7.5\n404,468,8.0\n404,469,8.5\n404,470,9.0\n404,471,9.5\n404,472,10.0\n404,473,10.5\n404,474,11.0\n404,475,3.5\n404,476,3.0\n404,477,2.5\n404,478,2.0\n404,479,1.5\n404,480,2.0\n404,481,2.5\n404,482,3.0\n404,483,3.5\n404,484,4.0\n404,485,4.5\n404,486,5.0\n404,487,5.5\n404,488,6.0\n404,489,6.5\n404,490,7.0\n404,491,7.5\n404,492,8.0\n404,493,8.5\n404,494,9.0\n404,495,9.5\n404,496,10.0\n404,497,10.5\n404,498,11.0\n404,499,11.5\n404,500,4.0\n404,501,3.5\n404,502,3.0\n404,503,2.5\n404,504,2.0\n404,505,2.5\n404,506,3.0\n404,507,3.5\n404,508,4.0\n404,509,4.5\n404,510,5.0\n404,511,5.5\n404,512,6.0\n404,513,6.5\n404,514,7.0\n404,515,7.5\n404,516,8.0\n404,517,8.5\n404,518,9.0\n404,519,9.5\n404,520,10.0\n404,521,10.5\n404,522,11.0\n404,523,11.5\n404,524,12.0\n404,525,4.5\n404,526,4.0\n404,527,3.5\n404,528,3.0\n404,529,2.5\n404,530,3.0\n404,531,3.5\n404,532,4.0\n404,533,4.5\n404,534,5.0\n404,535,5.5\n404,536,6.0\n404,537,6.5\n404,538,7.0\n404,539,7.5\n404,540,8.0\n404,541,8.5\n404,542,9.0\n404,543,9.5\n404,544,10.0\n404,545,10.5\n404,546,11.0\n404,547,11.5\n404,548,12.0\n404,549,12.5\n404,550,5.0\n404,551,4.5\n404,552,4.0\n404,553,3.5\n404,554,3.0\n404,555,3.5\n404,556,4.0\n404,557,4.5\n404,558,5.0\n404,559,5.5\n404,560,6.0\n404,561,6.5\n404,562,7.0\n404,563,7.5\n404,564,8.0\n404,565,8.5\n404,566,9.0\n404,567,9.5\n404,568,10.0\n404,569,10.5\n404,570,11.0\n404,571,11.5\n404,572,12.0\n404,573,12.5\n404,574,13.0\n404,575,5.5\n404,576,5.0\n404,577,4.5\n404,578,4.0\n404,579,3.5\n404,580,4.0\n404,581,4.5\n404,582,5.0\n404,583,5.5\n404,584,6.0\n404,585,6.5\n404,586,7.0\n404,587,7.5\n404,588,8.0\n404,589,8.5\n404,590,9.0\n404,591,9.5\n404,592,10.0\n404,593,10.5\n404,594,11.0\n404,595,11.5\n404,596,12.0\n404,597,12.5\n404,598,13.0\n404,599,13.5\n404,600,6.0\n404,601,5.5\n404,602,5.0\n404,603,4.5\n404,604,4.0\n404,605,4.5\n404,606,5.0\n404,607,5.5\n404,608,6.0\n404,609,6.5\n404,610,7.0\n404,611,7.5\n404,612,8.0\n404,613,8.5\n404,614,9.0\n404,615,9.5\n404,616,10.0\n404,617,10.5\n404,618,11.0\n404,619,11.5\n404,620,12.0\n404,621,12.5\n404,622,13.0\n404,623,13.5\n404,624,14.0\n405,0,10.5\n405,1,10.0\n405,2,9.5\n405,3,9.0\n405,4,8.5\n405,5,8.0\n405,6,8.5\n405,7,9.0\n405,8,9.5\n405,9,10.0\n405,10,10.5\n405,11,11.0\n405,12,11.5\n405,13,12.0\n405,14,12.5\n405,15,13.0\n405,16,13.5\n405,17,14.0\n405,18,14.5\n405,19,15.0\n405,20,15.5\n405,21,16.0\n405,22,16.5\n405,23,17.0\n405,24,17.5\n405,25,10.0\n405,26,9.5\n405,27,9.0\n405,28,8.5\n405,29,8.0\n405,30,7.5\n405,31,8.0\n405,32,8.5\n405,33,9.0\n405,34,9.5\n405,35,10.0\n405,36,10.5\n405,37,11.0\n405,38,11.5\n405,39,12.0\n405,40,12.5\n405,41,13.0\n405,42,13.5\n405,43,14.0\n405,44,14.5\n405,45,15.0\n405,46,15.5\n405,47,16.0\n405,48,16.5\n405,49,17.0\n405,50,9.5\n405,51,9.0\n405,52,8.5\n405,53,8.0\n405,54,7.5\n405,55,7.0\n405,56,7.5\n405,57,8.0\n405,58,8.5\n405,59,9.0\n405,60,9.5\n405,61,10.0\n405,62,10.5\n405,63,11.0\n405,64,11.5\n405,65,12.0\n405,66,12.5\n405,67,13.0\n405,68,13.5\n405,69,14.0\n405,70,14.5\n405,71,15.0\n405,72,15.5\n405,73,16.0\n405,74,16.5\n405,75,9.0\n405,76,8.5\n405,77,8.0\n405,78,7.5\n405,79,7.0\n405,80,6.5\n405,81,7.0\n405,82,7.5\n405,83,8.0\n405,84,8.5\n405,85,9.0\n405,86,9.5\n405,87,10.0\n405,88,10.5\n405,89,11.0\n405,90,11.5\n405,91,12.0\n405,92,12.5\n405,93,13.0\n405,94,13.5\n405,95,14.0\n405,96,14.5\n405,97,15.0\n405,98,15.5\n405,99,16.0\n405,100,8.5\n405,101,8.0\n405,102,7.5\n405,103,7.0\n405,104,6.5\n405,105,6.0\n405,106,6.5\n405,107,7.0\n405,108,7.5\n405,109,8.0\n405,110,8.5\n405,111,9.0\n405,112,9.5\n405,113,10.0\n405,114,10.5\n405,115,11.0\n405,116,11.5\n405,117,12.0\n405,118,12.5\n405,119,13.0\n405,120,13.5\n405,121,14.0\n405,122,14.5\n405,123,15.0\n405,124,15.5\n405,125,8.0\n405,126,7.5\n405,127,7.0\n405,128,6.5\n405,129,6.0\n405,130,5.5\n405,131,6.0\n405,132,6.5\n405,133,7.0\n405,134,7.5\n405,135,8.0\n405,136,8.5\n405,137,9.0\n405,138,9.5\n405,139,10.0\n405,140,10.5\n405,141,11.0\n405,142,11.5\n405,143,12.0\n405,144,12.5\n405,145,13.0\n405,146,13.5\n405,147,14.0\n405,148,14.5\n405,149,15.0\n405,150,7.5\n405,151,7.0\n405,152,6.5\n405,153,6.0\n405,154,5.5\n405,155,5.0\n405,156,5.5\n405,157,6.0\n405,158,6.5\n405,159,7.0\n405,160,7.5\n405,161,8.0\n405,162,8.5\n405,163,9.0\n405,164,9.5\n405,165,10.0\n405,166,10.5\n405,167,11.0\n405,168,11.5\n405,169,12.0\n405,170,12.5\n405,171,13.0\n405,172,13.5\n405,173,14.0\n405,174,14.5\n405,175,7.0\n405,176,6.5\n405,177,6.0\n405,178,5.5\n405,179,5.0\n405,180,4.5\n405,181,5.0\n405,182,5.5\n405,183,6.0\n405,184,6.5\n405,185,7.0\n405,186,7.5\n405,187,8.0\n405,188,8.5\n405,189,9.0\n405,190,9.5\n405,191,10.0\n405,192,10.5\n405,193,11.0\n405,194,11.5\n405,195,12.0\n405,196,12.5\n405,197,13.0\n405,198,13.5\n405,199,14.0\n405,200,6.5\n405,201,6.0\n405,202,5.5\n405,203,5.0\n405,204,4.5\n405,205,4.0\n405,206,4.5\n405,207,5.0\n405,208,5.5\n405,209,6.0\n405,210,6.5\n405,211,7.0\n405,212,7.5\n405,213,8.0\n405,214,8.5\n405,215,9.0\n405,216,9.5\n405,217,10.0\n405,218,10.5\n405,219,11.0\n405,220,11.5\n405,221,12.0\n405,222,12.5\n405,223,13.0\n405,224,13.5\n405,225,6.0\n405,226,5.5\n405,227,5.0\n405,228,4.5\n405,229,4.0\n405,230,3.5\n405,231,4.0\n405,232,4.5\n405,233,5.0\n405,234,5.5\n405,235,6.0\n405,236,6.5\n405,237,7.0\n405,238,7.5\n405,239,8.0\n405,240,8.5\n405,241,9.0\n405,242,9.5\n405,243,10.0\n405,244,10.5\n405,245,11.0\n405,246,11.5\n405,247,12.0\n405,248,12.5\n405,249,13.0\n405,250,5.5\n405,251,5.0\n405,252,4.5\n405,253,4.0\n405,254,3.5\n405,255,3.0\n405,256,3.5\n405,257,4.0\n405,258,4.5\n405,259,5.0\n405,260,5.5\n405,261,6.0\n405,262,6.5\n405,263,7.0\n405,264,7.5\n405,265,8.0\n405,266,8.5\n405,267,9.0\n405,268,9.5\n405,269,10.0\n405,270,10.5\n405,271,11.0\n405,272,11.5\n405,273,12.0\n405,274,12.5\n405,275,5.0\n405,276,4.5\n405,277,4.0\n405,278,3.5\n405,279,3.0\n405,280,2.5\n405,281,3.0\n405,282,3.5\n405,283,4.0\n405,284,4.5\n405,285,5.0\n405,286,5.5\n405,287,6.0\n405,288,6.5\n405,289,7.0\n405,290,7.5\n405,291,8.0\n405,292,8.5\n405,293,9.0\n405,294,9.5\n405,295,10.0\n405,296,10.5\n405,297,11.0\n405,298,11.5\n405,299,12.0\n405,300,4.5\n405,301,4.0\n405,302,3.5\n405,303,3.0\n405,304,2.5\n405,305,2.0\n405,306,2.5\n405,307,3.0\n405,308,3.5\n405,309,4.0\n405,310,4.5\n405,311,5.0\n405,312,5.5\n405,313,6.0\n405,314,6.5\n405,315,7.0\n405,316,7.5\n405,317,8.0\n405,318,8.5\n405,319,9.0\n405,320,9.5\n405,321,10.0\n405,322,10.5\n405,323,11.0\n405,324,11.5\n405,325,4.0\n405,326,3.5\n405,327,3.0\n405,328,2.5\n405,329,2.0\n405,330,1.5\n405,331,2.0\n405,332,2.5\n405,333,3.0\n405,334,3.5\n405,335,4.0\n405,336,4.5\n405,337,5.0\n405,338,5.5\n405,339,6.0\n405,340,6.5\n405,341,7.0\n405,342,7.5\n405,343,8.0\n405,344,8.5\n405,345,9.0\n405,346,9.5\n405,347,10.0\n405,348,10.5\n405,349,11.0\n405,350,3.5\n405,351,3.0\n405,352,2.5\n405,353,2.0\n405,354,1.5\n405,355,1.0\n405,356,1.5\n405,357,2.0\n405,358,2.5\n405,359,3.0\n405,360,3.5\n405,361,4.0\n405,362,4.5\n405,363,5.0\n405,364,5.5\n405,365,6.0\n405,366,6.5\n405,367,7.0\n405,368,7.5\n405,369,8.0\n405,370,8.5\n405,371,9.0\n405,372,9.5\n405,373,10.0\n405,374,10.5\n405,375,3.0\n405,376,2.5\n405,377,2.0\n405,378,1.5\n405,379,1.0\n405,380,0.5\n405,381,1.0\n405,382,1.5\n405,383,2.0\n405,384,2.5\n405,385,3.0\n405,386,3.5\n405,387,4.0\n405,388,4.5\n405,389,5.0\n405,390,5.5\n405,391,6.0\n405,392,6.5\n405,393,7.0\n405,394,7.5\n405,395,8.0\n405,396,8.5\n405,397,9.0\n405,398,9.5\n405,399,10.0\n405,400,2.5\n405,401,2.0\n405,402,1.5\n405,403,1.0\n405,404,0.5\n405,405,0\n405,406,0.5\n405,407,1.0\n405,408,1.5\n405,409,2.0\n405,410,2.5\n405,411,3.0\n405,412,3.5\n405,413,4.0\n405,414,4.5\n405,415,5.0\n405,416,5.5\n405,417,6.0\n405,418,6.5\n405,419,7.0\n405,420,7.5\n405,421,8.0\n405,422,8.5\n405,423,9.0\n405,424,9.5\n405,425,3.0\n405,426,2.5\n405,427,2.0\n405,428,1.5\n405,429,1.0\n405,430,0.5\n405,431,1.0\n405,432,1.5\n405,433,2.0\n405,434,2.5\n405,435,3.0\n405,436,3.5\n405,437,4.0\n405,438,4.5\n405,439,5.0\n405,440,5.5\n405,441,6.0\n405,442,6.5\n405,443,7.0\n405,444,7.5\n405,445,8.0\n405,446,8.5\n405,447,9.0\n405,448,9.5\n405,449,10.0\n405,450,3.5\n405,451,3.0\n405,452,2.5\n405,453,2.0\n405,454,1.5\n405,455,1.0\n405,456,1.5\n405,457,2.0\n405,458,2.5\n405,459,3.0\n405,460,3.5\n405,461,4.0\n405,462,4.5\n405,463,5.0\n405,464,5.5\n405,465,6.0\n405,466,6.5\n405,467,7.0\n405,468,7.5\n405,469,8.0\n405,470,8.5\n405,471,9.0\n405,472,9.5\n405,473,10.0\n405,474,10.5\n405,475,4.0\n405,476,3.5\n405,477,3.0\n405,478,2.5\n405,479,2.0\n405,480,1.5\n405,481,2.0\n405,482,2.5\n405,483,3.0\n405,484,3.5\n405,485,4.0\n405,486,4.5\n405,487,5.0\n405,488,5.5\n405,489,6.0\n405,490,6.5\n405,491,7.0\n405,492,7.5\n405,493,8.0\n405,494,8.5\n405,495,9.0\n405,496,9.5\n405,497,10.0\n405,498,10.5\n405,499,11.0\n405,500,4.5\n405,501,4.0\n405,502,3.5\n405,503,3.0\n405,504,2.5\n405,505,2.0\n405,506,2.5\n405,507,3.0\n405,508,3.5\n405,509,4.0\n405,510,4.5\n405,511,5.0\n405,512,5.5\n405,513,6.0\n405,514,6.5\n405,515,7.0\n405,516,7.5\n405,517,8.0\n405,518,8.5\n405,519,9.0\n405,520,9.5\n405,521,10.0\n405,522,10.5\n405,523,11.0\n405,524,11.5\n405,525,5.0\n405,526,4.5\n405,527,4.0\n405,528,3.5\n405,529,3.0\n405,530,2.5\n405,531,3.0\n405,532,3.5\n405,533,4.0\n405,534,4.5\n405,535,5.0\n405,536,5.5\n405,537,6.0\n405,538,6.5\n405,539,7.0\n405,540,7.5\n405,541,8.0\n405,542,8.5\n405,543,9.0\n405,544,9.5\n405,545,10.0\n405,546,10.5\n405,547,11.0\n405,548,11.5\n405,549,12.0\n405,550,5.5\n405,551,5.0\n405,552,4.5\n405,553,4.0\n405,554,3.5\n405,555,3.0\n405,556,3.5\n405,557,4.0\n405,558,4.5\n405,559,5.0\n405,560,5.5\n405,561,6.0\n405,562,6.5\n405,563,7.0\n405,564,7.5\n405,565,8.0\n405,566,8.5\n405,567,9.0\n405,568,9.5\n405,569,10.0\n405,570,10.5\n405,571,11.0\n405,572,11.5\n405,573,12.0\n405,574,12.5\n405,575,6.0\n405,576,5.5\n405,577,5.0\n405,578,4.5\n405,579,4.0\n405,580,3.5\n405,581,4.0\n405,582,4.5\n405,583,5.0\n405,584,5.5\n405,585,6.0\n405,586,6.5\n405,587,7.0\n405,588,7.5\n405,589,8.0\n405,590,8.5\n405,591,9.0\n405,592,9.5\n405,593,10.0\n405,594,10.5\n405,595,11.0\n405,596,11.5\n405,597,12.0\n405,598,12.5\n405,599,13.0\n405,600,6.5\n405,601,6.0\n405,602,5.5\n405,603,5.0\n405,604,4.5\n405,605,4.0\n405,606,4.5\n405,607,5.0\n405,608,5.5\n405,609,6.0\n405,610,6.5\n405,611,7.0\n405,612,7.5\n405,613,8.0\n405,614,8.5\n405,615,9.0\n405,616,9.5\n405,617,10.0\n405,618,10.5\n405,619,11.0\n405,620,11.5\n405,621,12.0\n405,622,12.5\n405,623,13.0\n405,624,13.5\n406,0,11.0\n406,1,10.5\n406,2,10.0\n406,3,9.5\n406,4,9.0\n406,5,8.5\n406,6,8.0\n406,7,8.5\n406,8,9.0\n406,9,9.5\n406,10,10.0\n406,11,10.5\n406,12,11.0\n406,13,11.5\n406,14,12.0\n406,15,12.5\n406,16,13.0\n406,17,13.5\n406,18,14.0\n406,19,14.5\n406,20,15.0\n406,21,15.5\n406,22,16.0\n406,23,16.5\n406,24,17.0\n406,25,10.5\n406,26,10.0\n406,27,9.5\n406,28,9.0\n406,29,8.5\n406,30,8.0\n406,31,7.5\n406,32,8.0\n406,33,8.5\n406,34,9.0\n406,35,9.5\n406,36,10.0\n406,37,10.5\n406,38,11.0\n406,39,11.5\n406,40,12.0\n406,41,12.5\n406,42,13.0\n406,43,13.5\n406,44,14.0\n406,45,14.5\n406,46,15.0\n406,47,15.5\n406,48,16.0\n406,49,16.5\n406,50,10.0\n406,51,9.5\n406,52,9.0\n406,53,8.5\n406,54,8.0\n406,55,7.5\n406,56,7.0\n406,57,7.5\n406,58,8.0\n406,59,8.5\n406,60,9.0\n406,61,9.5\n406,62,10.0\n406,63,10.5\n406,64,11.0\n406,65,11.5\n406,66,12.0\n406,67,12.5\n406,68,13.0\n406,69,13.5\n406,70,14.0\n406,71,14.5\n406,72,15.0\n406,73,15.5\n406,74,16.0\n406,75,9.5\n406,76,9.0\n406,77,8.5\n406,78,8.0\n406,79,7.5\n406,80,7.0\n406,81,6.5\n406,82,7.0\n406,83,7.5\n406,84,8.0\n406,85,8.5\n406,86,9.0\n406,87,9.5\n406,88,10.0\n406,89,10.5\n406,90,11.0\n406,91,11.5\n406,92,12.0\n406,93,12.5\n406,94,13.0\n406,95,13.5\n406,96,14.0\n406,97,14.5\n406,98,15.0\n406,99,15.5\n406,100,9.0\n406,101,8.5\n406,102,8.0\n406,103,7.5\n406,104,7.0\n406,105,6.5\n406,106,6.0\n406,107,6.5\n406,108,7.0\n406,109,7.5\n406,110,8.0\n406,111,8.5\n406,112,9.0\n406,113,9.5\n406,114,10.0\n406,115,10.5\n406,116,11.0\n406,117,11.5\n406,118,12.0\n406,119,12.5\n406,120,13.0\n406,121,13.5\n406,122,14.0\n406,123,14.5\n406,124,15.0\n406,125,8.5\n406,126,8.0\n406,127,7.5\n406,128,7.0\n406,129,6.5\n406,130,6.0\n406,131,5.5\n406,132,6.0\n406,133,6.5\n406,134,7.0\n406,135,7.5\n406,136,8.0\n406,137,8.5\n406,138,9.0\n406,139,9.5\n406,140,10.0\n406,141,10.5\n406,142,11.0\n406,143,11.5\n406,144,12.0\n406,145,12.5\n406,146,13.0\n406,147,13.5\n406,148,14.0\n406,149,14.5\n406,150,8.0\n406,151,7.5\n406,152,7.0\n406,153,6.5\n406,154,6.0\n406,155,5.5\n406,156,5.0\n406,157,5.5\n406,158,6.0\n406,159,6.5\n406,160,7.0\n406,161,7.5\n406,162,8.0\n406,163,8.5\n406,164,9.0\n406,165,9.5\n406,166,10.0\n406,167,10.5\n406,168,11.0\n406,169,11.5\n406,170,12.0\n406,171,12.5\n406,172,13.0\n406,173,13.5\n406,174,14.0\n406,175,7.5\n406,176,7.0\n406,177,6.5\n406,178,6.0\n406,179,5.5\n406,180,5.0\n406,181,4.5\n406,182,5.0\n406,183,5.5\n406,184,6.0\n406,185,6.5\n406,186,7.0\n406,187,7.5\n406,188,8.0\n406,189,8.5\n406,190,9.0\n406,191,9.5\n406,192,10.0\n406,193,10.5\n406,194,11.0\n406,195,11.5\n406,196,12.0\n406,197,12.5\n406,198,13.0\n406,199,13.5\n406,200,7.0\n406,201,6.5\n406,202,6.0\n406,203,5.5\n406,204,5.0\n406,205,4.5\n406,206,4.0\n406,207,4.5\n406,208,5.0\n406,209,5.5\n406,210,6.0\n406,211,6.5\n406,212,7.0\n406,213,7.5\n406,214,8.0\n406,215,8.5\n406,216,9.0\n406,217,9.5\n406,218,10.0\n406,219,10.5\n406,220,11.0\n406,221,11.5\n406,222,12.0\n406,223,12.5\n406,224,13.0\n406,225,6.5\n406,226,6.0\n406,227,5.5\n406,228,5.0\n406,229,4.5\n406,230,4.0\n406,231,3.5\n406,232,4.0\n406,233,4.5\n406,234,5.0\n406,235,5.5\n406,236,6.0\n406,237,6.5\n406,238,7.0\n406,239,7.5\n406,240,8.0\n406,241,8.5\n406,242,9.0\n406,243,9.5\n406,244,10.0\n406,245,10.5\n406,246,11.0\n406,247,11.5\n406,248,12.0\n406,249,12.5\n406,250,6.0\n406,251,5.5\n406,252,5.0\n406,253,4.5\n406,254,4.0\n406,255,3.5\n406,256,3.0\n406,257,3.5\n406,258,4.0\n406,259,4.5\n406,260,5.0\n406,261,5.5\n406,262,6.0\n406,263,6.5\n406,264,7.0\n406,265,7.5\n406,266,8.0\n406,267,8.5\n406,268,9.0\n406,269,9.5\n406,270,10.0\n406,271,10.5\n406,272,11.0\n406,273,11.5\n406,274,12.0\n406,275,5.5\n406,276,5.0\n406,277,4.5\n406,278,4.0\n406,279,3.5\n406,280,3.0\n406,281,2.5\n406,282,3.0\n406,283,3.5\n406,284,4.0\n406,285,4.5\n406,286,5.0\n406,287,5.5\n406,288,6.0\n406,289,6.5\n406,290,7.0\n406,291,7.5\n406,292,8.0\n406,293,8.5\n406,294,9.0\n406,295,9.5\n406,296,10.0\n406,297,10.5\n406,298,11.0\n406,299,11.5\n406,300,5.0\n406,301,4.5\n406,302,4.0\n406,303,3.5\n406,304,3.0\n406,305,2.5\n406,306,2.0\n406,307,2.5\n406,308,3.0\n406,309,3.5\n406,310,4.0\n406,311,4.5\n406,312,5.0\n406,313,5.5\n406,314,6.0\n406,315,6.5\n406,316,7.0\n406,317,7.5\n406,318,8.0\n406,319,8.5\n406,320,9.0\n406,321,9.5\n406,322,10.0\n406,323,10.5\n406,324,11.0\n406,325,4.5\n406,326,4.0\n406,327,3.5\n406,328,3.0\n406,329,2.5\n406,330,2.0\n406,331,1.5\n406,332,2.0\n406,333,2.5\n406,334,3.0\n406,335,3.5\n406,336,4.0\n406,337,4.5\n406,338,5.0\n406,339,5.5\n406,340,6.0\n406,341,6.5\n406,342,7.0\n406,343,7.5\n406,344,8.0\n406,345,8.5\n406,346,9.0\n406,347,9.5\n406,348,10.0\n406,349,10.5\n406,350,4.0\n406,351,3.5\n406,352,3.0\n406,353,2.5\n406,354,2.0\n406,355,1.5\n406,356,1.0\n406,357,1.5\n406,358,2.0\n406,359,2.5\n406,360,3.0\n406,361,3.5\n406,362,4.0\n406,363,4.5\n406,364,5.0\n406,365,5.5\n406,366,6.0\n406,367,6.5\n406,368,7.0\n406,369,7.5\n406,370,8.0\n406,371,8.5\n406,372,9.0\n406,373,9.5\n406,374,10.0\n406,375,3.5\n406,376,3.0\n406,377,2.5\n406,378,2.0\n406,379,1.5\n406,380,1.0\n406,381,0.5\n406,382,1.0\n406,383,1.5\n406,384,2.0\n406,385,2.5\n406,386,3.0\n406,387,3.5\n406,388,4.0\n406,389,4.5\n406,390,5.0\n406,391,5.5\n406,392,6.0\n406,393,6.5\n406,394,7.0\n406,395,7.5\n406,396,8.0\n406,397,8.5\n406,398,9.0\n406,399,9.5\n406,400,3.0\n406,401,2.5\n406,402,2.0\n406,403,1.5\n406,404,1.0\n406,405,0.5\n406,406,0\n406,407,0.5\n406,408,1.0\n406,409,1.5\n406,410,2.0\n406,411,2.5\n406,412,3.0\n406,413,3.5\n406,414,4.0\n406,415,4.5\n406,416,5.0\n406,417,5.5\n406,418,6.0\n406,419,6.5\n406,420,7.0\n406,421,7.5\n406,422,8.0\n406,423,8.5\n406,424,9.0\n406,425,3.5\n406,426,3.0\n406,427,2.5\n406,428,2.0\n406,429,1.5\n406,430,1.0\n406,431,0.5\n406,432,1.0\n406,433,1.5\n406,434,2.0\n406,435,2.5\n406,436,3.0\n406,437,3.5\n406,438,4.0\n406,439,4.5\n406,440,5.0\n406,441,5.5\n406,442,6.0\n406,443,6.5\n406,444,7.0\n406,445,7.5\n406,446,8.0\n406,447,8.5\n406,448,9.0\n406,449,9.5\n406,450,4.0\n406,451,3.5\n406,452,3.0\n406,453,2.5\n406,454,2.0\n406,455,1.5\n406,456,1.0\n406,457,1.5\n406,458,2.0\n406,459,2.5\n406,460,3.0\n406,461,3.5\n406,462,4.0\n406,463,4.5\n406,464,5.0\n406,465,5.5\n406,466,6.0\n406,467,6.5\n406,468,7.0\n406,469,7.5\n406,470,8.0\n406,471,8.5\n406,472,9.0\n406,473,9.5\n406,474,10.0\n406,475,4.5\n406,476,4.0\n406,477,3.5\n406,478,3.0\n406,479,2.5\n406,480,2.0\n406,481,1.5\n406,482,2.0\n406,483,2.5\n406,484,3.0\n406,485,3.5\n406,486,4.0\n406,487,4.5\n406,488,5.0\n406,489,5.5\n406,490,6.0\n406,491,6.5\n406,492,7.0\n406,493,7.5\n406,494,8.0\n406,495,8.5\n406,496,9.0\n406,497,9.5\n406,498,10.0\n406,499,10.5\n406,500,5.0\n406,501,4.5\n406,502,4.0\n406,503,3.5\n406,504,3.0\n406,505,2.5\n406,506,2.0\n406,507,2.5\n406,508,3.0\n406,509,3.5\n406,510,4.0\n406,511,4.5\n406,512,5.0\n406,513,5.5\n406,514,6.0\n406,515,6.5\n406,516,7.0\n406,517,7.5\n406,518,8.0\n406,519,8.5\n406,520,9.0\n406,521,9.5\n406,522,10.0\n406,523,10.5\n406,524,11.0\n406,525,5.5\n406,526,5.0\n406,527,4.5\n406,528,4.0\n406,529,3.5\n406,530,3.0\n406,531,2.5\n406,532,3.0\n406,533,3.5\n406,534,4.0\n406,535,4.5\n406,536,5.0\n406,537,5.5\n406,538,6.0\n406,539,6.5\n406,540,7.0\n406,541,7.5\n406,542,8.0\n406,543,8.5\n406,544,9.0\n406,545,9.5\n406,546,10.0\n406,547,10.5\n406,548,11.0\n406,549,11.5\n406,550,6.0\n406,551,5.5\n406,552,5.0\n406,553,4.5\n406,554,4.0\n406,555,3.5\n406,556,3.0\n406,557,3.5\n406,558,4.0\n406,559,4.5\n406,560,5.0\n406,561,5.5\n406,562,6.0\n406,563,6.5\n406,564,7.0\n406,565,7.5\n406,566,8.0\n406,567,8.5\n406,568,9.0\n406,569,9.5\n406,570,10.0\n406,571,10.5\n406,572,11.0\n406,573,11.5\n406,574,12.0\n406,575,6.5\n406,576,6.0\n406,577,5.5\n406,578,5.0\n406,579,4.5\n406,580,4.0\n406,581,3.5\n406,582,4.0\n406,583,4.5\n406,584,5.0\n406,585,5.5\n406,586,6.0\n406,587,6.5\n406,588,7.0\n406,589,7.5\n406,590,8.0\n406,591,8.5\n406,592,9.0\n406,593,9.5\n406,594,10.0\n406,595,10.5\n406,596,11.0\n406,597,11.5\n406,598,12.0\n406,599,12.5\n406,600,7.0\n406,601,6.5\n406,602,6.0\n406,603,5.5\n406,604,5.0\n406,605,4.5\n406,606,4.0\n406,607,4.5\n406,608,5.0\n406,609,5.5\n406,610,6.0\n406,611,6.5\n406,612,7.0\n406,613,7.5\n406,614,8.0\n406,615,8.5\n406,616,9.0\n406,617,9.5\n406,618,10.0\n406,619,10.5\n406,620,11.0\n406,621,11.5\n406,622,12.0\n406,623,12.5\n406,624,13.0\n407,0,11.5\n407,1,11.0\n407,2,10.5\n407,3,10.0\n407,4,9.5\n407,5,9.0\n407,6,8.5\n407,7,8.0\n407,8,8.5\n407,9,9.0\n407,10,9.5\n407,11,10.0\n407,12,10.5\n407,13,11.0\n407,14,11.5\n407,15,12.0\n407,16,12.5\n407,17,13.0\n407,18,13.5\n407,19,14.0\n407,20,14.5\n407,21,15.0\n407,22,15.5\n407,23,16.0\n407,24,16.5\n407,25,11.0\n407,26,10.5\n407,27,10.0\n407,28,9.5\n407,29,9.0\n407,30,8.5\n407,31,8.0\n407,32,7.5\n407,33,8.0\n407,34,8.5\n407,35,9.0\n407,36,9.5\n407,37,10.0\n407,38,10.5\n407,39,11.0\n407,40,11.5\n407,41,12.0\n407,42,12.5\n407,43,13.0\n407,44,13.5\n407,45,14.0\n407,46,14.5\n407,47,15.0\n407,48,15.5\n407,49,16.0\n407,50,10.5\n407,51,10.0\n407,52,9.5\n407,53,9.0\n407,54,8.5\n407,55,8.0\n407,56,7.5\n407,57,7.0\n407,58,7.5\n407,59,8.0\n407,60,8.5\n407,61,9.0\n407,62,9.5\n407,63,10.0\n407,64,10.5\n407,65,11.0\n407,66,11.5\n407,67,12.0\n407,68,12.5\n407,69,13.0\n407,70,13.5\n407,71,14.0\n407,72,14.5\n407,73,15.0\n407,74,15.5\n407,75,10.0\n407,76,9.5\n407,77,9.0\n407,78,8.5\n407,79,8.0\n407,80,7.5\n407,81,7.0\n407,82,6.5\n407,83,7.0\n407,84,7.5\n407,85,8.0\n407,86,8.5\n407,87,9.0\n407,88,9.5\n407,89,10.0\n407,90,10.5\n407,91,11.0\n407,92,11.5\n407,93,12.0\n407,94,12.5\n407,95,13.0\n407,96,13.5\n407,97,14.0\n407,98,14.5\n407,99,15.0\n407,100,9.5\n407,101,9.0\n407,102,8.5\n407,103,8.0\n407,104,7.5\n407,105,7.0\n407,106,6.5\n407,107,6.0\n407,108,6.5\n407,109,7.0\n407,110,7.5\n407,111,8.0\n407,112,8.5\n407,113,9.0\n407,114,9.5\n407,115,10.0\n407,116,10.5\n407,117,11.0\n407,118,11.5\n407,119,12.0\n407,120,12.5\n407,121,13.0\n407,122,13.5\n407,123,14.0\n407,124,14.5\n407,125,9.0\n407,126,8.5\n407,127,8.0\n407,128,7.5\n407,129,7.0\n407,130,6.5\n407,131,6.0\n407,132,5.5\n407,133,6.0\n407,134,6.5\n407,135,7.0\n407,136,7.5\n407,137,8.0\n407,138,8.5\n407,139,9.0\n407,140,9.5\n407,141,10.0\n407,142,10.5\n407,143,11.0\n407,144,11.5\n407,145,12.0\n407,146,12.5\n407,147,13.0\n407,148,13.5\n407,149,14.0\n407,150,8.5\n407,151,8.0\n407,152,7.5\n407,153,7.0\n407,154,6.5\n407,155,6.0\n407,156,5.5\n407,157,5.0\n407,158,5.5\n407,159,6.0\n407,160,6.5\n407,161,7.0\n407,162,7.5\n407,163,8.0\n407,164,8.5\n407,165,9.0\n407,166,9.5\n407,167,10.0\n407,168,10.5\n407,169,11.0\n407,170,11.5\n407,171,12.0\n407,172,12.5\n407,173,13.0\n407,174,13.5\n407,175,8.0\n407,176,7.5\n407,177,7.0\n407,178,6.5\n407,179,6.0\n407,180,5.5\n407,181,5.0\n407,182,4.5\n407,183,5.0\n407,184,5.5\n407,185,6.0\n407,186,6.5\n407,187,7.0\n407,188,7.5\n407,189,8.0\n407,190,8.5\n407,191,9.0\n407,192,9.5\n407,193,10.0\n407,194,10.5\n407,195,11.0\n407,196,11.5\n407,197,12.0\n407,198,12.5\n407,199,13.0\n407,200,7.5\n407,201,7.0\n407,202,6.5\n407,203,6.0\n407,204,5.5\n407,205,5.0\n407,206,4.5\n407,207,4.0\n407,208,4.5\n407,209,5.0\n407,210,5.5\n407,211,6.0\n407,212,6.5\n407,213,7.0\n407,214,7.5\n407,215,8.0\n407,216,8.5\n407,217,9.0\n407,218,9.5\n407,219,10.0\n407,220,10.5\n407,221,11.0\n407,222,11.5\n407,223,12.0\n407,224,12.5\n407,225,7.0\n407,226,6.5\n407,227,6.0\n407,228,5.5\n407,229,5.0\n407,230,4.5\n407,231,4.0\n407,232,3.5\n407,233,4.0\n407,234,4.5\n407,235,5.0\n407,236,5.5\n407,237,6.0\n407,238,6.5\n407,239,7.0\n407,240,7.5\n407,241,8.0\n407,242,8.5\n407,243,9.0\n407,244,9.5\n407,245,10.0\n407,246,10.5\n407,247,11.0\n407,248,11.5\n407,249,12.0\n407,250,6.5\n407,251,6.0\n407,252,5.5\n407,253,5.0\n407,254,4.5\n407,255,4.0\n407,256,3.5\n407,257,3.0\n407,258,3.5\n407,259,4.0\n407,260,4.5\n407,261,5.0\n407,262,5.5\n407,263,6.0\n407,264,6.5\n407,265,7.0\n407,266,7.5\n407,267,8.0\n407,268,8.5\n407,269,9.0\n407,270,9.5\n407,271,10.0\n407,272,10.5\n407,273,11.0\n407,274,11.5\n407,275,6.0\n407,276,5.5\n407,277,5.0\n407,278,4.5\n407,279,4.0\n407,280,3.5\n407,281,3.0\n407,282,2.5\n407,283,3.0\n407,284,3.5\n407,285,4.0\n407,286,4.5\n407,287,5.0\n407,288,5.5\n407,289,6.0\n407,290,6.5\n407,291,7.0\n407,292,7.5\n407,293,8.0\n407,294,8.5\n407,295,9.0\n407,296,9.5\n407,297,10.0\n407,298,10.5\n407,299,11.0\n407,300,5.5\n407,301,5.0\n407,302,4.5\n407,303,4.0\n407,304,3.5\n407,305,3.0\n407,306,2.5\n407,307,2.0\n407,308,2.5\n407,309,3.0\n407,310,3.5\n407,311,4.0\n407,312,4.5\n407,313,5.0\n407,314,5.5\n407,315,6.0\n407,316,6.5\n407,317,7.0\n407,318,7.5\n407,319,8.0\n407,320,8.5\n407,321,9.0\n407,322,9.5\n407,323,10.0\n407,324,10.5\n407,325,5.0\n407,326,4.5\n407,327,4.0\n407,328,3.5\n407,329,3.0\n407,330,2.5\n407,331,2.0\n407,332,1.5\n407,333,2.0\n407,334,2.5\n407,335,3.0\n407,336,3.5\n407,337,4.0\n407,338,4.5\n407,339,5.0\n407,340,5.5\n407,341,6.0\n407,342,6.5\n407,343,7.0\n407,344,7.5\n407,345,8.0\n407,346,8.5\n407,347,9.0\n407,348,9.5\n407,349,10.0\n407,350,4.5\n407,351,4.0\n407,352,3.5\n407,353,3.0\n407,354,2.5\n407,355,2.0\n407,356,1.5\n407,357,1.0\n407,358,1.5\n407,359,2.0\n407,360,2.5\n407,361,3.0\n407,362,3.5\n407,363,4.0\n407,364,4.5\n407,365,5.0\n407,366,5.5\n407,367,6.0\n407,368,6.5\n407,369,7.0\n407,370,7.5\n407,371,8.0\n407,372,8.5\n407,373,9.0\n407,374,9.5\n407,375,4.0\n407,376,3.5\n407,377,3.0\n407,378,2.5\n407,379,2.0\n407,380,1.5\n407,381,1.0\n407,382,0.5\n407,383,1.0\n407,384,1.5\n407,385,2.0\n407,386,2.5\n407,387,3.0\n407,388,3.5\n407,389,4.0\n407,390,4.5\n407,391,5.0\n407,392,5.5\n407,393,6.0\n407,394,6.5\n407,395,7.0\n407,396,7.5\n407,397,8.0\n407,398,8.5\n407,399,9.0\n407,400,3.5\n407,401,3.0\n407,402,2.5\n407,403,2.0\n407,404,1.5\n407,405,1.0\n407,406,0.5\n407,407,0\n407,408,0.5\n407,409,1.0\n407,410,1.5\n407,411,2.0\n407,412,2.5\n407,413,3.0\n407,414,3.5\n407,415,4.0\n407,416,4.5\n407,417,5.0\n407,418,5.5\n407,419,6.0\n407,420,6.5\n407,421,7.0\n407,422,7.5\n407,423,8.0\n407,424,8.5\n407,425,4.0\n407,426,3.5\n407,427,3.0\n407,428,2.5\n407,429,2.0\n407,430,1.5\n407,431,1.0\n407,432,0.5\n407,433,1.0\n407,434,1.5\n407,435,2.0\n407,436,2.5\n407,437,3.0\n407,438,3.5\n407,439,4.0\n407,440,4.5\n407,441,5.0\n407,442,5.5\n407,443,6.0\n407,444,6.5\n407,445,7.0\n407,446,7.5\n407,447,8.0\n407,448,8.5\n407,449,9.0\n407,450,4.5\n407,451,4.0\n407,452,3.5\n407,453,3.0\n407,454,2.5\n407,455,2.0\n407,456,1.5\n407,457,1.0\n407,458,1.5\n407,459,2.0\n407,460,2.5\n407,461,3.0\n407,462,3.5\n407,463,4.0\n407,464,4.5\n407,465,5.0\n407,466,5.5\n407,467,6.0\n407,468,6.5\n407,469,7.0\n407,470,7.5\n407,471,8.0\n407,472,8.5\n407,473,9.0\n407,474,9.5\n407,475,5.0\n407,476,4.5\n407,477,4.0\n407,478,3.5\n407,479,3.0\n407,480,2.5\n407,481,2.0\n407,482,1.5\n407,483,2.0\n407,484,2.5\n407,485,3.0\n407,486,3.5\n407,487,4.0\n407,488,4.5\n407,489,5.0\n407,490,5.5\n407,491,6.0\n407,492,6.5\n407,493,7.0\n407,494,7.5\n407,495,8.0\n407,496,8.5\n407,497,9.0\n407,498,9.5\n407,499,10.0\n407,500,5.5\n407,501,5.0\n407,502,4.5\n407,503,4.0\n407,504,3.5\n407,505,3.0\n407,506,2.5\n407,507,2.0\n407,508,2.5\n407,509,3.0\n407,510,3.5\n407,511,4.0\n407,512,4.5\n407,513,5.0\n407,514,5.5\n407,515,6.0\n407,516,6.5\n407,517,7.0\n407,518,7.5\n407,519,8.0\n407,520,8.5\n407,521,9.0\n407,522,9.5\n407,523,10.0\n407,524,10.5\n407,525,6.0\n407,526,5.5\n407,527,5.0\n407,528,4.5\n407,529,4.0\n407,530,3.5\n407,531,3.0\n407,532,2.5\n407,533,3.0\n407,534,3.5\n407,535,4.0\n407,536,4.5\n407,537,5.0\n407,538,5.5\n407,539,6.0\n407,540,6.5\n407,541,7.0\n407,542,7.5\n407,543,8.0\n407,544,8.5\n407,545,9.0\n407,546,9.5\n407,547,10.0\n407,548,10.5\n407,549,11.0\n407,550,6.5\n407,551,6.0\n407,552,5.5\n407,553,5.0\n407,554,4.5\n407,555,4.0\n407,556,3.5\n407,557,3.0\n407,558,3.5\n407,559,4.0\n407,560,4.5\n407,561,5.0\n407,562,5.5\n407,563,6.0\n407,564,6.5\n407,565,7.0\n407,566,7.5\n407,567,8.0\n407,568,8.5\n407,569,9.0\n407,570,9.5\n407,571,10.0\n407,572,10.5\n407,573,11.0\n407,574,11.5\n407,575,7.0\n407,576,6.5\n407,577,6.0\n407,578,5.5\n407,579,5.0\n407,580,4.5\n407,581,4.0\n407,582,3.5\n407,583,4.0\n407,584,4.5\n407,585,5.0\n407,586,5.5\n407,587,6.0\n407,588,6.5\n407,589,7.0\n407,590,7.5\n407,591,8.0\n407,592,8.5\n407,593,9.0\n407,594,9.5\n407,595,10.0\n407,596,10.5\n407,597,11.0\n407,598,11.5\n407,599,12.0\n407,600,7.5\n407,601,7.0\n407,602,6.5\n407,603,6.0\n407,604,5.5\n407,605,5.0\n407,606,4.5\n407,607,4.0\n407,608,4.5\n407,609,5.0\n407,610,5.5\n407,611,6.0\n407,612,6.5\n407,613,7.0\n407,614,7.5\n407,615,8.0\n407,616,8.5\n407,617,9.0\n407,618,9.5\n407,619,10.0\n407,620,10.5\n407,621,11.0\n407,622,11.5\n407,623,12.0\n407,624,12.5\n408,0,12.0\n408,1,11.5\n408,2,11.0\n408,3,10.5\n408,4,10.0\n408,5,9.5\n408,6,9.0\n408,7,8.5\n408,8,8.0\n408,9,8.5\n408,10,9.0\n408,11,9.5\n408,12,10.0\n408,13,10.5\n408,14,11.0\n408,15,11.5\n408,16,12.0\n408,17,12.5\n408,18,13.0\n408,19,13.5\n408,20,14.0\n408,21,14.5\n408,22,15.0\n408,23,15.5\n408,24,16.0\n408,25,11.5\n408,26,11.0\n408,27,10.5\n408,28,10.0\n408,29,9.5\n408,30,9.0\n408,31,8.5\n408,32,8.0\n408,33,7.5\n408,34,8.0\n408,35,8.5\n408,36,9.0\n408,37,9.5\n408,38,10.0\n408,39,10.5\n408,40,11.0\n408,41,11.5\n408,42,12.0\n408,43,12.5\n408,44,13.0\n408,45,13.5\n408,46,14.0\n408,47,14.5\n408,48,15.0\n408,49,15.5\n408,50,11.0\n408,51,10.5\n408,52,10.0\n408,53,9.5\n408,54,9.0\n408,55,8.5\n408,56,8.0\n408,57,7.5\n408,58,7.0\n408,59,7.5\n408,60,8.0\n408,61,8.5\n408,62,9.0\n408,63,9.5\n408,64,10.0\n408,65,10.5\n408,66,11.0\n408,67,11.5\n408,68,12.0\n408,69,12.5\n408,70,13.0\n408,71,13.5\n408,72,14.0\n408,73,14.5\n408,74,15.0\n408,75,10.5\n408,76,10.0\n408,77,9.5\n408,78,9.0\n408,79,8.5\n408,80,8.0\n408,81,7.5\n408,82,7.0\n408,83,6.5\n408,84,7.0\n408,85,7.5\n408,86,8.0\n408,87,8.5\n408,88,9.0\n408,89,9.5\n408,90,10.0\n408,91,10.5\n408,92,11.0\n408,93,11.5\n408,94,12.0\n408,95,12.5\n408,96,13.0\n408,97,13.5\n408,98,14.0\n408,99,14.5\n408,100,10.0\n408,101,9.5\n408,102,9.0\n408,103,8.5\n408,104,8.0\n408,105,7.5\n408,106,7.0\n408,107,6.5\n408,108,6.0\n408,109,6.5\n408,110,7.0\n408,111,7.5\n408,112,8.0\n408,113,8.5\n408,114,9.0\n408,115,9.5\n408,116,10.0\n408,117,10.5\n408,118,11.0\n408,119,11.5\n408,120,12.0\n408,121,12.5\n408,122,13.0\n408,123,13.5\n408,124,14.0\n408,125,9.5\n408,126,9.0\n408,127,8.5\n408,128,8.0\n408,129,7.5\n408,130,7.0\n408,131,6.5\n408,132,6.0\n408,133,5.5\n408,134,6.0\n408,135,6.5\n408,136,7.0\n408,137,7.5\n408,138,8.0\n408,139,8.5\n408,140,9.0\n408,141,9.5\n408,142,10.0\n408,143,10.5\n408,144,11.0\n408,145,11.5\n408,146,12.0\n408,147,12.5\n408,148,13.0\n408,149,13.5\n408,150,9.0\n408,151,8.5\n408,152,8.0\n408,153,7.5\n408,154,7.0\n408,155,6.5\n408,156,6.0\n408,157,5.5\n408,158,5.0\n408,159,5.5\n408,160,6.0\n408,161,6.5\n408,162,7.0\n408,163,7.5\n408,164,8.0\n408,165,8.5\n408,166,9.0\n408,167,9.5\n408,168,10.0\n408,169,10.5\n408,170,11.0\n408,171,11.5\n408,172,12.0\n408,173,12.5\n408,174,13.0\n408,175,8.5\n408,176,8.0\n408,177,7.5\n408,178,7.0\n408,179,6.5\n408,180,6.0\n408,181,5.5\n408,182,5.0\n408,183,4.5\n408,184,5.0\n408,185,5.5\n408,186,6.0\n408,187,6.5\n408,188,7.0\n408,189,7.5\n408,190,8.0\n408,191,8.5\n408,192,9.0\n408,193,9.5\n408,194,10.0\n408,195,10.5\n408,196,11.0\n408,197,11.5\n408,198,12.0\n408,199,12.5\n408,200,8.0\n408,201,7.5\n408,202,7.0\n408,203,6.5\n408,204,6.0\n408,205,5.5\n408,206,5.0\n408,207,4.5\n408,208,4.0\n408,209,4.5\n408,210,5.0\n408,211,5.5\n408,212,6.0\n408,213,6.5\n408,214,7.0\n408,215,7.5\n408,216,8.0\n408,217,8.5\n408,218,9.0\n408,219,9.5\n408,220,10.0\n408,221,10.5\n408,222,11.0\n408,223,11.5\n408,224,12.0\n408,225,7.5\n408,226,7.0\n408,227,6.5\n408,228,6.0\n408,229,5.5\n408,230,5.0\n408,231,4.5\n408,232,4.0\n408,233,3.5\n408,234,4.0\n408,235,4.5\n408,236,5.0\n408,237,5.5\n408,238,6.0\n408,239,6.5\n408,240,7.0\n408,241,7.5\n408,242,8.0\n408,243,8.5\n408,244,9.0\n408,245,9.5\n408,246,10.0\n408,247,10.5\n408,248,11.0\n408,249,11.5\n408,250,7.0\n408,251,6.5\n408,252,6.0\n408,253,5.5\n408,254,5.0\n408,255,4.5\n408,256,4.0\n408,257,3.5\n408,258,3.0\n408,259,3.5\n408,260,4.0\n408,261,4.5\n408,262,5.0\n408,263,5.5\n408,264,6.0\n408,265,6.5\n408,266,7.0\n408,267,7.5\n408,268,8.0\n408,269,8.5\n408,270,9.0\n408,271,9.5\n408,272,10.0\n408,273,10.5\n408,274,11.0\n408,275,6.5\n408,276,6.0\n408,277,5.5\n408,278,5.0\n408,279,4.5\n408,280,4.0\n408,281,3.5\n408,282,3.0\n408,283,2.5\n408,284,3.0\n408,285,3.5\n408,286,4.0\n408,287,4.5\n408,288,5.0\n408,289,5.5\n408,290,6.0\n408,291,6.5\n408,292,7.0\n408,293,7.5\n408,294,8.0\n408,295,8.5\n408,296,9.0\n408,297,9.5\n408,298,10.0\n408,299,10.5\n408,300,6.0\n408,301,5.5\n408,302,5.0\n408,303,4.5\n408,304,4.0\n408,305,3.5\n408,306,3.0\n408,307,2.5\n408,308,2.0\n408,309,2.5\n408,310,3.0\n408,311,3.5\n408,312,4.0\n408,313,4.5\n408,314,5.0\n408,315,5.5\n408,316,6.0\n408,317,6.5\n408,318,7.0\n408,319,7.5\n408,320,8.0\n408,321,8.5\n408,322,9.0\n408,323,9.5\n408,324,10.0\n408,325,5.5\n408,326,5.0\n408,327,4.5\n408,328,4.0\n408,329,3.5\n408,330,3.0\n408,331,2.5\n408,332,2.0\n408,333,1.5\n408,334,2.0\n408,335,2.5\n408,336,3.0\n408,337,3.5\n408,338,4.0\n408,339,4.5\n408,340,5.0\n408,341,5.5\n408,342,6.0\n408,343,6.5\n408,344,7.0\n408,345,7.5\n408,346,8.0\n408,347,8.5\n408,348,9.0\n408,349,9.5\n408,350,5.0\n408,351,4.5\n408,352,4.0\n408,353,3.5\n408,354,3.0\n408,355,2.5\n408,356,2.0\n408,357,1.5\n408,358,1.0\n408,359,1.5\n408,360,2.0\n408,361,2.5\n408,362,3.0\n408,363,3.5\n408,364,4.0\n408,365,4.5\n408,366,5.0\n408,367,5.5\n408,368,6.0\n408,369,6.5\n408,370,7.0\n408,371,7.5\n408,372,8.0\n408,373,8.5\n408,374,9.0\n408,375,4.5\n408,376,4.0\n408,377,3.5\n408,378,3.0\n408,379,2.5\n408,380,2.0\n408,381,1.5\n408,382,1.0\n408,383,0.5\n408,384,1.0\n408,385,1.5\n408,386,2.0\n408,387,2.5\n408,388,3.0\n408,389,3.5\n408,390,4.0\n408,391,4.5\n408,392,5.0\n408,393,5.5\n408,394,6.0\n408,395,6.5\n408,396,7.0\n408,397,7.5\n408,398,8.0\n408,399,8.5\n408,400,4.0\n408,401,3.5\n408,402,3.0\n408,403,2.5\n408,404,2.0\n408,405,1.5\n408,406,1.0\n408,407,0.5\n408,408,0\n408,409,0.5\n408,410,1.0\n408,411,1.5\n408,412,2.0\n408,413,2.5\n408,414,3.0\n408,415,3.5\n408,416,4.0\n408,417,4.5\n408,418,5.0\n408,419,5.5\n408,420,6.0\n408,421,6.5\n408,422,7.0\n408,423,7.5\n408,424,8.0\n408,425,4.5\n408,426,4.0\n408,427,3.5\n408,428,3.0\n408,429,2.5\n408,430,2.0\n408,431,1.5\n408,432,1.0\n408,433,0.5\n408,434,1.0\n408,435,1.5\n408,436,2.0\n408,437,2.5\n408,438,3.0\n408,439,3.5\n408,440,4.0\n408,441,4.5\n408,442,5.0\n408,443,5.5\n408,444,6.0\n408,445,6.5\n408,446,7.0\n408,447,7.5\n408,448,8.0\n408,449,8.5\n408,450,5.0\n408,451,4.5\n408,452,4.0\n408,453,3.5\n408,454,3.0\n408,455,2.5\n408,456,2.0\n408,457,1.5\n408,458,1.0\n408,459,1.5\n408,460,2.0\n408,461,2.5\n408,462,3.0\n408,463,3.5\n408,464,4.0\n408,465,4.5\n408,466,5.0\n408,467,5.5\n408,468,6.0\n408,469,6.5\n408,470,7.0\n408,471,7.5\n408,472,8.0\n408,473,8.5\n408,474,9.0\n408,475,5.5\n408,476,5.0\n408,477,4.5\n408,478,4.0\n408,479,3.5\n408,480,3.0\n408,481,2.5\n408,482,2.0\n408,483,1.5\n408,484,2.0\n408,485,2.5\n408,486,3.0\n408,487,3.5\n408,488,4.0\n408,489,4.5\n408,490,5.0\n408,491,5.5\n408,492,6.0\n408,493,6.5\n408,494,7.0\n408,495,7.5\n408,496,8.0\n408,497,8.5\n408,498,9.0\n408,499,9.5\n408,500,6.0\n408,501,5.5\n408,502,5.0\n408,503,4.5\n408,504,4.0\n408,505,3.5\n408,506,3.0\n408,507,2.5\n408,508,2.0\n408,509,2.5\n408,510,3.0\n408,511,3.5\n408,512,4.0\n408,513,4.5\n408,514,5.0\n408,515,5.5\n408,516,6.0\n408,517,6.5\n408,518,7.0\n408,519,7.5\n408,520,8.0\n408,521,8.5\n408,522,9.0\n408,523,9.5\n408,524,10.0\n408,525,6.5\n408,526,6.0\n408,527,5.5\n408,528,5.0\n408,529,4.5\n408,530,4.0\n408,531,3.5\n408,532,3.0\n408,533,2.5\n408,534,3.0\n408,535,3.5\n408,536,4.0\n408,537,4.5\n408,538,5.0\n408,539,5.5\n408,540,6.0\n408,541,6.5\n408,542,7.0\n408,543,7.5\n408,544,8.0\n408,545,8.5\n408,546,9.0\n408,547,9.5\n408,548,10.0\n408,549,10.5\n408,550,7.0\n408,551,6.5\n408,552,6.0\n408,553,5.5\n408,554,5.0\n408,555,4.5\n408,556,4.0\n408,557,3.5\n408,558,3.0\n408,559,3.5\n408,560,4.0\n408,561,4.5\n408,562,5.0\n408,563,5.5\n408,564,6.0\n408,565,6.5\n408,566,7.0\n408,567,7.5\n408,568,8.0\n408,569,8.5\n408,570,9.0\n408,571,9.5\n408,572,10.0\n408,573,10.5\n408,574,11.0\n408,575,7.5\n408,576,7.0\n408,577,6.5\n408,578,6.0\n408,579,5.5\n408,580,5.0\n408,581,4.5\n408,582,4.0\n408,583,3.5\n408,584,4.0\n408,585,4.5\n408,586,5.0\n408,587,5.5\n408,588,6.0\n408,589,6.5\n408,590,7.0\n408,591,7.5\n408,592,8.0\n408,593,8.5\n408,594,9.0\n408,595,9.5\n408,596,10.0\n408,597,10.5\n408,598,11.0\n408,599,11.5\n408,600,8.0\n408,601,7.5\n408,602,7.0\n408,603,6.5\n408,604,6.0\n408,605,5.5\n408,606,5.0\n408,607,4.5\n408,608,4.0\n408,609,4.5\n408,610,5.0\n408,611,5.5\n408,612,6.0\n408,613,6.5\n408,614,7.0\n408,615,7.5\n408,616,8.0\n408,617,8.5\n408,618,9.0\n408,619,9.5\n408,620,10.0\n408,621,10.5\n408,622,11.0\n408,623,11.5\n408,624,12.0\n409,0,12.5\n409,1,12.0\n409,2,11.5\n409,3,11.0\n409,4,10.5\n409,5,10.0\n409,6,9.5\n409,7,9.0\n409,8,8.5\n409,9,8.0\n409,10,8.5\n409,11,9.0\n409,12,9.5\n409,13,10.0\n409,14,10.5\n409,15,11.0\n409,16,11.5\n409,17,12.0\n409,18,12.5\n409,19,13.0\n409,20,13.5\n409,21,14.0\n409,22,14.5\n409,23,15.0\n409,24,15.5\n409,25,12.0\n409,26,11.5\n409,27,11.0\n409,28,10.5\n409,29,10.0\n409,30,9.5\n409,31,9.0\n409,32,8.5\n409,33,8.0\n409,34,7.5\n409,35,8.0\n409,36,8.5\n409,37,9.0\n409,38,9.5\n409,39,10.0\n409,40,10.5\n409,41,11.0\n409,42,11.5\n409,43,12.0\n409,44,12.5\n409,45,13.0\n409,46,13.5\n409,47,14.0\n409,48,14.5\n409,49,15.0\n409,50,11.5\n409,51,11.0\n409,52,10.5\n409,53,10.0\n409,54,9.5\n409,55,9.0\n409,56,8.5\n409,57,8.0\n409,58,7.5\n409,59,7.0\n409,60,7.5\n409,61,8.0\n409,62,8.5\n409,63,9.0\n409,64,9.5\n409,65,10.0\n409,66,10.5\n409,67,11.0\n409,68,11.5\n409,69,12.0\n409,70,12.5\n409,71,13.0\n409,72,13.5\n409,73,14.0\n409,74,14.5\n409,75,11.0\n409,76,10.5\n409,77,10.0\n409,78,9.5\n409,79,9.0\n409,80,8.5\n409,81,8.0\n409,82,7.5\n409,83,7.0\n409,84,6.5\n409,85,7.0\n409,86,7.5\n409,87,8.0\n409,88,8.5\n409,89,9.0\n409,90,9.5\n409,91,10.0\n409,92,10.5\n409,93,11.0\n409,94,11.5\n409,95,12.0\n409,96,12.5\n409,97,13.0\n409,98,13.5\n409,99,14.0\n409,100,10.5\n409,101,10.0\n409,102,9.5\n409,103,9.0\n409,104,8.5\n409,105,8.0\n409,106,7.5\n409,107,7.0\n409,108,6.5\n409,109,6.0\n409,110,6.5\n409,111,7.0\n409,112,7.5\n409,113,8.0\n409,114,8.5\n409,115,9.0\n409,116,9.5\n409,117,10.0\n409,118,10.5\n409,119,11.0\n409,120,11.5\n409,121,12.0\n409,122,12.5\n409,123,13.0\n409,124,13.5\n409,125,10.0\n409,126,9.5\n409,127,9.0\n409,128,8.5\n409,129,8.0\n409,130,7.5\n409,131,7.0\n409,132,6.5\n409,133,6.0\n409,134,5.5\n409,135,6.0\n409,136,6.5\n409,137,7.0\n409,138,7.5\n409,139,8.0\n409,140,8.5\n409,141,9.0\n409,142,9.5\n409,143,10.0\n409,144,10.5\n409,145,11.0\n409,146,11.5\n409,147,12.0\n409,148,12.5\n409,149,13.0\n409,150,9.5\n409,151,9.0\n409,152,8.5\n409,153,8.0\n409,154,7.5\n409,155,7.0\n409,156,6.5\n409,157,6.0\n409,158,5.5\n409,159,5.0\n409,160,5.5\n409,161,6.0\n409,162,6.5\n409,163,7.0\n409,164,7.5\n409,165,8.0\n409,166,8.5\n409,167,9.0\n409,168,9.5\n409,169,10.0\n409,170,10.5\n409,171,11.0\n409,172,11.5\n409,173,12.0\n409,174,12.5\n409,175,9.0\n409,176,8.5\n409,177,8.0\n409,178,7.5\n409,179,7.0\n409,180,6.5\n409,181,6.0\n409,182,5.5\n409,183,5.0\n409,184,4.5\n409,185,5.0\n409,186,5.5\n409,187,6.0\n409,188,6.5\n409,189,7.0\n409,190,7.5\n409,191,8.0\n409,192,8.5\n409,193,9.0\n409,194,9.5\n409,195,10.0\n409,196,10.5\n409,197,11.0\n409,198,11.5\n409,199,12.0\n409,200,8.5\n409,201,8.0\n409,202,7.5\n409,203,7.0\n409,204,6.5\n409,205,6.0\n409,206,5.5\n409,207,5.0\n409,208,4.5\n409,209,4.0\n409,210,4.5\n409,211,5.0\n409,212,5.5\n409,213,6.0\n409,214,6.5\n409,215,7.0\n409,216,7.5\n409,217,8.0\n409,218,8.5\n409,219,9.0\n409,220,9.5\n409,221,10.0\n409,222,10.5\n409,223,11.0\n409,224,11.5\n409,225,8.0\n409,226,7.5\n409,227,7.0\n409,228,6.5\n409,229,6.0\n409,230,5.5\n409,231,5.0\n409,232,4.5\n409,233,4.0\n409,234,3.5\n409,235,4.0\n409,236,4.5\n409,237,5.0\n409,238,5.5\n409,239,6.0\n409,240,6.5\n409,241,7.0\n409,242,7.5\n409,243,8.0\n409,244,8.5\n409,245,9.0\n409,246,9.5\n409,247,10.0\n409,248,10.5\n409,249,11.0\n409,250,7.5\n409,251,7.0\n409,252,6.5\n409,253,6.0\n409,254,5.5\n409,255,5.0\n409,256,4.5\n409,257,4.0\n409,258,3.5\n409,259,3.0\n409,260,3.5\n409,261,4.0\n409,262,4.5\n409,263,5.0\n409,264,5.5\n409,265,6.0\n409,266,6.5\n409,267,7.0\n409,268,7.5\n409,269,8.0\n409,270,8.5\n409,271,9.0\n409,272,9.5\n409,273,10.0\n409,274,10.5\n409,275,7.0\n409,276,6.5\n409,277,6.0\n409,278,5.5\n409,279,5.0\n409,280,4.5\n409,281,4.0\n409,282,3.5\n409,283,3.0\n409,284,2.5\n409,285,3.0\n409,286,3.5\n409,287,4.0\n409,288,4.5\n409,289,5.0\n409,290,5.5\n409,291,6.0\n409,292,6.5\n409,293,7.0\n409,294,7.5\n409,295,8.0\n409,296,8.5\n409,297,9.0\n409,298,9.5\n409,299,10.0\n409,300,6.5\n409,301,6.0\n409,302,5.5\n409,303,5.0\n409,304,4.5\n409,305,4.0\n409,306,3.5\n409,307,3.0\n409,308,2.5\n409,309,2.0\n409,310,2.5\n409,311,3.0\n409,312,3.5\n409,313,4.0\n409,314,4.5\n409,315,5.0\n409,316,5.5\n409,317,6.0\n409,318,6.5\n409,319,7.0\n409,320,7.5\n409,321,8.0\n409,322,8.5\n409,323,9.0\n409,324,9.5\n409,325,6.0\n409,326,5.5\n409,327,5.0\n409,328,4.5\n409,329,4.0\n409,330,3.5\n409,331,3.0\n409,332,2.5\n409,333,2.0\n409,334,1.5\n409,335,2.0\n409,336,2.5\n409,337,3.0\n409,338,3.5\n409,339,4.0\n409,340,4.5\n409,341,5.0\n409,342,5.5\n409,343,6.0\n409,344,6.5\n409,345,7.0\n409,346,7.5\n409,347,8.0\n409,348,8.5\n409,349,9.0\n409,350,5.5\n409,351,5.0\n409,352,4.5\n409,353,4.0\n409,354,3.5\n409,355,3.0\n409,356,2.5\n409,357,2.0\n409,358,1.5\n409,359,1.0\n409,360,1.5\n409,361,2.0\n409,362,2.5\n409,363,3.0\n409,364,3.5\n409,365,4.0\n409,366,4.5\n409,367,5.0\n409,368,5.5\n409,369,6.0\n409,370,6.5\n409,371,7.0\n409,372,7.5\n409,373,8.0\n409,374,8.5\n409,375,5.0\n409,376,4.5\n409,377,4.0\n409,378,3.5\n409,379,3.0\n409,380,2.5\n409,381,2.0\n409,382,1.5\n409,383,1.0\n409,384,0.5\n409,385,1.0\n409,386,1.5\n409,387,2.0\n409,388,2.5\n409,389,3.0\n409,390,3.5\n409,391,4.0\n409,392,4.5\n409,393,5.0\n409,394,5.5\n409,395,6.0\n409,396,6.5\n409,397,7.0\n409,398,7.5\n409,399,8.0\n409,400,4.5\n409,401,4.0\n409,402,3.5\n409,403,3.0\n409,404,2.5\n409,405,2.0\n409,406,1.5\n409,407,1.0\n409,408,0.5\n409,409,0\n409,410,0.5\n409,411,1.0\n409,412,1.5\n409,413,2.0\n409,414,2.5\n409,415,3.0\n409,416,3.5\n409,417,4.0\n409,418,4.5\n409,419,5.0\n409,420,5.5\n409,421,6.0\n409,422,6.5\n409,423,7.0\n409,424,7.5\n409,425,5.0\n409,426,4.5\n409,427,4.0\n409,428,3.5\n409,429,3.0\n409,430,2.5\n409,431,2.0\n409,432,1.5\n409,433,1.0\n409,434,0.5\n409,435,1.0\n409,436,1.5\n409,437,2.0\n409,438,2.5\n409,439,3.0\n409,440,3.5\n409,441,4.0\n409,442,4.5\n409,443,5.0\n409,444,5.5\n409,445,6.0\n409,446,6.5\n409,447,7.0\n409,448,7.5\n409,449,8.0\n409,450,5.5\n409,451,5.0\n409,452,4.5\n409,453,4.0\n409,454,3.5\n409,455,3.0\n409,456,2.5\n409,457,2.0\n409,458,1.5\n409,459,1.0\n409,460,1.5\n409,461,2.0\n409,462,2.5\n409,463,3.0\n409,464,3.5\n409,465,4.0\n409,466,4.5\n409,467,5.0\n409,468,5.5\n409,469,6.0\n409,470,6.5\n409,471,7.0\n409,472,7.5\n409,473,8.0\n409,474,8.5\n409,475,6.0\n409,476,5.5\n409,477,5.0\n409,478,4.5\n409,479,4.0\n409,480,3.5\n409,481,3.0\n409,482,2.5\n409,483,2.0\n409,484,1.5\n409,485,2.0\n409,486,2.5\n409,487,3.0\n409,488,3.5\n409,489,4.0\n409,490,4.5\n409,491,5.0\n409,492,5.5\n409,493,6.0\n409,494,6.5\n409,495,7.0\n409,496,7.5\n409,497,8.0\n409,498,8.5\n409,499,9.0\n409,500,6.5\n409,501,6.0\n409,502,5.5\n409,503,5.0\n409,504,4.5\n409,505,4.0\n409,506,3.5\n409,507,3.0\n409,508,2.5\n409,509,2.0\n409,510,2.5\n409,511,3.0\n409,512,3.5\n409,513,4.0\n409,514,4.5\n409,515,5.0\n409,516,5.5\n409,517,6.0\n409,518,6.5\n409,519,7.0\n409,520,7.5\n409,521,8.0\n409,522,8.5\n409,523,9.0\n409,524,9.5\n409,525,7.0\n409,526,6.5\n409,527,6.0\n409,528,5.5\n409,529,5.0\n409,530,4.5\n409,531,4.0\n409,532,3.5\n409,533,3.0\n409,534,2.5\n409,535,3.0\n409,536,3.5\n409,537,4.0\n409,538,4.5\n409,539,5.0\n409,540,5.5\n409,541,6.0\n409,542,6.5\n409,543,7.0\n409,544,7.5\n409,545,8.0\n409,546,8.5\n409,547,9.0\n409,548,9.5\n409,549,10.0\n409,550,7.5\n409,551,7.0\n409,552,6.5\n409,553,6.0\n409,554,5.5\n409,555,5.0\n409,556,4.5\n409,557,4.0\n409,558,3.5\n409,559,3.0\n409,560,3.5\n409,561,4.0\n409,562,4.5\n409,563,5.0\n409,564,5.5\n409,565,6.0\n409,566,6.5\n409,567,7.0\n409,568,7.5\n409,569,8.0\n409,570,8.5\n409,571,9.0\n409,572,9.5\n409,573,10.0\n409,574,10.5\n409,575,8.0\n409,576,7.5\n409,577,7.0\n409,578,6.5\n409,579,6.0\n409,580,5.5\n409,581,5.0\n409,582,4.5\n409,583,4.0\n409,584,3.5\n409,585,4.0\n409,586,4.5\n409,587,5.0\n409,588,5.5\n409,589,6.0\n409,590,6.5\n409,591,7.0\n409,592,7.5\n409,593,8.0\n409,594,8.5\n409,595,9.0\n409,596,9.5\n409,597,10.0\n409,598,10.5\n409,599,11.0\n409,600,8.5\n409,601,8.0\n409,602,7.5\n409,603,7.0\n409,604,6.5\n409,605,6.0\n409,606,5.5\n409,607,5.0\n409,608,4.5\n409,609,4.0\n409,610,4.5\n409,611,5.0\n409,612,5.5\n409,613,6.0\n409,614,6.5\n409,615,7.0\n409,616,7.5\n409,617,8.0\n409,618,8.5\n409,619,9.0\n409,620,9.5\n409,621,10.0\n409,622,10.5\n409,623,11.0\n409,624,11.5\n410,0,13.0\n410,1,12.5\n410,2,12.0\n410,3,11.5\n410,4,11.0\n410,5,10.5\n410,6,10.0\n410,7,9.5\n410,8,9.0\n410,9,8.5\n410,10,8.0\n410,11,8.5\n410,12,9.0\n410,13,9.5\n410,14,10.0\n410,15,10.5\n410,16,11.0\n410,17,11.5\n410,18,12.0\n410,19,12.5\n410,20,13.0\n410,21,13.5\n410,22,14.0\n410,23,14.5\n410,24,15.0\n410,25,12.5\n410,26,12.0\n410,27,11.5\n410,28,11.0\n410,29,10.5\n410,30,10.0\n410,31,9.5\n410,32,9.0\n410,33,8.5\n410,34,8.0\n410,35,7.5\n410,36,8.0\n410,37,8.5\n410,38,9.0\n410,39,9.5\n410,40,10.0\n410,41,10.5\n410,42,11.0\n410,43,11.5\n410,44,12.0\n410,45,12.5\n410,46,13.0\n410,47,13.5\n410,48,14.0\n410,49,14.5\n410,50,12.0\n410,51,11.5\n410,52,11.0\n410,53,10.5\n410,54,10.0\n410,55,9.5\n410,56,9.0\n410,57,8.5\n410,58,8.0\n410,59,7.5\n410,60,7.0\n410,61,7.5\n410,62,8.0\n410,63,8.5\n410,64,9.0\n410,65,9.5\n410,66,10.0\n410,67,10.5\n410,68,11.0\n410,69,11.5\n410,70,12.0\n410,71,12.5\n410,72,13.0\n410,73,13.5\n410,74,14.0\n410,75,11.5\n410,76,11.0\n410,77,10.5\n410,78,10.0\n410,79,9.5\n410,80,9.0\n410,81,8.5\n410,82,8.0\n410,83,7.5\n410,84,7.0\n410,85,6.5\n410,86,7.0\n410,87,7.5\n410,88,8.0\n410,89,8.5\n410,90,9.0\n410,91,9.5\n410,92,10.0\n410,93,10.5\n410,94,11.0\n410,95,11.5\n410,96,12.0\n410,97,12.5\n410,98,13.0\n410,99,13.5\n410,100,11.0\n410,101,10.5\n410,102,10.0\n410,103,9.5\n410,104,9.0\n410,105,8.5\n410,106,8.0\n410,107,7.5\n410,108,7.0\n410,109,6.5\n410,110,6.0\n410,111,6.5\n410,112,7.0\n410,113,7.5\n410,114,8.0\n410,115,8.5\n410,116,9.0\n410,117,9.5\n410,118,10.0\n410,119,10.5\n410,120,11.0\n410,121,11.5\n410,122,12.0\n410,123,12.5\n410,124,13.0\n410,125,10.5\n410,126,10.0\n410,127,9.5\n410,128,9.0\n410,129,8.5\n410,130,8.0\n410,131,7.5\n410,132,7.0\n410,133,6.5\n410,134,6.0\n410,135,5.5\n410,136,6.0\n410,137,6.5\n410,138,7.0\n410,139,7.5\n410,140,8.0\n410,141,8.5\n410,142,9.0\n410,143,9.5\n410,144,10.0\n410,145,10.5\n410,146,11.0\n410,147,11.5\n410,148,12.0\n410,149,12.5\n410,150,10.0\n410,151,9.5\n410,152,9.0\n410,153,8.5\n410,154,8.0\n410,155,7.5\n410,156,7.0\n410,157,6.5\n410,158,6.0\n410,159,5.5\n410,160,5.0\n410,161,5.5\n410,162,6.0\n410,163,6.5\n410,164,7.0\n410,165,7.5\n410,166,8.0\n410,167,8.5\n410,168,9.0\n410,169,9.5\n410,170,10.0\n410,171,10.5\n410,172,11.0\n410,173,11.5\n410,174,12.0\n410,175,9.5\n410,176,9.0\n410,177,8.5\n410,178,8.0\n410,179,7.5\n410,180,7.0\n410,181,6.5\n410,182,6.0\n410,183,5.5\n410,184,5.0\n410,185,4.5\n410,186,5.0\n410,187,5.5\n410,188,6.0\n410,189,6.5\n410,190,7.0\n410,191,7.5\n410,192,8.0\n410,193,8.5\n410,194,9.0\n410,195,9.5\n410,196,10.0\n410,197,10.5\n410,198,11.0\n410,199,11.5\n410,200,9.0\n410,201,8.5\n410,202,8.0\n410,203,7.5\n410,204,7.0\n410,205,6.5\n410,206,6.0\n410,207,5.5\n410,208,5.0\n410,209,4.5\n410,210,4.0\n410,211,4.5\n410,212,5.0\n410,213,5.5\n410,214,6.0\n410,215,6.5\n410,216,7.0\n410,217,7.5\n410,218,8.0\n410,219,8.5\n410,220,9.0\n410,221,9.5\n410,222,10.0\n410,223,10.5\n410,224,11.0\n410,225,8.5\n410,226,8.0\n410,227,7.5\n410,228,7.0\n410,229,6.5\n410,230,6.0\n410,231,5.5\n410,232,5.0\n410,233,4.5\n410,234,4.0\n410,235,3.5\n410,236,4.0\n410,237,4.5\n410,238,5.0\n410,239,5.5\n410,240,6.0\n410,241,6.5\n410,242,7.0\n410,243,7.5\n410,244,8.0\n410,245,8.5\n410,246,9.0\n410,247,9.5\n410,248,10.0\n410,249,10.5\n410,250,8.0\n410,251,7.5\n410,252,7.0\n410,253,6.5\n410,254,6.0\n410,255,5.5\n410,256,5.0\n410,257,4.5\n410,258,4.0\n410,259,3.5\n410,260,3.0\n410,261,3.5\n410,262,4.0\n410,263,4.5\n410,264,5.0\n410,265,5.5\n410,266,6.0\n410,267,6.5\n410,268,7.0\n410,269,7.5\n410,270,8.0\n410,271,8.5\n410,272,9.0\n410,273,9.5\n410,274,10.0\n410,275,7.5\n410,276,7.0\n410,277,6.5\n410,278,6.0\n410,279,5.5\n410,280,5.0\n410,281,4.5\n410,282,4.0\n410,283,3.5\n410,284,3.0\n410,285,2.5\n410,286,3.0\n410,287,3.5\n410,288,4.0\n410,289,4.5\n410,290,5.0\n410,291,5.5\n410,292,6.0\n410,293,6.5\n410,294,7.0\n410,295,7.5\n410,296,8.0\n410,297,8.5\n410,298,9.0\n410,299,9.5\n410,300,7.0\n410,301,6.5\n410,302,6.0\n410,303,5.5\n410,304,5.0\n410,305,4.5\n410,306,4.0\n410,307,3.5\n410,308,3.0\n410,309,2.5\n410,310,2.0\n410,311,2.5\n410,312,3.0\n410,313,3.5\n410,314,4.0\n410,315,4.5\n410,316,5.0\n410,317,5.5\n410,318,6.0\n410,319,6.5\n410,320,7.0\n410,321,7.5\n410,322,8.0\n410,323,8.5\n410,324,9.0\n410,325,6.5\n410,326,6.0\n410,327,5.5\n410,328,5.0\n410,329,4.5\n410,330,4.0\n410,331,3.5\n410,332,3.0\n410,333,2.5\n410,334,2.0\n410,335,1.5\n410,336,2.0\n410,337,2.5\n410,338,3.0\n410,339,3.5\n410,340,4.0\n410,341,4.5\n410,342,5.0\n410,343,5.5\n410,344,6.0\n410,345,6.5\n410,346,7.0\n410,347,7.5\n410,348,8.0\n410,349,8.5\n410,350,6.0\n410,351,5.5\n410,352,5.0\n410,353,4.5\n410,354,4.0\n410,355,3.5\n410,356,3.0\n410,357,2.5\n410,358,2.0\n410,359,1.5\n410,360,1.0\n410,361,1.5\n410,362,2.0\n410,363,2.5\n410,364,3.0\n410,365,3.5\n410,366,4.0\n410,367,4.5\n410,368,5.0\n410,369,5.5\n410,370,6.0\n410,371,6.5\n410,372,7.0\n410,373,7.5\n410,374,8.0\n410,375,5.5\n410,376,5.0\n410,377,4.5\n410,378,4.0\n410,379,3.5\n410,380,3.0\n410,381,2.5\n410,382,2.0\n410,383,1.5\n410,384,1.0\n410,385,0.5\n410,386,1.0\n410,387,1.5\n410,388,2.0\n410,389,2.5\n410,390,3.0\n410,391,3.5\n410,392,4.0\n410,393,4.5\n410,394,5.0\n410,395,5.5\n410,396,6.0\n410,397,6.5\n410,398,7.0\n410,399,7.5\n410,400,5.0\n410,401,4.5\n410,402,4.0\n410,403,3.5\n410,404,3.0\n410,405,2.5\n410,406,2.0\n410,407,1.5\n410,408,1.0\n410,409,0.5\n410,410,0\n410,411,0.5\n410,412,1.0\n410,413,1.5\n410,414,2.0\n410,415,2.5\n410,416,3.0\n410,417,3.5\n410,418,4.0\n410,419,4.5\n410,420,5.0\n410,421,5.5\n410,422,6.0\n410,423,6.5\n410,424,7.0\n410,425,5.5\n410,426,5.0\n410,427,4.5\n410,428,4.0\n410,429,3.5\n410,430,3.0\n410,431,2.5\n410,432,2.0\n410,433,1.5\n410,434,1.0\n410,435,0.5\n410,436,1.0\n410,437,1.5\n410,438,2.0\n410,439,2.5\n410,440,3.0\n410,441,3.5\n410,442,4.0\n410,443,4.5\n410,444,5.0\n410,445,5.5\n410,446,6.0\n410,447,6.5\n410,448,7.0\n410,449,7.5\n410,450,6.0\n410,451,5.5\n410,452,5.0\n410,453,4.5\n410,454,4.0\n410,455,3.5\n410,456,3.0\n410,457,2.5\n410,458,2.0\n410,459,1.5\n410,460,1.0\n410,461,1.5\n410,462,2.0\n410,463,2.5\n410,464,3.0\n410,465,3.5\n410,466,4.0\n410,467,4.5\n410,468,5.0\n410,469,5.5\n410,470,6.0\n410,471,6.5\n410,472,7.0\n410,473,7.5\n410,474,8.0\n410,475,6.5\n410,476,6.0\n410,477,5.5\n410,478,5.0\n410,479,4.5\n410,480,4.0\n410,481,3.5\n410,482,3.0\n410,483,2.5\n410,484,2.0\n410,485,1.5\n410,486,2.0\n410,487,2.5\n410,488,3.0\n410,489,3.5\n410,490,4.0\n410,491,4.5\n410,492,5.0\n410,493,5.5\n410,494,6.0\n410,495,6.5\n410,496,7.0\n410,497,7.5\n410,498,8.0\n410,499,8.5\n410,500,7.0\n410,501,6.5\n410,502,6.0\n410,503,5.5\n410,504,5.0\n410,505,4.5\n410,506,4.0\n410,507,3.5\n410,508,3.0\n410,509,2.5\n410,510,2.0\n410,511,2.5\n410,512,3.0\n410,513,3.5\n410,514,4.0\n410,515,4.5\n410,516,5.0\n410,517,5.5\n410,518,6.0\n410,519,6.5\n410,520,7.0\n410,521,7.5\n410,522,8.0\n410,523,8.5\n410,524,9.0\n410,525,7.5\n410,526,7.0\n410,527,6.5\n410,528,6.0\n410,529,5.5\n410,530,5.0\n410,531,4.5\n410,532,4.0\n410,533,3.5\n410,534,3.0\n410,535,2.5\n410,536,3.0\n410,537,3.5\n410,538,4.0\n410,539,4.5\n410,540,5.0\n410,541,5.5\n410,542,6.0\n410,543,6.5\n410,544,7.0\n410,545,7.5\n410,546,8.0\n410,547,8.5\n410,548,9.0\n410,549,9.5\n410,550,8.0\n410,551,7.5\n410,552,7.0\n410,553,6.5\n410,554,6.0\n410,555,5.5\n410,556,5.0\n410,557,4.5\n410,558,4.0\n410,559,3.5\n410,560,3.0\n410,561,3.5\n410,562,4.0\n410,563,4.5\n410,564,5.0\n410,565,5.5\n410,566,6.0\n410,567,6.5\n410,568,7.0\n410,569,7.5\n410,570,8.0\n410,571,8.5\n410,572,9.0\n410,573,9.5\n410,574,10.0\n410,575,8.5\n410,576,8.0\n410,577,7.5\n410,578,7.0\n410,579,6.5\n410,580,6.0\n410,581,5.5\n410,582,5.0\n410,583,4.5\n410,584,4.0\n410,585,3.5\n410,586,4.0\n410,587,4.5\n410,588,5.0\n410,589,5.5\n410,590,6.0\n410,591,6.5\n410,592,7.0\n410,593,7.5\n410,594,8.0\n410,595,8.5\n410,596,9.0\n410,597,9.5\n410,598,10.0\n410,599,10.5\n410,600,9.0\n410,601,8.5\n410,602,8.0\n410,603,7.5\n410,604,7.0\n410,605,6.5\n410,606,6.0\n410,607,5.5\n410,608,5.0\n410,609,4.5\n410,610,4.0\n410,611,4.5\n410,612,5.0\n410,613,5.5\n410,614,6.0\n410,615,6.5\n410,616,7.0\n410,617,7.5\n410,618,8.0\n410,619,8.5\n410,620,9.0\n410,621,9.5\n410,622,10.0\n410,623,10.5\n410,624,11.0\n411,0,13.5\n411,1,13.0\n411,2,12.5\n411,3,12.0\n411,4,11.5\n411,5,11.0\n411,6,10.5\n411,7,10.0\n411,8,9.5\n411,9,9.0\n411,10,8.5\n411,11,8.0\n411,12,8.5\n411,13,9.0\n411,14,9.5\n411,15,10.0\n411,16,10.5\n411,17,11.0\n411,18,11.5\n411,19,12.0\n411,20,12.5\n411,21,13.0\n411,22,13.5\n411,23,14.0\n411,24,14.5\n411,25,13.0\n411,26,12.5\n411,27,12.0\n411,28,11.5\n411,29,11.0\n411,30,10.5\n411,31,10.0\n411,32,9.5\n411,33,9.0\n411,34,8.5\n411,35,8.0\n411,36,7.5\n411,37,8.0\n411,38,8.5\n411,39,9.0\n411,40,9.5\n411,41,10.0\n411,42,10.5\n411,43,11.0\n411,44,11.5\n411,45,12.0\n411,46,12.5\n411,47,13.0\n411,48,13.5\n411,49,14.0\n411,50,12.5\n411,51,12.0\n411,52,11.5\n411,53,11.0\n411,54,10.5\n411,55,10.0\n411,56,9.5\n411,57,9.0\n411,58,8.5\n411,59,8.0\n411,60,7.5\n411,61,7.0\n411,62,7.5\n411,63,8.0\n411,64,8.5\n411,65,9.0\n411,66,9.5\n411,67,10.0\n411,68,10.5\n411,69,11.0\n411,70,11.5\n411,71,12.0\n411,72,12.5\n411,73,13.0\n411,74,13.5\n411,75,12.0\n411,76,11.5\n411,77,11.0\n411,78,10.5\n411,79,10.0\n411,80,9.5\n411,81,9.0\n411,82,8.5\n411,83,8.0\n411,84,7.5\n411,85,7.0\n411,86,6.5\n411,87,7.0\n411,88,7.5\n411,89,8.0\n411,90,8.5\n411,91,9.0\n411,92,9.5\n411,93,10.0\n411,94,10.5\n411,95,11.0\n411,96,11.5\n411,97,12.0\n411,98,12.5\n411,99,13.0\n411,100,11.5\n411,101,11.0\n411,102,10.5\n411,103,10.0\n411,104,9.5\n411,105,9.0\n411,106,8.5\n411,107,8.0\n411,108,7.5\n411,109,7.0\n411,110,6.5\n411,111,6.0\n411,112,6.5\n411,113,7.0\n411,114,7.5\n411,115,8.0\n411,116,8.5\n411,117,9.0\n411,118,9.5\n411,119,10.0\n411,120,10.5\n411,121,11.0\n411,122,11.5\n411,123,12.0\n411,124,12.5\n411,125,11.0\n411,126,10.5\n411,127,10.0\n411,128,9.5\n411,129,9.0\n411,130,8.5\n411,131,8.0\n411,132,7.5\n411,133,7.0\n411,134,6.5\n411,135,6.0\n411,136,5.5\n411,137,6.0\n411,138,6.5\n411,139,7.0\n411,140,7.5\n411,141,8.0\n411,142,8.5\n411,143,9.0\n411,144,9.5\n411,145,10.0\n411,146,10.5\n411,147,11.0\n411,148,11.5\n411,149,12.0\n411,150,10.5\n411,151,10.0\n411,152,9.5\n411,153,9.0\n411,154,8.5\n411,155,8.0\n411,156,7.5\n411,157,7.0\n411,158,6.5\n411,159,6.0\n411,160,5.5\n411,161,5.0\n411,162,5.5\n411,163,6.0\n411,164,6.5\n411,165,7.0\n411,166,7.5\n411,167,8.0\n411,168,8.5\n411,169,9.0\n411,170,9.5\n411,171,10.0\n411,172,10.5\n411,173,11.0\n411,174,11.5\n411,175,10.0\n411,176,9.5\n411,177,9.0\n411,178,8.5\n411,179,8.0\n411,180,7.5\n411,181,7.0\n411,182,6.5\n411,183,6.0\n411,184,5.5\n411,185,5.0\n411,186,4.5\n411,187,5.0\n411,188,5.5\n411,189,6.0\n411,190,6.5\n411,191,7.0\n411,192,7.5\n411,193,8.0\n411,194,8.5\n411,195,9.0\n411,196,9.5\n411,197,10.0\n411,198,10.5\n411,199,11.0\n411,200,9.5\n411,201,9.0\n411,202,8.5\n411,203,8.0\n411,204,7.5\n411,205,7.0\n411,206,6.5\n411,207,6.0\n411,208,5.5\n411,209,5.0\n411,210,4.5\n411,211,4.0\n411,212,4.5\n411,213,5.0\n411,214,5.5\n411,215,6.0\n411,216,6.5\n411,217,7.0\n411,218,7.5\n411,219,8.0\n411,220,8.5\n411,221,9.0\n411,222,9.5\n411,223,10.0\n411,224,10.5\n411,225,9.0\n411,226,8.5\n411,227,8.0\n411,228,7.5\n411,229,7.0\n411,230,6.5\n411,231,6.0\n411,232,5.5\n411,233,5.0\n411,234,4.5\n411,235,4.0\n411,236,3.5\n411,237,4.0\n411,238,4.5\n411,239,5.0\n411,240,5.5\n411,241,6.0\n411,242,6.5\n411,243,7.0\n411,244,7.5\n411,245,8.0\n411,246,8.5\n411,247,9.0\n411,248,9.5\n411,249,10.0\n411,250,8.5\n411,251,8.0\n411,252,7.5\n411,253,7.0\n411,254,6.5\n411,255,6.0\n411,256,5.5\n411,257,5.0\n411,258,4.5\n411,259,4.0\n411,260,3.5\n411,261,3.0\n411,262,3.5\n411,263,4.0\n411,264,4.5\n411,265,5.0\n411,266,5.5\n411,267,6.0\n411,268,6.5\n411,269,7.0\n411,270,7.5\n411,271,8.0\n411,272,8.5\n411,273,9.0\n411,274,9.5\n411,275,8.0\n411,276,7.5\n411,277,7.0\n411,278,6.5\n411,279,6.0\n411,280,5.5\n411,281,5.0\n411,282,4.5\n411,283,4.0\n411,284,3.5\n411,285,3.0\n411,286,2.5\n411,287,3.0\n411,288,3.5\n411,289,4.0\n411,290,4.5\n411,291,5.0\n411,292,5.5\n411,293,6.0\n411,294,6.5\n411,295,7.0\n411,296,7.5\n411,297,8.0\n411,298,8.5\n411,299,9.0\n411,300,7.5\n411,301,7.0\n411,302,6.5\n411,303,6.0\n411,304,5.5\n411,305,5.0\n411,306,4.5\n411,307,4.0\n411,308,3.5\n411,309,3.0\n411,310,2.5\n411,311,2.0\n411,312,2.5\n411,313,3.0\n411,314,3.5\n411,315,4.0\n411,316,4.5\n411,317,5.0\n411,318,5.5\n411,319,6.0\n411,320,6.5\n411,321,7.0\n411,322,7.5\n411,323,8.0\n411,324,8.5\n411,325,7.0\n411,326,6.5\n411,327,6.0\n411,328,5.5\n411,329,5.0\n411,330,4.5\n411,331,4.0\n411,332,3.5\n411,333,3.0\n411,334,2.5\n411,335,2.0\n411,336,1.5\n411,337,2.0\n411,338,2.5\n411,339,3.0\n411,340,3.5\n411,341,4.0\n411,342,4.5\n411,343,5.0\n411,344,5.5\n411,345,6.0\n411,346,6.5\n411,347,7.0\n411,348,7.5\n411,349,8.0\n411,350,6.5\n411,351,6.0\n411,352,5.5\n411,353,5.0\n411,354,4.5\n411,355,4.0\n411,356,3.5\n411,357,3.0\n411,358,2.5\n411,359,2.0\n411,360,1.5\n411,361,1.0\n411,362,1.5\n411,363,2.0\n411,364,2.5\n411,365,3.0\n411,366,3.5\n411,367,4.0\n411,368,4.5\n411,369,5.0\n411,370,5.5\n411,371,6.0\n411,372,6.5\n411,373,7.0\n411,374,7.5\n411,375,6.0\n411,376,5.5\n411,377,5.0\n411,378,4.5\n411,379,4.0\n411,380,3.5\n411,381,3.0\n411,382,2.5\n411,383,2.0\n411,384,1.5\n411,385,1.0\n411,386,0.5\n411,387,1.0\n411,388,1.5\n411,389,2.0\n411,390,2.5\n411,391,3.0\n411,392,3.5\n411,393,4.0\n411,394,4.5\n411,395,5.0\n411,396,5.5\n411,397,6.0\n411,398,6.5\n411,399,7.0\n411,400,5.5\n411,401,5.0\n411,402,4.5\n411,403,4.0\n411,404,3.5\n411,405,3.0\n411,406,2.5\n411,407,2.0\n411,408,1.5\n411,409,1.0\n411,410,0.5\n411,411,0\n411,412,0.5\n411,413,1.0\n411,414,1.5\n411,415,2.0\n411,416,2.5\n411,417,3.0\n411,418,3.5\n411,419,4.0\n411,420,4.5\n411,421,5.0\n411,422,5.5\n411,423,6.0\n411,424,6.5\n411,425,6.0\n411,426,5.5\n411,427,5.0\n411,428,4.5\n411,429,4.0\n411,430,3.5\n411,431,3.0\n411,432,2.5\n411,433,2.0\n411,434,1.5\n411,435,1.0\n411,436,0.5\n411,437,1.0\n411,438,1.5\n411,439,2.0\n411,440,2.5\n411,441,3.0\n411,442,3.5\n411,443,4.0\n411,444,4.5\n411,445,5.0\n411,446,5.5\n411,447,6.0\n411,448,6.5\n411,449,7.0\n411,450,6.5\n411,451,6.0\n411,452,5.5\n411,453,5.0\n411,454,4.5\n411,455,4.0\n411,456,3.5\n411,457,3.0\n411,458,2.5\n411,459,2.0\n411,460,1.5\n411,461,1.0\n411,462,1.5\n411,463,2.0\n411,464,2.5\n411,465,3.0\n411,466,3.5\n411,467,4.0\n411,468,4.5\n411,469,5.0\n411,470,5.5\n411,471,6.0\n411,472,6.5\n411,473,7.0\n411,474,7.5\n411,475,7.0\n411,476,6.5\n411,477,6.0\n411,478,5.5\n411,479,5.0\n411,480,4.5\n411,481,4.0\n411,482,3.5\n411,483,3.0\n411,484,2.5\n411,485,2.0\n411,486,1.5\n411,487,2.0\n411,488,2.5\n411,489,3.0\n411,490,3.5\n411,491,4.0\n411,492,4.5\n411,493,5.0\n411,494,5.5\n411,495,6.0\n411,496,6.5\n411,497,7.0\n411,498,7.5\n411,499,8.0\n411,500,7.5\n411,501,7.0\n411,502,6.5\n411,503,6.0\n411,504,5.5\n411,505,5.0\n411,506,4.5\n411,507,4.0\n411,508,3.5\n411,509,3.0\n411,510,2.5\n411,511,2.0\n411,512,2.5\n411,513,3.0\n411,514,3.5\n411,515,4.0\n411,516,4.5\n411,517,5.0\n411,518,5.5\n411,519,6.0\n411,520,6.5\n411,521,7.0\n411,522,7.5\n411,523,8.0\n411,524,8.5\n411,525,8.0\n411,526,7.5\n411,527,7.0\n411,528,6.5\n411,529,6.0\n411,530,5.5\n411,531,5.0\n411,532,4.5\n411,533,4.0\n411,534,3.5\n411,535,3.0\n411,536,2.5\n411,537,3.0\n411,538,3.5\n411,539,4.0\n411,540,4.5\n411,541,5.0\n411,542,5.5\n411,543,6.0\n411,544,6.5\n411,545,7.0\n411,546,7.5\n411,547,8.0\n411,548,8.5\n411,549,9.0\n411,550,8.5\n411,551,8.0\n411,552,7.5\n411,553,7.0\n411,554,6.5\n411,555,6.0\n411,556,5.5\n411,557,5.0\n411,558,4.5\n411,559,4.0\n411,560,3.5\n411,561,3.0\n411,562,3.5\n411,563,4.0\n411,564,4.5\n411,565,5.0\n411,566,5.5\n411,567,6.0\n411,568,6.5\n411,569,7.0\n411,570,7.5\n411,571,8.0\n411,572,8.5\n411,573,9.0\n411,574,9.5\n411,575,9.0\n411,576,8.5\n411,577,8.0\n411,578,7.5\n411,579,7.0\n411,580,6.5\n411,581,6.0\n411,582,5.5\n411,583,5.0\n411,584,4.5\n411,585,4.0\n411,586,3.5\n411,587,4.0\n411,588,4.5\n411,589,5.0\n411,590,5.5\n411,591,6.0\n411,592,6.5\n411,593,7.0\n411,594,7.5\n411,595,8.0\n411,596,8.5\n411,597,9.0\n411,598,9.5\n411,599,10.0\n411,600,9.5\n411,601,9.0\n411,602,8.5\n411,603,8.0\n411,604,7.5\n411,605,7.0\n411,606,6.5\n411,607,6.0\n411,608,5.5\n411,609,5.0\n411,610,4.5\n411,611,4.0\n411,612,4.5\n411,613,5.0\n411,614,5.5\n411,615,6.0\n411,616,6.5\n411,617,7.0\n411,618,7.5\n411,619,8.0\n411,620,8.5\n411,621,9.0\n411,622,9.5\n411,623,10.0\n411,624,10.5\n412,0,14.0\n412,1,13.5\n412,2,13.0\n412,3,12.5\n412,4,12.0\n412,5,11.5\n412,6,11.0\n412,7,10.5\n412,8,10.0\n412,9,9.5\n412,10,9.0\n412,11,8.5\n412,12,8.0\n412,13,8.5\n412,14,9.0\n412,15,9.5\n412,16,10.0\n412,17,10.5\n412,18,11.0\n412,19,11.5\n412,20,12.0\n412,21,12.5\n412,22,13.0\n412,23,13.5\n412,24,14.0\n412,25,13.5\n412,26,13.0\n412,27,12.5\n412,28,12.0\n412,29,11.5\n412,30,11.0\n412,31,10.5\n412,32,10.0\n412,33,9.5\n412,34,9.0\n412,35,8.5\n412,36,8.0\n412,37,7.5\n412,38,8.0\n412,39,8.5\n412,40,9.0\n412,41,9.5\n412,42,10.0\n412,43,10.5\n412,44,11.0\n412,45,11.5\n412,46,12.0\n412,47,12.5\n412,48,13.0\n412,49,13.5\n412,50,13.0\n412,51,12.5\n412,52,12.0\n412,53,11.5\n412,54,11.0\n412,55,10.5\n412,56,10.0\n412,57,9.5\n412,58,9.0\n412,59,8.5\n412,60,8.0\n412,61,7.5\n412,62,7.0\n412,63,7.5\n412,64,8.0\n412,65,8.5\n412,66,9.0\n412,67,9.5\n412,68,10.0\n412,69,10.5\n412,70,11.0\n412,71,11.5\n412,72,12.0\n412,73,12.5\n412,74,13.0\n412,75,12.5\n412,76,12.0\n412,77,11.5\n412,78,11.0\n412,79,10.5\n412,80,10.0\n412,81,9.5\n412,82,9.0\n412,83,8.5\n412,84,8.0\n412,85,7.5\n412,86,7.0\n412,87,6.5\n412,88,7.0\n412,89,7.5\n412,90,8.0\n412,91,8.5\n412,92,9.0\n412,93,9.5\n412,94,10.0\n412,95,10.5\n412,96,11.0\n412,97,11.5\n412,98,12.0\n412,99,12.5\n412,100,12.0\n412,101,11.5\n412,102,11.0\n412,103,10.5\n412,104,10.0\n412,105,9.5\n412,106,9.0\n412,107,8.5\n412,108,8.0\n412,109,7.5\n412,110,7.0\n412,111,6.5\n412,112,6.0\n412,113,6.5\n412,114,7.0\n412,115,7.5\n412,116,8.0\n412,117,8.5\n412,118,9.0\n412,119,9.5\n412,120,10.0\n412,121,10.5\n412,122,11.0\n412,123,11.5\n412,124,12.0\n412,125,11.5\n412,126,11.0\n412,127,10.5\n412,128,10.0\n412,129,9.5\n412,130,9.0\n412,131,8.5\n412,132,8.0\n412,133,7.5\n412,134,7.0\n412,135,6.5\n412,136,6.0\n412,137,5.5\n412,138,6.0\n412,139,6.5\n412,140,7.0\n412,141,7.5\n412,142,8.0\n412,143,8.5\n412,144,9.0\n412,145,9.5\n412,146,10.0\n412,147,10.5\n412,148,11.0\n412,149,11.5\n412,150,11.0\n412,151,10.5\n412,152,10.0\n412,153,9.5\n412,154,9.0\n412,155,8.5\n412,156,8.0\n412,157,7.5\n412,158,7.0\n412,159,6.5\n412,160,6.0\n412,161,5.5\n412,162,5.0\n412,163,5.5\n412,164,6.0\n412,165,6.5\n412,166,7.0\n412,167,7.5\n412,168,8.0\n412,169,8.5\n412,170,9.0\n412,171,9.5\n412,172,10.0\n412,173,10.5\n412,174,11.0\n412,175,10.5\n412,176,10.0\n412,177,9.5\n412,178,9.0\n412,179,8.5\n412,180,8.0\n412,181,7.5\n412,182,7.0\n412,183,6.5\n412,184,6.0\n412,185,5.5\n412,186,5.0\n412,187,4.5\n412,188,5.0\n412,189,5.5\n412,190,6.0\n412,191,6.5\n412,192,7.0\n412,193,7.5\n412,194,8.0\n412,195,8.5\n412,196,9.0\n412,197,9.5\n412,198,10.0\n412,199,10.5\n412,200,10.0\n412,201,9.5\n412,202,9.0\n412,203,8.5\n412,204,8.0\n412,205,7.5\n412,206,7.0\n412,207,6.5\n412,208,6.0\n412,209,5.5\n412,210,5.0\n412,211,4.5\n412,212,4.0\n412,213,4.5\n412,214,5.0\n412,215,5.5\n412,216,6.0\n412,217,6.5\n412,218,7.0\n412,219,7.5\n412,220,8.0\n412,221,8.5\n412,222,9.0\n412,223,9.5\n412,224,10.0\n412,225,9.5\n412,226,9.0\n412,227,8.5\n412,228,8.0\n412,229,7.5\n412,230,7.0\n412,231,6.5\n412,232,6.0\n412,233,5.5\n412,234,5.0\n412,235,4.5\n412,236,4.0\n412,237,3.5\n412,238,4.0\n412,239,4.5\n412,240,5.0\n412,241,5.5\n412,242,6.0\n412,243,6.5\n412,244,7.0\n412,245,7.5\n412,246,8.0\n412,247,8.5\n412,248,9.0\n412,249,9.5\n412,250,9.0\n412,251,8.5\n412,252,8.0\n412,253,7.5\n412,254,7.0\n412,255,6.5\n412,256,6.0\n412,257,5.5\n412,258,5.0\n412,259,4.5\n412,260,4.0\n412,261,3.5\n412,262,3.0\n412,263,3.5\n412,264,4.0\n412,265,4.5\n412,266,5.0\n412,267,5.5\n412,268,6.0\n412,269,6.5\n412,270,7.0\n412,271,7.5\n412,272,8.0\n412,273,8.5\n412,274,9.0\n412,275,8.5\n412,276,8.0\n412,277,7.5\n412,278,7.0\n412,279,6.5\n412,280,6.0\n412,281,5.5\n412,282,5.0\n412,283,4.5\n412,284,4.0\n412,285,3.5\n412,286,3.0\n412,287,2.5\n412,288,3.0\n412,289,3.5\n412,290,4.0\n412,291,4.5\n412,292,5.0\n412,293,5.5\n412,294,6.0\n412,295,6.5\n412,296,7.0\n412,297,7.5\n412,298,8.0\n412,299,8.5\n412,300,8.0\n412,301,7.5\n412,302,7.0\n412,303,6.5\n412,304,6.0\n412,305,5.5\n412,306,5.0\n412,307,4.5\n412,308,4.0\n412,309,3.5\n412,310,3.0\n412,311,2.5\n412,312,2.0\n412,313,2.5\n412,314,3.0\n412,315,3.5\n412,316,4.0\n412,317,4.5\n412,318,5.0\n412,319,5.5\n412,320,6.0\n412,321,6.5\n412,322,7.0\n412,323,7.5\n412,324,8.0\n412,325,7.5\n412,326,7.0\n412,327,6.5\n412,328,6.0\n412,329,5.5\n412,330,5.0\n412,331,4.5\n412,332,4.0\n412,333,3.5\n412,334,3.0\n412,335,2.5\n412,336,2.0\n412,337,1.5\n412,338,2.0\n412,339,2.5\n412,340,3.0\n412,341,3.5\n412,342,4.0\n412,343,4.5\n412,344,5.0\n412,345,5.5\n412,346,6.0\n412,347,6.5\n412,348,7.0\n412,349,7.5\n412,350,7.0\n412,351,6.5\n412,352,6.0\n412,353,5.5\n412,354,5.0\n412,355,4.5\n412,356,4.0\n412,357,3.5\n412,358,3.0\n412,359,2.5\n412,360,2.0\n412,361,1.5\n412,362,1.0\n412,363,1.5\n412,364,2.0\n412,365,2.5\n412,366,3.0\n412,367,3.5\n412,368,4.0\n412,369,4.5\n412,370,5.0\n412,371,5.5\n412,372,6.0\n412,373,6.5\n412,374,7.0\n412,375,6.5\n412,376,6.0\n412,377,5.5\n412,378,5.0\n412,379,4.5\n412,380,4.0\n412,381,3.5\n412,382,3.0\n412,383,2.5\n412,384,2.0\n412,385,1.5\n412,386,1.0\n412,387,0.5\n412,388,1.0\n412,389,1.5\n412,390,2.0\n412,391,2.5\n412,392,3.0\n412,393,3.5\n412,394,4.0\n412,395,4.5\n412,396,5.0\n412,397,5.5\n412,398,6.0\n412,399,6.5\n412,400,6.0\n412,401,5.5\n412,402,5.0\n412,403,4.5\n412,404,4.0\n412,405,3.5\n412,406,3.0\n412,407,2.5\n412,408,2.0\n412,409,1.5\n412,410,1.0\n412,411,0.5\n412,412,0\n412,413,0.5\n412,414,1.0\n412,415,1.5\n412,416,2.0\n412,417,2.5\n412,418,3.0\n412,419,3.5\n412,420,4.0\n412,421,4.5\n412,422,5.0\n412,423,5.5\n412,424,6.0\n412,425,6.5\n412,426,6.0\n412,427,5.5\n412,428,5.0\n412,429,4.5\n412,430,4.0\n412,431,3.5\n412,432,3.0\n412,433,2.5\n412,434,2.0\n412,435,1.5\n412,436,1.0\n412,437,0.5\n412,438,1.0\n412,439,1.5\n412,440,2.0\n412,441,2.5\n412,442,3.0\n412,443,3.5\n412,444,4.0\n412,445,4.5\n412,446,5.0\n412,447,5.5\n412,448,6.0\n412,449,6.5\n412,450,7.0\n412,451,6.5\n412,452,6.0\n412,453,5.5\n412,454,5.0\n412,455,4.5\n412,456,4.0\n412,457,3.5\n412,458,3.0\n412,459,2.5\n412,460,2.0\n412,461,1.5\n412,462,1.0\n412,463,1.5\n412,464,2.0\n412,465,2.5\n412,466,3.0\n412,467,3.5\n412,468,4.0\n412,469,4.5\n412,470,5.0\n412,471,5.5\n412,472,6.0\n412,473,6.5\n412,474,7.0\n412,475,7.5\n412,476,7.0\n412,477,6.5\n412,478,6.0\n412,479,5.5\n412,480,5.0\n412,481,4.5\n412,482,4.0\n412,483,3.5\n412,484,3.0\n412,485,2.5\n412,486,2.0\n412,487,1.5\n412,488,2.0\n412,489,2.5\n412,490,3.0\n412,491,3.5\n412,492,4.0\n412,493,4.5\n412,494,5.0\n412,495,5.5\n412,496,6.0\n412,497,6.5\n412,498,7.0\n412,499,7.5\n412,500,8.0\n412,501,7.5\n412,502,7.0\n412,503,6.5\n412,504,6.0\n412,505,5.5\n412,506,5.0\n412,507,4.5\n412,508,4.0\n412,509,3.5\n412,510,3.0\n412,511,2.5\n412,512,2.0\n412,513,2.5\n412,514,3.0\n412,515,3.5\n412,516,4.0\n412,517,4.5\n412,518,5.0\n412,519,5.5\n412,520,6.0\n412,521,6.5\n412,522,7.0\n412,523,7.5\n412,524,8.0\n412,525,8.5\n412,526,8.0\n412,527,7.5\n412,528,7.0\n412,529,6.5\n412,530,6.0\n412,531,5.5\n412,532,5.0\n412,533,4.5\n412,534,4.0\n412,535,3.5\n412,536,3.0\n412,537,2.5\n412,538,3.0\n412,539,3.5\n412,540,4.0\n412,541,4.5\n412,542,5.0\n412,543,5.5\n412,544,6.0\n412,545,6.5\n412,546,7.0\n412,547,7.5\n412,548,8.0\n412,549,8.5\n412,550,9.0\n412,551,8.5\n412,552,8.0\n412,553,7.5\n412,554,7.0\n412,555,6.5\n412,556,6.0\n412,557,5.5\n412,558,5.0\n412,559,4.5\n412,560,4.0\n412,561,3.5\n412,562,3.0\n412,563,3.5\n412,564,4.0\n412,565,4.5\n412,566,5.0\n412,567,5.5\n412,568,6.0\n412,569,6.5\n412,570,7.0\n412,571,7.5\n412,572,8.0\n412,573,8.5\n412,574,9.0\n412,575,9.5\n412,576,9.0\n412,577,8.5\n412,578,8.0\n412,579,7.5\n412,580,7.0\n412,581,6.5\n412,582,6.0\n412,583,5.5\n412,584,5.0\n412,585,4.5\n412,586,4.0\n412,587,3.5\n412,588,4.0\n412,589,4.5\n412,590,5.0\n412,591,5.5\n412,592,6.0\n412,593,6.5\n412,594,7.0\n412,595,7.5\n412,596,8.0\n412,597,8.5\n412,598,9.0\n412,599,9.5\n412,600,10.0\n412,601,9.5\n412,602,9.0\n412,603,8.5\n412,604,8.0\n412,605,7.5\n412,606,7.0\n412,607,6.5\n412,608,6.0\n412,609,5.5\n412,610,5.0\n412,611,4.5\n412,612,4.0\n412,613,4.5\n412,614,5.0\n412,615,5.5\n412,616,6.0\n412,617,6.5\n412,618,7.0\n412,619,7.5\n412,620,8.0\n412,621,8.5\n412,622,9.0\n412,623,9.5\n412,624,10.0\n413,0,14.5\n413,1,14.0\n413,2,13.5\n413,3,13.0\n413,4,12.5\n413,5,12.0\n413,6,11.5\n413,7,11.0\n413,8,10.5\n413,9,10.0\n413,10,9.5\n413,11,9.0\n413,12,8.5\n413,13,8.0\n413,14,8.5\n413,15,9.0\n413,16,9.5\n413,17,10.0\n413,18,10.5\n413,19,11.0\n413,20,11.5\n413,21,12.0\n413,22,12.5\n413,23,13.0\n413,24,13.5\n413,25,14.0\n413,26,13.5\n413,27,13.0\n413,28,12.5\n413,29,12.0\n413,30,11.5\n413,31,11.0\n413,32,10.5\n413,33,10.0\n413,34,9.5\n413,35,9.0\n413,36,8.5\n413,37,8.0\n413,38,7.5\n413,39,8.0\n413,40,8.5\n413,41,9.0\n413,42,9.5\n413,43,10.0\n413,44,10.5\n413,45,11.0\n413,46,11.5\n413,47,12.0\n413,48,12.5\n413,49,13.0\n413,50,13.5\n413,51,13.0\n413,52,12.5\n413,53,12.0\n413,54,11.5\n413,55,11.0\n413,56,10.5\n413,57,10.0\n413,58,9.5\n413,59,9.0\n413,60,8.5\n413,61,8.0\n413,62,7.5\n413,63,7.0\n413,64,7.5\n413,65,8.0\n413,66,8.5\n413,67,9.0\n413,68,9.5\n413,69,10.0\n413,70,10.5\n413,71,11.0\n413,72,11.5\n413,73,12.0\n413,74,12.5\n413,75,13.0\n413,76,12.5\n413,77,12.0\n413,78,11.5\n413,79,11.0\n413,80,10.5\n413,81,10.0\n413,82,9.5\n413,83,9.0\n413,84,8.5\n413,85,8.0\n413,86,7.5\n413,87,7.0\n413,88,6.5\n413,89,7.0\n413,90,7.5\n413,91,8.0\n413,92,8.5\n413,93,9.0\n413,94,9.5\n413,95,10.0\n413,96,10.5\n413,97,11.0\n413,98,11.5\n413,99,12.0\n413,100,12.5\n413,101,12.0\n413,102,11.5\n413,103,11.0\n413,104,10.5\n413,105,10.0\n413,106,9.5\n413,107,9.0\n413,108,8.5\n413,109,8.0\n413,110,7.5\n413,111,7.0\n413,112,6.5\n413,113,6.0\n413,114,6.5\n413,115,7.0\n413,116,7.5\n413,117,8.0\n413,118,8.5\n413,119,9.0\n413,120,9.5\n413,121,10.0\n413,122,10.5\n413,123,11.0\n413,124,11.5\n413,125,12.0\n413,126,11.5\n413,127,11.0\n413,128,10.5\n413,129,10.0\n413,130,9.5\n413,131,9.0\n413,132,8.5\n413,133,8.0\n413,134,7.5\n413,135,7.0\n413,136,6.5\n413,137,6.0\n413,138,5.5\n413,139,6.0\n413,140,6.5\n413,141,7.0\n413,142,7.5\n413,143,8.0\n413,144,8.5\n413,145,9.0\n413,146,9.5\n413,147,10.0\n413,148,10.5\n413,149,11.0\n413,150,11.5\n413,151,11.0\n413,152,10.5\n413,153,10.0\n413,154,9.5\n413,155,9.0\n413,156,8.5\n413,157,8.0\n413,158,7.5\n413,159,7.0\n413,160,6.5\n413,161,6.0\n413,162,5.5\n413,163,5.0\n413,164,5.5\n413,165,6.0\n413,166,6.5\n413,167,7.0\n413,168,7.5\n413,169,8.0\n413,170,8.5\n413,171,9.0\n413,172,9.5\n413,173,10.0\n413,174,10.5\n413,175,11.0\n413,176,10.5\n413,177,10.0\n413,178,9.5\n413,179,9.0\n413,180,8.5\n413,181,8.0\n413,182,7.5\n413,183,7.0\n413,184,6.5\n413,185,6.0\n413,186,5.5\n413,187,5.0\n413,188,4.5\n413,189,5.0\n413,190,5.5\n413,191,6.0\n413,192,6.5\n413,193,7.0\n413,194,7.5\n413,195,8.0\n413,196,8.5\n413,197,9.0\n413,198,9.5\n413,199,10.0\n413,200,10.5\n413,201,10.0\n413,202,9.5\n413,203,9.0\n413,204,8.5\n413,205,8.0\n413,206,7.5\n413,207,7.0\n413,208,6.5\n413,209,6.0\n413,210,5.5\n413,211,5.0\n413,212,4.5\n413,213,4.0\n413,214,4.5\n413,215,5.0\n413,216,5.5\n413,217,6.0\n413,218,6.5\n413,219,7.0\n413,220,7.5\n413,221,8.0\n413,222,8.5\n413,223,9.0\n413,224,9.5\n413,225,10.0\n413,226,9.5\n413,227,9.0\n413,228,8.5\n413,229,8.0\n413,230,7.5\n413,231,7.0\n413,232,6.5\n413,233,6.0\n413,234,5.5\n413,235,5.0\n413,236,4.5\n413,237,4.0\n413,238,3.5\n413,239,4.0\n413,240,4.5\n413,241,5.0\n413,242,5.5\n413,243,6.0\n413,244,6.5\n413,245,7.0\n413,246,7.5\n413,247,8.0\n413,248,8.5\n413,249,9.0\n413,250,9.5\n413,251,9.0\n413,252,8.5\n413,253,8.0\n413,254,7.5\n413,255,7.0\n413,256,6.5\n413,257,6.0\n413,258,5.5\n413,259,5.0\n413,260,4.5\n413,261,4.0\n413,262,3.5\n413,263,3.0\n413,264,3.5\n413,265,4.0\n413,266,4.5\n413,267,5.0\n413,268,5.5\n413,269,6.0\n413,270,6.5\n413,271,7.0\n413,272,7.5\n413,273,8.0\n413,274,8.5\n413,275,9.0\n413,276,8.5\n413,277,8.0\n413,278,7.5\n413,279,7.0\n413,280,6.5\n413,281,6.0\n413,282,5.5\n413,283,5.0\n413,284,4.5\n413,285,4.0\n413,286,3.5\n413,287,3.0\n413,288,2.5\n413,289,3.0\n413,290,3.5\n413,291,4.0\n413,292,4.5\n413,293,5.0\n413,294,5.5\n413,295,6.0\n413,296,6.5\n413,297,7.0\n413,298,7.5\n413,299,8.0\n413,300,8.5\n413,301,8.0\n413,302,7.5\n413,303,7.0\n413,304,6.5\n413,305,6.0\n413,306,5.5\n413,307,5.0\n413,308,4.5\n413,309,4.0\n413,310,3.5\n413,311,3.0\n413,312,2.5\n413,313,2.0\n413,314,2.5\n413,315,3.0\n413,316,3.5\n413,317,4.0\n413,318,4.5\n413,319,5.0\n413,320,5.5\n413,321,6.0\n413,322,6.5\n413,323,7.0\n413,324,7.5\n413,325,8.0\n413,326,7.5\n413,327,7.0\n413,328,6.5\n413,329,6.0\n413,330,5.5\n413,331,5.0\n413,332,4.5\n413,333,4.0\n413,334,3.5\n413,335,3.0\n413,336,2.5\n413,337,2.0\n413,338,1.5\n413,339,2.0\n413,340,2.5\n413,341,3.0\n413,342,3.5\n413,343,4.0\n413,344,4.5\n413,345,5.0\n413,346,5.5\n413,347,6.0\n413,348,6.5\n413,349,7.0\n413,350,7.5\n413,351,7.0\n413,352,6.5\n413,353,6.0\n413,354,5.5\n413,355,5.0\n413,356,4.5\n413,357,4.0\n413,358,3.5\n413,359,3.0\n413,360,2.5\n413,361,2.0\n413,362,1.5\n413,363,1.0\n413,364,1.5\n413,365,2.0\n413,366,2.5\n413,367,3.0\n413,368,3.5\n413,369,4.0\n413,370,4.5\n413,371,5.0\n413,372,5.5\n413,373,6.0\n413,374,6.5\n413,375,7.0\n413,376,6.5\n413,377,6.0\n413,378,5.5\n413,379,5.0\n413,380,4.5\n413,381,4.0\n413,382,3.5\n413,383,3.0\n413,384,2.5\n413,385,2.0\n413,386,1.5\n413,387,1.0\n413,388,0.5\n413,389,1.0\n413,390,1.5\n413,391,2.0\n413,392,2.5\n413,393,3.0\n413,394,3.5\n413,395,4.0\n413,396,4.5\n413,397,5.0\n413,398,5.5\n413,399,6.0\n413,400,6.5\n413,401,6.0\n413,402,5.5\n413,403,5.0\n413,404,4.5\n413,405,4.0\n413,406,3.5\n413,407,3.0\n413,408,2.5\n413,409,2.0\n413,410,1.5\n413,411,1.0\n413,412,0.5\n413,413,0\n413,414,0.5\n413,415,1.0\n413,416,1.5\n413,417,2.0\n413,418,2.5\n413,419,3.0\n413,420,3.5\n413,421,4.0\n413,422,4.5\n413,423,5.0\n413,424,5.5\n413,425,7.0\n413,426,6.5\n413,427,6.0\n413,428,5.5\n413,429,5.0\n413,430,4.5\n413,431,4.0\n413,432,3.5\n413,433,3.0\n413,434,2.5\n413,435,2.0\n413,436,1.5\n413,437,1.0\n413,438,0.5\n413,439,1.0\n413,440,1.5\n413,441,2.0\n413,442,2.5\n413,443,3.0\n413,444,3.5\n413,445,4.0\n413,446,4.5\n413,447,5.0\n413,448,5.5\n413,449,6.0\n413,450,7.5\n413,451,7.0\n413,452,6.5\n413,453,6.0\n413,454,5.5\n413,455,5.0\n413,456,4.5\n413,457,4.0\n413,458,3.5\n413,459,3.0\n413,460,2.5\n413,461,2.0\n413,462,1.5\n413,463,1.0\n413,464,1.5\n413,465,2.0\n413,466,2.5\n413,467,3.0\n413,468,3.5\n413,469,4.0\n413,470,4.5\n413,471,5.0\n413,472,5.5\n413,473,6.0\n413,474,6.5\n413,475,8.0\n413,476,7.5\n413,477,7.0\n413,478,6.5\n413,479,6.0\n413,480,5.5\n413,481,5.0\n413,482,4.5\n413,483,4.0\n413,484,3.5\n413,485,3.0\n413,486,2.5\n413,487,2.0\n413,488,1.5\n413,489,2.0\n413,490,2.5\n413,491,3.0\n413,492,3.5\n413,493,4.0\n413,494,4.5\n413,495,5.0\n413,496,5.5\n413,497,6.0\n413,498,6.5\n413,499,7.0\n413,500,8.5\n413,501,8.0\n413,502,7.5\n413,503,7.0\n413,504,6.5\n413,505,6.0\n413,506,5.5\n413,507,5.0\n413,508,4.5\n413,509,4.0\n413,510,3.5\n413,511,3.0\n413,512,2.5\n413,513,2.0\n413,514,2.5\n413,515,3.0\n413,516,3.5\n413,517,4.0\n413,518,4.5\n413,519,5.0\n413,520,5.5\n413,521,6.0\n413,522,6.5\n413,523,7.0\n413,524,7.5\n413,525,9.0\n413,526,8.5\n413,527,8.0\n413,528,7.5\n413,529,7.0\n413,530,6.5\n413,531,6.0\n413,532,5.5\n413,533,5.0\n413,534,4.5\n413,535,4.0\n413,536,3.5\n413,537,3.0\n413,538,2.5\n413,539,3.0\n413,540,3.5\n413,541,4.0\n413,542,4.5\n413,543,5.0\n413,544,5.5\n413,545,6.0\n413,546,6.5\n413,547,7.0\n413,548,7.5\n413,549,8.0\n413,550,9.5\n413,551,9.0\n413,552,8.5\n413,553,8.0\n413,554,7.5\n413,555,7.0\n413,556,6.5\n413,557,6.0\n413,558,5.5\n413,559,5.0\n413,560,4.5\n413,561,4.0\n413,562,3.5\n413,563,3.0\n413,564,3.5\n413,565,4.0\n413,566,4.5\n413,567,5.0\n413,568,5.5\n413,569,6.0\n413,570,6.5\n413,571,7.0\n413,572,7.5\n413,573,8.0\n413,574,8.5\n413,575,10.0\n413,576,9.5\n413,577,9.0\n413,578,8.5\n413,579,8.0\n413,580,7.5\n413,581,7.0\n413,582,6.5\n413,583,6.0\n413,584,5.5\n413,585,5.0\n413,586,4.5\n413,587,4.0\n413,588,3.5\n413,589,4.0\n413,590,4.5\n413,591,5.0\n413,592,5.5\n413,593,6.0\n413,594,6.5\n413,595,7.0\n413,596,7.5\n413,597,8.0\n413,598,8.5\n413,599,9.0\n413,600,10.5\n413,601,10.0\n413,602,9.5\n413,603,9.0\n413,604,8.5\n413,605,8.0\n413,606,7.5\n413,607,7.0\n413,608,6.5\n413,609,6.0\n413,610,5.5\n413,611,5.0\n413,612,4.5\n413,613,4.0\n413,614,4.5\n413,615,5.0\n413,616,5.5\n413,617,6.0\n413,618,6.5\n413,619,7.0\n413,620,7.5\n413,621,8.0\n413,622,8.5\n413,623,9.0\n413,624,9.5\n414,0,15.0\n414,1,14.5\n414,2,14.0\n414,3,13.5\n414,4,13.0\n414,5,12.5\n414,6,12.0\n414,7,11.5\n414,8,11.0\n414,9,10.5\n414,10,10.0\n414,11,9.5\n414,12,9.0\n414,13,8.5\n414,14,8.0\n414,15,8.5\n414,16,9.0\n414,17,9.5\n414,18,10.0\n414,19,10.5\n414,20,11.0\n414,21,11.5\n414,22,12.0\n414,23,12.5\n414,24,13.0\n414,25,14.5\n414,26,14.0\n414,27,13.5\n414,28,13.0\n414,29,12.5\n414,30,12.0\n414,31,11.5\n414,32,11.0\n414,33,10.5\n414,34,10.0\n414,35,9.5\n414,36,9.0\n414,37,8.5\n414,38,8.0\n414,39,7.5\n414,40,8.0\n414,41,8.5\n414,42,9.0\n414,43,9.5\n414,44,10.0\n414,45,10.5\n414,46,11.0\n414,47,11.5\n414,48,12.0\n414,49,12.5\n414,50,14.0\n414,51,13.5\n414,52,13.0\n414,53,12.5\n414,54,12.0\n414,55,11.5\n414,56,11.0\n414,57,10.5\n414,58,10.0\n414,59,9.5\n414,60,9.0\n414,61,8.5\n414,62,8.0\n414,63,7.5\n414,64,7.0\n414,65,7.5\n414,66,8.0\n414,67,8.5\n414,68,9.0\n414,69,9.5\n414,70,10.0\n414,71,10.5\n414,72,11.0\n414,73,11.5\n414,74,12.0\n414,75,13.5\n414,76,13.0\n414,77,12.5\n414,78,12.0\n414,79,11.5\n414,80,11.0\n414,81,10.5\n414,82,10.0\n414,83,9.5\n414,84,9.0\n414,85,8.5\n414,86,8.0\n414,87,7.5\n414,88,7.0\n414,89,6.5\n414,90,7.0\n414,91,7.5\n414,92,8.0\n414,93,8.5\n414,94,9.0\n414,95,9.5\n414,96,10.0\n414,97,10.5\n414,98,11.0\n414,99,11.5\n414,100,13.0\n414,101,12.5\n414,102,12.0\n414,103,11.5\n414,104,11.0\n414,105,10.5\n414,106,10.0\n414,107,9.5\n414,108,9.0\n414,109,8.5\n414,110,8.0\n414,111,7.5\n414,112,7.0\n414,113,6.5\n414,114,6.0\n414,115,6.5\n414,116,7.0\n414,117,7.5\n414,118,8.0\n414,119,8.5\n414,120,9.0\n414,121,9.5\n414,122,10.0\n414,123,10.5\n414,124,11.0\n414,125,12.5\n414,126,12.0\n414,127,11.5\n414,128,11.0\n414,129,10.5\n414,130,10.0\n414,131,9.5\n414,132,9.0\n414,133,8.5\n414,134,8.0\n414,135,7.5\n414,136,7.0\n414,137,6.5\n414,138,6.0\n414,139,5.5\n414,140,6.0\n414,141,6.5\n414,142,7.0\n414,143,7.5\n414,144,8.0\n414,145,8.5\n414,146,9.0\n414,147,9.5\n414,148,10.0\n414,149,10.5\n414,150,12.0\n414,151,11.5\n414,152,11.0\n414,153,10.5\n414,154,10.0\n414,155,9.5\n414,156,9.0\n414,157,8.5\n414,158,8.0\n414,159,7.5\n414,160,7.0\n414,161,6.5\n414,162,6.0\n414,163,5.5\n414,164,5.0\n414,165,5.5\n414,166,6.0\n414,167,6.5\n414,168,7.0\n414,169,7.5\n414,170,8.0\n414,171,8.5\n414,172,9.0\n414,173,9.5\n414,174,10.0\n414,175,11.5\n414,176,11.0\n414,177,10.5\n414,178,10.0\n414,179,9.5\n414,180,9.0\n414,181,8.5\n414,182,8.0\n414,183,7.5\n414,184,7.0\n414,185,6.5\n414,186,6.0\n414,187,5.5\n414,188,5.0\n414,189,4.5\n414,190,5.0\n414,191,5.5\n414,192,6.0\n414,193,6.5\n414,194,7.0\n414,195,7.5\n414,196,8.0\n414,197,8.5\n414,198,9.0\n414,199,9.5\n414,200,11.0\n414,201,10.5\n414,202,10.0\n414,203,9.5\n414,204,9.0\n414,205,8.5\n414,206,8.0\n414,207,7.5\n414,208,7.0\n414,209,6.5\n414,210,6.0\n414,211,5.5\n414,212,5.0\n414,213,4.5\n414,214,4.0\n414,215,4.5\n414,216,5.0\n414,217,5.5\n414,218,6.0\n414,219,6.5\n414,220,7.0\n414,221,7.5\n414,222,8.0\n414,223,8.5\n414,224,9.0\n414,225,10.5\n414,226,10.0\n414,227,9.5\n414,228,9.0\n414,229,8.5\n414,230,8.0\n414,231,7.5\n414,232,7.0\n414,233,6.5\n414,234,6.0\n414,235,5.5\n414,236,5.0\n414,237,4.5\n414,238,4.0\n414,239,3.5\n414,240,4.0\n414,241,4.5\n414,242,5.0\n414,243,5.5\n414,244,6.0\n414,245,6.5\n414,246,7.0\n414,247,7.5\n414,248,8.0\n414,249,8.5\n414,250,10.0\n414,251,9.5\n414,252,9.0\n414,253,8.5\n414,254,8.0\n414,255,7.5\n414,256,7.0\n414,257,6.5\n414,258,6.0\n414,259,5.5\n414,260,5.0\n414,261,4.5\n414,262,4.0\n414,263,3.5\n414,264,3.0\n414,265,3.5\n414,266,4.0\n414,267,4.5\n414,268,5.0\n414,269,5.5\n414,270,6.0\n414,271,6.5\n414,272,7.0\n414,273,7.5\n414,274,8.0\n414,275,9.5\n414,276,9.0\n414,277,8.5\n414,278,8.0\n414,279,7.5\n414,280,7.0\n414,281,6.5\n414,282,6.0\n414,283,5.5\n414,284,5.0\n414,285,4.5\n414,286,4.0\n414,287,3.5\n414,288,3.0\n414,289,2.5\n414,290,3.0\n414,291,3.5\n414,292,4.0\n414,293,4.5\n414,294,5.0\n414,295,5.5\n414,296,6.0\n414,297,6.5\n414,298,7.0\n414,299,7.5\n414,300,9.0\n414,301,8.5\n414,302,8.0\n414,303,7.5\n414,304,7.0\n414,305,6.5\n414,306,6.0\n414,307,5.5\n414,308,5.0\n414,309,4.5\n414,310,4.0\n414,311,3.5\n414,312,3.0\n414,313,2.5\n414,314,2.0\n414,315,2.5\n414,316,3.0\n414,317,3.5\n414,318,4.0\n414,319,4.5\n414,320,5.0\n414,321,5.5\n414,322,6.0\n414,323,6.5\n414,324,7.0\n414,325,8.5\n414,326,8.0\n414,327,7.5\n414,328,7.0\n414,329,6.5\n414,330,6.0\n414,331,5.5\n414,332,5.0\n414,333,4.5\n414,334,4.0\n414,335,3.5\n414,336,3.0\n414,337,2.5\n414,338,2.0\n414,339,1.5\n414,340,2.0\n414,341,2.5\n414,342,3.0\n414,343,3.5\n414,344,4.0\n414,345,4.5\n414,346,5.0\n414,347,5.5\n414,348,6.0\n414,349,6.5\n414,350,8.0\n414,351,7.5\n414,352,7.0\n414,353,6.5\n414,354,6.0\n414,355,5.5\n414,356,5.0\n414,357,4.5\n414,358,4.0\n414,359,3.5\n414,360,3.0\n414,361,2.5\n414,362,2.0\n414,363,1.5\n414,364,1.0\n414,365,1.5\n414,366,2.0\n414,367,2.5\n414,368,3.0\n414,369,3.5\n414,370,4.0\n414,371,4.5\n414,372,5.0\n414,373,5.5\n414,374,6.0\n414,375,7.5\n414,376,7.0\n414,377,6.5\n414,378,6.0\n414,379,5.5\n414,380,5.0\n414,381,4.5\n414,382,4.0\n414,383,3.5\n414,384,3.0\n414,385,2.5\n414,386,2.0\n414,387,1.5\n414,388,1.0\n414,389,0.5\n414,390,1.0\n414,391,1.5\n414,392,2.0\n414,393,2.5\n414,394,3.0\n414,395,3.5\n414,396,4.0\n414,397,4.5\n414,398,5.0\n414,399,5.5\n414,400,7.0\n414,401,6.5\n414,402,6.0\n414,403,5.5\n414,404,5.0\n414,405,4.5\n414,406,4.0\n414,407,3.5\n414,408,3.0\n414,409,2.5\n414,410,2.0\n414,411,1.5\n414,412,1.0\n414,413,0.5\n414,414,0\n414,415,0.5\n414,416,1.0\n414,417,1.5\n414,418,2.0\n414,419,2.5\n414,420,3.0\n414,421,3.5\n414,422,4.0\n414,423,4.5\n414,424,5.0\n414,425,7.5\n414,426,7.0\n414,427,6.5\n414,428,6.0\n414,429,5.5\n414,430,5.0\n414,431,4.5\n414,432,4.0\n414,433,3.5\n414,434,3.0\n414,435,2.5\n414,436,2.0\n414,437,1.5\n414,438,1.0\n414,439,0.5\n414,440,1.0\n414,441,1.5\n414,442,2.0\n414,443,2.5\n414,444,3.0\n414,445,3.5\n414,446,4.0\n414,447,4.5\n414,448,5.0\n414,449,5.5\n414,450,8.0\n414,451,7.5\n414,452,7.0\n414,453,6.5\n414,454,6.0\n414,455,5.5\n414,456,5.0\n414,457,4.5\n414,458,4.0\n414,459,3.5\n414,460,3.0\n414,461,2.5\n414,462,2.0\n414,463,1.5\n414,464,1.0\n414,465,1.5\n414,466,2.0\n414,467,2.5\n414,468,3.0\n414,469,3.5\n414,470,4.0\n414,471,4.5\n414,472,5.0\n414,473,5.5\n414,474,6.0\n414,475,8.5\n414,476,8.0\n414,477,7.5\n414,478,7.0\n414,479,6.5\n414,480,6.0\n414,481,5.5\n414,482,5.0\n414,483,4.5\n414,484,4.0\n414,485,3.5\n414,486,3.0\n414,487,2.5\n414,488,2.0\n414,489,1.5\n414,490,2.0\n414,491,2.5\n414,492,3.0\n414,493,3.5\n414,494,4.0\n414,495,4.5\n414,496,5.0\n414,497,5.5\n414,498,6.0\n414,499,6.5\n414,500,9.0\n414,501,8.5\n414,502,8.0\n414,503,7.5\n414,504,7.0\n414,505,6.5\n414,506,6.0\n414,507,5.5\n414,508,5.0\n414,509,4.5\n414,510,4.0\n414,511,3.5\n414,512,3.0\n414,513,2.5\n414,514,2.0\n414,515,2.5\n414,516,3.0\n414,517,3.5\n414,518,4.0\n414,519,4.5\n414,520,5.0\n414,521,5.5\n414,522,6.0\n414,523,6.5\n414,524,7.0\n414,525,9.5\n414,526,9.0\n414,527,8.5\n414,528,8.0\n414,529,7.5\n414,530,7.0\n414,531,6.5\n414,532,6.0\n414,533,5.5\n414,534,5.0\n414,535,4.5\n414,536,4.0\n414,537,3.5\n414,538,3.0\n414,539,2.5\n414,540,3.0\n414,541,3.5\n414,542,4.0\n414,543,4.5\n414,544,5.0\n414,545,5.5\n414,546,6.0\n414,547,6.5\n414,548,7.0\n414,549,7.5\n414,550,10.0\n414,551,9.5\n414,552,9.0\n414,553,8.5\n414,554,8.0\n414,555,7.5\n414,556,7.0\n414,557,6.5\n414,558,6.0\n414,559,5.5\n414,560,5.0\n414,561,4.5\n414,562,4.0\n414,563,3.5\n414,564,3.0\n414,565,3.5\n414,566,4.0\n414,567,4.5\n414,568,5.0\n414,569,5.5\n414,570,6.0\n414,571,6.5\n414,572,7.0\n414,573,7.5\n414,574,8.0\n414,575,10.5\n414,576,10.0\n414,577,9.5\n414,578,9.0\n414,579,8.5\n414,580,8.0\n414,581,7.5\n414,582,7.0\n414,583,6.5\n414,584,6.0\n414,585,5.5\n414,586,5.0\n414,587,4.5\n414,588,4.0\n414,589,3.5\n414,590,4.0\n414,591,4.5\n414,592,5.0\n414,593,5.5\n414,594,6.0\n414,595,6.5\n414,596,7.0\n414,597,7.5\n414,598,8.0\n414,599,8.5\n414,600,11.0\n414,601,10.5\n414,602,10.0\n414,603,9.5\n414,604,9.0\n414,605,8.5\n414,606,8.0\n414,607,7.5\n414,608,7.0\n414,609,6.5\n414,610,6.0\n414,611,5.5\n414,612,5.0\n414,613,4.5\n414,614,4.0\n414,615,4.5\n414,616,5.0\n414,617,5.5\n414,618,6.0\n414,619,6.5\n414,620,7.0\n414,621,7.5\n414,622,8.0\n414,623,8.5\n414,624,9.0\n415,0,15.5\n415,1,15.0\n415,2,14.5\n415,3,14.0\n415,4,13.5\n415,5,13.0\n415,6,12.5\n415,7,12.0\n415,8,11.5\n415,9,11.0\n415,10,10.5\n415,11,10.0\n415,12,9.5\n415,13,9.0\n415,14,8.5\n415,15,8.0\n415,16,8.5\n415,17,9.0\n415,18,9.5\n415,19,10.0\n415,20,10.5\n415,21,11.0\n415,22,11.5\n415,23,12.0\n415,24,12.5\n415,25,15.0\n415,26,14.5\n415,27,14.0\n415,28,13.5\n415,29,13.0\n415,30,12.5\n415,31,12.0\n415,32,11.5\n415,33,11.0\n415,34,10.5\n415,35,10.0\n415,36,9.5\n415,37,9.0\n415,38,8.5\n415,39,8.0\n415,40,7.5\n415,41,8.0\n415,42,8.5\n415,43,9.0\n415,44,9.5\n415,45,10.0\n415,46,10.5\n415,47,11.0\n415,48,11.5\n415,49,12.0\n415,50,14.5\n415,51,14.0\n415,52,13.5\n415,53,13.0\n415,54,12.5\n415,55,12.0\n415,56,11.5\n415,57,11.0\n415,58,10.5\n415,59,10.0\n415,60,9.5\n415,61,9.0\n415,62,8.5\n415,63,8.0\n415,64,7.5\n415,65,7.0\n415,66,7.5\n415,67,8.0\n415,68,8.5\n415,69,9.0\n415,70,9.5\n415,71,10.0\n415,72,10.5\n415,73,11.0\n415,74,11.5\n415,75,14.0\n415,76,13.5\n415,77,13.0\n415,78,12.5\n415,79,12.0\n415,80,11.5\n415,81,11.0\n415,82,10.5\n415,83,10.0\n415,84,9.5\n415,85,9.0\n415,86,8.5\n415,87,8.0\n415,88,7.5\n415,89,7.0\n415,90,6.5\n415,91,7.0\n415,92,7.5\n415,93,8.0\n415,94,8.5\n415,95,9.0\n415,96,9.5\n415,97,10.0\n415,98,10.5\n415,99,11.0\n415,100,13.5\n415,101,13.0\n415,102,12.5\n415,103,12.0\n415,104,11.5\n415,105,11.0\n415,106,10.5\n415,107,10.0\n415,108,9.5\n415,109,9.0\n415,110,8.5\n415,111,8.0\n415,112,7.5\n415,113,7.0\n415,114,6.5\n415,115,6.0\n415,116,6.5\n415,117,7.0\n415,118,7.5\n415,119,8.0\n415,120,8.5\n415,121,9.0\n415,122,9.5\n415,123,10.0\n415,124,10.5\n415,125,13.0\n415,126,12.5\n415,127,12.0\n415,128,11.5\n415,129,11.0\n415,130,10.5\n415,131,10.0\n415,132,9.5\n415,133,9.0\n415,134,8.5\n415,135,8.0\n415,136,7.5\n415,137,7.0\n415,138,6.5\n415,139,6.0\n415,140,5.5\n415,141,6.0\n415,142,6.5\n415,143,7.0\n415,144,7.5\n415,145,8.0\n415,146,8.5\n415,147,9.0\n415,148,9.5\n415,149,10.0\n415,150,12.5\n415,151,12.0\n415,152,11.5\n415,153,11.0\n415,154,10.5\n415,155,10.0\n415,156,9.5\n415,157,9.0\n415,158,8.5\n415,159,8.0\n415,160,7.5\n415,161,7.0\n415,162,6.5\n415,163,6.0\n415,164,5.5\n415,165,5.0\n415,166,5.5\n415,167,6.0\n415,168,6.5\n415,169,7.0\n415,170,7.5\n415,171,8.0\n415,172,8.5\n415,173,9.0\n415,174,9.5\n415,175,12.0\n415,176,11.5\n415,177,11.0\n415,178,10.5\n415,179,10.0\n415,180,9.5\n415,181,9.0\n415,182,8.5\n415,183,8.0\n415,184,7.5\n415,185,7.0\n415,186,6.5\n415,187,6.0\n415,188,5.5\n415,189,5.0\n415,190,4.5\n415,191,5.0\n415,192,5.5\n415,193,6.0\n415,194,6.5\n415,195,7.0\n415,196,7.5\n415,197,8.0\n415,198,8.5\n415,199,9.0\n415,200,11.5\n415,201,11.0\n415,202,10.5\n415,203,10.0\n415,204,9.5\n415,205,9.0\n415,206,8.5\n415,207,8.0\n415,208,7.5\n415,209,7.0\n415,210,6.5\n415,211,6.0\n415,212,5.5\n415,213,5.0\n415,214,4.5\n415,215,4.0\n415,216,4.5\n415,217,5.0\n415,218,5.5\n415,219,6.0\n415,220,6.5\n415,221,7.0\n415,222,7.5\n415,223,8.0\n415,224,8.5\n415,225,11.0\n415,226,10.5\n415,227,10.0\n415,228,9.5\n415,229,9.0\n415,230,8.5\n415,231,8.0\n415,232,7.5\n415,233,7.0\n415,234,6.5\n415,235,6.0\n415,236,5.5\n415,237,5.0\n415,238,4.5\n415,239,4.0\n415,240,3.5\n415,241,4.0\n415,242,4.5\n415,243,5.0\n415,244,5.5\n415,245,6.0\n415,246,6.5\n415,247,7.0\n415,248,7.5\n415,249,8.0\n415,250,10.5\n415,251,10.0\n415,252,9.5\n415,253,9.0\n415,254,8.5\n415,255,8.0\n415,256,7.5\n415,257,7.0\n415,258,6.5\n415,259,6.0\n415,260,5.5\n415,261,5.0\n415,262,4.5\n415,263,4.0\n415,264,3.5\n415,265,3.0\n415,266,3.5\n415,267,4.0\n415,268,4.5\n415,269,5.0\n415,270,5.5\n415,271,6.0\n415,272,6.5\n415,273,7.0\n415,274,7.5\n415,275,10.0\n415,276,9.5\n415,277,9.0\n415,278,8.5\n415,279,8.0\n415,280,7.5\n415,281,7.0\n415,282,6.5\n415,283,6.0\n415,284,5.5\n415,285,5.0\n415,286,4.5\n415,287,4.0\n415,288,3.5\n415,289,3.0\n415,290,2.5\n415,291,3.0\n415,292,3.5\n415,293,4.0\n415,294,4.5\n415,295,5.0\n415,296,5.5\n415,297,6.0\n415,298,6.5\n415,299,7.0\n415,300,9.5\n415,301,9.0\n415,302,8.5\n415,303,8.0\n415,304,7.5\n415,305,7.0\n415,306,6.5\n415,307,6.0\n415,308,5.5\n415,309,5.0\n415,310,4.5\n415,311,4.0\n415,312,3.5\n415,313,3.0\n415,314,2.5\n415,315,2.0\n415,316,2.5\n415,317,3.0\n415,318,3.5\n415,319,4.0\n415,320,4.5\n415,321,5.0\n415,322,5.5\n415,323,6.0\n415,324,6.5\n415,325,9.0\n415,326,8.5\n415,327,8.0\n415,328,7.5\n415,329,7.0\n415,330,6.5\n415,331,6.0\n415,332,5.5\n415,333,5.0\n415,334,4.5\n415,335,4.0\n415,336,3.5\n415,337,3.0\n415,338,2.5\n415,339,2.0\n415,340,1.5\n415,341,2.0\n415,342,2.5\n415,343,3.0\n415,344,3.5\n415,345,4.0\n415,346,4.5\n415,347,5.0\n415,348,5.5\n415,349,6.0\n415,350,8.5\n415,351,8.0\n415,352,7.5\n415,353,7.0\n415,354,6.5\n415,355,6.0\n415,356,5.5\n415,357,5.0\n415,358,4.5\n415,359,4.0\n415,360,3.5\n415,361,3.0\n415,362,2.5\n415,363,2.0\n415,364,1.5\n415,365,1.0\n415,366,1.5\n415,367,2.0\n415,368,2.5\n415,369,3.0\n415,370,3.5\n415,371,4.0\n415,372,4.5\n415,373,5.0\n415,374,5.5\n415,375,8.0\n415,376,7.5\n415,377,7.0\n415,378,6.5\n415,379,6.0\n415,380,5.5\n415,381,5.0\n415,382,4.5\n415,383,4.0\n415,384,3.5\n415,385,3.0\n415,386,2.5\n415,387,2.0\n415,388,1.5\n415,389,1.0\n415,390,0.5\n415,391,1.0\n415,392,1.5\n415,393,2.0\n415,394,2.5\n415,395,3.0\n415,396,3.5\n415,397,4.0\n415,398,4.5\n415,399,5.0\n415,400,7.5\n415,401,7.0\n415,402,6.5\n415,403,6.0\n415,404,5.5\n415,405,5.0\n415,406,4.5\n415,407,4.0\n415,408,3.5\n415,409,3.0\n415,410,2.5\n415,411,2.0\n415,412,1.5\n415,413,1.0\n415,414,0.5\n415,415,0\n415,416,0.5\n415,417,1.0\n415,418,1.5\n415,419,2.0\n415,420,2.5\n415,421,3.0\n415,422,3.5\n415,423,4.0\n415,424,4.5\n415,425,8.0\n415,426,7.5\n415,427,7.0\n415,428,6.5\n415,429,6.0\n415,430,5.5\n415,431,5.0\n415,432,4.5\n415,433,4.0\n415,434,3.5\n415,435,3.0\n415,436,2.5\n415,437,2.0\n415,438,1.5\n415,439,1.0\n415,440,0.5\n415,441,1.0\n415,442,1.5\n415,443,2.0\n415,444,2.5\n415,445,3.0\n415,446,3.5\n415,447,4.0\n415,448,4.5\n415,449,5.0\n415,450,8.5\n415,451,8.0\n415,452,7.5\n415,453,7.0\n415,454,6.5\n415,455,6.0\n415,456,5.5\n415,457,5.0\n415,458,4.5\n415,459,4.0\n415,460,3.5\n415,461,3.0\n415,462,2.5\n415,463,2.0\n415,464,1.5\n415,465,1.0\n415,466,1.5\n415,467,2.0\n415,468,2.5\n415,469,3.0\n415,470,3.5\n415,471,4.0\n415,472,4.5\n415,473,5.0\n415,474,5.5\n415,475,9.0\n415,476,8.5\n415,477,8.0\n415,478,7.5\n415,479,7.0\n415,480,6.5\n415,481,6.0\n415,482,5.5\n415,483,5.0\n415,484,4.5\n415,485,4.0\n415,486,3.5\n415,487,3.0\n415,488,2.5\n415,489,2.0\n415,490,1.5\n415,491,2.0\n415,492,2.5\n415,493,3.0\n415,494,3.5\n415,495,4.0\n415,496,4.5\n415,497,5.0\n415,498,5.5\n415,499,6.0\n415,500,9.5\n415,501,9.0\n415,502,8.5\n415,503,8.0\n415,504,7.5\n415,505,7.0\n415,506,6.5\n415,507,6.0\n415,508,5.5\n415,509,5.0\n415,510,4.5\n415,511,4.0\n415,512,3.5\n415,513,3.0\n415,514,2.5\n415,515,2.0\n415,516,2.5\n415,517,3.0\n415,518,3.5\n415,519,4.0\n415,520,4.5\n415,521,5.0\n415,522,5.5\n415,523,6.0\n415,524,6.5\n415,525,10.0\n415,526,9.5\n415,527,9.0\n415,528,8.5\n415,529,8.0\n415,530,7.5\n415,531,7.0\n415,532,6.5\n415,533,6.0\n415,534,5.5\n415,535,5.0\n415,536,4.5\n415,537,4.0\n415,538,3.5\n415,539,3.0\n415,540,2.5\n415,541,3.0\n415,542,3.5\n415,543,4.0\n415,544,4.5\n415,545,5.0\n415,546,5.5\n415,547,6.0\n415,548,6.5\n415,549,7.0\n415,550,10.5\n415,551,10.0\n415,552,9.5\n415,553,9.0\n415,554,8.5\n415,555,8.0\n415,556,7.5\n415,557,7.0\n415,558,6.5\n415,559,6.0\n415,560,5.5\n415,561,5.0\n415,562,4.5\n415,563,4.0\n415,564,3.5\n415,565,3.0\n415,566,3.5\n415,567,4.0\n415,568,4.5\n415,569,5.0\n415,570,5.5\n415,571,6.0\n415,572,6.5\n415,573,7.0\n415,574,7.5\n415,575,11.0\n415,576,10.5\n415,577,10.0\n415,578,9.5\n415,579,9.0\n415,580,8.5\n415,581,8.0\n415,582,7.5\n415,583,7.0\n415,584,6.5\n415,585,6.0\n415,586,5.5\n415,587,5.0\n415,588,4.5\n415,589,4.0\n415,590,3.5\n415,591,4.0\n415,592,4.5\n415,593,5.0\n415,594,5.5\n415,595,6.0\n415,596,6.5\n415,597,7.0\n415,598,7.5\n415,599,8.0\n415,600,11.5\n415,601,11.0\n415,602,10.5\n415,603,10.0\n415,604,9.5\n415,605,9.0\n415,606,8.5\n415,607,8.0\n415,608,7.5\n415,609,7.0\n415,610,6.5\n415,611,6.0\n415,612,5.5\n415,613,5.0\n415,614,4.5\n415,615,4.0\n415,616,4.5\n415,617,5.0\n415,618,5.5\n415,619,6.0\n415,620,6.5\n415,621,7.0\n415,622,7.5\n415,623,8.0\n415,624,8.5\n416,0,16.0\n416,1,15.5\n416,2,15.0\n416,3,14.5\n416,4,14.0\n416,5,13.5\n416,6,13.0\n416,7,12.5\n416,8,12.0\n416,9,11.5\n416,10,11.0\n416,11,10.5\n416,12,10.0\n416,13,9.5\n416,14,9.0\n416,15,8.5\n416,16,8.0\n416,17,8.5\n416,18,9.0\n416,19,9.5\n416,20,10.0\n416,21,10.5\n416,22,11.0\n416,23,11.5\n416,24,12.0\n416,25,15.5\n416,26,15.0\n416,27,14.5\n416,28,14.0\n416,29,13.5\n416,30,13.0\n416,31,12.5\n416,32,12.0\n416,33,11.5\n416,34,11.0\n416,35,10.5\n416,36,10.0\n416,37,9.5\n416,38,9.0\n416,39,8.5\n416,40,8.0\n416,41,7.5\n416,42,8.0\n416,43,8.5\n416,44,9.0\n416,45,9.5\n416,46,10.0\n416,47,10.5\n416,48,11.0\n416,49,11.5\n416,50,15.0\n416,51,14.5\n416,52,14.0\n416,53,13.5\n416,54,13.0\n416,55,12.5\n416,56,12.0\n416,57,11.5\n416,58,11.0\n416,59,10.5\n416,60,10.0\n416,61,9.5\n416,62,9.0\n416,63,8.5\n416,64,8.0\n416,65,7.5\n416,66,7.0\n416,67,7.5\n416,68,8.0\n416,69,8.5\n416,70,9.0\n416,71,9.5\n416,72,10.0\n416,73,10.5\n416,74,11.0\n416,75,14.5\n416,76,14.0\n416,77,13.5\n416,78,13.0\n416,79,12.5\n416,80,12.0\n416,81,11.5\n416,82,11.0\n416,83,10.5\n416,84,10.0\n416,85,9.5\n416,86,9.0\n416,87,8.5\n416,88,8.0\n416,89,7.5\n416,90,7.0\n416,91,6.5\n416,92,7.0\n416,93,7.5\n416,94,8.0\n416,95,8.5\n416,96,9.0\n416,97,9.5\n416,98,10.0\n416,99,10.5\n416,100,14.0\n416,101,13.5\n416,102,13.0\n416,103,12.5\n416,104,12.0\n416,105,11.5\n416,106,11.0\n416,107,10.5\n416,108,10.0\n416,109,9.5\n416,110,9.0\n416,111,8.5\n416,112,8.0\n416,113,7.5\n416,114,7.0\n416,115,6.5\n416,116,6.0\n416,117,6.5\n416,118,7.0\n416,119,7.5\n416,120,8.0\n416,121,8.5\n416,122,9.0\n416,123,9.5\n416,124,10.0\n416,125,13.5\n416,126,13.0\n416,127,12.5\n416,128,12.0\n416,129,11.5\n416,130,11.0\n416,131,10.5\n416,132,10.0\n416,133,9.5\n416,134,9.0\n416,135,8.5\n416,136,8.0\n416,137,7.5\n416,138,7.0\n416,139,6.5\n416,140,6.0\n416,141,5.5\n416,142,6.0\n416,143,6.5\n416,144,7.0\n416,145,7.5\n416,146,8.0\n416,147,8.5\n416,148,9.0\n416,149,9.5\n416,150,13.0\n416,151,12.5\n416,152,12.0\n416,153,11.5\n416,154,11.0\n416,155,10.5\n416,156,10.0\n416,157,9.5\n416,158,9.0\n416,159,8.5\n416,160,8.0\n416,161,7.5\n416,162,7.0\n416,163,6.5\n416,164,6.0\n416,165,5.5\n416,166,5.0\n416,167,5.5\n416,168,6.0\n416,169,6.5\n416,170,7.0\n416,171,7.5\n416,172,8.0\n416,173,8.5\n416,174,9.0\n416,175,12.5\n416,176,12.0\n416,177,11.5\n416,178,11.0\n416,179,10.5\n416,180,10.0\n416,181,9.5\n416,182,9.0\n416,183,8.5\n416,184,8.0\n416,185,7.5\n416,186,7.0\n416,187,6.5\n416,188,6.0\n416,189,5.5\n416,190,5.0\n416,191,4.5\n416,192,5.0\n416,193,5.5\n416,194,6.0\n416,195,6.5\n416,196,7.0\n416,197,7.5\n416,198,8.0\n416,199,8.5\n416,200,12.0\n416,201,11.5\n416,202,11.0\n416,203,10.5\n416,204,10.0\n416,205,9.5\n416,206,9.0\n416,207,8.5\n416,208,8.0\n416,209,7.5\n416,210,7.0\n416,211,6.5\n416,212,6.0\n416,213,5.5\n416,214,5.0\n416,215,4.5\n416,216,4.0\n416,217,4.5\n416,218,5.0\n416,219,5.5\n416,220,6.0\n416,221,6.5\n416,222,7.0\n416,223,7.5\n416,224,8.0\n416,225,11.5\n416,226,11.0\n416,227,10.5\n416,228,10.0\n416,229,9.5\n416,230,9.0\n416,231,8.5\n416,232,8.0\n416,233,7.5\n416,234,7.0\n416,235,6.5\n416,236,6.0\n416,237,5.5\n416,238,5.0\n416,239,4.5\n416,240,4.0\n416,241,3.5\n416,242,4.0\n416,243,4.5\n416,244,5.0\n416,245,5.5\n416,246,6.0\n416,247,6.5\n416,248,7.0\n416,249,7.5\n416,250,11.0\n416,251,10.5\n416,252,10.0\n416,253,9.5\n416,254,9.0\n416,255,8.5\n416,256,8.0\n416,257,7.5\n416,258,7.0\n416,259,6.5\n416,260,6.0\n416,261,5.5\n416,262,5.0\n416,263,4.5\n416,264,4.0\n416,265,3.5\n416,266,3.0\n416,267,3.5\n416,268,4.0\n416,269,4.5\n416,270,5.0\n416,271,5.5\n416,272,6.0\n416,273,6.5\n416,274,7.0\n416,275,10.5\n416,276,10.0\n416,277,9.5\n416,278,9.0\n416,279,8.5\n416,280,8.0\n416,281,7.5\n416,282,7.0\n416,283,6.5\n416,284,6.0\n416,285,5.5\n416,286,5.0\n416,287,4.5\n416,288,4.0\n416,289,3.5\n416,290,3.0\n416,291,2.5\n416,292,3.0\n416,293,3.5\n416,294,4.0\n416,295,4.5\n416,296,5.0\n416,297,5.5\n416,298,6.0\n416,299,6.5\n416,300,10.0\n416,301,9.5\n416,302,9.0\n416,303,8.5\n416,304,8.0\n416,305,7.5\n416,306,7.0\n416,307,6.5\n416,308,6.0\n416,309,5.5\n416,310,5.0\n416,311,4.5\n416,312,4.0\n416,313,3.5\n416,314,3.0\n416,315,2.5\n416,316,2.0\n416,317,2.5\n416,318,3.0\n416,319,3.5\n416,320,4.0\n416,321,4.5\n416,322,5.0\n416,323,5.5\n416,324,6.0\n416,325,9.5\n416,326,9.0\n416,327,8.5\n416,328,8.0\n416,329,7.5\n416,330,7.0\n416,331,6.5\n416,332,6.0\n416,333,5.5\n416,334,5.0\n416,335,4.5\n416,336,4.0\n416,337,3.5\n416,338,3.0\n416,339,2.5\n416,340,2.0\n416,341,1.5\n416,342,2.0\n416,343,2.5\n416,344,3.0\n416,345,3.5\n416,346,4.0\n416,347,4.5\n416,348,5.0\n416,349,5.5\n416,350,9.0\n416,351,8.5\n416,352,8.0\n416,353,7.5\n416,354,7.0\n416,355,6.5\n416,356,6.0\n416,357,5.5\n416,358,5.0\n416,359,4.5\n416,360,4.0\n416,361,3.5\n416,362,3.0\n416,363,2.5\n416,364,2.0\n416,365,1.5\n416,366,1.0\n416,367,1.5\n416,368,2.0\n416,369,2.5\n416,370,3.0\n416,371,3.5\n416,372,4.0\n416,373,4.5\n416,374,5.0\n416,375,8.5\n416,376,8.0\n416,377,7.5\n416,378,7.0\n416,379,6.5\n416,380,6.0\n416,381,5.5\n416,382,5.0\n416,383,4.5\n416,384,4.0\n416,385,3.5\n416,386,3.0\n416,387,2.5\n416,388,2.0\n416,389,1.5\n416,390,1.0\n416,391,0.5\n416,392,1.0\n416,393,1.5\n416,394,2.0\n416,395,2.5\n416,396,3.0\n416,397,3.5\n416,398,4.0\n416,399,4.5\n416,400,8.0\n416,401,7.5\n416,402,7.0\n416,403,6.5\n416,404,6.0\n416,405,5.5\n416,406,5.0\n416,407,4.5\n416,408,4.0\n416,409,3.5\n416,410,3.0\n416,411,2.5\n416,412,2.0\n416,413,1.5\n416,414,1.0\n416,415,0.5\n416,416,0\n416,417,0.5\n416,418,1.0\n416,419,1.5\n416,420,2.0\n416,421,2.5\n416,422,3.0\n416,423,3.5\n416,424,4.0\n416,425,8.5\n416,426,8.0\n416,427,7.5\n416,428,7.0\n416,429,6.5\n416,430,6.0\n416,431,5.5\n416,432,5.0\n416,433,4.5\n416,434,4.0\n416,435,3.5\n416,436,3.0\n416,437,2.5\n416,438,2.0\n416,439,1.5\n416,440,1.0\n416,441,0.5\n416,442,1.0\n416,443,1.5\n416,444,2.0\n416,445,2.5\n416,446,3.0\n416,447,3.5\n416,448,4.0\n416,449,4.5\n416,450,9.0\n416,451,8.5\n416,452,8.0\n416,453,7.5\n416,454,7.0\n416,455,6.5\n416,456,6.0\n416,457,5.5\n416,458,5.0\n416,459,4.5\n416,460,4.0\n416,461,3.5\n416,462,3.0\n416,463,2.5\n416,464,2.0\n416,465,1.5\n416,466,1.0\n416,467,1.5\n416,468,2.0\n416,469,2.5\n416,470,3.0\n416,471,3.5\n416,472,4.0\n416,473,4.5\n416,474,5.0\n416,475,9.5\n416,476,9.0\n416,477,8.5\n416,478,8.0\n416,479,7.5\n416,480,7.0\n416,481,6.5\n416,482,6.0\n416,483,5.5\n416,484,5.0\n416,485,4.5\n416,486,4.0\n416,487,3.5\n416,488,3.0\n416,489,2.5\n416,490,2.0\n416,491,1.5\n416,492,2.0\n416,493,2.5\n416,494,3.0\n416,495,3.5\n416,496,4.0\n416,497,4.5\n416,498,5.0\n416,499,5.5\n416,500,10.0\n416,501,9.5\n416,502,9.0\n416,503,8.5\n416,504,8.0\n416,505,7.5\n416,506,7.0\n416,507,6.5\n416,508,6.0\n416,509,5.5\n416,510,5.0\n416,511,4.5\n416,512,4.0\n416,513,3.5\n416,514,3.0\n416,515,2.5\n416,516,2.0\n416,517,2.5\n416,518,3.0\n416,519,3.5\n416,520,4.0\n416,521,4.5\n416,522,5.0\n416,523,5.5\n416,524,6.0\n416,525,10.5\n416,526,10.0\n416,527,9.5\n416,528,9.0\n416,529,8.5\n416,530,8.0\n416,531,7.5\n416,532,7.0\n416,533,6.5\n416,534,6.0\n416,535,5.5\n416,536,5.0\n416,537,4.5\n416,538,4.0\n416,539,3.5\n416,540,3.0\n416,541,2.5\n416,542,3.0\n416,543,3.5\n416,544,4.0\n416,545,4.5\n416,546,5.0\n416,547,5.5\n416,548,6.0\n416,549,6.5\n416,550,11.0\n416,551,10.5\n416,552,10.0\n416,553,9.5\n416,554,9.0\n416,555,8.5\n416,556,8.0\n416,557,7.5\n416,558,7.0\n416,559,6.5\n416,560,6.0\n416,561,5.5\n416,562,5.0\n416,563,4.5\n416,564,4.0\n416,565,3.5\n416,566,3.0\n416,567,3.5\n416,568,4.0\n416,569,4.5\n416,570,5.0\n416,571,5.5\n416,572,6.0\n416,573,6.5\n416,574,7.0\n416,575,11.5\n416,576,11.0\n416,577,10.5\n416,578,10.0\n416,579,9.5\n416,580,9.0\n416,581,8.5\n416,582,8.0\n416,583,7.5\n416,584,7.0\n416,585,6.5\n416,586,6.0\n416,587,5.5\n416,588,5.0\n416,589,4.5\n416,590,4.0\n416,591,3.5\n416,592,4.0\n416,593,4.5\n416,594,5.0\n416,595,5.5\n416,596,6.0\n416,597,6.5\n416,598,7.0\n416,599,7.5\n416,600,12.0\n416,601,11.5\n416,602,11.0\n416,603,10.5\n416,604,10.0\n416,605,9.5\n416,606,9.0\n416,607,8.5\n416,608,8.0\n416,609,7.5\n416,610,7.0\n416,611,6.5\n416,612,6.0\n416,613,5.5\n416,614,5.0\n416,615,4.5\n416,616,4.0\n416,617,4.5\n416,618,5.0\n416,619,5.5\n416,620,6.0\n416,621,6.5\n416,622,7.0\n416,623,7.5\n416,624,8.0\n417,0,16.5\n417,1,16.0\n417,2,15.5\n417,3,15.0\n417,4,14.5\n417,5,14.0\n417,6,13.5\n417,7,13.0\n417,8,12.5\n417,9,12.0\n417,10,11.5\n417,11,11.0\n417,12,10.5\n417,13,10.0\n417,14,9.5\n417,15,9.0\n417,16,8.5\n417,17,8.0\n417,18,8.5\n417,19,9.0\n417,20,9.5\n417,21,10.0\n417,22,10.5\n417,23,11.0\n417,24,11.5\n417,25,16.0\n417,26,15.5\n417,27,15.0\n417,28,14.5\n417,29,14.0\n417,30,13.5\n417,31,13.0\n417,32,12.5\n417,33,12.0\n417,34,11.5\n417,35,11.0\n417,36,10.5\n417,37,10.0\n417,38,9.5\n417,39,9.0\n417,40,8.5\n417,41,8.0\n417,42,7.5\n417,43,8.0\n417,44,8.5\n417,45,9.0\n417,46,9.5\n417,47,10.0\n417,48,10.5\n417,49,11.0\n417,50,15.5\n417,51,15.0\n417,52,14.5\n417,53,14.0\n417,54,13.5\n417,55,13.0\n417,56,12.5\n417,57,12.0\n417,58,11.5\n417,59,11.0\n417,60,10.5\n417,61,10.0\n417,62,9.5\n417,63,9.0\n417,64,8.5\n417,65,8.0\n417,66,7.5\n417,67,7.0\n417,68,7.5\n417,69,8.0\n417,70,8.5\n417,71,9.0\n417,72,9.5\n417,73,10.0\n417,74,10.5\n417,75,15.0\n417,76,14.5\n417,77,14.0\n417,78,13.5\n417,79,13.0\n417,80,12.5\n417,81,12.0\n417,82,11.5\n417,83,11.0\n417,84,10.5\n417,85,10.0\n417,86,9.5\n417,87,9.0\n417,88,8.5\n417,89,8.0\n417,90,7.5\n417,91,7.0\n417,92,6.5\n417,93,7.0\n417,94,7.5\n417,95,8.0\n417,96,8.5\n417,97,9.0\n417,98,9.5\n417,99,10.0\n417,100,14.5\n417,101,14.0\n417,102,13.5\n417,103,13.0\n417,104,12.5\n417,105,12.0\n417,106,11.5\n417,107,11.0\n417,108,10.5\n417,109,10.0\n417,110,9.5\n417,111,9.0\n417,112,8.5\n417,113,8.0\n417,114,7.5\n417,115,7.0\n417,116,6.5\n417,117,6.0\n417,118,6.5\n417,119,7.0\n417,120,7.5\n417,121,8.0\n417,122,8.5\n417,123,9.0\n417,124,9.5\n417,125,14.0\n417,126,13.5\n417,127,13.0\n417,128,12.5\n417,129,12.0\n417,130,11.5\n417,131,11.0\n417,132,10.5\n417,133,10.0\n417,134,9.5\n417,135,9.0\n417,136,8.5\n417,137,8.0\n417,138,7.5\n417,139,7.0\n417,140,6.5\n417,141,6.0\n417,142,5.5\n417,143,6.0\n417,144,6.5\n417,145,7.0\n417,146,7.5\n417,147,8.0\n417,148,8.5\n417,149,9.0\n417,150,13.5\n417,151,13.0\n417,152,12.5\n417,153,12.0\n417,154,11.5\n417,155,11.0\n417,156,10.5\n417,157,10.0\n417,158,9.5\n417,159,9.0\n417,160,8.5\n417,161,8.0\n417,162,7.5\n417,163,7.0\n417,164,6.5\n417,165,6.0\n417,166,5.5\n417,167,5.0\n417,168,5.5\n417,169,6.0\n417,170,6.5\n417,171,7.0\n417,172,7.5\n417,173,8.0\n417,174,8.5\n417,175,13.0\n417,176,12.5\n417,177,12.0\n417,178,11.5\n417,179,11.0\n417,180,10.5\n417,181,10.0\n417,182,9.5\n417,183,9.0\n417,184,8.5\n417,185,8.0\n417,186,7.5\n417,187,7.0\n417,188,6.5\n417,189,6.0\n417,190,5.5\n417,191,5.0\n417,192,4.5\n417,193,5.0\n417,194,5.5\n417,195,6.0\n417,196,6.5\n417,197,7.0\n417,198,7.5\n417,199,8.0\n417,200,12.5\n417,201,12.0\n417,202,11.5\n417,203,11.0\n417,204,10.5\n417,205,10.0\n417,206,9.5\n417,207,9.0\n417,208,8.5\n417,209,8.0\n417,210,7.5\n417,211,7.0\n417,212,6.5\n417,213,6.0\n417,214,5.5\n417,215,5.0\n417,216,4.5\n417,217,4.0\n417,218,4.5\n417,219,5.0\n417,220,5.5\n417,221,6.0\n417,222,6.5\n417,223,7.0\n417,224,7.5\n417,225,12.0\n417,226,11.5\n417,227,11.0\n417,228,10.5\n417,229,10.0\n417,230,9.5\n417,231,9.0\n417,232,8.5\n417,233,8.0\n417,234,7.5\n417,235,7.0\n417,236,6.5\n417,237,6.0\n417,238,5.5\n417,239,5.0\n417,240,4.5\n417,241,4.0\n417,242,3.5\n417,243,4.0\n417,244,4.5\n417,245,5.0\n417,246,5.5\n417,247,6.0\n417,248,6.5\n417,249,7.0\n417,250,11.5\n417,251,11.0\n417,252,10.5\n417,253,10.0\n417,254,9.5\n417,255,9.0\n417,256,8.5\n417,257,8.0\n417,258,7.5\n417,259,7.0\n417,260,6.5\n417,261,6.0\n417,262,5.5\n417,263,5.0\n417,264,4.5\n417,265,4.0\n417,266,3.5\n417,267,3.0\n417,268,3.5\n417,269,4.0\n417,270,4.5\n417,271,5.0\n417,272,5.5\n417,273,6.0\n417,274,6.5\n417,275,11.0\n417,276,10.5\n417,277,10.0\n417,278,9.5\n417,279,9.0\n417,280,8.5\n417,281,8.0\n417,282,7.5\n417,283,7.0\n417,284,6.5\n417,285,6.0\n417,286,5.5\n417,287,5.0\n417,288,4.5\n417,289,4.0\n417,290,3.5\n417,291,3.0\n417,292,2.5\n417,293,3.0\n417,294,3.5\n417,295,4.0\n417,296,4.5\n417,297,5.0\n417,298,5.5\n417,299,6.0\n417,300,10.5\n417,301,10.0\n417,302,9.5\n417,303,9.0\n417,304,8.5\n417,305,8.0\n417,306,7.5\n417,307,7.0\n417,308,6.5\n417,309,6.0\n417,310,5.5\n417,311,5.0\n417,312,4.5\n417,313,4.0\n417,314,3.5\n417,315,3.0\n417,316,2.5\n417,317,2.0\n417,318,2.5\n417,319,3.0\n417,320,3.5\n417,321,4.0\n417,322,4.5\n417,323,5.0\n417,324,5.5\n417,325,10.0\n417,326,9.5\n417,327,9.0\n417,328,8.5\n417,329,8.0\n417,330,7.5\n417,331,7.0\n417,332,6.5\n417,333,6.0\n417,334,5.5\n417,335,5.0\n417,336,4.5\n417,337,4.0\n417,338,3.5\n417,339,3.0\n417,340,2.5\n417,341,2.0\n417,342,1.5\n417,343,2.0\n417,344,2.5\n417,345,3.0\n417,346,3.5\n417,347,4.0\n417,348,4.5\n417,349,5.0\n417,350,9.5\n417,351,9.0\n417,352,8.5\n417,353,8.0\n417,354,7.5\n417,355,7.0\n417,356,6.5\n417,357,6.0\n417,358,5.5\n417,359,5.0\n417,360,4.5\n417,361,4.0\n417,362,3.5\n417,363,3.0\n417,364,2.5\n417,365,2.0\n417,366,1.5\n417,367,1.0\n417,368,1.5\n417,369,2.0\n417,370,2.5\n417,371,3.0\n417,372,3.5\n417,373,4.0\n417,374,4.5\n417,375,9.0\n417,376,8.5\n417,377,8.0\n417,378,7.5\n417,379,7.0\n417,380,6.5\n417,381,6.0\n417,382,5.5\n417,383,5.0\n417,384,4.5\n417,385,4.0\n417,386,3.5\n417,387,3.0\n417,388,2.5\n417,389,2.0\n417,390,1.5\n417,391,1.0\n417,392,0.5\n417,393,1.0\n417,394,1.5\n417,395,2.0\n417,396,2.5\n417,397,3.0\n417,398,3.5\n417,399,4.0\n417,400,8.5\n417,401,8.0\n417,402,7.5\n417,403,7.0\n417,404,6.5\n417,405,6.0\n417,406,5.5\n417,407,5.0\n417,408,4.5\n417,409,4.0\n417,410,3.5\n417,411,3.0\n417,412,2.5\n417,413,2.0\n417,414,1.5\n417,415,1.0\n417,416,0.5\n417,417,0\n417,418,0.5\n417,419,1.0\n417,420,1.5\n417,421,2.0\n417,422,2.5\n417,423,3.0\n417,424,3.5\n417,425,9.0\n417,426,8.5\n417,427,8.0\n417,428,7.5\n417,429,7.0\n417,430,6.5\n417,431,6.0\n417,432,5.5\n417,433,5.0\n417,434,4.5\n417,435,4.0\n417,436,3.5\n417,437,3.0\n417,438,2.5\n417,439,2.0\n417,440,1.5\n417,441,1.0\n417,442,0.5\n417,443,1.0\n417,444,1.5\n417,445,2.0\n417,446,2.5\n417,447,3.0\n417,448,3.5\n417,449,4.0\n417,450,9.5\n417,451,9.0\n417,452,8.5\n417,453,8.0\n417,454,7.5\n417,455,7.0\n417,456,6.5\n417,457,6.0\n417,458,5.5\n417,459,5.0\n417,460,4.5\n417,461,4.0\n417,462,3.5\n417,463,3.0\n417,464,2.5\n417,465,2.0\n417,466,1.5\n417,467,1.0\n417,468,1.5\n417,469,2.0\n417,470,2.5\n417,471,3.0\n417,472,3.5\n417,473,4.0\n417,474,4.5\n417,475,10.0\n417,476,9.5\n417,477,9.0\n417,478,8.5\n417,479,8.0\n417,480,7.5\n417,481,7.0\n417,482,6.5\n417,483,6.0\n417,484,5.5\n417,485,5.0\n417,486,4.5\n417,487,4.0\n417,488,3.5\n417,489,3.0\n417,490,2.5\n417,491,2.0\n417,492,1.5\n417,493,2.0\n417,494,2.5\n417,495,3.0\n417,496,3.5\n417,497,4.0\n417,498,4.5\n417,499,5.0\n417,500,10.5\n417,501,10.0\n417,502,9.5\n417,503,9.0\n417,504,8.5\n417,505,8.0\n417,506,7.5\n417,507,7.0\n417,508,6.5\n417,509,6.0\n417,510,5.5\n417,511,5.0\n417,512,4.5\n417,513,4.0\n417,514,3.5\n417,515,3.0\n417,516,2.5\n417,517,2.0\n417,518,2.5\n417,519,3.0\n417,520,3.5\n417,521,4.0\n417,522,4.5\n417,523,5.0\n417,524,5.5\n417,525,11.0\n417,526,10.5\n417,527,10.0\n417,528,9.5\n417,529,9.0\n417,530,8.5\n417,531,8.0\n417,532,7.5\n417,533,7.0\n417,534,6.5\n417,535,6.0\n417,536,5.5\n417,537,5.0\n417,538,4.5\n417,539,4.0\n417,540,3.5\n417,541,3.0\n417,542,2.5\n417,543,3.0\n417,544,3.5\n417,545,4.0\n417,546,4.5\n417,547,5.0\n417,548,5.5\n417,549,6.0\n417,550,11.5\n417,551,11.0\n417,552,10.5\n417,553,10.0\n417,554,9.5\n417,555,9.0\n417,556,8.5\n417,557,8.0\n417,558,7.5\n417,559,7.0\n417,560,6.5\n417,561,6.0\n417,562,5.5\n417,563,5.0\n417,564,4.5\n417,565,4.0\n417,566,3.5\n417,567,3.0\n417,568,3.5\n417,569,4.0\n417,570,4.5\n417,571,5.0\n417,572,5.5\n417,573,6.0\n417,574,6.5\n417,575,12.0\n417,576,11.5\n417,577,11.0\n417,578,10.5\n417,579,10.0\n417,580,9.5\n417,581,9.0\n417,582,8.5\n417,583,8.0\n417,584,7.5\n417,585,7.0\n417,586,6.5\n417,587,6.0\n417,588,5.5\n417,589,5.0\n417,590,4.5\n417,591,4.0\n417,592,3.5\n417,593,4.0\n417,594,4.5\n417,595,5.0\n417,596,5.5\n417,597,6.0\n417,598,6.5\n417,599,7.0\n417,600,12.5\n417,601,12.0\n417,602,11.5\n417,603,11.0\n417,604,10.5\n417,605,10.0\n417,606,9.5\n417,607,9.0\n417,608,8.5\n417,609,8.0\n417,610,7.5\n417,611,7.0\n417,612,6.5\n417,613,6.0\n417,614,5.5\n417,615,5.0\n417,616,4.5\n417,617,4.0\n417,618,4.5\n417,619,5.0\n417,620,5.5\n417,621,6.0\n417,622,6.5\n417,623,7.0\n417,624,7.5\n418,0,17.0\n418,1,16.5\n418,2,16.0\n418,3,15.5\n418,4,15.0\n418,5,14.5\n418,6,14.0\n418,7,13.5\n418,8,13.0\n418,9,12.5\n418,10,12.0\n418,11,11.5\n418,12,11.0\n418,13,10.5\n418,14,10.0\n418,15,9.5\n418,16,9.0\n418,17,8.5\n418,18,8.0\n418,19,8.5\n418,20,9.0\n418,21,9.5\n418,22,10.0\n418,23,10.5\n418,24,11.0\n418,25,16.5\n418,26,16.0\n418,27,15.5\n418,28,15.0\n418,29,14.5\n418,30,14.0\n418,31,13.5\n418,32,13.0\n418,33,12.5\n418,34,12.0\n418,35,11.5\n418,36,11.0\n418,37,10.5\n418,38,10.0\n418,39,9.5\n418,40,9.0\n418,41,8.5\n418,42,8.0\n418,43,7.5\n418,44,8.0\n418,45,8.5\n418,46,9.0\n418,47,9.5\n418,48,10.0\n418,49,10.5\n418,50,16.0\n418,51,15.5\n418,52,15.0\n418,53,14.5\n418,54,14.0\n418,55,13.5\n418,56,13.0\n418,57,12.5\n418,58,12.0\n418,59,11.5\n418,60,11.0\n418,61,10.5\n418,62,10.0\n418,63,9.5\n418,64,9.0\n418,65,8.5\n418,66,8.0\n418,67,7.5\n418,68,7.0\n418,69,7.5\n418,70,8.0\n418,71,8.5\n418,72,9.0\n418,73,9.5\n418,74,10.0\n418,75,15.5\n418,76,15.0\n418,77,14.5\n418,78,14.0\n418,79,13.5\n418,80,13.0\n418,81,12.5\n418,82,12.0\n418,83,11.5\n418,84,11.0\n418,85,10.5\n418,86,10.0\n418,87,9.5\n418,88,9.0\n418,89,8.5\n418,90,8.0\n418,91,7.5\n418,92,7.0\n418,93,6.5\n418,94,7.0\n418,95,7.5\n418,96,8.0\n418,97,8.5\n418,98,9.0\n418,99,9.5\n418,100,15.0\n418,101,14.5\n418,102,14.0\n418,103,13.5\n418,104,13.0\n418,105,12.5\n418,106,12.0\n418,107,11.5\n418,108,11.0\n418,109,10.5\n418,110,10.0\n418,111,9.5\n418,112,9.0\n418,113,8.5\n418,114,8.0\n418,115,7.5\n418,116,7.0\n418,117,6.5\n418,118,6.0\n418,119,6.5\n418,120,7.0\n418,121,7.5\n418,122,8.0\n418,123,8.5\n418,124,9.0\n418,125,14.5\n418,126,14.0\n418,127,13.5\n418,128,13.0\n418,129,12.5\n418,130,12.0\n418,131,11.5\n418,132,11.0\n418,133,10.5\n418,134,10.0\n418,135,9.5\n418,136,9.0\n418,137,8.5\n418,138,8.0\n418,139,7.5\n418,140,7.0\n418,141,6.5\n418,142,6.0\n418,143,5.5\n418,144,6.0\n418,145,6.5\n418,146,7.0\n418,147,7.5\n418,148,8.0\n418,149,8.5\n418,150,14.0\n418,151,13.5\n418,152,13.0\n418,153,12.5\n418,154,12.0\n418,155,11.5\n418,156,11.0\n418,157,10.5\n418,158,10.0\n418,159,9.5\n418,160,9.0\n418,161,8.5\n418,162,8.0\n418,163,7.5\n418,164,7.0\n418,165,6.5\n418,166,6.0\n418,167,5.5\n418,168,5.0\n418,169,5.5\n418,170,6.0\n418,171,6.5\n418,172,7.0\n418,173,7.5\n418,174,8.0\n418,175,13.5\n418,176,13.0\n418,177,12.5\n418,178,12.0\n418,179,11.5\n418,180,11.0\n418,181,10.5\n418,182,10.0\n418,183,9.5\n418,184,9.0\n418,185,8.5\n418,186,8.0\n418,187,7.5\n418,188,7.0\n418,189,6.5\n418,190,6.0\n418,191,5.5\n418,192,5.0\n418,193,4.5\n418,194,5.0\n418,195,5.5\n418,196,6.0\n418,197,6.5\n418,198,7.0\n418,199,7.5\n418,200,13.0\n418,201,12.5\n418,202,12.0\n418,203,11.5\n418,204,11.0\n418,205,10.5\n418,206,10.0\n418,207,9.5\n418,208,9.0\n418,209,8.5\n418,210,8.0\n418,211,7.5\n418,212,7.0\n418,213,6.5\n418,214,6.0\n418,215,5.5\n418,216,5.0\n418,217,4.5\n418,218,4.0\n418,219,4.5\n418,220,5.0\n418,221,5.5\n418,222,6.0\n418,223,6.5\n418,224,7.0\n418,225,12.5\n418,226,12.0\n418,227,11.5\n418,228,11.0\n418,229,10.5\n418,230,10.0\n418,231,9.5\n418,232,9.0\n418,233,8.5\n418,234,8.0\n418,235,7.5\n418,236,7.0\n418,237,6.5\n418,238,6.0\n418,239,5.5\n418,240,5.0\n418,241,4.5\n418,242,4.0\n418,243,3.5\n418,244,4.0\n418,245,4.5\n418,246,5.0\n418,247,5.5\n418,248,6.0\n418,249,6.5\n418,250,12.0\n418,251,11.5\n418,252,11.0\n418,253,10.5\n418,254,10.0\n418,255,9.5\n418,256,9.0\n418,257,8.5\n418,258,8.0\n418,259,7.5\n418,260,7.0\n418,261,6.5\n418,262,6.0\n418,263,5.5\n418,264,5.0\n418,265,4.5\n418,266,4.0\n418,267,3.5\n418,268,3.0\n418,269,3.5\n418,270,4.0\n418,271,4.5\n418,272,5.0\n418,273,5.5\n418,274,6.0\n418,275,11.5\n418,276,11.0\n418,277,10.5\n418,278,10.0\n418,279,9.5\n418,280,9.0\n418,281,8.5\n418,282,8.0\n418,283,7.5\n418,284,7.0\n418,285,6.5\n418,286,6.0\n418,287,5.5\n418,288,5.0\n418,289,4.5\n418,290,4.0\n418,291,3.5\n418,292,3.0\n418,293,2.5\n418,294,3.0\n418,295,3.5\n418,296,4.0\n418,297,4.5\n418,298,5.0\n418,299,5.5\n418,300,11.0\n418,301,10.5\n418,302,10.0\n418,303,9.5\n418,304,9.0\n418,305,8.5\n418,306,8.0\n418,307,7.5\n418,308,7.0\n418,309,6.5\n418,310,6.0\n418,311,5.5\n418,312,5.0\n418,313,4.5\n418,314,4.0\n418,315,3.5\n418,316,3.0\n418,317,2.5\n418,318,2.0\n418,319,2.5\n418,320,3.0\n418,321,3.5\n418,322,4.0\n418,323,4.5\n418,324,5.0\n418,325,10.5\n418,326,10.0\n418,327,9.5\n418,328,9.0\n418,329,8.5\n418,330,8.0\n418,331,7.5\n418,332,7.0\n418,333,6.5\n418,334,6.0\n418,335,5.5\n418,336,5.0\n418,337,4.5\n418,338,4.0\n418,339,3.5\n418,340,3.0\n418,341,2.5\n418,342,2.0\n418,343,1.5\n418,344,2.0\n418,345,2.5\n418,346,3.0\n418,347,3.5\n418,348,4.0\n418,349,4.5\n418,350,10.0\n418,351,9.5\n418,352,9.0\n418,353,8.5\n418,354,8.0\n418,355,7.5\n418,356,7.0\n418,357,6.5\n418,358,6.0\n418,359,5.5\n418,360,5.0\n418,361,4.5\n418,362,4.0\n418,363,3.5\n418,364,3.0\n418,365,2.5\n418,366,2.0\n418,367,1.5\n418,368,1.0\n418,369,1.5\n418,370,2.0\n418,371,2.5\n418,372,3.0\n418,373,3.5\n418,374,4.0\n418,375,9.5\n418,376,9.0\n418,377,8.5\n418,378,8.0\n418,379,7.5\n418,380,7.0\n418,381,6.5\n418,382,6.0\n418,383,5.5\n418,384,5.0\n418,385,4.5\n418,386,4.0\n418,387,3.5\n418,388,3.0\n418,389,2.5\n418,390,2.0\n418,391,1.5\n418,392,1.0\n418,393,0.5\n418,394,1.0\n418,395,1.5\n418,396,2.0\n418,397,2.5\n418,398,3.0\n418,399,3.5\n418,400,9.0\n418,401,8.5\n418,402,8.0\n418,403,7.5\n418,404,7.0\n418,405,6.5\n418,406,6.0\n418,407,5.5\n418,408,5.0\n418,409,4.5\n418,410,4.0\n418,411,3.5\n418,412,3.0\n418,413,2.5\n418,414,2.0\n418,415,1.5\n418,416,1.0\n418,417,0.5\n418,418,0\n418,419,0.5\n418,420,1.0\n418,421,1.5\n418,422,2.0\n418,423,2.5\n418,424,3.0\n418,425,9.5\n418,426,9.0\n418,427,8.5\n418,428,8.0\n418,429,7.5\n418,430,7.0\n418,431,6.5\n418,432,6.0\n418,433,5.5\n418,434,5.0\n418,435,4.5\n418,436,4.0\n418,437,3.5\n418,438,3.0\n418,439,2.5\n418,440,2.0\n418,441,1.5\n418,442,1.0\n418,443,0.5\n418,444,1.0\n418,445,1.5\n418,446,2.0\n418,447,2.5\n418,448,3.0\n418,449,3.5\n418,450,10.0\n418,451,9.5\n418,452,9.0\n418,453,8.5\n418,454,8.0\n418,455,7.5\n418,456,7.0\n418,457,6.5\n418,458,6.0\n418,459,5.5\n418,460,5.0\n418,461,4.5\n418,462,4.0\n418,463,3.5\n418,464,3.0\n418,465,2.5\n418,466,2.0\n418,467,1.5\n418,468,1.0\n418,469,1.5\n418,470,2.0\n418,471,2.5\n418,472,3.0\n418,473,3.5\n418,474,4.0\n418,475,10.5\n418,476,10.0\n418,477,9.5\n418,478,9.0\n418,479,8.5\n418,480,8.0\n418,481,7.5\n418,482,7.0\n418,483,6.5\n418,484,6.0\n418,485,5.5\n418,486,5.0\n418,487,4.5\n418,488,4.0\n418,489,3.5\n418,490,3.0\n418,491,2.5\n418,492,2.0\n418,493,1.5\n418,494,2.0\n418,495,2.5\n418,496,3.0\n418,497,3.5\n418,498,4.0\n418,499,4.5\n418,500,11.0\n418,501,10.5\n418,502,10.0\n418,503,9.5\n418,504,9.0\n418,505,8.5\n418,506,8.0\n418,507,7.5\n418,508,7.0\n418,509,6.5\n418,510,6.0\n418,511,5.5\n418,512,5.0\n418,513,4.5\n418,514,4.0\n418,515,3.5\n418,516,3.0\n418,517,2.5\n418,518,2.0\n418,519,2.5\n418,520,3.0\n418,521,3.5\n418,522,4.0\n418,523,4.5\n418,524,5.0\n418,525,11.5\n418,526,11.0\n418,527,10.5\n418,528,10.0\n418,529,9.5\n418,530,9.0\n418,531,8.5\n418,532,8.0\n418,533,7.5\n418,534,7.0\n418,535,6.5\n418,536,6.0\n418,537,5.5\n418,538,5.0\n418,539,4.5\n418,540,4.0\n418,541,3.5\n418,542,3.0\n418,543,2.5\n418,544,3.0\n418,545,3.5\n418,546,4.0\n418,547,4.5\n418,548,5.0\n418,549,5.5\n418,550,12.0\n418,551,11.5\n418,552,11.0\n418,553,10.5\n418,554,10.0\n418,555,9.5\n418,556,9.0\n418,557,8.5\n418,558,8.0\n418,559,7.5\n418,560,7.0\n418,561,6.5\n418,562,6.0\n418,563,5.5\n418,564,5.0\n418,565,4.5\n418,566,4.0\n418,567,3.5\n418,568,3.0\n418,569,3.5\n418,570,4.0\n418,571,4.5\n418,572,5.0\n418,573,5.5\n418,574,6.0\n418,575,12.5\n418,576,12.0\n418,577,11.5\n418,578,11.0\n418,579,10.5\n418,580,10.0\n418,581,9.5\n418,582,9.0\n418,583,8.5\n418,584,8.0\n418,585,7.5\n418,586,7.0\n418,587,6.5\n418,588,6.0\n418,589,5.5\n418,590,5.0\n418,591,4.5\n418,592,4.0\n418,593,3.5\n418,594,4.0\n418,595,4.5\n418,596,5.0\n418,597,5.5\n418,598,6.0\n418,599,6.5\n418,600,13.0\n418,601,12.5\n418,602,12.0\n418,603,11.5\n418,604,11.0\n418,605,10.5\n418,606,10.0\n418,607,9.5\n418,608,9.0\n418,609,8.5\n418,610,8.0\n418,611,7.5\n418,612,7.0\n418,613,6.5\n418,614,6.0\n418,615,5.5\n418,616,5.0\n418,617,4.5\n418,618,4.0\n418,619,4.5\n418,620,5.0\n418,621,5.5\n418,622,6.0\n418,623,6.5\n418,624,7.0\n419,0,17.5\n419,1,17.0\n419,2,16.5\n419,3,16.0\n419,4,15.5\n419,5,15.0\n419,6,14.5\n419,7,14.0\n419,8,13.5\n419,9,13.0\n419,10,12.5\n419,11,12.0\n419,12,11.5\n419,13,11.0\n419,14,10.5\n419,15,10.0\n419,16,9.5\n419,17,9.0\n419,18,8.5\n419,19,8.0\n419,20,8.5\n419,21,9.0\n419,22,9.5\n419,23,10.0\n419,24,10.5\n419,25,17.0\n419,26,16.5\n419,27,16.0\n419,28,15.5\n419,29,15.0\n419,30,14.5\n419,31,14.0\n419,32,13.5\n419,33,13.0\n419,34,12.5\n419,35,12.0\n419,36,11.5\n419,37,11.0\n419,38,10.5\n419,39,10.0\n419,40,9.5\n419,41,9.0\n419,42,8.5\n419,43,8.0\n419,44,7.5\n419,45,8.0\n419,46,8.5\n419,47,9.0\n419,48,9.5\n419,49,10.0\n419,50,16.5\n419,51,16.0\n419,52,15.5\n419,53,15.0\n419,54,14.5\n419,55,14.0\n419,56,13.5\n419,57,13.0\n419,58,12.5\n419,59,12.0\n419,60,11.5\n419,61,11.0\n419,62,10.5\n419,63,10.0\n419,64,9.5\n419,65,9.0\n419,66,8.5\n419,67,8.0\n419,68,7.5\n419,69,7.0\n419,70,7.5\n419,71,8.0\n419,72,8.5\n419,73,9.0\n419,74,9.5\n419,75,16.0\n419,76,15.5\n419,77,15.0\n419,78,14.5\n419,79,14.0\n419,80,13.5\n419,81,13.0\n419,82,12.5\n419,83,12.0\n419,84,11.5\n419,85,11.0\n419,86,10.5\n419,87,10.0\n419,88,9.5\n419,89,9.0\n419,90,8.5\n419,91,8.0\n419,92,7.5\n419,93,7.0\n419,94,6.5\n419,95,7.0\n419,96,7.5\n419,97,8.0\n419,98,8.5\n419,99,9.0\n419,100,15.5\n419,101,15.0\n419,102,14.5\n419,103,14.0\n419,104,13.5\n419,105,13.0\n419,106,12.5\n419,107,12.0\n419,108,11.5\n419,109,11.0\n419,110,10.5\n419,111,10.0\n419,112,9.5\n419,113,9.0\n419,114,8.5\n419,115,8.0\n419,116,7.5\n419,117,7.0\n419,118,6.5\n419,119,6.0\n419,120,6.5\n419,121,7.0\n419,122,7.5\n419,123,8.0\n419,124,8.5\n419,125,15.0\n419,126,14.5\n419,127,14.0\n419,128,13.5\n419,129,13.0\n419,130,12.5\n419,131,12.0\n419,132,11.5\n419,133,11.0\n419,134,10.5\n419,135,10.0\n419,136,9.5\n419,137,9.0\n419,138,8.5\n419,139,8.0\n419,140,7.5\n419,141,7.0\n419,142,6.5\n419,143,6.0\n419,144,5.5\n419,145,6.0\n419,146,6.5\n419,147,7.0\n419,148,7.5\n419,149,8.0\n419,150,14.5\n419,151,14.0\n419,152,13.5\n419,153,13.0\n419,154,12.5\n419,155,12.0\n419,156,11.5\n419,157,11.0\n419,158,10.5\n419,159,10.0\n419,160,9.5\n419,161,9.0\n419,162,8.5\n419,163,8.0\n419,164,7.5\n419,165,7.0\n419,166,6.5\n419,167,6.0\n419,168,5.5\n419,169,5.0\n419,170,5.5\n419,171,6.0\n419,172,6.5\n419,173,7.0\n419,174,7.5\n419,175,14.0\n419,176,13.5\n419,177,13.0\n419,178,12.5\n419,179,12.0\n419,180,11.5\n419,181,11.0\n419,182,10.5\n419,183,10.0\n419,184,9.5\n419,185,9.0\n419,186,8.5\n419,187,8.0\n419,188,7.5\n419,189,7.0\n419,190,6.5\n419,191,6.0\n419,192,5.5\n419,193,5.0\n419,194,4.5\n419,195,5.0\n419,196,5.5\n419,197,6.0\n419,198,6.5\n419,199,7.0\n419,200,13.5\n419,201,13.0\n419,202,12.5\n419,203,12.0\n419,204,11.5\n419,205,11.0\n419,206,10.5\n419,207,10.0\n419,208,9.5\n419,209,9.0\n419,210,8.5\n419,211,8.0\n419,212,7.5\n419,213,7.0\n419,214,6.5\n419,215,6.0\n419,216,5.5\n419,217,5.0\n419,218,4.5\n419,219,4.0\n419,220,4.5\n419,221,5.0\n419,222,5.5\n419,223,6.0\n419,224,6.5\n419,225,13.0\n419,226,12.5\n419,227,12.0\n419,228,11.5\n419,229,11.0\n419,230,10.5\n419,231,10.0\n419,232,9.5\n419,233,9.0\n419,234,8.5\n419,235,8.0\n419,236,7.5\n419,237,7.0\n419,238,6.5\n419,239,6.0\n419,240,5.5\n419,241,5.0\n419,242,4.5\n419,243,4.0\n419,244,3.5\n419,245,4.0\n419,246,4.5\n419,247,5.0\n419,248,5.5\n419,249,6.0\n419,250,12.5\n419,251,12.0\n419,252,11.5\n419,253,11.0\n419,254,10.5\n419,255,10.0\n419,256,9.5\n419,257,9.0\n419,258,8.5\n419,259,8.0\n419,260,7.5\n419,261,7.0\n419,262,6.5\n419,263,6.0\n419,264,5.5\n419,265,5.0\n419,266,4.5\n419,267,4.0\n419,268,3.5\n419,269,3.0\n419,270,3.5\n419,271,4.0\n419,272,4.5\n419,273,5.0\n419,274,5.5\n419,275,12.0\n419,276,11.5\n419,277,11.0\n419,278,10.5\n419,279,10.0\n419,280,9.5\n419,281,9.0\n419,282,8.5\n419,283,8.0\n419,284,7.5\n419,285,7.0\n419,286,6.5\n419,287,6.0\n419,288,5.5\n419,289,5.0\n419,290,4.5\n419,291,4.0\n419,292,3.5\n419,293,3.0\n419,294,2.5\n419,295,3.0\n419,296,3.5\n419,297,4.0\n419,298,4.5\n419,299,5.0\n419,300,11.5\n419,301,11.0\n419,302,10.5\n419,303,10.0\n419,304,9.5\n419,305,9.0\n419,306,8.5\n419,307,8.0\n419,308,7.5\n419,309,7.0\n419,310,6.5\n419,311,6.0\n419,312,5.5\n419,313,5.0\n419,314,4.5\n419,315,4.0\n419,316,3.5\n419,317,3.0\n419,318,2.5\n419,319,2.0\n419,320,2.5\n419,321,3.0\n419,322,3.5\n419,323,4.0\n419,324,4.5\n419,325,11.0\n419,326,10.5\n419,327,10.0\n419,328,9.5\n419,329,9.0\n419,330,8.5\n419,331,8.0\n419,332,7.5\n419,333,7.0\n419,334,6.5\n419,335,6.0\n419,336,5.5\n419,337,5.0\n419,338,4.5\n419,339,4.0\n419,340,3.5\n419,341,3.0\n419,342,2.5\n419,343,2.0\n419,344,1.5\n419,345,2.0\n419,346,2.5\n419,347,3.0\n419,348,3.5\n419,349,4.0\n419,350,10.5\n419,351,10.0\n419,352,9.5\n419,353,9.0\n419,354,8.5\n419,355,8.0\n419,356,7.5\n419,357,7.0\n419,358,6.5\n419,359,6.0\n419,360,5.5\n419,361,5.0\n419,362,4.5\n419,363,4.0\n419,364,3.5\n419,365,3.0\n419,366,2.5\n419,367,2.0\n419,368,1.5\n419,369,1.0\n419,370,1.5\n419,371,2.0\n419,372,2.5\n419,373,3.0\n419,374,3.5\n419,375,10.0\n419,376,9.5\n419,377,9.0\n419,378,8.5\n419,379,8.0\n419,380,7.5\n419,381,7.0\n419,382,6.5\n419,383,6.0\n419,384,5.5\n419,385,5.0\n419,386,4.5\n419,387,4.0\n419,388,3.5\n419,389,3.0\n419,390,2.5\n419,391,2.0\n419,392,1.5\n419,393,1.0\n419,394,0.5\n419,395,1.0\n419,396,1.5\n419,397,2.0\n419,398,2.5\n419,399,3.0\n419,400,9.5\n419,401,9.0\n419,402,8.5\n419,403,8.0\n419,404,7.5\n419,405,7.0\n419,406,6.5\n419,407,6.0\n419,408,5.5\n419,409,5.0\n419,410,4.5\n419,411,4.0\n419,412,3.5\n419,413,3.0\n419,414,2.5\n419,415,2.0\n419,416,1.5\n419,417,1.0\n419,418,0.5\n419,419,0\n419,420,0.5\n419,421,1.0\n419,422,1.5\n419,423,2.0\n419,424,2.5\n419,425,10.0\n419,426,9.5\n419,427,9.0\n419,428,8.5\n419,429,8.0\n419,430,7.5\n419,431,7.0\n419,432,6.5\n419,433,6.0\n419,434,5.5\n419,435,5.0\n419,436,4.5\n419,437,4.0\n419,438,3.5\n419,439,3.0\n419,440,2.5\n419,441,2.0\n419,442,1.5\n419,443,1.0\n419,444,0.5\n419,445,1.0\n419,446,1.5\n419,447,2.0\n419,448,2.5\n419,449,3.0\n419,450,10.5\n419,451,10.0\n419,452,9.5\n419,453,9.0\n419,454,8.5\n419,455,8.0\n419,456,7.5\n419,457,7.0\n419,458,6.5\n419,459,6.0\n419,460,5.5\n419,461,5.0\n419,462,4.5\n419,463,4.0\n419,464,3.5\n419,465,3.0\n419,466,2.5\n419,467,2.0\n419,468,1.5\n419,469,1.0\n419,470,1.5\n419,471,2.0\n419,472,2.5\n419,473,3.0\n419,474,3.5\n419,475,11.0\n419,476,10.5\n419,477,10.0\n419,478,9.5\n419,479,9.0\n419,480,8.5\n419,481,8.0\n419,482,7.5\n419,483,7.0\n419,484,6.5\n419,485,6.0\n419,486,5.5\n419,487,5.0\n419,488,4.5\n419,489,4.0\n419,490,3.5\n419,491,3.0\n419,492,2.5\n419,493,2.0\n419,494,1.5\n419,495,2.0\n419,496,2.5\n419,497,3.0\n419,498,3.5\n419,499,4.0\n419,500,11.5\n419,501,11.0\n419,502,10.5\n419,503,10.0\n419,504,9.5\n419,505,9.0\n419,506,8.5\n419,507,8.0\n419,508,7.5\n419,509,7.0\n419,510,6.5\n419,511,6.0\n419,512,5.5\n419,513,5.0\n419,514,4.5\n419,515,4.0\n419,516,3.5\n419,517,3.0\n419,518,2.5\n419,519,2.0\n419,520,2.5\n419,521,3.0\n419,522,3.5\n419,523,4.0\n419,524,4.5\n419,525,12.0\n419,526,11.5\n419,527,11.0\n419,528,10.5\n419,529,10.0\n419,530,9.5\n419,531,9.0\n419,532,8.5\n419,533,8.0\n419,534,7.5\n419,535,7.0\n419,536,6.5\n419,537,6.0\n419,538,5.5\n419,539,5.0\n419,540,4.5\n419,541,4.0\n419,542,3.5\n419,543,3.0\n419,544,2.5\n419,545,3.0\n419,546,3.5\n419,547,4.0\n419,548,4.5\n419,549,5.0\n419,550,12.5\n419,551,12.0\n419,552,11.5\n419,553,11.0\n419,554,10.5\n419,555,10.0\n419,556,9.5\n419,557,9.0\n419,558,8.5\n419,559,8.0\n419,560,7.5\n419,561,7.0\n419,562,6.5\n419,563,6.0\n419,564,5.5\n419,565,5.0\n419,566,4.5\n419,567,4.0\n419,568,3.5\n419,569,3.0\n419,570,3.5\n419,571,4.0\n419,572,4.5\n419,573,5.0\n419,574,5.5\n419,575,13.0\n419,576,12.5\n419,577,12.0\n419,578,11.5\n419,579,11.0\n419,580,10.5\n419,581,10.0\n419,582,9.5\n419,583,9.0\n419,584,8.5\n419,585,8.0\n419,586,7.5\n419,587,7.0\n419,588,6.5\n419,589,6.0\n419,590,5.5\n419,591,5.0\n419,592,4.5\n419,593,4.0\n419,594,3.5\n419,595,4.0\n419,596,4.5\n419,597,5.0\n419,598,5.5\n419,599,6.0\n419,600,13.5\n419,601,13.0\n419,602,12.5\n419,603,12.0\n419,604,11.5\n419,605,11.0\n419,606,10.5\n419,607,10.0\n419,608,9.5\n419,609,9.0\n419,610,8.5\n419,611,8.0\n419,612,7.5\n419,613,7.0\n419,614,6.5\n419,615,6.0\n419,616,5.5\n419,617,5.0\n419,618,4.5\n419,619,4.0\n419,620,4.5\n419,621,5.0\n419,622,5.5\n419,623,6.0\n419,624,6.5\n420,0,18.0\n420,1,17.5\n420,2,17.0\n420,3,16.5\n420,4,16.0\n420,5,15.5\n420,6,15.0\n420,7,14.5\n420,8,14.0\n420,9,13.5\n420,10,13.0\n420,11,12.5\n420,12,12.0\n420,13,11.5\n420,14,11.0\n420,15,10.5\n420,16,10.0\n420,17,9.5\n420,18,9.0\n420,19,8.5\n420,20,8.0\n420,21,8.5\n420,22,9.0\n420,23,9.5\n420,24,10.0\n420,25,17.5\n420,26,17.0\n420,27,16.5\n420,28,16.0\n420,29,15.5\n420,30,15.0\n420,31,14.5\n420,32,14.0\n420,33,13.5\n420,34,13.0\n420,35,12.5\n420,36,12.0\n420,37,11.5\n420,38,11.0\n420,39,10.5\n420,40,10.0\n420,41,9.5\n420,42,9.0\n420,43,8.5\n420,44,8.0\n420,45,7.5\n420,46,8.0\n420,47,8.5\n420,48,9.0\n420,49,9.5\n420,50,17.0\n420,51,16.5\n420,52,16.0\n420,53,15.5\n420,54,15.0\n420,55,14.5\n420,56,14.0\n420,57,13.5\n420,58,13.0\n420,59,12.5\n420,60,12.0\n420,61,11.5\n420,62,11.0\n420,63,10.5\n420,64,10.0\n420,65,9.5\n420,66,9.0\n420,67,8.5\n420,68,8.0\n420,69,7.5\n420,70,7.0\n420,71,7.5\n420,72,8.0\n420,73,8.5\n420,74,9.0\n420,75,16.5\n420,76,16.0\n420,77,15.5\n420,78,15.0\n420,79,14.5\n420,80,14.0\n420,81,13.5\n420,82,13.0\n420,83,12.5\n420,84,12.0\n420,85,11.5\n420,86,11.0\n420,87,10.5\n420,88,10.0\n420,89,9.5\n420,90,9.0\n420,91,8.5\n420,92,8.0\n420,93,7.5\n420,94,7.0\n420,95,6.5\n420,96,7.0\n420,97,7.5\n420,98,8.0\n420,99,8.5\n420,100,16.0\n420,101,15.5\n420,102,15.0\n420,103,14.5\n420,104,14.0\n420,105,13.5\n420,106,13.0\n420,107,12.5\n420,108,12.0\n420,109,11.5\n420,110,11.0\n420,111,10.5\n420,112,10.0\n420,113,9.5\n420,114,9.0\n420,115,8.5\n420,116,8.0\n420,117,7.5\n420,118,7.0\n420,119,6.5\n420,120,6.0\n420,121,6.5\n420,122,7.0\n420,123,7.5\n420,124,8.0\n420,125,15.5\n420,126,15.0\n420,127,14.5\n420,128,14.0\n420,129,13.5\n420,130,13.0\n420,131,12.5\n420,132,12.0\n420,133,11.5\n420,134,11.0\n420,135,10.5\n420,136,10.0\n420,137,9.5\n420,138,9.0\n420,139,8.5\n420,140,8.0\n420,141,7.5\n420,142,7.0\n420,143,6.5\n420,144,6.0\n420,145,5.5\n420,146,6.0\n420,147,6.5\n420,148,7.0\n420,149,7.5\n420,150,15.0\n420,151,14.5\n420,152,14.0\n420,153,13.5\n420,154,13.0\n420,155,12.5\n420,156,12.0\n420,157,11.5\n420,158,11.0\n420,159,10.5\n420,160,10.0\n420,161,9.5\n420,162,9.0\n420,163,8.5\n420,164,8.0\n420,165,7.5\n420,166,7.0\n420,167,6.5\n420,168,6.0\n420,169,5.5\n420,170,5.0\n420,171,5.5\n420,172,6.0\n420,173,6.5\n420,174,7.0\n420,175,14.5\n420,176,14.0\n420,177,13.5\n420,178,13.0\n420,179,12.5\n420,180,12.0\n420,181,11.5\n420,182,11.0\n420,183,10.5\n420,184,10.0\n420,185,9.5\n420,186,9.0\n420,187,8.5\n420,188,8.0\n420,189,7.5\n420,190,7.0\n420,191,6.5\n420,192,6.0\n420,193,5.5\n420,194,5.0\n420,195,4.5\n420,196,5.0\n420,197,5.5\n420,198,6.0\n420,199,6.5\n420,200,14.0\n420,201,13.5\n420,202,13.0\n420,203,12.5\n420,204,12.0\n420,205,11.5\n420,206,11.0\n420,207,10.5\n420,208,10.0\n420,209,9.5\n420,210,9.0\n420,211,8.5\n420,212,8.0\n420,213,7.5\n420,214,7.0\n420,215,6.5\n420,216,6.0\n420,217,5.5\n420,218,5.0\n420,219,4.5\n420,220,4.0\n420,221,4.5\n420,222,5.0\n420,223,5.5\n420,224,6.0\n420,225,13.5\n420,226,13.0\n420,227,12.5\n420,228,12.0\n420,229,11.5\n420,230,11.0\n420,231,10.5\n420,232,10.0\n420,233,9.5\n420,234,9.0\n420,235,8.5\n420,236,8.0\n420,237,7.5\n420,238,7.0\n420,239,6.5\n420,240,6.0\n420,241,5.5\n420,242,5.0\n420,243,4.5\n420,244,4.0\n420,245,3.5\n420,246,4.0\n420,247,4.5\n420,248,5.0\n420,249,5.5\n420,250,13.0\n420,251,12.5\n420,252,12.0\n420,253,11.5\n420,254,11.0\n420,255,10.5\n420,256,10.0\n420,257,9.5\n420,258,9.0\n420,259,8.5\n420,260,8.0\n420,261,7.5\n420,262,7.0\n420,263,6.5\n420,264,6.0\n420,265,5.5\n420,266,5.0\n420,267,4.5\n420,268,4.0\n420,269,3.5\n420,270,3.0\n420,271,3.5\n420,272,4.0\n420,273,4.5\n420,274,5.0\n420,275,12.5\n420,276,12.0\n420,277,11.5\n420,278,11.0\n420,279,10.5\n420,280,10.0\n420,281,9.5\n420,282,9.0\n420,283,8.5\n420,284,8.0\n420,285,7.5\n420,286,7.0\n420,287,6.5\n420,288,6.0\n420,289,5.5\n420,290,5.0\n420,291,4.5\n420,292,4.0\n420,293,3.5\n420,294,3.0\n420,295,2.5\n420,296,3.0\n420,297,3.5\n420,298,4.0\n420,299,4.5\n420,300,12.0\n420,301,11.5\n420,302,11.0\n420,303,10.5\n420,304,10.0\n420,305,9.5\n420,306,9.0\n420,307,8.5\n420,308,8.0\n420,309,7.5\n420,310,7.0\n420,311,6.5\n420,312,6.0\n420,313,5.5\n420,314,5.0\n420,315,4.5\n420,316,4.0\n420,317,3.5\n420,318,3.0\n420,319,2.5\n420,320,2.0\n420,321,2.5\n420,322,3.0\n420,323,3.5\n420,324,4.0\n420,325,11.5\n420,326,11.0\n420,327,10.5\n420,328,10.0\n420,329,9.5\n420,330,9.0\n420,331,8.5\n420,332,8.0\n420,333,7.5\n420,334,7.0\n420,335,6.5\n420,336,6.0\n420,337,5.5\n420,338,5.0\n420,339,4.5\n420,340,4.0\n420,341,3.5\n420,342,3.0\n420,343,2.5\n420,344,2.0\n420,345,1.5\n420,346,2.0\n420,347,2.5\n420,348,3.0\n420,349,3.5\n420,350,11.0\n420,351,10.5\n420,352,10.0\n420,353,9.5\n420,354,9.0\n420,355,8.5\n420,356,8.0\n420,357,7.5\n420,358,7.0\n420,359,6.5\n420,360,6.0\n420,361,5.5\n420,362,5.0\n420,363,4.5\n420,364,4.0\n420,365,3.5\n420,366,3.0\n420,367,2.5\n420,368,2.0\n420,369,1.5\n420,370,1.0\n420,371,1.5\n420,372,2.0\n420,373,2.5\n420,374,3.0\n420,375,10.5\n420,376,10.0\n420,377,9.5\n420,378,9.0\n420,379,8.5\n420,380,8.0\n420,381,7.5\n420,382,7.0\n420,383,6.5\n420,384,6.0\n420,385,5.5\n420,386,5.0\n420,387,4.5\n420,388,4.0\n420,389,3.5\n420,390,3.0\n420,391,2.5\n420,392,2.0\n420,393,1.5\n420,394,1.0\n420,395,0.5\n420,396,1.0\n420,397,1.5\n420,398,2.0\n420,399,2.5\n420,400,10.0\n420,401,9.5\n420,402,9.0\n420,403,8.5\n420,404,8.0\n420,405,7.5\n420,406,7.0\n420,407,6.5\n420,408,6.0\n420,409,5.5\n420,410,5.0\n420,411,4.5\n420,412,4.0\n420,413,3.5\n420,414,3.0\n420,415,2.5\n420,416,2.0\n420,417,1.5\n420,418,1.0\n420,419,0.5\n420,420,0\n420,421,0.5\n420,422,1.0\n420,423,1.5\n420,424,2.0\n420,425,10.5\n420,426,10.0\n420,427,9.5\n420,428,9.0\n420,429,8.5\n420,430,8.0\n420,431,7.5\n420,432,7.0\n420,433,6.5\n420,434,6.0\n420,435,5.5\n420,436,5.0\n420,437,4.5\n420,438,4.0\n420,439,3.5\n420,440,3.0\n420,441,2.5\n420,442,2.0\n420,443,1.5\n420,444,1.0\n420,445,0.5\n420,446,1.0\n420,447,1.5\n420,448,2.0\n420,449,2.5\n420,450,11.0\n420,451,10.5\n420,452,10.0\n420,453,9.5\n420,454,9.0\n420,455,8.5\n420,456,8.0\n420,457,7.5\n420,458,7.0\n420,459,6.5\n420,460,6.0\n420,461,5.5\n420,462,5.0\n420,463,4.5\n420,464,4.0\n420,465,3.5\n420,466,3.0\n420,467,2.5\n420,468,2.0\n420,469,1.5\n420,470,1.0\n420,471,1.5\n420,472,2.0\n420,473,2.5\n420,474,3.0\n420,475,11.5\n420,476,11.0\n420,477,10.5\n420,478,10.0\n420,479,9.5\n420,480,9.0\n420,481,8.5\n420,482,8.0\n420,483,7.5\n420,484,7.0\n420,485,6.5\n420,486,6.0\n420,487,5.5\n420,488,5.0\n420,489,4.5\n420,490,4.0\n420,491,3.5\n420,492,3.0\n420,493,2.5\n420,494,2.0\n420,495,1.5\n420,496,2.0\n420,497,2.5\n420,498,3.0\n420,499,3.5\n420,500,12.0\n420,501,11.5\n420,502,11.0\n420,503,10.5\n420,504,10.0\n420,505,9.5\n420,506,9.0\n420,507,8.5\n420,508,8.0\n420,509,7.5\n420,510,7.0\n420,511,6.5\n420,512,6.0\n420,513,5.5\n420,514,5.0\n420,515,4.5\n420,516,4.0\n420,517,3.5\n420,518,3.0\n420,519,2.5\n420,520,2.0\n420,521,2.5\n420,522,3.0\n420,523,3.5\n420,524,4.0\n420,525,12.5\n420,526,12.0\n420,527,11.5\n420,528,11.0\n420,529,10.5\n420,530,10.0\n420,531,9.5\n420,532,9.0\n420,533,8.5\n420,534,8.0\n420,535,7.5\n420,536,7.0\n420,537,6.5\n420,538,6.0\n420,539,5.5\n420,540,5.0\n420,541,4.5\n420,542,4.0\n420,543,3.5\n420,544,3.0\n420,545,2.5\n420,546,3.0\n420,547,3.5\n420,548,4.0\n420,549,4.5\n420,550,13.0\n420,551,12.5\n420,552,12.0\n420,553,11.5\n420,554,11.0\n420,555,10.5\n420,556,10.0\n420,557,9.5\n420,558,9.0\n420,559,8.5\n420,560,8.0\n420,561,7.5\n420,562,7.0\n420,563,6.5\n420,564,6.0\n420,565,5.5\n420,566,5.0\n420,567,4.5\n420,568,4.0\n420,569,3.5\n420,570,3.0\n420,571,3.5\n420,572,4.0\n420,573,4.5\n420,574,5.0\n420,575,13.5\n420,576,13.0\n420,577,12.5\n420,578,12.0\n420,579,11.5\n420,580,11.0\n420,581,10.5\n420,582,10.0\n420,583,9.5\n420,584,9.0\n420,585,8.5\n420,586,8.0\n420,587,7.5\n420,588,7.0\n420,589,6.5\n420,590,6.0\n420,591,5.5\n420,592,5.0\n420,593,4.5\n420,594,4.0\n420,595,3.5\n420,596,4.0\n420,597,4.5\n420,598,5.0\n420,599,5.5\n420,600,14.0\n420,601,13.5\n420,602,13.0\n420,603,12.5\n420,604,12.0\n420,605,11.5\n420,606,11.0\n420,607,10.5\n420,608,10.0\n420,609,9.5\n420,610,9.0\n420,611,8.5\n420,612,8.0\n420,613,7.5\n420,614,7.0\n420,615,6.5\n420,616,6.0\n420,617,5.5\n420,618,5.0\n420,619,4.5\n420,620,4.0\n420,621,4.5\n420,622,5.0\n420,623,5.5\n420,624,6.0\n421,0,18.5\n421,1,18.0\n421,2,17.5\n421,3,17.0\n421,4,16.5\n421,5,16.0\n421,6,15.5\n421,7,15.0\n421,8,14.5\n421,9,14.0\n421,10,13.5\n421,11,13.0\n421,12,12.5\n421,13,12.0\n421,14,11.5\n421,15,11.0\n421,16,10.5\n421,17,10.0\n421,18,9.5\n421,19,9.0\n421,20,8.5\n421,21,8.0\n421,22,8.5\n421,23,9.0\n421,24,9.5\n421,25,18.0\n421,26,17.5\n421,27,17.0\n421,28,16.5\n421,29,16.0\n421,30,15.5\n421,31,15.0\n421,32,14.5\n421,33,14.0\n421,34,13.5\n421,35,13.0\n421,36,12.5\n421,37,12.0\n421,38,11.5\n421,39,11.0\n421,40,10.5\n421,41,10.0\n421,42,9.5\n421,43,9.0\n421,44,8.5\n421,45,8.0\n421,46,7.5\n421,47,8.0\n421,48,8.5\n421,49,9.0\n421,50,17.5\n421,51,17.0\n421,52,16.5\n421,53,16.0\n421,54,15.5\n421,55,15.0\n421,56,14.5\n421,57,14.0\n421,58,13.5\n421,59,13.0\n421,60,12.5\n421,61,12.0\n421,62,11.5\n421,63,11.0\n421,64,10.5\n421,65,10.0\n421,66,9.5\n421,67,9.0\n421,68,8.5\n421,69,8.0\n421,70,7.5\n421,71,7.0\n421,72,7.5\n421,73,8.0\n421,74,8.5\n421,75,17.0\n421,76,16.5\n421,77,16.0\n421,78,15.5\n421,79,15.0\n421,80,14.5\n421,81,14.0\n421,82,13.5\n421,83,13.0\n421,84,12.5\n421,85,12.0\n421,86,11.5\n421,87,11.0\n421,88,10.5\n421,89,10.0\n421,90,9.5\n421,91,9.0\n421,92,8.5\n421,93,8.0\n421,94,7.5\n421,95,7.0\n421,96,6.5\n421,97,7.0\n421,98,7.5\n421,99,8.0\n421,100,16.5\n421,101,16.0\n421,102,15.5\n421,103,15.0\n421,104,14.5\n421,105,14.0\n421,106,13.5\n421,107,13.0\n421,108,12.5\n421,109,12.0\n421,110,11.5\n421,111,11.0\n421,112,10.5\n421,113,10.0\n421,114,9.5\n421,115,9.0\n421,116,8.5\n421,117,8.0\n421,118,7.5\n421,119,7.0\n421,120,6.5\n421,121,6.0\n421,122,6.5\n421,123,7.0\n421,124,7.5\n421,125,16.0\n421,126,15.5\n421,127,15.0\n421,128,14.5\n421,129,14.0\n421,130,13.5\n421,131,13.0\n421,132,12.5\n421,133,12.0\n421,134,11.5\n421,135,11.0\n421,136,10.5\n421,137,10.0\n421,138,9.5\n421,139,9.0\n421,140,8.5\n421,141,8.0\n421,142,7.5\n421,143,7.0\n421,144,6.5\n421,145,6.0\n421,146,5.5\n421,147,6.0\n421,148,6.5\n421,149,7.0\n421,150,15.5\n421,151,15.0\n421,152,14.5\n421,153,14.0\n421,154,13.5\n421,155,13.0\n421,156,12.5\n421,157,12.0\n421,158,11.5\n421,159,11.0\n421,160,10.5\n421,161,10.0\n421,162,9.5\n421,163,9.0\n421,164,8.5\n421,165,8.0\n421,166,7.5\n421,167,7.0\n421,168,6.5\n421,169,6.0\n421,170,5.5\n421,171,5.0\n421,172,5.5\n421,173,6.0\n421,174,6.5\n421,175,15.0\n421,176,14.5\n421,177,14.0\n421,178,13.5\n421,179,13.0\n421,180,12.5\n421,181,12.0\n421,182,11.5\n421,183,11.0\n421,184,10.5\n421,185,10.0\n421,186,9.5\n421,187,9.0\n421,188,8.5\n421,189,8.0\n421,190,7.5\n421,191,7.0\n421,192,6.5\n421,193,6.0\n421,194,5.5\n421,195,5.0\n421,196,4.5\n421,197,5.0\n421,198,5.5\n421,199,6.0\n421,200,14.5\n421,201,14.0\n421,202,13.5\n421,203,13.0\n421,204,12.5\n421,205,12.0\n421,206,11.5\n421,207,11.0\n421,208,10.5\n421,209,10.0\n421,210,9.5\n421,211,9.0\n421,212,8.5\n421,213,8.0\n421,214,7.5\n421,215,7.0\n421,216,6.5\n421,217,6.0\n421,218,5.5\n421,219,5.0\n421,220,4.5\n421,221,4.0\n421,222,4.5\n421,223,5.0\n421,224,5.5\n421,225,14.0\n421,226,13.5\n421,227,13.0\n421,228,12.5\n421,229,12.0\n421,230,11.5\n421,231,11.0\n421,232,10.5\n421,233,10.0\n421,234,9.5\n421,235,9.0\n421,236,8.5\n421,237,8.0\n421,238,7.5\n421,239,7.0\n421,240,6.5\n421,241,6.0\n421,242,5.5\n421,243,5.0\n421,244,4.5\n421,245,4.0\n421,246,3.5\n421,247,4.0\n421,248,4.5\n421,249,5.0\n421,250,13.5\n421,251,13.0\n421,252,12.5\n421,253,12.0\n421,254,11.5\n421,255,11.0\n421,256,10.5\n421,257,10.0\n421,258,9.5\n421,259,9.0\n421,260,8.5\n421,261,8.0\n421,262,7.5\n421,263,7.0\n421,264,6.5\n421,265,6.0\n421,266,5.5\n421,267,5.0\n421,268,4.5\n421,269,4.0\n421,270,3.5\n421,271,3.0\n421,272,3.5\n421,273,4.0\n421,274,4.5\n421,275,13.0\n421,276,12.5\n421,277,12.0\n421,278,11.5\n421,279,11.0\n421,280,10.5\n421,281,10.0\n421,282,9.5\n421,283,9.0\n421,284,8.5\n421,285,8.0\n421,286,7.5\n421,287,7.0\n421,288,6.5\n421,289,6.0\n421,290,5.5\n421,291,5.0\n421,292,4.5\n421,293,4.0\n421,294,3.5\n421,295,3.0\n421,296,2.5\n421,297,3.0\n421,298,3.5\n421,299,4.0\n421,300,12.5\n421,301,12.0\n421,302,11.5\n421,303,11.0\n421,304,10.5\n421,305,10.0\n421,306,9.5\n421,307,9.0\n421,308,8.5\n421,309,8.0\n421,310,7.5\n421,311,7.0\n421,312,6.5\n421,313,6.0\n421,314,5.5\n421,315,5.0\n421,316,4.5\n421,317,4.0\n421,318,3.5\n421,319,3.0\n421,320,2.5\n421,321,2.0\n421,322,2.5\n421,323,3.0\n421,324,3.5\n421,325,12.0\n421,326,11.5\n421,327,11.0\n421,328,10.5\n421,329,10.0\n421,330,9.5\n421,331,9.0\n421,332,8.5\n421,333,8.0\n421,334,7.5\n421,335,7.0\n421,336,6.5\n421,337,6.0\n421,338,5.5\n421,339,5.0\n421,340,4.5\n421,341,4.0\n421,342,3.5\n421,343,3.0\n421,344,2.5\n421,345,2.0\n421,346,1.5\n421,347,2.0\n421,348,2.5\n421,349,3.0\n421,350,11.5\n421,351,11.0\n421,352,10.5\n421,353,10.0\n421,354,9.5\n421,355,9.0\n421,356,8.5\n421,357,8.0\n421,358,7.5\n421,359,7.0\n421,360,6.5\n421,361,6.0\n421,362,5.5\n421,363,5.0\n421,364,4.5\n421,365,4.0\n421,366,3.5\n421,367,3.0\n421,368,2.5\n421,369,2.0\n421,370,1.5\n421,371,1.0\n421,372,1.5\n421,373,2.0\n421,374,2.5\n421,375,11.0\n421,376,10.5\n421,377,10.0\n421,378,9.5\n421,379,9.0\n421,380,8.5\n421,381,8.0\n421,382,7.5\n421,383,7.0\n421,384,6.5\n421,385,6.0\n421,386,5.5\n421,387,5.0\n421,388,4.5\n421,389,4.0\n421,390,3.5\n421,391,3.0\n421,392,2.5\n421,393,2.0\n421,394,1.5\n421,395,1.0\n421,396,0.5\n421,397,1.0\n421,398,1.5\n421,399,2.0\n421,400,10.5\n421,401,10.0\n421,402,9.5\n421,403,9.0\n421,404,8.5\n421,405,8.0\n421,406,7.5\n421,407,7.0\n421,408,6.5\n421,409,6.0\n421,410,5.5\n421,411,5.0\n421,412,4.5\n421,413,4.0\n421,414,3.5\n421,415,3.0\n421,416,2.5\n421,417,2.0\n421,418,1.5\n421,419,1.0\n421,420,0.5\n421,421,0\n421,422,0.5\n421,423,1.0\n421,424,1.5\n421,425,11.0\n421,426,10.5\n421,427,10.0\n421,428,9.5\n421,429,9.0\n421,430,8.5\n421,431,8.0\n421,432,7.5\n421,433,7.0\n421,434,6.5\n421,435,6.0\n421,436,5.5\n421,437,5.0\n421,438,4.5\n421,439,4.0\n421,440,3.5\n421,441,3.0\n421,442,2.5\n421,443,2.0\n421,444,1.5\n421,445,1.0\n421,446,0.5\n421,447,1.0\n421,448,1.5\n421,449,2.0\n421,450,11.5\n421,451,11.0\n421,452,10.5\n421,453,10.0\n421,454,9.5\n421,455,9.0\n421,456,8.5\n421,457,8.0\n421,458,7.5\n421,459,7.0\n421,460,6.5\n421,461,6.0\n421,462,5.5\n421,463,5.0\n421,464,4.5\n421,465,4.0\n421,466,3.5\n421,467,3.0\n421,468,2.5\n421,469,2.0\n421,470,1.5\n421,471,1.0\n421,472,1.5\n421,473,2.0\n421,474,2.5\n421,475,12.0\n421,476,11.5\n421,477,11.0\n421,478,10.5\n421,479,10.0\n421,480,9.5\n421,481,9.0\n421,482,8.5\n421,483,8.0\n421,484,7.5\n421,485,7.0\n421,486,6.5\n421,487,6.0\n421,488,5.5\n421,489,5.0\n421,490,4.5\n421,491,4.0\n421,492,3.5\n421,493,3.0\n421,494,2.5\n421,495,2.0\n421,496,1.5\n421,497,2.0\n421,498,2.5\n421,499,3.0\n421,500,12.5\n421,501,12.0\n421,502,11.5\n421,503,11.0\n421,504,10.5\n421,505,10.0\n421,506,9.5\n421,507,9.0\n421,508,8.5\n421,509,8.0\n421,510,7.5\n421,511,7.0\n421,512,6.5\n421,513,6.0\n421,514,5.5\n421,515,5.0\n421,516,4.5\n421,517,4.0\n421,518,3.5\n421,519,3.0\n421,520,2.5\n421,521,2.0\n421,522,2.5\n421,523,3.0\n421,524,3.5\n421,525,13.0\n421,526,12.5\n421,527,12.0\n421,528,11.5\n421,529,11.0\n421,530,10.5\n421,531,10.0\n421,532,9.5\n421,533,9.0\n421,534,8.5\n421,535,8.0\n421,536,7.5\n421,537,7.0\n421,538,6.5\n421,539,6.0\n421,540,5.5\n421,541,5.0\n421,542,4.5\n421,543,4.0\n421,544,3.5\n421,545,3.0\n421,546,2.5\n421,547,3.0\n421,548,3.5\n421,549,4.0\n421,550,13.5\n421,551,13.0\n421,552,12.5\n421,553,12.0\n421,554,11.5\n421,555,11.0\n421,556,10.5\n421,557,10.0\n421,558,9.5\n421,559,9.0\n421,560,8.5\n421,561,8.0\n421,562,7.5\n421,563,7.0\n421,564,6.5\n421,565,6.0\n421,566,5.5\n421,567,5.0\n421,568,4.5\n421,569,4.0\n421,570,3.5\n421,571,3.0\n421,572,3.5\n421,573,4.0\n421,574,4.5\n421,575,14.0\n421,576,13.5\n421,577,13.0\n421,578,12.5\n421,579,12.0\n421,580,11.5\n421,581,11.0\n421,582,10.5\n421,583,10.0\n421,584,9.5\n421,585,9.0\n421,586,8.5\n421,587,8.0\n421,588,7.5\n421,589,7.0\n421,590,6.5\n421,591,6.0\n421,592,5.5\n421,593,5.0\n421,594,4.5\n421,595,4.0\n421,596,3.5\n421,597,4.0\n421,598,4.5\n421,599,5.0\n421,600,14.5\n421,601,14.0\n421,602,13.5\n421,603,13.0\n421,604,12.5\n421,605,12.0\n421,606,11.5\n421,607,11.0\n421,608,10.5\n421,609,10.0\n421,610,9.5\n421,611,9.0\n421,612,8.5\n421,613,8.0\n421,614,7.5\n421,615,7.0\n421,616,6.5\n421,617,6.0\n421,618,5.5\n421,619,5.0\n421,620,4.5\n421,621,4.0\n421,622,4.5\n421,623,5.0\n421,624,5.5\n422,0,19.0\n422,1,18.5\n422,2,18.0\n422,3,17.5\n422,4,17.0\n422,5,16.5\n422,6,16.0\n422,7,15.5\n422,8,15.0\n422,9,14.5\n422,10,14.0\n422,11,13.5\n422,12,13.0\n422,13,12.5\n422,14,12.0\n422,15,11.5\n422,16,11.0\n422,17,10.5\n422,18,10.0\n422,19,9.5\n422,20,9.0\n422,21,8.5\n422,22,8.0\n422,23,8.5\n422,24,9.0\n422,25,18.5\n422,26,18.0\n422,27,17.5\n422,28,17.0\n422,29,16.5\n422,30,16.0\n422,31,15.5\n422,32,15.0\n422,33,14.5\n422,34,14.0\n422,35,13.5\n422,36,13.0\n422,37,12.5\n422,38,12.0\n422,39,11.5\n422,40,11.0\n422,41,10.5\n422,42,10.0\n422,43,9.5\n422,44,9.0\n422,45,8.5\n422,46,8.0\n422,47,7.5\n422,48,8.0\n422,49,8.5\n422,50,18.0\n422,51,17.5\n422,52,17.0\n422,53,16.5\n422,54,16.0\n422,55,15.5\n422,56,15.0\n422,57,14.5\n422,58,14.0\n422,59,13.5\n422,60,13.0\n422,61,12.5\n422,62,12.0\n422,63,11.5\n422,64,11.0\n422,65,10.5\n422,66,10.0\n422,67,9.5\n422,68,9.0\n422,69,8.5\n422,70,8.0\n422,71,7.5\n422,72,7.0\n422,73,7.5\n422,74,8.0\n422,75,17.5\n422,76,17.0\n422,77,16.5\n422,78,16.0\n422,79,15.5\n422,80,15.0\n422,81,14.5\n422,82,14.0\n422,83,13.5\n422,84,13.0\n422,85,12.5\n422,86,12.0\n422,87,11.5\n422,88,11.0\n422,89,10.5\n422,90,10.0\n422,91,9.5\n422,92,9.0\n422,93,8.5\n422,94,8.0\n422,95,7.5\n422,96,7.0\n422,97,6.5\n422,98,7.0\n422,99,7.5\n422,100,17.0\n422,101,16.5\n422,102,16.0\n422,103,15.5\n422,104,15.0\n422,105,14.5\n422,106,14.0\n422,107,13.5\n422,108,13.0\n422,109,12.5\n422,110,12.0\n422,111,11.5\n422,112,11.0\n422,113,10.5\n422,114,10.0\n422,115,9.5\n422,116,9.0\n422,117,8.5\n422,118,8.0\n422,119,7.5\n422,120,7.0\n422,121,6.5\n422,122,6.0\n422,123,6.5\n422,124,7.0\n422,125,16.5\n422,126,16.0\n422,127,15.5\n422,128,15.0\n422,129,14.5\n422,130,14.0\n422,131,13.5\n422,132,13.0\n422,133,12.5\n422,134,12.0\n422,135,11.5\n422,136,11.0\n422,137,10.5\n422,138,10.0\n422,139,9.5\n422,140,9.0\n422,141,8.5\n422,142,8.0\n422,143,7.5\n422,144,7.0\n422,145,6.5\n422,146,6.0\n422,147,5.5\n422,148,6.0\n422,149,6.5\n422,150,16.0\n422,151,15.5\n422,152,15.0\n422,153,14.5\n422,154,14.0\n422,155,13.5\n422,156,13.0\n422,157,12.5\n422,158,12.0\n422,159,11.5\n422,160,11.0\n422,161,10.5\n422,162,10.0\n422,163,9.5\n422,164,9.0\n422,165,8.5\n422,166,8.0\n422,167,7.5\n422,168,7.0\n422,169,6.5\n422,170,6.0\n422,171,5.5\n422,172,5.0\n422,173,5.5\n422,174,6.0\n422,175,15.5\n422,176,15.0\n422,177,14.5\n422,178,14.0\n422,179,13.5\n422,180,13.0\n422,181,12.5\n422,182,12.0\n422,183,11.5\n422,184,11.0\n422,185,10.5\n422,186,10.0\n422,187,9.5\n422,188,9.0\n422,189,8.5\n422,190,8.0\n422,191,7.5\n422,192,7.0\n422,193,6.5\n422,194,6.0\n422,195,5.5\n422,196,5.0\n422,197,4.5\n422,198,5.0\n422,199,5.5\n422,200,15.0\n422,201,14.5\n422,202,14.0\n422,203,13.5\n422,204,13.0\n422,205,12.5\n422,206,12.0\n422,207,11.5\n422,208,11.0\n422,209,10.5\n422,210,10.0\n422,211,9.5\n422,212,9.0\n422,213,8.5\n422,214,8.0\n422,215,7.5\n422,216,7.0\n422,217,6.5\n422,218,6.0\n422,219,5.5\n422,220,5.0\n422,221,4.5\n422,222,4.0\n422,223,4.5\n422,224,5.0\n422,225,14.5\n422,226,14.0\n422,227,13.5\n422,228,13.0\n422,229,12.5\n422,230,12.0\n422,231,11.5\n422,232,11.0\n422,233,10.5\n422,234,10.0\n422,235,9.5\n422,236,9.0\n422,237,8.5\n422,238,8.0\n422,239,7.5\n422,240,7.0\n422,241,6.5\n422,242,6.0\n422,243,5.5\n422,244,5.0\n422,245,4.5\n422,246,4.0\n422,247,3.5\n422,248,4.0\n422,249,4.5\n422,250,14.0\n422,251,13.5\n422,252,13.0\n422,253,12.5\n422,254,12.0\n422,255,11.5\n422,256,11.0\n422,257,10.5\n422,258,10.0\n422,259,9.5\n422,260,9.0\n422,261,8.5\n422,262,8.0\n422,263,7.5\n422,264,7.0\n422,265,6.5\n422,266,6.0\n422,267,5.5\n422,268,5.0\n422,269,4.5\n422,270,4.0\n422,271,3.5\n422,272,3.0\n422,273,3.5\n422,274,4.0\n422,275,13.5\n422,276,13.0\n422,277,12.5\n422,278,12.0\n422,279,11.5\n422,280,11.0\n422,281,10.5\n422,282,10.0\n422,283,9.5\n422,284,9.0\n422,285,8.5\n422,286,8.0\n422,287,7.5\n422,288,7.0\n422,289,6.5\n422,290,6.0\n422,291,5.5\n422,292,5.0\n422,293,4.5\n422,294,4.0\n422,295,3.5\n422,296,3.0\n422,297,2.5\n422,298,3.0\n422,299,3.5\n422,300,13.0\n422,301,12.5\n422,302,12.0\n422,303,11.5\n422,304,11.0\n422,305,10.5\n422,306,10.0\n422,307,9.5\n422,308,9.0\n422,309,8.5\n422,310,8.0\n422,311,7.5\n422,312,7.0\n422,313,6.5\n422,314,6.0\n422,315,5.5\n422,316,5.0\n422,317,4.5\n422,318,4.0\n422,319,3.5\n422,320,3.0\n422,321,2.5\n422,322,2.0\n422,323,2.5\n422,324,3.0\n422,325,12.5\n422,326,12.0\n422,327,11.5\n422,328,11.0\n422,329,10.5\n422,330,10.0\n422,331,9.5\n422,332,9.0\n422,333,8.5\n422,334,8.0\n422,335,7.5\n422,336,7.0\n422,337,6.5\n422,338,6.0\n422,339,5.5\n422,340,5.0\n422,341,4.5\n422,342,4.0\n422,343,3.5\n422,344,3.0\n422,345,2.5\n422,346,2.0\n422,347,1.5\n422,348,2.0\n422,349,2.5\n422,350,12.0\n422,351,11.5\n422,352,11.0\n422,353,10.5\n422,354,10.0\n422,355,9.5\n422,356,9.0\n422,357,8.5\n422,358,8.0\n422,359,7.5\n422,360,7.0\n422,361,6.5\n422,362,6.0\n422,363,5.5\n422,364,5.0\n422,365,4.5\n422,366,4.0\n422,367,3.5\n422,368,3.0\n422,369,2.5\n422,370,2.0\n422,371,1.5\n422,372,1.0\n422,373,1.5\n422,374,2.0\n422,375,11.5\n422,376,11.0\n422,377,10.5\n422,378,10.0\n422,379,9.5\n422,380,9.0\n422,381,8.5\n422,382,8.0\n422,383,7.5\n422,384,7.0\n422,385,6.5\n422,386,6.0\n422,387,5.5\n422,388,5.0\n422,389,4.5\n422,390,4.0\n422,391,3.5\n422,392,3.0\n422,393,2.5\n422,394,2.0\n422,395,1.5\n422,396,1.0\n422,397,0.5\n422,398,1.0\n422,399,1.5\n422,400,11.0\n422,401,10.5\n422,402,10.0\n422,403,9.5\n422,404,9.0\n422,405,8.5\n422,406,8.0\n422,407,7.5\n422,408,7.0\n422,409,6.5\n422,410,6.0\n422,411,5.5\n422,412,5.0\n422,413,4.5\n422,414,4.0\n422,415,3.5\n422,416,3.0\n422,417,2.5\n422,418,2.0\n422,419,1.5\n422,420,1.0\n422,421,0.5\n422,422,0\n422,423,0.5\n422,424,1.0\n422,425,11.5\n422,426,11.0\n422,427,10.5\n422,428,10.0\n422,429,9.5\n422,430,9.0\n422,431,8.5\n422,432,8.0\n422,433,7.5\n422,434,7.0\n422,435,6.5\n422,436,6.0\n422,437,5.5\n422,438,5.0\n422,439,4.5\n422,440,4.0\n422,441,3.5\n422,442,3.0\n422,443,2.5\n422,444,2.0\n422,445,1.5\n422,446,1.0\n422,447,0.5\n422,448,1.0\n422,449,1.5\n422,450,12.0\n422,451,11.5\n422,452,11.0\n422,453,10.5\n422,454,10.0\n422,455,9.5\n422,456,9.0\n422,457,8.5\n422,458,8.0\n422,459,7.5\n422,460,7.0\n422,461,6.5\n422,462,6.0\n422,463,5.5\n422,464,5.0\n422,465,4.5\n422,466,4.0\n422,467,3.5\n422,468,3.0\n422,469,2.5\n422,470,2.0\n422,471,1.5\n422,472,1.0\n422,473,1.5\n422,474,2.0\n422,475,12.5\n422,476,12.0\n422,477,11.5\n422,478,11.0\n422,479,10.5\n422,480,10.0\n422,481,9.5\n422,482,9.0\n422,483,8.5\n422,484,8.0\n422,485,7.5\n422,486,7.0\n422,487,6.5\n422,488,6.0\n422,489,5.5\n422,490,5.0\n422,491,4.5\n422,492,4.0\n422,493,3.5\n422,494,3.0\n422,495,2.5\n422,496,2.0\n422,497,1.5\n422,498,2.0\n422,499,2.5\n422,500,13.0\n422,501,12.5\n422,502,12.0\n422,503,11.5\n422,504,11.0\n422,505,10.5\n422,506,10.0\n422,507,9.5\n422,508,9.0\n422,509,8.5\n422,510,8.0\n422,511,7.5\n422,512,7.0\n422,513,6.5\n422,514,6.0\n422,515,5.5\n422,516,5.0\n422,517,4.5\n422,518,4.0\n422,519,3.5\n422,520,3.0\n422,521,2.5\n422,522,2.0\n422,523,2.5\n422,524,3.0\n422,525,13.5\n422,526,13.0\n422,527,12.5\n422,528,12.0\n422,529,11.5\n422,530,11.0\n422,531,10.5\n422,532,10.0\n422,533,9.5\n422,534,9.0\n422,535,8.5\n422,536,8.0\n422,537,7.5\n422,538,7.0\n422,539,6.5\n422,540,6.0\n422,541,5.5\n422,542,5.0\n422,543,4.5\n422,544,4.0\n422,545,3.5\n422,546,3.0\n422,547,2.5\n422,548,3.0\n422,549,3.5\n422,550,14.0\n422,551,13.5\n422,552,13.0\n422,553,12.5\n422,554,12.0\n422,555,11.5\n422,556,11.0\n422,557,10.5\n422,558,10.0\n422,559,9.5\n422,560,9.0\n422,561,8.5\n422,562,8.0\n422,563,7.5\n422,564,7.0\n422,565,6.5\n422,566,6.0\n422,567,5.5\n422,568,5.0\n422,569,4.5\n422,570,4.0\n422,571,3.5\n422,572,3.0\n422,573,3.5\n422,574,4.0\n422,575,14.5\n422,576,14.0\n422,577,13.5\n422,578,13.0\n422,579,12.5\n422,580,12.0\n422,581,11.5\n422,582,11.0\n422,583,10.5\n422,584,10.0\n422,585,9.5\n422,586,9.0\n422,587,8.5\n422,588,8.0\n422,589,7.5\n422,590,7.0\n422,591,6.5\n422,592,6.0\n422,593,5.5\n422,594,5.0\n422,595,4.5\n422,596,4.0\n422,597,3.5\n422,598,4.0\n422,599,4.5\n422,600,15.0\n422,601,14.5\n422,602,14.0\n422,603,13.5\n422,604,13.0\n422,605,12.5\n422,606,12.0\n422,607,11.5\n422,608,11.0\n422,609,10.5\n422,610,10.0\n422,611,9.5\n422,612,9.0\n422,613,8.5\n422,614,8.0\n422,615,7.5\n422,616,7.0\n422,617,6.5\n422,618,6.0\n422,619,5.5\n422,620,5.0\n422,621,4.5\n422,622,4.0\n422,623,4.5\n422,624,5.0\n423,0,19.5\n423,1,19.0\n423,2,18.5\n423,3,18.0\n423,4,17.5\n423,5,17.0\n423,6,16.5\n423,7,16.0\n423,8,15.5\n423,9,15.0\n423,10,14.5\n423,11,14.0\n423,12,13.5\n423,13,13.0\n423,14,12.5\n423,15,12.0\n423,16,11.5\n423,17,11.0\n423,18,10.5\n423,19,10.0\n423,20,9.5\n423,21,9.0\n423,22,8.5\n423,23,8.0\n423,24,8.5\n423,25,19.0\n423,26,18.5\n423,27,18.0\n423,28,17.5\n423,29,17.0\n423,30,16.5\n423,31,16.0\n423,32,15.5\n423,33,15.0\n423,34,14.5\n423,35,14.0\n423,36,13.5\n423,37,13.0\n423,38,12.5\n423,39,12.0\n423,40,11.5\n423,41,11.0\n423,42,10.5\n423,43,10.0\n423,44,9.5\n423,45,9.0\n423,46,8.5\n423,47,8.0\n423,48,7.5\n423,49,8.0\n423,50,18.5\n423,51,18.0\n423,52,17.5\n423,53,17.0\n423,54,16.5\n423,55,16.0\n423,56,15.5\n423,57,15.0\n423,58,14.5\n423,59,14.0\n423,60,13.5\n423,61,13.0\n423,62,12.5\n423,63,12.0\n423,64,11.5\n423,65,11.0\n423,66,10.5\n423,67,10.0\n423,68,9.5\n423,69,9.0\n423,70,8.5\n423,71,8.0\n423,72,7.5\n423,73,7.0\n423,74,7.5\n423,75,18.0\n423,76,17.5\n423,77,17.0\n423,78,16.5\n423,79,16.0\n423,80,15.5\n423,81,15.0\n423,82,14.5\n423,83,14.0\n423,84,13.5\n423,85,13.0\n423,86,12.5\n423,87,12.0\n423,88,11.5\n423,89,11.0\n423,90,10.5\n423,91,10.0\n423,92,9.5\n423,93,9.0\n423,94,8.5\n423,95,8.0\n423,96,7.5\n423,97,7.0\n423,98,6.5\n423,99,7.0\n423,100,17.5\n423,101,17.0\n423,102,16.5\n423,103,16.0\n423,104,15.5\n423,105,15.0\n423,106,14.5\n423,107,14.0\n423,108,13.5\n423,109,13.0\n423,110,12.5\n423,111,12.0\n423,112,11.5\n423,113,11.0\n423,114,10.5\n423,115,10.0\n423,116,9.5\n423,117,9.0\n423,118,8.5\n423,119,8.0\n423,120,7.5\n423,121,7.0\n423,122,6.5\n423,123,6.0\n423,124,6.5\n423,125,17.0\n423,126,16.5\n423,127,16.0\n423,128,15.5\n423,129,15.0\n423,130,14.5\n423,131,14.0\n423,132,13.5\n423,133,13.0\n423,134,12.5\n423,135,12.0\n423,136,11.5\n423,137,11.0\n423,138,10.5\n423,139,10.0\n423,140,9.5\n423,141,9.0\n423,142,8.5\n423,143,8.0\n423,144,7.5\n423,145,7.0\n423,146,6.5\n423,147,6.0\n423,148,5.5\n423,149,6.0\n423,150,16.5\n423,151,16.0\n423,152,15.5\n423,153,15.0\n423,154,14.5\n423,155,14.0\n423,156,13.5\n423,157,13.0\n423,158,12.5\n423,159,12.0\n423,160,11.5\n423,161,11.0\n423,162,10.5\n423,163,10.0\n423,164,9.5\n423,165,9.0\n423,166,8.5\n423,167,8.0\n423,168,7.5\n423,169,7.0\n423,170,6.5\n423,171,6.0\n423,172,5.5\n423,173,5.0\n423,174,5.5\n423,175,16.0\n423,176,15.5\n423,177,15.0\n423,178,14.5\n423,179,14.0\n423,180,13.5\n423,181,13.0\n423,182,12.5\n423,183,12.0\n423,184,11.5\n423,185,11.0\n423,186,10.5\n423,187,10.0\n423,188,9.5\n423,189,9.0\n423,190,8.5\n423,191,8.0\n423,192,7.5\n423,193,7.0\n423,194,6.5\n423,195,6.0\n423,196,5.5\n423,197,5.0\n423,198,4.5\n423,199,5.0\n423,200,15.5\n423,201,15.0\n423,202,14.5\n423,203,14.0\n423,204,13.5\n423,205,13.0\n423,206,12.5\n423,207,12.0\n423,208,11.5\n423,209,11.0\n423,210,10.5\n423,211,10.0\n423,212,9.5\n423,213,9.0\n423,214,8.5\n423,215,8.0\n423,216,7.5\n423,217,7.0\n423,218,6.5\n423,219,6.0\n423,220,5.5\n423,221,5.0\n423,222,4.5\n423,223,4.0\n423,224,4.5\n423,225,15.0\n423,226,14.5\n423,227,14.0\n423,228,13.5\n423,229,13.0\n423,230,12.5\n423,231,12.0\n423,232,11.5\n423,233,11.0\n423,234,10.5\n423,235,10.0\n423,236,9.5\n423,237,9.0\n423,238,8.5\n423,239,8.0\n423,240,7.5\n423,241,7.0\n423,242,6.5\n423,243,6.0\n423,244,5.5\n423,245,5.0\n423,246,4.5\n423,247,4.0\n423,248,3.5\n423,249,4.0\n423,250,14.5\n423,251,14.0\n423,252,13.5\n423,253,13.0\n423,254,12.5\n423,255,12.0\n423,256,11.5\n423,257,11.0\n423,258,10.5\n423,259,10.0\n423,260,9.5\n423,261,9.0\n423,262,8.5\n423,263,8.0\n423,264,7.5\n423,265,7.0\n423,266,6.5\n423,267,6.0\n423,268,5.5\n423,269,5.0\n423,270,4.5\n423,271,4.0\n423,272,3.5\n423,273,3.0\n423,274,3.5\n423,275,14.0\n423,276,13.5\n423,277,13.0\n423,278,12.5\n423,279,12.0\n423,280,11.5\n423,281,11.0\n423,282,10.5\n423,283,10.0\n423,284,9.5\n423,285,9.0\n423,286,8.5\n423,287,8.0\n423,288,7.5\n423,289,7.0\n423,290,6.5\n423,291,6.0\n423,292,5.5\n423,293,5.0\n423,294,4.5\n423,295,4.0\n423,296,3.5\n423,297,3.0\n423,298,2.5\n423,299,3.0\n423,300,13.5\n423,301,13.0\n423,302,12.5\n423,303,12.0\n423,304,11.5\n423,305,11.0\n423,306,10.5\n423,307,10.0\n423,308,9.5\n423,309,9.0\n423,310,8.5\n423,311,8.0\n423,312,7.5\n423,313,7.0\n423,314,6.5\n423,315,6.0\n423,316,5.5\n423,317,5.0\n423,318,4.5\n423,319,4.0\n423,320,3.5\n423,321,3.0\n423,322,2.5\n423,323,2.0\n423,324,2.5\n423,325,13.0\n423,326,12.5\n423,327,12.0\n423,328,11.5\n423,329,11.0\n423,330,10.5\n423,331,10.0\n423,332,9.5\n423,333,9.0\n423,334,8.5\n423,335,8.0\n423,336,7.5\n423,337,7.0\n423,338,6.5\n423,339,6.0\n423,340,5.5\n423,341,5.0\n423,342,4.5\n423,343,4.0\n423,344,3.5\n423,345,3.0\n423,346,2.5\n423,347,2.0\n423,348,1.5\n423,349,2.0\n423,350,12.5\n423,351,12.0\n423,352,11.5\n423,353,11.0\n423,354,10.5\n423,355,10.0\n423,356,9.5\n423,357,9.0\n423,358,8.5\n423,359,8.0\n423,360,7.5\n423,361,7.0\n423,362,6.5\n423,363,6.0\n423,364,5.5\n423,365,5.0\n423,366,4.5\n423,367,4.0\n423,368,3.5\n423,369,3.0\n423,370,2.5\n423,371,2.0\n423,372,1.5\n423,373,1.0\n423,374,1.5\n423,375,12.0\n423,376,11.5\n423,377,11.0\n423,378,10.5\n423,379,10.0\n423,380,9.5\n423,381,9.0\n423,382,8.5\n423,383,8.0\n423,384,7.5\n423,385,7.0\n423,386,6.5\n423,387,6.0\n423,388,5.5\n423,389,5.0\n423,390,4.5\n423,391,4.0\n423,392,3.5\n423,393,3.0\n423,394,2.5\n423,395,2.0\n423,396,1.5\n423,397,1.0\n423,398,0.5\n423,399,1.0\n423,400,11.5\n423,401,11.0\n423,402,10.5\n423,403,10.0\n423,404,9.5\n423,405,9.0\n423,406,8.5\n423,407,8.0\n423,408,7.5\n423,409,7.0\n423,410,6.5\n423,411,6.0\n423,412,5.5\n423,413,5.0\n423,414,4.5\n423,415,4.0\n423,416,3.5\n423,417,3.0\n423,418,2.5\n423,419,2.0\n423,420,1.5\n423,421,1.0\n423,422,0.5\n423,423,0\n423,424,0.5\n423,425,12.0\n423,426,11.5\n423,427,11.0\n423,428,10.5\n423,429,10.0\n423,430,9.5\n423,431,9.0\n423,432,8.5\n423,433,8.0\n423,434,7.5\n423,435,7.0\n423,436,6.5\n423,437,6.0\n423,438,5.5\n423,439,5.0\n423,440,4.5\n423,441,4.0\n423,442,3.5\n423,443,3.0\n423,444,2.5\n423,445,2.0\n423,446,1.5\n423,447,1.0\n423,448,0.5\n423,449,1.0\n423,450,12.5\n423,451,12.0\n423,452,11.5\n423,453,11.0\n423,454,10.5\n423,455,10.0\n423,456,9.5\n423,457,9.0\n423,458,8.5\n423,459,8.0\n423,460,7.5\n423,461,7.0\n423,462,6.5\n423,463,6.0\n423,464,5.5\n423,465,5.0\n423,466,4.5\n423,467,4.0\n423,468,3.5\n423,469,3.0\n423,470,2.5\n423,471,2.0\n423,472,1.5\n423,473,1.0\n423,474,1.5\n423,475,13.0\n423,476,12.5\n423,477,12.0\n423,478,11.5\n423,479,11.0\n423,480,10.5\n423,481,10.0\n423,482,9.5\n423,483,9.0\n423,484,8.5\n423,485,8.0\n423,486,7.5\n423,487,7.0\n423,488,6.5\n423,489,6.0\n423,490,5.5\n423,491,5.0\n423,492,4.5\n423,493,4.0\n423,494,3.5\n423,495,3.0\n423,496,2.5\n423,497,2.0\n423,498,1.5\n423,499,2.0\n423,500,13.5\n423,501,13.0\n423,502,12.5\n423,503,12.0\n423,504,11.5\n423,505,11.0\n423,506,10.5\n423,507,10.0\n423,508,9.5\n423,509,9.0\n423,510,8.5\n423,511,8.0\n423,512,7.5\n423,513,7.0\n423,514,6.5\n423,515,6.0\n423,516,5.5\n423,517,5.0\n423,518,4.5\n423,519,4.0\n423,520,3.5\n423,521,3.0\n423,522,2.5\n423,523,2.0\n423,524,2.5\n423,525,14.0\n423,526,13.5\n423,527,13.0\n423,528,12.5\n423,529,12.0\n423,530,11.5\n423,531,11.0\n423,532,10.5\n423,533,10.0\n423,534,9.5\n423,535,9.0\n423,536,8.5\n423,537,8.0\n423,538,7.5\n423,539,7.0\n423,540,6.5\n423,541,6.0\n423,542,5.5\n423,543,5.0\n423,544,4.5\n423,545,4.0\n423,546,3.5\n423,547,3.0\n423,548,2.5\n423,549,3.0\n423,550,14.5\n423,551,14.0\n423,552,13.5\n423,553,13.0\n423,554,12.5\n423,555,12.0\n423,556,11.5\n423,557,11.0\n423,558,10.5\n423,559,10.0\n423,560,9.5\n423,561,9.0\n423,562,8.5\n423,563,8.0\n423,564,7.5\n423,565,7.0\n423,566,6.5\n423,567,6.0\n423,568,5.5\n423,569,5.0\n423,570,4.5\n423,571,4.0\n423,572,3.5\n423,573,3.0\n423,574,3.5\n423,575,15.0\n423,576,14.5\n423,577,14.0\n423,578,13.5\n423,579,13.0\n423,580,12.5\n423,581,12.0\n423,582,11.5\n423,583,11.0\n423,584,10.5\n423,585,10.0\n423,586,9.5\n423,587,9.0\n423,588,8.5\n423,589,8.0\n423,590,7.5\n423,591,7.0\n423,592,6.5\n423,593,6.0\n423,594,5.5\n423,595,5.0\n423,596,4.5\n423,597,4.0\n423,598,3.5\n423,599,4.0\n423,600,15.5\n423,601,15.0\n423,602,14.5\n423,603,14.0\n423,604,13.5\n423,605,13.0\n423,606,12.5\n423,607,12.0\n423,608,11.5\n423,609,11.0\n423,610,10.5\n423,611,10.0\n423,612,9.5\n423,613,9.0\n423,614,8.5\n423,615,8.0\n423,616,7.5\n423,617,7.0\n423,618,6.5\n423,619,6.0\n423,620,5.5\n423,621,5.0\n423,622,4.5\n423,623,4.0\n423,624,4.5\n424,0,20.0\n424,1,19.5\n424,2,19.0\n424,3,18.5\n424,4,18.0\n424,5,17.5\n424,6,17.0\n424,7,16.5\n424,8,16.0\n424,9,15.5\n424,10,15.0\n424,11,14.5\n424,12,14.0\n424,13,13.5\n424,14,13.0\n424,15,12.5\n424,16,12.0\n424,17,11.5\n424,18,11.0\n424,19,10.5\n424,20,10.0\n424,21,9.5\n424,22,9.0\n424,23,8.5\n424,24,8.0\n424,25,19.5\n424,26,19.0\n424,27,18.5\n424,28,18.0\n424,29,17.5\n424,30,17.0\n424,31,16.5\n424,32,16.0\n424,33,15.5\n424,34,15.0\n424,35,14.5\n424,36,14.0\n424,37,13.5\n424,38,13.0\n424,39,12.5\n424,40,12.0\n424,41,11.5\n424,42,11.0\n424,43,10.5\n424,44,10.0\n424,45,9.5\n424,46,9.0\n424,47,8.5\n424,48,8.0\n424,49,7.5\n424,50,19.0\n424,51,18.5\n424,52,18.0\n424,53,17.5\n424,54,17.0\n424,55,16.5\n424,56,16.0\n424,57,15.5\n424,58,15.0\n424,59,14.5\n424,60,14.0\n424,61,13.5\n424,62,13.0\n424,63,12.5\n424,64,12.0\n424,65,11.5\n424,66,11.0\n424,67,10.5\n424,68,10.0\n424,69,9.5\n424,70,9.0\n424,71,8.5\n424,72,8.0\n424,73,7.5\n424,74,7.0\n424,75,18.5\n424,76,18.0\n424,77,17.5\n424,78,17.0\n424,79,16.5\n424,80,16.0\n424,81,15.5\n424,82,15.0\n424,83,14.5\n424,84,14.0\n424,85,13.5\n424,86,13.0\n424,87,12.5\n424,88,12.0\n424,89,11.5\n424,90,11.0\n424,91,10.5\n424,92,10.0\n424,93,9.5\n424,94,9.0\n424,95,8.5\n424,96,8.0\n424,97,7.5\n424,98,7.0\n424,99,6.5\n424,100,18.0\n424,101,17.5\n424,102,17.0\n424,103,16.5\n424,104,16.0\n424,105,15.5\n424,106,15.0\n424,107,14.5\n424,108,14.0\n424,109,13.5\n424,110,13.0\n424,111,12.5\n424,112,12.0\n424,113,11.5\n424,114,11.0\n424,115,10.5\n424,116,10.0\n424,117,9.5\n424,118,9.0\n424,119,8.5\n424,120,8.0\n424,121,7.5\n424,122,7.0\n424,123,6.5\n424,124,6.0\n424,125,17.5\n424,126,17.0\n424,127,16.5\n424,128,16.0\n424,129,15.5\n424,130,15.0\n424,131,14.5\n424,132,14.0\n424,133,13.5\n424,134,13.0\n424,135,12.5\n424,136,12.0\n424,137,11.5\n424,138,11.0\n424,139,10.5\n424,140,10.0\n424,141,9.5\n424,142,9.0\n424,143,8.5\n424,144,8.0\n424,145,7.5\n424,146,7.0\n424,147,6.5\n424,148,6.0\n424,149,5.5\n424,150,17.0\n424,151,16.5\n424,152,16.0\n424,153,15.5\n424,154,15.0\n424,155,14.5\n424,156,14.0\n424,157,13.5\n424,158,13.0\n424,159,12.5\n424,160,12.0\n424,161,11.5\n424,162,11.0\n424,163,10.5\n424,164,10.0\n424,165,9.5\n424,166,9.0\n424,167,8.5\n424,168,8.0\n424,169,7.5\n424,170,7.0\n424,171,6.5\n424,172,6.0\n424,173,5.5\n424,174,5.0\n424,175,16.5\n424,176,16.0\n424,177,15.5\n424,178,15.0\n424,179,14.5\n424,180,14.0\n424,181,13.5\n424,182,13.0\n424,183,12.5\n424,184,12.0\n424,185,11.5\n424,186,11.0\n424,187,10.5\n424,188,10.0\n424,189,9.5\n424,190,9.0\n424,191,8.5\n424,192,8.0\n424,193,7.5\n424,194,7.0\n424,195,6.5\n424,196,6.0\n424,197,5.5\n424,198,5.0\n424,199,4.5\n424,200,16.0\n424,201,15.5\n424,202,15.0\n424,203,14.5\n424,204,14.0\n424,205,13.5\n424,206,13.0\n424,207,12.5\n424,208,12.0\n424,209,11.5\n424,210,11.0\n424,211,10.5\n424,212,10.0\n424,213,9.5\n424,214,9.0\n424,215,8.5\n424,216,8.0\n424,217,7.5\n424,218,7.0\n424,219,6.5\n424,220,6.0\n424,221,5.5\n424,222,5.0\n424,223,4.5\n424,224,4.0\n424,225,15.5\n424,226,15.0\n424,227,14.5\n424,228,14.0\n424,229,13.5\n424,230,13.0\n424,231,12.5\n424,232,12.0\n424,233,11.5\n424,234,11.0\n424,235,10.5\n424,236,10.0\n424,237,9.5\n424,238,9.0\n424,239,8.5\n424,240,8.0\n424,241,7.5\n424,242,7.0\n424,243,6.5\n424,244,6.0\n424,245,5.5\n424,246,5.0\n424,247,4.5\n424,248,4.0\n424,249,3.5\n424,250,15.0\n424,251,14.5\n424,252,14.0\n424,253,13.5\n424,254,13.0\n424,255,12.5\n424,256,12.0\n424,257,11.5\n424,258,11.0\n424,259,10.5\n424,260,10.0\n424,261,9.5\n424,262,9.0\n424,263,8.5\n424,264,8.0\n424,265,7.5\n424,266,7.0\n424,267,6.5\n424,268,6.0\n424,269,5.5\n424,270,5.0\n424,271,4.5\n424,272,4.0\n424,273,3.5\n424,274,3.0\n424,275,14.5\n424,276,14.0\n424,277,13.5\n424,278,13.0\n424,279,12.5\n424,280,12.0\n424,281,11.5\n424,282,11.0\n424,283,10.5\n424,284,10.0\n424,285,9.5\n424,286,9.0\n424,287,8.5\n424,288,8.0\n424,289,7.5\n424,290,7.0\n424,291,6.5\n424,292,6.0\n424,293,5.5\n424,294,5.0\n424,295,4.5\n424,296,4.0\n424,297,3.5\n424,298,3.0\n424,299,2.5\n424,300,14.0\n424,301,13.5\n424,302,13.0\n424,303,12.5\n424,304,12.0\n424,305,11.5\n424,306,11.0\n424,307,10.5\n424,308,10.0\n424,309,9.5\n424,310,9.0\n424,311,8.5\n424,312,8.0\n424,313,7.5\n424,314,7.0\n424,315,6.5\n424,316,6.0\n424,317,5.5\n424,318,5.0\n424,319,4.5\n424,320,4.0\n424,321,3.5\n424,322,3.0\n424,323,2.5\n424,324,2.0\n424,325,13.5\n424,326,13.0\n424,327,12.5\n424,328,12.0\n424,329,11.5\n424,330,11.0\n424,331,10.5\n424,332,10.0\n424,333,9.5\n424,334,9.0\n424,335,8.5\n424,336,8.0\n424,337,7.5\n424,338,7.0\n424,339,6.5\n424,340,6.0\n424,341,5.5\n424,342,5.0\n424,343,4.5\n424,344,4.0\n424,345,3.5\n424,346,3.0\n424,347,2.5\n424,348,2.0\n424,349,1.5\n424,350,13.0\n424,351,12.5\n424,352,12.0\n424,353,11.5\n424,354,11.0\n424,355,10.5\n424,356,10.0\n424,357,9.5\n424,358,9.0\n424,359,8.5\n424,360,8.0\n424,361,7.5\n424,362,7.0\n424,363,6.5\n424,364,6.0\n424,365,5.5\n424,366,5.0\n424,367,4.5\n424,368,4.0\n424,369,3.5\n424,370,3.0\n424,371,2.5\n424,372,2.0\n424,373,1.5\n424,374,1.0\n424,375,12.5\n424,376,12.0\n424,377,11.5\n424,378,11.0\n424,379,10.5\n424,380,10.0\n424,381,9.5\n424,382,9.0\n424,383,8.5\n424,384,8.0\n424,385,7.5\n424,386,7.0\n424,387,6.5\n424,388,6.0\n424,389,5.5\n424,390,5.0\n424,391,4.5\n424,392,4.0\n424,393,3.5\n424,394,3.0\n424,395,2.5\n424,396,2.0\n424,397,1.5\n424,398,1.0\n424,399,0.5\n424,400,12.0\n424,401,11.5\n424,402,11.0\n424,403,10.5\n424,404,10.0\n424,405,9.5\n424,406,9.0\n424,407,8.5\n424,408,8.0\n424,409,7.5\n424,410,7.0\n424,411,6.5\n424,412,6.0\n424,413,5.5\n424,414,5.0\n424,415,4.5\n424,416,4.0\n424,417,3.5\n424,418,3.0\n424,419,2.5\n424,420,2.0\n424,421,1.5\n424,422,1.0\n424,423,0.5\n424,424,0\n424,425,12.5\n424,426,12.0\n424,427,11.5\n424,428,11.0\n424,429,10.5\n424,430,10.0\n424,431,9.5\n424,432,9.0\n424,433,8.5\n424,434,8.0\n424,435,7.5\n424,436,7.0\n424,437,6.5\n424,438,6.0\n424,439,5.5\n424,440,5.0\n424,441,4.5\n424,442,4.0\n424,443,3.5\n424,444,3.0\n424,445,2.5\n424,446,2.0\n424,447,1.5\n424,448,1.0\n424,449,0.5\n424,450,13.0\n424,451,12.5\n424,452,12.0\n424,453,11.5\n424,454,11.0\n424,455,10.5\n424,456,10.0\n424,457,9.5\n424,458,9.0\n424,459,8.5\n424,460,8.0\n424,461,7.5\n424,462,7.0\n424,463,6.5\n424,464,6.0\n424,465,5.5\n424,466,5.0\n424,467,4.5\n424,468,4.0\n424,469,3.5\n424,470,3.0\n424,471,2.5\n424,472,2.0\n424,473,1.5\n424,474,1.0\n424,475,13.5\n424,476,13.0\n424,477,12.5\n424,478,12.0\n424,479,11.5\n424,480,11.0\n424,481,10.5\n424,482,10.0\n424,483,9.5\n424,484,9.0\n424,485,8.5\n424,486,8.0\n424,487,7.5\n424,488,7.0\n424,489,6.5\n424,490,6.0\n424,491,5.5\n424,492,5.0\n424,493,4.5\n424,494,4.0\n424,495,3.5\n424,496,3.0\n424,497,2.5\n424,498,2.0\n424,499,1.5\n424,500,14.0\n424,501,13.5\n424,502,13.0\n424,503,12.5\n424,504,12.0\n424,505,11.5\n424,506,11.0\n424,507,10.5\n424,508,10.0\n424,509,9.5\n424,510,9.0\n424,511,8.5\n424,512,8.0\n424,513,7.5\n424,514,7.0\n424,515,6.5\n424,516,6.0\n424,517,5.5\n424,518,5.0\n424,519,4.5\n424,520,4.0\n424,521,3.5\n424,522,3.0\n424,523,2.5\n424,524,2.0\n424,525,14.5\n424,526,14.0\n424,527,13.5\n424,528,13.0\n424,529,12.5\n424,530,12.0\n424,531,11.5\n424,532,11.0\n424,533,10.5\n424,534,10.0\n424,535,9.5\n424,536,9.0\n424,537,8.5\n424,538,8.0\n424,539,7.5\n424,540,7.0\n424,541,6.5\n424,542,6.0\n424,543,5.5\n424,544,5.0\n424,545,4.5\n424,546,4.0\n424,547,3.5\n424,548,3.0\n424,549,2.5\n424,550,15.0\n424,551,14.5\n424,552,14.0\n424,553,13.5\n424,554,13.0\n424,555,12.5\n424,556,12.0\n424,557,11.5\n424,558,11.0\n424,559,10.5\n424,560,10.0\n424,561,9.5\n424,562,9.0\n424,563,8.5\n424,564,8.0\n424,565,7.5\n424,566,7.0\n424,567,6.5\n424,568,6.0\n424,569,5.5\n424,570,5.0\n424,571,4.5\n424,572,4.0\n424,573,3.5\n424,574,3.0\n424,575,15.5\n424,576,15.0\n424,577,14.5\n424,578,14.0\n424,579,13.5\n424,580,13.0\n424,581,12.5\n424,582,12.0\n424,583,11.5\n424,584,11.0\n424,585,10.5\n424,586,10.0\n424,587,9.5\n424,588,9.0\n424,589,8.5\n424,590,8.0\n424,591,7.5\n424,592,7.0\n424,593,6.5\n424,594,6.0\n424,595,5.5\n424,596,5.0\n424,597,4.5\n424,598,4.0\n424,599,3.5\n424,600,16.0\n424,601,15.5\n424,602,15.0\n424,603,14.5\n424,604,14.0\n424,605,13.5\n424,606,13.0\n424,607,12.5\n424,608,12.0\n424,609,11.5\n424,610,11.0\n424,611,10.5\n424,612,10.0\n424,613,9.5\n424,614,9.0\n424,615,8.5\n424,616,8.0\n424,617,7.5\n424,618,7.0\n424,619,6.5\n424,620,6.0\n424,621,5.5\n424,622,5.0\n424,623,4.5\n424,624,4.0\n425,0,8.5\n425,1,9.0\n425,2,9.5\n425,3,10.0\n425,4,10.5\n425,5,11.0\n425,6,11.5\n425,7,12.0\n425,8,12.5\n425,9,13.0\n425,10,13.5\n425,11,14.0\n425,12,14.5\n425,13,15.0\n425,14,15.5\n425,15,16.0\n425,16,16.5\n425,17,17.0\n425,18,17.5\n425,19,18.0\n425,20,18.5\n425,21,19.0\n425,22,19.5\n425,23,20.0\n425,24,20.5\n425,25,8.0\n425,26,8.5\n425,27,9.0\n425,28,9.5\n425,29,10.0\n425,30,10.5\n425,31,11.0\n425,32,11.5\n425,33,12.0\n425,34,12.5\n425,35,13.0\n425,36,13.5\n425,37,14.0\n425,38,14.5\n425,39,15.0\n425,40,15.5\n425,41,16.0\n425,42,16.5\n425,43,17.0\n425,44,17.5\n425,45,18.0\n425,46,18.5\n425,47,19.0\n425,48,19.5\n425,49,20.0\n425,50,7.5\n425,51,8.0\n425,52,8.5\n425,53,9.0\n425,54,9.5\n425,55,10.0\n425,56,10.5\n425,57,11.0\n425,58,11.5\n425,59,12.0\n425,60,12.5\n425,61,13.0\n425,62,13.5\n425,63,14.0\n425,64,14.5\n425,65,15.0\n425,66,15.5\n425,67,16.0\n425,68,16.5\n425,69,17.0\n425,70,17.5\n425,71,18.0\n425,72,18.5\n425,73,19.0\n425,74,19.5\n425,75,7.0\n425,76,7.5\n425,77,8.0\n425,78,8.5\n425,79,9.0\n425,80,9.5\n425,81,10.0\n425,82,10.5\n425,83,11.0\n425,84,11.5\n425,85,12.0\n425,86,12.5\n425,87,13.0\n425,88,13.5\n425,89,14.0\n425,90,14.5\n425,91,15.0\n425,92,15.5\n425,93,16.0\n425,94,16.5\n425,95,17.0\n425,96,17.5\n425,97,18.0\n425,98,18.5\n425,99,19.0\n425,100,6.5\n425,101,7.0\n425,102,7.5\n425,103,8.0\n425,104,8.5\n425,105,9.0\n425,106,9.5\n425,107,10.0\n425,108,10.5\n425,109,11.0\n425,110,11.5\n425,111,12.0\n425,112,12.5\n425,113,13.0\n425,114,13.5\n425,115,14.0\n425,116,14.5\n425,117,15.0\n425,118,15.5\n425,119,16.0\n425,120,16.5\n425,121,17.0\n425,122,17.5\n425,123,18.0\n425,124,18.5\n425,125,6.0\n425,126,6.5\n425,127,7.0\n425,128,7.5\n425,129,8.0\n425,130,8.5\n425,131,9.0\n425,132,9.5\n425,133,10.0\n425,134,10.5\n425,135,11.0\n425,136,11.5\n425,137,12.0\n425,138,12.5\n425,139,13.0\n425,140,13.5\n425,141,14.0\n425,142,14.5\n425,143,15.0\n425,144,15.5\n425,145,16.0\n425,146,16.5\n425,147,17.0\n425,148,17.5\n425,149,18.0\n425,150,5.5\n425,151,6.0\n425,152,6.5\n425,153,7.0\n425,154,7.5\n425,155,8.0\n425,156,8.5\n425,157,9.0\n425,158,9.5\n425,159,10.0\n425,160,10.5\n425,161,11.0\n425,162,11.5\n425,163,12.0\n425,164,12.5\n425,165,13.0\n425,166,13.5\n425,167,14.0\n425,168,14.5\n425,169,15.0\n425,170,15.5\n425,171,16.0\n425,172,16.5\n425,173,17.0\n425,174,17.5\n425,175,5.0\n425,176,5.5\n425,177,6.0\n425,178,6.5\n425,179,7.0\n425,180,7.5\n425,181,8.0\n425,182,8.5\n425,183,9.0\n425,184,9.5\n425,185,10.0\n425,186,10.5\n425,187,11.0\n425,188,11.5\n425,189,12.0\n425,190,12.5\n425,191,13.0\n425,192,13.5\n425,193,14.0\n425,194,14.5\n425,195,15.0\n425,196,15.5\n425,197,16.0\n425,198,16.5\n425,199,17.0\n425,200,4.5\n425,201,5.0\n425,202,5.5\n425,203,6.0\n425,204,6.5\n425,205,7.0\n425,206,7.5\n425,207,8.0\n425,208,8.5\n425,209,9.0\n425,210,9.5\n425,211,10.0\n425,212,10.5\n425,213,11.0\n425,214,11.5\n425,215,12.0\n425,216,12.5\n425,217,13.0\n425,218,13.5\n425,219,14.0\n425,220,14.5\n425,221,15.0\n425,222,15.5\n425,223,16.0\n425,224,16.5\n425,225,4.0\n425,226,4.5\n425,227,5.0\n425,228,5.5\n425,229,6.0\n425,230,6.5\n425,231,7.0\n425,232,7.5\n425,233,8.0\n425,234,8.5\n425,235,9.0\n425,236,9.5\n425,237,10.0\n425,238,10.5\n425,239,11.0\n425,240,11.5\n425,241,12.0\n425,242,12.5\n425,243,13.0\n425,244,13.5\n425,245,14.0\n425,246,14.5\n425,247,15.0\n425,248,15.5\n425,249,16.0\n425,250,3.5\n425,251,4.0\n425,252,4.5\n425,253,5.0\n425,254,5.5\n425,255,6.0\n425,256,6.5\n425,257,7.0\n425,258,7.5\n425,259,8.0\n425,260,8.5\n425,261,9.0\n425,262,9.5\n425,263,10.0\n425,264,10.5\n425,265,11.0\n425,266,11.5\n425,267,12.0\n425,268,12.5\n425,269,13.0\n425,270,13.5\n425,271,14.0\n425,272,14.5\n425,273,15.0\n425,274,15.5\n425,275,3.0\n425,276,3.5\n425,277,4.0\n425,278,4.5\n425,279,5.0\n425,280,5.5\n425,281,6.0\n425,282,6.5\n425,283,7.0\n425,284,7.5\n425,285,8.0\n425,286,8.5\n425,287,9.0\n425,288,9.5\n425,289,10.0\n425,290,10.5\n425,291,11.0\n425,292,11.5\n425,293,12.0\n425,294,12.5\n425,295,13.0\n425,296,13.5\n425,297,14.0\n425,298,14.5\n425,299,15.0\n425,300,2.5\n425,301,3.0\n425,302,3.5\n425,303,4.0\n425,304,4.5\n425,305,5.0\n425,306,5.5\n425,307,6.0\n425,308,6.5\n425,309,7.0\n425,310,7.5\n425,311,8.0\n425,312,8.5\n425,313,9.0\n425,314,9.5\n425,315,10.0\n425,316,10.5\n425,317,11.0\n425,318,11.5\n425,319,12.0\n425,320,12.5\n425,321,13.0\n425,322,13.5\n425,323,14.0\n425,324,14.5\n425,325,2.0\n425,326,2.5\n425,327,3.0\n425,328,3.5\n425,329,4.0\n425,330,4.5\n425,331,5.0\n425,332,5.5\n425,333,6.0\n425,334,6.5\n425,335,7.0\n425,336,7.5\n425,337,8.0\n425,338,8.5\n425,339,9.0\n425,340,9.5\n425,341,10.0\n425,342,10.5\n425,343,11.0\n425,344,11.5\n425,345,12.0\n425,346,12.5\n425,347,13.0\n425,348,13.5\n425,349,14.0\n425,350,1.5\n425,351,2.0\n425,352,2.5\n425,353,3.0\n425,354,3.5\n425,355,4.0\n425,356,4.5\n425,357,5.0\n425,358,5.5\n425,359,6.0\n425,360,6.5\n425,361,7.0\n425,362,7.5\n425,363,8.0\n425,364,8.5\n425,365,9.0\n425,366,9.5\n425,367,10.0\n425,368,10.5\n425,369,11.0\n425,370,11.5\n425,371,12.0\n425,372,12.5\n425,373,13.0\n425,374,13.5\n425,375,1.0\n425,376,1.5\n425,377,2.0\n425,378,2.5\n425,379,3.0\n425,380,3.5\n425,381,4.0\n425,382,4.5\n425,383,5.0\n425,384,5.5\n425,385,6.0\n425,386,6.5\n425,387,7.0\n425,388,7.5\n425,389,8.0\n425,390,8.5\n425,391,9.0\n425,392,9.5\n425,393,10.0\n425,394,10.5\n425,395,11.0\n425,396,11.5\n425,397,12.0\n425,398,12.5\n425,399,13.0\n425,400,0.5\n425,401,1.0\n425,402,1.5\n425,403,2.0\n425,404,2.5\n425,405,3.0\n425,406,3.5\n425,407,4.0\n425,408,4.5\n425,409,5.0\n425,410,5.5\n425,411,6.0\n425,412,6.5\n425,413,7.0\n425,414,7.5\n425,415,8.0\n425,416,8.5\n425,417,9.0\n425,418,9.5\n425,419,10.0\n425,420,10.5\n425,421,11.0\n425,422,11.5\n425,423,12.0\n425,424,12.5\n425,425,0\n425,426,0.5\n425,427,1.0\n425,428,1.5\n425,429,2.0\n425,430,2.5\n425,431,3.0\n425,432,3.5\n425,433,4.0\n425,434,4.5\n425,435,5.0\n425,436,5.5\n425,437,6.0\n425,438,6.5\n425,439,7.0\n425,440,7.5\n425,441,8.0\n425,442,8.5\n425,443,9.0\n425,444,9.5\n425,445,10.0\n425,446,10.5\n425,447,11.0\n425,448,11.5\n425,449,12.0\n425,450,0.5\n425,451,1.0\n425,452,1.5\n425,453,2.0\n425,454,2.5\n425,455,3.0\n425,456,3.5\n425,457,4.0\n425,458,4.5\n425,459,5.0\n425,460,5.5\n425,461,6.0\n425,462,6.5\n425,463,7.0\n425,464,7.5\n425,465,8.0\n425,466,8.5\n425,467,9.0\n425,468,9.5\n425,469,10.0\n425,470,10.5\n425,471,11.0\n425,472,11.5\n425,473,12.0\n425,474,12.5\n425,475,1.0\n425,476,1.5\n425,477,2.0\n425,478,2.5\n425,479,3.0\n425,480,3.5\n425,481,4.0\n425,482,4.5\n425,483,5.0\n425,484,5.5\n425,485,6.0\n425,486,6.5\n425,487,7.0\n425,488,7.5\n425,489,8.0\n425,490,8.5\n425,491,9.0\n425,492,9.5\n425,493,10.0\n425,494,10.5\n425,495,11.0\n425,496,11.5\n425,497,12.0\n425,498,12.5\n425,499,13.0\n425,500,1.5\n425,501,2.0\n425,502,2.5\n425,503,3.0\n425,504,3.5\n425,505,4.0\n425,506,4.5\n425,507,5.0\n425,508,5.5\n425,509,6.0\n425,510,6.5\n425,511,7.0\n425,512,7.5\n425,513,8.0\n425,514,8.5\n425,515,9.0\n425,516,9.5\n425,517,10.0\n425,518,10.5\n425,519,11.0\n425,520,11.5\n425,521,12.0\n425,522,12.5\n425,523,13.0\n425,524,13.5\n425,525,2.0\n425,526,2.5\n425,527,3.0\n425,528,3.5\n425,529,4.0\n425,530,4.5\n425,531,5.0\n425,532,5.5\n425,533,6.0\n425,534,6.5\n425,535,7.0\n425,536,7.5\n425,537,8.0\n425,538,8.5\n425,539,9.0\n425,540,9.5\n425,541,10.0\n425,542,10.5\n425,543,11.0\n425,544,11.5\n425,545,12.0\n425,546,12.5\n425,547,13.0\n425,548,13.5\n425,549,14.0\n425,550,2.5\n425,551,3.0\n425,552,3.5\n425,553,4.0\n425,554,4.5\n425,555,5.0\n425,556,5.5\n425,557,6.0\n425,558,6.5\n425,559,7.0\n425,560,7.5\n425,561,8.0\n425,562,8.5\n425,563,9.0\n425,564,9.5\n425,565,10.0\n425,566,10.5\n425,567,11.0\n425,568,11.5\n425,569,12.0\n425,570,12.5\n425,571,13.0\n425,572,13.5\n425,573,14.0\n425,574,14.5\n425,575,3.0\n425,576,3.5\n425,577,4.0\n425,578,4.5\n425,579,5.0\n425,580,5.5\n425,581,6.0\n425,582,6.5\n425,583,7.0\n425,584,7.5\n425,585,8.0\n425,586,8.5\n425,587,9.0\n425,588,9.5\n425,589,10.0\n425,590,10.5\n425,591,11.0\n425,592,11.5\n425,593,12.0\n425,594,12.5\n425,595,13.0\n425,596,13.5\n425,597,14.0\n425,598,14.5\n425,599,15.0\n425,600,3.5\n425,601,4.0\n425,602,4.5\n425,603,5.0\n425,604,5.5\n425,605,6.0\n425,606,6.5\n425,607,7.0\n425,608,7.5\n425,609,8.0\n425,610,8.5\n425,611,9.0\n425,612,9.5\n425,613,10.0\n425,614,10.5\n425,615,11.0\n425,616,11.5\n425,617,12.0\n425,618,12.5\n425,619,13.0\n425,620,13.5\n425,621,14.0\n425,622,14.5\n425,623,15.0\n425,624,15.5\n426,0,9.0\n426,1,8.5\n426,2,9.0\n426,3,9.5\n426,4,10.0\n426,5,10.5\n426,6,11.0\n426,7,11.5\n426,8,12.0\n426,9,12.5\n426,10,13.0\n426,11,13.5\n426,12,14.0\n426,13,14.5\n426,14,15.0\n426,15,15.5\n426,16,16.0\n426,17,16.5\n426,18,17.0\n426,19,17.5\n426,20,18.0\n426,21,18.5\n426,22,19.0\n426,23,19.5\n426,24,20.0\n426,25,8.5\n426,26,8.0\n426,27,8.5\n426,28,9.0\n426,29,9.5\n426,30,10.0\n426,31,10.5\n426,32,11.0\n426,33,11.5\n426,34,12.0\n426,35,12.5\n426,36,13.0\n426,37,13.5\n426,38,14.0\n426,39,14.5\n426,40,15.0\n426,41,15.5\n426,42,16.0\n426,43,16.5\n426,44,17.0\n426,45,17.5\n426,46,18.0\n426,47,18.5\n426,48,19.0\n426,49,19.5\n426,50,8.0\n426,51,7.5\n426,52,8.0\n426,53,8.5\n426,54,9.0\n426,55,9.5\n426,56,10.0\n426,57,10.5\n426,58,11.0\n426,59,11.5\n426,60,12.0\n426,61,12.5\n426,62,13.0\n426,63,13.5\n426,64,14.0\n426,65,14.5\n426,66,15.0\n426,67,15.5\n426,68,16.0\n426,69,16.5\n426,70,17.0\n426,71,17.5\n426,72,18.0\n426,73,18.5\n426,74,19.0\n426,75,7.5\n426,76,7.0\n426,77,7.5\n426,78,8.0\n426,79,8.5\n426,80,9.0\n426,81,9.5\n426,82,10.0\n426,83,10.5\n426,84,11.0\n426,85,11.5\n426,86,12.0\n426,87,12.5\n426,88,13.0\n426,89,13.5\n426,90,14.0\n426,91,14.5\n426,92,15.0\n426,93,15.5\n426,94,16.0\n426,95,16.5\n426,96,17.0\n426,97,17.5\n426,98,18.0\n426,99,18.5\n426,100,7.0\n426,101,6.5\n426,102,7.0\n426,103,7.5\n426,104,8.0\n426,105,8.5\n426,106,9.0\n426,107,9.5\n426,108,10.0\n426,109,10.5\n426,110,11.0\n426,111,11.5\n426,112,12.0\n426,113,12.5\n426,114,13.0\n426,115,13.5\n426,116,14.0\n426,117,14.5\n426,118,15.0\n426,119,15.5\n426,120,16.0\n426,121,16.5\n426,122,17.0\n426,123,17.5\n426,124,18.0\n426,125,6.5\n426,126,6.0\n426,127,6.5\n426,128,7.0\n426,129,7.5\n426,130,8.0\n426,131,8.5\n426,132,9.0\n426,133,9.5\n426,134,10.0\n426,135,10.5\n426,136,11.0\n426,137,11.5\n426,138,12.0\n426,139,12.5\n426,140,13.0\n426,141,13.5\n426,142,14.0\n426,143,14.5\n426,144,15.0\n426,145,15.5\n426,146,16.0\n426,147,16.5\n426,148,17.0\n426,149,17.5\n426,150,6.0\n426,151,5.5\n426,152,6.0\n426,153,6.5\n426,154,7.0\n426,155,7.5\n426,156,8.0\n426,157,8.5\n426,158,9.0\n426,159,9.5\n426,160,10.0\n426,161,10.5\n426,162,11.0\n426,163,11.5\n426,164,12.0\n426,165,12.5\n426,166,13.0\n426,167,13.5\n426,168,14.0\n426,169,14.5\n426,170,15.0\n426,171,15.5\n426,172,16.0\n426,173,16.5\n426,174,17.0\n426,175,5.5\n426,176,5.0\n426,177,5.5\n426,178,6.0\n426,179,6.5\n426,180,7.0\n426,181,7.5\n426,182,8.0\n426,183,8.5\n426,184,9.0\n426,185,9.5\n426,186,10.0\n426,187,10.5\n426,188,11.0\n426,189,11.5\n426,190,12.0\n426,191,12.5\n426,192,13.0\n426,193,13.5\n426,194,14.0\n426,195,14.5\n426,196,15.0\n426,197,15.5\n426,198,16.0\n426,199,16.5\n426,200,5.0\n426,201,4.5\n426,202,5.0\n426,203,5.5\n426,204,6.0\n426,205,6.5\n426,206,7.0\n426,207,7.5\n426,208,8.0\n426,209,8.5\n426,210,9.0\n426,211,9.5\n426,212,10.0\n426,213,10.5\n426,214,11.0\n426,215,11.5\n426,216,12.0\n426,217,12.5\n426,218,13.0\n426,219,13.5\n426,220,14.0\n426,221,14.5\n426,222,15.0\n426,223,15.5\n426,224,16.0\n426,225,4.5\n426,226,4.0\n426,227,4.5\n426,228,5.0\n426,229,5.5\n426,230,6.0\n426,231,6.5\n426,232,7.0\n426,233,7.5\n426,234,8.0\n426,235,8.5\n426,236,9.0\n426,237,9.5\n426,238,10.0\n426,239,10.5\n426,240,11.0\n426,241,11.5\n426,242,12.0\n426,243,12.5\n426,244,13.0\n426,245,13.5\n426,246,14.0\n426,247,14.5\n426,248,15.0\n426,249,15.5\n426,250,4.0\n426,251,3.5\n426,252,4.0\n426,253,4.5\n426,254,5.0\n426,255,5.5\n426,256,6.0\n426,257,6.5\n426,258,7.0\n426,259,7.5\n426,260,8.0\n426,261,8.5\n426,262,9.0\n426,263,9.5\n426,264,10.0\n426,265,10.5\n426,266,11.0\n426,267,11.5\n426,268,12.0\n426,269,12.5\n426,270,13.0\n426,271,13.5\n426,272,14.0\n426,273,14.5\n426,274,15.0\n426,275,3.5\n426,276,3.0\n426,277,3.5\n426,278,4.0\n426,279,4.5\n426,280,5.0\n426,281,5.5\n426,282,6.0\n426,283,6.5\n426,284,7.0\n426,285,7.5\n426,286,8.0\n426,287,8.5\n426,288,9.0\n426,289,9.5\n426,290,10.0\n426,291,10.5\n426,292,11.0\n426,293,11.5\n426,294,12.0\n426,295,12.5\n426,296,13.0\n426,297,13.5\n426,298,14.0\n426,299,14.5\n426,300,3.0\n426,301,2.5\n426,302,3.0\n426,303,3.5\n426,304,4.0\n426,305,4.5\n426,306,5.0\n426,307,5.5\n426,308,6.0\n426,309,6.5\n426,310,7.0\n426,311,7.5\n426,312,8.0\n426,313,8.5\n426,314,9.0\n426,315,9.5\n426,316,10.0\n426,317,10.5\n426,318,11.0\n426,319,11.5\n426,320,12.0\n426,321,12.5\n426,322,13.0\n426,323,13.5\n426,324,14.0\n426,325,2.5\n426,326,2.0\n426,327,2.5\n426,328,3.0\n426,329,3.5\n426,330,4.0\n426,331,4.5\n426,332,5.0\n426,333,5.5\n426,334,6.0\n426,335,6.5\n426,336,7.0\n426,337,7.5\n426,338,8.0\n426,339,8.5\n426,340,9.0\n426,341,9.5\n426,342,10.0\n426,343,10.5\n426,344,11.0\n426,345,11.5\n426,346,12.0\n426,347,12.5\n426,348,13.0\n426,349,13.5\n426,350,2.0\n426,351,1.5\n426,352,2.0\n426,353,2.5\n426,354,3.0\n426,355,3.5\n426,356,4.0\n426,357,4.5\n426,358,5.0\n426,359,5.5\n426,360,6.0\n426,361,6.5\n426,362,7.0\n426,363,7.5\n426,364,8.0\n426,365,8.5\n426,366,9.0\n426,367,9.5\n426,368,10.0\n426,369,10.5\n426,370,11.0\n426,371,11.5\n426,372,12.0\n426,373,12.5\n426,374,13.0\n426,375,1.5\n426,376,1.0\n426,377,1.5\n426,378,2.0\n426,379,2.5\n426,380,3.0\n426,381,3.5\n426,382,4.0\n426,383,4.5\n426,384,5.0\n426,385,5.5\n426,386,6.0\n426,387,6.5\n426,388,7.0\n426,389,7.5\n426,390,8.0\n426,391,8.5\n426,392,9.0\n426,393,9.5\n426,394,10.0\n426,395,10.5\n426,396,11.0\n426,397,11.5\n426,398,12.0\n426,399,12.5\n426,400,1.0\n426,401,0.5\n426,402,1.0\n426,403,1.5\n426,404,2.0\n426,405,2.5\n426,406,3.0\n426,407,3.5\n426,408,4.0\n426,409,4.5\n426,410,5.0\n426,411,5.5\n426,412,6.0\n426,413,6.5\n426,414,7.0\n426,415,7.5\n426,416,8.0\n426,417,8.5\n426,418,9.0\n426,419,9.5\n426,420,10.0\n426,421,10.5\n426,422,11.0\n426,423,11.5\n426,424,12.0\n426,425,0.5\n426,426,0\n426,427,0.5\n426,428,1.0\n426,429,1.5\n426,430,2.0\n426,431,2.5\n426,432,3.0\n426,433,3.5\n426,434,4.0\n426,435,4.5\n426,436,5.0\n426,437,5.5\n426,438,6.0\n426,439,6.5\n426,440,7.0\n426,441,7.5\n426,442,8.0\n426,443,8.5\n426,444,9.0\n426,445,9.5\n426,446,10.0\n426,447,10.5\n426,448,11.0\n426,449,11.5\n426,450,1.0\n426,451,0.5\n426,452,1.0\n426,453,1.5\n426,454,2.0\n426,455,2.5\n426,456,3.0\n426,457,3.5\n426,458,4.0\n426,459,4.5\n426,460,5.0\n426,461,5.5\n426,462,6.0\n426,463,6.5\n426,464,7.0\n426,465,7.5\n426,466,8.0\n426,467,8.5\n426,468,9.0\n426,469,9.5\n426,470,10.0\n426,471,10.5\n426,472,11.0\n426,473,11.5\n426,474,12.0\n426,475,1.5\n426,476,1.0\n426,477,1.5\n426,478,2.0\n426,479,2.5\n426,480,3.0\n426,481,3.5\n426,482,4.0\n426,483,4.5\n426,484,5.0\n426,485,5.5\n426,486,6.0\n426,487,6.5\n426,488,7.0\n426,489,7.5\n426,490,8.0\n426,491,8.5\n426,492,9.0\n426,493,9.5\n426,494,10.0\n426,495,10.5\n426,496,11.0\n426,497,11.5\n426,498,12.0\n426,499,12.5\n426,500,2.0\n426,501,1.5\n426,502,2.0\n426,503,2.5\n426,504,3.0\n426,505,3.5\n426,506,4.0\n426,507,4.5\n426,508,5.0\n426,509,5.5\n426,510,6.0\n426,511,6.5\n426,512,7.0\n426,513,7.5\n426,514,8.0\n426,515,8.5\n426,516,9.0\n426,517,9.5\n426,518,10.0\n426,519,10.5\n426,520,11.0\n426,521,11.5\n426,522,12.0\n426,523,12.5\n426,524,13.0\n426,525,2.5\n426,526,2.0\n426,527,2.5\n426,528,3.0\n426,529,3.5\n426,530,4.0\n426,531,4.5\n426,532,5.0\n426,533,5.5\n426,534,6.0\n426,535,6.5\n426,536,7.0\n426,537,7.5\n426,538,8.0\n426,539,8.5\n426,540,9.0\n426,541,9.5\n426,542,10.0\n426,543,10.5\n426,544,11.0\n426,545,11.5\n426,546,12.0\n426,547,12.5\n426,548,13.0\n426,549,13.5\n426,550,3.0\n426,551,2.5\n426,552,3.0\n426,553,3.5\n426,554,4.0\n426,555,4.5\n426,556,5.0\n426,557,5.5\n426,558,6.0\n426,559,6.5\n426,560,7.0\n426,561,7.5\n426,562,8.0\n426,563,8.5\n426,564,9.0\n426,565,9.5\n426,566,10.0\n426,567,10.5\n426,568,11.0\n426,569,11.5\n426,570,12.0\n426,571,12.5\n426,572,13.0\n426,573,13.5\n426,574,14.0\n426,575,3.5\n426,576,3.0\n426,577,3.5\n426,578,4.0\n426,579,4.5\n426,580,5.0\n426,581,5.5\n426,582,6.0\n426,583,6.5\n426,584,7.0\n426,585,7.5\n426,586,8.0\n426,587,8.5\n426,588,9.0\n426,589,9.5\n426,590,10.0\n426,591,10.5\n426,592,11.0\n426,593,11.5\n426,594,12.0\n426,595,12.5\n426,596,13.0\n426,597,13.5\n426,598,14.0\n426,599,14.5\n426,600,4.0\n426,601,3.5\n426,602,4.0\n426,603,4.5\n426,604,5.0\n426,605,5.5\n426,606,6.0\n426,607,6.5\n426,608,7.0\n426,609,7.5\n426,610,8.0\n426,611,8.5\n426,612,9.0\n426,613,9.5\n426,614,10.0\n426,615,10.5\n426,616,11.0\n426,617,11.5\n426,618,12.0\n426,619,12.5\n426,620,13.0\n426,621,13.5\n426,622,14.0\n426,623,14.5\n426,624,15.0\n427,0,9.5\n427,1,9.0\n427,2,8.5\n427,3,9.0\n427,4,9.5\n427,5,10.0\n427,6,10.5\n427,7,11.0\n427,8,11.5\n427,9,12.0\n427,10,12.5\n427,11,13.0\n427,12,13.5\n427,13,14.0\n427,14,14.5\n427,15,15.0\n427,16,15.5\n427,17,16.0\n427,18,16.5\n427,19,17.0\n427,20,17.5\n427,21,18.0\n427,22,18.5\n427,23,19.0\n427,24,19.5\n427,25,9.0\n427,26,8.5\n427,27,8.0\n427,28,8.5\n427,29,9.0\n427,30,9.5\n427,31,10.0\n427,32,10.5\n427,33,11.0\n427,34,11.5\n427,35,12.0\n427,36,12.5\n427,37,13.0\n427,38,13.5\n427,39,14.0\n427,40,14.5\n427,41,15.0\n427,42,15.5\n427,43,16.0\n427,44,16.5\n427,45,17.0\n427,46,17.5\n427,47,18.0\n427,48,18.5\n427,49,19.0\n427,50,8.5\n427,51,8.0\n427,52,7.5\n427,53,8.0\n427,54,8.5\n427,55,9.0\n427,56,9.5\n427,57,10.0\n427,58,10.5\n427,59,11.0\n427,60,11.5\n427,61,12.0\n427,62,12.5\n427,63,13.0\n427,64,13.5\n427,65,14.0\n427,66,14.5\n427,67,15.0\n427,68,15.5\n427,69,16.0\n427,70,16.5\n427,71,17.0\n427,72,17.5\n427,73,18.0\n427,74,18.5\n427,75,8.0\n427,76,7.5\n427,77,7.0\n427,78,7.5\n427,79,8.0\n427,80,8.5\n427,81,9.0\n427,82,9.5\n427,83,10.0\n427,84,10.5\n427,85,11.0\n427,86,11.5\n427,87,12.0\n427,88,12.5\n427,89,13.0\n427,90,13.5\n427,91,14.0\n427,92,14.5\n427,93,15.0\n427,94,15.5\n427,95,16.0\n427,96,16.5\n427,97,17.0\n427,98,17.5\n427,99,18.0\n427,100,7.5\n427,101,7.0\n427,102,6.5\n427,103,7.0\n427,104,7.5\n427,105,8.0\n427,106,8.5\n427,107,9.0\n427,108,9.5\n427,109,10.0\n427,110,10.5\n427,111,11.0\n427,112,11.5\n427,113,12.0\n427,114,12.5\n427,115,13.0\n427,116,13.5\n427,117,14.0\n427,118,14.5\n427,119,15.0\n427,120,15.5\n427,121,16.0\n427,122,16.5\n427,123,17.0\n427,124,17.5\n427,125,7.0\n427,126,6.5\n427,127,6.0\n427,128,6.5\n427,129,7.0\n427,130,7.5\n427,131,8.0\n427,132,8.5\n427,133,9.0\n427,134,9.5\n427,135,10.0\n427,136,10.5\n427,137,11.0\n427,138,11.5\n427,139,12.0\n427,140,12.5\n427,141,13.0\n427,142,13.5\n427,143,14.0\n427,144,14.5\n427,145,15.0\n427,146,15.5\n427,147,16.0\n427,148,16.5\n427,149,17.0\n427,150,6.5\n427,151,6.0\n427,152,5.5\n427,153,6.0\n427,154,6.5\n427,155,7.0\n427,156,7.5\n427,157,8.0\n427,158,8.5\n427,159,9.0\n427,160,9.5\n427,161,10.0\n427,162,10.5\n427,163,11.0\n427,164,11.5\n427,165,12.0\n427,166,12.5\n427,167,13.0\n427,168,13.5\n427,169,14.0\n427,170,14.5\n427,171,15.0\n427,172,15.5\n427,173,16.0\n427,174,16.5\n427,175,6.0\n427,176,5.5\n427,177,5.0\n427,178,5.5\n427,179,6.0\n427,180,6.5\n427,181,7.0\n427,182,7.5\n427,183,8.0\n427,184,8.5\n427,185,9.0\n427,186,9.5\n427,187,10.0\n427,188,10.5\n427,189,11.0\n427,190,11.5\n427,191,12.0\n427,192,12.5\n427,193,13.0\n427,194,13.5\n427,195,14.0\n427,196,14.5\n427,197,15.0\n427,198,15.5\n427,199,16.0\n427,200,5.5\n427,201,5.0\n427,202,4.5\n427,203,5.0\n427,204,5.5\n427,205,6.0\n427,206,6.5\n427,207,7.0\n427,208,7.5\n427,209,8.0\n427,210,8.5\n427,211,9.0\n427,212,9.5\n427,213,10.0\n427,214,10.5\n427,215,11.0\n427,216,11.5\n427,217,12.0\n427,218,12.5\n427,219,13.0\n427,220,13.5\n427,221,14.0\n427,222,14.5\n427,223,15.0\n427,224,15.5\n427,225,5.0\n427,226,4.5\n427,227,4.0\n427,228,4.5\n427,229,5.0\n427,230,5.5\n427,231,6.0\n427,232,6.5\n427,233,7.0\n427,234,7.5\n427,235,8.0\n427,236,8.5\n427,237,9.0\n427,238,9.5\n427,239,10.0\n427,240,10.5\n427,241,11.0\n427,242,11.5\n427,243,12.0\n427,244,12.5\n427,245,13.0\n427,246,13.5\n427,247,14.0\n427,248,14.5\n427,249,15.0\n427,250,4.5\n427,251,4.0\n427,252,3.5\n427,253,4.0\n427,254,4.5\n427,255,5.0\n427,256,5.5\n427,257,6.0\n427,258,6.5\n427,259,7.0\n427,260,7.5\n427,261,8.0\n427,262,8.5\n427,263,9.0\n427,264,9.5\n427,265,10.0\n427,266,10.5\n427,267,11.0\n427,268,11.5\n427,269,12.0\n427,270,12.5\n427,271,13.0\n427,272,13.5\n427,273,14.0\n427,274,14.5\n427,275,4.0\n427,276,3.5\n427,277,3.0\n427,278,3.5\n427,279,4.0\n427,280,4.5\n427,281,5.0\n427,282,5.5\n427,283,6.0\n427,284,6.5\n427,285,7.0\n427,286,7.5\n427,287,8.0\n427,288,8.5\n427,289,9.0\n427,290,9.5\n427,291,10.0\n427,292,10.5\n427,293,11.0\n427,294,11.5\n427,295,12.0\n427,296,12.5\n427,297,13.0\n427,298,13.5\n427,299,14.0\n427,300,3.5\n427,301,3.0\n427,302,2.5\n427,303,3.0\n427,304,3.5\n427,305,4.0\n427,306,4.5\n427,307,5.0\n427,308,5.5\n427,309,6.0\n427,310,6.5\n427,311,7.0\n427,312,7.5\n427,313,8.0\n427,314,8.5\n427,315,9.0\n427,316,9.5\n427,317,10.0\n427,318,10.5\n427,319,11.0\n427,320,11.5\n427,321,12.0\n427,322,12.5\n427,323,13.0\n427,324,13.5\n427,325,3.0\n427,326,2.5\n427,327,2.0\n427,328,2.5\n427,329,3.0\n427,330,3.5\n427,331,4.0\n427,332,4.5\n427,333,5.0\n427,334,5.5\n427,335,6.0\n427,336,6.5\n427,337,7.0\n427,338,7.5\n427,339,8.0\n427,340,8.5\n427,341,9.0\n427,342,9.5\n427,343,10.0\n427,344,10.5\n427,345,11.0\n427,346,11.5\n427,347,12.0\n427,348,12.5\n427,349,13.0\n427,350,2.5\n427,351,2.0\n427,352,1.5\n427,353,2.0\n427,354,2.5\n427,355,3.0\n427,356,3.5\n427,357,4.0\n427,358,4.5\n427,359,5.0\n427,360,5.5\n427,361,6.0\n427,362,6.5\n427,363,7.0\n427,364,7.5\n427,365,8.0\n427,366,8.5\n427,367,9.0\n427,368,9.5\n427,369,10.0\n427,370,10.5\n427,371,11.0\n427,372,11.5\n427,373,12.0\n427,374,12.5\n427,375,2.0\n427,376,1.5\n427,377,1.0\n427,378,1.5\n427,379,2.0\n427,380,2.5\n427,381,3.0\n427,382,3.5\n427,383,4.0\n427,384,4.5\n427,385,5.0\n427,386,5.5\n427,387,6.0\n427,388,6.5\n427,389,7.0\n427,390,7.5\n427,391,8.0\n427,392,8.5\n427,393,9.0\n427,394,9.5\n427,395,10.0\n427,396,10.5\n427,397,11.0\n427,398,11.5\n427,399,12.0\n427,400,1.5\n427,401,1.0\n427,402,0.5\n427,403,1.0\n427,404,1.5\n427,405,2.0\n427,406,2.5\n427,407,3.0\n427,408,3.5\n427,409,4.0\n427,410,4.5\n427,411,5.0\n427,412,5.5\n427,413,6.0\n427,414,6.5\n427,415,7.0\n427,416,7.5\n427,417,8.0\n427,418,8.5\n427,419,9.0\n427,420,9.5\n427,421,10.0\n427,422,10.5\n427,423,11.0\n427,424,11.5\n427,425,1.0\n427,426,0.5\n427,427,0\n427,428,0.5\n427,429,1.0\n427,430,1.5\n427,431,2.0\n427,432,2.5\n427,433,3.0\n427,434,3.5\n427,435,4.0\n427,436,4.5\n427,437,5.0\n427,438,5.5\n427,439,6.0\n427,440,6.5\n427,441,7.0\n427,442,7.5\n427,443,8.0\n427,444,8.5\n427,445,9.0\n427,446,9.5\n427,447,10.0\n427,448,10.5\n427,449,11.0\n427,450,1.5\n427,451,1.0\n427,452,0.5\n427,453,1.0\n427,454,1.5\n427,455,2.0\n427,456,2.5\n427,457,3.0\n427,458,3.5\n427,459,4.0\n427,460,4.5\n427,461,5.0\n427,462,5.5\n427,463,6.0\n427,464,6.5\n427,465,7.0\n427,466,7.5\n427,467,8.0\n427,468,8.5\n427,469,9.0\n427,470,9.5\n427,471,10.0\n427,472,10.5\n427,473,11.0\n427,474,11.5\n427,475,2.0\n427,476,1.5\n427,477,1.0\n427,478,1.5\n427,479,2.0\n427,480,2.5\n427,481,3.0\n427,482,3.5\n427,483,4.0\n427,484,4.5\n427,485,5.0\n427,486,5.5\n427,487,6.0\n427,488,6.5\n427,489,7.0\n427,490,7.5\n427,491,8.0\n427,492,8.5\n427,493,9.0\n427,494,9.5\n427,495,10.0\n427,496,10.5\n427,497,11.0\n427,498,11.5\n427,499,12.0\n427,500,2.5\n427,501,2.0\n427,502,1.5\n427,503,2.0\n427,504,2.5\n427,505,3.0\n427,506,3.5\n427,507,4.0\n427,508,4.5\n427,509,5.0\n427,510,5.5\n427,511,6.0\n427,512,6.5\n427,513,7.0\n427,514,7.5\n427,515,8.0\n427,516,8.5\n427,517,9.0\n427,518,9.5\n427,519,10.0\n427,520,10.5\n427,521,11.0\n427,522,11.5\n427,523,12.0\n427,524,12.5\n427,525,3.0\n427,526,2.5\n427,527,2.0\n427,528,2.5\n427,529,3.0\n427,530,3.5\n427,531,4.0\n427,532,4.5\n427,533,5.0\n427,534,5.5\n427,535,6.0\n427,536,6.5\n427,537,7.0\n427,538,7.5\n427,539,8.0\n427,540,8.5\n427,541,9.0\n427,542,9.5\n427,543,10.0\n427,544,10.5\n427,545,11.0\n427,546,11.5\n427,547,12.0\n427,548,12.5\n427,549,13.0\n427,550,3.5\n427,551,3.0\n427,552,2.5\n427,553,3.0\n427,554,3.5\n427,555,4.0\n427,556,4.5\n427,557,5.0\n427,558,5.5\n427,559,6.0\n427,560,6.5\n427,561,7.0\n427,562,7.5\n427,563,8.0\n427,564,8.5\n427,565,9.0\n427,566,9.5\n427,567,10.0\n427,568,10.5\n427,569,11.0\n427,570,11.5\n427,571,12.0\n427,572,12.5\n427,573,13.0\n427,574,13.5\n427,575,4.0\n427,576,3.5\n427,577,3.0\n427,578,3.5\n427,579,4.0\n427,580,4.5\n427,581,5.0\n427,582,5.5\n427,583,6.0\n427,584,6.5\n427,585,7.0\n427,586,7.5\n427,587,8.0\n427,588,8.5\n427,589,9.0\n427,590,9.5\n427,591,10.0\n427,592,10.5\n427,593,11.0\n427,594,11.5\n427,595,12.0\n427,596,12.5\n427,597,13.0\n427,598,13.5\n427,599,14.0\n427,600,4.5\n427,601,4.0\n427,602,3.5\n427,603,4.0\n427,604,4.5\n427,605,5.0\n427,606,5.5\n427,607,6.0\n427,608,6.5\n427,609,7.0\n427,610,7.5\n427,611,8.0\n427,612,8.5\n427,613,9.0\n427,614,9.5\n427,615,10.0\n427,616,10.5\n427,617,11.0\n427,618,11.5\n427,619,12.0\n427,620,12.5\n427,621,13.0\n427,622,13.5\n427,623,14.0\n427,624,14.5\n428,0,10.0\n428,1,9.5\n428,2,9.0\n428,3,8.5\n428,4,9.0\n428,5,9.5\n428,6,10.0\n428,7,10.5\n428,8,11.0\n428,9,11.5\n428,10,12.0\n428,11,12.5\n428,12,13.0\n428,13,13.5\n428,14,14.0\n428,15,14.5\n428,16,15.0\n428,17,15.5\n428,18,16.0\n428,19,16.5\n428,20,17.0\n428,21,17.5\n428,22,18.0\n428,23,18.5\n428,24,19.0\n428,25,9.5\n428,26,9.0\n428,27,8.5\n428,28,8.0\n428,29,8.5\n428,30,9.0\n428,31,9.5\n428,32,10.0\n428,33,10.5\n428,34,11.0\n428,35,11.5\n428,36,12.0\n428,37,12.5\n428,38,13.0\n428,39,13.5\n428,40,14.0\n428,41,14.5\n428,42,15.0\n428,43,15.5\n428,44,16.0\n428,45,16.5\n428,46,17.0\n428,47,17.5\n428,48,18.0\n428,49,18.5\n428,50,9.0\n428,51,8.5\n428,52,8.0\n428,53,7.5\n428,54,8.0\n428,55,8.5\n428,56,9.0\n428,57,9.5\n428,58,10.0\n428,59,10.5\n428,60,11.0\n428,61,11.5\n428,62,12.0\n428,63,12.5\n428,64,13.0\n428,65,13.5\n428,66,14.0\n428,67,14.5\n428,68,15.0\n428,69,15.5\n428,70,16.0\n428,71,16.5\n428,72,17.0\n428,73,17.5\n428,74,18.0\n428,75,8.5\n428,76,8.0\n428,77,7.5\n428,78,7.0\n428,79,7.5\n428,80,8.0\n428,81,8.5\n428,82,9.0\n428,83,9.5\n428,84,10.0\n428,85,10.5\n428,86,11.0\n428,87,11.5\n428,88,12.0\n428,89,12.5\n428,90,13.0\n428,91,13.5\n428,92,14.0\n428,93,14.5\n428,94,15.0\n428,95,15.5\n428,96,16.0\n428,97,16.5\n428,98,17.0\n428,99,17.5\n428,100,8.0\n428,101,7.5\n428,102,7.0\n428,103,6.5\n428,104,7.0\n428,105,7.5\n428,106,8.0\n428,107,8.5\n428,108,9.0\n428,109,9.5\n428,110,10.0\n428,111,10.5\n428,112,11.0\n428,113,11.5\n428,114,12.0\n428,115,12.5\n428,116,13.0\n428,117,13.5\n428,118,14.0\n428,119,14.5\n428,120,15.0\n428,121,15.5\n428,122,16.0\n428,123,16.5\n428,124,17.0\n428,125,7.5\n428,126,7.0\n428,127,6.5\n428,128,6.0\n428,129,6.5\n428,130,7.0\n428,131,7.5\n428,132,8.0\n428,133,8.5\n428,134,9.0\n428,135,9.5\n428,136,10.0\n428,137,10.5\n428,138,11.0\n428,139,11.5\n428,140,12.0\n428,141,12.5\n428,142,13.0\n428,143,13.5\n428,144,14.0\n428,145,14.5\n428,146,15.0\n428,147,15.5\n428,148,16.0\n428,149,16.5\n428,150,7.0\n428,151,6.5\n428,152,6.0\n428,153,5.5\n428,154,6.0\n428,155,6.5\n428,156,7.0\n428,157,7.5\n428,158,8.0\n428,159,8.5\n428,160,9.0\n428,161,9.5\n428,162,10.0\n428,163,10.5\n428,164,11.0\n428,165,11.5\n428,166,12.0\n428,167,12.5\n428,168,13.0\n428,169,13.5\n428,170,14.0\n428,171,14.5\n428,172,15.0\n428,173,15.5\n428,174,16.0\n428,175,6.5\n428,176,6.0\n428,177,5.5\n428,178,5.0\n428,179,5.5\n428,180,6.0\n428,181,6.5\n428,182,7.0\n428,183,7.5\n428,184,8.0\n428,185,8.5\n428,186,9.0\n428,187,9.5\n428,188,10.0\n428,189,10.5\n428,190,11.0\n428,191,11.5\n428,192,12.0\n428,193,12.5\n428,194,13.0\n428,195,13.5\n428,196,14.0\n428,197,14.5\n428,198,15.0\n428,199,15.5\n428,200,6.0\n428,201,5.5\n428,202,5.0\n428,203,4.5\n428,204,5.0\n428,205,5.5\n428,206,6.0\n428,207,6.5\n428,208,7.0\n428,209,7.5\n428,210,8.0\n428,211,8.5\n428,212,9.0\n428,213,9.5\n428,214,10.0\n428,215,10.5\n428,216,11.0\n428,217,11.5\n428,218,12.0\n428,219,12.5\n428,220,13.0\n428,221,13.5\n428,222,14.0\n428,223,14.5\n428,224,15.0\n428,225,5.5\n428,226,5.0\n428,227,4.5\n428,228,4.0\n428,229,4.5\n428,230,5.0\n428,231,5.5\n428,232,6.0\n428,233,6.5\n428,234,7.0\n428,235,7.5\n428,236,8.0\n428,237,8.5\n428,238,9.0\n428,239,9.5\n428,240,10.0\n428,241,10.5\n428,242,11.0\n428,243,11.5\n428,244,12.0\n428,245,12.5\n428,246,13.0\n428,247,13.5\n428,248,14.0\n428,249,14.5\n428,250,5.0\n428,251,4.5\n428,252,4.0\n428,253,3.5\n428,254,4.0\n428,255,4.5\n428,256,5.0\n428,257,5.5\n428,258,6.0\n428,259,6.5\n428,260,7.0\n428,261,7.5\n428,262,8.0\n428,263,8.5\n428,264,9.0\n428,265,9.5\n428,266,10.0\n428,267,10.5\n428,268,11.0\n428,269,11.5\n428,270,12.0\n428,271,12.5\n428,272,13.0\n428,273,13.5\n428,274,14.0\n428,275,4.5\n428,276,4.0\n428,277,3.5\n428,278,3.0\n428,279,3.5\n428,280,4.0\n428,281,4.5\n428,282,5.0\n428,283,5.5\n428,284,6.0\n428,285,6.5\n428,286,7.0\n428,287,7.5\n428,288,8.0\n428,289,8.5\n428,290,9.0\n428,291,9.5\n428,292,10.0\n428,293,10.5\n428,294,11.0\n428,295,11.5\n428,296,12.0\n428,297,12.5\n428,298,13.0\n428,299,13.5\n428,300,4.0\n428,301,3.5\n428,302,3.0\n428,303,2.5\n428,304,3.0\n428,305,3.5\n428,306,4.0\n428,307,4.5\n428,308,5.0\n428,309,5.5\n428,310,6.0\n428,311,6.5\n428,312,7.0\n428,313,7.5\n428,314,8.0\n428,315,8.5\n428,316,9.0\n428,317,9.5\n428,318,10.0\n428,319,10.5\n428,320,11.0\n428,321,11.5\n428,322,12.0\n428,323,12.5\n428,324,13.0\n428,325,3.5\n428,326,3.0\n428,327,2.5\n428,328,2.0\n428,329,2.5\n428,330,3.0\n428,331,3.5\n428,332,4.0\n428,333,4.5\n428,334,5.0\n428,335,5.5\n428,336,6.0\n428,337,6.5\n428,338,7.0\n428,339,7.5\n428,340,8.0\n428,341,8.5\n428,342,9.0\n428,343,9.5\n428,344,10.0\n428,345,10.5\n428,346,11.0\n428,347,11.5\n428,348,12.0\n428,349,12.5\n428,350,3.0\n428,351,2.5\n428,352,2.0\n428,353,1.5\n428,354,2.0\n428,355,2.5\n428,356,3.0\n428,357,3.5\n428,358,4.0\n428,359,4.5\n428,360,5.0\n428,361,5.5\n428,362,6.0\n428,363,6.5\n428,364,7.0\n428,365,7.5\n428,366,8.0\n428,367,8.5\n428,368,9.0\n428,369,9.5\n428,370,10.0\n428,371,10.5\n428,372,11.0\n428,373,11.5\n428,374,12.0\n428,375,2.5\n428,376,2.0\n428,377,1.5\n428,378,1.0\n428,379,1.5\n428,380,2.0\n428,381,2.5\n428,382,3.0\n428,383,3.5\n428,384,4.0\n428,385,4.5\n428,386,5.0\n428,387,5.5\n428,388,6.0\n428,389,6.5\n428,390,7.0\n428,391,7.5\n428,392,8.0\n428,393,8.5\n428,394,9.0\n428,395,9.5\n428,396,10.0\n428,397,10.5\n428,398,11.0\n428,399,11.5\n428,400,2.0\n428,401,1.5\n428,402,1.0\n428,403,0.5\n428,404,1.0\n428,405,1.5\n428,406,2.0\n428,407,2.5\n428,408,3.0\n428,409,3.5\n428,410,4.0\n428,411,4.5\n428,412,5.0\n428,413,5.5\n428,414,6.0\n428,415,6.5\n428,416,7.0\n428,417,7.5\n428,418,8.0\n428,419,8.5\n428,420,9.0\n428,421,9.5\n428,422,10.0\n428,423,10.5\n428,424,11.0\n428,425,1.5\n428,426,1.0\n428,427,0.5\n428,428,0\n428,429,0.5\n428,430,1.0\n428,431,1.5\n428,432,2.0\n428,433,2.5\n428,434,3.0\n428,435,3.5\n428,436,4.0\n428,437,4.5\n428,438,5.0\n428,439,5.5\n428,440,6.0\n428,441,6.5\n428,442,7.0\n428,443,7.5\n428,444,8.0\n428,445,8.5\n428,446,9.0\n428,447,9.5\n428,448,10.0\n428,449,10.5\n428,450,2.0\n428,451,1.5\n428,452,1.0\n428,453,0.5\n428,454,1.0\n428,455,1.5\n428,456,2.0\n428,457,2.5\n428,458,3.0\n428,459,3.5\n428,460,4.0\n428,461,4.5\n428,462,5.0\n428,463,5.5\n428,464,6.0\n428,465,6.5\n428,466,7.0\n428,467,7.5\n428,468,8.0\n428,469,8.5\n428,470,9.0\n428,471,9.5\n428,472,10.0\n428,473,10.5\n428,474,11.0\n428,475,2.5\n428,476,2.0\n428,477,1.5\n428,478,1.0\n428,479,1.5\n428,480,2.0\n428,481,2.5\n428,482,3.0\n428,483,3.5\n428,484,4.0\n428,485,4.5\n428,486,5.0\n428,487,5.5\n428,488,6.0\n428,489,6.5\n428,490,7.0\n428,491,7.5\n428,492,8.0\n428,493,8.5\n428,494,9.0\n428,495,9.5\n428,496,10.0\n428,497,10.5\n428,498,11.0\n428,499,11.5\n428,500,3.0\n428,501,2.5\n428,502,2.0\n428,503,1.5\n428,504,2.0\n428,505,2.5\n428,506,3.0\n428,507,3.5\n428,508,4.0\n428,509,4.5\n428,510,5.0\n428,511,5.5\n428,512,6.0\n428,513,6.5\n428,514,7.0\n428,515,7.5\n428,516,8.0\n428,517,8.5\n428,518,9.0\n428,519,9.5\n428,520,10.0\n428,521,10.5\n428,522,11.0\n428,523,11.5\n428,524,12.0\n428,525,3.5\n428,526,3.0\n428,527,2.5\n428,528,2.0\n428,529,2.5\n428,530,3.0\n428,531,3.5\n428,532,4.0\n428,533,4.5\n428,534,5.0\n428,535,5.5\n428,536,6.0\n428,537,6.5\n428,538,7.0\n428,539,7.5\n428,540,8.0\n428,541,8.5\n428,542,9.0\n428,543,9.5\n428,544,10.0\n428,545,10.5\n428,546,11.0\n428,547,11.5\n428,548,12.0\n428,549,12.5\n428,550,4.0\n428,551,3.5\n428,552,3.0\n428,553,2.5\n428,554,3.0\n428,555,3.5\n428,556,4.0\n428,557,4.5\n428,558,5.0\n428,559,5.5\n428,560,6.0\n428,561,6.5\n428,562,7.0\n428,563,7.5\n428,564,8.0\n428,565,8.5\n428,566,9.0\n428,567,9.5\n428,568,10.0\n428,569,10.5\n428,570,11.0\n428,571,11.5\n428,572,12.0\n428,573,12.5\n428,574,13.0\n428,575,4.5\n428,576,4.0\n428,577,3.5\n428,578,3.0\n428,579,3.5\n428,580,4.0\n428,581,4.5\n428,582,5.0\n428,583,5.5\n428,584,6.0\n428,585,6.5\n428,586,7.0\n428,587,7.5\n428,588,8.0\n428,589,8.5\n428,590,9.0\n428,591,9.5\n428,592,10.0\n428,593,10.5\n428,594,11.0\n428,595,11.5\n428,596,12.0\n428,597,12.5\n428,598,13.0\n428,599,13.5\n428,600,5.0\n428,601,4.5\n428,602,4.0\n428,603,3.5\n428,604,4.0\n428,605,4.5\n428,606,5.0\n428,607,5.5\n428,608,6.0\n428,609,6.5\n428,610,7.0\n428,611,7.5\n428,612,8.0\n428,613,8.5\n428,614,9.0\n428,615,9.5\n428,616,10.0\n428,617,10.5\n428,618,11.0\n428,619,11.5\n428,620,12.0\n428,621,12.5\n428,622,13.0\n428,623,13.5\n428,624,14.0\n429,0,10.5\n429,1,10.0\n429,2,9.5\n429,3,9.0\n429,4,8.5\n429,5,9.0\n429,6,9.5\n429,7,10.0\n429,8,10.5\n429,9,11.0\n429,10,11.5\n429,11,12.0\n429,12,12.5\n429,13,13.0\n429,14,13.5\n429,15,14.0\n429,16,14.5\n429,17,15.0\n429,18,15.5\n429,19,16.0\n429,20,16.5\n429,21,17.0\n429,22,17.5\n429,23,18.0\n429,24,18.5\n429,25,10.0\n429,26,9.5\n429,27,9.0\n429,28,8.5\n429,29,8.0\n429,30,8.5\n429,31,9.0\n429,32,9.5\n429,33,10.0\n429,34,10.5\n429,35,11.0\n429,36,11.5\n429,37,12.0\n429,38,12.5\n429,39,13.0\n429,40,13.5\n429,41,14.0\n429,42,14.5\n429,43,15.0\n429,44,15.5\n429,45,16.0\n429,46,16.5\n429,47,17.0\n429,48,17.5\n429,49,18.0\n429,50,9.5\n429,51,9.0\n429,52,8.5\n429,53,8.0\n429,54,7.5\n429,55,8.0\n429,56,8.5\n429,57,9.0\n429,58,9.5\n429,59,10.0\n429,60,10.5\n429,61,11.0\n429,62,11.5\n429,63,12.0\n429,64,12.5\n429,65,13.0\n429,66,13.5\n429,67,14.0\n429,68,14.5\n429,69,15.0\n429,70,15.5\n429,71,16.0\n429,72,16.5\n429,73,17.0\n429,74,17.5\n429,75,9.0\n429,76,8.5\n429,77,8.0\n429,78,7.5\n429,79,7.0\n429,80,7.5\n429,81,8.0\n429,82,8.5\n429,83,9.0\n429,84,9.5\n429,85,10.0\n429,86,10.5\n429,87,11.0\n429,88,11.5\n429,89,12.0\n429,90,12.5\n429,91,13.0\n429,92,13.5\n429,93,14.0\n429,94,14.5\n429,95,15.0\n429,96,15.5\n429,97,16.0\n429,98,16.5\n429,99,17.0\n429,100,8.5\n429,101,8.0\n429,102,7.5\n429,103,7.0\n429,104,6.5\n429,105,7.0\n429,106,7.5\n429,107,8.0\n429,108,8.5\n429,109,9.0\n429,110,9.5\n429,111,10.0\n429,112,10.5\n429,113,11.0\n429,114,11.5\n429,115,12.0\n429,116,12.5\n429,117,13.0\n429,118,13.5\n429,119,14.0\n429,120,14.5\n429,121,15.0\n429,122,15.5\n429,123,16.0\n429,124,16.5\n429,125,8.0\n429,126,7.5\n429,127,7.0\n429,128,6.5\n429,129,6.0\n429,130,6.5\n429,131,7.0\n429,132,7.5\n429,133,8.0\n429,134,8.5\n429,135,9.0\n429,136,9.5\n429,137,10.0\n429,138,10.5\n429,139,11.0\n429,140,11.5\n429,141,12.0\n429,142,12.5\n429,143,13.0\n429,144,13.5\n429,145,14.0\n429,146,14.5\n429,147,15.0\n429,148,15.5\n429,149,16.0\n429,150,7.5\n429,151,7.0\n429,152,6.5\n429,153,6.0\n429,154,5.5\n429,155,6.0\n429,156,6.5\n429,157,7.0\n429,158,7.5\n429,159,8.0\n429,160,8.5\n429,161,9.0\n429,162,9.5\n429,163,10.0\n429,164,10.5\n429,165,11.0\n429,166,11.5\n429,167,12.0\n429,168,12.5\n429,169,13.0\n429,170,13.5\n429,171,14.0\n429,172,14.5\n429,173,15.0\n429,174,15.5\n429,175,7.0\n429,176,6.5\n429,177,6.0\n429,178,5.5\n429,179,5.0\n429,180,5.5\n429,181,6.0\n429,182,6.5\n429,183,7.0\n429,184,7.5\n429,185,8.0\n429,186,8.5\n429,187,9.0\n429,188,9.5\n429,189,10.0\n429,190,10.5\n429,191,11.0\n429,192,11.5\n429,193,12.0\n429,194,12.5\n429,195,13.0\n429,196,13.5\n429,197,14.0\n429,198,14.5\n429,199,15.0\n429,200,6.5\n429,201,6.0\n429,202,5.5\n429,203,5.0\n429,204,4.5\n429,205,5.0\n429,206,5.5\n429,207,6.0\n429,208,6.5\n429,209,7.0\n429,210,7.5\n429,211,8.0\n429,212,8.5\n429,213,9.0\n429,214,9.5\n429,215,10.0\n429,216,10.5\n429,217,11.0\n429,218,11.5\n429,219,12.0\n429,220,12.5\n429,221,13.0\n429,222,13.5\n429,223,14.0\n429,224,14.5\n429,225,6.0\n429,226,5.5\n429,227,5.0\n429,228,4.5\n429,229,4.0\n429,230,4.5\n429,231,5.0\n429,232,5.5\n429,233,6.0\n429,234,6.5\n429,235,7.0\n429,236,7.5\n429,237,8.0\n429,238,8.5\n429,239,9.0\n429,240,9.5\n429,241,10.0\n429,242,10.5\n429,243,11.0\n429,244,11.5\n429,245,12.0\n429,246,12.5\n429,247,13.0\n429,248,13.5\n429,249,14.0\n429,250,5.5\n429,251,5.0\n429,252,4.5\n429,253,4.0\n429,254,3.5\n429,255,4.0\n429,256,4.5\n429,257,5.0\n429,258,5.5\n429,259,6.0\n429,260,6.5\n429,261,7.0\n429,262,7.5\n429,263,8.0\n429,264,8.5\n429,265,9.0\n429,266,9.5\n429,267,10.0\n429,268,10.5\n429,269,11.0\n429,270,11.5\n429,271,12.0\n429,272,12.5\n429,273,13.0\n429,274,13.5\n429,275,5.0\n429,276,4.5\n429,277,4.0\n429,278,3.5\n429,279,3.0\n429,280,3.5\n429,281,4.0\n429,282,4.5\n429,283,5.0\n429,284,5.5\n429,285,6.0\n429,286,6.5\n429,287,7.0\n429,288,7.5\n429,289,8.0\n429,290,8.5\n429,291,9.0\n429,292,9.5\n429,293,10.0\n429,294,10.5\n429,295,11.0\n429,296,11.5\n429,297,12.0\n429,298,12.5\n429,299,13.0\n429,300,4.5\n429,301,4.0\n429,302,3.5\n429,303,3.0\n429,304,2.5\n429,305,3.0\n429,306,3.5\n429,307,4.0\n429,308,4.5\n429,309,5.0\n429,310,5.5\n429,311,6.0\n429,312,6.5\n429,313,7.0\n429,314,7.5\n429,315,8.0\n429,316,8.5\n429,317,9.0\n429,318,9.5\n429,319,10.0\n429,320,10.5\n429,321,11.0\n429,322,11.5\n429,323,12.0\n429,324,12.5\n429,325,4.0\n429,326,3.5\n429,327,3.0\n429,328,2.5\n429,329,2.0\n429,330,2.5\n429,331,3.0\n429,332,3.5\n429,333,4.0\n429,334,4.5\n429,335,5.0\n429,336,5.5\n429,337,6.0\n429,338,6.5\n429,339,7.0\n429,340,7.5\n429,341,8.0\n429,342,8.5\n429,343,9.0\n429,344,9.5\n429,345,10.0\n429,346,10.5\n429,347,11.0\n429,348,11.5\n429,349,12.0\n429,350,3.5\n429,351,3.0\n429,352,2.5\n429,353,2.0\n429,354,1.5\n429,355,2.0\n429,356,2.5\n429,357,3.0\n429,358,3.5\n429,359,4.0\n429,360,4.5\n429,361,5.0\n429,362,5.5\n429,363,6.0\n429,364,6.5\n429,365,7.0\n429,366,7.5\n429,367,8.0\n429,368,8.5\n429,369,9.0\n429,370,9.5\n429,371,10.0\n429,372,10.5\n429,373,11.0\n429,374,11.5\n429,375,3.0\n429,376,2.5\n429,377,2.0\n429,378,1.5\n429,379,1.0\n429,380,1.5\n429,381,2.0\n429,382,2.5\n429,383,3.0\n429,384,3.5\n429,385,4.0\n429,386,4.5\n429,387,5.0\n429,388,5.5\n429,389,6.0\n429,390,6.5\n429,391,7.0\n429,392,7.5\n429,393,8.0\n429,394,8.5\n429,395,9.0\n429,396,9.5\n429,397,10.0\n429,398,10.5\n429,399,11.0\n429,400,2.5\n429,401,2.0\n429,402,1.5\n429,403,1.0\n429,404,0.5\n429,405,1.0\n429,406,1.5\n429,407,2.0\n429,408,2.5\n429,409,3.0\n429,410,3.5\n429,411,4.0\n429,412,4.5\n429,413,5.0\n429,414,5.5\n429,415,6.0\n429,416,6.5\n429,417,7.0\n429,418,7.5\n429,419,8.0\n429,420,8.5\n429,421,9.0\n429,422,9.5\n429,423,10.0\n429,424,10.5\n429,425,2.0\n429,426,1.5\n429,427,1.0\n429,428,0.5\n429,429,0\n429,430,0.5\n429,431,1.0\n429,432,1.5\n429,433,2.0\n429,434,2.5\n429,435,3.0\n429,436,3.5\n429,437,4.0\n429,438,4.5\n429,439,5.0\n429,440,5.5\n429,441,6.0\n429,442,6.5\n429,443,7.0\n429,444,7.5\n429,445,8.0\n429,446,8.5\n429,447,9.0\n429,448,9.5\n429,449,10.0\n429,450,2.5\n429,451,2.0\n429,452,1.5\n429,453,1.0\n429,454,0.5\n429,455,1.0\n429,456,1.5\n429,457,2.0\n429,458,2.5\n429,459,3.0\n429,460,3.5\n429,461,4.0\n429,462,4.5\n429,463,5.0\n429,464,5.5\n429,465,6.0\n429,466,6.5\n429,467,7.0\n429,468,7.5\n429,469,8.0\n429,470,8.5\n429,471,9.0\n429,472,9.5\n429,473,10.0\n429,474,10.5\n429,475,3.0\n429,476,2.5\n429,477,2.0\n429,478,1.5\n429,479,1.0\n429,480,1.5\n429,481,2.0\n429,482,2.5\n429,483,3.0\n429,484,3.5\n429,485,4.0\n429,486,4.5\n429,487,5.0\n429,488,5.5\n429,489,6.0\n429,490,6.5\n429,491,7.0\n429,492,7.5\n429,493,8.0\n429,494,8.5\n429,495,9.0\n429,496,9.5\n429,497,10.0\n429,498,10.5\n429,499,11.0\n429,500,3.5\n429,501,3.0\n429,502,2.5\n429,503,2.0\n429,504,1.5\n429,505,2.0\n429,506,2.5\n429,507,3.0\n429,508,3.5\n429,509,4.0\n429,510,4.5\n429,511,5.0\n429,512,5.5\n429,513,6.0\n429,514,6.5\n429,515,7.0\n429,516,7.5\n429,517,8.0\n429,518,8.5\n429,519,9.0\n429,520,9.5\n429,521,10.0\n429,522,10.5\n429,523,11.0\n429,524,11.5\n429,525,4.0\n429,526,3.5\n429,527,3.0\n429,528,2.5\n429,529,2.0\n429,530,2.5\n429,531,3.0\n429,532,3.5\n429,533,4.0\n429,534,4.5\n429,535,5.0\n429,536,5.5\n429,537,6.0\n429,538,6.5\n429,539,7.0\n429,540,7.5\n429,541,8.0\n429,542,8.5\n429,543,9.0\n429,544,9.5\n429,545,10.0\n429,546,10.5\n429,547,11.0\n429,548,11.5\n429,549,12.0\n429,550,4.5\n429,551,4.0\n429,552,3.5\n429,553,3.0\n429,554,2.5\n429,555,3.0\n429,556,3.5\n429,557,4.0\n429,558,4.5\n429,559,5.0\n429,560,5.5\n429,561,6.0\n429,562,6.5\n429,563,7.0\n429,564,7.5\n429,565,8.0\n429,566,8.5\n429,567,9.0\n429,568,9.5\n429,569,10.0\n429,570,10.5\n429,571,11.0\n429,572,11.5\n429,573,12.0\n429,574,12.5\n429,575,5.0\n429,576,4.5\n429,577,4.0\n429,578,3.5\n429,579,3.0\n429,580,3.5\n429,581,4.0\n429,582,4.5\n429,583,5.0\n429,584,5.5\n429,585,6.0\n429,586,6.5\n429,587,7.0\n429,588,7.5\n429,589,8.0\n429,590,8.5\n429,591,9.0\n429,592,9.5\n429,593,10.0\n429,594,10.5\n429,595,11.0\n429,596,11.5\n429,597,12.0\n429,598,12.5\n429,599,13.0\n429,600,5.5\n429,601,5.0\n429,602,4.5\n429,603,4.0\n429,604,3.5\n429,605,4.0\n429,606,4.5\n429,607,5.0\n429,608,5.5\n429,609,6.0\n429,610,6.5\n429,611,7.0\n429,612,7.5\n429,613,8.0\n429,614,8.5\n429,615,9.0\n429,616,9.5\n429,617,10.0\n429,618,10.5\n429,619,11.0\n429,620,11.5\n429,621,12.0\n429,622,12.5\n429,623,13.0\n429,624,13.5\n430,0,11.0\n430,1,10.5\n430,2,10.0\n430,3,9.5\n430,4,9.0\n430,5,8.5\n430,6,9.0\n430,7,9.5\n430,8,10.0\n430,9,10.5\n430,10,11.0\n430,11,11.5\n430,12,12.0\n430,13,12.5\n430,14,13.0\n430,15,13.5\n430,16,14.0\n430,17,14.5\n430,18,15.0\n430,19,15.5\n430,20,16.0\n430,21,16.5\n430,22,17.0\n430,23,17.5\n430,24,18.0\n430,25,10.5\n430,26,10.0\n430,27,9.5\n430,28,9.0\n430,29,8.5\n430,30,8.0\n430,31,8.5\n430,32,9.0\n430,33,9.5\n430,34,10.0\n430,35,10.5\n430,36,11.0\n430,37,11.5\n430,38,12.0\n430,39,12.5\n430,40,13.0\n430,41,13.5\n430,42,14.0\n430,43,14.5\n430,44,15.0\n430,45,15.5\n430,46,16.0\n430,47,16.5\n430,48,17.0\n430,49,17.5\n430,50,10.0\n430,51,9.5\n430,52,9.0\n430,53,8.5\n430,54,8.0\n430,55,7.5\n430,56,8.0\n430,57,8.5\n430,58,9.0\n430,59,9.5\n430,60,10.0\n430,61,10.5\n430,62,11.0\n430,63,11.5\n430,64,12.0\n430,65,12.5\n430,66,13.0\n430,67,13.5\n430,68,14.0\n430,69,14.5\n430,70,15.0\n430,71,15.5\n430,72,16.0\n430,73,16.5\n430,74,17.0\n430,75,9.5\n430,76,9.0\n430,77,8.5\n430,78,8.0\n430,79,7.5\n430,80,7.0\n430,81,7.5\n430,82,8.0\n430,83,8.5\n430,84,9.0\n430,85,9.5\n430,86,10.0\n430,87,10.5\n430,88,11.0\n430,89,11.5\n430,90,12.0\n430,91,12.5\n430,92,13.0\n430,93,13.5\n430,94,14.0\n430,95,14.5\n430,96,15.0\n430,97,15.5\n430,98,16.0\n430,99,16.5\n430,100,9.0\n430,101,8.5\n430,102,8.0\n430,103,7.5\n430,104,7.0\n430,105,6.5\n430,106,7.0\n430,107,7.5\n430,108,8.0\n430,109,8.5\n430,110,9.0\n430,111,9.5\n430,112,10.0\n430,113,10.5\n430,114,11.0\n430,115,11.5\n430,116,12.0\n430,117,12.5\n430,118,13.0\n430,119,13.5\n430,120,14.0\n430,121,14.5\n430,122,15.0\n430,123,15.5\n430,124,16.0\n430,125,8.5\n430,126,8.0\n430,127,7.5\n430,128,7.0\n430,129,6.5\n430,130,6.0\n430,131,6.5\n430,132,7.0\n430,133,7.5\n430,134,8.0\n430,135,8.5\n430,136,9.0\n430,137,9.5\n430,138,10.0\n430,139,10.5\n430,140,11.0\n430,141,11.5\n430,142,12.0\n430,143,12.5\n430,144,13.0\n430,145,13.5\n430,146,14.0\n430,147,14.5\n430,148,15.0\n430,149,15.5\n430,150,8.0\n430,151,7.5\n430,152,7.0\n430,153,6.5\n430,154,6.0\n430,155,5.5\n430,156,6.0\n430,157,6.5\n430,158,7.0\n430,159,7.5\n430,160,8.0\n430,161,8.5\n430,162,9.0\n430,163,9.5\n430,164,10.0\n430,165,10.5\n430,166,11.0\n430,167,11.5\n430,168,12.0\n430,169,12.5\n430,170,13.0\n430,171,13.5\n430,172,14.0\n430,173,14.5\n430,174,15.0\n430,175,7.5\n430,176,7.0\n430,177,6.5\n430,178,6.0\n430,179,5.5\n430,180,5.0\n430,181,5.5\n430,182,6.0\n430,183,6.5\n430,184,7.0\n430,185,7.5\n430,186,8.0\n430,187,8.5\n430,188,9.0\n430,189,9.5\n430,190,10.0\n430,191,10.5\n430,192,11.0\n430,193,11.5\n430,194,12.0\n430,195,12.5\n430,196,13.0\n430,197,13.5\n430,198,14.0\n430,199,14.5\n430,200,7.0\n430,201,6.5\n430,202,6.0\n430,203,5.5\n430,204,5.0\n430,205,4.5\n430,206,5.0\n430,207,5.5\n430,208,6.0\n430,209,6.5\n430,210,7.0\n430,211,7.5\n430,212,8.0\n430,213,8.5\n430,214,9.0\n430,215,9.5\n430,216,10.0\n430,217,10.5\n430,218,11.0\n430,219,11.5\n430,220,12.0\n430,221,12.5\n430,222,13.0\n430,223,13.5\n430,224,14.0\n430,225,6.5\n430,226,6.0\n430,227,5.5\n430,228,5.0\n430,229,4.5\n430,230,4.0\n430,231,4.5\n430,232,5.0\n430,233,5.5\n430,234,6.0\n430,235,6.5\n430,236,7.0\n430,237,7.5\n430,238,8.0\n430,239,8.5\n430,240,9.0\n430,241,9.5\n430,242,10.0\n430,243,10.5\n430,244,11.0\n430,245,11.5\n430,246,12.0\n430,247,12.5\n430,248,13.0\n430,249,13.5\n430,250,6.0\n430,251,5.5\n430,252,5.0\n430,253,4.5\n430,254,4.0\n430,255,3.5\n430,256,4.0\n430,257,4.5\n430,258,5.0\n430,259,5.5\n430,260,6.0\n430,261,6.5\n430,262,7.0\n430,263,7.5\n430,264,8.0\n430,265,8.5\n430,266,9.0\n430,267,9.5\n430,268,10.0\n430,269,10.5\n430,270,11.0\n430,271,11.5\n430,272,12.0\n430,273,12.5\n430,274,13.0\n430,275,5.5\n430,276,5.0\n430,277,4.5\n430,278,4.0\n430,279,3.5\n430,280,3.0\n430,281,3.5\n430,282,4.0\n430,283,4.5\n430,284,5.0\n430,285,5.5\n430,286,6.0\n430,287,6.5\n430,288,7.0\n430,289,7.5\n430,290,8.0\n430,291,8.5\n430,292,9.0\n430,293,9.5\n430,294,10.0\n430,295,10.5\n430,296,11.0\n430,297,11.5\n430,298,12.0\n430,299,12.5\n430,300,5.0\n430,301,4.5\n430,302,4.0\n430,303,3.5\n430,304,3.0\n430,305,2.5\n430,306,3.0\n430,307,3.5\n430,308,4.0\n430,309,4.5\n430,310,5.0\n430,311,5.5\n430,312,6.0\n430,313,6.5\n430,314,7.0\n430,315,7.5\n430,316,8.0\n430,317,8.5\n430,318,9.0\n430,319,9.5\n430,320,10.0\n430,321,10.5\n430,322,11.0\n430,323,11.5\n430,324,12.0\n430,325,4.5\n430,326,4.0\n430,327,3.5\n430,328,3.0\n430,329,2.5\n430,330,2.0\n430,331,2.5\n430,332,3.0\n430,333,3.5\n430,334,4.0\n430,335,4.5\n430,336,5.0\n430,337,5.5\n430,338,6.0\n430,339,6.5\n430,340,7.0\n430,341,7.5\n430,342,8.0\n430,343,8.5\n430,344,9.0\n430,345,9.5\n430,346,10.0\n430,347,10.5\n430,348,11.0\n430,349,11.5\n430,350,4.0\n430,351,3.5\n430,352,3.0\n430,353,2.5\n430,354,2.0\n430,355,1.5\n430,356,2.0\n430,357,2.5\n430,358,3.0\n430,359,3.5\n430,360,4.0\n430,361,4.5\n430,362,5.0\n430,363,5.5\n430,364,6.0\n430,365,6.5\n430,366,7.0\n430,367,7.5\n430,368,8.0\n430,369,8.5\n430,370,9.0\n430,371,9.5\n430,372,10.0\n430,373,10.5\n430,374,11.0\n430,375,3.5\n430,376,3.0\n430,377,2.5\n430,378,2.0\n430,379,1.5\n430,380,1.0\n430,381,1.5\n430,382,2.0\n430,383,2.5\n430,384,3.0\n430,385,3.5\n430,386,4.0\n430,387,4.5\n430,388,5.0\n430,389,5.5\n430,390,6.0\n430,391,6.5\n430,392,7.0\n430,393,7.5\n430,394,8.0\n430,395,8.5\n430,396,9.0\n430,397,9.5\n430,398,10.0\n430,399,10.5\n430,400,3.0\n430,401,2.5\n430,402,2.0\n430,403,1.5\n430,404,1.0\n430,405,0.5\n430,406,1.0\n430,407,1.5\n430,408,2.0\n430,409,2.5\n430,410,3.0\n430,411,3.5\n430,412,4.0\n430,413,4.5\n430,414,5.0\n430,415,5.5\n430,416,6.0\n430,417,6.5\n430,418,7.0\n430,419,7.5\n430,420,8.0\n430,421,8.5\n430,422,9.0\n430,423,9.5\n430,424,10.0\n430,425,2.5\n430,426,2.0\n430,427,1.5\n430,428,1.0\n430,429,0.5\n430,430,0\n430,431,0.5\n430,432,1.0\n430,433,1.5\n430,434,2.0\n430,435,2.5\n430,436,3.0\n430,437,3.5\n430,438,4.0\n430,439,4.5\n430,440,5.0\n430,441,5.5\n430,442,6.0\n430,443,6.5\n430,444,7.0\n430,445,7.5\n430,446,8.0\n430,447,8.5\n430,448,9.0\n430,449,9.5\n430,450,3.0\n430,451,2.5\n430,452,2.0\n430,453,1.5\n430,454,1.0\n430,455,0.5\n430,456,1.0\n430,457,1.5\n430,458,2.0\n430,459,2.5\n430,460,3.0\n430,461,3.5\n430,462,4.0\n430,463,4.5\n430,464,5.0\n430,465,5.5\n430,466,6.0\n430,467,6.5\n430,468,7.0\n430,469,7.5\n430,470,8.0\n430,471,8.5\n430,472,9.0\n430,473,9.5\n430,474,10.0\n430,475,3.5\n430,476,3.0\n430,477,2.5\n430,478,2.0\n430,479,1.5\n430,480,1.0\n430,481,1.5\n430,482,2.0\n430,483,2.5\n430,484,3.0\n430,485,3.5\n430,486,4.0\n430,487,4.5\n430,488,5.0\n430,489,5.5\n430,490,6.0\n430,491,6.5\n430,492,7.0\n430,493,7.5\n430,494,8.0\n430,495,8.5\n430,496,9.0\n430,497,9.5\n430,498,10.0\n430,499,10.5\n430,500,4.0\n430,501,3.5\n430,502,3.0\n430,503,2.5\n430,504,2.0\n430,505,1.5\n430,506,2.0\n430,507,2.5\n430,508,3.0\n430,509,3.5\n430,510,4.0\n430,511,4.5\n430,512,5.0\n430,513,5.5\n430,514,6.0\n430,515,6.5\n430,516,7.0\n430,517,7.5\n430,518,8.0\n430,519,8.5\n430,520,9.0\n430,521,9.5\n430,522,10.0\n430,523,10.5\n430,524,11.0\n430,525,4.5\n430,526,4.0\n430,527,3.5\n430,528,3.0\n430,529,2.5\n430,530,2.0\n430,531,2.5\n430,532,3.0\n430,533,3.5\n430,534,4.0\n430,535,4.5\n430,536,5.0\n430,537,5.5\n430,538,6.0\n430,539,6.5\n430,540,7.0\n430,541,7.5\n430,542,8.0\n430,543,8.5\n430,544,9.0\n430,545,9.5\n430,546,10.0\n430,547,10.5\n430,548,11.0\n430,549,11.5\n430,550,5.0\n430,551,4.5\n430,552,4.0\n430,553,3.5\n430,554,3.0\n430,555,2.5\n430,556,3.0\n430,557,3.5\n430,558,4.0\n430,559,4.5\n430,560,5.0\n430,561,5.5\n430,562,6.0\n430,563,6.5\n430,564,7.0\n430,565,7.5\n430,566,8.0\n430,567,8.5\n430,568,9.0\n430,569,9.5\n430,570,10.0\n430,571,10.5\n430,572,11.0\n430,573,11.5\n430,574,12.0\n430,575,5.5\n430,576,5.0\n430,577,4.5\n430,578,4.0\n430,579,3.5\n430,580,3.0\n430,581,3.5\n430,582,4.0\n430,583,4.5\n430,584,5.0\n430,585,5.5\n430,586,6.0\n430,587,6.5\n430,588,7.0\n430,589,7.5\n430,590,8.0\n430,591,8.5\n430,592,9.0\n430,593,9.5\n430,594,10.0\n430,595,10.5\n430,596,11.0\n430,597,11.5\n430,598,12.0\n430,599,12.5\n430,600,6.0\n430,601,5.5\n430,602,5.0\n430,603,4.5\n430,604,4.0\n430,605,3.5\n430,606,4.0\n430,607,4.5\n430,608,5.0\n430,609,5.5\n430,610,6.0\n430,611,6.5\n430,612,7.0\n430,613,7.5\n430,614,8.0\n430,615,8.5\n430,616,9.0\n430,617,9.5\n430,618,10.0\n430,619,10.5\n430,620,11.0\n430,621,11.5\n430,622,12.0\n430,623,12.5\n430,624,13.0\n431,0,11.5\n431,1,11.0\n431,2,10.5\n431,3,10.0\n431,4,9.5\n431,5,9.0\n431,6,8.5\n431,7,9.0\n431,8,9.5\n431,9,10.0\n431,10,10.5\n431,11,11.0\n431,12,11.5\n431,13,12.0\n431,14,12.5\n431,15,13.0\n431,16,13.5\n431,17,14.0\n431,18,14.5\n431,19,15.0\n431,20,15.5\n431,21,16.0\n431,22,16.5\n431,23,17.0\n431,24,17.5\n431,25,11.0\n431,26,10.5\n431,27,10.0\n431,28,9.5\n431,29,9.0\n431,30,8.5\n431,31,8.0\n431,32,8.5\n431,33,9.0\n431,34,9.5\n431,35,10.0\n431,36,10.5\n431,37,11.0\n431,38,11.5\n431,39,12.0\n431,40,12.5\n431,41,13.0\n431,42,13.5\n431,43,14.0\n431,44,14.5\n431,45,15.0\n431,46,15.5\n431,47,16.0\n431,48,16.5\n431,49,17.0\n431,50,10.5\n431,51,10.0\n431,52,9.5\n431,53,9.0\n431,54,8.5\n431,55,8.0\n431,56,7.5\n431,57,8.0\n431,58,8.5\n431,59,9.0\n431,60,9.5\n431,61,10.0\n431,62,10.5\n431,63,11.0\n431,64,11.5\n431,65,12.0\n431,66,12.5\n431,67,13.0\n431,68,13.5\n431,69,14.0\n431,70,14.5\n431,71,15.0\n431,72,15.5\n431,73,16.0\n431,74,16.5\n431,75,10.0\n431,76,9.5\n431,77,9.0\n431,78,8.5\n431,79,8.0\n431,80,7.5\n431,81,7.0\n431,82,7.5\n431,83,8.0\n431,84,8.5\n431,85,9.0\n431,86,9.5\n431,87,10.0\n431,88,10.5\n431,89,11.0\n431,90,11.5\n431,91,12.0\n431,92,12.5\n431,93,13.0\n431,94,13.5\n431,95,14.0\n431,96,14.5\n431,97,15.0\n431,98,15.5\n431,99,16.0\n431,100,9.5\n431,101,9.0\n431,102,8.5\n431,103,8.0\n431,104,7.5\n431,105,7.0\n431,106,6.5\n431,107,7.0\n431,108,7.5\n431,109,8.0\n431,110,8.5\n431,111,9.0\n431,112,9.5\n431,113,10.0\n431,114,10.5\n431,115,11.0\n431,116,11.5\n431,117,12.0\n431,118,12.5\n431,119,13.0\n431,120,13.5\n431,121,14.0\n431,122,14.5\n431,123,15.0\n431,124,15.5\n431,125,9.0\n431,126,8.5\n431,127,8.0\n431,128,7.5\n431,129,7.0\n431,130,6.5\n431,131,6.0\n431,132,6.5\n431,133,7.0\n431,134,7.5\n431,135,8.0\n431,136,8.5\n431,137,9.0\n431,138,9.5\n431,139,10.0\n431,140,10.5\n431,141,11.0\n431,142,11.5\n431,143,12.0\n431,144,12.5\n431,145,13.0\n431,146,13.5\n431,147,14.0\n431,148,14.5\n431,149,15.0\n431,150,8.5\n431,151,8.0\n431,152,7.5\n431,153,7.0\n431,154,6.5\n431,155,6.0\n431,156,5.5\n431,157,6.0\n431,158,6.5\n431,159,7.0\n431,160,7.5\n431,161,8.0\n431,162,8.5\n431,163,9.0\n431,164,9.5\n431,165,10.0\n431,166,10.5\n431,167,11.0\n431,168,11.5\n431,169,12.0\n431,170,12.5\n431,171,13.0\n431,172,13.5\n431,173,14.0\n431,174,14.5\n431,175,8.0\n431,176,7.5\n431,177,7.0\n431,178,6.5\n431,179,6.0\n431,180,5.5\n431,181,5.0\n431,182,5.5\n431,183,6.0\n431,184,6.5\n431,185,7.0\n431,186,7.5\n431,187,8.0\n431,188,8.5\n431,189,9.0\n431,190,9.5\n431,191,10.0\n431,192,10.5\n431,193,11.0\n431,194,11.5\n431,195,12.0\n431,196,12.5\n431,197,13.0\n431,198,13.5\n431,199,14.0\n431,200,7.5\n431,201,7.0\n431,202,6.5\n431,203,6.0\n431,204,5.5\n431,205,5.0\n431,206,4.5\n431,207,5.0\n431,208,5.5\n431,209,6.0\n431,210,6.5\n431,211,7.0\n431,212,7.5\n431,213,8.0\n431,214,8.5\n431,215,9.0\n431,216,9.5\n431,217,10.0\n431,218,10.5\n431,219,11.0\n431,220,11.5\n431,221,12.0\n431,222,12.5\n431,223,13.0\n431,224,13.5\n431,225,7.0\n431,226,6.5\n431,227,6.0\n431,228,5.5\n431,229,5.0\n431,230,4.5\n431,231,4.0\n431,232,4.5\n431,233,5.0\n431,234,5.5\n431,235,6.0\n431,236,6.5\n431,237,7.0\n431,238,7.5\n431,239,8.0\n431,240,8.5\n431,241,9.0\n431,242,9.5\n431,243,10.0\n431,244,10.5\n431,245,11.0\n431,246,11.5\n431,247,12.0\n431,248,12.5\n431,249,13.0\n431,250,6.5\n431,251,6.0\n431,252,5.5\n431,253,5.0\n431,254,4.5\n431,255,4.0\n431,256,3.5\n431,257,4.0\n431,258,4.5\n431,259,5.0\n431,260,5.5\n431,261,6.0\n431,262,6.5\n431,263,7.0\n431,264,7.5\n431,265,8.0\n431,266,8.5\n431,267,9.0\n431,268,9.5\n431,269,10.0\n431,270,10.5\n431,271,11.0\n431,272,11.5\n431,273,12.0\n431,274,12.5\n431,275,6.0\n431,276,5.5\n431,277,5.0\n431,278,4.5\n431,279,4.0\n431,280,3.5\n431,281,3.0\n431,282,3.5\n431,283,4.0\n431,284,4.5\n431,285,5.0\n431,286,5.5\n431,287,6.0\n431,288,6.5\n431,289,7.0\n431,290,7.5\n431,291,8.0\n431,292,8.5\n431,293,9.0\n431,294,9.5\n431,295,10.0\n431,296,10.5\n431,297,11.0\n431,298,11.5\n431,299,12.0\n431,300,5.5\n431,301,5.0\n431,302,4.5\n431,303,4.0\n431,304,3.5\n431,305,3.0\n431,306,2.5\n431,307,3.0\n431,308,3.5\n431,309,4.0\n431,310,4.5\n431,311,5.0\n431,312,5.5\n431,313,6.0\n431,314,6.5\n431,315,7.0\n431,316,7.5\n431,317,8.0\n431,318,8.5\n431,319,9.0\n431,320,9.5\n431,321,10.0\n431,322,10.5\n431,323,11.0\n431,324,11.5\n431,325,5.0\n431,326,4.5\n431,327,4.0\n431,328,3.5\n431,329,3.0\n431,330,2.5\n431,331,2.0\n431,332,2.5\n431,333,3.0\n431,334,3.5\n431,335,4.0\n431,336,4.5\n431,337,5.0\n431,338,5.5\n431,339,6.0\n431,340,6.5\n431,341,7.0\n431,342,7.5\n431,343,8.0\n431,344,8.5\n431,345,9.0\n431,346,9.5\n431,347,10.0\n431,348,10.5\n431,349,11.0\n431,350,4.5\n431,351,4.0\n431,352,3.5\n431,353,3.0\n431,354,2.5\n431,355,2.0\n431,356,1.5\n431,357,2.0\n431,358,2.5\n431,359,3.0\n431,360,3.5\n431,361,4.0\n431,362,4.5\n431,363,5.0\n431,364,5.5\n431,365,6.0\n431,366,6.5\n431,367,7.0\n431,368,7.5\n431,369,8.0\n431,370,8.5\n431,371,9.0\n431,372,9.5\n431,373,10.0\n431,374,10.5\n431,375,4.0\n431,376,3.5\n431,377,3.0\n431,378,2.5\n431,379,2.0\n431,380,1.5\n431,381,1.0\n431,382,1.5\n431,383,2.0\n431,384,2.5\n431,385,3.0\n431,386,3.5\n431,387,4.0\n431,388,4.5\n431,389,5.0\n431,390,5.5\n431,391,6.0\n431,392,6.5\n431,393,7.0\n431,394,7.5\n431,395,8.0\n431,396,8.5\n431,397,9.0\n431,398,9.5\n431,399,10.0\n431,400,3.5\n431,401,3.0\n431,402,2.5\n431,403,2.0\n431,404,1.5\n431,405,1.0\n431,406,0.5\n431,407,1.0\n431,408,1.5\n431,409,2.0\n431,410,2.5\n431,411,3.0\n431,412,3.5\n431,413,4.0\n431,414,4.5\n431,415,5.0\n431,416,5.5\n431,417,6.0\n431,418,6.5\n431,419,7.0\n431,420,7.5\n431,421,8.0\n431,422,8.5\n431,423,9.0\n431,424,9.5\n431,425,3.0\n431,426,2.5\n431,427,2.0\n431,428,1.5\n431,429,1.0\n431,430,0.5\n431,431,0\n431,432,0.5\n431,433,1.0\n431,434,1.5\n431,435,2.0\n431,436,2.5\n431,437,3.0\n431,438,3.5\n431,439,4.0\n431,440,4.5\n431,441,5.0\n431,442,5.5\n431,443,6.0\n431,444,6.5\n431,445,7.0\n431,446,7.5\n431,447,8.0\n431,448,8.5\n431,449,9.0\n431,450,3.5\n431,451,3.0\n431,452,2.5\n431,453,2.0\n431,454,1.5\n431,455,1.0\n431,456,0.5\n431,457,1.0\n431,458,1.5\n431,459,2.0\n431,460,2.5\n431,461,3.0\n431,462,3.5\n431,463,4.0\n431,464,4.5\n431,465,5.0\n431,466,5.5\n431,467,6.0\n431,468,6.5\n431,469,7.0\n431,470,7.5\n431,471,8.0\n431,472,8.5\n431,473,9.0\n431,474,9.5\n431,475,4.0\n431,476,3.5\n431,477,3.0\n431,478,2.5\n431,479,2.0\n431,480,1.5\n431,481,1.0\n431,482,1.5\n431,483,2.0\n431,484,2.5\n431,485,3.0\n431,486,3.5\n431,487,4.0\n431,488,4.5\n431,489,5.0\n431,490,5.5\n431,491,6.0\n431,492,6.5\n431,493,7.0\n431,494,7.5\n431,495,8.0\n431,496,8.5\n431,497,9.0\n431,498,9.5\n431,499,10.0\n431,500,4.5\n431,501,4.0\n431,502,3.5\n431,503,3.0\n431,504,2.5\n431,505,2.0\n431,506,1.5\n431,507,2.0\n431,508,2.5\n431,509,3.0\n431,510,3.5\n431,511,4.0\n431,512,4.5\n431,513,5.0\n431,514,5.5\n431,515,6.0\n431,516,6.5\n431,517,7.0\n431,518,7.5\n431,519,8.0\n431,520,8.5\n431,521,9.0\n431,522,9.5\n431,523,10.0\n431,524,10.5\n431,525,5.0\n431,526,4.5\n431,527,4.0\n431,528,3.5\n431,529,3.0\n431,530,2.5\n431,531,2.0\n431,532,2.5\n431,533,3.0\n431,534,3.5\n431,535,4.0\n431,536,4.5\n431,537,5.0\n431,538,5.5\n431,539,6.0\n431,540,6.5\n431,541,7.0\n431,542,7.5\n431,543,8.0\n431,544,8.5\n431,545,9.0\n431,546,9.5\n431,547,10.0\n431,548,10.5\n431,549,11.0\n431,550,5.5\n431,551,5.0\n431,552,4.5\n431,553,4.0\n431,554,3.5\n431,555,3.0\n431,556,2.5\n431,557,3.0\n431,558,3.5\n431,559,4.0\n431,560,4.5\n431,561,5.0\n431,562,5.5\n431,563,6.0\n431,564,6.5\n431,565,7.0\n431,566,7.5\n431,567,8.0\n431,568,8.5\n431,569,9.0\n431,570,9.5\n431,571,10.0\n431,572,10.5\n431,573,11.0\n431,574,11.5\n431,575,6.0\n431,576,5.5\n431,577,5.0\n431,578,4.5\n431,579,4.0\n431,580,3.5\n431,581,3.0\n431,582,3.5\n431,583,4.0\n431,584,4.5\n431,585,5.0\n431,586,5.5\n431,587,6.0\n431,588,6.5\n431,589,7.0\n431,590,7.5\n431,591,8.0\n431,592,8.5\n431,593,9.0\n431,594,9.5\n431,595,10.0\n431,596,10.5\n431,597,11.0\n431,598,11.5\n431,599,12.0\n431,600,6.5\n431,601,6.0\n431,602,5.5\n431,603,5.0\n431,604,4.5\n431,605,4.0\n431,606,3.5\n431,607,4.0\n431,608,4.5\n431,609,5.0\n431,610,5.5\n431,611,6.0\n431,612,6.5\n431,613,7.0\n431,614,7.5\n431,615,8.0\n431,616,8.5\n431,617,9.0\n431,618,9.5\n431,619,10.0\n431,620,10.5\n431,621,11.0\n431,622,11.5\n431,623,12.0\n431,624,12.5\n432,0,12.0\n432,1,11.5\n432,2,11.0\n432,3,10.5\n432,4,10.0\n432,5,9.5\n432,6,9.0\n432,7,8.5\n432,8,9.0\n432,9,9.5\n432,10,10.0\n432,11,10.5\n432,12,11.0\n432,13,11.5\n432,14,12.0\n432,15,12.5\n432,16,13.0\n432,17,13.5\n432,18,14.0\n432,19,14.5\n432,20,15.0\n432,21,15.5\n432,22,16.0\n432,23,16.5\n432,24,17.0\n432,25,11.5\n432,26,11.0\n432,27,10.5\n432,28,10.0\n432,29,9.5\n432,30,9.0\n432,31,8.5\n432,32,8.0\n432,33,8.5\n432,34,9.0\n432,35,9.5\n432,36,10.0\n432,37,10.5\n432,38,11.0\n432,39,11.5\n432,40,12.0\n432,41,12.5\n432,42,13.0\n432,43,13.5\n432,44,14.0\n432,45,14.5\n432,46,15.0\n432,47,15.5\n432,48,16.0\n432,49,16.5\n432,50,11.0\n432,51,10.5\n432,52,10.0\n432,53,9.5\n432,54,9.0\n432,55,8.5\n432,56,8.0\n432,57,7.5\n432,58,8.0\n432,59,8.5\n432,60,9.0\n432,61,9.5\n432,62,10.0\n432,63,10.5\n432,64,11.0\n432,65,11.5\n432,66,12.0\n432,67,12.5\n432,68,13.0\n432,69,13.5\n432,70,14.0\n432,71,14.5\n432,72,15.0\n432,73,15.5\n432,74,16.0\n432,75,10.5\n432,76,10.0\n432,77,9.5\n432,78,9.0\n432,79,8.5\n432,80,8.0\n432,81,7.5\n432,82,7.0\n432,83,7.5\n432,84,8.0\n432,85,8.5\n432,86,9.0\n432,87,9.5\n432,88,10.0\n432,89,10.5\n432,90,11.0\n432,91,11.5\n432,92,12.0\n432,93,12.5\n432,94,13.0\n432,95,13.5\n432,96,14.0\n432,97,14.5\n432,98,15.0\n432,99,15.5\n432,100,10.0\n432,101,9.5\n432,102,9.0\n432,103,8.5\n432,104,8.0\n432,105,7.5\n432,106,7.0\n432,107,6.5\n432,108,7.0\n432,109,7.5\n432,110,8.0\n432,111,8.5\n432,112,9.0\n432,113,9.5\n432,114,10.0\n432,115,10.5\n432,116,11.0\n432,117,11.5\n432,118,12.0\n432,119,12.5\n432,120,13.0\n432,121,13.5\n432,122,14.0\n432,123,14.5\n432,124,15.0\n432,125,9.5\n432,126,9.0\n432,127,8.5\n432,128,8.0\n432,129,7.5\n432,130,7.0\n432,131,6.5\n432,132,6.0\n432,133,6.5\n432,134,7.0\n432,135,7.5\n432,136,8.0\n432,137,8.5\n432,138,9.0\n432,139,9.5\n432,140,10.0\n432,141,10.5\n432,142,11.0\n432,143,11.5\n432,144,12.0\n432,145,12.5\n432,146,13.0\n432,147,13.5\n432,148,14.0\n432,149,14.5\n432,150,9.0\n432,151,8.5\n432,152,8.0\n432,153,7.5\n432,154,7.0\n432,155,6.5\n432,156,6.0\n432,157,5.5\n432,158,6.0\n432,159,6.5\n432,160,7.0\n432,161,7.5\n432,162,8.0\n432,163,8.5\n432,164,9.0\n432,165,9.5\n432,166,10.0\n432,167,10.5\n432,168,11.0\n432,169,11.5\n432,170,12.0\n432,171,12.5\n432,172,13.0\n432,173,13.5\n432,174,14.0\n432,175,8.5\n432,176,8.0\n432,177,7.5\n432,178,7.0\n432,179,6.5\n432,180,6.0\n432,181,5.5\n432,182,5.0\n432,183,5.5\n432,184,6.0\n432,185,6.5\n432,186,7.0\n432,187,7.5\n432,188,8.0\n432,189,8.5\n432,190,9.0\n432,191,9.5\n432,192,10.0\n432,193,10.5\n432,194,11.0\n432,195,11.5\n432,196,12.0\n432,197,12.5\n432,198,13.0\n432,199,13.5\n432,200,8.0\n432,201,7.5\n432,202,7.0\n432,203,6.5\n432,204,6.0\n432,205,5.5\n432,206,5.0\n432,207,4.5\n432,208,5.0\n432,209,5.5\n432,210,6.0\n432,211,6.5\n432,212,7.0\n432,213,7.5\n432,214,8.0\n432,215,8.5\n432,216,9.0\n432,217,9.5\n432,218,10.0\n432,219,10.5\n432,220,11.0\n432,221,11.5\n432,222,12.0\n432,223,12.5\n432,224,13.0\n432,225,7.5\n432,226,7.0\n432,227,6.5\n432,228,6.0\n432,229,5.5\n432,230,5.0\n432,231,4.5\n432,232,4.0\n432,233,4.5\n432,234,5.0\n432,235,5.5\n432,236,6.0\n432,237,6.5\n432,238,7.0\n432,239,7.5\n432,240,8.0\n432,241,8.5\n432,242,9.0\n432,243,9.5\n432,244,10.0\n432,245,10.5\n432,246,11.0\n432,247,11.5\n432,248,12.0\n432,249,12.5\n432,250,7.0\n432,251,6.5\n432,252,6.0\n432,253,5.5\n432,254,5.0\n432,255,4.5\n432,256,4.0\n432,257,3.5\n432,258,4.0\n432,259,4.5\n432,260,5.0\n432,261,5.5\n432,262,6.0\n432,263,6.5\n432,264,7.0\n432,265,7.5\n432,266,8.0\n432,267,8.5\n432,268,9.0\n432,269,9.5\n432,270,10.0\n432,271,10.5\n432,272,11.0\n432,273,11.5\n432,274,12.0\n432,275,6.5\n432,276,6.0\n432,277,5.5\n432,278,5.0\n432,279,4.5\n432,280,4.0\n432,281,3.5\n432,282,3.0\n432,283,3.5\n432,284,4.0\n432,285,4.5\n432,286,5.0\n432,287,5.5\n432,288,6.0\n432,289,6.5\n432,290,7.0\n432,291,7.5\n432,292,8.0\n432,293,8.5\n432,294,9.0\n432,295,9.5\n432,296,10.0\n432,297,10.5\n432,298,11.0\n432,299,11.5\n432,300,6.0\n432,301,5.5\n432,302,5.0\n432,303,4.5\n432,304,4.0\n432,305,3.5\n432,306,3.0\n432,307,2.5\n432,308,3.0\n432,309,3.5\n432,310,4.0\n432,311,4.5\n432,312,5.0\n432,313,5.5\n432,314,6.0\n432,315,6.5\n432,316,7.0\n432,317,7.5\n432,318,8.0\n432,319,8.5\n432,320,9.0\n432,321,9.5\n432,322,10.0\n432,323,10.5\n432,324,11.0\n432,325,5.5\n432,326,5.0\n432,327,4.5\n432,328,4.0\n432,329,3.5\n432,330,3.0\n432,331,2.5\n432,332,2.0\n432,333,2.5\n432,334,3.0\n432,335,3.5\n432,336,4.0\n432,337,4.5\n432,338,5.0\n432,339,5.5\n432,340,6.0\n432,341,6.5\n432,342,7.0\n432,343,7.5\n432,344,8.0\n432,345,8.5\n432,346,9.0\n432,347,9.5\n432,348,10.0\n432,349,10.5\n432,350,5.0\n432,351,4.5\n432,352,4.0\n432,353,3.5\n432,354,3.0\n432,355,2.5\n432,356,2.0\n432,357,1.5\n432,358,2.0\n432,359,2.5\n432,360,3.0\n432,361,3.5\n432,362,4.0\n432,363,4.5\n432,364,5.0\n432,365,5.5\n432,366,6.0\n432,367,6.5\n432,368,7.0\n432,369,7.5\n432,370,8.0\n432,371,8.5\n432,372,9.0\n432,373,9.5\n432,374,10.0\n432,375,4.5\n432,376,4.0\n432,377,3.5\n432,378,3.0\n432,379,2.5\n432,380,2.0\n432,381,1.5\n432,382,1.0\n432,383,1.5\n432,384,2.0\n432,385,2.5\n432,386,3.0\n432,387,3.5\n432,388,4.0\n432,389,4.5\n432,390,5.0\n432,391,5.5\n432,392,6.0\n432,393,6.5\n432,394,7.0\n432,395,7.5\n432,396,8.0\n432,397,8.5\n432,398,9.0\n432,399,9.5\n432,400,4.0\n432,401,3.5\n432,402,3.0\n432,403,2.5\n432,404,2.0\n432,405,1.5\n432,406,1.0\n432,407,0.5\n432,408,1.0\n432,409,1.5\n432,410,2.0\n432,411,2.5\n432,412,3.0\n432,413,3.5\n432,414,4.0\n432,415,4.5\n432,416,5.0\n432,417,5.5\n432,418,6.0\n432,419,6.5\n432,420,7.0\n432,421,7.5\n432,422,8.0\n432,423,8.5\n432,424,9.0\n432,425,3.5\n432,426,3.0\n432,427,2.5\n432,428,2.0\n432,429,1.5\n432,430,1.0\n432,431,0.5\n432,432,0\n432,433,0.5\n432,434,1.0\n432,435,1.5\n432,436,2.0\n432,437,2.5\n432,438,3.0\n432,439,3.5\n432,440,4.0\n432,441,4.5\n432,442,5.0\n432,443,5.5\n432,444,6.0\n432,445,6.5\n432,446,7.0\n432,447,7.5\n432,448,8.0\n432,449,8.5\n432,450,4.0\n432,451,3.5\n432,452,3.0\n432,453,2.5\n432,454,2.0\n432,455,1.5\n432,456,1.0\n432,457,0.5\n432,458,1.0\n432,459,1.5\n432,460,2.0\n432,461,2.5\n432,462,3.0\n432,463,3.5\n432,464,4.0\n432,465,4.5\n432,466,5.0\n432,467,5.5\n432,468,6.0\n432,469,6.5\n432,470,7.0\n432,471,7.5\n432,472,8.0\n432,473,8.5\n432,474,9.0\n432,475,4.5\n432,476,4.0\n432,477,3.5\n432,478,3.0\n432,479,2.5\n432,480,2.0\n432,481,1.5\n432,482,1.0\n432,483,1.5\n432,484,2.0\n432,485,2.5\n432,486,3.0\n432,487,3.5\n432,488,4.0\n432,489,4.5\n432,490,5.0\n432,491,5.5\n432,492,6.0\n432,493,6.5\n432,494,7.0\n432,495,7.5\n432,496,8.0\n432,497,8.5\n432,498,9.0\n432,499,9.5\n432,500,5.0\n432,501,4.5\n432,502,4.0\n432,503,3.5\n432,504,3.0\n432,505,2.5\n432,506,2.0\n432,507,1.5\n432,508,2.0\n432,509,2.5\n432,510,3.0\n432,511,3.5\n432,512,4.0\n432,513,4.5\n432,514,5.0\n432,515,5.5\n432,516,6.0\n432,517,6.5\n432,518,7.0\n432,519,7.5\n432,520,8.0\n432,521,8.5\n432,522,9.0\n432,523,9.5\n432,524,10.0\n432,525,5.5\n432,526,5.0\n432,527,4.5\n432,528,4.0\n432,529,3.5\n432,530,3.0\n432,531,2.5\n432,532,2.0\n432,533,2.5\n432,534,3.0\n432,535,3.5\n432,536,4.0\n432,537,4.5\n432,538,5.0\n432,539,5.5\n432,540,6.0\n432,541,6.5\n432,542,7.0\n432,543,7.5\n432,544,8.0\n432,545,8.5\n432,546,9.0\n432,547,9.5\n432,548,10.0\n432,549,10.5\n432,550,6.0\n432,551,5.5\n432,552,5.0\n432,553,4.5\n432,554,4.0\n432,555,3.5\n432,556,3.0\n432,557,2.5\n432,558,3.0\n432,559,3.5\n432,560,4.0\n432,561,4.5\n432,562,5.0\n432,563,5.5\n432,564,6.0\n432,565,6.5\n432,566,7.0\n432,567,7.5\n432,568,8.0\n432,569,8.5\n432,570,9.0\n432,571,9.5\n432,572,10.0\n432,573,10.5\n432,574,11.0\n432,575,6.5\n432,576,6.0\n432,577,5.5\n432,578,5.0\n432,579,4.5\n432,580,4.0\n432,581,3.5\n432,582,3.0\n432,583,3.5\n432,584,4.0\n432,585,4.5\n432,586,5.0\n432,587,5.5\n432,588,6.0\n432,589,6.5\n432,590,7.0\n432,591,7.5\n432,592,8.0\n432,593,8.5\n432,594,9.0\n432,595,9.5\n432,596,10.0\n432,597,10.5\n432,598,11.0\n432,599,11.5\n432,600,7.0\n432,601,6.5\n432,602,6.0\n432,603,5.5\n432,604,5.0\n432,605,4.5\n432,606,4.0\n432,607,3.5\n432,608,4.0\n432,609,4.5\n432,610,5.0\n432,611,5.5\n432,612,6.0\n432,613,6.5\n432,614,7.0\n432,615,7.5\n432,616,8.0\n432,617,8.5\n432,618,9.0\n432,619,9.5\n432,620,10.0\n432,621,10.5\n432,622,11.0\n432,623,11.5\n432,624,12.0\n433,0,12.5\n433,1,12.0\n433,2,11.5\n433,3,11.0\n433,4,10.5\n433,5,10.0\n433,6,9.5\n433,7,9.0\n433,8,8.5\n433,9,9.0\n433,10,9.5\n433,11,10.0\n433,12,10.5\n433,13,11.0\n433,14,11.5\n433,15,12.0\n433,16,12.5\n433,17,13.0\n433,18,13.5\n433,19,14.0\n433,20,14.5\n433,21,15.0\n433,22,15.5\n433,23,16.0\n433,24,16.5\n433,25,12.0\n433,26,11.5\n433,27,11.0\n433,28,10.5\n433,29,10.0\n433,30,9.5\n433,31,9.0\n433,32,8.5\n433,33,8.0\n433,34,8.5\n433,35,9.0\n433,36,9.5\n433,37,10.0\n433,38,10.5\n433,39,11.0\n433,40,11.5\n433,41,12.0\n433,42,12.5\n433,43,13.0\n433,44,13.5\n433,45,14.0\n433,46,14.5\n433,47,15.0\n433,48,15.5\n433,49,16.0\n433,50,11.5\n433,51,11.0\n433,52,10.5\n433,53,10.0\n433,54,9.5\n433,55,9.0\n433,56,8.5\n433,57,8.0\n433,58,7.5\n433,59,8.0\n433,60,8.5\n433,61,9.0\n433,62,9.5\n433,63,10.0\n433,64,10.5\n433,65,11.0\n433,66,11.5\n433,67,12.0\n433,68,12.5\n433,69,13.0\n433,70,13.5\n433,71,14.0\n433,72,14.5\n433,73,15.0\n433,74,15.5\n433,75,11.0\n433,76,10.5\n433,77,10.0\n433,78,9.5\n433,79,9.0\n433,80,8.5\n433,81,8.0\n433,82,7.5\n433,83,7.0\n433,84,7.5\n433,85,8.0\n433,86,8.5\n433,87,9.0\n433,88,9.5\n433,89,10.0\n433,90,10.5\n433,91,11.0\n433,92,11.5\n433,93,12.0\n433,94,12.5\n433,95,13.0\n433,96,13.5\n433,97,14.0\n433,98,14.5\n433,99,15.0\n433,100,10.5\n433,101,10.0\n433,102,9.5\n433,103,9.0\n433,104,8.5\n433,105,8.0\n433,106,7.5\n433,107,7.0\n433,108,6.5\n433,109,7.0\n433,110,7.5\n433,111,8.0\n433,112,8.5\n433,113,9.0\n433,114,9.5\n433,115,10.0\n433,116,10.5\n433,117,11.0\n433,118,11.5\n433,119,12.0\n433,120,12.5\n433,121,13.0\n433,122,13.5\n433,123,14.0\n433,124,14.5\n433,125,10.0\n433,126,9.5\n433,127,9.0\n433,128,8.5\n433,129,8.0\n433,130,7.5\n433,131,7.0\n433,132,6.5\n433,133,6.0\n433,134,6.5\n433,135,7.0\n433,136,7.5\n433,137,8.0\n433,138,8.5\n433,139,9.0\n433,140,9.5\n433,141,10.0\n433,142,10.5\n433,143,11.0\n433,144,11.5\n433,145,12.0\n433,146,12.5\n433,147,13.0\n433,148,13.5\n433,149,14.0\n433,150,9.5\n433,151,9.0\n433,152,8.5\n433,153,8.0\n433,154,7.5\n433,155,7.0\n433,156,6.5\n433,157,6.0\n433,158,5.5\n433,159,6.0\n433,160,6.5\n433,161,7.0\n433,162,7.5\n433,163,8.0\n433,164,8.5\n433,165,9.0\n433,166,9.5\n433,167,10.0\n433,168,10.5\n433,169,11.0\n433,170,11.5\n433,171,12.0\n433,172,12.5\n433,173,13.0\n433,174,13.5\n433,175,9.0\n433,176,8.5\n433,177,8.0\n433,178,7.5\n433,179,7.0\n433,180,6.5\n433,181,6.0\n433,182,5.5\n433,183,5.0\n433,184,5.5\n433,185,6.0\n433,186,6.5\n433,187,7.0\n433,188,7.5\n433,189,8.0\n433,190,8.5\n433,191,9.0\n433,192,9.5\n433,193,10.0\n433,194,10.5\n433,195,11.0\n433,196,11.5\n433,197,12.0\n433,198,12.5\n433,199,13.0\n433,200,8.5\n433,201,8.0\n433,202,7.5\n433,203,7.0\n433,204,6.5\n433,205,6.0\n433,206,5.5\n433,207,5.0\n433,208,4.5\n433,209,5.0\n433,210,5.5\n433,211,6.0\n433,212,6.5\n433,213,7.0\n433,214,7.5\n433,215,8.0\n433,216,8.5\n433,217,9.0\n433,218,9.5\n433,219,10.0\n433,220,10.5\n433,221,11.0\n433,222,11.5\n433,223,12.0\n433,224,12.5\n433,225,8.0\n433,226,7.5\n433,227,7.0\n433,228,6.5\n433,229,6.0\n433,230,5.5\n433,231,5.0\n433,232,4.5\n433,233,4.0\n433,234,4.5\n433,235,5.0\n433,236,5.5\n433,237,6.0\n433,238,6.5\n433,239,7.0\n433,240,7.5\n433,241,8.0\n433,242,8.5\n433,243,9.0\n433,244,9.5\n433,245,10.0\n433,246,10.5\n433,247,11.0\n433,248,11.5\n433,249,12.0\n433,250,7.5\n433,251,7.0\n433,252,6.5\n433,253,6.0\n433,254,5.5\n433,255,5.0\n433,256,4.5\n433,257,4.0\n433,258,3.5\n433,259,4.0\n433,260,4.5\n433,261,5.0\n433,262,5.5\n433,263,6.0\n433,264,6.5\n433,265,7.0\n433,266,7.5\n433,267,8.0\n433,268,8.5\n433,269,9.0\n433,270,9.5\n433,271,10.0\n433,272,10.5\n433,273,11.0\n433,274,11.5\n433,275,7.0\n433,276,6.5\n433,277,6.0\n433,278,5.5\n433,279,5.0\n433,280,4.5\n433,281,4.0\n433,282,3.5\n433,283,3.0\n433,284,3.5\n433,285,4.0\n433,286,4.5\n433,287,5.0\n433,288,5.5\n433,289,6.0\n433,290,6.5\n433,291,7.0\n433,292,7.5\n433,293,8.0\n433,294,8.5\n433,295,9.0\n433,296,9.5\n433,297,10.0\n433,298,10.5\n433,299,11.0\n433,300,6.5\n433,301,6.0\n433,302,5.5\n433,303,5.0\n433,304,4.5\n433,305,4.0\n433,306,3.5\n433,307,3.0\n433,308,2.5\n433,309,3.0\n433,310,3.5\n433,311,4.0\n433,312,4.5\n433,313,5.0\n433,314,5.5\n433,315,6.0\n433,316,6.5\n433,317,7.0\n433,318,7.5\n433,319,8.0\n433,320,8.5\n433,321,9.0\n433,322,9.5\n433,323,10.0\n433,324,10.5\n433,325,6.0\n433,326,5.5\n433,327,5.0\n433,328,4.5\n433,329,4.0\n433,330,3.5\n433,331,3.0\n433,332,2.5\n433,333,2.0\n433,334,2.5\n433,335,3.0\n433,336,3.5\n433,337,4.0\n433,338,4.5\n433,339,5.0\n433,340,5.5\n433,341,6.0\n433,342,6.5\n433,343,7.0\n433,344,7.5\n433,345,8.0\n433,346,8.5\n433,347,9.0\n433,348,9.5\n433,349,10.0\n433,350,5.5\n433,351,5.0\n433,352,4.5\n433,353,4.0\n433,354,3.5\n433,355,3.0\n433,356,2.5\n433,357,2.0\n433,358,1.5\n433,359,2.0\n433,360,2.5\n433,361,3.0\n433,362,3.5\n433,363,4.0\n433,364,4.5\n433,365,5.0\n433,366,5.5\n433,367,6.0\n433,368,6.5\n433,369,7.0\n433,370,7.5\n433,371,8.0\n433,372,8.5\n433,373,9.0\n433,374,9.5\n433,375,5.0\n433,376,4.5\n433,377,4.0\n433,378,3.5\n433,379,3.0\n433,380,2.5\n433,381,2.0\n433,382,1.5\n433,383,1.0\n433,384,1.5\n433,385,2.0\n433,386,2.5\n433,387,3.0\n433,388,3.5\n433,389,4.0\n433,390,4.5\n433,391,5.0\n433,392,5.5\n433,393,6.0\n433,394,6.5\n433,395,7.0\n433,396,7.5\n433,397,8.0\n433,398,8.5\n433,399,9.0\n433,400,4.5\n433,401,4.0\n433,402,3.5\n433,403,3.0\n433,404,2.5\n433,405,2.0\n433,406,1.5\n433,407,1.0\n433,408,0.5\n433,409,1.0\n433,410,1.5\n433,411,2.0\n433,412,2.5\n433,413,3.0\n433,414,3.5\n433,415,4.0\n433,416,4.5\n433,417,5.0\n433,418,5.5\n433,419,6.0\n433,420,6.5\n433,421,7.0\n433,422,7.5\n433,423,8.0\n433,424,8.5\n433,425,4.0\n433,426,3.5\n433,427,3.0\n433,428,2.5\n433,429,2.0\n433,430,1.5\n433,431,1.0\n433,432,0.5\n433,433,0\n433,434,0.5\n433,435,1.0\n433,436,1.5\n433,437,2.0\n433,438,2.5\n433,439,3.0\n433,440,3.5\n433,441,4.0\n433,442,4.5\n433,443,5.0\n433,444,5.5\n433,445,6.0\n433,446,6.5\n433,447,7.0\n433,448,7.5\n433,449,8.0\n433,450,4.5\n433,451,4.0\n433,452,3.5\n433,453,3.0\n433,454,2.5\n433,455,2.0\n433,456,1.5\n433,457,1.0\n433,458,0.5\n433,459,1.0\n433,460,1.5\n433,461,2.0\n433,462,2.5\n433,463,3.0\n433,464,3.5\n433,465,4.0\n433,466,4.5\n433,467,5.0\n433,468,5.5\n433,469,6.0\n433,470,6.5\n433,471,7.0\n433,472,7.5\n433,473,8.0\n433,474,8.5\n433,475,5.0\n433,476,4.5\n433,477,4.0\n433,478,3.5\n433,479,3.0\n433,480,2.5\n433,481,2.0\n433,482,1.5\n433,483,1.0\n433,484,1.5\n433,485,2.0\n433,486,2.5\n433,487,3.0\n433,488,3.5\n433,489,4.0\n433,490,4.5\n433,491,5.0\n433,492,5.5\n433,493,6.0\n433,494,6.5\n433,495,7.0\n433,496,7.5\n433,497,8.0\n433,498,8.5\n433,499,9.0\n433,500,5.5\n433,501,5.0\n433,502,4.5\n433,503,4.0\n433,504,3.5\n433,505,3.0\n433,506,2.5\n433,507,2.0\n433,508,1.5\n433,509,2.0\n433,510,2.5\n433,511,3.0\n433,512,3.5\n433,513,4.0\n433,514,4.5\n433,515,5.0\n433,516,5.5\n433,517,6.0\n433,518,6.5\n433,519,7.0\n433,520,7.5\n433,521,8.0\n433,522,8.5\n433,523,9.0\n433,524,9.5\n433,525,6.0\n433,526,5.5\n433,527,5.0\n433,528,4.5\n433,529,4.0\n433,530,3.5\n433,531,3.0\n433,532,2.5\n433,533,2.0\n433,534,2.5\n433,535,3.0\n433,536,3.5\n433,537,4.0\n433,538,4.5\n433,539,5.0\n433,540,5.5\n433,541,6.0\n433,542,6.5\n433,543,7.0\n433,544,7.5\n433,545,8.0\n433,546,8.5\n433,547,9.0\n433,548,9.5\n433,549,10.0\n433,550,6.5\n433,551,6.0\n433,552,5.5\n433,553,5.0\n433,554,4.5\n433,555,4.0\n433,556,3.5\n433,557,3.0\n433,558,2.5\n433,559,3.0\n433,560,3.5\n433,561,4.0\n433,562,4.5\n433,563,5.0\n433,564,5.5\n433,565,6.0\n433,566,6.5\n433,567,7.0\n433,568,7.5\n433,569,8.0\n433,570,8.5\n433,571,9.0\n433,572,9.5\n433,573,10.0\n433,574,10.5\n433,575,7.0\n433,576,6.5\n433,577,6.0\n433,578,5.5\n433,579,5.0\n433,580,4.5\n433,581,4.0\n433,582,3.5\n433,583,3.0\n433,584,3.5\n433,585,4.0\n433,586,4.5\n433,587,5.0\n433,588,5.5\n433,589,6.0\n433,590,6.5\n433,591,7.0\n433,592,7.5\n433,593,8.0\n433,594,8.5\n433,595,9.0\n433,596,9.5\n433,597,10.0\n433,598,10.5\n433,599,11.0\n433,600,7.5\n433,601,7.0\n433,602,6.5\n433,603,6.0\n433,604,5.5\n433,605,5.0\n433,606,4.5\n433,607,4.0\n433,608,3.5\n433,609,4.0\n433,610,4.5\n433,611,5.0\n433,612,5.5\n433,613,6.0\n433,614,6.5\n433,615,7.0\n433,616,7.5\n433,617,8.0\n433,618,8.5\n433,619,9.0\n433,620,9.5\n433,621,10.0\n433,622,10.5\n433,623,11.0\n433,624,11.5\n434,0,13.0\n434,1,12.5\n434,2,12.0\n434,3,11.5\n434,4,11.0\n434,5,10.5\n434,6,10.0\n434,7,9.5\n434,8,9.0\n434,9,8.5\n434,10,9.0\n434,11,9.5\n434,12,10.0\n434,13,10.5\n434,14,11.0\n434,15,11.5\n434,16,12.0\n434,17,12.5\n434,18,13.0\n434,19,13.5\n434,20,14.0\n434,21,14.5\n434,22,15.0\n434,23,15.5\n434,24,16.0\n434,25,12.5\n434,26,12.0\n434,27,11.5\n434,28,11.0\n434,29,10.5\n434,30,10.0\n434,31,9.5\n434,32,9.0\n434,33,8.5\n434,34,8.0\n434,35,8.5\n434,36,9.0\n434,37,9.5\n434,38,10.0\n434,39,10.5\n434,40,11.0\n434,41,11.5\n434,42,12.0\n434,43,12.5\n434,44,13.0\n434,45,13.5\n434,46,14.0\n434,47,14.5\n434,48,15.0\n434,49,15.5\n434,50,12.0\n434,51,11.5\n434,52,11.0\n434,53,10.5\n434,54,10.0\n434,55,9.5\n434,56,9.0\n434,57,8.5\n434,58,8.0\n434,59,7.5\n434,60,8.0\n434,61,8.5\n434,62,9.0\n434,63,9.5\n434,64,10.0\n434,65,10.5\n434,66,11.0\n434,67,11.5\n434,68,12.0\n434,69,12.5\n434,70,13.0\n434,71,13.5\n434,72,14.0\n434,73,14.5\n434,74,15.0\n434,75,11.5\n434,76,11.0\n434,77,10.5\n434,78,10.0\n434,79,9.5\n434,80,9.0\n434,81,8.5\n434,82,8.0\n434,83,7.5\n434,84,7.0\n434,85,7.5\n434,86,8.0\n434,87,8.5\n434,88,9.0\n434,89,9.5\n434,90,10.0\n434,91,10.5\n434,92,11.0\n434,93,11.5\n434,94,12.0\n434,95,12.5\n434,96,13.0\n434,97,13.5\n434,98,14.0\n434,99,14.5\n434,100,11.0\n434,101,10.5\n434,102,10.0\n434,103,9.5\n434,104,9.0\n434,105,8.5\n434,106,8.0\n434,107,7.5\n434,108,7.0\n434,109,6.5\n434,110,7.0\n434,111,7.5\n434,112,8.0\n434,113,8.5\n434,114,9.0\n434,115,9.5\n434,116,10.0\n434,117,10.5\n434,118,11.0\n434,119,11.5\n434,120,12.0\n434,121,12.5\n434,122,13.0\n434,123,13.5\n434,124,14.0\n434,125,10.5\n434,126,10.0\n434,127,9.5\n434,128,9.0\n434,129,8.5\n434,130,8.0\n434,131,7.5\n434,132,7.0\n434,133,6.5\n434,134,6.0\n434,135,6.5\n434,136,7.0\n434,137,7.5\n434,138,8.0\n434,139,8.5\n434,140,9.0\n434,141,9.5\n434,142,10.0\n434,143,10.5\n434,144,11.0\n434,145,11.5\n434,146,12.0\n434,147,12.5\n434,148,13.0\n434,149,13.5\n434,150,10.0\n434,151,9.5\n434,152,9.0\n434,153,8.5\n434,154,8.0\n434,155,7.5\n434,156,7.0\n434,157,6.5\n434,158,6.0\n434,159,5.5\n434,160,6.0\n434,161,6.5\n434,162,7.0\n434,163,7.5\n434,164,8.0\n434,165,8.5\n434,166,9.0\n434,167,9.5\n434,168,10.0\n434,169,10.5\n434,170,11.0\n434,171,11.5\n434,172,12.0\n434,173,12.5\n434,174,13.0\n434,175,9.5\n434,176,9.0\n434,177,8.5\n434,178,8.0\n434,179,7.5\n434,180,7.0\n434,181,6.5\n434,182,6.0\n434,183,5.5\n434,184,5.0\n434,185,5.5\n434,186,6.0\n434,187,6.5\n434,188,7.0\n434,189,7.5\n434,190,8.0\n434,191,8.5\n434,192,9.0\n434,193,9.5\n434,194,10.0\n434,195,10.5\n434,196,11.0\n434,197,11.5\n434,198,12.0\n434,199,12.5\n434,200,9.0\n434,201,8.5\n434,202,8.0\n434,203,7.5\n434,204,7.0\n434,205,6.5\n434,206,6.0\n434,207,5.5\n434,208,5.0\n434,209,4.5\n434,210,5.0\n434,211,5.5\n434,212,6.0\n434,213,6.5\n434,214,7.0\n434,215,7.5\n434,216,8.0\n434,217,8.5\n434,218,9.0\n434,219,9.5\n434,220,10.0\n434,221,10.5\n434,222,11.0\n434,223,11.5\n434,224,12.0\n434,225,8.5\n434,226,8.0\n434,227,7.5\n434,228,7.0\n434,229,6.5\n434,230,6.0\n434,231,5.5\n434,232,5.0\n434,233,4.5\n434,234,4.0\n434,235,4.5\n434,236,5.0\n434,237,5.5\n434,238,6.0\n434,239,6.5\n434,240,7.0\n434,241,7.5\n434,242,8.0\n434,243,8.5\n434,244,9.0\n434,245,9.5\n434,246,10.0\n434,247,10.5\n434,248,11.0\n434,249,11.5\n434,250,8.0\n434,251,7.5\n434,252,7.0\n434,253,6.5\n434,254,6.0\n434,255,5.5\n434,256,5.0\n434,257,4.5\n434,258,4.0\n434,259,3.5\n434,260,4.0\n434,261,4.5\n434,262,5.0\n434,263,5.5\n434,264,6.0\n434,265,6.5\n434,266,7.0\n434,267,7.5\n434,268,8.0\n434,269,8.5\n434,270,9.0\n434,271,9.5\n434,272,10.0\n434,273,10.5\n434,274,11.0\n434,275,7.5\n434,276,7.0\n434,277,6.5\n434,278,6.0\n434,279,5.5\n434,280,5.0\n434,281,4.5\n434,282,4.0\n434,283,3.5\n434,284,3.0\n434,285,3.5\n434,286,4.0\n434,287,4.5\n434,288,5.0\n434,289,5.5\n434,290,6.0\n434,291,6.5\n434,292,7.0\n434,293,7.5\n434,294,8.0\n434,295,8.5\n434,296,9.0\n434,297,9.5\n434,298,10.0\n434,299,10.5\n434,300,7.0\n434,301,6.5\n434,302,6.0\n434,303,5.5\n434,304,5.0\n434,305,4.5\n434,306,4.0\n434,307,3.5\n434,308,3.0\n434,309,2.5\n434,310,3.0\n434,311,3.5\n434,312,4.0\n434,313,4.5\n434,314,5.0\n434,315,5.5\n434,316,6.0\n434,317,6.5\n434,318,7.0\n434,319,7.5\n434,320,8.0\n434,321,8.5\n434,322,9.0\n434,323,9.5\n434,324,10.0\n434,325,6.5\n434,326,6.0\n434,327,5.5\n434,328,5.0\n434,329,4.5\n434,330,4.0\n434,331,3.5\n434,332,3.0\n434,333,2.5\n434,334,2.0\n434,335,2.5\n434,336,3.0\n434,337,3.5\n434,338,4.0\n434,339,4.5\n434,340,5.0\n434,341,5.5\n434,342,6.0\n434,343,6.5\n434,344,7.0\n434,345,7.5\n434,346,8.0\n434,347,8.5\n434,348,9.0\n434,349,9.5\n434,350,6.0\n434,351,5.5\n434,352,5.0\n434,353,4.5\n434,354,4.0\n434,355,3.5\n434,356,3.0\n434,357,2.5\n434,358,2.0\n434,359,1.5\n434,360,2.0\n434,361,2.5\n434,362,3.0\n434,363,3.5\n434,364,4.0\n434,365,4.5\n434,366,5.0\n434,367,5.5\n434,368,6.0\n434,369,6.5\n434,370,7.0\n434,371,7.5\n434,372,8.0\n434,373,8.5\n434,374,9.0\n434,375,5.5\n434,376,5.0\n434,377,4.5\n434,378,4.0\n434,379,3.5\n434,380,3.0\n434,381,2.5\n434,382,2.0\n434,383,1.5\n434,384,1.0\n434,385,1.5\n434,386,2.0\n434,387,2.5\n434,388,3.0\n434,389,3.5\n434,390,4.0\n434,391,4.5\n434,392,5.0\n434,393,5.5\n434,394,6.0\n434,395,6.5\n434,396,7.0\n434,397,7.5\n434,398,8.0\n434,399,8.5\n434,400,5.0\n434,401,4.5\n434,402,4.0\n434,403,3.5\n434,404,3.0\n434,405,2.5\n434,406,2.0\n434,407,1.5\n434,408,1.0\n434,409,0.5\n434,410,1.0\n434,411,1.5\n434,412,2.0\n434,413,2.5\n434,414,3.0\n434,415,3.5\n434,416,4.0\n434,417,4.5\n434,418,5.0\n434,419,5.5\n434,420,6.0\n434,421,6.5\n434,422,7.0\n434,423,7.5\n434,424,8.0\n434,425,4.5\n434,426,4.0\n434,427,3.5\n434,428,3.0\n434,429,2.5\n434,430,2.0\n434,431,1.5\n434,432,1.0\n434,433,0.5\n434,434,0\n434,435,0.5\n434,436,1.0\n434,437,1.5\n434,438,2.0\n434,439,2.5\n434,440,3.0\n434,441,3.5\n434,442,4.0\n434,443,4.5\n434,444,5.0\n434,445,5.5\n434,446,6.0\n434,447,6.5\n434,448,7.0\n434,449,7.5\n434,450,5.0\n434,451,4.5\n434,452,4.0\n434,453,3.5\n434,454,3.0\n434,455,2.5\n434,456,2.0\n434,457,1.5\n434,458,1.0\n434,459,0.5\n434,460,1.0\n434,461,1.5\n434,462,2.0\n434,463,2.5\n434,464,3.0\n434,465,3.5\n434,466,4.0\n434,467,4.5\n434,468,5.0\n434,469,5.5\n434,470,6.0\n434,471,6.5\n434,472,7.0\n434,473,7.5\n434,474,8.0\n434,475,5.5\n434,476,5.0\n434,477,4.5\n434,478,4.0\n434,479,3.5\n434,480,3.0\n434,481,2.5\n434,482,2.0\n434,483,1.5\n434,484,1.0\n434,485,1.5\n434,486,2.0\n434,487,2.5\n434,488,3.0\n434,489,3.5\n434,490,4.0\n434,491,4.5\n434,492,5.0\n434,493,5.5\n434,494,6.0\n434,495,6.5\n434,496,7.0\n434,497,7.5\n434,498,8.0\n434,499,8.5\n434,500,6.0\n434,501,5.5\n434,502,5.0\n434,503,4.5\n434,504,4.0\n434,505,3.5\n434,506,3.0\n434,507,2.5\n434,508,2.0\n434,509,1.5\n434,510,2.0\n434,511,2.5\n434,512,3.0\n434,513,3.5\n434,514,4.0\n434,515,4.5\n434,516,5.0\n434,517,5.5\n434,518,6.0\n434,519,6.5\n434,520,7.0\n434,521,7.5\n434,522,8.0\n434,523,8.5\n434,524,9.0\n434,525,6.5\n434,526,6.0\n434,527,5.5\n434,528,5.0\n434,529,4.5\n434,530,4.0\n434,531,3.5\n434,532,3.0\n434,533,2.5\n434,534,2.0\n434,535,2.5\n434,536,3.0\n434,537,3.5\n434,538,4.0\n434,539,4.5\n434,540,5.0\n434,541,5.5\n434,542,6.0\n434,543,6.5\n434,544,7.0\n434,545,7.5\n434,546,8.0\n434,547,8.5\n434,548,9.0\n434,549,9.5\n434,550,7.0\n434,551,6.5\n434,552,6.0\n434,553,5.5\n434,554,5.0\n434,555,4.5\n434,556,4.0\n434,557,3.5\n434,558,3.0\n434,559,2.5\n434,560,3.0\n434,561,3.5\n434,562,4.0\n434,563,4.5\n434,564,5.0\n434,565,5.5\n434,566,6.0\n434,567,6.5\n434,568,7.0\n434,569,7.5\n434,570,8.0\n434,571,8.5\n434,572,9.0\n434,573,9.5\n434,574,10.0\n434,575,7.5\n434,576,7.0\n434,577,6.5\n434,578,6.0\n434,579,5.5\n434,580,5.0\n434,581,4.5\n434,582,4.0\n434,583,3.5\n434,584,3.0\n434,585,3.5\n434,586,4.0\n434,587,4.5\n434,588,5.0\n434,589,5.5\n434,590,6.0\n434,591,6.5\n434,592,7.0\n434,593,7.5\n434,594,8.0\n434,595,8.5\n434,596,9.0\n434,597,9.5\n434,598,10.0\n434,599,10.5\n434,600,8.0\n434,601,7.5\n434,602,7.0\n434,603,6.5\n434,604,6.0\n434,605,5.5\n434,606,5.0\n434,607,4.5\n434,608,4.0\n434,609,3.5\n434,610,4.0\n434,611,4.5\n434,612,5.0\n434,613,5.5\n434,614,6.0\n434,615,6.5\n434,616,7.0\n434,617,7.5\n434,618,8.0\n434,619,8.5\n434,620,9.0\n434,621,9.5\n434,622,10.0\n434,623,10.5\n434,624,11.0\n435,0,13.5\n435,1,13.0\n435,2,12.5\n435,3,12.0\n435,4,11.5\n435,5,11.0\n435,6,10.5\n435,7,10.0\n435,8,9.5\n435,9,9.0\n435,10,8.5\n435,11,9.0\n435,12,9.5\n435,13,10.0\n435,14,10.5\n435,15,11.0\n435,16,11.5\n435,17,12.0\n435,18,12.5\n435,19,13.0\n435,20,13.5\n435,21,14.0\n435,22,14.5\n435,23,15.0\n435,24,15.5\n435,25,13.0\n435,26,12.5\n435,27,12.0\n435,28,11.5\n435,29,11.0\n435,30,10.5\n435,31,10.0\n435,32,9.5\n435,33,9.0\n435,34,8.5\n435,35,8.0\n435,36,8.5\n435,37,9.0\n435,38,9.5\n435,39,10.0\n435,40,10.5\n435,41,11.0\n435,42,11.5\n435,43,12.0\n435,44,12.5\n435,45,13.0\n435,46,13.5\n435,47,14.0\n435,48,14.5\n435,49,15.0\n435,50,12.5\n435,51,12.0\n435,52,11.5\n435,53,11.0\n435,54,10.5\n435,55,10.0\n435,56,9.5\n435,57,9.0\n435,58,8.5\n435,59,8.0\n435,60,7.5\n435,61,8.0\n435,62,8.5\n435,63,9.0\n435,64,9.5\n435,65,10.0\n435,66,10.5\n435,67,11.0\n435,68,11.5\n435,69,12.0\n435,70,12.5\n435,71,13.0\n435,72,13.5\n435,73,14.0\n435,74,14.5\n435,75,12.0\n435,76,11.5\n435,77,11.0\n435,78,10.5\n435,79,10.0\n435,80,9.5\n435,81,9.0\n435,82,8.5\n435,83,8.0\n435,84,7.5\n435,85,7.0\n435,86,7.5\n435,87,8.0\n435,88,8.5\n435,89,9.0\n435,90,9.5\n435,91,10.0\n435,92,10.5\n435,93,11.0\n435,94,11.5\n435,95,12.0\n435,96,12.5\n435,97,13.0\n435,98,13.5\n435,99,14.0\n435,100,11.5\n435,101,11.0\n435,102,10.5\n435,103,10.0\n435,104,9.5\n435,105,9.0\n435,106,8.5\n435,107,8.0\n435,108,7.5\n435,109,7.0\n435,110,6.5\n435,111,7.0\n435,112,7.5\n435,113,8.0\n435,114,8.5\n435,115,9.0\n435,116,9.5\n435,117,10.0\n435,118,10.5\n435,119,11.0\n435,120,11.5\n435,121,12.0\n435,122,12.5\n435,123,13.0\n435,124,13.5\n435,125,11.0\n435,126,10.5\n435,127,10.0\n435,128,9.5\n435,129,9.0\n435,130,8.5\n435,131,8.0\n435,132,7.5\n435,133,7.0\n435,134,6.5\n435,135,6.0\n435,136,6.5\n435,137,7.0\n435,138,7.5\n435,139,8.0\n435,140,8.5\n435,141,9.0\n435,142,9.5\n435,143,10.0\n435,144,10.5\n435,145,11.0\n435,146,11.5\n435,147,12.0\n435,148,12.5\n435,149,13.0\n435,150,10.5\n435,151,10.0\n435,152,9.5\n435,153,9.0\n435,154,8.5\n435,155,8.0\n435,156,7.5\n435,157,7.0\n435,158,6.5\n435,159,6.0\n435,160,5.5\n435,161,6.0\n435,162,6.5\n435,163,7.0\n435,164,7.5\n435,165,8.0\n435,166,8.5\n435,167,9.0\n435,168,9.5\n435,169,10.0\n435,170,10.5\n435,171,11.0\n435,172,11.5\n435,173,12.0\n435,174,12.5\n435,175,10.0\n435,176,9.5\n435,177,9.0\n435,178,8.5\n435,179,8.0\n435,180,7.5\n435,181,7.0\n435,182,6.5\n435,183,6.0\n435,184,5.5\n435,185,5.0\n435,186,5.5\n435,187,6.0\n435,188,6.5\n435,189,7.0\n435,190,7.5\n435,191,8.0\n435,192,8.5\n435,193,9.0\n435,194,9.5\n435,195,10.0\n435,196,10.5\n435,197,11.0\n435,198,11.5\n435,199,12.0\n435,200,9.5\n435,201,9.0\n435,202,8.5\n435,203,8.0\n435,204,7.5\n435,205,7.0\n435,206,6.5\n435,207,6.0\n435,208,5.5\n435,209,5.0\n435,210,4.5\n435,211,5.0\n435,212,5.5\n435,213,6.0\n435,214,6.5\n435,215,7.0\n435,216,7.5\n435,217,8.0\n435,218,8.5\n435,219,9.0\n435,220,9.5\n435,221,10.0\n435,222,10.5\n435,223,11.0\n435,224,11.5\n435,225,9.0\n435,226,8.5\n435,227,8.0\n435,228,7.5\n435,229,7.0\n435,230,6.5\n435,231,6.0\n435,232,5.5\n435,233,5.0\n435,234,4.5\n435,235,4.0\n435,236,4.5\n435,237,5.0\n435,238,5.5\n435,239,6.0\n435,240,6.5\n435,241,7.0\n435,242,7.5\n435,243,8.0\n435,244,8.5\n435,245,9.0\n435,246,9.5\n435,247,10.0\n435,248,10.5\n435,249,11.0\n435,250,8.5\n435,251,8.0\n435,252,7.5\n435,253,7.0\n435,254,6.5\n435,255,6.0\n435,256,5.5\n435,257,5.0\n435,258,4.5\n435,259,4.0\n435,260,3.5\n435,261,4.0\n435,262,4.5\n435,263,5.0\n435,264,5.5\n435,265,6.0\n435,266,6.5\n435,267,7.0\n435,268,7.5\n435,269,8.0\n435,270,8.5\n435,271,9.0\n435,272,9.5\n435,273,10.0\n435,274,10.5\n435,275,8.0\n435,276,7.5\n435,277,7.0\n435,278,6.5\n435,279,6.0\n435,280,5.5\n435,281,5.0\n435,282,4.5\n435,283,4.0\n435,284,3.5\n435,285,3.0\n435,286,3.5\n435,287,4.0\n435,288,4.5\n435,289,5.0\n435,290,5.5\n435,291,6.0\n435,292,6.5\n435,293,7.0\n435,294,7.5\n435,295,8.0\n435,296,8.5\n435,297,9.0\n435,298,9.5\n435,299,10.0\n435,300,7.5\n435,301,7.0\n435,302,6.5\n435,303,6.0\n435,304,5.5\n435,305,5.0\n435,306,4.5\n435,307,4.0\n435,308,3.5\n435,309,3.0\n435,310,2.5\n435,311,3.0\n435,312,3.5\n435,313,4.0\n435,314,4.5\n435,315,5.0\n435,316,5.5\n435,317,6.0\n435,318,6.5\n435,319,7.0\n435,320,7.5\n435,321,8.0\n435,322,8.5\n435,323,9.0\n435,324,9.5\n435,325,7.0\n435,326,6.5\n435,327,6.0\n435,328,5.5\n435,329,5.0\n435,330,4.5\n435,331,4.0\n435,332,3.5\n435,333,3.0\n435,334,2.5\n435,335,2.0\n435,336,2.5\n435,337,3.0\n435,338,3.5\n435,339,4.0\n435,340,4.5\n435,341,5.0\n435,342,5.5\n435,343,6.0\n435,344,6.5\n435,345,7.0\n435,346,7.5\n435,347,8.0\n435,348,8.5\n435,349,9.0\n435,350,6.5\n435,351,6.0\n435,352,5.5\n435,353,5.0\n435,354,4.5\n435,355,4.0\n435,356,3.5\n435,357,3.0\n435,358,2.5\n435,359,2.0\n435,360,1.5\n435,361,2.0\n435,362,2.5\n435,363,3.0\n435,364,3.5\n435,365,4.0\n435,366,4.5\n435,367,5.0\n435,368,5.5\n435,369,6.0\n435,370,6.5\n435,371,7.0\n435,372,7.5\n435,373,8.0\n435,374,8.5\n435,375,6.0\n435,376,5.5\n435,377,5.0\n435,378,4.5\n435,379,4.0\n435,380,3.5\n435,381,3.0\n435,382,2.5\n435,383,2.0\n435,384,1.5\n435,385,1.0\n435,386,1.5\n435,387,2.0\n435,388,2.5\n435,389,3.0\n435,390,3.5\n435,391,4.0\n435,392,4.5\n435,393,5.0\n435,394,5.5\n435,395,6.0\n435,396,6.5\n435,397,7.0\n435,398,7.5\n435,399,8.0\n435,400,5.5\n435,401,5.0\n435,402,4.5\n435,403,4.0\n435,404,3.5\n435,405,3.0\n435,406,2.5\n435,407,2.0\n435,408,1.5\n435,409,1.0\n435,410,0.5\n435,411,1.0\n435,412,1.5\n435,413,2.0\n435,414,2.5\n435,415,3.0\n435,416,3.5\n435,417,4.0\n435,418,4.5\n435,419,5.0\n435,420,5.5\n435,421,6.0\n435,422,6.5\n435,423,7.0\n435,424,7.5\n435,425,5.0\n435,426,4.5\n435,427,4.0\n435,428,3.5\n435,429,3.0\n435,430,2.5\n435,431,2.0\n435,432,1.5\n435,433,1.0\n435,434,0.5\n435,435,0\n435,436,0.5\n435,437,1.0\n435,438,1.5\n435,439,2.0\n435,440,2.5\n435,441,3.0\n435,442,3.5\n435,443,4.0\n435,444,4.5\n435,445,5.0\n435,446,5.5\n435,447,6.0\n435,448,6.5\n435,449,7.0\n435,450,5.5\n435,451,5.0\n435,452,4.5\n435,453,4.0\n435,454,3.5\n435,455,3.0\n435,456,2.5\n435,457,2.0\n435,458,1.5\n435,459,1.0\n435,460,0.5\n435,461,1.0\n435,462,1.5\n435,463,2.0\n435,464,2.5\n435,465,3.0\n435,466,3.5\n435,467,4.0\n435,468,4.5\n435,469,5.0\n435,470,5.5\n435,471,6.0\n435,472,6.5\n435,473,7.0\n435,474,7.5\n435,475,6.0\n435,476,5.5\n435,477,5.0\n435,478,4.5\n435,479,4.0\n435,480,3.5\n435,481,3.0\n435,482,2.5\n435,483,2.0\n435,484,1.5\n435,485,1.0\n435,486,1.5\n435,487,2.0\n435,488,2.5\n435,489,3.0\n435,490,3.5\n435,491,4.0\n435,492,4.5\n435,493,5.0\n435,494,5.5\n435,495,6.0\n435,496,6.5\n435,497,7.0\n435,498,7.5\n435,499,8.0\n435,500,6.5\n435,501,6.0\n435,502,5.5\n435,503,5.0\n435,504,4.5\n435,505,4.0\n435,506,3.5\n435,507,3.0\n435,508,2.5\n435,509,2.0\n435,510,1.5\n435,511,2.0\n435,512,2.5\n435,513,3.0\n435,514,3.5\n435,515,4.0\n435,516,4.5\n435,517,5.0\n435,518,5.5\n435,519,6.0\n435,520,6.5\n435,521,7.0\n435,522,7.5\n435,523,8.0\n435,524,8.5\n435,525,7.0\n435,526,6.5\n435,527,6.0\n435,528,5.5\n435,529,5.0\n435,530,4.5\n435,531,4.0\n435,532,3.5\n435,533,3.0\n435,534,2.5\n435,535,2.0\n435,536,2.5\n435,537,3.0\n435,538,3.5\n435,539,4.0\n435,540,4.5\n435,541,5.0\n435,542,5.5\n435,543,6.0\n435,544,6.5\n435,545,7.0\n435,546,7.5\n435,547,8.0\n435,548,8.5\n435,549,9.0\n435,550,7.5\n435,551,7.0\n435,552,6.5\n435,553,6.0\n435,554,5.5\n435,555,5.0\n435,556,4.5\n435,557,4.0\n435,558,3.5\n435,559,3.0\n435,560,2.5\n435,561,3.0\n435,562,3.5\n435,563,4.0\n435,564,4.5\n435,565,5.0\n435,566,5.5\n435,567,6.0\n435,568,6.5\n435,569,7.0\n435,570,7.5\n435,571,8.0\n435,572,8.5\n435,573,9.0\n435,574,9.5\n435,575,8.0\n435,576,7.5\n435,577,7.0\n435,578,6.5\n435,579,6.0\n435,580,5.5\n435,581,5.0\n435,582,4.5\n435,583,4.0\n435,584,3.5\n435,585,3.0\n435,586,3.5\n435,587,4.0\n435,588,4.5\n435,589,5.0\n435,590,5.5\n435,591,6.0\n435,592,6.5\n435,593,7.0\n435,594,7.5\n435,595,8.0\n435,596,8.5\n435,597,9.0\n435,598,9.5\n435,599,10.0\n435,600,8.5\n435,601,8.0\n435,602,7.5\n435,603,7.0\n435,604,6.5\n435,605,6.0\n435,606,5.5\n435,607,5.0\n435,608,4.5\n435,609,4.0\n435,610,3.5\n435,611,4.0\n435,612,4.5\n435,613,5.0\n435,614,5.5\n435,615,6.0\n435,616,6.5\n435,617,7.0\n435,618,7.5\n435,619,8.0\n435,620,8.5\n435,621,9.0\n435,622,9.5\n435,623,10.0\n435,624,10.5\n436,0,14.0\n436,1,13.5\n436,2,13.0\n436,3,12.5\n436,4,12.0\n436,5,11.5\n436,6,11.0\n436,7,10.5\n436,8,10.0\n436,9,9.5\n436,10,9.0\n436,11,8.5\n436,12,9.0\n436,13,9.5\n436,14,10.0\n436,15,10.5\n436,16,11.0\n436,17,11.5\n436,18,12.0\n436,19,12.5\n436,20,13.0\n436,21,13.5\n436,22,14.0\n436,23,14.5\n436,24,15.0\n436,25,13.5\n436,26,13.0\n436,27,12.5\n436,28,12.0\n436,29,11.5\n436,30,11.0\n436,31,10.5\n436,32,10.0\n436,33,9.5\n436,34,9.0\n436,35,8.5\n436,36,8.0\n436,37,8.5\n436,38,9.0\n436,39,9.5\n436,40,10.0\n436,41,10.5\n436,42,11.0\n436,43,11.5\n436,44,12.0\n436,45,12.5\n436,46,13.0\n436,47,13.5\n436,48,14.0\n436,49,14.5\n436,50,13.0\n436,51,12.5\n436,52,12.0\n436,53,11.5\n436,54,11.0\n436,55,10.5\n436,56,10.0\n436,57,9.5\n436,58,9.0\n436,59,8.5\n436,60,8.0\n436,61,7.5\n436,62,8.0\n436,63,8.5\n436,64,9.0\n436,65,9.5\n436,66,10.0\n436,67,10.5\n436,68,11.0\n436,69,11.5\n436,70,12.0\n436,71,12.5\n436,72,13.0\n436,73,13.5\n436,74,14.0\n436,75,12.5\n436,76,12.0\n436,77,11.5\n436,78,11.0\n436,79,10.5\n436,80,10.0\n436,81,9.5\n436,82,9.0\n436,83,8.5\n436,84,8.0\n436,85,7.5\n436,86,7.0\n436,87,7.5\n436,88,8.0\n436,89,8.5\n436,90,9.0\n436,91,9.5\n436,92,10.0\n436,93,10.5\n436,94,11.0\n436,95,11.5\n436,96,12.0\n436,97,12.5\n436,98,13.0\n436,99,13.5\n436,100,12.0\n436,101,11.5\n436,102,11.0\n436,103,10.5\n436,104,10.0\n436,105,9.5\n436,106,9.0\n436,107,8.5\n436,108,8.0\n436,109,7.5\n436,110,7.0\n436,111,6.5\n436,112,7.0\n436,113,7.5\n436,114,8.0\n436,115,8.5\n436,116,9.0\n436,117,9.5\n436,118,10.0\n436,119,10.5\n436,120,11.0\n436,121,11.5\n436,122,12.0\n436,123,12.5\n436,124,13.0\n436,125,11.5\n436,126,11.0\n436,127,10.5\n436,128,10.0\n436,129,9.5\n436,130,9.0\n436,131,8.5\n436,132,8.0\n436,133,7.5\n436,134,7.0\n436,135,6.5\n436,136,6.0\n436,137,6.5\n436,138,7.0\n436,139,7.5\n436,140,8.0\n436,141,8.5\n436,142,9.0\n436,143,9.5\n436,144,10.0\n436,145,10.5\n436,146,11.0\n436,147,11.5\n436,148,12.0\n436,149,12.5\n436,150,11.0\n436,151,10.5\n436,152,10.0\n436,153,9.5\n436,154,9.0\n436,155,8.5\n436,156,8.0\n436,157,7.5\n436,158,7.0\n436,159,6.5\n436,160,6.0\n436,161,5.5\n436,162,6.0\n436,163,6.5\n436,164,7.0\n436,165,7.5\n436,166,8.0\n436,167,8.5\n436,168,9.0\n436,169,9.5\n436,170,10.0\n436,171,10.5\n436,172,11.0\n436,173,11.5\n436,174,12.0\n436,175,10.5\n436,176,10.0\n436,177,9.5\n436,178,9.0\n436,179,8.5\n436,180,8.0\n436,181,7.5\n436,182,7.0\n436,183,6.5\n436,184,6.0\n436,185,5.5\n436,186,5.0\n436,187,5.5\n436,188,6.0\n436,189,6.5\n436,190,7.0\n436,191,7.5\n436,192,8.0\n436,193,8.5\n436,194,9.0\n436,195,9.5\n436,196,10.0\n436,197,10.5\n436,198,11.0\n436,199,11.5\n436,200,10.0\n436,201,9.5\n436,202,9.0\n436,203,8.5\n436,204,8.0\n436,205,7.5\n436,206,7.0\n436,207,6.5\n436,208,6.0\n436,209,5.5\n436,210,5.0\n436,211,4.5\n436,212,5.0\n436,213,5.5\n436,214,6.0\n436,215,6.5\n436,216,7.0\n436,217,7.5\n436,218,8.0\n436,219,8.5\n436,220,9.0\n436,221,9.5\n436,222,10.0\n436,223,10.5\n436,224,11.0\n436,225,9.5\n436,226,9.0\n436,227,8.5\n436,228,8.0\n436,229,7.5\n436,230,7.0\n436,231,6.5\n436,232,6.0\n436,233,5.5\n436,234,5.0\n436,235,4.5\n436,236,4.0\n436,237,4.5\n436,238,5.0\n436,239,5.5\n436,240,6.0\n436,241,6.5\n436,242,7.0\n436,243,7.5\n436,244,8.0\n436,245,8.5\n436,246,9.0\n436,247,9.5\n436,248,10.0\n436,249,10.5\n436,250,9.0\n436,251,8.5\n436,252,8.0\n436,253,7.5\n436,254,7.0\n436,255,6.5\n436,256,6.0\n436,257,5.5\n436,258,5.0\n436,259,4.5\n436,260,4.0\n436,261,3.5\n436,262,4.0\n436,263,4.5\n436,264,5.0\n436,265,5.5\n436,266,6.0\n436,267,6.5\n436,268,7.0\n436,269,7.5\n436,270,8.0\n436,271,8.5\n436,272,9.0\n436,273,9.5\n436,274,10.0\n436,275,8.5\n436,276,8.0\n436,277,7.5\n436,278,7.0\n436,279,6.5\n436,280,6.0\n436,281,5.5\n436,282,5.0\n436,283,4.5\n436,284,4.0\n436,285,3.5\n436,286,3.0\n436,287,3.5\n436,288,4.0\n436,289,4.5\n436,290,5.0\n436,291,5.5\n436,292,6.0\n436,293,6.5\n436,294,7.0\n436,295,7.5\n436,296,8.0\n436,297,8.5\n436,298,9.0\n436,299,9.5\n436,300,8.0\n436,301,7.5\n436,302,7.0\n436,303,6.5\n436,304,6.0\n436,305,5.5\n436,306,5.0\n436,307,4.5\n436,308,4.0\n436,309,3.5\n436,310,3.0\n436,311,2.5\n436,312,3.0\n436,313,3.5\n436,314,4.0\n436,315,4.5\n436,316,5.0\n436,317,5.5\n436,318,6.0\n436,319,6.5\n436,320,7.0\n436,321,7.5\n436,322,8.0\n436,323,8.5\n436,324,9.0\n436,325,7.5\n436,326,7.0\n436,327,6.5\n436,328,6.0\n436,329,5.5\n436,330,5.0\n436,331,4.5\n436,332,4.0\n436,333,3.5\n436,334,3.0\n436,335,2.5\n436,336,2.0\n436,337,2.5\n436,338,3.0\n436,339,3.5\n436,340,4.0\n436,341,4.5\n436,342,5.0\n436,343,5.5\n436,344,6.0\n436,345,6.5\n436,346,7.0\n436,347,7.5\n436,348,8.0\n436,349,8.5\n436,350,7.0\n436,351,6.5\n436,352,6.0\n436,353,5.5\n436,354,5.0\n436,355,4.5\n436,356,4.0\n436,357,3.5\n436,358,3.0\n436,359,2.5\n436,360,2.0\n436,361,1.5\n436,362,2.0\n436,363,2.5\n436,364,3.0\n436,365,3.5\n436,366,4.0\n436,367,4.5\n436,368,5.0\n436,369,5.5\n436,370,6.0\n436,371,6.5\n436,372,7.0\n436,373,7.5\n436,374,8.0\n436,375,6.5\n436,376,6.0\n436,377,5.5\n436,378,5.0\n436,379,4.5\n436,380,4.0\n436,381,3.5\n436,382,3.0\n436,383,2.5\n436,384,2.0\n436,385,1.5\n436,386,1.0\n436,387,1.5\n436,388,2.0\n436,389,2.5\n436,390,3.0\n436,391,3.5\n436,392,4.0\n436,393,4.5\n436,394,5.0\n436,395,5.5\n436,396,6.0\n436,397,6.5\n436,398,7.0\n436,399,7.5\n436,400,6.0\n436,401,5.5\n436,402,5.0\n436,403,4.5\n436,404,4.0\n436,405,3.5\n436,406,3.0\n436,407,2.5\n436,408,2.0\n436,409,1.5\n436,410,1.0\n436,411,0.5\n436,412,1.0\n436,413,1.5\n436,414,2.0\n436,415,2.5\n436,416,3.0\n436,417,3.5\n436,418,4.0\n436,419,4.5\n436,420,5.0\n436,421,5.5\n436,422,6.0\n436,423,6.5\n436,424,7.0\n436,425,5.5\n436,426,5.0\n436,427,4.5\n436,428,4.0\n436,429,3.5\n436,430,3.0\n436,431,2.5\n436,432,2.0\n436,433,1.5\n436,434,1.0\n436,435,0.5\n436,436,0\n436,437,0.5\n436,438,1.0\n436,439,1.5\n436,440,2.0\n436,441,2.5\n436,442,3.0\n436,443,3.5\n436,444,4.0\n436,445,4.5\n436,446,5.0\n436,447,5.5\n436,448,6.0\n436,449,6.5\n436,450,6.0\n436,451,5.5\n436,452,5.0\n436,453,4.5\n436,454,4.0\n436,455,3.5\n436,456,3.0\n436,457,2.5\n436,458,2.0\n436,459,1.5\n436,460,1.0\n436,461,0.5\n436,462,1.0\n436,463,1.5\n436,464,2.0\n436,465,2.5\n436,466,3.0\n436,467,3.5\n436,468,4.0\n436,469,4.5\n436,470,5.0\n436,471,5.5\n436,472,6.0\n436,473,6.5\n436,474,7.0\n436,475,6.5\n436,476,6.0\n436,477,5.5\n436,478,5.0\n436,479,4.5\n436,480,4.0\n436,481,3.5\n436,482,3.0\n436,483,2.5\n436,484,2.0\n436,485,1.5\n436,486,1.0\n436,487,1.5\n436,488,2.0\n436,489,2.5\n436,490,3.0\n436,491,3.5\n436,492,4.0\n436,493,4.5\n436,494,5.0\n436,495,5.5\n436,496,6.0\n436,497,6.5\n436,498,7.0\n436,499,7.5\n436,500,7.0\n436,501,6.5\n436,502,6.0\n436,503,5.5\n436,504,5.0\n436,505,4.5\n436,506,4.0\n436,507,3.5\n436,508,3.0\n436,509,2.5\n436,510,2.0\n436,511,1.5\n436,512,2.0\n436,513,2.5\n436,514,3.0\n436,515,3.5\n436,516,4.0\n436,517,4.5\n436,518,5.0\n436,519,5.5\n436,520,6.0\n436,521,6.5\n436,522,7.0\n436,523,7.5\n436,524,8.0\n436,525,7.5\n436,526,7.0\n436,527,6.5\n436,528,6.0\n436,529,5.5\n436,530,5.0\n436,531,4.5\n436,532,4.0\n436,533,3.5\n436,534,3.0\n436,535,2.5\n436,536,2.0\n436,537,2.5\n436,538,3.0\n436,539,3.5\n436,540,4.0\n436,541,4.5\n436,542,5.0\n436,543,5.5\n436,544,6.0\n436,545,6.5\n436,546,7.0\n436,547,7.5\n436,548,8.0\n436,549,8.5\n436,550,8.0\n436,551,7.5\n436,552,7.0\n436,553,6.5\n436,554,6.0\n436,555,5.5\n436,556,5.0\n436,557,4.5\n436,558,4.0\n436,559,3.5\n436,560,3.0\n436,561,2.5\n436,562,3.0\n436,563,3.5\n436,564,4.0\n436,565,4.5\n436,566,5.0\n436,567,5.5\n436,568,6.0\n436,569,6.5\n436,570,7.0\n436,571,7.5\n436,572,8.0\n436,573,8.5\n436,574,9.0\n436,575,8.5\n436,576,8.0\n436,577,7.5\n436,578,7.0\n436,579,6.5\n436,580,6.0\n436,581,5.5\n436,582,5.0\n436,583,4.5\n436,584,4.0\n436,585,3.5\n436,586,3.0\n436,587,3.5\n436,588,4.0\n436,589,4.5\n436,590,5.0\n436,591,5.5\n436,592,6.0\n436,593,6.5\n436,594,7.0\n436,595,7.5\n436,596,8.0\n436,597,8.5\n436,598,9.0\n436,599,9.5\n436,600,9.0\n436,601,8.5\n436,602,8.0\n436,603,7.5\n436,604,7.0\n436,605,6.5\n436,606,6.0\n436,607,5.5\n436,608,5.0\n436,609,4.5\n436,610,4.0\n436,611,3.5\n436,612,4.0\n436,613,4.5\n436,614,5.0\n436,615,5.5\n436,616,6.0\n436,617,6.5\n436,618,7.0\n436,619,7.5\n436,620,8.0\n436,621,8.5\n436,622,9.0\n436,623,9.5\n436,624,10.0\n437,0,14.5\n437,1,14.0\n437,2,13.5\n437,3,13.0\n437,4,12.5\n437,5,12.0\n437,6,11.5\n437,7,11.0\n437,8,10.5\n437,9,10.0\n437,10,9.5\n437,11,9.0\n437,12,8.5\n437,13,9.0\n437,14,9.5\n437,15,10.0\n437,16,10.5\n437,17,11.0\n437,18,11.5\n437,19,12.0\n437,20,12.5\n437,21,13.0\n437,22,13.5\n437,23,14.0\n437,24,14.5\n437,25,14.0\n437,26,13.5\n437,27,13.0\n437,28,12.5\n437,29,12.0\n437,30,11.5\n437,31,11.0\n437,32,10.5\n437,33,10.0\n437,34,9.5\n437,35,9.0\n437,36,8.5\n437,37,8.0\n437,38,8.5\n437,39,9.0\n437,40,9.5\n437,41,10.0\n437,42,10.5\n437,43,11.0\n437,44,11.5\n437,45,12.0\n437,46,12.5\n437,47,13.0\n437,48,13.5\n437,49,14.0\n437,50,13.5\n437,51,13.0\n437,52,12.5\n437,53,12.0\n437,54,11.5\n437,55,11.0\n437,56,10.5\n437,57,10.0\n437,58,9.5\n437,59,9.0\n437,60,8.5\n437,61,8.0\n437,62,7.5\n437,63,8.0\n437,64,8.5\n437,65,9.0\n437,66,9.5\n437,67,10.0\n437,68,10.5\n437,69,11.0\n437,70,11.5\n437,71,12.0\n437,72,12.5\n437,73,13.0\n437,74,13.5\n437,75,13.0\n437,76,12.5\n437,77,12.0\n437,78,11.5\n437,79,11.0\n437,80,10.5\n437,81,10.0\n437,82,9.5\n437,83,9.0\n437,84,8.5\n437,85,8.0\n437,86,7.5\n437,87,7.0\n437,88,7.5\n437,89,8.0\n437,90,8.5\n437,91,9.0\n437,92,9.5\n437,93,10.0\n437,94,10.5\n437,95,11.0\n437,96,11.5\n437,97,12.0\n437,98,12.5\n437,99,13.0\n437,100,12.5\n437,101,12.0\n437,102,11.5\n437,103,11.0\n437,104,10.5\n437,105,10.0\n437,106,9.5\n437,107,9.0\n437,108,8.5\n437,109,8.0\n437,110,7.5\n437,111,7.0\n437,112,6.5\n437,113,7.0\n437,114,7.5\n437,115,8.0\n437,116,8.5\n437,117,9.0\n437,118,9.5\n437,119,10.0\n437,120,10.5\n437,121,11.0\n437,122,11.5\n437,123,12.0\n437,124,12.5\n437,125,12.0\n437,126,11.5\n437,127,11.0\n437,128,10.5\n437,129,10.0\n437,130,9.5\n437,131,9.0\n437,132,8.5\n437,133,8.0\n437,134,7.5\n437,135,7.0\n437,136,6.5\n437,137,6.0\n437,138,6.5\n437,139,7.0\n437,140,7.5\n437,141,8.0\n437,142,8.5\n437,143,9.0\n437,144,9.5\n437,145,10.0\n437,146,10.5\n437,147,11.0\n437,148,11.5\n437,149,12.0\n437,150,11.5\n437,151,11.0\n437,152,10.5\n437,153,10.0\n437,154,9.5\n437,155,9.0\n437,156,8.5\n437,157,8.0\n437,158,7.5\n437,159,7.0\n437,160,6.5\n437,161,6.0\n437,162,5.5\n437,163,6.0\n437,164,6.5\n437,165,7.0\n437,166,7.5\n437,167,8.0\n437,168,8.5\n437,169,9.0\n437,170,9.5\n437,171,10.0\n437,172,10.5\n437,173,11.0\n437,174,11.5\n437,175,11.0\n437,176,10.5\n437,177,10.0\n437,178,9.5\n437,179,9.0\n437,180,8.5\n437,181,8.0\n437,182,7.5\n437,183,7.0\n437,184,6.5\n437,185,6.0\n437,186,5.5\n437,187,5.0\n437,188,5.5\n437,189,6.0\n437,190,6.5\n437,191,7.0\n437,192,7.5\n437,193,8.0\n437,194,8.5\n437,195,9.0\n437,196,9.5\n437,197,10.0\n437,198,10.5\n437,199,11.0\n437,200,10.5\n437,201,10.0\n437,202,9.5\n437,203,9.0\n437,204,8.5\n437,205,8.0\n437,206,7.5\n437,207,7.0\n437,208,6.5\n437,209,6.0\n437,210,5.5\n437,211,5.0\n437,212,4.5\n437,213,5.0\n437,214,5.5\n437,215,6.0\n437,216,6.5\n437,217,7.0\n437,218,7.5\n437,219,8.0\n437,220,8.5\n437,221,9.0\n437,222,9.5\n437,223,10.0\n437,224,10.5\n437,225,10.0\n437,226,9.5\n437,227,9.0\n437,228,8.5\n437,229,8.0\n437,230,7.5\n437,231,7.0\n437,232,6.5\n437,233,6.0\n437,234,5.5\n437,235,5.0\n437,236,4.5\n437,237,4.0\n437,238,4.5\n437,239,5.0\n437,240,5.5\n437,241,6.0\n437,242,6.5\n437,243,7.0\n437,244,7.5\n437,245,8.0\n437,246,8.5\n437,247,9.0\n437,248,9.5\n437,249,10.0\n437,250,9.5\n437,251,9.0\n437,252,8.5\n437,253,8.0\n437,254,7.5\n437,255,7.0\n437,256,6.5\n437,257,6.0\n437,258,5.5\n437,259,5.0\n437,260,4.5\n437,261,4.0\n437,262,3.5\n437,263,4.0\n437,264,4.5\n437,265,5.0\n437,266,5.5\n437,267,6.0\n437,268,6.5\n437,269,7.0\n437,270,7.5\n437,271,8.0\n437,272,8.5\n437,273,9.0\n437,274,9.5\n437,275,9.0\n437,276,8.5\n437,277,8.0\n437,278,7.5\n437,279,7.0\n437,280,6.5\n437,281,6.0\n437,282,5.5\n437,283,5.0\n437,284,4.5\n437,285,4.0\n437,286,3.5\n437,287,3.0\n437,288,3.5\n437,289,4.0\n437,290,4.5\n437,291,5.0\n437,292,5.5\n437,293,6.0\n437,294,6.5\n437,295,7.0\n437,296,7.5\n437,297,8.0\n437,298,8.5\n437,299,9.0\n437,300,8.5\n437,301,8.0\n437,302,7.5\n437,303,7.0\n437,304,6.5\n437,305,6.0\n437,306,5.5\n437,307,5.0\n437,308,4.5\n437,309,4.0\n437,310,3.5\n437,311,3.0\n437,312,2.5\n437,313,3.0\n437,314,3.5\n437,315,4.0\n437,316,4.5\n437,317,5.0\n437,318,5.5\n437,319,6.0\n437,320,6.5\n437,321,7.0\n437,322,7.5\n437,323,8.0\n437,324,8.5\n437,325,8.0\n437,326,7.5\n437,327,7.0\n437,328,6.5\n437,329,6.0\n437,330,5.5\n437,331,5.0\n437,332,4.5\n437,333,4.0\n437,334,3.5\n437,335,3.0\n437,336,2.5\n437,337,2.0\n437,338,2.5\n437,339,3.0\n437,340,3.5\n437,341,4.0\n437,342,4.5\n437,343,5.0\n437,344,5.5\n437,345,6.0\n437,346,6.5\n437,347,7.0\n437,348,7.5\n437,349,8.0\n437,350,7.5\n437,351,7.0\n437,352,6.5\n437,353,6.0\n437,354,5.5\n437,355,5.0\n437,356,4.5\n437,357,4.0\n437,358,3.5\n437,359,3.0\n437,360,2.5\n437,361,2.0\n437,362,1.5\n437,363,2.0\n437,364,2.5\n437,365,3.0\n437,366,3.5\n437,367,4.0\n437,368,4.5\n437,369,5.0\n437,370,5.5\n437,371,6.0\n437,372,6.5\n437,373,7.0\n437,374,7.5\n437,375,7.0\n437,376,6.5\n437,377,6.0\n437,378,5.5\n437,379,5.0\n437,380,4.5\n437,381,4.0\n437,382,3.5\n437,383,3.0\n437,384,2.5\n437,385,2.0\n437,386,1.5\n437,387,1.0\n437,388,1.5\n437,389,2.0\n437,390,2.5\n437,391,3.0\n437,392,3.5\n437,393,4.0\n437,394,4.5\n437,395,5.0\n437,396,5.5\n437,397,6.0\n437,398,6.5\n437,399,7.0\n437,400,6.5\n437,401,6.0\n437,402,5.5\n437,403,5.0\n437,404,4.5\n437,405,4.0\n437,406,3.5\n437,407,3.0\n437,408,2.5\n437,409,2.0\n437,410,1.5\n437,411,1.0\n437,412,0.5\n437,413,1.0\n437,414,1.5\n437,415,2.0\n437,416,2.5\n437,417,3.0\n437,418,3.5\n437,419,4.0\n437,420,4.5\n437,421,5.0\n437,422,5.5\n437,423,6.0\n437,424,6.5\n437,425,6.0\n437,426,5.5\n437,427,5.0\n437,428,4.5\n437,429,4.0\n437,430,3.5\n437,431,3.0\n437,432,2.5\n437,433,2.0\n437,434,1.5\n437,435,1.0\n437,436,0.5\n437,437,0\n437,438,0.5\n437,439,1.0\n437,440,1.5\n437,441,2.0\n437,442,2.5\n437,443,3.0\n437,444,3.5\n437,445,4.0\n437,446,4.5\n437,447,5.0\n437,448,5.5\n437,449,6.0\n437,450,6.5\n437,451,6.0\n437,452,5.5\n437,453,5.0\n437,454,4.5\n437,455,4.0\n437,456,3.5\n437,457,3.0\n437,458,2.5\n437,459,2.0\n437,460,1.5\n437,461,1.0\n437,462,0.5\n437,463,1.0\n437,464,1.5\n437,465,2.0\n437,466,2.5\n437,467,3.0\n437,468,3.5\n437,469,4.0\n437,470,4.5\n437,471,5.0\n437,472,5.5\n437,473,6.0\n437,474,6.5\n437,475,7.0\n437,476,6.5\n437,477,6.0\n437,478,5.5\n437,479,5.0\n437,480,4.5\n437,481,4.0\n437,482,3.5\n437,483,3.0\n437,484,2.5\n437,485,2.0\n437,486,1.5\n437,487,1.0\n437,488,1.5\n437,489,2.0\n437,490,2.5\n437,491,3.0\n437,492,3.5\n437,493,4.0\n437,494,4.5\n437,495,5.0\n437,496,5.5\n437,497,6.0\n437,498,6.5\n437,499,7.0\n437,500,7.5\n437,501,7.0\n437,502,6.5\n437,503,6.0\n437,504,5.5\n437,505,5.0\n437,506,4.5\n437,507,4.0\n437,508,3.5\n437,509,3.0\n437,510,2.5\n437,511,2.0\n437,512,1.5\n437,513,2.0\n437,514,2.5\n437,515,3.0\n437,516,3.5\n437,517,4.0\n437,518,4.5\n437,519,5.0\n437,520,5.5\n437,521,6.0\n437,522,6.5\n437,523,7.0\n437,524,7.5\n437,525,8.0\n437,526,7.5\n437,527,7.0\n437,528,6.5\n437,529,6.0\n437,530,5.5\n437,531,5.0\n437,532,4.5\n437,533,4.0\n437,534,3.5\n437,535,3.0\n437,536,2.5\n437,537,2.0\n437,538,2.5\n437,539,3.0\n437,540,3.5\n437,541,4.0\n437,542,4.5\n437,543,5.0\n437,544,5.5\n437,545,6.0\n437,546,6.5\n437,547,7.0\n437,548,7.5\n437,549,8.0\n437,550,8.5\n437,551,8.0\n437,552,7.5\n437,553,7.0\n437,554,6.5\n437,555,6.0\n437,556,5.5\n437,557,5.0\n437,558,4.5\n437,559,4.0\n437,560,3.5\n437,561,3.0\n437,562,2.5\n437,563,3.0\n437,564,3.5\n437,565,4.0\n437,566,4.5\n437,567,5.0\n437,568,5.5\n437,569,6.0\n437,570,6.5\n437,571,7.0\n437,572,7.5\n437,573,8.0\n437,574,8.5\n437,575,9.0\n437,576,8.5\n437,577,8.0\n437,578,7.5\n437,579,7.0\n437,580,6.5\n437,581,6.0\n437,582,5.5\n437,583,5.0\n437,584,4.5\n437,585,4.0\n437,586,3.5\n437,587,3.0\n437,588,3.5\n437,589,4.0\n437,590,4.5\n437,591,5.0\n437,592,5.5\n437,593,6.0\n437,594,6.5\n437,595,7.0\n437,596,7.5\n437,597,8.0\n437,598,8.5\n437,599,9.0\n437,600,9.5\n437,601,9.0\n437,602,8.5\n437,603,8.0\n437,604,7.5\n437,605,7.0\n437,606,6.5\n437,607,6.0\n437,608,5.5\n437,609,5.0\n437,610,4.5\n437,611,4.0\n437,612,3.5\n437,613,4.0\n437,614,4.5\n437,615,5.0\n437,616,5.5\n437,617,6.0\n437,618,6.5\n437,619,7.0\n437,620,7.5\n437,621,8.0\n437,622,8.5\n437,623,9.0\n437,624,9.5\n438,0,15.0\n438,1,14.5\n438,2,14.0\n438,3,13.5\n438,4,13.0\n438,5,12.5\n438,6,12.0\n438,7,11.5\n438,8,11.0\n438,9,10.5\n438,10,10.0\n438,11,9.5\n438,12,9.0\n438,13,8.5\n438,14,9.0\n438,15,9.5\n438,16,10.0\n438,17,10.5\n438,18,11.0\n438,19,11.5\n438,20,12.0\n438,21,12.5\n438,22,13.0\n438,23,13.5\n438,24,14.0\n438,25,14.5\n438,26,14.0\n438,27,13.5\n438,28,13.0\n438,29,12.5\n438,30,12.0\n438,31,11.5\n438,32,11.0\n438,33,10.5\n438,34,10.0\n438,35,9.5\n438,36,9.0\n438,37,8.5\n438,38,8.0\n438,39,8.5\n438,40,9.0\n438,41,9.5\n438,42,10.0\n438,43,10.5\n438,44,11.0\n438,45,11.5\n438,46,12.0\n438,47,12.5\n438,48,13.0\n438,49,13.5\n438,50,14.0\n438,51,13.5\n438,52,13.0\n438,53,12.5\n438,54,12.0\n438,55,11.5\n438,56,11.0\n438,57,10.5\n438,58,10.0\n438,59,9.5\n438,60,9.0\n438,61,8.5\n438,62,8.0\n438,63,7.5\n438,64,8.0\n438,65,8.5\n438,66,9.0\n438,67,9.5\n438,68,10.0\n438,69,10.5\n438,70,11.0\n438,71,11.5\n438,72,12.0\n438,73,12.5\n438,74,13.0\n438,75,13.5\n438,76,13.0\n438,77,12.5\n438,78,12.0\n438,79,11.5\n438,80,11.0\n438,81,10.5\n438,82,10.0\n438,83,9.5\n438,84,9.0\n438,85,8.5\n438,86,8.0\n438,87,7.5\n438,88,7.0\n438,89,7.5\n438,90,8.0\n438,91,8.5\n438,92,9.0\n438,93,9.5\n438,94,10.0\n438,95,10.5\n438,96,11.0\n438,97,11.5\n438,98,12.0\n438,99,12.5\n438,100,13.0\n438,101,12.5\n438,102,12.0\n438,103,11.5\n438,104,11.0\n438,105,10.5\n438,106,10.0\n438,107,9.5\n438,108,9.0\n438,109,8.5\n438,110,8.0\n438,111,7.5\n438,112,7.0\n438,113,6.5\n438,114,7.0\n438,115,7.5\n438,116,8.0\n438,117,8.5\n438,118,9.0\n438,119,9.5\n438,120,10.0\n438,121,10.5\n438,122,11.0\n438,123,11.5\n438,124,12.0\n438,125,12.5\n438,126,12.0\n438,127,11.5\n438,128,11.0\n438,129,10.5\n438,130,10.0\n438,131,9.5\n438,132,9.0\n438,133,8.5\n438,134,8.0\n438,135,7.5\n438,136,7.0\n438,137,6.5\n438,138,6.0\n438,139,6.5\n438,140,7.0\n438,141,7.5\n438,142,8.0\n438,143,8.5\n438,144,9.0\n438,145,9.5\n438,146,10.0\n438,147,10.5\n438,148,11.0\n438,149,11.5\n438,150,12.0\n438,151,11.5\n438,152,11.0\n438,153,10.5\n438,154,10.0\n438,155,9.5\n438,156,9.0\n438,157,8.5\n438,158,8.0\n438,159,7.5\n438,160,7.0\n438,161,6.5\n438,162,6.0\n438,163,5.5\n438,164,6.0\n438,165,6.5\n438,166,7.0\n438,167,7.5\n438,168,8.0\n438,169,8.5\n438,170,9.0\n438,171,9.5\n438,172,10.0\n438,173,10.5\n438,174,11.0\n438,175,11.5\n438,176,11.0\n438,177,10.5\n438,178,10.0\n438,179,9.5\n438,180,9.0\n438,181,8.5\n438,182,8.0\n438,183,7.5\n438,184,7.0\n438,185,6.5\n438,186,6.0\n438,187,5.5\n438,188,5.0\n438,189,5.5\n438,190,6.0\n438,191,6.5\n438,192,7.0\n438,193,7.5\n438,194,8.0\n438,195,8.5\n438,196,9.0\n438,197,9.5\n438,198,10.0\n438,199,10.5\n438,200,11.0\n438,201,10.5\n438,202,10.0\n438,203,9.5\n438,204,9.0\n438,205,8.5\n438,206,8.0\n438,207,7.5\n438,208,7.0\n438,209,6.5\n438,210,6.0\n438,211,5.5\n438,212,5.0\n438,213,4.5\n438,214,5.0\n438,215,5.5\n438,216,6.0\n438,217,6.5\n438,218,7.0\n438,219,7.5\n438,220,8.0\n438,221,8.5\n438,222,9.0\n438,223,9.5\n438,224,10.0\n438,225,10.5\n438,226,10.0\n438,227,9.5\n438,228,9.0\n438,229,8.5\n438,230,8.0\n438,231,7.5\n438,232,7.0\n438,233,6.5\n438,234,6.0\n438,235,5.5\n438,236,5.0\n438,237,4.5\n438,238,4.0\n438,239,4.5\n438,240,5.0\n438,241,5.5\n438,242,6.0\n438,243,6.5\n438,244,7.0\n438,245,7.5\n438,246,8.0\n438,247,8.5\n438,248,9.0\n438,249,9.5\n438,250,10.0\n438,251,9.5\n438,252,9.0\n438,253,8.5\n438,254,8.0\n438,255,7.5\n438,256,7.0\n438,257,6.5\n438,258,6.0\n438,259,5.5\n438,260,5.0\n438,261,4.5\n438,262,4.0\n438,263,3.5\n438,264,4.0\n438,265,4.5\n438,266,5.0\n438,267,5.5\n438,268,6.0\n438,269,6.5\n438,270,7.0\n438,271,7.5\n438,272,8.0\n438,273,8.5\n438,274,9.0\n438,275,9.5\n438,276,9.0\n438,277,8.5\n438,278,8.0\n438,279,7.5\n438,280,7.0\n438,281,6.5\n438,282,6.0\n438,283,5.5\n438,284,5.0\n438,285,4.5\n438,286,4.0\n438,287,3.5\n438,288,3.0\n438,289,3.5\n438,290,4.0\n438,291,4.5\n438,292,5.0\n438,293,5.5\n438,294,6.0\n438,295,6.5\n438,296,7.0\n438,297,7.5\n438,298,8.0\n438,299,8.5\n438,300,9.0\n438,301,8.5\n438,302,8.0\n438,303,7.5\n438,304,7.0\n438,305,6.5\n438,306,6.0\n438,307,5.5\n438,308,5.0\n438,309,4.5\n438,310,4.0\n438,311,3.5\n438,312,3.0\n438,313,2.5\n438,314,3.0\n438,315,3.5\n438,316,4.0\n438,317,4.5\n438,318,5.0\n438,319,5.5\n438,320,6.0\n438,321,6.5\n438,322,7.0\n438,323,7.5\n438,324,8.0\n438,325,8.5\n438,326,8.0\n438,327,7.5\n438,328,7.0\n438,329,6.5\n438,330,6.0\n438,331,5.5\n438,332,5.0\n438,333,4.5\n438,334,4.0\n438,335,3.5\n438,336,3.0\n438,337,2.5\n438,338,2.0\n438,339,2.5\n438,340,3.0\n438,341,3.5\n438,342,4.0\n438,343,4.5\n438,344,5.0\n438,345,5.5\n438,346,6.0\n438,347,6.5\n438,348,7.0\n438,349,7.5\n438,350,8.0\n438,351,7.5\n438,352,7.0\n438,353,6.5\n438,354,6.0\n438,355,5.5\n438,356,5.0\n438,357,4.5\n438,358,4.0\n438,359,3.5\n438,360,3.0\n438,361,2.5\n438,362,2.0\n438,363,1.5\n438,364,2.0\n438,365,2.5\n438,366,3.0\n438,367,3.5\n438,368,4.0\n438,369,4.5\n438,370,5.0\n438,371,5.5\n438,372,6.0\n438,373,6.5\n438,374,7.0\n438,375,7.5\n438,376,7.0\n438,377,6.5\n438,378,6.0\n438,379,5.5\n438,380,5.0\n438,381,4.5\n438,382,4.0\n438,383,3.5\n438,384,3.0\n438,385,2.5\n438,386,2.0\n438,387,1.5\n438,388,1.0\n438,389,1.5\n438,390,2.0\n438,391,2.5\n438,392,3.0\n438,393,3.5\n438,394,4.0\n438,395,4.5\n438,396,5.0\n438,397,5.5\n438,398,6.0\n438,399,6.5\n438,400,7.0\n438,401,6.5\n438,402,6.0\n438,403,5.5\n438,404,5.0\n438,405,4.5\n438,406,4.0\n438,407,3.5\n438,408,3.0\n438,409,2.5\n438,410,2.0\n438,411,1.5\n438,412,1.0\n438,413,0.5\n438,414,1.0\n438,415,1.5\n438,416,2.0\n438,417,2.5\n438,418,3.0\n438,419,3.5\n438,420,4.0\n438,421,4.5\n438,422,5.0\n438,423,5.5\n438,424,6.0\n438,425,6.5\n438,426,6.0\n438,427,5.5\n438,428,5.0\n438,429,4.5\n438,430,4.0\n438,431,3.5\n438,432,3.0\n438,433,2.5\n438,434,2.0\n438,435,1.5\n438,436,1.0\n438,437,0.5\n438,438,0\n438,439,0.5\n438,440,1.0\n438,441,1.5\n438,442,2.0\n438,443,2.5\n438,444,3.0\n438,445,3.5\n438,446,4.0\n438,447,4.5\n438,448,5.0\n438,449,5.5\n438,450,7.0\n438,451,6.5\n438,452,6.0\n438,453,5.5\n438,454,5.0\n438,455,4.5\n438,456,4.0\n438,457,3.5\n438,458,3.0\n438,459,2.5\n438,460,2.0\n438,461,1.5\n438,462,1.0\n438,463,0.5\n438,464,1.0\n438,465,1.5\n438,466,2.0\n438,467,2.5\n438,468,3.0\n438,469,3.5\n438,470,4.0\n438,471,4.5\n438,472,5.0\n438,473,5.5\n438,474,6.0\n438,475,7.5\n438,476,7.0\n438,477,6.5\n438,478,6.0\n438,479,5.5\n438,480,5.0\n438,481,4.5\n438,482,4.0\n438,483,3.5\n438,484,3.0\n438,485,2.5\n438,486,2.0\n438,487,1.5\n438,488,1.0\n438,489,1.5\n438,490,2.0\n438,491,2.5\n438,492,3.0\n438,493,3.5\n438,494,4.0\n438,495,4.5\n438,496,5.0\n438,497,5.5\n438,498,6.0\n438,499,6.5\n438,500,8.0\n438,501,7.5\n438,502,7.0\n438,503,6.5\n438,504,6.0\n438,505,5.5\n438,506,5.0\n438,507,4.5\n438,508,4.0\n438,509,3.5\n438,510,3.0\n438,511,2.5\n438,512,2.0\n438,513,1.5\n438,514,2.0\n438,515,2.5\n438,516,3.0\n438,517,3.5\n438,518,4.0\n438,519,4.5\n438,520,5.0\n438,521,5.5\n438,522,6.0\n438,523,6.5\n438,524,7.0\n438,525,8.5\n438,526,8.0\n438,527,7.5\n438,528,7.0\n438,529,6.5\n438,530,6.0\n438,531,5.5\n438,532,5.0\n438,533,4.5\n438,534,4.0\n438,535,3.5\n438,536,3.0\n438,537,2.5\n438,538,2.0\n438,539,2.5\n438,540,3.0\n438,541,3.5\n438,542,4.0\n438,543,4.5\n438,544,5.0\n438,545,5.5\n438,546,6.0\n438,547,6.5\n438,548,7.0\n438,549,7.5\n438,550,9.0\n438,551,8.5\n438,552,8.0\n438,553,7.5\n438,554,7.0\n438,555,6.5\n438,556,6.0\n438,557,5.5\n438,558,5.0\n438,559,4.5\n438,560,4.0\n438,561,3.5\n438,562,3.0\n438,563,2.5\n438,564,3.0\n438,565,3.5\n438,566,4.0\n438,567,4.5\n438,568,5.0\n438,569,5.5\n438,570,6.0\n438,571,6.5\n438,572,7.0\n438,573,7.5\n438,574,8.0\n438,575,9.5\n438,576,9.0\n438,577,8.5\n438,578,8.0\n438,579,7.5\n438,580,7.0\n438,581,6.5\n438,582,6.0\n438,583,5.5\n438,584,5.0\n438,585,4.5\n438,586,4.0\n438,587,3.5\n438,588,3.0\n438,589,3.5\n438,590,4.0\n438,591,4.5\n438,592,5.0\n438,593,5.5\n438,594,6.0\n438,595,6.5\n438,596,7.0\n438,597,7.5\n438,598,8.0\n438,599,8.5\n438,600,10.0\n438,601,9.5\n438,602,9.0\n438,603,8.5\n438,604,8.0\n438,605,7.5\n438,606,7.0\n438,607,6.5\n438,608,6.0\n438,609,5.5\n438,610,5.0\n438,611,4.5\n438,612,4.0\n438,613,3.5\n438,614,4.0\n438,615,4.5\n438,616,5.0\n438,617,5.5\n438,618,6.0\n438,619,6.5\n438,620,7.0\n438,621,7.5\n438,622,8.0\n438,623,8.5\n438,624,9.0\n439,0,15.5\n439,1,15.0\n439,2,14.5\n439,3,14.0\n439,4,13.5\n439,5,13.0\n439,6,12.5\n439,7,12.0\n439,8,11.5\n439,9,11.0\n439,10,10.5\n439,11,10.0\n439,12,9.5\n439,13,9.0\n439,14,8.5\n439,15,9.0\n439,16,9.5\n439,17,10.0\n439,18,10.5\n439,19,11.0\n439,20,11.5\n439,21,12.0\n439,22,12.5\n439,23,13.0\n439,24,13.5\n439,25,15.0\n439,26,14.5\n439,27,14.0\n439,28,13.5\n439,29,13.0\n439,30,12.5\n439,31,12.0\n439,32,11.5\n439,33,11.0\n439,34,10.5\n439,35,10.0\n439,36,9.5\n439,37,9.0\n439,38,8.5\n439,39,8.0\n439,40,8.5\n439,41,9.0\n439,42,9.5\n439,43,10.0\n439,44,10.5\n439,45,11.0\n439,46,11.5\n439,47,12.0\n439,48,12.5\n439,49,13.0\n439,50,14.5\n439,51,14.0\n439,52,13.5\n439,53,13.0\n439,54,12.5\n439,55,12.0\n439,56,11.5\n439,57,11.0\n439,58,10.5\n439,59,10.0\n439,60,9.5\n439,61,9.0\n439,62,8.5\n439,63,8.0\n439,64,7.5\n439,65,8.0\n439,66,8.5\n439,67,9.0\n439,68,9.5\n439,69,10.0\n439,70,10.5\n439,71,11.0\n439,72,11.5\n439,73,12.0\n439,74,12.5\n439,75,14.0\n439,76,13.5\n439,77,13.0\n439,78,12.5\n439,79,12.0\n439,80,11.5\n439,81,11.0\n439,82,10.5\n439,83,10.0\n439,84,9.5\n439,85,9.0\n439,86,8.5\n439,87,8.0\n439,88,7.5\n439,89,7.0\n439,90,7.5\n439,91,8.0\n439,92,8.5\n439,93,9.0\n439,94,9.5\n439,95,10.0\n439,96,10.5\n439,97,11.0\n439,98,11.5\n439,99,12.0\n439,100,13.5\n439,101,13.0\n439,102,12.5\n439,103,12.0\n439,104,11.5\n439,105,11.0\n439,106,10.5\n439,107,10.0\n439,108,9.5\n439,109,9.0\n439,110,8.5\n439,111,8.0\n439,112,7.5\n439,113,7.0\n439,114,6.5\n439,115,7.0\n439,116,7.5\n439,117,8.0\n439,118,8.5\n439,119,9.0\n439,120,9.5\n439,121,10.0\n439,122,10.5\n439,123,11.0\n439,124,11.5\n439,125,13.0\n439,126,12.5\n439,127,12.0\n439,128,11.5\n439,129,11.0\n439,130,10.5\n439,131,10.0\n439,132,9.5\n439,133,9.0\n439,134,8.5\n439,135,8.0\n439,136,7.5\n439,137,7.0\n439,138,6.5\n439,139,6.0\n439,140,6.5\n439,141,7.0\n439,142,7.5\n439,143,8.0\n439,144,8.5\n439,145,9.0\n439,146,9.5\n439,147,10.0\n439,148,10.5\n439,149,11.0\n439,150,12.5\n439,151,12.0\n439,152,11.5\n439,153,11.0\n439,154,10.5\n439,155,10.0\n439,156,9.5\n439,157,9.0\n439,158,8.5\n439,159,8.0\n439,160,7.5\n439,161,7.0\n439,162,6.5\n439,163,6.0\n439,164,5.5\n439,165,6.0\n439,166,6.5\n439,167,7.0\n439,168,7.5\n439,169,8.0\n439,170,8.5\n439,171,9.0\n439,172,9.5\n439,173,10.0\n439,174,10.5\n439,175,12.0\n439,176,11.5\n439,177,11.0\n439,178,10.5\n439,179,10.0\n439,180,9.5\n439,181,9.0\n439,182,8.5\n439,183,8.0\n439,184,7.5\n439,185,7.0\n439,186,6.5\n439,187,6.0\n439,188,5.5\n439,189,5.0\n439,190,5.5\n439,191,6.0\n439,192,6.5\n439,193,7.0\n439,194,7.5\n439,195,8.0\n439,196,8.5\n439,197,9.0\n439,198,9.5\n439,199,10.0\n439,200,11.5\n439,201,11.0\n439,202,10.5\n439,203,10.0\n439,204,9.5\n439,205,9.0\n439,206,8.5\n439,207,8.0\n439,208,7.5\n439,209,7.0\n439,210,6.5\n439,211,6.0\n439,212,5.5\n439,213,5.0\n439,214,4.5\n439,215,5.0\n439,216,5.5\n439,217,6.0\n439,218,6.5\n439,219,7.0\n439,220,7.5\n439,221,8.0\n439,222,8.5\n439,223,9.0\n439,224,9.5\n439,225,11.0\n439,226,10.5\n439,227,10.0\n439,228,9.5\n439,229,9.0\n439,230,8.5\n439,231,8.0\n439,232,7.5\n439,233,7.0\n439,234,6.5\n439,235,6.0\n439,236,5.5\n439,237,5.0\n439,238,4.5\n439,239,4.0\n439,240,4.5\n439,241,5.0\n439,242,5.5\n439,243,6.0\n439,244,6.5\n439,245,7.0\n439,246,7.5\n439,247,8.0\n439,248,8.5\n439,249,9.0\n439,250,10.5\n439,251,10.0\n439,252,9.5\n439,253,9.0\n439,254,8.5\n439,255,8.0\n439,256,7.5\n439,257,7.0\n439,258,6.5\n439,259,6.0\n439,260,5.5\n439,261,5.0\n439,262,4.5\n439,263,4.0\n439,264,3.5\n439,265,4.0\n439,266,4.5\n439,267,5.0\n439,268,5.5\n439,269,6.0\n439,270,6.5\n439,271,7.0\n439,272,7.5\n439,273,8.0\n439,274,8.5\n439,275,10.0\n439,276,9.5\n439,277,9.0\n439,278,8.5\n439,279,8.0\n439,280,7.5\n439,281,7.0\n439,282,6.5\n439,283,6.0\n439,284,5.5\n439,285,5.0\n439,286,4.5\n439,287,4.0\n439,288,3.5\n439,289,3.0\n439,290,3.5\n439,291,4.0\n439,292,4.5\n439,293,5.0\n439,294,5.5\n439,295,6.0\n439,296,6.5\n439,297,7.0\n439,298,7.5\n439,299,8.0\n439,300,9.5\n439,301,9.0\n439,302,8.5\n439,303,8.0\n439,304,7.5\n439,305,7.0\n439,306,6.5\n439,307,6.0\n439,308,5.5\n439,309,5.0\n439,310,4.5\n439,311,4.0\n439,312,3.5\n439,313,3.0\n439,314,2.5\n439,315,3.0\n439,316,3.5\n439,317,4.0\n439,318,4.5\n439,319,5.0\n439,320,5.5\n439,321,6.0\n439,322,6.5\n439,323,7.0\n439,324,7.5\n439,325,9.0\n439,326,8.5\n439,327,8.0\n439,328,7.5\n439,329,7.0\n439,330,6.5\n439,331,6.0\n439,332,5.5\n439,333,5.0\n439,334,4.5\n439,335,4.0\n439,336,3.5\n439,337,3.0\n439,338,2.5\n439,339,2.0\n439,340,2.5\n439,341,3.0\n439,342,3.5\n439,343,4.0\n439,344,4.5\n439,345,5.0\n439,346,5.5\n439,347,6.0\n439,348,6.5\n439,349,7.0\n439,350,8.5\n439,351,8.0\n439,352,7.5\n439,353,7.0\n439,354,6.5\n439,355,6.0\n439,356,5.5\n439,357,5.0\n439,358,4.5\n439,359,4.0\n439,360,3.5\n439,361,3.0\n439,362,2.5\n439,363,2.0\n439,364,1.5\n439,365,2.0\n439,366,2.5\n439,367,3.0\n439,368,3.5\n439,369,4.0\n439,370,4.5\n439,371,5.0\n439,372,5.5\n439,373,6.0\n439,374,6.5\n439,375,8.0\n439,376,7.5\n439,377,7.0\n439,378,6.5\n439,379,6.0\n439,380,5.5\n439,381,5.0\n439,382,4.5\n439,383,4.0\n439,384,3.5\n439,385,3.0\n439,386,2.5\n439,387,2.0\n439,388,1.5\n439,389,1.0\n439,390,1.5\n439,391,2.0\n439,392,2.5\n439,393,3.0\n439,394,3.5\n439,395,4.0\n439,396,4.5\n439,397,5.0\n439,398,5.5\n439,399,6.0\n439,400,7.5\n439,401,7.0\n439,402,6.5\n439,403,6.0\n439,404,5.5\n439,405,5.0\n439,406,4.5\n439,407,4.0\n439,408,3.5\n439,409,3.0\n439,410,2.5\n439,411,2.0\n439,412,1.5\n439,413,1.0\n439,414,0.5\n439,415,1.0\n439,416,1.5\n439,417,2.0\n439,418,2.5\n439,419,3.0\n439,420,3.5\n439,421,4.0\n439,422,4.5\n439,423,5.0\n439,424,5.5\n439,425,7.0\n439,426,6.5\n439,427,6.0\n439,428,5.5\n439,429,5.0\n439,430,4.5\n439,431,4.0\n439,432,3.5\n439,433,3.0\n439,434,2.5\n439,435,2.0\n439,436,1.5\n439,437,1.0\n439,438,0.5\n439,439,0\n439,440,0.5\n439,441,1.0\n439,442,1.5\n439,443,2.0\n439,444,2.5\n439,445,3.0\n439,446,3.5\n439,447,4.0\n439,448,4.5\n439,449,5.0\n439,450,7.5\n439,451,7.0\n439,452,6.5\n439,453,6.0\n439,454,5.5\n439,455,5.0\n439,456,4.5\n439,457,4.0\n439,458,3.5\n439,459,3.0\n439,460,2.5\n439,461,2.0\n439,462,1.5\n439,463,1.0\n439,464,0.5\n439,465,1.0\n439,466,1.5\n439,467,2.0\n439,468,2.5\n439,469,3.0\n439,470,3.5\n439,471,4.0\n439,472,4.5\n439,473,5.0\n439,474,5.5\n439,475,8.0\n439,476,7.5\n439,477,7.0\n439,478,6.5\n439,479,6.0\n439,480,5.5\n439,481,5.0\n439,482,4.5\n439,483,4.0\n439,484,3.5\n439,485,3.0\n439,486,2.5\n439,487,2.0\n439,488,1.5\n439,489,1.0\n439,490,1.5\n439,491,2.0\n439,492,2.5\n439,493,3.0\n439,494,3.5\n439,495,4.0\n439,496,4.5\n439,497,5.0\n439,498,5.5\n439,499,6.0\n439,500,8.5\n439,501,8.0\n439,502,7.5\n439,503,7.0\n439,504,6.5\n439,505,6.0\n439,506,5.5\n439,507,5.0\n439,508,4.5\n439,509,4.0\n439,510,3.5\n439,511,3.0\n439,512,2.5\n439,513,2.0\n439,514,1.5\n439,515,2.0\n439,516,2.5\n439,517,3.0\n439,518,3.5\n439,519,4.0\n439,520,4.5\n439,521,5.0\n439,522,5.5\n439,523,6.0\n439,524,6.5\n439,525,9.0\n439,526,8.5\n439,527,8.0\n439,528,7.5\n439,529,7.0\n439,530,6.5\n439,531,6.0\n439,532,5.5\n439,533,5.0\n439,534,4.5\n439,535,4.0\n439,536,3.5\n439,537,3.0\n439,538,2.5\n439,539,2.0\n439,540,2.5\n439,541,3.0\n439,542,3.5\n439,543,4.0\n439,544,4.5\n439,545,5.0\n439,546,5.5\n439,547,6.0\n439,548,6.5\n439,549,7.0\n439,550,9.5\n439,551,9.0\n439,552,8.5\n439,553,8.0\n439,554,7.5\n439,555,7.0\n439,556,6.5\n439,557,6.0\n439,558,5.5\n439,559,5.0\n439,560,4.5\n439,561,4.0\n439,562,3.5\n439,563,3.0\n439,564,2.5\n439,565,3.0\n439,566,3.5\n439,567,4.0\n439,568,4.5\n439,569,5.0\n439,570,5.5\n439,571,6.0\n439,572,6.5\n439,573,7.0\n439,574,7.5\n439,575,10.0\n439,576,9.5\n439,577,9.0\n439,578,8.5\n439,579,8.0\n439,580,7.5\n439,581,7.0\n439,582,6.5\n439,583,6.0\n439,584,5.5\n439,585,5.0\n439,586,4.5\n439,587,4.0\n439,588,3.5\n439,589,3.0\n439,590,3.5\n439,591,4.0\n439,592,4.5\n439,593,5.0\n439,594,5.5\n439,595,6.0\n439,596,6.5\n439,597,7.0\n439,598,7.5\n439,599,8.0\n439,600,10.5\n439,601,10.0\n439,602,9.5\n439,603,9.0\n439,604,8.5\n439,605,8.0\n439,606,7.5\n439,607,7.0\n439,608,6.5\n439,609,6.0\n439,610,5.5\n439,611,5.0\n439,612,4.5\n439,613,4.0\n439,614,3.5\n439,615,4.0\n439,616,4.5\n439,617,5.0\n439,618,5.5\n439,619,6.0\n439,620,6.5\n439,621,7.0\n439,622,7.5\n439,623,8.0\n439,624,8.5\n440,0,16.0\n440,1,15.5\n440,2,15.0\n440,3,14.5\n440,4,14.0\n440,5,13.5\n440,6,13.0\n440,7,12.5\n440,8,12.0\n440,9,11.5\n440,10,11.0\n440,11,10.5\n440,12,10.0\n440,13,9.5\n440,14,9.0\n440,15,8.5\n440,16,9.0\n440,17,9.5\n440,18,10.0\n440,19,10.5\n440,20,11.0\n440,21,11.5\n440,22,12.0\n440,23,12.5\n440,24,13.0\n440,25,15.5\n440,26,15.0\n440,27,14.5\n440,28,14.0\n440,29,13.5\n440,30,13.0\n440,31,12.5\n440,32,12.0\n440,33,11.5\n440,34,11.0\n440,35,10.5\n440,36,10.0\n440,37,9.5\n440,38,9.0\n440,39,8.5\n440,40,8.0\n440,41,8.5\n440,42,9.0\n440,43,9.5\n440,44,10.0\n440,45,10.5\n440,46,11.0\n440,47,11.5\n440,48,12.0\n440,49,12.5\n440,50,15.0\n440,51,14.5\n440,52,14.0\n440,53,13.5\n440,54,13.0\n440,55,12.5\n440,56,12.0\n440,57,11.5\n440,58,11.0\n440,59,10.5\n440,60,10.0\n440,61,9.5\n440,62,9.0\n440,63,8.5\n440,64,8.0\n440,65,7.5\n440,66,8.0\n440,67,8.5\n440,68,9.0\n440,69,9.5\n440,70,10.0\n440,71,10.5\n440,72,11.0\n440,73,11.5\n440,74,12.0\n440,75,14.5\n440,76,14.0\n440,77,13.5\n440,78,13.0\n440,79,12.5\n440,80,12.0\n440,81,11.5\n440,82,11.0\n440,83,10.5\n440,84,10.0\n440,85,9.5\n440,86,9.0\n440,87,8.5\n440,88,8.0\n440,89,7.5\n440,90,7.0\n440,91,7.5\n440,92,8.0\n440,93,8.5\n440,94,9.0\n440,95,9.5\n440,96,10.0\n440,97,10.5\n440,98,11.0\n440,99,11.5\n440,100,14.0\n440,101,13.5\n440,102,13.0\n440,103,12.5\n440,104,12.0\n440,105,11.5\n440,106,11.0\n440,107,10.5\n440,108,10.0\n440,109,9.5\n440,110,9.0\n440,111,8.5\n440,112,8.0\n440,113,7.5\n440,114,7.0\n440,115,6.5\n440,116,7.0\n440,117,7.5\n440,118,8.0\n440,119,8.5\n440,120,9.0\n440,121,9.5\n440,122,10.0\n440,123,10.5\n440,124,11.0\n440,125,13.5\n440,126,13.0\n440,127,12.5\n440,128,12.0\n440,129,11.5\n440,130,11.0\n440,131,10.5\n440,132,10.0\n440,133,9.5\n440,134,9.0\n440,135,8.5\n440,136,8.0\n440,137,7.5\n440,138,7.0\n440,139,6.5\n440,140,6.0\n440,141,6.5\n440,142,7.0\n440,143,7.5\n440,144,8.0\n440,145,8.5\n440,146,9.0\n440,147,9.5\n440,148,10.0\n440,149,10.5\n440,150,13.0\n440,151,12.5\n440,152,12.0\n440,153,11.5\n440,154,11.0\n440,155,10.5\n440,156,10.0\n440,157,9.5\n440,158,9.0\n440,159,8.5\n440,160,8.0\n440,161,7.5\n440,162,7.0\n440,163,6.5\n440,164,6.0\n440,165,5.5\n440,166,6.0\n440,167,6.5\n440,168,7.0\n440,169,7.5\n440,170,8.0\n440,171,8.5\n440,172,9.0\n440,173,9.5\n440,174,10.0\n440,175,12.5\n440,176,12.0\n440,177,11.5\n440,178,11.0\n440,179,10.5\n440,180,10.0\n440,181,9.5\n440,182,9.0\n440,183,8.5\n440,184,8.0\n440,185,7.5\n440,186,7.0\n440,187,6.5\n440,188,6.0\n440,189,5.5\n440,190,5.0\n440,191,5.5\n440,192,6.0\n440,193,6.5\n440,194,7.0\n440,195,7.5\n440,196,8.0\n440,197,8.5\n440,198,9.0\n440,199,9.5\n440,200,12.0\n440,201,11.5\n440,202,11.0\n440,203,10.5\n440,204,10.0\n440,205,9.5\n440,206,9.0\n440,207,8.5\n440,208,8.0\n440,209,7.5\n440,210,7.0\n440,211,6.5\n440,212,6.0\n440,213,5.5\n440,214,5.0\n440,215,4.5\n440,216,5.0\n440,217,5.5\n440,218,6.0\n440,219,6.5\n440,220,7.0\n440,221,7.5\n440,222,8.0\n440,223,8.5\n440,224,9.0\n440,225,11.5\n440,226,11.0\n440,227,10.5\n440,228,10.0\n440,229,9.5\n440,230,9.0\n440,231,8.5\n440,232,8.0\n440,233,7.5\n440,234,7.0\n440,235,6.5\n440,236,6.0\n440,237,5.5\n440,238,5.0\n440,239,4.5\n440,240,4.0\n440,241,4.5\n440,242,5.0\n440,243,5.5\n440,244,6.0\n440,245,6.5\n440,246,7.0\n440,247,7.5\n440,248,8.0\n440,249,8.5\n440,250,11.0\n440,251,10.5\n440,252,10.0\n440,253,9.5\n440,254,9.0\n440,255,8.5\n440,256,8.0\n440,257,7.5\n440,258,7.0\n440,259,6.5\n440,260,6.0\n440,261,5.5\n440,262,5.0\n440,263,4.5\n440,264,4.0\n440,265,3.5\n440,266,4.0\n440,267,4.5\n440,268,5.0\n440,269,5.5\n440,270,6.0\n440,271,6.5\n440,272,7.0\n440,273,7.5\n440,274,8.0\n440,275,10.5\n440,276,10.0\n440,277,9.5\n440,278,9.0\n440,279,8.5\n440,280,8.0\n440,281,7.5\n440,282,7.0\n440,283,6.5\n440,284,6.0\n440,285,5.5\n440,286,5.0\n440,287,4.5\n440,288,4.0\n440,289,3.5\n440,290,3.0\n440,291,3.5\n440,292,4.0\n440,293,4.5\n440,294,5.0\n440,295,5.5\n440,296,6.0\n440,297,6.5\n440,298,7.0\n440,299,7.5\n440,300,10.0\n440,301,9.5\n440,302,9.0\n440,303,8.5\n440,304,8.0\n440,305,7.5\n440,306,7.0\n440,307,6.5\n440,308,6.0\n440,309,5.5\n440,310,5.0\n440,311,4.5\n440,312,4.0\n440,313,3.5\n440,314,3.0\n440,315,2.5\n440,316,3.0\n440,317,3.5\n440,318,4.0\n440,319,4.5\n440,320,5.0\n440,321,5.5\n440,322,6.0\n440,323,6.5\n440,324,7.0\n440,325,9.5\n440,326,9.0\n440,327,8.5\n440,328,8.0\n440,329,7.5\n440,330,7.0\n440,331,6.5\n440,332,6.0\n440,333,5.5\n440,334,5.0\n440,335,4.5\n440,336,4.0\n440,337,3.5\n440,338,3.0\n440,339,2.5\n440,340,2.0\n440,341,2.5\n440,342,3.0\n440,343,3.5\n440,344,4.0\n440,345,4.5\n440,346,5.0\n440,347,5.5\n440,348,6.0\n440,349,6.5\n440,350,9.0\n440,351,8.5\n440,352,8.0\n440,353,7.5\n440,354,7.0\n440,355,6.5\n440,356,6.0\n440,357,5.5\n440,358,5.0\n440,359,4.5\n440,360,4.0\n440,361,3.5\n440,362,3.0\n440,363,2.5\n440,364,2.0\n440,365,1.5\n440,366,2.0\n440,367,2.5\n440,368,3.0\n440,369,3.5\n440,370,4.0\n440,371,4.5\n440,372,5.0\n440,373,5.5\n440,374,6.0\n440,375,8.5\n440,376,8.0\n440,377,7.5\n440,378,7.0\n440,379,6.5\n440,380,6.0\n440,381,5.5\n440,382,5.0\n440,383,4.5\n440,384,4.0\n440,385,3.5\n440,386,3.0\n440,387,2.5\n440,388,2.0\n440,389,1.5\n440,390,1.0\n440,391,1.5\n440,392,2.0\n440,393,2.5\n440,394,3.0\n440,395,3.5\n440,396,4.0\n440,397,4.5\n440,398,5.0\n440,399,5.5\n440,400,8.0\n440,401,7.5\n440,402,7.0\n440,403,6.5\n440,404,6.0\n440,405,5.5\n440,406,5.0\n440,407,4.5\n440,408,4.0\n440,409,3.5\n440,410,3.0\n440,411,2.5\n440,412,2.0\n440,413,1.5\n440,414,1.0\n440,415,0.5\n440,416,1.0\n440,417,1.5\n440,418,2.0\n440,419,2.5\n440,420,3.0\n440,421,3.5\n440,422,4.0\n440,423,4.5\n440,424,5.0\n440,425,7.5\n440,426,7.0\n440,427,6.5\n440,428,6.0\n440,429,5.5\n440,430,5.0\n440,431,4.5\n440,432,4.0\n440,433,3.5\n440,434,3.0\n440,435,2.5\n440,436,2.0\n440,437,1.5\n440,438,1.0\n440,439,0.5\n440,440,0\n440,441,0.5\n440,442,1.0\n440,443,1.5\n440,444,2.0\n440,445,2.5\n440,446,3.0\n440,447,3.5\n440,448,4.0\n440,449,4.5\n440,450,8.0\n440,451,7.5\n440,452,7.0\n440,453,6.5\n440,454,6.0\n440,455,5.5\n440,456,5.0\n440,457,4.5\n440,458,4.0\n440,459,3.5\n440,460,3.0\n440,461,2.5\n440,462,2.0\n440,463,1.5\n440,464,1.0\n440,465,0.5\n440,466,1.0\n440,467,1.5\n440,468,2.0\n440,469,2.5\n440,470,3.0\n440,471,3.5\n440,472,4.0\n440,473,4.5\n440,474,5.0\n440,475,8.5\n440,476,8.0\n440,477,7.5\n440,478,7.0\n440,479,6.5\n440,480,6.0\n440,481,5.5\n440,482,5.0\n440,483,4.5\n440,484,4.0\n440,485,3.5\n440,486,3.0\n440,487,2.5\n440,488,2.0\n440,489,1.5\n440,490,1.0\n440,491,1.5\n440,492,2.0\n440,493,2.5\n440,494,3.0\n440,495,3.5\n440,496,4.0\n440,497,4.5\n440,498,5.0\n440,499,5.5\n440,500,9.0\n440,501,8.5\n440,502,8.0\n440,503,7.5\n440,504,7.0\n440,505,6.5\n440,506,6.0\n440,507,5.5\n440,508,5.0\n440,509,4.5\n440,510,4.0\n440,511,3.5\n440,512,3.0\n440,513,2.5\n440,514,2.0\n440,515,1.5\n440,516,2.0\n440,517,2.5\n440,518,3.0\n440,519,3.5\n440,520,4.0\n440,521,4.5\n440,522,5.0\n440,523,5.5\n440,524,6.0\n440,525,9.5\n440,526,9.0\n440,527,8.5\n440,528,8.0\n440,529,7.5\n440,530,7.0\n440,531,6.5\n440,532,6.0\n440,533,5.5\n440,534,5.0\n440,535,4.5\n440,536,4.0\n440,537,3.5\n440,538,3.0\n440,539,2.5\n440,540,2.0\n440,541,2.5\n440,542,3.0\n440,543,3.5\n440,544,4.0\n440,545,4.5\n440,546,5.0\n440,547,5.5\n440,548,6.0\n440,549,6.5\n440,550,10.0\n440,551,9.5\n440,552,9.0\n440,553,8.5\n440,554,8.0\n440,555,7.5\n440,556,7.0\n440,557,6.5\n440,558,6.0\n440,559,5.5\n440,560,5.0\n440,561,4.5\n440,562,4.0\n440,563,3.5\n440,564,3.0\n440,565,2.5\n440,566,3.0\n440,567,3.5\n440,568,4.0\n440,569,4.5\n440,570,5.0\n440,571,5.5\n440,572,6.0\n440,573,6.5\n440,574,7.0\n440,575,10.5\n440,576,10.0\n440,577,9.5\n440,578,9.0\n440,579,8.5\n440,580,8.0\n440,581,7.5\n440,582,7.0\n440,583,6.5\n440,584,6.0\n440,585,5.5\n440,586,5.0\n440,587,4.5\n440,588,4.0\n440,589,3.5\n440,590,3.0\n440,591,3.5\n440,592,4.0\n440,593,4.5\n440,594,5.0\n440,595,5.5\n440,596,6.0\n440,597,6.5\n440,598,7.0\n440,599,7.5\n440,600,11.0\n440,601,10.5\n440,602,10.0\n440,603,9.5\n440,604,9.0\n440,605,8.5\n440,606,8.0\n440,607,7.5\n440,608,7.0\n440,609,6.5\n440,610,6.0\n440,611,5.5\n440,612,5.0\n440,613,4.5\n440,614,4.0\n440,615,3.5\n440,616,4.0\n440,617,4.5\n440,618,5.0\n440,619,5.5\n440,620,6.0\n440,621,6.5\n440,622,7.0\n440,623,7.5\n440,624,8.0\n441,0,16.5\n441,1,16.0\n441,2,15.5\n441,3,15.0\n441,4,14.5\n441,5,14.0\n441,6,13.5\n441,7,13.0\n441,8,12.5\n441,9,12.0\n441,10,11.5\n441,11,11.0\n441,12,10.5\n441,13,10.0\n441,14,9.5\n441,15,9.0\n441,16,8.5\n441,17,9.0\n441,18,9.5\n441,19,10.0\n441,20,10.5\n441,21,11.0\n441,22,11.5\n441,23,12.0\n441,24,12.5\n441,25,16.0\n441,26,15.5\n441,27,15.0\n441,28,14.5\n441,29,14.0\n441,30,13.5\n441,31,13.0\n441,32,12.5\n441,33,12.0\n441,34,11.5\n441,35,11.0\n441,36,10.5\n441,37,10.0\n441,38,9.5\n441,39,9.0\n441,40,8.5\n441,41,8.0\n441,42,8.5\n441,43,9.0\n441,44,9.5\n441,45,10.0\n441,46,10.5\n441,47,11.0\n441,48,11.5\n441,49,12.0\n441,50,15.5\n441,51,15.0\n441,52,14.5\n441,53,14.0\n441,54,13.5\n441,55,13.0\n441,56,12.5\n441,57,12.0\n441,58,11.5\n441,59,11.0\n441,60,10.5\n441,61,10.0\n441,62,9.5\n441,63,9.0\n441,64,8.5\n441,65,8.0\n441,66,7.5\n441,67,8.0\n441,68,8.5\n441,69,9.0\n441,70,9.5\n441,71,10.0\n441,72,10.5\n441,73,11.0\n441,74,11.5\n441,75,15.0\n441,76,14.5\n441,77,14.0\n441,78,13.5\n441,79,13.0\n441,80,12.5\n441,81,12.0\n441,82,11.5\n441,83,11.0\n441,84,10.5\n441,85,10.0\n441,86,9.5\n441,87,9.0\n441,88,8.5\n441,89,8.0\n441,90,7.5\n441,91,7.0\n441,92,7.5\n441,93,8.0\n441,94,8.5\n441,95,9.0\n441,96,9.5\n441,97,10.0\n441,98,10.5\n441,99,11.0\n441,100,14.5\n441,101,14.0\n441,102,13.5\n441,103,13.0\n441,104,12.5\n441,105,12.0\n441,106,11.5\n441,107,11.0\n441,108,10.5\n441,109,10.0\n441,110,9.5\n441,111,9.0\n441,112,8.5\n441,113,8.0\n441,114,7.5\n441,115,7.0\n441,116,6.5\n441,117,7.0\n441,118,7.5\n441,119,8.0\n441,120,8.5\n441,121,9.0\n441,122,9.5\n441,123,10.0\n441,124,10.5\n441,125,14.0\n441,126,13.5\n441,127,13.0\n441,128,12.5\n441,129,12.0\n441,130,11.5\n441,131,11.0\n441,132,10.5\n441,133,10.0\n441,134,9.5\n441,135,9.0\n441,136,8.5\n441,137,8.0\n441,138,7.5\n441,139,7.0\n441,140,6.5\n441,141,6.0\n441,142,6.5\n441,143,7.0\n441,144,7.5\n441,145,8.0\n441,146,8.5\n441,147,9.0\n441,148,9.5\n441,149,10.0\n441,150,13.5\n441,151,13.0\n441,152,12.5\n441,153,12.0\n441,154,11.5\n441,155,11.0\n441,156,10.5\n441,157,10.0\n441,158,9.5\n441,159,9.0\n441,160,8.5\n441,161,8.0\n441,162,7.5\n441,163,7.0\n441,164,6.5\n441,165,6.0\n441,166,5.5\n441,167,6.0\n441,168,6.5\n441,169,7.0\n441,170,7.5\n441,171,8.0\n441,172,8.5\n441,173,9.0\n441,174,9.5\n441,175,13.0\n441,176,12.5\n441,177,12.0\n441,178,11.5\n441,179,11.0\n441,180,10.5\n441,181,10.0\n441,182,9.5\n441,183,9.0\n441,184,8.5\n441,185,8.0\n441,186,7.5\n441,187,7.0\n441,188,6.5\n441,189,6.0\n441,190,5.5\n441,191,5.0\n441,192,5.5\n441,193,6.0\n441,194,6.5\n441,195,7.0\n441,196,7.5\n441,197,8.0\n441,198,8.5\n441,199,9.0\n441,200,12.5\n441,201,12.0\n441,202,11.5\n441,203,11.0\n441,204,10.5\n441,205,10.0\n441,206,9.5\n441,207,9.0\n441,208,8.5\n441,209,8.0\n441,210,7.5\n441,211,7.0\n441,212,6.5\n441,213,6.0\n441,214,5.5\n441,215,5.0\n441,216,4.5\n441,217,5.0\n441,218,5.5\n441,219,6.0\n441,220,6.5\n441,221,7.0\n441,222,7.5\n441,223,8.0\n441,224,8.5\n441,225,12.0\n441,226,11.5\n441,227,11.0\n441,228,10.5\n441,229,10.0\n441,230,9.5\n441,231,9.0\n441,232,8.5\n441,233,8.0\n441,234,7.5\n441,235,7.0\n441,236,6.5\n441,237,6.0\n441,238,5.5\n441,239,5.0\n441,240,4.5\n441,241,4.0\n441,242,4.5\n441,243,5.0\n441,244,5.5\n441,245,6.0\n441,246,6.5\n441,247,7.0\n441,248,7.5\n441,249,8.0\n441,250,11.5\n441,251,11.0\n441,252,10.5\n441,253,10.0\n441,254,9.5\n441,255,9.0\n441,256,8.5\n441,257,8.0\n441,258,7.5\n441,259,7.0\n441,260,6.5\n441,261,6.0\n441,262,5.5\n441,263,5.0\n441,264,4.5\n441,265,4.0\n441,266,3.5\n441,267,4.0\n441,268,4.5\n441,269,5.0\n441,270,5.5\n441,271,6.0\n441,272,6.5\n441,273,7.0\n441,274,7.5\n441,275,11.0\n441,276,10.5\n441,277,10.0\n441,278,9.5\n441,279,9.0\n441,280,8.5\n441,281,8.0\n441,282,7.5\n441,283,7.0\n441,284,6.5\n441,285,6.0\n441,286,5.5\n441,287,5.0\n441,288,4.5\n441,289,4.0\n441,290,3.5\n441,291,3.0\n441,292,3.5\n441,293,4.0\n441,294,4.5\n441,295,5.0\n441,296,5.5\n441,297,6.0\n441,298,6.5\n441,299,7.0\n441,300,10.5\n441,301,10.0\n441,302,9.5\n441,303,9.0\n441,304,8.5\n441,305,8.0\n441,306,7.5\n441,307,7.0\n441,308,6.5\n441,309,6.0\n441,310,5.5\n441,311,5.0\n441,312,4.5\n441,313,4.0\n441,314,3.5\n441,315,3.0\n441,316,2.5\n441,317,3.0\n441,318,3.5\n441,319,4.0\n441,320,4.5\n441,321,5.0\n441,322,5.5\n441,323,6.0\n441,324,6.5\n441,325,10.0\n441,326,9.5\n441,327,9.0\n441,328,8.5\n441,329,8.0\n441,330,7.5\n441,331,7.0\n441,332,6.5\n441,333,6.0\n441,334,5.5\n441,335,5.0\n441,336,4.5\n441,337,4.0\n441,338,3.5\n441,339,3.0\n441,340,2.5\n441,341,2.0\n441,342,2.5\n441,343,3.0\n441,344,3.5\n441,345,4.0\n441,346,4.5\n441,347,5.0\n441,348,5.5\n441,349,6.0\n441,350,9.5\n441,351,9.0\n441,352,8.5\n441,353,8.0\n441,354,7.5\n441,355,7.0\n441,356,6.5\n441,357,6.0\n441,358,5.5\n441,359,5.0\n441,360,4.5\n441,361,4.0\n441,362,3.5\n441,363,3.0\n441,364,2.5\n441,365,2.0\n441,366,1.5\n441,367,2.0\n441,368,2.5\n441,369,3.0\n441,370,3.5\n441,371,4.0\n441,372,4.5\n441,373,5.0\n441,374,5.5\n441,375,9.0\n441,376,8.5\n441,377,8.0\n441,378,7.5\n441,379,7.0\n441,380,6.5\n441,381,6.0\n441,382,5.5\n441,383,5.0\n441,384,4.5\n441,385,4.0\n441,386,3.5\n441,387,3.0\n441,388,2.5\n441,389,2.0\n441,390,1.5\n441,391,1.0\n441,392,1.5\n441,393,2.0\n441,394,2.5\n441,395,3.0\n441,396,3.5\n441,397,4.0\n441,398,4.5\n441,399,5.0\n441,400,8.5\n441,401,8.0\n441,402,7.5\n441,403,7.0\n441,404,6.5\n441,405,6.0\n441,406,5.5\n441,407,5.0\n441,408,4.5\n441,409,4.0\n441,410,3.5\n441,411,3.0\n441,412,2.5\n441,413,2.0\n441,414,1.5\n441,415,1.0\n441,416,0.5\n441,417,1.0\n441,418,1.5\n441,419,2.0\n441,420,2.5\n441,421,3.0\n441,422,3.5\n441,423,4.0\n441,424,4.5\n441,425,8.0\n441,426,7.5\n441,427,7.0\n441,428,6.5\n441,429,6.0\n441,430,5.5\n441,431,5.0\n441,432,4.5\n441,433,4.0\n441,434,3.5\n441,435,3.0\n441,436,2.5\n441,437,2.0\n441,438,1.5\n441,439,1.0\n441,440,0.5\n441,441,0\n441,442,0.5\n441,443,1.0\n441,444,1.5\n441,445,2.0\n441,446,2.5\n441,447,3.0\n441,448,3.5\n441,449,4.0\n441,450,8.5\n441,451,8.0\n441,452,7.5\n441,453,7.0\n441,454,6.5\n441,455,6.0\n441,456,5.5\n441,457,5.0\n441,458,4.5\n441,459,4.0\n441,460,3.5\n441,461,3.0\n441,462,2.5\n441,463,2.0\n441,464,1.5\n441,465,1.0\n441,466,0.5\n441,467,1.0\n441,468,1.5\n441,469,2.0\n441,470,2.5\n441,471,3.0\n441,472,3.5\n441,473,4.0\n441,474,4.5\n441,475,9.0\n441,476,8.5\n441,477,8.0\n441,478,7.5\n441,479,7.0\n441,480,6.5\n441,481,6.0\n441,482,5.5\n441,483,5.0\n441,484,4.5\n441,485,4.0\n441,486,3.5\n441,487,3.0\n441,488,2.5\n441,489,2.0\n441,490,1.5\n441,491,1.0\n441,492,1.5\n441,493,2.0\n441,494,2.5\n441,495,3.0\n441,496,3.5\n441,497,4.0\n441,498,4.5\n441,499,5.0\n441,500,9.5\n441,501,9.0\n441,502,8.5\n441,503,8.0\n441,504,7.5\n441,505,7.0\n441,506,6.5\n441,507,6.0\n441,508,5.5\n441,509,5.0\n441,510,4.5\n441,511,4.0\n441,512,3.5\n441,513,3.0\n441,514,2.5\n441,515,2.0\n441,516,1.5\n441,517,2.0\n441,518,2.5\n441,519,3.0\n441,520,3.5\n441,521,4.0\n441,522,4.5\n441,523,5.0\n441,524,5.5\n441,525,10.0\n441,526,9.5\n441,527,9.0\n441,528,8.5\n441,529,8.0\n441,530,7.5\n441,531,7.0\n441,532,6.5\n441,533,6.0\n441,534,5.5\n441,535,5.0\n441,536,4.5\n441,537,4.0\n441,538,3.5\n441,539,3.0\n441,540,2.5\n441,541,2.0\n441,542,2.5\n441,543,3.0\n441,544,3.5\n441,545,4.0\n441,546,4.5\n441,547,5.0\n441,548,5.5\n441,549,6.0\n441,550,10.5\n441,551,10.0\n441,552,9.5\n441,553,9.0\n441,554,8.5\n441,555,8.0\n441,556,7.5\n441,557,7.0\n441,558,6.5\n441,559,6.0\n441,560,5.5\n441,561,5.0\n441,562,4.5\n441,563,4.0\n441,564,3.5\n441,565,3.0\n441,566,2.5\n441,567,3.0\n441,568,3.5\n441,569,4.0\n441,570,4.5\n441,571,5.0\n441,572,5.5\n441,573,6.0\n441,574,6.5\n441,575,11.0\n441,576,10.5\n441,577,10.0\n441,578,9.5\n441,579,9.0\n441,580,8.5\n441,581,8.0\n441,582,7.5\n441,583,7.0\n441,584,6.5\n441,585,6.0\n441,586,5.5\n441,587,5.0\n441,588,4.5\n441,589,4.0\n441,590,3.5\n441,591,3.0\n441,592,3.5\n441,593,4.0\n441,594,4.5\n441,595,5.0\n441,596,5.5\n441,597,6.0\n441,598,6.5\n441,599,7.0\n441,600,11.5\n441,601,11.0\n441,602,10.5\n441,603,10.0\n441,604,9.5\n441,605,9.0\n441,606,8.5\n441,607,8.0\n441,608,7.5\n441,609,7.0\n441,610,6.5\n441,611,6.0\n441,612,5.5\n441,613,5.0\n441,614,4.5\n441,615,4.0\n441,616,3.5\n441,617,4.0\n441,618,4.5\n441,619,5.0\n441,620,5.5\n441,621,6.0\n441,622,6.5\n441,623,7.0\n441,624,7.5\n442,0,17.0\n442,1,16.5\n442,2,16.0\n442,3,15.5\n442,4,15.0\n442,5,14.5\n442,6,14.0\n442,7,13.5\n442,8,13.0\n442,9,12.5\n442,10,12.0\n442,11,11.5\n442,12,11.0\n442,13,10.5\n442,14,10.0\n442,15,9.5\n442,16,9.0\n442,17,8.5\n442,18,9.0\n442,19,9.5\n442,20,10.0\n442,21,10.5\n442,22,11.0\n442,23,11.5\n442,24,12.0\n442,25,16.5\n442,26,16.0\n442,27,15.5\n442,28,15.0\n442,29,14.5\n442,30,14.0\n442,31,13.5\n442,32,13.0\n442,33,12.5\n442,34,12.0\n442,35,11.5\n442,36,11.0\n442,37,10.5\n442,38,10.0\n442,39,9.5\n442,40,9.0\n442,41,8.5\n442,42,8.0\n442,43,8.5\n442,44,9.0\n442,45,9.5\n442,46,10.0\n442,47,10.5\n442,48,11.0\n442,49,11.5\n442,50,16.0\n442,51,15.5\n442,52,15.0\n442,53,14.5\n442,54,14.0\n442,55,13.5\n442,56,13.0\n442,57,12.5\n442,58,12.0\n442,59,11.5\n442,60,11.0\n442,61,10.5\n442,62,10.0\n442,63,9.5\n442,64,9.0\n442,65,8.5\n442,66,8.0\n442,67,7.5\n442,68,8.0\n442,69,8.5\n442,70,9.0\n442,71,9.5\n442,72,10.0\n442,73,10.5\n442,74,11.0\n442,75,15.5\n442,76,15.0\n442,77,14.5\n442,78,14.0\n442,79,13.5\n442,80,13.0\n442,81,12.5\n442,82,12.0\n442,83,11.5\n442,84,11.0\n442,85,10.5\n442,86,10.0\n442,87,9.5\n442,88,9.0\n442,89,8.5\n442,90,8.0\n442,91,7.5\n442,92,7.0\n442,93,7.5\n442,94,8.0\n442,95,8.5\n442,96,9.0\n442,97,9.5\n442,98,10.0\n442,99,10.5\n442,100,15.0\n442,101,14.5\n442,102,14.0\n442,103,13.5\n442,104,13.0\n442,105,12.5\n442,106,12.0\n442,107,11.5\n442,108,11.0\n442,109,10.5\n442,110,10.0\n442,111,9.5\n442,112,9.0\n442,113,8.5\n442,114,8.0\n442,115,7.5\n442,116,7.0\n442,117,6.5\n442,118,7.0\n442,119,7.5\n442,120,8.0\n442,121,8.5\n442,122,9.0\n442,123,9.5\n442,124,10.0\n442,125,14.5\n442,126,14.0\n442,127,13.5\n442,128,13.0\n442,129,12.5\n442,130,12.0\n442,131,11.5\n442,132,11.0\n442,133,10.5\n442,134,10.0\n442,135,9.5\n442,136,9.0\n442,137,8.5\n442,138,8.0\n442,139,7.5\n442,140,7.0\n442,141,6.5\n442,142,6.0\n442,143,6.5\n442,144,7.0\n442,145,7.5\n442,146,8.0\n442,147,8.5\n442,148,9.0\n442,149,9.5\n442,150,14.0\n442,151,13.5\n442,152,13.0\n442,153,12.5\n442,154,12.0\n442,155,11.5\n442,156,11.0\n442,157,10.5\n442,158,10.0\n442,159,9.5\n442,160,9.0\n442,161,8.5\n442,162,8.0\n442,163,7.5\n442,164,7.0\n442,165,6.5\n442,166,6.0\n442,167,5.5\n442,168,6.0\n442,169,6.5\n442,170,7.0\n442,171,7.5\n442,172,8.0\n442,173,8.5\n442,174,9.0\n442,175,13.5\n442,176,13.0\n442,177,12.5\n442,178,12.0\n442,179,11.5\n442,180,11.0\n442,181,10.5\n442,182,10.0\n442,183,9.5\n442,184,9.0\n442,185,8.5\n442,186,8.0\n442,187,7.5\n442,188,7.0\n442,189,6.5\n442,190,6.0\n442,191,5.5\n442,192,5.0\n442,193,5.5\n442,194,6.0\n442,195,6.5\n442,196,7.0\n442,197,7.5\n442,198,8.0\n442,199,8.5\n442,200,13.0\n442,201,12.5\n442,202,12.0\n442,203,11.5\n442,204,11.0\n442,205,10.5\n442,206,10.0\n442,207,9.5\n442,208,9.0\n442,209,8.5\n442,210,8.0\n442,211,7.5\n442,212,7.0\n442,213,6.5\n442,214,6.0\n442,215,5.5\n442,216,5.0\n442,217,4.5\n442,218,5.0\n442,219,5.5\n442,220,6.0\n442,221,6.5\n442,222,7.0\n442,223,7.5\n442,224,8.0\n442,225,12.5\n442,226,12.0\n442,227,11.5\n442,228,11.0\n442,229,10.5\n442,230,10.0\n442,231,9.5\n442,232,9.0\n442,233,8.5\n442,234,8.0\n442,235,7.5\n442,236,7.0\n442,237,6.5\n442,238,6.0\n442,239,5.5\n442,240,5.0\n442,241,4.5\n442,242,4.0\n442,243,4.5\n442,244,5.0\n442,245,5.5\n442,246,6.0\n442,247,6.5\n442,248,7.0\n442,249,7.5\n442,250,12.0\n442,251,11.5\n442,252,11.0\n442,253,10.5\n442,254,10.0\n442,255,9.5\n442,256,9.0\n442,257,8.5\n442,258,8.0\n442,259,7.5\n442,260,7.0\n442,261,6.5\n442,262,6.0\n442,263,5.5\n442,264,5.0\n442,265,4.5\n442,266,4.0\n442,267,3.5\n442,268,4.0\n442,269,4.5\n442,270,5.0\n442,271,5.5\n442,272,6.0\n442,273,6.5\n442,274,7.0\n442,275,11.5\n442,276,11.0\n442,277,10.5\n442,278,10.0\n442,279,9.5\n442,280,9.0\n442,281,8.5\n442,282,8.0\n442,283,7.5\n442,284,7.0\n442,285,6.5\n442,286,6.0\n442,287,5.5\n442,288,5.0\n442,289,4.5\n442,290,4.0\n442,291,3.5\n442,292,3.0\n442,293,3.5\n442,294,4.0\n442,295,4.5\n442,296,5.0\n442,297,5.5\n442,298,6.0\n442,299,6.5\n442,300,11.0\n442,301,10.5\n442,302,10.0\n442,303,9.5\n442,304,9.0\n442,305,8.5\n442,306,8.0\n442,307,7.5\n442,308,7.0\n442,309,6.5\n442,310,6.0\n442,311,5.5\n442,312,5.0\n442,313,4.5\n442,314,4.0\n442,315,3.5\n442,316,3.0\n442,317,2.5\n442,318,3.0\n442,319,3.5\n442,320,4.0\n442,321,4.5\n442,322,5.0\n442,323,5.5\n442,324,6.0\n442,325,10.5\n442,326,10.0\n442,327,9.5\n442,328,9.0\n442,329,8.5\n442,330,8.0\n442,331,7.5\n442,332,7.0\n442,333,6.5\n442,334,6.0\n442,335,5.5\n442,336,5.0\n442,337,4.5\n442,338,4.0\n442,339,3.5\n442,340,3.0\n442,341,2.5\n442,342,2.0\n442,343,2.5\n442,344,3.0\n442,345,3.5\n442,346,4.0\n442,347,4.5\n442,348,5.0\n442,349,5.5\n442,350,10.0\n442,351,9.5\n442,352,9.0\n442,353,8.5\n442,354,8.0\n442,355,7.5\n442,356,7.0\n442,357,6.5\n442,358,6.0\n442,359,5.5\n442,360,5.0\n442,361,4.5\n442,362,4.0\n442,363,3.5\n442,364,3.0\n442,365,2.5\n442,366,2.0\n442,367,1.5\n442,368,2.0\n442,369,2.5\n442,370,3.0\n442,371,3.5\n442,372,4.0\n442,373,4.5\n442,374,5.0\n442,375,9.5\n442,376,9.0\n442,377,8.5\n442,378,8.0\n442,379,7.5\n442,380,7.0\n442,381,6.5\n442,382,6.0\n442,383,5.5\n442,384,5.0\n442,385,4.5\n442,386,4.0\n442,387,3.5\n442,388,3.0\n442,389,2.5\n442,390,2.0\n442,391,1.5\n442,392,1.0\n442,393,1.5\n442,394,2.0\n442,395,2.5\n442,396,3.0\n442,397,3.5\n442,398,4.0\n442,399,4.5\n442,400,9.0\n442,401,8.5\n442,402,8.0\n442,403,7.5\n442,404,7.0\n442,405,6.5\n442,406,6.0\n442,407,5.5\n442,408,5.0\n442,409,4.5\n442,410,4.0\n442,411,3.5\n442,412,3.0\n442,413,2.5\n442,414,2.0\n442,415,1.5\n442,416,1.0\n442,417,0.5\n442,418,1.0\n442,419,1.5\n442,420,2.0\n442,421,2.5\n442,422,3.0\n442,423,3.5\n442,424,4.0\n442,425,8.5\n442,426,8.0\n442,427,7.5\n442,428,7.0\n442,429,6.5\n442,430,6.0\n442,431,5.5\n442,432,5.0\n442,433,4.5\n442,434,4.0\n442,435,3.5\n442,436,3.0\n442,437,2.5\n442,438,2.0\n442,439,1.5\n442,440,1.0\n442,441,0.5\n442,442,0\n442,443,0.5\n442,444,1.0\n442,445,1.5\n442,446,2.0\n442,447,2.5\n442,448,3.0\n442,449,3.5\n442,450,9.0\n442,451,8.5\n442,452,8.0\n442,453,7.5\n442,454,7.0\n442,455,6.5\n442,456,6.0\n442,457,5.5\n442,458,5.0\n442,459,4.5\n442,460,4.0\n442,461,3.5\n442,462,3.0\n442,463,2.5\n442,464,2.0\n442,465,1.5\n442,466,1.0\n442,467,0.5\n442,468,1.0\n442,469,1.5\n442,470,2.0\n442,471,2.5\n442,472,3.0\n442,473,3.5\n442,474,4.0\n442,475,9.5\n442,476,9.0\n442,477,8.5\n442,478,8.0\n442,479,7.5\n442,480,7.0\n442,481,6.5\n442,482,6.0\n442,483,5.5\n442,484,5.0\n442,485,4.5\n442,486,4.0\n442,487,3.5\n442,488,3.0\n442,489,2.5\n442,490,2.0\n442,491,1.5\n442,492,1.0\n442,493,1.5\n442,494,2.0\n442,495,2.5\n442,496,3.0\n442,497,3.5\n442,498,4.0\n442,499,4.5\n442,500,10.0\n442,501,9.5\n442,502,9.0\n442,503,8.5\n442,504,8.0\n442,505,7.5\n442,506,7.0\n442,507,6.5\n442,508,6.0\n442,509,5.5\n442,510,5.0\n442,511,4.5\n442,512,4.0\n442,513,3.5\n442,514,3.0\n442,515,2.5\n442,516,2.0\n442,517,1.5\n442,518,2.0\n442,519,2.5\n442,520,3.0\n442,521,3.5\n442,522,4.0\n442,523,4.5\n442,524,5.0\n442,525,10.5\n442,526,10.0\n442,527,9.5\n442,528,9.0\n442,529,8.5\n442,530,8.0\n442,531,7.5\n442,532,7.0\n442,533,6.5\n442,534,6.0\n442,535,5.5\n442,536,5.0\n442,537,4.5\n442,538,4.0\n442,539,3.5\n442,540,3.0\n442,541,2.5\n442,542,2.0\n442,543,2.5\n442,544,3.0\n442,545,3.5\n442,546,4.0\n442,547,4.5\n442,548,5.0\n442,549,5.5\n442,550,11.0\n442,551,10.5\n442,552,10.0\n442,553,9.5\n442,554,9.0\n442,555,8.5\n442,556,8.0\n442,557,7.5\n442,558,7.0\n442,559,6.5\n442,560,6.0\n442,561,5.5\n442,562,5.0\n442,563,4.5\n442,564,4.0\n442,565,3.5\n442,566,3.0\n442,567,2.5\n442,568,3.0\n442,569,3.5\n442,570,4.0\n442,571,4.5\n442,572,5.0\n442,573,5.5\n442,574,6.0\n442,575,11.5\n442,576,11.0\n442,577,10.5\n442,578,10.0\n442,579,9.5\n442,580,9.0\n442,581,8.5\n442,582,8.0\n442,583,7.5\n442,584,7.0\n442,585,6.5\n442,586,6.0\n442,587,5.5\n442,588,5.0\n442,589,4.5\n442,590,4.0\n442,591,3.5\n442,592,3.0\n442,593,3.5\n442,594,4.0\n442,595,4.5\n442,596,5.0\n442,597,5.5\n442,598,6.0\n442,599,6.5\n442,600,12.0\n442,601,11.5\n442,602,11.0\n442,603,10.5\n442,604,10.0\n442,605,9.5\n442,606,9.0\n442,607,8.5\n442,608,8.0\n442,609,7.5\n442,610,7.0\n442,611,6.5\n442,612,6.0\n442,613,5.5\n442,614,5.0\n442,615,4.5\n442,616,4.0\n442,617,3.5\n442,618,4.0\n442,619,4.5\n442,620,5.0\n442,621,5.5\n442,622,6.0\n442,623,6.5\n442,624,7.0\n443,0,17.5\n443,1,17.0\n443,2,16.5\n443,3,16.0\n443,4,15.5\n443,5,15.0\n443,6,14.5\n443,7,14.0\n443,8,13.5\n443,9,13.0\n443,10,12.5\n443,11,12.0\n443,12,11.5\n443,13,11.0\n443,14,10.5\n443,15,10.0\n443,16,9.5\n443,17,9.0\n443,18,8.5\n443,19,9.0\n443,20,9.5\n443,21,10.0\n443,22,10.5\n443,23,11.0\n443,24,11.5\n443,25,17.0\n443,26,16.5\n443,27,16.0\n443,28,15.5\n443,29,15.0\n443,30,14.5\n443,31,14.0\n443,32,13.5\n443,33,13.0\n443,34,12.5\n443,35,12.0\n443,36,11.5\n443,37,11.0\n443,38,10.5\n443,39,10.0\n443,40,9.5\n443,41,9.0\n443,42,8.5\n443,43,8.0\n443,44,8.5\n443,45,9.0\n443,46,9.5\n443,47,10.0\n443,48,10.5\n443,49,11.0\n443,50,16.5\n443,51,16.0\n443,52,15.5\n443,53,15.0\n443,54,14.5\n443,55,14.0\n443,56,13.5\n443,57,13.0\n443,58,12.5\n443,59,12.0\n443,60,11.5\n443,61,11.0\n443,62,10.5\n443,63,10.0\n443,64,9.5\n443,65,9.0\n443,66,8.5\n443,67,8.0\n443,68,7.5\n443,69,8.0\n443,70,8.5\n443,71,9.0\n443,72,9.5\n443,73,10.0\n443,74,10.5\n443,75,16.0\n443,76,15.5\n443,77,15.0\n443,78,14.5\n443,79,14.0\n443,80,13.5\n443,81,13.0\n443,82,12.5\n443,83,12.0\n443,84,11.5\n443,85,11.0\n443,86,10.5\n443,87,10.0\n443,88,9.5\n443,89,9.0\n443,90,8.5\n443,91,8.0\n443,92,7.5\n443,93,7.0\n443,94,7.5\n443,95,8.0\n443,96,8.5\n443,97,9.0\n443,98,9.5\n443,99,10.0\n443,100,15.5\n443,101,15.0\n443,102,14.5\n443,103,14.0\n443,104,13.5\n443,105,13.0\n443,106,12.5\n443,107,12.0\n443,108,11.5\n443,109,11.0\n443,110,10.5\n443,111,10.0\n443,112,9.5\n443,113,9.0\n443,114,8.5\n443,115,8.0\n443,116,7.5\n443,117,7.0\n443,118,6.5\n443,119,7.0\n443,120,7.5\n443,121,8.0\n443,122,8.5\n443,123,9.0\n443,124,9.5\n443,125,15.0\n443,126,14.5\n443,127,14.0\n443,128,13.5\n443,129,13.0\n443,130,12.5\n443,131,12.0\n443,132,11.5\n443,133,11.0\n443,134,10.5\n443,135,10.0\n443,136,9.5\n443,137,9.0\n443,138,8.5\n443,139,8.0\n443,140,7.5\n443,141,7.0\n443,142,6.5\n443,143,6.0\n443,144,6.5\n443,145,7.0\n443,146,7.5\n443,147,8.0\n443,148,8.5\n443,149,9.0\n443,150,14.5\n443,151,14.0\n443,152,13.5\n443,153,13.0\n443,154,12.5\n443,155,12.0\n443,156,11.5\n443,157,11.0\n443,158,10.5\n443,159,10.0\n443,160,9.5\n443,161,9.0\n443,162,8.5\n443,163,8.0\n443,164,7.5\n443,165,7.0\n443,166,6.5\n443,167,6.0\n443,168,5.5\n443,169,6.0\n443,170,6.5\n443,171,7.0\n443,172,7.5\n443,173,8.0\n443,174,8.5\n443,175,14.0\n443,176,13.5\n443,177,13.0\n443,178,12.5\n443,179,12.0\n443,180,11.5\n443,181,11.0\n443,182,10.5\n443,183,10.0\n443,184,9.5\n443,185,9.0\n443,186,8.5\n443,187,8.0\n443,188,7.5\n443,189,7.0\n443,190,6.5\n443,191,6.0\n443,192,5.5\n443,193,5.0\n443,194,5.5\n443,195,6.0\n443,196,6.5\n443,197,7.0\n443,198,7.5\n443,199,8.0\n443,200,13.5\n443,201,13.0\n443,202,12.5\n443,203,12.0\n443,204,11.5\n443,205,11.0\n443,206,10.5\n443,207,10.0\n443,208,9.5\n443,209,9.0\n443,210,8.5\n443,211,8.0\n443,212,7.5\n443,213,7.0\n443,214,6.5\n443,215,6.0\n443,216,5.5\n443,217,5.0\n443,218,4.5\n443,219,5.0\n443,220,5.5\n443,221,6.0\n443,222,6.5\n443,223,7.0\n443,224,7.5\n443,225,13.0\n443,226,12.5\n443,227,12.0\n443,228,11.5\n443,229,11.0\n443,230,10.5\n443,231,10.0\n443,232,9.5\n443,233,9.0\n443,234,8.5\n443,235,8.0\n443,236,7.5\n443,237,7.0\n443,238,6.5\n443,239,6.0\n443,240,5.5\n443,241,5.0\n443,242,4.5\n443,243,4.0\n443,244,4.5\n443,245,5.0\n443,246,5.5\n443,247,6.0\n443,248,6.5\n443,249,7.0\n443,250,12.5\n443,251,12.0\n443,252,11.5\n443,253,11.0\n443,254,10.5\n443,255,10.0\n443,256,9.5\n443,257,9.0\n443,258,8.5\n443,259,8.0\n443,260,7.5\n443,261,7.0\n443,262,6.5\n443,263,6.0\n443,264,5.5\n443,265,5.0\n443,266,4.5\n443,267,4.0\n443,268,3.5\n443,269,4.0\n443,270,4.5\n443,271,5.0\n443,272,5.5\n443,273,6.0\n443,274,6.5\n443,275,12.0\n443,276,11.5\n443,277,11.0\n443,278,10.5\n443,279,10.0\n443,280,9.5\n443,281,9.0\n443,282,8.5\n443,283,8.0\n443,284,7.5\n443,285,7.0\n443,286,6.5\n443,287,6.0\n443,288,5.5\n443,289,5.0\n443,290,4.5\n443,291,4.0\n443,292,3.5\n443,293,3.0\n443,294,3.5\n443,295,4.0\n443,296,4.5\n443,297,5.0\n443,298,5.5\n443,299,6.0\n443,300,11.5\n443,301,11.0\n443,302,10.5\n443,303,10.0\n443,304,9.5\n443,305,9.0\n443,306,8.5\n443,307,8.0\n443,308,7.5\n443,309,7.0\n443,310,6.5\n443,311,6.0\n443,312,5.5\n443,313,5.0\n443,314,4.5\n443,315,4.0\n443,316,3.5\n443,317,3.0\n443,318,2.5\n443,319,3.0\n443,320,3.5\n443,321,4.0\n443,322,4.5\n443,323,5.0\n443,324,5.5\n443,325,11.0\n443,326,10.5\n443,327,10.0\n443,328,9.5\n443,329,9.0\n443,330,8.5\n443,331,8.0\n443,332,7.5\n443,333,7.0\n443,334,6.5\n443,335,6.0\n443,336,5.5\n443,337,5.0\n443,338,4.5\n443,339,4.0\n443,340,3.5\n443,341,3.0\n443,342,2.5\n443,343,2.0\n443,344,2.5\n443,345,3.0\n443,346,3.5\n443,347,4.0\n443,348,4.5\n443,349,5.0\n443,350,10.5\n443,351,10.0\n443,352,9.5\n443,353,9.0\n443,354,8.5\n443,355,8.0\n443,356,7.5\n443,357,7.0\n443,358,6.5\n443,359,6.0\n443,360,5.5\n443,361,5.0\n443,362,4.5\n443,363,4.0\n443,364,3.5\n443,365,3.0\n443,366,2.5\n443,367,2.0\n443,368,1.5\n443,369,2.0\n443,370,2.5\n443,371,3.0\n443,372,3.5\n443,373,4.0\n443,374,4.5\n443,375,10.0\n443,376,9.5\n443,377,9.0\n443,378,8.5\n443,379,8.0\n443,380,7.5\n443,381,7.0\n443,382,6.5\n443,383,6.0\n443,384,5.5\n443,385,5.0\n443,386,4.5\n443,387,4.0\n443,388,3.5\n443,389,3.0\n443,390,2.5\n443,391,2.0\n443,392,1.5\n443,393,1.0\n443,394,1.5\n443,395,2.0\n443,396,2.5\n443,397,3.0\n443,398,3.5\n443,399,4.0\n443,400,9.5\n443,401,9.0\n443,402,8.5\n443,403,8.0\n443,404,7.5\n443,405,7.0\n443,406,6.5\n443,407,6.0\n443,408,5.5\n443,409,5.0\n443,410,4.5\n443,411,4.0\n443,412,3.5\n443,413,3.0\n443,414,2.5\n443,415,2.0\n443,416,1.5\n443,417,1.0\n443,418,0.5\n443,419,1.0\n443,420,1.5\n443,421,2.0\n443,422,2.5\n443,423,3.0\n443,424,3.5\n443,425,9.0\n443,426,8.5\n443,427,8.0\n443,428,7.5\n443,429,7.0\n443,430,6.5\n443,431,6.0\n443,432,5.5\n443,433,5.0\n443,434,4.5\n443,435,4.0\n443,436,3.5\n443,437,3.0\n443,438,2.5\n443,439,2.0\n443,440,1.5\n443,441,1.0\n443,442,0.5\n443,443,0\n443,444,0.5\n443,445,1.0\n443,446,1.5\n443,447,2.0\n443,448,2.5\n443,449,3.0\n443,450,9.5\n443,451,9.0\n443,452,8.5\n443,453,8.0\n443,454,7.5\n443,455,7.0\n443,456,6.5\n443,457,6.0\n443,458,5.5\n443,459,5.0\n443,460,4.5\n443,461,4.0\n443,462,3.5\n443,463,3.0\n443,464,2.5\n443,465,2.0\n443,466,1.5\n443,467,1.0\n443,468,0.5\n443,469,1.0\n443,470,1.5\n443,471,2.0\n443,472,2.5\n443,473,3.0\n443,474,3.5\n443,475,10.0\n443,476,9.5\n443,477,9.0\n443,478,8.5\n443,479,8.0\n443,480,7.5\n443,481,7.0\n443,482,6.5\n443,483,6.0\n443,484,5.5\n443,485,5.0\n443,486,4.5\n443,487,4.0\n443,488,3.5\n443,489,3.0\n443,490,2.5\n443,491,2.0\n443,492,1.5\n443,493,1.0\n443,494,1.5\n443,495,2.0\n443,496,2.5\n443,497,3.0\n443,498,3.5\n443,499,4.0\n443,500,10.5\n443,501,10.0\n443,502,9.5\n443,503,9.0\n443,504,8.5\n443,505,8.0\n443,506,7.5\n443,507,7.0\n443,508,6.5\n443,509,6.0\n443,510,5.5\n443,511,5.0\n443,512,4.5\n443,513,4.0\n443,514,3.5\n443,515,3.0\n443,516,2.5\n443,517,2.0\n443,518,1.5\n443,519,2.0\n443,520,2.5\n443,521,3.0\n443,522,3.5\n443,523,4.0\n443,524,4.5\n443,525,11.0\n443,526,10.5\n443,527,10.0\n443,528,9.5\n443,529,9.0\n443,530,8.5\n443,531,8.0\n443,532,7.5\n443,533,7.0\n443,534,6.5\n443,535,6.0\n443,536,5.5\n443,537,5.0\n443,538,4.5\n443,539,4.0\n443,540,3.5\n443,541,3.0\n443,542,2.5\n443,543,2.0\n443,544,2.5\n443,545,3.0\n443,546,3.5\n443,547,4.0\n443,548,4.5\n443,549,5.0\n443,550,11.5\n443,551,11.0\n443,552,10.5\n443,553,10.0\n443,554,9.5\n443,555,9.0\n443,556,8.5\n443,557,8.0\n443,558,7.5\n443,559,7.0\n443,560,6.5\n443,561,6.0\n443,562,5.5\n443,563,5.0\n443,564,4.5\n443,565,4.0\n443,566,3.5\n443,567,3.0\n443,568,2.5\n443,569,3.0\n443,570,3.5\n443,571,4.0\n443,572,4.5\n443,573,5.0\n443,574,5.5\n443,575,12.0\n443,576,11.5\n443,577,11.0\n443,578,10.5\n443,579,10.0\n443,580,9.5\n443,581,9.0\n443,582,8.5\n443,583,8.0\n443,584,7.5\n443,585,7.0\n443,586,6.5\n443,587,6.0\n443,588,5.5\n443,589,5.0\n443,590,4.5\n443,591,4.0\n443,592,3.5\n443,593,3.0\n443,594,3.5\n443,595,4.0\n443,596,4.5\n443,597,5.0\n443,598,5.5\n443,599,6.0\n443,600,12.5\n443,601,12.0\n443,602,11.5\n443,603,11.0\n443,604,10.5\n443,605,10.0\n443,606,9.5\n443,607,9.0\n443,608,8.5\n443,609,8.0\n443,610,7.5\n443,611,7.0\n443,612,6.5\n443,613,6.0\n443,614,5.5\n443,615,5.0\n443,616,4.5\n443,617,4.0\n443,618,3.5\n443,619,4.0\n443,620,4.5\n443,621,5.0\n443,622,5.5\n443,623,6.0\n443,624,6.5\n444,0,18.0\n444,1,17.5\n444,2,17.0\n444,3,16.5\n444,4,16.0\n444,5,15.5\n444,6,15.0\n444,7,14.5\n444,8,14.0\n444,9,13.5\n444,10,13.0\n444,11,12.5\n444,12,12.0\n444,13,11.5\n444,14,11.0\n444,15,10.5\n444,16,10.0\n444,17,9.5\n444,18,9.0\n444,19,8.5\n444,20,9.0\n444,21,9.5\n444,22,10.0\n444,23,10.5\n444,24,11.0\n444,25,17.5\n444,26,17.0\n444,27,16.5\n444,28,16.0\n444,29,15.5\n444,30,15.0\n444,31,14.5\n444,32,14.0\n444,33,13.5\n444,34,13.0\n444,35,12.5\n444,36,12.0\n444,37,11.5\n444,38,11.0\n444,39,10.5\n444,40,10.0\n444,41,9.5\n444,42,9.0\n444,43,8.5\n444,44,8.0\n444,45,8.5\n444,46,9.0\n444,47,9.5\n444,48,10.0\n444,49,10.5\n444,50,17.0\n444,51,16.5\n444,52,16.0\n444,53,15.5\n444,54,15.0\n444,55,14.5\n444,56,14.0\n444,57,13.5\n444,58,13.0\n444,59,12.5\n444,60,12.0\n444,61,11.5\n444,62,11.0\n444,63,10.5\n444,64,10.0\n444,65,9.5\n444,66,9.0\n444,67,8.5\n444,68,8.0\n444,69,7.5\n444,70,8.0\n444,71,8.5\n444,72,9.0\n444,73,9.5\n444,74,10.0\n444,75,16.5\n444,76,16.0\n444,77,15.5\n444,78,15.0\n444,79,14.5\n444,80,14.0\n444,81,13.5\n444,82,13.0\n444,83,12.5\n444,84,12.0\n444,85,11.5\n444,86,11.0\n444,87,10.5\n444,88,10.0\n444,89,9.5\n444,90,9.0\n444,91,8.5\n444,92,8.0\n444,93,7.5\n444,94,7.0\n444,95,7.5\n444,96,8.0\n444,97,8.5\n444,98,9.0\n444,99,9.5\n444,100,16.0\n444,101,15.5\n444,102,15.0\n444,103,14.5\n444,104,14.0\n444,105,13.5\n444,106,13.0\n444,107,12.5\n444,108,12.0\n444,109,11.5\n444,110,11.0\n444,111,10.5\n444,112,10.0\n444,113,9.5\n444,114,9.0\n444,115,8.5\n444,116,8.0\n444,117,7.5\n444,118,7.0\n444,119,6.5\n444,120,7.0\n444,121,7.5\n444,122,8.0\n444,123,8.5\n444,124,9.0\n444,125,15.5\n444,126,15.0\n444,127,14.5\n444,128,14.0\n444,129,13.5\n444,130,13.0\n444,131,12.5\n444,132,12.0\n444,133,11.5\n444,134,11.0\n444,135,10.5\n444,136,10.0\n444,137,9.5\n444,138,9.0\n444,139,8.5\n444,140,8.0\n444,141,7.5\n444,142,7.0\n444,143,6.5\n444,144,6.0\n444,145,6.5\n444,146,7.0\n444,147,7.5\n444,148,8.0\n444,149,8.5\n444,150,15.0\n444,151,14.5\n444,152,14.0\n444,153,13.5\n444,154,13.0\n444,155,12.5\n444,156,12.0\n444,157,11.5\n444,158,11.0\n444,159,10.5\n444,160,10.0\n444,161,9.5\n444,162,9.0\n444,163,8.5\n444,164,8.0\n444,165,7.5\n444,166,7.0\n444,167,6.5\n444,168,6.0\n444,169,5.5\n444,170,6.0\n444,171,6.5\n444,172,7.0\n444,173,7.5\n444,174,8.0\n444,175,14.5\n444,176,14.0\n444,177,13.5\n444,178,13.0\n444,179,12.5\n444,180,12.0\n444,181,11.5\n444,182,11.0\n444,183,10.5\n444,184,10.0\n444,185,9.5\n444,186,9.0\n444,187,8.5\n444,188,8.0\n444,189,7.5\n444,190,7.0\n444,191,6.5\n444,192,6.0\n444,193,5.5\n444,194,5.0\n444,195,5.5\n444,196,6.0\n444,197,6.5\n444,198,7.0\n444,199,7.5\n444,200,14.0\n444,201,13.5\n444,202,13.0\n444,203,12.5\n444,204,12.0\n444,205,11.5\n444,206,11.0\n444,207,10.5\n444,208,10.0\n444,209,9.5\n444,210,9.0\n444,211,8.5\n444,212,8.0\n444,213,7.5\n444,214,7.0\n444,215,6.5\n444,216,6.0\n444,217,5.5\n444,218,5.0\n444,219,4.5\n444,220,5.0\n444,221,5.5\n444,222,6.0\n444,223,6.5\n444,224,7.0\n444,225,13.5\n444,226,13.0\n444,227,12.5\n444,228,12.0\n444,229,11.5\n444,230,11.0\n444,231,10.5\n444,232,10.0\n444,233,9.5\n444,234,9.0\n444,235,8.5\n444,236,8.0\n444,237,7.5\n444,238,7.0\n444,239,6.5\n444,240,6.0\n444,241,5.5\n444,242,5.0\n444,243,4.5\n444,244,4.0\n444,245,4.5\n444,246,5.0\n444,247,5.5\n444,248,6.0\n444,249,6.5\n444,250,13.0\n444,251,12.5\n444,252,12.0\n444,253,11.5\n444,254,11.0\n444,255,10.5\n444,256,10.0\n444,257,9.5\n444,258,9.0\n444,259,8.5\n444,260,8.0\n444,261,7.5\n444,262,7.0\n444,263,6.5\n444,264,6.0\n444,265,5.5\n444,266,5.0\n444,267,4.5\n444,268,4.0\n444,269,3.5\n444,270,4.0\n444,271,4.5\n444,272,5.0\n444,273,5.5\n444,274,6.0\n444,275,12.5\n444,276,12.0\n444,277,11.5\n444,278,11.0\n444,279,10.5\n444,280,10.0\n444,281,9.5\n444,282,9.0\n444,283,8.5\n444,284,8.0\n444,285,7.5\n444,286,7.0\n444,287,6.5\n444,288,6.0\n444,289,5.5\n444,290,5.0\n444,291,4.5\n444,292,4.0\n444,293,3.5\n444,294,3.0\n444,295,3.5\n444,296,4.0\n444,297,4.5\n444,298,5.0\n444,299,5.5\n444,300,12.0\n444,301,11.5\n444,302,11.0\n444,303,10.5\n444,304,10.0\n444,305,9.5\n444,306,9.0\n444,307,8.5\n444,308,8.0\n444,309,7.5\n444,310,7.0\n444,311,6.5\n444,312,6.0\n444,313,5.5\n444,314,5.0\n444,315,4.5\n444,316,4.0\n444,317,3.5\n444,318,3.0\n444,319,2.5\n444,320,3.0\n444,321,3.5\n444,322,4.0\n444,323,4.5\n444,324,5.0\n444,325,11.5\n444,326,11.0\n444,327,10.5\n444,328,10.0\n444,329,9.5\n444,330,9.0\n444,331,8.5\n444,332,8.0\n444,333,7.5\n444,334,7.0\n444,335,6.5\n444,336,6.0\n444,337,5.5\n444,338,5.0\n444,339,4.5\n444,340,4.0\n444,341,3.5\n444,342,3.0\n444,343,2.5\n444,344,2.0\n444,345,2.5\n444,346,3.0\n444,347,3.5\n444,348,4.0\n444,349,4.5\n444,350,11.0\n444,351,10.5\n444,352,10.0\n444,353,9.5\n444,354,9.0\n444,355,8.5\n444,356,8.0\n444,357,7.5\n444,358,7.0\n444,359,6.5\n444,360,6.0\n444,361,5.5\n444,362,5.0\n444,363,4.5\n444,364,4.0\n444,365,3.5\n444,366,3.0\n444,367,2.5\n444,368,2.0\n444,369,1.5\n444,370,2.0\n444,371,2.5\n444,372,3.0\n444,373,3.5\n444,374,4.0\n444,375,10.5\n444,376,10.0\n444,377,9.5\n444,378,9.0\n444,379,8.5\n444,380,8.0\n444,381,7.5\n444,382,7.0\n444,383,6.5\n444,384,6.0\n444,385,5.5\n444,386,5.0\n444,387,4.5\n444,388,4.0\n444,389,3.5\n444,390,3.0\n444,391,2.5\n444,392,2.0\n444,393,1.5\n444,394,1.0\n444,395,1.5\n444,396,2.0\n444,397,2.5\n444,398,3.0\n444,399,3.5\n444,400,10.0\n444,401,9.5\n444,402,9.0\n444,403,8.5\n444,404,8.0\n444,405,7.5\n444,406,7.0\n444,407,6.5\n444,408,6.0\n444,409,5.5\n444,410,5.0\n444,411,4.5\n444,412,4.0\n444,413,3.5\n444,414,3.0\n444,415,2.5\n444,416,2.0\n444,417,1.5\n444,418,1.0\n444,419,0.5\n444,420,1.0\n444,421,1.5\n444,422,2.0\n444,423,2.5\n444,424,3.0\n444,425,9.5\n444,426,9.0\n444,427,8.5\n444,428,8.0\n444,429,7.5\n444,430,7.0\n444,431,6.5\n444,432,6.0\n444,433,5.5\n444,434,5.0\n444,435,4.5\n444,436,4.0\n444,437,3.5\n444,438,3.0\n444,439,2.5\n444,440,2.0\n444,441,1.5\n444,442,1.0\n444,443,0.5\n444,444,0\n444,445,0.5\n444,446,1.0\n444,447,1.5\n444,448,2.0\n444,449,2.5\n444,450,10.0\n444,451,9.5\n444,452,9.0\n444,453,8.5\n444,454,8.0\n444,455,7.5\n444,456,7.0\n444,457,6.5\n444,458,6.0\n444,459,5.5\n444,460,5.0\n444,461,4.5\n444,462,4.0\n444,463,3.5\n444,464,3.0\n444,465,2.5\n444,466,2.0\n444,467,1.5\n444,468,1.0\n444,469,0.5\n444,470,1.0\n444,471,1.5\n444,472,2.0\n444,473,2.5\n444,474,3.0\n444,475,10.5\n444,476,10.0\n444,477,9.5\n444,478,9.0\n444,479,8.5\n444,480,8.0\n444,481,7.5\n444,482,7.0\n444,483,6.5\n444,484,6.0\n444,485,5.5\n444,486,5.0\n444,487,4.5\n444,488,4.0\n444,489,3.5\n444,490,3.0\n444,491,2.5\n444,492,2.0\n444,493,1.5\n444,494,1.0\n444,495,1.5\n444,496,2.0\n444,497,2.5\n444,498,3.0\n444,499,3.5\n444,500,11.0\n444,501,10.5\n444,502,10.0\n444,503,9.5\n444,504,9.0\n444,505,8.5\n444,506,8.0\n444,507,7.5\n444,508,7.0\n444,509,6.5\n444,510,6.0\n444,511,5.5\n444,512,5.0\n444,513,4.5\n444,514,4.0\n444,515,3.5\n444,516,3.0\n444,517,2.5\n444,518,2.0\n444,519,1.5\n444,520,2.0\n444,521,2.5\n444,522,3.0\n444,523,3.5\n444,524,4.0\n444,525,11.5\n444,526,11.0\n444,527,10.5\n444,528,10.0\n444,529,9.5\n444,530,9.0\n444,531,8.5\n444,532,8.0\n444,533,7.5\n444,534,7.0\n444,535,6.5\n444,536,6.0\n444,537,5.5\n444,538,5.0\n444,539,4.5\n444,540,4.0\n444,541,3.5\n444,542,3.0\n444,543,2.5\n444,544,2.0\n444,545,2.5\n444,546,3.0\n444,547,3.5\n444,548,4.0\n444,549,4.5\n444,550,12.0\n444,551,11.5\n444,552,11.0\n444,553,10.5\n444,554,10.0\n444,555,9.5\n444,556,9.0\n444,557,8.5\n444,558,8.0\n444,559,7.5\n444,560,7.0\n444,561,6.5\n444,562,6.0\n444,563,5.5\n444,564,5.0\n444,565,4.5\n444,566,4.0\n444,567,3.5\n444,568,3.0\n444,569,2.5\n444,570,3.0\n444,571,3.5\n444,572,4.0\n444,573,4.5\n444,574,5.0\n444,575,12.5\n444,576,12.0\n444,577,11.5\n444,578,11.0\n444,579,10.5\n444,580,10.0\n444,581,9.5\n444,582,9.0\n444,583,8.5\n444,584,8.0\n444,585,7.5\n444,586,7.0\n444,587,6.5\n444,588,6.0\n444,589,5.5\n444,590,5.0\n444,591,4.5\n444,592,4.0\n444,593,3.5\n444,594,3.0\n444,595,3.5\n444,596,4.0\n444,597,4.5\n444,598,5.0\n444,599,5.5\n444,600,13.0\n444,601,12.5\n444,602,12.0\n444,603,11.5\n444,604,11.0\n444,605,10.5\n444,606,10.0\n444,607,9.5\n444,608,9.0\n444,609,8.5\n444,610,8.0\n444,611,7.5\n444,612,7.0\n444,613,6.5\n444,614,6.0\n444,615,5.5\n444,616,5.0\n444,617,4.5\n444,618,4.0\n444,619,3.5\n444,620,4.0\n444,621,4.5\n444,622,5.0\n444,623,5.5\n444,624,6.0\n445,0,18.5\n445,1,18.0\n445,2,17.5\n445,3,17.0\n445,4,16.5\n445,5,16.0\n445,6,15.5\n445,7,15.0\n445,8,14.5\n445,9,14.0\n445,10,13.5\n445,11,13.0\n445,12,12.5\n445,13,12.0\n445,14,11.5\n445,15,11.0\n445,16,10.5\n445,17,10.0\n445,18,9.5\n445,19,9.0\n445,20,8.5\n445,21,9.0\n445,22,9.5\n445,23,10.0\n445,24,10.5\n445,25,18.0\n445,26,17.5\n445,27,17.0\n445,28,16.5\n445,29,16.0\n445,30,15.5\n445,31,15.0\n445,32,14.5\n445,33,14.0\n445,34,13.5\n445,35,13.0\n445,36,12.5\n445,37,12.0\n445,38,11.5\n445,39,11.0\n445,40,10.5\n445,41,10.0\n445,42,9.5\n445,43,9.0\n445,44,8.5\n445,45,8.0\n445,46,8.5\n445,47,9.0\n445,48,9.5\n445,49,10.0\n445,50,17.5\n445,51,17.0\n445,52,16.5\n445,53,16.0\n445,54,15.5\n445,55,15.0\n445,56,14.5\n445,57,14.0\n445,58,13.5\n445,59,13.0\n445,60,12.5\n445,61,12.0\n445,62,11.5\n445,63,11.0\n445,64,10.5\n445,65,10.0\n445,66,9.5\n445,67,9.0\n445,68,8.5\n445,69,8.0\n445,70,7.5\n445,71,8.0\n445,72,8.5\n445,73,9.0\n445,74,9.5\n445,75,17.0\n445,76,16.5\n445,77,16.0\n445,78,15.5\n445,79,15.0\n445,80,14.5\n445,81,14.0\n445,82,13.5\n445,83,13.0\n445,84,12.5\n445,85,12.0\n445,86,11.5\n445,87,11.0\n445,88,10.5\n445,89,10.0\n445,90,9.5\n445,91,9.0\n445,92,8.5\n445,93,8.0\n445,94,7.5\n445,95,7.0\n445,96,7.5\n445,97,8.0\n445,98,8.5\n445,99,9.0\n445,100,16.5\n445,101,16.0\n445,102,15.5\n445,103,15.0\n445,104,14.5\n445,105,14.0\n445,106,13.5\n445,107,13.0\n445,108,12.5\n445,109,12.0\n445,110,11.5\n445,111,11.0\n445,112,10.5\n445,113,10.0\n445,114,9.5\n445,115,9.0\n445,116,8.5\n445,117,8.0\n445,118,7.5\n445,119,7.0\n445,120,6.5\n445,121,7.0\n445,122,7.5\n445,123,8.0\n445,124,8.5\n445,125,16.0\n445,126,15.5\n445,127,15.0\n445,128,14.5\n445,129,14.0\n445,130,13.5\n445,131,13.0\n445,132,12.5\n445,133,12.0\n445,134,11.5\n445,135,11.0\n445,136,10.5\n445,137,10.0\n445,138,9.5\n445,139,9.0\n445,140,8.5\n445,141,8.0\n445,142,7.5\n445,143,7.0\n445,144,6.5\n445,145,6.0\n445,146,6.5\n445,147,7.0\n445,148,7.5\n445,149,8.0\n445,150,15.5\n445,151,15.0\n445,152,14.5\n445,153,14.0\n445,154,13.5\n445,155,13.0\n445,156,12.5\n445,157,12.0\n445,158,11.5\n445,159,11.0\n445,160,10.5\n445,161,10.0\n445,162,9.5\n445,163,9.0\n445,164,8.5\n445,165,8.0\n445,166,7.5\n445,167,7.0\n445,168,6.5\n445,169,6.0\n445,170,5.5\n445,171,6.0\n445,172,6.5\n445,173,7.0\n445,174,7.5\n445,175,15.0\n445,176,14.5\n445,177,14.0\n445,178,13.5\n445,179,13.0\n445,180,12.5\n445,181,12.0\n445,182,11.5\n445,183,11.0\n445,184,10.5\n445,185,10.0\n445,186,9.5\n445,187,9.0\n445,188,8.5\n445,189,8.0\n445,190,7.5\n445,191,7.0\n445,192,6.5\n445,193,6.0\n445,194,5.5\n445,195,5.0\n445,196,5.5\n445,197,6.0\n445,198,6.5\n445,199,7.0\n445,200,14.5\n445,201,14.0\n445,202,13.5\n445,203,13.0\n445,204,12.5\n445,205,12.0\n445,206,11.5\n445,207,11.0\n445,208,10.5\n445,209,10.0\n445,210,9.5\n445,211,9.0\n445,212,8.5\n445,213,8.0\n445,214,7.5\n445,215,7.0\n445,216,6.5\n445,217,6.0\n445,218,5.5\n445,219,5.0\n445,220,4.5\n445,221,5.0\n445,222,5.5\n445,223,6.0\n445,224,6.5\n445,225,14.0\n445,226,13.5\n445,227,13.0\n445,228,12.5\n445,229,12.0\n445,230,11.5\n445,231,11.0\n445,232,10.5\n445,233,10.0\n445,234,9.5\n445,235,9.0\n445,236,8.5\n445,237,8.0\n445,238,7.5\n445,239,7.0\n445,240,6.5\n445,241,6.0\n445,242,5.5\n445,243,5.0\n445,244,4.5\n445,245,4.0\n445,246,4.5\n445,247,5.0\n445,248,5.5\n445,249,6.0\n445,250,13.5\n445,251,13.0\n445,252,12.5\n445,253,12.0\n445,254,11.5\n445,255,11.0\n445,256,10.5\n445,257,10.0\n445,258,9.5\n445,259,9.0\n445,260,8.5\n445,261,8.0\n445,262,7.5\n445,263,7.0\n445,264,6.5\n445,265,6.0\n445,266,5.5\n445,267,5.0\n445,268,4.5\n445,269,4.0\n445,270,3.5\n445,271,4.0\n445,272,4.5\n445,273,5.0\n445,274,5.5\n445,275,13.0\n445,276,12.5\n445,277,12.0\n445,278,11.5\n445,279,11.0\n445,280,10.5\n445,281,10.0\n445,282,9.5\n445,283,9.0\n445,284,8.5\n445,285,8.0\n445,286,7.5\n445,287,7.0\n445,288,6.5\n445,289,6.0\n445,290,5.5\n445,291,5.0\n445,292,4.5\n445,293,4.0\n445,294,3.5\n445,295,3.0\n445,296,3.5\n445,297,4.0\n445,298,4.5\n445,299,5.0\n445,300,12.5\n445,301,12.0\n445,302,11.5\n445,303,11.0\n445,304,10.5\n445,305,10.0\n445,306,9.5\n445,307,9.0\n445,308,8.5\n445,309,8.0\n445,310,7.5\n445,311,7.0\n445,312,6.5\n445,313,6.0\n445,314,5.5\n445,315,5.0\n445,316,4.5\n445,317,4.0\n445,318,3.5\n445,319,3.0\n445,320,2.5\n445,321,3.0\n445,322,3.5\n445,323,4.0\n445,324,4.5\n445,325,12.0\n445,326,11.5\n445,327,11.0\n445,328,10.5\n445,329,10.0\n445,330,9.5\n445,331,9.0\n445,332,8.5\n445,333,8.0\n445,334,7.5\n445,335,7.0\n445,336,6.5\n445,337,6.0\n445,338,5.5\n445,339,5.0\n445,340,4.5\n445,341,4.0\n445,342,3.5\n445,343,3.0\n445,344,2.5\n445,345,2.0\n445,346,2.5\n445,347,3.0\n445,348,3.5\n445,349,4.0\n445,350,11.5\n445,351,11.0\n445,352,10.5\n445,353,10.0\n445,354,9.5\n445,355,9.0\n445,356,8.5\n445,357,8.0\n445,358,7.5\n445,359,7.0\n445,360,6.5\n445,361,6.0\n445,362,5.5\n445,363,5.0\n445,364,4.5\n445,365,4.0\n445,366,3.5\n445,367,3.0\n445,368,2.5\n445,369,2.0\n445,370,1.5\n445,371,2.0\n445,372,2.5\n445,373,3.0\n445,374,3.5\n445,375,11.0\n445,376,10.5\n445,377,10.0\n445,378,9.5\n445,379,9.0\n445,380,8.5\n445,381,8.0\n445,382,7.5\n445,383,7.0\n445,384,6.5\n445,385,6.0\n445,386,5.5\n445,387,5.0\n445,388,4.5\n445,389,4.0\n445,390,3.5\n445,391,3.0\n445,392,2.5\n445,393,2.0\n445,394,1.5\n445,395,1.0\n445,396,1.5\n445,397,2.0\n445,398,2.5\n445,399,3.0\n445,400,10.5\n445,401,10.0\n445,402,9.5\n445,403,9.0\n445,404,8.5\n445,405,8.0\n445,406,7.5\n445,407,7.0\n445,408,6.5\n445,409,6.0\n445,410,5.5\n445,411,5.0\n445,412,4.5\n445,413,4.0\n445,414,3.5\n445,415,3.0\n445,416,2.5\n445,417,2.0\n445,418,1.5\n445,419,1.0\n445,420,0.5\n445,421,1.0\n445,422,1.5\n445,423,2.0\n445,424,2.5\n445,425,10.0\n445,426,9.5\n445,427,9.0\n445,428,8.5\n445,429,8.0\n445,430,7.5\n445,431,7.0\n445,432,6.5\n445,433,6.0\n445,434,5.5\n445,435,5.0\n445,436,4.5\n445,437,4.0\n445,438,3.5\n445,439,3.0\n445,440,2.5\n445,441,2.0\n445,442,1.5\n445,443,1.0\n445,444,0.5\n445,445,0\n445,446,0.5\n445,447,1.0\n445,448,1.5\n445,449,2.0\n445,450,10.5\n445,451,10.0\n445,452,9.5\n445,453,9.0\n445,454,8.5\n445,455,8.0\n445,456,7.5\n445,457,7.0\n445,458,6.5\n445,459,6.0\n445,460,5.5\n445,461,5.0\n445,462,4.5\n445,463,4.0\n445,464,3.5\n445,465,3.0\n445,466,2.5\n445,467,2.0\n445,468,1.5\n445,469,1.0\n445,470,0.5\n445,471,1.0\n445,472,1.5\n445,473,2.0\n445,474,2.5\n445,475,11.0\n445,476,10.5\n445,477,10.0\n445,478,9.5\n445,479,9.0\n445,480,8.5\n445,481,8.0\n445,482,7.5\n445,483,7.0\n445,484,6.5\n445,485,6.0\n445,486,5.5\n445,487,5.0\n445,488,4.5\n445,489,4.0\n445,490,3.5\n445,491,3.0\n445,492,2.5\n445,493,2.0\n445,494,1.5\n445,495,1.0\n445,496,1.5\n445,497,2.0\n445,498,2.5\n445,499,3.0\n445,500,11.5\n445,501,11.0\n445,502,10.5\n445,503,10.0\n445,504,9.5\n445,505,9.0\n445,506,8.5\n445,507,8.0\n445,508,7.5\n445,509,7.0\n445,510,6.5\n445,511,6.0\n445,512,5.5\n445,513,5.0\n445,514,4.5\n445,515,4.0\n445,516,3.5\n445,517,3.0\n445,518,2.5\n445,519,2.0\n445,520,1.5\n445,521,2.0\n445,522,2.5\n445,523,3.0\n445,524,3.5\n445,525,12.0\n445,526,11.5\n445,527,11.0\n445,528,10.5\n445,529,10.0\n445,530,9.5\n445,531,9.0\n445,532,8.5\n445,533,8.0\n445,534,7.5\n445,535,7.0\n445,536,6.5\n445,537,6.0\n445,538,5.5\n445,539,5.0\n445,540,4.5\n445,541,4.0\n445,542,3.5\n445,543,3.0\n445,544,2.5\n445,545,2.0\n445,546,2.5\n445,547,3.0\n445,548,3.5\n445,549,4.0\n445,550,12.5\n445,551,12.0\n445,552,11.5\n445,553,11.0\n445,554,10.5\n445,555,10.0\n445,556,9.5\n445,557,9.0\n445,558,8.5\n445,559,8.0\n445,560,7.5\n445,561,7.0\n445,562,6.5\n445,563,6.0\n445,564,5.5\n445,565,5.0\n445,566,4.5\n445,567,4.0\n445,568,3.5\n445,569,3.0\n445,570,2.5\n445,571,3.0\n445,572,3.5\n445,573,4.0\n445,574,4.5\n445,575,13.0\n445,576,12.5\n445,577,12.0\n445,578,11.5\n445,579,11.0\n445,580,10.5\n445,581,10.0\n445,582,9.5\n445,583,9.0\n445,584,8.5\n445,585,8.0\n445,586,7.5\n445,587,7.0\n445,588,6.5\n445,589,6.0\n445,590,5.5\n445,591,5.0\n445,592,4.5\n445,593,4.0\n445,594,3.5\n445,595,3.0\n445,596,3.5\n445,597,4.0\n445,598,4.5\n445,599,5.0\n445,600,13.5\n445,601,13.0\n445,602,12.5\n445,603,12.0\n445,604,11.5\n445,605,11.0\n445,606,10.5\n445,607,10.0\n445,608,9.5\n445,609,9.0\n445,610,8.5\n445,611,8.0\n445,612,7.5\n445,613,7.0\n445,614,6.5\n445,615,6.0\n445,616,5.5\n445,617,5.0\n445,618,4.5\n445,619,4.0\n445,620,3.5\n445,621,4.0\n445,622,4.5\n445,623,5.0\n445,624,5.5\n446,0,19.0\n446,1,18.5\n446,2,18.0\n446,3,17.5\n446,4,17.0\n446,5,16.5\n446,6,16.0\n446,7,15.5\n446,8,15.0\n446,9,14.5\n446,10,14.0\n446,11,13.5\n446,12,13.0\n446,13,12.5\n446,14,12.0\n446,15,11.5\n446,16,11.0\n446,17,10.5\n446,18,10.0\n446,19,9.5\n446,20,9.0\n446,21,8.5\n446,22,9.0\n446,23,9.5\n446,24,10.0\n446,25,18.5\n446,26,18.0\n446,27,17.5\n446,28,17.0\n446,29,16.5\n446,30,16.0\n446,31,15.5\n446,32,15.0\n446,33,14.5\n446,34,14.0\n446,35,13.5\n446,36,13.0\n446,37,12.5\n446,38,12.0\n446,39,11.5\n446,40,11.0\n446,41,10.5\n446,42,10.0\n446,43,9.5\n446,44,9.0\n446,45,8.5\n446,46,8.0\n446,47,8.5\n446,48,9.0\n446,49,9.5\n446,50,18.0\n446,51,17.5\n446,52,17.0\n446,53,16.5\n446,54,16.0\n446,55,15.5\n446,56,15.0\n446,57,14.5\n446,58,14.0\n446,59,13.5\n446,60,13.0\n446,61,12.5\n446,62,12.0\n446,63,11.5\n446,64,11.0\n446,65,10.5\n446,66,10.0\n446,67,9.5\n446,68,9.0\n446,69,8.5\n446,70,8.0\n446,71,7.5\n446,72,8.0\n446,73,8.5\n446,74,9.0\n446,75,17.5\n446,76,17.0\n446,77,16.5\n446,78,16.0\n446,79,15.5\n446,80,15.0\n446,81,14.5\n446,82,14.0\n446,83,13.5\n446,84,13.0\n446,85,12.5\n446,86,12.0\n446,87,11.5\n446,88,11.0\n446,89,10.5\n446,90,10.0\n446,91,9.5\n446,92,9.0\n446,93,8.5\n446,94,8.0\n446,95,7.5\n446,96,7.0\n446,97,7.5\n446,98,8.0\n446,99,8.5\n446,100,17.0\n446,101,16.5\n446,102,16.0\n446,103,15.5\n446,104,15.0\n446,105,14.5\n446,106,14.0\n446,107,13.5\n446,108,13.0\n446,109,12.5\n446,110,12.0\n446,111,11.5\n446,112,11.0\n446,113,10.5\n446,114,10.0\n446,115,9.5\n446,116,9.0\n446,117,8.5\n446,118,8.0\n446,119,7.5\n446,120,7.0\n446,121,6.5\n446,122,7.0\n446,123,7.5\n446,124,8.0\n446,125,16.5\n446,126,16.0\n446,127,15.5\n446,128,15.0\n446,129,14.5\n446,130,14.0\n446,131,13.5\n446,132,13.0\n446,133,12.5\n446,134,12.0\n446,135,11.5\n446,136,11.0\n446,137,10.5\n446,138,10.0\n446,139,9.5\n446,140,9.0\n446,141,8.5\n446,142,8.0\n446,143,7.5\n446,144,7.0\n446,145,6.5\n446,146,6.0\n446,147,6.5\n446,148,7.0\n446,149,7.5\n446,150,16.0\n446,151,15.5\n446,152,15.0\n446,153,14.5\n446,154,14.0\n446,155,13.5\n446,156,13.0\n446,157,12.5\n446,158,12.0\n446,159,11.5\n446,160,11.0\n446,161,10.5\n446,162,10.0\n446,163,9.5\n446,164,9.0\n446,165,8.5\n446,166,8.0\n446,167,7.5\n446,168,7.0\n446,169,6.5\n446,170,6.0\n446,171,5.5\n446,172,6.0\n446,173,6.5\n446,174,7.0\n446,175,15.5\n446,176,15.0\n446,177,14.5\n446,178,14.0\n446,179,13.5\n446,180,13.0\n446,181,12.5\n446,182,12.0\n446,183,11.5\n446,184,11.0\n446,185,10.5\n446,186,10.0\n446,187,9.5\n446,188,9.0\n446,189,8.5\n446,190,8.0\n446,191,7.5\n446,192,7.0\n446,193,6.5\n446,194,6.0\n446,195,5.5\n446,196,5.0\n446,197,5.5\n446,198,6.0\n446,199,6.5\n446,200,15.0\n446,201,14.5\n446,202,14.0\n446,203,13.5\n446,204,13.0\n446,205,12.5\n446,206,12.0\n446,207,11.5\n446,208,11.0\n446,209,10.5\n446,210,10.0\n446,211,9.5\n446,212,9.0\n446,213,8.5\n446,214,8.0\n446,215,7.5\n446,216,7.0\n446,217,6.5\n446,218,6.0\n446,219,5.5\n446,220,5.0\n446,221,4.5\n446,222,5.0\n446,223,5.5\n446,224,6.0\n446,225,14.5\n446,226,14.0\n446,227,13.5\n446,228,13.0\n446,229,12.5\n446,230,12.0\n446,231,11.5\n446,232,11.0\n446,233,10.5\n446,234,10.0\n446,235,9.5\n446,236,9.0\n446,237,8.5\n446,238,8.0\n446,239,7.5\n446,240,7.0\n446,241,6.5\n446,242,6.0\n446,243,5.5\n446,244,5.0\n446,245,4.5\n446,246,4.0\n446,247,4.5\n446,248,5.0\n446,249,5.5\n446,250,14.0\n446,251,13.5\n446,252,13.0\n446,253,12.5\n446,254,12.0\n446,255,11.5\n446,256,11.0\n446,257,10.5\n446,258,10.0\n446,259,9.5\n446,260,9.0\n446,261,8.5\n446,262,8.0\n446,263,7.5\n446,264,7.0\n446,265,6.5\n446,266,6.0\n446,267,5.5\n446,268,5.0\n446,269,4.5\n446,270,4.0\n446,271,3.5\n446,272,4.0\n446,273,4.5\n446,274,5.0\n446,275,13.5\n446,276,13.0\n446,277,12.5\n446,278,12.0\n446,279,11.5\n446,280,11.0\n446,281,10.5\n446,282,10.0\n446,283,9.5\n446,284,9.0\n446,285,8.5\n446,286,8.0\n446,287,7.5\n446,288,7.0\n446,289,6.5\n446,290,6.0\n446,291,5.5\n446,292,5.0\n446,293,4.5\n446,294,4.0\n446,295,3.5\n446,296,3.0\n446,297,3.5\n446,298,4.0\n446,299,4.5\n446,300,13.0\n446,301,12.5\n446,302,12.0\n446,303,11.5\n446,304,11.0\n446,305,10.5\n446,306,10.0\n446,307,9.5\n446,308,9.0\n446,309,8.5\n446,310,8.0\n446,311,7.5\n446,312,7.0\n446,313,6.5\n446,314,6.0\n446,315,5.5\n446,316,5.0\n446,317,4.5\n446,318,4.0\n446,319,3.5\n446,320,3.0\n446,321,2.5\n446,322,3.0\n446,323,3.5\n446,324,4.0\n446,325,12.5\n446,326,12.0\n446,327,11.5\n446,328,11.0\n446,329,10.5\n446,330,10.0\n446,331,9.5\n446,332,9.0\n446,333,8.5\n446,334,8.0\n446,335,7.5\n446,336,7.0\n446,337,6.5\n446,338,6.0\n446,339,5.5\n446,340,5.0\n446,341,4.5\n446,342,4.0\n446,343,3.5\n446,344,3.0\n446,345,2.5\n446,346,2.0\n446,347,2.5\n446,348,3.0\n446,349,3.5\n446,350,12.0\n446,351,11.5\n446,352,11.0\n446,353,10.5\n446,354,10.0\n446,355,9.5\n446,356,9.0\n446,357,8.5\n446,358,8.0\n446,359,7.5\n446,360,7.0\n446,361,6.5\n446,362,6.0\n446,363,5.5\n446,364,5.0\n446,365,4.5\n446,366,4.0\n446,367,3.5\n446,368,3.0\n446,369,2.5\n446,370,2.0\n446,371,1.5\n446,372,2.0\n446,373,2.5\n446,374,3.0\n446,375,11.5\n446,376,11.0\n446,377,10.5\n446,378,10.0\n446,379,9.5\n446,380,9.0\n446,381,8.5\n446,382,8.0\n446,383,7.5\n446,384,7.0\n446,385,6.5\n446,386,6.0\n446,387,5.5\n446,388,5.0\n446,389,4.5\n446,390,4.0\n446,391,3.5\n446,392,3.0\n446,393,2.5\n446,394,2.0\n446,395,1.5\n446,396,1.0\n446,397,1.5\n446,398,2.0\n446,399,2.5\n446,400,11.0\n446,401,10.5\n446,402,10.0\n446,403,9.5\n446,404,9.0\n446,405,8.5\n446,406,8.0\n446,407,7.5\n446,408,7.0\n446,409,6.5\n446,410,6.0\n446,411,5.5\n446,412,5.0\n446,413,4.5\n446,414,4.0\n446,415,3.5\n446,416,3.0\n446,417,2.5\n446,418,2.0\n446,419,1.5\n446,420,1.0\n446,421,0.5\n446,422,1.0\n446,423,1.5\n446,424,2.0\n446,425,10.5\n446,426,10.0\n446,427,9.5\n446,428,9.0\n446,429,8.5\n446,430,8.0\n446,431,7.5\n446,432,7.0\n446,433,6.5\n446,434,6.0\n446,435,5.5\n446,436,5.0\n446,437,4.5\n446,438,4.0\n446,439,3.5\n446,440,3.0\n446,441,2.5\n446,442,2.0\n446,443,1.5\n446,444,1.0\n446,445,0.5\n446,446,0\n446,447,0.5\n446,448,1.0\n446,449,1.5\n446,450,11.0\n446,451,10.5\n446,452,10.0\n446,453,9.5\n446,454,9.0\n446,455,8.5\n446,456,8.0\n446,457,7.5\n446,458,7.0\n446,459,6.5\n446,460,6.0\n446,461,5.5\n446,462,5.0\n446,463,4.5\n446,464,4.0\n446,465,3.5\n446,466,3.0\n446,467,2.5\n446,468,2.0\n446,469,1.5\n446,470,1.0\n446,471,0.5\n446,472,1.0\n446,473,1.5\n446,474,2.0\n446,475,11.5\n446,476,11.0\n446,477,10.5\n446,478,10.0\n446,479,9.5\n446,480,9.0\n446,481,8.5\n446,482,8.0\n446,483,7.5\n446,484,7.0\n446,485,6.5\n446,486,6.0\n446,487,5.5\n446,488,5.0\n446,489,4.5\n446,490,4.0\n446,491,3.5\n446,492,3.0\n446,493,2.5\n446,494,2.0\n446,495,1.5\n446,496,1.0\n446,497,1.5\n446,498,2.0\n446,499,2.5\n446,500,12.0\n446,501,11.5\n446,502,11.0\n446,503,10.5\n446,504,10.0\n446,505,9.5\n446,506,9.0\n446,507,8.5\n446,508,8.0\n446,509,7.5\n446,510,7.0\n446,511,6.5\n446,512,6.0\n446,513,5.5\n446,514,5.0\n446,515,4.5\n446,516,4.0\n446,517,3.5\n446,518,3.0\n446,519,2.5\n446,520,2.0\n446,521,1.5\n446,522,2.0\n446,523,2.5\n446,524,3.0\n446,525,12.5\n446,526,12.0\n446,527,11.5\n446,528,11.0\n446,529,10.5\n446,530,10.0\n446,531,9.5\n446,532,9.0\n446,533,8.5\n446,534,8.0\n446,535,7.5\n446,536,7.0\n446,537,6.5\n446,538,6.0\n446,539,5.5\n446,540,5.0\n446,541,4.5\n446,542,4.0\n446,543,3.5\n446,544,3.0\n446,545,2.5\n446,546,2.0\n446,547,2.5\n446,548,3.0\n446,549,3.5\n446,550,13.0\n446,551,12.5\n446,552,12.0\n446,553,11.5\n446,554,11.0\n446,555,10.5\n446,556,10.0\n446,557,9.5\n446,558,9.0\n446,559,8.5\n446,560,8.0\n446,561,7.5\n446,562,7.0\n446,563,6.5\n446,564,6.0\n446,565,5.5\n446,566,5.0\n446,567,4.5\n446,568,4.0\n446,569,3.5\n446,570,3.0\n446,571,2.5\n446,572,3.0\n446,573,3.5\n446,574,4.0\n446,575,13.5\n446,576,13.0\n446,577,12.5\n446,578,12.0\n446,579,11.5\n446,580,11.0\n446,581,10.5\n446,582,10.0\n446,583,9.5\n446,584,9.0\n446,585,8.5\n446,586,8.0\n446,587,7.5\n446,588,7.0\n446,589,6.5\n446,590,6.0\n446,591,5.5\n446,592,5.0\n446,593,4.5\n446,594,4.0\n446,595,3.5\n446,596,3.0\n446,597,3.5\n446,598,4.0\n446,599,4.5\n446,600,14.0\n446,601,13.5\n446,602,13.0\n446,603,12.5\n446,604,12.0\n446,605,11.5\n446,606,11.0\n446,607,10.5\n446,608,10.0\n446,609,9.5\n446,610,9.0\n446,611,8.5\n446,612,8.0\n446,613,7.5\n446,614,7.0\n446,615,6.5\n446,616,6.0\n446,617,5.5\n446,618,5.0\n446,619,4.5\n446,620,4.0\n446,621,3.5\n446,622,4.0\n446,623,4.5\n446,624,5.0\n447,0,19.5\n447,1,19.0\n447,2,18.5\n447,3,18.0\n447,4,17.5\n447,5,17.0\n447,6,16.5\n447,7,16.0\n447,8,15.5\n447,9,15.0\n447,10,14.5\n447,11,14.0\n447,12,13.5\n447,13,13.0\n447,14,12.5\n447,15,12.0\n447,16,11.5\n447,17,11.0\n447,18,10.5\n447,19,10.0\n447,20,9.5\n447,21,9.0\n447,22,8.5\n447,23,9.0\n447,24,9.5\n447,25,19.0\n447,26,18.5\n447,27,18.0\n447,28,17.5\n447,29,17.0\n447,30,16.5\n447,31,16.0\n447,32,15.5\n447,33,15.0\n447,34,14.5\n447,35,14.0\n447,36,13.5\n447,37,13.0\n447,38,12.5\n447,39,12.0\n447,40,11.5\n447,41,11.0\n447,42,10.5\n447,43,10.0\n447,44,9.5\n447,45,9.0\n447,46,8.5\n447,47,8.0\n447,48,8.5\n447,49,9.0\n447,50,18.5\n447,51,18.0\n447,52,17.5\n447,53,17.0\n447,54,16.5\n447,55,16.0\n447,56,15.5\n447,57,15.0\n447,58,14.5\n447,59,14.0\n447,60,13.5\n447,61,13.0\n447,62,12.5\n447,63,12.0\n447,64,11.5\n447,65,11.0\n447,66,10.5\n447,67,10.0\n447,68,9.5\n447,69,9.0\n447,70,8.5\n447,71,8.0\n447,72,7.5\n447,73,8.0\n447,74,8.5\n447,75,18.0\n447,76,17.5\n447,77,17.0\n447,78,16.5\n447,79,16.0\n447,80,15.5\n447,81,15.0\n447,82,14.5\n447,83,14.0\n447,84,13.5\n447,85,13.0\n447,86,12.5\n447,87,12.0\n447,88,11.5\n447,89,11.0\n447,90,10.5\n447,91,10.0\n447,92,9.5\n447,93,9.0\n447,94,8.5\n447,95,8.0\n447,96,7.5\n447,97,7.0\n447,98,7.5\n447,99,8.0\n447,100,17.5\n447,101,17.0\n447,102,16.5\n447,103,16.0\n447,104,15.5\n447,105,15.0\n447,106,14.5\n447,107,14.0\n447,108,13.5\n447,109,13.0\n447,110,12.5\n447,111,12.0\n447,112,11.5\n447,113,11.0\n447,114,10.5\n447,115,10.0\n447,116,9.5\n447,117,9.0\n447,118,8.5\n447,119,8.0\n447,120,7.5\n447,121,7.0\n447,122,6.5\n447,123,7.0\n447,124,7.5\n447,125,17.0\n447,126,16.5\n447,127,16.0\n447,128,15.5\n447,129,15.0\n447,130,14.5\n447,131,14.0\n447,132,13.5\n447,133,13.0\n447,134,12.5\n447,135,12.0\n447,136,11.5\n447,137,11.0\n447,138,10.5\n447,139,10.0\n447,140,9.5\n447,141,9.0\n447,142,8.5\n447,143,8.0\n447,144,7.5\n447,145,7.0\n447,146,6.5\n447,147,6.0\n447,148,6.5\n447,149,7.0\n447,150,16.5\n447,151,16.0\n447,152,15.5\n447,153,15.0\n447,154,14.5\n447,155,14.0\n447,156,13.5\n447,157,13.0\n447,158,12.5\n447,159,12.0\n447,160,11.5\n447,161,11.0\n447,162,10.5\n447,163,10.0\n447,164,9.5\n447,165,9.0\n447,166,8.5\n447,167,8.0\n447,168,7.5\n447,169,7.0\n447,170,6.5\n447,171,6.0\n447,172,5.5\n447,173,6.0\n447,174,6.5\n447,175,16.0\n447,176,15.5\n447,177,15.0\n447,178,14.5\n447,179,14.0\n447,180,13.5\n447,181,13.0\n447,182,12.5\n447,183,12.0\n447,184,11.5\n447,185,11.0\n447,186,10.5\n447,187,10.0\n447,188,9.5\n447,189,9.0\n447,190,8.5\n447,191,8.0\n447,192,7.5\n447,193,7.0\n447,194,6.5\n447,195,6.0\n447,196,5.5\n447,197,5.0\n447,198,5.5\n447,199,6.0\n447,200,15.5\n447,201,15.0\n447,202,14.5\n447,203,14.0\n447,204,13.5\n447,205,13.0\n447,206,12.5\n447,207,12.0\n447,208,11.5\n447,209,11.0\n447,210,10.5\n447,211,10.0\n447,212,9.5\n447,213,9.0\n447,214,8.5\n447,215,8.0\n447,216,7.5\n447,217,7.0\n447,218,6.5\n447,219,6.0\n447,220,5.5\n447,221,5.0\n447,222,4.5\n447,223,5.0\n447,224,5.5\n447,225,15.0\n447,226,14.5\n447,227,14.0\n447,228,13.5\n447,229,13.0\n447,230,12.5\n447,231,12.0\n447,232,11.5\n447,233,11.0\n447,234,10.5\n447,235,10.0\n447,236,9.5\n447,237,9.0\n447,238,8.5\n447,239,8.0\n447,240,7.5\n447,241,7.0\n447,242,6.5\n447,243,6.0\n447,244,5.5\n447,245,5.0\n447,246,4.5\n447,247,4.0\n447,248,4.5\n447,249,5.0\n447,250,14.5\n447,251,14.0\n447,252,13.5\n447,253,13.0\n447,254,12.5\n447,255,12.0\n447,256,11.5\n447,257,11.0\n447,258,10.5\n447,259,10.0\n447,260,9.5\n447,261,9.0\n447,262,8.5\n447,263,8.0\n447,264,7.5\n447,265,7.0\n447,266,6.5\n447,267,6.0\n447,268,5.5\n447,269,5.0\n447,270,4.5\n447,271,4.0\n447,272,3.5\n447,273,4.0\n447,274,4.5\n447,275,14.0\n447,276,13.5\n447,277,13.0\n447,278,12.5\n447,279,12.0\n447,280,11.5\n447,281,11.0\n447,282,10.5\n447,283,10.0\n447,284,9.5\n447,285,9.0\n447,286,8.5\n447,287,8.0\n447,288,7.5\n447,289,7.0\n447,290,6.5\n447,291,6.0\n447,292,5.5\n447,293,5.0\n447,294,4.5\n447,295,4.0\n447,296,3.5\n447,297,3.0\n447,298,3.5\n447,299,4.0\n447,300,13.5\n447,301,13.0\n447,302,12.5\n447,303,12.0\n447,304,11.5\n447,305,11.0\n447,306,10.5\n447,307,10.0\n447,308,9.5\n447,309,9.0\n447,310,8.5\n447,311,8.0\n447,312,7.5\n447,313,7.0\n447,314,6.5\n447,315,6.0\n447,316,5.5\n447,317,5.0\n447,318,4.5\n447,319,4.0\n447,320,3.5\n447,321,3.0\n447,322,2.5\n447,323,3.0\n447,324,3.5\n447,325,13.0\n447,326,12.5\n447,327,12.0\n447,328,11.5\n447,329,11.0\n447,330,10.5\n447,331,10.0\n447,332,9.5\n447,333,9.0\n447,334,8.5\n447,335,8.0\n447,336,7.5\n447,337,7.0\n447,338,6.5\n447,339,6.0\n447,340,5.5\n447,341,5.0\n447,342,4.5\n447,343,4.0\n447,344,3.5\n447,345,3.0\n447,346,2.5\n447,347,2.0\n447,348,2.5\n447,349,3.0\n447,350,12.5\n447,351,12.0\n447,352,11.5\n447,353,11.0\n447,354,10.5\n447,355,10.0\n447,356,9.5\n447,357,9.0\n447,358,8.5\n447,359,8.0\n447,360,7.5\n447,361,7.0\n447,362,6.5\n447,363,6.0\n447,364,5.5\n447,365,5.0\n447,366,4.5\n447,367,4.0\n447,368,3.5\n447,369,3.0\n447,370,2.5\n447,371,2.0\n447,372,1.5\n447,373,2.0\n447,374,2.5\n447,375,12.0\n447,376,11.5\n447,377,11.0\n447,378,10.5\n447,379,10.0\n447,380,9.5\n447,381,9.0\n447,382,8.5\n447,383,8.0\n447,384,7.5\n447,385,7.0\n447,386,6.5\n447,387,6.0\n447,388,5.5\n447,389,5.0\n447,390,4.5\n447,391,4.0\n447,392,3.5\n447,393,3.0\n447,394,2.5\n447,395,2.0\n447,396,1.5\n447,397,1.0\n447,398,1.5\n447,399,2.0\n447,400,11.5\n447,401,11.0\n447,402,10.5\n447,403,10.0\n447,404,9.5\n447,405,9.0\n447,406,8.5\n447,407,8.0\n447,408,7.5\n447,409,7.0\n447,410,6.5\n447,411,6.0\n447,412,5.5\n447,413,5.0\n447,414,4.5\n447,415,4.0\n447,416,3.5\n447,417,3.0\n447,418,2.5\n447,419,2.0\n447,420,1.5\n447,421,1.0\n447,422,0.5\n447,423,1.0\n447,424,1.5\n447,425,11.0\n447,426,10.5\n447,427,10.0\n447,428,9.5\n447,429,9.0\n447,430,8.5\n447,431,8.0\n447,432,7.5\n447,433,7.0\n447,434,6.5\n447,435,6.0\n447,436,5.5\n447,437,5.0\n447,438,4.5\n447,439,4.0\n447,440,3.5\n447,441,3.0\n447,442,2.5\n447,443,2.0\n447,444,1.5\n447,445,1.0\n447,446,0.5\n447,447,0\n447,448,0.5\n447,449,1.0\n447,450,11.5\n447,451,11.0\n447,452,10.5\n447,453,10.0\n447,454,9.5\n447,455,9.0\n447,456,8.5\n447,457,8.0\n447,458,7.5\n447,459,7.0\n447,460,6.5\n447,461,6.0\n447,462,5.5\n447,463,5.0\n447,464,4.5\n447,465,4.0\n447,466,3.5\n447,467,3.0\n447,468,2.5\n447,469,2.0\n447,470,1.5\n447,471,1.0\n447,472,0.5\n447,473,1.0\n447,474,1.5\n447,475,12.0\n447,476,11.5\n447,477,11.0\n447,478,10.5\n447,479,10.0\n447,480,9.5\n447,481,9.0\n447,482,8.5\n447,483,8.0\n447,484,7.5\n447,485,7.0\n447,486,6.5\n447,487,6.0\n447,488,5.5\n447,489,5.0\n447,490,4.5\n447,491,4.0\n447,492,3.5\n447,493,3.0\n447,494,2.5\n447,495,2.0\n447,496,1.5\n447,497,1.0\n447,498,1.5\n447,499,2.0\n447,500,12.5\n447,501,12.0\n447,502,11.5\n447,503,11.0\n447,504,10.5\n447,505,10.0\n447,506,9.5\n447,507,9.0\n447,508,8.5\n447,509,8.0\n447,510,7.5\n447,511,7.0\n447,512,6.5\n447,513,6.0\n447,514,5.5\n447,515,5.0\n447,516,4.5\n447,517,4.0\n447,518,3.5\n447,519,3.0\n447,520,2.5\n447,521,2.0\n447,522,1.5\n447,523,2.0\n447,524,2.5\n447,525,13.0\n447,526,12.5\n447,527,12.0\n447,528,11.5\n447,529,11.0\n447,530,10.5\n447,531,10.0\n447,532,9.5\n447,533,9.0\n447,534,8.5\n447,535,8.0\n447,536,7.5\n447,537,7.0\n447,538,6.5\n447,539,6.0\n447,540,5.5\n447,541,5.0\n447,542,4.5\n447,543,4.0\n447,544,3.5\n447,545,3.0\n447,546,2.5\n447,547,2.0\n447,548,2.5\n447,549,3.0\n447,550,13.5\n447,551,13.0\n447,552,12.5\n447,553,12.0\n447,554,11.5\n447,555,11.0\n447,556,10.5\n447,557,10.0\n447,558,9.5\n447,559,9.0\n447,560,8.5\n447,561,8.0\n447,562,7.5\n447,563,7.0\n447,564,6.5\n447,565,6.0\n447,566,5.5\n447,567,5.0\n447,568,4.5\n447,569,4.0\n447,570,3.5\n447,571,3.0\n447,572,2.5\n447,573,3.0\n447,574,3.5\n447,575,14.0\n447,576,13.5\n447,577,13.0\n447,578,12.5\n447,579,12.0\n447,580,11.5\n447,581,11.0\n447,582,10.5\n447,583,10.0\n447,584,9.5\n447,585,9.0\n447,586,8.5\n447,587,8.0\n447,588,7.5\n447,589,7.0\n447,590,6.5\n447,591,6.0\n447,592,5.5\n447,593,5.0\n447,594,4.5\n447,595,4.0\n447,596,3.5\n447,597,3.0\n447,598,3.5\n447,599,4.0\n447,600,14.5\n447,601,14.0\n447,602,13.5\n447,603,13.0\n447,604,12.5\n447,605,12.0\n447,606,11.5\n447,607,11.0\n447,608,10.5\n447,609,10.0\n447,610,9.5\n447,611,9.0\n447,612,8.5\n447,613,8.0\n447,614,7.5\n447,615,7.0\n447,616,6.5\n447,617,6.0\n447,618,5.5\n447,619,5.0\n447,620,4.5\n447,621,4.0\n447,622,3.5\n447,623,4.0\n447,624,4.5\n448,0,20.0\n448,1,19.5\n448,2,19.0\n448,3,18.5\n448,4,18.0\n448,5,17.5\n448,6,17.0\n448,7,16.5\n448,8,16.0\n448,9,15.5\n448,10,15.0\n448,11,14.5\n448,12,14.0\n448,13,13.5\n448,14,13.0\n448,15,12.5\n448,16,12.0\n448,17,11.5\n448,18,11.0\n448,19,10.5\n448,20,10.0\n448,21,9.5\n448,22,9.0\n448,23,8.5\n448,24,9.0\n448,25,19.5\n448,26,19.0\n448,27,18.5\n448,28,18.0\n448,29,17.5\n448,30,17.0\n448,31,16.5\n448,32,16.0\n448,33,15.5\n448,34,15.0\n448,35,14.5\n448,36,14.0\n448,37,13.5\n448,38,13.0\n448,39,12.5\n448,40,12.0\n448,41,11.5\n448,42,11.0\n448,43,10.5\n448,44,10.0\n448,45,9.5\n448,46,9.0\n448,47,8.5\n448,48,8.0\n448,49,8.5\n448,50,19.0\n448,51,18.5\n448,52,18.0\n448,53,17.5\n448,54,17.0\n448,55,16.5\n448,56,16.0\n448,57,15.5\n448,58,15.0\n448,59,14.5\n448,60,14.0\n448,61,13.5\n448,62,13.0\n448,63,12.5\n448,64,12.0\n448,65,11.5\n448,66,11.0\n448,67,10.5\n448,68,10.0\n448,69,9.5\n448,70,9.0\n448,71,8.5\n448,72,8.0\n448,73,7.5\n448,74,8.0\n448,75,18.5\n448,76,18.0\n448,77,17.5\n448,78,17.0\n448,79,16.5\n448,80,16.0\n448,81,15.5\n448,82,15.0\n448,83,14.5\n448,84,14.0\n448,85,13.5\n448,86,13.0\n448,87,12.5\n448,88,12.0\n448,89,11.5\n448,90,11.0\n448,91,10.5\n448,92,10.0\n448,93,9.5\n448,94,9.0\n448,95,8.5\n448,96,8.0\n448,97,7.5\n448,98,7.0\n448,99,7.5\n448,100,18.0\n448,101,17.5\n448,102,17.0\n448,103,16.5\n448,104,16.0\n448,105,15.5\n448,106,15.0\n448,107,14.5\n448,108,14.0\n448,109,13.5\n448,110,13.0\n448,111,12.5\n448,112,12.0\n448,113,11.5\n448,114,11.0\n448,115,10.5\n448,116,10.0\n448,117,9.5\n448,118,9.0\n448,119,8.5\n448,120,8.0\n448,121,7.5\n448,122,7.0\n448,123,6.5\n448,124,7.0\n448,125,17.5\n448,126,17.0\n448,127,16.5\n448,128,16.0\n448,129,15.5\n448,130,15.0\n448,131,14.5\n448,132,14.0\n448,133,13.5\n448,134,13.0\n448,135,12.5\n448,136,12.0\n448,137,11.5\n448,138,11.0\n448,139,10.5\n448,140,10.0\n448,141,9.5\n448,142,9.0\n448,143,8.5\n448,144,8.0\n448,145,7.5\n448,146,7.0\n448,147,6.5\n448,148,6.0\n448,149,6.5\n448,150,17.0\n448,151,16.5\n448,152,16.0\n448,153,15.5\n448,154,15.0\n448,155,14.5\n448,156,14.0\n448,157,13.5\n448,158,13.0\n448,159,12.5\n448,160,12.0\n448,161,11.5\n448,162,11.0\n448,163,10.5\n448,164,10.0\n448,165,9.5\n448,166,9.0\n448,167,8.5\n448,168,8.0\n448,169,7.5\n448,170,7.0\n448,171,6.5\n448,172,6.0\n448,173,5.5\n448,174,6.0\n448,175,16.5\n448,176,16.0\n448,177,15.5\n448,178,15.0\n448,179,14.5\n448,180,14.0\n448,181,13.5\n448,182,13.0\n448,183,12.5\n448,184,12.0\n448,185,11.5\n448,186,11.0\n448,187,10.5\n448,188,10.0\n448,189,9.5\n448,190,9.0\n448,191,8.5\n448,192,8.0\n448,193,7.5\n448,194,7.0\n448,195,6.5\n448,196,6.0\n448,197,5.5\n448,198,5.0\n448,199,5.5\n448,200,16.0\n448,201,15.5\n448,202,15.0\n448,203,14.5\n448,204,14.0\n448,205,13.5\n448,206,13.0\n448,207,12.5\n448,208,12.0\n448,209,11.5\n448,210,11.0\n448,211,10.5\n448,212,10.0\n448,213,9.5\n448,214,9.0\n448,215,8.5\n448,216,8.0\n448,217,7.5\n448,218,7.0\n448,219,6.5\n448,220,6.0\n448,221,5.5\n448,222,5.0\n448,223,4.5\n448,224,5.0\n448,225,15.5\n448,226,15.0\n448,227,14.5\n448,228,14.0\n448,229,13.5\n448,230,13.0\n448,231,12.5\n448,232,12.0\n448,233,11.5\n448,234,11.0\n448,235,10.5\n448,236,10.0\n448,237,9.5\n448,238,9.0\n448,239,8.5\n448,240,8.0\n448,241,7.5\n448,242,7.0\n448,243,6.5\n448,244,6.0\n448,245,5.5\n448,246,5.0\n448,247,4.5\n448,248,4.0\n448,249,4.5\n448,250,15.0\n448,251,14.5\n448,252,14.0\n448,253,13.5\n448,254,13.0\n448,255,12.5\n448,256,12.0\n448,257,11.5\n448,258,11.0\n448,259,10.5\n448,260,10.0\n448,261,9.5\n448,262,9.0\n448,263,8.5\n448,264,8.0\n448,265,7.5\n448,266,7.0\n448,267,6.5\n448,268,6.0\n448,269,5.5\n448,270,5.0\n448,271,4.5\n448,272,4.0\n448,273,3.5\n448,274,4.0\n448,275,14.5\n448,276,14.0\n448,277,13.5\n448,278,13.0\n448,279,12.5\n448,280,12.0\n448,281,11.5\n448,282,11.0\n448,283,10.5\n448,284,10.0\n448,285,9.5\n448,286,9.0\n448,287,8.5\n448,288,8.0\n448,289,7.5\n448,290,7.0\n448,291,6.5\n448,292,6.0\n448,293,5.5\n448,294,5.0\n448,295,4.5\n448,296,4.0\n448,297,3.5\n448,298,3.0\n448,299,3.5\n448,300,14.0\n448,301,13.5\n448,302,13.0\n448,303,12.5\n448,304,12.0\n448,305,11.5\n448,306,11.0\n448,307,10.5\n448,308,10.0\n448,309,9.5\n448,310,9.0\n448,311,8.5\n448,312,8.0\n448,313,7.5\n448,314,7.0\n448,315,6.5\n448,316,6.0\n448,317,5.5\n448,318,5.0\n448,319,4.5\n448,320,4.0\n448,321,3.5\n448,322,3.0\n448,323,2.5\n448,324,3.0\n448,325,13.5\n448,326,13.0\n448,327,12.5\n448,328,12.0\n448,329,11.5\n448,330,11.0\n448,331,10.5\n448,332,10.0\n448,333,9.5\n448,334,9.0\n448,335,8.5\n448,336,8.0\n448,337,7.5\n448,338,7.0\n448,339,6.5\n448,340,6.0\n448,341,5.5\n448,342,5.0\n448,343,4.5\n448,344,4.0\n448,345,3.5\n448,346,3.0\n448,347,2.5\n448,348,2.0\n448,349,2.5\n448,350,13.0\n448,351,12.5\n448,352,12.0\n448,353,11.5\n448,354,11.0\n448,355,10.5\n448,356,10.0\n448,357,9.5\n448,358,9.0\n448,359,8.5\n448,360,8.0\n448,361,7.5\n448,362,7.0\n448,363,6.5\n448,364,6.0\n448,365,5.5\n448,366,5.0\n448,367,4.5\n448,368,4.0\n448,369,3.5\n448,370,3.0\n448,371,2.5\n448,372,2.0\n448,373,1.5\n448,374,2.0\n448,375,12.5\n448,376,12.0\n448,377,11.5\n448,378,11.0\n448,379,10.5\n448,380,10.0\n448,381,9.5\n448,382,9.0\n448,383,8.5\n448,384,8.0\n448,385,7.5\n448,386,7.0\n448,387,6.5\n448,388,6.0\n448,389,5.5\n448,390,5.0\n448,391,4.5\n448,392,4.0\n448,393,3.5\n448,394,3.0\n448,395,2.5\n448,396,2.0\n448,397,1.5\n448,398,1.0\n448,399,1.5\n448,400,12.0\n448,401,11.5\n448,402,11.0\n448,403,10.5\n448,404,10.0\n448,405,9.5\n448,406,9.0\n448,407,8.5\n448,408,8.0\n448,409,7.5\n448,410,7.0\n448,411,6.5\n448,412,6.0\n448,413,5.5\n448,414,5.0\n448,415,4.5\n448,416,4.0\n448,417,3.5\n448,418,3.0\n448,419,2.5\n448,420,2.0\n448,421,1.5\n448,422,1.0\n448,423,0.5\n448,424,1.0\n448,425,11.5\n448,426,11.0\n448,427,10.5\n448,428,10.0\n448,429,9.5\n448,430,9.0\n448,431,8.5\n448,432,8.0\n448,433,7.5\n448,434,7.0\n448,435,6.5\n448,436,6.0\n448,437,5.5\n448,438,5.0\n448,439,4.5\n448,440,4.0\n448,441,3.5\n448,442,3.0\n448,443,2.5\n448,444,2.0\n448,445,1.5\n448,446,1.0\n448,447,0.5\n448,448,0\n448,449,0.5\n448,450,12.0\n448,451,11.5\n448,452,11.0\n448,453,10.5\n448,454,10.0\n448,455,9.5\n448,456,9.0\n448,457,8.5\n448,458,8.0\n448,459,7.5\n448,460,7.0\n448,461,6.5\n448,462,6.0\n448,463,5.5\n448,464,5.0\n448,465,4.5\n448,466,4.0\n448,467,3.5\n448,468,3.0\n448,469,2.5\n448,470,2.0\n448,471,1.5\n448,472,1.0\n448,473,0.5\n448,474,1.0\n448,475,12.5\n448,476,12.0\n448,477,11.5\n448,478,11.0\n448,479,10.5\n448,480,10.0\n448,481,9.5\n448,482,9.0\n448,483,8.5\n448,484,8.0\n448,485,7.5\n448,486,7.0\n448,487,6.5\n448,488,6.0\n448,489,5.5\n448,490,5.0\n448,491,4.5\n448,492,4.0\n448,493,3.5\n448,494,3.0\n448,495,2.5\n448,496,2.0\n448,497,1.5\n448,498,1.0\n448,499,1.5\n448,500,13.0\n448,501,12.5\n448,502,12.0\n448,503,11.5\n448,504,11.0\n448,505,10.5\n448,506,10.0\n448,507,9.5\n448,508,9.0\n448,509,8.5\n448,510,8.0\n448,511,7.5\n448,512,7.0\n448,513,6.5\n448,514,6.0\n448,515,5.5\n448,516,5.0\n448,517,4.5\n448,518,4.0\n448,519,3.5\n448,520,3.0\n448,521,2.5\n448,522,2.0\n448,523,1.5\n448,524,2.0\n448,525,13.5\n448,526,13.0\n448,527,12.5\n448,528,12.0\n448,529,11.5\n448,530,11.0\n448,531,10.5\n448,532,10.0\n448,533,9.5\n448,534,9.0\n448,535,8.5\n448,536,8.0\n448,537,7.5\n448,538,7.0\n448,539,6.5\n448,540,6.0\n448,541,5.5\n448,542,5.0\n448,543,4.5\n448,544,4.0\n448,545,3.5\n448,546,3.0\n448,547,2.5\n448,548,2.0\n448,549,2.5\n448,550,14.0\n448,551,13.5\n448,552,13.0\n448,553,12.5\n448,554,12.0\n448,555,11.5\n448,556,11.0\n448,557,10.5\n448,558,10.0\n448,559,9.5\n448,560,9.0\n448,561,8.5\n448,562,8.0\n448,563,7.5\n448,564,7.0\n448,565,6.5\n448,566,6.0\n448,567,5.5\n448,568,5.0\n448,569,4.5\n448,570,4.0\n448,571,3.5\n448,572,3.0\n448,573,2.5\n448,574,3.0\n448,575,14.5\n448,576,14.0\n448,577,13.5\n448,578,13.0\n448,579,12.5\n448,580,12.0\n448,581,11.5\n448,582,11.0\n448,583,10.5\n448,584,10.0\n448,585,9.5\n448,586,9.0\n448,587,8.5\n448,588,8.0\n448,589,7.5\n448,590,7.0\n448,591,6.5\n448,592,6.0\n448,593,5.5\n448,594,5.0\n448,595,4.5\n448,596,4.0\n448,597,3.5\n448,598,3.0\n448,599,3.5\n448,600,15.0\n448,601,14.5\n448,602,14.0\n448,603,13.5\n448,604,13.0\n448,605,12.5\n448,606,12.0\n448,607,11.5\n448,608,11.0\n448,609,10.5\n448,610,10.0\n448,611,9.5\n448,612,9.0\n448,613,8.5\n448,614,8.0\n448,615,7.5\n448,616,7.0\n448,617,6.5\n448,618,6.0\n448,619,5.5\n448,620,5.0\n448,621,4.5\n448,622,4.0\n448,623,3.5\n448,624,4.0\n449,0,20.5\n449,1,20.0\n449,2,19.5\n449,3,19.0\n449,4,18.5\n449,5,18.0\n449,6,17.5\n449,7,17.0\n449,8,16.5\n449,9,16.0\n449,10,15.5\n449,11,15.0\n449,12,14.5\n449,13,14.0\n449,14,13.5\n449,15,13.0\n449,16,12.5\n449,17,12.0\n449,18,11.5\n449,19,11.0\n449,20,10.5\n449,21,10.0\n449,22,9.5\n449,23,9.0\n449,24,8.5\n449,25,20.0\n449,26,19.5\n449,27,19.0\n449,28,18.5\n449,29,18.0\n449,30,17.5\n449,31,17.0\n449,32,16.5\n449,33,16.0\n449,34,15.5\n449,35,15.0\n449,36,14.5\n449,37,14.0\n449,38,13.5\n449,39,13.0\n449,40,12.5\n449,41,12.0\n449,42,11.5\n449,43,11.0\n449,44,10.5\n449,45,10.0\n449,46,9.5\n449,47,9.0\n449,48,8.5\n449,49,8.0\n449,50,19.5\n449,51,19.0\n449,52,18.5\n449,53,18.0\n449,54,17.5\n449,55,17.0\n449,56,16.5\n449,57,16.0\n449,58,15.5\n449,59,15.0\n449,60,14.5\n449,61,14.0\n449,62,13.5\n449,63,13.0\n449,64,12.5\n449,65,12.0\n449,66,11.5\n449,67,11.0\n449,68,10.5\n449,69,10.0\n449,70,9.5\n449,71,9.0\n449,72,8.5\n449,73,8.0\n449,74,7.5\n449,75,19.0\n449,76,18.5\n449,77,18.0\n449,78,17.5\n449,79,17.0\n449,80,16.5\n449,81,16.0\n449,82,15.5\n449,83,15.0\n449,84,14.5\n449,85,14.0\n449,86,13.5\n449,87,13.0\n449,88,12.5\n449,89,12.0\n449,90,11.5\n449,91,11.0\n449,92,10.5\n449,93,10.0\n449,94,9.5\n449,95,9.0\n449,96,8.5\n449,97,8.0\n449,98,7.5\n449,99,7.0\n449,100,18.5\n449,101,18.0\n449,102,17.5\n449,103,17.0\n449,104,16.5\n449,105,16.0\n449,106,15.5\n449,107,15.0\n449,108,14.5\n449,109,14.0\n449,110,13.5\n449,111,13.0\n449,112,12.5\n449,113,12.0\n449,114,11.5\n449,115,11.0\n449,116,10.5\n449,117,10.0\n449,118,9.5\n449,119,9.0\n449,120,8.5\n449,121,8.0\n449,122,7.5\n449,123,7.0\n449,124,6.5\n449,125,18.0\n449,126,17.5\n449,127,17.0\n449,128,16.5\n449,129,16.0\n449,130,15.5\n449,131,15.0\n449,132,14.5\n449,133,14.0\n449,134,13.5\n449,135,13.0\n449,136,12.5\n449,137,12.0\n449,138,11.5\n449,139,11.0\n449,140,10.5\n449,141,10.0\n449,142,9.5\n449,143,9.0\n449,144,8.5\n449,145,8.0\n449,146,7.5\n449,147,7.0\n449,148,6.5\n449,149,6.0\n449,150,17.5\n449,151,17.0\n449,152,16.5\n449,153,16.0\n449,154,15.5\n449,155,15.0\n449,156,14.5\n449,157,14.0\n449,158,13.5\n449,159,13.0\n449,160,12.5\n449,161,12.0\n449,162,11.5\n449,163,11.0\n449,164,10.5\n449,165,10.0\n449,166,9.5\n449,167,9.0\n449,168,8.5\n449,169,8.0\n449,170,7.5\n449,171,7.0\n449,172,6.5\n449,173,6.0\n449,174,5.5\n449,175,17.0\n449,176,16.5\n449,177,16.0\n449,178,15.5\n449,179,15.0\n449,180,14.5\n449,181,14.0\n449,182,13.5\n449,183,13.0\n449,184,12.5\n449,185,12.0\n449,186,11.5\n449,187,11.0\n449,188,10.5\n449,189,10.0\n449,190,9.5\n449,191,9.0\n449,192,8.5\n449,193,8.0\n449,194,7.5\n449,195,7.0\n449,196,6.5\n449,197,6.0\n449,198,5.5\n449,199,5.0\n449,200,16.5\n449,201,16.0\n449,202,15.5\n449,203,15.0\n449,204,14.5\n449,205,14.0\n449,206,13.5\n449,207,13.0\n449,208,12.5\n449,209,12.0\n449,210,11.5\n449,211,11.0\n449,212,10.5\n449,213,10.0\n449,214,9.5\n449,215,9.0\n449,216,8.5\n449,217,8.0\n449,218,7.5\n449,219,7.0\n449,220,6.5\n449,221,6.0\n449,222,5.5\n449,223,5.0\n449,224,4.5\n449,225,16.0\n449,226,15.5\n449,227,15.0\n449,228,14.5\n449,229,14.0\n449,230,13.5\n449,231,13.0\n449,232,12.5\n449,233,12.0\n449,234,11.5\n449,235,11.0\n449,236,10.5\n449,237,10.0\n449,238,9.5\n449,239,9.0\n449,240,8.5\n449,241,8.0\n449,242,7.5\n449,243,7.0\n449,244,6.5\n449,245,6.0\n449,246,5.5\n449,247,5.0\n449,248,4.5\n449,249,4.0\n449,250,15.5\n449,251,15.0\n449,252,14.5\n449,253,14.0\n449,254,13.5\n449,255,13.0\n449,256,12.5\n449,257,12.0\n449,258,11.5\n449,259,11.0\n449,260,10.5\n449,261,10.0\n449,262,9.5\n449,263,9.0\n449,264,8.5\n449,265,8.0\n449,266,7.5\n449,267,7.0\n449,268,6.5\n449,269,6.0\n449,270,5.5\n449,271,5.0\n449,272,4.5\n449,273,4.0\n449,274,3.5\n449,275,15.0\n449,276,14.5\n449,277,14.0\n449,278,13.5\n449,279,13.0\n449,280,12.5\n449,281,12.0\n449,282,11.5\n449,283,11.0\n449,284,10.5\n449,285,10.0\n449,286,9.5\n449,287,9.0\n449,288,8.5\n449,289,8.0\n449,290,7.5\n449,291,7.0\n449,292,6.5\n449,293,6.0\n449,294,5.5\n449,295,5.0\n449,296,4.5\n449,297,4.0\n449,298,3.5\n449,299,3.0\n449,300,14.5\n449,301,14.0\n449,302,13.5\n449,303,13.0\n449,304,12.5\n449,305,12.0\n449,306,11.5\n449,307,11.0\n449,308,10.5\n449,309,10.0\n449,310,9.5\n449,311,9.0\n449,312,8.5\n449,313,8.0\n449,314,7.5\n449,315,7.0\n449,316,6.5\n449,317,6.0\n449,318,5.5\n449,319,5.0\n449,320,4.5\n449,321,4.0\n449,322,3.5\n449,323,3.0\n449,324,2.5\n449,325,14.0\n449,326,13.5\n449,327,13.0\n449,328,12.5\n449,329,12.0\n449,330,11.5\n449,331,11.0\n449,332,10.5\n449,333,10.0\n449,334,9.5\n449,335,9.0\n449,336,8.5\n449,337,8.0\n449,338,7.5\n449,339,7.0\n449,340,6.5\n449,341,6.0\n449,342,5.5\n449,343,5.0\n449,344,4.5\n449,345,4.0\n449,346,3.5\n449,347,3.0\n449,348,2.5\n449,349,2.0\n449,350,13.5\n449,351,13.0\n449,352,12.5\n449,353,12.0\n449,354,11.5\n449,355,11.0\n449,356,10.5\n449,357,10.0\n449,358,9.5\n449,359,9.0\n449,360,8.5\n449,361,8.0\n449,362,7.5\n449,363,7.0\n449,364,6.5\n449,365,6.0\n449,366,5.5\n449,367,5.0\n449,368,4.5\n449,369,4.0\n449,370,3.5\n449,371,3.0\n449,372,2.5\n449,373,2.0\n449,374,1.5\n449,375,13.0\n449,376,12.5\n449,377,12.0\n449,378,11.5\n449,379,11.0\n449,380,10.5\n449,381,10.0\n449,382,9.5\n449,383,9.0\n449,384,8.5\n449,385,8.0\n449,386,7.5\n449,387,7.0\n449,388,6.5\n449,389,6.0\n449,390,5.5\n449,391,5.0\n449,392,4.5\n449,393,4.0\n449,394,3.5\n449,395,3.0\n449,396,2.5\n449,397,2.0\n449,398,1.5\n449,399,1.0\n449,400,12.5\n449,401,12.0\n449,402,11.5\n449,403,11.0\n449,404,10.5\n449,405,10.0\n449,406,9.5\n449,407,9.0\n449,408,8.5\n449,409,8.0\n449,410,7.5\n449,411,7.0\n449,412,6.5\n449,413,6.0\n449,414,5.5\n449,415,5.0\n449,416,4.5\n449,417,4.0\n449,418,3.5\n449,419,3.0\n449,420,2.5\n449,421,2.0\n449,422,1.5\n449,423,1.0\n449,424,0.5\n449,425,12.0\n449,426,11.5\n449,427,11.0\n449,428,10.5\n449,429,10.0\n449,430,9.5\n449,431,9.0\n449,432,8.5\n449,433,8.0\n449,434,7.5\n449,435,7.0\n449,436,6.5\n449,437,6.0\n449,438,5.5\n449,439,5.0\n449,440,4.5\n449,441,4.0\n449,442,3.5\n449,443,3.0\n449,444,2.5\n449,445,2.0\n449,446,1.5\n449,447,1.0\n449,448,0.5\n449,449,0\n449,450,12.5\n449,451,12.0\n449,452,11.5\n449,453,11.0\n449,454,10.5\n449,455,10.0\n449,456,9.5\n449,457,9.0\n449,458,8.5\n449,459,8.0\n449,460,7.5\n449,461,7.0\n449,462,6.5\n449,463,6.0\n449,464,5.5\n449,465,5.0\n449,466,4.5\n449,467,4.0\n449,468,3.5\n449,469,3.0\n449,470,2.5\n449,471,2.0\n449,472,1.5\n449,473,1.0\n449,474,0.5\n449,475,13.0\n449,476,12.5\n449,477,12.0\n449,478,11.5\n449,479,11.0\n449,480,10.5\n449,481,10.0\n449,482,9.5\n449,483,9.0\n449,484,8.5\n449,485,8.0\n449,486,7.5\n449,487,7.0\n449,488,6.5\n449,489,6.0\n449,490,5.5\n449,491,5.0\n449,492,4.5\n449,493,4.0\n449,494,3.5\n449,495,3.0\n449,496,2.5\n449,497,2.0\n449,498,1.5\n449,499,1.0\n449,500,13.5\n449,501,13.0\n449,502,12.5\n449,503,12.0\n449,504,11.5\n449,505,11.0\n449,506,10.5\n449,507,10.0\n449,508,9.5\n449,509,9.0\n449,510,8.5\n449,511,8.0\n449,512,7.5\n449,513,7.0\n449,514,6.5\n449,515,6.0\n449,516,5.5\n449,517,5.0\n449,518,4.5\n449,519,4.0\n449,520,3.5\n449,521,3.0\n449,522,2.5\n449,523,2.0\n449,524,1.5\n449,525,14.0\n449,526,13.5\n449,527,13.0\n449,528,12.5\n449,529,12.0\n449,530,11.5\n449,531,11.0\n449,532,10.5\n449,533,10.0\n449,534,9.5\n449,535,9.0\n449,536,8.5\n449,537,8.0\n449,538,7.5\n449,539,7.0\n449,540,6.5\n449,541,6.0\n449,542,5.5\n449,543,5.0\n449,544,4.5\n449,545,4.0\n449,546,3.5\n449,547,3.0\n449,548,2.5\n449,549,2.0\n449,550,14.5\n449,551,14.0\n449,552,13.5\n449,553,13.0\n449,554,12.5\n449,555,12.0\n449,556,11.5\n449,557,11.0\n449,558,10.5\n449,559,10.0\n449,560,9.5\n449,561,9.0\n449,562,8.5\n449,563,8.0\n449,564,7.5\n449,565,7.0\n449,566,6.5\n449,567,6.0\n449,568,5.5\n449,569,5.0\n449,570,4.5\n449,571,4.0\n449,572,3.5\n449,573,3.0\n449,574,2.5\n449,575,15.0\n449,576,14.5\n449,577,14.0\n449,578,13.5\n449,579,13.0\n449,580,12.5\n449,581,12.0\n449,582,11.5\n449,583,11.0\n449,584,10.5\n449,585,10.0\n449,586,9.5\n449,587,9.0\n449,588,8.5\n449,589,8.0\n449,590,7.5\n449,591,7.0\n449,592,6.5\n449,593,6.0\n449,594,5.5\n449,595,5.0\n449,596,4.5\n449,597,4.0\n449,598,3.5\n449,599,3.0\n449,600,15.5\n449,601,15.0\n449,602,14.5\n449,603,14.0\n449,604,13.5\n449,605,13.0\n449,606,12.5\n449,607,12.0\n449,608,11.5\n449,609,11.0\n449,610,10.5\n449,611,10.0\n449,612,9.5\n449,613,9.0\n449,614,8.5\n449,615,8.0\n449,616,7.5\n449,617,7.0\n449,618,6.5\n449,619,6.0\n449,620,5.5\n449,621,5.0\n449,622,4.5\n449,623,4.0\n449,624,3.5\n450,0,9.0\n450,1,9.5\n450,2,10.0\n450,3,10.5\n450,4,11.0\n450,5,11.5\n450,6,12.0\n450,7,12.5\n450,8,13.0\n450,9,13.5\n450,10,14.0\n450,11,14.5\n450,12,15.0\n450,13,15.5\n450,14,16.0\n450,15,16.5\n450,16,17.0\n450,17,17.5\n450,18,18.0\n450,19,18.5\n450,20,19.0\n450,21,19.5\n450,22,20.0\n450,23,20.5\n450,24,21.0\n450,25,8.5\n450,26,9.0\n450,27,9.5\n450,28,10.0\n450,29,10.5\n450,30,11.0\n450,31,11.5\n450,32,12.0\n450,33,12.5\n450,34,13.0\n450,35,13.5\n450,36,14.0\n450,37,14.5\n450,38,15.0\n450,39,15.5\n450,40,16.0\n450,41,16.5\n450,42,17.0\n450,43,17.5\n450,44,18.0\n450,45,18.5\n450,46,19.0\n450,47,19.5\n450,48,20.0\n450,49,20.5\n450,50,8.0\n450,51,8.5\n450,52,9.0\n450,53,9.5\n450,54,10.0\n450,55,10.5\n450,56,11.0\n450,57,11.5\n450,58,12.0\n450,59,12.5\n450,60,13.0\n450,61,13.5\n450,62,14.0\n450,63,14.5\n450,64,15.0\n450,65,15.5\n450,66,16.0\n450,67,16.5\n450,68,17.0\n450,69,17.5\n450,70,18.0\n450,71,18.5\n450,72,19.0\n450,73,19.5\n450,74,20.0\n450,75,7.5\n450,76,8.0\n450,77,8.5\n450,78,9.0\n450,79,9.5\n450,80,10.0\n450,81,10.5\n450,82,11.0\n450,83,11.5\n450,84,12.0\n450,85,12.5\n450,86,13.0\n450,87,13.5\n450,88,14.0\n450,89,14.5\n450,90,15.0\n450,91,15.5\n450,92,16.0\n450,93,16.5\n450,94,17.0\n450,95,17.5\n450,96,18.0\n450,97,18.5\n450,98,19.0\n450,99,19.5\n450,100,7.0\n450,101,7.5\n450,102,8.0\n450,103,8.5\n450,104,9.0\n450,105,9.5\n450,106,10.0\n450,107,10.5\n450,108,11.0\n450,109,11.5\n450,110,12.0\n450,111,12.5\n450,112,13.0\n450,113,13.5\n450,114,14.0\n450,115,14.5\n450,116,15.0\n450,117,15.5\n450,118,16.0\n450,119,16.5\n450,120,17.0\n450,121,17.5\n450,122,18.0\n450,123,18.5\n450,124,19.0\n450,125,6.5\n450,126,7.0\n450,127,7.5\n450,128,8.0\n450,129,8.5\n450,130,9.0\n450,131,9.5\n450,132,10.0\n450,133,10.5\n450,134,11.0\n450,135,11.5\n450,136,12.0\n450,137,12.5\n450,138,13.0\n450,139,13.5\n450,140,14.0\n450,141,14.5\n450,142,15.0\n450,143,15.5\n450,144,16.0\n450,145,16.5\n450,146,17.0\n450,147,17.5\n450,148,18.0\n450,149,18.5\n450,150,6.0\n450,151,6.5\n450,152,7.0\n450,153,7.5\n450,154,8.0\n450,155,8.5\n450,156,9.0\n450,157,9.5\n450,158,10.0\n450,159,10.5\n450,160,11.0\n450,161,11.5\n450,162,12.0\n450,163,12.5\n450,164,13.0\n450,165,13.5\n450,166,14.0\n450,167,14.5\n450,168,15.0\n450,169,15.5\n450,170,16.0\n450,171,16.5\n450,172,17.0\n450,173,17.5\n450,174,18.0\n450,175,5.5\n450,176,6.0\n450,177,6.5\n450,178,7.0\n450,179,7.5\n450,180,8.0\n450,181,8.5\n450,182,9.0\n450,183,9.5\n450,184,10.0\n450,185,10.5\n450,186,11.0\n450,187,11.5\n450,188,12.0\n450,189,12.5\n450,190,13.0\n450,191,13.5\n450,192,14.0\n450,193,14.5\n450,194,15.0\n450,195,15.5\n450,196,16.0\n450,197,16.5\n450,198,17.0\n450,199,17.5\n450,200,5.0\n450,201,5.5\n450,202,6.0\n450,203,6.5\n450,204,7.0\n450,205,7.5\n450,206,8.0\n450,207,8.5\n450,208,9.0\n450,209,9.5\n450,210,10.0\n450,211,10.5\n450,212,11.0\n450,213,11.5\n450,214,12.0\n450,215,12.5\n450,216,13.0\n450,217,13.5\n450,218,14.0\n450,219,14.5\n450,220,15.0\n450,221,15.5\n450,222,16.0\n450,223,16.5\n450,224,17.0\n450,225,4.5\n450,226,5.0\n450,227,5.5\n450,228,6.0\n450,229,6.5\n450,230,7.0\n450,231,7.5\n450,232,8.0\n450,233,8.5\n450,234,9.0\n450,235,9.5\n450,236,10.0\n450,237,10.5\n450,238,11.0\n450,239,11.5\n450,240,12.0\n450,241,12.5\n450,242,13.0\n450,243,13.5\n450,244,14.0\n450,245,14.5\n450,246,15.0\n450,247,15.5\n450,248,16.0\n450,249,16.5\n450,250,4.0\n450,251,4.5\n450,252,5.0\n450,253,5.5\n450,254,6.0\n450,255,6.5\n450,256,7.0\n450,257,7.5\n450,258,8.0\n450,259,8.5\n450,260,9.0\n450,261,9.5\n450,262,10.0\n450,263,10.5\n450,264,11.0\n450,265,11.5\n450,266,12.0\n450,267,12.5\n450,268,13.0\n450,269,13.5\n450,270,14.0\n450,271,14.5\n450,272,15.0\n450,273,15.5\n450,274,16.0\n450,275,3.5\n450,276,4.0\n450,277,4.5\n450,278,5.0\n450,279,5.5\n450,280,6.0\n450,281,6.5\n450,282,7.0\n450,283,7.5\n450,284,8.0\n450,285,8.5\n450,286,9.0\n450,287,9.5\n450,288,10.0\n450,289,10.5\n450,290,11.0\n450,291,11.5\n450,292,12.0\n450,293,12.5\n450,294,13.0\n450,295,13.5\n450,296,14.0\n450,297,14.5\n450,298,15.0\n450,299,15.5\n450,300,3.0\n450,301,3.5\n450,302,4.0\n450,303,4.5\n450,304,5.0\n450,305,5.5\n450,306,6.0\n450,307,6.5\n450,308,7.0\n450,309,7.5\n450,310,8.0\n450,311,8.5\n450,312,9.0\n450,313,9.5\n450,314,10.0\n450,315,10.5\n450,316,11.0\n450,317,11.5\n450,318,12.0\n450,319,12.5\n450,320,13.0\n450,321,13.5\n450,322,14.0\n450,323,14.5\n450,324,15.0\n450,325,2.5\n450,326,3.0\n450,327,3.5\n450,328,4.0\n450,329,4.5\n450,330,5.0\n450,331,5.5\n450,332,6.0\n450,333,6.5\n450,334,7.0\n450,335,7.5\n450,336,8.0\n450,337,8.5\n450,338,9.0\n450,339,9.5\n450,340,10.0\n450,341,10.5\n450,342,11.0\n450,343,11.5\n450,344,12.0\n450,345,12.5\n450,346,13.0\n450,347,13.5\n450,348,14.0\n450,349,14.5\n450,350,2.0\n450,351,2.5\n450,352,3.0\n450,353,3.5\n450,354,4.0\n450,355,4.5\n450,356,5.0\n450,357,5.5\n450,358,6.0\n450,359,6.5\n450,360,7.0\n450,361,7.5\n450,362,8.0\n450,363,8.5\n450,364,9.0\n450,365,9.5\n450,366,10.0\n450,367,10.5\n450,368,11.0\n450,369,11.5\n450,370,12.0\n450,371,12.5\n450,372,13.0\n450,373,13.5\n450,374,14.0\n450,375,1.5\n450,376,2.0\n450,377,2.5\n450,378,3.0\n450,379,3.5\n450,380,4.0\n450,381,4.5\n450,382,5.0\n450,383,5.5\n450,384,6.0\n450,385,6.5\n450,386,7.0\n450,387,7.5\n450,388,8.0\n450,389,8.5\n450,390,9.0\n450,391,9.5\n450,392,10.0\n450,393,10.5\n450,394,11.0\n450,395,11.5\n450,396,12.0\n450,397,12.5\n450,398,13.0\n450,399,13.5\n450,400,1.0\n450,401,1.5\n450,402,2.0\n450,403,2.5\n450,404,3.0\n450,405,3.5\n450,406,4.0\n450,407,4.5\n450,408,5.0\n450,409,5.5\n450,410,6.0\n450,411,6.5\n450,412,7.0\n450,413,7.5\n450,414,8.0\n450,415,8.5\n450,416,9.0\n450,417,9.5\n450,418,10.0\n450,419,10.5\n450,420,11.0\n450,421,11.5\n450,422,12.0\n450,423,12.5\n450,424,13.0\n450,425,0.5\n450,426,1.0\n450,427,1.5\n450,428,2.0\n450,429,2.5\n450,430,3.0\n450,431,3.5\n450,432,4.0\n450,433,4.5\n450,434,5.0\n450,435,5.5\n450,436,6.0\n450,437,6.5\n450,438,7.0\n450,439,7.5\n450,440,8.0\n450,441,8.5\n450,442,9.0\n450,443,9.5\n450,444,10.0\n450,445,10.5\n450,446,11.0\n450,447,11.5\n450,448,12.0\n450,449,12.5\n450,450,0\n450,451,0.5\n450,452,1.0\n450,453,1.5\n450,454,2.0\n450,455,2.5\n450,456,3.0\n450,457,3.5\n450,458,4.0\n450,459,4.5\n450,460,5.0\n450,461,5.5\n450,462,6.0\n450,463,6.5\n450,464,7.0\n450,465,7.5\n450,466,8.0\n450,467,8.5\n450,468,9.0\n450,469,9.5\n450,470,10.0\n450,471,10.5\n450,472,11.0\n450,473,11.5\n450,474,12.0\n450,475,0.5\n450,476,1.0\n450,477,1.5\n450,478,2.0\n450,479,2.5\n450,480,3.0\n450,481,3.5\n450,482,4.0\n450,483,4.5\n450,484,5.0\n450,485,5.5\n450,486,6.0\n450,487,6.5\n450,488,7.0\n450,489,7.5\n450,490,8.0\n450,491,8.5\n450,492,9.0\n450,493,9.5\n450,494,10.0\n450,495,10.5\n450,496,11.0\n450,497,11.5\n450,498,12.0\n450,499,12.5\n450,500,1.0\n450,501,1.5\n450,502,2.0\n450,503,2.5\n450,504,3.0\n450,505,3.5\n450,506,4.0\n450,507,4.5\n450,508,5.0\n450,509,5.5\n450,510,6.0\n450,511,6.5\n450,512,7.0\n450,513,7.5\n450,514,8.0\n450,515,8.5\n450,516,9.0\n450,517,9.5\n450,518,10.0\n450,519,10.5\n450,520,11.0\n450,521,11.5\n450,522,12.0\n450,523,12.5\n450,524,13.0\n450,525,1.5\n450,526,2.0\n450,527,2.5\n450,528,3.0\n450,529,3.5\n450,530,4.0\n450,531,4.5\n450,532,5.0\n450,533,5.5\n450,534,6.0\n450,535,6.5\n450,536,7.0\n450,537,7.5\n450,538,8.0\n450,539,8.5\n450,540,9.0\n450,541,9.5\n450,542,10.0\n450,543,10.5\n450,544,11.0\n450,545,11.5\n450,546,12.0\n450,547,12.5\n450,548,13.0\n450,549,13.5\n450,550,2.0\n450,551,2.5\n450,552,3.0\n450,553,3.5\n450,554,4.0\n450,555,4.5\n450,556,5.0\n450,557,5.5\n450,558,6.0\n450,559,6.5\n450,560,7.0\n450,561,7.5\n450,562,8.0\n450,563,8.5\n450,564,9.0\n450,565,9.5\n450,566,10.0\n450,567,10.5\n450,568,11.0\n450,569,11.5\n450,570,12.0\n450,571,12.5\n450,572,13.0\n450,573,13.5\n450,574,14.0\n450,575,2.5\n450,576,3.0\n450,577,3.5\n450,578,4.0\n450,579,4.5\n450,580,5.0\n450,581,5.5\n450,582,6.0\n450,583,6.5\n450,584,7.0\n450,585,7.5\n450,586,8.0\n450,587,8.5\n450,588,9.0\n450,589,9.5\n450,590,10.0\n450,591,10.5\n450,592,11.0\n450,593,11.5\n450,594,12.0\n450,595,12.5\n450,596,13.0\n450,597,13.5\n450,598,14.0\n450,599,14.5\n450,600,3.0\n450,601,3.5\n450,602,4.0\n450,603,4.5\n450,604,5.0\n450,605,5.5\n450,606,6.0\n450,607,6.5\n450,608,7.0\n450,609,7.5\n450,610,8.0\n450,611,8.5\n450,612,9.0\n450,613,9.5\n450,614,10.0\n450,615,10.5\n450,616,11.0\n450,617,11.5\n450,618,12.0\n450,619,12.5\n450,620,13.0\n450,621,13.5\n450,622,14.0\n450,623,14.5\n450,624,15.0\n451,0,9.5\n451,1,9.0\n451,2,9.5\n451,3,10.0\n451,4,10.5\n451,5,11.0\n451,6,11.5\n451,7,12.0\n451,8,12.5\n451,9,13.0\n451,10,13.5\n451,11,14.0\n451,12,14.5\n451,13,15.0\n451,14,15.5\n451,15,16.0\n451,16,16.5\n451,17,17.0\n451,18,17.5\n451,19,18.0\n451,20,18.5\n451,21,19.0\n451,22,19.5\n451,23,20.0\n451,24,20.5\n451,25,9.0\n451,26,8.5\n451,27,9.0\n451,28,9.5\n451,29,10.0\n451,30,10.5\n451,31,11.0\n451,32,11.5\n451,33,12.0\n451,34,12.5\n451,35,13.0\n451,36,13.5\n451,37,14.0\n451,38,14.5\n451,39,15.0\n451,40,15.5\n451,41,16.0\n451,42,16.5\n451,43,17.0\n451,44,17.5\n451,45,18.0\n451,46,18.5\n451,47,19.0\n451,48,19.5\n451,49,20.0\n451,50,8.5\n451,51,8.0\n451,52,8.5\n451,53,9.0\n451,54,9.5\n451,55,10.0\n451,56,10.5\n451,57,11.0\n451,58,11.5\n451,59,12.0\n451,60,12.5\n451,61,13.0\n451,62,13.5\n451,63,14.0\n451,64,14.5\n451,65,15.0\n451,66,15.5\n451,67,16.0\n451,68,16.5\n451,69,17.0\n451,70,17.5\n451,71,18.0\n451,72,18.5\n451,73,19.0\n451,74,19.5\n451,75,8.0\n451,76,7.5\n451,77,8.0\n451,78,8.5\n451,79,9.0\n451,80,9.5\n451,81,10.0\n451,82,10.5\n451,83,11.0\n451,84,11.5\n451,85,12.0\n451,86,12.5\n451,87,13.0\n451,88,13.5\n451,89,14.0\n451,90,14.5\n451,91,15.0\n451,92,15.5\n451,93,16.0\n451,94,16.5\n451,95,17.0\n451,96,17.5\n451,97,18.0\n451,98,18.5\n451,99,19.0\n451,100,7.5\n451,101,7.0\n451,102,7.5\n451,103,8.0\n451,104,8.5\n451,105,9.0\n451,106,9.5\n451,107,10.0\n451,108,10.5\n451,109,11.0\n451,110,11.5\n451,111,12.0\n451,112,12.5\n451,113,13.0\n451,114,13.5\n451,115,14.0\n451,116,14.5\n451,117,15.0\n451,118,15.5\n451,119,16.0\n451,120,16.5\n451,121,17.0\n451,122,17.5\n451,123,18.0\n451,124,18.5\n451,125,7.0\n451,126,6.5\n451,127,7.0\n451,128,7.5\n451,129,8.0\n451,130,8.5\n451,131,9.0\n451,132,9.5\n451,133,10.0\n451,134,10.5\n451,135,11.0\n451,136,11.5\n451,137,12.0\n451,138,12.5\n451,139,13.0\n451,140,13.5\n451,141,14.0\n451,142,14.5\n451,143,15.0\n451,144,15.5\n451,145,16.0\n451,146,16.5\n451,147,17.0\n451,148,17.5\n451,149,18.0\n451,150,6.5\n451,151,6.0\n451,152,6.5\n451,153,7.0\n451,154,7.5\n451,155,8.0\n451,156,8.5\n451,157,9.0\n451,158,9.5\n451,159,10.0\n451,160,10.5\n451,161,11.0\n451,162,11.5\n451,163,12.0\n451,164,12.5\n451,165,13.0\n451,166,13.5\n451,167,14.0\n451,168,14.5\n451,169,15.0\n451,170,15.5\n451,171,16.0\n451,172,16.5\n451,173,17.0\n451,174,17.5\n451,175,6.0\n451,176,5.5\n451,177,6.0\n451,178,6.5\n451,179,7.0\n451,180,7.5\n451,181,8.0\n451,182,8.5\n451,183,9.0\n451,184,9.5\n451,185,10.0\n451,186,10.5\n451,187,11.0\n451,188,11.5\n451,189,12.0\n451,190,12.5\n451,191,13.0\n451,192,13.5\n451,193,14.0\n451,194,14.5\n451,195,15.0\n451,196,15.5\n451,197,16.0\n451,198,16.5\n451,199,17.0\n451,200,5.5\n451,201,5.0\n451,202,5.5\n451,203,6.0\n451,204,6.5\n451,205,7.0\n451,206,7.5\n451,207,8.0\n451,208,8.5\n451,209,9.0\n451,210,9.5\n451,211,10.0\n451,212,10.5\n451,213,11.0\n451,214,11.5\n451,215,12.0\n451,216,12.5\n451,217,13.0\n451,218,13.5\n451,219,14.0\n451,220,14.5\n451,221,15.0\n451,222,15.5\n451,223,16.0\n451,224,16.5\n451,225,5.0\n451,226,4.5\n451,227,5.0\n451,228,5.5\n451,229,6.0\n451,230,6.5\n451,231,7.0\n451,232,7.5\n451,233,8.0\n451,234,8.5\n451,235,9.0\n451,236,9.5\n451,237,10.0\n451,238,10.5\n451,239,11.0\n451,240,11.5\n451,241,12.0\n451,242,12.5\n451,243,13.0\n451,244,13.5\n451,245,14.0\n451,246,14.5\n451,247,15.0\n451,248,15.5\n451,249,16.0\n451,250,4.5\n451,251,4.0\n451,252,4.5\n451,253,5.0\n451,254,5.5\n451,255,6.0\n451,256,6.5\n451,257,7.0\n451,258,7.5\n451,259,8.0\n451,260,8.5\n451,261,9.0\n451,262,9.5\n451,263,10.0\n451,264,10.5\n451,265,11.0\n451,266,11.5\n451,267,12.0\n451,268,12.5\n451,269,13.0\n451,270,13.5\n451,271,14.0\n451,272,14.5\n451,273,15.0\n451,274,15.5\n451,275,4.0\n451,276,3.5\n451,277,4.0\n451,278,4.5\n451,279,5.0\n451,280,5.5\n451,281,6.0\n451,282,6.5\n451,283,7.0\n451,284,7.5\n451,285,8.0\n451,286,8.5\n451,287,9.0\n451,288,9.5\n451,289,10.0\n451,290,10.5\n451,291,11.0\n451,292,11.5\n451,293,12.0\n451,294,12.5\n451,295,13.0\n451,296,13.5\n451,297,14.0\n451,298,14.5\n451,299,15.0\n451,300,3.5\n451,301,3.0\n451,302,3.5\n451,303,4.0\n451,304,4.5\n451,305,5.0\n451,306,5.5\n451,307,6.0\n451,308,6.5\n451,309,7.0\n451,310,7.5\n451,311,8.0\n451,312,8.5\n451,313,9.0\n451,314,9.5\n451,315,10.0\n451,316,10.5\n451,317,11.0\n451,318,11.5\n451,319,12.0\n451,320,12.5\n451,321,13.0\n451,322,13.5\n451,323,14.0\n451,324,14.5\n451,325,3.0\n451,326,2.5\n451,327,3.0\n451,328,3.5\n451,329,4.0\n451,330,4.5\n451,331,5.0\n451,332,5.5\n451,333,6.0\n451,334,6.5\n451,335,7.0\n451,336,7.5\n451,337,8.0\n451,338,8.5\n451,339,9.0\n451,340,9.5\n451,341,10.0\n451,342,10.5\n451,343,11.0\n451,344,11.5\n451,345,12.0\n451,346,12.5\n451,347,13.0\n451,348,13.5\n451,349,14.0\n451,350,2.5\n451,351,2.0\n451,352,2.5\n451,353,3.0\n451,354,3.5\n451,355,4.0\n451,356,4.5\n451,357,5.0\n451,358,5.5\n451,359,6.0\n451,360,6.5\n451,361,7.0\n451,362,7.5\n451,363,8.0\n451,364,8.5\n451,365,9.0\n451,366,9.5\n451,367,10.0\n451,368,10.5\n451,369,11.0\n451,370,11.5\n451,371,12.0\n451,372,12.5\n451,373,13.0\n451,374,13.5\n451,375,2.0\n451,376,1.5\n451,377,2.0\n451,378,2.5\n451,379,3.0\n451,380,3.5\n451,381,4.0\n451,382,4.5\n451,383,5.0\n451,384,5.5\n451,385,6.0\n451,386,6.5\n451,387,7.0\n451,388,7.5\n451,389,8.0\n451,390,8.5\n451,391,9.0\n451,392,9.5\n451,393,10.0\n451,394,10.5\n451,395,11.0\n451,396,11.5\n451,397,12.0\n451,398,12.5\n451,399,13.0\n451,400,1.5\n451,401,1.0\n451,402,1.5\n451,403,2.0\n451,404,2.5\n451,405,3.0\n451,406,3.5\n451,407,4.0\n451,408,4.5\n451,409,5.0\n451,410,5.5\n451,411,6.0\n451,412,6.5\n451,413,7.0\n451,414,7.5\n451,415,8.0\n451,416,8.5\n451,417,9.0\n451,418,9.5\n451,419,10.0\n451,420,10.5\n451,421,11.0\n451,422,11.5\n451,423,12.0\n451,424,12.5\n451,425,1.0\n451,426,0.5\n451,427,1.0\n451,428,1.5\n451,429,2.0\n451,430,2.5\n451,431,3.0\n451,432,3.5\n451,433,4.0\n451,434,4.5\n451,435,5.0\n451,436,5.5\n451,437,6.0\n451,438,6.5\n451,439,7.0\n451,440,7.5\n451,441,8.0\n451,442,8.5\n451,443,9.0\n451,444,9.5\n451,445,10.0\n451,446,10.5\n451,447,11.0\n451,448,11.5\n451,449,12.0\n451,450,0.5\n451,451,0\n451,452,0.5\n451,453,1.0\n451,454,1.5\n451,455,2.0\n451,456,2.5\n451,457,3.0\n451,458,3.5\n451,459,4.0\n451,460,4.5\n451,461,5.0\n451,462,5.5\n451,463,6.0\n451,464,6.5\n451,465,7.0\n451,466,7.5\n451,467,8.0\n451,468,8.5\n451,469,9.0\n451,470,9.5\n451,471,10.0\n451,472,10.5\n451,473,11.0\n451,474,11.5\n451,475,1.0\n451,476,0.5\n451,477,1.0\n451,478,1.5\n451,479,2.0\n451,480,2.5\n451,481,3.0\n451,482,3.5\n451,483,4.0\n451,484,4.5\n451,485,5.0\n451,486,5.5\n451,487,6.0\n451,488,6.5\n451,489,7.0\n451,490,7.5\n451,491,8.0\n451,492,8.5\n451,493,9.0\n451,494,9.5\n451,495,10.0\n451,496,10.5\n451,497,11.0\n451,498,11.5\n451,499,12.0\n451,500,1.5\n451,501,1.0\n451,502,1.5\n451,503,2.0\n451,504,2.5\n451,505,3.0\n451,506,3.5\n451,507,4.0\n451,508,4.5\n451,509,5.0\n451,510,5.5\n451,511,6.0\n451,512,6.5\n451,513,7.0\n451,514,7.5\n451,515,8.0\n451,516,8.5\n451,517,9.0\n451,518,9.5\n451,519,10.0\n451,520,10.5\n451,521,11.0\n451,522,11.5\n451,523,12.0\n451,524,12.5\n451,525,2.0\n451,526,1.5\n451,527,2.0\n451,528,2.5\n451,529,3.0\n451,530,3.5\n451,531,4.0\n451,532,4.5\n451,533,5.0\n451,534,5.5\n451,535,6.0\n451,536,6.5\n451,537,7.0\n451,538,7.5\n451,539,8.0\n451,540,8.5\n451,541,9.0\n451,542,9.5\n451,543,10.0\n451,544,10.5\n451,545,11.0\n451,546,11.5\n451,547,12.0\n451,548,12.5\n451,549,13.0\n451,550,2.5\n451,551,2.0\n451,552,2.5\n451,553,3.0\n451,554,3.5\n451,555,4.0\n451,556,4.5\n451,557,5.0\n451,558,5.5\n451,559,6.0\n451,560,6.5\n451,561,7.0\n451,562,7.5\n451,563,8.0\n451,564,8.5\n451,565,9.0\n451,566,9.5\n451,567,10.0\n451,568,10.5\n451,569,11.0\n451,570,11.5\n451,571,12.0\n451,572,12.5\n451,573,13.0\n451,574,13.5\n451,575,3.0\n451,576,2.5\n451,577,3.0\n451,578,3.5\n451,579,4.0\n451,580,4.5\n451,581,5.0\n451,582,5.5\n451,583,6.0\n451,584,6.5\n451,585,7.0\n451,586,7.5\n451,587,8.0\n451,588,8.5\n451,589,9.0\n451,590,9.5\n451,591,10.0\n451,592,10.5\n451,593,11.0\n451,594,11.5\n451,595,12.0\n451,596,12.5\n451,597,13.0\n451,598,13.5\n451,599,14.0\n451,600,3.5\n451,601,3.0\n451,602,3.5\n451,603,4.0\n451,604,4.5\n451,605,5.0\n451,606,5.5\n451,607,6.0\n451,608,6.5\n451,609,7.0\n451,610,7.5\n451,611,8.0\n451,612,8.5\n451,613,9.0\n451,614,9.5\n451,615,10.0\n451,616,10.5\n451,617,11.0\n451,618,11.5\n451,619,12.0\n451,620,12.5\n451,621,13.0\n451,622,13.5\n451,623,14.0\n451,624,14.5\n452,0,10.0\n452,1,9.5\n452,2,9.0\n452,3,9.5\n452,4,10.0\n452,5,10.5\n452,6,11.0\n452,7,11.5\n452,8,12.0\n452,9,12.5\n452,10,13.0\n452,11,13.5\n452,12,14.0\n452,13,14.5\n452,14,15.0\n452,15,15.5\n452,16,16.0\n452,17,16.5\n452,18,17.0\n452,19,17.5\n452,20,18.0\n452,21,18.5\n452,22,19.0\n452,23,19.5\n452,24,20.0\n452,25,9.5\n452,26,9.0\n452,27,8.5\n452,28,9.0\n452,29,9.5\n452,30,10.0\n452,31,10.5\n452,32,11.0\n452,33,11.5\n452,34,12.0\n452,35,12.5\n452,36,13.0\n452,37,13.5\n452,38,14.0\n452,39,14.5\n452,40,15.0\n452,41,15.5\n452,42,16.0\n452,43,16.5\n452,44,17.0\n452,45,17.5\n452,46,18.0\n452,47,18.5\n452,48,19.0\n452,49,19.5\n452,50,9.0\n452,51,8.5\n452,52,8.0\n452,53,8.5\n452,54,9.0\n452,55,9.5\n452,56,10.0\n452,57,10.5\n452,58,11.0\n452,59,11.5\n452,60,12.0\n452,61,12.5\n452,62,13.0\n452,63,13.5\n452,64,14.0\n452,65,14.5\n452,66,15.0\n452,67,15.5\n452,68,16.0\n452,69,16.5\n452,70,17.0\n452,71,17.5\n452,72,18.0\n452,73,18.5\n452,74,19.0\n452,75,8.5\n452,76,8.0\n452,77,7.5\n452,78,8.0\n452,79,8.5\n452,80,9.0\n452,81,9.5\n452,82,10.0\n452,83,10.5\n452,84,11.0\n452,85,11.5\n452,86,12.0\n452,87,12.5\n452,88,13.0\n452,89,13.5\n452,90,14.0\n452,91,14.5\n452,92,15.0\n452,93,15.5\n452,94,16.0\n452,95,16.5\n452,96,17.0\n452,97,17.5\n452,98,18.0\n452,99,18.5\n452,100,8.0\n452,101,7.5\n452,102,7.0\n452,103,7.5\n452,104,8.0\n452,105,8.5\n452,106,9.0\n452,107,9.5\n452,108,10.0\n452,109,10.5\n452,110,11.0\n452,111,11.5\n452,112,12.0\n452,113,12.5\n452,114,13.0\n452,115,13.5\n452,116,14.0\n452,117,14.5\n452,118,15.0\n452,119,15.5\n452,120,16.0\n452,121,16.5\n452,122,17.0\n452,123,17.5\n452,124,18.0\n452,125,7.5\n452,126,7.0\n452,127,6.5\n452,128,7.0\n452,129,7.5\n452,130,8.0\n452,131,8.5\n452,132,9.0\n452,133,9.5\n452,134,10.0\n452,135,10.5\n452,136,11.0\n452,137,11.5\n452,138,12.0\n452,139,12.5\n452,140,13.0\n452,141,13.5\n452,142,14.0\n452,143,14.5\n452,144,15.0\n452,145,15.5\n452,146,16.0\n452,147,16.5\n452,148,17.0\n452,149,17.5\n452,150,7.0\n452,151,6.5\n452,152,6.0\n452,153,6.5\n452,154,7.0\n452,155,7.5\n452,156,8.0\n452,157,8.5\n452,158,9.0\n452,159,9.5\n452,160,10.0\n452,161,10.5\n452,162,11.0\n452,163,11.5\n452,164,12.0\n452,165,12.5\n452,166,13.0\n452,167,13.5\n452,168,14.0\n452,169,14.5\n452,170,15.0\n452,171,15.5\n452,172,16.0\n452,173,16.5\n452,174,17.0\n452,175,6.5\n452,176,6.0\n452,177,5.5\n452,178,6.0\n452,179,6.5\n452,180,7.0\n452,181,7.5\n452,182,8.0\n452,183,8.5\n452,184,9.0\n452,185,9.5\n452,186,10.0\n452,187,10.5\n452,188,11.0\n452,189,11.5\n452,190,12.0\n452,191,12.5\n452,192,13.0\n452,193,13.5\n452,194,14.0\n452,195,14.5\n452,196,15.0\n452,197,15.5\n452,198,16.0\n452,199,16.5\n452,200,6.0\n452,201,5.5\n452,202,5.0\n452,203,5.5\n452,204,6.0\n452,205,6.5\n452,206,7.0\n452,207,7.5\n452,208,8.0\n452,209,8.5\n452,210,9.0\n452,211,9.5\n452,212,10.0\n452,213,10.5\n452,214,11.0\n452,215,11.5\n452,216,12.0\n452,217,12.5\n452,218,13.0\n452,219,13.5\n452,220,14.0\n452,221,14.5\n452,222,15.0\n452,223,15.5\n452,224,16.0\n452,225,5.5\n452,226,5.0\n452,227,4.5\n452,228,5.0\n452,229,5.5\n452,230,6.0\n452,231,6.5\n452,232,7.0\n452,233,7.5\n452,234,8.0\n452,235,8.5\n452,236,9.0\n452,237,9.5\n452,238,10.0\n452,239,10.5\n452,240,11.0\n452,241,11.5\n452,242,12.0\n452,243,12.5\n452,244,13.0\n452,245,13.5\n452,246,14.0\n452,247,14.5\n452,248,15.0\n452,249,15.5\n452,250,5.0\n452,251,4.5\n452,252,4.0\n452,253,4.5\n452,254,5.0\n452,255,5.5\n452,256,6.0\n452,257,6.5\n452,258,7.0\n452,259,7.5\n452,260,8.0\n452,261,8.5\n452,262,9.0\n452,263,9.5\n452,264,10.0\n452,265,10.5\n452,266,11.0\n452,267,11.5\n452,268,12.0\n452,269,12.5\n452,270,13.0\n452,271,13.5\n452,272,14.0\n452,273,14.5\n452,274,15.0\n452,275,4.5\n452,276,4.0\n452,277,3.5\n452,278,4.0\n452,279,4.5\n452,280,5.0\n452,281,5.5\n452,282,6.0\n452,283,6.5\n452,284,7.0\n452,285,7.5\n452,286,8.0\n452,287,8.5\n452,288,9.0\n452,289,9.5\n452,290,10.0\n452,291,10.5\n452,292,11.0\n452,293,11.5\n452,294,12.0\n452,295,12.5\n452,296,13.0\n452,297,13.5\n452,298,14.0\n452,299,14.5\n452,300,4.0\n452,301,3.5\n452,302,3.0\n452,303,3.5\n452,304,4.0\n452,305,4.5\n452,306,5.0\n452,307,5.5\n452,308,6.0\n452,309,6.5\n452,310,7.0\n452,311,7.5\n452,312,8.0\n452,313,8.5\n452,314,9.0\n452,315,9.5\n452,316,10.0\n452,317,10.5\n452,318,11.0\n452,319,11.5\n452,320,12.0\n452,321,12.5\n452,322,13.0\n452,323,13.5\n452,324,14.0\n452,325,3.5\n452,326,3.0\n452,327,2.5\n452,328,3.0\n452,329,3.5\n452,330,4.0\n452,331,4.5\n452,332,5.0\n452,333,5.5\n452,334,6.0\n452,335,6.5\n452,336,7.0\n452,337,7.5\n452,338,8.0\n452,339,8.5\n452,340,9.0\n452,341,9.5\n452,342,10.0\n452,343,10.5\n452,344,11.0\n452,345,11.5\n452,346,12.0\n452,347,12.5\n452,348,13.0\n452,349,13.5\n452,350,3.0\n452,351,2.5\n452,352,2.0\n452,353,2.5\n452,354,3.0\n452,355,3.5\n452,356,4.0\n452,357,4.5\n452,358,5.0\n452,359,5.5\n452,360,6.0\n452,361,6.5\n452,362,7.0\n452,363,7.5\n452,364,8.0\n452,365,8.5\n452,366,9.0\n452,367,9.5\n452,368,10.0\n452,369,10.5\n452,370,11.0\n452,371,11.5\n452,372,12.0\n452,373,12.5\n452,374,13.0\n452,375,2.5\n452,376,2.0\n452,377,1.5\n452,378,2.0\n452,379,2.5\n452,380,3.0\n452,381,3.5\n452,382,4.0\n452,383,4.5\n452,384,5.0\n452,385,5.5\n452,386,6.0\n452,387,6.5\n452,388,7.0\n452,389,7.5\n452,390,8.0\n452,391,8.5\n452,392,9.0\n452,393,9.5\n452,394,10.0\n452,395,10.5\n452,396,11.0\n452,397,11.5\n452,398,12.0\n452,399,12.5\n452,400,2.0\n452,401,1.5\n452,402,1.0\n452,403,1.5\n452,404,2.0\n452,405,2.5\n452,406,3.0\n452,407,3.5\n452,408,4.0\n452,409,4.5\n452,410,5.0\n452,411,5.5\n452,412,6.0\n452,413,6.5\n452,414,7.0\n452,415,7.5\n452,416,8.0\n452,417,8.5\n452,418,9.0\n452,419,9.5\n452,420,10.0\n452,421,10.5\n452,422,11.0\n452,423,11.5\n452,424,12.0\n452,425,1.5\n452,426,1.0\n452,427,0.5\n452,428,1.0\n452,429,1.5\n452,430,2.0\n452,431,2.5\n452,432,3.0\n452,433,3.5\n452,434,4.0\n452,435,4.5\n452,436,5.0\n452,437,5.5\n452,438,6.0\n452,439,6.5\n452,440,7.0\n452,441,7.5\n452,442,8.0\n452,443,8.5\n452,444,9.0\n452,445,9.5\n452,446,10.0\n452,447,10.5\n452,448,11.0\n452,449,11.5\n452,450,1.0\n452,451,0.5\n452,452,0\n452,453,0.5\n452,454,1.0\n452,455,1.5\n452,456,2.0\n452,457,2.5\n452,458,3.0\n452,459,3.5\n452,460,4.0\n452,461,4.5\n452,462,5.0\n452,463,5.5\n452,464,6.0\n452,465,6.5\n452,466,7.0\n452,467,7.5\n452,468,8.0\n452,469,8.5\n452,470,9.0\n452,471,9.5\n452,472,10.0\n452,473,10.5\n452,474,11.0\n452,475,1.5\n452,476,1.0\n452,477,0.5\n452,478,1.0\n452,479,1.5\n452,480,2.0\n452,481,2.5\n452,482,3.0\n452,483,3.5\n452,484,4.0\n452,485,4.5\n452,486,5.0\n452,487,5.5\n452,488,6.0\n452,489,6.5\n452,490,7.0\n452,491,7.5\n452,492,8.0\n452,493,8.5\n452,494,9.0\n452,495,9.5\n452,496,10.0\n452,497,10.5\n452,498,11.0\n452,499,11.5\n452,500,2.0\n452,501,1.5\n452,502,1.0\n452,503,1.5\n452,504,2.0\n452,505,2.5\n452,506,3.0\n452,507,3.5\n452,508,4.0\n452,509,4.5\n452,510,5.0\n452,511,5.5\n452,512,6.0\n452,513,6.5\n452,514,7.0\n452,515,7.5\n452,516,8.0\n452,517,8.5\n452,518,9.0\n452,519,9.5\n452,520,10.0\n452,521,10.5\n452,522,11.0\n452,523,11.5\n452,524,12.0\n452,525,2.5\n452,526,2.0\n452,527,1.5\n452,528,2.0\n452,529,2.5\n452,530,3.0\n452,531,3.5\n452,532,4.0\n452,533,4.5\n452,534,5.0\n452,535,5.5\n452,536,6.0\n452,537,6.5\n452,538,7.0\n452,539,7.5\n452,540,8.0\n452,541,8.5\n452,542,9.0\n452,543,9.5\n452,544,10.0\n452,545,10.5\n452,546,11.0\n452,547,11.5\n452,548,12.0\n452,549,12.5\n452,550,3.0\n452,551,2.5\n452,552,2.0\n452,553,2.5\n452,554,3.0\n452,555,3.5\n452,556,4.0\n452,557,4.5\n452,558,5.0\n452,559,5.5\n452,560,6.0\n452,561,6.5\n452,562,7.0\n452,563,7.5\n452,564,8.0\n452,565,8.5\n452,566,9.0\n452,567,9.5\n452,568,10.0\n452,569,10.5\n452,570,11.0\n452,571,11.5\n452,572,12.0\n452,573,12.5\n452,574,13.0\n452,575,3.5\n452,576,3.0\n452,577,2.5\n452,578,3.0\n452,579,3.5\n452,580,4.0\n452,581,4.5\n452,582,5.0\n452,583,5.5\n452,584,6.0\n452,585,6.5\n452,586,7.0\n452,587,7.5\n452,588,8.0\n452,589,8.5\n452,590,9.0\n452,591,9.5\n452,592,10.0\n452,593,10.5\n452,594,11.0\n452,595,11.5\n452,596,12.0\n452,597,12.5\n452,598,13.0\n452,599,13.5\n452,600,4.0\n452,601,3.5\n452,602,3.0\n452,603,3.5\n452,604,4.0\n452,605,4.5\n452,606,5.0\n452,607,5.5\n452,608,6.0\n452,609,6.5\n452,610,7.0\n452,611,7.5\n452,612,8.0\n452,613,8.5\n452,614,9.0\n452,615,9.5\n452,616,10.0\n452,617,10.5\n452,618,11.0\n452,619,11.5\n452,620,12.0\n452,621,12.5\n452,622,13.0\n452,623,13.5\n452,624,14.0\n453,0,10.5\n453,1,10.0\n453,2,9.5\n453,3,9.0\n453,4,9.5\n453,5,10.0\n453,6,10.5\n453,7,11.0\n453,8,11.5\n453,9,12.0\n453,10,12.5\n453,11,13.0\n453,12,13.5\n453,13,14.0\n453,14,14.5\n453,15,15.0\n453,16,15.5\n453,17,16.0\n453,18,16.5\n453,19,17.0\n453,20,17.5\n453,21,18.0\n453,22,18.5\n453,23,19.0\n453,24,19.5\n453,25,10.0\n453,26,9.5\n453,27,9.0\n453,28,8.5\n453,29,9.0\n453,30,9.5\n453,31,10.0\n453,32,10.5\n453,33,11.0\n453,34,11.5\n453,35,12.0\n453,36,12.5\n453,37,13.0\n453,38,13.5\n453,39,14.0\n453,40,14.5\n453,41,15.0\n453,42,15.5\n453,43,16.0\n453,44,16.5\n453,45,17.0\n453,46,17.5\n453,47,18.0\n453,48,18.5\n453,49,19.0\n453,50,9.5\n453,51,9.0\n453,52,8.5\n453,53,8.0\n453,54,8.5\n453,55,9.0\n453,56,9.5\n453,57,10.0\n453,58,10.5\n453,59,11.0\n453,60,11.5\n453,61,12.0\n453,62,12.5\n453,63,13.0\n453,64,13.5\n453,65,14.0\n453,66,14.5\n453,67,15.0\n453,68,15.5\n453,69,16.0\n453,70,16.5\n453,71,17.0\n453,72,17.5\n453,73,18.0\n453,74,18.5\n453,75,9.0\n453,76,8.5\n453,77,8.0\n453,78,7.5\n453,79,8.0\n453,80,8.5\n453,81,9.0\n453,82,9.5\n453,83,10.0\n453,84,10.5\n453,85,11.0\n453,86,11.5\n453,87,12.0\n453,88,12.5\n453,89,13.0\n453,90,13.5\n453,91,14.0\n453,92,14.5\n453,93,15.0\n453,94,15.5\n453,95,16.0\n453,96,16.5\n453,97,17.0\n453,98,17.5\n453,99,18.0\n453,100,8.5\n453,101,8.0\n453,102,7.5\n453,103,7.0\n453,104,7.5\n453,105,8.0\n453,106,8.5\n453,107,9.0\n453,108,9.5\n453,109,10.0\n453,110,10.5\n453,111,11.0\n453,112,11.5\n453,113,12.0\n453,114,12.5\n453,115,13.0\n453,116,13.5\n453,117,14.0\n453,118,14.5\n453,119,15.0\n453,120,15.5\n453,121,16.0\n453,122,16.5\n453,123,17.0\n453,124,17.5\n453,125,8.0\n453,126,7.5\n453,127,7.0\n453,128,6.5\n453,129,7.0\n453,130,7.5\n453,131,8.0\n453,132,8.5\n453,133,9.0\n453,134,9.5\n453,135,10.0\n453,136,10.5\n453,137,11.0\n453,138,11.5\n453,139,12.0\n453,140,12.5\n453,141,13.0\n453,142,13.5\n453,143,14.0\n453,144,14.5\n453,145,15.0\n453,146,15.5\n453,147,16.0\n453,148,16.5\n453,149,17.0\n453,150,7.5\n453,151,7.0\n453,152,6.5\n453,153,6.0\n453,154,6.5\n453,155,7.0\n453,156,7.5\n453,157,8.0\n453,158,8.5\n453,159,9.0\n453,160,9.5\n453,161,10.0\n453,162,10.5\n453,163,11.0\n453,164,11.5\n453,165,12.0\n453,166,12.5\n453,167,13.0\n453,168,13.5\n453,169,14.0\n453,170,14.5\n453,171,15.0\n453,172,15.5\n453,173,16.0\n453,174,16.5\n453,175,7.0\n453,176,6.5\n453,177,6.0\n453,178,5.5\n453,179,6.0\n453,180,6.5\n453,181,7.0\n453,182,7.5\n453,183,8.0\n453,184,8.5\n453,185,9.0\n453,186,9.5\n453,187,10.0\n453,188,10.5\n453,189,11.0\n453,190,11.5\n453,191,12.0\n453,192,12.5\n453,193,13.0\n453,194,13.5\n453,195,14.0\n453,196,14.5\n453,197,15.0\n453,198,15.5\n453,199,16.0\n453,200,6.5\n453,201,6.0\n453,202,5.5\n453,203,5.0\n453,204,5.5\n453,205,6.0\n453,206,6.5\n453,207,7.0\n453,208,7.5\n453,209,8.0\n453,210,8.5\n453,211,9.0\n453,212,9.5\n453,213,10.0\n453,214,10.5\n453,215,11.0\n453,216,11.5\n453,217,12.0\n453,218,12.5\n453,219,13.0\n453,220,13.5\n453,221,14.0\n453,222,14.5\n453,223,15.0\n453,224,15.5\n453,225,6.0\n453,226,5.5\n453,227,5.0\n453,228,4.5\n453,229,5.0\n453,230,5.5\n453,231,6.0\n453,232,6.5\n453,233,7.0\n453,234,7.5\n453,235,8.0\n453,236,8.5\n453,237,9.0\n453,238,9.5\n453,239,10.0\n453,240,10.5\n453,241,11.0\n453,242,11.5\n453,243,12.0\n453,244,12.5\n453,245,13.0\n453,246,13.5\n453,247,14.0\n453,248,14.5\n453,249,15.0\n453,250,5.5\n453,251,5.0\n453,252,4.5\n453,253,4.0\n453,254,4.5\n453,255,5.0\n453,256,5.5\n453,257,6.0\n453,258,6.5\n453,259,7.0\n453,260,7.5\n453,261,8.0\n453,262,8.5\n453,263,9.0\n453,264,9.5\n453,265,10.0\n453,266,10.5\n453,267,11.0\n453,268,11.5\n453,269,12.0\n453,270,12.5\n453,271,13.0\n453,272,13.5\n453,273,14.0\n453,274,14.5\n453,275,5.0\n453,276,4.5\n453,277,4.0\n453,278,3.5\n453,279,4.0\n453,280,4.5\n453,281,5.0\n453,282,5.5\n453,283,6.0\n453,284,6.5\n453,285,7.0\n453,286,7.5\n453,287,8.0\n453,288,8.5\n453,289,9.0\n453,290,9.5\n453,291,10.0\n453,292,10.5\n453,293,11.0\n453,294,11.5\n453,295,12.0\n453,296,12.5\n453,297,13.0\n453,298,13.5\n453,299,14.0\n453,300,4.5\n453,301,4.0\n453,302,3.5\n453,303,3.0\n453,304,3.5\n453,305,4.0\n453,306,4.5\n453,307,5.0\n453,308,5.5\n453,309,6.0\n453,310,6.5\n453,311,7.0\n453,312,7.5\n453,313,8.0\n453,314,8.5\n453,315,9.0\n453,316,9.5\n453,317,10.0\n453,318,10.5\n453,319,11.0\n453,320,11.5\n453,321,12.0\n453,322,12.5\n453,323,13.0\n453,324,13.5\n453,325,4.0\n453,326,3.5\n453,327,3.0\n453,328,2.5\n453,329,3.0\n453,330,3.5\n453,331,4.0\n453,332,4.5\n453,333,5.0\n453,334,5.5\n453,335,6.0\n453,336,6.5\n453,337,7.0\n453,338,7.5\n453,339,8.0\n453,340,8.5\n453,341,9.0\n453,342,9.5\n453,343,10.0\n453,344,10.5\n453,345,11.0\n453,346,11.5\n453,347,12.0\n453,348,12.5\n453,349,13.0\n453,350,3.5\n453,351,3.0\n453,352,2.5\n453,353,2.0\n453,354,2.5\n453,355,3.0\n453,356,3.5\n453,357,4.0\n453,358,4.5\n453,359,5.0\n453,360,5.5\n453,361,6.0\n453,362,6.5\n453,363,7.0\n453,364,7.5\n453,365,8.0\n453,366,8.5\n453,367,9.0\n453,368,9.5\n453,369,10.0\n453,370,10.5\n453,371,11.0\n453,372,11.5\n453,373,12.0\n453,374,12.5\n453,375,3.0\n453,376,2.5\n453,377,2.0\n453,378,1.5\n453,379,2.0\n453,380,2.5\n453,381,3.0\n453,382,3.5\n453,383,4.0\n453,384,4.5\n453,385,5.0\n453,386,5.5\n453,387,6.0\n453,388,6.5\n453,389,7.0\n453,390,7.5\n453,391,8.0\n453,392,8.5\n453,393,9.0\n453,394,9.5\n453,395,10.0\n453,396,10.5\n453,397,11.0\n453,398,11.5\n453,399,12.0\n453,400,2.5\n453,401,2.0\n453,402,1.5\n453,403,1.0\n453,404,1.5\n453,405,2.0\n453,406,2.5\n453,407,3.0\n453,408,3.5\n453,409,4.0\n453,410,4.5\n453,411,5.0\n453,412,5.5\n453,413,6.0\n453,414,6.5\n453,415,7.0\n453,416,7.5\n453,417,8.0\n453,418,8.5\n453,419,9.0\n453,420,9.5\n453,421,10.0\n453,422,10.5\n453,423,11.0\n453,424,11.5\n453,425,2.0\n453,426,1.5\n453,427,1.0\n453,428,0.5\n453,429,1.0\n453,430,1.5\n453,431,2.0\n453,432,2.5\n453,433,3.0\n453,434,3.5\n453,435,4.0\n453,436,4.5\n453,437,5.0\n453,438,5.5\n453,439,6.0\n453,440,6.5\n453,441,7.0\n453,442,7.5\n453,443,8.0\n453,444,8.5\n453,445,9.0\n453,446,9.5\n453,447,10.0\n453,448,10.5\n453,449,11.0\n453,450,1.5\n453,451,1.0\n453,452,0.5\n453,453,0\n453,454,0.5\n453,455,1.0\n453,456,1.5\n453,457,2.0\n453,458,2.5\n453,459,3.0\n453,460,3.5\n453,461,4.0\n453,462,4.5\n453,463,5.0\n453,464,5.5\n453,465,6.0\n453,466,6.5\n453,467,7.0\n453,468,7.5\n453,469,8.0\n453,470,8.5\n453,471,9.0\n453,472,9.5\n453,473,10.0\n453,474,10.5\n453,475,2.0\n453,476,1.5\n453,477,1.0\n453,478,0.5\n453,479,1.0\n453,480,1.5\n453,481,2.0\n453,482,2.5\n453,483,3.0\n453,484,3.5\n453,485,4.0\n453,486,4.5\n453,487,5.0\n453,488,5.5\n453,489,6.0\n453,490,6.5\n453,491,7.0\n453,492,7.5\n453,493,8.0\n453,494,8.5\n453,495,9.0\n453,496,9.5\n453,497,10.0\n453,498,10.5\n453,499,11.0\n453,500,2.5\n453,501,2.0\n453,502,1.5\n453,503,1.0\n453,504,1.5\n453,505,2.0\n453,506,2.5\n453,507,3.0\n453,508,3.5\n453,509,4.0\n453,510,4.5\n453,511,5.0\n453,512,5.5\n453,513,6.0\n453,514,6.5\n453,515,7.0\n453,516,7.5\n453,517,8.0\n453,518,8.5\n453,519,9.0\n453,520,9.5\n453,521,10.0\n453,522,10.5\n453,523,11.0\n453,524,11.5\n453,525,3.0\n453,526,2.5\n453,527,2.0\n453,528,1.5\n453,529,2.0\n453,530,2.5\n453,531,3.0\n453,532,3.5\n453,533,4.0\n453,534,4.5\n453,535,5.0\n453,536,5.5\n453,537,6.0\n453,538,6.5\n453,539,7.0\n453,540,7.5\n453,541,8.0\n453,542,8.5\n453,543,9.0\n453,544,9.5\n453,545,10.0\n453,546,10.5\n453,547,11.0\n453,548,11.5\n453,549,12.0\n453,550,3.5\n453,551,3.0\n453,552,2.5\n453,553,2.0\n453,554,2.5\n453,555,3.0\n453,556,3.5\n453,557,4.0\n453,558,4.5\n453,559,5.0\n453,560,5.5\n453,561,6.0\n453,562,6.5\n453,563,7.0\n453,564,7.5\n453,565,8.0\n453,566,8.5\n453,567,9.0\n453,568,9.5\n453,569,10.0\n453,570,10.5\n453,571,11.0\n453,572,11.5\n453,573,12.0\n453,574,12.5\n453,575,4.0\n453,576,3.5\n453,577,3.0\n453,578,2.5\n453,579,3.0\n453,580,3.5\n453,581,4.0\n453,582,4.5\n453,583,5.0\n453,584,5.5\n453,585,6.0\n453,586,6.5\n453,587,7.0\n453,588,7.5\n453,589,8.0\n453,590,8.5\n453,591,9.0\n453,592,9.5\n453,593,10.0\n453,594,10.5\n453,595,11.0\n453,596,11.5\n453,597,12.0\n453,598,12.5\n453,599,13.0\n453,600,4.5\n453,601,4.0\n453,602,3.5\n453,603,3.0\n453,604,3.5\n453,605,4.0\n453,606,4.5\n453,607,5.0\n453,608,5.5\n453,609,6.0\n453,610,6.5\n453,611,7.0\n453,612,7.5\n453,613,8.0\n453,614,8.5\n453,615,9.0\n453,616,9.5\n453,617,10.0\n453,618,10.5\n453,619,11.0\n453,620,11.5\n453,621,12.0\n453,622,12.5\n453,623,13.0\n453,624,13.5\n454,0,11.0\n454,1,10.5\n454,2,10.0\n454,3,9.5\n454,4,9.0\n454,5,9.5\n454,6,10.0\n454,7,10.5\n454,8,11.0\n454,9,11.5\n454,10,12.0\n454,11,12.5\n454,12,13.0\n454,13,13.5\n454,14,14.0\n454,15,14.5\n454,16,15.0\n454,17,15.5\n454,18,16.0\n454,19,16.5\n454,20,17.0\n454,21,17.5\n454,22,18.0\n454,23,18.5\n454,24,19.0\n454,25,10.5\n454,26,10.0\n454,27,9.5\n454,28,9.0\n454,29,8.5\n454,30,9.0\n454,31,9.5\n454,32,10.0\n454,33,10.5\n454,34,11.0\n454,35,11.5\n454,36,12.0\n454,37,12.5\n454,38,13.0\n454,39,13.5\n454,40,14.0\n454,41,14.5\n454,42,15.0\n454,43,15.5\n454,44,16.0\n454,45,16.5\n454,46,17.0\n454,47,17.5\n454,48,18.0\n454,49,18.5\n454,50,10.0\n454,51,9.5\n454,52,9.0\n454,53,8.5\n454,54,8.0\n454,55,8.5\n454,56,9.0\n454,57,9.5\n454,58,10.0\n454,59,10.5\n454,60,11.0\n454,61,11.5\n454,62,12.0\n454,63,12.5\n454,64,13.0\n454,65,13.5\n454,66,14.0\n454,67,14.5\n454,68,15.0\n454,69,15.5\n454,70,16.0\n454,71,16.5\n454,72,17.0\n454,73,17.5\n454,74,18.0\n454,75,9.5\n454,76,9.0\n454,77,8.5\n454,78,8.0\n454,79,7.5\n454,80,8.0\n454,81,8.5\n454,82,9.0\n454,83,9.5\n454,84,10.0\n454,85,10.5\n454,86,11.0\n454,87,11.5\n454,88,12.0\n454,89,12.5\n454,90,13.0\n454,91,13.5\n454,92,14.0\n454,93,14.5\n454,94,15.0\n454,95,15.5\n454,96,16.0\n454,97,16.5\n454,98,17.0\n454,99,17.5\n454,100,9.0\n454,101,8.5\n454,102,8.0\n454,103,7.5\n454,104,7.0\n454,105,7.5\n454,106,8.0\n454,107,8.5\n454,108,9.0\n454,109,9.5\n454,110,10.0\n454,111,10.5\n454,112,11.0\n454,113,11.5\n454,114,12.0\n454,115,12.5\n454,116,13.0\n454,117,13.5\n454,118,14.0\n454,119,14.5\n454,120,15.0\n454,121,15.5\n454,122,16.0\n454,123,16.5\n454,124,17.0\n454,125,8.5\n454,126,8.0\n454,127,7.5\n454,128,7.0\n454,129,6.5\n454,130,7.0\n454,131,7.5\n454,132,8.0\n454,133,8.5\n454,134,9.0\n454,135,9.5\n454,136,10.0\n454,137,10.5\n454,138,11.0\n454,139,11.5\n454,140,12.0\n454,141,12.5\n454,142,13.0\n454,143,13.5\n454,144,14.0\n454,145,14.5\n454,146,15.0\n454,147,15.5\n454,148,16.0\n454,149,16.5\n454,150,8.0\n454,151,7.5\n454,152,7.0\n454,153,6.5\n454,154,6.0\n454,155,6.5\n454,156,7.0\n454,157,7.5\n454,158,8.0\n454,159,8.5\n454,160,9.0\n454,161,9.5\n454,162,10.0\n454,163,10.5\n454,164,11.0\n454,165,11.5\n454,166,12.0\n454,167,12.5\n454,168,13.0\n454,169,13.5\n454,170,14.0\n454,171,14.5\n454,172,15.0\n454,173,15.5\n454,174,16.0\n454,175,7.5\n454,176,7.0\n454,177,6.5\n454,178,6.0\n454,179,5.5\n454,180,6.0\n454,181,6.5\n454,182,7.0\n454,183,7.5\n454,184,8.0\n454,185,8.5\n454,186,9.0\n454,187,9.5\n454,188,10.0\n454,189,10.5\n454,190,11.0\n454,191,11.5\n454,192,12.0\n454,193,12.5\n454,194,13.0\n454,195,13.5\n454,196,14.0\n454,197,14.5\n454,198,15.0\n454,199,15.5\n454,200,7.0\n454,201,6.5\n454,202,6.0\n454,203,5.5\n454,204,5.0\n454,205,5.5\n454,206,6.0\n454,207,6.5\n454,208,7.0\n454,209,7.5\n454,210,8.0\n454,211,8.5\n454,212,9.0\n454,213,9.5\n454,214,10.0\n454,215,10.5\n454,216,11.0\n454,217,11.5\n454,218,12.0\n454,219,12.5\n454,220,13.0\n454,221,13.5\n454,222,14.0\n454,223,14.5\n454,224,15.0\n454,225,6.5\n454,226,6.0\n454,227,5.5\n454,228,5.0\n454,229,4.5\n454,230,5.0\n454,231,5.5\n454,232,6.0\n454,233,6.5\n454,234,7.0\n454,235,7.5\n454,236,8.0\n454,237,8.5\n454,238,9.0\n454,239,9.5\n454,240,10.0\n454,241,10.5\n454,242,11.0\n454,243,11.5\n454,244,12.0\n454,245,12.5\n454,246,13.0\n454,247,13.5\n454,248,14.0\n454,249,14.5\n454,250,6.0\n454,251,5.5\n454,252,5.0\n454,253,4.5\n454,254,4.0\n454,255,4.5\n454,256,5.0\n454,257,5.5\n454,258,6.0\n454,259,6.5\n454,260,7.0\n454,261,7.5\n454,262,8.0\n454,263,8.5\n454,264,9.0\n454,265,9.5\n454,266,10.0\n454,267,10.5\n454,268,11.0\n454,269,11.5\n454,270,12.0\n454,271,12.5\n454,272,13.0\n454,273,13.5\n454,274,14.0\n454,275,5.5\n454,276,5.0\n454,277,4.5\n454,278,4.0\n454,279,3.5\n454,280,4.0\n454,281,4.5\n454,282,5.0\n454,283,5.5\n454,284,6.0\n454,285,6.5\n454,286,7.0\n454,287,7.5\n454,288,8.0\n454,289,8.5\n454,290,9.0\n454,291,9.5\n454,292,10.0\n454,293,10.5\n454,294,11.0\n454,295,11.5\n454,296,12.0\n454,297,12.5\n454,298,13.0\n454,299,13.5\n454,300,5.0\n454,301,4.5\n454,302,4.0\n454,303,3.5\n454,304,3.0\n454,305,3.5\n454,306,4.0\n454,307,4.5\n454,308,5.0\n454,309,5.5\n454,310,6.0\n454,311,6.5\n454,312,7.0\n454,313,7.5\n454,314,8.0\n454,315,8.5\n454,316,9.0\n454,317,9.5\n454,318,10.0\n454,319,10.5\n454,320,11.0\n454,321,11.5\n454,322,12.0\n454,323,12.5\n454,324,13.0\n454,325,4.5\n454,326,4.0\n454,327,3.5\n454,328,3.0\n454,329,2.5\n454,330,3.0\n454,331,3.5\n454,332,4.0\n454,333,4.5\n454,334,5.0\n454,335,5.5\n454,336,6.0\n454,337,6.5\n454,338,7.0\n454,339,7.5\n454,340,8.0\n454,341,8.5\n454,342,9.0\n454,343,9.5\n454,344,10.0\n454,345,10.5\n454,346,11.0\n454,347,11.5\n454,348,12.0\n454,349,12.5\n454,350,4.0\n454,351,3.5\n454,352,3.0\n454,353,2.5\n454,354,2.0\n454,355,2.5\n454,356,3.0\n454,357,3.5\n454,358,4.0\n454,359,4.5\n454,360,5.0\n454,361,5.5\n454,362,6.0\n454,363,6.5\n454,364,7.0\n454,365,7.5\n454,366,8.0\n454,367,8.5\n454,368,9.0\n454,369,9.5\n454,370,10.0\n454,371,10.5\n454,372,11.0\n454,373,11.5\n454,374,12.0\n454,375,3.5\n454,376,3.0\n454,377,2.5\n454,378,2.0\n454,379,1.5\n454,380,2.0\n454,381,2.5\n454,382,3.0\n454,383,3.5\n454,384,4.0\n454,385,4.5\n454,386,5.0\n454,387,5.5\n454,388,6.0\n454,389,6.5\n454,390,7.0\n454,391,7.5\n454,392,8.0\n454,393,8.5\n454,394,9.0\n454,395,9.5\n454,396,10.0\n454,397,10.5\n454,398,11.0\n454,399,11.5\n454,400,3.0\n454,401,2.5\n454,402,2.0\n454,403,1.5\n454,404,1.0\n454,405,1.5\n454,406,2.0\n454,407,2.5\n454,408,3.0\n454,409,3.5\n454,410,4.0\n454,411,4.5\n454,412,5.0\n454,413,5.5\n454,414,6.0\n454,415,6.5\n454,416,7.0\n454,417,7.5\n454,418,8.0\n454,419,8.5\n454,420,9.0\n454,421,9.5\n454,422,10.0\n454,423,10.5\n454,424,11.0\n454,425,2.5\n454,426,2.0\n454,427,1.5\n454,428,1.0\n454,429,0.5\n454,430,1.0\n454,431,1.5\n454,432,2.0\n454,433,2.5\n454,434,3.0\n454,435,3.5\n454,436,4.0\n454,437,4.5\n454,438,5.0\n454,439,5.5\n454,440,6.0\n454,441,6.5\n454,442,7.0\n454,443,7.5\n454,444,8.0\n454,445,8.5\n454,446,9.0\n454,447,9.5\n454,448,10.0\n454,449,10.5\n454,450,2.0\n454,451,1.5\n454,452,1.0\n454,453,0.5\n454,454,0\n454,455,0.5\n454,456,1.0\n454,457,1.5\n454,458,2.0\n454,459,2.5\n454,460,3.0\n454,461,3.5\n454,462,4.0\n454,463,4.5\n454,464,5.0\n454,465,5.5\n454,466,6.0\n454,467,6.5\n454,468,7.0\n454,469,7.5\n454,470,8.0\n454,471,8.5\n454,472,9.0\n454,473,9.5\n454,474,10.0\n454,475,2.5\n454,476,2.0\n454,477,1.5\n454,478,1.0\n454,479,0.5\n454,480,1.0\n454,481,1.5\n454,482,2.0\n454,483,2.5\n454,484,3.0\n454,485,3.5\n454,486,4.0\n454,487,4.5\n454,488,5.0\n454,489,5.5\n454,490,6.0\n454,491,6.5\n454,492,7.0\n454,493,7.5\n454,494,8.0\n454,495,8.5\n454,496,9.0\n454,497,9.5\n454,498,10.0\n454,499,10.5\n454,500,3.0\n454,501,2.5\n454,502,2.0\n454,503,1.5\n454,504,1.0\n454,505,1.5\n454,506,2.0\n454,507,2.5\n454,508,3.0\n454,509,3.5\n454,510,4.0\n454,511,4.5\n454,512,5.0\n454,513,5.5\n454,514,6.0\n454,515,6.5\n454,516,7.0\n454,517,7.5\n454,518,8.0\n454,519,8.5\n454,520,9.0\n454,521,9.5\n454,522,10.0\n454,523,10.5\n454,524,11.0\n454,525,3.5\n454,526,3.0\n454,527,2.5\n454,528,2.0\n454,529,1.5\n454,530,2.0\n454,531,2.5\n454,532,3.0\n454,533,3.5\n454,534,4.0\n454,535,4.5\n454,536,5.0\n454,537,5.5\n454,538,6.0\n454,539,6.5\n454,540,7.0\n454,541,7.5\n454,542,8.0\n454,543,8.5\n454,544,9.0\n454,545,9.5\n454,546,10.0\n454,547,10.5\n454,548,11.0\n454,549,11.5\n454,550,4.0\n454,551,3.5\n454,552,3.0\n454,553,2.5\n454,554,2.0\n454,555,2.5\n454,556,3.0\n454,557,3.5\n454,558,4.0\n454,559,4.5\n454,560,5.0\n454,561,5.5\n454,562,6.0\n454,563,6.5\n454,564,7.0\n454,565,7.5\n454,566,8.0\n454,567,8.5\n454,568,9.0\n454,569,9.5\n454,570,10.0\n454,571,10.5\n454,572,11.0\n454,573,11.5\n454,574,12.0\n454,575,4.5\n454,576,4.0\n454,577,3.5\n454,578,3.0\n454,579,2.5\n454,580,3.0\n454,581,3.5\n454,582,4.0\n454,583,4.5\n454,584,5.0\n454,585,5.5\n454,586,6.0\n454,587,6.5\n454,588,7.0\n454,589,7.5\n454,590,8.0\n454,591,8.5\n454,592,9.0\n454,593,9.5\n454,594,10.0\n454,595,10.5\n454,596,11.0\n454,597,11.5\n454,598,12.0\n454,599,12.5\n454,600,5.0\n454,601,4.5\n454,602,4.0\n454,603,3.5\n454,604,3.0\n454,605,3.5\n454,606,4.0\n454,607,4.5\n454,608,5.0\n454,609,5.5\n454,610,6.0\n454,611,6.5\n454,612,7.0\n454,613,7.5\n454,614,8.0\n454,615,8.5\n454,616,9.0\n454,617,9.5\n454,618,10.0\n454,619,10.5\n454,620,11.0\n454,621,11.5\n454,622,12.0\n454,623,12.5\n454,624,13.0\n455,0,11.5\n455,1,11.0\n455,2,10.5\n455,3,10.0\n455,4,9.5\n455,5,9.0\n455,6,9.5\n455,7,10.0\n455,8,10.5\n455,9,11.0\n455,10,11.5\n455,11,12.0\n455,12,12.5\n455,13,13.0\n455,14,13.5\n455,15,14.0\n455,16,14.5\n455,17,15.0\n455,18,15.5\n455,19,16.0\n455,20,16.5\n455,21,17.0\n455,22,17.5\n455,23,18.0\n455,24,18.5\n455,25,11.0\n455,26,10.5\n455,27,10.0\n455,28,9.5\n455,29,9.0\n455,30,8.5\n455,31,9.0\n455,32,9.5\n455,33,10.0\n455,34,10.5\n455,35,11.0\n455,36,11.5\n455,37,12.0\n455,38,12.5\n455,39,13.0\n455,40,13.5\n455,41,14.0\n455,42,14.5\n455,43,15.0\n455,44,15.5\n455,45,16.0\n455,46,16.5\n455,47,17.0\n455,48,17.5\n455,49,18.0\n455,50,10.5\n455,51,10.0\n455,52,9.5\n455,53,9.0\n455,54,8.5\n455,55,8.0\n455,56,8.5\n455,57,9.0\n455,58,9.5\n455,59,10.0\n455,60,10.5\n455,61,11.0\n455,62,11.5\n455,63,12.0\n455,64,12.5\n455,65,13.0\n455,66,13.5\n455,67,14.0\n455,68,14.5\n455,69,15.0\n455,70,15.5\n455,71,16.0\n455,72,16.5\n455,73,17.0\n455,74,17.5\n455,75,10.0\n455,76,9.5\n455,77,9.0\n455,78,8.5\n455,79,8.0\n455,80,7.5\n455,81,8.0\n455,82,8.5\n455,83,9.0\n455,84,9.5\n455,85,10.0\n455,86,10.5\n455,87,11.0\n455,88,11.5\n455,89,12.0\n455,90,12.5\n455,91,13.0\n455,92,13.5\n455,93,14.0\n455,94,14.5\n455,95,15.0\n455,96,15.5\n455,97,16.0\n455,98,16.5\n455,99,17.0\n455,100,9.5\n455,101,9.0\n455,102,8.5\n455,103,8.0\n455,104,7.5\n455,105,7.0\n455,106,7.5\n455,107,8.0\n455,108,8.5\n455,109,9.0\n455,110,9.5\n455,111,10.0\n455,112,10.5\n455,113,11.0\n455,114,11.5\n455,115,12.0\n455,116,12.5\n455,117,13.0\n455,118,13.5\n455,119,14.0\n455,120,14.5\n455,121,15.0\n455,122,15.5\n455,123,16.0\n455,124,16.5\n455,125,9.0\n455,126,8.5\n455,127,8.0\n455,128,7.5\n455,129,7.0\n455,130,6.5\n455,131,7.0\n455,132,7.5\n455,133,8.0\n455,134,8.5\n455,135,9.0\n455,136,9.5\n455,137,10.0\n455,138,10.5\n455,139,11.0\n455,140,11.5\n455,141,12.0\n455,142,12.5\n455,143,13.0\n455,144,13.5\n455,145,14.0\n455,146,14.5\n455,147,15.0\n455,148,15.5\n455,149,16.0\n455,150,8.5\n455,151,8.0\n455,152,7.5\n455,153,7.0\n455,154,6.5\n455,155,6.0\n455,156,6.5\n455,157,7.0\n455,158,7.5\n455,159,8.0\n455,160,8.5\n455,161,9.0\n455,162,9.5\n455,163,10.0\n455,164,10.5\n455,165,11.0\n455,166,11.5\n455,167,12.0\n455,168,12.5\n455,169,13.0\n455,170,13.5\n455,171,14.0\n455,172,14.5\n455,173,15.0\n455,174,15.5\n455,175,8.0\n455,176,7.5\n455,177,7.0\n455,178,6.5\n455,179,6.0\n455,180,5.5\n455,181,6.0\n455,182,6.5\n455,183,7.0\n455,184,7.5\n455,185,8.0\n455,186,8.5\n455,187,9.0\n455,188,9.5\n455,189,10.0\n455,190,10.5\n455,191,11.0\n455,192,11.5\n455,193,12.0\n455,194,12.5\n455,195,13.0\n455,196,13.5\n455,197,14.0\n455,198,14.5\n455,199,15.0\n455,200,7.5\n455,201,7.0\n455,202,6.5\n455,203,6.0\n455,204,5.5\n455,205,5.0\n455,206,5.5\n455,207,6.0\n455,208,6.5\n455,209,7.0\n455,210,7.5\n455,211,8.0\n455,212,8.5\n455,213,9.0\n455,214,9.5\n455,215,10.0\n455,216,10.5\n455,217,11.0\n455,218,11.5\n455,219,12.0\n455,220,12.5\n455,221,13.0\n455,222,13.5\n455,223,14.0\n455,224,14.5\n455,225,7.0\n455,226,6.5\n455,227,6.0\n455,228,5.5\n455,229,5.0\n455,230,4.5\n455,231,5.0\n455,232,5.5\n455,233,6.0\n455,234,6.5\n455,235,7.0\n455,236,7.5\n455,237,8.0\n455,238,8.5\n455,239,9.0\n455,240,9.5\n455,241,10.0\n455,242,10.5\n455,243,11.0\n455,244,11.5\n455,245,12.0\n455,246,12.5\n455,247,13.0\n455,248,13.5\n455,249,14.0\n455,250,6.5\n455,251,6.0\n455,252,5.5\n455,253,5.0\n455,254,4.5\n455,255,4.0\n455,256,4.5\n455,257,5.0\n455,258,5.5\n455,259,6.0\n455,260,6.5\n455,261,7.0\n455,262,7.5\n455,263,8.0\n455,264,8.5\n455,265,9.0\n455,266,9.5\n455,267,10.0\n455,268,10.5\n455,269,11.0\n455,270,11.5\n455,271,12.0\n455,272,12.5\n455,273,13.0\n455,274,13.5\n455,275,6.0\n455,276,5.5\n455,277,5.0\n455,278,4.5\n455,279,4.0\n455,280,3.5\n455,281,4.0\n455,282,4.5\n455,283,5.0\n455,284,5.5\n455,285,6.0\n455,286,6.5\n455,287,7.0\n455,288,7.5\n455,289,8.0\n455,290,8.5\n455,291,9.0\n455,292,9.5\n455,293,10.0\n455,294,10.5\n455,295,11.0\n455,296,11.5\n455,297,12.0\n455,298,12.5\n455,299,13.0\n455,300,5.5\n455,301,5.0\n455,302,4.5\n455,303,4.0\n455,304,3.5\n455,305,3.0\n455,306,3.5\n455,307,4.0\n455,308,4.5\n455,309,5.0\n455,310,5.5\n455,311,6.0\n455,312,6.5\n455,313,7.0\n455,314,7.5\n455,315,8.0\n455,316,8.5\n455,317,9.0\n455,318,9.5\n455,319,10.0\n455,320,10.5\n455,321,11.0\n455,322,11.5\n455,323,12.0\n455,324,12.5\n455,325,5.0\n455,326,4.5\n455,327,4.0\n455,328,3.5\n455,329,3.0\n455,330,2.5\n455,331,3.0\n455,332,3.5\n455,333,4.0\n455,334,4.5\n455,335,5.0\n455,336,5.5\n455,337,6.0\n455,338,6.5\n455,339,7.0\n455,340,7.5\n455,341,8.0\n455,342,8.5\n455,343,9.0\n455,344,9.5\n455,345,10.0\n455,346,10.5\n455,347,11.0\n455,348,11.5\n455,349,12.0\n455,350,4.5\n455,351,4.0\n455,352,3.5\n455,353,3.0\n455,354,2.5\n455,355,2.0\n455,356,2.5\n455,357,3.0\n455,358,3.5\n455,359,4.0\n455,360,4.5\n455,361,5.0\n455,362,5.5\n455,363,6.0\n455,364,6.5\n455,365,7.0\n455,366,7.5\n455,367,8.0\n455,368,8.5\n455,369,9.0\n455,370,9.5\n455,371,10.0\n455,372,10.5\n455,373,11.0\n455,374,11.5\n455,375,4.0\n455,376,3.5\n455,377,3.0\n455,378,2.5\n455,379,2.0\n455,380,1.5\n455,381,2.0\n455,382,2.5\n455,383,3.0\n455,384,3.5\n455,385,4.0\n455,386,4.5\n455,387,5.0\n455,388,5.5\n455,389,6.0\n455,390,6.5\n455,391,7.0\n455,392,7.5\n455,393,8.0\n455,394,8.5\n455,395,9.0\n455,396,9.5\n455,397,10.0\n455,398,10.5\n455,399,11.0\n455,400,3.5\n455,401,3.0\n455,402,2.5\n455,403,2.0\n455,404,1.5\n455,405,1.0\n455,406,1.5\n455,407,2.0\n455,408,2.5\n455,409,3.0\n455,410,3.5\n455,411,4.0\n455,412,4.5\n455,413,5.0\n455,414,5.5\n455,415,6.0\n455,416,6.5\n455,417,7.0\n455,418,7.5\n455,419,8.0\n455,420,8.5\n455,421,9.0\n455,422,9.5\n455,423,10.0\n455,424,10.5\n455,425,3.0\n455,426,2.5\n455,427,2.0\n455,428,1.5\n455,429,1.0\n455,430,0.5\n455,431,1.0\n455,432,1.5\n455,433,2.0\n455,434,2.5\n455,435,3.0\n455,436,3.5\n455,437,4.0\n455,438,4.5\n455,439,5.0\n455,440,5.5\n455,441,6.0\n455,442,6.5\n455,443,7.0\n455,444,7.5\n455,445,8.0\n455,446,8.5\n455,447,9.0\n455,448,9.5\n455,449,10.0\n455,450,2.5\n455,451,2.0\n455,452,1.5\n455,453,1.0\n455,454,0.5\n455,455,0\n455,456,0.5\n455,457,1.0\n455,458,1.5\n455,459,2.0\n455,460,2.5\n455,461,3.0\n455,462,3.5\n455,463,4.0\n455,464,4.5\n455,465,5.0\n455,466,5.5\n455,467,6.0\n455,468,6.5\n455,469,7.0\n455,470,7.5\n455,471,8.0\n455,472,8.5\n455,473,9.0\n455,474,9.5\n455,475,3.0\n455,476,2.5\n455,477,2.0\n455,478,1.5\n455,479,1.0\n455,480,0.5\n455,481,1.0\n455,482,1.5\n455,483,2.0\n455,484,2.5\n455,485,3.0\n455,486,3.5\n455,487,4.0\n455,488,4.5\n455,489,5.0\n455,490,5.5\n455,491,6.0\n455,492,6.5\n455,493,7.0\n455,494,7.5\n455,495,8.0\n455,496,8.5\n455,497,9.0\n455,498,9.5\n455,499,10.0\n455,500,3.5\n455,501,3.0\n455,502,2.5\n455,503,2.0\n455,504,1.5\n455,505,1.0\n455,506,1.5\n455,507,2.0\n455,508,2.5\n455,509,3.0\n455,510,3.5\n455,511,4.0\n455,512,4.5\n455,513,5.0\n455,514,5.5\n455,515,6.0\n455,516,6.5\n455,517,7.0\n455,518,7.5\n455,519,8.0\n455,520,8.5\n455,521,9.0\n455,522,9.5\n455,523,10.0\n455,524,10.5\n455,525,4.0\n455,526,3.5\n455,527,3.0\n455,528,2.5\n455,529,2.0\n455,530,1.5\n455,531,2.0\n455,532,2.5\n455,533,3.0\n455,534,3.5\n455,535,4.0\n455,536,4.5\n455,537,5.0\n455,538,5.5\n455,539,6.0\n455,540,6.5\n455,541,7.0\n455,542,7.5\n455,543,8.0\n455,544,8.5\n455,545,9.0\n455,546,9.5\n455,547,10.0\n455,548,10.5\n455,549,11.0\n455,550,4.5\n455,551,4.0\n455,552,3.5\n455,553,3.0\n455,554,2.5\n455,555,2.0\n455,556,2.5\n455,557,3.0\n455,558,3.5\n455,559,4.0\n455,560,4.5\n455,561,5.0\n455,562,5.5\n455,563,6.0\n455,564,6.5\n455,565,7.0\n455,566,7.5\n455,567,8.0\n455,568,8.5\n455,569,9.0\n455,570,9.5\n455,571,10.0\n455,572,10.5\n455,573,11.0\n455,574,11.5\n455,575,5.0\n455,576,4.5\n455,577,4.0\n455,578,3.5\n455,579,3.0\n455,580,2.5\n455,581,3.0\n455,582,3.5\n455,583,4.0\n455,584,4.5\n455,585,5.0\n455,586,5.5\n455,587,6.0\n455,588,6.5\n455,589,7.0\n455,590,7.5\n455,591,8.0\n455,592,8.5\n455,593,9.0\n455,594,9.5\n455,595,10.0\n455,596,10.5\n455,597,11.0\n455,598,11.5\n455,599,12.0\n455,600,5.5\n455,601,5.0\n455,602,4.5\n455,603,4.0\n455,604,3.5\n455,605,3.0\n455,606,3.5\n455,607,4.0\n455,608,4.5\n455,609,5.0\n455,610,5.5\n455,611,6.0\n455,612,6.5\n455,613,7.0\n455,614,7.5\n455,615,8.0\n455,616,8.5\n455,617,9.0\n455,618,9.5\n455,619,10.0\n455,620,10.5\n455,621,11.0\n455,622,11.5\n455,623,12.0\n455,624,12.5\n456,0,12.0\n456,1,11.5\n456,2,11.0\n456,3,10.5\n456,4,10.0\n456,5,9.5\n456,6,9.0\n456,7,9.5\n456,8,10.0\n456,9,10.5\n456,10,11.0\n456,11,11.5\n456,12,12.0\n456,13,12.5\n456,14,13.0\n456,15,13.5\n456,16,14.0\n456,17,14.5\n456,18,15.0\n456,19,15.5\n456,20,16.0\n456,21,16.5\n456,22,17.0\n456,23,17.5\n456,24,18.0\n456,25,11.5\n456,26,11.0\n456,27,10.5\n456,28,10.0\n456,29,9.5\n456,30,9.0\n456,31,8.5\n456,32,9.0\n456,33,9.5\n456,34,10.0\n456,35,10.5\n456,36,11.0\n456,37,11.5\n456,38,12.0\n456,39,12.5\n456,40,13.0\n456,41,13.5\n456,42,14.0\n456,43,14.5\n456,44,15.0\n456,45,15.5\n456,46,16.0\n456,47,16.5\n456,48,17.0\n456,49,17.5\n456,50,11.0\n456,51,10.5\n456,52,10.0\n456,53,9.5\n456,54,9.0\n456,55,8.5\n456,56,8.0\n456,57,8.5\n456,58,9.0\n456,59,9.5\n456,60,10.0\n456,61,10.5\n456,62,11.0\n456,63,11.5\n456,64,12.0\n456,65,12.5\n456,66,13.0\n456,67,13.5\n456,68,14.0\n456,69,14.5\n456,70,15.0\n456,71,15.5\n456,72,16.0\n456,73,16.5\n456,74,17.0\n456,75,10.5\n456,76,10.0\n456,77,9.5\n456,78,9.0\n456,79,8.5\n456,80,8.0\n456,81,7.5\n456,82,8.0\n456,83,8.5\n456,84,9.0\n456,85,9.5\n456,86,10.0\n456,87,10.5\n456,88,11.0\n456,89,11.5\n456,90,12.0\n456,91,12.5\n456,92,13.0\n456,93,13.5\n456,94,14.0\n456,95,14.5\n456,96,15.0\n456,97,15.5\n456,98,16.0\n456,99,16.5\n456,100,10.0\n456,101,9.5\n456,102,9.0\n456,103,8.5\n456,104,8.0\n456,105,7.5\n456,106,7.0\n456,107,7.5\n456,108,8.0\n456,109,8.5\n456,110,9.0\n456,111,9.5\n456,112,10.0\n456,113,10.5\n456,114,11.0\n456,115,11.5\n456,116,12.0\n456,117,12.5\n456,118,13.0\n456,119,13.5\n456,120,14.0\n456,121,14.5\n456,122,15.0\n456,123,15.5\n456,124,16.0\n456,125,9.5\n456,126,9.0\n456,127,8.5\n456,128,8.0\n456,129,7.5\n456,130,7.0\n456,131,6.5\n456,132,7.0\n456,133,7.5\n456,134,8.0\n456,135,8.5\n456,136,9.0\n456,137,9.5\n456,138,10.0\n456,139,10.5\n456,140,11.0\n456,141,11.5\n456,142,12.0\n456,143,12.5\n456,144,13.0\n456,145,13.5\n456,146,14.0\n456,147,14.5\n456,148,15.0\n456,149,15.5\n456,150,9.0\n456,151,8.5\n456,152,8.0\n456,153,7.5\n456,154,7.0\n456,155,6.5\n456,156,6.0\n456,157,6.5\n456,158,7.0\n456,159,7.5\n456,160,8.0\n456,161,8.5\n456,162,9.0\n456,163,9.5\n456,164,10.0\n456,165,10.5\n456,166,11.0\n456,167,11.5\n456,168,12.0\n456,169,12.5\n456,170,13.0\n456,171,13.5\n456,172,14.0\n456,173,14.5\n456,174,15.0\n456,175,8.5\n456,176,8.0\n456,177,7.5\n456,178,7.0\n456,179,6.5\n456,180,6.0\n456,181,5.5\n456,182,6.0\n456,183,6.5\n456,184,7.0\n456,185,7.5\n456,186,8.0\n456,187,8.5\n456,188,9.0\n456,189,9.5\n456,190,10.0\n456,191,10.5\n456,192,11.0\n456,193,11.5\n456,194,12.0\n456,195,12.5\n456,196,13.0\n456,197,13.5\n456,198,14.0\n456,199,14.5\n456,200,8.0\n456,201,7.5\n456,202,7.0\n456,203,6.5\n456,204,6.0\n456,205,5.5\n456,206,5.0\n456,207,5.5\n456,208,6.0\n456,209,6.5\n456,210,7.0\n456,211,7.5\n456,212,8.0\n456,213,8.5\n456,214,9.0\n456,215,9.5\n456,216,10.0\n456,217,10.5\n456,218,11.0\n456,219,11.5\n456,220,12.0\n456,221,12.5\n456,222,13.0\n456,223,13.5\n456,224,14.0\n456,225,7.5\n456,226,7.0\n456,227,6.5\n456,228,6.0\n456,229,5.5\n456,230,5.0\n456,231,4.5\n456,232,5.0\n456,233,5.5\n456,234,6.0\n456,235,6.5\n456,236,7.0\n456,237,7.5\n456,238,8.0\n456,239,8.5\n456,240,9.0\n456,241,9.5\n456,242,10.0\n456,243,10.5\n456,244,11.0\n456,245,11.5\n456,246,12.0\n456,247,12.5\n456,248,13.0\n456,249,13.5\n456,250,7.0\n456,251,6.5\n456,252,6.0\n456,253,5.5\n456,254,5.0\n456,255,4.5\n456,256,4.0\n456,257,4.5\n456,258,5.0\n456,259,5.5\n456,260,6.0\n456,261,6.5\n456,262,7.0\n456,263,7.5\n456,264,8.0\n456,265,8.5\n456,266,9.0\n456,267,9.5\n456,268,10.0\n456,269,10.5\n456,270,11.0\n456,271,11.5\n456,272,12.0\n456,273,12.5\n456,274,13.0\n456,275,6.5\n456,276,6.0\n456,277,5.5\n456,278,5.0\n456,279,4.5\n456,280,4.0\n456,281,3.5\n456,282,4.0\n456,283,4.5\n456,284,5.0\n456,285,5.5\n456,286,6.0\n456,287,6.5\n456,288,7.0\n456,289,7.5\n456,290,8.0\n456,291,8.5\n456,292,9.0\n456,293,9.5\n456,294,10.0\n456,295,10.5\n456,296,11.0\n456,297,11.5\n456,298,12.0\n456,299,12.5\n456,300,6.0\n456,301,5.5\n456,302,5.0\n456,303,4.5\n456,304,4.0\n456,305,3.5\n456,306,3.0\n456,307,3.5\n456,308,4.0\n456,309,4.5\n456,310,5.0\n456,311,5.5\n456,312,6.0\n456,313,6.5\n456,314,7.0\n456,315,7.5\n456,316,8.0\n456,317,8.5\n456,318,9.0\n456,319,9.5\n456,320,10.0\n456,321,10.5\n456,322,11.0\n456,323,11.5\n456,324,12.0\n456,325,5.5\n456,326,5.0\n456,327,4.5\n456,328,4.0\n456,329,3.5\n456,330,3.0\n456,331,2.5\n456,332,3.0\n456,333,3.5\n456,334,4.0\n456,335,4.5\n456,336,5.0\n456,337,5.5\n456,338,6.0\n456,339,6.5\n456,340,7.0\n456,341,7.5\n456,342,8.0\n456,343,8.5\n456,344,9.0\n456,345,9.5\n456,346,10.0\n456,347,10.5\n456,348,11.0\n456,349,11.5\n456,350,5.0\n456,351,4.5\n456,352,4.0\n456,353,3.5\n456,354,3.0\n456,355,2.5\n456,356,2.0\n456,357,2.5\n456,358,3.0\n456,359,3.5\n456,360,4.0\n456,361,4.5\n456,362,5.0\n456,363,5.5\n456,364,6.0\n456,365,6.5\n456,366,7.0\n456,367,7.5\n456,368,8.0\n456,369,8.5\n456,370,9.0\n456,371,9.5\n456,372,10.0\n456,373,10.5\n456,374,11.0\n456,375,4.5\n456,376,4.0\n456,377,3.5\n456,378,3.0\n456,379,2.5\n456,380,2.0\n456,381,1.5\n456,382,2.0\n456,383,2.5\n456,384,3.0\n456,385,3.5\n456,386,4.0\n456,387,4.5\n456,388,5.0\n456,389,5.5\n456,390,6.0\n456,391,6.5\n456,392,7.0\n456,393,7.5\n456,394,8.0\n456,395,8.5\n456,396,9.0\n456,397,9.5\n456,398,10.0\n456,399,10.5\n456,400,4.0\n456,401,3.5\n456,402,3.0\n456,403,2.5\n456,404,2.0\n456,405,1.5\n456,406,1.0\n456,407,1.5\n456,408,2.0\n456,409,2.5\n456,410,3.0\n456,411,3.5\n456,412,4.0\n456,413,4.5\n456,414,5.0\n456,415,5.5\n456,416,6.0\n456,417,6.5\n456,418,7.0\n456,419,7.5\n456,420,8.0\n456,421,8.5\n456,422,9.0\n456,423,9.5\n456,424,10.0\n456,425,3.5\n456,426,3.0\n456,427,2.5\n456,428,2.0\n456,429,1.5\n456,430,1.0\n456,431,0.5\n456,432,1.0\n456,433,1.5\n456,434,2.0\n456,435,2.5\n456,436,3.0\n456,437,3.5\n456,438,4.0\n456,439,4.5\n456,440,5.0\n456,441,5.5\n456,442,6.0\n456,443,6.5\n456,444,7.0\n456,445,7.5\n456,446,8.0\n456,447,8.5\n456,448,9.0\n456,449,9.5\n456,450,3.0\n456,451,2.5\n456,452,2.0\n456,453,1.5\n456,454,1.0\n456,455,0.5\n456,456,0\n456,457,0.5\n456,458,1.0\n456,459,1.5\n456,460,2.0\n456,461,2.5\n456,462,3.0\n456,463,3.5\n456,464,4.0\n456,465,4.5\n456,466,5.0\n456,467,5.5\n456,468,6.0\n456,469,6.5\n456,470,7.0\n456,471,7.5\n456,472,8.0\n456,473,8.5\n456,474,9.0\n456,475,3.5\n456,476,3.0\n456,477,2.5\n456,478,2.0\n456,479,1.5\n456,480,1.0\n456,481,0.5\n456,482,1.0\n456,483,1.5\n456,484,2.0\n456,485,2.5\n456,486,3.0\n456,487,3.5\n456,488,4.0\n456,489,4.5\n456,490,5.0\n456,491,5.5\n456,492,6.0\n456,493,6.5\n456,494,7.0\n456,495,7.5\n456,496,8.0\n456,497,8.5\n456,498,9.0\n456,499,9.5\n456,500,4.0\n456,501,3.5\n456,502,3.0\n456,503,2.5\n456,504,2.0\n456,505,1.5\n456,506,1.0\n456,507,1.5\n456,508,2.0\n456,509,2.5\n456,510,3.0\n456,511,3.5\n456,512,4.0\n456,513,4.5\n456,514,5.0\n456,515,5.5\n456,516,6.0\n456,517,6.5\n456,518,7.0\n456,519,7.5\n456,520,8.0\n456,521,8.5\n456,522,9.0\n456,523,9.5\n456,524,10.0\n456,525,4.5\n456,526,4.0\n456,527,3.5\n456,528,3.0\n456,529,2.5\n456,530,2.0\n456,531,1.5\n456,532,2.0\n456,533,2.5\n456,534,3.0\n456,535,3.5\n456,536,4.0\n456,537,4.5\n456,538,5.0\n456,539,5.5\n456,540,6.0\n456,541,6.5\n456,542,7.0\n456,543,7.5\n456,544,8.0\n456,545,8.5\n456,546,9.0\n456,547,9.5\n456,548,10.0\n456,549,10.5\n456,550,5.0\n456,551,4.5\n456,552,4.0\n456,553,3.5\n456,554,3.0\n456,555,2.5\n456,556,2.0\n456,557,2.5\n456,558,3.0\n456,559,3.5\n456,560,4.0\n456,561,4.5\n456,562,5.0\n456,563,5.5\n456,564,6.0\n456,565,6.5\n456,566,7.0\n456,567,7.5\n456,568,8.0\n456,569,8.5\n456,570,9.0\n456,571,9.5\n456,572,10.0\n456,573,10.5\n456,574,11.0\n456,575,5.5\n456,576,5.0\n456,577,4.5\n456,578,4.0\n456,579,3.5\n456,580,3.0\n456,581,2.5\n456,582,3.0\n456,583,3.5\n456,584,4.0\n456,585,4.5\n456,586,5.0\n456,587,5.5\n456,588,6.0\n456,589,6.5\n456,590,7.0\n456,591,7.5\n456,592,8.0\n456,593,8.5\n456,594,9.0\n456,595,9.5\n456,596,10.0\n456,597,10.5\n456,598,11.0\n456,599,11.5\n456,600,6.0\n456,601,5.5\n456,602,5.0\n456,603,4.5\n456,604,4.0\n456,605,3.5\n456,606,3.0\n456,607,3.5\n456,608,4.0\n456,609,4.5\n456,610,5.0\n456,611,5.5\n456,612,6.0\n456,613,6.5\n456,614,7.0\n456,615,7.5\n456,616,8.0\n456,617,8.5\n456,618,9.0\n456,619,9.5\n456,620,10.0\n456,621,10.5\n456,622,11.0\n456,623,11.5\n456,624,12.0\n457,0,12.5\n457,1,12.0\n457,2,11.5\n457,3,11.0\n457,4,10.5\n457,5,10.0\n457,6,9.5\n457,7,9.0\n457,8,9.5\n457,9,10.0\n457,10,10.5\n457,11,11.0\n457,12,11.5\n457,13,12.0\n457,14,12.5\n457,15,13.0\n457,16,13.5\n457,17,14.0\n457,18,14.5\n457,19,15.0\n457,20,15.5\n457,21,16.0\n457,22,16.5\n457,23,17.0\n457,24,17.5\n457,25,12.0\n457,26,11.5\n457,27,11.0\n457,28,10.5\n457,29,10.0\n457,30,9.5\n457,31,9.0\n457,32,8.5\n457,33,9.0\n457,34,9.5\n457,35,10.0\n457,36,10.5\n457,37,11.0\n457,38,11.5\n457,39,12.0\n457,40,12.5\n457,41,13.0\n457,42,13.5\n457,43,14.0\n457,44,14.5\n457,45,15.0\n457,46,15.5\n457,47,16.0\n457,48,16.5\n457,49,17.0\n457,50,11.5\n457,51,11.0\n457,52,10.5\n457,53,10.0\n457,54,9.5\n457,55,9.0\n457,56,8.5\n457,57,8.0\n457,58,8.5\n457,59,9.0\n457,60,9.5\n457,61,10.0\n457,62,10.5\n457,63,11.0\n457,64,11.5\n457,65,12.0\n457,66,12.5\n457,67,13.0\n457,68,13.5\n457,69,14.0\n457,70,14.5\n457,71,15.0\n457,72,15.5\n457,73,16.0\n457,74,16.5\n457,75,11.0\n457,76,10.5\n457,77,10.0\n457,78,9.5\n457,79,9.0\n457,80,8.5\n457,81,8.0\n457,82,7.5\n457,83,8.0\n457,84,8.5\n457,85,9.0\n457,86,9.5\n457,87,10.0\n457,88,10.5\n457,89,11.0\n457,90,11.5\n457,91,12.0\n457,92,12.5\n457,93,13.0\n457,94,13.5\n457,95,14.0\n457,96,14.5\n457,97,15.0\n457,98,15.5\n457,99,16.0\n457,100,10.5\n457,101,10.0\n457,102,9.5\n457,103,9.0\n457,104,8.5\n457,105,8.0\n457,106,7.5\n457,107,7.0\n457,108,7.5\n457,109,8.0\n457,110,8.5\n457,111,9.0\n457,112,9.5\n457,113,10.0\n457,114,10.5\n457,115,11.0\n457,116,11.5\n457,117,12.0\n457,118,12.5\n457,119,13.0\n457,120,13.5\n457,121,14.0\n457,122,14.5\n457,123,15.0\n457,124,15.5\n457,125,10.0\n457,126,9.5\n457,127,9.0\n457,128,8.5\n457,129,8.0\n457,130,7.5\n457,131,7.0\n457,132,6.5\n457,133,7.0\n457,134,7.5\n457,135,8.0\n457,136,8.5\n457,137,9.0\n457,138,9.5\n457,139,10.0\n457,140,10.5\n457,141,11.0\n457,142,11.5\n457,143,12.0\n457,144,12.5\n457,145,13.0\n457,146,13.5\n457,147,14.0\n457,148,14.5\n457,149,15.0\n457,150,9.5\n457,151,9.0\n457,152,8.5\n457,153,8.0\n457,154,7.5\n457,155,7.0\n457,156,6.5\n457,157,6.0\n457,158,6.5\n457,159,7.0\n457,160,7.5\n457,161,8.0\n457,162,8.5\n457,163,9.0\n457,164,9.5\n457,165,10.0\n457,166,10.5\n457,167,11.0\n457,168,11.5\n457,169,12.0\n457,170,12.5\n457,171,13.0\n457,172,13.5\n457,173,14.0\n457,174,14.5\n457,175,9.0\n457,176,8.5\n457,177,8.0\n457,178,7.5\n457,179,7.0\n457,180,6.5\n457,181,6.0\n457,182,5.5\n457,183,6.0\n457,184,6.5\n457,185,7.0\n457,186,7.5\n457,187,8.0\n457,188,8.5\n457,189,9.0\n457,190,9.5\n457,191,10.0\n457,192,10.5\n457,193,11.0\n457,194,11.5\n457,195,12.0\n457,196,12.5\n457,197,13.0\n457,198,13.5\n457,199,14.0\n457,200,8.5\n457,201,8.0\n457,202,7.5\n457,203,7.0\n457,204,6.5\n457,205,6.0\n457,206,5.5\n457,207,5.0\n457,208,5.5\n457,209,6.0\n457,210,6.5\n457,211,7.0\n457,212,7.5\n457,213,8.0\n457,214,8.5\n457,215,9.0\n457,216,9.5\n457,217,10.0\n457,218,10.5\n457,219,11.0\n457,220,11.5\n457,221,12.0\n457,222,12.5\n457,223,13.0\n457,224,13.5\n457,225,8.0\n457,226,7.5\n457,227,7.0\n457,228,6.5\n457,229,6.0\n457,230,5.5\n457,231,5.0\n457,232,4.5\n457,233,5.0\n457,234,5.5\n457,235,6.0\n457,236,6.5\n457,237,7.0\n457,238,7.5\n457,239,8.0\n457,240,8.5\n457,241,9.0\n457,242,9.5\n457,243,10.0\n457,244,10.5\n457,245,11.0\n457,246,11.5\n457,247,12.0\n457,248,12.5\n457,249,13.0\n457,250,7.5\n457,251,7.0\n457,252,6.5\n457,253,6.0\n457,254,5.5\n457,255,5.0\n457,256,4.5\n457,257,4.0\n457,258,4.5\n457,259,5.0\n457,260,5.5\n457,261,6.0\n457,262,6.5\n457,263,7.0\n457,264,7.5\n457,265,8.0\n457,266,8.5\n457,267,9.0\n457,268,9.5\n457,269,10.0\n457,270,10.5\n457,271,11.0\n457,272,11.5\n457,273,12.0\n457,274,12.5\n457,275,7.0\n457,276,6.5\n457,277,6.0\n457,278,5.5\n457,279,5.0\n457,280,4.5\n457,281,4.0\n457,282,3.5\n457,283,4.0\n457,284,4.5\n457,285,5.0\n457,286,5.5\n457,287,6.0\n457,288,6.5\n457,289,7.0\n457,290,7.5\n457,291,8.0\n457,292,8.5\n457,293,9.0\n457,294,9.5\n457,295,10.0\n457,296,10.5\n457,297,11.0\n457,298,11.5\n457,299,12.0\n457,300,6.5\n457,301,6.0\n457,302,5.5\n457,303,5.0\n457,304,4.5\n457,305,4.0\n457,306,3.5\n457,307,3.0\n457,308,3.5\n457,309,4.0\n457,310,4.5\n457,311,5.0\n457,312,5.5\n457,313,6.0\n457,314,6.5\n457,315,7.0\n457,316,7.5\n457,317,8.0\n457,318,8.5\n457,319,9.0\n457,320,9.5\n457,321,10.0\n457,322,10.5\n457,323,11.0\n457,324,11.5\n457,325,6.0\n457,326,5.5\n457,327,5.0\n457,328,4.5\n457,329,4.0\n457,330,3.5\n457,331,3.0\n457,332,2.5\n457,333,3.0\n457,334,3.5\n457,335,4.0\n457,336,4.5\n457,337,5.0\n457,338,5.5\n457,339,6.0\n457,340,6.5\n457,341,7.0\n457,342,7.5\n457,343,8.0\n457,344,8.5\n457,345,9.0\n457,346,9.5\n457,347,10.0\n457,348,10.5\n457,349,11.0\n457,350,5.5\n457,351,5.0\n457,352,4.5\n457,353,4.0\n457,354,3.5\n457,355,3.0\n457,356,2.5\n457,357,2.0\n457,358,2.5\n457,359,3.0\n457,360,3.5\n457,361,4.0\n457,362,4.5\n457,363,5.0\n457,364,5.5\n457,365,6.0\n457,366,6.5\n457,367,7.0\n457,368,7.5\n457,369,8.0\n457,370,8.5\n457,371,9.0\n457,372,9.5\n457,373,10.0\n457,374,10.5\n457,375,5.0\n457,376,4.5\n457,377,4.0\n457,378,3.5\n457,379,3.0\n457,380,2.5\n457,381,2.0\n457,382,1.5\n457,383,2.0\n457,384,2.5\n457,385,3.0\n457,386,3.5\n457,387,4.0\n457,388,4.5\n457,389,5.0\n457,390,5.5\n457,391,6.0\n457,392,6.5\n457,393,7.0\n457,394,7.5\n457,395,8.0\n457,396,8.5\n457,397,9.0\n457,398,9.5\n457,399,10.0\n457,400,4.5\n457,401,4.0\n457,402,3.5\n457,403,3.0\n457,404,2.5\n457,405,2.0\n457,406,1.5\n457,407,1.0\n457,408,1.5\n457,409,2.0\n457,410,2.5\n457,411,3.0\n457,412,3.5\n457,413,4.0\n457,414,4.5\n457,415,5.0\n457,416,5.5\n457,417,6.0\n457,418,6.5\n457,419,7.0\n457,420,7.5\n457,421,8.0\n457,422,8.5\n457,423,9.0\n457,424,9.5\n457,425,4.0\n457,426,3.5\n457,427,3.0\n457,428,2.5\n457,429,2.0\n457,430,1.5\n457,431,1.0\n457,432,0.5\n457,433,1.0\n457,434,1.5\n457,435,2.0\n457,436,2.5\n457,437,3.0\n457,438,3.5\n457,439,4.0\n457,440,4.5\n457,441,5.0\n457,442,5.5\n457,443,6.0\n457,444,6.5\n457,445,7.0\n457,446,7.5\n457,447,8.0\n457,448,8.5\n457,449,9.0\n457,450,3.5\n457,451,3.0\n457,452,2.5\n457,453,2.0\n457,454,1.5\n457,455,1.0\n457,456,0.5\n457,457,0\n457,458,0.5\n457,459,1.0\n457,460,1.5\n457,461,2.0\n457,462,2.5\n457,463,3.0\n457,464,3.5\n457,465,4.0\n457,466,4.5\n457,467,5.0\n457,468,5.5\n457,469,6.0\n457,470,6.5\n457,471,7.0\n457,472,7.5\n457,473,8.0\n457,474,8.5\n457,475,4.0\n457,476,3.5\n457,477,3.0\n457,478,2.5\n457,479,2.0\n457,480,1.5\n457,481,1.0\n457,482,0.5\n457,483,1.0\n457,484,1.5\n457,485,2.0\n457,486,2.5\n457,487,3.0\n457,488,3.5\n457,489,4.0\n457,490,4.5\n457,491,5.0\n457,492,5.5\n457,493,6.0\n457,494,6.5\n457,495,7.0\n457,496,7.5\n457,497,8.0\n457,498,8.5\n457,499,9.0\n457,500,4.5\n457,501,4.0\n457,502,3.5\n457,503,3.0\n457,504,2.5\n457,505,2.0\n457,506,1.5\n457,507,1.0\n457,508,1.5\n457,509,2.0\n457,510,2.5\n457,511,3.0\n457,512,3.5\n457,513,4.0\n457,514,4.5\n457,515,5.0\n457,516,5.5\n457,517,6.0\n457,518,6.5\n457,519,7.0\n457,520,7.5\n457,521,8.0\n457,522,8.5\n457,523,9.0\n457,524,9.5\n457,525,5.0\n457,526,4.5\n457,527,4.0\n457,528,3.5\n457,529,3.0\n457,530,2.5\n457,531,2.0\n457,532,1.5\n457,533,2.0\n457,534,2.5\n457,535,3.0\n457,536,3.5\n457,537,4.0\n457,538,4.5\n457,539,5.0\n457,540,5.5\n457,541,6.0\n457,542,6.5\n457,543,7.0\n457,544,7.5\n457,545,8.0\n457,546,8.5\n457,547,9.0\n457,548,9.5\n457,549,10.0\n457,550,5.5\n457,551,5.0\n457,552,4.5\n457,553,4.0\n457,554,3.5\n457,555,3.0\n457,556,2.5\n457,557,2.0\n457,558,2.5\n457,559,3.0\n457,560,3.5\n457,561,4.0\n457,562,4.5\n457,563,5.0\n457,564,5.5\n457,565,6.0\n457,566,6.5\n457,567,7.0\n457,568,7.5\n457,569,8.0\n457,570,8.5\n457,571,9.0\n457,572,9.5\n457,573,10.0\n457,574,10.5\n457,575,6.0\n457,576,5.5\n457,577,5.0\n457,578,4.5\n457,579,4.0\n457,580,3.5\n457,581,3.0\n457,582,2.5\n457,583,3.0\n457,584,3.5\n457,585,4.0\n457,586,4.5\n457,587,5.0\n457,588,5.5\n457,589,6.0\n457,590,6.5\n457,591,7.0\n457,592,7.5\n457,593,8.0\n457,594,8.5\n457,595,9.0\n457,596,9.5\n457,597,10.0\n457,598,10.5\n457,599,11.0\n457,600,6.5\n457,601,6.0\n457,602,5.5\n457,603,5.0\n457,604,4.5\n457,605,4.0\n457,606,3.5\n457,607,3.0\n457,608,3.5\n457,609,4.0\n457,610,4.5\n457,611,5.0\n457,612,5.5\n457,613,6.0\n457,614,6.5\n457,615,7.0\n457,616,7.5\n457,617,8.0\n457,618,8.5\n457,619,9.0\n457,620,9.5\n457,621,10.0\n457,622,10.5\n457,623,11.0\n457,624,11.5\n458,0,13.0\n458,1,12.5\n458,2,12.0\n458,3,11.5\n458,4,11.0\n458,5,10.5\n458,6,10.0\n458,7,9.5\n458,8,9.0\n458,9,9.5\n458,10,10.0\n458,11,10.5\n458,12,11.0\n458,13,11.5\n458,14,12.0\n458,15,12.5\n458,16,13.0\n458,17,13.5\n458,18,14.0\n458,19,14.5\n458,20,15.0\n458,21,15.5\n458,22,16.0\n458,23,16.5\n458,24,17.0\n458,25,12.5\n458,26,12.0\n458,27,11.5\n458,28,11.0\n458,29,10.5\n458,30,10.0\n458,31,9.5\n458,32,9.0\n458,33,8.5\n458,34,9.0\n458,35,9.5\n458,36,10.0\n458,37,10.5\n458,38,11.0\n458,39,11.5\n458,40,12.0\n458,41,12.5\n458,42,13.0\n458,43,13.5\n458,44,14.0\n458,45,14.5\n458,46,15.0\n458,47,15.5\n458,48,16.0\n458,49,16.5\n458,50,12.0\n458,51,11.5\n458,52,11.0\n458,53,10.5\n458,54,10.0\n458,55,9.5\n458,56,9.0\n458,57,8.5\n458,58,8.0\n458,59,8.5\n458,60,9.0\n458,61,9.5\n458,62,10.0\n458,63,10.5\n458,64,11.0\n458,65,11.5\n458,66,12.0\n458,67,12.5\n458,68,13.0\n458,69,13.5\n458,70,14.0\n458,71,14.5\n458,72,15.0\n458,73,15.5\n458,74,16.0\n458,75,11.5\n458,76,11.0\n458,77,10.5\n458,78,10.0\n458,79,9.5\n458,80,9.0\n458,81,8.5\n458,82,8.0\n458,83,7.5\n458,84,8.0\n458,85,8.5\n458,86,9.0\n458,87,9.5\n458,88,10.0\n458,89,10.5\n458,90,11.0\n458,91,11.5\n458,92,12.0\n458,93,12.5\n458,94,13.0\n458,95,13.5\n458,96,14.0\n458,97,14.5\n458,98,15.0\n458,99,15.5\n458,100,11.0\n458,101,10.5\n458,102,10.0\n458,103,9.5\n458,104,9.0\n458,105,8.5\n458,106,8.0\n458,107,7.5\n458,108,7.0\n458,109,7.5\n458,110,8.0\n458,111,8.5\n458,112,9.0\n458,113,9.5\n458,114,10.0\n458,115,10.5\n458,116,11.0\n458,117,11.5\n458,118,12.0\n458,119,12.5\n458,120,13.0\n458,121,13.5\n458,122,14.0\n458,123,14.5\n458,124,15.0\n458,125,10.5\n458,126,10.0\n458,127,9.5\n458,128,9.0\n458,129,8.5\n458,130,8.0\n458,131,7.5\n458,132,7.0\n458,133,6.5\n458,134,7.0\n458,135,7.5\n458,136,8.0\n458,137,8.5\n458,138,9.0\n458,139,9.5\n458,140,10.0\n458,141,10.5\n458,142,11.0\n458,143,11.5\n458,144,12.0\n458,145,12.5\n458,146,13.0\n458,147,13.5\n458,148,14.0\n458,149,14.5\n458,150,10.0\n458,151,9.5\n458,152,9.0\n458,153,8.5\n458,154,8.0\n458,155,7.5\n458,156,7.0\n458,157,6.5\n458,158,6.0\n458,159,6.5\n458,160,7.0\n458,161,7.5\n458,162,8.0\n458,163,8.5\n458,164,9.0\n458,165,9.5\n458,166,10.0\n458,167,10.5\n458,168,11.0\n458,169,11.5\n458,170,12.0\n458,171,12.5\n458,172,13.0\n458,173,13.5\n458,174,14.0\n458,175,9.5\n458,176,9.0\n458,177,8.5\n458,178,8.0\n458,179,7.5\n458,180,7.0\n458,181,6.5\n458,182,6.0\n458,183,5.5\n458,184,6.0\n458,185,6.5\n458,186,7.0\n458,187,7.5\n458,188,8.0\n458,189,8.5\n458,190,9.0\n458,191,9.5\n458,192,10.0\n458,193,10.5\n458,194,11.0\n458,195,11.5\n458,196,12.0\n458,197,12.5\n458,198,13.0\n458,199,13.5\n458,200,9.0\n458,201,8.5\n458,202,8.0\n458,203,7.5\n458,204,7.0\n458,205,6.5\n458,206,6.0\n458,207,5.5\n458,208,5.0\n458,209,5.5\n458,210,6.0\n458,211,6.5\n458,212,7.0\n458,213,7.5\n458,214,8.0\n458,215,8.5\n458,216,9.0\n458,217,9.5\n458,218,10.0\n458,219,10.5\n458,220,11.0\n458,221,11.5\n458,222,12.0\n458,223,12.5\n458,224,13.0\n458,225,8.5\n458,226,8.0\n458,227,7.5\n458,228,7.0\n458,229,6.5\n458,230,6.0\n458,231,5.5\n458,232,5.0\n458,233,4.5\n458,234,5.0\n458,235,5.5\n458,236,6.0\n458,237,6.5\n458,238,7.0\n458,239,7.5\n458,240,8.0\n458,241,8.5\n458,242,9.0\n458,243,9.5\n458,244,10.0\n458,245,10.5\n458,246,11.0\n458,247,11.5\n458,248,12.0\n458,249,12.5\n458,250,8.0\n458,251,7.5\n458,252,7.0\n458,253,6.5\n458,254,6.0\n458,255,5.5\n458,256,5.0\n458,257,4.5\n458,258,4.0\n458,259,4.5\n458,260,5.0\n458,261,5.5\n458,262,6.0\n458,263,6.5\n458,264,7.0\n458,265,7.5\n458,266,8.0\n458,267,8.5\n458,268,9.0\n458,269,9.5\n458,270,10.0\n458,271,10.5\n458,272,11.0\n458,273,11.5\n458,274,12.0\n458,275,7.5\n458,276,7.0\n458,277,6.5\n458,278,6.0\n458,279,5.5\n458,280,5.0\n458,281,4.5\n458,282,4.0\n458,283,3.5\n458,284,4.0\n458,285,4.5\n458,286,5.0\n458,287,5.5\n458,288,6.0\n458,289,6.5\n458,290,7.0\n458,291,7.5\n458,292,8.0\n458,293,8.5\n458,294,9.0\n458,295,9.5\n458,296,10.0\n458,297,10.5\n458,298,11.0\n458,299,11.5\n458,300,7.0\n458,301,6.5\n458,302,6.0\n458,303,5.5\n458,304,5.0\n458,305,4.5\n458,306,4.0\n458,307,3.5\n458,308,3.0\n458,309,3.5\n458,310,4.0\n458,311,4.5\n458,312,5.0\n458,313,5.5\n458,314,6.0\n458,315,6.5\n458,316,7.0\n458,317,7.5\n458,318,8.0\n458,319,8.5\n458,320,9.0\n458,321,9.5\n458,322,10.0\n458,323,10.5\n458,324,11.0\n458,325,6.5\n458,326,6.0\n458,327,5.5\n458,328,5.0\n458,329,4.5\n458,330,4.0\n458,331,3.5\n458,332,3.0\n458,333,2.5\n458,334,3.0\n458,335,3.5\n458,336,4.0\n458,337,4.5\n458,338,5.0\n458,339,5.5\n458,340,6.0\n458,341,6.5\n458,342,7.0\n458,343,7.5\n458,344,8.0\n458,345,8.5\n458,346,9.0\n458,347,9.5\n458,348,10.0\n458,349,10.5\n458,350,6.0\n458,351,5.5\n458,352,5.0\n458,353,4.5\n458,354,4.0\n458,355,3.5\n458,356,3.0\n458,357,2.5\n458,358,2.0\n458,359,2.5\n458,360,3.0\n458,361,3.5\n458,362,4.0\n458,363,4.5\n458,364,5.0\n458,365,5.5\n458,366,6.0\n458,367,6.5\n458,368,7.0\n458,369,7.5\n458,370,8.0\n458,371,8.5\n458,372,9.0\n458,373,9.5\n458,374,10.0\n458,375,5.5\n458,376,5.0\n458,377,4.5\n458,378,4.0\n458,379,3.5\n458,380,3.0\n458,381,2.5\n458,382,2.0\n458,383,1.5\n458,384,2.0\n458,385,2.5\n458,386,3.0\n458,387,3.5\n458,388,4.0\n458,389,4.5\n458,390,5.0\n458,391,5.5\n458,392,6.0\n458,393,6.5\n458,394,7.0\n458,395,7.5\n458,396,8.0\n458,397,8.5\n458,398,9.0\n458,399,9.5\n458,400,5.0\n458,401,4.5\n458,402,4.0\n458,403,3.5\n458,404,3.0\n458,405,2.5\n458,406,2.0\n458,407,1.5\n458,408,1.0\n458,409,1.5\n458,410,2.0\n458,411,2.5\n458,412,3.0\n458,413,3.5\n458,414,4.0\n458,415,4.5\n458,416,5.0\n458,417,5.5\n458,418,6.0\n458,419,6.5\n458,420,7.0\n458,421,7.5\n458,422,8.0\n458,423,8.5\n458,424,9.0\n458,425,4.5\n458,426,4.0\n458,427,3.5\n458,428,3.0\n458,429,2.5\n458,430,2.0\n458,431,1.5\n458,432,1.0\n458,433,0.5\n458,434,1.0\n458,435,1.5\n458,436,2.0\n458,437,2.5\n458,438,3.0\n458,439,3.5\n458,440,4.0\n458,441,4.5\n458,442,5.0\n458,443,5.5\n458,444,6.0\n458,445,6.5\n458,446,7.0\n458,447,7.5\n458,448,8.0\n458,449,8.5\n458,450,4.0\n458,451,3.5\n458,452,3.0\n458,453,2.5\n458,454,2.0\n458,455,1.5\n458,456,1.0\n458,457,0.5\n458,458,0\n458,459,0.5\n458,460,1.0\n458,461,1.5\n458,462,2.0\n458,463,2.5\n458,464,3.0\n458,465,3.5\n458,466,4.0\n458,467,4.5\n458,468,5.0\n458,469,5.5\n458,470,6.0\n458,471,6.5\n458,472,7.0\n458,473,7.5\n458,474,8.0\n458,475,4.5\n458,476,4.0\n458,477,3.5\n458,478,3.0\n458,479,2.5\n458,480,2.0\n458,481,1.5\n458,482,1.0\n458,483,0.5\n458,484,1.0\n458,485,1.5\n458,486,2.0\n458,487,2.5\n458,488,3.0\n458,489,3.5\n458,490,4.0\n458,491,4.5\n458,492,5.0\n458,493,5.5\n458,494,6.0\n458,495,6.5\n458,496,7.0\n458,497,7.5\n458,498,8.0\n458,499,8.5\n458,500,5.0\n458,501,4.5\n458,502,4.0\n458,503,3.5\n458,504,3.0\n458,505,2.5\n458,506,2.0\n458,507,1.5\n458,508,1.0\n458,509,1.5\n458,510,2.0\n458,511,2.5\n458,512,3.0\n458,513,3.5\n458,514,4.0\n458,515,4.5\n458,516,5.0\n458,517,5.5\n458,518,6.0\n458,519,6.5\n458,520,7.0\n458,521,7.5\n458,522,8.0\n458,523,8.5\n458,524,9.0\n458,525,5.5\n458,526,5.0\n458,527,4.5\n458,528,4.0\n458,529,3.5\n458,530,3.0\n458,531,2.5\n458,532,2.0\n458,533,1.5\n458,534,2.0\n458,535,2.5\n458,536,3.0\n458,537,3.5\n458,538,4.0\n458,539,4.5\n458,540,5.0\n458,541,5.5\n458,542,6.0\n458,543,6.5\n458,544,7.0\n458,545,7.5\n458,546,8.0\n458,547,8.5\n458,548,9.0\n458,549,9.5\n458,550,6.0\n458,551,5.5\n458,552,5.0\n458,553,4.5\n458,554,4.0\n458,555,3.5\n458,556,3.0\n458,557,2.5\n458,558,2.0\n458,559,2.5\n458,560,3.0\n458,561,3.5\n458,562,4.0\n458,563,4.5\n458,564,5.0\n458,565,5.5\n458,566,6.0\n458,567,6.5\n458,568,7.0\n458,569,7.5\n458,570,8.0\n458,571,8.5\n458,572,9.0\n458,573,9.5\n458,574,10.0\n458,575,6.5\n458,576,6.0\n458,577,5.5\n458,578,5.0\n458,579,4.5\n458,580,4.0\n458,581,3.5\n458,582,3.0\n458,583,2.5\n458,584,3.0\n458,585,3.5\n458,586,4.0\n458,587,4.5\n458,588,5.0\n458,589,5.5\n458,590,6.0\n458,591,6.5\n458,592,7.0\n458,593,7.5\n458,594,8.0\n458,595,8.5\n458,596,9.0\n458,597,9.5\n458,598,10.0\n458,599,10.5\n458,600,7.0\n458,601,6.5\n458,602,6.0\n458,603,5.5\n458,604,5.0\n458,605,4.5\n458,606,4.0\n458,607,3.5\n458,608,3.0\n458,609,3.5\n458,610,4.0\n458,611,4.5\n458,612,5.0\n458,613,5.5\n458,614,6.0\n458,615,6.5\n458,616,7.0\n458,617,7.5\n458,618,8.0\n458,619,8.5\n458,620,9.0\n458,621,9.5\n458,622,10.0\n458,623,10.5\n458,624,11.0\n459,0,13.5\n459,1,13.0\n459,2,12.5\n459,3,12.0\n459,4,11.5\n459,5,11.0\n459,6,10.5\n459,7,10.0\n459,8,9.5\n459,9,9.0\n459,10,9.5\n459,11,10.0\n459,12,10.5\n459,13,11.0\n459,14,11.5\n459,15,12.0\n459,16,12.5\n459,17,13.0\n459,18,13.5\n459,19,14.0\n459,20,14.5\n459,21,15.0\n459,22,15.5\n459,23,16.0\n459,24,16.5\n459,25,13.0\n459,26,12.5\n459,27,12.0\n459,28,11.5\n459,29,11.0\n459,30,10.5\n459,31,10.0\n459,32,9.5\n459,33,9.0\n459,34,8.5\n459,35,9.0\n459,36,9.5\n459,37,10.0\n459,38,10.5\n459,39,11.0\n459,40,11.5\n459,41,12.0\n459,42,12.5\n459,43,13.0\n459,44,13.5\n459,45,14.0\n459,46,14.5\n459,47,15.0\n459,48,15.5\n459,49,16.0\n459,50,12.5\n459,51,12.0\n459,52,11.5\n459,53,11.0\n459,54,10.5\n459,55,10.0\n459,56,9.5\n459,57,9.0\n459,58,8.5\n459,59,8.0\n459,60,8.5\n459,61,9.0\n459,62,9.5\n459,63,10.0\n459,64,10.5\n459,65,11.0\n459,66,11.5\n459,67,12.0\n459,68,12.5\n459,69,13.0\n459,70,13.5\n459,71,14.0\n459,72,14.5\n459,73,15.0\n459,74,15.5\n459,75,12.0\n459,76,11.5\n459,77,11.0\n459,78,10.5\n459,79,10.0\n459,80,9.5\n459,81,9.0\n459,82,8.5\n459,83,8.0\n459,84,7.5\n459,85,8.0\n459,86,8.5\n459,87,9.0\n459,88,9.5\n459,89,10.0\n459,90,10.5\n459,91,11.0\n459,92,11.5\n459,93,12.0\n459,94,12.5\n459,95,13.0\n459,96,13.5\n459,97,14.0\n459,98,14.5\n459,99,15.0\n459,100,11.5\n459,101,11.0\n459,102,10.5\n459,103,10.0\n459,104,9.5\n459,105,9.0\n459,106,8.5\n459,107,8.0\n459,108,7.5\n459,109,7.0\n459,110,7.5\n459,111,8.0\n459,112,8.5\n459,113,9.0\n459,114,9.5\n459,115,10.0\n459,116,10.5\n459,117,11.0\n459,118,11.5\n459,119,12.0\n459,120,12.5\n459,121,13.0\n459,122,13.5\n459,123,14.0\n459,124,14.5\n459,125,11.0\n459,126,10.5\n459,127,10.0\n459,128,9.5\n459,129,9.0\n459,130,8.5\n459,131,8.0\n459,132,7.5\n459,133,7.0\n459,134,6.5\n459,135,7.0\n459,136,7.5\n459,137,8.0\n459,138,8.5\n459,139,9.0\n459,140,9.5\n459,141,10.0\n459,142,10.5\n459,143,11.0\n459,144,11.5\n459,145,12.0\n459,146,12.5\n459,147,13.0\n459,148,13.5\n459,149,14.0\n459,150,10.5\n459,151,10.0\n459,152,9.5\n459,153,9.0\n459,154,8.5\n459,155,8.0\n459,156,7.5\n459,157,7.0\n459,158,6.5\n459,159,6.0\n459,160,6.5\n459,161,7.0\n459,162,7.5\n459,163,8.0\n459,164,8.5\n459,165,9.0\n459,166,9.5\n459,167,10.0\n459,168,10.5\n459,169,11.0\n459,170,11.5\n459,171,12.0\n459,172,12.5\n459,173,13.0\n459,174,13.5\n459,175,10.0\n459,176,9.5\n459,177,9.0\n459,178,8.5\n459,179,8.0\n459,180,7.5\n459,181,7.0\n459,182,6.5\n459,183,6.0\n459,184,5.5\n459,185,6.0\n459,186,6.5\n459,187,7.0\n459,188,7.5\n459,189,8.0\n459,190,8.5\n459,191,9.0\n459,192,9.5\n459,193,10.0\n459,194,10.5\n459,195,11.0\n459,196,11.5\n459,197,12.0\n459,198,12.5\n459,199,13.0\n459,200,9.5\n459,201,9.0\n459,202,8.5\n459,203,8.0\n459,204,7.5\n459,205,7.0\n459,206,6.5\n459,207,6.0\n459,208,5.5\n459,209,5.0\n459,210,5.5\n459,211,6.0\n459,212,6.5\n459,213,7.0\n459,214,7.5\n459,215,8.0\n459,216,8.5\n459,217,9.0\n459,218,9.5\n459,219,10.0\n459,220,10.5\n459,221,11.0\n459,222,11.5\n459,223,12.0\n459,224,12.5\n459,225,9.0\n459,226,8.5\n459,227,8.0\n459,228,7.5\n459,229,7.0\n459,230,6.5\n459,231,6.0\n459,232,5.5\n459,233,5.0\n459,234,4.5\n459,235,5.0\n459,236,5.5\n459,237,6.0\n459,238,6.5\n459,239,7.0\n459,240,7.5\n459,241,8.0\n459,242,8.5\n459,243,9.0\n459,244,9.5\n459,245,10.0\n459,246,10.5\n459,247,11.0\n459,248,11.5\n459,249,12.0\n459,250,8.5\n459,251,8.0\n459,252,7.5\n459,253,7.0\n459,254,6.5\n459,255,6.0\n459,256,5.5\n459,257,5.0\n459,258,4.5\n459,259,4.0\n459,260,4.5\n459,261,5.0\n459,262,5.5\n459,263,6.0\n459,264,6.5\n459,265,7.0\n459,266,7.5\n459,267,8.0\n459,268,8.5\n459,269,9.0\n459,270,9.5\n459,271,10.0\n459,272,10.5\n459,273,11.0\n459,274,11.5\n459,275,8.0\n459,276,7.5\n459,277,7.0\n459,278,6.5\n459,279,6.0\n459,280,5.5\n459,281,5.0\n459,282,4.5\n459,283,4.0\n459,284,3.5\n459,285,4.0\n459,286,4.5\n459,287,5.0\n459,288,5.5\n459,289,6.0\n459,290,6.5\n459,291,7.0\n459,292,7.5\n459,293,8.0\n459,294,8.5\n459,295,9.0\n459,296,9.5\n459,297,10.0\n459,298,10.5\n459,299,11.0\n459,300,7.5\n459,301,7.0\n459,302,6.5\n459,303,6.0\n459,304,5.5\n459,305,5.0\n459,306,4.5\n459,307,4.0\n459,308,3.5\n459,309,3.0\n459,310,3.5\n459,311,4.0\n459,312,4.5\n459,313,5.0\n459,314,5.5\n459,315,6.0\n459,316,6.5\n459,317,7.0\n459,318,7.5\n459,319,8.0\n459,320,8.5\n459,321,9.0\n459,322,9.5\n459,323,10.0\n459,324,10.5\n459,325,7.0\n459,326,6.5\n459,327,6.0\n459,328,5.5\n459,329,5.0\n459,330,4.5\n459,331,4.0\n459,332,3.5\n459,333,3.0\n459,334,2.5\n459,335,3.0\n459,336,3.5\n459,337,4.0\n459,338,4.5\n459,339,5.0\n459,340,5.5\n459,341,6.0\n459,342,6.5\n459,343,7.0\n459,344,7.5\n459,345,8.0\n459,346,8.5\n459,347,9.0\n459,348,9.5\n459,349,10.0\n459,350,6.5\n459,351,6.0\n459,352,5.5\n459,353,5.0\n459,354,4.5\n459,355,4.0\n459,356,3.5\n459,357,3.0\n459,358,2.5\n459,359,2.0\n459,360,2.5\n459,361,3.0\n459,362,3.5\n459,363,4.0\n459,364,4.5\n459,365,5.0\n459,366,5.5\n459,367,6.0\n459,368,6.5\n459,369,7.0\n459,370,7.5\n459,371,8.0\n459,372,8.5\n459,373,9.0\n459,374,9.5\n459,375,6.0\n459,376,5.5\n459,377,5.0\n459,378,4.5\n459,379,4.0\n459,380,3.5\n459,381,3.0\n459,382,2.5\n459,383,2.0\n459,384,1.5\n459,385,2.0\n459,386,2.5\n459,387,3.0\n459,388,3.5\n459,389,4.0\n459,390,4.5\n459,391,5.0\n459,392,5.5\n459,393,6.0\n459,394,6.5\n459,395,7.0\n459,396,7.5\n459,397,8.0\n459,398,8.5\n459,399,9.0\n459,400,5.5\n459,401,5.0\n459,402,4.5\n459,403,4.0\n459,404,3.5\n459,405,3.0\n459,406,2.5\n459,407,2.0\n459,408,1.5\n459,409,1.0\n459,410,1.5\n459,411,2.0\n459,412,2.5\n459,413,3.0\n459,414,3.5\n459,415,4.0\n459,416,4.5\n459,417,5.0\n459,418,5.5\n459,419,6.0\n459,420,6.5\n459,421,7.0\n459,422,7.5\n459,423,8.0\n459,424,8.5\n459,425,5.0\n459,426,4.5\n459,427,4.0\n459,428,3.5\n459,429,3.0\n459,430,2.5\n459,431,2.0\n459,432,1.5\n459,433,1.0\n459,434,0.5\n459,435,1.0\n459,436,1.5\n459,437,2.0\n459,438,2.5\n459,439,3.0\n459,440,3.5\n459,441,4.0\n459,442,4.5\n459,443,5.0\n459,444,5.5\n459,445,6.0\n459,446,6.5\n459,447,7.0\n459,448,7.5\n459,449,8.0\n459,450,4.5\n459,451,4.0\n459,452,3.5\n459,453,3.0\n459,454,2.5\n459,455,2.0\n459,456,1.5\n459,457,1.0\n459,458,0.5\n459,459,0\n459,460,0.5\n459,461,1.0\n459,462,1.5\n459,463,2.0\n459,464,2.5\n459,465,3.0\n459,466,3.5\n459,467,4.0\n459,468,4.5\n459,469,5.0\n459,470,5.5\n459,471,6.0\n459,472,6.5\n459,473,7.0\n459,474,7.5\n459,475,5.0\n459,476,4.5\n459,477,4.0\n459,478,3.5\n459,479,3.0\n459,480,2.5\n459,481,2.0\n459,482,1.5\n459,483,1.0\n459,484,0.5\n459,485,1.0\n459,486,1.5\n459,487,2.0\n459,488,2.5\n459,489,3.0\n459,490,3.5\n459,491,4.0\n459,492,4.5\n459,493,5.0\n459,494,5.5\n459,495,6.0\n459,496,6.5\n459,497,7.0\n459,498,7.5\n459,499,8.0\n459,500,5.5\n459,501,5.0\n459,502,4.5\n459,503,4.0\n459,504,3.5\n459,505,3.0\n459,506,2.5\n459,507,2.0\n459,508,1.5\n459,509,1.0\n459,510,1.5\n459,511,2.0\n459,512,2.5\n459,513,3.0\n459,514,3.5\n459,515,4.0\n459,516,4.5\n459,517,5.0\n459,518,5.5\n459,519,6.0\n459,520,6.5\n459,521,7.0\n459,522,7.5\n459,523,8.0\n459,524,8.5\n459,525,6.0\n459,526,5.5\n459,527,5.0\n459,528,4.5\n459,529,4.0\n459,530,3.5\n459,531,3.0\n459,532,2.5\n459,533,2.0\n459,534,1.5\n459,535,2.0\n459,536,2.5\n459,537,3.0\n459,538,3.5\n459,539,4.0\n459,540,4.5\n459,541,5.0\n459,542,5.5\n459,543,6.0\n459,544,6.5\n459,545,7.0\n459,546,7.5\n459,547,8.0\n459,548,8.5\n459,549,9.0\n459,550,6.5\n459,551,6.0\n459,552,5.5\n459,553,5.0\n459,554,4.5\n459,555,4.0\n459,556,3.5\n459,557,3.0\n459,558,2.5\n459,559,2.0\n459,560,2.5\n459,561,3.0\n459,562,3.5\n459,563,4.0\n459,564,4.5\n459,565,5.0\n459,566,5.5\n459,567,6.0\n459,568,6.5\n459,569,7.0\n459,570,7.5\n459,571,8.0\n459,572,8.5\n459,573,9.0\n459,574,9.5\n459,575,7.0\n459,576,6.5\n459,577,6.0\n459,578,5.5\n459,579,5.0\n459,580,4.5\n459,581,4.0\n459,582,3.5\n459,583,3.0\n459,584,2.5\n459,585,3.0\n459,586,3.5\n459,587,4.0\n459,588,4.5\n459,589,5.0\n459,590,5.5\n459,591,6.0\n459,592,6.5\n459,593,7.0\n459,594,7.5\n459,595,8.0\n459,596,8.5\n459,597,9.0\n459,598,9.5\n459,599,10.0\n459,600,7.5\n459,601,7.0\n459,602,6.5\n459,603,6.0\n459,604,5.5\n459,605,5.0\n459,606,4.5\n459,607,4.0\n459,608,3.5\n459,609,3.0\n459,610,3.5\n459,611,4.0\n459,612,4.5\n459,613,5.0\n459,614,5.5\n459,615,6.0\n459,616,6.5\n459,617,7.0\n459,618,7.5\n459,619,8.0\n459,620,8.5\n459,621,9.0\n459,622,9.5\n459,623,10.0\n459,624,10.5\n460,0,14.0\n460,1,13.5\n460,2,13.0\n460,3,12.5\n460,4,12.0\n460,5,11.5\n460,6,11.0\n460,7,10.5\n460,8,10.0\n460,9,9.5\n460,10,9.0\n460,11,9.5\n460,12,10.0\n460,13,10.5\n460,14,11.0\n460,15,11.5\n460,16,12.0\n460,17,12.5\n460,18,13.0\n460,19,13.5\n460,20,14.0\n460,21,14.5\n460,22,15.0\n460,23,15.5\n460,24,16.0\n460,25,13.5\n460,26,13.0\n460,27,12.5\n460,28,12.0\n460,29,11.5\n460,30,11.0\n460,31,10.5\n460,32,10.0\n460,33,9.5\n460,34,9.0\n460,35,8.5\n460,36,9.0\n460,37,9.5\n460,38,10.0\n460,39,10.5\n460,40,11.0\n460,41,11.5\n460,42,12.0\n460,43,12.5\n460,44,13.0\n460,45,13.5\n460,46,14.0\n460,47,14.5\n460,48,15.0\n460,49,15.5\n460,50,13.0\n460,51,12.5\n460,52,12.0\n460,53,11.5\n460,54,11.0\n460,55,10.5\n460,56,10.0\n460,57,9.5\n460,58,9.0\n460,59,8.5\n460,60,8.0\n460,61,8.5\n460,62,9.0\n460,63,9.5\n460,64,10.0\n460,65,10.5\n460,66,11.0\n460,67,11.5\n460,68,12.0\n460,69,12.5\n460,70,13.0\n460,71,13.5\n460,72,14.0\n460,73,14.5\n460,74,15.0\n460,75,12.5\n460,76,12.0\n460,77,11.5\n460,78,11.0\n460,79,10.5\n460,80,10.0\n460,81,9.5\n460,82,9.0\n460,83,8.5\n460,84,8.0\n460,85,7.5\n460,86,8.0\n460,87,8.5\n460,88,9.0\n460,89,9.5\n460,90,10.0\n460,91,10.5\n460,92,11.0\n460,93,11.5\n460,94,12.0\n460,95,12.5\n460,96,13.0\n460,97,13.5\n460,98,14.0\n460,99,14.5\n460,100,12.0\n460,101,11.5\n460,102,11.0\n460,103,10.5\n460,104,10.0\n460,105,9.5\n460,106,9.0\n460,107,8.5\n460,108,8.0\n460,109,7.5\n460,110,7.0\n460,111,7.5\n460,112,8.0\n460,113,8.5\n460,114,9.0\n460,115,9.5\n460,116,10.0\n460,117,10.5\n460,118,11.0\n460,119,11.5\n460,120,12.0\n460,121,12.5\n460,122,13.0\n460,123,13.5\n460,124,14.0\n460,125,11.5\n460,126,11.0\n460,127,10.5\n460,128,10.0\n460,129,9.5\n460,130,9.0\n460,131,8.5\n460,132,8.0\n460,133,7.5\n460,134,7.0\n460,135,6.5\n460,136,7.0\n460,137,7.5\n460,138,8.0\n460,139,8.5\n460,140,9.0\n460,141,9.5\n460,142,10.0\n460,143,10.5\n460,144,11.0\n460,145,11.5\n460,146,12.0\n460,147,12.5\n460,148,13.0\n460,149,13.5\n460,150,11.0\n460,151,10.5\n460,152,10.0\n460,153,9.5\n460,154,9.0\n460,155,8.5\n460,156,8.0\n460,157,7.5\n460,158,7.0\n460,159,6.5\n460,160,6.0\n460,161,6.5\n460,162,7.0\n460,163,7.5\n460,164,8.0\n460,165,8.5\n460,166,9.0\n460,167,9.5\n460,168,10.0\n460,169,10.5\n460,170,11.0\n460,171,11.5\n460,172,12.0\n460,173,12.5\n460,174,13.0\n460,175,10.5\n460,176,10.0\n460,177,9.5\n460,178,9.0\n460,179,8.5\n460,180,8.0\n460,181,7.5\n460,182,7.0\n460,183,6.5\n460,184,6.0\n460,185,5.5\n460,186,6.0\n460,187,6.5\n460,188,7.0\n460,189,7.5\n460,190,8.0\n460,191,8.5\n460,192,9.0\n460,193,9.5\n460,194,10.0\n460,195,10.5\n460,196,11.0\n460,197,11.5\n460,198,12.0\n460,199,12.5\n460,200,10.0\n460,201,9.5\n460,202,9.0\n460,203,8.5\n460,204,8.0\n460,205,7.5\n460,206,7.0\n460,207,6.5\n460,208,6.0\n460,209,5.5\n460,210,5.0\n460,211,5.5\n460,212,6.0\n460,213,6.5\n460,214,7.0\n460,215,7.5\n460,216,8.0\n460,217,8.5\n460,218,9.0\n460,219,9.5\n460,220,10.0\n460,221,10.5\n460,222,11.0\n460,223,11.5\n460,224,12.0\n460,225,9.5\n460,226,9.0\n460,227,8.5\n460,228,8.0\n460,229,7.5\n460,230,7.0\n460,231,6.5\n460,232,6.0\n460,233,5.5\n460,234,5.0\n460,235,4.5\n460,236,5.0\n460,237,5.5\n460,238,6.0\n460,239,6.5\n460,240,7.0\n460,241,7.5\n460,242,8.0\n460,243,8.5\n460,244,9.0\n460,245,9.5\n460,246,10.0\n460,247,10.5\n460,248,11.0\n460,249,11.5\n460,250,9.0\n460,251,8.5\n460,252,8.0\n460,253,7.5\n460,254,7.0\n460,255,6.5\n460,256,6.0\n460,257,5.5\n460,258,5.0\n460,259,4.5\n460,260,4.0\n460,261,4.5\n460,262,5.0\n460,263,5.5\n460,264,6.0\n460,265,6.5\n460,266,7.0\n460,267,7.5\n460,268,8.0\n460,269,8.5\n460,270,9.0\n460,271,9.5\n460,272,10.0\n460,273,10.5\n460,274,11.0\n460,275,8.5\n460,276,8.0\n460,277,7.5\n460,278,7.0\n460,279,6.5\n460,280,6.0\n460,281,5.5\n460,282,5.0\n460,283,4.5\n460,284,4.0\n460,285,3.5\n460,286,4.0\n460,287,4.5\n460,288,5.0\n460,289,5.5\n460,290,6.0\n460,291,6.5\n460,292,7.0\n460,293,7.5\n460,294,8.0\n460,295,8.5\n460,296,9.0\n460,297,9.5\n460,298,10.0\n460,299,10.5\n460,300,8.0\n460,301,7.5\n460,302,7.0\n460,303,6.5\n460,304,6.0\n460,305,5.5\n460,306,5.0\n460,307,4.5\n460,308,4.0\n460,309,3.5\n460,310,3.0\n460,311,3.5\n460,312,4.0\n460,313,4.5\n460,314,5.0\n460,315,5.5\n460,316,6.0\n460,317,6.5\n460,318,7.0\n460,319,7.5\n460,320,8.0\n460,321,8.5\n460,322,9.0\n460,323,9.5\n460,324,10.0\n460,325,7.5\n460,326,7.0\n460,327,6.5\n460,328,6.0\n460,329,5.5\n460,330,5.0\n460,331,4.5\n460,332,4.0\n460,333,3.5\n460,334,3.0\n460,335,2.5\n460,336,3.0\n460,337,3.5\n460,338,4.0\n460,339,4.5\n460,340,5.0\n460,341,5.5\n460,342,6.0\n460,343,6.5\n460,344,7.0\n460,345,7.5\n460,346,8.0\n460,347,8.5\n460,348,9.0\n460,349,9.5\n460,350,7.0\n460,351,6.5\n460,352,6.0\n460,353,5.5\n460,354,5.0\n460,355,4.5\n460,356,4.0\n460,357,3.5\n460,358,3.0\n460,359,2.5\n460,360,2.0\n460,361,2.5\n460,362,3.0\n460,363,3.5\n460,364,4.0\n460,365,4.5\n460,366,5.0\n460,367,5.5\n460,368,6.0\n460,369,6.5\n460,370,7.0\n460,371,7.5\n460,372,8.0\n460,373,8.5\n460,374,9.0\n460,375,6.5\n460,376,6.0\n460,377,5.5\n460,378,5.0\n460,379,4.5\n460,380,4.0\n460,381,3.5\n460,382,3.0\n460,383,2.5\n460,384,2.0\n460,385,1.5\n460,386,2.0\n460,387,2.5\n460,388,3.0\n460,389,3.5\n460,390,4.0\n460,391,4.5\n460,392,5.0\n460,393,5.5\n460,394,6.0\n460,395,6.5\n460,396,7.0\n460,397,7.5\n460,398,8.0\n460,399,8.5\n460,400,6.0\n460,401,5.5\n460,402,5.0\n460,403,4.5\n460,404,4.0\n460,405,3.5\n460,406,3.0\n460,407,2.5\n460,408,2.0\n460,409,1.5\n460,410,1.0\n460,411,1.5\n460,412,2.0\n460,413,2.5\n460,414,3.0\n460,415,3.5\n460,416,4.0\n460,417,4.5\n460,418,5.0\n460,419,5.5\n460,420,6.0\n460,421,6.5\n460,422,7.0\n460,423,7.5\n460,424,8.0\n460,425,5.5\n460,426,5.0\n460,427,4.5\n460,428,4.0\n460,429,3.5\n460,430,3.0\n460,431,2.5\n460,432,2.0\n460,433,1.5\n460,434,1.0\n460,435,0.5\n460,436,1.0\n460,437,1.5\n460,438,2.0\n460,439,2.5\n460,440,3.0\n460,441,3.5\n460,442,4.0\n460,443,4.5\n460,444,5.0\n460,445,5.5\n460,446,6.0\n460,447,6.5\n460,448,7.0\n460,449,7.5\n460,450,5.0\n460,451,4.5\n460,452,4.0\n460,453,3.5\n460,454,3.0\n460,455,2.5\n460,456,2.0\n460,457,1.5\n460,458,1.0\n460,459,0.5\n460,460,0\n460,461,0.5\n460,462,1.0\n460,463,1.5\n460,464,2.0\n460,465,2.5\n460,466,3.0\n460,467,3.5\n460,468,4.0\n460,469,4.5\n460,470,5.0\n460,471,5.5\n460,472,6.0\n460,473,6.5\n460,474,7.0\n460,475,5.5\n460,476,5.0\n460,477,4.5\n460,478,4.0\n460,479,3.5\n460,480,3.0\n460,481,2.5\n460,482,2.0\n460,483,1.5\n460,484,1.0\n460,485,0.5\n460,486,1.0\n460,487,1.5\n460,488,2.0\n460,489,2.5\n460,490,3.0\n460,491,3.5\n460,492,4.0\n460,493,4.5\n460,494,5.0\n460,495,5.5\n460,496,6.0\n460,497,6.5\n460,498,7.0\n460,499,7.5\n460,500,6.0\n460,501,5.5\n460,502,5.0\n460,503,4.5\n460,504,4.0\n460,505,3.5\n460,506,3.0\n460,507,2.5\n460,508,2.0\n460,509,1.5\n460,510,1.0\n460,511,1.5\n460,512,2.0\n460,513,2.5\n460,514,3.0\n460,515,3.5\n460,516,4.0\n460,517,4.5\n460,518,5.0\n460,519,5.5\n460,520,6.0\n460,521,6.5\n460,522,7.0\n460,523,7.5\n460,524,8.0\n460,525,6.5\n460,526,6.0\n460,527,5.5\n460,528,5.0\n460,529,4.5\n460,530,4.0\n460,531,3.5\n460,532,3.0\n460,533,2.5\n460,534,2.0\n460,535,1.5\n460,536,2.0\n460,537,2.5\n460,538,3.0\n460,539,3.5\n460,540,4.0\n460,541,4.5\n460,542,5.0\n460,543,5.5\n460,544,6.0\n460,545,6.5\n460,546,7.0\n460,547,7.5\n460,548,8.0\n460,549,8.5\n460,550,7.0\n460,551,6.5\n460,552,6.0\n460,553,5.5\n460,554,5.0\n460,555,4.5\n460,556,4.0\n460,557,3.5\n460,558,3.0\n460,559,2.5\n460,560,2.0\n460,561,2.5\n460,562,3.0\n460,563,3.5\n460,564,4.0\n460,565,4.5\n460,566,5.0\n460,567,5.5\n460,568,6.0\n460,569,6.5\n460,570,7.0\n460,571,7.5\n460,572,8.0\n460,573,8.5\n460,574,9.0\n460,575,7.5\n460,576,7.0\n460,577,6.5\n460,578,6.0\n460,579,5.5\n460,580,5.0\n460,581,4.5\n460,582,4.0\n460,583,3.5\n460,584,3.0\n460,585,2.5\n460,586,3.0\n460,587,3.5\n460,588,4.0\n460,589,4.5\n460,590,5.0\n460,591,5.5\n460,592,6.0\n460,593,6.5\n460,594,7.0\n460,595,7.5\n460,596,8.0\n460,597,8.5\n460,598,9.0\n460,599,9.5\n460,600,8.0\n460,601,7.5\n460,602,7.0\n460,603,6.5\n460,604,6.0\n460,605,5.5\n460,606,5.0\n460,607,4.5\n460,608,4.0\n460,609,3.5\n460,610,3.0\n460,611,3.5\n460,612,4.0\n460,613,4.5\n460,614,5.0\n460,615,5.5\n460,616,6.0\n460,617,6.5\n460,618,7.0\n460,619,7.5\n460,620,8.0\n460,621,8.5\n460,622,9.0\n460,623,9.5\n460,624,10.0\n461,0,14.5\n461,1,14.0\n461,2,13.5\n461,3,13.0\n461,4,12.5\n461,5,12.0\n461,6,11.5\n461,7,11.0\n461,8,10.5\n461,9,10.0\n461,10,9.5\n461,11,9.0\n461,12,9.5\n461,13,10.0\n461,14,10.5\n461,15,11.0\n461,16,11.5\n461,17,12.0\n461,18,12.5\n461,19,13.0\n461,20,13.5\n461,21,14.0\n461,22,14.5\n461,23,15.0\n461,24,15.5\n461,25,14.0\n461,26,13.5\n461,27,13.0\n461,28,12.5\n461,29,12.0\n461,30,11.5\n461,31,11.0\n461,32,10.5\n461,33,10.0\n461,34,9.5\n461,35,9.0\n461,36,8.5\n461,37,9.0\n461,38,9.5\n461,39,10.0\n461,40,10.5\n461,41,11.0\n461,42,11.5\n461,43,12.0\n461,44,12.5\n461,45,13.0\n461,46,13.5\n461,47,14.0\n461,48,14.5\n461,49,15.0\n461,50,13.5\n461,51,13.0\n461,52,12.5\n461,53,12.0\n461,54,11.5\n461,55,11.0\n461,56,10.5\n461,57,10.0\n461,58,9.5\n461,59,9.0\n461,60,8.5\n461,61,8.0\n461,62,8.5\n461,63,9.0\n461,64,9.5\n461,65,10.0\n461,66,10.5\n461,67,11.0\n461,68,11.5\n461,69,12.0\n461,70,12.5\n461,71,13.0\n461,72,13.5\n461,73,14.0\n461,74,14.5\n461,75,13.0\n461,76,12.5\n461,77,12.0\n461,78,11.5\n461,79,11.0\n461,80,10.5\n461,81,10.0\n461,82,9.5\n461,83,9.0\n461,84,8.5\n461,85,8.0\n461,86,7.5\n461,87,8.0\n461,88,8.5\n461,89,9.0\n461,90,9.5\n461,91,10.0\n461,92,10.5\n461,93,11.0\n461,94,11.5\n461,95,12.0\n461,96,12.5\n461,97,13.0\n461,98,13.5\n461,99,14.0\n461,100,12.5\n461,101,12.0\n461,102,11.5\n461,103,11.0\n461,104,10.5\n461,105,10.0\n461,106,9.5\n461,107,9.0\n461,108,8.5\n461,109,8.0\n461,110,7.5\n461,111,7.0\n461,112,7.5\n461,113,8.0\n461,114,8.5\n461,115,9.0\n461,116,9.5\n461,117,10.0\n461,118,10.5\n461,119,11.0\n461,120,11.5\n461,121,12.0\n461,122,12.5\n461,123,13.0\n461,124,13.5\n461,125,12.0\n461,126,11.5\n461,127,11.0\n461,128,10.5\n461,129,10.0\n461,130,9.5\n461,131,9.0\n461,132,8.5\n461,133,8.0\n461,134,7.5\n461,135,7.0\n461,136,6.5\n461,137,7.0\n461,138,7.5\n461,139,8.0\n461,140,8.5\n461,141,9.0\n461,142,9.5\n461,143,10.0\n461,144,10.5\n461,145,11.0\n461,146,11.5\n461,147,12.0\n461,148,12.5\n461,149,13.0\n461,150,11.5\n461,151,11.0\n461,152,10.5\n461,153,10.0\n461,154,9.5\n461,155,9.0\n461,156,8.5\n461,157,8.0\n461,158,7.5\n461,159,7.0\n461,160,6.5\n461,161,6.0\n461,162,6.5\n461,163,7.0\n461,164,7.5\n461,165,8.0\n461,166,8.5\n461,167,9.0\n461,168,9.5\n461,169,10.0\n461,170,10.5\n461,171,11.0\n461,172,11.5\n461,173,12.0\n461,174,12.5\n461,175,11.0\n461,176,10.5\n461,177,10.0\n461,178,9.5\n461,179,9.0\n461,180,8.5\n461,181,8.0\n461,182,7.5\n461,183,7.0\n461,184,6.5\n461,185,6.0\n461,186,5.5\n461,187,6.0\n461,188,6.5\n461,189,7.0\n461,190,7.5\n461,191,8.0\n461,192,8.5\n461,193,9.0\n461,194,9.5\n461,195,10.0\n461,196,10.5\n461,197,11.0\n461,198,11.5\n461,199,12.0\n461,200,10.5\n461,201,10.0\n461,202,9.5\n461,203,9.0\n461,204,8.5\n461,205,8.0\n461,206,7.5\n461,207,7.0\n461,208,6.5\n461,209,6.0\n461,210,5.5\n461,211,5.0\n461,212,5.5\n461,213,6.0\n461,214,6.5\n461,215,7.0\n461,216,7.5\n461,217,8.0\n461,218,8.5\n461,219,9.0\n461,220,9.5\n461,221,10.0\n461,222,10.5\n461,223,11.0\n461,224,11.5\n461,225,10.0\n461,226,9.5\n461,227,9.0\n461,228,8.5\n461,229,8.0\n461,230,7.5\n461,231,7.0\n461,232,6.5\n461,233,6.0\n461,234,5.5\n461,235,5.0\n461,236,4.5\n461,237,5.0\n461,238,5.5\n461,239,6.0\n461,240,6.5\n461,241,7.0\n461,242,7.5\n461,243,8.0\n461,244,8.5\n461,245,9.0\n461,246,9.5\n461,247,10.0\n461,248,10.5\n461,249,11.0\n461,250,9.5\n461,251,9.0\n461,252,8.5\n461,253,8.0\n461,254,7.5\n461,255,7.0\n461,256,6.5\n461,257,6.0\n461,258,5.5\n461,259,5.0\n461,260,4.5\n461,261,4.0\n461,262,4.5\n461,263,5.0\n461,264,5.5\n461,265,6.0\n461,266,6.5\n461,267,7.0\n461,268,7.5\n461,269,8.0\n461,270,8.5\n461,271,9.0\n461,272,9.5\n461,273,10.0\n461,274,10.5\n461,275,9.0\n461,276,8.5\n461,277,8.0\n461,278,7.5\n461,279,7.0\n461,280,6.5\n461,281,6.0\n461,282,5.5\n461,283,5.0\n461,284,4.5\n461,285,4.0\n461,286,3.5\n461,287,4.0\n461,288,4.5\n461,289,5.0\n461,290,5.5\n461,291,6.0\n461,292,6.5\n461,293,7.0\n461,294,7.5\n461,295,8.0\n461,296,8.5\n461,297,9.0\n461,298,9.5\n461,299,10.0\n461,300,8.5\n461,301,8.0\n461,302,7.5\n461,303,7.0\n461,304,6.5\n461,305,6.0\n461,306,5.5\n461,307,5.0\n461,308,4.5\n461,309,4.0\n461,310,3.5\n461,311,3.0\n461,312,3.5\n461,313,4.0\n461,314,4.5\n461,315,5.0\n461,316,5.5\n461,317,6.0\n461,318,6.5\n461,319,7.0\n461,320,7.5\n461,321,8.0\n461,322,8.5\n461,323,9.0\n461,324,9.5\n461,325,8.0\n461,326,7.5\n461,327,7.0\n461,328,6.5\n461,329,6.0\n461,330,5.5\n461,331,5.0\n461,332,4.5\n461,333,4.0\n461,334,3.5\n461,335,3.0\n461,336,2.5\n461,337,3.0\n461,338,3.5\n461,339,4.0\n461,340,4.5\n461,341,5.0\n461,342,5.5\n461,343,6.0\n461,344,6.5\n461,345,7.0\n461,346,7.5\n461,347,8.0\n461,348,8.5\n461,349,9.0\n461,350,7.5\n461,351,7.0\n461,352,6.5\n461,353,6.0\n461,354,5.5\n461,355,5.0\n461,356,4.5\n461,357,4.0\n461,358,3.5\n461,359,3.0\n461,360,2.5\n461,361,2.0\n461,362,2.5\n461,363,3.0\n461,364,3.5\n461,365,4.0\n461,366,4.5\n461,367,5.0\n461,368,5.5\n461,369,6.0\n461,370,6.5\n461,371,7.0\n461,372,7.5\n461,373,8.0\n461,374,8.5\n461,375,7.0\n461,376,6.5\n461,377,6.0\n461,378,5.5\n461,379,5.0\n461,380,4.5\n461,381,4.0\n461,382,3.5\n461,383,3.0\n461,384,2.5\n461,385,2.0\n461,386,1.5\n461,387,2.0\n461,388,2.5\n461,389,3.0\n461,390,3.5\n461,391,4.0\n461,392,4.5\n461,393,5.0\n461,394,5.5\n461,395,6.0\n461,396,6.5\n461,397,7.0\n461,398,7.5\n461,399,8.0\n461,400,6.5\n461,401,6.0\n461,402,5.5\n461,403,5.0\n461,404,4.5\n461,405,4.0\n461,406,3.5\n461,407,3.0\n461,408,2.5\n461,409,2.0\n461,410,1.5\n461,411,1.0\n461,412,1.5\n461,413,2.0\n461,414,2.5\n461,415,3.0\n461,416,3.5\n461,417,4.0\n461,418,4.5\n461,419,5.0\n461,420,5.5\n461,421,6.0\n461,422,6.5\n461,423,7.0\n461,424,7.5\n461,425,6.0\n461,426,5.5\n461,427,5.0\n461,428,4.5\n461,429,4.0\n461,430,3.5\n461,431,3.0\n461,432,2.5\n461,433,2.0\n461,434,1.5\n461,435,1.0\n461,436,0.5\n461,437,1.0\n461,438,1.5\n461,439,2.0\n461,440,2.5\n461,441,3.0\n461,442,3.5\n461,443,4.0\n461,444,4.5\n461,445,5.0\n461,446,5.5\n461,447,6.0\n461,448,6.5\n461,449,7.0\n461,450,5.5\n461,451,5.0\n461,452,4.5\n461,453,4.0\n461,454,3.5\n461,455,3.0\n461,456,2.5\n461,457,2.0\n461,458,1.5\n461,459,1.0\n461,460,0.5\n461,461,0\n461,462,0.5\n461,463,1.0\n461,464,1.5\n461,465,2.0\n461,466,2.5\n461,467,3.0\n461,468,3.5\n461,469,4.0\n461,470,4.5\n461,471,5.0\n461,472,5.5\n461,473,6.0\n461,474,6.5\n461,475,6.0\n461,476,5.5\n461,477,5.0\n461,478,4.5\n461,479,4.0\n461,480,3.5\n461,481,3.0\n461,482,2.5\n461,483,2.0\n461,484,1.5\n461,485,1.0\n461,486,0.5\n461,487,1.0\n461,488,1.5\n461,489,2.0\n461,490,2.5\n461,491,3.0\n461,492,3.5\n461,493,4.0\n461,494,4.5\n461,495,5.0\n461,496,5.5\n461,497,6.0\n461,498,6.5\n461,499,7.0\n461,500,6.5\n461,501,6.0\n461,502,5.5\n461,503,5.0\n461,504,4.5\n461,505,4.0\n461,506,3.5\n461,507,3.0\n461,508,2.5\n461,509,2.0\n461,510,1.5\n461,511,1.0\n461,512,1.5\n461,513,2.0\n461,514,2.5\n461,515,3.0\n461,516,3.5\n461,517,4.0\n461,518,4.5\n461,519,5.0\n461,520,5.5\n461,521,6.0\n461,522,6.5\n461,523,7.0\n461,524,7.5\n461,525,7.0\n461,526,6.5\n461,527,6.0\n461,528,5.5\n461,529,5.0\n461,530,4.5\n461,531,4.0\n461,532,3.5\n461,533,3.0\n461,534,2.5\n461,535,2.0\n461,536,1.5\n461,537,2.0\n461,538,2.5\n461,539,3.0\n461,540,3.5\n461,541,4.0\n461,542,4.5\n461,543,5.0\n461,544,5.5\n461,545,6.0\n461,546,6.5\n461,547,7.0\n461,548,7.5\n461,549,8.0\n461,550,7.5\n461,551,7.0\n461,552,6.5\n461,553,6.0\n461,554,5.5\n461,555,5.0\n461,556,4.5\n461,557,4.0\n461,558,3.5\n461,559,3.0\n461,560,2.5\n461,561,2.0\n461,562,2.5\n461,563,3.0\n461,564,3.5\n461,565,4.0\n461,566,4.5\n461,567,5.0\n461,568,5.5\n461,569,6.0\n461,570,6.5\n461,571,7.0\n461,572,7.5\n461,573,8.0\n461,574,8.5\n461,575,8.0\n461,576,7.5\n461,577,7.0\n461,578,6.5\n461,579,6.0\n461,580,5.5\n461,581,5.0\n461,582,4.5\n461,583,4.0\n461,584,3.5\n461,585,3.0\n461,586,2.5\n461,587,3.0\n461,588,3.5\n461,589,4.0\n461,590,4.5\n461,591,5.0\n461,592,5.5\n461,593,6.0\n461,594,6.5\n461,595,7.0\n461,596,7.5\n461,597,8.0\n461,598,8.5\n461,599,9.0\n461,600,8.5\n461,601,8.0\n461,602,7.5\n461,603,7.0\n461,604,6.5\n461,605,6.0\n461,606,5.5\n461,607,5.0\n461,608,4.5\n461,609,4.0\n461,610,3.5\n461,611,3.0\n461,612,3.5\n461,613,4.0\n461,614,4.5\n461,615,5.0\n461,616,5.5\n461,617,6.0\n461,618,6.5\n461,619,7.0\n461,620,7.5\n461,621,8.0\n461,622,8.5\n461,623,9.0\n461,624,9.5\n462,0,15.0\n462,1,14.5\n462,2,14.0\n462,3,13.5\n462,4,13.0\n462,5,12.5\n462,6,12.0\n462,7,11.5\n462,8,11.0\n462,9,10.5\n462,10,10.0\n462,11,9.5\n462,12,9.0\n462,13,9.5\n462,14,10.0\n462,15,10.5\n462,16,11.0\n462,17,11.5\n462,18,12.0\n462,19,12.5\n462,20,13.0\n462,21,13.5\n462,22,14.0\n462,23,14.5\n462,24,15.0\n462,25,14.5\n462,26,14.0\n462,27,13.5\n462,28,13.0\n462,29,12.5\n462,30,12.0\n462,31,11.5\n462,32,11.0\n462,33,10.5\n462,34,10.0\n462,35,9.5\n462,36,9.0\n462,37,8.5\n462,38,9.0\n462,39,9.5\n462,40,10.0\n462,41,10.5\n462,42,11.0\n462,43,11.5\n462,44,12.0\n462,45,12.5\n462,46,13.0\n462,47,13.5\n462,48,14.0\n462,49,14.5\n462,50,14.0\n462,51,13.5\n462,52,13.0\n462,53,12.5\n462,54,12.0\n462,55,11.5\n462,56,11.0\n462,57,10.5\n462,58,10.0\n462,59,9.5\n462,60,9.0\n462,61,8.5\n462,62,8.0\n462,63,8.5\n462,64,9.0\n462,65,9.5\n462,66,10.0\n462,67,10.5\n462,68,11.0\n462,69,11.5\n462,70,12.0\n462,71,12.5\n462,72,13.0\n462,73,13.5\n462,74,14.0\n462,75,13.5\n462,76,13.0\n462,77,12.5\n462,78,12.0\n462,79,11.5\n462,80,11.0\n462,81,10.5\n462,82,10.0\n462,83,9.5\n462,84,9.0\n462,85,8.5\n462,86,8.0\n462,87,7.5\n462,88,8.0\n462,89,8.5\n462,90,9.0\n462,91,9.5\n462,92,10.0\n462,93,10.5\n462,94,11.0\n462,95,11.5\n462,96,12.0\n462,97,12.5\n462,98,13.0\n462,99,13.5\n462,100,13.0\n462,101,12.5\n462,102,12.0\n462,103,11.5\n462,104,11.0\n462,105,10.5\n462,106,10.0\n462,107,9.5\n462,108,9.0\n462,109,8.5\n462,110,8.0\n462,111,7.5\n462,112,7.0\n462,113,7.5\n462,114,8.0\n462,115,8.5\n462,116,9.0\n462,117,9.5\n462,118,10.0\n462,119,10.5\n462,120,11.0\n462,121,11.5\n462,122,12.0\n462,123,12.5\n462,124,13.0\n462,125,12.5\n462,126,12.0\n462,127,11.5\n462,128,11.0\n462,129,10.5\n462,130,10.0\n462,131,9.5\n462,132,9.0\n462,133,8.5\n462,134,8.0\n462,135,7.5\n462,136,7.0\n462,137,6.5\n462,138,7.0\n462,139,7.5\n462,140,8.0\n462,141,8.5\n462,142,9.0\n462,143,9.5\n462,144,10.0\n462,145,10.5\n462,146,11.0\n462,147,11.5\n462,148,12.0\n462,149,12.5\n462,150,12.0\n462,151,11.5\n462,152,11.0\n462,153,10.5\n462,154,10.0\n462,155,9.5\n462,156,9.0\n462,157,8.5\n462,158,8.0\n462,159,7.5\n462,160,7.0\n462,161,6.5\n462,162,6.0\n462,163,6.5\n462,164,7.0\n462,165,7.5\n462,166,8.0\n462,167,8.5\n462,168,9.0\n462,169,9.5\n462,170,10.0\n462,171,10.5\n462,172,11.0\n462,173,11.5\n462,174,12.0\n462,175,11.5\n462,176,11.0\n462,177,10.5\n462,178,10.0\n462,179,9.5\n462,180,9.0\n462,181,8.5\n462,182,8.0\n462,183,7.5\n462,184,7.0\n462,185,6.5\n462,186,6.0\n462,187,5.5\n462,188,6.0\n462,189,6.5\n462,190,7.0\n462,191,7.5\n462,192,8.0\n462,193,8.5\n462,194,9.0\n462,195,9.5\n462,196,10.0\n462,197,10.5\n462,198,11.0\n462,199,11.5\n462,200,11.0\n462,201,10.5\n462,202,10.0\n462,203,9.5\n462,204,9.0\n462,205,8.5\n462,206,8.0\n462,207,7.5\n462,208,7.0\n462,209,6.5\n462,210,6.0\n462,211,5.5\n462,212,5.0\n462,213,5.5\n462,214,6.0\n462,215,6.5\n462,216,7.0\n462,217,7.5\n462,218,8.0\n462,219,8.5\n462,220,9.0\n462,221,9.5\n462,222,10.0\n462,223,10.5\n462,224,11.0\n462,225,10.5\n462,226,10.0\n462,227,9.5\n462,228,9.0\n462,229,8.5\n462,230,8.0\n462,231,7.5\n462,232,7.0\n462,233,6.5\n462,234,6.0\n462,235,5.5\n462,236,5.0\n462,237,4.5\n462,238,5.0\n462,239,5.5\n462,240,6.0\n462,241,6.5\n462,242,7.0\n462,243,7.5\n462,244,8.0\n462,245,8.5\n462,246,9.0\n462,247,9.5\n462,248,10.0\n462,249,10.5\n462,250,10.0\n462,251,9.5\n462,252,9.0\n462,253,8.5\n462,254,8.0\n462,255,7.5\n462,256,7.0\n462,257,6.5\n462,258,6.0\n462,259,5.5\n462,260,5.0\n462,261,4.5\n462,262,4.0\n462,263,4.5\n462,264,5.0\n462,265,5.5\n462,266,6.0\n462,267,6.5\n462,268,7.0\n462,269,7.5\n462,270,8.0\n462,271,8.5\n462,272,9.0\n462,273,9.5\n462,274,10.0\n462,275,9.5\n462,276,9.0\n462,277,8.5\n462,278,8.0\n462,279,7.5\n462,280,7.0\n462,281,6.5\n462,282,6.0\n462,283,5.5\n462,284,5.0\n462,285,4.5\n462,286,4.0\n462,287,3.5\n462,288,4.0\n462,289,4.5\n462,290,5.0\n462,291,5.5\n462,292,6.0\n462,293,6.5\n462,294,7.0\n462,295,7.5\n462,296,8.0\n462,297,8.5\n462,298,9.0\n462,299,9.5\n462,300,9.0\n462,301,8.5\n462,302,8.0\n462,303,7.5\n462,304,7.0\n462,305,6.5\n462,306,6.0\n462,307,5.5\n462,308,5.0\n462,309,4.5\n462,310,4.0\n462,311,3.5\n462,312,3.0\n462,313,3.5\n462,314,4.0\n462,315,4.5\n462,316,5.0\n462,317,5.5\n462,318,6.0\n462,319,6.5\n462,320,7.0\n462,321,7.5\n462,322,8.0\n462,323,8.5\n462,324,9.0\n462,325,8.5\n462,326,8.0\n462,327,7.5\n462,328,7.0\n462,329,6.5\n462,330,6.0\n462,331,5.5\n462,332,5.0\n462,333,4.5\n462,334,4.0\n462,335,3.5\n462,336,3.0\n462,337,2.5\n462,338,3.0\n462,339,3.5\n462,340,4.0\n462,341,4.5\n462,342,5.0\n462,343,5.5\n462,344,6.0\n462,345,6.5\n462,346,7.0\n462,347,7.5\n462,348,8.0\n462,349,8.5\n462,350,8.0\n462,351,7.5\n462,352,7.0\n462,353,6.5\n462,354,6.0\n462,355,5.5\n462,356,5.0\n462,357,4.5\n462,358,4.0\n462,359,3.5\n462,360,3.0\n462,361,2.5\n462,362,2.0\n462,363,2.5\n462,364,3.0\n462,365,3.5\n462,366,4.0\n462,367,4.5\n462,368,5.0\n462,369,5.5\n462,370,6.0\n462,371,6.5\n462,372,7.0\n462,373,7.5\n462,374,8.0\n462,375,7.5\n462,376,7.0\n462,377,6.5\n462,378,6.0\n462,379,5.5\n462,380,5.0\n462,381,4.5\n462,382,4.0\n462,383,3.5\n462,384,3.0\n462,385,2.5\n462,386,2.0\n462,387,1.5\n462,388,2.0\n462,389,2.5\n462,390,3.0\n462,391,3.5\n462,392,4.0\n462,393,4.5\n462,394,5.0\n462,395,5.5\n462,396,6.0\n462,397,6.5\n462,398,7.0\n462,399,7.5\n462,400,7.0\n462,401,6.5\n462,402,6.0\n462,403,5.5\n462,404,5.0\n462,405,4.5\n462,406,4.0\n462,407,3.5\n462,408,3.0\n462,409,2.5\n462,410,2.0\n462,411,1.5\n462,412,1.0\n462,413,1.5\n462,414,2.0\n462,415,2.5\n462,416,3.0\n462,417,3.5\n462,418,4.0\n462,419,4.5\n462,420,5.0\n462,421,5.5\n462,422,6.0\n462,423,6.5\n462,424,7.0\n462,425,6.5\n462,426,6.0\n462,427,5.5\n462,428,5.0\n462,429,4.5\n462,430,4.0\n462,431,3.5\n462,432,3.0\n462,433,2.5\n462,434,2.0\n462,435,1.5\n462,436,1.0\n462,437,0.5\n462,438,1.0\n462,439,1.5\n462,440,2.0\n462,441,2.5\n462,442,3.0\n462,443,3.5\n462,444,4.0\n462,445,4.5\n462,446,5.0\n462,447,5.5\n462,448,6.0\n462,449,6.5\n462,450,6.0\n462,451,5.5\n462,452,5.0\n462,453,4.5\n462,454,4.0\n462,455,3.5\n462,456,3.0\n462,457,2.5\n462,458,2.0\n462,459,1.5\n462,460,1.0\n462,461,0.5\n462,462,0\n462,463,0.5\n462,464,1.0\n462,465,1.5\n462,466,2.0\n462,467,2.5\n462,468,3.0\n462,469,3.5\n462,470,4.0\n462,471,4.5\n462,472,5.0\n462,473,5.5\n462,474,6.0\n462,475,6.5\n462,476,6.0\n462,477,5.5\n462,478,5.0\n462,479,4.5\n462,480,4.0\n462,481,3.5\n462,482,3.0\n462,483,2.5\n462,484,2.0\n462,485,1.5\n462,486,1.0\n462,487,0.5\n462,488,1.0\n462,489,1.5\n462,490,2.0\n462,491,2.5\n462,492,3.0\n462,493,3.5\n462,494,4.0\n462,495,4.5\n462,496,5.0\n462,497,5.5\n462,498,6.0\n462,499,6.5\n462,500,7.0\n462,501,6.5\n462,502,6.0\n462,503,5.5\n462,504,5.0\n462,505,4.5\n462,506,4.0\n462,507,3.5\n462,508,3.0\n462,509,2.5\n462,510,2.0\n462,511,1.5\n462,512,1.0\n462,513,1.5\n462,514,2.0\n462,515,2.5\n462,516,3.0\n462,517,3.5\n462,518,4.0\n462,519,4.5\n462,520,5.0\n462,521,5.5\n462,522,6.0\n462,523,6.5\n462,524,7.0\n462,525,7.5\n462,526,7.0\n462,527,6.5\n462,528,6.0\n462,529,5.5\n462,530,5.0\n462,531,4.5\n462,532,4.0\n462,533,3.5\n462,534,3.0\n462,535,2.5\n462,536,2.0\n462,537,1.5\n462,538,2.0\n462,539,2.5\n462,540,3.0\n462,541,3.5\n462,542,4.0\n462,543,4.5\n462,544,5.0\n462,545,5.5\n462,546,6.0\n462,547,6.5\n462,548,7.0\n462,549,7.5\n462,550,8.0\n462,551,7.5\n462,552,7.0\n462,553,6.5\n462,554,6.0\n462,555,5.5\n462,556,5.0\n462,557,4.5\n462,558,4.0\n462,559,3.5\n462,560,3.0\n462,561,2.5\n462,562,2.0\n462,563,2.5\n462,564,3.0\n462,565,3.5\n462,566,4.0\n462,567,4.5\n462,568,5.0\n462,569,5.5\n462,570,6.0\n462,571,6.5\n462,572,7.0\n462,573,7.5\n462,574,8.0\n462,575,8.5\n462,576,8.0\n462,577,7.5\n462,578,7.0\n462,579,6.5\n462,580,6.0\n462,581,5.5\n462,582,5.0\n462,583,4.5\n462,584,4.0\n462,585,3.5\n462,586,3.0\n462,587,2.5\n462,588,3.0\n462,589,3.5\n462,590,4.0\n462,591,4.5\n462,592,5.0\n462,593,5.5\n462,594,6.0\n462,595,6.5\n462,596,7.0\n462,597,7.5\n462,598,8.0\n462,599,8.5\n462,600,9.0\n462,601,8.5\n462,602,8.0\n462,603,7.5\n462,604,7.0\n462,605,6.5\n462,606,6.0\n462,607,5.5\n462,608,5.0\n462,609,4.5\n462,610,4.0\n462,611,3.5\n462,612,3.0\n462,613,3.5\n462,614,4.0\n462,615,4.5\n462,616,5.0\n462,617,5.5\n462,618,6.0\n462,619,6.5\n462,620,7.0\n462,621,7.5\n462,622,8.0\n462,623,8.5\n462,624,9.0\n463,0,15.5\n463,1,15.0\n463,2,14.5\n463,3,14.0\n463,4,13.5\n463,5,13.0\n463,6,12.5\n463,7,12.0\n463,8,11.5\n463,9,11.0\n463,10,10.5\n463,11,10.0\n463,12,9.5\n463,13,9.0\n463,14,9.5\n463,15,10.0\n463,16,10.5\n463,17,11.0\n463,18,11.5\n463,19,12.0\n463,20,12.5\n463,21,13.0\n463,22,13.5\n463,23,14.0\n463,24,14.5\n463,25,15.0\n463,26,14.5\n463,27,14.0\n463,28,13.5\n463,29,13.0\n463,30,12.5\n463,31,12.0\n463,32,11.5\n463,33,11.0\n463,34,10.5\n463,35,10.0\n463,36,9.5\n463,37,9.0\n463,38,8.5\n463,39,9.0\n463,40,9.5\n463,41,10.0\n463,42,10.5\n463,43,11.0\n463,44,11.5\n463,45,12.0\n463,46,12.5\n463,47,13.0\n463,48,13.5\n463,49,14.0\n463,50,14.5\n463,51,14.0\n463,52,13.5\n463,53,13.0\n463,54,12.5\n463,55,12.0\n463,56,11.5\n463,57,11.0\n463,58,10.5\n463,59,10.0\n463,60,9.5\n463,61,9.0\n463,62,8.5\n463,63,8.0\n463,64,8.5\n463,65,9.0\n463,66,9.5\n463,67,10.0\n463,68,10.5\n463,69,11.0\n463,70,11.5\n463,71,12.0\n463,72,12.5\n463,73,13.0\n463,74,13.5\n463,75,14.0\n463,76,13.5\n463,77,13.0\n463,78,12.5\n463,79,12.0\n463,80,11.5\n463,81,11.0\n463,82,10.5\n463,83,10.0\n463,84,9.5\n463,85,9.0\n463,86,8.5\n463,87,8.0\n463,88,7.5\n463,89,8.0\n463,90,8.5\n463,91,9.0\n463,92,9.5\n463,93,10.0\n463,94,10.5\n463,95,11.0\n463,96,11.5\n463,97,12.0\n463,98,12.5\n463,99,13.0\n463,100,13.5\n463,101,13.0\n463,102,12.5\n463,103,12.0\n463,104,11.5\n463,105,11.0\n463,106,10.5\n463,107,10.0\n463,108,9.5\n463,109,9.0\n463,110,8.5\n463,111,8.0\n463,112,7.5\n463,113,7.0\n463,114,7.5\n463,115,8.0\n463,116,8.5\n463,117,9.0\n463,118,9.5\n463,119,10.0\n463,120,10.5\n463,121,11.0\n463,122,11.5\n463,123,12.0\n463,124,12.5\n463,125,13.0\n463,126,12.5\n463,127,12.0\n463,128,11.5\n463,129,11.0\n463,130,10.5\n463,131,10.0\n463,132,9.5\n463,133,9.0\n463,134,8.5\n463,135,8.0\n463,136,7.5\n463,137,7.0\n463,138,6.5\n463,139,7.0\n463,140,7.5\n463,141,8.0\n463,142,8.5\n463,143,9.0\n463,144,9.5\n463,145,10.0\n463,146,10.5\n463,147,11.0\n463,148,11.5\n463,149,12.0\n463,150,12.5\n463,151,12.0\n463,152,11.5\n463,153,11.0\n463,154,10.5\n463,155,10.0\n463,156,9.5\n463,157,9.0\n463,158,8.5\n463,159,8.0\n463,160,7.5\n463,161,7.0\n463,162,6.5\n463,163,6.0\n463,164,6.5\n463,165,7.0\n463,166,7.5\n463,167,8.0\n463,168,8.5\n463,169,9.0\n463,170,9.5\n463,171,10.0\n463,172,10.5\n463,173,11.0\n463,174,11.5\n463,175,12.0\n463,176,11.5\n463,177,11.0\n463,178,10.5\n463,179,10.0\n463,180,9.5\n463,181,9.0\n463,182,8.5\n463,183,8.0\n463,184,7.5\n463,185,7.0\n463,186,6.5\n463,187,6.0\n463,188,5.5\n463,189,6.0\n463,190,6.5\n463,191,7.0\n463,192,7.5\n463,193,8.0\n463,194,8.5\n463,195,9.0\n463,196,9.5\n463,197,10.0\n463,198,10.5\n463,199,11.0\n463,200,11.5\n463,201,11.0\n463,202,10.5\n463,203,10.0\n463,204,9.5\n463,205,9.0\n463,206,8.5\n463,207,8.0\n463,208,7.5\n463,209,7.0\n463,210,6.5\n463,211,6.0\n463,212,5.5\n463,213,5.0\n463,214,5.5\n463,215,6.0\n463,216,6.5\n463,217,7.0\n463,218,7.5\n463,219,8.0\n463,220,8.5\n463,221,9.0\n463,222,9.5\n463,223,10.0\n463,224,10.5\n463,225,11.0\n463,226,10.5\n463,227,10.0\n463,228,9.5\n463,229,9.0\n463,230,8.5\n463,231,8.0\n463,232,7.5\n463,233,7.0\n463,234,6.5\n463,235,6.0\n463,236,5.5\n463,237,5.0\n463,238,4.5\n463,239,5.0\n463,240,5.5\n463,241,6.0\n463,242,6.5\n463,243,7.0\n463,244,7.5\n463,245,8.0\n463,246,8.5\n463,247,9.0\n463,248,9.5\n463,249,10.0\n463,250,10.5\n463,251,10.0\n463,252,9.5\n463,253,9.0\n463,254,8.5\n463,255,8.0\n463,256,7.5\n463,257,7.0\n463,258,6.5\n463,259,6.0\n463,260,5.5\n463,261,5.0\n463,262,4.5\n463,263,4.0\n463,264,4.5\n463,265,5.0\n463,266,5.5\n463,267,6.0\n463,268,6.5\n463,269,7.0\n463,270,7.5\n463,271,8.0\n463,272,8.5\n463,273,9.0\n463,274,9.5\n463,275,10.0\n463,276,9.5\n463,277,9.0\n463,278,8.5\n463,279,8.0\n463,280,7.5\n463,281,7.0\n463,282,6.5\n463,283,6.0\n463,284,5.5\n463,285,5.0\n463,286,4.5\n463,287,4.0\n463,288,3.5\n463,289,4.0\n463,290,4.5\n463,291,5.0\n463,292,5.5\n463,293,6.0\n463,294,6.5\n463,295,7.0\n463,296,7.5\n463,297,8.0\n463,298,8.5\n463,299,9.0\n463,300,9.5\n463,301,9.0\n463,302,8.5\n463,303,8.0\n463,304,7.5\n463,305,7.0\n463,306,6.5\n463,307,6.0\n463,308,5.5\n463,309,5.0\n463,310,4.5\n463,311,4.0\n463,312,3.5\n463,313,3.0\n463,314,3.5\n463,315,4.0\n463,316,4.5\n463,317,5.0\n463,318,5.5\n463,319,6.0\n463,320,6.5\n463,321,7.0\n463,322,7.5\n463,323,8.0\n463,324,8.5\n463,325,9.0\n463,326,8.5\n463,327,8.0\n463,328,7.5\n463,329,7.0\n463,330,6.5\n463,331,6.0\n463,332,5.5\n463,333,5.0\n463,334,4.5\n463,335,4.0\n463,336,3.5\n463,337,3.0\n463,338,2.5\n463,339,3.0\n463,340,3.5\n463,341,4.0\n463,342,4.5\n463,343,5.0\n463,344,5.5\n463,345,6.0\n463,346,6.5\n463,347,7.0\n463,348,7.5\n463,349,8.0\n463,350,8.5\n463,351,8.0\n463,352,7.5\n463,353,7.0\n463,354,6.5\n463,355,6.0\n463,356,5.5\n463,357,5.0\n463,358,4.5\n463,359,4.0\n463,360,3.5\n463,361,3.0\n463,362,2.5\n463,363,2.0\n463,364,2.5\n463,365,3.0\n463,366,3.5\n463,367,4.0\n463,368,4.5\n463,369,5.0\n463,370,5.5\n463,371,6.0\n463,372,6.5\n463,373,7.0\n463,374,7.5\n463,375,8.0\n463,376,7.5\n463,377,7.0\n463,378,6.5\n463,379,6.0\n463,380,5.5\n463,381,5.0\n463,382,4.5\n463,383,4.0\n463,384,3.5\n463,385,3.0\n463,386,2.5\n463,387,2.0\n463,388,1.5\n463,389,2.0\n463,390,2.5\n463,391,3.0\n463,392,3.5\n463,393,4.0\n463,394,4.5\n463,395,5.0\n463,396,5.5\n463,397,6.0\n463,398,6.5\n463,399,7.0\n463,400,7.5\n463,401,7.0\n463,402,6.5\n463,403,6.0\n463,404,5.5\n463,405,5.0\n463,406,4.5\n463,407,4.0\n463,408,3.5\n463,409,3.0\n463,410,2.5\n463,411,2.0\n463,412,1.5\n463,413,1.0\n463,414,1.5\n463,415,2.0\n463,416,2.5\n463,417,3.0\n463,418,3.5\n463,419,4.0\n463,420,4.5\n463,421,5.0\n463,422,5.5\n463,423,6.0\n463,424,6.5\n463,425,7.0\n463,426,6.5\n463,427,6.0\n463,428,5.5\n463,429,5.0\n463,430,4.5\n463,431,4.0\n463,432,3.5\n463,433,3.0\n463,434,2.5\n463,435,2.0\n463,436,1.5\n463,437,1.0\n463,438,0.5\n463,439,1.0\n463,440,1.5\n463,441,2.0\n463,442,2.5\n463,443,3.0\n463,444,3.5\n463,445,4.0\n463,446,4.5\n463,447,5.0\n463,448,5.5\n463,449,6.0\n463,450,6.5\n463,451,6.0\n463,452,5.5\n463,453,5.0\n463,454,4.5\n463,455,4.0\n463,456,3.5\n463,457,3.0\n463,458,2.5\n463,459,2.0\n463,460,1.5\n463,461,1.0\n463,462,0.5\n463,463,0\n463,464,0.5\n463,465,1.0\n463,466,1.5\n463,467,2.0\n463,468,2.5\n463,469,3.0\n463,470,3.5\n463,471,4.0\n463,472,4.5\n463,473,5.0\n463,474,5.5\n463,475,7.0\n463,476,6.5\n463,477,6.0\n463,478,5.5\n463,479,5.0\n463,480,4.5\n463,481,4.0\n463,482,3.5\n463,483,3.0\n463,484,2.5\n463,485,2.0\n463,486,1.5\n463,487,1.0\n463,488,0.5\n463,489,1.0\n463,490,1.5\n463,491,2.0\n463,492,2.5\n463,493,3.0\n463,494,3.5\n463,495,4.0\n463,496,4.5\n463,497,5.0\n463,498,5.5\n463,499,6.0\n463,500,7.5\n463,501,7.0\n463,502,6.5\n463,503,6.0\n463,504,5.5\n463,505,5.0\n463,506,4.5\n463,507,4.0\n463,508,3.5\n463,509,3.0\n463,510,2.5\n463,511,2.0\n463,512,1.5\n463,513,1.0\n463,514,1.5\n463,515,2.0\n463,516,2.5\n463,517,3.0\n463,518,3.5\n463,519,4.0\n463,520,4.5\n463,521,5.0\n463,522,5.5\n463,523,6.0\n463,524,6.5\n463,525,8.0\n463,526,7.5\n463,527,7.0\n463,528,6.5\n463,529,6.0\n463,530,5.5\n463,531,5.0\n463,532,4.5\n463,533,4.0\n463,534,3.5\n463,535,3.0\n463,536,2.5\n463,537,2.0\n463,538,1.5\n463,539,2.0\n463,540,2.5\n463,541,3.0\n463,542,3.5\n463,543,4.0\n463,544,4.5\n463,545,5.0\n463,546,5.5\n463,547,6.0\n463,548,6.5\n463,549,7.0\n463,550,8.5\n463,551,8.0\n463,552,7.5\n463,553,7.0\n463,554,6.5\n463,555,6.0\n463,556,5.5\n463,557,5.0\n463,558,4.5\n463,559,4.0\n463,560,3.5\n463,561,3.0\n463,562,2.5\n463,563,2.0\n463,564,2.5\n463,565,3.0\n463,566,3.5\n463,567,4.0\n463,568,4.5\n463,569,5.0\n463,570,5.5\n463,571,6.0\n463,572,6.5\n463,573,7.0\n463,574,7.5\n463,575,9.0\n463,576,8.5\n463,577,8.0\n463,578,7.5\n463,579,7.0\n463,580,6.5\n463,581,6.0\n463,582,5.5\n463,583,5.0\n463,584,4.5\n463,585,4.0\n463,586,3.5\n463,587,3.0\n463,588,2.5\n463,589,3.0\n463,590,3.5\n463,591,4.0\n463,592,4.5\n463,593,5.0\n463,594,5.5\n463,595,6.0\n463,596,6.5\n463,597,7.0\n463,598,7.5\n463,599,8.0\n463,600,9.5\n463,601,9.0\n463,602,8.5\n463,603,8.0\n463,604,7.5\n463,605,7.0\n463,606,6.5\n463,607,6.0\n463,608,5.5\n463,609,5.0\n463,610,4.5\n463,611,4.0\n463,612,3.5\n463,613,3.0\n463,614,3.5\n463,615,4.0\n463,616,4.5\n463,617,5.0\n463,618,5.5\n463,619,6.0\n463,620,6.5\n463,621,7.0\n463,622,7.5\n463,623,8.0\n463,624,8.5\n464,0,16.0\n464,1,15.5\n464,2,15.0\n464,3,14.5\n464,4,14.0\n464,5,13.5\n464,6,13.0\n464,7,12.5\n464,8,12.0\n464,9,11.5\n464,10,11.0\n464,11,10.5\n464,12,10.0\n464,13,9.5\n464,14,9.0\n464,15,9.5\n464,16,10.0\n464,17,10.5\n464,18,11.0\n464,19,11.5\n464,20,12.0\n464,21,12.5\n464,22,13.0\n464,23,13.5\n464,24,14.0\n464,25,15.5\n464,26,15.0\n464,27,14.5\n464,28,14.0\n464,29,13.5\n464,30,13.0\n464,31,12.5\n464,32,12.0\n464,33,11.5\n464,34,11.0\n464,35,10.5\n464,36,10.0\n464,37,9.5\n464,38,9.0\n464,39,8.5\n464,40,9.0\n464,41,9.5\n464,42,10.0\n464,43,10.5\n464,44,11.0\n464,45,11.5\n464,46,12.0\n464,47,12.5\n464,48,13.0\n464,49,13.5\n464,50,15.0\n464,51,14.5\n464,52,14.0\n464,53,13.5\n464,54,13.0\n464,55,12.5\n464,56,12.0\n464,57,11.5\n464,58,11.0\n464,59,10.5\n464,60,10.0\n464,61,9.5\n464,62,9.0\n464,63,8.5\n464,64,8.0\n464,65,8.5\n464,66,9.0\n464,67,9.5\n464,68,10.0\n464,69,10.5\n464,70,11.0\n464,71,11.5\n464,72,12.0\n464,73,12.5\n464,74,13.0\n464,75,14.5\n464,76,14.0\n464,77,13.5\n464,78,13.0\n464,79,12.5\n464,80,12.0\n464,81,11.5\n464,82,11.0\n464,83,10.5\n464,84,10.0\n464,85,9.5\n464,86,9.0\n464,87,8.5\n464,88,8.0\n464,89,7.5\n464,90,8.0\n464,91,8.5\n464,92,9.0\n464,93,9.5\n464,94,10.0\n464,95,10.5\n464,96,11.0\n464,97,11.5\n464,98,12.0\n464,99,12.5\n464,100,14.0\n464,101,13.5\n464,102,13.0\n464,103,12.5\n464,104,12.0\n464,105,11.5\n464,106,11.0\n464,107,10.5\n464,108,10.0\n464,109,9.5\n464,110,9.0\n464,111,8.5\n464,112,8.0\n464,113,7.5\n464,114,7.0\n464,115,7.5\n464,116,8.0\n464,117,8.5\n464,118,9.0\n464,119,9.5\n464,120,10.0\n464,121,10.5\n464,122,11.0\n464,123,11.5\n464,124,12.0\n464,125,13.5\n464,126,13.0\n464,127,12.5\n464,128,12.0\n464,129,11.5\n464,130,11.0\n464,131,10.5\n464,132,10.0\n464,133,9.5\n464,134,9.0\n464,135,8.5\n464,136,8.0\n464,137,7.5\n464,138,7.0\n464,139,6.5\n464,140,7.0\n464,141,7.5\n464,142,8.0\n464,143,8.5\n464,144,9.0\n464,145,9.5\n464,146,10.0\n464,147,10.5\n464,148,11.0\n464,149,11.5\n464,150,13.0\n464,151,12.5\n464,152,12.0\n464,153,11.5\n464,154,11.0\n464,155,10.5\n464,156,10.0\n464,157,9.5\n464,158,9.0\n464,159,8.5\n464,160,8.0\n464,161,7.5\n464,162,7.0\n464,163,6.5\n464,164,6.0\n464,165,6.5\n464,166,7.0\n464,167,7.5\n464,168,8.0\n464,169,8.5\n464,170,9.0\n464,171,9.5\n464,172,10.0\n464,173,10.5\n464,174,11.0\n464,175,12.5\n464,176,12.0\n464,177,11.5\n464,178,11.0\n464,179,10.5\n464,180,10.0\n464,181,9.5\n464,182,9.0\n464,183,8.5\n464,184,8.0\n464,185,7.5\n464,186,7.0\n464,187,6.5\n464,188,6.0\n464,189,5.5\n464,190,6.0\n464,191,6.5\n464,192,7.0\n464,193,7.5\n464,194,8.0\n464,195,8.5\n464,196,9.0\n464,197,9.5\n464,198,10.0\n464,199,10.5\n464,200,12.0\n464,201,11.5\n464,202,11.0\n464,203,10.5\n464,204,10.0\n464,205,9.5\n464,206,9.0\n464,207,8.5\n464,208,8.0\n464,209,7.5\n464,210,7.0\n464,211,6.5\n464,212,6.0\n464,213,5.5\n464,214,5.0\n464,215,5.5\n464,216,6.0\n464,217,6.5\n464,218,7.0\n464,219,7.5\n464,220,8.0\n464,221,8.5\n464,222,9.0\n464,223,9.5\n464,224,10.0\n464,225,11.5\n464,226,11.0\n464,227,10.5\n464,228,10.0\n464,229,9.5\n464,230,9.0\n464,231,8.5\n464,232,8.0\n464,233,7.5\n464,234,7.0\n464,235,6.5\n464,236,6.0\n464,237,5.5\n464,238,5.0\n464,239,4.5\n464,240,5.0\n464,241,5.5\n464,242,6.0\n464,243,6.5\n464,244,7.0\n464,245,7.5\n464,246,8.0\n464,247,8.5\n464,248,9.0\n464,249,9.5\n464,250,11.0\n464,251,10.5\n464,252,10.0\n464,253,9.5\n464,254,9.0\n464,255,8.5\n464,256,8.0\n464,257,7.5\n464,258,7.0\n464,259,6.5\n464,260,6.0\n464,261,5.5\n464,262,5.0\n464,263,4.5\n464,264,4.0\n464,265,4.5\n464,266,5.0\n464,267,5.5\n464,268,6.0\n464,269,6.5\n464,270,7.0\n464,271,7.5\n464,272,8.0\n464,273,8.5\n464,274,9.0\n464,275,10.5\n464,276,10.0\n464,277,9.5\n464,278,9.0\n464,279,8.5\n464,280,8.0\n464,281,7.5\n464,282,7.0\n464,283,6.5\n464,284,6.0\n464,285,5.5\n464,286,5.0\n464,287,4.5\n464,288,4.0\n464,289,3.5\n464,290,4.0\n464,291,4.5\n464,292,5.0\n464,293,5.5\n464,294,6.0\n464,295,6.5\n464,296,7.0\n464,297,7.5\n464,298,8.0\n464,299,8.5\n464,300,10.0\n464,301,9.5\n464,302,9.0\n464,303,8.5\n464,304,8.0\n464,305,7.5\n464,306,7.0\n464,307,6.5\n464,308,6.0\n464,309,5.5\n464,310,5.0\n464,311,4.5\n464,312,4.0\n464,313,3.5\n464,314,3.0\n464,315,3.5\n464,316,4.0\n464,317,4.5\n464,318,5.0\n464,319,5.5\n464,320,6.0\n464,321,6.5\n464,322,7.0\n464,323,7.5\n464,324,8.0\n464,325,9.5\n464,326,9.0\n464,327,8.5\n464,328,8.0\n464,329,7.5\n464,330,7.0\n464,331,6.5\n464,332,6.0\n464,333,5.5\n464,334,5.0\n464,335,4.5\n464,336,4.0\n464,337,3.5\n464,338,3.0\n464,339,2.5\n464,340,3.0\n464,341,3.5\n464,342,4.0\n464,343,4.5\n464,344,5.0\n464,345,5.5\n464,346,6.0\n464,347,6.5\n464,348,7.0\n464,349,7.5\n464,350,9.0\n464,351,8.5\n464,352,8.0\n464,353,7.5\n464,354,7.0\n464,355,6.5\n464,356,6.0\n464,357,5.5\n464,358,5.0\n464,359,4.5\n464,360,4.0\n464,361,3.5\n464,362,3.0\n464,363,2.5\n464,364,2.0\n464,365,2.5\n464,366,3.0\n464,367,3.5\n464,368,4.0\n464,369,4.5\n464,370,5.0\n464,371,5.5\n464,372,6.0\n464,373,6.5\n464,374,7.0\n464,375,8.5\n464,376,8.0\n464,377,7.5\n464,378,7.0\n464,379,6.5\n464,380,6.0\n464,381,5.5\n464,382,5.0\n464,383,4.5\n464,384,4.0\n464,385,3.5\n464,386,3.0\n464,387,2.5\n464,388,2.0\n464,389,1.5\n464,390,2.0\n464,391,2.5\n464,392,3.0\n464,393,3.5\n464,394,4.0\n464,395,4.5\n464,396,5.0\n464,397,5.5\n464,398,6.0\n464,399,6.5\n464,400,8.0\n464,401,7.5\n464,402,7.0\n464,403,6.5\n464,404,6.0\n464,405,5.5\n464,406,5.0\n464,407,4.5\n464,408,4.0\n464,409,3.5\n464,410,3.0\n464,411,2.5\n464,412,2.0\n464,413,1.5\n464,414,1.0\n464,415,1.5\n464,416,2.0\n464,417,2.5\n464,418,3.0\n464,419,3.5\n464,420,4.0\n464,421,4.5\n464,422,5.0\n464,423,5.5\n464,424,6.0\n464,425,7.5\n464,426,7.0\n464,427,6.5\n464,428,6.0\n464,429,5.5\n464,430,5.0\n464,431,4.5\n464,432,4.0\n464,433,3.5\n464,434,3.0\n464,435,2.5\n464,436,2.0\n464,437,1.5\n464,438,1.0\n464,439,0.5\n464,440,1.0\n464,441,1.5\n464,442,2.0\n464,443,2.5\n464,444,3.0\n464,445,3.5\n464,446,4.0\n464,447,4.5\n464,448,5.0\n464,449,5.5\n464,450,7.0\n464,451,6.5\n464,452,6.0\n464,453,5.5\n464,454,5.0\n464,455,4.5\n464,456,4.0\n464,457,3.5\n464,458,3.0\n464,459,2.5\n464,460,2.0\n464,461,1.5\n464,462,1.0\n464,463,0.5\n464,464,0\n464,465,0.5\n464,466,1.0\n464,467,1.5\n464,468,2.0\n464,469,2.5\n464,470,3.0\n464,471,3.5\n464,472,4.0\n464,473,4.5\n464,474,5.0\n464,475,7.5\n464,476,7.0\n464,477,6.5\n464,478,6.0\n464,479,5.5\n464,480,5.0\n464,481,4.5\n464,482,4.0\n464,483,3.5\n464,484,3.0\n464,485,2.5\n464,486,2.0\n464,487,1.5\n464,488,1.0\n464,489,0.5\n464,490,1.0\n464,491,1.5\n464,492,2.0\n464,493,2.5\n464,494,3.0\n464,495,3.5\n464,496,4.0\n464,497,4.5\n464,498,5.0\n464,499,5.5\n464,500,8.0\n464,501,7.5\n464,502,7.0\n464,503,6.5\n464,504,6.0\n464,505,5.5\n464,506,5.0\n464,507,4.5\n464,508,4.0\n464,509,3.5\n464,510,3.0\n464,511,2.5\n464,512,2.0\n464,513,1.5\n464,514,1.0\n464,515,1.5\n464,516,2.0\n464,517,2.5\n464,518,3.0\n464,519,3.5\n464,520,4.0\n464,521,4.5\n464,522,5.0\n464,523,5.5\n464,524,6.0\n464,525,8.5\n464,526,8.0\n464,527,7.5\n464,528,7.0\n464,529,6.5\n464,530,6.0\n464,531,5.5\n464,532,5.0\n464,533,4.5\n464,534,4.0\n464,535,3.5\n464,536,3.0\n464,537,2.5\n464,538,2.0\n464,539,1.5\n464,540,2.0\n464,541,2.5\n464,542,3.0\n464,543,3.5\n464,544,4.0\n464,545,4.5\n464,546,5.0\n464,547,5.5\n464,548,6.0\n464,549,6.5\n464,550,9.0\n464,551,8.5\n464,552,8.0\n464,553,7.5\n464,554,7.0\n464,555,6.5\n464,556,6.0\n464,557,5.5\n464,558,5.0\n464,559,4.5\n464,560,4.0\n464,561,3.5\n464,562,3.0\n464,563,2.5\n464,564,2.0\n464,565,2.5\n464,566,3.0\n464,567,3.5\n464,568,4.0\n464,569,4.5\n464,570,5.0\n464,571,5.5\n464,572,6.0\n464,573,6.5\n464,574,7.0\n464,575,9.5\n464,576,9.0\n464,577,8.5\n464,578,8.0\n464,579,7.5\n464,580,7.0\n464,581,6.5\n464,582,6.0\n464,583,5.5\n464,584,5.0\n464,585,4.5\n464,586,4.0\n464,587,3.5\n464,588,3.0\n464,589,2.5\n464,590,3.0\n464,591,3.5\n464,592,4.0\n464,593,4.5\n464,594,5.0\n464,595,5.5\n464,596,6.0\n464,597,6.5\n464,598,7.0\n464,599,7.5\n464,600,10.0\n464,601,9.5\n464,602,9.0\n464,603,8.5\n464,604,8.0\n464,605,7.5\n464,606,7.0\n464,607,6.5\n464,608,6.0\n464,609,5.5\n464,610,5.0\n464,611,4.5\n464,612,4.0\n464,613,3.5\n464,614,3.0\n464,615,3.5\n464,616,4.0\n464,617,4.5\n464,618,5.0\n464,619,5.5\n464,620,6.0\n464,621,6.5\n464,622,7.0\n464,623,7.5\n464,624,8.0\n465,0,16.5\n465,1,16.0\n465,2,15.5\n465,3,15.0\n465,4,14.5\n465,5,14.0\n465,6,13.5\n465,7,13.0\n465,8,12.5\n465,9,12.0\n465,10,11.5\n465,11,11.0\n465,12,10.5\n465,13,10.0\n465,14,9.5\n465,15,9.0\n465,16,9.5\n465,17,10.0\n465,18,10.5\n465,19,11.0\n465,20,11.5\n465,21,12.0\n465,22,12.5\n465,23,13.0\n465,24,13.5\n465,25,16.0\n465,26,15.5\n465,27,15.0\n465,28,14.5\n465,29,14.0\n465,30,13.5\n465,31,13.0\n465,32,12.5\n465,33,12.0\n465,34,11.5\n465,35,11.0\n465,36,10.5\n465,37,10.0\n465,38,9.5\n465,39,9.0\n465,40,8.5\n465,41,9.0\n465,42,9.5\n465,43,10.0\n465,44,10.5\n465,45,11.0\n465,46,11.5\n465,47,12.0\n465,48,12.5\n465,49,13.0\n465,50,15.5\n465,51,15.0\n465,52,14.5\n465,53,14.0\n465,54,13.5\n465,55,13.0\n465,56,12.5\n465,57,12.0\n465,58,11.5\n465,59,11.0\n465,60,10.5\n465,61,10.0\n465,62,9.5\n465,63,9.0\n465,64,8.5\n465,65,8.0\n465,66,8.5\n465,67,9.0\n465,68,9.5\n465,69,10.0\n465,70,10.5\n465,71,11.0\n465,72,11.5\n465,73,12.0\n465,74,12.5\n465,75,15.0\n465,76,14.5\n465,77,14.0\n465,78,13.5\n465,79,13.0\n465,80,12.5\n465,81,12.0\n465,82,11.5\n465,83,11.0\n465,84,10.5\n465,85,10.0\n465,86,9.5\n465,87,9.0\n465,88,8.5\n465,89,8.0\n465,90,7.5\n465,91,8.0\n465,92,8.5\n465,93,9.0\n465,94,9.5\n465,95,10.0\n465,96,10.5\n465,97,11.0\n465,98,11.5\n465,99,12.0\n465,100,14.5\n465,101,14.0\n465,102,13.5\n465,103,13.0\n465,104,12.5\n465,105,12.0\n465,106,11.5\n465,107,11.0\n465,108,10.5\n465,109,10.0\n465,110,9.5\n465,111,9.0\n465,112,8.5\n465,113,8.0\n465,114,7.5\n465,115,7.0\n465,116,7.5\n465,117,8.0\n465,118,8.5\n465,119,9.0\n465,120,9.5\n465,121,10.0\n465,122,10.5\n465,123,11.0\n465,124,11.5\n465,125,14.0\n465,126,13.5\n465,127,13.0\n465,128,12.5\n465,129,12.0\n465,130,11.5\n465,131,11.0\n465,132,10.5\n465,133,10.0\n465,134,9.5\n465,135,9.0\n465,136,8.5\n465,137,8.0\n465,138,7.5\n465,139,7.0\n465,140,6.5\n465,141,7.0\n465,142,7.5\n465,143,8.0\n465,144,8.5\n465,145,9.0\n465,146,9.5\n465,147,10.0\n465,148,10.5\n465,149,11.0\n465,150,13.5\n465,151,13.0\n465,152,12.5\n465,153,12.0\n465,154,11.5\n465,155,11.0\n465,156,10.5\n465,157,10.0\n465,158,9.5\n465,159,9.0\n465,160,8.5\n465,161,8.0\n465,162,7.5\n465,163,7.0\n465,164,6.5\n465,165,6.0\n465,166,6.5\n465,167,7.0\n465,168,7.5\n465,169,8.0\n465,170,8.5\n465,171,9.0\n465,172,9.5\n465,173,10.0\n465,174,10.5\n465,175,13.0\n465,176,12.5\n465,177,12.0\n465,178,11.5\n465,179,11.0\n465,180,10.5\n465,181,10.0\n465,182,9.5\n465,183,9.0\n465,184,8.5\n465,185,8.0\n465,186,7.5\n465,187,7.0\n465,188,6.5\n465,189,6.0\n465,190,5.5\n465,191,6.0\n465,192,6.5\n465,193,7.0\n465,194,7.5\n465,195,8.0\n465,196,8.5\n465,197,9.0\n465,198,9.5\n465,199,10.0\n465,200,12.5\n465,201,12.0\n465,202,11.5\n465,203,11.0\n465,204,10.5\n465,205,10.0\n465,206,9.5\n465,207,9.0\n465,208,8.5\n465,209,8.0\n465,210,7.5\n465,211,7.0\n465,212,6.5\n465,213,6.0\n465,214,5.5\n465,215,5.0\n465,216,5.5\n465,217,6.0\n465,218,6.5\n465,219,7.0\n465,220,7.5\n465,221,8.0\n465,222,8.5\n465,223,9.0\n465,224,9.5\n465,225,12.0\n465,226,11.5\n465,227,11.0\n465,228,10.5\n465,229,10.0\n465,230,9.5\n465,231,9.0\n465,232,8.5\n465,233,8.0\n465,234,7.5\n465,235,7.0\n465,236,6.5\n465,237,6.0\n465,238,5.5\n465,239,5.0\n465,240,4.5\n465,241,5.0\n465,242,5.5\n465,243,6.0\n465,244,6.5\n465,245,7.0\n465,246,7.5\n465,247,8.0\n465,248,8.5\n465,249,9.0\n465,250,11.5\n465,251,11.0\n465,252,10.5\n465,253,10.0\n465,254,9.5\n465,255,9.0\n465,256,8.5\n465,257,8.0\n465,258,7.5\n465,259,7.0\n465,260,6.5\n465,261,6.0\n465,262,5.5\n465,263,5.0\n465,264,4.5\n465,265,4.0\n465,266,4.5\n465,267,5.0\n465,268,5.5\n465,269,6.0\n465,270,6.5\n465,271,7.0\n465,272,7.5\n465,273,8.0\n465,274,8.5\n465,275,11.0\n465,276,10.5\n465,277,10.0\n465,278,9.5\n465,279,9.0\n465,280,8.5\n465,281,8.0\n465,282,7.5\n465,283,7.0\n465,284,6.5\n465,285,6.0\n465,286,5.5\n465,287,5.0\n465,288,4.5\n465,289,4.0\n465,290,3.5\n465,291,4.0\n465,292,4.5\n465,293,5.0\n465,294,5.5\n465,295,6.0\n465,296,6.5\n465,297,7.0\n465,298,7.5\n465,299,8.0\n465,300,10.5\n465,301,10.0\n465,302,9.5\n465,303,9.0\n465,304,8.5\n465,305,8.0\n465,306,7.5\n465,307,7.0\n465,308,6.5\n465,309,6.0\n465,310,5.5\n465,311,5.0\n465,312,4.5\n465,313,4.0\n465,314,3.5\n465,315,3.0\n465,316,3.5\n465,317,4.0\n465,318,4.5\n465,319,5.0\n465,320,5.5\n465,321,6.0\n465,322,6.5\n465,323,7.0\n465,324,7.5\n465,325,10.0\n465,326,9.5\n465,327,9.0\n465,328,8.5\n465,329,8.0\n465,330,7.5\n465,331,7.0\n465,332,6.5\n465,333,6.0\n465,334,5.5\n465,335,5.0\n465,336,4.5\n465,337,4.0\n465,338,3.5\n465,339,3.0\n465,340,2.5\n465,341,3.0\n465,342,3.5\n465,343,4.0\n465,344,4.5\n465,345,5.0\n465,346,5.5\n465,347,6.0\n465,348,6.5\n465,349,7.0\n465,350,9.5\n465,351,9.0\n465,352,8.5\n465,353,8.0\n465,354,7.5\n465,355,7.0\n465,356,6.5\n465,357,6.0\n465,358,5.5\n465,359,5.0\n465,360,4.5\n465,361,4.0\n465,362,3.5\n465,363,3.0\n465,364,2.5\n465,365,2.0\n465,366,2.5\n465,367,3.0\n465,368,3.5\n465,369,4.0\n465,370,4.5\n465,371,5.0\n465,372,5.5\n465,373,6.0\n465,374,6.5\n465,375,9.0\n465,376,8.5\n465,377,8.0\n465,378,7.5\n465,379,7.0\n465,380,6.5\n465,381,6.0\n465,382,5.5\n465,383,5.0\n465,384,4.5\n465,385,4.0\n465,386,3.5\n465,387,3.0\n465,388,2.5\n465,389,2.0\n465,390,1.5\n465,391,2.0\n465,392,2.5\n465,393,3.0\n465,394,3.5\n465,395,4.0\n465,396,4.5\n465,397,5.0\n465,398,5.5\n465,399,6.0\n465,400,8.5\n465,401,8.0\n465,402,7.5\n465,403,7.0\n465,404,6.5\n465,405,6.0\n465,406,5.5\n465,407,5.0\n465,408,4.5\n465,409,4.0\n465,410,3.5\n465,411,3.0\n465,412,2.5\n465,413,2.0\n465,414,1.5\n465,415,1.0\n465,416,1.5\n465,417,2.0\n465,418,2.5\n465,419,3.0\n465,420,3.5\n465,421,4.0\n465,422,4.5\n465,423,5.0\n465,424,5.5\n465,425,8.0\n465,426,7.5\n465,427,7.0\n465,428,6.5\n465,429,6.0\n465,430,5.5\n465,431,5.0\n465,432,4.5\n465,433,4.0\n465,434,3.5\n465,435,3.0\n465,436,2.5\n465,437,2.0\n465,438,1.5\n465,439,1.0\n465,440,0.5\n465,441,1.0\n465,442,1.5\n465,443,2.0\n465,444,2.5\n465,445,3.0\n465,446,3.5\n465,447,4.0\n465,448,4.5\n465,449,5.0\n465,450,7.5\n465,451,7.0\n465,452,6.5\n465,453,6.0\n465,454,5.5\n465,455,5.0\n465,456,4.5\n465,457,4.0\n465,458,3.5\n465,459,3.0\n465,460,2.5\n465,461,2.0\n465,462,1.5\n465,463,1.0\n465,464,0.5\n465,465,0\n465,466,0.5\n465,467,1.0\n465,468,1.5\n465,469,2.0\n465,470,2.5\n465,471,3.0\n465,472,3.5\n465,473,4.0\n465,474,4.5\n465,475,8.0\n465,476,7.5\n465,477,7.0\n465,478,6.5\n465,479,6.0\n465,480,5.5\n465,481,5.0\n465,482,4.5\n465,483,4.0\n465,484,3.5\n465,485,3.0\n465,486,2.5\n465,487,2.0\n465,488,1.5\n465,489,1.0\n465,490,0.5\n465,491,1.0\n465,492,1.5\n465,493,2.0\n465,494,2.5\n465,495,3.0\n465,496,3.5\n465,497,4.0\n465,498,4.5\n465,499,5.0\n465,500,8.5\n465,501,8.0\n465,502,7.5\n465,503,7.0\n465,504,6.5\n465,505,6.0\n465,506,5.5\n465,507,5.0\n465,508,4.5\n465,509,4.0\n465,510,3.5\n465,511,3.0\n465,512,2.5\n465,513,2.0\n465,514,1.5\n465,515,1.0\n465,516,1.5\n465,517,2.0\n465,518,2.5\n465,519,3.0\n465,520,3.5\n465,521,4.0\n465,522,4.5\n465,523,5.0\n465,524,5.5\n465,525,9.0\n465,526,8.5\n465,527,8.0\n465,528,7.5\n465,529,7.0\n465,530,6.5\n465,531,6.0\n465,532,5.5\n465,533,5.0\n465,534,4.5\n465,535,4.0\n465,536,3.5\n465,537,3.0\n465,538,2.5\n465,539,2.0\n465,540,1.5\n465,541,2.0\n465,542,2.5\n465,543,3.0\n465,544,3.5\n465,545,4.0\n465,546,4.5\n465,547,5.0\n465,548,5.5\n465,549,6.0\n465,550,9.5\n465,551,9.0\n465,552,8.5\n465,553,8.0\n465,554,7.5\n465,555,7.0\n465,556,6.5\n465,557,6.0\n465,558,5.5\n465,559,5.0\n465,560,4.5\n465,561,4.0\n465,562,3.5\n465,563,3.0\n465,564,2.5\n465,565,2.0\n465,566,2.5\n465,567,3.0\n465,568,3.5\n465,569,4.0\n465,570,4.5\n465,571,5.0\n465,572,5.5\n465,573,6.0\n465,574,6.5\n465,575,10.0\n465,576,9.5\n465,577,9.0\n465,578,8.5\n465,579,8.0\n465,580,7.5\n465,581,7.0\n465,582,6.5\n465,583,6.0\n465,584,5.5\n465,585,5.0\n465,586,4.5\n465,587,4.0\n465,588,3.5\n465,589,3.0\n465,590,2.5\n465,591,3.0\n465,592,3.5\n465,593,4.0\n465,594,4.5\n465,595,5.0\n465,596,5.5\n465,597,6.0\n465,598,6.5\n465,599,7.0\n465,600,10.5\n465,601,10.0\n465,602,9.5\n465,603,9.0\n465,604,8.5\n465,605,8.0\n465,606,7.5\n465,607,7.0\n465,608,6.5\n465,609,6.0\n465,610,5.5\n465,611,5.0\n465,612,4.5\n465,613,4.0\n465,614,3.5\n465,615,3.0\n465,616,3.5\n465,617,4.0\n465,618,4.5\n465,619,5.0\n465,620,5.5\n465,621,6.0\n465,622,6.5\n465,623,7.0\n465,624,7.5\n466,0,17.0\n466,1,16.5\n466,2,16.0\n466,3,15.5\n466,4,15.0\n466,5,14.5\n466,6,14.0\n466,7,13.5\n466,8,13.0\n466,9,12.5\n466,10,12.0\n466,11,11.5\n466,12,11.0\n466,13,10.5\n466,14,10.0\n466,15,9.5\n466,16,9.0\n466,17,9.5\n466,18,10.0\n466,19,10.5\n466,20,11.0\n466,21,11.5\n466,22,12.0\n466,23,12.5\n466,24,13.0\n466,25,16.5\n466,26,16.0\n466,27,15.5\n466,28,15.0\n466,29,14.5\n466,30,14.0\n466,31,13.5\n466,32,13.0\n466,33,12.5\n466,34,12.0\n466,35,11.5\n466,36,11.0\n466,37,10.5\n466,38,10.0\n466,39,9.5\n466,40,9.0\n466,41,8.5\n466,42,9.0\n466,43,9.5\n466,44,10.0\n466,45,10.5\n466,46,11.0\n466,47,11.5\n466,48,12.0\n466,49,12.5\n466,50,16.0\n466,51,15.5\n466,52,15.0\n466,53,14.5\n466,54,14.0\n466,55,13.5\n466,56,13.0\n466,57,12.5\n466,58,12.0\n466,59,11.5\n466,60,11.0\n466,61,10.5\n466,62,10.0\n466,63,9.5\n466,64,9.0\n466,65,8.5\n466,66,8.0\n466,67,8.5\n466,68,9.0\n466,69,9.5\n466,70,10.0\n466,71,10.5\n466,72,11.0\n466,73,11.5\n466,74,12.0\n466,75,15.5\n466,76,15.0\n466,77,14.5\n466,78,14.0\n466,79,13.5\n466,80,13.0\n466,81,12.5\n466,82,12.0\n466,83,11.5\n466,84,11.0\n466,85,10.5\n466,86,10.0\n466,87,9.5\n466,88,9.0\n466,89,8.5\n466,90,8.0\n466,91,7.5\n466,92,8.0\n466,93,8.5\n466,94,9.0\n466,95,9.5\n466,96,10.0\n466,97,10.5\n466,98,11.0\n466,99,11.5\n466,100,15.0\n466,101,14.5\n466,102,14.0\n466,103,13.5\n466,104,13.0\n466,105,12.5\n466,106,12.0\n466,107,11.5\n466,108,11.0\n466,109,10.5\n466,110,10.0\n466,111,9.5\n466,112,9.0\n466,113,8.5\n466,114,8.0\n466,115,7.5\n466,116,7.0\n466,117,7.5\n466,118,8.0\n466,119,8.5\n466,120,9.0\n466,121,9.5\n466,122,10.0\n466,123,10.5\n466,124,11.0\n466,125,14.5\n466,126,14.0\n466,127,13.5\n466,128,13.0\n466,129,12.5\n466,130,12.0\n466,131,11.5\n466,132,11.0\n466,133,10.5\n466,134,10.0\n466,135,9.5\n466,136,9.0\n466,137,8.5\n466,138,8.0\n466,139,7.5\n466,140,7.0\n466,141,6.5\n466,142,7.0\n466,143,7.5\n466,144,8.0\n466,145,8.5\n466,146,9.0\n466,147,9.5\n466,148,10.0\n466,149,10.5\n466,150,14.0\n466,151,13.5\n466,152,13.0\n466,153,12.5\n466,154,12.0\n466,155,11.5\n466,156,11.0\n466,157,10.5\n466,158,10.0\n466,159,9.5\n466,160,9.0\n466,161,8.5\n466,162,8.0\n466,163,7.5\n466,164,7.0\n466,165,6.5\n466,166,6.0\n466,167,6.5\n466,168,7.0\n466,169,7.5\n466,170,8.0\n466,171,8.5\n466,172,9.0\n466,173,9.5\n466,174,10.0\n466,175,13.5\n466,176,13.0\n466,177,12.5\n466,178,12.0\n466,179,11.5\n466,180,11.0\n466,181,10.5\n466,182,10.0\n466,183,9.5\n466,184,9.0\n466,185,8.5\n466,186,8.0\n466,187,7.5\n466,188,7.0\n466,189,6.5\n466,190,6.0\n466,191,5.5\n466,192,6.0\n466,193,6.5\n466,194,7.0\n466,195,7.5\n466,196,8.0\n466,197,8.5\n466,198,9.0\n466,199,9.5\n466,200,13.0\n466,201,12.5\n466,202,12.0\n466,203,11.5\n466,204,11.0\n466,205,10.5\n466,206,10.0\n466,207,9.5\n466,208,9.0\n466,209,8.5\n466,210,8.0\n466,211,7.5\n466,212,7.0\n466,213,6.5\n466,214,6.0\n466,215,5.5\n466,216,5.0\n466,217,5.5\n466,218,6.0\n466,219,6.5\n466,220,7.0\n466,221,7.5\n466,222,8.0\n466,223,8.5\n466,224,9.0\n466,225,12.5\n466,226,12.0\n466,227,11.5\n466,228,11.0\n466,229,10.5\n466,230,10.0\n466,231,9.5\n466,232,9.0\n466,233,8.5\n466,234,8.0\n466,235,7.5\n466,236,7.0\n466,237,6.5\n466,238,6.0\n466,239,5.5\n466,240,5.0\n466,241,4.5\n466,242,5.0\n466,243,5.5\n466,244,6.0\n466,245,6.5\n466,246,7.0\n466,247,7.5\n466,248,8.0\n466,249,8.5\n466,250,12.0\n466,251,11.5\n466,252,11.0\n466,253,10.5\n466,254,10.0\n466,255,9.5\n466,256,9.0\n466,257,8.5\n466,258,8.0\n466,259,7.5\n466,260,7.0\n466,261,6.5\n466,262,6.0\n466,263,5.5\n466,264,5.0\n466,265,4.5\n466,266,4.0\n466,267,4.5\n466,268,5.0\n466,269,5.5\n466,270,6.0\n466,271,6.5\n466,272,7.0\n466,273,7.5\n466,274,8.0\n466,275,11.5\n466,276,11.0\n466,277,10.5\n466,278,10.0\n466,279,9.5\n466,280,9.0\n466,281,8.5\n466,282,8.0\n466,283,7.5\n466,284,7.0\n466,285,6.5\n466,286,6.0\n466,287,5.5\n466,288,5.0\n466,289,4.5\n466,290,4.0\n466,291,3.5\n466,292,4.0\n466,293,4.5\n466,294,5.0\n466,295,5.5\n466,296,6.0\n466,297,6.5\n466,298,7.0\n466,299,7.5\n466,300,11.0\n466,301,10.5\n466,302,10.0\n466,303,9.5\n466,304,9.0\n466,305,8.5\n466,306,8.0\n466,307,7.5\n466,308,7.0\n466,309,6.5\n466,310,6.0\n466,311,5.5\n466,312,5.0\n466,313,4.5\n466,314,4.0\n466,315,3.5\n466,316,3.0\n466,317,3.5\n466,318,4.0\n466,319,4.5\n466,320,5.0\n466,321,5.5\n466,322,6.0\n466,323,6.5\n466,324,7.0\n466,325,10.5\n466,326,10.0\n466,327,9.5\n466,328,9.0\n466,329,8.5\n466,330,8.0\n466,331,7.5\n466,332,7.0\n466,333,6.5\n466,334,6.0\n466,335,5.5\n466,336,5.0\n466,337,4.5\n466,338,4.0\n466,339,3.5\n466,340,3.0\n466,341,2.5\n466,342,3.0\n466,343,3.5\n466,344,4.0\n466,345,4.5\n466,346,5.0\n466,347,5.5\n466,348,6.0\n466,349,6.5\n466,350,10.0\n466,351,9.5\n466,352,9.0\n466,353,8.5\n466,354,8.0\n466,355,7.5\n466,356,7.0\n466,357,6.5\n466,358,6.0\n466,359,5.5\n466,360,5.0\n466,361,4.5\n466,362,4.0\n466,363,3.5\n466,364,3.0\n466,365,2.5\n466,366,2.0\n466,367,2.5\n466,368,3.0\n466,369,3.5\n466,370,4.0\n466,371,4.5\n466,372,5.0\n466,373,5.5\n466,374,6.0\n466,375,9.5\n466,376,9.0\n466,377,8.5\n466,378,8.0\n466,379,7.5\n466,380,7.0\n466,381,6.5\n466,382,6.0\n466,383,5.5\n466,384,5.0\n466,385,4.5\n466,386,4.0\n466,387,3.5\n466,388,3.0\n466,389,2.5\n466,390,2.0\n466,391,1.5\n466,392,2.0\n466,393,2.5\n466,394,3.0\n466,395,3.5\n466,396,4.0\n466,397,4.5\n466,398,5.0\n466,399,5.5\n466,400,9.0\n466,401,8.5\n466,402,8.0\n466,403,7.5\n466,404,7.0\n466,405,6.5\n466,406,6.0\n466,407,5.5\n466,408,5.0\n466,409,4.5\n466,410,4.0\n466,411,3.5\n466,412,3.0\n466,413,2.5\n466,414,2.0\n466,415,1.5\n466,416,1.0\n466,417,1.5\n466,418,2.0\n466,419,2.5\n466,420,3.0\n466,421,3.5\n466,422,4.0\n466,423,4.5\n466,424,5.0\n466,425,8.5\n466,426,8.0\n466,427,7.5\n466,428,7.0\n466,429,6.5\n466,430,6.0\n466,431,5.5\n466,432,5.0\n466,433,4.5\n466,434,4.0\n466,435,3.5\n466,436,3.0\n466,437,2.5\n466,438,2.0\n466,439,1.5\n466,440,1.0\n466,441,0.5\n466,442,1.0\n466,443,1.5\n466,444,2.0\n466,445,2.5\n466,446,3.0\n466,447,3.5\n466,448,4.0\n466,449,4.5\n466,450,8.0\n466,451,7.5\n466,452,7.0\n466,453,6.5\n466,454,6.0\n466,455,5.5\n466,456,5.0\n466,457,4.5\n466,458,4.0\n466,459,3.5\n466,460,3.0\n466,461,2.5\n466,462,2.0\n466,463,1.5\n466,464,1.0\n466,465,0.5\n466,466,0\n466,467,0.5\n466,468,1.0\n466,469,1.5\n466,470,2.0\n466,471,2.5\n466,472,3.0\n466,473,3.5\n466,474,4.0\n466,475,8.5\n466,476,8.0\n466,477,7.5\n466,478,7.0\n466,479,6.5\n466,480,6.0\n466,481,5.5\n466,482,5.0\n466,483,4.5\n466,484,4.0\n466,485,3.5\n466,486,3.0\n466,487,2.5\n466,488,2.0\n466,489,1.5\n466,490,1.0\n466,491,0.5\n466,492,1.0\n466,493,1.5\n466,494,2.0\n466,495,2.5\n466,496,3.0\n466,497,3.5\n466,498,4.0\n466,499,4.5\n466,500,9.0\n466,501,8.5\n466,502,8.0\n466,503,7.5\n466,504,7.0\n466,505,6.5\n466,506,6.0\n466,507,5.5\n466,508,5.0\n466,509,4.5\n466,510,4.0\n466,511,3.5\n466,512,3.0\n466,513,2.5\n466,514,2.0\n466,515,1.5\n466,516,1.0\n466,517,1.5\n466,518,2.0\n466,519,2.5\n466,520,3.0\n466,521,3.5\n466,522,4.0\n466,523,4.5\n466,524,5.0\n466,525,9.5\n466,526,9.0\n466,527,8.5\n466,528,8.0\n466,529,7.5\n466,530,7.0\n466,531,6.5\n466,532,6.0\n466,533,5.5\n466,534,5.0\n466,535,4.5\n466,536,4.0\n466,537,3.5\n466,538,3.0\n466,539,2.5\n466,540,2.0\n466,541,1.5\n466,542,2.0\n466,543,2.5\n466,544,3.0\n466,545,3.5\n466,546,4.0\n466,547,4.5\n466,548,5.0\n466,549,5.5\n466,550,10.0\n466,551,9.5\n466,552,9.0\n466,553,8.5\n466,554,8.0\n466,555,7.5\n466,556,7.0\n466,557,6.5\n466,558,6.0\n466,559,5.5\n466,560,5.0\n466,561,4.5\n466,562,4.0\n466,563,3.5\n466,564,3.0\n466,565,2.5\n466,566,2.0\n466,567,2.5\n466,568,3.0\n466,569,3.5\n466,570,4.0\n466,571,4.5\n466,572,5.0\n466,573,5.5\n466,574,6.0\n466,575,10.5\n466,576,10.0\n466,577,9.5\n466,578,9.0\n466,579,8.5\n466,580,8.0\n466,581,7.5\n466,582,7.0\n466,583,6.5\n466,584,6.0\n466,585,5.5\n466,586,5.0\n466,587,4.5\n466,588,4.0\n466,589,3.5\n466,590,3.0\n466,591,2.5\n466,592,3.0\n466,593,3.5\n466,594,4.0\n466,595,4.5\n466,596,5.0\n466,597,5.5\n466,598,6.0\n466,599,6.5\n466,600,11.0\n466,601,10.5\n466,602,10.0\n466,603,9.5\n466,604,9.0\n466,605,8.5\n466,606,8.0\n466,607,7.5\n466,608,7.0\n466,609,6.5\n466,610,6.0\n466,611,5.5\n466,612,5.0\n466,613,4.5\n466,614,4.0\n466,615,3.5\n466,616,3.0\n466,617,3.5\n466,618,4.0\n466,619,4.5\n466,620,5.0\n466,621,5.5\n466,622,6.0\n466,623,6.5\n466,624,7.0\n467,0,17.5\n467,1,17.0\n467,2,16.5\n467,3,16.0\n467,4,15.5\n467,5,15.0\n467,6,14.5\n467,7,14.0\n467,8,13.5\n467,9,13.0\n467,10,12.5\n467,11,12.0\n467,12,11.5\n467,13,11.0\n467,14,10.5\n467,15,10.0\n467,16,9.5\n467,17,9.0\n467,18,9.5\n467,19,10.0\n467,20,10.5\n467,21,11.0\n467,22,11.5\n467,23,12.0\n467,24,12.5\n467,25,17.0\n467,26,16.5\n467,27,16.0\n467,28,15.5\n467,29,15.0\n467,30,14.5\n467,31,14.0\n467,32,13.5\n467,33,13.0\n467,34,12.5\n467,35,12.0\n467,36,11.5\n467,37,11.0\n467,38,10.5\n467,39,10.0\n467,40,9.5\n467,41,9.0\n467,42,8.5\n467,43,9.0\n467,44,9.5\n467,45,10.0\n467,46,10.5\n467,47,11.0\n467,48,11.5\n467,49,12.0\n467,50,16.5\n467,51,16.0\n467,52,15.5\n467,53,15.0\n467,54,14.5\n467,55,14.0\n467,56,13.5\n467,57,13.0\n467,58,12.5\n467,59,12.0\n467,60,11.5\n467,61,11.0\n467,62,10.5\n467,63,10.0\n467,64,9.5\n467,65,9.0\n467,66,8.5\n467,67,8.0\n467,68,8.5\n467,69,9.0\n467,70,9.5\n467,71,10.0\n467,72,10.5\n467,73,11.0\n467,74,11.5\n467,75,16.0\n467,76,15.5\n467,77,15.0\n467,78,14.5\n467,79,14.0\n467,80,13.5\n467,81,13.0\n467,82,12.5\n467,83,12.0\n467,84,11.5\n467,85,11.0\n467,86,10.5\n467,87,10.0\n467,88,9.5\n467,89,9.0\n467,90,8.5\n467,91,8.0\n467,92,7.5\n467,93,8.0\n467,94,8.5\n467,95,9.0\n467,96,9.5\n467,97,10.0\n467,98,10.5\n467,99,11.0\n467,100,15.5\n467,101,15.0\n467,102,14.5\n467,103,14.0\n467,104,13.5\n467,105,13.0\n467,106,12.5\n467,107,12.0\n467,108,11.5\n467,109,11.0\n467,110,10.5\n467,111,10.0\n467,112,9.5\n467,113,9.0\n467,114,8.5\n467,115,8.0\n467,116,7.5\n467,117,7.0\n467,118,7.5\n467,119,8.0\n467,120,8.5\n467,121,9.0\n467,122,9.5\n467,123,10.0\n467,124,10.5\n467,125,15.0\n467,126,14.5\n467,127,14.0\n467,128,13.5\n467,129,13.0\n467,130,12.5\n467,131,12.0\n467,132,11.5\n467,133,11.0\n467,134,10.5\n467,135,10.0\n467,136,9.5\n467,137,9.0\n467,138,8.5\n467,139,8.0\n467,140,7.5\n467,141,7.0\n467,142,6.5\n467,143,7.0\n467,144,7.5\n467,145,8.0\n467,146,8.5\n467,147,9.0\n467,148,9.5\n467,149,10.0\n467,150,14.5\n467,151,14.0\n467,152,13.5\n467,153,13.0\n467,154,12.5\n467,155,12.0\n467,156,11.5\n467,157,11.0\n467,158,10.5\n467,159,10.0\n467,160,9.5\n467,161,9.0\n467,162,8.5\n467,163,8.0\n467,164,7.5\n467,165,7.0\n467,166,6.5\n467,167,6.0\n467,168,6.5\n467,169,7.0\n467,170,7.5\n467,171,8.0\n467,172,8.5\n467,173,9.0\n467,174,9.5\n467,175,14.0\n467,176,13.5\n467,177,13.0\n467,178,12.5\n467,179,12.0\n467,180,11.5\n467,181,11.0\n467,182,10.5\n467,183,10.0\n467,184,9.5\n467,185,9.0\n467,186,8.5\n467,187,8.0\n467,188,7.5\n467,189,7.0\n467,190,6.5\n467,191,6.0\n467,192,5.5\n467,193,6.0\n467,194,6.5\n467,195,7.0\n467,196,7.5\n467,197,8.0\n467,198,8.5\n467,199,9.0\n467,200,13.5\n467,201,13.0\n467,202,12.5\n467,203,12.0\n467,204,11.5\n467,205,11.0\n467,206,10.5\n467,207,10.0\n467,208,9.5\n467,209,9.0\n467,210,8.5\n467,211,8.0\n467,212,7.5\n467,213,7.0\n467,214,6.5\n467,215,6.0\n467,216,5.5\n467,217,5.0\n467,218,5.5\n467,219,6.0\n467,220,6.5\n467,221,7.0\n467,222,7.5\n467,223,8.0\n467,224,8.5\n467,225,13.0\n467,226,12.5\n467,227,12.0\n467,228,11.5\n467,229,11.0\n467,230,10.5\n467,231,10.0\n467,232,9.5\n467,233,9.0\n467,234,8.5\n467,235,8.0\n467,236,7.5\n467,237,7.0\n467,238,6.5\n467,239,6.0\n467,240,5.5\n467,241,5.0\n467,242,4.5\n467,243,5.0\n467,244,5.5\n467,245,6.0\n467,246,6.5\n467,247,7.0\n467,248,7.5\n467,249,8.0\n467,250,12.5\n467,251,12.0\n467,252,11.5\n467,253,11.0\n467,254,10.5\n467,255,10.0\n467,256,9.5\n467,257,9.0\n467,258,8.5\n467,259,8.0\n467,260,7.5\n467,261,7.0\n467,262,6.5\n467,263,6.0\n467,264,5.5\n467,265,5.0\n467,266,4.5\n467,267,4.0\n467,268,4.5\n467,269,5.0\n467,270,5.5\n467,271,6.0\n467,272,6.5\n467,273,7.0\n467,274,7.5\n467,275,12.0\n467,276,11.5\n467,277,11.0\n467,278,10.5\n467,279,10.0\n467,280,9.5\n467,281,9.0\n467,282,8.5\n467,283,8.0\n467,284,7.5\n467,285,7.0\n467,286,6.5\n467,287,6.0\n467,288,5.5\n467,289,5.0\n467,290,4.5\n467,291,4.0\n467,292,3.5\n467,293,4.0\n467,294,4.5\n467,295,5.0\n467,296,5.5\n467,297,6.0\n467,298,6.5\n467,299,7.0\n467,300,11.5\n467,301,11.0\n467,302,10.5\n467,303,10.0\n467,304,9.5\n467,305,9.0\n467,306,8.5\n467,307,8.0\n467,308,7.5\n467,309,7.0\n467,310,6.5\n467,311,6.0\n467,312,5.5\n467,313,5.0\n467,314,4.5\n467,315,4.0\n467,316,3.5\n467,317,3.0\n467,318,3.5\n467,319,4.0\n467,320,4.5\n467,321,5.0\n467,322,5.5\n467,323,6.0\n467,324,6.5\n467,325,11.0\n467,326,10.5\n467,327,10.0\n467,328,9.5\n467,329,9.0\n467,330,8.5\n467,331,8.0\n467,332,7.5\n467,333,7.0\n467,334,6.5\n467,335,6.0\n467,336,5.5\n467,337,5.0\n467,338,4.5\n467,339,4.0\n467,340,3.5\n467,341,3.0\n467,342,2.5\n467,343,3.0\n467,344,3.5\n467,345,4.0\n467,346,4.5\n467,347,5.0\n467,348,5.5\n467,349,6.0\n467,350,10.5\n467,351,10.0\n467,352,9.5\n467,353,9.0\n467,354,8.5\n467,355,8.0\n467,356,7.5\n467,357,7.0\n467,358,6.5\n467,359,6.0\n467,360,5.5\n467,361,5.0\n467,362,4.5\n467,363,4.0\n467,364,3.5\n467,365,3.0\n467,366,2.5\n467,367,2.0\n467,368,2.5\n467,369,3.0\n467,370,3.5\n467,371,4.0\n467,372,4.5\n467,373,5.0\n467,374,5.5\n467,375,10.0\n467,376,9.5\n467,377,9.0\n467,378,8.5\n467,379,8.0\n467,380,7.5\n467,381,7.0\n467,382,6.5\n467,383,6.0\n467,384,5.5\n467,385,5.0\n467,386,4.5\n467,387,4.0\n467,388,3.5\n467,389,3.0\n467,390,2.5\n467,391,2.0\n467,392,1.5\n467,393,2.0\n467,394,2.5\n467,395,3.0\n467,396,3.5\n467,397,4.0\n467,398,4.5\n467,399,5.0\n467,400,9.5\n467,401,9.0\n467,402,8.5\n467,403,8.0\n467,404,7.5\n467,405,7.0\n467,406,6.5\n467,407,6.0\n467,408,5.5\n467,409,5.0\n467,410,4.5\n467,411,4.0\n467,412,3.5\n467,413,3.0\n467,414,2.5\n467,415,2.0\n467,416,1.5\n467,417,1.0\n467,418,1.5\n467,419,2.0\n467,420,2.5\n467,421,3.0\n467,422,3.5\n467,423,4.0\n467,424,4.5\n467,425,9.0\n467,426,8.5\n467,427,8.0\n467,428,7.5\n467,429,7.0\n467,430,6.5\n467,431,6.0\n467,432,5.5\n467,433,5.0\n467,434,4.5\n467,435,4.0\n467,436,3.5\n467,437,3.0\n467,438,2.5\n467,439,2.0\n467,440,1.5\n467,441,1.0\n467,442,0.5\n467,443,1.0\n467,444,1.5\n467,445,2.0\n467,446,2.5\n467,447,3.0\n467,448,3.5\n467,449,4.0\n467,450,8.5\n467,451,8.0\n467,452,7.5\n467,453,7.0\n467,454,6.5\n467,455,6.0\n467,456,5.5\n467,457,5.0\n467,458,4.5\n467,459,4.0\n467,460,3.5\n467,461,3.0\n467,462,2.5\n467,463,2.0\n467,464,1.5\n467,465,1.0\n467,466,0.5\n467,467,0\n467,468,0.5\n467,469,1.0\n467,470,1.5\n467,471,2.0\n467,472,2.5\n467,473,3.0\n467,474,3.5\n467,475,9.0\n467,476,8.5\n467,477,8.0\n467,478,7.5\n467,479,7.0\n467,480,6.5\n467,481,6.0\n467,482,5.5\n467,483,5.0\n467,484,4.5\n467,485,4.0\n467,486,3.5\n467,487,3.0\n467,488,2.5\n467,489,2.0\n467,490,1.5\n467,491,1.0\n467,492,0.5\n467,493,1.0\n467,494,1.5\n467,495,2.0\n467,496,2.5\n467,497,3.0\n467,498,3.5\n467,499,4.0\n467,500,9.5\n467,501,9.0\n467,502,8.5\n467,503,8.0\n467,504,7.5\n467,505,7.0\n467,506,6.5\n467,507,6.0\n467,508,5.5\n467,509,5.0\n467,510,4.5\n467,511,4.0\n467,512,3.5\n467,513,3.0\n467,514,2.5\n467,515,2.0\n467,516,1.5\n467,517,1.0\n467,518,1.5\n467,519,2.0\n467,520,2.5\n467,521,3.0\n467,522,3.5\n467,523,4.0\n467,524,4.5\n467,525,10.0\n467,526,9.5\n467,527,9.0\n467,528,8.5\n467,529,8.0\n467,530,7.5\n467,531,7.0\n467,532,6.5\n467,533,6.0\n467,534,5.5\n467,535,5.0\n467,536,4.5\n467,537,4.0\n467,538,3.5\n467,539,3.0\n467,540,2.5\n467,541,2.0\n467,542,1.5\n467,543,2.0\n467,544,2.5\n467,545,3.0\n467,546,3.5\n467,547,4.0\n467,548,4.5\n467,549,5.0\n467,550,10.5\n467,551,10.0\n467,552,9.5\n467,553,9.0\n467,554,8.5\n467,555,8.0\n467,556,7.5\n467,557,7.0\n467,558,6.5\n467,559,6.0\n467,560,5.5\n467,561,5.0\n467,562,4.5\n467,563,4.0\n467,564,3.5\n467,565,3.0\n467,566,2.5\n467,567,2.0\n467,568,2.5\n467,569,3.0\n467,570,3.5\n467,571,4.0\n467,572,4.5\n467,573,5.0\n467,574,5.5\n467,575,11.0\n467,576,10.5\n467,577,10.0\n467,578,9.5\n467,579,9.0\n467,580,8.5\n467,581,8.0\n467,582,7.5\n467,583,7.0\n467,584,6.5\n467,585,6.0\n467,586,5.5\n467,587,5.0\n467,588,4.5\n467,589,4.0\n467,590,3.5\n467,591,3.0\n467,592,2.5\n467,593,3.0\n467,594,3.5\n467,595,4.0\n467,596,4.5\n467,597,5.0\n467,598,5.5\n467,599,6.0\n467,600,11.5\n467,601,11.0\n467,602,10.5\n467,603,10.0\n467,604,9.5\n467,605,9.0\n467,606,8.5\n467,607,8.0\n467,608,7.5\n467,609,7.0\n467,610,6.5\n467,611,6.0\n467,612,5.5\n467,613,5.0\n467,614,4.5\n467,615,4.0\n467,616,3.5\n467,617,3.0\n467,618,3.5\n467,619,4.0\n467,620,4.5\n467,621,5.0\n467,622,5.5\n467,623,6.0\n467,624,6.5\n468,0,18.0\n468,1,17.5\n468,2,17.0\n468,3,16.5\n468,4,16.0\n468,5,15.5\n468,6,15.0\n468,7,14.5\n468,8,14.0\n468,9,13.5\n468,10,13.0\n468,11,12.5\n468,12,12.0\n468,13,11.5\n468,14,11.0\n468,15,10.5\n468,16,10.0\n468,17,9.5\n468,18,9.0\n468,19,9.5\n468,20,10.0\n468,21,10.5\n468,22,11.0\n468,23,11.5\n468,24,12.0\n468,25,17.5\n468,26,17.0\n468,27,16.5\n468,28,16.0\n468,29,15.5\n468,30,15.0\n468,31,14.5\n468,32,14.0\n468,33,13.5\n468,34,13.0\n468,35,12.5\n468,36,12.0\n468,37,11.5\n468,38,11.0\n468,39,10.5\n468,40,10.0\n468,41,9.5\n468,42,9.0\n468,43,8.5\n468,44,9.0\n468,45,9.5\n468,46,10.0\n468,47,10.5\n468,48,11.0\n468,49,11.5\n468,50,17.0\n468,51,16.5\n468,52,16.0\n468,53,15.5\n468,54,15.0\n468,55,14.5\n468,56,14.0\n468,57,13.5\n468,58,13.0\n468,59,12.5\n468,60,12.0\n468,61,11.5\n468,62,11.0\n468,63,10.5\n468,64,10.0\n468,65,9.5\n468,66,9.0\n468,67,8.5\n468,68,8.0\n468,69,8.5\n468,70,9.0\n468,71,9.5\n468,72,10.0\n468,73,10.5\n468,74,11.0\n468,75,16.5\n468,76,16.0\n468,77,15.5\n468,78,15.0\n468,79,14.5\n468,80,14.0\n468,81,13.5\n468,82,13.0\n468,83,12.5\n468,84,12.0\n468,85,11.5\n468,86,11.0\n468,87,10.5\n468,88,10.0\n468,89,9.5\n468,90,9.0\n468,91,8.5\n468,92,8.0\n468,93,7.5\n468,94,8.0\n468,95,8.5\n468,96,9.0\n468,97,9.5\n468,98,10.0\n468,99,10.5\n468,100,16.0\n468,101,15.5\n468,102,15.0\n468,103,14.5\n468,104,14.0\n468,105,13.5\n468,106,13.0\n468,107,12.5\n468,108,12.0\n468,109,11.5\n468,110,11.0\n468,111,10.5\n468,112,10.0\n468,113,9.5\n468,114,9.0\n468,115,8.5\n468,116,8.0\n468,117,7.5\n468,118,7.0\n468,119,7.5\n468,120,8.0\n468,121,8.5\n468,122,9.0\n468,123,9.5\n468,124,10.0\n468,125,15.5\n468,126,15.0\n468,127,14.5\n468,128,14.0\n468,129,13.5\n468,130,13.0\n468,131,12.5\n468,132,12.0\n468,133,11.5\n468,134,11.0\n468,135,10.5\n468,136,10.0\n468,137,9.5\n468,138,9.0\n468,139,8.5\n468,140,8.0\n468,141,7.5\n468,142,7.0\n468,143,6.5\n468,144,7.0\n468,145,7.5\n468,146,8.0\n468,147,8.5\n468,148,9.0\n468,149,9.5\n468,150,15.0\n468,151,14.5\n468,152,14.0\n468,153,13.5\n468,154,13.0\n468,155,12.5\n468,156,12.0\n468,157,11.5\n468,158,11.0\n468,159,10.5\n468,160,10.0\n468,161,9.5\n468,162,9.0\n468,163,8.5\n468,164,8.0\n468,165,7.5\n468,166,7.0\n468,167,6.5\n468,168,6.0\n468,169,6.5\n468,170,7.0\n468,171,7.5\n468,172,8.0\n468,173,8.5\n468,174,9.0\n468,175,14.5\n468,176,14.0\n468,177,13.5\n468,178,13.0\n468,179,12.5\n468,180,12.0\n468,181,11.5\n468,182,11.0\n468,183,10.5\n468,184,10.0\n468,185,9.5\n468,186,9.0\n468,187,8.5\n468,188,8.0\n468,189,7.5\n468,190,7.0\n468,191,6.5\n468,192,6.0\n468,193,5.5\n468,194,6.0\n468,195,6.5\n468,196,7.0\n468,197,7.5\n468,198,8.0\n468,199,8.5\n468,200,14.0\n468,201,13.5\n468,202,13.0\n468,203,12.5\n468,204,12.0\n468,205,11.5\n468,206,11.0\n468,207,10.5\n468,208,10.0\n468,209,9.5\n468,210,9.0\n468,211,8.5\n468,212,8.0\n468,213,7.5\n468,214,7.0\n468,215,6.5\n468,216,6.0\n468,217,5.5\n468,218,5.0\n468,219,5.5\n468,220,6.0\n468,221,6.5\n468,222,7.0\n468,223,7.5\n468,224,8.0\n468,225,13.5\n468,226,13.0\n468,227,12.5\n468,228,12.0\n468,229,11.5\n468,230,11.0\n468,231,10.5\n468,232,10.0\n468,233,9.5\n468,234,9.0\n468,235,8.5\n468,236,8.0\n468,237,7.5\n468,238,7.0\n468,239,6.5\n468,240,6.0\n468,241,5.5\n468,242,5.0\n468,243,4.5\n468,244,5.0\n468,245,5.5\n468,246,6.0\n468,247,6.5\n468,248,7.0\n468,249,7.5\n468,250,13.0\n468,251,12.5\n468,252,12.0\n468,253,11.5\n468,254,11.0\n468,255,10.5\n468,256,10.0\n468,257,9.5\n468,258,9.0\n468,259,8.5\n468,260,8.0\n468,261,7.5\n468,262,7.0\n468,263,6.5\n468,264,6.0\n468,265,5.5\n468,266,5.0\n468,267,4.5\n468,268,4.0\n468,269,4.5\n468,270,5.0\n468,271,5.5\n468,272,6.0\n468,273,6.5\n468,274,7.0\n468,275,12.5\n468,276,12.0\n468,277,11.5\n468,278,11.0\n468,279,10.5\n468,280,10.0\n468,281,9.5\n468,282,9.0\n468,283,8.5\n468,284,8.0\n468,285,7.5\n468,286,7.0\n468,287,6.5\n468,288,6.0\n468,289,5.5\n468,290,5.0\n468,291,4.5\n468,292,4.0\n468,293,3.5\n468,294,4.0\n468,295,4.5\n468,296,5.0\n468,297,5.5\n468,298,6.0\n468,299,6.5\n468,300,12.0\n468,301,11.5\n468,302,11.0\n468,303,10.5\n468,304,10.0\n468,305,9.5\n468,306,9.0\n468,307,8.5\n468,308,8.0\n468,309,7.5\n468,310,7.0\n468,311,6.5\n468,312,6.0\n468,313,5.5\n468,314,5.0\n468,315,4.5\n468,316,4.0\n468,317,3.5\n468,318,3.0\n468,319,3.5\n468,320,4.0\n468,321,4.5\n468,322,5.0\n468,323,5.5\n468,324,6.0\n468,325,11.5\n468,326,11.0\n468,327,10.5\n468,328,10.0\n468,329,9.5\n468,330,9.0\n468,331,8.5\n468,332,8.0\n468,333,7.5\n468,334,7.0\n468,335,6.5\n468,336,6.0\n468,337,5.5\n468,338,5.0\n468,339,4.5\n468,340,4.0\n468,341,3.5\n468,342,3.0\n468,343,2.5\n468,344,3.0\n468,345,3.5\n468,346,4.0\n468,347,4.5\n468,348,5.0\n468,349,5.5\n468,350,11.0\n468,351,10.5\n468,352,10.0\n468,353,9.5\n468,354,9.0\n468,355,8.5\n468,356,8.0\n468,357,7.5\n468,358,7.0\n468,359,6.5\n468,360,6.0\n468,361,5.5\n468,362,5.0\n468,363,4.5\n468,364,4.0\n468,365,3.5\n468,366,3.0\n468,367,2.5\n468,368,2.0\n468,369,2.5\n468,370,3.0\n468,371,3.5\n468,372,4.0\n468,373,4.5\n468,374,5.0\n468,375,10.5\n468,376,10.0\n468,377,9.5\n468,378,9.0\n468,379,8.5\n468,380,8.0\n468,381,7.5\n468,382,7.0\n468,383,6.5\n468,384,6.0\n468,385,5.5\n468,386,5.0\n468,387,4.5\n468,388,4.0\n468,389,3.5\n468,390,3.0\n468,391,2.5\n468,392,2.0\n468,393,1.5\n468,394,2.0\n468,395,2.5\n468,396,3.0\n468,397,3.5\n468,398,4.0\n468,399,4.5\n468,400,10.0\n468,401,9.5\n468,402,9.0\n468,403,8.5\n468,404,8.0\n468,405,7.5\n468,406,7.0\n468,407,6.5\n468,408,6.0\n468,409,5.5\n468,410,5.0\n468,411,4.5\n468,412,4.0\n468,413,3.5\n468,414,3.0\n468,415,2.5\n468,416,2.0\n468,417,1.5\n468,418,1.0\n468,419,1.5\n468,420,2.0\n468,421,2.5\n468,422,3.0\n468,423,3.5\n468,424,4.0\n468,425,9.5\n468,426,9.0\n468,427,8.5\n468,428,8.0\n468,429,7.5\n468,430,7.0\n468,431,6.5\n468,432,6.0\n468,433,5.5\n468,434,5.0\n468,435,4.5\n468,436,4.0\n468,437,3.5\n468,438,3.0\n468,439,2.5\n468,440,2.0\n468,441,1.5\n468,442,1.0\n468,443,0.5\n468,444,1.0\n468,445,1.5\n468,446,2.0\n468,447,2.5\n468,448,3.0\n468,449,3.5\n468,450,9.0\n468,451,8.5\n468,452,8.0\n468,453,7.5\n468,454,7.0\n468,455,6.5\n468,456,6.0\n468,457,5.5\n468,458,5.0\n468,459,4.5\n468,460,4.0\n468,461,3.5\n468,462,3.0\n468,463,2.5\n468,464,2.0\n468,465,1.5\n468,466,1.0\n468,467,0.5\n468,468,0\n468,469,0.5\n468,470,1.0\n468,471,1.5\n468,472,2.0\n468,473,2.5\n468,474,3.0\n468,475,9.5\n468,476,9.0\n468,477,8.5\n468,478,8.0\n468,479,7.5\n468,480,7.0\n468,481,6.5\n468,482,6.0\n468,483,5.5\n468,484,5.0\n468,485,4.5\n468,486,4.0\n468,487,3.5\n468,488,3.0\n468,489,2.5\n468,490,2.0\n468,491,1.5\n468,492,1.0\n468,493,0.5\n468,494,1.0\n468,495,1.5\n468,496,2.0\n468,497,2.5\n468,498,3.0\n468,499,3.5\n468,500,10.0\n468,501,9.5\n468,502,9.0\n468,503,8.5\n468,504,8.0\n468,505,7.5\n468,506,7.0\n468,507,6.5\n468,508,6.0\n468,509,5.5\n468,510,5.0\n468,511,4.5\n468,512,4.0\n468,513,3.5\n468,514,3.0\n468,515,2.5\n468,516,2.0\n468,517,1.5\n468,518,1.0\n468,519,1.5\n468,520,2.0\n468,521,2.5\n468,522,3.0\n468,523,3.5\n468,524,4.0\n468,525,10.5\n468,526,10.0\n468,527,9.5\n468,528,9.0\n468,529,8.5\n468,530,8.0\n468,531,7.5\n468,532,7.0\n468,533,6.5\n468,534,6.0\n468,535,5.5\n468,536,5.0\n468,537,4.5\n468,538,4.0\n468,539,3.5\n468,540,3.0\n468,541,2.5\n468,542,2.0\n468,543,1.5\n468,544,2.0\n468,545,2.5\n468,546,3.0\n468,547,3.5\n468,548,4.0\n468,549,4.5\n468,550,11.0\n468,551,10.5\n468,552,10.0\n468,553,9.5\n468,554,9.0\n468,555,8.5\n468,556,8.0\n468,557,7.5\n468,558,7.0\n468,559,6.5\n468,560,6.0\n468,561,5.5\n468,562,5.0\n468,563,4.5\n468,564,4.0\n468,565,3.5\n468,566,3.0\n468,567,2.5\n468,568,2.0\n468,569,2.5\n468,570,3.0\n468,571,3.5\n468,572,4.0\n468,573,4.5\n468,574,5.0\n468,575,11.5\n468,576,11.0\n468,577,10.5\n468,578,10.0\n468,579,9.5\n468,580,9.0\n468,581,8.5\n468,582,8.0\n468,583,7.5\n468,584,7.0\n468,585,6.5\n468,586,6.0\n468,587,5.5\n468,588,5.0\n468,589,4.5\n468,590,4.0\n468,591,3.5\n468,592,3.0\n468,593,2.5\n468,594,3.0\n468,595,3.5\n468,596,4.0\n468,597,4.5\n468,598,5.0\n468,599,5.5\n468,600,12.0\n468,601,11.5\n468,602,11.0\n468,603,10.5\n468,604,10.0\n468,605,9.5\n468,606,9.0\n468,607,8.5\n468,608,8.0\n468,609,7.5\n468,610,7.0\n468,611,6.5\n468,612,6.0\n468,613,5.5\n468,614,5.0\n468,615,4.5\n468,616,4.0\n468,617,3.5\n468,618,3.0\n468,619,3.5\n468,620,4.0\n468,621,4.5\n468,622,5.0\n468,623,5.5\n468,624,6.0\n469,0,18.5\n469,1,18.0\n469,2,17.5\n469,3,17.0\n469,4,16.5\n469,5,16.0\n469,6,15.5\n469,7,15.0\n469,8,14.5\n469,9,14.0\n469,10,13.5\n469,11,13.0\n469,12,12.5\n469,13,12.0\n469,14,11.5\n469,15,11.0\n469,16,10.5\n469,17,10.0\n469,18,9.5\n469,19,9.0\n469,20,9.5\n469,21,10.0\n469,22,10.5\n469,23,11.0\n469,24,11.5\n469,25,18.0\n469,26,17.5\n469,27,17.0\n469,28,16.5\n469,29,16.0\n469,30,15.5\n469,31,15.0\n469,32,14.5\n469,33,14.0\n469,34,13.5\n469,35,13.0\n469,36,12.5\n469,37,12.0\n469,38,11.5\n469,39,11.0\n469,40,10.5\n469,41,10.0\n469,42,9.5\n469,43,9.0\n469,44,8.5\n469,45,9.0\n469,46,9.5\n469,47,10.0\n469,48,10.5\n469,49,11.0\n469,50,17.5\n469,51,17.0\n469,52,16.5\n469,53,16.0\n469,54,15.5\n469,55,15.0\n469,56,14.5\n469,57,14.0\n469,58,13.5\n469,59,13.0\n469,60,12.5\n469,61,12.0\n469,62,11.5\n469,63,11.0\n469,64,10.5\n469,65,10.0\n469,66,9.5\n469,67,9.0\n469,68,8.5\n469,69,8.0\n469,70,8.5\n469,71,9.0\n469,72,9.5\n469,73,10.0\n469,74,10.5\n469,75,17.0\n469,76,16.5\n469,77,16.0\n469,78,15.5\n469,79,15.0\n469,80,14.5\n469,81,14.0\n469,82,13.5\n469,83,13.0\n469,84,12.5\n469,85,12.0\n469,86,11.5\n469,87,11.0\n469,88,10.5\n469,89,10.0\n469,90,9.5\n469,91,9.0\n469,92,8.5\n469,93,8.0\n469,94,7.5\n469,95,8.0\n469,96,8.5\n469,97,9.0\n469,98,9.5\n469,99,10.0\n469,100,16.5\n469,101,16.0\n469,102,15.5\n469,103,15.0\n469,104,14.5\n469,105,14.0\n469,106,13.5\n469,107,13.0\n469,108,12.5\n469,109,12.0\n469,110,11.5\n469,111,11.0\n469,112,10.5\n469,113,10.0\n469,114,9.5\n469,115,9.0\n469,116,8.5\n469,117,8.0\n469,118,7.5\n469,119,7.0\n469,120,7.5\n469,121,8.0\n469,122,8.5\n469,123,9.0\n469,124,9.5\n469,125,16.0\n469,126,15.5\n469,127,15.0\n469,128,14.5\n469,129,14.0\n469,130,13.5\n469,131,13.0\n469,132,12.5\n469,133,12.0\n469,134,11.5\n469,135,11.0\n469,136,10.5\n469,137,10.0\n469,138,9.5\n469,139,9.0\n469,140,8.5\n469,141,8.0\n469,142,7.5\n469,143,7.0\n469,144,6.5\n469,145,7.0\n469,146,7.5\n469,147,8.0\n469,148,8.5\n469,149,9.0\n469,150,15.5\n469,151,15.0\n469,152,14.5\n469,153,14.0\n469,154,13.5\n469,155,13.0\n469,156,12.5\n469,157,12.0\n469,158,11.5\n469,159,11.0\n469,160,10.5\n469,161,10.0\n469,162,9.5\n469,163,9.0\n469,164,8.5\n469,165,8.0\n469,166,7.5\n469,167,7.0\n469,168,6.5\n469,169,6.0\n469,170,6.5\n469,171,7.0\n469,172,7.5\n469,173,8.0\n469,174,8.5\n469,175,15.0\n469,176,14.5\n469,177,14.0\n469,178,13.5\n469,179,13.0\n469,180,12.5\n469,181,12.0\n469,182,11.5\n469,183,11.0\n469,184,10.5\n469,185,10.0\n469,186,9.5\n469,187,9.0\n469,188,8.5\n469,189,8.0\n469,190,7.5\n469,191,7.0\n469,192,6.5\n469,193,6.0\n469,194,5.5\n469,195,6.0\n469,196,6.5\n469,197,7.0\n469,198,7.5\n469,199,8.0\n469,200,14.5\n469,201,14.0\n469,202,13.5\n469,203,13.0\n469,204,12.5\n469,205,12.0\n469,206,11.5\n469,207,11.0\n469,208,10.5\n469,209,10.0\n469,210,9.5\n469,211,9.0\n469,212,8.5\n469,213,8.0\n469,214,7.5\n469,215,7.0\n469,216,6.5\n469,217,6.0\n469,218,5.5\n469,219,5.0\n469,220,5.5\n469,221,6.0\n469,222,6.5\n469,223,7.0\n469,224,7.5\n469,225,14.0\n469,226,13.5\n469,227,13.0\n469,228,12.5\n469,229,12.0\n469,230,11.5\n469,231,11.0\n469,232,10.5\n469,233,10.0\n469,234,9.5\n469,235,9.0\n469,236,8.5\n469,237,8.0\n469,238,7.5\n469,239,7.0\n469,240,6.5\n469,241,6.0\n469,242,5.5\n469,243,5.0\n469,244,4.5\n469,245,5.0\n469,246,5.5\n469,247,6.0\n469,248,6.5\n469,249,7.0\n469,250,13.5\n469,251,13.0\n469,252,12.5\n469,253,12.0\n469,254,11.5\n469,255,11.0\n469,256,10.5\n469,257,10.0\n469,258,9.5\n469,259,9.0\n469,260,8.5\n469,261,8.0\n469,262,7.5\n469,263,7.0\n469,264,6.5\n469,265,6.0\n469,266,5.5\n469,267,5.0\n469,268,4.5\n469,269,4.0\n469,270,4.5\n469,271,5.0\n469,272,5.5\n469,273,6.0\n469,274,6.5\n469,275,13.0\n469,276,12.5\n469,277,12.0\n469,278,11.5\n469,279,11.0\n469,280,10.5\n469,281,10.0\n469,282,9.5\n469,283,9.0\n469,284,8.5\n469,285,8.0\n469,286,7.5\n469,287,7.0\n469,288,6.5\n469,289,6.0\n469,290,5.5\n469,291,5.0\n469,292,4.5\n469,293,4.0\n469,294,3.5\n469,295,4.0\n469,296,4.5\n469,297,5.0\n469,298,5.5\n469,299,6.0\n469,300,12.5\n469,301,12.0\n469,302,11.5\n469,303,11.0\n469,304,10.5\n469,305,10.0\n469,306,9.5\n469,307,9.0\n469,308,8.5\n469,309,8.0\n469,310,7.5\n469,311,7.0\n469,312,6.5\n469,313,6.0\n469,314,5.5\n469,315,5.0\n469,316,4.5\n469,317,4.0\n469,318,3.5\n469,319,3.0\n469,320,3.5\n469,321,4.0\n469,322,4.5\n469,323,5.0\n469,324,5.5\n469,325,12.0\n469,326,11.5\n469,327,11.0\n469,328,10.5\n469,329,10.0\n469,330,9.5\n469,331,9.0\n469,332,8.5\n469,333,8.0\n469,334,7.5\n469,335,7.0\n469,336,6.5\n469,337,6.0\n469,338,5.5\n469,339,5.0\n469,340,4.5\n469,341,4.0\n469,342,3.5\n469,343,3.0\n469,344,2.5\n469,345,3.0\n469,346,3.5\n469,347,4.0\n469,348,4.5\n469,349,5.0\n469,350,11.5\n469,351,11.0\n469,352,10.5\n469,353,10.0\n469,354,9.5\n469,355,9.0\n469,356,8.5\n469,357,8.0\n469,358,7.5\n469,359,7.0\n469,360,6.5\n469,361,6.0\n469,362,5.5\n469,363,5.0\n469,364,4.5\n469,365,4.0\n469,366,3.5\n469,367,3.0\n469,368,2.5\n469,369,2.0\n469,370,2.5\n469,371,3.0\n469,372,3.5\n469,373,4.0\n469,374,4.5\n469,375,11.0\n469,376,10.5\n469,377,10.0\n469,378,9.5\n469,379,9.0\n469,380,8.5\n469,381,8.0\n469,382,7.5\n469,383,7.0\n469,384,6.5\n469,385,6.0\n469,386,5.5\n469,387,5.0\n469,388,4.5\n469,389,4.0\n469,390,3.5\n469,391,3.0\n469,392,2.5\n469,393,2.0\n469,394,1.5\n469,395,2.0\n469,396,2.5\n469,397,3.0\n469,398,3.5\n469,399,4.0\n469,400,10.5\n469,401,10.0\n469,402,9.5\n469,403,9.0\n469,404,8.5\n469,405,8.0\n469,406,7.5\n469,407,7.0\n469,408,6.5\n469,409,6.0\n469,410,5.5\n469,411,5.0\n469,412,4.5\n469,413,4.0\n469,414,3.5\n469,415,3.0\n469,416,2.5\n469,417,2.0\n469,418,1.5\n469,419,1.0\n469,420,1.5\n469,421,2.0\n469,422,2.5\n469,423,3.0\n469,424,3.5\n469,425,10.0\n469,426,9.5\n469,427,9.0\n469,428,8.5\n469,429,8.0\n469,430,7.5\n469,431,7.0\n469,432,6.5\n469,433,6.0\n469,434,5.5\n469,435,5.0\n469,436,4.5\n469,437,4.0\n469,438,3.5\n469,439,3.0\n469,440,2.5\n469,441,2.0\n469,442,1.5\n469,443,1.0\n469,444,0.5\n469,445,1.0\n469,446,1.5\n469,447,2.0\n469,448,2.5\n469,449,3.0\n469,450,9.5\n469,451,9.0\n469,452,8.5\n469,453,8.0\n469,454,7.5\n469,455,7.0\n469,456,6.5\n469,457,6.0\n469,458,5.5\n469,459,5.0\n469,460,4.5\n469,461,4.0\n469,462,3.5\n469,463,3.0\n469,464,2.5\n469,465,2.0\n469,466,1.5\n469,467,1.0\n469,468,0.5\n469,469,0\n469,470,0.5\n469,471,1.0\n469,472,1.5\n469,473,2.0\n469,474,2.5\n469,475,10.0\n469,476,9.5\n469,477,9.0\n469,478,8.5\n469,479,8.0\n469,480,7.5\n469,481,7.0\n469,482,6.5\n469,483,6.0\n469,484,5.5\n469,485,5.0\n469,486,4.5\n469,487,4.0\n469,488,3.5\n469,489,3.0\n469,490,2.5\n469,491,2.0\n469,492,1.5\n469,493,1.0\n469,494,0.5\n469,495,1.0\n469,496,1.5\n469,497,2.0\n469,498,2.5\n469,499,3.0\n469,500,10.5\n469,501,10.0\n469,502,9.5\n469,503,9.0\n469,504,8.5\n469,505,8.0\n469,506,7.5\n469,507,7.0\n469,508,6.5\n469,509,6.0\n469,510,5.5\n469,511,5.0\n469,512,4.5\n469,513,4.0\n469,514,3.5\n469,515,3.0\n469,516,2.5\n469,517,2.0\n469,518,1.5\n469,519,1.0\n469,520,1.5\n469,521,2.0\n469,522,2.5\n469,523,3.0\n469,524,3.5\n469,525,11.0\n469,526,10.5\n469,527,10.0\n469,528,9.5\n469,529,9.0\n469,530,8.5\n469,531,8.0\n469,532,7.5\n469,533,7.0\n469,534,6.5\n469,535,6.0\n469,536,5.5\n469,537,5.0\n469,538,4.5\n469,539,4.0\n469,540,3.5\n469,541,3.0\n469,542,2.5\n469,543,2.0\n469,544,1.5\n469,545,2.0\n469,546,2.5\n469,547,3.0\n469,548,3.5\n469,549,4.0\n469,550,11.5\n469,551,11.0\n469,552,10.5\n469,553,10.0\n469,554,9.5\n469,555,9.0\n469,556,8.5\n469,557,8.0\n469,558,7.5\n469,559,7.0\n469,560,6.5\n469,561,6.0\n469,562,5.5\n469,563,5.0\n469,564,4.5\n469,565,4.0\n469,566,3.5\n469,567,3.0\n469,568,2.5\n469,569,2.0\n469,570,2.5\n469,571,3.0\n469,572,3.5\n469,573,4.0\n469,574,4.5\n469,575,12.0\n469,576,11.5\n469,577,11.0\n469,578,10.5\n469,579,10.0\n469,580,9.5\n469,581,9.0\n469,582,8.5\n469,583,8.0\n469,584,7.5\n469,585,7.0\n469,586,6.5\n469,587,6.0\n469,588,5.5\n469,589,5.0\n469,590,4.5\n469,591,4.0\n469,592,3.5\n469,593,3.0\n469,594,2.5\n469,595,3.0\n469,596,3.5\n469,597,4.0\n469,598,4.5\n469,599,5.0\n469,600,12.5\n469,601,12.0\n469,602,11.5\n469,603,11.0\n469,604,10.5\n469,605,10.0\n469,606,9.5\n469,607,9.0\n469,608,8.5\n469,609,8.0\n469,610,7.5\n469,611,7.0\n469,612,6.5\n469,613,6.0\n469,614,5.5\n469,615,5.0\n469,616,4.5\n469,617,4.0\n469,618,3.5\n469,619,3.0\n469,620,3.5\n469,621,4.0\n469,622,4.5\n469,623,5.0\n469,624,5.5\n470,0,19.0\n470,1,18.5\n470,2,18.0\n470,3,17.5\n470,4,17.0\n470,5,16.5\n470,6,16.0\n470,7,15.5\n470,8,15.0\n470,9,14.5\n470,10,14.0\n470,11,13.5\n470,12,13.0\n470,13,12.5\n470,14,12.0\n470,15,11.5\n470,16,11.0\n470,17,10.5\n470,18,10.0\n470,19,9.5\n470,20,9.0\n470,21,9.5\n470,22,10.0\n470,23,10.5\n470,24,11.0\n470,25,18.5\n470,26,18.0\n470,27,17.5\n470,28,17.0\n470,29,16.5\n470,30,16.0\n470,31,15.5\n470,32,15.0\n470,33,14.5\n470,34,14.0\n470,35,13.5\n470,36,13.0\n470,37,12.5\n470,38,12.0\n470,39,11.5\n470,40,11.0\n470,41,10.5\n470,42,10.0\n470,43,9.5\n470,44,9.0\n470,45,8.5\n470,46,9.0\n470,47,9.5\n470,48,10.0\n470,49,10.5\n470,50,18.0\n470,51,17.5\n470,52,17.0\n470,53,16.5\n470,54,16.0\n470,55,15.5\n470,56,15.0\n470,57,14.5\n470,58,14.0\n470,59,13.5\n470,60,13.0\n470,61,12.5\n470,62,12.0\n470,63,11.5\n470,64,11.0\n470,65,10.5\n470,66,10.0\n470,67,9.5\n470,68,9.0\n470,69,8.5\n470,70,8.0\n470,71,8.5\n470,72,9.0\n470,73,9.5\n470,74,10.0\n470,75,17.5\n470,76,17.0\n470,77,16.5\n470,78,16.0\n470,79,15.5\n470,80,15.0\n470,81,14.5\n470,82,14.0\n470,83,13.5\n470,84,13.0\n470,85,12.5\n470,86,12.0\n470,87,11.5\n470,88,11.0\n470,89,10.5\n470,90,10.0\n470,91,9.5\n470,92,9.0\n470,93,8.5\n470,94,8.0\n470,95,7.5\n470,96,8.0\n470,97,8.5\n470,98,9.0\n470,99,9.5\n470,100,17.0\n470,101,16.5\n470,102,16.0\n470,103,15.5\n470,104,15.0\n470,105,14.5\n470,106,14.0\n470,107,13.5\n470,108,13.0\n470,109,12.5\n470,110,12.0\n470,111,11.5\n470,112,11.0\n470,113,10.5\n470,114,10.0\n470,115,9.5\n470,116,9.0\n470,117,8.5\n470,118,8.0\n470,119,7.5\n470,120,7.0\n470,121,7.5\n470,122,8.0\n470,123,8.5\n470,124,9.0\n470,125,16.5\n470,126,16.0\n470,127,15.5\n470,128,15.0\n470,129,14.5\n470,130,14.0\n470,131,13.5\n470,132,13.0\n470,133,12.5\n470,134,12.0\n470,135,11.5\n470,136,11.0\n470,137,10.5\n470,138,10.0\n470,139,9.5\n470,140,9.0\n470,141,8.5\n470,142,8.0\n470,143,7.5\n470,144,7.0\n470,145,6.5\n470,146,7.0\n470,147,7.5\n470,148,8.0\n470,149,8.5\n470,150,16.0\n470,151,15.5\n470,152,15.0\n470,153,14.5\n470,154,14.0\n470,155,13.5\n470,156,13.0\n470,157,12.5\n470,158,12.0\n470,159,11.5\n470,160,11.0\n470,161,10.5\n470,162,10.0\n470,163,9.5\n470,164,9.0\n470,165,8.5\n470,166,8.0\n470,167,7.5\n470,168,7.0\n470,169,6.5\n470,170,6.0\n470,171,6.5\n470,172,7.0\n470,173,7.5\n470,174,8.0\n470,175,15.5\n470,176,15.0\n470,177,14.5\n470,178,14.0\n470,179,13.5\n470,180,13.0\n470,181,12.5\n470,182,12.0\n470,183,11.5\n470,184,11.0\n470,185,10.5\n470,186,10.0\n470,187,9.5\n470,188,9.0\n470,189,8.5\n470,190,8.0\n470,191,7.5\n470,192,7.0\n470,193,6.5\n470,194,6.0\n470,195,5.5\n470,196,6.0\n470,197,6.5\n470,198,7.0\n470,199,7.5\n470,200,15.0\n470,201,14.5\n470,202,14.0\n470,203,13.5\n470,204,13.0\n470,205,12.5\n470,206,12.0\n470,207,11.5\n470,208,11.0\n470,209,10.5\n470,210,10.0\n470,211,9.5\n470,212,9.0\n470,213,8.5\n470,214,8.0\n470,215,7.5\n470,216,7.0\n470,217,6.5\n470,218,6.0\n470,219,5.5\n470,220,5.0\n470,221,5.5\n470,222,6.0\n470,223,6.5\n470,224,7.0\n470,225,14.5\n470,226,14.0\n470,227,13.5\n470,228,13.0\n470,229,12.5\n470,230,12.0\n470,231,11.5\n470,232,11.0\n470,233,10.5\n470,234,10.0\n470,235,9.5\n470,236,9.0\n470,237,8.5\n470,238,8.0\n470,239,7.5\n470,240,7.0\n470,241,6.5\n470,242,6.0\n470,243,5.5\n470,244,5.0\n470,245,4.5\n470,246,5.0\n470,247,5.5\n470,248,6.0\n470,249,6.5\n470,250,14.0\n470,251,13.5\n470,252,13.0\n470,253,12.5\n470,254,12.0\n470,255,11.5\n470,256,11.0\n470,257,10.5\n470,258,10.0\n470,259,9.5\n470,260,9.0\n470,261,8.5\n470,262,8.0\n470,263,7.5\n470,264,7.0\n470,265,6.5\n470,266,6.0\n470,267,5.5\n470,268,5.0\n470,269,4.5\n470,270,4.0\n470,271,4.5\n470,272,5.0\n470,273,5.5\n470,274,6.0\n470,275,13.5\n470,276,13.0\n470,277,12.5\n470,278,12.0\n470,279,11.5\n470,280,11.0\n470,281,10.5\n470,282,10.0\n470,283,9.5\n470,284,9.0\n470,285,8.5\n470,286,8.0\n470,287,7.5\n470,288,7.0\n470,289,6.5\n470,290,6.0\n470,291,5.5\n470,292,5.0\n470,293,4.5\n470,294,4.0\n470,295,3.5\n470,296,4.0\n470,297,4.5\n470,298,5.0\n470,299,5.5\n470,300,13.0\n470,301,12.5\n470,302,12.0\n470,303,11.5\n470,304,11.0\n470,305,10.5\n470,306,10.0\n470,307,9.5\n470,308,9.0\n470,309,8.5\n470,310,8.0\n470,311,7.5\n470,312,7.0\n470,313,6.5\n470,314,6.0\n470,315,5.5\n470,316,5.0\n470,317,4.5\n470,318,4.0\n470,319,3.5\n470,320,3.0\n470,321,3.5\n470,322,4.0\n470,323,4.5\n470,324,5.0\n470,325,12.5\n470,326,12.0\n470,327,11.5\n470,328,11.0\n470,329,10.5\n470,330,10.0\n470,331,9.5\n470,332,9.0\n470,333,8.5\n470,334,8.0\n470,335,7.5\n470,336,7.0\n470,337,6.5\n470,338,6.0\n470,339,5.5\n470,340,5.0\n470,341,4.5\n470,342,4.0\n470,343,3.5\n470,344,3.0\n470,345,2.5\n470,346,3.0\n470,347,3.5\n470,348,4.0\n470,349,4.5\n470,350,12.0\n470,351,11.5\n470,352,11.0\n470,353,10.5\n470,354,10.0\n470,355,9.5\n470,356,9.0\n470,357,8.5\n470,358,8.0\n470,359,7.5\n470,360,7.0\n470,361,6.5\n470,362,6.0\n470,363,5.5\n470,364,5.0\n470,365,4.5\n470,366,4.0\n470,367,3.5\n470,368,3.0\n470,369,2.5\n470,370,2.0\n470,371,2.5\n470,372,3.0\n470,373,3.5\n470,374,4.0\n470,375,11.5\n470,376,11.0\n470,377,10.5\n470,378,10.0\n470,379,9.5\n470,380,9.0\n470,381,8.5\n470,382,8.0\n470,383,7.5\n470,384,7.0\n470,385,6.5\n470,386,6.0\n470,387,5.5\n470,388,5.0\n470,389,4.5\n470,390,4.0\n470,391,3.5\n470,392,3.0\n470,393,2.5\n470,394,2.0\n470,395,1.5\n470,396,2.0\n470,397,2.5\n470,398,3.0\n470,399,3.5\n470,400,11.0\n470,401,10.5\n470,402,10.0\n470,403,9.5\n470,404,9.0\n470,405,8.5\n470,406,8.0\n470,407,7.5\n470,408,7.0\n470,409,6.5\n470,410,6.0\n470,411,5.5\n470,412,5.0\n470,413,4.5\n470,414,4.0\n470,415,3.5\n470,416,3.0\n470,417,2.5\n470,418,2.0\n470,419,1.5\n470,420,1.0\n470,421,1.5\n470,422,2.0\n470,423,2.5\n470,424,3.0\n470,425,10.5\n470,426,10.0\n470,427,9.5\n470,428,9.0\n470,429,8.5\n470,430,8.0\n470,431,7.5\n470,432,7.0\n470,433,6.5\n470,434,6.0\n470,435,5.5\n470,436,5.0\n470,437,4.5\n470,438,4.0\n470,439,3.5\n470,440,3.0\n470,441,2.5\n470,442,2.0\n470,443,1.5\n470,444,1.0\n470,445,0.5\n470,446,1.0\n470,447,1.5\n470,448,2.0\n470,449,2.5\n470,450,10.0\n470,451,9.5\n470,452,9.0\n470,453,8.5\n470,454,8.0\n470,455,7.5\n470,456,7.0\n470,457,6.5\n470,458,6.0\n470,459,5.5\n470,460,5.0\n470,461,4.5\n470,462,4.0\n470,463,3.5\n470,464,3.0\n470,465,2.5\n470,466,2.0\n470,467,1.5\n470,468,1.0\n470,469,0.5\n470,470,0\n470,471,0.5\n470,472,1.0\n470,473,1.5\n470,474,2.0\n470,475,10.5\n470,476,10.0\n470,477,9.5\n470,478,9.0\n470,479,8.5\n470,480,8.0\n470,481,7.5\n470,482,7.0\n470,483,6.5\n470,484,6.0\n470,485,5.5\n470,486,5.0\n470,487,4.5\n470,488,4.0\n470,489,3.5\n470,490,3.0\n470,491,2.5\n470,492,2.0\n470,493,1.5\n470,494,1.0\n470,495,0.5\n470,496,1.0\n470,497,1.5\n470,498,2.0\n470,499,2.5\n470,500,11.0\n470,501,10.5\n470,502,10.0\n470,503,9.5\n470,504,9.0\n470,505,8.5\n470,506,8.0\n470,507,7.5\n470,508,7.0\n470,509,6.5\n470,510,6.0\n470,511,5.5\n470,512,5.0\n470,513,4.5\n470,514,4.0\n470,515,3.5\n470,516,3.0\n470,517,2.5\n470,518,2.0\n470,519,1.5\n470,520,1.0\n470,521,1.5\n470,522,2.0\n470,523,2.5\n470,524,3.0\n470,525,11.5\n470,526,11.0\n470,527,10.5\n470,528,10.0\n470,529,9.5\n470,530,9.0\n470,531,8.5\n470,532,8.0\n470,533,7.5\n470,534,7.0\n470,535,6.5\n470,536,6.0\n470,537,5.5\n470,538,5.0\n470,539,4.5\n470,540,4.0\n470,541,3.5\n470,542,3.0\n470,543,2.5\n470,544,2.0\n470,545,1.5\n470,546,2.0\n470,547,2.5\n470,548,3.0\n470,549,3.5\n470,550,12.0\n470,551,11.5\n470,552,11.0\n470,553,10.5\n470,554,10.0\n470,555,9.5\n470,556,9.0\n470,557,8.5\n470,558,8.0\n470,559,7.5\n470,560,7.0\n470,561,6.5\n470,562,6.0\n470,563,5.5\n470,564,5.0\n470,565,4.5\n470,566,4.0\n470,567,3.5\n470,568,3.0\n470,569,2.5\n470,570,2.0\n470,571,2.5\n470,572,3.0\n470,573,3.5\n470,574,4.0\n470,575,12.5\n470,576,12.0\n470,577,11.5\n470,578,11.0\n470,579,10.5\n470,580,10.0\n470,581,9.5\n470,582,9.0\n470,583,8.5\n470,584,8.0\n470,585,7.5\n470,586,7.0\n470,587,6.5\n470,588,6.0\n470,589,5.5\n470,590,5.0\n470,591,4.5\n470,592,4.0\n470,593,3.5\n470,594,3.0\n470,595,2.5\n470,596,3.0\n470,597,3.5\n470,598,4.0\n470,599,4.5\n470,600,13.0\n470,601,12.5\n470,602,12.0\n470,603,11.5\n470,604,11.0\n470,605,10.5\n470,606,10.0\n470,607,9.5\n470,608,9.0\n470,609,8.5\n470,610,8.0\n470,611,7.5\n470,612,7.0\n470,613,6.5\n470,614,6.0\n470,615,5.5\n470,616,5.0\n470,617,4.5\n470,618,4.0\n470,619,3.5\n470,620,3.0\n470,621,3.5\n470,622,4.0\n470,623,4.5\n470,624,5.0\n471,0,19.5\n471,1,19.0\n471,2,18.5\n471,3,18.0\n471,4,17.5\n471,5,17.0\n471,6,16.5\n471,7,16.0\n471,8,15.5\n471,9,15.0\n471,10,14.5\n471,11,14.0\n471,12,13.5\n471,13,13.0\n471,14,12.5\n471,15,12.0\n471,16,11.5\n471,17,11.0\n471,18,10.5\n471,19,10.0\n471,20,9.5\n471,21,9.0\n471,22,9.5\n471,23,10.0\n471,24,10.5\n471,25,19.0\n471,26,18.5\n471,27,18.0\n471,28,17.5\n471,29,17.0\n471,30,16.5\n471,31,16.0\n471,32,15.5\n471,33,15.0\n471,34,14.5\n471,35,14.0\n471,36,13.5\n471,37,13.0\n471,38,12.5\n471,39,12.0\n471,40,11.5\n471,41,11.0\n471,42,10.5\n471,43,10.0\n471,44,9.5\n471,45,9.0\n471,46,8.5\n471,47,9.0\n471,48,9.5\n471,49,10.0\n471,50,18.5\n471,51,18.0\n471,52,17.5\n471,53,17.0\n471,54,16.5\n471,55,16.0\n471,56,15.5\n471,57,15.0\n471,58,14.5\n471,59,14.0\n471,60,13.5\n471,61,13.0\n471,62,12.5\n471,63,12.0\n471,64,11.5\n471,65,11.0\n471,66,10.5\n471,67,10.0\n471,68,9.5\n471,69,9.0\n471,70,8.5\n471,71,8.0\n471,72,8.5\n471,73,9.0\n471,74,9.5\n471,75,18.0\n471,76,17.5\n471,77,17.0\n471,78,16.5\n471,79,16.0\n471,80,15.5\n471,81,15.0\n471,82,14.5\n471,83,14.0\n471,84,13.5\n471,85,13.0\n471,86,12.5\n471,87,12.0\n471,88,11.5\n471,89,11.0\n471,90,10.5\n471,91,10.0\n471,92,9.5\n471,93,9.0\n471,94,8.5\n471,95,8.0\n471,96,7.5\n471,97,8.0\n471,98,8.5\n471,99,9.0\n471,100,17.5\n471,101,17.0\n471,102,16.5\n471,103,16.0\n471,104,15.5\n471,105,15.0\n471,106,14.5\n471,107,14.0\n471,108,13.5\n471,109,13.0\n471,110,12.5\n471,111,12.0\n471,112,11.5\n471,113,11.0\n471,114,10.5\n471,115,10.0\n471,116,9.5\n471,117,9.0\n471,118,8.5\n471,119,8.0\n471,120,7.5\n471,121,7.0\n471,122,7.5\n471,123,8.0\n471,124,8.5\n471,125,17.0\n471,126,16.5\n471,127,16.0\n471,128,15.5\n471,129,15.0\n471,130,14.5\n471,131,14.0\n471,132,13.5\n471,133,13.0\n471,134,12.5\n471,135,12.0\n471,136,11.5\n471,137,11.0\n471,138,10.5\n471,139,10.0\n471,140,9.5\n471,141,9.0\n471,142,8.5\n471,143,8.0\n471,144,7.5\n471,145,7.0\n471,146,6.5\n471,147,7.0\n471,148,7.5\n471,149,8.0\n471,150,16.5\n471,151,16.0\n471,152,15.5\n471,153,15.0\n471,154,14.5\n471,155,14.0\n471,156,13.5\n471,157,13.0\n471,158,12.5\n471,159,12.0\n471,160,11.5\n471,161,11.0\n471,162,10.5\n471,163,10.0\n471,164,9.5\n471,165,9.0\n471,166,8.5\n471,167,8.0\n471,168,7.5\n471,169,7.0\n471,170,6.5\n471,171,6.0\n471,172,6.5\n471,173,7.0\n471,174,7.5\n471,175,16.0\n471,176,15.5\n471,177,15.0\n471,178,14.5\n471,179,14.0\n471,180,13.5\n471,181,13.0\n471,182,12.5\n471,183,12.0\n471,184,11.5\n471,185,11.0\n471,186,10.5\n471,187,10.0\n471,188,9.5\n471,189,9.0\n471,190,8.5\n471,191,8.0\n471,192,7.5\n471,193,7.0\n471,194,6.5\n471,195,6.0\n471,196,5.5\n471,197,6.0\n471,198,6.5\n471,199,7.0\n471,200,15.5\n471,201,15.0\n471,202,14.5\n471,203,14.0\n471,204,13.5\n471,205,13.0\n471,206,12.5\n471,207,12.0\n471,208,11.5\n471,209,11.0\n471,210,10.5\n471,211,10.0\n471,212,9.5\n471,213,9.0\n471,214,8.5\n471,215,8.0\n471,216,7.5\n471,217,7.0\n471,218,6.5\n471,219,6.0\n471,220,5.5\n471,221,5.0\n471,222,5.5\n471,223,6.0\n471,224,6.5\n471,225,15.0\n471,226,14.5\n471,227,14.0\n471,228,13.5\n471,229,13.0\n471,230,12.5\n471,231,12.0\n471,232,11.5\n471,233,11.0\n471,234,10.5\n471,235,10.0\n471,236,9.5\n471,237,9.0\n471,238,8.5\n471,239,8.0\n471,240,7.5\n471,241,7.0\n471,242,6.5\n471,243,6.0\n471,244,5.5\n471,245,5.0\n471,246,4.5\n471,247,5.0\n471,248,5.5\n471,249,6.0\n471,250,14.5\n471,251,14.0\n471,252,13.5\n471,253,13.0\n471,254,12.5\n471,255,12.0\n471,256,11.5\n471,257,11.0\n471,258,10.5\n471,259,10.0\n471,260,9.5\n471,261,9.0\n471,262,8.5\n471,263,8.0\n471,264,7.5\n471,265,7.0\n471,266,6.5\n471,267,6.0\n471,268,5.5\n471,269,5.0\n471,270,4.5\n471,271,4.0\n471,272,4.5\n471,273,5.0\n471,274,5.5\n471,275,14.0\n471,276,13.5\n471,277,13.0\n471,278,12.5\n471,279,12.0\n471,280,11.5\n471,281,11.0\n471,282,10.5\n471,283,10.0\n471,284,9.5\n471,285,9.0\n471,286,8.5\n471,287,8.0\n471,288,7.5\n471,289,7.0\n471,290,6.5\n471,291,6.0\n471,292,5.5\n471,293,5.0\n471,294,4.5\n471,295,4.0\n471,296,3.5\n471,297,4.0\n471,298,4.5\n471,299,5.0\n471,300,13.5\n471,301,13.0\n471,302,12.5\n471,303,12.0\n471,304,11.5\n471,305,11.0\n471,306,10.5\n471,307,10.0\n471,308,9.5\n471,309,9.0\n471,310,8.5\n471,311,8.0\n471,312,7.5\n471,313,7.0\n471,314,6.5\n471,315,6.0\n471,316,5.5\n471,317,5.0\n471,318,4.5\n471,319,4.0\n471,320,3.5\n471,321,3.0\n471,322,3.5\n471,323,4.0\n471,324,4.5\n471,325,13.0\n471,326,12.5\n471,327,12.0\n471,328,11.5\n471,329,11.0\n471,330,10.5\n471,331,10.0\n471,332,9.5\n471,333,9.0\n471,334,8.5\n471,335,8.0\n471,336,7.5\n471,337,7.0\n471,338,6.5\n471,339,6.0\n471,340,5.5\n471,341,5.0\n471,342,4.5\n471,343,4.0\n471,344,3.5\n471,345,3.0\n471,346,2.5\n471,347,3.0\n471,348,3.5\n471,349,4.0\n471,350,12.5\n471,351,12.0\n471,352,11.5\n471,353,11.0\n471,354,10.5\n471,355,10.0\n471,356,9.5\n471,357,9.0\n471,358,8.5\n471,359,8.0\n471,360,7.5\n471,361,7.0\n471,362,6.5\n471,363,6.0\n471,364,5.5\n471,365,5.0\n471,366,4.5\n471,367,4.0\n471,368,3.5\n471,369,3.0\n471,370,2.5\n471,371,2.0\n471,372,2.5\n471,373,3.0\n471,374,3.5\n471,375,12.0\n471,376,11.5\n471,377,11.0\n471,378,10.5\n471,379,10.0\n471,380,9.5\n471,381,9.0\n471,382,8.5\n471,383,8.0\n471,384,7.5\n471,385,7.0\n471,386,6.5\n471,387,6.0\n471,388,5.5\n471,389,5.0\n471,390,4.5\n471,391,4.0\n471,392,3.5\n471,393,3.0\n471,394,2.5\n471,395,2.0\n471,396,1.5\n471,397,2.0\n471,398,2.5\n471,399,3.0\n471,400,11.5\n471,401,11.0\n471,402,10.5\n471,403,10.0\n471,404,9.5\n471,405,9.0\n471,406,8.5\n471,407,8.0\n471,408,7.5\n471,409,7.0\n471,410,6.5\n471,411,6.0\n471,412,5.5\n471,413,5.0\n471,414,4.5\n471,415,4.0\n471,416,3.5\n471,417,3.0\n471,418,2.5\n471,419,2.0\n471,420,1.5\n471,421,1.0\n471,422,1.5\n471,423,2.0\n471,424,2.5\n471,425,11.0\n471,426,10.5\n471,427,10.0\n471,428,9.5\n471,429,9.0\n471,430,8.5\n471,431,8.0\n471,432,7.5\n471,433,7.0\n471,434,6.5\n471,435,6.0\n471,436,5.5\n471,437,5.0\n471,438,4.5\n471,439,4.0\n471,440,3.5\n471,441,3.0\n471,442,2.5\n471,443,2.0\n471,444,1.5\n471,445,1.0\n471,446,0.5\n471,447,1.0\n471,448,1.5\n471,449,2.0\n471,450,10.5\n471,451,10.0\n471,452,9.5\n471,453,9.0\n471,454,8.5\n471,455,8.0\n471,456,7.5\n471,457,7.0\n471,458,6.5\n471,459,6.0\n471,460,5.5\n471,461,5.0\n471,462,4.5\n471,463,4.0\n471,464,3.5\n471,465,3.0\n471,466,2.5\n471,467,2.0\n471,468,1.5\n471,469,1.0\n471,470,0.5\n471,471,0\n471,472,0.5\n471,473,1.0\n471,474,1.5\n471,475,11.0\n471,476,10.5\n471,477,10.0\n471,478,9.5\n471,479,9.0\n471,480,8.5\n471,481,8.0\n471,482,7.5\n471,483,7.0\n471,484,6.5\n471,485,6.0\n471,486,5.5\n471,487,5.0\n471,488,4.5\n471,489,4.0\n471,490,3.5\n471,491,3.0\n471,492,2.5\n471,493,2.0\n471,494,1.5\n471,495,1.0\n471,496,0.5\n471,497,1.0\n471,498,1.5\n471,499,2.0\n471,500,11.5\n471,501,11.0\n471,502,10.5\n471,503,10.0\n471,504,9.5\n471,505,9.0\n471,506,8.5\n471,507,8.0\n471,508,7.5\n471,509,7.0\n471,510,6.5\n471,511,6.0\n471,512,5.5\n471,513,5.0\n471,514,4.5\n471,515,4.0\n471,516,3.5\n471,517,3.0\n471,518,2.5\n471,519,2.0\n471,520,1.5\n471,521,1.0\n471,522,1.5\n471,523,2.0\n471,524,2.5\n471,525,12.0\n471,526,11.5\n471,527,11.0\n471,528,10.5\n471,529,10.0\n471,530,9.5\n471,531,9.0\n471,532,8.5\n471,533,8.0\n471,534,7.5\n471,535,7.0\n471,536,6.5\n471,537,6.0\n471,538,5.5\n471,539,5.0\n471,540,4.5\n471,541,4.0\n471,542,3.5\n471,543,3.0\n471,544,2.5\n471,545,2.0\n471,546,1.5\n471,547,2.0\n471,548,2.5\n471,549,3.0\n471,550,12.5\n471,551,12.0\n471,552,11.5\n471,553,11.0\n471,554,10.5\n471,555,10.0\n471,556,9.5\n471,557,9.0\n471,558,8.5\n471,559,8.0\n471,560,7.5\n471,561,7.0\n471,562,6.5\n471,563,6.0\n471,564,5.5\n471,565,5.0\n471,566,4.5\n471,567,4.0\n471,568,3.5\n471,569,3.0\n471,570,2.5\n471,571,2.0\n471,572,2.5\n471,573,3.0\n471,574,3.5\n471,575,13.0\n471,576,12.5\n471,577,12.0\n471,578,11.5\n471,579,11.0\n471,580,10.5\n471,581,10.0\n471,582,9.5\n471,583,9.0\n471,584,8.5\n471,585,8.0\n471,586,7.5\n471,587,7.0\n471,588,6.5\n471,589,6.0\n471,590,5.5\n471,591,5.0\n471,592,4.5\n471,593,4.0\n471,594,3.5\n471,595,3.0\n471,596,2.5\n471,597,3.0\n471,598,3.5\n471,599,4.0\n471,600,13.5\n471,601,13.0\n471,602,12.5\n471,603,12.0\n471,604,11.5\n471,605,11.0\n471,606,10.5\n471,607,10.0\n471,608,9.5\n471,609,9.0\n471,610,8.5\n471,611,8.0\n471,612,7.5\n471,613,7.0\n471,614,6.5\n471,615,6.0\n471,616,5.5\n471,617,5.0\n471,618,4.5\n471,619,4.0\n471,620,3.5\n471,621,3.0\n471,622,3.5\n471,623,4.0\n471,624,4.5\n472,0,20.0\n472,1,19.5\n472,2,19.0\n472,3,18.5\n472,4,18.0\n472,5,17.5\n472,6,17.0\n472,7,16.5\n472,8,16.0\n472,9,15.5\n472,10,15.0\n472,11,14.5\n472,12,14.0\n472,13,13.5\n472,14,13.0\n472,15,12.5\n472,16,12.0\n472,17,11.5\n472,18,11.0\n472,19,10.5\n472,20,10.0\n472,21,9.5\n472,22,9.0\n472,23,9.5\n472,24,10.0\n472,25,19.5\n472,26,19.0\n472,27,18.5\n472,28,18.0\n472,29,17.5\n472,30,17.0\n472,31,16.5\n472,32,16.0\n472,33,15.5\n472,34,15.0\n472,35,14.5\n472,36,14.0\n472,37,13.5\n472,38,13.0\n472,39,12.5\n472,40,12.0\n472,41,11.5\n472,42,11.0\n472,43,10.5\n472,44,10.0\n472,45,9.5\n472,46,9.0\n472,47,8.5\n472,48,9.0\n472,49,9.5\n472,50,19.0\n472,51,18.5\n472,52,18.0\n472,53,17.5\n472,54,17.0\n472,55,16.5\n472,56,16.0\n472,57,15.5\n472,58,15.0\n472,59,14.5\n472,60,14.0\n472,61,13.5\n472,62,13.0\n472,63,12.5\n472,64,12.0\n472,65,11.5\n472,66,11.0\n472,67,10.5\n472,68,10.0\n472,69,9.5\n472,70,9.0\n472,71,8.5\n472,72,8.0\n472,73,8.5\n472,74,9.0\n472,75,18.5\n472,76,18.0\n472,77,17.5\n472,78,17.0\n472,79,16.5\n472,80,16.0\n472,81,15.5\n472,82,15.0\n472,83,14.5\n472,84,14.0\n472,85,13.5\n472,86,13.0\n472,87,12.5\n472,88,12.0\n472,89,11.5\n472,90,11.0\n472,91,10.5\n472,92,10.0\n472,93,9.5\n472,94,9.0\n472,95,8.5\n472,96,8.0\n472,97,7.5\n472,98,8.0\n472,99,8.5\n472,100,18.0\n472,101,17.5\n472,102,17.0\n472,103,16.5\n472,104,16.0\n472,105,15.5\n472,106,15.0\n472,107,14.5\n472,108,14.0\n472,109,13.5\n472,110,13.0\n472,111,12.5\n472,112,12.0\n472,113,11.5\n472,114,11.0\n472,115,10.5\n472,116,10.0\n472,117,9.5\n472,118,9.0\n472,119,8.5\n472,120,8.0\n472,121,7.5\n472,122,7.0\n472,123,7.5\n472,124,8.0\n472,125,17.5\n472,126,17.0\n472,127,16.5\n472,128,16.0\n472,129,15.5\n472,130,15.0\n472,131,14.5\n472,132,14.0\n472,133,13.5\n472,134,13.0\n472,135,12.5\n472,136,12.0\n472,137,11.5\n472,138,11.0\n472,139,10.5\n472,140,10.0\n472,141,9.5\n472,142,9.0\n472,143,8.5\n472,144,8.0\n472,145,7.5\n472,146,7.0\n472,147,6.5\n472,148,7.0\n472,149,7.5\n472,150,17.0\n472,151,16.5\n472,152,16.0\n472,153,15.5\n472,154,15.0\n472,155,14.5\n472,156,14.0\n472,157,13.5\n472,158,13.0\n472,159,12.5\n472,160,12.0\n472,161,11.5\n472,162,11.0\n472,163,10.5\n472,164,10.0\n472,165,9.5\n472,166,9.0\n472,167,8.5\n472,168,8.0\n472,169,7.5\n472,170,7.0\n472,171,6.5\n472,172,6.0\n472,173,6.5\n472,174,7.0\n472,175,16.5\n472,176,16.0\n472,177,15.5\n472,178,15.0\n472,179,14.5\n472,180,14.0\n472,181,13.5\n472,182,13.0\n472,183,12.5\n472,184,12.0\n472,185,11.5\n472,186,11.0\n472,187,10.5\n472,188,10.0\n472,189,9.5\n472,190,9.0\n472,191,8.5\n472,192,8.0\n472,193,7.5\n472,194,7.0\n472,195,6.5\n472,196,6.0\n472,197,5.5\n472,198,6.0\n472,199,6.5\n472,200,16.0\n472,201,15.5\n472,202,15.0\n472,203,14.5\n472,204,14.0\n472,205,13.5\n472,206,13.0\n472,207,12.5\n472,208,12.0\n472,209,11.5\n472,210,11.0\n472,211,10.5\n472,212,10.0\n472,213,9.5\n472,214,9.0\n472,215,8.5\n472,216,8.0\n472,217,7.5\n472,218,7.0\n472,219,6.5\n472,220,6.0\n472,221,5.5\n472,222,5.0\n472,223,5.5\n472,224,6.0\n472,225,15.5\n472,226,15.0\n472,227,14.5\n472,228,14.0\n472,229,13.5\n472,230,13.0\n472,231,12.5\n472,232,12.0\n472,233,11.5\n472,234,11.0\n472,235,10.5\n472,236,10.0\n472,237,9.5\n472,238,9.0\n472,239,8.5\n472,240,8.0\n472,241,7.5\n472,242,7.0\n472,243,6.5\n472,244,6.0\n472,245,5.5\n472,246,5.0\n472,247,4.5\n472,248,5.0\n472,249,5.5\n472,250,15.0\n472,251,14.5\n472,252,14.0\n472,253,13.5\n472,254,13.0\n472,255,12.5\n472,256,12.0\n472,257,11.5\n472,258,11.0\n472,259,10.5\n472,260,10.0\n472,261,9.5\n472,262,9.0\n472,263,8.5\n472,264,8.0\n472,265,7.5\n472,266,7.0\n472,267,6.5\n472,268,6.0\n472,269,5.5\n472,270,5.0\n472,271,4.5\n472,272,4.0\n472,273,4.5\n472,274,5.0\n472,275,14.5\n472,276,14.0\n472,277,13.5\n472,278,13.0\n472,279,12.5\n472,280,12.0\n472,281,11.5\n472,282,11.0\n472,283,10.5\n472,284,10.0\n472,285,9.5\n472,286,9.0\n472,287,8.5\n472,288,8.0\n472,289,7.5\n472,290,7.0\n472,291,6.5\n472,292,6.0\n472,293,5.5\n472,294,5.0\n472,295,4.5\n472,296,4.0\n472,297,3.5\n472,298,4.0\n472,299,4.5\n472,300,14.0\n472,301,13.5\n472,302,13.0\n472,303,12.5\n472,304,12.0\n472,305,11.5\n472,306,11.0\n472,307,10.5\n472,308,10.0\n472,309,9.5\n472,310,9.0\n472,311,8.5\n472,312,8.0\n472,313,7.5\n472,314,7.0\n472,315,6.5\n472,316,6.0\n472,317,5.5\n472,318,5.0\n472,319,4.5\n472,320,4.0\n472,321,3.5\n472,322,3.0\n472,323,3.5\n472,324,4.0\n472,325,13.5\n472,326,13.0\n472,327,12.5\n472,328,12.0\n472,329,11.5\n472,330,11.0\n472,331,10.5\n472,332,10.0\n472,333,9.5\n472,334,9.0\n472,335,8.5\n472,336,8.0\n472,337,7.5\n472,338,7.0\n472,339,6.5\n472,340,6.0\n472,341,5.5\n472,342,5.0\n472,343,4.5\n472,344,4.0\n472,345,3.5\n472,346,3.0\n472,347,2.5\n472,348,3.0\n472,349,3.5\n472,350,13.0\n472,351,12.5\n472,352,12.0\n472,353,11.5\n472,354,11.0\n472,355,10.5\n472,356,10.0\n472,357,9.5\n472,358,9.0\n472,359,8.5\n472,360,8.0\n472,361,7.5\n472,362,7.0\n472,363,6.5\n472,364,6.0\n472,365,5.5\n472,366,5.0\n472,367,4.5\n472,368,4.0\n472,369,3.5\n472,370,3.0\n472,371,2.5\n472,372,2.0\n472,373,2.5\n472,374,3.0\n472,375,12.5\n472,376,12.0\n472,377,11.5\n472,378,11.0\n472,379,10.5\n472,380,10.0\n472,381,9.5\n472,382,9.0\n472,383,8.5\n472,384,8.0\n472,385,7.5\n472,386,7.0\n472,387,6.5\n472,388,6.0\n472,389,5.5\n472,390,5.0\n472,391,4.5\n472,392,4.0\n472,393,3.5\n472,394,3.0\n472,395,2.5\n472,396,2.0\n472,397,1.5\n472,398,2.0\n472,399,2.5\n472,400,12.0\n472,401,11.5\n472,402,11.0\n472,403,10.5\n472,404,10.0\n472,405,9.5\n472,406,9.0\n472,407,8.5\n472,408,8.0\n472,409,7.5\n472,410,7.0\n472,411,6.5\n472,412,6.0\n472,413,5.5\n472,414,5.0\n472,415,4.5\n472,416,4.0\n472,417,3.5\n472,418,3.0\n472,419,2.5\n472,420,2.0\n472,421,1.5\n472,422,1.0\n472,423,1.5\n472,424,2.0\n472,425,11.5\n472,426,11.0\n472,427,10.5\n472,428,10.0\n472,429,9.5\n472,430,9.0\n472,431,8.5\n472,432,8.0\n472,433,7.5\n472,434,7.0\n472,435,6.5\n472,436,6.0\n472,437,5.5\n472,438,5.0\n472,439,4.5\n472,440,4.0\n472,441,3.5\n472,442,3.0\n472,443,2.5\n472,444,2.0\n472,445,1.5\n472,446,1.0\n472,447,0.5\n472,448,1.0\n472,449,1.5\n472,450,11.0\n472,451,10.5\n472,452,10.0\n472,453,9.5\n472,454,9.0\n472,455,8.5\n472,456,8.0\n472,457,7.5\n472,458,7.0\n472,459,6.5\n472,460,6.0\n472,461,5.5\n472,462,5.0\n472,463,4.5\n472,464,4.0\n472,465,3.5\n472,466,3.0\n472,467,2.5\n472,468,2.0\n472,469,1.5\n472,470,1.0\n472,471,0.5\n472,472,0\n472,473,0.5\n472,474,1.0\n472,475,11.5\n472,476,11.0\n472,477,10.5\n472,478,10.0\n472,479,9.5\n472,480,9.0\n472,481,8.5\n472,482,8.0\n472,483,7.5\n472,484,7.0\n472,485,6.5\n472,486,6.0\n472,487,5.5\n472,488,5.0\n472,489,4.5\n472,490,4.0\n472,491,3.5\n472,492,3.0\n472,493,2.5\n472,494,2.0\n472,495,1.5\n472,496,1.0\n472,497,0.5\n472,498,1.0\n472,499,1.5\n472,500,12.0\n472,501,11.5\n472,502,11.0\n472,503,10.5\n472,504,10.0\n472,505,9.5\n472,506,9.0\n472,507,8.5\n472,508,8.0\n472,509,7.5\n472,510,7.0\n472,511,6.5\n472,512,6.0\n472,513,5.5\n472,514,5.0\n472,515,4.5\n472,516,4.0\n472,517,3.5\n472,518,3.0\n472,519,2.5\n472,520,2.0\n472,521,1.5\n472,522,1.0\n472,523,1.5\n472,524,2.0\n472,525,12.5\n472,526,12.0\n472,527,11.5\n472,528,11.0\n472,529,10.5\n472,530,10.0\n472,531,9.5\n472,532,9.0\n472,533,8.5\n472,534,8.0\n472,535,7.5\n472,536,7.0\n472,537,6.5\n472,538,6.0\n472,539,5.5\n472,540,5.0\n472,541,4.5\n472,542,4.0\n472,543,3.5\n472,544,3.0\n472,545,2.5\n472,546,2.0\n472,547,1.5\n472,548,2.0\n472,549,2.5\n472,550,13.0\n472,551,12.5\n472,552,12.0\n472,553,11.5\n472,554,11.0\n472,555,10.5\n472,556,10.0\n472,557,9.5\n472,558,9.0\n472,559,8.5\n472,560,8.0\n472,561,7.5\n472,562,7.0\n472,563,6.5\n472,564,6.0\n472,565,5.5\n472,566,5.0\n472,567,4.5\n472,568,4.0\n472,569,3.5\n472,570,3.0\n472,571,2.5\n472,572,2.0\n472,573,2.5\n472,574,3.0\n472,575,13.5\n472,576,13.0\n472,577,12.5\n472,578,12.0\n472,579,11.5\n472,580,11.0\n472,581,10.5\n472,582,10.0\n472,583,9.5\n472,584,9.0\n472,585,8.5\n472,586,8.0\n472,587,7.5\n472,588,7.0\n472,589,6.5\n472,590,6.0\n472,591,5.5\n472,592,5.0\n472,593,4.5\n472,594,4.0\n472,595,3.5\n472,596,3.0\n472,597,2.5\n472,598,3.0\n472,599,3.5\n472,600,14.0\n472,601,13.5\n472,602,13.0\n472,603,12.5\n472,604,12.0\n472,605,11.5\n472,606,11.0\n472,607,10.5\n472,608,10.0\n472,609,9.5\n472,610,9.0\n472,611,8.5\n472,612,8.0\n472,613,7.5\n472,614,7.0\n472,615,6.5\n472,616,6.0\n472,617,5.5\n472,618,5.0\n472,619,4.5\n472,620,4.0\n472,621,3.5\n472,622,3.0\n472,623,3.5\n472,624,4.0\n473,0,20.5\n473,1,20.0\n473,2,19.5\n473,3,19.0\n473,4,18.5\n473,5,18.0\n473,6,17.5\n473,7,17.0\n473,8,16.5\n473,9,16.0\n473,10,15.5\n473,11,15.0\n473,12,14.5\n473,13,14.0\n473,14,13.5\n473,15,13.0\n473,16,12.5\n473,17,12.0\n473,18,11.5\n473,19,11.0\n473,20,10.5\n473,21,10.0\n473,22,9.5\n473,23,9.0\n473,24,9.5\n473,25,20.0\n473,26,19.5\n473,27,19.0\n473,28,18.5\n473,29,18.0\n473,30,17.5\n473,31,17.0\n473,32,16.5\n473,33,16.0\n473,34,15.5\n473,35,15.0\n473,36,14.5\n473,37,14.0\n473,38,13.5\n473,39,13.0\n473,40,12.5\n473,41,12.0\n473,42,11.5\n473,43,11.0\n473,44,10.5\n473,45,10.0\n473,46,9.5\n473,47,9.0\n473,48,8.5\n473,49,9.0\n473,50,19.5\n473,51,19.0\n473,52,18.5\n473,53,18.0\n473,54,17.5\n473,55,17.0\n473,56,16.5\n473,57,16.0\n473,58,15.5\n473,59,15.0\n473,60,14.5\n473,61,14.0\n473,62,13.5\n473,63,13.0\n473,64,12.5\n473,65,12.0\n473,66,11.5\n473,67,11.0\n473,68,10.5\n473,69,10.0\n473,70,9.5\n473,71,9.0\n473,72,8.5\n473,73,8.0\n473,74,8.5\n473,75,19.0\n473,76,18.5\n473,77,18.0\n473,78,17.5\n473,79,17.0\n473,80,16.5\n473,81,16.0\n473,82,15.5\n473,83,15.0\n473,84,14.5\n473,85,14.0\n473,86,13.5\n473,87,13.0\n473,88,12.5\n473,89,12.0\n473,90,11.5\n473,91,11.0\n473,92,10.5\n473,93,10.0\n473,94,9.5\n473,95,9.0\n473,96,8.5\n473,97,8.0\n473,98,7.5\n473,99,8.0\n473,100,18.5\n473,101,18.0\n473,102,17.5\n473,103,17.0\n473,104,16.5\n473,105,16.0\n473,106,15.5\n473,107,15.0\n473,108,14.5\n473,109,14.0\n473,110,13.5\n473,111,13.0\n473,112,12.5\n473,113,12.0\n473,114,11.5\n473,115,11.0\n473,116,10.5\n473,117,10.0\n473,118,9.5\n473,119,9.0\n473,120,8.5\n473,121,8.0\n473,122,7.5\n473,123,7.0\n473,124,7.5\n473,125,18.0\n473,126,17.5\n473,127,17.0\n473,128,16.5\n473,129,16.0\n473,130,15.5\n473,131,15.0\n473,132,14.5\n473,133,14.0\n473,134,13.5\n473,135,13.0\n473,136,12.5\n473,137,12.0\n473,138,11.5\n473,139,11.0\n473,140,10.5\n473,141,10.0\n473,142,9.5\n473,143,9.0\n473,144,8.5\n473,145,8.0\n473,146,7.5\n473,147,7.0\n473,148,6.5\n473,149,7.0\n473,150,17.5\n473,151,17.0\n473,152,16.5\n473,153,16.0\n473,154,15.5\n473,155,15.0\n473,156,14.5\n473,157,14.0\n473,158,13.5\n473,159,13.0\n473,160,12.5\n473,161,12.0\n473,162,11.5\n473,163,11.0\n473,164,10.5\n473,165,10.0\n473,166,9.5\n473,167,9.0\n473,168,8.5\n473,169,8.0\n473,170,7.5\n473,171,7.0\n473,172,6.5\n473,173,6.0\n473,174,6.5\n473,175,17.0\n473,176,16.5\n473,177,16.0\n473,178,15.5\n473,179,15.0\n473,180,14.5\n473,181,14.0\n473,182,13.5\n473,183,13.0\n473,184,12.5\n473,185,12.0\n473,186,11.5\n473,187,11.0\n473,188,10.5\n473,189,10.0\n473,190,9.5\n473,191,9.0\n473,192,8.5\n473,193,8.0\n473,194,7.5\n473,195,7.0\n473,196,6.5\n473,197,6.0\n473,198,5.5\n473,199,6.0\n473,200,16.5\n473,201,16.0\n473,202,15.5\n473,203,15.0\n473,204,14.5\n473,205,14.0\n473,206,13.5\n473,207,13.0\n473,208,12.5\n473,209,12.0\n473,210,11.5\n473,211,11.0\n473,212,10.5\n473,213,10.0\n473,214,9.5\n473,215,9.0\n473,216,8.5\n473,217,8.0\n473,218,7.5\n473,219,7.0\n473,220,6.5\n473,221,6.0\n473,222,5.5\n473,223,5.0\n473,224,5.5\n473,225,16.0\n473,226,15.5\n473,227,15.0\n473,228,14.5\n473,229,14.0\n473,230,13.5\n473,231,13.0\n473,232,12.5\n473,233,12.0\n473,234,11.5\n473,235,11.0\n473,236,10.5\n473,237,10.0\n473,238,9.5\n473,239,9.0\n473,240,8.5\n473,241,8.0\n473,242,7.5\n473,243,7.0\n473,244,6.5\n473,245,6.0\n473,246,5.5\n473,247,5.0\n473,248,4.5\n473,249,5.0\n473,250,15.5\n473,251,15.0\n473,252,14.5\n473,253,14.0\n473,254,13.5\n473,255,13.0\n473,256,12.5\n473,257,12.0\n473,258,11.5\n473,259,11.0\n473,260,10.5\n473,261,10.0\n473,262,9.5\n473,263,9.0\n473,264,8.5\n473,265,8.0\n473,266,7.5\n473,267,7.0\n473,268,6.5\n473,269,6.0\n473,270,5.5\n473,271,5.0\n473,272,4.5\n473,273,4.0\n473,274,4.5\n473,275,15.0\n473,276,14.5\n473,277,14.0\n473,278,13.5\n473,279,13.0\n473,280,12.5\n473,281,12.0\n473,282,11.5\n473,283,11.0\n473,284,10.5\n473,285,10.0\n473,286,9.5\n473,287,9.0\n473,288,8.5\n473,289,8.0\n473,290,7.5\n473,291,7.0\n473,292,6.5\n473,293,6.0\n473,294,5.5\n473,295,5.0\n473,296,4.5\n473,297,4.0\n473,298,3.5\n473,299,4.0\n473,300,14.5\n473,301,14.0\n473,302,13.5\n473,303,13.0\n473,304,12.5\n473,305,12.0\n473,306,11.5\n473,307,11.0\n473,308,10.5\n473,309,10.0\n473,310,9.5\n473,311,9.0\n473,312,8.5\n473,313,8.0\n473,314,7.5\n473,315,7.0\n473,316,6.5\n473,317,6.0\n473,318,5.5\n473,319,5.0\n473,320,4.5\n473,321,4.0\n473,322,3.5\n473,323,3.0\n473,324,3.5\n473,325,14.0\n473,326,13.5\n473,327,13.0\n473,328,12.5\n473,329,12.0\n473,330,11.5\n473,331,11.0\n473,332,10.5\n473,333,10.0\n473,334,9.5\n473,335,9.0\n473,336,8.5\n473,337,8.0\n473,338,7.5\n473,339,7.0\n473,340,6.5\n473,341,6.0\n473,342,5.5\n473,343,5.0\n473,344,4.5\n473,345,4.0\n473,346,3.5\n473,347,3.0\n473,348,2.5\n473,349,3.0\n473,350,13.5\n473,351,13.0\n473,352,12.5\n473,353,12.0\n473,354,11.5\n473,355,11.0\n473,356,10.5\n473,357,10.0\n473,358,9.5\n473,359,9.0\n473,360,8.5\n473,361,8.0\n473,362,7.5\n473,363,7.0\n473,364,6.5\n473,365,6.0\n473,366,5.5\n473,367,5.0\n473,368,4.5\n473,369,4.0\n473,370,3.5\n473,371,3.0\n473,372,2.5\n473,373,2.0\n473,374,2.5\n473,375,13.0\n473,376,12.5\n473,377,12.0\n473,378,11.5\n473,379,11.0\n473,380,10.5\n473,381,10.0\n473,382,9.5\n473,383,9.0\n473,384,8.5\n473,385,8.0\n473,386,7.5\n473,387,7.0\n473,388,6.5\n473,389,6.0\n473,390,5.5\n473,391,5.0\n473,392,4.5\n473,393,4.0\n473,394,3.5\n473,395,3.0\n473,396,2.5\n473,397,2.0\n473,398,1.5\n473,399,2.0\n473,400,12.5\n473,401,12.0\n473,402,11.5\n473,403,11.0\n473,404,10.5\n473,405,10.0\n473,406,9.5\n473,407,9.0\n473,408,8.5\n473,409,8.0\n473,410,7.5\n473,411,7.0\n473,412,6.5\n473,413,6.0\n473,414,5.5\n473,415,5.0\n473,416,4.5\n473,417,4.0\n473,418,3.5\n473,419,3.0\n473,420,2.5\n473,421,2.0\n473,422,1.5\n473,423,1.0\n473,424,1.5\n473,425,12.0\n473,426,11.5\n473,427,11.0\n473,428,10.5\n473,429,10.0\n473,430,9.5\n473,431,9.0\n473,432,8.5\n473,433,8.0\n473,434,7.5\n473,435,7.0\n473,436,6.5\n473,437,6.0\n473,438,5.5\n473,439,5.0\n473,440,4.5\n473,441,4.0\n473,442,3.5\n473,443,3.0\n473,444,2.5\n473,445,2.0\n473,446,1.5\n473,447,1.0\n473,448,0.5\n473,449,1.0\n473,450,11.5\n473,451,11.0\n473,452,10.5\n473,453,10.0\n473,454,9.5\n473,455,9.0\n473,456,8.5\n473,457,8.0\n473,458,7.5\n473,459,7.0\n473,460,6.5\n473,461,6.0\n473,462,5.5\n473,463,5.0\n473,464,4.5\n473,465,4.0\n473,466,3.5\n473,467,3.0\n473,468,2.5\n473,469,2.0\n473,470,1.5\n473,471,1.0\n473,472,0.5\n473,473,0\n473,474,0.5\n473,475,12.0\n473,476,11.5\n473,477,11.0\n473,478,10.5\n473,479,10.0\n473,480,9.5\n473,481,9.0\n473,482,8.5\n473,483,8.0\n473,484,7.5\n473,485,7.0\n473,486,6.5\n473,487,6.0\n473,488,5.5\n473,489,5.0\n473,490,4.5\n473,491,4.0\n473,492,3.5\n473,493,3.0\n473,494,2.5\n473,495,2.0\n473,496,1.5\n473,497,1.0\n473,498,0.5\n473,499,1.0\n473,500,12.5\n473,501,12.0\n473,502,11.5\n473,503,11.0\n473,504,10.5\n473,505,10.0\n473,506,9.5\n473,507,9.0\n473,508,8.5\n473,509,8.0\n473,510,7.5\n473,511,7.0\n473,512,6.5\n473,513,6.0\n473,514,5.5\n473,515,5.0\n473,516,4.5\n473,517,4.0\n473,518,3.5\n473,519,3.0\n473,520,2.5\n473,521,2.0\n473,522,1.5\n473,523,1.0\n473,524,1.5\n473,525,13.0\n473,526,12.5\n473,527,12.0\n473,528,11.5\n473,529,11.0\n473,530,10.5\n473,531,10.0\n473,532,9.5\n473,533,9.0\n473,534,8.5\n473,535,8.0\n473,536,7.5\n473,537,7.0\n473,538,6.5\n473,539,6.0\n473,540,5.5\n473,541,5.0\n473,542,4.5\n473,543,4.0\n473,544,3.5\n473,545,3.0\n473,546,2.5\n473,547,2.0\n473,548,1.5\n473,549,2.0\n473,550,13.5\n473,551,13.0\n473,552,12.5\n473,553,12.0\n473,554,11.5\n473,555,11.0\n473,556,10.5\n473,557,10.0\n473,558,9.5\n473,559,9.0\n473,560,8.5\n473,561,8.0\n473,562,7.5\n473,563,7.0\n473,564,6.5\n473,565,6.0\n473,566,5.5\n473,567,5.0\n473,568,4.5\n473,569,4.0\n473,570,3.5\n473,571,3.0\n473,572,2.5\n473,573,2.0\n473,574,2.5\n473,575,14.0\n473,576,13.5\n473,577,13.0\n473,578,12.5\n473,579,12.0\n473,580,11.5\n473,581,11.0\n473,582,10.5\n473,583,10.0\n473,584,9.5\n473,585,9.0\n473,586,8.5\n473,587,8.0\n473,588,7.5\n473,589,7.0\n473,590,6.5\n473,591,6.0\n473,592,5.5\n473,593,5.0\n473,594,4.5\n473,595,4.0\n473,596,3.5\n473,597,3.0\n473,598,2.5\n473,599,3.0\n473,600,14.5\n473,601,14.0\n473,602,13.5\n473,603,13.0\n473,604,12.5\n473,605,12.0\n473,606,11.5\n473,607,11.0\n473,608,10.5\n473,609,10.0\n473,610,9.5\n473,611,9.0\n473,612,8.5\n473,613,8.0\n473,614,7.5\n473,615,7.0\n473,616,6.5\n473,617,6.0\n473,618,5.5\n473,619,5.0\n473,620,4.5\n473,621,4.0\n473,622,3.5\n473,623,3.0\n473,624,3.5\n474,0,21.0\n474,1,20.5\n474,2,20.0\n474,3,19.5\n474,4,19.0\n474,5,18.5\n474,6,18.0\n474,7,17.5\n474,8,17.0\n474,9,16.5\n474,10,16.0\n474,11,15.5\n474,12,15.0\n474,13,14.5\n474,14,14.0\n474,15,13.5\n474,16,13.0\n474,17,12.5\n474,18,12.0\n474,19,11.5\n474,20,11.0\n474,21,10.5\n474,22,10.0\n474,23,9.5\n474,24,9.0\n474,25,20.5\n474,26,20.0\n474,27,19.5\n474,28,19.0\n474,29,18.5\n474,30,18.0\n474,31,17.5\n474,32,17.0\n474,33,16.5\n474,34,16.0\n474,35,15.5\n474,36,15.0\n474,37,14.5\n474,38,14.0\n474,39,13.5\n474,40,13.0\n474,41,12.5\n474,42,12.0\n474,43,11.5\n474,44,11.0\n474,45,10.5\n474,46,10.0\n474,47,9.5\n474,48,9.0\n474,49,8.5\n474,50,20.0\n474,51,19.5\n474,52,19.0\n474,53,18.5\n474,54,18.0\n474,55,17.5\n474,56,17.0\n474,57,16.5\n474,58,16.0\n474,59,15.5\n474,60,15.0\n474,61,14.5\n474,62,14.0\n474,63,13.5\n474,64,13.0\n474,65,12.5\n474,66,12.0\n474,67,11.5\n474,68,11.0\n474,69,10.5\n474,70,10.0\n474,71,9.5\n474,72,9.0\n474,73,8.5\n474,74,8.0\n474,75,19.5\n474,76,19.0\n474,77,18.5\n474,78,18.0\n474,79,17.5\n474,80,17.0\n474,81,16.5\n474,82,16.0\n474,83,15.5\n474,84,15.0\n474,85,14.5\n474,86,14.0\n474,87,13.5\n474,88,13.0\n474,89,12.5\n474,90,12.0\n474,91,11.5\n474,92,11.0\n474,93,10.5\n474,94,10.0\n474,95,9.5\n474,96,9.0\n474,97,8.5\n474,98,8.0\n474,99,7.5\n474,100,19.0\n474,101,18.5\n474,102,18.0\n474,103,17.5\n474,104,17.0\n474,105,16.5\n474,106,16.0\n474,107,15.5\n474,108,15.0\n474,109,14.5\n474,110,14.0\n474,111,13.5\n474,112,13.0\n474,113,12.5\n474,114,12.0\n474,115,11.5\n474,116,11.0\n474,117,10.5\n474,118,10.0\n474,119,9.5\n474,120,9.0\n474,121,8.5\n474,122,8.0\n474,123,7.5\n474,124,7.0\n474,125,18.5\n474,126,18.0\n474,127,17.5\n474,128,17.0\n474,129,16.5\n474,130,16.0\n474,131,15.5\n474,132,15.0\n474,133,14.5\n474,134,14.0\n474,135,13.5\n474,136,13.0\n474,137,12.5\n474,138,12.0\n474,139,11.5\n474,140,11.0\n474,141,10.5\n474,142,10.0\n474,143,9.5\n474,144,9.0\n474,145,8.5\n474,146,8.0\n474,147,7.5\n474,148,7.0\n474,149,6.5\n474,150,18.0\n474,151,17.5\n474,152,17.0\n474,153,16.5\n474,154,16.0\n474,155,15.5\n474,156,15.0\n474,157,14.5\n474,158,14.0\n474,159,13.5\n474,160,13.0\n474,161,12.5\n474,162,12.0\n474,163,11.5\n474,164,11.0\n474,165,10.5\n474,166,10.0\n474,167,9.5\n474,168,9.0\n474,169,8.5\n474,170,8.0\n474,171,7.5\n474,172,7.0\n474,173,6.5\n474,174,6.0\n474,175,17.5\n474,176,17.0\n474,177,16.5\n474,178,16.0\n474,179,15.5\n474,180,15.0\n474,181,14.5\n474,182,14.0\n474,183,13.5\n474,184,13.0\n474,185,12.5\n474,186,12.0\n474,187,11.5\n474,188,11.0\n474,189,10.5\n474,190,10.0\n474,191,9.5\n474,192,9.0\n474,193,8.5\n474,194,8.0\n474,195,7.5\n474,196,7.0\n474,197,6.5\n474,198,6.0\n474,199,5.5\n474,200,17.0\n474,201,16.5\n474,202,16.0\n474,203,15.5\n474,204,15.0\n474,205,14.5\n474,206,14.0\n474,207,13.5\n474,208,13.0\n474,209,12.5\n474,210,12.0\n474,211,11.5\n474,212,11.0\n474,213,10.5\n474,214,10.0\n474,215,9.5\n474,216,9.0\n474,217,8.5\n474,218,8.0\n474,219,7.5\n474,220,7.0\n474,221,6.5\n474,222,6.0\n474,223,5.5\n474,224,5.0\n474,225,16.5\n474,226,16.0\n474,227,15.5\n474,228,15.0\n474,229,14.5\n474,230,14.0\n474,231,13.5\n474,232,13.0\n474,233,12.5\n474,234,12.0\n474,235,11.5\n474,236,11.0\n474,237,10.5\n474,238,10.0\n474,239,9.5\n474,240,9.0\n474,241,8.5\n474,242,8.0\n474,243,7.5\n474,244,7.0\n474,245,6.5\n474,246,6.0\n474,247,5.5\n474,248,5.0\n474,249,4.5\n474,250,16.0\n474,251,15.5\n474,252,15.0\n474,253,14.5\n474,254,14.0\n474,255,13.5\n474,256,13.0\n474,257,12.5\n474,258,12.0\n474,259,11.5\n474,260,11.0\n474,261,10.5\n474,262,10.0\n474,263,9.5\n474,264,9.0\n474,265,8.5\n474,266,8.0\n474,267,7.5\n474,268,7.0\n474,269,6.5\n474,270,6.0\n474,271,5.5\n474,272,5.0\n474,273,4.5\n474,274,4.0\n474,275,15.5\n474,276,15.0\n474,277,14.5\n474,278,14.0\n474,279,13.5\n474,280,13.0\n474,281,12.5\n474,282,12.0\n474,283,11.5\n474,284,11.0\n474,285,10.5\n474,286,10.0\n474,287,9.5\n474,288,9.0\n474,289,8.5\n474,290,8.0\n474,291,7.5\n474,292,7.0\n474,293,6.5\n474,294,6.0\n474,295,5.5\n474,296,5.0\n474,297,4.5\n474,298,4.0\n474,299,3.5\n474,300,15.0\n474,301,14.5\n474,302,14.0\n474,303,13.5\n474,304,13.0\n474,305,12.5\n474,306,12.0\n474,307,11.5\n474,308,11.0\n474,309,10.5\n474,310,10.0\n474,311,9.5\n474,312,9.0\n474,313,8.5\n474,314,8.0\n474,315,7.5\n474,316,7.0\n474,317,6.5\n474,318,6.0\n474,319,5.5\n474,320,5.0\n474,321,4.5\n474,322,4.0\n474,323,3.5\n474,324,3.0\n474,325,14.5\n474,326,14.0\n474,327,13.5\n474,328,13.0\n474,329,12.5\n474,330,12.0\n474,331,11.5\n474,332,11.0\n474,333,10.5\n474,334,10.0\n474,335,9.5\n474,336,9.0\n474,337,8.5\n474,338,8.0\n474,339,7.5\n474,340,7.0\n474,341,6.5\n474,342,6.0\n474,343,5.5\n474,344,5.0\n474,345,4.5\n474,346,4.0\n474,347,3.5\n474,348,3.0\n474,349,2.5\n474,350,14.0\n474,351,13.5\n474,352,13.0\n474,353,12.5\n474,354,12.0\n474,355,11.5\n474,356,11.0\n474,357,10.5\n474,358,10.0\n474,359,9.5\n474,360,9.0\n474,361,8.5\n474,362,8.0\n474,363,7.5\n474,364,7.0\n474,365,6.5\n474,366,6.0\n474,367,5.5\n474,368,5.0\n474,369,4.5\n474,370,4.0\n474,371,3.5\n474,372,3.0\n474,373,2.5\n474,374,2.0\n474,375,13.5\n474,376,13.0\n474,377,12.5\n474,378,12.0\n474,379,11.5\n474,380,11.0\n474,381,10.5\n474,382,10.0\n474,383,9.5\n474,384,9.0\n474,385,8.5\n474,386,8.0\n474,387,7.5\n474,388,7.0\n474,389,6.5\n474,390,6.0\n474,391,5.5\n474,392,5.0\n474,393,4.5\n474,394,4.0\n474,395,3.5\n474,396,3.0\n474,397,2.5\n474,398,2.0\n474,399,1.5\n474,400,13.0\n474,401,12.5\n474,402,12.0\n474,403,11.5\n474,404,11.0\n474,405,10.5\n474,406,10.0\n474,407,9.5\n474,408,9.0\n474,409,8.5\n474,410,8.0\n474,411,7.5\n474,412,7.0\n474,413,6.5\n474,414,6.0\n474,415,5.5\n474,416,5.0\n474,417,4.5\n474,418,4.0\n474,419,3.5\n474,420,3.0\n474,421,2.5\n474,422,2.0\n474,423,1.5\n474,424,1.0\n474,425,12.5\n474,426,12.0\n474,427,11.5\n474,428,11.0\n474,429,10.5\n474,430,10.0\n474,431,9.5\n474,432,9.0\n474,433,8.5\n474,434,8.0\n474,435,7.5\n474,436,7.0\n474,437,6.5\n474,438,6.0\n474,439,5.5\n474,440,5.0\n474,441,4.5\n474,442,4.0\n474,443,3.5\n474,444,3.0\n474,445,2.5\n474,446,2.0\n474,447,1.5\n474,448,1.0\n474,449,0.5\n474,450,12.0\n474,451,11.5\n474,452,11.0\n474,453,10.5\n474,454,10.0\n474,455,9.5\n474,456,9.0\n474,457,8.5\n474,458,8.0\n474,459,7.5\n474,460,7.0\n474,461,6.5\n474,462,6.0\n474,463,5.5\n474,464,5.0\n474,465,4.5\n474,466,4.0\n474,467,3.5\n474,468,3.0\n474,469,2.5\n474,470,2.0\n474,471,1.5\n474,472,1.0\n474,473,0.5\n474,474,0\n474,475,12.5\n474,476,12.0\n474,477,11.5\n474,478,11.0\n474,479,10.5\n474,480,10.0\n474,481,9.5\n474,482,9.0\n474,483,8.5\n474,484,8.0\n474,485,7.5\n474,486,7.0\n474,487,6.5\n474,488,6.0\n474,489,5.5\n474,490,5.0\n474,491,4.5\n474,492,4.0\n474,493,3.5\n474,494,3.0\n474,495,2.5\n474,496,2.0\n474,497,1.5\n474,498,1.0\n474,499,0.5\n474,500,13.0\n474,501,12.5\n474,502,12.0\n474,503,11.5\n474,504,11.0\n474,505,10.5\n474,506,10.0\n474,507,9.5\n474,508,9.0\n474,509,8.5\n474,510,8.0\n474,511,7.5\n474,512,7.0\n474,513,6.5\n474,514,6.0\n474,515,5.5\n474,516,5.0\n474,517,4.5\n474,518,4.0\n474,519,3.5\n474,520,3.0\n474,521,2.5\n474,522,2.0\n474,523,1.5\n474,524,1.0\n474,525,13.5\n474,526,13.0\n474,527,12.5\n474,528,12.0\n474,529,11.5\n474,530,11.0\n474,531,10.5\n474,532,10.0\n474,533,9.5\n474,534,9.0\n474,535,8.5\n474,536,8.0\n474,537,7.5\n474,538,7.0\n474,539,6.5\n474,540,6.0\n474,541,5.5\n474,542,5.0\n474,543,4.5\n474,544,4.0\n474,545,3.5\n474,546,3.0\n474,547,2.5\n474,548,2.0\n474,549,1.5\n474,550,14.0\n474,551,13.5\n474,552,13.0\n474,553,12.5\n474,554,12.0\n474,555,11.5\n474,556,11.0\n474,557,10.5\n474,558,10.0\n474,559,9.5\n474,560,9.0\n474,561,8.5\n474,562,8.0\n474,563,7.5\n474,564,7.0\n474,565,6.5\n474,566,6.0\n474,567,5.5\n474,568,5.0\n474,569,4.5\n474,570,4.0\n474,571,3.5\n474,572,3.0\n474,573,2.5\n474,574,2.0\n474,575,14.5\n474,576,14.0\n474,577,13.5\n474,578,13.0\n474,579,12.5\n474,580,12.0\n474,581,11.5\n474,582,11.0\n474,583,10.5\n474,584,10.0\n474,585,9.5\n474,586,9.0\n474,587,8.5\n474,588,8.0\n474,589,7.5\n474,590,7.0\n474,591,6.5\n474,592,6.0\n474,593,5.5\n474,594,5.0\n474,595,4.5\n474,596,4.0\n474,597,3.5\n474,598,3.0\n474,599,2.5\n474,600,15.0\n474,601,14.5\n474,602,14.0\n474,603,13.5\n474,604,13.0\n474,605,12.5\n474,606,12.0\n474,607,11.5\n474,608,11.0\n474,609,10.5\n474,610,10.0\n474,611,9.5\n474,612,9.0\n474,613,8.5\n474,614,8.0\n474,615,7.5\n474,616,7.0\n474,617,6.5\n474,618,6.0\n474,619,5.5\n474,620,5.0\n474,621,4.5\n474,622,4.0\n474,623,3.5\n474,624,3.0\n475,0,9.5\n475,1,10.0\n475,2,10.5\n475,3,11.0\n475,4,11.5\n475,5,12.0\n475,6,12.5\n475,7,13.0\n475,8,13.5\n475,9,14.0\n475,10,14.5\n475,11,15.0\n475,12,15.5\n475,13,16.0\n475,14,16.5\n475,15,17.0\n475,16,17.5\n475,17,18.0\n475,18,18.5\n475,19,19.0\n475,20,19.5\n475,21,20.0\n475,22,20.5\n475,23,21.0\n475,24,21.5\n475,25,9.0\n475,26,9.5\n475,27,10.0\n475,28,10.5\n475,29,11.0\n475,30,11.5\n475,31,12.0\n475,32,12.5\n475,33,13.0\n475,34,13.5\n475,35,14.0\n475,36,14.5\n475,37,15.0\n475,38,15.5\n475,39,16.0\n475,40,16.5\n475,41,17.0\n475,42,17.5\n475,43,18.0\n475,44,18.5\n475,45,19.0\n475,46,19.5\n475,47,20.0\n475,48,20.5\n475,49,21.0\n475,50,8.5\n475,51,9.0\n475,52,9.5\n475,53,10.0\n475,54,10.5\n475,55,11.0\n475,56,11.5\n475,57,12.0\n475,58,12.5\n475,59,13.0\n475,60,13.5\n475,61,14.0\n475,62,14.5\n475,63,15.0\n475,64,15.5\n475,65,16.0\n475,66,16.5\n475,67,17.0\n475,68,17.5\n475,69,18.0\n475,70,18.5\n475,71,19.0\n475,72,19.5\n475,73,20.0\n475,74,20.5\n475,75,8.0\n475,76,8.5\n475,77,9.0\n475,78,9.5\n475,79,10.0\n475,80,10.5\n475,81,11.0\n475,82,11.5\n475,83,12.0\n475,84,12.5\n475,85,13.0\n475,86,13.5\n475,87,14.0\n475,88,14.5\n475,89,15.0\n475,90,15.5\n475,91,16.0\n475,92,16.5\n475,93,17.0\n475,94,17.5\n475,95,18.0\n475,96,18.5\n475,97,19.0\n475,98,19.5\n475,99,20.0\n475,100,7.5\n475,101,8.0\n475,102,8.5\n475,103,9.0\n475,104,9.5\n475,105,10.0\n475,106,10.5\n475,107,11.0\n475,108,11.5\n475,109,12.0\n475,110,12.5\n475,111,13.0\n475,112,13.5\n475,113,14.0\n475,114,14.5\n475,115,15.0\n475,116,15.5\n475,117,16.0\n475,118,16.5\n475,119,17.0\n475,120,17.5\n475,121,18.0\n475,122,18.5\n475,123,19.0\n475,124,19.5\n475,125,7.0\n475,126,7.5\n475,127,8.0\n475,128,8.5\n475,129,9.0\n475,130,9.5\n475,131,10.0\n475,132,10.5\n475,133,11.0\n475,134,11.5\n475,135,12.0\n475,136,12.5\n475,137,13.0\n475,138,13.5\n475,139,14.0\n475,140,14.5\n475,141,15.0\n475,142,15.5\n475,143,16.0\n475,144,16.5\n475,145,17.0\n475,146,17.5\n475,147,18.0\n475,148,18.5\n475,149,19.0\n475,150,6.5\n475,151,7.0\n475,152,7.5\n475,153,8.0\n475,154,8.5\n475,155,9.0\n475,156,9.5\n475,157,10.0\n475,158,10.5\n475,159,11.0\n475,160,11.5\n475,161,12.0\n475,162,12.5\n475,163,13.0\n475,164,13.5\n475,165,14.0\n475,166,14.5\n475,167,15.0\n475,168,15.5\n475,169,16.0\n475,170,16.5\n475,171,17.0\n475,172,17.5\n475,173,18.0\n475,174,18.5\n475,175,6.0\n475,176,6.5\n475,177,7.0\n475,178,7.5\n475,179,8.0\n475,180,8.5\n475,181,9.0\n475,182,9.5\n475,183,10.0\n475,184,10.5\n475,185,11.0\n475,186,11.5\n475,187,12.0\n475,188,12.5\n475,189,13.0\n475,190,13.5\n475,191,14.0\n475,192,14.5\n475,193,15.0\n475,194,15.5\n475,195,16.0\n475,196,16.5\n475,197,17.0\n475,198,17.5\n475,199,18.0\n475,200,5.5\n475,201,6.0\n475,202,6.5\n475,203,7.0\n475,204,7.5\n475,205,8.0\n475,206,8.5\n475,207,9.0\n475,208,9.5\n475,209,10.0\n475,210,10.5\n475,211,11.0\n475,212,11.5\n475,213,12.0\n475,214,12.5\n475,215,13.0\n475,216,13.5\n475,217,14.0\n475,218,14.5\n475,219,15.0\n475,220,15.5\n475,221,16.0\n475,222,16.5\n475,223,17.0\n475,224,17.5\n475,225,5.0\n475,226,5.5\n475,227,6.0\n475,228,6.5\n475,229,7.0\n475,230,7.5\n475,231,8.0\n475,232,8.5\n475,233,9.0\n475,234,9.5\n475,235,10.0\n475,236,10.5\n475,237,11.0\n475,238,11.5\n475,239,12.0\n475,240,12.5\n475,241,13.0\n475,242,13.5\n475,243,14.0\n475,244,14.5\n475,245,15.0\n475,246,15.5\n475,247,16.0\n475,248,16.5\n475,249,17.0\n475,250,4.5\n475,251,5.0\n475,252,5.5\n475,253,6.0\n475,254,6.5\n475,255,7.0\n475,256,7.5\n475,257,8.0\n475,258,8.5\n475,259,9.0\n475,260,9.5\n475,261,10.0\n475,262,10.5\n475,263,11.0\n475,264,11.5\n475,265,12.0\n475,266,12.5\n475,267,13.0\n475,268,13.5\n475,269,14.0\n475,270,14.5\n475,271,15.0\n475,272,15.5\n475,273,16.0\n475,274,16.5\n475,275,4.0\n475,276,4.5\n475,277,5.0\n475,278,5.5\n475,279,6.0\n475,280,6.5\n475,281,7.0\n475,282,7.5\n475,283,8.0\n475,284,8.5\n475,285,9.0\n475,286,9.5\n475,287,10.0\n475,288,10.5\n475,289,11.0\n475,290,11.5\n475,291,12.0\n475,292,12.5\n475,293,13.0\n475,294,13.5\n475,295,14.0\n475,296,14.5\n475,297,15.0\n475,298,15.5\n475,299,16.0\n475,300,3.5\n475,301,4.0\n475,302,4.5\n475,303,5.0\n475,304,5.5\n475,305,6.0\n475,306,6.5\n475,307,7.0\n475,308,7.5\n475,309,8.0\n475,310,8.5\n475,311,9.0\n475,312,9.5\n475,313,10.0\n475,314,10.5\n475,315,11.0\n475,316,11.5\n475,317,12.0\n475,318,12.5\n475,319,13.0\n475,320,13.5\n475,321,14.0\n475,322,14.5\n475,323,15.0\n475,324,15.5\n475,325,3.0\n475,326,3.5\n475,327,4.0\n475,328,4.5\n475,329,5.0\n475,330,5.5\n475,331,6.0\n475,332,6.5\n475,333,7.0\n475,334,7.5\n475,335,8.0\n475,336,8.5\n475,337,9.0\n475,338,9.5\n475,339,10.0\n475,340,10.5\n475,341,11.0\n475,342,11.5\n475,343,12.0\n475,344,12.5\n475,345,13.0\n475,346,13.5\n475,347,14.0\n475,348,14.5\n475,349,15.0\n475,350,2.5\n475,351,3.0\n475,352,3.5\n475,353,4.0\n475,354,4.5\n475,355,5.0\n475,356,5.5\n475,357,6.0\n475,358,6.5\n475,359,7.0\n475,360,7.5\n475,361,8.0\n475,362,8.5\n475,363,9.0\n475,364,9.5\n475,365,10.0\n475,366,10.5\n475,367,11.0\n475,368,11.5\n475,369,12.0\n475,370,12.5\n475,371,13.0\n475,372,13.5\n475,373,14.0\n475,374,14.5\n475,375,2.0\n475,376,2.5\n475,377,3.0\n475,378,3.5\n475,379,4.0\n475,380,4.5\n475,381,5.0\n475,382,5.5\n475,383,6.0\n475,384,6.5\n475,385,7.0\n475,386,7.5\n475,387,8.0\n475,388,8.5\n475,389,9.0\n475,390,9.5\n475,391,10.0\n475,392,10.5\n475,393,11.0\n475,394,11.5\n475,395,12.0\n475,396,12.5\n475,397,13.0\n475,398,13.5\n475,399,14.0\n475,400,1.5\n475,401,2.0\n475,402,2.5\n475,403,3.0\n475,404,3.5\n475,405,4.0\n475,406,4.5\n475,407,5.0\n475,408,5.5\n475,409,6.0\n475,410,6.5\n475,411,7.0\n475,412,7.5\n475,413,8.0\n475,414,8.5\n475,415,9.0\n475,416,9.5\n475,417,10.0\n475,418,10.5\n475,419,11.0\n475,420,11.5\n475,421,12.0\n475,422,12.5\n475,423,13.0\n475,424,13.5\n475,425,1.0\n475,426,1.5\n475,427,2.0\n475,428,2.5\n475,429,3.0\n475,430,3.5\n475,431,4.0\n475,432,4.5\n475,433,5.0\n475,434,5.5\n475,435,6.0\n475,436,6.5\n475,437,7.0\n475,438,7.5\n475,439,8.0\n475,440,8.5\n475,441,9.0\n475,442,9.5\n475,443,10.0\n475,444,10.5\n475,445,11.0\n475,446,11.5\n475,447,12.0\n475,448,12.5\n475,449,13.0\n475,450,0.5\n475,451,1.0\n475,452,1.5\n475,453,2.0\n475,454,2.5\n475,455,3.0\n475,456,3.5\n475,457,4.0\n475,458,4.5\n475,459,5.0\n475,460,5.5\n475,461,6.0\n475,462,6.5\n475,463,7.0\n475,464,7.5\n475,465,8.0\n475,466,8.5\n475,467,9.0\n475,468,9.5\n475,469,10.0\n475,470,10.5\n475,471,11.0\n475,472,11.5\n475,473,12.0\n475,474,12.5\n475,475,0\n475,476,0.5\n475,477,1.0\n475,478,1.5\n475,479,2.0\n475,480,2.5\n475,481,3.0\n475,482,3.5\n475,483,4.0\n475,484,4.5\n475,485,5.0\n475,486,5.5\n475,487,6.0\n475,488,6.5\n475,489,7.0\n475,490,7.5\n475,491,8.0\n475,492,8.5\n475,493,9.0\n475,494,9.5\n475,495,10.0\n475,496,10.5\n475,497,11.0\n475,498,11.5\n475,499,12.0\n475,500,0.5\n475,501,1.0\n475,502,1.5\n475,503,2.0\n475,504,2.5\n475,505,3.0\n475,506,3.5\n475,507,4.0\n475,508,4.5\n475,509,5.0\n475,510,5.5\n475,511,6.0\n475,512,6.5\n475,513,7.0\n475,514,7.5\n475,515,8.0\n475,516,8.5\n475,517,9.0\n475,518,9.5\n475,519,10.0\n475,520,10.5\n475,521,11.0\n475,522,11.5\n475,523,12.0\n475,524,12.5\n475,525,1.0\n475,526,1.5\n475,527,2.0\n475,528,2.5\n475,529,3.0\n475,530,3.5\n475,531,4.0\n475,532,4.5\n475,533,5.0\n475,534,5.5\n475,535,6.0\n475,536,6.5\n475,537,7.0\n475,538,7.5\n475,539,8.0\n475,540,8.5\n475,541,9.0\n475,542,9.5\n475,543,10.0\n475,544,10.5\n475,545,11.0\n475,546,11.5\n475,547,12.0\n475,548,12.5\n475,549,13.0\n475,550,1.5\n475,551,2.0\n475,552,2.5\n475,553,3.0\n475,554,3.5\n475,555,4.0\n475,556,4.5\n475,557,5.0\n475,558,5.5\n475,559,6.0\n475,560,6.5\n475,561,7.0\n475,562,7.5\n475,563,8.0\n475,564,8.5\n475,565,9.0\n475,566,9.5\n475,567,10.0\n475,568,10.5\n475,569,11.0\n475,570,11.5\n475,571,12.0\n475,572,12.5\n475,573,13.0\n475,574,13.5\n475,575,2.0\n475,576,2.5\n475,577,3.0\n475,578,3.5\n475,579,4.0\n475,580,4.5\n475,581,5.0\n475,582,5.5\n475,583,6.0\n475,584,6.5\n475,585,7.0\n475,586,7.5\n475,587,8.0\n475,588,8.5\n475,589,9.0\n475,590,9.5\n475,591,10.0\n475,592,10.5\n475,593,11.0\n475,594,11.5\n475,595,12.0\n475,596,12.5\n475,597,13.0\n475,598,13.5\n475,599,14.0\n475,600,2.5\n475,601,3.0\n475,602,3.5\n475,603,4.0\n475,604,4.5\n475,605,5.0\n475,606,5.5\n475,607,6.0\n475,608,6.5\n475,609,7.0\n475,610,7.5\n475,611,8.0\n475,612,8.5\n475,613,9.0\n475,614,9.5\n475,615,10.0\n475,616,10.5\n475,617,11.0\n475,618,11.5\n475,619,12.0\n475,620,12.5\n475,621,13.0\n475,622,13.5\n475,623,14.0\n475,624,14.5\n476,0,10.0\n476,1,9.5\n476,2,10.0\n476,3,10.5\n476,4,11.0\n476,5,11.5\n476,6,12.0\n476,7,12.5\n476,8,13.0\n476,9,13.5\n476,10,14.0\n476,11,14.5\n476,12,15.0\n476,13,15.5\n476,14,16.0\n476,15,16.5\n476,16,17.0\n476,17,17.5\n476,18,18.0\n476,19,18.5\n476,20,19.0\n476,21,19.5\n476,22,20.0\n476,23,20.5\n476,24,21.0\n476,25,9.5\n476,26,9.0\n476,27,9.5\n476,28,10.0\n476,29,10.5\n476,30,11.0\n476,31,11.5\n476,32,12.0\n476,33,12.5\n476,34,13.0\n476,35,13.5\n476,36,14.0\n476,37,14.5\n476,38,15.0\n476,39,15.5\n476,40,16.0\n476,41,16.5\n476,42,17.0\n476,43,17.5\n476,44,18.0\n476,45,18.5\n476,46,19.0\n476,47,19.5\n476,48,20.0\n476,49,20.5\n476,50,9.0\n476,51,8.5\n476,52,9.0\n476,53,9.5\n476,54,10.0\n476,55,10.5\n476,56,11.0\n476,57,11.5\n476,58,12.0\n476,59,12.5\n476,60,13.0\n476,61,13.5\n476,62,14.0\n476,63,14.5\n476,64,15.0\n476,65,15.5\n476,66,16.0\n476,67,16.5\n476,68,17.0\n476,69,17.5\n476,70,18.0\n476,71,18.5\n476,72,19.0\n476,73,19.5\n476,74,20.0\n476,75,8.5\n476,76,8.0\n476,77,8.5\n476,78,9.0\n476,79,9.5\n476,80,10.0\n476,81,10.5\n476,82,11.0\n476,83,11.5\n476,84,12.0\n476,85,12.5\n476,86,13.0\n476,87,13.5\n476,88,14.0\n476,89,14.5\n476,90,15.0\n476,91,15.5\n476,92,16.0\n476,93,16.5\n476,94,17.0\n476,95,17.5\n476,96,18.0\n476,97,18.5\n476,98,19.0\n476,99,19.5\n476,100,8.0\n476,101,7.5\n476,102,8.0\n476,103,8.5\n476,104,9.0\n476,105,9.5\n476,106,10.0\n476,107,10.5\n476,108,11.0\n476,109,11.5\n476,110,12.0\n476,111,12.5\n476,112,13.0\n476,113,13.5\n476,114,14.0\n476,115,14.5\n476,116,15.0\n476,117,15.5\n476,118,16.0\n476,119,16.5\n476,120,17.0\n476,121,17.5\n476,122,18.0\n476,123,18.5\n476,124,19.0\n476,125,7.5\n476,126,7.0\n476,127,7.5\n476,128,8.0\n476,129,8.5\n476,130,9.0\n476,131,9.5\n476,132,10.0\n476,133,10.5\n476,134,11.0\n476,135,11.5\n476,136,12.0\n476,137,12.5\n476,138,13.0\n476,139,13.5\n476,140,14.0\n476,141,14.5\n476,142,15.0\n476,143,15.5\n476,144,16.0\n476,145,16.5\n476,146,17.0\n476,147,17.5\n476,148,18.0\n476,149,18.5\n476,150,7.0\n476,151,6.5\n476,152,7.0\n476,153,7.5\n476,154,8.0\n476,155,8.5\n476,156,9.0\n476,157,9.5\n476,158,10.0\n476,159,10.5\n476,160,11.0\n476,161,11.5\n476,162,12.0\n476,163,12.5\n476,164,13.0\n476,165,13.5\n476,166,14.0\n476,167,14.5\n476,168,15.0\n476,169,15.5\n476,170,16.0\n476,171,16.5\n476,172,17.0\n476,173,17.5\n476,174,18.0\n476,175,6.5\n476,176,6.0\n476,177,6.5\n476,178,7.0\n476,179,7.5\n476,180,8.0\n476,181,8.5\n476,182,9.0\n476,183,9.5\n476,184,10.0\n476,185,10.5\n476,186,11.0\n476,187,11.5\n476,188,12.0\n476,189,12.5\n476,190,13.0\n476,191,13.5\n476,192,14.0\n476,193,14.5\n476,194,15.0\n476,195,15.5\n476,196,16.0\n476,197,16.5\n476,198,17.0\n476,199,17.5\n476,200,6.0\n476,201,5.5\n476,202,6.0\n476,203,6.5\n476,204,7.0\n476,205,7.5\n476,206,8.0\n476,207,8.5\n476,208,9.0\n476,209,9.5\n476,210,10.0\n476,211,10.5\n476,212,11.0\n476,213,11.5\n476,214,12.0\n476,215,12.5\n476,216,13.0\n476,217,13.5\n476,218,14.0\n476,219,14.5\n476,220,15.0\n476,221,15.5\n476,222,16.0\n476,223,16.5\n476,224,17.0\n476,225,5.5\n476,226,5.0\n476,227,5.5\n476,228,6.0\n476,229,6.5\n476,230,7.0\n476,231,7.5\n476,232,8.0\n476,233,8.5\n476,234,9.0\n476,235,9.5\n476,236,10.0\n476,237,10.5\n476,238,11.0\n476,239,11.5\n476,240,12.0\n476,241,12.5\n476,242,13.0\n476,243,13.5\n476,244,14.0\n476,245,14.5\n476,246,15.0\n476,247,15.5\n476,248,16.0\n476,249,16.5\n476,250,5.0\n476,251,4.5\n476,252,5.0\n476,253,5.5\n476,254,6.0\n476,255,6.5\n476,256,7.0\n476,257,7.5\n476,258,8.0\n476,259,8.5\n476,260,9.0\n476,261,9.5\n476,262,10.0\n476,263,10.5\n476,264,11.0\n476,265,11.5\n476,266,12.0\n476,267,12.5\n476,268,13.0\n476,269,13.5\n476,270,14.0\n476,271,14.5\n476,272,15.0\n476,273,15.5\n476,274,16.0\n476,275,4.5\n476,276,4.0\n476,277,4.5\n476,278,5.0\n476,279,5.5\n476,280,6.0\n476,281,6.5\n476,282,7.0\n476,283,7.5\n476,284,8.0\n476,285,8.5\n476,286,9.0\n476,287,9.5\n476,288,10.0\n476,289,10.5\n476,290,11.0\n476,291,11.5\n476,292,12.0\n476,293,12.5\n476,294,13.0\n476,295,13.5\n476,296,14.0\n476,297,14.5\n476,298,15.0\n476,299,15.5\n476,300,4.0\n476,301,3.5\n476,302,4.0\n476,303,4.5\n476,304,5.0\n476,305,5.5\n476,306,6.0\n476,307,6.5\n476,308,7.0\n476,309,7.5\n476,310,8.0\n476,311,8.5\n476,312,9.0\n476,313,9.5\n476,314,10.0\n476,315,10.5\n476,316,11.0\n476,317,11.5\n476,318,12.0\n476,319,12.5\n476,320,13.0\n476,321,13.5\n476,322,14.0\n476,323,14.5\n476,324,15.0\n476,325,3.5\n476,326,3.0\n476,327,3.5\n476,328,4.0\n476,329,4.5\n476,330,5.0\n476,331,5.5\n476,332,6.0\n476,333,6.5\n476,334,7.0\n476,335,7.5\n476,336,8.0\n476,337,8.5\n476,338,9.0\n476,339,9.5\n476,340,10.0\n476,341,10.5\n476,342,11.0\n476,343,11.5\n476,344,12.0\n476,345,12.5\n476,346,13.0\n476,347,13.5\n476,348,14.0\n476,349,14.5\n476,350,3.0\n476,351,2.5\n476,352,3.0\n476,353,3.5\n476,354,4.0\n476,355,4.5\n476,356,5.0\n476,357,5.5\n476,358,6.0\n476,359,6.5\n476,360,7.0\n476,361,7.5\n476,362,8.0\n476,363,8.5\n476,364,9.0\n476,365,9.5\n476,366,10.0\n476,367,10.5\n476,368,11.0\n476,369,11.5\n476,370,12.0\n476,371,12.5\n476,372,13.0\n476,373,13.5\n476,374,14.0\n476,375,2.5\n476,376,2.0\n476,377,2.5\n476,378,3.0\n476,379,3.5\n476,380,4.0\n476,381,4.5\n476,382,5.0\n476,383,5.5\n476,384,6.0\n476,385,6.5\n476,386,7.0\n476,387,7.5\n476,388,8.0\n476,389,8.5\n476,390,9.0\n476,391,9.5\n476,392,10.0\n476,393,10.5\n476,394,11.0\n476,395,11.5\n476,396,12.0\n476,397,12.5\n476,398,13.0\n476,399,13.5\n476,400,2.0\n476,401,1.5\n476,402,2.0\n476,403,2.5\n476,404,3.0\n476,405,3.5\n476,406,4.0\n476,407,4.5\n476,408,5.0\n476,409,5.5\n476,410,6.0\n476,411,6.5\n476,412,7.0\n476,413,7.5\n476,414,8.0\n476,415,8.5\n476,416,9.0\n476,417,9.5\n476,418,10.0\n476,419,10.5\n476,420,11.0\n476,421,11.5\n476,422,12.0\n476,423,12.5\n476,424,13.0\n476,425,1.5\n476,426,1.0\n476,427,1.5\n476,428,2.0\n476,429,2.5\n476,430,3.0\n476,431,3.5\n476,432,4.0\n476,433,4.5\n476,434,5.0\n476,435,5.5\n476,436,6.0\n476,437,6.5\n476,438,7.0\n476,439,7.5\n476,440,8.0\n476,441,8.5\n476,442,9.0\n476,443,9.5\n476,444,10.0\n476,445,10.5\n476,446,11.0\n476,447,11.5\n476,448,12.0\n476,449,12.5\n476,450,1.0\n476,451,0.5\n476,452,1.0\n476,453,1.5\n476,454,2.0\n476,455,2.5\n476,456,3.0\n476,457,3.5\n476,458,4.0\n476,459,4.5\n476,460,5.0\n476,461,5.5\n476,462,6.0\n476,463,6.5\n476,464,7.0\n476,465,7.5\n476,466,8.0\n476,467,8.5\n476,468,9.0\n476,469,9.5\n476,470,10.0\n476,471,10.5\n476,472,11.0\n476,473,11.5\n476,474,12.0\n476,475,0.5\n476,476,0\n476,477,0.5\n476,478,1.0\n476,479,1.5\n476,480,2.0\n476,481,2.5\n476,482,3.0\n476,483,3.5\n476,484,4.0\n476,485,4.5\n476,486,5.0\n476,487,5.5\n476,488,6.0\n476,489,6.5\n476,490,7.0\n476,491,7.5\n476,492,8.0\n476,493,8.5\n476,494,9.0\n476,495,9.5\n476,496,10.0\n476,497,10.5\n476,498,11.0\n476,499,11.5\n476,500,1.0\n476,501,0.5\n476,502,1.0\n476,503,1.5\n476,504,2.0\n476,505,2.5\n476,506,3.0\n476,507,3.5\n476,508,4.0\n476,509,4.5\n476,510,5.0\n476,511,5.5\n476,512,6.0\n476,513,6.5\n476,514,7.0\n476,515,7.5\n476,516,8.0\n476,517,8.5\n476,518,9.0\n476,519,9.5\n476,520,10.0\n476,521,10.5\n476,522,11.0\n476,523,11.5\n476,524,12.0\n476,525,1.5\n476,526,1.0\n476,527,1.5\n476,528,2.0\n476,529,2.5\n476,530,3.0\n476,531,3.5\n476,532,4.0\n476,533,4.5\n476,534,5.0\n476,535,5.5\n476,536,6.0\n476,537,6.5\n476,538,7.0\n476,539,7.5\n476,540,8.0\n476,541,8.5\n476,542,9.0\n476,543,9.5\n476,544,10.0\n476,545,10.5\n476,546,11.0\n476,547,11.5\n476,548,12.0\n476,549,12.5\n476,550,2.0\n476,551,1.5\n476,552,2.0\n476,553,2.5\n476,554,3.0\n476,555,3.5\n476,556,4.0\n476,557,4.5\n476,558,5.0\n476,559,5.5\n476,560,6.0\n476,561,6.5\n476,562,7.0\n476,563,7.5\n476,564,8.0\n476,565,8.5\n476,566,9.0\n476,567,9.5\n476,568,10.0\n476,569,10.5\n476,570,11.0\n476,571,11.5\n476,572,12.0\n476,573,12.5\n476,574,13.0\n476,575,2.5\n476,576,2.0\n476,577,2.5\n476,578,3.0\n476,579,3.5\n476,580,4.0\n476,581,4.5\n476,582,5.0\n476,583,5.5\n476,584,6.0\n476,585,6.5\n476,586,7.0\n476,587,7.5\n476,588,8.0\n476,589,8.5\n476,590,9.0\n476,591,9.5\n476,592,10.0\n476,593,10.5\n476,594,11.0\n476,595,11.5\n476,596,12.0\n476,597,12.5\n476,598,13.0\n476,599,13.5\n476,600,3.0\n476,601,2.5\n476,602,3.0\n476,603,3.5\n476,604,4.0\n476,605,4.5\n476,606,5.0\n476,607,5.5\n476,608,6.0\n476,609,6.5\n476,610,7.0\n476,611,7.5\n476,612,8.0\n476,613,8.5\n476,614,9.0\n476,615,9.5\n476,616,10.0\n476,617,10.5\n476,618,11.0\n476,619,11.5\n476,620,12.0\n476,621,12.5\n476,622,13.0\n476,623,13.5\n476,624,14.0\n477,0,10.5\n477,1,10.0\n477,2,9.5\n477,3,10.0\n477,4,10.5\n477,5,11.0\n477,6,11.5\n477,7,12.0\n477,8,12.5\n477,9,13.0\n477,10,13.5\n477,11,14.0\n477,12,14.5\n477,13,15.0\n477,14,15.5\n477,15,16.0\n477,16,16.5\n477,17,17.0\n477,18,17.5\n477,19,18.0\n477,20,18.5\n477,21,19.0\n477,22,19.5\n477,23,20.0\n477,24,20.5\n477,25,10.0\n477,26,9.5\n477,27,9.0\n477,28,9.5\n477,29,10.0\n477,30,10.5\n477,31,11.0\n477,32,11.5\n477,33,12.0\n477,34,12.5\n477,35,13.0\n477,36,13.5\n477,37,14.0\n477,38,14.5\n477,39,15.0\n477,40,15.5\n477,41,16.0\n477,42,16.5\n477,43,17.0\n477,44,17.5\n477,45,18.0\n477,46,18.5\n477,47,19.0\n477,48,19.5\n477,49,20.0\n477,50,9.5\n477,51,9.0\n477,52,8.5\n477,53,9.0\n477,54,9.5\n477,55,10.0\n477,56,10.5\n477,57,11.0\n477,58,11.5\n477,59,12.0\n477,60,12.5\n477,61,13.0\n477,62,13.5\n477,63,14.0\n477,64,14.5\n477,65,15.0\n477,66,15.5\n477,67,16.0\n477,68,16.5\n477,69,17.0\n477,70,17.5\n477,71,18.0\n477,72,18.5\n477,73,19.0\n477,74,19.5\n477,75,9.0\n477,76,8.5\n477,77,8.0\n477,78,8.5\n477,79,9.0\n477,80,9.5\n477,81,10.0\n477,82,10.5\n477,83,11.0\n477,84,11.5\n477,85,12.0\n477,86,12.5\n477,87,13.0\n477,88,13.5\n477,89,14.0\n477,90,14.5\n477,91,15.0\n477,92,15.5\n477,93,16.0\n477,94,16.5\n477,95,17.0\n477,96,17.5\n477,97,18.0\n477,98,18.5\n477,99,19.0\n477,100,8.5\n477,101,8.0\n477,102,7.5\n477,103,8.0\n477,104,8.5\n477,105,9.0\n477,106,9.5\n477,107,10.0\n477,108,10.5\n477,109,11.0\n477,110,11.5\n477,111,12.0\n477,112,12.5\n477,113,13.0\n477,114,13.5\n477,115,14.0\n477,116,14.5\n477,117,15.0\n477,118,15.5\n477,119,16.0\n477,120,16.5\n477,121,17.0\n477,122,17.5\n477,123,18.0\n477,124,18.5\n477,125,8.0\n477,126,7.5\n477,127,7.0\n477,128,7.5\n477,129,8.0\n477,130,8.5\n477,131,9.0\n477,132,9.5\n477,133,10.0\n477,134,10.5\n477,135,11.0\n477,136,11.5\n477,137,12.0\n477,138,12.5\n477,139,13.0\n477,140,13.5\n477,141,14.0\n477,142,14.5\n477,143,15.0\n477,144,15.5\n477,145,16.0\n477,146,16.5\n477,147,17.0\n477,148,17.5\n477,149,18.0\n477,150,7.5\n477,151,7.0\n477,152,6.5\n477,153,7.0\n477,154,7.5\n477,155,8.0\n477,156,8.5\n477,157,9.0\n477,158,9.5\n477,159,10.0\n477,160,10.5\n477,161,11.0\n477,162,11.5\n477,163,12.0\n477,164,12.5\n477,165,13.0\n477,166,13.5\n477,167,14.0\n477,168,14.5\n477,169,15.0\n477,170,15.5\n477,171,16.0\n477,172,16.5\n477,173,17.0\n477,174,17.5\n477,175,7.0\n477,176,6.5\n477,177,6.0\n477,178,6.5\n477,179,7.0\n477,180,7.5\n477,181,8.0\n477,182,8.5\n477,183,9.0\n477,184,9.5\n477,185,10.0\n477,186,10.5\n477,187,11.0\n477,188,11.5\n477,189,12.0\n477,190,12.5\n477,191,13.0\n477,192,13.5\n477,193,14.0\n477,194,14.5\n477,195,15.0\n477,196,15.5\n477,197,16.0\n477,198,16.5\n477,199,17.0\n477,200,6.5\n477,201,6.0\n477,202,5.5\n477,203,6.0\n477,204,6.5\n477,205,7.0\n477,206,7.5\n477,207,8.0\n477,208,8.5\n477,209,9.0\n477,210,9.5\n477,211,10.0\n477,212,10.5\n477,213,11.0\n477,214,11.5\n477,215,12.0\n477,216,12.5\n477,217,13.0\n477,218,13.5\n477,219,14.0\n477,220,14.5\n477,221,15.0\n477,222,15.5\n477,223,16.0\n477,224,16.5\n477,225,6.0\n477,226,5.5\n477,227,5.0\n477,228,5.5\n477,229,6.0\n477,230,6.5\n477,231,7.0\n477,232,7.5\n477,233,8.0\n477,234,8.5\n477,235,9.0\n477,236,9.5\n477,237,10.0\n477,238,10.5\n477,239,11.0\n477,240,11.5\n477,241,12.0\n477,242,12.5\n477,243,13.0\n477,244,13.5\n477,245,14.0\n477,246,14.5\n477,247,15.0\n477,248,15.5\n477,249,16.0\n477,250,5.5\n477,251,5.0\n477,252,4.5\n477,253,5.0\n477,254,5.5\n477,255,6.0\n477,256,6.5\n477,257,7.0\n477,258,7.5\n477,259,8.0\n477,260,8.5\n477,261,9.0\n477,262,9.5\n477,263,10.0\n477,264,10.5\n477,265,11.0\n477,266,11.5\n477,267,12.0\n477,268,12.5\n477,269,13.0\n477,270,13.5\n477,271,14.0\n477,272,14.5\n477,273,15.0\n477,274,15.5\n477,275,5.0\n477,276,4.5\n477,277,4.0\n477,278,4.5\n477,279,5.0\n477,280,5.5\n477,281,6.0\n477,282,6.5\n477,283,7.0\n477,284,7.5\n477,285,8.0\n477,286,8.5\n477,287,9.0\n477,288,9.5\n477,289,10.0\n477,290,10.5\n477,291,11.0\n477,292,11.5\n477,293,12.0\n477,294,12.5\n477,295,13.0\n477,296,13.5\n477,297,14.0\n477,298,14.5\n477,299,15.0\n477,300,4.5\n477,301,4.0\n477,302,3.5\n477,303,4.0\n477,304,4.5\n477,305,5.0\n477,306,5.5\n477,307,6.0\n477,308,6.5\n477,309,7.0\n477,310,7.5\n477,311,8.0\n477,312,8.5\n477,313,9.0\n477,314,9.5\n477,315,10.0\n477,316,10.5\n477,317,11.0\n477,318,11.5\n477,319,12.0\n477,320,12.5\n477,321,13.0\n477,322,13.5\n477,323,14.0\n477,324,14.5\n477,325,4.0\n477,326,3.5\n477,327,3.0\n477,328,3.5\n477,329,4.0\n477,330,4.5\n477,331,5.0\n477,332,5.5\n477,333,6.0\n477,334,6.5\n477,335,7.0\n477,336,7.5\n477,337,8.0\n477,338,8.5\n477,339,9.0\n477,340,9.5\n477,341,10.0\n477,342,10.5\n477,343,11.0\n477,344,11.5\n477,345,12.0\n477,346,12.5\n477,347,13.0\n477,348,13.5\n477,349,14.0\n477,350,3.5\n477,351,3.0\n477,352,2.5\n477,353,3.0\n477,354,3.5\n477,355,4.0\n477,356,4.5\n477,357,5.0\n477,358,5.5\n477,359,6.0\n477,360,6.5\n477,361,7.0\n477,362,7.5\n477,363,8.0\n477,364,8.5\n477,365,9.0\n477,366,9.5\n477,367,10.0\n477,368,10.5\n477,369,11.0\n477,370,11.5\n477,371,12.0\n477,372,12.5\n477,373,13.0\n477,374,13.5\n477,375,3.0\n477,376,2.5\n477,377,2.0\n477,378,2.5\n477,379,3.0\n477,380,3.5\n477,381,4.0\n477,382,4.5\n477,383,5.0\n477,384,5.5\n477,385,6.0\n477,386,6.5\n477,387,7.0\n477,388,7.5\n477,389,8.0\n477,390,8.5\n477,391,9.0\n477,392,9.5\n477,393,10.0\n477,394,10.5\n477,395,11.0\n477,396,11.5\n477,397,12.0\n477,398,12.5\n477,399,13.0\n477,400,2.5\n477,401,2.0\n477,402,1.5\n477,403,2.0\n477,404,2.5\n477,405,3.0\n477,406,3.5\n477,407,4.0\n477,408,4.5\n477,409,5.0\n477,410,5.5\n477,411,6.0\n477,412,6.5\n477,413,7.0\n477,414,7.5\n477,415,8.0\n477,416,8.5\n477,417,9.0\n477,418,9.5\n477,419,10.0\n477,420,10.5\n477,421,11.0\n477,422,11.5\n477,423,12.0\n477,424,12.5\n477,425,2.0\n477,426,1.5\n477,427,1.0\n477,428,1.5\n477,429,2.0\n477,430,2.5\n477,431,3.0\n477,432,3.5\n477,433,4.0\n477,434,4.5\n477,435,5.0\n477,436,5.5\n477,437,6.0\n477,438,6.5\n477,439,7.0\n477,440,7.5\n477,441,8.0\n477,442,8.5\n477,443,9.0\n477,444,9.5\n477,445,10.0\n477,446,10.5\n477,447,11.0\n477,448,11.5\n477,449,12.0\n477,450,1.5\n477,451,1.0\n477,452,0.5\n477,453,1.0\n477,454,1.5\n477,455,2.0\n477,456,2.5\n477,457,3.0\n477,458,3.5\n477,459,4.0\n477,460,4.5\n477,461,5.0\n477,462,5.5\n477,463,6.0\n477,464,6.5\n477,465,7.0\n477,466,7.5\n477,467,8.0\n477,468,8.5\n477,469,9.0\n477,470,9.5\n477,471,10.0\n477,472,10.5\n477,473,11.0\n477,474,11.5\n477,475,1.0\n477,476,0.5\n477,477,0\n477,478,0.5\n477,479,1.0\n477,480,1.5\n477,481,2.0\n477,482,2.5\n477,483,3.0\n477,484,3.5\n477,485,4.0\n477,486,4.5\n477,487,5.0\n477,488,5.5\n477,489,6.0\n477,490,6.5\n477,491,7.0\n477,492,7.5\n477,493,8.0\n477,494,8.5\n477,495,9.0\n477,496,9.5\n477,497,10.0\n477,498,10.5\n477,499,11.0\n477,500,1.5\n477,501,1.0\n477,502,0.5\n477,503,1.0\n477,504,1.5\n477,505,2.0\n477,506,2.5\n477,507,3.0\n477,508,3.5\n477,509,4.0\n477,510,4.5\n477,511,5.0\n477,512,5.5\n477,513,6.0\n477,514,6.5\n477,515,7.0\n477,516,7.5\n477,517,8.0\n477,518,8.5\n477,519,9.0\n477,520,9.5\n477,521,10.0\n477,522,10.5\n477,523,11.0\n477,524,11.5\n477,525,2.0\n477,526,1.5\n477,527,1.0\n477,528,1.5\n477,529,2.0\n477,530,2.5\n477,531,3.0\n477,532,3.5\n477,533,4.0\n477,534,4.5\n477,535,5.0\n477,536,5.5\n477,537,6.0\n477,538,6.5\n477,539,7.0\n477,540,7.5\n477,541,8.0\n477,542,8.5\n477,543,9.0\n477,544,9.5\n477,545,10.0\n477,546,10.5\n477,547,11.0\n477,548,11.5\n477,549,12.0\n477,550,2.5\n477,551,2.0\n477,552,1.5\n477,553,2.0\n477,554,2.5\n477,555,3.0\n477,556,3.5\n477,557,4.0\n477,558,4.5\n477,559,5.0\n477,560,5.5\n477,561,6.0\n477,562,6.5\n477,563,7.0\n477,564,7.5\n477,565,8.0\n477,566,8.5\n477,567,9.0\n477,568,9.5\n477,569,10.0\n477,570,10.5\n477,571,11.0\n477,572,11.5\n477,573,12.0\n477,574,12.5\n477,575,3.0\n477,576,2.5\n477,577,2.0\n477,578,2.5\n477,579,3.0\n477,580,3.5\n477,581,4.0\n477,582,4.5\n477,583,5.0\n477,584,5.5\n477,585,6.0\n477,586,6.5\n477,587,7.0\n477,588,7.5\n477,589,8.0\n477,590,8.5\n477,591,9.0\n477,592,9.5\n477,593,10.0\n477,594,10.5\n477,595,11.0\n477,596,11.5\n477,597,12.0\n477,598,12.5\n477,599,13.0\n477,600,3.5\n477,601,3.0\n477,602,2.5\n477,603,3.0\n477,604,3.5\n477,605,4.0\n477,606,4.5\n477,607,5.0\n477,608,5.5\n477,609,6.0\n477,610,6.5\n477,611,7.0\n477,612,7.5\n477,613,8.0\n477,614,8.5\n477,615,9.0\n477,616,9.5\n477,617,10.0\n477,618,10.5\n477,619,11.0\n477,620,11.5\n477,621,12.0\n477,622,12.5\n477,623,13.0\n477,624,13.5\n478,0,11.0\n478,1,10.5\n478,2,10.0\n478,3,9.5\n478,4,10.0\n478,5,10.5\n478,6,11.0\n478,7,11.5\n478,8,12.0\n478,9,12.5\n478,10,13.0\n478,11,13.5\n478,12,14.0\n478,13,14.5\n478,14,15.0\n478,15,15.5\n478,16,16.0\n478,17,16.5\n478,18,17.0\n478,19,17.5\n478,20,18.0\n478,21,18.5\n478,22,19.0\n478,23,19.5\n478,24,20.0\n478,25,10.5\n478,26,10.0\n478,27,9.5\n478,28,9.0\n478,29,9.5\n478,30,10.0\n478,31,10.5\n478,32,11.0\n478,33,11.5\n478,34,12.0\n478,35,12.5\n478,36,13.0\n478,37,13.5\n478,38,14.0\n478,39,14.5\n478,40,15.0\n478,41,15.5\n478,42,16.0\n478,43,16.5\n478,44,17.0\n478,45,17.5\n478,46,18.0\n478,47,18.5\n478,48,19.0\n478,49,19.5\n478,50,10.0\n478,51,9.5\n478,52,9.0\n478,53,8.5\n478,54,9.0\n478,55,9.5\n478,56,10.0\n478,57,10.5\n478,58,11.0\n478,59,11.5\n478,60,12.0\n478,61,12.5\n478,62,13.0\n478,63,13.5\n478,64,14.0\n478,65,14.5\n478,66,15.0\n478,67,15.5\n478,68,16.0\n478,69,16.5\n478,70,17.0\n478,71,17.5\n478,72,18.0\n478,73,18.5\n478,74,19.0\n478,75,9.5\n478,76,9.0\n478,77,8.5\n478,78,8.0\n478,79,8.5\n478,80,9.0\n478,81,9.5\n478,82,10.0\n478,83,10.5\n478,84,11.0\n478,85,11.5\n478,86,12.0\n478,87,12.5\n478,88,13.0\n478,89,13.5\n478,90,14.0\n478,91,14.5\n478,92,15.0\n478,93,15.5\n478,94,16.0\n478,95,16.5\n478,96,17.0\n478,97,17.5\n478,98,18.0\n478,99,18.5\n478,100,9.0\n478,101,8.5\n478,102,8.0\n478,103,7.5\n478,104,8.0\n478,105,8.5\n478,106,9.0\n478,107,9.5\n478,108,10.0\n478,109,10.5\n478,110,11.0\n478,111,11.5\n478,112,12.0\n478,113,12.5\n478,114,13.0\n478,115,13.5\n478,116,14.0\n478,117,14.5\n478,118,15.0\n478,119,15.5\n478,120,16.0\n478,121,16.5\n478,122,17.0\n478,123,17.5\n478,124,18.0\n478,125,8.5\n478,126,8.0\n478,127,7.5\n478,128,7.0\n478,129,7.5\n478,130,8.0\n478,131,8.5\n478,132,9.0\n478,133,9.5\n478,134,10.0\n478,135,10.5\n478,136,11.0\n478,137,11.5\n478,138,12.0\n478,139,12.5\n478,140,13.0\n478,141,13.5\n478,142,14.0\n478,143,14.5\n478,144,15.0\n478,145,15.5\n478,146,16.0\n478,147,16.5\n478,148,17.0\n478,149,17.5\n478,150,8.0\n478,151,7.5\n478,152,7.0\n478,153,6.5\n478,154,7.0\n478,155,7.5\n478,156,8.0\n478,157,8.5\n478,158,9.0\n478,159,9.5\n478,160,10.0\n478,161,10.5\n478,162,11.0\n478,163,11.5\n478,164,12.0\n478,165,12.5\n478,166,13.0\n478,167,13.5\n478,168,14.0\n478,169,14.5\n478,170,15.0\n478,171,15.5\n478,172,16.0\n478,173,16.5\n478,174,17.0\n478,175,7.5\n478,176,7.0\n478,177,6.5\n478,178,6.0\n478,179,6.5\n478,180,7.0\n478,181,7.5\n478,182,8.0\n478,183,8.5\n478,184,9.0\n478,185,9.5\n478,186,10.0\n478,187,10.5\n478,188,11.0\n478,189,11.5\n478,190,12.0\n478,191,12.5\n478,192,13.0\n478,193,13.5\n478,194,14.0\n478,195,14.5\n478,196,15.0\n478,197,15.5\n478,198,16.0\n478,199,16.5\n478,200,7.0\n478,201,6.5\n478,202,6.0\n478,203,5.5\n478,204,6.0\n478,205,6.5\n478,206,7.0\n478,207,7.5\n478,208,8.0\n478,209,8.5\n478,210,9.0\n478,211,9.5\n478,212,10.0\n478,213,10.5\n478,214,11.0\n478,215,11.5\n478,216,12.0\n478,217,12.5\n478,218,13.0\n478,219,13.5\n478,220,14.0\n478,221,14.5\n478,222,15.0\n478,223,15.5\n478,224,16.0\n478,225,6.5\n478,226,6.0\n478,227,5.5\n478,228,5.0\n478,229,5.5\n478,230,6.0\n478,231,6.5\n478,232,7.0\n478,233,7.5\n478,234,8.0\n478,235,8.5\n478,236,9.0\n478,237,9.5\n478,238,10.0\n478,239,10.5\n478,240,11.0\n478,241,11.5\n478,242,12.0\n478,243,12.5\n478,244,13.0\n478,245,13.5\n478,246,14.0\n478,247,14.5\n478,248,15.0\n478,249,15.5\n478,250,6.0\n478,251,5.5\n478,252,5.0\n478,253,4.5\n478,254,5.0\n478,255,5.5\n478,256,6.0\n478,257,6.5\n478,258,7.0\n478,259,7.5\n478,260,8.0\n478,261,8.5\n478,262,9.0\n478,263,9.5\n478,264,10.0\n478,265,10.5\n478,266,11.0\n478,267,11.5\n478,268,12.0\n478,269,12.5\n478,270,13.0\n478,271,13.5\n478,272,14.0\n478,273,14.5\n478,274,15.0\n478,275,5.5\n478,276,5.0\n478,277,4.5\n478,278,4.0\n478,279,4.5\n478,280,5.0\n478,281,5.5\n478,282,6.0\n478,283,6.5\n478,284,7.0\n478,285,7.5\n478,286,8.0\n478,287,8.5\n478,288,9.0\n478,289,9.5\n478,290,10.0\n478,291,10.5\n478,292,11.0\n478,293,11.5\n478,294,12.0\n478,295,12.5\n478,296,13.0\n478,297,13.5\n478,298,14.0\n478,299,14.5\n478,300,5.0\n478,301,4.5\n478,302,4.0\n478,303,3.5\n478,304,4.0\n478,305,4.5\n478,306,5.0\n478,307,5.5\n478,308,6.0\n478,309,6.5\n478,310,7.0\n478,311,7.5\n478,312,8.0\n478,313,8.5\n478,314,9.0\n478,315,9.5\n478,316,10.0\n478,317,10.5\n478,318,11.0\n478,319,11.5\n478,320,12.0\n478,321,12.5\n478,322,13.0\n478,323,13.5\n478,324,14.0\n478,325,4.5\n478,326,4.0\n478,327,3.5\n478,328,3.0\n478,329,3.5\n478,330,4.0\n478,331,4.5\n478,332,5.0\n478,333,5.5\n478,334,6.0\n478,335,6.5\n478,336,7.0\n478,337,7.5\n478,338,8.0\n478,339,8.5\n478,340,9.0\n478,341,9.5\n478,342,10.0\n478,343,10.5\n478,344,11.0\n478,345,11.5\n478,346,12.0\n478,347,12.5\n478,348,13.0\n478,349,13.5\n478,350,4.0\n478,351,3.5\n478,352,3.0\n478,353,2.5\n478,354,3.0\n478,355,3.5\n478,356,4.0\n478,357,4.5\n478,358,5.0\n478,359,5.5\n478,360,6.0\n478,361,6.5\n478,362,7.0\n478,363,7.5\n478,364,8.0\n478,365,8.5\n478,366,9.0\n478,367,9.5\n478,368,10.0\n478,369,10.5\n478,370,11.0\n478,371,11.5\n478,372,12.0\n478,373,12.5\n478,374,13.0\n478,375,3.5\n478,376,3.0\n478,377,2.5\n478,378,2.0\n478,379,2.5\n478,380,3.0\n478,381,3.5\n478,382,4.0\n478,383,4.5\n478,384,5.0\n478,385,5.5\n478,386,6.0\n478,387,6.5\n478,388,7.0\n478,389,7.5\n478,390,8.0\n478,391,8.5\n478,392,9.0\n478,393,9.5\n478,394,10.0\n478,395,10.5\n478,396,11.0\n478,397,11.5\n478,398,12.0\n478,399,12.5\n478,400,3.0\n478,401,2.5\n478,402,2.0\n478,403,1.5\n478,404,2.0\n478,405,2.5\n478,406,3.0\n478,407,3.5\n478,408,4.0\n478,409,4.5\n478,410,5.0\n478,411,5.5\n478,412,6.0\n478,413,6.5\n478,414,7.0\n478,415,7.5\n478,416,8.0\n478,417,8.5\n478,418,9.0\n478,419,9.5\n478,420,10.0\n478,421,10.5\n478,422,11.0\n478,423,11.5\n478,424,12.0\n478,425,2.5\n478,426,2.0\n478,427,1.5\n478,428,1.0\n478,429,1.5\n478,430,2.0\n478,431,2.5\n478,432,3.0\n478,433,3.5\n478,434,4.0\n478,435,4.5\n478,436,5.0\n478,437,5.5\n478,438,6.0\n478,439,6.5\n478,440,7.0\n478,441,7.5\n478,442,8.0\n478,443,8.5\n478,444,9.0\n478,445,9.5\n478,446,10.0\n478,447,10.5\n478,448,11.0\n478,449,11.5\n478,450,2.0\n478,451,1.5\n478,452,1.0\n478,453,0.5\n478,454,1.0\n478,455,1.5\n478,456,2.0\n478,457,2.5\n478,458,3.0\n478,459,3.5\n478,460,4.0\n478,461,4.5\n478,462,5.0\n478,463,5.5\n478,464,6.0\n478,465,6.5\n478,466,7.0\n478,467,7.5\n478,468,8.0\n478,469,8.5\n478,470,9.0\n478,471,9.5\n478,472,10.0\n478,473,10.5\n478,474,11.0\n478,475,1.5\n478,476,1.0\n478,477,0.5\n478,478,0\n478,479,0.5\n478,480,1.0\n478,481,1.5\n478,482,2.0\n478,483,2.5\n478,484,3.0\n478,485,3.5\n478,486,4.0\n478,487,4.5\n478,488,5.0\n478,489,5.5\n478,490,6.0\n478,491,6.5\n478,492,7.0\n478,493,7.5\n478,494,8.0\n478,495,8.5\n478,496,9.0\n478,497,9.5\n478,498,10.0\n478,499,10.5\n478,500,2.0\n478,501,1.5\n478,502,1.0\n478,503,0.5\n478,504,1.0\n478,505,1.5\n478,506,2.0\n478,507,2.5\n478,508,3.0\n478,509,3.5\n478,510,4.0\n478,511,4.5\n478,512,5.0\n478,513,5.5\n478,514,6.0\n478,515,6.5\n478,516,7.0\n478,517,7.5\n478,518,8.0\n478,519,8.5\n478,520,9.0\n478,521,9.5\n478,522,10.0\n478,523,10.5\n478,524,11.0\n478,525,2.5\n478,526,2.0\n478,527,1.5\n478,528,1.0\n478,529,1.5\n478,530,2.0\n478,531,2.5\n478,532,3.0\n478,533,3.5\n478,534,4.0\n478,535,4.5\n478,536,5.0\n478,537,5.5\n478,538,6.0\n478,539,6.5\n478,540,7.0\n478,541,7.5\n478,542,8.0\n478,543,8.5\n478,544,9.0\n478,545,9.5\n478,546,10.0\n478,547,10.5\n478,548,11.0\n478,549,11.5\n478,550,3.0\n478,551,2.5\n478,552,2.0\n478,553,1.5\n478,554,2.0\n478,555,2.5\n478,556,3.0\n478,557,3.5\n478,558,4.0\n478,559,4.5\n478,560,5.0\n478,561,5.5\n478,562,6.0\n478,563,6.5\n478,564,7.0\n478,565,7.5\n478,566,8.0\n478,567,8.5\n478,568,9.0\n478,569,9.5\n478,570,10.0\n478,571,10.5\n478,572,11.0\n478,573,11.5\n478,574,12.0\n478,575,3.5\n478,576,3.0\n478,577,2.5\n478,578,2.0\n478,579,2.5\n478,580,3.0\n478,581,3.5\n478,582,4.0\n478,583,4.5\n478,584,5.0\n478,585,5.5\n478,586,6.0\n478,587,6.5\n478,588,7.0\n478,589,7.5\n478,590,8.0\n478,591,8.5\n478,592,9.0\n478,593,9.5\n478,594,10.0\n478,595,10.5\n478,596,11.0\n478,597,11.5\n478,598,12.0\n478,599,12.5\n478,600,4.0\n478,601,3.5\n478,602,3.0\n478,603,2.5\n478,604,3.0\n478,605,3.5\n478,606,4.0\n478,607,4.5\n478,608,5.0\n478,609,5.5\n478,610,6.0\n478,611,6.5\n478,612,7.0\n478,613,7.5\n478,614,8.0\n478,615,8.5\n478,616,9.0\n478,617,9.5\n478,618,10.0\n478,619,10.5\n478,620,11.0\n478,621,11.5\n478,622,12.0\n478,623,12.5\n478,624,13.0\n479,0,11.5\n479,1,11.0\n479,2,10.5\n479,3,10.0\n479,4,9.5\n479,5,10.0\n479,6,10.5\n479,7,11.0\n479,8,11.5\n479,9,12.0\n479,10,12.5\n479,11,13.0\n479,12,13.5\n479,13,14.0\n479,14,14.5\n479,15,15.0\n479,16,15.5\n479,17,16.0\n479,18,16.5\n479,19,17.0\n479,20,17.5\n479,21,18.0\n479,22,18.5\n479,23,19.0\n479,24,19.5\n479,25,11.0\n479,26,10.5\n479,27,10.0\n479,28,9.5\n479,29,9.0\n479,30,9.5\n479,31,10.0\n479,32,10.5\n479,33,11.0\n479,34,11.5\n479,35,12.0\n479,36,12.5\n479,37,13.0\n479,38,13.5\n479,39,14.0\n479,40,14.5\n479,41,15.0\n479,42,15.5\n479,43,16.0\n479,44,16.5\n479,45,17.0\n479,46,17.5\n479,47,18.0\n479,48,18.5\n479,49,19.0\n479,50,10.5\n479,51,10.0\n479,52,9.5\n479,53,9.0\n479,54,8.5\n479,55,9.0\n479,56,9.5\n479,57,10.0\n479,58,10.5\n479,59,11.0\n479,60,11.5\n479,61,12.0\n479,62,12.5\n479,63,13.0\n479,64,13.5\n479,65,14.0\n479,66,14.5\n479,67,15.0\n479,68,15.5\n479,69,16.0\n479,70,16.5\n479,71,17.0\n479,72,17.5\n479,73,18.0\n479,74,18.5\n479,75,10.0\n479,76,9.5\n479,77,9.0\n479,78,8.5\n479,79,8.0\n479,80,8.5\n479,81,9.0\n479,82,9.5\n479,83,10.0\n479,84,10.5\n479,85,11.0\n479,86,11.5\n479,87,12.0\n479,88,12.5\n479,89,13.0\n479,90,13.5\n479,91,14.0\n479,92,14.5\n479,93,15.0\n479,94,15.5\n479,95,16.0\n479,96,16.5\n479,97,17.0\n479,98,17.5\n479,99,18.0\n479,100,9.5\n479,101,9.0\n479,102,8.5\n479,103,8.0\n479,104,7.5\n479,105,8.0\n479,106,8.5\n479,107,9.0\n479,108,9.5\n479,109,10.0\n479,110,10.5\n479,111,11.0\n479,112,11.5\n479,113,12.0\n479,114,12.5\n479,115,13.0\n479,116,13.5\n479,117,14.0\n479,118,14.5\n479,119,15.0\n479,120,15.5\n479,121,16.0\n479,122,16.5\n479,123,17.0\n479,124,17.5\n479,125,9.0\n479,126,8.5\n479,127,8.0\n479,128,7.5\n479,129,7.0\n479,130,7.5\n479,131,8.0\n479,132,8.5\n479,133,9.0\n479,134,9.5\n479,135,10.0\n479,136,10.5\n479,137,11.0\n479,138,11.5\n479,139,12.0\n479,140,12.5\n479,141,13.0\n479,142,13.5\n479,143,14.0\n479,144,14.5\n479,145,15.0\n479,146,15.5\n479,147,16.0\n479,148,16.5\n479,149,17.0\n479,150,8.5\n479,151,8.0\n479,152,7.5\n479,153,7.0\n479,154,6.5\n479,155,7.0\n479,156,7.5\n479,157,8.0\n479,158,8.5\n479,159,9.0\n479,160,9.5\n479,161,10.0\n479,162,10.5\n479,163,11.0\n479,164,11.5\n479,165,12.0\n479,166,12.5\n479,167,13.0\n479,168,13.5\n479,169,14.0\n479,170,14.5\n479,171,15.0\n479,172,15.5\n479,173,16.0\n479,174,16.5\n479,175,8.0\n479,176,7.5\n479,177,7.0\n479,178,6.5\n479,179,6.0\n479,180,6.5\n479,181,7.0\n479,182,7.5\n479,183,8.0\n479,184,8.5\n479,185,9.0\n479,186,9.5\n479,187,10.0\n479,188,10.5\n479,189,11.0\n479,190,11.5\n479,191,12.0\n479,192,12.5\n479,193,13.0\n479,194,13.5\n479,195,14.0\n479,196,14.5\n479,197,15.0\n479,198,15.5\n479,199,16.0\n479,200,7.5\n479,201,7.0\n479,202,6.5\n479,203,6.0\n479,204,5.5\n479,205,6.0\n479,206,6.5\n479,207,7.0\n479,208,7.5\n479,209,8.0\n479,210,8.5\n479,211,9.0\n479,212,9.5\n479,213,10.0\n479,214,10.5\n479,215,11.0\n479,216,11.5\n479,217,12.0\n479,218,12.5\n479,219,13.0\n479,220,13.5\n479,221,14.0\n479,222,14.5\n479,223,15.0\n479,224,15.5\n479,225,7.0\n479,226,6.5\n479,227,6.0\n479,228,5.5\n479,229,5.0\n479,230,5.5\n479,231,6.0\n479,232,6.5\n479,233,7.0\n479,234,7.5\n479,235,8.0\n479,236,8.5\n479,237,9.0\n479,238,9.5\n479,239,10.0\n479,240,10.5\n479,241,11.0\n479,242,11.5\n479,243,12.0\n479,244,12.5\n479,245,13.0\n479,246,13.5\n479,247,14.0\n479,248,14.5\n479,249,15.0\n479,250,6.5\n479,251,6.0\n479,252,5.5\n479,253,5.0\n479,254,4.5\n479,255,5.0\n479,256,5.5\n479,257,6.0\n479,258,6.5\n479,259,7.0\n479,260,7.5\n479,261,8.0\n479,262,8.5\n479,263,9.0\n479,264,9.5\n479,265,10.0\n479,266,10.5\n479,267,11.0\n479,268,11.5\n479,269,12.0\n479,270,12.5\n479,271,13.0\n479,272,13.5\n479,273,14.0\n479,274,14.5\n479,275,6.0\n479,276,5.5\n479,277,5.0\n479,278,4.5\n479,279,4.0\n479,280,4.5\n479,281,5.0\n479,282,5.5\n479,283,6.0\n479,284,6.5\n479,285,7.0\n479,286,7.5\n479,287,8.0\n479,288,8.5\n479,289,9.0\n479,290,9.5\n479,291,10.0\n479,292,10.5\n479,293,11.0\n479,294,11.5\n479,295,12.0\n479,296,12.5\n479,297,13.0\n479,298,13.5\n479,299,14.0\n479,300,5.5\n479,301,5.0\n479,302,4.5\n479,303,4.0\n479,304,3.5\n479,305,4.0\n479,306,4.5\n479,307,5.0\n479,308,5.5\n479,309,6.0\n479,310,6.5\n479,311,7.0\n479,312,7.5\n479,313,8.0\n479,314,8.5\n479,315,9.0\n479,316,9.5\n479,317,10.0\n479,318,10.5\n479,319,11.0\n479,320,11.5\n479,321,12.0\n479,322,12.5\n479,323,13.0\n479,324,13.5\n479,325,5.0\n479,326,4.5\n479,327,4.0\n479,328,3.5\n479,329,3.0\n479,330,3.5\n479,331,4.0\n479,332,4.5\n479,333,5.0\n479,334,5.5\n479,335,6.0\n479,336,6.5\n479,337,7.0\n479,338,7.5\n479,339,8.0\n479,340,8.5\n479,341,9.0\n479,342,9.5\n479,343,10.0\n479,344,10.5\n479,345,11.0\n479,346,11.5\n479,347,12.0\n479,348,12.5\n479,349,13.0\n479,350,4.5\n479,351,4.0\n479,352,3.5\n479,353,3.0\n479,354,2.5\n479,355,3.0\n479,356,3.5\n479,357,4.0\n479,358,4.5\n479,359,5.0\n479,360,5.5\n479,361,6.0\n479,362,6.5\n479,363,7.0\n479,364,7.5\n479,365,8.0\n479,366,8.5\n479,367,9.0\n479,368,9.5\n479,369,10.0\n479,370,10.5\n479,371,11.0\n479,372,11.5\n479,373,12.0\n479,374,12.5\n479,375,4.0\n479,376,3.5\n479,377,3.0\n479,378,2.5\n479,379,2.0\n479,380,2.5\n479,381,3.0\n479,382,3.5\n479,383,4.0\n479,384,4.5\n479,385,5.0\n479,386,5.5\n479,387,6.0\n479,388,6.5\n479,389,7.0\n479,390,7.5\n479,391,8.0\n479,392,8.5\n479,393,9.0\n479,394,9.5\n479,395,10.0\n479,396,10.5\n479,397,11.0\n479,398,11.5\n479,399,12.0\n479,400,3.5\n479,401,3.0\n479,402,2.5\n479,403,2.0\n479,404,1.5\n479,405,2.0\n479,406,2.5\n479,407,3.0\n479,408,3.5\n479,409,4.0\n479,410,4.5\n479,411,5.0\n479,412,5.5\n479,413,6.0\n479,414,6.5\n479,415,7.0\n479,416,7.5\n479,417,8.0\n479,418,8.5\n479,419,9.0\n479,420,9.5\n479,421,10.0\n479,422,10.5\n479,423,11.0\n479,424,11.5\n479,425,3.0\n479,426,2.5\n479,427,2.0\n479,428,1.5\n479,429,1.0\n479,430,1.5\n479,431,2.0\n479,432,2.5\n479,433,3.0\n479,434,3.5\n479,435,4.0\n479,436,4.5\n479,437,5.0\n479,438,5.5\n479,439,6.0\n479,440,6.5\n479,441,7.0\n479,442,7.5\n479,443,8.0\n479,444,8.5\n479,445,9.0\n479,446,9.5\n479,447,10.0\n479,448,10.5\n479,449,11.0\n479,450,2.5\n479,451,2.0\n479,452,1.5\n479,453,1.0\n479,454,0.5\n479,455,1.0\n479,456,1.5\n479,457,2.0\n479,458,2.5\n479,459,3.0\n479,460,3.5\n479,461,4.0\n479,462,4.5\n479,463,5.0\n479,464,5.5\n479,465,6.0\n479,466,6.5\n479,467,7.0\n479,468,7.5\n479,469,8.0\n479,470,8.5\n479,471,9.0\n479,472,9.5\n479,473,10.0\n479,474,10.5\n479,475,2.0\n479,476,1.5\n479,477,1.0\n479,478,0.5\n479,479,0\n479,480,0.5\n479,481,1.0\n479,482,1.5\n479,483,2.0\n479,484,2.5\n479,485,3.0\n479,486,3.5\n479,487,4.0\n479,488,4.5\n479,489,5.0\n479,490,5.5\n479,491,6.0\n479,492,6.5\n479,493,7.0\n479,494,7.5\n479,495,8.0\n479,496,8.5\n479,497,9.0\n479,498,9.5\n479,499,10.0\n479,500,2.5\n479,501,2.0\n479,502,1.5\n479,503,1.0\n479,504,0.5\n479,505,1.0\n479,506,1.5\n479,507,2.0\n479,508,2.5\n479,509,3.0\n479,510,3.5\n479,511,4.0\n479,512,4.5\n479,513,5.0\n479,514,5.5\n479,515,6.0\n479,516,6.5\n479,517,7.0\n479,518,7.5\n479,519,8.0\n479,520,8.5\n479,521,9.0\n479,522,9.5\n479,523,10.0\n479,524,10.5\n479,525,3.0\n479,526,2.5\n479,527,2.0\n479,528,1.5\n479,529,1.0\n479,530,1.5\n479,531,2.0\n479,532,2.5\n479,533,3.0\n479,534,3.5\n479,535,4.0\n479,536,4.5\n479,537,5.0\n479,538,5.5\n479,539,6.0\n479,540,6.5\n479,541,7.0\n479,542,7.5\n479,543,8.0\n479,544,8.5\n479,545,9.0\n479,546,9.5\n479,547,10.0\n479,548,10.5\n479,549,11.0\n479,550,3.5\n479,551,3.0\n479,552,2.5\n479,553,2.0\n479,554,1.5\n479,555,2.0\n479,556,2.5\n479,557,3.0\n479,558,3.5\n479,559,4.0\n479,560,4.5\n479,561,5.0\n479,562,5.5\n479,563,6.0\n479,564,6.5\n479,565,7.0\n479,566,7.5\n479,567,8.0\n479,568,8.5\n479,569,9.0\n479,570,9.5\n479,571,10.0\n479,572,10.5\n479,573,11.0\n479,574,11.5\n479,575,4.0\n479,576,3.5\n479,577,3.0\n479,578,2.5\n479,579,2.0\n479,580,2.5\n479,581,3.0\n479,582,3.5\n479,583,4.0\n479,584,4.5\n479,585,5.0\n479,586,5.5\n479,587,6.0\n479,588,6.5\n479,589,7.0\n479,590,7.5\n479,591,8.0\n479,592,8.5\n479,593,9.0\n479,594,9.5\n479,595,10.0\n479,596,10.5\n479,597,11.0\n479,598,11.5\n479,599,12.0\n479,600,4.5\n479,601,4.0\n479,602,3.5\n479,603,3.0\n479,604,2.5\n479,605,3.0\n479,606,3.5\n479,607,4.0\n479,608,4.5\n479,609,5.0\n479,610,5.5\n479,611,6.0\n479,612,6.5\n479,613,7.0\n479,614,7.5\n479,615,8.0\n479,616,8.5\n479,617,9.0\n479,618,9.5\n479,619,10.0\n479,620,10.5\n479,621,11.0\n479,622,11.5\n479,623,12.0\n479,624,12.5\n480,0,12.0\n480,1,11.5\n480,2,11.0\n480,3,10.5\n480,4,10.0\n480,5,9.5\n480,6,10.0\n480,7,10.5\n480,8,11.0\n480,9,11.5\n480,10,12.0\n480,11,12.5\n480,12,13.0\n480,13,13.5\n480,14,14.0\n480,15,14.5\n480,16,15.0\n480,17,15.5\n480,18,16.0\n480,19,16.5\n480,20,17.0\n480,21,17.5\n480,22,18.0\n480,23,18.5\n480,24,19.0\n480,25,11.5\n480,26,11.0\n480,27,10.5\n480,28,10.0\n480,29,9.5\n480,30,9.0\n480,31,9.5\n480,32,10.0\n480,33,10.5\n480,34,11.0\n480,35,11.5\n480,36,12.0\n480,37,12.5\n480,38,13.0\n480,39,13.5\n480,40,14.0\n480,41,14.5\n480,42,15.0\n480,43,15.5\n480,44,16.0\n480,45,16.5\n480,46,17.0\n480,47,17.5\n480,48,18.0\n480,49,18.5\n480,50,11.0\n480,51,10.5\n480,52,10.0\n480,53,9.5\n480,54,9.0\n480,55,8.5\n480,56,9.0\n480,57,9.5\n480,58,10.0\n480,59,10.5\n480,60,11.0\n480,61,11.5\n480,62,12.0\n480,63,12.5\n480,64,13.0\n480,65,13.5\n480,66,14.0\n480,67,14.5\n480,68,15.0\n480,69,15.5\n480,70,16.0\n480,71,16.5\n480,72,17.0\n480,73,17.5\n480,74,18.0\n480,75,10.5\n480,76,10.0\n480,77,9.5\n480,78,9.0\n480,79,8.5\n480,80,8.0\n480,81,8.5\n480,82,9.0\n480,83,9.5\n480,84,10.0\n480,85,10.5\n480,86,11.0\n480,87,11.5\n480,88,12.0\n480,89,12.5\n480,90,13.0\n480,91,13.5\n480,92,14.0\n480,93,14.5\n480,94,15.0\n480,95,15.5\n480,96,16.0\n480,97,16.5\n480,98,17.0\n480,99,17.5\n480,100,10.0\n480,101,9.5\n480,102,9.0\n480,103,8.5\n480,104,8.0\n480,105,7.5\n480,106,8.0\n480,107,8.5\n480,108,9.0\n480,109,9.5\n480,110,10.0\n480,111,10.5\n480,112,11.0\n480,113,11.5\n480,114,12.0\n480,115,12.5\n480,116,13.0\n480,117,13.5\n480,118,14.0\n480,119,14.5\n480,120,15.0\n480,121,15.5\n480,122,16.0\n480,123,16.5\n480,124,17.0\n480,125,9.5\n480,126,9.0\n480,127,8.5\n480,128,8.0\n480,129,7.5\n480,130,7.0\n480,131,7.5\n480,132,8.0\n480,133,8.5\n480,134,9.0\n480,135,9.5\n480,136,10.0\n480,137,10.5\n480,138,11.0\n480,139,11.5\n480,140,12.0\n480,141,12.5\n480,142,13.0\n480,143,13.5\n480,144,14.0\n480,145,14.5\n480,146,15.0\n480,147,15.5\n480,148,16.0\n480,149,16.5\n480,150,9.0\n480,151,8.5\n480,152,8.0\n480,153,7.5\n480,154,7.0\n480,155,6.5\n480,156,7.0\n480,157,7.5\n480,158,8.0\n480,159,8.5\n480,160,9.0\n480,161,9.5\n480,162,10.0\n480,163,10.5\n480,164,11.0\n480,165,11.5\n480,166,12.0\n480,167,12.5\n480,168,13.0\n480,169,13.5\n480,170,14.0\n480,171,14.5\n480,172,15.0\n480,173,15.5\n480,174,16.0\n480,175,8.5\n480,176,8.0\n480,177,7.5\n480,178,7.0\n480,179,6.5\n480,180,6.0\n480,181,6.5\n480,182,7.0\n480,183,7.5\n480,184,8.0\n480,185,8.5\n480,186,9.0\n480,187,9.5\n480,188,10.0\n480,189,10.5\n480,190,11.0\n480,191,11.5\n480,192,12.0\n480,193,12.5\n480,194,13.0\n480,195,13.5\n480,196,14.0\n480,197,14.5\n480,198,15.0\n480,199,15.5\n480,200,8.0\n480,201,7.5\n480,202,7.0\n480,203,6.5\n480,204,6.0\n480,205,5.5\n480,206,6.0\n480,207,6.5\n480,208,7.0\n480,209,7.5\n480,210,8.0\n480,211,8.5\n480,212,9.0\n480,213,9.5\n480,214,10.0\n480,215,10.5\n480,216,11.0\n480,217,11.5\n480,218,12.0\n480,219,12.5\n480,220,13.0\n480,221,13.5\n480,222,14.0\n480,223,14.5\n480,224,15.0\n480,225,7.5\n480,226,7.0\n480,227,6.5\n480,228,6.0\n480,229,5.5\n480,230,5.0\n480,231,5.5\n480,232,6.0\n480,233,6.5\n480,234,7.0\n480,235,7.5\n480,236,8.0\n480,237,8.5\n480,238,9.0\n480,239,9.5\n480,240,10.0\n480,241,10.5\n480,242,11.0\n480,243,11.5\n480,244,12.0\n480,245,12.5\n480,246,13.0\n480,247,13.5\n480,248,14.0\n480,249,14.5\n480,250,7.0\n480,251,6.5\n480,252,6.0\n480,253,5.5\n480,254,5.0\n480,255,4.5\n480,256,5.0\n480,257,5.5\n480,258,6.0\n480,259,6.5\n480,260,7.0\n480,261,7.5\n480,262,8.0\n480,263,8.5\n480,264,9.0\n480,265,9.5\n480,266,10.0\n480,267,10.5\n480,268,11.0\n480,269,11.5\n480,270,12.0\n480,271,12.5\n480,272,13.0\n480,273,13.5\n480,274,14.0\n480,275,6.5\n480,276,6.0\n480,277,5.5\n480,278,5.0\n480,279,4.5\n480,280,4.0\n480,281,4.5\n480,282,5.0\n480,283,5.5\n480,284,6.0\n480,285,6.5\n480,286,7.0\n480,287,7.5\n480,288,8.0\n480,289,8.5\n480,290,9.0\n480,291,9.5\n480,292,10.0\n480,293,10.5\n480,294,11.0\n480,295,11.5\n480,296,12.0\n480,297,12.5\n480,298,13.0\n480,299,13.5\n480,300,6.0\n480,301,5.5\n480,302,5.0\n480,303,4.5\n480,304,4.0\n480,305,3.5\n480,306,4.0\n480,307,4.5\n480,308,5.0\n480,309,5.5\n480,310,6.0\n480,311,6.5\n480,312,7.0\n480,313,7.5\n480,314,8.0\n480,315,8.5\n480,316,9.0\n480,317,9.5\n480,318,10.0\n480,319,10.5\n480,320,11.0\n480,321,11.5\n480,322,12.0\n480,323,12.5\n480,324,13.0\n480,325,5.5\n480,326,5.0\n480,327,4.5\n480,328,4.0\n480,329,3.5\n480,330,3.0\n480,331,3.5\n480,332,4.0\n480,333,4.5\n480,334,5.0\n480,335,5.5\n480,336,6.0\n480,337,6.5\n480,338,7.0\n480,339,7.5\n480,340,8.0\n480,341,8.5\n480,342,9.0\n480,343,9.5\n480,344,10.0\n480,345,10.5\n480,346,11.0\n480,347,11.5\n480,348,12.0\n480,349,12.5\n480,350,5.0\n480,351,4.5\n480,352,4.0\n480,353,3.5\n480,354,3.0\n480,355,2.5\n480,356,3.0\n480,357,3.5\n480,358,4.0\n480,359,4.5\n480,360,5.0\n480,361,5.5\n480,362,6.0\n480,363,6.5\n480,364,7.0\n480,365,7.5\n480,366,8.0\n480,367,8.5\n480,368,9.0\n480,369,9.5\n480,370,10.0\n480,371,10.5\n480,372,11.0\n480,373,11.5\n480,374,12.0\n480,375,4.5\n480,376,4.0\n480,377,3.5\n480,378,3.0\n480,379,2.5\n480,380,2.0\n480,381,2.5\n480,382,3.0\n480,383,3.5\n480,384,4.0\n480,385,4.5\n480,386,5.0\n480,387,5.5\n480,388,6.0\n480,389,6.5\n480,390,7.0\n480,391,7.5\n480,392,8.0\n480,393,8.5\n480,394,9.0\n480,395,9.5\n480,396,10.0\n480,397,10.5\n480,398,11.0\n480,399,11.5\n480,400,4.0\n480,401,3.5\n480,402,3.0\n480,403,2.5\n480,404,2.0\n480,405,1.5\n480,406,2.0\n480,407,2.5\n480,408,3.0\n480,409,3.5\n480,410,4.0\n480,411,4.5\n480,412,5.0\n480,413,5.5\n480,414,6.0\n480,415,6.5\n480,416,7.0\n480,417,7.5\n480,418,8.0\n480,419,8.5\n480,420,9.0\n480,421,9.5\n480,422,10.0\n480,423,10.5\n480,424,11.0\n480,425,3.5\n480,426,3.0\n480,427,2.5\n480,428,2.0\n480,429,1.5\n480,430,1.0\n480,431,1.5\n480,432,2.0\n480,433,2.5\n480,434,3.0\n480,435,3.5\n480,436,4.0\n480,437,4.5\n480,438,5.0\n480,439,5.5\n480,440,6.0\n480,441,6.5\n480,442,7.0\n480,443,7.5\n480,444,8.0\n480,445,8.5\n480,446,9.0\n480,447,9.5\n480,448,10.0\n480,449,10.5\n480,450,3.0\n480,451,2.5\n480,452,2.0\n480,453,1.5\n480,454,1.0\n480,455,0.5\n480,456,1.0\n480,457,1.5\n480,458,2.0\n480,459,2.5\n480,460,3.0\n480,461,3.5\n480,462,4.0\n480,463,4.5\n480,464,5.0\n480,465,5.5\n480,466,6.0\n480,467,6.5\n480,468,7.0\n480,469,7.5\n480,470,8.0\n480,471,8.5\n480,472,9.0\n480,473,9.5\n480,474,10.0\n480,475,2.5\n480,476,2.0\n480,477,1.5\n480,478,1.0\n480,479,0.5\n480,480,0\n480,481,0.5\n480,482,1.0\n480,483,1.5\n480,484,2.0\n480,485,2.5\n480,486,3.0\n480,487,3.5\n480,488,4.0\n480,489,4.5\n480,490,5.0\n480,491,5.5\n480,492,6.0\n480,493,6.5\n480,494,7.0\n480,495,7.5\n480,496,8.0\n480,497,8.5\n480,498,9.0\n480,499,9.5\n480,500,3.0\n480,501,2.5\n480,502,2.0\n480,503,1.5\n480,504,1.0\n480,505,0.5\n480,506,1.0\n480,507,1.5\n480,508,2.0\n480,509,2.5\n480,510,3.0\n480,511,3.5\n480,512,4.0\n480,513,4.5\n480,514,5.0\n480,515,5.5\n480,516,6.0\n480,517,6.5\n480,518,7.0\n480,519,7.5\n480,520,8.0\n480,521,8.5\n480,522,9.0\n480,523,9.5\n480,524,10.0\n480,525,3.5\n480,526,3.0\n480,527,2.5\n480,528,2.0\n480,529,1.5\n480,530,1.0\n480,531,1.5\n480,532,2.0\n480,533,2.5\n480,534,3.0\n480,535,3.5\n480,536,4.0\n480,537,4.5\n480,538,5.0\n480,539,5.5\n480,540,6.0\n480,541,6.5\n480,542,7.0\n480,543,7.5\n480,544,8.0\n480,545,8.5\n480,546,9.0\n480,547,9.5\n480,548,10.0\n480,549,10.5\n480,550,4.0\n480,551,3.5\n480,552,3.0\n480,553,2.5\n480,554,2.0\n480,555,1.5\n480,556,2.0\n480,557,2.5\n480,558,3.0\n480,559,3.5\n480,560,4.0\n480,561,4.5\n480,562,5.0\n480,563,5.5\n480,564,6.0\n480,565,6.5\n480,566,7.0\n480,567,7.5\n480,568,8.0\n480,569,8.5\n480,570,9.0\n480,571,9.5\n480,572,10.0\n480,573,10.5\n480,574,11.0\n480,575,4.5\n480,576,4.0\n480,577,3.5\n480,578,3.0\n480,579,2.5\n480,580,2.0\n480,581,2.5\n480,582,3.0\n480,583,3.5\n480,584,4.0\n480,585,4.5\n480,586,5.0\n480,587,5.5\n480,588,6.0\n480,589,6.5\n480,590,7.0\n480,591,7.5\n480,592,8.0\n480,593,8.5\n480,594,9.0\n480,595,9.5\n480,596,10.0\n480,597,10.5\n480,598,11.0\n480,599,11.5\n480,600,5.0\n480,601,4.5\n480,602,4.0\n480,603,3.5\n480,604,3.0\n480,605,2.5\n480,606,3.0\n480,607,3.5\n480,608,4.0\n480,609,4.5\n480,610,5.0\n480,611,5.5\n480,612,6.0\n480,613,6.5\n480,614,7.0\n480,615,7.5\n480,616,8.0\n480,617,8.5\n480,618,9.0\n480,619,9.5\n480,620,10.0\n480,621,10.5\n480,622,11.0\n480,623,11.5\n480,624,12.0\n481,0,12.5\n481,1,12.0\n481,2,11.5\n481,3,11.0\n481,4,10.5\n481,5,10.0\n481,6,9.5\n481,7,10.0\n481,8,10.5\n481,9,11.0\n481,10,11.5\n481,11,12.0\n481,12,12.5\n481,13,13.0\n481,14,13.5\n481,15,14.0\n481,16,14.5\n481,17,15.0\n481,18,15.5\n481,19,16.0\n481,20,16.5\n481,21,17.0\n481,22,17.5\n481,23,18.0\n481,24,18.5\n481,25,12.0\n481,26,11.5\n481,27,11.0\n481,28,10.5\n481,29,10.0\n481,30,9.5\n481,31,9.0\n481,32,9.5\n481,33,10.0\n481,34,10.5\n481,35,11.0\n481,36,11.5\n481,37,12.0\n481,38,12.5\n481,39,13.0\n481,40,13.5\n481,41,14.0\n481,42,14.5\n481,43,15.0\n481,44,15.5\n481,45,16.0\n481,46,16.5\n481,47,17.0\n481,48,17.5\n481,49,18.0\n481,50,11.5\n481,51,11.0\n481,52,10.5\n481,53,10.0\n481,54,9.5\n481,55,9.0\n481,56,8.5\n481,57,9.0\n481,58,9.5\n481,59,10.0\n481,60,10.5\n481,61,11.0\n481,62,11.5\n481,63,12.0\n481,64,12.5\n481,65,13.0\n481,66,13.5\n481,67,14.0\n481,68,14.5\n481,69,15.0\n481,70,15.5\n481,71,16.0\n481,72,16.5\n481,73,17.0\n481,74,17.5\n481,75,11.0\n481,76,10.5\n481,77,10.0\n481,78,9.5\n481,79,9.0\n481,80,8.5\n481,81,8.0\n481,82,8.5\n481,83,9.0\n481,84,9.5\n481,85,10.0\n481,86,10.5\n481,87,11.0\n481,88,11.5\n481,89,12.0\n481,90,12.5\n481,91,13.0\n481,92,13.5\n481,93,14.0\n481,94,14.5\n481,95,15.0\n481,96,15.5\n481,97,16.0\n481,98,16.5\n481,99,17.0\n481,100,10.5\n481,101,10.0\n481,102,9.5\n481,103,9.0\n481,104,8.5\n481,105,8.0\n481,106,7.5\n481,107,8.0\n481,108,8.5\n481,109,9.0\n481,110,9.5\n481,111,10.0\n481,112,10.5\n481,113,11.0\n481,114,11.5\n481,115,12.0\n481,116,12.5\n481,117,13.0\n481,118,13.5\n481,119,14.0\n481,120,14.5\n481,121,15.0\n481,122,15.5\n481,123,16.0\n481,124,16.5\n481,125,10.0\n481,126,9.5\n481,127,9.0\n481,128,8.5\n481,129,8.0\n481,130,7.5\n481,131,7.0\n481,132,7.5\n481,133,8.0\n481,134,8.5\n481,135,9.0\n481,136,9.5\n481,137,10.0\n481,138,10.5\n481,139,11.0\n481,140,11.5\n481,141,12.0\n481,142,12.5\n481,143,13.0\n481,144,13.5\n481,145,14.0\n481,146,14.5\n481,147,15.0\n481,148,15.5\n481,149,16.0\n481,150,9.5\n481,151,9.0\n481,152,8.5\n481,153,8.0\n481,154,7.5\n481,155,7.0\n481,156,6.5\n481,157,7.0\n481,158,7.5\n481,159,8.0\n481,160,8.5\n481,161,9.0\n481,162,9.5\n481,163,10.0\n481,164,10.5\n481,165,11.0\n481,166,11.5\n481,167,12.0\n481,168,12.5\n481,169,13.0\n481,170,13.5\n481,171,14.0\n481,172,14.5\n481,173,15.0\n481,174,15.5\n481,175,9.0\n481,176,8.5\n481,177,8.0\n481,178,7.5\n481,179,7.0\n481,180,6.5\n481,181,6.0\n481,182,6.5\n481,183,7.0\n481,184,7.5\n481,185,8.0\n481,186,8.5\n481,187,9.0\n481,188,9.5\n481,189,10.0\n481,190,10.5\n481,191,11.0\n481,192,11.5\n481,193,12.0\n481,194,12.5\n481,195,13.0\n481,196,13.5\n481,197,14.0\n481,198,14.5\n481,199,15.0\n481,200,8.5\n481,201,8.0\n481,202,7.5\n481,203,7.0\n481,204,6.5\n481,205,6.0\n481,206,5.5\n481,207,6.0\n481,208,6.5\n481,209,7.0\n481,210,7.5\n481,211,8.0\n481,212,8.5\n481,213,9.0\n481,214,9.5\n481,215,10.0\n481,216,10.5\n481,217,11.0\n481,218,11.5\n481,219,12.0\n481,220,12.5\n481,221,13.0\n481,222,13.5\n481,223,14.0\n481,224,14.5\n481,225,8.0\n481,226,7.5\n481,227,7.0\n481,228,6.5\n481,229,6.0\n481,230,5.5\n481,231,5.0\n481,232,5.5\n481,233,6.0\n481,234,6.5\n481,235,7.0\n481,236,7.5\n481,237,8.0\n481,238,8.5\n481,239,9.0\n481,240,9.5\n481,241,10.0\n481,242,10.5\n481,243,11.0\n481,244,11.5\n481,245,12.0\n481,246,12.5\n481,247,13.0\n481,248,13.5\n481,249,14.0\n481,250,7.5\n481,251,7.0\n481,252,6.5\n481,253,6.0\n481,254,5.5\n481,255,5.0\n481,256,4.5\n481,257,5.0\n481,258,5.5\n481,259,6.0\n481,260,6.5\n481,261,7.0\n481,262,7.5\n481,263,8.0\n481,264,8.5\n481,265,9.0\n481,266,9.5\n481,267,10.0\n481,268,10.5\n481,269,11.0\n481,270,11.5\n481,271,12.0\n481,272,12.5\n481,273,13.0\n481,274,13.5\n481,275,7.0\n481,276,6.5\n481,277,6.0\n481,278,5.5\n481,279,5.0\n481,280,4.5\n481,281,4.0\n481,282,4.5\n481,283,5.0\n481,284,5.5\n481,285,6.0\n481,286,6.5\n481,287,7.0\n481,288,7.5\n481,289,8.0\n481,290,8.5\n481,291,9.0\n481,292,9.5\n481,293,10.0\n481,294,10.5\n481,295,11.0\n481,296,11.5\n481,297,12.0\n481,298,12.5\n481,299,13.0\n481,300,6.5\n481,301,6.0\n481,302,5.5\n481,303,5.0\n481,304,4.5\n481,305,4.0\n481,306,3.5\n481,307,4.0\n481,308,4.5\n481,309,5.0\n481,310,5.5\n481,311,6.0\n481,312,6.5\n481,313,7.0\n481,314,7.5\n481,315,8.0\n481,316,8.5\n481,317,9.0\n481,318,9.5\n481,319,10.0\n481,320,10.5\n481,321,11.0\n481,322,11.5\n481,323,12.0\n481,324,12.5\n481,325,6.0\n481,326,5.5\n481,327,5.0\n481,328,4.5\n481,329,4.0\n481,330,3.5\n481,331,3.0\n481,332,3.5\n481,333,4.0\n481,334,4.5\n481,335,5.0\n481,336,5.5\n481,337,6.0\n481,338,6.5\n481,339,7.0\n481,340,7.5\n481,341,8.0\n481,342,8.5\n481,343,9.0\n481,344,9.5\n481,345,10.0\n481,346,10.5\n481,347,11.0\n481,348,11.5\n481,349,12.0\n481,350,5.5\n481,351,5.0\n481,352,4.5\n481,353,4.0\n481,354,3.5\n481,355,3.0\n481,356,2.5\n481,357,3.0\n481,358,3.5\n481,359,4.0\n481,360,4.5\n481,361,5.0\n481,362,5.5\n481,363,6.0\n481,364,6.5\n481,365,7.0\n481,366,7.5\n481,367,8.0\n481,368,8.5\n481,369,9.0\n481,370,9.5\n481,371,10.0\n481,372,10.5\n481,373,11.0\n481,374,11.5\n481,375,5.0\n481,376,4.5\n481,377,4.0\n481,378,3.5\n481,379,3.0\n481,380,2.5\n481,381,2.0\n481,382,2.5\n481,383,3.0\n481,384,3.5\n481,385,4.0\n481,386,4.5\n481,387,5.0\n481,388,5.5\n481,389,6.0\n481,390,6.5\n481,391,7.0\n481,392,7.5\n481,393,8.0\n481,394,8.5\n481,395,9.0\n481,396,9.5\n481,397,10.0\n481,398,10.5\n481,399,11.0\n481,400,4.5\n481,401,4.0\n481,402,3.5\n481,403,3.0\n481,404,2.5\n481,405,2.0\n481,406,1.5\n481,407,2.0\n481,408,2.5\n481,409,3.0\n481,410,3.5\n481,411,4.0\n481,412,4.5\n481,413,5.0\n481,414,5.5\n481,415,6.0\n481,416,6.5\n481,417,7.0\n481,418,7.5\n481,419,8.0\n481,420,8.5\n481,421,9.0\n481,422,9.5\n481,423,10.0\n481,424,10.5\n481,425,4.0\n481,426,3.5\n481,427,3.0\n481,428,2.5\n481,429,2.0\n481,430,1.5\n481,431,1.0\n481,432,1.5\n481,433,2.0\n481,434,2.5\n481,435,3.0\n481,436,3.5\n481,437,4.0\n481,438,4.5\n481,439,5.0\n481,440,5.5\n481,441,6.0\n481,442,6.5\n481,443,7.0\n481,444,7.5\n481,445,8.0\n481,446,8.5\n481,447,9.0\n481,448,9.5\n481,449,10.0\n481,450,3.5\n481,451,3.0\n481,452,2.5\n481,453,2.0\n481,454,1.5\n481,455,1.0\n481,456,0.5\n481,457,1.0\n481,458,1.5\n481,459,2.0\n481,460,2.5\n481,461,3.0\n481,462,3.5\n481,463,4.0\n481,464,4.5\n481,465,5.0\n481,466,5.5\n481,467,6.0\n481,468,6.5\n481,469,7.0\n481,470,7.5\n481,471,8.0\n481,472,8.5\n481,473,9.0\n481,474,9.5\n481,475,3.0\n481,476,2.5\n481,477,2.0\n481,478,1.5\n481,479,1.0\n481,480,0.5\n481,481,0\n481,482,0.5\n481,483,1.0\n481,484,1.5\n481,485,2.0\n481,486,2.5\n481,487,3.0\n481,488,3.5\n481,489,4.0\n481,490,4.5\n481,491,5.0\n481,492,5.5\n481,493,6.0\n481,494,6.5\n481,495,7.0\n481,496,7.5\n481,497,8.0\n481,498,8.5\n481,499,9.0\n481,500,3.5\n481,501,3.0\n481,502,2.5\n481,503,2.0\n481,504,1.5\n481,505,1.0\n481,506,0.5\n481,507,1.0\n481,508,1.5\n481,509,2.0\n481,510,2.5\n481,511,3.0\n481,512,3.5\n481,513,4.0\n481,514,4.5\n481,515,5.0\n481,516,5.5\n481,517,6.0\n481,518,6.5\n481,519,7.0\n481,520,7.5\n481,521,8.0\n481,522,8.5\n481,523,9.0\n481,524,9.5\n481,525,4.0\n481,526,3.5\n481,527,3.0\n481,528,2.5\n481,529,2.0\n481,530,1.5\n481,531,1.0\n481,532,1.5\n481,533,2.0\n481,534,2.5\n481,535,3.0\n481,536,3.5\n481,537,4.0\n481,538,4.5\n481,539,5.0\n481,540,5.5\n481,541,6.0\n481,542,6.5\n481,543,7.0\n481,544,7.5\n481,545,8.0\n481,546,8.5\n481,547,9.0\n481,548,9.5\n481,549,10.0\n481,550,4.5\n481,551,4.0\n481,552,3.5\n481,553,3.0\n481,554,2.5\n481,555,2.0\n481,556,1.5\n481,557,2.0\n481,558,2.5\n481,559,3.0\n481,560,3.5\n481,561,4.0\n481,562,4.5\n481,563,5.0\n481,564,5.5\n481,565,6.0\n481,566,6.5\n481,567,7.0\n481,568,7.5\n481,569,8.0\n481,570,8.5\n481,571,9.0\n481,572,9.5\n481,573,10.0\n481,574,10.5\n481,575,5.0\n481,576,4.5\n481,577,4.0\n481,578,3.5\n481,579,3.0\n481,580,2.5\n481,581,2.0\n481,582,2.5\n481,583,3.0\n481,584,3.5\n481,585,4.0\n481,586,4.5\n481,587,5.0\n481,588,5.5\n481,589,6.0\n481,590,6.5\n481,591,7.0\n481,592,7.5\n481,593,8.0\n481,594,8.5\n481,595,9.0\n481,596,9.5\n481,597,10.0\n481,598,10.5\n481,599,11.0\n481,600,5.5\n481,601,5.0\n481,602,4.5\n481,603,4.0\n481,604,3.5\n481,605,3.0\n481,606,2.5\n481,607,3.0\n481,608,3.5\n481,609,4.0\n481,610,4.5\n481,611,5.0\n481,612,5.5\n481,613,6.0\n481,614,6.5\n481,615,7.0\n481,616,7.5\n481,617,8.0\n481,618,8.5\n481,619,9.0\n481,620,9.5\n481,621,10.0\n481,622,10.5\n481,623,11.0\n481,624,11.5\n482,0,13.0\n482,1,12.5\n482,2,12.0\n482,3,11.5\n482,4,11.0\n482,5,10.5\n482,6,10.0\n482,7,9.5\n482,8,10.0\n482,9,10.5\n482,10,11.0\n482,11,11.5\n482,12,12.0\n482,13,12.5\n482,14,13.0\n482,15,13.5\n482,16,14.0\n482,17,14.5\n482,18,15.0\n482,19,15.5\n482,20,16.0\n482,21,16.5\n482,22,17.0\n482,23,17.5\n482,24,18.0\n482,25,12.5\n482,26,12.0\n482,27,11.5\n482,28,11.0\n482,29,10.5\n482,30,10.0\n482,31,9.5\n482,32,9.0\n482,33,9.5\n482,34,10.0\n482,35,10.5\n482,36,11.0\n482,37,11.5\n482,38,12.0\n482,39,12.5\n482,40,13.0\n482,41,13.5\n482,42,14.0\n482,43,14.5\n482,44,15.0\n482,45,15.5\n482,46,16.0\n482,47,16.5\n482,48,17.0\n482,49,17.5\n482,50,12.0\n482,51,11.5\n482,52,11.0\n482,53,10.5\n482,54,10.0\n482,55,9.5\n482,56,9.0\n482,57,8.5\n482,58,9.0\n482,59,9.5\n482,60,10.0\n482,61,10.5\n482,62,11.0\n482,63,11.5\n482,64,12.0\n482,65,12.5\n482,66,13.0\n482,67,13.5\n482,68,14.0\n482,69,14.5\n482,70,15.0\n482,71,15.5\n482,72,16.0\n482,73,16.5\n482,74,17.0\n482,75,11.5\n482,76,11.0\n482,77,10.5\n482,78,10.0\n482,79,9.5\n482,80,9.0\n482,81,8.5\n482,82,8.0\n482,83,8.5\n482,84,9.0\n482,85,9.5\n482,86,10.0\n482,87,10.5\n482,88,11.0\n482,89,11.5\n482,90,12.0\n482,91,12.5\n482,92,13.0\n482,93,13.5\n482,94,14.0\n482,95,14.5\n482,96,15.0\n482,97,15.5\n482,98,16.0\n482,99,16.5\n482,100,11.0\n482,101,10.5\n482,102,10.0\n482,103,9.5\n482,104,9.0\n482,105,8.5\n482,106,8.0\n482,107,7.5\n482,108,8.0\n482,109,8.5\n482,110,9.0\n482,111,9.5\n482,112,10.0\n482,113,10.5\n482,114,11.0\n482,115,11.5\n482,116,12.0\n482,117,12.5\n482,118,13.0\n482,119,13.5\n482,120,14.0\n482,121,14.5\n482,122,15.0\n482,123,15.5\n482,124,16.0\n482,125,10.5\n482,126,10.0\n482,127,9.5\n482,128,9.0\n482,129,8.5\n482,130,8.0\n482,131,7.5\n482,132,7.0\n482,133,7.5\n482,134,8.0\n482,135,8.5\n482,136,9.0\n482,137,9.5\n482,138,10.0\n482,139,10.5\n482,140,11.0\n482,141,11.5\n482,142,12.0\n482,143,12.5\n482,144,13.0\n482,145,13.5\n482,146,14.0\n482,147,14.5\n482,148,15.0\n482,149,15.5\n482,150,10.0\n482,151,9.5\n482,152,9.0\n482,153,8.5\n482,154,8.0\n482,155,7.5\n482,156,7.0\n482,157,6.5\n482,158,7.0\n482,159,7.5\n482,160,8.0\n482,161,8.5\n482,162,9.0\n482,163,9.5\n482,164,10.0\n482,165,10.5\n482,166,11.0\n482,167,11.5\n482,168,12.0\n482,169,12.5\n482,170,13.0\n482,171,13.5\n482,172,14.0\n482,173,14.5\n482,174,15.0\n482,175,9.5\n482,176,9.0\n482,177,8.5\n482,178,8.0\n482,179,7.5\n482,180,7.0\n482,181,6.5\n482,182,6.0\n482,183,6.5\n482,184,7.0\n482,185,7.5\n482,186,8.0\n482,187,8.5\n482,188,9.0\n482,189,9.5\n482,190,10.0\n482,191,10.5\n482,192,11.0\n482,193,11.5\n482,194,12.0\n482,195,12.5\n482,196,13.0\n482,197,13.5\n482,198,14.0\n482,199,14.5\n482,200,9.0\n482,201,8.5\n482,202,8.0\n482,203,7.5\n482,204,7.0\n482,205,6.5\n482,206,6.0\n482,207,5.5\n482,208,6.0\n482,209,6.5\n482,210,7.0\n482,211,7.5\n482,212,8.0\n482,213,8.5\n482,214,9.0\n482,215,9.5\n482,216,10.0\n482,217,10.5\n482,218,11.0\n482,219,11.5\n482,220,12.0\n482,221,12.5\n482,222,13.0\n482,223,13.5\n482,224,14.0\n482,225,8.5\n482,226,8.0\n482,227,7.5\n482,228,7.0\n482,229,6.5\n482,230,6.0\n482,231,5.5\n482,232,5.0\n482,233,5.5\n482,234,6.0\n482,235,6.5\n482,236,7.0\n482,237,7.5\n482,238,8.0\n482,239,8.5\n482,240,9.0\n482,241,9.5\n482,242,10.0\n482,243,10.5\n482,244,11.0\n482,245,11.5\n482,246,12.0\n482,247,12.5\n482,248,13.0\n482,249,13.5\n482,250,8.0\n482,251,7.5\n482,252,7.0\n482,253,6.5\n482,254,6.0\n482,255,5.5\n482,256,5.0\n482,257,4.5\n482,258,5.0\n482,259,5.5\n482,260,6.0\n482,261,6.5\n482,262,7.0\n482,263,7.5\n482,264,8.0\n482,265,8.5\n482,266,9.0\n482,267,9.5\n482,268,10.0\n482,269,10.5\n482,270,11.0\n482,271,11.5\n482,272,12.0\n482,273,12.5\n482,274,13.0\n482,275,7.5\n482,276,7.0\n482,277,6.5\n482,278,6.0\n482,279,5.5\n482,280,5.0\n482,281,4.5\n482,282,4.0\n482,283,4.5\n482,284,5.0\n482,285,5.5\n482,286,6.0\n482,287,6.5\n482,288,7.0\n482,289,7.5\n482,290,8.0\n482,291,8.5\n482,292,9.0\n482,293,9.5\n482,294,10.0\n482,295,10.5\n482,296,11.0\n482,297,11.5\n482,298,12.0\n482,299,12.5\n482,300,7.0\n482,301,6.5\n482,302,6.0\n482,303,5.5\n482,304,5.0\n482,305,4.5\n482,306,4.0\n482,307,3.5\n482,308,4.0\n482,309,4.5\n482,310,5.0\n482,311,5.5\n482,312,6.0\n482,313,6.5\n482,314,7.0\n482,315,7.5\n482,316,8.0\n482,317,8.5\n482,318,9.0\n482,319,9.5\n482,320,10.0\n482,321,10.5\n482,322,11.0\n482,323,11.5\n482,324,12.0\n482,325,6.5\n482,326,6.0\n482,327,5.5\n482,328,5.0\n482,329,4.5\n482,330,4.0\n482,331,3.5\n482,332,3.0\n482,333,3.5\n482,334,4.0\n482,335,4.5\n482,336,5.0\n482,337,5.5\n482,338,6.0\n482,339,6.5\n482,340,7.0\n482,341,7.5\n482,342,8.0\n482,343,8.5\n482,344,9.0\n482,345,9.5\n482,346,10.0\n482,347,10.5\n482,348,11.0\n482,349,11.5\n482,350,6.0\n482,351,5.5\n482,352,5.0\n482,353,4.5\n482,354,4.0\n482,355,3.5\n482,356,3.0\n482,357,2.5\n482,358,3.0\n482,359,3.5\n482,360,4.0\n482,361,4.5\n482,362,5.0\n482,363,5.5\n482,364,6.0\n482,365,6.5\n482,366,7.0\n482,367,7.5\n482,368,8.0\n482,369,8.5\n482,370,9.0\n482,371,9.5\n482,372,10.0\n482,373,10.5\n482,374,11.0\n482,375,5.5\n482,376,5.0\n482,377,4.5\n482,378,4.0\n482,379,3.5\n482,380,3.0\n482,381,2.5\n482,382,2.0\n482,383,2.5\n482,384,3.0\n482,385,3.5\n482,386,4.0\n482,387,4.5\n482,388,5.0\n482,389,5.5\n482,390,6.0\n482,391,6.5\n482,392,7.0\n482,393,7.5\n482,394,8.0\n482,395,8.5\n482,396,9.0\n482,397,9.5\n482,398,10.0\n482,399,10.5\n482,400,5.0\n482,401,4.5\n482,402,4.0\n482,403,3.5\n482,404,3.0\n482,405,2.5\n482,406,2.0\n482,407,1.5\n482,408,2.0\n482,409,2.5\n482,410,3.0\n482,411,3.5\n482,412,4.0\n482,413,4.5\n482,414,5.0\n482,415,5.5\n482,416,6.0\n482,417,6.5\n482,418,7.0\n482,419,7.5\n482,420,8.0\n482,421,8.5\n482,422,9.0\n482,423,9.5\n482,424,10.0\n482,425,4.5\n482,426,4.0\n482,427,3.5\n482,428,3.0\n482,429,2.5\n482,430,2.0\n482,431,1.5\n482,432,1.0\n482,433,1.5\n482,434,2.0\n482,435,2.5\n482,436,3.0\n482,437,3.5\n482,438,4.0\n482,439,4.5\n482,440,5.0\n482,441,5.5\n482,442,6.0\n482,443,6.5\n482,444,7.0\n482,445,7.5\n482,446,8.0\n482,447,8.5\n482,448,9.0\n482,449,9.5\n482,450,4.0\n482,451,3.5\n482,452,3.0\n482,453,2.5\n482,454,2.0\n482,455,1.5\n482,456,1.0\n482,457,0.5\n482,458,1.0\n482,459,1.5\n482,460,2.0\n482,461,2.5\n482,462,3.0\n482,463,3.5\n482,464,4.0\n482,465,4.5\n482,466,5.0\n482,467,5.5\n482,468,6.0\n482,469,6.5\n482,470,7.0\n482,471,7.5\n482,472,8.0\n482,473,8.5\n482,474,9.0\n482,475,3.5\n482,476,3.0\n482,477,2.5\n482,478,2.0\n482,479,1.5\n482,480,1.0\n482,481,0.5\n482,482,0\n482,483,0.5\n482,484,1.0\n482,485,1.5\n482,486,2.0\n482,487,2.5\n482,488,3.0\n482,489,3.5\n482,490,4.0\n482,491,4.5\n482,492,5.0\n482,493,5.5\n482,494,6.0\n482,495,6.5\n482,496,7.0\n482,497,7.5\n482,498,8.0\n482,499,8.5\n482,500,4.0\n482,501,3.5\n482,502,3.0\n482,503,2.5\n482,504,2.0\n482,505,1.5\n482,506,1.0\n482,507,0.5\n482,508,1.0\n482,509,1.5\n482,510,2.0\n482,511,2.5\n482,512,3.0\n482,513,3.5\n482,514,4.0\n482,515,4.5\n482,516,5.0\n482,517,5.5\n482,518,6.0\n482,519,6.5\n482,520,7.0\n482,521,7.5\n482,522,8.0\n482,523,8.5\n482,524,9.0\n482,525,4.5\n482,526,4.0\n482,527,3.5\n482,528,3.0\n482,529,2.5\n482,530,2.0\n482,531,1.5\n482,532,1.0\n482,533,1.5\n482,534,2.0\n482,535,2.5\n482,536,3.0\n482,537,3.5\n482,538,4.0\n482,539,4.5\n482,540,5.0\n482,541,5.5\n482,542,6.0\n482,543,6.5\n482,544,7.0\n482,545,7.5\n482,546,8.0\n482,547,8.5\n482,548,9.0\n482,549,9.5\n482,550,5.0\n482,551,4.5\n482,552,4.0\n482,553,3.5\n482,554,3.0\n482,555,2.5\n482,556,2.0\n482,557,1.5\n482,558,2.0\n482,559,2.5\n482,560,3.0\n482,561,3.5\n482,562,4.0\n482,563,4.5\n482,564,5.0\n482,565,5.5\n482,566,6.0\n482,567,6.5\n482,568,7.0\n482,569,7.5\n482,570,8.0\n482,571,8.5\n482,572,9.0\n482,573,9.5\n482,574,10.0\n482,575,5.5\n482,576,5.0\n482,577,4.5\n482,578,4.0\n482,579,3.5\n482,580,3.0\n482,581,2.5\n482,582,2.0\n482,583,2.5\n482,584,3.0\n482,585,3.5\n482,586,4.0\n482,587,4.5\n482,588,5.0\n482,589,5.5\n482,590,6.0\n482,591,6.5\n482,592,7.0\n482,593,7.5\n482,594,8.0\n482,595,8.5\n482,596,9.0\n482,597,9.5\n482,598,10.0\n482,599,10.5\n482,600,6.0\n482,601,5.5\n482,602,5.0\n482,603,4.5\n482,604,4.0\n482,605,3.5\n482,606,3.0\n482,607,2.5\n482,608,3.0\n482,609,3.5\n482,610,4.0\n482,611,4.5\n482,612,5.0\n482,613,5.5\n482,614,6.0\n482,615,6.5\n482,616,7.0\n482,617,7.5\n482,618,8.0\n482,619,8.5\n482,620,9.0\n482,621,9.5\n482,622,10.0\n482,623,10.5\n482,624,11.0\n483,0,13.5\n483,1,13.0\n483,2,12.5\n483,3,12.0\n483,4,11.5\n483,5,11.0\n483,6,10.5\n483,7,10.0\n483,8,9.5\n483,9,10.0\n483,10,10.5\n483,11,11.0\n483,12,11.5\n483,13,12.0\n483,14,12.5\n483,15,13.0\n483,16,13.5\n483,17,14.0\n483,18,14.5\n483,19,15.0\n483,20,15.5\n483,21,16.0\n483,22,16.5\n483,23,17.0\n483,24,17.5\n483,25,13.0\n483,26,12.5\n483,27,12.0\n483,28,11.5\n483,29,11.0\n483,30,10.5\n483,31,10.0\n483,32,9.5\n483,33,9.0\n483,34,9.5\n483,35,10.0\n483,36,10.5\n483,37,11.0\n483,38,11.5\n483,39,12.0\n483,40,12.5\n483,41,13.0\n483,42,13.5\n483,43,14.0\n483,44,14.5\n483,45,15.0\n483,46,15.5\n483,47,16.0\n483,48,16.5\n483,49,17.0\n483,50,12.5\n483,51,12.0\n483,52,11.5\n483,53,11.0\n483,54,10.5\n483,55,10.0\n483,56,9.5\n483,57,9.0\n483,58,8.5\n483,59,9.0\n483,60,9.5\n483,61,10.0\n483,62,10.5\n483,63,11.0\n483,64,11.5\n483,65,12.0\n483,66,12.5\n483,67,13.0\n483,68,13.5\n483,69,14.0\n483,70,14.5\n483,71,15.0\n483,72,15.5\n483,73,16.0\n483,74,16.5\n483,75,12.0\n483,76,11.5\n483,77,11.0\n483,78,10.5\n483,79,10.0\n483,80,9.5\n483,81,9.0\n483,82,8.5\n483,83,8.0\n483,84,8.5\n483,85,9.0\n483,86,9.5\n483,87,10.0\n483,88,10.5\n483,89,11.0\n483,90,11.5\n483,91,12.0\n483,92,12.5\n483,93,13.0\n483,94,13.5\n483,95,14.0\n483,96,14.5\n483,97,15.0\n483,98,15.5\n483,99,16.0\n483,100,11.5\n483,101,11.0\n483,102,10.5\n483,103,10.0\n483,104,9.5\n483,105,9.0\n483,106,8.5\n483,107,8.0\n483,108,7.5\n483,109,8.0\n483,110,8.5\n483,111,9.0\n483,112,9.5\n483,113,10.0\n483,114,10.5\n483,115,11.0\n483,116,11.5\n483,117,12.0\n483,118,12.5\n483,119,13.0\n483,120,13.5\n483,121,14.0\n483,122,14.5\n483,123,15.0\n483,124,15.5\n483,125,11.0\n483,126,10.5\n483,127,10.0\n483,128,9.5\n483,129,9.0\n483,130,8.5\n483,131,8.0\n483,132,7.5\n483,133,7.0\n483,134,7.5\n483,135,8.0\n483,136,8.5\n483,137,9.0\n483,138,9.5\n483,139,10.0\n483,140,10.5\n483,141,11.0\n483,142,11.5\n483,143,12.0\n483,144,12.5\n483,145,13.0\n483,146,13.5\n483,147,14.0\n483,148,14.5\n483,149,15.0\n483,150,10.5\n483,151,10.0\n483,152,9.5\n483,153,9.0\n483,154,8.5\n483,155,8.0\n483,156,7.5\n483,157,7.0\n483,158,6.5\n483,159,7.0\n483,160,7.5\n483,161,8.0\n483,162,8.5\n483,163,9.0\n483,164,9.5\n483,165,10.0\n483,166,10.5\n483,167,11.0\n483,168,11.5\n483,169,12.0\n483,170,12.5\n483,171,13.0\n483,172,13.5\n483,173,14.0\n483,174,14.5\n483,175,10.0\n483,176,9.5\n483,177,9.0\n483,178,8.5\n483,179,8.0\n483,180,7.5\n483,181,7.0\n483,182,6.5\n483,183,6.0\n483,184,6.5\n483,185,7.0\n483,186,7.5\n483,187,8.0\n483,188,8.5\n483,189,9.0\n483,190,9.5\n483,191,10.0\n483,192,10.5\n483,193,11.0\n483,194,11.5\n483,195,12.0\n483,196,12.5\n483,197,13.0\n483,198,13.5\n483,199,14.0\n483,200,9.5\n483,201,9.0\n483,202,8.5\n483,203,8.0\n483,204,7.5\n483,205,7.0\n483,206,6.5\n483,207,6.0\n483,208,5.5\n483,209,6.0\n483,210,6.5\n483,211,7.0\n483,212,7.5\n483,213,8.0\n483,214,8.5\n483,215,9.0\n483,216,9.5\n483,217,10.0\n483,218,10.5\n483,219,11.0\n483,220,11.5\n483,221,12.0\n483,222,12.5\n483,223,13.0\n483,224,13.5\n483,225,9.0\n483,226,8.5\n483,227,8.0\n483,228,7.5\n483,229,7.0\n483,230,6.5\n483,231,6.0\n483,232,5.5\n483,233,5.0\n483,234,5.5\n483,235,6.0\n483,236,6.5\n483,237,7.0\n483,238,7.5\n483,239,8.0\n483,240,8.5\n483,241,9.0\n483,242,9.5\n483,243,10.0\n483,244,10.5\n483,245,11.0\n483,246,11.5\n483,247,12.0\n483,248,12.5\n483,249,13.0\n483,250,8.5\n483,251,8.0\n483,252,7.5\n483,253,7.0\n483,254,6.5\n483,255,6.0\n483,256,5.5\n483,257,5.0\n483,258,4.5\n483,259,5.0\n483,260,5.5\n483,261,6.0\n483,262,6.5\n483,263,7.0\n483,264,7.5\n483,265,8.0\n483,266,8.5\n483,267,9.0\n483,268,9.5\n483,269,10.0\n483,270,10.5\n483,271,11.0\n483,272,11.5\n483,273,12.0\n483,274,12.5\n483,275,8.0\n483,276,7.5\n483,277,7.0\n483,278,6.5\n483,279,6.0\n483,280,5.5\n483,281,5.0\n483,282,4.5\n483,283,4.0\n483,284,4.5\n483,285,5.0\n483,286,5.5\n483,287,6.0\n483,288,6.5\n483,289,7.0\n483,290,7.5\n483,291,8.0\n483,292,8.5\n483,293,9.0\n483,294,9.5\n483,295,10.0\n483,296,10.5\n483,297,11.0\n483,298,11.5\n483,299,12.0\n483,300,7.5\n483,301,7.0\n483,302,6.5\n483,303,6.0\n483,304,5.5\n483,305,5.0\n483,306,4.5\n483,307,4.0\n483,308,3.5\n483,309,4.0\n483,310,4.5\n483,311,5.0\n483,312,5.5\n483,313,6.0\n483,314,6.5\n483,315,7.0\n483,316,7.5\n483,317,8.0\n483,318,8.5\n483,319,9.0\n483,320,9.5\n483,321,10.0\n483,322,10.5\n483,323,11.0\n483,324,11.5\n483,325,7.0\n483,326,6.5\n483,327,6.0\n483,328,5.5\n483,329,5.0\n483,330,4.5\n483,331,4.0\n483,332,3.5\n483,333,3.0\n483,334,3.5\n483,335,4.0\n483,336,4.5\n483,337,5.0\n483,338,5.5\n483,339,6.0\n483,340,6.5\n483,341,7.0\n483,342,7.5\n483,343,8.0\n483,344,8.5\n483,345,9.0\n483,346,9.5\n483,347,10.0\n483,348,10.5\n483,349,11.0\n483,350,6.5\n483,351,6.0\n483,352,5.5\n483,353,5.0\n483,354,4.5\n483,355,4.0\n483,356,3.5\n483,357,3.0\n483,358,2.5\n483,359,3.0\n483,360,3.5\n483,361,4.0\n483,362,4.5\n483,363,5.0\n483,364,5.5\n483,365,6.0\n483,366,6.5\n483,367,7.0\n483,368,7.5\n483,369,8.0\n483,370,8.5\n483,371,9.0\n483,372,9.5\n483,373,10.0\n483,374,10.5\n483,375,6.0\n483,376,5.5\n483,377,5.0\n483,378,4.5\n483,379,4.0\n483,380,3.5\n483,381,3.0\n483,382,2.5\n483,383,2.0\n483,384,2.5\n483,385,3.0\n483,386,3.5\n483,387,4.0\n483,388,4.5\n483,389,5.0\n483,390,5.5\n483,391,6.0\n483,392,6.5\n483,393,7.0\n483,394,7.5\n483,395,8.0\n483,396,8.5\n483,397,9.0\n483,398,9.5\n483,399,10.0\n483,400,5.5\n483,401,5.0\n483,402,4.5\n483,403,4.0\n483,404,3.5\n483,405,3.0\n483,406,2.5\n483,407,2.0\n483,408,1.5\n483,409,2.0\n483,410,2.5\n483,411,3.0\n483,412,3.5\n483,413,4.0\n483,414,4.5\n483,415,5.0\n483,416,5.5\n483,417,6.0\n483,418,6.5\n483,419,7.0\n483,420,7.5\n483,421,8.0\n483,422,8.5\n483,423,9.0\n483,424,9.5\n483,425,5.0\n483,426,4.5\n483,427,4.0\n483,428,3.5\n483,429,3.0\n483,430,2.5\n483,431,2.0\n483,432,1.5\n483,433,1.0\n483,434,1.5\n483,435,2.0\n483,436,2.5\n483,437,3.0\n483,438,3.5\n483,439,4.0\n483,440,4.5\n483,441,5.0\n483,442,5.5\n483,443,6.0\n483,444,6.5\n483,445,7.0\n483,446,7.5\n483,447,8.0\n483,448,8.5\n483,449,9.0\n483,450,4.5\n483,451,4.0\n483,452,3.5\n483,453,3.0\n483,454,2.5\n483,455,2.0\n483,456,1.5\n483,457,1.0\n483,458,0.5\n483,459,1.0\n483,460,1.5\n483,461,2.0\n483,462,2.5\n483,463,3.0\n483,464,3.5\n483,465,4.0\n483,466,4.5\n483,467,5.0\n483,468,5.5\n483,469,6.0\n483,470,6.5\n483,471,7.0\n483,472,7.5\n483,473,8.0\n483,474,8.5\n483,475,4.0\n483,476,3.5\n483,477,3.0\n483,478,2.5\n483,479,2.0\n483,480,1.5\n483,481,1.0\n483,482,0.5\n483,483,0\n483,484,0.5\n483,485,1.0\n483,486,1.5\n483,487,2.0\n483,488,2.5\n483,489,3.0\n483,490,3.5\n483,491,4.0\n483,492,4.5\n483,493,5.0\n483,494,5.5\n483,495,6.0\n483,496,6.5\n483,497,7.0\n483,498,7.5\n483,499,8.0\n483,500,4.5\n483,501,4.0\n483,502,3.5\n483,503,3.0\n483,504,2.5\n483,505,2.0\n483,506,1.5\n483,507,1.0\n483,508,0.5\n483,509,1.0\n483,510,1.5\n483,511,2.0\n483,512,2.5\n483,513,3.0\n483,514,3.5\n483,515,4.0\n483,516,4.5\n483,517,5.0\n483,518,5.5\n483,519,6.0\n483,520,6.5\n483,521,7.0\n483,522,7.5\n483,523,8.0\n483,524,8.5\n483,525,5.0\n483,526,4.5\n483,527,4.0\n483,528,3.5\n483,529,3.0\n483,530,2.5\n483,531,2.0\n483,532,1.5\n483,533,1.0\n483,534,1.5\n483,535,2.0\n483,536,2.5\n483,537,3.0\n483,538,3.5\n483,539,4.0\n483,540,4.5\n483,541,5.0\n483,542,5.5\n483,543,6.0\n483,544,6.5\n483,545,7.0\n483,546,7.5\n483,547,8.0\n483,548,8.5\n483,549,9.0\n483,550,5.5\n483,551,5.0\n483,552,4.5\n483,553,4.0\n483,554,3.5\n483,555,3.0\n483,556,2.5\n483,557,2.0\n483,558,1.5\n483,559,2.0\n483,560,2.5\n483,561,3.0\n483,562,3.5\n483,563,4.0\n483,564,4.5\n483,565,5.0\n483,566,5.5\n483,567,6.0\n483,568,6.5\n483,569,7.0\n483,570,7.5\n483,571,8.0\n483,572,8.5\n483,573,9.0\n483,574,9.5\n483,575,6.0\n483,576,5.5\n483,577,5.0\n483,578,4.5\n483,579,4.0\n483,580,3.5\n483,581,3.0\n483,582,2.5\n483,583,2.0\n483,584,2.5\n483,585,3.0\n483,586,3.5\n483,587,4.0\n483,588,4.5\n483,589,5.0\n483,590,5.5\n483,591,6.0\n483,592,6.5\n483,593,7.0\n483,594,7.5\n483,595,8.0\n483,596,8.5\n483,597,9.0\n483,598,9.5\n483,599,10.0\n483,600,6.5\n483,601,6.0\n483,602,5.5\n483,603,5.0\n483,604,4.5\n483,605,4.0\n483,606,3.5\n483,607,3.0\n483,608,2.5\n483,609,3.0\n483,610,3.5\n483,611,4.0\n483,612,4.5\n483,613,5.0\n483,614,5.5\n483,615,6.0\n483,616,6.5\n483,617,7.0\n483,618,7.5\n483,619,8.0\n483,620,8.5\n483,621,9.0\n483,622,9.5\n483,623,10.0\n483,624,10.5\n484,0,14.0\n484,1,13.5\n484,2,13.0\n484,3,12.5\n484,4,12.0\n484,5,11.5\n484,6,11.0\n484,7,10.5\n484,8,10.0\n484,9,9.5\n484,10,10.0\n484,11,10.5\n484,12,11.0\n484,13,11.5\n484,14,12.0\n484,15,12.5\n484,16,13.0\n484,17,13.5\n484,18,14.0\n484,19,14.5\n484,20,15.0\n484,21,15.5\n484,22,16.0\n484,23,16.5\n484,24,17.0\n484,25,13.5\n484,26,13.0\n484,27,12.5\n484,28,12.0\n484,29,11.5\n484,30,11.0\n484,31,10.5\n484,32,10.0\n484,33,9.5\n484,34,9.0\n484,35,9.5\n484,36,10.0\n484,37,10.5\n484,38,11.0\n484,39,11.5\n484,40,12.0\n484,41,12.5\n484,42,13.0\n484,43,13.5\n484,44,14.0\n484,45,14.5\n484,46,15.0\n484,47,15.5\n484,48,16.0\n484,49,16.5\n484,50,13.0\n484,51,12.5\n484,52,12.0\n484,53,11.5\n484,54,11.0\n484,55,10.5\n484,56,10.0\n484,57,9.5\n484,58,9.0\n484,59,8.5\n484,60,9.0\n484,61,9.5\n484,62,10.0\n484,63,10.5\n484,64,11.0\n484,65,11.5\n484,66,12.0\n484,67,12.5\n484,68,13.0\n484,69,13.5\n484,70,14.0\n484,71,14.5\n484,72,15.0\n484,73,15.5\n484,74,16.0\n484,75,12.5\n484,76,12.0\n484,77,11.5\n484,78,11.0\n484,79,10.5\n484,80,10.0\n484,81,9.5\n484,82,9.0\n484,83,8.5\n484,84,8.0\n484,85,8.5\n484,86,9.0\n484,87,9.5\n484,88,10.0\n484,89,10.5\n484,90,11.0\n484,91,11.5\n484,92,12.0\n484,93,12.5\n484,94,13.0\n484,95,13.5\n484,96,14.0\n484,97,14.5\n484,98,15.0\n484,99,15.5\n484,100,12.0\n484,101,11.5\n484,102,11.0\n484,103,10.5\n484,104,10.0\n484,105,9.5\n484,106,9.0\n484,107,8.5\n484,108,8.0\n484,109,7.5\n484,110,8.0\n484,111,8.5\n484,112,9.0\n484,113,9.5\n484,114,10.0\n484,115,10.5\n484,116,11.0\n484,117,11.5\n484,118,12.0\n484,119,12.5\n484,120,13.0\n484,121,13.5\n484,122,14.0\n484,123,14.5\n484,124,15.0\n484,125,11.5\n484,126,11.0\n484,127,10.5\n484,128,10.0\n484,129,9.5\n484,130,9.0\n484,131,8.5\n484,132,8.0\n484,133,7.5\n484,134,7.0\n484,135,7.5\n484,136,8.0\n484,137,8.5\n484,138,9.0\n484,139,9.5\n484,140,10.0\n484,141,10.5\n484,142,11.0\n484,143,11.5\n484,144,12.0\n484,145,12.5\n484,146,13.0\n484,147,13.5\n484,148,14.0\n484,149,14.5\n484,150,11.0\n484,151,10.5\n484,152,10.0\n484,153,9.5\n484,154,9.0\n484,155,8.5\n484,156,8.0\n484,157,7.5\n484,158,7.0\n484,159,6.5\n484,160,7.0\n484,161,7.5\n484,162,8.0\n484,163,8.5\n484,164,9.0\n484,165,9.5\n484,166,10.0\n484,167,10.5\n484,168,11.0\n484,169,11.5\n484,170,12.0\n484,171,12.5\n484,172,13.0\n484,173,13.5\n484,174,14.0\n484,175,10.5\n484,176,10.0\n484,177,9.5\n484,178,9.0\n484,179,8.5\n484,180,8.0\n484,181,7.5\n484,182,7.0\n484,183,6.5\n484,184,6.0\n484,185,6.5\n484,186,7.0\n484,187,7.5\n484,188,8.0\n484,189,8.5\n484,190,9.0\n484,191,9.5\n484,192,10.0\n484,193,10.5\n484,194,11.0\n484,195,11.5\n484,196,12.0\n484,197,12.5\n484,198,13.0\n484,199,13.5\n484,200,10.0\n484,201,9.5\n484,202,9.0\n484,203,8.5\n484,204,8.0\n484,205,7.5\n484,206,7.0\n484,207,6.5\n484,208,6.0\n484,209,5.5\n484,210,6.0\n484,211,6.5\n484,212,7.0\n484,213,7.5\n484,214,8.0\n484,215,8.5\n484,216,9.0\n484,217,9.5\n484,218,10.0\n484,219,10.5\n484,220,11.0\n484,221,11.5\n484,222,12.0\n484,223,12.5\n484,224,13.0\n484,225,9.5\n484,226,9.0\n484,227,8.5\n484,228,8.0\n484,229,7.5\n484,230,7.0\n484,231,6.5\n484,232,6.0\n484,233,5.5\n484,234,5.0\n484,235,5.5\n484,236,6.0\n484,237,6.5\n484,238,7.0\n484,239,7.5\n484,240,8.0\n484,241,8.5\n484,242,9.0\n484,243,9.5\n484,244,10.0\n484,245,10.5\n484,246,11.0\n484,247,11.5\n484,248,12.0\n484,249,12.5\n484,250,9.0\n484,251,8.5\n484,252,8.0\n484,253,7.5\n484,254,7.0\n484,255,6.5\n484,256,6.0\n484,257,5.5\n484,258,5.0\n484,259,4.5\n484,260,5.0\n484,261,5.5\n484,262,6.0\n484,263,6.5\n484,264,7.0\n484,265,7.5\n484,266,8.0\n484,267,8.5\n484,268,9.0\n484,269,9.5\n484,270,10.0\n484,271,10.5\n484,272,11.0\n484,273,11.5\n484,274,12.0\n484,275,8.5\n484,276,8.0\n484,277,7.5\n484,278,7.0\n484,279,6.5\n484,280,6.0\n484,281,5.5\n484,282,5.0\n484,283,4.5\n484,284,4.0\n484,285,4.5\n484,286,5.0\n484,287,5.5\n484,288,6.0\n484,289,6.5\n484,290,7.0\n484,291,7.5\n484,292,8.0\n484,293,8.5\n484,294,9.0\n484,295,9.5\n484,296,10.0\n484,297,10.5\n484,298,11.0\n484,299,11.5\n484,300,8.0\n484,301,7.5\n484,302,7.0\n484,303,6.5\n484,304,6.0\n484,305,5.5\n484,306,5.0\n484,307,4.5\n484,308,4.0\n484,309,3.5\n484,310,4.0\n484,311,4.5\n484,312,5.0\n484,313,5.5\n484,314,6.0\n484,315,6.5\n484,316,7.0\n484,317,7.5\n484,318,8.0\n484,319,8.5\n484,320,9.0\n484,321,9.5\n484,322,10.0\n484,323,10.5\n484,324,11.0\n484,325,7.5\n484,326,7.0\n484,327,6.5\n484,328,6.0\n484,329,5.5\n484,330,5.0\n484,331,4.5\n484,332,4.0\n484,333,3.5\n484,334,3.0\n484,335,3.5\n484,336,4.0\n484,337,4.5\n484,338,5.0\n484,339,5.5\n484,340,6.0\n484,341,6.5\n484,342,7.0\n484,343,7.5\n484,344,8.0\n484,345,8.5\n484,346,9.0\n484,347,9.5\n484,348,10.0\n484,349,10.5\n484,350,7.0\n484,351,6.5\n484,352,6.0\n484,353,5.5\n484,354,5.0\n484,355,4.5\n484,356,4.0\n484,357,3.5\n484,358,3.0\n484,359,2.5\n484,360,3.0\n484,361,3.5\n484,362,4.0\n484,363,4.5\n484,364,5.0\n484,365,5.5\n484,366,6.0\n484,367,6.5\n484,368,7.0\n484,369,7.5\n484,370,8.0\n484,371,8.5\n484,372,9.0\n484,373,9.5\n484,374,10.0\n484,375,6.5\n484,376,6.0\n484,377,5.5\n484,378,5.0\n484,379,4.5\n484,380,4.0\n484,381,3.5\n484,382,3.0\n484,383,2.5\n484,384,2.0\n484,385,2.5\n484,386,3.0\n484,387,3.5\n484,388,4.0\n484,389,4.5\n484,390,5.0\n484,391,5.5\n484,392,6.0\n484,393,6.5\n484,394,7.0\n484,395,7.5\n484,396,8.0\n484,397,8.5\n484,398,9.0\n484,399,9.5\n484,400,6.0\n484,401,5.5\n484,402,5.0\n484,403,4.5\n484,404,4.0\n484,405,3.5\n484,406,3.0\n484,407,2.5\n484,408,2.0\n484,409,1.5\n484,410,2.0\n484,411,2.5\n484,412,3.0\n484,413,3.5\n484,414,4.0\n484,415,4.5\n484,416,5.0\n484,417,5.5\n484,418,6.0\n484,419,6.5\n484,420,7.0\n484,421,7.5\n484,422,8.0\n484,423,8.5\n484,424,9.0\n484,425,5.5\n484,426,5.0\n484,427,4.5\n484,428,4.0\n484,429,3.5\n484,430,3.0\n484,431,2.5\n484,432,2.0\n484,433,1.5\n484,434,1.0\n484,435,1.5\n484,436,2.0\n484,437,2.5\n484,438,3.0\n484,439,3.5\n484,440,4.0\n484,441,4.5\n484,442,5.0\n484,443,5.5\n484,444,6.0\n484,445,6.5\n484,446,7.0\n484,447,7.5\n484,448,8.0\n484,449,8.5\n484,450,5.0\n484,451,4.5\n484,452,4.0\n484,453,3.5\n484,454,3.0\n484,455,2.5\n484,456,2.0\n484,457,1.5\n484,458,1.0\n484,459,0.5\n484,460,1.0\n484,461,1.5\n484,462,2.0\n484,463,2.5\n484,464,3.0\n484,465,3.5\n484,466,4.0\n484,467,4.5\n484,468,5.0\n484,469,5.5\n484,470,6.0\n484,471,6.5\n484,472,7.0\n484,473,7.5\n484,474,8.0\n484,475,4.5\n484,476,4.0\n484,477,3.5\n484,478,3.0\n484,479,2.5\n484,480,2.0\n484,481,1.5\n484,482,1.0\n484,483,0.5\n484,484,0\n484,485,0.5\n484,486,1.0\n484,487,1.5\n484,488,2.0\n484,489,2.5\n484,490,3.0\n484,491,3.5\n484,492,4.0\n484,493,4.5\n484,494,5.0\n484,495,5.5\n484,496,6.0\n484,497,6.5\n484,498,7.0\n484,499,7.5\n484,500,5.0\n484,501,4.5\n484,502,4.0\n484,503,3.5\n484,504,3.0\n484,505,2.5\n484,506,2.0\n484,507,1.5\n484,508,1.0\n484,509,0.5\n484,510,1.0\n484,511,1.5\n484,512,2.0\n484,513,2.5\n484,514,3.0\n484,515,3.5\n484,516,4.0\n484,517,4.5\n484,518,5.0\n484,519,5.5\n484,520,6.0\n484,521,6.5\n484,522,7.0\n484,523,7.5\n484,524,8.0\n484,525,5.5\n484,526,5.0\n484,527,4.5\n484,528,4.0\n484,529,3.5\n484,530,3.0\n484,531,2.5\n484,532,2.0\n484,533,1.5\n484,534,1.0\n484,535,1.5\n484,536,2.0\n484,537,2.5\n484,538,3.0\n484,539,3.5\n484,540,4.0\n484,541,4.5\n484,542,5.0\n484,543,5.5\n484,544,6.0\n484,545,6.5\n484,546,7.0\n484,547,7.5\n484,548,8.0\n484,549,8.5\n484,550,6.0\n484,551,5.5\n484,552,5.0\n484,553,4.5\n484,554,4.0\n484,555,3.5\n484,556,3.0\n484,557,2.5\n484,558,2.0\n484,559,1.5\n484,560,2.0\n484,561,2.5\n484,562,3.0\n484,563,3.5\n484,564,4.0\n484,565,4.5\n484,566,5.0\n484,567,5.5\n484,568,6.0\n484,569,6.5\n484,570,7.0\n484,571,7.5\n484,572,8.0\n484,573,8.5\n484,574,9.0\n484,575,6.5\n484,576,6.0\n484,577,5.5\n484,578,5.0\n484,579,4.5\n484,580,4.0\n484,581,3.5\n484,582,3.0\n484,583,2.5\n484,584,2.0\n484,585,2.5\n484,586,3.0\n484,587,3.5\n484,588,4.0\n484,589,4.5\n484,590,5.0\n484,591,5.5\n484,592,6.0\n484,593,6.5\n484,594,7.0\n484,595,7.5\n484,596,8.0\n484,597,8.5\n484,598,9.0\n484,599,9.5\n484,600,7.0\n484,601,6.5\n484,602,6.0\n484,603,5.5\n484,604,5.0\n484,605,4.5\n484,606,4.0\n484,607,3.5\n484,608,3.0\n484,609,2.5\n484,610,3.0\n484,611,3.5\n484,612,4.0\n484,613,4.5\n484,614,5.0\n484,615,5.5\n484,616,6.0\n484,617,6.5\n484,618,7.0\n484,619,7.5\n484,620,8.0\n484,621,8.5\n484,622,9.0\n484,623,9.5\n484,624,10.0\n485,0,14.5\n485,1,14.0\n485,2,13.5\n485,3,13.0\n485,4,12.5\n485,5,12.0\n485,6,11.5\n485,7,11.0\n485,8,10.5\n485,9,10.0\n485,10,9.5\n485,11,10.0\n485,12,10.5\n485,13,11.0\n485,14,11.5\n485,15,12.0\n485,16,12.5\n485,17,13.0\n485,18,13.5\n485,19,14.0\n485,20,14.5\n485,21,15.0\n485,22,15.5\n485,23,16.0\n485,24,16.5\n485,25,14.0\n485,26,13.5\n485,27,13.0\n485,28,12.5\n485,29,12.0\n485,30,11.5\n485,31,11.0\n485,32,10.5\n485,33,10.0\n485,34,9.5\n485,35,9.0\n485,36,9.5\n485,37,10.0\n485,38,10.5\n485,39,11.0\n485,40,11.5\n485,41,12.0\n485,42,12.5\n485,43,13.0\n485,44,13.5\n485,45,14.0\n485,46,14.5\n485,47,15.0\n485,48,15.5\n485,49,16.0\n485,50,13.5\n485,51,13.0\n485,52,12.5\n485,53,12.0\n485,54,11.5\n485,55,11.0\n485,56,10.5\n485,57,10.0\n485,58,9.5\n485,59,9.0\n485,60,8.5\n485,61,9.0\n485,62,9.5\n485,63,10.0\n485,64,10.5\n485,65,11.0\n485,66,11.5\n485,67,12.0\n485,68,12.5\n485,69,13.0\n485,70,13.5\n485,71,14.0\n485,72,14.5\n485,73,15.0\n485,74,15.5\n485,75,13.0\n485,76,12.5\n485,77,12.0\n485,78,11.5\n485,79,11.0\n485,80,10.5\n485,81,10.0\n485,82,9.5\n485,83,9.0\n485,84,8.5\n485,85,8.0\n485,86,8.5\n485,87,9.0\n485,88,9.5\n485,89,10.0\n485,90,10.5\n485,91,11.0\n485,92,11.5\n485,93,12.0\n485,94,12.5\n485,95,13.0\n485,96,13.5\n485,97,14.0\n485,98,14.5\n485,99,15.0\n485,100,12.5\n485,101,12.0\n485,102,11.5\n485,103,11.0\n485,104,10.5\n485,105,10.0\n485,106,9.5\n485,107,9.0\n485,108,8.5\n485,109,8.0\n485,110,7.5\n485,111,8.0\n485,112,8.5\n485,113,9.0\n485,114,9.5\n485,115,10.0\n485,116,10.5\n485,117,11.0\n485,118,11.5\n485,119,12.0\n485,120,12.5\n485,121,13.0\n485,122,13.5\n485,123,14.0\n485,124,14.5\n485,125,12.0\n485,126,11.5\n485,127,11.0\n485,128,10.5\n485,129,10.0\n485,130,9.5\n485,131,9.0\n485,132,8.5\n485,133,8.0\n485,134,7.5\n485,135,7.0\n485,136,7.5\n485,137,8.0\n485,138,8.5\n485,139,9.0\n485,140,9.5\n485,141,10.0\n485,142,10.5\n485,143,11.0\n485,144,11.5\n485,145,12.0\n485,146,12.5\n485,147,13.0\n485,148,13.5\n485,149,14.0\n485,150,11.5\n485,151,11.0\n485,152,10.5\n485,153,10.0\n485,154,9.5\n485,155,9.0\n485,156,8.5\n485,157,8.0\n485,158,7.5\n485,159,7.0\n485,160,6.5\n485,161,7.0\n485,162,7.5\n485,163,8.0\n485,164,8.5\n485,165,9.0\n485,166,9.5\n485,167,10.0\n485,168,10.5\n485,169,11.0\n485,170,11.5\n485,171,12.0\n485,172,12.5\n485,173,13.0\n485,174,13.5\n485,175,11.0\n485,176,10.5\n485,177,10.0\n485,178,9.5\n485,179,9.0\n485,180,8.5\n485,181,8.0\n485,182,7.5\n485,183,7.0\n485,184,6.5\n485,185,6.0\n485,186,6.5\n485,187,7.0\n485,188,7.5\n485,189,8.0\n485,190,8.5\n485,191,9.0\n485,192,9.5\n485,193,10.0\n485,194,10.5\n485,195,11.0\n485,196,11.5\n485,197,12.0\n485,198,12.5\n485,199,13.0\n485,200,10.5\n485,201,10.0\n485,202,9.5\n485,203,9.0\n485,204,8.5\n485,205,8.0\n485,206,7.5\n485,207,7.0\n485,208,6.5\n485,209,6.0\n485,210,5.5\n485,211,6.0\n485,212,6.5\n485,213,7.0\n485,214,7.5\n485,215,8.0\n485,216,8.5\n485,217,9.0\n485,218,9.5\n485,219,10.0\n485,220,10.5\n485,221,11.0\n485,222,11.5\n485,223,12.0\n485,224,12.5\n485,225,10.0\n485,226,9.5\n485,227,9.0\n485,228,8.5\n485,229,8.0\n485,230,7.5\n485,231,7.0\n485,232,6.5\n485,233,6.0\n485,234,5.5\n485,235,5.0\n485,236,5.5\n485,237,6.0\n485,238,6.5\n485,239,7.0\n485,240,7.5\n485,241,8.0\n485,242,8.5\n485,243,9.0\n485,244,9.5\n485,245,10.0\n485,246,10.5\n485,247,11.0\n485,248,11.5\n485,249,12.0\n485,250,9.5\n485,251,9.0\n485,252,8.5\n485,253,8.0\n485,254,7.5\n485,255,7.0\n485,256,6.5\n485,257,6.0\n485,258,5.5\n485,259,5.0\n485,260,4.5\n485,261,5.0\n485,262,5.5\n485,263,6.0\n485,264,6.5\n485,265,7.0\n485,266,7.5\n485,267,8.0\n485,268,8.5\n485,269,9.0\n485,270,9.5\n485,271,10.0\n485,272,10.5\n485,273,11.0\n485,274,11.5\n485,275,9.0\n485,276,8.5\n485,277,8.0\n485,278,7.5\n485,279,7.0\n485,280,6.5\n485,281,6.0\n485,282,5.5\n485,283,5.0\n485,284,4.5\n485,285,4.0\n485,286,4.5\n485,287,5.0\n485,288,5.5\n485,289,6.0\n485,290,6.5\n485,291,7.0\n485,292,7.5\n485,293,8.0\n485,294,8.5\n485,295,9.0\n485,296,9.5\n485,297,10.0\n485,298,10.5\n485,299,11.0\n485,300,8.5\n485,301,8.0\n485,302,7.5\n485,303,7.0\n485,304,6.5\n485,305,6.0\n485,306,5.5\n485,307,5.0\n485,308,4.5\n485,309,4.0\n485,310,3.5\n485,311,4.0\n485,312,4.5\n485,313,5.0\n485,314,5.5\n485,315,6.0\n485,316,6.5\n485,317,7.0\n485,318,7.5\n485,319,8.0\n485,320,8.5\n485,321,9.0\n485,322,9.5\n485,323,10.0\n485,324,10.5\n485,325,8.0\n485,326,7.5\n485,327,7.0\n485,328,6.5\n485,329,6.0\n485,330,5.5\n485,331,5.0\n485,332,4.5\n485,333,4.0\n485,334,3.5\n485,335,3.0\n485,336,3.5\n485,337,4.0\n485,338,4.5\n485,339,5.0\n485,340,5.5\n485,341,6.0\n485,342,6.5\n485,343,7.0\n485,344,7.5\n485,345,8.0\n485,346,8.5\n485,347,9.0\n485,348,9.5\n485,349,10.0\n485,350,7.5\n485,351,7.0\n485,352,6.5\n485,353,6.0\n485,354,5.5\n485,355,5.0\n485,356,4.5\n485,357,4.0\n485,358,3.5\n485,359,3.0\n485,360,2.5\n485,361,3.0\n485,362,3.5\n485,363,4.0\n485,364,4.5\n485,365,5.0\n485,366,5.5\n485,367,6.0\n485,368,6.5\n485,369,7.0\n485,370,7.5\n485,371,8.0\n485,372,8.5\n485,373,9.0\n485,374,9.5\n485,375,7.0\n485,376,6.5\n485,377,6.0\n485,378,5.5\n485,379,5.0\n485,380,4.5\n485,381,4.0\n485,382,3.5\n485,383,3.0\n485,384,2.5\n485,385,2.0\n485,386,2.5\n485,387,3.0\n485,388,3.5\n485,389,4.0\n485,390,4.5\n485,391,5.0\n485,392,5.5\n485,393,6.0\n485,394,6.5\n485,395,7.0\n485,396,7.5\n485,397,8.0\n485,398,8.5\n485,399,9.0\n485,400,6.5\n485,401,6.0\n485,402,5.5\n485,403,5.0\n485,404,4.5\n485,405,4.0\n485,406,3.5\n485,407,3.0\n485,408,2.5\n485,409,2.0\n485,410,1.5\n485,411,2.0\n485,412,2.5\n485,413,3.0\n485,414,3.5\n485,415,4.0\n485,416,4.5\n485,417,5.0\n485,418,5.5\n485,419,6.0\n485,420,6.5\n485,421,7.0\n485,422,7.5\n485,423,8.0\n485,424,8.5\n485,425,6.0\n485,426,5.5\n485,427,5.0\n485,428,4.5\n485,429,4.0\n485,430,3.5\n485,431,3.0\n485,432,2.5\n485,433,2.0\n485,434,1.5\n485,435,1.0\n485,436,1.5\n485,437,2.0\n485,438,2.5\n485,439,3.0\n485,440,3.5\n485,441,4.0\n485,442,4.5\n485,443,5.0\n485,444,5.5\n485,445,6.0\n485,446,6.5\n485,447,7.0\n485,448,7.5\n485,449,8.0\n485,450,5.5\n485,451,5.0\n485,452,4.5\n485,453,4.0\n485,454,3.5\n485,455,3.0\n485,456,2.5\n485,457,2.0\n485,458,1.5\n485,459,1.0\n485,460,0.5\n485,461,1.0\n485,462,1.5\n485,463,2.0\n485,464,2.5\n485,465,3.0\n485,466,3.5\n485,467,4.0\n485,468,4.5\n485,469,5.0\n485,470,5.5\n485,471,6.0\n485,472,6.5\n485,473,7.0\n485,474,7.5\n485,475,5.0\n485,476,4.5\n485,477,4.0\n485,478,3.5\n485,479,3.0\n485,480,2.5\n485,481,2.0\n485,482,1.5\n485,483,1.0\n485,484,0.5\n485,485,0\n485,486,0.5\n485,487,1.0\n485,488,1.5\n485,489,2.0\n485,490,2.5\n485,491,3.0\n485,492,3.5\n485,493,4.0\n485,494,4.5\n485,495,5.0\n485,496,5.5\n485,497,6.0\n485,498,6.5\n485,499,7.0\n485,500,5.5\n485,501,5.0\n485,502,4.5\n485,503,4.0\n485,504,3.5\n485,505,3.0\n485,506,2.5\n485,507,2.0\n485,508,1.5\n485,509,1.0\n485,510,0.5\n485,511,1.0\n485,512,1.5\n485,513,2.0\n485,514,2.5\n485,515,3.0\n485,516,3.5\n485,517,4.0\n485,518,4.5\n485,519,5.0\n485,520,5.5\n485,521,6.0\n485,522,6.5\n485,523,7.0\n485,524,7.5\n485,525,6.0\n485,526,5.5\n485,527,5.0\n485,528,4.5\n485,529,4.0\n485,530,3.5\n485,531,3.0\n485,532,2.5\n485,533,2.0\n485,534,1.5\n485,535,1.0\n485,536,1.5\n485,537,2.0\n485,538,2.5\n485,539,3.0\n485,540,3.5\n485,541,4.0\n485,542,4.5\n485,543,5.0\n485,544,5.5\n485,545,6.0\n485,546,6.5\n485,547,7.0\n485,548,7.5\n485,549,8.0\n485,550,6.5\n485,551,6.0\n485,552,5.5\n485,553,5.0\n485,554,4.5\n485,555,4.0\n485,556,3.5\n485,557,3.0\n485,558,2.5\n485,559,2.0\n485,560,1.5\n485,561,2.0\n485,562,2.5\n485,563,3.0\n485,564,3.5\n485,565,4.0\n485,566,4.5\n485,567,5.0\n485,568,5.5\n485,569,6.0\n485,570,6.5\n485,571,7.0\n485,572,7.5\n485,573,8.0\n485,574,8.5\n485,575,7.0\n485,576,6.5\n485,577,6.0\n485,578,5.5\n485,579,5.0\n485,580,4.5\n485,581,4.0\n485,582,3.5\n485,583,3.0\n485,584,2.5\n485,585,2.0\n485,586,2.5\n485,587,3.0\n485,588,3.5\n485,589,4.0\n485,590,4.5\n485,591,5.0\n485,592,5.5\n485,593,6.0\n485,594,6.5\n485,595,7.0\n485,596,7.5\n485,597,8.0\n485,598,8.5\n485,599,9.0\n485,600,7.5\n485,601,7.0\n485,602,6.5\n485,603,6.0\n485,604,5.5\n485,605,5.0\n485,606,4.5\n485,607,4.0\n485,608,3.5\n485,609,3.0\n485,610,2.5\n485,611,3.0\n485,612,3.5\n485,613,4.0\n485,614,4.5\n485,615,5.0\n485,616,5.5\n485,617,6.0\n485,618,6.5\n485,619,7.0\n485,620,7.5\n485,621,8.0\n485,622,8.5\n485,623,9.0\n485,624,9.5\n486,0,15.0\n486,1,14.5\n486,2,14.0\n486,3,13.5\n486,4,13.0\n486,5,12.5\n486,6,12.0\n486,7,11.5\n486,8,11.0\n486,9,10.5\n486,10,10.0\n486,11,9.5\n486,12,10.0\n486,13,10.5\n486,14,11.0\n486,15,11.5\n486,16,12.0\n486,17,12.5\n486,18,13.0\n486,19,13.5\n486,20,14.0\n486,21,14.5\n486,22,15.0\n486,23,15.5\n486,24,16.0\n486,25,14.5\n486,26,14.0\n486,27,13.5\n486,28,13.0\n486,29,12.5\n486,30,12.0\n486,31,11.5\n486,32,11.0\n486,33,10.5\n486,34,10.0\n486,35,9.5\n486,36,9.0\n486,37,9.5\n486,38,10.0\n486,39,10.5\n486,40,11.0\n486,41,11.5\n486,42,12.0\n486,43,12.5\n486,44,13.0\n486,45,13.5\n486,46,14.0\n486,47,14.5\n486,48,15.0\n486,49,15.5\n486,50,14.0\n486,51,13.5\n486,52,13.0\n486,53,12.5\n486,54,12.0\n486,55,11.5\n486,56,11.0\n486,57,10.5\n486,58,10.0\n486,59,9.5\n486,60,9.0\n486,61,8.5\n486,62,9.0\n486,63,9.5\n486,64,10.0\n486,65,10.5\n486,66,11.0\n486,67,11.5\n486,68,12.0\n486,69,12.5\n486,70,13.0\n486,71,13.5\n486,72,14.0\n486,73,14.5\n486,74,15.0\n486,75,13.5\n486,76,13.0\n486,77,12.5\n486,78,12.0\n486,79,11.5\n486,80,11.0\n486,81,10.5\n486,82,10.0\n486,83,9.5\n486,84,9.0\n486,85,8.5\n486,86,8.0\n486,87,8.5\n486,88,9.0\n486,89,9.5\n486,90,10.0\n486,91,10.5\n486,92,11.0\n486,93,11.5\n486,94,12.0\n486,95,12.5\n486,96,13.0\n486,97,13.5\n486,98,14.0\n486,99,14.5\n486,100,13.0\n486,101,12.5\n486,102,12.0\n486,103,11.5\n486,104,11.0\n486,105,10.5\n486,106,10.0\n486,107,9.5\n486,108,9.0\n486,109,8.5\n486,110,8.0\n486,111,7.5\n486,112,8.0\n486,113,8.5\n486,114,9.0\n486,115,9.5\n486,116,10.0\n486,117,10.5\n486,118,11.0\n486,119,11.5\n486,120,12.0\n486,121,12.5\n486,122,13.0\n486,123,13.5\n486,124,14.0\n486,125,12.5\n486,126,12.0\n486,127,11.5\n486,128,11.0\n486,129,10.5\n486,130,10.0\n486,131,9.5\n486,132,9.0\n486,133,8.5\n486,134,8.0\n486,135,7.5\n486,136,7.0\n486,137,7.5\n486,138,8.0\n486,139,8.5\n486,140,9.0\n486,141,9.5\n486,142,10.0\n486,143,10.5\n486,144,11.0\n486,145,11.5\n486,146,12.0\n486,147,12.5\n486,148,13.0\n486,149,13.5\n486,150,12.0\n486,151,11.5\n486,152,11.0\n486,153,10.5\n486,154,10.0\n486,155,9.5\n486,156,9.0\n486,157,8.5\n486,158,8.0\n486,159,7.5\n486,160,7.0\n486,161,6.5\n486,162,7.0\n486,163,7.5\n486,164,8.0\n486,165,8.5\n486,166,9.0\n486,167,9.5\n486,168,10.0\n486,169,10.5\n486,170,11.0\n486,171,11.5\n486,172,12.0\n486,173,12.5\n486,174,13.0\n486,175,11.5\n486,176,11.0\n486,177,10.5\n486,178,10.0\n486,179,9.5\n486,180,9.0\n486,181,8.5\n486,182,8.0\n486,183,7.5\n486,184,7.0\n486,185,6.5\n486,186,6.0\n486,187,6.5\n486,188,7.0\n486,189,7.5\n486,190,8.0\n486,191,8.5\n486,192,9.0\n486,193,9.5\n486,194,10.0\n486,195,10.5\n486,196,11.0\n486,197,11.5\n486,198,12.0\n486,199,12.5\n486,200,11.0\n486,201,10.5\n486,202,10.0\n486,203,9.5\n486,204,9.0\n486,205,8.5\n486,206,8.0\n486,207,7.5\n486,208,7.0\n486,209,6.5\n486,210,6.0\n486,211,5.5\n486,212,6.0\n486,213,6.5\n486,214,7.0\n486,215,7.5\n486,216,8.0\n486,217,8.5\n486,218,9.0\n486,219,9.5\n486,220,10.0\n486,221,10.5\n486,222,11.0\n486,223,11.5\n486,224,12.0\n486,225,10.5\n486,226,10.0\n486,227,9.5\n486,228,9.0\n486,229,8.5\n486,230,8.0\n486,231,7.5\n486,232,7.0\n486,233,6.5\n486,234,6.0\n486,235,5.5\n486,236,5.0\n486,237,5.5\n486,238,6.0\n486,239,6.5\n486,240,7.0\n486,241,7.5\n486,242,8.0\n486,243,8.5\n486,244,9.0\n486,245,9.5\n486,246,10.0\n486,247,10.5\n486,248,11.0\n486,249,11.5\n486,250,10.0\n486,251,9.5\n486,252,9.0\n486,253,8.5\n486,254,8.0\n486,255,7.5\n486,256,7.0\n486,257,6.5\n486,258,6.0\n486,259,5.5\n486,260,5.0\n486,261,4.5\n486,262,5.0\n486,263,5.5\n486,264,6.0\n486,265,6.5\n486,266,7.0\n486,267,7.5\n486,268,8.0\n486,269,8.5\n486,270,9.0\n486,271,9.5\n486,272,10.0\n486,273,10.5\n486,274,11.0\n486,275,9.5\n486,276,9.0\n486,277,8.5\n486,278,8.0\n486,279,7.5\n486,280,7.0\n486,281,6.5\n486,282,6.0\n486,283,5.5\n486,284,5.0\n486,285,4.5\n486,286,4.0\n486,287,4.5\n486,288,5.0\n486,289,5.5\n486,290,6.0\n486,291,6.5\n486,292,7.0\n486,293,7.5\n486,294,8.0\n486,295,8.5\n486,296,9.0\n486,297,9.5\n486,298,10.0\n486,299,10.5\n486,300,9.0\n486,301,8.5\n486,302,8.0\n486,303,7.5\n486,304,7.0\n486,305,6.5\n486,306,6.0\n486,307,5.5\n486,308,5.0\n486,309,4.5\n486,310,4.0\n486,311,3.5\n486,312,4.0\n486,313,4.5\n486,314,5.0\n486,315,5.5\n486,316,6.0\n486,317,6.5\n486,318,7.0\n486,319,7.5\n486,320,8.0\n486,321,8.5\n486,322,9.0\n486,323,9.5\n486,324,10.0\n486,325,8.5\n486,326,8.0\n486,327,7.5\n486,328,7.0\n486,329,6.5\n486,330,6.0\n486,331,5.5\n486,332,5.0\n486,333,4.5\n486,334,4.0\n486,335,3.5\n486,336,3.0\n486,337,3.5\n486,338,4.0\n486,339,4.5\n486,340,5.0\n486,341,5.5\n486,342,6.0\n486,343,6.5\n486,344,7.0\n486,345,7.5\n486,346,8.0\n486,347,8.5\n486,348,9.0\n486,349,9.5\n486,350,8.0\n486,351,7.5\n486,352,7.0\n486,353,6.5\n486,354,6.0\n486,355,5.5\n486,356,5.0\n486,357,4.5\n486,358,4.0\n486,359,3.5\n486,360,3.0\n486,361,2.5\n486,362,3.0\n486,363,3.5\n486,364,4.0\n486,365,4.5\n486,366,5.0\n486,367,5.5\n486,368,6.0\n486,369,6.5\n486,370,7.0\n486,371,7.5\n486,372,8.0\n486,373,8.5\n486,374,9.0\n486,375,7.5\n486,376,7.0\n486,377,6.5\n486,378,6.0\n486,379,5.5\n486,380,5.0\n486,381,4.5\n486,382,4.0\n486,383,3.5\n486,384,3.0\n486,385,2.5\n486,386,2.0\n486,387,2.5\n486,388,3.0\n486,389,3.5\n486,390,4.0\n486,391,4.5\n486,392,5.0\n486,393,5.5\n486,394,6.0\n486,395,6.5\n486,396,7.0\n486,397,7.5\n486,398,8.0\n486,399,8.5\n486,400,7.0\n486,401,6.5\n486,402,6.0\n486,403,5.5\n486,404,5.0\n486,405,4.5\n486,406,4.0\n486,407,3.5\n486,408,3.0\n486,409,2.5\n486,410,2.0\n486,411,1.5\n486,412,2.0\n486,413,2.5\n486,414,3.0\n486,415,3.5\n486,416,4.0\n486,417,4.5\n486,418,5.0\n486,419,5.5\n486,420,6.0\n486,421,6.5\n486,422,7.0\n486,423,7.5\n486,424,8.0\n486,425,6.5\n486,426,6.0\n486,427,5.5\n486,428,5.0\n486,429,4.5\n486,430,4.0\n486,431,3.5\n486,432,3.0\n486,433,2.5\n486,434,2.0\n486,435,1.5\n486,436,1.0\n486,437,1.5\n486,438,2.0\n486,439,2.5\n486,440,3.0\n486,441,3.5\n486,442,4.0\n486,443,4.5\n486,444,5.0\n486,445,5.5\n486,446,6.0\n486,447,6.5\n486,448,7.0\n486,449,7.5\n486,450,6.0\n486,451,5.5\n486,452,5.0\n486,453,4.5\n486,454,4.0\n486,455,3.5\n486,456,3.0\n486,457,2.5\n486,458,2.0\n486,459,1.5\n486,460,1.0\n486,461,0.5\n486,462,1.0\n486,463,1.5\n486,464,2.0\n486,465,2.5\n486,466,3.0\n486,467,3.5\n486,468,4.0\n486,469,4.5\n486,470,5.0\n486,471,5.5\n486,472,6.0\n486,473,6.5\n486,474,7.0\n486,475,5.5\n486,476,5.0\n486,477,4.5\n486,478,4.0\n486,479,3.5\n486,480,3.0\n486,481,2.5\n486,482,2.0\n486,483,1.5\n486,484,1.0\n486,485,0.5\n486,486,0\n486,487,0.5\n486,488,1.0\n486,489,1.5\n486,490,2.0\n486,491,2.5\n486,492,3.0\n486,493,3.5\n486,494,4.0\n486,495,4.5\n486,496,5.0\n486,497,5.5\n486,498,6.0\n486,499,6.5\n486,500,6.0\n486,501,5.5\n486,502,5.0\n486,503,4.5\n486,504,4.0\n486,505,3.5\n486,506,3.0\n486,507,2.5\n486,508,2.0\n486,509,1.5\n486,510,1.0\n486,511,0.5\n486,512,1.0\n486,513,1.5\n486,514,2.0\n486,515,2.5\n486,516,3.0\n486,517,3.5\n486,518,4.0\n486,519,4.5\n486,520,5.0\n486,521,5.5\n486,522,6.0\n486,523,6.5\n486,524,7.0\n486,525,6.5\n486,526,6.0\n486,527,5.5\n486,528,5.0\n486,529,4.5\n486,530,4.0\n486,531,3.5\n486,532,3.0\n486,533,2.5\n486,534,2.0\n486,535,1.5\n486,536,1.0\n486,537,1.5\n486,538,2.0\n486,539,2.5\n486,540,3.0\n486,541,3.5\n486,542,4.0\n486,543,4.5\n486,544,5.0\n486,545,5.5\n486,546,6.0\n486,547,6.5\n486,548,7.0\n486,549,7.5\n486,550,7.0\n486,551,6.5\n486,552,6.0\n486,553,5.5\n486,554,5.0\n486,555,4.5\n486,556,4.0\n486,557,3.5\n486,558,3.0\n486,559,2.5\n486,560,2.0\n486,561,1.5\n486,562,2.0\n486,563,2.5\n486,564,3.0\n486,565,3.5\n486,566,4.0\n486,567,4.5\n486,568,5.0\n486,569,5.5\n486,570,6.0\n486,571,6.5\n486,572,7.0\n486,573,7.5\n486,574,8.0\n486,575,7.5\n486,576,7.0\n486,577,6.5\n486,578,6.0\n486,579,5.5\n486,580,5.0\n486,581,4.5\n486,582,4.0\n486,583,3.5\n486,584,3.0\n486,585,2.5\n486,586,2.0\n486,587,2.5\n486,588,3.0\n486,589,3.5\n486,590,4.0\n486,591,4.5\n486,592,5.0\n486,593,5.5\n486,594,6.0\n486,595,6.5\n486,596,7.0\n486,597,7.5\n486,598,8.0\n486,599,8.5\n486,600,8.0\n486,601,7.5\n486,602,7.0\n486,603,6.5\n486,604,6.0\n486,605,5.5\n486,606,5.0\n486,607,4.5\n486,608,4.0\n486,609,3.5\n486,610,3.0\n486,611,2.5\n486,612,3.0\n486,613,3.5\n486,614,4.0\n486,615,4.5\n486,616,5.0\n486,617,5.5\n486,618,6.0\n486,619,6.5\n486,620,7.0\n486,621,7.5\n486,622,8.0\n486,623,8.5\n486,624,9.0\n487,0,15.5\n487,1,15.0\n487,2,14.5\n487,3,14.0\n487,4,13.5\n487,5,13.0\n487,6,12.5\n487,7,12.0\n487,8,11.5\n487,9,11.0\n487,10,10.5\n487,11,10.0\n487,12,9.5\n487,13,10.0\n487,14,10.5\n487,15,11.0\n487,16,11.5\n487,17,12.0\n487,18,12.5\n487,19,13.0\n487,20,13.5\n487,21,14.0\n487,22,14.5\n487,23,15.0\n487,24,15.5\n487,25,15.0\n487,26,14.5\n487,27,14.0\n487,28,13.5\n487,29,13.0\n487,30,12.5\n487,31,12.0\n487,32,11.5\n487,33,11.0\n487,34,10.5\n487,35,10.0\n487,36,9.5\n487,37,9.0\n487,38,9.5\n487,39,10.0\n487,40,10.5\n487,41,11.0\n487,42,11.5\n487,43,12.0\n487,44,12.5\n487,45,13.0\n487,46,13.5\n487,47,14.0\n487,48,14.5\n487,49,15.0\n487,50,14.5\n487,51,14.0\n487,52,13.5\n487,53,13.0\n487,54,12.5\n487,55,12.0\n487,56,11.5\n487,57,11.0\n487,58,10.5\n487,59,10.0\n487,60,9.5\n487,61,9.0\n487,62,8.5\n487,63,9.0\n487,64,9.5\n487,65,10.0\n487,66,10.5\n487,67,11.0\n487,68,11.5\n487,69,12.0\n487,70,12.5\n487,71,13.0\n487,72,13.5\n487,73,14.0\n487,74,14.5\n487,75,14.0\n487,76,13.5\n487,77,13.0\n487,78,12.5\n487,79,12.0\n487,80,11.5\n487,81,11.0\n487,82,10.5\n487,83,10.0\n487,84,9.5\n487,85,9.0\n487,86,8.5\n487,87,8.0\n487,88,8.5\n487,89,9.0\n487,90,9.5\n487,91,10.0\n487,92,10.5\n487,93,11.0\n487,94,11.5\n487,95,12.0\n487,96,12.5\n487,97,13.0\n487,98,13.5\n487,99,14.0\n487,100,13.5\n487,101,13.0\n487,102,12.5\n487,103,12.0\n487,104,11.5\n487,105,11.0\n487,106,10.5\n487,107,10.0\n487,108,9.5\n487,109,9.0\n487,110,8.5\n487,111,8.0\n487,112,7.5\n487,113,8.0\n487,114,8.5\n487,115,9.0\n487,116,9.5\n487,117,10.0\n487,118,10.5\n487,119,11.0\n487,120,11.5\n487,121,12.0\n487,122,12.5\n487,123,13.0\n487,124,13.5\n487,125,13.0\n487,126,12.5\n487,127,12.0\n487,128,11.5\n487,129,11.0\n487,130,10.5\n487,131,10.0\n487,132,9.5\n487,133,9.0\n487,134,8.5\n487,135,8.0\n487,136,7.5\n487,137,7.0\n487,138,7.5\n487,139,8.0\n487,140,8.5\n487,141,9.0\n487,142,9.5\n487,143,10.0\n487,144,10.5\n487,145,11.0\n487,146,11.5\n487,147,12.0\n487,148,12.5\n487,149,13.0\n487,150,12.5\n487,151,12.0\n487,152,11.5\n487,153,11.0\n487,154,10.5\n487,155,10.0\n487,156,9.5\n487,157,9.0\n487,158,8.5\n487,159,8.0\n487,160,7.5\n487,161,7.0\n487,162,6.5\n487,163,7.0\n487,164,7.5\n487,165,8.0\n487,166,8.5\n487,167,9.0\n487,168,9.5\n487,169,10.0\n487,170,10.5\n487,171,11.0\n487,172,11.5\n487,173,12.0\n487,174,12.5\n487,175,12.0\n487,176,11.5\n487,177,11.0\n487,178,10.5\n487,179,10.0\n487,180,9.5\n487,181,9.0\n487,182,8.5\n487,183,8.0\n487,184,7.5\n487,185,7.0\n487,186,6.5\n487,187,6.0\n487,188,6.5\n487,189,7.0\n487,190,7.5\n487,191,8.0\n487,192,8.5\n487,193,9.0\n487,194,9.5\n487,195,10.0\n487,196,10.5\n487,197,11.0\n487,198,11.5\n487,199,12.0\n487,200,11.5\n487,201,11.0\n487,202,10.5\n487,203,10.0\n487,204,9.5\n487,205,9.0\n487,206,8.5\n487,207,8.0\n487,208,7.5\n487,209,7.0\n487,210,6.5\n487,211,6.0\n487,212,5.5\n487,213,6.0\n487,214,6.5\n487,215,7.0\n487,216,7.5\n487,217,8.0\n487,218,8.5\n487,219,9.0\n487,220,9.5\n487,221,10.0\n487,222,10.5\n487,223,11.0\n487,224,11.5\n487,225,11.0\n487,226,10.5\n487,227,10.0\n487,228,9.5\n487,229,9.0\n487,230,8.5\n487,231,8.0\n487,232,7.5\n487,233,7.0\n487,234,6.5\n487,235,6.0\n487,236,5.5\n487,237,5.0\n487,238,5.5\n487,239,6.0\n487,240,6.5\n487,241,7.0\n487,242,7.5\n487,243,8.0\n487,244,8.5\n487,245,9.0\n487,246,9.5\n487,247,10.0\n487,248,10.5\n487,249,11.0\n487,250,10.5\n487,251,10.0\n487,252,9.5\n487,253,9.0\n487,254,8.5\n487,255,8.0\n487,256,7.5\n487,257,7.0\n487,258,6.5\n487,259,6.0\n487,260,5.5\n487,261,5.0\n487,262,4.5\n487,263,5.0\n487,264,5.5\n487,265,6.0\n487,266,6.5\n487,267,7.0\n487,268,7.5\n487,269,8.0\n487,270,8.5\n487,271,9.0\n487,272,9.5\n487,273,10.0\n487,274,10.5\n487,275,10.0\n487,276,9.5\n487,277,9.0\n487,278,8.5\n487,279,8.0\n487,280,7.5\n487,281,7.0\n487,282,6.5\n487,283,6.0\n487,284,5.5\n487,285,5.0\n487,286,4.5\n487,287,4.0\n487,288,4.5\n487,289,5.0\n487,290,5.5\n487,291,6.0\n487,292,6.5\n487,293,7.0\n487,294,7.5\n487,295,8.0\n487,296,8.5\n487,297,9.0\n487,298,9.5\n487,299,10.0\n487,300,9.5\n487,301,9.0\n487,302,8.5\n487,303,8.0\n487,304,7.5\n487,305,7.0\n487,306,6.5\n487,307,6.0\n487,308,5.5\n487,309,5.0\n487,310,4.5\n487,311,4.0\n487,312,3.5\n487,313,4.0\n487,314,4.5\n487,315,5.0\n487,316,5.5\n487,317,6.0\n487,318,6.5\n487,319,7.0\n487,320,7.5\n487,321,8.0\n487,322,8.5\n487,323,9.0\n487,324,9.5\n487,325,9.0\n487,326,8.5\n487,327,8.0\n487,328,7.5\n487,329,7.0\n487,330,6.5\n487,331,6.0\n487,332,5.5\n487,333,5.0\n487,334,4.5\n487,335,4.0\n487,336,3.5\n487,337,3.0\n487,338,3.5\n487,339,4.0\n487,340,4.5\n487,341,5.0\n487,342,5.5\n487,343,6.0\n487,344,6.5\n487,345,7.0\n487,346,7.5\n487,347,8.0\n487,348,8.5\n487,349,9.0\n487,350,8.5\n487,351,8.0\n487,352,7.5\n487,353,7.0\n487,354,6.5\n487,355,6.0\n487,356,5.5\n487,357,5.0\n487,358,4.5\n487,359,4.0\n487,360,3.5\n487,361,3.0\n487,362,2.5\n487,363,3.0\n487,364,3.5\n487,365,4.0\n487,366,4.5\n487,367,5.0\n487,368,5.5\n487,369,6.0\n487,370,6.5\n487,371,7.0\n487,372,7.5\n487,373,8.0\n487,374,8.5\n487,375,8.0\n487,376,7.5\n487,377,7.0\n487,378,6.5\n487,379,6.0\n487,380,5.5\n487,381,5.0\n487,382,4.5\n487,383,4.0\n487,384,3.5\n487,385,3.0\n487,386,2.5\n487,387,2.0\n487,388,2.5\n487,389,3.0\n487,390,3.5\n487,391,4.0\n487,392,4.5\n487,393,5.0\n487,394,5.5\n487,395,6.0\n487,396,6.5\n487,397,7.0\n487,398,7.5\n487,399,8.0\n487,400,7.5\n487,401,7.0\n487,402,6.5\n487,403,6.0\n487,404,5.5\n487,405,5.0\n487,406,4.5\n487,407,4.0\n487,408,3.5\n487,409,3.0\n487,410,2.5\n487,411,2.0\n487,412,1.5\n487,413,2.0\n487,414,2.5\n487,415,3.0\n487,416,3.5\n487,417,4.0\n487,418,4.5\n487,419,5.0\n487,420,5.5\n487,421,6.0\n487,422,6.5\n487,423,7.0\n487,424,7.5\n487,425,7.0\n487,426,6.5\n487,427,6.0\n487,428,5.5\n487,429,5.0\n487,430,4.5\n487,431,4.0\n487,432,3.5\n487,433,3.0\n487,434,2.5\n487,435,2.0\n487,436,1.5\n487,437,1.0\n487,438,1.5\n487,439,2.0\n487,440,2.5\n487,441,3.0\n487,442,3.5\n487,443,4.0\n487,444,4.5\n487,445,5.0\n487,446,5.5\n487,447,6.0\n487,448,6.5\n487,449,7.0\n487,450,6.5\n487,451,6.0\n487,452,5.5\n487,453,5.0\n487,454,4.5\n487,455,4.0\n487,456,3.5\n487,457,3.0\n487,458,2.5\n487,459,2.0\n487,460,1.5\n487,461,1.0\n487,462,0.5\n487,463,1.0\n487,464,1.5\n487,465,2.0\n487,466,2.5\n487,467,3.0\n487,468,3.5\n487,469,4.0\n487,470,4.5\n487,471,5.0\n487,472,5.5\n487,473,6.0\n487,474,6.5\n487,475,6.0\n487,476,5.5\n487,477,5.0\n487,478,4.5\n487,479,4.0\n487,480,3.5\n487,481,3.0\n487,482,2.5\n487,483,2.0\n487,484,1.5\n487,485,1.0\n487,486,0.5\n487,487,0\n487,488,0.5\n487,489,1.0\n487,490,1.5\n487,491,2.0\n487,492,2.5\n487,493,3.0\n487,494,3.5\n487,495,4.0\n487,496,4.5\n487,497,5.0\n487,498,5.5\n487,499,6.0\n487,500,6.5\n487,501,6.0\n487,502,5.5\n487,503,5.0\n487,504,4.5\n487,505,4.0\n487,506,3.5\n487,507,3.0\n487,508,2.5\n487,509,2.0\n487,510,1.5\n487,511,1.0\n487,512,0.5\n487,513,1.0\n487,514,1.5\n487,515,2.0\n487,516,2.5\n487,517,3.0\n487,518,3.5\n487,519,4.0\n487,520,4.5\n487,521,5.0\n487,522,5.5\n487,523,6.0\n487,524,6.5\n487,525,7.0\n487,526,6.5\n487,527,6.0\n487,528,5.5\n487,529,5.0\n487,530,4.5\n487,531,4.0\n487,532,3.5\n487,533,3.0\n487,534,2.5\n487,535,2.0\n487,536,1.5\n487,537,1.0\n487,538,1.5\n487,539,2.0\n487,540,2.5\n487,541,3.0\n487,542,3.5\n487,543,4.0\n487,544,4.5\n487,545,5.0\n487,546,5.5\n487,547,6.0\n487,548,6.5\n487,549,7.0\n487,550,7.5\n487,551,7.0\n487,552,6.5\n487,553,6.0\n487,554,5.5\n487,555,5.0\n487,556,4.5\n487,557,4.0\n487,558,3.5\n487,559,3.0\n487,560,2.5\n487,561,2.0\n487,562,1.5\n487,563,2.0\n487,564,2.5\n487,565,3.0\n487,566,3.5\n487,567,4.0\n487,568,4.5\n487,569,5.0\n487,570,5.5\n487,571,6.0\n487,572,6.5\n487,573,7.0\n487,574,7.5\n487,575,8.0\n487,576,7.5\n487,577,7.0\n487,578,6.5\n487,579,6.0\n487,580,5.5\n487,581,5.0\n487,582,4.5\n487,583,4.0\n487,584,3.5\n487,585,3.0\n487,586,2.5\n487,587,2.0\n487,588,2.5\n487,589,3.0\n487,590,3.5\n487,591,4.0\n487,592,4.5\n487,593,5.0\n487,594,5.5\n487,595,6.0\n487,596,6.5\n487,597,7.0\n487,598,7.5\n487,599,8.0\n487,600,8.5\n487,601,8.0\n487,602,7.5\n487,603,7.0\n487,604,6.5\n487,605,6.0\n487,606,5.5\n487,607,5.0\n487,608,4.5\n487,609,4.0\n487,610,3.5\n487,611,3.0\n487,612,2.5\n487,613,3.0\n487,614,3.5\n487,615,4.0\n487,616,4.5\n487,617,5.0\n487,618,5.5\n487,619,6.0\n487,620,6.5\n487,621,7.0\n487,622,7.5\n487,623,8.0\n487,624,8.5\n488,0,16.0\n488,1,15.5\n488,2,15.0\n488,3,14.5\n488,4,14.0\n488,5,13.5\n488,6,13.0\n488,7,12.5\n488,8,12.0\n488,9,11.5\n488,10,11.0\n488,11,10.5\n488,12,10.0\n488,13,9.5\n488,14,10.0\n488,15,10.5\n488,16,11.0\n488,17,11.5\n488,18,12.0\n488,19,12.5\n488,20,13.0\n488,21,13.5\n488,22,14.0\n488,23,14.5\n488,24,15.0\n488,25,15.5\n488,26,15.0\n488,27,14.5\n488,28,14.0\n488,29,13.5\n488,30,13.0\n488,31,12.5\n488,32,12.0\n488,33,11.5\n488,34,11.0\n488,35,10.5\n488,36,10.0\n488,37,9.5\n488,38,9.0\n488,39,9.5\n488,40,10.0\n488,41,10.5\n488,42,11.0\n488,43,11.5\n488,44,12.0\n488,45,12.5\n488,46,13.0\n488,47,13.5\n488,48,14.0\n488,49,14.5\n488,50,15.0\n488,51,14.5\n488,52,14.0\n488,53,13.5\n488,54,13.0\n488,55,12.5\n488,56,12.0\n488,57,11.5\n488,58,11.0\n488,59,10.5\n488,60,10.0\n488,61,9.5\n488,62,9.0\n488,63,8.5\n488,64,9.0\n488,65,9.5\n488,66,10.0\n488,67,10.5\n488,68,11.0\n488,69,11.5\n488,70,12.0\n488,71,12.5\n488,72,13.0\n488,73,13.5\n488,74,14.0\n488,75,14.5\n488,76,14.0\n488,77,13.5\n488,78,13.0\n488,79,12.5\n488,80,12.0\n488,81,11.5\n488,82,11.0\n488,83,10.5\n488,84,10.0\n488,85,9.5\n488,86,9.0\n488,87,8.5\n488,88,8.0\n488,89,8.5\n488,90,9.0\n488,91,9.5\n488,92,10.0\n488,93,10.5\n488,94,11.0\n488,95,11.5\n488,96,12.0\n488,97,12.5\n488,98,13.0\n488,99,13.5\n488,100,14.0\n488,101,13.5\n488,102,13.0\n488,103,12.5\n488,104,12.0\n488,105,11.5\n488,106,11.0\n488,107,10.5\n488,108,10.0\n488,109,9.5\n488,110,9.0\n488,111,8.5\n488,112,8.0\n488,113,7.5\n488,114,8.0\n488,115,8.5\n488,116,9.0\n488,117,9.5\n488,118,10.0\n488,119,10.5\n488,120,11.0\n488,121,11.5\n488,122,12.0\n488,123,12.5\n488,124,13.0\n488,125,13.5\n488,126,13.0\n488,127,12.5\n488,128,12.0\n488,129,11.5\n488,130,11.0\n488,131,10.5\n488,132,10.0\n488,133,9.5\n488,134,9.0\n488,135,8.5\n488,136,8.0\n488,137,7.5\n488,138,7.0\n488,139,7.5\n488,140,8.0\n488,141,8.5\n488,142,9.0\n488,143,9.5\n488,144,10.0\n488,145,10.5\n488,146,11.0\n488,147,11.5\n488,148,12.0\n488,149,12.5\n488,150,13.0\n488,151,12.5\n488,152,12.0\n488,153,11.5\n488,154,11.0\n488,155,10.5\n488,156,10.0\n488,157,9.5\n488,158,9.0\n488,159,8.5\n488,160,8.0\n488,161,7.5\n488,162,7.0\n488,163,6.5\n488,164,7.0\n488,165,7.5\n488,166,8.0\n488,167,8.5\n488,168,9.0\n488,169,9.5\n488,170,10.0\n488,171,10.5\n488,172,11.0\n488,173,11.5\n488,174,12.0\n488,175,12.5\n488,176,12.0\n488,177,11.5\n488,178,11.0\n488,179,10.5\n488,180,10.0\n488,181,9.5\n488,182,9.0\n488,183,8.5\n488,184,8.0\n488,185,7.5\n488,186,7.0\n488,187,6.5\n488,188,6.0\n488,189,6.5\n488,190,7.0\n488,191,7.5\n488,192,8.0\n488,193,8.5\n488,194,9.0\n488,195,9.5\n488,196,10.0\n488,197,10.5\n488,198,11.0\n488,199,11.5\n488,200,12.0\n488,201,11.5\n488,202,11.0\n488,203,10.5\n488,204,10.0\n488,205,9.5\n488,206,9.0\n488,207,8.5\n488,208,8.0\n488,209,7.5\n488,210,7.0\n488,211,6.5\n488,212,6.0\n488,213,5.5\n488,214,6.0\n488,215,6.5\n488,216,7.0\n488,217,7.5\n488,218,8.0\n488,219,8.5\n488,220,9.0\n488,221,9.5\n488,222,10.0\n488,223,10.5\n488,224,11.0\n488,225,11.5\n488,226,11.0\n488,227,10.5\n488,228,10.0\n488,229,9.5\n488,230,9.0\n488,231,8.5\n488,232,8.0\n488,233,7.5\n488,234,7.0\n488,235,6.5\n488,236,6.0\n488,237,5.5\n488,238,5.0\n488,239,5.5\n488,240,6.0\n488,241,6.5\n488,242,7.0\n488,243,7.5\n488,244,8.0\n488,245,8.5\n488,246,9.0\n488,247,9.5\n488,248,10.0\n488,249,10.5\n488,250,11.0\n488,251,10.5\n488,252,10.0\n488,253,9.5\n488,254,9.0\n488,255,8.5\n488,256,8.0\n488,257,7.5\n488,258,7.0\n488,259,6.5\n488,260,6.0\n488,261,5.5\n488,262,5.0\n488,263,4.5\n488,264,5.0\n488,265,5.5\n488,266,6.0\n488,267,6.5\n488,268,7.0\n488,269,7.5\n488,270,8.0\n488,271,8.5\n488,272,9.0\n488,273,9.5\n488,274,10.0\n488,275,10.5\n488,276,10.0\n488,277,9.5\n488,278,9.0\n488,279,8.5\n488,280,8.0\n488,281,7.5\n488,282,7.0\n488,283,6.5\n488,284,6.0\n488,285,5.5\n488,286,5.0\n488,287,4.5\n488,288,4.0\n488,289,4.5\n488,290,5.0\n488,291,5.5\n488,292,6.0\n488,293,6.5\n488,294,7.0\n488,295,7.5\n488,296,8.0\n488,297,8.5\n488,298,9.0\n488,299,9.5\n488,300,10.0\n488,301,9.5\n488,302,9.0\n488,303,8.5\n488,304,8.0\n488,305,7.5\n488,306,7.0\n488,307,6.5\n488,308,6.0\n488,309,5.5\n488,310,5.0\n488,311,4.5\n488,312,4.0\n488,313,3.5\n488,314,4.0\n488,315,4.5\n488,316,5.0\n488,317,5.5\n488,318,6.0\n488,319,6.5\n488,320,7.0\n488,321,7.5\n488,322,8.0\n488,323,8.5\n488,324,9.0\n488,325,9.5\n488,326,9.0\n488,327,8.5\n488,328,8.0\n488,329,7.5\n488,330,7.0\n488,331,6.5\n488,332,6.0\n488,333,5.5\n488,334,5.0\n488,335,4.5\n488,336,4.0\n488,337,3.5\n488,338,3.0\n488,339,3.5\n488,340,4.0\n488,341,4.5\n488,342,5.0\n488,343,5.5\n488,344,6.0\n488,345,6.5\n488,346,7.0\n488,347,7.5\n488,348,8.0\n488,349,8.5\n488,350,9.0\n488,351,8.5\n488,352,8.0\n488,353,7.5\n488,354,7.0\n488,355,6.5\n488,356,6.0\n488,357,5.5\n488,358,5.0\n488,359,4.5\n488,360,4.0\n488,361,3.5\n488,362,3.0\n488,363,2.5\n488,364,3.0\n488,365,3.5\n488,366,4.0\n488,367,4.5\n488,368,5.0\n488,369,5.5\n488,370,6.0\n488,371,6.5\n488,372,7.0\n488,373,7.5\n488,374,8.0\n488,375,8.5\n488,376,8.0\n488,377,7.5\n488,378,7.0\n488,379,6.5\n488,380,6.0\n488,381,5.5\n488,382,5.0\n488,383,4.5\n488,384,4.0\n488,385,3.5\n488,386,3.0\n488,387,2.5\n488,388,2.0\n488,389,2.5\n488,390,3.0\n488,391,3.5\n488,392,4.0\n488,393,4.5\n488,394,5.0\n488,395,5.5\n488,396,6.0\n488,397,6.5\n488,398,7.0\n488,399,7.5\n488,400,8.0\n488,401,7.5\n488,402,7.0\n488,403,6.5\n488,404,6.0\n488,405,5.5\n488,406,5.0\n488,407,4.5\n488,408,4.0\n488,409,3.5\n488,410,3.0\n488,411,2.5\n488,412,2.0\n488,413,1.5\n488,414,2.0\n488,415,2.5\n488,416,3.0\n488,417,3.5\n488,418,4.0\n488,419,4.5\n488,420,5.0\n488,421,5.5\n488,422,6.0\n488,423,6.5\n488,424,7.0\n488,425,7.5\n488,426,7.0\n488,427,6.5\n488,428,6.0\n488,429,5.5\n488,430,5.0\n488,431,4.5\n488,432,4.0\n488,433,3.5\n488,434,3.0\n488,435,2.5\n488,436,2.0\n488,437,1.5\n488,438,1.0\n488,439,1.5\n488,440,2.0\n488,441,2.5\n488,442,3.0\n488,443,3.5\n488,444,4.0\n488,445,4.5\n488,446,5.0\n488,447,5.5\n488,448,6.0\n488,449,6.5\n488,450,7.0\n488,451,6.5\n488,452,6.0\n488,453,5.5\n488,454,5.0\n488,455,4.5\n488,456,4.0\n488,457,3.5\n488,458,3.0\n488,459,2.5\n488,460,2.0\n488,461,1.5\n488,462,1.0\n488,463,0.5\n488,464,1.0\n488,465,1.5\n488,466,2.0\n488,467,2.5\n488,468,3.0\n488,469,3.5\n488,470,4.0\n488,471,4.5\n488,472,5.0\n488,473,5.5\n488,474,6.0\n488,475,6.5\n488,476,6.0\n488,477,5.5\n488,478,5.0\n488,479,4.5\n488,480,4.0\n488,481,3.5\n488,482,3.0\n488,483,2.5\n488,484,2.0\n488,485,1.5\n488,486,1.0\n488,487,0.5\n488,488,0\n488,489,0.5\n488,490,1.0\n488,491,1.5\n488,492,2.0\n488,493,2.5\n488,494,3.0\n488,495,3.5\n488,496,4.0\n488,497,4.5\n488,498,5.0\n488,499,5.5\n488,500,7.0\n488,501,6.5\n488,502,6.0\n488,503,5.5\n488,504,5.0\n488,505,4.5\n488,506,4.0\n488,507,3.5\n488,508,3.0\n488,509,2.5\n488,510,2.0\n488,511,1.5\n488,512,1.0\n488,513,0.5\n488,514,1.0\n488,515,1.5\n488,516,2.0\n488,517,2.5\n488,518,3.0\n488,519,3.5\n488,520,4.0\n488,521,4.5\n488,522,5.0\n488,523,5.5\n488,524,6.0\n488,525,7.5\n488,526,7.0\n488,527,6.5\n488,528,6.0\n488,529,5.5\n488,530,5.0\n488,531,4.5\n488,532,4.0\n488,533,3.5\n488,534,3.0\n488,535,2.5\n488,536,2.0\n488,537,1.5\n488,538,1.0\n488,539,1.5\n488,540,2.0\n488,541,2.5\n488,542,3.0\n488,543,3.5\n488,544,4.0\n488,545,4.5\n488,546,5.0\n488,547,5.5\n488,548,6.0\n488,549,6.5\n488,550,8.0\n488,551,7.5\n488,552,7.0\n488,553,6.5\n488,554,6.0\n488,555,5.5\n488,556,5.0\n488,557,4.5\n488,558,4.0\n488,559,3.5\n488,560,3.0\n488,561,2.5\n488,562,2.0\n488,563,1.5\n488,564,2.0\n488,565,2.5\n488,566,3.0\n488,567,3.5\n488,568,4.0\n488,569,4.5\n488,570,5.0\n488,571,5.5\n488,572,6.0\n488,573,6.5\n488,574,7.0\n488,575,8.5\n488,576,8.0\n488,577,7.5\n488,578,7.0\n488,579,6.5\n488,580,6.0\n488,581,5.5\n488,582,5.0\n488,583,4.5\n488,584,4.0\n488,585,3.5\n488,586,3.0\n488,587,2.5\n488,588,2.0\n488,589,2.5\n488,590,3.0\n488,591,3.5\n488,592,4.0\n488,593,4.5\n488,594,5.0\n488,595,5.5\n488,596,6.0\n488,597,6.5\n488,598,7.0\n488,599,7.5\n488,600,9.0\n488,601,8.5\n488,602,8.0\n488,603,7.5\n488,604,7.0\n488,605,6.5\n488,606,6.0\n488,607,5.5\n488,608,5.0\n488,609,4.5\n488,610,4.0\n488,611,3.5\n488,612,3.0\n488,613,2.5\n488,614,3.0\n488,615,3.5\n488,616,4.0\n488,617,4.5\n488,618,5.0\n488,619,5.5\n488,620,6.0\n488,621,6.5\n488,622,7.0\n488,623,7.5\n488,624,8.0\n489,0,16.5\n489,1,16.0\n489,2,15.5\n489,3,15.0\n489,4,14.5\n489,5,14.0\n489,6,13.5\n489,7,13.0\n489,8,12.5\n489,9,12.0\n489,10,11.5\n489,11,11.0\n489,12,10.5\n489,13,10.0\n489,14,9.5\n489,15,10.0\n489,16,10.5\n489,17,11.0\n489,18,11.5\n489,19,12.0\n489,20,12.5\n489,21,13.0\n489,22,13.5\n489,23,14.0\n489,24,14.5\n489,25,16.0\n489,26,15.5\n489,27,15.0\n489,28,14.5\n489,29,14.0\n489,30,13.5\n489,31,13.0\n489,32,12.5\n489,33,12.0\n489,34,11.5\n489,35,11.0\n489,36,10.5\n489,37,10.0\n489,38,9.5\n489,39,9.0\n489,40,9.5\n489,41,10.0\n489,42,10.5\n489,43,11.0\n489,44,11.5\n489,45,12.0\n489,46,12.5\n489,47,13.0\n489,48,13.5\n489,49,14.0\n489,50,15.5\n489,51,15.0\n489,52,14.5\n489,53,14.0\n489,54,13.5\n489,55,13.0\n489,56,12.5\n489,57,12.0\n489,58,11.5\n489,59,11.0\n489,60,10.5\n489,61,10.0\n489,62,9.5\n489,63,9.0\n489,64,8.5\n489,65,9.0\n489,66,9.5\n489,67,10.0\n489,68,10.5\n489,69,11.0\n489,70,11.5\n489,71,12.0\n489,72,12.5\n489,73,13.0\n489,74,13.5\n489,75,15.0\n489,76,14.5\n489,77,14.0\n489,78,13.5\n489,79,13.0\n489,80,12.5\n489,81,12.0\n489,82,11.5\n489,83,11.0\n489,84,10.5\n489,85,10.0\n489,86,9.5\n489,87,9.0\n489,88,8.5\n489,89,8.0\n489,90,8.5\n489,91,9.0\n489,92,9.5\n489,93,10.0\n489,94,10.5\n489,95,11.0\n489,96,11.5\n489,97,12.0\n489,98,12.5\n489,99,13.0\n489,100,14.5\n489,101,14.0\n489,102,13.5\n489,103,13.0\n489,104,12.5\n489,105,12.0\n489,106,11.5\n489,107,11.0\n489,108,10.5\n489,109,10.0\n489,110,9.5\n489,111,9.0\n489,112,8.5\n489,113,8.0\n489,114,7.5\n489,115,8.0\n489,116,8.5\n489,117,9.0\n489,118,9.5\n489,119,10.0\n489,120,10.5\n489,121,11.0\n489,122,11.5\n489,123,12.0\n489,124,12.5\n489,125,14.0\n489,126,13.5\n489,127,13.0\n489,128,12.5\n489,129,12.0\n489,130,11.5\n489,131,11.0\n489,132,10.5\n489,133,10.0\n489,134,9.5\n489,135,9.0\n489,136,8.5\n489,137,8.0\n489,138,7.5\n489,139,7.0\n489,140,7.5\n489,141,8.0\n489,142,8.5\n489,143,9.0\n489,144,9.5\n489,145,10.0\n489,146,10.5\n489,147,11.0\n489,148,11.5\n489,149,12.0\n489,150,13.5\n489,151,13.0\n489,152,12.5\n489,153,12.0\n489,154,11.5\n489,155,11.0\n489,156,10.5\n489,157,10.0\n489,158,9.5\n489,159,9.0\n489,160,8.5\n489,161,8.0\n489,162,7.5\n489,163,7.0\n489,164,6.5\n489,165,7.0\n489,166,7.5\n489,167,8.0\n489,168,8.5\n489,169,9.0\n489,170,9.5\n489,171,10.0\n489,172,10.5\n489,173,11.0\n489,174,11.5\n489,175,13.0\n489,176,12.5\n489,177,12.0\n489,178,11.5\n489,179,11.0\n489,180,10.5\n489,181,10.0\n489,182,9.5\n489,183,9.0\n489,184,8.5\n489,185,8.0\n489,186,7.5\n489,187,7.0\n489,188,6.5\n489,189,6.0\n489,190,6.5\n489,191,7.0\n489,192,7.5\n489,193,8.0\n489,194,8.5\n489,195,9.0\n489,196,9.5\n489,197,10.0\n489,198,10.5\n489,199,11.0\n489,200,12.5\n489,201,12.0\n489,202,11.5\n489,203,11.0\n489,204,10.5\n489,205,10.0\n489,206,9.5\n489,207,9.0\n489,208,8.5\n489,209,8.0\n489,210,7.5\n489,211,7.0\n489,212,6.5\n489,213,6.0\n489,214,5.5\n489,215,6.0\n489,216,6.5\n489,217,7.0\n489,218,7.5\n489,219,8.0\n489,220,8.5\n489,221,9.0\n489,222,9.5\n489,223,10.0\n489,224,10.5\n489,225,12.0\n489,226,11.5\n489,227,11.0\n489,228,10.5\n489,229,10.0\n489,230,9.5\n489,231,9.0\n489,232,8.5\n489,233,8.0\n489,234,7.5\n489,235,7.0\n489,236,6.5\n489,237,6.0\n489,238,5.5\n489,239,5.0\n489,240,5.5\n489,241,6.0\n489,242,6.5\n489,243,7.0\n489,244,7.5\n489,245,8.0\n489,246,8.5\n489,247,9.0\n489,248,9.5\n489,249,10.0\n489,250,11.5\n489,251,11.0\n489,252,10.5\n489,253,10.0\n489,254,9.5\n489,255,9.0\n489,256,8.5\n489,257,8.0\n489,258,7.5\n489,259,7.0\n489,260,6.5\n489,261,6.0\n489,262,5.5\n489,263,5.0\n489,264,4.5\n489,265,5.0\n489,266,5.5\n489,267,6.0\n489,268,6.5\n489,269,7.0\n489,270,7.5\n489,271,8.0\n489,272,8.5\n489,273,9.0\n489,274,9.5\n489,275,11.0\n489,276,10.5\n489,277,10.0\n489,278,9.5\n489,279,9.0\n489,280,8.5\n489,281,8.0\n489,282,7.5\n489,283,7.0\n489,284,6.5\n489,285,6.0\n489,286,5.5\n489,287,5.0\n489,288,4.5\n489,289,4.0\n489,290,4.5\n489,291,5.0\n489,292,5.5\n489,293,6.0\n489,294,6.5\n489,295,7.0\n489,296,7.5\n489,297,8.0\n489,298,8.5\n489,299,9.0\n489,300,10.5\n489,301,10.0\n489,302,9.5\n489,303,9.0\n489,304,8.5\n489,305,8.0\n489,306,7.5\n489,307,7.0\n489,308,6.5\n489,309,6.0\n489,310,5.5\n489,311,5.0\n489,312,4.5\n489,313,4.0\n489,314,3.5\n489,315,4.0\n489,316,4.5\n489,317,5.0\n489,318,5.5\n489,319,6.0\n489,320,6.5\n489,321,7.0\n489,322,7.5\n489,323,8.0\n489,324,8.5\n489,325,10.0\n489,326,9.5\n489,327,9.0\n489,328,8.5\n489,329,8.0\n489,330,7.5\n489,331,7.0\n489,332,6.5\n489,333,6.0\n489,334,5.5\n489,335,5.0\n489,336,4.5\n489,337,4.0\n489,338,3.5\n489,339,3.0\n489,340,3.5\n489,341,4.0\n489,342,4.5\n489,343,5.0\n489,344,5.5\n489,345,6.0\n489,346,6.5\n489,347,7.0\n489,348,7.5\n489,349,8.0\n489,350,9.5\n489,351,9.0\n489,352,8.5\n489,353,8.0\n489,354,7.5\n489,355,7.0\n489,356,6.5\n489,357,6.0\n489,358,5.5\n489,359,5.0\n489,360,4.5\n489,361,4.0\n489,362,3.5\n489,363,3.0\n489,364,2.5\n489,365,3.0\n489,366,3.5\n489,367,4.0\n489,368,4.5\n489,369,5.0\n489,370,5.5\n489,371,6.0\n489,372,6.5\n489,373,7.0\n489,374,7.5\n489,375,9.0\n489,376,8.5\n489,377,8.0\n489,378,7.5\n489,379,7.0\n489,380,6.5\n489,381,6.0\n489,382,5.5\n489,383,5.0\n489,384,4.5\n489,385,4.0\n489,386,3.5\n489,387,3.0\n489,388,2.5\n489,389,2.0\n489,390,2.5\n489,391,3.0\n489,392,3.5\n489,393,4.0\n489,394,4.5\n489,395,5.0\n489,396,5.5\n489,397,6.0\n489,398,6.5\n489,399,7.0\n489,400,8.5\n489,401,8.0\n489,402,7.5\n489,403,7.0\n489,404,6.5\n489,405,6.0\n489,406,5.5\n489,407,5.0\n489,408,4.5\n489,409,4.0\n489,410,3.5\n489,411,3.0\n489,412,2.5\n489,413,2.0\n489,414,1.5\n489,415,2.0\n489,416,2.5\n489,417,3.0\n489,418,3.5\n489,419,4.0\n489,420,4.5\n489,421,5.0\n489,422,5.5\n489,423,6.0\n489,424,6.5\n489,425,8.0\n489,426,7.5\n489,427,7.0\n489,428,6.5\n489,429,6.0\n489,430,5.5\n489,431,5.0\n489,432,4.5\n489,433,4.0\n489,434,3.5\n489,435,3.0\n489,436,2.5\n489,437,2.0\n489,438,1.5\n489,439,1.0\n489,440,1.5\n489,441,2.0\n489,442,2.5\n489,443,3.0\n489,444,3.5\n489,445,4.0\n489,446,4.5\n489,447,5.0\n489,448,5.5\n489,449,6.0\n489,450,7.5\n489,451,7.0\n489,452,6.5\n489,453,6.0\n489,454,5.5\n489,455,5.0\n489,456,4.5\n489,457,4.0\n489,458,3.5\n489,459,3.0\n489,460,2.5\n489,461,2.0\n489,462,1.5\n489,463,1.0\n489,464,0.5\n489,465,1.0\n489,466,1.5\n489,467,2.0\n489,468,2.5\n489,469,3.0\n489,470,3.5\n489,471,4.0\n489,472,4.5\n489,473,5.0\n489,474,5.5\n489,475,7.0\n489,476,6.5\n489,477,6.0\n489,478,5.5\n489,479,5.0\n489,480,4.5\n489,481,4.0\n489,482,3.5\n489,483,3.0\n489,484,2.5\n489,485,2.0\n489,486,1.5\n489,487,1.0\n489,488,0.5\n489,489,0\n489,490,0.5\n489,491,1.0\n489,492,1.5\n489,493,2.0\n489,494,2.5\n489,495,3.0\n489,496,3.5\n489,497,4.0\n489,498,4.5\n489,499,5.0\n489,500,7.5\n489,501,7.0\n489,502,6.5\n489,503,6.0\n489,504,5.5\n489,505,5.0\n489,506,4.5\n489,507,4.0\n489,508,3.5\n489,509,3.0\n489,510,2.5\n489,511,2.0\n489,512,1.5\n489,513,1.0\n489,514,0.5\n489,515,1.0\n489,516,1.5\n489,517,2.0\n489,518,2.5\n489,519,3.0\n489,520,3.5\n489,521,4.0\n489,522,4.5\n489,523,5.0\n489,524,5.5\n489,525,8.0\n489,526,7.5\n489,527,7.0\n489,528,6.5\n489,529,6.0\n489,530,5.5\n489,531,5.0\n489,532,4.5\n489,533,4.0\n489,534,3.5\n489,535,3.0\n489,536,2.5\n489,537,2.0\n489,538,1.5\n489,539,1.0\n489,540,1.5\n489,541,2.0\n489,542,2.5\n489,543,3.0\n489,544,3.5\n489,545,4.0\n489,546,4.5\n489,547,5.0\n489,548,5.5\n489,549,6.0\n489,550,8.5\n489,551,8.0\n489,552,7.5\n489,553,7.0\n489,554,6.5\n489,555,6.0\n489,556,5.5\n489,557,5.0\n489,558,4.5\n489,559,4.0\n489,560,3.5\n489,561,3.0\n489,562,2.5\n489,563,2.0\n489,564,1.5\n489,565,2.0\n489,566,2.5\n489,567,3.0\n489,568,3.5\n489,569,4.0\n489,570,4.5\n489,571,5.0\n489,572,5.5\n489,573,6.0\n489,574,6.5\n489,575,9.0\n489,576,8.5\n489,577,8.0\n489,578,7.5\n489,579,7.0\n489,580,6.5\n489,581,6.0\n489,582,5.5\n489,583,5.0\n489,584,4.5\n489,585,4.0\n489,586,3.5\n489,587,3.0\n489,588,2.5\n489,589,2.0\n489,590,2.5\n489,591,3.0\n489,592,3.5\n489,593,4.0\n489,594,4.5\n489,595,5.0\n489,596,5.5\n489,597,6.0\n489,598,6.5\n489,599,7.0\n489,600,9.5\n489,601,9.0\n489,602,8.5\n489,603,8.0\n489,604,7.5\n489,605,7.0\n489,606,6.5\n489,607,6.0\n489,608,5.5\n489,609,5.0\n489,610,4.5\n489,611,4.0\n489,612,3.5\n489,613,3.0\n489,614,2.5\n489,615,3.0\n489,616,3.5\n489,617,4.0\n489,618,4.5\n489,619,5.0\n489,620,5.5\n489,621,6.0\n489,622,6.5\n489,623,7.0\n489,624,7.5\n490,0,17.0\n490,1,16.5\n490,2,16.0\n490,3,15.5\n490,4,15.0\n490,5,14.5\n490,6,14.0\n490,7,13.5\n490,8,13.0\n490,9,12.5\n490,10,12.0\n490,11,11.5\n490,12,11.0\n490,13,10.5\n490,14,10.0\n490,15,9.5\n490,16,10.0\n490,17,10.5\n490,18,11.0\n490,19,11.5\n490,20,12.0\n490,21,12.5\n490,22,13.0\n490,23,13.5\n490,24,14.0\n490,25,16.5\n490,26,16.0\n490,27,15.5\n490,28,15.0\n490,29,14.5\n490,30,14.0\n490,31,13.5\n490,32,13.0\n490,33,12.5\n490,34,12.0\n490,35,11.5\n490,36,11.0\n490,37,10.5\n490,38,10.0\n490,39,9.5\n490,40,9.0\n490,41,9.5\n490,42,10.0\n490,43,10.5\n490,44,11.0\n490,45,11.5\n490,46,12.0\n490,47,12.5\n490,48,13.0\n490,49,13.5\n490,50,16.0\n490,51,15.5\n490,52,15.0\n490,53,14.5\n490,54,14.0\n490,55,13.5\n490,56,13.0\n490,57,12.5\n490,58,12.0\n490,59,11.5\n490,60,11.0\n490,61,10.5\n490,62,10.0\n490,63,9.5\n490,64,9.0\n490,65,8.5\n490,66,9.0\n490,67,9.5\n490,68,10.0\n490,69,10.5\n490,70,11.0\n490,71,11.5\n490,72,12.0\n490,73,12.5\n490,74,13.0\n490,75,15.5\n490,76,15.0\n490,77,14.5\n490,78,14.0\n490,79,13.5\n490,80,13.0\n490,81,12.5\n490,82,12.0\n490,83,11.5\n490,84,11.0\n490,85,10.5\n490,86,10.0\n490,87,9.5\n490,88,9.0\n490,89,8.5\n490,90,8.0\n490,91,8.5\n490,92,9.0\n490,93,9.5\n490,94,10.0\n490,95,10.5\n490,96,11.0\n490,97,11.5\n490,98,12.0\n490,99,12.5\n490,100,15.0\n490,101,14.5\n490,102,14.0\n490,103,13.5\n490,104,13.0\n490,105,12.5\n490,106,12.0\n490,107,11.5\n490,108,11.0\n490,109,10.5\n490,110,10.0\n490,111,9.5\n490,112,9.0\n490,113,8.5\n490,114,8.0\n490,115,7.5\n490,116,8.0\n490,117,8.5\n490,118,9.0\n490,119,9.5\n490,120,10.0\n490,121,10.5\n490,122,11.0\n490,123,11.5\n490,124,12.0\n490,125,14.5\n490,126,14.0\n490,127,13.5\n490,128,13.0\n490,129,12.5\n490,130,12.0\n490,131,11.5\n490,132,11.0\n490,133,10.5\n490,134,10.0\n490,135,9.5\n490,136,9.0\n490,137,8.5\n490,138,8.0\n490,139,7.5\n490,140,7.0\n490,141,7.5\n490,142,8.0\n490,143,8.5\n490,144,9.0\n490,145,9.5\n490,146,10.0\n490,147,10.5\n490,148,11.0\n490,149,11.5\n490,150,14.0\n490,151,13.5\n490,152,13.0\n490,153,12.5\n490,154,12.0\n490,155,11.5\n490,156,11.0\n490,157,10.5\n490,158,10.0\n490,159,9.5\n490,160,9.0\n490,161,8.5\n490,162,8.0\n490,163,7.5\n490,164,7.0\n490,165,6.5\n490,166,7.0\n490,167,7.5\n490,168,8.0\n490,169,8.5\n490,170,9.0\n490,171,9.5\n490,172,10.0\n490,173,10.5\n490,174,11.0\n490,175,13.5\n490,176,13.0\n490,177,12.5\n490,178,12.0\n490,179,11.5\n490,180,11.0\n490,181,10.5\n490,182,10.0\n490,183,9.5\n490,184,9.0\n490,185,8.5\n490,186,8.0\n490,187,7.5\n490,188,7.0\n490,189,6.5\n490,190,6.0\n490,191,6.5\n490,192,7.0\n490,193,7.5\n490,194,8.0\n490,195,8.5\n490,196,9.0\n490,197,9.5\n490,198,10.0\n490,199,10.5\n490,200,13.0\n490,201,12.5\n490,202,12.0\n490,203,11.5\n490,204,11.0\n490,205,10.5\n490,206,10.0\n490,207,9.5\n490,208,9.0\n490,209,8.5\n490,210,8.0\n490,211,7.5\n490,212,7.0\n490,213,6.5\n490,214,6.0\n490,215,5.5\n490,216,6.0\n490,217,6.5\n490,218,7.0\n490,219,7.5\n490,220,8.0\n490,221,8.5\n490,222,9.0\n490,223,9.5\n490,224,10.0\n490,225,12.5\n490,226,12.0\n490,227,11.5\n490,228,11.0\n490,229,10.5\n490,230,10.0\n490,231,9.5\n490,232,9.0\n490,233,8.5\n490,234,8.0\n490,235,7.5\n490,236,7.0\n490,237,6.5\n490,238,6.0\n490,239,5.5\n490,240,5.0\n490,241,5.5\n490,242,6.0\n490,243,6.5\n490,244,7.0\n490,245,7.5\n490,246,8.0\n490,247,8.5\n490,248,9.0\n490,249,9.5\n490,250,12.0\n490,251,11.5\n490,252,11.0\n490,253,10.5\n490,254,10.0\n490,255,9.5\n490,256,9.0\n490,257,8.5\n490,258,8.0\n490,259,7.5\n490,260,7.0\n490,261,6.5\n490,262,6.0\n490,263,5.5\n490,264,5.0\n490,265,4.5\n490,266,5.0\n490,267,5.5\n490,268,6.0\n490,269,6.5\n490,270,7.0\n490,271,7.5\n490,272,8.0\n490,273,8.5\n490,274,9.0\n490,275,11.5\n490,276,11.0\n490,277,10.5\n490,278,10.0\n490,279,9.5\n490,280,9.0\n490,281,8.5\n490,282,8.0\n490,283,7.5\n490,284,7.0\n490,285,6.5\n490,286,6.0\n490,287,5.5\n490,288,5.0\n490,289,4.5\n490,290,4.0\n490,291,4.5\n490,292,5.0\n490,293,5.5\n490,294,6.0\n490,295,6.5\n490,296,7.0\n490,297,7.5\n490,298,8.0\n490,299,8.5\n490,300,11.0\n490,301,10.5\n490,302,10.0\n490,303,9.5\n490,304,9.0\n490,305,8.5\n490,306,8.0\n490,307,7.5\n490,308,7.0\n490,309,6.5\n490,310,6.0\n490,311,5.5\n490,312,5.0\n490,313,4.5\n490,314,4.0\n490,315,3.5\n490,316,4.0\n490,317,4.5\n490,318,5.0\n490,319,5.5\n490,320,6.0\n490,321,6.5\n490,322,7.0\n490,323,7.5\n490,324,8.0\n490,325,10.5\n490,326,10.0\n490,327,9.5\n490,328,9.0\n490,329,8.5\n490,330,8.0\n490,331,7.5\n490,332,7.0\n490,333,6.5\n490,334,6.0\n490,335,5.5\n490,336,5.0\n490,337,4.5\n490,338,4.0\n490,339,3.5\n490,340,3.0\n490,341,3.5\n490,342,4.0\n490,343,4.5\n490,344,5.0\n490,345,5.5\n490,346,6.0\n490,347,6.5\n490,348,7.0\n490,349,7.5\n490,350,10.0\n490,351,9.5\n490,352,9.0\n490,353,8.5\n490,354,8.0\n490,355,7.5\n490,356,7.0\n490,357,6.5\n490,358,6.0\n490,359,5.5\n490,360,5.0\n490,361,4.5\n490,362,4.0\n490,363,3.5\n490,364,3.0\n490,365,2.5\n490,366,3.0\n490,367,3.5\n490,368,4.0\n490,369,4.5\n490,370,5.0\n490,371,5.5\n490,372,6.0\n490,373,6.5\n490,374,7.0\n490,375,9.5\n490,376,9.0\n490,377,8.5\n490,378,8.0\n490,379,7.5\n490,380,7.0\n490,381,6.5\n490,382,6.0\n490,383,5.5\n490,384,5.0\n490,385,4.5\n490,386,4.0\n490,387,3.5\n490,388,3.0\n490,389,2.5\n490,390,2.0\n490,391,2.5\n490,392,3.0\n490,393,3.5\n490,394,4.0\n490,395,4.5\n490,396,5.0\n490,397,5.5\n490,398,6.0\n490,399,6.5\n490,400,9.0\n490,401,8.5\n490,402,8.0\n490,403,7.5\n490,404,7.0\n490,405,6.5\n490,406,6.0\n490,407,5.5\n490,408,5.0\n490,409,4.5\n490,410,4.0\n490,411,3.5\n490,412,3.0\n490,413,2.5\n490,414,2.0\n490,415,1.5\n490,416,2.0\n490,417,2.5\n490,418,3.0\n490,419,3.5\n490,420,4.0\n490,421,4.5\n490,422,5.0\n490,423,5.5\n490,424,6.0\n490,425,8.5\n490,426,8.0\n490,427,7.5\n490,428,7.0\n490,429,6.5\n490,430,6.0\n490,431,5.5\n490,432,5.0\n490,433,4.5\n490,434,4.0\n490,435,3.5\n490,436,3.0\n490,437,2.5\n490,438,2.0\n490,439,1.5\n490,440,1.0\n490,441,1.5\n490,442,2.0\n490,443,2.5\n490,444,3.0\n490,445,3.5\n490,446,4.0\n490,447,4.5\n490,448,5.0\n490,449,5.5\n490,450,8.0\n490,451,7.5\n490,452,7.0\n490,453,6.5\n490,454,6.0\n490,455,5.5\n490,456,5.0\n490,457,4.5\n490,458,4.0\n490,459,3.5\n490,460,3.0\n490,461,2.5\n490,462,2.0\n490,463,1.5\n490,464,1.0\n490,465,0.5\n490,466,1.0\n490,467,1.5\n490,468,2.0\n490,469,2.5\n490,470,3.0\n490,471,3.5\n490,472,4.0\n490,473,4.5\n490,474,5.0\n490,475,7.5\n490,476,7.0\n490,477,6.5\n490,478,6.0\n490,479,5.5\n490,480,5.0\n490,481,4.5\n490,482,4.0\n490,483,3.5\n490,484,3.0\n490,485,2.5\n490,486,2.0\n490,487,1.5\n490,488,1.0\n490,489,0.5\n490,490,0\n490,491,0.5\n490,492,1.0\n490,493,1.5\n490,494,2.0\n490,495,2.5\n490,496,3.0\n490,497,3.5\n490,498,4.0\n490,499,4.5\n490,500,8.0\n490,501,7.5\n490,502,7.0\n490,503,6.5\n490,504,6.0\n490,505,5.5\n490,506,5.0\n490,507,4.5\n490,508,4.0\n490,509,3.5\n490,510,3.0\n490,511,2.5\n490,512,2.0\n490,513,1.5\n490,514,1.0\n490,515,0.5\n490,516,1.0\n490,517,1.5\n490,518,2.0\n490,519,2.5\n490,520,3.0\n490,521,3.5\n490,522,4.0\n490,523,4.5\n490,524,5.0\n490,525,8.5\n490,526,8.0\n490,527,7.5\n490,528,7.0\n490,529,6.5\n490,530,6.0\n490,531,5.5\n490,532,5.0\n490,533,4.5\n490,534,4.0\n490,535,3.5\n490,536,3.0\n490,537,2.5\n490,538,2.0\n490,539,1.5\n490,540,1.0\n490,541,1.5\n490,542,2.0\n490,543,2.5\n490,544,3.0\n490,545,3.5\n490,546,4.0\n490,547,4.5\n490,548,5.0\n490,549,5.5\n490,550,9.0\n490,551,8.5\n490,552,8.0\n490,553,7.5\n490,554,7.0\n490,555,6.5\n490,556,6.0\n490,557,5.5\n490,558,5.0\n490,559,4.5\n490,560,4.0\n490,561,3.5\n490,562,3.0\n490,563,2.5\n490,564,2.0\n490,565,1.5\n490,566,2.0\n490,567,2.5\n490,568,3.0\n490,569,3.5\n490,570,4.0\n490,571,4.5\n490,572,5.0\n490,573,5.5\n490,574,6.0\n490,575,9.5\n490,576,9.0\n490,577,8.5\n490,578,8.0\n490,579,7.5\n490,580,7.0\n490,581,6.5\n490,582,6.0\n490,583,5.5\n490,584,5.0\n490,585,4.5\n490,586,4.0\n490,587,3.5\n490,588,3.0\n490,589,2.5\n490,590,2.0\n490,591,2.5\n490,592,3.0\n490,593,3.5\n490,594,4.0\n490,595,4.5\n490,596,5.0\n490,597,5.5\n490,598,6.0\n490,599,6.5\n490,600,10.0\n490,601,9.5\n490,602,9.0\n490,603,8.5\n490,604,8.0\n490,605,7.5\n490,606,7.0\n490,607,6.5\n490,608,6.0\n490,609,5.5\n490,610,5.0\n490,611,4.5\n490,612,4.0\n490,613,3.5\n490,614,3.0\n490,615,2.5\n490,616,3.0\n490,617,3.5\n490,618,4.0\n490,619,4.5\n490,620,5.0\n490,621,5.5\n490,622,6.0\n490,623,6.5\n490,624,7.0\n491,0,17.5\n491,1,17.0\n491,2,16.5\n491,3,16.0\n491,4,15.5\n491,5,15.0\n491,6,14.5\n491,7,14.0\n491,8,13.5\n491,9,13.0\n491,10,12.5\n491,11,12.0\n491,12,11.5\n491,13,11.0\n491,14,10.5\n491,15,10.0\n491,16,9.5\n491,17,10.0\n491,18,10.5\n491,19,11.0\n491,20,11.5\n491,21,12.0\n491,22,12.5\n491,23,13.0\n491,24,13.5\n491,25,17.0\n491,26,16.5\n491,27,16.0\n491,28,15.5\n491,29,15.0\n491,30,14.5\n491,31,14.0\n491,32,13.5\n491,33,13.0\n491,34,12.5\n491,35,12.0\n491,36,11.5\n491,37,11.0\n491,38,10.5\n491,39,10.0\n491,40,9.5\n491,41,9.0\n491,42,9.5\n491,43,10.0\n491,44,10.5\n491,45,11.0\n491,46,11.5\n491,47,12.0\n491,48,12.5\n491,49,13.0\n491,50,16.5\n491,51,16.0\n491,52,15.5\n491,53,15.0\n491,54,14.5\n491,55,14.0\n491,56,13.5\n491,57,13.0\n491,58,12.5\n491,59,12.0\n491,60,11.5\n491,61,11.0\n491,62,10.5\n491,63,10.0\n491,64,9.5\n491,65,9.0\n491,66,8.5\n491,67,9.0\n491,68,9.5\n491,69,10.0\n491,70,10.5\n491,71,11.0\n491,72,11.5\n491,73,12.0\n491,74,12.5\n491,75,16.0\n491,76,15.5\n491,77,15.0\n491,78,14.5\n491,79,14.0\n491,80,13.5\n491,81,13.0\n491,82,12.5\n491,83,12.0\n491,84,11.5\n491,85,11.0\n491,86,10.5\n491,87,10.0\n491,88,9.5\n491,89,9.0\n491,90,8.5\n491,91,8.0\n491,92,8.5\n491,93,9.0\n491,94,9.5\n491,95,10.0\n491,96,10.5\n491,97,11.0\n491,98,11.5\n491,99,12.0\n491,100,15.5\n491,101,15.0\n491,102,14.5\n491,103,14.0\n491,104,13.5\n491,105,13.0\n491,106,12.5\n491,107,12.0\n491,108,11.5\n491,109,11.0\n491,110,10.5\n491,111,10.0\n491,112,9.5\n491,113,9.0\n491,114,8.5\n491,115,8.0\n491,116,7.5\n491,117,8.0\n491,118,8.5\n491,119,9.0\n491,120,9.5\n491,121,10.0\n491,122,10.5\n491,123,11.0\n491,124,11.5\n491,125,15.0\n491,126,14.5\n491,127,14.0\n491,128,13.5\n491,129,13.0\n491,130,12.5\n491,131,12.0\n491,132,11.5\n491,133,11.0\n491,134,10.5\n491,135,10.0\n491,136,9.5\n491,137,9.0\n491,138,8.5\n491,139,8.0\n491,140,7.5\n491,141,7.0\n491,142,7.5\n491,143,8.0\n491,144,8.5\n491,145,9.0\n491,146,9.5\n491,147,10.0\n491,148,10.5\n491,149,11.0\n491,150,14.5\n491,151,14.0\n491,152,13.5\n491,153,13.0\n491,154,12.5\n491,155,12.0\n491,156,11.5\n491,157,11.0\n491,158,10.5\n491,159,10.0\n491,160,9.5\n491,161,9.0\n491,162,8.5\n491,163,8.0\n491,164,7.5\n491,165,7.0\n491,166,6.5\n491,167,7.0\n491,168,7.5\n491,169,8.0\n491,170,8.5\n491,171,9.0\n491,172,9.5\n491,173,10.0\n491,174,10.5\n491,175,14.0\n491,176,13.5\n491,177,13.0\n491,178,12.5\n491,179,12.0\n491,180,11.5\n491,181,11.0\n491,182,10.5\n491,183,10.0\n491,184,9.5\n491,185,9.0\n491,186,8.5\n491,187,8.0\n491,188,7.5\n491,189,7.0\n491,190,6.5\n491,191,6.0\n491,192,6.5\n491,193,7.0\n491,194,7.5\n491,195,8.0\n491,196,8.5\n491,197,9.0\n491,198,9.5\n491,199,10.0\n491,200,13.5\n491,201,13.0\n491,202,12.5\n491,203,12.0\n491,204,11.5\n491,205,11.0\n491,206,10.5\n491,207,10.0\n491,208,9.5\n491,209,9.0\n491,210,8.5\n491,211,8.0\n491,212,7.5\n491,213,7.0\n491,214,6.5\n491,215,6.0\n491,216,5.5\n491,217,6.0\n491,218,6.5\n491,219,7.0\n491,220,7.5\n491,221,8.0\n491,222,8.5\n491,223,9.0\n491,224,9.5\n491,225,13.0\n491,226,12.5\n491,227,12.0\n491,228,11.5\n491,229,11.0\n491,230,10.5\n491,231,10.0\n491,232,9.5\n491,233,9.0\n491,234,8.5\n491,235,8.0\n491,236,7.5\n491,237,7.0\n491,238,6.5\n491,239,6.0\n491,240,5.5\n491,241,5.0\n491,242,5.5\n491,243,6.0\n491,244,6.5\n491,245,7.0\n491,246,7.5\n491,247,8.0\n491,248,8.5\n491,249,9.0\n491,250,12.5\n491,251,12.0\n491,252,11.5\n491,253,11.0\n491,254,10.5\n491,255,10.0\n491,256,9.5\n491,257,9.0\n491,258,8.5\n491,259,8.0\n491,260,7.5\n491,261,7.0\n491,262,6.5\n491,263,6.0\n491,264,5.5\n491,265,5.0\n491,266,4.5\n491,267,5.0\n491,268,5.5\n491,269,6.0\n491,270,6.5\n491,271,7.0\n491,272,7.5\n491,273,8.0\n491,274,8.5\n491,275,12.0\n491,276,11.5\n491,277,11.0\n491,278,10.5\n491,279,10.0\n491,280,9.5\n491,281,9.0\n491,282,8.5\n491,283,8.0\n491,284,7.5\n491,285,7.0\n491,286,6.5\n491,287,6.0\n491,288,5.5\n491,289,5.0\n491,290,4.5\n491,291,4.0\n491,292,4.5\n491,293,5.0\n491,294,5.5\n491,295,6.0\n491,296,6.5\n491,297,7.0\n491,298,7.5\n491,299,8.0\n491,300,11.5\n491,301,11.0\n491,302,10.5\n491,303,10.0\n491,304,9.5\n491,305,9.0\n491,306,8.5\n491,307,8.0\n491,308,7.5\n491,309,7.0\n491,310,6.5\n491,311,6.0\n491,312,5.5\n491,313,5.0\n491,314,4.5\n491,315,4.0\n491,316,3.5\n491,317,4.0\n491,318,4.5\n491,319,5.0\n491,320,5.5\n491,321,6.0\n491,322,6.5\n491,323,7.0\n491,324,7.5\n491,325,11.0\n491,326,10.5\n491,327,10.0\n491,328,9.5\n491,329,9.0\n491,330,8.5\n491,331,8.0\n491,332,7.5\n491,333,7.0\n491,334,6.5\n491,335,6.0\n491,336,5.5\n491,337,5.0\n491,338,4.5\n491,339,4.0\n491,340,3.5\n491,341,3.0\n491,342,3.5\n491,343,4.0\n491,344,4.5\n491,345,5.0\n491,346,5.5\n491,347,6.0\n491,348,6.5\n491,349,7.0\n491,350,10.5\n491,351,10.0\n491,352,9.5\n491,353,9.0\n491,354,8.5\n491,355,8.0\n491,356,7.5\n491,357,7.0\n491,358,6.5\n491,359,6.0\n491,360,5.5\n491,361,5.0\n491,362,4.5\n491,363,4.0\n491,364,3.5\n491,365,3.0\n491,366,2.5\n491,367,3.0\n491,368,3.5\n491,369,4.0\n491,370,4.5\n491,371,5.0\n491,372,5.5\n491,373,6.0\n491,374,6.5\n491,375,10.0\n491,376,9.5\n491,377,9.0\n491,378,8.5\n491,379,8.0\n491,380,7.5\n491,381,7.0\n491,382,6.5\n491,383,6.0\n491,384,5.5\n491,385,5.0\n491,386,4.5\n491,387,4.0\n491,388,3.5\n491,389,3.0\n491,390,2.5\n491,391,2.0\n491,392,2.5\n491,393,3.0\n491,394,3.5\n491,395,4.0\n491,396,4.5\n491,397,5.0\n491,398,5.5\n491,399,6.0\n491,400,9.5\n491,401,9.0\n491,402,8.5\n491,403,8.0\n491,404,7.5\n491,405,7.0\n491,406,6.5\n491,407,6.0\n491,408,5.5\n491,409,5.0\n491,410,4.5\n491,411,4.0\n491,412,3.5\n491,413,3.0\n491,414,2.5\n491,415,2.0\n491,416,1.5\n491,417,2.0\n491,418,2.5\n491,419,3.0\n491,420,3.5\n491,421,4.0\n491,422,4.5\n491,423,5.0\n491,424,5.5\n491,425,9.0\n491,426,8.5\n491,427,8.0\n491,428,7.5\n491,429,7.0\n491,430,6.5\n491,431,6.0\n491,432,5.5\n491,433,5.0\n491,434,4.5\n491,435,4.0\n491,436,3.5\n491,437,3.0\n491,438,2.5\n491,439,2.0\n491,440,1.5\n491,441,1.0\n491,442,1.5\n491,443,2.0\n491,444,2.5\n491,445,3.0\n491,446,3.5\n491,447,4.0\n491,448,4.5\n491,449,5.0\n491,450,8.5\n491,451,8.0\n491,452,7.5\n491,453,7.0\n491,454,6.5\n491,455,6.0\n491,456,5.5\n491,457,5.0\n491,458,4.5\n491,459,4.0\n491,460,3.5\n491,461,3.0\n491,462,2.5\n491,463,2.0\n491,464,1.5\n491,465,1.0\n491,466,0.5\n491,467,1.0\n491,468,1.5\n491,469,2.0\n491,470,2.5\n491,471,3.0\n491,472,3.5\n491,473,4.0\n491,474,4.5\n491,475,8.0\n491,476,7.5\n491,477,7.0\n491,478,6.5\n491,479,6.0\n491,480,5.5\n491,481,5.0\n491,482,4.5\n491,483,4.0\n491,484,3.5\n491,485,3.0\n491,486,2.5\n491,487,2.0\n491,488,1.5\n491,489,1.0\n491,490,0.5\n491,491,0\n491,492,0.5\n491,493,1.0\n491,494,1.5\n491,495,2.0\n491,496,2.5\n491,497,3.0\n491,498,3.5\n491,499,4.0\n491,500,8.5\n491,501,8.0\n491,502,7.5\n491,503,7.0\n491,504,6.5\n491,505,6.0\n491,506,5.5\n491,507,5.0\n491,508,4.5\n491,509,4.0\n491,510,3.5\n491,511,3.0\n491,512,2.5\n491,513,2.0\n491,514,1.5\n491,515,1.0\n491,516,0.5\n491,517,1.0\n491,518,1.5\n491,519,2.0\n491,520,2.5\n491,521,3.0\n491,522,3.5\n491,523,4.0\n491,524,4.5\n491,525,9.0\n491,526,8.5\n491,527,8.0\n491,528,7.5\n491,529,7.0\n491,530,6.5\n491,531,6.0\n491,532,5.5\n491,533,5.0\n491,534,4.5\n491,535,4.0\n491,536,3.5\n491,537,3.0\n491,538,2.5\n491,539,2.0\n491,540,1.5\n491,541,1.0\n491,542,1.5\n491,543,2.0\n491,544,2.5\n491,545,3.0\n491,546,3.5\n491,547,4.0\n491,548,4.5\n491,549,5.0\n491,550,9.5\n491,551,9.0\n491,552,8.5\n491,553,8.0\n491,554,7.5\n491,555,7.0\n491,556,6.5\n491,557,6.0\n491,558,5.5\n491,559,5.0\n491,560,4.5\n491,561,4.0\n491,562,3.5\n491,563,3.0\n491,564,2.5\n491,565,2.0\n491,566,1.5\n491,567,2.0\n491,568,2.5\n491,569,3.0\n491,570,3.5\n491,571,4.0\n491,572,4.5\n491,573,5.0\n491,574,5.5\n491,575,10.0\n491,576,9.5\n491,577,9.0\n491,578,8.5\n491,579,8.0\n491,580,7.5\n491,581,7.0\n491,582,6.5\n491,583,6.0\n491,584,5.5\n491,585,5.0\n491,586,4.5\n491,587,4.0\n491,588,3.5\n491,589,3.0\n491,590,2.5\n491,591,2.0\n491,592,2.5\n491,593,3.0\n491,594,3.5\n491,595,4.0\n491,596,4.5\n491,597,5.0\n491,598,5.5\n491,599,6.0\n491,600,10.5\n491,601,10.0\n491,602,9.5\n491,603,9.0\n491,604,8.5\n491,605,8.0\n491,606,7.5\n491,607,7.0\n491,608,6.5\n491,609,6.0\n491,610,5.5\n491,611,5.0\n491,612,4.5\n491,613,4.0\n491,614,3.5\n491,615,3.0\n491,616,2.5\n491,617,3.0\n491,618,3.5\n491,619,4.0\n491,620,4.5\n491,621,5.0\n491,622,5.5\n491,623,6.0\n491,624,6.5\n492,0,18.0\n492,1,17.5\n492,2,17.0\n492,3,16.5\n492,4,16.0\n492,5,15.5\n492,6,15.0\n492,7,14.5\n492,8,14.0\n492,9,13.5\n492,10,13.0\n492,11,12.5\n492,12,12.0\n492,13,11.5\n492,14,11.0\n492,15,10.5\n492,16,10.0\n492,17,9.5\n492,18,10.0\n492,19,10.5\n492,20,11.0\n492,21,11.5\n492,22,12.0\n492,23,12.5\n492,24,13.0\n492,25,17.5\n492,26,17.0\n492,27,16.5\n492,28,16.0\n492,29,15.5\n492,30,15.0\n492,31,14.5\n492,32,14.0\n492,33,13.5\n492,34,13.0\n492,35,12.5\n492,36,12.0\n492,37,11.5\n492,38,11.0\n492,39,10.5\n492,40,10.0\n492,41,9.5\n492,42,9.0\n492,43,9.5\n492,44,10.0\n492,45,10.5\n492,46,11.0\n492,47,11.5\n492,48,12.0\n492,49,12.5\n492,50,17.0\n492,51,16.5\n492,52,16.0\n492,53,15.5\n492,54,15.0\n492,55,14.5\n492,56,14.0\n492,57,13.5\n492,58,13.0\n492,59,12.5\n492,60,12.0\n492,61,11.5\n492,62,11.0\n492,63,10.5\n492,64,10.0\n492,65,9.5\n492,66,9.0\n492,67,8.5\n492,68,9.0\n492,69,9.5\n492,70,10.0\n492,71,10.5\n492,72,11.0\n492,73,11.5\n492,74,12.0\n492,75,16.5\n492,76,16.0\n492,77,15.5\n492,78,15.0\n492,79,14.5\n492,80,14.0\n492,81,13.5\n492,82,13.0\n492,83,12.5\n492,84,12.0\n492,85,11.5\n492,86,11.0\n492,87,10.5\n492,88,10.0\n492,89,9.5\n492,90,9.0\n492,91,8.5\n492,92,8.0\n492,93,8.5\n492,94,9.0\n492,95,9.5\n492,96,10.0\n492,97,10.5\n492,98,11.0\n492,99,11.5\n492,100,16.0\n492,101,15.5\n492,102,15.0\n492,103,14.5\n492,104,14.0\n492,105,13.5\n492,106,13.0\n492,107,12.5\n492,108,12.0\n492,109,11.5\n492,110,11.0\n492,111,10.5\n492,112,10.0\n492,113,9.5\n492,114,9.0\n492,115,8.5\n492,116,8.0\n492,117,7.5\n492,118,8.0\n492,119,8.5\n492,120,9.0\n492,121,9.5\n492,122,10.0\n492,123,10.5\n492,124,11.0\n492,125,15.5\n492,126,15.0\n492,127,14.5\n492,128,14.0\n492,129,13.5\n492,130,13.0\n492,131,12.5\n492,132,12.0\n492,133,11.5\n492,134,11.0\n492,135,10.5\n492,136,10.0\n492,137,9.5\n492,138,9.0\n492,139,8.5\n492,140,8.0\n492,141,7.5\n492,142,7.0\n492,143,7.5\n492,144,8.0\n492,145,8.5\n492,146,9.0\n492,147,9.5\n492,148,10.0\n492,149,10.5\n492,150,15.0\n492,151,14.5\n492,152,14.0\n492,153,13.5\n492,154,13.0\n492,155,12.5\n492,156,12.0\n492,157,11.5\n492,158,11.0\n492,159,10.5\n492,160,10.0\n492,161,9.5\n492,162,9.0\n492,163,8.5\n492,164,8.0\n492,165,7.5\n492,166,7.0\n492,167,6.5\n492,168,7.0\n492,169,7.5\n492,170,8.0\n492,171,8.5\n492,172,9.0\n492,173,9.5\n492,174,10.0\n492,175,14.5\n492,176,14.0\n492,177,13.5\n492,178,13.0\n492,179,12.5\n492,180,12.0\n492,181,11.5\n492,182,11.0\n492,183,10.5\n492,184,10.0\n492,185,9.5\n492,186,9.0\n492,187,8.5\n492,188,8.0\n492,189,7.5\n492,190,7.0\n492,191,6.5\n492,192,6.0\n492,193,6.5\n492,194,7.0\n492,195,7.5\n492,196,8.0\n492,197,8.5\n492,198,9.0\n492,199,9.5\n492,200,14.0\n492,201,13.5\n492,202,13.0\n492,203,12.5\n492,204,12.0\n492,205,11.5\n492,206,11.0\n492,207,10.5\n492,208,10.0\n492,209,9.5\n492,210,9.0\n492,211,8.5\n492,212,8.0\n492,213,7.5\n492,214,7.0\n492,215,6.5\n492,216,6.0\n492,217,5.5\n492,218,6.0\n492,219,6.5\n492,220,7.0\n492,221,7.5\n492,222,8.0\n492,223,8.5\n492,224,9.0\n492,225,13.5\n492,226,13.0\n492,227,12.5\n492,228,12.0\n492,229,11.5\n492,230,11.0\n492,231,10.5\n492,232,10.0\n492,233,9.5\n492,234,9.0\n492,235,8.5\n492,236,8.0\n492,237,7.5\n492,238,7.0\n492,239,6.5\n492,240,6.0\n492,241,5.5\n492,242,5.0\n492,243,5.5\n492,244,6.0\n492,245,6.5\n492,246,7.0\n492,247,7.5\n492,248,8.0\n492,249,8.5\n492,250,13.0\n492,251,12.5\n492,252,12.0\n492,253,11.5\n492,254,11.0\n492,255,10.5\n492,256,10.0\n492,257,9.5\n492,258,9.0\n492,259,8.5\n492,260,8.0\n492,261,7.5\n492,262,7.0\n492,263,6.5\n492,264,6.0\n492,265,5.5\n492,266,5.0\n492,267,4.5\n492,268,5.0\n492,269,5.5\n492,270,6.0\n492,271,6.5\n492,272,7.0\n492,273,7.5\n492,274,8.0\n492,275,12.5\n492,276,12.0\n492,277,11.5\n492,278,11.0\n492,279,10.5\n492,280,10.0\n492,281,9.5\n492,282,9.0\n492,283,8.5\n492,284,8.0\n492,285,7.5\n492,286,7.0\n492,287,6.5\n492,288,6.0\n492,289,5.5\n492,290,5.0\n492,291,4.5\n492,292,4.0\n492,293,4.5\n492,294,5.0\n492,295,5.5\n492,296,6.0\n492,297,6.5\n492,298,7.0\n492,299,7.5\n492,300,12.0\n492,301,11.5\n492,302,11.0\n492,303,10.5\n492,304,10.0\n492,305,9.5\n492,306,9.0\n492,307,8.5\n492,308,8.0\n492,309,7.5\n492,310,7.0\n492,311,6.5\n492,312,6.0\n492,313,5.5\n492,314,5.0\n492,315,4.5\n492,316,4.0\n492,317,3.5\n492,318,4.0\n492,319,4.5\n492,320,5.0\n492,321,5.5\n492,322,6.0\n492,323,6.5\n492,324,7.0\n492,325,11.5\n492,326,11.0\n492,327,10.5\n492,328,10.0\n492,329,9.5\n492,330,9.0\n492,331,8.5\n492,332,8.0\n492,333,7.5\n492,334,7.0\n492,335,6.5\n492,336,6.0\n492,337,5.5\n492,338,5.0\n492,339,4.5\n492,340,4.0\n492,341,3.5\n492,342,3.0\n492,343,3.5\n492,344,4.0\n492,345,4.5\n492,346,5.0\n492,347,5.5\n492,348,6.0\n492,349,6.5\n492,350,11.0\n492,351,10.5\n492,352,10.0\n492,353,9.5\n492,354,9.0\n492,355,8.5\n492,356,8.0\n492,357,7.5\n492,358,7.0\n492,359,6.5\n492,360,6.0\n492,361,5.5\n492,362,5.0\n492,363,4.5\n492,364,4.0\n492,365,3.5\n492,366,3.0\n492,367,2.5\n492,368,3.0\n492,369,3.5\n492,370,4.0\n492,371,4.5\n492,372,5.0\n492,373,5.5\n492,374,6.0\n492,375,10.5\n492,376,10.0\n492,377,9.5\n492,378,9.0\n492,379,8.5\n492,380,8.0\n492,381,7.5\n492,382,7.0\n492,383,6.5\n492,384,6.0\n492,385,5.5\n492,386,5.0\n492,387,4.5\n492,388,4.0\n492,389,3.5\n492,390,3.0\n492,391,2.5\n492,392,2.0\n492,393,2.5\n492,394,3.0\n492,395,3.5\n492,396,4.0\n492,397,4.5\n492,398,5.0\n492,399,5.5\n492,400,10.0\n492,401,9.5\n492,402,9.0\n492,403,8.5\n492,404,8.0\n492,405,7.5\n492,406,7.0\n492,407,6.5\n492,408,6.0\n492,409,5.5\n492,410,5.0\n492,411,4.5\n492,412,4.0\n492,413,3.5\n492,414,3.0\n492,415,2.5\n492,416,2.0\n492,417,1.5\n492,418,2.0\n492,419,2.5\n492,420,3.0\n492,421,3.5\n492,422,4.0\n492,423,4.5\n492,424,5.0\n492,425,9.5\n492,426,9.0\n492,427,8.5\n492,428,8.0\n492,429,7.5\n492,430,7.0\n492,431,6.5\n492,432,6.0\n492,433,5.5\n492,434,5.0\n492,435,4.5\n492,436,4.0\n492,437,3.5\n492,438,3.0\n492,439,2.5\n492,440,2.0\n492,441,1.5\n492,442,1.0\n492,443,1.5\n492,444,2.0\n492,445,2.5\n492,446,3.0\n492,447,3.5\n492,448,4.0\n492,449,4.5\n492,450,9.0\n492,451,8.5\n492,452,8.0\n492,453,7.5\n492,454,7.0\n492,455,6.5\n492,456,6.0\n492,457,5.5\n492,458,5.0\n492,459,4.5\n492,460,4.0\n492,461,3.5\n492,462,3.0\n492,463,2.5\n492,464,2.0\n492,465,1.5\n492,466,1.0\n492,467,0.5\n492,468,1.0\n492,469,1.5\n492,470,2.0\n492,471,2.5\n492,472,3.0\n492,473,3.5\n492,474,4.0\n492,475,8.5\n492,476,8.0\n492,477,7.5\n492,478,7.0\n492,479,6.5\n492,480,6.0\n492,481,5.5\n492,482,5.0\n492,483,4.5\n492,484,4.0\n492,485,3.5\n492,486,3.0\n492,487,2.5\n492,488,2.0\n492,489,1.5\n492,490,1.0\n492,491,0.5\n492,492,0\n492,493,0.5\n492,494,1.0\n492,495,1.5\n492,496,2.0\n492,497,2.5\n492,498,3.0\n492,499,3.5\n492,500,9.0\n492,501,8.5\n492,502,8.0\n492,503,7.5\n492,504,7.0\n492,505,6.5\n492,506,6.0\n492,507,5.5\n492,508,5.0\n492,509,4.5\n492,510,4.0\n492,511,3.5\n492,512,3.0\n492,513,2.5\n492,514,2.0\n492,515,1.5\n492,516,1.0\n492,517,0.5\n492,518,1.0\n492,519,1.5\n492,520,2.0\n492,521,2.5\n492,522,3.0\n492,523,3.5\n492,524,4.0\n492,525,9.5\n492,526,9.0\n492,527,8.5\n492,528,8.0\n492,529,7.5\n492,530,7.0\n492,531,6.5\n492,532,6.0\n492,533,5.5\n492,534,5.0\n492,535,4.5\n492,536,4.0\n492,537,3.5\n492,538,3.0\n492,539,2.5\n492,540,2.0\n492,541,1.5\n492,542,1.0\n492,543,1.5\n492,544,2.0\n492,545,2.5\n492,546,3.0\n492,547,3.5\n492,548,4.0\n492,549,4.5\n492,550,10.0\n492,551,9.5\n492,552,9.0\n492,553,8.5\n492,554,8.0\n492,555,7.5\n492,556,7.0\n492,557,6.5\n492,558,6.0\n492,559,5.5\n492,560,5.0\n492,561,4.5\n492,562,4.0\n492,563,3.5\n492,564,3.0\n492,565,2.5\n492,566,2.0\n492,567,1.5\n492,568,2.0\n492,569,2.5\n492,570,3.0\n492,571,3.5\n492,572,4.0\n492,573,4.5\n492,574,5.0\n492,575,10.5\n492,576,10.0\n492,577,9.5\n492,578,9.0\n492,579,8.5\n492,580,8.0\n492,581,7.5\n492,582,7.0\n492,583,6.5\n492,584,6.0\n492,585,5.5\n492,586,5.0\n492,587,4.5\n492,588,4.0\n492,589,3.5\n492,590,3.0\n492,591,2.5\n492,592,2.0\n492,593,2.5\n492,594,3.0\n492,595,3.5\n492,596,4.0\n492,597,4.5\n492,598,5.0\n492,599,5.5\n492,600,11.0\n492,601,10.5\n492,602,10.0\n492,603,9.5\n492,604,9.0\n492,605,8.5\n492,606,8.0\n492,607,7.5\n492,608,7.0\n492,609,6.5\n492,610,6.0\n492,611,5.5\n492,612,5.0\n492,613,4.5\n492,614,4.0\n492,615,3.5\n492,616,3.0\n492,617,2.5\n492,618,3.0\n492,619,3.5\n492,620,4.0\n492,621,4.5\n492,622,5.0\n492,623,5.5\n492,624,6.0\n493,0,18.5\n493,1,18.0\n493,2,17.5\n493,3,17.0\n493,4,16.5\n493,5,16.0\n493,6,15.5\n493,7,15.0\n493,8,14.5\n493,9,14.0\n493,10,13.5\n493,11,13.0\n493,12,12.5\n493,13,12.0\n493,14,11.5\n493,15,11.0\n493,16,10.5\n493,17,10.0\n493,18,9.5\n493,19,10.0\n493,20,10.5\n493,21,11.0\n493,22,11.5\n493,23,12.0\n493,24,12.5\n493,25,18.0\n493,26,17.5\n493,27,17.0\n493,28,16.5\n493,29,16.0\n493,30,15.5\n493,31,15.0\n493,32,14.5\n493,33,14.0\n493,34,13.5\n493,35,13.0\n493,36,12.5\n493,37,12.0\n493,38,11.5\n493,39,11.0\n493,40,10.5\n493,41,10.0\n493,42,9.5\n493,43,9.0\n493,44,9.5\n493,45,10.0\n493,46,10.5\n493,47,11.0\n493,48,11.5\n493,49,12.0\n493,50,17.5\n493,51,17.0\n493,52,16.5\n493,53,16.0\n493,54,15.5\n493,55,15.0\n493,56,14.5\n493,57,14.0\n493,58,13.5\n493,59,13.0\n493,60,12.5\n493,61,12.0\n493,62,11.5\n493,63,11.0\n493,64,10.5\n493,65,10.0\n493,66,9.5\n493,67,9.0\n493,68,8.5\n493,69,9.0\n493,70,9.5\n493,71,10.0\n493,72,10.5\n493,73,11.0\n493,74,11.5\n493,75,17.0\n493,76,16.5\n493,77,16.0\n493,78,15.5\n493,79,15.0\n493,80,14.5\n493,81,14.0\n493,82,13.5\n493,83,13.0\n493,84,12.5\n493,85,12.0\n493,86,11.5\n493,87,11.0\n493,88,10.5\n493,89,10.0\n493,90,9.5\n493,91,9.0\n493,92,8.5\n493,93,8.0\n493,94,8.5\n493,95,9.0\n493,96,9.5\n493,97,10.0\n493,98,10.5\n493,99,11.0\n493,100,16.5\n493,101,16.0\n493,102,15.5\n493,103,15.0\n493,104,14.5\n493,105,14.0\n493,106,13.5\n493,107,13.0\n493,108,12.5\n493,109,12.0\n493,110,11.5\n493,111,11.0\n493,112,10.5\n493,113,10.0\n493,114,9.5\n493,115,9.0\n493,116,8.5\n493,117,8.0\n493,118,7.5\n493,119,8.0\n493,120,8.5\n493,121,9.0\n493,122,9.5\n493,123,10.0\n493,124,10.5\n493,125,16.0\n493,126,15.5\n493,127,15.0\n493,128,14.5\n493,129,14.0\n493,130,13.5\n493,131,13.0\n493,132,12.5\n493,133,12.0\n493,134,11.5\n493,135,11.0\n493,136,10.5\n493,137,10.0\n493,138,9.5\n493,139,9.0\n493,140,8.5\n493,141,8.0\n493,142,7.5\n493,143,7.0\n493,144,7.5\n493,145,8.0\n493,146,8.5\n493,147,9.0\n493,148,9.5\n493,149,10.0\n493,150,15.5\n493,151,15.0\n493,152,14.5\n493,153,14.0\n493,154,13.5\n493,155,13.0\n493,156,12.5\n493,157,12.0\n493,158,11.5\n493,159,11.0\n493,160,10.5\n493,161,10.0\n493,162,9.5\n493,163,9.0\n493,164,8.5\n493,165,8.0\n493,166,7.5\n493,167,7.0\n493,168,6.5\n493,169,7.0\n493,170,7.5\n493,171,8.0\n493,172,8.5\n493,173,9.0\n493,174,9.5\n493,175,15.0\n493,176,14.5\n493,177,14.0\n493,178,13.5\n493,179,13.0\n493,180,12.5\n493,181,12.0\n493,182,11.5\n493,183,11.0\n493,184,10.5\n493,185,10.0\n493,186,9.5\n493,187,9.0\n493,188,8.5\n493,189,8.0\n493,190,7.5\n493,191,7.0\n493,192,6.5\n493,193,6.0\n493,194,6.5\n493,195,7.0\n493,196,7.5\n493,197,8.0\n493,198,8.5\n493,199,9.0\n493,200,14.5\n493,201,14.0\n493,202,13.5\n493,203,13.0\n493,204,12.5\n493,205,12.0\n493,206,11.5\n493,207,11.0\n493,208,10.5\n493,209,10.0\n493,210,9.5\n493,211,9.0\n493,212,8.5\n493,213,8.0\n493,214,7.5\n493,215,7.0\n493,216,6.5\n493,217,6.0\n493,218,5.5\n493,219,6.0\n493,220,6.5\n493,221,7.0\n493,222,7.5\n493,223,8.0\n493,224,8.5\n493,225,14.0\n493,226,13.5\n493,227,13.0\n493,228,12.5\n493,229,12.0\n493,230,11.5\n493,231,11.0\n493,232,10.5\n493,233,10.0\n493,234,9.5\n493,235,9.0\n493,236,8.5\n493,237,8.0\n493,238,7.5\n493,239,7.0\n493,240,6.5\n493,241,6.0\n493,242,5.5\n493,243,5.0\n493,244,5.5\n493,245,6.0\n493,246,6.5\n493,247,7.0\n493,248,7.5\n493,249,8.0\n493,250,13.5\n493,251,13.0\n493,252,12.5\n493,253,12.0\n493,254,11.5\n493,255,11.0\n493,256,10.5\n493,257,10.0\n493,258,9.5\n493,259,9.0\n493,260,8.5\n493,261,8.0\n493,262,7.5\n493,263,7.0\n493,264,6.5\n493,265,6.0\n493,266,5.5\n493,267,5.0\n493,268,4.5\n493,269,5.0\n493,270,5.5\n493,271,6.0\n493,272,6.5\n493,273,7.0\n493,274,7.5\n493,275,13.0\n493,276,12.5\n493,277,12.0\n493,278,11.5\n493,279,11.0\n493,280,10.5\n493,281,10.0\n493,282,9.5\n493,283,9.0\n493,284,8.5\n493,285,8.0\n493,286,7.5\n493,287,7.0\n493,288,6.5\n493,289,6.0\n493,290,5.5\n493,291,5.0\n493,292,4.5\n493,293,4.0\n493,294,4.5\n493,295,5.0\n493,296,5.5\n493,297,6.0\n493,298,6.5\n493,299,7.0\n493,300,12.5\n493,301,12.0\n493,302,11.5\n493,303,11.0\n493,304,10.5\n493,305,10.0\n493,306,9.5\n493,307,9.0\n493,308,8.5\n493,309,8.0\n493,310,7.5\n493,311,7.0\n493,312,6.5\n493,313,6.0\n493,314,5.5\n493,315,5.0\n493,316,4.5\n493,317,4.0\n493,318,3.5\n493,319,4.0\n493,320,4.5\n493,321,5.0\n493,322,5.5\n493,323,6.0\n493,324,6.5\n493,325,12.0\n493,326,11.5\n493,327,11.0\n493,328,10.5\n493,329,10.0\n493,330,9.5\n493,331,9.0\n493,332,8.5\n493,333,8.0\n493,334,7.5\n493,335,7.0\n493,336,6.5\n493,337,6.0\n493,338,5.5\n493,339,5.0\n493,340,4.5\n493,341,4.0\n493,342,3.5\n493,343,3.0\n493,344,3.5\n493,345,4.0\n493,346,4.5\n493,347,5.0\n493,348,5.5\n493,349,6.0\n493,350,11.5\n493,351,11.0\n493,352,10.5\n493,353,10.0\n493,354,9.5\n493,355,9.0\n493,356,8.5\n493,357,8.0\n493,358,7.5\n493,359,7.0\n493,360,6.5\n493,361,6.0\n493,362,5.5\n493,363,5.0\n493,364,4.5\n493,365,4.0\n493,366,3.5\n493,367,3.0\n493,368,2.5\n493,369,3.0\n493,370,3.5\n493,371,4.0\n493,372,4.5\n493,373,5.0\n493,374,5.5\n493,375,11.0\n493,376,10.5\n493,377,10.0\n493,378,9.5\n493,379,9.0\n493,380,8.5\n493,381,8.0\n493,382,7.5\n493,383,7.0\n493,384,6.5\n493,385,6.0\n493,386,5.5\n493,387,5.0\n493,388,4.5\n493,389,4.0\n493,390,3.5\n493,391,3.0\n493,392,2.5\n493,393,2.0\n493,394,2.5\n493,395,3.0\n493,396,3.5\n493,397,4.0\n493,398,4.5\n493,399,5.0\n493,400,10.5\n493,401,10.0\n493,402,9.5\n493,403,9.0\n493,404,8.5\n493,405,8.0\n493,406,7.5\n493,407,7.0\n493,408,6.5\n493,409,6.0\n493,410,5.5\n493,411,5.0\n493,412,4.5\n493,413,4.0\n493,414,3.5\n493,415,3.0\n493,416,2.5\n493,417,2.0\n493,418,1.5\n493,419,2.0\n493,420,2.5\n493,421,3.0\n493,422,3.5\n493,423,4.0\n493,424,4.5\n493,425,10.0\n493,426,9.5\n493,427,9.0\n493,428,8.5\n493,429,8.0\n493,430,7.5\n493,431,7.0\n493,432,6.5\n493,433,6.0\n493,434,5.5\n493,435,5.0\n493,436,4.5\n493,437,4.0\n493,438,3.5\n493,439,3.0\n493,440,2.5\n493,441,2.0\n493,442,1.5\n493,443,1.0\n493,444,1.5\n493,445,2.0\n493,446,2.5\n493,447,3.0\n493,448,3.5\n493,449,4.0\n493,450,9.5\n493,451,9.0\n493,452,8.5\n493,453,8.0\n493,454,7.5\n493,455,7.0\n493,456,6.5\n493,457,6.0\n493,458,5.5\n493,459,5.0\n493,460,4.5\n493,461,4.0\n493,462,3.5\n493,463,3.0\n493,464,2.5\n493,465,2.0\n493,466,1.5\n493,467,1.0\n493,468,0.5\n493,469,1.0\n493,470,1.5\n493,471,2.0\n493,472,2.5\n493,473,3.0\n493,474,3.5\n493,475,9.0\n493,476,8.5\n493,477,8.0\n493,478,7.5\n493,479,7.0\n493,480,6.5\n493,481,6.0\n493,482,5.5\n493,483,5.0\n493,484,4.5\n493,485,4.0\n493,486,3.5\n493,487,3.0\n493,488,2.5\n493,489,2.0\n493,490,1.5\n493,491,1.0\n493,492,0.5\n493,493,0\n493,494,0.5\n493,495,1.0\n493,496,1.5\n493,497,2.0\n493,498,2.5\n493,499,3.0\n493,500,9.5\n493,501,9.0\n493,502,8.5\n493,503,8.0\n493,504,7.5\n493,505,7.0\n493,506,6.5\n493,507,6.0\n493,508,5.5\n493,509,5.0\n493,510,4.5\n493,511,4.0\n493,512,3.5\n493,513,3.0\n493,514,2.5\n493,515,2.0\n493,516,1.5\n493,517,1.0\n493,518,0.5\n493,519,1.0\n493,520,1.5\n493,521,2.0\n493,522,2.5\n493,523,3.0\n493,524,3.5\n493,525,10.0\n493,526,9.5\n493,527,9.0\n493,528,8.5\n493,529,8.0\n493,530,7.5\n493,531,7.0\n493,532,6.5\n493,533,6.0\n493,534,5.5\n493,535,5.0\n493,536,4.5\n493,537,4.0\n493,538,3.5\n493,539,3.0\n493,540,2.5\n493,541,2.0\n493,542,1.5\n493,543,1.0\n493,544,1.5\n493,545,2.0\n493,546,2.5\n493,547,3.0\n493,548,3.5\n493,549,4.0\n493,550,10.5\n493,551,10.0\n493,552,9.5\n493,553,9.0\n493,554,8.5\n493,555,8.0\n493,556,7.5\n493,557,7.0\n493,558,6.5\n493,559,6.0\n493,560,5.5\n493,561,5.0\n493,562,4.5\n493,563,4.0\n493,564,3.5\n493,565,3.0\n493,566,2.5\n493,567,2.0\n493,568,1.5\n493,569,2.0\n493,570,2.5\n493,571,3.0\n493,572,3.5\n493,573,4.0\n493,574,4.5\n493,575,11.0\n493,576,10.5\n493,577,10.0\n493,578,9.5\n493,579,9.0\n493,580,8.5\n493,581,8.0\n493,582,7.5\n493,583,7.0\n493,584,6.5\n493,585,6.0\n493,586,5.5\n493,587,5.0\n493,588,4.5\n493,589,4.0\n493,590,3.5\n493,591,3.0\n493,592,2.5\n493,593,2.0\n493,594,2.5\n493,595,3.0\n493,596,3.5\n493,597,4.0\n493,598,4.5\n493,599,5.0\n493,600,11.5\n493,601,11.0\n493,602,10.5\n493,603,10.0\n493,604,9.5\n493,605,9.0\n493,606,8.5\n493,607,8.0\n493,608,7.5\n493,609,7.0\n493,610,6.5\n493,611,6.0\n493,612,5.5\n493,613,5.0\n493,614,4.5\n493,615,4.0\n493,616,3.5\n493,617,3.0\n493,618,2.5\n493,619,3.0\n493,620,3.5\n493,621,4.0\n493,622,4.5\n493,623,5.0\n493,624,5.5\n494,0,19.0\n494,1,18.5\n494,2,18.0\n494,3,17.5\n494,4,17.0\n494,5,16.5\n494,6,16.0\n494,7,15.5\n494,8,15.0\n494,9,14.5\n494,10,14.0\n494,11,13.5\n494,12,13.0\n494,13,12.5\n494,14,12.0\n494,15,11.5\n494,16,11.0\n494,17,10.5\n494,18,10.0\n494,19,9.5\n494,20,10.0\n494,21,10.5\n494,22,11.0\n494,23,11.5\n494,24,12.0\n494,25,18.5\n494,26,18.0\n494,27,17.5\n494,28,17.0\n494,29,16.5\n494,30,16.0\n494,31,15.5\n494,32,15.0\n494,33,14.5\n494,34,14.0\n494,35,13.5\n494,36,13.0\n494,37,12.5\n494,38,12.0\n494,39,11.5\n494,40,11.0\n494,41,10.5\n494,42,10.0\n494,43,9.5\n494,44,9.0\n494,45,9.5\n494,46,10.0\n494,47,10.5\n494,48,11.0\n494,49,11.5\n494,50,18.0\n494,51,17.5\n494,52,17.0\n494,53,16.5\n494,54,16.0\n494,55,15.5\n494,56,15.0\n494,57,14.5\n494,58,14.0\n494,59,13.5\n494,60,13.0\n494,61,12.5\n494,62,12.0\n494,63,11.5\n494,64,11.0\n494,65,10.5\n494,66,10.0\n494,67,9.5\n494,68,9.0\n494,69,8.5\n494,70,9.0\n494,71,9.5\n494,72,10.0\n494,73,10.5\n494,74,11.0\n494,75,17.5\n494,76,17.0\n494,77,16.5\n494,78,16.0\n494,79,15.5\n494,80,15.0\n494,81,14.5\n494,82,14.0\n494,83,13.5\n494,84,13.0\n494,85,12.5\n494,86,12.0\n494,87,11.5\n494,88,11.0\n494,89,10.5\n494,90,10.0\n494,91,9.5\n494,92,9.0\n494,93,8.5\n494,94,8.0\n494,95,8.5\n494,96,9.0\n494,97,9.5\n494,98,10.0\n494,99,10.5\n494,100,17.0\n494,101,16.5\n494,102,16.0\n494,103,15.5\n494,104,15.0\n494,105,14.5\n494,106,14.0\n494,107,13.5\n494,108,13.0\n494,109,12.5\n494,110,12.0\n494,111,11.5\n494,112,11.0\n494,113,10.5\n494,114,10.0\n494,115,9.5\n494,116,9.0\n494,117,8.5\n494,118,8.0\n494,119,7.5\n494,120,8.0\n494,121,8.5\n494,122,9.0\n494,123,9.5\n494,124,10.0\n494,125,16.5\n494,126,16.0\n494,127,15.5\n494,128,15.0\n494,129,14.5\n494,130,14.0\n494,131,13.5\n494,132,13.0\n494,133,12.5\n494,134,12.0\n494,135,11.5\n494,136,11.0\n494,137,10.5\n494,138,10.0\n494,139,9.5\n494,140,9.0\n494,141,8.5\n494,142,8.0\n494,143,7.5\n494,144,7.0\n494,145,7.5\n494,146,8.0\n494,147,8.5\n494,148,9.0\n494,149,9.5\n494,150,16.0\n494,151,15.5\n494,152,15.0\n494,153,14.5\n494,154,14.0\n494,155,13.5\n494,156,13.0\n494,157,12.5\n494,158,12.0\n494,159,11.5\n494,160,11.0\n494,161,10.5\n494,162,10.0\n494,163,9.5\n494,164,9.0\n494,165,8.5\n494,166,8.0\n494,167,7.5\n494,168,7.0\n494,169,6.5\n494,170,7.0\n494,171,7.5\n494,172,8.0\n494,173,8.5\n494,174,9.0\n494,175,15.5\n494,176,15.0\n494,177,14.5\n494,178,14.0\n494,179,13.5\n494,180,13.0\n494,181,12.5\n494,182,12.0\n494,183,11.5\n494,184,11.0\n494,185,10.5\n494,186,10.0\n494,187,9.5\n494,188,9.0\n494,189,8.5\n494,190,8.0\n494,191,7.5\n494,192,7.0\n494,193,6.5\n494,194,6.0\n494,195,6.5\n494,196,7.0\n494,197,7.5\n494,198,8.0\n494,199,8.5\n494,200,15.0\n494,201,14.5\n494,202,14.0\n494,203,13.5\n494,204,13.0\n494,205,12.5\n494,206,12.0\n494,207,11.5\n494,208,11.0\n494,209,10.5\n494,210,10.0\n494,211,9.5\n494,212,9.0\n494,213,8.5\n494,214,8.0\n494,215,7.5\n494,216,7.0\n494,217,6.5\n494,218,6.0\n494,219,5.5\n494,220,6.0\n494,221,6.5\n494,222,7.0\n494,223,7.5\n494,224,8.0\n494,225,14.5\n494,226,14.0\n494,227,13.5\n494,228,13.0\n494,229,12.5\n494,230,12.0\n494,231,11.5\n494,232,11.0\n494,233,10.5\n494,234,10.0\n494,235,9.5\n494,236,9.0\n494,237,8.5\n494,238,8.0\n494,239,7.5\n494,240,7.0\n494,241,6.5\n494,242,6.0\n494,243,5.5\n494,244,5.0\n494,245,5.5\n494,246,6.0\n494,247,6.5\n494,248,7.0\n494,249,7.5\n494,250,14.0\n494,251,13.5\n494,252,13.0\n494,253,12.5\n494,254,12.0\n494,255,11.5\n494,256,11.0\n494,257,10.5\n494,258,10.0\n494,259,9.5\n494,260,9.0\n494,261,8.5\n494,262,8.0\n494,263,7.5\n494,264,7.0\n494,265,6.5\n494,266,6.0\n494,267,5.5\n494,268,5.0\n494,269,4.5\n494,270,5.0\n494,271,5.5\n494,272,6.0\n494,273,6.5\n494,274,7.0\n494,275,13.5\n494,276,13.0\n494,277,12.5\n494,278,12.0\n494,279,11.5\n494,280,11.0\n494,281,10.5\n494,282,10.0\n494,283,9.5\n494,284,9.0\n494,285,8.5\n494,286,8.0\n494,287,7.5\n494,288,7.0\n494,289,6.5\n494,290,6.0\n494,291,5.5\n494,292,5.0\n494,293,4.5\n494,294,4.0\n494,295,4.5\n494,296,5.0\n494,297,5.5\n494,298,6.0\n494,299,6.5\n494,300,13.0\n494,301,12.5\n494,302,12.0\n494,303,11.5\n494,304,11.0\n494,305,10.5\n494,306,10.0\n494,307,9.5\n494,308,9.0\n494,309,8.5\n494,310,8.0\n494,311,7.5\n494,312,7.0\n494,313,6.5\n494,314,6.0\n494,315,5.5\n494,316,5.0\n494,317,4.5\n494,318,4.0\n494,319,3.5\n494,320,4.0\n494,321,4.5\n494,322,5.0\n494,323,5.5\n494,324,6.0\n494,325,12.5\n494,326,12.0\n494,327,11.5\n494,328,11.0\n494,329,10.5\n494,330,10.0\n494,331,9.5\n494,332,9.0\n494,333,8.5\n494,334,8.0\n494,335,7.5\n494,336,7.0\n494,337,6.5\n494,338,6.0\n494,339,5.5\n494,340,5.0\n494,341,4.5\n494,342,4.0\n494,343,3.5\n494,344,3.0\n494,345,3.5\n494,346,4.0\n494,347,4.5\n494,348,5.0\n494,349,5.5\n494,350,12.0\n494,351,11.5\n494,352,11.0\n494,353,10.5\n494,354,10.0\n494,355,9.5\n494,356,9.0\n494,357,8.5\n494,358,8.0\n494,359,7.5\n494,360,7.0\n494,361,6.5\n494,362,6.0\n494,363,5.5\n494,364,5.0\n494,365,4.5\n494,366,4.0\n494,367,3.5\n494,368,3.0\n494,369,2.5\n494,370,3.0\n494,371,3.5\n494,372,4.0\n494,373,4.5\n494,374,5.0\n494,375,11.5\n494,376,11.0\n494,377,10.5\n494,378,10.0\n494,379,9.5\n494,380,9.0\n494,381,8.5\n494,382,8.0\n494,383,7.5\n494,384,7.0\n494,385,6.5\n494,386,6.0\n494,387,5.5\n494,388,5.0\n494,389,4.5\n494,390,4.0\n494,391,3.5\n494,392,3.0\n494,393,2.5\n494,394,2.0\n494,395,2.5\n494,396,3.0\n494,397,3.5\n494,398,4.0\n494,399,4.5\n494,400,11.0\n494,401,10.5\n494,402,10.0\n494,403,9.5\n494,404,9.0\n494,405,8.5\n494,406,8.0\n494,407,7.5\n494,408,7.0\n494,409,6.5\n494,410,6.0\n494,411,5.5\n494,412,5.0\n494,413,4.5\n494,414,4.0\n494,415,3.5\n494,416,3.0\n494,417,2.5\n494,418,2.0\n494,419,1.5\n494,420,2.0\n494,421,2.5\n494,422,3.0\n494,423,3.5\n494,424,4.0\n494,425,10.5\n494,426,10.0\n494,427,9.5\n494,428,9.0\n494,429,8.5\n494,430,8.0\n494,431,7.5\n494,432,7.0\n494,433,6.5\n494,434,6.0\n494,435,5.5\n494,436,5.0\n494,437,4.5\n494,438,4.0\n494,439,3.5\n494,440,3.0\n494,441,2.5\n494,442,2.0\n494,443,1.5\n494,444,1.0\n494,445,1.5\n494,446,2.0\n494,447,2.5\n494,448,3.0\n494,449,3.5\n494,450,10.0\n494,451,9.5\n494,452,9.0\n494,453,8.5\n494,454,8.0\n494,455,7.5\n494,456,7.0\n494,457,6.5\n494,458,6.0\n494,459,5.5\n494,460,5.0\n494,461,4.5\n494,462,4.0\n494,463,3.5\n494,464,3.0\n494,465,2.5\n494,466,2.0\n494,467,1.5\n494,468,1.0\n494,469,0.5\n494,470,1.0\n494,471,1.5\n494,472,2.0\n494,473,2.5\n494,474,3.0\n494,475,9.5\n494,476,9.0\n494,477,8.5\n494,478,8.0\n494,479,7.5\n494,480,7.0\n494,481,6.5\n494,482,6.0\n494,483,5.5\n494,484,5.0\n494,485,4.5\n494,486,4.0\n494,487,3.5\n494,488,3.0\n494,489,2.5\n494,490,2.0\n494,491,1.5\n494,492,1.0\n494,493,0.5\n494,494,0\n494,495,0.5\n494,496,1.0\n494,497,1.5\n494,498,2.0\n494,499,2.5\n494,500,10.0\n494,501,9.5\n494,502,9.0\n494,503,8.5\n494,504,8.0\n494,505,7.5\n494,506,7.0\n494,507,6.5\n494,508,6.0\n494,509,5.5\n494,510,5.0\n494,511,4.5\n494,512,4.0\n494,513,3.5\n494,514,3.0\n494,515,2.5\n494,516,2.0\n494,517,1.5\n494,518,1.0\n494,519,0.5\n494,520,1.0\n494,521,1.5\n494,522,2.0\n494,523,2.5\n494,524,3.0\n494,525,10.5\n494,526,10.0\n494,527,9.5\n494,528,9.0\n494,529,8.5\n494,530,8.0\n494,531,7.5\n494,532,7.0\n494,533,6.5\n494,534,6.0\n494,535,5.5\n494,536,5.0\n494,537,4.5\n494,538,4.0\n494,539,3.5\n494,540,3.0\n494,541,2.5\n494,542,2.0\n494,543,1.5\n494,544,1.0\n494,545,1.5\n494,546,2.0\n494,547,2.5\n494,548,3.0\n494,549,3.5\n494,550,11.0\n494,551,10.5\n494,552,10.0\n494,553,9.5\n494,554,9.0\n494,555,8.5\n494,556,8.0\n494,557,7.5\n494,558,7.0\n494,559,6.5\n494,560,6.0\n494,561,5.5\n494,562,5.0\n494,563,4.5\n494,564,4.0\n494,565,3.5\n494,566,3.0\n494,567,2.5\n494,568,2.0\n494,569,1.5\n494,570,2.0\n494,571,2.5\n494,572,3.0\n494,573,3.5\n494,574,4.0\n494,575,11.5\n494,576,11.0\n494,577,10.5\n494,578,10.0\n494,579,9.5\n494,580,9.0\n494,581,8.5\n494,582,8.0\n494,583,7.5\n494,584,7.0\n494,585,6.5\n494,586,6.0\n494,587,5.5\n494,588,5.0\n494,589,4.5\n494,590,4.0\n494,591,3.5\n494,592,3.0\n494,593,2.5\n494,594,2.0\n494,595,2.5\n494,596,3.0\n494,597,3.5\n494,598,4.0\n494,599,4.5\n494,600,12.0\n494,601,11.5\n494,602,11.0\n494,603,10.5\n494,604,10.0\n494,605,9.5\n494,606,9.0\n494,607,8.5\n494,608,8.0\n494,609,7.5\n494,610,7.0\n494,611,6.5\n494,612,6.0\n494,613,5.5\n494,614,5.0\n494,615,4.5\n494,616,4.0\n494,617,3.5\n494,618,3.0\n494,619,2.5\n494,620,3.0\n494,621,3.5\n494,622,4.0\n494,623,4.5\n494,624,5.0\n495,0,19.5\n495,1,19.0\n495,2,18.5\n495,3,18.0\n495,4,17.5\n495,5,17.0\n495,6,16.5\n495,7,16.0\n495,8,15.5\n495,9,15.0\n495,10,14.5\n495,11,14.0\n495,12,13.5\n495,13,13.0\n495,14,12.5\n495,15,12.0\n495,16,11.5\n495,17,11.0\n495,18,10.5\n495,19,10.0\n495,20,9.5\n495,21,10.0\n495,22,10.5\n495,23,11.0\n495,24,11.5\n495,25,19.0\n495,26,18.5\n495,27,18.0\n495,28,17.5\n495,29,17.0\n495,30,16.5\n495,31,16.0\n495,32,15.5\n495,33,15.0\n495,34,14.5\n495,35,14.0\n495,36,13.5\n495,37,13.0\n495,38,12.5\n495,39,12.0\n495,40,11.5\n495,41,11.0\n495,42,10.5\n495,43,10.0\n495,44,9.5\n495,45,9.0\n495,46,9.5\n495,47,10.0\n495,48,10.5\n495,49,11.0\n495,50,18.5\n495,51,18.0\n495,52,17.5\n495,53,17.0\n495,54,16.5\n495,55,16.0\n495,56,15.5\n495,57,15.0\n495,58,14.5\n495,59,14.0\n495,60,13.5\n495,61,13.0\n495,62,12.5\n495,63,12.0\n495,64,11.5\n495,65,11.0\n495,66,10.5\n495,67,10.0\n495,68,9.5\n495,69,9.0\n495,70,8.5\n495,71,9.0\n495,72,9.5\n495,73,10.0\n495,74,10.5\n495,75,18.0\n495,76,17.5\n495,77,17.0\n495,78,16.5\n495,79,16.0\n495,80,15.5\n495,81,15.0\n495,82,14.5\n495,83,14.0\n495,84,13.5\n495,85,13.0\n495,86,12.5\n495,87,12.0\n495,88,11.5\n495,89,11.0\n495,90,10.5\n495,91,10.0\n495,92,9.5\n495,93,9.0\n495,94,8.5\n495,95,8.0\n495,96,8.5\n495,97,9.0\n495,98,9.5\n495,99,10.0\n495,100,17.5\n495,101,17.0\n495,102,16.5\n495,103,16.0\n495,104,15.5\n495,105,15.0\n495,106,14.5\n495,107,14.0\n495,108,13.5\n495,109,13.0\n495,110,12.5\n495,111,12.0\n495,112,11.5\n495,113,11.0\n495,114,10.5\n495,115,10.0\n495,116,9.5\n495,117,9.0\n495,118,8.5\n495,119,8.0\n495,120,7.5\n495,121,8.0\n495,122,8.5\n495,123,9.0\n495,124,9.5\n495,125,17.0\n495,126,16.5\n495,127,16.0\n495,128,15.5\n495,129,15.0\n495,130,14.5\n495,131,14.0\n495,132,13.5\n495,133,13.0\n495,134,12.5\n495,135,12.0\n495,136,11.5\n495,137,11.0\n495,138,10.5\n495,139,10.0\n495,140,9.5\n495,141,9.0\n495,142,8.5\n495,143,8.0\n495,144,7.5\n495,145,7.0\n495,146,7.5\n495,147,8.0\n495,148,8.5\n495,149,9.0\n495,150,16.5\n495,151,16.0\n495,152,15.5\n495,153,15.0\n495,154,14.5\n495,155,14.0\n495,156,13.5\n495,157,13.0\n495,158,12.5\n495,159,12.0\n495,160,11.5\n495,161,11.0\n495,162,10.5\n495,163,10.0\n495,164,9.5\n495,165,9.0\n495,166,8.5\n495,167,8.0\n495,168,7.5\n495,169,7.0\n495,170,6.5\n495,171,7.0\n495,172,7.5\n495,173,8.0\n495,174,8.5\n495,175,16.0\n495,176,15.5\n495,177,15.0\n495,178,14.5\n495,179,14.0\n495,180,13.5\n495,181,13.0\n495,182,12.5\n495,183,12.0\n495,184,11.5\n495,185,11.0\n495,186,10.5\n495,187,10.0\n495,188,9.5\n495,189,9.0\n495,190,8.5\n495,191,8.0\n495,192,7.5\n495,193,7.0\n495,194,6.5\n495,195,6.0\n495,196,6.5\n495,197,7.0\n495,198,7.5\n495,199,8.0\n495,200,15.5\n495,201,15.0\n495,202,14.5\n495,203,14.0\n495,204,13.5\n495,205,13.0\n495,206,12.5\n495,207,12.0\n495,208,11.5\n495,209,11.0\n495,210,10.5\n495,211,10.0\n495,212,9.5\n495,213,9.0\n495,214,8.5\n495,215,8.0\n495,216,7.5\n495,217,7.0\n495,218,6.5\n495,219,6.0\n495,220,5.5\n495,221,6.0\n495,222,6.5\n495,223,7.0\n495,224,7.5\n495,225,15.0\n495,226,14.5\n495,227,14.0\n495,228,13.5\n495,229,13.0\n495,230,12.5\n495,231,12.0\n495,232,11.5\n495,233,11.0\n495,234,10.5\n495,235,10.0\n495,236,9.5\n495,237,9.0\n495,238,8.5\n495,239,8.0\n495,240,7.5\n495,241,7.0\n495,242,6.5\n495,243,6.0\n495,244,5.5\n495,245,5.0\n495,246,5.5\n495,247,6.0\n495,248,6.5\n495,249,7.0\n495,250,14.5\n495,251,14.0\n495,252,13.5\n495,253,13.0\n495,254,12.5\n495,255,12.0\n495,256,11.5\n495,257,11.0\n495,258,10.5\n495,259,10.0\n495,260,9.5\n495,261,9.0\n495,262,8.5\n495,263,8.0\n495,264,7.5\n495,265,7.0\n495,266,6.5\n495,267,6.0\n495,268,5.5\n495,269,5.0\n495,270,4.5\n495,271,5.0\n495,272,5.5\n495,273,6.0\n495,274,6.5\n495,275,14.0\n495,276,13.5\n495,277,13.0\n495,278,12.5\n495,279,12.0\n495,280,11.5\n495,281,11.0\n495,282,10.5\n495,283,10.0\n495,284,9.5\n495,285,9.0\n495,286,8.5\n495,287,8.0\n495,288,7.5\n495,289,7.0\n495,290,6.5\n495,291,6.0\n495,292,5.5\n495,293,5.0\n495,294,4.5\n495,295,4.0\n495,296,4.5\n495,297,5.0\n495,298,5.5\n495,299,6.0\n495,300,13.5\n495,301,13.0\n495,302,12.5\n495,303,12.0\n495,304,11.5\n495,305,11.0\n495,306,10.5\n495,307,10.0\n495,308,9.5\n495,309,9.0\n495,310,8.5\n495,311,8.0\n495,312,7.5\n495,313,7.0\n495,314,6.5\n495,315,6.0\n495,316,5.5\n495,317,5.0\n495,318,4.5\n495,319,4.0\n495,320,3.5\n495,321,4.0\n495,322,4.5\n495,323,5.0\n495,324,5.5\n495,325,13.0\n495,326,12.5\n495,327,12.0\n495,328,11.5\n495,329,11.0\n495,330,10.5\n495,331,10.0\n495,332,9.5\n495,333,9.0\n495,334,8.5\n495,335,8.0\n495,336,7.5\n495,337,7.0\n495,338,6.5\n495,339,6.0\n495,340,5.5\n495,341,5.0\n495,342,4.5\n495,343,4.0\n495,344,3.5\n495,345,3.0\n495,346,3.5\n495,347,4.0\n495,348,4.5\n495,349,5.0\n495,350,12.5\n495,351,12.0\n495,352,11.5\n495,353,11.0\n495,354,10.5\n495,355,10.0\n495,356,9.5\n495,357,9.0\n495,358,8.5\n495,359,8.0\n495,360,7.5\n495,361,7.0\n495,362,6.5\n495,363,6.0\n495,364,5.5\n495,365,5.0\n495,366,4.5\n495,367,4.0\n495,368,3.5\n495,369,3.0\n495,370,2.5\n495,371,3.0\n495,372,3.5\n495,373,4.0\n495,374,4.5\n495,375,12.0\n495,376,11.5\n495,377,11.0\n495,378,10.5\n495,379,10.0\n495,380,9.5\n495,381,9.0\n495,382,8.5\n495,383,8.0\n495,384,7.5\n495,385,7.0\n495,386,6.5\n495,387,6.0\n495,388,5.5\n495,389,5.0\n495,390,4.5\n495,391,4.0\n495,392,3.5\n495,393,3.0\n495,394,2.5\n495,395,2.0\n495,396,2.5\n495,397,3.0\n495,398,3.5\n495,399,4.0\n495,400,11.5\n495,401,11.0\n495,402,10.5\n495,403,10.0\n495,404,9.5\n495,405,9.0\n495,406,8.5\n495,407,8.0\n495,408,7.5\n495,409,7.0\n495,410,6.5\n495,411,6.0\n495,412,5.5\n495,413,5.0\n495,414,4.5\n495,415,4.0\n495,416,3.5\n495,417,3.0\n495,418,2.5\n495,419,2.0\n495,420,1.5\n495,421,2.0\n495,422,2.5\n495,423,3.0\n495,424,3.5\n495,425,11.0\n495,426,10.5\n495,427,10.0\n495,428,9.5\n495,429,9.0\n495,430,8.5\n495,431,8.0\n495,432,7.5\n495,433,7.0\n495,434,6.5\n495,435,6.0\n495,436,5.5\n495,437,5.0\n495,438,4.5\n495,439,4.0\n495,440,3.5\n495,441,3.0\n495,442,2.5\n495,443,2.0\n495,444,1.5\n495,445,1.0\n495,446,1.5\n495,447,2.0\n495,448,2.5\n495,449,3.0\n495,450,10.5\n495,451,10.0\n495,452,9.5\n495,453,9.0\n495,454,8.5\n495,455,8.0\n495,456,7.5\n495,457,7.0\n495,458,6.5\n495,459,6.0\n495,460,5.5\n495,461,5.0\n495,462,4.5\n495,463,4.0\n495,464,3.5\n495,465,3.0\n495,466,2.5\n495,467,2.0\n495,468,1.5\n495,469,1.0\n495,470,0.5\n495,471,1.0\n495,472,1.5\n495,473,2.0\n495,474,2.5\n495,475,10.0\n495,476,9.5\n495,477,9.0\n495,478,8.5\n495,479,8.0\n495,480,7.5\n495,481,7.0\n495,482,6.5\n495,483,6.0\n495,484,5.5\n495,485,5.0\n495,486,4.5\n495,487,4.0\n495,488,3.5\n495,489,3.0\n495,490,2.5\n495,491,2.0\n495,492,1.5\n495,493,1.0\n495,494,0.5\n495,495,0\n495,496,0.5\n495,497,1.0\n495,498,1.5\n495,499,2.0\n495,500,10.5\n495,501,10.0\n495,502,9.5\n495,503,9.0\n495,504,8.5\n495,505,8.0\n495,506,7.5\n495,507,7.0\n495,508,6.5\n495,509,6.0\n495,510,5.5\n495,511,5.0\n495,512,4.5\n495,513,4.0\n495,514,3.5\n495,515,3.0\n495,516,2.5\n495,517,2.0\n495,518,1.5\n495,519,1.0\n495,520,0.5\n495,521,1.0\n495,522,1.5\n495,523,2.0\n495,524,2.5\n495,525,11.0\n495,526,10.5\n495,527,10.0\n495,528,9.5\n495,529,9.0\n495,530,8.5\n495,531,8.0\n495,532,7.5\n495,533,7.0\n495,534,6.5\n495,535,6.0\n495,536,5.5\n495,537,5.0\n495,538,4.5\n495,539,4.0\n495,540,3.5\n495,541,3.0\n495,542,2.5\n495,543,2.0\n495,544,1.5\n495,545,1.0\n495,546,1.5\n495,547,2.0\n495,548,2.5\n495,549,3.0\n495,550,11.5\n495,551,11.0\n495,552,10.5\n495,553,10.0\n495,554,9.5\n495,555,9.0\n495,556,8.5\n495,557,8.0\n495,558,7.5\n495,559,7.0\n495,560,6.5\n495,561,6.0\n495,562,5.5\n495,563,5.0\n495,564,4.5\n495,565,4.0\n495,566,3.5\n495,567,3.0\n495,568,2.5\n495,569,2.0\n495,570,1.5\n495,571,2.0\n495,572,2.5\n495,573,3.0\n495,574,3.5\n495,575,12.0\n495,576,11.5\n495,577,11.0\n495,578,10.5\n495,579,10.0\n495,580,9.5\n495,581,9.0\n495,582,8.5\n495,583,8.0\n495,584,7.5\n495,585,7.0\n495,586,6.5\n495,587,6.0\n495,588,5.5\n495,589,5.0\n495,590,4.5\n495,591,4.0\n495,592,3.5\n495,593,3.0\n495,594,2.5\n495,595,2.0\n495,596,2.5\n495,597,3.0\n495,598,3.5\n495,599,4.0\n495,600,12.5\n495,601,12.0\n495,602,11.5\n495,603,11.0\n495,604,10.5\n495,605,10.0\n495,606,9.5\n495,607,9.0\n495,608,8.5\n495,609,8.0\n495,610,7.5\n495,611,7.0\n495,612,6.5\n495,613,6.0\n495,614,5.5\n495,615,5.0\n495,616,4.5\n495,617,4.0\n495,618,3.5\n495,619,3.0\n495,620,2.5\n495,621,3.0\n495,622,3.5\n495,623,4.0\n495,624,4.5\n496,0,20.0\n496,1,19.5\n496,2,19.0\n496,3,18.5\n496,4,18.0\n496,5,17.5\n496,6,17.0\n496,7,16.5\n496,8,16.0\n496,9,15.5\n496,10,15.0\n496,11,14.5\n496,12,14.0\n496,13,13.5\n496,14,13.0\n496,15,12.5\n496,16,12.0\n496,17,11.5\n496,18,11.0\n496,19,10.5\n496,20,10.0\n496,21,9.5\n496,22,10.0\n496,23,10.5\n496,24,11.0\n496,25,19.5\n496,26,19.0\n496,27,18.5\n496,28,18.0\n496,29,17.5\n496,30,17.0\n496,31,16.5\n496,32,16.0\n496,33,15.5\n496,34,15.0\n496,35,14.5\n496,36,14.0\n496,37,13.5\n496,38,13.0\n496,39,12.5\n496,40,12.0\n496,41,11.5\n496,42,11.0\n496,43,10.5\n496,44,10.0\n496,45,9.5\n496,46,9.0\n496,47,9.5\n496,48,10.0\n496,49,10.5\n496,50,19.0\n496,51,18.5\n496,52,18.0\n496,53,17.5\n496,54,17.0\n496,55,16.5\n496,56,16.0\n496,57,15.5\n496,58,15.0\n496,59,14.5\n496,60,14.0\n496,61,13.5\n496,62,13.0\n496,63,12.5\n496,64,12.0\n496,65,11.5\n496,66,11.0\n496,67,10.5\n496,68,10.0\n496,69,9.5\n496,70,9.0\n496,71,8.5\n496,72,9.0\n496,73,9.5\n496,74,10.0\n496,75,18.5\n496,76,18.0\n496,77,17.5\n496,78,17.0\n496,79,16.5\n496,80,16.0\n496,81,15.5\n496,82,15.0\n496,83,14.5\n496,84,14.0\n496,85,13.5\n496,86,13.0\n496,87,12.5\n496,88,12.0\n496,89,11.5\n496,90,11.0\n496,91,10.5\n496,92,10.0\n496,93,9.5\n496,94,9.0\n496,95,8.5\n496,96,8.0\n496,97,8.5\n496,98,9.0\n496,99,9.5\n496,100,18.0\n496,101,17.5\n496,102,17.0\n496,103,16.5\n496,104,16.0\n496,105,15.5\n496,106,15.0\n496,107,14.5\n496,108,14.0\n496,109,13.5\n496,110,13.0\n496,111,12.5\n496,112,12.0\n496,113,11.5\n496,114,11.0\n496,115,10.5\n496,116,10.0\n496,117,9.5\n496,118,9.0\n496,119,8.5\n496,120,8.0\n496,121,7.5\n496,122,8.0\n496,123,8.5\n496,124,9.0\n496,125,17.5\n496,126,17.0\n496,127,16.5\n496,128,16.0\n496,129,15.5\n496,130,15.0\n496,131,14.5\n496,132,14.0\n496,133,13.5\n496,134,13.0\n496,135,12.5\n496,136,12.0\n496,137,11.5\n496,138,11.0\n496,139,10.5\n496,140,10.0\n496,141,9.5\n496,142,9.0\n496,143,8.5\n496,144,8.0\n496,145,7.5\n496,146,7.0\n496,147,7.5\n496,148,8.0\n496,149,8.5\n496,150,17.0\n496,151,16.5\n496,152,16.0\n496,153,15.5\n496,154,15.0\n496,155,14.5\n496,156,14.0\n496,157,13.5\n496,158,13.0\n496,159,12.5\n496,160,12.0\n496,161,11.5\n496,162,11.0\n496,163,10.5\n496,164,10.0\n496,165,9.5\n496,166,9.0\n496,167,8.5\n496,168,8.0\n496,169,7.5\n496,170,7.0\n496,171,6.5\n496,172,7.0\n496,173,7.5\n496,174,8.0\n496,175,16.5\n496,176,16.0\n496,177,15.5\n496,178,15.0\n496,179,14.5\n496,180,14.0\n496,181,13.5\n496,182,13.0\n496,183,12.5\n496,184,12.0\n496,185,11.5\n496,186,11.0\n496,187,10.5\n496,188,10.0\n496,189,9.5\n496,190,9.0\n496,191,8.5\n496,192,8.0\n496,193,7.5\n496,194,7.0\n496,195,6.5\n496,196,6.0\n496,197,6.5\n496,198,7.0\n496,199,7.5\n496,200,16.0\n496,201,15.5\n496,202,15.0\n496,203,14.5\n496,204,14.0\n496,205,13.5\n496,206,13.0\n496,207,12.5\n496,208,12.0\n496,209,11.5\n496,210,11.0\n496,211,10.5\n496,212,10.0\n496,213,9.5\n496,214,9.0\n496,215,8.5\n496,216,8.0\n496,217,7.5\n496,218,7.0\n496,219,6.5\n496,220,6.0\n496,221,5.5\n496,222,6.0\n496,223,6.5\n496,224,7.0\n496,225,15.5\n496,226,15.0\n496,227,14.5\n496,228,14.0\n496,229,13.5\n496,230,13.0\n496,231,12.5\n496,232,12.0\n496,233,11.5\n496,234,11.0\n496,235,10.5\n496,236,10.0\n496,237,9.5\n496,238,9.0\n496,239,8.5\n496,240,8.0\n496,241,7.5\n496,242,7.0\n496,243,6.5\n496,244,6.0\n496,245,5.5\n496,246,5.0\n496,247,5.5\n496,248,6.0\n496,249,6.5\n496,250,15.0\n496,251,14.5\n496,252,14.0\n496,253,13.5\n496,254,13.0\n496,255,12.5\n496,256,12.0\n496,257,11.5\n496,258,11.0\n496,259,10.5\n496,260,10.0\n496,261,9.5\n496,262,9.0\n496,263,8.5\n496,264,8.0\n496,265,7.5\n496,266,7.0\n496,267,6.5\n496,268,6.0\n496,269,5.5\n496,270,5.0\n496,271,4.5\n496,272,5.0\n496,273,5.5\n496,274,6.0\n496,275,14.5\n496,276,14.0\n496,277,13.5\n496,278,13.0\n496,279,12.5\n496,280,12.0\n496,281,11.5\n496,282,11.0\n496,283,10.5\n496,284,10.0\n496,285,9.5\n496,286,9.0\n496,287,8.5\n496,288,8.0\n496,289,7.5\n496,290,7.0\n496,291,6.5\n496,292,6.0\n496,293,5.5\n496,294,5.0\n496,295,4.5\n496,296,4.0\n496,297,4.5\n496,298,5.0\n496,299,5.5\n496,300,14.0\n496,301,13.5\n496,302,13.0\n496,303,12.5\n496,304,12.0\n496,305,11.5\n496,306,11.0\n496,307,10.5\n496,308,10.0\n496,309,9.5\n496,310,9.0\n496,311,8.5\n496,312,8.0\n496,313,7.5\n496,314,7.0\n496,315,6.5\n496,316,6.0\n496,317,5.5\n496,318,5.0\n496,319,4.5\n496,320,4.0\n496,321,3.5\n496,322,4.0\n496,323,4.5\n496,324,5.0\n496,325,13.5\n496,326,13.0\n496,327,12.5\n496,328,12.0\n496,329,11.5\n496,330,11.0\n496,331,10.5\n496,332,10.0\n496,333,9.5\n496,334,9.0\n496,335,8.5\n496,336,8.0\n496,337,7.5\n496,338,7.0\n496,339,6.5\n496,340,6.0\n496,341,5.5\n496,342,5.0\n496,343,4.5\n496,344,4.0\n496,345,3.5\n496,346,3.0\n496,347,3.5\n496,348,4.0\n496,349,4.5\n496,350,13.0\n496,351,12.5\n496,352,12.0\n496,353,11.5\n496,354,11.0\n496,355,10.5\n496,356,10.0\n496,357,9.5\n496,358,9.0\n496,359,8.5\n496,360,8.0\n496,361,7.5\n496,362,7.0\n496,363,6.5\n496,364,6.0\n496,365,5.5\n496,366,5.0\n496,367,4.5\n496,368,4.0\n496,369,3.5\n496,370,3.0\n496,371,2.5\n496,372,3.0\n496,373,3.5\n496,374,4.0\n496,375,12.5\n496,376,12.0\n496,377,11.5\n496,378,11.0\n496,379,10.5\n496,380,10.0\n496,381,9.5\n496,382,9.0\n496,383,8.5\n496,384,8.0\n496,385,7.5\n496,386,7.0\n496,387,6.5\n496,388,6.0\n496,389,5.5\n496,390,5.0\n496,391,4.5\n496,392,4.0\n496,393,3.5\n496,394,3.0\n496,395,2.5\n496,396,2.0\n496,397,2.5\n496,398,3.0\n496,399,3.5\n496,400,12.0\n496,401,11.5\n496,402,11.0\n496,403,10.5\n496,404,10.0\n496,405,9.5\n496,406,9.0\n496,407,8.5\n496,408,8.0\n496,409,7.5\n496,410,7.0\n496,411,6.5\n496,412,6.0\n496,413,5.5\n496,414,5.0\n496,415,4.5\n496,416,4.0\n496,417,3.5\n496,418,3.0\n496,419,2.5\n496,420,2.0\n496,421,1.5\n496,422,2.0\n496,423,2.5\n496,424,3.0\n496,425,11.5\n496,426,11.0\n496,427,10.5\n496,428,10.0\n496,429,9.5\n496,430,9.0\n496,431,8.5\n496,432,8.0\n496,433,7.5\n496,434,7.0\n496,435,6.5\n496,436,6.0\n496,437,5.5\n496,438,5.0\n496,439,4.5\n496,440,4.0\n496,441,3.5\n496,442,3.0\n496,443,2.5\n496,444,2.0\n496,445,1.5\n496,446,1.0\n496,447,1.5\n496,448,2.0\n496,449,2.5\n496,450,11.0\n496,451,10.5\n496,452,10.0\n496,453,9.5\n496,454,9.0\n496,455,8.5\n496,456,8.0\n496,457,7.5\n496,458,7.0\n496,459,6.5\n496,460,6.0\n496,461,5.5\n496,462,5.0\n496,463,4.5\n496,464,4.0\n496,465,3.5\n496,466,3.0\n496,467,2.5\n496,468,2.0\n496,469,1.5\n496,470,1.0\n496,471,0.5\n496,472,1.0\n496,473,1.5\n496,474,2.0\n496,475,10.5\n496,476,10.0\n496,477,9.5\n496,478,9.0\n496,479,8.5\n496,480,8.0\n496,481,7.5\n496,482,7.0\n496,483,6.5\n496,484,6.0\n496,485,5.5\n496,486,5.0\n496,487,4.5\n496,488,4.0\n496,489,3.5\n496,490,3.0\n496,491,2.5\n496,492,2.0\n496,493,1.5\n496,494,1.0\n496,495,0.5\n496,496,0\n496,497,0.5\n496,498,1.0\n496,499,1.5\n496,500,11.0\n496,501,10.5\n496,502,10.0\n496,503,9.5\n496,504,9.0\n496,505,8.5\n496,506,8.0\n496,507,7.5\n496,508,7.0\n496,509,6.5\n496,510,6.0\n496,511,5.5\n496,512,5.0\n496,513,4.5\n496,514,4.0\n496,515,3.5\n496,516,3.0\n496,517,2.5\n496,518,2.0\n496,519,1.5\n496,520,1.0\n496,521,0.5\n496,522,1.0\n496,523,1.5\n496,524,2.0\n496,525,11.5\n496,526,11.0\n496,527,10.5\n496,528,10.0\n496,529,9.5\n496,530,9.0\n496,531,8.5\n496,532,8.0\n496,533,7.5\n496,534,7.0\n496,535,6.5\n496,536,6.0\n496,537,5.5\n496,538,5.0\n496,539,4.5\n496,540,4.0\n496,541,3.5\n496,542,3.0\n496,543,2.5\n496,544,2.0\n496,545,1.5\n496,546,1.0\n496,547,1.5\n496,548,2.0\n496,549,2.5\n496,550,12.0\n496,551,11.5\n496,552,11.0\n496,553,10.5\n496,554,10.0\n496,555,9.5\n496,556,9.0\n496,557,8.5\n496,558,8.0\n496,559,7.5\n496,560,7.0\n496,561,6.5\n496,562,6.0\n496,563,5.5\n496,564,5.0\n496,565,4.5\n496,566,4.0\n496,567,3.5\n496,568,3.0\n496,569,2.5\n496,570,2.0\n496,571,1.5\n496,572,2.0\n496,573,2.5\n496,574,3.0\n496,575,12.5\n496,576,12.0\n496,577,11.5\n496,578,11.0\n496,579,10.5\n496,580,10.0\n496,581,9.5\n496,582,9.0\n496,583,8.5\n496,584,8.0\n496,585,7.5\n496,586,7.0\n496,587,6.5\n496,588,6.0\n496,589,5.5\n496,590,5.0\n496,591,4.5\n496,592,4.0\n496,593,3.5\n496,594,3.0\n496,595,2.5\n496,596,2.0\n496,597,2.5\n496,598,3.0\n496,599,3.5\n496,600,13.0\n496,601,12.5\n496,602,12.0\n496,603,11.5\n496,604,11.0\n496,605,10.5\n496,606,10.0\n496,607,9.5\n496,608,9.0\n496,609,8.5\n496,610,8.0\n496,611,7.5\n496,612,7.0\n496,613,6.5\n496,614,6.0\n496,615,5.5\n496,616,5.0\n496,617,4.5\n496,618,4.0\n496,619,3.5\n496,620,3.0\n496,621,2.5\n496,622,3.0\n496,623,3.5\n496,624,4.0\n497,0,20.5\n497,1,20.0\n497,2,19.5\n497,3,19.0\n497,4,18.5\n497,5,18.0\n497,6,17.5\n497,7,17.0\n497,8,16.5\n497,9,16.0\n497,10,15.5\n497,11,15.0\n497,12,14.5\n497,13,14.0\n497,14,13.5\n497,15,13.0\n497,16,12.5\n497,17,12.0\n497,18,11.5\n497,19,11.0\n497,20,10.5\n497,21,10.0\n497,22,9.5\n497,23,10.0\n497,24,10.5\n497,25,20.0\n497,26,19.5\n497,27,19.0\n497,28,18.5\n497,29,18.0\n497,30,17.5\n497,31,17.0\n497,32,16.5\n497,33,16.0\n497,34,15.5\n497,35,15.0\n497,36,14.5\n497,37,14.0\n497,38,13.5\n497,39,13.0\n497,40,12.5\n497,41,12.0\n497,42,11.5\n497,43,11.0\n497,44,10.5\n497,45,10.0\n497,46,9.5\n497,47,9.0\n497,48,9.5\n497,49,10.0\n497,50,19.5\n497,51,19.0\n497,52,18.5\n497,53,18.0\n497,54,17.5\n497,55,17.0\n497,56,16.5\n497,57,16.0\n497,58,15.5\n497,59,15.0\n497,60,14.5\n497,61,14.0\n497,62,13.5\n497,63,13.0\n497,64,12.5\n497,65,12.0\n497,66,11.5\n497,67,11.0\n497,68,10.5\n497,69,10.0\n497,70,9.5\n497,71,9.0\n497,72,8.5\n497,73,9.0\n497,74,9.5\n497,75,19.0\n497,76,18.5\n497,77,18.0\n497,78,17.5\n497,79,17.0\n497,80,16.5\n497,81,16.0\n497,82,15.5\n497,83,15.0\n497,84,14.5\n497,85,14.0\n497,86,13.5\n497,87,13.0\n497,88,12.5\n497,89,12.0\n497,90,11.5\n497,91,11.0\n497,92,10.5\n497,93,10.0\n497,94,9.5\n497,95,9.0\n497,96,8.5\n497,97,8.0\n497,98,8.5\n497,99,9.0\n497,100,18.5\n497,101,18.0\n497,102,17.5\n497,103,17.0\n497,104,16.5\n497,105,16.0\n497,106,15.5\n497,107,15.0\n497,108,14.5\n497,109,14.0\n497,110,13.5\n497,111,13.0\n497,112,12.5\n497,113,12.0\n497,114,11.5\n497,115,11.0\n497,116,10.5\n497,117,10.0\n497,118,9.5\n497,119,9.0\n497,120,8.5\n497,121,8.0\n497,122,7.5\n497,123,8.0\n497,124,8.5\n497,125,18.0\n497,126,17.5\n497,127,17.0\n497,128,16.5\n497,129,16.0\n497,130,15.5\n497,131,15.0\n497,132,14.5\n497,133,14.0\n497,134,13.5\n497,135,13.0\n497,136,12.5\n497,137,12.0\n497,138,11.5\n497,139,11.0\n497,140,10.5\n497,141,10.0\n497,142,9.5\n497,143,9.0\n497,144,8.5\n497,145,8.0\n497,146,7.5\n497,147,7.0\n497,148,7.5\n497,149,8.0\n497,150,17.5\n497,151,17.0\n497,152,16.5\n497,153,16.0\n497,154,15.5\n497,155,15.0\n497,156,14.5\n497,157,14.0\n497,158,13.5\n497,159,13.0\n497,160,12.5\n497,161,12.0\n497,162,11.5\n497,163,11.0\n497,164,10.5\n497,165,10.0\n497,166,9.5\n497,167,9.0\n497,168,8.5\n497,169,8.0\n497,170,7.5\n497,171,7.0\n497,172,6.5\n497,173,7.0\n497,174,7.5\n497,175,17.0\n497,176,16.5\n497,177,16.0\n497,178,15.5\n497,179,15.0\n497,180,14.5\n497,181,14.0\n497,182,13.5\n497,183,13.0\n497,184,12.5\n497,185,12.0\n497,186,11.5\n497,187,11.0\n497,188,10.5\n497,189,10.0\n497,190,9.5\n497,191,9.0\n497,192,8.5\n497,193,8.0\n497,194,7.5\n497,195,7.0\n497,196,6.5\n497,197,6.0\n497,198,6.5\n497,199,7.0\n497,200,16.5\n497,201,16.0\n497,202,15.5\n497,203,15.0\n497,204,14.5\n497,205,14.0\n497,206,13.5\n497,207,13.0\n497,208,12.5\n497,209,12.0\n497,210,11.5\n497,211,11.0\n497,212,10.5\n497,213,10.0\n497,214,9.5\n497,215,9.0\n497,216,8.5\n497,217,8.0\n497,218,7.5\n497,219,7.0\n497,220,6.5\n497,221,6.0\n497,222,5.5\n497,223,6.0\n497,224,6.5\n497,225,16.0\n497,226,15.5\n497,227,15.0\n497,228,14.5\n497,229,14.0\n497,230,13.5\n497,231,13.0\n497,232,12.5\n497,233,12.0\n497,234,11.5\n497,235,11.0\n497,236,10.5\n497,237,10.0\n497,238,9.5\n497,239,9.0\n497,240,8.5\n497,241,8.0\n497,242,7.5\n497,243,7.0\n497,244,6.5\n497,245,6.0\n497,246,5.5\n497,247,5.0\n497,248,5.5\n497,249,6.0\n497,250,15.5\n497,251,15.0\n497,252,14.5\n497,253,14.0\n497,254,13.5\n497,255,13.0\n497,256,12.5\n497,257,12.0\n497,258,11.5\n497,259,11.0\n497,260,10.5\n497,261,10.0\n497,262,9.5\n497,263,9.0\n497,264,8.5\n497,265,8.0\n497,266,7.5\n497,267,7.0\n497,268,6.5\n497,269,6.0\n497,270,5.5\n497,271,5.0\n497,272,4.5\n497,273,5.0\n497,274,5.5\n497,275,15.0\n497,276,14.5\n497,277,14.0\n497,278,13.5\n497,279,13.0\n497,280,12.5\n497,281,12.0\n497,282,11.5\n497,283,11.0\n497,284,10.5\n497,285,10.0\n497,286,9.5\n497,287,9.0\n497,288,8.5\n497,289,8.0\n497,290,7.5\n497,291,7.0\n497,292,6.5\n497,293,6.0\n497,294,5.5\n497,295,5.0\n497,296,4.5\n497,297,4.0\n497,298,4.5\n497,299,5.0\n497,300,14.5\n497,301,14.0\n497,302,13.5\n497,303,13.0\n497,304,12.5\n497,305,12.0\n497,306,11.5\n497,307,11.0\n497,308,10.5\n497,309,10.0\n497,310,9.5\n497,311,9.0\n497,312,8.5\n497,313,8.0\n497,314,7.5\n497,315,7.0\n497,316,6.5\n497,317,6.0\n497,318,5.5\n497,319,5.0\n497,320,4.5\n497,321,4.0\n497,322,3.5\n497,323,4.0\n497,324,4.5\n497,325,14.0\n497,326,13.5\n497,327,13.0\n497,328,12.5\n497,329,12.0\n497,330,11.5\n497,331,11.0\n497,332,10.5\n497,333,10.0\n497,334,9.5\n497,335,9.0\n497,336,8.5\n497,337,8.0\n497,338,7.5\n497,339,7.0\n497,340,6.5\n497,341,6.0\n497,342,5.5\n497,343,5.0\n497,344,4.5\n497,345,4.0\n497,346,3.5\n497,347,3.0\n497,348,3.5\n497,349,4.0\n497,350,13.5\n497,351,13.0\n497,352,12.5\n497,353,12.0\n497,354,11.5\n497,355,11.0\n497,356,10.5\n497,357,10.0\n497,358,9.5\n497,359,9.0\n497,360,8.5\n497,361,8.0\n497,362,7.5\n497,363,7.0\n497,364,6.5\n497,365,6.0\n497,366,5.5\n497,367,5.0\n497,368,4.5\n497,369,4.0\n497,370,3.5\n497,371,3.0\n497,372,2.5\n497,373,3.0\n497,374,3.5\n497,375,13.0\n497,376,12.5\n497,377,12.0\n497,378,11.5\n497,379,11.0\n497,380,10.5\n497,381,10.0\n497,382,9.5\n497,383,9.0\n497,384,8.5\n497,385,8.0\n497,386,7.5\n497,387,7.0\n497,388,6.5\n497,389,6.0\n497,390,5.5\n497,391,5.0\n497,392,4.5\n497,393,4.0\n497,394,3.5\n497,395,3.0\n497,396,2.5\n497,397,2.0\n497,398,2.5\n497,399,3.0\n497,400,12.5\n497,401,12.0\n497,402,11.5\n497,403,11.0\n497,404,10.5\n497,405,10.0\n497,406,9.5\n497,407,9.0\n497,408,8.5\n497,409,8.0\n497,410,7.5\n497,411,7.0\n497,412,6.5\n497,413,6.0\n497,414,5.5\n497,415,5.0\n497,416,4.5\n497,417,4.0\n497,418,3.5\n497,419,3.0\n497,420,2.5\n497,421,2.0\n497,422,1.5\n497,423,2.0\n497,424,2.5\n497,425,12.0\n497,426,11.5\n497,427,11.0\n497,428,10.5\n497,429,10.0\n497,430,9.5\n497,431,9.0\n497,432,8.5\n497,433,8.0\n497,434,7.5\n497,435,7.0\n497,436,6.5\n497,437,6.0\n497,438,5.5\n497,439,5.0\n497,440,4.5\n497,441,4.0\n497,442,3.5\n497,443,3.0\n497,444,2.5\n497,445,2.0\n497,446,1.5\n497,447,1.0\n497,448,1.5\n497,449,2.0\n497,450,11.5\n497,451,11.0\n497,452,10.5\n497,453,10.0\n497,454,9.5\n497,455,9.0\n497,456,8.5\n497,457,8.0\n497,458,7.5\n497,459,7.0\n497,460,6.5\n497,461,6.0\n497,462,5.5\n497,463,5.0\n497,464,4.5\n497,465,4.0\n497,466,3.5\n497,467,3.0\n497,468,2.5\n497,469,2.0\n497,470,1.5\n497,471,1.0\n497,472,0.5\n497,473,1.0\n497,474,1.5\n497,475,11.0\n497,476,10.5\n497,477,10.0\n497,478,9.5\n497,479,9.0\n497,480,8.5\n497,481,8.0\n497,482,7.5\n497,483,7.0\n497,484,6.5\n497,485,6.0\n497,486,5.5\n497,487,5.0\n497,488,4.5\n497,489,4.0\n497,490,3.5\n497,491,3.0\n497,492,2.5\n497,493,2.0\n497,494,1.5\n497,495,1.0\n497,496,0.5\n497,497,0\n497,498,0.5\n497,499,1.0\n497,500,11.5\n497,501,11.0\n497,502,10.5\n497,503,10.0\n497,504,9.5\n497,505,9.0\n497,506,8.5\n497,507,8.0\n497,508,7.5\n497,509,7.0\n497,510,6.5\n497,511,6.0\n497,512,5.5\n497,513,5.0\n497,514,4.5\n497,515,4.0\n497,516,3.5\n497,517,3.0\n497,518,2.5\n497,519,2.0\n497,520,1.5\n497,521,1.0\n497,522,0.5\n497,523,1.0\n497,524,1.5\n497,525,12.0\n497,526,11.5\n497,527,11.0\n497,528,10.5\n497,529,10.0\n497,530,9.5\n497,531,9.0\n497,532,8.5\n497,533,8.0\n497,534,7.5\n497,535,7.0\n497,536,6.5\n497,537,6.0\n497,538,5.5\n497,539,5.0\n497,540,4.5\n497,541,4.0\n497,542,3.5\n497,543,3.0\n497,544,2.5\n497,545,2.0\n497,546,1.5\n497,547,1.0\n497,548,1.5\n497,549,2.0\n497,550,12.5\n497,551,12.0\n497,552,11.5\n497,553,11.0\n497,554,10.5\n497,555,10.0\n497,556,9.5\n497,557,9.0\n497,558,8.5\n497,559,8.0\n497,560,7.5\n497,561,7.0\n497,562,6.5\n497,563,6.0\n497,564,5.5\n497,565,5.0\n497,566,4.5\n497,567,4.0\n497,568,3.5\n497,569,3.0\n497,570,2.5\n497,571,2.0\n497,572,1.5\n497,573,2.0\n497,574,2.5\n497,575,13.0\n497,576,12.5\n497,577,12.0\n497,578,11.5\n497,579,11.0\n497,580,10.5\n497,581,10.0\n497,582,9.5\n497,583,9.0\n497,584,8.5\n497,585,8.0\n497,586,7.5\n497,587,7.0\n497,588,6.5\n497,589,6.0\n497,590,5.5\n497,591,5.0\n497,592,4.5\n497,593,4.0\n497,594,3.5\n497,595,3.0\n497,596,2.5\n497,597,2.0\n497,598,2.5\n497,599,3.0\n497,600,13.5\n497,601,13.0\n497,602,12.5\n497,603,12.0\n497,604,11.5\n497,605,11.0\n497,606,10.5\n497,607,10.0\n497,608,9.5\n497,609,9.0\n497,610,8.5\n497,611,8.0\n497,612,7.5\n497,613,7.0\n497,614,6.5\n497,615,6.0\n497,616,5.5\n497,617,5.0\n497,618,4.5\n497,619,4.0\n497,620,3.5\n497,621,3.0\n497,622,2.5\n497,623,3.0\n497,624,3.5\n498,0,21.0\n498,1,20.5\n498,2,20.0\n498,3,19.5\n498,4,19.0\n498,5,18.5\n498,6,18.0\n498,7,17.5\n498,8,17.0\n498,9,16.5\n498,10,16.0\n498,11,15.5\n498,12,15.0\n498,13,14.5\n498,14,14.0\n498,15,13.5\n498,16,13.0\n498,17,12.5\n498,18,12.0\n498,19,11.5\n498,20,11.0\n498,21,10.5\n498,22,10.0\n498,23,9.5\n498,24,10.0\n498,25,20.5\n498,26,20.0\n498,27,19.5\n498,28,19.0\n498,29,18.5\n498,30,18.0\n498,31,17.5\n498,32,17.0\n498,33,16.5\n498,34,16.0\n498,35,15.5\n498,36,15.0\n498,37,14.5\n498,38,14.0\n498,39,13.5\n498,40,13.0\n498,41,12.5\n498,42,12.0\n498,43,11.5\n498,44,11.0\n498,45,10.5\n498,46,10.0\n498,47,9.5\n498,48,9.0\n498,49,9.5\n498,50,20.0\n498,51,19.5\n498,52,19.0\n498,53,18.5\n498,54,18.0\n498,55,17.5\n498,56,17.0\n498,57,16.5\n498,58,16.0\n498,59,15.5\n498,60,15.0\n498,61,14.5\n498,62,14.0\n498,63,13.5\n498,64,13.0\n498,65,12.5\n498,66,12.0\n498,67,11.5\n498,68,11.0\n498,69,10.5\n498,70,10.0\n498,71,9.5\n498,72,9.0\n498,73,8.5\n498,74,9.0\n498,75,19.5\n498,76,19.0\n498,77,18.5\n498,78,18.0\n498,79,17.5\n498,80,17.0\n498,81,16.5\n498,82,16.0\n498,83,15.5\n498,84,15.0\n498,85,14.5\n498,86,14.0\n498,87,13.5\n498,88,13.0\n498,89,12.5\n498,90,12.0\n498,91,11.5\n498,92,11.0\n498,93,10.5\n498,94,10.0\n498,95,9.5\n498,96,9.0\n498,97,8.5\n498,98,8.0\n498,99,8.5\n498,100,19.0\n498,101,18.5\n498,102,18.0\n498,103,17.5\n498,104,17.0\n498,105,16.5\n498,106,16.0\n498,107,15.5\n498,108,15.0\n498,109,14.5\n498,110,14.0\n498,111,13.5\n498,112,13.0\n498,113,12.5\n498,114,12.0\n498,115,11.5\n498,116,11.0\n498,117,10.5\n498,118,10.0\n498,119,9.5\n498,120,9.0\n498,121,8.5\n498,122,8.0\n498,123,7.5\n498,124,8.0\n498,125,18.5\n498,126,18.0\n498,127,17.5\n498,128,17.0\n498,129,16.5\n498,130,16.0\n498,131,15.5\n498,132,15.0\n498,133,14.5\n498,134,14.0\n498,135,13.5\n498,136,13.0\n498,137,12.5\n498,138,12.0\n498,139,11.5\n498,140,11.0\n498,141,10.5\n498,142,10.0\n498,143,9.5\n498,144,9.0\n498,145,8.5\n498,146,8.0\n498,147,7.5\n498,148,7.0\n498,149,7.5\n498,150,18.0\n498,151,17.5\n498,152,17.0\n498,153,16.5\n498,154,16.0\n498,155,15.5\n498,156,15.0\n498,157,14.5\n498,158,14.0\n498,159,13.5\n498,160,13.0\n498,161,12.5\n498,162,12.0\n498,163,11.5\n498,164,11.0\n498,165,10.5\n498,166,10.0\n498,167,9.5\n498,168,9.0\n498,169,8.5\n498,170,8.0\n498,171,7.5\n498,172,7.0\n498,173,6.5\n498,174,7.0\n498,175,17.5\n498,176,17.0\n498,177,16.5\n498,178,16.0\n498,179,15.5\n498,180,15.0\n498,181,14.5\n498,182,14.0\n498,183,13.5\n498,184,13.0\n498,185,12.5\n498,186,12.0\n498,187,11.5\n498,188,11.0\n498,189,10.5\n498,190,10.0\n498,191,9.5\n498,192,9.0\n498,193,8.5\n498,194,8.0\n498,195,7.5\n498,196,7.0\n498,197,6.5\n498,198,6.0\n498,199,6.5\n498,200,17.0\n498,201,16.5\n498,202,16.0\n498,203,15.5\n498,204,15.0\n498,205,14.5\n498,206,14.0\n498,207,13.5\n498,208,13.0\n498,209,12.5\n498,210,12.0\n498,211,11.5\n498,212,11.0\n498,213,10.5\n498,214,10.0\n498,215,9.5\n498,216,9.0\n498,217,8.5\n498,218,8.0\n498,219,7.5\n498,220,7.0\n498,221,6.5\n498,222,6.0\n498,223,5.5\n498,224,6.0\n498,225,16.5\n498,226,16.0\n498,227,15.5\n498,228,15.0\n498,229,14.5\n498,230,14.0\n498,231,13.5\n498,232,13.0\n498,233,12.5\n498,234,12.0\n498,235,11.5\n498,236,11.0\n498,237,10.5\n498,238,10.0\n498,239,9.5\n498,240,9.0\n498,241,8.5\n498,242,8.0\n498,243,7.5\n498,244,7.0\n498,245,6.5\n498,246,6.0\n498,247,5.5\n498,248,5.0\n498,249,5.5\n498,250,16.0\n498,251,15.5\n498,252,15.0\n498,253,14.5\n498,254,14.0\n498,255,13.5\n498,256,13.0\n498,257,12.5\n498,258,12.0\n498,259,11.5\n498,260,11.0\n498,261,10.5\n498,262,10.0\n498,263,9.5\n498,264,9.0\n498,265,8.5\n498,266,8.0\n498,267,7.5\n498,268,7.0\n498,269,6.5\n498,270,6.0\n498,271,5.5\n498,272,5.0\n498,273,4.5\n498,274,5.0\n498,275,15.5\n498,276,15.0\n498,277,14.5\n498,278,14.0\n498,279,13.5\n498,280,13.0\n498,281,12.5\n498,282,12.0\n498,283,11.5\n498,284,11.0\n498,285,10.5\n498,286,10.0\n498,287,9.5\n498,288,9.0\n498,289,8.5\n498,290,8.0\n498,291,7.5\n498,292,7.0\n498,293,6.5\n498,294,6.0\n498,295,5.5\n498,296,5.0\n498,297,4.5\n498,298,4.0\n498,299,4.5\n498,300,15.0\n498,301,14.5\n498,302,14.0\n498,303,13.5\n498,304,13.0\n498,305,12.5\n498,306,12.0\n498,307,11.5\n498,308,11.0\n498,309,10.5\n498,310,10.0\n498,311,9.5\n498,312,9.0\n498,313,8.5\n498,314,8.0\n498,315,7.5\n498,316,7.0\n498,317,6.5\n498,318,6.0\n498,319,5.5\n498,320,5.0\n498,321,4.5\n498,322,4.0\n498,323,3.5\n498,324,4.0\n498,325,14.5\n498,326,14.0\n498,327,13.5\n498,328,13.0\n498,329,12.5\n498,330,12.0\n498,331,11.5\n498,332,11.0\n498,333,10.5\n498,334,10.0\n498,335,9.5\n498,336,9.0\n498,337,8.5\n498,338,8.0\n498,339,7.5\n498,340,7.0\n498,341,6.5\n498,342,6.0\n498,343,5.5\n498,344,5.0\n498,345,4.5\n498,346,4.0\n498,347,3.5\n498,348,3.0\n498,349,3.5\n498,350,14.0\n498,351,13.5\n498,352,13.0\n498,353,12.5\n498,354,12.0\n498,355,11.5\n498,356,11.0\n498,357,10.5\n498,358,10.0\n498,359,9.5\n498,360,9.0\n498,361,8.5\n498,362,8.0\n498,363,7.5\n498,364,7.0\n498,365,6.5\n498,366,6.0\n498,367,5.5\n498,368,5.0\n498,369,4.5\n498,370,4.0\n498,371,3.5\n498,372,3.0\n498,373,2.5\n498,374,3.0\n498,375,13.5\n498,376,13.0\n498,377,12.5\n498,378,12.0\n498,379,11.5\n498,380,11.0\n498,381,10.5\n498,382,10.0\n498,383,9.5\n498,384,9.0\n498,385,8.5\n498,386,8.0\n498,387,7.5\n498,388,7.0\n498,389,6.5\n498,390,6.0\n498,391,5.5\n498,392,5.0\n498,393,4.5\n498,394,4.0\n498,395,3.5\n498,396,3.0\n498,397,2.5\n498,398,2.0\n498,399,2.5\n498,400,13.0\n498,401,12.5\n498,402,12.0\n498,403,11.5\n498,404,11.0\n498,405,10.5\n498,406,10.0\n498,407,9.5\n498,408,9.0\n498,409,8.5\n498,410,8.0\n498,411,7.5\n498,412,7.0\n498,413,6.5\n498,414,6.0\n498,415,5.5\n498,416,5.0\n498,417,4.5\n498,418,4.0\n498,419,3.5\n498,420,3.0\n498,421,2.5\n498,422,2.0\n498,423,1.5\n498,424,2.0\n498,425,12.5\n498,426,12.0\n498,427,11.5\n498,428,11.0\n498,429,10.5\n498,430,10.0\n498,431,9.5\n498,432,9.0\n498,433,8.5\n498,434,8.0\n498,435,7.5\n498,436,7.0\n498,437,6.5\n498,438,6.0\n498,439,5.5\n498,440,5.0\n498,441,4.5\n498,442,4.0\n498,443,3.5\n498,444,3.0\n498,445,2.5\n498,446,2.0\n498,447,1.5\n498,448,1.0\n498,449,1.5\n498,450,12.0\n498,451,11.5\n498,452,11.0\n498,453,10.5\n498,454,10.0\n498,455,9.5\n498,456,9.0\n498,457,8.5\n498,458,8.0\n498,459,7.5\n498,460,7.0\n498,461,6.5\n498,462,6.0\n498,463,5.5\n498,464,5.0\n498,465,4.5\n498,466,4.0\n498,467,3.5\n498,468,3.0\n498,469,2.5\n498,470,2.0\n498,471,1.5\n498,472,1.0\n498,473,0.5\n498,474,1.0\n498,475,11.5\n498,476,11.0\n498,477,10.5\n498,478,10.0\n498,479,9.5\n498,480,9.0\n498,481,8.5\n498,482,8.0\n498,483,7.5\n498,484,7.0\n498,485,6.5\n498,486,6.0\n498,487,5.5\n498,488,5.0\n498,489,4.5\n498,490,4.0\n498,491,3.5\n498,492,3.0\n498,493,2.5\n498,494,2.0\n498,495,1.5\n498,496,1.0\n498,497,0.5\n498,498,0\n498,499,0.5\n498,500,12.0\n498,501,11.5\n498,502,11.0\n498,503,10.5\n498,504,10.0\n498,505,9.5\n498,506,9.0\n498,507,8.5\n498,508,8.0\n498,509,7.5\n498,510,7.0\n498,511,6.5\n498,512,6.0\n498,513,5.5\n498,514,5.0\n498,515,4.5\n498,516,4.0\n498,517,3.5\n498,518,3.0\n498,519,2.5\n498,520,2.0\n498,521,1.5\n498,522,1.0\n498,523,0.5\n498,524,1.0\n498,525,12.5\n498,526,12.0\n498,527,11.5\n498,528,11.0\n498,529,10.5\n498,530,10.0\n498,531,9.5\n498,532,9.0\n498,533,8.5\n498,534,8.0\n498,535,7.5\n498,536,7.0\n498,537,6.5\n498,538,6.0\n498,539,5.5\n498,540,5.0\n498,541,4.5\n498,542,4.0\n498,543,3.5\n498,544,3.0\n498,545,2.5\n498,546,2.0\n498,547,1.5\n498,548,1.0\n498,549,1.5\n498,550,13.0\n498,551,12.5\n498,552,12.0\n498,553,11.5\n498,554,11.0\n498,555,10.5\n498,556,10.0\n498,557,9.5\n498,558,9.0\n498,559,8.5\n498,560,8.0\n498,561,7.5\n498,562,7.0\n498,563,6.5\n498,564,6.0\n498,565,5.5\n498,566,5.0\n498,567,4.5\n498,568,4.0\n498,569,3.5\n498,570,3.0\n498,571,2.5\n498,572,2.0\n498,573,1.5\n498,574,2.0\n498,575,13.5\n498,576,13.0\n498,577,12.5\n498,578,12.0\n498,579,11.5\n498,580,11.0\n498,581,10.5\n498,582,10.0\n498,583,9.5\n498,584,9.0\n498,585,8.5\n498,586,8.0\n498,587,7.5\n498,588,7.0\n498,589,6.5\n498,590,6.0\n498,591,5.5\n498,592,5.0\n498,593,4.5\n498,594,4.0\n498,595,3.5\n498,596,3.0\n498,597,2.5\n498,598,2.0\n498,599,2.5\n498,600,14.0\n498,601,13.5\n498,602,13.0\n498,603,12.5\n498,604,12.0\n498,605,11.5\n498,606,11.0\n498,607,10.5\n498,608,10.0\n498,609,9.5\n498,610,9.0\n498,611,8.5\n498,612,8.0\n498,613,7.5\n498,614,7.0\n498,615,6.5\n498,616,6.0\n498,617,5.5\n498,618,5.0\n498,619,4.5\n498,620,4.0\n498,621,3.5\n498,622,3.0\n498,623,2.5\n498,624,3.0\n499,0,21.5\n499,1,21.0\n499,2,20.5\n499,3,20.0\n499,4,19.5\n499,5,19.0\n499,6,18.5\n499,7,18.0\n499,8,17.5\n499,9,17.0\n499,10,16.5\n499,11,16.0\n499,12,15.5\n499,13,15.0\n499,14,14.5\n499,15,14.0\n499,16,13.5\n499,17,13.0\n499,18,12.5\n499,19,12.0\n499,20,11.5\n499,21,11.0\n499,22,10.5\n499,23,10.0\n499,24,9.5\n499,25,21.0\n499,26,20.5\n499,27,20.0\n499,28,19.5\n499,29,19.0\n499,30,18.5\n499,31,18.0\n499,32,17.5\n499,33,17.0\n499,34,16.5\n499,35,16.0\n499,36,15.5\n499,37,15.0\n499,38,14.5\n499,39,14.0\n499,40,13.5\n499,41,13.0\n499,42,12.5\n499,43,12.0\n499,44,11.5\n499,45,11.0\n499,46,10.5\n499,47,10.0\n499,48,9.5\n499,49,9.0\n499,50,20.5\n499,51,20.0\n499,52,19.5\n499,53,19.0\n499,54,18.5\n499,55,18.0\n499,56,17.5\n499,57,17.0\n499,58,16.5\n499,59,16.0\n499,60,15.5\n499,61,15.0\n499,62,14.5\n499,63,14.0\n499,64,13.5\n499,65,13.0\n499,66,12.5\n499,67,12.0\n499,68,11.5\n499,69,11.0\n499,70,10.5\n499,71,10.0\n499,72,9.5\n499,73,9.0\n499,74,8.5\n499,75,20.0\n499,76,19.5\n499,77,19.0\n499,78,18.5\n499,79,18.0\n499,80,17.5\n499,81,17.0\n499,82,16.5\n499,83,16.0\n499,84,15.5\n499,85,15.0\n499,86,14.5\n499,87,14.0\n499,88,13.5\n499,89,13.0\n499,90,12.5\n499,91,12.0\n499,92,11.5\n499,93,11.0\n499,94,10.5\n499,95,10.0\n499,96,9.5\n499,97,9.0\n499,98,8.5\n499,99,8.0\n499,100,19.5\n499,101,19.0\n499,102,18.5\n499,103,18.0\n499,104,17.5\n499,105,17.0\n499,106,16.5\n499,107,16.0\n499,108,15.5\n499,109,15.0\n499,110,14.5\n499,111,14.0\n499,112,13.5\n499,113,13.0\n499,114,12.5\n499,115,12.0\n499,116,11.5\n499,117,11.0\n499,118,10.5\n499,119,10.0\n499,120,9.5\n499,121,9.0\n499,122,8.5\n499,123,8.0\n499,124,7.5\n499,125,19.0\n499,126,18.5\n499,127,18.0\n499,128,17.5\n499,129,17.0\n499,130,16.5\n499,131,16.0\n499,132,15.5\n499,133,15.0\n499,134,14.5\n499,135,14.0\n499,136,13.5\n499,137,13.0\n499,138,12.5\n499,139,12.0\n499,140,11.5\n499,141,11.0\n499,142,10.5\n499,143,10.0\n499,144,9.5\n499,145,9.0\n499,146,8.5\n499,147,8.0\n499,148,7.5\n499,149,7.0\n499,150,18.5\n499,151,18.0\n499,152,17.5\n499,153,17.0\n499,154,16.5\n499,155,16.0\n499,156,15.5\n499,157,15.0\n499,158,14.5\n499,159,14.0\n499,160,13.5\n499,161,13.0\n499,162,12.5\n499,163,12.0\n499,164,11.5\n499,165,11.0\n499,166,10.5\n499,167,10.0\n499,168,9.5\n499,169,9.0\n499,170,8.5\n499,171,8.0\n499,172,7.5\n499,173,7.0\n499,174,6.5\n499,175,18.0\n499,176,17.5\n499,177,17.0\n499,178,16.5\n499,179,16.0\n499,180,15.5\n499,181,15.0\n499,182,14.5\n499,183,14.0\n499,184,13.5\n499,185,13.0\n499,186,12.5\n499,187,12.0\n499,188,11.5\n499,189,11.0\n499,190,10.5\n499,191,10.0\n499,192,9.5\n499,193,9.0\n499,194,8.5\n499,195,8.0\n499,196,7.5\n499,197,7.0\n499,198,6.5\n499,199,6.0\n499,200,17.5\n499,201,17.0\n499,202,16.5\n499,203,16.0\n499,204,15.5\n499,205,15.0\n499,206,14.5\n499,207,14.0\n499,208,13.5\n499,209,13.0\n499,210,12.5\n499,211,12.0\n499,212,11.5\n499,213,11.0\n499,214,10.5\n499,215,10.0\n499,216,9.5\n499,217,9.0\n499,218,8.5\n499,219,8.0\n499,220,7.5\n499,221,7.0\n499,222,6.5\n499,223,6.0\n499,224,5.5\n499,225,17.0\n499,226,16.5\n499,227,16.0\n499,228,15.5\n499,229,15.0\n499,230,14.5\n499,231,14.0\n499,232,13.5\n499,233,13.0\n499,234,12.5\n499,235,12.0\n499,236,11.5\n499,237,11.0\n499,238,10.5\n499,239,10.0\n499,240,9.5\n499,241,9.0\n499,242,8.5\n499,243,8.0\n499,244,7.5\n499,245,7.0\n499,246,6.5\n499,247,6.0\n499,248,5.5\n499,249,5.0\n499,250,16.5\n499,251,16.0\n499,252,15.5\n499,253,15.0\n499,254,14.5\n499,255,14.0\n499,256,13.5\n499,257,13.0\n499,258,12.5\n499,259,12.0\n499,260,11.5\n499,261,11.0\n499,262,10.5\n499,263,10.0\n499,264,9.5\n499,265,9.0\n499,266,8.5\n499,267,8.0\n499,268,7.5\n499,269,7.0\n499,270,6.5\n499,271,6.0\n499,272,5.5\n499,273,5.0\n499,274,4.5\n499,275,16.0\n499,276,15.5\n499,277,15.0\n499,278,14.5\n499,279,14.0\n499,280,13.5\n499,281,13.0\n499,282,12.5\n499,283,12.0\n499,284,11.5\n499,285,11.0\n499,286,10.5\n499,287,10.0\n499,288,9.5\n499,289,9.0\n499,290,8.5\n499,291,8.0\n499,292,7.5\n499,293,7.0\n499,294,6.5\n499,295,6.0\n499,296,5.5\n499,297,5.0\n499,298,4.5\n499,299,4.0\n499,300,15.5\n499,301,15.0\n499,302,14.5\n499,303,14.0\n499,304,13.5\n499,305,13.0\n499,306,12.5\n499,307,12.0\n499,308,11.5\n499,309,11.0\n499,310,10.5\n499,311,10.0\n499,312,9.5\n499,313,9.0\n499,314,8.5\n499,315,8.0\n499,316,7.5\n499,317,7.0\n499,318,6.5\n499,319,6.0\n499,320,5.5\n499,321,5.0\n499,322,4.5\n499,323,4.0\n499,324,3.5\n499,325,15.0\n499,326,14.5\n499,327,14.0\n499,328,13.5\n499,329,13.0\n499,330,12.5\n499,331,12.0\n499,332,11.5\n499,333,11.0\n499,334,10.5\n499,335,10.0\n499,336,9.5\n499,337,9.0\n499,338,8.5\n499,339,8.0\n499,340,7.5\n499,341,7.0\n499,342,6.5\n499,343,6.0\n499,344,5.5\n499,345,5.0\n499,346,4.5\n499,347,4.0\n499,348,3.5\n499,349,3.0\n499,350,14.5\n499,351,14.0\n499,352,13.5\n499,353,13.0\n499,354,12.5\n499,355,12.0\n499,356,11.5\n499,357,11.0\n499,358,10.5\n499,359,10.0\n499,360,9.5\n499,361,9.0\n499,362,8.5\n499,363,8.0\n499,364,7.5\n499,365,7.0\n499,366,6.5\n499,367,6.0\n499,368,5.5\n499,369,5.0\n499,370,4.5\n499,371,4.0\n499,372,3.5\n499,373,3.0\n499,374,2.5\n499,375,14.0\n499,376,13.5\n499,377,13.0\n499,378,12.5\n499,379,12.0\n499,380,11.5\n499,381,11.0\n499,382,10.5\n499,383,10.0\n499,384,9.5\n499,385,9.0\n499,386,8.5\n499,387,8.0\n499,388,7.5\n499,389,7.0\n499,390,6.5\n499,391,6.0\n499,392,5.5\n499,393,5.0\n499,394,4.5\n499,395,4.0\n499,396,3.5\n499,397,3.0\n499,398,2.5\n499,399,2.0\n499,400,13.5\n499,401,13.0\n499,402,12.5\n499,403,12.0\n499,404,11.5\n499,405,11.0\n499,406,10.5\n499,407,10.0\n499,408,9.5\n499,409,9.0\n499,410,8.5\n499,411,8.0\n499,412,7.5\n499,413,7.0\n499,414,6.5\n499,415,6.0\n499,416,5.5\n499,417,5.0\n499,418,4.5\n499,419,4.0\n499,420,3.5\n499,421,3.0\n499,422,2.5\n499,423,2.0\n499,424,1.5\n499,425,13.0\n499,426,12.5\n499,427,12.0\n499,428,11.5\n499,429,11.0\n499,430,10.5\n499,431,10.0\n499,432,9.5\n499,433,9.0\n499,434,8.5\n499,435,8.0\n499,436,7.5\n499,437,7.0\n499,438,6.5\n499,439,6.0\n499,440,5.5\n499,441,5.0\n499,442,4.5\n499,443,4.0\n499,444,3.5\n499,445,3.0\n499,446,2.5\n499,447,2.0\n499,448,1.5\n499,449,1.0\n499,450,12.5\n499,451,12.0\n499,452,11.5\n499,453,11.0\n499,454,10.5\n499,455,10.0\n499,456,9.5\n499,457,9.0\n499,458,8.5\n499,459,8.0\n499,460,7.5\n499,461,7.0\n499,462,6.5\n499,463,6.0\n499,464,5.5\n499,465,5.0\n499,466,4.5\n499,467,4.0\n499,468,3.5\n499,469,3.0\n499,470,2.5\n499,471,2.0\n499,472,1.5\n499,473,1.0\n499,474,0.5\n499,475,12.0\n499,476,11.5\n499,477,11.0\n499,478,10.5\n499,479,10.0\n499,480,9.5\n499,481,9.0\n499,482,8.5\n499,483,8.0\n499,484,7.5\n499,485,7.0\n499,486,6.5\n499,487,6.0\n499,488,5.5\n499,489,5.0\n499,490,4.5\n499,491,4.0\n499,492,3.5\n499,493,3.0\n499,494,2.5\n499,495,2.0\n499,496,1.5\n499,497,1.0\n499,498,0.5\n499,499,0\n499,500,12.5\n499,501,12.0\n499,502,11.5\n499,503,11.0\n499,504,10.5\n499,505,10.0\n499,506,9.5\n499,507,9.0\n499,508,8.5\n499,509,8.0\n499,510,7.5\n499,511,7.0\n499,512,6.5\n499,513,6.0\n499,514,5.5\n499,515,5.0\n499,516,4.5\n499,517,4.0\n499,518,3.5\n499,519,3.0\n499,520,2.5\n499,521,2.0\n499,522,1.5\n499,523,1.0\n499,524,0.5\n499,525,13.0\n499,526,12.5\n499,527,12.0\n499,528,11.5\n499,529,11.0\n499,530,10.5\n499,531,10.0\n499,532,9.5\n499,533,9.0\n499,534,8.5\n499,535,8.0\n499,536,7.5\n499,537,7.0\n499,538,6.5\n499,539,6.0\n499,540,5.5\n499,541,5.0\n499,542,4.5\n499,543,4.0\n499,544,3.5\n499,545,3.0\n499,546,2.5\n499,547,2.0\n499,548,1.5\n499,549,1.0\n499,550,13.5\n499,551,13.0\n499,552,12.5\n499,553,12.0\n499,554,11.5\n499,555,11.0\n499,556,10.5\n499,557,10.0\n499,558,9.5\n499,559,9.0\n499,560,8.5\n499,561,8.0\n499,562,7.5\n499,563,7.0\n499,564,6.5\n499,565,6.0\n499,566,5.5\n499,567,5.0\n499,568,4.5\n499,569,4.0\n499,570,3.5\n499,571,3.0\n499,572,2.5\n499,573,2.0\n499,574,1.5\n499,575,14.0\n499,576,13.5\n499,577,13.0\n499,578,12.5\n499,579,12.0\n499,580,11.5\n499,581,11.0\n499,582,10.5\n499,583,10.0\n499,584,9.5\n499,585,9.0\n499,586,8.5\n499,587,8.0\n499,588,7.5\n499,589,7.0\n499,590,6.5\n499,591,6.0\n499,592,5.5\n499,593,5.0\n499,594,4.5\n499,595,4.0\n499,596,3.5\n499,597,3.0\n499,598,2.5\n499,599,2.0\n499,600,14.5\n499,601,14.0\n499,602,13.5\n499,603,13.0\n499,604,12.5\n499,605,12.0\n499,606,11.5\n499,607,11.0\n499,608,10.5\n499,609,10.0\n499,610,9.5\n499,611,9.0\n499,612,8.5\n499,613,8.0\n499,614,7.5\n499,615,7.0\n499,616,6.5\n499,617,6.0\n499,618,5.5\n499,619,5.0\n499,620,4.5\n499,621,4.0\n499,622,3.5\n499,623,3.0\n499,624,2.5\n500,0,10.0\n500,1,10.5\n500,2,11.0\n500,3,11.5\n500,4,12.0\n500,5,12.5\n500,6,13.0\n500,7,13.5\n500,8,14.0\n500,9,14.5\n500,10,15.0\n500,11,15.5\n500,12,16.0\n500,13,16.5\n500,14,17.0\n500,15,17.5\n500,16,18.0\n500,17,18.5\n500,18,19.0\n500,19,19.5\n500,20,20.0\n500,21,20.5\n500,22,21.0\n500,23,21.5\n500,24,22.0\n500,25,9.5\n500,26,10.0\n500,27,10.5\n500,28,11.0\n500,29,11.5\n500,30,12.0\n500,31,12.5\n500,32,13.0\n500,33,13.5\n500,34,14.0\n500,35,14.5\n500,36,15.0\n500,37,15.5\n500,38,16.0\n500,39,16.5\n500,40,17.0\n500,41,17.5\n500,42,18.0\n500,43,18.5\n500,44,19.0\n500,45,19.5\n500,46,20.0\n500,47,20.5\n500,48,21.0\n500,49,21.5\n500,50,9.0\n500,51,9.5\n500,52,10.0\n500,53,10.5\n500,54,11.0\n500,55,11.5\n500,56,12.0\n500,57,12.5\n500,58,13.0\n500,59,13.5\n500,60,14.0\n500,61,14.5\n500,62,15.0\n500,63,15.5\n500,64,16.0\n500,65,16.5\n500,66,17.0\n500,67,17.5\n500,68,18.0\n500,69,18.5\n500,70,19.0\n500,71,19.5\n500,72,20.0\n500,73,20.5\n500,74,21.0\n500,75,8.5\n500,76,9.0\n500,77,9.5\n500,78,10.0\n500,79,10.5\n500,80,11.0\n500,81,11.5\n500,82,12.0\n500,83,12.5\n500,84,13.0\n500,85,13.5\n500,86,14.0\n500,87,14.5\n500,88,15.0\n500,89,15.5\n500,90,16.0\n500,91,16.5\n500,92,17.0\n500,93,17.5\n500,94,18.0\n500,95,18.5\n500,96,19.0\n500,97,19.5\n500,98,20.0\n500,99,20.5\n500,100,8.0\n500,101,8.5\n500,102,9.0\n500,103,9.5\n500,104,10.0\n500,105,10.5\n500,106,11.0\n500,107,11.5\n500,108,12.0\n500,109,12.5\n500,110,13.0\n500,111,13.5\n500,112,14.0\n500,113,14.5\n500,114,15.0\n500,115,15.5\n500,116,16.0\n500,117,16.5\n500,118,17.0\n500,119,17.5\n500,120,18.0\n500,121,18.5\n500,122,19.0\n500,123,19.5\n500,124,20.0\n500,125,7.5\n500,126,8.0\n500,127,8.5\n500,128,9.0\n500,129,9.5\n500,130,10.0\n500,131,10.5\n500,132,11.0\n500,133,11.5\n500,134,12.0\n500,135,12.5\n500,136,13.0\n500,137,13.5\n500,138,14.0\n500,139,14.5\n500,140,15.0\n500,141,15.5\n500,142,16.0\n500,143,16.5\n500,144,17.0\n500,145,17.5\n500,146,18.0\n500,147,18.5\n500,148,19.0\n500,149,19.5\n500,150,7.0\n500,151,7.5\n500,152,8.0\n500,153,8.5\n500,154,9.0\n500,155,9.5\n500,156,10.0\n500,157,10.5\n500,158,11.0\n500,159,11.5\n500,160,12.0\n500,161,12.5\n500,162,13.0\n500,163,13.5\n500,164,14.0\n500,165,14.5\n500,166,15.0\n500,167,15.5\n500,168,16.0\n500,169,16.5\n500,170,17.0\n500,171,17.5\n500,172,18.0\n500,173,18.5\n500,174,19.0\n500,175,6.5\n500,176,7.0\n500,177,7.5\n500,178,8.0\n500,179,8.5\n500,180,9.0\n500,181,9.5\n500,182,10.0\n500,183,10.5\n500,184,11.0\n500,185,11.5\n500,186,12.0\n500,187,12.5\n500,188,13.0\n500,189,13.5\n500,190,14.0\n500,191,14.5\n500,192,15.0\n500,193,15.5\n500,194,16.0\n500,195,16.5\n500,196,17.0\n500,197,17.5\n500,198,18.0\n500,199,18.5\n500,200,6.0\n500,201,6.5\n500,202,7.0\n500,203,7.5\n500,204,8.0\n500,205,8.5\n500,206,9.0\n500,207,9.5\n500,208,10.0\n500,209,10.5\n500,210,11.0\n500,211,11.5\n500,212,12.0\n500,213,12.5\n500,214,13.0\n500,215,13.5\n500,216,14.0\n500,217,14.5\n500,218,15.0\n500,219,15.5\n500,220,16.0\n500,221,16.5\n500,222,17.0\n500,223,17.5\n500,224,18.0\n500,225,5.5\n500,226,6.0\n500,227,6.5\n500,228,7.0\n500,229,7.5\n500,230,8.0\n500,231,8.5\n500,232,9.0\n500,233,9.5\n500,234,10.0\n500,235,10.5\n500,236,11.0\n500,237,11.5\n500,238,12.0\n500,239,12.5\n500,240,13.0\n500,241,13.5\n500,242,14.0\n500,243,14.5\n500,244,15.0\n500,245,15.5\n500,246,16.0\n500,247,16.5\n500,248,17.0\n500,249,17.5\n500,250,5.0\n500,251,5.5\n500,252,6.0\n500,253,6.5\n500,254,7.0\n500,255,7.5\n500,256,8.0\n500,257,8.5\n500,258,9.0\n500,259,9.5\n500,260,10.0\n500,261,10.5\n500,262,11.0\n500,263,11.5\n500,264,12.0\n500,265,12.5\n500,266,13.0\n500,267,13.5\n500,268,14.0\n500,269,14.5\n500,270,15.0\n500,271,15.5\n500,272,16.0\n500,273,16.5\n500,274,17.0\n500,275,4.5\n500,276,5.0\n500,277,5.5\n500,278,6.0\n500,279,6.5\n500,280,7.0\n500,281,7.5\n500,282,8.0\n500,283,8.5\n500,284,9.0\n500,285,9.5\n500,286,10.0\n500,287,10.5\n500,288,11.0\n500,289,11.5\n500,290,12.0\n500,291,12.5\n500,292,13.0\n500,293,13.5\n500,294,14.0\n500,295,14.5\n500,296,15.0\n500,297,15.5\n500,298,16.0\n500,299,16.5\n500,300,4.0\n500,301,4.5\n500,302,5.0\n500,303,5.5\n500,304,6.0\n500,305,6.5\n500,306,7.0\n500,307,7.5\n500,308,8.0\n500,309,8.5\n500,310,9.0\n500,311,9.5\n500,312,10.0\n500,313,10.5\n500,314,11.0\n500,315,11.5\n500,316,12.0\n500,317,12.5\n500,318,13.0\n500,319,13.5\n500,320,14.0\n500,321,14.5\n500,322,15.0\n500,323,15.5\n500,324,16.0\n500,325,3.5\n500,326,4.0\n500,327,4.5\n500,328,5.0\n500,329,5.5\n500,330,6.0\n500,331,6.5\n500,332,7.0\n500,333,7.5\n500,334,8.0\n500,335,8.5\n500,336,9.0\n500,337,9.5\n500,338,10.0\n500,339,10.5\n500,340,11.0\n500,341,11.5\n500,342,12.0\n500,343,12.5\n500,344,13.0\n500,345,13.5\n500,346,14.0\n500,347,14.5\n500,348,15.0\n500,349,15.5\n500,350,3.0\n500,351,3.5\n500,352,4.0\n500,353,4.5\n500,354,5.0\n500,355,5.5\n500,356,6.0\n500,357,6.5\n500,358,7.0\n500,359,7.5\n500,360,8.0\n500,361,8.5\n500,362,9.0\n500,363,9.5\n500,364,10.0\n500,365,10.5\n500,366,11.0\n500,367,11.5\n500,368,12.0\n500,369,12.5\n500,370,13.0\n500,371,13.5\n500,372,14.0\n500,373,14.5\n500,374,15.0\n500,375,2.5\n500,376,3.0\n500,377,3.5\n500,378,4.0\n500,379,4.5\n500,380,5.0\n500,381,5.5\n500,382,6.0\n500,383,6.5\n500,384,7.0\n500,385,7.5\n500,386,8.0\n500,387,8.5\n500,388,9.0\n500,389,9.5\n500,390,10.0\n500,391,10.5\n500,392,11.0\n500,393,11.5\n500,394,12.0\n500,395,12.5\n500,396,13.0\n500,397,13.5\n500,398,14.0\n500,399,14.5\n500,400,2.0\n500,401,2.5\n500,402,3.0\n500,403,3.5\n500,404,4.0\n500,405,4.5\n500,406,5.0\n500,407,5.5\n500,408,6.0\n500,409,6.5\n500,410,7.0\n500,411,7.5\n500,412,8.0\n500,413,8.5\n500,414,9.0\n500,415,9.5\n500,416,10.0\n500,417,10.5\n500,418,11.0\n500,419,11.5\n500,420,12.0\n500,421,12.5\n500,422,13.0\n500,423,13.5\n500,424,14.0\n500,425,1.5\n500,426,2.0\n500,427,2.5\n500,428,3.0\n500,429,3.5\n500,430,4.0\n500,431,4.5\n500,432,5.0\n500,433,5.5\n500,434,6.0\n500,435,6.5\n500,436,7.0\n500,437,7.5\n500,438,8.0\n500,439,8.5\n500,440,9.0\n500,441,9.5\n500,442,10.0\n500,443,10.5\n500,444,11.0\n500,445,11.5\n500,446,12.0\n500,447,12.5\n500,448,13.0\n500,449,13.5\n500,450,1.0\n500,451,1.5\n500,452,2.0\n500,453,2.5\n500,454,3.0\n500,455,3.5\n500,456,4.0\n500,457,4.5\n500,458,5.0\n500,459,5.5\n500,460,6.0\n500,461,6.5\n500,462,7.0\n500,463,7.5\n500,464,8.0\n500,465,8.5\n500,466,9.0\n500,467,9.5\n500,468,10.0\n500,469,10.5\n500,470,11.0\n500,471,11.5\n500,472,12.0\n500,473,12.5\n500,474,13.0\n500,475,0.5\n500,476,1.0\n500,477,1.5\n500,478,2.0\n500,479,2.5\n500,480,3.0\n500,481,3.5\n500,482,4.0\n500,483,4.5\n500,484,5.0\n500,485,5.5\n500,486,6.0\n500,487,6.5\n500,488,7.0\n500,489,7.5\n500,490,8.0\n500,491,8.5\n500,492,9.0\n500,493,9.5\n500,494,10.0\n500,495,10.5\n500,496,11.0\n500,497,11.5\n500,498,12.0\n500,499,12.5\n500,500,0\n500,501,0.5\n500,502,1.0\n500,503,1.5\n500,504,2.0\n500,505,2.5\n500,506,3.0\n500,507,3.5\n500,508,4.0\n500,509,4.5\n500,510,5.0\n500,511,5.5\n500,512,6.0\n500,513,6.5\n500,514,7.0\n500,515,7.5\n500,516,8.0\n500,517,8.5\n500,518,9.0\n500,519,9.5\n500,520,10.0\n500,521,10.5\n500,522,11.0\n500,523,11.5\n500,524,12.0\n500,525,0.5\n500,526,1.0\n500,527,1.5\n500,528,2.0\n500,529,2.5\n500,530,3.0\n500,531,3.5\n500,532,4.0\n500,533,4.5\n500,534,5.0\n500,535,5.5\n500,536,6.0\n500,537,6.5\n500,538,7.0\n500,539,7.5\n500,540,8.0\n500,541,8.5\n500,542,9.0\n500,543,9.5\n500,544,10.0\n500,545,10.5\n500,546,11.0\n500,547,11.5\n500,548,12.0\n500,549,12.5\n500,550,1.0\n500,551,1.5\n500,552,2.0\n500,553,2.5\n500,554,3.0\n500,555,3.5\n500,556,4.0\n500,557,4.5\n500,558,5.0\n500,559,5.5\n500,560,6.0\n500,561,6.5\n500,562,7.0\n500,563,7.5\n500,564,8.0\n500,565,8.5\n500,566,9.0\n500,567,9.5\n500,568,10.0\n500,569,10.5\n500,570,11.0\n500,571,11.5\n500,572,12.0\n500,573,12.5\n500,574,13.0\n500,575,1.5\n500,576,2.0\n500,577,2.5\n500,578,3.0\n500,579,3.5\n500,580,4.0\n500,581,4.5\n500,582,5.0\n500,583,5.5\n500,584,6.0\n500,585,6.5\n500,586,7.0\n500,587,7.5\n500,588,8.0\n500,589,8.5\n500,590,9.0\n500,591,9.5\n500,592,10.0\n500,593,10.5\n500,594,11.0\n500,595,11.5\n500,596,12.0\n500,597,12.5\n500,598,13.0\n500,599,13.5\n500,600,2.0\n500,601,2.5\n500,602,3.0\n500,603,3.5\n500,604,4.0\n500,605,4.5\n500,606,5.0\n500,607,5.5\n500,608,6.0\n500,609,6.5\n500,610,7.0\n500,611,7.5\n500,612,8.0\n500,613,8.5\n500,614,9.0\n500,615,9.5\n500,616,10.0\n500,617,10.5\n500,618,11.0\n500,619,11.5\n500,620,12.0\n500,621,12.5\n500,622,13.0\n500,623,13.5\n500,624,14.0\n501,0,10.5\n501,1,10.0\n501,2,10.5\n501,3,11.0\n501,4,11.5\n501,5,12.0\n501,6,12.5\n501,7,13.0\n501,8,13.5\n501,9,14.0\n501,10,14.5\n501,11,15.0\n501,12,15.5\n501,13,16.0\n501,14,16.5\n501,15,17.0\n501,16,17.5\n501,17,18.0\n501,18,18.5\n501,19,19.0\n501,20,19.5\n501,21,20.0\n501,22,20.5\n501,23,21.0\n501,24,21.5\n501,25,10.0\n501,26,9.5\n501,27,10.0\n501,28,10.5\n501,29,11.0\n501,30,11.5\n501,31,12.0\n501,32,12.5\n501,33,13.0\n501,34,13.5\n501,35,14.0\n501,36,14.5\n501,37,15.0\n501,38,15.5\n501,39,16.0\n501,40,16.5\n501,41,17.0\n501,42,17.5\n501,43,18.0\n501,44,18.5\n501,45,19.0\n501,46,19.5\n501,47,20.0\n501,48,20.5\n501,49,21.0\n501,50,9.5\n501,51,9.0\n501,52,9.5\n501,53,10.0\n501,54,10.5\n501,55,11.0\n501,56,11.5\n501,57,12.0\n501,58,12.5\n501,59,13.0\n501,60,13.5\n501,61,14.0\n501,62,14.5\n501,63,15.0\n501,64,15.5\n501,65,16.0\n501,66,16.5\n501,67,17.0\n501,68,17.5\n501,69,18.0\n501,70,18.5\n501,71,19.0\n501,72,19.5\n501,73,20.0\n501,74,20.5\n501,75,9.0\n501,76,8.5\n501,77,9.0\n501,78,9.5\n501,79,10.0\n501,80,10.5\n501,81,11.0\n501,82,11.5\n501,83,12.0\n501,84,12.5\n501,85,13.0\n501,86,13.5\n501,87,14.0\n501,88,14.5\n501,89,15.0\n501,90,15.5\n501,91,16.0\n501,92,16.5\n501,93,17.0\n501,94,17.5\n501,95,18.0\n501,96,18.5\n501,97,19.0\n501,98,19.5\n501,99,20.0\n501,100,8.5\n501,101,8.0\n501,102,8.5\n501,103,9.0\n501,104,9.5\n501,105,10.0\n501,106,10.5\n501,107,11.0\n501,108,11.5\n501,109,12.0\n501,110,12.5\n501,111,13.0\n501,112,13.5\n501,113,14.0\n501,114,14.5\n501,115,15.0\n501,116,15.5\n501,117,16.0\n501,118,16.5\n501,119,17.0\n501,120,17.5\n501,121,18.0\n501,122,18.5\n501,123,19.0\n501,124,19.5\n501,125,8.0\n501,126,7.5\n501,127,8.0\n501,128,8.5\n501,129,9.0\n501,130,9.5\n501,131,10.0\n501,132,10.5\n501,133,11.0\n501,134,11.5\n501,135,12.0\n501,136,12.5\n501,137,13.0\n501,138,13.5\n501,139,14.0\n501,140,14.5\n501,141,15.0\n501,142,15.5\n501,143,16.0\n501,144,16.5\n501,145,17.0\n501,146,17.5\n501,147,18.0\n501,148,18.5\n501,149,19.0\n501,150,7.5\n501,151,7.0\n501,152,7.5\n501,153,8.0\n501,154,8.5\n501,155,9.0\n501,156,9.5\n501,157,10.0\n501,158,10.5\n501,159,11.0\n501,160,11.5\n501,161,12.0\n501,162,12.5\n501,163,13.0\n501,164,13.5\n501,165,14.0\n501,166,14.5\n501,167,15.0\n501,168,15.5\n501,169,16.0\n501,170,16.5\n501,171,17.0\n501,172,17.5\n501,173,18.0\n501,174,18.5\n501,175,7.0\n501,176,6.5\n501,177,7.0\n501,178,7.5\n501,179,8.0\n501,180,8.5\n501,181,9.0\n501,182,9.5\n501,183,10.0\n501,184,10.5\n501,185,11.0\n501,186,11.5\n501,187,12.0\n501,188,12.5\n501,189,13.0\n501,190,13.5\n501,191,14.0\n501,192,14.5\n501,193,15.0\n501,194,15.5\n501,195,16.0\n501,196,16.5\n501,197,17.0\n501,198,17.5\n501,199,18.0\n501,200,6.5\n501,201,6.0\n501,202,6.5\n501,203,7.0\n501,204,7.5\n501,205,8.0\n501,206,8.5\n501,207,9.0\n501,208,9.5\n501,209,10.0\n501,210,10.5\n501,211,11.0\n501,212,11.5\n501,213,12.0\n501,214,12.5\n501,215,13.0\n501,216,13.5\n501,217,14.0\n501,218,14.5\n501,219,15.0\n501,220,15.5\n501,221,16.0\n501,222,16.5\n501,223,17.0\n501,224,17.5\n501,225,6.0\n501,226,5.5\n501,227,6.0\n501,228,6.5\n501,229,7.0\n501,230,7.5\n501,231,8.0\n501,232,8.5\n501,233,9.0\n501,234,9.5\n501,235,10.0\n501,236,10.5\n501,237,11.0\n501,238,11.5\n501,239,12.0\n501,240,12.5\n501,241,13.0\n501,242,13.5\n501,243,14.0\n501,244,14.5\n501,245,15.0\n501,246,15.5\n501,247,16.0\n501,248,16.5\n501,249,17.0\n501,250,5.5\n501,251,5.0\n501,252,5.5\n501,253,6.0\n501,254,6.5\n501,255,7.0\n501,256,7.5\n501,257,8.0\n501,258,8.5\n501,259,9.0\n501,260,9.5\n501,261,10.0\n501,262,10.5\n501,263,11.0\n501,264,11.5\n501,265,12.0\n501,266,12.5\n501,267,13.0\n501,268,13.5\n501,269,14.0\n501,270,14.5\n501,271,15.0\n501,272,15.5\n501,273,16.0\n501,274,16.5\n501,275,5.0\n501,276,4.5\n501,277,5.0\n501,278,5.5\n501,279,6.0\n501,280,6.5\n501,281,7.0\n501,282,7.5\n501,283,8.0\n501,284,8.5\n501,285,9.0\n501,286,9.5\n501,287,10.0\n501,288,10.5\n501,289,11.0\n501,290,11.5\n501,291,12.0\n501,292,12.5\n501,293,13.0\n501,294,13.5\n501,295,14.0\n501,296,14.5\n501,297,15.0\n501,298,15.5\n501,299,16.0\n501,300,4.5\n501,301,4.0\n501,302,4.5\n501,303,5.0\n501,304,5.5\n501,305,6.0\n501,306,6.5\n501,307,7.0\n501,308,7.5\n501,309,8.0\n501,310,8.5\n501,311,9.0\n501,312,9.5\n501,313,10.0\n501,314,10.5\n501,315,11.0\n501,316,11.5\n501,317,12.0\n501,318,12.5\n501,319,13.0\n501,320,13.5\n501,321,14.0\n501,322,14.5\n501,323,15.0\n501,324,15.5\n501,325,4.0\n501,326,3.5\n501,327,4.0\n501,328,4.5\n501,329,5.0\n501,330,5.5\n501,331,6.0\n501,332,6.5\n501,333,7.0\n501,334,7.5\n501,335,8.0\n501,336,8.5\n501,337,9.0\n501,338,9.5\n501,339,10.0\n501,340,10.5\n501,341,11.0\n501,342,11.5\n501,343,12.0\n501,344,12.5\n501,345,13.0\n501,346,13.5\n501,347,14.0\n501,348,14.5\n501,349,15.0\n501,350,3.5\n501,351,3.0\n501,352,3.5\n501,353,4.0\n501,354,4.5\n501,355,5.0\n501,356,5.5\n501,357,6.0\n501,358,6.5\n501,359,7.0\n501,360,7.5\n501,361,8.0\n501,362,8.5\n501,363,9.0\n501,364,9.5\n501,365,10.0\n501,366,10.5\n501,367,11.0\n501,368,11.5\n501,369,12.0\n501,370,12.5\n501,371,13.0\n501,372,13.5\n501,373,14.0\n501,374,14.5\n501,375,3.0\n501,376,2.5\n501,377,3.0\n501,378,3.5\n501,379,4.0\n501,380,4.5\n501,381,5.0\n501,382,5.5\n501,383,6.0\n501,384,6.5\n501,385,7.0\n501,386,7.5\n501,387,8.0\n501,388,8.5\n501,389,9.0\n501,390,9.5\n501,391,10.0\n501,392,10.5\n501,393,11.0\n501,394,11.5\n501,395,12.0\n501,396,12.5\n501,397,13.0\n501,398,13.5\n501,399,14.0\n501,400,2.5\n501,401,2.0\n501,402,2.5\n501,403,3.0\n501,404,3.5\n501,405,4.0\n501,406,4.5\n501,407,5.0\n501,408,5.5\n501,409,6.0\n501,410,6.5\n501,411,7.0\n501,412,7.5\n501,413,8.0\n501,414,8.5\n501,415,9.0\n501,416,9.5\n501,417,10.0\n501,418,10.5\n501,419,11.0\n501,420,11.5\n501,421,12.0\n501,422,12.5\n501,423,13.0\n501,424,13.5\n501,425,2.0\n501,426,1.5\n501,427,2.0\n501,428,2.5\n501,429,3.0\n501,430,3.5\n501,431,4.0\n501,432,4.5\n501,433,5.0\n501,434,5.5\n501,435,6.0\n501,436,6.5\n501,437,7.0\n501,438,7.5\n501,439,8.0\n501,440,8.5\n501,441,9.0\n501,442,9.5\n501,443,10.0\n501,444,10.5\n501,445,11.0\n501,446,11.5\n501,447,12.0\n501,448,12.5\n501,449,13.0\n501,450,1.5\n501,451,1.0\n501,452,1.5\n501,453,2.0\n501,454,2.5\n501,455,3.0\n501,456,3.5\n501,457,4.0\n501,458,4.5\n501,459,5.0\n501,460,5.5\n501,461,6.0\n501,462,6.5\n501,463,7.0\n501,464,7.5\n501,465,8.0\n501,466,8.5\n501,467,9.0\n501,468,9.5\n501,469,10.0\n501,470,10.5\n501,471,11.0\n501,472,11.5\n501,473,12.0\n501,474,12.5\n501,475,1.0\n501,476,0.5\n501,477,1.0\n501,478,1.5\n501,479,2.0\n501,480,2.5\n501,481,3.0\n501,482,3.5\n501,483,4.0\n501,484,4.5\n501,485,5.0\n501,486,5.5\n501,487,6.0\n501,488,6.5\n501,489,7.0\n501,490,7.5\n501,491,8.0\n501,492,8.5\n501,493,9.0\n501,494,9.5\n501,495,10.0\n501,496,10.5\n501,497,11.0\n501,498,11.5\n501,499,12.0\n501,500,0.5\n501,501,0\n501,502,0.5\n501,503,1.0\n501,504,1.5\n501,505,2.0\n501,506,2.5\n501,507,3.0\n501,508,3.5\n501,509,4.0\n501,510,4.5\n501,511,5.0\n501,512,5.5\n501,513,6.0\n501,514,6.5\n501,515,7.0\n501,516,7.5\n501,517,8.0\n501,518,8.5\n501,519,9.0\n501,520,9.5\n501,521,10.0\n501,522,10.5\n501,523,11.0\n501,524,11.5\n501,525,1.0\n501,526,0.5\n501,527,1.0\n501,528,1.5\n501,529,2.0\n501,530,2.5\n501,531,3.0\n501,532,3.5\n501,533,4.0\n501,534,4.5\n501,535,5.0\n501,536,5.5\n501,537,6.0\n501,538,6.5\n501,539,7.0\n501,540,7.5\n501,541,8.0\n501,542,8.5\n501,543,9.0\n501,544,9.5\n501,545,10.0\n501,546,10.5\n501,547,11.0\n501,548,11.5\n501,549,12.0\n501,550,1.5\n501,551,1.0\n501,552,1.5\n501,553,2.0\n501,554,2.5\n501,555,3.0\n501,556,3.5\n501,557,4.0\n501,558,4.5\n501,559,5.0\n501,560,5.5\n501,561,6.0\n501,562,6.5\n501,563,7.0\n501,564,7.5\n501,565,8.0\n501,566,8.5\n501,567,9.0\n501,568,9.5\n501,569,10.0\n501,570,10.5\n501,571,11.0\n501,572,11.5\n501,573,12.0\n501,574,12.5\n501,575,2.0\n501,576,1.5\n501,577,2.0\n501,578,2.5\n501,579,3.0\n501,580,3.5\n501,581,4.0\n501,582,4.5\n501,583,5.0\n501,584,5.5\n501,585,6.0\n501,586,6.5\n501,587,7.0\n501,588,7.5\n501,589,8.0\n501,590,8.5\n501,591,9.0\n501,592,9.5\n501,593,10.0\n501,594,10.5\n501,595,11.0\n501,596,11.5\n501,597,12.0\n501,598,12.5\n501,599,13.0\n501,600,2.5\n501,601,2.0\n501,602,2.5\n501,603,3.0\n501,604,3.5\n501,605,4.0\n501,606,4.5\n501,607,5.0\n501,608,5.5\n501,609,6.0\n501,610,6.5\n501,611,7.0\n501,612,7.5\n501,613,8.0\n501,614,8.5\n501,615,9.0\n501,616,9.5\n501,617,10.0\n501,618,10.5\n501,619,11.0\n501,620,11.5\n501,621,12.0\n501,622,12.5\n501,623,13.0\n501,624,13.5\n502,0,11.0\n502,1,10.5\n502,2,10.0\n502,3,10.5\n502,4,11.0\n502,5,11.5\n502,6,12.0\n502,7,12.5\n502,8,13.0\n502,9,13.5\n502,10,14.0\n502,11,14.5\n502,12,15.0\n502,13,15.5\n502,14,16.0\n502,15,16.5\n502,16,17.0\n502,17,17.5\n502,18,18.0\n502,19,18.5\n502,20,19.0\n502,21,19.5\n502,22,20.0\n502,23,20.5\n502,24,21.0\n502,25,10.5\n502,26,10.0\n502,27,9.5\n502,28,10.0\n502,29,10.5\n502,30,11.0\n502,31,11.5\n502,32,12.0\n502,33,12.5\n502,34,13.0\n502,35,13.5\n502,36,14.0\n502,37,14.5\n502,38,15.0\n502,39,15.5\n502,40,16.0\n502,41,16.5\n502,42,17.0\n502,43,17.5\n502,44,18.0\n502,45,18.5\n502,46,19.0\n502,47,19.5\n502,48,20.0\n502,49,20.5\n502,50,10.0\n502,51,9.5\n502,52,9.0\n502,53,9.5\n502,54,10.0\n502,55,10.5\n502,56,11.0\n502,57,11.5\n502,58,12.0\n502,59,12.5\n502,60,13.0\n502,61,13.5\n502,62,14.0\n502,63,14.5\n502,64,15.0\n502,65,15.5\n502,66,16.0\n502,67,16.5\n502,68,17.0\n502,69,17.5\n502,70,18.0\n502,71,18.5\n502,72,19.0\n502,73,19.5\n502,74,20.0\n502,75,9.5\n502,76,9.0\n502,77,8.5\n502,78,9.0\n502,79,9.5\n502,80,10.0\n502,81,10.5\n502,82,11.0\n502,83,11.5\n502,84,12.0\n502,85,12.5\n502,86,13.0\n502,87,13.5\n502,88,14.0\n502,89,14.5\n502,90,15.0\n502,91,15.5\n502,92,16.0\n502,93,16.5\n502,94,17.0\n502,95,17.5\n502,96,18.0\n502,97,18.5\n502,98,19.0\n502,99,19.5\n502,100,9.0\n502,101,8.5\n502,102,8.0\n502,103,8.5\n502,104,9.0\n502,105,9.5\n502,106,10.0\n502,107,10.5\n502,108,11.0\n502,109,11.5\n502,110,12.0\n502,111,12.5\n502,112,13.0\n502,113,13.5\n502,114,14.0\n502,115,14.5\n502,116,15.0\n502,117,15.5\n502,118,16.0\n502,119,16.5\n502,120,17.0\n502,121,17.5\n502,122,18.0\n502,123,18.5\n502,124,19.0\n502,125,8.5\n502,126,8.0\n502,127,7.5\n502,128,8.0\n502,129,8.5\n502,130,9.0\n502,131,9.5\n502,132,10.0\n502,133,10.5\n502,134,11.0\n502,135,11.5\n502,136,12.0\n502,137,12.5\n502,138,13.0\n502,139,13.5\n502,140,14.0\n502,141,14.5\n502,142,15.0\n502,143,15.5\n502,144,16.0\n502,145,16.5\n502,146,17.0\n502,147,17.5\n502,148,18.0\n502,149,18.5\n502,150,8.0\n502,151,7.5\n502,152,7.0\n502,153,7.5\n502,154,8.0\n502,155,8.5\n502,156,9.0\n502,157,9.5\n502,158,10.0\n502,159,10.5\n502,160,11.0\n502,161,11.5\n502,162,12.0\n502,163,12.5\n502,164,13.0\n502,165,13.5\n502,166,14.0\n502,167,14.5\n502,168,15.0\n502,169,15.5\n502,170,16.0\n502,171,16.5\n502,172,17.0\n502,173,17.5\n502,174,18.0\n502,175,7.5\n502,176,7.0\n502,177,6.5\n502,178,7.0\n502,179,7.5\n502,180,8.0\n502,181,8.5\n502,182,9.0\n502,183,9.5\n502,184,10.0\n502,185,10.5\n502,186,11.0\n502,187,11.5\n502,188,12.0\n502,189,12.5\n502,190,13.0\n502,191,13.5\n502,192,14.0\n502,193,14.5\n502,194,15.0\n502,195,15.5\n502,196,16.0\n502,197,16.5\n502,198,17.0\n502,199,17.5\n502,200,7.0\n502,201,6.5\n502,202,6.0\n502,203,6.5\n502,204,7.0\n502,205,7.5\n502,206,8.0\n502,207,8.5\n502,208,9.0\n502,209,9.5\n502,210,10.0\n502,211,10.5\n502,212,11.0\n502,213,11.5\n502,214,12.0\n502,215,12.5\n502,216,13.0\n502,217,13.5\n502,218,14.0\n502,219,14.5\n502,220,15.0\n502,221,15.5\n502,222,16.0\n502,223,16.5\n502,224,17.0\n502,225,6.5\n502,226,6.0\n502,227,5.5\n502,228,6.0\n502,229,6.5\n502,230,7.0\n502,231,7.5\n502,232,8.0\n502,233,8.5\n502,234,9.0\n502,235,9.5\n502,236,10.0\n502,237,10.5\n502,238,11.0\n502,239,11.5\n502,240,12.0\n502,241,12.5\n502,242,13.0\n502,243,13.5\n502,244,14.0\n502,245,14.5\n502,246,15.0\n502,247,15.5\n502,248,16.0\n502,249,16.5\n502,250,6.0\n502,251,5.5\n502,252,5.0\n502,253,5.5\n502,254,6.0\n502,255,6.5\n502,256,7.0\n502,257,7.5\n502,258,8.0\n502,259,8.5\n502,260,9.0\n502,261,9.5\n502,262,10.0\n502,263,10.5\n502,264,11.0\n502,265,11.5\n502,266,12.0\n502,267,12.5\n502,268,13.0\n502,269,13.5\n502,270,14.0\n502,271,14.5\n502,272,15.0\n502,273,15.5\n502,274,16.0\n502,275,5.5\n502,276,5.0\n502,277,4.5\n502,278,5.0\n502,279,5.5\n502,280,6.0\n502,281,6.5\n502,282,7.0\n502,283,7.5\n502,284,8.0\n502,285,8.5\n502,286,9.0\n502,287,9.5\n502,288,10.0\n502,289,10.5\n502,290,11.0\n502,291,11.5\n502,292,12.0\n502,293,12.5\n502,294,13.0\n502,295,13.5\n502,296,14.0\n502,297,14.5\n502,298,15.0\n502,299,15.5\n502,300,5.0\n502,301,4.5\n502,302,4.0\n502,303,4.5\n502,304,5.0\n502,305,5.5\n502,306,6.0\n502,307,6.5\n502,308,7.0\n502,309,7.5\n502,310,8.0\n502,311,8.5\n502,312,9.0\n502,313,9.5\n502,314,10.0\n502,315,10.5\n502,316,11.0\n502,317,11.5\n502,318,12.0\n502,319,12.5\n502,320,13.0\n502,321,13.5\n502,322,14.0\n502,323,14.5\n502,324,15.0\n502,325,4.5\n502,326,4.0\n502,327,3.5\n502,328,4.0\n502,329,4.5\n502,330,5.0\n502,331,5.5\n502,332,6.0\n502,333,6.5\n502,334,7.0\n502,335,7.5\n502,336,8.0\n502,337,8.5\n502,338,9.0\n502,339,9.5\n502,340,10.0\n502,341,10.5\n502,342,11.0\n502,343,11.5\n502,344,12.0\n502,345,12.5\n502,346,13.0\n502,347,13.5\n502,348,14.0\n502,349,14.5\n502,350,4.0\n502,351,3.5\n502,352,3.0\n502,353,3.5\n502,354,4.0\n502,355,4.5\n502,356,5.0\n502,357,5.5\n502,358,6.0\n502,359,6.5\n502,360,7.0\n502,361,7.5\n502,362,8.0\n502,363,8.5\n502,364,9.0\n502,365,9.5\n502,366,10.0\n502,367,10.5\n502,368,11.0\n502,369,11.5\n502,370,12.0\n502,371,12.5\n502,372,13.0\n502,373,13.5\n502,374,14.0\n502,375,3.5\n502,376,3.0\n502,377,2.5\n502,378,3.0\n502,379,3.5\n502,380,4.0\n502,381,4.5\n502,382,5.0\n502,383,5.5\n502,384,6.0\n502,385,6.5\n502,386,7.0\n502,387,7.5\n502,388,8.0\n502,389,8.5\n502,390,9.0\n502,391,9.5\n502,392,10.0\n502,393,10.5\n502,394,11.0\n502,395,11.5\n502,396,12.0\n502,397,12.5\n502,398,13.0\n502,399,13.5\n502,400,3.0\n502,401,2.5\n502,402,2.0\n502,403,2.5\n502,404,3.0\n502,405,3.5\n502,406,4.0\n502,407,4.5\n502,408,5.0\n502,409,5.5\n502,410,6.0\n502,411,6.5\n502,412,7.0\n502,413,7.5\n502,414,8.0\n502,415,8.5\n502,416,9.0\n502,417,9.5\n502,418,10.0\n502,419,10.5\n502,420,11.0\n502,421,11.5\n502,422,12.0\n502,423,12.5\n502,424,13.0\n502,425,2.5\n502,426,2.0\n502,427,1.5\n502,428,2.0\n502,429,2.5\n502,430,3.0\n502,431,3.5\n502,432,4.0\n502,433,4.5\n502,434,5.0\n502,435,5.5\n502,436,6.0\n502,437,6.5\n502,438,7.0\n502,439,7.5\n502,440,8.0\n502,441,8.5\n502,442,9.0\n502,443,9.5\n502,444,10.0\n502,445,10.5\n502,446,11.0\n502,447,11.5\n502,448,12.0\n502,449,12.5\n502,450,2.0\n502,451,1.5\n502,452,1.0\n502,453,1.5\n502,454,2.0\n502,455,2.5\n502,456,3.0\n502,457,3.5\n502,458,4.0\n502,459,4.5\n502,460,5.0\n502,461,5.5\n502,462,6.0\n502,463,6.5\n502,464,7.0\n502,465,7.5\n502,466,8.0\n502,467,8.5\n502,468,9.0\n502,469,9.5\n502,470,10.0\n502,471,10.5\n502,472,11.0\n502,473,11.5\n502,474,12.0\n502,475,1.5\n502,476,1.0\n502,477,0.5\n502,478,1.0\n502,479,1.5\n502,480,2.0\n502,481,2.5\n502,482,3.0\n502,483,3.5\n502,484,4.0\n502,485,4.5\n502,486,5.0\n502,487,5.5\n502,488,6.0\n502,489,6.5\n502,490,7.0\n502,491,7.5\n502,492,8.0\n502,493,8.5\n502,494,9.0\n502,495,9.5\n502,496,10.0\n502,497,10.5\n502,498,11.0\n502,499,11.5\n502,500,1.0\n502,501,0.5\n502,502,0\n502,503,0.5\n502,504,1.0\n502,505,1.5\n502,506,2.0\n502,507,2.5\n502,508,3.0\n502,509,3.5\n502,510,4.0\n502,511,4.5\n502,512,5.0\n502,513,5.5\n502,514,6.0\n502,515,6.5\n502,516,7.0\n502,517,7.5\n502,518,8.0\n502,519,8.5\n502,520,9.0\n502,521,9.5\n502,522,10.0\n502,523,10.5\n502,524,11.0\n502,525,1.5\n502,526,1.0\n502,527,0.5\n502,528,1.0\n502,529,1.5\n502,530,2.0\n502,531,2.5\n502,532,3.0\n502,533,3.5\n502,534,4.0\n502,535,4.5\n502,536,5.0\n502,537,5.5\n502,538,6.0\n502,539,6.5\n502,540,7.0\n502,541,7.5\n502,542,8.0\n502,543,8.5\n502,544,9.0\n502,545,9.5\n502,546,10.0\n502,547,10.5\n502,548,11.0\n502,549,11.5\n502,550,2.0\n502,551,1.5\n502,552,1.0\n502,553,1.5\n502,554,2.0\n502,555,2.5\n502,556,3.0\n502,557,3.5\n502,558,4.0\n502,559,4.5\n502,560,5.0\n502,561,5.5\n502,562,6.0\n502,563,6.5\n502,564,7.0\n502,565,7.5\n502,566,8.0\n502,567,8.5\n502,568,9.0\n502,569,9.5\n502,570,10.0\n502,571,10.5\n502,572,11.0\n502,573,11.5\n502,574,12.0\n502,575,2.5\n502,576,2.0\n502,577,1.5\n502,578,2.0\n502,579,2.5\n502,580,3.0\n502,581,3.5\n502,582,4.0\n502,583,4.5\n502,584,5.0\n502,585,5.5\n502,586,6.0\n502,587,6.5\n502,588,7.0\n502,589,7.5\n502,590,8.0\n502,591,8.5\n502,592,9.0\n502,593,9.5\n502,594,10.0\n502,595,10.5\n502,596,11.0\n502,597,11.5\n502,598,12.0\n502,599,12.5\n502,600,3.0\n502,601,2.5\n502,602,2.0\n502,603,2.5\n502,604,3.0\n502,605,3.5\n502,606,4.0\n502,607,4.5\n502,608,5.0\n502,609,5.5\n502,610,6.0\n502,611,6.5\n502,612,7.0\n502,613,7.5\n502,614,8.0\n502,615,8.5\n502,616,9.0\n502,617,9.5\n502,618,10.0\n502,619,10.5\n502,620,11.0\n502,621,11.5\n502,622,12.0\n502,623,12.5\n502,624,13.0\n503,0,11.5\n503,1,11.0\n503,2,10.5\n503,3,10.0\n503,4,10.5\n503,5,11.0\n503,6,11.5\n503,7,12.0\n503,8,12.5\n503,9,13.0\n503,10,13.5\n503,11,14.0\n503,12,14.5\n503,13,15.0\n503,14,15.5\n503,15,16.0\n503,16,16.5\n503,17,17.0\n503,18,17.5\n503,19,18.0\n503,20,18.5\n503,21,19.0\n503,22,19.5\n503,23,20.0\n503,24,20.5\n503,25,11.0\n503,26,10.5\n503,27,10.0\n503,28,9.5\n503,29,10.0\n503,30,10.5\n503,31,11.0\n503,32,11.5\n503,33,12.0\n503,34,12.5\n503,35,13.0\n503,36,13.5\n503,37,14.0\n503,38,14.5\n503,39,15.0\n503,40,15.5\n503,41,16.0\n503,42,16.5\n503,43,17.0\n503,44,17.5\n503,45,18.0\n503,46,18.5\n503,47,19.0\n503,48,19.5\n503,49,20.0\n503,50,10.5\n503,51,10.0\n503,52,9.5\n503,53,9.0\n503,54,9.5\n503,55,10.0\n503,56,10.5\n503,57,11.0\n503,58,11.5\n503,59,12.0\n503,60,12.5\n503,61,13.0\n503,62,13.5\n503,63,14.0\n503,64,14.5\n503,65,15.0\n503,66,15.5\n503,67,16.0\n503,68,16.5\n503,69,17.0\n503,70,17.5\n503,71,18.0\n503,72,18.5\n503,73,19.0\n503,74,19.5\n503,75,10.0\n503,76,9.5\n503,77,9.0\n503,78,8.5\n503,79,9.0\n503,80,9.5\n503,81,10.0\n503,82,10.5\n503,83,11.0\n503,84,11.5\n503,85,12.0\n503,86,12.5\n503,87,13.0\n503,88,13.5\n503,89,14.0\n503,90,14.5\n503,91,15.0\n503,92,15.5\n503,93,16.0\n503,94,16.5\n503,95,17.0\n503,96,17.5\n503,97,18.0\n503,98,18.5\n503,99,19.0\n503,100,9.5\n503,101,9.0\n503,102,8.5\n503,103,8.0\n503,104,8.5\n503,105,9.0\n503,106,9.5\n503,107,10.0\n503,108,10.5\n503,109,11.0\n503,110,11.5\n503,111,12.0\n503,112,12.5\n503,113,13.0\n503,114,13.5\n503,115,14.0\n503,116,14.5\n503,117,15.0\n503,118,15.5\n503,119,16.0\n503,120,16.5\n503,121,17.0\n503,122,17.5\n503,123,18.0\n503,124,18.5\n503,125,9.0\n503,126,8.5\n503,127,8.0\n503,128,7.5\n503,129,8.0\n503,130,8.5\n503,131,9.0\n503,132,9.5\n503,133,10.0\n503,134,10.5\n503,135,11.0\n503,136,11.5\n503,137,12.0\n503,138,12.5\n503,139,13.0\n503,140,13.5\n503,141,14.0\n503,142,14.5\n503,143,15.0\n503,144,15.5\n503,145,16.0\n503,146,16.5\n503,147,17.0\n503,148,17.5\n503,149,18.0\n503,150,8.5\n503,151,8.0\n503,152,7.5\n503,153,7.0\n503,154,7.5\n503,155,8.0\n503,156,8.5\n503,157,9.0\n503,158,9.5\n503,159,10.0\n503,160,10.5\n503,161,11.0\n503,162,11.5\n503,163,12.0\n503,164,12.5\n503,165,13.0\n503,166,13.5\n503,167,14.0\n503,168,14.5\n503,169,15.0\n503,170,15.5\n503,171,16.0\n503,172,16.5\n503,173,17.0\n503,174,17.5\n503,175,8.0\n503,176,7.5\n503,177,7.0\n503,178,6.5\n503,179,7.0\n503,180,7.5\n503,181,8.0\n503,182,8.5\n503,183,9.0\n503,184,9.5\n503,185,10.0\n503,186,10.5\n503,187,11.0\n503,188,11.5\n503,189,12.0\n503,190,12.5\n503,191,13.0\n503,192,13.5\n503,193,14.0\n503,194,14.5\n503,195,15.0\n503,196,15.5\n503,197,16.0\n503,198,16.5\n503,199,17.0\n503,200,7.5\n503,201,7.0\n503,202,6.5\n503,203,6.0\n503,204,6.5\n503,205,7.0\n503,206,7.5\n503,207,8.0\n503,208,8.5\n503,209,9.0\n503,210,9.5\n503,211,10.0\n503,212,10.5\n503,213,11.0\n503,214,11.5\n503,215,12.0\n503,216,12.5\n503,217,13.0\n503,218,13.5\n503,219,14.0\n503,220,14.5\n503,221,15.0\n503,222,15.5\n503,223,16.0\n503,224,16.5\n503,225,7.0\n503,226,6.5\n503,227,6.0\n503,228,5.5\n503,229,6.0\n503,230,6.5\n503,231,7.0\n503,232,7.5\n503,233,8.0\n503,234,8.5\n503,235,9.0\n503,236,9.5\n503,237,10.0\n503,238,10.5\n503,239,11.0\n503,240,11.5\n503,241,12.0\n503,242,12.5\n503,243,13.0\n503,244,13.5\n503,245,14.0\n503,246,14.5\n503,247,15.0\n503,248,15.5\n503,249,16.0\n503,250,6.5\n503,251,6.0\n503,252,5.5\n503,253,5.0\n503,254,5.5\n503,255,6.0\n503,256,6.5\n503,257,7.0\n503,258,7.5\n503,259,8.0\n503,260,8.5\n503,261,9.0\n503,262,9.5\n503,263,10.0\n503,264,10.5\n503,265,11.0\n503,266,11.5\n503,267,12.0\n503,268,12.5\n503,269,13.0\n503,270,13.5\n503,271,14.0\n503,272,14.5\n503,273,15.0\n503,274,15.5\n503,275,6.0\n503,276,5.5\n503,277,5.0\n503,278,4.5\n503,279,5.0\n503,280,5.5\n503,281,6.0\n503,282,6.5\n503,283,7.0\n503,284,7.5\n503,285,8.0\n503,286,8.5\n503,287,9.0\n503,288,9.5\n503,289,10.0\n503,290,10.5\n503,291,11.0\n503,292,11.5\n503,293,12.0\n503,294,12.5\n503,295,13.0\n503,296,13.5\n503,297,14.0\n503,298,14.5\n503,299,15.0\n503,300,5.5\n503,301,5.0\n503,302,4.5\n503,303,4.0\n503,304,4.5\n503,305,5.0\n503,306,5.5\n503,307,6.0\n503,308,6.5\n503,309,7.0\n503,310,7.5\n503,311,8.0\n503,312,8.5\n503,313,9.0\n503,314,9.5\n503,315,10.0\n503,316,10.5\n503,317,11.0\n503,318,11.5\n503,319,12.0\n503,320,12.5\n503,321,13.0\n503,322,13.5\n503,323,14.0\n503,324,14.5\n503,325,5.0\n503,326,4.5\n503,327,4.0\n503,328,3.5\n503,329,4.0\n503,330,4.5\n503,331,5.0\n503,332,5.5\n503,333,6.0\n503,334,6.5\n503,335,7.0\n503,336,7.5\n503,337,8.0\n503,338,8.5\n503,339,9.0\n503,340,9.5\n503,341,10.0\n503,342,10.5\n503,343,11.0\n503,344,11.5\n503,345,12.0\n503,346,12.5\n503,347,13.0\n503,348,13.5\n503,349,14.0\n503,350,4.5\n503,351,4.0\n503,352,3.5\n503,353,3.0\n503,354,3.5\n503,355,4.0\n503,356,4.5\n503,357,5.0\n503,358,5.5\n503,359,6.0\n503,360,6.5\n503,361,7.0\n503,362,7.5\n503,363,8.0\n503,364,8.5\n503,365,9.0\n503,366,9.5\n503,367,10.0\n503,368,10.5\n503,369,11.0\n503,370,11.5\n503,371,12.0\n503,372,12.5\n503,373,13.0\n503,374,13.5\n503,375,4.0\n503,376,3.5\n503,377,3.0\n503,378,2.5\n503,379,3.0\n503,380,3.5\n503,381,4.0\n503,382,4.5\n503,383,5.0\n503,384,5.5\n503,385,6.0\n503,386,6.5\n503,387,7.0\n503,388,7.5\n503,389,8.0\n503,390,8.5\n503,391,9.0\n503,392,9.5\n503,393,10.0\n503,394,10.5\n503,395,11.0\n503,396,11.5\n503,397,12.0\n503,398,12.5\n503,399,13.0\n503,400,3.5\n503,401,3.0\n503,402,2.5\n503,403,2.0\n503,404,2.5\n503,405,3.0\n503,406,3.5\n503,407,4.0\n503,408,4.5\n503,409,5.0\n503,410,5.5\n503,411,6.0\n503,412,6.5\n503,413,7.0\n503,414,7.5\n503,415,8.0\n503,416,8.5\n503,417,9.0\n503,418,9.5\n503,419,10.0\n503,420,10.5\n503,421,11.0\n503,422,11.5\n503,423,12.0\n503,424,12.5\n503,425,3.0\n503,426,2.5\n503,427,2.0\n503,428,1.5\n503,429,2.0\n503,430,2.5\n503,431,3.0\n503,432,3.5\n503,433,4.0\n503,434,4.5\n503,435,5.0\n503,436,5.5\n503,437,6.0\n503,438,6.5\n503,439,7.0\n503,440,7.5\n503,441,8.0\n503,442,8.5\n503,443,9.0\n503,444,9.5\n503,445,10.0\n503,446,10.5\n503,447,11.0\n503,448,11.5\n503,449,12.0\n503,450,2.5\n503,451,2.0\n503,452,1.5\n503,453,1.0\n503,454,1.5\n503,455,2.0\n503,456,2.5\n503,457,3.0\n503,458,3.5\n503,459,4.0\n503,460,4.5\n503,461,5.0\n503,462,5.5\n503,463,6.0\n503,464,6.5\n503,465,7.0\n503,466,7.5\n503,467,8.0\n503,468,8.5\n503,469,9.0\n503,470,9.5\n503,471,10.0\n503,472,10.5\n503,473,11.0\n503,474,11.5\n503,475,2.0\n503,476,1.5\n503,477,1.0\n503,478,0.5\n503,479,1.0\n503,480,1.5\n503,481,2.0\n503,482,2.5\n503,483,3.0\n503,484,3.5\n503,485,4.0\n503,486,4.5\n503,487,5.0\n503,488,5.5\n503,489,6.0\n503,490,6.5\n503,491,7.0\n503,492,7.5\n503,493,8.0\n503,494,8.5\n503,495,9.0\n503,496,9.5\n503,497,10.0\n503,498,10.5\n503,499,11.0\n503,500,1.5\n503,501,1.0\n503,502,0.5\n503,503,0\n503,504,0.5\n503,505,1.0\n503,506,1.5\n503,507,2.0\n503,508,2.5\n503,509,3.0\n503,510,3.5\n503,511,4.0\n503,512,4.5\n503,513,5.0\n503,514,5.5\n503,515,6.0\n503,516,6.5\n503,517,7.0\n503,518,7.5\n503,519,8.0\n503,520,8.5\n503,521,9.0\n503,522,9.5\n503,523,10.0\n503,524,10.5\n503,525,2.0\n503,526,1.5\n503,527,1.0\n503,528,0.5\n503,529,1.0\n503,530,1.5\n503,531,2.0\n503,532,2.5\n503,533,3.0\n503,534,3.5\n503,535,4.0\n503,536,4.5\n503,537,5.0\n503,538,5.5\n503,539,6.0\n503,540,6.5\n503,541,7.0\n503,542,7.5\n503,543,8.0\n503,544,8.5\n503,545,9.0\n503,546,9.5\n503,547,10.0\n503,548,10.5\n503,549,11.0\n503,550,2.5\n503,551,2.0\n503,552,1.5\n503,553,1.0\n503,554,1.5\n503,555,2.0\n503,556,2.5\n503,557,3.0\n503,558,3.5\n503,559,4.0\n503,560,4.5\n503,561,5.0\n503,562,5.5\n503,563,6.0\n503,564,6.5\n503,565,7.0\n503,566,7.5\n503,567,8.0\n503,568,8.5\n503,569,9.0\n503,570,9.5\n503,571,10.0\n503,572,10.5\n503,573,11.0\n503,574,11.5\n503,575,3.0\n503,576,2.5\n503,577,2.0\n503,578,1.5\n503,579,2.0\n503,580,2.5\n503,581,3.0\n503,582,3.5\n503,583,4.0\n503,584,4.5\n503,585,5.0\n503,586,5.5\n503,587,6.0\n503,588,6.5\n503,589,7.0\n503,590,7.5\n503,591,8.0\n503,592,8.5\n503,593,9.0\n503,594,9.5\n503,595,10.0\n503,596,10.5\n503,597,11.0\n503,598,11.5\n503,599,12.0\n503,600,3.5\n503,601,3.0\n503,602,2.5\n503,603,2.0\n503,604,2.5\n503,605,3.0\n503,606,3.5\n503,607,4.0\n503,608,4.5\n503,609,5.0\n503,610,5.5\n503,611,6.0\n503,612,6.5\n503,613,7.0\n503,614,7.5\n503,615,8.0\n503,616,8.5\n503,617,9.0\n503,618,9.5\n503,619,10.0\n503,620,10.5\n503,621,11.0\n503,622,11.5\n503,623,12.0\n503,624,12.5\n504,0,12.0\n504,1,11.5\n504,2,11.0\n504,3,10.5\n504,4,10.0\n504,5,10.5\n504,6,11.0\n504,7,11.5\n504,8,12.0\n504,9,12.5\n504,10,13.0\n504,11,13.5\n504,12,14.0\n504,13,14.5\n504,14,15.0\n504,15,15.5\n504,16,16.0\n504,17,16.5\n504,18,17.0\n504,19,17.5\n504,20,18.0\n504,21,18.5\n504,22,19.0\n504,23,19.5\n504,24,20.0\n504,25,11.5\n504,26,11.0\n504,27,10.5\n504,28,10.0\n504,29,9.5\n504,30,10.0\n504,31,10.5\n504,32,11.0\n504,33,11.5\n504,34,12.0\n504,35,12.5\n504,36,13.0\n504,37,13.5\n504,38,14.0\n504,39,14.5\n504,40,15.0\n504,41,15.5\n504,42,16.0\n504,43,16.5\n504,44,17.0\n504,45,17.5\n504,46,18.0\n504,47,18.5\n504,48,19.0\n504,49,19.5\n504,50,11.0\n504,51,10.5\n504,52,10.0\n504,53,9.5\n504,54,9.0\n504,55,9.5\n504,56,10.0\n504,57,10.5\n504,58,11.0\n504,59,11.5\n504,60,12.0\n504,61,12.5\n504,62,13.0\n504,63,13.5\n504,64,14.0\n504,65,14.5\n504,66,15.0\n504,67,15.5\n504,68,16.0\n504,69,16.5\n504,70,17.0\n504,71,17.5\n504,72,18.0\n504,73,18.5\n504,74,19.0\n504,75,10.5\n504,76,10.0\n504,77,9.5\n504,78,9.0\n504,79,8.5\n504,80,9.0\n504,81,9.5\n504,82,10.0\n504,83,10.5\n504,84,11.0\n504,85,11.5\n504,86,12.0\n504,87,12.5\n504,88,13.0\n504,89,13.5\n504,90,14.0\n504,91,14.5\n504,92,15.0\n504,93,15.5\n504,94,16.0\n504,95,16.5\n504,96,17.0\n504,97,17.5\n504,98,18.0\n504,99,18.5\n504,100,10.0\n504,101,9.5\n504,102,9.0\n504,103,8.5\n504,104,8.0\n504,105,8.5\n504,106,9.0\n504,107,9.5\n504,108,10.0\n504,109,10.5\n504,110,11.0\n504,111,11.5\n504,112,12.0\n504,113,12.5\n504,114,13.0\n504,115,13.5\n504,116,14.0\n504,117,14.5\n504,118,15.0\n504,119,15.5\n504,120,16.0\n504,121,16.5\n504,122,17.0\n504,123,17.5\n504,124,18.0\n504,125,9.5\n504,126,9.0\n504,127,8.5\n504,128,8.0\n504,129,7.5\n504,130,8.0\n504,131,8.5\n504,132,9.0\n504,133,9.5\n504,134,10.0\n504,135,10.5\n504,136,11.0\n504,137,11.5\n504,138,12.0\n504,139,12.5\n504,140,13.0\n504,141,13.5\n504,142,14.0\n504,143,14.5\n504,144,15.0\n504,145,15.5\n504,146,16.0\n504,147,16.5\n504,148,17.0\n504,149,17.5\n504,150,9.0\n504,151,8.5\n504,152,8.0\n504,153,7.5\n504,154,7.0\n504,155,7.5\n504,156,8.0\n504,157,8.5\n504,158,9.0\n504,159,9.5\n504,160,10.0\n504,161,10.5\n504,162,11.0\n504,163,11.5\n504,164,12.0\n504,165,12.5\n504,166,13.0\n504,167,13.5\n504,168,14.0\n504,169,14.5\n504,170,15.0\n504,171,15.5\n504,172,16.0\n504,173,16.5\n504,174,17.0\n504,175,8.5\n504,176,8.0\n504,177,7.5\n504,178,7.0\n504,179,6.5\n504,180,7.0\n504,181,7.5\n504,182,8.0\n504,183,8.5\n504,184,9.0\n504,185,9.5\n504,186,10.0\n504,187,10.5\n504,188,11.0\n504,189,11.5\n504,190,12.0\n504,191,12.5\n504,192,13.0\n504,193,13.5\n504,194,14.0\n504,195,14.5\n504,196,15.0\n504,197,15.5\n504,198,16.0\n504,199,16.5\n504,200,8.0\n504,201,7.5\n504,202,7.0\n504,203,6.5\n504,204,6.0\n504,205,6.5\n504,206,7.0\n504,207,7.5\n504,208,8.0\n504,209,8.5\n504,210,9.0\n504,211,9.5\n504,212,10.0\n504,213,10.5\n504,214,11.0\n504,215,11.5\n504,216,12.0\n504,217,12.5\n504,218,13.0\n504,219,13.5\n504,220,14.0\n504,221,14.5\n504,222,15.0\n504,223,15.5\n504,224,16.0\n504,225,7.5\n504,226,7.0\n504,227,6.5\n504,228,6.0\n504,229,5.5\n504,230,6.0\n504,231,6.5\n504,232,7.0\n504,233,7.5\n504,234,8.0\n504,235,8.5\n504,236,9.0\n504,237,9.5\n504,238,10.0\n504,239,10.5\n504,240,11.0\n504,241,11.5\n504,242,12.0\n504,243,12.5\n504,244,13.0\n504,245,13.5\n504,246,14.0\n504,247,14.5\n504,248,15.0\n504,249,15.5\n504,250,7.0\n504,251,6.5\n504,252,6.0\n504,253,5.5\n504,254,5.0\n504,255,5.5\n504,256,6.0\n504,257,6.5\n504,258,7.0\n504,259,7.5\n504,260,8.0\n504,261,8.5\n504,262,9.0\n504,263,9.5\n504,264,10.0\n504,265,10.5\n504,266,11.0\n504,267,11.5\n504,268,12.0\n504,269,12.5\n504,270,13.0\n504,271,13.5\n504,272,14.0\n504,273,14.5\n504,274,15.0\n504,275,6.5\n504,276,6.0\n504,277,5.5\n504,278,5.0\n504,279,4.5\n504,280,5.0\n504,281,5.5\n504,282,6.0\n504,283,6.5\n504,284,7.0\n504,285,7.5\n504,286,8.0\n504,287,8.5\n504,288,9.0\n504,289,9.5\n504,290,10.0\n504,291,10.5\n504,292,11.0\n504,293,11.5\n504,294,12.0\n504,295,12.5\n504,296,13.0\n504,297,13.5\n504,298,14.0\n504,299,14.5\n504,300,6.0\n504,301,5.5\n504,302,5.0\n504,303,4.5\n504,304,4.0\n504,305,4.5\n504,306,5.0\n504,307,5.5\n504,308,6.0\n504,309,6.5\n504,310,7.0\n504,311,7.5\n504,312,8.0\n504,313,8.5\n504,314,9.0\n504,315,9.5\n504,316,10.0\n504,317,10.5\n504,318,11.0\n504,319,11.5\n504,320,12.0\n504,321,12.5\n504,322,13.0\n504,323,13.5\n504,324,14.0\n504,325,5.5\n504,326,5.0\n504,327,4.5\n504,328,4.0\n504,329,3.5\n504,330,4.0\n504,331,4.5\n504,332,5.0\n504,333,5.5\n504,334,6.0\n504,335,6.5\n504,336,7.0\n504,337,7.5\n504,338,8.0\n504,339,8.5\n504,340,9.0\n504,341,9.5\n504,342,10.0\n504,343,10.5\n504,344,11.0\n504,345,11.5\n504,346,12.0\n504,347,12.5\n504,348,13.0\n504,349,13.5\n504,350,5.0\n504,351,4.5\n504,352,4.0\n504,353,3.5\n504,354,3.0\n504,355,3.5\n504,356,4.0\n504,357,4.5\n504,358,5.0\n504,359,5.5\n504,360,6.0\n504,361,6.5\n504,362,7.0\n504,363,7.5\n504,364,8.0\n504,365,8.5\n504,366,9.0\n504,367,9.5\n504,368,10.0\n504,369,10.5\n504,370,11.0\n504,371,11.5\n504,372,12.0\n504,373,12.5\n504,374,13.0\n504,375,4.5\n504,376,4.0\n504,377,3.5\n504,378,3.0\n504,379,2.5\n504,380,3.0\n504,381,3.5\n504,382,4.0\n504,383,4.5\n504,384,5.0\n504,385,5.5\n504,386,6.0\n504,387,6.5\n504,388,7.0\n504,389,7.5\n504,390,8.0\n504,391,8.5\n504,392,9.0\n504,393,9.5\n504,394,10.0\n504,395,10.5\n504,396,11.0\n504,397,11.5\n504,398,12.0\n504,399,12.5\n504,400,4.0\n504,401,3.5\n504,402,3.0\n504,403,2.5\n504,404,2.0\n504,405,2.5\n504,406,3.0\n504,407,3.5\n504,408,4.0\n504,409,4.5\n504,410,5.0\n504,411,5.5\n504,412,6.0\n504,413,6.5\n504,414,7.0\n504,415,7.5\n504,416,8.0\n504,417,8.5\n504,418,9.0\n504,419,9.5\n504,420,10.0\n504,421,10.5\n504,422,11.0\n504,423,11.5\n504,424,12.0\n504,425,3.5\n504,426,3.0\n504,427,2.5\n504,428,2.0\n504,429,1.5\n504,430,2.0\n504,431,2.5\n504,432,3.0\n504,433,3.5\n504,434,4.0\n504,435,4.5\n504,436,5.0\n504,437,5.5\n504,438,6.0\n504,439,6.5\n504,440,7.0\n504,441,7.5\n504,442,8.0\n504,443,8.5\n504,444,9.0\n504,445,9.5\n504,446,10.0\n504,447,10.5\n504,448,11.0\n504,449,11.5\n504,450,3.0\n504,451,2.5\n504,452,2.0\n504,453,1.5\n504,454,1.0\n504,455,1.5\n504,456,2.0\n504,457,2.5\n504,458,3.0\n504,459,3.5\n504,460,4.0\n504,461,4.5\n504,462,5.0\n504,463,5.5\n504,464,6.0\n504,465,6.5\n504,466,7.0\n504,467,7.5\n504,468,8.0\n504,469,8.5\n504,470,9.0\n504,471,9.5\n504,472,10.0\n504,473,10.5\n504,474,11.0\n504,475,2.5\n504,476,2.0\n504,477,1.5\n504,478,1.0\n504,479,0.5\n504,480,1.0\n504,481,1.5\n504,482,2.0\n504,483,2.5\n504,484,3.0\n504,485,3.5\n504,486,4.0\n504,487,4.5\n504,488,5.0\n504,489,5.5\n504,490,6.0\n504,491,6.5\n504,492,7.0\n504,493,7.5\n504,494,8.0\n504,495,8.5\n504,496,9.0\n504,497,9.5\n504,498,10.0\n504,499,10.5\n504,500,2.0\n504,501,1.5\n504,502,1.0\n504,503,0.5\n504,504,0\n504,505,0.5\n504,506,1.0\n504,507,1.5\n504,508,2.0\n504,509,2.5\n504,510,3.0\n504,511,3.5\n504,512,4.0\n504,513,4.5\n504,514,5.0\n504,515,5.5\n504,516,6.0\n504,517,6.5\n504,518,7.0\n504,519,7.5\n504,520,8.0\n504,521,8.5\n504,522,9.0\n504,523,9.5\n504,524,10.0\n504,525,2.5\n504,526,2.0\n504,527,1.5\n504,528,1.0\n504,529,0.5\n504,530,1.0\n504,531,1.5\n504,532,2.0\n504,533,2.5\n504,534,3.0\n504,535,3.5\n504,536,4.0\n504,537,4.5\n504,538,5.0\n504,539,5.5\n504,540,6.0\n504,541,6.5\n504,542,7.0\n504,543,7.5\n504,544,8.0\n504,545,8.5\n504,546,9.0\n504,547,9.5\n504,548,10.0\n504,549,10.5\n504,550,3.0\n504,551,2.5\n504,552,2.0\n504,553,1.5\n504,554,1.0\n504,555,1.5\n504,556,2.0\n504,557,2.5\n504,558,3.0\n504,559,3.5\n504,560,4.0\n504,561,4.5\n504,562,5.0\n504,563,5.5\n504,564,6.0\n504,565,6.5\n504,566,7.0\n504,567,7.5\n504,568,8.0\n504,569,8.5\n504,570,9.0\n504,571,9.5\n504,572,10.0\n504,573,10.5\n504,574,11.0\n504,575,3.5\n504,576,3.0\n504,577,2.5\n504,578,2.0\n504,579,1.5\n504,580,2.0\n504,581,2.5\n504,582,3.0\n504,583,3.5\n504,584,4.0\n504,585,4.5\n504,586,5.0\n504,587,5.5\n504,588,6.0\n504,589,6.5\n504,590,7.0\n504,591,7.5\n504,592,8.0\n504,593,8.5\n504,594,9.0\n504,595,9.5\n504,596,10.0\n504,597,10.5\n504,598,11.0\n504,599,11.5\n504,600,4.0\n504,601,3.5\n504,602,3.0\n504,603,2.5\n504,604,2.0\n504,605,2.5\n504,606,3.0\n504,607,3.5\n504,608,4.0\n504,609,4.5\n504,610,5.0\n504,611,5.5\n504,612,6.0\n504,613,6.5\n504,614,7.0\n504,615,7.5\n504,616,8.0\n504,617,8.5\n504,618,9.0\n504,619,9.5\n504,620,10.0\n504,621,10.5\n504,622,11.0\n504,623,11.5\n504,624,12.0\n505,0,12.5\n505,1,12.0\n505,2,11.5\n505,3,11.0\n505,4,10.5\n505,5,10.0\n505,6,10.5\n505,7,11.0\n505,8,11.5\n505,9,12.0\n505,10,12.5\n505,11,13.0\n505,12,13.5\n505,13,14.0\n505,14,14.5\n505,15,15.0\n505,16,15.5\n505,17,16.0\n505,18,16.5\n505,19,17.0\n505,20,17.5\n505,21,18.0\n505,22,18.5\n505,23,19.0\n505,24,19.5\n505,25,12.0\n505,26,11.5\n505,27,11.0\n505,28,10.5\n505,29,10.0\n505,30,9.5\n505,31,10.0\n505,32,10.5\n505,33,11.0\n505,34,11.5\n505,35,12.0\n505,36,12.5\n505,37,13.0\n505,38,13.5\n505,39,14.0\n505,40,14.5\n505,41,15.0\n505,42,15.5\n505,43,16.0\n505,44,16.5\n505,45,17.0\n505,46,17.5\n505,47,18.0\n505,48,18.5\n505,49,19.0\n505,50,11.5\n505,51,11.0\n505,52,10.5\n505,53,10.0\n505,54,9.5\n505,55,9.0\n505,56,9.5\n505,57,10.0\n505,58,10.5\n505,59,11.0\n505,60,11.5\n505,61,12.0\n505,62,12.5\n505,63,13.0\n505,64,13.5\n505,65,14.0\n505,66,14.5\n505,67,15.0\n505,68,15.5\n505,69,16.0\n505,70,16.5\n505,71,17.0\n505,72,17.5\n505,73,18.0\n505,74,18.5\n505,75,11.0\n505,76,10.5\n505,77,10.0\n505,78,9.5\n505,79,9.0\n505,80,8.5\n505,81,9.0\n505,82,9.5\n505,83,10.0\n505,84,10.5\n505,85,11.0\n505,86,11.5\n505,87,12.0\n505,88,12.5\n505,89,13.0\n505,90,13.5\n505,91,14.0\n505,92,14.5\n505,93,15.0\n505,94,15.5\n505,95,16.0\n505,96,16.5\n505,97,17.0\n505,98,17.5\n505,99,18.0\n505,100,10.5\n505,101,10.0\n505,102,9.5\n505,103,9.0\n505,104,8.5\n505,105,8.0\n505,106,8.5\n505,107,9.0\n505,108,9.5\n505,109,10.0\n505,110,10.5\n505,111,11.0\n505,112,11.5\n505,113,12.0\n505,114,12.5\n505,115,13.0\n505,116,13.5\n505,117,14.0\n505,118,14.5\n505,119,15.0\n505,120,15.5\n505,121,16.0\n505,122,16.5\n505,123,17.0\n505,124,17.5\n505,125,10.0\n505,126,9.5\n505,127,9.0\n505,128,8.5\n505,129,8.0\n505,130,7.5\n505,131,8.0\n505,132,8.5\n505,133,9.0\n505,134,9.5\n505,135,10.0\n505,136,10.5\n505,137,11.0\n505,138,11.5\n505,139,12.0\n505,140,12.5\n505,141,13.0\n505,142,13.5\n505,143,14.0\n505,144,14.5\n505,145,15.0\n505,146,15.5\n505,147,16.0\n505,148,16.5\n505,149,17.0\n505,150,9.5\n505,151,9.0\n505,152,8.5\n505,153,8.0\n505,154,7.5\n505,155,7.0\n505,156,7.5\n505,157,8.0\n505,158,8.5\n505,159,9.0\n505,160,9.5\n505,161,10.0\n505,162,10.5\n505,163,11.0\n505,164,11.5\n505,165,12.0\n505,166,12.5\n505,167,13.0\n505,168,13.5\n505,169,14.0\n505,170,14.5\n505,171,15.0\n505,172,15.5\n505,173,16.0\n505,174,16.5\n505,175,9.0\n505,176,8.5\n505,177,8.0\n505,178,7.5\n505,179,7.0\n505,180,6.5\n505,181,7.0\n505,182,7.5\n505,183,8.0\n505,184,8.5\n505,185,9.0\n505,186,9.5\n505,187,10.0\n505,188,10.5\n505,189,11.0\n505,190,11.5\n505,191,12.0\n505,192,12.5\n505,193,13.0\n505,194,13.5\n505,195,14.0\n505,196,14.5\n505,197,15.0\n505,198,15.5\n505,199,16.0\n505,200,8.5\n505,201,8.0\n505,202,7.5\n505,203,7.0\n505,204,6.5\n505,205,6.0\n505,206,6.5\n505,207,7.0\n505,208,7.5\n505,209,8.0\n505,210,8.5\n505,211,9.0\n505,212,9.5\n505,213,10.0\n505,214,10.5\n505,215,11.0\n505,216,11.5\n505,217,12.0\n505,218,12.5\n505,219,13.0\n505,220,13.5\n505,221,14.0\n505,222,14.5\n505,223,15.0\n505,224,15.5\n505,225,8.0\n505,226,7.5\n505,227,7.0\n505,228,6.5\n505,229,6.0\n505,230,5.5\n505,231,6.0\n505,232,6.5\n505,233,7.0\n505,234,7.5\n505,235,8.0\n505,236,8.5\n505,237,9.0\n505,238,9.5\n505,239,10.0\n505,240,10.5\n505,241,11.0\n505,242,11.5\n505,243,12.0\n505,244,12.5\n505,245,13.0\n505,246,13.5\n505,247,14.0\n505,248,14.5\n505,249,15.0\n505,250,7.5\n505,251,7.0\n505,252,6.5\n505,253,6.0\n505,254,5.5\n505,255,5.0\n505,256,5.5\n505,257,6.0\n505,258,6.5\n505,259,7.0\n505,260,7.5\n505,261,8.0\n505,262,8.5\n505,263,9.0\n505,264,9.5\n505,265,10.0\n505,266,10.5\n505,267,11.0\n505,268,11.5\n505,269,12.0\n505,270,12.5\n505,271,13.0\n505,272,13.5\n505,273,14.0\n505,274,14.5\n505,275,7.0\n505,276,6.5\n505,277,6.0\n505,278,5.5\n505,279,5.0\n505,280,4.5\n505,281,5.0\n505,282,5.5\n505,283,6.0\n505,284,6.5\n505,285,7.0\n505,286,7.5\n505,287,8.0\n505,288,8.5\n505,289,9.0\n505,290,9.5\n505,291,10.0\n505,292,10.5\n505,293,11.0\n505,294,11.5\n505,295,12.0\n505,296,12.5\n505,297,13.0\n505,298,13.5\n505,299,14.0\n505,300,6.5\n505,301,6.0\n505,302,5.5\n505,303,5.0\n505,304,4.5\n505,305,4.0\n505,306,4.5\n505,307,5.0\n505,308,5.5\n505,309,6.0\n505,310,6.5\n505,311,7.0\n505,312,7.5\n505,313,8.0\n505,314,8.5\n505,315,9.0\n505,316,9.5\n505,317,10.0\n505,318,10.5\n505,319,11.0\n505,320,11.5\n505,321,12.0\n505,322,12.5\n505,323,13.0\n505,324,13.5\n505,325,6.0\n505,326,5.5\n505,327,5.0\n505,328,4.5\n505,329,4.0\n505,330,3.5\n505,331,4.0\n505,332,4.5\n505,333,5.0\n505,334,5.5\n505,335,6.0\n505,336,6.5\n505,337,7.0\n505,338,7.5\n505,339,8.0\n505,340,8.5\n505,341,9.0\n505,342,9.5\n505,343,10.0\n505,344,10.5\n505,345,11.0\n505,346,11.5\n505,347,12.0\n505,348,12.5\n505,349,13.0\n505,350,5.5\n505,351,5.0\n505,352,4.5\n505,353,4.0\n505,354,3.5\n505,355,3.0\n505,356,3.5\n505,357,4.0\n505,358,4.5\n505,359,5.0\n505,360,5.5\n505,361,6.0\n505,362,6.5\n505,363,7.0\n505,364,7.5\n505,365,8.0\n505,366,8.5\n505,367,9.0\n505,368,9.5\n505,369,10.0\n505,370,10.5\n505,371,11.0\n505,372,11.5\n505,373,12.0\n505,374,12.5\n505,375,5.0\n505,376,4.5\n505,377,4.0\n505,378,3.5\n505,379,3.0\n505,380,2.5\n505,381,3.0\n505,382,3.5\n505,383,4.0\n505,384,4.5\n505,385,5.0\n505,386,5.5\n505,387,6.0\n505,388,6.5\n505,389,7.0\n505,390,7.5\n505,391,8.0\n505,392,8.5\n505,393,9.0\n505,394,9.5\n505,395,10.0\n505,396,10.5\n505,397,11.0\n505,398,11.5\n505,399,12.0\n505,400,4.5\n505,401,4.0\n505,402,3.5\n505,403,3.0\n505,404,2.5\n505,405,2.0\n505,406,2.5\n505,407,3.0\n505,408,3.5\n505,409,4.0\n505,410,4.5\n505,411,5.0\n505,412,5.5\n505,413,6.0\n505,414,6.5\n505,415,7.0\n505,416,7.5\n505,417,8.0\n505,418,8.5\n505,419,9.0\n505,420,9.5\n505,421,10.0\n505,422,10.5\n505,423,11.0\n505,424,11.5\n505,425,4.0\n505,426,3.5\n505,427,3.0\n505,428,2.5\n505,429,2.0\n505,430,1.5\n505,431,2.0\n505,432,2.5\n505,433,3.0\n505,434,3.5\n505,435,4.0\n505,436,4.5\n505,437,5.0\n505,438,5.5\n505,439,6.0\n505,440,6.5\n505,441,7.0\n505,442,7.5\n505,443,8.0\n505,444,8.5\n505,445,9.0\n505,446,9.5\n505,447,10.0\n505,448,10.5\n505,449,11.0\n505,450,3.5\n505,451,3.0\n505,452,2.5\n505,453,2.0\n505,454,1.5\n505,455,1.0\n505,456,1.5\n505,457,2.0\n505,458,2.5\n505,459,3.0\n505,460,3.5\n505,461,4.0\n505,462,4.5\n505,463,5.0\n505,464,5.5\n505,465,6.0\n505,466,6.5\n505,467,7.0\n505,468,7.5\n505,469,8.0\n505,470,8.5\n505,471,9.0\n505,472,9.5\n505,473,10.0\n505,474,10.5\n505,475,3.0\n505,476,2.5\n505,477,2.0\n505,478,1.5\n505,479,1.0\n505,480,0.5\n505,481,1.0\n505,482,1.5\n505,483,2.0\n505,484,2.5\n505,485,3.0\n505,486,3.5\n505,487,4.0\n505,488,4.5\n505,489,5.0\n505,490,5.5\n505,491,6.0\n505,492,6.5\n505,493,7.0\n505,494,7.5\n505,495,8.0\n505,496,8.5\n505,497,9.0\n505,498,9.5\n505,499,10.0\n505,500,2.5\n505,501,2.0\n505,502,1.5\n505,503,1.0\n505,504,0.5\n505,505,0\n505,506,0.5\n505,507,1.0\n505,508,1.5\n505,509,2.0\n505,510,2.5\n505,511,3.0\n505,512,3.5\n505,513,4.0\n505,514,4.5\n505,515,5.0\n505,516,5.5\n505,517,6.0\n505,518,6.5\n505,519,7.0\n505,520,7.5\n505,521,8.0\n505,522,8.5\n505,523,9.0\n505,524,9.5\n505,525,3.0\n505,526,2.5\n505,527,2.0\n505,528,1.5\n505,529,1.0\n505,530,0.5\n505,531,1.0\n505,532,1.5\n505,533,2.0\n505,534,2.5\n505,535,3.0\n505,536,3.5\n505,537,4.0\n505,538,4.5\n505,539,5.0\n505,540,5.5\n505,541,6.0\n505,542,6.5\n505,543,7.0\n505,544,7.5\n505,545,8.0\n505,546,8.5\n505,547,9.0\n505,548,9.5\n505,549,10.0\n505,550,3.5\n505,551,3.0\n505,552,2.5\n505,553,2.0\n505,554,1.5\n505,555,1.0\n505,556,1.5\n505,557,2.0\n505,558,2.5\n505,559,3.0\n505,560,3.5\n505,561,4.0\n505,562,4.5\n505,563,5.0\n505,564,5.5\n505,565,6.0\n505,566,6.5\n505,567,7.0\n505,568,7.5\n505,569,8.0\n505,570,8.5\n505,571,9.0\n505,572,9.5\n505,573,10.0\n505,574,10.5\n505,575,4.0\n505,576,3.5\n505,577,3.0\n505,578,2.5\n505,579,2.0\n505,580,1.5\n505,581,2.0\n505,582,2.5\n505,583,3.0\n505,584,3.5\n505,585,4.0\n505,586,4.5\n505,587,5.0\n505,588,5.5\n505,589,6.0\n505,590,6.5\n505,591,7.0\n505,592,7.5\n505,593,8.0\n505,594,8.5\n505,595,9.0\n505,596,9.5\n505,597,10.0\n505,598,10.5\n505,599,11.0\n505,600,4.5\n505,601,4.0\n505,602,3.5\n505,603,3.0\n505,604,2.5\n505,605,2.0\n505,606,2.5\n505,607,3.0\n505,608,3.5\n505,609,4.0\n505,610,4.5\n505,611,5.0\n505,612,5.5\n505,613,6.0\n505,614,6.5\n505,615,7.0\n505,616,7.5\n505,617,8.0\n505,618,8.5\n505,619,9.0\n505,620,9.5\n505,621,10.0\n505,622,10.5\n505,623,11.0\n505,624,11.5\n506,0,13.0\n506,1,12.5\n506,2,12.0\n506,3,11.5\n506,4,11.0\n506,5,10.5\n506,6,10.0\n506,7,10.5\n506,8,11.0\n506,9,11.5\n506,10,12.0\n506,11,12.5\n506,12,13.0\n506,13,13.5\n506,14,14.0\n506,15,14.5\n506,16,15.0\n506,17,15.5\n506,18,16.0\n506,19,16.5\n506,20,17.0\n506,21,17.5\n506,22,18.0\n506,23,18.5\n506,24,19.0\n506,25,12.5\n506,26,12.0\n506,27,11.5\n506,28,11.0\n506,29,10.5\n506,30,10.0\n506,31,9.5\n506,32,10.0\n506,33,10.5\n506,34,11.0\n506,35,11.5\n506,36,12.0\n506,37,12.5\n506,38,13.0\n506,39,13.5\n506,40,14.0\n506,41,14.5\n506,42,15.0\n506,43,15.5\n506,44,16.0\n506,45,16.5\n506,46,17.0\n506,47,17.5\n506,48,18.0\n506,49,18.5\n506,50,12.0\n506,51,11.5\n506,52,11.0\n506,53,10.5\n506,54,10.0\n506,55,9.5\n506,56,9.0\n506,57,9.5\n506,58,10.0\n506,59,10.5\n506,60,11.0\n506,61,11.5\n506,62,12.0\n506,63,12.5\n506,64,13.0\n506,65,13.5\n506,66,14.0\n506,67,14.5\n506,68,15.0\n506,69,15.5\n506,70,16.0\n506,71,16.5\n506,72,17.0\n506,73,17.5\n506,74,18.0\n506,75,11.5\n506,76,11.0\n506,77,10.5\n506,78,10.0\n506,79,9.5\n506,80,9.0\n506,81,8.5\n506,82,9.0\n506,83,9.5\n506,84,10.0\n506,85,10.5\n506,86,11.0\n506,87,11.5\n506,88,12.0\n506,89,12.5\n506,90,13.0\n506,91,13.5\n506,92,14.0\n506,93,14.5\n506,94,15.0\n506,95,15.5\n506,96,16.0\n506,97,16.5\n506,98,17.0\n506,99,17.5\n506,100,11.0\n506,101,10.5\n506,102,10.0\n506,103,9.5\n506,104,9.0\n506,105,8.5\n506,106,8.0\n506,107,8.5\n506,108,9.0\n506,109,9.5\n506,110,10.0\n506,111,10.5\n506,112,11.0\n506,113,11.5\n506,114,12.0\n506,115,12.5\n506,116,13.0\n506,117,13.5\n506,118,14.0\n506,119,14.5\n506,120,15.0\n506,121,15.5\n506,122,16.0\n506,123,16.5\n506,124,17.0\n506,125,10.5\n506,126,10.0\n506,127,9.5\n506,128,9.0\n506,129,8.5\n506,130,8.0\n506,131,7.5\n506,132,8.0\n506,133,8.5\n506,134,9.0\n506,135,9.5\n506,136,10.0\n506,137,10.5\n506,138,11.0\n506,139,11.5\n506,140,12.0\n506,141,12.5\n506,142,13.0\n506,143,13.5\n506,144,14.0\n506,145,14.5\n506,146,15.0\n506,147,15.5\n506,148,16.0\n506,149,16.5\n506,150,10.0\n506,151,9.5\n506,152,9.0\n506,153,8.5\n506,154,8.0\n506,155,7.5\n506,156,7.0\n506,157,7.5\n506,158,8.0\n506,159,8.5\n506,160,9.0\n506,161,9.5\n506,162,10.0\n506,163,10.5\n506,164,11.0\n506,165,11.5\n506,166,12.0\n506,167,12.5\n506,168,13.0\n506,169,13.5\n506,170,14.0\n506,171,14.5\n506,172,15.0\n506,173,15.5\n506,174,16.0\n506,175,9.5\n506,176,9.0\n506,177,8.5\n506,178,8.0\n506,179,7.5\n506,180,7.0\n506,181,6.5\n506,182,7.0\n506,183,7.5\n506,184,8.0\n506,185,8.5\n506,186,9.0\n506,187,9.5\n506,188,10.0\n506,189,10.5\n506,190,11.0\n506,191,11.5\n506,192,12.0\n506,193,12.5\n506,194,13.0\n506,195,13.5\n506,196,14.0\n506,197,14.5\n506,198,15.0\n506,199,15.5\n506,200,9.0\n506,201,8.5\n506,202,8.0\n506,203,7.5\n506,204,7.0\n506,205,6.5\n506,206,6.0\n506,207,6.5\n506,208,7.0\n506,209,7.5\n506,210,8.0\n506,211,8.5\n506,212,9.0\n506,213,9.5\n506,214,10.0\n506,215,10.5\n506,216,11.0\n506,217,11.5\n506,218,12.0\n506,219,12.5\n506,220,13.0\n506,221,13.5\n506,222,14.0\n506,223,14.5\n506,224,15.0\n506,225,8.5\n506,226,8.0\n506,227,7.5\n506,228,7.0\n506,229,6.5\n506,230,6.0\n506,231,5.5\n506,232,6.0\n506,233,6.5\n506,234,7.0\n506,235,7.5\n506,236,8.0\n506,237,8.5\n506,238,9.0\n506,239,9.5\n506,240,10.0\n506,241,10.5\n506,242,11.0\n506,243,11.5\n506,244,12.0\n506,245,12.5\n506,246,13.0\n506,247,13.5\n506,248,14.0\n506,249,14.5\n506,250,8.0\n506,251,7.5\n506,252,7.0\n506,253,6.5\n506,254,6.0\n506,255,5.5\n506,256,5.0\n506,257,5.5\n506,258,6.0\n506,259,6.5\n506,260,7.0\n506,261,7.5\n506,262,8.0\n506,263,8.5\n506,264,9.0\n506,265,9.5\n506,266,10.0\n506,267,10.5\n506,268,11.0\n506,269,11.5\n506,270,12.0\n506,271,12.5\n506,272,13.0\n506,273,13.5\n506,274,14.0\n506,275,7.5\n506,276,7.0\n506,277,6.5\n506,278,6.0\n506,279,5.5\n506,280,5.0\n506,281,4.5\n506,282,5.0\n506,283,5.5\n506,284,6.0\n506,285,6.5\n506,286,7.0\n506,287,7.5\n506,288,8.0\n506,289,8.5\n506,290,9.0\n506,291,9.5\n506,292,10.0\n506,293,10.5\n506,294,11.0\n506,295,11.5\n506,296,12.0\n506,297,12.5\n506,298,13.0\n506,299,13.5\n506,300,7.0\n506,301,6.5\n506,302,6.0\n506,303,5.5\n506,304,5.0\n506,305,4.5\n506,306,4.0\n506,307,4.5\n506,308,5.0\n506,309,5.5\n506,310,6.0\n506,311,6.5\n506,312,7.0\n506,313,7.5\n506,314,8.0\n506,315,8.5\n506,316,9.0\n506,317,9.5\n506,318,10.0\n506,319,10.5\n506,320,11.0\n506,321,11.5\n506,322,12.0\n506,323,12.5\n506,324,13.0\n506,325,6.5\n506,326,6.0\n506,327,5.5\n506,328,5.0\n506,329,4.5\n506,330,4.0\n506,331,3.5\n506,332,4.0\n506,333,4.5\n506,334,5.0\n506,335,5.5\n506,336,6.0\n506,337,6.5\n506,338,7.0\n506,339,7.5\n506,340,8.0\n506,341,8.5\n506,342,9.0\n506,343,9.5\n506,344,10.0\n506,345,10.5\n506,346,11.0\n506,347,11.5\n506,348,12.0\n506,349,12.5\n506,350,6.0\n506,351,5.5\n506,352,5.0\n506,353,4.5\n506,354,4.0\n506,355,3.5\n506,356,3.0\n506,357,3.5\n506,358,4.0\n506,359,4.5\n506,360,5.0\n506,361,5.5\n506,362,6.0\n506,363,6.5\n506,364,7.0\n506,365,7.5\n506,366,8.0\n506,367,8.5\n506,368,9.0\n506,369,9.5\n506,370,10.0\n506,371,10.5\n506,372,11.0\n506,373,11.5\n506,374,12.0\n506,375,5.5\n506,376,5.0\n506,377,4.5\n506,378,4.0\n506,379,3.5\n506,380,3.0\n506,381,2.5\n506,382,3.0\n506,383,3.5\n506,384,4.0\n506,385,4.5\n506,386,5.0\n506,387,5.5\n506,388,6.0\n506,389,6.5\n506,390,7.0\n506,391,7.5\n506,392,8.0\n506,393,8.5\n506,394,9.0\n506,395,9.5\n506,396,10.0\n506,397,10.5\n506,398,11.0\n506,399,11.5\n506,400,5.0\n506,401,4.5\n506,402,4.0\n506,403,3.5\n506,404,3.0\n506,405,2.5\n506,406,2.0\n506,407,2.5\n506,408,3.0\n506,409,3.5\n506,410,4.0\n506,411,4.5\n506,412,5.0\n506,413,5.5\n506,414,6.0\n506,415,6.5\n506,416,7.0\n506,417,7.5\n506,418,8.0\n506,419,8.5\n506,420,9.0\n506,421,9.5\n506,422,10.0\n506,423,10.5\n506,424,11.0\n506,425,4.5\n506,426,4.0\n506,427,3.5\n506,428,3.0\n506,429,2.5\n506,430,2.0\n506,431,1.5\n506,432,2.0\n506,433,2.5\n506,434,3.0\n506,435,3.5\n506,436,4.0\n506,437,4.5\n506,438,5.0\n506,439,5.5\n506,440,6.0\n506,441,6.5\n506,442,7.0\n506,443,7.5\n506,444,8.0\n506,445,8.5\n506,446,9.0\n506,447,9.5\n506,448,10.0\n506,449,10.5\n506,450,4.0\n506,451,3.5\n506,452,3.0\n506,453,2.5\n506,454,2.0\n506,455,1.5\n506,456,1.0\n506,457,1.5\n506,458,2.0\n506,459,2.5\n506,460,3.0\n506,461,3.5\n506,462,4.0\n506,463,4.5\n506,464,5.0\n506,465,5.5\n506,466,6.0\n506,467,6.5\n506,468,7.0\n506,469,7.5\n506,470,8.0\n506,471,8.5\n506,472,9.0\n506,473,9.5\n506,474,10.0\n506,475,3.5\n506,476,3.0\n506,477,2.5\n506,478,2.0\n506,479,1.5\n506,480,1.0\n506,481,0.5\n506,482,1.0\n506,483,1.5\n506,484,2.0\n506,485,2.5\n506,486,3.0\n506,487,3.5\n506,488,4.0\n506,489,4.5\n506,490,5.0\n506,491,5.5\n506,492,6.0\n506,493,6.5\n506,494,7.0\n506,495,7.5\n506,496,8.0\n506,497,8.5\n506,498,9.0\n506,499,9.5\n506,500,3.0\n506,501,2.5\n506,502,2.0\n506,503,1.5\n506,504,1.0\n506,505,0.5\n506,506,0\n506,507,0.5\n506,508,1.0\n506,509,1.5\n506,510,2.0\n506,511,2.5\n506,512,3.0\n506,513,3.5\n506,514,4.0\n506,515,4.5\n506,516,5.0\n506,517,5.5\n506,518,6.0\n506,519,6.5\n506,520,7.0\n506,521,7.5\n506,522,8.0\n506,523,8.5\n506,524,9.0\n506,525,3.5\n506,526,3.0\n506,527,2.5\n506,528,2.0\n506,529,1.5\n506,530,1.0\n506,531,0.5\n506,532,1.0\n506,533,1.5\n506,534,2.0\n506,535,2.5\n506,536,3.0\n506,537,3.5\n506,538,4.0\n506,539,4.5\n506,540,5.0\n506,541,5.5\n506,542,6.0\n506,543,6.5\n506,544,7.0\n506,545,7.5\n506,546,8.0\n506,547,8.5\n506,548,9.0\n506,549,9.5\n506,550,4.0\n506,551,3.5\n506,552,3.0\n506,553,2.5\n506,554,2.0\n506,555,1.5\n506,556,1.0\n506,557,1.5\n506,558,2.0\n506,559,2.5\n506,560,3.0\n506,561,3.5\n506,562,4.0\n506,563,4.5\n506,564,5.0\n506,565,5.5\n506,566,6.0\n506,567,6.5\n506,568,7.0\n506,569,7.5\n506,570,8.0\n506,571,8.5\n506,572,9.0\n506,573,9.5\n506,574,10.0\n506,575,4.5\n506,576,4.0\n506,577,3.5\n506,578,3.0\n506,579,2.5\n506,580,2.0\n506,581,1.5\n506,582,2.0\n506,583,2.5\n506,584,3.0\n506,585,3.5\n506,586,4.0\n506,587,4.5\n506,588,5.0\n506,589,5.5\n506,590,6.0\n506,591,6.5\n506,592,7.0\n506,593,7.5\n506,594,8.0\n506,595,8.5\n506,596,9.0\n506,597,9.5\n506,598,10.0\n506,599,10.5\n506,600,5.0\n506,601,4.5\n506,602,4.0\n506,603,3.5\n506,604,3.0\n506,605,2.5\n506,606,2.0\n506,607,2.5\n506,608,3.0\n506,609,3.5\n506,610,4.0\n506,611,4.5\n506,612,5.0\n506,613,5.5\n506,614,6.0\n506,615,6.5\n506,616,7.0\n506,617,7.5\n506,618,8.0\n506,619,8.5\n506,620,9.0\n506,621,9.5\n506,622,10.0\n506,623,10.5\n506,624,11.0\n507,0,13.5\n507,1,13.0\n507,2,12.5\n507,3,12.0\n507,4,11.5\n507,5,11.0\n507,6,10.5\n507,7,10.0\n507,8,10.5\n507,9,11.0\n507,10,11.5\n507,11,12.0\n507,12,12.5\n507,13,13.0\n507,14,13.5\n507,15,14.0\n507,16,14.5\n507,17,15.0\n507,18,15.5\n507,19,16.0\n507,20,16.5\n507,21,17.0\n507,22,17.5\n507,23,18.0\n507,24,18.5\n507,25,13.0\n507,26,12.5\n507,27,12.0\n507,28,11.5\n507,29,11.0\n507,30,10.5\n507,31,10.0\n507,32,9.5\n507,33,10.0\n507,34,10.5\n507,35,11.0\n507,36,11.5\n507,37,12.0\n507,38,12.5\n507,39,13.0\n507,40,13.5\n507,41,14.0\n507,42,14.5\n507,43,15.0\n507,44,15.5\n507,45,16.0\n507,46,16.5\n507,47,17.0\n507,48,17.5\n507,49,18.0\n507,50,12.5\n507,51,12.0\n507,52,11.5\n507,53,11.0\n507,54,10.5\n507,55,10.0\n507,56,9.5\n507,57,9.0\n507,58,9.5\n507,59,10.0\n507,60,10.5\n507,61,11.0\n507,62,11.5\n507,63,12.0\n507,64,12.5\n507,65,13.0\n507,66,13.5\n507,67,14.0\n507,68,14.5\n507,69,15.0\n507,70,15.5\n507,71,16.0\n507,72,16.5\n507,73,17.0\n507,74,17.5\n507,75,12.0\n507,76,11.5\n507,77,11.0\n507,78,10.5\n507,79,10.0\n507,80,9.5\n507,81,9.0\n507,82,8.5\n507,83,9.0\n507,84,9.5\n507,85,10.0\n507,86,10.5\n507,87,11.0\n507,88,11.5\n507,89,12.0\n507,90,12.5\n507,91,13.0\n507,92,13.5\n507,93,14.0\n507,94,14.5\n507,95,15.0\n507,96,15.5\n507,97,16.0\n507,98,16.5\n507,99,17.0\n507,100,11.5\n507,101,11.0\n507,102,10.5\n507,103,10.0\n507,104,9.5\n507,105,9.0\n507,106,8.5\n507,107,8.0\n507,108,8.5\n507,109,9.0\n507,110,9.5\n507,111,10.0\n507,112,10.5\n507,113,11.0\n507,114,11.5\n507,115,12.0\n507,116,12.5\n507,117,13.0\n507,118,13.5\n507,119,14.0\n507,120,14.5\n507,121,15.0\n507,122,15.5\n507,123,16.0\n507,124,16.5\n507,125,11.0\n507,126,10.5\n507,127,10.0\n507,128,9.5\n507,129,9.0\n507,130,8.5\n507,131,8.0\n507,132,7.5\n507,133,8.0\n507,134,8.5\n507,135,9.0\n507,136,9.5\n507,137,10.0\n507,138,10.5\n507,139,11.0\n507,140,11.5\n507,141,12.0\n507,142,12.5\n507,143,13.0\n507,144,13.5\n507,145,14.0\n507,146,14.5\n507,147,15.0\n507,148,15.5\n507,149,16.0\n507,150,10.5\n507,151,10.0\n507,152,9.5\n507,153,9.0\n507,154,8.5\n507,155,8.0\n507,156,7.5\n507,157,7.0\n507,158,7.5\n507,159,8.0\n507,160,8.5\n507,161,9.0\n507,162,9.5\n507,163,10.0\n507,164,10.5\n507,165,11.0\n507,166,11.5\n507,167,12.0\n507,168,12.5\n507,169,13.0\n507,170,13.5\n507,171,14.0\n507,172,14.5\n507,173,15.0\n507,174,15.5\n507,175,10.0\n507,176,9.5\n507,177,9.0\n507,178,8.5\n507,179,8.0\n507,180,7.5\n507,181,7.0\n507,182,6.5\n507,183,7.0\n507,184,7.5\n507,185,8.0\n507,186,8.5\n507,187,9.0\n507,188,9.5\n507,189,10.0\n507,190,10.5\n507,191,11.0\n507,192,11.5\n507,193,12.0\n507,194,12.5\n507,195,13.0\n507,196,13.5\n507,197,14.0\n507,198,14.5\n507,199,15.0\n507,200,9.5\n507,201,9.0\n507,202,8.5\n507,203,8.0\n507,204,7.5\n507,205,7.0\n507,206,6.5\n507,207,6.0\n507,208,6.5\n507,209,7.0\n507,210,7.5\n507,211,8.0\n507,212,8.5\n507,213,9.0\n507,214,9.5\n507,215,10.0\n507,216,10.5\n507,217,11.0\n507,218,11.5\n507,219,12.0\n507,220,12.5\n507,221,13.0\n507,222,13.5\n507,223,14.0\n507,224,14.5\n507,225,9.0\n507,226,8.5\n507,227,8.0\n507,228,7.5\n507,229,7.0\n507,230,6.5\n507,231,6.0\n507,232,5.5\n507,233,6.0\n507,234,6.5\n507,235,7.0\n507,236,7.5\n507,237,8.0\n507,238,8.5\n507,239,9.0\n507,240,9.5\n507,241,10.0\n507,242,10.5\n507,243,11.0\n507,244,11.5\n507,245,12.0\n507,246,12.5\n507,247,13.0\n507,248,13.5\n507,249,14.0\n507,250,8.5\n507,251,8.0\n507,252,7.5\n507,253,7.0\n507,254,6.5\n507,255,6.0\n507,256,5.5\n507,257,5.0\n507,258,5.5\n507,259,6.0\n507,260,6.5\n507,261,7.0\n507,262,7.5\n507,263,8.0\n507,264,8.5\n507,265,9.0\n507,266,9.5\n507,267,10.0\n507,268,10.5\n507,269,11.0\n507,270,11.5\n507,271,12.0\n507,272,12.5\n507,273,13.0\n507,274,13.5\n507,275,8.0\n507,276,7.5\n507,277,7.0\n507,278,6.5\n507,279,6.0\n507,280,5.5\n507,281,5.0\n507,282,4.5\n507,283,5.0\n507,284,5.5\n507,285,6.0\n507,286,6.5\n507,287,7.0\n507,288,7.5\n507,289,8.0\n507,290,8.5\n507,291,9.0\n507,292,9.5\n507,293,10.0\n507,294,10.5\n507,295,11.0\n507,296,11.5\n507,297,12.0\n507,298,12.5\n507,299,13.0\n507,300,7.5\n507,301,7.0\n507,302,6.5\n507,303,6.0\n507,304,5.5\n507,305,5.0\n507,306,4.5\n507,307,4.0\n507,308,4.5\n507,309,5.0\n507,310,5.5\n507,311,6.0\n507,312,6.5\n507,313,7.0\n507,314,7.5\n507,315,8.0\n507,316,8.5\n507,317,9.0\n507,318,9.5\n507,319,10.0\n507,320,10.5\n507,321,11.0\n507,322,11.5\n507,323,12.0\n507,324,12.5\n507,325,7.0\n507,326,6.5\n507,327,6.0\n507,328,5.5\n507,329,5.0\n507,330,4.5\n507,331,4.0\n507,332,3.5\n507,333,4.0\n507,334,4.5\n507,335,5.0\n507,336,5.5\n507,337,6.0\n507,338,6.5\n507,339,7.0\n507,340,7.5\n507,341,8.0\n507,342,8.5\n507,343,9.0\n507,344,9.5\n507,345,10.0\n507,346,10.5\n507,347,11.0\n507,348,11.5\n507,349,12.0\n507,350,6.5\n507,351,6.0\n507,352,5.5\n507,353,5.0\n507,354,4.5\n507,355,4.0\n507,356,3.5\n507,357,3.0\n507,358,3.5\n507,359,4.0\n507,360,4.5\n507,361,5.0\n507,362,5.5\n507,363,6.0\n507,364,6.5\n507,365,7.0\n507,366,7.5\n507,367,8.0\n507,368,8.5\n507,369,9.0\n507,370,9.5\n507,371,10.0\n507,372,10.5\n507,373,11.0\n507,374,11.5\n507,375,6.0\n507,376,5.5\n507,377,5.0\n507,378,4.5\n507,379,4.0\n507,380,3.5\n507,381,3.0\n507,382,2.5\n507,383,3.0\n507,384,3.5\n507,385,4.0\n507,386,4.5\n507,387,5.0\n507,388,5.5\n507,389,6.0\n507,390,6.5\n507,391,7.0\n507,392,7.5\n507,393,8.0\n507,394,8.5\n507,395,9.0\n507,396,9.5\n507,397,10.0\n507,398,10.5\n507,399,11.0\n507,400,5.5\n507,401,5.0\n507,402,4.5\n507,403,4.0\n507,404,3.5\n507,405,3.0\n507,406,2.5\n507,407,2.0\n507,408,2.5\n507,409,3.0\n507,410,3.5\n507,411,4.0\n507,412,4.5\n507,413,5.0\n507,414,5.5\n507,415,6.0\n507,416,6.5\n507,417,7.0\n507,418,7.5\n507,419,8.0\n507,420,8.5\n507,421,9.0\n507,422,9.5\n507,423,10.0\n507,424,10.5\n507,425,5.0\n507,426,4.5\n507,427,4.0\n507,428,3.5\n507,429,3.0\n507,430,2.5\n507,431,2.0\n507,432,1.5\n507,433,2.0\n507,434,2.5\n507,435,3.0\n507,436,3.5\n507,437,4.0\n507,438,4.5\n507,439,5.0\n507,440,5.5\n507,441,6.0\n507,442,6.5\n507,443,7.0\n507,444,7.5\n507,445,8.0\n507,446,8.5\n507,447,9.0\n507,448,9.5\n507,449,10.0\n507,450,4.5\n507,451,4.0\n507,452,3.5\n507,453,3.0\n507,454,2.5\n507,455,2.0\n507,456,1.5\n507,457,1.0\n507,458,1.5\n507,459,2.0\n507,460,2.5\n507,461,3.0\n507,462,3.5\n507,463,4.0\n507,464,4.5\n507,465,5.0\n507,466,5.5\n507,467,6.0\n507,468,6.5\n507,469,7.0\n507,470,7.5\n507,471,8.0\n507,472,8.5\n507,473,9.0\n507,474,9.5\n507,475,4.0\n507,476,3.5\n507,477,3.0\n507,478,2.5\n507,479,2.0\n507,480,1.5\n507,481,1.0\n507,482,0.5\n507,483,1.0\n507,484,1.5\n507,485,2.0\n507,486,2.5\n507,487,3.0\n507,488,3.5\n507,489,4.0\n507,490,4.5\n507,491,5.0\n507,492,5.5\n507,493,6.0\n507,494,6.5\n507,495,7.0\n507,496,7.5\n507,497,8.0\n507,498,8.5\n507,499,9.0\n507,500,3.5\n507,501,3.0\n507,502,2.5\n507,503,2.0\n507,504,1.5\n507,505,1.0\n507,506,0.5\n507,507,0\n507,508,0.5\n507,509,1.0\n507,510,1.5\n507,511,2.0\n507,512,2.5\n507,513,3.0\n507,514,3.5\n507,515,4.0\n507,516,4.5\n507,517,5.0\n507,518,5.5\n507,519,6.0\n507,520,6.5\n507,521,7.0\n507,522,7.5\n507,523,8.0\n507,524,8.5\n507,525,4.0\n507,526,3.5\n507,527,3.0\n507,528,2.5\n507,529,2.0\n507,530,1.5\n507,531,1.0\n507,532,0.5\n507,533,1.0\n507,534,1.5\n507,535,2.0\n507,536,2.5\n507,537,3.0\n507,538,3.5\n507,539,4.0\n507,540,4.5\n507,541,5.0\n507,542,5.5\n507,543,6.0\n507,544,6.5\n507,545,7.0\n507,546,7.5\n507,547,8.0\n507,548,8.5\n507,549,9.0\n507,550,4.5\n507,551,4.0\n507,552,3.5\n507,553,3.0\n507,554,2.5\n507,555,2.0\n507,556,1.5\n507,557,1.0\n507,558,1.5\n507,559,2.0\n507,560,2.5\n507,561,3.0\n507,562,3.5\n507,563,4.0\n507,564,4.5\n507,565,5.0\n507,566,5.5\n507,567,6.0\n507,568,6.5\n507,569,7.0\n507,570,7.5\n507,571,8.0\n507,572,8.5\n507,573,9.0\n507,574,9.5\n507,575,5.0\n507,576,4.5\n507,577,4.0\n507,578,3.5\n507,579,3.0\n507,580,2.5\n507,581,2.0\n507,582,1.5\n507,583,2.0\n507,584,2.5\n507,585,3.0\n507,586,3.5\n507,587,4.0\n507,588,4.5\n507,589,5.0\n507,590,5.5\n507,591,6.0\n507,592,6.5\n507,593,7.0\n507,594,7.5\n507,595,8.0\n507,596,8.5\n507,597,9.0\n507,598,9.5\n507,599,10.0\n507,600,5.5\n507,601,5.0\n507,602,4.5\n507,603,4.0\n507,604,3.5\n507,605,3.0\n507,606,2.5\n507,607,2.0\n507,608,2.5\n507,609,3.0\n507,610,3.5\n507,611,4.0\n507,612,4.5\n507,613,5.0\n507,614,5.5\n507,615,6.0\n507,616,6.5\n507,617,7.0\n507,618,7.5\n507,619,8.0\n507,620,8.5\n507,621,9.0\n507,622,9.5\n507,623,10.0\n507,624,10.5\n508,0,14.0\n508,1,13.5\n508,2,13.0\n508,3,12.5\n508,4,12.0\n508,5,11.5\n508,6,11.0\n508,7,10.5\n508,8,10.0\n508,9,10.5\n508,10,11.0\n508,11,11.5\n508,12,12.0\n508,13,12.5\n508,14,13.0\n508,15,13.5\n508,16,14.0\n508,17,14.5\n508,18,15.0\n508,19,15.5\n508,20,16.0\n508,21,16.5\n508,22,17.0\n508,23,17.5\n508,24,18.0\n508,25,13.5\n508,26,13.0\n508,27,12.5\n508,28,12.0\n508,29,11.5\n508,30,11.0\n508,31,10.5\n508,32,10.0\n508,33,9.5\n508,34,10.0\n508,35,10.5\n508,36,11.0\n508,37,11.5\n508,38,12.0\n508,39,12.5\n508,40,13.0\n508,41,13.5\n508,42,14.0\n508,43,14.5\n508,44,15.0\n508,45,15.5\n508,46,16.0\n508,47,16.5\n508,48,17.0\n508,49,17.5\n508,50,13.0\n508,51,12.5\n508,52,12.0\n508,53,11.5\n508,54,11.0\n508,55,10.5\n508,56,10.0\n508,57,9.5\n508,58,9.0\n508,59,9.5\n508,60,10.0\n508,61,10.5\n508,62,11.0\n508,63,11.5\n508,64,12.0\n508,65,12.5\n508,66,13.0\n508,67,13.5\n508,68,14.0\n508,69,14.5\n508,70,15.0\n508,71,15.5\n508,72,16.0\n508,73,16.5\n508,74,17.0\n508,75,12.5\n508,76,12.0\n508,77,11.5\n508,78,11.0\n508,79,10.5\n508,80,10.0\n508,81,9.5\n508,82,9.0\n508,83,8.5\n508,84,9.0\n508,85,9.5\n508,86,10.0\n508,87,10.5\n508,88,11.0\n508,89,11.5\n508,90,12.0\n508,91,12.5\n508,92,13.0\n508,93,13.5\n508,94,14.0\n508,95,14.5\n508,96,15.0\n508,97,15.5\n508,98,16.0\n508,99,16.5\n508,100,12.0\n508,101,11.5\n508,102,11.0\n508,103,10.5\n508,104,10.0\n508,105,9.5\n508,106,9.0\n508,107,8.5\n508,108,8.0\n508,109,8.5\n508,110,9.0\n508,111,9.5\n508,112,10.0\n508,113,10.5\n508,114,11.0\n508,115,11.5\n508,116,12.0\n508,117,12.5\n508,118,13.0\n508,119,13.5\n508,120,14.0\n508,121,14.5\n508,122,15.0\n508,123,15.5\n508,124,16.0\n508,125,11.5\n508,126,11.0\n508,127,10.5\n508,128,10.0\n508,129,9.5\n508,130,9.0\n508,131,8.5\n508,132,8.0\n508,133,7.5\n508,134,8.0\n508,135,8.5\n508,136,9.0\n508,137,9.5\n508,138,10.0\n508,139,10.5\n508,140,11.0\n508,141,11.5\n508,142,12.0\n508,143,12.5\n508,144,13.0\n508,145,13.5\n508,146,14.0\n508,147,14.5\n508,148,15.0\n508,149,15.5\n508,150,11.0\n508,151,10.5\n508,152,10.0\n508,153,9.5\n508,154,9.0\n508,155,8.5\n508,156,8.0\n508,157,7.5\n508,158,7.0\n508,159,7.5\n508,160,8.0\n508,161,8.5\n508,162,9.0\n508,163,9.5\n508,164,10.0\n508,165,10.5\n508,166,11.0\n508,167,11.5\n508,168,12.0\n508,169,12.5\n508,170,13.0\n508,171,13.5\n508,172,14.0\n508,173,14.5\n508,174,15.0\n508,175,10.5\n508,176,10.0\n508,177,9.5\n508,178,9.0\n508,179,8.5\n508,180,8.0\n508,181,7.5\n508,182,7.0\n508,183,6.5\n508,184,7.0\n508,185,7.5\n508,186,8.0\n508,187,8.5\n508,188,9.0\n508,189,9.5\n508,190,10.0\n508,191,10.5\n508,192,11.0\n508,193,11.5\n508,194,12.0\n508,195,12.5\n508,196,13.0\n508,197,13.5\n508,198,14.0\n508,199,14.5\n508,200,10.0\n508,201,9.5\n508,202,9.0\n508,203,8.5\n508,204,8.0\n508,205,7.5\n508,206,7.0\n508,207,6.5\n508,208,6.0\n508,209,6.5\n508,210,7.0\n508,211,7.5\n508,212,8.0\n508,213,8.5\n508,214,9.0\n508,215,9.5\n508,216,10.0\n508,217,10.5\n508,218,11.0\n508,219,11.5\n508,220,12.0\n508,221,12.5\n508,222,13.0\n508,223,13.5\n508,224,14.0\n508,225,9.5\n508,226,9.0\n508,227,8.5\n508,228,8.0\n508,229,7.5\n508,230,7.0\n508,231,6.5\n508,232,6.0\n508,233,5.5\n508,234,6.0\n508,235,6.5\n508,236,7.0\n508,237,7.5\n508,238,8.0\n508,239,8.5\n508,240,9.0\n508,241,9.5\n508,242,10.0\n508,243,10.5\n508,244,11.0\n508,245,11.5\n508,246,12.0\n508,247,12.5\n508,248,13.0\n508,249,13.5\n508,250,9.0\n508,251,8.5\n508,252,8.0\n508,253,7.5\n508,254,7.0\n508,255,6.5\n508,256,6.0\n508,257,5.5\n508,258,5.0\n508,259,5.5\n508,260,6.0\n508,261,6.5\n508,262,7.0\n508,263,7.5\n508,264,8.0\n508,265,8.5\n508,266,9.0\n508,267,9.5\n508,268,10.0\n508,269,10.5\n508,270,11.0\n508,271,11.5\n508,272,12.0\n508,273,12.5\n508,274,13.0\n508,275,8.5\n508,276,8.0\n508,277,7.5\n508,278,7.0\n508,279,6.5\n508,280,6.0\n508,281,5.5\n508,282,5.0\n508,283,4.5\n508,284,5.0\n508,285,5.5\n508,286,6.0\n508,287,6.5\n508,288,7.0\n508,289,7.5\n508,290,8.0\n508,291,8.5\n508,292,9.0\n508,293,9.5\n508,294,10.0\n508,295,10.5\n508,296,11.0\n508,297,11.5\n508,298,12.0\n508,299,12.5\n508,300,8.0\n508,301,7.5\n508,302,7.0\n508,303,6.5\n508,304,6.0\n508,305,5.5\n508,306,5.0\n508,307,4.5\n508,308,4.0\n508,309,4.5\n508,310,5.0\n508,311,5.5\n508,312,6.0\n508,313,6.5\n508,314,7.0\n508,315,7.5\n508,316,8.0\n508,317,8.5\n508,318,9.0\n508,319,9.5\n508,320,10.0\n508,321,10.5\n508,322,11.0\n508,323,11.5\n508,324,12.0\n508,325,7.5\n508,326,7.0\n508,327,6.5\n508,328,6.0\n508,329,5.5\n508,330,5.0\n508,331,4.5\n508,332,4.0\n508,333,3.5\n508,334,4.0\n508,335,4.5\n508,336,5.0\n508,337,5.5\n508,338,6.0\n508,339,6.5\n508,340,7.0\n508,341,7.5\n508,342,8.0\n508,343,8.5\n508,344,9.0\n508,345,9.5\n508,346,10.0\n508,347,10.5\n508,348,11.0\n508,349,11.5\n508,350,7.0\n508,351,6.5\n508,352,6.0\n508,353,5.5\n508,354,5.0\n508,355,4.5\n508,356,4.0\n508,357,3.5\n508,358,3.0\n508,359,3.5\n508,360,4.0\n508,361,4.5\n508,362,5.0\n508,363,5.5\n508,364,6.0\n508,365,6.5\n508,366,7.0\n508,367,7.5\n508,368,8.0\n508,369,8.5\n508,370,9.0\n508,371,9.5\n508,372,10.0\n508,373,10.5\n508,374,11.0\n508,375,6.5\n508,376,6.0\n508,377,5.5\n508,378,5.0\n508,379,4.5\n508,380,4.0\n508,381,3.5\n508,382,3.0\n508,383,2.5\n508,384,3.0\n508,385,3.5\n508,386,4.0\n508,387,4.5\n508,388,5.0\n508,389,5.5\n508,390,6.0\n508,391,6.5\n508,392,7.0\n508,393,7.5\n508,394,8.0\n508,395,8.5\n508,396,9.0\n508,397,9.5\n508,398,10.0\n508,399,10.5\n508,400,6.0\n508,401,5.5\n508,402,5.0\n508,403,4.5\n508,404,4.0\n508,405,3.5\n508,406,3.0\n508,407,2.5\n508,408,2.0\n508,409,2.5\n508,410,3.0\n508,411,3.5\n508,412,4.0\n508,413,4.5\n508,414,5.0\n508,415,5.5\n508,416,6.0\n508,417,6.5\n508,418,7.0\n508,419,7.5\n508,420,8.0\n508,421,8.5\n508,422,9.0\n508,423,9.5\n508,424,10.0\n508,425,5.5\n508,426,5.0\n508,427,4.5\n508,428,4.0\n508,429,3.5\n508,430,3.0\n508,431,2.5\n508,432,2.0\n508,433,1.5\n508,434,2.0\n508,435,2.5\n508,436,3.0\n508,437,3.5\n508,438,4.0\n508,439,4.5\n508,440,5.0\n508,441,5.5\n508,442,6.0\n508,443,6.5\n508,444,7.0\n508,445,7.5\n508,446,8.0\n508,447,8.5\n508,448,9.0\n508,449,9.5\n508,450,5.0\n508,451,4.5\n508,452,4.0\n508,453,3.5\n508,454,3.0\n508,455,2.5\n508,456,2.0\n508,457,1.5\n508,458,1.0\n508,459,1.5\n508,460,2.0\n508,461,2.5\n508,462,3.0\n508,463,3.5\n508,464,4.0\n508,465,4.5\n508,466,5.0\n508,467,5.5\n508,468,6.0\n508,469,6.5\n508,470,7.0\n508,471,7.5\n508,472,8.0\n508,473,8.5\n508,474,9.0\n508,475,4.5\n508,476,4.0\n508,477,3.5\n508,478,3.0\n508,479,2.5\n508,480,2.0\n508,481,1.5\n508,482,1.0\n508,483,0.5\n508,484,1.0\n508,485,1.5\n508,486,2.0\n508,487,2.5\n508,488,3.0\n508,489,3.5\n508,490,4.0\n508,491,4.5\n508,492,5.0\n508,493,5.5\n508,494,6.0\n508,495,6.5\n508,496,7.0\n508,497,7.5\n508,498,8.0\n508,499,8.5\n508,500,4.0\n508,501,3.5\n508,502,3.0\n508,503,2.5\n508,504,2.0\n508,505,1.5\n508,506,1.0\n508,507,0.5\n508,508,0\n508,509,0.5\n508,510,1.0\n508,511,1.5\n508,512,2.0\n508,513,2.5\n508,514,3.0\n508,515,3.5\n508,516,4.0\n508,517,4.5\n508,518,5.0\n508,519,5.5\n508,520,6.0\n508,521,6.5\n508,522,7.0\n508,523,7.5\n508,524,8.0\n508,525,4.5\n508,526,4.0\n508,527,3.5\n508,528,3.0\n508,529,2.5\n508,530,2.0\n508,531,1.5\n508,532,1.0\n508,533,0.5\n508,534,1.0\n508,535,1.5\n508,536,2.0\n508,537,2.5\n508,538,3.0\n508,539,3.5\n508,540,4.0\n508,541,4.5\n508,542,5.0\n508,543,5.5\n508,544,6.0\n508,545,6.5\n508,546,7.0\n508,547,7.5\n508,548,8.0\n508,549,8.5\n508,550,5.0\n508,551,4.5\n508,552,4.0\n508,553,3.5\n508,554,3.0\n508,555,2.5\n508,556,2.0\n508,557,1.5\n508,558,1.0\n508,559,1.5\n508,560,2.0\n508,561,2.5\n508,562,3.0\n508,563,3.5\n508,564,4.0\n508,565,4.5\n508,566,5.0\n508,567,5.5\n508,568,6.0\n508,569,6.5\n508,570,7.0\n508,571,7.5\n508,572,8.0\n508,573,8.5\n508,574,9.0\n508,575,5.5\n508,576,5.0\n508,577,4.5\n508,578,4.0\n508,579,3.5\n508,580,3.0\n508,581,2.5\n508,582,2.0\n508,583,1.5\n508,584,2.0\n508,585,2.5\n508,586,3.0\n508,587,3.5\n508,588,4.0\n508,589,4.5\n508,590,5.0\n508,591,5.5\n508,592,6.0\n508,593,6.5\n508,594,7.0\n508,595,7.5\n508,596,8.0\n508,597,8.5\n508,598,9.0\n508,599,9.5\n508,600,6.0\n508,601,5.5\n508,602,5.0\n508,603,4.5\n508,604,4.0\n508,605,3.5\n508,606,3.0\n508,607,2.5\n508,608,2.0\n508,609,2.5\n508,610,3.0\n508,611,3.5\n508,612,4.0\n508,613,4.5\n508,614,5.0\n508,615,5.5\n508,616,6.0\n508,617,6.5\n508,618,7.0\n508,619,7.5\n508,620,8.0\n508,621,8.5\n508,622,9.0\n508,623,9.5\n508,624,10.0\n509,0,14.5\n509,1,14.0\n509,2,13.5\n509,3,13.0\n509,4,12.5\n509,5,12.0\n509,6,11.5\n509,7,11.0\n509,8,10.5\n509,9,10.0\n509,10,10.5\n509,11,11.0\n509,12,11.5\n509,13,12.0\n509,14,12.5\n509,15,13.0\n509,16,13.5\n509,17,14.0\n509,18,14.5\n509,19,15.0\n509,20,15.5\n509,21,16.0\n509,22,16.5\n509,23,17.0\n509,24,17.5\n509,25,14.0\n509,26,13.5\n509,27,13.0\n509,28,12.5\n509,29,12.0\n509,30,11.5\n509,31,11.0\n509,32,10.5\n509,33,10.0\n509,34,9.5\n509,35,10.0\n509,36,10.5\n509,37,11.0\n509,38,11.5\n509,39,12.0\n509,40,12.5\n509,41,13.0\n509,42,13.5\n509,43,14.0\n509,44,14.5\n509,45,15.0\n509,46,15.5\n509,47,16.0\n509,48,16.5\n509,49,17.0\n509,50,13.5\n509,51,13.0\n509,52,12.5\n509,53,12.0\n509,54,11.5\n509,55,11.0\n509,56,10.5\n509,57,10.0\n509,58,9.5\n509,59,9.0\n509,60,9.5\n509,61,10.0\n509,62,10.5\n509,63,11.0\n509,64,11.5\n509,65,12.0\n509,66,12.5\n509,67,13.0\n509,68,13.5\n509,69,14.0\n509,70,14.5\n509,71,15.0\n509,72,15.5\n509,73,16.0\n509,74,16.5\n509,75,13.0\n509,76,12.5\n509,77,12.0\n509,78,11.5\n509,79,11.0\n509,80,10.5\n509,81,10.0\n509,82,9.5\n509,83,9.0\n509,84,8.5\n509,85,9.0\n509,86,9.5\n509,87,10.0\n509,88,10.5\n509,89,11.0\n509,90,11.5\n509,91,12.0\n509,92,12.5\n509,93,13.0\n509,94,13.5\n509,95,14.0\n509,96,14.5\n509,97,15.0\n509,98,15.5\n509,99,16.0\n509,100,12.5\n509,101,12.0\n509,102,11.5\n509,103,11.0\n509,104,10.5\n509,105,10.0\n509,106,9.5\n509,107,9.0\n509,108,8.5\n509,109,8.0\n509,110,8.5\n509,111,9.0\n509,112,9.5\n509,113,10.0\n509,114,10.5\n509,115,11.0\n509,116,11.5\n509,117,12.0\n509,118,12.5\n509,119,13.0\n509,120,13.5\n509,121,14.0\n509,122,14.5\n509,123,15.0\n509,124,15.5\n509,125,12.0\n509,126,11.5\n509,127,11.0\n509,128,10.5\n509,129,10.0\n509,130,9.5\n509,131,9.0\n509,132,8.5\n509,133,8.0\n509,134,7.5\n509,135,8.0\n509,136,8.5\n509,137,9.0\n509,138,9.5\n509,139,10.0\n509,140,10.5\n509,141,11.0\n509,142,11.5\n509,143,12.0\n509,144,12.5\n509,145,13.0\n509,146,13.5\n509,147,14.0\n509,148,14.5\n509,149,15.0\n509,150,11.5\n509,151,11.0\n509,152,10.5\n509,153,10.0\n509,154,9.5\n509,155,9.0\n509,156,8.5\n509,157,8.0\n509,158,7.5\n509,159,7.0\n509,160,7.5\n509,161,8.0\n509,162,8.5\n509,163,9.0\n509,164,9.5\n509,165,10.0\n509,166,10.5\n509,167,11.0\n509,168,11.5\n509,169,12.0\n509,170,12.5\n509,171,13.0\n509,172,13.5\n509,173,14.0\n509,174,14.5\n509,175,11.0\n509,176,10.5\n509,177,10.0\n509,178,9.5\n509,179,9.0\n509,180,8.5\n509,181,8.0\n509,182,7.5\n509,183,7.0\n509,184,6.5\n509,185,7.0\n509,186,7.5\n509,187,8.0\n509,188,8.5\n509,189,9.0\n509,190,9.5\n509,191,10.0\n509,192,10.5\n509,193,11.0\n509,194,11.5\n509,195,12.0\n509,196,12.5\n509,197,13.0\n509,198,13.5\n509,199,14.0\n509,200,10.5\n509,201,10.0\n509,202,9.5\n509,203,9.0\n509,204,8.5\n509,205,8.0\n509,206,7.5\n509,207,7.0\n509,208,6.5\n509,209,6.0\n509,210,6.5\n509,211,7.0\n509,212,7.5\n509,213,8.0\n509,214,8.5\n509,215,9.0\n509,216,9.5\n509,217,10.0\n509,218,10.5\n509,219,11.0\n509,220,11.5\n509,221,12.0\n509,222,12.5\n509,223,13.0\n509,224,13.5\n509,225,10.0\n509,226,9.5\n509,227,9.0\n509,228,8.5\n509,229,8.0\n509,230,7.5\n509,231,7.0\n509,232,6.5\n509,233,6.0\n509,234,5.5\n509,235,6.0\n509,236,6.5\n509,237,7.0\n509,238,7.5\n509,239,8.0\n509,240,8.5\n509,241,9.0\n509,242,9.5\n509,243,10.0\n509,244,10.5\n509,245,11.0\n509,246,11.5\n509,247,12.0\n509,248,12.5\n509,249,13.0\n509,250,9.5\n509,251,9.0\n509,252,8.5\n509,253,8.0\n509,254,7.5\n509,255,7.0\n509,256,6.5\n509,257,6.0\n509,258,5.5\n509,259,5.0\n509,260,5.5\n509,261,6.0\n509,262,6.5\n509,263,7.0\n509,264,7.5\n509,265,8.0\n509,266,8.5\n509,267,9.0\n509,268,9.5\n509,269,10.0\n509,270,10.5\n509,271,11.0\n509,272,11.5\n509,273,12.0\n509,274,12.5\n509,275,9.0\n509,276,8.5\n509,277,8.0\n509,278,7.5\n509,279,7.0\n509,280,6.5\n509,281,6.0\n509,282,5.5\n509,283,5.0\n509,284,4.5\n509,285,5.0\n509,286,5.5\n509,287,6.0\n509,288,6.5\n509,289,7.0\n509,290,7.5\n509,291,8.0\n509,292,8.5\n509,293,9.0\n509,294,9.5\n509,295,10.0\n509,296,10.5\n509,297,11.0\n509,298,11.5\n509,299,12.0\n509,300,8.5\n509,301,8.0\n509,302,7.5\n509,303,7.0\n509,304,6.5\n509,305,6.0\n509,306,5.5\n509,307,5.0\n509,308,4.5\n509,309,4.0\n509,310,4.5\n509,311,5.0\n509,312,5.5\n509,313,6.0\n509,314,6.5\n509,315,7.0\n509,316,7.5\n509,317,8.0\n509,318,8.5\n509,319,9.0\n509,320,9.5\n509,321,10.0\n509,322,10.5\n509,323,11.0\n509,324,11.5\n509,325,8.0\n509,326,7.5\n509,327,7.0\n509,328,6.5\n509,329,6.0\n509,330,5.5\n509,331,5.0\n509,332,4.5\n509,333,4.0\n509,334,3.5\n509,335,4.0\n509,336,4.5\n509,337,5.0\n509,338,5.5\n509,339,6.0\n509,340,6.5\n509,341,7.0\n509,342,7.5\n509,343,8.0\n509,344,8.5\n509,345,9.0\n509,346,9.5\n509,347,10.0\n509,348,10.5\n509,349,11.0\n509,350,7.5\n509,351,7.0\n509,352,6.5\n509,353,6.0\n509,354,5.5\n509,355,5.0\n509,356,4.5\n509,357,4.0\n509,358,3.5\n509,359,3.0\n509,360,3.5\n509,361,4.0\n509,362,4.5\n509,363,5.0\n509,364,5.5\n509,365,6.0\n509,366,6.5\n509,367,7.0\n509,368,7.5\n509,369,8.0\n509,370,8.5\n509,371,9.0\n509,372,9.5\n509,373,10.0\n509,374,10.5\n509,375,7.0\n509,376,6.5\n509,377,6.0\n509,378,5.5\n509,379,5.0\n509,380,4.5\n509,381,4.0\n509,382,3.5\n509,383,3.0\n509,384,2.5\n509,385,3.0\n509,386,3.5\n509,387,4.0\n509,388,4.5\n509,389,5.0\n509,390,5.5\n509,391,6.0\n509,392,6.5\n509,393,7.0\n509,394,7.5\n509,395,8.0\n509,396,8.5\n509,397,9.0\n509,398,9.5\n509,399,10.0\n509,400,6.5\n509,401,6.0\n509,402,5.5\n509,403,5.0\n509,404,4.5\n509,405,4.0\n509,406,3.5\n509,407,3.0\n509,408,2.5\n509,409,2.0\n509,410,2.5\n509,411,3.0\n509,412,3.5\n509,413,4.0\n509,414,4.5\n509,415,5.0\n509,416,5.5\n509,417,6.0\n509,418,6.5\n509,419,7.0\n509,420,7.5\n509,421,8.0\n509,422,8.5\n509,423,9.0\n509,424,9.5\n509,425,6.0\n509,426,5.5\n509,427,5.0\n509,428,4.5\n509,429,4.0\n509,430,3.5\n509,431,3.0\n509,432,2.5\n509,433,2.0\n509,434,1.5\n509,435,2.0\n509,436,2.5\n509,437,3.0\n509,438,3.5\n509,439,4.0\n509,440,4.5\n509,441,5.0\n509,442,5.5\n509,443,6.0\n509,444,6.5\n509,445,7.0\n509,446,7.5\n509,447,8.0\n509,448,8.5\n509,449,9.0\n509,450,5.5\n509,451,5.0\n509,452,4.5\n509,453,4.0\n509,454,3.5\n509,455,3.0\n509,456,2.5\n509,457,2.0\n509,458,1.5\n509,459,1.0\n509,460,1.5\n509,461,2.0\n509,462,2.5\n509,463,3.0\n509,464,3.5\n509,465,4.0\n509,466,4.5\n509,467,5.0\n509,468,5.5\n509,469,6.0\n509,470,6.5\n509,471,7.0\n509,472,7.5\n509,473,8.0\n509,474,8.5\n509,475,5.0\n509,476,4.5\n509,477,4.0\n509,478,3.5\n509,479,3.0\n509,480,2.5\n509,481,2.0\n509,482,1.5\n509,483,1.0\n509,484,0.5\n509,485,1.0\n509,486,1.5\n509,487,2.0\n509,488,2.5\n509,489,3.0\n509,490,3.5\n509,491,4.0\n509,492,4.5\n509,493,5.0\n509,494,5.5\n509,495,6.0\n509,496,6.5\n509,497,7.0\n509,498,7.5\n509,499,8.0\n509,500,4.5\n509,501,4.0\n509,502,3.5\n509,503,3.0\n509,504,2.5\n509,505,2.0\n509,506,1.5\n509,507,1.0\n509,508,0.5\n509,509,0\n509,510,0.5\n509,511,1.0\n509,512,1.5\n509,513,2.0\n509,514,2.5\n509,515,3.0\n509,516,3.5\n509,517,4.0\n509,518,4.5\n509,519,5.0\n509,520,5.5\n509,521,6.0\n509,522,6.5\n509,523,7.0\n509,524,7.5\n509,525,5.0\n509,526,4.5\n509,527,4.0\n509,528,3.5\n509,529,3.0\n509,530,2.5\n509,531,2.0\n509,532,1.5\n509,533,1.0\n509,534,0.5\n509,535,1.0\n509,536,1.5\n509,537,2.0\n509,538,2.5\n509,539,3.0\n509,540,3.5\n509,541,4.0\n509,542,4.5\n509,543,5.0\n509,544,5.5\n509,545,6.0\n509,546,6.5\n509,547,7.0\n509,548,7.5\n509,549,8.0\n509,550,5.5\n509,551,5.0\n509,552,4.5\n509,553,4.0\n509,554,3.5\n509,555,3.0\n509,556,2.5\n509,557,2.0\n509,558,1.5\n509,559,1.0\n509,560,1.5\n509,561,2.0\n509,562,2.5\n509,563,3.0\n509,564,3.5\n509,565,4.0\n509,566,4.5\n509,567,5.0\n509,568,5.5\n509,569,6.0\n509,570,6.5\n509,571,7.0\n509,572,7.5\n509,573,8.0\n509,574,8.5\n509,575,6.0\n509,576,5.5\n509,577,5.0\n509,578,4.5\n509,579,4.0\n509,580,3.5\n509,581,3.0\n509,582,2.5\n509,583,2.0\n509,584,1.5\n509,585,2.0\n509,586,2.5\n509,587,3.0\n509,588,3.5\n509,589,4.0\n509,590,4.5\n509,591,5.0\n509,592,5.5\n509,593,6.0\n509,594,6.5\n509,595,7.0\n509,596,7.5\n509,597,8.0\n509,598,8.5\n509,599,9.0\n509,600,6.5\n509,601,6.0\n509,602,5.5\n509,603,5.0\n509,604,4.5\n509,605,4.0\n509,606,3.5\n509,607,3.0\n509,608,2.5\n509,609,2.0\n509,610,2.5\n509,611,3.0\n509,612,3.5\n509,613,4.0\n509,614,4.5\n509,615,5.0\n509,616,5.5\n509,617,6.0\n509,618,6.5\n509,619,7.0\n509,620,7.5\n509,621,8.0\n509,622,8.5\n509,623,9.0\n509,624,9.5\n510,0,15.0\n510,1,14.5\n510,2,14.0\n510,3,13.5\n510,4,13.0\n510,5,12.5\n510,6,12.0\n510,7,11.5\n510,8,11.0\n510,9,10.5\n510,10,10.0\n510,11,10.5\n510,12,11.0\n510,13,11.5\n510,14,12.0\n510,15,12.5\n510,16,13.0\n510,17,13.5\n510,18,14.0\n510,19,14.5\n510,20,15.0\n510,21,15.5\n510,22,16.0\n510,23,16.5\n510,24,17.0\n510,25,14.5\n510,26,14.0\n510,27,13.5\n510,28,13.0\n510,29,12.5\n510,30,12.0\n510,31,11.5\n510,32,11.0\n510,33,10.5\n510,34,10.0\n510,35,9.5\n510,36,10.0\n510,37,10.5\n510,38,11.0\n510,39,11.5\n510,40,12.0\n510,41,12.5\n510,42,13.0\n510,43,13.5\n510,44,14.0\n510,45,14.5\n510,46,15.0\n510,47,15.5\n510,48,16.0\n510,49,16.5\n510,50,14.0\n510,51,13.5\n510,52,13.0\n510,53,12.5\n510,54,12.0\n510,55,11.5\n510,56,11.0\n510,57,10.5\n510,58,10.0\n510,59,9.5\n510,60,9.0\n510,61,9.5\n510,62,10.0\n510,63,10.5\n510,64,11.0\n510,65,11.5\n510,66,12.0\n510,67,12.5\n510,68,13.0\n510,69,13.5\n510,70,14.0\n510,71,14.5\n510,72,15.0\n510,73,15.5\n510,74,16.0\n510,75,13.5\n510,76,13.0\n510,77,12.5\n510,78,12.0\n510,79,11.5\n510,80,11.0\n510,81,10.5\n510,82,10.0\n510,83,9.5\n510,84,9.0\n510,85,8.5\n510,86,9.0\n510,87,9.5\n510,88,10.0\n510,89,10.5\n510,90,11.0\n510,91,11.5\n510,92,12.0\n510,93,12.5\n510,94,13.0\n510,95,13.5\n510,96,14.0\n510,97,14.5\n510,98,15.0\n510,99,15.5\n510,100,13.0\n510,101,12.5\n510,102,12.0\n510,103,11.5\n510,104,11.0\n510,105,10.5\n510,106,10.0\n510,107,9.5\n510,108,9.0\n510,109,8.5\n510,110,8.0\n510,111,8.5\n510,112,9.0\n510,113,9.5\n510,114,10.0\n510,115,10.5\n510,116,11.0\n510,117,11.5\n510,118,12.0\n510,119,12.5\n510,120,13.0\n510,121,13.5\n510,122,14.0\n510,123,14.5\n510,124,15.0\n510,125,12.5\n510,126,12.0\n510,127,11.5\n510,128,11.0\n510,129,10.5\n510,130,10.0\n510,131,9.5\n510,132,9.0\n510,133,8.5\n510,134,8.0\n510,135,7.5\n510,136,8.0\n510,137,8.5\n510,138,9.0\n510,139,9.5\n510,140,10.0\n510,141,10.5\n510,142,11.0\n510,143,11.5\n510,144,12.0\n510,145,12.5\n510,146,13.0\n510,147,13.5\n510,148,14.0\n510,149,14.5\n510,150,12.0\n510,151,11.5\n510,152,11.0\n510,153,10.5\n510,154,10.0\n510,155,9.5\n510,156,9.0\n510,157,8.5\n510,158,8.0\n510,159,7.5\n510,160,7.0\n510,161,7.5\n510,162,8.0\n510,163,8.5\n510,164,9.0\n510,165,9.5\n510,166,10.0\n510,167,10.5\n510,168,11.0\n510,169,11.5\n510,170,12.0\n510,171,12.5\n510,172,13.0\n510,173,13.5\n510,174,14.0\n510,175,11.5\n510,176,11.0\n510,177,10.5\n510,178,10.0\n510,179,9.5\n510,180,9.0\n510,181,8.5\n510,182,8.0\n510,183,7.5\n510,184,7.0\n510,185,6.5\n510,186,7.0\n510,187,7.5\n510,188,8.0\n510,189,8.5\n510,190,9.0\n510,191,9.5\n510,192,10.0\n510,193,10.5\n510,194,11.0\n510,195,11.5\n510,196,12.0\n510,197,12.5\n510,198,13.0\n510,199,13.5\n510,200,11.0\n510,201,10.5\n510,202,10.0\n510,203,9.5\n510,204,9.0\n510,205,8.5\n510,206,8.0\n510,207,7.5\n510,208,7.0\n510,209,6.5\n510,210,6.0\n510,211,6.5\n510,212,7.0\n510,213,7.5\n510,214,8.0\n510,215,8.5\n510,216,9.0\n510,217,9.5\n510,218,10.0\n510,219,10.5\n510,220,11.0\n510,221,11.5\n510,222,12.0\n510,223,12.5\n510,224,13.0\n510,225,10.5\n510,226,10.0\n510,227,9.5\n510,228,9.0\n510,229,8.5\n510,230,8.0\n510,231,7.5\n510,232,7.0\n510,233,6.5\n510,234,6.0\n510,235,5.5\n510,236,6.0\n510,237,6.5\n510,238,7.0\n510,239,7.5\n510,240,8.0\n510,241,8.5\n510,242,9.0\n510,243,9.5\n510,244,10.0\n510,245,10.5\n510,246,11.0\n510,247,11.5\n510,248,12.0\n510,249,12.5\n510,250,10.0\n510,251,9.5\n510,252,9.0\n510,253,8.5\n510,254,8.0\n510,255,7.5\n510,256,7.0\n510,257,6.5\n510,258,6.0\n510,259,5.5\n510,260,5.0\n510,261,5.5\n510,262,6.0\n510,263,6.5\n510,264,7.0\n510,265,7.5\n510,266,8.0\n510,267,8.5\n510,268,9.0\n510,269,9.5\n510,270,10.0\n510,271,10.5\n510,272,11.0\n510,273,11.5\n510,274,12.0\n510,275,9.5\n510,276,9.0\n510,277,8.5\n510,278,8.0\n510,279,7.5\n510,280,7.0\n510,281,6.5\n510,282,6.0\n510,283,5.5\n510,284,5.0\n510,285,4.5\n510,286,5.0\n510,287,5.5\n510,288,6.0\n510,289,6.5\n510,290,7.0\n510,291,7.5\n510,292,8.0\n510,293,8.5\n510,294,9.0\n510,295,9.5\n510,296,10.0\n510,297,10.5\n510,298,11.0\n510,299,11.5\n510,300,9.0\n510,301,8.5\n510,302,8.0\n510,303,7.5\n510,304,7.0\n510,305,6.5\n510,306,6.0\n510,307,5.5\n510,308,5.0\n510,309,4.5\n510,310,4.0\n510,311,4.5\n510,312,5.0\n510,313,5.5\n510,314,6.0\n510,315,6.5\n510,316,7.0\n510,317,7.5\n510,318,8.0\n510,319,8.5\n510,320,9.0\n510,321,9.5\n510,322,10.0\n510,323,10.5\n510,324,11.0\n510,325,8.5\n510,326,8.0\n510,327,7.5\n510,328,7.0\n510,329,6.5\n510,330,6.0\n510,331,5.5\n510,332,5.0\n510,333,4.5\n510,334,4.0\n510,335,3.5\n510,336,4.0\n510,337,4.5\n510,338,5.0\n510,339,5.5\n510,340,6.0\n510,341,6.5\n510,342,7.0\n510,343,7.5\n510,344,8.0\n510,345,8.5\n510,346,9.0\n510,347,9.5\n510,348,10.0\n510,349,10.5\n510,350,8.0\n510,351,7.5\n510,352,7.0\n510,353,6.5\n510,354,6.0\n510,355,5.5\n510,356,5.0\n510,357,4.5\n510,358,4.0\n510,359,3.5\n510,360,3.0\n510,361,3.5\n510,362,4.0\n510,363,4.5\n510,364,5.0\n510,365,5.5\n510,366,6.0\n510,367,6.5\n510,368,7.0\n510,369,7.5\n510,370,8.0\n510,371,8.5\n510,372,9.0\n510,373,9.5\n510,374,10.0\n510,375,7.5\n510,376,7.0\n510,377,6.5\n510,378,6.0\n510,379,5.5\n510,380,5.0\n510,381,4.5\n510,382,4.0\n510,383,3.5\n510,384,3.0\n510,385,2.5\n510,386,3.0\n510,387,3.5\n510,388,4.0\n510,389,4.5\n510,390,5.0\n510,391,5.5\n510,392,6.0\n510,393,6.5\n510,394,7.0\n510,395,7.5\n510,396,8.0\n510,397,8.5\n510,398,9.0\n510,399,9.5\n510,400,7.0\n510,401,6.5\n510,402,6.0\n510,403,5.5\n510,404,5.0\n510,405,4.5\n510,406,4.0\n510,407,3.5\n510,408,3.0\n510,409,2.5\n510,410,2.0\n510,411,2.5\n510,412,3.0\n510,413,3.5\n510,414,4.0\n510,415,4.5\n510,416,5.0\n510,417,5.5\n510,418,6.0\n510,419,6.5\n510,420,7.0\n510,421,7.5\n510,422,8.0\n510,423,8.5\n510,424,9.0\n510,425,6.5\n510,426,6.0\n510,427,5.5\n510,428,5.0\n510,429,4.5\n510,430,4.0\n510,431,3.5\n510,432,3.0\n510,433,2.5\n510,434,2.0\n510,435,1.5\n510,436,2.0\n510,437,2.5\n510,438,3.0\n510,439,3.5\n510,440,4.0\n510,441,4.5\n510,442,5.0\n510,443,5.5\n510,444,6.0\n510,445,6.5\n510,446,7.0\n510,447,7.5\n510,448,8.0\n510,449,8.5\n510,450,6.0\n510,451,5.5\n510,452,5.0\n510,453,4.5\n510,454,4.0\n510,455,3.5\n510,456,3.0\n510,457,2.5\n510,458,2.0\n510,459,1.5\n510,460,1.0\n510,461,1.5\n510,462,2.0\n510,463,2.5\n510,464,3.0\n510,465,3.5\n510,466,4.0\n510,467,4.5\n510,468,5.0\n510,469,5.5\n510,470,6.0\n510,471,6.5\n510,472,7.0\n510,473,7.5\n510,474,8.0\n510,475,5.5\n510,476,5.0\n510,477,4.5\n510,478,4.0\n510,479,3.5\n510,480,3.0\n510,481,2.5\n510,482,2.0\n510,483,1.5\n510,484,1.0\n510,485,0.5\n510,486,1.0\n510,487,1.5\n510,488,2.0\n510,489,2.5\n510,490,3.0\n510,491,3.5\n510,492,4.0\n510,493,4.5\n510,494,5.0\n510,495,5.5\n510,496,6.0\n510,497,6.5\n510,498,7.0\n510,499,7.5\n510,500,5.0\n510,501,4.5\n510,502,4.0\n510,503,3.5\n510,504,3.0\n510,505,2.5\n510,506,2.0\n510,507,1.5\n510,508,1.0\n510,509,0.5\n510,510,0\n510,511,0.5\n510,512,1.0\n510,513,1.5\n510,514,2.0\n510,515,2.5\n510,516,3.0\n510,517,3.5\n510,518,4.0\n510,519,4.5\n510,520,5.0\n510,521,5.5\n510,522,6.0\n510,523,6.5\n510,524,7.0\n510,525,5.5\n510,526,5.0\n510,527,4.5\n510,528,4.0\n510,529,3.5\n510,530,3.0\n510,531,2.5\n510,532,2.0\n510,533,1.5\n510,534,1.0\n510,535,0.5\n510,536,1.0\n510,537,1.5\n510,538,2.0\n510,539,2.5\n510,540,3.0\n510,541,3.5\n510,542,4.0\n510,543,4.5\n510,544,5.0\n510,545,5.5\n510,546,6.0\n510,547,6.5\n510,548,7.0\n510,549,7.5\n510,550,6.0\n510,551,5.5\n510,552,5.0\n510,553,4.5\n510,554,4.0\n510,555,3.5\n510,556,3.0\n510,557,2.5\n510,558,2.0\n510,559,1.5\n510,560,1.0\n510,561,1.5\n510,562,2.0\n510,563,2.5\n510,564,3.0\n510,565,3.5\n510,566,4.0\n510,567,4.5\n510,568,5.0\n510,569,5.5\n510,570,6.0\n510,571,6.5\n510,572,7.0\n510,573,7.5\n510,574,8.0\n510,575,6.5\n510,576,6.0\n510,577,5.5\n510,578,5.0\n510,579,4.5\n510,580,4.0\n510,581,3.5\n510,582,3.0\n510,583,2.5\n510,584,2.0\n510,585,1.5\n510,586,2.0\n510,587,2.5\n510,588,3.0\n510,589,3.5\n510,590,4.0\n510,591,4.5\n510,592,5.0\n510,593,5.5\n510,594,6.0\n510,595,6.5\n510,596,7.0\n510,597,7.5\n510,598,8.0\n510,599,8.5\n510,600,7.0\n510,601,6.5\n510,602,6.0\n510,603,5.5\n510,604,5.0\n510,605,4.5\n510,606,4.0\n510,607,3.5\n510,608,3.0\n510,609,2.5\n510,610,2.0\n510,611,2.5\n510,612,3.0\n510,613,3.5\n510,614,4.0\n510,615,4.5\n510,616,5.0\n510,617,5.5\n510,618,6.0\n510,619,6.5\n510,620,7.0\n510,621,7.5\n510,622,8.0\n510,623,8.5\n510,624,9.0\n511,0,15.5\n511,1,15.0\n511,2,14.5\n511,3,14.0\n511,4,13.5\n511,5,13.0\n511,6,12.5\n511,7,12.0\n511,8,11.5\n511,9,11.0\n511,10,10.5\n511,11,10.0\n511,12,10.5\n511,13,11.0\n511,14,11.5\n511,15,12.0\n511,16,12.5\n511,17,13.0\n511,18,13.5\n511,19,14.0\n511,20,14.5\n511,21,15.0\n511,22,15.5\n511,23,16.0\n511,24,16.5\n511,25,15.0\n511,26,14.5\n511,27,14.0\n511,28,13.5\n511,29,13.0\n511,30,12.5\n511,31,12.0\n511,32,11.5\n511,33,11.0\n511,34,10.5\n511,35,10.0\n511,36,9.5\n511,37,10.0\n511,38,10.5\n511,39,11.0\n511,40,11.5\n511,41,12.0\n511,42,12.5\n511,43,13.0\n511,44,13.5\n511,45,14.0\n511,46,14.5\n511,47,15.0\n511,48,15.5\n511,49,16.0\n511,50,14.5\n511,51,14.0\n511,52,13.5\n511,53,13.0\n511,54,12.5\n511,55,12.0\n511,56,11.5\n511,57,11.0\n511,58,10.5\n511,59,10.0\n511,60,9.5\n511,61,9.0\n511,62,9.5\n511,63,10.0\n511,64,10.5\n511,65,11.0\n511,66,11.5\n511,67,12.0\n511,68,12.5\n511,69,13.0\n511,70,13.5\n511,71,14.0\n511,72,14.5\n511,73,15.0\n511,74,15.5\n511,75,14.0\n511,76,13.5\n511,77,13.0\n511,78,12.5\n511,79,12.0\n511,80,11.5\n511,81,11.0\n511,82,10.5\n511,83,10.0\n511,84,9.5\n511,85,9.0\n511,86,8.5\n511,87,9.0\n511,88,9.5\n511,89,10.0\n511,90,10.5\n511,91,11.0\n511,92,11.5\n511,93,12.0\n511,94,12.5\n511,95,13.0\n511,96,13.5\n511,97,14.0\n511,98,14.5\n511,99,15.0\n511,100,13.5\n511,101,13.0\n511,102,12.5\n511,103,12.0\n511,104,11.5\n511,105,11.0\n511,106,10.5\n511,107,10.0\n511,108,9.5\n511,109,9.0\n511,110,8.5\n511,111,8.0\n511,112,8.5\n511,113,9.0\n511,114,9.5\n511,115,10.0\n511,116,10.5\n511,117,11.0\n511,118,11.5\n511,119,12.0\n511,120,12.5\n511,121,13.0\n511,122,13.5\n511,123,14.0\n511,124,14.5\n511,125,13.0\n511,126,12.5\n511,127,12.0\n511,128,11.5\n511,129,11.0\n511,130,10.5\n511,131,10.0\n511,132,9.5\n511,133,9.0\n511,134,8.5\n511,135,8.0\n511,136,7.5\n511,137,8.0\n511,138,8.5\n511,139,9.0\n511,140,9.5\n511,141,10.0\n511,142,10.5\n511,143,11.0\n511,144,11.5\n511,145,12.0\n511,146,12.5\n511,147,13.0\n511,148,13.5\n511,149,14.0\n511,150,12.5\n511,151,12.0\n511,152,11.5\n511,153,11.0\n511,154,10.5\n511,155,10.0\n511,156,9.5\n511,157,9.0\n511,158,8.5\n511,159,8.0\n511,160,7.5\n511,161,7.0\n511,162,7.5\n511,163,8.0\n511,164,8.5\n511,165,9.0\n511,166,9.5\n511,167,10.0\n511,168,10.5\n511,169,11.0\n511,170,11.5\n511,171,12.0\n511,172,12.5\n511,173,13.0\n511,174,13.5\n511,175,12.0\n511,176,11.5\n511,177,11.0\n511,178,10.5\n511,179,10.0\n511,180,9.5\n511,181,9.0\n511,182,8.5\n511,183,8.0\n511,184,7.5\n511,185,7.0\n511,186,6.5\n511,187,7.0\n511,188,7.5\n511,189,8.0\n511,190,8.5\n511,191,9.0\n511,192,9.5\n511,193,10.0\n511,194,10.5\n511,195,11.0\n511,196,11.5\n511,197,12.0\n511,198,12.5\n511,199,13.0\n511,200,11.5\n511,201,11.0\n511,202,10.5\n511,203,10.0\n511,204,9.5\n511,205,9.0\n511,206,8.5\n511,207,8.0\n511,208,7.5\n511,209,7.0\n511,210,6.5\n511,211,6.0\n511,212,6.5\n511,213,7.0\n511,214,7.5\n511,215,8.0\n511,216,8.5\n511,217,9.0\n511,218,9.5\n511,219,10.0\n511,220,10.5\n511,221,11.0\n511,222,11.5\n511,223,12.0\n511,224,12.5\n511,225,11.0\n511,226,10.5\n511,227,10.0\n511,228,9.5\n511,229,9.0\n511,230,8.5\n511,231,8.0\n511,232,7.5\n511,233,7.0\n511,234,6.5\n511,235,6.0\n511,236,5.5\n511,237,6.0\n511,238,6.5\n511,239,7.0\n511,240,7.5\n511,241,8.0\n511,242,8.5\n511,243,9.0\n511,244,9.5\n511,245,10.0\n511,246,10.5\n511,247,11.0\n511,248,11.5\n511,249,12.0\n511,250,10.5\n511,251,10.0\n511,252,9.5\n511,253,9.0\n511,254,8.5\n511,255,8.0\n511,256,7.5\n511,257,7.0\n511,258,6.5\n511,259,6.0\n511,260,5.5\n511,261,5.0\n511,262,5.5\n511,263,6.0\n511,264,6.5\n511,265,7.0\n511,266,7.5\n511,267,8.0\n511,268,8.5\n511,269,9.0\n511,270,9.5\n511,271,10.0\n511,272,10.5\n511,273,11.0\n511,274,11.5\n511,275,10.0\n511,276,9.5\n511,277,9.0\n511,278,8.5\n511,279,8.0\n511,280,7.5\n511,281,7.0\n511,282,6.5\n511,283,6.0\n511,284,5.5\n511,285,5.0\n511,286,4.5\n511,287,5.0\n511,288,5.5\n511,289,6.0\n511,290,6.5\n511,291,7.0\n511,292,7.5\n511,293,8.0\n511,294,8.5\n511,295,9.0\n511,296,9.5\n511,297,10.0\n511,298,10.5\n511,299,11.0\n511,300,9.5\n511,301,9.0\n511,302,8.5\n511,303,8.0\n511,304,7.5\n511,305,7.0\n511,306,6.5\n511,307,6.0\n511,308,5.5\n511,309,5.0\n511,310,4.5\n511,311,4.0\n511,312,4.5\n511,313,5.0\n511,314,5.5\n511,315,6.0\n511,316,6.5\n511,317,7.0\n511,318,7.5\n511,319,8.0\n511,320,8.5\n511,321,9.0\n511,322,9.5\n511,323,10.0\n511,324,10.5\n511,325,9.0\n511,326,8.5\n511,327,8.0\n511,328,7.5\n511,329,7.0\n511,330,6.5\n511,331,6.0\n511,332,5.5\n511,333,5.0\n511,334,4.5\n511,335,4.0\n511,336,3.5\n511,337,4.0\n511,338,4.5\n511,339,5.0\n511,340,5.5\n511,341,6.0\n511,342,6.5\n511,343,7.0\n511,344,7.5\n511,345,8.0\n511,346,8.5\n511,347,9.0\n511,348,9.5\n511,349,10.0\n511,350,8.5\n511,351,8.0\n511,352,7.5\n511,353,7.0\n511,354,6.5\n511,355,6.0\n511,356,5.5\n511,357,5.0\n511,358,4.5\n511,359,4.0\n511,360,3.5\n511,361,3.0\n511,362,3.5\n511,363,4.0\n511,364,4.5\n511,365,5.0\n511,366,5.5\n511,367,6.0\n511,368,6.5\n511,369,7.0\n511,370,7.5\n511,371,8.0\n511,372,8.5\n511,373,9.0\n511,374,9.5\n511,375,8.0\n511,376,7.5\n511,377,7.0\n511,378,6.5\n511,379,6.0\n511,380,5.5\n511,381,5.0\n511,382,4.5\n511,383,4.0\n511,384,3.5\n511,385,3.0\n511,386,2.5\n511,387,3.0\n511,388,3.5\n511,389,4.0\n511,390,4.5\n511,391,5.0\n511,392,5.5\n511,393,6.0\n511,394,6.5\n511,395,7.0\n511,396,7.5\n511,397,8.0\n511,398,8.5\n511,399,9.0\n511,400,7.5\n511,401,7.0\n511,402,6.5\n511,403,6.0\n511,404,5.5\n511,405,5.0\n511,406,4.5\n511,407,4.0\n511,408,3.5\n511,409,3.0\n511,410,2.5\n511,411,2.0\n511,412,2.5\n511,413,3.0\n511,414,3.5\n511,415,4.0\n511,416,4.5\n511,417,5.0\n511,418,5.5\n511,419,6.0\n511,420,6.5\n511,421,7.0\n511,422,7.5\n511,423,8.0\n511,424,8.5\n511,425,7.0\n511,426,6.5\n511,427,6.0\n511,428,5.5\n511,429,5.0\n511,430,4.5\n511,431,4.0\n511,432,3.5\n511,433,3.0\n511,434,2.5\n511,435,2.0\n511,436,1.5\n511,437,2.0\n511,438,2.5\n511,439,3.0\n511,440,3.5\n511,441,4.0\n511,442,4.5\n511,443,5.0\n511,444,5.5\n511,445,6.0\n511,446,6.5\n511,447,7.0\n511,448,7.5\n511,449,8.0\n511,450,6.5\n511,451,6.0\n511,452,5.5\n511,453,5.0\n511,454,4.5\n511,455,4.0\n511,456,3.5\n511,457,3.0\n511,458,2.5\n511,459,2.0\n511,460,1.5\n511,461,1.0\n511,462,1.5\n511,463,2.0\n511,464,2.5\n511,465,3.0\n511,466,3.5\n511,467,4.0\n511,468,4.5\n511,469,5.0\n511,470,5.5\n511,471,6.0\n511,472,6.5\n511,473,7.0\n511,474,7.5\n511,475,6.0\n511,476,5.5\n511,477,5.0\n511,478,4.5\n511,479,4.0\n511,480,3.5\n511,481,3.0\n511,482,2.5\n511,483,2.0\n511,484,1.5\n511,485,1.0\n511,486,0.5\n511,487,1.0\n511,488,1.5\n511,489,2.0\n511,490,2.5\n511,491,3.0\n511,492,3.5\n511,493,4.0\n511,494,4.5\n511,495,5.0\n511,496,5.5\n511,497,6.0\n511,498,6.5\n511,499,7.0\n511,500,5.5\n511,501,5.0\n511,502,4.5\n511,503,4.0\n511,504,3.5\n511,505,3.0\n511,506,2.5\n511,507,2.0\n511,508,1.5\n511,509,1.0\n511,510,0.5\n511,511,0\n511,512,0.5\n511,513,1.0\n511,514,1.5\n511,515,2.0\n511,516,2.5\n511,517,3.0\n511,518,3.5\n511,519,4.0\n511,520,4.5\n511,521,5.0\n511,522,5.5\n511,523,6.0\n511,524,6.5\n511,525,6.0\n511,526,5.5\n511,527,5.0\n511,528,4.5\n511,529,4.0\n511,530,3.5\n511,531,3.0\n511,532,2.5\n511,533,2.0\n511,534,1.5\n511,535,1.0\n511,536,0.5\n511,537,1.0\n511,538,1.5\n511,539,2.0\n511,540,2.5\n511,541,3.0\n511,542,3.5\n511,543,4.0\n511,544,4.5\n511,545,5.0\n511,546,5.5\n511,547,6.0\n511,548,6.5\n511,549,7.0\n511,550,6.5\n511,551,6.0\n511,552,5.5\n511,553,5.0\n511,554,4.5\n511,555,4.0\n511,556,3.5\n511,557,3.0\n511,558,2.5\n511,559,2.0\n511,560,1.5\n511,561,1.0\n511,562,1.5\n511,563,2.0\n511,564,2.5\n511,565,3.0\n511,566,3.5\n511,567,4.0\n511,568,4.5\n511,569,5.0\n511,570,5.5\n511,571,6.0\n511,572,6.5\n511,573,7.0\n511,574,7.5\n511,575,7.0\n511,576,6.5\n511,577,6.0\n511,578,5.5\n511,579,5.0\n511,580,4.5\n511,581,4.0\n511,582,3.5\n511,583,3.0\n511,584,2.5\n511,585,2.0\n511,586,1.5\n511,587,2.0\n511,588,2.5\n511,589,3.0\n511,590,3.5\n511,591,4.0\n511,592,4.5\n511,593,5.0\n511,594,5.5\n511,595,6.0\n511,596,6.5\n511,597,7.0\n511,598,7.5\n511,599,8.0\n511,600,7.5\n511,601,7.0\n511,602,6.5\n511,603,6.0\n511,604,5.5\n511,605,5.0\n511,606,4.5\n511,607,4.0\n511,608,3.5\n511,609,3.0\n511,610,2.5\n511,611,2.0\n511,612,2.5\n511,613,3.0\n511,614,3.5\n511,615,4.0\n511,616,4.5\n511,617,5.0\n511,618,5.5\n511,619,6.0\n511,620,6.5\n511,621,7.0\n511,622,7.5\n511,623,8.0\n511,624,8.5\n512,0,16.0\n512,1,15.5\n512,2,15.0\n512,3,14.5\n512,4,14.0\n512,5,13.5\n512,6,13.0\n512,7,12.5\n512,8,12.0\n512,9,11.5\n512,10,11.0\n512,11,10.5\n512,12,10.0\n512,13,10.5\n512,14,11.0\n512,15,11.5\n512,16,12.0\n512,17,12.5\n512,18,13.0\n512,19,13.5\n512,20,14.0\n512,21,14.5\n512,22,15.0\n512,23,15.5\n512,24,16.0\n512,25,15.5\n512,26,15.0\n512,27,14.5\n512,28,14.0\n512,29,13.5\n512,30,13.0\n512,31,12.5\n512,32,12.0\n512,33,11.5\n512,34,11.0\n512,35,10.5\n512,36,10.0\n512,37,9.5\n512,38,10.0\n512,39,10.5\n512,40,11.0\n512,41,11.5\n512,42,12.0\n512,43,12.5\n512,44,13.0\n512,45,13.5\n512,46,14.0\n512,47,14.5\n512,48,15.0\n512,49,15.5\n512,50,15.0\n512,51,14.5\n512,52,14.0\n512,53,13.5\n512,54,13.0\n512,55,12.5\n512,56,12.0\n512,57,11.5\n512,58,11.0\n512,59,10.5\n512,60,10.0\n512,61,9.5\n512,62,9.0\n512,63,9.5\n512,64,10.0\n512,65,10.5\n512,66,11.0\n512,67,11.5\n512,68,12.0\n512,69,12.5\n512,70,13.0\n512,71,13.5\n512,72,14.0\n512,73,14.5\n512,74,15.0\n512,75,14.5\n512,76,14.0\n512,77,13.5\n512,78,13.0\n512,79,12.5\n512,80,12.0\n512,81,11.5\n512,82,11.0\n512,83,10.5\n512,84,10.0\n512,85,9.5\n512,86,9.0\n512,87,8.5\n512,88,9.0\n512,89,9.5\n512,90,10.0\n512,91,10.5\n512,92,11.0\n512,93,11.5\n512,94,12.0\n512,95,12.5\n512,96,13.0\n512,97,13.5\n512,98,14.0\n512,99,14.5\n512,100,14.0\n512,101,13.5\n512,102,13.0\n512,103,12.5\n512,104,12.0\n512,105,11.5\n512,106,11.0\n512,107,10.5\n512,108,10.0\n512,109,9.5\n512,110,9.0\n512,111,8.5\n512,112,8.0\n512,113,8.5\n512,114,9.0\n512,115,9.5\n512,116,10.0\n512,117,10.5\n512,118,11.0\n512,119,11.5\n512,120,12.0\n512,121,12.5\n512,122,13.0\n512,123,13.5\n512,124,14.0\n512,125,13.5\n512,126,13.0\n512,127,12.5\n512,128,12.0\n512,129,11.5\n512,130,11.0\n512,131,10.5\n512,132,10.0\n512,133,9.5\n512,134,9.0\n512,135,8.5\n512,136,8.0\n512,137,7.5\n512,138,8.0\n512,139,8.5\n512,140,9.0\n512,141,9.5\n512,142,10.0\n512,143,10.5\n512,144,11.0\n512,145,11.5\n512,146,12.0\n512,147,12.5\n512,148,13.0\n512,149,13.5\n512,150,13.0\n512,151,12.5\n512,152,12.0\n512,153,11.5\n512,154,11.0\n512,155,10.5\n512,156,10.0\n512,157,9.5\n512,158,9.0\n512,159,8.5\n512,160,8.0\n512,161,7.5\n512,162,7.0\n512,163,7.5\n512,164,8.0\n512,165,8.5\n512,166,9.0\n512,167,9.5\n512,168,10.0\n512,169,10.5\n512,170,11.0\n512,171,11.5\n512,172,12.0\n512,173,12.5\n512,174,13.0\n512,175,12.5\n512,176,12.0\n512,177,11.5\n512,178,11.0\n512,179,10.5\n512,180,10.0\n512,181,9.5\n512,182,9.0\n512,183,8.5\n512,184,8.0\n512,185,7.5\n512,186,7.0\n512,187,6.5\n512,188,7.0\n512,189,7.5\n512,190,8.0\n512,191,8.5\n512,192,9.0\n512,193,9.5\n512,194,10.0\n512,195,10.5\n512,196,11.0\n512,197,11.5\n512,198,12.0\n512,199,12.5\n512,200,12.0\n512,201,11.5\n512,202,11.0\n512,203,10.5\n512,204,10.0\n512,205,9.5\n512,206,9.0\n512,207,8.5\n512,208,8.0\n512,209,7.5\n512,210,7.0\n512,211,6.5\n512,212,6.0\n512,213,6.5\n512,214,7.0\n512,215,7.5\n512,216,8.0\n512,217,8.5\n512,218,9.0\n512,219,9.5\n512,220,10.0\n512,221,10.5\n512,222,11.0\n512,223,11.5\n512,224,12.0\n512,225,11.5\n512,226,11.0\n512,227,10.5\n512,228,10.0\n512,229,9.5\n512,230,9.0\n512,231,8.5\n512,232,8.0\n512,233,7.5\n512,234,7.0\n512,235,6.5\n512,236,6.0\n512,237,5.5\n512,238,6.0\n512,239,6.5\n512,240,7.0\n512,241,7.5\n512,242,8.0\n512,243,8.5\n512,244,9.0\n512,245,9.5\n512,246,10.0\n512,247,10.5\n512,248,11.0\n512,249,11.5\n512,250,11.0\n512,251,10.5\n512,252,10.0\n512,253,9.5\n512,254,9.0\n512,255,8.5\n512,256,8.0\n512,257,7.5\n512,258,7.0\n512,259,6.5\n512,260,6.0\n512,261,5.5\n512,262,5.0\n512,263,5.5\n512,264,6.0\n512,265,6.5\n512,266,7.0\n512,267,7.5\n512,268,8.0\n512,269,8.5\n512,270,9.0\n512,271,9.5\n512,272,10.0\n512,273,10.5\n512,274,11.0\n512,275,10.5\n512,276,10.0\n512,277,9.5\n512,278,9.0\n512,279,8.5\n512,280,8.0\n512,281,7.5\n512,282,7.0\n512,283,6.5\n512,284,6.0\n512,285,5.5\n512,286,5.0\n512,287,4.5\n512,288,5.0\n512,289,5.5\n512,290,6.0\n512,291,6.5\n512,292,7.0\n512,293,7.5\n512,294,8.0\n512,295,8.5\n512,296,9.0\n512,297,9.5\n512,298,10.0\n512,299,10.5\n512,300,10.0\n512,301,9.5\n512,302,9.0\n512,303,8.5\n512,304,8.0\n512,305,7.5\n512,306,7.0\n512,307,6.5\n512,308,6.0\n512,309,5.5\n512,310,5.0\n512,311,4.5\n512,312,4.0\n512,313,4.5\n512,314,5.0\n512,315,5.5\n512,316,6.0\n512,317,6.5\n512,318,7.0\n512,319,7.5\n512,320,8.0\n512,321,8.5\n512,322,9.0\n512,323,9.5\n512,324,10.0\n512,325,9.5\n512,326,9.0\n512,327,8.5\n512,328,8.0\n512,329,7.5\n512,330,7.0\n512,331,6.5\n512,332,6.0\n512,333,5.5\n512,334,5.0\n512,335,4.5\n512,336,4.0\n512,337,3.5\n512,338,4.0\n512,339,4.5\n512,340,5.0\n512,341,5.5\n512,342,6.0\n512,343,6.5\n512,344,7.0\n512,345,7.5\n512,346,8.0\n512,347,8.5\n512,348,9.0\n512,349,9.5\n512,350,9.0\n512,351,8.5\n512,352,8.0\n512,353,7.5\n512,354,7.0\n512,355,6.5\n512,356,6.0\n512,357,5.5\n512,358,5.0\n512,359,4.5\n512,360,4.0\n512,361,3.5\n512,362,3.0\n512,363,3.5\n512,364,4.0\n512,365,4.5\n512,366,5.0\n512,367,5.5\n512,368,6.0\n512,369,6.5\n512,370,7.0\n512,371,7.5\n512,372,8.0\n512,373,8.5\n512,374,9.0\n512,375,8.5\n512,376,8.0\n512,377,7.5\n512,378,7.0\n512,379,6.5\n512,380,6.0\n512,381,5.5\n512,382,5.0\n512,383,4.5\n512,384,4.0\n512,385,3.5\n512,386,3.0\n512,387,2.5\n512,388,3.0\n512,389,3.5\n512,390,4.0\n512,391,4.5\n512,392,5.0\n512,393,5.5\n512,394,6.0\n512,395,6.5\n512,396,7.0\n512,397,7.5\n512,398,8.0\n512,399,8.5\n512,400,8.0\n512,401,7.5\n512,402,7.0\n512,403,6.5\n512,404,6.0\n512,405,5.5\n512,406,5.0\n512,407,4.5\n512,408,4.0\n512,409,3.5\n512,410,3.0\n512,411,2.5\n512,412,2.0\n512,413,2.5\n512,414,3.0\n512,415,3.5\n512,416,4.0\n512,417,4.5\n512,418,5.0\n512,419,5.5\n512,420,6.0\n512,421,6.5\n512,422,7.0\n512,423,7.5\n512,424,8.0\n512,425,7.5\n512,426,7.0\n512,427,6.5\n512,428,6.0\n512,429,5.5\n512,430,5.0\n512,431,4.5\n512,432,4.0\n512,433,3.5\n512,434,3.0\n512,435,2.5\n512,436,2.0\n512,437,1.5\n512,438,2.0\n512,439,2.5\n512,440,3.0\n512,441,3.5\n512,442,4.0\n512,443,4.5\n512,444,5.0\n512,445,5.5\n512,446,6.0\n512,447,6.5\n512,448,7.0\n512,449,7.5\n512,450,7.0\n512,451,6.5\n512,452,6.0\n512,453,5.5\n512,454,5.0\n512,455,4.5\n512,456,4.0\n512,457,3.5\n512,458,3.0\n512,459,2.5\n512,460,2.0\n512,461,1.5\n512,462,1.0\n512,463,1.5\n512,464,2.0\n512,465,2.5\n512,466,3.0\n512,467,3.5\n512,468,4.0\n512,469,4.5\n512,470,5.0\n512,471,5.5\n512,472,6.0\n512,473,6.5\n512,474,7.0\n512,475,6.5\n512,476,6.0\n512,477,5.5\n512,478,5.0\n512,479,4.5\n512,480,4.0\n512,481,3.5\n512,482,3.0\n512,483,2.5\n512,484,2.0\n512,485,1.5\n512,486,1.0\n512,487,0.5\n512,488,1.0\n512,489,1.5\n512,490,2.0\n512,491,2.5\n512,492,3.0\n512,493,3.5\n512,494,4.0\n512,495,4.5\n512,496,5.0\n512,497,5.5\n512,498,6.0\n512,499,6.5\n512,500,6.0\n512,501,5.5\n512,502,5.0\n512,503,4.5\n512,504,4.0\n512,505,3.5\n512,506,3.0\n512,507,2.5\n512,508,2.0\n512,509,1.5\n512,510,1.0\n512,511,0.5\n512,512,0\n512,513,0.5\n512,514,1.0\n512,515,1.5\n512,516,2.0\n512,517,2.5\n512,518,3.0\n512,519,3.5\n512,520,4.0\n512,521,4.5\n512,522,5.0\n512,523,5.5\n512,524,6.0\n512,525,6.5\n512,526,6.0\n512,527,5.5\n512,528,5.0\n512,529,4.5\n512,530,4.0\n512,531,3.5\n512,532,3.0\n512,533,2.5\n512,534,2.0\n512,535,1.5\n512,536,1.0\n512,537,0.5\n512,538,1.0\n512,539,1.5\n512,540,2.0\n512,541,2.5\n512,542,3.0\n512,543,3.5\n512,544,4.0\n512,545,4.5\n512,546,5.0\n512,547,5.5\n512,548,6.0\n512,549,6.5\n512,550,7.0\n512,551,6.5\n512,552,6.0\n512,553,5.5\n512,554,5.0\n512,555,4.5\n512,556,4.0\n512,557,3.5\n512,558,3.0\n512,559,2.5\n512,560,2.0\n512,561,1.5\n512,562,1.0\n512,563,1.5\n512,564,2.0\n512,565,2.5\n512,566,3.0\n512,567,3.5\n512,568,4.0\n512,569,4.5\n512,570,5.0\n512,571,5.5\n512,572,6.0\n512,573,6.5\n512,574,7.0\n512,575,7.5\n512,576,7.0\n512,577,6.5\n512,578,6.0\n512,579,5.5\n512,580,5.0\n512,581,4.5\n512,582,4.0\n512,583,3.5\n512,584,3.0\n512,585,2.5\n512,586,2.0\n512,587,1.5\n512,588,2.0\n512,589,2.5\n512,590,3.0\n512,591,3.5\n512,592,4.0\n512,593,4.5\n512,594,5.0\n512,595,5.5\n512,596,6.0\n512,597,6.5\n512,598,7.0\n512,599,7.5\n512,600,8.0\n512,601,7.5\n512,602,7.0\n512,603,6.5\n512,604,6.0\n512,605,5.5\n512,606,5.0\n512,607,4.5\n512,608,4.0\n512,609,3.5\n512,610,3.0\n512,611,2.5\n512,612,2.0\n512,613,2.5\n512,614,3.0\n512,615,3.5\n512,616,4.0\n512,617,4.5\n512,618,5.0\n512,619,5.5\n512,620,6.0\n512,621,6.5\n512,622,7.0\n512,623,7.5\n512,624,8.0\n513,0,16.5\n513,1,16.0\n513,2,15.5\n513,3,15.0\n513,4,14.5\n513,5,14.0\n513,6,13.5\n513,7,13.0\n513,8,12.5\n513,9,12.0\n513,10,11.5\n513,11,11.0\n513,12,10.5\n513,13,10.0\n513,14,10.5\n513,15,11.0\n513,16,11.5\n513,17,12.0\n513,18,12.5\n513,19,13.0\n513,20,13.5\n513,21,14.0\n513,22,14.5\n513,23,15.0\n513,24,15.5\n513,25,16.0\n513,26,15.5\n513,27,15.0\n513,28,14.5\n513,29,14.0\n513,30,13.5\n513,31,13.0\n513,32,12.5\n513,33,12.0\n513,34,11.5\n513,35,11.0\n513,36,10.5\n513,37,10.0\n513,38,9.5\n513,39,10.0\n513,40,10.5\n513,41,11.0\n513,42,11.5\n513,43,12.0\n513,44,12.5\n513,45,13.0\n513,46,13.5\n513,47,14.0\n513,48,14.5\n513,49,15.0\n513,50,15.5\n513,51,15.0\n513,52,14.5\n513,53,14.0\n513,54,13.5\n513,55,13.0\n513,56,12.5\n513,57,12.0\n513,58,11.5\n513,59,11.0\n513,60,10.5\n513,61,10.0\n513,62,9.5\n513,63,9.0\n513,64,9.5\n513,65,10.0\n513,66,10.5\n513,67,11.0\n513,68,11.5\n513,69,12.0\n513,70,12.5\n513,71,13.0\n513,72,13.5\n513,73,14.0\n513,74,14.5\n513,75,15.0\n513,76,14.5\n513,77,14.0\n513,78,13.5\n513,79,13.0\n513,80,12.5\n513,81,12.0\n513,82,11.5\n513,83,11.0\n513,84,10.5\n513,85,10.0\n513,86,9.5\n513,87,9.0\n513,88,8.5\n513,89,9.0\n513,90,9.5\n513,91,10.0\n513,92,10.5\n513,93,11.0\n513,94,11.5\n513,95,12.0\n513,96,12.5\n513,97,13.0\n513,98,13.5\n513,99,14.0\n513,100,14.5\n513,101,14.0\n513,102,13.5\n513,103,13.0\n513,104,12.5\n513,105,12.0\n513,106,11.5\n513,107,11.0\n513,108,10.5\n513,109,10.0\n513,110,9.5\n513,111,9.0\n513,112,8.5\n513,113,8.0\n513,114,8.5\n513,115,9.0\n513,116,9.5\n513,117,10.0\n513,118,10.5\n513,119,11.0\n513,120,11.5\n513,121,12.0\n513,122,12.5\n513,123,13.0\n513,124,13.5\n513,125,14.0\n513,126,13.5\n513,127,13.0\n513,128,12.5\n513,129,12.0\n513,130,11.5\n513,131,11.0\n513,132,10.5\n513,133,10.0\n513,134,9.5\n513,135,9.0\n513,136,8.5\n513,137,8.0\n513,138,7.5\n513,139,8.0\n513,140,8.5\n513,141,9.0\n513,142,9.5\n513,143,10.0\n513,144,10.5\n513,145,11.0\n513,146,11.5\n513,147,12.0\n513,148,12.5\n513,149,13.0\n513,150,13.5\n513,151,13.0\n513,152,12.5\n513,153,12.0\n513,154,11.5\n513,155,11.0\n513,156,10.5\n513,157,10.0\n513,158,9.5\n513,159,9.0\n513,160,8.5\n513,161,8.0\n513,162,7.5\n513,163,7.0\n513,164,7.5\n513,165,8.0\n513,166,8.5\n513,167,9.0\n513,168,9.5\n513,169,10.0\n513,170,10.5\n513,171,11.0\n513,172,11.5\n513,173,12.0\n513,174,12.5\n513,175,13.0\n513,176,12.5\n513,177,12.0\n513,178,11.5\n513,179,11.0\n513,180,10.5\n513,181,10.0\n513,182,9.5\n513,183,9.0\n513,184,8.5\n513,185,8.0\n513,186,7.5\n513,187,7.0\n513,188,6.5\n513,189,7.0\n513,190,7.5\n513,191,8.0\n513,192,8.5\n513,193,9.0\n513,194,9.5\n513,195,10.0\n513,196,10.5\n513,197,11.0\n513,198,11.5\n513,199,12.0\n513,200,12.5\n513,201,12.0\n513,202,11.5\n513,203,11.0\n513,204,10.5\n513,205,10.0\n513,206,9.5\n513,207,9.0\n513,208,8.5\n513,209,8.0\n513,210,7.5\n513,211,7.0\n513,212,6.5\n513,213,6.0\n513,214,6.5\n513,215,7.0\n513,216,7.5\n513,217,8.0\n513,218,8.5\n513,219,9.0\n513,220,9.5\n513,221,10.0\n513,222,10.5\n513,223,11.0\n513,224,11.5\n513,225,12.0\n513,226,11.5\n513,227,11.0\n513,228,10.5\n513,229,10.0\n513,230,9.5\n513,231,9.0\n513,232,8.5\n513,233,8.0\n513,234,7.5\n513,235,7.0\n513,236,6.5\n513,237,6.0\n513,238,5.5\n513,239,6.0\n513,240,6.5\n513,241,7.0\n513,242,7.5\n513,243,8.0\n513,244,8.5\n513,245,9.0\n513,246,9.5\n513,247,10.0\n513,248,10.5\n513,249,11.0\n513,250,11.5\n513,251,11.0\n513,252,10.5\n513,253,10.0\n513,254,9.5\n513,255,9.0\n513,256,8.5\n513,257,8.0\n513,258,7.5\n513,259,7.0\n513,260,6.5\n513,261,6.0\n513,262,5.5\n513,263,5.0\n513,264,5.5\n513,265,6.0\n513,266,6.5\n513,267,7.0\n513,268,7.5\n513,269,8.0\n513,270,8.5\n513,271,9.0\n513,272,9.5\n513,273,10.0\n513,274,10.5\n513,275,11.0\n513,276,10.5\n513,277,10.0\n513,278,9.5\n513,279,9.0\n513,280,8.5\n513,281,8.0\n513,282,7.5\n513,283,7.0\n513,284,6.5\n513,285,6.0\n513,286,5.5\n513,287,5.0\n513,288,4.5\n513,289,5.0\n513,290,5.5\n513,291,6.0\n513,292,6.5\n513,293,7.0\n513,294,7.5\n513,295,8.0\n513,296,8.5\n513,297,9.0\n513,298,9.5\n513,299,10.0\n513,300,10.5\n513,301,10.0\n513,302,9.5\n513,303,9.0\n513,304,8.5\n513,305,8.0\n513,306,7.5\n513,307,7.0\n513,308,6.5\n513,309,6.0\n513,310,5.5\n513,311,5.0\n513,312,4.5\n513,313,4.0\n513,314,4.5\n513,315,5.0\n513,316,5.5\n513,317,6.0\n513,318,6.5\n513,319,7.0\n513,320,7.5\n513,321,8.0\n513,322,8.5\n513,323,9.0\n513,324,9.5\n513,325,10.0\n513,326,9.5\n513,327,9.0\n513,328,8.5\n513,329,8.0\n513,330,7.5\n513,331,7.0\n513,332,6.5\n513,333,6.0\n513,334,5.5\n513,335,5.0\n513,336,4.5\n513,337,4.0\n513,338,3.5\n513,339,4.0\n513,340,4.5\n513,341,5.0\n513,342,5.5\n513,343,6.0\n513,344,6.5\n513,345,7.0\n513,346,7.5\n513,347,8.0\n513,348,8.5\n513,349,9.0\n513,350,9.5\n513,351,9.0\n513,352,8.5\n513,353,8.0\n513,354,7.5\n513,355,7.0\n513,356,6.5\n513,357,6.0\n513,358,5.5\n513,359,5.0\n513,360,4.5\n513,361,4.0\n513,362,3.5\n513,363,3.0\n513,364,3.5\n513,365,4.0\n513,366,4.5\n513,367,5.0\n513,368,5.5\n513,369,6.0\n513,370,6.5\n513,371,7.0\n513,372,7.5\n513,373,8.0\n513,374,8.5\n513,375,9.0\n513,376,8.5\n513,377,8.0\n513,378,7.5\n513,379,7.0\n513,380,6.5\n513,381,6.0\n513,382,5.5\n513,383,5.0\n513,384,4.5\n513,385,4.0\n513,386,3.5\n513,387,3.0\n513,388,2.5\n513,389,3.0\n513,390,3.5\n513,391,4.0\n513,392,4.5\n513,393,5.0\n513,394,5.5\n513,395,6.0\n513,396,6.5\n513,397,7.0\n513,398,7.5\n513,399,8.0\n513,400,8.5\n513,401,8.0\n513,402,7.5\n513,403,7.0\n513,404,6.5\n513,405,6.0\n513,406,5.5\n513,407,5.0\n513,408,4.5\n513,409,4.0\n513,410,3.5\n513,411,3.0\n513,412,2.5\n513,413,2.0\n513,414,2.5\n513,415,3.0\n513,416,3.5\n513,417,4.0\n513,418,4.5\n513,419,5.0\n513,420,5.5\n513,421,6.0\n513,422,6.5\n513,423,7.0\n513,424,7.5\n513,425,8.0\n513,426,7.5\n513,427,7.0\n513,428,6.5\n513,429,6.0\n513,430,5.5\n513,431,5.0\n513,432,4.5\n513,433,4.0\n513,434,3.5\n513,435,3.0\n513,436,2.5\n513,437,2.0\n513,438,1.5\n513,439,2.0\n513,440,2.5\n513,441,3.0\n513,442,3.5\n513,443,4.0\n513,444,4.5\n513,445,5.0\n513,446,5.5\n513,447,6.0\n513,448,6.5\n513,449,7.0\n513,450,7.5\n513,451,7.0\n513,452,6.5\n513,453,6.0\n513,454,5.5\n513,455,5.0\n513,456,4.5\n513,457,4.0\n513,458,3.5\n513,459,3.0\n513,460,2.5\n513,461,2.0\n513,462,1.5\n513,463,1.0\n513,464,1.5\n513,465,2.0\n513,466,2.5\n513,467,3.0\n513,468,3.5\n513,469,4.0\n513,470,4.5\n513,471,5.0\n513,472,5.5\n513,473,6.0\n513,474,6.5\n513,475,7.0\n513,476,6.5\n513,477,6.0\n513,478,5.5\n513,479,5.0\n513,480,4.5\n513,481,4.0\n513,482,3.5\n513,483,3.0\n513,484,2.5\n513,485,2.0\n513,486,1.5\n513,487,1.0\n513,488,0.5\n513,489,1.0\n513,490,1.5\n513,491,2.0\n513,492,2.5\n513,493,3.0\n513,494,3.5\n513,495,4.0\n513,496,4.5\n513,497,5.0\n513,498,5.5\n513,499,6.0\n513,500,6.5\n513,501,6.0\n513,502,5.5\n513,503,5.0\n513,504,4.5\n513,505,4.0\n513,506,3.5\n513,507,3.0\n513,508,2.5\n513,509,2.0\n513,510,1.5\n513,511,1.0\n513,512,0.5\n513,513,0\n513,514,0.5\n513,515,1.0\n513,516,1.5\n513,517,2.0\n513,518,2.5\n513,519,3.0\n513,520,3.5\n513,521,4.0\n513,522,4.5\n513,523,5.0\n513,524,5.5\n513,525,7.0\n513,526,6.5\n513,527,6.0\n513,528,5.5\n513,529,5.0\n513,530,4.5\n513,531,4.0\n513,532,3.5\n513,533,3.0\n513,534,2.5\n513,535,2.0\n513,536,1.5\n513,537,1.0\n513,538,0.5\n513,539,1.0\n513,540,1.5\n513,541,2.0\n513,542,2.5\n513,543,3.0\n513,544,3.5\n513,545,4.0\n513,546,4.5\n513,547,5.0\n513,548,5.5\n513,549,6.0\n513,550,7.5\n513,551,7.0\n513,552,6.5\n513,553,6.0\n513,554,5.5\n513,555,5.0\n513,556,4.5\n513,557,4.0\n513,558,3.5\n513,559,3.0\n513,560,2.5\n513,561,2.0\n513,562,1.5\n513,563,1.0\n513,564,1.5\n513,565,2.0\n513,566,2.5\n513,567,3.0\n513,568,3.5\n513,569,4.0\n513,570,4.5\n513,571,5.0\n513,572,5.5\n513,573,6.0\n513,574,6.5\n513,575,8.0\n513,576,7.5\n513,577,7.0\n513,578,6.5\n513,579,6.0\n513,580,5.5\n513,581,5.0\n513,582,4.5\n513,583,4.0\n513,584,3.5\n513,585,3.0\n513,586,2.5\n513,587,2.0\n513,588,1.5\n513,589,2.0\n513,590,2.5\n513,591,3.0\n513,592,3.5\n513,593,4.0\n513,594,4.5\n513,595,5.0\n513,596,5.5\n513,597,6.0\n513,598,6.5\n513,599,7.0\n513,600,8.5\n513,601,8.0\n513,602,7.5\n513,603,7.0\n513,604,6.5\n513,605,6.0\n513,606,5.5\n513,607,5.0\n513,608,4.5\n513,609,4.0\n513,610,3.5\n513,611,3.0\n513,612,2.5\n513,613,2.0\n513,614,2.5\n513,615,3.0\n513,616,3.5\n513,617,4.0\n513,618,4.5\n513,619,5.0\n513,620,5.5\n513,621,6.0\n513,622,6.5\n513,623,7.0\n513,624,7.5\n514,0,17.0\n514,1,16.5\n514,2,16.0\n514,3,15.5\n514,4,15.0\n514,5,14.5\n514,6,14.0\n514,7,13.5\n514,8,13.0\n514,9,12.5\n514,10,12.0\n514,11,11.5\n514,12,11.0\n514,13,10.5\n514,14,10.0\n514,15,10.5\n514,16,11.0\n514,17,11.5\n514,18,12.0\n514,19,12.5\n514,20,13.0\n514,21,13.5\n514,22,14.0\n514,23,14.5\n514,24,15.0\n514,25,16.5\n514,26,16.0\n514,27,15.5\n514,28,15.0\n514,29,14.5\n514,30,14.0\n514,31,13.5\n514,32,13.0\n514,33,12.5\n514,34,12.0\n514,35,11.5\n514,36,11.0\n514,37,10.5\n514,38,10.0\n514,39,9.5\n514,40,10.0\n514,41,10.5\n514,42,11.0\n514,43,11.5\n514,44,12.0\n514,45,12.5\n514,46,13.0\n514,47,13.5\n514,48,14.0\n514,49,14.5\n514,50,16.0\n514,51,15.5\n514,52,15.0\n514,53,14.5\n514,54,14.0\n514,55,13.5\n514,56,13.0\n514,57,12.5\n514,58,12.0\n514,59,11.5\n514,60,11.0\n514,61,10.5\n514,62,10.0\n514,63,9.5\n514,64,9.0\n514,65,9.5\n514,66,10.0\n514,67,10.5\n514,68,11.0\n514,69,11.5\n514,70,12.0\n514,71,12.5\n514,72,13.0\n514,73,13.5\n514,74,14.0\n514,75,15.5\n514,76,15.0\n514,77,14.5\n514,78,14.0\n514,79,13.5\n514,80,13.0\n514,81,12.5\n514,82,12.0\n514,83,11.5\n514,84,11.0\n514,85,10.5\n514,86,10.0\n514,87,9.5\n514,88,9.0\n514,89,8.5\n514,90,9.0\n514,91,9.5\n514,92,10.0\n514,93,10.5\n514,94,11.0\n514,95,11.5\n514,96,12.0\n514,97,12.5\n514,98,13.0\n514,99,13.5\n514,100,15.0\n514,101,14.5\n514,102,14.0\n514,103,13.5\n514,104,13.0\n514,105,12.5\n514,106,12.0\n514,107,11.5\n514,108,11.0\n514,109,10.5\n514,110,10.0\n514,111,9.5\n514,112,9.0\n514,113,8.5\n514,114,8.0\n514,115,8.5\n514,116,9.0\n514,117,9.5\n514,118,10.0\n514,119,10.5\n514,120,11.0\n514,121,11.5\n514,122,12.0\n514,123,12.5\n514,124,13.0\n514,125,14.5\n514,126,14.0\n514,127,13.5\n514,128,13.0\n514,129,12.5\n514,130,12.0\n514,131,11.5\n514,132,11.0\n514,133,10.5\n514,134,10.0\n514,135,9.5\n514,136,9.0\n514,137,8.5\n514,138,8.0\n514,139,7.5\n514,140,8.0\n514,141,8.5\n514,142,9.0\n514,143,9.5\n514,144,10.0\n514,145,10.5\n514,146,11.0\n514,147,11.5\n514,148,12.0\n514,149,12.5\n514,150,14.0\n514,151,13.5\n514,152,13.0\n514,153,12.5\n514,154,12.0\n514,155,11.5\n514,156,11.0\n514,157,10.5\n514,158,10.0\n514,159,9.5\n514,160,9.0\n514,161,8.5\n514,162,8.0\n514,163,7.5\n514,164,7.0\n514,165,7.5\n514,166,8.0\n514,167,8.5\n514,168,9.0\n514,169,9.5\n514,170,10.0\n514,171,10.5\n514,172,11.0\n514,173,11.5\n514,174,12.0\n514,175,13.5\n514,176,13.0\n514,177,12.5\n514,178,12.0\n514,179,11.5\n514,180,11.0\n514,181,10.5\n514,182,10.0\n514,183,9.5\n514,184,9.0\n514,185,8.5\n514,186,8.0\n514,187,7.5\n514,188,7.0\n514,189,6.5\n514,190,7.0\n514,191,7.5\n514,192,8.0\n514,193,8.5\n514,194,9.0\n514,195,9.5\n514,196,10.0\n514,197,10.5\n514,198,11.0\n514,199,11.5\n514,200,13.0\n514,201,12.5\n514,202,12.0\n514,203,11.5\n514,204,11.0\n514,205,10.5\n514,206,10.0\n514,207,9.5\n514,208,9.0\n514,209,8.5\n514,210,8.0\n514,211,7.5\n514,212,7.0\n514,213,6.5\n514,214,6.0\n514,215,6.5\n514,216,7.0\n514,217,7.5\n514,218,8.0\n514,219,8.5\n514,220,9.0\n514,221,9.5\n514,222,10.0\n514,223,10.5\n514,224,11.0\n514,225,12.5\n514,226,12.0\n514,227,11.5\n514,228,11.0\n514,229,10.5\n514,230,10.0\n514,231,9.5\n514,232,9.0\n514,233,8.5\n514,234,8.0\n514,235,7.5\n514,236,7.0\n514,237,6.5\n514,238,6.0\n514,239,5.5\n514,240,6.0\n514,241,6.5\n514,242,7.0\n514,243,7.5\n514,244,8.0\n514,245,8.5\n514,246,9.0\n514,247,9.5\n514,248,10.0\n514,249,10.5\n514,250,12.0\n514,251,11.5\n514,252,11.0\n514,253,10.5\n514,254,10.0\n514,255,9.5\n514,256,9.0\n514,257,8.5\n514,258,8.0\n514,259,7.5\n514,260,7.0\n514,261,6.5\n514,262,6.0\n514,263,5.5\n514,264,5.0\n514,265,5.5\n514,266,6.0\n514,267,6.5\n514,268,7.0\n514,269,7.5\n514,270,8.0\n514,271,8.5\n514,272,9.0\n514,273,9.5\n514,274,10.0\n514,275,11.5\n514,276,11.0\n514,277,10.5\n514,278,10.0\n514,279,9.5\n514,280,9.0\n514,281,8.5\n514,282,8.0\n514,283,7.5\n514,284,7.0\n514,285,6.5\n514,286,6.0\n514,287,5.5\n514,288,5.0\n514,289,4.5\n514,290,5.0\n514,291,5.5\n514,292,6.0\n514,293,6.5\n514,294,7.0\n514,295,7.5\n514,296,8.0\n514,297,8.5\n514,298,9.0\n514,299,9.5\n514,300,11.0\n514,301,10.5\n514,302,10.0\n514,303,9.5\n514,304,9.0\n514,305,8.5\n514,306,8.0\n514,307,7.5\n514,308,7.0\n514,309,6.5\n514,310,6.0\n514,311,5.5\n514,312,5.0\n514,313,4.5\n514,314,4.0\n514,315,4.5\n514,316,5.0\n514,317,5.5\n514,318,6.0\n514,319,6.5\n514,320,7.0\n514,321,7.5\n514,322,8.0\n514,323,8.5\n514,324,9.0\n514,325,10.5\n514,326,10.0\n514,327,9.5\n514,328,9.0\n514,329,8.5\n514,330,8.0\n514,331,7.5\n514,332,7.0\n514,333,6.5\n514,334,6.0\n514,335,5.5\n514,336,5.0\n514,337,4.5\n514,338,4.0\n514,339,3.5\n514,340,4.0\n514,341,4.5\n514,342,5.0\n514,343,5.5\n514,344,6.0\n514,345,6.5\n514,346,7.0\n514,347,7.5\n514,348,8.0\n514,349,8.5\n514,350,10.0\n514,351,9.5\n514,352,9.0\n514,353,8.5\n514,354,8.0\n514,355,7.5\n514,356,7.0\n514,357,6.5\n514,358,6.0\n514,359,5.5\n514,360,5.0\n514,361,4.5\n514,362,4.0\n514,363,3.5\n514,364,3.0\n514,365,3.5\n514,366,4.0\n514,367,4.5\n514,368,5.0\n514,369,5.5\n514,370,6.0\n514,371,6.5\n514,372,7.0\n514,373,7.5\n514,374,8.0\n514,375,9.5\n514,376,9.0\n514,377,8.5\n514,378,8.0\n514,379,7.5\n514,380,7.0\n514,381,6.5\n514,382,6.0\n514,383,5.5\n514,384,5.0\n514,385,4.5\n514,386,4.0\n514,387,3.5\n514,388,3.0\n514,389,2.5\n514,390,3.0\n514,391,3.5\n514,392,4.0\n514,393,4.5\n514,394,5.0\n514,395,5.5\n514,396,6.0\n514,397,6.5\n514,398,7.0\n514,399,7.5\n514,400,9.0\n514,401,8.5\n514,402,8.0\n514,403,7.5\n514,404,7.0\n514,405,6.5\n514,406,6.0\n514,407,5.5\n514,408,5.0\n514,409,4.5\n514,410,4.0\n514,411,3.5\n514,412,3.0\n514,413,2.5\n514,414,2.0\n514,415,2.5\n514,416,3.0\n514,417,3.5\n514,418,4.0\n514,419,4.5\n514,420,5.0\n514,421,5.5\n514,422,6.0\n514,423,6.5\n514,424,7.0\n514,425,8.5\n514,426,8.0\n514,427,7.5\n514,428,7.0\n514,429,6.5\n514,430,6.0\n514,431,5.5\n514,432,5.0\n514,433,4.5\n514,434,4.0\n514,435,3.5\n514,436,3.0\n514,437,2.5\n514,438,2.0\n514,439,1.5\n514,440,2.0\n514,441,2.5\n514,442,3.0\n514,443,3.5\n514,444,4.0\n514,445,4.5\n514,446,5.0\n514,447,5.5\n514,448,6.0\n514,449,6.5\n514,450,8.0\n514,451,7.5\n514,452,7.0\n514,453,6.5\n514,454,6.0\n514,455,5.5\n514,456,5.0\n514,457,4.5\n514,458,4.0\n514,459,3.5\n514,460,3.0\n514,461,2.5\n514,462,2.0\n514,463,1.5\n514,464,1.0\n514,465,1.5\n514,466,2.0\n514,467,2.5\n514,468,3.0\n514,469,3.5\n514,470,4.0\n514,471,4.5\n514,472,5.0\n514,473,5.5\n514,474,6.0\n514,475,7.5\n514,476,7.0\n514,477,6.5\n514,478,6.0\n514,479,5.5\n514,480,5.0\n514,481,4.5\n514,482,4.0\n514,483,3.5\n514,484,3.0\n514,485,2.5\n514,486,2.0\n514,487,1.5\n514,488,1.0\n514,489,0.5\n514,490,1.0\n514,491,1.5\n514,492,2.0\n514,493,2.5\n514,494,3.0\n514,495,3.5\n514,496,4.0\n514,497,4.5\n514,498,5.0\n514,499,5.5\n514,500,7.0\n514,501,6.5\n514,502,6.0\n514,503,5.5\n514,504,5.0\n514,505,4.5\n514,506,4.0\n514,507,3.5\n514,508,3.0\n514,509,2.5\n514,510,2.0\n514,511,1.5\n514,512,1.0\n514,513,0.5\n514,514,0\n514,515,0.5\n514,516,1.0\n514,517,1.5\n514,518,2.0\n514,519,2.5\n514,520,3.0\n514,521,3.5\n514,522,4.0\n514,523,4.5\n514,524,5.0\n514,525,7.5\n514,526,7.0\n514,527,6.5\n514,528,6.0\n514,529,5.5\n514,530,5.0\n514,531,4.5\n514,532,4.0\n514,533,3.5\n514,534,3.0\n514,535,2.5\n514,536,2.0\n514,537,1.5\n514,538,1.0\n514,539,0.5\n514,540,1.0\n514,541,1.5\n514,542,2.0\n514,543,2.5\n514,544,3.0\n514,545,3.5\n514,546,4.0\n514,547,4.5\n514,548,5.0\n514,549,5.5\n514,550,8.0\n514,551,7.5\n514,552,7.0\n514,553,6.5\n514,554,6.0\n514,555,5.5\n514,556,5.0\n514,557,4.5\n514,558,4.0\n514,559,3.5\n514,560,3.0\n514,561,2.5\n514,562,2.0\n514,563,1.5\n514,564,1.0\n514,565,1.5\n514,566,2.0\n514,567,2.5\n514,568,3.0\n514,569,3.5\n514,570,4.0\n514,571,4.5\n514,572,5.0\n514,573,5.5\n514,574,6.0\n514,575,8.5\n514,576,8.0\n514,577,7.5\n514,578,7.0\n514,579,6.5\n514,580,6.0\n514,581,5.5\n514,582,5.0\n514,583,4.5\n514,584,4.0\n514,585,3.5\n514,586,3.0\n514,587,2.5\n514,588,2.0\n514,589,1.5\n514,590,2.0\n514,591,2.5\n514,592,3.0\n514,593,3.5\n514,594,4.0\n514,595,4.5\n514,596,5.0\n514,597,5.5\n514,598,6.0\n514,599,6.5\n514,600,9.0\n514,601,8.5\n514,602,8.0\n514,603,7.5\n514,604,7.0\n514,605,6.5\n514,606,6.0\n514,607,5.5\n514,608,5.0\n514,609,4.5\n514,610,4.0\n514,611,3.5\n514,612,3.0\n514,613,2.5\n514,614,2.0\n514,615,2.5\n514,616,3.0\n514,617,3.5\n514,618,4.0\n514,619,4.5\n514,620,5.0\n514,621,5.5\n514,622,6.0\n514,623,6.5\n514,624,7.0\n515,0,17.5\n515,1,17.0\n515,2,16.5\n515,3,16.0\n515,4,15.5\n515,5,15.0\n515,6,14.5\n515,7,14.0\n515,8,13.5\n515,9,13.0\n515,10,12.5\n515,11,12.0\n515,12,11.5\n515,13,11.0\n515,14,10.5\n515,15,10.0\n515,16,10.5\n515,17,11.0\n515,18,11.5\n515,19,12.0\n515,20,12.5\n515,21,13.0\n515,22,13.5\n515,23,14.0\n515,24,14.5\n515,25,17.0\n515,26,16.5\n515,27,16.0\n515,28,15.5\n515,29,15.0\n515,30,14.5\n515,31,14.0\n515,32,13.5\n515,33,13.0\n515,34,12.5\n515,35,12.0\n515,36,11.5\n515,37,11.0\n515,38,10.5\n515,39,10.0\n515,40,9.5\n515,41,10.0\n515,42,10.5\n515,43,11.0\n515,44,11.5\n515,45,12.0\n515,46,12.5\n515,47,13.0\n515,48,13.5\n515,49,14.0\n515,50,16.5\n515,51,16.0\n515,52,15.5\n515,53,15.0\n515,54,14.5\n515,55,14.0\n515,56,13.5\n515,57,13.0\n515,58,12.5\n515,59,12.0\n515,60,11.5\n515,61,11.0\n515,62,10.5\n515,63,10.0\n515,64,9.5\n515,65,9.0\n515,66,9.5\n515,67,10.0\n515,68,10.5\n515,69,11.0\n515,70,11.5\n515,71,12.0\n515,72,12.5\n515,73,13.0\n515,74,13.5\n515,75,16.0\n515,76,15.5\n515,77,15.0\n515,78,14.5\n515,79,14.0\n515,80,13.5\n515,81,13.0\n515,82,12.5\n515,83,12.0\n515,84,11.5\n515,85,11.0\n515,86,10.5\n515,87,10.0\n515,88,9.5\n515,89,9.0\n515,90,8.5\n515,91,9.0\n515,92,9.5\n515,93,10.0\n515,94,10.5\n515,95,11.0\n515,96,11.5\n515,97,12.0\n515,98,12.5\n515,99,13.0\n515,100,15.5\n515,101,15.0\n515,102,14.5\n515,103,14.0\n515,104,13.5\n515,105,13.0\n515,106,12.5\n515,107,12.0\n515,108,11.5\n515,109,11.0\n515,110,10.5\n515,111,10.0\n515,112,9.5\n515,113,9.0\n515,114,8.5\n515,115,8.0\n515,116,8.5\n515,117,9.0\n515,118,9.5\n515,119,10.0\n515,120,10.5\n515,121,11.0\n515,122,11.5\n515,123,12.0\n515,124,12.5\n515,125,15.0\n515,126,14.5\n515,127,14.0\n515,128,13.5\n515,129,13.0\n515,130,12.5\n515,131,12.0\n515,132,11.5\n515,133,11.0\n515,134,10.5\n515,135,10.0\n515,136,9.5\n515,137,9.0\n515,138,8.5\n515,139,8.0\n515,140,7.5\n515,141,8.0\n515,142,8.5\n515,143,9.0\n515,144,9.5\n515,145,10.0\n515,146,10.5\n515,147,11.0\n515,148,11.5\n515,149,12.0\n515,150,14.5\n515,151,14.0\n515,152,13.5\n515,153,13.0\n515,154,12.5\n515,155,12.0\n515,156,11.5\n515,157,11.0\n515,158,10.5\n515,159,10.0\n515,160,9.5\n515,161,9.0\n515,162,8.5\n515,163,8.0\n515,164,7.5\n515,165,7.0\n515,166,7.5\n515,167,8.0\n515,168,8.5\n515,169,9.0\n515,170,9.5\n515,171,10.0\n515,172,10.5\n515,173,11.0\n515,174,11.5\n515,175,14.0\n515,176,13.5\n515,177,13.0\n515,178,12.5\n515,179,12.0\n515,180,11.5\n515,181,11.0\n515,182,10.5\n515,183,10.0\n515,184,9.5\n515,185,9.0\n515,186,8.5\n515,187,8.0\n515,188,7.5\n515,189,7.0\n515,190,6.5\n515,191,7.0\n515,192,7.5\n515,193,8.0\n515,194,8.5\n515,195,9.0\n515,196,9.5\n515,197,10.0\n515,198,10.5\n515,199,11.0\n515,200,13.5\n515,201,13.0\n515,202,12.5\n515,203,12.0\n515,204,11.5\n515,205,11.0\n515,206,10.5\n515,207,10.0\n515,208,9.5\n515,209,9.0\n515,210,8.5\n515,211,8.0\n515,212,7.5\n515,213,7.0\n515,214,6.5\n515,215,6.0\n515,216,6.5\n515,217,7.0\n515,218,7.5\n515,219,8.0\n515,220,8.5\n515,221,9.0\n515,222,9.5\n515,223,10.0\n515,224,10.5\n515,225,13.0\n515,226,12.5\n515,227,12.0\n515,228,11.5\n515,229,11.0\n515,230,10.5\n515,231,10.0\n515,232,9.5\n515,233,9.0\n515,234,8.5\n515,235,8.0\n515,236,7.5\n515,237,7.0\n515,238,6.5\n515,239,6.0\n515,240,5.5\n515,241,6.0\n515,242,6.5\n515,243,7.0\n515,244,7.5\n515,245,8.0\n515,246,8.5\n515,247,9.0\n515,248,9.5\n515,249,10.0\n515,250,12.5\n515,251,12.0\n515,252,11.5\n515,253,11.0\n515,254,10.5\n515,255,10.0\n515,256,9.5\n515,257,9.0\n515,258,8.5\n515,259,8.0\n515,260,7.5\n515,261,7.0\n515,262,6.5\n515,263,6.0\n515,264,5.5\n515,265,5.0\n515,266,5.5\n515,267,6.0\n515,268,6.5\n515,269,7.0\n515,270,7.5\n515,271,8.0\n515,272,8.5\n515,273,9.0\n515,274,9.5\n515,275,12.0\n515,276,11.5\n515,277,11.0\n515,278,10.5\n515,279,10.0\n515,280,9.5\n515,281,9.0\n515,282,8.5\n515,283,8.0\n515,284,7.5\n515,285,7.0\n515,286,6.5\n515,287,6.0\n515,288,5.5\n515,289,5.0\n515,290,4.5\n515,291,5.0\n515,292,5.5\n515,293,6.0\n515,294,6.5\n515,295,7.0\n515,296,7.5\n515,297,8.0\n515,298,8.5\n515,299,9.0\n515,300,11.5\n515,301,11.0\n515,302,10.5\n515,303,10.0\n515,304,9.5\n515,305,9.0\n515,306,8.5\n515,307,8.0\n515,308,7.5\n515,309,7.0\n515,310,6.5\n515,311,6.0\n515,312,5.5\n515,313,5.0\n515,314,4.5\n515,315,4.0\n515,316,4.5\n515,317,5.0\n515,318,5.5\n515,319,6.0\n515,320,6.5\n515,321,7.0\n515,322,7.5\n515,323,8.0\n515,324,8.5\n515,325,11.0\n515,326,10.5\n515,327,10.0\n515,328,9.5\n515,329,9.0\n515,330,8.5\n515,331,8.0\n515,332,7.5\n515,333,7.0\n515,334,6.5\n515,335,6.0\n515,336,5.5\n515,337,5.0\n515,338,4.5\n515,339,4.0\n515,340,3.5\n515,341,4.0\n515,342,4.5\n515,343,5.0\n515,344,5.5\n515,345,6.0\n515,346,6.5\n515,347,7.0\n515,348,7.5\n515,349,8.0\n515,350,10.5\n515,351,10.0\n515,352,9.5\n515,353,9.0\n515,354,8.5\n515,355,8.0\n515,356,7.5\n515,357,7.0\n515,358,6.5\n515,359,6.0\n515,360,5.5\n515,361,5.0\n515,362,4.5\n515,363,4.0\n515,364,3.5\n515,365,3.0\n515,366,3.5\n515,367,4.0\n515,368,4.5\n515,369,5.0\n515,370,5.5\n515,371,6.0\n515,372,6.5\n515,373,7.0\n515,374,7.5\n515,375,10.0\n515,376,9.5\n515,377,9.0\n515,378,8.5\n515,379,8.0\n515,380,7.5\n515,381,7.0\n515,382,6.5\n515,383,6.0\n515,384,5.5\n515,385,5.0\n515,386,4.5\n515,387,4.0\n515,388,3.5\n515,389,3.0\n515,390,2.5\n515,391,3.0\n515,392,3.5\n515,393,4.0\n515,394,4.5\n515,395,5.0\n515,396,5.5\n515,397,6.0\n515,398,6.5\n515,399,7.0\n515,400,9.5\n515,401,9.0\n515,402,8.5\n515,403,8.0\n515,404,7.5\n515,405,7.0\n515,406,6.5\n515,407,6.0\n515,408,5.5\n515,409,5.0\n515,410,4.5\n515,411,4.0\n515,412,3.5\n515,413,3.0\n515,414,2.5\n515,415,2.0\n515,416,2.5\n515,417,3.0\n515,418,3.5\n515,419,4.0\n515,420,4.5\n515,421,5.0\n515,422,5.5\n515,423,6.0\n515,424,6.5\n515,425,9.0\n515,426,8.5\n515,427,8.0\n515,428,7.5\n515,429,7.0\n515,430,6.5\n515,431,6.0\n515,432,5.5\n515,433,5.0\n515,434,4.5\n515,435,4.0\n515,436,3.5\n515,437,3.0\n515,438,2.5\n515,439,2.0\n515,440,1.5\n515,441,2.0\n515,442,2.5\n515,443,3.0\n515,444,3.5\n515,445,4.0\n515,446,4.5\n515,447,5.0\n515,448,5.5\n515,449,6.0\n515,450,8.5\n515,451,8.0\n515,452,7.5\n515,453,7.0\n515,454,6.5\n515,455,6.0\n515,456,5.5\n515,457,5.0\n515,458,4.5\n515,459,4.0\n515,460,3.5\n515,461,3.0\n515,462,2.5\n515,463,2.0\n515,464,1.5\n515,465,1.0\n515,466,1.5\n515,467,2.0\n515,468,2.5\n515,469,3.0\n515,470,3.5\n515,471,4.0\n515,472,4.5\n515,473,5.0\n515,474,5.5\n515,475,8.0\n515,476,7.5\n515,477,7.0\n515,478,6.5\n515,479,6.0\n515,480,5.5\n515,481,5.0\n515,482,4.5\n515,483,4.0\n515,484,3.5\n515,485,3.0\n515,486,2.5\n515,487,2.0\n515,488,1.5\n515,489,1.0\n515,490,0.5\n515,491,1.0\n515,492,1.5\n515,493,2.0\n515,494,2.5\n515,495,3.0\n515,496,3.5\n515,497,4.0\n515,498,4.5\n515,499,5.0\n515,500,7.5\n515,501,7.0\n515,502,6.5\n515,503,6.0\n515,504,5.5\n515,505,5.0\n515,506,4.5\n515,507,4.0\n515,508,3.5\n515,509,3.0\n515,510,2.5\n515,511,2.0\n515,512,1.5\n515,513,1.0\n515,514,0.5\n515,515,0\n515,516,0.5\n515,517,1.0\n515,518,1.5\n515,519,2.0\n515,520,2.5\n515,521,3.0\n515,522,3.5\n515,523,4.0\n515,524,4.5\n515,525,8.0\n515,526,7.5\n515,527,7.0\n515,528,6.5\n515,529,6.0\n515,530,5.5\n515,531,5.0\n515,532,4.5\n515,533,4.0\n515,534,3.5\n515,535,3.0\n515,536,2.5\n515,537,2.0\n515,538,1.5\n515,539,1.0\n515,540,0.5\n515,541,1.0\n515,542,1.5\n515,543,2.0\n515,544,2.5\n515,545,3.0\n515,546,3.5\n515,547,4.0\n515,548,4.5\n515,549,5.0\n515,550,8.5\n515,551,8.0\n515,552,7.5\n515,553,7.0\n515,554,6.5\n515,555,6.0\n515,556,5.5\n515,557,5.0\n515,558,4.5\n515,559,4.0\n515,560,3.5\n515,561,3.0\n515,562,2.5\n515,563,2.0\n515,564,1.5\n515,565,1.0\n515,566,1.5\n515,567,2.0\n515,568,2.5\n515,569,3.0\n515,570,3.5\n515,571,4.0\n515,572,4.5\n515,573,5.0\n515,574,5.5\n515,575,9.0\n515,576,8.5\n515,577,8.0\n515,578,7.5\n515,579,7.0\n515,580,6.5\n515,581,6.0\n515,582,5.5\n515,583,5.0\n515,584,4.5\n515,585,4.0\n515,586,3.5\n515,587,3.0\n515,588,2.5\n515,589,2.0\n515,590,1.5\n515,591,2.0\n515,592,2.5\n515,593,3.0\n515,594,3.5\n515,595,4.0\n515,596,4.5\n515,597,5.0\n515,598,5.5\n515,599,6.0\n515,600,9.5\n515,601,9.0\n515,602,8.5\n515,603,8.0\n515,604,7.5\n515,605,7.0\n515,606,6.5\n515,607,6.0\n515,608,5.5\n515,609,5.0\n515,610,4.5\n515,611,4.0\n515,612,3.5\n515,613,3.0\n515,614,2.5\n515,615,2.0\n515,616,2.5\n515,617,3.0\n515,618,3.5\n515,619,4.0\n515,620,4.5\n515,621,5.0\n515,622,5.5\n515,623,6.0\n515,624,6.5\n516,0,18.0\n516,1,17.5\n516,2,17.0\n516,3,16.5\n516,4,16.0\n516,5,15.5\n516,6,15.0\n516,7,14.5\n516,8,14.0\n516,9,13.5\n516,10,13.0\n516,11,12.5\n516,12,12.0\n516,13,11.5\n516,14,11.0\n516,15,10.5\n516,16,10.0\n516,17,10.5\n516,18,11.0\n516,19,11.5\n516,20,12.0\n516,21,12.5\n516,22,13.0\n516,23,13.5\n516,24,14.0\n516,25,17.5\n516,26,17.0\n516,27,16.5\n516,28,16.0\n516,29,15.5\n516,30,15.0\n516,31,14.5\n516,32,14.0\n516,33,13.5\n516,34,13.0\n516,35,12.5\n516,36,12.0\n516,37,11.5\n516,38,11.0\n516,39,10.5\n516,40,10.0\n516,41,9.5\n516,42,10.0\n516,43,10.5\n516,44,11.0\n516,45,11.5\n516,46,12.0\n516,47,12.5\n516,48,13.0\n516,49,13.5\n516,50,17.0\n516,51,16.5\n516,52,16.0\n516,53,15.5\n516,54,15.0\n516,55,14.5\n516,56,14.0\n516,57,13.5\n516,58,13.0\n516,59,12.5\n516,60,12.0\n516,61,11.5\n516,62,11.0\n516,63,10.5\n516,64,10.0\n516,65,9.5\n516,66,9.0\n516,67,9.5\n516,68,10.0\n516,69,10.5\n516,70,11.0\n516,71,11.5\n516,72,12.0\n516,73,12.5\n516,74,13.0\n516,75,16.5\n516,76,16.0\n516,77,15.5\n516,78,15.0\n516,79,14.5\n516,80,14.0\n516,81,13.5\n516,82,13.0\n516,83,12.5\n516,84,12.0\n516,85,11.5\n516,86,11.0\n516,87,10.5\n516,88,10.0\n516,89,9.5\n516,90,9.0\n516,91,8.5\n516,92,9.0\n516,93,9.5\n516,94,10.0\n516,95,10.5\n516,96,11.0\n516,97,11.5\n516,98,12.0\n516,99,12.5\n516,100,16.0\n516,101,15.5\n516,102,15.0\n516,103,14.5\n516,104,14.0\n516,105,13.5\n516,106,13.0\n516,107,12.5\n516,108,12.0\n516,109,11.5\n516,110,11.0\n516,111,10.5\n516,112,10.0\n516,113,9.5\n516,114,9.0\n516,115,8.5\n516,116,8.0\n516,117,8.5\n516,118,9.0\n516,119,9.5\n516,120,10.0\n516,121,10.5\n516,122,11.0\n516,123,11.5\n516,124,12.0\n516,125,15.5\n516,126,15.0\n516,127,14.5\n516,128,14.0\n516,129,13.5\n516,130,13.0\n516,131,12.5\n516,132,12.0\n516,133,11.5\n516,134,11.0\n516,135,10.5\n516,136,10.0\n516,137,9.5\n516,138,9.0\n516,139,8.5\n516,140,8.0\n516,141,7.5\n516,142,8.0\n516,143,8.5\n516,144,9.0\n516,145,9.5\n516,146,10.0\n516,147,10.5\n516,148,11.0\n516,149,11.5\n516,150,15.0\n516,151,14.5\n516,152,14.0\n516,153,13.5\n516,154,13.0\n516,155,12.5\n516,156,12.0\n516,157,11.5\n516,158,11.0\n516,159,10.5\n516,160,10.0\n516,161,9.5\n516,162,9.0\n516,163,8.5\n516,164,8.0\n516,165,7.5\n516,166,7.0\n516,167,7.5\n516,168,8.0\n516,169,8.5\n516,170,9.0\n516,171,9.5\n516,172,10.0\n516,173,10.5\n516,174,11.0\n516,175,14.5\n516,176,14.0\n516,177,13.5\n516,178,13.0\n516,179,12.5\n516,180,12.0\n516,181,11.5\n516,182,11.0\n516,183,10.5\n516,184,10.0\n516,185,9.5\n516,186,9.0\n516,187,8.5\n516,188,8.0\n516,189,7.5\n516,190,7.0\n516,191,6.5\n516,192,7.0\n516,193,7.5\n516,194,8.0\n516,195,8.5\n516,196,9.0\n516,197,9.5\n516,198,10.0\n516,199,10.5\n516,200,14.0\n516,201,13.5\n516,202,13.0\n516,203,12.5\n516,204,12.0\n516,205,11.5\n516,206,11.0\n516,207,10.5\n516,208,10.0\n516,209,9.5\n516,210,9.0\n516,211,8.5\n516,212,8.0\n516,213,7.5\n516,214,7.0\n516,215,6.5\n516,216,6.0\n516,217,6.5\n516,218,7.0\n516,219,7.5\n516,220,8.0\n516,221,8.5\n516,222,9.0\n516,223,9.5\n516,224,10.0\n516,225,13.5\n516,226,13.0\n516,227,12.5\n516,228,12.0\n516,229,11.5\n516,230,11.0\n516,231,10.5\n516,232,10.0\n516,233,9.5\n516,234,9.0\n516,235,8.5\n516,236,8.0\n516,237,7.5\n516,238,7.0\n516,239,6.5\n516,240,6.0\n516,241,5.5\n516,242,6.0\n516,243,6.5\n516,244,7.0\n516,245,7.5\n516,246,8.0\n516,247,8.5\n516,248,9.0\n516,249,9.5\n516,250,13.0\n516,251,12.5\n516,252,12.0\n516,253,11.5\n516,254,11.0\n516,255,10.5\n516,256,10.0\n516,257,9.5\n516,258,9.0\n516,259,8.5\n516,260,8.0\n516,261,7.5\n516,262,7.0\n516,263,6.5\n516,264,6.0\n516,265,5.5\n516,266,5.0\n516,267,5.5\n516,268,6.0\n516,269,6.5\n516,270,7.0\n516,271,7.5\n516,272,8.0\n516,273,8.5\n516,274,9.0\n516,275,12.5\n516,276,12.0\n516,277,11.5\n516,278,11.0\n516,279,10.5\n516,280,10.0\n516,281,9.5\n516,282,9.0\n516,283,8.5\n516,284,8.0\n516,285,7.5\n516,286,7.0\n516,287,6.5\n516,288,6.0\n516,289,5.5\n516,290,5.0\n516,291,4.5\n516,292,5.0\n516,293,5.5\n516,294,6.0\n516,295,6.5\n516,296,7.0\n516,297,7.5\n516,298,8.0\n516,299,8.5\n516,300,12.0\n516,301,11.5\n516,302,11.0\n516,303,10.5\n516,304,10.0\n516,305,9.5\n516,306,9.0\n516,307,8.5\n516,308,8.0\n516,309,7.5\n516,310,7.0\n516,311,6.5\n516,312,6.0\n516,313,5.5\n516,314,5.0\n516,315,4.5\n516,316,4.0\n516,317,4.5\n516,318,5.0\n516,319,5.5\n516,320,6.0\n516,321,6.5\n516,322,7.0\n516,323,7.5\n516,324,8.0\n516,325,11.5\n516,326,11.0\n516,327,10.5\n516,328,10.0\n516,329,9.5\n516,330,9.0\n516,331,8.5\n516,332,8.0\n516,333,7.5\n516,334,7.0\n516,335,6.5\n516,336,6.0\n516,337,5.5\n516,338,5.0\n516,339,4.5\n516,340,4.0\n516,341,3.5\n516,342,4.0\n516,343,4.5\n516,344,5.0\n516,345,5.5\n516,346,6.0\n516,347,6.5\n516,348,7.0\n516,349,7.5\n516,350,11.0\n516,351,10.5\n516,352,10.0\n516,353,9.5\n516,354,9.0\n516,355,8.5\n516,356,8.0\n516,357,7.5\n516,358,7.0\n516,359,6.5\n516,360,6.0\n516,361,5.5\n516,362,5.0\n516,363,4.5\n516,364,4.0\n516,365,3.5\n516,366,3.0\n516,367,3.5\n516,368,4.0\n516,369,4.5\n516,370,5.0\n516,371,5.5\n516,372,6.0\n516,373,6.5\n516,374,7.0\n516,375,10.5\n516,376,10.0\n516,377,9.5\n516,378,9.0\n516,379,8.5\n516,380,8.0\n516,381,7.5\n516,382,7.0\n516,383,6.5\n516,384,6.0\n516,385,5.5\n516,386,5.0\n516,387,4.5\n516,388,4.0\n516,389,3.5\n516,390,3.0\n516,391,2.5\n516,392,3.0\n516,393,3.5\n516,394,4.0\n516,395,4.5\n516,396,5.0\n516,397,5.5\n516,398,6.0\n516,399,6.5\n516,400,10.0\n516,401,9.5\n516,402,9.0\n516,403,8.5\n516,404,8.0\n516,405,7.5\n516,406,7.0\n516,407,6.5\n516,408,6.0\n516,409,5.5\n516,410,5.0\n516,411,4.5\n516,412,4.0\n516,413,3.5\n516,414,3.0\n516,415,2.5\n516,416,2.0\n516,417,2.5\n516,418,3.0\n516,419,3.5\n516,420,4.0\n516,421,4.5\n516,422,5.0\n516,423,5.5\n516,424,6.0\n516,425,9.5\n516,426,9.0\n516,427,8.5\n516,428,8.0\n516,429,7.5\n516,430,7.0\n516,431,6.5\n516,432,6.0\n516,433,5.5\n516,434,5.0\n516,435,4.5\n516,436,4.0\n516,437,3.5\n516,438,3.0\n516,439,2.5\n516,440,2.0\n516,441,1.5\n516,442,2.0\n516,443,2.5\n516,444,3.0\n516,445,3.5\n516,446,4.0\n516,447,4.5\n516,448,5.0\n516,449,5.5\n516,450,9.0\n516,451,8.5\n516,452,8.0\n516,453,7.5\n516,454,7.0\n516,455,6.5\n516,456,6.0\n516,457,5.5\n516,458,5.0\n516,459,4.5\n516,460,4.0\n516,461,3.5\n516,462,3.0\n516,463,2.5\n516,464,2.0\n516,465,1.5\n516,466,1.0\n516,467,1.5\n516,468,2.0\n516,469,2.5\n516,470,3.0\n516,471,3.5\n516,472,4.0\n516,473,4.5\n516,474,5.0\n516,475,8.5\n516,476,8.0\n516,477,7.5\n516,478,7.0\n516,479,6.5\n516,480,6.0\n516,481,5.5\n516,482,5.0\n516,483,4.5\n516,484,4.0\n516,485,3.5\n516,486,3.0\n516,487,2.5\n516,488,2.0\n516,489,1.5\n516,490,1.0\n516,491,0.5\n516,492,1.0\n516,493,1.5\n516,494,2.0\n516,495,2.5\n516,496,3.0\n516,497,3.5\n516,498,4.0\n516,499,4.5\n516,500,8.0\n516,501,7.5\n516,502,7.0\n516,503,6.5\n516,504,6.0\n516,505,5.5\n516,506,5.0\n516,507,4.5\n516,508,4.0\n516,509,3.5\n516,510,3.0\n516,511,2.5\n516,512,2.0\n516,513,1.5\n516,514,1.0\n516,515,0.5\n516,516,0\n516,517,0.5\n516,518,1.0\n516,519,1.5\n516,520,2.0\n516,521,2.5\n516,522,3.0\n516,523,3.5\n516,524,4.0\n516,525,8.5\n516,526,8.0\n516,527,7.5\n516,528,7.0\n516,529,6.5\n516,530,6.0\n516,531,5.5\n516,532,5.0\n516,533,4.5\n516,534,4.0\n516,535,3.5\n516,536,3.0\n516,537,2.5\n516,538,2.0\n516,539,1.5\n516,540,1.0\n516,541,0.5\n516,542,1.0\n516,543,1.5\n516,544,2.0\n516,545,2.5\n516,546,3.0\n516,547,3.5\n516,548,4.0\n516,549,4.5\n516,550,9.0\n516,551,8.5\n516,552,8.0\n516,553,7.5\n516,554,7.0\n516,555,6.5\n516,556,6.0\n516,557,5.5\n516,558,5.0\n516,559,4.5\n516,560,4.0\n516,561,3.5\n516,562,3.0\n516,563,2.5\n516,564,2.0\n516,565,1.5\n516,566,1.0\n516,567,1.5\n516,568,2.0\n516,569,2.5\n516,570,3.0\n516,571,3.5\n516,572,4.0\n516,573,4.5\n516,574,5.0\n516,575,9.5\n516,576,9.0\n516,577,8.5\n516,578,8.0\n516,579,7.5\n516,580,7.0\n516,581,6.5\n516,582,6.0\n516,583,5.5\n516,584,5.0\n516,585,4.5\n516,586,4.0\n516,587,3.5\n516,588,3.0\n516,589,2.5\n516,590,2.0\n516,591,1.5\n516,592,2.0\n516,593,2.5\n516,594,3.0\n516,595,3.5\n516,596,4.0\n516,597,4.5\n516,598,5.0\n516,599,5.5\n516,600,10.0\n516,601,9.5\n516,602,9.0\n516,603,8.5\n516,604,8.0\n516,605,7.5\n516,606,7.0\n516,607,6.5\n516,608,6.0\n516,609,5.5\n516,610,5.0\n516,611,4.5\n516,612,4.0\n516,613,3.5\n516,614,3.0\n516,615,2.5\n516,616,2.0\n516,617,2.5\n516,618,3.0\n516,619,3.5\n516,620,4.0\n516,621,4.5\n516,622,5.0\n516,623,5.5\n516,624,6.0\n517,0,18.5\n517,1,18.0\n517,2,17.5\n517,3,17.0\n517,4,16.5\n517,5,16.0\n517,6,15.5\n517,7,15.0\n517,8,14.5\n517,9,14.0\n517,10,13.5\n517,11,13.0\n517,12,12.5\n517,13,12.0\n517,14,11.5\n517,15,11.0\n517,16,10.5\n517,17,10.0\n517,18,10.5\n517,19,11.0\n517,20,11.5\n517,21,12.0\n517,22,12.5\n517,23,13.0\n517,24,13.5\n517,25,18.0\n517,26,17.5\n517,27,17.0\n517,28,16.5\n517,29,16.0\n517,30,15.5\n517,31,15.0\n517,32,14.5\n517,33,14.0\n517,34,13.5\n517,35,13.0\n517,36,12.5\n517,37,12.0\n517,38,11.5\n517,39,11.0\n517,40,10.5\n517,41,10.0\n517,42,9.5\n517,43,10.0\n517,44,10.5\n517,45,11.0\n517,46,11.5\n517,47,12.0\n517,48,12.5\n517,49,13.0\n517,50,17.5\n517,51,17.0\n517,52,16.5\n517,53,16.0\n517,54,15.5\n517,55,15.0\n517,56,14.5\n517,57,14.0\n517,58,13.5\n517,59,13.0\n517,60,12.5\n517,61,12.0\n517,62,11.5\n517,63,11.0\n517,64,10.5\n517,65,10.0\n517,66,9.5\n517,67,9.0\n517,68,9.5\n517,69,10.0\n517,70,10.5\n517,71,11.0\n517,72,11.5\n517,73,12.0\n517,74,12.5\n517,75,17.0\n517,76,16.5\n517,77,16.0\n517,78,15.5\n517,79,15.0\n517,80,14.5\n517,81,14.0\n517,82,13.5\n517,83,13.0\n517,84,12.5\n517,85,12.0\n517,86,11.5\n517,87,11.0\n517,88,10.5\n517,89,10.0\n517,90,9.5\n517,91,9.0\n517,92,8.5\n517,93,9.0\n517,94,9.5\n517,95,10.0\n517,96,10.5\n517,97,11.0\n517,98,11.5\n517,99,12.0\n517,100,16.5\n517,101,16.0\n517,102,15.5\n517,103,15.0\n517,104,14.5\n517,105,14.0\n517,106,13.5\n517,107,13.0\n517,108,12.5\n517,109,12.0\n517,110,11.5\n517,111,11.0\n517,112,10.5\n517,113,10.0\n517,114,9.5\n517,115,9.0\n517,116,8.5\n517,117,8.0\n517,118,8.5\n517,119,9.0\n517,120,9.5\n517,121,10.0\n517,122,10.5\n517,123,11.0\n517,124,11.5\n517,125,16.0\n517,126,15.5\n517,127,15.0\n517,128,14.5\n517,129,14.0\n517,130,13.5\n517,131,13.0\n517,132,12.5\n517,133,12.0\n517,134,11.5\n517,135,11.0\n517,136,10.5\n517,137,10.0\n517,138,9.5\n517,139,9.0\n517,140,8.5\n517,141,8.0\n517,142,7.5\n517,143,8.0\n517,144,8.5\n517,145,9.0\n517,146,9.5\n517,147,10.0\n517,148,10.5\n517,149,11.0\n517,150,15.5\n517,151,15.0\n517,152,14.5\n517,153,14.0\n517,154,13.5\n517,155,13.0\n517,156,12.5\n517,157,12.0\n517,158,11.5\n517,159,11.0\n517,160,10.5\n517,161,10.0\n517,162,9.5\n517,163,9.0\n517,164,8.5\n517,165,8.0\n517,166,7.5\n517,167,7.0\n517,168,7.5\n517,169,8.0\n517,170,8.5\n517,171,9.0\n517,172,9.5\n517,173,10.0\n517,174,10.5\n517,175,15.0\n517,176,14.5\n517,177,14.0\n517,178,13.5\n517,179,13.0\n517,180,12.5\n517,181,12.0\n517,182,11.5\n517,183,11.0\n517,184,10.5\n517,185,10.0\n517,186,9.5\n517,187,9.0\n517,188,8.5\n517,189,8.0\n517,190,7.5\n517,191,7.0\n517,192,6.5\n517,193,7.0\n517,194,7.5\n517,195,8.0\n517,196,8.5\n517,197,9.0\n517,198,9.5\n517,199,10.0\n517,200,14.5\n517,201,14.0\n517,202,13.5\n517,203,13.0\n517,204,12.5\n517,205,12.0\n517,206,11.5\n517,207,11.0\n517,208,10.5\n517,209,10.0\n517,210,9.5\n517,211,9.0\n517,212,8.5\n517,213,8.0\n517,214,7.5\n517,215,7.0\n517,216,6.5\n517,217,6.0\n517,218,6.5\n517,219,7.0\n517,220,7.5\n517,221,8.0\n517,222,8.5\n517,223,9.0\n517,224,9.5\n517,225,14.0\n517,226,13.5\n517,227,13.0\n517,228,12.5\n517,229,12.0\n517,230,11.5\n517,231,11.0\n517,232,10.5\n517,233,10.0\n517,234,9.5\n517,235,9.0\n517,236,8.5\n517,237,8.0\n517,238,7.5\n517,239,7.0\n517,240,6.5\n517,241,6.0\n517,242,5.5\n517,243,6.0\n517,244,6.5\n517,245,7.0\n517,246,7.5\n517,247,8.0\n517,248,8.5\n517,249,9.0\n517,250,13.5\n517,251,13.0\n517,252,12.5\n517,253,12.0\n517,254,11.5\n517,255,11.0\n517,256,10.5\n517,257,10.0\n517,258,9.5\n517,259,9.0\n517,260,8.5\n517,261,8.0\n517,262,7.5\n517,263,7.0\n517,264,6.5\n517,265,6.0\n517,266,5.5\n517,267,5.0\n517,268,5.5\n517,269,6.0\n517,270,6.5\n517,271,7.0\n517,272,7.5\n517,273,8.0\n517,274,8.5\n517,275,13.0\n517,276,12.5\n517,277,12.0\n517,278,11.5\n517,279,11.0\n517,280,10.5\n517,281,10.0\n517,282,9.5\n517,283,9.0\n517,284,8.5\n517,285,8.0\n517,286,7.5\n517,287,7.0\n517,288,6.5\n517,289,6.0\n517,290,5.5\n517,291,5.0\n517,292,4.5\n517,293,5.0\n517,294,5.5\n517,295,6.0\n517,296,6.5\n517,297,7.0\n517,298,7.5\n517,299,8.0\n517,300,12.5\n517,301,12.0\n517,302,11.5\n517,303,11.0\n517,304,10.5\n517,305,10.0\n517,306,9.5\n517,307,9.0\n517,308,8.5\n517,309,8.0\n517,310,7.5\n517,311,7.0\n517,312,6.5\n517,313,6.0\n517,314,5.5\n517,315,5.0\n517,316,4.5\n517,317,4.0\n517,318,4.5\n517,319,5.0\n517,320,5.5\n517,321,6.0\n517,322,6.5\n517,323,7.0\n517,324,7.5\n517,325,12.0\n517,326,11.5\n517,327,11.0\n517,328,10.5\n517,329,10.0\n517,330,9.5\n517,331,9.0\n517,332,8.5\n517,333,8.0\n517,334,7.5\n517,335,7.0\n517,336,6.5\n517,337,6.0\n517,338,5.5\n517,339,5.0\n517,340,4.5\n517,341,4.0\n517,342,3.5\n517,343,4.0\n517,344,4.5\n517,345,5.0\n517,346,5.5\n517,347,6.0\n517,348,6.5\n517,349,7.0\n517,350,11.5\n517,351,11.0\n517,352,10.5\n517,353,10.0\n517,354,9.5\n517,355,9.0\n517,356,8.5\n517,357,8.0\n517,358,7.5\n517,359,7.0\n517,360,6.5\n517,361,6.0\n517,362,5.5\n517,363,5.0\n517,364,4.5\n517,365,4.0\n517,366,3.5\n517,367,3.0\n517,368,3.5\n517,369,4.0\n517,370,4.5\n517,371,5.0\n517,372,5.5\n517,373,6.0\n517,374,6.5\n517,375,11.0\n517,376,10.5\n517,377,10.0\n517,378,9.5\n517,379,9.0\n517,380,8.5\n517,381,8.0\n517,382,7.5\n517,383,7.0\n517,384,6.5\n517,385,6.0\n517,386,5.5\n517,387,5.0\n517,388,4.5\n517,389,4.0\n517,390,3.5\n517,391,3.0\n517,392,2.5\n517,393,3.0\n517,394,3.5\n517,395,4.0\n517,396,4.5\n517,397,5.0\n517,398,5.5\n517,399,6.0\n517,400,10.5\n517,401,10.0\n517,402,9.5\n517,403,9.0\n517,404,8.5\n517,405,8.0\n517,406,7.5\n517,407,7.0\n517,408,6.5\n517,409,6.0\n517,410,5.5\n517,411,5.0\n517,412,4.5\n517,413,4.0\n517,414,3.5\n517,415,3.0\n517,416,2.5\n517,417,2.0\n517,418,2.5\n517,419,3.0\n517,420,3.5\n517,421,4.0\n517,422,4.5\n517,423,5.0\n517,424,5.5\n517,425,10.0\n517,426,9.5\n517,427,9.0\n517,428,8.5\n517,429,8.0\n517,430,7.5\n517,431,7.0\n517,432,6.5\n517,433,6.0\n517,434,5.5\n517,435,5.0\n517,436,4.5\n517,437,4.0\n517,438,3.5\n517,439,3.0\n517,440,2.5\n517,441,2.0\n517,442,1.5\n517,443,2.0\n517,444,2.5\n517,445,3.0\n517,446,3.5\n517,447,4.0\n517,448,4.5\n517,449,5.0\n517,450,9.5\n517,451,9.0\n517,452,8.5\n517,453,8.0\n517,454,7.5\n517,455,7.0\n517,456,6.5\n517,457,6.0\n517,458,5.5\n517,459,5.0\n517,460,4.5\n517,461,4.0\n517,462,3.5\n517,463,3.0\n517,464,2.5\n517,465,2.0\n517,466,1.5\n517,467,1.0\n517,468,1.5\n517,469,2.0\n517,470,2.5\n517,471,3.0\n517,472,3.5\n517,473,4.0\n517,474,4.5\n517,475,9.0\n517,476,8.5\n517,477,8.0\n517,478,7.5\n517,479,7.0\n517,480,6.5\n517,481,6.0\n517,482,5.5\n517,483,5.0\n517,484,4.5\n517,485,4.0\n517,486,3.5\n517,487,3.0\n517,488,2.5\n517,489,2.0\n517,490,1.5\n517,491,1.0\n517,492,0.5\n517,493,1.0\n517,494,1.5\n517,495,2.0\n517,496,2.5\n517,497,3.0\n517,498,3.5\n517,499,4.0\n517,500,8.5\n517,501,8.0\n517,502,7.5\n517,503,7.0\n517,504,6.5\n517,505,6.0\n517,506,5.5\n517,507,5.0\n517,508,4.5\n517,509,4.0\n517,510,3.5\n517,511,3.0\n517,512,2.5\n517,513,2.0\n517,514,1.5\n517,515,1.0\n517,516,0.5\n517,517,0\n517,518,0.5\n517,519,1.0\n517,520,1.5\n517,521,2.0\n517,522,2.5\n517,523,3.0\n517,524,3.5\n517,525,9.0\n517,526,8.5\n517,527,8.0\n517,528,7.5\n517,529,7.0\n517,530,6.5\n517,531,6.0\n517,532,5.5\n517,533,5.0\n517,534,4.5\n517,535,4.0\n517,536,3.5\n517,537,3.0\n517,538,2.5\n517,539,2.0\n517,540,1.5\n517,541,1.0\n517,542,0.5\n517,543,1.0\n517,544,1.5\n517,545,2.0\n517,546,2.5\n517,547,3.0\n517,548,3.5\n517,549,4.0\n517,550,9.5\n517,551,9.0\n517,552,8.5\n517,553,8.0\n517,554,7.5\n517,555,7.0\n517,556,6.5\n517,557,6.0\n517,558,5.5\n517,559,5.0\n517,560,4.5\n517,561,4.0\n517,562,3.5\n517,563,3.0\n517,564,2.5\n517,565,2.0\n517,566,1.5\n517,567,1.0\n517,568,1.5\n517,569,2.0\n517,570,2.5\n517,571,3.0\n517,572,3.5\n517,573,4.0\n517,574,4.5\n517,575,10.0\n517,576,9.5\n517,577,9.0\n517,578,8.5\n517,579,8.0\n517,580,7.5\n517,581,7.0\n517,582,6.5\n517,583,6.0\n517,584,5.5\n517,585,5.0\n517,586,4.5\n517,587,4.0\n517,588,3.5\n517,589,3.0\n517,590,2.5\n517,591,2.0\n517,592,1.5\n517,593,2.0\n517,594,2.5\n517,595,3.0\n517,596,3.5\n517,597,4.0\n517,598,4.5\n517,599,5.0\n517,600,10.5\n517,601,10.0\n517,602,9.5\n517,603,9.0\n517,604,8.5\n517,605,8.0\n517,606,7.5\n517,607,7.0\n517,608,6.5\n517,609,6.0\n517,610,5.5\n517,611,5.0\n517,612,4.5\n517,613,4.0\n517,614,3.5\n517,615,3.0\n517,616,2.5\n517,617,2.0\n517,618,2.5\n517,619,3.0\n517,620,3.5\n517,621,4.0\n517,622,4.5\n517,623,5.0\n517,624,5.5\n518,0,19.0\n518,1,18.5\n518,2,18.0\n518,3,17.5\n518,4,17.0\n518,5,16.5\n518,6,16.0\n518,7,15.5\n518,8,15.0\n518,9,14.5\n518,10,14.0\n518,11,13.5\n518,12,13.0\n518,13,12.5\n518,14,12.0\n518,15,11.5\n518,16,11.0\n518,17,10.5\n518,18,10.0\n518,19,10.5\n518,20,11.0\n518,21,11.5\n518,22,12.0\n518,23,12.5\n518,24,13.0\n518,25,18.5\n518,26,18.0\n518,27,17.5\n518,28,17.0\n518,29,16.5\n518,30,16.0\n518,31,15.5\n518,32,15.0\n518,33,14.5\n518,34,14.0\n518,35,13.5\n518,36,13.0\n518,37,12.5\n518,38,12.0\n518,39,11.5\n518,40,11.0\n518,41,10.5\n518,42,10.0\n518,43,9.5\n518,44,10.0\n518,45,10.5\n518,46,11.0\n518,47,11.5\n518,48,12.0\n518,49,12.5\n518,50,18.0\n518,51,17.5\n518,52,17.0\n518,53,16.5\n518,54,16.0\n518,55,15.5\n518,56,15.0\n518,57,14.5\n518,58,14.0\n518,59,13.5\n518,60,13.0\n518,61,12.5\n518,62,12.0\n518,63,11.5\n518,64,11.0\n518,65,10.5\n518,66,10.0\n518,67,9.5\n518,68,9.0\n518,69,9.5\n518,70,10.0\n518,71,10.5\n518,72,11.0\n518,73,11.5\n518,74,12.0\n518,75,17.5\n518,76,17.0\n518,77,16.5\n518,78,16.0\n518,79,15.5\n518,80,15.0\n518,81,14.5\n518,82,14.0\n518,83,13.5\n518,84,13.0\n518,85,12.5\n518,86,12.0\n518,87,11.5\n518,88,11.0\n518,89,10.5\n518,90,10.0\n518,91,9.5\n518,92,9.0\n518,93,8.5\n518,94,9.0\n518,95,9.5\n518,96,10.0\n518,97,10.5\n518,98,11.0\n518,99,11.5\n518,100,17.0\n518,101,16.5\n518,102,16.0\n518,103,15.5\n518,104,15.0\n518,105,14.5\n518,106,14.0\n518,107,13.5\n518,108,13.0\n518,109,12.5\n518,110,12.0\n518,111,11.5\n518,112,11.0\n518,113,10.5\n518,114,10.0\n518,115,9.5\n518,116,9.0\n518,117,8.5\n518,118,8.0\n518,119,8.5\n518,120,9.0\n518,121,9.5\n518,122,10.0\n518,123,10.5\n518,124,11.0\n518,125,16.5\n518,126,16.0\n518,127,15.5\n518,128,15.0\n518,129,14.5\n518,130,14.0\n518,131,13.5\n518,132,13.0\n518,133,12.5\n518,134,12.0\n518,135,11.5\n518,136,11.0\n518,137,10.5\n518,138,10.0\n518,139,9.5\n518,140,9.0\n518,141,8.5\n518,142,8.0\n518,143,7.5\n518,144,8.0\n518,145,8.5\n518,146,9.0\n518,147,9.5\n518,148,10.0\n518,149,10.5\n518,150,16.0\n518,151,15.5\n518,152,15.0\n518,153,14.5\n518,154,14.0\n518,155,13.5\n518,156,13.0\n518,157,12.5\n518,158,12.0\n518,159,11.5\n518,160,11.0\n518,161,10.5\n518,162,10.0\n518,163,9.5\n518,164,9.0\n518,165,8.5\n518,166,8.0\n518,167,7.5\n518,168,7.0\n518,169,7.5\n518,170,8.0\n518,171,8.5\n518,172,9.0\n518,173,9.5\n518,174,10.0\n518,175,15.5\n518,176,15.0\n518,177,14.5\n518,178,14.0\n518,179,13.5\n518,180,13.0\n518,181,12.5\n518,182,12.0\n518,183,11.5\n518,184,11.0\n518,185,10.5\n518,186,10.0\n518,187,9.5\n518,188,9.0\n518,189,8.5\n518,190,8.0\n518,191,7.5\n518,192,7.0\n518,193,6.5\n518,194,7.0\n518,195,7.5\n518,196,8.0\n518,197,8.5\n518,198,9.0\n518,199,9.5\n518,200,15.0\n518,201,14.5\n518,202,14.0\n518,203,13.5\n518,204,13.0\n518,205,12.5\n518,206,12.0\n518,207,11.5\n518,208,11.0\n518,209,10.5\n518,210,10.0\n518,211,9.5\n518,212,9.0\n518,213,8.5\n518,214,8.0\n518,215,7.5\n518,216,7.0\n518,217,6.5\n518,218,6.0\n518,219,6.5\n518,220,7.0\n518,221,7.5\n518,222,8.0\n518,223,8.5\n518,224,9.0\n518,225,14.5\n518,226,14.0\n518,227,13.5\n518,228,13.0\n518,229,12.5\n518,230,12.0\n518,231,11.5\n518,232,11.0\n518,233,10.5\n518,234,10.0\n518,235,9.5\n518,236,9.0\n518,237,8.5\n518,238,8.0\n518,239,7.5\n518,240,7.0\n518,241,6.5\n518,242,6.0\n518,243,5.5\n518,244,6.0\n518,245,6.5\n518,246,7.0\n518,247,7.5\n518,248,8.0\n518,249,8.5\n518,250,14.0\n518,251,13.5\n518,252,13.0\n518,253,12.5\n518,254,12.0\n518,255,11.5\n518,256,11.0\n518,257,10.5\n518,258,10.0\n518,259,9.5\n518,260,9.0\n518,261,8.5\n518,262,8.0\n518,263,7.5\n518,264,7.0\n518,265,6.5\n518,266,6.0\n518,267,5.5\n518,268,5.0\n518,269,5.5\n518,270,6.0\n518,271,6.5\n518,272,7.0\n518,273,7.5\n518,274,8.0\n518,275,13.5\n518,276,13.0\n518,277,12.5\n518,278,12.0\n518,279,11.5\n518,280,11.0\n518,281,10.5\n518,282,10.0\n518,283,9.5\n518,284,9.0\n518,285,8.5\n518,286,8.0\n518,287,7.5\n518,288,7.0\n518,289,6.5\n518,290,6.0\n518,291,5.5\n518,292,5.0\n518,293,4.5\n518,294,5.0\n518,295,5.5\n518,296,6.0\n518,297,6.5\n518,298,7.0\n518,299,7.5\n518,300,13.0\n518,301,12.5\n518,302,12.0\n518,303,11.5\n518,304,11.0\n518,305,10.5\n518,306,10.0\n518,307,9.5\n518,308,9.0\n518,309,8.5\n518,310,8.0\n518,311,7.5\n518,312,7.0\n518,313,6.5\n518,314,6.0\n518,315,5.5\n518,316,5.0\n518,317,4.5\n518,318,4.0\n518,319,4.5\n518,320,5.0\n518,321,5.5\n518,322,6.0\n518,323,6.5\n518,324,7.0\n518,325,12.5\n518,326,12.0\n518,327,11.5\n518,328,11.0\n518,329,10.5\n518,330,10.0\n518,331,9.5\n518,332,9.0\n518,333,8.5\n518,334,8.0\n518,335,7.5\n518,336,7.0\n518,337,6.5\n518,338,6.0\n518,339,5.5\n518,340,5.0\n518,341,4.5\n518,342,4.0\n518,343,3.5\n518,344,4.0\n518,345,4.5\n518,346,5.0\n518,347,5.5\n518,348,6.0\n518,349,6.5\n518,350,12.0\n518,351,11.5\n518,352,11.0\n518,353,10.5\n518,354,10.0\n518,355,9.5\n518,356,9.0\n518,357,8.5\n518,358,8.0\n518,359,7.5\n518,360,7.0\n518,361,6.5\n518,362,6.0\n518,363,5.5\n518,364,5.0\n518,365,4.5\n518,366,4.0\n518,367,3.5\n518,368,3.0\n518,369,3.5\n518,370,4.0\n518,371,4.5\n518,372,5.0\n518,373,5.5\n518,374,6.0\n518,375,11.5\n518,376,11.0\n518,377,10.5\n518,378,10.0\n518,379,9.5\n518,380,9.0\n518,381,8.5\n518,382,8.0\n518,383,7.5\n518,384,7.0\n518,385,6.5\n518,386,6.0\n518,387,5.5\n518,388,5.0\n518,389,4.5\n518,390,4.0\n518,391,3.5\n518,392,3.0\n518,393,2.5\n518,394,3.0\n518,395,3.5\n518,396,4.0\n518,397,4.5\n518,398,5.0\n518,399,5.5\n518,400,11.0\n518,401,10.5\n518,402,10.0\n518,403,9.5\n518,404,9.0\n518,405,8.5\n518,406,8.0\n518,407,7.5\n518,408,7.0\n518,409,6.5\n518,410,6.0\n518,411,5.5\n518,412,5.0\n518,413,4.5\n518,414,4.0\n518,415,3.5\n518,416,3.0\n518,417,2.5\n518,418,2.0\n518,419,2.5\n518,420,3.0\n518,421,3.5\n518,422,4.0\n518,423,4.5\n518,424,5.0\n518,425,10.5\n518,426,10.0\n518,427,9.5\n518,428,9.0\n518,429,8.5\n518,430,8.0\n518,431,7.5\n518,432,7.0\n518,433,6.5\n518,434,6.0\n518,435,5.5\n518,436,5.0\n518,437,4.5\n518,438,4.0\n518,439,3.5\n518,440,3.0\n518,441,2.5\n518,442,2.0\n518,443,1.5\n518,444,2.0\n518,445,2.5\n518,446,3.0\n518,447,3.5\n518,448,4.0\n518,449,4.5\n518,450,10.0\n518,451,9.5\n518,452,9.0\n518,453,8.5\n518,454,8.0\n518,455,7.5\n518,456,7.0\n518,457,6.5\n518,458,6.0\n518,459,5.5\n518,460,5.0\n518,461,4.5\n518,462,4.0\n518,463,3.5\n518,464,3.0\n518,465,2.5\n518,466,2.0\n518,467,1.5\n518,468,1.0\n518,469,1.5\n518,470,2.0\n518,471,2.5\n518,472,3.0\n518,473,3.5\n518,474,4.0\n518,475,9.5\n518,476,9.0\n518,477,8.5\n518,478,8.0\n518,479,7.5\n518,480,7.0\n518,481,6.5\n518,482,6.0\n518,483,5.5\n518,484,5.0\n518,485,4.5\n518,486,4.0\n518,487,3.5\n518,488,3.0\n518,489,2.5\n518,490,2.0\n518,491,1.5\n518,492,1.0\n518,493,0.5\n518,494,1.0\n518,495,1.5\n518,496,2.0\n518,497,2.5\n518,498,3.0\n518,499,3.5\n518,500,9.0\n518,501,8.5\n518,502,8.0\n518,503,7.5\n518,504,7.0\n518,505,6.5\n518,506,6.0\n518,507,5.5\n518,508,5.0\n518,509,4.5\n518,510,4.0\n518,511,3.5\n518,512,3.0\n518,513,2.5\n518,514,2.0\n518,515,1.5\n518,516,1.0\n518,517,0.5\n518,518,0\n518,519,0.5\n518,520,1.0\n518,521,1.5\n518,522,2.0\n518,523,2.5\n518,524,3.0\n518,525,9.5\n518,526,9.0\n518,527,8.5\n518,528,8.0\n518,529,7.5\n518,530,7.0\n518,531,6.5\n518,532,6.0\n518,533,5.5\n518,534,5.0\n518,535,4.5\n518,536,4.0\n518,537,3.5\n518,538,3.0\n518,539,2.5\n518,540,2.0\n518,541,1.5\n518,542,1.0\n518,543,0.5\n518,544,1.0\n518,545,1.5\n518,546,2.0\n518,547,2.5\n518,548,3.0\n518,549,3.5\n518,550,10.0\n518,551,9.5\n518,552,9.0\n518,553,8.5\n518,554,8.0\n518,555,7.5\n518,556,7.0\n518,557,6.5\n518,558,6.0\n518,559,5.5\n518,560,5.0\n518,561,4.5\n518,562,4.0\n518,563,3.5\n518,564,3.0\n518,565,2.5\n518,566,2.0\n518,567,1.5\n518,568,1.0\n518,569,1.5\n518,570,2.0\n518,571,2.5\n518,572,3.0\n518,573,3.5\n518,574,4.0\n518,575,10.5\n518,576,10.0\n518,577,9.5\n518,578,9.0\n518,579,8.5\n518,580,8.0\n518,581,7.5\n518,582,7.0\n518,583,6.5\n518,584,6.0\n518,585,5.5\n518,586,5.0\n518,587,4.5\n518,588,4.0\n518,589,3.5\n518,590,3.0\n518,591,2.5\n518,592,2.0\n518,593,1.5\n518,594,2.0\n518,595,2.5\n518,596,3.0\n518,597,3.5\n518,598,4.0\n518,599,4.5\n518,600,11.0\n518,601,10.5\n518,602,10.0\n518,603,9.5\n518,604,9.0\n518,605,8.5\n518,606,8.0\n518,607,7.5\n518,608,7.0\n518,609,6.5\n518,610,6.0\n518,611,5.5\n518,612,5.0\n518,613,4.5\n518,614,4.0\n518,615,3.5\n518,616,3.0\n518,617,2.5\n518,618,2.0\n518,619,2.5\n518,620,3.0\n518,621,3.5\n518,622,4.0\n518,623,4.5\n518,624,5.0\n519,0,19.5\n519,1,19.0\n519,2,18.5\n519,3,18.0\n519,4,17.5\n519,5,17.0\n519,6,16.5\n519,7,16.0\n519,8,15.5\n519,9,15.0\n519,10,14.5\n519,11,14.0\n519,12,13.5\n519,13,13.0\n519,14,12.5\n519,15,12.0\n519,16,11.5\n519,17,11.0\n519,18,10.5\n519,19,10.0\n519,20,10.5\n519,21,11.0\n519,22,11.5\n519,23,12.0\n519,24,12.5\n519,25,19.0\n519,26,18.5\n519,27,18.0\n519,28,17.5\n519,29,17.0\n519,30,16.5\n519,31,16.0\n519,32,15.5\n519,33,15.0\n519,34,14.5\n519,35,14.0\n519,36,13.5\n519,37,13.0\n519,38,12.5\n519,39,12.0\n519,40,11.5\n519,41,11.0\n519,42,10.5\n519,43,10.0\n519,44,9.5\n519,45,10.0\n519,46,10.5\n519,47,11.0\n519,48,11.5\n519,49,12.0\n519,50,18.5\n519,51,18.0\n519,52,17.5\n519,53,17.0\n519,54,16.5\n519,55,16.0\n519,56,15.5\n519,57,15.0\n519,58,14.5\n519,59,14.0\n519,60,13.5\n519,61,13.0\n519,62,12.5\n519,63,12.0\n519,64,11.5\n519,65,11.0\n519,66,10.5\n519,67,10.0\n519,68,9.5\n519,69,9.0\n519,70,9.5\n519,71,10.0\n519,72,10.5\n519,73,11.0\n519,74,11.5\n519,75,18.0\n519,76,17.5\n519,77,17.0\n519,78,16.5\n519,79,16.0\n519,80,15.5\n519,81,15.0\n519,82,14.5\n519,83,14.0\n519,84,13.5\n519,85,13.0\n519,86,12.5\n519,87,12.0\n519,88,11.5\n519,89,11.0\n519,90,10.5\n519,91,10.0\n519,92,9.5\n519,93,9.0\n519,94,8.5\n519,95,9.0\n519,96,9.5\n519,97,10.0\n519,98,10.5\n519,99,11.0\n519,100,17.5\n519,101,17.0\n519,102,16.5\n519,103,16.0\n519,104,15.5\n519,105,15.0\n519,106,14.5\n519,107,14.0\n519,108,13.5\n519,109,13.0\n519,110,12.5\n519,111,12.0\n519,112,11.5\n519,113,11.0\n519,114,10.5\n519,115,10.0\n519,116,9.5\n519,117,9.0\n519,118,8.5\n519,119,8.0\n519,120,8.5\n519,121,9.0\n519,122,9.5\n519,123,10.0\n519,124,10.5\n519,125,17.0\n519,126,16.5\n519,127,16.0\n519,128,15.5\n519,129,15.0\n519,130,14.5\n519,131,14.0\n519,132,13.5\n519,133,13.0\n519,134,12.5\n519,135,12.0\n519,136,11.5\n519,137,11.0\n519,138,10.5\n519,139,10.0\n519,140,9.5\n519,141,9.0\n519,142,8.5\n519,143,8.0\n519,144,7.5\n519,145,8.0\n519,146,8.5\n519,147,9.0\n519,148,9.5\n519,149,10.0\n519,150,16.5\n519,151,16.0\n519,152,15.5\n519,153,15.0\n519,154,14.5\n519,155,14.0\n519,156,13.5\n519,157,13.0\n519,158,12.5\n519,159,12.0\n519,160,11.5\n519,161,11.0\n519,162,10.5\n519,163,10.0\n519,164,9.5\n519,165,9.0\n519,166,8.5\n519,167,8.0\n519,168,7.5\n519,169,7.0\n519,170,7.5\n519,171,8.0\n519,172,8.5\n519,173,9.0\n519,174,9.5\n519,175,16.0\n519,176,15.5\n519,177,15.0\n519,178,14.5\n519,179,14.0\n519,180,13.5\n519,181,13.0\n519,182,12.5\n519,183,12.0\n519,184,11.5\n519,185,11.0\n519,186,10.5\n519,187,10.0\n519,188,9.5\n519,189,9.0\n519,190,8.5\n519,191,8.0\n519,192,7.5\n519,193,7.0\n519,194,6.5\n519,195,7.0\n519,196,7.5\n519,197,8.0\n519,198,8.5\n519,199,9.0\n519,200,15.5\n519,201,15.0\n519,202,14.5\n519,203,14.0\n519,204,13.5\n519,205,13.0\n519,206,12.5\n519,207,12.0\n519,208,11.5\n519,209,11.0\n519,210,10.5\n519,211,10.0\n519,212,9.5\n519,213,9.0\n519,214,8.5\n519,215,8.0\n519,216,7.5\n519,217,7.0\n519,218,6.5\n519,219,6.0\n519,220,6.5\n519,221,7.0\n519,222,7.5\n519,223,8.0\n519,224,8.5\n519,225,15.0\n519,226,14.5\n519,227,14.0\n519,228,13.5\n519,229,13.0\n519,230,12.5\n519,231,12.0\n519,232,11.5\n519,233,11.0\n519,234,10.5\n519,235,10.0\n519,236,9.5\n519,237,9.0\n519,238,8.5\n519,239,8.0\n519,240,7.5\n519,241,7.0\n519,242,6.5\n519,243,6.0\n519,244,5.5\n519,245,6.0\n519,246,6.5\n519,247,7.0\n519,248,7.5\n519,249,8.0\n519,250,14.5\n519,251,14.0\n519,252,13.5\n519,253,13.0\n519,254,12.5\n519,255,12.0\n519,256,11.5\n519,257,11.0\n519,258,10.5\n519,259,10.0\n519,260,9.5\n519,261,9.0\n519,262,8.5\n519,263,8.0\n519,264,7.5\n519,265,7.0\n519,266,6.5\n519,267,6.0\n519,268,5.5\n519,269,5.0\n519,270,5.5\n519,271,6.0\n519,272,6.5\n519,273,7.0\n519,274,7.5\n519,275,14.0\n519,276,13.5\n519,277,13.0\n519,278,12.5\n519,279,12.0\n519,280,11.5\n519,281,11.0\n519,282,10.5\n519,283,10.0\n519,284,9.5\n519,285,9.0\n519,286,8.5\n519,287,8.0\n519,288,7.5\n519,289,7.0\n519,290,6.5\n519,291,6.0\n519,292,5.5\n519,293,5.0\n519,294,4.5\n519,295,5.0\n519,296,5.5\n519,297,6.0\n519,298,6.5\n519,299,7.0\n519,300,13.5\n519,301,13.0\n519,302,12.5\n519,303,12.0\n519,304,11.5\n519,305,11.0\n519,306,10.5\n519,307,10.0\n519,308,9.5\n519,309,9.0\n519,310,8.5\n519,311,8.0\n519,312,7.5\n519,313,7.0\n519,314,6.5\n519,315,6.0\n519,316,5.5\n519,317,5.0\n519,318,4.5\n519,319,4.0\n519,320,4.5\n519,321,5.0\n519,322,5.5\n519,323,6.0\n519,324,6.5\n519,325,13.0\n519,326,12.5\n519,327,12.0\n519,328,11.5\n519,329,11.0\n519,330,10.5\n519,331,10.0\n519,332,9.5\n519,333,9.0\n519,334,8.5\n519,335,8.0\n519,336,7.5\n519,337,7.0\n519,338,6.5\n519,339,6.0\n519,340,5.5\n519,341,5.0\n519,342,4.5\n519,343,4.0\n519,344,3.5\n519,345,4.0\n519,346,4.5\n519,347,5.0\n519,348,5.5\n519,349,6.0\n519,350,12.5\n519,351,12.0\n519,352,11.5\n519,353,11.0\n519,354,10.5\n519,355,10.0\n519,356,9.5\n519,357,9.0\n519,358,8.5\n519,359,8.0\n519,360,7.5\n519,361,7.0\n519,362,6.5\n519,363,6.0\n519,364,5.5\n519,365,5.0\n519,366,4.5\n519,367,4.0\n519,368,3.5\n519,369,3.0\n519,370,3.5\n519,371,4.0\n519,372,4.5\n519,373,5.0\n519,374,5.5\n519,375,12.0\n519,376,11.5\n519,377,11.0\n519,378,10.5\n519,379,10.0\n519,380,9.5\n519,381,9.0\n519,382,8.5\n519,383,8.0\n519,384,7.5\n519,385,7.0\n519,386,6.5\n519,387,6.0\n519,388,5.5\n519,389,5.0\n519,390,4.5\n519,391,4.0\n519,392,3.5\n519,393,3.0\n519,394,2.5\n519,395,3.0\n519,396,3.5\n519,397,4.0\n519,398,4.5\n519,399,5.0\n519,400,11.5\n519,401,11.0\n519,402,10.5\n519,403,10.0\n519,404,9.5\n519,405,9.0\n519,406,8.5\n519,407,8.0\n519,408,7.5\n519,409,7.0\n519,410,6.5\n519,411,6.0\n519,412,5.5\n519,413,5.0\n519,414,4.5\n519,415,4.0\n519,416,3.5\n519,417,3.0\n519,418,2.5\n519,419,2.0\n519,420,2.5\n519,421,3.0\n519,422,3.5\n519,423,4.0\n519,424,4.5\n519,425,11.0\n519,426,10.5\n519,427,10.0\n519,428,9.5\n519,429,9.0\n519,430,8.5\n519,431,8.0\n519,432,7.5\n519,433,7.0\n519,434,6.5\n519,435,6.0\n519,436,5.5\n519,437,5.0\n519,438,4.5\n519,439,4.0\n519,440,3.5\n519,441,3.0\n519,442,2.5\n519,443,2.0\n519,444,1.5\n519,445,2.0\n519,446,2.5\n519,447,3.0\n519,448,3.5\n519,449,4.0\n519,450,10.5\n519,451,10.0\n519,452,9.5\n519,453,9.0\n519,454,8.5\n519,455,8.0\n519,456,7.5\n519,457,7.0\n519,458,6.5\n519,459,6.0\n519,460,5.5\n519,461,5.0\n519,462,4.5\n519,463,4.0\n519,464,3.5\n519,465,3.0\n519,466,2.5\n519,467,2.0\n519,468,1.5\n519,469,1.0\n519,470,1.5\n519,471,2.0\n519,472,2.5\n519,473,3.0\n519,474,3.5\n519,475,10.0\n519,476,9.5\n519,477,9.0\n519,478,8.5\n519,479,8.0\n519,480,7.5\n519,481,7.0\n519,482,6.5\n519,483,6.0\n519,484,5.5\n519,485,5.0\n519,486,4.5\n519,487,4.0\n519,488,3.5\n519,489,3.0\n519,490,2.5\n519,491,2.0\n519,492,1.5\n519,493,1.0\n519,494,0.5\n519,495,1.0\n519,496,1.5\n519,497,2.0\n519,498,2.5\n519,499,3.0\n519,500,9.5\n519,501,9.0\n519,502,8.5\n519,503,8.0\n519,504,7.5\n519,505,7.0\n519,506,6.5\n519,507,6.0\n519,508,5.5\n519,509,5.0\n519,510,4.5\n519,511,4.0\n519,512,3.5\n519,513,3.0\n519,514,2.5\n519,515,2.0\n519,516,1.5\n519,517,1.0\n519,518,0.5\n519,519,0\n519,520,0.5\n519,521,1.0\n519,522,1.5\n519,523,2.0\n519,524,2.5\n519,525,10.0\n519,526,9.5\n519,527,9.0\n519,528,8.5\n519,529,8.0\n519,530,7.5\n519,531,7.0\n519,532,6.5\n519,533,6.0\n519,534,5.5\n519,535,5.0\n519,536,4.5\n519,537,4.0\n519,538,3.5\n519,539,3.0\n519,540,2.5\n519,541,2.0\n519,542,1.5\n519,543,1.0\n519,544,0.5\n519,545,1.0\n519,546,1.5\n519,547,2.0\n519,548,2.5\n519,549,3.0\n519,550,10.5\n519,551,10.0\n519,552,9.5\n519,553,9.0\n519,554,8.5\n519,555,8.0\n519,556,7.5\n519,557,7.0\n519,558,6.5\n519,559,6.0\n519,560,5.5\n519,561,5.0\n519,562,4.5\n519,563,4.0\n519,564,3.5\n519,565,3.0\n519,566,2.5\n519,567,2.0\n519,568,1.5\n519,569,1.0\n519,570,1.5\n519,571,2.0\n519,572,2.5\n519,573,3.0\n519,574,3.5\n519,575,11.0\n519,576,10.5\n519,577,10.0\n519,578,9.5\n519,579,9.0\n519,580,8.5\n519,581,8.0\n519,582,7.5\n519,583,7.0\n519,584,6.5\n519,585,6.0\n519,586,5.5\n519,587,5.0\n519,588,4.5\n519,589,4.0\n519,590,3.5\n519,591,3.0\n519,592,2.5\n519,593,2.0\n519,594,1.5\n519,595,2.0\n519,596,2.5\n519,597,3.0\n519,598,3.5\n519,599,4.0\n519,600,11.5\n519,601,11.0\n519,602,10.5\n519,603,10.0\n519,604,9.5\n519,605,9.0\n519,606,8.5\n519,607,8.0\n519,608,7.5\n519,609,7.0\n519,610,6.5\n519,611,6.0\n519,612,5.5\n519,613,5.0\n519,614,4.5\n519,615,4.0\n519,616,3.5\n519,617,3.0\n519,618,2.5\n519,619,2.0\n519,620,2.5\n519,621,3.0\n519,622,3.5\n519,623,4.0\n519,624,4.5\n520,0,20.0\n520,1,19.5\n520,2,19.0\n520,3,18.5\n520,4,18.0\n520,5,17.5\n520,6,17.0\n520,7,16.5\n520,8,16.0\n520,9,15.5\n520,10,15.0\n520,11,14.5\n520,12,14.0\n520,13,13.5\n520,14,13.0\n520,15,12.5\n520,16,12.0\n520,17,11.5\n520,18,11.0\n520,19,10.5\n520,20,10.0\n520,21,10.5\n520,22,11.0\n520,23,11.5\n520,24,12.0\n520,25,19.5\n520,26,19.0\n520,27,18.5\n520,28,18.0\n520,29,17.5\n520,30,17.0\n520,31,16.5\n520,32,16.0\n520,33,15.5\n520,34,15.0\n520,35,14.5\n520,36,14.0\n520,37,13.5\n520,38,13.0\n520,39,12.5\n520,40,12.0\n520,41,11.5\n520,42,11.0\n520,43,10.5\n520,44,10.0\n520,45,9.5\n520,46,10.0\n520,47,10.5\n520,48,11.0\n520,49,11.5\n520,50,19.0\n520,51,18.5\n520,52,18.0\n520,53,17.5\n520,54,17.0\n520,55,16.5\n520,56,16.0\n520,57,15.5\n520,58,15.0\n520,59,14.5\n520,60,14.0\n520,61,13.5\n520,62,13.0\n520,63,12.5\n520,64,12.0\n520,65,11.5\n520,66,11.0\n520,67,10.5\n520,68,10.0\n520,69,9.5\n520,70,9.0\n520,71,9.5\n520,72,10.0\n520,73,10.5\n520,74,11.0\n520,75,18.5\n520,76,18.0\n520,77,17.5\n520,78,17.0\n520,79,16.5\n520,80,16.0\n520,81,15.5\n520,82,15.0\n520,83,14.5\n520,84,14.0\n520,85,13.5\n520,86,13.0\n520,87,12.5\n520,88,12.0\n520,89,11.5\n520,90,11.0\n520,91,10.5\n520,92,10.0\n520,93,9.5\n520,94,9.0\n520,95,8.5\n520,96,9.0\n520,97,9.5\n520,98,10.0\n520,99,10.5\n520,100,18.0\n520,101,17.5\n520,102,17.0\n520,103,16.5\n520,104,16.0\n520,105,15.5\n520,106,15.0\n520,107,14.5\n520,108,14.0\n520,109,13.5\n520,110,13.0\n520,111,12.5\n520,112,12.0\n520,113,11.5\n520,114,11.0\n520,115,10.5\n520,116,10.0\n520,117,9.5\n520,118,9.0\n520,119,8.5\n520,120,8.0\n520,121,8.5\n520,122,9.0\n520,123,9.5\n520,124,10.0\n520,125,17.5\n520,126,17.0\n520,127,16.5\n520,128,16.0\n520,129,15.5\n520,130,15.0\n520,131,14.5\n520,132,14.0\n520,133,13.5\n520,134,13.0\n520,135,12.5\n520,136,12.0\n520,137,11.5\n520,138,11.0\n520,139,10.5\n520,140,10.0\n520,141,9.5\n520,142,9.0\n520,143,8.5\n520,144,8.0\n520,145,7.5\n520,146,8.0\n520,147,8.5\n520,148,9.0\n520,149,9.5\n520,150,17.0\n520,151,16.5\n520,152,16.0\n520,153,15.5\n520,154,15.0\n520,155,14.5\n520,156,14.0\n520,157,13.5\n520,158,13.0\n520,159,12.5\n520,160,12.0\n520,161,11.5\n520,162,11.0\n520,163,10.5\n520,164,10.0\n520,165,9.5\n520,166,9.0\n520,167,8.5\n520,168,8.0\n520,169,7.5\n520,170,7.0\n520,171,7.5\n520,172,8.0\n520,173,8.5\n520,174,9.0\n520,175,16.5\n520,176,16.0\n520,177,15.5\n520,178,15.0\n520,179,14.5\n520,180,14.0\n520,181,13.5\n520,182,13.0\n520,183,12.5\n520,184,12.0\n520,185,11.5\n520,186,11.0\n520,187,10.5\n520,188,10.0\n520,189,9.5\n520,190,9.0\n520,191,8.5\n520,192,8.0\n520,193,7.5\n520,194,7.0\n520,195,6.5\n520,196,7.0\n520,197,7.5\n520,198,8.0\n520,199,8.5\n520,200,16.0\n520,201,15.5\n520,202,15.0\n520,203,14.5\n520,204,14.0\n520,205,13.5\n520,206,13.0\n520,207,12.5\n520,208,12.0\n520,209,11.5\n520,210,11.0\n520,211,10.5\n520,212,10.0\n520,213,9.5\n520,214,9.0\n520,215,8.5\n520,216,8.0\n520,217,7.5\n520,218,7.0\n520,219,6.5\n520,220,6.0\n520,221,6.5\n520,222,7.0\n520,223,7.5\n520,224,8.0\n520,225,15.5\n520,226,15.0\n520,227,14.5\n520,228,14.0\n520,229,13.5\n520,230,13.0\n520,231,12.5\n520,232,12.0\n520,233,11.5\n520,234,11.0\n520,235,10.5\n520,236,10.0\n520,237,9.5\n520,238,9.0\n520,239,8.5\n520,240,8.0\n520,241,7.5\n520,242,7.0\n520,243,6.5\n520,244,6.0\n520,245,5.5\n520,246,6.0\n520,247,6.5\n520,248,7.0\n520,249,7.5\n520,250,15.0\n520,251,14.5\n520,252,14.0\n520,253,13.5\n520,254,13.0\n520,255,12.5\n520,256,12.0\n520,257,11.5\n520,258,11.0\n520,259,10.5\n520,260,10.0\n520,261,9.5\n520,262,9.0\n520,263,8.5\n520,264,8.0\n520,265,7.5\n520,266,7.0\n520,267,6.5\n520,268,6.0\n520,269,5.5\n520,270,5.0\n520,271,5.5\n520,272,6.0\n520,273,6.5\n520,274,7.0\n520,275,14.5\n520,276,14.0\n520,277,13.5\n520,278,13.0\n520,279,12.5\n520,280,12.0\n520,281,11.5\n520,282,11.0\n520,283,10.5\n520,284,10.0\n520,285,9.5\n520,286,9.0\n520,287,8.5\n520,288,8.0\n520,289,7.5\n520,290,7.0\n520,291,6.5\n520,292,6.0\n520,293,5.5\n520,294,5.0\n520,295,4.5\n520,296,5.0\n520,297,5.5\n520,298,6.0\n520,299,6.5\n520,300,14.0\n520,301,13.5\n520,302,13.0\n520,303,12.5\n520,304,12.0\n520,305,11.5\n520,306,11.0\n520,307,10.5\n520,308,10.0\n520,309,9.5\n520,310,9.0\n520,311,8.5\n520,312,8.0\n520,313,7.5\n520,314,7.0\n520,315,6.5\n520,316,6.0\n520,317,5.5\n520,318,5.0\n520,319,4.5\n520,320,4.0\n520,321,4.5\n520,322,5.0\n520,323,5.5\n520,324,6.0\n520,325,13.5\n520,326,13.0\n520,327,12.5\n520,328,12.0\n520,329,11.5\n520,330,11.0\n520,331,10.5\n520,332,10.0\n520,333,9.5\n520,334,9.0\n520,335,8.5\n520,336,8.0\n520,337,7.5\n520,338,7.0\n520,339,6.5\n520,340,6.0\n520,341,5.5\n520,342,5.0\n520,343,4.5\n520,344,4.0\n520,345,3.5\n520,346,4.0\n520,347,4.5\n520,348,5.0\n520,349,5.5\n520,350,13.0\n520,351,12.5\n520,352,12.0\n520,353,11.5\n520,354,11.0\n520,355,10.5\n520,356,10.0\n520,357,9.5\n520,358,9.0\n520,359,8.5\n520,360,8.0\n520,361,7.5\n520,362,7.0\n520,363,6.5\n520,364,6.0\n520,365,5.5\n520,366,5.0\n520,367,4.5\n520,368,4.0\n520,369,3.5\n520,370,3.0\n520,371,3.5\n520,372,4.0\n520,373,4.5\n520,374,5.0\n520,375,12.5\n520,376,12.0\n520,377,11.5\n520,378,11.0\n520,379,10.5\n520,380,10.0\n520,381,9.5\n520,382,9.0\n520,383,8.5\n520,384,8.0\n520,385,7.5\n520,386,7.0\n520,387,6.5\n520,388,6.0\n520,389,5.5\n520,390,5.0\n520,391,4.5\n520,392,4.0\n520,393,3.5\n520,394,3.0\n520,395,2.5\n520,396,3.0\n520,397,3.5\n520,398,4.0\n520,399,4.5\n520,400,12.0\n520,401,11.5\n520,402,11.0\n520,403,10.5\n520,404,10.0\n520,405,9.5\n520,406,9.0\n520,407,8.5\n520,408,8.0\n520,409,7.5\n520,410,7.0\n520,411,6.5\n520,412,6.0\n520,413,5.5\n520,414,5.0\n520,415,4.5\n520,416,4.0\n520,417,3.5\n520,418,3.0\n520,419,2.5\n520,420,2.0\n520,421,2.5\n520,422,3.0\n520,423,3.5\n520,424,4.0\n520,425,11.5\n520,426,11.0\n520,427,10.5\n520,428,10.0\n520,429,9.5\n520,430,9.0\n520,431,8.5\n520,432,8.0\n520,433,7.5\n520,434,7.0\n520,435,6.5\n520,436,6.0\n520,437,5.5\n520,438,5.0\n520,439,4.5\n520,440,4.0\n520,441,3.5\n520,442,3.0\n520,443,2.5\n520,444,2.0\n520,445,1.5\n520,446,2.0\n520,447,2.5\n520,448,3.0\n520,449,3.5\n520,450,11.0\n520,451,10.5\n520,452,10.0\n520,453,9.5\n520,454,9.0\n520,455,8.5\n520,456,8.0\n520,457,7.5\n520,458,7.0\n520,459,6.5\n520,460,6.0\n520,461,5.5\n520,462,5.0\n520,463,4.5\n520,464,4.0\n520,465,3.5\n520,466,3.0\n520,467,2.5\n520,468,2.0\n520,469,1.5\n520,470,1.0\n520,471,1.5\n520,472,2.0\n520,473,2.5\n520,474,3.0\n520,475,10.5\n520,476,10.0\n520,477,9.5\n520,478,9.0\n520,479,8.5\n520,480,8.0\n520,481,7.5\n520,482,7.0\n520,483,6.5\n520,484,6.0\n520,485,5.5\n520,486,5.0\n520,487,4.5\n520,488,4.0\n520,489,3.5\n520,490,3.0\n520,491,2.5\n520,492,2.0\n520,493,1.5\n520,494,1.0\n520,495,0.5\n520,496,1.0\n520,497,1.5\n520,498,2.0\n520,499,2.5\n520,500,10.0\n520,501,9.5\n520,502,9.0\n520,503,8.5\n520,504,8.0\n520,505,7.5\n520,506,7.0\n520,507,6.5\n520,508,6.0\n520,509,5.5\n520,510,5.0\n520,511,4.5\n520,512,4.0\n520,513,3.5\n520,514,3.0\n520,515,2.5\n520,516,2.0\n520,517,1.5\n520,518,1.0\n520,519,0.5\n520,520,0\n520,521,0.5\n520,522,1.0\n520,523,1.5\n520,524,2.0\n520,525,10.5\n520,526,10.0\n520,527,9.5\n520,528,9.0\n520,529,8.5\n520,530,8.0\n520,531,7.5\n520,532,7.0\n520,533,6.5\n520,534,6.0\n520,535,5.5\n520,536,5.0\n520,537,4.5\n520,538,4.0\n520,539,3.5\n520,540,3.0\n520,541,2.5\n520,542,2.0\n520,543,1.5\n520,544,1.0\n520,545,0.5\n520,546,1.0\n520,547,1.5\n520,548,2.0\n520,549,2.5\n520,550,11.0\n520,551,10.5\n520,552,10.0\n520,553,9.5\n520,554,9.0\n520,555,8.5\n520,556,8.0\n520,557,7.5\n520,558,7.0\n520,559,6.5\n520,560,6.0\n520,561,5.5\n520,562,5.0\n520,563,4.5\n520,564,4.0\n520,565,3.5\n520,566,3.0\n520,567,2.5\n520,568,2.0\n520,569,1.5\n520,570,1.0\n520,571,1.5\n520,572,2.0\n520,573,2.5\n520,574,3.0\n520,575,11.5\n520,576,11.0\n520,577,10.5\n520,578,10.0\n520,579,9.5\n520,580,9.0\n520,581,8.5\n520,582,8.0\n520,583,7.5\n520,584,7.0\n520,585,6.5\n520,586,6.0\n520,587,5.5\n520,588,5.0\n520,589,4.5\n520,590,4.0\n520,591,3.5\n520,592,3.0\n520,593,2.5\n520,594,2.0\n520,595,1.5\n520,596,2.0\n520,597,2.5\n520,598,3.0\n520,599,3.5\n520,600,12.0\n520,601,11.5\n520,602,11.0\n520,603,10.5\n520,604,10.0\n520,605,9.5\n520,606,9.0\n520,607,8.5\n520,608,8.0\n520,609,7.5\n520,610,7.0\n520,611,6.5\n520,612,6.0\n520,613,5.5\n520,614,5.0\n520,615,4.5\n520,616,4.0\n520,617,3.5\n520,618,3.0\n520,619,2.5\n520,620,2.0\n520,621,2.5\n520,622,3.0\n520,623,3.5\n520,624,4.0\n521,0,20.5\n521,1,20.0\n521,2,19.5\n521,3,19.0\n521,4,18.5\n521,5,18.0\n521,6,17.5\n521,7,17.0\n521,8,16.5\n521,9,16.0\n521,10,15.5\n521,11,15.0\n521,12,14.5\n521,13,14.0\n521,14,13.5\n521,15,13.0\n521,16,12.5\n521,17,12.0\n521,18,11.5\n521,19,11.0\n521,20,10.5\n521,21,10.0\n521,22,10.5\n521,23,11.0\n521,24,11.5\n521,25,20.0\n521,26,19.5\n521,27,19.0\n521,28,18.5\n521,29,18.0\n521,30,17.5\n521,31,17.0\n521,32,16.5\n521,33,16.0\n521,34,15.5\n521,35,15.0\n521,36,14.5\n521,37,14.0\n521,38,13.5\n521,39,13.0\n521,40,12.5\n521,41,12.0\n521,42,11.5\n521,43,11.0\n521,44,10.5\n521,45,10.0\n521,46,9.5\n521,47,10.0\n521,48,10.5\n521,49,11.0\n521,50,19.5\n521,51,19.0\n521,52,18.5\n521,53,18.0\n521,54,17.5\n521,55,17.0\n521,56,16.5\n521,57,16.0\n521,58,15.5\n521,59,15.0\n521,60,14.5\n521,61,14.0\n521,62,13.5\n521,63,13.0\n521,64,12.5\n521,65,12.0\n521,66,11.5\n521,67,11.0\n521,68,10.5\n521,69,10.0\n521,70,9.5\n521,71,9.0\n521,72,9.5\n521,73,10.0\n521,74,10.5\n521,75,19.0\n521,76,18.5\n521,77,18.0\n521,78,17.5\n521,79,17.0\n521,80,16.5\n521,81,16.0\n521,82,15.5\n521,83,15.0\n521,84,14.5\n521,85,14.0\n521,86,13.5\n521,87,13.0\n521,88,12.5\n521,89,12.0\n521,90,11.5\n521,91,11.0\n521,92,10.5\n521,93,10.0\n521,94,9.5\n521,95,9.0\n521,96,8.5\n521,97,9.0\n521,98,9.5\n521,99,10.0\n521,100,18.5\n521,101,18.0\n521,102,17.5\n521,103,17.0\n521,104,16.5\n521,105,16.0\n521,106,15.5\n521,107,15.0\n521,108,14.5\n521,109,14.0\n521,110,13.5\n521,111,13.0\n521,112,12.5\n521,113,12.0\n521,114,11.5\n521,115,11.0\n521,116,10.5\n521,117,10.0\n521,118,9.5\n521,119,9.0\n521,120,8.5\n521,121,8.0\n521,122,8.5\n521,123,9.0\n521,124,9.5\n521,125,18.0\n521,126,17.5\n521,127,17.0\n521,128,16.5\n521,129,16.0\n521,130,15.5\n521,131,15.0\n521,132,14.5\n521,133,14.0\n521,134,13.5\n521,135,13.0\n521,136,12.5\n521,137,12.0\n521,138,11.5\n521,139,11.0\n521,140,10.5\n521,141,10.0\n521,142,9.5\n521,143,9.0\n521,144,8.5\n521,145,8.0\n521,146,7.5\n521,147,8.0\n521,148,8.5\n521,149,9.0\n521,150,17.5\n521,151,17.0\n521,152,16.5\n521,153,16.0\n521,154,15.5\n521,155,15.0\n521,156,14.5\n521,157,14.0\n521,158,13.5\n521,159,13.0\n521,160,12.5\n521,161,12.0\n521,162,11.5\n521,163,11.0\n521,164,10.5\n521,165,10.0\n521,166,9.5\n521,167,9.0\n521,168,8.5\n521,169,8.0\n521,170,7.5\n521,171,7.0\n521,172,7.5\n521,173,8.0\n521,174,8.5\n521,175,17.0\n521,176,16.5\n521,177,16.0\n521,178,15.5\n521,179,15.0\n521,180,14.5\n521,181,14.0\n521,182,13.5\n521,183,13.0\n521,184,12.5\n521,185,12.0\n521,186,11.5\n521,187,11.0\n521,188,10.5\n521,189,10.0\n521,190,9.5\n521,191,9.0\n521,192,8.5\n521,193,8.0\n521,194,7.5\n521,195,7.0\n521,196,6.5\n521,197,7.0\n521,198,7.5\n521,199,8.0\n521,200,16.5\n521,201,16.0\n521,202,15.5\n521,203,15.0\n521,204,14.5\n521,205,14.0\n521,206,13.5\n521,207,13.0\n521,208,12.5\n521,209,12.0\n521,210,11.5\n521,211,11.0\n521,212,10.5\n521,213,10.0\n521,214,9.5\n521,215,9.0\n521,216,8.5\n521,217,8.0\n521,218,7.5\n521,219,7.0\n521,220,6.5\n521,221,6.0\n521,222,6.5\n521,223,7.0\n521,224,7.5\n521,225,16.0\n521,226,15.5\n521,227,15.0\n521,228,14.5\n521,229,14.0\n521,230,13.5\n521,231,13.0\n521,232,12.5\n521,233,12.0\n521,234,11.5\n521,235,11.0\n521,236,10.5\n521,237,10.0\n521,238,9.5\n521,239,9.0\n521,240,8.5\n521,241,8.0\n521,242,7.5\n521,243,7.0\n521,244,6.5\n521,245,6.0\n521,246,5.5\n521,247,6.0\n521,248,6.5\n521,249,7.0\n521,250,15.5\n521,251,15.0\n521,252,14.5\n521,253,14.0\n521,254,13.5\n521,255,13.0\n521,256,12.5\n521,257,12.0\n521,258,11.5\n521,259,11.0\n521,260,10.5\n521,261,10.0\n521,262,9.5\n521,263,9.0\n521,264,8.5\n521,265,8.0\n521,266,7.5\n521,267,7.0\n521,268,6.5\n521,269,6.0\n521,270,5.5\n521,271,5.0\n521,272,5.5\n521,273,6.0\n521,274,6.5\n521,275,15.0\n521,276,14.5\n521,277,14.0\n521,278,13.5\n521,279,13.0\n521,280,12.5\n521,281,12.0\n521,282,11.5\n521,283,11.0\n521,284,10.5\n521,285,10.0\n521,286,9.5\n521,287,9.0\n521,288,8.5\n521,289,8.0\n521,290,7.5\n521,291,7.0\n521,292,6.5\n521,293,6.0\n521,294,5.5\n521,295,5.0\n521,296,4.5\n521,297,5.0\n521,298,5.5\n521,299,6.0\n521,300,14.5\n521,301,14.0\n521,302,13.5\n521,303,13.0\n521,304,12.5\n521,305,12.0\n521,306,11.5\n521,307,11.0\n521,308,10.5\n521,309,10.0\n521,310,9.5\n521,311,9.0\n521,312,8.5\n521,313,8.0\n521,314,7.5\n521,315,7.0\n521,316,6.5\n521,317,6.0\n521,318,5.5\n521,319,5.0\n521,320,4.5\n521,321,4.0\n521,322,4.5\n521,323,5.0\n521,324,5.5\n521,325,14.0\n521,326,13.5\n521,327,13.0\n521,328,12.5\n521,329,12.0\n521,330,11.5\n521,331,11.0\n521,332,10.5\n521,333,10.0\n521,334,9.5\n521,335,9.0\n521,336,8.5\n521,337,8.0\n521,338,7.5\n521,339,7.0\n521,340,6.5\n521,341,6.0\n521,342,5.5\n521,343,5.0\n521,344,4.5\n521,345,4.0\n521,346,3.5\n521,347,4.0\n521,348,4.5\n521,349,5.0\n521,350,13.5\n521,351,13.0\n521,352,12.5\n521,353,12.0\n521,354,11.5\n521,355,11.0\n521,356,10.5\n521,357,10.0\n521,358,9.5\n521,359,9.0\n521,360,8.5\n521,361,8.0\n521,362,7.5\n521,363,7.0\n521,364,6.5\n521,365,6.0\n521,366,5.5\n521,367,5.0\n521,368,4.5\n521,369,4.0\n521,370,3.5\n521,371,3.0\n521,372,3.5\n521,373,4.0\n521,374,4.5\n521,375,13.0\n521,376,12.5\n521,377,12.0\n521,378,11.5\n521,379,11.0\n521,380,10.5\n521,381,10.0\n521,382,9.5\n521,383,9.0\n521,384,8.5\n521,385,8.0\n521,386,7.5\n521,387,7.0\n521,388,6.5\n521,389,6.0\n521,390,5.5\n521,391,5.0\n521,392,4.5\n521,393,4.0\n521,394,3.5\n521,395,3.0\n521,396,2.5\n521,397,3.0\n521,398,3.5\n521,399,4.0\n521,400,12.5\n521,401,12.0\n521,402,11.5\n521,403,11.0\n521,404,10.5\n521,405,10.0\n521,406,9.5\n521,407,9.0\n521,408,8.5\n521,409,8.0\n521,410,7.5\n521,411,7.0\n521,412,6.5\n521,413,6.0\n521,414,5.5\n521,415,5.0\n521,416,4.5\n521,417,4.0\n521,418,3.5\n521,419,3.0\n521,420,2.5\n521,421,2.0\n521,422,2.5\n521,423,3.0\n521,424,3.5\n521,425,12.0\n521,426,11.5\n521,427,11.0\n521,428,10.5\n521,429,10.0\n521,430,9.5\n521,431,9.0\n521,432,8.5\n521,433,8.0\n521,434,7.5\n521,435,7.0\n521,436,6.5\n521,437,6.0\n521,438,5.5\n521,439,5.0\n521,440,4.5\n521,441,4.0\n521,442,3.5\n521,443,3.0\n521,444,2.5\n521,445,2.0\n521,446,1.5\n521,447,2.0\n521,448,2.5\n521,449,3.0\n521,450,11.5\n521,451,11.0\n521,452,10.5\n521,453,10.0\n521,454,9.5\n521,455,9.0\n521,456,8.5\n521,457,8.0\n521,458,7.5\n521,459,7.0\n521,460,6.5\n521,461,6.0\n521,462,5.5\n521,463,5.0\n521,464,4.5\n521,465,4.0\n521,466,3.5\n521,467,3.0\n521,468,2.5\n521,469,2.0\n521,470,1.5\n521,471,1.0\n521,472,1.5\n521,473,2.0\n521,474,2.5\n521,475,11.0\n521,476,10.5\n521,477,10.0\n521,478,9.5\n521,479,9.0\n521,480,8.5\n521,481,8.0\n521,482,7.5\n521,483,7.0\n521,484,6.5\n521,485,6.0\n521,486,5.5\n521,487,5.0\n521,488,4.5\n521,489,4.0\n521,490,3.5\n521,491,3.0\n521,492,2.5\n521,493,2.0\n521,494,1.5\n521,495,1.0\n521,496,0.5\n521,497,1.0\n521,498,1.5\n521,499,2.0\n521,500,10.5\n521,501,10.0\n521,502,9.5\n521,503,9.0\n521,504,8.5\n521,505,8.0\n521,506,7.5\n521,507,7.0\n521,508,6.5\n521,509,6.0\n521,510,5.5\n521,511,5.0\n521,512,4.5\n521,513,4.0\n521,514,3.5\n521,515,3.0\n521,516,2.5\n521,517,2.0\n521,518,1.5\n521,519,1.0\n521,520,0.5\n521,521,0\n521,522,0.5\n521,523,1.0\n521,524,1.5\n521,525,11.0\n521,526,10.5\n521,527,10.0\n521,528,9.5\n521,529,9.0\n521,530,8.5\n521,531,8.0\n521,532,7.5\n521,533,7.0\n521,534,6.5\n521,535,6.0\n521,536,5.5\n521,537,5.0\n521,538,4.5\n521,539,4.0\n521,540,3.5\n521,541,3.0\n521,542,2.5\n521,543,2.0\n521,544,1.5\n521,545,1.0\n521,546,0.5\n521,547,1.0\n521,548,1.5\n521,549,2.0\n521,550,11.5\n521,551,11.0\n521,552,10.5\n521,553,10.0\n521,554,9.5\n521,555,9.0\n521,556,8.5\n521,557,8.0\n521,558,7.5\n521,559,7.0\n521,560,6.5\n521,561,6.0\n521,562,5.5\n521,563,5.0\n521,564,4.5\n521,565,4.0\n521,566,3.5\n521,567,3.0\n521,568,2.5\n521,569,2.0\n521,570,1.5\n521,571,1.0\n521,572,1.5\n521,573,2.0\n521,574,2.5\n521,575,12.0\n521,576,11.5\n521,577,11.0\n521,578,10.5\n521,579,10.0\n521,580,9.5\n521,581,9.0\n521,582,8.5\n521,583,8.0\n521,584,7.5\n521,585,7.0\n521,586,6.5\n521,587,6.0\n521,588,5.5\n521,589,5.0\n521,590,4.5\n521,591,4.0\n521,592,3.5\n521,593,3.0\n521,594,2.5\n521,595,2.0\n521,596,1.5\n521,597,2.0\n521,598,2.5\n521,599,3.0\n521,600,12.5\n521,601,12.0\n521,602,11.5\n521,603,11.0\n521,604,10.5\n521,605,10.0\n521,606,9.5\n521,607,9.0\n521,608,8.5\n521,609,8.0\n521,610,7.5\n521,611,7.0\n521,612,6.5\n521,613,6.0\n521,614,5.5\n521,615,5.0\n521,616,4.5\n521,617,4.0\n521,618,3.5\n521,619,3.0\n521,620,2.5\n521,621,2.0\n521,622,2.5\n521,623,3.0\n521,624,3.5\n522,0,21.0\n522,1,20.5\n522,2,20.0\n522,3,19.5\n522,4,19.0\n522,5,18.5\n522,6,18.0\n522,7,17.5\n522,8,17.0\n522,9,16.5\n522,10,16.0\n522,11,15.5\n522,12,15.0\n522,13,14.5\n522,14,14.0\n522,15,13.5\n522,16,13.0\n522,17,12.5\n522,18,12.0\n522,19,11.5\n522,20,11.0\n522,21,10.5\n522,22,10.0\n522,23,10.5\n522,24,11.0\n522,25,20.5\n522,26,20.0\n522,27,19.5\n522,28,19.0\n522,29,18.5\n522,30,18.0\n522,31,17.5\n522,32,17.0\n522,33,16.5\n522,34,16.0\n522,35,15.5\n522,36,15.0\n522,37,14.5\n522,38,14.0\n522,39,13.5\n522,40,13.0\n522,41,12.5\n522,42,12.0\n522,43,11.5\n522,44,11.0\n522,45,10.5\n522,46,10.0\n522,47,9.5\n522,48,10.0\n522,49,10.5\n522,50,20.0\n522,51,19.5\n522,52,19.0\n522,53,18.5\n522,54,18.0\n522,55,17.5\n522,56,17.0\n522,57,16.5\n522,58,16.0\n522,59,15.5\n522,60,15.0\n522,61,14.5\n522,62,14.0\n522,63,13.5\n522,64,13.0\n522,65,12.5\n522,66,12.0\n522,67,11.5\n522,68,11.0\n522,69,10.5\n522,70,10.0\n522,71,9.5\n522,72,9.0\n522,73,9.5\n522,74,10.0\n522,75,19.5\n522,76,19.0\n522,77,18.5\n522,78,18.0\n522,79,17.5\n522,80,17.0\n522,81,16.5\n522,82,16.0\n522,83,15.5\n522,84,15.0\n522,85,14.5\n522,86,14.0\n522,87,13.5\n522,88,13.0\n522,89,12.5\n522,90,12.0\n522,91,11.5\n522,92,11.0\n522,93,10.5\n522,94,10.0\n522,95,9.5\n522,96,9.0\n522,97,8.5\n522,98,9.0\n522,99,9.5\n522,100,19.0\n522,101,18.5\n522,102,18.0\n522,103,17.5\n522,104,17.0\n522,105,16.5\n522,106,16.0\n522,107,15.5\n522,108,15.0\n522,109,14.5\n522,110,14.0\n522,111,13.5\n522,112,13.0\n522,113,12.5\n522,114,12.0\n522,115,11.5\n522,116,11.0\n522,117,10.5\n522,118,10.0\n522,119,9.5\n522,120,9.0\n522,121,8.5\n522,122,8.0\n522,123,8.5\n522,124,9.0\n522,125,18.5\n522,126,18.0\n522,127,17.5\n522,128,17.0\n522,129,16.5\n522,130,16.0\n522,131,15.5\n522,132,15.0\n522,133,14.5\n522,134,14.0\n522,135,13.5\n522,136,13.0\n522,137,12.5\n522,138,12.0\n522,139,11.5\n522,140,11.0\n522,141,10.5\n522,142,10.0\n522,143,9.5\n522,144,9.0\n522,145,8.5\n522,146,8.0\n522,147,7.5\n522,148,8.0\n522,149,8.5\n522,150,18.0\n522,151,17.5\n522,152,17.0\n522,153,16.5\n522,154,16.0\n522,155,15.5\n522,156,15.0\n522,157,14.5\n522,158,14.0\n522,159,13.5\n522,160,13.0\n522,161,12.5\n522,162,12.0\n522,163,11.5\n522,164,11.0\n522,165,10.5\n522,166,10.0\n522,167,9.5\n522,168,9.0\n522,169,8.5\n522,170,8.0\n522,171,7.5\n522,172,7.0\n522,173,7.5\n522,174,8.0\n522,175,17.5\n522,176,17.0\n522,177,16.5\n522,178,16.0\n522,179,15.5\n522,180,15.0\n522,181,14.5\n522,182,14.0\n522,183,13.5\n522,184,13.0\n522,185,12.5\n522,186,12.0\n522,187,11.5\n522,188,11.0\n522,189,10.5\n522,190,10.0\n522,191,9.5\n522,192,9.0\n522,193,8.5\n522,194,8.0\n522,195,7.5\n522,196,7.0\n522,197,6.5\n522,198,7.0\n522,199,7.5\n522,200,17.0\n522,201,16.5\n522,202,16.0\n522,203,15.5\n522,204,15.0\n522,205,14.5\n522,206,14.0\n522,207,13.5\n522,208,13.0\n522,209,12.5\n522,210,12.0\n522,211,11.5\n522,212,11.0\n522,213,10.5\n522,214,10.0\n522,215,9.5\n522,216,9.0\n522,217,8.5\n522,218,8.0\n522,219,7.5\n522,220,7.0\n522,221,6.5\n522,222,6.0\n522,223,6.5\n522,224,7.0\n522,225,16.5\n522,226,16.0\n522,227,15.5\n522,228,15.0\n522,229,14.5\n522,230,14.0\n522,231,13.5\n522,232,13.0\n522,233,12.5\n522,234,12.0\n522,235,11.5\n522,236,11.0\n522,237,10.5\n522,238,10.0\n522,239,9.5\n522,240,9.0\n522,241,8.5\n522,242,8.0\n522,243,7.5\n522,244,7.0\n522,245,6.5\n522,246,6.0\n522,247,5.5\n522,248,6.0\n522,249,6.5\n522,250,16.0\n522,251,15.5\n522,252,15.0\n522,253,14.5\n522,254,14.0\n522,255,13.5\n522,256,13.0\n522,257,12.5\n522,258,12.0\n522,259,11.5\n522,260,11.0\n522,261,10.5\n522,262,10.0\n522,263,9.5\n522,264,9.0\n522,265,8.5\n522,266,8.0\n522,267,7.5\n522,268,7.0\n522,269,6.5\n522,270,6.0\n522,271,5.5\n522,272,5.0\n522,273,5.5\n522,274,6.0\n522,275,15.5\n522,276,15.0\n522,277,14.5\n522,278,14.0\n522,279,13.5\n522,280,13.0\n522,281,12.5\n522,282,12.0\n522,283,11.5\n522,284,11.0\n522,285,10.5\n522,286,10.0\n522,287,9.5\n522,288,9.0\n522,289,8.5\n522,290,8.0\n522,291,7.5\n522,292,7.0\n522,293,6.5\n522,294,6.0\n522,295,5.5\n522,296,5.0\n522,297,4.5\n522,298,5.0\n522,299,5.5\n522,300,15.0\n522,301,14.5\n522,302,14.0\n522,303,13.5\n522,304,13.0\n522,305,12.5\n522,306,12.0\n522,307,11.5\n522,308,11.0\n522,309,10.5\n522,310,10.0\n522,311,9.5\n522,312,9.0\n522,313,8.5\n522,314,8.0\n522,315,7.5\n522,316,7.0\n522,317,6.5\n522,318,6.0\n522,319,5.5\n522,320,5.0\n522,321,4.5\n522,322,4.0\n522,323,4.5\n522,324,5.0\n522,325,14.5\n522,326,14.0\n522,327,13.5\n522,328,13.0\n522,329,12.5\n522,330,12.0\n522,331,11.5\n522,332,11.0\n522,333,10.5\n522,334,10.0\n522,335,9.5\n522,336,9.0\n522,337,8.5\n522,338,8.0\n522,339,7.5\n522,340,7.0\n522,341,6.5\n522,342,6.0\n522,343,5.5\n522,344,5.0\n522,345,4.5\n522,346,4.0\n522,347,3.5\n522,348,4.0\n522,349,4.5\n522,350,14.0\n522,351,13.5\n522,352,13.0\n522,353,12.5\n522,354,12.0\n522,355,11.5\n522,356,11.0\n522,357,10.5\n522,358,10.0\n522,359,9.5\n522,360,9.0\n522,361,8.5\n522,362,8.0\n522,363,7.5\n522,364,7.0\n522,365,6.5\n522,366,6.0\n522,367,5.5\n522,368,5.0\n522,369,4.5\n522,370,4.0\n522,371,3.5\n522,372,3.0\n522,373,3.5\n522,374,4.0\n522,375,13.5\n522,376,13.0\n522,377,12.5\n522,378,12.0\n522,379,11.5\n522,380,11.0\n522,381,10.5\n522,382,10.0\n522,383,9.5\n522,384,9.0\n522,385,8.5\n522,386,8.0\n522,387,7.5\n522,388,7.0\n522,389,6.5\n522,390,6.0\n522,391,5.5\n522,392,5.0\n522,393,4.5\n522,394,4.0\n522,395,3.5\n522,396,3.0\n522,397,2.5\n522,398,3.0\n522,399,3.5\n522,400,13.0\n522,401,12.5\n522,402,12.0\n522,403,11.5\n522,404,11.0\n522,405,10.5\n522,406,10.0\n522,407,9.5\n522,408,9.0\n522,409,8.5\n522,410,8.0\n522,411,7.5\n522,412,7.0\n522,413,6.5\n522,414,6.0\n522,415,5.5\n522,416,5.0\n522,417,4.5\n522,418,4.0\n522,419,3.5\n522,420,3.0\n522,421,2.5\n522,422,2.0\n522,423,2.5\n522,424,3.0\n522,425,12.5\n522,426,12.0\n522,427,11.5\n522,428,11.0\n522,429,10.5\n522,430,10.0\n522,431,9.5\n522,432,9.0\n522,433,8.5\n522,434,8.0\n522,435,7.5\n522,436,7.0\n522,437,6.5\n522,438,6.0\n522,439,5.5\n522,440,5.0\n522,441,4.5\n522,442,4.0\n522,443,3.5\n522,444,3.0\n522,445,2.5\n522,446,2.0\n522,447,1.5\n522,448,2.0\n522,449,2.5\n522,450,12.0\n522,451,11.5\n522,452,11.0\n522,453,10.5\n522,454,10.0\n522,455,9.5\n522,456,9.0\n522,457,8.5\n522,458,8.0\n522,459,7.5\n522,460,7.0\n522,461,6.5\n522,462,6.0\n522,463,5.5\n522,464,5.0\n522,465,4.5\n522,466,4.0\n522,467,3.5\n522,468,3.0\n522,469,2.5\n522,470,2.0\n522,471,1.5\n522,472,1.0\n522,473,1.5\n522,474,2.0\n522,475,11.5\n522,476,11.0\n522,477,10.5\n522,478,10.0\n522,479,9.5\n522,480,9.0\n522,481,8.5\n522,482,8.0\n522,483,7.5\n522,484,7.0\n522,485,6.5\n522,486,6.0\n522,487,5.5\n522,488,5.0\n522,489,4.5\n522,490,4.0\n522,491,3.5\n522,492,3.0\n522,493,2.5\n522,494,2.0\n522,495,1.5\n522,496,1.0\n522,497,0.5\n522,498,1.0\n522,499,1.5\n522,500,11.0\n522,501,10.5\n522,502,10.0\n522,503,9.5\n522,504,9.0\n522,505,8.5\n522,506,8.0\n522,507,7.5\n522,508,7.0\n522,509,6.5\n522,510,6.0\n522,511,5.5\n522,512,5.0\n522,513,4.5\n522,514,4.0\n522,515,3.5\n522,516,3.0\n522,517,2.5\n522,518,2.0\n522,519,1.5\n522,520,1.0\n522,521,0.5\n522,522,0\n522,523,0.5\n522,524,1.0\n522,525,11.5\n522,526,11.0\n522,527,10.5\n522,528,10.0\n522,529,9.5\n522,530,9.0\n522,531,8.5\n522,532,8.0\n522,533,7.5\n522,534,7.0\n522,535,6.5\n522,536,6.0\n522,537,5.5\n522,538,5.0\n522,539,4.5\n522,540,4.0\n522,541,3.5\n522,542,3.0\n522,543,2.5\n522,544,2.0\n522,545,1.5\n522,546,1.0\n522,547,0.5\n522,548,1.0\n522,549,1.5\n522,550,12.0\n522,551,11.5\n522,552,11.0\n522,553,10.5\n522,554,10.0\n522,555,9.5\n522,556,9.0\n522,557,8.5\n522,558,8.0\n522,559,7.5\n522,560,7.0\n522,561,6.5\n522,562,6.0\n522,563,5.5\n522,564,5.0\n522,565,4.5\n522,566,4.0\n522,567,3.5\n522,568,3.0\n522,569,2.5\n522,570,2.0\n522,571,1.5\n522,572,1.0\n522,573,1.5\n522,574,2.0\n522,575,12.5\n522,576,12.0\n522,577,11.5\n522,578,11.0\n522,579,10.5\n522,580,10.0\n522,581,9.5\n522,582,9.0\n522,583,8.5\n522,584,8.0\n522,585,7.5\n522,586,7.0\n522,587,6.5\n522,588,6.0\n522,589,5.5\n522,590,5.0\n522,591,4.5\n522,592,4.0\n522,593,3.5\n522,594,3.0\n522,595,2.5\n522,596,2.0\n522,597,1.5\n522,598,2.0\n522,599,2.5\n522,600,13.0\n522,601,12.5\n522,602,12.0\n522,603,11.5\n522,604,11.0\n522,605,10.5\n522,606,10.0\n522,607,9.5\n522,608,9.0\n522,609,8.5\n522,610,8.0\n522,611,7.5\n522,612,7.0\n522,613,6.5\n522,614,6.0\n522,615,5.5\n522,616,5.0\n522,617,4.5\n522,618,4.0\n522,619,3.5\n522,620,3.0\n522,621,2.5\n522,622,2.0\n522,623,2.5\n522,624,3.0\n523,0,21.5\n523,1,21.0\n523,2,20.5\n523,3,20.0\n523,4,19.5\n523,5,19.0\n523,6,18.5\n523,7,18.0\n523,8,17.5\n523,9,17.0\n523,10,16.5\n523,11,16.0\n523,12,15.5\n523,13,15.0\n523,14,14.5\n523,15,14.0\n523,16,13.5\n523,17,13.0\n523,18,12.5\n523,19,12.0\n523,20,11.5\n523,21,11.0\n523,22,10.5\n523,23,10.0\n523,24,10.5\n523,25,21.0\n523,26,20.5\n523,27,20.0\n523,28,19.5\n523,29,19.0\n523,30,18.5\n523,31,18.0\n523,32,17.5\n523,33,17.0\n523,34,16.5\n523,35,16.0\n523,36,15.5\n523,37,15.0\n523,38,14.5\n523,39,14.0\n523,40,13.5\n523,41,13.0\n523,42,12.5\n523,43,12.0\n523,44,11.5\n523,45,11.0\n523,46,10.5\n523,47,10.0\n523,48,9.5\n523,49,10.0\n523,50,20.5\n523,51,20.0\n523,52,19.5\n523,53,19.0\n523,54,18.5\n523,55,18.0\n523,56,17.5\n523,57,17.0\n523,58,16.5\n523,59,16.0\n523,60,15.5\n523,61,15.0\n523,62,14.5\n523,63,14.0\n523,64,13.5\n523,65,13.0\n523,66,12.5\n523,67,12.0\n523,68,11.5\n523,69,11.0\n523,70,10.5\n523,71,10.0\n523,72,9.5\n523,73,9.0\n523,74,9.5\n523,75,20.0\n523,76,19.5\n523,77,19.0\n523,78,18.5\n523,79,18.0\n523,80,17.5\n523,81,17.0\n523,82,16.5\n523,83,16.0\n523,84,15.5\n523,85,15.0\n523,86,14.5\n523,87,14.0\n523,88,13.5\n523,89,13.0\n523,90,12.5\n523,91,12.0\n523,92,11.5\n523,93,11.0\n523,94,10.5\n523,95,10.0\n523,96,9.5\n523,97,9.0\n523,98,8.5\n523,99,9.0\n523,100,19.5\n523,101,19.0\n523,102,18.5\n523,103,18.0\n523,104,17.5\n523,105,17.0\n523,106,16.5\n523,107,16.0\n523,108,15.5\n523,109,15.0\n523,110,14.5\n523,111,14.0\n523,112,13.5\n523,113,13.0\n523,114,12.5\n523,115,12.0\n523,116,11.5\n523,117,11.0\n523,118,10.5\n523,119,10.0\n523,120,9.5\n523,121,9.0\n523,122,8.5\n523,123,8.0\n523,124,8.5\n523,125,19.0\n523,126,18.5\n523,127,18.0\n523,128,17.5\n523,129,17.0\n523,130,16.5\n523,131,16.0\n523,132,15.5\n523,133,15.0\n523,134,14.5\n523,135,14.0\n523,136,13.5\n523,137,13.0\n523,138,12.5\n523,139,12.0\n523,140,11.5\n523,141,11.0\n523,142,10.5\n523,143,10.0\n523,144,9.5\n523,145,9.0\n523,146,8.5\n523,147,8.0\n523,148,7.5\n523,149,8.0\n523,150,18.5\n523,151,18.0\n523,152,17.5\n523,153,17.0\n523,154,16.5\n523,155,16.0\n523,156,15.5\n523,157,15.0\n523,158,14.5\n523,159,14.0\n523,160,13.5\n523,161,13.0\n523,162,12.5\n523,163,12.0\n523,164,11.5\n523,165,11.0\n523,166,10.5\n523,167,10.0\n523,168,9.5\n523,169,9.0\n523,170,8.5\n523,171,8.0\n523,172,7.5\n523,173,7.0\n523,174,7.5\n523,175,18.0\n523,176,17.5\n523,177,17.0\n523,178,16.5\n523,179,16.0\n523,180,15.5\n523,181,15.0\n523,182,14.5\n523,183,14.0\n523,184,13.5\n523,185,13.0\n523,186,12.5\n523,187,12.0\n523,188,11.5\n523,189,11.0\n523,190,10.5\n523,191,10.0\n523,192,9.5\n523,193,9.0\n523,194,8.5\n523,195,8.0\n523,196,7.5\n523,197,7.0\n523,198,6.5\n523,199,7.0\n523,200,17.5\n523,201,17.0\n523,202,16.5\n523,203,16.0\n523,204,15.5\n523,205,15.0\n523,206,14.5\n523,207,14.0\n523,208,13.5\n523,209,13.0\n523,210,12.5\n523,211,12.0\n523,212,11.5\n523,213,11.0\n523,214,10.5\n523,215,10.0\n523,216,9.5\n523,217,9.0\n523,218,8.5\n523,219,8.0\n523,220,7.5\n523,221,7.0\n523,222,6.5\n523,223,6.0\n523,224,6.5\n523,225,17.0\n523,226,16.5\n523,227,16.0\n523,228,15.5\n523,229,15.0\n523,230,14.5\n523,231,14.0\n523,232,13.5\n523,233,13.0\n523,234,12.5\n523,235,12.0\n523,236,11.5\n523,237,11.0\n523,238,10.5\n523,239,10.0\n523,240,9.5\n523,241,9.0\n523,242,8.5\n523,243,8.0\n523,244,7.5\n523,245,7.0\n523,246,6.5\n523,247,6.0\n523,248,5.5\n523,249,6.0\n523,250,16.5\n523,251,16.0\n523,252,15.5\n523,253,15.0\n523,254,14.5\n523,255,14.0\n523,256,13.5\n523,257,13.0\n523,258,12.5\n523,259,12.0\n523,260,11.5\n523,261,11.0\n523,262,10.5\n523,263,10.0\n523,264,9.5\n523,265,9.0\n523,266,8.5\n523,267,8.0\n523,268,7.5\n523,269,7.0\n523,270,6.5\n523,271,6.0\n523,272,5.5\n523,273,5.0\n523,274,5.5\n523,275,16.0\n523,276,15.5\n523,277,15.0\n523,278,14.5\n523,279,14.0\n523,280,13.5\n523,281,13.0\n523,282,12.5\n523,283,12.0\n523,284,11.5\n523,285,11.0\n523,286,10.5\n523,287,10.0\n523,288,9.5\n523,289,9.0\n523,290,8.5\n523,291,8.0\n523,292,7.5\n523,293,7.0\n523,294,6.5\n523,295,6.0\n523,296,5.5\n523,297,5.0\n523,298,4.5\n523,299,5.0\n523,300,15.5\n523,301,15.0\n523,302,14.5\n523,303,14.0\n523,304,13.5\n523,305,13.0\n523,306,12.5\n523,307,12.0\n523,308,11.5\n523,309,11.0\n523,310,10.5\n523,311,10.0\n523,312,9.5\n523,313,9.0\n523,314,8.5\n523,315,8.0\n523,316,7.5\n523,317,7.0\n523,318,6.5\n523,319,6.0\n523,320,5.5\n523,321,5.0\n523,322,4.5\n523,323,4.0\n523,324,4.5\n523,325,15.0\n523,326,14.5\n523,327,14.0\n523,328,13.5\n523,329,13.0\n523,330,12.5\n523,331,12.0\n523,332,11.5\n523,333,11.0\n523,334,10.5\n523,335,10.0\n523,336,9.5\n523,337,9.0\n523,338,8.5\n523,339,8.0\n523,340,7.5\n523,341,7.0\n523,342,6.5\n523,343,6.0\n523,344,5.5\n523,345,5.0\n523,346,4.5\n523,347,4.0\n523,348,3.5\n523,349,4.0\n523,350,14.5\n523,351,14.0\n523,352,13.5\n523,353,13.0\n523,354,12.5\n523,355,12.0\n523,356,11.5\n523,357,11.0\n523,358,10.5\n523,359,10.0\n523,360,9.5\n523,361,9.0\n523,362,8.5\n523,363,8.0\n523,364,7.5\n523,365,7.0\n523,366,6.5\n523,367,6.0\n523,368,5.5\n523,369,5.0\n523,370,4.5\n523,371,4.0\n523,372,3.5\n523,373,3.0\n523,374,3.5\n523,375,14.0\n523,376,13.5\n523,377,13.0\n523,378,12.5\n523,379,12.0\n523,380,11.5\n523,381,11.0\n523,382,10.5\n523,383,10.0\n523,384,9.5\n523,385,9.0\n523,386,8.5\n523,387,8.0\n523,388,7.5\n523,389,7.0\n523,390,6.5\n523,391,6.0\n523,392,5.5\n523,393,5.0\n523,394,4.5\n523,395,4.0\n523,396,3.5\n523,397,3.0\n523,398,2.5\n523,399,3.0\n523,400,13.5\n523,401,13.0\n523,402,12.5\n523,403,12.0\n523,404,11.5\n523,405,11.0\n523,406,10.5\n523,407,10.0\n523,408,9.5\n523,409,9.0\n523,410,8.5\n523,411,8.0\n523,412,7.5\n523,413,7.0\n523,414,6.5\n523,415,6.0\n523,416,5.5\n523,417,5.0\n523,418,4.5\n523,419,4.0\n523,420,3.5\n523,421,3.0\n523,422,2.5\n523,423,2.0\n523,424,2.5\n523,425,13.0\n523,426,12.5\n523,427,12.0\n523,428,11.5\n523,429,11.0\n523,430,10.5\n523,431,10.0\n523,432,9.5\n523,433,9.0\n523,434,8.5\n523,435,8.0\n523,436,7.5\n523,437,7.0\n523,438,6.5\n523,439,6.0\n523,440,5.5\n523,441,5.0\n523,442,4.5\n523,443,4.0\n523,444,3.5\n523,445,3.0\n523,446,2.5\n523,447,2.0\n523,448,1.5\n523,449,2.0\n523,450,12.5\n523,451,12.0\n523,452,11.5\n523,453,11.0\n523,454,10.5\n523,455,10.0\n523,456,9.5\n523,457,9.0\n523,458,8.5\n523,459,8.0\n523,460,7.5\n523,461,7.0\n523,462,6.5\n523,463,6.0\n523,464,5.5\n523,465,5.0\n523,466,4.5\n523,467,4.0\n523,468,3.5\n523,469,3.0\n523,470,2.5\n523,471,2.0\n523,472,1.5\n523,473,1.0\n523,474,1.5\n523,475,12.0\n523,476,11.5\n523,477,11.0\n523,478,10.5\n523,479,10.0\n523,480,9.5\n523,481,9.0\n523,482,8.5\n523,483,8.0\n523,484,7.5\n523,485,7.0\n523,486,6.5\n523,487,6.0\n523,488,5.5\n523,489,5.0\n523,490,4.5\n523,491,4.0\n523,492,3.5\n523,493,3.0\n523,494,2.5\n523,495,2.0\n523,496,1.5\n523,497,1.0\n523,498,0.5\n523,499,1.0\n523,500,11.5\n523,501,11.0\n523,502,10.5\n523,503,10.0\n523,504,9.5\n523,505,9.0\n523,506,8.5\n523,507,8.0\n523,508,7.5\n523,509,7.0\n523,510,6.5\n523,511,6.0\n523,512,5.5\n523,513,5.0\n523,514,4.5\n523,515,4.0\n523,516,3.5\n523,517,3.0\n523,518,2.5\n523,519,2.0\n523,520,1.5\n523,521,1.0\n523,522,0.5\n523,523,0\n523,524,0.5\n523,525,12.0\n523,526,11.5\n523,527,11.0\n523,528,10.5\n523,529,10.0\n523,530,9.5\n523,531,9.0\n523,532,8.5\n523,533,8.0\n523,534,7.5\n523,535,7.0\n523,536,6.5\n523,537,6.0\n523,538,5.5\n523,539,5.0\n523,540,4.5\n523,541,4.0\n523,542,3.5\n523,543,3.0\n523,544,2.5\n523,545,2.0\n523,546,1.5\n523,547,1.0\n523,548,0.5\n523,549,1.0\n523,550,12.5\n523,551,12.0\n523,552,11.5\n523,553,11.0\n523,554,10.5\n523,555,10.0\n523,556,9.5\n523,557,9.0\n523,558,8.5\n523,559,8.0\n523,560,7.5\n523,561,7.0\n523,562,6.5\n523,563,6.0\n523,564,5.5\n523,565,5.0\n523,566,4.5\n523,567,4.0\n523,568,3.5\n523,569,3.0\n523,570,2.5\n523,571,2.0\n523,572,1.5\n523,573,1.0\n523,574,1.5\n523,575,13.0\n523,576,12.5\n523,577,12.0\n523,578,11.5\n523,579,11.0\n523,580,10.5\n523,581,10.0\n523,582,9.5\n523,583,9.0\n523,584,8.5\n523,585,8.0\n523,586,7.5\n523,587,7.0\n523,588,6.5\n523,589,6.0\n523,590,5.5\n523,591,5.0\n523,592,4.5\n523,593,4.0\n523,594,3.5\n523,595,3.0\n523,596,2.5\n523,597,2.0\n523,598,1.5\n523,599,2.0\n523,600,13.5\n523,601,13.0\n523,602,12.5\n523,603,12.0\n523,604,11.5\n523,605,11.0\n523,606,10.5\n523,607,10.0\n523,608,9.5\n523,609,9.0\n523,610,8.5\n523,611,8.0\n523,612,7.5\n523,613,7.0\n523,614,6.5\n523,615,6.0\n523,616,5.5\n523,617,5.0\n523,618,4.5\n523,619,4.0\n523,620,3.5\n523,621,3.0\n523,622,2.5\n523,623,2.0\n523,624,2.5\n524,0,22.0\n524,1,21.5\n524,2,21.0\n524,3,20.5\n524,4,20.0\n524,5,19.5\n524,6,19.0\n524,7,18.5\n524,8,18.0\n524,9,17.5\n524,10,17.0\n524,11,16.5\n524,12,16.0\n524,13,15.5\n524,14,15.0\n524,15,14.5\n524,16,14.0\n524,17,13.5\n524,18,13.0\n524,19,12.5\n524,20,12.0\n524,21,11.5\n524,22,11.0\n524,23,10.5\n524,24,10.0\n524,25,21.5\n524,26,21.0\n524,27,20.5\n524,28,20.0\n524,29,19.5\n524,30,19.0\n524,31,18.5\n524,32,18.0\n524,33,17.5\n524,34,17.0\n524,35,16.5\n524,36,16.0\n524,37,15.5\n524,38,15.0\n524,39,14.5\n524,40,14.0\n524,41,13.5\n524,42,13.0\n524,43,12.5\n524,44,12.0\n524,45,11.5\n524,46,11.0\n524,47,10.5\n524,48,10.0\n524,49,9.5\n524,50,21.0\n524,51,20.5\n524,52,20.0\n524,53,19.5\n524,54,19.0\n524,55,18.5\n524,56,18.0\n524,57,17.5\n524,58,17.0\n524,59,16.5\n524,60,16.0\n524,61,15.5\n524,62,15.0\n524,63,14.5\n524,64,14.0\n524,65,13.5\n524,66,13.0\n524,67,12.5\n524,68,12.0\n524,69,11.5\n524,70,11.0\n524,71,10.5\n524,72,10.0\n524,73,9.5\n524,74,9.0\n524,75,20.5\n524,76,20.0\n524,77,19.5\n524,78,19.0\n524,79,18.5\n524,80,18.0\n524,81,17.5\n524,82,17.0\n524,83,16.5\n524,84,16.0\n524,85,15.5\n524,86,15.0\n524,87,14.5\n524,88,14.0\n524,89,13.5\n524,90,13.0\n524,91,12.5\n524,92,12.0\n524,93,11.5\n524,94,11.0\n524,95,10.5\n524,96,10.0\n524,97,9.5\n524,98,9.0\n524,99,8.5\n524,100,20.0\n524,101,19.5\n524,102,19.0\n524,103,18.5\n524,104,18.0\n524,105,17.5\n524,106,17.0\n524,107,16.5\n524,108,16.0\n524,109,15.5\n524,110,15.0\n524,111,14.5\n524,112,14.0\n524,113,13.5\n524,114,13.0\n524,115,12.5\n524,116,12.0\n524,117,11.5\n524,118,11.0\n524,119,10.5\n524,120,10.0\n524,121,9.5\n524,122,9.0\n524,123,8.5\n524,124,8.0\n524,125,19.5\n524,126,19.0\n524,127,18.5\n524,128,18.0\n524,129,17.5\n524,130,17.0\n524,131,16.5\n524,132,16.0\n524,133,15.5\n524,134,15.0\n524,135,14.5\n524,136,14.0\n524,137,13.5\n524,138,13.0\n524,139,12.5\n524,140,12.0\n524,141,11.5\n524,142,11.0\n524,143,10.5\n524,144,10.0\n524,145,9.5\n524,146,9.0\n524,147,8.5\n524,148,8.0\n524,149,7.5\n524,150,19.0\n524,151,18.5\n524,152,18.0\n524,153,17.5\n524,154,17.0\n524,155,16.5\n524,156,16.0\n524,157,15.5\n524,158,15.0\n524,159,14.5\n524,160,14.0\n524,161,13.5\n524,162,13.0\n524,163,12.5\n524,164,12.0\n524,165,11.5\n524,166,11.0\n524,167,10.5\n524,168,10.0\n524,169,9.5\n524,170,9.0\n524,171,8.5\n524,172,8.0\n524,173,7.5\n524,174,7.0\n524,175,18.5\n524,176,18.0\n524,177,17.5\n524,178,17.0\n524,179,16.5\n524,180,16.0\n524,181,15.5\n524,182,15.0\n524,183,14.5\n524,184,14.0\n524,185,13.5\n524,186,13.0\n524,187,12.5\n524,188,12.0\n524,189,11.5\n524,190,11.0\n524,191,10.5\n524,192,10.0\n524,193,9.5\n524,194,9.0\n524,195,8.5\n524,196,8.0\n524,197,7.5\n524,198,7.0\n524,199,6.5\n524,200,18.0\n524,201,17.5\n524,202,17.0\n524,203,16.5\n524,204,16.0\n524,205,15.5\n524,206,15.0\n524,207,14.5\n524,208,14.0\n524,209,13.5\n524,210,13.0\n524,211,12.5\n524,212,12.0\n524,213,11.5\n524,214,11.0\n524,215,10.5\n524,216,10.0\n524,217,9.5\n524,218,9.0\n524,219,8.5\n524,220,8.0\n524,221,7.5\n524,222,7.0\n524,223,6.5\n524,224,6.0\n524,225,17.5\n524,226,17.0\n524,227,16.5\n524,228,16.0\n524,229,15.5\n524,230,15.0\n524,231,14.5\n524,232,14.0\n524,233,13.5\n524,234,13.0\n524,235,12.5\n524,236,12.0\n524,237,11.5\n524,238,11.0\n524,239,10.5\n524,240,10.0\n524,241,9.5\n524,242,9.0\n524,243,8.5\n524,244,8.0\n524,245,7.5\n524,246,7.0\n524,247,6.5\n524,248,6.0\n524,249,5.5\n524,250,17.0\n524,251,16.5\n524,252,16.0\n524,253,15.5\n524,254,15.0\n524,255,14.5\n524,256,14.0\n524,257,13.5\n524,258,13.0\n524,259,12.5\n524,260,12.0\n524,261,11.5\n524,262,11.0\n524,263,10.5\n524,264,10.0\n524,265,9.5\n524,266,9.0\n524,267,8.5\n524,268,8.0\n524,269,7.5\n524,270,7.0\n524,271,6.5\n524,272,6.0\n524,273,5.5\n524,274,5.0\n524,275,16.5\n524,276,16.0\n524,277,15.5\n524,278,15.0\n524,279,14.5\n524,280,14.0\n524,281,13.5\n524,282,13.0\n524,283,12.5\n524,284,12.0\n524,285,11.5\n524,286,11.0\n524,287,10.5\n524,288,10.0\n524,289,9.5\n524,290,9.0\n524,291,8.5\n524,292,8.0\n524,293,7.5\n524,294,7.0\n524,295,6.5\n524,296,6.0\n524,297,5.5\n524,298,5.0\n524,299,4.5\n524,300,16.0\n524,301,15.5\n524,302,15.0\n524,303,14.5\n524,304,14.0\n524,305,13.5\n524,306,13.0\n524,307,12.5\n524,308,12.0\n524,309,11.5\n524,310,11.0\n524,311,10.5\n524,312,10.0\n524,313,9.5\n524,314,9.0\n524,315,8.5\n524,316,8.0\n524,317,7.5\n524,318,7.0\n524,319,6.5\n524,320,6.0\n524,321,5.5\n524,322,5.0\n524,323,4.5\n524,324,4.0\n524,325,15.5\n524,326,15.0\n524,327,14.5\n524,328,14.0\n524,329,13.5\n524,330,13.0\n524,331,12.5\n524,332,12.0\n524,333,11.5\n524,334,11.0\n524,335,10.5\n524,336,10.0\n524,337,9.5\n524,338,9.0\n524,339,8.5\n524,340,8.0\n524,341,7.5\n524,342,7.0\n524,343,6.5\n524,344,6.0\n524,345,5.5\n524,346,5.0\n524,347,4.5\n524,348,4.0\n524,349,3.5\n524,350,15.0\n524,351,14.5\n524,352,14.0\n524,353,13.5\n524,354,13.0\n524,355,12.5\n524,356,12.0\n524,357,11.5\n524,358,11.0\n524,359,10.5\n524,360,10.0\n524,361,9.5\n524,362,9.0\n524,363,8.5\n524,364,8.0\n524,365,7.5\n524,366,7.0\n524,367,6.5\n524,368,6.0\n524,369,5.5\n524,370,5.0\n524,371,4.5\n524,372,4.0\n524,373,3.5\n524,374,3.0\n524,375,14.5\n524,376,14.0\n524,377,13.5\n524,378,13.0\n524,379,12.5\n524,380,12.0\n524,381,11.5\n524,382,11.0\n524,383,10.5\n524,384,10.0\n524,385,9.5\n524,386,9.0\n524,387,8.5\n524,388,8.0\n524,389,7.5\n524,390,7.0\n524,391,6.5\n524,392,6.0\n524,393,5.5\n524,394,5.0\n524,395,4.5\n524,396,4.0\n524,397,3.5\n524,398,3.0\n524,399,2.5\n524,400,14.0\n524,401,13.5\n524,402,13.0\n524,403,12.5\n524,404,12.0\n524,405,11.5\n524,406,11.0\n524,407,10.5\n524,408,10.0\n524,409,9.5\n524,410,9.0\n524,411,8.5\n524,412,8.0\n524,413,7.5\n524,414,7.0\n524,415,6.5\n524,416,6.0\n524,417,5.5\n524,418,5.0\n524,419,4.5\n524,420,4.0\n524,421,3.5\n524,422,3.0\n524,423,2.5\n524,424,2.0\n524,425,13.5\n524,426,13.0\n524,427,12.5\n524,428,12.0\n524,429,11.5\n524,430,11.0\n524,431,10.5\n524,432,10.0\n524,433,9.5\n524,434,9.0\n524,435,8.5\n524,436,8.0\n524,437,7.5\n524,438,7.0\n524,439,6.5\n524,440,6.0\n524,441,5.5\n524,442,5.0\n524,443,4.5\n524,444,4.0\n524,445,3.5\n524,446,3.0\n524,447,2.5\n524,448,2.0\n524,449,1.5\n524,450,13.0\n524,451,12.5\n524,452,12.0\n524,453,11.5\n524,454,11.0\n524,455,10.5\n524,456,10.0\n524,457,9.5\n524,458,9.0\n524,459,8.5\n524,460,8.0\n524,461,7.5\n524,462,7.0\n524,463,6.5\n524,464,6.0\n524,465,5.5\n524,466,5.0\n524,467,4.5\n524,468,4.0\n524,469,3.5\n524,470,3.0\n524,471,2.5\n524,472,2.0\n524,473,1.5\n524,474,1.0\n524,475,12.5\n524,476,12.0\n524,477,11.5\n524,478,11.0\n524,479,10.5\n524,480,10.0\n524,481,9.5\n524,482,9.0\n524,483,8.5\n524,484,8.0\n524,485,7.5\n524,486,7.0\n524,487,6.5\n524,488,6.0\n524,489,5.5\n524,490,5.0\n524,491,4.5\n524,492,4.0\n524,493,3.5\n524,494,3.0\n524,495,2.5\n524,496,2.0\n524,497,1.5\n524,498,1.0\n524,499,0.5\n524,500,12.0\n524,501,11.5\n524,502,11.0\n524,503,10.5\n524,504,10.0\n524,505,9.5\n524,506,9.0\n524,507,8.5\n524,508,8.0\n524,509,7.5\n524,510,7.0\n524,511,6.5\n524,512,6.0\n524,513,5.5\n524,514,5.0\n524,515,4.5\n524,516,4.0\n524,517,3.5\n524,518,3.0\n524,519,2.5\n524,520,2.0\n524,521,1.5\n524,522,1.0\n524,523,0.5\n524,524,0\n524,525,12.5\n524,526,12.0\n524,527,11.5\n524,528,11.0\n524,529,10.5\n524,530,10.0\n524,531,9.5\n524,532,9.0\n524,533,8.5\n524,534,8.0\n524,535,7.5\n524,536,7.0\n524,537,6.5\n524,538,6.0\n524,539,5.5\n524,540,5.0\n524,541,4.5\n524,542,4.0\n524,543,3.5\n524,544,3.0\n524,545,2.5\n524,546,2.0\n524,547,1.5\n524,548,1.0\n524,549,0.5\n524,550,13.0\n524,551,12.5\n524,552,12.0\n524,553,11.5\n524,554,11.0\n524,555,10.5\n524,556,10.0\n524,557,9.5\n524,558,9.0\n524,559,8.5\n524,560,8.0\n524,561,7.5\n524,562,7.0\n524,563,6.5\n524,564,6.0\n524,565,5.5\n524,566,5.0\n524,567,4.5\n524,568,4.0\n524,569,3.5\n524,570,3.0\n524,571,2.5\n524,572,2.0\n524,573,1.5\n524,574,1.0\n524,575,13.5\n524,576,13.0\n524,577,12.5\n524,578,12.0\n524,579,11.5\n524,580,11.0\n524,581,10.5\n524,582,10.0\n524,583,9.5\n524,584,9.0\n524,585,8.5\n524,586,8.0\n524,587,7.5\n524,588,7.0\n524,589,6.5\n524,590,6.0\n524,591,5.5\n524,592,5.0\n524,593,4.5\n524,594,4.0\n524,595,3.5\n524,596,3.0\n524,597,2.5\n524,598,2.0\n524,599,1.5\n524,600,14.0\n524,601,13.5\n524,602,13.0\n524,603,12.5\n524,604,12.0\n524,605,11.5\n524,606,11.0\n524,607,10.5\n524,608,10.0\n524,609,9.5\n524,610,9.0\n524,611,8.5\n524,612,8.0\n524,613,7.5\n524,614,7.0\n524,615,6.5\n524,616,6.0\n524,617,5.5\n524,618,5.0\n524,619,4.5\n524,620,4.0\n524,621,3.5\n524,622,3.0\n524,623,2.5\n524,624,2.0\n525,0,10.5\n525,1,11.0\n525,2,11.5\n525,3,12.0\n525,4,12.5\n525,5,13.0\n525,6,13.5\n525,7,14.0\n525,8,14.5\n525,9,15.0\n525,10,15.5\n525,11,16.0\n525,12,16.5\n525,13,17.0\n525,14,17.5\n525,15,18.0\n525,16,18.5\n525,17,19.0\n525,18,19.5\n525,19,20.0\n525,20,20.5\n525,21,21.0\n525,22,21.5\n525,23,22.0\n525,24,22.5\n525,25,10.0\n525,26,10.5\n525,27,11.0\n525,28,11.5\n525,29,12.0\n525,30,12.5\n525,31,13.0\n525,32,13.5\n525,33,14.0\n525,34,14.5\n525,35,15.0\n525,36,15.5\n525,37,16.0\n525,38,16.5\n525,39,17.0\n525,40,17.5\n525,41,18.0\n525,42,18.5\n525,43,19.0\n525,44,19.5\n525,45,20.0\n525,46,20.5\n525,47,21.0\n525,48,21.5\n525,49,22.0\n525,50,9.5\n525,51,10.0\n525,52,10.5\n525,53,11.0\n525,54,11.5\n525,55,12.0\n525,56,12.5\n525,57,13.0\n525,58,13.5\n525,59,14.0\n525,60,14.5\n525,61,15.0\n525,62,15.5\n525,63,16.0\n525,64,16.5\n525,65,17.0\n525,66,17.5\n525,67,18.0\n525,68,18.5\n525,69,19.0\n525,70,19.5\n525,71,20.0\n525,72,20.5\n525,73,21.0\n525,74,21.5\n525,75,9.0\n525,76,9.5\n525,77,10.0\n525,78,10.5\n525,79,11.0\n525,80,11.5\n525,81,12.0\n525,82,12.5\n525,83,13.0\n525,84,13.5\n525,85,14.0\n525,86,14.5\n525,87,15.0\n525,88,15.5\n525,89,16.0\n525,90,16.5\n525,91,17.0\n525,92,17.5\n525,93,18.0\n525,94,18.5\n525,95,19.0\n525,96,19.5\n525,97,20.0\n525,98,20.5\n525,99,21.0\n525,100,8.5\n525,101,9.0\n525,102,9.5\n525,103,10.0\n525,104,10.5\n525,105,11.0\n525,106,11.5\n525,107,12.0\n525,108,12.5\n525,109,13.0\n525,110,13.5\n525,111,14.0\n525,112,14.5\n525,113,15.0\n525,114,15.5\n525,115,16.0\n525,116,16.5\n525,117,17.0\n525,118,17.5\n525,119,18.0\n525,120,18.5\n525,121,19.0\n525,122,19.5\n525,123,20.0\n525,124,20.5\n525,125,8.0\n525,126,8.5\n525,127,9.0\n525,128,9.5\n525,129,10.0\n525,130,10.5\n525,131,11.0\n525,132,11.5\n525,133,12.0\n525,134,12.5\n525,135,13.0\n525,136,13.5\n525,137,14.0\n525,138,14.5\n525,139,15.0\n525,140,15.5\n525,141,16.0\n525,142,16.5\n525,143,17.0\n525,144,17.5\n525,145,18.0\n525,146,18.5\n525,147,19.0\n525,148,19.5\n525,149,20.0\n525,150,7.5\n525,151,8.0\n525,152,8.5\n525,153,9.0\n525,154,9.5\n525,155,10.0\n525,156,10.5\n525,157,11.0\n525,158,11.5\n525,159,12.0\n525,160,12.5\n525,161,13.0\n525,162,13.5\n525,163,14.0\n525,164,14.5\n525,165,15.0\n525,166,15.5\n525,167,16.0\n525,168,16.5\n525,169,17.0\n525,170,17.5\n525,171,18.0\n525,172,18.5\n525,173,19.0\n525,174,19.5\n525,175,7.0\n525,176,7.5\n525,177,8.0\n525,178,8.5\n525,179,9.0\n525,180,9.5\n525,181,10.0\n525,182,10.5\n525,183,11.0\n525,184,11.5\n525,185,12.0\n525,186,12.5\n525,187,13.0\n525,188,13.5\n525,189,14.0\n525,190,14.5\n525,191,15.0\n525,192,15.5\n525,193,16.0\n525,194,16.5\n525,195,17.0\n525,196,17.5\n525,197,18.0\n525,198,18.5\n525,199,19.0\n525,200,6.5\n525,201,7.0\n525,202,7.5\n525,203,8.0\n525,204,8.5\n525,205,9.0\n525,206,9.5\n525,207,10.0\n525,208,10.5\n525,209,11.0\n525,210,11.5\n525,211,12.0\n525,212,12.5\n525,213,13.0\n525,214,13.5\n525,215,14.0\n525,216,14.5\n525,217,15.0\n525,218,15.5\n525,219,16.0\n525,220,16.5\n525,221,17.0\n525,222,17.5\n525,223,18.0\n525,224,18.5\n525,225,6.0\n525,226,6.5\n525,227,7.0\n525,228,7.5\n525,229,8.0\n525,230,8.5\n525,231,9.0\n525,232,9.5\n525,233,10.0\n525,234,10.5\n525,235,11.0\n525,236,11.5\n525,237,12.0\n525,238,12.5\n525,239,13.0\n525,240,13.5\n525,241,14.0\n525,242,14.5\n525,243,15.0\n525,244,15.5\n525,245,16.0\n525,246,16.5\n525,247,17.0\n525,248,17.5\n525,249,18.0\n525,250,5.5\n525,251,6.0\n525,252,6.5\n525,253,7.0\n525,254,7.5\n525,255,8.0\n525,256,8.5\n525,257,9.0\n525,258,9.5\n525,259,10.0\n525,260,10.5\n525,261,11.0\n525,262,11.5\n525,263,12.0\n525,264,12.5\n525,265,13.0\n525,266,13.5\n525,267,14.0\n525,268,14.5\n525,269,15.0\n525,270,15.5\n525,271,16.0\n525,272,16.5\n525,273,17.0\n525,274,17.5\n525,275,5.0\n525,276,5.5\n525,277,6.0\n525,278,6.5\n525,279,7.0\n525,280,7.5\n525,281,8.0\n525,282,8.5\n525,283,9.0\n525,284,9.5\n525,285,10.0\n525,286,10.5\n525,287,11.0\n525,288,11.5\n525,289,12.0\n525,290,12.5\n525,291,13.0\n525,292,13.5\n525,293,14.0\n525,294,14.5\n525,295,15.0\n525,296,15.5\n525,297,16.0\n525,298,16.5\n525,299,17.0\n525,300,4.5\n525,301,5.0\n525,302,5.5\n525,303,6.0\n525,304,6.5\n525,305,7.0\n525,306,7.5\n525,307,8.0\n525,308,8.5\n525,309,9.0\n525,310,9.5\n525,311,10.0\n525,312,10.5\n525,313,11.0\n525,314,11.5\n525,315,12.0\n525,316,12.5\n525,317,13.0\n525,318,13.5\n525,319,14.0\n525,320,14.5\n525,321,15.0\n525,322,15.5\n525,323,16.0\n525,324,16.5\n525,325,4.0\n525,326,4.5\n525,327,5.0\n525,328,5.5\n525,329,6.0\n525,330,6.5\n525,331,7.0\n525,332,7.5\n525,333,8.0\n525,334,8.5\n525,335,9.0\n525,336,9.5\n525,337,10.0\n525,338,10.5\n525,339,11.0\n525,340,11.5\n525,341,12.0\n525,342,12.5\n525,343,13.0\n525,344,13.5\n525,345,14.0\n525,346,14.5\n525,347,15.0\n525,348,15.5\n525,349,16.0\n525,350,3.5\n525,351,4.0\n525,352,4.5\n525,353,5.0\n525,354,5.5\n525,355,6.0\n525,356,6.5\n525,357,7.0\n525,358,7.5\n525,359,8.0\n525,360,8.5\n525,361,9.0\n525,362,9.5\n525,363,10.0\n525,364,10.5\n525,365,11.0\n525,366,11.5\n525,367,12.0\n525,368,12.5\n525,369,13.0\n525,370,13.5\n525,371,14.0\n525,372,14.5\n525,373,15.0\n525,374,15.5\n525,375,3.0\n525,376,3.5\n525,377,4.0\n525,378,4.5\n525,379,5.0\n525,380,5.5\n525,381,6.0\n525,382,6.5\n525,383,7.0\n525,384,7.5\n525,385,8.0\n525,386,8.5\n525,387,9.0\n525,388,9.5\n525,389,10.0\n525,390,10.5\n525,391,11.0\n525,392,11.5\n525,393,12.0\n525,394,12.5\n525,395,13.0\n525,396,13.5\n525,397,14.0\n525,398,14.5\n525,399,15.0\n525,400,2.5\n525,401,3.0\n525,402,3.5\n525,403,4.0\n525,404,4.5\n525,405,5.0\n525,406,5.5\n525,407,6.0\n525,408,6.5\n525,409,7.0\n525,410,7.5\n525,411,8.0\n525,412,8.5\n525,413,9.0\n525,414,9.5\n525,415,10.0\n525,416,10.5\n525,417,11.0\n525,418,11.5\n525,419,12.0\n525,420,12.5\n525,421,13.0\n525,422,13.5\n525,423,14.0\n525,424,14.5\n525,425,2.0\n525,426,2.5\n525,427,3.0\n525,428,3.5\n525,429,4.0\n525,430,4.5\n525,431,5.0\n525,432,5.5\n525,433,6.0\n525,434,6.5\n525,435,7.0\n525,436,7.5\n525,437,8.0\n525,438,8.5\n525,439,9.0\n525,440,9.5\n525,441,10.0\n525,442,10.5\n525,443,11.0\n525,444,11.5\n525,445,12.0\n525,446,12.5\n525,447,13.0\n525,448,13.5\n525,449,14.0\n525,450,1.5\n525,451,2.0\n525,452,2.5\n525,453,3.0\n525,454,3.5\n525,455,4.0\n525,456,4.5\n525,457,5.0\n525,458,5.5\n525,459,6.0\n525,460,6.5\n525,461,7.0\n525,462,7.5\n525,463,8.0\n525,464,8.5\n525,465,9.0\n525,466,9.5\n525,467,10.0\n525,468,10.5\n525,469,11.0\n525,470,11.5\n525,471,12.0\n525,472,12.5\n525,473,13.0\n525,474,13.5\n525,475,1.0\n525,476,1.5\n525,477,2.0\n525,478,2.5\n525,479,3.0\n525,480,3.5\n525,481,4.0\n525,482,4.5\n525,483,5.0\n525,484,5.5\n525,485,6.0\n525,486,6.5\n525,487,7.0\n525,488,7.5\n525,489,8.0\n525,490,8.5\n525,491,9.0\n525,492,9.5\n525,493,10.0\n525,494,10.5\n525,495,11.0\n525,496,11.5\n525,497,12.0\n525,498,12.5\n525,499,13.0\n525,500,0.5\n525,501,1.0\n525,502,1.5\n525,503,2.0\n525,504,2.5\n525,505,3.0\n525,506,3.5\n525,507,4.0\n525,508,4.5\n525,509,5.0\n525,510,5.5\n525,511,6.0\n525,512,6.5\n525,513,7.0\n525,514,7.5\n525,515,8.0\n525,516,8.5\n525,517,9.0\n525,518,9.5\n525,519,10.0\n525,520,10.5\n525,521,11.0\n525,522,11.5\n525,523,12.0\n525,524,12.5\n525,525,0\n525,526,0.5\n525,527,1.0\n525,528,1.5\n525,529,2.0\n525,530,2.5\n525,531,3.0\n525,532,3.5\n525,533,4.0\n525,534,4.5\n525,535,5.0\n525,536,5.5\n525,537,6.0\n525,538,6.5\n525,539,7.0\n525,540,7.5\n525,541,8.0\n525,542,8.5\n525,543,9.0\n525,544,9.5\n525,545,10.0\n525,546,10.5\n525,547,11.0\n525,548,11.5\n525,549,12.0\n525,550,0.5\n525,551,1.0\n525,552,1.5\n525,553,2.0\n525,554,2.5\n525,555,3.0\n525,556,3.5\n525,557,4.0\n525,558,4.5\n525,559,5.0\n525,560,5.5\n525,561,6.0\n525,562,6.5\n525,563,7.0\n525,564,7.5\n525,565,8.0\n525,566,8.5\n525,567,9.0\n525,568,9.5\n525,569,10.0\n525,570,10.5\n525,571,11.0\n525,572,11.5\n525,573,12.0\n525,574,12.5\n525,575,1.0\n525,576,1.5\n525,577,2.0\n525,578,2.5\n525,579,3.0\n525,580,3.5\n525,581,4.0\n525,582,4.5\n525,583,5.0\n525,584,5.5\n525,585,6.0\n525,586,6.5\n525,587,7.0\n525,588,7.5\n525,589,8.0\n525,590,8.5\n525,591,9.0\n525,592,9.5\n525,593,10.0\n525,594,10.5\n525,595,11.0\n525,596,11.5\n525,597,12.0\n525,598,12.5\n525,599,13.0\n525,600,1.5\n525,601,2.0\n525,602,2.5\n525,603,3.0\n525,604,3.5\n525,605,4.0\n525,606,4.5\n525,607,5.0\n525,608,5.5\n525,609,6.0\n525,610,6.5\n525,611,7.0\n525,612,7.5\n525,613,8.0\n525,614,8.5\n525,615,9.0\n525,616,9.5\n525,617,10.0\n525,618,10.5\n525,619,11.0\n525,620,11.5\n525,621,12.0\n525,622,12.5\n525,623,13.0\n525,624,13.5\n526,0,11.0\n526,1,10.5\n526,2,11.0\n526,3,11.5\n526,4,12.0\n526,5,12.5\n526,6,13.0\n526,7,13.5\n526,8,14.0\n526,9,14.5\n526,10,15.0\n526,11,15.5\n526,12,16.0\n526,13,16.5\n526,14,17.0\n526,15,17.5\n526,16,18.0\n526,17,18.5\n526,18,19.0\n526,19,19.5\n526,20,20.0\n526,21,20.5\n526,22,21.0\n526,23,21.5\n526,24,22.0\n526,25,10.5\n526,26,10.0\n526,27,10.5\n526,28,11.0\n526,29,11.5\n526,30,12.0\n526,31,12.5\n526,32,13.0\n526,33,13.5\n526,34,14.0\n526,35,14.5\n526,36,15.0\n526,37,15.5\n526,38,16.0\n526,39,16.5\n526,40,17.0\n526,41,17.5\n526,42,18.0\n526,43,18.5\n526,44,19.0\n526,45,19.5\n526,46,20.0\n526,47,20.5\n526,48,21.0\n526,49,21.5\n526,50,10.0\n526,51,9.5\n526,52,10.0\n526,53,10.5\n526,54,11.0\n526,55,11.5\n526,56,12.0\n526,57,12.5\n526,58,13.0\n526,59,13.5\n526,60,14.0\n526,61,14.5\n526,62,15.0\n526,63,15.5\n526,64,16.0\n526,65,16.5\n526,66,17.0\n526,67,17.5\n526,68,18.0\n526,69,18.5\n526,70,19.0\n526,71,19.5\n526,72,20.0\n526,73,20.5\n526,74,21.0\n526,75,9.5\n526,76,9.0\n526,77,9.5\n526,78,10.0\n526,79,10.5\n526,80,11.0\n526,81,11.5\n526,82,12.0\n526,83,12.5\n526,84,13.0\n526,85,13.5\n526,86,14.0\n526,87,14.5\n526,88,15.0\n526,89,15.5\n526,90,16.0\n526,91,16.5\n526,92,17.0\n526,93,17.5\n526,94,18.0\n526,95,18.5\n526,96,19.0\n526,97,19.5\n526,98,20.0\n526,99,20.5\n526,100,9.0\n526,101,8.5\n526,102,9.0\n526,103,9.5\n526,104,10.0\n526,105,10.5\n526,106,11.0\n526,107,11.5\n526,108,12.0\n526,109,12.5\n526,110,13.0\n526,111,13.5\n526,112,14.0\n526,113,14.5\n526,114,15.0\n526,115,15.5\n526,116,16.0\n526,117,16.5\n526,118,17.0\n526,119,17.5\n526,120,18.0\n526,121,18.5\n526,122,19.0\n526,123,19.5\n526,124,20.0\n526,125,8.5\n526,126,8.0\n526,127,8.5\n526,128,9.0\n526,129,9.5\n526,130,10.0\n526,131,10.5\n526,132,11.0\n526,133,11.5\n526,134,12.0\n526,135,12.5\n526,136,13.0\n526,137,13.5\n526,138,14.0\n526,139,14.5\n526,140,15.0\n526,141,15.5\n526,142,16.0\n526,143,16.5\n526,144,17.0\n526,145,17.5\n526,146,18.0\n526,147,18.5\n526,148,19.0\n526,149,19.5\n526,150,8.0\n526,151,7.5\n526,152,8.0\n526,153,8.5\n526,154,9.0\n526,155,9.5\n526,156,10.0\n526,157,10.5\n526,158,11.0\n526,159,11.5\n526,160,12.0\n526,161,12.5\n526,162,13.0\n526,163,13.5\n526,164,14.0\n526,165,14.5\n526,166,15.0\n526,167,15.5\n526,168,16.0\n526,169,16.5\n526,170,17.0\n526,171,17.5\n526,172,18.0\n526,173,18.5\n526,174,19.0\n526,175,7.5\n526,176,7.0\n526,177,7.5\n526,178,8.0\n526,179,8.5\n526,180,9.0\n526,181,9.5\n526,182,10.0\n526,183,10.5\n526,184,11.0\n526,185,11.5\n526,186,12.0\n526,187,12.5\n526,188,13.0\n526,189,13.5\n526,190,14.0\n526,191,14.5\n526,192,15.0\n526,193,15.5\n526,194,16.0\n526,195,16.5\n526,196,17.0\n526,197,17.5\n526,198,18.0\n526,199,18.5\n526,200,7.0\n526,201,6.5\n526,202,7.0\n526,203,7.5\n526,204,8.0\n526,205,8.5\n526,206,9.0\n526,207,9.5\n526,208,10.0\n526,209,10.5\n526,210,11.0\n526,211,11.5\n526,212,12.0\n526,213,12.5\n526,214,13.0\n526,215,13.5\n526,216,14.0\n526,217,14.5\n526,218,15.0\n526,219,15.5\n526,220,16.0\n526,221,16.5\n526,222,17.0\n526,223,17.5\n526,224,18.0\n526,225,6.5\n526,226,6.0\n526,227,6.5\n526,228,7.0\n526,229,7.5\n526,230,8.0\n526,231,8.5\n526,232,9.0\n526,233,9.5\n526,234,10.0\n526,235,10.5\n526,236,11.0\n526,237,11.5\n526,238,12.0\n526,239,12.5\n526,240,13.0\n526,241,13.5\n526,242,14.0\n526,243,14.5\n526,244,15.0\n526,245,15.5\n526,246,16.0\n526,247,16.5\n526,248,17.0\n526,249,17.5\n526,250,6.0\n526,251,5.5\n526,252,6.0\n526,253,6.5\n526,254,7.0\n526,255,7.5\n526,256,8.0\n526,257,8.5\n526,258,9.0\n526,259,9.5\n526,260,10.0\n526,261,10.5\n526,262,11.0\n526,263,11.5\n526,264,12.0\n526,265,12.5\n526,266,13.0\n526,267,13.5\n526,268,14.0\n526,269,14.5\n526,270,15.0\n526,271,15.5\n526,272,16.0\n526,273,16.5\n526,274,17.0\n526,275,5.5\n526,276,5.0\n526,277,5.5\n526,278,6.0\n526,279,6.5\n526,280,7.0\n526,281,7.5\n526,282,8.0\n526,283,8.5\n526,284,9.0\n526,285,9.5\n526,286,10.0\n526,287,10.5\n526,288,11.0\n526,289,11.5\n526,290,12.0\n526,291,12.5\n526,292,13.0\n526,293,13.5\n526,294,14.0\n526,295,14.5\n526,296,15.0\n526,297,15.5\n526,298,16.0\n526,299,16.5\n526,300,5.0\n526,301,4.5\n526,302,5.0\n526,303,5.5\n526,304,6.0\n526,305,6.5\n526,306,7.0\n526,307,7.5\n526,308,8.0\n526,309,8.5\n526,310,9.0\n526,311,9.5\n526,312,10.0\n526,313,10.5\n526,314,11.0\n526,315,11.5\n526,316,12.0\n526,317,12.5\n526,318,13.0\n526,319,13.5\n526,320,14.0\n526,321,14.5\n526,322,15.0\n526,323,15.5\n526,324,16.0\n526,325,4.5\n526,326,4.0\n526,327,4.5\n526,328,5.0\n526,329,5.5\n526,330,6.0\n526,331,6.5\n526,332,7.0\n526,333,7.5\n526,334,8.0\n526,335,8.5\n526,336,9.0\n526,337,9.5\n526,338,10.0\n526,339,10.5\n526,340,11.0\n526,341,11.5\n526,342,12.0\n526,343,12.5\n526,344,13.0\n526,345,13.5\n526,346,14.0\n526,347,14.5\n526,348,15.0\n526,349,15.5\n526,350,4.0\n526,351,3.5\n526,352,4.0\n526,353,4.5\n526,354,5.0\n526,355,5.5\n526,356,6.0\n526,357,6.5\n526,358,7.0\n526,359,7.5\n526,360,8.0\n526,361,8.5\n526,362,9.0\n526,363,9.5\n526,364,10.0\n526,365,10.5\n526,366,11.0\n526,367,11.5\n526,368,12.0\n526,369,12.5\n526,370,13.0\n526,371,13.5\n526,372,14.0\n526,373,14.5\n526,374,15.0\n526,375,3.5\n526,376,3.0\n526,377,3.5\n526,378,4.0\n526,379,4.5\n526,380,5.0\n526,381,5.5\n526,382,6.0\n526,383,6.5\n526,384,7.0\n526,385,7.5\n526,386,8.0\n526,387,8.5\n526,388,9.0\n526,389,9.5\n526,390,10.0\n526,391,10.5\n526,392,11.0\n526,393,11.5\n526,394,12.0\n526,395,12.5\n526,396,13.0\n526,397,13.5\n526,398,14.0\n526,399,14.5\n526,400,3.0\n526,401,2.5\n526,402,3.0\n526,403,3.5\n526,404,4.0\n526,405,4.5\n526,406,5.0\n526,407,5.5\n526,408,6.0\n526,409,6.5\n526,410,7.0\n526,411,7.5\n526,412,8.0\n526,413,8.5\n526,414,9.0\n526,415,9.5\n526,416,10.0\n526,417,10.5\n526,418,11.0\n526,419,11.5\n526,420,12.0\n526,421,12.5\n526,422,13.0\n526,423,13.5\n526,424,14.0\n526,425,2.5\n526,426,2.0\n526,427,2.5\n526,428,3.0\n526,429,3.5\n526,430,4.0\n526,431,4.5\n526,432,5.0\n526,433,5.5\n526,434,6.0\n526,435,6.5\n526,436,7.0\n526,437,7.5\n526,438,8.0\n526,439,8.5\n526,440,9.0\n526,441,9.5\n526,442,10.0\n526,443,10.5\n526,444,11.0\n526,445,11.5\n526,446,12.0\n526,447,12.5\n526,448,13.0\n526,449,13.5\n526,450,2.0\n526,451,1.5\n526,452,2.0\n526,453,2.5\n526,454,3.0\n526,455,3.5\n526,456,4.0\n526,457,4.5\n526,458,5.0\n526,459,5.5\n526,460,6.0\n526,461,6.5\n526,462,7.0\n526,463,7.5\n526,464,8.0\n526,465,8.5\n526,466,9.0\n526,467,9.5\n526,468,10.0\n526,469,10.5\n526,470,11.0\n526,471,11.5\n526,472,12.0\n526,473,12.5\n526,474,13.0\n526,475,1.5\n526,476,1.0\n526,477,1.5\n526,478,2.0\n526,479,2.5\n526,480,3.0\n526,481,3.5\n526,482,4.0\n526,483,4.5\n526,484,5.0\n526,485,5.5\n526,486,6.0\n526,487,6.5\n526,488,7.0\n526,489,7.5\n526,490,8.0\n526,491,8.5\n526,492,9.0\n526,493,9.5\n526,494,10.0\n526,495,10.5\n526,496,11.0\n526,497,11.5\n526,498,12.0\n526,499,12.5\n526,500,1.0\n526,501,0.5\n526,502,1.0\n526,503,1.5\n526,504,2.0\n526,505,2.5\n526,506,3.0\n526,507,3.5\n526,508,4.0\n526,509,4.5\n526,510,5.0\n526,511,5.5\n526,512,6.0\n526,513,6.5\n526,514,7.0\n526,515,7.5\n526,516,8.0\n526,517,8.5\n526,518,9.0\n526,519,9.5\n526,520,10.0\n526,521,10.5\n526,522,11.0\n526,523,11.5\n526,524,12.0\n526,525,0.5\n526,526,0\n526,527,0.5\n526,528,1.0\n526,529,1.5\n526,530,2.0\n526,531,2.5\n526,532,3.0\n526,533,3.5\n526,534,4.0\n526,535,4.5\n526,536,5.0\n526,537,5.5\n526,538,6.0\n526,539,6.5\n526,540,7.0\n526,541,7.5\n526,542,8.0\n526,543,8.5\n526,544,9.0\n526,545,9.5\n526,546,10.0\n526,547,10.5\n526,548,11.0\n526,549,11.5\n526,550,1.0\n526,551,0.5\n526,552,1.0\n526,553,1.5\n526,554,2.0\n526,555,2.5\n526,556,3.0\n526,557,3.5\n526,558,4.0\n526,559,4.5\n526,560,5.0\n526,561,5.5\n526,562,6.0\n526,563,6.5\n526,564,7.0\n526,565,7.5\n526,566,8.0\n526,567,8.5\n526,568,9.0\n526,569,9.5\n526,570,10.0\n526,571,10.5\n526,572,11.0\n526,573,11.5\n526,574,12.0\n526,575,1.5\n526,576,1.0\n526,577,1.5\n526,578,2.0\n526,579,2.5\n526,580,3.0\n526,581,3.5\n526,582,4.0\n526,583,4.5\n526,584,5.0\n526,585,5.5\n526,586,6.0\n526,587,6.5\n526,588,7.0\n526,589,7.5\n526,590,8.0\n526,591,8.5\n526,592,9.0\n526,593,9.5\n526,594,10.0\n526,595,10.5\n526,596,11.0\n526,597,11.5\n526,598,12.0\n526,599,12.5\n526,600,2.0\n526,601,1.5\n526,602,2.0\n526,603,2.5\n526,604,3.0\n526,605,3.5\n526,606,4.0\n526,607,4.5\n526,608,5.0\n526,609,5.5\n526,610,6.0\n526,611,6.5\n526,612,7.0\n526,613,7.5\n526,614,8.0\n526,615,8.5\n526,616,9.0\n526,617,9.5\n526,618,10.0\n526,619,10.5\n526,620,11.0\n526,621,11.5\n526,622,12.0\n526,623,12.5\n526,624,13.0\n527,0,11.5\n527,1,11.0\n527,2,10.5\n527,3,11.0\n527,4,11.5\n527,5,12.0\n527,6,12.5\n527,7,13.0\n527,8,13.5\n527,9,14.0\n527,10,14.5\n527,11,15.0\n527,12,15.5\n527,13,16.0\n527,14,16.5\n527,15,17.0\n527,16,17.5\n527,17,18.0\n527,18,18.5\n527,19,19.0\n527,20,19.5\n527,21,20.0\n527,22,20.5\n527,23,21.0\n527,24,21.5\n527,25,11.0\n527,26,10.5\n527,27,10.0\n527,28,10.5\n527,29,11.0\n527,30,11.5\n527,31,12.0\n527,32,12.5\n527,33,13.0\n527,34,13.5\n527,35,14.0\n527,36,14.5\n527,37,15.0\n527,38,15.5\n527,39,16.0\n527,40,16.5\n527,41,17.0\n527,42,17.5\n527,43,18.0\n527,44,18.5\n527,45,19.0\n527,46,19.5\n527,47,20.0\n527,48,20.5\n527,49,21.0\n527,50,10.5\n527,51,10.0\n527,52,9.5\n527,53,10.0\n527,54,10.5\n527,55,11.0\n527,56,11.5\n527,57,12.0\n527,58,12.5\n527,59,13.0\n527,60,13.5\n527,61,14.0\n527,62,14.5\n527,63,15.0\n527,64,15.5\n527,65,16.0\n527,66,16.5\n527,67,17.0\n527,68,17.5\n527,69,18.0\n527,70,18.5\n527,71,19.0\n527,72,19.5\n527,73,20.0\n527,74,20.5\n527,75,10.0\n527,76,9.5\n527,77,9.0\n527,78,9.5\n527,79,10.0\n527,80,10.5\n527,81,11.0\n527,82,11.5\n527,83,12.0\n527,84,12.5\n527,85,13.0\n527,86,13.5\n527,87,14.0\n527,88,14.5\n527,89,15.0\n527,90,15.5\n527,91,16.0\n527,92,16.5\n527,93,17.0\n527,94,17.5\n527,95,18.0\n527,96,18.5\n527,97,19.0\n527,98,19.5\n527,99,20.0\n527,100,9.5\n527,101,9.0\n527,102,8.5\n527,103,9.0\n527,104,9.5\n527,105,10.0\n527,106,10.5\n527,107,11.0\n527,108,11.5\n527,109,12.0\n527,110,12.5\n527,111,13.0\n527,112,13.5\n527,113,14.0\n527,114,14.5\n527,115,15.0\n527,116,15.5\n527,117,16.0\n527,118,16.5\n527,119,17.0\n527,120,17.5\n527,121,18.0\n527,122,18.5\n527,123,19.0\n527,124,19.5\n527,125,9.0\n527,126,8.5\n527,127,8.0\n527,128,8.5\n527,129,9.0\n527,130,9.5\n527,131,10.0\n527,132,10.5\n527,133,11.0\n527,134,11.5\n527,135,12.0\n527,136,12.5\n527,137,13.0\n527,138,13.5\n527,139,14.0\n527,140,14.5\n527,141,15.0\n527,142,15.5\n527,143,16.0\n527,144,16.5\n527,145,17.0\n527,146,17.5\n527,147,18.0\n527,148,18.5\n527,149,19.0\n527,150,8.5\n527,151,8.0\n527,152,7.5\n527,153,8.0\n527,154,8.5\n527,155,9.0\n527,156,9.5\n527,157,10.0\n527,158,10.5\n527,159,11.0\n527,160,11.5\n527,161,12.0\n527,162,12.5\n527,163,13.0\n527,164,13.5\n527,165,14.0\n527,166,14.5\n527,167,15.0\n527,168,15.5\n527,169,16.0\n527,170,16.5\n527,171,17.0\n527,172,17.5\n527,173,18.0\n527,174,18.5\n527,175,8.0\n527,176,7.5\n527,177,7.0\n527,178,7.5\n527,179,8.0\n527,180,8.5\n527,181,9.0\n527,182,9.5\n527,183,10.0\n527,184,10.5\n527,185,11.0\n527,186,11.5\n527,187,12.0\n527,188,12.5\n527,189,13.0\n527,190,13.5\n527,191,14.0\n527,192,14.5\n527,193,15.0\n527,194,15.5\n527,195,16.0\n527,196,16.5\n527,197,17.0\n527,198,17.5\n527,199,18.0\n527,200,7.5\n527,201,7.0\n527,202,6.5\n527,203,7.0\n527,204,7.5\n527,205,8.0\n527,206,8.5\n527,207,9.0\n527,208,9.5\n527,209,10.0\n527,210,10.5\n527,211,11.0\n527,212,11.5\n527,213,12.0\n527,214,12.5\n527,215,13.0\n527,216,13.5\n527,217,14.0\n527,218,14.5\n527,219,15.0\n527,220,15.5\n527,221,16.0\n527,222,16.5\n527,223,17.0\n527,224,17.5\n527,225,7.0\n527,226,6.5\n527,227,6.0\n527,228,6.5\n527,229,7.0\n527,230,7.5\n527,231,8.0\n527,232,8.5\n527,233,9.0\n527,234,9.5\n527,235,10.0\n527,236,10.5\n527,237,11.0\n527,238,11.5\n527,239,12.0\n527,240,12.5\n527,241,13.0\n527,242,13.5\n527,243,14.0\n527,244,14.5\n527,245,15.0\n527,246,15.5\n527,247,16.0\n527,248,16.5\n527,249,17.0\n527,250,6.5\n527,251,6.0\n527,252,5.5\n527,253,6.0\n527,254,6.5\n527,255,7.0\n527,256,7.5\n527,257,8.0\n527,258,8.5\n527,259,9.0\n527,260,9.5\n527,261,10.0\n527,262,10.5\n527,263,11.0\n527,264,11.5\n527,265,12.0\n527,266,12.5\n527,267,13.0\n527,268,13.5\n527,269,14.0\n527,270,14.5\n527,271,15.0\n527,272,15.5\n527,273,16.0\n527,274,16.5\n527,275,6.0\n527,276,5.5\n527,277,5.0\n527,278,5.5\n527,279,6.0\n527,280,6.5\n527,281,7.0\n527,282,7.5\n527,283,8.0\n527,284,8.5\n527,285,9.0\n527,286,9.5\n527,287,10.0\n527,288,10.5\n527,289,11.0\n527,290,11.5\n527,291,12.0\n527,292,12.5\n527,293,13.0\n527,294,13.5\n527,295,14.0\n527,296,14.5\n527,297,15.0\n527,298,15.5\n527,299,16.0\n527,300,5.5\n527,301,5.0\n527,302,4.5\n527,303,5.0\n527,304,5.5\n527,305,6.0\n527,306,6.5\n527,307,7.0\n527,308,7.5\n527,309,8.0\n527,310,8.5\n527,311,9.0\n527,312,9.5\n527,313,10.0\n527,314,10.5\n527,315,11.0\n527,316,11.5\n527,317,12.0\n527,318,12.5\n527,319,13.0\n527,320,13.5\n527,321,14.0\n527,322,14.5\n527,323,15.0\n527,324,15.5\n527,325,5.0\n527,326,4.5\n527,327,4.0\n527,328,4.5\n527,329,5.0\n527,330,5.5\n527,331,6.0\n527,332,6.5\n527,333,7.0\n527,334,7.5\n527,335,8.0\n527,336,8.5\n527,337,9.0\n527,338,9.5\n527,339,10.0\n527,340,10.5\n527,341,11.0\n527,342,11.5\n527,343,12.0\n527,344,12.5\n527,345,13.0\n527,346,13.5\n527,347,14.0\n527,348,14.5\n527,349,15.0\n527,350,4.5\n527,351,4.0\n527,352,3.5\n527,353,4.0\n527,354,4.5\n527,355,5.0\n527,356,5.5\n527,357,6.0\n527,358,6.5\n527,359,7.0\n527,360,7.5\n527,361,8.0\n527,362,8.5\n527,363,9.0\n527,364,9.5\n527,365,10.0\n527,366,10.5\n527,367,11.0\n527,368,11.5\n527,369,12.0\n527,370,12.5\n527,371,13.0\n527,372,13.5\n527,373,14.0\n527,374,14.5\n527,375,4.0\n527,376,3.5\n527,377,3.0\n527,378,3.5\n527,379,4.0\n527,380,4.5\n527,381,5.0\n527,382,5.5\n527,383,6.0\n527,384,6.5\n527,385,7.0\n527,386,7.5\n527,387,8.0\n527,388,8.5\n527,389,9.0\n527,390,9.5\n527,391,10.0\n527,392,10.5\n527,393,11.0\n527,394,11.5\n527,395,12.0\n527,396,12.5\n527,397,13.0\n527,398,13.5\n527,399,14.0\n527,400,3.5\n527,401,3.0\n527,402,2.5\n527,403,3.0\n527,404,3.5\n527,405,4.0\n527,406,4.5\n527,407,5.0\n527,408,5.5\n527,409,6.0\n527,410,6.5\n527,411,7.0\n527,412,7.5\n527,413,8.0\n527,414,8.5\n527,415,9.0\n527,416,9.5\n527,417,10.0\n527,418,10.5\n527,419,11.0\n527,420,11.5\n527,421,12.0\n527,422,12.5\n527,423,13.0\n527,424,13.5\n527,425,3.0\n527,426,2.5\n527,427,2.0\n527,428,2.5\n527,429,3.0\n527,430,3.5\n527,431,4.0\n527,432,4.5\n527,433,5.0\n527,434,5.5\n527,435,6.0\n527,436,6.5\n527,437,7.0\n527,438,7.5\n527,439,8.0\n527,440,8.5\n527,441,9.0\n527,442,9.5\n527,443,10.0\n527,444,10.5\n527,445,11.0\n527,446,11.5\n527,447,12.0\n527,448,12.5\n527,449,13.0\n527,450,2.5\n527,451,2.0\n527,452,1.5\n527,453,2.0\n527,454,2.5\n527,455,3.0\n527,456,3.5\n527,457,4.0\n527,458,4.5\n527,459,5.0\n527,460,5.5\n527,461,6.0\n527,462,6.5\n527,463,7.0\n527,464,7.5\n527,465,8.0\n527,466,8.5\n527,467,9.0\n527,468,9.5\n527,469,10.0\n527,470,10.5\n527,471,11.0\n527,472,11.5\n527,473,12.0\n527,474,12.5\n527,475,2.0\n527,476,1.5\n527,477,1.0\n527,478,1.5\n527,479,2.0\n527,480,2.5\n527,481,3.0\n527,482,3.5\n527,483,4.0\n527,484,4.5\n527,485,5.0\n527,486,5.5\n527,487,6.0\n527,488,6.5\n527,489,7.0\n527,490,7.5\n527,491,8.0\n527,492,8.5\n527,493,9.0\n527,494,9.5\n527,495,10.0\n527,496,10.5\n527,497,11.0\n527,498,11.5\n527,499,12.0\n527,500,1.5\n527,501,1.0\n527,502,0.5\n527,503,1.0\n527,504,1.5\n527,505,2.0\n527,506,2.5\n527,507,3.0\n527,508,3.5\n527,509,4.0\n527,510,4.5\n527,511,5.0\n527,512,5.5\n527,513,6.0\n527,514,6.5\n527,515,7.0\n527,516,7.5\n527,517,8.0\n527,518,8.5\n527,519,9.0\n527,520,9.5\n527,521,10.0\n527,522,10.5\n527,523,11.0\n527,524,11.5\n527,525,1.0\n527,526,0.5\n527,527,0\n527,528,0.5\n527,529,1.0\n527,530,1.5\n527,531,2.0\n527,532,2.5\n527,533,3.0\n527,534,3.5\n527,535,4.0\n527,536,4.5\n527,537,5.0\n527,538,5.5\n527,539,6.0\n527,540,6.5\n527,541,7.0\n527,542,7.5\n527,543,8.0\n527,544,8.5\n527,545,9.0\n527,546,9.5\n527,547,10.0\n527,548,10.5\n527,549,11.0\n527,550,1.5\n527,551,1.0\n527,552,0.5\n527,553,1.0\n527,554,1.5\n527,555,2.0\n527,556,2.5\n527,557,3.0\n527,558,3.5\n527,559,4.0\n527,560,4.5\n527,561,5.0\n527,562,5.5\n527,563,6.0\n527,564,6.5\n527,565,7.0\n527,566,7.5\n527,567,8.0\n527,568,8.5\n527,569,9.0\n527,570,9.5\n527,571,10.0\n527,572,10.5\n527,573,11.0\n527,574,11.5\n527,575,2.0\n527,576,1.5\n527,577,1.0\n527,578,1.5\n527,579,2.0\n527,580,2.5\n527,581,3.0\n527,582,3.5\n527,583,4.0\n527,584,4.5\n527,585,5.0\n527,586,5.5\n527,587,6.0\n527,588,6.5\n527,589,7.0\n527,590,7.5\n527,591,8.0\n527,592,8.5\n527,593,9.0\n527,594,9.5\n527,595,10.0\n527,596,10.5\n527,597,11.0\n527,598,11.5\n527,599,12.0\n527,600,2.5\n527,601,2.0\n527,602,1.5\n527,603,2.0\n527,604,2.5\n527,605,3.0\n527,606,3.5\n527,607,4.0\n527,608,4.5\n527,609,5.0\n527,610,5.5\n527,611,6.0\n527,612,6.5\n527,613,7.0\n527,614,7.5\n527,615,8.0\n527,616,8.5\n527,617,9.0\n527,618,9.5\n527,619,10.0\n527,620,10.5\n527,621,11.0\n527,622,11.5\n527,623,12.0\n527,624,12.5\n528,0,12.0\n528,1,11.5\n528,2,11.0\n528,3,10.5\n528,4,11.0\n528,5,11.5\n528,6,12.0\n528,7,12.5\n528,8,13.0\n528,9,13.5\n528,10,14.0\n528,11,14.5\n528,12,15.0\n528,13,15.5\n528,14,16.0\n528,15,16.5\n528,16,17.0\n528,17,17.5\n528,18,18.0\n528,19,18.5\n528,20,19.0\n528,21,19.5\n528,22,20.0\n528,23,20.5\n528,24,21.0\n528,25,11.5\n528,26,11.0\n528,27,10.5\n528,28,10.0\n528,29,10.5\n528,30,11.0\n528,31,11.5\n528,32,12.0\n528,33,12.5\n528,34,13.0\n528,35,13.5\n528,36,14.0\n528,37,14.5\n528,38,15.0\n528,39,15.5\n528,40,16.0\n528,41,16.5\n528,42,17.0\n528,43,17.5\n528,44,18.0\n528,45,18.5\n528,46,19.0\n528,47,19.5\n528,48,20.0\n528,49,20.5\n528,50,11.0\n528,51,10.5\n528,52,10.0\n528,53,9.5\n528,54,10.0\n528,55,10.5\n528,56,11.0\n528,57,11.5\n528,58,12.0\n528,59,12.5\n528,60,13.0\n528,61,13.5\n528,62,14.0\n528,63,14.5\n528,64,15.0\n528,65,15.5\n528,66,16.0\n528,67,16.5\n528,68,17.0\n528,69,17.5\n528,70,18.0\n528,71,18.5\n528,72,19.0\n528,73,19.5\n528,74,20.0\n528,75,10.5\n528,76,10.0\n528,77,9.5\n528,78,9.0\n528,79,9.5\n528,80,10.0\n528,81,10.5\n528,82,11.0\n528,83,11.5\n528,84,12.0\n528,85,12.5\n528,86,13.0\n528,87,13.5\n528,88,14.0\n528,89,14.5\n528,90,15.0\n528,91,15.5\n528,92,16.0\n528,93,16.5\n528,94,17.0\n528,95,17.5\n528,96,18.0\n528,97,18.5\n528,98,19.0\n528,99,19.5\n528,100,10.0\n528,101,9.5\n528,102,9.0\n528,103,8.5\n528,104,9.0\n528,105,9.5\n528,106,10.0\n528,107,10.5\n528,108,11.0\n528,109,11.5\n528,110,12.0\n528,111,12.5\n528,112,13.0\n528,113,13.5\n528,114,14.0\n528,115,14.5\n528,116,15.0\n528,117,15.5\n528,118,16.0\n528,119,16.5\n528,120,17.0\n528,121,17.5\n528,122,18.0\n528,123,18.5\n528,124,19.0\n528,125,9.5\n528,126,9.0\n528,127,8.5\n528,128,8.0\n528,129,8.5\n528,130,9.0\n528,131,9.5\n528,132,10.0\n528,133,10.5\n528,134,11.0\n528,135,11.5\n528,136,12.0\n528,137,12.5\n528,138,13.0\n528,139,13.5\n528,140,14.0\n528,141,14.5\n528,142,15.0\n528,143,15.5\n528,144,16.0\n528,145,16.5\n528,146,17.0\n528,147,17.5\n528,148,18.0\n528,149,18.5\n528,150,9.0\n528,151,8.5\n528,152,8.0\n528,153,7.5\n528,154,8.0\n528,155,8.5\n528,156,9.0\n528,157,9.5\n528,158,10.0\n528,159,10.5\n528,160,11.0\n528,161,11.5\n528,162,12.0\n528,163,12.5\n528,164,13.0\n528,165,13.5\n528,166,14.0\n528,167,14.5\n528,168,15.0\n528,169,15.5\n528,170,16.0\n528,171,16.5\n528,172,17.0\n528,173,17.5\n528,174,18.0\n528,175,8.5\n528,176,8.0\n528,177,7.5\n528,178,7.0\n528,179,7.5\n528,180,8.0\n528,181,8.5\n528,182,9.0\n528,183,9.5\n528,184,10.0\n528,185,10.5\n528,186,11.0\n528,187,11.5\n528,188,12.0\n528,189,12.5\n528,190,13.0\n528,191,13.5\n528,192,14.0\n528,193,14.5\n528,194,15.0\n528,195,15.5\n528,196,16.0\n528,197,16.5\n528,198,17.0\n528,199,17.5\n528,200,8.0\n528,201,7.5\n528,202,7.0\n528,203,6.5\n528,204,7.0\n528,205,7.5\n528,206,8.0\n528,207,8.5\n528,208,9.0\n528,209,9.5\n528,210,10.0\n528,211,10.5\n528,212,11.0\n528,213,11.5\n528,214,12.0\n528,215,12.5\n528,216,13.0\n528,217,13.5\n528,218,14.0\n528,219,14.5\n528,220,15.0\n528,221,15.5\n528,222,16.0\n528,223,16.5\n528,224,17.0\n528,225,7.5\n528,226,7.0\n528,227,6.5\n528,228,6.0\n528,229,6.5\n528,230,7.0\n528,231,7.5\n528,232,8.0\n528,233,8.5\n528,234,9.0\n528,235,9.5\n528,236,10.0\n528,237,10.5\n528,238,11.0\n528,239,11.5\n528,240,12.0\n528,241,12.5\n528,242,13.0\n528,243,13.5\n528,244,14.0\n528,245,14.5\n528,246,15.0\n528,247,15.5\n528,248,16.0\n528,249,16.5\n528,250,7.0\n528,251,6.5\n528,252,6.0\n528,253,5.5\n528,254,6.0\n528,255,6.5\n528,256,7.0\n528,257,7.5\n528,258,8.0\n528,259,8.5\n528,260,9.0\n528,261,9.5\n528,262,10.0\n528,263,10.5\n528,264,11.0\n528,265,11.5\n528,266,12.0\n528,267,12.5\n528,268,13.0\n528,269,13.5\n528,270,14.0\n528,271,14.5\n528,272,15.0\n528,273,15.5\n528,274,16.0\n528,275,6.5\n528,276,6.0\n528,277,5.5\n528,278,5.0\n528,279,5.5\n528,280,6.0\n528,281,6.5\n528,282,7.0\n528,283,7.5\n528,284,8.0\n528,285,8.5\n528,286,9.0\n528,287,9.5\n528,288,10.0\n528,289,10.5\n528,290,11.0\n528,291,11.5\n528,292,12.0\n528,293,12.5\n528,294,13.0\n528,295,13.5\n528,296,14.0\n528,297,14.5\n528,298,15.0\n528,299,15.5\n528,300,6.0\n528,301,5.5\n528,302,5.0\n528,303,4.5\n528,304,5.0\n528,305,5.5\n528,306,6.0\n528,307,6.5\n528,308,7.0\n528,309,7.5\n528,310,8.0\n528,311,8.5\n528,312,9.0\n528,313,9.5\n528,314,10.0\n528,315,10.5\n528,316,11.0\n528,317,11.5\n528,318,12.0\n528,319,12.5\n528,320,13.0\n528,321,13.5\n528,322,14.0\n528,323,14.5\n528,324,15.0\n528,325,5.5\n528,326,5.0\n528,327,4.5\n528,328,4.0\n528,329,4.5\n528,330,5.0\n528,331,5.5\n528,332,6.0\n528,333,6.5\n528,334,7.0\n528,335,7.5\n528,336,8.0\n528,337,8.5\n528,338,9.0\n528,339,9.5\n528,340,10.0\n528,341,10.5\n528,342,11.0\n528,343,11.5\n528,344,12.0\n528,345,12.5\n528,346,13.0\n528,347,13.5\n528,348,14.0\n528,349,14.5\n528,350,5.0\n528,351,4.5\n528,352,4.0\n528,353,3.5\n528,354,4.0\n528,355,4.5\n528,356,5.0\n528,357,5.5\n528,358,6.0\n528,359,6.5\n528,360,7.0\n528,361,7.5\n528,362,8.0\n528,363,8.5\n528,364,9.0\n528,365,9.5\n528,366,10.0\n528,367,10.5\n528,368,11.0\n528,369,11.5\n528,370,12.0\n528,371,12.5\n528,372,13.0\n528,373,13.5\n528,374,14.0\n528,375,4.5\n528,376,4.0\n528,377,3.5\n528,378,3.0\n528,379,3.5\n528,380,4.0\n528,381,4.5\n528,382,5.0\n528,383,5.5\n528,384,6.0\n528,385,6.5\n528,386,7.0\n528,387,7.5\n528,388,8.0\n528,389,8.5\n528,390,9.0\n528,391,9.5\n528,392,10.0\n528,393,10.5\n528,394,11.0\n528,395,11.5\n528,396,12.0\n528,397,12.5\n528,398,13.0\n528,399,13.5\n528,400,4.0\n528,401,3.5\n528,402,3.0\n528,403,2.5\n528,404,3.0\n528,405,3.5\n528,406,4.0\n528,407,4.5\n528,408,5.0\n528,409,5.5\n528,410,6.0\n528,411,6.5\n528,412,7.0\n528,413,7.5\n528,414,8.0\n528,415,8.5\n528,416,9.0\n528,417,9.5\n528,418,10.0\n528,419,10.5\n528,420,11.0\n528,421,11.5\n528,422,12.0\n528,423,12.5\n528,424,13.0\n528,425,3.5\n528,426,3.0\n528,427,2.5\n528,428,2.0\n528,429,2.5\n528,430,3.0\n528,431,3.5\n528,432,4.0\n528,433,4.5\n528,434,5.0\n528,435,5.5\n528,436,6.0\n528,437,6.5\n528,438,7.0\n528,439,7.5\n528,440,8.0\n528,441,8.5\n528,442,9.0\n528,443,9.5\n528,444,10.0\n528,445,10.5\n528,446,11.0\n528,447,11.5\n528,448,12.0\n528,449,12.5\n528,450,3.0\n528,451,2.5\n528,452,2.0\n528,453,1.5\n528,454,2.0\n528,455,2.5\n528,456,3.0\n528,457,3.5\n528,458,4.0\n528,459,4.5\n528,460,5.0\n528,461,5.5\n528,462,6.0\n528,463,6.5\n528,464,7.0\n528,465,7.5\n528,466,8.0\n528,467,8.5\n528,468,9.0\n528,469,9.5\n528,470,10.0\n528,471,10.5\n528,472,11.0\n528,473,11.5\n528,474,12.0\n528,475,2.5\n528,476,2.0\n528,477,1.5\n528,478,1.0\n528,479,1.5\n528,480,2.0\n528,481,2.5\n528,482,3.0\n528,483,3.5\n528,484,4.0\n528,485,4.5\n528,486,5.0\n528,487,5.5\n528,488,6.0\n528,489,6.5\n528,490,7.0\n528,491,7.5\n528,492,8.0\n528,493,8.5\n528,494,9.0\n528,495,9.5\n528,496,10.0\n528,497,10.5\n528,498,11.0\n528,499,11.5\n528,500,2.0\n528,501,1.5\n528,502,1.0\n528,503,0.5\n528,504,1.0\n528,505,1.5\n528,506,2.0\n528,507,2.5\n528,508,3.0\n528,509,3.5\n528,510,4.0\n528,511,4.5\n528,512,5.0\n528,513,5.5\n528,514,6.0\n528,515,6.5\n528,516,7.0\n528,517,7.5\n528,518,8.0\n528,519,8.5\n528,520,9.0\n528,521,9.5\n528,522,10.0\n528,523,10.5\n528,524,11.0\n528,525,1.5\n528,526,1.0\n528,527,0.5\n528,528,0\n528,529,0.5\n528,530,1.0\n528,531,1.5\n528,532,2.0\n528,533,2.5\n528,534,3.0\n528,535,3.5\n528,536,4.0\n528,537,4.5\n528,538,5.0\n528,539,5.5\n528,540,6.0\n528,541,6.5\n528,542,7.0\n528,543,7.5\n528,544,8.0\n528,545,8.5\n528,546,9.0\n528,547,9.5\n528,548,10.0\n528,549,10.5\n528,550,2.0\n528,551,1.5\n528,552,1.0\n528,553,0.5\n528,554,1.0\n528,555,1.5\n528,556,2.0\n528,557,2.5\n528,558,3.0\n528,559,3.5\n528,560,4.0\n528,561,4.5\n528,562,5.0\n528,563,5.5\n528,564,6.0\n528,565,6.5\n528,566,7.0\n528,567,7.5\n528,568,8.0\n528,569,8.5\n528,570,9.0\n528,571,9.5\n528,572,10.0\n528,573,10.5\n528,574,11.0\n528,575,2.5\n528,576,2.0\n528,577,1.5\n528,578,1.0\n528,579,1.5\n528,580,2.0\n528,581,2.5\n528,582,3.0\n528,583,3.5\n528,584,4.0\n528,585,4.5\n528,586,5.0\n528,587,5.5\n528,588,6.0\n528,589,6.5\n528,590,7.0\n528,591,7.5\n528,592,8.0\n528,593,8.5\n528,594,9.0\n528,595,9.5\n528,596,10.0\n528,597,10.5\n528,598,11.0\n528,599,11.5\n528,600,3.0\n528,601,2.5\n528,602,2.0\n528,603,1.5\n528,604,2.0\n528,605,2.5\n528,606,3.0\n528,607,3.5\n528,608,4.0\n528,609,4.5\n528,610,5.0\n528,611,5.5\n528,612,6.0\n528,613,6.5\n528,614,7.0\n528,615,7.5\n528,616,8.0\n528,617,8.5\n528,618,9.0\n528,619,9.5\n528,620,10.0\n528,621,10.5\n528,622,11.0\n528,623,11.5\n528,624,12.0\n529,0,12.5\n529,1,12.0\n529,2,11.5\n529,3,11.0\n529,4,10.5\n529,5,11.0\n529,6,11.5\n529,7,12.0\n529,8,12.5\n529,9,13.0\n529,10,13.5\n529,11,14.0\n529,12,14.5\n529,13,15.0\n529,14,15.5\n529,15,16.0\n529,16,16.5\n529,17,17.0\n529,18,17.5\n529,19,18.0\n529,20,18.5\n529,21,19.0\n529,22,19.5\n529,23,20.0\n529,24,20.5\n529,25,12.0\n529,26,11.5\n529,27,11.0\n529,28,10.5\n529,29,10.0\n529,30,10.5\n529,31,11.0\n529,32,11.5\n529,33,12.0\n529,34,12.5\n529,35,13.0\n529,36,13.5\n529,37,14.0\n529,38,14.5\n529,39,15.0\n529,40,15.5\n529,41,16.0\n529,42,16.5\n529,43,17.0\n529,44,17.5\n529,45,18.0\n529,46,18.5\n529,47,19.0\n529,48,19.5\n529,49,20.0\n529,50,11.5\n529,51,11.0\n529,52,10.5\n529,53,10.0\n529,54,9.5\n529,55,10.0\n529,56,10.5\n529,57,11.0\n529,58,11.5\n529,59,12.0\n529,60,12.5\n529,61,13.0\n529,62,13.5\n529,63,14.0\n529,64,14.5\n529,65,15.0\n529,66,15.5\n529,67,16.0\n529,68,16.5\n529,69,17.0\n529,70,17.5\n529,71,18.0\n529,72,18.5\n529,73,19.0\n529,74,19.5\n529,75,11.0\n529,76,10.5\n529,77,10.0\n529,78,9.5\n529,79,9.0\n529,80,9.5\n529,81,10.0\n529,82,10.5\n529,83,11.0\n529,84,11.5\n529,85,12.0\n529,86,12.5\n529,87,13.0\n529,88,13.5\n529,89,14.0\n529,90,14.5\n529,91,15.0\n529,92,15.5\n529,93,16.0\n529,94,16.5\n529,95,17.0\n529,96,17.5\n529,97,18.0\n529,98,18.5\n529,99,19.0\n529,100,10.5\n529,101,10.0\n529,102,9.5\n529,103,9.0\n529,104,8.5\n529,105,9.0\n529,106,9.5\n529,107,10.0\n529,108,10.5\n529,109,11.0\n529,110,11.5\n529,111,12.0\n529,112,12.5\n529,113,13.0\n529,114,13.5\n529,115,14.0\n529,116,14.5\n529,117,15.0\n529,118,15.5\n529,119,16.0\n529,120,16.5\n529,121,17.0\n529,122,17.5\n529,123,18.0\n529,124,18.5\n529,125,10.0\n529,126,9.5\n529,127,9.0\n529,128,8.5\n529,129,8.0\n529,130,8.5\n529,131,9.0\n529,132,9.5\n529,133,10.0\n529,134,10.5\n529,135,11.0\n529,136,11.5\n529,137,12.0\n529,138,12.5\n529,139,13.0\n529,140,13.5\n529,141,14.0\n529,142,14.5\n529,143,15.0\n529,144,15.5\n529,145,16.0\n529,146,16.5\n529,147,17.0\n529,148,17.5\n529,149,18.0\n529,150,9.5\n529,151,9.0\n529,152,8.5\n529,153,8.0\n529,154,7.5\n529,155,8.0\n529,156,8.5\n529,157,9.0\n529,158,9.5\n529,159,10.0\n529,160,10.5\n529,161,11.0\n529,162,11.5\n529,163,12.0\n529,164,12.5\n529,165,13.0\n529,166,13.5\n529,167,14.0\n529,168,14.5\n529,169,15.0\n529,170,15.5\n529,171,16.0\n529,172,16.5\n529,173,17.0\n529,174,17.5\n529,175,9.0\n529,176,8.5\n529,177,8.0\n529,178,7.5\n529,179,7.0\n529,180,7.5\n529,181,8.0\n529,182,8.5\n529,183,9.0\n529,184,9.5\n529,185,10.0\n529,186,10.5\n529,187,11.0\n529,188,11.5\n529,189,12.0\n529,190,12.5\n529,191,13.0\n529,192,13.5\n529,193,14.0\n529,194,14.5\n529,195,15.0\n529,196,15.5\n529,197,16.0\n529,198,16.5\n529,199,17.0\n529,200,8.5\n529,201,8.0\n529,202,7.5\n529,203,7.0\n529,204,6.5\n529,205,7.0\n529,206,7.5\n529,207,8.0\n529,208,8.5\n529,209,9.0\n529,210,9.5\n529,211,10.0\n529,212,10.5\n529,213,11.0\n529,214,11.5\n529,215,12.0\n529,216,12.5\n529,217,13.0\n529,218,13.5\n529,219,14.0\n529,220,14.5\n529,221,15.0\n529,222,15.5\n529,223,16.0\n529,224,16.5\n529,225,8.0\n529,226,7.5\n529,227,7.0\n529,228,6.5\n529,229,6.0\n529,230,6.5\n529,231,7.0\n529,232,7.5\n529,233,8.0\n529,234,8.5\n529,235,9.0\n529,236,9.5\n529,237,10.0\n529,238,10.5\n529,239,11.0\n529,240,11.5\n529,241,12.0\n529,242,12.5\n529,243,13.0\n529,244,13.5\n529,245,14.0\n529,246,14.5\n529,247,15.0\n529,248,15.5\n529,249,16.0\n529,250,7.5\n529,251,7.0\n529,252,6.5\n529,253,6.0\n529,254,5.5\n529,255,6.0\n529,256,6.5\n529,257,7.0\n529,258,7.5\n529,259,8.0\n529,260,8.5\n529,261,9.0\n529,262,9.5\n529,263,10.0\n529,264,10.5\n529,265,11.0\n529,266,11.5\n529,267,12.0\n529,268,12.5\n529,269,13.0\n529,270,13.5\n529,271,14.0\n529,272,14.5\n529,273,15.0\n529,274,15.5\n529,275,7.0\n529,276,6.5\n529,277,6.0\n529,278,5.5\n529,279,5.0\n529,280,5.5\n529,281,6.0\n529,282,6.5\n529,283,7.0\n529,284,7.5\n529,285,8.0\n529,286,8.5\n529,287,9.0\n529,288,9.5\n529,289,10.0\n529,290,10.5\n529,291,11.0\n529,292,11.5\n529,293,12.0\n529,294,12.5\n529,295,13.0\n529,296,13.5\n529,297,14.0\n529,298,14.5\n529,299,15.0\n529,300,6.5\n529,301,6.0\n529,302,5.5\n529,303,5.0\n529,304,4.5\n529,305,5.0\n529,306,5.5\n529,307,6.0\n529,308,6.5\n529,309,7.0\n529,310,7.5\n529,311,8.0\n529,312,8.5\n529,313,9.0\n529,314,9.5\n529,315,10.0\n529,316,10.5\n529,317,11.0\n529,318,11.5\n529,319,12.0\n529,320,12.5\n529,321,13.0\n529,322,13.5\n529,323,14.0\n529,324,14.5\n529,325,6.0\n529,326,5.5\n529,327,5.0\n529,328,4.5\n529,329,4.0\n529,330,4.5\n529,331,5.0\n529,332,5.5\n529,333,6.0\n529,334,6.5\n529,335,7.0\n529,336,7.5\n529,337,8.0\n529,338,8.5\n529,339,9.0\n529,340,9.5\n529,341,10.0\n529,342,10.5\n529,343,11.0\n529,344,11.5\n529,345,12.0\n529,346,12.5\n529,347,13.0\n529,348,13.5\n529,349,14.0\n529,350,5.5\n529,351,5.0\n529,352,4.5\n529,353,4.0\n529,354,3.5\n529,355,4.0\n529,356,4.5\n529,357,5.0\n529,358,5.5\n529,359,6.0\n529,360,6.5\n529,361,7.0\n529,362,7.5\n529,363,8.0\n529,364,8.5\n529,365,9.0\n529,366,9.5\n529,367,10.0\n529,368,10.5\n529,369,11.0\n529,370,11.5\n529,371,12.0\n529,372,12.5\n529,373,13.0\n529,374,13.5\n529,375,5.0\n529,376,4.5\n529,377,4.0\n529,378,3.5\n529,379,3.0\n529,380,3.5\n529,381,4.0\n529,382,4.5\n529,383,5.0\n529,384,5.5\n529,385,6.0\n529,386,6.5\n529,387,7.0\n529,388,7.5\n529,389,8.0\n529,390,8.5\n529,391,9.0\n529,392,9.5\n529,393,10.0\n529,394,10.5\n529,395,11.0\n529,396,11.5\n529,397,12.0\n529,398,12.5\n529,399,13.0\n529,400,4.5\n529,401,4.0\n529,402,3.5\n529,403,3.0\n529,404,2.5\n529,405,3.0\n529,406,3.5\n529,407,4.0\n529,408,4.5\n529,409,5.0\n529,410,5.5\n529,411,6.0\n529,412,6.5\n529,413,7.0\n529,414,7.5\n529,415,8.0\n529,416,8.5\n529,417,9.0\n529,418,9.5\n529,419,10.0\n529,420,10.5\n529,421,11.0\n529,422,11.5\n529,423,12.0\n529,424,12.5\n529,425,4.0\n529,426,3.5\n529,427,3.0\n529,428,2.5\n529,429,2.0\n529,430,2.5\n529,431,3.0\n529,432,3.5\n529,433,4.0\n529,434,4.5\n529,435,5.0\n529,436,5.5\n529,437,6.0\n529,438,6.5\n529,439,7.0\n529,440,7.5\n529,441,8.0\n529,442,8.5\n529,443,9.0\n529,444,9.5\n529,445,10.0\n529,446,10.5\n529,447,11.0\n529,448,11.5\n529,449,12.0\n529,450,3.5\n529,451,3.0\n529,452,2.5\n529,453,2.0\n529,454,1.5\n529,455,2.0\n529,456,2.5\n529,457,3.0\n529,458,3.5\n529,459,4.0\n529,460,4.5\n529,461,5.0\n529,462,5.5\n529,463,6.0\n529,464,6.5\n529,465,7.0\n529,466,7.5\n529,467,8.0\n529,468,8.5\n529,469,9.0\n529,470,9.5\n529,471,10.0\n529,472,10.5\n529,473,11.0\n529,474,11.5\n529,475,3.0\n529,476,2.5\n529,477,2.0\n529,478,1.5\n529,479,1.0\n529,480,1.5\n529,481,2.0\n529,482,2.5\n529,483,3.0\n529,484,3.5\n529,485,4.0\n529,486,4.5\n529,487,5.0\n529,488,5.5\n529,489,6.0\n529,490,6.5\n529,491,7.0\n529,492,7.5\n529,493,8.0\n529,494,8.5\n529,495,9.0\n529,496,9.5\n529,497,10.0\n529,498,10.5\n529,499,11.0\n529,500,2.5\n529,501,2.0\n529,502,1.5\n529,503,1.0\n529,504,0.5\n529,505,1.0\n529,506,1.5\n529,507,2.0\n529,508,2.5\n529,509,3.0\n529,510,3.5\n529,511,4.0\n529,512,4.5\n529,513,5.0\n529,514,5.5\n529,515,6.0\n529,516,6.5\n529,517,7.0\n529,518,7.5\n529,519,8.0\n529,520,8.5\n529,521,9.0\n529,522,9.5\n529,523,10.0\n529,524,10.5\n529,525,2.0\n529,526,1.5\n529,527,1.0\n529,528,0.5\n529,529,0\n529,530,0.5\n529,531,1.0\n529,532,1.5\n529,533,2.0\n529,534,2.5\n529,535,3.0\n529,536,3.5\n529,537,4.0\n529,538,4.5\n529,539,5.0\n529,540,5.5\n529,541,6.0\n529,542,6.5\n529,543,7.0\n529,544,7.5\n529,545,8.0\n529,546,8.5\n529,547,9.0\n529,548,9.5\n529,549,10.0\n529,550,2.5\n529,551,2.0\n529,552,1.5\n529,553,1.0\n529,554,0.5\n529,555,1.0\n529,556,1.5\n529,557,2.0\n529,558,2.5\n529,559,3.0\n529,560,3.5\n529,561,4.0\n529,562,4.5\n529,563,5.0\n529,564,5.5\n529,565,6.0\n529,566,6.5\n529,567,7.0\n529,568,7.5\n529,569,8.0\n529,570,8.5\n529,571,9.0\n529,572,9.5\n529,573,10.0\n529,574,10.5\n529,575,3.0\n529,576,2.5\n529,577,2.0\n529,578,1.5\n529,579,1.0\n529,580,1.5\n529,581,2.0\n529,582,2.5\n529,583,3.0\n529,584,3.5\n529,585,4.0\n529,586,4.5\n529,587,5.0\n529,588,5.5\n529,589,6.0\n529,590,6.5\n529,591,7.0\n529,592,7.5\n529,593,8.0\n529,594,8.5\n529,595,9.0\n529,596,9.5\n529,597,10.0\n529,598,10.5\n529,599,11.0\n529,600,3.5\n529,601,3.0\n529,602,2.5\n529,603,2.0\n529,604,1.5\n529,605,2.0\n529,606,2.5\n529,607,3.0\n529,608,3.5\n529,609,4.0\n529,610,4.5\n529,611,5.0\n529,612,5.5\n529,613,6.0\n529,614,6.5\n529,615,7.0\n529,616,7.5\n529,617,8.0\n529,618,8.5\n529,619,9.0\n529,620,9.5\n529,621,10.0\n529,622,10.5\n529,623,11.0\n529,624,11.5\n530,0,13.0\n530,1,12.5\n530,2,12.0\n530,3,11.5\n530,4,11.0\n530,5,10.5\n530,6,11.0\n530,7,11.5\n530,8,12.0\n530,9,12.5\n530,10,13.0\n530,11,13.5\n530,12,14.0\n530,13,14.5\n530,14,15.0\n530,15,15.5\n530,16,16.0\n530,17,16.5\n530,18,17.0\n530,19,17.5\n530,20,18.0\n530,21,18.5\n530,22,19.0\n530,23,19.5\n530,24,20.0\n530,25,12.5\n530,26,12.0\n530,27,11.5\n530,28,11.0\n530,29,10.5\n530,30,10.0\n530,31,10.5\n530,32,11.0\n530,33,11.5\n530,34,12.0\n530,35,12.5\n530,36,13.0\n530,37,13.5\n530,38,14.0\n530,39,14.5\n530,40,15.0\n530,41,15.5\n530,42,16.0\n530,43,16.5\n530,44,17.0\n530,45,17.5\n530,46,18.0\n530,47,18.5\n530,48,19.0\n530,49,19.5\n530,50,12.0\n530,51,11.5\n530,52,11.0\n530,53,10.5\n530,54,10.0\n530,55,9.5\n530,56,10.0\n530,57,10.5\n530,58,11.0\n530,59,11.5\n530,60,12.0\n530,61,12.5\n530,62,13.0\n530,63,13.5\n530,64,14.0\n530,65,14.5\n530,66,15.0\n530,67,15.5\n530,68,16.0\n530,69,16.5\n530,70,17.0\n530,71,17.5\n530,72,18.0\n530,73,18.5\n530,74,19.0\n530,75,11.5\n530,76,11.0\n530,77,10.5\n530,78,10.0\n530,79,9.5\n530,80,9.0\n530,81,9.5\n530,82,10.0\n530,83,10.5\n530,84,11.0\n530,85,11.5\n530,86,12.0\n530,87,12.5\n530,88,13.0\n530,89,13.5\n530,90,14.0\n530,91,14.5\n530,92,15.0\n530,93,15.5\n530,94,16.0\n530,95,16.5\n530,96,17.0\n530,97,17.5\n530,98,18.0\n530,99,18.5\n530,100,11.0\n530,101,10.5\n530,102,10.0\n530,103,9.5\n530,104,9.0\n530,105,8.5\n530,106,9.0\n530,107,9.5\n530,108,10.0\n530,109,10.5\n530,110,11.0\n530,111,11.5\n530,112,12.0\n530,113,12.5\n530,114,13.0\n530,115,13.5\n530,116,14.0\n530,117,14.5\n530,118,15.0\n530,119,15.5\n530,120,16.0\n530,121,16.5\n530,122,17.0\n530,123,17.5\n530,124,18.0\n530,125,10.5\n530,126,10.0\n530,127,9.5\n530,128,9.0\n530,129,8.5\n530,130,8.0\n530,131,8.5\n530,132,9.0\n530,133,9.5\n530,134,10.0\n530,135,10.5\n530,136,11.0\n530,137,11.5\n530,138,12.0\n530,139,12.5\n530,140,13.0\n530,141,13.5\n530,142,14.0\n530,143,14.5\n530,144,15.0\n530,145,15.5\n530,146,16.0\n530,147,16.5\n530,148,17.0\n530,149,17.5\n530,150,10.0\n530,151,9.5\n530,152,9.0\n530,153,8.5\n530,154,8.0\n530,155,7.5\n530,156,8.0\n530,157,8.5\n530,158,9.0\n530,159,9.5\n530,160,10.0\n530,161,10.5\n530,162,11.0\n530,163,11.5\n530,164,12.0\n530,165,12.5\n530,166,13.0\n530,167,13.5\n530,168,14.0\n530,169,14.5\n530,170,15.0\n530,171,15.5\n530,172,16.0\n530,173,16.5\n530,174,17.0\n530,175,9.5\n530,176,9.0\n530,177,8.5\n530,178,8.0\n530,179,7.5\n530,180,7.0\n530,181,7.5\n530,182,8.0\n530,183,8.5\n530,184,9.0\n530,185,9.5\n530,186,10.0\n530,187,10.5\n530,188,11.0\n530,189,11.5\n530,190,12.0\n530,191,12.5\n530,192,13.0\n530,193,13.5\n530,194,14.0\n530,195,14.5\n530,196,15.0\n530,197,15.5\n530,198,16.0\n530,199,16.5\n530,200,9.0\n530,201,8.5\n530,202,8.0\n530,203,7.5\n530,204,7.0\n530,205,6.5\n530,206,7.0\n530,207,7.5\n530,208,8.0\n530,209,8.5\n530,210,9.0\n530,211,9.5\n530,212,10.0\n530,213,10.5\n530,214,11.0\n530,215,11.5\n530,216,12.0\n530,217,12.5\n530,218,13.0\n530,219,13.5\n530,220,14.0\n530,221,14.5\n530,222,15.0\n530,223,15.5\n530,224,16.0\n530,225,8.5\n530,226,8.0\n530,227,7.5\n530,228,7.0\n530,229,6.5\n530,230,6.0\n530,231,6.5\n530,232,7.0\n530,233,7.5\n530,234,8.0\n530,235,8.5\n530,236,9.0\n530,237,9.5\n530,238,10.0\n530,239,10.5\n530,240,11.0\n530,241,11.5\n530,242,12.0\n530,243,12.5\n530,244,13.0\n530,245,13.5\n530,246,14.0\n530,247,14.5\n530,248,15.0\n530,249,15.5\n530,250,8.0\n530,251,7.5\n530,252,7.0\n530,253,6.5\n530,254,6.0\n530,255,5.5\n530,256,6.0\n530,257,6.5\n530,258,7.0\n530,259,7.5\n530,260,8.0\n530,261,8.5\n530,262,9.0\n530,263,9.5\n530,264,10.0\n530,265,10.5\n530,266,11.0\n530,267,11.5\n530,268,12.0\n530,269,12.5\n530,270,13.0\n530,271,13.5\n530,272,14.0\n530,273,14.5\n530,274,15.0\n530,275,7.5\n530,276,7.0\n530,277,6.5\n530,278,6.0\n530,279,5.5\n530,280,5.0\n530,281,5.5\n530,282,6.0\n530,283,6.5\n530,284,7.0\n530,285,7.5\n530,286,8.0\n530,287,8.5\n530,288,9.0\n530,289,9.5\n530,290,10.0\n530,291,10.5\n530,292,11.0\n530,293,11.5\n530,294,12.0\n530,295,12.5\n530,296,13.0\n530,297,13.5\n530,298,14.0\n530,299,14.5\n530,300,7.0\n530,301,6.5\n530,302,6.0\n530,303,5.5\n530,304,5.0\n530,305,4.5\n530,306,5.0\n530,307,5.5\n530,308,6.0\n530,309,6.5\n530,310,7.0\n530,311,7.5\n530,312,8.0\n530,313,8.5\n530,314,9.0\n530,315,9.5\n530,316,10.0\n530,317,10.5\n530,318,11.0\n530,319,11.5\n530,320,12.0\n530,321,12.5\n530,322,13.0\n530,323,13.5\n530,324,14.0\n530,325,6.5\n530,326,6.0\n530,327,5.5\n530,328,5.0\n530,329,4.5\n530,330,4.0\n530,331,4.5\n530,332,5.0\n530,333,5.5\n530,334,6.0\n530,335,6.5\n530,336,7.0\n530,337,7.5\n530,338,8.0\n530,339,8.5\n530,340,9.0\n530,341,9.5\n530,342,10.0\n530,343,10.5\n530,344,11.0\n530,345,11.5\n530,346,12.0\n530,347,12.5\n530,348,13.0\n530,349,13.5\n530,350,6.0\n530,351,5.5\n530,352,5.0\n530,353,4.5\n530,354,4.0\n530,355,3.5\n530,356,4.0\n530,357,4.5\n530,358,5.0\n530,359,5.5\n530,360,6.0\n530,361,6.5\n530,362,7.0\n530,363,7.5\n530,364,8.0\n530,365,8.5\n530,366,9.0\n530,367,9.5\n530,368,10.0\n530,369,10.5\n530,370,11.0\n530,371,11.5\n530,372,12.0\n530,373,12.5\n530,374,13.0\n530,375,5.5\n530,376,5.0\n530,377,4.5\n530,378,4.0\n530,379,3.5\n530,380,3.0\n530,381,3.5\n530,382,4.0\n530,383,4.5\n530,384,5.0\n530,385,5.5\n530,386,6.0\n530,387,6.5\n530,388,7.0\n530,389,7.5\n530,390,8.0\n530,391,8.5\n530,392,9.0\n530,393,9.5\n530,394,10.0\n530,395,10.5\n530,396,11.0\n530,397,11.5\n530,398,12.0\n530,399,12.5\n530,400,5.0\n530,401,4.5\n530,402,4.0\n530,403,3.5\n530,404,3.0\n530,405,2.5\n530,406,3.0\n530,407,3.5\n530,408,4.0\n530,409,4.5\n530,410,5.0\n530,411,5.5\n530,412,6.0\n530,413,6.5\n530,414,7.0\n530,415,7.5\n530,416,8.0\n530,417,8.5\n530,418,9.0\n530,419,9.5\n530,420,10.0\n530,421,10.5\n530,422,11.0\n530,423,11.5\n530,424,12.0\n530,425,4.5\n530,426,4.0\n530,427,3.5\n530,428,3.0\n530,429,2.5\n530,430,2.0\n530,431,2.5\n530,432,3.0\n530,433,3.5\n530,434,4.0\n530,435,4.5\n530,436,5.0\n530,437,5.5\n530,438,6.0\n530,439,6.5\n530,440,7.0\n530,441,7.5\n530,442,8.0\n530,443,8.5\n530,444,9.0\n530,445,9.5\n530,446,10.0\n530,447,10.5\n530,448,11.0\n530,449,11.5\n530,450,4.0\n530,451,3.5\n530,452,3.0\n530,453,2.5\n530,454,2.0\n530,455,1.5\n530,456,2.0\n530,457,2.5\n530,458,3.0\n530,459,3.5\n530,460,4.0\n530,461,4.5\n530,462,5.0\n530,463,5.5\n530,464,6.0\n530,465,6.5\n530,466,7.0\n530,467,7.5\n530,468,8.0\n530,469,8.5\n530,470,9.0\n530,471,9.5\n530,472,10.0\n530,473,10.5\n530,474,11.0\n530,475,3.5\n530,476,3.0\n530,477,2.5\n530,478,2.0\n530,479,1.5\n530,480,1.0\n530,481,1.5\n530,482,2.0\n530,483,2.5\n530,484,3.0\n530,485,3.5\n530,486,4.0\n530,487,4.5\n530,488,5.0\n530,489,5.5\n530,490,6.0\n530,491,6.5\n530,492,7.0\n530,493,7.5\n530,494,8.0\n530,495,8.5\n530,496,9.0\n530,497,9.5\n530,498,10.0\n530,499,10.5\n530,500,3.0\n530,501,2.5\n530,502,2.0\n530,503,1.5\n530,504,1.0\n530,505,0.5\n530,506,1.0\n530,507,1.5\n530,508,2.0\n530,509,2.5\n530,510,3.0\n530,511,3.5\n530,512,4.0\n530,513,4.5\n530,514,5.0\n530,515,5.5\n530,516,6.0\n530,517,6.5\n530,518,7.0\n530,519,7.5\n530,520,8.0\n530,521,8.5\n530,522,9.0\n530,523,9.5\n530,524,10.0\n530,525,2.5\n530,526,2.0\n530,527,1.5\n530,528,1.0\n530,529,0.5\n530,530,0\n530,531,0.5\n530,532,1.0\n530,533,1.5\n530,534,2.0\n530,535,2.5\n530,536,3.0\n530,537,3.5\n530,538,4.0\n530,539,4.5\n530,540,5.0\n530,541,5.5\n530,542,6.0\n530,543,6.5\n530,544,7.0\n530,545,7.5\n530,546,8.0\n530,547,8.5\n530,548,9.0\n530,549,9.5\n530,550,3.0\n530,551,2.5\n530,552,2.0\n530,553,1.5\n530,554,1.0\n530,555,0.5\n530,556,1.0\n530,557,1.5\n530,558,2.0\n530,559,2.5\n530,560,3.0\n530,561,3.5\n530,562,4.0\n530,563,4.5\n530,564,5.0\n530,565,5.5\n530,566,6.0\n530,567,6.5\n530,568,7.0\n530,569,7.5\n530,570,8.0\n530,571,8.5\n530,572,9.0\n530,573,9.5\n530,574,10.0\n530,575,3.5\n530,576,3.0\n530,577,2.5\n530,578,2.0\n530,579,1.5\n530,580,1.0\n530,581,1.5\n530,582,2.0\n530,583,2.5\n530,584,3.0\n530,585,3.5\n530,586,4.0\n530,587,4.5\n530,588,5.0\n530,589,5.5\n530,590,6.0\n530,591,6.5\n530,592,7.0\n530,593,7.5\n530,594,8.0\n530,595,8.5\n530,596,9.0\n530,597,9.5\n530,598,10.0\n530,599,10.5\n530,600,4.0\n530,601,3.5\n530,602,3.0\n530,603,2.5\n530,604,2.0\n530,605,1.5\n530,606,2.0\n530,607,2.5\n530,608,3.0\n530,609,3.5\n530,610,4.0\n530,611,4.5\n530,612,5.0\n530,613,5.5\n530,614,6.0\n530,615,6.5\n530,616,7.0\n530,617,7.5\n530,618,8.0\n530,619,8.5\n530,620,9.0\n530,621,9.5\n530,622,10.0\n530,623,10.5\n530,624,11.0\n531,0,13.5\n531,1,13.0\n531,2,12.5\n531,3,12.0\n531,4,11.5\n531,5,11.0\n531,6,10.5\n531,7,11.0\n531,8,11.5\n531,9,12.0\n531,10,12.5\n531,11,13.0\n531,12,13.5\n531,13,14.0\n531,14,14.5\n531,15,15.0\n531,16,15.5\n531,17,16.0\n531,18,16.5\n531,19,17.0\n531,20,17.5\n531,21,18.0\n531,22,18.5\n531,23,19.0\n531,24,19.5\n531,25,13.0\n531,26,12.5\n531,27,12.0\n531,28,11.5\n531,29,11.0\n531,30,10.5\n531,31,10.0\n531,32,10.5\n531,33,11.0\n531,34,11.5\n531,35,12.0\n531,36,12.5\n531,37,13.0\n531,38,13.5\n531,39,14.0\n531,40,14.5\n531,41,15.0\n531,42,15.5\n531,43,16.0\n531,44,16.5\n531,45,17.0\n531,46,17.5\n531,47,18.0\n531,48,18.5\n531,49,19.0\n531,50,12.5\n531,51,12.0\n531,52,11.5\n531,53,11.0\n531,54,10.5\n531,55,10.0\n531,56,9.5\n531,57,10.0\n531,58,10.5\n531,59,11.0\n531,60,11.5\n531,61,12.0\n531,62,12.5\n531,63,13.0\n531,64,13.5\n531,65,14.0\n531,66,14.5\n531,67,15.0\n531,68,15.5\n531,69,16.0\n531,70,16.5\n531,71,17.0\n531,72,17.5\n531,73,18.0\n531,74,18.5\n531,75,12.0\n531,76,11.5\n531,77,11.0\n531,78,10.5\n531,79,10.0\n531,80,9.5\n531,81,9.0\n531,82,9.5\n531,83,10.0\n531,84,10.5\n531,85,11.0\n531,86,11.5\n531,87,12.0\n531,88,12.5\n531,89,13.0\n531,90,13.5\n531,91,14.0\n531,92,14.5\n531,93,15.0\n531,94,15.5\n531,95,16.0\n531,96,16.5\n531,97,17.0\n531,98,17.5\n531,99,18.0\n531,100,11.5\n531,101,11.0\n531,102,10.5\n531,103,10.0\n531,104,9.5\n531,105,9.0\n531,106,8.5\n531,107,9.0\n531,108,9.5\n531,109,10.0\n531,110,10.5\n531,111,11.0\n531,112,11.5\n531,113,12.0\n531,114,12.5\n531,115,13.0\n531,116,13.5\n531,117,14.0\n531,118,14.5\n531,119,15.0\n531,120,15.5\n531,121,16.0\n531,122,16.5\n531,123,17.0\n531,124,17.5\n531,125,11.0\n531,126,10.5\n531,127,10.0\n531,128,9.5\n531,129,9.0\n531,130,8.5\n531,131,8.0\n531,132,8.5\n531,133,9.0\n531,134,9.5\n531,135,10.0\n531,136,10.5\n531,137,11.0\n531,138,11.5\n531,139,12.0\n531,140,12.5\n531,141,13.0\n531,142,13.5\n531,143,14.0\n531,144,14.5\n531,145,15.0\n531,146,15.5\n531,147,16.0\n531,148,16.5\n531,149,17.0\n531,150,10.5\n531,151,10.0\n531,152,9.5\n531,153,9.0\n531,154,8.5\n531,155,8.0\n531,156,7.5\n531,157,8.0\n531,158,8.5\n531,159,9.0\n531,160,9.5\n531,161,10.0\n531,162,10.5\n531,163,11.0\n531,164,11.5\n531,165,12.0\n531,166,12.5\n531,167,13.0\n531,168,13.5\n531,169,14.0\n531,170,14.5\n531,171,15.0\n531,172,15.5\n531,173,16.0\n531,174,16.5\n531,175,10.0\n531,176,9.5\n531,177,9.0\n531,178,8.5\n531,179,8.0\n531,180,7.5\n531,181,7.0\n531,182,7.5\n531,183,8.0\n531,184,8.5\n531,185,9.0\n531,186,9.5\n531,187,10.0\n531,188,10.5\n531,189,11.0\n531,190,11.5\n531,191,12.0\n531,192,12.5\n531,193,13.0\n531,194,13.5\n531,195,14.0\n531,196,14.5\n531,197,15.0\n531,198,15.5\n531,199,16.0\n531,200,9.5\n531,201,9.0\n531,202,8.5\n531,203,8.0\n531,204,7.5\n531,205,7.0\n531,206,6.5\n531,207,7.0\n531,208,7.5\n531,209,8.0\n531,210,8.5\n531,211,9.0\n531,212,9.5\n531,213,10.0\n531,214,10.5\n531,215,11.0\n531,216,11.5\n531,217,12.0\n531,218,12.5\n531,219,13.0\n531,220,13.5\n531,221,14.0\n531,222,14.5\n531,223,15.0\n531,224,15.5\n531,225,9.0\n531,226,8.5\n531,227,8.0\n531,228,7.5\n531,229,7.0\n531,230,6.5\n531,231,6.0\n531,232,6.5\n531,233,7.0\n531,234,7.5\n531,235,8.0\n531,236,8.5\n531,237,9.0\n531,238,9.5\n531,239,10.0\n531,240,10.5\n531,241,11.0\n531,242,11.5\n531,243,12.0\n531,244,12.5\n531,245,13.0\n531,246,13.5\n531,247,14.0\n531,248,14.5\n531,249,15.0\n531,250,8.5\n531,251,8.0\n531,252,7.5\n531,253,7.0\n531,254,6.5\n531,255,6.0\n531,256,5.5\n531,257,6.0\n531,258,6.5\n531,259,7.0\n531,260,7.5\n531,261,8.0\n531,262,8.5\n531,263,9.0\n531,264,9.5\n531,265,10.0\n531,266,10.5\n531,267,11.0\n531,268,11.5\n531,269,12.0\n531,270,12.5\n531,271,13.0\n531,272,13.5\n531,273,14.0\n531,274,14.5\n531,275,8.0\n531,276,7.5\n531,277,7.0\n531,278,6.5\n531,279,6.0\n531,280,5.5\n531,281,5.0\n531,282,5.5\n531,283,6.0\n531,284,6.5\n531,285,7.0\n531,286,7.5\n531,287,8.0\n531,288,8.5\n531,289,9.0\n531,290,9.5\n531,291,10.0\n531,292,10.5\n531,293,11.0\n531,294,11.5\n531,295,12.0\n531,296,12.5\n531,297,13.0\n531,298,13.5\n531,299,14.0\n531,300,7.5\n531,301,7.0\n531,302,6.5\n531,303,6.0\n531,304,5.5\n531,305,5.0\n531,306,4.5\n531,307,5.0\n531,308,5.5\n531,309,6.0\n531,310,6.5\n531,311,7.0\n531,312,7.5\n531,313,8.0\n531,314,8.5\n531,315,9.0\n531,316,9.5\n531,317,10.0\n531,318,10.5\n531,319,11.0\n531,320,11.5\n531,321,12.0\n531,322,12.5\n531,323,13.0\n531,324,13.5\n531,325,7.0\n531,326,6.5\n531,327,6.0\n531,328,5.5\n531,329,5.0\n531,330,4.5\n531,331,4.0\n531,332,4.5\n531,333,5.0\n531,334,5.5\n531,335,6.0\n531,336,6.5\n531,337,7.0\n531,338,7.5\n531,339,8.0\n531,340,8.5\n531,341,9.0\n531,342,9.5\n531,343,10.0\n531,344,10.5\n531,345,11.0\n531,346,11.5\n531,347,12.0\n531,348,12.5\n531,349,13.0\n531,350,6.5\n531,351,6.0\n531,352,5.5\n531,353,5.0\n531,354,4.5\n531,355,4.0\n531,356,3.5\n531,357,4.0\n531,358,4.5\n531,359,5.0\n531,360,5.5\n531,361,6.0\n531,362,6.5\n531,363,7.0\n531,364,7.5\n531,365,8.0\n531,366,8.5\n531,367,9.0\n531,368,9.5\n531,369,10.0\n531,370,10.5\n531,371,11.0\n531,372,11.5\n531,373,12.0\n531,374,12.5\n531,375,6.0\n531,376,5.5\n531,377,5.0\n531,378,4.5\n531,379,4.0\n531,380,3.5\n531,381,3.0\n531,382,3.5\n531,383,4.0\n531,384,4.5\n531,385,5.0\n531,386,5.5\n531,387,6.0\n531,388,6.5\n531,389,7.0\n531,390,7.5\n531,391,8.0\n531,392,8.5\n531,393,9.0\n531,394,9.5\n531,395,10.0\n531,396,10.5\n531,397,11.0\n531,398,11.5\n531,399,12.0\n531,400,5.5\n531,401,5.0\n531,402,4.5\n531,403,4.0\n531,404,3.5\n531,405,3.0\n531,406,2.5\n531,407,3.0\n531,408,3.5\n531,409,4.0\n531,410,4.5\n531,411,5.0\n531,412,5.5\n531,413,6.0\n531,414,6.5\n531,415,7.0\n531,416,7.5\n531,417,8.0\n531,418,8.5\n531,419,9.0\n531,420,9.5\n531,421,10.0\n531,422,10.5\n531,423,11.0\n531,424,11.5\n531,425,5.0\n531,426,4.5\n531,427,4.0\n531,428,3.5\n531,429,3.0\n531,430,2.5\n531,431,2.0\n531,432,2.5\n531,433,3.0\n531,434,3.5\n531,435,4.0\n531,436,4.5\n531,437,5.0\n531,438,5.5\n531,439,6.0\n531,440,6.5\n531,441,7.0\n531,442,7.5\n531,443,8.0\n531,444,8.5\n531,445,9.0\n531,446,9.5\n531,447,10.0\n531,448,10.5\n531,449,11.0\n531,450,4.5\n531,451,4.0\n531,452,3.5\n531,453,3.0\n531,454,2.5\n531,455,2.0\n531,456,1.5\n531,457,2.0\n531,458,2.5\n531,459,3.0\n531,460,3.5\n531,461,4.0\n531,462,4.5\n531,463,5.0\n531,464,5.5\n531,465,6.0\n531,466,6.5\n531,467,7.0\n531,468,7.5\n531,469,8.0\n531,470,8.5\n531,471,9.0\n531,472,9.5\n531,473,10.0\n531,474,10.5\n531,475,4.0\n531,476,3.5\n531,477,3.0\n531,478,2.5\n531,479,2.0\n531,480,1.5\n531,481,1.0\n531,482,1.5\n531,483,2.0\n531,484,2.5\n531,485,3.0\n531,486,3.5\n531,487,4.0\n531,488,4.5\n531,489,5.0\n531,490,5.5\n531,491,6.0\n531,492,6.5\n531,493,7.0\n531,494,7.5\n531,495,8.0\n531,496,8.5\n531,497,9.0\n531,498,9.5\n531,499,10.0\n531,500,3.5\n531,501,3.0\n531,502,2.5\n531,503,2.0\n531,504,1.5\n531,505,1.0\n531,506,0.5\n531,507,1.0\n531,508,1.5\n531,509,2.0\n531,510,2.5\n531,511,3.0\n531,512,3.5\n531,513,4.0\n531,514,4.5\n531,515,5.0\n531,516,5.5\n531,517,6.0\n531,518,6.5\n531,519,7.0\n531,520,7.5\n531,521,8.0\n531,522,8.5\n531,523,9.0\n531,524,9.5\n531,525,3.0\n531,526,2.5\n531,527,2.0\n531,528,1.5\n531,529,1.0\n531,530,0.5\n531,531,0\n531,532,0.5\n531,533,1.0\n531,534,1.5\n531,535,2.0\n531,536,2.5\n531,537,3.0\n531,538,3.5\n531,539,4.0\n531,540,4.5\n531,541,5.0\n531,542,5.5\n531,543,6.0\n531,544,6.5\n531,545,7.0\n531,546,7.5\n531,547,8.0\n531,548,8.5\n531,549,9.0\n531,550,3.5\n531,551,3.0\n531,552,2.5\n531,553,2.0\n531,554,1.5\n531,555,1.0\n531,556,0.5\n531,557,1.0\n531,558,1.5\n531,559,2.0\n531,560,2.5\n531,561,3.0\n531,562,3.5\n531,563,4.0\n531,564,4.5\n531,565,5.0\n531,566,5.5\n531,567,6.0\n531,568,6.5\n531,569,7.0\n531,570,7.5\n531,571,8.0\n531,572,8.5\n531,573,9.0\n531,574,9.5\n531,575,4.0\n531,576,3.5\n531,577,3.0\n531,578,2.5\n531,579,2.0\n531,580,1.5\n531,581,1.0\n531,582,1.5\n531,583,2.0\n531,584,2.5\n531,585,3.0\n531,586,3.5\n531,587,4.0\n531,588,4.5\n531,589,5.0\n531,590,5.5\n531,591,6.0\n531,592,6.5\n531,593,7.0\n531,594,7.5\n531,595,8.0\n531,596,8.5\n531,597,9.0\n531,598,9.5\n531,599,10.0\n531,600,4.5\n531,601,4.0\n531,602,3.5\n531,603,3.0\n531,604,2.5\n531,605,2.0\n531,606,1.5\n531,607,2.0\n531,608,2.5\n531,609,3.0\n531,610,3.5\n531,611,4.0\n531,612,4.5\n531,613,5.0\n531,614,5.5\n531,615,6.0\n531,616,6.5\n531,617,7.0\n531,618,7.5\n531,619,8.0\n531,620,8.5\n531,621,9.0\n531,622,9.5\n531,623,10.0\n531,624,10.5\n532,0,14.0\n532,1,13.5\n532,2,13.0\n532,3,12.5\n532,4,12.0\n532,5,11.5\n532,6,11.0\n532,7,10.5\n532,8,11.0\n532,9,11.5\n532,10,12.0\n532,11,12.5\n532,12,13.0\n532,13,13.5\n532,14,14.0\n532,15,14.5\n532,16,15.0\n532,17,15.5\n532,18,16.0\n532,19,16.5\n532,20,17.0\n532,21,17.5\n532,22,18.0\n532,23,18.5\n532,24,19.0\n532,25,13.5\n532,26,13.0\n532,27,12.5\n532,28,12.0\n532,29,11.5\n532,30,11.0\n532,31,10.5\n532,32,10.0\n532,33,10.5\n532,34,11.0\n532,35,11.5\n532,36,12.0\n532,37,12.5\n532,38,13.0\n532,39,13.5\n532,40,14.0\n532,41,14.5\n532,42,15.0\n532,43,15.5\n532,44,16.0\n532,45,16.5\n532,46,17.0\n532,47,17.5\n532,48,18.0\n532,49,18.5\n532,50,13.0\n532,51,12.5\n532,52,12.0\n532,53,11.5\n532,54,11.0\n532,55,10.5\n532,56,10.0\n532,57,9.5\n532,58,10.0\n532,59,10.5\n532,60,11.0\n532,61,11.5\n532,62,12.0\n532,63,12.5\n532,64,13.0\n532,65,13.5\n532,66,14.0\n532,67,14.5\n532,68,15.0\n532,69,15.5\n532,70,16.0\n532,71,16.5\n532,72,17.0\n532,73,17.5\n532,74,18.0\n532,75,12.5\n532,76,12.0\n532,77,11.5\n532,78,11.0\n532,79,10.5\n532,80,10.0\n532,81,9.5\n532,82,9.0\n532,83,9.5\n532,84,10.0\n532,85,10.5\n532,86,11.0\n532,87,11.5\n532,88,12.0\n532,89,12.5\n532,90,13.0\n532,91,13.5\n532,92,14.0\n532,93,14.5\n532,94,15.0\n532,95,15.5\n532,96,16.0\n532,97,16.5\n532,98,17.0\n532,99,17.5\n532,100,12.0\n532,101,11.5\n532,102,11.0\n532,103,10.5\n532,104,10.0\n532,105,9.5\n532,106,9.0\n532,107,8.5\n532,108,9.0\n532,109,9.5\n532,110,10.0\n532,111,10.5\n532,112,11.0\n532,113,11.5\n532,114,12.0\n532,115,12.5\n532,116,13.0\n532,117,13.5\n532,118,14.0\n532,119,14.5\n532,120,15.0\n532,121,15.5\n532,122,16.0\n532,123,16.5\n532,124,17.0\n532,125,11.5\n532,126,11.0\n532,127,10.5\n532,128,10.0\n532,129,9.5\n532,130,9.0\n532,131,8.5\n532,132,8.0\n532,133,8.5\n532,134,9.0\n532,135,9.5\n532,136,10.0\n532,137,10.5\n532,138,11.0\n532,139,11.5\n532,140,12.0\n532,141,12.5\n532,142,13.0\n532,143,13.5\n532,144,14.0\n532,145,14.5\n532,146,15.0\n532,147,15.5\n532,148,16.0\n532,149,16.5\n532,150,11.0\n532,151,10.5\n532,152,10.0\n532,153,9.5\n532,154,9.0\n532,155,8.5\n532,156,8.0\n532,157,7.5\n532,158,8.0\n532,159,8.5\n532,160,9.0\n532,161,9.5\n532,162,10.0\n532,163,10.5\n532,164,11.0\n532,165,11.5\n532,166,12.0\n532,167,12.5\n532,168,13.0\n532,169,13.5\n532,170,14.0\n532,171,14.5\n532,172,15.0\n532,173,15.5\n532,174,16.0\n532,175,10.5\n532,176,10.0\n532,177,9.5\n532,178,9.0\n532,179,8.5\n532,180,8.0\n532,181,7.5\n532,182,7.0\n532,183,7.5\n532,184,8.0\n532,185,8.5\n532,186,9.0\n532,187,9.5\n532,188,10.0\n532,189,10.5\n532,190,11.0\n532,191,11.5\n532,192,12.0\n532,193,12.5\n532,194,13.0\n532,195,13.5\n532,196,14.0\n532,197,14.5\n532,198,15.0\n532,199,15.5\n532,200,10.0\n532,201,9.5\n532,202,9.0\n532,203,8.5\n532,204,8.0\n532,205,7.5\n532,206,7.0\n532,207,6.5\n532,208,7.0\n532,209,7.5\n532,210,8.0\n532,211,8.5\n532,212,9.0\n532,213,9.5\n532,214,10.0\n532,215,10.5\n532,216,11.0\n532,217,11.5\n532,218,12.0\n532,219,12.5\n532,220,13.0\n532,221,13.5\n532,222,14.0\n532,223,14.5\n532,224,15.0\n532,225,9.5\n532,226,9.0\n532,227,8.5\n532,228,8.0\n532,229,7.5\n532,230,7.0\n532,231,6.5\n532,232,6.0\n532,233,6.5\n532,234,7.0\n532,235,7.5\n532,236,8.0\n532,237,8.5\n532,238,9.0\n532,239,9.5\n532,240,10.0\n532,241,10.5\n532,242,11.0\n532,243,11.5\n532,244,12.0\n532,245,12.5\n532,246,13.0\n532,247,13.5\n532,248,14.0\n532,249,14.5\n532,250,9.0\n532,251,8.5\n532,252,8.0\n532,253,7.5\n532,254,7.0\n532,255,6.5\n532,256,6.0\n532,257,5.5\n532,258,6.0\n532,259,6.5\n532,260,7.0\n532,261,7.5\n532,262,8.0\n532,263,8.5\n532,264,9.0\n532,265,9.5\n532,266,10.0\n532,267,10.5\n532,268,11.0\n532,269,11.5\n532,270,12.0\n532,271,12.5\n532,272,13.0\n532,273,13.5\n532,274,14.0\n532,275,8.5\n532,276,8.0\n532,277,7.5\n532,278,7.0\n532,279,6.5\n532,280,6.0\n532,281,5.5\n532,282,5.0\n532,283,5.5\n532,284,6.0\n532,285,6.5\n532,286,7.0\n532,287,7.5\n532,288,8.0\n532,289,8.5\n532,290,9.0\n532,291,9.5\n532,292,10.0\n532,293,10.5\n532,294,11.0\n532,295,11.5\n532,296,12.0\n532,297,12.5\n532,298,13.0\n532,299,13.5\n532,300,8.0\n532,301,7.5\n532,302,7.0\n532,303,6.5\n532,304,6.0\n532,305,5.5\n532,306,5.0\n532,307,4.5\n532,308,5.0\n532,309,5.5\n532,310,6.0\n532,311,6.5\n532,312,7.0\n532,313,7.5\n532,314,8.0\n532,315,8.5\n532,316,9.0\n532,317,9.5\n532,318,10.0\n532,319,10.5\n532,320,11.0\n532,321,11.5\n532,322,12.0\n532,323,12.5\n532,324,13.0\n532,325,7.5\n532,326,7.0\n532,327,6.5\n532,328,6.0\n532,329,5.5\n532,330,5.0\n532,331,4.5\n532,332,4.0\n532,333,4.5\n532,334,5.0\n532,335,5.5\n532,336,6.0\n532,337,6.5\n532,338,7.0\n532,339,7.5\n532,340,8.0\n532,341,8.5\n532,342,9.0\n532,343,9.5\n532,344,10.0\n532,345,10.5\n532,346,11.0\n532,347,11.5\n532,348,12.0\n532,349,12.5\n532,350,7.0\n532,351,6.5\n532,352,6.0\n532,353,5.5\n532,354,5.0\n532,355,4.5\n532,356,4.0\n532,357,3.5\n532,358,4.0\n532,359,4.5\n532,360,5.0\n532,361,5.5\n532,362,6.0\n532,363,6.5\n532,364,7.0\n532,365,7.5\n532,366,8.0\n532,367,8.5\n532,368,9.0\n532,369,9.5\n532,370,10.0\n532,371,10.5\n532,372,11.0\n532,373,11.5\n532,374,12.0\n532,375,6.5\n532,376,6.0\n532,377,5.5\n532,378,5.0\n532,379,4.5\n532,380,4.0\n532,381,3.5\n532,382,3.0\n532,383,3.5\n532,384,4.0\n532,385,4.5\n532,386,5.0\n532,387,5.5\n532,388,6.0\n532,389,6.5\n532,390,7.0\n532,391,7.5\n532,392,8.0\n532,393,8.5\n532,394,9.0\n532,395,9.5\n532,396,10.0\n532,397,10.5\n532,398,11.0\n532,399,11.5\n532,400,6.0\n532,401,5.5\n532,402,5.0\n532,403,4.5\n532,404,4.0\n532,405,3.5\n532,406,3.0\n532,407,2.5\n532,408,3.0\n532,409,3.5\n532,410,4.0\n532,411,4.5\n532,412,5.0\n532,413,5.5\n532,414,6.0\n532,415,6.5\n532,416,7.0\n532,417,7.5\n532,418,8.0\n532,419,8.5\n532,420,9.0\n532,421,9.5\n532,422,10.0\n532,423,10.5\n532,424,11.0\n532,425,5.5\n532,426,5.0\n532,427,4.5\n532,428,4.0\n532,429,3.5\n532,430,3.0\n532,431,2.5\n532,432,2.0\n532,433,2.5\n532,434,3.0\n532,435,3.5\n532,436,4.0\n532,437,4.5\n532,438,5.0\n532,439,5.5\n532,440,6.0\n532,441,6.5\n532,442,7.0\n532,443,7.5\n532,444,8.0\n532,445,8.5\n532,446,9.0\n532,447,9.5\n532,448,10.0\n532,449,10.5\n532,450,5.0\n532,451,4.5\n532,452,4.0\n532,453,3.5\n532,454,3.0\n532,455,2.5\n532,456,2.0\n532,457,1.5\n532,458,2.0\n532,459,2.5\n532,460,3.0\n532,461,3.5\n532,462,4.0\n532,463,4.5\n532,464,5.0\n532,465,5.5\n532,466,6.0\n532,467,6.5\n532,468,7.0\n532,469,7.5\n532,470,8.0\n532,471,8.5\n532,472,9.0\n532,473,9.5\n532,474,10.0\n532,475,4.5\n532,476,4.0\n532,477,3.5\n532,478,3.0\n532,479,2.5\n532,480,2.0\n532,481,1.5\n532,482,1.0\n532,483,1.5\n532,484,2.0\n532,485,2.5\n532,486,3.0\n532,487,3.5\n532,488,4.0\n532,489,4.5\n532,490,5.0\n532,491,5.5\n532,492,6.0\n532,493,6.5\n532,494,7.0\n532,495,7.5\n532,496,8.0\n532,497,8.5\n532,498,9.0\n532,499,9.5\n532,500,4.0\n532,501,3.5\n532,502,3.0\n532,503,2.5\n532,504,2.0\n532,505,1.5\n532,506,1.0\n532,507,0.5\n532,508,1.0\n532,509,1.5\n532,510,2.0\n532,511,2.5\n532,512,3.0\n532,513,3.5\n532,514,4.0\n532,515,4.5\n532,516,5.0\n532,517,5.5\n532,518,6.0\n532,519,6.5\n532,520,7.0\n532,521,7.5\n532,522,8.0\n532,523,8.5\n532,524,9.0\n532,525,3.5\n532,526,3.0\n532,527,2.5\n532,528,2.0\n532,529,1.5\n532,530,1.0\n532,531,0.5\n532,532,0\n532,533,0.5\n532,534,1.0\n532,535,1.5\n532,536,2.0\n532,537,2.5\n532,538,3.0\n532,539,3.5\n532,540,4.0\n532,541,4.5\n532,542,5.0\n532,543,5.5\n532,544,6.0\n532,545,6.5\n532,546,7.0\n532,547,7.5\n532,548,8.0\n532,549,8.5\n532,550,4.0\n532,551,3.5\n532,552,3.0\n532,553,2.5\n532,554,2.0\n532,555,1.5\n532,556,1.0\n532,557,0.5\n532,558,1.0\n532,559,1.5\n532,560,2.0\n532,561,2.5\n532,562,3.0\n532,563,3.5\n532,564,4.0\n532,565,4.5\n532,566,5.0\n532,567,5.5\n532,568,6.0\n532,569,6.5\n532,570,7.0\n532,571,7.5\n532,572,8.0\n532,573,8.5\n532,574,9.0\n532,575,4.5\n532,576,4.0\n532,577,3.5\n532,578,3.0\n532,579,2.5\n532,580,2.0\n532,581,1.5\n532,582,1.0\n532,583,1.5\n532,584,2.0\n532,585,2.5\n532,586,3.0\n532,587,3.5\n532,588,4.0\n532,589,4.5\n532,590,5.0\n532,591,5.5\n532,592,6.0\n532,593,6.5\n532,594,7.0\n532,595,7.5\n532,596,8.0\n532,597,8.5\n532,598,9.0\n532,599,9.5\n532,600,5.0\n532,601,4.5\n532,602,4.0\n532,603,3.5\n532,604,3.0\n532,605,2.5\n532,606,2.0\n532,607,1.5\n532,608,2.0\n532,609,2.5\n532,610,3.0\n532,611,3.5\n532,612,4.0\n532,613,4.5\n532,614,5.0\n532,615,5.5\n532,616,6.0\n532,617,6.5\n532,618,7.0\n532,619,7.5\n532,620,8.0\n532,621,8.5\n532,622,9.0\n532,623,9.5\n532,624,10.0\n533,0,14.5\n533,1,14.0\n533,2,13.5\n533,3,13.0\n533,4,12.5\n533,5,12.0\n533,6,11.5\n533,7,11.0\n533,8,10.5\n533,9,11.0\n533,10,11.5\n533,11,12.0\n533,12,12.5\n533,13,13.0\n533,14,13.5\n533,15,14.0\n533,16,14.5\n533,17,15.0\n533,18,15.5\n533,19,16.0\n533,20,16.5\n533,21,17.0\n533,22,17.5\n533,23,18.0\n533,24,18.5\n533,25,14.0\n533,26,13.5\n533,27,13.0\n533,28,12.5\n533,29,12.0\n533,30,11.5\n533,31,11.0\n533,32,10.5\n533,33,10.0\n533,34,10.5\n533,35,11.0\n533,36,11.5\n533,37,12.0\n533,38,12.5\n533,39,13.0\n533,40,13.5\n533,41,14.0\n533,42,14.5\n533,43,15.0\n533,44,15.5\n533,45,16.0\n533,46,16.5\n533,47,17.0\n533,48,17.5\n533,49,18.0\n533,50,13.5\n533,51,13.0\n533,52,12.5\n533,53,12.0\n533,54,11.5\n533,55,11.0\n533,56,10.5\n533,57,10.0\n533,58,9.5\n533,59,10.0\n533,60,10.5\n533,61,11.0\n533,62,11.5\n533,63,12.0\n533,64,12.5\n533,65,13.0\n533,66,13.5\n533,67,14.0\n533,68,14.5\n533,69,15.0\n533,70,15.5\n533,71,16.0\n533,72,16.5\n533,73,17.0\n533,74,17.5\n533,75,13.0\n533,76,12.5\n533,77,12.0\n533,78,11.5\n533,79,11.0\n533,80,10.5\n533,81,10.0\n533,82,9.5\n533,83,9.0\n533,84,9.5\n533,85,10.0\n533,86,10.5\n533,87,11.0\n533,88,11.5\n533,89,12.0\n533,90,12.5\n533,91,13.0\n533,92,13.5\n533,93,14.0\n533,94,14.5\n533,95,15.0\n533,96,15.5\n533,97,16.0\n533,98,16.5\n533,99,17.0\n533,100,12.5\n533,101,12.0\n533,102,11.5\n533,103,11.0\n533,104,10.5\n533,105,10.0\n533,106,9.5\n533,107,9.0\n533,108,8.5\n533,109,9.0\n533,110,9.5\n533,111,10.0\n533,112,10.5\n533,113,11.0\n533,114,11.5\n533,115,12.0\n533,116,12.5\n533,117,13.0\n533,118,13.5\n533,119,14.0\n533,120,14.5\n533,121,15.0\n533,122,15.5\n533,123,16.0\n533,124,16.5\n533,125,12.0\n533,126,11.5\n533,127,11.0\n533,128,10.5\n533,129,10.0\n533,130,9.5\n533,131,9.0\n533,132,8.5\n533,133,8.0\n533,134,8.5\n533,135,9.0\n533,136,9.5\n533,137,10.0\n533,138,10.5\n533,139,11.0\n533,140,11.5\n533,141,12.0\n533,142,12.5\n533,143,13.0\n533,144,13.5\n533,145,14.0\n533,146,14.5\n533,147,15.0\n533,148,15.5\n533,149,16.0\n533,150,11.5\n533,151,11.0\n533,152,10.5\n533,153,10.0\n533,154,9.5\n533,155,9.0\n533,156,8.5\n533,157,8.0\n533,158,7.5\n533,159,8.0\n533,160,8.5\n533,161,9.0\n533,162,9.5\n533,163,10.0\n533,164,10.5\n533,165,11.0\n533,166,11.5\n533,167,12.0\n533,168,12.5\n533,169,13.0\n533,170,13.5\n533,171,14.0\n533,172,14.5\n533,173,15.0\n533,174,15.5\n533,175,11.0\n533,176,10.5\n533,177,10.0\n533,178,9.5\n533,179,9.0\n533,180,8.5\n533,181,8.0\n533,182,7.5\n533,183,7.0\n533,184,7.5\n533,185,8.0\n533,186,8.5\n533,187,9.0\n533,188,9.5\n533,189,10.0\n533,190,10.5\n533,191,11.0\n533,192,11.5\n533,193,12.0\n533,194,12.5\n533,195,13.0\n533,196,13.5\n533,197,14.0\n533,198,14.5\n533,199,15.0\n533,200,10.5\n533,201,10.0\n533,202,9.5\n533,203,9.0\n533,204,8.5\n533,205,8.0\n533,206,7.5\n533,207,7.0\n533,208,6.5\n533,209,7.0\n533,210,7.5\n533,211,8.0\n533,212,8.5\n533,213,9.0\n533,214,9.5\n533,215,10.0\n533,216,10.5\n533,217,11.0\n533,218,11.5\n533,219,12.0\n533,220,12.5\n533,221,13.0\n533,222,13.5\n533,223,14.0\n533,224,14.5\n533,225,10.0\n533,226,9.5\n533,227,9.0\n533,228,8.5\n533,229,8.0\n533,230,7.5\n533,231,7.0\n533,232,6.5\n533,233,6.0\n533,234,6.5\n533,235,7.0\n533,236,7.5\n533,237,8.0\n533,238,8.5\n533,239,9.0\n533,240,9.5\n533,241,10.0\n533,242,10.5\n533,243,11.0\n533,244,11.5\n533,245,12.0\n533,246,12.5\n533,247,13.0\n533,248,13.5\n533,249,14.0\n533,250,9.5\n533,251,9.0\n533,252,8.5\n533,253,8.0\n533,254,7.5\n533,255,7.0\n533,256,6.5\n533,257,6.0\n533,258,5.5\n533,259,6.0\n533,260,6.5\n533,261,7.0\n533,262,7.5\n533,263,8.0\n533,264,8.5\n533,265,9.0\n533,266,9.5\n533,267,10.0\n533,268,10.5\n533,269,11.0\n533,270,11.5\n533,271,12.0\n533,272,12.5\n533,273,13.0\n533,274,13.5\n533,275,9.0\n533,276,8.5\n533,277,8.0\n533,278,7.5\n533,279,7.0\n533,280,6.5\n533,281,6.0\n533,282,5.5\n533,283,5.0\n533,284,5.5\n533,285,6.0\n533,286,6.5\n533,287,7.0\n533,288,7.5\n533,289,8.0\n533,290,8.5\n533,291,9.0\n533,292,9.5\n533,293,10.0\n533,294,10.5\n533,295,11.0\n533,296,11.5\n533,297,12.0\n533,298,12.5\n533,299,13.0\n533,300,8.5\n533,301,8.0\n533,302,7.5\n533,303,7.0\n533,304,6.5\n533,305,6.0\n533,306,5.5\n533,307,5.0\n533,308,4.5\n533,309,5.0\n533,310,5.5\n533,311,6.0\n533,312,6.5\n533,313,7.0\n533,314,7.5\n533,315,8.0\n533,316,8.5\n533,317,9.0\n533,318,9.5\n533,319,10.0\n533,320,10.5\n533,321,11.0\n533,322,11.5\n533,323,12.0\n533,324,12.5\n533,325,8.0\n533,326,7.5\n533,327,7.0\n533,328,6.5\n533,329,6.0\n533,330,5.5\n533,331,5.0\n533,332,4.5\n533,333,4.0\n533,334,4.5\n533,335,5.0\n533,336,5.5\n533,337,6.0\n533,338,6.5\n533,339,7.0\n533,340,7.5\n533,341,8.0\n533,342,8.5\n533,343,9.0\n533,344,9.5\n533,345,10.0\n533,346,10.5\n533,347,11.0\n533,348,11.5\n533,349,12.0\n533,350,7.5\n533,351,7.0\n533,352,6.5\n533,353,6.0\n533,354,5.5\n533,355,5.0\n533,356,4.5\n533,357,4.0\n533,358,3.5\n533,359,4.0\n533,360,4.5\n533,361,5.0\n533,362,5.5\n533,363,6.0\n533,364,6.5\n533,365,7.0\n533,366,7.5\n533,367,8.0\n533,368,8.5\n533,369,9.0\n533,370,9.5\n533,371,10.0\n533,372,10.5\n533,373,11.0\n533,374,11.5\n533,375,7.0\n533,376,6.5\n533,377,6.0\n533,378,5.5\n533,379,5.0\n533,380,4.5\n533,381,4.0\n533,382,3.5\n533,383,3.0\n533,384,3.5\n533,385,4.0\n533,386,4.5\n533,387,5.0\n533,388,5.5\n533,389,6.0\n533,390,6.5\n533,391,7.0\n533,392,7.5\n533,393,8.0\n533,394,8.5\n533,395,9.0\n533,396,9.5\n533,397,10.0\n533,398,10.5\n533,399,11.0\n533,400,6.5\n533,401,6.0\n533,402,5.5\n533,403,5.0\n533,404,4.5\n533,405,4.0\n533,406,3.5\n533,407,3.0\n533,408,2.5\n533,409,3.0\n533,410,3.5\n533,411,4.0\n533,412,4.5\n533,413,5.0\n533,414,5.5\n533,415,6.0\n533,416,6.5\n533,417,7.0\n533,418,7.5\n533,419,8.0\n533,420,8.5\n533,421,9.0\n533,422,9.5\n533,423,10.0\n533,424,10.5\n533,425,6.0\n533,426,5.5\n533,427,5.0\n533,428,4.5\n533,429,4.0\n533,430,3.5\n533,431,3.0\n533,432,2.5\n533,433,2.0\n533,434,2.5\n533,435,3.0\n533,436,3.5\n533,437,4.0\n533,438,4.5\n533,439,5.0\n533,440,5.5\n533,441,6.0\n533,442,6.5\n533,443,7.0\n533,444,7.5\n533,445,8.0\n533,446,8.5\n533,447,9.0\n533,448,9.5\n533,449,10.0\n533,450,5.5\n533,451,5.0\n533,452,4.5\n533,453,4.0\n533,454,3.5\n533,455,3.0\n533,456,2.5\n533,457,2.0\n533,458,1.5\n533,459,2.0\n533,460,2.5\n533,461,3.0\n533,462,3.5\n533,463,4.0\n533,464,4.5\n533,465,5.0\n533,466,5.5\n533,467,6.0\n533,468,6.5\n533,469,7.0\n533,470,7.5\n533,471,8.0\n533,472,8.5\n533,473,9.0\n533,474,9.5\n533,475,5.0\n533,476,4.5\n533,477,4.0\n533,478,3.5\n533,479,3.0\n533,480,2.5\n533,481,2.0\n533,482,1.5\n533,483,1.0\n533,484,1.5\n533,485,2.0\n533,486,2.5\n533,487,3.0\n533,488,3.5\n533,489,4.0\n533,490,4.5\n533,491,5.0\n533,492,5.5\n533,493,6.0\n533,494,6.5\n533,495,7.0\n533,496,7.5\n533,497,8.0\n533,498,8.5\n533,499,9.0\n533,500,4.5\n533,501,4.0\n533,502,3.5\n533,503,3.0\n533,504,2.5\n533,505,2.0\n533,506,1.5\n533,507,1.0\n533,508,0.5\n533,509,1.0\n533,510,1.5\n533,511,2.0\n533,512,2.5\n533,513,3.0\n533,514,3.5\n533,515,4.0\n533,516,4.5\n533,517,5.0\n533,518,5.5\n533,519,6.0\n533,520,6.5\n533,521,7.0\n533,522,7.5\n533,523,8.0\n533,524,8.5\n533,525,4.0\n533,526,3.5\n533,527,3.0\n533,528,2.5\n533,529,2.0\n533,530,1.5\n533,531,1.0\n533,532,0.5\n533,533,0\n533,534,0.5\n533,535,1.0\n533,536,1.5\n533,537,2.0\n533,538,2.5\n533,539,3.0\n533,540,3.5\n533,541,4.0\n533,542,4.5\n533,543,5.0\n533,544,5.5\n533,545,6.0\n533,546,6.5\n533,547,7.0\n533,548,7.5\n533,549,8.0\n533,550,4.5\n533,551,4.0\n533,552,3.5\n533,553,3.0\n533,554,2.5\n533,555,2.0\n533,556,1.5\n533,557,1.0\n533,558,0.5\n533,559,1.0\n533,560,1.5\n533,561,2.0\n533,562,2.5\n533,563,3.0\n533,564,3.5\n533,565,4.0\n533,566,4.5\n533,567,5.0\n533,568,5.5\n533,569,6.0\n533,570,6.5\n533,571,7.0\n533,572,7.5\n533,573,8.0\n533,574,8.5\n533,575,5.0\n533,576,4.5\n533,577,4.0\n533,578,3.5\n533,579,3.0\n533,580,2.5\n533,581,2.0\n533,582,1.5\n533,583,1.0\n533,584,1.5\n533,585,2.0\n533,586,2.5\n533,587,3.0\n533,588,3.5\n533,589,4.0\n533,590,4.5\n533,591,5.0\n533,592,5.5\n533,593,6.0\n533,594,6.5\n533,595,7.0\n533,596,7.5\n533,597,8.0\n533,598,8.5\n533,599,9.0\n533,600,5.5\n533,601,5.0\n533,602,4.5\n533,603,4.0\n533,604,3.5\n533,605,3.0\n533,606,2.5\n533,607,2.0\n533,608,1.5\n533,609,2.0\n533,610,2.5\n533,611,3.0\n533,612,3.5\n533,613,4.0\n533,614,4.5\n533,615,5.0\n533,616,5.5\n533,617,6.0\n533,618,6.5\n533,619,7.0\n533,620,7.5\n533,621,8.0\n533,622,8.5\n533,623,9.0\n533,624,9.5\n534,0,15.0\n534,1,14.5\n534,2,14.0\n534,3,13.5\n534,4,13.0\n534,5,12.5\n534,6,12.0\n534,7,11.5\n534,8,11.0\n534,9,10.5\n534,10,11.0\n534,11,11.5\n534,12,12.0\n534,13,12.5\n534,14,13.0\n534,15,13.5\n534,16,14.0\n534,17,14.5\n534,18,15.0\n534,19,15.5\n534,20,16.0\n534,21,16.5\n534,22,17.0\n534,23,17.5\n534,24,18.0\n534,25,14.5\n534,26,14.0\n534,27,13.5\n534,28,13.0\n534,29,12.5\n534,30,12.0\n534,31,11.5\n534,32,11.0\n534,33,10.5\n534,34,10.0\n534,35,10.5\n534,36,11.0\n534,37,11.5\n534,38,12.0\n534,39,12.5\n534,40,13.0\n534,41,13.5\n534,42,14.0\n534,43,14.5\n534,44,15.0\n534,45,15.5\n534,46,16.0\n534,47,16.5\n534,48,17.0\n534,49,17.5\n534,50,14.0\n534,51,13.5\n534,52,13.0\n534,53,12.5\n534,54,12.0\n534,55,11.5\n534,56,11.0\n534,57,10.5\n534,58,10.0\n534,59,9.5\n534,60,10.0\n534,61,10.5\n534,62,11.0\n534,63,11.5\n534,64,12.0\n534,65,12.5\n534,66,13.0\n534,67,13.5\n534,68,14.0\n534,69,14.5\n534,70,15.0\n534,71,15.5\n534,72,16.0\n534,73,16.5\n534,74,17.0\n534,75,13.5\n534,76,13.0\n534,77,12.5\n534,78,12.0\n534,79,11.5\n534,80,11.0\n534,81,10.5\n534,82,10.0\n534,83,9.5\n534,84,9.0\n534,85,9.5\n534,86,10.0\n534,87,10.5\n534,88,11.0\n534,89,11.5\n534,90,12.0\n534,91,12.5\n534,92,13.0\n534,93,13.5\n534,94,14.0\n534,95,14.5\n534,96,15.0\n534,97,15.5\n534,98,16.0\n534,99,16.5\n534,100,13.0\n534,101,12.5\n534,102,12.0\n534,103,11.5\n534,104,11.0\n534,105,10.5\n534,106,10.0\n534,107,9.5\n534,108,9.0\n534,109,8.5\n534,110,9.0\n534,111,9.5\n534,112,10.0\n534,113,10.5\n534,114,11.0\n534,115,11.5\n534,116,12.0\n534,117,12.5\n534,118,13.0\n534,119,13.5\n534,120,14.0\n534,121,14.5\n534,122,15.0\n534,123,15.5\n534,124,16.0\n534,125,12.5\n534,126,12.0\n534,127,11.5\n534,128,11.0\n534,129,10.5\n534,130,10.0\n534,131,9.5\n534,132,9.0\n534,133,8.5\n534,134,8.0\n534,135,8.5\n534,136,9.0\n534,137,9.5\n534,138,10.0\n534,139,10.5\n534,140,11.0\n534,141,11.5\n534,142,12.0\n534,143,12.5\n534,144,13.0\n534,145,13.5\n534,146,14.0\n534,147,14.5\n534,148,15.0\n534,149,15.5\n534,150,12.0\n534,151,11.5\n534,152,11.0\n534,153,10.5\n534,154,10.0\n534,155,9.5\n534,156,9.0\n534,157,8.5\n534,158,8.0\n534,159,7.5\n534,160,8.0\n534,161,8.5\n534,162,9.0\n534,163,9.5\n534,164,10.0\n534,165,10.5\n534,166,11.0\n534,167,11.5\n534,168,12.0\n534,169,12.5\n534,170,13.0\n534,171,13.5\n534,172,14.0\n534,173,14.5\n534,174,15.0\n534,175,11.5\n534,176,11.0\n534,177,10.5\n534,178,10.0\n534,179,9.5\n534,180,9.0\n534,181,8.5\n534,182,8.0\n534,183,7.5\n534,184,7.0\n534,185,7.5\n534,186,8.0\n534,187,8.5\n534,188,9.0\n534,189,9.5\n534,190,10.0\n534,191,10.5\n534,192,11.0\n534,193,11.5\n534,194,12.0\n534,195,12.5\n534,196,13.0\n534,197,13.5\n534,198,14.0\n534,199,14.5\n534,200,11.0\n534,201,10.5\n534,202,10.0\n534,203,9.5\n534,204,9.0\n534,205,8.5\n534,206,8.0\n534,207,7.5\n534,208,7.0\n534,209,6.5\n534,210,7.0\n534,211,7.5\n534,212,8.0\n534,213,8.5\n534,214,9.0\n534,215,9.5\n534,216,10.0\n534,217,10.5\n534,218,11.0\n534,219,11.5\n534,220,12.0\n534,221,12.5\n534,222,13.0\n534,223,13.5\n534,224,14.0\n534,225,10.5\n534,226,10.0\n534,227,9.5\n534,228,9.0\n534,229,8.5\n534,230,8.0\n534,231,7.5\n534,232,7.0\n534,233,6.5\n534,234,6.0\n534,235,6.5\n534,236,7.0\n534,237,7.5\n534,238,8.0\n534,239,8.5\n534,240,9.0\n534,241,9.5\n534,242,10.0\n534,243,10.5\n534,244,11.0\n534,245,11.5\n534,246,12.0\n534,247,12.5\n534,248,13.0\n534,249,13.5\n534,250,10.0\n534,251,9.5\n534,252,9.0\n534,253,8.5\n534,254,8.0\n534,255,7.5\n534,256,7.0\n534,257,6.5\n534,258,6.0\n534,259,5.5\n534,260,6.0\n534,261,6.5\n534,262,7.0\n534,263,7.5\n534,264,8.0\n534,265,8.5\n534,266,9.0\n534,267,9.5\n534,268,10.0\n534,269,10.5\n534,270,11.0\n534,271,11.5\n534,272,12.0\n534,273,12.5\n534,274,13.0\n534,275,9.5\n534,276,9.0\n534,277,8.5\n534,278,8.0\n534,279,7.5\n534,280,7.0\n534,281,6.5\n534,282,6.0\n534,283,5.5\n534,284,5.0\n534,285,5.5\n534,286,6.0\n534,287,6.5\n534,288,7.0\n534,289,7.5\n534,290,8.0\n534,291,8.5\n534,292,9.0\n534,293,9.5\n534,294,10.0\n534,295,10.5\n534,296,11.0\n534,297,11.5\n534,298,12.0\n534,299,12.5\n534,300,9.0\n534,301,8.5\n534,302,8.0\n534,303,7.5\n534,304,7.0\n534,305,6.5\n534,306,6.0\n534,307,5.5\n534,308,5.0\n534,309,4.5\n534,310,5.0\n534,311,5.5\n534,312,6.0\n534,313,6.5\n534,314,7.0\n534,315,7.5\n534,316,8.0\n534,317,8.5\n534,318,9.0\n534,319,9.5\n534,320,10.0\n534,321,10.5\n534,322,11.0\n534,323,11.5\n534,324,12.0\n534,325,8.5\n534,326,8.0\n534,327,7.5\n534,328,7.0\n534,329,6.5\n534,330,6.0\n534,331,5.5\n534,332,5.0\n534,333,4.5\n534,334,4.0\n534,335,4.5\n534,336,5.0\n534,337,5.5\n534,338,6.0\n534,339,6.5\n534,340,7.0\n534,341,7.5\n534,342,8.0\n534,343,8.5\n534,344,9.0\n534,345,9.5\n534,346,10.0\n534,347,10.5\n534,348,11.0\n534,349,11.5\n534,350,8.0\n534,351,7.5\n534,352,7.0\n534,353,6.5\n534,354,6.0\n534,355,5.5\n534,356,5.0\n534,357,4.5\n534,358,4.0\n534,359,3.5\n534,360,4.0\n534,361,4.5\n534,362,5.0\n534,363,5.5\n534,364,6.0\n534,365,6.5\n534,366,7.0\n534,367,7.5\n534,368,8.0\n534,369,8.5\n534,370,9.0\n534,371,9.5\n534,372,10.0\n534,373,10.5\n534,374,11.0\n534,375,7.5\n534,376,7.0\n534,377,6.5\n534,378,6.0\n534,379,5.5\n534,380,5.0\n534,381,4.5\n534,382,4.0\n534,383,3.5\n534,384,3.0\n534,385,3.5\n534,386,4.0\n534,387,4.5\n534,388,5.0\n534,389,5.5\n534,390,6.0\n534,391,6.5\n534,392,7.0\n534,393,7.5\n534,394,8.0\n534,395,8.5\n534,396,9.0\n534,397,9.5\n534,398,10.0\n534,399,10.5\n534,400,7.0\n534,401,6.5\n534,402,6.0\n534,403,5.5\n534,404,5.0\n534,405,4.5\n534,406,4.0\n534,407,3.5\n534,408,3.0\n534,409,2.5\n534,410,3.0\n534,411,3.5\n534,412,4.0\n534,413,4.5\n534,414,5.0\n534,415,5.5\n534,416,6.0\n534,417,6.5\n534,418,7.0\n534,419,7.5\n534,420,8.0\n534,421,8.5\n534,422,9.0\n534,423,9.5\n534,424,10.0\n534,425,6.5\n534,426,6.0\n534,427,5.5\n534,428,5.0\n534,429,4.5\n534,430,4.0\n534,431,3.5\n534,432,3.0\n534,433,2.5\n534,434,2.0\n534,435,2.5\n534,436,3.0\n534,437,3.5\n534,438,4.0\n534,439,4.5\n534,440,5.0\n534,441,5.5\n534,442,6.0\n534,443,6.5\n534,444,7.0\n534,445,7.5\n534,446,8.0\n534,447,8.5\n534,448,9.0\n534,449,9.5\n534,450,6.0\n534,451,5.5\n534,452,5.0\n534,453,4.5\n534,454,4.0\n534,455,3.5\n534,456,3.0\n534,457,2.5\n534,458,2.0\n534,459,1.5\n534,460,2.0\n534,461,2.5\n534,462,3.0\n534,463,3.5\n534,464,4.0\n534,465,4.5\n534,466,5.0\n534,467,5.5\n534,468,6.0\n534,469,6.5\n534,470,7.0\n534,471,7.5\n534,472,8.0\n534,473,8.5\n534,474,9.0\n534,475,5.5\n534,476,5.0\n534,477,4.5\n534,478,4.0\n534,479,3.5\n534,480,3.0\n534,481,2.5\n534,482,2.0\n534,483,1.5\n534,484,1.0\n534,485,1.5\n534,486,2.0\n534,487,2.5\n534,488,3.0\n534,489,3.5\n534,490,4.0\n534,491,4.5\n534,492,5.0\n534,493,5.5\n534,494,6.0\n534,495,6.5\n534,496,7.0\n534,497,7.5\n534,498,8.0\n534,499,8.5\n534,500,5.0\n534,501,4.5\n534,502,4.0\n534,503,3.5\n534,504,3.0\n534,505,2.5\n534,506,2.0\n534,507,1.5\n534,508,1.0\n534,509,0.5\n534,510,1.0\n534,511,1.5\n534,512,2.0\n534,513,2.5\n534,514,3.0\n534,515,3.5\n534,516,4.0\n534,517,4.5\n534,518,5.0\n534,519,5.5\n534,520,6.0\n534,521,6.5\n534,522,7.0\n534,523,7.5\n534,524,8.0\n534,525,4.5\n534,526,4.0\n534,527,3.5\n534,528,3.0\n534,529,2.5\n534,530,2.0\n534,531,1.5\n534,532,1.0\n534,533,0.5\n534,534,0\n534,535,0.5\n534,536,1.0\n534,537,1.5\n534,538,2.0\n534,539,2.5\n534,540,3.0\n534,541,3.5\n534,542,4.0\n534,543,4.5\n534,544,5.0\n534,545,5.5\n534,546,6.0\n534,547,6.5\n534,548,7.0\n534,549,7.5\n534,550,5.0\n534,551,4.5\n534,552,4.0\n534,553,3.5\n534,554,3.0\n534,555,2.5\n534,556,2.0\n534,557,1.5\n534,558,1.0\n534,559,0.5\n534,560,1.0\n534,561,1.5\n534,562,2.0\n534,563,2.5\n534,564,3.0\n534,565,3.5\n534,566,4.0\n534,567,4.5\n534,568,5.0\n534,569,5.5\n534,570,6.0\n534,571,6.5\n534,572,7.0\n534,573,7.5\n534,574,8.0\n534,575,5.5\n534,576,5.0\n534,577,4.5\n534,578,4.0\n534,579,3.5\n534,580,3.0\n534,581,2.5\n534,582,2.0\n534,583,1.5\n534,584,1.0\n534,585,1.5\n534,586,2.0\n534,587,2.5\n534,588,3.0\n534,589,3.5\n534,590,4.0\n534,591,4.5\n534,592,5.0\n534,593,5.5\n534,594,6.0\n534,595,6.5\n534,596,7.0\n534,597,7.5\n534,598,8.0\n534,599,8.5\n534,600,6.0\n534,601,5.5\n534,602,5.0\n534,603,4.5\n534,604,4.0\n534,605,3.5\n534,606,3.0\n534,607,2.5\n534,608,2.0\n534,609,1.5\n534,610,2.0\n534,611,2.5\n534,612,3.0\n534,613,3.5\n534,614,4.0\n534,615,4.5\n534,616,5.0\n534,617,5.5\n534,618,6.0\n534,619,6.5\n534,620,7.0\n534,621,7.5\n534,622,8.0\n534,623,8.5\n534,624,9.0\n535,0,15.5\n535,1,15.0\n535,2,14.5\n535,3,14.0\n535,4,13.5\n535,5,13.0\n535,6,12.5\n535,7,12.0\n535,8,11.5\n535,9,11.0\n535,10,10.5\n535,11,11.0\n535,12,11.5\n535,13,12.0\n535,14,12.5\n535,15,13.0\n535,16,13.5\n535,17,14.0\n535,18,14.5\n535,19,15.0\n535,20,15.5\n535,21,16.0\n535,22,16.5\n535,23,17.0\n535,24,17.5\n535,25,15.0\n535,26,14.5\n535,27,14.0\n535,28,13.5\n535,29,13.0\n535,30,12.5\n535,31,12.0\n535,32,11.5\n535,33,11.0\n535,34,10.5\n535,35,10.0\n535,36,10.5\n535,37,11.0\n535,38,11.5\n535,39,12.0\n535,40,12.5\n535,41,13.0\n535,42,13.5\n535,43,14.0\n535,44,14.5\n535,45,15.0\n535,46,15.5\n535,47,16.0\n535,48,16.5\n535,49,17.0\n535,50,14.5\n535,51,14.0\n535,52,13.5\n535,53,13.0\n535,54,12.5\n535,55,12.0\n535,56,11.5\n535,57,11.0\n535,58,10.5\n535,59,10.0\n535,60,9.5\n535,61,10.0\n535,62,10.5\n535,63,11.0\n535,64,11.5\n535,65,12.0\n535,66,12.5\n535,67,13.0\n535,68,13.5\n535,69,14.0\n535,70,14.5\n535,71,15.0\n535,72,15.5\n535,73,16.0\n535,74,16.5\n535,75,14.0\n535,76,13.5\n535,77,13.0\n535,78,12.5\n535,79,12.0\n535,80,11.5\n535,81,11.0\n535,82,10.5\n535,83,10.0\n535,84,9.5\n535,85,9.0\n535,86,9.5\n535,87,10.0\n535,88,10.5\n535,89,11.0\n535,90,11.5\n535,91,12.0\n535,92,12.5\n535,93,13.0\n535,94,13.5\n535,95,14.0\n535,96,14.5\n535,97,15.0\n535,98,15.5\n535,99,16.0\n535,100,13.5\n535,101,13.0\n535,102,12.5\n535,103,12.0\n535,104,11.5\n535,105,11.0\n535,106,10.5\n535,107,10.0\n535,108,9.5\n535,109,9.0\n535,110,8.5\n535,111,9.0\n535,112,9.5\n535,113,10.0\n535,114,10.5\n535,115,11.0\n535,116,11.5\n535,117,12.0\n535,118,12.5\n535,119,13.0\n535,120,13.5\n535,121,14.0\n535,122,14.5\n535,123,15.0\n535,124,15.5\n535,125,13.0\n535,126,12.5\n535,127,12.0\n535,128,11.5\n535,129,11.0\n535,130,10.5\n535,131,10.0\n535,132,9.5\n535,133,9.0\n535,134,8.5\n535,135,8.0\n535,136,8.5\n535,137,9.0\n535,138,9.5\n535,139,10.0\n535,140,10.5\n535,141,11.0\n535,142,11.5\n535,143,12.0\n535,144,12.5\n535,145,13.0\n535,146,13.5\n535,147,14.0\n535,148,14.5\n535,149,15.0\n535,150,12.5\n535,151,12.0\n535,152,11.5\n535,153,11.0\n535,154,10.5\n535,155,10.0\n535,156,9.5\n535,157,9.0\n535,158,8.5\n535,159,8.0\n535,160,7.5\n535,161,8.0\n535,162,8.5\n535,163,9.0\n535,164,9.5\n535,165,10.0\n535,166,10.5\n535,167,11.0\n535,168,11.5\n535,169,12.0\n535,170,12.5\n535,171,13.0\n535,172,13.5\n535,173,14.0\n535,174,14.5\n535,175,12.0\n535,176,11.5\n535,177,11.0\n535,178,10.5\n535,179,10.0\n535,180,9.5\n535,181,9.0\n535,182,8.5\n535,183,8.0\n535,184,7.5\n535,185,7.0\n535,186,7.5\n535,187,8.0\n535,188,8.5\n535,189,9.0\n535,190,9.5\n535,191,10.0\n535,192,10.5\n535,193,11.0\n535,194,11.5\n535,195,12.0\n535,196,12.5\n535,197,13.0\n535,198,13.5\n535,199,14.0\n535,200,11.5\n535,201,11.0\n535,202,10.5\n535,203,10.0\n535,204,9.5\n535,205,9.0\n535,206,8.5\n535,207,8.0\n535,208,7.5\n535,209,7.0\n535,210,6.5\n535,211,7.0\n535,212,7.5\n535,213,8.0\n535,214,8.5\n535,215,9.0\n535,216,9.5\n535,217,10.0\n535,218,10.5\n535,219,11.0\n535,220,11.5\n535,221,12.0\n535,222,12.5\n535,223,13.0\n535,224,13.5\n535,225,11.0\n535,226,10.5\n535,227,10.0\n535,228,9.5\n535,229,9.0\n535,230,8.5\n535,231,8.0\n535,232,7.5\n535,233,7.0\n535,234,6.5\n535,235,6.0\n535,236,6.5\n535,237,7.0\n535,238,7.5\n535,239,8.0\n535,240,8.5\n535,241,9.0\n535,242,9.5\n535,243,10.0\n535,244,10.5\n535,245,11.0\n535,246,11.5\n535,247,12.0\n535,248,12.5\n535,249,13.0\n535,250,10.5\n535,251,10.0\n535,252,9.5\n535,253,9.0\n535,254,8.5\n535,255,8.0\n535,256,7.5\n535,257,7.0\n535,258,6.5\n535,259,6.0\n535,260,5.5\n535,261,6.0\n535,262,6.5\n535,263,7.0\n535,264,7.5\n535,265,8.0\n535,266,8.5\n535,267,9.0\n535,268,9.5\n535,269,10.0\n535,270,10.5\n535,271,11.0\n535,272,11.5\n535,273,12.0\n535,274,12.5\n535,275,10.0\n535,276,9.5\n535,277,9.0\n535,278,8.5\n535,279,8.0\n535,280,7.5\n535,281,7.0\n535,282,6.5\n535,283,6.0\n535,284,5.5\n535,285,5.0\n535,286,5.5\n535,287,6.0\n535,288,6.5\n535,289,7.0\n535,290,7.5\n535,291,8.0\n535,292,8.5\n535,293,9.0\n535,294,9.5\n535,295,10.0\n535,296,10.5\n535,297,11.0\n535,298,11.5\n535,299,12.0\n535,300,9.5\n535,301,9.0\n535,302,8.5\n535,303,8.0\n535,304,7.5\n535,305,7.0\n535,306,6.5\n535,307,6.0\n535,308,5.5\n535,309,5.0\n535,310,4.5\n535,311,5.0\n535,312,5.5\n535,313,6.0\n535,314,6.5\n535,315,7.0\n535,316,7.5\n535,317,8.0\n535,318,8.5\n535,319,9.0\n535,320,9.5\n535,321,10.0\n535,322,10.5\n535,323,11.0\n535,324,11.5\n535,325,9.0\n535,326,8.5\n535,327,8.0\n535,328,7.5\n535,329,7.0\n535,330,6.5\n535,331,6.0\n535,332,5.5\n535,333,5.0\n535,334,4.5\n535,335,4.0\n535,336,4.5\n535,337,5.0\n535,338,5.5\n535,339,6.0\n535,340,6.5\n535,341,7.0\n535,342,7.5\n535,343,8.0\n535,344,8.5\n535,345,9.0\n535,346,9.5\n535,347,10.0\n535,348,10.5\n535,349,11.0\n535,350,8.5\n535,351,8.0\n535,352,7.5\n535,353,7.0\n535,354,6.5\n535,355,6.0\n535,356,5.5\n535,357,5.0\n535,358,4.5\n535,359,4.0\n535,360,3.5\n535,361,4.0\n535,362,4.5\n535,363,5.0\n535,364,5.5\n535,365,6.0\n535,366,6.5\n535,367,7.0\n535,368,7.5\n535,369,8.0\n535,370,8.5\n535,371,9.0\n535,372,9.5\n535,373,10.0\n535,374,10.5\n535,375,8.0\n535,376,7.5\n535,377,7.0\n535,378,6.5\n535,379,6.0\n535,380,5.5\n535,381,5.0\n535,382,4.5\n535,383,4.0\n535,384,3.5\n535,385,3.0\n535,386,3.5\n535,387,4.0\n535,388,4.5\n535,389,5.0\n535,390,5.5\n535,391,6.0\n535,392,6.5\n535,393,7.0\n535,394,7.5\n535,395,8.0\n535,396,8.5\n535,397,9.0\n535,398,9.5\n535,399,10.0\n535,400,7.5\n535,401,7.0\n535,402,6.5\n535,403,6.0\n535,404,5.5\n535,405,5.0\n535,406,4.5\n535,407,4.0\n535,408,3.5\n535,409,3.0\n535,410,2.5\n535,411,3.0\n535,412,3.5\n535,413,4.0\n535,414,4.5\n535,415,5.0\n535,416,5.5\n535,417,6.0\n535,418,6.5\n535,419,7.0\n535,420,7.5\n535,421,8.0\n535,422,8.5\n535,423,9.0\n535,424,9.5\n535,425,7.0\n535,426,6.5\n535,427,6.0\n535,428,5.5\n535,429,5.0\n535,430,4.5\n535,431,4.0\n535,432,3.5\n535,433,3.0\n535,434,2.5\n535,435,2.0\n535,436,2.5\n535,437,3.0\n535,438,3.5\n535,439,4.0\n535,440,4.5\n535,441,5.0\n535,442,5.5\n535,443,6.0\n535,444,6.5\n535,445,7.0\n535,446,7.5\n535,447,8.0\n535,448,8.5\n535,449,9.0\n535,450,6.5\n535,451,6.0\n535,452,5.5\n535,453,5.0\n535,454,4.5\n535,455,4.0\n535,456,3.5\n535,457,3.0\n535,458,2.5\n535,459,2.0\n535,460,1.5\n535,461,2.0\n535,462,2.5\n535,463,3.0\n535,464,3.5\n535,465,4.0\n535,466,4.5\n535,467,5.0\n535,468,5.5\n535,469,6.0\n535,470,6.5\n535,471,7.0\n535,472,7.5\n535,473,8.0\n535,474,8.5\n535,475,6.0\n535,476,5.5\n535,477,5.0\n535,478,4.5\n535,479,4.0\n535,480,3.5\n535,481,3.0\n535,482,2.5\n535,483,2.0\n535,484,1.5\n535,485,1.0\n535,486,1.5\n535,487,2.0\n535,488,2.5\n535,489,3.0\n535,490,3.5\n535,491,4.0\n535,492,4.5\n535,493,5.0\n535,494,5.5\n535,495,6.0\n535,496,6.5\n535,497,7.0\n535,498,7.5\n535,499,8.0\n535,500,5.5\n535,501,5.0\n535,502,4.5\n535,503,4.0\n535,504,3.5\n535,505,3.0\n535,506,2.5\n535,507,2.0\n535,508,1.5\n535,509,1.0\n535,510,0.5\n535,511,1.0\n535,512,1.5\n535,513,2.0\n535,514,2.5\n535,515,3.0\n535,516,3.5\n535,517,4.0\n535,518,4.5\n535,519,5.0\n535,520,5.5\n535,521,6.0\n535,522,6.5\n535,523,7.0\n535,524,7.5\n535,525,5.0\n535,526,4.5\n535,527,4.0\n535,528,3.5\n535,529,3.0\n535,530,2.5\n535,531,2.0\n535,532,1.5\n535,533,1.0\n535,534,0.5\n535,535,0\n535,536,0.5\n535,537,1.0\n535,538,1.5\n535,539,2.0\n535,540,2.5\n535,541,3.0\n535,542,3.5\n535,543,4.0\n535,544,4.5\n535,545,5.0\n535,546,5.5\n535,547,6.0\n535,548,6.5\n535,549,7.0\n535,550,5.5\n535,551,5.0\n535,552,4.5\n535,553,4.0\n535,554,3.5\n535,555,3.0\n535,556,2.5\n535,557,2.0\n535,558,1.5\n535,559,1.0\n535,560,0.5\n535,561,1.0\n535,562,1.5\n535,563,2.0\n535,564,2.5\n535,565,3.0\n535,566,3.5\n535,567,4.0\n535,568,4.5\n535,569,5.0\n535,570,5.5\n535,571,6.0\n535,572,6.5\n535,573,7.0\n535,574,7.5\n535,575,6.0\n535,576,5.5\n535,577,5.0\n535,578,4.5\n535,579,4.0\n535,580,3.5\n535,581,3.0\n535,582,2.5\n535,583,2.0\n535,584,1.5\n535,585,1.0\n535,586,1.5\n535,587,2.0\n535,588,2.5\n535,589,3.0\n535,590,3.5\n535,591,4.0\n535,592,4.5\n535,593,5.0\n535,594,5.5\n535,595,6.0\n535,596,6.5\n535,597,7.0\n535,598,7.5\n535,599,8.0\n535,600,6.5\n535,601,6.0\n535,602,5.5\n535,603,5.0\n535,604,4.5\n535,605,4.0\n535,606,3.5\n535,607,3.0\n535,608,2.5\n535,609,2.0\n535,610,1.5\n535,611,2.0\n535,612,2.5\n535,613,3.0\n535,614,3.5\n535,615,4.0\n535,616,4.5\n535,617,5.0\n535,618,5.5\n535,619,6.0\n535,620,6.5\n535,621,7.0\n535,622,7.5\n535,623,8.0\n535,624,8.5\n536,0,16.0\n536,1,15.5\n536,2,15.0\n536,3,14.5\n536,4,14.0\n536,5,13.5\n536,6,13.0\n536,7,12.5\n536,8,12.0\n536,9,11.5\n536,10,11.0\n536,11,10.5\n536,12,11.0\n536,13,11.5\n536,14,12.0\n536,15,12.5\n536,16,13.0\n536,17,13.5\n536,18,14.0\n536,19,14.5\n536,20,15.0\n536,21,15.5\n536,22,16.0\n536,23,16.5\n536,24,17.0\n536,25,15.5\n536,26,15.0\n536,27,14.5\n536,28,14.0\n536,29,13.5\n536,30,13.0\n536,31,12.5\n536,32,12.0\n536,33,11.5\n536,34,11.0\n536,35,10.5\n536,36,10.0\n536,37,10.5\n536,38,11.0\n536,39,11.5\n536,40,12.0\n536,41,12.5\n536,42,13.0\n536,43,13.5\n536,44,14.0\n536,45,14.5\n536,46,15.0\n536,47,15.5\n536,48,16.0\n536,49,16.5\n536,50,15.0\n536,51,14.5\n536,52,14.0\n536,53,13.5\n536,54,13.0\n536,55,12.5\n536,56,12.0\n536,57,11.5\n536,58,11.0\n536,59,10.5\n536,60,10.0\n536,61,9.5\n536,62,10.0\n536,63,10.5\n536,64,11.0\n536,65,11.5\n536,66,12.0\n536,67,12.5\n536,68,13.0\n536,69,13.5\n536,70,14.0\n536,71,14.5\n536,72,15.0\n536,73,15.5\n536,74,16.0\n536,75,14.5\n536,76,14.0\n536,77,13.5\n536,78,13.0\n536,79,12.5\n536,80,12.0\n536,81,11.5\n536,82,11.0\n536,83,10.5\n536,84,10.0\n536,85,9.5\n536,86,9.0\n536,87,9.5\n536,88,10.0\n536,89,10.5\n536,90,11.0\n536,91,11.5\n536,92,12.0\n536,93,12.5\n536,94,13.0\n536,95,13.5\n536,96,14.0\n536,97,14.5\n536,98,15.0\n536,99,15.5\n536,100,14.0\n536,101,13.5\n536,102,13.0\n536,103,12.5\n536,104,12.0\n536,105,11.5\n536,106,11.0\n536,107,10.5\n536,108,10.0\n536,109,9.5\n536,110,9.0\n536,111,8.5\n536,112,9.0\n536,113,9.5\n536,114,10.0\n536,115,10.5\n536,116,11.0\n536,117,11.5\n536,118,12.0\n536,119,12.5\n536,120,13.0\n536,121,13.5\n536,122,14.0\n536,123,14.5\n536,124,15.0\n536,125,13.5\n536,126,13.0\n536,127,12.5\n536,128,12.0\n536,129,11.5\n536,130,11.0\n536,131,10.5\n536,132,10.0\n536,133,9.5\n536,134,9.0\n536,135,8.5\n536,136,8.0\n536,137,8.5\n536,138,9.0\n536,139,9.5\n536,140,10.0\n536,141,10.5\n536,142,11.0\n536,143,11.5\n536,144,12.0\n536,145,12.5\n536,146,13.0\n536,147,13.5\n536,148,14.0\n536,149,14.5\n536,150,13.0\n536,151,12.5\n536,152,12.0\n536,153,11.5\n536,154,11.0\n536,155,10.5\n536,156,10.0\n536,157,9.5\n536,158,9.0\n536,159,8.5\n536,160,8.0\n536,161,7.5\n536,162,8.0\n536,163,8.5\n536,164,9.0\n536,165,9.5\n536,166,10.0\n536,167,10.5\n536,168,11.0\n536,169,11.5\n536,170,12.0\n536,171,12.5\n536,172,13.0\n536,173,13.5\n536,174,14.0\n536,175,12.5\n536,176,12.0\n536,177,11.5\n536,178,11.0\n536,179,10.5\n536,180,10.0\n536,181,9.5\n536,182,9.0\n536,183,8.5\n536,184,8.0\n536,185,7.5\n536,186,7.0\n536,187,7.5\n536,188,8.0\n536,189,8.5\n536,190,9.0\n536,191,9.5\n536,192,10.0\n536,193,10.5\n536,194,11.0\n536,195,11.5\n536,196,12.0\n536,197,12.5\n536,198,13.0\n536,199,13.5\n536,200,12.0\n536,201,11.5\n536,202,11.0\n536,203,10.5\n536,204,10.0\n536,205,9.5\n536,206,9.0\n536,207,8.5\n536,208,8.0\n536,209,7.5\n536,210,7.0\n536,211,6.5\n536,212,7.0\n536,213,7.5\n536,214,8.0\n536,215,8.5\n536,216,9.0\n536,217,9.5\n536,218,10.0\n536,219,10.5\n536,220,11.0\n536,221,11.5\n536,222,12.0\n536,223,12.5\n536,224,13.0\n536,225,11.5\n536,226,11.0\n536,227,10.5\n536,228,10.0\n536,229,9.5\n536,230,9.0\n536,231,8.5\n536,232,8.0\n536,233,7.5\n536,234,7.0\n536,235,6.5\n536,236,6.0\n536,237,6.5\n536,238,7.0\n536,239,7.5\n536,240,8.0\n536,241,8.5\n536,242,9.0\n536,243,9.5\n536,244,10.0\n536,245,10.5\n536,246,11.0\n536,247,11.5\n536,248,12.0\n536,249,12.5\n536,250,11.0\n536,251,10.5\n536,252,10.0\n536,253,9.5\n536,254,9.0\n536,255,8.5\n536,256,8.0\n536,257,7.5\n536,258,7.0\n536,259,6.5\n536,260,6.0\n536,261,5.5\n536,262,6.0\n536,263,6.5\n536,264,7.0\n536,265,7.5\n536,266,8.0\n536,267,8.5\n536,268,9.0\n536,269,9.5\n536,270,10.0\n536,271,10.5\n536,272,11.0\n536,273,11.5\n536,274,12.0\n536,275,10.5\n536,276,10.0\n536,277,9.5\n536,278,9.0\n536,279,8.5\n536,280,8.0\n536,281,7.5\n536,282,7.0\n536,283,6.5\n536,284,6.0\n536,285,5.5\n536,286,5.0\n536,287,5.5\n536,288,6.0\n536,289,6.5\n536,290,7.0\n536,291,7.5\n536,292,8.0\n536,293,8.5\n536,294,9.0\n536,295,9.5\n536,296,10.0\n536,297,10.5\n536,298,11.0\n536,299,11.5\n536,300,10.0\n536,301,9.5\n536,302,9.0\n536,303,8.5\n536,304,8.0\n536,305,7.5\n536,306,7.0\n536,307,6.5\n536,308,6.0\n536,309,5.5\n536,310,5.0\n536,311,4.5\n536,312,5.0\n536,313,5.5\n536,314,6.0\n536,315,6.5\n536,316,7.0\n536,317,7.5\n536,318,8.0\n536,319,8.5\n536,320,9.0\n536,321,9.5\n536,322,10.0\n536,323,10.5\n536,324,11.0\n536,325,9.5\n536,326,9.0\n536,327,8.5\n536,328,8.0\n536,329,7.5\n536,330,7.0\n536,331,6.5\n536,332,6.0\n536,333,5.5\n536,334,5.0\n536,335,4.5\n536,336,4.0\n536,337,4.5\n536,338,5.0\n536,339,5.5\n536,340,6.0\n536,341,6.5\n536,342,7.0\n536,343,7.5\n536,344,8.0\n536,345,8.5\n536,346,9.0\n536,347,9.5\n536,348,10.0\n536,349,10.5\n536,350,9.0\n536,351,8.5\n536,352,8.0\n536,353,7.5\n536,354,7.0\n536,355,6.5\n536,356,6.0\n536,357,5.5\n536,358,5.0\n536,359,4.5\n536,360,4.0\n536,361,3.5\n536,362,4.0\n536,363,4.5\n536,364,5.0\n536,365,5.5\n536,366,6.0\n536,367,6.5\n536,368,7.0\n536,369,7.5\n536,370,8.0\n536,371,8.5\n536,372,9.0\n536,373,9.5\n536,374,10.0\n536,375,8.5\n536,376,8.0\n536,377,7.5\n536,378,7.0\n536,379,6.5\n536,380,6.0\n536,381,5.5\n536,382,5.0\n536,383,4.5\n536,384,4.0\n536,385,3.5\n536,386,3.0\n536,387,3.5\n536,388,4.0\n536,389,4.5\n536,390,5.0\n536,391,5.5\n536,392,6.0\n536,393,6.5\n536,394,7.0\n536,395,7.5\n536,396,8.0\n536,397,8.5\n536,398,9.0\n536,399,9.5\n536,400,8.0\n536,401,7.5\n536,402,7.0\n536,403,6.5\n536,404,6.0\n536,405,5.5\n536,406,5.0\n536,407,4.5\n536,408,4.0\n536,409,3.5\n536,410,3.0\n536,411,2.5\n536,412,3.0\n536,413,3.5\n536,414,4.0\n536,415,4.5\n536,416,5.0\n536,417,5.5\n536,418,6.0\n536,419,6.5\n536,420,7.0\n536,421,7.5\n536,422,8.0\n536,423,8.5\n536,424,9.0\n536,425,7.5\n536,426,7.0\n536,427,6.5\n536,428,6.0\n536,429,5.5\n536,430,5.0\n536,431,4.5\n536,432,4.0\n536,433,3.5\n536,434,3.0\n536,435,2.5\n536,436,2.0\n536,437,2.5\n536,438,3.0\n536,439,3.5\n536,440,4.0\n536,441,4.5\n536,442,5.0\n536,443,5.5\n536,444,6.0\n536,445,6.5\n536,446,7.0\n536,447,7.5\n536,448,8.0\n536,449,8.5\n536,450,7.0\n536,451,6.5\n536,452,6.0\n536,453,5.5\n536,454,5.0\n536,455,4.5\n536,456,4.0\n536,457,3.5\n536,458,3.0\n536,459,2.5\n536,460,2.0\n536,461,1.5\n536,462,2.0\n536,463,2.5\n536,464,3.0\n536,465,3.5\n536,466,4.0\n536,467,4.5\n536,468,5.0\n536,469,5.5\n536,470,6.0\n536,471,6.5\n536,472,7.0\n536,473,7.5\n536,474,8.0\n536,475,6.5\n536,476,6.0\n536,477,5.5\n536,478,5.0\n536,479,4.5\n536,480,4.0\n536,481,3.5\n536,482,3.0\n536,483,2.5\n536,484,2.0\n536,485,1.5\n536,486,1.0\n536,487,1.5\n536,488,2.0\n536,489,2.5\n536,490,3.0\n536,491,3.5\n536,492,4.0\n536,493,4.5\n536,494,5.0\n536,495,5.5\n536,496,6.0\n536,497,6.5\n536,498,7.0\n536,499,7.5\n536,500,6.0\n536,501,5.5\n536,502,5.0\n536,503,4.5\n536,504,4.0\n536,505,3.5\n536,506,3.0\n536,507,2.5\n536,508,2.0\n536,509,1.5\n536,510,1.0\n536,511,0.5\n536,512,1.0\n536,513,1.5\n536,514,2.0\n536,515,2.5\n536,516,3.0\n536,517,3.5\n536,518,4.0\n536,519,4.5\n536,520,5.0\n536,521,5.5\n536,522,6.0\n536,523,6.5\n536,524,7.0\n536,525,5.5\n536,526,5.0\n536,527,4.5\n536,528,4.0\n536,529,3.5\n536,530,3.0\n536,531,2.5\n536,532,2.0\n536,533,1.5\n536,534,1.0\n536,535,0.5\n536,536,0\n536,537,0.5\n536,538,1.0\n536,539,1.5\n536,540,2.0\n536,541,2.5\n536,542,3.0\n536,543,3.5\n536,544,4.0\n536,545,4.5\n536,546,5.0\n536,547,5.5\n536,548,6.0\n536,549,6.5\n536,550,6.0\n536,551,5.5\n536,552,5.0\n536,553,4.5\n536,554,4.0\n536,555,3.5\n536,556,3.0\n536,557,2.5\n536,558,2.0\n536,559,1.5\n536,560,1.0\n536,561,0.5\n536,562,1.0\n536,563,1.5\n536,564,2.0\n536,565,2.5\n536,566,3.0\n536,567,3.5\n536,568,4.0\n536,569,4.5\n536,570,5.0\n536,571,5.5\n536,572,6.0\n536,573,6.5\n536,574,7.0\n536,575,6.5\n536,576,6.0\n536,577,5.5\n536,578,5.0\n536,579,4.5\n536,580,4.0\n536,581,3.5\n536,582,3.0\n536,583,2.5\n536,584,2.0\n536,585,1.5\n536,586,1.0\n536,587,1.5\n536,588,2.0\n536,589,2.5\n536,590,3.0\n536,591,3.5\n536,592,4.0\n536,593,4.5\n536,594,5.0\n536,595,5.5\n536,596,6.0\n536,597,6.5\n536,598,7.0\n536,599,7.5\n536,600,7.0\n536,601,6.5\n536,602,6.0\n536,603,5.5\n536,604,5.0\n536,605,4.5\n536,606,4.0\n536,607,3.5\n536,608,3.0\n536,609,2.5\n536,610,2.0\n536,611,1.5\n536,612,2.0\n536,613,2.5\n536,614,3.0\n536,615,3.5\n536,616,4.0\n536,617,4.5\n536,618,5.0\n536,619,5.5\n536,620,6.0\n536,621,6.5\n536,622,7.0\n536,623,7.5\n536,624,8.0\n537,0,16.5\n537,1,16.0\n537,2,15.5\n537,3,15.0\n537,4,14.5\n537,5,14.0\n537,6,13.5\n537,7,13.0\n537,8,12.5\n537,9,12.0\n537,10,11.5\n537,11,11.0\n537,12,10.5\n537,13,11.0\n537,14,11.5\n537,15,12.0\n537,16,12.5\n537,17,13.0\n537,18,13.5\n537,19,14.0\n537,20,14.5\n537,21,15.0\n537,22,15.5\n537,23,16.0\n537,24,16.5\n537,25,16.0\n537,26,15.5\n537,27,15.0\n537,28,14.5\n537,29,14.0\n537,30,13.5\n537,31,13.0\n537,32,12.5\n537,33,12.0\n537,34,11.5\n537,35,11.0\n537,36,10.5\n537,37,10.0\n537,38,10.5\n537,39,11.0\n537,40,11.5\n537,41,12.0\n537,42,12.5\n537,43,13.0\n537,44,13.5\n537,45,14.0\n537,46,14.5\n537,47,15.0\n537,48,15.5\n537,49,16.0\n537,50,15.5\n537,51,15.0\n537,52,14.5\n537,53,14.0\n537,54,13.5\n537,55,13.0\n537,56,12.5\n537,57,12.0\n537,58,11.5\n537,59,11.0\n537,60,10.5\n537,61,10.0\n537,62,9.5\n537,63,10.0\n537,64,10.5\n537,65,11.0\n537,66,11.5\n537,67,12.0\n537,68,12.5\n537,69,13.0\n537,70,13.5\n537,71,14.0\n537,72,14.5\n537,73,15.0\n537,74,15.5\n537,75,15.0\n537,76,14.5\n537,77,14.0\n537,78,13.5\n537,79,13.0\n537,80,12.5\n537,81,12.0\n537,82,11.5\n537,83,11.0\n537,84,10.5\n537,85,10.0\n537,86,9.5\n537,87,9.0\n537,88,9.5\n537,89,10.0\n537,90,10.5\n537,91,11.0\n537,92,11.5\n537,93,12.0\n537,94,12.5\n537,95,13.0\n537,96,13.5\n537,97,14.0\n537,98,14.5\n537,99,15.0\n537,100,14.5\n537,101,14.0\n537,102,13.5\n537,103,13.0\n537,104,12.5\n537,105,12.0\n537,106,11.5\n537,107,11.0\n537,108,10.5\n537,109,10.0\n537,110,9.5\n537,111,9.0\n537,112,8.5\n537,113,9.0\n537,114,9.5\n537,115,10.0\n537,116,10.5\n537,117,11.0\n537,118,11.5\n537,119,12.0\n537,120,12.5\n537,121,13.0\n537,122,13.5\n537,123,14.0\n537,124,14.5\n537,125,14.0\n537,126,13.5\n537,127,13.0\n537,128,12.5\n537,129,12.0\n537,130,11.5\n537,131,11.0\n537,132,10.5\n537,133,10.0\n537,134,9.5\n537,135,9.0\n537,136,8.5\n537,137,8.0\n537,138,8.5\n537,139,9.0\n537,140,9.5\n537,141,10.0\n537,142,10.5\n537,143,11.0\n537,144,11.5\n537,145,12.0\n537,146,12.5\n537,147,13.0\n537,148,13.5\n537,149,14.0\n537,150,13.5\n537,151,13.0\n537,152,12.5\n537,153,12.0\n537,154,11.5\n537,155,11.0\n537,156,10.5\n537,157,10.0\n537,158,9.5\n537,159,9.0\n537,160,8.5\n537,161,8.0\n537,162,7.5\n537,163,8.0\n537,164,8.5\n537,165,9.0\n537,166,9.5\n537,167,10.0\n537,168,10.5\n537,169,11.0\n537,170,11.5\n537,171,12.0\n537,172,12.5\n537,173,13.0\n537,174,13.5\n537,175,13.0\n537,176,12.5\n537,177,12.0\n537,178,11.5\n537,179,11.0\n537,180,10.5\n537,181,10.0\n537,182,9.5\n537,183,9.0\n537,184,8.5\n537,185,8.0\n537,186,7.5\n537,187,7.0\n537,188,7.5\n537,189,8.0\n537,190,8.5\n537,191,9.0\n537,192,9.5\n537,193,10.0\n537,194,10.5\n537,195,11.0\n537,196,11.5\n537,197,12.0\n537,198,12.5\n537,199,13.0\n537,200,12.5\n537,201,12.0\n537,202,11.5\n537,203,11.0\n537,204,10.5\n537,205,10.0\n537,206,9.5\n537,207,9.0\n537,208,8.5\n537,209,8.0\n537,210,7.5\n537,211,7.0\n537,212,6.5\n537,213,7.0\n537,214,7.5\n537,215,8.0\n537,216,8.5\n537,217,9.0\n537,218,9.5\n537,219,10.0\n537,220,10.5\n537,221,11.0\n537,222,11.5\n537,223,12.0\n537,224,12.5\n537,225,12.0\n537,226,11.5\n537,227,11.0\n537,228,10.5\n537,229,10.0\n537,230,9.5\n537,231,9.0\n537,232,8.5\n537,233,8.0\n537,234,7.5\n537,235,7.0\n537,236,6.5\n537,237,6.0\n537,238,6.5\n537,239,7.0\n537,240,7.5\n537,241,8.0\n537,242,8.5\n537,243,9.0\n537,244,9.5\n537,245,10.0\n537,246,10.5\n537,247,11.0\n537,248,11.5\n537,249,12.0\n537,250,11.5\n537,251,11.0\n537,252,10.5\n537,253,10.0\n537,254,9.5\n537,255,9.0\n537,256,8.5\n537,257,8.0\n537,258,7.5\n537,259,7.0\n537,260,6.5\n537,261,6.0\n537,262,5.5\n537,263,6.0\n537,264,6.5\n537,265,7.0\n537,266,7.5\n537,267,8.0\n537,268,8.5\n537,269,9.0\n537,270,9.5\n537,271,10.0\n537,272,10.5\n537,273,11.0\n537,274,11.5\n537,275,11.0\n537,276,10.5\n537,277,10.0\n537,278,9.5\n537,279,9.0\n537,280,8.5\n537,281,8.0\n537,282,7.5\n537,283,7.0\n537,284,6.5\n537,285,6.0\n537,286,5.5\n537,287,5.0\n537,288,5.5\n537,289,6.0\n537,290,6.5\n537,291,7.0\n537,292,7.5\n537,293,8.0\n537,294,8.5\n537,295,9.0\n537,296,9.5\n537,297,10.0\n537,298,10.5\n537,299,11.0\n537,300,10.5\n537,301,10.0\n537,302,9.5\n537,303,9.0\n537,304,8.5\n537,305,8.0\n537,306,7.5\n537,307,7.0\n537,308,6.5\n537,309,6.0\n537,310,5.5\n537,311,5.0\n537,312,4.5\n537,313,5.0\n537,314,5.5\n537,315,6.0\n537,316,6.5\n537,317,7.0\n537,318,7.5\n537,319,8.0\n537,320,8.5\n537,321,9.0\n537,322,9.5\n537,323,10.0\n537,324,10.5\n537,325,10.0\n537,326,9.5\n537,327,9.0\n537,328,8.5\n537,329,8.0\n537,330,7.5\n537,331,7.0\n537,332,6.5\n537,333,6.0\n537,334,5.5\n537,335,5.0\n537,336,4.5\n537,337,4.0\n537,338,4.5\n537,339,5.0\n537,340,5.5\n537,341,6.0\n537,342,6.5\n537,343,7.0\n537,344,7.5\n537,345,8.0\n537,346,8.5\n537,347,9.0\n537,348,9.5\n537,349,10.0\n537,350,9.5\n537,351,9.0\n537,352,8.5\n537,353,8.0\n537,354,7.5\n537,355,7.0\n537,356,6.5\n537,357,6.0\n537,358,5.5\n537,359,5.0\n537,360,4.5\n537,361,4.0\n537,362,3.5\n537,363,4.0\n537,364,4.5\n537,365,5.0\n537,366,5.5\n537,367,6.0\n537,368,6.5\n537,369,7.0\n537,370,7.5\n537,371,8.0\n537,372,8.5\n537,373,9.0\n537,374,9.5\n537,375,9.0\n537,376,8.5\n537,377,8.0\n537,378,7.5\n537,379,7.0\n537,380,6.5\n537,381,6.0\n537,382,5.5\n537,383,5.0\n537,384,4.5\n537,385,4.0\n537,386,3.5\n537,387,3.0\n537,388,3.5\n537,389,4.0\n537,390,4.5\n537,391,5.0\n537,392,5.5\n537,393,6.0\n537,394,6.5\n537,395,7.0\n537,396,7.5\n537,397,8.0\n537,398,8.5\n537,399,9.0\n537,400,8.5\n537,401,8.0\n537,402,7.5\n537,403,7.0\n537,404,6.5\n537,405,6.0\n537,406,5.5\n537,407,5.0\n537,408,4.5\n537,409,4.0\n537,410,3.5\n537,411,3.0\n537,412,2.5\n537,413,3.0\n537,414,3.5\n537,415,4.0\n537,416,4.5\n537,417,5.0\n537,418,5.5\n537,419,6.0\n537,420,6.5\n537,421,7.0\n537,422,7.5\n537,423,8.0\n537,424,8.5\n537,425,8.0\n537,426,7.5\n537,427,7.0\n537,428,6.5\n537,429,6.0\n537,430,5.5\n537,431,5.0\n537,432,4.5\n537,433,4.0\n537,434,3.5\n537,435,3.0\n537,436,2.5\n537,437,2.0\n537,438,2.5\n537,439,3.0\n537,440,3.5\n537,441,4.0\n537,442,4.5\n537,443,5.0\n537,444,5.5\n537,445,6.0\n537,446,6.5\n537,447,7.0\n537,448,7.5\n537,449,8.0\n537,450,7.5\n537,451,7.0\n537,452,6.5\n537,453,6.0\n537,454,5.5\n537,455,5.0\n537,456,4.5\n537,457,4.0\n537,458,3.5\n537,459,3.0\n537,460,2.5\n537,461,2.0\n537,462,1.5\n537,463,2.0\n537,464,2.5\n537,465,3.0\n537,466,3.5\n537,467,4.0\n537,468,4.5\n537,469,5.0\n537,470,5.5\n537,471,6.0\n537,472,6.5\n537,473,7.0\n537,474,7.5\n537,475,7.0\n537,476,6.5\n537,477,6.0\n537,478,5.5\n537,479,5.0\n537,480,4.5\n537,481,4.0\n537,482,3.5\n537,483,3.0\n537,484,2.5\n537,485,2.0\n537,486,1.5\n537,487,1.0\n537,488,1.5\n537,489,2.0\n537,490,2.5\n537,491,3.0\n537,492,3.5\n537,493,4.0\n537,494,4.5\n537,495,5.0\n537,496,5.5\n537,497,6.0\n537,498,6.5\n537,499,7.0\n537,500,6.5\n537,501,6.0\n537,502,5.5\n537,503,5.0\n537,504,4.5\n537,505,4.0\n537,506,3.5\n537,507,3.0\n537,508,2.5\n537,509,2.0\n537,510,1.5\n537,511,1.0\n537,512,0.5\n537,513,1.0\n537,514,1.5\n537,515,2.0\n537,516,2.5\n537,517,3.0\n537,518,3.5\n537,519,4.0\n537,520,4.5\n537,521,5.0\n537,522,5.5\n537,523,6.0\n537,524,6.5\n537,525,6.0\n537,526,5.5\n537,527,5.0\n537,528,4.5\n537,529,4.0\n537,530,3.5\n537,531,3.0\n537,532,2.5\n537,533,2.0\n537,534,1.5\n537,535,1.0\n537,536,0.5\n537,537,0\n537,538,0.5\n537,539,1.0\n537,540,1.5\n537,541,2.0\n537,542,2.5\n537,543,3.0\n537,544,3.5\n537,545,4.0\n537,546,4.5\n537,547,5.0\n537,548,5.5\n537,549,6.0\n537,550,6.5\n537,551,6.0\n537,552,5.5\n537,553,5.0\n537,554,4.5\n537,555,4.0\n537,556,3.5\n537,557,3.0\n537,558,2.5\n537,559,2.0\n537,560,1.5\n537,561,1.0\n537,562,0.5\n537,563,1.0\n537,564,1.5\n537,565,2.0\n537,566,2.5\n537,567,3.0\n537,568,3.5\n537,569,4.0\n537,570,4.5\n537,571,5.0\n537,572,5.5\n537,573,6.0\n537,574,6.5\n537,575,7.0\n537,576,6.5\n537,577,6.0\n537,578,5.5\n537,579,5.0\n537,580,4.5\n537,581,4.0\n537,582,3.5\n537,583,3.0\n537,584,2.5\n537,585,2.0\n537,586,1.5\n537,587,1.0\n537,588,1.5\n537,589,2.0\n537,590,2.5\n537,591,3.0\n537,592,3.5\n537,593,4.0\n537,594,4.5\n537,595,5.0\n537,596,5.5\n537,597,6.0\n537,598,6.5\n537,599,7.0\n537,600,7.5\n537,601,7.0\n537,602,6.5\n537,603,6.0\n537,604,5.5\n537,605,5.0\n537,606,4.5\n537,607,4.0\n537,608,3.5\n537,609,3.0\n537,610,2.5\n537,611,2.0\n537,612,1.5\n537,613,2.0\n537,614,2.5\n537,615,3.0\n537,616,3.5\n537,617,4.0\n537,618,4.5\n537,619,5.0\n537,620,5.5\n537,621,6.0\n537,622,6.5\n537,623,7.0\n537,624,7.5\n538,0,17.0\n538,1,16.5\n538,2,16.0\n538,3,15.5\n538,4,15.0\n538,5,14.5\n538,6,14.0\n538,7,13.5\n538,8,13.0\n538,9,12.5\n538,10,12.0\n538,11,11.5\n538,12,11.0\n538,13,10.5\n538,14,11.0\n538,15,11.5\n538,16,12.0\n538,17,12.5\n538,18,13.0\n538,19,13.5\n538,20,14.0\n538,21,14.5\n538,22,15.0\n538,23,15.5\n538,24,16.0\n538,25,16.5\n538,26,16.0\n538,27,15.5\n538,28,15.0\n538,29,14.5\n538,30,14.0\n538,31,13.5\n538,32,13.0\n538,33,12.5\n538,34,12.0\n538,35,11.5\n538,36,11.0\n538,37,10.5\n538,38,10.0\n538,39,10.5\n538,40,11.0\n538,41,11.5\n538,42,12.0\n538,43,12.5\n538,44,13.0\n538,45,13.5\n538,46,14.0\n538,47,14.5\n538,48,15.0\n538,49,15.5\n538,50,16.0\n538,51,15.5\n538,52,15.0\n538,53,14.5\n538,54,14.0\n538,55,13.5\n538,56,13.0\n538,57,12.5\n538,58,12.0\n538,59,11.5\n538,60,11.0\n538,61,10.5\n538,62,10.0\n538,63,9.5\n538,64,10.0\n538,65,10.5\n538,66,11.0\n538,67,11.5\n538,68,12.0\n538,69,12.5\n538,70,13.0\n538,71,13.5\n538,72,14.0\n538,73,14.5\n538,74,15.0\n538,75,15.5\n538,76,15.0\n538,77,14.5\n538,78,14.0\n538,79,13.5\n538,80,13.0\n538,81,12.5\n538,82,12.0\n538,83,11.5\n538,84,11.0\n538,85,10.5\n538,86,10.0\n538,87,9.5\n538,88,9.0\n538,89,9.5\n538,90,10.0\n538,91,10.5\n538,92,11.0\n538,93,11.5\n538,94,12.0\n538,95,12.5\n538,96,13.0\n538,97,13.5\n538,98,14.0\n538,99,14.5\n538,100,15.0\n538,101,14.5\n538,102,14.0\n538,103,13.5\n538,104,13.0\n538,105,12.5\n538,106,12.0\n538,107,11.5\n538,108,11.0\n538,109,10.5\n538,110,10.0\n538,111,9.5\n538,112,9.0\n538,113,8.5\n538,114,9.0\n538,115,9.5\n538,116,10.0\n538,117,10.5\n538,118,11.0\n538,119,11.5\n538,120,12.0\n538,121,12.5\n538,122,13.0\n538,123,13.5\n538,124,14.0\n538,125,14.5\n538,126,14.0\n538,127,13.5\n538,128,13.0\n538,129,12.5\n538,130,12.0\n538,131,11.5\n538,132,11.0\n538,133,10.5\n538,134,10.0\n538,135,9.5\n538,136,9.0\n538,137,8.5\n538,138,8.0\n538,139,8.5\n538,140,9.0\n538,141,9.5\n538,142,10.0\n538,143,10.5\n538,144,11.0\n538,145,11.5\n538,146,12.0\n538,147,12.5\n538,148,13.0\n538,149,13.5\n538,150,14.0\n538,151,13.5\n538,152,13.0\n538,153,12.5\n538,154,12.0\n538,155,11.5\n538,156,11.0\n538,157,10.5\n538,158,10.0\n538,159,9.5\n538,160,9.0\n538,161,8.5\n538,162,8.0\n538,163,7.5\n538,164,8.0\n538,165,8.5\n538,166,9.0\n538,167,9.5\n538,168,10.0\n538,169,10.5\n538,170,11.0\n538,171,11.5\n538,172,12.0\n538,173,12.5\n538,174,13.0\n538,175,13.5\n538,176,13.0\n538,177,12.5\n538,178,12.0\n538,179,11.5\n538,180,11.0\n538,181,10.5\n538,182,10.0\n538,183,9.5\n538,184,9.0\n538,185,8.5\n538,186,8.0\n538,187,7.5\n538,188,7.0\n538,189,7.5\n538,190,8.0\n538,191,8.5\n538,192,9.0\n538,193,9.5\n538,194,10.0\n538,195,10.5\n538,196,11.0\n538,197,11.5\n538,198,12.0\n538,199,12.5\n538,200,13.0\n538,201,12.5\n538,202,12.0\n538,203,11.5\n538,204,11.0\n538,205,10.5\n538,206,10.0\n538,207,9.5\n538,208,9.0\n538,209,8.5\n538,210,8.0\n538,211,7.5\n538,212,7.0\n538,213,6.5\n538,214,7.0\n538,215,7.5\n538,216,8.0\n538,217,8.5\n538,218,9.0\n538,219,9.5\n538,220,10.0\n538,221,10.5\n538,222,11.0\n538,223,11.5\n538,224,12.0\n538,225,12.5\n538,226,12.0\n538,227,11.5\n538,228,11.0\n538,229,10.5\n538,230,10.0\n538,231,9.5\n538,232,9.0\n538,233,8.5\n538,234,8.0\n538,235,7.5\n538,236,7.0\n538,237,6.5\n538,238,6.0\n538,239,6.5\n538,240,7.0\n538,241,7.5\n538,242,8.0\n538,243,8.5\n538,244,9.0\n538,245,9.5\n538,246,10.0\n538,247,10.5\n538,248,11.0\n538,249,11.5\n538,250,12.0\n538,251,11.5\n538,252,11.0\n538,253,10.5\n538,254,10.0\n538,255,9.5\n538,256,9.0\n538,257,8.5\n538,258,8.0\n538,259,7.5\n538,260,7.0\n538,261,6.5\n538,262,6.0\n538,263,5.5\n538,264,6.0\n538,265,6.5\n538,266,7.0\n538,267,7.5\n538,268,8.0\n538,269,8.5\n538,270,9.0\n538,271,9.5\n538,272,10.0\n538,273,10.5\n538,274,11.0\n538,275,11.5\n538,276,11.0\n538,277,10.5\n538,278,10.0\n538,279,9.5\n538,280,9.0\n538,281,8.5\n538,282,8.0\n538,283,7.5\n538,284,7.0\n538,285,6.5\n538,286,6.0\n538,287,5.5\n538,288,5.0\n538,289,5.5\n538,290,6.0\n538,291,6.5\n538,292,7.0\n538,293,7.5\n538,294,8.0\n538,295,8.5\n538,296,9.0\n538,297,9.5\n538,298,10.0\n538,299,10.5\n538,300,11.0\n538,301,10.5\n538,302,10.0\n538,303,9.5\n538,304,9.0\n538,305,8.5\n538,306,8.0\n538,307,7.5\n538,308,7.0\n538,309,6.5\n538,310,6.0\n538,311,5.5\n538,312,5.0\n538,313,4.5\n538,314,5.0\n538,315,5.5\n538,316,6.0\n538,317,6.5\n538,318,7.0\n538,319,7.5\n538,320,8.0\n538,321,8.5\n538,322,9.0\n538,323,9.5\n538,324,10.0\n538,325,10.5\n538,326,10.0\n538,327,9.5\n538,328,9.0\n538,329,8.5\n538,330,8.0\n538,331,7.5\n538,332,7.0\n538,333,6.5\n538,334,6.0\n538,335,5.5\n538,336,5.0\n538,337,4.5\n538,338,4.0\n538,339,4.5\n538,340,5.0\n538,341,5.5\n538,342,6.0\n538,343,6.5\n538,344,7.0\n538,345,7.5\n538,346,8.0\n538,347,8.5\n538,348,9.0\n538,349,9.5\n538,350,10.0\n538,351,9.5\n538,352,9.0\n538,353,8.5\n538,354,8.0\n538,355,7.5\n538,356,7.0\n538,357,6.5\n538,358,6.0\n538,359,5.5\n538,360,5.0\n538,361,4.5\n538,362,4.0\n538,363,3.5\n538,364,4.0\n538,365,4.5\n538,366,5.0\n538,367,5.5\n538,368,6.0\n538,369,6.5\n538,370,7.0\n538,371,7.5\n538,372,8.0\n538,373,8.5\n538,374,9.0\n538,375,9.5\n538,376,9.0\n538,377,8.5\n538,378,8.0\n538,379,7.5\n538,380,7.0\n538,381,6.5\n538,382,6.0\n538,383,5.5\n538,384,5.0\n538,385,4.5\n538,386,4.0\n538,387,3.5\n538,388,3.0\n538,389,3.5\n538,390,4.0\n538,391,4.5\n538,392,5.0\n538,393,5.5\n538,394,6.0\n538,395,6.5\n538,396,7.0\n538,397,7.5\n538,398,8.0\n538,399,8.5\n538,400,9.0\n538,401,8.5\n538,402,8.0\n538,403,7.5\n538,404,7.0\n538,405,6.5\n538,406,6.0\n538,407,5.5\n538,408,5.0\n538,409,4.5\n538,410,4.0\n538,411,3.5\n538,412,3.0\n538,413,2.5\n538,414,3.0\n538,415,3.5\n538,416,4.0\n538,417,4.5\n538,418,5.0\n538,419,5.5\n538,420,6.0\n538,421,6.5\n538,422,7.0\n538,423,7.5\n538,424,8.0\n538,425,8.5\n538,426,8.0\n538,427,7.5\n538,428,7.0\n538,429,6.5\n538,430,6.0\n538,431,5.5\n538,432,5.0\n538,433,4.5\n538,434,4.0\n538,435,3.5\n538,436,3.0\n538,437,2.5\n538,438,2.0\n538,439,2.5\n538,440,3.0\n538,441,3.5\n538,442,4.0\n538,443,4.5\n538,444,5.0\n538,445,5.5\n538,446,6.0\n538,447,6.5\n538,448,7.0\n538,449,7.5\n538,450,8.0\n538,451,7.5\n538,452,7.0\n538,453,6.5\n538,454,6.0\n538,455,5.5\n538,456,5.0\n538,457,4.5\n538,458,4.0\n538,459,3.5\n538,460,3.0\n538,461,2.5\n538,462,2.0\n538,463,1.5\n538,464,2.0\n538,465,2.5\n538,466,3.0\n538,467,3.5\n538,468,4.0\n538,469,4.5\n538,470,5.0\n538,471,5.5\n538,472,6.0\n538,473,6.5\n538,474,7.0\n538,475,7.5\n538,476,7.0\n538,477,6.5\n538,478,6.0\n538,479,5.5\n538,480,5.0\n538,481,4.5\n538,482,4.0\n538,483,3.5\n538,484,3.0\n538,485,2.5\n538,486,2.0\n538,487,1.5\n538,488,1.0\n538,489,1.5\n538,490,2.0\n538,491,2.5\n538,492,3.0\n538,493,3.5\n538,494,4.0\n538,495,4.5\n538,496,5.0\n538,497,5.5\n538,498,6.0\n538,499,6.5\n538,500,7.0\n538,501,6.5\n538,502,6.0\n538,503,5.5\n538,504,5.0\n538,505,4.5\n538,506,4.0\n538,507,3.5\n538,508,3.0\n538,509,2.5\n538,510,2.0\n538,511,1.5\n538,512,1.0\n538,513,0.5\n538,514,1.0\n538,515,1.5\n538,516,2.0\n538,517,2.5\n538,518,3.0\n538,519,3.5\n538,520,4.0\n538,521,4.5\n538,522,5.0\n538,523,5.5\n538,524,6.0\n538,525,6.5\n538,526,6.0\n538,527,5.5\n538,528,5.0\n538,529,4.5\n538,530,4.0\n538,531,3.5\n538,532,3.0\n538,533,2.5\n538,534,2.0\n538,535,1.5\n538,536,1.0\n538,537,0.5\n538,538,0\n538,539,0.5\n538,540,1.0\n538,541,1.5\n538,542,2.0\n538,543,2.5\n538,544,3.0\n538,545,3.5\n538,546,4.0\n538,547,4.5\n538,548,5.0\n538,549,5.5\n538,550,7.0\n538,551,6.5\n538,552,6.0\n538,553,5.5\n538,554,5.0\n538,555,4.5\n538,556,4.0\n538,557,3.5\n538,558,3.0\n538,559,2.5\n538,560,2.0\n538,561,1.5\n538,562,1.0\n538,563,0.5\n538,564,1.0\n538,565,1.5\n538,566,2.0\n538,567,2.5\n538,568,3.0\n538,569,3.5\n538,570,4.0\n538,571,4.5\n538,572,5.0\n538,573,5.5\n538,574,6.0\n538,575,7.5\n538,576,7.0\n538,577,6.5\n538,578,6.0\n538,579,5.5\n538,580,5.0\n538,581,4.5\n538,582,4.0\n538,583,3.5\n538,584,3.0\n538,585,2.5\n538,586,2.0\n538,587,1.5\n538,588,1.0\n538,589,1.5\n538,590,2.0\n538,591,2.5\n538,592,3.0\n538,593,3.5\n538,594,4.0\n538,595,4.5\n538,596,5.0\n538,597,5.5\n538,598,6.0\n538,599,6.5\n538,600,8.0\n538,601,7.5\n538,602,7.0\n538,603,6.5\n538,604,6.0\n538,605,5.5\n538,606,5.0\n538,607,4.5\n538,608,4.0\n538,609,3.5\n538,610,3.0\n538,611,2.5\n538,612,2.0\n538,613,1.5\n538,614,2.0\n538,615,2.5\n538,616,3.0\n538,617,3.5\n538,618,4.0\n538,619,4.5\n538,620,5.0\n538,621,5.5\n538,622,6.0\n538,623,6.5\n538,624,7.0\n539,0,17.5\n539,1,17.0\n539,2,16.5\n539,3,16.0\n539,4,15.5\n539,5,15.0\n539,6,14.5\n539,7,14.0\n539,8,13.5\n539,9,13.0\n539,10,12.5\n539,11,12.0\n539,12,11.5\n539,13,11.0\n539,14,10.5\n539,15,11.0\n539,16,11.5\n539,17,12.0\n539,18,12.5\n539,19,13.0\n539,20,13.5\n539,21,14.0\n539,22,14.5\n539,23,15.0\n539,24,15.5\n539,25,17.0\n539,26,16.5\n539,27,16.0\n539,28,15.5\n539,29,15.0\n539,30,14.5\n539,31,14.0\n539,32,13.5\n539,33,13.0\n539,34,12.5\n539,35,12.0\n539,36,11.5\n539,37,11.0\n539,38,10.5\n539,39,10.0\n539,40,10.5\n539,41,11.0\n539,42,11.5\n539,43,12.0\n539,44,12.5\n539,45,13.0\n539,46,13.5\n539,47,14.0\n539,48,14.5\n539,49,15.0\n539,50,16.5\n539,51,16.0\n539,52,15.5\n539,53,15.0\n539,54,14.5\n539,55,14.0\n539,56,13.5\n539,57,13.0\n539,58,12.5\n539,59,12.0\n539,60,11.5\n539,61,11.0\n539,62,10.5\n539,63,10.0\n539,64,9.5\n539,65,10.0\n539,66,10.5\n539,67,11.0\n539,68,11.5\n539,69,12.0\n539,70,12.5\n539,71,13.0\n539,72,13.5\n539,73,14.0\n539,74,14.5\n539,75,16.0\n539,76,15.5\n539,77,15.0\n539,78,14.5\n539,79,14.0\n539,80,13.5\n539,81,13.0\n539,82,12.5\n539,83,12.0\n539,84,11.5\n539,85,11.0\n539,86,10.5\n539,87,10.0\n539,88,9.5\n539,89,9.0\n539,90,9.5\n539,91,10.0\n539,92,10.5\n539,93,11.0\n539,94,11.5\n539,95,12.0\n539,96,12.5\n539,97,13.0\n539,98,13.5\n539,99,14.0\n539,100,15.5\n539,101,15.0\n539,102,14.5\n539,103,14.0\n539,104,13.5\n539,105,13.0\n539,106,12.5\n539,107,12.0\n539,108,11.5\n539,109,11.0\n539,110,10.5\n539,111,10.0\n539,112,9.5\n539,113,9.0\n539,114,8.5\n539,115,9.0\n539,116,9.5\n539,117,10.0\n539,118,10.5\n539,119,11.0\n539,120,11.5\n539,121,12.0\n539,122,12.5\n539,123,13.0\n539,124,13.5\n539,125,15.0\n539,126,14.5\n539,127,14.0\n539,128,13.5\n539,129,13.0\n539,130,12.5\n539,131,12.0\n539,132,11.5\n539,133,11.0\n539,134,10.5\n539,135,10.0\n539,136,9.5\n539,137,9.0\n539,138,8.5\n539,139,8.0\n539,140,8.5\n539,141,9.0\n539,142,9.5\n539,143,10.0\n539,144,10.5\n539,145,11.0\n539,146,11.5\n539,147,12.0\n539,148,12.5\n539,149,13.0\n539,150,14.5\n539,151,14.0\n539,152,13.5\n539,153,13.0\n539,154,12.5\n539,155,12.0\n539,156,11.5\n539,157,11.0\n539,158,10.5\n539,159,10.0\n539,160,9.5\n539,161,9.0\n539,162,8.5\n539,163,8.0\n539,164,7.5\n539,165,8.0\n539,166,8.5\n539,167,9.0\n539,168,9.5\n539,169,10.0\n539,170,10.5\n539,171,11.0\n539,172,11.5\n539,173,12.0\n539,174,12.5\n539,175,14.0\n539,176,13.5\n539,177,13.0\n539,178,12.5\n539,179,12.0\n539,180,11.5\n539,181,11.0\n539,182,10.5\n539,183,10.0\n539,184,9.5\n539,185,9.0\n539,186,8.5\n539,187,8.0\n539,188,7.5\n539,189,7.0\n539,190,7.5\n539,191,8.0\n539,192,8.5\n539,193,9.0\n539,194,9.5\n539,195,10.0\n539,196,10.5\n539,197,11.0\n539,198,11.5\n539,199,12.0\n539,200,13.5\n539,201,13.0\n539,202,12.5\n539,203,12.0\n539,204,11.5\n539,205,11.0\n539,206,10.5\n539,207,10.0\n539,208,9.5\n539,209,9.0\n539,210,8.5\n539,211,8.0\n539,212,7.5\n539,213,7.0\n539,214,6.5\n539,215,7.0\n539,216,7.5\n539,217,8.0\n539,218,8.5\n539,219,9.0\n539,220,9.5\n539,221,10.0\n539,222,10.5\n539,223,11.0\n539,224,11.5\n539,225,13.0\n539,226,12.5\n539,227,12.0\n539,228,11.5\n539,229,11.0\n539,230,10.5\n539,231,10.0\n539,232,9.5\n539,233,9.0\n539,234,8.5\n539,235,8.0\n539,236,7.5\n539,237,7.0\n539,238,6.5\n539,239,6.0\n539,240,6.5\n539,241,7.0\n539,242,7.5\n539,243,8.0\n539,244,8.5\n539,245,9.0\n539,246,9.5\n539,247,10.0\n539,248,10.5\n539,249,11.0\n539,250,12.5\n539,251,12.0\n539,252,11.5\n539,253,11.0\n539,254,10.5\n539,255,10.0\n539,256,9.5\n539,257,9.0\n539,258,8.5\n539,259,8.0\n539,260,7.5\n539,261,7.0\n539,262,6.5\n539,263,6.0\n539,264,5.5\n539,265,6.0\n539,266,6.5\n539,267,7.0\n539,268,7.5\n539,269,8.0\n539,270,8.5\n539,271,9.0\n539,272,9.5\n539,273,10.0\n539,274,10.5\n539,275,12.0\n539,276,11.5\n539,277,11.0\n539,278,10.5\n539,279,10.0\n539,280,9.5\n539,281,9.0\n539,282,8.5\n539,283,8.0\n539,284,7.5\n539,285,7.0\n539,286,6.5\n539,287,6.0\n539,288,5.5\n539,289,5.0\n539,290,5.5\n539,291,6.0\n539,292,6.5\n539,293,7.0\n539,294,7.5\n539,295,8.0\n539,296,8.5\n539,297,9.0\n539,298,9.5\n539,299,10.0\n539,300,11.5\n539,301,11.0\n539,302,10.5\n539,303,10.0\n539,304,9.5\n539,305,9.0\n539,306,8.5\n539,307,8.0\n539,308,7.5\n539,309,7.0\n539,310,6.5\n539,311,6.0\n539,312,5.5\n539,313,5.0\n539,314,4.5\n539,315,5.0\n539,316,5.5\n539,317,6.0\n539,318,6.5\n539,319,7.0\n539,320,7.5\n539,321,8.0\n539,322,8.5\n539,323,9.0\n539,324,9.5\n539,325,11.0\n539,326,10.5\n539,327,10.0\n539,328,9.5\n539,329,9.0\n539,330,8.5\n539,331,8.0\n539,332,7.5\n539,333,7.0\n539,334,6.5\n539,335,6.0\n539,336,5.5\n539,337,5.0\n539,338,4.5\n539,339,4.0\n539,340,4.5\n539,341,5.0\n539,342,5.5\n539,343,6.0\n539,344,6.5\n539,345,7.0\n539,346,7.5\n539,347,8.0\n539,348,8.5\n539,349,9.0\n539,350,10.5\n539,351,10.0\n539,352,9.5\n539,353,9.0\n539,354,8.5\n539,355,8.0\n539,356,7.5\n539,357,7.0\n539,358,6.5\n539,359,6.0\n539,360,5.5\n539,361,5.0\n539,362,4.5\n539,363,4.0\n539,364,3.5\n539,365,4.0\n539,366,4.5\n539,367,5.0\n539,368,5.5\n539,369,6.0\n539,370,6.5\n539,371,7.0\n539,372,7.5\n539,373,8.0\n539,374,8.5\n539,375,10.0\n539,376,9.5\n539,377,9.0\n539,378,8.5\n539,379,8.0\n539,380,7.5\n539,381,7.0\n539,382,6.5\n539,383,6.0\n539,384,5.5\n539,385,5.0\n539,386,4.5\n539,387,4.0\n539,388,3.5\n539,389,3.0\n539,390,3.5\n539,391,4.0\n539,392,4.5\n539,393,5.0\n539,394,5.5\n539,395,6.0\n539,396,6.5\n539,397,7.0\n539,398,7.5\n539,399,8.0\n539,400,9.5\n539,401,9.0\n539,402,8.5\n539,403,8.0\n539,404,7.5\n539,405,7.0\n539,406,6.5\n539,407,6.0\n539,408,5.5\n539,409,5.0\n539,410,4.5\n539,411,4.0\n539,412,3.5\n539,413,3.0\n539,414,2.5\n539,415,3.0\n539,416,3.5\n539,417,4.0\n539,418,4.5\n539,419,5.0\n539,420,5.5\n539,421,6.0\n539,422,6.5\n539,423,7.0\n539,424,7.5\n539,425,9.0\n539,426,8.5\n539,427,8.0\n539,428,7.5\n539,429,7.0\n539,430,6.5\n539,431,6.0\n539,432,5.5\n539,433,5.0\n539,434,4.5\n539,435,4.0\n539,436,3.5\n539,437,3.0\n539,438,2.5\n539,439,2.0\n539,440,2.5\n539,441,3.0\n539,442,3.5\n539,443,4.0\n539,444,4.5\n539,445,5.0\n539,446,5.5\n539,447,6.0\n539,448,6.5\n539,449,7.0\n539,450,8.5\n539,451,8.0\n539,452,7.5\n539,453,7.0\n539,454,6.5\n539,455,6.0\n539,456,5.5\n539,457,5.0\n539,458,4.5\n539,459,4.0\n539,460,3.5\n539,461,3.0\n539,462,2.5\n539,463,2.0\n539,464,1.5\n539,465,2.0\n539,466,2.5\n539,467,3.0\n539,468,3.5\n539,469,4.0\n539,470,4.5\n539,471,5.0\n539,472,5.5\n539,473,6.0\n539,474,6.5\n539,475,8.0\n539,476,7.5\n539,477,7.0\n539,478,6.5\n539,479,6.0\n539,480,5.5\n539,481,5.0\n539,482,4.5\n539,483,4.0\n539,484,3.5\n539,485,3.0\n539,486,2.5\n539,487,2.0\n539,488,1.5\n539,489,1.0\n539,490,1.5\n539,491,2.0\n539,492,2.5\n539,493,3.0\n539,494,3.5\n539,495,4.0\n539,496,4.5\n539,497,5.0\n539,498,5.5\n539,499,6.0\n539,500,7.5\n539,501,7.0\n539,502,6.5\n539,503,6.0\n539,504,5.5\n539,505,5.0\n539,506,4.5\n539,507,4.0\n539,508,3.5\n539,509,3.0\n539,510,2.5\n539,511,2.0\n539,512,1.5\n539,513,1.0\n539,514,0.5\n539,515,1.0\n539,516,1.5\n539,517,2.0\n539,518,2.5\n539,519,3.0\n539,520,3.5\n539,521,4.0\n539,522,4.5\n539,523,5.0\n539,524,5.5\n539,525,7.0\n539,526,6.5\n539,527,6.0\n539,528,5.5\n539,529,5.0\n539,530,4.5\n539,531,4.0\n539,532,3.5\n539,533,3.0\n539,534,2.5\n539,535,2.0\n539,536,1.5\n539,537,1.0\n539,538,0.5\n539,539,0\n539,540,0.5\n539,541,1.0\n539,542,1.5\n539,543,2.0\n539,544,2.5\n539,545,3.0\n539,546,3.5\n539,547,4.0\n539,548,4.5\n539,549,5.0\n539,550,7.5\n539,551,7.0\n539,552,6.5\n539,553,6.0\n539,554,5.5\n539,555,5.0\n539,556,4.5\n539,557,4.0\n539,558,3.5\n539,559,3.0\n539,560,2.5\n539,561,2.0\n539,562,1.5\n539,563,1.0\n539,564,0.5\n539,565,1.0\n539,566,1.5\n539,567,2.0\n539,568,2.5\n539,569,3.0\n539,570,3.5\n539,571,4.0\n539,572,4.5\n539,573,5.0\n539,574,5.5\n539,575,8.0\n539,576,7.5\n539,577,7.0\n539,578,6.5\n539,579,6.0\n539,580,5.5\n539,581,5.0\n539,582,4.5\n539,583,4.0\n539,584,3.5\n539,585,3.0\n539,586,2.5\n539,587,2.0\n539,588,1.5\n539,589,1.0\n539,590,1.5\n539,591,2.0\n539,592,2.5\n539,593,3.0\n539,594,3.5\n539,595,4.0\n539,596,4.5\n539,597,5.0\n539,598,5.5\n539,599,6.0\n539,600,8.5\n539,601,8.0\n539,602,7.5\n539,603,7.0\n539,604,6.5\n539,605,6.0\n539,606,5.5\n539,607,5.0\n539,608,4.5\n539,609,4.0\n539,610,3.5\n539,611,3.0\n539,612,2.5\n539,613,2.0\n539,614,1.5\n539,615,2.0\n539,616,2.5\n539,617,3.0\n539,618,3.5\n539,619,4.0\n539,620,4.5\n539,621,5.0\n539,622,5.5\n539,623,6.0\n539,624,6.5\n540,0,18.0\n540,1,17.5\n540,2,17.0\n540,3,16.5\n540,4,16.0\n540,5,15.5\n540,6,15.0\n540,7,14.5\n540,8,14.0\n540,9,13.5\n540,10,13.0\n540,11,12.5\n540,12,12.0\n540,13,11.5\n540,14,11.0\n540,15,10.5\n540,16,11.0\n540,17,11.5\n540,18,12.0\n540,19,12.5\n540,20,13.0\n540,21,13.5\n540,22,14.0\n540,23,14.5\n540,24,15.0\n540,25,17.5\n540,26,17.0\n540,27,16.5\n540,28,16.0\n540,29,15.5\n540,30,15.0\n540,31,14.5\n540,32,14.0\n540,33,13.5\n540,34,13.0\n540,35,12.5\n540,36,12.0\n540,37,11.5\n540,38,11.0\n540,39,10.5\n540,40,10.0\n540,41,10.5\n540,42,11.0\n540,43,11.5\n540,44,12.0\n540,45,12.5\n540,46,13.0\n540,47,13.5\n540,48,14.0\n540,49,14.5\n540,50,17.0\n540,51,16.5\n540,52,16.0\n540,53,15.5\n540,54,15.0\n540,55,14.5\n540,56,14.0\n540,57,13.5\n540,58,13.0\n540,59,12.5\n540,60,12.0\n540,61,11.5\n540,62,11.0\n540,63,10.5\n540,64,10.0\n540,65,9.5\n540,66,10.0\n540,67,10.5\n540,68,11.0\n540,69,11.5\n540,70,12.0\n540,71,12.5\n540,72,13.0\n540,73,13.5\n540,74,14.0\n540,75,16.5\n540,76,16.0\n540,77,15.5\n540,78,15.0\n540,79,14.5\n540,80,14.0\n540,81,13.5\n540,82,13.0\n540,83,12.5\n540,84,12.0\n540,85,11.5\n540,86,11.0\n540,87,10.5\n540,88,10.0\n540,89,9.5\n540,90,9.0\n540,91,9.5\n540,92,10.0\n540,93,10.5\n540,94,11.0\n540,95,11.5\n540,96,12.0\n540,97,12.5\n540,98,13.0\n540,99,13.5\n540,100,16.0\n540,101,15.5\n540,102,15.0\n540,103,14.5\n540,104,14.0\n540,105,13.5\n540,106,13.0\n540,107,12.5\n540,108,12.0\n540,109,11.5\n540,110,11.0\n540,111,10.5\n540,112,10.0\n540,113,9.5\n540,114,9.0\n540,115,8.5\n540,116,9.0\n540,117,9.5\n540,118,10.0\n540,119,10.5\n540,120,11.0\n540,121,11.5\n540,122,12.0\n540,123,12.5\n540,124,13.0\n540,125,15.5\n540,126,15.0\n540,127,14.5\n540,128,14.0\n540,129,13.5\n540,130,13.0\n540,131,12.5\n540,132,12.0\n540,133,11.5\n540,134,11.0\n540,135,10.5\n540,136,10.0\n540,137,9.5\n540,138,9.0\n540,139,8.5\n540,140,8.0\n540,141,8.5\n540,142,9.0\n540,143,9.5\n540,144,10.0\n540,145,10.5\n540,146,11.0\n540,147,11.5\n540,148,12.0\n540,149,12.5\n540,150,15.0\n540,151,14.5\n540,152,14.0\n540,153,13.5\n540,154,13.0\n540,155,12.5\n540,156,12.0\n540,157,11.5\n540,158,11.0\n540,159,10.5\n540,160,10.0\n540,161,9.5\n540,162,9.0\n540,163,8.5\n540,164,8.0\n540,165,7.5\n540,166,8.0\n540,167,8.5\n540,168,9.0\n540,169,9.5\n540,170,10.0\n540,171,10.5\n540,172,11.0\n540,173,11.5\n540,174,12.0\n540,175,14.5\n540,176,14.0\n540,177,13.5\n540,178,13.0\n540,179,12.5\n540,180,12.0\n540,181,11.5\n540,182,11.0\n540,183,10.5\n540,184,10.0\n540,185,9.5\n540,186,9.0\n540,187,8.5\n540,188,8.0\n540,189,7.5\n540,190,7.0\n540,191,7.5\n540,192,8.0\n540,193,8.5\n540,194,9.0\n540,195,9.5\n540,196,10.0\n540,197,10.5\n540,198,11.0\n540,199,11.5\n540,200,14.0\n540,201,13.5\n540,202,13.0\n540,203,12.5\n540,204,12.0\n540,205,11.5\n540,206,11.0\n540,207,10.5\n540,208,10.0\n540,209,9.5\n540,210,9.0\n540,211,8.5\n540,212,8.0\n540,213,7.5\n540,214,7.0\n540,215,6.5\n540,216,7.0\n540,217,7.5\n540,218,8.0\n540,219,8.5\n540,220,9.0\n540,221,9.5\n540,222,10.0\n540,223,10.5\n540,224,11.0\n540,225,13.5\n540,226,13.0\n540,227,12.5\n540,228,12.0\n540,229,11.5\n540,230,11.0\n540,231,10.5\n540,232,10.0\n540,233,9.5\n540,234,9.0\n540,235,8.5\n540,236,8.0\n540,237,7.5\n540,238,7.0\n540,239,6.5\n540,240,6.0\n540,241,6.5\n540,242,7.0\n540,243,7.5\n540,244,8.0\n540,245,8.5\n540,246,9.0\n540,247,9.5\n540,248,10.0\n540,249,10.5\n540,250,13.0\n540,251,12.5\n540,252,12.0\n540,253,11.5\n540,254,11.0\n540,255,10.5\n540,256,10.0\n540,257,9.5\n540,258,9.0\n540,259,8.5\n540,260,8.0\n540,261,7.5\n540,262,7.0\n540,263,6.5\n540,264,6.0\n540,265,5.5\n540,266,6.0\n540,267,6.5\n540,268,7.0\n540,269,7.5\n540,270,8.0\n540,271,8.5\n540,272,9.0\n540,273,9.5\n540,274,10.0\n540,275,12.5\n540,276,12.0\n540,277,11.5\n540,278,11.0\n540,279,10.5\n540,280,10.0\n540,281,9.5\n540,282,9.0\n540,283,8.5\n540,284,8.0\n540,285,7.5\n540,286,7.0\n540,287,6.5\n540,288,6.0\n540,289,5.5\n540,290,5.0\n540,291,5.5\n540,292,6.0\n540,293,6.5\n540,294,7.0\n540,295,7.5\n540,296,8.0\n540,297,8.5\n540,298,9.0\n540,299,9.5\n540,300,12.0\n540,301,11.5\n540,302,11.0\n540,303,10.5\n540,304,10.0\n540,305,9.5\n540,306,9.0\n540,307,8.5\n540,308,8.0\n540,309,7.5\n540,310,7.0\n540,311,6.5\n540,312,6.0\n540,313,5.5\n540,314,5.0\n540,315,4.5\n540,316,5.0\n540,317,5.5\n540,318,6.0\n540,319,6.5\n540,320,7.0\n540,321,7.5\n540,322,8.0\n540,323,8.5\n540,324,9.0\n540,325,11.5\n540,326,11.0\n540,327,10.5\n540,328,10.0\n540,329,9.5\n540,330,9.0\n540,331,8.5\n540,332,8.0\n540,333,7.5\n540,334,7.0\n540,335,6.5\n540,336,6.0\n540,337,5.5\n540,338,5.0\n540,339,4.5\n540,340,4.0\n540,341,4.5\n540,342,5.0\n540,343,5.5\n540,344,6.0\n540,345,6.5\n540,346,7.0\n540,347,7.5\n540,348,8.0\n540,349,8.5\n540,350,11.0\n540,351,10.5\n540,352,10.0\n540,353,9.5\n540,354,9.0\n540,355,8.5\n540,356,8.0\n540,357,7.5\n540,358,7.0\n540,359,6.5\n540,360,6.0\n540,361,5.5\n540,362,5.0\n540,363,4.5\n540,364,4.0\n540,365,3.5\n540,366,4.0\n540,367,4.5\n540,368,5.0\n540,369,5.5\n540,370,6.0\n540,371,6.5\n540,372,7.0\n540,373,7.5\n540,374,8.0\n540,375,10.5\n540,376,10.0\n540,377,9.5\n540,378,9.0\n540,379,8.5\n540,380,8.0\n540,381,7.5\n540,382,7.0\n540,383,6.5\n540,384,6.0\n540,385,5.5\n540,386,5.0\n540,387,4.5\n540,388,4.0\n540,389,3.5\n540,390,3.0\n540,391,3.5\n540,392,4.0\n540,393,4.5\n540,394,5.0\n540,395,5.5\n540,396,6.0\n540,397,6.5\n540,398,7.0\n540,399,7.5\n540,400,10.0\n540,401,9.5\n540,402,9.0\n540,403,8.5\n540,404,8.0\n540,405,7.5\n540,406,7.0\n540,407,6.5\n540,408,6.0\n540,409,5.5\n540,410,5.0\n540,411,4.5\n540,412,4.0\n540,413,3.5\n540,414,3.0\n540,415,2.5\n540,416,3.0\n540,417,3.5\n540,418,4.0\n540,419,4.5\n540,420,5.0\n540,421,5.5\n540,422,6.0\n540,423,6.5\n540,424,7.0\n540,425,9.5\n540,426,9.0\n540,427,8.5\n540,428,8.0\n540,429,7.5\n540,430,7.0\n540,431,6.5\n540,432,6.0\n540,433,5.5\n540,434,5.0\n540,435,4.5\n540,436,4.0\n540,437,3.5\n540,438,3.0\n540,439,2.5\n540,440,2.0\n540,441,2.5\n540,442,3.0\n540,443,3.5\n540,444,4.0\n540,445,4.5\n540,446,5.0\n540,447,5.5\n540,448,6.0\n540,449,6.5\n540,450,9.0\n540,451,8.5\n540,452,8.0\n540,453,7.5\n540,454,7.0\n540,455,6.5\n540,456,6.0\n540,457,5.5\n540,458,5.0\n540,459,4.5\n540,460,4.0\n540,461,3.5\n540,462,3.0\n540,463,2.5\n540,464,2.0\n540,465,1.5\n540,466,2.0\n540,467,2.5\n540,468,3.0\n540,469,3.5\n540,470,4.0\n540,471,4.5\n540,472,5.0\n540,473,5.5\n540,474,6.0\n540,475,8.5\n540,476,8.0\n540,477,7.5\n540,478,7.0\n540,479,6.5\n540,480,6.0\n540,481,5.5\n540,482,5.0\n540,483,4.5\n540,484,4.0\n540,485,3.5\n540,486,3.0\n540,487,2.5\n540,488,2.0\n540,489,1.5\n540,490,1.0\n540,491,1.5\n540,492,2.0\n540,493,2.5\n540,494,3.0\n540,495,3.5\n540,496,4.0\n540,497,4.5\n540,498,5.0\n540,499,5.5\n540,500,8.0\n540,501,7.5\n540,502,7.0\n540,503,6.5\n540,504,6.0\n540,505,5.5\n540,506,5.0\n540,507,4.5\n540,508,4.0\n540,509,3.5\n540,510,3.0\n540,511,2.5\n540,512,2.0\n540,513,1.5\n540,514,1.0\n540,515,0.5\n540,516,1.0\n540,517,1.5\n540,518,2.0\n540,519,2.5\n540,520,3.0\n540,521,3.5\n540,522,4.0\n540,523,4.5\n540,524,5.0\n540,525,7.5\n540,526,7.0\n540,527,6.5\n540,528,6.0\n540,529,5.5\n540,530,5.0\n540,531,4.5\n540,532,4.0\n540,533,3.5\n540,534,3.0\n540,535,2.5\n540,536,2.0\n540,537,1.5\n540,538,1.0\n540,539,0.5\n540,540,0\n540,541,0.5\n540,542,1.0\n540,543,1.5\n540,544,2.0\n540,545,2.5\n540,546,3.0\n540,547,3.5\n540,548,4.0\n540,549,4.5\n540,550,8.0\n540,551,7.5\n540,552,7.0\n540,553,6.5\n540,554,6.0\n540,555,5.5\n540,556,5.0\n540,557,4.5\n540,558,4.0\n540,559,3.5\n540,560,3.0\n540,561,2.5\n540,562,2.0\n540,563,1.5\n540,564,1.0\n540,565,0.5\n540,566,1.0\n540,567,1.5\n540,568,2.0\n540,569,2.5\n540,570,3.0\n540,571,3.5\n540,572,4.0\n540,573,4.5\n540,574,5.0\n540,575,8.5\n540,576,8.0\n540,577,7.5\n540,578,7.0\n540,579,6.5\n540,580,6.0\n540,581,5.5\n540,582,5.0\n540,583,4.5\n540,584,4.0\n540,585,3.5\n540,586,3.0\n540,587,2.5\n540,588,2.0\n540,589,1.5\n540,590,1.0\n540,591,1.5\n540,592,2.0\n540,593,2.5\n540,594,3.0\n540,595,3.5\n540,596,4.0\n540,597,4.5\n540,598,5.0\n540,599,5.5\n540,600,9.0\n540,601,8.5\n540,602,8.0\n540,603,7.5\n540,604,7.0\n540,605,6.5\n540,606,6.0\n540,607,5.5\n540,608,5.0\n540,609,4.5\n540,610,4.0\n540,611,3.5\n540,612,3.0\n540,613,2.5\n540,614,2.0\n540,615,1.5\n540,616,2.0\n540,617,2.5\n540,618,3.0\n540,619,3.5\n540,620,4.0\n540,621,4.5\n540,622,5.0\n540,623,5.5\n540,624,6.0\n541,0,18.5\n541,1,18.0\n541,2,17.5\n541,3,17.0\n541,4,16.5\n541,5,16.0\n541,6,15.5\n541,7,15.0\n541,8,14.5\n541,9,14.0\n541,10,13.5\n541,11,13.0\n541,12,12.5\n541,13,12.0\n541,14,11.5\n541,15,11.0\n541,16,10.5\n541,17,11.0\n541,18,11.5\n541,19,12.0\n541,20,12.5\n541,21,13.0\n541,22,13.5\n541,23,14.0\n541,24,14.5\n541,25,18.0\n541,26,17.5\n541,27,17.0\n541,28,16.5\n541,29,16.0\n541,30,15.5\n541,31,15.0\n541,32,14.5\n541,33,14.0\n541,34,13.5\n541,35,13.0\n541,36,12.5\n541,37,12.0\n541,38,11.5\n541,39,11.0\n541,40,10.5\n541,41,10.0\n541,42,10.5\n541,43,11.0\n541,44,11.5\n541,45,12.0\n541,46,12.5\n541,47,13.0\n541,48,13.5\n541,49,14.0\n541,50,17.5\n541,51,17.0\n541,52,16.5\n541,53,16.0\n541,54,15.5\n541,55,15.0\n541,56,14.5\n541,57,14.0\n541,58,13.5\n541,59,13.0\n541,60,12.5\n541,61,12.0\n541,62,11.5\n541,63,11.0\n541,64,10.5\n541,65,10.0\n541,66,9.5\n541,67,10.0\n541,68,10.5\n541,69,11.0\n541,70,11.5\n541,71,12.0\n541,72,12.5\n541,73,13.0\n541,74,13.5\n541,75,17.0\n541,76,16.5\n541,77,16.0\n541,78,15.5\n541,79,15.0\n541,80,14.5\n541,81,14.0\n541,82,13.5\n541,83,13.0\n541,84,12.5\n541,85,12.0\n541,86,11.5\n541,87,11.0\n541,88,10.5\n541,89,10.0\n541,90,9.5\n541,91,9.0\n541,92,9.5\n541,93,10.0\n541,94,10.5\n541,95,11.0\n541,96,11.5\n541,97,12.0\n541,98,12.5\n541,99,13.0\n541,100,16.5\n541,101,16.0\n541,102,15.5\n541,103,15.0\n541,104,14.5\n541,105,14.0\n541,106,13.5\n541,107,13.0\n541,108,12.5\n541,109,12.0\n541,110,11.5\n541,111,11.0\n541,112,10.5\n541,113,10.0\n541,114,9.5\n541,115,9.0\n541,116,8.5\n541,117,9.0\n541,118,9.5\n541,119,10.0\n541,120,10.5\n541,121,11.0\n541,122,11.5\n541,123,12.0\n541,124,12.5\n541,125,16.0\n541,126,15.5\n541,127,15.0\n541,128,14.5\n541,129,14.0\n541,130,13.5\n541,131,13.0\n541,132,12.5\n541,133,12.0\n541,134,11.5\n541,135,11.0\n541,136,10.5\n541,137,10.0\n541,138,9.5\n541,139,9.0\n541,140,8.5\n541,141,8.0\n541,142,8.5\n541,143,9.0\n541,144,9.5\n541,145,10.0\n541,146,10.5\n541,147,11.0\n541,148,11.5\n541,149,12.0\n541,150,15.5\n541,151,15.0\n541,152,14.5\n541,153,14.0\n541,154,13.5\n541,155,13.0\n541,156,12.5\n541,157,12.0\n541,158,11.5\n541,159,11.0\n541,160,10.5\n541,161,10.0\n541,162,9.5\n541,163,9.0\n541,164,8.5\n541,165,8.0\n541,166,7.5\n541,167,8.0\n541,168,8.5\n541,169,9.0\n541,170,9.5\n541,171,10.0\n541,172,10.5\n541,173,11.0\n541,174,11.5\n541,175,15.0\n541,176,14.5\n541,177,14.0\n541,178,13.5\n541,179,13.0\n541,180,12.5\n541,181,12.0\n541,182,11.5\n541,183,11.0\n541,184,10.5\n541,185,10.0\n541,186,9.5\n541,187,9.0\n541,188,8.5\n541,189,8.0\n541,190,7.5\n541,191,7.0\n541,192,7.5\n541,193,8.0\n541,194,8.5\n541,195,9.0\n541,196,9.5\n541,197,10.0\n541,198,10.5\n541,199,11.0\n541,200,14.5\n541,201,14.0\n541,202,13.5\n541,203,13.0\n541,204,12.5\n541,205,12.0\n541,206,11.5\n541,207,11.0\n541,208,10.5\n541,209,10.0\n541,210,9.5\n541,211,9.0\n541,212,8.5\n541,213,8.0\n541,214,7.5\n541,215,7.0\n541,216,6.5\n541,217,7.0\n541,218,7.5\n541,219,8.0\n541,220,8.5\n541,221,9.0\n541,222,9.5\n541,223,10.0\n541,224,10.5\n541,225,14.0\n541,226,13.5\n541,227,13.0\n541,228,12.5\n541,229,12.0\n541,230,11.5\n541,231,11.0\n541,232,10.5\n541,233,10.0\n541,234,9.5\n541,235,9.0\n541,236,8.5\n541,237,8.0\n541,238,7.5\n541,239,7.0\n541,240,6.5\n541,241,6.0\n541,242,6.5\n541,243,7.0\n541,244,7.5\n541,245,8.0\n541,246,8.5\n541,247,9.0\n541,248,9.5\n541,249,10.0\n541,250,13.5\n541,251,13.0\n541,252,12.5\n541,253,12.0\n541,254,11.5\n541,255,11.0\n541,256,10.5\n541,257,10.0\n541,258,9.5\n541,259,9.0\n541,260,8.5\n541,261,8.0\n541,262,7.5\n541,263,7.0\n541,264,6.5\n541,265,6.0\n541,266,5.5\n541,267,6.0\n541,268,6.5\n541,269,7.0\n541,270,7.5\n541,271,8.0\n541,272,8.5\n541,273,9.0\n541,274,9.5\n541,275,13.0\n541,276,12.5\n541,277,12.0\n541,278,11.5\n541,279,11.0\n541,280,10.5\n541,281,10.0\n541,282,9.5\n541,283,9.0\n541,284,8.5\n541,285,8.0\n541,286,7.5\n541,287,7.0\n541,288,6.5\n541,289,6.0\n541,290,5.5\n541,291,5.0\n541,292,5.5\n541,293,6.0\n541,294,6.5\n541,295,7.0\n541,296,7.5\n541,297,8.0\n541,298,8.5\n541,299,9.0\n541,300,12.5\n541,301,12.0\n541,302,11.5\n541,303,11.0\n541,304,10.5\n541,305,10.0\n541,306,9.5\n541,307,9.0\n541,308,8.5\n541,309,8.0\n541,310,7.5\n541,311,7.0\n541,312,6.5\n541,313,6.0\n541,314,5.5\n541,315,5.0\n541,316,4.5\n541,317,5.0\n541,318,5.5\n541,319,6.0\n541,320,6.5\n541,321,7.0\n541,322,7.5\n541,323,8.0\n541,324,8.5\n541,325,12.0\n541,326,11.5\n541,327,11.0\n541,328,10.5\n541,329,10.0\n541,330,9.5\n541,331,9.0\n541,332,8.5\n541,333,8.0\n541,334,7.5\n541,335,7.0\n541,336,6.5\n541,337,6.0\n541,338,5.5\n541,339,5.0\n541,340,4.5\n541,341,4.0\n541,342,4.5\n541,343,5.0\n541,344,5.5\n541,345,6.0\n541,346,6.5\n541,347,7.0\n541,348,7.5\n541,349,8.0\n541,350,11.5\n541,351,11.0\n541,352,10.5\n541,353,10.0\n541,354,9.5\n541,355,9.0\n541,356,8.5\n541,357,8.0\n541,358,7.5\n541,359,7.0\n541,360,6.5\n541,361,6.0\n541,362,5.5\n541,363,5.0\n541,364,4.5\n541,365,4.0\n541,366,3.5\n541,367,4.0\n541,368,4.5\n541,369,5.0\n541,370,5.5\n541,371,6.0\n541,372,6.5\n541,373,7.0\n541,374,7.5\n541,375,11.0\n541,376,10.5\n541,377,10.0\n541,378,9.5\n541,379,9.0\n541,380,8.5\n541,381,8.0\n541,382,7.5\n541,383,7.0\n541,384,6.5\n541,385,6.0\n541,386,5.5\n541,387,5.0\n541,388,4.5\n541,389,4.0\n541,390,3.5\n541,391,3.0\n541,392,3.5\n541,393,4.0\n541,394,4.5\n541,395,5.0\n541,396,5.5\n541,397,6.0\n541,398,6.5\n541,399,7.0\n541,400,10.5\n541,401,10.0\n541,402,9.5\n541,403,9.0\n541,404,8.5\n541,405,8.0\n541,406,7.5\n541,407,7.0\n541,408,6.5\n541,409,6.0\n541,410,5.5\n541,411,5.0\n541,412,4.5\n541,413,4.0\n541,414,3.5\n541,415,3.0\n541,416,2.5\n541,417,3.0\n541,418,3.5\n541,419,4.0\n541,420,4.5\n541,421,5.0\n541,422,5.5\n541,423,6.0\n541,424,6.5\n541,425,10.0\n541,426,9.5\n541,427,9.0\n541,428,8.5\n541,429,8.0\n541,430,7.5\n541,431,7.0\n541,432,6.5\n541,433,6.0\n541,434,5.5\n541,435,5.0\n541,436,4.5\n541,437,4.0\n541,438,3.5\n541,439,3.0\n541,440,2.5\n541,441,2.0\n541,442,2.5\n541,443,3.0\n541,444,3.5\n541,445,4.0\n541,446,4.5\n541,447,5.0\n541,448,5.5\n541,449,6.0\n541,450,9.5\n541,451,9.0\n541,452,8.5\n541,453,8.0\n541,454,7.5\n541,455,7.0\n541,456,6.5\n541,457,6.0\n541,458,5.5\n541,459,5.0\n541,460,4.5\n541,461,4.0\n541,462,3.5\n541,463,3.0\n541,464,2.5\n541,465,2.0\n541,466,1.5\n541,467,2.0\n541,468,2.5\n541,469,3.0\n541,470,3.5\n541,471,4.0\n541,472,4.5\n541,473,5.0\n541,474,5.5\n541,475,9.0\n541,476,8.5\n541,477,8.0\n541,478,7.5\n541,479,7.0\n541,480,6.5\n541,481,6.0\n541,482,5.5\n541,483,5.0\n541,484,4.5\n541,485,4.0\n541,486,3.5\n541,487,3.0\n541,488,2.5\n541,489,2.0\n541,490,1.5\n541,491,1.0\n541,492,1.5\n541,493,2.0\n541,494,2.5\n541,495,3.0\n541,496,3.5\n541,497,4.0\n541,498,4.5\n541,499,5.0\n541,500,8.5\n541,501,8.0\n541,502,7.5\n541,503,7.0\n541,504,6.5\n541,505,6.0\n541,506,5.5\n541,507,5.0\n541,508,4.5\n541,509,4.0\n541,510,3.5\n541,511,3.0\n541,512,2.5\n541,513,2.0\n541,514,1.5\n541,515,1.0\n541,516,0.5\n541,517,1.0\n541,518,1.5\n541,519,2.0\n541,520,2.5\n541,521,3.0\n541,522,3.5\n541,523,4.0\n541,524,4.5\n541,525,8.0\n541,526,7.5\n541,527,7.0\n541,528,6.5\n541,529,6.0\n541,530,5.5\n541,531,5.0\n541,532,4.5\n541,533,4.0\n541,534,3.5\n541,535,3.0\n541,536,2.5\n541,537,2.0\n541,538,1.5\n541,539,1.0\n541,540,0.5\n541,541,0\n541,542,0.5\n541,543,1.0\n541,544,1.5\n541,545,2.0\n541,546,2.5\n541,547,3.0\n541,548,3.5\n541,549,4.0\n541,550,8.5\n541,551,8.0\n541,552,7.5\n541,553,7.0\n541,554,6.5\n541,555,6.0\n541,556,5.5\n541,557,5.0\n541,558,4.5\n541,559,4.0\n541,560,3.5\n541,561,3.0\n541,562,2.5\n541,563,2.0\n541,564,1.5\n541,565,1.0\n541,566,0.5\n541,567,1.0\n541,568,1.5\n541,569,2.0\n541,570,2.5\n541,571,3.0\n541,572,3.5\n541,573,4.0\n541,574,4.5\n541,575,9.0\n541,576,8.5\n541,577,8.0\n541,578,7.5\n541,579,7.0\n541,580,6.5\n541,581,6.0\n541,582,5.5\n541,583,5.0\n541,584,4.5\n541,585,4.0\n541,586,3.5\n541,587,3.0\n541,588,2.5\n541,589,2.0\n541,590,1.5\n541,591,1.0\n541,592,1.5\n541,593,2.0\n541,594,2.5\n541,595,3.0\n541,596,3.5\n541,597,4.0\n541,598,4.5\n541,599,5.0\n541,600,9.5\n541,601,9.0\n541,602,8.5\n541,603,8.0\n541,604,7.5\n541,605,7.0\n541,606,6.5\n541,607,6.0\n541,608,5.5\n541,609,5.0\n541,610,4.5\n541,611,4.0\n541,612,3.5\n541,613,3.0\n541,614,2.5\n541,615,2.0\n541,616,1.5\n541,617,2.0\n541,618,2.5\n541,619,3.0\n541,620,3.5\n541,621,4.0\n541,622,4.5\n541,623,5.0\n541,624,5.5\n542,0,19.0\n542,1,18.5\n542,2,18.0\n542,3,17.5\n542,4,17.0\n542,5,16.5\n542,6,16.0\n542,7,15.5\n542,8,15.0\n542,9,14.5\n542,10,14.0\n542,11,13.5\n542,12,13.0\n542,13,12.5\n542,14,12.0\n542,15,11.5\n542,16,11.0\n542,17,10.5\n542,18,11.0\n542,19,11.5\n542,20,12.0\n542,21,12.5\n542,22,13.0\n542,23,13.5\n542,24,14.0\n542,25,18.5\n542,26,18.0\n542,27,17.5\n542,28,17.0\n542,29,16.5\n542,30,16.0\n542,31,15.5\n542,32,15.0\n542,33,14.5\n542,34,14.0\n542,35,13.5\n542,36,13.0\n542,37,12.5\n542,38,12.0\n542,39,11.5\n542,40,11.0\n542,41,10.5\n542,42,10.0\n542,43,10.5\n542,44,11.0\n542,45,11.5\n542,46,12.0\n542,47,12.5\n542,48,13.0\n542,49,13.5\n542,50,18.0\n542,51,17.5\n542,52,17.0\n542,53,16.5\n542,54,16.0\n542,55,15.5\n542,56,15.0\n542,57,14.5\n542,58,14.0\n542,59,13.5\n542,60,13.0\n542,61,12.5\n542,62,12.0\n542,63,11.5\n542,64,11.0\n542,65,10.5\n542,66,10.0\n542,67,9.5\n542,68,10.0\n542,69,10.5\n542,70,11.0\n542,71,11.5\n542,72,12.0\n542,73,12.5\n542,74,13.0\n542,75,17.5\n542,76,17.0\n542,77,16.5\n542,78,16.0\n542,79,15.5\n542,80,15.0\n542,81,14.5\n542,82,14.0\n542,83,13.5\n542,84,13.0\n542,85,12.5\n542,86,12.0\n542,87,11.5\n542,88,11.0\n542,89,10.5\n542,90,10.0\n542,91,9.5\n542,92,9.0\n542,93,9.5\n542,94,10.0\n542,95,10.5\n542,96,11.0\n542,97,11.5\n542,98,12.0\n542,99,12.5\n542,100,17.0\n542,101,16.5\n542,102,16.0\n542,103,15.5\n542,104,15.0\n542,105,14.5\n542,106,14.0\n542,107,13.5\n542,108,13.0\n542,109,12.5\n542,110,12.0\n542,111,11.5\n542,112,11.0\n542,113,10.5\n542,114,10.0\n542,115,9.5\n542,116,9.0\n542,117,8.5\n542,118,9.0\n542,119,9.5\n542,120,10.0\n542,121,10.5\n542,122,11.0\n542,123,11.5\n542,124,12.0\n542,125,16.5\n542,126,16.0\n542,127,15.5\n542,128,15.0\n542,129,14.5\n542,130,14.0\n542,131,13.5\n542,132,13.0\n542,133,12.5\n542,134,12.0\n542,135,11.5\n542,136,11.0\n542,137,10.5\n542,138,10.0\n542,139,9.5\n542,140,9.0\n542,141,8.5\n542,142,8.0\n542,143,8.5\n542,144,9.0\n542,145,9.5\n542,146,10.0\n542,147,10.5\n542,148,11.0\n542,149,11.5\n542,150,16.0\n542,151,15.5\n542,152,15.0\n542,153,14.5\n542,154,14.0\n542,155,13.5\n542,156,13.0\n542,157,12.5\n542,158,12.0\n542,159,11.5\n542,160,11.0\n542,161,10.5\n542,162,10.0\n542,163,9.5\n542,164,9.0\n542,165,8.5\n542,166,8.0\n542,167,7.5\n542,168,8.0\n542,169,8.5\n542,170,9.0\n542,171,9.5\n542,172,10.0\n542,173,10.5\n542,174,11.0\n542,175,15.5\n542,176,15.0\n542,177,14.5\n542,178,14.0\n542,179,13.5\n542,180,13.0\n542,181,12.5\n542,182,12.0\n542,183,11.5\n542,184,11.0\n542,185,10.5\n542,186,10.0\n542,187,9.5\n542,188,9.0\n542,189,8.5\n542,190,8.0\n542,191,7.5\n542,192,7.0\n542,193,7.5\n542,194,8.0\n542,195,8.5\n542,196,9.0\n542,197,9.5\n542,198,10.0\n542,199,10.5\n542,200,15.0\n542,201,14.5\n542,202,14.0\n542,203,13.5\n542,204,13.0\n542,205,12.5\n542,206,12.0\n542,207,11.5\n542,208,11.0\n542,209,10.5\n542,210,10.0\n542,211,9.5\n542,212,9.0\n542,213,8.5\n542,214,8.0\n542,215,7.5\n542,216,7.0\n542,217,6.5\n542,218,7.0\n542,219,7.5\n542,220,8.0\n542,221,8.5\n542,222,9.0\n542,223,9.5\n542,224,10.0\n542,225,14.5\n542,226,14.0\n542,227,13.5\n542,228,13.0\n542,229,12.5\n542,230,12.0\n542,231,11.5\n542,232,11.0\n542,233,10.5\n542,234,10.0\n542,235,9.5\n542,236,9.0\n542,237,8.5\n542,238,8.0\n542,239,7.5\n542,240,7.0\n542,241,6.5\n542,242,6.0\n542,243,6.5\n542,244,7.0\n542,245,7.5\n542,246,8.0\n542,247,8.5\n542,248,9.0\n542,249,9.5\n542,250,14.0\n542,251,13.5\n542,252,13.0\n542,253,12.5\n542,254,12.0\n542,255,11.5\n542,256,11.0\n542,257,10.5\n542,258,10.0\n542,259,9.5\n542,260,9.0\n542,261,8.5\n542,262,8.0\n542,263,7.5\n542,264,7.0\n542,265,6.5\n542,266,6.0\n542,267,5.5\n542,268,6.0\n542,269,6.5\n542,270,7.0\n542,271,7.5\n542,272,8.0\n542,273,8.5\n542,274,9.0\n542,275,13.5\n542,276,13.0\n542,277,12.5\n542,278,12.0\n542,279,11.5\n542,280,11.0\n542,281,10.5\n542,282,10.0\n542,283,9.5\n542,284,9.0\n542,285,8.5\n542,286,8.0\n542,287,7.5\n542,288,7.0\n542,289,6.5\n542,290,6.0\n542,291,5.5\n542,292,5.0\n542,293,5.5\n542,294,6.0\n542,295,6.5\n542,296,7.0\n542,297,7.5\n542,298,8.0\n542,299,8.5\n542,300,13.0\n542,301,12.5\n542,302,12.0\n542,303,11.5\n542,304,11.0\n542,305,10.5\n542,306,10.0\n542,307,9.5\n542,308,9.0\n542,309,8.5\n542,310,8.0\n542,311,7.5\n542,312,7.0\n542,313,6.5\n542,314,6.0\n542,315,5.5\n542,316,5.0\n542,317,4.5\n542,318,5.0\n542,319,5.5\n542,320,6.0\n542,321,6.5\n542,322,7.0\n542,323,7.5\n542,324,8.0\n542,325,12.5\n542,326,12.0\n542,327,11.5\n542,328,11.0\n542,329,10.5\n542,330,10.0\n542,331,9.5\n542,332,9.0\n542,333,8.5\n542,334,8.0\n542,335,7.5\n542,336,7.0\n542,337,6.5\n542,338,6.0\n542,339,5.5\n542,340,5.0\n542,341,4.5\n542,342,4.0\n542,343,4.5\n542,344,5.0\n542,345,5.5\n542,346,6.0\n542,347,6.5\n542,348,7.0\n542,349,7.5\n542,350,12.0\n542,351,11.5\n542,352,11.0\n542,353,10.5\n542,354,10.0\n542,355,9.5\n542,356,9.0\n542,357,8.5\n542,358,8.0\n542,359,7.5\n542,360,7.0\n542,361,6.5\n542,362,6.0\n542,363,5.5\n542,364,5.0\n542,365,4.5\n542,366,4.0\n542,367,3.5\n542,368,4.0\n542,369,4.5\n542,370,5.0\n542,371,5.5\n542,372,6.0\n542,373,6.5\n542,374,7.0\n542,375,11.5\n542,376,11.0\n542,377,10.5\n542,378,10.0\n542,379,9.5\n542,380,9.0\n542,381,8.5\n542,382,8.0\n542,383,7.5\n542,384,7.0\n542,385,6.5\n542,386,6.0\n542,387,5.5\n542,388,5.0\n542,389,4.5\n542,390,4.0\n542,391,3.5\n542,392,3.0\n542,393,3.5\n542,394,4.0\n542,395,4.5\n542,396,5.0\n542,397,5.5\n542,398,6.0\n542,399,6.5\n542,400,11.0\n542,401,10.5\n542,402,10.0\n542,403,9.5\n542,404,9.0\n542,405,8.5\n542,406,8.0\n542,407,7.5\n542,408,7.0\n542,409,6.5\n542,410,6.0\n542,411,5.5\n542,412,5.0\n542,413,4.5\n542,414,4.0\n542,415,3.5\n542,416,3.0\n542,417,2.5\n542,418,3.0\n542,419,3.5\n542,420,4.0\n542,421,4.5\n542,422,5.0\n542,423,5.5\n542,424,6.0\n542,425,10.5\n542,426,10.0\n542,427,9.5\n542,428,9.0\n542,429,8.5\n542,430,8.0\n542,431,7.5\n542,432,7.0\n542,433,6.5\n542,434,6.0\n542,435,5.5\n542,436,5.0\n542,437,4.5\n542,438,4.0\n542,439,3.5\n542,440,3.0\n542,441,2.5\n542,442,2.0\n542,443,2.5\n542,444,3.0\n542,445,3.5\n542,446,4.0\n542,447,4.5\n542,448,5.0\n542,449,5.5\n542,450,10.0\n542,451,9.5\n542,452,9.0\n542,453,8.5\n542,454,8.0\n542,455,7.5\n542,456,7.0\n542,457,6.5\n542,458,6.0\n542,459,5.5\n542,460,5.0\n542,461,4.5\n542,462,4.0\n542,463,3.5\n542,464,3.0\n542,465,2.5\n542,466,2.0\n542,467,1.5\n542,468,2.0\n542,469,2.5\n542,470,3.0\n542,471,3.5\n542,472,4.0\n542,473,4.5\n542,474,5.0\n542,475,9.5\n542,476,9.0\n542,477,8.5\n542,478,8.0\n542,479,7.5\n542,480,7.0\n542,481,6.5\n542,482,6.0\n542,483,5.5\n542,484,5.0\n542,485,4.5\n542,486,4.0\n542,487,3.5\n542,488,3.0\n542,489,2.5\n542,490,2.0\n542,491,1.5\n542,492,1.0\n542,493,1.5\n542,494,2.0\n542,495,2.5\n542,496,3.0\n542,497,3.5\n542,498,4.0\n542,499,4.5\n542,500,9.0\n542,501,8.5\n542,502,8.0\n542,503,7.5\n542,504,7.0\n542,505,6.5\n542,506,6.0\n542,507,5.5\n542,508,5.0\n542,509,4.5\n542,510,4.0\n542,511,3.5\n542,512,3.0\n542,513,2.5\n542,514,2.0\n542,515,1.5\n542,516,1.0\n542,517,0.5\n542,518,1.0\n542,519,1.5\n542,520,2.0\n542,521,2.5\n542,522,3.0\n542,523,3.5\n542,524,4.0\n542,525,8.5\n542,526,8.0\n542,527,7.5\n542,528,7.0\n542,529,6.5\n542,530,6.0\n542,531,5.5\n542,532,5.0\n542,533,4.5\n542,534,4.0\n542,535,3.5\n542,536,3.0\n542,537,2.5\n542,538,2.0\n542,539,1.5\n542,540,1.0\n542,541,0.5\n542,542,0\n542,543,0.5\n542,544,1.0\n542,545,1.5\n542,546,2.0\n542,547,2.5\n542,548,3.0\n542,549,3.5\n542,550,9.0\n542,551,8.5\n542,552,8.0\n542,553,7.5\n542,554,7.0\n542,555,6.5\n542,556,6.0\n542,557,5.5\n542,558,5.0\n542,559,4.5\n542,560,4.0\n542,561,3.5\n542,562,3.0\n542,563,2.5\n542,564,2.0\n542,565,1.5\n542,566,1.0\n542,567,0.5\n542,568,1.0\n542,569,1.5\n542,570,2.0\n542,571,2.5\n542,572,3.0\n542,573,3.5\n542,574,4.0\n542,575,9.5\n542,576,9.0\n542,577,8.5\n542,578,8.0\n542,579,7.5\n542,580,7.0\n542,581,6.5\n542,582,6.0\n542,583,5.5\n542,584,5.0\n542,585,4.5\n542,586,4.0\n542,587,3.5\n542,588,3.0\n542,589,2.5\n542,590,2.0\n542,591,1.5\n542,592,1.0\n542,593,1.5\n542,594,2.0\n542,595,2.5\n542,596,3.0\n542,597,3.5\n542,598,4.0\n542,599,4.5\n542,600,10.0\n542,601,9.5\n542,602,9.0\n542,603,8.5\n542,604,8.0\n542,605,7.5\n542,606,7.0\n542,607,6.5\n542,608,6.0\n542,609,5.5\n542,610,5.0\n542,611,4.5\n542,612,4.0\n542,613,3.5\n542,614,3.0\n542,615,2.5\n542,616,2.0\n542,617,1.5\n542,618,2.0\n542,619,2.5\n542,620,3.0\n542,621,3.5\n542,622,4.0\n542,623,4.5\n542,624,5.0\n543,0,19.5\n543,1,19.0\n543,2,18.5\n543,3,18.0\n543,4,17.5\n543,5,17.0\n543,6,16.5\n543,7,16.0\n543,8,15.5\n543,9,15.0\n543,10,14.5\n543,11,14.0\n543,12,13.5\n543,13,13.0\n543,14,12.5\n543,15,12.0\n543,16,11.5\n543,17,11.0\n543,18,10.5\n543,19,11.0\n543,20,11.5\n543,21,12.0\n543,22,12.5\n543,23,13.0\n543,24,13.5\n543,25,19.0\n543,26,18.5\n543,27,18.0\n543,28,17.5\n543,29,17.0\n543,30,16.5\n543,31,16.0\n543,32,15.5\n543,33,15.0\n543,34,14.5\n543,35,14.0\n543,36,13.5\n543,37,13.0\n543,38,12.5\n543,39,12.0\n543,40,11.5\n543,41,11.0\n543,42,10.5\n543,43,10.0\n543,44,10.5\n543,45,11.0\n543,46,11.5\n543,47,12.0\n543,48,12.5\n543,49,13.0\n543,50,18.5\n543,51,18.0\n543,52,17.5\n543,53,17.0\n543,54,16.5\n543,55,16.0\n543,56,15.5\n543,57,15.0\n543,58,14.5\n543,59,14.0\n543,60,13.5\n543,61,13.0\n543,62,12.5\n543,63,12.0\n543,64,11.5\n543,65,11.0\n543,66,10.5\n543,67,10.0\n543,68,9.5\n543,69,10.0\n543,70,10.5\n543,71,11.0\n543,72,11.5\n543,73,12.0\n543,74,12.5\n543,75,18.0\n543,76,17.5\n543,77,17.0\n543,78,16.5\n543,79,16.0\n543,80,15.5\n543,81,15.0\n543,82,14.5\n543,83,14.0\n543,84,13.5\n543,85,13.0\n543,86,12.5\n543,87,12.0\n543,88,11.5\n543,89,11.0\n543,90,10.5\n543,91,10.0\n543,92,9.5\n543,93,9.0\n543,94,9.5\n543,95,10.0\n543,96,10.5\n543,97,11.0\n543,98,11.5\n543,99,12.0\n543,100,17.5\n543,101,17.0\n543,102,16.5\n543,103,16.0\n543,104,15.5\n543,105,15.0\n543,106,14.5\n543,107,14.0\n543,108,13.5\n543,109,13.0\n543,110,12.5\n543,111,12.0\n543,112,11.5\n543,113,11.0\n543,114,10.5\n543,115,10.0\n543,116,9.5\n543,117,9.0\n543,118,8.5\n543,119,9.0\n543,120,9.5\n543,121,10.0\n543,122,10.5\n543,123,11.0\n543,124,11.5\n543,125,17.0\n543,126,16.5\n543,127,16.0\n543,128,15.5\n543,129,15.0\n543,130,14.5\n543,131,14.0\n543,132,13.5\n543,133,13.0\n543,134,12.5\n543,135,12.0\n543,136,11.5\n543,137,11.0\n543,138,10.5\n543,139,10.0\n543,140,9.5\n543,141,9.0\n543,142,8.5\n543,143,8.0\n543,144,8.5\n543,145,9.0\n543,146,9.5\n543,147,10.0\n543,148,10.5\n543,149,11.0\n543,150,16.5\n543,151,16.0\n543,152,15.5\n543,153,15.0\n543,154,14.5\n543,155,14.0\n543,156,13.5\n543,157,13.0\n543,158,12.5\n543,159,12.0\n543,160,11.5\n543,161,11.0\n543,162,10.5\n543,163,10.0\n543,164,9.5\n543,165,9.0\n543,166,8.5\n543,167,8.0\n543,168,7.5\n543,169,8.0\n543,170,8.5\n543,171,9.0\n543,172,9.5\n543,173,10.0\n543,174,10.5\n543,175,16.0\n543,176,15.5\n543,177,15.0\n543,178,14.5\n543,179,14.0\n543,180,13.5\n543,181,13.0\n543,182,12.5\n543,183,12.0\n543,184,11.5\n543,185,11.0\n543,186,10.5\n543,187,10.0\n543,188,9.5\n543,189,9.0\n543,190,8.5\n543,191,8.0\n543,192,7.5\n543,193,7.0\n543,194,7.5\n543,195,8.0\n543,196,8.5\n543,197,9.0\n543,198,9.5\n543,199,10.0\n543,200,15.5\n543,201,15.0\n543,202,14.5\n543,203,14.0\n543,204,13.5\n543,205,13.0\n543,206,12.5\n543,207,12.0\n543,208,11.5\n543,209,11.0\n543,210,10.5\n543,211,10.0\n543,212,9.5\n543,213,9.0\n543,214,8.5\n543,215,8.0\n543,216,7.5\n543,217,7.0\n543,218,6.5\n543,219,7.0\n543,220,7.5\n543,221,8.0\n543,222,8.5\n543,223,9.0\n543,224,9.5\n543,225,15.0\n543,226,14.5\n543,227,14.0\n543,228,13.5\n543,229,13.0\n543,230,12.5\n543,231,12.0\n543,232,11.5\n543,233,11.0\n543,234,10.5\n543,235,10.0\n543,236,9.5\n543,237,9.0\n543,238,8.5\n543,239,8.0\n543,240,7.5\n543,241,7.0\n543,242,6.5\n543,243,6.0\n543,244,6.5\n543,245,7.0\n543,246,7.5\n543,247,8.0\n543,248,8.5\n543,249,9.0\n543,250,14.5\n543,251,14.0\n543,252,13.5\n543,253,13.0\n543,254,12.5\n543,255,12.0\n543,256,11.5\n543,257,11.0\n543,258,10.5\n543,259,10.0\n543,260,9.5\n543,261,9.0\n543,262,8.5\n543,263,8.0\n543,264,7.5\n543,265,7.0\n543,266,6.5\n543,267,6.0\n543,268,5.5\n543,269,6.0\n543,270,6.5\n543,271,7.0\n543,272,7.5\n543,273,8.0\n543,274,8.5\n543,275,14.0\n543,276,13.5\n543,277,13.0\n543,278,12.5\n543,279,12.0\n543,280,11.5\n543,281,11.0\n543,282,10.5\n543,283,10.0\n543,284,9.5\n543,285,9.0\n543,286,8.5\n543,287,8.0\n543,288,7.5\n543,289,7.0\n543,290,6.5\n543,291,6.0\n543,292,5.5\n543,293,5.0\n543,294,5.5\n543,295,6.0\n543,296,6.5\n543,297,7.0\n543,298,7.5\n543,299,8.0\n543,300,13.5\n543,301,13.0\n543,302,12.5\n543,303,12.0\n543,304,11.5\n543,305,11.0\n543,306,10.5\n543,307,10.0\n543,308,9.5\n543,309,9.0\n543,310,8.5\n543,311,8.0\n543,312,7.5\n543,313,7.0\n543,314,6.5\n543,315,6.0\n543,316,5.5\n543,317,5.0\n543,318,4.5\n543,319,5.0\n543,320,5.5\n543,321,6.0\n543,322,6.5\n543,323,7.0\n543,324,7.5\n543,325,13.0\n543,326,12.5\n543,327,12.0\n543,328,11.5\n543,329,11.0\n543,330,10.5\n543,331,10.0\n543,332,9.5\n543,333,9.0\n543,334,8.5\n543,335,8.0\n543,336,7.5\n543,337,7.0\n543,338,6.5\n543,339,6.0\n543,340,5.5\n543,341,5.0\n543,342,4.5\n543,343,4.0\n543,344,4.5\n543,345,5.0\n543,346,5.5\n543,347,6.0\n543,348,6.5\n543,349,7.0\n543,350,12.5\n543,351,12.0\n543,352,11.5\n543,353,11.0\n543,354,10.5\n543,355,10.0\n543,356,9.5\n543,357,9.0\n543,358,8.5\n543,359,8.0\n543,360,7.5\n543,361,7.0\n543,362,6.5\n543,363,6.0\n543,364,5.5\n543,365,5.0\n543,366,4.5\n543,367,4.0\n543,368,3.5\n543,369,4.0\n543,370,4.5\n543,371,5.0\n543,372,5.5\n543,373,6.0\n543,374,6.5\n543,375,12.0\n543,376,11.5\n543,377,11.0\n543,378,10.5\n543,379,10.0\n543,380,9.5\n543,381,9.0\n543,382,8.5\n543,383,8.0\n543,384,7.5\n543,385,7.0\n543,386,6.5\n543,387,6.0\n543,388,5.5\n543,389,5.0\n543,390,4.5\n543,391,4.0\n543,392,3.5\n543,393,3.0\n543,394,3.5\n543,395,4.0\n543,396,4.5\n543,397,5.0\n543,398,5.5\n543,399,6.0\n543,400,11.5\n543,401,11.0\n543,402,10.5\n543,403,10.0\n543,404,9.5\n543,405,9.0\n543,406,8.5\n543,407,8.0\n543,408,7.5\n543,409,7.0\n543,410,6.5\n543,411,6.0\n543,412,5.5\n543,413,5.0\n543,414,4.5\n543,415,4.0\n543,416,3.5\n543,417,3.0\n543,418,2.5\n543,419,3.0\n543,420,3.5\n543,421,4.0\n543,422,4.5\n543,423,5.0\n543,424,5.5\n543,425,11.0\n543,426,10.5\n543,427,10.0\n543,428,9.5\n543,429,9.0\n543,430,8.5\n543,431,8.0\n543,432,7.5\n543,433,7.0\n543,434,6.5\n543,435,6.0\n543,436,5.5\n543,437,5.0\n543,438,4.5\n543,439,4.0\n543,440,3.5\n543,441,3.0\n543,442,2.5\n543,443,2.0\n543,444,2.5\n543,445,3.0\n543,446,3.5\n543,447,4.0\n543,448,4.5\n543,449,5.0\n543,450,10.5\n543,451,10.0\n543,452,9.5\n543,453,9.0\n543,454,8.5\n543,455,8.0\n543,456,7.5\n543,457,7.0\n543,458,6.5\n543,459,6.0\n543,460,5.5\n543,461,5.0\n543,462,4.5\n543,463,4.0\n543,464,3.5\n543,465,3.0\n543,466,2.5\n543,467,2.0\n543,468,1.5\n543,469,2.0\n543,470,2.5\n543,471,3.0\n543,472,3.5\n543,473,4.0\n543,474,4.5\n543,475,10.0\n543,476,9.5\n543,477,9.0\n543,478,8.5\n543,479,8.0\n543,480,7.5\n543,481,7.0\n543,482,6.5\n543,483,6.0\n543,484,5.5\n543,485,5.0\n543,486,4.5\n543,487,4.0\n543,488,3.5\n543,489,3.0\n543,490,2.5\n543,491,2.0\n543,492,1.5\n543,493,1.0\n543,494,1.5\n543,495,2.0\n543,496,2.5\n543,497,3.0\n543,498,3.5\n543,499,4.0\n543,500,9.5\n543,501,9.0\n543,502,8.5\n543,503,8.0\n543,504,7.5\n543,505,7.0\n543,506,6.5\n543,507,6.0\n543,508,5.5\n543,509,5.0\n543,510,4.5\n543,511,4.0\n543,512,3.5\n543,513,3.0\n543,514,2.5\n543,515,2.0\n543,516,1.5\n543,517,1.0\n543,518,0.5\n543,519,1.0\n543,520,1.5\n543,521,2.0\n543,522,2.5\n543,523,3.0\n543,524,3.5\n543,525,9.0\n543,526,8.5\n543,527,8.0\n543,528,7.5\n543,529,7.0\n543,530,6.5\n543,531,6.0\n543,532,5.5\n543,533,5.0\n543,534,4.5\n543,535,4.0\n543,536,3.5\n543,537,3.0\n543,538,2.5\n543,539,2.0\n543,540,1.5\n543,541,1.0\n543,542,0.5\n543,543,0\n543,544,0.5\n543,545,1.0\n543,546,1.5\n543,547,2.0\n543,548,2.5\n543,549,3.0\n543,550,9.5\n543,551,9.0\n543,552,8.5\n543,553,8.0\n543,554,7.5\n543,555,7.0\n543,556,6.5\n543,557,6.0\n543,558,5.5\n543,559,5.0\n543,560,4.5\n543,561,4.0\n543,562,3.5\n543,563,3.0\n543,564,2.5\n543,565,2.0\n543,566,1.5\n543,567,1.0\n543,568,0.5\n543,569,1.0\n543,570,1.5\n543,571,2.0\n543,572,2.5\n543,573,3.0\n543,574,3.5\n543,575,10.0\n543,576,9.5\n543,577,9.0\n543,578,8.5\n543,579,8.0\n543,580,7.5\n543,581,7.0\n543,582,6.5\n543,583,6.0\n543,584,5.5\n543,585,5.0\n543,586,4.5\n543,587,4.0\n543,588,3.5\n543,589,3.0\n543,590,2.5\n543,591,2.0\n543,592,1.5\n543,593,1.0\n543,594,1.5\n543,595,2.0\n543,596,2.5\n543,597,3.0\n543,598,3.5\n543,599,4.0\n543,600,10.5\n543,601,10.0\n543,602,9.5\n543,603,9.0\n543,604,8.5\n543,605,8.0\n543,606,7.5\n543,607,7.0\n543,608,6.5\n543,609,6.0\n543,610,5.5\n543,611,5.0\n543,612,4.5\n543,613,4.0\n543,614,3.5\n543,615,3.0\n543,616,2.5\n543,617,2.0\n543,618,1.5\n543,619,2.0\n543,620,2.5\n543,621,3.0\n543,622,3.5\n543,623,4.0\n543,624,4.5\n544,0,20.0\n544,1,19.5\n544,2,19.0\n544,3,18.5\n544,4,18.0\n544,5,17.5\n544,6,17.0\n544,7,16.5\n544,8,16.0\n544,9,15.5\n544,10,15.0\n544,11,14.5\n544,12,14.0\n544,13,13.5\n544,14,13.0\n544,15,12.5\n544,16,12.0\n544,17,11.5\n544,18,11.0\n544,19,10.5\n544,20,11.0\n544,21,11.5\n544,22,12.0\n544,23,12.5\n544,24,13.0\n544,25,19.5\n544,26,19.0\n544,27,18.5\n544,28,18.0\n544,29,17.5\n544,30,17.0\n544,31,16.5\n544,32,16.0\n544,33,15.5\n544,34,15.0\n544,35,14.5\n544,36,14.0\n544,37,13.5\n544,38,13.0\n544,39,12.5\n544,40,12.0\n544,41,11.5\n544,42,11.0\n544,43,10.5\n544,44,10.0\n544,45,10.5\n544,46,11.0\n544,47,11.5\n544,48,12.0\n544,49,12.5\n544,50,19.0\n544,51,18.5\n544,52,18.0\n544,53,17.5\n544,54,17.0\n544,55,16.5\n544,56,16.0\n544,57,15.5\n544,58,15.0\n544,59,14.5\n544,60,14.0\n544,61,13.5\n544,62,13.0\n544,63,12.5\n544,64,12.0\n544,65,11.5\n544,66,11.0\n544,67,10.5\n544,68,10.0\n544,69,9.5\n544,70,10.0\n544,71,10.5\n544,72,11.0\n544,73,11.5\n544,74,12.0\n544,75,18.5\n544,76,18.0\n544,77,17.5\n544,78,17.0\n544,79,16.5\n544,80,16.0\n544,81,15.5\n544,82,15.0\n544,83,14.5\n544,84,14.0\n544,85,13.5\n544,86,13.0\n544,87,12.5\n544,88,12.0\n544,89,11.5\n544,90,11.0\n544,91,10.5\n544,92,10.0\n544,93,9.5\n544,94,9.0\n544,95,9.5\n544,96,10.0\n544,97,10.5\n544,98,11.0\n544,99,11.5\n544,100,18.0\n544,101,17.5\n544,102,17.0\n544,103,16.5\n544,104,16.0\n544,105,15.5\n544,106,15.0\n544,107,14.5\n544,108,14.0\n544,109,13.5\n544,110,13.0\n544,111,12.5\n544,112,12.0\n544,113,11.5\n544,114,11.0\n544,115,10.5\n544,116,10.0\n544,117,9.5\n544,118,9.0\n544,119,8.5\n544,120,9.0\n544,121,9.5\n544,122,10.0\n544,123,10.5\n544,124,11.0\n544,125,17.5\n544,126,17.0\n544,127,16.5\n544,128,16.0\n544,129,15.5\n544,130,15.0\n544,131,14.5\n544,132,14.0\n544,133,13.5\n544,134,13.0\n544,135,12.5\n544,136,12.0\n544,137,11.5\n544,138,11.0\n544,139,10.5\n544,140,10.0\n544,141,9.5\n544,142,9.0\n544,143,8.5\n544,144,8.0\n544,145,8.5\n544,146,9.0\n544,147,9.5\n544,148,10.0\n544,149,10.5\n544,150,17.0\n544,151,16.5\n544,152,16.0\n544,153,15.5\n544,154,15.0\n544,155,14.5\n544,156,14.0\n544,157,13.5\n544,158,13.0\n544,159,12.5\n544,160,12.0\n544,161,11.5\n544,162,11.0\n544,163,10.5\n544,164,10.0\n544,165,9.5\n544,166,9.0\n544,167,8.5\n544,168,8.0\n544,169,7.5\n544,170,8.0\n544,171,8.5\n544,172,9.0\n544,173,9.5\n544,174,10.0\n544,175,16.5\n544,176,16.0\n544,177,15.5\n544,178,15.0\n544,179,14.5\n544,180,14.0\n544,181,13.5\n544,182,13.0\n544,183,12.5\n544,184,12.0\n544,185,11.5\n544,186,11.0\n544,187,10.5\n544,188,10.0\n544,189,9.5\n544,190,9.0\n544,191,8.5\n544,192,8.0\n544,193,7.5\n544,194,7.0\n544,195,7.5\n544,196,8.0\n544,197,8.5\n544,198,9.0\n544,199,9.5\n544,200,16.0\n544,201,15.5\n544,202,15.0\n544,203,14.5\n544,204,14.0\n544,205,13.5\n544,206,13.0\n544,207,12.5\n544,208,12.0\n544,209,11.5\n544,210,11.0\n544,211,10.5\n544,212,10.0\n544,213,9.5\n544,214,9.0\n544,215,8.5\n544,216,8.0\n544,217,7.5\n544,218,7.0\n544,219,6.5\n544,220,7.0\n544,221,7.5\n544,222,8.0\n544,223,8.5\n544,224,9.0\n544,225,15.5\n544,226,15.0\n544,227,14.5\n544,228,14.0\n544,229,13.5\n544,230,13.0\n544,231,12.5\n544,232,12.0\n544,233,11.5\n544,234,11.0\n544,235,10.5\n544,236,10.0\n544,237,9.5\n544,238,9.0\n544,239,8.5\n544,240,8.0\n544,241,7.5\n544,242,7.0\n544,243,6.5\n544,244,6.0\n544,245,6.5\n544,246,7.0\n544,247,7.5\n544,248,8.0\n544,249,8.5\n544,250,15.0\n544,251,14.5\n544,252,14.0\n544,253,13.5\n544,254,13.0\n544,255,12.5\n544,256,12.0\n544,257,11.5\n544,258,11.0\n544,259,10.5\n544,260,10.0\n544,261,9.5\n544,262,9.0\n544,263,8.5\n544,264,8.0\n544,265,7.5\n544,266,7.0\n544,267,6.5\n544,268,6.0\n544,269,5.5\n544,270,6.0\n544,271,6.5\n544,272,7.0\n544,273,7.5\n544,274,8.0\n544,275,14.5\n544,276,14.0\n544,277,13.5\n544,278,13.0\n544,279,12.5\n544,280,12.0\n544,281,11.5\n544,282,11.0\n544,283,10.5\n544,284,10.0\n544,285,9.5\n544,286,9.0\n544,287,8.5\n544,288,8.0\n544,289,7.5\n544,290,7.0\n544,291,6.5\n544,292,6.0\n544,293,5.5\n544,294,5.0\n544,295,5.5\n544,296,6.0\n544,297,6.5\n544,298,7.0\n544,299,7.5\n544,300,14.0\n544,301,13.5\n544,302,13.0\n544,303,12.5\n544,304,12.0\n544,305,11.5\n544,306,11.0\n544,307,10.5\n544,308,10.0\n544,309,9.5\n544,310,9.0\n544,311,8.5\n544,312,8.0\n544,313,7.5\n544,314,7.0\n544,315,6.5\n544,316,6.0\n544,317,5.5\n544,318,5.0\n544,319,4.5\n544,320,5.0\n544,321,5.5\n544,322,6.0\n544,323,6.5\n544,324,7.0\n544,325,13.5\n544,326,13.0\n544,327,12.5\n544,328,12.0\n544,329,11.5\n544,330,11.0\n544,331,10.5\n544,332,10.0\n544,333,9.5\n544,334,9.0\n544,335,8.5\n544,336,8.0\n544,337,7.5\n544,338,7.0\n544,339,6.5\n544,340,6.0\n544,341,5.5\n544,342,5.0\n544,343,4.5\n544,344,4.0\n544,345,4.5\n544,346,5.0\n544,347,5.5\n544,348,6.0\n544,349,6.5\n544,350,13.0\n544,351,12.5\n544,352,12.0\n544,353,11.5\n544,354,11.0\n544,355,10.5\n544,356,10.0\n544,357,9.5\n544,358,9.0\n544,359,8.5\n544,360,8.0\n544,361,7.5\n544,362,7.0\n544,363,6.5\n544,364,6.0\n544,365,5.5\n544,366,5.0\n544,367,4.5\n544,368,4.0\n544,369,3.5\n544,370,4.0\n544,371,4.5\n544,372,5.0\n544,373,5.5\n544,374,6.0\n544,375,12.5\n544,376,12.0\n544,377,11.5\n544,378,11.0\n544,379,10.5\n544,380,10.0\n544,381,9.5\n544,382,9.0\n544,383,8.5\n544,384,8.0\n544,385,7.5\n544,386,7.0\n544,387,6.5\n544,388,6.0\n544,389,5.5\n544,390,5.0\n544,391,4.5\n544,392,4.0\n544,393,3.5\n544,394,3.0\n544,395,3.5\n544,396,4.0\n544,397,4.5\n544,398,5.0\n544,399,5.5\n544,400,12.0\n544,401,11.5\n544,402,11.0\n544,403,10.5\n544,404,10.0\n544,405,9.5\n544,406,9.0\n544,407,8.5\n544,408,8.0\n544,409,7.5\n544,410,7.0\n544,411,6.5\n544,412,6.0\n544,413,5.5\n544,414,5.0\n544,415,4.5\n544,416,4.0\n544,417,3.5\n544,418,3.0\n544,419,2.5\n544,420,3.0\n544,421,3.5\n544,422,4.0\n544,423,4.5\n544,424,5.0\n544,425,11.5\n544,426,11.0\n544,427,10.5\n544,428,10.0\n544,429,9.5\n544,430,9.0\n544,431,8.5\n544,432,8.0\n544,433,7.5\n544,434,7.0\n544,435,6.5\n544,436,6.0\n544,437,5.5\n544,438,5.0\n544,439,4.5\n544,440,4.0\n544,441,3.5\n544,442,3.0\n544,443,2.5\n544,444,2.0\n544,445,2.5\n544,446,3.0\n544,447,3.5\n544,448,4.0\n544,449,4.5\n544,450,11.0\n544,451,10.5\n544,452,10.0\n544,453,9.5\n544,454,9.0\n544,455,8.5\n544,456,8.0\n544,457,7.5\n544,458,7.0\n544,459,6.5\n544,460,6.0\n544,461,5.5\n544,462,5.0\n544,463,4.5\n544,464,4.0\n544,465,3.5\n544,466,3.0\n544,467,2.5\n544,468,2.0\n544,469,1.5\n544,470,2.0\n544,471,2.5\n544,472,3.0\n544,473,3.5\n544,474,4.0\n544,475,10.5\n544,476,10.0\n544,477,9.5\n544,478,9.0\n544,479,8.5\n544,480,8.0\n544,481,7.5\n544,482,7.0\n544,483,6.5\n544,484,6.0\n544,485,5.5\n544,486,5.0\n544,487,4.5\n544,488,4.0\n544,489,3.5\n544,490,3.0\n544,491,2.5\n544,492,2.0\n544,493,1.5\n544,494,1.0\n544,495,1.5\n544,496,2.0\n544,497,2.5\n544,498,3.0\n544,499,3.5\n544,500,10.0\n544,501,9.5\n544,502,9.0\n544,503,8.5\n544,504,8.0\n544,505,7.5\n544,506,7.0\n544,507,6.5\n544,508,6.0\n544,509,5.5\n544,510,5.0\n544,511,4.5\n544,512,4.0\n544,513,3.5\n544,514,3.0\n544,515,2.5\n544,516,2.0\n544,517,1.5\n544,518,1.0\n544,519,0.5\n544,520,1.0\n544,521,1.5\n544,522,2.0\n544,523,2.5\n544,524,3.0\n544,525,9.5\n544,526,9.0\n544,527,8.5\n544,528,8.0\n544,529,7.5\n544,530,7.0\n544,531,6.5\n544,532,6.0\n544,533,5.5\n544,534,5.0\n544,535,4.5\n544,536,4.0\n544,537,3.5\n544,538,3.0\n544,539,2.5\n544,540,2.0\n544,541,1.5\n544,542,1.0\n544,543,0.5\n544,544,0\n544,545,0.5\n544,546,1.0\n544,547,1.5\n544,548,2.0\n544,549,2.5\n544,550,10.0\n544,551,9.5\n544,552,9.0\n544,553,8.5\n544,554,8.0\n544,555,7.5\n544,556,7.0\n544,557,6.5\n544,558,6.0\n544,559,5.5\n544,560,5.0\n544,561,4.5\n544,562,4.0\n544,563,3.5\n544,564,3.0\n544,565,2.5\n544,566,2.0\n544,567,1.5\n544,568,1.0\n544,569,0.5\n544,570,1.0\n544,571,1.5\n544,572,2.0\n544,573,2.5\n544,574,3.0\n544,575,10.5\n544,576,10.0\n544,577,9.5\n544,578,9.0\n544,579,8.5\n544,580,8.0\n544,581,7.5\n544,582,7.0\n544,583,6.5\n544,584,6.0\n544,585,5.5\n544,586,5.0\n544,587,4.5\n544,588,4.0\n544,589,3.5\n544,590,3.0\n544,591,2.5\n544,592,2.0\n544,593,1.5\n544,594,1.0\n544,595,1.5\n544,596,2.0\n544,597,2.5\n544,598,3.0\n544,599,3.5\n544,600,11.0\n544,601,10.5\n544,602,10.0\n544,603,9.5\n544,604,9.0\n544,605,8.5\n544,606,8.0\n544,607,7.5\n544,608,7.0\n544,609,6.5\n544,610,6.0\n544,611,5.5\n544,612,5.0\n544,613,4.5\n544,614,4.0\n544,615,3.5\n544,616,3.0\n544,617,2.5\n544,618,2.0\n544,619,1.5\n544,620,2.0\n544,621,2.5\n544,622,3.0\n544,623,3.5\n544,624,4.0\n545,0,20.5\n545,1,20.0\n545,2,19.5\n545,3,19.0\n545,4,18.5\n545,5,18.0\n545,6,17.5\n545,7,17.0\n545,8,16.5\n545,9,16.0\n545,10,15.5\n545,11,15.0\n545,12,14.5\n545,13,14.0\n545,14,13.5\n545,15,13.0\n545,16,12.5\n545,17,12.0\n545,18,11.5\n545,19,11.0\n545,20,10.5\n545,21,11.0\n545,22,11.5\n545,23,12.0\n545,24,12.5\n545,25,20.0\n545,26,19.5\n545,27,19.0\n545,28,18.5\n545,29,18.0\n545,30,17.5\n545,31,17.0\n545,32,16.5\n545,33,16.0\n545,34,15.5\n545,35,15.0\n545,36,14.5\n545,37,14.0\n545,38,13.5\n545,39,13.0\n545,40,12.5\n545,41,12.0\n545,42,11.5\n545,43,11.0\n545,44,10.5\n545,45,10.0\n545,46,10.5\n545,47,11.0\n545,48,11.5\n545,49,12.0\n545,50,19.5\n545,51,19.0\n545,52,18.5\n545,53,18.0\n545,54,17.5\n545,55,17.0\n545,56,16.5\n545,57,16.0\n545,58,15.5\n545,59,15.0\n545,60,14.5\n545,61,14.0\n545,62,13.5\n545,63,13.0\n545,64,12.5\n545,65,12.0\n545,66,11.5\n545,67,11.0\n545,68,10.5\n545,69,10.0\n545,70,9.5\n545,71,10.0\n545,72,10.5\n545,73,11.0\n545,74,11.5\n545,75,19.0\n545,76,18.5\n545,77,18.0\n545,78,17.5\n545,79,17.0\n545,80,16.5\n545,81,16.0\n545,82,15.5\n545,83,15.0\n545,84,14.5\n545,85,14.0\n545,86,13.5\n545,87,13.0\n545,88,12.5\n545,89,12.0\n545,90,11.5\n545,91,11.0\n545,92,10.5\n545,93,10.0\n545,94,9.5\n545,95,9.0\n545,96,9.5\n545,97,10.0\n545,98,10.5\n545,99,11.0\n545,100,18.5\n545,101,18.0\n545,102,17.5\n545,103,17.0\n545,104,16.5\n545,105,16.0\n545,106,15.5\n545,107,15.0\n545,108,14.5\n545,109,14.0\n545,110,13.5\n545,111,13.0\n545,112,12.5\n545,113,12.0\n545,114,11.5\n545,115,11.0\n545,116,10.5\n545,117,10.0\n545,118,9.5\n545,119,9.0\n545,120,8.5\n545,121,9.0\n545,122,9.5\n545,123,10.0\n545,124,10.5\n545,125,18.0\n545,126,17.5\n545,127,17.0\n545,128,16.5\n545,129,16.0\n545,130,15.5\n545,131,15.0\n545,132,14.5\n545,133,14.0\n545,134,13.5\n545,135,13.0\n545,136,12.5\n545,137,12.0\n545,138,11.5\n545,139,11.0\n545,140,10.5\n545,141,10.0\n545,142,9.5\n545,143,9.0\n545,144,8.5\n545,145,8.0\n545,146,8.5\n545,147,9.0\n545,148,9.5\n545,149,10.0\n545,150,17.5\n545,151,17.0\n545,152,16.5\n545,153,16.0\n545,154,15.5\n545,155,15.0\n545,156,14.5\n545,157,14.0\n545,158,13.5\n545,159,13.0\n545,160,12.5\n545,161,12.0\n545,162,11.5\n545,163,11.0\n545,164,10.5\n545,165,10.0\n545,166,9.5\n545,167,9.0\n545,168,8.5\n545,169,8.0\n545,170,7.5\n545,171,8.0\n545,172,8.5\n545,173,9.0\n545,174,9.5\n545,175,17.0\n545,176,16.5\n545,177,16.0\n545,178,15.5\n545,179,15.0\n545,180,14.5\n545,181,14.0\n545,182,13.5\n545,183,13.0\n545,184,12.5\n545,185,12.0\n545,186,11.5\n545,187,11.0\n545,188,10.5\n545,189,10.0\n545,190,9.5\n545,191,9.0\n545,192,8.5\n545,193,8.0\n545,194,7.5\n545,195,7.0\n545,196,7.5\n545,197,8.0\n545,198,8.5\n545,199,9.0\n545,200,16.5\n545,201,16.0\n545,202,15.5\n545,203,15.0\n545,204,14.5\n545,205,14.0\n545,206,13.5\n545,207,13.0\n545,208,12.5\n545,209,12.0\n545,210,11.5\n545,211,11.0\n545,212,10.5\n545,213,10.0\n545,214,9.5\n545,215,9.0\n545,216,8.5\n545,217,8.0\n545,218,7.5\n545,219,7.0\n545,220,6.5\n545,221,7.0\n545,222,7.5\n545,223,8.0\n545,224,8.5\n545,225,16.0\n545,226,15.5\n545,227,15.0\n545,228,14.5\n545,229,14.0\n545,230,13.5\n545,231,13.0\n545,232,12.5\n545,233,12.0\n545,234,11.5\n545,235,11.0\n545,236,10.5\n545,237,10.0\n545,238,9.5\n545,239,9.0\n545,240,8.5\n545,241,8.0\n545,242,7.5\n545,243,7.0\n545,244,6.5\n545,245,6.0\n545,246,6.5\n545,247,7.0\n545,248,7.5\n545,249,8.0\n545,250,15.5\n545,251,15.0\n545,252,14.5\n545,253,14.0\n545,254,13.5\n545,255,13.0\n545,256,12.5\n545,257,12.0\n545,258,11.5\n545,259,11.0\n545,260,10.5\n545,261,10.0\n545,262,9.5\n545,263,9.0\n545,264,8.5\n545,265,8.0\n545,266,7.5\n545,267,7.0\n545,268,6.5\n545,269,6.0\n545,270,5.5\n545,271,6.0\n545,272,6.5\n545,273,7.0\n545,274,7.5\n545,275,15.0\n545,276,14.5\n545,277,14.0\n545,278,13.5\n545,279,13.0\n545,280,12.5\n545,281,12.0\n545,282,11.5\n545,283,11.0\n545,284,10.5\n545,285,10.0\n545,286,9.5\n545,287,9.0\n545,288,8.5\n545,289,8.0\n545,290,7.5\n545,291,7.0\n545,292,6.5\n545,293,6.0\n545,294,5.5\n545,295,5.0\n545,296,5.5\n545,297,6.0\n545,298,6.5\n545,299,7.0\n545,300,14.5\n545,301,14.0\n545,302,13.5\n545,303,13.0\n545,304,12.5\n545,305,12.0\n545,306,11.5\n545,307,11.0\n545,308,10.5\n545,309,10.0\n545,310,9.5\n545,311,9.0\n545,312,8.5\n545,313,8.0\n545,314,7.5\n545,315,7.0\n545,316,6.5\n545,317,6.0\n545,318,5.5\n545,319,5.0\n545,320,4.5\n545,321,5.0\n545,322,5.5\n545,323,6.0\n545,324,6.5\n545,325,14.0\n545,326,13.5\n545,327,13.0\n545,328,12.5\n545,329,12.0\n545,330,11.5\n545,331,11.0\n545,332,10.5\n545,333,10.0\n545,334,9.5\n545,335,9.0\n545,336,8.5\n545,337,8.0\n545,338,7.5\n545,339,7.0\n545,340,6.5\n545,341,6.0\n545,342,5.5\n545,343,5.0\n545,344,4.5\n545,345,4.0\n545,346,4.5\n545,347,5.0\n545,348,5.5\n545,349,6.0\n545,350,13.5\n545,351,13.0\n545,352,12.5\n545,353,12.0\n545,354,11.5\n545,355,11.0\n545,356,10.5\n545,357,10.0\n545,358,9.5\n545,359,9.0\n545,360,8.5\n545,361,8.0\n545,362,7.5\n545,363,7.0\n545,364,6.5\n545,365,6.0\n545,366,5.5\n545,367,5.0\n545,368,4.5\n545,369,4.0\n545,370,3.5\n545,371,4.0\n545,372,4.5\n545,373,5.0\n545,374,5.5\n545,375,13.0\n545,376,12.5\n545,377,12.0\n545,378,11.5\n545,379,11.0\n545,380,10.5\n545,381,10.0\n545,382,9.5\n545,383,9.0\n545,384,8.5\n545,385,8.0\n545,386,7.5\n545,387,7.0\n545,388,6.5\n545,389,6.0\n545,390,5.5\n545,391,5.0\n545,392,4.5\n545,393,4.0\n545,394,3.5\n545,395,3.0\n545,396,3.5\n545,397,4.0\n545,398,4.5\n545,399,5.0\n545,400,12.5\n545,401,12.0\n545,402,11.5\n545,403,11.0\n545,404,10.5\n545,405,10.0\n545,406,9.5\n545,407,9.0\n545,408,8.5\n545,409,8.0\n545,410,7.5\n545,411,7.0\n545,412,6.5\n545,413,6.0\n545,414,5.5\n545,415,5.0\n545,416,4.5\n545,417,4.0\n545,418,3.5\n545,419,3.0\n545,420,2.5\n545,421,3.0\n545,422,3.5\n545,423,4.0\n545,424,4.5\n545,425,12.0\n545,426,11.5\n545,427,11.0\n545,428,10.5\n545,429,10.0\n545,430,9.5\n545,431,9.0\n545,432,8.5\n545,433,8.0\n545,434,7.5\n545,435,7.0\n545,436,6.5\n545,437,6.0\n545,438,5.5\n545,439,5.0\n545,440,4.5\n545,441,4.0\n545,442,3.5\n545,443,3.0\n545,444,2.5\n545,445,2.0\n545,446,2.5\n545,447,3.0\n545,448,3.5\n545,449,4.0\n545,450,11.5\n545,451,11.0\n545,452,10.5\n545,453,10.0\n545,454,9.5\n545,455,9.0\n545,456,8.5\n545,457,8.0\n545,458,7.5\n545,459,7.0\n545,460,6.5\n545,461,6.0\n545,462,5.5\n545,463,5.0\n545,464,4.5\n545,465,4.0\n545,466,3.5\n545,467,3.0\n545,468,2.5\n545,469,2.0\n545,470,1.5\n545,471,2.0\n545,472,2.5\n545,473,3.0\n545,474,3.5\n545,475,11.0\n545,476,10.5\n545,477,10.0\n545,478,9.5\n545,479,9.0\n545,480,8.5\n545,481,8.0\n545,482,7.5\n545,483,7.0\n545,484,6.5\n545,485,6.0\n545,486,5.5\n545,487,5.0\n545,488,4.5\n545,489,4.0\n545,490,3.5\n545,491,3.0\n545,492,2.5\n545,493,2.0\n545,494,1.5\n545,495,1.0\n545,496,1.5\n545,497,2.0\n545,498,2.5\n545,499,3.0\n545,500,10.5\n545,501,10.0\n545,502,9.5\n545,503,9.0\n545,504,8.5\n545,505,8.0\n545,506,7.5\n545,507,7.0\n545,508,6.5\n545,509,6.0\n545,510,5.5\n545,511,5.0\n545,512,4.5\n545,513,4.0\n545,514,3.5\n545,515,3.0\n545,516,2.5\n545,517,2.0\n545,518,1.5\n545,519,1.0\n545,520,0.5\n545,521,1.0\n545,522,1.5\n545,523,2.0\n545,524,2.5\n545,525,10.0\n545,526,9.5\n545,527,9.0\n545,528,8.5\n545,529,8.0\n545,530,7.5\n545,531,7.0\n545,532,6.5\n545,533,6.0\n545,534,5.5\n545,535,5.0\n545,536,4.5\n545,537,4.0\n545,538,3.5\n545,539,3.0\n545,540,2.5\n545,541,2.0\n545,542,1.5\n545,543,1.0\n545,544,0.5\n545,545,0\n545,546,0.5\n545,547,1.0\n545,548,1.5\n545,549,2.0\n545,550,10.5\n545,551,10.0\n545,552,9.5\n545,553,9.0\n545,554,8.5\n545,555,8.0\n545,556,7.5\n545,557,7.0\n545,558,6.5\n545,559,6.0\n545,560,5.5\n545,561,5.0\n545,562,4.5\n545,563,4.0\n545,564,3.5\n545,565,3.0\n545,566,2.5\n545,567,2.0\n545,568,1.5\n545,569,1.0\n545,570,0.5\n545,571,1.0\n545,572,1.5\n545,573,2.0\n545,574,2.5\n545,575,11.0\n545,576,10.5\n545,577,10.0\n545,578,9.5\n545,579,9.0\n545,580,8.5\n545,581,8.0\n545,582,7.5\n545,583,7.0\n545,584,6.5\n545,585,6.0\n545,586,5.5\n545,587,5.0\n545,588,4.5\n545,589,4.0\n545,590,3.5\n545,591,3.0\n545,592,2.5\n545,593,2.0\n545,594,1.5\n545,595,1.0\n545,596,1.5\n545,597,2.0\n545,598,2.5\n545,599,3.0\n545,600,11.5\n545,601,11.0\n545,602,10.5\n545,603,10.0\n545,604,9.5\n545,605,9.0\n545,606,8.5\n545,607,8.0\n545,608,7.5\n545,609,7.0\n545,610,6.5\n545,611,6.0\n545,612,5.5\n545,613,5.0\n545,614,4.5\n545,615,4.0\n545,616,3.5\n545,617,3.0\n545,618,2.5\n545,619,2.0\n545,620,1.5\n545,621,2.0\n545,622,2.5\n545,623,3.0\n545,624,3.5\n546,0,21.0\n546,1,20.5\n546,2,20.0\n546,3,19.5\n546,4,19.0\n546,5,18.5\n546,6,18.0\n546,7,17.5\n546,8,17.0\n546,9,16.5\n546,10,16.0\n546,11,15.5\n546,12,15.0\n546,13,14.5\n546,14,14.0\n546,15,13.5\n546,16,13.0\n546,17,12.5\n546,18,12.0\n546,19,11.5\n546,20,11.0\n546,21,10.5\n546,22,11.0\n546,23,11.5\n546,24,12.0\n546,25,20.5\n546,26,20.0\n546,27,19.5\n546,28,19.0\n546,29,18.5\n546,30,18.0\n546,31,17.5\n546,32,17.0\n546,33,16.5\n546,34,16.0\n546,35,15.5\n546,36,15.0\n546,37,14.5\n546,38,14.0\n546,39,13.5\n546,40,13.0\n546,41,12.5\n546,42,12.0\n546,43,11.5\n546,44,11.0\n546,45,10.5\n546,46,10.0\n546,47,10.5\n546,48,11.0\n546,49,11.5\n546,50,20.0\n546,51,19.5\n546,52,19.0\n546,53,18.5\n546,54,18.0\n546,55,17.5\n546,56,17.0\n546,57,16.5\n546,58,16.0\n546,59,15.5\n546,60,15.0\n546,61,14.5\n546,62,14.0\n546,63,13.5\n546,64,13.0\n546,65,12.5\n546,66,12.0\n546,67,11.5\n546,68,11.0\n546,69,10.5\n546,70,10.0\n546,71,9.5\n546,72,10.0\n546,73,10.5\n546,74,11.0\n546,75,19.5\n546,76,19.0\n546,77,18.5\n546,78,18.0\n546,79,17.5\n546,80,17.0\n546,81,16.5\n546,82,16.0\n546,83,15.5\n546,84,15.0\n546,85,14.5\n546,86,14.0\n546,87,13.5\n546,88,13.0\n546,89,12.5\n546,90,12.0\n546,91,11.5\n546,92,11.0\n546,93,10.5\n546,94,10.0\n546,95,9.5\n546,96,9.0\n546,97,9.5\n546,98,10.0\n546,99,10.5\n546,100,19.0\n546,101,18.5\n546,102,18.0\n546,103,17.5\n546,104,17.0\n546,105,16.5\n546,106,16.0\n546,107,15.5\n546,108,15.0\n546,109,14.5\n546,110,14.0\n546,111,13.5\n546,112,13.0\n546,113,12.5\n546,114,12.0\n546,115,11.5\n546,116,11.0\n546,117,10.5\n546,118,10.0\n546,119,9.5\n546,120,9.0\n546,121,8.5\n546,122,9.0\n546,123,9.5\n546,124,10.0\n546,125,18.5\n546,126,18.0\n546,127,17.5\n546,128,17.0\n546,129,16.5\n546,130,16.0\n546,131,15.5\n546,132,15.0\n546,133,14.5\n546,134,14.0\n546,135,13.5\n546,136,13.0\n546,137,12.5\n546,138,12.0\n546,139,11.5\n546,140,11.0\n546,141,10.5\n546,142,10.0\n546,143,9.5\n546,144,9.0\n546,145,8.5\n546,146,8.0\n546,147,8.5\n546,148,9.0\n546,149,9.5\n546,150,18.0\n546,151,17.5\n546,152,17.0\n546,153,16.5\n546,154,16.0\n546,155,15.5\n546,156,15.0\n546,157,14.5\n546,158,14.0\n546,159,13.5\n546,160,13.0\n546,161,12.5\n546,162,12.0\n546,163,11.5\n546,164,11.0\n546,165,10.5\n546,166,10.0\n546,167,9.5\n546,168,9.0\n546,169,8.5\n546,170,8.0\n546,171,7.5\n546,172,8.0\n546,173,8.5\n546,174,9.0\n546,175,17.5\n546,176,17.0\n546,177,16.5\n546,178,16.0\n546,179,15.5\n546,180,15.0\n546,181,14.5\n546,182,14.0\n546,183,13.5\n546,184,13.0\n546,185,12.5\n546,186,12.0\n546,187,11.5\n546,188,11.0\n546,189,10.5\n546,190,10.0\n546,191,9.5\n546,192,9.0\n546,193,8.5\n546,194,8.0\n546,195,7.5\n546,196,7.0\n546,197,7.5\n546,198,8.0\n546,199,8.5\n546,200,17.0\n546,201,16.5\n546,202,16.0\n546,203,15.5\n546,204,15.0\n546,205,14.5\n546,206,14.0\n546,207,13.5\n546,208,13.0\n546,209,12.5\n546,210,12.0\n546,211,11.5\n546,212,11.0\n546,213,10.5\n546,214,10.0\n546,215,9.5\n546,216,9.0\n546,217,8.5\n546,218,8.0\n546,219,7.5\n546,220,7.0\n546,221,6.5\n546,222,7.0\n546,223,7.5\n546,224,8.0\n546,225,16.5\n546,226,16.0\n546,227,15.5\n546,228,15.0\n546,229,14.5\n546,230,14.0\n546,231,13.5\n546,232,13.0\n546,233,12.5\n546,234,12.0\n546,235,11.5\n546,236,11.0\n546,237,10.5\n546,238,10.0\n546,239,9.5\n546,240,9.0\n546,241,8.5\n546,242,8.0\n546,243,7.5\n546,244,7.0\n546,245,6.5\n546,246,6.0\n546,247,6.5\n546,248,7.0\n546,249,7.5\n546,250,16.0\n546,251,15.5\n546,252,15.0\n546,253,14.5\n546,254,14.0\n546,255,13.5\n546,256,13.0\n546,257,12.5\n546,258,12.0\n546,259,11.5\n546,260,11.0\n546,261,10.5\n546,262,10.0\n546,263,9.5\n546,264,9.0\n546,265,8.5\n546,266,8.0\n546,267,7.5\n546,268,7.0\n546,269,6.5\n546,270,6.0\n546,271,5.5\n546,272,6.0\n546,273,6.5\n546,274,7.0\n546,275,15.5\n546,276,15.0\n546,277,14.5\n546,278,14.0\n546,279,13.5\n546,280,13.0\n546,281,12.5\n546,282,12.0\n546,283,11.5\n546,284,11.0\n546,285,10.5\n546,286,10.0\n546,287,9.5\n546,288,9.0\n546,289,8.5\n546,290,8.0\n546,291,7.5\n546,292,7.0\n546,293,6.5\n546,294,6.0\n546,295,5.5\n546,296,5.0\n546,297,5.5\n546,298,6.0\n546,299,6.5\n546,300,15.0\n546,301,14.5\n546,302,14.0\n546,303,13.5\n546,304,13.0\n546,305,12.5\n546,306,12.0\n546,307,11.5\n546,308,11.0\n546,309,10.5\n546,310,10.0\n546,311,9.5\n546,312,9.0\n546,313,8.5\n546,314,8.0\n546,315,7.5\n546,316,7.0\n546,317,6.5\n546,318,6.0\n546,319,5.5\n546,320,5.0\n546,321,4.5\n546,322,5.0\n546,323,5.5\n546,324,6.0\n546,325,14.5\n546,326,14.0\n546,327,13.5\n546,328,13.0\n546,329,12.5\n546,330,12.0\n546,331,11.5\n546,332,11.0\n546,333,10.5\n546,334,10.0\n546,335,9.5\n546,336,9.0\n546,337,8.5\n546,338,8.0\n546,339,7.5\n546,340,7.0\n546,341,6.5\n546,342,6.0\n546,343,5.5\n546,344,5.0\n546,345,4.5\n546,346,4.0\n546,347,4.5\n546,348,5.0\n546,349,5.5\n546,350,14.0\n546,351,13.5\n546,352,13.0\n546,353,12.5\n546,354,12.0\n546,355,11.5\n546,356,11.0\n546,357,10.5\n546,358,10.0\n546,359,9.5\n546,360,9.0\n546,361,8.5\n546,362,8.0\n546,363,7.5\n546,364,7.0\n546,365,6.5\n546,366,6.0\n546,367,5.5\n546,368,5.0\n546,369,4.5\n546,370,4.0\n546,371,3.5\n546,372,4.0\n546,373,4.5\n546,374,5.0\n546,375,13.5\n546,376,13.0\n546,377,12.5\n546,378,12.0\n546,379,11.5\n546,380,11.0\n546,381,10.5\n546,382,10.0\n546,383,9.5\n546,384,9.0\n546,385,8.5\n546,386,8.0\n546,387,7.5\n546,388,7.0\n546,389,6.5\n546,390,6.0\n546,391,5.5\n546,392,5.0\n546,393,4.5\n546,394,4.0\n546,395,3.5\n546,396,3.0\n546,397,3.5\n546,398,4.0\n546,399,4.5\n546,400,13.0\n546,401,12.5\n546,402,12.0\n546,403,11.5\n546,404,11.0\n546,405,10.5\n546,406,10.0\n546,407,9.5\n546,408,9.0\n546,409,8.5\n546,410,8.0\n546,411,7.5\n546,412,7.0\n546,413,6.5\n546,414,6.0\n546,415,5.5\n546,416,5.0\n546,417,4.5\n546,418,4.0\n546,419,3.5\n546,420,3.0\n546,421,2.5\n546,422,3.0\n546,423,3.5\n546,424,4.0\n546,425,12.5\n546,426,12.0\n546,427,11.5\n546,428,11.0\n546,429,10.5\n546,430,10.0\n546,431,9.5\n546,432,9.0\n546,433,8.5\n546,434,8.0\n546,435,7.5\n546,436,7.0\n546,437,6.5\n546,438,6.0\n546,439,5.5\n546,440,5.0\n546,441,4.5\n546,442,4.0\n546,443,3.5\n546,444,3.0\n546,445,2.5\n546,446,2.0\n546,447,2.5\n546,448,3.0\n546,449,3.5\n546,450,12.0\n546,451,11.5\n546,452,11.0\n546,453,10.5\n546,454,10.0\n546,455,9.5\n546,456,9.0\n546,457,8.5\n546,458,8.0\n546,459,7.5\n546,460,7.0\n546,461,6.5\n546,462,6.0\n546,463,5.5\n546,464,5.0\n546,465,4.5\n546,466,4.0\n546,467,3.5\n546,468,3.0\n546,469,2.5\n546,470,2.0\n546,471,1.5\n546,472,2.0\n546,473,2.5\n546,474,3.0\n546,475,11.5\n546,476,11.0\n546,477,10.5\n546,478,10.0\n546,479,9.5\n546,480,9.0\n546,481,8.5\n546,482,8.0\n546,483,7.5\n546,484,7.0\n546,485,6.5\n546,486,6.0\n546,487,5.5\n546,488,5.0\n546,489,4.5\n546,490,4.0\n546,491,3.5\n546,492,3.0\n546,493,2.5\n546,494,2.0\n546,495,1.5\n546,496,1.0\n546,497,1.5\n546,498,2.0\n546,499,2.5\n546,500,11.0\n546,501,10.5\n546,502,10.0\n546,503,9.5\n546,504,9.0\n546,505,8.5\n546,506,8.0\n546,507,7.5\n546,508,7.0\n546,509,6.5\n546,510,6.0\n546,511,5.5\n546,512,5.0\n546,513,4.5\n546,514,4.0\n546,515,3.5\n546,516,3.0\n546,517,2.5\n546,518,2.0\n546,519,1.5\n546,520,1.0\n546,521,0.5\n546,522,1.0\n546,523,1.5\n546,524,2.0\n546,525,10.5\n546,526,10.0\n546,527,9.5\n546,528,9.0\n546,529,8.5\n546,530,8.0\n546,531,7.5\n546,532,7.0\n546,533,6.5\n546,534,6.0\n546,535,5.5\n546,536,5.0\n546,537,4.5\n546,538,4.0\n546,539,3.5\n546,540,3.0\n546,541,2.5\n546,542,2.0\n546,543,1.5\n546,544,1.0\n546,545,0.5\n546,546,0\n546,547,0.5\n546,548,1.0\n546,549,1.5\n546,550,11.0\n546,551,10.5\n546,552,10.0\n546,553,9.5\n546,554,9.0\n546,555,8.5\n546,556,8.0\n546,557,7.5\n546,558,7.0\n546,559,6.5\n546,560,6.0\n546,561,5.5\n546,562,5.0\n546,563,4.5\n546,564,4.0\n546,565,3.5\n546,566,3.0\n546,567,2.5\n546,568,2.0\n546,569,1.5\n546,570,1.0\n546,571,0.5\n546,572,1.0\n546,573,1.5\n546,574,2.0\n546,575,11.5\n546,576,11.0\n546,577,10.5\n546,578,10.0\n546,579,9.5\n546,580,9.0\n546,581,8.5\n546,582,8.0\n546,583,7.5\n546,584,7.0\n546,585,6.5\n546,586,6.0\n546,587,5.5\n546,588,5.0\n546,589,4.5\n546,590,4.0\n546,591,3.5\n546,592,3.0\n546,593,2.5\n546,594,2.0\n546,595,1.5\n546,596,1.0\n546,597,1.5\n546,598,2.0\n546,599,2.5\n546,600,12.0\n546,601,11.5\n546,602,11.0\n546,603,10.5\n546,604,10.0\n546,605,9.5\n546,606,9.0\n546,607,8.5\n546,608,8.0\n546,609,7.5\n546,610,7.0\n546,611,6.5\n546,612,6.0\n546,613,5.5\n546,614,5.0\n546,615,4.5\n546,616,4.0\n546,617,3.5\n546,618,3.0\n546,619,2.5\n546,620,2.0\n546,621,1.5\n546,622,2.0\n546,623,2.5\n546,624,3.0\n547,0,21.5\n547,1,21.0\n547,2,20.5\n547,3,20.0\n547,4,19.5\n547,5,19.0\n547,6,18.5\n547,7,18.0\n547,8,17.5\n547,9,17.0\n547,10,16.5\n547,11,16.0\n547,12,15.5\n547,13,15.0\n547,14,14.5\n547,15,14.0\n547,16,13.5\n547,17,13.0\n547,18,12.5\n547,19,12.0\n547,20,11.5\n547,21,11.0\n547,22,10.5\n547,23,11.0\n547,24,11.5\n547,25,21.0\n547,26,20.5\n547,27,20.0\n547,28,19.5\n547,29,19.0\n547,30,18.5\n547,31,18.0\n547,32,17.5\n547,33,17.0\n547,34,16.5\n547,35,16.0\n547,36,15.5\n547,37,15.0\n547,38,14.5\n547,39,14.0\n547,40,13.5\n547,41,13.0\n547,42,12.5\n547,43,12.0\n547,44,11.5\n547,45,11.0\n547,46,10.5\n547,47,10.0\n547,48,10.5\n547,49,11.0\n547,50,20.5\n547,51,20.0\n547,52,19.5\n547,53,19.0\n547,54,18.5\n547,55,18.0\n547,56,17.5\n547,57,17.0\n547,58,16.5\n547,59,16.0\n547,60,15.5\n547,61,15.0\n547,62,14.5\n547,63,14.0\n547,64,13.5\n547,65,13.0\n547,66,12.5\n547,67,12.0\n547,68,11.5\n547,69,11.0\n547,70,10.5\n547,71,10.0\n547,72,9.5\n547,73,10.0\n547,74,10.5\n547,75,20.0\n547,76,19.5\n547,77,19.0\n547,78,18.5\n547,79,18.0\n547,80,17.5\n547,81,17.0\n547,82,16.5\n547,83,16.0\n547,84,15.5\n547,85,15.0\n547,86,14.5\n547,87,14.0\n547,88,13.5\n547,89,13.0\n547,90,12.5\n547,91,12.0\n547,92,11.5\n547,93,11.0\n547,94,10.5\n547,95,10.0\n547,96,9.5\n547,97,9.0\n547,98,9.5\n547,99,10.0\n547,100,19.5\n547,101,19.0\n547,102,18.5\n547,103,18.0\n547,104,17.5\n547,105,17.0\n547,106,16.5\n547,107,16.0\n547,108,15.5\n547,109,15.0\n547,110,14.5\n547,111,14.0\n547,112,13.5\n547,113,13.0\n547,114,12.5\n547,115,12.0\n547,116,11.5\n547,117,11.0\n547,118,10.5\n547,119,10.0\n547,120,9.5\n547,121,9.0\n547,122,8.5\n547,123,9.0\n547,124,9.5\n547,125,19.0\n547,126,18.5\n547,127,18.0\n547,128,17.5\n547,129,17.0\n547,130,16.5\n547,131,16.0\n547,132,15.5\n547,133,15.0\n547,134,14.5\n547,135,14.0\n547,136,13.5\n547,137,13.0\n547,138,12.5\n547,139,12.0\n547,140,11.5\n547,141,11.0\n547,142,10.5\n547,143,10.0\n547,144,9.5\n547,145,9.0\n547,146,8.5\n547,147,8.0\n547,148,8.5\n547,149,9.0\n547,150,18.5\n547,151,18.0\n547,152,17.5\n547,153,17.0\n547,154,16.5\n547,155,16.0\n547,156,15.5\n547,157,15.0\n547,158,14.5\n547,159,14.0\n547,160,13.5\n547,161,13.0\n547,162,12.5\n547,163,12.0\n547,164,11.5\n547,165,11.0\n547,166,10.5\n547,167,10.0\n547,168,9.5\n547,169,9.0\n547,170,8.5\n547,171,8.0\n547,172,7.5\n547,173,8.0\n547,174,8.5\n547,175,18.0\n547,176,17.5\n547,177,17.0\n547,178,16.5\n547,179,16.0\n547,180,15.5\n547,181,15.0\n547,182,14.5\n547,183,14.0\n547,184,13.5\n547,185,13.0\n547,186,12.5\n547,187,12.0\n547,188,11.5\n547,189,11.0\n547,190,10.5\n547,191,10.0\n547,192,9.5\n547,193,9.0\n547,194,8.5\n547,195,8.0\n547,196,7.5\n547,197,7.0\n547,198,7.5\n547,199,8.0\n547,200,17.5\n547,201,17.0\n547,202,16.5\n547,203,16.0\n547,204,15.5\n547,205,15.0\n547,206,14.5\n547,207,14.0\n547,208,13.5\n547,209,13.0\n547,210,12.5\n547,211,12.0\n547,212,11.5\n547,213,11.0\n547,214,10.5\n547,215,10.0\n547,216,9.5\n547,217,9.0\n547,218,8.5\n547,219,8.0\n547,220,7.5\n547,221,7.0\n547,222,6.5\n547,223,7.0\n547,224,7.5\n547,225,17.0\n547,226,16.5\n547,227,16.0\n547,228,15.5\n547,229,15.0\n547,230,14.5\n547,231,14.0\n547,232,13.5\n547,233,13.0\n547,234,12.5\n547,235,12.0\n547,236,11.5\n547,237,11.0\n547,238,10.5\n547,239,10.0\n547,240,9.5\n547,241,9.0\n547,242,8.5\n547,243,8.0\n547,244,7.5\n547,245,7.0\n547,246,6.5\n547,247,6.0\n547,248,6.5\n547,249,7.0\n547,250,16.5\n547,251,16.0\n547,252,15.5\n547,253,15.0\n547,254,14.5\n547,255,14.0\n547,256,13.5\n547,257,13.0\n547,258,12.5\n547,259,12.0\n547,260,11.5\n547,261,11.0\n547,262,10.5\n547,263,10.0\n547,264,9.5\n547,265,9.0\n547,266,8.5\n547,267,8.0\n547,268,7.5\n547,269,7.0\n547,270,6.5\n547,271,6.0\n547,272,5.5\n547,273,6.0\n547,274,6.5\n547,275,16.0\n547,276,15.5\n547,277,15.0\n547,278,14.5\n547,279,14.0\n547,280,13.5\n547,281,13.0\n547,282,12.5\n547,283,12.0\n547,284,11.5\n547,285,11.0\n547,286,10.5\n547,287,10.0\n547,288,9.5\n547,289,9.0\n547,290,8.5\n547,291,8.0\n547,292,7.5\n547,293,7.0\n547,294,6.5\n547,295,6.0\n547,296,5.5\n547,297,5.0\n547,298,5.5\n547,299,6.0\n547,300,15.5\n547,301,15.0\n547,302,14.5\n547,303,14.0\n547,304,13.5\n547,305,13.0\n547,306,12.5\n547,307,12.0\n547,308,11.5\n547,309,11.0\n547,310,10.5\n547,311,10.0\n547,312,9.5\n547,313,9.0\n547,314,8.5\n547,315,8.0\n547,316,7.5\n547,317,7.0\n547,318,6.5\n547,319,6.0\n547,320,5.5\n547,321,5.0\n547,322,4.5\n547,323,5.0\n547,324,5.5\n547,325,15.0\n547,326,14.5\n547,327,14.0\n547,328,13.5\n547,329,13.0\n547,330,12.5\n547,331,12.0\n547,332,11.5\n547,333,11.0\n547,334,10.5\n547,335,10.0\n547,336,9.5\n547,337,9.0\n547,338,8.5\n547,339,8.0\n547,340,7.5\n547,341,7.0\n547,342,6.5\n547,343,6.0\n547,344,5.5\n547,345,5.0\n547,346,4.5\n547,347,4.0\n547,348,4.5\n547,349,5.0\n547,350,14.5\n547,351,14.0\n547,352,13.5\n547,353,13.0\n547,354,12.5\n547,355,12.0\n547,356,11.5\n547,357,11.0\n547,358,10.5\n547,359,10.0\n547,360,9.5\n547,361,9.0\n547,362,8.5\n547,363,8.0\n547,364,7.5\n547,365,7.0\n547,366,6.5\n547,367,6.0\n547,368,5.5\n547,369,5.0\n547,370,4.5\n547,371,4.0\n547,372,3.5\n547,373,4.0\n547,374,4.5\n547,375,14.0\n547,376,13.5\n547,377,13.0\n547,378,12.5\n547,379,12.0\n547,380,11.5\n547,381,11.0\n547,382,10.5\n547,383,10.0\n547,384,9.5\n547,385,9.0\n547,386,8.5\n547,387,8.0\n547,388,7.5\n547,389,7.0\n547,390,6.5\n547,391,6.0\n547,392,5.5\n547,393,5.0\n547,394,4.5\n547,395,4.0\n547,396,3.5\n547,397,3.0\n547,398,3.5\n547,399,4.0\n547,400,13.5\n547,401,13.0\n547,402,12.5\n547,403,12.0\n547,404,11.5\n547,405,11.0\n547,406,10.5\n547,407,10.0\n547,408,9.5\n547,409,9.0\n547,410,8.5\n547,411,8.0\n547,412,7.5\n547,413,7.0\n547,414,6.5\n547,415,6.0\n547,416,5.5\n547,417,5.0\n547,418,4.5\n547,419,4.0\n547,420,3.5\n547,421,3.0\n547,422,2.5\n547,423,3.0\n547,424,3.5\n547,425,13.0\n547,426,12.5\n547,427,12.0\n547,428,11.5\n547,429,11.0\n547,430,10.5\n547,431,10.0\n547,432,9.5\n547,433,9.0\n547,434,8.5\n547,435,8.0\n547,436,7.5\n547,437,7.0\n547,438,6.5\n547,439,6.0\n547,440,5.5\n547,441,5.0\n547,442,4.5\n547,443,4.0\n547,444,3.5\n547,445,3.0\n547,446,2.5\n547,447,2.0\n547,448,2.5\n547,449,3.0\n547,450,12.5\n547,451,12.0\n547,452,11.5\n547,453,11.0\n547,454,10.5\n547,455,10.0\n547,456,9.5\n547,457,9.0\n547,458,8.5\n547,459,8.0\n547,460,7.5\n547,461,7.0\n547,462,6.5\n547,463,6.0\n547,464,5.5\n547,465,5.0\n547,466,4.5\n547,467,4.0\n547,468,3.5\n547,469,3.0\n547,470,2.5\n547,471,2.0\n547,472,1.5\n547,473,2.0\n547,474,2.5\n547,475,12.0\n547,476,11.5\n547,477,11.0\n547,478,10.5\n547,479,10.0\n547,480,9.5\n547,481,9.0\n547,482,8.5\n547,483,8.0\n547,484,7.5\n547,485,7.0\n547,486,6.5\n547,487,6.0\n547,488,5.5\n547,489,5.0\n547,490,4.5\n547,491,4.0\n547,492,3.5\n547,493,3.0\n547,494,2.5\n547,495,2.0\n547,496,1.5\n547,497,1.0\n547,498,1.5\n547,499,2.0\n547,500,11.5\n547,501,11.0\n547,502,10.5\n547,503,10.0\n547,504,9.5\n547,505,9.0\n547,506,8.5\n547,507,8.0\n547,508,7.5\n547,509,7.0\n547,510,6.5\n547,511,6.0\n547,512,5.5\n547,513,5.0\n547,514,4.5\n547,515,4.0\n547,516,3.5\n547,517,3.0\n547,518,2.5\n547,519,2.0\n547,520,1.5\n547,521,1.0\n547,522,0.5\n547,523,1.0\n547,524,1.5\n547,525,11.0\n547,526,10.5\n547,527,10.0\n547,528,9.5\n547,529,9.0\n547,530,8.5\n547,531,8.0\n547,532,7.5\n547,533,7.0\n547,534,6.5\n547,535,6.0\n547,536,5.5\n547,537,5.0\n547,538,4.5\n547,539,4.0\n547,540,3.5\n547,541,3.0\n547,542,2.5\n547,543,2.0\n547,544,1.5\n547,545,1.0\n547,546,0.5\n547,547,0\n547,548,0.5\n547,549,1.0\n547,550,11.5\n547,551,11.0\n547,552,10.5\n547,553,10.0\n547,554,9.5\n547,555,9.0\n547,556,8.5\n547,557,8.0\n547,558,7.5\n547,559,7.0\n547,560,6.5\n547,561,6.0\n547,562,5.5\n547,563,5.0\n547,564,4.5\n547,565,4.0\n547,566,3.5\n547,567,3.0\n547,568,2.5\n547,569,2.0\n547,570,1.5\n547,571,1.0\n547,572,0.5\n547,573,1.0\n547,574,1.5\n547,575,12.0\n547,576,11.5\n547,577,11.0\n547,578,10.5\n547,579,10.0\n547,580,9.5\n547,581,9.0\n547,582,8.5\n547,583,8.0\n547,584,7.5\n547,585,7.0\n547,586,6.5\n547,587,6.0\n547,588,5.5\n547,589,5.0\n547,590,4.5\n547,591,4.0\n547,592,3.5\n547,593,3.0\n547,594,2.5\n547,595,2.0\n547,596,1.5\n547,597,1.0\n547,598,1.5\n547,599,2.0\n547,600,12.5\n547,601,12.0\n547,602,11.5\n547,603,11.0\n547,604,10.5\n547,605,10.0\n547,606,9.5\n547,607,9.0\n547,608,8.5\n547,609,8.0\n547,610,7.5\n547,611,7.0\n547,612,6.5\n547,613,6.0\n547,614,5.5\n547,615,5.0\n547,616,4.5\n547,617,4.0\n547,618,3.5\n547,619,3.0\n547,620,2.5\n547,621,2.0\n547,622,1.5\n547,623,2.0\n547,624,2.5\n548,0,22.0\n548,1,21.5\n548,2,21.0\n548,3,20.5\n548,4,20.0\n548,5,19.5\n548,6,19.0\n548,7,18.5\n548,8,18.0\n548,9,17.5\n548,10,17.0\n548,11,16.5\n548,12,16.0\n548,13,15.5\n548,14,15.0\n548,15,14.5\n548,16,14.0\n548,17,13.5\n548,18,13.0\n548,19,12.5\n548,20,12.0\n548,21,11.5\n548,22,11.0\n548,23,10.5\n548,24,11.0\n548,25,21.5\n548,26,21.0\n548,27,20.5\n548,28,20.0\n548,29,19.5\n548,30,19.0\n548,31,18.5\n548,32,18.0\n548,33,17.5\n548,34,17.0\n548,35,16.5\n548,36,16.0\n548,37,15.5\n548,38,15.0\n548,39,14.5\n548,40,14.0\n548,41,13.5\n548,42,13.0\n548,43,12.5\n548,44,12.0\n548,45,11.5\n548,46,11.0\n548,47,10.5\n548,48,10.0\n548,49,10.5\n548,50,21.0\n548,51,20.5\n548,52,20.0\n548,53,19.5\n548,54,19.0\n548,55,18.5\n548,56,18.0\n548,57,17.5\n548,58,17.0\n548,59,16.5\n548,60,16.0\n548,61,15.5\n548,62,15.0\n548,63,14.5\n548,64,14.0\n548,65,13.5\n548,66,13.0\n548,67,12.5\n548,68,12.0\n548,69,11.5\n548,70,11.0\n548,71,10.5\n548,72,10.0\n548,73,9.5\n548,74,10.0\n548,75,20.5\n548,76,20.0\n548,77,19.5\n548,78,19.0\n548,79,18.5\n548,80,18.0\n548,81,17.5\n548,82,17.0\n548,83,16.5\n548,84,16.0\n548,85,15.5\n548,86,15.0\n548,87,14.5\n548,88,14.0\n548,89,13.5\n548,90,13.0\n548,91,12.5\n548,92,12.0\n548,93,11.5\n548,94,11.0\n548,95,10.5\n548,96,10.0\n548,97,9.5\n548,98,9.0\n548,99,9.5\n548,100,20.0\n548,101,19.5\n548,102,19.0\n548,103,18.5\n548,104,18.0\n548,105,17.5\n548,106,17.0\n548,107,16.5\n548,108,16.0\n548,109,15.5\n548,110,15.0\n548,111,14.5\n548,112,14.0\n548,113,13.5\n548,114,13.0\n548,115,12.5\n548,116,12.0\n548,117,11.5\n548,118,11.0\n548,119,10.5\n548,120,10.0\n548,121,9.5\n548,122,9.0\n548,123,8.5\n548,124,9.0\n548,125,19.5\n548,126,19.0\n548,127,18.5\n548,128,18.0\n548,129,17.5\n548,130,17.0\n548,131,16.5\n548,132,16.0\n548,133,15.5\n548,134,15.0\n548,135,14.5\n548,136,14.0\n548,137,13.5\n548,138,13.0\n548,139,12.5\n548,140,12.0\n548,141,11.5\n548,142,11.0\n548,143,10.5\n548,144,10.0\n548,145,9.5\n548,146,9.0\n548,147,8.5\n548,148,8.0\n548,149,8.5\n548,150,19.0\n548,151,18.5\n548,152,18.0\n548,153,17.5\n548,154,17.0\n548,155,16.5\n548,156,16.0\n548,157,15.5\n548,158,15.0\n548,159,14.5\n548,160,14.0\n548,161,13.5\n548,162,13.0\n548,163,12.5\n548,164,12.0\n548,165,11.5\n548,166,11.0\n548,167,10.5\n548,168,10.0\n548,169,9.5\n548,170,9.0\n548,171,8.5\n548,172,8.0\n548,173,7.5\n548,174,8.0\n548,175,18.5\n548,176,18.0\n548,177,17.5\n548,178,17.0\n548,179,16.5\n548,180,16.0\n548,181,15.5\n548,182,15.0\n548,183,14.5\n548,184,14.0\n548,185,13.5\n548,186,13.0\n548,187,12.5\n548,188,12.0\n548,189,11.5\n548,190,11.0\n548,191,10.5\n548,192,10.0\n548,193,9.5\n548,194,9.0\n548,195,8.5\n548,196,8.0\n548,197,7.5\n548,198,7.0\n548,199,7.5\n548,200,18.0\n548,201,17.5\n548,202,17.0\n548,203,16.5\n548,204,16.0\n548,205,15.5\n548,206,15.0\n548,207,14.5\n548,208,14.0\n548,209,13.5\n548,210,13.0\n548,211,12.5\n548,212,12.0\n548,213,11.5\n548,214,11.0\n548,215,10.5\n548,216,10.0\n548,217,9.5\n548,218,9.0\n548,219,8.5\n548,220,8.0\n548,221,7.5\n548,222,7.0\n548,223,6.5\n548,224,7.0\n548,225,17.5\n548,226,17.0\n548,227,16.5\n548,228,16.0\n548,229,15.5\n548,230,15.0\n548,231,14.5\n548,232,14.0\n548,233,13.5\n548,234,13.0\n548,235,12.5\n548,236,12.0\n548,237,11.5\n548,238,11.0\n548,239,10.5\n548,240,10.0\n548,241,9.5\n548,242,9.0\n548,243,8.5\n548,244,8.0\n548,245,7.5\n548,246,7.0\n548,247,6.5\n548,248,6.0\n548,249,6.5\n548,250,17.0\n548,251,16.5\n548,252,16.0\n548,253,15.5\n548,254,15.0\n548,255,14.5\n548,256,14.0\n548,257,13.5\n548,258,13.0\n548,259,12.5\n548,260,12.0\n548,261,11.5\n548,262,11.0\n548,263,10.5\n548,264,10.0\n548,265,9.5\n548,266,9.0\n548,267,8.5\n548,268,8.0\n548,269,7.5\n548,270,7.0\n548,271,6.5\n548,272,6.0\n548,273,5.5\n548,274,6.0\n548,275,16.5\n548,276,16.0\n548,277,15.5\n548,278,15.0\n548,279,14.5\n548,280,14.0\n548,281,13.5\n548,282,13.0\n548,283,12.5\n548,284,12.0\n548,285,11.5\n548,286,11.0\n548,287,10.5\n548,288,10.0\n548,289,9.5\n548,290,9.0\n548,291,8.5\n548,292,8.0\n548,293,7.5\n548,294,7.0\n548,295,6.5\n548,296,6.0\n548,297,5.5\n548,298,5.0\n548,299,5.5\n548,300,16.0\n548,301,15.5\n548,302,15.0\n548,303,14.5\n548,304,14.0\n548,305,13.5\n548,306,13.0\n548,307,12.5\n548,308,12.0\n548,309,11.5\n548,310,11.0\n548,311,10.5\n548,312,10.0\n548,313,9.5\n548,314,9.0\n548,315,8.5\n548,316,8.0\n548,317,7.5\n548,318,7.0\n548,319,6.5\n548,320,6.0\n548,321,5.5\n548,322,5.0\n548,323,4.5\n548,324,5.0\n548,325,15.5\n548,326,15.0\n548,327,14.5\n548,328,14.0\n548,329,13.5\n548,330,13.0\n548,331,12.5\n548,332,12.0\n548,333,11.5\n548,334,11.0\n548,335,10.5\n548,336,10.0\n548,337,9.5\n548,338,9.0\n548,339,8.5\n548,340,8.0\n548,341,7.5\n548,342,7.0\n548,343,6.5\n548,344,6.0\n548,345,5.5\n548,346,5.0\n548,347,4.5\n548,348,4.0\n548,349,4.5\n548,350,15.0\n548,351,14.5\n548,352,14.0\n548,353,13.5\n548,354,13.0\n548,355,12.5\n548,356,12.0\n548,357,11.5\n548,358,11.0\n548,359,10.5\n548,360,10.0\n548,361,9.5\n548,362,9.0\n548,363,8.5\n548,364,8.0\n548,365,7.5\n548,366,7.0\n548,367,6.5\n548,368,6.0\n548,369,5.5\n548,370,5.0\n548,371,4.5\n548,372,4.0\n548,373,3.5\n548,374,4.0\n548,375,14.5\n548,376,14.0\n548,377,13.5\n548,378,13.0\n548,379,12.5\n548,380,12.0\n548,381,11.5\n548,382,11.0\n548,383,10.5\n548,384,10.0\n548,385,9.5\n548,386,9.0\n548,387,8.5\n548,388,8.0\n548,389,7.5\n548,390,7.0\n548,391,6.5\n548,392,6.0\n548,393,5.5\n548,394,5.0\n548,395,4.5\n548,396,4.0\n548,397,3.5\n548,398,3.0\n548,399,3.5\n548,400,14.0\n548,401,13.5\n548,402,13.0\n548,403,12.5\n548,404,12.0\n548,405,11.5\n548,406,11.0\n548,407,10.5\n548,408,10.0\n548,409,9.5\n548,410,9.0\n548,411,8.5\n548,412,8.0\n548,413,7.5\n548,414,7.0\n548,415,6.5\n548,416,6.0\n548,417,5.5\n548,418,5.0\n548,419,4.5\n548,420,4.0\n548,421,3.5\n548,422,3.0\n548,423,2.5\n548,424,3.0\n548,425,13.5\n548,426,13.0\n548,427,12.5\n548,428,12.0\n548,429,11.5\n548,430,11.0\n548,431,10.5\n548,432,10.0\n548,433,9.5\n548,434,9.0\n548,435,8.5\n548,436,8.0\n548,437,7.5\n548,438,7.0\n548,439,6.5\n548,440,6.0\n548,441,5.5\n548,442,5.0\n548,443,4.5\n548,444,4.0\n548,445,3.5\n548,446,3.0\n548,447,2.5\n548,448,2.0\n548,449,2.5\n548,450,13.0\n548,451,12.5\n548,452,12.0\n548,453,11.5\n548,454,11.0\n548,455,10.5\n548,456,10.0\n548,457,9.5\n548,458,9.0\n548,459,8.5\n548,460,8.0\n548,461,7.5\n548,462,7.0\n548,463,6.5\n548,464,6.0\n548,465,5.5\n548,466,5.0\n548,467,4.5\n548,468,4.0\n548,469,3.5\n548,470,3.0\n548,471,2.5\n548,472,2.0\n548,473,1.5\n548,474,2.0\n548,475,12.5\n548,476,12.0\n548,477,11.5\n548,478,11.0\n548,479,10.5\n548,480,10.0\n548,481,9.5\n548,482,9.0\n548,483,8.5\n548,484,8.0\n548,485,7.5\n548,486,7.0\n548,487,6.5\n548,488,6.0\n548,489,5.5\n548,490,5.0\n548,491,4.5\n548,492,4.0\n548,493,3.5\n548,494,3.0\n548,495,2.5\n548,496,2.0\n548,497,1.5\n548,498,1.0\n548,499,1.5\n548,500,12.0\n548,501,11.5\n548,502,11.0\n548,503,10.5\n548,504,10.0\n548,505,9.5\n548,506,9.0\n548,507,8.5\n548,508,8.0\n548,509,7.5\n548,510,7.0\n548,511,6.5\n548,512,6.0\n548,513,5.5\n548,514,5.0\n548,515,4.5\n548,516,4.0\n548,517,3.5\n548,518,3.0\n548,519,2.5\n548,520,2.0\n548,521,1.5\n548,522,1.0\n548,523,0.5\n548,524,1.0\n548,525,11.5\n548,526,11.0\n548,527,10.5\n548,528,10.0\n548,529,9.5\n548,530,9.0\n548,531,8.5\n548,532,8.0\n548,533,7.5\n548,534,7.0\n548,535,6.5\n548,536,6.0\n548,537,5.5\n548,538,5.0\n548,539,4.5\n548,540,4.0\n548,541,3.5\n548,542,3.0\n548,543,2.5\n548,544,2.0\n548,545,1.5\n548,546,1.0\n548,547,0.5\n548,548,0\n548,549,0.5\n548,550,12.0\n548,551,11.5\n548,552,11.0\n548,553,10.5\n548,554,10.0\n548,555,9.5\n548,556,9.0\n548,557,8.5\n548,558,8.0\n548,559,7.5\n548,560,7.0\n548,561,6.5\n548,562,6.0\n548,563,5.5\n548,564,5.0\n548,565,4.5\n548,566,4.0\n548,567,3.5\n548,568,3.0\n548,569,2.5\n548,570,2.0\n548,571,1.5\n548,572,1.0\n548,573,0.5\n548,574,1.0\n548,575,12.5\n548,576,12.0\n548,577,11.5\n548,578,11.0\n548,579,10.5\n548,580,10.0\n548,581,9.5\n548,582,9.0\n548,583,8.5\n548,584,8.0\n548,585,7.5\n548,586,7.0\n548,587,6.5\n548,588,6.0\n548,589,5.5\n548,590,5.0\n548,591,4.5\n548,592,4.0\n548,593,3.5\n548,594,3.0\n548,595,2.5\n548,596,2.0\n548,597,1.5\n548,598,1.0\n548,599,1.5\n548,600,13.0\n548,601,12.5\n548,602,12.0\n548,603,11.5\n548,604,11.0\n548,605,10.5\n548,606,10.0\n548,607,9.5\n548,608,9.0\n548,609,8.5\n548,610,8.0\n548,611,7.5\n548,612,7.0\n548,613,6.5\n548,614,6.0\n548,615,5.5\n548,616,5.0\n548,617,4.5\n548,618,4.0\n548,619,3.5\n548,620,3.0\n548,621,2.5\n548,622,2.0\n548,623,1.5\n548,624,2.0\n549,0,22.5\n549,1,22.0\n549,2,21.5\n549,3,21.0\n549,4,20.5\n549,5,20.0\n549,6,19.5\n549,7,19.0\n549,8,18.5\n549,9,18.0\n549,10,17.5\n549,11,17.0\n549,12,16.5\n549,13,16.0\n549,14,15.5\n549,15,15.0\n549,16,14.5\n549,17,14.0\n549,18,13.5\n549,19,13.0\n549,20,12.5\n549,21,12.0\n549,22,11.5\n549,23,11.0\n549,24,10.5\n549,25,22.0\n549,26,21.5\n549,27,21.0\n549,28,20.5\n549,29,20.0\n549,30,19.5\n549,31,19.0\n549,32,18.5\n549,33,18.0\n549,34,17.5\n549,35,17.0\n549,36,16.5\n549,37,16.0\n549,38,15.5\n549,39,15.0\n549,40,14.5\n549,41,14.0\n549,42,13.5\n549,43,13.0\n549,44,12.5\n549,45,12.0\n549,46,11.5\n549,47,11.0\n549,48,10.5\n549,49,10.0\n549,50,21.5\n549,51,21.0\n549,52,20.5\n549,53,20.0\n549,54,19.5\n549,55,19.0\n549,56,18.5\n549,57,18.0\n549,58,17.5\n549,59,17.0\n549,60,16.5\n549,61,16.0\n549,62,15.5\n549,63,15.0\n549,64,14.5\n549,65,14.0\n549,66,13.5\n549,67,13.0\n549,68,12.5\n549,69,12.0\n549,70,11.5\n549,71,11.0\n549,72,10.5\n549,73,10.0\n549,74,9.5\n549,75,21.0\n549,76,20.5\n549,77,20.0\n549,78,19.5\n549,79,19.0\n549,80,18.5\n549,81,18.0\n549,82,17.5\n549,83,17.0\n549,84,16.5\n549,85,16.0\n549,86,15.5\n549,87,15.0\n549,88,14.5\n549,89,14.0\n549,90,13.5\n549,91,13.0\n549,92,12.5\n549,93,12.0\n549,94,11.5\n549,95,11.0\n549,96,10.5\n549,97,10.0\n549,98,9.5\n549,99,9.0\n549,100,20.5\n549,101,20.0\n549,102,19.5\n549,103,19.0\n549,104,18.5\n549,105,18.0\n549,106,17.5\n549,107,17.0\n549,108,16.5\n549,109,16.0\n549,110,15.5\n549,111,15.0\n549,112,14.5\n549,113,14.0\n549,114,13.5\n549,115,13.0\n549,116,12.5\n549,117,12.0\n549,118,11.5\n549,119,11.0\n549,120,10.5\n549,121,10.0\n549,122,9.5\n549,123,9.0\n549,124,8.5\n549,125,20.0\n549,126,19.5\n549,127,19.0\n549,128,18.5\n549,129,18.0\n549,130,17.5\n549,131,17.0\n549,132,16.5\n549,133,16.0\n549,134,15.5\n549,135,15.0\n549,136,14.5\n549,137,14.0\n549,138,13.5\n549,139,13.0\n549,140,12.5\n549,141,12.0\n549,142,11.5\n549,143,11.0\n549,144,10.5\n549,145,10.0\n549,146,9.5\n549,147,9.0\n549,148,8.5\n549,149,8.0\n549,150,19.5\n549,151,19.0\n549,152,18.5\n549,153,18.0\n549,154,17.5\n549,155,17.0\n549,156,16.5\n549,157,16.0\n549,158,15.5\n549,159,15.0\n549,160,14.5\n549,161,14.0\n549,162,13.5\n549,163,13.0\n549,164,12.5\n549,165,12.0\n549,166,11.5\n549,167,11.0\n549,168,10.5\n549,169,10.0\n549,170,9.5\n549,171,9.0\n549,172,8.5\n549,173,8.0\n549,174,7.5\n549,175,19.0\n549,176,18.5\n549,177,18.0\n549,178,17.5\n549,179,17.0\n549,180,16.5\n549,181,16.0\n549,182,15.5\n549,183,15.0\n549,184,14.5\n549,185,14.0\n549,186,13.5\n549,187,13.0\n549,188,12.5\n549,189,12.0\n549,190,11.5\n549,191,11.0\n549,192,10.5\n549,193,10.0\n549,194,9.5\n549,195,9.0\n549,196,8.5\n549,197,8.0\n549,198,7.5\n549,199,7.0\n549,200,18.5\n549,201,18.0\n549,202,17.5\n549,203,17.0\n549,204,16.5\n549,205,16.0\n549,206,15.5\n549,207,15.0\n549,208,14.5\n549,209,14.0\n549,210,13.5\n549,211,13.0\n549,212,12.5\n549,213,12.0\n549,214,11.5\n549,215,11.0\n549,216,10.5\n549,217,10.0\n549,218,9.5\n549,219,9.0\n549,220,8.5\n549,221,8.0\n549,222,7.5\n549,223,7.0\n549,224,6.5\n549,225,18.0\n549,226,17.5\n549,227,17.0\n549,228,16.5\n549,229,16.0\n549,230,15.5\n549,231,15.0\n549,232,14.5\n549,233,14.0\n549,234,13.5\n549,235,13.0\n549,236,12.5\n549,237,12.0\n549,238,11.5\n549,239,11.0\n549,240,10.5\n549,241,10.0\n549,242,9.5\n549,243,9.0\n549,244,8.5\n549,245,8.0\n549,246,7.5\n549,247,7.0\n549,248,6.5\n549,249,6.0\n549,250,17.5\n549,251,17.0\n549,252,16.5\n549,253,16.0\n549,254,15.5\n549,255,15.0\n549,256,14.5\n549,257,14.0\n549,258,13.5\n549,259,13.0\n549,260,12.5\n549,261,12.0\n549,262,11.5\n549,263,11.0\n549,264,10.5\n549,265,10.0\n549,266,9.5\n549,267,9.0\n549,268,8.5\n549,269,8.0\n549,270,7.5\n549,271,7.0\n549,272,6.5\n549,273,6.0\n549,274,5.5\n549,275,17.0\n549,276,16.5\n549,277,16.0\n549,278,15.5\n549,279,15.0\n549,280,14.5\n549,281,14.0\n549,282,13.5\n549,283,13.0\n549,284,12.5\n549,285,12.0\n549,286,11.5\n549,287,11.0\n549,288,10.5\n549,289,10.0\n549,290,9.5\n549,291,9.0\n549,292,8.5\n549,293,8.0\n549,294,7.5\n549,295,7.0\n549,296,6.5\n549,297,6.0\n549,298,5.5\n549,299,5.0\n549,300,16.5\n549,301,16.0\n549,302,15.5\n549,303,15.0\n549,304,14.5\n549,305,14.0\n549,306,13.5\n549,307,13.0\n549,308,12.5\n549,309,12.0\n549,310,11.5\n549,311,11.0\n549,312,10.5\n549,313,10.0\n549,314,9.5\n549,315,9.0\n549,316,8.5\n549,317,8.0\n549,318,7.5\n549,319,7.0\n549,320,6.5\n549,321,6.0\n549,322,5.5\n549,323,5.0\n549,324,4.5\n549,325,16.0\n549,326,15.5\n549,327,15.0\n549,328,14.5\n549,329,14.0\n549,330,13.5\n549,331,13.0\n549,332,12.5\n549,333,12.0\n549,334,11.5\n549,335,11.0\n549,336,10.5\n549,337,10.0\n549,338,9.5\n549,339,9.0\n549,340,8.5\n549,341,8.0\n549,342,7.5\n549,343,7.0\n549,344,6.5\n549,345,6.0\n549,346,5.5\n549,347,5.0\n549,348,4.5\n549,349,4.0\n549,350,15.5\n549,351,15.0\n549,352,14.5\n549,353,14.0\n549,354,13.5\n549,355,13.0\n549,356,12.5\n549,357,12.0\n549,358,11.5\n549,359,11.0\n549,360,10.5\n549,361,10.0\n549,362,9.5\n549,363,9.0\n549,364,8.5\n549,365,8.0\n549,366,7.5\n549,367,7.0\n549,368,6.5\n549,369,6.0\n549,370,5.5\n549,371,5.0\n549,372,4.5\n549,373,4.0\n549,374,3.5\n549,375,15.0\n549,376,14.5\n549,377,14.0\n549,378,13.5\n549,379,13.0\n549,380,12.5\n549,381,12.0\n549,382,11.5\n549,383,11.0\n549,384,10.5\n549,385,10.0\n549,386,9.5\n549,387,9.0\n549,388,8.5\n549,389,8.0\n549,390,7.5\n549,391,7.0\n549,392,6.5\n549,393,6.0\n549,394,5.5\n549,395,5.0\n549,396,4.5\n549,397,4.0\n549,398,3.5\n549,399,3.0\n549,400,14.5\n549,401,14.0\n549,402,13.5\n549,403,13.0\n549,404,12.5\n549,405,12.0\n549,406,11.5\n549,407,11.0\n549,408,10.5\n549,409,10.0\n549,410,9.5\n549,411,9.0\n549,412,8.5\n549,413,8.0\n549,414,7.5\n549,415,7.0\n549,416,6.5\n549,417,6.0\n549,418,5.5\n549,419,5.0\n549,420,4.5\n549,421,4.0\n549,422,3.5\n549,423,3.0\n549,424,2.5\n549,425,14.0\n549,426,13.5\n549,427,13.0\n549,428,12.5\n549,429,12.0\n549,430,11.5\n549,431,11.0\n549,432,10.5\n549,433,10.0\n549,434,9.5\n549,435,9.0\n549,436,8.5\n549,437,8.0\n549,438,7.5\n549,439,7.0\n549,440,6.5\n549,441,6.0\n549,442,5.5\n549,443,5.0\n549,444,4.5\n549,445,4.0\n549,446,3.5\n549,447,3.0\n549,448,2.5\n549,449,2.0\n549,450,13.5\n549,451,13.0\n549,452,12.5\n549,453,12.0\n549,454,11.5\n549,455,11.0\n549,456,10.5\n549,457,10.0\n549,458,9.5\n549,459,9.0\n549,460,8.5\n549,461,8.0\n549,462,7.5\n549,463,7.0\n549,464,6.5\n549,465,6.0\n549,466,5.5\n549,467,5.0\n549,468,4.5\n549,469,4.0\n549,470,3.5\n549,471,3.0\n549,472,2.5\n549,473,2.0\n549,474,1.5\n549,475,13.0\n549,476,12.5\n549,477,12.0\n549,478,11.5\n549,479,11.0\n549,480,10.5\n549,481,10.0\n549,482,9.5\n549,483,9.0\n549,484,8.5\n549,485,8.0\n549,486,7.5\n549,487,7.0\n549,488,6.5\n549,489,6.0\n549,490,5.5\n549,491,5.0\n549,492,4.5\n549,493,4.0\n549,494,3.5\n549,495,3.0\n549,496,2.5\n549,497,2.0\n549,498,1.5\n549,499,1.0\n549,500,12.5\n549,501,12.0\n549,502,11.5\n549,503,11.0\n549,504,10.5\n549,505,10.0\n549,506,9.5\n549,507,9.0\n549,508,8.5\n549,509,8.0\n549,510,7.5\n549,511,7.0\n549,512,6.5\n549,513,6.0\n549,514,5.5\n549,515,5.0\n549,516,4.5\n549,517,4.0\n549,518,3.5\n549,519,3.0\n549,520,2.5\n549,521,2.0\n549,522,1.5\n549,523,1.0\n549,524,0.5\n549,525,12.0\n549,526,11.5\n549,527,11.0\n549,528,10.5\n549,529,10.0\n549,530,9.5\n549,531,9.0\n549,532,8.5\n549,533,8.0\n549,534,7.5\n549,535,7.0\n549,536,6.5\n549,537,6.0\n549,538,5.5\n549,539,5.0\n549,540,4.5\n549,541,4.0\n549,542,3.5\n549,543,3.0\n549,544,2.5\n549,545,2.0\n549,546,1.5\n549,547,1.0\n549,548,0.5\n549,549,0\n549,550,12.5\n549,551,12.0\n549,552,11.5\n549,553,11.0\n549,554,10.5\n549,555,10.0\n549,556,9.5\n549,557,9.0\n549,558,8.5\n549,559,8.0\n549,560,7.5\n549,561,7.0\n549,562,6.5\n549,563,6.0\n549,564,5.5\n549,565,5.0\n549,566,4.5\n549,567,4.0\n549,568,3.5\n549,569,3.0\n549,570,2.5\n549,571,2.0\n549,572,1.5\n549,573,1.0\n549,574,0.5\n549,575,13.0\n549,576,12.5\n549,577,12.0\n549,578,11.5\n549,579,11.0\n549,580,10.5\n549,581,10.0\n549,582,9.5\n549,583,9.0\n549,584,8.5\n549,585,8.0\n549,586,7.5\n549,587,7.0\n549,588,6.5\n549,589,6.0\n549,590,5.5\n549,591,5.0\n549,592,4.5\n549,593,4.0\n549,594,3.5\n549,595,3.0\n549,596,2.5\n549,597,2.0\n549,598,1.5\n549,599,1.0\n549,600,13.5\n549,601,13.0\n549,602,12.5\n549,603,12.0\n549,604,11.5\n549,605,11.0\n549,606,10.5\n549,607,10.0\n549,608,9.5\n549,609,9.0\n549,610,8.5\n549,611,8.0\n549,612,7.5\n549,613,7.0\n549,614,6.5\n549,615,6.0\n549,616,5.5\n549,617,5.0\n549,618,4.5\n549,619,4.0\n549,620,3.5\n549,621,3.0\n549,622,2.5\n549,623,2.0\n549,624,1.5\n550,0,11.0\n550,1,11.5\n550,2,12.0\n550,3,12.5\n550,4,13.0\n550,5,13.5\n550,6,14.0\n550,7,14.5\n550,8,15.0\n550,9,15.5\n550,10,16.0\n550,11,16.5\n550,12,17.0\n550,13,17.5\n550,14,18.0\n550,15,18.5\n550,16,19.0\n550,17,19.5\n550,18,20.0\n550,19,20.5\n550,20,21.0\n550,21,21.5\n550,22,22.0\n550,23,22.5\n550,24,23.0\n550,25,10.5\n550,26,11.0\n550,27,11.5\n550,28,12.0\n550,29,12.5\n550,30,13.0\n550,31,13.5\n550,32,14.0\n550,33,14.5\n550,34,15.0\n550,35,15.5\n550,36,16.0\n550,37,16.5\n550,38,17.0\n550,39,17.5\n550,40,18.0\n550,41,18.5\n550,42,19.0\n550,43,19.5\n550,44,20.0\n550,45,20.5\n550,46,21.0\n550,47,21.5\n550,48,22.0\n550,49,22.5\n550,50,10.0\n550,51,10.5\n550,52,11.0\n550,53,11.5\n550,54,12.0\n550,55,12.5\n550,56,13.0\n550,57,13.5\n550,58,14.0\n550,59,14.5\n550,60,15.0\n550,61,15.5\n550,62,16.0\n550,63,16.5\n550,64,17.0\n550,65,17.5\n550,66,18.0\n550,67,18.5\n550,68,19.0\n550,69,19.5\n550,70,20.0\n550,71,20.5\n550,72,21.0\n550,73,21.5\n550,74,22.0\n550,75,9.5\n550,76,10.0\n550,77,10.5\n550,78,11.0\n550,79,11.5\n550,80,12.0\n550,81,12.5\n550,82,13.0\n550,83,13.5\n550,84,14.0\n550,85,14.5\n550,86,15.0\n550,87,15.5\n550,88,16.0\n550,89,16.5\n550,90,17.0\n550,91,17.5\n550,92,18.0\n550,93,18.5\n550,94,19.0\n550,95,19.5\n550,96,20.0\n550,97,20.5\n550,98,21.0\n550,99,21.5\n550,100,9.0\n550,101,9.5\n550,102,10.0\n550,103,10.5\n550,104,11.0\n550,105,11.5\n550,106,12.0\n550,107,12.5\n550,108,13.0\n550,109,13.5\n550,110,14.0\n550,111,14.5\n550,112,15.0\n550,113,15.5\n550,114,16.0\n550,115,16.5\n550,116,17.0\n550,117,17.5\n550,118,18.0\n550,119,18.5\n550,120,19.0\n550,121,19.5\n550,122,20.0\n550,123,20.5\n550,124,21.0\n550,125,8.5\n550,126,9.0\n550,127,9.5\n550,128,10.0\n550,129,10.5\n550,130,11.0\n550,131,11.5\n550,132,12.0\n550,133,12.5\n550,134,13.0\n550,135,13.5\n550,136,14.0\n550,137,14.5\n550,138,15.0\n550,139,15.5\n550,140,16.0\n550,141,16.5\n550,142,17.0\n550,143,17.5\n550,144,18.0\n550,145,18.5\n550,146,19.0\n550,147,19.5\n550,148,20.0\n550,149,20.5\n550,150,8.0\n550,151,8.5\n550,152,9.0\n550,153,9.5\n550,154,10.0\n550,155,10.5\n550,156,11.0\n550,157,11.5\n550,158,12.0\n550,159,12.5\n550,160,13.0\n550,161,13.5\n550,162,14.0\n550,163,14.5\n550,164,15.0\n550,165,15.5\n550,166,16.0\n550,167,16.5\n550,168,17.0\n550,169,17.5\n550,170,18.0\n550,171,18.5\n550,172,19.0\n550,173,19.5\n550,174,20.0\n550,175,7.5\n550,176,8.0\n550,177,8.5\n550,178,9.0\n550,179,9.5\n550,180,10.0\n550,181,10.5\n550,182,11.0\n550,183,11.5\n550,184,12.0\n550,185,12.5\n550,186,13.0\n550,187,13.5\n550,188,14.0\n550,189,14.5\n550,190,15.0\n550,191,15.5\n550,192,16.0\n550,193,16.5\n550,194,17.0\n550,195,17.5\n550,196,18.0\n550,197,18.5\n550,198,19.0\n550,199,19.5\n550,200,7.0\n550,201,7.5\n550,202,8.0\n550,203,8.5\n550,204,9.0\n550,205,9.5\n550,206,10.0\n550,207,10.5\n550,208,11.0\n550,209,11.5\n550,210,12.0\n550,211,12.5\n550,212,13.0\n550,213,13.5\n550,214,14.0\n550,215,14.5\n550,216,15.0\n550,217,15.5\n550,218,16.0\n550,219,16.5\n550,220,17.0\n550,221,17.5\n550,222,18.0\n550,223,18.5\n550,224,19.0\n550,225,6.5\n550,226,7.0\n550,227,7.5\n550,228,8.0\n550,229,8.5\n550,230,9.0\n550,231,9.5\n550,232,10.0\n550,233,10.5\n550,234,11.0\n550,235,11.5\n550,236,12.0\n550,237,12.5\n550,238,13.0\n550,239,13.5\n550,240,14.0\n550,241,14.5\n550,242,15.0\n550,243,15.5\n550,244,16.0\n550,245,16.5\n550,246,17.0\n550,247,17.5\n550,248,18.0\n550,249,18.5\n550,250,6.0\n550,251,6.5\n550,252,7.0\n550,253,7.5\n550,254,8.0\n550,255,8.5\n550,256,9.0\n550,257,9.5\n550,258,10.0\n550,259,10.5\n550,260,11.0\n550,261,11.5\n550,262,12.0\n550,263,12.5\n550,264,13.0\n550,265,13.5\n550,266,14.0\n550,267,14.5\n550,268,15.0\n550,269,15.5\n550,270,16.0\n550,271,16.5\n550,272,17.0\n550,273,17.5\n550,274,18.0\n550,275,5.5\n550,276,6.0\n550,277,6.5\n550,278,7.0\n550,279,7.5\n550,280,8.0\n550,281,8.5\n550,282,9.0\n550,283,9.5\n550,284,10.0\n550,285,10.5\n550,286,11.0\n550,287,11.5\n550,288,12.0\n550,289,12.5\n550,290,13.0\n550,291,13.5\n550,292,14.0\n550,293,14.5\n550,294,15.0\n550,295,15.5\n550,296,16.0\n550,297,16.5\n550,298,17.0\n550,299,17.5\n550,300,5.0\n550,301,5.5\n550,302,6.0\n550,303,6.5\n550,304,7.0\n550,305,7.5\n550,306,8.0\n550,307,8.5\n550,308,9.0\n550,309,9.5\n550,310,10.0\n550,311,10.5\n550,312,11.0\n550,313,11.5\n550,314,12.0\n550,315,12.5\n550,316,13.0\n550,317,13.5\n550,318,14.0\n550,319,14.5\n550,320,15.0\n550,321,15.5\n550,322,16.0\n550,323,16.5\n550,324,17.0\n550,325,4.5\n550,326,5.0\n550,327,5.5\n550,328,6.0\n550,329,6.5\n550,330,7.0\n550,331,7.5\n550,332,8.0\n550,333,8.5\n550,334,9.0\n550,335,9.5\n550,336,10.0\n550,337,10.5\n550,338,11.0\n550,339,11.5\n550,340,12.0\n550,341,12.5\n550,342,13.0\n550,343,13.5\n550,344,14.0\n550,345,14.5\n550,346,15.0\n550,347,15.5\n550,348,16.0\n550,349,16.5\n550,350,4.0\n550,351,4.5\n550,352,5.0\n550,353,5.5\n550,354,6.0\n550,355,6.5\n550,356,7.0\n550,357,7.5\n550,358,8.0\n550,359,8.5\n550,360,9.0\n550,361,9.5\n550,362,10.0\n550,363,10.5\n550,364,11.0\n550,365,11.5\n550,366,12.0\n550,367,12.5\n550,368,13.0\n550,369,13.5\n550,370,14.0\n550,371,14.5\n550,372,15.0\n550,373,15.5\n550,374,16.0\n550,375,3.5\n550,376,4.0\n550,377,4.5\n550,378,5.0\n550,379,5.5\n550,380,6.0\n550,381,6.5\n550,382,7.0\n550,383,7.5\n550,384,8.0\n550,385,8.5\n550,386,9.0\n550,387,9.5\n550,388,10.0\n550,389,10.5\n550,390,11.0\n550,391,11.5\n550,392,12.0\n550,393,12.5\n550,394,13.0\n550,395,13.5\n550,396,14.0\n550,397,14.5\n550,398,15.0\n550,399,15.5\n550,400,3.0\n550,401,3.5\n550,402,4.0\n550,403,4.5\n550,404,5.0\n550,405,5.5\n550,406,6.0\n550,407,6.5\n550,408,7.0\n550,409,7.5\n550,410,8.0\n550,411,8.5\n550,412,9.0\n550,413,9.5\n550,414,10.0\n550,415,10.5\n550,416,11.0\n550,417,11.5\n550,418,12.0\n550,419,12.5\n550,420,13.0\n550,421,13.5\n550,422,14.0\n550,423,14.5\n550,424,15.0\n550,425,2.5\n550,426,3.0\n550,427,3.5\n550,428,4.0\n550,429,4.5\n550,430,5.0\n550,431,5.5\n550,432,6.0\n550,433,6.5\n550,434,7.0\n550,435,7.5\n550,436,8.0\n550,437,8.5\n550,438,9.0\n550,439,9.5\n550,440,10.0\n550,441,10.5\n550,442,11.0\n550,443,11.5\n550,444,12.0\n550,445,12.5\n550,446,13.0\n550,447,13.5\n550,448,14.0\n550,449,14.5\n550,450,2.0\n550,451,2.5\n550,452,3.0\n550,453,3.5\n550,454,4.0\n550,455,4.5\n550,456,5.0\n550,457,5.5\n550,458,6.0\n550,459,6.5\n550,460,7.0\n550,461,7.5\n550,462,8.0\n550,463,8.5\n550,464,9.0\n550,465,9.5\n550,466,10.0\n550,467,10.5\n550,468,11.0\n550,469,11.5\n550,470,12.0\n550,471,12.5\n550,472,13.0\n550,473,13.5\n550,474,14.0\n550,475,1.5\n550,476,2.0\n550,477,2.5\n550,478,3.0\n550,479,3.5\n550,480,4.0\n550,481,4.5\n550,482,5.0\n550,483,5.5\n550,484,6.0\n550,485,6.5\n550,486,7.0\n550,487,7.5\n550,488,8.0\n550,489,8.5\n550,490,9.0\n550,491,9.5\n550,492,10.0\n550,493,10.5\n550,494,11.0\n550,495,11.5\n550,496,12.0\n550,497,12.5\n550,498,13.0\n550,499,13.5\n550,500,1.0\n550,501,1.5\n550,502,2.0\n550,503,2.5\n550,504,3.0\n550,505,3.5\n550,506,4.0\n550,507,4.5\n550,508,5.0\n550,509,5.5\n550,510,6.0\n550,511,6.5\n550,512,7.0\n550,513,7.5\n550,514,8.0\n550,515,8.5\n550,516,9.0\n550,517,9.5\n550,518,10.0\n550,519,10.5\n550,520,11.0\n550,521,11.5\n550,522,12.0\n550,523,12.5\n550,524,13.0\n550,525,0.5\n550,526,1.0\n550,527,1.5\n550,528,2.0\n550,529,2.5\n550,530,3.0\n550,531,3.5\n550,532,4.0\n550,533,4.5\n550,534,5.0\n550,535,5.5\n550,536,6.0\n550,537,6.5\n550,538,7.0\n550,539,7.5\n550,540,8.0\n550,541,8.5\n550,542,9.0\n550,543,9.5\n550,544,10.0\n550,545,10.5\n550,546,11.0\n550,547,11.5\n550,548,12.0\n550,549,12.5\n550,550,0\n550,551,0.5\n550,552,1.0\n550,553,1.5\n550,554,2.0\n550,555,2.5\n550,556,3.0\n550,557,3.5\n550,558,4.0\n550,559,4.5\n550,560,5.0\n550,561,5.5\n550,562,6.0\n550,563,6.5\n550,564,7.0\n550,565,7.5\n550,566,8.0\n550,567,8.5\n550,568,9.0\n550,569,9.5\n550,570,10.0\n550,571,10.5\n550,572,11.0\n550,573,11.5\n550,574,12.0\n550,575,0.5\n550,576,1.0\n550,577,1.5\n550,578,2.0\n550,579,2.5\n550,580,3.0\n550,581,3.5\n550,582,4.0\n550,583,4.5\n550,584,5.0\n550,585,5.5\n550,586,6.0\n550,587,6.5\n550,588,7.0\n550,589,7.5\n550,590,8.0\n550,591,8.5\n550,592,9.0\n550,593,9.5\n550,594,10.0\n550,595,10.5\n550,596,11.0\n550,597,11.5\n550,598,12.0\n550,599,12.5\n550,600,1.0\n550,601,1.5\n550,602,2.0\n550,603,2.5\n550,604,3.0\n550,605,3.5\n550,606,4.0\n550,607,4.5\n550,608,5.0\n550,609,5.5\n550,610,6.0\n550,611,6.5\n550,612,7.0\n550,613,7.5\n550,614,8.0\n550,615,8.5\n550,616,9.0\n550,617,9.5\n550,618,10.0\n550,619,10.5\n550,620,11.0\n550,621,11.5\n550,622,12.0\n550,623,12.5\n550,624,13.0\n551,0,11.5\n551,1,11.0\n551,2,11.5\n551,3,12.0\n551,4,12.5\n551,5,13.0\n551,6,13.5\n551,7,14.0\n551,8,14.5\n551,9,15.0\n551,10,15.5\n551,11,16.0\n551,12,16.5\n551,13,17.0\n551,14,17.5\n551,15,18.0\n551,16,18.5\n551,17,19.0\n551,18,19.5\n551,19,20.0\n551,20,20.5\n551,21,21.0\n551,22,21.5\n551,23,22.0\n551,24,22.5\n551,25,11.0\n551,26,10.5\n551,27,11.0\n551,28,11.5\n551,29,12.0\n551,30,12.5\n551,31,13.0\n551,32,13.5\n551,33,14.0\n551,34,14.5\n551,35,15.0\n551,36,15.5\n551,37,16.0\n551,38,16.5\n551,39,17.0\n551,40,17.5\n551,41,18.0\n551,42,18.5\n551,43,19.0\n551,44,19.5\n551,45,20.0\n551,46,20.5\n551,47,21.0\n551,48,21.5\n551,49,22.0\n551,50,10.5\n551,51,10.0\n551,52,10.5\n551,53,11.0\n551,54,11.5\n551,55,12.0\n551,56,12.5\n551,57,13.0\n551,58,13.5\n551,59,14.0\n551,60,14.5\n551,61,15.0\n551,62,15.5\n551,63,16.0\n551,64,16.5\n551,65,17.0\n551,66,17.5\n551,67,18.0\n551,68,18.5\n551,69,19.0\n551,70,19.5\n551,71,20.0\n551,72,20.5\n551,73,21.0\n551,74,21.5\n551,75,10.0\n551,76,9.5\n551,77,10.0\n551,78,10.5\n551,79,11.0\n551,80,11.5\n551,81,12.0\n551,82,12.5\n551,83,13.0\n551,84,13.5\n551,85,14.0\n551,86,14.5\n551,87,15.0\n551,88,15.5\n551,89,16.0\n551,90,16.5\n551,91,17.0\n551,92,17.5\n551,93,18.0\n551,94,18.5\n551,95,19.0\n551,96,19.5\n551,97,20.0\n551,98,20.5\n551,99,21.0\n551,100,9.5\n551,101,9.0\n551,102,9.5\n551,103,10.0\n551,104,10.5\n551,105,11.0\n551,106,11.5\n551,107,12.0\n551,108,12.5\n551,109,13.0\n551,110,13.5\n551,111,14.0\n551,112,14.5\n551,113,15.0\n551,114,15.5\n551,115,16.0\n551,116,16.5\n551,117,17.0\n551,118,17.5\n551,119,18.0\n551,120,18.5\n551,121,19.0\n551,122,19.5\n551,123,20.0\n551,124,20.5\n551,125,9.0\n551,126,8.5\n551,127,9.0\n551,128,9.5\n551,129,10.0\n551,130,10.5\n551,131,11.0\n551,132,11.5\n551,133,12.0\n551,134,12.5\n551,135,13.0\n551,136,13.5\n551,137,14.0\n551,138,14.5\n551,139,15.0\n551,140,15.5\n551,141,16.0\n551,142,16.5\n551,143,17.0\n551,144,17.5\n551,145,18.0\n551,146,18.5\n551,147,19.0\n551,148,19.5\n551,149,20.0\n551,150,8.5\n551,151,8.0\n551,152,8.5\n551,153,9.0\n551,154,9.5\n551,155,10.0\n551,156,10.5\n551,157,11.0\n551,158,11.5\n551,159,12.0\n551,160,12.5\n551,161,13.0\n551,162,13.5\n551,163,14.0\n551,164,14.5\n551,165,15.0\n551,166,15.5\n551,167,16.0\n551,168,16.5\n551,169,17.0\n551,170,17.5\n551,171,18.0\n551,172,18.5\n551,173,19.0\n551,174,19.5\n551,175,8.0\n551,176,7.5\n551,177,8.0\n551,178,8.5\n551,179,9.0\n551,180,9.5\n551,181,10.0\n551,182,10.5\n551,183,11.0\n551,184,11.5\n551,185,12.0\n551,186,12.5\n551,187,13.0\n551,188,13.5\n551,189,14.0\n551,190,14.5\n551,191,15.0\n551,192,15.5\n551,193,16.0\n551,194,16.5\n551,195,17.0\n551,196,17.5\n551,197,18.0\n551,198,18.5\n551,199,19.0\n551,200,7.5\n551,201,7.0\n551,202,7.5\n551,203,8.0\n551,204,8.5\n551,205,9.0\n551,206,9.5\n551,207,10.0\n551,208,10.5\n551,209,11.0\n551,210,11.5\n551,211,12.0\n551,212,12.5\n551,213,13.0\n551,214,13.5\n551,215,14.0\n551,216,14.5\n551,217,15.0\n551,218,15.5\n551,219,16.0\n551,220,16.5\n551,221,17.0\n551,222,17.5\n551,223,18.0\n551,224,18.5\n551,225,7.0\n551,226,6.5\n551,227,7.0\n551,228,7.5\n551,229,8.0\n551,230,8.5\n551,231,9.0\n551,232,9.5\n551,233,10.0\n551,234,10.5\n551,235,11.0\n551,236,11.5\n551,237,12.0\n551,238,12.5\n551,239,13.0\n551,240,13.5\n551,241,14.0\n551,242,14.5\n551,243,15.0\n551,244,15.5\n551,245,16.0\n551,246,16.5\n551,247,17.0\n551,248,17.5\n551,249,18.0\n551,250,6.5\n551,251,6.0\n551,252,6.5\n551,253,7.0\n551,254,7.5\n551,255,8.0\n551,256,8.5\n551,257,9.0\n551,258,9.5\n551,259,10.0\n551,260,10.5\n551,261,11.0\n551,262,11.5\n551,263,12.0\n551,264,12.5\n551,265,13.0\n551,266,13.5\n551,267,14.0\n551,268,14.5\n551,269,15.0\n551,270,15.5\n551,271,16.0\n551,272,16.5\n551,273,17.0\n551,274,17.5\n551,275,6.0\n551,276,5.5\n551,277,6.0\n551,278,6.5\n551,279,7.0\n551,280,7.5\n551,281,8.0\n551,282,8.5\n551,283,9.0\n551,284,9.5\n551,285,10.0\n551,286,10.5\n551,287,11.0\n551,288,11.5\n551,289,12.0\n551,290,12.5\n551,291,13.0\n551,292,13.5\n551,293,14.0\n551,294,14.5\n551,295,15.0\n551,296,15.5\n551,297,16.0\n551,298,16.5\n551,299,17.0\n551,300,5.5\n551,301,5.0\n551,302,5.5\n551,303,6.0\n551,304,6.5\n551,305,7.0\n551,306,7.5\n551,307,8.0\n551,308,8.5\n551,309,9.0\n551,310,9.5\n551,311,10.0\n551,312,10.5\n551,313,11.0\n551,314,11.5\n551,315,12.0\n551,316,12.5\n551,317,13.0\n551,318,13.5\n551,319,14.0\n551,320,14.5\n551,321,15.0\n551,322,15.5\n551,323,16.0\n551,324,16.5\n551,325,5.0\n551,326,4.5\n551,327,5.0\n551,328,5.5\n551,329,6.0\n551,330,6.5\n551,331,7.0\n551,332,7.5\n551,333,8.0\n551,334,8.5\n551,335,9.0\n551,336,9.5\n551,337,10.0\n551,338,10.5\n551,339,11.0\n551,340,11.5\n551,341,12.0\n551,342,12.5\n551,343,13.0\n551,344,13.5\n551,345,14.0\n551,346,14.5\n551,347,15.0\n551,348,15.5\n551,349,16.0\n551,350,4.5\n551,351,4.0\n551,352,4.5\n551,353,5.0\n551,354,5.5\n551,355,6.0\n551,356,6.5\n551,357,7.0\n551,358,7.5\n551,359,8.0\n551,360,8.5\n551,361,9.0\n551,362,9.5\n551,363,10.0\n551,364,10.5\n551,365,11.0\n551,366,11.5\n551,367,12.0\n551,368,12.5\n551,369,13.0\n551,370,13.5\n551,371,14.0\n551,372,14.5\n551,373,15.0\n551,374,15.5\n551,375,4.0\n551,376,3.5\n551,377,4.0\n551,378,4.5\n551,379,5.0\n551,380,5.5\n551,381,6.0\n551,382,6.5\n551,383,7.0\n551,384,7.5\n551,385,8.0\n551,386,8.5\n551,387,9.0\n551,388,9.5\n551,389,10.0\n551,390,10.5\n551,391,11.0\n551,392,11.5\n551,393,12.0\n551,394,12.5\n551,395,13.0\n551,396,13.5\n551,397,14.0\n551,398,14.5\n551,399,15.0\n551,400,3.5\n551,401,3.0\n551,402,3.5\n551,403,4.0\n551,404,4.5\n551,405,5.0\n551,406,5.5\n551,407,6.0\n551,408,6.5\n551,409,7.0\n551,410,7.5\n551,411,8.0\n551,412,8.5\n551,413,9.0\n551,414,9.5\n551,415,10.0\n551,416,10.5\n551,417,11.0\n551,418,11.5\n551,419,12.0\n551,420,12.5\n551,421,13.0\n551,422,13.5\n551,423,14.0\n551,424,14.5\n551,425,3.0\n551,426,2.5\n551,427,3.0\n551,428,3.5\n551,429,4.0\n551,430,4.5\n551,431,5.0\n551,432,5.5\n551,433,6.0\n551,434,6.5\n551,435,7.0\n551,436,7.5\n551,437,8.0\n551,438,8.5\n551,439,9.0\n551,440,9.5\n551,441,10.0\n551,442,10.5\n551,443,11.0\n551,444,11.5\n551,445,12.0\n551,446,12.5\n551,447,13.0\n551,448,13.5\n551,449,14.0\n551,450,2.5\n551,451,2.0\n551,452,2.5\n551,453,3.0\n551,454,3.5\n551,455,4.0\n551,456,4.5\n551,457,5.0\n551,458,5.5\n551,459,6.0\n551,460,6.5\n551,461,7.0\n551,462,7.5\n551,463,8.0\n551,464,8.5\n551,465,9.0\n551,466,9.5\n551,467,10.0\n551,468,10.5\n551,469,11.0\n551,470,11.5\n551,471,12.0\n551,472,12.5\n551,473,13.0\n551,474,13.5\n551,475,2.0\n551,476,1.5\n551,477,2.0\n551,478,2.5\n551,479,3.0\n551,480,3.5\n551,481,4.0\n551,482,4.5\n551,483,5.0\n551,484,5.5\n551,485,6.0\n551,486,6.5\n551,487,7.0\n551,488,7.5\n551,489,8.0\n551,490,8.5\n551,491,9.0\n551,492,9.5\n551,493,10.0\n551,494,10.5\n551,495,11.0\n551,496,11.5\n551,497,12.0\n551,498,12.5\n551,499,13.0\n551,500,1.5\n551,501,1.0\n551,502,1.5\n551,503,2.0\n551,504,2.5\n551,505,3.0\n551,506,3.5\n551,507,4.0\n551,508,4.5\n551,509,5.0\n551,510,5.5\n551,511,6.0\n551,512,6.5\n551,513,7.0\n551,514,7.5\n551,515,8.0\n551,516,8.5\n551,517,9.0\n551,518,9.5\n551,519,10.0\n551,520,10.5\n551,521,11.0\n551,522,11.5\n551,523,12.0\n551,524,12.5\n551,525,1.0\n551,526,0.5\n551,527,1.0\n551,528,1.5\n551,529,2.0\n551,530,2.5\n551,531,3.0\n551,532,3.5\n551,533,4.0\n551,534,4.5\n551,535,5.0\n551,536,5.5\n551,537,6.0\n551,538,6.5\n551,539,7.0\n551,540,7.5\n551,541,8.0\n551,542,8.5\n551,543,9.0\n551,544,9.5\n551,545,10.0\n551,546,10.5\n551,547,11.0\n551,548,11.5\n551,549,12.0\n551,550,0.5\n551,551,0\n551,552,0.5\n551,553,1.0\n551,554,1.5\n551,555,2.0\n551,556,2.5\n551,557,3.0\n551,558,3.5\n551,559,4.0\n551,560,4.5\n551,561,5.0\n551,562,5.5\n551,563,6.0\n551,564,6.5\n551,565,7.0\n551,566,7.5\n551,567,8.0\n551,568,8.5\n551,569,9.0\n551,570,9.5\n551,571,10.0\n551,572,10.5\n551,573,11.0\n551,574,11.5\n551,575,1.0\n551,576,0.5\n551,577,1.0\n551,578,1.5\n551,579,2.0\n551,580,2.5\n551,581,3.0\n551,582,3.5\n551,583,4.0\n551,584,4.5\n551,585,5.0\n551,586,5.5\n551,587,6.0\n551,588,6.5\n551,589,7.0\n551,590,7.5\n551,591,8.0\n551,592,8.5\n551,593,9.0\n551,594,9.5\n551,595,10.0\n551,596,10.5\n551,597,11.0\n551,598,11.5\n551,599,12.0\n551,600,1.5\n551,601,1.0\n551,602,1.5\n551,603,2.0\n551,604,2.5\n551,605,3.0\n551,606,3.5\n551,607,4.0\n551,608,4.5\n551,609,5.0\n551,610,5.5\n551,611,6.0\n551,612,6.5\n551,613,7.0\n551,614,7.5\n551,615,8.0\n551,616,8.5\n551,617,9.0\n551,618,9.5\n551,619,10.0\n551,620,10.5\n551,621,11.0\n551,622,11.5\n551,623,12.0\n551,624,12.5\n552,0,12.0\n552,1,11.5\n552,2,11.0\n552,3,11.5\n552,4,12.0\n552,5,12.5\n552,6,13.0\n552,7,13.5\n552,8,14.0\n552,9,14.5\n552,10,15.0\n552,11,15.5\n552,12,16.0\n552,13,16.5\n552,14,17.0\n552,15,17.5\n552,16,18.0\n552,17,18.5\n552,18,19.0\n552,19,19.5\n552,20,20.0\n552,21,20.5\n552,22,21.0\n552,23,21.5\n552,24,22.0\n552,25,11.5\n552,26,11.0\n552,27,10.5\n552,28,11.0\n552,29,11.5\n552,30,12.0\n552,31,12.5\n552,32,13.0\n552,33,13.5\n552,34,14.0\n552,35,14.5\n552,36,15.0\n552,37,15.5\n552,38,16.0\n552,39,16.5\n552,40,17.0\n552,41,17.5\n552,42,18.0\n552,43,18.5\n552,44,19.0\n552,45,19.5\n552,46,20.0\n552,47,20.5\n552,48,21.0\n552,49,21.5\n552,50,11.0\n552,51,10.5\n552,52,10.0\n552,53,10.5\n552,54,11.0\n552,55,11.5\n552,56,12.0\n552,57,12.5\n552,58,13.0\n552,59,13.5\n552,60,14.0\n552,61,14.5\n552,62,15.0\n552,63,15.5\n552,64,16.0\n552,65,16.5\n552,66,17.0\n552,67,17.5\n552,68,18.0\n552,69,18.5\n552,70,19.0\n552,71,19.5\n552,72,20.0\n552,73,20.5\n552,74,21.0\n552,75,10.5\n552,76,10.0\n552,77,9.5\n552,78,10.0\n552,79,10.5\n552,80,11.0\n552,81,11.5\n552,82,12.0\n552,83,12.5\n552,84,13.0\n552,85,13.5\n552,86,14.0\n552,87,14.5\n552,88,15.0\n552,89,15.5\n552,90,16.0\n552,91,16.5\n552,92,17.0\n552,93,17.5\n552,94,18.0\n552,95,18.5\n552,96,19.0\n552,97,19.5\n552,98,20.0\n552,99,20.5\n552,100,10.0\n552,101,9.5\n552,102,9.0\n552,103,9.5\n552,104,10.0\n552,105,10.5\n552,106,11.0\n552,107,11.5\n552,108,12.0\n552,109,12.5\n552,110,13.0\n552,111,13.5\n552,112,14.0\n552,113,14.5\n552,114,15.0\n552,115,15.5\n552,116,16.0\n552,117,16.5\n552,118,17.0\n552,119,17.5\n552,120,18.0\n552,121,18.5\n552,122,19.0\n552,123,19.5\n552,124,20.0\n552,125,9.5\n552,126,9.0\n552,127,8.5\n552,128,9.0\n552,129,9.5\n552,130,10.0\n552,131,10.5\n552,132,11.0\n552,133,11.5\n552,134,12.0\n552,135,12.5\n552,136,13.0\n552,137,13.5\n552,138,14.0\n552,139,14.5\n552,140,15.0\n552,141,15.5\n552,142,16.0\n552,143,16.5\n552,144,17.0\n552,145,17.5\n552,146,18.0\n552,147,18.5\n552,148,19.0\n552,149,19.5\n552,150,9.0\n552,151,8.5\n552,152,8.0\n552,153,8.5\n552,154,9.0\n552,155,9.5\n552,156,10.0\n552,157,10.5\n552,158,11.0\n552,159,11.5\n552,160,12.0\n552,161,12.5\n552,162,13.0\n552,163,13.5\n552,164,14.0\n552,165,14.5\n552,166,15.0\n552,167,15.5\n552,168,16.0\n552,169,16.5\n552,170,17.0\n552,171,17.5\n552,172,18.0\n552,173,18.5\n552,174,19.0\n552,175,8.5\n552,176,8.0\n552,177,7.5\n552,178,8.0\n552,179,8.5\n552,180,9.0\n552,181,9.5\n552,182,10.0\n552,183,10.5\n552,184,11.0\n552,185,11.5\n552,186,12.0\n552,187,12.5\n552,188,13.0\n552,189,13.5\n552,190,14.0\n552,191,14.5\n552,192,15.0\n552,193,15.5\n552,194,16.0\n552,195,16.5\n552,196,17.0\n552,197,17.5\n552,198,18.0\n552,199,18.5\n552,200,8.0\n552,201,7.5\n552,202,7.0\n552,203,7.5\n552,204,8.0\n552,205,8.5\n552,206,9.0\n552,207,9.5\n552,208,10.0\n552,209,10.5\n552,210,11.0\n552,211,11.5\n552,212,12.0\n552,213,12.5\n552,214,13.0\n552,215,13.5\n552,216,14.0\n552,217,14.5\n552,218,15.0\n552,219,15.5\n552,220,16.0\n552,221,16.5\n552,222,17.0\n552,223,17.5\n552,224,18.0\n552,225,7.5\n552,226,7.0\n552,227,6.5\n552,228,7.0\n552,229,7.5\n552,230,8.0\n552,231,8.5\n552,232,9.0\n552,233,9.5\n552,234,10.0\n552,235,10.5\n552,236,11.0\n552,237,11.5\n552,238,12.0\n552,239,12.5\n552,240,13.0\n552,241,13.5\n552,242,14.0\n552,243,14.5\n552,244,15.0\n552,245,15.5\n552,246,16.0\n552,247,16.5\n552,248,17.0\n552,249,17.5\n552,250,7.0\n552,251,6.5\n552,252,6.0\n552,253,6.5\n552,254,7.0\n552,255,7.5\n552,256,8.0\n552,257,8.5\n552,258,9.0\n552,259,9.5\n552,260,10.0\n552,261,10.5\n552,262,11.0\n552,263,11.5\n552,264,12.0\n552,265,12.5\n552,266,13.0\n552,267,13.5\n552,268,14.0\n552,269,14.5\n552,270,15.0\n552,271,15.5\n552,272,16.0\n552,273,16.5\n552,274,17.0\n552,275,6.5\n552,276,6.0\n552,277,5.5\n552,278,6.0\n552,279,6.5\n552,280,7.0\n552,281,7.5\n552,282,8.0\n552,283,8.5\n552,284,9.0\n552,285,9.5\n552,286,10.0\n552,287,10.5\n552,288,11.0\n552,289,11.5\n552,290,12.0\n552,291,12.5\n552,292,13.0\n552,293,13.5\n552,294,14.0\n552,295,14.5\n552,296,15.0\n552,297,15.5\n552,298,16.0\n552,299,16.5\n552,300,6.0\n552,301,5.5\n552,302,5.0\n552,303,5.5\n552,304,6.0\n552,305,6.5\n552,306,7.0\n552,307,7.5\n552,308,8.0\n552,309,8.5\n552,310,9.0\n552,311,9.5\n552,312,10.0\n552,313,10.5\n552,314,11.0\n552,315,11.5\n552,316,12.0\n552,317,12.5\n552,318,13.0\n552,319,13.5\n552,320,14.0\n552,321,14.5\n552,322,15.0\n552,323,15.5\n552,324,16.0\n552,325,5.5\n552,326,5.0\n552,327,4.5\n552,328,5.0\n552,329,5.5\n552,330,6.0\n552,331,6.5\n552,332,7.0\n552,333,7.5\n552,334,8.0\n552,335,8.5\n552,336,9.0\n552,337,9.5\n552,338,10.0\n552,339,10.5\n552,340,11.0\n552,341,11.5\n552,342,12.0\n552,343,12.5\n552,344,13.0\n552,345,13.5\n552,346,14.0\n552,347,14.5\n552,348,15.0\n552,349,15.5\n552,350,5.0\n552,351,4.5\n552,352,4.0\n552,353,4.5\n552,354,5.0\n552,355,5.5\n552,356,6.0\n552,357,6.5\n552,358,7.0\n552,359,7.5\n552,360,8.0\n552,361,8.5\n552,362,9.0\n552,363,9.5\n552,364,10.0\n552,365,10.5\n552,366,11.0\n552,367,11.5\n552,368,12.0\n552,369,12.5\n552,370,13.0\n552,371,13.5\n552,372,14.0\n552,373,14.5\n552,374,15.0\n552,375,4.5\n552,376,4.0\n552,377,3.5\n552,378,4.0\n552,379,4.5\n552,380,5.0\n552,381,5.5\n552,382,6.0\n552,383,6.5\n552,384,7.0\n552,385,7.5\n552,386,8.0\n552,387,8.5\n552,388,9.0\n552,389,9.5\n552,390,10.0\n552,391,10.5\n552,392,11.0\n552,393,11.5\n552,394,12.0\n552,395,12.5\n552,396,13.0\n552,397,13.5\n552,398,14.0\n552,399,14.5\n552,400,4.0\n552,401,3.5\n552,402,3.0\n552,403,3.5\n552,404,4.0\n552,405,4.5\n552,406,5.0\n552,407,5.5\n552,408,6.0\n552,409,6.5\n552,410,7.0\n552,411,7.5\n552,412,8.0\n552,413,8.5\n552,414,9.0\n552,415,9.5\n552,416,10.0\n552,417,10.5\n552,418,11.0\n552,419,11.5\n552,420,12.0\n552,421,12.5\n552,422,13.0\n552,423,13.5\n552,424,14.0\n552,425,3.5\n552,426,3.0\n552,427,2.5\n552,428,3.0\n552,429,3.5\n552,430,4.0\n552,431,4.5\n552,432,5.0\n552,433,5.5\n552,434,6.0\n552,435,6.5\n552,436,7.0\n552,437,7.5\n552,438,8.0\n552,439,8.5\n552,440,9.0\n552,441,9.5\n552,442,10.0\n552,443,10.5\n552,444,11.0\n552,445,11.5\n552,446,12.0\n552,447,12.5\n552,448,13.0\n552,449,13.5\n552,450,3.0\n552,451,2.5\n552,452,2.0\n552,453,2.5\n552,454,3.0\n552,455,3.5\n552,456,4.0\n552,457,4.5\n552,458,5.0\n552,459,5.5\n552,460,6.0\n552,461,6.5\n552,462,7.0\n552,463,7.5\n552,464,8.0\n552,465,8.5\n552,466,9.0\n552,467,9.5\n552,468,10.0\n552,469,10.5\n552,470,11.0\n552,471,11.5\n552,472,12.0\n552,473,12.5\n552,474,13.0\n552,475,2.5\n552,476,2.0\n552,477,1.5\n552,478,2.0\n552,479,2.5\n552,480,3.0\n552,481,3.5\n552,482,4.0\n552,483,4.5\n552,484,5.0\n552,485,5.5\n552,486,6.0\n552,487,6.5\n552,488,7.0\n552,489,7.5\n552,490,8.0\n552,491,8.5\n552,492,9.0\n552,493,9.5\n552,494,10.0\n552,495,10.5\n552,496,11.0\n552,497,11.5\n552,498,12.0\n552,499,12.5\n552,500,2.0\n552,501,1.5\n552,502,1.0\n552,503,1.5\n552,504,2.0\n552,505,2.5\n552,506,3.0\n552,507,3.5\n552,508,4.0\n552,509,4.5\n552,510,5.0\n552,511,5.5\n552,512,6.0\n552,513,6.5\n552,514,7.0\n552,515,7.5\n552,516,8.0\n552,517,8.5\n552,518,9.0\n552,519,9.5\n552,520,10.0\n552,521,10.5\n552,522,11.0\n552,523,11.5\n552,524,12.0\n552,525,1.5\n552,526,1.0\n552,527,0.5\n552,528,1.0\n552,529,1.5\n552,530,2.0\n552,531,2.5\n552,532,3.0\n552,533,3.5\n552,534,4.0\n552,535,4.5\n552,536,5.0\n552,537,5.5\n552,538,6.0\n552,539,6.5\n552,540,7.0\n552,541,7.5\n552,542,8.0\n552,543,8.5\n552,544,9.0\n552,545,9.5\n552,546,10.0\n552,547,10.5\n552,548,11.0\n552,549,11.5\n552,550,1.0\n552,551,0.5\n552,552,0\n552,553,0.5\n552,554,1.0\n552,555,1.5\n552,556,2.0\n552,557,2.5\n552,558,3.0\n552,559,3.5\n552,560,4.0\n552,561,4.5\n552,562,5.0\n552,563,5.5\n552,564,6.0\n552,565,6.5\n552,566,7.0\n552,567,7.5\n552,568,8.0\n552,569,8.5\n552,570,9.0\n552,571,9.5\n552,572,10.0\n552,573,10.5\n552,574,11.0\n552,575,1.5\n552,576,1.0\n552,577,0.5\n552,578,1.0\n552,579,1.5\n552,580,2.0\n552,581,2.5\n552,582,3.0\n552,583,3.5\n552,584,4.0\n552,585,4.5\n552,586,5.0\n552,587,5.5\n552,588,6.0\n552,589,6.5\n552,590,7.0\n552,591,7.5\n552,592,8.0\n552,593,8.5\n552,594,9.0\n552,595,9.5\n552,596,10.0\n552,597,10.5\n552,598,11.0\n552,599,11.5\n552,600,2.0\n552,601,1.5\n552,602,1.0\n552,603,1.5\n552,604,2.0\n552,605,2.5\n552,606,3.0\n552,607,3.5\n552,608,4.0\n552,609,4.5\n552,610,5.0\n552,611,5.5\n552,612,6.0\n552,613,6.5\n552,614,7.0\n552,615,7.5\n552,616,8.0\n552,617,8.5\n552,618,9.0\n552,619,9.5\n552,620,10.0\n552,621,10.5\n552,622,11.0\n552,623,11.5\n552,624,12.0\n553,0,12.5\n553,1,12.0\n553,2,11.5\n553,3,11.0\n553,4,11.5\n553,5,12.0\n553,6,12.5\n553,7,13.0\n553,8,13.5\n553,9,14.0\n553,10,14.5\n553,11,15.0\n553,12,15.5\n553,13,16.0\n553,14,16.5\n553,15,17.0\n553,16,17.5\n553,17,18.0\n553,18,18.5\n553,19,19.0\n553,20,19.5\n553,21,20.0\n553,22,20.5\n553,23,21.0\n553,24,21.5\n553,25,12.0\n553,26,11.5\n553,27,11.0\n553,28,10.5\n553,29,11.0\n553,30,11.5\n553,31,12.0\n553,32,12.5\n553,33,13.0\n553,34,13.5\n553,35,14.0\n553,36,14.5\n553,37,15.0\n553,38,15.5\n553,39,16.0\n553,40,16.5\n553,41,17.0\n553,42,17.5\n553,43,18.0\n553,44,18.5\n553,45,19.0\n553,46,19.5\n553,47,20.0\n553,48,20.5\n553,49,21.0\n553,50,11.5\n553,51,11.0\n553,52,10.5\n553,53,10.0\n553,54,10.5\n553,55,11.0\n553,56,11.5\n553,57,12.0\n553,58,12.5\n553,59,13.0\n553,60,13.5\n553,61,14.0\n553,62,14.5\n553,63,15.0\n553,64,15.5\n553,65,16.0\n553,66,16.5\n553,67,17.0\n553,68,17.5\n553,69,18.0\n553,70,18.5\n553,71,19.0\n553,72,19.5\n553,73,20.0\n553,74,20.5\n553,75,11.0\n553,76,10.5\n553,77,10.0\n553,78,9.5\n553,79,10.0\n553,80,10.5\n553,81,11.0\n553,82,11.5\n553,83,12.0\n553,84,12.5\n553,85,13.0\n553,86,13.5\n553,87,14.0\n553,88,14.5\n553,89,15.0\n553,90,15.5\n553,91,16.0\n553,92,16.5\n553,93,17.0\n553,94,17.5\n553,95,18.0\n553,96,18.5\n553,97,19.0\n553,98,19.5\n553,99,20.0\n553,100,10.5\n553,101,10.0\n553,102,9.5\n553,103,9.0\n553,104,9.5\n553,105,10.0\n553,106,10.5\n553,107,11.0\n553,108,11.5\n553,109,12.0\n553,110,12.5\n553,111,13.0\n553,112,13.5\n553,113,14.0\n553,114,14.5\n553,115,15.0\n553,116,15.5\n553,117,16.0\n553,118,16.5\n553,119,17.0\n553,120,17.5\n553,121,18.0\n553,122,18.5\n553,123,19.0\n553,124,19.5\n553,125,10.0\n553,126,9.5\n553,127,9.0\n553,128,8.5\n553,129,9.0\n553,130,9.5\n553,131,10.0\n553,132,10.5\n553,133,11.0\n553,134,11.5\n553,135,12.0\n553,136,12.5\n553,137,13.0\n553,138,13.5\n553,139,14.0\n553,140,14.5\n553,141,15.0\n553,142,15.5\n553,143,16.0\n553,144,16.5\n553,145,17.0\n553,146,17.5\n553,147,18.0\n553,148,18.5\n553,149,19.0\n553,150,9.5\n553,151,9.0\n553,152,8.5\n553,153,8.0\n553,154,8.5\n553,155,9.0\n553,156,9.5\n553,157,10.0\n553,158,10.5\n553,159,11.0\n553,160,11.5\n553,161,12.0\n553,162,12.5\n553,163,13.0\n553,164,13.5\n553,165,14.0\n553,166,14.5\n553,167,15.0\n553,168,15.5\n553,169,16.0\n553,170,16.5\n553,171,17.0\n553,172,17.5\n553,173,18.0\n553,174,18.5\n553,175,9.0\n553,176,8.5\n553,177,8.0\n553,178,7.5\n553,179,8.0\n553,180,8.5\n553,181,9.0\n553,182,9.5\n553,183,10.0\n553,184,10.5\n553,185,11.0\n553,186,11.5\n553,187,12.0\n553,188,12.5\n553,189,13.0\n553,190,13.5\n553,191,14.0\n553,192,14.5\n553,193,15.0\n553,194,15.5\n553,195,16.0\n553,196,16.5\n553,197,17.0\n553,198,17.5\n553,199,18.0\n553,200,8.5\n553,201,8.0\n553,202,7.5\n553,203,7.0\n553,204,7.5\n553,205,8.0\n553,206,8.5\n553,207,9.0\n553,208,9.5\n553,209,10.0\n553,210,10.5\n553,211,11.0\n553,212,11.5\n553,213,12.0\n553,214,12.5\n553,215,13.0\n553,216,13.5\n553,217,14.0\n553,218,14.5\n553,219,15.0\n553,220,15.5\n553,221,16.0\n553,222,16.5\n553,223,17.0\n553,224,17.5\n553,225,8.0\n553,226,7.5\n553,227,7.0\n553,228,6.5\n553,229,7.0\n553,230,7.5\n553,231,8.0\n553,232,8.5\n553,233,9.0\n553,234,9.5\n553,235,10.0\n553,236,10.5\n553,237,11.0\n553,238,11.5\n553,239,12.0\n553,240,12.5\n553,241,13.0\n553,242,13.5\n553,243,14.0\n553,244,14.5\n553,245,15.0\n553,246,15.5\n553,247,16.0\n553,248,16.5\n553,249,17.0\n553,250,7.5\n553,251,7.0\n553,252,6.5\n553,253,6.0\n553,254,6.5\n553,255,7.0\n553,256,7.5\n553,257,8.0\n553,258,8.5\n553,259,9.0\n553,260,9.5\n553,261,10.0\n553,262,10.5\n553,263,11.0\n553,264,11.5\n553,265,12.0\n553,266,12.5\n553,267,13.0\n553,268,13.5\n553,269,14.0\n553,270,14.5\n553,271,15.0\n553,272,15.5\n553,273,16.0\n553,274,16.5\n553,275,7.0\n553,276,6.5\n553,277,6.0\n553,278,5.5\n553,279,6.0\n553,280,6.5\n553,281,7.0\n553,282,7.5\n553,283,8.0\n553,284,8.5\n553,285,9.0\n553,286,9.5\n553,287,10.0\n553,288,10.5\n553,289,11.0\n553,290,11.5\n553,291,12.0\n553,292,12.5\n553,293,13.0\n553,294,13.5\n553,295,14.0\n553,296,14.5\n553,297,15.0\n553,298,15.5\n553,299,16.0\n553,300,6.5\n553,301,6.0\n553,302,5.5\n553,303,5.0\n553,304,5.5\n553,305,6.0\n553,306,6.5\n553,307,7.0\n553,308,7.5\n553,309,8.0\n553,310,8.5\n553,311,9.0\n553,312,9.5\n553,313,10.0\n553,314,10.5\n553,315,11.0\n553,316,11.5\n553,317,12.0\n553,318,12.5\n553,319,13.0\n553,320,13.5\n553,321,14.0\n553,322,14.5\n553,323,15.0\n553,324,15.5\n553,325,6.0\n553,326,5.5\n553,327,5.0\n553,328,4.5\n553,329,5.0\n553,330,5.5\n553,331,6.0\n553,332,6.5\n553,333,7.0\n553,334,7.5\n553,335,8.0\n553,336,8.5\n553,337,9.0\n553,338,9.5\n553,339,10.0\n553,340,10.5\n553,341,11.0\n553,342,11.5\n553,343,12.0\n553,344,12.5\n553,345,13.0\n553,346,13.5\n553,347,14.0\n553,348,14.5\n553,349,15.0\n553,350,5.5\n553,351,5.0\n553,352,4.5\n553,353,4.0\n553,354,4.5\n553,355,5.0\n553,356,5.5\n553,357,6.0\n553,358,6.5\n553,359,7.0\n553,360,7.5\n553,361,8.0\n553,362,8.5\n553,363,9.0\n553,364,9.5\n553,365,10.0\n553,366,10.5\n553,367,11.0\n553,368,11.5\n553,369,12.0\n553,370,12.5\n553,371,13.0\n553,372,13.5\n553,373,14.0\n553,374,14.5\n553,375,5.0\n553,376,4.5\n553,377,4.0\n553,378,3.5\n553,379,4.0\n553,380,4.5\n553,381,5.0\n553,382,5.5\n553,383,6.0\n553,384,6.5\n553,385,7.0\n553,386,7.5\n553,387,8.0\n553,388,8.5\n553,389,9.0\n553,390,9.5\n553,391,10.0\n553,392,10.5\n553,393,11.0\n553,394,11.5\n553,395,12.0\n553,396,12.5\n553,397,13.0\n553,398,13.5\n553,399,14.0\n553,400,4.5\n553,401,4.0\n553,402,3.5\n553,403,3.0\n553,404,3.5\n553,405,4.0\n553,406,4.5\n553,407,5.0\n553,408,5.5\n553,409,6.0\n553,410,6.5\n553,411,7.0\n553,412,7.5\n553,413,8.0\n553,414,8.5\n553,415,9.0\n553,416,9.5\n553,417,10.0\n553,418,10.5\n553,419,11.0\n553,420,11.5\n553,421,12.0\n553,422,12.5\n553,423,13.0\n553,424,13.5\n553,425,4.0\n553,426,3.5\n553,427,3.0\n553,428,2.5\n553,429,3.0\n553,430,3.5\n553,431,4.0\n553,432,4.5\n553,433,5.0\n553,434,5.5\n553,435,6.0\n553,436,6.5\n553,437,7.0\n553,438,7.5\n553,439,8.0\n553,440,8.5\n553,441,9.0\n553,442,9.5\n553,443,10.0\n553,444,10.5\n553,445,11.0\n553,446,11.5\n553,447,12.0\n553,448,12.5\n553,449,13.0\n553,450,3.5\n553,451,3.0\n553,452,2.5\n553,453,2.0\n553,454,2.5\n553,455,3.0\n553,456,3.5\n553,457,4.0\n553,458,4.5\n553,459,5.0\n553,460,5.5\n553,461,6.0\n553,462,6.5\n553,463,7.0\n553,464,7.5\n553,465,8.0\n553,466,8.5\n553,467,9.0\n553,468,9.5\n553,469,10.0\n553,470,10.5\n553,471,11.0\n553,472,11.5\n553,473,12.0\n553,474,12.5\n553,475,3.0\n553,476,2.5\n553,477,2.0\n553,478,1.5\n553,479,2.0\n553,480,2.5\n553,481,3.0\n553,482,3.5\n553,483,4.0\n553,484,4.5\n553,485,5.0\n553,486,5.5\n553,487,6.0\n553,488,6.5\n553,489,7.0\n553,490,7.5\n553,491,8.0\n553,492,8.5\n553,493,9.0\n553,494,9.5\n553,495,10.0\n553,496,10.5\n553,497,11.0\n553,498,11.5\n553,499,12.0\n553,500,2.5\n553,501,2.0\n553,502,1.5\n553,503,1.0\n553,504,1.5\n553,505,2.0\n553,506,2.5\n553,507,3.0\n553,508,3.5\n553,509,4.0\n553,510,4.5\n553,511,5.0\n553,512,5.5\n553,513,6.0\n553,514,6.5\n553,515,7.0\n553,516,7.5\n553,517,8.0\n553,518,8.5\n553,519,9.0\n553,520,9.5\n553,521,10.0\n553,522,10.5\n553,523,11.0\n553,524,11.5\n553,525,2.0\n553,526,1.5\n553,527,1.0\n553,528,0.5\n553,529,1.0\n553,530,1.5\n553,531,2.0\n553,532,2.5\n553,533,3.0\n553,534,3.5\n553,535,4.0\n553,536,4.5\n553,537,5.0\n553,538,5.5\n553,539,6.0\n553,540,6.5\n553,541,7.0\n553,542,7.5\n553,543,8.0\n553,544,8.5\n553,545,9.0\n553,546,9.5\n553,547,10.0\n553,548,10.5\n553,549,11.0\n553,550,1.5\n553,551,1.0\n553,552,0.5\n553,553,0\n553,554,0.5\n553,555,1.0\n553,556,1.5\n553,557,2.0\n553,558,2.5\n553,559,3.0\n553,560,3.5\n553,561,4.0\n553,562,4.5\n553,563,5.0\n553,564,5.5\n553,565,6.0\n553,566,6.5\n553,567,7.0\n553,568,7.5\n553,569,8.0\n553,570,8.5\n553,571,9.0\n553,572,9.5\n553,573,10.0\n553,574,10.5\n553,575,2.0\n553,576,1.5\n553,577,1.0\n553,578,0.5\n553,579,1.0\n553,580,1.5\n553,581,2.0\n553,582,2.5\n553,583,3.0\n553,584,3.5\n553,585,4.0\n553,586,4.5\n553,587,5.0\n553,588,5.5\n553,589,6.0\n553,590,6.5\n553,591,7.0\n553,592,7.5\n553,593,8.0\n553,594,8.5\n553,595,9.0\n553,596,9.5\n553,597,10.0\n553,598,10.5\n553,599,11.0\n553,600,2.5\n553,601,2.0\n553,602,1.5\n553,603,1.0\n553,604,1.5\n553,605,2.0\n553,606,2.5\n553,607,3.0\n553,608,3.5\n553,609,4.0\n553,610,4.5\n553,611,5.0\n553,612,5.5\n553,613,6.0\n553,614,6.5\n553,615,7.0\n553,616,7.5\n553,617,8.0\n553,618,8.5\n553,619,9.0\n553,620,9.5\n553,621,10.0\n553,622,10.5\n553,623,11.0\n553,624,11.5\n554,0,13.0\n554,1,12.5\n554,2,12.0\n554,3,11.5\n554,4,11.0\n554,5,11.5\n554,6,12.0\n554,7,12.5\n554,8,13.0\n554,9,13.5\n554,10,14.0\n554,11,14.5\n554,12,15.0\n554,13,15.5\n554,14,16.0\n554,15,16.5\n554,16,17.0\n554,17,17.5\n554,18,18.0\n554,19,18.5\n554,20,19.0\n554,21,19.5\n554,22,20.0\n554,23,20.5\n554,24,21.0\n554,25,12.5\n554,26,12.0\n554,27,11.5\n554,28,11.0\n554,29,10.5\n554,30,11.0\n554,31,11.5\n554,32,12.0\n554,33,12.5\n554,34,13.0\n554,35,13.5\n554,36,14.0\n554,37,14.5\n554,38,15.0\n554,39,15.5\n554,40,16.0\n554,41,16.5\n554,42,17.0\n554,43,17.5\n554,44,18.0\n554,45,18.5\n554,46,19.0\n554,47,19.5\n554,48,20.0\n554,49,20.5\n554,50,12.0\n554,51,11.5\n554,52,11.0\n554,53,10.5\n554,54,10.0\n554,55,10.5\n554,56,11.0\n554,57,11.5\n554,58,12.0\n554,59,12.5\n554,60,13.0\n554,61,13.5\n554,62,14.0\n554,63,14.5\n554,64,15.0\n554,65,15.5\n554,66,16.0\n554,67,16.5\n554,68,17.0\n554,69,17.5\n554,70,18.0\n554,71,18.5\n554,72,19.0\n554,73,19.5\n554,74,20.0\n554,75,11.5\n554,76,11.0\n554,77,10.5\n554,78,10.0\n554,79,9.5\n554,80,10.0\n554,81,10.5\n554,82,11.0\n554,83,11.5\n554,84,12.0\n554,85,12.5\n554,86,13.0\n554,87,13.5\n554,88,14.0\n554,89,14.5\n554,90,15.0\n554,91,15.5\n554,92,16.0\n554,93,16.5\n554,94,17.0\n554,95,17.5\n554,96,18.0\n554,97,18.5\n554,98,19.0\n554,99,19.5\n554,100,11.0\n554,101,10.5\n554,102,10.0\n554,103,9.5\n554,104,9.0\n554,105,9.5\n554,106,10.0\n554,107,10.5\n554,108,11.0\n554,109,11.5\n554,110,12.0\n554,111,12.5\n554,112,13.0\n554,113,13.5\n554,114,14.0\n554,115,14.5\n554,116,15.0\n554,117,15.5\n554,118,16.0\n554,119,16.5\n554,120,17.0\n554,121,17.5\n554,122,18.0\n554,123,18.5\n554,124,19.0\n554,125,10.5\n554,126,10.0\n554,127,9.5\n554,128,9.0\n554,129,8.5\n554,130,9.0\n554,131,9.5\n554,132,10.0\n554,133,10.5\n554,134,11.0\n554,135,11.5\n554,136,12.0\n554,137,12.5\n554,138,13.0\n554,139,13.5\n554,140,14.0\n554,141,14.5\n554,142,15.0\n554,143,15.5\n554,144,16.0\n554,145,16.5\n554,146,17.0\n554,147,17.5\n554,148,18.0\n554,149,18.5\n554,150,10.0\n554,151,9.5\n554,152,9.0\n554,153,8.5\n554,154,8.0\n554,155,8.5\n554,156,9.0\n554,157,9.5\n554,158,10.0\n554,159,10.5\n554,160,11.0\n554,161,11.5\n554,162,12.0\n554,163,12.5\n554,164,13.0\n554,165,13.5\n554,166,14.0\n554,167,14.5\n554,168,15.0\n554,169,15.5\n554,170,16.0\n554,171,16.5\n554,172,17.0\n554,173,17.5\n554,174,18.0\n554,175,9.5\n554,176,9.0\n554,177,8.5\n554,178,8.0\n554,179,7.5\n554,180,8.0\n554,181,8.5\n554,182,9.0\n554,183,9.5\n554,184,10.0\n554,185,10.5\n554,186,11.0\n554,187,11.5\n554,188,12.0\n554,189,12.5\n554,190,13.0\n554,191,13.5\n554,192,14.0\n554,193,14.5\n554,194,15.0\n554,195,15.5\n554,196,16.0\n554,197,16.5\n554,198,17.0\n554,199,17.5\n554,200,9.0\n554,201,8.5\n554,202,8.0\n554,203,7.5\n554,204,7.0\n554,205,7.5\n554,206,8.0\n554,207,8.5\n554,208,9.0\n554,209,9.5\n554,210,10.0\n554,211,10.5\n554,212,11.0\n554,213,11.5\n554,214,12.0\n554,215,12.5\n554,216,13.0\n554,217,13.5\n554,218,14.0\n554,219,14.5\n554,220,15.0\n554,221,15.5\n554,222,16.0\n554,223,16.5\n554,224,17.0\n554,225,8.5\n554,226,8.0\n554,227,7.5\n554,228,7.0\n554,229,6.5\n554,230,7.0\n554,231,7.5\n554,232,8.0\n554,233,8.5\n554,234,9.0\n554,235,9.5\n554,236,10.0\n554,237,10.5\n554,238,11.0\n554,239,11.5\n554,240,12.0\n554,241,12.5\n554,242,13.0\n554,243,13.5\n554,244,14.0\n554,245,14.5\n554,246,15.0\n554,247,15.5\n554,248,16.0\n554,249,16.5\n554,250,8.0\n554,251,7.5\n554,252,7.0\n554,253,6.5\n554,254,6.0\n554,255,6.5\n554,256,7.0\n554,257,7.5\n554,258,8.0\n554,259,8.5\n554,260,9.0\n554,261,9.5\n554,262,10.0\n554,263,10.5\n554,264,11.0\n554,265,11.5\n554,266,12.0\n554,267,12.5\n554,268,13.0\n554,269,13.5\n554,270,14.0\n554,271,14.5\n554,272,15.0\n554,273,15.5\n554,274,16.0\n554,275,7.5\n554,276,7.0\n554,277,6.5\n554,278,6.0\n554,279,5.5\n554,280,6.0\n554,281,6.5\n554,282,7.0\n554,283,7.5\n554,284,8.0\n554,285,8.5\n554,286,9.0\n554,287,9.5\n554,288,10.0\n554,289,10.5\n554,290,11.0\n554,291,11.5\n554,292,12.0\n554,293,12.5\n554,294,13.0\n554,295,13.5\n554,296,14.0\n554,297,14.5\n554,298,15.0\n554,299,15.5\n554,300,7.0\n554,301,6.5\n554,302,6.0\n554,303,5.5\n554,304,5.0\n554,305,5.5\n554,306,6.0\n554,307,6.5\n554,308,7.0\n554,309,7.5\n554,310,8.0\n554,311,8.5\n554,312,9.0\n554,313,9.5\n554,314,10.0\n554,315,10.5\n554,316,11.0\n554,317,11.5\n554,318,12.0\n554,319,12.5\n554,320,13.0\n554,321,13.5\n554,322,14.0\n554,323,14.5\n554,324,15.0\n554,325,6.5\n554,326,6.0\n554,327,5.5\n554,328,5.0\n554,329,4.5\n554,330,5.0\n554,331,5.5\n554,332,6.0\n554,333,6.5\n554,334,7.0\n554,335,7.5\n554,336,8.0\n554,337,8.5\n554,338,9.0\n554,339,9.5\n554,340,10.0\n554,341,10.5\n554,342,11.0\n554,343,11.5\n554,344,12.0\n554,345,12.5\n554,346,13.0\n554,347,13.5\n554,348,14.0\n554,349,14.5\n554,350,6.0\n554,351,5.5\n554,352,5.0\n554,353,4.5\n554,354,4.0\n554,355,4.5\n554,356,5.0\n554,357,5.5\n554,358,6.0\n554,359,6.5\n554,360,7.0\n554,361,7.5\n554,362,8.0\n554,363,8.5\n554,364,9.0\n554,365,9.5\n554,366,10.0\n554,367,10.5\n554,368,11.0\n554,369,11.5\n554,370,12.0\n554,371,12.5\n554,372,13.0\n554,373,13.5\n554,374,14.0\n554,375,5.5\n554,376,5.0\n554,377,4.5\n554,378,4.0\n554,379,3.5\n554,380,4.0\n554,381,4.5\n554,382,5.0\n554,383,5.5\n554,384,6.0\n554,385,6.5\n554,386,7.0\n554,387,7.5\n554,388,8.0\n554,389,8.5\n554,390,9.0\n554,391,9.5\n554,392,10.0\n554,393,10.5\n554,394,11.0\n554,395,11.5\n554,396,12.0\n554,397,12.5\n554,398,13.0\n554,399,13.5\n554,400,5.0\n554,401,4.5\n554,402,4.0\n554,403,3.5\n554,404,3.0\n554,405,3.5\n554,406,4.0\n554,407,4.5\n554,408,5.0\n554,409,5.5\n554,410,6.0\n554,411,6.5\n554,412,7.0\n554,413,7.5\n554,414,8.0\n554,415,8.5\n554,416,9.0\n554,417,9.5\n554,418,10.0\n554,419,10.5\n554,420,11.0\n554,421,11.5\n554,422,12.0\n554,423,12.5\n554,424,13.0\n554,425,4.5\n554,426,4.0\n554,427,3.5\n554,428,3.0\n554,429,2.5\n554,430,3.0\n554,431,3.5\n554,432,4.0\n554,433,4.5\n554,434,5.0\n554,435,5.5\n554,436,6.0\n554,437,6.5\n554,438,7.0\n554,439,7.5\n554,440,8.0\n554,441,8.5\n554,442,9.0\n554,443,9.5\n554,444,10.0\n554,445,10.5\n554,446,11.0\n554,447,11.5\n554,448,12.0\n554,449,12.5\n554,450,4.0\n554,451,3.5\n554,452,3.0\n554,453,2.5\n554,454,2.0\n554,455,2.5\n554,456,3.0\n554,457,3.5\n554,458,4.0\n554,459,4.5\n554,460,5.0\n554,461,5.5\n554,462,6.0\n554,463,6.5\n554,464,7.0\n554,465,7.5\n554,466,8.0\n554,467,8.5\n554,468,9.0\n554,469,9.5\n554,470,10.0\n554,471,10.5\n554,472,11.0\n554,473,11.5\n554,474,12.0\n554,475,3.5\n554,476,3.0\n554,477,2.5\n554,478,2.0\n554,479,1.5\n554,480,2.0\n554,481,2.5\n554,482,3.0\n554,483,3.5\n554,484,4.0\n554,485,4.5\n554,486,5.0\n554,487,5.5\n554,488,6.0\n554,489,6.5\n554,490,7.0\n554,491,7.5\n554,492,8.0\n554,493,8.5\n554,494,9.0\n554,495,9.5\n554,496,10.0\n554,497,10.5\n554,498,11.0\n554,499,11.5\n554,500,3.0\n554,501,2.5\n554,502,2.0\n554,503,1.5\n554,504,1.0\n554,505,1.5\n554,506,2.0\n554,507,2.5\n554,508,3.0\n554,509,3.5\n554,510,4.0\n554,511,4.5\n554,512,5.0\n554,513,5.5\n554,514,6.0\n554,515,6.5\n554,516,7.0\n554,517,7.5\n554,518,8.0\n554,519,8.5\n554,520,9.0\n554,521,9.5\n554,522,10.0\n554,523,10.5\n554,524,11.0\n554,525,2.5\n554,526,2.0\n554,527,1.5\n554,528,1.0\n554,529,0.5\n554,530,1.0\n554,531,1.5\n554,532,2.0\n554,533,2.5\n554,534,3.0\n554,535,3.5\n554,536,4.0\n554,537,4.5\n554,538,5.0\n554,539,5.5\n554,540,6.0\n554,541,6.5\n554,542,7.0\n554,543,7.5\n554,544,8.0\n554,545,8.5\n554,546,9.0\n554,547,9.5\n554,548,10.0\n554,549,10.5\n554,550,2.0\n554,551,1.5\n554,552,1.0\n554,553,0.5\n554,554,0\n554,555,0.5\n554,556,1.0\n554,557,1.5\n554,558,2.0\n554,559,2.5\n554,560,3.0\n554,561,3.5\n554,562,4.0\n554,563,4.5\n554,564,5.0\n554,565,5.5\n554,566,6.0\n554,567,6.5\n554,568,7.0\n554,569,7.5\n554,570,8.0\n554,571,8.5\n554,572,9.0\n554,573,9.5\n554,574,10.0\n554,575,2.5\n554,576,2.0\n554,577,1.5\n554,578,1.0\n554,579,0.5\n554,580,1.0\n554,581,1.5\n554,582,2.0\n554,583,2.5\n554,584,3.0\n554,585,3.5\n554,586,4.0\n554,587,4.5\n554,588,5.0\n554,589,5.5\n554,590,6.0\n554,591,6.5\n554,592,7.0\n554,593,7.5\n554,594,8.0\n554,595,8.5\n554,596,9.0\n554,597,9.5\n554,598,10.0\n554,599,10.5\n554,600,3.0\n554,601,2.5\n554,602,2.0\n554,603,1.5\n554,604,1.0\n554,605,1.5\n554,606,2.0\n554,607,2.5\n554,608,3.0\n554,609,3.5\n554,610,4.0\n554,611,4.5\n554,612,5.0\n554,613,5.5\n554,614,6.0\n554,615,6.5\n554,616,7.0\n554,617,7.5\n554,618,8.0\n554,619,8.5\n554,620,9.0\n554,621,9.5\n554,622,10.0\n554,623,10.5\n554,624,11.0\n555,0,13.5\n555,1,13.0\n555,2,12.5\n555,3,12.0\n555,4,11.5\n555,5,11.0\n555,6,11.5\n555,7,12.0\n555,8,12.5\n555,9,13.0\n555,10,13.5\n555,11,14.0\n555,12,14.5\n555,13,15.0\n555,14,15.5\n555,15,16.0\n555,16,16.5\n555,17,17.0\n555,18,17.5\n555,19,18.0\n555,20,18.5\n555,21,19.0\n555,22,19.5\n555,23,20.0\n555,24,20.5\n555,25,13.0\n555,26,12.5\n555,27,12.0\n555,28,11.5\n555,29,11.0\n555,30,10.5\n555,31,11.0\n555,32,11.5\n555,33,12.0\n555,34,12.5\n555,35,13.0\n555,36,13.5\n555,37,14.0\n555,38,14.5\n555,39,15.0\n555,40,15.5\n555,41,16.0\n555,42,16.5\n555,43,17.0\n555,44,17.5\n555,45,18.0\n555,46,18.5\n555,47,19.0\n555,48,19.5\n555,49,20.0\n555,50,12.5\n555,51,12.0\n555,52,11.5\n555,53,11.0\n555,54,10.5\n555,55,10.0\n555,56,10.5\n555,57,11.0\n555,58,11.5\n555,59,12.0\n555,60,12.5\n555,61,13.0\n555,62,13.5\n555,63,14.0\n555,64,14.5\n555,65,15.0\n555,66,15.5\n555,67,16.0\n555,68,16.5\n555,69,17.0\n555,70,17.5\n555,71,18.0\n555,72,18.5\n555,73,19.0\n555,74,19.5\n555,75,12.0\n555,76,11.5\n555,77,11.0\n555,78,10.5\n555,79,10.0\n555,80,9.5\n555,81,10.0\n555,82,10.5\n555,83,11.0\n555,84,11.5\n555,85,12.0\n555,86,12.5\n555,87,13.0\n555,88,13.5\n555,89,14.0\n555,90,14.5\n555,91,15.0\n555,92,15.5\n555,93,16.0\n555,94,16.5\n555,95,17.0\n555,96,17.5\n555,97,18.0\n555,98,18.5\n555,99,19.0\n555,100,11.5\n555,101,11.0\n555,102,10.5\n555,103,10.0\n555,104,9.5\n555,105,9.0\n555,106,9.5\n555,107,10.0\n555,108,10.5\n555,109,11.0\n555,110,11.5\n555,111,12.0\n555,112,12.5\n555,113,13.0\n555,114,13.5\n555,115,14.0\n555,116,14.5\n555,117,15.0\n555,118,15.5\n555,119,16.0\n555,120,16.5\n555,121,17.0\n555,122,17.5\n555,123,18.0\n555,124,18.5\n555,125,11.0\n555,126,10.5\n555,127,10.0\n555,128,9.5\n555,129,9.0\n555,130,8.5\n555,131,9.0\n555,132,9.5\n555,133,10.0\n555,134,10.5\n555,135,11.0\n555,136,11.5\n555,137,12.0\n555,138,12.5\n555,139,13.0\n555,140,13.5\n555,141,14.0\n555,142,14.5\n555,143,15.0\n555,144,15.5\n555,145,16.0\n555,146,16.5\n555,147,17.0\n555,148,17.5\n555,149,18.0\n555,150,10.5\n555,151,10.0\n555,152,9.5\n555,153,9.0\n555,154,8.5\n555,155,8.0\n555,156,8.5\n555,157,9.0\n555,158,9.5\n555,159,10.0\n555,160,10.5\n555,161,11.0\n555,162,11.5\n555,163,12.0\n555,164,12.5\n555,165,13.0\n555,166,13.5\n555,167,14.0\n555,168,14.5\n555,169,15.0\n555,170,15.5\n555,171,16.0\n555,172,16.5\n555,173,17.0\n555,174,17.5\n555,175,10.0\n555,176,9.5\n555,177,9.0\n555,178,8.5\n555,179,8.0\n555,180,7.5\n555,181,8.0\n555,182,8.5\n555,183,9.0\n555,184,9.5\n555,185,10.0\n555,186,10.5\n555,187,11.0\n555,188,11.5\n555,189,12.0\n555,190,12.5\n555,191,13.0\n555,192,13.5\n555,193,14.0\n555,194,14.5\n555,195,15.0\n555,196,15.5\n555,197,16.0\n555,198,16.5\n555,199,17.0\n555,200,9.5\n555,201,9.0\n555,202,8.5\n555,203,8.0\n555,204,7.5\n555,205,7.0\n555,206,7.5\n555,207,8.0\n555,208,8.5\n555,209,9.0\n555,210,9.5\n555,211,10.0\n555,212,10.5\n555,213,11.0\n555,214,11.5\n555,215,12.0\n555,216,12.5\n555,217,13.0\n555,218,13.5\n555,219,14.0\n555,220,14.5\n555,221,15.0\n555,222,15.5\n555,223,16.0\n555,224,16.5\n555,225,9.0\n555,226,8.5\n555,227,8.0\n555,228,7.5\n555,229,7.0\n555,230,6.5\n555,231,7.0\n555,232,7.5\n555,233,8.0\n555,234,8.5\n555,235,9.0\n555,236,9.5\n555,237,10.0\n555,238,10.5\n555,239,11.0\n555,240,11.5\n555,241,12.0\n555,242,12.5\n555,243,13.0\n555,244,13.5\n555,245,14.0\n555,246,14.5\n555,247,15.0\n555,248,15.5\n555,249,16.0\n555,250,8.5\n555,251,8.0\n555,252,7.5\n555,253,7.0\n555,254,6.5\n555,255,6.0\n555,256,6.5\n555,257,7.0\n555,258,7.5\n555,259,8.0\n555,260,8.5\n555,261,9.0\n555,262,9.5\n555,263,10.0\n555,264,10.5\n555,265,11.0\n555,266,11.5\n555,267,12.0\n555,268,12.5\n555,269,13.0\n555,270,13.5\n555,271,14.0\n555,272,14.5\n555,273,15.0\n555,274,15.5\n555,275,8.0\n555,276,7.5\n555,277,7.0\n555,278,6.5\n555,279,6.0\n555,280,5.5\n555,281,6.0\n555,282,6.5\n555,283,7.0\n555,284,7.5\n555,285,8.0\n555,286,8.5\n555,287,9.0\n555,288,9.5\n555,289,10.0\n555,290,10.5\n555,291,11.0\n555,292,11.5\n555,293,12.0\n555,294,12.5\n555,295,13.0\n555,296,13.5\n555,297,14.0\n555,298,14.5\n555,299,15.0\n555,300,7.5\n555,301,7.0\n555,302,6.5\n555,303,6.0\n555,304,5.5\n555,305,5.0\n555,306,5.5\n555,307,6.0\n555,308,6.5\n555,309,7.0\n555,310,7.5\n555,311,8.0\n555,312,8.5\n555,313,9.0\n555,314,9.5\n555,315,10.0\n555,316,10.5\n555,317,11.0\n555,318,11.5\n555,319,12.0\n555,320,12.5\n555,321,13.0\n555,322,13.5\n555,323,14.0\n555,324,14.5\n555,325,7.0\n555,326,6.5\n555,327,6.0\n555,328,5.5\n555,329,5.0\n555,330,4.5\n555,331,5.0\n555,332,5.5\n555,333,6.0\n555,334,6.5\n555,335,7.0\n555,336,7.5\n555,337,8.0\n555,338,8.5\n555,339,9.0\n555,340,9.5\n555,341,10.0\n555,342,10.5\n555,343,11.0\n555,344,11.5\n555,345,12.0\n555,346,12.5\n555,347,13.0\n555,348,13.5\n555,349,14.0\n555,350,6.5\n555,351,6.0\n555,352,5.5\n555,353,5.0\n555,354,4.5\n555,355,4.0\n555,356,4.5\n555,357,5.0\n555,358,5.5\n555,359,6.0\n555,360,6.5\n555,361,7.0\n555,362,7.5\n555,363,8.0\n555,364,8.5\n555,365,9.0\n555,366,9.5\n555,367,10.0\n555,368,10.5\n555,369,11.0\n555,370,11.5\n555,371,12.0\n555,372,12.5\n555,373,13.0\n555,374,13.5\n555,375,6.0\n555,376,5.5\n555,377,5.0\n555,378,4.5\n555,379,4.0\n555,380,3.5\n555,381,4.0\n555,382,4.5\n555,383,5.0\n555,384,5.5\n555,385,6.0\n555,386,6.5\n555,387,7.0\n555,388,7.5\n555,389,8.0\n555,390,8.5\n555,391,9.0\n555,392,9.5\n555,393,10.0\n555,394,10.5\n555,395,11.0\n555,396,11.5\n555,397,12.0\n555,398,12.5\n555,399,13.0\n555,400,5.5\n555,401,5.0\n555,402,4.5\n555,403,4.0\n555,404,3.5\n555,405,3.0\n555,406,3.5\n555,407,4.0\n555,408,4.5\n555,409,5.0\n555,410,5.5\n555,411,6.0\n555,412,6.5\n555,413,7.0\n555,414,7.5\n555,415,8.0\n555,416,8.5\n555,417,9.0\n555,418,9.5\n555,419,10.0\n555,420,10.5\n555,421,11.0\n555,422,11.5\n555,423,12.0\n555,424,12.5\n555,425,5.0\n555,426,4.5\n555,427,4.0\n555,428,3.5\n555,429,3.0\n555,430,2.5\n555,431,3.0\n555,432,3.5\n555,433,4.0\n555,434,4.5\n555,435,5.0\n555,436,5.5\n555,437,6.0\n555,438,6.5\n555,439,7.0\n555,440,7.5\n555,441,8.0\n555,442,8.5\n555,443,9.0\n555,444,9.5\n555,445,10.0\n555,446,10.5\n555,447,11.0\n555,448,11.5\n555,449,12.0\n555,450,4.5\n555,451,4.0\n555,452,3.5\n555,453,3.0\n555,454,2.5\n555,455,2.0\n555,456,2.5\n555,457,3.0\n555,458,3.5\n555,459,4.0\n555,460,4.5\n555,461,5.0\n555,462,5.5\n555,463,6.0\n555,464,6.5\n555,465,7.0\n555,466,7.5\n555,467,8.0\n555,468,8.5\n555,469,9.0\n555,470,9.5\n555,471,10.0\n555,472,10.5\n555,473,11.0\n555,474,11.5\n555,475,4.0\n555,476,3.5\n555,477,3.0\n555,478,2.5\n555,479,2.0\n555,480,1.5\n555,481,2.0\n555,482,2.5\n555,483,3.0\n555,484,3.5\n555,485,4.0\n555,486,4.5\n555,487,5.0\n555,488,5.5\n555,489,6.0\n555,490,6.5\n555,491,7.0\n555,492,7.5\n555,493,8.0\n555,494,8.5\n555,495,9.0\n555,496,9.5\n555,497,10.0\n555,498,10.5\n555,499,11.0\n555,500,3.5\n555,501,3.0\n555,502,2.5\n555,503,2.0\n555,504,1.5\n555,505,1.0\n555,506,1.5\n555,507,2.0\n555,508,2.5\n555,509,3.0\n555,510,3.5\n555,511,4.0\n555,512,4.5\n555,513,5.0\n555,514,5.5\n555,515,6.0\n555,516,6.5\n555,517,7.0\n555,518,7.5\n555,519,8.0\n555,520,8.5\n555,521,9.0\n555,522,9.5\n555,523,10.0\n555,524,10.5\n555,525,3.0\n555,526,2.5\n555,527,2.0\n555,528,1.5\n555,529,1.0\n555,530,0.5\n555,531,1.0\n555,532,1.5\n555,533,2.0\n555,534,2.5\n555,535,3.0\n555,536,3.5\n555,537,4.0\n555,538,4.5\n555,539,5.0\n555,540,5.5\n555,541,6.0\n555,542,6.5\n555,543,7.0\n555,544,7.5\n555,545,8.0\n555,546,8.5\n555,547,9.0\n555,548,9.5\n555,549,10.0\n555,550,2.5\n555,551,2.0\n555,552,1.5\n555,553,1.0\n555,554,0.5\n555,555,0\n555,556,0.5\n555,557,1.0\n555,558,1.5\n555,559,2.0\n555,560,2.5\n555,561,3.0\n555,562,3.5\n555,563,4.0\n555,564,4.5\n555,565,5.0\n555,566,5.5\n555,567,6.0\n555,568,6.5\n555,569,7.0\n555,570,7.5\n555,571,8.0\n555,572,8.5\n555,573,9.0\n555,574,9.5\n555,575,3.0\n555,576,2.5\n555,577,2.0\n555,578,1.5\n555,579,1.0\n555,580,0.5\n555,581,1.0\n555,582,1.5\n555,583,2.0\n555,584,2.5\n555,585,3.0\n555,586,3.5\n555,587,4.0\n555,588,4.5\n555,589,5.0\n555,590,5.5\n555,591,6.0\n555,592,6.5\n555,593,7.0\n555,594,7.5\n555,595,8.0\n555,596,8.5\n555,597,9.0\n555,598,9.5\n555,599,10.0\n555,600,3.5\n555,601,3.0\n555,602,2.5\n555,603,2.0\n555,604,1.5\n555,605,1.0\n555,606,1.5\n555,607,2.0\n555,608,2.5\n555,609,3.0\n555,610,3.5\n555,611,4.0\n555,612,4.5\n555,613,5.0\n555,614,5.5\n555,615,6.0\n555,616,6.5\n555,617,7.0\n555,618,7.5\n555,619,8.0\n555,620,8.5\n555,621,9.0\n555,622,9.5\n555,623,10.0\n555,624,10.5\n556,0,14.0\n556,1,13.5\n556,2,13.0\n556,3,12.5\n556,4,12.0\n556,5,11.5\n556,6,11.0\n556,7,11.5\n556,8,12.0\n556,9,12.5\n556,10,13.0\n556,11,13.5\n556,12,14.0\n556,13,14.5\n556,14,15.0\n556,15,15.5\n556,16,16.0\n556,17,16.5\n556,18,17.0\n556,19,17.5\n556,20,18.0\n556,21,18.5\n556,22,19.0\n556,23,19.5\n556,24,20.0\n556,25,13.5\n556,26,13.0\n556,27,12.5\n556,28,12.0\n556,29,11.5\n556,30,11.0\n556,31,10.5\n556,32,11.0\n556,33,11.5\n556,34,12.0\n556,35,12.5\n556,36,13.0\n556,37,13.5\n556,38,14.0\n556,39,14.5\n556,40,15.0\n556,41,15.5\n556,42,16.0\n556,43,16.5\n556,44,17.0\n556,45,17.5\n556,46,18.0\n556,47,18.5\n556,48,19.0\n556,49,19.5\n556,50,13.0\n556,51,12.5\n556,52,12.0\n556,53,11.5\n556,54,11.0\n556,55,10.5\n556,56,10.0\n556,57,10.5\n556,58,11.0\n556,59,11.5\n556,60,12.0\n556,61,12.5\n556,62,13.0\n556,63,13.5\n556,64,14.0\n556,65,14.5\n556,66,15.0\n556,67,15.5\n556,68,16.0\n556,69,16.5\n556,70,17.0\n556,71,17.5\n556,72,18.0\n556,73,18.5\n556,74,19.0\n556,75,12.5\n556,76,12.0\n556,77,11.5\n556,78,11.0\n556,79,10.5\n556,80,10.0\n556,81,9.5\n556,82,10.0\n556,83,10.5\n556,84,11.0\n556,85,11.5\n556,86,12.0\n556,87,12.5\n556,88,13.0\n556,89,13.5\n556,90,14.0\n556,91,14.5\n556,92,15.0\n556,93,15.5\n556,94,16.0\n556,95,16.5\n556,96,17.0\n556,97,17.5\n556,98,18.0\n556,99,18.5\n556,100,12.0\n556,101,11.5\n556,102,11.0\n556,103,10.5\n556,104,10.0\n556,105,9.5\n556,106,9.0\n556,107,9.5\n556,108,10.0\n556,109,10.5\n556,110,11.0\n556,111,11.5\n556,112,12.0\n556,113,12.5\n556,114,13.0\n556,115,13.5\n556,116,14.0\n556,117,14.5\n556,118,15.0\n556,119,15.5\n556,120,16.0\n556,121,16.5\n556,122,17.0\n556,123,17.5\n556,124,18.0\n556,125,11.5\n556,126,11.0\n556,127,10.5\n556,128,10.0\n556,129,9.5\n556,130,9.0\n556,131,8.5\n556,132,9.0\n556,133,9.5\n556,134,10.0\n556,135,10.5\n556,136,11.0\n556,137,11.5\n556,138,12.0\n556,139,12.5\n556,140,13.0\n556,141,13.5\n556,142,14.0\n556,143,14.5\n556,144,15.0\n556,145,15.5\n556,146,16.0\n556,147,16.5\n556,148,17.0\n556,149,17.5\n556,150,11.0\n556,151,10.5\n556,152,10.0\n556,153,9.5\n556,154,9.0\n556,155,8.5\n556,156,8.0\n556,157,8.5\n556,158,9.0\n556,159,9.5\n556,160,10.0\n556,161,10.5\n556,162,11.0\n556,163,11.5\n556,164,12.0\n556,165,12.5\n556,166,13.0\n556,167,13.5\n556,168,14.0\n556,169,14.5\n556,170,15.0\n556,171,15.5\n556,172,16.0\n556,173,16.5\n556,174,17.0\n556,175,10.5\n556,176,10.0\n556,177,9.5\n556,178,9.0\n556,179,8.5\n556,180,8.0\n556,181,7.5\n556,182,8.0\n556,183,8.5\n556,184,9.0\n556,185,9.5\n556,186,10.0\n556,187,10.5\n556,188,11.0\n556,189,11.5\n556,190,12.0\n556,191,12.5\n556,192,13.0\n556,193,13.5\n556,194,14.0\n556,195,14.5\n556,196,15.0\n556,197,15.5\n556,198,16.0\n556,199,16.5\n556,200,10.0\n556,201,9.5\n556,202,9.0\n556,203,8.5\n556,204,8.0\n556,205,7.5\n556,206,7.0\n556,207,7.5\n556,208,8.0\n556,209,8.5\n556,210,9.0\n556,211,9.5\n556,212,10.0\n556,213,10.5\n556,214,11.0\n556,215,11.5\n556,216,12.0\n556,217,12.5\n556,218,13.0\n556,219,13.5\n556,220,14.0\n556,221,14.5\n556,222,15.0\n556,223,15.5\n556,224,16.0\n556,225,9.5\n556,226,9.0\n556,227,8.5\n556,228,8.0\n556,229,7.5\n556,230,7.0\n556,231,6.5\n556,232,7.0\n556,233,7.5\n556,234,8.0\n556,235,8.5\n556,236,9.0\n556,237,9.5\n556,238,10.0\n556,239,10.5\n556,240,11.0\n556,241,11.5\n556,242,12.0\n556,243,12.5\n556,244,13.0\n556,245,13.5\n556,246,14.0\n556,247,14.5\n556,248,15.0\n556,249,15.5\n556,250,9.0\n556,251,8.5\n556,252,8.0\n556,253,7.5\n556,254,7.0\n556,255,6.5\n556,256,6.0\n556,257,6.5\n556,258,7.0\n556,259,7.5\n556,260,8.0\n556,261,8.5\n556,262,9.0\n556,263,9.5\n556,264,10.0\n556,265,10.5\n556,266,11.0\n556,267,11.5\n556,268,12.0\n556,269,12.5\n556,270,13.0\n556,271,13.5\n556,272,14.0\n556,273,14.5\n556,274,15.0\n556,275,8.5\n556,276,8.0\n556,277,7.5\n556,278,7.0\n556,279,6.5\n556,280,6.0\n556,281,5.5\n556,282,6.0\n556,283,6.5\n556,284,7.0\n556,285,7.5\n556,286,8.0\n556,287,8.5\n556,288,9.0\n556,289,9.5\n556,290,10.0\n556,291,10.5\n556,292,11.0\n556,293,11.5\n556,294,12.0\n556,295,12.5\n556,296,13.0\n556,297,13.5\n556,298,14.0\n556,299,14.5\n556,300,8.0\n556,301,7.5\n556,302,7.0\n556,303,6.5\n556,304,6.0\n556,305,5.5\n556,306,5.0\n556,307,5.5\n556,308,6.0\n556,309,6.5\n556,310,7.0\n556,311,7.5\n556,312,8.0\n556,313,8.5\n556,314,9.0\n556,315,9.5\n556,316,10.0\n556,317,10.5\n556,318,11.0\n556,319,11.5\n556,320,12.0\n556,321,12.5\n556,322,13.0\n556,323,13.5\n556,324,14.0\n556,325,7.5\n556,326,7.0\n556,327,6.5\n556,328,6.0\n556,329,5.5\n556,330,5.0\n556,331,4.5\n556,332,5.0\n556,333,5.5\n556,334,6.0\n556,335,6.5\n556,336,7.0\n556,337,7.5\n556,338,8.0\n556,339,8.5\n556,340,9.0\n556,341,9.5\n556,342,10.0\n556,343,10.5\n556,344,11.0\n556,345,11.5\n556,346,12.0\n556,347,12.5\n556,348,13.0\n556,349,13.5\n556,350,7.0\n556,351,6.5\n556,352,6.0\n556,353,5.5\n556,354,5.0\n556,355,4.5\n556,356,4.0\n556,357,4.5\n556,358,5.0\n556,359,5.5\n556,360,6.0\n556,361,6.5\n556,362,7.0\n556,363,7.5\n556,364,8.0\n556,365,8.5\n556,366,9.0\n556,367,9.5\n556,368,10.0\n556,369,10.5\n556,370,11.0\n556,371,11.5\n556,372,12.0\n556,373,12.5\n556,374,13.0\n556,375,6.5\n556,376,6.0\n556,377,5.5\n556,378,5.0\n556,379,4.5\n556,380,4.0\n556,381,3.5\n556,382,4.0\n556,383,4.5\n556,384,5.0\n556,385,5.5\n556,386,6.0\n556,387,6.5\n556,388,7.0\n556,389,7.5\n556,390,8.0\n556,391,8.5\n556,392,9.0\n556,393,9.5\n556,394,10.0\n556,395,10.5\n556,396,11.0\n556,397,11.5\n556,398,12.0\n556,399,12.5\n556,400,6.0\n556,401,5.5\n556,402,5.0\n556,403,4.5\n556,404,4.0\n556,405,3.5\n556,406,3.0\n556,407,3.5\n556,408,4.0\n556,409,4.5\n556,410,5.0\n556,411,5.5\n556,412,6.0\n556,413,6.5\n556,414,7.0\n556,415,7.5\n556,416,8.0\n556,417,8.5\n556,418,9.0\n556,419,9.5\n556,420,10.0\n556,421,10.5\n556,422,11.0\n556,423,11.5\n556,424,12.0\n556,425,5.5\n556,426,5.0\n556,427,4.5\n556,428,4.0\n556,429,3.5\n556,430,3.0\n556,431,2.5\n556,432,3.0\n556,433,3.5\n556,434,4.0\n556,435,4.5\n556,436,5.0\n556,437,5.5\n556,438,6.0\n556,439,6.5\n556,440,7.0\n556,441,7.5\n556,442,8.0\n556,443,8.5\n556,444,9.0\n556,445,9.5\n556,446,10.0\n556,447,10.5\n556,448,11.0\n556,449,11.5\n556,450,5.0\n556,451,4.5\n556,452,4.0\n556,453,3.5\n556,454,3.0\n556,455,2.5\n556,456,2.0\n556,457,2.5\n556,458,3.0\n556,459,3.5\n556,460,4.0\n556,461,4.5\n556,462,5.0\n556,463,5.5\n556,464,6.0\n556,465,6.5\n556,466,7.0\n556,467,7.5\n556,468,8.0\n556,469,8.5\n556,470,9.0\n556,471,9.5\n556,472,10.0\n556,473,10.5\n556,474,11.0\n556,475,4.5\n556,476,4.0\n556,477,3.5\n556,478,3.0\n556,479,2.5\n556,480,2.0\n556,481,1.5\n556,482,2.0\n556,483,2.5\n556,484,3.0\n556,485,3.5\n556,486,4.0\n556,487,4.5\n556,488,5.0\n556,489,5.5\n556,490,6.0\n556,491,6.5\n556,492,7.0\n556,493,7.5\n556,494,8.0\n556,495,8.5\n556,496,9.0\n556,497,9.5\n556,498,10.0\n556,499,10.5\n556,500,4.0\n556,501,3.5\n556,502,3.0\n556,503,2.5\n556,504,2.0\n556,505,1.5\n556,506,1.0\n556,507,1.5\n556,508,2.0\n556,509,2.5\n556,510,3.0\n556,511,3.5\n556,512,4.0\n556,513,4.5\n556,514,5.0\n556,515,5.5\n556,516,6.0\n556,517,6.5\n556,518,7.0\n556,519,7.5\n556,520,8.0\n556,521,8.5\n556,522,9.0\n556,523,9.5\n556,524,10.0\n556,525,3.5\n556,526,3.0\n556,527,2.5\n556,528,2.0\n556,529,1.5\n556,530,1.0\n556,531,0.5\n556,532,1.0\n556,533,1.5\n556,534,2.0\n556,535,2.5\n556,536,3.0\n556,537,3.5\n556,538,4.0\n556,539,4.5\n556,540,5.0\n556,541,5.5\n556,542,6.0\n556,543,6.5\n556,544,7.0\n556,545,7.5\n556,546,8.0\n556,547,8.5\n556,548,9.0\n556,549,9.5\n556,550,3.0\n556,551,2.5\n556,552,2.0\n556,553,1.5\n556,554,1.0\n556,555,0.5\n556,556,0\n556,557,0.5\n556,558,1.0\n556,559,1.5\n556,560,2.0\n556,561,2.5\n556,562,3.0\n556,563,3.5\n556,564,4.0\n556,565,4.5\n556,566,5.0\n556,567,5.5\n556,568,6.0\n556,569,6.5\n556,570,7.0\n556,571,7.5\n556,572,8.0\n556,573,8.5\n556,574,9.0\n556,575,3.5\n556,576,3.0\n556,577,2.5\n556,578,2.0\n556,579,1.5\n556,580,1.0\n556,581,0.5\n556,582,1.0\n556,583,1.5\n556,584,2.0\n556,585,2.5\n556,586,3.0\n556,587,3.5\n556,588,4.0\n556,589,4.5\n556,590,5.0\n556,591,5.5\n556,592,6.0\n556,593,6.5\n556,594,7.0\n556,595,7.5\n556,596,8.0\n556,597,8.5\n556,598,9.0\n556,599,9.5\n556,600,4.0\n556,601,3.5\n556,602,3.0\n556,603,2.5\n556,604,2.0\n556,605,1.5\n556,606,1.0\n556,607,1.5\n556,608,2.0\n556,609,2.5\n556,610,3.0\n556,611,3.5\n556,612,4.0\n556,613,4.5\n556,614,5.0\n556,615,5.5\n556,616,6.0\n556,617,6.5\n556,618,7.0\n556,619,7.5\n556,620,8.0\n556,621,8.5\n556,622,9.0\n556,623,9.5\n556,624,10.0\n557,0,14.5\n557,1,14.0\n557,2,13.5\n557,3,13.0\n557,4,12.5\n557,5,12.0\n557,6,11.5\n557,7,11.0\n557,8,11.5\n557,9,12.0\n557,10,12.5\n557,11,13.0\n557,12,13.5\n557,13,14.0\n557,14,14.5\n557,15,15.0\n557,16,15.5\n557,17,16.0\n557,18,16.5\n557,19,17.0\n557,20,17.5\n557,21,18.0\n557,22,18.5\n557,23,19.0\n557,24,19.5\n557,25,14.0\n557,26,13.5\n557,27,13.0\n557,28,12.5\n557,29,12.0\n557,30,11.5\n557,31,11.0\n557,32,10.5\n557,33,11.0\n557,34,11.5\n557,35,12.0\n557,36,12.5\n557,37,13.0\n557,38,13.5\n557,39,14.0\n557,40,14.5\n557,41,15.0\n557,42,15.5\n557,43,16.0\n557,44,16.5\n557,45,17.0\n557,46,17.5\n557,47,18.0\n557,48,18.5\n557,49,19.0\n557,50,13.5\n557,51,13.0\n557,52,12.5\n557,53,12.0\n557,54,11.5\n557,55,11.0\n557,56,10.5\n557,57,10.0\n557,58,10.5\n557,59,11.0\n557,60,11.5\n557,61,12.0\n557,62,12.5\n557,63,13.0\n557,64,13.5\n557,65,14.0\n557,66,14.5\n557,67,15.0\n557,68,15.5\n557,69,16.0\n557,70,16.5\n557,71,17.0\n557,72,17.5\n557,73,18.0\n557,74,18.5\n557,75,13.0\n557,76,12.5\n557,77,12.0\n557,78,11.5\n557,79,11.0\n557,80,10.5\n557,81,10.0\n557,82,9.5\n557,83,10.0\n557,84,10.5\n557,85,11.0\n557,86,11.5\n557,87,12.0\n557,88,12.5\n557,89,13.0\n557,90,13.5\n557,91,14.0\n557,92,14.5\n557,93,15.0\n557,94,15.5\n557,95,16.0\n557,96,16.5\n557,97,17.0\n557,98,17.5\n557,99,18.0\n557,100,12.5\n557,101,12.0\n557,102,11.5\n557,103,11.0\n557,104,10.5\n557,105,10.0\n557,106,9.5\n557,107,9.0\n557,108,9.5\n557,109,10.0\n557,110,10.5\n557,111,11.0\n557,112,11.5\n557,113,12.0\n557,114,12.5\n557,115,13.0\n557,116,13.5\n557,117,14.0\n557,118,14.5\n557,119,15.0\n557,120,15.5\n557,121,16.0\n557,122,16.5\n557,123,17.0\n557,124,17.5\n557,125,12.0\n557,126,11.5\n557,127,11.0\n557,128,10.5\n557,129,10.0\n557,130,9.5\n557,131,9.0\n557,132,8.5\n557,133,9.0\n557,134,9.5\n557,135,10.0\n557,136,10.5\n557,137,11.0\n557,138,11.5\n557,139,12.0\n557,140,12.5\n557,141,13.0\n557,142,13.5\n557,143,14.0\n557,144,14.5\n557,145,15.0\n557,146,15.5\n557,147,16.0\n557,148,16.5\n557,149,17.0\n557,150,11.5\n557,151,11.0\n557,152,10.5\n557,153,10.0\n557,154,9.5\n557,155,9.0\n557,156,8.5\n557,157,8.0\n557,158,8.5\n557,159,9.0\n557,160,9.5\n557,161,10.0\n557,162,10.5\n557,163,11.0\n557,164,11.5\n557,165,12.0\n557,166,12.5\n557,167,13.0\n557,168,13.5\n557,169,14.0\n557,170,14.5\n557,171,15.0\n557,172,15.5\n557,173,16.0\n557,174,16.5\n557,175,11.0\n557,176,10.5\n557,177,10.0\n557,178,9.5\n557,179,9.0\n557,180,8.5\n557,181,8.0\n557,182,7.5\n557,183,8.0\n557,184,8.5\n557,185,9.0\n557,186,9.5\n557,187,10.0\n557,188,10.5\n557,189,11.0\n557,190,11.5\n557,191,12.0\n557,192,12.5\n557,193,13.0\n557,194,13.5\n557,195,14.0\n557,196,14.5\n557,197,15.0\n557,198,15.5\n557,199,16.0\n557,200,10.5\n557,201,10.0\n557,202,9.5\n557,203,9.0\n557,204,8.5\n557,205,8.0\n557,206,7.5\n557,207,7.0\n557,208,7.5\n557,209,8.0\n557,210,8.5\n557,211,9.0\n557,212,9.5\n557,213,10.0\n557,214,10.5\n557,215,11.0\n557,216,11.5\n557,217,12.0\n557,218,12.5\n557,219,13.0\n557,220,13.5\n557,221,14.0\n557,222,14.5\n557,223,15.0\n557,224,15.5\n557,225,10.0\n557,226,9.5\n557,227,9.0\n557,228,8.5\n557,229,8.0\n557,230,7.5\n557,231,7.0\n557,232,6.5\n557,233,7.0\n557,234,7.5\n557,235,8.0\n557,236,8.5\n557,237,9.0\n557,238,9.5\n557,239,10.0\n557,240,10.5\n557,241,11.0\n557,242,11.5\n557,243,12.0\n557,244,12.5\n557,245,13.0\n557,246,13.5\n557,247,14.0\n557,248,14.5\n557,249,15.0\n557,250,9.5\n557,251,9.0\n557,252,8.5\n557,253,8.0\n557,254,7.5\n557,255,7.0\n557,256,6.5\n557,257,6.0\n557,258,6.5\n557,259,7.0\n557,260,7.5\n557,261,8.0\n557,262,8.5\n557,263,9.0\n557,264,9.5\n557,265,10.0\n557,266,10.5\n557,267,11.0\n557,268,11.5\n557,269,12.0\n557,270,12.5\n557,271,13.0\n557,272,13.5\n557,273,14.0\n557,274,14.5\n557,275,9.0\n557,276,8.5\n557,277,8.0\n557,278,7.5\n557,279,7.0\n557,280,6.5\n557,281,6.0\n557,282,5.5\n557,283,6.0\n557,284,6.5\n557,285,7.0\n557,286,7.5\n557,287,8.0\n557,288,8.5\n557,289,9.0\n557,290,9.5\n557,291,10.0\n557,292,10.5\n557,293,11.0\n557,294,11.5\n557,295,12.0\n557,296,12.5\n557,297,13.0\n557,298,13.5\n557,299,14.0\n557,300,8.5\n557,301,8.0\n557,302,7.5\n557,303,7.0\n557,304,6.5\n557,305,6.0\n557,306,5.5\n557,307,5.0\n557,308,5.5\n557,309,6.0\n557,310,6.5\n557,311,7.0\n557,312,7.5\n557,313,8.0\n557,314,8.5\n557,315,9.0\n557,316,9.5\n557,317,10.0\n557,318,10.5\n557,319,11.0\n557,320,11.5\n557,321,12.0\n557,322,12.5\n557,323,13.0\n557,324,13.5\n557,325,8.0\n557,326,7.5\n557,327,7.0\n557,328,6.5\n557,329,6.0\n557,330,5.5\n557,331,5.0\n557,332,4.5\n557,333,5.0\n557,334,5.5\n557,335,6.0\n557,336,6.5\n557,337,7.0\n557,338,7.5\n557,339,8.0\n557,340,8.5\n557,341,9.0\n557,342,9.5\n557,343,10.0\n557,344,10.5\n557,345,11.0\n557,346,11.5\n557,347,12.0\n557,348,12.5\n557,349,13.0\n557,350,7.5\n557,351,7.0\n557,352,6.5\n557,353,6.0\n557,354,5.5\n557,355,5.0\n557,356,4.5\n557,357,4.0\n557,358,4.5\n557,359,5.0\n557,360,5.5\n557,361,6.0\n557,362,6.5\n557,363,7.0\n557,364,7.5\n557,365,8.0\n557,366,8.5\n557,367,9.0\n557,368,9.5\n557,369,10.0\n557,370,10.5\n557,371,11.0\n557,372,11.5\n557,373,12.0\n557,374,12.5\n557,375,7.0\n557,376,6.5\n557,377,6.0\n557,378,5.5\n557,379,5.0\n557,380,4.5\n557,381,4.0\n557,382,3.5\n557,383,4.0\n557,384,4.5\n557,385,5.0\n557,386,5.5\n557,387,6.0\n557,388,6.5\n557,389,7.0\n557,390,7.5\n557,391,8.0\n557,392,8.5\n557,393,9.0\n557,394,9.5\n557,395,10.0\n557,396,10.5\n557,397,11.0\n557,398,11.5\n557,399,12.0\n557,400,6.5\n557,401,6.0\n557,402,5.5\n557,403,5.0\n557,404,4.5\n557,405,4.0\n557,406,3.5\n557,407,3.0\n557,408,3.5\n557,409,4.0\n557,410,4.5\n557,411,5.0\n557,412,5.5\n557,413,6.0\n557,414,6.5\n557,415,7.0\n557,416,7.5\n557,417,8.0\n557,418,8.5\n557,419,9.0\n557,420,9.5\n557,421,10.0\n557,422,10.5\n557,423,11.0\n557,424,11.5\n557,425,6.0\n557,426,5.5\n557,427,5.0\n557,428,4.5\n557,429,4.0\n557,430,3.5\n557,431,3.0\n557,432,2.5\n557,433,3.0\n557,434,3.5\n557,435,4.0\n557,436,4.5\n557,437,5.0\n557,438,5.5\n557,439,6.0\n557,440,6.5\n557,441,7.0\n557,442,7.5\n557,443,8.0\n557,444,8.5\n557,445,9.0\n557,446,9.5\n557,447,10.0\n557,448,10.5\n557,449,11.0\n557,450,5.5\n557,451,5.0\n557,452,4.5\n557,453,4.0\n557,454,3.5\n557,455,3.0\n557,456,2.5\n557,457,2.0\n557,458,2.5\n557,459,3.0\n557,460,3.5\n557,461,4.0\n557,462,4.5\n557,463,5.0\n557,464,5.5\n557,465,6.0\n557,466,6.5\n557,467,7.0\n557,468,7.5\n557,469,8.0\n557,470,8.5\n557,471,9.0\n557,472,9.5\n557,473,10.0\n557,474,10.5\n557,475,5.0\n557,476,4.5\n557,477,4.0\n557,478,3.5\n557,479,3.0\n557,480,2.5\n557,481,2.0\n557,482,1.5\n557,483,2.0\n557,484,2.5\n557,485,3.0\n557,486,3.5\n557,487,4.0\n557,488,4.5\n557,489,5.0\n557,490,5.5\n557,491,6.0\n557,492,6.5\n557,493,7.0\n557,494,7.5\n557,495,8.0\n557,496,8.5\n557,497,9.0\n557,498,9.5\n557,499,10.0\n557,500,4.5\n557,501,4.0\n557,502,3.5\n557,503,3.0\n557,504,2.5\n557,505,2.0\n557,506,1.5\n557,507,1.0\n557,508,1.5\n557,509,2.0\n557,510,2.5\n557,511,3.0\n557,512,3.5\n557,513,4.0\n557,514,4.5\n557,515,5.0\n557,516,5.5\n557,517,6.0\n557,518,6.5\n557,519,7.0\n557,520,7.5\n557,521,8.0\n557,522,8.5\n557,523,9.0\n557,524,9.5\n557,525,4.0\n557,526,3.5\n557,527,3.0\n557,528,2.5\n557,529,2.0\n557,530,1.5\n557,531,1.0\n557,532,0.5\n557,533,1.0\n557,534,1.5\n557,535,2.0\n557,536,2.5\n557,537,3.0\n557,538,3.5\n557,539,4.0\n557,540,4.5\n557,541,5.0\n557,542,5.5\n557,543,6.0\n557,544,6.5\n557,545,7.0\n557,546,7.5\n557,547,8.0\n557,548,8.5\n557,549,9.0\n557,550,3.5\n557,551,3.0\n557,552,2.5\n557,553,2.0\n557,554,1.5\n557,555,1.0\n557,556,0.5\n557,557,0\n557,558,0.5\n557,559,1.0\n557,560,1.5\n557,561,2.0\n557,562,2.5\n557,563,3.0\n557,564,3.5\n557,565,4.0\n557,566,4.5\n557,567,5.0\n557,568,5.5\n557,569,6.0\n557,570,6.5\n557,571,7.0\n557,572,7.5\n557,573,8.0\n557,574,8.5\n557,575,4.0\n557,576,3.5\n557,577,3.0\n557,578,2.5\n557,579,2.0\n557,580,1.5\n557,581,1.0\n557,582,0.5\n557,583,1.0\n557,584,1.5\n557,585,2.0\n557,586,2.5\n557,587,3.0\n557,588,3.5\n557,589,4.0\n557,590,4.5\n557,591,5.0\n557,592,5.5\n557,593,6.0\n557,594,6.5\n557,595,7.0\n557,596,7.5\n557,597,8.0\n557,598,8.5\n557,599,9.0\n557,600,4.5\n557,601,4.0\n557,602,3.5\n557,603,3.0\n557,604,2.5\n557,605,2.0\n557,606,1.5\n557,607,1.0\n557,608,1.5\n557,609,2.0\n557,610,2.5\n557,611,3.0\n557,612,3.5\n557,613,4.0\n557,614,4.5\n557,615,5.0\n557,616,5.5\n557,617,6.0\n557,618,6.5\n557,619,7.0\n557,620,7.5\n557,621,8.0\n557,622,8.5\n557,623,9.0\n557,624,9.5\n558,0,15.0\n558,1,14.5\n558,2,14.0\n558,3,13.5\n558,4,13.0\n558,5,12.5\n558,6,12.0\n558,7,11.5\n558,8,11.0\n558,9,11.5\n558,10,12.0\n558,11,12.5\n558,12,13.0\n558,13,13.5\n558,14,14.0\n558,15,14.5\n558,16,15.0\n558,17,15.5\n558,18,16.0\n558,19,16.5\n558,20,17.0\n558,21,17.5\n558,22,18.0\n558,23,18.5\n558,24,19.0\n558,25,14.5\n558,26,14.0\n558,27,13.5\n558,28,13.0\n558,29,12.5\n558,30,12.0\n558,31,11.5\n558,32,11.0\n558,33,10.5\n558,34,11.0\n558,35,11.5\n558,36,12.0\n558,37,12.5\n558,38,13.0\n558,39,13.5\n558,40,14.0\n558,41,14.5\n558,42,15.0\n558,43,15.5\n558,44,16.0\n558,45,16.5\n558,46,17.0\n558,47,17.5\n558,48,18.0\n558,49,18.5\n558,50,14.0\n558,51,13.5\n558,52,13.0\n558,53,12.5\n558,54,12.0\n558,55,11.5\n558,56,11.0\n558,57,10.5\n558,58,10.0\n558,59,10.5\n558,60,11.0\n558,61,11.5\n558,62,12.0\n558,63,12.5\n558,64,13.0\n558,65,13.5\n558,66,14.0\n558,67,14.5\n558,68,15.0\n558,69,15.5\n558,70,16.0\n558,71,16.5\n558,72,17.0\n558,73,17.5\n558,74,18.0\n558,75,13.5\n558,76,13.0\n558,77,12.5\n558,78,12.0\n558,79,11.5\n558,80,11.0\n558,81,10.5\n558,82,10.0\n558,83,9.5\n558,84,10.0\n558,85,10.5\n558,86,11.0\n558,87,11.5\n558,88,12.0\n558,89,12.5\n558,90,13.0\n558,91,13.5\n558,92,14.0\n558,93,14.5\n558,94,15.0\n558,95,15.5\n558,96,16.0\n558,97,16.5\n558,98,17.0\n558,99,17.5\n558,100,13.0\n558,101,12.5\n558,102,12.0\n558,103,11.5\n558,104,11.0\n558,105,10.5\n558,106,10.0\n558,107,9.5\n558,108,9.0\n558,109,9.5\n558,110,10.0\n558,111,10.5\n558,112,11.0\n558,113,11.5\n558,114,12.0\n558,115,12.5\n558,116,13.0\n558,117,13.5\n558,118,14.0\n558,119,14.5\n558,120,15.0\n558,121,15.5\n558,122,16.0\n558,123,16.5\n558,124,17.0\n558,125,12.5\n558,126,12.0\n558,127,11.5\n558,128,11.0\n558,129,10.5\n558,130,10.0\n558,131,9.5\n558,132,9.0\n558,133,8.5\n558,134,9.0\n558,135,9.5\n558,136,10.0\n558,137,10.5\n558,138,11.0\n558,139,11.5\n558,140,12.0\n558,141,12.5\n558,142,13.0\n558,143,13.5\n558,144,14.0\n558,145,14.5\n558,146,15.0\n558,147,15.5\n558,148,16.0\n558,149,16.5\n558,150,12.0\n558,151,11.5\n558,152,11.0\n558,153,10.5\n558,154,10.0\n558,155,9.5\n558,156,9.0\n558,157,8.5\n558,158,8.0\n558,159,8.5\n558,160,9.0\n558,161,9.5\n558,162,10.0\n558,163,10.5\n558,164,11.0\n558,165,11.5\n558,166,12.0\n558,167,12.5\n558,168,13.0\n558,169,13.5\n558,170,14.0\n558,171,14.5\n558,172,15.0\n558,173,15.5\n558,174,16.0\n558,175,11.5\n558,176,11.0\n558,177,10.5\n558,178,10.0\n558,179,9.5\n558,180,9.0\n558,181,8.5\n558,182,8.0\n558,183,7.5\n558,184,8.0\n558,185,8.5\n558,186,9.0\n558,187,9.5\n558,188,10.0\n558,189,10.5\n558,190,11.0\n558,191,11.5\n558,192,12.0\n558,193,12.5\n558,194,13.0\n558,195,13.5\n558,196,14.0\n558,197,14.5\n558,198,15.0\n558,199,15.5\n558,200,11.0\n558,201,10.5\n558,202,10.0\n558,203,9.5\n558,204,9.0\n558,205,8.5\n558,206,8.0\n558,207,7.5\n558,208,7.0\n558,209,7.5\n558,210,8.0\n558,211,8.5\n558,212,9.0\n558,213,9.5\n558,214,10.0\n558,215,10.5\n558,216,11.0\n558,217,11.5\n558,218,12.0\n558,219,12.5\n558,220,13.0\n558,221,13.5\n558,222,14.0\n558,223,14.5\n558,224,15.0\n558,225,10.5\n558,226,10.0\n558,227,9.5\n558,228,9.0\n558,229,8.5\n558,230,8.0\n558,231,7.5\n558,232,7.0\n558,233,6.5\n558,234,7.0\n558,235,7.5\n558,236,8.0\n558,237,8.5\n558,238,9.0\n558,239,9.5\n558,240,10.0\n558,241,10.5\n558,242,11.0\n558,243,11.5\n558,244,12.0\n558,245,12.5\n558,246,13.0\n558,247,13.5\n558,248,14.0\n558,249,14.5\n558,250,10.0\n558,251,9.5\n558,252,9.0\n558,253,8.5\n558,254,8.0\n558,255,7.5\n558,256,7.0\n558,257,6.5\n558,258,6.0\n558,259,6.5\n558,260,7.0\n558,261,7.5\n558,262,8.0\n558,263,8.5\n558,264,9.0\n558,265,9.5\n558,266,10.0\n558,267,10.5\n558,268,11.0\n558,269,11.5\n558,270,12.0\n558,271,12.5\n558,272,13.0\n558,273,13.5\n558,274,14.0\n558,275,9.5\n558,276,9.0\n558,277,8.5\n558,278,8.0\n558,279,7.5\n558,280,7.0\n558,281,6.5\n558,282,6.0\n558,283,5.5\n558,284,6.0\n558,285,6.5\n558,286,7.0\n558,287,7.5\n558,288,8.0\n558,289,8.5\n558,290,9.0\n558,291,9.5\n558,292,10.0\n558,293,10.5\n558,294,11.0\n558,295,11.5\n558,296,12.0\n558,297,12.5\n558,298,13.0\n558,299,13.5\n558,300,9.0\n558,301,8.5\n558,302,8.0\n558,303,7.5\n558,304,7.0\n558,305,6.5\n558,306,6.0\n558,307,5.5\n558,308,5.0\n558,309,5.5\n558,310,6.0\n558,311,6.5\n558,312,7.0\n558,313,7.5\n558,314,8.0\n558,315,8.5\n558,316,9.0\n558,317,9.5\n558,318,10.0\n558,319,10.5\n558,320,11.0\n558,321,11.5\n558,322,12.0\n558,323,12.5\n558,324,13.0\n558,325,8.5\n558,326,8.0\n558,327,7.5\n558,328,7.0\n558,329,6.5\n558,330,6.0\n558,331,5.5\n558,332,5.0\n558,333,4.5\n558,334,5.0\n558,335,5.5\n558,336,6.0\n558,337,6.5\n558,338,7.0\n558,339,7.5\n558,340,8.0\n558,341,8.5\n558,342,9.0\n558,343,9.5\n558,344,10.0\n558,345,10.5\n558,346,11.0\n558,347,11.5\n558,348,12.0\n558,349,12.5\n558,350,8.0\n558,351,7.5\n558,352,7.0\n558,353,6.5\n558,354,6.0\n558,355,5.5\n558,356,5.0\n558,357,4.5\n558,358,4.0\n558,359,4.5\n558,360,5.0\n558,361,5.5\n558,362,6.0\n558,363,6.5\n558,364,7.0\n558,365,7.5\n558,366,8.0\n558,367,8.5\n558,368,9.0\n558,369,9.5\n558,370,10.0\n558,371,10.5\n558,372,11.0\n558,373,11.5\n558,374,12.0\n558,375,7.5\n558,376,7.0\n558,377,6.5\n558,378,6.0\n558,379,5.5\n558,380,5.0\n558,381,4.5\n558,382,4.0\n558,383,3.5\n558,384,4.0\n558,385,4.5\n558,386,5.0\n558,387,5.5\n558,388,6.0\n558,389,6.5\n558,390,7.0\n558,391,7.5\n558,392,8.0\n558,393,8.5\n558,394,9.0\n558,395,9.5\n558,396,10.0\n558,397,10.5\n558,398,11.0\n558,399,11.5\n558,400,7.0\n558,401,6.5\n558,402,6.0\n558,403,5.5\n558,404,5.0\n558,405,4.5\n558,406,4.0\n558,407,3.5\n558,408,3.0\n558,409,3.5\n558,410,4.0\n558,411,4.5\n558,412,5.0\n558,413,5.5\n558,414,6.0\n558,415,6.5\n558,416,7.0\n558,417,7.5\n558,418,8.0\n558,419,8.5\n558,420,9.0\n558,421,9.5\n558,422,10.0\n558,423,10.5\n558,424,11.0\n558,425,6.5\n558,426,6.0\n558,427,5.5\n558,428,5.0\n558,429,4.5\n558,430,4.0\n558,431,3.5\n558,432,3.0\n558,433,2.5\n558,434,3.0\n558,435,3.5\n558,436,4.0\n558,437,4.5\n558,438,5.0\n558,439,5.5\n558,440,6.0\n558,441,6.5\n558,442,7.0\n558,443,7.5\n558,444,8.0\n558,445,8.5\n558,446,9.0\n558,447,9.5\n558,448,10.0\n558,449,10.5\n558,450,6.0\n558,451,5.5\n558,452,5.0\n558,453,4.5\n558,454,4.0\n558,455,3.5\n558,456,3.0\n558,457,2.5\n558,458,2.0\n558,459,2.5\n558,460,3.0\n558,461,3.5\n558,462,4.0\n558,463,4.5\n558,464,5.0\n558,465,5.5\n558,466,6.0\n558,467,6.5\n558,468,7.0\n558,469,7.5\n558,470,8.0\n558,471,8.5\n558,472,9.0\n558,473,9.5\n558,474,10.0\n558,475,5.5\n558,476,5.0\n558,477,4.5\n558,478,4.0\n558,479,3.5\n558,480,3.0\n558,481,2.5\n558,482,2.0\n558,483,1.5\n558,484,2.0\n558,485,2.5\n558,486,3.0\n558,487,3.5\n558,488,4.0\n558,489,4.5\n558,490,5.0\n558,491,5.5\n558,492,6.0\n558,493,6.5\n558,494,7.0\n558,495,7.5\n558,496,8.0\n558,497,8.5\n558,498,9.0\n558,499,9.5\n558,500,5.0\n558,501,4.5\n558,502,4.0\n558,503,3.5\n558,504,3.0\n558,505,2.5\n558,506,2.0\n558,507,1.5\n558,508,1.0\n558,509,1.5\n558,510,2.0\n558,511,2.5\n558,512,3.0\n558,513,3.5\n558,514,4.0\n558,515,4.5\n558,516,5.0\n558,517,5.5\n558,518,6.0\n558,519,6.5\n558,520,7.0\n558,521,7.5\n558,522,8.0\n558,523,8.5\n558,524,9.0\n558,525,4.5\n558,526,4.0\n558,527,3.5\n558,528,3.0\n558,529,2.5\n558,530,2.0\n558,531,1.5\n558,532,1.0\n558,533,0.5\n558,534,1.0\n558,535,1.5\n558,536,2.0\n558,537,2.5\n558,538,3.0\n558,539,3.5\n558,540,4.0\n558,541,4.5\n558,542,5.0\n558,543,5.5\n558,544,6.0\n558,545,6.5\n558,546,7.0\n558,547,7.5\n558,548,8.0\n558,549,8.5\n558,550,4.0\n558,551,3.5\n558,552,3.0\n558,553,2.5\n558,554,2.0\n558,555,1.5\n558,556,1.0\n558,557,0.5\n558,558,0\n558,559,0.5\n558,560,1.0\n558,561,1.5\n558,562,2.0\n558,563,2.5\n558,564,3.0\n558,565,3.5\n558,566,4.0\n558,567,4.5\n558,568,5.0\n558,569,5.5\n558,570,6.0\n558,571,6.5\n558,572,7.0\n558,573,7.5\n558,574,8.0\n558,575,4.5\n558,576,4.0\n558,577,3.5\n558,578,3.0\n558,579,2.5\n558,580,2.0\n558,581,1.5\n558,582,1.0\n558,583,0.5\n558,584,1.0\n558,585,1.5\n558,586,2.0\n558,587,2.5\n558,588,3.0\n558,589,3.5\n558,590,4.0\n558,591,4.5\n558,592,5.0\n558,593,5.5\n558,594,6.0\n558,595,6.5\n558,596,7.0\n558,597,7.5\n558,598,8.0\n558,599,8.5\n558,600,5.0\n558,601,4.5\n558,602,4.0\n558,603,3.5\n558,604,3.0\n558,605,2.5\n558,606,2.0\n558,607,1.5\n558,608,1.0\n558,609,1.5\n558,610,2.0\n558,611,2.5\n558,612,3.0\n558,613,3.5\n558,614,4.0\n558,615,4.5\n558,616,5.0\n558,617,5.5\n558,618,6.0\n558,619,6.5\n558,620,7.0\n558,621,7.5\n558,622,8.0\n558,623,8.5\n558,624,9.0\n559,0,15.5\n559,1,15.0\n559,2,14.5\n559,3,14.0\n559,4,13.5\n559,5,13.0\n559,6,12.5\n559,7,12.0\n559,8,11.5\n559,9,11.0\n559,10,11.5\n559,11,12.0\n559,12,12.5\n559,13,13.0\n559,14,13.5\n559,15,14.0\n559,16,14.5\n559,17,15.0\n559,18,15.5\n559,19,16.0\n559,20,16.5\n559,21,17.0\n559,22,17.5\n559,23,18.0\n559,24,18.5\n559,25,15.0\n559,26,14.5\n559,27,14.0\n559,28,13.5\n559,29,13.0\n559,30,12.5\n559,31,12.0\n559,32,11.5\n559,33,11.0\n559,34,10.5\n559,35,11.0\n559,36,11.5\n559,37,12.0\n559,38,12.5\n559,39,13.0\n559,40,13.5\n559,41,14.0\n559,42,14.5\n559,43,15.0\n559,44,15.5\n559,45,16.0\n559,46,16.5\n559,47,17.0\n559,48,17.5\n559,49,18.0\n559,50,14.5\n559,51,14.0\n559,52,13.5\n559,53,13.0\n559,54,12.5\n559,55,12.0\n559,56,11.5\n559,57,11.0\n559,58,10.5\n559,59,10.0\n559,60,10.5\n559,61,11.0\n559,62,11.5\n559,63,12.0\n559,64,12.5\n559,65,13.0\n559,66,13.5\n559,67,14.0\n559,68,14.5\n559,69,15.0\n559,70,15.5\n559,71,16.0\n559,72,16.5\n559,73,17.0\n559,74,17.5\n559,75,14.0\n559,76,13.5\n559,77,13.0\n559,78,12.5\n559,79,12.0\n559,80,11.5\n559,81,11.0\n559,82,10.5\n559,83,10.0\n559,84,9.5\n559,85,10.0\n559,86,10.5\n559,87,11.0\n559,88,11.5\n559,89,12.0\n559,90,12.5\n559,91,13.0\n559,92,13.5\n559,93,14.0\n559,94,14.5\n559,95,15.0\n559,96,15.5\n559,97,16.0\n559,98,16.5\n559,99,17.0\n559,100,13.5\n559,101,13.0\n559,102,12.5\n559,103,12.0\n559,104,11.5\n559,105,11.0\n559,106,10.5\n559,107,10.0\n559,108,9.5\n559,109,9.0\n559,110,9.5\n559,111,10.0\n559,112,10.5\n559,113,11.0\n559,114,11.5\n559,115,12.0\n559,116,12.5\n559,117,13.0\n559,118,13.5\n559,119,14.0\n559,120,14.5\n559,121,15.0\n559,122,15.5\n559,123,16.0\n559,124,16.5\n559,125,13.0\n559,126,12.5\n559,127,12.0\n559,128,11.5\n559,129,11.0\n559,130,10.5\n559,131,10.0\n559,132,9.5\n559,133,9.0\n559,134,8.5\n559,135,9.0\n559,136,9.5\n559,137,10.0\n559,138,10.5\n559,139,11.0\n559,140,11.5\n559,141,12.0\n559,142,12.5\n559,143,13.0\n559,144,13.5\n559,145,14.0\n559,146,14.5\n559,147,15.0\n559,148,15.5\n559,149,16.0\n559,150,12.5\n559,151,12.0\n559,152,11.5\n559,153,11.0\n559,154,10.5\n559,155,10.0\n559,156,9.5\n559,157,9.0\n559,158,8.5\n559,159,8.0\n559,160,8.5\n559,161,9.0\n559,162,9.5\n559,163,10.0\n559,164,10.5\n559,165,11.0\n559,166,11.5\n559,167,12.0\n559,168,12.5\n559,169,13.0\n559,170,13.5\n559,171,14.0\n559,172,14.5\n559,173,15.0\n559,174,15.5\n559,175,12.0\n559,176,11.5\n559,177,11.0\n559,178,10.5\n559,179,10.0\n559,180,9.5\n559,181,9.0\n559,182,8.5\n559,183,8.0\n559,184,7.5\n559,185,8.0\n559,186,8.5\n559,187,9.0\n559,188,9.5\n559,189,10.0\n559,190,10.5\n559,191,11.0\n559,192,11.5\n559,193,12.0\n559,194,12.5\n559,195,13.0\n559,196,13.5\n559,197,14.0\n559,198,14.5\n559,199,15.0\n559,200,11.5\n559,201,11.0\n559,202,10.5\n559,203,10.0\n559,204,9.5\n559,205,9.0\n559,206,8.5\n559,207,8.0\n559,208,7.5\n559,209,7.0\n559,210,7.5\n559,211,8.0\n559,212,8.5\n559,213,9.0\n559,214,9.5\n559,215,10.0\n559,216,10.5\n559,217,11.0\n559,218,11.5\n559,219,12.0\n559,220,12.5\n559,221,13.0\n559,222,13.5\n559,223,14.0\n559,224,14.5\n559,225,11.0\n559,226,10.5\n559,227,10.0\n559,228,9.5\n559,229,9.0\n559,230,8.5\n559,231,8.0\n559,232,7.5\n559,233,7.0\n559,234,6.5\n559,235,7.0\n559,236,7.5\n559,237,8.0\n559,238,8.5\n559,239,9.0\n559,240,9.5\n559,241,10.0\n559,242,10.5\n559,243,11.0\n559,244,11.5\n559,245,12.0\n559,246,12.5\n559,247,13.0\n559,248,13.5\n559,249,14.0\n559,250,10.5\n559,251,10.0\n559,252,9.5\n559,253,9.0\n559,254,8.5\n559,255,8.0\n559,256,7.5\n559,257,7.0\n559,258,6.5\n559,259,6.0\n559,260,6.5\n559,261,7.0\n559,262,7.5\n559,263,8.0\n559,264,8.5\n559,265,9.0\n559,266,9.5\n559,267,10.0\n559,268,10.5\n559,269,11.0\n559,270,11.5\n559,271,12.0\n559,272,12.5\n559,273,13.0\n559,274,13.5\n559,275,10.0\n559,276,9.5\n559,277,9.0\n559,278,8.5\n559,279,8.0\n559,280,7.5\n559,281,7.0\n559,282,6.5\n559,283,6.0\n559,284,5.5\n559,285,6.0\n559,286,6.5\n559,287,7.0\n559,288,7.5\n559,289,8.0\n559,290,8.5\n559,291,9.0\n559,292,9.5\n559,293,10.0\n559,294,10.5\n559,295,11.0\n559,296,11.5\n559,297,12.0\n559,298,12.5\n559,299,13.0\n559,300,9.5\n559,301,9.0\n559,302,8.5\n559,303,8.0\n559,304,7.5\n559,305,7.0\n559,306,6.5\n559,307,6.0\n559,308,5.5\n559,309,5.0\n559,310,5.5\n559,311,6.0\n559,312,6.5\n559,313,7.0\n559,314,7.5\n559,315,8.0\n559,316,8.5\n559,317,9.0\n559,318,9.5\n559,319,10.0\n559,320,10.5\n559,321,11.0\n559,322,11.5\n559,323,12.0\n559,324,12.5\n559,325,9.0\n559,326,8.5\n559,327,8.0\n559,328,7.5\n559,329,7.0\n559,330,6.5\n559,331,6.0\n559,332,5.5\n559,333,5.0\n559,334,4.5\n559,335,5.0\n559,336,5.5\n559,337,6.0\n559,338,6.5\n559,339,7.0\n559,340,7.5\n559,341,8.0\n559,342,8.5\n559,343,9.0\n559,344,9.5\n559,345,10.0\n559,346,10.5\n559,347,11.0\n559,348,11.5\n559,349,12.0\n559,350,8.5\n559,351,8.0\n559,352,7.5\n559,353,7.0\n559,354,6.5\n559,355,6.0\n559,356,5.5\n559,357,5.0\n559,358,4.5\n559,359,4.0\n559,360,4.5\n559,361,5.0\n559,362,5.5\n559,363,6.0\n559,364,6.5\n559,365,7.0\n559,366,7.5\n559,367,8.0\n559,368,8.5\n559,369,9.0\n559,370,9.5\n559,371,10.0\n559,372,10.5\n559,373,11.0\n559,374,11.5\n559,375,8.0\n559,376,7.5\n559,377,7.0\n559,378,6.5\n559,379,6.0\n559,380,5.5\n559,381,5.0\n559,382,4.5\n559,383,4.0\n559,384,3.5\n559,385,4.0\n559,386,4.5\n559,387,5.0\n559,388,5.5\n559,389,6.0\n559,390,6.5\n559,391,7.0\n559,392,7.5\n559,393,8.0\n559,394,8.5\n559,395,9.0\n559,396,9.5\n559,397,10.0\n559,398,10.5\n559,399,11.0\n559,400,7.5\n559,401,7.0\n559,402,6.5\n559,403,6.0\n559,404,5.5\n559,405,5.0\n559,406,4.5\n559,407,4.0\n559,408,3.5\n559,409,3.0\n559,410,3.5\n559,411,4.0\n559,412,4.5\n559,413,5.0\n559,414,5.5\n559,415,6.0\n559,416,6.5\n559,417,7.0\n559,418,7.5\n559,419,8.0\n559,420,8.5\n559,421,9.0\n559,422,9.5\n559,423,10.0\n559,424,10.5\n559,425,7.0\n559,426,6.5\n559,427,6.0\n559,428,5.5\n559,429,5.0\n559,430,4.5\n559,431,4.0\n559,432,3.5\n559,433,3.0\n559,434,2.5\n559,435,3.0\n559,436,3.5\n559,437,4.0\n559,438,4.5\n559,439,5.0\n559,440,5.5\n559,441,6.0\n559,442,6.5\n559,443,7.0\n559,444,7.5\n559,445,8.0\n559,446,8.5\n559,447,9.0\n559,448,9.5\n559,449,10.0\n559,450,6.5\n559,451,6.0\n559,452,5.5\n559,453,5.0\n559,454,4.5\n559,455,4.0\n559,456,3.5\n559,457,3.0\n559,458,2.5\n559,459,2.0\n559,460,2.5\n559,461,3.0\n559,462,3.5\n559,463,4.0\n559,464,4.5\n559,465,5.0\n559,466,5.5\n559,467,6.0\n559,468,6.5\n559,469,7.0\n559,470,7.5\n559,471,8.0\n559,472,8.5\n559,473,9.0\n559,474,9.5\n559,475,6.0\n559,476,5.5\n559,477,5.0\n559,478,4.5\n559,479,4.0\n559,480,3.5\n559,481,3.0\n559,482,2.5\n559,483,2.0\n559,484,1.5\n559,485,2.0\n559,486,2.5\n559,487,3.0\n559,488,3.5\n559,489,4.0\n559,490,4.5\n559,491,5.0\n559,492,5.5\n559,493,6.0\n559,494,6.5\n559,495,7.0\n559,496,7.5\n559,497,8.0\n559,498,8.5\n559,499,9.0\n559,500,5.5\n559,501,5.0\n559,502,4.5\n559,503,4.0\n559,504,3.5\n559,505,3.0\n559,506,2.5\n559,507,2.0\n559,508,1.5\n559,509,1.0\n559,510,1.5\n559,511,2.0\n559,512,2.5\n559,513,3.0\n559,514,3.5\n559,515,4.0\n559,516,4.5\n559,517,5.0\n559,518,5.5\n559,519,6.0\n559,520,6.5\n559,521,7.0\n559,522,7.5\n559,523,8.0\n559,524,8.5\n559,525,5.0\n559,526,4.5\n559,527,4.0\n559,528,3.5\n559,529,3.0\n559,530,2.5\n559,531,2.0\n559,532,1.5\n559,533,1.0\n559,534,0.5\n559,535,1.0\n559,536,1.5\n559,537,2.0\n559,538,2.5\n559,539,3.0\n559,540,3.5\n559,541,4.0\n559,542,4.5\n559,543,5.0\n559,544,5.5\n559,545,6.0\n559,546,6.5\n559,547,7.0\n559,548,7.5\n559,549,8.0\n559,550,4.5\n559,551,4.0\n559,552,3.5\n559,553,3.0\n559,554,2.5\n559,555,2.0\n559,556,1.5\n559,557,1.0\n559,558,0.5\n559,559,0\n559,560,0.5\n559,561,1.0\n559,562,1.5\n559,563,2.0\n559,564,2.5\n559,565,3.0\n559,566,3.5\n559,567,4.0\n559,568,4.5\n559,569,5.0\n559,570,5.5\n559,571,6.0\n559,572,6.5\n559,573,7.0\n559,574,7.5\n559,575,5.0\n559,576,4.5\n559,577,4.0\n559,578,3.5\n559,579,3.0\n559,580,2.5\n559,581,2.0\n559,582,1.5\n559,583,1.0\n559,584,0.5\n559,585,1.0\n559,586,1.5\n559,587,2.0\n559,588,2.5\n559,589,3.0\n559,590,3.5\n559,591,4.0\n559,592,4.5\n559,593,5.0\n559,594,5.5\n559,595,6.0\n559,596,6.5\n559,597,7.0\n559,598,7.5\n559,599,8.0\n559,600,5.5\n559,601,5.0\n559,602,4.5\n559,603,4.0\n559,604,3.5\n559,605,3.0\n559,606,2.5\n559,607,2.0\n559,608,1.5\n559,609,1.0\n559,610,1.5\n559,611,2.0\n559,612,2.5\n559,613,3.0\n559,614,3.5\n559,615,4.0\n559,616,4.5\n559,617,5.0\n559,618,5.5\n559,619,6.0\n559,620,6.5\n559,621,7.0\n559,622,7.5\n559,623,8.0\n559,624,8.5\n560,0,16.0\n560,1,15.5\n560,2,15.0\n560,3,14.5\n560,4,14.0\n560,5,13.5\n560,6,13.0\n560,7,12.5\n560,8,12.0\n560,9,11.5\n560,10,11.0\n560,11,11.5\n560,12,12.0\n560,13,12.5\n560,14,13.0\n560,15,13.5\n560,16,14.0\n560,17,14.5\n560,18,15.0\n560,19,15.5\n560,20,16.0\n560,21,16.5\n560,22,17.0\n560,23,17.5\n560,24,18.0\n560,25,15.5\n560,26,15.0\n560,27,14.5\n560,28,14.0\n560,29,13.5\n560,30,13.0\n560,31,12.5\n560,32,12.0\n560,33,11.5\n560,34,11.0\n560,35,10.5\n560,36,11.0\n560,37,11.5\n560,38,12.0\n560,39,12.5\n560,40,13.0\n560,41,13.5\n560,42,14.0\n560,43,14.5\n560,44,15.0\n560,45,15.5\n560,46,16.0\n560,47,16.5\n560,48,17.0\n560,49,17.5\n560,50,15.0\n560,51,14.5\n560,52,14.0\n560,53,13.5\n560,54,13.0\n560,55,12.5\n560,56,12.0\n560,57,11.5\n560,58,11.0\n560,59,10.5\n560,60,10.0\n560,61,10.5\n560,62,11.0\n560,63,11.5\n560,64,12.0\n560,65,12.5\n560,66,13.0\n560,67,13.5\n560,68,14.0\n560,69,14.5\n560,70,15.0\n560,71,15.5\n560,72,16.0\n560,73,16.5\n560,74,17.0\n560,75,14.5\n560,76,14.0\n560,77,13.5\n560,78,13.0\n560,79,12.5\n560,80,12.0\n560,81,11.5\n560,82,11.0\n560,83,10.5\n560,84,10.0\n560,85,9.5\n560,86,10.0\n560,87,10.5\n560,88,11.0\n560,89,11.5\n560,90,12.0\n560,91,12.5\n560,92,13.0\n560,93,13.5\n560,94,14.0\n560,95,14.5\n560,96,15.0\n560,97,15.5\n560,98,16.0\n560,99,16.5\n560,100,14.0\n560,101,13.5\n560,102,13.0\n560,103,12.5\n560,104,12.0\n560,105,11.5\n560,106,11.0\n560,107,10.5\n560,108,10.0\n560,109,9.5\n560,110,9.0\n560,111,9.5\n560,112,10.0\n560,113,10.5\n560,114,11.0\n560,115,11.5\n560,116,12.0\n560,117,12.5\n560,118,13.0\n560,119,13.5\n560,120,14.0\n560,121,14.5\n560,122,15.0\n560,123,15.5\n560,124,16.0\n560,125,13.5\n560,126,13.0\n560,127,12.5\n560,128,12.0\n560,129,11.5\n560,130,11.0\n560,131,10.5\n560,132,10.0\n560,133,9.5\n560,134,9.0\n560,135,8.5\n560,136,9.0\n560,137,9.5\n560,138,10.0\n560,139,10.5\n560,140,11.0\n560,141,11.5\n560,142,12.0\n560,143,12.5\n560,144,13.0\n560,145,13.5\n560,146,14.0\n560,147,14.5\n560,148,15.0\n560,149,15.5\n560,150,13.0\n560,151,12.5\n560,152,12.0\n560,153,11.5\n560,154,11.0\n560,155,10.5\n560,156,10.0\n560,157,9.5\n560,158,9.0\n560,159,8.5\n560,160,8.0\n560,161,8.5\n560,162,9.0\n560,163,9.5\n560,164,10.0\n560,165,10.5\n560,166,11.0\n560,167,11.5\n560,168,12.0\n560,169,12.5\n560,170,13.0\n560,171,13.5\n560,172,14.0\n560,173,14.5\n560,174,15.0\n560,175,12.5\n560,176,12.0\n560,177,11.5\n560,178,11.0\n560,179,10.5\n560,180,10.0\n560,181,9.5\n560,182,9.0\n560,183,8.5\n560,184,8.0\n560,185,7.5\n560,186,8.0\n560,187,8.5\n560,188,9.0\n560,189,9.5\n560,190,10.0\n560,191,10.5\n560,192,11.0\n560,193,11.5\n560,194,12.0\n560,195,12.5\n560,196,13.0\n560,197,13.5\n560,198,14.0\n560,199,14.5\n560,200,12.0\n560,201,11.5\n560,202,11.0\n560,203,10.5\n560,204,10.0\n560,205,9.5\n560,206,9.0\n560,207,8.5\n560,208,8.0\n560,209,7.5\n560,210,7.0\n560,211,7.5\n560,212,8.0\n560,213,8.5\n560,214,9.0\n560,215,9.5\n560,216,10.0\n560,217,10.5\n560,218,11.0\n560,219,11.5\n560,220,12.0\n560,221,12.5\n560,222,13.0\n560,223,13.5\n560,224,14.0\n560,225,11.5\n560,226,11.0\n560,227,10.5\n560,228,10.0\n560,229,9.5\n560,230,9.0\n560,231,8.5\n560,232,8.0\n560,233,7.5\n560,234,7.0\n560,235,6.5\n560,236,7.0\n560,237,7.5\n560,238,8.0\n560,239,8.5\n560,240,9.0\n560,241,9.5\n560,242,10.0\n560,243,10.5\n560,244,11.0\n560,245,11.5\n560,246,12.0\n560,247,12.5\n560,248,13.0\n560,249,13.5\n560,250,11.0\n560,251,10.5\n560,252,10.0\n560,253,9.5\n560,254,9.0\n560,255,8.5\n560,256,8.0\n560,257,7.5\n560,258,7.0\n560,259,6.5\n560,260,6.0\n560,261,6.5\n560,262,7.0\n560,263,7.5\n560,264,8.0\n560,265,8.5\n560,266,9.0\n560,267,9.5\n560,268,10.0\n560,269,10.5\n560,270,11.0\n560,271,11.5\n560,272,12.0\n560,273,12.5\n560,274,13.0\n560,275,10.5\n560,276,10.0\n560,277,9.5\n560,278,9.0\n560,279,8.5\n560,280,8.0\n560,281,7.5\n560,282,7.0\n560,283,6.5\n560,284,6.0\n560,285,5.5\n560,286,6.0\n560,287,6.5\n560,288,7.0\n560,289,7.5\n560,290,8.0\n560,291,8.5\n560,292,9.0\n560,293,9.5\n560,294,10.0\n560,295,10.5\n560,296,11.0\n560,297,11.5\n560,298,12.0\n560,299,12.5\n560,300,10.0\n560,301,9.5\n560,302,9.0\n560,303,8.5\n560,304,8.0\n560,305,7.5\n560,306,7.0\n560,307,6.5\n560,308,6.0\n560,309,5.5\n560,310,5.0\n560,311,5.5\n560,312,6.0\n560,313,6.5\n560,314,7.0\n560,315,7.5\n560,316,8.0\n560,317,8.5\n560,318,9.0\n560,319,9.5\n560,320,10.0\n560,321,10.5\n560,322,11.0\n560,323,11.5\n560,324,12.0\n560,325,9.5\n560,326,9.0\n560,327,8.5\n560,328,8.0\n560,329,7.5\n560,330,7.0\n560,331,6.5\n560,332,6.0\n560,333,5.5\n560,334,5.0\n560,335,4.5\n560,336,5.0\n560,337,5.5\n560,338,6.0\n560,339,6.5\n560,340,7.0\n560,341,7.5\n560,342,8.0\n560,343,8.5\n560,344,9.0\n560,345,9.5\n560,346,10.0\n560,347,10.5\n560,348,11.0\n560,349,11.5\n560,350,9.0\n560,351,8.5\n560,352,8.0\n560,353,7.5\n560,354,7.0\n560,355,6.5\n560,356,6.0\n560,357,5.5\n560,358,5.0\n560,359,4.5\n560,360,4.0\n560,361,4.5\n560,362,5.0\n560,363,5.5\n560,364,6.0\n560,365,6.5\n560,366,7.0\n560,367,7.5\n560,368,8.0\n560,369,8.5\n560,370,9.0\n560,371,9.5\n560,372,10.0\n560,373,10.5\n560,374,11.0\n560,375,8.5\n560,376,8.0\n560,377,7.5\n560,378,7.0\n560,379,6.5\n560,380,6.0\n560,381,5.5\n560,382,5.0\n560,383,4.5\n560,384,4.0\n560,385,3.5\n560,386,4.0\n560,387,4.5\n560,388,5.0\n560,389,5.5\n560,390,6.0\n560,391,6.5\n560,392,7.0\n560,393,7.5\n560,394,8.0\n560,395,8.5\n560,396,9.0\n560,397,9.5\n560,398,10.0\n560,399,10.5\n560,400,8.0\n560,401,7.5\n560,402,7.0\n560,403,6.5\n560,404,6.0\n560,405,5.5\n560,406,5.0\n560,407,4.5\n560,408,4.0\n560,409,3.5\n560,410,3.0\n560,411,3.5\n560,412,4.0\n560,413,4.5\n560,414,5.0\n560,415,5.5\n560,416,6.0\n560,417,6.5\n560,418,7.0\n560,419,7.5\n560,420,8.0\n560,421,8.5\n560,422,9.0\n560,423,9.5\n560,424,10.0\n560,425,7.5\n560,426,7.0\n560,427,6.5\n560,428,6.0\n560,429,5.5\n560,430,5.0\n560,431,4.5\n560,432,4.0\n560,433,3.5\n560,434,3.0\n560,435,2.5\n560,436,3.0\n560,437,3.5\n560,438,4.0\n560,439,4.5\n560,440,5.0\n560,441,5.5\n560,442,6.0\n560,443,6.5\n560,444,7.0\n560,445,7.5\n560,446,8.0\n560,447,8.5\n560,448,9.0\n560,449,9.5\n560,450,7.0\n560,451,6.5\n560,452,6.0\n560,453,5.5\n560,454,5.0\n560,455,4.5\n560,456,4.0\n560,457,3.5\n560,458,3.0\n560,459,2.5\n560,460,2.0\n560,461,2.5\n560,462,3.0\n560,463,3.5\n560,464,4.0\n560,465,4.5\n560,466,5.0\n560,467,5.5\n560,468,6.0\n560,469,6.5\n560,470,7.0\n560,471,7.5\n560,472,8.0\n560,473,8.5\n560,474,9.0\n560,475,6.5\n560,476,6.0\n560,477,5.5\n560,478,5.0\n560,479,4.5\n560,480,4.0\n560,481,3.5\n560,482,3.0\n560,483,2.5\n560,484,2.0\n560,485,1.5\n560,486,2.0\n560,487,2.5\n560,488,3.0\n560,489,3.5\n560,490,4.0\n560,491,4.5\n560,492,5.0\n560,493,5.5\n560,494,6.0\n560,495,6.5\n560,496,7.0\n560,497,7.5\n560,498,8.0\n560,499,8.5\n560,500,6.0\n560,501,5.5\n560,502,5.0\n560,503,4.5\n560,504,4.0\n560,505,3.5\n560,506,3.0\n560,507,2.5\n560,508,2.0\n560,509,1.5\n560,510,1.0\n560,511,1.5\n560,512,2.0\n560,513,2.5\n560,514,3.0\n560,515,3.5\n560,516,4.0\n560,517,4.5\n560,518,5.0\n560,519,5.5\n560,520,6.0\n560,521,6.5\n560,522,7.0\n560,523,7.5\n560,524,8.0\n560,525,5.5\n560,526,5.0\n560,527,4.5\n560,528,4.0\n560,529,3.5\n560,530,3.0\n560,531,2.5\n560,532,2.0\n560,533,1.5\n560,534,1.0\n560,535,0.5\n560,536,1.0\n560,537,1.5\n560,538,2.0\n560,539,2.5\n560,540,3.0\n560,541,3.5\n560,542,4.0\n560,543,4.5\n560,544,5.0\n560,545,5.5\n560,546,6.0\n560,547,6.5\n560,548,7.0\n560,549,7.5\n560,550,5.0\n560,551,4.5\n560,552,4.0\n560,553,3.5\n560,554,3.0\n560,555,2.5\n560,556,2.0\n560,557,1.5\n560,558,1.0\n560,559,0.5\n560,560,0\n560,561,0.5\n560,562,1.0\n560,563,1.5\n560,564,2.0\n560,565,2.5\n560,566,3.0\n560,567,3.5\n560,568,4.0\n560,569,4.5\n560,570,5.0\n560,571,5.5\n560,572,6.0\n560,573,6.5\n560,574,7.0\n560,575,5.5\n560,576,5.0\n560,577,4.5\n560,578,4.0\n560,579,3.5\n560,580,3.0\n560,581,2.5\n560,582,2.0\n560,583,1.5\n560,584,1.0\n560,585,0.5\n560,586,1.0\n560,587,1.5\n560,588,2.0\n560,589,2.5\n560,590,3.0\n560,591,3.5\n560,592,4.0\n560,593,4.5\n560,594,5.0\n560,595,5.5\n560,596,6.0\n560,597,6.5\n560,598,7.0\n560,599,7.5\n560,600,6.0\n560,601,5.5\n560,602,5.0\n560,603,4.5\n560,604,4.0\n560,605,3.5\n560,606,3.0\n560,607,2.5\n560,608,2.0\n560,609,1.5\n560,610,1.0\n560,611,1.5\n560,612,2.0\n560,613,2.5\n560,614,3.0\n560,615,3.5\n560,616,4.0\n560,617,4.5\n560,618,5.0\n560,619,5.5\n560,620,6.0\n560,621,6.5\n560,622,7.0\n560,623,7.5\n560,624,8.0\n561,0,16.5\n561,1,16.0\n561,2,15.5\n561,3,15.0\n561,4,14.5\n561,5,14.0\n561,6,13.5\n561,7,13.0\n561,8,12.5\n561,9,12.0\n561,10,11.5\n561,11,11.0\n561,12,11.5\n561,13,12.0\n561,14,12.5\n561,15,13.0\n561,16,13.5\n561,17,14.0\n561,18,14.5\n561,19,15.0\n561,20,15.5\n561,21,16.0\n561,22,16.5\n561,23,17.0\n561,24,17.5\n561,25,16.0\n561,26,15.5\n561,27,15.0\n561,28,14.5\n561,29,14.0\n561,30,13.5\n561,31,13.0\n561,32,12.5\n561,33,12.0\n561,34,11.5\n561,35,11.0\n561,36,10.5\n561,37,11.0\n561,38,11.5\n561,39,12.0\n561,40,12.5\n561,41,13.0\n561,42,13.5\n561,43,14.0\n561,44,14.5\n561,45,15.0\n561,46,15.5\n561,47,16.0\n561,48,16.5\n561,49,17.0\n561,50,15.5\n561,51,15.0\n561,52,14.5\n561,53,14.0\n561,54,13.5\n561,55,13.0\n561,56,12.5\n561,57,12.0\n561,58,11.5\n561,59,11.0\n561,60,10.5\n561,61,10.0\n561,62,10.5\n561,63,11.0\n561,64,11.5\n561,65,12.0\n561,66,12.5\n561,67,13.0\n561,68,13.5\n561,69,14.0\n561,70,14.5\n561,71,15.0\n561,72,15.5\n561,73,16.0\n561,74,16.5\n561,75,15.0\n561,76,14.5\n561,77,14.0\n561,78,13.5\n561,79,13.0\n561,80,12.5\n561,81,12.0\n561,82,11.5\n561,83,11.0\n561,84,10.5\n561,85,10.0\n561,86,9.5\n561,87,10.0\n561,88,10.5\n561,89,11.0\n561,90,11.5\n561,91,12.0\n561,92,12.5\n561,93,13.0\n561,94,13.5\n561,95,14.0\n561,96,14.5\n561,97,15.0\n561,98,15.5\n561,99,16.0\n561,100,14.5\n561,101,14.0\n561,102,13.5\n561,103,13.0\n561,104,12.5\n561,105,12.0\n561,106,11.5\n561,107,11.0\n561,108,10.5\n561,109,10.0\n561,110,9.5\n561,111,9.0\n561,112,9.5\n561,113,10.0\n561,114,10.5\n561,115,11.0\n561,116,11.5\n561,117,12.0\n561,118,12.5\n561,119,13.0\n561,120,13.5\n561,121,14.0\n561,122,14.5\n561,123,15.0\n561,124,15.5\n561,125,14.0\n561,126,13.5\n561,127,13.0\n561,128,12.5\n561,129,12.0\n561,130,11.5\n561,131,11.0\n561,132,10.5\n561,133,10.0\n561,134,9.5\n561,135,9.0\n561,136,8.5\n561,137,9.0\n561,138,9.5\n561,139,10.0\n561,140,10.5\n561,141,11.0\n561,142,11.5\n561,143,12.0\n561,144,12.5\n561,145,13.0\n561,146,13.5\n561,147,14.0\n561,148,14.5\n561,149,15.0\n561,150,13.5\n561,151,13.0\n561,152,12.5\n561,153,12.0\n561,154,11.5\n561,155,11.0\n561,156,10.5\n561,157,10.0\n561,158,9.5\n561,159,9.0\n561,160,8.5\n561,161,8.0\n561,162,8.5\n561,163,9.0\n561,164,9.5\n561,165,10.0\n561,166,10.5\n561,167,11.0\n561,168,11.5\n561,169,12.0\n561,170,12.5\n561,171,13.0\n561,172,13.5\n561,173,14.0\n561,174,14.5\n561,175,13.0\n561,176,12.5\n561,177,12.0\n561,178,11.5\n561,179,11.0\n561,180,10.5\n561,181,10.0\n561,182,9.5\n561,183,9.0\n561,184,8.5\n561,185,8.0\n561,186,7.5\n561,187,8.0\n561,188,8.5\n561,189,9.0\n561,190,9.5\n561,191,10.0\n561,192,10.5\n561,193,11.0\n561,194,11.5\n561,195,12.0\n561,196,12.5\n561,197,13.0\n561,198,13.5\n561,199,14.0\n561,200,12.5\n561,201,12.0\n561,202,11.5\n561,203,11.0\n561,204,10.5\n561,205,10.0\n561,206,9.5\n561,207,9.0\n561,208,8.5\n561,209,8.0\n561,210,7.5\n561,211,7.0\n561,212,7.5\n561,213,8.0\n561,214,8.5\n561,215,9.0\n561,216,9.5\n561,217,10.0\n561,218,10.5\n561,219,11.0\n561,220,11.5\n561,221,12.0\n561,222,12.5\n561,223,13.0\n561,224,13.5\n561,225,12.0\n561,226,11.5\n561,227,11.0\n561,228,10.5\n561,229,10.0\n561,230,9.5\n561,231,9.0\n561,232,8.5\n561,233,8.0\n561,234,7.5\n561,235,7.0\n561,236,6.5\n561,237,7.0\n561,238,7.5\n561,239,8.0\n561,240,8.5\n561,241,9.0\n561,242,9.5\n561,243,10.0\n561,244,10.5\n561,245,11.0\n561,246,11.5\n561,247,12.0\n561,248,12.5\n561,249,13.0\n561,250,11.5\n561,251,11.0\n561,252,10.5\n561,253,10.0\n561,254,9.5\n561,255,9.0\n561,256,8.5\n561,257,8.0\n561,258,7.5\n561,259,7.0\n561,260,6.5\n561,261,6.0\n561,262,6.5\n561,263,7.0\n561,264,7.5\n561,265,8.0\n561,266,8.5\n561,267,9.0\n561,268,9.5\n561,269,10.0\n561,270,10.5\n561,271,11.0\n561,272,11.5\n561,273,12.0\n561,274,12.5\n561,275,11.0\n561,276,10.5\n561,277,10.0\n561,278,9.5\n561,279,9.0\n561,280,8.5\n561,281,8.0\n561,282,7.5\n561,283,7.0\n561,284,6.5\n561,285,6.0\n561,286,5.5\n561,287,6.0\n561,288,6.5\n561,289,7.0\n561,290,7.5\n561,291,8.0\n561,292,8.5\n561,293,9.0\n561,294,9.5\n561,295,10.0\n561,296,10.5\n561,297,11.0\n561,298,11.5\n561,299,12.0\n561,300,10.5\n561,301,10.0\n561,302,9.5\n561,303,9.0\n561,304,8.5\n561,305,8.0\n561,306,7.5\n561,307,7.0\n561,308,6.5\n561,309,6.0\n561,310,5.5\n561,311,5.0\n561,312,5.5\n561,313,6.0\n561,314,6.5\n561,315,7.0\n561,316,7.5\n561,317,8.0\n561,318,8.5\n561,319,9.0\n561,320,9.5\n561,321,10.0\n561,322,10.5\n561,323,11.0\n561,324,11.5\n561,325,10.0\n561,326,9.5\n561,327,9.0\n561,328,8.5\n561,329,8.0\n561,330,7.5\n561,331,7.0\n561,332,6.5\n561,333,6.0\n561,334,5.5\n561,335,5.0\n561,336,4.5\n561,337,5.0\n561,338,5.5\n561,339,6.0\n561,340,6.5\n561,341,7.0\n561,342,7.5\n561,343,8.0\n561,344,8.5\n561,345,9.0\n561,346,9.5\n561,347,10.0\n561,348,10.5\n561,349,11.0\n561,350,9.5\n561,351,9.0\n561,352,8.5\n561,353,8.0\n561,354,7.5\n561,355,7.0\n561,356,6.5\n561,357,6.0\n561,358,5.5\n561,359,5.0\n561,360,4.5\n561,361,4.0\n561,362,4.5\n561,363,5.0\n561,364,5.5\n561,365,6.0\n561,366,6.5\n561,367,7.0\n561,368,7.5\n561,369,8.0\n561,370,8.5\n561,371,9.0\n561,372,9.5\n561,373,10.0\n561,374,10.5\n561,375,9.0\n561,376,8.5\n561,377,8.0\n561,378,7.5\n561,379,7.0\n561,380,6.5\n561,381,6.0\n561,382,5.5\n561,383,5.0\n561,384,4.5\n561,385,4.0\n561,386,3.5\n561,387,4.0\n561,388,4.5\n561,389,5.0\n561,390,5.5\n561,391,6.0\n561,392,6.5\n561,393,7.0\n561,394,7.5\n561,395,8.0\n561,396,8.5\n561,397,9.0\n561,398,9.5\n561,399,10.0\n561,400,8.5\n561,401,8.0\n561,402,7.5\n561,403,7.0\n561,404,6.5\n561,405,6.0\n561,406,5.5\n561,407,5.0\n561,408,4.5\n561,409,4.0\n561,410,3.5\n561,411,3.0\n561,412,3.5\n561,413,4.0\n561,414,4.5\n561,415,5.0\n561,416,5.5\n561,417,6.0\n561,418,6.5\n561,419,7.0\n561,420,7.5\n561,421,8.0\n561,422,8.5\n561,423,9.0\n561,424,9.5\n561,425,8.0\n561,426,7.5\n561,427,7.0\n561,428,6.5\n561,429,6.0\n561,430,5.5\n561,431,5.0\n561,432,4.5\n561,433,4.0\n561,434,3.5\n561,435,3.0\n561,436,2.5\n561,437,3.0\n561,438,3.5\n561,439,4.0\n561,440,4.5\n561,441,5.0\n561,442,5.5\n561,443,6.0\n561,444,6.5\n561,445,7.0\n561,446,7.5\n561,447,8.0\n561,448,8.5\n561,449,9.0\n561,450,7.5\n561,451,7.0\n561,452,6.5\n561,453,6.0\n561,454,5.5\n561,455,5.0\n561,456,4.5\n561,457,4.0\n561,458,3.5\n561,459,3.0\n561,460,2.5\n561,461,2.0\n561,462,2.5\n561,463,3.0\n561,464,3.5\n561,465,4.0\n561,466,4.5\n561,467,5.0\n561,468,5.5\n561,469,6.0\n561,470,6.5\n561,471,7.0\n561,472,7.5\n561,473,8.0\n561,474,8.5\n561,475,7.0\n561,476,6.5\n561,477,6.0\n561,478,5.5\n561,479,5.0\n561,480,4.5\n561,481,4.0\n561,482,3.5\n561,483,3.0\n561,484,2.5\n561,485,2.0\n561,486,1.5\n561,487,2.0\n561,488,2.5\n561,489,3.0\n561,490,3.5\n561,491,4.0\n561,492,4.5\n561,493,5.0\n561,494,5.5\n561,495,6.0\n561,496,6.5\n561,497,7.0\n561,498,7.5\n561,499,8.0\n561,500,6.5\n561,501,6.0\n561,502,5.5\n561,503,5.0\n561,504,4.5\n561,505,4.0\n561,506,3.5\n561,507,3.0\n561,508,2.5\n561,509,2.0\n561,510,1.5\n561,511,1.0\n561,512,1.5\n561,513,2.0\n561,514,2.5\n561,515,3.0\n561,516,3.5\n561,517,4.0\n561,518,4.5\n561,519,5.0\n561,520,5.5\n561,521,6.0\n561,522,6.5\n561,523,7.0\n561,524,7.5\n561,525,6.0\n561,526,5.5\n561,527,5.0\n561,528,4.5\n561,529,4.0\n561,530,3.5\n561,531,3.0\n561,532,2.5\n561,533,2.0\n561,534,1.5\n561,535,1.0\n561,536,0.5\n561,537,1.0\n561,538,1.5\n561,539,2.0\n561,540,2.5\n561,541,3.0\n561,542,3.5\n561,543,4.0\n561,544,4.5\n561,545,5.0\n561,546,5.5\n561,547,6.0\n561,548,6.5\n561,549,7.0\n561,550,5.5\n561,551,5.0\n561,552,4.5\n561,553,4.0\n561,554,3.5\n561,555,3.0\n561,556,2.5\n561,557,2.0\n561,558,1.5\n561,559,1.0\n561,560,0.5\n561,561,0\n561,562,0.5\n561,563,1.0\n561,564,1.5\n561,565,2.0\n561,566,2.5\n561,567,3.0\n561,568,3.5\n561,569,4.0\n561,570,4.5\n561,571,5.0\n561,572,5.5\n561,573,6.0\n561,574,6.5\n561,575,6.0\n561,576,5.5\n561,577,5.0\n561,578,4.5\n561,579,4.0\n561,580,3.5\n561,581,3.0\n561,582,2.5\n561,583,2.0\n561,584,1.5\n561,585,1.0\n561,586,0.5\n561,587,1.0\n561,588,1.5\n561,589,2.0\n561,590,2.5\n561,591,3.0\n561,592,3.5\n561,593,4.0\n561,594,4.5\n561,595,5.0\n561,596,5.5\n561,597,6.0\n561,598,6.5\n561,599,7.0\n561,600,6.5\n561,601,6.0\n561,602,5.5\n561,603,5.0\n561,604,4.5\n561,605,4.0\n561,606,3.5\n561,607,3.0\n561,608,2.5\n561,609,2.0\n561,610,1.5\n561,611,1.0\n561,612,1.5\n561,613,2.0\n561,614,2.5\n561,615,3.0\n561,616,3.5\n561,617,4.0\n561,618,4.5\n561,619,5.0\n561,620,5.5\n561,621,6.0\n561,622,6.5\n561,623,7.0\n561,624,7.5\n562,0,17.0\n562,1,16.5\n562,2,16.0\n562,3,15.5\n562,4,15.0\n562,5,14.5\n562,6,14.0\n562,7,13.5\n562,8,13.0\n562,9,12.5\n562,10,12.0\n562,11,11.5\n562,12,11.0\n562,13,11.5\n562,14,12.0\n562,15,12.5\n562,16,13.0\n562,17,13.5\n562,18,14.0\n562,19,14.5\n562,20,15.0\n562,21,15.5\n562,22,16.0\n562,23,16.5\n562,24,17.0\n562,25,16.5\n562,26,16.0\n562,27,15.5\n562,28,15.0\n562,29,14.5\n562,30,14.0\n562,31,13.5\n562,32,13.0\n562,33,12.5\n562,34,12.0\n562,35,11.5\n562,36,11.0\n562,37,10.5\n562,38,11.0\n562,39,11.5\n562,40,12.0\n562,41,12.5\n562,42,13.0\n562,43,13.5\n562,44,14.0\n562,45,14.5\n562,46,15.0\n562,47,15.5\n562,48,16.0\n562,49,16.5\n562,50,16.0\n562,51,15.5\n562,52,15.0\n562,53,14.5\n562,54,14.0\n562,55,13.5\n562,56,13.0\n562,57,12.5\n562,58,12.0\n562,59,11.5\n562,60,11.0\n562,61,10.5\n562,62,10.0\n562,63,10.5\n562,64,11.0\n562,65,11.5\n562,66,12.0\n562,67,12.5\n562,68,13.0\n562,69,13.5\n562,70,14.0\n562,71,14.5\n562,72,15.0\n562,73,15.5\n562,74,16.0\n562,75,15.5\n562,76,15.0\n562,77,14.5\n562,78,14.0\n562,79,13.5\n562,80,13.0\n562,81,12.5\n562,82,12.0\n562,83,11.5\n562,84,11.0\n562,85,10.5\n562,86,10.0\n562,87,9.5\n562,88,10.0\n562,89,10.5\n562,90,11.0\n562,91,11.5\n562,92,12.0\n562,93,12.5\n562,94,13.0\n562,95,13.5\n562,96,14.0\n562,97,14.5\n562,98,15.0\n562,99,15.5\n562,100,15.0\n562,101,14.5\n562,102,14.0\n562,103,13.5\n562,104,13.0\n562,105,12.5\n562,106,12.0\n562,107,11.5\n562,108,11.0\n562,109,10.5\n562,110,10.0\n562,111,9.5\n562,112,9.0\n562,113,9.5\n562,114,10.0\n562,115,10.5\n562,116,11.0\n562,117,11.5\n562,118,12.0\n562,119,12.5\n562,120,13.0\n562,121,13.5\n562,122,14.0\n562,123,14.5\n562,124,15.0\n562,125,14.5\n562,126,14.0\n562,127,13.5\n562,128,13.0\n562,129,12.5\n562,130,12.0\n562,131,11.5\n562,132,11.0\n562,133,10.5\n562,134,10.0\n562,135,9.5\n562,136,9.0\n562,137,8.5\n562,138,9.0\n562,139,9.5\n562,140,10.0\n562,141,10.5\n562,142,11.0\n562,143,11.5\n562,144,12.0\n562,145,12.5\n562,146,13.0\n562,147,13.5\n562,148,14.0\n562,149,14.5\n562,150,14.0\n562,151,13.5\n562,152,13.0\n562,153,12.5\n562,154,12.0\n562,155,11.5\n562,156,11.0\n562,157,10.5\n562,158,10.0\n562,159,9.5\n562,160,9.0\n562,161,8.5\n562,162,8.0\n562,163,8.5\n562,164,9.0\n562,165,9.5\n562,166,10.0\n562,167,10.5\n562,168,11.0\n562,169,11.5\n562,170,12.0\n562,171,12.5\n562,172,13.0\n562,173,13.5\n562,174,14.0\n562,175,13.5\n562,176,13.0\n562,177,12.5\n562,178,12.0\n562,179,11.5\n562,180,11.0\n562,181,10.5\n562,182,10.0\n562,183,9.5\n562,184,9.0\n562,185,8.5\n562,186,8.0\n562,187,7.5\n562,188,8.0\n562,189,8.5\n562,190,9.0\n562,191,9.5\n562,192,10.0\n562,193,10.5\n562,194,11.0\n562,195,11.5\n562,196,12.0\n562,197,12.5\n562,198,13.0\n562,199,13.5\n562,200,13.0\n562,201,12.5\n562,202,12.0\n562,203,11.5\n562,204,11.0\n562,205,10.5\n562,206,10.0\n562,207,9.5\n562,208,9.0\n562,209,8.5\n562,210,8.0\n562,211,7.5\n562,212,7.0\n562,213,7.5\n562,214,8.0\n562,215,8.5\n562,216,9.0\n562,217,9.5\n562,218,10.0\n562,219,10.5\n562,220,11.0\n562,221,11.5\n562,222,12.0\n562,223,12.5\n562,224,13.0\n562,225,12.5\n562,226,12.0\n562,227,11.5\n562,228,11.0\n562,229,10.5\n562,230,10.0\n562,231,9.5\n562,232,9.0\n562,233,8.5\n562,234,8.0\n562,235,7.5\n562,236,7.0\n562,237,6.5\n562,238,7.0\n562,239,7.5\n562,240,8.0\n562,241,8.5\n562,242,9.0\n562,243,9.5\n562,244,10.0\n562,245,10.5\n562,246,11.0\n562,247,11.5\n562,248,12.0\n562,249,12.5\n562,250,12.0\n562,251,11.5\n562,252,11.0\n562,253,10.5\n562,254,10.0\n562,255,9.5\n562,256,9.0\n562,257,8.5\n562,258,8.0\n562,259,7.5\n562,260,7.0\n562,261,6.5\n562,262,6.0\n562,263,6.5\n562,264,7.0\n562,265,7.5\n562,266,8.0\n562,267,8.5\n562,268,9.0\n562,269,9.5\n562,270,10.0\n562,271,10.5\n562,272,11.0\n562,273,11.5\n562,274,12.0\n562,275,11.5\n562,276,11.0\n562,277,10.5\n562,278,10.0\n562,279,9.5\n562,280,9.0\n562,281,8.5\n562,282,8.0\n562,283,7.5\n562,284,7.0\n562,285,6.5\n562,286,6.0\n562,287,5.5\n562,288,6.0\n562,289,6.5\n562,290,7.0\n562,291,7.5\n562,292,8.0\n562,293,8.5\n562,294,9.0\n562,295,9.5\n562,296,10.0\n562,297,10.5\n562,298,11.0\n562,299,11.5\n562,300,11.0\n562,301,10.5\n562,302,10.0\n562,303,9.5\n562,304,9.0\n562,305,8.5\n562,306,8.0\n562,307,7.5\n562,308,7.0\n562,309,6.5\n562,310,6.0\n562,311,5.5\n562,312,5.0\n562,313,5.5\n562,314,6.0\n562,315,6.5\n562,316,7.0\n562,317,7.5\n562,318,8.0\n562,319,8.5\n562,320,9.0\n562,321,9.5\n562,322,10.0\n562,323,10.5\n562,324,11.0\n562,325,10.5\n562,326,10.0\n562,327,9.5\n562,328,9.0\n562,329,8.5\n562,330,8.0\n562,331,7.5\n562,332,7.0\n562,333,6.5\n562,334,6.0\n562,335,5.5\n562,336,5.0\n562,337,4.5\n562,338,5.0\n562,339,5.5\n562,340,6.0\n562,341,6.5\n562,342,7.0\n562,343,7.5\n562,344,8.0\n562,345,8.5\n562,346,9.0\n562,347,9.5\n562,348,10.0\n562,349,10.5\n562,350,10.0\n562,351,9.5\n562,352,9.0\n562,353,8.5\n562,354,8.0\n562,355,7.5\n562,356,7.0\n562,357,6.5\n562,358,6.0\n562,359,5.5\n562,360,5.0\n562,361,4.5\n562,362,4.0\n562,363,4.5\n562,364,5.0\n562,365,5.5\n562,366,6.0\n562,367,6.5\n562,368,7.0\n562,369,7.5\n562,370,8.0\n562,371,8.5\n562,372,9.0\n562,373,9.5\n562,374,10.0\n562,375,9.5\n562,376,9.0\n562,377,8.5\n562,378,8.0\n562,379,7.5\n562,380,7.0\n562,381,6.5\n562,382,6.0\n562,383,5.5\n562,384,5.0\n562,385,4.5\n562,386,4.0\n562,387,3.5\n562,388,4.0\n562,389,4.5\n562,390,5.0\n562,391,5.5\n562,392,6.0\n562,393,6.5\n562,394,7.0\n562,395,7.5\n562,396,8.0\n562,397,8.5\n562,398,9.0\n562,399,9.5\n562,400,9.0\n562,401,8.5\n562,402,8.0\n562,403,7.5\n562,404,7.0\n562,405,6.5\n562,406,6.0\n562,407,5.5\n562,408,5.0\n562,409,4.5\n562,410,4.0\n562,411,3.5\n562,412,3.0\n562,413,3.5\n562,414,4.0\n562,415,4.5\n562,416,5.0\n562,417,5.5\n562,418,6.0\n562,419,6.5\n562,420,7.0\n562,421,7.5\n562,422,8.0\n562,423,8.5\n562,424,9.0\n562,425,8.5\n562,426,8.0\n562,427,7.5\n562,428,7.0\n562,429,6.5\n562,430,6.0\n562,431,5.5\n562,432,5.0\n562,433,4.5\n562,434,4.0\n562,435,3.5\n562,436,3.0\n562,437,2.5\n562,438,3.0\n562,439,3.5\n562,440,4.0\n562,441,4.5\n562,442,5.0\n562,443,5.5\n562,444,6.0\n562,445,6.5\n562,446,7.0\n562,447,7.5\n562,448,8.0\n562,449,8.5\n562,450,8.0\n562,451,7.5\n562,452,7.0\n562,453,6.5\n562,454,6.0\n562,455,5.5\n562,456,5.0\n562,457,4.5\n562,458,4.0\n562,459,3.5\n562,460,3.0\n562,461,2.5\n562,462,2.0\n562,463,2.5\n562,464,3.0\n562,465,3.5\n562,466,4.0\n562,467,4.5\n562,468,5.0\n562,469,5.5\n562,470,6.0\n562,471,6.5\n562,472,7.0\n562,473,7.5\n562,474,8.0\n562,475,7.5\n562,476,7.0\n562,477,6.5\n562,478,6.0\n562,479,5.5\n562,480,5.0\n562,481,4.5\n562,482,4.0\n562,483,3.5\n562,484,3.0\n562,485,2.5\n562,486,2.0\n562,487,1.5\n562,488,2.0\n562,489,2.5\n562,490,3.0\n562,491,3.5\n562,492,4.0\n562,493,4.5\n562,494,5.0\n562,495,5.5\n562,496,6.0\n562,497,6.5\n562,498,7.0\n562,499,7.5\n562,500,7.0\n562,501,6.5\n562,502,6.0\n562,503,5.5\n562,504,5.0\n562,505,4.5\n562,506,4.0\n562,507,3.5\n562,508,3.0\n562,509,2.5\n562,510,2.0\n562,511,1.5\n562,512,1.0\n562,513,1.5\n562,514,2.0\n562,515,2.5\n562,516,3.0\n562,517,3.5\n562,518,4.0\n562,519,4.5\n562,520,5.0\n562,521,5.5\n562,522,6.0\n562,523,6.5\n562,524,7.0\n562,525,6.5\n562,526,6.0\n562,527,5.5\n562,528,5.0\n562,529,4.5\n562,530,4.0\n562,531,3.5\n562,532,3.0\n562,533,2.5\n562,534,2.0\n562,535,1.5\n562,536,1.0\n562,537,0.5\n562,538,1.0\n562,539,1.5\n562,540,2.0\n562,541,2.5\n562,542,3.0\n562,543,3.5\n562,544,4.0\n562,545,4.5\n562,546,5.0\n562,547,5.5\n562,548,6.0\n562,549,6.5\n562,550,6.0\n562,551,5.5\n562,552,5.0\n562,553,4.5\n562,554,4.0\n562,555,3.5\n562,556,3.0\n562,557,2.5\n562,558,2.0\n562,559,1.5\n562,560,1.0\n562,561,0.5\n562,562,0\n562,563,0.5\n562,564,1.0\n562,565,1.5\n562,566,2.0\n562,567,2.5\n562,568,3.0\n562,569,3.5\n562,570,4.0\n562,571,4.5\n562,572,5.0\n562,573,5.5\n562,574,6.0\n562,575,6.5\n562,576,6.0\n562,577,5.5\n562,578,5.0\n562,579,4.5\n562,580,4.0\n562,581,3.5\n562,582,3.0\n562,583,2.5\n562,584,2.0\n562,585,1.5\n562,586,1.0\n562,587,0.5\n562,588,1.0\n562,589,1.5\n562,590,2.0\n562,591,2.5\n562,592,3.0\n562,593,3.5\n562,594,4.0\n562,595,4.5\n562,596,5.0\n562,597,5.5\n562,598,6.0\n562,599,6.5\n562,600,7.0\n562,601,6.5\n562,602,6.0\n562,603,5.5\n562,604,5.0\n562,605,4.5\n562,606,4.0\n562,607,3.5\n562,608,3.0\n562,609,2.5\n562,610,2.0\n562,611,1.5\n562,612,1.0\n562,613,1.5\n562,614,2.0\n562,615,2.5\n562,616,3.0\n562,617,3.5\n562,618,4.0\n562,619,4.5\n562,620,5.0\n562,621,5.5\n562,622,6.0\n562,623,6.5\n562,624,7.0\n563,0,17.5\n563,1,17.0\n563,2,16.5\n563,3,16.0\n563,4,15.5\n563,5,15.0\n563,6,14.5\n563,7,14.0\n563,8,13.5\n563,9,13.0\n563,10,12.5\n563,11,12.0\n563,12,11.5\n563,13,11.0\n563,14,11.5\n563,15,12.0\n563,16,12.5\n563,17,13.0\n563,18,13.5\n563,19,14.0\n563,20,14.5\n563,21,15.0\n563,22,15.5\n563,23,16.0\n563,24,16.5\n563,25,17.0\n563,26,16.5\n563,27,16.0\n563,28,15.5\n563,29,15.0\n563,30,14.5\n563,31,14.0\n563,32,13.5\n563,33,13.0\n563,34,12.5\n563,35,12.0\n563,36,11.5\n563,37,11.0\n563,38,10.5\n563,39,11.0\n563,40,11.5\n563,41,12.0\n563,42,12.5\n563,43,13.0\n563,44,13.5\n563,45,14.0\n563,46,14.5\n563,47,15.0\n563,48,15.5\n563,49,16.0\n563,50,16.5\n563,51,16.0\n563,52,15.5\n563,53,15.0\n563,54,14.5\n563,55,14.0\n563,56,13.5\n563,57,13.0\n563,58,12.5\n563,59,12.0\n563,60,11.5\n563,61,11.0\n563,62,10.5\n563,63,10.0\n563,64,10.5\n563,65,11.0\n563,66,11.5\n563,67,12.0\n563,68,12.5\n563,69,13.0\n563,70,13.5\n563,71,14.0\n563,72,14.5\n563,73,15.0\n563,74,15.5\n563,75,16.0\n563,76,15.5\n563,77,15.0\n563,78,14.5\n563,79,14.0\n563,80,13.5\n563,81,13.0\n563,82,12.5\n563,83,12.0\n563,84,11.5\n563,85,11.0\n563,86,10.5\n563,87,10.0\n563,88,9.5\n563,89,10.0\n563,90,10.5\n563,91,11.0\n563,92,11.5\n563,93,12.0\n563,94,12.5\n563,95,13.0\n563,96,13.5\n563,97,14.0\n563,98,14.5\n563,99,15.0\n563,100,15.5\n563,101,15.0\n563,102,14.5\n563,103,14.0\n563,104,13.5\n563,105,13.0\n563,106,12.5\n563,107,12.0\n563,108,11.5\n563,109,11.0\n563,110,10.5\n563,111,10.0\n563,112,9.5\n563,113,9.0\n563,114,9.5\n563,115,10.0\n563,116,10.5\n563,117,11.0\n563,118,11.5\n563,119,12.0\n563,120,12.5\n563,121,13.0\n563,122,13.5\n563,123,14.0\n563,124,14.5\n563,125,15.0\n563,126,14.5\n563,127,14.0\n563,128,13.5\n563,129,13.0\n563,130,12.5\n563,131,12.0\n563,132,11.5\n563,133,11.0\n563,134,10.5\n563,135,10.0\n563,136,9.5\n563,137,9.0\n563,138,8.5\n563,139,9.0\n563,140,9.5\n563,141,10.0\n563,142,10.5\n563,143,11.0\n563,144,11.5\n563,145,12.0\n563,146,12.5\n563,147,13.0\n563,148,13.5\n563,149,14.0\n563,150,14.5\n563,151,14.0\n563,152,13.5\n563,153,13.0\n563,154,12.5\n563,155,12.0\n563,156,11.5\n563,157,11.0\n563,158,10.5\n563,159,10.0\n563,160,9.5\n563,161,9.0\n563,162,8.5\n563,163,8.0\n563,164,8.5\n563,165,9.0\n563,166,9.5\n563,167,10.0\n563,168,10.5\n563,169,11.0\n563,170,11.5\n563,171,12.0\n563,172,12.5\n563,173,13.0\n563,174,13.5\n563,175,14.0\n563,176,13.5\n563,177,13.0\n563,178,12.5\n563,179,12.0\n563,180,11.5\n563,181,11.0\n563,182,10.5\n563,183,10.0\n563,184,9.5\n563,185,9.0\n563,186,8.5\n563,187,8.0\n563,188,7.5\n563,189,8.0\n563,190,8.5\n563,191,9.0\n563,192,9.5\n563,193,10.0\n563,194,10.5\n563,195,11.0\n563,196,11.5\n563,197,12.0\n563,198,12.5\n563,199,13.0\n563,200,13.5\n563,201,13.0\n563,202,12.5\n563,203,12.0\n563,204,11.5\n563,205,11.0\n563,206,10.5\n563,207,10.0\n563,208,9.5\n563,209,9.0\n563,210,8.5\n563,211,8.0\n563,212,7.5\n563,213,7.0\n563,214,7.5\n563,215,8.0\n563,216,8.5\n563,217,9.0\n563,218,9.5\n563,219,10.0\n563,220,10.5\n563,221,11.0\n563,222,11.5\n563,223,12.0\n563,224,12.5\n563,225,13.0\n563,226,12.5\n563,227,12.0\n563,228,11.5\n563,229,11.0\n563,230,10.5\n563,231,10.0\n563,232,9.5\n563,233,9.0\n563,234,8.5\n563,235,8.0\n563,236,7.5\n563,237,7.0\n563,238,6.5\n563,239,7.0\n563,240,7.5\n563,241,8.0\n563,242,8.5\n563,243,9.0\n563,244,9.5\n563,245,10.0\n563,246,10.5\n563,247,11.0\n563,248,11.5\n563,249,12.0\n563,250,12.5\n563,251,12.0\n563,252,11.5\n563,253,11.0\n563,254,10.5\n563,255,10.0\n563,256,9.5\n563,257,9.0\n563,258,8.5\n563,259,8.0\n563,260,7.5\n563,261,7.0\n563,262,6.5\n563,263,6.0\n563,264,6.5\n563,265,7.0\n563,266,7.5\n563,267,8.0\n563,268,8.5\n563,269,9.0\n563,270,9.5\n563,271,10.0\n563,272,10.5\n563,273,11.0\n563,274,11.5\n563,275,12.0\n563,276,11.5\n563,277,11.0\n563,278,10.5\n563,279,10.0\n563,280,9.5\n563,281,9.0\n563,282,8.5\n563,283,8.0\n563,284,7.5\n563,285,7.0\n563,286,6.5\n563,287,6.0\n563,288,5.5\n563,289,6.0\n563,290,6.5\n563,291,7.0\n563,292,7.5\n563,293,8.0\n563,294,8.5\n563,295,9.0\n563,296,9.5\n563,297,10.0\n563,298,10.5\n563,299,11.0\n563,300,11.5\n563,301,11.0\n563,302,10.5\n563,303,10.0\n563,304,9.5\n563,305,9.0\n563,306,8.5\n563,307,8.0\n563,308,7.5\n563,309,7.0\n563,310,6.5\n563,311,6.0\n563,312,5.5\n563,313,5.0\n563,314,5.5\n563,315,6.0\n563,316,6.5\n563,317,7.0\n563,318,7.5\n563,319,8.0\n563,320,8.5\n563,321,9.0\n563,322,9.5\n563,323,10.0\n563,324,10.5\n563,325,11.0\n563,326,10.5\n563,327,10.0\n563,328,9.5\n563,329,9.0\n563,330,8.5\n563,331,8.0\n563,332,7.5\n563,333,7.0\n563,334,6.5\n563,335,6.0\n563,336,5.5\n563,337,5.0\n563,338,4.5\n563,339,5.0\n563,340,5.5\n563,341,6.0\n563,342,6.5\n563,343,7.0\n563,344,7.5\n563,345,8.0\n563,346,8.5\n563,347,9.0\n563,348,9.5\n563,349,10.0\n563,350,10.5\n563,351,10.0\n563,352,9.5\n563,353,9.0\n563,354,8.5\n563,355,8.0\n563,356,7.5\n563,357,7.0\n563,358,6.5\n563,359,6.0\n563,360,5.5\n563,361,5.0\n563,362,4.5\n563,363,4.0\n563,364,4.5\n563,365,5.0\n563,366,5.5\n563,367,6.0\n563,368,6.5\n563,369,7.0\n563,370,7.5\n563,371,8.0\n563,372,8.5\n563,373,9.0\n563,374,9.5\n563,375,10.0\n563,376,9.5\n563,377,9.0\n563,378,8.5\n563,379,8.0\n563,380,7.5\n563,381,7.0\n563,382,6.5\n563,383,6.0\n563,384,5.5\n563,385,5.0\n563,386,4.5\n563,387,4.0\n563,388,3.5\n563,389,4.0\n563,390,4.5\n563,391,5.0\n563,392,5.5\n563,393,6.0\n563,394,6.5\n563,395,7.0\n563,396,7.5\n563,397,8.0\n563,398,8.5\n563,399,9.0\n563,400,9.5\n563,401,9.0\n563,402,8.5\n563,403,8.0\n563,404,7.5\n563,405,7.0\n563,406,6.5\n563,407,6.0\n563,408,5.5\n563,409,5.0\n563,410,4.5\n563,411,4.0\n563,412,3.5\n563,413,3.0\n563,414,3.5\n563,415,4.0\n563,416,4.5\n563,417,5.0\n563,418,5.5\n563,419,6.0\n563,420,6.5\n563,421,7.0\n563,422,7.5\n563,423,8.0\n563,424,8.5\n563,425,9.0\n563,426,8.5\n563,427,8.0\n563,428,7.5\n563,429,7.0\n563,430,6.5\n563,431,6.0\n563,432,5.5\n563,433,5.0\n563,434,4.5\n563,435,4.0\n563,436,3.5\n563,437,3.0\n563,438,2.5\n563,439,3.0\n563,440,3.5\n563,441,4.0\n563,442,4.5\n563,443,5.0\n563,444,5.5\n563,445,6.0\n563,446,6.5\n563,447,7.0\n563,448,7.5\n563,449,8.0\n563,450,8.5\n563,451,8.0\n563,452,7.5\n563,453,7.0\n563,454,6.5\n563,455,6.0\n563,456,5.5\n563,457,5.0\n563,458,4.5\n563,459,4.0\n563,460,3.5\n563,461,3.0\n563,462,2.5\n563,463,2.0\n563,464,2.5\n563,465,3.0\n563,466,3.5\n563,467,4.0\n563,468,4.5\n563,469,5.0\n563,470,5.5\n563,471,6.0\n563,472,6.5\n563,473,7.0\n563,474,7.5\n563,475,8.0\n563,476,7.5\n563,477,7.0\n563,478,6.5\n563,479,6.0\n563,480,5.5\n563,481,5.0\n563,482,4.5\n563,483,4.0\n563,484,3.5\n563,485,3.0\n563,486,2.5\n563,487,2.0\n563,488,1.5\n563,489,2.0\n563,490,2.5\n563,491,3.0\n563,492,3.5\n563,493,4.0\n563,494,4.5\n563,495,5.0\n563,496,5.5\n563,497,6.0\n563,498,6.5\n563,499,7.0\n563,500,7.5\n563,501,7.0\n563,502,6.5\n563,503,6.0\n563,504,5.5\n563,505,5.0\n563,506,4.5\n563,507,4.0\n563,508,3.5\n563,509,3.0\n563,510,2.5\n563,511,2.0\n563,512,1.5\n563,513,1.0\n563,514,1.5\n563,515,2.0\n563,516,2.5\n563,517,3.0\n563,518,3.5\n563,519,4.0\n563,520,4.5\n563,521,5.0\n563,522,5.5\n563,523,6.0\n563,524,6.5\n563,525,7.0\n563,526,6.5\n563,527,6.0\n563,528,5.5\n563,529,5.0\n563,530,4.5\n563,531,4.0\n563,532,3.5\n563,533,3.0\n563,534,2.5\n563,535,2.0\n563,536,1.5\n563,537,1.0\n563,538,0.5\n563,539,1.0\n563,540,1.5\n563,541,2.0\n563,542,2.5\n563,543,3.0\n563,544,3.5\n563,545,4.0\n563,546,4.5\n563,547,5.0\n563,548,5.5\n563,549,6.0\n563,550,6.5\n563,551,6.0\n563,552,5.5\n563,553,5.0\n563,554,4.5\n563,555,4.0\n563,556,3.5\n563,557,3.0\n563,558,2.5\n563,559,2.0\n563,560,1.5\n563,561,1.0\n563,562,0.5\n563,563,0\n563,564,0.5\n563,565,1.0\n563,566,1.5\n563,567,2.0\n563,568,2.5\n563,569,3.0\n563,570,3.5\n563,571,4.0\n563,572,4.5\n563,573,5.0\n563,574,5.5\n563,575,7.0\n563,576,6.5\n563,577,6.0\n563,578,5.5\n563,579,5.0\n563,580,4.5\n563,581,4.0\n563,582,3.5\n563,583,3.0\n563,584,2.5\n563,585,2.0\n563,586,1.5\n563,587,1.0\n563,588,0.5\n563,589,1.0\n563,590,1.5\n563,591,2.0\n563,592,2.5\n563,593,3.0\n563,594,3.5\n563,595,4.0\n563,596,4.5\n563,597,5.0\n563,598,5.5\n563,599,6.0\n563,600,7.5\n563,601,7.0\n563,602,6.5\n563,603,6.0\n563,604,5.5\n563,605,5.0\n563,606,4.5\n563,607,4.0\n563,608,3.5\n563,609,3.0\n563,610,2.5\n563,611,2.0\n563,612,1.5\n563,613,1.0\n563,614,1.5\n563,615,2.0\n563,616,2.5\n563,617,3.0\n563,618,3.5\n563,619,4.0\n563,620,4.5\n563,621,5.0\n563,622,5.5\n563,623,6.0\n563,624,6.5\n564,0,18.0\n564,1,17.5\n564,2,17.0\n564,3,16.5\n564,4,16.0\n564,5,15.5\n564,6,15.0\n564,7,14.5\n564,8,14.0\n564,9,13.5\n564,10,13.0\n564,11,12.5\n564,12,12.0\n564,13,11.5\n564,14,11.0\n564,15,11.5\n564,16,12.0\n564,17,12.5\n564,18,13.0\n564,19,13.5\n564,20,14.0\n564,21,14.5\n564,22,15.0\n564,23,15.5\n564,24,16.0\n564,25,17.5\n564,26,17.0\n564,27,16.5\n564,28,16.0\n564,29,15.5\n564,30,15.0\n564,31,14.5\n564,32,14.0\n564,33,13.5\n564,34,13.0\n564,35,12.5\n564,36,12.0\n564,37,11.5\n564,38,11.0\n564,39,10.5\n564,40,11.0\n564,41,11.5\n564,42,12.0\n564,43,12.5\n564,44,13.0\n564,45,13.5\n564,46,14.0\n564,47,14.5\n564,48,15.0\n564,49,15.5\n564,50,17.0\n564,51,16.5\n564,52,16.0\n564,53,15.5\n564,54,15.0\n564,55,14.5\n564,56,14.0\n564,57,13.5\n564,58,13.0\n564,59,12.5\n564,60,12.0\n564,61,11.5\n564,62,11.0\n564,63,10.5\n564,64,10.0\n564,65,10.5\n564,66,11.0\n564,67,11.5\n564,68,12.0\n564,69,12.5\n564,70,13.0\n564,71,13.5\n564,72,14.0\n564,73,14.5\n564,74,15.0\n564,75,16.5\n564,76,16.0\n564,77,15.5\n564,78,15.0\n564,79,14.5\n564,80,14.0\n564,81,13.5\n564,82,13.0\n564,83,12.5\n564,84,12.0\n564,85,11.5\n564,86,11.0\n564,87,10.5\n564,88,10.0\n564,89,9.5\n564,90,10.0\n564,91,10.5\n564,92,11.0\n564,93,11.5\n564,94,12.0\n564,95,12.5\n564,96,13.0\n564,97,13.5\n564,98,14.0\n564,99,14.5\n564,100,16.0\n564,101,15.5\n564,102,15.0\n564,103,14.5\n564,104,14.0\n564,105,13.5\n564,106,13.0\n564,107,12.5\n564,108,12.0\n564,109,11.5\n564,110,11.0\n564,111,10.5\n564,112,10.0\n564,113,9.5\n564,114,9.0\n564,115,9.5\n564,116,10.0\n564,117,10.5\n564,118,11.0\n564,119,11.5\n564,120,12.0\n564,121,12.5\n564,122,13.0\n564,123,13.5\n564,124,14.0\n564,125,15.5\n564,126,15.0\n564,127,14.5\n564,128,14.0\n564,129,13.5\n564,130,13.0\n564,131,12.5\n564,132,12.0\n564,133,11.5\n564,134,11.0\n564,135,10.5\n564,136,10.0\n564,137,9.5\n564,138,9.0\n564,139,8.5\n564,140,9.0\n564,141,9.5\n564,142,10.0\n564,143,10.5\n564,144,11.0\n564,145,11.5\n564,146,12.0\n564,147,12.5\n564,148,13.0\n564,149,13.5\n564,150,15.0\n564,151,14.5\n564,152,14.0\n564,153,13.5\n564,154,13.0\n564,155,12.5\n564,156,12.0\n564,157,11.5\n564,158,11.0\n564,159,10.5\n564,160,10.0\n564,161,9.5\n564,162,9.0\n564,163,8.5\n564,164,8.0\n564,165,8.5\n564,166,9.0\n564,167,9.5\n564,168,10.0\n564,169,10.5\n564,170,11.0\n564,171,11.5\n564,172,12.0\n564,173,12.5\n564,174,13.0\n564,175,14.5\n564,176,14.0\n564,177,13.5\n564,178,13.0\n564,179,12.5\n564,180,12.0\n564,181,11.5\n564,182,11.0\n564,183,10.5\n564,184,10.0\n564,185,9.5\n564,186,9.0\n564,187,8.5\n564,188,8.0\n564,189,7.5\n564,190,8.0\n564,191,8.5\n564,192,9.0\n564,193,9.5\n564,194,10.0\n564,195,10.5\n564,196,11.0\n564,197,11.5\n564,198,12.0\n564,199,12.5\n564,200,14.0\n564,201,13.5\n564,202,13.0\n564,203,12.5\n564,204,12.0\n564,205,11.5\n564,206,11.0\n564,207,10.5\n564,208,10.0\n564,209,9.5\n564,210,9.0\n564,211,8.5\n564,212,8.0\n564,213,7.5\n564,214,7.0\n564,215,7.5\n564,216,8.0\n564,217,8.5\n564,218,9.0\n564,219,9.5\n564,220,10.0\n564,221,10.5\n564,222,11.0\n564,223,11.5\n564,224,12.0\n564,225,13.5\n564,226,13.0\n564,227,12.5\n564,228,12.0\n564,229,11.5\n564,230,11.0\n564,231,10.5\n564,232,10.0\n564,233,9.5\n564,234,9.0\n564,235,8.5\n564,236,8.0\n564,237,7.5\n564,238,7.0\n564,239,6.5\n564,240,7.0\n564,241,7.5\n564,242,8.0\n564,243,8.5\n564,244,9.0\n564,245,9.5\n564,246,10.0\n564,247,10.5\n564,248,11.0\n564,249,11.5\n564,250,13.0\n564,251,12.5\n564,252,12.0\n564,253,11.5\n564,254,11.0\n564,255,10.5\n564,256,10.0\n564,257,9.5\n564,258,9.0\n564,259,8.5\n564,260,8.0\n564,261,7.5\n564,262,7.0\n564,263,6.5\n564,264,6.0\n564,265,6.5\n564,266,7.0\n564,267,7.5\n564,268,8.0\n564,269,8.5\n564,270,9.0\n564,271,9.5\n564,272,10.0\n564,273,10.5\n564,274,11.0\n564,275,12.5\n564,276,12.0\n564,277,11.5\n564,278,11.0\n564,279,10.5\n564,280,10.0\n564,281,9.5\n564,282,9.0\n564,283,8.5\n564,284,8.0\n564,285,7.5\n564,286,7.0\n564,287,6.5\n564,288,6.0\n564,289,5.5\n564,290,6.0\n564,291,6.5\n564,292,7.0\n564,293,7.5\n564,294,8.0\n564,295,8.5\n564,296,9.0\n564,297,9.5\n564,298,10.0\n564,299,10.5\n564,300,12.0\n564,301,11.5\n564,302,11.0\n564,303,10.5\n564,304,10.0\n564,305,9.5\n564,306,9.0\n564,307,8.5\n564,308,8.0\n564,309,7.5\n564,310,7.0\n564,311,6.5\n564,312,6.0\n564,313,5.5\n564,314,5.0\n564,315,5.5\n564,316,6.0\n564,317,6.5\n564,318,7.0\n564,319,7.5\n564,320,8.0\n564,321,8.5\n564,322,9.0\n564,323,9.5\n564,324,10.0\n564,325,11.5\n564,326,11.0\n564,327,10.5\n564,328,10.0\n564,329,9.5\n564,330,9.0\n564,331,8.5\n564,332,8.0\n564,333,7.5\n564,334,7.0\n564,335,6.5\n564,336,6.0\n564,337,5.5\n564,338,5.0\n564,339,4.5\n564,340,5.0\n564,341,5.5\n564,342,6.0\n564,343,6.5\n564,344,7.0\n564,345,7.5\n564,346,8.0\n564,347,8.5\n564,348,9.0\n564,349,9.5\n564,350,11.0\n564,351,10.5\n564,352,10.0\n564,353,9.5\n564,354,9.0\n564,355,8.5\n564,356,8.0\n564,357,7.5\n564,358,7.0\n564,359,6.5\n564,360,6.0\n564,361,5.5\n564,362,5.0\n564,363,4.5\n564,364,4.0\n564,365,4.5\n564,366,5.0\n564,367,5.5\n564,368,6.0\n564,369,6.5\n564,370,7.0\n564,371,7.5\n564,372,8.0\n564,373,8.5\n564,374,9.0\n564,375,10.5\n564,376,10.0\n564,377,9.5\n564,378,9.0\n564,379,8.5\n564,380,8.0\n564,381,7.5\n564,382,7.0\n564,383,6.5\n564,384,6.0\n564,385,5.5\n564,386,5.0\n564,387,4.5\n564,388,4.0\n564,389,3.5\n564,390,4.0\n564,391,4.5\n564,392,5.0\n564,393,5.5\n564,394,6.0\n564,395,6.5\n564,396,7.0\n564,397,7.5\n564,398,8.0\n564,399,8.5\n564,400,10.0\n564,401,9.5\n564,402,9.0\n564,403,8.5\n564,404,8.0\n564,405,7.5\n564,406,7.0\n564,407,6.5\n564,408,6.0\n564,409,5.5\n564,410,5.0\n564,411,4.5\n564,412,4.0\n564,413,3.5\n564,414,3.0\n564,415,3.5\n564,416,4.0\n564,417,4.5\n564,418,5.0\n564,419,5.5\n564,420,6.0\n564,421,6.5\n564,422,7.0\n564,423,7.5\n564,424,8.0\n564,425,9.5\n564,426,9.0\n564,427,8.5\n564,428,8.0\n564,429,7.5\n564,430,7.0\n564,431,6.5\n564,432,6.0\n564,433,5.5\n564,434,5.0\n564,435,4.5\n564,436,4.0\n564,437,3.5\n564,438,3.0\n564,439,2.5\n564,440,3.0\n564,441,3.5\n564,442,4.0\n564,443,4.5\n564,444,5.0\n564,445,5.5\n564,446,6.0\n564,447,6.5\n564,448,7.0\n564,449,7.5\n564,450,9.0\n564,451,8.5\n564,452,8.0\n564,453,7.5\n564,454,7.0\n564,455,6.5\n564,456,6.0\n564,457,5.5\n564,458,5.0\n564,459,4.5\n564,460,4.0\n564,461,3.5\n564,462,3.0\n564,463,2.5\n564,464,2.0\n564,465,2.5\n564,466,3.0\n564,467,3.5\n564,468,4.0\n564,469,4.5\n564,470,5.0\n564,471,5.5\n564,472,6.0\n564,473,6.5\n564,474,7.0\n564,475,8.5\n564,476,8.0\n564,477,7.5\n564,478,7.0\n564,479,6.5\n564,480,6.0\n564,481,5.5\n564,482,5.0\n564,483,4.5\n564,484,4.0\n564,485,3.5\n564,486,3.0\n564,487,2.5\n564,488,2.0\n564,489,1.5\n564,490,2.0\n564,491,2.5\n564,492,3.0\n564,493,3.5\n564,494,4.0\n564,495,4.5\n564,496,5.0\n564,497,5.5\n564,498,6.0\n564,499,6.5\n564,500,8.0\n564,501,7.5\n564,502,7.0\n564,503,6.5\n564,504,6.0\n564,505,5.5\n564,506,5.0\n564,507,4.5\n564,508,4.0\n564,509,3.5\n564,510,3.0\n564,511,2.5\n564,512,2.0\n564,513,1.5\n564,514,1.0\n564,515,1.5\n564,516,2.0\n564,517,2.5\n564,518,3.0\n564,519,3.5\n564,520,4.0\n564,521,4.5\n564,522,5.0\n564,523,5.5\n564,524,6.0\n564,525,7.5\n564,526,7.0\n564,527,6.5\n564,528,6.0\n564,529,5.5\n564,530,5.0\n564,531,4.5\n564,532,4.0\n564,533,3.5\n564,534,3.0\n564,535,2.5\n564,536,2.0\n564,537,1.5\n564,538,1.0\n564,539,0.5\n564,540,1.0\n564,541,1.5\n564,542,2.0\n564,543,2.5\n564,544,3.0\n564,545,3.5\n564,546,4.0\n564,547,4.5\n564,548,5.0\n564,549,5.5\n564,550,7.0\n564,551,6.5\n564,552,6.0\n564,553,5.5\n564,554,5.0\n564,555,4.5\n564,556,4.0\n564,557,3.5\n564,558,3.0\n564,559,2.5\n564,560,2.0\n564,561,1.5\n564,562,1.0\n564,563,0.5\n564,564,0\n564,565,0.5\n564,566,1.0\n564,567,1.5\n564,568,2.0\n564,569,2.5\n564,570,3.0\n564,571,3.5\n564,572,4.0\n564,573,4.5\n564,574,5.0\n564,575,7.5\n564,576,7.0\n564,577,6.5\n564,578,6.0\n564,579,5.5\n564,580,5.0\n564,581,4.5\n564,582,4.0\n564,583,3.5\n564,584,3.0\n564,585,2.5\n564,586,2.0\n564,587,1.5\n564,588,1.0\n564,589,0.5\n564,590,1.0\n564,591,1.5\n564,592,2.0\n564,593,2.5\n564,594,3.0\n564,595,3.5\n564,596,4.0\n564,597,4.5\n564,598,5.0\n564,599,5.5\n564,600,8.0\n564,601,7.5\n564,602,7.0\n564,603,6.5\n564,604,6.0\n564,605,5.5\n564,606,5.0\n564,607,4.5\n564,608,4.0\n564,609,3.5\n564,610,3.0\n564,611,2.5\n564,612,2.0\n564,613,1.5\n564,614,1.0\n564,615,1.5\n564,616,2.0\n564,617,2.5\n564,618,3.0\n564,619,3.5\n564,620,4.0\n564,621,4.5\n564,622,5.0\n564,623,5.5\n564,624,6.0\n565,0,18.5\n565,1,18.0\n565,2,17.5\n565,3,17.0\n565,4,16.5\n565,5,16.0\n565,6,15.5\n565,7,15.0\n565,8,14.5\n565,9,14.0\n565,10,13.5\n565,11,13.0\n565,12,12.5\n565,13,12.0\n565,14,11.5\n565,15,11.0\n565,16,11.5\n565,17,12.0\n565,18,12.5\n565,19,13.0\n565,20,13.5\n565,21,14.0\n565,22,14.5\n565,23,15.0\n565,24,15.5\n565,25,18.0\n565,26,17.5\n565,27,17.0\n565,28,16.5\n565,29,16.0\n565,30,15.5\n565,31,15.0\n565,32,14.5\n565,33,14.0\n565,34,13.5\n565,35,13.0\n565,36,12.5\n565,37,12.0\n565,38,11.5\n565,39,11.0\n565,40,10.5\n565,41,11.0\n565,42,11.5\n565,43,12.0\n565,44,12.5\n565,45,13.0\n565,46,13.5\n565,47,14.0\n565,48,14.5\n565,49,15.0\n565,50,17.5\n565,51,17.0\n565,52,16.5\n565,53,16.0\n565,54,15.5\n565,55,15.0\n565,56,14.5\n565,57,14.0\n565,58,13.5\n565,59,13.0\n565,60,12.5\n565,61,12.0\n565,62,11.5\n565,63,11.0\n565,64,10.5\n565,65,10.0\n565,66,10.5\n565,67,11.0\n565,68,11.5\n565,69,12.0\n565,70,12.5\n565,71,13.0\n565,72,13.5\n565,73,14.0\n565,74,14.5\n565,75,17.0\n565,76,16.5\n565,77,16.0\n565,78,15.5\n565,79,15.0\n565,80,14.5\n565,81,14.0\n565,82,13.5\n565,83,13.0\n565,84,12.5\n565,85,12.0\n565,86,11.5\n565,87,11.0\n565,88,10.5\n565,89,10.0\n565,90,9.5\n565,91,10.0\n565,92,10.5\n565,93,11.0\n565,94,11.5\n565,95,12.0\n565,96,12.5\n565,97,13.0\n565,98,13.5\n565,99,14.0\n565,100,16.5\n565,101,16.0\n565,102,15.5\n565,103,15.0\n565,104,14.5\n565,105,14.0\n565,106,13.5\n565,107,13.0\n565,108,12.5\n565,109,12.0\n565,110,11.5\n565,111,11.0\n565,112,10.5\n565,113,10.0\n565,114,9.5\n565,115,9.0\n565,116,9.5\n565,117,10.0\n565,118,10.5\n565,119,11.0\n565,120,11.5\n565,121,12.0\n565,122,12.5\n565,123,13.0\n565,124,13.5\n565,125,16.0\n565,126,15.5\n565,127,15.0\n565,128,14.5\n565,129,14.0\n565,130,13.5\n565,131,13.0\n565,132,12.5\n565,133,12.0\n565,134,11.5\n565,135,11.0\n565,136,10.5\n565,137,10.0\n565,138,9.5\n565,139,9.0\n565,140,8.5\n565,141,9.0\n565,142,9.5\n565,143,10.0\n565,144,10.5\n565,145,11.0\n565,146,11.5\n565,147,12.0\n565,148,12.5\n565,149,13.0\n565,150,15.5\n565,151,15.0\n565,152,14.5\n565,153,14.0\n565,154,13.5\n565,155,13.0\n565,156,12.5\n565,157,12.0\n565,158,11.5\n565,159,11.0\n565,160,10.5\n565,161,10.0\n565,162,9.5\n565,163,9.0\n565,164,8.5\n565,165,8.0\n565,166,8.5\n565,167,9.0\n565,168,9.5\n565,169,10.0\n565,170,10.5\n565,171,11.0\n565,172,11.5\n565,173,12.0\n565,174,12.5\n565,175,15.0\n565,176,14.5\n565,177,14.0\n565,178,13.5\n565,179,13.0\n565,180,12.5\n565,181,12.0\n565,182,11.5\n565,183,11.0\n565,184,10.5\n565,185,10.0\n565,186,9.5\n565,187,9.0\n565,188,8.5\n565,189,8.0\n565,190,7.5\n565,191,8.0\n565,192,8.5\n565,193,9.0\n565,194,9.5\n565,195,10.0\n565,196,10.5\n565,197,11.0\n565,198,11.5\n565,199,12.0\n565,200,14.5\n565,201,14.0\n565,202,13.5\n565,203,13.0\n565,204,12.5\n565,205,12.0\n565,206,11.5\n565,207,11.0\n565,208,10.5\n565,209,10.0\n565,210,9.5\n565,211,9.0\n565,212,8.5\n565,213,8.0\n565,214,7.5\n565,215,7.0\n565,216,7.5\n565,217,8.0\n565,218,8.5\n565,219,9.0\n565,220,9.5\n565,221,10.0\n565,222,10.5\n565,223,11.0\n565,224,11.5\n565,225,14.0\n565,226,13.5\n565,227,13.0\n565,228,12.5\n565,229,12.0\n565,230,11.5\n565,231,11.0\n565,232,10.5\n565,233,10.0\n565,234,9.5\n565,235,9.0\n565,236,8.5\n565,237,8.0\n565,238,7.5\n565,239,7.0\n565,240,6.5\n565,241,7.0\n565,242,7.5\n565,243,8.0\n565,244,8.5\n565,245,9.0\n565,246,9.5\n565,247,10.0\n565,248,10.5\n565,249,11.0\n565,250,13.5\n565,251,13.0\n565,252,12.5\n565,253,12.0\n565,254,11.5\n565,255,11.0\n565,256,10.5\n565,257,10.0\n565,258,9.5\n565,259,9.0\n565,260,8.5\n565,261,8.0\n565,262,7.5\n565,263,7.0\n565,264,6.5\n565,265,6.0\n565,266,6.5\n565,267,7.0\n565,268,7.5\n565,269,8.0\n565,270,8.5\n565,271,9.0\n565,272,9.5\n565,273,10.0\n565,274,10.5\n565,275,13.0\n565,276,12.5\n565,277,12.0\n565,278,11.5\n565,279,11.0\n565,280,10.5\n565,281,10.0\n565,282,9.5\n565,283,9.0\n565,284,8.5\n565,285,8.0\n565,286,7.5\n565,287,7.0\n565,288,6.5\n565,289,6.0\n565,290,5.5\n565,291,6.0\n565,292,6.5\n565,293,7.0\n565,294,7.5\n565,295,8.0\n565,296,8.5\n565,297,9.0\n565,298,9.5\n565,299,10.0\n565,300,12.5\n565,301,12.0\n565,302,11.5\n565,303,11.0\n565,304,10.5\n565,305,10.0\n565,306,9.5\n565,307,9.0\n565,308,8.5\n565,309,8.0\n565,310,7.5\n565,311,7.0\n565,312,6.5\n565,313,6.0\n565,314,5.5\n565,315,5.0\n565,316,5.5\n565,317,6.0\n565,318,6.5\n565,319,7.0\n565,320,7.5\n565,321,8.0\n565,322,8.5\n565,323,9.0\n565,324,9.5\n565,325,12.0\n565,326,11.5\n565,327,11.0\n565,328,10.5\n565,329,10.0\n565,330,9.5\n565,331,9.0\n565,332,8.5\n565,333,8.0\n565,334,7.5\n565,335,7.0\n565,336,6.5\n565,337,6.0\n565,338,5.5\n565,339,5.0\n565,340,4.5\n565,341,5.0\n565,342,5.5\n565,343,6.0\n565,344,6.5\n565,345,7.0\n565,346,7.5\n565,347,8.0\n565,348,8.5\n565,349,9.0\n565,350,11.5\n565,351,11.0\n565,352,10.5\n565,353,10.0\n565,354,9.5\n565,355,9.0\n565,356,8.5\n565,357,8.0\n565,358,7.5\n565,359,7.0\n565,360,6.5\n565,361,6.0\n565,362,5.5\n565,363,5.0\n565,364,4.5\n565,365,4.0\n565,366,4.5\n565,367,5.0\n565,368,5.5\n565,369,6.0\n565,370,6.5\n565,371,7.0\n565,372,7.5\n565,373,8.0\n565,374,8.5\n565,375,11.0\n565,376,10.5\n565,377,10.0\n565,378,9.5\n565,379,9.0\n565,380,8.5\n565,381,8.0\n565,382,7.5\n565,383,7.0\n565,384,6.5\n565,385,6.0\n565,386,5.5\n565,387,5.0\n565,388,4.5\n565,389,4.0\n565,390,3.5\n565,391,4.0\n565,392,4.5\n565,393,5.0\n565,394,5.5\n565,395,6.0\n565,396,6.5\n565,397,7.0\n565,398,7.5\n565,399,8.0\n565,400,10.5\n565,401,10.0\n565,402,9.5\n565,403,9.0\n565,404,8.5\n565,405,8.0\n565,406,7.5\n565,407,7.0\n565,408,6.5\n565,409,6.0\n565,410,5.5\n565,411,5.0\n565,412,4.5\n565,413,4.0\n565,414,3.5\n565,415,3.0\n565,416,3.5\n565,417,4.0\n565,418,4.5\n565,419,5.0\n565,420,5.5\n565,421,6.0\n565,422,6.5\n565,423,7.0\n565,424,7.5\n565,425,10.0\n565,426,9.5\n565,427,9.0\n565,428,8.5\n565,429,8.0\n565,430,7.5\n565,431,7.0\n565,432,6.5\n565,433,6.0\n565,434,5.5\n565,435,5.0\n565,436,4.5\n565,437,4.0\n565,438,3.5\n565,439,3.0\n565,440,2.5\n565,441,3.0\n565,442,3.5\n565,443,4.0\n565,444,4.5\n565,445,5.0\n565,446,5.5\n565,447,6.0\n565,448,6.5\n565,449,7.0\n565,450,9.5\n565,451,9.0\n565,452,8.5\n565,453,8.0\n565,454,7.5\n565,455,7.0\n565,456,6.5\n565,457,6.0\n565,458,5.5\n565,459,5.0\n565,460,4.5\n565,461,4.0\n565,462,3.5\n565,463,3.0\n565,464,2.5\n565,465,2.0\n565,466,2.5\n565,467,3.0\n565,468,3.5\n565,469,4.0\n565,470,4.5\n565,471,5.0\n565,472,5.5\n565,473,6.0\n565,474,6.5\n565,475,9.0\n565,476,8.5\n565,477,8.0\n565,478,7.5\n565,479,7.0\n565,480,6.5\n565,481,6.0\n565,482,5.5\n565,483,5.0\n565,484,4.5\n565,485,4.0\n565,486,3.5\n565,487,3.0\n565,488,2.5\n565,489,2.0\n565,490,1.5\n565,491,2.0\n565,492,2.5\n565,493,3.0\n565,494,3.5\n565,495,4.0\n565,496,4.5\n565,497,5.0\n565,498,5.5\n565,499,6.0\n565,500,8.5\n565,501,8.0\n565,502,7.5\n565,503,7.0\n565,504,6.5\n565,505,6.0\n565,506,5.5\n565,507,5.0\n565,508,4.5\n565,509,4.0\n565,510,3.5\n565,511,3.0\n565,512,2.5\n565,513,2.0\n565,514,1.5\n565,515,1.0\n565,516,1.5\n565,517,2.0\n565,518,2.5\n565,519,3.0\n565,520,3.5\n565,521,4.0\n565,522,4.5\n565,523,5.0\n565,524,5.5\n565,525,8.0\n565,526,7.5\n565,527,7.0\n565,528,6.5\n565,529,6.0\n565,530,5.5\n565,531,5.0\n565,532,4.5\n565,533,4.0\n565,534,3.5\n565,535,3.0\n565,536,2.5\n565,537,2.0\n565,538,1.5\n565,539,1.0\n565,540,0.5\n565,541,1.0\n565,542,1.5\n565,543,2.0\n565,544,2.5\n565,545,3.0\n565,546,3.5\n565,547,4.0\n565,548,4.5\n565,549,5.0\n565,550,7.5\n565,551,7.0\n565,552,6.5\n565,553,6.0\n565,554,5.5\n565,555,5.0\n565,556,4.5\n565,557,4.0\n565,558,3.5\n565,559,3.0\n565,560,2.5\n565,561,2.0\n565,562,1.5\n565,563,1.0\n565,564,0.5\n565,565,0\n565,566,0.5\n565,567,1.0\n565,568,1.5\n565,569,2.0\n565,570,2.5\n565,571,3.0\n565,572,3.5\n565,573,4.0\n565,574,4.5\n565,575,8.0\n565,576,7.5\n565,577,7.0\n565,578,6.5\n565,579,6.0\n565,580,5.5\n565,581,5.0\n565,582,4.5\n565,583,4.0\n565,584,3.5\n565,585,3.0\n565,586,2.5\n565,587,2.0\n565,588,1.5\n565,589,1.0\n565,590,0.5\n565,591,1.0\n565,592,1.5\n565,593,2.0\n565,594,2.5\n565,595,3.0\n565,596,3.5\n565,597,4.0\n565,598,4.5\n565,599,5.0\n565,600,8.5\n565,601,8.0\n565,602,7.5\n565,603,7.0\n565,604,6.5\n565,605,6.0\n565,606,5.5\n565,607,5.0\n565,608,4.5\n565,609,4.0\n565,610,3.5\n565,611,3.0\n565,612,2.5\n565,613,2.0\n565,614,1.5\n565,615,1.0\n565,616,1.5\n565,617,2.0\n565,618,2.5\n565,619,3.0\n565,620,3.5\n565,621,4.0\n565,622,4.5\n565,623,5.0\n565,624,5.5\n566,0,19.0\n566,1,18.5\n566,2,18.0\n566,3,17.5\n566,4,17.0\n566,5,16.5\n566,6,16.0\n566,7,15.5\n566,8,15.0\n566,9,14.5\n566,10,14.0\n566,11,13.5\n566,12,13.0\n566,13,12.5\n566,14,12.0\n566,15,11.5\n566,16,11.0\n566,17,11.5\n566,18,12.0\n566,19,12.5\n566,20,13.0\n566,21,13.5\n566,22,14.0\n566,23,14.5\n566,24,15.0\n566,25,18.5\n566,26,18.0\n566,27,17.5\n566,28,17.0\n566,29,16.5\n566,30,16.0\n566,31,15.5\n566,32,15.0\n566,33,14.5\n566,34,14.0\n566,35,13.5\n566,36,13.0\n566,37,12.5\n566,38,12.0\n566,39,11.5\n566,40,11.0\n566,41,10.5\n566,42,11.0\n566,43,11.5\n566,44,12.0\n566,45,12.5\n566,46,13.0\n566,47,13.5\n566,48,14.0\n566,49,14.5\n566,50,18.0\n566,51,17.5\n566,52,17.0\n566,53,16.5\n566,54,16.0\n566,55,15.5\n566,56,15.0\n566,57,14.5\n566,58,14.0\n566,59,13.5\n566,60,13.0\n566,61,12.5\n566,62,12.0\n566,63,11.5\n566,64,11.0\n566,65,10.5\n566,66,10.0\n566,67,10.5\n566,68,11.0\n566,69,11.5\n566,70,12.0\n566,71,12.5\n566,72,13.0\n566,73,13.5\n566,74,14.0\n566,75,17.5\n566,76,17.0\n566,77,16.5\n566,78,16.0\n566,79,15.5\n566,80,15.0\n566,81,14.5\n566,82,14.0\n566,83,13.5\n566,84,13.0\n566,85,12.5\n566,86,12.0\n566,87,11.5\n566,88,11.0\n566,89,10.5\n566,90,10.0\n566,91,9.5\n566,92,10.0\n566,93,10.5\n566,94,11.0\n566,95,11.5\n566,96,12.0\n566,97,12.5\n566,98,13.0\n566,99,13.5\n566,100,17.0\n566,101,16.5\n566,102,16.0\n566,103,15.5\n566,104,15.0\n566,105,14.5\n566,106,14.0\n566,107,13.5\n566,108,13.0\n566,109,12.5\n566,110,12.0\n566,111,11.5\n566,112,11.0\n566,113,10.5\n566,114,10.0\n566,115,9.5\n566,116,9.0\n566,117,9.5\n566,118,10.0\n566,119,10.5\n566,120,11.0\n566,121,11.5\n566,122,12.0\n566,123,12.5\n566,124,13.0\n566,125,16.5\n566,126,16.0\n566,127,15.5\n566,128,15.0\n566,129,14.5\n566,130,14.0\n566,131,13.5\n566,132,13.0\n566,133,12.5\n566,134,12.0\n566,135,11.5\n566,136,11.0\n566,137,10.5\n566,138,10.0\n566,139,9.5\n566,140,9.0\n566,141,8.5\n566,142,9.0\n566,143,9.5\n566,144,10.0\n566,145,10.5\n566,146,11.0\n566,147,11.5\n566,148,12.0\n566,149,12.5\n566,150,16.0\n566,151,15.5\n566,152,15.0\n566,153,14.5\n566,154,14.0\n566,155,13.5\n566,156,13.0\n566,157,12.5\n566,158,12.0\n566,159,11.5\n566,160,11.0\n566,161,10.5\n566,162,10.0\n566,163,9.5\n566,164,9.0\n566,165,8.5\n566,166,8.0\n566,167,8.5\n566,168,9.0\n566,169,9.5\n566,170,10.0\n566,171,10.5\n566,172,11.0\n566,173,11.5\n566,174,12.0\n566,175,15.5\n566,176,15.0\n566,177,14.5\n566,178,14.0\n566,179,13.5\n566,180,13.0\n566,181,12.5\n566,182,12.0\n566,183,11.5\n566,184,11.0\n566,185,10.5\n566,186,10.0\n566,187,9.5\n566,188,9.0\n566,189,8.5\n566,190,8.0\n566,191,7.5\n566,192,8.0\n566,193,8.5\n566,194,9.0\n566,195,9.5\n566,196,10.0\n566,197,10.5\n566,198,11.0\n566,199,11.5\n566,200,15.0\n566,201,14.5\n566,202,14.0\n566,203,13.5\n566,204,13.0\n566,205,12.5\n566,206,12.0\n566,207,11.5\n566,208,11.0\n566,209,10.5\n566,210,10.0\n566,211,9.5\n566,212,9.0\n566,213,8.5\n566,214,8.0\n566,215,7.5\n566,216,7.0\n566,217,7.5\n566,218,8.0\n566,219,8.5\n566,220,9.0\n566,221,9.5\n566,222,10.0\n566,223,10.5\n566,224,11.0\n566,225,14.5\n566,226,14.0\n566,227,13.5\n566,228,13.0\n566,229,12.5\n566,230,12.0\n566,231,11.5\n566,232,11.0\n566,233,10.5\n566,234,10.0\n566,235,9.5\n566,236,9.0\n566,237,8.5\n566,238,8.0\n566,239,7.5\n566,240,7.0\n566,241,6.5\n566,242,7.0\n566,243,7.5\n566,244,8.0\n566,245,8.5\n566,246,9.0\n566,247,9.5\n566,248,10.0\n566,249,10.5\n566,250,14.0\n566,251,13.5\n566,252,13.0\n566,253,12.5\n566,254,12.0\n566,255,11.5\n566,256,11.0\n566,257,10.5\n566,258,10.0\n566,259,9.5\n566,260,9.0\n566,261,8.5\n566,262,8.0\n566,263,7.5\n566,264,7.0\n566,265,6.5\n566,266,6.0\n566,267,6.5\n566,268,7.0\n566,269,7.5\n566,270,8.0\n566,271,8.5\n566,272,9.0\n566,273,9.5\n566,274,10.0\n566,275,13.5\n566,276,13.0\n566,277,12.5\n566,278,12.0\n566,279,11.5\n566,280,11.0\n566,281,10.5\n566,282,10.0\n566,283,9.5\n566,284,9.0\n566,285,8.5\n566,286,8.0\n566,287,7.5\n566,288,7.0\n566,289,6.5\n566,290,6.0\n566,291,5.5\n566,292,6.0\n566,293,6.5\n566,294,7.0\n566,295,7.5\n566,296,8.0\n566,297,8.5\n566,298,9.0\n566,299,9.5\n566,300,13.0\n566,301,12.5\n566,302,12.0\n566,303,11.5\n566,304,11.0\n566,305,10.5\n566,306,10.0\n566,307,9.5\n566,308,9.0\n566,309,8.5\n566,310,8.0\n566,311,7.5\n566,312,7.0\n566,313,6.5\n566,314,6.0\n566,315,5.5\n566,316,5.0\n566,317,5.5\n566,318,6.0\n566,319,6.5\n566,320,7.0\n566,321,7.5\n566,322,8.0\n566,323,8.5\n566,324,9.0\n566,325,12.5\n566,326,12.0\n566,327,11.5\n566,328,11.0\n566,329,10.5\n566,330,10.0\n566,331,9.5\n566,332,9.0\n566,333,8.5\n566,334,8.0\n566,335,7.5\n566,336,7.0\n566,337,6.5\n566,338,6.0\n566,339,5.5\n566,340,5.0\n566,341,4.5\n566,342,5.0\n566,343,5.5\n566,344,6.0\n566,345,6.5\n566,346,7.0\n566,347,7.5\n566,348,8.0\n566,349,8.5\n566,350,12.0\n566,351,11.5\n566,352,11.0\n566,353,10.5\n566,354,10.0\n566,355,9.5\n566,356,9.0\n566,357,8.5\n566,358,8.0\n566,359,7.5\n566,360,7.0\n566,361,6.5\n566,362,6.0\n566,363,5.5\n566,364,5.0\n566,365,4.5\n566,366,4.0\n566,367,4.5\n566,368,5.0\n566,369,5.5\n566,370,6.0\n566,371,6.5\n566,372,7.0\n566,373,7.5\n566,374,8.0\n566,375,11.5\n566,376,11.0\n566,377,10.5\n566,378,10.0\n566,379,9.5\n566,380,9.0\n566,381,8.5\n566,382,8.0\n566,383,7.5\n566,384,7.0\n566,385,6.5\n566,386,6.0\n566,387,5.5\n566,388,5.0\n566,389,4.5\n566,390,4.0\n566,391,3.5\n566,392,4.0\n566,393,4.5\n566,394,5.0\n566,395,5.5\n566,396,6.0\n566,397,6.5\n566,398,7.0\n566,399,7.5\n566,400,11.0\n566,401,10.5\n566,402,10.0\n566,403,9.5\n566,404,9.0\n566,405,8.5\n566,406,8.0\n566,407,7.5\n566,408,7.0\n566,409,6.5\n566,410,6.0\n566,411,5.5\n566,412,5.0\n566,413,4.5\n566,414,4.0\n566,415,3.5\n566,416,3.0\n566,417,3.5\n566,418,4.0\n566,419,4.5\n566,420,5.0\n566,421,5.5\n566,422,6.0\n566,423,6.5\n566,424,7.0\n566,425,10.5\n566,426,10.0\n566,427,9.5\n566,428,9.0\n566,429,8.5\n566,430,8.0\n566,431,7.5\n566,432,7.0\n566,433,6.5\n566,434,6.0\n566,435,5.5\n566,436,5.0\n566,437,4.5\n566,438,4.0\n566,439,3.5\n566,440,3.0\n566,441,2.5\n566,442,3.0\n566,443,3.5\n566,444,4.0\n566,445,4.5\n566,446,5.0\n566,447,5.5\n566,448,6.0\n566,449,6.5\n566,450,10.0\n566,451,9.5\n566,452,9.0\n566,453,8.5\n566,454,8.0\n566,455,7.5\n566,456,7.0\n566,457,6.5\n566,458,6.0\n566,459,5.5\n566,460,5.0\n566,461,4.5\n566,462,4.0\n566,463,3.5\n566,464,3.0\n566,465,2.5\n566,466,2.0\n566,467,2.5\n566,468,3.0\n566,469,3.5\n566,470,4.0\n566,471,4.5\n566,472,5.0\n566,473,5.5\n566,474,6.0\n566,475,9.5\n566,476,9.0\n566,477,8.5\n566,478,8.0\n566,479,7.5\n566,480,7.0\n566,481,6.5\n566,482,6.0\n566,483,5.5\n566,484,5.0\n566,485,4.5\n566,486,4.0\n566,487,3.5\n566,488,3.0\n566,489,2.5\n566,490,2.0\n566,491,1.5\n566,492,2.0\n566,493,2.5\n566,494,3.0\n566,495,3.5\n566,496,4.0\n566,497,4.5\n566,498,5.0\n566,499,5.5\n566,500,9.0\n566,501,8.5\n566,502,8.0\n566,503,7.5\n566,504,7.0\n566,505,6.5\n566,506,6.0\n566,507,5.5\n566,508,5.0\n566,509,4.5\n566,510,4.0\n566,511,3.5\n566,512,3.0\n566,513,2.5\n566,514,2.0\n566,515,1.5\n566,516,1.0\n566,517,1.5\n566,518,2.0\n566,519,2.5\n566,520,3.0\n566,521,3.5\n566,522,4.0\n566,523,4.5\n566,524,5.0\n566,525,8.5\n566,526,8.0\n566,527,7.5\n566,528,7.0\n566,529,6.5\n566,530,6.0\n566,531,5.5\n566,532,5.0\n566,533,4.5\n566,534,4.0\n566,535,3.5\n566,536,3.0\n566,537,2.5\n566,538,2.0\n566,539,1.5\n566,540,1.0\n566,541,0.5\n566,542,1.0\n566,543,1.5\n566,544,2.0\n566,545,2.5\n566,546,3.0\n566,547,3.5\n566,548,4.0\n566,549,4.5\n566,550,8.0\n566,551,7.5\n566,552,7.0\n566,553,6.5\n566,554,6.0\n566,555,5.5\n566,556,5.0\n566,557,4.5\n566,558,4.0\n566,559,3.5\n566,560,3.0\n566,561,2.5\n566,562,2.0\n566,563,1.5\n566,564,1.0\n566,565,0.5\n566,566,0\n566,567,0.5\n566,568,1.0\n566,569,1.5\n566,570,2.0\n566,571,2.5\n566,572,3.0\n566,573,3.5\n566,574,4.0\n566,575,8.5\n566,576,8.0\n566,577,7.5\n566,578,7.0\n566,579,6.5\n566,580,6.0\n566,581,5.5\n566,582,5.0\n566,583,4.5\n566,584,4.0\n566,585,3.5\n566,586,3.0\n566,587,2.5\n566,588,2.0\n566,589,1.5\n566,590,1.0\n566,591,0.5\n566,592,1.0\n566,593,1.5\n566,594,2.0\n566,595,2.5\n566,596,3.0\n566,597,3.5\n566,598,4.0\n566,599,4.5\n566,600,9.0\n566,601,8.5\n566,602,8.0\n566,603,7.5\n566,604,7.0\n566,605,6.5\n566,606,6.0\n566,607,5.5\n566,608,5.0\n566,609,4.5\n566,610,4.0\n566,611,3.5\n566,612,3.0\n566,613,2.5\n566,614,2.0\n566,615,1.5\n566,616,1.0\n566,617,1.5\n566,618,2.0\n566,619,2.5\n566,620,3.0\n566,621,3.5\n566,622,4.0\n566,623,4.5\n566,624,5.0\n567,0,19.5\n567,1,19.0\n567,2,18.5\n567,3,18.0\n567,4,17.5\n567,5,17.0\n567,6,16.5\n567,7,16.0\n567,8,15.5\n567,9,15.0\n567,10,14.5\n567,11,14.0\n567,12,13.5\n567,13,13.0\n567,14,12.5\n567,15,12.0\n567,16,11.5\n567,17,11.0\n567,18,11.5\n567,19,12.0\n567,20,12.5\n567,21,13.0\n567,22,13.5\n567,23,14.0\n567,24,14.5\n567,25,19.0\n567,26,18.5\n567,27,18.0\n567,28,17.5\n567,29,17.0\n567,30,16.5\n567,31,16.0\n567,32,15.5\n567,33,15.0\n567,34,14.5\n567,35,14.0\n567,36,13.5\n567,37,13.0\n567,38,12.5\n567,39,12.0\n567,40,11.5\n567,41,11.0\n567,42,10.5\n567,43,11.0\n567,44,11.5\n567,45,12.0\n567,46,12.5\n567,47,13.0\n567,48,13.5\n567,49,14.0\n567,50,18.5\n567,51,18.0\n567,52,17.5\n567,53,17.0\n567,54,16.5\n567,55,16.0\n567,56,15.5\n567,57,15.0\n567,58,14.5\n567,59,14.0\n567,60,13.5\n567,61,13.0\n567,62,12.5\n567,63,12.0\n567,64,11.5\n567,65,11.0\n567,66,10.5\n567,67,10.0\n567,68,10.5\n567,69,11.0\n567,70,11.5\n567,71,12.0\n567,72,12.5\n567,73,13.0\n567,74,13.5\n567,75,18.0\n567,76,17.5\n567,77,17.0\n567,78,16.5\n567,79,16.0\n567,80,15.5\n567,81,15.0\n567,82,14.5\n567,83,14.0\n567,84,13.5\n567,85,13.0\n567,86,12.5\n567,87,12.0\n567,88,11.5\n567,89,11.0\n567,90,10.5\n567,91,10.0\n567,92,9.5\n567,93,10.0\n567,94,10.5\n567,95,11.0\n567,96,11.5\n567,97,12.0\n567,98,12.5\n567,99,13.0\n567,100,17.5\n567,101,17.0\n567,102,16.5\n567,103,16.0\n567,104,15.5\n567,105,15.0\n567,106,14.5\n567,107,14.0\n567,108,13.5\n567,109,13.0\n567,110,12.5\n567,111,12.0\n567,112,11.5\n567,113,11.0\n567,114,10.5\n567,115,10.0\n567,116,9.5\n567,117,9.0\n567,118,9.5\n567,119,10.0\n567,120,10.5\n567,121,11.0\n567,122,11.5\n567,123,12.0\n567,124,12.5\n567,125,17.0\n567,126,16.5\n567,127,16.0\n567,128,15.5\n567,129,15.0\n567,130,14.5\n567,131,14.0\n567,132,13.5\n567,133,13.0\n567,134,12.5\n567,135,12.0\n567,136,11.5\n567,137,11.0\n567,138,10.5\n567,139,10.0\n567,140,9.5\n567,141,9.0\n567,142,8.5\n567,143,9.0\n567,144,9.5\n567,145,10.0\n567,146,10.5\n567,147,11.0\n567,148,11.5\n567,149,12.0\n567,150,16.5\n567,151,16.0\n567,152,15.5\n567,153,15.0\n567,154,14.5\n567,155,14.0\n567,156,13.5\n567,157,13.0\n567,158,12.5\n567,159,12.0\n567,160,11.5\n567,161,11.0\n567,162,10.5\n567,163,10.0\n567,164,9.5\n567,165,9.0\n567,166,8.5\n567,167,8.0\n567,168,8.5\n567,169,9.0\n567,170,9.5\n567,171,10.0\n567,172,10.5\n567,173,11.0\n567,174,11.5\n567,175,16.0\n567,176,15.5\n567,177,15.0\n567,178,14.5\n567,179,14.0\n567,180,13.5\n567,181,13.0\n567,182,12.5\n567,183,12.0\n567,184,11.5\n567,185,11.0\n567,186,10.5\n567,187,10.0\n567,188,9.5\n567,189,9.0\n567,190,8.5\n567,191,8.0\n567,192,7.5\n567,193,8.0\n567,194,8.5\n567,195,9.0\n567,196,9.5\n567,197,10.0\n567,198,10.5\n567,199,11.0\n567,200,15.5\n567,201,15.0\n567,202,14.5\n567,203,14.0\n567,204,13.5\n567,205,13.0\n567,206,12.5\n567,207,12.0\n567,208,11.5\n567,209,11.0\n567,210,10.5\n567,211,10.0\n567,212,9.5\n567,213,9.0\n567,214,8.5\n567,215,8.0\n567,216,7.5\n567,217,7.0\n567,218,7.5\n567,219,8.0\n567,220,8.5\n567,221,9.0\n567,222,9.5\n567,223,10.0\n567,224,10.5\n567,225,15.0\n567,226,14.5\n567,227,14.0\n567,228,13.5\n567,229,13.0\n567,230,12.5\n567,231,12.0\n567,232,11.5\n567,233,11.0\n567,234,10.5\n567,235,10.0\n567,236,9.5\n567,237,9.0\n567,238,8.5\n567,239,8.0\n567,240,7.5\n567,241,7.0\n567,242,6.5\n567,243,7.0\n567,244,7.5\n567,245,8.0\n567,246,8.5\n567,247,9.0\n567,248,9.5\n567,249,10.0\n567,250,14.5\n567,251,14.0\n567,252,13.5\n567,253,13.0\n567,254,12.5\n567,255,12.0\n567,256,11.5\n567,257,11.0\n567,258,10.5\n567,259,10.0\n567,260,9.5\n567,261,9.0\n567,262,8.5\n567,263,8.0\n567,264,7.5\n567,265,7.0\n567,266,6.5\n567,267,6.0\n567,268,6.5\n567,269,7.0\n567,270,7.5\n567,271,8.0\n567,272,8.5\n567,273,9.0\n567,274,9.5\n567,275,14.0\n567,276,13.5\n567,277,13.0\n567,278,12.5\n567,279,12.0\n567,280,11.5\n567,281,11.0\n567,282,10.5\n567,283,10.0\n567,284,9.5\n567,285,9.0\n567,286,8.5\n567,287,8.0\n567,288,7.5\n567,289,7.0\n567,290,6.5\n567,291,6.0\n567,292,5.5\n567,293,6.0\n567,294,6.5\n567,295,7.0\n567,296,7.5\n567,297,8.0\n567,298,8.5\n567,299,9.0\n567,300,13.5\n567,301,13.0\n567,302,12.5\n567,303,12.0\n567,304,11.5\n567,305,11.0\n567,306,10.5\n567,307,10.0\n567,308,9.5\n567,309,9.0\n567,310,8.5\n567,311,8.0\n567,312,7.5\n567,313,7.0\n567,314,6.5\n567,315,6.0\n567,316,5.5\n567,317,5.0\n567,318,5.5\n567,319,6.0\n567,320,6.5\n567,321,7.0\n567,322,7.5\n567,323,8.0\n567,324,8.5\n567,325,13.0\n567,326,12.5\n567,327,12.0\n567,328,11.5\n567,329,11.0\n567,330,10.5\n567,331,10.0\n567,332,9.5\n567,333,9.0\n567,334,8.5\n567,335,8.0\n567,336,7.5\n567,337,7.0\n567,338,6.5\n567,339,6.0\n567,340,5.5\n567,341,5.0\n567,342,4.5\n567,343,5.0\n567,344,5.5\n567,345,6.0\n567,346,6.5\n567,347,7.0\n567,348,7.5\n567,349,8.0\n567,350,12.5\n567,351,12.0\n567,352,11.5\n567,353,11.0\n567,354,10.5\n567,355,10.0\n567,356,9.5\n567,357,9.0\n567,358,8.5\n567,359,8.0\n567,360,7.5\n567,361,7.0\n567,362,6.5\n567,363,6.0\n567,364,5.5\n567,365,5.0\n567,366,4.5\n567,367,4.0\n567,368,4.5\n567,369,5.0\n567,370,5.5\n567,371,6.0\n567,372,6.5\n567,373,7.0\n567,374,7.5\n567,375,12.0\n567,376,11.5\n567,377,11.0\n567,378,10.5\n567,379,10.0\n567,380,9.5\n567,381,9.0\n567,382,8.5\n567,383,8.0\n567,384,7.5\n567,385,7.0\n567,386,6.5\n567,387,6.0\n567,388,5.5\n567,389,5.0\n567,390,4.5\n567,391,4.0\n567,392,3.5\n567,393,4.0\n567,394,4.5\n567,395,5.0\n567,396,5.5\n567,397,6.0\n567,398,6.5\n567,399,7.0\n567,400,11.5\n567,401,11.0\n567,402,10.5\n567,403,10.0\n567,404,9.5\n567,405,9.0\n567,406,8.5\n567,407,8.0\n567,408,7.5\n567,409,7.0\n567,410,6.5\n567,411,6.0\n567,412,5.5\n567,413,5.0\n567,414,4.5\n567,415,4.0\n567,416,3.5\n567,417,3.0\n567,418,3.5\n567,419,4.0\n567,420,4.5\n567,421,5.0\n567,422,5.5\n567,423,6.0\n567,424,6.5\n567,425,11.0\n567,426,10.5\n567,427,10.0\n567,428,9.5\n567,429,9.0\n567,430,8.5\n567,431,8.0\n567,432,7.5\n567,433,7.0\n567,434,6.5\n567,435,6.0\n567,436,5.5\n567,437,5.0\n567,438,4.5\n567,439,4.0\n567,440,3.5\n567,441,3.0\n567,442,2.5\n567,443,3.0\n567,444,3.5\n567,445,4.0\n567,446,4.5\n567,447,5.0\n567,448,5.5\n567,449,6.0\n567,450,10.5\n567,451,10.0\n567,452,9.5\n567,453,9.0\n567,454,8.5\n567,455,8.0\n567,456,7.5\n567,457,7.0\n567,458,6.5\n567,459,6.0\n567,460,5.5\n567,461,5.0\n567,462,4.5\n567,463,4.0\n567,464,3.5\n567,465,3.0\n567,466,2.5\n567,467,2.0\n567,468,2.5\n567,469,3.0\n567,470,3.5\n567,471,4.0\n567,472,4.5\n567,473,5.0\n567,474,5.5\n567,475,10.0\n567,476,9.5\n567,477,9.0\n567,478,8.5\n567,479,8.0\n567,480,7.5\n567,481,7.0\n567,482,6.5\n567,483,6.0\n567,484,5.5\n567,485,5.0\n567,486,4.5\n567,487,4.0\n567,488,3.5\n567,489,3.0\n567,490,2.5\n567,491,2.0\n567,492,1.5\n567,493,2.0\n567,494,2.5\n567,495,3.0\n567,496,3.5\n567,497,4.0\n567,498,4.5\n567,499,5.0\n567,500,9.5\n567,501,9.0\n567,502,8.5\n567,503,8.0\n567,504,7.5\n567,505,7.0\n567,506,6.5\n567,507,6.0\n567,508,5.5\n567,509,5.0\n567,510,4.5\n567,511,4.0\n567,512,3.5\n567,513,3.0\n567,514,2.5\n567,515,2.0\n567,516,1.5\n567,517,1.0\n567,518,1.5\n567,519,2.0\n567,520,2.5\n567,521,3.0\n567,522,3.5\n567,523,4.0\n567,524,4.5\n567,525,9.0\n567,526,8.5\n567,527,8.0\n567,528,7.5\n567,529,7.0\n567,530,6.5\n567,531,6.0\n567,532,5.5\n567,533,5.0\n567,534,4.5\n567,535,4.0\n567,536,3.5\n567,537,3.0\n567,538,2.5\n567,539,2.0\n567,540,1.5\n567,541,1.0\n567,542,0.5\n567,543,1.0\n567,544,1.5\n567,545,2.0\n567,546,2.5\n567,547,3.0\n567,548,3.5\n567,549,4.0\n567,550,8.5\n567,551,8.0\n567,552,7.5\n567,553,7.0\n567,554,6.5\n567,555,6.0\n567,556,5.5\n567,557,5.0\n567,558,4.5\n567,559,4.0\n567,560,3.5\n567,561,3.0\n567,562,2.5\n567,563,2.0\n567,564,1.5\n567,565,1.0\n567,566,0.5\n567,567,0\n567,568,0.5\n567,569,1.0\n567,570,1.5\n567,571,2.0\n567,572,2.5\n567,573,3.0\n567,574,3.5\n567,575,9.0\n567,576,8.5\n567,577,8.0\n567,578,7.5\n567,579,7.0\n567,580,6.5\n567,581,6.0\n567,582,5.5\n567,583,5.0\n567,584,4.5\n567,585,4.0\n567,586,3.5\n567,587,3.0\n567,588,2.5\n567,589,2.0\n567,590,1.5\n567,591,1.0\n567,592,0.5\n567,593,1.0\n567,594,1.5\n567,595,2.0\n567,596,2.5\n567,597,3.0\n567,598,3.5\n567,599,4.0\n567,600,9.5\n567,601,9.0\n567,602,8.5\n567,603,8.0\n567,604,7.5\n567,605,7.0\n567,606,6.5\n567,607,6.0\n567,608,5.5\n567,609,5.0\n567,610,4.5\n567,611,4.0\n567,612,3.5\n567,613,3.0\n567,614,2.5\n567,615,2.0\n567,616,1.5\n567,617,1.0\n567,618,1.5\n567,619,2.0\n567,620,2.5\n567,621,3.0\n567,622,3.5\n567,623,4.0\n567,624,4.5\n568,0,20.0\n568,1,19.5\n568,2,19.0\n568,3,18.5\n568,4,18.0\n568,5,17.5\n568,6,17.0\n568,7,16.5\n568,8,16.0\n568,9,15.5\n568,10,15.0\n568,11,14.5\n568,12,14.0\n568,13,13.5\n568,14,13.0\n568,15,12.5\n568,16,12.0\n568,17,11.5\n568,18,11.0\n568,19,11.5\n568,20,12.0\n568,21,12.5\n568,22,13.0\n568,23,13.5\n568,24,14.0\n568,25,19.5\n568,26,19.0\n568,27,18.5\n568,28,18.0\n568,29,17.5\n568,30,17.0\n568,31,16.5\n568,32,16.0\n568,33,15.5\n568,34,15.0\n568,35,14.5\n568,36,14.0\n568,37,13.5\n568,38,13.0\n568,39,12.5\n568,40,12.0\n568,41,11.5\n568,42,11.0\n568,43,10.5\n568,44,11.0\n568,45,11.5\n568,46,12.0\n568,47,12.5\n568,48,13.0\n568,49,13.5\n568,50,19.0\n568,51,18.5\n568,52,18.0\n568,53,17.5\n568,54,17.0\n568,55,16.5\n568,56,16.0\n568,57,15.5\n568,58,15.0\n568,59,14.5\n568,60,14.0\n568,61,13.5\n568,62,13.0\n568,63,12.5\n568,64,12.0\n568,65,11.5\n568,66,11.0\n568,67,10.5\n568,68,10.0\n568,69,10.5\n568,70,11.0\n568,71,11.5\n568,72,12.0\n568,73,12.5\n568,74,13.0\n568,75,18.5\n568,76,18.0\n568,77,17.5\n568,78,17.0\n568,79,16.5\n568,80,16.0\n568,81,15.5\n568,82,15.0\n568,83,14.5\n568,84,14.0\n568,85,13.5\n568,86,13.0\n568,87,12.5\n568,88,12.0\n568,89,11.5\n568,90,11.0\n568,91,10.5\n568,92,10.0\n568,93,9.5\n568,94,10.0\n568,95,10.5\n568,96,11.0\n568,97,11.5\n568,98,12.0\n568,99,12.5\n568,100,18.0\n568,101,17.5\n568,102,17.0\n568,103,16.5\n568,104,16.0\n568,105,15.5\n568,106,15.0\n568,107,14.5\n568,108,14.0\n568,109,13.5\n568,110,13.0\n568,111,12.5\n568,112,12.0\n568,113,11.5\n568,114,11.0\n568,115,10.5\n568,116,10.0\n568,117,9.5\n568,118,9.0\n568,119,9.5\n568,120,10.0\n568,121,10.5\n568,122,11.0\n568,123,11.5\n568,124,12.0\n568,125,17.5\n568,126,17.0\n568,127,16.5\n568,128,16.0\n568,129,15.5\n568,130,15.0\n568,131,14.5\n568,132,14.0\n568,133,13.5\n568,134,13.0\n568,135,12.5\n568,136,12.0\n568,137,11.5\n568,138,11.0\n568,139,10.5\n568,140,10.0\n568,141,9.5\n568,142,9.0\n568,143,8.5\n568,144,9.0\n568,145,9.5\n568,146,10.0\n568,147,10.5\n568,148,11.0\n568,149,11.5\n568,150,17.0\n568,151,16.5\n568,152,16.0\n568,153,15.5\n568,154,15.0\n568,155,14.5\n568,156,14.0\n568,157,13.5\n568,158,13.0\n568,159,12.5\n568,160,12.0\n568,161,11.5\n568,162,11.0\n568,163,10.5\n568,164,10.0\n568,165,9.5\n568,166,9.0\n568,167,8.5\n568,168,8.0\n568,169,8.5\n568,170,9.0\n568,171,9.5\n568,172,10.0\n568,173,10.5\n568,174,11.0\n568,175,16.5\n568,176,16.0\n568,177,15.5\n568,178,15.0\n568,179,14.5\n568,180,14.0\n568,181,13.5\n568,182,13.0\n568,183,12.5\n568,184,12.0\n568,185,11.5\n568,186,11.0\n568,187,10.5\n568,188,10.0\n568,189,9.5\n568,190,9.0\n568,191,8.5\n568,192,8.0\n568,193,7.5\n568,194,8.0\n568,195,8.5\n568,196,9.0\n568,197,9.5\n568,198,10.0\n568,199,10.5\n568,200,16.0\n568,201,15.5\n568,202,15.0\n568,203,14.5\n568,204,14.0\n568,205,13.5\n568,206,13.0\n568,207,12.5\n568,208,12.0\n568,209,11.5\n568,210,11.0\n568,211,10.5\n568,212,10.0\n568,213,9.5\n568,214,9.0\n568,215,8.5\n568,216,8.0\n568,217,7.5\n568,218,7.0\n568,219,7.5\n568,220,8.0\n568,221,8.5\n568,222,9.0\n568,223,9.5\n568,224,10.0\n568,225,15.5\n568,226,15.0\n568,227,14.5\n568,228,14.0\n568,229,13.5\n568,230,13.0\n568,231,12.5\n568,232,12.0\n568,233,11.5\n568,234,11.0\n568,235,10.5\n568,236,10.0\n568,237,9.5\n568,238,9.0\n568,239,8.5\n568,240,8.0\n568,241,7.5\n568,242,7.0\n568,243,6.5\n568,244,7.0\n568,245,7.5\n568,246,8.0\n568,247,8.5\n568,248,9.0\n568,249,9.5\n568,250,15.0\n568,251,14.5\n568,252,14.0\n568,253,13.5\n568,254,13.0\n568,255,12.5\n568,256,12.0\n568,257,11.5\n568,258,11.0\n568,259,10.5\n568,260,10.0\n568,261,9.5\n568,262,9.0\n568,263,8.5\n568,264,8.0\n568,265,7.5\n568,266,7.0\n568,267,6.5\n568,268,6.0\n568,269,6.5\n568,270,7.0\n568,271,7.5\n568,272,8.0\n568,273,8.5\n568,274,9.0\n568,275,14.5\n568,276,14.0\n568,277,13.5\n568,278,13.0\n568,279,12.5\n568,280,12.0\n568,281,11.5\n568,282,11.0\n568,283,10.5\n568,284,10.0\n568,285,9.5\n568,286,9.0\n568,287,8.5\n568,288,8.0\n568,289,7.5\n568,290,7.0\n568,291,6.5\n568,292,6.0\n568,293,5.5\n568,294,6.0\n568,295,6.5\n568,296,7.0\n568,297,7.5\n568,298,8.0\n568,299,8.5\n568,300,14.0\n568,301,13.5\n568,302,13.0\n568,303,12.5\n568,304,12.0\n568,305,11.5\n568,306,11.0\n568,307,10.5\n568,308,10.0\n568,309,9.5\n568,310,9.0\n568,311,8.5\n568,312,8.0\n568,313,7.5\n568,314,7.0\n568,315,6.5\n568,316,6.0\n568,317,5.5\n568,318,5.0\n568,319,5.5\n568,320,6.0\n568,321,6.5\n568,322,7.0\n568,323,7.5\n568,324,8.0\n568,325,13.5\n568,326,13.0\n568,327,12.5\n568,328,12.0\n568,329,11.5\n568,330,11.0\n568,331,10.5\n568,332,10.0\n568,333,9.5\n568,334,9.0\n568,335,8.5\n568,336,8.0\n568,337,7.5\n568,338,7.0\n568,339,6.5\n568,340,6.0\n568,341,5.5\n568,342,5.0\n568,343,4.5\n568,344,5.0\n568,345,5.5\n568,346,6.0\n568,347,6.5\n568,348,7.0\n568,349,7.5\n568,350,13.0\n568,351,12.5\n568,352,12.0\n568,353,11.5\n568,354,11.0\n568,355,10.5\n568,356,10.0\n568,357,9.5\n568,358,9.0\n568,359,8.5\n568,360,8.0\n568,361,7.5\n568,362,7.0\n568,363,6.5\n568,364,6.0\n568,365,5.5\n568,366,5.0\n568,367,4.5\n568,368,4.0\n568,369,4.5\n568,370,5.0\n568,371,5.5\n568,372,6.0\n568,373,6.5\n568,374,7.0\n568,375,12.5\n568,376,12.0\n568,377,11.5\n568,378,11.0\n568,379,10.5\n568,380,10.0\n568,381,9.5\n568,382,9.0\n568,383,8.5\n568,384,8.0\n568,385,7.5\n568,386,7.0\n568,387,6.5\n568,388,6.0\n568,389,5.5\n568,390,5.0\n568,391,4.5\n568,392,4.0\n568,393,3.5\n568,394,4.0\n568,395,4.5\n568,396,5.0\n568,397,5.5\n568,398,6.0\n568,399,6.5\n568,400,12.0\n568,401,11.5\n568,402,11.0\n568,403,10.5\n568,404,10.0\n568,405,9.5\n568,406,9.0\n568,407,8.5\n568,408,8.0\n568,409,7.5\n568,410,7.0\n568,411,6.5\n568,412,6.0\n568,413,5.5\n568,414,5.0\n568,415,4.5\n568,416,4.0\n568,417,3.5\n568,418,3.0\n568,419,3.5\n568,420,4.0\n568,421,4.5\n568,422,5.0\n568,423,5.5\n568,424,6.0\n568,425,11.5\n568,426,11.0\n568,427,10.5\n568,428,10.0\n568,429,9.5\n568,430,9.0\n568,431,8.5\n568,432,8.0\n568,433,7.5\n568,434,7.0\n568,435,6.5\n568,436,6.0\n568,437,5.5\n568,438,5.0\n568,439,4.5\n568,440,4.0\n568,441,3.5\n568,442,3.0\n568,443,2.5\n568,444,3.0\n568,445,3.5\n568,446,4.0\n568,447,4.5\n568,448,5.0\n568,449,5.5\n568,450,11.0\n568,451,10.5\n568,452,10.0\n568,453,9.5\n568,454,9.0\n568,455,8.5\n568,456,8.0\n568,457,7.5\n568,458,7.0\n568,459,6.5\n568,460,6.0\n568,461,5.5\n568,462,5.0\n568,463,4.5\n568,464,4.0\n568,465,3.5\n568,466,3.0\n568,467,2.5\n568,468,2.0\n568,469,2.5\n568,470,3.0\n568,471,3.5\n568,472,4.0\n568,473,4.5\n568,474,5.0\n568,475,10.5\n568,476,10.0\n568,477,9.5\n568,478,9.0\n568,479,8.5\n568,480,8.0\n568,481,7.5\n568,482,7.0\n568,483,6.5\n568,484,6.0\n568,485,5.5\n568,486,5.0\n568,487,4.5\n568,488,4.0\n568,489,3.5\n568,490,3.0\n568,491,2.5\n568,492,2.0\n568,493,1.5\n568,494,2.0\n568,495,2.5\n568,496,3.0\n568,497,3.5\n568,498,4.0\n568,499,4.5\n568,500,10.0\n568,501,9.5\n568,502,9.0\n568,503,8.5\n568,504,8.0\n568,505,7.5\n568,506,7.0\n568,507,6.5\n568,508,6.0\n568,509,5.5\n568,510,5.0\n568,511,4.5\n568,512,4.0\n568,513,3.5\n568,514,3.0\n568,515,2.5\n568,516,2.0\n568,517,1.5\n568,518,1.0\n568,519,1.5\n568,520,2.0\n568,521,2.5\n568,522,3.0\n568,523,3.5\n568,524,4.0\n568,525,9.5\n568,526,9.0\n568,527,8.5\n568,528,8.0\n568,529,7.5\n568,530,7.0\n568,531,6.5\n568,532,6.0\n568,533,5.5\n568,534,5.0\n568,535,4.5\n568,536,4.0\n568,537,3.5\n568,538,3.0\n568,539,2.5\n568,540,2.0\n568,541,1.5\n568,542,1.0\n568,543,0.5\n568,544,1.0\n568,545,1.5\n568,546,2.0\n568,547,2.5\n568,548,3.0\n568,549,3.5\n568,550,9.0\n568,551,8.5\n568,552,8.0\n568,553,7.5\n568,554,7.0\n568,555,6.5\n568,556,6.0\n568,557,5.5\n568,558,5.0\n568,559,4.5\n568,560,4.0\n568,561,3.5\n568,562,3.0\n568,563,2.5\n568,564,2.0\n568,565,1.5\n568,566,1.0\n568,567,0.5\n568,568,0\n568,569,0.5\n568,570,1.0\n568,571,1.5\n568,572,2.0\n568,573,2.5\n568,574,3.0\n568,575,9.5\n568,576,9.0\n568,577,8.5\n568,578,8.0\n568,579,7.5\n568,580,7.0\n568,581,6.5\n568,582,6.0\n568,583,5.5\n568,584,5.0\n568,585,4.5\n568,586,4.0\n568,587,3.5\n568,588,3.0\n568,589,2.5\n568,590,2.0\n568,591,1.5\n568,592,1.0\n568,593,0.5\n568,594,1.0\n568,595,1.5\n568,596,2.0\n568,597,2.5\n568,598,3.0\n568,599,3.5\n568,600,10.0\n568,601,9.5\n568,602,9.0\n568,603,8.5\n568,604,8.0\n568,605,7.5\n568,606,7.0\n568,607,6.5\n568,608,6.0\n568,609,5.5\n568,610,5.0\n568,611,4.5\n568,612,4.0\n568,613,3.5\n568,614,3.0\n568,615,2.5\n568,616,2.0\n568,617,1.5\n568,618,1.0\n568,619,1.5\n568,620,2.0\n568,621,2.5\n568,622,3.0\n568,623,3.5\n568,624,4.0\n569,0,20.5\n569,1,20.0\n569,2,19.5\n569,3,19.0\n569,4,18.5\n569,5,18.0\n569,6,17.5\n569,7,17.0\n569,8,16.5\n569,9,16.0\n569,10,15.5\n569,11,15.0\n569,12,14.5\n569,13,14.0\n569,14,13.5\n569,15,13.0\n569,16,12.5\n569,17,12.0\n569,18,11.5\n569,19,11.0\n569,20,11.5\n569,21,12.0\n569,22,12.5\n569,23,13.0\n569,24,13.5\n569,25,20.0\n569,26,19.5\n569,27,19.0\n569,28,18.5\n569,29,18.0\n569,30,17.5\n569,31,17.0\n569,32,16.5\n569,33,16.0\n569,34,15.5\n569,35,15.0\n569,36,14.5\n569,37,14.0\n569,38,13.5\n569,39,13.0\n569,40,12.5\n569,41,12.0\n569,42,11.5\n569,43,11.0\n569,44,10.5\n569,45,11.0\n569,46,11.5\n569,47,12.0\n569,48,12.5\n569,49,13.0\n569,50,19.5\n569,51,19.0\n569,52,18.5\n569,53,18.0\n569,54,17.5\n569,55,17.0\n569,56,16.5\n569,57,16.0\n569,58,15.5\n569,59,15.0\n569,60,14.5\n569,61,14.0\n569,62,13.5\n569,63,13.0\n569,64,12.5\n569,65,12.0\n569,66,11.5\n569,67,11.0\n569,68,10.5\n569,69,10.0\n569,70,10.5\n569,71,11.0\n569,72,11.5\n569,73,12.0\n569,74,12.5\n569,75,19.0\n569,76,18.5\n569,77,18.0\n569,78,17.5\n569,79,17.0\n569,80,16.5\n569,81,16.0\n569,82,15.5\n569,83,15.0\n569,84,14.5\n569,85,14.0\n569,86,13.5\n569,87,13.0\n569,88,12.5\n569,89,12.0\n569,90,11.5\n569,91,11.0\n569,92,10.5\n569,93,10.0\n569,94,9.5\n569,95,10.0\n569,96,10.5\n569,97,11.0\n569,98,11.5\n569,99,12.0\n569,100,18.5\n569,101,18.0\n569,102,17.5\n569,103,17.0\n569,104,16.5\n569,105,16.0\n569,106,15.5\n569,107,15.0\n569,108,14.5\n569,109,14.0\n569,110,13.5\n569,111,13.0\n569,112,12.5\n569,113,12.0\n569,114,11.5\n569,115,11.0\n569,116,10.5\n569,117,10.0\n569,118,9.5\n569,119,9.0\n569,120,9.5\n569,121,10.0\n569,122,10.5\n569,123,11.0\n569,124,11.5\n569,125,18.0\n569,126,17.5\n569,127,17.0\n569,128,16.5\n569,129,16.0\n569,130,15.5\n569,131,15.0\n569,132,14.5\n569,133,14.0\n569,134,13.5\n569,135,13.0\n569,136,12.5\n569,137,12.0\n569,138,11.5\n569,139,11.0\n569,140,10.5\n569,141,10.0\n569,142,9.5\n569,143,9.0\n569,144,8.5\n569,145,9.0\n569,146,9.5\n569,147,10.0\n569,148,10.5\n569,149,11.0\n569,150,17.5\n569,151,17.0\n569,152,16.5\n569,153,16.0\n569,154,15.5\n569,155,15.0\n569,156,14.5\n569,157,14.0\n569,158,13.5\n569,159,13.0\n569,160,12.5\n569,161,12.0\n569,162,11.5\n569,163,11.0\n569,164,10.5\n569,165,10.0\n569,166,9.5\n569,167,9.0\n569,168,8.5\n569,169,8.0\n569,170,8.5\n569,171,9.0\n569,172,9.5\n569,173,10.0\n569,174,10.5\n569,175,17.0\n569,176,16.5\n569,177,16.0\n569,178,15.5\n569,179,15.0\n569,180,14.5\n569,181,14.0\n569,182,13.5\n569,183,13.0\n569,184,12.5\n569,185,12.0\n569,186,11.5\n569,187,11.0\n569,188,10.5\n569,189,10.0\n569,190,9.5\n569,191,9.0\n569,192,8.5\n569,193,8.0\n569,194,7.5\n569,195,8.0\n569,196,8.5\n569,197,9.0\n569,198,9.5\n569,199,10.0\n569,200,16.5\n569,201,16.0\n569,202,15.5\n569,203,15.0\n569,204,14.5\n569,205,14.0\n569,206,13.5\n569,207,13.0\n569,208,12.5\n569,209,12.0\n569,210,11.5\n569,211,11.0\n569,212,10.5\n569,213,10.0\n569,214,9.5\n569,215,9.0\n569,216,8.5\n569,217,8.0\n569,218,7.5\n569,219,7.0\n569,220,7.5\n569,221,8.0\n569,222,8.5\n569,223,9.0\n569,224,9.5\n569,225,16.0\n569,226,15.5\n569,227,15.0\n569,228,14.5\n569,229,14.0\n569,230,13.5\n569,231,13.0\n569,232,12.5\n569,233,12.0\n569,234,11.5\n569,235,11.0\n569,236,10.5\n569,237,10.0\n569,238,9.5\n569,239,9.0\n569,240,8.5\n569,241,8.0\n569,242,7.5\n569,243,7.0\n569,244,6.5\n569,245,7.0\n569,246,7.5\n569,247,8.0\n569,248,8.5\n569,249,9.0\n569,250,15.5\n569,251,15.0\n569,252,14.5\n569,253,14.0\n569,254,13.5\n569,255,13.0\n569,256,12.5\n569,257,12.0\n569,258,11.5\n569,259,11.0\n569,260,10.5\n569,261,10.0\n569,262,9.5\n569,263,9.0\n569,264,8.5\n569,265,8.0\n569,266,7.5\n569,267,7.0\n569,268,6.5\n569,269,6.0\n569,270,6.5\n569,271,7.0\n569,272,7.5\n569,273,8.0\n569,274,8.5\n569,275,15.0\n569,276,14.5\n569,277,14.0\n569,278,13.5\n569,279,13.0\n569,280,12.5\n569,281,12.0\n569,282,11.5\n569,283,11.0\n569,284,10.5\n569,285,10.0\n569,286,9.5\n569,287,9.0\n569,288,8.5\n569,289,8.0\n569,290,7.5\n569,291,7.0\n569,292,6.5\n569,293,6.0\n569,294,5.5\n569,295,6.0\n569,296,6.5\n569,297,7.0\n569,298,7.5\n569,299,8.0\n569,300,14.5\n569,301,14.0\n569,302,13.5\n569,303,13.0\n569,304,12.5\n569,305,12.0\n569,306,11.5\n569,307,11.0\n569,308,10.5\n569,309,10.0\n569,310,9.5\n569,311,9.0\n569,312,8.5\n569,313,8.0\n569,314,7.5\n569,315,7.0\n569,316,6.5\n569,317,6.0\n569,318,5.5\n569,319,5.0\n569,320,5.5\n569,321,6.0\n569,322,6.5\n569,323,7.0\n569,324,7.5\n569,325,14.0\n569,326,13.5\n569,327,13.0\n569,328,12.5\n569,329,12.0\n569,330,11.5\n569,331,11.0\n569,332,10.5\n569,333,10.0\n569,334,9.5\n569,335,9.0\n569,336,8.5\n569,337,8.0\n569,338,7.5\n569,339,7.0\n569,340,6.5\n569,341,6.0\n569,342,5.5\n569,343,5.0\n569,344,4.5\n569,345,5.0\n569,346,5.5\n569,347,6.0\n569,348,6.5\n569,349,7.0\n569,350,13.5\n569,351,13.0\n569,352,12.5\n569,353,12.0\n569,354,11.5\n569,355,11.0\n569,356,10.5\n569,357,10.0\n569,358,9.5\n569,359,9.0\n569,360,8.5\n569,361,8.0\n569,362,7.5\n569,363,7.0\n569,364,6.5\n569,365,6.0\n569,366,5.5\n569,367,5.0\n569,368,4.5\n569,369,4.0\n569,370,4.5\n569,371,5.0\n569,372,5.5\n569,373,6.0\n569,374,6.5\n569,375,13.0\n569,376,12.5\n569,377,12.0\n569,378,11.5\n569,379,11.0\n569,380,10.5\n569,381,10.0\n569,382,9.5\n569,383,9.0\n569,384,8.5\n569,385,8.0\n569,386,7.5\n569,387,7.0\n569,388,6.5\n569,389,6.0\n569,390,5.5\n569,391,5.0\n569,392,4.5\n569,393,4.0\n569,394,3.5\n569,395,4.0\n569,396,4.5\n569,397,5.0\n569,398,5.5\n569,399,6.0\n569,400,12.5\n569,401,12.0\n569,402,11.5\n569,403,11.0\n569,404,10.5\n569,405,10.0\n569,406,9.5\n569,407,9.0\n569,408,8.5\n569,409,8.0\n569,410,7.5\n569,411,7.0\n569,412,6.5\n569,413,6.0\n569,414,5.5\n569,415,5.0\n569,416,4.5\n569,417,4.0\n569,418,3.5\n569,419,3.0\n569,420,3.5\n569,421,4.0\n569,422,4.5\n569,423,5.0\n569,424,5.5\n569,425,12.0\n569,426,11.5\n569,427,11.0\n569,428,10.5\n569,429,10.0\n569,430,9.5\n569,431,9.0\n569,432,8.5\n569,433,8.0\n569,434,7.5\n569,435,7.0\n569,436,6.5\n569,437,6.0\n569,438,5.5\n569,439,5.0\n569,440,4.5\n569,441,4.0\n569,442,3.5\n569,443,3.0\n569,444,2.5\n569,445,3.0\n569,446,3.5\n569,447,4.0\n569,448,4.5\n569,449,5.0\n569,450,11.5\n569,451,11.0\n569,452,10.5\n569,453,10.0\n569,454,9.5\n569,455,9.0\n569,456,8.5\n569,457,8.0\n569,458,7.5\n569,459,7.0\n569,460,6.5\n569,461,6.0\n569,462,5.5\n569,463,5.0\n569,464,4.5\n569,465,4.0\n569,466,3.5\n569,467,3.0\n569,468,2.5\n569,469,2.0\n569,470,2.5\n569,471,3.0\n569,472,3.5\n569,473,4.0\n569,474,4.5\n569,475,11.0\n569,476,10.5\n569,477,10.0\n569,478,9.5\n569,479,9.0\n569,480,8.5\n569,481,8.0\n569,482,7.5\n569,483,7.0\n569,484,6.5\n569,485,6.0\n569,486,5.5\n569,487,5.0\n569,488,4.5\n569,489,4.0\n569,490,3.5\n569,491,3.0\n569,492,2.5\n569,493,2.0\n569,494,1.5\n569,495,2.0\n569,496,2.5\n569,497,3.0\n569,498,3.5\n569,499,4.0\n569,500,10.5\n569,501,10.0\n569,502,9.5\n569,503,9.0\n569,504,8.5\n569,505,8.0\n569,506,7.5\n569,507,7.0\n569,508,6.5\n569,509,6.0\n569,510,5.5\n569,511,5.0\n569,512,4.5\n569,513,4.0\n569,514,3.5\n569,515,3.0\n569,516,2.5\n569,517,2.0\n569,518,1.5\n569,519,1.0\n569,520,1.5\n569,521,2.0\n569,522,2.5\n569,523,3.0\n569,524,3.5\n569,525,10.0\n569,526,9.5\n569,527,9.0\n569,528,8.5\n569,529,8.0\n569,530,7.5\n569,531,7.0\n569,532,6.5\n569,533,6.0\n569,534,5.5\n569,535,5.0\n569,536,4.5\n569,537,4.0\n569,538,3.5\n569,539,3.0\n569,540,2.5\n569,541,2.0\n569,542,1.5\n569,543,1.0\n569,544,0.5\n569,545,1.0\n569,546,1.5\n569,547,2.0\n569,548,2.5\n569,549,3.0\n569,550,9.5\n569,551,9.0\n569,552,8.5\n569,553,8.0\n569,554,7.5\n569,555,7.0\n569,556,6.5\n569,557,6.0\n569,558,5.5\n569,559,5.0\n569,560,4.5\n569,561,4.0\n569,562,3.5\n569,563,3.0\n569,564,2.5\n569,565,2.0\n569,566,1.5\n569,567,1.0\n569,568,0.5\n569,569,0\n569,570,0.5\n569,571,1.0\n569,572,1.5\n569,573,2.0\n569,574,2.5\n569,575,10.0\n569,576,9.5\n569,577,9.0\n569,578,8.5\n569,579,8.0\n569,580,7.5\n569,581,7.0\n569,582,6.5\n569,583,6.0\n569,584,5.5\n569,585,5.0\n569,586,4.5\n569,587,4.0\n569,588,3.5\n569,589,3.0\n569,590,2.5\n569,591,2.0\n569,592,1.5\n569,593,1.0\n569,594,0.5\n569,595,1.0\n569,596,1.5\n569,597,2.0\n569,598,2.5\n569,599,3.0\n569,600,10.5\n569,601,10.0\n569,602,9.5\n569,603,9.0\n569,604,8.5\n569,605,8.0\n569,606,7.5\n569,607,7.0\n569,608,6.5\n569,609,6.0\n569,610,5.5\n569,611,5.0\n569,612,4.5\n569,613,4.0\n569,614,3.5\n569,615,3.0\n569,616,2.5\n569,617,2.0\n569,618,1.5\n569,619,1.0\n569,620,1.5\n569,621,2.0\n569,622,2.5\n569,623,3.0\n569,624,3.5\n570,0,21.0\n570,1,20.5\n570,2,20.0\n570,3,19.5\n570,4,19.0\n570,5,18.5\n570,6,18.0\n570,7,17.5\n570,8,17.0\n570,9,16.5\n570,10,16.0\n570,11,15.5\n570,12,15.0\n570,13,14.5\n570,14,14.0\n570,15,13.5\n570,16,13.0\n570,17,12.5\n570,18,12.0\n570,19,11.5\n570,20,11.0\n570,21,11.5\n570,22,12.0\n570,23,12.5\n570,24,13.0\n570,25,20.5\n570,26,20.0\n570,27,19.5\n570,28,19.0\n570,29,18.5\n570,30,18.0\n570,31,17.5\n570,32,17.0\n570,33,16.5\n570,34,16.0\n570,35,15.5\n570,36,15.0\n570,37,14.5\n570,38,14.0\n570,39,13.5\n570,40,13.0\n570,41,12.5\n570,42,12.0\n570,43,11.5\n570,44,11.0\n570,45,10.5\n570,46,11.0\n570,47,11.5\n570,48,12.0\n570,49,12.5\n570,50,20.0\n570,51,19.5\n570,52,19.0\n570,53,18.5\n570,54,18.0\n570,55,17.5\n570,56,17.0\n570,57,16.5\n570,58,16.0\n570,59,15.5\n570,60,15.0\n570,61,14.5\n570,62,14.0\n570,63,13.5\n570,64,13.0\n570,65,12.5\n570,66,12.0\n570,67,11.5\n570,68,11.0\n570,69,10.5\n570,70,10.0\n570,71,10.5\n570,72,11.0\n570,73,11.5\n570,74,12.0\n570,75,19.5\n570,76,19.0\n570,77,18.5\n570,78,18.0\n570,79,17.5\n570,80,17.0\n570,81,16.5\n570,82,16.0\n570,83,15.5\n570,84,15.0\n570,85,14.5\n570,86,14.0\n570,87,13.5\n570,88,13.0\n570,89,12.5\n570,90,12.0\n570,91,11.5\n570,92,11.0\n570,93,10.5\n570,94,10.0\n570,95,9.5\n570,96,10.0\n570,97,10.5\n570,98,11.0\n570,99,11.5\n570,100,19.0\n570,101,18.5\n570,102,18.0\n570,103,17.5\n570,104,17.0\n570,105,16.5\n570,106,16.0\n570,107,15.5\n570,108,15.0\n570,109,14.5\n570,110,14.0\n570,111,13.5\n570,112,13.0\n570,113,12.5\n570,114,12.0\n570,115,11.5\n570,116,11.0\n570,117,10.5\n570,118,10.0\n570,119,9.5\n570,120,9.0\n570,121,9.5\n570,122,10.0\n570,123,10.5\n570,124,11.0\n570,125,18.5\n570,126,18.0\n570,127,17.5\n570,128,17.0\n570,129,16.5\n570,130,16.0\n570,131,15.5\n570,132,15.0\n570,133,14.5\n570,134,14.0\n570,135,13.5\n570,136,13.0\n570,137,12.5\n570,138,12.0\n570,139,11.5\n570,140,11.0\n570,141,10.5\n570,142,10.0\n570,143,9.5\n570,144,9.0\n570,145,8.5\n570,146,9.0\n570,147,9.5\n570,148,10.0\n570,149,10.5\n570,150,18.0\n570,151,17.5\n570,152,17.0\n570,153,16.5\n570,154,16.0\n570,155,15.5\n570,156,15.0\n570,157,14.5\n570,158,14.0\n570,159,13.5\n570,160,13.0\n570,161,12.5\n570,162,12.0\n570,163,11.5\n570,164,11.0\n570,165,10.5\n570,166,10.0\n570,167,9.5\n570,168,9.0\n570,169,8.5\n570,170,8.0\n570,171,8.5\n570,172,9.0\n570,173,9.5\n570,174,10.0\n570,175,17.5\n570,176,17.0\n570,177,16.5\n570,178,16.0\n570,179,15.5\n570,180,15.0\n570,181,14.5\n570,182,14.0\n570,183,13.5\n570,184,13.0\n570,185,12.5\n570,186,12.0\n570,187,11.5\n570,188,11.0\n570,189,10.5\n570,190,10.0\n570,191,9.5\n570,192,9.0\n570,193,8.5\n570,194,8.0\n570,195,7.5\n570,196,8.0\n570,197,8.5\n570,198,9.0\n570,199,9.5\n570,200,17.0\n570,201,16.5\n570,202,16.0\n570,203,15.5\n570,204,15.0\n570,205,14.5\n570,206,14.0\n570,207,13.5\n570,208,13.0\n570,209,12.5\n570,210,12.0\n570,211,11.5\n570,212,11.0\n570,213,10.5\n570,214,10.0\n570,215,9.5\n570,216,9.0\n570,217,8.5\n570,218,8.0\n570,219,7.5\n570,220,7.0\n570,221,7.5\n570,222,8.0\n570,223,8.5\n570,224,9.0\n570,225,16.5\n570,226,16.0\n570,227,15.5\n570,228,15.0\n570,229,14.5\n570,230,14.0\n570,231,13.5\n570,232,13.0\n570,233,12.5\n570,234,12.0\n570,235,11.5\n570,236,11.0\n570,237,10.5\n570,238,10.0\n570,239,9.5\n570,240,9.0\n570,241,8.5\n570,242,8.0\n570,243,7.5\n570,244,7.0\n570,245,6.5\n570,246,7.0\n570,247,7.5\n570,248,8.0\n570,249,8.5\n570,250,16.0\n570,251,15.5\n570,252,15.0\n570,253,14.5\n570,254,14.0\n570,255,13.5\n570,256,13.0\n570,257,12.5\n570,258,12.0\n570,259,11.5\n570,260,11.0\n570,261,10.5\n570,262,10.0\n570,263,9.5\n570,264,9.0\n570,265,8.5\n570,266,8.0\n570,267,7.5\n570,268,7.0\n570,269,6.5\n570,270,6.0\n570,271,6.5\n570,272,7.0\n570,273,7.5\n570,274,8.0\n570,275,15.5\n570,276,15.0\n570,277,14.5\n570,278,14.0\n570,279,13.5\n570,280,13.0\n570,281,12.5\n570,282,12.0\n570,283,11.5\n570,284,11.0\n570,285,10.5\n570,286,10.0\n570,287,9.5\n570,288,9.0\n570,289,8.5\n570,290,8.0\n570,291,7.5\n570,292,7.0\n570,293,6.5\n570,294,6.0\n570,295,5.5\n570,296,6.0\n570,297,6.5\n570,298,7.0\n570,299,7.5\n570,300,15.0\n570,301,14.5\n570,302,14.0\n570,303,13.5\n570,304,13.0\n570,305,12.5\n570,306,12.0\n570,307,11.5\n570,308,11.0\n570,309,10.5\n570,310,10.0\n570,311,9.5\n570,312,9.0\n570,313,8.5\n570,314,8.0\n570,315,7.5\n570,316,7.0\n570,317,6.5\n570,318,6.0\n570,319,5.5\n570,320,5.0\n570,321,5.5\n570,322,6.0\n570,323,6.5\n570,324,7.0\n570,325,14.5\n570,326,14.0\n570,327,13.5\n570,328,13.0\n570,329,12.5\n570,330,12.0\n570,331,11.5\n570,332,11.0\n570,333,10.5\n570,334,10.0\n570,335,9.5\n570,336,9.0\n570,337,8.5\n570,338,8.0\n570,339,7.5\n570,340,7.0\n570,341,6.5\n570,342,6.0\n570,343,5.5\n570,344,5.0\n570,345,4.5\n570,346,5.0\n570,347,5.5\n570,348,6.0\n570,349,6.5\n570,350,14.0\n570,351,13.5\n570,352,13.0\n570,353,12.5\n570,354,12.0\n570,355,11.5\n570,356,11.0\n570,357,10.5\n570,358,10.0\n570,359,9.5\n570,360,9.0\n570,361,8.5\n570,362,8.0\n570,363,7.5\n570,364,7.0\n570,365,6.5\n570,366,6.0\n570,367,5.5\n570,368,5.0\n570,369,4.5\n570,370,4.0\n570,371,4.5\n570,372,5.0\n570,373,5.5\n570,374,6.0\n570,375,13.5\n570,376,13.0\n570,377,12.5\n570,378,12.0\n570,379,11.5\n570,380,11.0\n570,381,10.5\n570,382,10.0\n570,383,9.5\n570,384,9.0\n570,385,8.5\n570,386,8.0\n570,387,7.5\n570,388,7.0\n570,389,6.5\n570,390,6.0\n570,391,5.5\n570,392,5.0\n570,393,4.5\n570,394,4.0\n570,395,3.5\n570,396,4.0\n570,397,4.5\n570,398,5.0\n570,399,5.5\n570,400,13.0\n570,401,12.5\n570,402,12.0\n570,403,11.5\n570,404,11.0\n570,405,10.5\n570,406,10.0\n570,407,9.5\n570,408,9.0\n570,409,8.5\n570,410,8.0\n570,411,7.5\n570,412,7.0\n570,413,6.5\n570,414,6.0\n570,415,5.5\n570,416,5.0\n570,417,4.5\n570,418,4.0\n570,419,3.5\n570,420,3.0\n570,421,3.5\n570,422,4.0\n570,423,4.5\n570,424,5.0\n570,425,12.5\n570,426,12.0\n570,427,11.5\n570,428,11.0\n570,429,10.5\n570,430,10.0\n570,431,9.5\n570,432,9.0\n570,433,8.5\n570,434,8.0\n570,435,7.5\n570,436,7.0\n570,437,6.5\n570,438,6.0\n570,439,5.5\n570,440,5.0\n570,441,4.5\n570,442,4.0\n570,443,3.5\n570,444,3.0\n570,445,2.5\n570,446,3.0\n570,447,3.5\n570,448,4.0\n570,449,4.5\n570,450,12.0\n570,451,11.5\n570,452,11.0\n570,453,10.5\n570,454,10.0\n570,455,9.5\n570,456,9.0\n570,457,8.5\n570,458,8.0\n570,459,7.5\n570,460,7.0\n570,461,6.5\n570,462,6.0\n570,463,5.5\n570,464,5.0\n570,465,4.5\n570,466,4.0\n570,467,3.5\n570,468,3.0\n570,469,2.5\n570,470,2.0\n570,471,2.5\n570,472,3.0\n570,473,3.5\n570,474,4.0\n570,475,11.5\n570,476,11.0\n570,477,10.5\n570,478,10.0\n570,479,9.5\n570,480,9.0\n570,481,8.5\n570,482,8.0\n570,483,7.5\n570,484,7.0\n570,485,6.5\n570,486,6.0\n570,487,5.5\n570,488,5.0\n570,489,4.5\n570,490,4.0\n570,491,3.5\n570,492,3.0\n570,493,2.5\n570,494,2.0\n570,495,1.5\n570,496,2.0\n570,497,2.5\n570,498,3.0\n570,499,3.5\n570,500,11.0\n570,501,10.5\n570,502,10.0\n570,503,9.5\n570,504,9.0\n570,505,8.5\n570,506,8.0\n570,507,7.5\n570,508,7.0\n570,509,6.5\n570,510,6.0\n570,511,5.5\n570,512,5.0\n570,513,4.5\n570,514,4.0\n570,515,3.5\n570,516,3.0\n570,517,2.5\n570,518,2.0\n570,519,1.5\n570,520,1.0\n570,521,1.5\n570,522,2.0\n570,523,2.5\n570,524,3.0\n570,525,10.5\n570,526,10.0\n570,527,9.5\n570,528,9.0\n570,529,8.5\n570,530,8.0\n570,531,7.5\n570,532,7.0\n570,533,6.5\n570,534,6.0\n570,535,5.5\n570,536,5.0\n570,537,4.5\n570,538,4.0\n570,539,3.5\n570,540,3.0\n570,541,2.5\n570,542,2.0\n570,543,1.5\n570,544,1.0\n570,545,0.5\n570,546,1.0\n570,547,1.5\n570,548,2.0\n570,549,2.5\n570,550,10.0\n570,551,9.5\n570,552,9.0\n570,553,8.5\n570,554,8.0\n570,555,7.5\n570,556,7.0\n570,557,6.5\n570,558,6.0\n570,559,5.5\n570,560,5.0\n570,561,4.5\n570,562,4.0\n570,563,3.5\n570,564,3.0\n570,565,2.5\n570,566,2.0\n570,567,1.5\n570,568,1.0\n570,569,0.5\n570,570,0\n570,571,0.5\n570,572,1.0\n570,573,1.5\n570,574,2.0\n570,575,10.5\n570,576,10.0\n570,577,9.5\n570,578,9.0\n570,579,8.5\n570,580,8.0\n570,581,7.5\n570,582,7.0\n570,583,6.5\n570,584,6.0\n570,585,5.5\n570,586,5.0\n570,587,4.5\n570,588,4.0\n570,589,3.5\n570,590,3.0\n570,591,2.5\n570,592,2.0\n570,593,1.5\n570,594,1.0\n570,595,0.5\n570,596,1.0\n570,597,1.5\n570,598,2.0\n570,599,2.5\n570,600,11.0\n570,601,10.5\n570,602,10.0\n570,603,9.5\n570,604,9.0\n570,605,8.5\n570,606,8.0\n570,607,7.5\n570,608,7.0\n570,609,6.5\n570,610,6.0\n570,611,5.5\n570,612,5.0\n570,613,4.5\n570,614,4.0\n570,615,3.5\n570,616,3.0\n570,617,2.5\n570,618,2.0\n570,619,1.5\n570,620,1.0\n570,621,1.5\n570,622,2.0\n570,623,2.5\n570,624,3.0\n571,0,21.5\n571,1,21.0\n571,2,20.5\n571,3,20.0\n571,4,19.5\n571,5,19.0\n571,6,18.5\n571,7,18.0\n571,8,17.5\n571,9,17.0\n571,10,16.5\n571,11,16.0\n571,12,15.5\n571,13,15.0\n571,14,14.5\n571,15,14.0\n571,16,13.5\n571,17,13.0\n571,18,12.5\n571,19,12.0\n571,20,11.5\n571,21,11.0\n571,22,11.5\n571,23,12.0\n571,24,12.5\n571,25,21.0\n571,26,20.5\n571,27,20.0\n571,28,19.5\n571,29,19.0\n571,30,18.5\n571,31,18.0\n571,32,17.5\n571,33,17.0\n571,34,16.5\n571,35,16.0\n571,36,15.5\n571,37,15.0\n571,38,14.5\n571,39,14.0\n571,40,13.5\n571,41,13.0\n571,42,12.5\n571,43,12.0\n571,44,11.5\n571,45,11.0\n571,46,10.5\n571,47,11.0\n571,48,11.5\n571,49,12.0\n571,50,20.5\n571,51,20.0\n571,52,19.5\n571,53,19.0\n571,54,18.5\n571,55,18.0\n571,56,17.5\n571,57,17.0\n571,58,16.5\n571,59,16.0\n571,60,15.5\n571,61,15.0\n571,62,14.5\n571,63,14.0\n571,64,13.5\n571,65,13.0\n571,66,12.5\n571,67,12.0\n571,68,11.5\n571,69,11.0\n571,70,10.5\n571,71,10.0\n571,72,10.5\n571,73,11.0\n571,74,11.5\n571,75,20.0\n571,76,19.5\n571,77,19.0\n571,78,18.5\n571,79,18.0\n571,80,17.5\n571,81,17.0\n571,82,16.5\n571,83,16.0\n571,84,15.5\n571,85,15.0\n571,86,14.5\n571,87,14.0\n571,88,13.5\n571,89,13.0\n571,90,12.5\n571,91,12.0\n571,92,11.5\n571,93,11.0\n571,94,10.5\n571,95,10.0\n571,96,9.5\n571,97,10.0\n571,98,10.5\n571,99,11.0\n571,100,19.5\n571,101,19.0\n571,102,18.5\n571,103,18.0\n571,104,17.5\n571,105,17.0\n571,106,16.5\n571,107,16.0\n571,108,15.5\n571,109,15.0\n571,110,14.5\n571,111,14.0\n571,112,13.5\n571,113,13.0\n571,114,12.5\n571,115,12.0\n571,116,11.5\n571,117,11.0\n571,118,10.5\n571,119,10.0\n571,120,9.5\n571,121,9.0\n571,122,9.5\n571,123,10.0\n571,124,10.5\n571,125,19.0\n571,126,18.5\n571,127,18.0\n571,128,17.5\n571,129,17.0\n571,130,16.5\n571,131,16.0\n571,132,15.5\n571,133,15.0\n571,134,14.5\n571,135,14.0\n571,136,13.5\n571,137,13.0\n571,138,12.5\n571,139,12.0\n571,140,11.5\n571,141,11.0\n571,142,10.5\n571,143,10.0\n571,144,9.5\n571,145,9.0\n571,146,8.5\n571,147,9.0\n571,148,9.5\n571,149,10.0\n571,150,18.5\n571,151,18.0\n571,152,17.5\n571,153,17.0\n571,154,16.5\n571,155,16.0\n571,156,15.5\n571,157,15.0\n571,158,14.5\n571,159,14.0\n571,160,13.5\n571,161,13.0\n571,162,12.5\n571,163,12.0\n571,164,11.5\n571,165,11.0\n571,166,10.5\n571,167,10.0\n571,168,9.5\n571,169,9.0\n571,170,8.5\n571,171,8.0\n571,172,8.5\n571,173,9.0\n571,174,9.5\n571,175,18.0\n571,176,17.5\n571,177,17.0\n571,178,16.5\n571,179,16.0\n571,180,15.5\n571,181,15.0\n571,182,14.5\n571,183,14.0\n571,184,13.5\n571,185,13.0\n571,186,12.5\n571,187,12.0\n571,188,11.5\n571,189,11.0\n571,190,10.5\n571,191,10.0\n571,192,9.5\n571,193,9.0\n571,194,8.5\n571,195,8.0\n571,196,7.5\n571,197,8.0\n571,198,8.5\n571,199,9.0\n571,200,17.5\n571,201,17.0\n571,202,16.5\n571,203,16.0\n571,204,15.5\n571,205,15.0\n571,206,14.5\n571,207,14.0\n571,208,13.5\n571,209,13.0\n571,210,12.5\n571,211,12.0\n571,212,11.5\n571,213,11.0\n571,214,10.5\n571,215,10.0\n571,216,9.5\n571,217,9.0\n571,218,8.5\n571,219,8.0\n571,220,7.5\n571,221,7.0\n571,222,7.5\n571,223,8.0\n571,224,8.5\n571,225,17.0\n571,226,16.5\n571,227,16.0\n571,228,15.5\n571,229,15.0\n571,230,14.5\n571,231,14.0\n571,232,13.5\n571,233,13.0\n571,234,12.5\n571,235,12.0\n571,236,11.5\n571,237,11.0\n571,238,10.5\n571,239,10.0\n571,240,9.5\n571,241,9.0\n571,242,8.5\n571,243,8.0\n571,244,7.5\n571,245,7.0\n571,246,6.5\n571,247,7.0\n571,248,7.5\n571,249,8.0\n571,250,16.5\n571,251,16.0\n571,252,15.5\n571,253,15.0\n571,254,14.5\n571,255,14.0\n571,256,13.5\n571,257,13.0\n571,258,12.5\n571,259,12.0\n571,260,11.5\n571,261,11.0\n571,262,10.5\n571,263,10.0\n571,264,9.5\n571,265,9.0\n571,266,8.5\n571,267,8.0\n571,268,7.5\n571,269,7.0\n571,270,6.5\n571,271,6.0\n571,272,6.5\n571,273,7.0\n571,274,7.5\n571,275,16.0\n571,276,15.5\n571,277,15.0\n571,278,14.5\n571,279,14.0\n571,280,13.5\n571,281,13.0\n571,282,12.5\n571,283,12.0\n571,284,11.5\n571,285,11.0\n571,286,10.5\n571,287,10.0\n571,288,9.5\n571,289,9.0\n571,290,8.5\n571,291,8.0\n571,292,7.5\n571,293,7.0\n571,294,6.5\n571,295,6.0\n571,296,5.5\n571,297,6.0\n571,298,6.5\n571,299,7.0\n571,300,15.5\n571,301,15.0\n571,302,14.5\n571,303,14.0\n571,304,13.5\n571,305,13.0\n571,306,12.5\n571,307,12.0\n571,308,11.5\n571,309,11.0\n571,310,10.5\n571,311,10.0\n571,312,9.5\n571,313,9.0\n571,314,8.5\n571,315,8.0\n571,316,7.5\n571,317,7.0\n571,318,6.5\n571,319,6.0\n571,320,5.5\n571,321,5.0\n571,322,5.5\n571,323,6.0\n571,324,6.5\n571,325,15.0\n571,326,14.5\n571,327,14.0\n571,328,13.5\n571,329,13.0\n571,330,12.5\n571,331,12.0\n571,332,11.5\n571,333,11.0\n571,334,10.5\n571,335,10.0\n571,336,9.5\n571,337,9.0\n571,338,8.5\n571,339,8.0\n571,340,7.5\n571,341,7.0\n571,342,6.5\n571,343,6.0\n571,344,5.5\n571,345,5.0\n571,346,4.5\n571,347,5.0\n571,348,5.5\n571,349,6.0\n571,350,14.5\n571,351,14.0\n571,352,13.5\n571,353,13.0\n571,354,12.5\n571,355,12.0\n571,356,11.5\n571,357,11.0\n571,358,10.5\n571,359,10.0\n571,360,9.5\n571,361,9.0\n571,362,8.5\n571,363,8.0\n571,364,7.5\n571,365,7.0\n571,366,6.5\n571,367,6.0\n571,368,5.5\n571,369,5.0\n571,370,4.5\n571,371,4.0\n571,372,4.5\n571,373,5.0\n571,374,5.5\n571,375,14.0\n571,376,13.5\n571,377,13.0\n571,378,12.5\n571,379,12.0\n571,380,11.5\n571,381,11.0\n571,382,10.5\n571,383,10.0\n571,384,9.5\n571,385,9.0\n571,386,8.5\n571,387,8.0\n571,388,7.5\n571,389,7.0\n571,390,6.5\n571,391,6.0\n571,392,5.5\n571,393,5.0\n571,394,4.5\n571,395,4.0\n571,396,3.5\n571,397,4.0\n571,398,4.5\n571,399,5.0\n571,400,13.5\n571,401,13.0\n571,402,12.5\n571,403,12.0\n571,404,11.5\n571,405,11.0\n571,406,10.5\n571,407,10.0\n571,408,9.5\n571,409,9.0\n571,410,8.5\n571,411,8.0\n571,412,7.5\n571,413,7.0\n571,414,6.5\n571,415,6.0\n571,416,5.5\n571,417,5.0\n571,418,4.5\n571,419,4.0\n571,420,3.5\n571,421,3.0\n571,422,3.5\n571,423,4.0\n571,424,4.5\n571,425,13.0\n571,426,12.5\n571,427,12.0\n571,428,11.5\n571,429,11.0\n571,430,10.5\n571,431,10.0\n571,432,9.5\n571,433,9.0\n571,434,8.5\n571,435,8.0\n571,436,7.5\n571,437,7.0\n571,438,6.5\n571,439,6.0\n571,440,5.5\n571,441,5.0\n571,442,4.5\n571,443,4.0\n571,444,3.5\n571,445,3.0\n571,446,2.5\n571,447,3.0\n571,448,3.5\n571,449,4.0\n571,450,12.5\n571,451,12.0\n571,452,11.5\n571,453,11.0\n571,454,10.5\n571,455,10.0\n571,456,9.5\n571,457,9.0\n571,458,8.5\n571,459,8.0\n571,460,7.5\n571,461,7.0\n571,462,6.5\n571,463,6.0\n571,464,5.5\n571,465,5.0\n571,466,4.5\n571,467,4.0\n571,468,3.5\n571,469,3.0\n571,470,2.5\n571,471,2.0\n571,472,2.5\n571,473,3.0\n571,474,3.5\n571,475,12.0\n571,476,11.5\n571,477,11.0\n571,478,10.5\n571,479,10.0\n571,480,9.5\n571,481,9.0\n571,482,8.5\n571,483,8.0\n571,484,7.5\n571,485,7.0\n571,486,6.5\n571,487,6.0\n571,488,5.5\n571,489,5.0\n571,490,4.5\n571,491,4.0\n571,492,3.5\n571,493,3.0\n571,494,2.5\n571,495,2.0\n571,496,1.5\n571,497,2.0\n571,498,2.5\n571,499,3.0\n571,500,11.5\n571,501,11.0\n571,502,10.5\n571,503,10.0\n571,504,9.5\n571,505,9.0\n571,506,8.5\n571,507,8.0\n571,508,7.5\n571,509,7.0\n571,510,6.5\n571,511,6.0\n571,512,5.5\n571,513,5.0\n571,514,4.5\n571,515,4.0\n571,516,3.5\n571,517,3.0\n571,518,2.5\n571,519,2.0\n571,520,1.5\n571,521,1.0\n571,522,1.5\n571,523,2.0\n571,524,2.5\n571,525,11.0\n571,526,10.5\n571,527,10.0\n571,528,9.5\n571,529,9.0\n571,530,8.5\n571,531,8.0\n571,532,7.5\n571,533,7.0\n571,534,6.5\n571,535,6.0\n571,536,5.5\n571,537,5.0\n571,538,4.5\n571,539,4.0\n571,540,3.5\n571,541,3.0\n571,542,2.5\n571,543,2.0\n571,544,1.5\n571,545,1.0\n571,546,0.5\n571,547,1.0\n571,548,1.5\n571,549,2.0\n571,550,10.5\n571,551,10.0\n571,552,9.5\n571,553,9.0\n571,554,8.5\n571,555,8.0\n571,556,7.5\n571,557,7.0\n571,558,6.5\n571,559,6.0\n571,560,5.5\n571,561,5.0\n571,562,4.5\n571,563,4.0\n571,564,3.5\n571,565,3.0\n571,566,2.5\n571,567,2.0\n571,568,1.5\n571,569,1.0\n571,570,0.5\n571,571,0\n571,572,0.5\n571,573,1.0\n571,574,1.5\n571,575,11.0\n571,576,10.5\n571,577,10.0\n571,578,9.5\n571,579,9.0\n571,580,8.5\n571,581,8.0\n571,582,7.5\n571,583,7.0\n571,584,6.5\n571,585,6.0\n571,586,5.5\n571,587,5.0\n571,588,4.5\n571,589,4.0\n571,590,3.5\n571,591,3.0\n571,592,2.5\n571,593,2.0\n571,594,1.5\n571,595,1.0\n571,596,0.5\n571,597,1.0\n571,598,1.5\n571,599,2.0\n571,600,11.5\n571,601,11.0\n571,602,10.5\n571,603,10.0\n571,604,9.5\n571,605,9.0\n571,606,8.5\n571,607,8.0\n571,608,7.5\n571,609,7.0\n571,610,6.5\n571,611,6.0\n571,612,5.5\n571,613,5.0\n571,614,4.5\n571,615,4.0\n571,616,3.5\n571,617,3.0\n571,618,2.5\n571,619,2.0\n571,620,1.5\n571,621,1.0\n571,622,1.5\n571,623,2.0\n571,624,2.5\n572,0,22.0\n572,1,21.5\n572,2,21.0\n572,3,20.5\n572,4,20.0\n572,5,19.5\n572,6,19.0\n572,7,18.5\n572,8,18.0\n572,9,17.5\n572,10,17.0\n572,11,16.5\n572,12,16.0\n572,13,15.5\n572,14,15.0\n572,15,14.5\n572,16,14.0\n572,17,13.5\n572,18,13.0\n572,19,12.5\n572,20,12.0\n572,21,11.5\n572,22,11.0\n572,23,11.5\n572,24,12.0\n572,25,21.5\n572,26,21.0\n572,27,20.5\n572,28,20.0\n572,29,19.5\n572,30,19.0\n572,31,18.5\n572,32,18.0\n572,33,17.5\n572,34,17.0\n572,35,16.5\n572,36,16.0\n572,37,15.5\n572,38,15.0\n572,39,14.5\n572,40,14.0\n572,41,13.5\n572,42,13.0\n572,43,12.5\n572,44,12.0\n572,45,11.5\n572,46,11.0\n572,47,10.5\n572,48,11.0\n572,49,11.5\n572,50,21.0\n572,51,20.5\n572,52,20.0\n572,53,19.5\n572,54,19.0\n572,55,18.5\n572,56,18.0\n572,57,17.5\n572,58,17.0\n572,59,16.5\n572,60,16.0\n572,61,15.5\n572,62,15.0\n572,63,14.5\n572,64,14.0\n572,65,13.5\n572,66,13.0\n572,67,12.5\n572,68,12.0\n572,69,11.5\n572,70,11.0\n572,71,10.5\n572,72,10.0\n572,73,10.5\n572,74,11.0\n572,75,20.5\n572,76,20.0\n572,77,19.5\n572,78,19.0\n572,79,18.5\n572,80,18.0\n572,81,17.5\n572,82,17.0\n572,83,16.5\n572,84,16.0\n572,85,15.5\n572,86,15.0\n572,87,14.5\n572,88,14.0\n572,89,13.5\n572,90,13.0\n572,91,12.5\n572,92,12.0\n572,93,11.5\n572,94,11.0\n572,95,10.5\n572,96,10.0\n572,97,9.5\n572,98,10.0\n572,99,10.5\n572,100,20.0\n572,101,19.5\n572,102,19.0\n572,103,18.5\n572,104,18.0\n572,105,17.5\n572,106,17.0\n572,107,16.5\n572,108,16.0\n572,109,15.5\n572,110,15.0\n572,111,14.5\n572,112,14.0\n572,113,13.5\n572,114,13.0\n572,115,12.5\n572,116,12.0\n572,117,11.5\n572,118,11.0\n572,119,10.5\n572,120,10.0\n572,121,9.5\n572,122,9.0\n572,123,9.5\n572,124,10.0\n572,125,19.5\n572,126,19.0\n572,127,18.5\n572,128,18.0\n572,129,17.5\n572,130,17.0\n572,131,16.5\n572,132,16.0\n572,133,15.5\n572,134,15.0\n572,135,14.5\n572,136,14.0\n572,137,13.5\n572,138,13.0\n572,139,12.5\n572,140,12.0\n572,141,11.5\n572,142,11.0\n572,143,10.5\n572,144,10.0\n572,145,9.5\n572,146,9.0\n572,147,8.5\n572,148,9.0\n572,149,9.5\n572,150,19.0\n572,151,18.5\n572,152,18.0\n572,153,17.5\n572,154,17.0\n572,155,16.5\n572,156,16.0\n572,157,15.5\n572,158,15.0\n572,159,14.5\n572,160,14.0\n572,161,13.5\n572,162,13.0\n572,163,12.5\n572,164,12.0\n572,165,11.5\n572,166,11.0\n572,167,10.5\n572,168,10.0\n572,169,9.5\n572,170,9.0\n572,171,8.5\n572,172,8.0\n572,173,8.5\n572,174,9.0\n572,175,18.5\n572,176,18.0\n572,177,17.5\n572,178,17.0\n572,179,16.5\n572,180,16.0\n572,181,15.5\n572,182,15.0\n572,183,14.5\n572,184,14.0\n572,185,13.5\n572,186,13.0\n572,187,12.5\n572,188,12.0\n572,189,11.5\n572,190,11.0\n572,191,10.5\n572,192,10.0\n572,193,9.5\n572,194,9.0\n572,195,8.5\n572,196,8.0\n572,197,7.5\n572,198,8.0\n572,199,8.5\n572,200,18.0\n572,201,17.5\n572,202,17.0\n572,203,16.5\n572,204,16.0\n572,205,15.5\n572,206,15.0\n572,207,14.5\n572,208,14.0\n572,209,13.5\n572,210,13.0\n572,211,12.5\n572,212,12.0\n572,213,11.5\n572,214,11.0\n572,215,10.5\n572,216,10.0\n572,217,9.5\n572,218,9.0\n572,219,8.5\n572,220,8.0\n572,221,7.5\n572,222,7.0\n572,223,7.5\n572,224,8.0\n572,225,17.5\n572,226,17.0\n572,227,16.5\n572,228,16.0\n572,229,15.5\n572,230,15.0\n572,231,14.5\n572,232,14.0\n572,233,13.5\n572,234,13.0\n572,235,12.5\n572,236,12.0\n572,237,11.5\n572,238,11.0\n572,239,10.5\n572,240,10.0\n572,241,9.5\n572,242,9.0\n572,243,8.5\n572,244,8.0\n572,245,7.5\n572,246,7.0\n572,247,6.5\n572,248,7.0\n572,249,7.5\n572,250,17.0\n572,251,16.5\n572,252,16.0\n572,253,15.5\n572,254,15.0\n572,255,14.5\n572,256,14.0\n572,257,13.5\n572,258,13.0\n572,259,12.5\n572,260,12.0\n572,261,11.5\n572,262,11.0\n572,263,10.5\n572,264,10.0\n572,265,9.5\n572,266,9.0\n572,267,8.5\n572,268,8.0\n572,269,7.5\n572,270,7.0\n572,271,6.5\n572,272,6.0\n572,273,6.5\n572,274,7.0\n572,275,16.5\n572,276,16.0\n572,277,15.5\n572,278,15.0\n572,279,14.5\n572,280,14.0\n572,281,13.5\n572,282,13.0\n572,283,12.5\n572,284,12.0\n572,285,11.5\n572,286,11.0\n572,287,10.5\n572,288,10.0\n572,289,9.5\n572,290,9.0\n572,291,8.5\n572,292,8.0\n572,293,7.5\n572,294,7.0\n572,295,6.5\n572,296,6.0\n572,297,5.5\n572,298,6.0\n572,299,6.5\n572,300,16.0\n572,301,15.5\n572,302,15.0\n572,303,14.5\n572,304,14.0\n572,305,13.5\n572,306,13.0\n572,307,12.5\n572,308,12.0\n572,309,11.5\n572,310,11.0\n572,311,10.5\n572,312,10.0\n572,313,9.5\n572,314,9.0\n572,315,8.5\n572,316,8.0\n572,317,7.5\n572,318,7.0\n572,319,6.5\n572,320,6.0\n572,321,5.5\n572,322,5.0\n572,323,5.5\n572,324,6.0\n572,325,15.5\n572,326,15.0\n572,327,14.5\n572,328,14.0\n572,329,13.5\n572,330,13.0\n572,331,12.5\n572,332,12.0\n572,333,11.5\n572,334,11.0\n572,335,10.5\n572,336,10.0\n572,337,9.5\n572,338,9.0\n572,339,8.5\n572,340,8.0\n572,341,7.5\n572,342,7.0\n572,343,6.5\n572,344,6.0\n572,345,5.5\n572,346,5.0\n572,347,4.5\n572,348,5.0\n572,349,5.5\n572,350,15.0\n572,351,14.5\n572,352,14.0\n572,353,13.5\n572,354,13.0\n572,355,12.5\n572,356,12.0\n572,357,11.5\n572,358,11.0\n572,359,10.5\n572,360,10.0\n572,361,9.5\n572,362,9.0\n572,363,8.5\n572,364,8.0\n572,365,7.5\n572,366,7.0\n572,367,6.5\n572,368,6.0\n572,369,5.5\n572,370,5.0\n572,371,4.5\n572,372,4.0\n572,373,4.5\n572,374,5.0\n572,375,14.5\n572,376,14.0\n572,377,13.5\n572,378,13.0\n572,379,12.5\n572,380,12.0\n572,381,11.5\n572,382,11.0\n572,383,10.5\n572,384,10.0\n572,385,9.5\n572,386,9.0\n572,387,8.5\n572,388,8.0\n572,389,7.5\n572,390,7.0\n572,391,6.5\n572,392,6.0\n572,393,5.5\n572,394,5.0\n572,395,4.5\n572,396,4.0\n572,397,3.5\n572,398,4.0\n572,399,4.5\n572,400,14.0\n572,401,13.5\n572,402,13.0\n572,403,12.5\n572,404,12.0\n572,405,11.5\n572,406,11.0\n572,407,10.5\n572,408,10.0\n572,409,9.5\n572,410,9.0\n572,411,8.5\n572,412,8.0\n572,413,7.5\n572,414,7.0\n572,415,6.5\n572,416,6.0\n572,417,5.5\n572,418,5.0\n572,419,4.5\n572,420,4.0\n572,421,3.5\n572,422,3.0\n572,423,3.5\n572,424,4.0\n572,425,13.5\n572,426,13.0\n572,427,12.5\n572,428,12.0\n572,429,11.5\n572,430,11.0\n572,431,10.5\n572,432,10.0\n572,433,9.5\n572,434,9.0\n572,435,8.5\n572,436,8.0\n572,437,7.5\n572,438,7.0\n572,439,6.5\n572,440,6.0\n572,441,5.5\n572,442,5.0\n572,443,4.5\n572,444,4.0\n572,445,3.5\n572,446,3.0\n572,447,2.5\n572,448,3.0\n572,449,3.5\n572,450,13.0\n572,451,12.5\n572,452,12.0\n572,453,11.5\n572,454,11.0\n572,455,10.5\n572,456,10.0\n572,457,9.5\n572,458,9.0\n572,459,8.5\n572,460,8.0\n572,461,7.5\n572,462,7.0\n572,463,6.5\n572,464,6.0\n572,465,5.5\n572,466,5.0\n572,467,4.5\n572,468,4.0\n572,469,3.5\n572,470,3.0\n572,471,2.5\n572,472,2.0\n572,473,2.5\n572,474,3.0\n572,475,12.5\n572,476,12.0\n572,477,11.5\n572,478,11.0\n572,479,10.5\n572,480,10.0\n572,481,9.5\n572,482,9.0\n572,483,8.5\n572,484,8.0\n572,485,7.5\n572,486,7.0\n572,487,6.5\n572,488,6.0\n572,489,5.5\n572,490,5.0\n572,491,4.5\n572,492,4.0\n572,493,3.5\n572,494,3.0\n572,495,2.5\n572,496,2.0\n572,497,1.5\n572,498,2.0\n572,499,2.5\n572,500,12.0\n572,501,11.5\n572,502,11.0\n572,503,10.5\n572,504,10.0\n572,505,9.5\n572,506,9.0\n572,507,8.5\n572,508,8.0\n572,509,7.5\n572,510,7.0\n572,511,6.5\n572,512,6.0\n572,513,5.5\n572,514,5.0\n572,515,4.5\n572,516,4.0\n572,517,3.5\n572,518,3.0\n572,519,2.5\n572,520,2.0\n572,521,1.5\n572,522,1.0\n572,523,1.5\n572,524,2.0\n572,525,11.5\n572,526,11.0\n572,527,10.5\n572,528,10.0\n572,529,9.5\n572,530,9.0\n572,531,8.5\n572,532,8.0\n572,533,7.5\n572,534,7.0\n572,535,6.5\n572,536,6.0\n572,537,5.5\n572,538,5.0\n572,539,4.5\n572,540,4.0\n572,541,3.5\n572,542,3.0\n572,543,2.5\n572,544,2.0\n572,545,1.5\n572,546,1.0\n572,547,0.5\n572,548,1.0\n572,549,1.5\n572,550,11.0\n572,551,10.5\n572,552,10.0\n572,553,9.5\n572,554,9.0\n572,555,8.5\n572,556,8.0\n572,557,7.5\n572,558,7.0\n572,559,6.5\n572,560,6.0\n572,561,5.5\n572,562,5.0\n572,563,4.5\n572,564,4.0\n572,565,3.5\n572,566,3.0\n572,567,2.5\n572,568,2.0\n572,569,1.5\n572,570,1.0\n572,571,0.5\n572,572,0\n572,573,0.5\n572,574,1.0\n572,575,11.5\n572,576,11.0\n572,577,10.5\n572,578,10.0\n572,579,9.5\n572,580,9.0\n572,581,8.5\n572,582,8.0\n572,583,7.5\n572,584,7.0\n572,585,6.5\n572,586,6.0\n572,587,5.5\n572,588,5.0\n572,589,4.5\n572,590,4.0\n572,591,3.5\n572,592,3.0\n572,593,2.5\n572,594,2.0\n572,595,1.5\n572,596,1.0\n572,597,0.5\n572,598,1.0\n572,599,1.5\n572,600,12.0\n572,601,11.5\n572,602,11.0\n572,603,10.5\n572,604,10.0\n572,605,9.5\n572,606,9.0\n572,607,8.5\n572,608,8.0\n572,609,7.5\n572,610,7.0\n572,611,6.5\n572,612,6.0\n572,613,5.5\n572,614,5.0\n572,615,4.5\n572,616,4.0\n572,617,3.5\n572,618,3.0\n572,619,2.5\n572,620,2.0\n572,621,1.5\n572,622,1.0\n572,623,1.5\n572,624,2.0\n573,0,22.5\n573,1,22.0\n573,2,21.5\n573,3,21.0\n573,4,20.5\n573,5,20.0\n573,6,19.5\n573,7,19.0\n573,8,18.5\n573,9,18.0\n573,10,17.5\n573,11,17.0\n573,12,16.5\n573,13,16.0\n573,14,15.5\n573,15,15.0\n573,16,14.5\n573,17,14.0\n573,18,13.5\n573,19,13.0\n573,20,12.5\n573,21,12.0\n573,22,11.5\n573,23,11.0\n573,24,11.5\n573,25,22.0\n573,26,21.5\n573,27,21.0\n573,28,20.5\n573,29,20.0\n573,30,19.5\n573,31,19.0\n573,32,18.5\n573,33,18.0\n573,34,17.5\n573,35,17.0\n573,36,16.5\n573,37,16.0\n573,38,15.5\n573,39,15.0\n573,40,14.5\n573,41,14.0\n573,42,13.5\n573,43,13.0\n573,44,12.5\n573,45,12.0\n573,46,11.5\n573,47,11.0\n573,48,10.5\n573,49,11.0\n573,50,21.5\n573,51,21.0\n573,52,20.5\n573,53,20.0\n573,54,19.5\n573,55,19.0\n573,56,18.5\n573,57,18.0\n573,58,17.5\n573,59,17.0\n573,60,16.5\n573,61,16.0\n573,62,15.5\n573,63,15.0\n573,64,14.5\n573,65,14.0\n573,66,13.5\n573,67,13.0\n573,68,12.5\n573,69,12.0\n573,70,11.5\n573,71,11.0\n573,72,10.5\n573,73,10.0\n573,74,10.5\n573,75,21.0\n573,76,20.5\n573,77,20.0\n573,78,19.5\n573,79,19.0\n573,80,18.5\n573,81,18.0\n573,82,17.5\n573,83,17.0\n573,84,16.5\n573,85,16.0\n573,86,15.5\n573,87,15.0\n573,88,14.5\n573,89,14.0\n573,90,13.5\n573,91,13.0\n573,92,12.5\n573,93,12.0\n573,94,11.5\n573,95,11.0\n573,96,10.5\n573,97,10.0\n573,98,9.5\n573,99,10.0\n573,100,20.5\n573,101,20.0\n573,102,19.5\n573,103,19.0\n573,104,18.5\n573,105,18.0\n573,106,17.5\n573,107,17.0\n573,108,16.5\n573,109,16.0\n573,110,15.5\n573,111,15.0\n573,112,14.5\n573,113,14.0\n573,114,13.5\n573,115,13.0\n573,116,12.5\n573,117,12.0\n573,118,11.5\n573,119,11.0\n573,120,10.5\n573,121,10.0\n573,122,9.5\n573,123,9.0\n573,124,9.5\n573,125,20.0\n573,126,19.5\n573,127,19.0\n573,128,18.5\n573,129,18.0\n573,130,17.5\n573,131,17.0\n573,132,16.5\n573,133,16.0\n573,134,15.5\n573,135,15.0\n573,136,14.5\n573,137,14.0\n573,138,13.5\n573,139,13.0\n573,140,12.5\n573,141,12.0\n573,142,11.5\n573,143,11.0\n573,144,10.5\n573,145,10.0\n573,146,9.5\n573,147,9.0\n573,148,8.5\n573,149,9.0\n573,150,19.5\n573,151,19.0\n573,152,18.5\n573,153,18.0\n573,154,17.5\n573,155,17.0\n573,156,16.5\n573,157,16.0\n573,158,15.5\n573,159,15.0\n573,160,14.5\n573,161,14.0\n573,162,13.5\n573,163,13.0\n573,164,12.5\n573,165,12.0\n573,166,11.5\n573,167,11.0\n573,168,10.5\n573,169,10.0\n573,170,9.5\n573,171,9.0\n573,172,8.5\n573,173,8.0\n573,174,8.5\n573,175,19.0\n573,176,18.5\n573,177,18.0\n573,178,17.5\n573,179,17.0\n573,180,16.5\n573,181,16.0\n573,182,15.5\n573,183,15.0\n573,184,14.5\n573,185,14.0\n573,186,13.5\n573,187,13.0\n573,188,12.5\n573,189,12.0\n573,190,11.5\n573,191,11.0\n573,192,10.5\n573,193,10.0\n573,194,9.5\n573,195,9.0\n573,196,8.5\n573,197,8.0\n573,198,7.5\n573,199,8.0\n573,200,18.5\n573,201,18.0\n573,202,17.5\n573,203,17.0\n573,204,16.5\n573,205,16.0\n573,206,15.5\n573,207,15.0\n573,208,14.5\n573,209,14.0\n573,210,13.5\n573,211,13.0\n573,212,12.5\n573,213,12.0\n573,214,11.5\n573,215,11.0\n573,216,10.5\n573,217,10.0\n573,218,9.5\n573,219,9.0\n573,220,8.5\n573,221,8.0\n573,222,7.5\n573,223,7.0\n573,224,7.5\n573,225,18.0\n573,226,17.5\n573,227,17.0\n573,228,16.5\n573,229,16.0\n573,230,15.5\n573,231,15.0\n573,232,14.5\n573,233,14.0\n573,234,13.5\n573,235,13.0\n573,236,12.5\n573,237,12.0\n573,238,11.5\n573,239,11.0\n573,240,10.5\n573,241,10.0\n573,242,9.5\n573,243,9.0\n573,244,8.5\n573,245,8.0\n573,246,7.5\n573,247,7.0\n573,248,6.5\n573,249,7.0\n573,250,17.5\n573,251,17.0\n573,252,16.5\n573,253,16.0\n573,254,15.5\n573,255,15.0\n573,256,14.5\n573,257,14.0\n573,258,13.5\n573,259,13.0\n573,260,12.5\n573,261,12.0\n573,262,11.5\n573,263,11.0\n573,264,10.5\n573,265,10.0\n573,266,9.5\n573,267,9.0\n573,268,8.5\n573,269,8.0\n573,270,7.5\n573,271,7.0\n573,272,6.5\n573,273,6.0\n573,274,6.5\n573,275,17.0\n573,276,16.5\n573,277,16.0\n573,278,15.5\n573,279,15.0\n573,280,14.5\n573,281,14.0\n573,282,13.5\n573,283,13.0\n573,284,12.5\n573,285,12.0\n573,286,11.5\n573,287,11.0\n573,288,10.5\n573,289,10.0\n573,290,9.5\n573,291,9.0\n573,292,8.5\n573,293,8.0\n573,294,7.5\n573,295,7.0\n573,296,6.5\n573,297,6.0\n573,298,5.5\n573,299,6.0\n573,300,16.5\n573,301,16.0\n573,302,15.5\n573,303,15.0\n573,304,14.5\n573,305,14.0\n573,306,13.5\n573,307,13.0\n573,308,12.5\n573,309,12.0\n573,310,11.5\n573,311,11.0\n573,312,10.5\n573,313,10.0\n573,314,9.5\n573,315,9.0\n573,316,8.5\n573,317,8.0\n573,318,7.5\n573,319,7.0\n573,320,6.5\n573,321,6.0\n573,322,5.5\n573,323,5.0\n573,324,5.5\n573,325,16.0\n573,326,15.5\n573,327,15.0\n573,328,14.5\n573,329,14.0\n573,330,13.5\n573,331,13.0\n573,332,12.5\n573,333,12.0\n573,334,11.5\n573,335,11.0\n573,336,10.5\n573,337,10.0\n573,338,9.5\n573,339,9.0\n573,340,8.5\n573,341,8.0\n573,342,7.5\n573,343,7.0\n573,344,6.5\n573,345,6.0\n573,346,5.5\n573,347,5.0\n573,348,4.5\n573,349,5.0\n573,350,15.5\n573,351,15.0\n573,352,14.5\n573,353,14.0\n573,354,13.5\n573,355,13.0\n573,356,12.5\n573,357,12.0\n573,358,11.5\n573,359,11.0\n573,360,10.5\n573,361,10.0\n573,362,9.5\n573,363,9.0\n573,364,8.5\n573,365,8.0\n573,366,7.5\n573,367,7.0\n573,368,6.5\n573,369,6.0\n573,370,5.5\n573,371,5.0\n573,372,4.5\n573,373,4.0\n573,374,4.5\n573,375,15.0\n573,376,14.5\n573,377,14.0\n573,378,13.5\n573,379,13.0\n573,380,12.5\n573,381,12.0\n573,382,11.5\n573,383,11.0\n573,384,10.5\n573,385,10.0\n573,386,9.5\n573,387,9.0\n573,388,8.5\n573,389,8.0\n573,390,7.5\n573,391,7.0\n573,392,6.5\n573,393,6.0\n573,394,5.5\n573,395,5.0\n573,396,4.5\n573,397,4.0\n573,398,3.5\n573,399,4.0\n573,400,14.5\n573,401,14.0\n573,402,13.5\n573,403,13.0\n573,404,12.5\n573,405,12.0\n573,406,11.5\n573,407,11.0\n573,408,10.5\n573,409,10.0\n573,410,9.5\n573,411,9.0\n573,412,8.5\n573,413,8.0\n573,414,7.5\n573,415,7.0\n573,416,6.5\n573,417,6.0\n573,418,5.5\n573,419,5.0\n573,420,4.5\n573,421,4.0\n573,422,3.5\n573,423,3.0\n573,424,3.5\n573,425,14.0\n573,426,13.5\n573,427,13.0\n573,428,12.5\n573,429,12.0\n573,430,11.5\n573,431,11.0\n573,432,10.5\n573,433,10.0\n573,434,9.5\n573,435,9.0\n573,436,8.5\n573,437,8.0\n573,438,7.5\n573,439,7.0\n573,440,6.5\n573,441,6.0\n573,442,5.5\n573,443,5.0\n573,444,4.5\n573,445,4.0\n573,446,3.5\n573,447,3.0\n573,448,2.5\n573,449,3.0\n573,450,13.5\n573,451,13.0\n573,452,12.5\n573,453,12.0\n573,454,11.5\n573,455,11.0\n573,456,10.5\n573,457,10.0\n573,458,9.5\n573,459,9.0\n573,460,8.5\n573,461,8.0\n573,462,7.5\n573,463,7.0\n573,464,6.5\n573,465,6.0\n573,466,5.5\n573,467,5.0\n573,468,4.5\n573,469,4.0\n573,470,3.5\n573,471,3.0\n573,472,2.5\n573,473,2.0\n573,474,2.5\n573,475,13.0\n573,476,12.5\n573,477,12.0\n573,478,11.5\n573,479,11.0\n573,480,10.5\n573,481,10.0\n573,482,9.5\n573,483,9.0\n573,484,8.5\n573,485,8.0\n573,486,7.5\n573,487,7.0\n573,488,6.5\n573,489,6.0\n573,490,5.5\n573,491,5.0\n573,492,4.5\n573,493,4.0\n573,494,3.5\n573,495,3.0\n573,496,2.5\n573,497,2.0\n573,498,1.5\n573,499,2.0\n573,500,12.5\n573,501,12.0\n573,502,11.5\n573,503,11.0\n573,504,10.5\n573,505,10.0\n573,506,9.5\n573,507,9.0\n573,508,8.5\n573,509,8.0\n573,510,7.5\n573,511,7.0\n573,512,6.5\n573,513,6.0\n573,514,5.5\n573,515,5.0\n573,516,4.5\n573,517,4.0\n573,518,3.5\n573,519,3.0\n573,520,2.5\n573,521,2.0\n573,522,1.5\n573,523,1.0\n573,524,1.5\n573,525,12.0\n573,526,11.5\n573,527,11.0\n573,528,10.5\n573,529,10.0\n573,530,9.5\n573,531,9.0\n573,532,8.5\n573,533,8.0\n573,534,7.5\n573,535,7.0\n573,536,6.5\n573,537,6.0\n573,538,5.5\n573,539,5.0\n573,540,4.5\n573,541,4.0\n573,542,3.5\n573,543,3.0\n573,544,2.5\n573,545,2.0\n573,546,1.5\n573,547,1.0\n573,548,0.5\n573,549,1.0\n573,550,11.5\n573,551,11.0\n573,552,10.5\n573,553,10.0\n573,554,9.5\n573,555,9.0\n573,556,8.5\n573,557,8.0\n573,558,7.5\n573,559,7.0\n573,560,6.5\n573,561,6.0\n573,562,5.5\n573,563,5.0\n573,564,4.5\n573,565,4.0\n573,566,3.5\n573,567,3.0\n573,568,2.5\n573,569,2.0\n573,570,1.5\n573,571,1.0\n573,572,0.5\n573,573,0\n573,574,0.5\n573,575,12.0\n573,576,11.5\n573,577,11.0\n573,578,10.5\n573,579,10.0\n573,580,9.5\n573,581,9.0\n573,582,8.5\n573,583,8.0\n573,584,7.5\n573,585,7.0\n573,586,6.5\n573,587,6.0\n573,588,5.5\n573,589,5.0\n573,590,4.5\n573,591,4.0\n573,592,3.5\n573,593,3.0\n573,594,2.5\n573,595,2.0\n573,596,1.5\n573,597,1.0\n573,598,0.5\n573,599,1.0\n573,600,12.5\n573,601,12.0\n573,602,11.5\n573,603,11.0\n573,604,10.5\n573,605,10.0\n573,606,9.5\n573,607,9.0\n573,608,8.5\n573,609,8.0\n573,610,7.5\n573,611,7.0\n573,612,6.5\n573,613,6.0\n573,614,5.5\n573,615,5.0\n573,616,4.5\n573,617,4.0\n573,618,3.5\n573,619,3.0\n573,620,2.5\n573,621,2.0\n573,622,1.5\n573,623,1.0\n573,624,1.5\n574,0,23.0\n574,1,22.5\n574,2,22.0\n574,3,21.5\n574,4,21.0\n574,5,20.5\n574,6,20.0\n574,7,19.5\n574,8,19.0\n574,9,18.5\n574,10,18.0\n574,11,17.5\n574,12,17.0\n574,13,16.5\n574,14,16.0\n574,15,15.5\n574,16,15.0\n574,17,14.5\n574,18,14.0\n574,19,13.5\n574,20,13.0\n574,21,12.5\n574,22,12.0\n574,23,11.5\n574,24,11.0\n574,25,22.5\n574,26,22.0\n574,27,21.5\n574,28,21.0\n574,29,20.5\n574,30,20.0\n574,31,19.5\n574,32,19.0\n574,33,18.5\n574,34,18.0\n574,35,17.5\n574,36,17.0\n574,37,16.5\n574,38,16.0\n574,39,15.5\n574,40,15.0\n574,41,14.5\n574,42,14.0\n574,43,13.5\n574,44,13.0\n574,45,12.5\n574,46,12.0\n574,47,11.5\n574,48,11.0\n574,49,10.5\n574,50,22.0\n574,51,21.5\n574,52,21.0\n574,53,20.5\n574,54,20.0\n574,55,19.5\n574,56,19.0\n574,57,18.5\n574,58,18.0\n574,59,17.5\n574,60,17.0\n574,61,16.5\n574,62,16.0\n574,63,15.5\n574,64,15.0\n574,65,14.5\n574,66,14.0\n574,67,13.5\n574,68,13.0\n574,69,12.5\n574,70,12.0\n574,71,11.5\n574,72,11.0\n574,73,10.5\n574,74,10.0\n574,75,21.5\n574,76,21.0\n574,77,20.5\n574,78,20.0\n574,79,19.5\n574,80,19.0\n574,81,18.5\n574,82,18.0\n574,83,17.5\n574,84,17.0\n574,85,16.5\n574,86,16.0\n574,87,15.5\n574,88,15.0\n574,89,14.5\n574,90,14.0\n574,91,13.5\n574,92,13.0\n574,93,12.5\n574,94,12.0\n574,95,11.5\n574,96,11.0\n574,97,10.5\n574,98,10.0\n574,99,9.5\n574,100,21.0\n574,101,20.5\n574,102,20.0\n574,103,19.5\n574,104,19.0\n574,105,18.5\n574,106,18.0\n574,107,17.5\n574,108,17.0\n574,109,16.5\n574,110,16.0\n574,111,15.5\n574,112,15.0\n574,113,14.5\n574,114,14.0\n574,115,13.5\n574,116,13.0\n574,117,12.5\n574,118,12.0\n574,119,11.5\n574,120,11.0\n574,121,10.5\n574,122,10.0\n574,123,9.5\n574,124,9.0\n574,125,20.5\n574,126,20.0\n574,127,19.5\n574,128,19.0\n574,129,18.5\n574,130,18.0\n574,131,17.5\n574,132,17.0\n574,133,16.5\n574,134,16.0\n574,135,15.5\n574,136,15.0\n574,137,14.5\n574,138,14.0\n574,139,13.5\n574,140,13.0\n574,141,12.5\n574,142,12.0\n574,143,11.5\n574,144,11.0\n574,145,10.5\n574,146,10.0\n574,147,9.5\n574,148,9.0\n574,149,8.5\n574,150,20.0\n574,151,19.5\n574,152,19.0\n574,153,18.5\n574,154,18.0\n574,155,17.5\n574,156,17.0\n574,157,16.5\n574,158,16.0\n574,159,15.5\n574,160,15.0\n574,161,14.5\n574,162,14.0\n574,163,13.5\n574,164,13.0\n574,165,12.5\n574,166,12.0\n574,167,11.5\n574,168,11.0\n574,169,10.5\n574,170,10.0\n574,171,9.5\n574,172,9.0\n574,173,8.5\n574,174,8.0\n574,175,19.5\n574,176,19.0\n574,177,18.5\n574,178,18.0\n574,179,17.5\n574,180,17.0\n574,181,16.5\n574,182,16.0\n574,183,15.5\n574,184,15.0\n574,185,14.5\n574,186,14.0\n574,187,13.5\n574,188,13.0\n574,189,12.5\n574,190,12.0\n574,191,11.5\n574,192,11.0\n574,193,10.5\n574,194,10.0\n574,195,9.5\n574,196,9.0\n574,197,8.5\n574,198,8.0\n574,199,7.5\n574,200,19.0\n574,201,18.5\n574,202,18.0\n574,203,17.5\n574,204,17.0\n574,205,16.5\n574,206,16.0\n574,207,15.5\n574,208,15.0\n574,209,14.5\n574,210,14.0\n574,211,13.5\n574,212,13.0\n574,213,12.5\n574,214,12.0\n574,215,11.5\n574,216,11.0\n574,217,10.5\n574,218,10.0\n574,219,9.5\n574,220,9.0\n574,221,8.5\n574,222,8.0\n574,223,7.5\n574,224,7.0\n574,225,18.5\n574,226,18.0\n574,227,17.5\n574,228,17.0\n574,229,16.5\n574,230,16.0\n574,231,15.5\n574,232,15.0\n574,233,14.5\n574,234,14.0\n574,235,13.5\n574,236,13.0\n574,237,12.5\n574,238,12.0\n574,239,11.5\n574,240,11.0\n574,241,10.5\n574,242,10.0\n574,243,9.5\n574,244,9.0\n574,245,8.5\n574,246,8.0\n574,247,7.5\n574,248,7.0\n574,249,6.5\n574,250,18.0\n574,251,17.5\n574,252,17.0\n574,253,16.5\n574,254,16.0\n574,255,15.5\n574,256,15.0\n574,257,14.5\n574,258,14.0\n574,259,13.5\n574,260,13.0\n574,261,12.5\n574,262,12.0\n574,263,11.5\n574,264,11.0\n574,265,10.5\n574,266,10.0\n574,267,9.5\n574,268,9.0\n574,269,8.5\n574,270,8.0\n574,271,7.5\n574,272,7.0\n574,273,6.5\n574,274,6.0\n574,275,17.5\n574,276,17.0\n574,277,16.5\n574,278,16.0\n574,279,15.5\n574,280,15.0\n574,281,14.5\n574,282,14.0\n574,283,13.5\n574,284,13.0\n574,285,12.5\n574,286,12.0\n574,287,11.5\n574,288,11.0\n574,289,10.5\n574,290,10.0\n574,291,9.5\n574,292,9.0\n574,293,8.5\n574,294,8.0\n574,295,7.5\n574,296,7.0\n574,297,6.5\n574,298,6.0\n574,299,5.5\n574,300,17.0\n574,301,16.5\n574,302,16.0\n574,303,15.5\n574,304,15.0\n574,305,14.5\n574,306,14.0\n574,307,13.5\n574,308,13.0\n574,309,12.5\n574,310,12.0\n574,311,11.5\n574,312,11.0\n574,313,10.5\n574,314,10.0\n574,315,9.5\n574,316,9.0\n574,317,8.5\n574,318,8.0\n574,319,7.5\n574,320,7.0\n574,321,6.5\n574,322,6.0\n574,323,5.5\n574,324,5.0\n574,325,16.5\n574,326,16.0\n574,327,15.5\n574,328,15.0\n574,329,14.5\n574,330,14.0\n574,331,13.5\n574,332,13.0\n574,333,12.5\n574,334,12.0\n574,335,11.5\n574,336,11.0\n574,337,10.5\n574,338,10.0\n574,339,9.5\n574,340,9.0\n574,341,8.5\n574,342,8.0\n574,343,7.5\n574,344,7.0\n574,345,6.5\n574,346,6.0\n574,347,5.5\n574,348,5.0\n574,349,4.5\n574,350,16.0\n574,351,15.5\n574,352,15.0\n574,353,14.5\n574,354,14.0\n574,355,13.5\n574,356,13.0\n574,357,12.5\n574,358,12.0\n574,359,11.5\n574,360,11.0\n574,361,10.5\n574,362,10.0\n574,363,9.5\n574,364,9.0\n574,365,8.5\n574,366,8.0\n574,367,7.5\n574,368,7.0\n574,369,6.5\n574,370,6.0\n574,371,5.5\n574,372,5.0\n574,373,4.5\n574,374,4.0\n574,375,15.5\n574,376,15.0\n574,377,14.5\n574,378,14.0\n574,379,13.5\n574,380,13.0\n574,381,12.5\n574,382,12.0\n574,383,11.5\n574,384,11.0\n574,385,10.5\n574,386,10.0\n574,387,9.5\n574,388,9.0\n574,389,8.5\n574,390,8.0\n574,391,7.5\n574,392,7.0\n574,393,6.5\n574,394,6.0\n574,395,5.5\n574,396,5.0\n574,397,4.5\n574,398,4.0\n574,399,3.5\n574,400,15.0\n574,401,14.5\n574,402,14.0\n574,403,13.5\n574,404,13.0\n574,405,12.5\n574,406,12.0\n574,407,11.5\n574,408,11.0\n574,409,10.5\n574,410,10.0\n574,411,9.5\n574,412,9.0\n574,413,8.5\n574,414,8.0\n574,415,7.5\n574,416,7.0\n574,417,6.5\n574,418,6.0\n574,419,5.5\n574,420,5.0\n574,421,4.5\n574,422,4.0\n574,423,3.5\n574,424,3.0\n574,425,14.5\n574,426,14.0\n574,427,13.5\n574,428,13.0\n574,429,12.5\n574,430,12.0\n574,431,11.5\n574,432,11.0\n574,433,10.5\n574,434,10.0\n574,435,9.5\n574,436,9.0\n574,437,8.5\n574,438,8.0\n574,439,7.5\n574,440,7.0\n574,441,6.5\n574,442,6.0\n574,443,5.5\n574,444,5.0\n574,445,4.5\n574,446,4.0\n574,447,3.5\n574,448,3.0\n574,449,2.5\n574,450,14.0\n574,451,13.5\n574,452,13.0\n574,453,12.5\n574,454,12.0\n574,455,11.5\n574,456,11.0\n574,457,10.5\n574,458,10.0\n574,459,9.5\n574,460,9.0\n574,461,8.5\n574,462,8.0\n574,463,7.5\n574,464,7.0\n574,465,6.5\n574,466,6.0\n574,467,5.5\n574,468,5.0\n574,469,4.5\n574,470,4.0\n574,471,3.5\n574,472,3.0\n574,473,2.5\n574,474,2.0\n574,475,13.5\n574,476,13.0\n574,477,12.5\n574,478,12.0\n574,479,11.5\n574,480,11.0\n574,481,10.5\n574,482,10.0\n574,483,9.5\n574,484,9.0\n574,485,8.5\n574,486,8.0\n574,487,7.5\n574,488,7.0\n574,489,6.5\n574,490,6.0\n574,491,5.5\n574,492,5.0\n574,493,4.5\n574,494,4.0\n574,495,3.5\n574,496,3.0\n574,497,2.5\n574,498,2.0\n574,499,1.5\n574,500,13.0\n574,501,12.5\n574,502,12.0\n574,503,11.5\n574,504,11.0\n574,505,10.5\n574,506,10.0\n574,507,9.5\n574,508,9.0\n574,509,8.5\n574,510,8.0\n574,511,7.5\n574,512,7.0\n574,513,6.5\n574,514,6.0\n574,515,5.5\n574,516,5.0\n574,517,4.5\n574,518,4.0\n574,519,3.5\n574,520,3.0\n574,521,2.5\n574,522,2.0\n574,523,1.5\n574,524,1.0\n574,525,12.5\n574,526,12.0\n574,527,11.5\n574,528,11.0\n574,529,10.5\n574,530,10.0\n574,531,9.5\n574,532,9.0\n574,533,8.5\n574,534,8.0\n574,535,7.5\n574,536,7.0\n574,537,6.5\n574,538,6.0\n574,539,5.5\n574,540,5.0\n574,541,4.5\n574,542,4.0\n574,543,3.5\n574,544,3.0\n574,545,2.5\n574,546,2.0\n574,547,1.5\n574,548,1.0\n574,549,0.5\n574,550,12.0\n574,551,11.5\n574,552,11.0\n574,553,10.5\n574,554,10.0\n574,555,9.5\n574,556,9.0\n574,557,8.5\n574,558,8.0\n574,559,7.5\n574,560,7.0\n574,561,6.5\n574,562,6.0\n574,563,5.5\n574,564,5.0\n574,565,4.5\n574,566,4.0\n574,567,3.5\n574,568,3.0\n574,569,2.5\n574,570,2.0\n574,571,1.5\n574,572,1.0\n574,573,0.5\n574,574,0\n574,575,12.5\n574,576,12.0\n574,577,11.5\n574,578,11.0\n574,579,10.5\n574,580,10.0\n574,581,9.5\n574,582,9.0\n574,583,8.5\n574,584,8.0\n574,585,7.5\n574,586,7.0\n574,587,6.5\n574,588,6.0\n574,589,5.5\n574,590,5.0\n574,591,4.5\n574,592,4.0\n574,593,3.5\n574,594,3.0\n574,595,2.5\n574,596,2.0\n574,597,1.5\n574,598,1.0\n574,599,0.5\n574,600,13.0\n574,601,12.5\n574,602,12.0\n574,603,11.5\n574,604,11.0\n574,605,10.5\n574,606,10.0\n574,607,9.5\n574,608,9.0\n574,609,8.5\n574,610,8.0\n574,611,7.5\n574,612,7.0\n574,613,6.5\n574,614,6.0\n574,615,5.5\n574,616,5.0\n574,617,4.5\n574,618,4.0\n574,619,3.5\n574,620,3.0\n574,621,2.5\n574,622,2.0\n574,623,1.5\n574,624,1.0\n575,0,11.5\n575,1,12.0\n575,2,12.5\n575,3,13.0\n575,4,13.5\n575,5,14.0\n575,6,14.5\n575,7,15.0\n575,8,15.5\n575,9,16.0\n575,10,16.5\n575,11,17.0\n575,12,17.5\n575,13,18.0\n575,14,18.5\n575,15,19.0\n575,16,19.5\n575,17,20.0\n575,18,20.5\n575,19,21.0\n575,20,21.5\n575,21,22.0\n575,22,22.5\n575,23,23.0\n575,24,23.5\n575,25,11.0\n575,26,11.5\n575,27,12.0\n575,28,12.5\n575,29,13.0\n575,30,13.5\n575,31,14.0\n575,32,14.5\n575,33,15.0\n575,34,15.5\n575,35,16.0\n575,36,16.5\n575,37,17.0\n575,38,17.5\n575,39,18.0\n575,40,18.5\n575,41,19.0\n575,42,19.5\n575,43,20.0\n575,44,20.5\n575,45,21.0\n575,46,21.5\n575,47,22.0\n575,48,22.5\n575,49,23.0\n575,50,10.5\n575,51,11.0\n575,52,11.5\n575,53,12.0\n575,54,12.5\n575,55,13.0\n575,56,13.5\n575,57,14.0\n575,58,14.5\n575,59,15.0\n575,60,15.5\n575,61,16.0\n575,62,16.5\n575,63,17.0\n575,64,17.5\n575,65,18.0\n575,66,18.5\n575,67,19.0\n575,68,19.5\n575,69,20.0\n575,70,20.5\n575,71,21.0\n575,72,21.5\n575,73,22.0\n575,74,22.5\n575,75,10.0\n575,76,10.5\n575,77,11.0\n575,78,11.5\n575,79,12.0\n575,80,12.5\n575,81,13.0\n575,82,13.5\n575,83,14.0\n575,84,14.5\n575,85,15.0\n575,86,15.5\n575,87,16.0\n575,88,16.5\n575,89,17.0\n575,90,17.5\n575,91,18.0\n575,92,18.5\n575,93,19.0\n575,94,19.5\n575,95,20.0\n575,96,20.5\n575,97,21.0\n575,98,21.5\n575,99,22.0\n575,100,9.5\n575,101,10.0\n575,102,10.5\n575,103,11.0\n575,104,11.5\n575,105,12.0\n575,106,12.5\n575,107,13.0\n575,108,13.5\n575,109,14.0\n575,110,14.5\n575,111,15.0\n575,112,15.5\n575,113,16.0\n575,114,16.5\n575,115,17.0\n575,116,17.5\n575,117,18.0\n575,118,18.5\n575,119,19.0\n575,120,19.5\n575,121,20.0\n575,122,20.5\n575,123,21.0\n575,124,21.5\n575,125,9.0\n575,126,9.5\n575,127,10.0\n575,128,10.5\n575,129,11.0\n575,130,11.5\n575,131,12.0\n575,132,12.5\n575,133,13.0\n575,134,13.5\n575,135,14.0\n575,136,14.5\n575,137,15.0\n575,138,15.5\n575,139,16.0\n575,140,16.5\n575,141,17.0\n575,142,17.5\n575,143,18.0\n575,144,18.5\n575,145,19.0\n575,146,19.5\n575,147,20.0\n575,148,20.5\n575,149,21.0\n575,150,8.5\n575,151,9.0\n575,152,9.5\n575,153,10.0\n575,154,10.5\n575,155,11.0\n575,156,11.5\n575,157,12.0\n575,158,12.5\n575,159,13.0\n575,160,13.5\n575,161,14.0\n575,162,14.5\n575,163,15.0\n575,164,15.5\n575,165,16.0\n575,166,16.5\n575,167,17.0\n575,168,17.5\n575,169,18.0\n575,170,18.5\n575,171,19.0\n575,172,19.5\n575,173,20.0\n575,174,20.5\n575,175,8.0\n575,176,8.5\n575,177,9.0\n575,178,9.5\n575,179,10.0\n575,180,10.5\n575,181,11.0\n575,182,11.5\n575,183,12.0\n575,184,12.5\n575,185,13.0\n575,186,13.5\n575,187,14.0\n575,188,14.5\n575,189,15.0\n575,190,15.5\n575,191,16.0\n575,192,16.5\n575,193,17.0\n575,194,17.5\n575,195,18.0\n575,196,18.5\n575,197,19.0\n575,198,19.5\n575,199,20.0\n575,200,7.5\n575,201,8.0\n575,202,8.5\n575,203,9.0\n575,204,9.5\n575,205,10.0\n575,206,10.5\n575,207,11.0\n575,208,11.5\n575,209,12.0\n575,210,12.5\n575,211,13.0\n575,212,13.5\n575,213,14.0\n575,214,14.5\n575,215,15.0\n575,216,15.5\n575,217,16.0\n575,218,16.5\n575,219,17.0\n575,220,17.5\n575,221,18.0\n575,222,18.5\n575,223,19.0\n575,224,19.5\n575,225,7.0\n575,226,7.5\n575,227,8.0\n575,228,8.5\n575,229,9.0\n575,230,9.5\n575,231,10.0\n575,232,10.5\n575,233,11.0\n575,234,11.5\n575,235,12.0\n575,236,12.5\n575,237,13.0\n575,238,13.5\n575,239,14.0\n575,240,14.5\n575,241,15.0\n575,242,15.5\n575,243,16.0\n575,244,16.5\n575,245,17.0\n575,246,17.5\n575,247,18.0\n575,248,18.5\n575,249,19.0\n575,250,6.5\n575,251,7.0\n575,252,7.5\n575,253,8.0\n575,254,8.5\n575,255,9.0\n575,256,9.5\n575,257,10.0\n575,258,10.5\n575,259,11.0\n575,260,11.5\n575,261,12.0\n575,262,12.5\n575,263,13.0\n575,264,13.5\n575,265,14.0\n575,266,14.5\n575,267,15.0\n575,268,15.5\n575,269,16.0\n575,270,16.5\n575,271,17.0\n575,272,17.5\n575,273,18.0\n575,274,18.5\n575,275,6.0\n575,276,6.5\n575,277,7.0\n575,278,7.5\n575,279,8.0\n575,280,8.5\n575,281,9.0\n575,282,9.5\n575,283,10.0\n575,284,10.5\n575,285,11.0\n575,286,11.5\n575,287,12.0\n575,288,12.5\n575,289,13.0\n575,290,13.5\n575,291,14.0\n575,292,14.5\n575,293,15.0\n575,294,15.5\n575,295,16.0\n575,296,16.5\n575,297,17.0\n575,298,17.5\n575,299,18.0\n575,300,5.5\n575,301,6.0\n575,302,6.5\n575,303,7.0\n575,304,7.5\n575,305,8.0\n575,306,8.5\n575,307,9.0\n575,308,9.5\n575,309,10.0\n575,310,10.5\n575,311,11.0\n575,312,11.5\n575,313,12.0\n575,314,12.5\n575,315,13.0\n575,316,13.5\n575,317,14.0\n575,318,14.5\n575,319,15.0\n575,320,15.5\n575,321,16.0\n575,322,16.5\n575,323,17.0\n575,324,17.5\n575,325,5.0\n575,326,5.5\n575,327,6.0\n575,328,6.5\n575,329,7.0\n575,330,7.5\n575,331,8.0\n575,332,8.5\n575,333,9.0\n575,334,9.5\n575,335,10.0\n575,336,10.5\n575,337,11.0\n575,338,11.5\n575,339,12.0\n575,340,12.5\n575,341,13.0\n575,342,13.5\n575,343,14.0\n575,344,14.5\n575,345,15.0\n575,346,15.5\n575,347,16.0\n575,348,16.5\n575,349,17.0\n575,350,4.5\n575,351,5.0\n575,352,5.5\n575,353,6.0\n575,354,6.5\n575,355,7.0\n575,356,7.5\n575,357,8.0\n575,358,8.5\n575,359,9.0\n575,360,9.5\n575,361,10.0\n575,362,10.5\n575,363,11.0\n575,364,11.5\n575,365,12.0\n575,366,12.5\n575,367,13.0\n575,368,13.5\n575,369,14.0\n575,370,14.5\n575,371,15.0\n575,372,15.5\n575,373,16.0\n575,374,16.5\n575,375,4.0\n575,376,4.5\n575,377,5.0\n575,378,5.5\n575,379,6.0\n575,380,6.5\n575,381,7.0\n575,382,7.5\n575,383,8.0\n575,384,8.5\n575,385,9.0\n575,386,9.5\n575,387,10.0\n575,388,10.5\n575,389,11.0\n575,390,11.5\n575,391,12.0\n575,392,12.5\n575,393,13.0\n575,394,13.5\n575,395,14.0\n575,396,14.5\n575,397,15.0\n575,398,15.5\n575,399,16.0\n575,400,3.5\n575,401,4.0\n575,402,4.5\n575,403,5.0\n575,404,5.5\n575,405,6.0\n575,406,6.5\n575,407,7.0\n575,408,7.5\n575,409,8.0\n575,410,8.5\n575,411,9.0\n575,412,9.5\n575,413,10.0\n575,414,10.5\n575,415,11.0\n575,416,11.5\n575,417,12.0\n575,418,12.5\n575,419,13.0\n575,420,13.5\n575,421,14.0\n575,422,14.5\n575,423,15.0\n575,424,15.5\n575,425,3.0\n575,426,3.5\n575,427,4.0\n575,428,4.5\n575,429,5.0\n575,430,5.5\n575,431,6.0\n575,432,6.5\n575,433,7.0\n575,434,7.5\n575,435,8.0\n575,436,8.5\n575,437,9.0\n575,438,9.5\n575,439,10.0\n575,440,10.5\n575,441,11.0\n575,442,11.5\n575,443,12.0\n575,444,12.5\n575,445,13.0\n575,446,13.5\n575,447,14.0\n575,448,14.5\n575,449,15.0\n575,450,2.5\n575,451,3.0\n575,452,3.5\n575,453,4.0\n575,454,4.5\n575,455,5.0\n575,456,5.5\n575,457,6.0\n575,458,6.5\n575,459,7.0\n575,460,7.5\n575,461,8.0\n575,462,8.5\n575,463,9.0\n575,464,9.5\n575,465,10.0\n575,466,10.5\n575,467,11.0\n575,468,11.5\n575,469,12.0\n575,470,12.5\n575,471,13.0\n575,472,13.5\n575,473,14.0\n575,474,14.5\n575,475,2.0\n575,476,2.5\n575,477,3.0\n575,478,3.5\n575,479,4.0\n575,480,4.5\n575,481,5.0\n575,482,5.5\n575,483,6.0\n575,484,6.5\n575,485,7.0\n575,486,7.5\n575,487,8.0\n575,488,8.5\n575,489,9.0\n575,490,9.5\n575,491,10.0\n575,492,10.5\n575,493,11.0\n575,494,11.5\n575,495,12.0\n575,496,12.5\n575,497,13.0\n575,498,13.5\n575,499,14.0\n575,500,1.5\n575,501,2.0\n575,502,2.5\n575,503,3.0\n575,504,3.5\n575,505,4.0\n575,506,4.5\n575,507,5.0\n575,508,5.5\n575,509,6.0\n575,510,6.5\n575,511,7.0\n575,512,7.5\n575,513,8.0\n575,514,8.5\n575,515,9.0\n575,516,9.5\n575,517,10.0\n575,518,10.5\n575,519,11.0\n575,520,11.5\n575,521,12.0\n575,522,12.5\n575,523,13.0\n575,524,13.5\n575,525,1.0\n575,526,1.5\n575,527,2.0\n575,528,2.5\n575,529,3.0\n575,530,3.5\n575,531,4.0\n575,532,4.5\n575,533,5.0\n575,534,5.5\n575,535,6.0\n575,536,6.5\n575,537,7.0\n575,538,7.5\n575,539,8.0\n575,540,8.5\n575,541,9.0\n575,542,9.5\n575,543,10.0\n575,544,10.5\n575,545,11.0\n575,546,11.5\n575,547,12.0\n575,548,12.5\n575,549,13.0\n575,550,0.5\n575,551,1.0\n575,552,1.5\n575,553,2.0\n575,554,2.5\n575,555,3.0\n575,556,3.5\n575,557,4.0\n575,558,4.5\n575,559,5.0\n575,560,5.5\n575,561,6.0\n575,562,6.5\n575,563,7.0\n575,564,7.5\n575,565,8.0\n575,566,8.5\n575,567,9.0\n575,568,9.5\n575,569,10.0\n575,570,10.5\n575,571,11.0\n575,572,11.5\n575,573,12.0\n575,574,12.5\n575,575,0\n575,576,0.5\n575,577,1.0\n575,578,1.5\n575,579,2.0\n575,580,2.5\n575,581,3.0\n575,582,3.5\n575,583,4.0\n575,584,4.5\n575,585,5.0\n575,586,5.5\n575,587,6.0\n575,588,6.5\n575,589,7.0\n575,590,7.5\n575,591,8.0\n575,592,8.5\n575,593,9.0\n575,594,9.5\n575,595,10.0\n575,596,10.5\n575,597,11.0\n575,598,11.5\n575,599,12.0\n575,600,0.5\n575,601,1.0\n575,602,1.5\n575,603,2.0\n575,604,2.5\n575,605,3.0\n575,606,3.5\n575,607,4.0\n575,608,4.5\n575,609,5.0\n575,610,5.5\n575,611,6.0\n575,612,6.5\n575,613,7.0\n575,614,7.5\n575,615,8.0\n575,616,8.5\n575,617,9.0\n575,618,9.5\n575,619,10.0\n575,620,10.5\n575,621,11.0\n575,622,11.5\n575,623,12.0\n575,624,12.5\n576,0,12.0\n576,1,11.5\n576,2,12.0\n576,3,12.5\n576,4,13.0\n576,5,13.5\n576,6,14.0\n576,7,14.5\n576,8,15.0\n576,9,15.5\n576,10,16.0\n576,11,16.5\n576,12,17.0\n576,13,17.5\n576,14,18.0\n576,15,18.5\n576,16,19.0\n576,17,19.5\n576,18,20.0\n576,19,20.5\n576,20,21.0\n576,21,21.5\n576,22,22.0\n576,23,22.5\n576,24,23.0\n576,25,11.5\n576,26,11.0\n576,27,11.5\n576,28,12.0\n576,29,12.5\n576,30,13.0\n576,31,13.5\n576,32,14.0\n576,33,14.5\n576,34,15.0\n576,35,15.5\n576,36,16.0\n576,37,16.5\n576,38,17.0\n576,39,17.5\n576,40,18.0\n576,41,18.5\n576,42,19.0\n576,43,19.5\n576,44,20.0\n576,45,20.5\n576,46,21.0\n576,47,21.5\n576,48,22.0\n576,49,22.5\n576,50,11.0\n576,51,10.5\n576,52,11.0\n576,53,11.5\n576,54,12.0\n576,55,12.5\n576,56,13.0\n576,57,13.5\n576,58,14.0\n576,59,14.5\n576,60,15.0\n576,61,15.5\n576,62,16.0\n576,63,16.5\n576,64,17.0\n576,65,17.5\n576,66,18.0\n576,67,18.5\n576,68,19.0\n576,69,19.5\n576,70,20.0\n576,71,20.5\n576,72,21.0\n576,73,21.5\n576,74,22.0\n576,75,10.5\n576,76,10.0\n576,77,10.5\n576,78,11.0\n576,79,11.5\n576,80,12.0\n576,81,12.5\n576,82,13.0\n576,83,13.5\n576,84,14.0\n576,85,14.5\n576,86,15.0\n576,87,15.5\n576,88,16.0\n576,89,16.5\n576,90,17.0\n576,91,17.5\n576,92,18.0\n576,93,18.5\n576,94,19.0\n576,95,19.5\n576,96,20.0\n576,97,20.5\n576,98,21.0\n576,99,21.5\n576,100,10.0\n576,101,9.5\n576,102,10.0\n576,103,10.5\n576,104,11.0\n576,105,11.5\n576,106,12.0\n576,107,12.5\n576,108,13.0\n576,109,13.5\n576,110,14.0\n576,111,14.5\n576,112,15.0\n576,113,15.5\n576,114,16.0\n576,115,16.5\n576,116,17.0\n576,117,17.5\n576,118,18.0\n576,119,18.5\n576,120,19.0\n576,121,19.5\n576,122,20.0\n576,123,20.5\n576,124,21.0\n576,125,9.5\n576,126,9.0\n576,127,9.5\n576,128,10.0\n576,129,10.5\n576,130,11.0\n576,131,11.5\n576,132,12.0\n576,133,12.5\n576,134,13.0\n576,135,13.5\n576,136,14.0\n576,137,14.5\n576,138,15.0\n576,139,15.5\n576,140,16.0\n576,141,16.5\n576,142,17.0\n576,143,17.5\n576,144,18.0\n576,145,18.5\n576,146,19.0\n576,147,19.5\n576,148,20.0\n576,149,20.5\n576,150,9.0\n576,151,8.5\n576,152,9.0\n576,153,9.5\n576,154,10.0\n576,155,10.5\n576,156,11.0\n576,157,11.5\n576,158,12.0\n576,159,12.5\n576,160,13.0\n576,161,13.5\n576,162,14.0\n576,163,14.5\n576,164,15.0\n576,165,15.5\n576,166,16.0\n576,167,16.5\n576,168,17.0\n576,169,17.5\n576,170,18.0\n576,171,18.5\n576,172,19.0\n576,173,19.5\n576,174,20.0\n576,175,8.5\n576,176,8.0\n576,177,8.5\n576,178,9.0\n576,179,9.5\n576,180,10.0\n576,181,10.5\n576,182,11.0\n576,183,11.5\n576,184,12.0\n576,185,12.5\n576,186,13.0\n576,187,13.5\n576,188,14.0\n576,189,14.5\n576,190,15.0\n576,191,15.5\n576,192,16.0\n576,193,16.5\n576,194,17.0\n576,195,17.5\n576,196,18.0\n576,197,18.5\n576,198,19.0\n576,199,19.5\n576,200,8.0\n576,201,7.5\n576,202,8.0\n576,203,8.5\n576,204,9.0\n576,205,9.5\n576,206,10.0\n576,207,10.5\n576,208,11.0\n576,209,11.5\n576,210,12.0\n576,211,12.5\n576,212,13.0\n576,213,13.5\n576,214,14.0\n576,215,14.5\n576,216,15.0\n576,217,15.5\n576,218,16.0\n576,219,16.5\n576,220,17.0\n576,221,17.5\n576,222,18.0\n576,223,18.5\n576,224,19.0\n576,225,7.5\n576,226,7.0\n576,227,7.5\n576,228,8.0\n576,229,8.5\n576,230,9.0\n576,231,9.5\n576,232,10.0\n576,233,10.5\n576,234,11.0\n576,235,11.5\n576,236,12.0\n576,237,12.5\n576,238,13.0\n576,239,13.5\n576,240,14.0\n576,241,14.5\n576,242,15.0\n576,243,15.5\n576,244,16.0\n576,245,16.5\n576,246,17.0\n576,247,17.5\n576,248,18.0\n576,249,18.5\n576,250,7.0\n576,251,6.5\n576,252,7.0\n576,253,7.5\n576,254,8.0\n576,255,8.5\n576,256,9.0\n576,257,9.5\n576,258,10.0\n576,259,10.5\n576,260,11.0\n576,261,11.5\n576,262,12.0\n576,263,12.5\n576,264,13.0\n576,265,13.5\n576,266,14.0\n576,267,14.5\n576,268,15.0\n576,269,15.5\n576,270,16.0\n576,271,16.5\n576,272,17.0\n576,273,17.5\n576,274,18.0\n576,275,6.5\n576,276,6.0\n576,277,6.5\n576,278,7.0\n576,279,7.5\n576,280,8.0\n576,281,8.5\n576,282,9.0\n576,283,9.5\n576,284,10.0\n576,285,10.5\n576,286,11.0\n576,287,11.5\n576,288,12.0\n576,289,12.5\n576,290,13.0\n576,291,13.5\n576,292,14.0\n576,293,14.5\n576,294,15.0\n576,295,15.5\n576,296,16.0\n576,297,16.5\n576,298,17.0\n576,299,17.5\n576,300,6.0\n576,301,5.5\n576,302,6.0\n576,303,6.5\n576,304,7.0\n576,305,7.5\n576,306,8.0\n576,307,8.5\n576,308,9.0\n576,309,9.5\n576,310,10.0\n576,311,10.5\n576,312,11.0\n576,313,11.5\n576,314,12.0\n576,315,12.5\n576,316,13.0\n576,317,13.5\n576,318,14.0\n576,319,14.5\n576,320,15.0\n576,321,15.5\n576,322,16.0\n576,323,16.5\n576,324,17.0\n576,325,5.5\n576,326,5.0\n576,327,5.5\n576,328,6.0\n576,329,6.5\n576,330,7.0\n576,331,7.5\n576,332,8.0\n576,333,8.5\n576,334,9.0\n576,335,9.5\n576,336,10.0\n576,337,10.5\n576,338,11.0\n576,339,11.5\n576,340,12.0\n576,341,12.5\n576,342,13.0\n576,343,13.5\n576,344,14.0\n576,345,14.5\n576,346,15.0\n576,347,15.5\n576,348,16.0\n576,349,16.5\n576,350,5.0\n576,351,4.5\n576,352,5.0\n576,353,5.5\n576,354,6.0\n576,355,6.5\n576,356,7.0\n576,357,7.5\n576,358,8.0\n576,359,8.5\n576,360,9.0\n576,361,9.5\n576,362,10.0\n576,363,10.5\n576,364,11.0\n576,365,11.5\n576,366,12.0\n576,367,12.5\n576,368,13.0\n576,369,13.5\n576,370,14.0\n576,371,14.5\n576,372,15.0\n576,373,15.5\n576,374,16.0\n576,375,4.5\n576,376,4.0\n576,377,4.5\n576,378,5.0\n576,379,5.5\n576,380,6.0\n576,381,6.5\n576,382,7.0\n576,383,7.5\n576,384,8.0\n576,385,8.5\n576,386,9.0\n576,387,9.5\n576,388,10.0\n576,389,10.5\n576,390,11.0\n576,391,11.5\n576,392,12.0\n576,393,12.5\n576,394,13.0\n576,395,13.5\n576,396,14.0\n576,397,14.5\n576,398,15.0\n576,399,15.5\n576,400,4.0\n576,401,3.5\n576,402,4.0\n576,403,4.5\n576,404,5.0\n576,405,5.5\n576,406,6.0\n576,407,6.5\n576,408,7.0\n576,409,7.5\n576,410,8.0\n576,411,8.5\n576,412,9.0\n576,413,9.5\n576,414,10.0\n576,415,10.5\n576,416,11.0\n576,417,11.5\n576,418,12.0\n576,419,12.5\n576,420,13.0\n576,421,13.5\n576,422,14.0\n576,423,14.5\n576,424,15.0\n576,425,3.5\n576,426,3.0\n576,427,3.5\n576,428,4.0\n576,429,4.5\n576,430,5.0\n576,431,5.5\n576,432,6.0\n576,433,6.5\n576,434,7.0\n576,435,7.5\n576,436,8.0\n576,437,8.5\n576,438,9.0\n576,439,9.5\n576,440,10.0\n576,441,10.5\n576,442,11.0\n576,443,11.5\n576,444,12.0\n576,445,12.5\n576,446,13.0\n576,447,13.5\n576,448,14.0\n576,449,14.5\n576,450,3.0\n576,451,2.5\n576,452,3.0\n576,453,3.5\n576,454,4.0\n576,455,4.5\n576,456,5.0\n576,457,5.5\n576,458,6.0\n576,459,6.5\n576,460,7.0\n576,461,7.5\n576,462,8.0\n576,463,8.5\n576,464,9.0\n576,465,9.5\n576,466,10.0\n576,467,10.5\n576,468,11.0\n576,469,11.5\n576,470,12.0\n576,471,12.5\n576,472,13.0\n576,473,13.5\n576,474,14.0\n576,475,2.5\n576,476,2.0\n576,477,2.5\n576,478,3.0\n576,479,3.5\n576,480,4.0\n576,481,4.5\n576,482,5.0\n576,483,5.5\n576,484,6.0\n576,485,6.5\n576,486,7.0\n576,487,7.5\n576,488,8.0\n576,489,8.5\n576,490,9.0\n576,491,9.5\n576,492,10.0\n576,493,10.5\n576,494,11.0\n576,495,11.5\n576,496,12.0\n576,497,12.5\n576,498,13.0\n576,499,13.5\n576,500,2.0\n576,501,1.5\n576,502,2.0\n576,503,2.5\n576,504,3.0\n576,505,3.5\n576,506,4.0\n576,507,4.5\n576,508,5.0\n576,509,5.5\n576,510,6.0\n576,511,6.5\n576,512,7.0\n576,513,7.5\n576,514,8.0\n576,515,8.5\n576,516,9.0\n576,517,9.5\n576,518,10.0\n576,519,10.5\n576,520,11.0\n576,521,11.5\n576,522,12.0\n576,523,12.5\n576,524,13.0\n576,525,1.5\n576,526,1.0\n576,527,1.5\n576,528,2.0\n576,529,2.5\n576,530,3.0\n576,531,3.5\n576,532,4.0\n576,533,4.5\n576,534,5.0\n576,535,5.5\n576,536,6.0\n576,537,6.5\n576,538,7.0\n576,539,7.5\n576,540,8.0\n576,541,8.5\n576,542,9.0\n576,543,9.5\n576,544,10.0\n576,545,10.5\n576,546,11.0\n576,547,11.5\n576,548,12.0\n576,549,12.5\n576,550,1.0\n576,551,0.5\n576,552,1.0\n576,553,1.5\n576,554,2.0\n576,555,2.5\n576,556,3.0\n576,557,3.5\n576,558,4.0\n576,559,4.5\n576,560,5.0\n576,561,5.5\n576,562,6.0\n576,563,6.5\n576,564,7.0\n576,565,7.5\n576,566,8.0\n576,567,8.5\n576,568,9.0\n576,569,9.5\n576,570,10.0\n576,571,10.5\n576,572,11.0\n576,573,11.5\n576,574,12.0\n576,575,0.5\n576,576,0\n576,577,0.5\n576,578,1.0\n576,579,1.5\n576,580,2.0\n576,581,2.5\n576,582,3.0\n576,583,3.5\n576,584,4.0\n576,585,4.5\n576,586,5.0\n576,587,5.5\n576,588,6.0\n576,589,6.5\n576,590,7.0\n576,591,7.5\n576,592,8.0\n576,593,8.5\n576,594,9.0\n576,595,9.5\n576,596,10.0\n576,597,10.5\n576,598,11.0\n576,599,11.5\n576,600,1.0\n576,601,0.5\n576,602,1.0\n576,603,1.5\n576,604,2.0\n576,605,2.5\n576,606,3.0\n576,607,3.5\n576,608,4.0\n576,609,4.5\n576,610,5.0\n576,611,5.5\n576,612,6.0\n576,613,6.5\n576,614,7.0\n576,615,7.5\n576,616,8.0\n576,617,8.5\n576,618,9.0\n576,619,9.5\n576,620,10.0\n576,621,10.5\n576,622,11.0\n576,623,11.5\n576,624,12.0\n577,0,12.5\n577,1,12.0\n577,2,11.5\n577,3,12.0\n577,4,12.5\n577,5,13.0\n577,6,13.5\n577,7,14.0\n577,8,14.5\n577,9,15.0\n577,10,15.5\n577,11,16.0\n577,12,16.5\n577,13,17.0\n577,14,17.5\n577,15,18.0\n577,16,18.5\n577,17,19.0\n577,18,19.5\n577,19,20.0\n577,20,20.5\n577,21,21.0\n577,22,21.5\n577,23,22.0\n577,24,22.5\n577,25,12.0\n577,26,11.5\n577,27,11.0\n577,28,11.5\n577,29,12.0\n577,30,12.5\n577,31,13.0\n577,32,13.5\n577,33,14.0\n577,34,14.5\n577,35,15.0\n577,36,15.5\n577,37,16.0\n577,38,16.5\n577,39,17.0\n577,40,17.5\n577,41,18.0\n577,42,18.5\n577,43,19.0\n577,44,19.5\n577,45,20.0\n577,46,20.5\n577,47,21.0\n577,48,21.5\n577,49,22.0\n577,50,11.5\n577,51,11.0\n577,52,10.5\n577,53,11.0\n577,54,11.5\n577,55,12.0\n577,56,12.5\n577,57,13.0\n577,58,13.5\n577,59,14.0\n577,60,14.5\n577,61,15.0\n577,62,15.5\n577,63,16.0\n577,64,16.5\n577,65,17.0\n577,66,17.5\n577,67,18.0\n577,68,18.5\n577,69,19.0\n577,70,19.5\n577,71,20.0\n577,72,20.5\n577,73,21.0\n577,74,21.5\n577,75,11.0\n577,76,10.5\n577,77,10.0\n577,78,10.5\n577,79,11.0\n577,80,11.5\n577,81,12.0\n577,82,12.5\n577,83,13.0\n577,84,13.5\n577,85,14.0\n577,86,14.5\n577,87,15.0\n577,88,15.5\n577,89,16.0\n577,90,16.5\n577,91,17.0\n577,92,17.5\n577,93,18.0\n577,94,18.5\n577,95,19.0\n577,96,19.5\n577,97,20.0\n577,98,20.5\n577,99,21.0\n577,100,10.5\n577,101,10.0\n577,102,9.5\n577,103,10.0\n577,104,10.5\n577,105,11.0\n577,106,11.5\n577,107,12.0\n577,108,12.5\n577,109,13.0\n577,110,13.5\n577,111,14.0\n577,112,14.5\n577,113,15.0\n577,114,15.5\n577,115,16.0\n577,116,16.5\n577,117,17.0\n577,118,17.5\n577,119,18.0\n577,120,18.5\n577,121,19.0\n577,122,19.5\n577,123,20.0\n577,124,20.5\n577,125,10.0\n577,126,9.5\n577,127,9.0\n577,128,9.5\n577,129,10.0\n577,130,10.5\n577,131,11.0\n577,132,11.5\n577,133,12.0\n577,134,12.5\n577,135,13.0\n577,136,13.5\n577,137,14.0\n577,138,14.5\n577,139,15.0\n577,140,15.5\n577,141,16.0\n577,142,16.5\n577,143,17.0\n577,144,17.5\n577,145,18.0\n577,146,18.5\n577,147,19.0\n577,148,19.5\n577,149,20.0\n577,150,9.5\n577,151,9.0\n577,152,8.5\n577,153,9.0\n577,154,9.5\n577,155,10.0\n577,156,10.5\n577,157,11.0\n577,158,11.5\n577,159,12.0\n577,160,12.5\n577,161,13.0\n577,162,13.5\n577,163,14.0\n577,164,14.5\n577,165,15.0\n577,166,15.5\n577,167,16.0\n577,168,16.5\n577,169,17.0\n577,170,17.5\n577,171,18.0\n577,172,18.5\n577,173,19.0\n577,174,19.5\n577,175,9.0\n577,176,8.5\n577,177,8.0\n577,178,8.5\n577,179,9.0\n577,180,9.5\n577,181,10.0\n577,182,10.5\n577,183,11.0\n577,184,11.5\n577,185,12.0\n577,186,12.5\n577,187,13.0\n577,188,13.5\n577,189,14.0\n577,190,14.5\n577,191,15.0\n577,192,15.5\n577,193,16.0\n577,194,16.5\n577,195,17.0\n577,196,17.5\n577,197,18.0\n577,198,18.5\n577,199,19.0\n577,200,8.5\n577,201,8.0\n577,202,7.5\n577,203,8.0\n577,204,8.5\n577,205,9.0\n577,206,9.5\n577,207,10.0\n577,208,10.5\n577,209,11.0\n577,210,11.5\n577,211,12.0\n577,212,12.5\n577,213,13.0\n577,214,13.5\n577,215,14.0\n577,216,14.5\n577,217,15.0\n577,218,15.5\n577,219,16.0\n577,220,16.5\n577,221,17.0\n577,222,17.5\n577,223,18.0\n577,224,18.5\n577,225,8.0\n577,226,7.5\n577,227,7.0\n577,228,7.5\n577,229,8.0\n577,230,8.5\n577,231,9.0\n577,232,9.5\n577,233,10.0\n577,234,10.5\n577,235,11.0\n577,236,11.5\n577,237,12.0\n577,238,12.5\n577,239,13.0\n577,240,13.5\n577,241,14.0\n577,242,14.5\n577,243,15.0\n577,244,15.5\n577,245,16.0\n577,246,16.5\n577,247,17.0\n577,248,17.5\n577,249,18.0\n577,250,7.5\n577,251,7.0\n577,252,6.5\n577,253,7.0\n577,254,7.5\n577,255,8.0\n577,256,8.5\n577,257,9.0\n577,258,9.5\n577,259,10.0\n577,260,10.5\n577,261,11.0\n577,262,11.5\n577,263,12.0\n577,264,12.5\n577,265,13.0\n577,266,13.5\n577,267,14.0\n577,268,14.5\n577,269,15.0\n577,270,15.5\n577,271,16.0\n577,272,16.5\n577,273,17.0\n577,274,17.5\n577,275,7.0\n577,276,6.5\n577,277,6.0\n577,278,6.5\n577,279,7.0\n577,280,7.5\n577,281,8.0\n577,282,8.5\n577,283,9.0\n577,284,9.5\n577,285,10.0\n577,286,10.5\n577,287,11.0\n577,288,11.5\n577,289,12.0\n577,290,12.5\n577,291,13.0\n577,292,13.5\n577,293,14.0\n577,294,14.5\n577,295,15.0\n577,296,15.5\n577,297,16.0\n577,298,16.5\n577,299,17.0\n577,300,6.5\n577,301,6.0\n577,302,5.5\n577,303,6.0\n577,304,6.5\n577,305,7.0\n577,306,7.5\n577,307,8.0\n577,308,8.5\n577,309,9.0\n577,310,9.5\n577,311,10.0\n577,312,10.5\n577,313,11.0\n577,314,11.5\n577,315,12.0\n577,316,12.5\n577,317,13.0\n577,318,13.5\n577,319,14.0\n577,320,14.5\n577,321,15.0\n577,322,15.5\n577,323,16.0\n577,324,16.5\n577,325,6.0\n577,326,5.5\n577,327,5.0\n577,328,5.5\n577,329,6.0\n577,330,6.5\n577,331,7.0\n577,332,7.5\n577,333,8.0\n577,334,8.5\n577,335,9.0\n577,336,9.5\n577,337,10.0\n577,338,10.5\n577,339,11.0\n577,340,11.5\n577,341,12.0\n577,342,12.5\n577,343,13.0\n577,344,13.5\n577,345,14.0\n577,346,14.5\n577,347,15.0\n577,348,15.5\n577,349,16.0\n577,350,5.5\n577,351,5.0\n577,352,4.5\n577,353,5.0\n577,354,5.5\n577,355,6.0\n577,356,6.5\n577,357,7.0\n577,358,7.5\n577,359,8.0\n577,360,8.5\n577,361,9.0\n577,362,9.5\n577,363,10.0\n577,364,10.5\n577,365,11.0\n577,366,11.5\n577,367,12.0\n577,368,12.5\n577,369,13.0\n577,370,13.5\n577,371,14.0\n577,372,14.5\n577,373,15.0\n577,374,15.5\n577,375,5.0\n577,376,4.5\n577,377,4.0\n577,378,4.5\n577,379,5.0\n577,380,5.5\n577,381,6.0\n577,382,6.5\n577,383,7.0\n577,384,7.5\n577,385,8.0\n577,386,8.5\n577,387,9.0\n577,388,9.5\n577,389,10.0\n577,390,10.5\n577,391,11.0\n577,392,11.5\n577,393,12.0\n577,394,12.5\n577,395,13.0\n577,396,13.5\n577,397,14.0\n577,398,14.5\n577,399,15.0\n577,400,4.5\n577,401,4.0\n577,402,3.5\n577,403,4.0\n577,404,4.5\n577,405,5.0\n577,406,5.5\n577,407,6.0\n577,408,6.5\n577,409,7.0\n577,410,7.5\n577,411,8.0\n577,412,8.5\n577,413,9.0\n577,414,9.5\n577,415,10.0\n577,416,10.5\n577,417,11.0\n577,418,11.5\n577,419,12.0\n577,420,12.5\n577,421,13.0\n577,422,13.5\n577,423,14.0\n577,424,14.5\n577,425,4.0\n577,426,3.5\n577,427,3.0\n577,428,3.5\n577,429,4.0\n577,430,4.5\n577,431,5.0\n577,432,5.5\n577,433,6.0\n577,434,6.5\n577,435,7.0\n577,436,7.5\n577,437,8.0\n577,438,8.5\n577,439,9.0\n577,440,9.5\n577,441,10.0\n577,442,10.5\n577,443,11.0\n577,444,11.5\n577,445,12.0\n577,446,12.5\n577,447,13.0\n577,448,13.5\n577,449,14.0\n577,450,3.5\n577,451,3.0\n577,452,2.5\n577,453,3.0\n577,454,3.5\n577,455,4.0\n577,456,4.5\n577,457,5.0\n577,458,5.5\n577,459,6.0\n577,460,6.5\n577,461,7.0\n577,462,7.5\n577,463,8.0\n577,464,8.5\n577,465,9.0\n577,466,9.5\n577,467,10.0\n577,468,10.5\n577,469,11.0\n577,470,11.5\n577,471,12.0\n577,472,12.5\n577,473,13.0\n577,474,13.5\n577,475,3.0\n577,476,2.5\n577,477,2.0\n577,478,2.5\n577,479,3.0\n577,480,3.5\n577,481,4.0\n577,482,4.5\n577,483,5.0\n577,484,5.5\n577,485,6.0\n577,486,6.5\n577,487,7.0\n577,488,7.5\n577,489,8.0\n577,490,8.5\n577,491,9.0\n577,492,9.5\n577,493,10.0\n577,494,10.5\n577,495,11.0\n577,496,11.5\n577,497,12.0\n577,498,12.5\n577,499,13.0\n577,500,2.5\n577,501,2.0\n577,502,1.5\n577,503,2.0\n577,504,2.5\n577,505,3.0\n577,506,3.5\n577,507,4.0\n577,508,4.5\n577,509,5.0\n577,510,5.5\n577,511,6.0\n577,512,6.5\n577,513,7.0\n577,514,7.5\n577,515,8.0\n577,516,8.5\n577,517,9.0\n577,518,9.5\n577,519,10.0\n577,520,10.5\n577,521,11.0\n577,522,11.5\n577,523,12.0\n577,524,12.5\n577,525,2.0\n577,526,1.5\n577,527,1.0\n577,528,1.5\n577,529,2.0\n577,530,2.5\n577,531,3.0\n577,532,3.5\n577,533,4.0\n577,534,4.5\n577,535,5.0\n577,536,5.5\n577,537,6.0\n577,538,6.5\n577,539,7.0\n577,540,7.5\n577,541,8.0\n577,542,8.5\n577,543,9.0\n577,544,9.5\n577,545,10.0\n577,546,10.5\n577,547,11.0\n577,548,11.5\n577,549,12.0\n577,550,1.5\n577,551,1.0\n577,552,0.5\n577,553,1.0\n577,554,1.5\n577,555,2.0\n577,556,2.5\n577,557,3.0\n577,558,3.5\n577,559,4.0\n577,560,4.5\n577,561,5.0\n577,562,5.5\n577,563,6.0\n577,564,6.5\n577,565,7.0\n577,566,7.5\n577,567,8.0\n577,568,8.5\n577,569,9.0\n577,570,9.5\n577,571,10.0\n577,572,10.5\n577,573,11.0\n577,574,11.5\n577,575,1.0\n577,576,0.5\n577,577,0\n577,578,0.5\n577,579,1.0\n577,580,1.5\n577,581,2.0\n577,582,2.5\n577,583,3.0\n577,584,3.5\n577,585,4.0\n577,586,4.5\n577,587,5.0\n577,588,5.5\n577,589,6.0\n577,590,6.5\n577,591,7.0\n577,592,7.5\n577,593,8.0\n577,594,8.5\n577,595,9.0\n577,596,9.5\n577,597,10.0\n577,598,10.5\n577,599,11.0\n577,600,1.5\n577,601,1.0\n577,602,0.5\n577,603,1.0\n577,604,1.5\n577,605,2.0\n577,606,2.5\n577,607,3.0\n577,608,3.5\n577,609,4.0\n577,610,4.5\n577,611,5.0\n577,612,5.5\n577,613,6.0\n577,614,6.5\n577,615,7.0\n577,616,7.5\n577,617,8.0\n577,618,8.5\n577,619,9.0\n577,620,9.5\n577,621,10.0\n577,622,10.5\n577,623,11.0\n577,624,11.5\n578,0,13.0\n578,1,12.5\n578,2,12.0\n578,3,11.5\n578,4,12.0\n578,5,12.5\n578,6,13.0\n578,7,13.5\n578,8,14.0\n578,9,14.5\n578,10,15.0\n578,11,15.5\n578,12,16.0\n578,13,16.5\n578,14,17.0\n578,15,17.5\n578,16,18.0\n578,17,18.5\n578,18,19.0\n578,19,19.5\n578,20,20.0\n578,21,20.5\n578,22,21.0\n578,23,21.5\n578,24,22.0\n578,25,12.5\n578,26,12.0\n578,27,11.5\n578,28,11.0\n578,29,11.5\n578,30,12.0\n578,31,12.5\n578,32,13.0\n578,33,13.5\n578,34,14.0\n578,35,14.5\n578,36,15.0\n578,37,15.5\n578,38,16.0\n578,39,16.5\n578,40,17.0\n578,41,17.5\n578,42,18.0\n578,43,18.5\n578,44,19.0\n578,45,19.5\n578,46,20.0\n578,47,20.5\n578,48,21.0\n578,49,21.5\n578,50,12.0\n578,51,11.5\n578,52,11.0\n578,53,10.5\n578,54,11.0\n578,55,11.5\n578,56,12.0\n578,57,12.5\n578,58,13.0\n578,59,13.5\n578,60,14.0\n578,61,14.5\n578,62,15.0\n578,63,15.5\n578,64,16.0\n578,65,16.5\n578,66,17.0\n578,67,17.5\n578,68,18.0\n578,69,18.5\n578,70,19.0\n578,71,19.5\n578,72,20.0\n578,73,20.5\n578,74,21.0\n578,75,11.5\n578,76,11.0\n578,77,10.5\n578,78,10.0\n578,79,10.5\n578,80,11.0\n578,81,11.5\n578,82,12.0\n578,83,12.5\n578,84,13.0\n578,85,13.5\n578,86,14.0\n578,87,14.5\n578,88,15.0\n578,89,15.5\n578,90,16.0\n578,91,16.5\n578,92,17.0\n578,93,17.5\n578,94,18.0\n578,95,18.5\n578,96,19.0\n578,97,19.5\n578,98,20.0\n578,99,20.5\n578,100,11.0\n578,101,10.5\n578,102,10.0\n578,103,9.5\n578,104,10.0\n578,105,10.5\n578,106,11.0\n578,107,11.5\n578,108,12.0\n578,109,12.5\n578,110,13.0\n578,111,13.5\n578,112,14.0\n578,113,14.5\n578,114,15.0\n578,115,15.5\n578,116,16.0\n578,117,16.5\n578,118,17.0\n578,119,17.5\n578,120,18.0\n578,121,18.5\n578,122,19.0\n578,123,19.5\n578,124,20.0\n578,125,10.5\n578,126,10.0\n578,127,9.5\n578,128,9.0\n578,129,9.5\n578,130,10.0\n578,131,10.5\n578,132,11.0\n578,133,11.5\n578,134,12.0\n578,135,12.5\n578,136,13.0\n578,137,13.5\n578,138,14.0\n578,139,14.5\n578,140,15.0\n578,141,15.5\n578,142,16.0\n578,143,16.5\n578,144,17.0\n578,145,17.5\n578,146,18.0\n578,147,18.5\n578,148,19.0\n578,149,19.5\n578,150,10.0\n578,151,9.5\n578,152,9.0\n578,153,8.5\n578,154,9.0\n578,155,9.5\n578,156,10.0\n578,157,10.5\n578,158,11.0\n578,159,11.5\n578,160,12.0\n578,161,12.5\n578,162,13.0\n578,163,13.5\n578,164,14.0\n578,165,14.5\n578,166,15.0\n578,167,15.5\n578,168,16.0\n578,169,16.5\n578,170,17.0\n578,171,17.5\n578,172,18.0\n578,173,18.5\n578,174,19.0\n578,175,9.5\n578,176,9.0\n578,177,8.5\n578,178,8.0\n578,179,8.5\n578,180,9.0\n578,181,9.5\n578,182,10.0\n578,183,10.5\n578,184,11.0\n578,185,11.5\n578,186,12.0\n578,187,12.5\n578,188,13.0\n578,189,13.5\n578,190,14.0\n578,191,14.5\n578,192,15.0\n578,193,15.5\n578,194,16.0\n578,195,16.5\n578,196,17.0\n578,197,17.5\n578,198,18.0\n578,199,18.5\n578,200,9.0\n578,201,8.5\n578,202,8.0\n578,203,7.5\n578,204,8.0\n578,205,8.5\n578,206,9.0\n578,207,9.5\n578,208,10.0\n578,209,10.5\n578,210,11.0\n578,211,11.5\n578,212,12.0\n578,213,12.5\n578,214,13.0\n578,215,13.5\n578,216,14.0\n578,217,14.5\n578,218,15.0\n578,219,15.5\n578,220,16.0\n578,221,16.5\n578,222,17.0\n578,223,17.5\n578,224,18.0\n578,225,8.5\n578,226,8.0\n578,227,7.5\n578,228,7.0\n578,229,7.5\n578,230,8.0\n578,231,8.5\n578,232,9.0\n578,233,9.5\n578,234,10.0\n578,235,10.5\n578,236,11.0\n578,237,11.5\n578,238,12.0\n578,239,12.5\n578,240,13.0\n578,241,13.5\n578,242,14.0\n578,243,14.5\n578,244,15.0\n578,245,15.5\n578,246,16.0\n578,247,16.5\n578,248,17.0\n578,249,17.5\n578,250,8.0\n578,251,7.5\n578,252,7.0\n578,253,6.5\n578,254,7.0\n578,255,7.5\n578,256,8.0\n578,257,8.5\n578,258,9.0\n578,259,9.5\n578,260,10.0\n578,261,10.5\n578,262,11.0\n578,263,11.5\n578,264,12.0\n578,265,12.5\n578,266,13.0\n578,267,13.5\n578,268,14.0\n578,269,14.5\n578,270,15.0\n578,271,15.5\n578,272,16.0\n578,273,16.5\n578,274,17.0\n578,275,7.5\n578,276,7.0\n578,277,6.5\n578,278,6.0\n578,279,6.5\n578,280,7.0\n578,281,7.5\n578,282,8.0\n578,283,8.5\n578,284,9.0\n578,285,9.5\n578,286,10.0\n578,287,10.5\n578,288,11.0\n578,289,11.5\n578,290,12.0\n578,291,12.5\n578,292,13.0\n578,293,13.5\n578,294,14.0\n578,295,14.5\n578,296,15.0\n578,297,15.5\n578,298,16.0\n578,299,16.5\n578,300,7.0\n578,301,6.5\n578,302,6.0\n578,303,5.5\n578,304,6.0\n578,305,6.5\n578,306,7.0\n578,307,7.5\n578,308,8.0\n578,309,8.5\n578,310,9.0\n578,311,9.5\n578,312,10.0\n578,313,10.5\n578,314,11.0\n578,315,11.5\n578,316,12.0\n578,317,12.5\n578,318,13.0\n578,319,13.5\n578,320,14.0\n578,321,14.5\n578,322,15.0\n578,323,15.5\n578,324,16.0\n578,325,6.5\n578,326,6.0\n578,327,5.5\n578,328,5.0\n578,329,5.5\n578,330,6.0\n578,331,6.5\n578,332,7.0\n578,333,7.5\n578,334,8.0\n578,335,8.5\n578,336,9.0\n578,337,9.5\n578,338,10.0\n578,339,10.5\n578,340,11.0\n578,341,11.5\n578,342,12.0\n578,343,12.5\n578,344,13.0\n578,345,13.5\n578,346,14.0\n578,347,14.5\n578,348,15.0\n578,349,15.5\n578,350,6.0\n578,351,5.5\n578,352,5.0\n578,353,4.5\n578,354,5.0\n578,355,5.5\n578,356,6.0\n578,357,6.5\n578,358,7.0\n578,359,7.5\n578,360,8.0\n578,361,8.5\n578,362,9.0\n578,363,9.5\n578,364,10.0\n578,365,10.5\n578,366,11.0\n578,367,11.5\n578,368,12.0\n578,369,12.5\n578,370,13.0\n578,371,13.5\n578,372,14.0\n578,373,14.5\n578,374,15.0\n578,375,5.5\n578,376,5.0\n578,377,4.5\n578,378,4.0\n578,379,4.5\n578,380,5.0\n578,381,5.5\n578,382,6.0\n578,383,6.5\n578,384,7.0\n578,385,7.5\n578,386,8.0\n578,387,8.5\n578,388,9.0\n578,389,9.5\n578,390,10.0\n578,391,10.5\n578,392,11.0\n578,393,11.5\n578,394,12.0\n578,395,12.5\n578,396,13.0\n578,397,13.5\n578,398,14.0\n578,399,14.5\n578,400,5.0\n578,401,4.5\n578,402,4.0\n578,403,3.5\n578,404,4.0\n578,405,4.5\n578,406,5.0\n578,407,5.5\n578,408,6.0\n578,409,6.5\n578,410,7.0\n578,411,7.5\n578,412,8.0\n578,413,8.5\n578,414,9.0\n578,415,9.5\n578,416,10.0\n578,417,10.5\n578,418,11.0\n578,419,11.5\n578,420,12.0\n578,421,12.5\n578,422,13.0\n578,423,13.5\n578,424,14.0\n578,425,4.5\n578,426,4.0\n578,427,3.5\n578,428,3.0\n578,429,3.5\n578,430,4.0\n578,431,4.5\n578,432,5.0\n578,433,5.5\n578,434,6.0\n578,435,6.5\n578,436,7.0\n578,437,7.5\n578,438,8.0\n578,439,8.5\n578,440,9.0\n578,441,9.5\n578,442,10.0\n578,443,10.5\n578,444,11.0\n578,445,11.5\n578,446,12.0\n578,447,12.5\n578,448,13.0\n578,449,13.5\n578,450,4.0\n578,451,3.5\n578,452,3.0\n578,453,2.5\n578,454,3.0\n578,455,3.5\n578,456,4.0\n578,457,4.5\n578,458,5.0\n578,459,5.5\n578,460,6.0\n578,461,6.5\n578,462,7.0\n578,463,7.5\n578,464,8.0\n578,465,8.5\n578,466,9.0\n578,467,9.5\n578,468,10.0\n578,469,10.5\n578,470,11.0\n578,471,11.5\n578,472,12.0\n578,473,12.5\n578,474,13.0\n578,475,3.5\n578,476,3.0\n578,477,2.5\n578,478,2.0\n578,479,2.5\n578,480,3.0\n578,481,3.5\n578,482,4.0\n578,483,4.5\n578,484,5.0\n578,485,5.5\n578,486,6.0\n578,487,6.5\n578,488,7.0\n578,489,7.5\n578,490,8.0\n578,491,8.5\n578,492,9.0\n578,493,9.5\n578,494,10.0\n578,495,10.5\n578,496,11.0\n578,497,11.5\n578,498,12.0\n578,499,12.5\n578,500,3.0\n578,501,2.5\n578,502,2.0\n578,503,1.5\n578,504,2.0\n578,505,2.5\n578,506,3.0\n578,507,3.5\n578,508,4.0\n578,509,4.5\n578,510,5.0\n578,511,5.5\n578,512,6.0\n578,513,6.5\n578,514,7.0\n578,515,7.5\n578,516,8.0\n578,517,8.5\n578,518,9.0\n578,519,9.5\n578,520,10.0\n578,521,10.5\n578,522,11.0\n578,523,11.5\n578,524,12.0\n578,525,2.5\n578,526,2.0\n578,527,1.5\n578,528,1.0\n578,529,1.5\n578,530,2.0\n578,531,2.5\n578,532,3.0\n578,533,3.5\n578,534,4.0\n578,535,4.5\n578,536,5.0\n578,537,5.5\n578,538,6.0\n578,539,6.5\n578,540,7.0\n578,541,7.5\n578,542,8.0\n578,543,8.5\n578,544,9.0\n578,545,9.5\n578,546,10.0\n578,547,10.5\n578,548,11.0\n578,549,11.5\n578,550,2.0\n578,551,1.5\n578,552,1.0\n578,553,0.5\n578,554,1.0\n578,555,1.5\n578,556,2.0\n578,557,2.5\n578,558,3.0\n578,559,3.5\n578,560,4.0\n578,561,4.5\n578,562,5.0\n578,563,5.5\n578,564,6.0\n578,565,6.5\n578,566,7.0\n578,567,7.5\n578,568,8.0\n578,569,8.5\n578,570,9.0\n578,571,9.5\n578,572,10.0\n578,573,10.5\n578,574,11.0\n578,575,1.5\n578,576,1.0\n578,577,0.5\n578,578,0\n578,579,0.5\n578,580,1.0\n578,581,1.5\n578,582,2.0\n578,583,2.5\n578,584,3.0\n578,585,3.5\n578,586,4.0\n578,587,4.5\n578,588,5.0\n578,589,5.5\n578,590,6.0\n578,591,6.5\n578,592,7.0\n578,593,7.5\n578,594,8.0\n578,595,8.5\n578,596,9.0\n578,597,9.5\n578,598,10.0\n578,599,10.5\n578,600,2.0\n578,601,1.5\n578,602,1.0\n578,603,0.5\n578,604,1.0\n578,605,1.5\n578,606,2.0\n578,607,2.5\n578,608,3.0\n578,609,3.5\n578,610,4.0\n578,611,4.5\n578,612,5.0\n578,613,5.5\n578,614,6.0\n578,615,6.5\n578,616,7.0\n578,617,7.5\n578,618,8.0\n578,619,8.5\n578,620,9.0\n578,621,9.5\n578,622,10.0\n578,623,10.5\n578,624,11.0\n579,0,13.5\n579,1,13.0\n579,2,12.5\n579,3,12.0\n579,4,11.5\n579,5,12.0\n579,6,12.5\n579,7,13.0\n579,8,13.5\n579,9,14.0\n579,10,14.5\n579,11,15.0\n579,12,15.5\n579,13,16.0\n579,14,16.5\n579,15,17.0\n579,16,17.5\n579,17,18.0\n579,18,18.5\n579,19,19.0\n579,20,19.5\n579,21,20.0\n579,22,20.5\n579,23,21.0\n579,24,21.5\n579,25,13.0\n579,26,12.5\n579,27,12.0\n579,28,11.5\n579,29,11.0\n579,30,11.5\n579,31,12.0\n579,32,12.5\n579,33,13.0\n579,34,13.5\n579,35,14.0\n579,36,14.5\n579,37,15.0\n579,38,15.5\n579,39,16.0\n579,40,16.5\n579,41,17.0\n579,42,17.5\n579,43,18.0\n579,44,18.5\n579,45,19.0\n579,46,19.5\n579,47,20.0\n579,48,20.5\n579,49,21.0\n579,50,12.5\n579,51,12.0\n579,52,11.5\n579,53,11.0\n579,54,10.5\n579,55,11.0\n579,56,11.5\n579,57,12.0\n579,58,12.5\n579,59,13.0\n579,60,13.5\n579,61,14.0\n579,62,14.5\n579,63,15.0\n579,64,15.5\n579,65,16.0\n579,66,16.5\n579,67,17.0\n579,68,17.5\n579,69,18.0\n579,70,18.5\n579,71,19.0\n579,72,19.5\n579,73,20.0\n579,74,20.5\n579,75,12.0\n579,76,11.5\n579,77,11.0\n579,78,10.5\n579,79,10.0\n579,80,10.5\n579,81,11.0\n579,82,11.5\n579,83,12.0\n579,84,12.5\n579,85,13.0\n579,86,13.5\n579,87,14.0\n579,88,14.5\n579,89,15.0\n579,90,15.5\n579,91,16.0\n579,92,16.5\n579,93,17.0\n579,94,17.5\n579,95,18.0\n579,96,18.5\n579,97,19.0\n579,98,19.5\n579,99,20.0\n579,100,11.5\n579,101,11.0\n579,102,10.5\n579,103,10.0\n579,104,9.5\n579,105,10.0\n579,106,10.5\n579,107,11.0\n579,108,11.5\n579,109,12.0\n579,110,12.5\n579,111,13.0\n579,112,13.5\n579,113,14.0\n579,114,14.5\n579,115,15.0\n579,116,15.5\n579,117,16.0\n579,118,16.5\n579,119,17.0\n579,120,17.5\n579,121,18.0\n579,122,18.5\n579,123,19.0\n579,124,19.5\n579,125,11.0\n579,126,10.5\n579,127,10.0\n579,128,9.5\n579,129,9.0\n579,130,9.5\n579,131,10.0\n579,132,10.5\n579,133,11.0\n579,134,11.5\n579,135,12.0\n579,136,12.5\n579,137,13.0\n579,138,13.5\n579,139,14.0\n579,140,14.5\n579,141,15.0\n579,142,15.5\n579,143,16.0\n579,144,16.5\n579,145,17.0\n579,146,17.5\n579,147,18.0\n579,148,18.5\n579,149,19.0\n579,150,10.5\n579,151,10.0\n579,152,9.5\n579,153,9.0\n579,154,8.5\n579,155,9.0\n579,156,9.5\n579,157,10.0\n579,158,10.5\n579,159,11.0\n579,160,11.5\n579,161,12.0\n579,162,12.5\n579,163,13.0\n579,164,13.5\n579,165,14.0\n579,166,14.5\n579,167,15.0\n579,168,15.5\n579,169,16.0\n579,170,16.5\n579,171,17.0\n579,172,17.5\n579,173,18.0\n579,174,18.5\n579,175,10.0\n579,176,9.5\n579,177,9.0\n579,178,8.5\n579,179,8.0\n579,180,8.5\n579,181,9.0\n579,182,9.5\n579,183,10.0\n579,184,10.5\n579,185,11.0\n579,186,11.5\n579,187,12.0\n579,188,12.5\n579,189,13.0\n579,190,13.5\n579,191,14.0\n579,192,14.5\n579,193,15.0\n579,194,15.5\n579,195,16.0\n579,196,16.5\n579,197,17.0\n579,198,17.5\n579,199,18.0\n579,200,9.5\n579,201,9.0\n579,202,8.5\n579,203,8.0\n579,204,7.5\n579,205,8.0\n579,206,8.5\n579,207,9.0\n579,208,9.5\n579,209,10.0\n579,210,10.5\n579,211,11.0\n579,212,11.5\n579,213,12.0\n579,214,12.5\n579,215,13.0\n579,216,13.5\n579,217,14.0\n579,218,14.5\n579,219,15.0\n579,220,15.5\n579,221,16.0\n579,222,16.5\n579,223,17.0\n579,224,17.5\n579,225,9.0\n579,226,8.5\n579,227,8.0\n579,228,7.5\n579,229,7.0\n579,230,7.5\n579,231,8.0\n579,232,8.5\n579,233,9.0\n579,234,9.5\n579,235,10.0\n579,236,10.5\n579,237,11.0\n579,238,11.5\n579,239,12.0\n579,240,12.5\n579,241,13.0\n579,242,13.5\n579,243,14.0\n579,244,14.5\n579,245,15.0\n579,246,15.5\n579,247,16.0\n579,248,16.5\n579,249,17.0\n579,250,8.5\n579,251,8.0\n579,252,7.5\n579,253,7.0\n579,254,6.5\n579,255,7.0\n579,256,7.5\n579,257,8.0\n579,258,8.5\n579,259,9.0\n579,260,9.5\n579,261,10.0\n579,262,10.5\n579,263,11.0\n579,264,11.5\n579,265,12.0\n579,266,12.5\n579,267,13.0\n579,268,13.5\n579,269,14.0\n579,270,14.5\n579,271,15.0\n579,272,15.5\n579,273,16.0\n579,274,16.5\n579,275,8.0\n579,276,7.5\n579,277,7.0\n579,278,6.5\n579,279,6.0\n579,280,6.5\n579,281,7.0\n579,282,7.5\n579,283,8.0\n579,284,8.5\n579,285,9.0\n579,286,9.5\n579,287,10.0\n579,288,10.5\n579,289,11.0\n579,290,11.5\n579,291,12.0\n579,292,12.5\n579,293,13.0\n579,294,13.5\n579,295,14.0\n579,296,14.5\n579,297,15.0\n579,298,15.5\n579,299,16.0\n579,300,7.5\n579,301,7.0\n579,302,6.5\n579,303,6.0\n579,304,5.5\n579,305,6.0\n579,306,6.5\n579,307,7.0\n579,308,7.5\n579,309,8.0\n579,310,8.5\n579,311,9.0\n579,312,9.5\n579,313,10.0\n579,314,10.5\n579,315,11.0\n579,316,11.5\n579,317,12.0\n579,318,12.5\n579,319,13.0\n579,320,13.5\n579,321,14.0\n579,322,14.5\n579,323,15.0\n579,324,15.5\n579,325,7.0\n579,326,6.5\n579,327,6.0\n579,328,5.5\n579,329,5.0\n579,330,5.5\n579,331,6.0\n579,332,6.5\n579,333,7.0\n579,334,7.5\n579,335,8.0\n579,336,8.5\n579,337,9.0\n579,338,9.5\n579,339,10.0\n579,340,10.5\n579,341,11.0\n579,342,11.5\n579,343,12.0\n579,344,12.5\n579,345,13.0\n579,346,13.5\n579,347,14.0\n579,348,14.5\n579,349,15.0\n579,350,6.5\n579,351,6.0\n579,352,5.5\n579,353,5.0\n579,354,4.5\n579,355,5.0\n579,356,5.5\n579,357,6.0\n579,358,6.5\n579,359,7.0\n579,360,7.5\n579,361,8.0\n579,362,8.5\n579,363,9.0\n579,364,9.5\n579,365,10.0\n579,366,10.5\n579,367,11.0\n579,368,11.5\n579,369,12.0\n579,370,12.5\n579,371,13.0\n579,372,13.5\n579,373,14.0\n579,374,14.5\n579,375,6.0\n579,376,5.5\n579,377,5.0\n579,378,4.5\n579,379,4.0\n579,380,4.5\n579,381,5.0\n579,382,5.5\n579,383,6.0\n579,384,6.5\n579,385,7.0\n579,386,7.5\n579,387,8.0\n579,388,8.5\n579,389,9.0\n579,390,9.5\n579,391,10.0\n579,392,10.5\n579,393,11.0\n579,394,11.5\n579,395,12.0\n579,396,12.5\n579,397,13.0\n579,398,13.5\n579,399,14.0\n579,400,5.5\n579,401,5.0\n579,402,4.5\n579,403,4.0\n579,404,3.5\n579,405,4.0\n579,406,4.5\n579,407,5.0\n579,408,5.5\n579,409,6.0\n579,410,6.5\n579,411,7.0\n579,412,7.5\n579,413,8.0\n579,414,8.5\n579,415,9.0\n579,416,9.5\n579,417,10.0\n579,418,10.5\n579,419,11.0\n579,420,11.5\n579,421,12.0\n579,422,12.5\n579,423,13.0\n579,424,13.5\n579,425,5.0\n579,426,4.5\n579,427,4.0\n579,428,3.5\n579,429,3.0\n579,430,3.5\n579,431,4.0\n579,432,4.5\n579,433,5.0\n579,434,5.5\n579,435,6.0\n579,436,6.5\n579,437,7.0\n579,438,7.5\n579,439,8.0\n579,440,8.5\n579,441,9.0\n579,442,9.5\n579,443,10.0\n579,444,10.5\n579,445,11.0\n579,446,11.5\n579,447,12.0\n579,448,12.5\n579,449,13.0\n579,450,4.5\n579,451,4.0\n579,452,3.5\n579,453,3.0\n579,454,2.5\n579,455,3.0\n579,456,3.5\n579,457,4.0\n579,458,4.5\n579,459,5.0\n579,460,5.5\n579,461,6.0\n579,462,6.5\n579,463,7.0\n579,464,7.5\n579,465,8.0\n579,466,8.5\n579,467,9.0\n579,468,9.5\n579,469,10.0\n579,470,10.5\n579,471,11.0\n579,472,11.5\n579,473,12.0\n579,474,12.5\n579,475,4.0\n579,476,3.5\n579,477,3.0\n579,478,2.5\n579,479,2.0\n579,480,2.5\n579,481,3.0\n579,482,3.5\n579,483,4.0\n579,484,4.5\n579,485,5.0\n579,486,5.5\n579,487,6.0\n579,488,6.5\n579,489,7.0\n579,490,7.5\n579,491,8.0\n579,492,8.5\n579,493,9.0\n579,494,9.5\n579,495,10.0\n579,496,10.5\n579,497,11.0\n579,498,11.5\n579,499,12.0\n579,500,3.5\n579,501,3.0\n579,502,2.5\n579,503,2.0\n579,504,1.5\n579,505,2.0\n579,506,2.5\n579,507,3.0\n579,508,3.5\n579,509,4.0\n579,510,4.5\n579,511,5.0\n579,512,5.5\n579,513,6.0\n579,514,6.5\n579,515,7.0\n579,516,7.5\n579,517,8.0\n579,518,8.5\n579,519,9.0\n579,520,9.5\n579,521,10.0\n579,522,10.5\n579,523,11.0\n579,524,11.5\n579,525,3.0\n579,526,2.5\n579,527,2.0\n579,528,1.5\n579,529,1.0\n579,530,1.5\n579,531,2.0\n579,532,2.5\n579,533,3.0\n579,534,3.5\n579,535,4.0\n579,536,4.5\n579,537,5.0\n579,538,5.5\n579,539,6.0\n579,540,6.5\n579,541,7.0\n579,542,7.5\n579,543,8.0\n579,544,8.5\n579,545,9.0\n579,546,9.5\n579,547,10.0\n579,548,10.5\n579,549,11.0\n579,550,2.5\n579,551,2.0\n579,552,1.5\n579,553,1.0\n579,554,0.5\n579,555,1.0\n579,556,1.5\n579,557,2.0\n579,558,2.5\n579,559,3.0\n579,560,3.5\n579,561,4.0\n579,562,4.5\n579,563,5.0\n579,564,5.5\n579,565,6.0\n579,566,6.5\n579,567,7.0\n579,568,7.5\n579,569,8.0\n579,570,8.5\n579,571,9.0\n579,572,9.5\n579,573,10.0\n579,574,10.5\n579,575,2.0\n579,576,1.5\n579,577,1.0\n579,578,0.5\n579,579,0\n579,580,0.5\n579,581,1.0\n579,582,1.5\n579,583,2.0\n579,584,2.5\n579,585,3.0\n579,586,3.5\n579,587,4.0\n579,588,4.5\n579,589,5.0\n579,590,5.5\n579,591,6.0\n579,592,6.5\n579,593,7.0\n579,594,7.5\n579,595,8.0\n579,596,8.5\n579,597,9.0\n579,598,9.5\n579,599,10.0\n579,600,2.5\n579,601,2.0\n579,602,1.5\n579,603,1.0\n579,604,0.5\n579,605,1.0\n579,606,1.5\n579,607,2.0\n579,608,2.5\n579,609,3.0\n579,610,3.5\n579,611,4.0\n579,612,4.5\n579,613,5.0\n579,614,5.5\n579,615,6.0\n579,616,6.5\n579,617,7.0\n579,618,7.5\n579,619,8.0\n579,620,8.5\n579,621,9.0\n579,622,9.5\n579,623,10.0\n579,624,10.5\n580,0,14.0\n580,1,13.5\n580,2,13.0\n580,3,12.5\n580,4,12.0\n580,5,11.5\n580,6,12.0\n580,7,12.5\n580,8,13.0\n580,9,13.5\n580,10,14.0\n580,11,14.5\n580,12,15.0\n580,13,15.5\n580,14,16.0\n580,15,16.5\n580,16,17.0\n580,17,17.5\n580,18,18.0\n580,19,18.5\n580,20,19.0\n580,21,19.5\n580,22,20.0\n580,23,20.5\n580,24,21.0\n580,25,13.5\n580,26,13.0\n580,27,12.5\n580,28,12.0\n580,29,11.5\n580,30,11.0\n580,31,11.5\n580,32,12.0\n580,33,12.5\n580,34,13.0\n580,35,13.5\n580,36,14.0\n580,37,14.5\n580,38,15.0\n580,39,15.5\n580,40,16.0\n580,41,16.5\n580,42,17.0\n580,43,17.5\n580,44,18.0\n580,45,18.5\n580,46,19.0\n580,47,19.5\n580,48,20.0\n580,49,20.5\n580,50,13.0\n580,51,12.5\n580,52,12.0\n580,53,11.5\n580,54,11.0\n580,55,10.5\n580,56,11.0\n580,57,11.5\n580,58,12.0\n580,59,12.5\n580,60,13.0\n580,61,13.5\n580,62,14.0\n580,63,14.5\n580,64,15.0\n580,65,15.5\n580,66,16.0\n580,67,16.5\n580,68,17.0\n580,69,17.5\n580,70,18.0\n580,71,18.5\n580,72,19.0\n580,73,19.5\n580,74,20.0\n580,75,12.5\n580,76,12.0\n580,77,11.5\n580,78,11.0\n580,79,10.5\n580,80,10.0\n580,81,10.5\n580,82,11.0\n580,83,11.5\n580,84,12.0\n580,85,12.5\n580,86,13.0\n580,87,13.5\n580,88,14.0\n580,89,14.5\n580,90,15.0\n580,91,15.5\n580,92,16.0\n580,93,16.5\n580,94,17.0\n580,95,17.5\n580,96,18.0\n580,97,18.5\n580,98,19.0\n580,99,19.5\n580,100,12.0\n580,101,11.5\n580,102,11.0\n580,103,10.5\n580,104,10.0\n580,105,9.5\n580,106,10.0\n580,107,10.5\n580,108,11.0\n580,109,11.5\n580,110,12.0\n580,111,12.5\n580,112,13.0\n580,113,13.5\n580,114,14.0\n580,115,14.5\n580,116,15.0\n580,117,15.5\n580,118,16.0\n580,119,16.5\n580,120,17.0\n580,121,17.5\n580,122,18.0\n580,123,18.5\n580,124,19.0\n580,125,11.5\n580,126,11.0\n580,127,10.5\n580,128,10.0\n580,129,9.5\n580,130,9.0\n580,131,9.5\n580,132,10.0\n580,133,10.5\n580,134,11.0\n580,135,11.5\n580,136,12.0\n580,137,12.5\n580,138,13.0\n580,139,13.5\n580,140,14.0\n580,141,14.5\n580,142,15.0\n580,143,15.5\n580,144,16.0\n580,145,16.5\n580,146,17.0\n580,147,17.5\n580,148,18.0\n580,149,18.5\n580,150,11.0\n580,151,10.5\n580,152,10.0\n580,153,9.5\n580,154,9.0\n580,155,8.5\n580,156,9.0\n580,157,9.5\n580,158,10.0\n580,159,10.5\n580,160,11.0\n580,161,11.5\n580,162,12.0\n580,163,12.5\n580,164,13.0\n580,165,13.5\n580,166,14.0\n580,167,14.5\n580,168,15.0\n580,169,15.5\n580,170,16.0\n580,171,16.5\n580,172,17.0\n580,173,17.5\n580,174,18.0\n580,175,10.5\n580,176,10.0\n580,177,9.5\n580,178,9.0\n580,179,8.5\n580,180,8.0\n580,181,8.5\n580,182,9.0\n580,183,9.5\n580,184,10.0\n580,185,10.5\n580,186,11.0\n580,187,11.5\n580,188,12.0\n580,189,12.5\n580,190,13.0\n580,191,13.5\n580,192,14.0\n580,193,14.5\n580,194,15.0\n580,195,15.5\n580,196,16.0\n580,197,16.5\n580,198,17.0\n580,199,17.5\n580,200,10.0\n580,201,9.5\n580,202,9.0\n580,203,8.5\n580,204,8.0\n580,205,7.5\n580,206,8.0\n580,207,8.5\n580,208,9.0\n580,209,9.5\n580,210,10.0\n580,211,10.5\n580,212,11.0\n580,213,11.5\n580,214,12.0\n580,215,12.5\n580,216,13.0\n580,217,13.5\n580,218,14.0\n580,219,14.5\n580,220,15.0\n580,221,15.5\n580,222,16.0\n580,223,16.5\n580,224,17.0\n580,225,9.5\n580,226,9.0\n580,227,8.5\n580,228,8.0\n580,229,7.5\n580,230,7.0\n580,231,7.5\n580,232,8.0\n580,233,8.5\n580,234,9.0\n580,235,9.5\n580,236,10.0\n580,237,10.5\n580,238,11.0\n580,239,11.5\n580,240,12.0\n580,241,12.5\n580,242,13.0\n580,243,13.5\n580,244,14.0\n580,245,14.5\n580,246,15.0\n580,247,15.5\n580,248,16.0\n580,249,16.5\n580,250,9.0\n580,251,8.5\n580,252,8.0\n580,253,7.5\n580,254,7.0\n580,255,6.5\n580,256,7.0\n580,257,7.5\n580,258,8.0\n580,259,8.5\n580,260,9.0\n580,261,9.5\n580,262,10.0\n580,263,10.5\n580,264,11.0\n580,265,11.5\n580,266,12.0\n580,267,12.5\n580,268,13.0\n580,269,13.5\n580,270,14.0\n580,271,14.5\n580,272,15.0\n580,273,15.5\n580,274,16.0\n580,275,8.5\n580,276,8.0\n580,277,7.5\n580,278,7.0\n580,279,6.5\n580,280,6.0\n580,281,6.5\n580,282,7.0\n580,283,7.5\n580,284,8.0\n580,285,8.5\n580,286,9.0\n580,287,9.5\n580,288,10.0\n580,289,10.5\n580,290,11.0\n580,291,11.5\n580,292,12.0\n580,293,12.5\n580,294,13.0\n580,295,13.5\n580,296,14.0\n580,297,14.5\n580,298,15.0\n580,299,15.5\n580,300,8.0\n580,301,7.5\n580,302,7.0\n580,303,6.5\n580,304,6.0\n580,305,5.5\n580,306,6.0\n580,307,6.5\n580,308,7.0\n580,309,7.5\n580,310,8.0\n580,311,8.5\n580,312,9.0\n580,313,9.5\n580,314,10.0\n580,315,10.5\n580,316,11.0\n580,317,11.5\n580,318,12.0\n580,319,12.5\n580,320,13.0\n580,321,13.5\n580,322,14.0\n580,323,14.5\n580,324,15.0\n580,325,7.5\n580,326,7.0\n580,327,6.5\n580,328,6.0\n580,329,5.5\n580,330,5.0\n580,331,5.5\n580,332,6.0\n580,333,6.5\n580,334,7.0\n580,335,7.5\n580,336,8.0\n580,337,8.5\n580,338,9.0\n580,339,9.5\n580,340,10.0\n580,341,10.5\n580,342,11.0\n580,343,11.5\n580,344,12.0\n580,345,12.5\n580,346,13.0\n580,347,13.5\n580,348,14.0\n580,349,14.5\n580,350,7.0\n580,351,6.5\n580,352,6.0\n580,353,5.5\n580,354,5.0\n580,355,4.5\n580,356,5.0\n580,357,5.5\n580,358,6.0\n580,359,6.5\n580,360,7.0\n580,361,7.5\n580,362,8.0\n580,363,8.5\n580,364,9.0\n580,365,9.5\n580,366,10.0\n580,367,10.5\n580,368,11.0\n580,369,11.5\n580,370,12.0\n580,371,12.5\n580,372,13.0\n580,373,13.5\n580,374,14.0\n580,375,6.5\n580,376,6.0\n580,377,5.5\n580,378,5.0\n580,379,4.5\n580,380,4.0\n580,381,4.5\n580,382,5.0\n580,383,5.5\n580,384,6.0\n580,385,6.5\n580,386,7.0\n580,387,7.5\n580,388,8.0\n580,389,8.5\n580,390,9.0\n580,391,9.5\n580,392,10.0\n580,393,10.5\n580,394,11.0\n580,395,11.5\n580,396,12.0\n580,397,12.5\n580,398,13.0\n580,399,13.5\n580,400,6.0\n580,401,5.5\n580,402,5.0\n580,403,4.5\n580,404,4.0\n580,405,3.5\n580,406,4.0\n580,407,4.5\n580,408,5.0\n580,409,5.5\n580,410,6.0\n580,411,6.5\n580,412,7.0\n580,413,7.5\n580,414,8.0\n580,415,8.5\n580,416,9.0\n580,417,9.5\n580,418,10.0\n580,419,10.5\n580,420,11.0\n580,421,11.5\n580,422,12.0\n580,423,12.5\n580,424,13.0\n580,425,5.5\n580,426,5.0\n580,427,4.5\n580,428,4.0\n580,429,3.5\n580,430,3.0\n580,431,3.5\n580,432,4.0\n580,433,4.5\n580,434,5.0\n580,435,5.5\n580,436,6.0\n580,437,6.5\n580,438,7.0\n580,439,7.5\n580,440,8.0\n580,441,8.5\n580,442,9.0\n580,443,9.5\n580,444,10.0\n580,445,10.5\n580,446,11.0\n580,447,11.5\n580,448,12.0\n580,449,12.5\n580,450,5.0\n580,451,4.5\n580,452,4.0\n580,453,3.5\n580,454,3.0\n580,455,2.5\n580,456,3.0\n580,457,3.5\n580,458,4.0\n580,459,4.5\n580,460,5.0\n580,461,5.5\n580,462,6.0\n580,463,6.5\n580,464,7.0\n580,465,7.5\n580,466,8.0\n580,467,8.5\n580,468,9.0\n580,469,9.5\n580,470,10.0\n580,471,10.5\n580,472,11.0\n580,473,11.5\n580,474,12.0\n580,475,4.5\n580,476,4.0\n580,477,3.5\n580,478,3.0\n580,479,2.5\n580,480,2.0\n580,481,2.5\n580,482,3.0\n580,483,3.5\n580,484,4.0\n580,485,4.5\n580,486,5.0\n580,487,5.5\n580,488,6.0\n580,489,6.5\n580,490,7.0\n580,491,7.5\n580,492,8.0\n580,493,8.5\n580,494,9.0\n580,495,9.5\n580,496,10.0\n580,497,10.5\n580,498,11.0\n580,499,11.5\n580,500,4.0\n580,501,3.5\n580,502,3.0\n580,503,2.5\n580,504,2.0\n580,505,1.5\n580,506,2.0\n580,507,2.5\n580,508,3.0\n580,509,3.5\n580,510,4.0\n580,511,4.5\n580,512,5.0\n580,513,5.5\n580,514,6.0\n580,515,6.5\n580,516,7.0\n580,517,7.5\n580,518,8.0\n580,519,8.5\n580,520,9.0\n580,521,9.5\n580,522,10.0\n580,523,10.5\n580,524,11.0\n580,525,3.5\n580,526,3.0\n580,527,2.5\n580,528,2.0\n580,529,1.5\n580,530,1.0\n580,531,1.5\n580,532,2.0\n580,533,2.5\n580,534,3.0\n580,535,3.5\n580,536,4.0\n580,537,4.5\n580,538,5.0\n580,539,5.5\n580,540,6.0\n580,541,6.5\n580,542,7.0\n580,543,7.5\n580,544,8.0\n580,545,8.5\n580,546,9.0\n580,547,9.5\n580,548,10.0\n580,549,10.5\n580,550,3.0\n580,551,2.5\n580,552,2.0\n580,553,1.5\n580,554,1.0\n580,555,0.5\n580,556,1.0\n580,557,1.5\n580,558,2.0\n580,559,2.5\n580,560,3.0\n580,561,3.5\n580,562,4.0\n580,563,4.5\n580,564,5.0\n580,565,5.5\n580,566,6.0\n580,567,6.5\n580,568,7.0\n580,569,7.5\n580,570,8.0\n580,571,8.5\n580,572,9.0\n580,573,9.5\n580,574,10.0\n580,575,2.5\n580,576,2.0\n580,577,1.5\n580,578,1.0\n580,579,0.5\n580,580,0\n580,581,0.5\n580,582,1.0\n580,583,1.5\n580,584,2.0\n580,585,2.5\n580,586,3.0\n580,587,3.5\n580,588,4.0\n580,589,4.5\n580,590,5.0\n580,591,5.5\n580,592,6.0\n580,593,6.5\n580,594,7.0\n580,595,7.5\n580,596,8.0\n580,597,8.5\n580,598,9.0\n580,599,9.5\n580,600,3.0\n580,601,2.5\n580,602,2.0\n580,603,1.5\n580,604,1.0\n580,605,0.5\n580,606,1.0\n580,607,1.5\n580,608,2.0\n580,609,2.5\n580,610,3.0\n580,611,3.5\n580,612,4.0\n580,613,4.5\n580,614,5.0\n580,615,5.5\n580,616,6.0\n580,617,6.5\n580,618,7.0\n580,619,7.5\n580,620,8.0\n580,621,8.5\n580,622,9.0\n580,623,9.5\n580,624,10.0\n581,0,14.5\n581,1,14.0\n581,2,13.5\n581,3,13.0\n581,4,12.5\n581,5,12.0\n581,6,11.5\n581,7,12.0\n581,8,12.5\n581,9,13.0\n581,10,13.5\n581,11,14.0\n581,12,14.5\n581,13,15.0\n581,14,15.5\n581,15,16.0\n581,16,16.5\n581,17,17.0\n581,18,17.5\n581,19,18.0\n581,20,18.5\n581,21,19.0\n581,22,19.5\n581,23,20.0\n581,24,20.5\n581,25,14.0\n581,26,13.5\n581,27,13.0\n581,28,12.5\n581,29,12.0\n581,30,11.5\n581,31,11.0\n581,32,11.5\n581,33,12.0\n581,34,12.5\n581,35,13.0\n581,36,13.5\n581,37,14.0\n581,38,14.5\n581,39,15.0\n581,40,15.5\n581,41,16.0\n581,42,16.5\n581,43,17.0\n581,44,17.5\n581,45,18.0\n581,46,18.5\n581,47,19.0\n581,48,19.5\n581,49,20.0\n581,50,13.5\n581,51,13.0\n581,52,12.5\n581,53,12.0\n581,54,11.5\n581,55,11.0\n581,56,10.5\n581,57,11.0\n581,58,11.5\n581,59,12.0\n581,60,12.5\n581,61,13.0\n581,62,13.5\n581,63,14.0\n581,64,14.5\n581,65,15.0\n581,66,15.5\n581,67,16.0\n581,68,16.5\n581,69,17.0\n581,70,17.5\n581,71,18.0\n581,72,18.5\n581,73,19.0\n581,74,19.5\n581,75,13.0\n581,76,12.5\n581,77,12.0\n581,78,11.5\n581,79,11.0\n581,80,10.5\n581,81,10.0\n581,82,10.5\n581,83,11.0\n581,84,11.5\n581,85,12.0\n581,86,12.5\n581,87,13.0\n581,88,13.5\n581,89,14.0\n581,90,14.5\n581,91,15.0\n581,92,15.5\n581,93,16.0\n581,94,16.5\n581,95,17.0\n581,96,17.5\n581,97,18.0\n581,98,18.5\n581,99,19.0\n581,100,12.5\n581,101,12.0\n581,102,11.5\n581,103,11.0\n581,104,10.5\n581,105,10.0\n581,106,9.5\n581,107,10.0\n581,108,10.5\n581,109,11.0\n581,110,11.5\n581,111,12.0\n581,112,12.5\n581,113,13.0\n581,114,13.5\n581,115,14.0\n581,116,14.5\n581,117,15.0\n581,118,15.5\n581,119,16.0\n581,120,16.5\n581,121,17.0\n581,122,17.5\n581,123,18.0\n581,124,18.5\n581,125,12.0\n581,126,11.5\n581,127,11.0\n581,128,10.5\n581,129,10.0\n581,130,9.5\n581,131,9.0\n581,132,9.5\n581,133,10.0\n581,134,10.5\n581,135,11.0\n581,136,11.5\n581,137,12.0\n581,138,12.5\n581,139,13.0\n581,140,13.5\n581,141,14.0\n581,142,14.5\n581,143,15.0\n581,144,15.5\n581,145,16.0\n581,146,16.5\n581,147,17.0\n581,148,17.5\n581,149,18.0\n581,150,11.5\n581,151,11.0\n581,152,10.5\n581,153,10.0\n581,154,9.5\n581,155,9.0\n581,156,8.5\n581,157,9.0\n581,158,9.5\n581,159,10.0\n581,160,10.5\n581,161,11.0\n581,162,11.5\n581,163,12.0\n581,164,12.5\n581,165,13.0\n581,166,13.5\n581,167,14.0\n581,168,14.5\n581,169,15.0\n581,170,15.5\n581,171,16.0\n581,172,16.5\n581,173,17.0\n581,174,17.5\n581,175,11.0\n581,176,10.5\n581,177,10.0\n581,178,9.5\n581,179,9.0\n581,180,8.5\n581,181,8.0\n581,182,8.5\n581,183,9.0\n581,184,9.5\n581,185,10.0\n581,186,10.5\n581,187,11.0\n581,188,11.5\n581,189,12.0\n581,190,12.5\n581,191,13.0\n581,192,13.5\n581,193,14.0\n581,194,14.5\n581,195,15.0\n581,196,15.5\n581,197,16.0\n581,198,16.5\n581,199,17.0\n581,200,10.5\n581,201,10.0\n581,202,9.5\n581,203,9.0\n581,204,8.5\n581,205,8.0\n581,206,7.5\n581,207,8.0\n581,208,8.5\n581,209,9.0\n581,210,9.5\n581,211,10.0\n581,212,10.5\n581,213,11.0\n581,214,11.5\n581,215,12.0\n581,216,12.5\n581,217,13.0\n581,218,13.5\n581,219,14.0\n581,220,14.5\n581,221,15.0\n581,222,15.5\n581,223,16.0\n581,224,16.5\n581,225,10.0\n581,226,9.5\n581,227,9.0\n581,228,8.5\n581,229,8.0\n581,230,7.5\n581,231,7.0\n581,232,7.5\n581,233,8.0\n581,234,8.5\n581,235,9.0\n581,236,9.5\n581,237,10.0\n581,238,10.5\n581,239,11.0\n581,240,11.5\n581,241,12.0\n581,242,12.5\n581,243,13.0\n581,244,13.5\n581,245,14.0\n581,246,14.5\n581,247,15.0\n581,248,15.5\n581,249,16.0\n581,250,9.5\n581,251,9.0\n581,252,8.5\n581,253,8.0\n581,254,7.5\n581,255,7.0\n581,256,6.5\n581,257,7.0\n581,258,7.5\n581,259,8.0\n581,260,8.5\n581,261,9.0\n581,262,9.5\n581,263,10.0\n581,264,10.5\n581,265,11.0\n581,266,11.5\n581,267,12.0\n581,268,12.5\n581,269,13.0\n581,270,13.5\n581,271,14.0\n581,272,14.5\n581,273,15.0\n581,274,15.5\n581,275,9.0\n581,276,8.5\n581,277,8.0\n581,278,7.5\n581,279,7.0\n581,280,6.5\n581,281,6.0\n581,282,6.5\n581,283,7.0\n581,284,7.5\n581,285,8.0\n581,286,8.5\n581,287,9.0\n581,288,9.5\n581,289,10.0\n581,290,10.5\n581,291,11.0\n581,292,11.5\n581,293,12.0\n581,294,12.5\n581,295,13.0\n581,296,13.5\n581,297,14.0\n581,298,14.5\n581,299,15.0\n581,300,8.5\n581,301,8.0\n581,302,7.5\n581,303,7.0\n581,304,6.5\n581,305,6.0\n581,306,5.5\n581,307,6.0\n581,308,6.5\n581,309,7.0\n581,310,7.5\n581,311,8.0\n581,312,8.5\n581,313,9.0\n581,314,9.5\n581,315,10.0\n581,316,10.5\n581,317,11.0\n581,318,11.5\n581,319,12.0\n581,320,12.5\n581,321,13.0\n581,322,13.5\n581,323,14.0\n581,324,14.5\n581,325,8.0\n581,326,7.5\n581,327,7.0\n581,328,6.5\n581,329,6.0\n581,330,5.5\n581,331,5.0\n581,332,5.5\n581,333,6.0\n581,334,6.5\n581,335,7.0\n581,336,7.5\n581,337,8.0\n581,338,8.5\n581,339,9.0\n581,340,9.5\n581,341,10.0\n581,342,10.5\n581,343,11.0\n581,344,11.5\n581,345,12.0\n581,346,12.5\n581,347,13.0\n581,348,13.5\n581,349,14.0\n581,350,7.5\n581,351,7.0\n581,352,6.5\n581,353,6.0\n581,354,5.5\n581,355,5.0\n581,356,4.5\n581,357,5.0\n581,358,5.5\n581,359,6.0\n581,360,6.5\n581,361,7.0\n581,362,7.5\n581,363,8.0\n581,364,8.5\n581,365,9.0\n581,366,9.5\n581,367,10.0\n581,368,10.5\n581,369,11.0\n581,370,11.5\n581,371,12.0\n581,372,12.5\n581,373,13.0\n581,374,13.5\n581,375,7.0\n581,376,6.5\n581,377,6.0\n581,378,5.5\n581,379,5.0\n581,380,4.5\n581,381,4.0\n581,382,4.5\n581,383,5.0\n581,384,5.5\n581,385,6.0\n581,386,6.5\n581,387,7.0\n581,388,7.5\n581,389,8.0\n581,390,8.5\n581,391,9.0\n581,392,9.5\n581,393,10.0\n581,394,10.5\n581,395,11.0\n581,396,11.5\n581,397,12.0\n581,398,12.5\n581,399,13.0\n581,400,6.5\n581,401,6.0\n581,402,5.5\n581,403,5.0\n581,404,4.5\n581,405,4.0\n581,406,3.5\n581,407,4.0\n581,408,4.5\n581,409,5.0\n581,410,5.5\n581,411,6.0\n581,412,6.5\n581,413,7.0\n581,414,7.5\n581,415,8.0\n581,416,8.5\n581,417,9.0\n581,418,9.5\n581,419,10.0\n581,420,10.5\n581,421,11.0\n581,422,11.5\n581,423,12.0\n581,424,12.5\n581,425,6.0\n581,426,5.5\n581,427,5.0\n581,428,4.5\n581,429,4.0\n581,430,3.5\n581,431,3.0\n581,432,3.5\n581,433,4.0\n581,434,4.5\n581,435,5.0\n581,436,5.5\n581,437,6.0\n581,438,6.5\n581,439,7.0\n581,440,7.5\n581,441,8.0\n581,442,8.5\n581,443,9.0\n581,444,9.5\n581,445,10.0\n581,446,10.5\n581,447,11.0\n581,448,11.5\n581,449,12.0\n581,450,5.5\n581,451,5.0\n581,452,4.5\n581,453,4.0\n581,454,3.5\n581,455,3.0\n581,456,2.5\n581,457,3.0\n581,458,3.5\n581,459,4.0\n581,460,4.5\n581,461,5.0\n581,462,5.5\n581,463,6.0\n581,464,6.5\n581,465,7.0\n581,466,7.5\n581,467,8.0\n581,468,8.5\n581,469,9.0\n581,470,9.5\n581,471,10.0\n581,472,10.5\n581,473,11.0\n581,474,11.5\n581,475,5.0\n581,476,4.5\n581,477,4.0\n581,478,3.5\n581,479,3.0\n581,480,2.5\n581,481,2.0\n581,482,2.5\n581,483,3.0\n581,484,3.5\n581,485,4.0\n581,486,4.5\n581,487,5.0\n581,488,5.5\n581,489,6.0\n581,490,6.5\n581,491,7.0\n581,492,7.5\n581,493,8.0\n581,494,8.5\n581,495,9.0\n581,496,9.5\n581,497,10.0\n581,498,10.5\n581,499,11.0\n581,500,4.5\n581,501,4.0\n581,502,3.5\n581,503,3.0\n581,504,2.5\n581,505,2.0\n581,506,1.5\n581,507,2.0\n581,508,2.5\n581,509,3.0\n581,510,3.5\n581,511,4.0\n581,512,4.5\n581,513,5.0\n581,514,5.5\n581,515,6.0\n581,516,6.5\n581,517,7.0\n581,518,7.5\n581,519,8.0\n581,520,8.5\n581,521,9.0\n581,522,9.5\n581,523,10.0\n581,524,10.5\n581,525,4.0\n581,526,3.5\n581,527,3.0\n581,528,2.5\n581,529,2.0\n581,530,1.5\n581,531,1.0\n581,532,1.5\n581,533,2.0\n581,534,2.5\n581,535,3.0\n581,536,3.5\n581,537,4.0\n581,538,4.5\n581,539,5.0\n581,540,5.5\n581,541,6.0\n581,542,6.5\n581,543,7.0\n581,544,7.5\n581,545,8.0\n581,546,8.5\n581,547,9.0\n581,548,9.5\n581,549,10.0\n581,550,3.5\n581,551,3.0\n581,552,2.5\n581,553,2.0\n581,554,1.5\n581,555,1.0\n581,556,0.5\n581,557,1.0\n581,558,1.5\n581,559,2.0\n581,560,2.5\n581,561,3.0\n581,562,3.5\n581,563,4.0\n581,564,4.5\n581,565,5.0\n581,566,5.5\n581,567,6.0\n581,568,6.5\n581,569,7.0\n581,570,7.5\n581,571,8.0\n581,572,8.5\n581,573,9.0\n581,574,9.5\n581,575,3.0\n581,576,2.5\n581,577,2.0\n581,578,1.5\n581,579,1.0\n581,580,0.5\n581,581,0\n581,582,0.5\n581,583,1.0\n581,584,1.5\n581,585,2.0\n581,586,2.5\n581,587,3.0\n581,588,3.5\n581,589,4.0\n581,590,4.5\n581,591,5.0\n581,592,5.5\n581,593,6.0\n581,594,6.5\n581,595,7.0\n581,596,7.5\n581,597,8.0\n581,598,8.5\n581,599,9.0\n581,600,3.5\n581,601,3.0\n581,602,2.5\n581,603,2.0\n581,604,1.5\n581,605,1.0\n581,606,0.5\n581,607,1.0\n581,608,1.5\n581,609,2.0\n581,610,2.5\n581,611,3.0\n581,612,3.5\n581,613,4.0\n581,614,4.5\n581,615,5.0\n581,616,5.5\n581,617,6.0\n581,618,6.5\n581,619,7.0\n581,620,7.5\n581,621,8.0\n581,622,8.5\n581,623,9.0\n581,624,9.5\n582,0,15.0\n582,1,14.5\n582,2,14.0\n582,3,13.5\n582,4,13.0\n582,5,12.5\n582,6,12.0\n582,7,11.5\n582,8,12.0\n582,9,12.5\n582,10,13.0\n582,11,13.5\n582,12,14.0\n582,13,14.5\n582,14,15.0\n582,15,15.5\n582,16,16.0\n582,17,16.5\n582,18,17.0\n582,19,17.5\n582,20,18.0\n582,21,18.5\n582,22,19.0\n582,23,19.5\n582,24,20.0\n582,25,14.5\n582,26,14.0\n582,27,13.5\n582,28,13.0\n582,29,12.5\n582,30,12.0\n582,31,11.5\n582,32,11.0\n582,33,11.5\n582,34,12.0\n582,35,12.5\n582,36,13.0\n582,37,13.5\n582,38,14.0\n582,39,14.5\n582,40,15.0\n582,41,15.5\n582,42,16.0\n582,43,16.5\n582,44,17.0\n582,45,17.5\n582,46,18.0\n582,47,18.5\n582,48,19.0\n582,49,19.5\n582,50,14.0\n582,51,13.5\n582,52,13.0\n582,53,12.5\n582,54,12.0\n582,55,11.5\n582,56,11.0\n582,57,10.5\n582,58,11.0\n582,59,11.5\n582,60,12.0\n582,61,12.5\n582,62,13.0\n582,63,13.5\n582,64,14.0\n582,65,14.5\n582,66,15.0\n582,67,15.5\n582,68,16.0\n582,69,16.5\n582,70,17.0\n582,71,17.5\n582,72,18.0\n582,73,18.5\n582,74,19.0\n582,75,13.5\n582,76,13.0\n582,77,12.5\n582,78,12.0\n582,79,11.5\n582,80,11.0\n582,81,10.5\n582,82,10.0\n582,83,10.5\n582,84,11.0\n582,85,11.5\n582,86,12.0\n582,87,12.5\n582,88,13.0\n582,89,13.5\n582,90,14.0\n582,91,14.5\n582,92,15.0\n582,93,15.5\n582,94,16.0\n582,95,16.5\n582,96,17.0\n582,97,17.5\n582,98,18.0\n582,99,18.5\n582,100,13.0\n582,101,12.5\n582,102,12.0\n582,103,11.5\n582,104,11.0\n582,105,10.5\n582,106,10.0\n582,107,9.5\n582,108,10.0\n582,109,10.5\n582,110,11.0\n582,111,11.5\n582,112,12.0\n582,113,12.5\n582,114,13.0\n582,115,13.5\n582,116,14.0\n582,117,14.5\n582,118,15.0\n582,119,15.5\n582,120,16.0\n582,121,16.5\n582,122,17.0\n582,123,17.5\n582,124,18.0\n582,125,12.5\n582,126,12.0\n582,127,11.5\n582,128,11.0\n582,129,10.5\n582,130,10.0\n582,131,9.5\n582,132,9.0\n582,133,9.5\n582,134,10.0\n582,135,10.5\n582,136,11.0\n582,137,11.5\n582,138,12.0\n582,139,12.5\n582,140,13.0\n582,141,13.5\n582,142,14.0\n582,143,14.5\n582,144,15.0\n582,145,15.5\n582,146,16.0\n582,147,16.5\n582,148,17.0\n582,149,17.5\n582,150,12.0\n582,151,11.5\n582,152,11.0\n582,153,10.5\n582,154,10.0\n582,155,9.5\n582,156,9.0\n582,157,8.5\n582,158,9.0\n582,159,9.5\n582,160,10.0\n582,161,10.5\n582,162,11.0\n582,163,11.5\n582,164,12.0\n582,165,12.5\n582,166,13.0\n582,167,13.5\n582,168,14.0\n582,169,14.5\n582,170,15.0\n582,171,15.5\n582,172,16.0\n582,173,16.5\n582,174,17.0\n582,175,11.5\n582,176,11.0\n582,177,10.5\n582,178,10.0\n582,179,9.5\n582,180,9.0\n582,181,8.5\n582,182,8.0\n582,183,8.5\n582,184,9.0\n582,185,9.5\n582,186,10.0\n582,187,10.5\n582,188,11.0\n582,189,11.5\n582,190,12.0\n582,191,12.5\n582,192,13.0\n582,193,13.5\n582,194,14.0\n582,195,14.5\n582,196,15.0\n582,197,15.5\n582,198,16.0\n582,199,16.5\n582,200,11.0\n582,201,10.5\n582,202,10.0\n582,203,9.5\n582,204,9.0\n582,205,8.5\n582,206,8.0\n582,207,7.5\n582,208,8.0\n582,209,8.5\n582,210,9.0\n582,211,9.5\n582,212,10.0\n582,213,10.5\n582,214,11.0\n582,215,11.5\n582,216,12.0\n582,217,12.5\n582,218,13.0\n582,219,13.5\n582,220,14.0\n582,221,14.5\n582,222,15.0\n582,223,15.5\n582,224,16.0\n582,225,10.5\n582,226,10.0\n582,227,9.5\n582,228,9.0\n582,229,8.5\n582,230,8.0\n582,231,7.5\n582,232,7.0\n582,233,7.5\n582,234,8.0\n582,235,8.5\n582,236,9.0\n582,237,9.5\n582,238,10.0\n582,239,10.5\n582,240,11.0\n582,241,11.5\n582,242,12.0\n582,243,12.5\n582,244,13.0\n582,245,13.5\n582,246,14.0\n582,247,14.5\n582,248,15.0\n582,249,15.5\n582,250,10.0\n582,251,9.5\n582,252,9.0\n582,253,8.5\n582,254,8.0\n582,255,7.5\n582,256,7.0\n582,257,6.5\n582,258,7.0\n582,259,7.5\n582,260,8.0\n582,261,8.5\n582,262,9.0\n582,263,9.5\n582,264,10.0\n582,265,10.5\n582,266,11.0\n582,267,11.5\n582,268,12.0\n582,269,12.5\n582,270,13.0\n582,271,13.5\n582,272,14.0\n582,273,14.5\n582,274,15.0\n582,275,9.5\n582,276,9.0\n582,277,8.5\n582,278,8.0\n582,279,7.5\n582,280,7.0\n582,281,6.5\n582,282,6.0\n582,283,6.5\n582,284,7.0\n582,285,7.5\n582,286,8.0\n582,287,8.5\n582,288,9.0\n582,289,9.5\n582,290,10.0\n582,291,10.5\n582,292,11.0\n582,293,11.5\n582,294,12.0\n582,295,12.5\n582,296,13.0\n582,297,13.5\n582,298,14.0\n582,299,14.5\n582,300,9.0\n582,301,8.5\n582,302,8.0\n582,303,7.5\n582,304,7.0\n582,305,6.5\n582,306,6.0\n582,307,5.5\n582,308,6.0\n582,309,6.5\n582,310,7.0\n582,311,7.5\n582,312,8.0\n582,313,8.5\n582,314,9.0\n582,315,9.5\n582,316,10.0\n582,317,10.5\n582,318,11.0\n582,319,11.5\n582,320,12.0\n582,321,12.5\n582,322,13.0\n582,323,13.5\n582,324,14.0\n582,325,8.5\n582,326,8.0\n582,327,7.5\n582,328,7.0\n582,329,6.5\n582,330,6.0\n582,331,5.5\n582,332,5.0\n582,333,5.5\n582,334,6.0\n582,335,6.5\n582,336,7.0\n582,337,7.5\n582,338,8.0\n582,339,8.5\n582,340,9.0\n582,341,9.5\n582,342,10.0\n582,343,10.5\n582,344,11.0\n582,345,11.5\n582,346,12.0\n582,347,12.5\n582,348,13.0\n582,349,13.5\n582,350,8.0\n582,351,7.5\n582,352,7.0\n582,353,6.5\n582,354,6.0\n582,355,5.5\n582,356,5.0\n582,357,4.5\n582,358,5.0\n582,359,5.5\n582,360,6.0\n582,361,6.5\n582,362,7.0\n582,363,7.5\n582,364,8.0\n582,365,8.5\n582,366,9.0\n582,367,9.5\n582,368,10.0\n582,369,10.5\n582,370,11.0\n582,371,11.5\n582,372,12.0\n582,373,12.5\n582,374,13.0\n582,375,7.5\n582,376,7.0\n582,377,6.5\n582,378,6.0\n582,379,5.5\n582,380,5.0\n582,381,4.5\n582,382,4.0\n582,383,4.5\n582,384,5.0\n582,385,5.5\n582,386,6.0\n582,387,6.5\n582,388,7.0\n582,389,7.5\n582,390,8.0\n582,391,8.5\n582,392,9.0\n582,393,9.5\n582,394,10.0\n582,395,10.5\n582,396,11.0\n582,397,11.5\n582,398,12.0\n582,399,12.5\n582,400,7.0\n582,401,6.5\n582,402,6.0\n582,403,5.5\n582,404,5.0\n582,405,4.5\n582,406,4.0\n582,407,3.5\n582,408,4.0\n582,409,4.5\n582,410,5.0\n582,411,5.5\n582,412,6.0\n582,413,6.5\n582,414,7.0\n582,415,7.5\n582,416,8.0\n582,417,8.5\n582,418,9.0\n582,419,9.5\n582,420,10.0\n582,421,10.5\n582,422,11.0\n582,423,11.5\n582,424,12.0\n582,425,6.5\n582,426,6.0\n582,427,5.5\n582,428,5.0\n582,429,4.5\n582,430,4.0\n582,431,3.5\n582,432,3.0\n582,433,3.5\n582,434,4.0\n582,435,4.5\n582,436,5.0\n582,437,5.5\n582,438,6.0\n582,439,6.5\n582,440,7.0\n582,441,7.5\n582,442,8.0\n582,443,8.5\n582,444,9.0\n582,445,9.5\n582,446,10.0\n582,447,10.5\n582,448,11.0\n582,449,11.5\n582,450,6.0\n582,451,5.5\n582,452,5.0\n582,453,4.5\n582,454,4.0\n582,455,3.5\n582,456,3.0\n582,457,2.5\n582,458,3.0\n582,459,3.5\n582,460,4.0\n582,461,4.5\n582,462,5.0\n582,463,5.5\n582,464,6.0\n582,465,6.5\n582,466,7.0\n582,467,7.5\n582,468,8.0\n582,469,8.5\n582,470,9.0\n582,471,9.5\n582,472,10.0\n582,473,10.5\n582,474,11.0\n582,475,5.5\n582,476,5.0\n582,477,4.5\n582,478,4.0\n582,479,3.5\n582,480,3.0\n582,481,2.5\n582,482,2.0\n582,483,2.5\n582,484,3.0\n582,485,3.5\n582,486,4.0\n582,487,4.5\n582,488,5.0\n582,489,5.5\n582,490,6.0\n582,491,6.5\n582,492,7.0\n582,493,7.5\n582,494,8.0\n582,495,8.5\n582,496,9.0\n582,497,9.5\n582,498,10.0\n582,499,10.5\n582,500,5.0\n582,501,4.5\n582,502,4.0\n582,503,3.5\n582,504,3.0\n582,505,2.5\n582,506,2.0\n582,507,1.5\n582,508,2.0\n582,509,2.5\n582,510,3.0\n582,511,3.5\n582,512,4.0\n582,513,4.5\n582,514,5.0\n582,515,5.5\n582,516,6.0\n582,517,6.5\n582,518,7.0\n582,519,7.5\n582,520,8.0\n582,521,8.5\n582,522,9.0\n582,523,9.5\n582,524,10.0\n582,525,4.5\n582,526,4.0\n582,527,3.5\n582,528,3.0\n582,529,2.5\n582,530,2.0\n582,531,1.5\n582,532,1.0\n582,533,1.5\n582,534,2.0\n582,535,2.5\n582,536,3.0\n582,537,3.5\n582,538,4.0\n582,539,4.5\n582,540,5.0\n582,541,5.5\n582,542,6.0\n582,543,6.5\n582,544,7.0\n582,545,7.5\n582,546,8.0\n582,547,8.5\n582,548,9.0\n582,549,9.5\n582,550,4.0\n582,551,3.5\n582,552,3.0\n582,553,2.5\n582,554,2.0\n582,555,1.5\n582,556,1.0\n582,557,0.5\n582,558,1.0\n582,559,1.5\n582,560,2.0\n582,561,2.5\n582,562,3.0\n582,563,3.5\n582,564,4.0\n582,565,4.5\n582,566,5.0\n582,567,5.5\n582,568,6.0\n582,569,6.5\n582,570,7.0\n582,571,7.5\n582,572,8.0\n582,573,8.5\n582,574,9.0\n582,575,3.5\n582,576,3.0\n582,577,2.5\n582,578,2.0\n582,579,1.5\n582,580,1.0\n582,581,0.5\n582,582,0\n582,583,0.5\n582,584,1.0\n582,585,1.5\n582,586,2.0\n582,587,2.5\n582,588,3.0\n582,589,3.5\n582,590,4.0\n582,591,4.5\n582,592,5.0\n582,593,5.5\n582,594,6.0\n582,595,6.5\n582,596,7.0\n582,597,7.5\n582,598,8.0\n582,599,8.5\n582,600,4.0\n582,601,3.5\n582,602,3.0\n582,603,2.5\n582,604,2.0\n582,605,1.5\n582,606,1.0\n582,607,0.5\n582,608,1.0\n582,609,1.5\n582,610,2.0\n582,611,2.5\n582,612,3.0\n582,613,3.5\n582,614,4.0\n582,615,4.5\n582,616,5.0\n582,617,5.5\n582,618,6.0\n582,619,6.5\n582,620,7.0\n582,621,7.5\n582,622,8.0\n582,623,8.5\n582,624,9.0\n583,0,15.5\n583,1,15.0\n583,2,14.5\n583,3,14.0\n583,4,13.5\n583,5,13.0\n583,6,12.5\n583,7,12.0\n583,8,11.5\n583,9,12.0\n583,10,12.5\n583,11,13.0\n583,12,13.5\n583,13,14.0\n583,14,14.5\n583,15,15.0\n583,16,15.5\n583,17,16.0\n583,18,16.5\n583,19,17.0\n583,20,17.5\n583,21,18.0\n583,22,18.5\n583,23,19.0\n583,24,19.5\n583,25,15.0\n583,26,14.5\n583,27,14.0\n583,28,13.5\n583,29,13.0\n583,30,12.5\n583,31,12.0\n583,32,11.5\n583,33,11.0\n583,34,11.5\n583,35,12.0\n583,36,12.5\n583,37,13.0\n583,38,13.5\n583,39,14.0\n583,40,14.5\n583,41,15.0\n583,42,15.5\n583,43,16.0\n583,44,16.5\n583,45,17.0\n583,46,17.5\n583,47,18.0\n583,48,18.5\n583,49,19.0\n583,50,14.5\n583,51,14.0\n583,52,13.5\n583,53,13.0\n583,54,12.5\n583,55,12.0\n583,56,11.5\n583,57,11.0\n583,58,10.5\n583,59,11.0\n583,60,11.5\n583,61,12.0\n583,62,12.5\n583,63,13.0\n583,64,13.5\n583,65,14.0\n583,66,14.5\n583,67,15.0\n583,68,15.5\n583,69,16.0\n583,70,16.5\n583,71,17.0\n583,72,17.5\n583,73,18.0\n583,74,18.5\n583,75,14.0\n583,76,13.5\n583,77,13.0\n583,78,12.5\n583,79,12.0\n583,80,11.5\n583,81,11.0\n583,82,10.5\n583,83,10.0\n583,84,10.5\n583,85,11.0\n583,86,11.5\n583,87,12.0\n583,88,12.5\n583,89,13.0\n583,90,13.5\n583,91,14.0\n583,92,14.5\n583,93,15.0\n583,94,15.5\n583,95,16.0\n583,96,16.5\n583,97,17.0\n583,98,17.5\n583,99,18.0\n583,100,13.5\n583,101,13.0\n583,102,12.5\n583,103,12.0\n583,104,11.5\n583,105,11.0\n583,106,10.5\n583,107,10.0\n583,108,9.5\n583,109,10.0\n583,110,10.5\n583,111,11.0\n583,112,11.5\n583,113,12.0\n583,114,12.5\n583,115,13.0\n583,116,13.5\n583,117,14.0\n583,118,14.5\n583,119,15.0\n583,120,15.5\n583,121,16.0\n583,122,16.5\n583,123,17.0\n583,124,17.5\n583,125,13.0\n583,126,12.5\n583,127,12.0\n583,128,11.5\n583,129,11.0\n583,130,10.5\n583,131,10.0\n583,132,9.5\n583,133,9.0\n583,134,9.5\n583,135,10.0\n583,136,10.5\n583,137,11.0\n583,138,11.5\n583,139,12.0\n583,140,12.5\n583,141,13.0\n583,142,13.5\n583,143,14.0\n583,144,14.5\n583,145,15.0\n583,146,15.5\n583,147,16.0\n583,148,16.5\n583,149,17.0\n583,150,12.5\n583,151,12.0\n583,152,11.5\n583,153,11.0\n583,154,10.5\n583,155,10.0\n583,156,9.5\n583,157,9.0\n583,158,8.5\n583,159,9.0\n583,160,9.5\n583,161,10.0\n583,162,10.5\n583,163,11.0\n583,164,11.5\n583,165,12.0\n583,166,12.5\n583,167,13.0\n583,168,13.5\n583,169,14.0\n583,170,14.5\n583,171,15.0\n583,172,15.5\n583,173,16.0\n583,174,16.5\n583,175,12.0\n583,176,11.5\n583,177,11.0\n583,178,10.5\n583,179,10.0\n583,180,9.5\n583,181,9.0\n583,182,8.5\n583,183,8.0\n583,184,8.5\n583,185,9.0\n583,186,9.5\n583,187,10.0\n583,188,10.5\n583,189,11.0\n583,190,11.5\n583,191,12.0\n583,192,12.5\n583,193,13.0\n583,194,13.5\n583,195,14.0\n583,196,14.5\n583,197,15.0\n583,198,15.5\n583,199,16.0\n583,200,11.5\n583,201,11.0\n583,202,10.5\n583,203,10.0\n583,204,9.5\n583,205,9.0\n583,206,8.5\n583,207,8.0\n583,208,7.5\n583,209,8.0\n583,210,8.5\n583,211,9.0\n583,212,9.5\n583,213,10.0\n583,214,10.5\n583,215,11.0\n583,216,11.5\n583,217,12.0\n583,218,12.5\n583,219,13.0\n583,220,13.5\n583,221,14.0\n583,222,14.5\n583,223,15.0\n583,224,15.5\n583,225,11.0\n583,226,10.5\n583,227,10.0\n583,228,9.5\n583,229,9.0\n583,230,8.5\n583,231,8.0\n583,232,7.5\n583,233,7.0\n583,234,7.5\n583,235,8.0\n583,236,8.5\n583,237,9.0\n583,238,9.5\n583,239,10.0\n583,240,10.5\n583,241,11.0\n583,242,11.5\n583,243,12.0\n583,244,12.5\n583,245,13.0\n583,246,13.5\n583,247,14.0\n583,248,14.5\n583,249,15.0\n583,250,10.5\n583,251,10.0\n583,252,9.5\n583,253,9.0\n583,254,8.5\n583,255,8.0\n583,256,7.5\n583,257,7.0\n583,258,6.5\n583,259,7.0\n583,260,7.5\n583,261,8.0\n583,262,8.5\n583,263,9.0\n583,264,9.5\n583,265,10.0\n583,266,10.5\n583,267,11.0\n583,268,11.5\n583,269,12.0\n583,270,12.5\n583,271,13.0\n583,272,13.5\n583,273,14.0\n583,274,14.5\n583,275,10.0\n583,276,9.5\n583,277,9.0\n583,278,8.5\n583,279,8.0\n583,280,7.5\n583,281,7.0\n583,282,6.5\n583,283,6.0\n583,284,6.5\n583,285,7.0\n583,286,7.5\n583,287,8.0\n583,288,8.5\n583,289,9.0\n583,290,9.5\n583,291,10.0\n583,292,10.5\n583,293,11.0\n583,294,11.5\n583,295,12.0\n583,296,12.5\n583,297,13.0\n583,298,13.5\n583,299,14.0\n583,300,9.5\n583,301,9.0\n583,302,8.5\n583,303,8.0\n583,304,7.5\n583,305,7.0\n583,306,6.5\n583,307,6.0\n583,308,5.5\n583,309,6.0\n583,310,6.5\n583,311,7.0\n583,312,7.5\n583,313,8.0\n583,314,8.5\n583,315,9.0\n583,316,9.5\n583,317,10.0\n583,318,10.5\n583,319,11.0\n583,320,11.5\n583,321,12.0\n583,322,12.5\n583,323,13.0\n583,324,13.5\n583,325,9.0\n583,326,8.5\n583,327,8.0\n583,328,7.5\n583,329,7.0\n583,330,6.5\n583,331,6.0\n583,332,5.5\n583,333,5.0\n583,334,5.5\n583,335,6.0\n583,336,6.5\n583,337,7.0\n583,338,7.5\n583,339,8.0\n583,340,8.5\n583,341,9.0\n583,342,9.5\n583,343,10.0\n583,344,10.5\n583,345,11.0\n583,346,11.5\n583,347,12.0\n583,348,12.5\n583,349,13.0\n583,350,8.5\n583,351,8.0\n583,352,7.5\n583,353,7.0\n583,354,6.5\n583,355,6.0\n583,356,5.5\n583,357,5.0\n583,358,4.5\n583,359,5.0\n583,360,5.5\n583,361,6.0\n583,362,6.5\n583,363,7.0\n583,364,7.5\n583,365,8.0\n583,366,8.5\n583,367,9.0\n583,368,9.5\n583,369,10.0\n583,370,10.5\n583,371,11.0\n583,372,11.5\n583,373,12.0\n583,374,12.5\n583,375,8.0\n583,376,7.5\n583,377,7.0\n583,378,6.5\n583,379,6.0\n583,380,5.5\n583,381,5.0\n583,382,4.5\n583,383,4.0\n583,384,4.5\n583,385,5.0\n583,386,5.5\n583,387,6.0\n583,388,6.5\n583,389,7.0\n583,390,7.5\n583,391,8.0\n583,392,8.5\n583,393,9.0\n583,394,9.5\n583,395,10.0\n583,396,10.5\n583,397,11.0\n583,398,11.5\n583,399,12.0\n583,400,7.5\n583,401,7.0\n583,402,6.5\n583,403,6.0\n583,404,5.5\n583,405,5.0\n583,406,4.5\n583,407,4.0\n583,408,3.5\n583,409,4.0\n583,410,4.5\n583,411,5.0\n583,412,5.5\n583,413,6.0\n583,414,6.5\n583,415,7.0\n583,416,7.5\n583,417,8.0\n583,418,8.5\n583,419,9.0\n583,420,9.5\n583,421,10.0\n583,422,10.5\n583,423,11.0\n583,424,11.5\n583,425,7.0\n583,426,6.5\n583,427,6.0\n583,428,5.5\n583,429,5.0\n583,430,4.5\n583,431,4.0\n583,432,3.5\n583,433,3.0\n583,434,3.5\n583,435,4.0\n583,436,4.5\n583,437,5.0\n583,438,5.5\n583,439,6.0\n583,440,6.5\n583,441,7.0\n583,442,7.5\n583,443,8.0\n583,444,8.5\n583,445,9.0\n583,446,9.5\n583,447,10.0\n583,448,10.5\n583,449,11.0\n583,450,6.5\n583,451,6.0\n583,452,5.5\n583,453,5.0\n583,454,4.5\n583,455,4.0\n583,456,3.5\n583,457,3.0\n583,458,2.5\n583,459,3.0\n583,460,3.5\n583,461,4.0\n583,462,4.5\n583,463,5.0\n583,464,5.5\n583,465,6.0\n583,466,6.5\n583,467,7.0\n583,468,7.5\n583,469,8.0\n583,470,8.5\n583,471,9.0\n583,472,9.5\n583,473,10.0\n583,474,10.5\n583,475,6.0\n583,476,5.5\n583,477,5.0\n583,478,4.5\n583,479,4.0\n583,480,3.5\n583,481,3.0\n583,482,2.5\n583,483,2.0\n583,484,2.5\n583,485,3.0\n583,486,3.5\n583,487,4.0\n583,488,4.5\n583,489,5.0\n583,490,5.5\n583,491,6.0\n583,492,6.5\n583,493,7.0\n583,494,7.5\n583,495,8.0\n583,496,8.5\n583,497,9.0\n583,498,9.5\n583,499,10.0\n583,500,5.5\n583,501,5.0\n583,502,4.5\n583,503,4.0\n583,504,3.5\n583,505,3.0\n583,506,2.5\n583,507,2.0\n583,508,1.5\n583,509,2.0\n583,510,2.5\n583,511,3.0\n583,512,3.5\n583,513,4.0\n583,514,4.5\n583,515,5.0\n583,516,5.5\n583,517,6.0\n583,518,6.5\n583,519,7.0\n583,520,7.5\n583,521,8.0\n583,522,8.5\n583,523,9.0\n583,524,9.5\n583,525,5.0\n583,526,4.5\n583,527,4.0\n583,528,3.5\n583,529,3.0\n583,530,2.5\n583,531,2.0\n583,532,1.5\n583,533,1.0\n583,534,1.5\n583,535,2.0\n583,536,2.5\n583,537,3.0\n583,538,3.5\n583,539,4.0\n583,540,4.5\n583,541,5.0\n583,542,5.5\n583,543,6.0\n583,544,6.5\n583,545,7.0\n583,546,7.5\n583,547,8.0\n583,548,8.5\n583,549,9.0\n583,550,4.5\n583,551,4.0\n583,552,3.5\n583,553,3.0\n583,554,2.5\n583,555,2.0\n583,556,1.5\n583,557,1.0\n583,558,0.5\n583,559,1.0\n583,560,1.5\n583,561,2.0\n583,562,2.5\n583,563,3.0\n583,564,3.5\n583,565,4.0\n583,566,4.5\n583,567,5.0\n583,568,5.5\n583,569,6.0\n583,570,6.5\n583,571,7.0\n583,572,7.5\n583,573,8.0\n583,574,8.5\n583,575,4.0\n583,576,3.5\n583,577,3.0\n583,578,2.5\n583,579,2.0\n583,580,1.5\n583,581,1.0\n583,582,0.5\n583,583,0\n583,584,0.5\n583,585,1.0\n583,586,1.5\n583,587,2.0\n583,588,2.5\n583,589,3.0\n583,590,3.5\n583,591,4.0\n583,592,4.5\n583,593,5.0\n583,594,5.5\n583,595,6.0\n583,596,6.5\n583,597,7.0\n583,598,7.5\n583,599,8.0\n583,600,4.5\n583,601,4.0\n583,602,3.5\n583,603,3.0\n583,604,2.5\n583,605,2.0\n583,606,1.5\n583,607,1.0\n583,608,0.5\n583,609,1.0\n583,610,1.5\n583,611,2.0\n583,612,2.5\n583,613,3.0\n583,614,3.5\n583,615,4.0\n583,616,4.5\n583,617,5.0\n583,618,5.5\n583,619,6.0\n583,620,6.5\n583,621,7.0\n583,622,7.5\n583,623,8.0\n583,624,8.5\n584,0,16.0\n584,1,15.5\n584,2,15.0\n584,3,14.5\n584,4,14.0\n584,5,13.5\n584,6,13.0\n584,7,12.5\n584,8,12.0\n584,9,11.5\n584,10,12.0\n584,11,12.5\n584,12,13.0\n584,13,13.5\n584,14,14.0\n584,15,14.5\n584,16,15.0\n584,17,15.5\n584,18,16.0\n584,19,16.5\n584,20,17.0\n584,21,17.5\n584,22,18.0\n584,23,18.5\n584,24,19.0\n584,25,15.5\n584,26,15.0\n584,27,14.5\n584,28,14.0\n584,29,13.5\n584,30,13.0\n584,31,12.5\n584,32,12.0\n584,33,11.5\n584,34,11.0\n584,35,11.5\n584,36,12.0\n584,37,12.5\n584,38,13.0\n584,39,13.5\n584,40,14.0\n584,41,14.5\n584,42,15.0\n584,43,15.5\n584,44,16.0\n584,45,16.5\n584,46,17.0\n584,47,17.5\n584,48,18.0\n584,49,18.5\n584,50,15.0\n584,51,14.5\n584,52,14.0\n584,53,13.5\n584,54,13.0\n584,55,12.5\n584,56,12.0\n584,57,11.5\n584,58,11.0\n584,59,10.5\n584,60,11.0\n584,61,11.5\n584,62,12.0\n584,63,12.5\n584,64,13.0\n584,65,13.5\n584,66,14.0\n584,67,14.5\n584,68,15.0\n584,69,15.5\n584,70,16.0\n584,71,16.5\n584,72,17.0\n584,73,17.5\n584,74,18.0\n584,75,14.5\n584,76,14.0\n584,77,13.5\n584,78,13.0\n584,79,12.5\n584,80,12.0\n584,81,11.5\n584,82,11.0\n584,83,10.5\n584,84,10.0\n584,85,10.5\n584,86,11.0\n584,87,11.5\n584,88,12.0\n584,89,12.5\n584,90,13.0\n584,91,13.5\n584,92,14.0\n584,93,14.5\n584,94,15.0\n584,95,15.5\n584,96,16.0\n584,97,16.5\n584,98,17.0\n584,99,17.5\n584,100,14.0\n584,101,13.5\n584,102,13.0\n584,103,12.5\n584,104,12.0\n584,105,11.5\n584,106,11.0\n584,107,10.5\n584,108,10.0\n584,109,9.5\n584,110,10.0\n584,111,10.5\n584,112,11.0\n584,113,11.5\n584,114,12.0\n584,115,12.5\n584,116,13.0\n584,117,13.5\n584,118,14.0\n584,119,14.5\n584,120,15.0\n584,121,15.5\n584,122,16.0\n584,123,16.5\n584,124,17.0\n584,125,13.5\n584,126,13.0\n584,127,12.5\n584,128,12.0\n584,129,11.5\n584,130,11.0\n584,131,10.5\n584,132,10.0\n584,133,9.5\n584,134,9.0\n584,135,9.5\n584,136,10.0\n584,137,10.5\n584,138,11.0\n584,139,11.5\n584,140,12.0\n584,141,12.5\n584,142,13.0\n584,143,13.5\n584,144,14.0\n584,145,14.5\n584,146,15.0\n584,147,15.5\n584,148,16.0\n584,149,16.5\n584,150,13.0\n584,151,12.5\n584,152,12.0\n584,153,11.5\n584,154,11.0\n584,155,10.5\n584,156,10.0\n584,157,9.5\n584,158,9.0\n584,159,8.5\n584,160,9.0\n584,161,9.5\n584,162,10.0\n584,163,10.5\n584,164,11.0\n584,165,11.5\n584,166,12.0\n584,167,12.5\n584,168,13.0\n584,169,13.5\n584,170,14.0\n584,171,14.5\n584,172,15.0\n584,173,15.5\n584,174,16.0\n584,175,12.5\n584,176,12.0\n584,177,11.5\n584,178,11.0\n584,179,10.5\n584,180,10.0\n584,181,9.5\n584,182,9.0\n584,183,8.5\n584,184,8.0\n584,185,8.5\n584,186,9.0\n584,187,9.5\n584,188,10.0\n584,189,10.5\n584,190,11.0\n584,191,11.5\n584,192,12.0\n584,193,12.5\n584,194,13.0\n584,195,13.5\n584,196,14.0\n584,197,14.5\n584,198,15.0\n584,199,15.5\n584,200,12.0\n584,201,11.5\n584,202,11.0\n584,203,10.5\n584,204,10.0\n584,205,9.5\n584,206,9.0\n584,207,8.5\n584,208,8.0\n584,209,7.5\n584,210,8.0\n584,211,8.5\n584,212,9.0\n584,213,9.5\n584,214,10.0\n584,215,10.5\n584,216,11.0\n584,217,11.5\n584,218,12.0\n584,219,12.5\n584,220,13.0\n584,221,13.5\n584,222,14.0\n584,223,14.5\n584,224,15.0\n584,225,11.5\n584,226,11.0\n584,227,10.5\n584,228,10.0\n584,229,9.5\n584,230,9.0\n584,231,8.5\n584,232,8.0\n584,233,7.5\n584,234,7.0\n584,235,7.5\n584,236,8.0\n584,237,8.5\n584,238,9.0\n584,239,9.5\n584,240,10.0\n584,241,10.5\n584,242,11.0\n584,243,11.5\n584,244,12.0\n584,245,12.5\n584,246,13.0\n584,247,13.5\n584,248,14.0\n584,249,14.5\n584,250,11.0\n584,251,10.5\n584,252,10.0\n584,253,9.5\n584,254,9.0\n584,255,8.5\n584,256,8.0\n584,257,7.5\n584,258,7.0\n584,259,6.5\n584,260,7.0\n584,261,7.5\n584,262,8.0\n584,263,8.5\n584,264,9.0\n584,265,9.5\n584,266,10.0\n584,267,10.5\n584,268,11.0\n584,269,11.5\n584,270,12.0\n584,271,12.5\n584,272,13.0\n584,273,13.5\n584,274,14.0\n584,275,10.5\n584,276,10.0\n584,277,9.5\n584,278,9.0\n584,279,8.5\n584,280,8.0\n584,281,7.5\n584,282,7.0\n584,283,6.5\n584,284,6.0\n584,285,6.5\n584,286,7.0\n584,287,7.5\n584,288,8.0\n584,289,8.5\n584,290,9.0\n584,291,9.5\n584,292,10.0\n584,293,10.5\n584,294,11.0\n584,295,11.5\n584,296,12.0\n584,297,12.5\n584,298,13.0\n584,299,13.5\n584,300,10.0\n584,301,9.5\n584,302,9.0\n584,303,8.5\n584,304,8.0\n584,305,7.5\n584,306,7.0\n584,307,6.5\n584,308,6.0\n584,309,5.5\n584,310,6.0\n584,311,6.5\n584,312,7.0\n584,313,7.5\n584,314,8.0\n584,315,8.5\n584,316,9.0\n584,317,9.5\n584,318,10.0\n584,319,10.5\n584,320,11.0\n584,321,11.5\n584,322,12.0\n584,323,12.5\n584,324,13.0\n584,325,9.5\n584,326,9.0\n584,327,8.5\n584,328,8.0\n584,329,7.5\n584,330,7.0\n584,331,6.5\n584,332,6.0\n584,333,5.5\n584,334,5.0\n584,335,5.5\n584,336,6.0\n584,337,6.5\n584,338,7.0\n584,339,7.5\n584,340,8.0\n584,341,8.5\n584,342,9.0\n584,343,9.5\n584,344,10.0\n584,345,10.5\n584,346,11.0\n584,347,11.5\n584,348,12.0\n584,349,12.5\n584,350,9.0\n584,351,8.5\n584,352,8.0\n584,353,7.5\n584,354,7.0\n584,355,6.5\n584,356,6.0\n584,357,5.5\n584,358,5.0\n584,359,4.5\n584,360,5.0\n584,361,5.5\n584,362,6.0\n584,363,6.5\n584,364,7.0\n584,365,7.5\n584,366,8.0\n584,367,8.5\n584,368,9.0\n584,369,9.5\n584,370,10.0\n584,371,10.5\n584,372,11.0\n584,373,11.5\n584,374,12.0\n584,375,8.5\n584,376,8.0\n584,377,7.5\n584,378,7.0\n584,379,6.5\n584,380,6.0\n584,381,5.5\n584,382,5.0\n584,383,4.5\n584,384,4.0\n584,385,4.5\n584,386,5.0\n584,387,5.5\n584,388,6.0\n584,389,6.5\n584,390,7.0\n584,391,7.5\n584,392,8.0\n584,393,8.5\n584,394,9.0\n584,395,9.5\n584,396,10.0\n584,397,10.5\n584,398,11.0\n584,399,11.5\n584,400,8.0\n584,401,7.5\n584,402,7.0\n584,403,6.5\n584,404,6.0\n584,405,5.5\n584,406,5.0\n584,407,4.5\n584,408,4.0\n584,409,3.5\n584,410,4.0\n584,411,4.5\n584,412,5.0\n584,413,5.5\n584,414,6.0\n584,415,6.5\n584,416,7.0\n584,417,7.5\n584,418,8.0\n584,419,8.5\n584,420,9.0\n584,421,9.5\n584,422,10.0\n584,423,10.5\n584,424,11.0\n584,425,7.5\n584,426,7.0\n584,427,6.5\n584,428,6.0\n584,429,5.5\n584,430,5.0\n584,431,4.5\n584,432,4.0\n584,433,3.5\n584,434,3.0\n584,435,3.5\n584,436,4.0\n584,437,4.5\n584,438,5.0\n584,439,5.5\n584,440,6.0\n584,441,6.5\n584,442,7.0\n584,443,7.5\n584,444,8.0\n584,445,8.5\n584,446,9.0\n584,447,9.5\n584,448,10.0\n584,449,10.5\n584,450,7.0\n584,451,6.5\n584,452,6.0\n584,453,5.5\n584,454,5.0\n584,455,4.5\n584,456,4.0\n584,457,3.5\n584,458,3.0\n584,459,2.5\n584,460,3.0\n584,461,3.5\n584,462,4.0\n584,463,4.5\n584,464,5.0\n584,465,5.5\n584,466,6.0\n584,467,6.5\n584,468,7.0\n584,469,7.5\n584,470,8.0\n584,471,8.5\n584,472,9.0\n584,473,9.5\n584,474,10.0\n584,475,6.5\n584,476,6.0\n584,477,5.5\n584,478,5.0\n584,479,4.5\n584,480,4.0\n584,481,3.5\n584,482,3.0\n584,483,2.5\n584,484,2.0\n584,485,2.5\n584,486,3.0\n584,487,3.5\n584,488,4.0\n584,489,4.5\n584,490,5.0\n584,491,5.5\n584,492,6.0\n584,493,6.5\n584,494,7.0\n584,495,7.5\n584,496,8.0\n584,497,8.5\n584,498,9.0\n584,499,9.5\n584,500,6.0\n584,501,5.5\n584,502,5.0\n584,503,4.5\n584,504,4.0\n584,505,3.5\n584,506,3.0\n584,507,2.5\n584,508,2.0\n584,509,1.5\n584,510,2.0\n584,511,2.5\n584,512,3.0\n584,513,3.5\n584,514,4.0\n584,515,4.5\n584,516,5.0\n584,517,5.5\n584,518,6.0\n584,519,6.5\n584,520,7.0\n584,521,7.5\n584,522,8.0\n584,523,8.5\n584,524,9.0\n584,525,5.5\n584,526,5.0\n584,527,4.5\n584,528,4.0\n584,529,3.5\n584,530,3.0\n584,531,2.5\n584,532,2.0\n584,533,1.5\n584,534,1.0\n584,535,1.5\n584,536,2.0\n584,537,2.5\n584,538,3.0\n584,539,3.5\n584,540,4.0\n584,541,4.5\n584,542,5.0\n584,543,5.5\n584,544,6.0\n584,545,6.5\n584,546,7.0\n584,547,7.5\n584,548,8.0\n584,549,8.5\n584,550,5.0\n584,551,4.5\n584,552,4.0\n584,553,3.5\n584,554,3.0\n584,555,2.5\n584,556,2.0\n584,557,1.5\n584,558,1.0\n584,559,0.5\n584,560,1.0\n584,561,1.5\n584,562,2.0\n584,563,2.5\n584,564,3.0\n584,565,3.5\n584,566,4.0\n584,567,4.5\n584,568,5.0\n584,569,5.5\n584,570,6.0\n584,571,6.5\n584,572,7.0\n584,573,7.5\n584,574,8.0\n584,575,4.5\n584,576,4.0\n584,577,3.5\n584,578,3.0\n584,579,2.5\n584,580,2.0\n584,581,1.5\n584,582,1.0\n584,583,0.5\n584,584,0\n584,585,0.5\n584,586,1.0\n584,587,1.5\n584,588,2.0\n584,589,2.5\n584,590,3.0\n584,591,3.5\n584,592,4.0\n584,593,4.5\n584,594,5.0\n584,595,5.5\n584,596,6.0\n584,597,6.5\n584,598,7.0\n584,599,7.5\n584,600,5.0\n584,601,4.5\n584,602,4.0\n584,603,3.5\n584,604,3.0\n584,605,2.5\n584,606,2.0\n584,607,1.5\n584,608,1.0\n584,609,0.5\n584,610,1.0\n584,611,1.5\n584,612,2.0\n584,613,2.5\n584,614,3.0\n584,615,3.5\n584,616,4.0\n584,617,4.5\n584,618,5.0\n584,619,5.5\n584,620,6.0\n584,621,6.5\n584,622,7.0\n584,623,7.5\n584,624,8.0\n585,0,16.5\n585,1,16.0\n585,2,15.5\n585,3,15.0\n585,4,14.5\n585,5,14.0\n585,6,13.5\n585,7,13.0\n585,8,12.5\n585,9,12.0\n585,10,11.5\n585,11,12.0\n585,12,12.5\n585,13,13.0\n585,14,13.5\n585,15,14.0\n585,16,14.5\n585,17,15.0\n585,18,15.5\n585,19,16.0\n585,20,16.5\n585,21,17.0\n585,22,17.5\n585,23,18.0\n585,24,18.5\n585,25,16.0\n585,26,15.5\n585,27,15.0\n585,28,14.5\n585,29,14.0\n585,30,13.5\n585,31,13.0\n585,32,12.5\n585,33,12.0\n585,34,11.5\n585,35,11.0\n585,36,11.5\n585,37,12.0\n585,38,12.5\n585,39,13.0\n585,40,13.5\n585,41,14.0\n585,42,14.5\n585,43,15.0\n585,44,15.5\n585,45,16.0\n585,46,16.5\n585,47,17.0\n585,48,17.5\n585,49,18.0\n585,50,15.5\n585,51,15.0\n585,52,14.5\n585,53,14.0\n585,54,13.5\n585,55,13.0\n585,56,12.5\n585,57,12.0\n585,58,11.5\n585,59,11.0\n585,60,10.5\n585,61,11.0\n585,62,11.5\n585,63,12.0\n585,64,12.5\n585,65,13.0\n585,66,13.5\n585,67,14.0\n585,68,14.5\n585,69,15.0\n585,70,15.5\n585,71,16.0\n585,72,16.5\n585,73,17.0\n585,74,17.5\n585,75,15.0\n585,76,14.5\n585,77,14.0\n585,78,13.5\n585,79,13.0\n585,80,12.5\n585,81,12.0\n585,82,11.5\n585,83,11.0\n585,84,10.5\n585,85,10.0\n585,86,10.5\n585,87,11.0\n585,88,11.5\n585,89,12.0\n585,90,12.5\n585,91,13.0\n585,92,13.5\n585,93,14.0\n585,94,14.5\n585,95,15.0\n585,96,15.5\n585,97,16.0\n585,98,16.5\n585,99,17.0\n585,100,14.5\n585,101,14.0\n585,102,13.5\n585,103,13.0\n585,104,12.5\n585,105,12.0\n585,106,11.5\n585,107,11.0\n585,108,10.5\n585,109,10.0\n585,110,9.5\n585,111,10.0\n585,112,10.5\n585,113,11.0\n585,114,11.5\n585,115,12.0\n585,116,12.5\n585,117,13.0\n585,118,13.5\n585,119,14.0\n585,120,14.5\n585,121,15.0\n585,122,15.5\n585,123,16.0\n585,124,16.5\n585,125,14.0\n585,126,13.5\n585,127,13.0\n585,128,12.5\n585,129,12.0\n585,130,11.5\n585,131,11.0\n585,132,10.5\n585,133,10.0\n585,134,9.5\n585,135,9.0\n585,136,9.5\n585,137,10.0\n585,138,10.5\n585,139,11.0\n585,140,11.5\n585,141,12.0\n585,142,12.5\n585,143,13.0\n585,144,13.5\n585,145,14.0\n585,146,14.5\n585,147,15.0\n585,148,15.5\n585,149,16.0\n585,150,13.5\n585,151,13.0\n585,152,12.5\n585,153,12.0\n585,154,11.5\n585,155,11.0\n585,156,10.5\n585,157,10.0\n585,158,9.5\n585,159,9.0\n585,160,8.5\n585,161,9.0\n585,162,9.5\n585,163,10.0\n585,164,10.5\n585,165,11.0\n585,166,11.5\n585,167,12.0\n585,168,12.5\n585,169,13.0\n585,170,13.5\n585,171,14.0\n585,172,14.5\n585,173,15.0\n585,174,15.5\n585,175,13.0\n585,176,12.5\n585,177,12.0\n585,178,11.5\n585,179,11.0\n585,180,10.5\n585,181,10.0\n585,182,9.5\n585,183,9.0\n585,184,8.5\n585,185,8.0\n585,186,8.5\n585,187,9.0\n585,188,9.5\n585,189,10.0\n585,190,10.5\n585,191,11.0\n585,192,11.5\n585,193,12.0\n585,194,12.5\n585,195,13.0\n585,196,13.5\n585,197,14.0\n585,198,14.5\n585,199,15.0\n585,200,12.5\n585,201,12.0\n585,202,11.5\n585,203,11.0\n585,204,10.5\n585,205,10.0\n585,206,9.5\n585,207,9.0\n585,208,8.5\n585,209,8.0\n585,210,7.5\n585,211,8.0\n585,212,8.5\n585,213,9.0\n585,214,9.5\n585,215,10.0\n585,216,10.5\n585,217,11.0\n585,218,11.5\n585,219,12.0\n585,220,12.5\n585,221,13.0\n585,222,13.5\n585,223,14.0\n585,224,14.5\n585,225,12.0\n585,226,11.5\n585,227,11.0\n585,228,10.5\n585,229,10.0\n585,230,9.5\n585,231,9.0\n585,232,8.5\n585,233,8.0\n585,234,7.5\n585,235,7.0\n585,236,7.5\n585,237,8.0\n585,238,8.5\n585,239,9.0\n585,240,9.5\n585,241,10.0\n585,242,10.5\n585,243,11.0\n585,244,11.5\n585,245,12.0\n585,246,12.5\n585,247,13.0\n585,248,13.5\n585,249,14.0\n585,250,11.5\n585,251,11.0\n585,252,10.5\n585,253,10.0\n585,254,9.5\n585,255,9.0\n585,256,8.5\n585,257,8.0\n585,258,7.5\n585,259,7.0\n585,260,6.5\n585,261,7.0\n585,262,7.5\n585,263,8.0\n585,264,8.5\n585,265,9.0\n585,266,9.5\n585,267,10.0\n585,268,10.5\n585,269,11.0\n585,270,11.5\n585,271,12.0\n585,272,12.5\n585,273,13.0\n585,274,13.5\n585,275,11.0\n585,276,10.5\n585,277,10.0\n585,278,9.5\n585,279,9.0\n585,280,8.5\n585,281,8.0\n585,282,7.5\n585,283,7.0\n585,284,6.5\n585,285,6.0\n585,286,6.5\n585,287,7.0\n585,288,7.5\n585,289,8.0\n585,290,8.5\n585,291,9.0\n585,292,9.5\n585,293,10.0\n585,294,10.5\n585,295,11.0\n585,296,11.5\n585,297,12.0\n585,298,12.5\n585,299,13.0\n585,300,10.5\n585,301,10.0\n585,302,9.5\n585,303,9.0\n585,304,8.5\n585,305,8.0\n585,306,7.5\n585,307,7.0\n585,308,6.5\n585,309,6.0\n585,310,5.5\n585,311,6.0\n585,312,6.5\n585,313,7.0\n585,314,7.5\n585,315,8.0\n585,316,8.5\n585,317,9.0\n585,318,9.5\n585,319,10.0\n585,320,10.5\n585,321,11.0\n585,322,11.5\n585,323,12.0\n585,324,12.5\n585,325,10.0\n585,326,9.5\n585,327,9.0\n585,328,8.5\n585,329,8.0\n585,330,7.5\n585,331,7.0\n585,332,6.5\n585,333,6.0\n585,334,5.5\n585,335,5.0\n585,336,5.5\n585,337,6.0\n585,338,6.5\n585,339,7.0\n585,340,7.5\n585,341,8.0\n585,342,8.5\n585,343,9.0\n585,344,9.5\n585,345,10.0\n585,346,10.5\n585,347,11.0\n585,348,11.5\n585,349,12.0\n585,350,9.5\n585,351,9.0\n585,352,8.5\n585,353,8.0\n585,354,7.5\n585,355,7.0\n585,356,6.5\n585,357,6.0\n585,358,5.5\n585,359,5.0\n585,360,4.5\n585,361,5.0\n585,362,5.5\n585,363,6.0\n585,364,6.5\n585,365,7.0\n585,366,7.5\n585,367,8.0\n585,368,8.5\n585,369,9.0\n585,370,9.5\n585,371,10.0\n585,372,10.5\n585,373,11.0\n585,374,11.5\n585,375,9.0\n585,376,8.5\n585,377,8.0\n585,378,7.5\n585,379,7.0\n585,380,6.5\n585,381,6.0\n585,382,5.5\n585,383,5.0\n585,384,4.5\n585,385,4.0\n585,386,4.5\n585,387,5.0\n585,388,5.5\n585,389,6.0\n585,390,6.5\n585,391,7.0\n585,392,7.5\n585,393,8.0\n585,394,8.5\n585,395,9.0\n585,396,9.5\n585,397,10.0\n585,398,10.5\n585,399,11.0\n585,400,8.5\n585,401,8.0\n585,402,7.5\n585,403,7.0\n585,404,6.5\n585,405,6.0\n585,406,5.5\n585,407,5.0\n585,408,4.5\n585,409,4.0\n585,410,3.5\n585,411,4.0\n585,412,4.5\n585,413,5.0\n585,414,5.5\n585,415,6.0\n585,416,6.5\n585,417,7.0\n585,418,7.5\n585,419,8.0\n585,420,8.5\n585,421,9.0\n585,422,9.5\n585,423,10.0\n585,424,10.5\n585,425,8.0\n585,426,7.5\n585,427,7.0\n585,428,6.5\n585,429,6.0\n585,430,5.5\n585,431,5.0\n585,432,4.5\n585,433,4.0\n585,434,3.5\n585,435,3.0\n585,436,3.5\n585,437,4.0\n585,438,4.5\n585,439,5.0\n585,440,5.5\n585,441,6.0\n585,442,6.5\n585,443,7.0\n585,444,7.5\n585,445,8.0\n585,446,8.5\n585,447,9.0\n585,448,9.5\n585,449,10.0\n585,450,7.5\n585,451,7.0\n585,452,6.5\n585,453,6.0\n585,454,5.5\n585,455,5.0\n585,456,4.5\n585,457,4.0\n585,458,3.5\n585,459,3.0\n585,460,2.5\n585,461,3.0\n585,462,3.5\n585,463,4.0\n585,464,4.5\n585,465,5.0\n585,466,5.5\n585,467,6.0\n585,468,6.5\n585,469,7.0\n585,470,7.5\n585,471,8.0\n585,472,8.5\n585,473,9.0\n585,474,9.5\n585,475,7.0\n585,476,6.5\n585,477,6.0\n585,478,5.5\n585,479,5.0\n585,480,4.5\n585,481,4.0\n585,482,3.5\n585,483,3.0\n585,484,2.5\n585,485,2.0\n585,486,2.5\n585,487,3.0\n585,488,3.5\n585,489,4.0\n585,490,4.5\n585,491,5.0\n585,492,5.5\n585,493,6.0\n585,494,6.5\n585,495,7.0\n585,496,7.5\n585,497,8.0\n585,498,8.5\n585,499,9.0\n585,500,6.5\n585,501,6.0\n585,502,5.5\n585,503,5.0\n585,504,4.5\n585,505,4.0\n585,506,3.5\n585,507,3.0\n585,508,2.5\n585,509,2.0\n585,510,1.5\n585,511,2.0\n585,512,2.5\n585,513,3.0\n585,514,3.5\n585,515,4.0\n585,516,4.5\n585,517,5.0\n585,518,5.5\n585,519,6.0\n585,520,6.5\n585,521,7.0\n585,522,7.5\n585,523,8.0\n585,524,8.5\n585,525,6.0\n585,526,5.5\n585,527,5.0\n585,528,4.5\n585,529,4.0\n585,530,3.5\n585,531,3.0\n585,532,2.5\n585,533,2.0\n585,534,1.5\n585,535,1.0\n585,536,1.5\n585,537,2.0\n585,538,2.5\n585,539,3.0\n585,540,3.5\n585,541,4.0\n585,542,4.5\n585,543,5.0\n585,544,5.5\n585,545,6.0\n585,546,6.5\n585,547,7.0\n585,548,7.5\n585,549,8.0\n585,550,5.5\n585,551,5.0\n585,552,4.5\n585,553,4.0\n585,554,3.5\n585,555,3.0\n585,556,2.5\n585,557,2.0\n585,558,1.5\n585,559,1.0\n585,560,0.5\n585,561,1.0\n585,562,1.5\n585,563,2.0\n585,564,2.5\n585,565,3.0\n585,566,3.5\n585,567,4.0\n585,568,4.5\n585,569,5.0\n585,570,5.5\n585,571,6.0\n585,572,6.5\n585,573,7.0\n585,574,7.5\n585,575,5.0\n585,576,4.5\n585,577,4.0\n585,578,3.5\n585,579,3.0\n585,580,2.5\n585,581,2.0\n585,582,1.5\n585,583,1.0\n585,584,0.5\n585,585,0\n585,586,0.5\n585,587,1.0\n585,588,1.5\n585,589,2.0\n585,590,2.5\n585,591,3.0\n585,592,3.5\n585,593,4.0\n585,594,4.5\n585,595,5.0\n585,596,5.5\n585,597,6.0\n585,598,6.5\n585,599,7.0\n585,600,5.5\n585,601,5.0\n585,602,4.5\n585,603,4.0\n585,604,3.5\n585,605,3.0\n585,606,2.5\n585,607,2.0\n585,608,1.5\n585,609,1.0\n585,610,0.5\n585,611,1.0\n585,612,1.5\n585,613,2.0\n585,614,2.5\n585,615,3.0\n585,616,3.5\n585,617,4.0\n585,618,4.5\n585,619,5.0\n585,620,5.5\n585,621,6.0\n585,622,6.5\n585,623,7.0\n585,624,7.5\n586,0,17.0\n586,1,16.5\n586,2,16.0\n586,3,15.5\n586,4,15.0\n586,5,14.5\n586,6,14.0\n586,7,13.5\n586,8,13.0\n586,9,12.5\n586,10,12.0\n586,11,11.5\n586,12,12.0\n586,13,12.5\n586,14,13.0\n586,15,13.5\n586,16,14.0\n586,17,14.5\n586,18,15.0\n586,19,15.5\n586,20,16.0\n586,21,16.5\n586,22,17.0\n586,23,17.5\n586,24,18.0\n586,25,16.5\n586,26,16.0\n586,27,15.5\n586,28,15.0\n586,29,14.5\n586,30,14.0\n586,31,13.5\n586,32,13.0\n586,33,12.5\n586,34,12.0\n586,35,11.5\n586,36,11.0\n586,37,11.5\n586,38,12.0\n586,39,12.5\n586,40,13.0\n586,41,13.5\n586,42,14.0\n586,43,14.5\n586,44,15.0\n586,45,15.5\n586,46,16.0\n586,47,16.5\n586,48,17.0\n586,49,17.5\n586,50,16.0\n586,51,15.5\n586,52,15.0\n586,53,14.5\n586,54,14.0\n586,55,13.5\n586,56,13.0\n586,57,12.5\n586,58,12.0\n586,59,11.5\n586,60,11.0\n586,61,10.5\n586,62,11.0\n586,63,11.5\n586,64,12.0\n586,65,12.5\n586,66,13.0\n586,67,13.5\n586,68,14.0\n586,69,14.5\n586,70,15.0\n586,71,15.5\n586,72,16.0\n586,73,16.5\n586,74,17.0\n586,75,15.5\n586,76,15.0\n586,77,14.5\n586,78,14.0\n586,79,13.5\n586,80,13.0\n586,81,12.5\n586,82,12.0\n586,83,11.5\n586,84,11.0\n586,85,10.5\n586,86,10.0\n586,87,10.5\n586,88,11.0\n586,89,11.5\n586,90,12.0\n586,91,12.5\n586,92,13.0\n586,93,13.5\n586,94,14.0\n586,95,14.5\n586,96,15.0\n586,97,15.5\n586,98,16.0\n586,99,16.5\n586,100,15.0\n586,101,14.5\n586,102,14.0\n586,103,13.5\n586,104,13.0\n586,105,12.5\n586,106,12.0\n586,107,11.5\n586,108,11.0\n586,109,10.5\n586,110,10.0\n586,111,9.5\n586,112,10.0\n586,113,10.5\n586,114,11.0\n586,115,11.5\n586,116,12.0\n586,117,12.5\n586,118,13.0\n586,119,13.5\n586,120,14.0\n586,121,14.5\n586,122,15.0\n586,123,15.5\n586,124,16.0\n586,125,14.5\n586,126,14.0\n586,127,13.5\n586,128,13.0\n586,129,12.5\n586,130,12.0\n586,131,11.5\n586,132,11.0\n586,133,10.5\n586,134,10.0\n586,135,9.5\n586,136,9.0\n586,137,9.5\n586,138,10.0\n586,139,10.5\n586,140,11.0\n586,141,11.5\n586,142,12.0\n586,143,12.5\n586,144,13.0\n586,145,13.5\n586,146,14.0\n586,147,14.5\n586,148,15.0\n586,149,15.5\n586,150,14.0\n586,151,13.5\n586,152,13.0\n586,153,12.5\n586,154,12.0\n586,155,11.5\n586,156,11.0\n586,157,10.5\n586,158,10.0\n586,159,9.5\n586,160,9.0\n586,161,8.5\n586,162,9.0\n586,163,9.5\n586,164,10.0\n586,165,10.5\n586,166,11.0\n586,167,11.5\n586,168,12.0\n586,169,12.5\n586,170,13.0\n586,171,13.5\n586,172,14.0\n586,173,14.5\n586,174,15.0\n586,175,13.5\n586,176,13.0\n586,177,12.5\n586,178,12.0\n586,179,11.5\n586,180,11.0\n586,181,10.5\n586,182,10.0\n586,183,9.5\n586,184,9.0\n586,185,8.5\n586,186,8.0\n586,187,8.5\n586,188,9.0\n586,189,9.5\n586,190,10.0\n586,191,10.5\n586,192,11.0\n586,193,11.5\n586,194,12.0\n586,195,12.5\n586,196,13.0\n586,197,13.5\n586,198,14.0\n586,199,14.5\n586,200,13.0\n586,201,12.5\n586,202,12.0\n586,203,11.5\n586,204,11.0\n586,205,10.5\n586,206,10.0\n586,207,9.5\n586,208,9.0\n586,209,8.5\n586,210,8.0\n586,211,7.5\n586,212,8.0\n586,213,8.5\n586,214,9.0\n586,215,9.5\n586,216,10.0\n586,217,10.5\n586,218,11.0\n586,219,11.5\n586,220,12.0\n586,221,12.5\n586,222,13.0\n586,223,13.5\n586,224,14.0\n586,225,12.5\n586,226,12.0\n586,227,11.5\n586,228,11.0\n586,229,10.5\n586,230,10.0\n586,231,9.5\n586,232,9.0\n586,233,8.5\n586,234,8.0\n586,235,7.5\n586,236,7.0\n586,237,7.5\n586,238,8.0\n586,239,8.5\n586,240,9.0\n586,241,9.5\n586,242,10.0\n586,243,10.5\n586,244,11.0\n586,245,11.5\n586,246,12.0\n586,247,12.5\n586,248,13.0\n586,249,13.5\n586,250,12.0\n586,251,11.5\n586,252,11.0\n586,253,10.5\n586,254,10.0\n586,255,9.5\n586,256,9.0\n586,257,8.5\n586,258,8.0\n586,259,7.5\n586,260,7.0\n586,261,6.5\n586,262,7.0\n586,263,7.5\n586,264,8.0\n586,265,8.5\n586,266,9.0\n586,267,9.5\n586,268,10.0\n586,269,10.5\n586,270,11.0\n586,271,11.5\n586,272,12.0\n586,273,12.5\n586,274,13.0\n586,275,11.5\n586,276,11.0\n586,277,10.5\n586,278,10.0\n586,279,9.5\n586,280,9.0\n586,281,8.5\n586,282,8.0\n586,283,7.5\n586,284,7.0\n586,285,6.5\n586,286,6.0\n586,287,6.5\n586,288,7.0\n586,289,7.5\n586,290,8.0\n586,291,8.5\n586,292,9.0\n586,293,9.5\n586,294,10.0\n586,295,10.5\n586,296,11.0\n586,297,11.5\n586,298,12.0\n586,299,12.5\n586,300,11.0\n586,301,10.5\n586,302,10.0\n586,303,9.5\n586,304,9.0\n586,305,8.5\n586,306,8.0\n586,307,7.5\n586,308,7.0\n586,309,6.5\n586,310,6.0\n586,311,5.5\n586,312,6.0\n586,313,6.5\n586,314,7.0\n586,315,7.5\n586,316,8.0\n586,317,8.5\n586,318,9.0\n586,319,9.5\n586,320,10.0\n586,321,10.5\n586,322,11.0\n586,323,11.5\n586,324,12.0\n586,325,10.5\n586,326,10.0\n586,327,9.5\n586,328,9.0\n586,329,8.5\n586,330,8.0\n586,331,7.5\n586,332,7.0\n586,333,6.5\n586,334,6.0\n586,335,5.5\n586,336,5.0\n586,337,5.5\n586,338,6.0\n586,339,6.5\n586,340,7.0\n586,341,7.5\n586,342,8.0\n586,343,8.5\n586,344,9.0\n586,345,9.5\n586,346,10.0\n586,347,10.5\n586,348,11.0\n586,349,11.5\n586,350,10.0\n586,351,9.5\n586,352,9.0\n586,353,8.5\n586,354,8.0\n586,355,7.5\n586,356,7.0\n586,357,6.5\n586,358,6.0\n586,359,5.5\n586,360,5.0\n586,361,4.5\n586,362,5.0\n586,363,5.5\n586,364,6.0\n586,365,6.5\n586,366,7.0\n586,367,7.5\n586,368,8.0\n586,369,8.5\n586,370,9.0\n586,371,9.5\n586,372,10.0\n586,373,10.5\n586,374,11.0\n586,375,9.5\n586,376,9.0\n586,377,8.5\n586,378,8.0\n586,379,7.5\n586,380,7.0\n586,381,6.5\n586,382,6.0\n586,383,5.5\n586,384,5.0\n586,385,4.5\n586,386,4.0\n586,387,4.5\n586,388,5.0\n586,389,5.5\n586,390,6.0\n586,391,6.5\n586,392,7.0\n586,393,7.5\n586,394,8.0\n586,395,8.5\n586,396,9.0\n586,397,9.5\n586,398,10.0\n586,399,10.5\n586,400,9.0\n586,401,8.5\n586,402,8.0\n586,403,7.5\n586,404,7.0\n586,405,6.5\n586,406,6.0\n586,407,5.5\n586,408,5.0\n586,409,4.5\n586,410,4.0\n586,411,3.5\n586,412,4.0\n586,413,4.5\n586,414,5.0\n586,415,5.5\n586,416,6.0\n586,417,6.5\n586,418,7.0\n586,419,7.5\n586,420,8.0\n586,421,8.5\n586,422,9.0\n586,423,9.5\n586,424,10.0\n586,425,8.5\n586,426,8.0\n586,427,7.5\n586,428,7.0\n586,429,6.5\n586,430,6.0\n586,431,5.5\n586,432,5.0\n586,433,4.5\n586,434,4.0\n586,435,3.5\n586,436,3.0\n586,437,3.5\n586,438,4.0\n586,439,4.5\n586,440,5.0\n586,441,5.5\n586,442,6.0\n586,443,6.5\n586,444,7.0\n586,445,7.5\n586,446,8.0\n586,447,8.5\n586,448,9.0\n586,449,9.5\n586,450,8.0\n586,451,7.5\n586,452,7.0\n586,453,6.5\n586,454,6.0\n586,455,5.5\n586,456,5.0\n586,457,4.5\n586,458,4.0\n586,459,3.5\n586,460,3.0\n586,461,2.5\n586,462,3.0\n586,463,3.5\n586,464,4.0\n586,465,4.5\n586,466,5.0\n586,467,5.5\n586,468,6.0\n586,469,6.5\n586,470,7.0\n586,471,7.5\n586,472,8.0\n586,473,8.5\n586,474,9.0\n586,475,7.5\n586,476,7.0\n586,477,6.5\n586,478,6.0\n586,479,5.5\n586,480,5.0\n586,481,4.5\n586,482,4.0\n586,483,3.5\n586,484,3.0\n586,485,2.5\n586,486,2.0\n586,487,2.5\n586,488,3.0\n586,489,3.5\n586,490,4.0\n586,491,4.5\n586,492,5.0\n586,493,5.5\n586,494,6.0\n586,495,6.5\n586,496,7.0\n586,497,7.5\n586,498,8.0\n586,499,8.5\n586,500,7.0\n586,501,6.5\n586,502,6.0\n586,503,5.5\n586,504,5.0\n586,505,4.5\n586,506,4.0\n586,507,3.5\n586,508,3.0\n586,509,2.5\n586,510,2.0\n586,511,1.5\n586,512,2.0\n586,513,2.5\n586,514,3.0\n586,515,3.5\n586,516,4.0\n586,517,4.5\n586,518,5.0\n586,519,5.5\n586,520,6.0\n586,521,6.5\n586,522,7.0\n586,523,7.5\n586,524,8.0\n586,525,6.5\n586,526,6.0\n586,527,5.5\n586,528,5.0\n586,529,4.5\n586,530,4.0\n586,531,3.5\n586,532,3.0\n586,533,2.5\n586,534,2.0\n586,535,1.5\n586,536,1.0\n586,537,1.5\n586,538,2.0\n586,539,2.5\n586,540,3.0\n586,541,3.5\n586,542,4.0\n586,543,4.5\n586,544,5.0\n586,545,5.5\n586,546,6.0\n586,547,6.5\n586,548,7.0\n586,549,7.5\n586,550,6.0\n586,551,5.5\n586,552,5.0\n586,553,4.5\n586,554,4.0\n586,555,3.5\n586,556,3.0\n586,557,2.5\n586,558,2.0\n586,559,1.5\n586,560,1.0\n586,561,0.5\n586,562,1.0\n586,563,1.5\n586,564,2.0\n586,565,2.5\n586,566,3.0\n586,567,3.5\n586,568,4.0\n586,569,4.5\n586,570,5.0\n586,571,5.5\n586,572,6.0\n586,573,6.5\n586,574,7.0\n586,575,5.5\n586,576,5.0\n586,577,4.5\n586,578,4.0\n586,579,3.5\n586,580,3.0\n586,581,2.5\n586,582,2.0\n586,583,1.5\n586,584,1.0\n586,585,0.5\n586,586,0\n586,587,0.5\n586,588,1.0\n586,589,1.5\n586,590,2.0\n586,591,2.5\n586,592,3.0\n586,593,3.5\n586,594,4.0\n586,595,4.5\n586,596,5.0\n586,597,5.5\n586,598,6.0\n586,599,6.5\n586,600,6.0\n586,601,5.5\n586,602,5.0\n586,603,4.5\n586,604,4.0\n586,605,3.5\n586,606,3.0\n586,607,2.5\n586,608,2.0\n586,609,1.5\n586,610,1.0\n586,611,0.5\n586,612,1.0\n586,613,1.5\n586,614,2.0\n586,615,2.5\n586,616,3.0\n586,617,3.5\n586,618,4.0\n586,619,4.5\n586,620,5.0\n586,621,5.5\n586,622,6.0\n586,623,6.5\n586,624,7.0\n587,0,17.5\n587,1,17.0\n587,2,16.5\n587,3,16.0\n587,4,15.5\n587,5,15.0\n587,6,14.5\n587,7,14.0\n587,8,13.5\n587,9,13.0\n587,10,12.5\n587,11,12.0\n587,12,11.5\n587,13,12.0\n587,14,12.5\n587,15,13.0\n587,16,13.5\n587,17,14.0\n587,18,14.5\n587,19,15.0\n587,20,15.5\n587,21,16.0\n587,22,16.5\n587,23,17.0\n587,24,17.5\n587,25,17.0\n587,26,16.5\n587,27,16.0\n587,28,15.5\n587,29,15.0\n587,30,14.5\n587,31,14.0\n587,32,13.5\n587,33,13.0\n587,34,12.5\n587,35,12.0\n587,36,11.5\n587,37,11.0\n587,38,11.5\n587,39,12.0\n587,40,12.5\n587,41,13.0\n587,42,13.5\n587,43,14.0\n587,44,14.5\n587,45,15.0\n587,46,15.5\n587,47,16.0\n587,48,16.5\n587,49,17.0\n587,50,16.5\n587,51,16.0\n587,52,15.5\n587,53,15.0\n587,54,14.5\n587,55,14.0\n587,56,13.5\n587,57,13.0\n587,58,12.5\n587,59,12.0\n587,60,11.5\n587,61,11.0\n587,62,10.5\n587,63,11.0\n587,64,11.5\n587,65,12.0\n587,66,12.5\n587,67,13.0\n587,68,13.5\n587,69,14.0\n587,70,14.5\n587,71,15.0\n587,72,15.5\n587,73,16.0\n587,74,16.5\n587,75,16.0\n587,76,15.5\n587,77,15.0\n587,78,14.5\n587,79,14.0\n587,80,13.5\n587,81,13.0\n587,82,12.5\n587,83,12.0\n587,84,11.5\n587,85,11.0\n587,86,10.5\n587,87,10.0\n587,88,10.5\n587,89,11.0\n587,90,11.5\n587,91,12.0\n587,92,12.5\n587,93,13.0\n587,94,13.5\n587,95,14.0\n587,96,14.5\n587,97,15.0\n587,98,15.5\n587,99,16.0\n587,100,15.5\n587,101,15.0\n587,102,14.5\n587,103,14.0\n587,104,13.5\n587,105,13.0\n587,106,12.5\n587,107,12.0\n587,108,11.5\n587,109,11.0\n587,110,10.5\n587,111,10.0\n587,112,9.5\n587,113,10.0\n587,114,10.5\n587,115,11.0\n587,116,11.5\n587,117,12.0\n587,118,12.5\n587,119,13.0\n587,120,13.5\n587,121,14.0\n587,122,14.5\n587,123,15.0\n587,124,15.5\n587,125,15.0\n587,126,14.5\n587,127,14.0\n587,128,13.5\n587,129,13.0\n587,130,12.5\n587,131,12.0\n587,132,11.5\n587,133,11.0\n587,134,10.5\n587,135,10.0\n587,136,9.5\n587,137,9.0\n587,138,9.5\n587,139,10.0\n587,140,10.5\n587,141,11.0\n587,142,11.5\n587,143,12.0\n587,144,12.5\n587,145,13.0\n587,146,13.5\n587,147,14.0\n587,148,14.5\n587,149,15.0\n587,150,14.5\n587,151,14.0\n587,152,13.5\n587,153,13.0\n587,154,12.5\n587,155,12.0\n587,156,11.5\n587,157,11.0\n587,158,10.5\n587,159,10.0\n587,160,9.5\n587,161,9.0\n587,162,8.5\n587,163,9.0\n587,164,9.5\n587,165,10.0\n587,166,10.5\n587,167,11.0\n587,168,11.5\n587,169,12.0\n587,170,12.5\n587,171,13.0\n587,172,13.5\n587,173,14.0\n587,174,14.5\n587,175,14.0\n587,176,13.5\n587,177,13.0\n587,178,12.5\n587,179,12.0\n587,180,11.5\n587,181,11.0\n587,182,10.5\n587,183,10.0\n587,184,9.5\n587,185,9.0\n587,186,8.5\n587,187,8.0\n587,188,8.5\n587,189,9.0\n587,190,9.5\n587,191,10.0\n587,192,10.5\n587,193,11.0\n587,194,11.5\n587,195,12.0\n587,196,12.5\n587,197,13.0\n587,198,13.5\n587,199,14.0\n587,200,13.5\n587,201,13.0\n587,202,12.5\n587,203,12.0\n587,204,11.5\n587,205,11.0\n587,206,10.5\n587,207,10.0\n587,208,9.5\n587,209,9.0\n587,210,8.5\n587,211,8.0\n587,212,7.5\n587,213,8.0\n587,214,8.5\n587,215,9.0\n587,216,9.5\n587,217,10.0\n587,218,10.5\n587,219,11.0\n587,220,11.5\n587,221,12.0\n587,222,12.5\n587,223,13.0\n587,224,13.5\n587,225,13.0\n587,226,12.5\n587,227,12.0\n587,228,11.5\n587,229,11.0\n587,230,10.5\n587,231,10.0\n587,232,9.5\n587,233,9.0\n587,234,8.5\n587,235,8.0\n587,236,7.5\n587,237,7.0\n587,238,7.5\n587,239,8.0\n587,240,8.5\n587,241,9.0\n587,242,9.5\n587,243,10.0\n587,244,10.5\n587,245,11.0\n587,246,11.5\n587,247,12.0\n587,248,12.5\n587,249,13.0\n587,250,12.5\n587,251,12.0\n587,252,11.5\n587,253,11.0\n587,254,10.5\n587,255,10.0\n587,256,9.5\n587,257,9.0\n587,258,8.5\n587,259,8.0\n587,260,7.5\n587,261,7.0\n587,262,6.5\n587,263,7.0\n587,264,7.5\n587,265,8.0\n587,266,8.5\n587,267,9.0\n587,268,9.5\n587,269,10.0\n587,270,10.5\n587,271,11.0\n587,272,11.5\n587,273,12.0\n587,274,12.5\n587,275,12.0\n587,276,11.5\n587,277,11.0\n587,278,10.5\n587,279,10.0\n587,280,9.5\n587,281,9.0\n587,282,8.5\n587,283,8.0\n587,284,7.5\n587,285,7.0\n587,286,6.5\n587,287,6.0\n587,288,6.5\n587,289,7.0\n587,290,7.5\n587,291,8.0\n587,292,8.5\n587,293,9.0\n587,294,9.5\n587,295,10.0\n587,296,10.5\n587,297,11.0\n587,298,11.5\n587,299,12.0\n587,300,11.5\n587,301,11.0\n587,302,10.5\n587,303,10.0\n587,304,9.5\n587,305,9.0\n587,306,8.5\n587,307,8.0\n587,308,7.5\n587,309,7.0\n587,310,6.5\n587,311,6.0\n587,312,5.5\n587,313,6.0\n587,314,6.5\n587,315,7.0\n587,316,7.5\n587,317,8.0\n587,318,8.5\n587,319,9.0\n587,320,9.5\n587,321,10.0\n587,322,10.5\n587,323,11.0\n587,324,11.5\n587,325,11.0\n587,326,10.5\n587,327,10.0\n587,328,9.5\n587,329,9.0\n587,330,8.5\n587,331,8.0\n587,332,7.5\n587,333,7.0\n587,334,6.5\n587,335,6.0\n587,336,5.5\n587,337,5.0\n587,338,5.5\n587,339,6.0\n587,340,6.5\n587,341,7.0\n587,342,7.5\n587,343,8.0\n587,344,8.5\n587,345,9.0\n587,346,9.5\n587,347,10.0\n587,348,10.5\n587,349,11.0\n587,350,10.5\n587,351,10.0\n587,352,9.5\n587,353,9.0\n587,354,8.5\n587,355,8.0\n587,356,7.5\n587,357,7.0\n587,358,6.5\n587,359,6.0\n587,360,5.5\n587,361,5.0\n587,362,4.5\n587,363,5.0\n587,364,5.5\n587,365,6.0\n587,366,6.5\n587,367,7.0\n587,368,7.5\n587,369,8.0\n587,370,8.5\n587,371,9.0\n587,372,9.5\n587,373,10.0\n587,374,10.5\n587,375,10.0\n587,376,9.5\n587,377,9.0\n587,378,8.5\n587,379,8.0\n587,380,7.5\n587,381,7.0\n587,382,6.5\n587,383,6.0\n587,384,5.5\n587,385,5.0\n587,386,4.5\n587,387,4.0\n587,388,4.5\n587,389,5.0\n587,390,5.5\n587,391,6.0\n587,392,6.5\n587,393,7.0\n587,394,7.5\n587,395,8.0\n587,396,8.5\n587,397,9.0\n587,398,9.5\n587,399,10.0\n587,400,9.5\n587,401,9.0\n587,402,8.5\n587,403,8.0\n587,404,7.5\n587,405,7.0\n587,406,6.5\n587,407,6.0\n587,408,5.5\n587,409,5.0\n587,410,4.5\n587,411,4.0\n587,412,3.5\n587,413,4.0\n587,414,4.5\n587,415,5.0\n587,416,5.5\n587,417,6.0\n587,418,6.5\n587,419,7.0\n587,420,7.5\n587,421,8.0\n587,422,8.5\n587,423,9.0\n587,424,9.5\n587,425,9.0\n587,426,8.5\n587,427,8.0\n587,428,7.5\n587,429,7.0\n587,430,6.5\n587,431,6.0\n587,432,5.5\n587,433,5.0\n587,434,4.5\n587,435,4.0\n587,436,3.5\n587,437,3.0\n587,438,3.5\n587,439,4.0\n587,440,4.5\n587,441,5.0\n587,442,5.5\n587,443,6.0\n587,444,6.5\n587,445,7.0\n587,446,7.5\n587,447,8.0\n587,448,8.5\n587,449,9.0\n587,450,8.5\n587,451,8.0\n587,452,7.5\n587,453,7.0\n587,454,6.5\n587,455,6.0\n587,456,5.5\n587,457,5.0\n587,458,4.5\n587,459,4.0\n587,460,3.5\n587,461,3.0\n587,462,2.5\n587,463,3.0\n587,464,3.5\n587,465,4.0\n587,466,4.5\n587,467,5.0\n587,468,5.5\n587,469,6.0\n587,470,6.5\n587,471,7.0\n587,472,7.5\n587,473,8.0\n587,474,8.5\n587,475,8.0\n587,476,7.5\n587,477,7.0\n587,478,6.5\n587,479,6.0\n587,480,5.5\n587,481,5.0\n587,482,4.5\n587,483,4.0\n587,484,3.5\n587,485,3.0\n587,486,2.5\n587,487,2.0\n587,488,2.5\n587,489,3.0\n587,490,3.5\n587,491,4.0\n587,492,4.5\n587,493,5.0\n587,494,5.5\n587,495,6.0\n587,496,6.5\n587,497,7.0\n587,498,7.5\n587,499,8.0\n587,500,7.5\n587,501,7.0\n587,502,6.5\n587,503,6.0\n587,504,5.5\n587,505,5.0\n587,506,4.5\n587,507,4.0\n587,508,3.5\n587,509,3.0\n587,510,2.5\n587,511,2.0\n587,512,1.5\n587,513,2.0\n587,514,2.5\n587,515,3.0\n587,516,3.5\n587,517,4.0\n587,518,4.5\n587,519,5.0\n587,520,5.5\n587,521,6.0\n587,522,6.5\n587,523,7.0\n587,524,7.5\n587,525,7.0\n587,526,6.5\n587,527,6.0\n587,528,5.5\n587,529,5.0\n587,530,4.5\n587,531,4.0\n587,532,3.5\n587,533,3.0\n587,534,2.5\n587,535,2.0\n587,536,1.5\n587,537,1.0\n587,538,1.5\n587,539,2.0\n587,540,2.5\n587,541,3.0\n587,542,3.5\n587,543,4.0\n587,544,4.5\n587,545,5.0\n587,546,5.5\n587,547,6.0\n587,548,6.5\n587,549,7.0\n587,550,6.5\n587,551,6.0\n587,552,5.5\n587,553,5.0\n587,554,4.5\n587,555,4.0\n587,556,3.5\n587,557,3.0\n587,558,2.5\n587,559,2.0\n587,560,1.5\n587,561,1.0\n587,562,0.5\n587,563,1.0\n587,564,1.5\n587,565,2.0\n587,566,2.5\n587,567,3.0\n587,568,3.5\n587,569,4.0\n587,570,4.5\n587,571,5.0\n587,572,5.5\n587,573,6.0\n587,574,6.5\n587,575,6.0\n587,576,5.5\n587,577,5.0\n587,578,4.5\n587,579,4.0\n587,580,3.5\n587,581,3.0\n587,582,2.5\n587,583,2.0\n587,584,1.5\n587,585,1.0\n587,586,0.5\n587,587,0\n587,588,0.5\n587,589,1.0\n587,590,1.5\n587,591,2.0\n587,592,2.5\n587,593,3.0\n587,594,3.5\n587,595,4.0\n587,596,4.5\n587,597,5.0\n587,598,5.5\n587,599,6.0\n587,600,6.5\n587,601,6.0\n587,602,5.5\n587,603,5.0\n587,604,4.5\n587,605,4.0\n587,606,3.5\n587,607,3.0\n587,608,2.5\n587,609,2.0\n587,610,1.5\n587,611,1.0\n587,612,0.5\n587,613,1.0\n587,614,1.5\n587,615,2.0\n587,616,2.5\n587,617,3.0\n587,618,3.5\n587,619,4.0\n587,620,4.5\n587,621,5.0\n587,622,5.5\n587,623,6.0\n587,624,6.5\n588,0,18.0\n588,1,17.5\n588,2,17.0\n588,3,16.5\n588,4,16.0\n588,5,15.5\n588,6,15.0\n588,7,14.5\n588,8,14.0\n588,9,13.5\n588,10,13.0\n588,11,12.5\n588,12,12.0\n588,13,11.5\n588,14,12.0\n588,15,12.5\n588,16,13.0\n588,17,13.5\n588,18,14.0\n588,19,14.5\n588,20,15.0\n588,21,15.5\n588,22,16.0\n588,23,16.5\n588,24,17.0\n588,25,17.5\n588,26,17.0\n588,27,16.5\n588,28,16.0\n588,29,15.5\n588,30,15.0\n588,31,14.5\n588,32,14.0\n588,33,13.5\n588,34,13.0\n588,35,12.5\n588,36,12.0\n588,37,11.5\n588,38,11.0\n588,39,11.5\n588,40,12.0\n588,41,12.5\n588,42,13.0\n588,43,13.5\n588,44,14.0\n588,45,14.5\n588,46,15.0\n588,47,15.5\n588,48,16.0\n588,49,16.5\n588,50,17.0\n588,51,16.5\n588,52,16.0\n588,53,15.5\n588,54,15.0\n588,55,14.5\n588,56,14.0\n588,57,13.5\n588,58,13.0\n588,59,12.5\n588,60,12.0\n588,61,11.5\n588,62,11.0\n588,63,10.5\n588,64,11.0\n588,65,11.5\n588,66,12.0\n588,67,12.5\n588,68,13.0\n588,69,13.5\n588,70,14.0\n588,71,14.5\n588,72,15.0\n588,73,15.5\n588,74,16.0\n588,75,16.5\n588,76,16.0\n588,77,15.5\n588,78,15.0\n588,79,14.5\n588,80,14.0\n588,81,13.5\n588,82,13.0\n588,83,12.5\n588,84,12.0\n588,85,11.5\n588,86,11.0\n588,87,10.5\n588,88,10.0\n588,89,10.5\n588,90,11.0\n588,91,11.5\n588,92,12.0\n588,93,12.5\n588,94,13.0\n588,95,13.5\n588,96,14.0\n588,97,14.5\n588,98,15.0\n588,99,15.5\n588,100,16.0\n588,101,15.5\n588,102,15.0\n588,103,14.5\n588,104,14.0\n588,105,13.5\n588,106,13.0\n588,107,12.5\n588,108,12.0\n588,109,11.5\n588,110,11.0\n588,111,10.5\n588,112,10.0\n588,113,9.5\n588,114,10.0\n588,115,10.5\n588,116,11.0\n588,117,11.5\n588,118,12.0\n588,119,12.5\n588,120,13.0\n588,121,13.5\n588,122,14.0\n588,123,14.5\n588,124,15.0\n588,125,15.5\n588,126,15.0\n588,127,14.5\n588,128,14.0\n588,129,13.5\n588,130,13.0\n588,131,12.5\n588,132,12.0\n588,133,11.5\n588,134,11.0\n588,135,10.5\n588,136,10.0\n588,137,9.5\n588,138,9.0\n588,139,9.5\n588,140,10.0\n588,141,10.5\n588,142,11.0\n588,143,11.5\n588,144,12.0\n588,145,12.5\n588,146,13.0\n588,147,13.5\n588,148,14.0\n588,149,14.5\n588,150,15.0\n588,151,14.5\n588,152,14.0\n588,153,13.5\n588,154,13.0\n588,155,12.5\n588,156,12.0\n588,157,11.5\n588,158,11.0\n588,159,10.5\n588,160,10.0\n588,161,9.5\n588,162,9.0\n588,163,8.5\n588,164,9.0\n588,165,9.5\n588,166,10.0\n588,167,10.5\n588,168,11.0\n588,169,11.5\n588,170,12.0\n588,171,12.5\n588,172,13.0\n588,173,13.5\n588,174,14.0\n588,175,14.5\n588,176,14.0\n588,177,13.5\n588,178,13.0\n588,179,12.5\n588,180,12.0\n588,181,11.5\n588,182,11.0\n588,183,10.5\n588,184,10.0\n588,185,9.5\n588,186,9.0\n588,187,8.5\n588,188,8.0\n588,189,8.5\n588,190,9.0\n588,191,9.5\n588,192,10.0\n588,193,10.5\n588,194,11.0\n588,195,11.5\n588,196,12.0\n588,197,12.5\n588,198,13.0\n588,199,13.5\n588,200,14.0\n588,201,13.5\n588,202,13.0\n588,203,12.5\n588,204,12.0\n588,205,11.5\n588,206,11.0\n588,207,10.5\n588,208,10.0\n588,209,9.5\n588,210,9.0\n588,211,8.5\n588,212,8.0\n588,213,7.5\n588,214,8.0\n588,215,8.5\n588,216,9.0\n588,217,9.5\n588,218,10.0\n588,219,10.5\n588,220,11.0\n588,221,11.5\n588,222,12.0\n588,223,12.5\n588,224,13.0\n588,225,13.5\n588,226,13.0\n588,227,12.5\n588,228,12.0\n588,229,11.5\n588,230,11.0\n588,231,10.5\n588,232,10.0\n588,233,9.5\n588,234,9.0\n588,235,8.5\n588,236,8.0\n588,237,7.5\n588,238,7.0\n588,239,7.5\n588,240,8.0\n588,241,8.5\n588,242,9.0\n588,243,9.5\n588,244,10.0\n588,245,10.5\n588,246,11.0\n588,247,11.5\n588,248,12.0\n588,249,12.5\n588,250,13.0\n588,251,12.5\n588,252,12.0\n588,253,11.5\n588,254,11.0\n588,255,10.5\n588,256,10.0\n588,257,9.5\n588,258,9.0\n588,259,8.5\n588,260,8.0\n588,261,7.5\n588,262,7.0\n588,263,6.5\n588,264,7.0\n588,265,7.5\n588,266,8.0\n588,267,8.5\n588,268,9.0\n588,269,9.5\n588,270,10.0\n588,271,10.5\n588,272,11.0\n588,273,11.5\n588,274,12.0\n588,275,12.5\n588,276,12.0\n588,277,11.5\n588,278,11.0\n588,279,10.5\n588,280,10.0\n588,281,9.5\n588,282,9.0\n588,283,8.5\n588,284,8.0\n588,285,7.5\n588,286,7.0\n588,287,6.5\n588,288,6.0\n588,289,6.5\n588,290,7.0\n588,291,7.5\n588,292,8.0\n588,293,8.5\n588,294,9.0\n588,295,9.5\n588,296,10.0\n588,297,10.5\n588,298,11.0\n588,299,11.5\n588,300,12.0\n588,301,11.5\n588,302,11.0\n588,303,10.5\n588,304,10.0\n588,305,9.5\n588,306,9.0\n588,307,8.5\n588,308,8.0\n588,309,7.5\n588,310,7.0\n588,311,6.5\n588,312,6.0\n588,313,5.5\n588,314,6.0\n588,315,6.5\n588,316,7.0\n588,317,7.5\n588,318,8.0\n588,319,8.5\n588,320,9.0\n588,321,9.5\n588,322,10.0\n588,323,10.5\n588,324,11.0\n588,325,11.5\n588,326,11.0\n588,327,10.5\n588,328,10.0\n588,329,9.5\n588,330,9.0\n588,331,8.5\n588,332,8.0\n588,333,7.5\n588,334,7.0\n588,335,6.5\n588,336,6.0\n588,337,5.5\n588,338,5.0\n588,339,5.5\n588,340,6.0\n588,341,6.5\n588,342,7.0\n588,343,7.5\n588,344,8.0\n588,345,8.5\n588,346,9.0\n588,347,9.5\n588,348,10.0\n588,349,10.5\n588,350,11.0\n588,351,10.5\n588,352,10.0\n588,353,9.5\n588,354,9.0\n588,355,8.5\n588,356,8.0\n588,357,7.5\n588,358,7.0\n588,359,6.5\n588,360,6.0\n588,361,5.5\n588,362,5.0\n588,363,4.5\n588,364,5.0\n588,365,5.5\n588,366,6.0\n588,367,6.5\n588,368,7.0\n588,369,7.5\n588,370,8.0\n588,371,8.5\n588,372,9.0\n588,373,9.5\n588,374,10.0\n588,375,10.5\n588,376,10.0\n588,377,9.5\n588,378,9.0\n588,379,8.5\n588,380,8.0\n588,381,7.5\n588,382,7.0\n588,383,6.5\n588,384,6.0\n588,385,5.5\n588,386,5.0\n588,387,4.5\n588,388,4.0\n588,389,4.5\n588,390,5.0\n588,391,5.5\n588,392,6.0\n588,393,6.5\n588,394,7.0\n588,395,7.5\n588,396,8.0\n588,397,8.5\n588,398,9.0\n588,399,9.5\n588,400,10.0\n588,401,9.5\n588,402,9.0\n588,403,8.5\n588,404,8.0\n588,405,7.5\n588,406,7.0\n588,407,6.5\n588,408,6.0\n588,409,5.5\n588,410,5.0\n588,411,4.5\n588,412,4.0\n588,413,3.5\n588,414,4.0\n588,415,4.5\n588,416,5.0\n588,417,5.5\n588,418,6.0\n588,419,6.5\n588,420,7.0\n588,421,7.5\n588,422,8.0\n588,423,8.5\n588,424,9.0\n588,425,9.5\n588,426,9.0\n588,427,8.5\n588,428,8.0\n588,429,7.5\n588,430,7.0\n588,431,6.5\n588,432,6.0\n588,433,5.5\n588,434,5.0\n588,435,4.5\n588,436,4.0\n588,437,3.5\n588,438,3.0\n588,439,3.5\n588,440,4.0\n588,441,4.5\n588,442,5.0\n588,443,5.5\n588,444,6.0\n588,445,6.5\n588,446,7.0\n588,447,7.5\n588,448,8.0\n588,449,8.5\n588,450,9.0\n588,451,8.5\n588,452,8.0\n588,453,7.5\n588,454,7.0\n588,455,6.5\n588,456,6.0\n588,457,5.5\n588,458,5.0\n588,459,4.5\n588,460,4.0\n588,461,3.5\n588,462,3.0\n588,463,2.5\n588,464,3.0\n588,465,3.5\n588,466,4.0\n588,467,4.5\n588,468,5.0\n588,469,5.5\n588,470,6.0\n588,471,6.5\n588,472,7.0\n588,473,7.5\n588,474,8.0\n588,475,8.5\n588,476,8.0\n588,477,7.5\n588,478,7.0\n588,479,6.5\n588,480,6.0\n588,481,5.5\n588,482,5.0\n588,483,4.5\n588,484,4.0\n588,485,3.5\n588,486,3.0\n588,487,2.5\n588,488,2.0\n588,489,2.5\n588,490,3.0\n588,491,3.5\n588,492,4.0\n588,493,4.5\n588,494,5.0\n588,495,5.5\n588,496,6.0\n588,497,6.5\n588,498,7.0\n588,499,7.5\n588,500,8.0\n588,501,7.5\n588,502,7.0\n588,503,6.5\n588,504,6.0\n588,505,5.5\n588,506,5.0\n588,507,4.5\n588,508,4.0\n588,509,3.5\n588,510,3.0\n588,511,2.5\n588,512,2.0\n588,513,1.5\n588,514,2.0\n588,515,2.5\n588,516,3.0\n588,517,3.5\n588,518,4.0\n588,519,4.5\n588,520,5.0\n588,521,5.5\n588,522,6.0\n588,523,6.5\n588,524,7.0\n588,525,7.5\n588,526,7.0\n588,527,6.5\n588,528,6.0\n588,529,5.5\n588,530,5.0\n588,531,4.5\n588,532,4.0\n588,533,3.5\n588,534,3.0\n588,535,2.5\n588,536,2.0\n588,537,1.5\n588,538,1.0\n588,539,1.5\n588,540,2.0\n588,541,2.5\n588,542,3.0\n588,543,3.5\n588,544,4.0\n588,545,4.5\n588,546,5.0\n588,547,5.5\n588,548,6.0\n588,549,6.5\n588,550,7.0\n588,551,6.5\n588,552,6.0\n588,553,5.5\n588,554,5.0\n588,555,4.5\n588,556,4.0\n588,557,3.5\n588,558,3.0\n588,559,2.5\n588,560,2.0\n588,561,1.5\n588,562,1.0\n588,563,0.5\n588,564,1.0\n588,565,1.5\n588,566,2.0\n588,567,2.5\n588,568,3.0\n588,569,3.5\n588,570,4.0\n588,571,4.5\n588,572,5.0\n588,573,5.5\n588,574,6.0\n588,575,6.5\n588,576,6.0\n588,577,5.5\n588,578,5.0\n588,579,4.5\n588,580,4.0\n588,581,3.5\n588,582,3.0\n588,583,2.5\n588,584,2.0\n588,585,1.5\n588,586,1.0\n588,587,0.5\n588,588,0\n588,589,0.5\n588,590,1.0\n588,591,1.5\n588,592,2.0\n588,593,2.5\n588,594,3.0\n588,595,3.5\n588,596,4.0\n588,597,4.5\n588,598,5.0\n588,599,5.5\n588,600,7.0\n588,601,6.5\n588,602,6.0\n588,603,5.5\n588,604,5.0\n588,605,4.5\n588,606,4.0\n588,607,3.5\n588,608,3.0\n588,609,2.5\n588,610,2.0\n588,611,1.5\n588,612,1.0\n588,613,0.5\n588,614,1.0\n588,615,1.5\n588,616,2.0\n588,617,2.5\n588,618,3.0\n588,619,3.5\n588,620,4.0\n588,621,4.5\n588,622,5.0\n588,623,5.5\n588,624,6.0\n589,0,18.5\n589,1,18.0\n589,2,17.5\n589,3,17.0\n589,4,16.5\n589,5,16.0\n589,6,15.5\n589,7,15.0\n589,8,14.5\n589,9,14.0\n589,10,13.5\n589,11,13.0\n589,12,12.5\n589,13,12.0\n589,14,11.5\n589,15,12.0\n589,16,12.5\n589,17,13.0\n589,18,13.5\n589,19,14.0\n589,20,14.5\n589,21,15.0\n589,22,15.5\n589,23,16.0\n589,24,16.5\n589,25,18.0\n589,26,17.5\n589,27,17.0\n589,28,16.5\n589,29,16.0\n589,30,15.5\n589,31,15.0\n589,32,14.5\n589,33,14.0\n589,34,13.5\n589,35,13.0\n589,36,12.5\n589,37,12.0\n589,38,11.5\n589,39,11.0\n589,40,11.5\n589,41,12.0\n589,42,12.5\n589,43,13.0\n589,44,13.5\n589,45,14.0\n589,46,14.5\n589,47,15.0\n589,48,15.5\n589,49,16.0\n589,50,17.5\n589,51,17.0\n589,52,16.5\n589,53,16.0\n589,54,15.5\n589,55,15.0\n589,56,14.5\n589,57,14.0\n589,58,13.5\n589,59,13.0\n589,60,12.5\n589,61,12.0\n589,62,11.5\n589,63,11.0\n589,64,10.5\n589,65,11.0\n589,66,11.5\n589,67,12.0\n589,68,12.5\n589,69,13.0\n589,70,13.5\n589,71,14.0\n589,72,14.5\n589,73,15.0\n589,74,15.5\n589,75,17.0\n589,76,16.5\n589,77,16.0\n589,78,15.5\n589,79,15.0\n589,80,14.5\n589,81,14.0\n589,82,13.5\n589,83,13.0\n589,84,12.5\n589,85,12.0\n589,86,11.5\n589,87,11.0\n589,88,10.5\n589,89,10.0\n589,90,10.5\n589,91,11.0\n589,92,11.5\n589,93,12.0\n589,94,12.5\n589,95,13.0\n589,96,13.5\n589,97,14.0\n589,98,14.5\n589,99,15.0\n589,100,16.5\n589,101,16.0\n589,102,15.5\n589,103,15.0\n589,104,14.5\n589,105,14.0\n589,106,13.5\n589,107,13.0\n589,108,12.5\n589,109,12.0\n589,110,11.5\n589,111,11.0\n589,112,10.5\n589,113,10.0\n589,114,9.5\n589,115,10.0\n589,116,10.5\n589,117,11.0\n589,118,11.5\n589,119,12.0\n589,120,12.5\n589,121,13.0\n589,122,13.5\n589,123,14.0\n589,124,14.5\n589,125,16.0\n589,126,15.5\n589,127,15.0\n589,128,14.5\n589,129,14.0\n589,130,13.5\n589,131,13.0\n589,132,12.5\n589,133,12.0\n589,134,11.5\n589,135,11.0\n589,136,10.5\n589,137,10.0\n589,138,9.5\n589,139,9.0\n589,140,9.5\n589,141,10.0\n589,142,10.5\n589,143,11.0\n589,144,11.5\n589,145,12.0\n589,146,12.5\n589,147,13.0\n589,148,13.5\n589,149,14.0\n589,150,15.5\n589,151,15.0\n589,152,14.5\n589,153,14.0\n589,154,13.5\n589,155,13.0\n589,156,12.5\n589,157,12.0\n589,158,11.5\n589,159,11.0\n589,160,10.5\n589,161,10.0\n589,162,9.5\n589,163,9.0\n589,164,8.5\n589,165,9.0\n589,166,9.5\n589,167,10.0\n589,168,10.5\n589,169,11.0\n589,170,11.5\n589,171,12.0\n589,172,12.5\n589,173,13.0\n589,174,13.5\n589,175,15.0\n589,176,14.5\n589,177,14.0\n589,178,13.5\n589,179,13.0\n589,180,12.5\n589,181,12.0\n589,182,11.5\n589,183,11.0\n589,184,10.5\n589,185,10.0\n589,186,9.5\n589,187,9.0\n589,188,8.5\n589,189,8.0\n589,190,8.5\n589,191,9.0\n589,192,9.5\n589,193,10.0\n589,194,10.5\n589,195,11.0\n589,196,11.5\n589,197,12.0\n589,198,12.5\n589,199,13.0\n589,200,14.5\n589,201,14.0\n589,202,13.5\n589,203,13.0\n589,204,12.5\n589,205,12.0\n589,206,11.5\n589,207,11.0\n589,208,10.5\n589,209,10.0\n589,210,9.5\n589,211,9.0\n589,212,8.5\n589,213,8.0\n589,214,7.5\n589,215,8.0\n589,216,8.5\n589,217,9.0\n589,218,9.5\n589,219,10.0\n589,220,10.5\n589,221,11.0\n589,222,11.5\n589,223,12.0\n589,224,12.5\n589,225,14.0\n589,226,13.5\n589,227,13.0\n589,228,12.5\n589,229,12.0\n589,230,11.5\n589,231,11.0\n589,232,10.5\n589,233,10.0\n589,234,9.5\n589,235,9.0\n589,236,8.5\n589,237,8.0\n589,238,7.5\n589,239,7.0\n589,240,7.5\n589,241,8.0\n589,242,8.5\n589,243,9.0\n589,244,9.5\n589,245,10.0\n589,246,10.5\n589,247,11.0\n589,248,11.5\n589,249,12.0\n589,250,13.5\n589,251,13.0\n589,252,12.5\n589,253,12.0\n589,254,11.5\n589,255,11.0\n589,256,10.5\n589,257,10.0\n589,258,9.5\n589,259,9.0\n589,260,8.5\n589,261,8.0\n589,262,7.5\n589,263,7.0\n589,264,6.5\n589,265,7.0\n589,266,7.5\n589,267,8.0\n589,268,8.5\n589,269,9.0\n589,270,9.5\n589,271,10.0\n589,272,10.5\n589,273,11.0\n589,274,11.5\n589,275,13.0\n589,276,12.5\n589,277,12.0\n589,278,11.5\n589,279,11.0\n589,280,10.5\n589,281,10.0\n589,282,9.5\n589,283,9.0\n589,284,8.5\n589,285,8.0\n589,286,7.5\n589,287,7.0\n589,288,6.5\n589,289,6.0\n589,290,6.5\n589,291,7.0\n589,292,7.5\n589,293,8.0\n589,294,8.5\n589,295,9.0\n589,296,9.5\n589,297,10.0\n589,298,10.5\n589,299,11.0\n589,300,12.5\n589,301,12.0\n589,302,11.5\n589,303,11.0\n589,304,10.5\n589,305,10.0\n589,306,9.5\n589,307,9.0\n589,308,8.5\n589,309,8.0\n589,310,7.5\n589,311,7.0\n589,312,6.5\n589,313,6.0\n589,314,5.5\n589,315,6.0\n589,316,6.5\n589,317,7.0\n589,318,7.5\n589,319,8.0\n589,320,8.5\n589,321,9.0\n589,322,9.5\n589,323,10.0\n589,324,10.5\n589,325,12.0\n589,326,11.5\n589,327,11.0\n589,328,10.5\n589,329,10.0\n589,330,9.5\n589,331,9.0\n589,332,8.5\n589,333,8.0\n589,334,7.5\n589,335,7.0\n589,336,6.5\n589,337,6.0\n589,338,5.5\n589,339,5.0\n589,340,5.5\n589,341,6.0\n589,342,6.5\n589,343,7.0\n589,344,7.5\n589,345,8.0\n589,346,8.5\n589,347,9.0\n589,348,9.5\n589,349,10.0\n589,350,11.5\n589,351,11.0\n589,352,10.5\n589,353,10.0\n589,354,9.5\n589,355,9.0\n589,356,8.5\n589,357,8.0\n589,358,7.5\n589,359,7.0\n589,360,6.5\n589,361,6.0\n589,362,5.5\n589,363,5.0\n589,364,4.5\n589,365,5.0\n589,366,5.5\n589,367,6.0\n589,368,6.5\n589,369,7.0\n589,370,7.5\n589,371,8.0\n589,372,8.5\n589,373,9.0\n589,374,9.5\n589,375,11.0\n589,376,10.5\n589,377,10.0\n589,378,9.5\n589,379,9.0\n589,380,8.5\n589,381,8.0\n589,382,7.5\n589,383,7.0\n589,384,6.5\n589,385,6.0\n589,386,5.5\n589,387,5.0\n589,388,4.5\n589,389,4.0\n589,390,4.5\n589,391,5.0\n589,392,5.5\n589,393,6.0\n589,394,6.5\n589,395,7.0\n589,396,7.5\n589,397,8.0\n589,398,8.5\n589,399,9.0\n589,400,10.5\n589,401,10.0\n589,402,9.5\n589,403,9.0\n589,404,8.5\n589,405,8.0\n589,406,7.5\n589,407,7.0\n589,408,6.5\n589,409,6.0\n589,410,5.5\n589,411,5.0\n589,412,4.5\n589,413,4.0\n589,414,3.5\n589,415,4.0\n589,416,4.5\n589,417,5.0\n589,418,5.5\n589,419,6.0\n589,420,6.5\n589,421,7.0\n589,422,7.5\n589,423,8.0\n589,424,8.5\n589,425,10.0\n589,426,9.5\n589,427,9.0\n589,428,8.5\n589,429,8.0\n589,430,7.5\n589,431,7.0\n589,432,6.5\n589,433,6.0\n589,434,5.5\n589,435,5.0\n589,436,4.5\n589,437,4.0\n589,438,3.5\n589,439,3.0\n589,440,3.5\n589,441,4.0\n589,442,4.5\n589,443,5.0\n589,444,5.5\n589,445,6.0\n589,446,6.5\n589,447,7.0\n589,448,7.5\n589,449,8.0\n589,450,9.5\n589,451,9.0\n589,452,8.5\n589,453,8.0\n589,454,7.5\n589,455,7.0\n589,456,6.5\n589,457,6.0\n589,458,5.5\n589,459,5.0\n589,460,4.5\n589,461,4.0\n589,462,3.5\n589,463,3.0\n589,464,2.5\n589,465,3.0\n589,466,3.5\n589,467,4.0\n589,468,4.5\n589,469,5.0\n589,470,5.5\n589,471,6.0\n589,472,6.5\n589,473,7.0\n589,474,7.5\n589,475,9.0\n589,476,8.5\n589,477,8.0\n589,478,7.5\n589,479,7.0\n589,480,6.5\n589,481,6.0\n589,482,5.5\n589,483,5.0\n589,484,4.5\n589,485,4.0\n589,486,3.5\n589,487,3.0\n589,488,2.5\n589,489,2.0\n589,490,2.5\n589,491,3.0\n589,492,3.5\n589,493,4.0\n589,494,4.5\n589,495,5.0\n589,496,5.5\n589,497,6.0\n589,498,6.5\n589,499,7.0\n589,500,8.5\n589,501,8.0\n589,502,7.5\n589,503,7.0\n589,504,6.5\n589,505,6.0\n589,506,5.5\n589,507,5.0\n589,508,4.5\n589,509,4.0\n589,510,3.5\n589,511,3.0\n589,512,2.5\n589,513,2.0\n589,514,1.5\n589,515,2.0\n589,516,2.5\n589,517,3.0\n589,518,3.5\n589,519,4.0\n589,520,4.5\n589,521,5.0\n589,522,5.5\n589,523,6.0\n589,524,6.5\n589,525,8.0\n589,526,7.5\n589,527,7.0\n589,528,6.5\n589,529,6.0\n589,530,5.5\n589,531,5.0\n589,532,4.5\n589,533,4.0\n589,534,3.5\n589,535,3.0\n589,536,2.5\n589,537,2.0\n589,538,1.5\n589,539,1.0\n589,540,1.5\n589,541,2.0\n589,542,2.5\n589,543,3.0\n589,544,3.5\n589,545,4.0\n589,546,4.5\n589,547,5.0\n589,548,5.5\n589,549,6.0\n589,550,7.5\n589,551,7.0\n589,552,6.5\n589,553,6.0\n589,554,5.5\n589,555,5.0\n589,556,4.5\n589,557,4.0\n589,558,3.5\n589,559,3.0\n589,560,2.5\n589,561,2.0\n589,562,1.5\n589,563,1.0\n589,564,0.5\n589,565,1.0\n589,566,1.5\n589,567,2.0\n589,568,2.5\n589,569,3.0\n589,570,3.5\n589,571,4.0\n589,572,4.5\n589,573,5.0\n589,574,5.5\n589,575,7.0\n589,576,6.5\n589,577,6.0\n589,578,5.5\n589,579,5.0\n589,580,4.5\n589,581,4.0\n589,582,3.5\n589,583,3.0\n589,584,2.5\n589,585,2.0\n589,586,1.5\n589,587,1.0\n589,588,0.5\n589,589,0\n589,590,0.5\n589,591,1.0\n589,592,1.5\n589,593,2.0\n589,594,2.5\n589,595,3.0\n589,596,3.5\n589,597,4.0\n589,598,4.5\n589,599,5.0\n589,600,7.5\n589,601,7.0\n589,602,6.5\n589,603,6.0\n589,604,5.5\n589,605,5.0\n589,606,4.5\n589,607,4.0\n589,608,3.5\n589,609,3.0\n589,610,2.5\n589,611,2.0\n589,612,1.5\n589,613,1.0\n589,614,0.5\n589,615,1.0\n589,616,1.5\n589,617,2.0\n589,618,2.5\n589,619,3.0\n589,620,3.5\n589,621,4.0\n589,622,4.5\n589,623,5.0\n589,624,5.5\n590,0,19.0\n590,1,18.5\n590,2,18.0\n590,3,17.5\n590,4,17.0\n590,5,16.5\n590,6,16.0\n590,7,15.5\n590,8,15.0\n590,9,14.5\n590,10,14.0\n590,11,13.5\n590,12,13.0\n590,13,12.5\n590,14,12.0\n590,15,11.5\n590,16,12.0\n590,17,12.5\n590,18,13.0\n590,19,13.5\n590,20,14.0\n590,21,14.5\n590,22,15.0\n590,23,15.5\n590,24,16.0\n590,25,18.5\n590,26,18.0\n590,27,17.5\n590,28,17.0\n590,29,16.5\n590,30,16.0\n590,31,15.5\n590,32,15.0\n590,33,14.5\n590,34,14.0\n590,35,13.5\n590,36,13.0\n590,37,12.5\n590,38,12.0\n590,39,11.5\n590,40,11.0\n590,41,11.5\n590,42,12.0\n590,43,12.5\n590,44,13.0\n590,45,13.5\n590,46,14.0\n590,47,14.5\n590,48,15.0\n590,49,15.5\n590,50,18.0\n590,51,17.5\n590,52,17.0\n590,53,16.5\n590,54,16.0\n590,55,15.5\n590,56,15.0\n590,57,14.5\n590,58,14.0\n590,59,13.5\n590,60,13.0\n590,61,12.5\n590,62,12.0\n590,63,11.5\n590,64,11.0\n590,65,10.5\n590,66,11.0\n590,67,11.5\n590,68,12.0\n590,69,12.5\n590,70,13.0\n590,71,13.5\n590,72,14.0\n590,73,14.5\n590,74,15.0\n590,75,17.5\n590,76,17.0\n590,77,16.5\n590,78,16.0\n590,79,15.5\n590,80,15.0\n590,81,14.5\n590,82,14.0\n590,83,13.5\n590,84,13.0\n590,85,12.5\n590,86,12.0\n590,87,11.5\n590,88,11.0\n590,89,10.5\n590,90,10.0\n590,91,10.5\n590,92,11.0\n590,93,11.5\n590,94,12.0\n590,95,12.5\n590,96,13.0\n590,97,13.5\n590,98,14.0\n590,99,14.5\n590,100,17.0\n590,101,16.5\n590,102,16.0\n590,103,15.5\n590,104,15.0\n590,105,14.5\n590,106,14.0\n590,107,13.5\n590,108,13.0\n590,109,12.5\n590,110,12.0\n590,111,11.5\n590,112,11.0\n590,113,10.5\n590,114,10.0\n590,115,9.5\n590,116,10.0\n590,117,10.5\n590,118,11.0\n590,119,11.5\n590,120,12.0\n590,121,12.5\n590,122,13.0\n590,123,13.5\n590,124,14.0\n590,125,16.5\n590,126,16.0\n590,127,15.5\n590,128,15.0\n590,129,14.5\n590,130,14.0\n590,131,13.5\n590,132,13.0\n590,133,12.5\n590,134,12.0\n590,135,11.5\n590,136,11.0\n590,137,10.5\n590,138,10.0\n590,139,9.5\n590,140,9.0\n590,141,9.5\n590,142,10.0\n590,143,10.5\n590,144,11.0\n590,145,11.5\n590,146,12.0\n590,147,12.5\n590,148,13.0\n590,149,13.5\n590,150,16.0\n590,151,15.5\n590,152,15.0\n590,153,14.5\n590,154,14.0\n590,155,13.5\n590,156,13.0\n590,157,12.5\n590,158,12.0\n590,159,11.5\n590,160,11.0\n590,161,10.5\n590,162,10.0\n590,163,9.5\n590,164,9.0\n590,165,8.5\n590,166,9.0\n590,167,9.5\n590,168,10.0\n590,169,10.5\n590,170,11.0\n590,171,11.5\n590,172,12.0\n590,173,12.5\n590,174,13.0\n590,175,15.5\n590,176,15.0\n590,177,14.5\n590,178,14.0\n590,179,13.5\n590,180,13.0\n590,181,12.5\n590,182,12.0\n590,183,11.5\n590,184,11.0\n590,185,10.5\n590,186,10.0\n590,187,9.5\n590,188,9.0\n590,189,8.5\n590,190,8.0\n590,191,8.5\n590,192,9.0\n590,193,9.5\n590,194,10.0\n590,195,10.5\n590,196,11.0\n590,197,11.5\n590,198,12.0\n590,199,12.5\n590,200,15.0\n590,201,14.5\n590,202,14.0\n590,203,13.5\n590,204,13.0\n590,205,12.5\n590,206,12.0\n590,207,11.5\n590,208,11.0\n590,209,10.5\n590,210,10.0\n590,211,9.5\n590,212,9.0\n590,213,8.5\n590,214,8.0\n590,215,7.5\n590,216,8.0\n590,217,8.5\n590,218,9.0\n590,219,9.5\n590,220,10.0\n590,221,10.5\n590,222,11.0\n590,223,11.5\n590,224,12.0\n590,225,14.5\n590,226,14.0\n590,227,13.5\n590,228,13.0\n590,229,12.5\n590,230,12.0\n590,231,11.5\n590,232,11.0\n590,233,10.5\n590,234,10.0\n590,235,9.5\n590,236,9.0\n590,237,8.5\n590,238,8.0\n590,239,7.5\n590,240,7.0\n590,241,7.5\n590,242,8.0\n590,243,8.5\n590,244,9.0\n590,245,9.5\n590,246,10.0\n590,247,10.5\n590,248,11.0\n590,249,11.5\n590,250,14.0\n590,251,13.5\n590,252,13.0\n590,253,12.5\n590,254,12.0\n590,255,11.5\n590,256,11.0\n590,257,10.5\n590,258,10.0\n590,259,9.5\n590,260,9.0\n590,261,8.5\n590,262,8.0\n590,263,7.5\n590,264,7.0\n590,265,6.5\n590,266,7.0\n590,267,7.5\n590,268,8.0\n590,269,8.5\n590,270,9.0\n590,271,9.5\n590,272,10.0\n590,273,10.5\n590,274,11.0\n590,275,13.5\n590,276,13.0\n590,277,12.5\n590,278,12.0\n590,279,11.5\n590,280,11.0\n590,281,10.5\n590,282,10.0\n590,283,9.5\n590,284,9.0\n590,285,8.5\n590,286,8.0\n590,287,7.5\n590,288,7.0\n590,289,6.5\n590,290,6.0\n590,291,6.5\n590,292,7.0\n590,293,7.5\n590,294,8.0\n590,295,8.5\n590,296,9.0\n590,297,9.5\n590,298,10.0\n590,299,10.5\n590,300,13.0\n590,301,12.5\n590,302,12.0\n590,303,11.5\n590,304,11.0\n590,305,10.5\n590,306,10.0\n590,307,9.5\n590,308,9.0\n590,309,8.5\n590,310,8.0\n590,311,7.5\n590,312,7.0\n590,313,6.5\n590,314,6.0\n590,315,5.5\n590,316,6.0\n590,317,6.5\n590,318,7.0\n590,319,7.5\n590,320,8.0\n590,321,8.5\n590,322,9.0\n590,323,9.5\n590,324,10.0\n590,325,12.5\n590,326,12.0\n590,327,11.5\n590,328,11.0\n590,329,10.5\n590,330,10.0\n590,331,9.5\n590,332,9.0\n590,333,8.5\n590,334,8.0\n590,335,7.5\n590,336,7.0\n590,337,6.5\n590,338,6.0\n590,339,5.5\n590,340,5.0\n590,341,5.5\n590,342,6.0\n590,343,6.5\n590,344,7.0\n590,345,7.5\n590,346,8.0\n590,347,8.5\n590,348,9.0\n590,349,9.5\n590,350,12.0\n590,351,11.5\n590,352,11.0\n590,353,10.5\n590,354,10.0\n590,355,9.5\n590,356,9.0\n590,357,8.5\n590,358,8.0\n590,359,7.5\n590,360,7.0\n590,361,6.5\n590,362,6.0\n590,363,5.5\n590,364,5.0\n590,365,4.5\n590,366,5.0\n590,367,5.5\n590,368,6.0\n590,369,6.5\n590,370,7.0\n590,371,7.5\n590,372,8.0\n590,373,8.5\n590,374,9.0\n590,375,11.5\n590,376,11.0\n590,377,10.5\n590,378,10.0\n590,379,9.5\n590,380,9.0\n590,381,8.5\n590,382,8.0\n590,383,7.5\n590,384,7.0\n590,385,6.5\n590,386,6.0\n590,387,5.5\n590,388,5.0\n590,389,4.5\n590,390,4.0\n590,391,4.5\n590,392,5.0\n590,393,5.5\n590,394,6.0\n590,395,6.5\n590,396,7.0\n590,397,7.5\n590,398,8.0\n590,399,8.5\n590,400,11.0\n590,401,10.5\n590,402,10.0\n590,403,9.5\n590,404,9.0\n590,405,8.5\n590,406,8.0\n590,407,7.5\n590,408,7.0\n590,409,6.5\n590,410,6.0\n590,411,5.5\n590,412,5.0\n590,413,4.5\n590,414,4.0\n590,415,3.5\n590,416,4.0\n590,417,4.5\n590,418,5.0\n590,419,5.5\n590,420,6.0\n590,421,6.5\n590,422,7.0\n590,423,7.5\n590,424,8.0\n590,425,10.5\n590,426,10.0\n590,427,9.5\n590,428,9.0\n590,429,8.5\n590,430,8.0\n590,431,7.5\n590,432,7.0\n590,433,6.5\n590,434,6.0\n590,435,5.5\n590,436,5.0\n590,437,4.5\n590,438,4.0\n590,439,3.5\n590,440,3.0\n590,441,3.5\n590,442,4.0\n590,443,4.5\n590,444,5.0\n590,445,5.5\n590,446,6.0\n590,447,6.5\n590,448,7.0\n590,449,7.5\n590,450,10.0\n590,451,9.5\n590,452,9.0\n590,453,8.5\n590,454,8.0\n590,455,7.5\n590,456,7.0\n590,457,6.5\n590,458,6.0\n590,459,5.5\n590,460,5.0\n590,461,4.5\n590,462,4.0\n590,463,3.5\n590,464,3.0\n590,465,2.5\n590,466,3.0\n590,467,3.5\n590,468,4.0\n590,469,4.5\n590,470,5.0\n590,471,5.5\n590,472,6.0\n590,473,6.5\n590,474,7.0\n590,475,9.5\n590,476,9.0\n590,477,8.5\n590,478,8.0\n590,479,7.5\n590,480,7.0\n590,481,6.5\n590,482,6.0\n590,483,5.5\n590,484,5.0\n590,485,4.5\n590,486,4.0\n590,487,3.5\n590,488,3.0\n590,489,2.5\n590,490,2.0\n590,491,2.5\n590,492,3.0\n590,493,3.5\n590,494,4.0\n590,495,4.5\n590,496,5.0\n590,497,5.5\n590,498,6.0\n590,499,6.5\n590,500,9.0\n590,501,8.5\n590,502,8.0\n590,503,7.5\n590,504,7.0\n590,505,6.5\n590,506,6.0\n590,507,5.5\n590,508,5.0\n590,509,4.5\n590,510,4.0\n590,511,3.5\n590,512,3.0\n590,513,2.5\n590,514,2.0\n590,515,1.5\n590,516,2.0\n590,517,2.5\n590,518,3.0\n590,519,3.5\n590,520,4.0\n590,521,4.5\n590,522,5.0\n590,523,5.5\n590,524,6.0\n590,525,8.5\n590,526,8.0\n590,527,7.5\n590,528,7.0\n590,529,6.5\n590,530,6.0\n590,531,5.5\n590,532,5.0\n590,533,4.5\n590,534,4.0\n590,535,3.5\n590,536,3.0\n590,537,2.5\n590,538,2.0\n590,539,1.5\n590,540,1.0\n590,541,1.5\n590,542,2.0\n590,543,2.5\n590,544,3.0\n590,545,3.5\n590,546,4.0\n590,547,4.5\n590,548,5.0\n590,549,5.5\n590,550,8.0\n590,551,7.5\n590,552,7.0\n590,553,6.5\n590,554,6.0\n590,555,5.5\n590,556,5.0\n590,557,4.5\n590,558,4.0\n590,559,3.5\n590,560,3.0\n590,561,2.5\n590,562,2.0\n590,563,1.5\n590,564,1.0\n590,565,0.5\n590,566,1.0\n590,567,1.5\n590,568,2.0\n590,569,2.5\n590,570,3.0\n590,571,3.5\n590,572,4.0\n590,573,4.5\n590,574,5.0\n590,575,7.5\n590,576,7.0\n590,577,6.5\n590,578,6.0\n590,579,5.5\n590,580,5.0\n590,581,4.5\n590,582,4.0\n590,583,3.5\n590,584,3.0\n590,585,2.5\n590,586,2.0\n590,587,1.5\n590,588,1.0\n590,589,0.5\n590,590,0\n590,591,0.5\n590,592,1.0\n590,593,1.5\n590,594,2.0\n590,595,2.5\n590,596,3.0\n590,597,3.5\n590,598,4.0\n590,599,4.5\n590,600,8.0\n590,601,7.5\n590,602,7.0\n590,603,6.5\n590,604,6.0\n590,605,5.5\n590,606,5.0\n590,607,4.5\n590,608,4.0\n590,609,3.5\n590,610,3.0\n590,611,2.5\n590,612,2.0\n590,613,1.5\n590,614,1.0\n590,615,0.5\n590,616,1.0\n590,617,1.5\n590,618,2.0\n590,619,2.5\n590,620,3.0\n590,621,3.5\n590,622,4.0\n590,623,4.5\n590,624,5.0\n591,0,19.5\n591,1,19.0\n591,2,18.5\n591,3,18.0\n591,4,17.5\n591,5,17.0\n591,6,16.5\n591,7,16.0\n591,8,15.5\n591,9,15.0\n591,10,14.5\n591,11,14.0\n591,12,13.5\n591,13,13.0\n591,14,12.5\n591,15,12.0\n591,16,11.5\n591,17,12.0\n591,18,12.5\n591,19,13.0\n591,20,13.5\n591,21,14.0\n591,22,14.5\n591,23,15.0\n591,24,15.5\n591,25,19.0\n591,26,18.5\n591,27,18.0\n591,28,17.5\n591,29,17.0\n591,30,16.5\n591,31,16.0\n591,32,15.5\n591,33,15.0\n591,34,14.5\n591,35,14.0\n591,36,13.5\n591,37,13.0\n591,38,12.5\n591,39,12.0\n591,40,11.5\n591,41,11.0\n591,42,11.5\n591,43,12.0\n591,44,12.5\n591,45,13.0\n591,46,13.5\n591,47,14.0\n591,48,14.5\n591,49,15.0\n591,50,18.5\n591,51,18.0\n591,52,17.5\n591,53,17.0\n591,54,16.5\n591,55,16.0\n591,56,15.5\n591,57,15.0\n591,58,14.5\n591,59,14.0\n591,60,13.5\n591,61,13.0\n591,62,12.5\n591,63,12.0\n591,64,11.5\n591,65,11.0\n591,66,10.5\n591,67,11.0\n591,68,11.5\n591,69,12.0\n591,70,12.5\n591,71,13.0\n591,72,13.5\n591,73,14.0\n591,74,14.5\n591,75,18.0\n591,76,17.5\n591,77,17.0\n591,78,16.5\n591,79,16.0\n591,80,15.5\n591,81,15.0\n591,82,14.5\n591,83,14.0\n591,84,13.5\n591,85,13.0\n591,86,12.5\n591,87,12.0\n591,88,11.5\n591,89,11.0\n591,90,10.5\n591,91,10.0\n591,92,10.5\n591,93,11.0\n591,94,11.5\n591,95,12.0\n591,96,12.5\n591,97,13.0\n591,98,13.5\n591,99,14.0\n591,100,17.5\n591,101,17.0\n591,102,16.5\n591,103,16.0\n591,104,15.5\n591,105,15.0\n591,106,14.5\n591,107,14.0\n591,108,13.5\n591,109,13.0\n591,110,12.5\n591,111,12.0\n591,112,11.5\n591,113,11.0\n591,114,10.5\n591,115,10.0\n591,116,9.5\n591,117,10.0\n591,118,10.5\n591,119,11.0\n591,120,11.5\n591,121,12.0\n591,122,12.5\n591,123,13.0\n591,124,13.5\n591,125,17.0\n591,126,16.5\n591,127,16.0\n591,128,15.5\n591,129,15.0\n591,130,14.5\n591,131,14.0\n591,132,13.5\n591,133,13.0\n591,134,12.5\n591,135,12.0\n591,136,11.5\n591,137,11.0\n591,138,10.5\n591,139,10.0\n591,140,9.5\n591,141,9.0\n591,142,9.5\n591,143,10.0\n591,144,10.5\n591,145,11.0\n591,146,11.5\n591,147,12.0\n591,148,12.5\n591,149,13.0\n591,150,16.5\n591,151,16.0\n591,152,15.5\n591,153,15.0\n591,154,14.5\n591,155,14.0\n591,156,13.5\n591,157,13.0\n591,158,12.5\n591,159,12.0\n591,160,11.5\n591,161,11.0\n591,162,10.5\n591,163,10.0\n591,164,9.5\n591,165,9.0\n591,166,8.5\n591,167,9.0\n591,168,9.5\n591,169,10.0\n591,170,10.5\n591,171,11.0\n591,172,11.5\n591,173,12.0\n591,174,12.5\n591,175,16.0\n591,176,15.5\n591,177,15.0\n591,178,14.5\n591,179,14.0\n591,180,13.5\n591,181,13.0\n591,182,12.5\n591,183,12.0\n591,184,11.5\n591,185,11.0\n591,186,10.5\n591,187,10.0\n591,188,9.5\n591,189,9.0\n591,190,8.5\n591,191,8.0\n591,192,8.5\n591,193,9.0\n591,194,9.5\n591,195,10.0\n591,196,10.5\n591,197,11.0\n591,198,11.5\n591,199,12.0\n591,200,15.5\n591,201,15.0\n591,202,14.5\n591,203,14.0\n591,204,13.5\n591,205,13.0\n591,206,12.5\n591,207,12.0\n591,208,11.5\n591,209,11.0\n591,210,10.5\n591,211,10.0\n591,212,9.5\n591,213,9.0\n591,214,8.5\n591,215,8.0\n591,216,7.5\n591,217,8.0\n591,218,8.5\n591,219,9.0\n591,220,9.5\n591,221,10.0\n591,222,10.5\n591,223,11.0\n591,224,11.5\n591,225,15.0\n591,226,14.5\n591,227,14.0\n591,228,13.5\n591,229,13.0\n591,230,12.5\n591,231,12.0\n591,232,11.5\n591,233,11.0\n591,234,10.5\n591,235,10.0\n591,236,9.5\n591,237,9.0\n591,238,8.5\n591,239,8.0\n591,240,7.5\n591,241,7.0\n591,242,7.5\n591,243,8.0\n591,244,8.5\n591,245,9.0\n591,246,9.5\n591,247,10.0\n591,248,10.5\n591,249,11.0\n591,250,14.5\n591,251,14.0\n591,252,13.5\n591,253,13.0\n591,254,12.5\n591,255,12.0\n591,256,11.5\n591,257,11.0\n591,258,10.5\n591,259,10.0\n591,260,9.5\n591,261,9.0\n591,262,8.5\n591,263,8.0\n591,264,7.5\n591,265,7.0\n591,266,6.5\n591,267,7.0\n591,268,7.5\n591,269,8.0\n591,270,8.5\n591,271,9.0\n591,272,9.5\n591,273,10.0\n591,274,10.5\n591,275,14.0\n591,276,13.5\n591,277,13.0\n591,278,12.5\n591,279,12.0\n591,280,11.5\n591,281,11.0\n591,282,10.5\n591,283,10.0\n591,284,9.5\n591,285,9.0\n591,286,8.5\n591,287,8.0\n591,288,7.5\n591,289,7.0\n591,290,6.5\n591,291,6.0\n591,292,6.5\n591,293,7.0\n591,294,7.5\n591,295,8.0\n591,296,8.5\n591,297,9.0\n591,298,9.5\n591,299,10.0\n591,300,13.5\n591,301,13.0\n591,302,12.5\n591,303,12.0\n591,304,11.5\n591,305,11.0\n591,306,10.5\n591,307,10.0\n591,308,9.5\n591,309,9.0\n591,310,8.5\n591,311,8.0\n591,312,7.5\n591,313,7.0\n591,314,6.5\n591,315,6.0\n591,316,5.5\n591,317,6.0\n591,318,6.5\n591,319,7.0\n591,320,7.5\n591,321,8.0\n591,322,8.5\n591,323,9.0\n591,324,9.5\n591,325,13.0\n591,326,12.5\n591,327,12.0\n591,328,11.5\n591,329,11.0\n591,330,10.5\n591,331,10.0\n591,332,9.5\n591,333,9.0\n591,334,8.5\n591,335,8.0\n591,336,7.5\n591,337,7.0\n591,338,6.5\n591,339,6.0\n591,340,5.5\n591,341,5.0\n591,342,5.5\n591,343,6.0\n591,344,6.5\n591,345,7.0\n591,346,7.5\n591,347,8.0\n591,348,8.5\n591,349,9.0\n591,350,12.5\n591,351,12.0\n591,352,11.5\n591,353,11.0\n591,354,10.5\n591,355,10.0\n591,356,9.5\n591,357,9.0\n591,358,8.5\n591,359,8.0\n591,360,7.5\n591,361,7.0\n591,362,6.5\n591,363,6.0\n591,364,5.5\n591,365,5.0\n591,366,4.5\n591,367,5.0\n591,368,5.5\n591,369,6.0\n591,370,6.5\n591,371,7.0\n591,372,7.5\n591,373,8.0\n591,374,8.5\n591,375,12.0\n591,376,11.5\n591,377,11.0\n591,378,10.5\n591,379,10.0\n591,380,9.5\n591,381,9.0\n591,382,8.5\n591,383,8.0\n591,384,7.5\n591,385,7.0\n591,386,6.5\n591,387,6.0\n591,388,5.5\n591,389,5.0\n591,390,4.5\n591,391,4.0\n591,392,4.5\n591,393,5.0\n591,394,5.5\n591,395,6.0\n591,396,6.5\n591,397,7.0\n591,398,7.5\n591,399,8.0\n591,400,11.5\n591,401,11.0\n591,402,10.5\n591,403,10.0\n591,404,9.5\n591,405,9.0\n591,406,8.5\n591,407,8.0\n591,408,7.5\n591,409,7.0\n591,410,6.5\n591,411,6.0\n591,412,5.5\n591,413,5.0\n591,414,4.5\n591,415,4.0\n591,416,3.5\n591,417,4.0\n591,418,4.5\n591,419,5.0\n591,420,5.5\n591,421,6.0\n591,422,6.5\n591,423,7.0\n591,424,7.5\n591,425,11.0\n591,426,10.5\n591,427,10.0\n591,428,9.5\n591,429,9.0\n591,430,8.5\n591,431,8.0\n591,432,7.5\n591,433,7.0\n591,434,6.5\n591,435,6.0\n591,436,5.5\n591,437,5.0\n591,438,4.5\n591,439,4.0\n591,440,3.5\n591,441,3.0\n591,442,3.5\n591,443,4.0\n591,444,4.5\n591,445,5.0\n591,446,5.5\n591,447,6.0\n591,448,6.5\n591,449,7.0\n591,450,10.5\n591,451,10.0\n591,452,9.5\n591,453,9.0\n591,454,8.5\n591,455,8.0\n591,456,7.5\n591,457,7.0\n591,458,6.5\n591,459,6.0\n591,460,5.5\n591,461,5.0\n591,462,4.5\n591,463,4.0\n591,464,3.5\n591,465,3.0\n591,466,2.5\n591,467,3.0\n591,468,3.5\n591,469,4.0\n591,470,4.5\n591,471,5.0\n591,472,5.5\n591,473,6.0\n591,474,6.5\n591,475,10.0\n591,476,9.5\n591,477,9.0\n591,478,8.5\n591,479,8.0\n591,480,7.5\n591,481,7.0\n591,482,6.5\n591,483,6.0\n591,484,5.5\n591,485,5.0\n591,486,4.5\n591,487,4.0\n591,488,3.5\n591,489,3.0\n591,490,2.5\n591,491,2.0\n591,492,2.5\n591,493,3.0\n591,494,3.5\n591,495,4.0\n591,496,4.5\n591,497,5.0\n591,498,5.5\n591,499,6.0\n591,500,9.5\n591,501,9.0\n591,502,8.5\n591,503,8.0\n591,504,7.5\n591,505,7.0\n591,506,6.5\n591,507,6.0\n591,508,5.5\n591,509,5.0\n591,510,4.5\n591,511,4.0\n591,512,3.5\n591,513,3.0\n591,514,2.5\n591,515,2.0\n591,516,1.5\n591,517,2.0\n591,518,2.5\n591,519,3.0\n591,520,3.5\n591,521,4.0\n591,522,4.5\n591,523,5.0\n591,524,5.5\n591,525,9.0\n591,526,8.5\n591,527,8.0\n591,528,7.5\n591,529,7.0\n591,530,6.5\n591,531,6.0\n591,532,5.5\n591,533,5.0\n591,534,4.5\n591,535,4.0\n591,536,3.5\n591,537,3.0\n591,538,2.5\n591,539,2.0\n591,540,1.5\n591,541,1.0\n591,542,1.5\n591,543,2.0\n591,544,2.5\n591,545,3.0\n591,546,3.5\n591,547,4.0\n591,548,4.5\n591,549,5.0\n591,550,8.5\n591,551,8.0\n591,552,7.5\n591,553,7.0\n591,554,6.5\n591,555,6.0\n591,556,5.5\n591,557,5.0\n591,558,4.5\n591,559,4.0\n591,560,3.5\n591,561,3.0\n591,562,2.5\n591,563,2.0\n591,564,1.5\n591,565,1.0\n591,566,0.5\n591,567,1.0\n591,568,1.5\n591,569,2.0\n591,570,2.5\n591,571,3.0\n591,572,3.5\n591,573,4.0\n591,574,4.5\n591,575,8.0\n591,576,7.5\n591,577,7.0\n591,578,6.5\n591,579,6.0\n591,580,5.5\n591,581,5.0\n591,582,4.5\n591,583,4.0\n591,584,3.5\n591,585,3.0\n591,586,2.5\n591,587,2.0\n591,588,1.5\n591,589,1.0\n591,590,0.5\n591,591,0\n591,592,0.5\n591,593,1.0\n591,594,1.5\n591,595,2.0\n591,596,2.5\n591,597,3.0\n591,598,3.5\n591,599,4.0\n591,600,8.5\n591,601,8.0\n591,602,7.5\n591,603,7.0\n591,604,6.5\n591,605,6.0\n591,606,5.5\n591,607,5.0\n591,608,4.5\n591,609,4.0\n591,610,3.5\n591,611,3.0\n591,612,2.5\n591,613,2.0\n591,614,1.5\n591,615,1.0\n591,616,0.5\n591,617,1.0\n591,618,1.5\n591,619,2.0\n591,620,2.5\n591,621,3.0\n591,622,3.5\n591,623,4.0\n591,624,4.5\n592,0,20.0\n592,1,19.5\n592,2,19.0\n592,3,18.5\n592,4,18.0\n592,5,17.5\n592,6,17.0\n592,7,16.5\n592,8,16.0\n592,9,15.5\n592,10,15.0\n592,11,14.5\n592,12,14.0\n592,13,13.5\n592,14,13.0\n592,15,12.5\n592,16,12.0\n592,17,11.5\n592,18,12.0\n592,19,12.5\n592,20,13.0\n592,21,13.5\n592,22,14.0\n592,23,14.5\n592,24,15.0\n592,25,19.5\n592,26,19.0\n592,27,18.5\n592,28,18.0\n592,29,17.5\n592,30,17.0\n592,31,16.5\n592,32,16.0\n592,33,15.5\n592,34,15.0\n592,35,14.5\n592,36,14.0\n592,37,13.5\n592,38,13.0\n592,39,12.5\n592,40,12.0\n592,41,11.5\n592,42,11.0\n592,43,11.5\n592,44,12.0\n592,45,12.5\n592,46,13.0\n592,47,13.5\n592,48,14.0\n592,49,14.5\n592,50,19.0\n592,51,18.5\n592,52,18.0\n592,53,17.5\n592,54,17.0\n592,55,16.5\n592,56,16.0\n592,57,15.5\n592,58,15.0\n592,59,14.5\n592,60,14.0\n592,61,13.5\n592,62,13.0\n592,63,12.5\n592,64,12.0\n592,65,11.5\n592,66,11.0\n592,67,10.5\n592,68,11.0\n592,69,11.5\n592,70,12.0\n592,71,12.5\n592,72,13.0\n592,73,13.5\n592,74,14.0\n592,75,18.5\n592,76,18.0\n592,77,17.5\n592,78,17.0\n592,79,16.5\n592,80,16.0\n592,81,15.5\n592,82,15.0\n592,83,14.5\n592,84,14.0\n592,85,13.5\n592,86,13.0\n592,87,12.5\n592,88,12.0\n592,89,11.5\n592,90,11.0\n592,91,10.5\n592,92,10.0\n592,93,10.5\n592,94,11.0\n592,95,11.5\n592,96,12.0\n592,97,12.5\n592,98,13.0\n592,99,13.5\n592,100,18.0\n592,101,17.5\n592,102,17.0\n592,103,16.5\n592,104,16.0\n592,105,15.5\n592,106,15.0\n592,107,14.5\n592,108,14.0\n592,109,13.5\n592,110,13.0\n592,111,12.5\n592,112,12.0\n592,113,11.5\n592,114,11.0\n592,115,10.5\n592,116,10.0\n592,117,9.5\n592,118,10.0\n592,119,10.5\n592,120,11.0\n592,121,11.5\n592,122,12.0\n592,123,12.5\n592,124,13.0\n592,125,17.5\n592,126,17.0\n592,127,16.5\n592,128,16.0\n592,129,15.5\n592,130,15.0\n592,131,14.5\n592,132,14.0\n592,133,13.5\n592,134,13.0\n592,135,12.5\n592,136,12.0\n592,137,11.5\n592,138,11.0\n592,139,10.5\n592,140,10.0\n592,141,9.5\n592,142,9.0\n592,143,9.5\n592,144,10.0\n592,145,10.5\n592,146,11.0\n592,147,11.5\n592,148,12.0\n592,149,12.5\n592,150,17.0\n592,151,16.5\n592,152,16.0\n592,153,15.5\n592,154,15.0\n592,155,14.5\n592,156,14.0\n592,157,13.5\n592,158,13.0\n592,159,12.5\n592,160,12.0\n592,161,11.5\n592,162,11.0\n592,163,10.5\n592,164,10.0\n592,165,9.5\n592,166,9.0\n592,167,8.5\n592,168,9.0\n592,169,9.5\n592,170,10.0\n592,171,10.5\n592,172,11.0\n592,173,11.5\n592,174,12.0\n592,175,16.5\n592,176,16.0\n592,177,15.5\n592,178,15.0\n592,179,14.5\n592,180,14.0\n592,181,13.5\n592,182,13.0\n592,183,12.5\n592,184,12.0\n592,185,11.5\n592,186,11.0\n592,187,10.5\n592,188,10.0\n592,189,9.5\n592,190,9.0\n592,191,8.5\n592,192,8.0\n592,193,8.5\n592,194,9.0\n592,195,9.5\n592,196,10.0\n592,197,10.5\n592,198,11.0\n592,199,11.5\n592,200,16.0\n592,201,15.5\n592,202,15.0\n592,203,14.5\n592,204,14.0\n592,205,13.5\n592,206,13.0\n592,207,12.5\n592,208,12.0\n592,209,11.5\n592,210,11.0\n592,211,10.5\n592,212,10.0\n592,213,9.5\n592,214,9.0\n592,215,8.5\n592,216,8.0\n592,217,7.5\n592,218,8.0\n592,219,8.5\n592,220,9.0\n592,221,9.5\n592,222,10.0\n592,223,10.5\n592,224,11.0\n592,225,15.5\n592,226,15.0\n592,227,14.5\n592,228,14.0\n592,229,13.5\n592,230,13.0\n592,231,12.5\n592,232,12.0\n592,233,11.5\n592,234,11.0\n592,235,10.5\n592,236,10.0\n592,237,9.5\n592,238,9.0\n592,239,8.5\n592,240,8.0\n592,241,7.5\n592,242,7.0\n592,243,7.5\n592,244,8.0\n592,245,8.5\n592,246,9.0\n592,247,9.5\n592,248,10.0\n592,249,10.5\n592,250,15.0\n592,251,14.5\n592,252,14.0\n592,253,13.5\n592,254,13.0\n592,255,12.5\n592,256,12.0\n592,257,11.5\n592,258,11.0\n592,259,10.5\n592,260,10.0\n592,261,9.5\n592,262,9.0\n592,263,8.5\n592,264,8.0\n592,265,7.5\n592,266,7.0\n592,267,6.5\n592,268,7.0\n592,269,7.5\n592,270,8.0\n592,271,8.5\n592,272,9.0\n592,273,9.5\n592,274,10.0\n592,275,14.5\n592,276,14.0\n592,277,13.5\n592,278,13.0\n592,279,12.5\n592,280,12.0\n592,281,11.5\n592,282,11.0\n592,283,10.5\n592,284,10.0\n592,285,9.5\n592,286,9.0\n592,287,8.5\n592,288,8.0\n592,289,7.5\n592,290,7.0\n592,291,6.5\n592,292,6.0\n592,293,6.5\n592,294,7.0\n592,295,7.5\n592,296,8.0\n592,297,8.5\n592,298,9.0\n592,299,9.5\n592,300,14.0\n592,301,13.5\n592,302,13.0\n592,303,12.5\n592,304,12.0\n592,305,11.5\n592,306,11.0\n592,307,10.5\n592,308,10.0\n592,309,9.5\n592,310,9.0\n592,311,8.5\n592,312,8.0\n592,313,7.5\n592,314,7.0\n592,315,6.5\n592,316,6.0\n592,317,5.5\n592,318,6.0\n592,319,6.5\n592,320,7.0\n592,321,7.5\n592,322,8.0\n592,323,8.5\n592,324,9.0\n592,325,13.5\n592,326,13.0\n592,327,12.5\n592,328,12.0\n592,329,11.5\n592,330,11.0\n592,331,10.5\n592,332,10.0\n592,333,9.5\n592,334,9.0\n592,335,8.5\n592,336,8.0\n592,337,7.5\n592,338,7.0\n592,339,6.5\n592,340,6.0\n592,341,5.5\n592,342,5.0\n592,343,5.5\n592,344,6.0\n592,345,6.5\n592,346,7.0\n592,347,7.5\n592,348,8.0\n592,349,8.5\n592,350,13.0\n592,351,12.5\n592,352,12.0\n592,353,11.5\n592,354,11.0\n592,355,10.5\n592,356,10.0\n592,357,9.5\n592,358,9.0\n592,359,8.5\n592,360,8.0\n592,361,7.5\n592,362,7.0\n592,363,6.5\n592,364,6.0\n592,365,5.5\n592,366,5.0\n592,367,4.5\n592,368,5.0\n592,369,5.5\n592,370,6.0\n592,371,6.5\n592,372,7.0\n592,373,7.5\n592,374,8.0\n592,375,12.5\n592,376,12.0\n592,377,11.5\n592,378,11.0\n592,379,10.5\n592,380,10.0\n592,381,9.5\n592,382,9.0\n592,383,8.5\n592,384,8.0\n592,385,7.5\n592,386,7.0\n592,387,6.5\n592,388,6.0\n592,389,5.5\n592,390,5.0\n592,391,4.5\n592,392,4.0\n592,393,4.5\n592,394,5.0\n592,395,5.5\n592,396,6.0\n592,397,6.5\n592,398,7.0\n592,399,7.5\n592,400,12.0\n592,401,11.5\n592,402,11.0\n592,403,10.5\n592,404,10.0\n592,405,9.5\n592,406,9.0\n592,407,8.5\n592,408,8.0\n592,409,7.5\n592,410,7.0\n592,411,6.5\n592,412,6.0\n592,413,5.5\n592,414,5.0\n592,415,4.5\n592,416,4.0\n592,417,3.5\n592,418,4.0\n592,419,4.5\n592,420,5.0\n592,421,5.5\n592,422,6.0\n592,423,6.5\n592,424,7.0\n592,425,11.5\n592,426,11.0\n592,427,10.5\n592,428,10.0\n592,429,9.5\n592,430,9.0\n592,431,8.5\n592,432,8.0\n592,433,7.5\n592,434,7.0\n592,435,6.5\n592,436,6.0\n592,437,5.5\n592,438,5.0\n592,439,4.5\n592,440,4.0\n592,441,3.5\n592,442,3.0\n592,443,3.5\n592,444,4.0\n592,445,4.5\n592,446,5.0\n592,447,5.5\n592,448,6.0\n592,449,6.5\n592,450,11.0\n592,451,10.5\n592,452,10.0\n592,453,9.5\n592,454,9.0\n592,455,8.5\n592,456,8.0\n592,457,7.5\n592,458,7.0\n592,459,6.5\n592,460,6.0\n592,461,5.5\n592,462,5.0\n592,463,4.5\n592,464,4.0\n592,465,3.5\n592,466,3.0\n592,467,2.5\n592,468,3.0\n592,469,3.5\n592,470,4.0\n592,471,4.5\n592,472,5.0\n592,473,5.5\n592,474,6.0\n592,475,10.5\n592,476,10.0\n592,477,9.5\n592,478,9.0\n592,479,8.5\n592,480,8.0\n592,481,7.5\n592,482,7.0\n592,483,6.5\n592,484,6.0\n592,485,5.5\n592,486,5.0\n592,487,4.5\n592,488,4.0\n592,489,3.5\n592,490,3.0\n592,491,2.5\n592,492,2.0\n592,493,2.5\n592,494,3.0\n592,495,3.5\n592,496,4.0\n592,497,4.5\n592,498,5.0\n592,499,5.5\n592,500,10.0\n592,501,9.5\n592,502,9.0\n592,503,8.5\n592,504,8.0\n592,505,7.5\n592,506,7.0\n592,507,6.5\n592,508,6.0\n592,509,5.5\n592,510,5.0\n592,511,4.5\n592,512,4.0\n592,513,3.5\n592,514,3.0\n592,515,2.5\n592,516,2.0\n592,517,1.5\n592,518,2.0\n592,519,2.5\n592,520,3.0\n592,521,3.5\n592,522,4.0\n592,523,4.5\n592,524,5.0\n592,525,9.5\n592,526,9.0\n592,527,8.5\n592,528,8.0\n592,529,7.5\n592,530,7.0\n592,531,6.5\n592,532,6.0\n592,533,5.5\n592,534,5.0\n592,535,4.5\n592,536,4.0\n592,537,3.5\n592,538,3.0\n592,539,2.5\n592,540,2.0\n592,541,1.5\n592,542,1.0\n592,543,1.5\n592,544,2.0\n592,545,2.5\n592,546,3.0\n592,547,3.5\n592,548,4.0\n592,549,4.5\n592,550,9.0\n592,551,8.5\n592,552,8.0\n592,553,7.5\n592,554,7.0\n592,555,6.5\n592,556,6.0\n592,557,5.5\n592,558,5.0\n592,559,4.5\n592,560,4.0\n592,561,3.5\n592,562,3.0\n592,563,2.5\n592,564,2.0\n592,565,1.5\n592,566,1.0\n592,567,0.5\n592,568,1.0\n592,569,1.5\n592,570,2.0\n592,571,2.5\n592,572,3.0\n592,573,3.5\n592,574,4.0\n592,575,8.5\n592,576,8.0\n592,577,7.5\n592,578,7.0\n592,579,6.5\n592,580,6.0\n592,581,5.5\n592,582,5.0\n592,583,4.5\n592,584,4.0\n592,585,3.5\n592,586,3.0\n592,587,2.5\n592,588,2.0\n592,589,1.5\n592,590,1.0\n592,591,0.5\n592,592,0\n592,593,0.5\n592,594,1.0\n592,595,1.5\n592,596,2.0\n592,597,2.5\n592,598,3.0\n592,599,3.5\n592,600,9.0\n592,601,8.5\n592,602,8.0\n592,603,7.5\n592,604,7.0\n592,605,6.5\n592,606,6.0\n592,607,5.5\n592,608,5.0\n592,609,4.5\n592,610,4.0\n592,611,3.5\n592,612,3.0\n592,613,2.5\n592,614,2.0\n592,615,1.5\n592,616,1.0\n592,617,0.5\n592,618,1.0\n592,619,1.5\n592,620,2.0\n592,621,2.5\n592,622,3.0\n592,623,3.5\n592,624,4.0\n593,0,20.5\n593,1,20.0\n593,2,19.5\n593,3,19.0\n593,4,18.5\n593,5,18.0\n593,6,17.5\n593,7,17.0\n593,8,16.5\n593,9,16.0\n593,10,15.5\n593,11,15.0\n593,12,14.5\n593,13,14.0\n593,14,13.5\n593,15,13.0\n593,16,12.5\n593,17,12.0\n593,18,11.5\n593,19,12.0\n593,20,12.5\n593,21,13.0\n593,22,13.5\n593,23,14.0\n593,24,14.5\n593,25,20.0\n593,26,19.5\n593,27,19.0\n593,28,18.5\n593,29,18.0\n593,30,17.5\n593,31,17.0\n593,32,16.5\n593,33,16.0\n593,34,15.5\n593,35,15.0\n593,36,14.5\n593,37,14.0\n593,38,13.5\n593,39,13.0\n593,40,12.5\n593,41,12.0\n593,42,11.5\n593,43,11.0\n593,44,11.5\n593,45,12.0\n593,46,12.5\n593,47,13.0\n593,48,13.5\n593,49,14.0\n593,50,19.5\n593,51,19.0\n593,52,18.5\n593,53,18.0\n593,54,17.5\n593,55,17.0\n593,56,16.5\n593,57,16.0\n593,58,15.5\n593,59,15.0\n593,60,14.5\n593,61,14.0\n593,62,13.5\n593,63,13.0\n593,64,12.5\n593,65,12.0\n593,66,11.5\n593,67,11.0\n593,68,10.5\n593,69,11.0\n593,70,11.5\n593,71,12.0\n593,72,12.5\n593,73,13.0\n593,74,13.5\n593,75,19.0\n593,76,18.5\n593,77,18.0\n593,78,17.5\n593,79,17.0\n593,80,16.5\n593,81,16.0\n593,82,15.5\n593,83,15.0\n593,84,14.5\n593,85,14.0\n593,86,13.5\n593,87,13.0\n593,88,12.5\n593,89,12.0\n593,90,11.5\n593,91,11.0\n593,92,10.5\n593,93,10.0\n593,94,10.5\n593,95,11.0\n593,96,11.5\n593,97,12.0\n593,98,12.5\n593,99,13.0\n593,100,18.5\n593,101,18.0\n593,102,17.5\n593,103,17.0\n593,104,16.5\n593,105,16.0\n593,106,15.5\n593,107,15.0\n593,108,14.5\n593,109,14.0\n593,110,13.5\n593,111,13.0\n593,112,12.5\n593,113,12.0\n593,114,11.5\n593,115,11.0\n593,116,10.5\n593,117,10.0\n593,118,9.5\n593,119,10.0\n593,120,10.5\n593,121,11.0\n593,122,11.5\n593,123,12.0\n593,124,12.5\n593,125,18.0\n593,126,17.5\n593,127,17.0\n593,128,16.5\n593,129,16.0\n593,130,15.5\n593,131,15.0\n593,132,14.5\n593,133,14.0\n593,134,13.5\n593,135,13.0\n593,136,12.5\n593,137,12.0\n593,138,11.5\n593,139,11.0\n593,140,10.5\n593,141,10.0\n593,142,9.5\n593,143,9.0\n593,144,9.5\n593,145,10.0\n593,146,10.5\n593,147,11.0\n593,148,11.5\n593,149,12.0\n593,150,17.5\n593,151,17.0\n593,152,16.5\n593,153,16.0\n593,154,15.5\n593,155,15.0\n593,156,14.5\n593,157,14.0\n593,158,13.5\n593,159,13.0\n593,160,12.5\n593,161,12.0\n593,162,11.5\n593,163,11.0\n593,164,10.5\n593,165,10.0\n593,166,9.5\n593,167,9.0\n593,168,8.5\n593,169,9.0\n593,170,9.5\n593,171,10.0\n593,172,10.5\n593,173,11.0\n593,174,11.5\n593,175,17.0\n593,176,16.5\n593,177,16.0\n593,178,15.5\n593,179,15.0\n593,180,14.5\n593,181,14.0\n593,182,13.5\n593,183,13.0\n593,184,12.5\n593,185,12.0\n593,186,11.5\n593,187,11.0\n593,188,10.5\n593,189,10.0\n593,190,9.5\n593,191,9.0\n593,192,8.5\n593,193,8.0\n593,194,8.5\n593,195,9.0\n593,196,9.5\n593,197,10.0\n593,198,10.5\n593,199,11.0\n593,200,16.5\n593,201,16.0\n593,202,15.5\n593,203,15.0\n593,204,14.5\n593,205,14.0\n593,206,13.5\n593,207,13.0\n593,208,12.5\n593,209,12.0\n593,210,11.5\n593,211,11.0\n593,212,10.5\n593,213,10.0\n593,214,9.5\n593,215,9.0\n593,216,8.5\n593,217,8.0\n593,218,7.5\n593,219,8.0\n593,220,8.5\n593,221,9.0\n593,222,9.5\n593,223,10.0\n593,224,10.5\n593,225,16.0\n593,226,15.5\n593,227,15.0\n593,228,14.5\n593,229,14.0\n593,230,13.5\n593,231,13.0\n593,232,12.5\n593,233,12.0\n593,234,11.5\n593,235,11.0\n593,236,10.5\n593,237,10.0\n593,238,9.5\n593,239,9.0\n593,240,8.5\n593,241,8.0\n593,242,7.5\n593,243,7.0\n593,244,7.5\n593,245,8.0\n593,246,8.5\n593,247,9.0\n593,248,9.5\n593,249,10.0\n593,250,15.5\n593,251,15.0\n593,252,14.5\n593,253,14.0\n593,254,13.5\n593,255,13.0\n593,256,12.5\n593,257,12.0\n593,258,11.5\n593,259,11.0\n593,260,10.5\n593,261,10.0\n593,262,9.5\n593,263,9.0\n593,264,8.5\n593,265,8.0\n593,266,7.5\n593,267,7.0\n593,268,6.5\n593,269,7.0\n593,270,7.5\n593,271,8.0\n593,272,8.5\n593,273,9.0\n593,274,9.5\n593,275,15.0\n593,276,14.5\n593,277,14.0\n593,278,13.5\n593,279,13.0\n593,280,12.5\n593,281,12.0\n593,282,11.5\n593,283,11.0\n593,284,10.5\n593,285,10.0\n593,286,9.5\n593,287,9.0\n593,288,8.5\n593,289,8.0\n593,290,7.5\n593,291,7.0\n593,292,6.5\n593,293,6.0\n593,294,6.5\n593,295,7.0\n593,296,7.5\n593,297,8.0\n593,298,8.5\n593,299,9.0\n593,300,14.5\n593,301,14.0\n593,302,13.5\n593,303,13.0\n593,304,12.5\n593,305,12.0\n593,306,11.5\n593,307,11.0\n593,308,10.5\n593,309,10.0\n593,310,9.5\n593,311,9.0\n593,312,8.5\n593,313,8.0\n593,314,7.5\n593,315,7.0\n593,316,6.5\n593,317,6.0\n593,318,5.5\n593,319,6.0\n593,320,6.5\n593,321,7.0\n593,322,7.5\n593,323,8.0\n593,324,8.5\n593,325,14.0\n593,326,13.5\n593,327,13.0\n593,328,12.5\n593,329,12.0\n593,330,11.5\n593,331,11.0\n593,332,10.5\n593,333,10.0\n593,334,9.5\n593,335,9.0\n593,336,8.5\n593,337,8.0\n593,338,7.5\n593,339,7.0\n593,340,6.5\n593,341,6.0\n593,342,5.5\n593,343,5.0\n593,344,5.5\n593,345,6.0\n593,346,6.5\n593,347,7.0\n593,348,7.5\n593,349,8.0\n593,350,13.5\n593,351,13.0\n593,352,12.5\n593,353,12.0\n593,354,11.5\n593,355,11.0\n593,356,10.5\n593,357,10.0\n593,358,9.5\n593,359,9.0\n593,360,8.5\n593,361,8.0\n593,362,7.5\n593,363,7.0\n593,364,6.5\n593,365,6.0\n593,366,5.5\n593,367,5.0\n593,368,4.5\n593,369,5.0\n593,370,5.5\n593,371,6.0\n593,372,6.5\n593,373,7.0\n593,374,7.5\n593,375,13.0\n593,376,12.5\n593,377,12.0\n593,378,11.5\n593,379,11.0\n593,380,10.5\n593,381,10.0\n593,382,9.5\n593,383,9.0\n593,384,8.5\n593,385,8.0\n593,386,7.5\n593,387,7.0\n593,388,6.5\n593,389,6.0\n593,390,5.5\n593,391,5.0\n593,392,4.5\n593,393,4.0\n593,394,4.5\n593,395,5.0\n593,396,5.5\n593,397,6.0\n593,398,6.5\n593,399,7.0\n593,400,12.5\n593,401,12.0\n593,402,11.5\n593,403,11.0\n593,404,10.5\n593,405,10.0\n593,406,9.5\n593,407,9.0\n593,408,8.5\n593,409,8.0\n593,410,7.5\n593,411,7.0\n593,412,6.5\n593,413,6.0\n593,414,5.5\n593,415,5.0\n593,416,4.5\n593,417,4.0\n593,418,3.5\n593,419,4.0\n593,420,4.5\n593,421,5.0\n593,422,5.5\n593,423,6.0\n593,424,6.5\n593,425,12.0\n593,426,11.5\n593,427,11.0\n593,428,10.5\n593,429,10.0\n593,430,9.5\n593,431,9.0\n593,432,8.5\n593,433,8.0\n593,434,7.5\n593,435,7.0\n593,436,6.5\n593,437,6.0\n593,438,5.5\n593,439,5.0\n593,440,4.5\n593,441,4.0\n593,442,3.5\n593,443,3.0\n593,444,3.5\n593,445,4.0\n593,446,4.5\n593,447,5.0\n593,448,5.5\n593,449,6.0\n593,450,11.5\n593,451,11.0\n593,452,10.5\n593,453,10.0\n593,454,9.5\n593,455,9.0\n593,456,8.5\n593,457,8.0\n593,458,7.5\n593,459,7.0\n593,460,6.5\n593,461,6.0\n593,462,5.5\n593,463,5.0\n593,464,4.5\n593,465,4.0\n593,466,3.5\n593,467,3.0\n593,468,2.5\n593,469,3.0\n593,470,3.5\n593,471,4.0\n593,472,4.5\n593,473,5.0\n593,474,5.5\n593,475,11.0\n593,476,10.5\n593,477,10.0\n593,478,9.5\n593,479,9.0\n593,480,8.5\n593,481,8.0\n593,482,7.5\n593,483,7.0\n593,484,6.5\n593,485,6.0\n593,486,5.5\n593,487,5.0\n593,488,4.5\n593,489,4.0\n593,490,3.5\n593,491,3.0\n593,492,2.5\n593,493,2.0\n593,494,2.5\n593,495,3.0\n593,496,3.5\n593,497,4.0\n593,498,4.5\n593,499,5.0\n593,500,10.5\n593,501,10.0\n593,502,9.5\n593,503,9.0\n593,504,8.5\n593,505,8.0\n593,506,7.5\n593,507,7.0\n593,508,6.5\n593,509,6.0\n593,510,5.5\n593,511,5.0\n593,512,4.5\n593,513,4.0\n593,514,3.5\n593,515,3.0\n593,516,2.5\n593,517,2.0\n593,518,1.5\n593,519,2.0\n593,520,2.5\n593,521,3.0\n593,522,3.5\n593,523,4.0\n593,524,4.5\n593,525,10.0\n593,526,9.5\n593,527,9.0\n593,528,8.5\n593,529,8.0\n593,530,7.5\n593,531,7.0\n593,532,6.5\n593,533,6.0\n593,534,5.5\n593,535,5.0\n593,536,4.5\n593,537,4.0\n593,538,3.5\n593,539,3.0\n593,540,2.5\n593,541,2.0\n593,542,1.5\n593,543,1.0\n593,544,1.5\n593,545,2.0\n593,546,2.5\n593,547,3.0\n593,548,3.5\n593,549,4.0\n593,550,9.5\n593,551,9.0\n593,552,8.5\n593,553,8.0\n593,554,7.5\n593,555,7.0\n593,556,6.5\n593,557,6.0\n593,558,5.5\n593,559,5.0\n593,560,4.5\n593,561,4.0\n593,562,3.5\n593,563,3.0\n593,564,2.5\n593,565,2.0\n593,566,1.5\n593,567,1.0\n593,568,0.5\n593,569,1.0\n593,570,1.5\n593,571,2.0\n593,572,2.5\n593,573,3.0\n593,574,3.5\n593,575,9.0\n593,576,8.5\n593,577,8.0\n593,578,7.5\n593,579,7.0\n593,580,6.5\n593,581,6.0\n593,582,5.5\n593,583,5.0\n593,584,4.5\n593,585,4.0\n593,586,3.5\n593,587,3.0\n593,588,2.5\n593,589,2.0\n593,590,1.5\n593,591,1.0\n593,592,0.5\n593,593,0\n593,594,0.5\n593,595,1.0\n593,596,1.5\n593,597,2.0\n593,598,2.5\n593,599,3.0\n593,600,9.5\n593,601,9.0\n593,602,8.5\n593,603,8.0\n593,604,7.5\n593,605,7.0\n593,606,6.5\n593,607,6.0\n593,608,5.5\n593,609,5.0\n593,610,4.5\n593,611,4.0\n593,612,3.5\n593,613,3.0\n593,614,2.5\n593,615,2.0\n593,616,1.5\n593,617,1.0\n593,618,0.5\n593,619,1.0\n593,620,1.5\n593,621,2.0\n593,622,2.5\n593,623,3.0\n593,624,3.5\n594,0,21.0\n594,1,20.5\n594,2,20.0\n594,3,19.5\n594,4,19.0\n594,5,18.5\n594,6,18.0\n594,7,17.5\n594,8,17.0\n594,9,16.5\n594,10,16.0\n594,11,15.5\n594,12,15.0\n594,13,14.5\n594,14,14.0\n594,15,13.5\n594,16,13.0\n594,17,12.5\n594,18,12.0\n594,19,11.5\n594,20,12.0\n594,21,12.5\n594,22,13.0\n594,23,13.5\n594,24,14.0\n594,25,20.5\n594,26,20.0\n594,27,19.5\n594,28,19.0\n594,29,18.5\n594,30,18.0\n594,31,17.5\n594,32,17.0\n594,33,16.5\n594,34,16.0\n594,35,15.5\n594,36,15.0\n594,37,14.5\n594,38,14.0\n594,39,13.5\n594,40,13.0\n594,41,12.5\n594,42,12.0\n594,43,11.5\n594,44,11.0\n594,45,11.5\n594,46,12.0\n594,47,12.5\n594,48,13.0\n594,49,13.5\n594,50,20.0\n594,51,19.5\n594,52,19.0\n594,53,18.5\n594,54,18.0\n594,55,17.5\n594,56,17.0\n594,57,16.5\n594,58,16.0\n594,59,15.5\n594,60,15.0\n594,61,14.5\n594,62,14.0\n594,63,13.5\n594,64,13.0\n594,65,12.5\n594,66,12.0\n594,67,11.5\n594,68,11.0\n594,69,10.5\n594,70,11.0\n594,71,11.5\n594,72,12.0\n594,73,12.5\n594,74,13.0\n594,75,19.5\n594,76,19.0\n594,77,18.5\n594,78,18.0\n594,79,17.5\n594,80,17.0\n594,81,16.5\n594,82,16.0\n594,83,15.5\n594,84,15.0\n594,85,14.5\n594,86,14.0\n594,87,13.5\n594,88,13.0\n594,89,12.5\n594,90,12.0\n594,91,11.5\n594,92,11.0\n594,93,10.5\n594,94,10.0\n594,95,10.5\n594,96,11.0\n594,97,11.5\n594,98,12.0\n594,99,12.5\n594,100,19.0\n594,101,18.5\n594,102,18.0\n594,103,17.5\n594,104,17.0\n594,105,16.5\n594,106,16.0\n594,107,15.5\n594,108,15.0\n594,109,14.5\n594,110,14.0\n594,111,13.5\n594,112,13.0\n594,113,12.5\n594,114,12.0\n594,115,11.5\n594,116,11.0\n594,117,10.5\n594,118,10.0\n594,119,9.5\n594,120,10.0\n594,121,10.5\n594,122,11.0\n594,123,11.5\n594,124,12.0\n594,125,18.5\n594,126,18.0\n594,127,17.5\n594,128,17.0\n594,129,16.5\n594,130,16.0\n594,131,15.5\n594,132,15.0\n594,133,14.5\n594,134,14.0\n594,135,13.5\n594,136,13.0\n594,137,12.5\n594,138,12.0\n594,139,11.5\n594,140,11.0\n594,141,10.5\n594,142,10.0\n594,143,9.5\n594,144,9.0\n594,145,9.5\n594,146,10.0\n594,147,10.5\n594,148,11.0\n594,149,11.5\n594,150,18.0\n594,151,17.5\n594,152,17.0\n594,153,16.5\n594,154,16.0\n594,155,15.5\n594,156,15.0\n594,157,14.5\n594,158,14.0\n594,159,13.5\n594,160,13.0\n594,161,12.5\n594,162,12.0\n594,163,11.5\n594,164,11.0\n594,165,10.5\n594,166,10.0\n594,167,9.5\n594,168,9.0\n594,169,8.5\n594,170,9.0\n594,171,9.5\n594,172,10.0\n594,173,10.5\n594,174,11.0\n594,175,17.5\n594,176,17.0\n594,177,16.5\n594,178,16.0\n594,179,15.5\n594,180,15.0\n594,181,14.5\n594,182,14.0\n594,183,13.5\n594,184,13.0\n594,185,12.5\n594,186,12.0\n594,187,11.5\n594,188,11.0\n594,189,10.5\n594,190,10.0\n594,191,9.5\n594,192,9.0\n594,193,8.5\n594,194,8.0\n594,195,8.5\n594,196,9.0\n594,197,9.5\n594,198,10.0\n594,199,10.5\n594,200,17.0\n594,201,16.5\n594,202,16.0\n594,203,15.5\n594,204,15.0\n594,205,14.5\n594,206,14.0\n594,207,13.5\n594,208,13.0\n594,209,12.5\n594,210,12.0\n594,211,11.5\n594,212,11.0\n594,213,10.5\n594,214,10.0\n594,215,9.5\n594,216,9.0\n594,217,8.5\n594,218,8.0\n594,219,7.5\n594,220,8.0\n594,221,8.5\n594,222,9.0\n594,223,9.5\n594,224,10.0\n594,225,16.5\n594,226,16.0\n594,227,15.5\n594,228,15.0\n594,229,14.5\n594,230,14.0\n594,231,13.5\n594,232,13.0\n594,233,12.5\n594,234,12.0\n594,235,11.5\n594,236,11.0\n594,237,10.5\n594,238,10.0\n594,239,9.5\n594,240,9.0\n594,241,8.5\n594,242,8.0\n594,243,7.5\n594,244,7.0\n594,245,7.5\n594,246,8.0\n594,247,8.5\n594,248,9.0\n594,249,9.5\n594,250,16.0\n594,251,15.5\n594,252,15.0\n594,253,14.5\n594,254,14.0\n594,255,13.5\n594,256,13.0\n594,257,12.5\n594,258,12.0\n594,259,11.5\n594,260,11.0\n594,261,10.5\n594,262,10.0\n594,263,9.5\n594,264,9.0\n594,265,8.5\n594,266,8.0\n594,267,7.5\n594,268,7.0\n594,269,6.5\n594,270,7.0\n594,271,7.5\n594,272,8.0\n594,273,8.5\n594,274,9.0\n594,275,15.5\n594,276,15.0\n594,277,14.5\n594,278,14.0\n594,279,13.5\n594,280,13.0\n594,281,12.5\n594,282,12.0\n594,283,11.5\n594,284,11.0\n594,285,10.5\n594,286,10.0\n594,287,9.5\n594,288,9.0\n594,289,8.5\n594,290,8.0\n594,291,7.5\n594,292,7.0\n594,293,6.5\n594,294,6.0\n594,295,6.5\n594,296,7.0\n594,297,7.5\n594,298,8.0\n594,299,8.5\n594,300,15.0\n594,301,14.5\n594,302,14.0\n594,303,13.5\n594,304,13.0\n594,305,12.5\n594,306,12.0\n594,307,11.5\n594,308,11.0\n594,309,10.5\n594,310,10.0\n594,311,9.5\n594,312,9.0\n594,313,8.5\n594,314,8.0\n594,315,7.5\n594,316,7.0\n594,317,6.5\n594,318,6.0\n594,319,5.5\n594,320,6.0\n594,321,6.5\n594,322,7.0\n594,323,7.5\n594,324,8.0\n594,325,14.5\n594,326,14.0\n594,327,13.5\n594,328,13.0\n594,329,12.5\n594,330,12.0\n594,331,11.5\n594,332,11.0\n594,333,10.5\n594,334,10.0\n594,335,9.5\n594,336,9.0\n594,337,8.5\n594,338,8.0\n594,339,7.5\n594,340,7.0\n594,341,6.5\n594,342,6.0\n594,343,5.5\n594,344,5.0\n594,345,5.5\n594,346,6.0\n594,347,6.5\n594,348,7.0\n594,349,7.5\n594,350,14.0\n594,351,13.5\n594,352,13.0\n594,353,12.5\n594,354,12.0\n594,355,11.5\n594,356,11.0\n594,357,10.5\n594,358,10.0\n594,359,9.5\n594,360,9.0\n594,361,8.5\n594,362,8.0\n594,363,7.5\n594,364,7.0\n594,365,6.5\n594,366,6.0\n594,367,5.5\n594,368,5.0\n594,369,4.5\n594,370,5.0\n594,371,5.5\n594,372,6.0\n594,373,6.5\n594,374,7.0\n594,375,13.5\n594,376,13.0\n594,377,12.5\n594,378,12.0\n594,379,11.5\n594,380,11.0\n594,381,10.5\n594,382,10.0\n594,383,9.5\n594,384,9.0\n594,385,8.5\n594,386,8.0\n594,387,7.5\n594,388,7.0\n594,389,6.5\n594,390,6.0\n594,391,5.5\n594,392,5.0\n594,393,4.5\n594,394,4.0\n594,395,4.5\n594,396,5.0\n594,397,5.5\n594,398,6.0\n594,399,6.5\n594,400,13.0\n594,401,12.5\n594,402,12.0\n594,403,11.5\n594,404,11.0\n594,405,10.5\n594,406,10.0\n594,407,9.5\n594,408,9.0\n594,409,8.5\n594,410,8.0\n594,411,7.5\n594,412,7.0\n594,413,6.5\n594,414,6.0\n594,415,5.5\n594,416,5.0\n594,417,4.5\n594,418,4.0\n594,419,3.5\n594,420,4.0\n594,421,4.5\n594,422,5.0\n594,423,5.5\n594,424,6.0\n594,425,12.5\n594,426,12.0\n594,427,11.5\n594,428,11.0\n594,429,10.5\n594,430,10.0\n594,431,9.5\n594,432,9.0\n594,433,8.5\n594,434,8.0\n594,435,7.5\n594,436,7.0\n594,437,6.5\n594,438,6.0\n594,439,5.5\n594,440,5.0\n594,441,4.5\n594,442,4.0\n594,443,3.5\n594,444,3.0\n594,445,3.5\n594,446,4.0\n594,447,4.5\n594,448,5.0\n594,449,5.5\n594,450,12.0\n594,451,11.5\n594,452,11.0\n594,453,10.5\n594,454,10.0\n594,455,9.5\n594,456,9.0\n594,457,8.5\n594,458,8.0\n594,459,7.5\n594,460,7.0\n594,461,6.5\n594,462,6.0\n594,463,5.5\n594,464,5.0\n594,465,4.5\n594,466,4.0\n594,467,3.5\n594,468,3.0\n594,469,2.5\n594,470,3.0\n594,471,3.5\n594,472,4.0\n594,473,4.5\n594,474,5.0\n594,475,11.5\n594,476,11.0\n594,477,10.5\n594,478,10.0\n594,479,9.5\n594,480,9.0\n594,481,8.5\n594,482,8.0\n594,483,7.5\n594,484,7.0\n594,485,6.5\n594,486,6.0\n594,487,5.5\n594,488,5.0\n594,489,4.5\n594,490,4.0\n594,491,3.5\n594,492,3.0\n594,493,2.5\n594,494,2.0\n594,495,2.5\n594,496,3.0\n594,497,3.5\n594,498,4.0\n594,499,4.5\n594,500,11.0\n594,501,10.5\n594,502,10.0\n594,503,9.5\n594,504,9.0\n594,505,8.5\n594,506,8.0\n594,507,7.5\n594,508,7.0\n594,509,6.5\n594,510,6.0\n594,511,5.5\n594,512,5.0\n594,513,4.5\n594,514,4.0\n594,515,3.5\n594,516,3.0\n594,517,2.5\n594,518,2.0\n594,519,1.5\n594,520,2.0\n594,521,2.5\n594,522,3.0\n594,523,3.5\n594,524,4.0\n594,525,10.5\n594,526,10.0\n594,527,9.5\n594,528,9.0\n594,529,8.5\n594,530,8.0\n594,531,7.5\n594,532,7.0\n594,533,6.5\n594,534,6.0\n594,535,5.5\n594,536,5.0\n594,537,4.5\n594,538,4.0\n594,539,3.5\n594,540,3.0\n594,541,2.5\n594,542,2.0\n594,543,1.5\n594,544,1.0\n594,545,1.5\n594,546,2.0\n594,547,2.5\n594,548,3.0\n594,549,3.5\n594,550,10.0\n594,551,9.5\n594,552,9.0\n594,553,8.5\n594,554,8.0\n594,555,7.5\n594,556,7.0\n594,557,6.5\n594,558,6.0\n594,559,5.5\n594,560,5.0\n594,561,4.5\n594,562,4.0\n594,563,3.5\n594,564,3.0\n594,565,2.5\n594,566,2.0\n594,567,1.5\n594,568,1.0\n594,569,0.5\n594,570,1.0\n594,571,1.5\n594,572,2.0\n594,573,2.5\n594,574,3.0\n594,575,9.5\n594,576,9.0\n594,577,8.5\n594,578,8.0\n594,579,7.5\n594,580,7.0\n594,581,6.5\n594,582,6.0\n594,583,5.5\n594,584,5.0\n594,585,4.5\n594,586,4.0\n594,587,3.5\n594,588,3.0\n594,589,2.5\n594,590,2.0\n594,591,1.5\n594,592,1.0\n594,593,0.5\n594,594,0\n594,595,0.5\n594,596,1.0\n594,597,1.5\n594,598,2.0\n594,599,2.5\n594,600,10.0\n594,601,9.5\n594,602,9.0\n594,603,8.5\n594,604,8.0\n594,605,7.5\n594,606,7.0\n594,607,6.5\n594,608,6.0\n594,609,5.5\n594,610,5.0\n594,611,4.5\n594,612,4.0\n594,613,3.5\n594,614,3.0\n594,615,2.5\n594,616,2.0\n594,617,1.5\n594,618,1.0\n594,619,0.5\n594,620,1.0\n594,621,1.5\n594,622,2.0\n594,623,2.5\n594,624,3.0\n595,0,21.5\n595,1,21.0\n595,2,20.5\n595,3,20.0\n595,4,19.5\n595,5,19.0\n595,6,18.5\n595,7,18.0\n595,8,17.5\n595,9,17.0\n595,10,16.5\n595,11,16.0\n595,12,15.5\n595,13,15.0\n595,14,14.5\n595,15,14.0\n595,16,13.5\n595,17,13.0\n595,18,12.5\n595,19,12.0\n595,20,11.5\n595,21,12.0\n595,22,12.5\n595,23,13.0\n595,24,13.5\n595,25,21.0\n595,26,20.5\n595,27,20.0\n595,28,19.5\n595,29,19.0\n595,30,18.5\n595,31,18.0\n595,32,17.5\n595,33,17.0\n595,34,16.5\n595,35,16.0\n595,36,15.5\n595,37,15.0\n595,38,14.5\n595,39,14.0\n595,40,13.5\n595,41,13.0\n595,42,12.5\n595,43,12.0\n595,44,11.5\n595,45,11.0\n595,46,11.5\n595,47,12.0\n595,48,12.5\n595,49,13.0\n595,50,20.5\n595,51,20.0\n595,52,19.5\n595,53,19.0\n595,54,18.5\n595,55,18.0\n595,56,17.5\n595,57,17.0\n595,58,16.5\n595,59,16.0\n595,60,15.5\n595,61,15.0\n595,62,14.5\n595,63,14.0\n595,64,13.5\n595,65,13.0\n595,66,12.5\n595,67,12.0\n595,68,11.5\n595,69,11.0\n595,70,10.5\n595,71,11.0\n595,72,11.5\n595,73,12.0\n595,74,12.5\n595,75,20.0\n595,76,19.5\n595,77,19.0\n595,78,18.5\n595,79,18.0\n595,80,17.5\n595,81,17.0\n595,82,16.5\n595,83,16.0\n595,84,15.5\n595,85,15.0\n595,86,14.5\n595,87,14.0\n595,88,13.5\n595,89,13.0\n595,90,12.5\n595,91,12.0\n595,92,11.5\n595,93,11.0\n595,94,10.5\n595,95,10.0\n595,96,10.5\n595,97,11.0\n595,98,11.5\n595,99,12.0\n595,100,19.5\n595,101,19.0\n595,102,18.5\n595,103,18.0\n595,104,17.5\n595,105,17.0\n595,106,16.5\n595,107,16.0\n595,108,15.5\n595,109,15.0\n595,110,14.5\n595,111,14.0\n595,112,13.5\n595,113,13.0\n595,114,12.5\n595,115,12.0\n595,116,11.5\n595,117,11.0\n595,118,10.5\n595,119,10.0\n595,120,9.5\n595,121,10.0\n595,122,10.5\n595,123,11.0\n595,124,11.5\n595,125,19.0\n595,126,18.5\n595,127,18.0\n595,128,17.5\n595,129,17.0\n595,130,16.5\n595,131,16.0\n595,132,15.5\n595,133,15.0\n595,134,14.5\n595,135,14.0\n595,136,13.5\n595,137,13.0\n595,138,12.5\n595,139,12.0\n595,140,11.5\n595,141,11.0\n595,142,10.5\n595,143,10.0\n595,144,9.5\n595,145,9.0\n595,146,9.5\n595,147,10.0\n595,148,10.5\n595,149,11.0\n595,150,18.5\n595,151,18.0\n595,152,17.5\n595,153,17.0\n595,154,16.5\n595,155,16.0\n595,156,15.5\n595,157,15.0\n595,158,14.5\n595,159,14.0\n595,160,13.5\n595,161,13.0\n595,162,12.5\n595,163,12.0\n595,164,11.5\n595,165,11.0\n595,166,10.5\n595,167,10.0\n595,168,9.5\n595,169,9.0\n595,170,8.5\n595,171,9.0\n595,172,9.5\n595,173,10.0\n595,174,10.5\n595,175,18.0\n595,176,17.5\n595,177,17.0\n595,178,16.5\n595,179,16.0\n595,180,15.5\n595,181,15.0\n595,182,14.5\n595,183,14.0\n595,184,13.5\n595,185,13.0\n595,186,12.5\n595,187,12.0\n595,188,11.5\n595,189,11.0\n595,190,10.5\n595,191,10.0\n595,192,9.5\n595,193,9.0\n595,194,8.5\n595,195,8.0\n595,196,8.5\n595,197,9.0\n595,198,9.5\n595,199,10.0\n595,200,17.5\n595,201,17.0\n595,202,16.5\n595,203,16.0\n595,204,15.5\n595,205,15.0\n595,206,14.5\n595,207,14.0\n595,208,13.5\n595,209,13.0\n595,210,12.5\n595,211,12.0\n595,212,11.5\n595,213,11.0\n595,214,10.5\n595,215,10.0\n595,216,9.5\n595,217,9.0\n595,218,8.5\n595,219,8.0\n595,220,7.5\n595,221,8.0\n595,222,8.5\n595,223,9.0\n595,224,9.5\n595,225,17.0\n595,226,16.5\n595,227,16.0\n595,228,15.5\n595,229,15.0\n595,230,14.5\n595,231,14.0\n595,232,13.5\n595,233,13.0\n595,234,12.5\n595,235,12.0\n595,236,11.5\n595,237,11.0\n595,238,10.5\n595,239,10.0\n595,240,9.5\n595,241,9.0\n595,242,8.5\n595,243,8.0\n595,244,7.5\n595,245,7.0\n595,246,7.5\n595,247,8.0\n595,248,8.5\n595,249,9.0\n595,250,16.5\n595,251,16.0\n595,252,15.5\n595,253,15.0\n595,254,14.5\n595,255,14.0\n595,256,13.5\n595,257,13.0\n595,258,12.5\n595,259,12.0\n595,260,11.5\n595,261,11.0\n595,262,10.5\n595,263,10.0\n595,264,9.5\n595,265,9.0\n595,266,8.5\n595,267,8.0\n595,268,7.5\n595,269,7.0\n595,270,6.5\n595,271,7.0\n595,272,7.5\n595,273,8.0\n595,274,8.5\n595,275,16.0\n595,276,15.5\n595,277,15.0\n595,278,14.5\n595,279,14.0\n595,280,13.5\n595,281,13.0\n595,282,12.5\n595,283,12.0\n595,284,11.5\n595,285,11.0\n595,286,10.5\n595,287,10.0\n595,288,9.5\n595,289,9.0\n595,290,8.5\n595,291,8.0\n595,292,7.5\n595,293,7.0\n595,294,6.5\n595,295,6.0\n595,296,6.5\n595,297,7.0\n595,298,7.5\n595,299,8.0\n595,300,15.5\n595,301,15.0\n595,302,14.5\n595,303,14.0\n595,304,13.5\n595,305,13.0\n595,306,12.5\n595,307,12.0\n595,308,11.5\n595,309,11.0\n595,310,10.5\n595,311,10.0\n595,312,9.5\n595,313,9.0\n595,314,8.5\n595,315,8.0\n595,316,7.5\n595,317,7.0\n595,318,6.5\n595,319,6.0\n595,320,5.5\n595,321,6.0\n595,322,6.5\n595,323,7.0\n595,324,7.5\n595,325,15.0\n595,326,14.5\n595,327,14.0\n595,328,13.5\n595,329,13.0\n595,330,12.5\n595,331,12.0\n595,332,11.5\n595,333,11.0\n595,334,10.5\n595,335,10.0\n595,336,9.5\n595,337,9.0\n595,338,8.5\n595,339,8.0\n595,340,7.5\n595,341,7.0\n595,342,6.5\n595,343,6.0\n595,344,5.5\n595,345,5.0\n595,346,5.5\n595,347,6.0\n595,348,6.5\n595,349,7.0\n595,350,14.5\n595,351,14.0\n595,352,13.5\n595,353,13.0\n595,354,12.5\n595,355,12.0\n595,356,11.5\n595,357,11.0\n595,358,10.5\n595,359,10.0\n595,360,9.5\n595,361,9.0\n595,362,8.5\n595,363,8.0\n595,364,7.5\n595,365,7.0\n595,366,6.5\n595,367,6.0\n595,368,5.5\n595,369,5.0\n595,370,4.5\n595,371,5.0\n595,372,5.5\n595,373,6.0\n595,374,6.5\n595,375,14.0\n595,376,13.5\n595,377,13.0\n595,378,12.5\n595,379,12.0\n595,380,11.5\n595,381,11.0\n595,382,10.5\n595,383,10.0\n595,384,9.5\n595,385,9.0\n595,386,8.5\n595,387,8.0\n595,388,7.5\n595,389,7.0\n595,390,6.5\n595,391,6.0\n595,392,5.5\n595,393,5.0\n595,394,4.5\n595,395,4.0\n595,396,4.5\n595,397,5.0\n595,398,5.5\n595,399,6.0\n595,400,13.5\n595,401,13.0\n595,402,12.5\n595,403,12.0\n595,404,11.5\n595,405,11.0\n595,406,10.5\n595,407,10.0\n595,408,9.5\n595,409,9.0\n595,410,8.5\n595,411,8.0\n595,412,7.5\n595,413,7.0\n595,414,6.5\n595,415,6.0\n595,416,5.5\n595,417,5.0\n595,418,4.5\n595,419,4.0\n595,420,3.5\n595,421,4.0\n595,422,4.5\n595,423,5.0\n595,424,5.5\n595,425,13.0\n595,426,12.5\n595,427,12.0\n595,428,11.5\n595,429,11.0\n595,430,10.5\n595,431,10.0\n595,432,9.5\n595,433,9.0\n595,434,8.5\n595,435,8.0\n595,436,7.5\n595,437,7.0\n595,438,6.5\n595,439,6.0\n595,440,5.5\n595,441,5.0\n595,442,4.5\n595,443,4.0\n595,444,3.5\n595,445,3.0\n595,446,3.5\n595,447,4.0\n595,448,4.5\n595,449,5.0\n595,450,12.5\n595,451,12.0\n595,452,11.5\n595,453,11.0\n595,454,10.5\n595,455,10.0\n595,456,9.5\n595,457,9.0\n595,458,8.5\n595,459,8.0\n595,460,7.5\n595,461,7.0\n595,462,6.5\n595,463,6.0\n595,464,5.5\n595,465,5.0\n595,466,4.5\n595,467,4.0\n595,468,3.5\n595,469,3.0\n595,470,2.5\n595,471,3.0\n595,472,3.5\n595,473,4.0\n595,474,4.5\n595,475,12.0\n595,476,11.5\n595,477,11.0\n595,478,10.5\n595,479,10.0\n595,480,9.5\n595,481,9.0\n595,482,8.5\n595,483,8.0\n595,484,7.5\n595,485,7.0\n595,486,6.5\n595,487,6.0\n595,488,5.5\n595,489,5.0\n595,490,4.5\n595,491,4.0\n595,492,3.5\n595,493,3.0\n595,494,2.5\n595,495,2.0\n595,496,2.5\n595,497,3.0\n595,498,3.5\n595,499,4.0\n595,500,11.5\n595,501,11.0\n595,502,10.5\n595,503,10.0\n595,504,9.5\n595,505,9.0\n595,506,8.5\n595,507,8.0\n595,508,7.5\n595,509,7.0\n595,510,6.5\n595,511,6.0\n595,512,5.5\n595,513,5.0\n595,514,4.5\n595,515,4.0\n595,516,3.5\n595,517,3.0\n595,518,2.5\n595,519,2.0\n595,520,1.5\n595,521,2.0\n595,522,2.5\n595,523,3.0\n595,524,3.5\n595,525,11.0\n595,526,10.5\n595,527,10.0\n595,528,9.5\n595,529,9.0\n595,530,8.5\n595,531,8.0\n595,532,7.5\n595,533,7.0\n595,534,6.5\n595,535,6.0\n595,536,5.5\n595,537,5.0\n595,538,4.5\n595,539,4.0\n595,540,3.5\n595,541,3.0\n595,542,2.5\n595,543,2.0\n595,544,1.5\n595,545,1.0\n595,546,1.5\n595,547,2.0\n595,548,2.5\n595,549,3.0\n595,550,10.5\n595,551,10.0\n595,552,9.5\n595,553,9.0\n595,554,8.5\n595,555,8.0\n595,556,7.5\n595,557,7.0\n595,558,6.5\n595,559,6.0\n595,560,5.5\n595,561,5.0\n595,562,4.5\n595,563,4.0\n595,564,3.5\n595,565,3.0\n595,566,2.5\n595,567,2.0\n595,568,1.5\n595,569,1.0\n595,570,0.5\n595,571,1.0\n595,572,1.5\n595,573,2.0\n595,574,2.5\n595,575,10.0\n595,576,9.5\n595,577,9.0\n595,578,8.5\n595,579,8.0\n595,580,7.5\n595,581,7.0\n595,582,6.5\n595,583,6.0\n595,584,5.5\n595,585,5.0\n595,586,4.5\n595,587,4.0\n595,588,3.5\n595,589,3.0\n595,590,2.5\n595,591,2.0\n595,592,1.5\n595,593,1.0\n595,594,0.5\n595,595,0\n595,596,0.5\n595,597,1.0\n595,598,1.5\n595,599,2.0\n595,600,10.5\n595,601,10.0\n595,602,9.5\n595,603,9.0\n595,604,8.5\n595,605,8.0\n595,606,7.5\n595,607,7.0\n595,608,6.5\n595,609,6.0\n595,610,5.5\n595,611,5.0\n595,612,4.5\n595,613,4.0\n595,614,3.5\n595,615,3.0\n595,616,2.5\n595,617,2.0\n595,618,1.5\n595,619,1.0\n595,620,0.5\n595,621,1.0\n595,622,1.5\n595,623,2.0\n595,624,2.5\n596,0,22.0\n596,1,21.5\n596,2,21.0\n596,3,20.5\n596,4,20.0\n596,5,19.5\n596,6,19.0\n596,7,18.5\n596,8,18.0\n596,9,17.5\n596,10,17.0\n596,11,16.5\n596,12,16.0\n596,13,15.5\n596,14,15.0\n596,15,14.5\n596,16,14.0\n596,17,13.5\n596,18,13.0\n596,19,12.5\n596,20,12.0\n596,21,11.5\n596,22,12.0\n596,23,12.5\n596,24,13.0\n596,25,21.5\n596,26,21.0\n596,27,20.5\n596,28,20.0\n596,29,19.5\n596,30,19.0\n596,31,18.5\n596,32,18.0\n596,33,17.5\n596,34,17.0\n596,35,16.5\n596,36,16.0\n596,37,15.5\n596,38,15.0\n596,39,14.5\n596,40,14.0\n596,41,13.5\n596,42,13.0\n596,43,12.5\n596,44,12.0\n596,45,11.5\n596,46,11.0\n596,47,11.5\n596,48,12.0\n596,49,12.5\n596,50,21.0\n596,51,20.5\n596,52,20.0\n596,53,19.5\n596,54,19.0\n596,55,18.5\n596,56,18.0\n596,57,17.5\n596,58,17.0\n596,59,16.5\n596,60,16.0\n596,61,15.5\n596,62,15.0\n596,63,14.5\n596,64,14.0\n596,65,13.5\n596,66,13.0\n596,67,12.5\n596,68,12.0\n596,69,11.5\n596,70,11.0\n596,71,10.5\n596,72,11.0\n596,73,11.5\n596,74,12.0\n596,75,20.5\n596,76,20.0\n596,77,19.5\n596,78,19.0\n596,79,18.5\n596,80,18.0\n596,81,17.5\n596,82,17.0\n596,83,16.5\n596,84,16.0\n596,85,15.5\n596,86,15.0\n596,87,14.5\n596,88,14.0\n596,89,13.5\n596,90,13.0\n596,91,12.5\n596,92,12.0\n596,93,11.5\n596,94,11.0\n596,95,10.5\n596,96,10.0\n596,97,10.5\n596,98,11.0\n596,99,11.5\n596,100,20.0\n596,101,19.5\n596,102,19.0\n596,103,18.5\n596,104,18.0\n596,105,17.5\n596,106,17.0\n596,107,16.5\n596,108,16.0\n596,109,15.5\n596,110,15.0\n596,111,14.5\n596,112,14.0\n596,113,13.5\n596,114,13.0\n596,115,12.5\n596,116,12.0\n596,117,11.5\n596,118,11.0\n596,119,10.5\n596,120,10.0\n596,121,9.5\n596,122,10.0\n596,123,10.5\n596,124,11.0\n596,125,19.5\n596,126,19.0\n596,127,18.5\n596,128,18.0\n596,129,17.5\n596,130,17.0\n596,131,16.5\n596,132,16.0\n596,133,15.5\n596,134,15.0\n596,135,14.5\n596,136,14.0\n596,137,13.5\n596,138,13.0\n596,139,12.5\n596,140,12.0\n596,141,11.5\n596,142,11.0\n596,143,10.5\n596,144,10.0\n596,145,9.5\n596,146,9.0\n596,147,9.5\n596,148,10.0\n596,149,10.5\n596,150,19.0\n596,151,18.5\n596,152,18.0\n596,153,17.5\n596,154,17.0\n596,155,16.5\n596,156,16.0\n596,157,15.5\n596,158,15.0\n596,159,14.5\n596,160,14.0\n596,161,13.5\n596,162,13.0\n596,163,12.5\n596,164,12.0\n596,165,11.5\n596,166,11.0\n596,167,10.5\n596,168,10.0\n596,169,9.5\n596,170,9.0\n596,171,8.5\n596,172,9.0\n596,173,9.5\n596,174,10.0\n596,175,18.5\n596,176,18.0\n596,177,17.5\n596,178,17.0\n596,179,16.5\n596,180,16.0\n596,181,15.5\n596,182,15.0\n596,183,14.5\n596,184,14.0\n596,185,13.5\n596,186,13.0\n596,187,12.5\n596,188,12.0\n596,189,11.5\n596,190,11.0\n596,191,10.5\n596,192,10.0\n596,193,9.5\n596,194,9.0\n596,195,8.5\n596,196,8.0\n596,197,8.5\n596,198,9.0\n596,199,9.5\n596,200,18.0\n596,201,17.5\n596,202,17.0\n596,203,16.5\n596,204,16.0\n596,205,15.5\n596,206,15.0\n596,207,14.5\n596,208,14.0\n596,209,13.5\n596,210,13.0\n596,211,12.5\n596,212,12.0\n596,213,11.5\n596,214,11.0\n596,215,10.5\n596,216,10.0\n596,217,9.5\n596,218,9.0\n596,219,8.5\n596,220,8.0\n596,221,7.5\n596,222,8.0\n596,223,8.5\n596,224,9.0\n596,225,17.5\n596,226,17.0\n596,227,16.5\n596,228,16.0\n596,229,15.5\n596,230,15.0\n596,231,14.5\n596,232,14.0\n596,233,13.5\n596,234,13.0\n596,235,12.5\n596,236,12.0\n596,237,11.5\n596,238,11.0\n596,239,10.5\n596,240,10.0\n596,241,9.5\n596,242,9.0\n596,243,8.5\n596,244,8.0\n596,245,7.5\n596,246,7.0\n596,247,7.5\n596,248,8.0\n596,249,8.5\n596,250,17.0\n596,251,16.5\n596,252,16.0\n596,253,15.5\n596,254,15.0\n596,255,14.5\n596,256,14.0\n596,257,13.5\n596,258,13.0\n596,259,12.5\n596,260,12.0\n596,261,11.5\n596,262,11.0\n596,263,10.5\n596,264,10.0\n596,265,9.5\n596,266,9.0\n596,267,8.5\n596,268,8.0\n596,269,7.5\n596,270,7.0\n596,271,6.5\n596,272,7.0\n596,273,7.5\n596,274,8.0\n596,275,16.5\n596,276,16.0\n596,277,15.5\n596,278,15.0\n596,279,14.5\n596,280,14.0\n596,281,13.5\n596,282,13.0\n596,283,12.5\n596,284,12.0\n596,285,11.5\n596,286,11.0\n596,287,10.5\n596,288,10.0\n596,289,9.5\n596,290,9.0\n596,291,8.5\n596,292,8.0\n596,293,7.5\n596,294,7.0\n596,295,6.5\n596,296,6.0\n596,297,6.5\n596,298,7.0\n596,299,7.5\n596,300,16.0\n596,301,15.5\n596,302,15.0\n596,303,14.5\n596,304,14.0\n596,305,13.5\n596,306,13.0\n596,307,12.5\n596,308,12.0\n596,309,11.5\n596,310,11.0\n596,311,10.5\n596,312,10.0\n596,313,9.5\n596,314,9.0\n596,315,8.5\n596,316,8.0\n596,317,7.5\n596,318,7.0\n596,319,6.5\n596,320,6.0\n596,321,5.5\n596,322,6.0\n596,323,6.5\n596,324,7.0\n596,325,15.5\n596,326,15.0\n596,327,14.5\n596,328,14.0\n596,329,13.5\n596,330,13.0\n596,331,12.5\n596,332,12.0\n596,333,11.5\n596,334,11.0\n596,335,10.5\n596,336,10.0\n596,337,9.5\n596,338,9.0\n596,339,8.5\n596,340,8.0\n596,341,7.5\n596,342,7.0\n596,343,6.5\n596,344,6.0\n596,345,5.5\n596,346,5.0\n596,347,5.5\n596,348,6.0\n596,349,6.5\n596,350,15.0\n596,351,14.5\n596,352,14.0\n596,353,13.5\n596,354,13.0\n596,355,12.5\n596,356,12.0\n596,357,11.5\n596,358,11.0\n596,359,10.5\n596,360,10.0\n596,361,9.5\n596,362,9.0\n596,363,8.5\n596,364,8.0\n596,365,7.5\n596,366,7.0\n596,367,6.5\n596,368,6.0\n596,369,5.5\n596,370,5.0\n596,371,4.5\n596,372,5.0\n596,373,5.5\n596,374,6.0\n596,375,14.5\n596,376,14.0\n596,377,13.5\n596,378,13.0\n596,379,12.5\n596,380,12.0\n596,381,11.5\n596,382,11.0\n596,383,10.5\n596,384,10.0\n596,385,9.5\n596,386,9.0\n596,387,8.5\n596,388,8.0\n596,389,7.5\n596,390,7.0\n596,391,6.5\n596,392,6.0\n596,393,5.5\n596,394,5.0\n596,395,4.5\n596,396,4.0\n596,397,4.5\n596,398,5.0\n596,399,5.5\n596,400,14.0\n596,401,13.5\n596,402,13.0\n596,403,12.5\n596,404,12.0\n596,405,11.5\n596,406,11.0\n596,407,10.5\n596,408,10.0\n596,409,9.5\n596,410,9.0\n596,411,8.5\n596,412,8.0\n596,413,7.5\n596,414,7.0\n596,415,6.5\n596,416,6.0\n596,417,5.5\n596,418,5.0\n596,419,4.5\n596,420,4.0\n596,421,3.5\n596,422,4.0\n596,423,4.5\n596,424,5.0\n596,425,13.5\n596,426,13.0\n596,427,12.5\n596,428,12.0\n596,429,11.5\n596,430,11.0\n596,431,10.5\n596,432,10.0\n596,433,9.5\n596,434,9.0\n596,435,8.5\n596,436,8.0\n596,437,7.5\n596,438,7.0\n596,439,6.5\n596,440,6.0\n596,441,5.5\n596,442,5.0\n596,443,4.5\n596,444,4.0\n596,445,3.5\n596,446,3.0\n596,447,3.5\n596,448,4.0\n596,449,4.5\n596,450,13.0\n596,451,12.5\n596,452,12.0\n596,453,11.5\n596,454,11.0\n596,455,10.5\n596,456,10.0\n596,457,9.5\n596,458,9.0\n596,459,8.5\n596,460,8.0\n596,461,7.5\n596,462,7.0\n596,463,6.5\n596,464,6.0\n596,465,5.5\n596,466,5.0\n596,467,4.5\n596,468,4.0\n596,469,3.5\n596,470,3.0\n596,471,2.5\n596,472,3.0\n596,473,3.5\n596,474,4.0\n596,475,12.5\n596,476,12.0\n596,477,11.5\n596,478,11.0\n596,479,10.5\n596,480,10.0\n596,481,9.5\n596,482,9.0\n596,483,8.5\n596,484,8.0\n596,485,7.5\n596,486,7.0\n596,487,6.5\n596,488,6.0\n596,489,5.5\n596,490,5.0\n596,491,4.5\n596,492,4.0\n596,493,3.5\n596,494,3.0\n596,495,2.5\n596,496,2.0\n596,497,2.5\n596,498,3.0\n596,499,3.5\n596,500,12.0\n596,501,11.5\n596,502,11.0\n596,503,10.5\n596,504,10.0\n596,505,9.5\n596,506,9.0\n596,507,8.5\n596,508,8.0\n596,509,7.5\n596,510,7.0\n596,511,6.5\n596,512,6.0\n596,513,5.5\n596,514,5.0\n596,515,4.5\n596,516,4.0\n596,517,3.5\n596,518,3.0\n596,519,2.5\n596,520,2.0\n596,521,1.5\n596,522,2.0\n596,523,2.5\n596,524,3.0\n596,525,11.5\n596,526,11.0\n596,527,10.5\n596,528,10.0\n596,529,9.5\n596,530,9.0\n596,531,8.5\n596,532,8.0\n596,533,7.5\n596,534,7.0\n596,535,6.5\n596,536,6.0\n596,537,5.5\n596,538,5.0\n596,539,4.5\n596,540,4.0\n596,541,3.5\n596,542,3.0\n596,543,2.5\n596,544,2.0\n596,545,1.5\n596,546,1.0\n596,547,1.5\n596,548,2.0\n596,549,2.5\n596,550,11.0\n596,551,10.5\n596,552,10.0\n596,553,9.5\n596,554,9.0\n596,555,8.5\n596,556,8.0\n596,557,7.5\n596,558,7.0\n596,559,6.5\n596,560,6.0\n596,561,5.5\n596,562,5.0\n596,563,4.5\n596,564,4.0\n596,565,3.5\n596,566,3.0\n596,567,2.5\n596,568,2.0\n596,569,1.5\n596,570,1.0\n596,571,0.5\n596,572,1.0\n596,573,1.5\n596,574,2.0\n596,575,10.5\n596,576,10.0\n596,577,9.5\n596,578,9.0\n596,579,8.5\n596,580,8.0\n596,581,7.5\n596,582,7.0\n596,583,6.5\n596,584,6.0\n596,585,5.5\n596,586,5.0\n596,587,4.5\n596,588,4.0\n596,589,3.5\n596,590,3.0\n596,591,2.5\n596,592,2.0\n596,593,1.5\n596,594,1.0\n596,595,0.5\n596,596,0\n596,597,0.5\n596,598,1.0\n596,599,1.5\n596,600,11.0\n596,601,10.5\n596,602,10.0\n596,603,9.5\n596,604,9.0\n596,605,8.5\n596,606,8.0\n596,607,7.5\n596,608,7.0\n596,609,6.5\n596,610,6.0\n596,611,5.5\n596,612,5.0\n596,613,4.5\n596,614,4.0\n596,615,3.5\n596,616,3.0\n596,617,2.5\n596,618,2.0\n596,619,1.5\n596,620,1.0\n596,621,0.5\n596,622,1.0\n596,623,1.5\n596,624,2.0\n597,0,22.5\n597,1,22.0\n597,2,21.5\n597,3,21.0\n597,4,20.5\n597,5,20.0\n597,6,19.5\n597,7,19.0\n597,8,18.5\n597,9,18.0\n597,10,17.5\n597,11,17.0\n597,12,16.5\n597,13,16.0\n597,14,15.5\n597,15,15.0\n597,16,14.5\n597,17,14.0\n597,18,13.5\n597,19,13.0\n597,20,12.5\n597,21,12.0\n597,22,11.5\n597,23,12.0\n597,24,12.5\n597,25,22.0\n597,26,21.5\n597,27,21.0\n597,28,20.5\n597,29,20.0\n597,30,19.5\n597,31,19.0\n597,32,18.5\n597,33,18.0\n597,34,17.5\n597,35,17.0\n597,36,16.5\n597,37,16.0\n597,38,15.5\n597,39,15.0\n597,40,14.5\n597,41,14.0\n597,42,13.5\n597,43,13.0\n597,44,12.5\n597,45,12.0\n597,46,11.5\n597,47,11.0\n597,48,11.5\n597,49,12.0\n597,50,21.5\n597,51,21.0\n597,52,20.5\n597,53,20.0\n597,54,19.5\n597,55,19.0\n597,56,18.5\n597,57,18.0\n597,58,17.5\n597,59,17.0\n597,60,16.5\n597,61,16.0\n597,62,15.5\n597,63,15.0\n597,64,14.5\n597,65,14.0\n597,66,13.5\n597,67,13.0\n597,68,12.5\n597,69,12.0\n597,70,11.5\n597,71,11.0\n597,72,10.5\n597,73,11.0\n597,74,11.5\n597,75,21.0\n597,76,20.5\n597,77,20.0\n597,78,19.5\n597,79,19.0\n597,80,18.5\n597,81,18.0\n597,82,17.5\n597,83,17.0\n597,84,16.5\n597,85,16.0\n597,86,15.5\n597,87,15.0\n597,88,14.5\n597,89,14.0\n597,90,13.5\n597,91,13.0\n597,92,12.5\n597,93,12.0\n597,94,11.5\n597,95,11.0\n597,96,10.5\n597,97,10.0\n597,98,10.5\n597,99,11.0\n597,100,20.5\n597,101,20.0\n597,102,19.5\n597,103,19.0\n597,104,18.5\n597,105,18.0\n597,106,17.5\n597,107,17.0\n597,108,16.5\n597,109,16.0\n597,110,15.5\n597,111,15.0\n597,112,14.5\n597,113,14.0\n597,114,13.5\n597,115,13.0\n597,116,12.5\n597,117,12.0\n597,118,11.5\n597,119,11.0\n597,120,10.5\n597,121,10.0\n597,122,9.5\n597,123,10.0\n597,124,10.5\n597,125,20.0\n597,126,19.5\n597,127,19.0\n597,128,18.5\n597,129,18.0\n597,130,17.5\n597,131,17.0\n597,132,16.5\n597,133,16.0\n597,134,15.5\n597,135,15.0\n597,136,14.5\n597,137,14.0\n597,138,13.5\n597,139,13.0\n597,140,12.5\n597,141,12.0\n597,142,11.5\n597,143,11.0\n597,144,10.5\n597,145,10.0\n597,146,9.5\n597,147,9.0\n597,148,9.5\n597,149,10.0\n597,150,19.5\n597,151,19.0\n597,152,18.5\n597,153,18.0\n597,154,17.5\n597,155,17.0\n597,156,16.5\n597,157,16.0\n597,158,15.5\n597,159,15.0\n597,160,14.5\n597,161,14.0\n597,162,13.5\n597,163,13.0\n597,164,12.5\n597,165,12.0\n597,166,11.5\n597,167,11.0\n597,168,10.5\n597,169,10.0\n597,170,9.5\n597,171,9.0\n597,172,8.5\n597,173,9.0\n597,174,9.5\n597,175,19.0\n597,176,18.5\n597,177,18.0\n597,178,17.5\n597,179,17.0\n597,180,16.5\n597,181,16.0\n597,182,15.5\n597,183,15.0\n597,184,14.5\n597,185,14.0\n597,186,13.5\n597,187,13.0\n597,188,12.5\n597,189,12.0\n597,190,11.5\n597,191,11.0\n597,192,10.5\n597,193,10.0\n597,194,9.5\n597,195,9.0\n597,196,8.5\n597,197,8.0\n597,198,8.5\n597,199,9.0\n597,200,18.5\n597,201,18.0\n597,202,17.5\n597,203,17.0\n597,204,16.5\n597,205,16.0\n597,206,15.5\n597,207,15.0\n597,208,14.5\n597,209,14.0\n597,210,13.5\n597,211,13.0\n597,212,12.5\n597,213,12.0\n597,214,11.5\n597,215,11.0\n597,216,10.5\n597,217,10.0\n597,218,9.5\n597,219,9.0\n597,220,8.5\n597,221,8.0\n597,222,7.5\n597,223,8.0\n597,224,8.5\n597,225,18.0\n597,226,17.5\n597,227,17.0\n597,228,16.5\n597,229,16.0\n597,230,15.5\n597,231,15.0\n597,232,14.5\n597,233,14.0\n597,234,13.5\n597,235,13.0\n597,236,12.5\n597,237,12.0\n597,238,11.5\n597,239,11.0\n597,240,10.5\n597,241,10.0\n597,242,9.5\n597,243,9.0\n597,244,8.5\n597,245,8.0\n597,246,7.5\n597,247,7.0\n597,248,7.5\n597,249,8.0\n597,250,17.5\n597,251,17.0\n597,252,16.5\n597,253,16.0\n597,254,15.5\n597,255,15.0\n597,256,14.5\n597,257,14.0\n597,258,13.5\n597,259,13.0\n597,260,12.5\n597,261,12.0\n597,262,11.5\n597,263,11.0\n597,264,10.5\n597,265,10.0\n597,266,9.5\n597,267,9.0\n597,268,8.5\n597,269,8.0\n597,270,7.5\n597,271,7.0\n597,272,6.5\n597,273,7.0\n597,274,7.5\n597,275,17.0\n597,276,16.5\n597,277,16.0\n597,278,15.5\n597,279,15.0\n597,280,14.5\n597,281,14.0\n597,282,13.5\n597,283,13.0\n597,284,12.5\n597,285,12.0\n597,286,11.5\n597,287,11.0\n597,288,10.5\n597,289,10.0\n597,290,9.5\n597,291,9.0\n597,292,8.5\n597,293,8.0\n597,294,7.5\n597,295,7.0\n597,296,6.5\n597,297,6.0\n597,298,6.5\n597,299,7.0\n597,300,16.5\n597,301,16.0\n597,302,15.5\n597,303,15.0\n597,304,14.5\n597,305,14.0\n597,306,13.5\n597,307,13.0\n597,308,12.5\n597,309,12.0\n597,310,11.5\n597,311,11.0\n597,312,10.5\n597,313,10.0\n597,314,9.5\n597,315,9.0\n597,316,8.5\n597,317,8.0\n597,318,7.5\n597,319,7.0\n597,320,6.5\n597,321,6.0\n597,322,5.5\n597,323,6.0\n597,324,6.5\n597,325,16.0\n597,326,15.5\n597,327,15.0\n597,328,14.5\n597,329,14.0\n597,330,13.5\n597,331,13.0\n597,332,12.5\n597,333,12.0\n597,334,11.5\n597,335,11.0\n597,336,10.5\n597,337,10.0\n597,338,9.5\n597,339,9.0\n597,340,8.5\n597,341,8.0\n597,342,7.5\n597,343,7.0\n597,344,6.5\n597,345,6.0\n597,346,5.5\n597,347,5.0\n597,348,5.5\n597,349,6.0\n597,350,15.5\n597,351,15.0\n597,352,14.5\n597,353,14.0\n597,354,13.5\n597,355,13.0\n597,356,12.5\n597,357,12.0\n597,358,11.5\n597,359,11.0\n597,360,10.5\n597,361,10.0\n597,362,9.5\n597,363,9.0\n597,364,8.5\n597,365,8.0\n597,366,7.5\n597,367,7.0\n597,368,6.5\n597,369,6.0\n597,370,5.5\n597,371,5.0\n597,372,4.5\n597,373,5.0\n597,374,5.5\n597,375,15.0\n597,376,14.5\n597,377,14.0\n597,378,13.5\n597,379,13.0\n597,380,12.5\n597,381,12.0\n597,382,11.5\n597,383,11.0\n597,384,10.5\n597,385,10.0\n597,386,9.5\n597,387,9.0\n597,388,8.5\n597,389,8.0\n597,390,7.5\n597,391,7.0\n597,392,6.5\n597,393,6.0\n597,394,5.5\n597,395,5.0\n597,396,4.5\n597,397,4.0\n597,398,4.5\n597,399,5.0\n597,400,14.5\n597,401,14.0\n597,402,13.5\n597,403,13.0\n597,404,12.5\n597,405,12.0\n597,406,11.5\n597,407,11.0\n597,408,10.5\n597,409,10.0\n597,410,9.5\n597,411,9.0\n597,412,8.5\n597,413,8.0\n597,414,7.5\n597,415,7.0\n597,416,6.5\n597,417,6.0\n597,418,5.5\n597,419,5.0\n597,420,4.5\n597,421,4.0\n597,422,3.5\n597,423,4.0\n597,424,4.5\n597,425,14.0\n597,426,13.5\n597,427,13.0\n597,428,12.5\n597,429,12.0\n597,430,11.5\n597,431,11.0\n597,432,10.5\n597,433,10.0\n597,434,9.5\n597,435,9.0\n597,436,8.5\n597,437,8.0\n597,438,7.5\n597,439,7.0\n597,440,6.5\n597,441,6.0\n597,442,5.5\n597,443,5.0\n597,444,4.5\n597,445,4.0\n597,446,3.5\n597,447,3.0\n597,448,3.5\n597,449,4.0\n597,450,13.5\n597,451,13.0\n597,452,12.5\n597,453,12.0\n597,454,11.5\n597,455,11.0\n597,456,10.5\n597,457,10.0\n597,458,9.5\n597,459,9.0\n597,460,8.5\n597,461,8.0\n597,462,7.5\n597,463,7.0\n597,464,6.5\n597,465,6.0\n597,466,5.5\n597,467,5.0\n597,468,4.5\n597,469,4.0\n597,470,3.5\n597,471,3.0\n597,472,2.5\n597,473,3.0\n597,474,3.5\n597,475,13.0\n597,476,12.5\n597,477,12.0\n597,478,11.5\n597,479,11.0\n597,480,10.5\n597,481,10.0\n597,482,9.5\n597,483,9.0\n597,484,8.5\n597,485,8.0\n597,486,7.5\n597,487,7.0\n597,488,6.5\n597,489,6.0\n597,490,5.5\n597,491,5.0\n597,492,4.5\n597,493,4.0\n597,494,3.5\n597,495,3.0\n597,496,2.5\n597,497,2.0\n597,498,2.5\n597,499,3.0\n597,500,12.5\n597,501,12.0\n597,502,11.5\n597,503,11.0\n597,504,10.5\n597,505,10.0\n597,506,9.5\n597,507,9.0\n597,508,8.5\n597,509,8.0\n597,510,7.5\n597,511,7.0\n597,512,6.5\n597,513,6.0\n597,514,5.5\n597,515,5.0\n597,516,4.5\n597,517,4.0\n597,518,3.5\n597,519,3.0\n597,520,2.5\n597,521,2.0\n597,522,1.5\n597,523,2.0\n597,524,2.5\n597,525,12.0\n597,526,11.5\n597,527,11.0\n597,528,10.5\n597,529,10.0\n597,530,9.5\n597,531,9.0\n597,532,8.5\n597,533,8.0\n597,534,7.5\n597,535,7.0\n597,536,6.5\n597,537,6.0\n597,538,5.5\n597,539,5.0\n597,540,4.5\n597,541,4.0\n597,542,3.5\n597,543,3.0\n597,544,2.5\n597,545,2.0\n597,546,1.5\n597,547,1.0\n597,548,1.5\n597,549,2.0\n597,550,11.5\n597,551,11.0\n597,552,10.5\n597,553,10.0\n597,554,9.5\n597,555,9.0\n597,556,8.5\n597,557,8.0\n597,558,7.5\n597,559,7.0\n597,560,6.5\n597,561,6.0\n597,562,5.5\n597,563,5.0\n597,564,4.5\n597,565,4.0\n597,566,3.5\n597,567,3.0\n597,568,2.5\n597,569,2.0\n597,570,1.5\n597,571,1.0\n597,572,0.5\n597,573,1.0\n597,574,1.5\n597,575,11.0\n597,576,10.5\n597,577,10.0\n597,578,9.5\n597,579,9.0\n597,580,8.5\n597,581,8.0\n597,582,7.5\n597,583,7.0\n597,584,6.5\n597,585,6.0\n597,586,5.5\n597,587,5.0\n597,588,4.5\n597,589,4.0\n597,590,3.5\n597,591,3.0\n597,592,2.5\n597,593,2.0\n597,594,1.5\n597,595,1.0\n597,596,0.5\n597,597,0\n597,598,0.5\n597,599,1.0\n597,600,11.5\n597,601,11.0\n597,602,10.5\n597,603,10.0\n597,604,9.5\n597,605,9.0\n597,606,8.5\n597,607,8.0\n597,608,7.5\n597,609,7.0\n597,610,6.5\n597,611,6.0\n597,612,5.5\n597,613,5.0\n597,614,4.5\n597,615,4.0\n597,616,3.5\n597,617,3.0\n597,618,2.5\n597,619,2.0\n597,620,1.5\n597,621,1.0\n597,622,0.5\n597,623,1.0\n597,624,1.5\n598,0,23.0\n598,1,22.5\n598,2,22.0\n598,3,21.5\n598,4,21.0\n598,5,20.5\n598,6,20.0\n598,7,19.5\n598,8,19.0\n598,9,18.5\n598,10,18.0\n598,11,17.5\n598,12,17.0\n598,13,16.5\n598,14,16.0\n598,15,15.5\n598,16,15.0\n598,17,14.5\n598,18,14.0\n598,19,13.5\n598,20,13.0\n598,21,12.5\n598,22,12.0\n598,23,11.5\n598,24,12.0\n598,25,22.5\n598,26,22.0\n598,27,21.5\n598,28,21.0\n598,29,20.5\n598,30,20.0\n598,31,19.5\n598,32,19.0\n598,33,18.5\n598,34,18.0\n598,35,17.5\n598,36,17.0\n598,37,16.5\n598,38,16.0\n598,39,15.5\n598,40,15.0\n598,41,14.5\n598,42,14.0\n598,43,13.5\n598,44,13.0\n598,45,12.5\n598,46,12.0\n598,47,11.5\n598,48,11.0\n598,49,11.5\n598,50,22.0\n598,51,21.5\n598,52,21.0\n598,53,20.5\n598,54,20.0\n598,55,19.5\n598,56,19.0\n598,57,18.5\n598,58,18.0\n598,59,17.5\n598,60,17.0\n598,61,16.5\n598,62,16.0\n598,63,15.5\n598,64,15.0\n598,65,14.5\n598,66,14.0\n598,67,13.5\n598,68,13.0\n598,69,12.5\n598,70,12.0\n598,71,11.5\n598,72,11.0\n598,73,10.5\n598,74,11.0\n598,75,21.5\n598,76,21.0\n598,77,20.5\n598,78,20.0\n598,79,19.5\n598,80,19.0\n598,81,18.5\n598,82,18.0\n598,83,17.5\n598,84,17.0\n598,85,16.5\n598,86,16.0\n598,87,15.5\n598,88,15.0\n598,89,14.5\n598,90,14.0\n598,91,13.5\n598,92,13.0\n598,93,12.5\n598,94,12.0\n598,95,11.5\n598,96,11.0\n598,97,10.5\n598,98,10.0\n598,99,10.5\n598,100,21.0\n598,101,20.5\n598,102,20.0\n598,103,19.5\n598,104,19.0\n598,105,18.5\n598,106,18.0\n598,107,17.5\n598,108,17.0\n598,109,16.5\n598,110,16.0\n598,111,15.5\n598,112,15.0\n598,113,14.5\n598,114,14.0\n598,115,13.5\n598,116,13.0\n598,117,12.5\n598,118,12.0\n598,119,11.5\n598,120,11.0\n598,121,10.5\n598,122,10.0\n598,123,9.5\n598,124,10.0\n598,125,20.5\n598,126,20.0\n598,127,19.5\n598,128,19.0\n598,129,18.5\n598,130,18.0\n598,131,17.5\n598,132,17.0\n598,133,16.5\n598,134,16.0\n598,135,15.5\n598,136,15.0\n598,137,14.5\n598,138,14.0\n598,139,13.5\n598,140,13.0\n598,141,12.5\n598,142,12.0\n598,143,11.5\n598,144,11.0\n598,145,10.5\n598,146,10.0\n598,147,9.5\n598,148,9.0\n598,149,9.5\n598,150,20.0\n598,151,19.5\n598,152,19.0\n598,153,18.5\n598,154,18.0\n598,155,17.5\n598,156,17.0\n598,157,16.5\n598,158,16.0\n598,159,15.5\n598,160,15.0\n598,161,14.5\n598,162,14.0\n598,163,13.5\n598,164,13.0\n598,165,12.5\n598,166,12.0\n598,167,11.5\n598,168,11.0\n598,169,10.5\n598,170,10.0\n598,171,9.5\n598,172,9.0\n598,173,8.5\n598,174,9.0\n598,175,19.5\n598,176,19.0\n598,177,18.5\n598,178,18.0\n598,179,17.5\n598,180,17.0\n598,181,16.5\n598,182,16.0\n598,183,15.5\n598,184,15.0\n598,185,14.5\n598,186,14.0\n598,187,13.5\n598,188,13.0\n598,189,12.5\n598,190,12.0\n598,191,11.5\n598,192,11.0\n598,193,10.5\n598,194,10.0\n598,195,9.5\n598,196,9.0\n598,197,8.5\n598,198,8.0\n598,199,8.5\n598,200,19.0\n598,201,18.5\n598,202,18.0\n598,203,17.5\n598,204,17.0\n598,205,16.5\n598,206,16.0\n598,207,15.5\n598,208,15.0\n598,209,14.5\n598,210,14.0\n598,211,13.5\n598,212,13.0\n598,213,12.5\n598,214,12.0\n598,215,11.5\n598,216,11.0\n598,217,10.5\n598,218,10.0\n598,219,9.5\n598,220,9.0\n598,221,8.5\n598,222,8.0\n598,223,7.5\n598,224,8.0\n598,225,18.5\n598,226,18.0\n598,227,17.5\n598,228,17.0\n598,229,16.5\n598,230,16.0\n598,231,15.5\n598,232,15.0\n598,233,14.5\n598,234,14.0\n598,235,13.5\n598,236,13.0\n598,237,12.5\n598,238,12.0\n598,239,11.5\n598,240,11.0\n598,241,10.5\n598,242,10.0\n598,243,9.5\n598,244,9.0\n598,245,8.5\n598,246,8.0\n598,247,7.5\n598,248,7.0\n598,249,7.5\n598,250,18.0\n598,251,17.5\n598,252,17.0\n598,253,16.5\n598,254,16.0\n598,255,15.5\n598,256,15.0\n598,257,14.5\n598,258,14.0\n598,259,13.5\n598,260,13.0\n598,261,12.5\n598,262,12.0\n598,263,11.5\n598,264,11.0\n598,265,10.5\n598,266,10.0\n598,267,9.5\n598,268,9.0\n598,269,8.5\n598,270,8.0\n598,271,7.5\n598,272,7.0\n598,273,6.5\n598,274,7.0\n598,275,17.5\n598,276,17.0\n598,277,16.5\n598,278,16.0\n598,279,15.5\n598,280,15.0\n598,281,14.5\n598,282,14.0\n598,283,13.5\n598,284,13.0\n598,285,12.5\n598,286,12.0\n598,287,11.5\n598,288,11.0\n598,289,10.5\n598,290,10.0\n598,291,9.5\n598,292,9.0\n598,293,8.5\n598,294,8.0\n598,295,7.5\n598,296,7.0\n598,297,6.5\n598,298,6.0\n598,299,6.5\n598,300,17.0\n598,301,16.5\n598,302,16.0\n598,303,15.5\n598,304,15.0\n598,305,14.5\n598,306,14.0\n598,307,13.5\n598,308,13.0\n598,309,12.5\n598,310,12.0\n598,311,11.5\n598,312,11.0\n598,313,10.5\n598,314,10.0\n598,315,9.5\n598,316,9.0\n598,317,8.5\n598,318,8.0\n598,319,7.5\n598,320,7.0\n598,321,6.5\n598,322,6.0\n598,323,5.5\n598,324,6.0\n598,325,16.5\n598,326,16.0\n598,327,15.5\n598,328,15.0\n598,329,14.5\n598,330,14.0\n598,331,13.5\n598,332,13.0\n598,333,12.5\n598,334,12.0\n598,335,11.5\n598,336,11.0\n598,337,10.5\n598,338,10.0\n598,339,9.5\n598,340,9.0\n598,341,8.5\n598,342,8.0\n598,343,7.5\n598,344,7.0\n598,345,6.5\n598,346,6.0\n598,347,5.5\n598,348,5.0\n598,349,5.5\n598,350,16.0\n598,351,15.5\n598,352,15.0\n598,353,14.5\n598,354,14.0\n598,355,13.5\n598,356,13.0\n598,357,12.5\n598,358,12.0\n598,359,11.5\n598,360,11.0\n598,361,10.5\n598,362,10.0\n598,363,9.5\n598,364,9.0\n598,365,8.5\n598,366,8.0\n598,367,7.5\n598,368,7.0\n598,369,6.5\n598,370,6.0\n598,371,5.5\n598,372,5.0\n598,373,4.5\n598,374,5.0\n598,375,15.5\n598,376,15.0\n598,377,14.5\n598,378,14.0\n598,379,13.5\n598,380,13.0\n598,381,12.5\n598,382,12.0\n598,383,11.5\n598,384,11.0\n598,385,10.5\n598,386,10.0\n598,387,9.5\n598,388,9.0\n598,389,8.5\n598,390,8.0\n598,391,7.5\n598,392,7.0\n598,393,6.5\n598,394,6.0\n598,395,5.5\n598,396,5.0\n598,397,4.5\n598,398,4.0\n598,399,4.5\n598,400,15.0\n598,401,14.5\n598,402,14.0\n598,403,13.5\n598,404,13.0\n598,405,12.5\n598,406,12.0\n598,407,11.5\n598,408,11.0\n598,409,10.5\n598,410,10.0\n598,411,9.5\n598,412,9.0\n598,413,8.5\n598,414,8.0\n598,415,7.5\n598,416,7.0\n598,417,6.5\n598,418,6.0\n598,419,5.5\n598,420,5.0\n598,421,4.5\n598,422,4.0\n598,423,3.5\n598,424,4.0\n598,425,14.5\n598,426,14.0\n598,427,13.5\n598,428,13.0\n598,429,12.5\n598,430,12.0\n598,431,11.5\n598,432,11.0\n598,433,10.5\n598,434,10.0\n598,435,9.5\n598,436,9.0\n598,437,8.5\n598,438,8.0\n598,439,7.5\n598,440,7.0\n598,441,6.5\n598,442,6.0\n598,443,5.5\n598,444,5.0\n598,445,4.5\n598,446,4.0\n598,447,3.5\n598,448,3.0\n598,449,3.5\n598,450,14.0\n598,451,13.5\n598,452,13.0\n598,453,12.5\n598,454,12.0\n598,455,11.5\n598,456,11.0\n598,457,10.5\n598,458,10.0\n598,459,9.5\n598,460,9.0\n598,461,8.5\n598,462,8.0\n598,463,7.5\n598,464,7.0\n598,465,6.5\n598,466,6.0\n598,467,5.5\n598,468,5.0\n598,469,4.5\n598,470,4.0\n598,471,3.5\n598,472,3.0\n598,473,2.5\n598,474,3.0\n598,475,13.5\n598,476,13.0\n598,477,12.5\n598,478,12.0\n598,479,11.5\n598,480,11.0\n598,481,10.5\n598,482,10.0\n598,483,9.5\n598,484,9.0\n598,485,8.5\n598,486,8.0\n598,487,7.5\n598,488,7.0\n598,489,6.5\n598,490,6.0\n598,491,5.5\n598,492,5.0\n598,493,4.5\n598,494,4.0\n598,495,3.5\n598,496,3.0\n598,497,2.5\n598,498,2.0\n598,499,2.5\n598,500,13.0\n598,501,12.5\n598,502,12.0\n598,503,11.5\n598,504,11.0\n598,505,10.5\n598,506,10.0\n598,507,9.5\n598,508,9.0\n598,509,8.5\n598,510,8.0\n598,511,7.5\n598,512,7.0\n598,513,6.5\n598,514,6.0\n598,515,5.5\n598,516,5.0\n598,517,4.5\n598,518,4.0\n598,519,3.5\n598,520,3.0\n598,521,2.5\n598,522,2.0\n598,523,1.5\n598,524,2.0\n598,525,12.5\n598,526,12.0\n598,527,11.5\n598,528,11.0\n598,529,10.5\n598,530,10.0\n598,531,9.5\n598,532,9.0\n598,533,8.5\n598,534,8.0\n598,535,7.5\n598,536,7.0\n598,537,6.5\n598,538,6.0\n598,539,5.5\n598,540,5.0\n598,541,4.5\n598,542,4.0\n598,543,3.5\n598,544,3.0\n598,545,2.5\n598,546,2.0\n598,547,1.5\n598,548,1.0\n598,549,1.5\n598,550,12.0\n598,551,11.5\n598,552,11.0\n598,553,10.5\n598,554,10.0\n598,555,9.5\n598,556,9.0\n598,557,8.5\n598,558,8.0\n598,559,7.5\n598,560,7.0\n598,561,6.5\n598,562,6.0\n598,563,5.5\n598,564,5.0\n598,565,4.5\n598,566,4.0\n598,567,3.5\n598,568,3.0\n598,569,2.5\n598,570,2.0\n598,571,1.5\n598,572,1.0\n598,573,0.5\n598,574,1.0\n598,575,11.5\n598,576,11.0\n598,577,10.5\n598,578,10.0\n598,579,9.5\n598,580,9.0\n598,581,8.5\n598,582,8.0\n598,583,7.5\n598,584,7.0\n598,585,6.5\n598,586,6.0\n598,587,5.5\n598,588,5.0\n598,589,4.5\n598,590,4.0\n598,591,3.5\n598,592,3.0\n598,593,2.5\n598,594,2.0\n598,595,1.5\n598,596,1.0\n598,597,0.5\n598,598,0\n598,599,0.5\n598,600,12.0\n598,601,11.5\n598,602,11.0\n598,603,10.5\n598,604,10.0\n598,605,9.5\n598,606,9.0\n598,607,8.5\n598,608,8.0\n598,609,7.5\n598,610,7.0\n598,611,6.5\n598,612,6.0\n598,613,5.5\n598,614,5.0\n598,615,4.5\n598,616,4.0\n598,617,3.5\n598,618,3.0\n598,619,2.5\n598,620,2.0\n598,621,1.5\n598,622,1.0\n598,623,0.5\n598,624,1.0\n599,0,23.5\n599,1,23.0\n599,2,22.5\n599,3,22.0\n599,4,21.5\n599,5,21.0\n599,6,20.5\n599,7,20.0\n599,8,19.5\n599,9,19.0\n599,10,18.5\n599,11,18.0\n599,12,17.5\n599,13,17.0\n599,14,16.5\n599,15,16.0\n599,16,15.5\n599,17,15.0\n599,18,14.5\n599,19,14.0\n599,20,13.5\n599,21,13.0\n599,22,12.5\n599,23,12.0\n599,24,11.5\n599,25,23.0\n599,26,22.5\n599,27,22.0\n599,28,21.5\n599,29,21.0\n599,30,20.5\n599,31,20.0\n599,32,19.5\n599,33,19.0\n599,34,18.5\n599,35,18.0\n599,36,17.5\n599,37,17.0\n599,38,16.5\n599,39,16.0\n599,40,15.5\n599,41,15.0\n599,42,14.5\n599,43,14.0\n599,44,13.5\n599,45,13.0\n599,46,12.5\n599,47,12.0\n599,48,11.5\n599,49,11.0\n599,50,22.5\n599,51,22.0\n599,52,21.5\n599,53,21.0\n599,54,20.5\n599,55,20.0\n599,56,19.5\n599,57,19.0\n599,58,18.5\n599,59,18.0\n599,60,17.5\n599,61,17.0\n599,62,16.5\n599,63,16.0\n599,64,15.5\n599,65,15.0\n599,66,14.5\n599,67,14.0\n599,68,13.5\n599,69,13.0\n599,70,12.5\n599,71,12.0\n599,72,11.5\n599,73,11.0\n599,74,10.5\n599,75,22.0\n599,76,21.5\n599,77,21.0\n599,78,20.5\n599,79,20.0\n599,80,19.5\n599,81,19.0\n599,82,18.5\n599,83,18.0\n599,84,17.5\n599,85,17.0\n599,86,16.5\n599,87,16.0\n599,88,15.5\n599,89,15.0\n599,90,14.5\n599,91,14.0\n599,92,13.5\n599,93,13.0\n599,94,12.5\n599,95,12.0\n599,96,11.5\n599,97,11.0\n599,98,10.5\n599,99,10.0\n599,100,21.5\n599,101,21.0\n599,102,20.5\n599,103,20.0\n599,104,19.5\n599,105,19.0\n599,106,18.5\n599,107,18.0\n599,108,17.5\n599,109,17.0\n599,110,16.5\n599,111,16.0\n599,112,15.5\n599,113,15.0\n599,114,14.5\n599,115,14.0\n599,116,13.5\n599,117,13.0\n599,118,12.5\n599,119,12.0\n599,120,11.5\n599,121,11.0\n599,122,10.5\n599,123,10.0\n599,124,9.5\n599,125,21.0\n599,126,20.5\n599,127,20.0\n599,128,19.5\n599,129,19.0\n599,130,18.5\n599,131,18.0\n599,132,17.5\n599,133,17.0\n599,134,16.5\n599,135,16.0\n599,136,15.5\n599,137,15.0\n599,138,14.5\n599,139,14.0\n599,140,13.5\n599,141,13.0\n599,142,12.5\n599,143,12.0\n599,144,11.5\n599,145,11.0\n599,146,10.5\n599,147,10.0\n599,148,9.5\n599,149,9.0\n599,150,20.5\n599,151,20.0\n599,152,19.5\n599,153,19.0\n599,154,18.5\n599,155,18.0\n599,156,17.5\n599,157,17.0\n599,158,16.5\n599,159,16.0\n599,160,15.5\n599,161,15.0\n599,162,14.5\n599,163,14.0\n599,164,13.5\n599,165,13.0\n599,166,12.5\n599,167,12.0\n599,168,11.5\n599,169,11.0\n599,170,10.5\n599,171,10.0\n599,172,9.5\n599,173,9.0\n599,174,8.5\n599,175,20.0\n599,176,19.5\n599,177,19.0\n599,178,18.5\n599,179,18.0\n599,180,17.5\n599,181,17.0\n599,182,16.5\n599,183,16.0\n599,184,15.5\n599,185,15.0\n599,186,14.5\n599,187,14.0\n599,188,13.5\n599,189,13.0\n599,190,12.5\n599,191,12.0\n599,192,11.5\n599,193,11.0\n599,194,10.5\n599,195,10.0\n599,196,9.5\n599,197,9.0\n599,198,8.5\n599,199,8.0\n599,200,19.5\n599,201,19.0\n599,202,18.5\n599,203,18.0\n599,204,17.5\n599,205,17.0\n599,206,16.5\n599,207,16.0\n599,208,15.5\n599,209,15.0\n599,210,14.5\n599,211,14.0\n599,212,13.5\n599,213,13.0\n599,214,12.5\n599,215,12.0\n599,216,11.5\n599,217,11.0\n599,218,10.5\n599,219,10.0\n599,220,9.5\n599,221,9.0\n599,222,8.5\n599,223,8.0\n599,224,7.5\n599,225,19.0\n599,226,18.5\n599,227,18.0\n599,228,17.5\n599,229,17.0\n599,230,16.5\n599,231,16.0\n599,232,15.5\n599,233,15.0\n599,234,14.5\n599,235,14.0\n599,236,13.5\n599,237,13.0\n599,238,12.5\n599,239,12.0\n599,240,11.5\n599,241,11.0\n599,242,10.5\n599,243,10.0\n599,244,9.5\n599,245,9.0\n599,246,8.5\n599,247,8.0\n599,248,7.5\n599,249,7.0\n599,250,18.5\n599,251,18.0\n599,252,17.5\n599,253,17.0\n599,254,16.5\n599,255,16.0\n599,256,15.5\n599,257,15.0\n599,258,14.5\n599,259,14.0\n599,260,13.5\n599,261,13.0\n599,262,12.5\n599,263,12.0\n599,264,11.5\n599,265,11.0\n599,266,10.5\n599,267,10.0\n599,268,9.5\n599,269,9.0\n599,270,8.5\n599,271,8.0\n599,272,7.5\n599,273,7.0\n599,274,6.5\n599,275,18.0\n599,276,17.5\n599,277,17.0\n599,278,16.5\n599,279,16.0\n599,280,15.5\n599,281,15.0\n599,282,14.5\n599,283,14.0\n599,284,13.5\n599,285,13.0\n599,286,12.5\n599,287,12.0\n599,288,11.5\n599,289,11.0\n599,290,10.5\n599,291,10.0\n599,292,9.5\n599,293,9.0\n599,294,8.5\n599,295,8.0\n599,296,7.5\n599,297,7.0\n599,298,6.5\n599,299,6.0\n599,300,17.5\n599,301,17.0\n599,302,16.5\n599,303,16.0\n599,304,15.5\n599,305,15.0\n599,306,14.5\n599,307,14.0\n599,308,13.5\n599,309,13.0\n599,310,12.5\n599,311,12.0\n599,312,11.5\n599,313,11.0\n599,314,10.5\n599,315,10.0\n599,316,9.5\n599,317,9.0\n599,318,8.5\n599,319,8.0\n599,320,7.5\n599,321,7.0\n599,322,6.5\n599,323,6.0\n599,324,5.5\n599,325,17.0\n599,326,16.5\n599,327,16.0\n599,328,15.5\n599,329,15.0\n599,330,14.5\n599,331,14.0\n599,332,13.5\n599,333,13.0\n599,334,12.5\n599,335,12.0\n599,336,11.5\n599,337,11.0\n599,338,10.5\n599,339,10.0\n599,340,9.5\n599,341,9.0\n599,342,8.5\n599,343,8.0\n599,344,7.5\n599,345,7.0\n599,346,6.5\n599,347,6.0\n599,348,5.5\n599,349,5.0\n599,350,16.5\n599,351,16.0\n599,352,15.5\n599,353,15.0\n599,354,14.5\n599,355,14.0\n599,356,13.5\n599,357,13.0\n599,358,12.5\n599,359,12.0\n599,360,11.5\n599,361,11.0\n599,362,10.5\n599,363,10.0\n599,364,9.5\n599,365,9.0\n599,366,8.5\n599,367,8.0\n599,368,7.5\n599,369,7.0\n599,370,6.5\n599,371,6.0\n599,372,5.5\n599,373,5.0\n599,374,4.5\n599,375,16.0\n599,376,15.5\n599,377,15.0\n599,378,14.5\n599,379,14.0\n599,380,13.5\n599,381,13.0\n599,382,12.5\n599,383,12.0\n599,384,11.5\n599,385,11.0\n599,386,10.5\n599,387,10.0\n599,388,9.5\n599,389,9.0\n599,390,8.5\n599,391,8.0\n599,392,7.5\n599,393,7.0\n599,394,6.5\n599,395,6.0\n599,396,5.5\n599,397,5.0\n599,398,4.5\n599,399,4.0\n599,400,15.5\n599,401,15.0\n599,402,14.5\n599,403,14.0\n599,404,13.5\n599,405,13.0\n599,406,12.5\n599,407,12.0\n599,408,11.5\n599,409,11.0\n599,410,10.5\n599,411,10.0\n599,412,9.5\n599,413,9.0\n599,414,8.5\n599,415,8.0\n599,416,7.5\n599,417,7.0\n599,418,6.5\n599,419,6.0\n599,420,5.5\n599,421,5.0\n599,422,4.5\n599,423,4.0\n599,424,3.5\n599,425,15.0\n599,426,14.5\n599,427,14.0\n599,428,13.5\n599,429,13.0\n599,430,12.5\n599,431,12.0\n599,432,11.5\n599,433,11.0\n599,434,10.5\n599,435,10.0\n599,436,9.5\n599,437,9.0\n599,438,8.5\n599,439,8.0\n599,440,7.5\n599,441,7.0\n599,442,6.5\n599,443,6.0\n599,444,5.5\n599,445,5.0\n599,446,4.5\n599,447,4.0\n599,448,3.5\n599,449,3.0\n599,450,14.5\n599,451,14.0\n599,452,13.5\n599,453,13.0\n599,454,12.5\n599,455,12.0\n599,456,11.5\n599,457,11.0\n599,458,10.5\n599,459,10.0\n599,460,9.5\n599,461,9.0\n599,462,8.5\n599,463,8.0\n599,464,7.5\n599,465,7.0\n599,466,6.5\n599,467,6.0\n599,468,5.5\n599,469,5.0\n599,470,4.5\n599,471,4.0\n599,472,3.5\n599,473,3.0\n599,474,2.5\n599,475,14.0\n599,476,13.5\n599,477,13.0\n599,478,12.5\n599,479,12.0\n599,480,11.5\n599,481,11.0\n599,482,10.5\n599,483,10.0\n599,484,9.5\n599,485,9.0\n599,486,8.5\n599,487,8.0\n599,488,7.5\n599,489,7.0\n599,490,6.5\n599,491,6.0\n599,492,5.5\n599,493,5.0\n599,494,4.5\n599,495,4.0\n599,496,3.5\n599,497,3.0\n599,498,2.5\n599,499,2.0\n599,500,13.5\n599,501,13.0\n599,502,12.5\n599,503,12.0\n599,504,11.5\n599,505,11.0\n599,506,10.5\n599,507,10.0\n599,508,9.5\n599,509,9.0\n599,510,8.5\n599,511,8.0\n599,512,7.5\n599,513,7.0\n599,514,6.5\n599,515,6.0\n599,516,5.5\n599,517,5.0\n599,518,4.5\n599,519,4.0\n599,520,3.5\n599,521,3.0\n599,522,2.5\n599,523,2.0\n599,524,1.5\n599,525,13.0\n599,526,12.5\n599,527,12.0\n599,528,11.5\n599,529,11.0\n599,530,10.5\n599,531,10.0\n599,532,9.5\n599,533,9.0\n599,534,8.5\n599,535,8.0\n599,536,7.5\n599,537,7.0\n599,538,6.5\n599,539,6.0\n599,540,5.5\n599,541,5.0\n599,542,4.5\n599,543,4.0\n599,544,3.5\n599,545,3.0\n599,546,2.5\n599,547,2.0\n599,548,1.5\n599,549,1.0\n599,550,12.5\n599,551,12.0\n599,552,11.5\n599,553,11.0\n599,554,10.5\n599,555,10.0\n599,556,9.5\n599,557,9.0\n599,558,8.5\n599,559,8.0\n599,560,7.5\n599,561,7.0\n599,562,6.5\n599,563,6.0\n599,564,5.5\n599,565,5.0\n599,566,4.5\n599,567,4.0\n599,568,3.5\n599,569,3.0\n599,570,2.5\n599,571,2.0\n599,572,1.5\n599,573,1.0\n599,574,0.5\n599,575,12.0\n599,576,11.5\n599,577,11.0\n599,578,10.5\n599,579,10.0\n599,580,9.5\n599,581,9.0\n599,582,8.5\n599,583,8.0\n599,584,7.5\n599,585,7.0\n599,586,6.5\n599,587,6.0\n599,588,5.5\n599,589,5.0\n599,590,4.5\n599,591,4.0\n599,592,3.5\n599,593,3.0\n599,594,2.5\n599,595,2.0\n599,596,1.5\n599,597,1.0\n599,598,0.5\n599,599,0\n599,600,12.5\n599,601,12.0\n599,602,11.5\n599,603,11.0\n599,604,10.5\n599,605,10.0\n599,606,9.5\n599,607,9.0\n599,608,8.5\n599,609,8.0\n599,610,7.5\n599,611,7.0\n599,612,6.5\n599,613,6.0\n599,614,5.5\n599,615,5.0\n599,616,4.5\n599,617,4.0\n599,618,3.5\n599,619,3.0\n599,620,2.5\n599,621,2.0\n599,622,1.5\n599,623,1.0\n599,624,0.5\n600,0,12.0\n600,1,12.5\n600,2,13.0\n600,3,13.5\n600,4,14.0\n600,5,14.5\n600,6,15.0\n600,7,15.5\n600,8,16.0\n600,9,16.5\n600,10,17.0\n600,11,17.5\n600,12,18.0\n600,13,18.5\n600,14,19.0\n600,15,19.5\n600,16,20.0\n600,17,20.5\n600,18,21.0\n600,19,21.5\n600,20,22.0\n600,21,22.5\n600,22,23.0\n600,23,23.5\n600,24,24.0\n600,25,11.5\n600,26,12.0\n600,27,12.5\n600,28,13.0\n600,29,13.5\n600,30,14.0\n600,31,14.5\n600,32,15.0\n600,33,15.5\n600,34,16.0\n600,35,16.5\n600,36,17.0\n600,37,17.5\n600,38,18.0\n600,39,18.5\n600,40,19.0\n600,41,19.5\n600,42,20.0\n600,43,20.5\n600,44,21.0\n600,45,21.5\n600,46,22.0\n600,47,22.5\n600,48,23.0\n600,49,23.5\n600,50,11.0\n600,51,11.5\n600,52,12.0\n600,53,12.5\n600,54,13.0\n600,55,13.5\n600,56,14.0\n600,57,14.5\n600,58,15.0\n600,59,15.5\n600,60,16.0\n600,61,16.5\n600,62,17.0\n600,63,17.5\n600,64,18.0\n600,65,18.5\n600,66,19.0\n600,67,19.5\n600,68,20.0\n600,69,20.5\n600,70,21.0\n600,71,21.5\n600,72,22.0\n600,73,22.5\n600,74,23.0\n600,75,10.5\n600,76,11.0\n600,77,11.5\n600,78,12.0\n600,79,12.5\n600,80,13.0\n600,81,13.5\n600,82,14.0\n600,83,14.5\n600,84,15.0\n600,85,15.5\n600,86,16.0\n600,87,16.5\n600,88,17.0\n600,89,17.5\n600,90,18.0\n600,91,18.5\n600,92,19.0\n600,93,19.5\n600,94,20.0\n600,95,20.5\n600,96,21.0\n600,97,21.5\n600,98,22.0\n600,99,22.5\n600,100,10.0\n600,101,10.5\n600,102,11.0\n600,103,11.5\n600,104,12.0\n600,105,12.5\n600,106,13.0\n600,107,13.5\n600,108,14.0\n600,109,14.5\n600,110,15.0\n600,111,15.5\n600,112,16.0\n600,113,16.5\n600,114,17.0\n600,115,17.5\n600,116,18.0\n600,117,18.5\n600,118,19.0\n600,119,19.5\n600,120,20.0\n600,121,20.5\n600,122,21.0\n600,123,21.5\n600,124,22.0\n600,125,9.5\n600,126,10.0\n600,127,10.5\n600,128,11.0\n600,129,11.5\n600,130,12.0\n600,131,12.5\n600,132,13.0\n600,133,13.5\n600,134,14.0\n600,135,14.5\n600,136,15.0\n600,137,15.5\n600,138,16.0\n600,139,16.5\n600,140,17.0\n600,141,17.5\n600,142,18.0\n600,143,18.5\n600,144,19.0\n600,145,19.5\n600,146,20.0\n600,147,20.5\n600,148,21.0\n600,149,21.5\n600,150,9.0\n600,151,9.5\n600,152,10.0\n600,153,10.5\n600,154,11.0\n600,155,11.5\n600,156,12.0\n600,157,12.5\n600,158,13.0\n600,159,13.5\n600,160,14.0\n600,161,14.5\n600,162,15.0\n600,163,15.5\n600,164,16.0\n600,165,16.5\n600,166,17.0\n600,167,17.5\n600,168,18.0\n600,169,18.5\n600,170,19.0\n600,171,19.5\n600,172,20.0\n600,173,20.5\n600,174,21.0\n600,175,8.5\n600,176,9.0\n600,177,9.5\n600,178,10.0\n600,179,10.5\n600,180,11.0\n600,181,11.5\n600,182,12.0\n600,183,12.5\n600,184,13.0\n600,185,13.5\n600,186,14.0\n600,187,14.5\n600,188,15.0\n600,189,15.5\n600,190,16.0\n600,191,16.5\n600,192,17.0\n600,193,17.5\n600,194,18.0\n600,195,18.5\n600,196,19.0\n600,197,19.5\n600,198,20.0\n600,199,20.5\n600,200,8.0\n600,201,8.5\n600,202,9.0\n600,203,9.5\n600,204,10.0\n600,205,10.5\n600,206,11.0\n600,207,11.5\n600,208,12.0\n600,209,12.5\n600,210,13.0\n600,211,13.5\n600,212,14.0\n600,213,14.5\n600,214,15.0\n600,215,15.5\n600,216,16.0\n600,217,16.5\n600,218,17.0\n600,219,17.5\n600,220,18.0\n600,221,18.5\n600,222,19.0\n600,223,19.5\n600,224,20.0\n600,225,7.5\n600,226,8.0\n600,227,8.5\n600,228,9.0\n600,229,9.5\n600,230,10.0\n600,231,10.5\n600,232,11.0\n600,233,11.5\n600,234,12.0\n600,235,12.5\n600,236,13.0\n600,237,13.5\n600,238,14.0\n600,239,14.5\n600,240,15.0\n600,241,15.5\n600,242,16.0\n600,243,16.5\n600,244,17.0\n600,245,17.5\n600,246,18.0\n600,247,18.5\n600,248,19.0\n600,249,19.5\n600,250,7.0\n600,251,7.5\n600,252,8.0\n600,253,8.5\n600,254,9.0\n600,255,9.5\n600,256,10.0\n600,257,10.5\n600,258,11.0\n600,259,11.5\n600,260,12.0\n600,261,12.5\n600,262,13.0\n600,263,13.5\n600,264,14.0\n600,265,14.5\n600,266,15.0\n600,267,15.5\n600,268,16.0\n600,269,16.5\n600,270,17.0\n600,271,17.5\n600,272,18.0\n600,273,18.5\n600,274,19.0\n600,275,6.5\n600,276,7.0\n600,277,7.5\n600,278,8.0\n600,279,8.5\n600,280,9.0\n600,281,9.5\n600,282,10.0\n600,283,10.5\n600,284,11.0\n600,285,11.5\n600,286,12.0\n600,287,12.5\n600,288,13.0\n600,289,13.5\n600,290,14.0\n600,291,14.5\n600,292,15.0\n600,293,15.5\n600,294,16.0\n600,295,16.5\n600,296,17.0\n600,297,17.5\n600,298,18.0\n600,299,18.5\n600,300,6.0\n600,301,6.5\n600,302,7.0\n600,303,7.5\n600,304,8.0\n600,305,8.5\n600,306,9.0\n600,307,9.5\n600,308,10.0\n600,309,10.5\n600,310,11.0\n600,311,11.5\n600,312,12.0\n600,313,12.5\n600,314,13.0\n600,315,13.5\n600,316,14.0\n600,317,14.5\n600,318,15.0\n600,319,15.5\n600,320,16.0\n600,321,16.5\n600,322,17.0\n600,323,17.5\n600,324,18.0\n600,325,5.5\n600,326,6.0\n600,327,6.5\n600,328,7.0\n600,329,7.5\n600,330,8.0\n600,331,8.5\n600,332,9.0\n600,333,9.5\n600,334,10.0\n600,335,10.5\n600,336,11.0\n600,337,11.5\n600,338,12.0\n600,339,12.5\n600,340,13.0\n600,341,13.5\n600,342,14.0\n600,343,14.5\n600,344,15.0\n600,345,15.5\n600,346,16.0\n600,347,16.5\n600,348,17.0\n600,349,17.5\n600,350,5.0\n600,351,5.5\n600,352,6.0\n600,353,6.5\n600,354,7.0\n600,355,7.5\n600,356,8.0\n600,357,8.5\n600,358,9.0\n600,359,9.5\n600,360,10.0\n600,361,10.5\n600,362,11.0\n600,363,11.5\n600,364,12.0\n600,365,12.5\n600,366,13.0\n600,367,13.5\n600,368,14.0\n600,369,14.5\n600,370,15.0\n600,371,15.5\n600,372,16.0\n600,373,16.5\n600,374,17.0\n600,375,4.5\n600,376,5.0\n600,377,5.5\n600,378,6.0\n600,379,6.5\n600,380,7.0\n600,381,7.5\n600,382,8.0\n600,383,8.5\n600,384,9.0\n600,385,9.5\n600,386,10.0\n600,387,10.5\n600,388,11.0\n600,389,11.5\n600,390,12.0\n600,391,12.5\n600,392,13.0\n600,393,13.5\n600,394,14.0\n600,395,14.5\n600,396,15.0\n600,397,15.5\n600,398,16.0\n600,399,16.5\n600,400,4.0\n600,401,4.5\n600,402,5.0\n600,403,5.5\n600,404,6.0\n600,405,6.5\n600,406,7.0\n600,407,7.5\n600,408,8.0\n600,409,8.5\n600,410,9.0\n600,411,9.5\n600,412,10.0\n600,413,10.5\n600,414,11.0\n600,415,11.5\n600,416,12.0\n600,417,12.5\n600,418,13.0\n600,419,13.5\n600,420,14.0\n600,421,14.5\n600,422,15.0\n600,423,15.5\n600,424,16.0\n600,425,3.5\n600,426,4.0\n600,427,4.5\n600,428,5.0\n600,429,5.5\n600,430,6.0\n600,431,6.5\n600,432,7.0\n600,433,7.5\n600,434,8.0\n600,435,8.5\n600,436,9.0\n600,437,9.5\n600,438,10.0\n600,439,10.5\n600,440,11.0\n600,441,11.5\n600,442,12.0\n600,443,12.5\n600,444,13.0\n600,445,13.5\n600,446,14.0\n600,447,14.5\n600,448,15.0\n600,449,15.5\n600,450,3.0\n600,451,3.5\n600,452,4.0\n600,453,4.5\n600,454,5.0\n600,455,5.5\n600,456,6.0\n600,457,6.5\n600,458,7.0\n600,459,7.5\n600,460,8.0\n600,461,8.5\n600,462,9.0\n600,463,9.5\n600,464,10.0\n600,465,10.5\n600,466,11.0\n600,467,11.5\n600,468,12.0\n600,469,12.5\n600,470,13.0\n600,471,13.5\n600,472,14.0\n600,473,14.5\n600,474,15.0\n600,475,2.5\n600,476,3.0\n600,477,3.5\n600,478,4.0\n600,479,4.5\n600,480,5.0\n600,481,5.5\n600,482,6.0\n600,483,6.5\n600,484,7.0\n600,485,7.5\n600,486,8.0\n600,487,8.5\n600,488,9.0\n600,489,9.5\n600,490,10.0\n600,491,10.5\n600,492,11.0\n600,493,11.5\n600,494,12.0\n600,495,12.5\n600,496,13.0\n600,497,13.5\n600,498,14.0\n600,499,14.5\n600,500,2.0\n600,501,2.5\n600,502,3.0\n600,503,3.5\n600,504,4.0\n600,505,4.5\n600,506,5.0\n600,507,5.5\n600,508,6.0\n600,509,6.5\n600,510,7.0\n600,511,7.5\n600,512,8.0\n600,513,8.5\n600,514,9.0\n600,515,9.5\n600,516,10.0\n600,517,10.5\n600,518,11.0\n600,519,11.5\n600,520,12.0\n600,521,12.5\n600,522,13.0\n600,523,13.5\n600,524,14.0\n600,525,1.5\n600,526,2.0\n600,527,2.5\n600,528,3.0\n600,529,3.5\n600,530,4.0\n600,531,4.5\n600,532,5.0\n600,533,5.5\n600,534,6.0\n600,535,6.5\n600,536,7.0\n600,537,7.5\n600,538,8.0\n600,539,8.5\n600,540,9.0\n600,541,9.5\n600,542,10.0\n600,543,10.5\n600,544,11.0\n600,545,11.5\n600,546,12.0\n600,547,12.5\n600,548,13.0\n600,549,13.5\n600,550,1.0\n600,551,1.5\n600,552,2.0\n600,553,2.5\n600,554,3.0\n600,555,3.5\n600,556,4.0\n600,557,4.5\n600,558,5.0\n600,559,5.5\n600,560,6.0\n600,561,6.5\n600,562,7.0\n600,563,7.5\n600,564,8.0\n600,565,8.5\n600,566,9.0\n600,567,9.5\n600,568,10.0\n600,569,10.5\n600,570,11.0\n600,571,11.5\n600,572,12.0\n600,573,12.5\n600,574,13.0\n600,575,0.5\n600,576,1.0\n600,577,1.5\n600,578,2.0\n600,579,2.5\n600,580,3.0\n600,581,3.5\n600,582,4.0\n600,583,4.5\n600,584,5.0\n600,585,5.5\n600,586,6.0\n600,587,6.5\n600,588,7.0\n600,589,7.5\n600,590,8.0\n600,591,8.5\n600,592,9.0\n600,593,9.5\n600,594,10.0\n600,595,10.5\n600,596,11.0\n600,597,11.5\n600,598,12.0\n600,599,12.5\n600,600,0\n600,601,0.5\n600,602,1.0\n600,603,1.5\n600,604,2.0\n600,605,2.5\n600,606,3.0\n600,607,3.5\n600,608,4.0\n600,609,4.5\n600,610,5.0\n600,611,5.5\n600,612,6.0\n600,613,6.5\n600,614,7.0\n600,615,7.5\n600,616,8.0\n600,617,8.5\n600,618,9.0\n600,619,9.5\n600,620,10.0\n600,621,10.5\n600,622,11.0\n600,623,11.5\n600,624,12.0\n601,0,12.5\n601,1,12.0\n601,2,12.5\n601,3,13.0\n601,4,13.5\n601,5,14.0\n601,6,14.5\n601,7,15.0\n601,8,15.5\n601,9,16.0\n601,10,16.5\n601,11,17.0\n601,12,17.5\n601,13,18.0\n601,14,18.5\n601,15,19.0\n601,16,19.5\n601,17,20.0\n601,18,20.5\n601,19,21.0\n601,20,21.5\n601,21,22.0\n601,22,22.5\n601,23,23.0\n601,24,23.5\n601,25,12.0\n601,26,11.5\n601,27,12.0\n601,28,12.5\n601,29,13.0\n601,30,13.5\n601,31,14.0\n601,32,14.5\n601,33,15.0\n601,34,15.5\n601,35,16.0\n601,36,16.5\n601,37,17.0\n601,38,17.5\n601,39,18.0\n601,40,18.5\n601,41,19.0\n601,42,19.5\n601,43,20.0\n601,44,20.5\n601,45,21.0\n601,46,21.5\n601,47,22.0\n601,48,22.5\n601,49,23.0\n601,50,11.5\n601,51,11.0\n601,52,11.5\n601,53,12.0\n601,54,12.5\n601,55,13.0\n601,56,13.5\n601,57,14.0\n601,58,14.5\n601,59,15.0\n601,60,15.5\n601,61,16.0\n601,62,16.5\n601,63,17.0\n601,64,17.5\n601,65,18.0\n601,66,18.5\n601,67,19.0\n601,68,19.5\n601,69,20.0\n601,70,20.5\n601,71,21.0\n601,72,21.5\n601,73,22.0\n601,74,22.5\n601,75,11.0\n601,76,10.5\n601,77,11.0\n601,78,11.5\n601,79,12.0\n601,80,12.5\n601,81,13.0\n601,82,13.5\n601,83,14.0\n601,84,14.5\n601,85,15.0\n601,86,15.5\n601,87,16.0\n601,88,16.5\n601,89,17.0\n601,90,17.5\n601,91,18.0\n601,92,18.5\n601,93,19.0\n601,94,19.5\n601,95,20.0\n601,96,20.5\n601,97,21.0\n601,98,21.5\n601,99,22.0\n601,100,10.5\n601,101,10.0\n601,102,10.5\n601,103,11.0\n601,104,11.5\n601,105,12.0\n601,106,12.5\n601,107,13.0\n601,108,13.5\n601,109,14.0\n601,110,14.5\n601,111,15.0\n601,112,15.5\n601,113,16.0\n601,114,16.5\n601,115,17.0\n601,116,17.5\n601,117,18.0\n601,118,18.5\n601,119,19.0\n601,120,19.5\n601,121,20.0\n601,122,20.5\n601,123,21.0\n601,124,21.5\n601,125,10.0\n601,126,9.5\n601,127,10.0\n601,128,10.5\n601,129,11.0\n601,130,11.5\n601,131,12.0\n601,132,12.5\n601,133,13.0\n601,134,13.5\n601,135,14.0\n601,136,14.5\n601,137,15.0\n601,138,15.5\n601,139,16.0\n601,140,16.5\n601,141,17.0\n601,142,17.5\n601,143,18.0\n601,144,18.5\n601,145,19.0\n601,146,19.5\n601,147,20.0\n601,148,20.5\n601,149,21.0\n601,150,9.5\n601,151,9.0\n601,152,9.5\n601,153,10.0\n601,154,10.5\n601,155,11.0\n601,156,11.5\n601,157,12.0\n601,158,12.5\n601,159,13.0\n601,160,13.5\n601,161,14.0\n601,162,14.5\n601,163,15.0\n601,164,15.5\n601,165,16.0\n601,166,16.5\n601,167,17.0\n601,168,17.5\n601,169,18.0\n601,170,18.5\n601,171,19.0\n601,172,19.5\n601,173,20.0\n601,174,20.5\n601,175,9.0\n601,176,8.5\n601,177,9.0\n601,178,9.5\n601,179,10.0\n601,180,10.5\n601,181,11.0\n601,182,11.5\n601,183,12.0\n601,184,12.5\n601,185,13.0\n601,186,13.5\n601,187,14.0\n601,188,14.5\n601,189,15.0\n601,190,15.5\n601,191,16.0\n601,192,16.5\n601,193,17.0\n601,194,17.5\n601,195,18.0\n601,196,18.5\n601,197,19.0\n601,198,19.5\n601,199,20.0\n601,200,8.5\n601,201,8.0\n601,202,8.5\n601,203,9.0\n601,204,9.5\n601,205,10.0\n601,206,10.5\n601,207,11.0\n601,208,11.5\n601,209,12.0\n601,210,12.5\n601,211,13.0\n601,212,13.5\n601,213,14.0\n601,214,14.5\n601,215,15.0\n601,216,15.5\n601,217,16.0\n601,218,16.5\n601,219,17.0\n601,220,17.5\n601,221,18.0\n601,222,18.5\n601,223,19.0\n601,224,19.5\n601,225,8.0\n601,226,7.5\n601,227,8.0\n601,228,8.5\n601,229,9.0\n601,230,9.5\n601,231,10.0\n601,232,10.5\n601,233,11.0\n601,234,11.5\n601,235,12.0\n601,236,12.5\n601,237,13.0\n601,238,13.5\n601,239,14.0\n601,240,14.5\n601,241,15.0\n601,242,15.5\n601,243,16.0\n601,244,16.5\n601,245,17.0\n601,246,17.5\n601,247,18.0\n601,248,18.5\n601,249,19.0\n601,250,7.5\n601,251,7.0\n601,252,7.5\n601,253,8.0\n601,254,8.5\n601,255,9.0\n601,256,9.5\n601,257,10.0\n601,258,10.5\n601,259,11.0\n601,260,11.5\n601,261,12.0\n601,262,12.5\n601,263,13.0\n601,264,13.5\n601,265,14.0\n601,266,14.5\n601,267,15.0\n601,268,15.5\n601,269,16.0\n601,270,16.5\n601,271,17.0\n601,272,17.5\n601,273,18.0\n601,274,18.5\n601,275,7.0\n601,276,6.5\n601,277,7.0\n601,278,7.5\n601,279,8.0\n601,280,8.5\n601,281,9.0\n601,282,9.5\n601,283,10.0\n601,284,10.5\n601,285,11.0\n601,286,11.5\n601,287,12.0\n601,288,12.5\n601,289,13.0\n601,290,13.5\n601,291,14.0\n601,292,14.5\n601,293,15.0\n601,294,15.5\n601,295,16.0\n601,296,16.5\n601,297,17.0\n601,298,17.5\n601,299,18.0\n601,300,6.5\n601,301,6.0\n601,302,6.5\n601,303,7.0\n601,304,7.5\n601,305,8.0\n601,306,8.5\n601,307,9.0\n601,308,9.5\n601,309,10.0\n601,310,10.5\n601,311,11.0\n601,312,11.5\n601,313,12.0\n601,314,12.5\n601,315,13.0\n601,316,13.5\n601,317,14.0\n601,318,14.5\n601,319,15.0\n601,320,15.5\n601,321,16.0\n601,322,16.5\n601,323,17.0\n601,324,17.5\n601,325,6.0\n601,326,5.5\n601,327,6.0\n601,328,6.5\n601,329,7.0\n601,330,7.5\n601,331,8.0\n601,332,8.5\n601,333,9.0\n601,334,9.5\n601,335,10.0\n601,336,10.5\n601,337,11.0\n601,338,11.5\n601,339,12.0\n601,340,12.5\n601,341,13.0\n601,342,13.5\n601,343,14.0\n601,344,14.5\n601,345,15.0\n601,346,15.5\n601,347,16.0\n601,348,16.5\n601,349,17.0\n601,350,5.5\n601,351,5.0\n601,352,5.5\n601,353,6.0\n601,354,6.5\n601,355,7.0\n601,356,7.5\n601,357,8.0\n601,358,8.5\n601,359,9.0\n601,360,9.5\n601,361,10.0\n601,362,10.5\n601,363,11.0\n601,364,11.5\n601,365,12.0\n601,366,12.5\n601,367,13.0\n601,368,13.5\n601,369,14.0\n601,370,14.5\n601,371,15.0\n601,372,15.5\n601,373,16.0\n601,374,16.5\n601,375,5.0\n601,376,4.5\n601,377,5.0\n601,378,5.5\n601,379,6.0\n601,380,6.5\n601,381,7.0\n601,382,7.5\n601,383,8.0\n601,384,8.5\n601,385,9.0\n601,386,9.5\n601,387,10.0\n601,388,10.5\n601,389,11.0\n601,390,11.5\n601,391,12.0\n601,392,12.5\n601,393,13.0\n601,394,13.5\n601,395,14.0\n601,396,14.5\n601,397,15.0\n601,398,15.5\n601,399,16.0\n601,400,4.5\n601,401,4.0\n601,402,4.5\n601,403,5.0\n601,404,5.5\n601,405,6.0\n601,406,6.5\n601,407,7.0\n601,408,7.5\n601,409,8.0\n601,410,8.5\n601,411,9.0\n601,412,9.5\n601,413,10.0\n601,414,10.5\n601,415,11.0\n601,416,11.5\n601,417,12.0\n601,418,12.5\n601,419,13.0\n601,420,13.5\n601,421,14.0\n601,422,14.5\n601,423,15.0\n601,424,15.5\n601,425,4.0\n601,426,3.5\n601,427,4.0\n601,428,4.5\n601,429,5.0\n601,430,5.5\n601,431,6.0\n601,432,6.5\n601,433,7.0\n601,434,7.5\n601,435,8.0\n601,436,8.5\n601,437,9.0\n601,438,9.5\n601,439,10.0\n601,440,10.5\n601,441,11.0\n601,442,11.5\n601,443,12.0\n601,444,12.5\n601,445,13.0\n601,446,13.5\n601,447,14.0\n601,448,14.5\n601,449,15.0\n601,450,3.5\n601,451,3.0\n601,452,3.5\n601,453,4.0\n601,454,4.5\n601,455,5.0\n601,456,5.5\n601,457,6.0\n601,458,6.5\n601,459,7.0\n601,460,7.5\n601,461,8.0\n601,462,8.5\n601,463,9.0\n601,464,9.5\n601,465,10.0\n601,466,10.5\n601,467,11.0\n601,468,11.5\n601,469,12.0\n601,470,12.5\n601,471,13.0\n601,472,13.5\n601,473,14.0\n601,474,14.5\n601,475,3.0\n601,476,2.5\n601,477,3.0\n601,478,3.5\n601,479,4.0\n601,480,4.5\n601,481,5.0\n601,482,5.5\n601,483,6.0\n601,484,6.5\n601,485,7.0\n601,486,7.5\n601,487,8.0\n601,488,8.5\n601,489,9.0\n601,490,9.5\n601,491,10.0\n601,492,10.5\n601,493,11.0\n601,494,11.5\n601,495,12.0\n601,496,12.5\n601,497,13.0\n601,498,13.5\n601,499,14.0\n601,500,2.5\n601,501,2.0\n601,502,2.5\n601,503,3.0\n601,504,3.5\n601,505,4.0\n601,506,4.5\n601,507,5.0\n601,508,5.5\n601,509,6.0\n601,510,6.5\n601,511,7.0\n601,512,7.5\n601,513,8.0\n601,514,8.5\n601,515,9.0\n601,516,9.5\n601,517,10.0\n601,518,10.5\n601,519,11.0\n601,520,11.5\n601,521,12.0\n601,522,12.5\n601,523,13.0\n601,524,13.5\n601,525,2.0\n601,526,1.5\n601,527,2.0\n601,528,2.5\n601,529,3.0\n601,530,3.5\n601,531,4.0\n601,532,4.5\n601,533,5.0\n601,534,5.5\n601,535,6.0\n601,536,6.5\n601,537,7.0\n601,538,7.5\n601,539,8.0\n601,540,8.5\n601,541,9.0\n601,542,9.5\n601,543,10.0\n601,544,10.5\n601,545,11.0\n601,546,11.5\n601,547,12.0\n601,548,12.5\n601,549,13.0\n601,550,1.5\n601,551,1.0\n601,552,1.5\n601,553,2.0\n601,554,2.5\n601,555,3.0\n601,556,3.5\n601,557,4.0\n601,558,4.5\n601,559,5.0\n601,560,5.5\n601,561,6.0\n601,562,6.5\n601,563,7.0\n601,564,7.5\n601,565,8.0\n601,566,8.5\n601,567,9.0\n601,568,9.5\n601,569,10.0\n601,570,10.5\n601,571,11.0\n601,572,11.5\n601,573,12.0\n601,574,12.5\n601,575,1.0\n601,576,0.5\n601,577,1.0\n601,578,1.5\n601,579,2.0\n601,580,2.5\n601,581,3.0\n601,582,3.5\n601,583,4.0\n601,584,4.5\n601,585,5.0\n601,586,5.5\n601,587,6.0\n601,588,6.5\n601,589,7.0\n601,590,7.5\n601,591,8.0\n601,592,8.5\n601,593,9.0\n601,594,9.5\n601,595,10.0\n601,596,10.5\n601,597,11.0\n601,598,11.5\n601,599,12.0\n601,600,0.5\n601,601,0\n601,602,0.5\n601,603,1.0\n601,604,1.5\n601,605,2.0\n601,606,2.5\n601,607,3.0\n601,608,3.5\n601,609,4.0\n601,610,4.5\n601,611,5.0\n601,612,5.5\n601,613,6.0\n601,614,6.5\n601,615,7.0\n601,616,7.5\n601,617,8.0\n601,618,8.5\n601,619,9.0\n601,620,9.5\n601,621,10.0\n601,622,10.5\n601,623,11.0\n601,624,11.5\n602,0,13.0\n602,1,12.5\n602,2,12.0\n602,3,12.5\n602,4,13.0\n602,5,13.5\n602,6,14.0\n602,7,14.5\n602,8,15.0\n602,9,15.5\n602,10,16.0\n602,11,16.5\n602,12,17.0\n602,13,17.5\n602,14,18.0\n602,15,18.5\n602,16,19.0\n602,17,19.5\n602,18,20.0\n602,19,20.5\n602,20,21.0\n602,21,21.5\n602,22,22.0\n602,23,22.5\n602,24,23.0\n602,25,12.5\n602,26,12.0\n602,27,11.5\n602,28,12.0\n602,29,12.5\n602,30,13.0\n602,31,13.5\n602,32,14.0\n602,33,14.5\n602,34,15.0\n602,35,15.5\n602,36,16.0\n602,37,16.5\n602,38,17.0\n602,39,17.5\n602,40,18.0\n602,41,18.5\n602,42,19.0\n602,43,19.5\n602,44,20.0\n602,45,20.5\n602,46,21.0\n602,47,21.5\n602,48,22.0\n602,49,22.5\n602,50,12.0\n602,51,11.5\n602,52,11.0\n602,53,11.5\n602,54,12.0\n602,55,12.5\n602,56,13.0\n602,57,13.5\n602,58,14.0\n602,59,14.5\n602,60,15.0\n602,61,15.5\n602,62,16.0\n602,63,16.5\n602,64,17.0\n602,65,17.5\n602,66,18.0\n602,67,18.5\n602,68,19.0\n602,69,19.5\n602,70,20.0\n602,71,20.5\n602,72,21.0\n602,73,21.5\n602,74,22.0\n602,75,11.5\n602,76,11.0\n602,77,10.5\n602,78,11.0\n602,79,11.5\n602,80,12.0\n602,81,12.5\n602,82,13.0\n602,83,13.5\n602,84,14.0\n602,85,14.5\n602,86,15.0\n602,87,15.5\n602,88,16.0\n602,89,16.5\n602,90,17.0\n602,91,17.5\n602,92,18.0\n602,93,18.5\n602,94,19.0\n602,95,19.5\n602,96,20.0\n602,97,20.5\n602,98,21.0\n602,99,21.5\n602,100,11.0\n602,101,10.5\n602,102,10.0\n602,103,10.5\n602,104,11.0\n602,105,11.5\n602,106,12.0\n602,107,12.5\n602,108,13.0\n602,109,13.5\n602,110,14.0\n602,111,14.5\n602,112,15.0\n602,113,15.5\n602,114,16.0\n602,115,16.5\n602,116,17.0\n602,117,17.5\n602,118,18.0\n602,119,18.5\n602,120,19.0\n602,121,19.5\n602,122,20.0\n602,123,20.5\n602,124,21.0\n602,125,10.5\n602,126,10.0\n602,127,9.5\n602,128,10.0\n602,129,10.5\n602,130,11.0\n602,131,11.5\n602,132,12.0\n602,133,12.5\n602,134,13.0\n602,135,13.5\n602,136,14.0\n602,137,14.5\n602,138,15.0\n602,139,15.5\n602,140,16.0\n602,141,16.5\n602,142,17.0\n602,143,17.5\n602,144,18.0\n602,145,18.5\n602,146,19.0\n602,147,19.5\n602,148,20.0\n602,149,20.5\n602,150,10.0\n602,151,9.5\n602,152,9.0\n602,153,9.5\n602,154,10.0\n602,155,10.5\n602,156,11.0\n602,157,11.5\n602,158,12.0\n602,159,12.5\n602,160,13.0\n602,161,13.5\n602,162,14.0\n602,163,14.5\n602,164,15.0\n602,165,15.5\n602,166,16.0\n602,167,16.5\n602,168,17.0\n602,169,17.5\n602,170,18.0\n602,171,18.5\n602,172,19.0\n602,173,19.5\n602,174,20.0\n602,175,9.5\n602,176,9.0\n602,177,8.5\n602,178,9.0\n602,179,9.5\n602,180,10.0\n602,181,10.5\n602,182,11.0\n602,183,11.5\n602,184,12.0\n602,185,12.5\n602,186,13.0\n602,187,13.5\n602,188,14.0\n602,189,14.5\n602,190,15.0\n602,191,15.5\n602,192,16.0\n602,193,16.5\n602,194,17.0\n602,195,17.5\n602,196,18.0\n602,197,18.5\n602,198,19.0\n602,199,19.5\n602,200,9.0\n602,201,8.5\n602,202,8.0\n602,203,8.5\n602,204,9.0\n602,205,9.5\n602,206,10.0\n602,207,10.5\n602,208,11.0\n602,209,11.5\n602,210,12.0\n602,211,12.5\n602,212,13.0\n602,213,13.5\n602,214,14.0\n602,215,14.5\n602,216,15.0\n602,217,15.5\n602,218,16.0\n602,219,16.5\n602,220,17.0\n602,221,17.5\n602,222,18.0\n602,223,18.5\n602,224,19.0\n602,225,8.5\n602,226,8.0\n602,227,7.5\n602,228,8.0\n602,229,8.5\n602,230,9.0\n602,231,9.5\n602,232,10.0\n602,233,10.5\n602,234,11.0\n602,235,11.5\n602,236,12.0\n602,237,12.5\n602,238,13.0\n602,239,13.5\n602,240,14.0\n602,241,14.5\n602,242,15.0\n602,243,15.5\n602,244,16.0\n602,245,16.5\n602,246,17.0\n602,247,17.5\n602,248,18.0\n602,249,18.5\n602,250,8.0\n602,251,7.5\n602,252,7.0\n602,253,7.5\n602,254,8.0\n602,255,8.5\n602,256,9.0\n602,257,9.5\n602,258,10.0\n602,259,10.5\n602,260,11.0\n602,261,11.5\n602,262,12.0\n602,263,12.5\n602,264,13.0\n602,265,13.5\n602,266,14.0\n602,267,14.5\n602,268,15.0\n602,269,15.5\n602,270,16.0\n602,271,16.5\n602,272,17.0\n602,273,17.5\n602,274,18.0\n602,275,7.5\n602,276,7.0\n602,277,6.5\n602,278,7.0\n602,279,7.5\n602,280,8.0\n602,281,8.5\n602,282,9.0\n602,283,9.5\n602,284,10.0\n602,285,10.5\n602,286,11.0\n602,287,11.5\n602,288,12.0\n602,289,12.5\n602,290,13.0\n602,291,13.5\n602,292,14.0\n602,293,14.5\n602,294,15.0\n602,295,15.5\n602,296,16.0\n602,297,16.5\n602,298,17.0\n602,299,17.5\n602,300,7.0\n602,301,6.5\n602,302,6.0\n602,303,6.5\n602,304,7.0\n602,305,7.5\n602,306,8.0\n602,307,8.5\n602,308,9.0\n602,309,9.5\n602,310,10.0\n602,311,10.5\n602,312,11.0\n602,313,11.5\n602,314,12.0\n602,315,12.5\n602,316,13.0\n602,317,13.5\n602,318,14.0\n602,319,14.5\n602,320,15.0\n602,321,15.5\n602,322,16.0\n602,323,16.5\n602,324,17.0\n602,325,6.5\n602,326,6.0\n602,327,5.5\n602,328,6.0\n602,329,6.5\n602,330,7.0\n602,331,7.5\n602,332,8.0\n602,333,8.5\n602,334,9.0\n602,335,9.5\n602,336,10.0\n602,337,10.5\n602,338,11.0\n602,339,11.5\n602,340,12.0\n602,341,12.5\n602,342,13.0\n602,343,13.5\n602,344,14.0\n602,345,14.5\n602,346,15.0\n602,347,15.5\n602,348,16.0\n602,349,16.5\n602,350,6.0\n602,351,5.5\n602,352,5.0\n602,353,5.5\n602,354,6.0\n602,355,6.5\n602,356,7.0\n602,357,7.5\n602,358,8.0\n602,359,8.5\n602,360,9.0\n602,361,9.5\n602,362,10.0\n602,363,10.5\n602,364,11.0\n602,365,11.5\n602,366,12.0\n602,367,12.5\n602,368,13.0\n602,369,13.5\n602,370,14.0\n602,371,14.5\n602,372,15.0\n602,373,15.5\n602,374,16.0\n602,375,5.5\n602,376,5.0\n602,377,4.5\n602,378,5.0\n602,379,5.5\n602,380,6.0\n602,381,6.5\n602,382,7.0\n602,383,7.5\n602,384,8.0\n602,385,8.5\n602,386,9.0\n602,387,9.5\n602,388,10.0\n602,389,10.5\n602,390,11.0\n602,391,11.5\n602,392,12.0\n602,393,12.5\n602,394,13.0\n602,395,13.5\n602,396,14.0\n602,397,14.5\n602,398,15.0\n602,399,15.5\n602,400,5.0\n602,401,4.5\n602,402,4.0\n602,403,4.5\n602,404,5.0\n602,405,5.5\n602,406,6.0\n602,407,6.5\n602,408,7.0\n602,409,7.5\n602,410,8.0\n602,411,8.5\n602,412,9.0\n602,413,9.5\n602,414,10.0\n602,415,10.5\n602,416,11.0\n602,417,11.5\n602,418,12.0\n602,419,12.5\n602,420,13.0\n602,421,13.5\n602,422,14.0\n602,423,14.5\n602,424,15.0\n602,425,4.5\n602,426,4.0\n602,427,3.5\n602,428,4.0\n602,429,4.5\n602,430,5.0\n602,431,5.5\n602,432,6.0\n602,433,6.5\n602,434,7.0\n602,435,7.5\n602,436,8.0\n602,437,8.5\n602,438,9.0\n602,439,9.5\n602,440,10.0\n602,441,10.5\n602,442,11.0\n602,443,11.5\n602,444,12.0\n602,445,12.5\n602,446,13.0\n602,447,13.5\n602,448,14.0\n602,449,14.5\n602,450,4.0\n602,451,3.5\n602,452,3.0\n602,453,3.5\n602,454,4.0\n602,455,4.5\n602,456,5.0\n602,457,5.5\n602,458,6.0\n602,459,6.5\n602,460,7.0\n602,461,7.5\n602,462,8.0\n602,463,8.5\n602,464,9.0\n602,465,9.5\n602,466,10.0\n602,467,10.5\n602,468,11.0\n602,469,11.5\n602,470,12.0\n602,471,12.5\n602,472,13.0\n602,473,13.5\n602,474,14.0\n602,475,3.5\n602,476,3.0\n602,477,2.5\n602,478,3.0\n602,479,3.5\n602,480,4.0\n602,481,4.5\n602,482,5.0\n602,483,5.5\n602,484,6.0\n602,485,6.5\n602,486,7.0\n602,487,7.5\n602,488,8.0\n602,489,8.5\n602,490,9.0\n602,491,9.5\n602,492,10.0\n602,493,10.5\n602,494,11.0\n602,495,11.5\n602,496,12.0\n602,497,12.5\n602,498,13.0\n602,499,13.5\n602,500,3.0\n602,501,2.5\n602,502,2.0\n602,503,2.5\n602,504,3.0\n602,505,3.5\n602,506,4.0\n602,507,4.5\n602,508,5.0\n602,509,5.5\n602,510,6.0\n602,511,6.5\n602,512,7.0\n602,513,7.5\n602,514,8.0\n602,515,8.5\n602,516,9.0\n602,517,9.5\n602,518,10.0\n602,519,10.5\n602,520,11.0\n602,521,11.5\n602,522,12.0\n602,523,12.5\n602,524,13.0\n602,525,2.5\n602,526,2.0\n602,527,1.5\n602,528,2.0\n602,529,2.5\n602,530,3.0\n602,531,3.5\n602,532,4.0\n602,533,4.5\n602,534,5.0\n602,535,5.5\n602,536,6.0\n602,537,6.5\n602,538,7.0\n602,539,7.5\n602,540,8.0\n602,541,8.5\n602,542,9.0\n602,543,9.5\n602,544,10.0\n602,545,10.5\n602,546,11.0\n602,547,11.5\n602,548,12.0\n602,549,12.5\n602,550,2.0\n602,551,1.5\n602,552,1.0\n602,553,1.5\n602,554,2.0\n602,555,2.5\n602,556,3.0\n602,557,3.5\n602,558,4.0\n602,559,4.5\n602,560,5.0\n602,561,5.5\n602,562,6.0\n602,563,6.5\n602,564,7.0\n602,565,7.5\n602,566,8.0\n602,567,8.5\n602,568,9.0\n602,569,9.5\n602,570,10.0\n602,571,10.5\n602,572,11.0\n602,573,11.5\n602,574,12.0\n602,575,1.5\n602,576,1.0\n602,577,0.5\n602,578,1.0\n602,579,1.5\n602,580,2.0\n602,581,2.5\n602,582,3.0\n602,583,3.5\n602,584,4.0\n602,585,4.5\n602,586,5.0\n602,587,5.5\n602,588,6.0\n602,589,6.5\n602,590,7.0\n602,591,7.5\n602,592,8.0\n602,593,8.5\n602,594,9.0\n602,595,9.5\n602,596,10.0\n602,597,10.5\n602,598,11.0\n602,599,11.5\n602,600,1.0\n602,601,0.5\n602,602,0\n602,603,0.5\n602,604,1.0\n602,605,1.5\n602,606,2.0\n602,607,2.5\n602,608,3.0\n602,609,3.5\n602,610,4.0\n602,611,4.5\n602,612,5.0\n602,613,5.5\n602,614,6.0\n602,615,6.5\n602,616,7.0\n602,617,7.5\n602,618,8.0\n602,619,8.5\n602,620,9.0\n602,621,9.5\n602,622,10.0\n602,623,10.5\n602,624,11.0\n603,0,13.5\n603,1,13.0\n603,2,12.5\n603,3,12.0\n603,4,12.5\n603,5,13.0\n603,6,13.5\n603,7,14.0\n603,8,14.5\n603,9,15.0\n603,10,15.5\n603,11,16.0\n603,12,16.5\n603,13,17.0\n603,14,17.5\n603,15,18.0\n603,16,18.5\n603,17,19.0\n603,18,19.5\n603,19,20.0\n603,20,20.5\n603,21,21.0\n603,22,21.5\n603,23,22.0\n603,24,22.5\n603,25,13.0\n603,26,12.5\n603,27,12.0\n603,28,11.5\n603,29,12.0\n603,30,12.5\n603,31,13.0\n603,32,13.5\n603,33,14.0\n603,34,14.5\n603,35,15.0\n603,36,15.5\n603,37,16.0\n603,38,16.5\n603,39,17.0\n603,40,17.5\n603,41,18.0\n603,42,18.5\n603,43,19.0\n603,44,19.5\n603,45,20.0\n603,46,20.5\n603,47,21.0\n603,48,21.5\n603,49,22.0\n603,50,12.5\n603,51,12.0\n603,52,11.5\n603,53,11.0\n603,54,11.5\n603,55,12.0\n603,56,12.5\n603,57,13.0\n603,58,13.5\n603,59,14.0\n603,60,14.5\n603,61,15.0\n603,62,15.5\n603,63,16.0\n603,64,16.5\n603,65,17.0\n603,66,17.5\n603,67,18.0\n603,68,18.5\n603,69,19.0\n603,70,19.5\n603,71,20.0\n603,72,20.5\n603,73,21.0\n603,74,21.5\n603,75,12.0\n603,76,11.5\n603,77,11.0\n603,78,10.5\n603,79,11.0\n603,80,11.5\n603,81,12.0\n603,82,12.5\n603,83,13.0\n603,84,13.5\n603,85,14.0\n603,86,14.5\n603,87,15.0\n603,88,15.5\n603,89,16.0\n603,90,16.5\n603,91,17.0\n603,92,17.5\n603,93,18.0\n603,94,18.5\n603,95,19.0\n603,96,19.5\n603,97,20.0\n603,98,20.5\n603,99,21.0\n603,100,11.5\n603,101,11.0\n603,102,10.5\n603,103,10.0\n603,104,10.5\n603,105,11.0\n603,106,11.5\n603,107,12.0\n603,108,12.5\n603,109,13.0\n603,110,13.5\n603,111,14.0\n603,112,14.5\n603,113,15.0\n603,114,15.5\n603,115,16.0\n603,116,16.5\n603,117,17.0\n603,118,17.5\n603,119,18.0\n603,120,18.5\n603,121,19.0\n603,122,19.5\n603,123,20.0\n603,124,20.5\n603,125,11.0\n603,126,10.5\n603,127,10.0\n603,128,9.5\n603,129,10.0\n603,130,10.5\n603,131,11.0\n603,132,11.5\n603,133,12.0\n603,134,12.5\n603,135,13.0\n603,136,13.5\n603,137,14.0\n603,138,14.5\n603,139,15.0\n603,140,15.5\n603,141,16.0\n603,142,16.5\n603,143,17.0\n603,144,17.5\n603,145,18.0\n603,146,18.5\n603,147,19.0\n603,148,19.5\n603,149,20.0\n603,150,10.5\n603,151,10.0\n603,152,9.5\n603,153,9.0\n603,154,9.5\n603,155,10.0\n603,156,10.5\n603,157,11.0\n603,158,11.5\n603,159,12.0\n603,160,12.5\n603,161,13.0\n603,162,13.5\n603,163,14.0\n603,164,14.5\n603,165,15.0\n603,166,15.5\n603,167,16.0\n603,168,16.5\n603,169,17.0\n603,170,17.5\n603,171,18.0\n603,172,18.5\n603,173,19.0\n603,174,19.5\n603,175,10.0\n603,176,9.5\n603,177,9.0\n603,178,8.5\n603,179,9.0\n603,180,9.5\n603,181,10.0\n603,182,10.5\n603,183,11.0\n603,184,11.5\n603,185,12.0\n603,186,12.5\n603,187,13.0\n603,188,13.5\n603,189,14.0\n603,190,14.5\n603,191,15.0\n603,192,15.5\n603,193,16.0\n603,194,16.5\n603,195,17.0\n603,196,17.5\n603,197,18.0\n603,198,18.5\n603,199,19.0\n603,200,9.5\n603,201,9.0\n603,202,8.5\n603,203,8.0\n603,204,8.5\n603,205,9.0\n603,206,9.5\n603,207,10.0\n603,208,10.5\n603,209,11.0\n603,210,11.5\n603,211,12.0\n603,212,12.5\n603,213,13.0\n603,214,13.5\n603,215,14.0\n603,216,14.5\n603,217,15.0\n603,218,15.5\n603,219,16.0\n603,220,16.5\n603,221,17.0\n603,222,17.5\n603,223,18.0\n603,224,18.5\n603,225,9.0\n603,226,8.5\n603,227,8.0\n603,228,7.5\n603,229,8.0\n603,230,8.5\n603,231,9.0\n603,232,9.5\n603,233,10.0\n603,234,10.5\n603,235,11.0\n603,236,11.5\n603,237,12.0\n603,238,12.5\n603,239,13.0\n603,240,13.5\n603,241,14.0\n603,242,14.5\n603,243,15.0\n603,244,15.5\n603,245,16.0\n603,246,16.5\n603,247,17.0\n603,248,17.5\n603,249,18.0\n603,250,8.5\n603,251,8.0\n603,252,7.5\n603,253,7.0\n603,254,7.5\n603,255,8.0\n603,256,8.5\n603,257,9.0\n603,258,9.5\n603,259,10.0\n603,260,10.5\n603,261,11.0\n603,262,11.5\n603,263,12.0\n603,264,12.5\n603,265,13.0\n603,266,13.5\n603,267,14.0\n603,268,14.5\n603,269,15.0\n603,270,15.5\n603,271,16.0\n603,272,16.5\n603,273,17.0\n603,274,17.5\n603,275,8.0\n603,276,7.5\n603,277,7.0\n603,278,6.5\n603,279,7.0\n603,280,7.5\n603,281,8.0\n603,282,8.5\n603,283,9.0\n603,284,9.5\n603,285,10.0\n603,286,10.5\n603,287,11.0\n603,288,11.5\n603,289,12.0\n603,290,12.5\n603,291,13.0\n603,292,13.5\n603,293,14.0\n603,294,14.5\n603,295,15.0\n603,296,15.5\n603,297,16.0\n603,298,16.5\n603,299,17.0\n603,300,7.5\n603,301,7.0\n603,302,6.5\n603,303,6.0\n603,304,6.5\n603,305,7.0\n603,306,7.5\n603,307,8.0\n603,308,8.5\n603,309,9.0\n603,310,9.5\n603,311,10.0\n603,312,10.5\n603,313,11.0\n603,314,11.5\n603,315,12.0\n603,316,12.5\n603,317,13.0\n603,318,13.5\n603,319,14.0\n603,320,14.5\n603,321,15.0\n603,322,15.5\n603,323,16.0\n603,324,16.5\n603,325,7.0\n603,326,6.5\n603,327,6.0\n603,328,5.5\n603,329,6.0\n603,330,6.5\n603,331,7.0\n603,332,7.5\n603,333,8.0\n603,334,8.5\n603,335,9.0\n603,336,9.5\n603,337,10.0\n603,338,10.5\n603,339,11.0\n603,340,11.5\n603,341,12.0\n603,342,12.5\n603,343,13.0\n603,344,13.5\n603,345,14.0\n603,346,14.5\n603,347,15.0\n603,348,15.5\n603,349,16.0\n603,350,6.5\n603,351,6.0\n603,352,5.5\n603,353,5.0\n603,354,5.5\n603,355,6.0\n603,356,6.5\n603,357,7.0\n603,358,7.5\n603,359,8.0\n603,360,8.5\n603,361,9.0\n603,362,9.5\n603,363,10.0\n603,364,10.5\n603,365,11.0\n603,366,11.5\n603,367,12.0\n603,368,12.5\n603,369,13.0\n603,370,13.5\n603,371,14.0\n603,372,14.5\n603,373,15.0\n603,374,15.5\n603,375,6.0\n603,376,5.5\n603,377,5.0\n603,378,4.5\n603,379,5.0\n603,380,5.5\n603,381,6.0\n603,382,6.5\n603,383,7.0\n603,384,7.5\n603,385,8.0\n603,386,8.5\n603,387,9.0\n603,388,9.5\n603,389,10.0\n603,390,10.5\n603,391,11.0\n603,392,11.5\n603,393,12.0\n603,394,12.5\n603,395,13.0\n603,396,13.5\n603,397,14.0\n603,398,14.5\n603,399,15.0\n603,400,5.5\n603,401,5.0\n603,402,4.5\n603,403,4.0\n603,404,4.5\n603,405,5.0\n603,406,5.5\n603,407,6.0\n603,408,6.5\n603,409,7.0\n603,410,7.5\n603,411,8.0\n603,412,8.5\n603,413,9.0\n603,414,9.5\n603,415,10.0\n603,416,10.5\n603,417,11.0\n603,418,11.5\n603,419,12.0\n603,420,12.5\n603,421,13.0\n603,422,13.5\n603,423,14.0\n603,424,14.5\n603,425,5.0\n603,426,4.5\n603,427,4.0\n603,428,3.5\n603,429,4.0\n603,430,4.5\n603,431,5.0\n603,432,5.5\n603,433,6.0\n603,434,6.5\n603,435,7.0\n603,436,7.5\n603,437,8.0\n603,438,8.5\n603,439,9.0\n603,440,9.5\n603,441,10.0\n603,442,10.5\n603,443,11.0\n603,444,11.5\n603,445,12.0\n603,446,12.5\n603,447,13.0\n603,448,13.5\n603,449,14.0\n603,450,4.5\n603,451,4.0\n603,452,3.5\n603,453,3.0\n603,454,3.5\n603,455,4.0\n603,456,4.5\n603,457,5.0\n603,458,5.5\n603,459,6.0\n603,460,6.5\n603,461,7.0\n603,462,7.5\n603,463,8.0\n603,464,8.5\n603,465,9.0\n603,466,9.5\n603,467,10.0\n603,468,10.5\n603,469,11.0\n603,470,11.5\n603,471,12.0\n603,472,12.5\n603,473,13.0\n603,474,13.5\n603,475,4.0\n603,476,3.5\n603,477,3.0\n603,478,2.5\n603,479,3.0\n603,480,3.5\n603,481,4.0\n603,482,4.5\n603,483,5.0\n603,484,5.5\n603,485,6.0\n603,486,6.5\n603,487,7.0\n603,488,7.5\n603,489,8.0\n603,490,8.5\n603,491,9.0\n603,492,9.5\n603,493,10.0\n603,494,10.5\n603,495,11.0\n603,496,11.5\n603,497,12.0\n603,498,12.5\n603,499,13.0\n603,500,3.5\n603,501,3.0\n603,502,2.5\n603,503,2.0\n603,504,2.5\n603,505,3.0\n603,506,3.5\n603,507,4.0\n603,508,4.5\n603,509,5.0\n603,510,5.5\n603,511,6.0\n603,512,6.5\n603,513,7.0\n603,514,7.5\n603,515,8.0\n603,516,8.5\n603,517,9.0\n603,518,9.5\n603,519,10.0\n603,520,10.5\n603,521,11.0\n603,522,11.5\n603,523,12.0\n603,524,12.5\n603,525,3.0\n603,526,2.5\n603,527,2.0\n603,528,1.5\n603,529,2.0\n603,530,2.5\n603,531,3.0\n603,532,3.5\n603,533,4.0\n603,534,4.5\n603,535,5.0\n603,536,5.5\n603,537,6.0\n603,538,6.5\n603,539,7.0\n603,540,7.5\n603,541,8.0\n603,542,8.5\n603,543,9.0\n603,544,9.5\n603,545,10.0\n603,546,10.5\n603,547,11.0\n603,548,11.5\n603,549,12.0\n603,550,2.5\n603,551,2.0\n603,552,1.5\n603,553,1.0\n603,554,1.5\n603,555,2.0\n603,556,2.5\n603,557,3.0\n603,558,3.5\n603,559,4.0\n603,560,4.5\n603,561,5.0\n603,562,5.5\n603,563,6.0\n603,564,6.5\n603,565,7.0\n603,566,7.5\n603,567,8.0\n603,568,8.5\n603,569,9.0\n603,570,9.5\n603,571,10.0\n603,572,10.5\n603,573,11.0\n603,574,11.5\n603,575,2.0\n603,576,1.5\n603,577,1.0\n603,578,0.5\n603,579,1.0\n603,580,1.5\n603,581,2.0\n603,582,2.5\n603,583,3.0\n603,584,3.5\n603,585,4.0\n603,586,4.5\n603,587,5.0\n603,588,5.5\n603,589,6.0\n603,590,6.5\n603,591,7.0\n603,592,7.5\n603,593,8.0\n603,594,8.5\n603,595,9.0\n603,596,9.5\n603,597,10.0\n603,598,10.5\n603,599,11.0\n603,600,1.5\n603,601,1.0\n603,602,0.5\n603,603,0\n603,604,0.5\n603,605,1.0\n603,606,1.5\n603,607,2.0\n603,608,2.5\n603,609,3.0\n603,610,3.5\n603,611,4.0\n603,612,4.5\n603,613,5.0\n603,614,5.5\n603,615,6.0\n603,616,6.5\n603,617,7.0\n603,618,7.5\n603,619,8.0\n603,620,8.5\n603,621,9.0\n603,622,9.5\n603,623,10.0\n603,624,10.5\n604,0,14.0\n604,1,13.5\n604,2,13.0\n604,3,12.5\n604,4,12.0\n604,5,12.5\n604,6,13.0\n604,7,13.5\n604,8,14.0\n604,9,14.5\n604,10,15.0\n604,11,15.5\n604,12,16.0\n604,13,16.5\n604,14,17.0\n604,15,17.5\n604,16,18.0\n604,17,18.5\n604,18,19.0\n604,19,19.5\n604,20,20.0\n604,21,20.5\n604,22,21.0\n604,23,21.5\n604,24,22.0\n604,25,13.5\n604,26,13.0\n604,27,12.5\n604,28,12.0\n604,29,11.5\n604,30,12.0\n604,31,12.5\n604,32,13.0\n604,33,13.5\n604,34,14.0\n604,35,14.5\n604,36,15.0\n604,37,15.5\n604,38,16.0\n604,39,16.5\n604,40,17.0\n604,41,17.5\n604,42,18.0\n604,43,18.5\n604,44,19.0\n604,45,19.5\n604,46,20.0\n604,47,20.5\n604,48,21.0\n604,49,21.5\n604,50,13.0\n604,51,12.5\n604,52,12.0\n604,53,11.5\n604,54,11.0\n604,55,11.5\n604,56,12.0\n604,57,12.5\n604,58,13.0\n604,59,13.5\n604,60,14.0\n604,61,14.5\n604,62,15.0\n604,63,15.5\n604,64,16.0\n604,65,16.5\n604,66,17.0\n604,67,17.5\n604,68,18.0\n604,69,18.5\n604,70,19.0\n604,71,19.5\n604,72,20.0\n604,73,20.5\n604,74,21.0\n604,75,12.5\n604,76,12.0\n604,77,11.5\n604,78,11.0\n604,79,10.5\n604,80,11.0\n604,81,11.5\n604,82,12.0\n604,83,12.5\n604,84,13.0\n604,85,13.5\n604,86,14.0\n604,87,14.5\n604,88,15.0\n604,89,15.5\n604,90,16.0\n604,91,16.5\n604,92,17.0\n604,93,17.5\n604,94,18.0\n604,95,18.5\n604,96,19.0\n604,97,19.5\n604,98,20.0\n604,99,20.5\n604,100,12.0\n604,101,11.5\n604,102,11.0\n604,103,10.5\n604,104,10.0\n604,105,10.5\n604,106,11.0\n604,107,11.5\n604,108,12.0\n604,109,12.5\n604,110,13.0\n604,111,13.5\n604,112,14.0\n604,113,14.5\n604,114,15.0\n604,115,15.5\n604,116,16.0\n604,117,16.5\n604,118,17.0\n604,119,17.5\n604,120,18.0\n604,121,18.5\n604,122,19.0\n604,123,19.5\n604,124,20.0\n604,125,11.5\n604,126,11.0\n604,127,10.5\n604,128,10.0\n604,129,9.5\n604,130,10.0\n604,131,10.5\n604,132,11.0\n604,133,11.5\n604,134,12.0\n604,135,12.5\n604,136,13.0\n604,137,13.5\n604,138,14.0\n604,139,14.5\n604,140,15.0\n604,141,15.5\n604,142,16.0\n604,143,16.5\n604,144,17.0\n604,145,17.5\n604,146,18.0\n604,147,18.5\n604,148,19.0\n604,149,19.5\n604,150,11.0\n604,151,10.5\n604,152,10.0\n604,153,9.5\n604,154,9.0\n604,155,9.5\n604,156,10.0\n604,157,10.5\n604,158,11.0\n604,159,11.5\n604,160,12.0\n604,161,12.5\n604,162,13.0\n604,163,13.5\n604,164,14.0\n604,165,14.5\n604,166,15.0\n604,167,15.5\n604,168,16.0\n604,169,16.5\n604,170,17.0\n604,171,17.5\n604,172,18.0\n604,173,18.5\n604,174,19.0\n604,175,10.5\n604,176,10.0\n604,177,9.5\n604,178,9.0\n604,179,8.5\n604,180,9.0\n604,181,9.5\n604,182,10.0\n604,183,10.5\n604,184,11.0\n604,185,11.5\n604,186,12.0\n604,187,12.5\n604,188,13.0\n604,189,13.5\n604,190,14.0\n604,191,14.5\n604,192,15.0\n604,193,15.5\n604,194,16.0\n604,195,16.5\n604,196,17.0\n604,197,17.5\n604,198,18.0\n604,199,18.5\n604,200,10.0\n604,201,9.5\n604,202,9.0\n604,203,8.5\n604,204,8.0\n604,205,8.5\n604,206,9.0\n604,207,9.5\n604,208,10.0\n604,209,10.5\n604,210,11.0\n604,211,11.5\n604,212,12.0\n604,213,12.5\n604,214,13.0\n604,215,13.5\n604,216,14.0\n604,217,14.5\n604,218,15.0\n604,219,15.5\n604,220,16.0\n604,221,16.5\n604,222,17.0\n604,223,17.5\n604,224,18.0\n604,225,9.5\n604,226,9.0\n604,227,8.5\n604,228,8.0\n604,229,7.5\n604,230,8.0\n604,231,8.5\n604,232,9.0\n604,233,9.5\n604,234,10.0\n604,235,10.5\n604,236,11.0\n604,237,11.5\n604,238,12.0\n604,239,12.5\n604,240,13.0\n604,241,13.5\n604,242,14.0\n604,243,14.5\n604,244,15.0\n604,245,15.5\n604,246,16.0\n604,247,16.5\n604,248,17.0\n604,249,17.5\n604,250,9.0\n604,251,8.5\n604,252,8.0\n604,253,7.5\n604,254,7.0\n604,255,7.5\n604,256,8.0\n604,257,8.5\n604,258,9.0\n604,259,9.5\n604,260,10.0\n604,261,10.5\n604,262,11.0\n604,263,11.5\n604,264,12.0\n604,265,12.5\n604,266,13.0\n604,267,13.5\n604,268,14.0\n604,269,14.5\n604,270,15.0\n604,271,15.5\n604,272,16.0\n604,273,16.5\n604,274,17.0\n604,275,8.5\n604,276,8.0\n604,277,7.5\n604,278,7.0\n604,279,6.5\n604,280,7.0\n604,281,7.5\n604,282,8.0\n604,283,8.5\n604,284,9.0\n604,285,9.5\n604,286,10.0\n604,287,10.5\n604,288,11.0\n604,289,11.5\n604,290,12.0\n604,291,12.5\n604,292,13.0\n604,293,13.5\n604,294,14.0\n604,295,14.5\n604,296,15.0\n604,297,15.5\n604,298,16.0\n604,299,16.5\n604,300,8.0\n604,301,7.5\n604,302,7.0\n604,303,6.5\n604,304,6.0\n604,305,6.5\n604,306,7.0\n604,307,7.5\n604,308,8.0\n604,309,8.5\n604,310,9.0\n604,311,9.5\n604,312,10.0\n604,313,10.5\n604,314,11.0\n604,315,11.5\n604,316,12.0\n604,317,12.5\n604,318,13.0\n604,319,13.5\n604,320,14.0\n604,321,14.5\n604,322,15.0\n604,323,15.5\n604,324,16.0\n604,325,7.5\n604,326,7.0\n604,327,6.5\n604,328,6.0\n604,329,5.5\n604,330,6.0\n604,331,6.5\n604,332,7.0\n604,333,7.5\n604,334,8.0\n604,335,8.5\n604,336,9.0\n604,337,9.5\n604,338,10.0\n604,339,10.5\n604,340,11.0\n604,341,11.5\n604,342,12.0\n604,343,12.5\n604,344,13.0\n604,345,13.5\n604,346,14.0\n604,347,14.5\n604,348,15.0\n604,349,15.5\n604,350,7.0\n604,351,6.5\n604,352,6.0\n604,353,5.5\n604,354,5.0\n604,355,5.5\n604,356,6.0\n604,357,6.5\n604,358,7.0\n604,359,7.5\n604,360,8.0\n604,361,8.5\n604,362,9.0\n604,363,9.5\n604,364,10.0\n604,365,10.5\n604,366,11.0\n604,367,11.5\n604,368,12.0\n604,369,12.5\n604,370,13.0\n604,371,13.5\n604,372,14.0\n604,373,14.5\n604,374,15.0\n604,375,6.5\n604,376,6.0\n604,377,5.5\n604,378,5.0\n604,379,4.5\n604,380,5.0\n604,381,5.5\n604,382,6.0\n604,383,6.5\n604,384,7.0\n604,385,7.5\n604,386,8.0\n604,387,8.5\n604,388,9.0\n604,389,9.5\n604,390,10.0\n604,391,10.5\n604,392,11.0\n604,393,11.5\n604,394,12.0\n604,395,12.5\n604,396,13.0\n604,397,13.5\n604,398,14.0\n604,399,14.5\n604,400,6.0\n604,401,5.5\n604,402,5.0\n604,403,4.5\n604,404,4.0\n604,405,4.5\n604,406,5.0\n604,407,5.5\n604,408,6.0\n604,409,6.5\n604,410,7.0\n604,411,7.5\n604,412,8.0\n604,413,8.5\n604,414,9.0\n604,415,9.5\n604,416,10.0\n604,417,10.5\n604,418,11.0\n604,419,11.5\n604,420,12.0\n604,421,12.5\n604,422,13.0\n604,423,13.5\n604,424,14.0\n604,425,5.5\n604,426,5.0\n604,427,4.5\n604,428,4.0\n604,429,3.5\n604,430,4.0\n604,431,4.5\n604,432,5.0\n604,433,5.5\n604,434,6.0\n604,435,6.5\n604,436,7.0\n604,437,7.5\n604,438,8.0\n604,439,8.5\n604,440,9.0\n604,441,9.5\n604,442,10.0\n604,443,10.5\n604,444,11.0\n604,445,11.5\n604,446,12.0\n604,447,12.5\n604,448,13.0\n604,449,13.5\n604,450,5.0\n604,451,4.5\n604,452,4.0\n604,453,3.5\n604,454,3.0\n604,455,3.5\n604,456,4.0\n604,457,4.5\n604,458,5.0\n604,459,5.5\n604,460,6.0\n604,461,6.5\n604,462,7.0\n604,463,7.5\n604,464,8.0\n604,465,8.5\n604,466,9.0\n604,467,9.5\n604,468,10.0\n604,469,10.5\n604,470,11.0\n604,471,11.5\n604,472,12.0\n604,473,12.5\n604,474,13.0\n604,475,4.5\n604,476,4.0\n604,477,3.5\n604,478,3.0\n604,479,2.5\n604,480,3.0\n604,481,3.5\n604,482,4.0\n604,483,4.5\n604,484,5.0\n604,485,5.5\n604,486,6.0\n604,487,6.5\n604,488,7.0\n604,489,7.5\n604,490,8.0\n604,491,8.5\n604,492,9.0\n604,493,9.5\n604,494,10.0\n604,495,10.5\n604,496,11.0\n604,497,11.5\n604,498,12.0\n604,499,12.5\n604,500,4.0\n604,501,3.5\n604,502,3.0\n604,503,2.5\n604,504,2.0\n604,505,2.5\n604,506,3.0\n604,507,3.5\n604,508,4.0\n604,509,4.5\n604,510,5.0\n604,511,5.5\n604,512,6.0\n604,513,6.5\n604,514,7.0\n604,515,7.5\n604,516,8.0\n604,517,8.5\n604,518,9.0\n604,519,9.5\n604,520,10.0\n604,521,10.5\n604,522,11.0\n604,523,11.5\n604,524,12.0\n604,525,3.5\n604,526,3.0\n604,527,2.5\n604,528,2.0\n604,529,1.5\n604,530,2.0\n604,531,2.5\n604,532,3.0\n604,533,3.5\n604,534,4.0\n604,535,4.5\n604,536,5.0\n604,537,5.5\n604,538,6.0\n604,539,6.5\n604,540,7.0\n604,541,7.5\n604,542,8.0\n604,543,8.5\n604,544,9.0\n604,545,9.5\n604,546,10.0\n604,547,10.5\n604,548,11.0\n604,549,11.5\n604,550,3.0\n604,551,2.5\n604,552,2.0\n604,553,1.5\n604,554,1.0\n604,555,1.5\n604,556,2.0\n604,557,2.5\n604,558,3.0\n604,559,3.5\n604,560,4.0\n604,561,4.5\n604,562,5.0\n604,563,5.5\n604,564,6.0\n604,565,6.5\n604,566,7.0\n604,567,7.5\n604,568,8.0\n604,569,8.5\n604,570,9.0\n604,571,9.5\n604,572,10.0\n604,573,10.5\n604,574,11.0\n604,575,2.5\n604,576,2.0\n604,577,1.5\n604,578,1.0\n604,579,0.5\n604,580,1.0\n604,581,1.5\n604,582,2.0\n604,583,2.5\n604,584,3.0\n604,585,3.5\n604,586,4.0\n604,587,4.5\n604,588,5.0\n604,589,5.5\n604,590,6.0\n604,591,6.5\n604,592,7.0\n604,593,7.5\n604,594,8.0\n604,595,8.5\n604,596,9.0\n604,597,9.5\n604,598,10.0\n604,599,10.5\n604,600,2.0\n604,601,1.5\n604,602,1.0\n604,603,0.5\n604,604,0\n604,605,0.5\n604,606,1.0\n604,607,1.5\n604,608,2.0\n604,609,2.5\n604,610,3.0\n604,611,3.5\n604,612,4.0\n604,613,4.5\n604,614,5.0\n604,615,5.5\n604,616,6.0\n604,617,6.5\n604,618,7.0\n604,619,7.5\n604,620,8.0\n604,621,8.5\n604,622,9.0\n604,623,9.5\n604,624,10.0\n605,0,14.5\n605,1,14.0\n605,2,13.5\n605,3,13.0\n605,4,12.5\n605,5,12.0\n605,6,12.5\n605,7,13.0\n605,8,13.5\n605,9,14.0\n605,10,14.5\n605,11,15.0\n605,12,15.5\n605,13,16.0\n605,14,16.5\n605,15,17.0\n605,16,17.5\n605,17,18.0\n605,18,18.5\n605,19,19.0\n605,20,19.5\n605,21,20.0\n605,22,20.5\n605,23,21.0\n605,24,21.5\n605,25,14.0\n605,26,13.5\n605,27,13.0\n605,28,12.5\n605,29,12.0\n605,30,11.5\n605,31,12.0\n605,32,12.5\n605,33,13.0\n605,34,13.5\n605,35,14.0\n605,36,14.5\n605,37,15.0\n605,38,15.5\n605,39,16.0\n605,40,16.5\n605,41,17.0\n605,42,17.5\n605,43,18.0\n605,44,18.5\n605,45,19.0\n605,46,19.5\n605,47,20.0\n605,48,20.5\n605,49,21.0\n605,50,13.5\n605,51,13.0\n605,52,12.5\n605,53,12.0\n605,54,11.5\n605,55,11.0\n605,56,11.5\n605,57,12.0\n605,58,12.5\n605,59,13.0\n605,60,13.5\n605,61,14.0\n605,62,14.5\n605,63,15.0\n605,64,15.5\n605,65,16.0\n605,66,16.5\n605,67,17.0\n605,68,17.5\n605,69,18.0\n605,70,18.5\n605,71,19.0\n605,72,19.5\n605,73,20.0\n605,74,20.5\n605,75,13.0\n605,76,12.5\n605,77,12.0\n605,78,11.5\n605,79,11.0\n605,80,10.5\n605,81,11.0\n605,82,11.5\n605,83,12.0\n605,84,12.5\n605,85,13.0\n605,86,13.5\n605,87,14.0\n605,88,14.5\n605,89,15.0\n605,90,15.5\n605,91,16.0\n605,92,16.5\n605,93,17.0\n605,94,17.5\n605,95,18.0\n605,96,18.5\n605,97,19.0\n605,98,19.5\n605,99,20.0\n605,100,12.5\n605,101,12.0\n605,102,11.5\n605,103,11.0\n605,104,10.5\n605,105,10.0\n605,106,10.5\n605,107,11.0\n605,108,11.5\n605,109,12.0\n605,110,12.5\n605,111,13.0\n605,112,13.5\n605,113,14.0\n605,114,14.5\n605,115,15.0\n605,116,15.5\n605,117,16.0\n605,118,16.5\n605,119,17.0\n605,120,17.5\n605,121,18.0\n605,122,18.5\n605,123,19.0\n605,124,19.5\n605,125,12.0\n605,126,11.5\n605,127,11.0\n605,128,10.5\n605,129,10.0\n605,130,9.5\n605,131,10.0\n605,132,10.5\n605,133,11.0\n605,134,11.5\n605,135,12.0\n605,136,12.5\n605,137,13.0\n605,138,13.5\n605,139,14.0\n605,140,14.5\n605,141,15.0\n605,142,15.5\n605,143,16.0\n605,144,16.5\n605,145,17.0\n605,146,17.5\n605,147,18.0\n605,148,18.5\n605,149,19.0\n605,150,11.5\n605,151,11.0\n605,152,10.5\n605,153,10.0\n605,154,9.5\n605,155,9.0\n605,156,9.5\n605,157,10.0\n605,158,10.5\n605,159,11.0\n605,160,11.5\n605,161,12.0\n605,162,12.5\n605,163,13.0\n605,164,13.5\n605,165,14.0\n605,166,14.5\n605,167,15.0\n605,168,15.5\n605,169,16.0\n605,170,16.5\n605,171,17.0\n605,172,17.5\n605,173,18.0\n605,174,18.5\n605,175,11.0\n605,176,10.5\n605,177,10.0\n605,178,9.5\n605,179,9.0\n605,180,8.5\n605,181,9.0\n605,182,9.5\n605,183,10.0\n605,184,10.5\n605,185,11.0\n605,186,11.5\n605,187,12.0\n605,188,12.5\n605,189,13.0\n605,190,13.5\n605,191,14.0\n605,192,14.5\n605,193,15.0\n605,194,15.5\n605,195,16.0\n605,196,16.5\n605,197,17.0\n605,198,17.5\n605,199,18.0\n605,200,10.5\n605,201,10.0\n605,202,9.5\n605,203,9.0\n605,204,8.5\n605,205,8.0\n605,206,8.5\n605,207,9.0\n605,208,9.5\n605,209,10.0\n605,210,10.5\n605,211,11.0\n605,212,11.5\n605,213,12.0\n605,214,12.5\n605,215,13.0\n605,216,13.5\n605,217,14.0\n605,218,14.5\n605,219,15.0\n605,220,15.5\n605,221,16.0\n605,222,16.5\n605,223,17.0\n605,224,17.5\n605,225,10.0\n605,226,9.5\n605,227,9.0\n605,228,8.5\n605,229,8.0\n605,230,7.5\n605,231,8.0\n605,232,8.5\n605,233,9.0\n605,234,9.5\n605,235,10.0\n605,236,10.5\n605,237,11.0\n605,238,11.5\n605,239,12.0\n605,240,12.5\n605,241,13.0\n605,242,13.5\n605,243,14.0\n605,244,14.5\n605,245,15.0\n605,246,15.5\n605,247,16.0\n605,248,16.5\n605,249,17.0\n605,250,9.5\n605,251,9.0\n605,252,8.5\n605,253,8.0\n605,254,7.5\n605,255,7.0\n605,256,7.5\n605,257,8.0\n605,258,8.5\n605,259,9.0\n605,260,9.5\n605,261,10.0\n605,262,10.5\n605,263,11.0\n605,264,11.5\n605,265,12.0\n605,266,12.5\n605,267,13.0\n605,268,13.5\n605,269,14.0\n605,270,14.5\n605,271,15.0\n605,272,15.5\n605,273,16.0\n605,274,16.5\n605,275,9.0\n605,276,8.5\n605,277,8.0\n605,278,7.5\n605,279,7.0\n605,280,6.5\n605,281,7.0\n605,282,7.5\n605,283,8.0\n605,284,8.5\n605,285,9.0\n605,286,9.5\n605,287,10.0\n605,288,10.5\n605,289,11.0\n605,290,11.5\n605,291,12.0\n605,292,12.5\n605,293,13.0\n605,294,13.5\n605,295,14.0\n605,296,14.5\n605,297,15.0\n605,298,15.5\n605,299,16.0\n605,300,8.5\n605,301,8.0\n605,302,7.5\n605,303,7.0\n605,304,6.5\n605,305,6.0\n605,306,6.5\n605,307,7.0\n605,308,7.5\n605,309,8.0\n605,310,8.5\n605,311,9.0\n605,312,9.5\n605,313,10.0\n605,314,10.5\n605,315,11.0\n605,316,11.5\n605,317,12.0\n605,318,12.5\n605,319,13.0\n605,320,13.5\n605,321,14.0\n605,322,14.5\n605,323,15.0\n605,324,15.5\n605,325,8.0\n605,326,7.5\n605,327,7.0\n605,328,6.5\n605,329,6.0\n605,330,5.5\n605,331,6.0\n605,332,6.5\n605,333,7.0\n605,334,7.5\n605,335,8.0\n605,336,8.5\n605,337,9.0\n605,338,9.5\n605,339,10.0\n605,340,10.5\n605,341,11.0\n605,342,11.5\n605,343,12.0\n605,344,12.5\n605,345,13.0\n605,346,13.5\n605,347,14.0\n605,348,14.5\n605,349,15.0\n605,350,7.5\n605,351,7.0\n605,352,6.5\n605,353,6.0\n605,354,5.5\n605,355,5.0\n605,356,5.5\n605,357,6.0\n605,358,6.5\n605,359,7.0\n605,360,7.5\n605,361,8.0\n605,362,8.5\n605,363,9.0\n605,364,9.5\n605,365,10.0\n605,366,10.5\n605,367,11.0\n605,368,11.5\n605,369,12.0\n605,370,12.5\n605,371,13.0\n605,372,13.5\n605,373,14.0\n605,374,14.5\n605,375,7.0\n605,376,6.5\n605,377,6.0\n605,378,5.5\n605,379,5.0\n605,380,4.5\n605,381,5.0\n605,382,5.5\n605,383,6.0\n605,384,6.5\n605,385,7.0\n605,386,7.5\n605,387,8.0\n605,388,8.5\n605,389,9.0\n605,390,9.5\n605,391,10.0\n605,392,10.5\n605,393,11.0\n605,394,11.5\n605,395,12.0\n605,396,12.5\n605,397,13.0\n605,398,13.5\n605,399,14.0\n605,400,6.5\n605,401,6.0\n605,402,5.5\n605,403,5.0\n605,404,4.5\n605,405,4.0\n605,406,4.5\n605,407,5.0\n605,408,5.5\n605,409,6.0\n605,410,6.5\n605,411,7.0\n605,412,7.5\n605,413,8.0\n605,414,8.5\n605,415,9.0\n605,416,9.5\n605,417,10.0\n605,418,10.5\n605,419,11.0\n605,420,11.5\n605,421,12.0\n605,422,12.5\n605,423,13.0\n605,424,13.5\n605,425,6.0\n605,426,5.5\n605,427,5.0\n605,428,4.5\n605,429,4.0\n605,430,3.5\n605,431,4.0\n605,432,4.5\n605,433,5.0\n605,434,5.5\n605,435,6.0\n605,436,6.5\n605,437,7.0\n605,438,7.5\n605,439,8.0\n605,440,8.5\n605,441,9.0\n605,442,9.5\n605,443,10.0\n605,444,10.5\n605,445,11.0\n605,446,11.5\n605,447,12.0\n605,448,12.5\n605,449,13.0\n605,450,5.5\n605,451,5.0\n605,452,4.5\n605,453,4.0\n605,454,3.5\n605,455,3.0\n605,456,3.5\n605,457,4.0\n605,458,4.5\n605,459,5.0\n605,460,5.5\n605,461,6.0\n605,462,6.5\n605,463,7.0\n605,464,7.5\n605,465,8.0\n605,466,8.5\n605,467,9.0\n605,468,9.5\n605,469,10.0\n605,470,10.5\n605,471,11.0\n605,472,11.5\n605,473,12.0\n605,474,12.5\n605,475,5.0\n605,476,4.5\n605,477,4.0\n605,478,3.5\n605,479,3.0\n605,480,2.5\n605,481,3.0\n605,482,3.5\n605,483,4.0\n605,484,4.5\n605,485,5.0\n605,486,5.5\n605,487,6.0\n605,488,6.5\n605,489,7.0\n605,490,7.5\n605,491,8.0\n605,492,8.5\n605,493,9.0\n605,494,9.5\n605,495,10.0\n605,496,10.5\n605,497,11.0\n605,498,11.5\n605,499,12.0\n605,500,4.5\n605,501,4.0\n605,502,3.5\n605,503,3.0\n605,504,2.5\n605,505,2.0\n605,506,2.5\n605,507,3.0\n605,508,3.5\n605,509,4.0\n605,510,4.5\n605,511,5.0\n605,512,5.5\n605,513,6.0\n605,514,6.5\n605,515,7.0\n605,516,7.5\n605,517,8.0\n605,518,8.5\n605,519,9.0\n605,520,9.5\n605,521,10.0\n605,522,10.5\n605,523,11.0\n605,524,11.5\n605,525,4.0\n605,526,3.5\n605,527,3.0\n605,528,2.5\n605,529,2.0\n605,530,1.5\n605,531,2.0\n605,532,2.5\n605,533,3.0\n605,534,3.5\n605,535,4.0\n605,536,4.5\n605,537,5.0\n605,538,5.5\n605,539,6.0\n605,540,6.5\n605,541,7.0\n605,542,7.5\n605,543,8.0\n605,544,8.5\n605,545,9.0\n605,546,9.5\n605,547,10.0\n605,548,10.5\n605,549,11.0\n605,550,3.5\n605,551,3.0\n605,552,2.5\n605,553,2.0\n605,554,1.5\n605,555,1.0\n605,556,1.5\n605,557,2.0\n605,558,2.5\n605,559,3.0\n605,560,3.5\n605,561,4.0\n605,562,4.5\n605,563,5.0\n605,564,5.5\n605,565,6.0\n605,566,6.5\n605,567,7.0\n605,568,7.5\n605,569,8.0\n605,570,8.5\n605,571,9.0\n605,572,9.5\n605,573,10.0\n605,574,10.5\n605,575,3.0\n605,576,2.5\n605,577,2.0\n605,578,1.5\n605,579,1.0\n605,580,0.5\n605,581,1.0\n605,582,1.5\n605,583,2.0\n605,584,2.5\n605,585,3.0\n605,586,3.5\n605,587,4.0\n605,588,4.5\n605,589,5.0\n605,590,5.5\n605,591,6.0\n605,592,6.5\n605,593,7.0\n605,594,7.5\n605,595,8.0\n605,596,8.5\n605,597,9.0\n605,598,9.5\n605,599,10.0\n605,600,2.5\n605,601,2.0\n605,602,1.5\n605,603,1.0\n605,604,0.5\n605,605,0\n605,606,0.5\n605,607,1.0\n605,608,1.5\n605,609,2.0\n605,610,2.5\n605,611,3.0\n605,612,3.5\n605,613,4.0\n605,614,4.5\n605,615,5.0\n605,616,5.5\n605,617,6.0\n605,618,6.5\n605,619,7.0\n605,620,7.5\n605,621,8.0\n605,622,8.5\n605,623,9.0\n605,624,9.5\n606,0,15.0\n606,1,14.5\n606,2,14.0\n606,3,13.5\n606,4,13.0\n606,5,12.5\n606,6,12.0\n606,7,12.5\n606,8,13.0\n606,9,13.5\n606,10,14.0\n606,11,14.5\n606,12,15.0\n606,13,15.5\n606,14,16.0\n606,15,16.5\n606,16,17.0\n606,17,17.5\n606,18,18.0\n606,19,18.5\n606,20,19.0\n606,21,19.5\n606,22,20.0\n606,23,20.5\n606,24,21.0\n606,25,14.5\n606,26,14.0\n606,27,13.5\n606,28,13.0\n606,29,12.5\n606,30,12.0\n606,31,11.5\n606,32,12.0\n606,33,12.5\n606,34,13.0\n606,35,13.5\n606,36,14.0\n606,37,14.5\n606,38,15.0\n606,39,15.5\n606,40,16.0\n606,41,16.5\n606,42,17.0\n606,43,17.5\n606,44,18.0\n606,45,18.5\n606,46,19.0\n606,47,19.5\n606,48,20.0\n606,49,20.5\n606,50,14.0\n606,51,13.5\n606,52,13.0\n606,53,12.5\n606,54,12.0\n606,55,11.5\n606,56,11.0\n606,57,11.5\n606,58,12.0\n606,59,12.5\n606,60,13.0\n606,61,13.5\n606,62,14.0\n606,63,14.5\n606,64,15.0\n606,65,15.5\n606,66,16.0\n606,67,16.5\n606,68,17.0\n606,69,17.5\n606,70,18.0\n606,71,18.5\n606,72,19.0\n606,73,19.5\n606,74,20.0\n606,75,13.5\n606,76,13.0\n606,77,12.5\n606,78,12.0\n606,79,11.5\n606,80,11.0\n606,81,10.5\n606,82,11.0\n606,83,11.5\n606,84,12.0\n606,85,12.5\n606,86,13.0\n606,87,13.5\n606,88,14.0\n606,89,14.5\n606,90,15.0\n606,91,15.5\n606,92,16.0\n606,93,16.5\n606,94,17.0\n606,95,17.5\n606,96,18.0\n606,97,18.5\n606,98,19.0\n606,99,19.5\n606,100,13.0\n606,101,12.5\n606,102,12.0\n606,103,11.5\n606,104,11.0\n606,105,10.5\n606,106,10.0\n606,107,10.5\n606,108,11.0\n606,109,11.5\n606,110,12.0\n606,111,12.5\n606,112,13.0\n606,113,13.5\n606,114,14.0\n606,115,14.5\n606,116,15.0\n606,117,15.5\n606,118,16.0\n606,119,16.5\n606,120,17.0\n606,121,17.5\n606,122,18.0\n606,123,18.5\n606,124,19.0\n606,125,12.5\n606,126,12.0\n606,127,11.5\n606,128,11.0\n606,129,10.5\n606,130,10.0\n606,131,9.5\n606,132,10.0\n606,133,10.5\n606,134,11.0\n606,135,11.5\n606,136,12.0\n606,137,12.5\n606,138,13.0\n606,139,13.5\n606,140,14.0\n606,141,14.5\n606,142,15.0\n606,143,15.5\n606,144,16.0\n606,145,16.5\n606,146,17.0\n606,147,17.5\n606,148,18.0\n606,149,18.5\n606,150,12.0\n606,151,11.5\n606,152,11.0\n606,153,10.5\n606,154,10.0\n606,155,9.5\n606,156,9.0\n606,157,9.5\n606,158,10.0\n606,159,10.5\n606,160,11.0\n606,161,11.5\n606,162,12.0\n606,163,12.5\n606,164,13.0\n606,165,13.5\n606,166,14.0\n606,167,14.5\n606,168,15.0\n606,169,15.5\n606,170,16.0\n606,171,16.5\n606,172,17.0\n606,173,17.5\n606,174,18.0\n606,175,11.5\n606,176,11.0\n606,177,10.5\n606,178,10.0\n606,179,9.5\n606,180,9.0\n606,181,8.5\n606,182,9.0\n606,183,9.5\n606,184,10.0\n606,185,10.5\n606,186,11.0\n606,187,11.5\n606,188,12.0\n606,189,12.5\n606,190,13.0\n606,191,13.5\n606,192,14.0\n606,193,14.5\n606,194,15.0\n606,195,15.5\n606,196,16.0\n606,197,16.5\n606,198,17.0\n606,199,17.5\n606,200,11.0\n606,201,10.5\n606,202,10.0\n606,203,9.5\n606,204,9.0\n606,205,8.5\n606,206,8.0\n606,207,8.5\n606,208,9.0\n606,209,9.5\n606,210,10.0\n606,211,10.5\n606,212,11.0\n606,213,11.5\n606,214,12.0\n606,215,12.5\n606,216,13.0\n606,217,13.5\n606,218,14.0\n606,219,14.5\n606,220,15.0\n606,221,15.5\n606,222,16.0\n606,223,16.5\n606,224,17.0\n606,225,10.5\n606,226,10.0\n606,227,9.5\n606,228,9.0\n606,229,8.5\n606,230,8.0\n606,231,7.5\n606,232,8.0\n606,233,8.5\n606,234,9.0\n606,235,9.5\n606,236,10.0\n606,237,10.5\n606,238,11.0\n606,239,11.5\n606,240,12.0\n606,241,12.5\n606,242,13.0\n606,243,13.5\n606,244,14.0\n606,245,14.5\n606,246,15.0\n606,247,15.5\n606,248,16.0\n606,249,16.5\n606,250,10.0\n606,251,9.5\n606,252,9.0\n606,253,8.5\n606,254,8.0\n606,255,7.5\n606,256,7.0\n606,257,7.5\n606,258,8.0\n606,259,8.5\n606,260,9.0\n606,261,9.5\n606,262,10.0\n606,263,10.5\n606,264,11.0\n606,265,11.5\n606,266,12.0\n606,267,12.5\n606,268,13.0\n606,269,13.5\n606,270,14.0\n606,271,14.5\n606,272,15.0\n606,273,15.5\n606,274,16.0\n606,275,9.5\n606,276,9.0\n606,277,8.5\n606,278,8.0\n606,279,7.5\n606,280,7.0\n606,281,6.5\n606,282,7.0\n606,283,7.5\n606,284,8.0\n606,285,8.5\n606,286,9.0\n606,287,9.5\n606,288,10.0\n606,289,10.5\n606,290,11.0\n606,291,11.5\n606,292,12.0\n606,293,12.5\n606,294,13.0\n606,295,13.5\n606,296,14.0\n606,297,14.5\n606,298,15.0\n606,299,15.5\n606,300,9.0\n606,301,8.5\n606,302,8.0\n606,303,7.5\n606,304,7.0\n606,305,6.5\n606,306,6.0\n606,307,6.5\n606,308,7.0\n606,309,7.5\n606,310,8.0\n606,311,8.5\n606,312,9.0\n606,313,9.5\n606,314,10.0\n606,315,10.5\n606,316,11.0\n606,317,11.5\n606,318,12.0\n606,319,12.5\n606,320,13.0\n606,321,13.5\n606,322,14.0\n606,323,14.5\n606,324,15.0\n606,325,8.5\n606,326,8.0\n606,327,7.5\n606,328,7.0\n606,329,6.5\n606,330,6.0\n606,331,5.5\n606,332,6.0\n606,333,6.5\n606,334,7.0\n606,335,7.5\n606,336,8.0\n606,337,8.5\n606,338,9.0\n606,339,9.5\n606,340,10.0\n606,341,10.5\n606,342,11.0\n606,343,11.5\n606,344,12.0\n606,345,12.5\n606,346,13.0\n606,347,13.5\n606,348,14.0\n606,349,14.5\n606,350,8.0\n606,351,7.5\n606,352,7.0\n606,353,6.5\n606,354,6.0\n606,355,5.5\n606,356,5.0\n606,357,5.5\n606,358,6.0\n606,359,6.5\n606,360,7.0\n606,361,7.5\n606,362,8.0\n606,363,8.5\n606,364,9.0\n606,365,9.5\n606,366,10.0\n606,367,10.5\n606,368,11.0\n606,369,11.5\n606,370,12.0\n606,371,12.5\n606,372,13.0\n606,373,13.5\n606,374,14.0\n606,375,7.5\n606,376,7.0\n606,377,6.5\n606,378,6.0\n606,379,5.5\n606,380,5.0\n606,381,4.5\n606,382,5.0\n606,383,5.5\n606,384,6.0\n606,385,6.5\n606,386,7.0\n606,387,7.5\n606,388,8.0\n606,389,8.5\n606,390,9.0\n606,391,9.5\n606,392,10.0\n606,393,10.5\n606,394,11.0\n606,395,11.5\n606,396,12.0\n606,397,12.5\n606,398,13.0\n606,399,13.5\n606,400,7.0\n606,401,6.5\n606,402,6.0\n606,403,5.5\n606,404,5.0\n606,405,4.5\n606,406,4.0\n606,407,4.5\n606,408,5.0\n606,409,5.5\n606,410,6.0\n606,411,6.5\n606,412,7.0\n606,413,7.5\n606,414,8.0\n606,415,8.5\n606,416,9.0\n606,417,9.5\n606,418,10.0\n606,419,10.5\n606,420,11.0\n606,421,11.5\n606,422,12.0\n606,423,12.5\n606,424,13.0\n606,425,6.5\n606,426,6.0\n606,427,5.5\n606,428,5.0\n606,429,4.5\n606,430,4.0\n606,431,3.5\n606,432,4.0\n606,433,4.5\n606,434,5.0\n606,435,5.5\n606,436,6.0\n606,437,6.5\n606,438,7.0\n606,439,7.5\n606,440,8.0\n606,441,8.5\n606,442,9.0\n606,443,9.5\n606,444,10.0\n606,445,10.5\n606,446,11.0\n606,447,11.5\n606,448,12.0\n606,449,12.5\n606,450,6.0\n606,451,5.5\n606,452,5.0\n606,453,4.5\n606,454,4.0\n606,455,3.5\n606,456,3.0\n606,457,3.5\n606,458,4.0\n606,459,4.5\n606,460,5.0\n606,461,5.5\n606,462,6.0\n606,463,6.5\n606,464,7.0\n606,465,7.5\n606,466,8.0\n606,467,8.5\n606,468,9.0\n606,469,9.5\n606,470,10.0\n606,471,10.5\n606,472,11.0\n606,473,11.5\n606,474,12.0\n606,475,5.5\n606,476,5.0\n606,477,4.5\n606,478,4.0\n606,479,3.5\n606,480,3.0\n606,481,2.5\n606,482,3.0\n606,483,3.5\n606,484,4.0\n606,485,4.5\n606,486,5.0\n606,487,5.5\n606,488,6.0\n606,489,6.5\n606,490,7.0\n606,491,7.5\n606,492,8.0\n606,493,8.5\n606,494,9.0\n606,495,9.5\n606,496,10.0\n606,497,10.5\n606,498,11.0\n606,499,11.5\n606,500,5.0\n606,501,4.5\n606,502,4.0\n606,503,3.5\n606,504,3.0\n606,505,2.5\n606,506,2.0\n606,507,2.5\n606,508,3.0\n606,509,3.5\n606,510,4.0\n606,511,4.5\n606,512,5.0\n606,513,5.5\n606,514,6.0\n606,515,6.5\n606,516,7.0\n606,517,7.5\n606,518,8.0\n606,519,8.5\n606,520,9.0\n606,521,9.5\n606,522,10.0\n606,523,10.5\n606,524,11.0\n606,525,4.5\n606,526,4.0\n606,527,3.5\n606,528,3.0\n606,529,2.5\n606,530,2.0\n606,531,1.5\n606,532,2.0\n606,533,2.5\n606,534,3.0\n606,535,3.5\n606,536,4.0\n606,537,4.5\n606,538,5.0\n606,539,5.5\n606,540,6.0\n606,541,6.5\n606,542,7.0\n606,543,7.5\n606,544,8.0\n606,545,8.5\n606,546,9.0\n606,547,9.5\n606,548,10.0\n606,549,10.5\n606,550,4.0\n606,551,3.5\n606,552,3.0\n606,553,2.5\n606,554,2.0\n606,555,1.5\n606,556,1.0\n606,557,1.5\n606,558,2.0\n606,559,2.5\n606,560,3.0\n606,561,3.5\n606,562,4.0\n606,563,4.5\n606,564,5.0\n606,565,5.5\n606,566,6.0\n606,567,6.5\n606,568,7.0\n606,569,7.5\n606,570,8.0\n606,571,8.5\n606,572,9.0\n606,573,9.5\n606,574,10.0\n606,575,3.5\n606,576,3.0\n606,577,2.5\n606,578,2.0\n606,579,1.5\n606,580,1.0\n606,581,0.5\n606,582,1.0\n606,583,1.5\n606,584,2.0\n606,585,2.5\n606,586,3.0\n606,587,3.5\n606,588,4.0\n606,589,4.5\n606,590,5.0\n606,591,5.5\n606,592,6.0\n606,593,6.5\n606,594,7.0\n606,595,7.5\n606,596,8.0\n606,597,8.5\n606,598,9.0\n606,599,9.5\n606,600,3.0\n606,601,2.5\n606,602,2.0\n606,603,1.5\n606,604,1.0\n606,605,0.5\n606,606,0\n606,607,0.5\n606,608,1.0\n606,609,1.5\n606,610,2.0\n606,611,2.5\n606,612,3.0\n606,613,3.5\n606,614,4.0\n606,615,4.5\n606,616,5.0\n606,617,5.5\n606,618,6.0\n606,619,6.5\n606,620,7.0\n606,621,7.5\n606,622,8.0\n606,623,8.5\n606,624,9.0\n607,0,15.5\n607,1,15.0\n607,2,14.5\n607,3,14.0\n607,4,13.5\n607,5,13.0\n607,6,12.5\n607,7,12.0\n607,8,12.5\n607,9,13.0\n607,10,13.5\n607,11,14.0\n607,12,14.5\n607,13,15.0\n607,14,15.5\n607,15,16.0\n607,16,16.5\n607,17,17.0\n607,18,17.5\n607,19,18.0\n607,20,18.5\n607,21,19.0\n607,22,19.5\n607,23,20.0\n607,24,20.5\n607,25,15.0\n607,26,14.5\n607,27,14.0\n607,28,13.5\n607,29,13.0\n607,30,12.5\n607,31,12.0\n607,32,11.5\n607,33,12.0\n607,34,12.5\n607,35,13.0\n607,36,13.5\n607,37,14.0\n607,38,14.5\n607,39,15.0\n607,40,15.5\n607,41,16.0\n607,42,16.5\n607,43,17.0\n607,44,17.5\n607,45,18.0\n607,46,18.5\n607,47,19.0\n607,48,19.5\n607,49,20.0\n607,50,14.5\n607,51,14.0\n607,52,13.5\n607,53,13.0\n607,54,12.5\n607,55,12.0\n607,56,11.5\n607,57,11.0\n607,58,11.5\n607,59,12.0\n607,60,12.5\n607,61,13.0\n607,62,13.5\n607,63,14.0\n607,64,14.5\n607,65,15.0\n607,66,15.5\n607,67,16.0\n607,68,16.5\n607,69,17.0\n607,70,17.5\n607,71,18.0\n607,72,18.5\n607,73,19.0\n607,74,19.5\n607,75,14.0\n607,76,13.5\n607,77,13.0\n607,78,12.5\n607,79,12.0\n607,80,11.5\n607,81,11.0\n607,82,10.5\n607,83,11.0\n607,84,11.5\n607,85,12.0\n607,86,12.5\n607,87,13.0\n607,88,13.5\n607,89,14.0\n607,90,14.5\n607,91,15.0\n607,92,15.5\n607,93,16.0\n607,94,16.5\n607,95,17.0\n607,96,17.5\n607,97,18.0\n607,98,18.5\n607,99,19.0\n607,100,13.5\n607,101,13.0\n607,102,12.5\n607,103,12.0\n607,104,11.5\n607,105,11.0\n607,106,10.5\n607,107,10.0\n607,108,10.5\n607,109,11.0\n607,110,11.5\n607,111,12.0\n607,112,12.5\n607,113,13.0\n607,114,13.5\n607,115,14.0\n607,116,14.5\n607,117,15.0\n607,118,15.5\n607,119,16.0\n607,120,16.5\n607,121,17.0\n607,122,17.5\n607,123,18.0\n607,124,18.5\n607,125,13.0\n607,126,12.5\n607,127,12.0\n607,128,11.5\n607,129,11.0\n607,130,10.5\n607,131,10.0\n607,132,9.5\n607,133,10.0\n607,134,10.5\n607,135,11.0\n607,136,11.5\n607,137,12.0\n607,138,12.5\n607,139,13.0\n607,140,13.5\n607,141,14.0\n607,142,14.5\n607,143,15.0\n607,144,15.5\n607,145,16.0\n607,146,16.5\n607,147,17.0\n607,148,17.5\n607,149,18.0\n607,150,12.5\n607,151,12.0\n607,152,11.5\n607,153,11.0\n607,154,10.5\n607,155,10.0\n607,156,9.5\n607,157,9.0\n607,158,9.5\n607,159,10.0\n607,160,10.5\n607,161,11.0\n607,162,11.5\n607,163,12.0\n607,164,12.5\n607,165,13.0\n607,166,13.5\n607,167,14.0\n607,168,14.5\n607,169,15.0\n607,170,15.5\n607,171,16.0\n607,172,16.5\n607,173,17.0\n607,174,17.5\n607,175,12.0\n607,176,11.5\n607,177,11.0\n607,178,10.5\n607,179,10.0\n607,180,9.5\n607,181,9.0\n607,182,8.5\n607,183,9.0\n607,184,9.5\n607,185,10.0\n607,186,10.5\n607,187,11.0\n607,188,11.5\n607,189,12.0\n607,190,12.5\n607,191,13.0\n607,192,13.5\n607,193,14.0\n607,194,14.5\n607,195,15.0\n607,196,15.5\n607,197,16.0\n607,198,16.5\n607,199,17.0\n607,200,11.5\n607,201,11.0\n607,202,10.5\n607,203,10.0\n607,204,9.5\n607,205,9.0\n607,206,8.5\n607,207,8.0\n607,208,8.5\n607,209,9.0\n607,210,9.5\n607,211,10.0\n607,212,10.5\n607,213,11.0\n607,214,11.5\n607,215,12.0\n607,216,12.5\n607,217,13.0\n607,218,13.5\n607,219,14.0\n607,220,14.5\n607,221,15.0\n607,222,15.5\n607,223,16.0\n607,224,16.5\n607,225,11.0\n607,226,10.5\n607,227,10.0\n607,228,9.5\n607,229,9.0\n607,230,8.5\n607,231,8.0\n607,232,7.5\n607,233,8.0\n607,234,8.5\n607,235,9.0\n607,236,9.5\n607,237,10.0\n607,238,10.5\n607,239,11.0\n607,240,11.5\n607,241,12.0\n607,242,12.5\n607,243,13.0\n607,244,13.5\n607,245,14.0\n607,246,14.5\n607,247,15.0\n607,248,15.5\n607,249,16.0\n607,250,10.5\n607,251,10.0\n607,252,9.5\n607,253,9.0\n607,254,8.5\n607,255,8.0\n607,256,7.5\n607,257,7.0\n607,258,7.5\n607,259,8.0\n607,260,8.5\n607,261,9.0\n607,262,9.5\n607,263,10.0\n607,264,10.5\n607,265,11.0\n607,266,11.5\n607,267,12.0\n607,268,12.5\n607,269,13.0\n607,270,13.5\n607,271,14.0\n607,272,14.5\n607,273,15.0\n607,274,15.5\n607,275,10.0\n607,276,9.5\n607,277,9.0\n607,278,8.5\n607,279,8.0\n607,280,7.5\n607,281,7.0\n607,282,6.5\n607,283,7.0\n607,284,7.5\n607,285,8.0\n607,286,8.5\n607,287,9.0\n607,288,9.5\n607,289,10.0\n607,290,10.5\n607,291,11.0\n607,292,11.5\n607,293,12.0\n607,294,12.5\n607,295,13.0\n607,296,13.5\n607,297,14.0\n607,298,14.5\n607,299,15.0\n607,300,9.5\n607,301,9.0\n607,302,8.5\n607,303,8.0\n607,304,7.5\n607,305,7.0\n607,306,6.5\n607,307,6.0\n607,308,6.5\n607,309,7.0\n607,310,7.5\n607,311,8.0\n607,312,8.5\n607,313,9.0\n607,314,9.5\n607,315,10.0\n607,316,10.5\n607,317,11.0\n607,318,11.5\n607,319,12.0\n607,320,12.5\n607,321,13.0\n607,322,13.5\n607,323,14.0\n607,324,14.5\n607,325,9.0\n607,326,8.5\n607,327,8.0\n607,328,7.5\n607,329,7.0\n607,330,6.5\n607,331,6.0\n607,332,5.5\n607,333,6.0\n607,334,6.5\n607,335,7.0\n607,336,7.5\n607,337,8.0\n607,338,8.5\n607,339,9.0\n607,340,9.5\n607,341,10.0\n607,342,10.5\n607,343,11.0\n607,344,11.5\n607,345,12.0\n607,346,12.5\n607,347,13.0\n607,348,13.5\n607,349,14.0\n607,350,8.5\n607,351,8.0\n607,352,7.5\n607,353,7.0\n607,354,6.5\n607,355,6.0\n607,356,5.5\n607,357,5.0\n607,358,5.5\n607,359,6.0\n607,360,6.5\n607,361,7.0\n607,362,7.5\n607,363,8.0\n607,364,8.5\n607,365,9.0\n607,366,9.5\n607,367,10.0\n607,368,10.5\n607,369,11.0\n607,370,11.5\n607,371,12.0\n607,372,12.5\n607,373,13.0\n607,374,13.5\n607,375,8.0\n607,376,7.5\n607,377,7.0\n607,378,6.5\n607,379,6.0\n607,380,5.5\n607,381,5.0\n607,382,4.5\n607,383,5.0\n607,384,5.5\n607,385,6.0\n607,386,6.5\n607,387,7.0\n607,388,7.5\n607,389,8.0\n607,390,8.5\n607,391,9.0\n607,392,9.5\n607,393,10.0\n607,394,10.5\n607,395,11.0\n607,396,11.5\n607,397,12.0\n607,398,12.5\n607,399,13.0\n607,400,7.5\n607,401,7.0\n607,402,6.5\n607,403,6.0\n607,404,5.5\n607,405,5.0\n607,406,4.5\n607,407,4.0\n607,408,4.5\n607,409,5.0\n607,410,5.5\n607,411,6.0\n607,412,6.5\n607,413,7.0\n607,414,7.5\n607,415,8.0\n607,416,8.5\n607,417,9.0\n607,418,9.5\n607,419,10.0\n607,420,10.5\n607,421,11.0\n607,422,11.5\n607,423,12.0\n607,424,12.5\n607,425,7.0\n607,426,6.5\n607,427,6.0\n607,428,5.5\n607,429,5.0\n607,430,4.5\n607,431,4.0\n607,432,3.5\n607,433,4.0\n607,434,4.5\n607,435,5.0\n607,436,5.5\n607,437,6.0\n607,438,6.5\n607,439,7.0\n607,440,7.5\n607,441,8.0\n607,442,8.5\n607,443,9.0\n607,444,9.5\n607,445,10.0\n607,446,10.5\n607,447,11.0\n607,448,11.5\n607,449,12.0\n607,450,6.5\n607,451,6.0\n607,452,5.5\n607,453,5.0\n607,454,4.5\n607,455,4.0\n607,456,3.5\n607,457,3.0\n607,458,3.5\n607,459,4.0\n607,460,4.5\n607,461,5.0\n607,462,5.5\n607,463,6.0\n607,464,6.5\n607,465,7.0\n607,466,7.5\n607,467,8.0\n607,468,8.5\n607,469,9.0\n607,470,9.5\n607,471,10.0\n607,472,10.5\n607,473,11.0\n607,474,11.5\n607,475,6.0\n607,476,5.5\n607,477,5.0\n607,478,4.5\n607,479,4.0\n607,480,3.5\n607,481,3.0\n607,482,2.5\n607,483,3.0\n607,484,3.5\n607,485,4.0\n607,486,4.5\n607,487,5.0\n607,488,5.5\n607,489,6.0\n607,490,6.5\n607,491,7.0\n607,492,7.5\n607,493,8.0\n607,494,8.5\n607,495,9.0\n607,496,9.5\n607,497,10.0\n607,498,10.5\n607,499,11.0\n607,500,5.5\n607,501,5.0\n607,502,4.5\n607,503,4.0\n607,504,3.5\n607,505,3.0\n607,506,2.5\n607,507,2.0\n607,508,2.5\n607,509,3.0\n607,510,3.5\n607,511,4.0\n607,512,4.5\n607,513,5.0\n607,514,5.5\n607,515,6.0\n607,516,6.5\n607,517,7.0\n607,518,7.5\n607,519,8.0\n607,520,8.5\n607,521,9.0\n607,522,9.5\n607,523,10.0\n607,524,10.5\n607,525,5.0\n607,526,4.5\n607,527,4.0\n607,528,3.5\n607,529,3.0\n607,530,2.5\n607,531,2.0\n607,532,1.5\n607,533,2.0\n607,534,2.5\n607,535,3.0\n607,536,3.5\n607,537,4.0\n607,538,4.5\n607,539,5.0\n607,540,5.5\n607,541,6.0\n607,542,6.5\n607,543,7.0\n607,544,7.5\n607,545,8.0\n607,546,8.5\n607,547,9.0\n607,548,9.5\n607,549,10.0\n607,550,4.5\n607,551,4.0\n607,552,3.5\n607,553,3.0\n607,554,2.5\n607,555,2.0\n607,556,1.5\n607,557,1.0\n607,558,1.5\n607,559,2.0\n607,560,2.5\n607,561,3.0\n607,562,3.5\n607,563,4.0\n607,564,4.5\n607,565,5.0\n607,566,5.5\n607,567,6.0\n607,568,6.5\n607,569,7.0\n607,570,7.5\n607,571,8.0\n607,572,8.5\n607,573,9.0\n607,574,9.5\n607,575,4.0\n607,576,3.5\n607,577,3.0\n607,578,2.5\n607,579,2.0\n607,580,1.5\n607,581,1.0\n607,582,0.5\n607,583,1.0\n607,584,1.5\n607,585,2.0\n607,586,2.5\n607,587,3.0\n607,588,3.5\n607,589,4.0\n607,590,4.5\n607,591,5.0\n607,592,5.5\n607,593,6.0\n607,594,6.5\n607,595,7.0\n607,596,7.5\n607,597,8.0\n607,598,8.5\n607,599,9.0\n607,600,3.5\n607,601,3.0\n607,602,2.5\n607,603,2.0\n607,604,1.5\n607,605,1.0\n607,606,0.5\n607,607,0\n607,608,0.5\n607,609,1.0\n607,610,1.5\n607,611,2.0\n607,612,2.5\n607,613,3.0\n607,614,3.5\n607,615,4.0\n607,616,4.5\n607,617,5.0\n607,618,5.5\n607,619,6.0\n607,620,6.5\n607,621,7.0\n607,622,7.5\n607,623,8.0\n607,624,8.5\n608,0,16.0\n608,1,15.5\n608,2,15.0\n608,3,14.5\n608,4,14.0\n608,5,13.5\n608,6,13.0\n608,7,12.5\n608,8,12.0\n608,9,12.5\n608,10,13.0\n608,11,13.5\n608,12,14.0\n608,13,14.5\n608,14,15.0\n608,15,15.5\n608,16,16.0\n608,17,16.5\n608,18,17.0\n608,19,17.5\n608,20,18.0\n608,21,18.5\n608,22,19.0\n608,23,19.5\n608,24,20.0\n608,25,15.5\n608,26,15.0\n608,27,14.5\n608,28,14.0\n608,29,13.5\n608,30,13.0\n608,31,12.5\n608,32,12.0\n608,33,11.5\n608,34,12.0\n608,35,12.5\n608,36,13.0\n608,37,13.5\n608,38,14.0\n608,39,14.5\n608,40,15.0\n608,41,15.5\n608,42,16.0\n608,43,16.5\n608,44,17.0\n608,45,17.5\n608,46,18.0\n608,47,18.5\n608,48,19.0\n608,49,19.5\n608,50,15.0\n608,51,14.5\n608,52,14.0\n608,53,13.5\n608,54,13.0\n608,55,12.5\n608,56,12.0\n608,57,11.5\n608,58,11.0\n608,59,11.5\n608,60,12.0\n608,61,12.5\n608,62,13.0\n608,63,13.5\n608,64,14.0\n608,65,14.5\n608,66,15.0\n608,67,15.5\n608,68,16.0\n608,69,16.5\n608,70,17.0\n608,71,17.5\n608,72,18.0\n608,73,18.5\n608,74,19.0\n608,75,14.5\n608,76,14.0\n608,77,13.5\n608,78,13.0\n608,79,12.5\n608,80,12.0\n608,81,11.5\n608,82,11.0\n608,83,10.5\n608,84,11.0\n608,85,11.5\n608,86,12.0\n608,87,12.5\n608,88,13.0\n608,89,13.5\n608,90,14.0\n608,91,14.5\n608,92,15.0\n608,93,15.5\n608,94,16.0\n608,95,16.5\n608,96,17.0\n608,97,17.5\n608,98,18.0\n608,99,18.5\n608,100,14.0\n608,101,13.5\n608,102,13.0\n608,103,12.5\n608,104,12.0\n608,105,11.5\n608,106,11.0\n608,107,10.5\n608,108,10.0\n608,109,10.5\n608,110,11.0\n608,111,11.5\n608,112,12.0\n608,113,12.5\n608,114,13.0\n608,115,13.5\n608,116,14.0\n608,117,14.5\n608,118,15.0\n608,119,15.5\n608,120,16.0\n608,121,16.5\n608,122,17.0\n608,123,17.5\n608,124,18.0\n608,125,13.5\n608,126,13.0\n608,127,12.5\n608,128,12.0\n608,129,11.5\n608,130,11.0\n608,131,10.5\n608,132,10.0\n608,133,9.5\n608,134,10.0\n608,135,10.5\n608,136,11.0\n608,137,11.5\n608,138,12.0\n608,139,12.5\n608,140,13.0\n608,141,13.5\n608,142,14.0\n608,143,14.5\n608,144,15.0\n608,145,15.5\n608,146,16.0\n608,147,16.5\n608,148,17.0\n608,149,17.5\n608,150,13.0\n608,151,12.5\n608,152,12.0\n608,153,11.5\n608,154,11.0\n608,155,10.5\n608,156,10.0\n608,157,9.5\n608,158,9.0\n608,159,9.5\n608,160,10.0\n608,161,10.5\n608,162,11.0\n608,163,11.5\n608,164,12.0\n608,165,12.5\n608,166,13.0\n608,167,13.5\n608,168,14.0\n608,169,14.5\n608,170,15.0\n608,171,15.5\n608,172,16.0\n608,173,16.5\n608,174,17.0\n608,175,12.5\n608,176,12.0\n608,177,11.5\n608,178,11.0\n608,179,10.5\n608,180,10.0\n608,181,9.5\n608,182,9.0\n608,183,8.5\n608,184,9.0\n608,185,9.5\n608,186,10.0\n608,187,10.5\n608,188,11.0\n608,189,11.5\n608,190,12.0\n608,191,12.5\n608,192,13.0\n608,193,13.5\n608,194,14.0\n608,195,14.5\n608,196,15.0\n608,197,15.5\n608,198,16.0\n608,199,16.5\n608,200,12.0\n608,201,11.5\n608,202,11.0\n608,203,10.5\n608,204,10.0\n608,205,9.5\n608,206,9.0\n608,207,8.5\n608,208,8.0\n608,209,8.5\n608,210,9.0\n608,211,9.5\n608,212,10.0\n608,213,10.5\n608,214,11.0\n608,215,11.5\n608,216,12.0\n608,217,12.5\n608,218,13.0\n608,219,13.5\n608,220,14.0\n608,221,14.5\n608,222,15.0\n608,223,15.5\n608,224,16.0\n608,225,11.5\n608,226,11.0\n608,227,10.5\n608,228,10.0\n608,229,9.5\n608,230,9.0\n608,231,8.5\n608,232,8.0\n608,233,7.5\n608,234,8.0\n608,235,8.5\n608,236,9.0\n608,237,9.5\n608,238,10.0\n608,239,10.5\n608,240,11.0\n608,241,11.5\n608,242,12.0\n608,243,12.5\n608,244,13.0\n608,245,13.5\n608,246,14.0\n608,247,14.5\n608,248,15.0\n608,249,15.5\n608,250,11.0\n608,251,10.5\n608,252,10.0\n608,253,9.5\n608,254,9.0\n608,255,8.5\n608,256,8.0\n608,257,7.5\n608,258,7.0\n608,259,7.5\n608,260,8.0\n608,261,8.5\n608,262,9.0\n608,263,9.5\n608,264,10.0\n608,265,10.5\n608,266,11.0\n608,267,11.5\n608,268,12.0\n608,269,12.5\n608,270,13.0\n608,271,13.5\n608,272,14.0\n608,273,14.5\n608,274,15.0\n608,275,10.5\n608,276,10.0\n608,277,9.5\n608,278,9.0\n608,279,8.5\n608,280,8.0\n608,281,7.5\n608,282,7.0\n608,283,6.5\n608,284,7.0\n608,285,7.5\n608,286,8.0\n608,287,8.5\n608,288,9.0\n608,289,9.5\n608,290,10.0\n608,291,10.5\n608,292,11.0\n608,293,11.5\n608,294,12.0\n608,295,12.5\n608,296,13.0\n608,297,13.5\n608,298,14.0\n608,299,14.5\n608,300,10.0\n608,301,9.5\n608,302,9.0\n608,303,8.5\n608,304,8.0\n608,305,7.5\n608,306,7.0\n608,307,6.5\n608,308,6.0\n608,309,6.5\n608,310,7.0\n608,311,7.5\n608,312,8.0\n608,313,8.5\n608,314,9.0\n608,315,9.5\n608,316,10.0\n608,317,10.5\n608,318,11.0\n608,319,11.5\n608,320,12.0\n608,321,12.5\n608,322,13.0\n608,323,13.5\n608,324,14.0\n608,325,9.5\n608,326,9.0\n608,327,8.5\n608,328,8.0\n608,329,7.5\n608,330,7.0\n608,331,6.5\n608,332,6.0\n608,333,5.5\n608,334,6.0\n608,335,6.5\n608,336,7.0\n608,337,7.5\n608,338,8.0\n608,339,8.5\n608,340,9.0\n608,341,9.5\n608,342,10.0\n608,343,10.5\n608,344,11.0\n608,345,11.5\n608,346,12.0\n608,347,12.5\n608,348,13.0\n608,349,13.5\n608,350,9.0\n608,351,8.5\n608,352,8.0\n608,353,7.5\n608,354,7.0\n608,355,6.5\n608,356,6.0\n608,357,5.5\n608,358,5.0\n608,359,5.5\n608,360,6.0\n608,361,6.5\n608,362,7.0\n608,363,7.5\n608,364,8.0\n608,365,8.5\n608,366,9.0\n608,367,9.5\n608,368,10.0\n608,369,10.5\n608,370,11.0\n608,371,11.5\n608,372,12.0\n608,373,12.5\n608,374,13.0\n608,375,8.5\n608,376,8.0\n608,377,7.5\n608,378,7.0\n608,379,6.5\n608,380,6.0\n608,381,5.5\n608,382,5.0\n608,383,4.5\n608,384,5.0\n608,385,5.5\n608,386,6.0\n608,387,6.5\n608,388,7.0\n608,389,7.5\n608,390,8.0\n608,391,8.5\n608,392,9.0\n608,393,9.5\n608,394,10.0\n608,395,10.5\n608,396,11.0\n608,397,11.5\n608,398,12.0\n608,399,12.5\n608,400,8.0\n608,401,7.5\n608,402,7.0\n608,403,6.5\n608,404,6.0\n608,405,5.5\n608,406,5.0\n608,407,4.5\n608,408,4.0\n608,409,4.5\n608,410,5.0\n608,411,5.5\n608,412,6.0\n608,413,6.5\n608,414,7.0\n608,415,7.5\n608,416,8.0\n608,417,8.5\n608,418,9.0\n608,419,9.5\n608,420,10.0\n608,421,10.5\n608,422,11.0\n608,423,11.5\n608,424,12.0\n608,425,7.5\n608,426,7.0\n608,427,6.5\n608,428,6.0\n608,429,5.5\n608,430,5.0\n608,431,4.5\n608,432,4.0\n608,433,3.5\n608,434,4.0\n608,435,4.5\n608,436,5.0\n608,437,5.5\n608,438,6.0\n608,439,6.5\n608,440,7.0\n608,441,7.5\n608,442,8.0\n608,443,8.5\n608,444,9.0\n608,445,9.5\n608,446,10.0\n608,447,10.5\n608,448,11.0\n608,449,11.5\n608,450,7.0\n608,451,6.5\n608,452,6.0\n608,453,5.5\n608,454,5.0\n608,455,4.5\n608,456,4.0\n608,457,3.5\n608,458,3.0\n608,459,3.5\n608,460,4.0\n608,461,4.5\n608,462,5.0\n608,463,5.5\n608,464,6.0\n608,465,6.5\n608,466,7.0\n608,467,7.5\n608,468,8.0\n608,469,8.5\n608,470,9.0\n608,471,9.5\n608,472,10.0\n608,473,10.5\n608,474,11.0\n608,475,6.5\n608,476,6.0\n608,477,5.5\n608,478,5.0\n608,479,4.5\n608,480,4.0\n608,481,3.5\n608,482,3.0\n608,483,2.5\n608,484,3.0\n608,485,3.5\n608,486,4.0\n608,487,4.5\n608,488,5.0\n608,489,5.5\n608,490,6.0\n608,491,6.5\n608,492,7.0\n608,493,7.5\n608,494,8.0\n608,495,8.5\n608,496,9.0\n608,497,9.5\n608,498,10.0\n608,499,10.5\n608,500,6.0\n608,501,5.5\n608,502,5.0\n608,503,4.5\n608,504,4.0\n608,505,3.5\n608,506,3.0\n608,507,2.5\n608,508,2.0\n608,509,2.5\n608,510,3.0\n608,511,3.5\n608,512,4.0\n608,513,4.5\n608,514,5.0\n608,515,5.5\n608,516,6.0\n608,517,6.5\n608,518,7.0\n608,519,7.5\n608,520,8.0\n608,521,8.5\n608,522,9.0\n608,523,9.5\n608,524,10.0\n608,525,5.5\n608,526,5.0\n608,527,4.5\n608,528,4.0\n608,529,3.5\n608,530,3.0\n608,531,2.5\n608,532,2.0\n608,533,1.5\n608,534,2.0\n608,535,2.5\n608,536,3.0\n608,537,3.5\n608,538,4.0\n608,539,4.5\n608,540,5.0\n608,541,5.5\n608,542,6.0\n608,543,6.5\n608,544,7.0\n608,545,7.5\n608,546,8.0\n608,547,8.5\n608,548,9.0\n608,549,9.5\n608,550,5.0\n608,551,4.5\n608,552,4.0\n608,553,3.5\n608,554,3.0\n608,555,2.5\n608,556,2.0\n608,557,1.5\n608,558,1.0\n608,559,1.5\n608,560,2.0\n608,561,2.5\n608,562,3.0\n608,563,3.5\n608,564,4.0\n608,565,4.5\n608,566,5.0\n608,567,5.5\n608,568,6.0\n608,569,6.5\n608,570,7.0\n608,571,7.5\n608,572,8.0\n608,573,8.5\n608,574,9.0\n608,575,4.5\n608,576,4.0\n608,577,3.5\n608,578,3.0\n608,579,2.5\n608,580,2.0\n608,581,1.5\n608,582,1.0\n608,583,0.5\n608,584,1.0\n608,585,1.5\n608,586,2.0\n608,587,2.5\n608,588,3.0\n608,589,3.5\n608,590,4.0\n608,591,4.5\n608,592,5.0\n608,593,5.5\n608,594,6.0\n608,595,6.5\n608,596,7.0\n608,597,7.5\n608,598,8.0\n608,599,8.5\n608,600,4.0\n608,601,3.5\n608,602,3.0\n608,603,2.5\n608,604,2.0\n608,605,1.5\n608,606,1.0\n608,607,0.5\n608,608,0\n608,609,0.5\n608,610,1.0\n608,611,1.5\n608,612,2.0\n608,613,2.5\n608,614,3.0\n608,615,3.5\n608,616,4.0\n608,617,4.5\n608,618,5.0\n608,619,5.5\n608,620,6.0\n608,621,6.5\n608,622,7.0\n608,623,7.5\n608,624,8.0\n609,0,16.5\n609,1,16.0\n609,2,15.5\n609,3,15.0\n609,4,14.5\n609,5,14.0\n609,6,13.5\n609,7,13.0\n609,8,12.5\n609,9,12.0\n609,10,12.5\n609,11,13.0\n609,12,13.5\n609,13,14.0\n609,14,14.5\n609,15,15.0\n609,16,15.5\n609,17,16.0\n609,18,16.5\n609,19,17.0\n609,20,17.5\n609,21,18.0\n609,22,18.5\n609,23,19.0\n609,24,19.5\n609,25,16.0\n609,26,15.5\n609,27,15.0\n609,28,14.5\n609,29,14.0\n609,30,13.5\n609,31,13.0\n609,32,12.5\n609,33,12.0\n609,34,11.5\n609,35,12.0\n609,36,12.5\n609,37,13.0\n609,38,13.5\n609,39,14.0\n609,40,14.5\n609,41,15.0\n609,42,15.5\n609,43,16.0\n609,44,16.5\n609,45,17.0\n609,46,17.5\n609,47,18.0\n609,48,18.5\n609,49,19.0\n609,50,15.5\n609,51,15.0\n609,52,14.5\n609,53,14.0\n609,54,13.5\n609,55,13.0\n609,56,12.5\n609,57,12.0\n609,58,11.5\n609,59,11.0\n609,60,11.5\n609,61,12.0\n609,62,12.5\n609,63,13.0\n609,64,13.5\n609,65,14.0\n609,66,14.5\n609,67,15.0\n609,68,15.5\n609,69,16.0\n609,70,16.5\n609,71,17.0\n609,72,17.5\n609,73,18.0\n609,74,18.5\n609,75,15.0\n609,76,14.5\n609,77,14.0\n609,78,13.5\n609,79,13.0\n609,80,12.5\n609,81,12.0\n609,82,11.5\n609,83,11.0\n609,84,10.5\n609,85,11.0\n609,86,11.5\n609,87,12.0\n609,88,12.5\n609,89,13.0\n609,90,13.5\n609,91,14.0\n609,92,14.5\n609,93,15.0\n609,94,15.5\n609,95,16.0\n609,96,16.5\n609,97,17.0\n609,98,17.5\n609,99,18.0\n609,100,14.5\n609,101,14.0\n609,102,13.5\n609,103,13.0\n609,104,12.5\n609,105,12.0\n609,106,11.5\n609,107,11.0\n609,108,10.5\n609,109,10.0\n609,110,10.5\n609,111,11.0\n609,112,11.5\n609,113,12.0\n609,114,12.5\n609,115,13.0\n609,116,13.5\n609,117,14.0\n609,118,14.5\n609,119,15.0\n609,120,15.5\n609,121,16.0\n609,122,16.5\n609,123,17.0\n609,124,17.5\n609,125,14.0\n609,126,13.5\n609,127,13.0\n609,128,12.5\n609,129,12.0\n609,130,11.5\n609,131,11.0\n609,132,10.5\n609,133,10.0\n609,134,9.5\n609,135,10.0\n609,136,10.5\n609,137,11.0\n609,138,11.5\n609,139,12.0\n609,140,12.5\n609,141,13.0\n609,142,13.5\n609,143,14.0\n609,144,14.5\n609,145,15.0\n609,146,15.5\n609,147,16.0\n609,148,16.5\n609,149,17.0\n609,150,13.5\n609,151,13.0\n609,152,12.5\n609,153,12.0\n609,154,11.5\n609,155,11.0\n609,156,10.5\n609,157,10.0\n609,158,9.5\n609,159,9.0\n609,160,9.5\n609,161,10.0\n609,162,10.5\n609,163,11.0\n609,164,11.5\n609,165,12.0\n609,166,12.5\n609,167,13.0\n609,168,13.5\n609,169,14.0\n609,170,14.5\n609,171,15.0\n609,172,15.5\n609,173,16.0\n609,174,16.5\n609,175,13.0\n609,176,12.5\n609,177,12.0\n609,178,11.5\n609,179,11.0\n609,180,10.5\n609,181,10.0\n609,182,9.5\n609,183,9.0\n609,184,8.5\n609,185,9.0\n609,186,9.5\n609,187,10.0\n609,188,10.5\n609,189,11.0\n609,190,11.5\n609,191,12.0\n609,192,12.5\n609,193,13.0\n609,194,13.5\n609,195,14.0\n609,196,14.5\n609,197,15.0\n609,198,15.5\n609,199,16.0\n609,200,12.5\n609,201,12.0\n609,202,11.5\n609,203,11.0\n609,204,10.5\n609,205,10.0\n609,206,9.5\n609,207,9.0\n609,208,8.5\n609,209,8.0\n609,210,8.5\n609,211,9.0\n609,212,9.5\n609,213,10.0\n609,214,10.5\n609,215,11.0\n609,216,11.5\n609,217,12.0\n609,218,12.5\n609,219,13.0\n609,220,13.5\n609,221,14.0\n609,222,14.5\n609,223,15.0\n609,224,15.5\n609,225,12.0\n609,226,11.5\n609,227,11.0\n609,228,10.5\n609,229,10.0\n609,230,9.5\n609,231,9.0\n609,232,8.5\n609,233,8.0\n609,234,7.5\n609,235,8.0\n609,236,8.5\n609,237,9.0\n609,238,9.5\n609,239,10.0\n609,240,10.5\n609,241,11.0\n609,242,11.5\n609,243,12.0\n609,244,12.5\n609,245,13.0\n609,246,13.5\n609,247,14.0\n609,248,14.5\n609,249,15.0\n609,250,11.5\n609,251,11.0\n609,252,10.5\n609,253,10.0\n609,254,9.5\n609,255,9.0\n609,256,8.5\n609,257,8.0\n609,258,7.5\n609,259,7.0\n609,260,7.5\n609,261,8.0\n609,262,8.5\n609,263,9.0\n609,264,9.5\n609,265,10.0\n609,266,10.5\n609,267,11.0\n609,268,11.5\n609,269,12.0\n609,270,12.5\n609,271,13.0\n609,272,13.5\n609,273,14.0\n609,274,14.5\n609,275,11.0\n609,276,10.5\n609,277,10.0\n609,278,9.5\n609,279,9.0\n609,280,8.5\n609,281,8.0\n609,282,7.5\n609,283,7.0\n609,284,6.5\n609,285,7.0\n609,286,7.5\n609,287,8.0\n609,288,8.5\n609,289,9.0\n609,290,9.5\n609,291,10.0\n609,292,10.5\n609,293,11.0\n609,294,11.5\n609,295,12.0\n609,296,12.5\n609,297,13.0\n609,298,13.5\n609,299,14.0\n609,300,10.5\n609,301,10.0\n609,302,9.5\n609,303,9.0\n609,304,8.5\n609,305,8.0\n609,306,7.5\n609,307,7.0\n609,308,6.5\n609,309,6.0\n609,310,6.5\n609,311,7.0\n609,312,7.5\n609,313,8.0\n609,314,8.5\n609,315,9.0\n609,316,9.5\n609,317,10.0\n609,318,10.5\n609,319,11.0\n609,320,11.5\n609,321,12.0\n609,322,12.5\n609,323,13.0\n609,324,13.5\n609,325,10.0\n609,326,9.5\n609,327,9.0\n609,328,8.5\n609,329,8.0\n609,330,7.5\n609,331,7.0\n609,332,6.5\n609,333,6.0\n609,334,5.5\n609,335,6.0\n609,336,6.5\n609,337,7.0\n609,338,7.5\n609,339,8.0\n609,340,8.5\n609,341,9.0\n609,342,9.5\n609,343,10.0\n609,344,10.5\n609,345,11.0\n609,346,11.5\n609,347,12.0\n609,348,12.5\n609,349,13.0\n609,350,9.5\n609,351,9.0\n609,352,8.5\n609,353,8.0\n609,354,7.5\n609,355,7.0\n609,356,6.5\n609,357,6.0\n609,358,5.5\n609,359,5.0\n609,360,5.5\n609,361,6.0\n609,362,6.5\n609,363,7.0\n609,364,7.5\n609,365,8.0\n609,366,8.5\n609,367,9.0\n609,368,9.5\n609,369,10.0\n609,370,10.5\n609,371,11.0\n609,372,11.5\n609,373,12.0\n609,374,12.5\n609,375,9.0\n609,376,8.5\n609,377,8.0\n609,378,7.5\n609,379,7.0\n609,380,6.5\n609,381,6.0\n609,382,5.5\n609,383,5.0\n609,384,4.5\n609,385,5.0\n609,386,5.5\n609,387,6.0\n609,388,6.5\n609,389,7.0\n609,390,7.5\n609,391,8.0\n609,392,8.5\n609,393,9.0\n609,394,9.5\n609,395,10.0\n609,396,10.5\n609,397,11.0\n609,398,11.5\n609,399,12.0\n609,400,8.5\n609,401,8.0\n609,402,7.5\n609,403,7.0\n609,404,6.5\n609,405,6.0\n609,406,5.5\n609,407,5.0\n609,408,4.5\n609,409,4.0\n609,410,4.5\n609,411,5.0\n609,412,5.5\n609,413,6.0\n609,414,6.5\n609,415,7.0\n609,416,7.5\n609,417,8.0\n609,418,8.5\n609,419,9.0\n609,420,9.5\n609,421,10.0\n609,422,10.5\n609,423,11.0\n609,424,11.5\n609,425,8.0\n609,426,7.5\n609,427,7.0\n609,428,6.5\n609,429,6.0\n609,430,5.5\n609,431,5.0\n609,432,4.5\n609,433,4.0\n609,434,3.5\n609,435,4.0\n609,436,4.5\n609,437,5.0\n609,438,5.5\n609,439,6.0\n609,440,6.5\n609,441,7.0\n609,442,7.5\n609,443,8.0\n609,444,8.5\n609,445,9.0\n609,446,9.5\n609,447,10.0\n609,448,10.5\n609,449,11.0\n609,450,7.5\n609,451,7.0\n609,452,6.5\n609,453,6.0\n609,454,5.5\n609,455,5.0\n609,456,4.5\n609,457,4.0\n609,458,3.5\n609,459,3.0\n609,460,3.5\n609,461,4.0\n609,462,4.5\n609,463,5.0\n609,464,5.5\n609,465,6.0\n609,466,6.5\n609,467,7.0\n609,468,7.5\n609,469,8.0\n609,470,8.5\n609,471,9.0\n609,472,9.5\n609,473,10.0\n609,474,10.5\n609,475,7.0\n609,476,6.5\n609,477,6.0\n609,478,5.5\n609,479,5.0\n609,480,4.5\n609,481,4.0\n609,482,3.5\n609,483,3.0\n609,484,2.5\n609,485,3.0\n609,486,3.5\n609,487,4.0\n609,488,4.5\n609,489,5.0\n609,490,5.5\n609,491,6.0\n609,492,6.5\n609,493,7.0\n609,494,7.5\n609,495,8.0\n609,496,8.5\n609,497,9.0\n609,498,9.5\n609,499,10.0\n609,500,6.5\n609,501,6.0\n609,502,5.5\n609,503,5.0\n609,504,4.5\n609,505,4.0\n609,506,3.5\n609,507,3.0\n609,508,2.5\n609,509,2.0\n609,510,2.5\n609,511,3.0\n609,512,3.5\n609,513,4.0\n609,514,4.5\n609,515,5.0\n609,516,5.5\n609,517,6.0\n609,518,6.5\n609,519,7.0\n609,520,7.5\n609,521,8.0\n609,522,8.5\n609,523,9.0\n609,524,9.5\n609,525,6.0\n609,526,5.5\n609,527,5.0\n609,528,4.5\n609,529,4.0\n609,530,3.5\n609,531,3.0\n609,532,2.5\n609,533,2.0\n609,534,1.5\n609,535,2.0\n609,536,2.5\n609,537,3.0\n609,538,3.5\n609,539,4.0\n609,540,4.5\n609,541,5.0\n609,542,5.5\n609,543,6.0\n609,544,6.5\n609,545,7.0\n609,546,7.5\n609,547,8.0\n609,548,8.5\n609,549,9.0\n609,550,5.5\n609,551,5.0\n609,552,4.5\n609,553,4.0\n609,554,3.5\n609,555,3.0\n609,556,2.5\n609,557,2.0\n609,558,1.5\n609,559,1.0\n609,560,1.5\n609,561,2.0\n609,562,2.5\n609,563,3.0\n609,564,3.5\n609,565,4.0\n609,566,4.5\n609,567,5.0\n609,568,5.5\n609,569,6.0\n609,570,6.5\n609,571,7.0\n609,572,7.5\n609,573,8.0\n609,574,8.5\n609,575,5.0\n609,576,4.5\n609,577,4.0\n609,578,3.5\n609,579,3.0\n609,580,2.5\n609,581,2.0\n609,582,1.5\n609,583,1.0\n609,584,0.5\n609,585,1.0\n609,586,1.5\n609,587,2.0\n609,588,2.5\n609,589,3.0\n609,590,3.5\n609,591,4.0\n609,592,4.5\n609,593,5.0\n609,594,5.5\n609,595,6.0\n609,596,6.5\n609,597,7.0\n609,598,7.5\n609,599,8.0\n609,600,4.5\n609,601,4.0\n609,602,3.5\n609,603,3.0\n609,604,2.5\n609,605,2.0\n609,606,1.5\n609,607,1.0\n609,608,0.5\n609,609,0\n609,610,0.5\n609,611,1.0\n609,612,1.5\n609,613,2.0\n609,614,2.5\n609,615,3.0\n609,616,3.5\n609,617,4.0\n609,618,4.5\n609,619,5.0\n609,620,5.5\n609,621,6.0\n609,622,6.5\n609,623,7.0\n609,624,7.5\n610,0,17.0\n610,1,16.5\n610,2,16.0\n610,3,15.5\n610,4,15.0\n610,5,14.5\n610,6,14.0\n610,7,13.5\n610,8,13.0\n610,9,12.5\n610,10,12.0\n610,11,12.5\n610,12,13.0\n610,13,13.5\n610,14,14.0\n610,15,14.5\n610,16,15.0\n610,17,15.5\n610,18,16.0\n610,19,16.5\n610,20,17.0\n610,21,17.5\n610,22,18.0\n610,23,18.5\n610,24,19.0\n610,25,16.5\n610,26,16.0\n610,27,15.5\n610,28,15.0\n610,29,14.5\n610,30,14.0\n610,31,13.5\n610,32,13.0\n610,33,12.5\n610,34,12.0\n610,35,11.5\n610,36,12.0\n610,37,12.5\n610,38,13.0\n610,39,13.5\n610,40,14.0\n610,41,14.5\n610,42,15.0\n610,43,15.5\n610,44,16.0\n610,45,16.5\n610,46,17.0\n610,47,17.5\n610,48,18.0\n610,49,18.5\n610,50,16.0\n610,51,15.5\n610,52,15.0\n610,53,14.5\n610,54,14.0\n610,55,13.5\n610,56,13.0\n610,57,12.5\n610,58,12.0\n610,59,11.5\n610,60,11.0\n610,61,11.5\n610,62,12.0\n610,63,12.5\n610,64,13.0\n610,65,13.5\n610,66,14.0\n610,67,14.5\n610,68,15.0\n610,69,15.5\n610,70,16.0\n610,71,16.5\n610,72,17.0\n610,73,17.5\n610,74,18.0\n610,75,15.5\n610,76,15.0\n610,77,14.5\n610,78,14.0\n610,79,13.5\n610,80,13.0\n610,81,12.5\n610,82,12.0\n610,83,11.5\n610,84,11.0\n610,85,10.5\n610,86,11.0\n610,87,11.5\n610,88,12.0\n610,89,12.5\n610,90,13.0\n610,91,13.5\n610,92,14.0\n610,93,14.5\n610,94,15.0\n610,95,15.5\n610,96,16.0\n610,97,16.5\n610,98,17.0\n610,99,17.5\n610,100,15.0\n610,101,14.5\n610,102,14.0\n610,103,13.5\n610,104,13.0\n610,105,12.5\n610,106,12.0\n610,107,11.5\n610,108,11.0\n610,109,10.5\n610,110,10.0\n610,111,10.5\n610,112,11.0\n610,113,11.5\n610,114,12.0\n610,115,12.5\n610,116,13.0\n610,117,13.5\n610,118,14.0\n610,119,14.5\n610,120,15.0\n610,121,15.5\n610,122,16.0\n610,123,16.5\n610,124,17.0\n610,125,14.5\n610,126,14.0\n610,127,13.5\n610,128,13.0\n610,129,12.5\n610,130,12.0\n610,131,11.5\n610,132,11.0\n610,133,10.5\n610,134,10.0\n610,135,9.5\n610,136,10.0\n610,137,10.5\n610,138,11.0\n610,139,11.5\n610,140,12.0\n610,141,12.5\n610,142,13.0\n610,143,13.5\n610,144,14.0\n610,145,14.5\n610,146,15.0\n610,147,15.5\n610,148,16.0\n610,149,16.5\n610,150,14.0\n610,151,13.5\n610,152,13.0\n610,153,12.5\n610,154,12.0\n610,155,11.5\n610,156,11.0\n610,157,10.5\n610,158,10.0\n610,159,9.5\n610,160,9.0\n610,161,9.5\n610,162,10.0\n610,163,10.5\n610,164,11.0\n610,165,11.5\n610,166,12.0\n610,167,12.5\n610,168,13.0\n610,169,13.5\n610,170,14.0\n610,171,14.5\n610,172,15.0\n610,173,15.5\n610,174,16.0\n610,175,13.5\n610,176,13.0\n610,177,12.5\n610,178,12.0\n610,179,11.5\n610,180,11.0\n610,181,10.5\n610,182,10.0\n610,183,9.5\n610,184,9.0\n610,185,8.5\n610,186,9.0\n610,187,9.5\n610,188,10.0\n610,189,10.5\n610,190,11.0\n610,191,11.5\n610,192,12.0\n610,193,12.5\n610,194,13.0\n610,195,13.5\n610,196,14.0\n610,197,14.5\n610,198,15.0\n610,199,15.5\n610,200,13.0\n610,201,12.5\n610,202,12.0\n610,203,11.5\n610,204,11.0\n610,205,10.5\n610,206,10.0\n610,207,9.5\n610,208,9.0\n610,209,8.5\n610,210,8.0\n610,211,8.5\n610,212,9.0\n610,213,9.5\n610,214,10.0\n610,215,10.5\n610,216,11.0\n610,217,11.5\n610,218,12.0\n610,219,12.5\n610,220,13.0\n610,221,13.5\n610,222,14.0\n610,223,14.5\n610,224,15.0\n610,225,12.5\n610,226,12.0\n610,227,11.5\n610,228,11.0\n610,229,10.5\n610,230,10.0\n610,231,9.5\n610,232,9.0\n610,233,8.5\n610,234,8.0\n610,235,7.5\n610,236,8.0\n610,237,8.5\n610,238,9.0\n610,239,9.5\n610,240,10.0\n610,241,10.5\n610,242,11.0\n610,243,11.5\n610,244,12.0\n610,245,12.5\n610,246,13.0\n610,247,13.5\n610,248,14.0\n610,249,14.5\n610,250,12.0\n610,251,11.5\n610,252,11.0\n610,253,10.5\n610,254,10.0\n610,255,9.5\n610,256,9.0\n610,257,8.5\n610,258,8.0\n610,259,7.5\n610,260,7.0\n610,261,7.5\n610,262,8.0\n610,263,8.5\n610,264,9.0\n610,265,9.5\n610,266,10.0\n610,267,10.5\n610,268,11.0\n610,269,11.5\n610,270,12.0\n610,271,12.5\n610,272,13.0\n610,273,13.5\n610,274,14.0\n610,275,11.5\n610,276,11.0\n610,277,10.5\n610,278,10.0\n610,279,9.5\n610,280,9.0\n610,281,8.5\n610,282,8.0\n610,283,7.5\n610,284,7.0\n610,285,6.5\n610,286,7.0\n610,287,7.5\n610,288,8.0\n610,289,8.5\n610,290,9.0\n610,291,9.5\n610,292,10.0\n610,293,10.5\n610,294,11.0\n610,295,11.5\n610,296,12.0\n610,297,12.5\n610,298,13.0\n610,299,13.5\n610,300,11.0\n610,301,10.5\n610,302,10.0\n610,303,9.5\n610,304,9.0\n610,305,8.5\n610,306,8.0\n610,307,7.5\n610,308,7.0\n610,309,6.5\n610,310,6.0\n610,311,6.5\n610,312,7.0\n610,313,7.5\n610,314,8.0\n610,315,8.5\n610,316,9.0\n610,317,9.5\n610,318,10.0\n610,319,10.5\n610,320,11.0\n610,321,11.5\n610,322,12.0\n610,323,12.5\n610,324,13.0\n610,325,10.5\n610,326,10.0\n610,327,9.5\n610,328,9.0\n610,329,8.5\n610,330,8.0\n610,331,7.5\n610,332,7.0\n610,333,6.5\n610,334,6.0\n610,335,5.5\n610,336,6.0\n610,337,6.5\n610,338,7.0\n610,339,7.5\n610,340,8.0\n610,341,8.5\n610,342,9.0\n610,343,9.5\n610,344,10.0\n610,345,10.5\n610,346,11.0\n610,347,11.5\n610,348,12.0\n610,349,12.5\n610,350,10.0\n610,351,9.5\n610,352,9.0\n610,353,8.5\n610,354,8.0\n610,355,7.5\n610,356,7.0\n610,357,6.5\n610,358,6.0\n610,359,5.5\n610,360,5.0\n610,361,5.5\n610,362,6.0\n610,363,6.5\n610,364,7.0\n610,365,7.5\n610,366,8.0\n610,367,8.5\n610,368,9.0\n610,369,9.5\n610,370,10.0\n610,371,10.5\n610,372,11.0\n610,373,11.5\n610,374,12.0\n610,375,9.5\n610,376,9.0\n610,377,8.5\n610,378,8.0\n610,379,7.5\n610,380,7.0\n610,381,6.5\n610,382,6.0\n610,383,5.5\n610,384,5.0\n610,385,4.5\n610,386,5.0\n610,387,5.5\n610,388,6.0\n610,389,6.5\n610,390,7.0\n610,391,7.5\n610,392,8.0\n610,393,8.5\n610,394,9.0\n610,395,9.5\n610,396,10.0\n610,397,10.5\n610,398,11.0\n610,399,11.5\n610,400,9.0\n610,401,8.5\n610,402,8.0\n610,403,7.5\n610,404,7.0\n610,405,6.5\n610,406,6.0\n610,407,5.5\n610,408,5.0\n610,409,4.5\n610,410,4.0\n610,411,4.5\n610,412,5.0\n610,413,5.5\n610,414,6.0\n610,415,6.5\n610,416,7.0\n610,417,7.5\n610,418,8.0\n610,419,8.5\n610,420,9.0\n610,421,9.5\n610,422,10.0\n610,423,10.5\n610,424,11.0\n610,425,8.5\n610,426,8.0\n610,427,7.5\n610,428,7.0\n610,429,6.5\n610,430,6.0\n610,431,5.5\n610,432,5.0\n610,433,4.5\n610,434,4.0\n610,435,3.5\n610,436,4.0\n610,437,4.5\n610,438,5.0\n610,439,5.5\n610,440,6.0\n610,441,6.5\n610,442,7.0\n610,443,7.5\n610,444,8.0\n610,445,8.5\n610,446,9.0\n610,447,9.5\n610,448,10.0\n610,449,10.5\n610,450,8.0\n610,451,7.5\n610,452,7.0\n610,453,6.5\n610,454,6.0\n610,455,5.5\n610,456,5.0\n610,457,4.5\n610,458,4.0\n610,459,3.5\n610,460,3.0\n610,461,3.5\n610,462,4.0\n610,463,4.5\n610,464,5.0\n610,465,5.5\n610,466,6.0\n610,467,6.5\n610,468,7.0\n610,469,7.5\n610,470,8.0\n610,471,8.5\n610,472,9.0\n610,473,9.5\n610,474,10.0\n610,475,7.5\n610,476,7.0\n610,477,6.5\n610,478,6.0\n610,479,5.5\n610,480,5.0\n610,481,4.5\n610,482,4.0\n610,483,3.5\n610,484,3.0\n610,485,2.5\n610,486,3.0\n610,487,3.5\n610,488,4.0\n610,489,4.5\n610,490,5.0\n610,491,5.5\n610,492,6.0\n610,493,6.5\n610,494,7.0\n610,495,7.5\n610,496,8.0\n610,497,8.5\n610,498,9.0\n610,499,9.5\n610,500,7.0\n610,501,6.5\n610,502,6.0\n610,503,5.5\n610,504,5.0\n610,505,4.5\n610,506,4.0\n610,507,3.5\n610,508,3.0\n610,509,2.5\n610,510,2.0\n610,511,2.5\n610,512,3.0\n610,513,3.5\n610,514,4.0\n610,515,4.5\n610,516,5.0\n610,517,5.5\n610,518,6.0\n610,519,6.5\n610,520,7.0\n610,521,7.5\n610,522,8.0\n610,523,8.5\n610,524,9.0\n610,525,6.5\n610,526,6.0\n610,527,5.5\n610,528,5.0\n610,529,4.5\n610,530,4.0\n610,531,3.5\n610,532,3.0\n610,533,2.5\n610,534,2.0\n610,535,1.5\n610,536,2.0\n610,537,2.5\n610,538,3.0\n610,539,3.5\n610,540,4.0\n610,541,4.5\n610,542,5.0\n610,543,5.5\n610,544,6.0\n610,545,6.5\n610,546,7.0\n610,547,7.5\n610,548,8.0\n610,549,8.5\n610,550,6.0\n610,551,5.5\n610,552,5.0\n610,553,4.5\n610,554,4.0\n610,555,3.5\n610,556,3.0\n610,557,2.5\n610,558,2.0\n610,559,1.5\n610,560,1.0\n610,561,1.5\n610,562,2.0\n610,563,2.5\n610,564,3.0\n610,565,3.5\n610,566,4.0\n610,567,4.5\n610,568,5.0\n610,569,5.5\n610,570,6.0\n610,571,6.5\n610,572,7.0\n610,573,7.5\n610,574,8.0\n610,575,5.5\n610,576,5.0\n610,577,4.5\n610,578,4.0\n610,579,3.5\n610,580,3.0\n610,581,2.5\n610,582,2.0\n610,583,1.5\n610,584,1.0\n610,585,0.5\n610,586,1.0\n610,587,1.5\n610,588,2.0\n610,589,2.5\n610,590,3.0\n610,591,3.5\n610,592,4.0\n610,593,4.5\n610,594,5.0\n610,595,5.5\n610,596,6.0\n610,597,6.5\n610,598,7.0\n610,599,7.5\n610,600,5.0\n610,601,4.5\n610,602,4.0\n610,603,3.5\n610,604,3.0\n610,605,2.5\n610,606,2.0\n610,607,1.5\n610,608,1.0\n610,609,0.5\n610,610,0\n610,611,0.5\n610,612,1.0\n610,613,1.5\n610,614,2.0\n610,615,2.5\n610,616,3.0\n610,617,3.5\n610,618,4.0\n610,619,4.5\n610,620,5.0\n610,621,5.5\n610,622,6.0\n610,623,6.5\n610,624,7.0\n611,0,17.5\n611,1,17.0\n611,2,16.5\n611,3,16.0\n611,4,15.5\n611,5,15.0\n611,6,14.5\n611,7,14.0\n611,8,13.5\n611,9,13.0\n611,10,12.5\n611,11,12.0\n611,12,12.5\n611,13,13.0\n611,14,13.5\n611,15,14.0\n611,16,14.5\n611,17,15.0\n611,18,15.5\n611,19,16.0\n611,20,16.5\n611,21,17.0\n611,22,17.5\n611,23,18.0\n611,24,18.5\n611,25,17.0\n611,26,16.5\n611,27,16.0\n611,28,15.5\n611,29,15.0\n611,30,14.5\n611,31,14.0\n611,32,13.5\n611,33,13.0\n611,34,12.5\n611,35,12.0\n611,36,11.5\n611,37,12.0\n611,38,12.5\n611,39,13.0\n611,40,13.5\n611,41,14.0\n611,42,14.5\n611,43,15.0\n611,44,15.5\n611,45,16.0\n611,46,16.5\n611,47,17.0\n611,48,17.5\n611,49,18.0\n611,50,16.5\n611,51,16.0\n611,52,15.5\n611,53,15.0\n611,54,14.5\n611,55,14.0\n611,56,13.5\n611,57,13.0\n611,58,12.5\n611,59,12.0\n611,60,11.5\n611,61,11.0\n611,62,11.5\n611,63,12.0\n611,64,12.5\n611,65,13.0\n611,66,13.5\n611,67,14.0\n611,68,14.5\n611,69,15.0\n611,70,15.5\n611,71,16.0\n611,72,16.5\n611,73,17.0\n611,74,17.5\n611,75,16.0\n611,76,15.5\n611,77,15.0\n611,78,14.5\n611,79,14.0\n611,80,13.5\n611,81,13.0\n611,82,12.5\n611,83,12.0\n611,84,11.5\n611,85,11.0\n611,86,10.5\n611,87,11.0\n611,88,11.5\n611,89,12.0\n611,90,12.5\n611,91,13.0\n611,92,13.5\n611,93,14.0\n611,94,14.5\n611,95,15.0\n611,96,15.5\n611,97,16.0\n611,98,16.5\n611,99,17.0\n611,100,15.5\n611,101,15.0\n611,102,14.5\n611,103,14.0\n611,104,13.5\n611,105,13.0\n611,106,12.5\n611,107,12.0\n611,108,11.5\n611,109,11.0\n611,110,10.5\n611,111,10.0\n611,112,10.5\n611,113,11.0\n611,114,11.5\n611,115,12.0\n611,116,12.5\n611,117,13.0\n611,118,13.5\n611,119,14.0\n611,120,14.5\n611,121,15.0\n611,122,15.5\n611,123,16.0\n611,124,16.5\n611,125,15.0\n611,126,14.5\n611,127,14.0\n611,128,13.5\n611,129,13.0\n611,130,12.5\n611,131,12.0\n611,132,11.5\n611,133,11.0\n611,134,10.5\n611,135,10.0\n611,136,9.5\n611,137,10.0\n611,138,10.5\n611,139,11.0\n611,140,11.5\n611,141,12.0\n611,142,12.5\n611,143,13.0\n611,144,13.5\n611,145,14.0\n611,146,14.5\n611,147,15.0\n611,148,15.5\n611,149,16.0\n611,150,14.5\n611,151,14.0\n611,152,13.5\n611,153,13.0\n611,154,12.5\n611,155,12.0\n611,156,11.5\n611,157,11.0\n611,158,10.5\n611,159,10.0\n611,160,9.5\n611,161,9.0\n611,162,9.5\n611,163,10.0\n611,164,10.5\n611,165,11.0\n611,166,11.5\n611,167,12.0\n611,168,12.5\n611,169,13.0\n611,170,13.5\n611,171,14.0\n611,172,14.5\n611,173,15.0\n611,174,15.5\n611,175,14.0\n611,176,13.5\n611,177,13.0\n611,178,12.5\n611,179,12.0\n611,180,11.5\n611,181,11.0\n611,182,10.5\n611,183,10.0\n611,184,9.5\n611,185,9.0\n611,186,8.5\n611,187,9.0\n611,188,9.5\n611,189,10.0\n611,190,10.5\n611,191,11.0\n611,192,11.5\n611,193,12.0\n611,194,12.5\n611,195,13.0\n611,196,13.5\n611,197,14.0\n611,198,14.5\n611,199,15.0\n611,200,13.5\n611,201,13.0\n611,202,12.5\n611,203,12.0\n611,204,11.5\n611,205,11.0\n611,206,10.5\n611,207,10.0\n611,208,9.5\n611,209,9.0\n611,210,8.5\n611,211,8.0\n611,212,8.5\n611,213,9.0\n611,214,9.5\n611,215,10.0\n611,216,10.5\n611,217,11.0\n611,218,11.5\n611,219,12.0\n611,220,12.5\n611,221,13.0\n611,222,13.5\n611,223,14.0\n611,224,14.5\n611,225,13.0\n611,226,12.5\n611,227,12.0\n611,228,11.5\n611,229,11.0\n611,230,10.5\n611,231,10.0\n611,232,9.5\n611,233,9.0\n611,234,8.5\n611,235,8.0\n611,236,7.5\n611,237,8.0\n611,238,8.5\n611,239,9.0\n611,240,9.5\n611,241,10.0\n611,242,10.5\n611,243,11.0\n611,244,11.5\n611,245,12.0\n611,246,12.5\n611,247,13.0\n611,248,13.5\n611,249,14.0\n611,250,12.5\n611,251,12.0\n611,252,11.5\n611,253,11.0\n611,254,10.5\n611,255,10.0\n611,256,9.5\n611,257,9.0\n611,258,8.5\n611,259,8.0\n611,260,7.5\n611,261,7.0\n611,262,7.5\n611,263,8.0\n611,264,8.5\n611,265,9.0\n611,266,9.5\n611,267,10.0\n611,268,10.5\n611,269,11.0\n611,270,11.5\n611,271,12.0\n611,272,12.5\n611,273,13.0\n611,274,13.5\n611,275,12.0\n611,276,11.5\n611,277,11.0\n611,278,10.5\n611,279,10.0\n611,280,9.5\n611,281,9.0\n611,282,8.5\n611,283,8.0\n611,284,7.5\n611,285,7.0\n611,286,6.5\n611,287,7.0\n611,288,7.5\n611,289,8.0\n611,290,8.5\n611,291,9.0\n611,292,9.5\n611,293,10.0\n611,294,10.5\n611,295,11.0\n611,296,11.5\n611,297,12.0\n611,298,12.5\n611,299,13.0\n611,300,11.5\n611,301,11.0\n611,302,10.5\n611,303,10.0\n611,304,9.5\n611,305,9.0\n611,306,8.5\n611,307,8.0\n611,308,7.5\n611,309,7.0\n611,310,6.5\n611,311,6.0\n611,312,6.5\n611,313,7.0\n611,314,7.5\n611,315,8.0\n611,316,8.5\n611,317,9.0\n611,318,9.5\n611,319,10.0\n611,320,10.5\n611,321,11.0\n611,322,11.5\n611,323,12.0\n611,324,12.5\n611,325,11.0\n611,326,10.5\n611,327,10.0\n611,328,9.5\n611,329,9.0\n611,330,8.5\n611,331,8.0\n611,332,7.5\n611,333,7.0\n611,334,6.5\n611,335,6.0\n611,336,5.5\n611,337,6.0\n611,338,6.5\n611,339,7.0\n611,340,7.5\n611,341,8.0\n611,342,8.5\n611,343,9.0\n611,344,9.5\n611,345,10.0\n611,346,10.5\n611,347,11.0\n611,348,11.5\n611,349,12.0\n611,350,10.5\n611,351,10.0\n611,352,9.5\n611,353,9.0\n611,354,8.5\n611,355,8.0\n611,356,7.5\n611,357,7.0\n611,358,6.5\n611,359,6.0\n611,360,5.5\n611,361,5.0\n611,362,5.5\n611,363,6.0\n611,364,6.5\n611,365,7.0\n611,366,7.5\n611,367,8.0\n611,368,8.5\n611,369,9.0\n611,370,9.5\n611,371,10.0\n611,372,10.5\n611,373,11.0\n611,374,11.5\n611,375,10.0\n611,376,9.5\n611,377,9.0\n611,378,8.5\n611,379,8.0\n611,380,7.5\n611,381,7.0\n611,382,6.5\n611,383,6.0\n611,384,5.5\n611,385,5.0\n611,386,4.5\n611,387,5.0\n611,388,5.5\n611,389,6.0\n611,390,6.5\n611,391,7.0\n611,392,7.5\n611,393,8.0\n611,394,8.5\n611,395,9.0\n611,396,9.5\n611,397,10.0\n611,398,10.5\n611,399,11.0\n611,400,9.5\n611,401,9.0\n611,402,8.5\n611,403,8.0\n611,404,7.5\n611,405,7.0\n611,406,6.5\n611,407,6.0\n611,408,5.5\n611,409,5.0\n611,410,4.5\n611,411,4.0\n611,412,4.5\n611,413,5.0\n611,414,5.5\n611,415,6.0\n611,416,6.5\n611,417,7.0\n611,418,7.5\n611,419,8.0\n611,420,8.5\n611,421,9.0\n611,422,9.5\n611,423,10.0\n611,424,10.5\n611,425,9.0\n611,426,8.5\n611,427,8.0\n611,428,7.5\n611,429,7.0\n611,430,6.5\n611,431,6.0\n611,432,5.5\n611,433,5.0\n611,434,4.5\n611,435,4.0\n611,436,3.5\n611,437,4.0\n611,438,4.5\n611,439,5.0\n611,440,5.5\n611,441,6.0\n611,442,6.5\n611,443,7.0\n611,444,7.5\n611,445,8.0\n611,446,8.5\n611,447,9.0\n611,448,9.5\n611,449,10.0\n611,450,8.5\n611,451,8.0\n611,452,7.5\n611,453,7.0\n611,454,6.5\n611,455,6.0\n611,456,5.5\n611,457,5.0\n611,458,4.5\n611,459,4.0\n611,460,3.5\n611,461,3.0\n611,462,3.5\n611,463,4.0\n611,464,4.5\n611,465,5.0\n611,466,5.5\n611,467,6.0\n611,468,6.5\n611,469,7.0\n611,470,7.5\n611,471,8.0\n611,472,8.5\n611,473,9.0\n611,474,9.5\n611,475,8.0\n611,476,7.5\n611,477,7.0\n611,478,6.5\n611,479,6.0\n611,480,5.5\n611,481,5.0\n611,482,4.5\n611,483,4.0\n611,484,3.5\n611,485,3.0\n611,486,2.5\n611,487,3.0\n611,488,3.5\n611,489,4.0\n611,490,4.5\n611,491,5.0\n611,492,5.5\n611,493,6.0\n611,494,6.5\n611,495,7.0\n611,496,7.5\n611,497,8.0\n611,498,8.5\n611,499,9.0\n611,500,7.5\n611,501,7.0\n611,502,6.5\n611,503,6.0\n611,504,5.5\n611,505,5.0\n611,506,4.5\n611,507,4.0\n611,508,3.5\n611,509,3.0\n611,510,2.5\n611,511,2.0\n611,512,2.5\n611,513,3.0\n611,514,3.5\n611,515,4.0\n611,516,4.5\n611,517,5.0\n611,518,5.5\n611,519,6.0\n611,520,6.5\n611,521,7.0\n611,522,7.5\n611,523,8.0\n611,524,8.5\n611,525,7.0\n611,526,6.5\n611,527,6.0\n611,528,5.5\n611,529,5.0\n611,530,4.5\n611,531,4.0\n611,532,3.5\n611,533,3.0\n611,534,2.5\n611,535,2.0\n611,536,1.5\n611,537,2.0\n611,538,2.5\n611,539,3.0\n611,540,3.5\n611,541,4.0\n611,542,4.5\n611,543,5.0\n611,544,5.5\n611,545,6.0\n611,546,6.5\n611,547,7.0\n611,548,7.5\n611,549,8.0\n611,550,6.5\n611,551,6.0\n611,552,5.5\n611,553,5.0\n611,554,4.5\n611,555,4.0\n611,556,3.5\n611,557,3.0\n611,558,2.5\n611,559,2.0\n611,560,1.5\n611,561,1.0\n611,562,1.5\n611,563,2.0\n611,564,2.5\n611,565,3.0\n611,566,3.5\n611,567,4.0\n611,568,4.5\n611,569,5.0\n611,570,5.5\n611,571,6.0\n611,572,6.5\n611,573,7.0\n611,574,7.5\n611,575,6.0\n611,576,5.5\n611,577,5.0\n611,578,4.5\n611,579,4.0\n611,580,3.5\n611,581,3.0\n611,582,2.5\n611,583,2.0\n611,584,1.5\n611,585,1.0\n611,586,0.5\n611,587,1.0\n611,588,1.5\n611,589,2.0\n611,590,2.5\n611,591,3.0\n611,592,3.5\n611,593,4.0\n611,594,4.5\n611,595,5.0\n611,596,5.5\n611,597,6.0\n611,598,6.5\n611,599,7.0\n611,600,5.5\n611,601,5.0\n611,602,4.5\n611,603,4.0\n611,604,3.5\n611,605,3.0\n611,606,2.5\n611,607,2.0\n611,608,1.5\n611,609,1.0\n611,610,0.5\n611,611,0\n611,612,0.5\n611,613,1.0\n611,614,1.5\n611,615,2.0\n611,616,2.5\n611,617,3.0\n611,618,3.5\n611,619,4.0\n611,620,4.5\n611,621,5.0\n611,622,5.5\n611,623,6.0\n611,624,6.5\n612,0,18.0\n612,1,17.5\n612,2,17.0\n612,3,16.5\n612,4,16.0\n612,5,15.5\n612,6,15.0\n612,7,14.5\n612,8,14.0\n612,9,13.5\n612,10,13.0\n612,11,12.5\n612,12,12.0\n612,13,12.5\n612,14,13.0\n612,15,13.5\n612,16,14.0\n612,17,14.5\n612,18,15.0\n612,19,15.5\n612,20,16.0\n612,21,16.5\n612,22,17.0\n612,23,17.5\n612,24,18.0\n612,25,17.5\n612,26,17.0\n612,27,16.5\n612,28,16.0\n612,29,15.5\n612,30,15.0\n612,31,14.5\n612,32,14.0\n612,33,13.5\n612,34,13.0\n612,35,12.5\n612,36,12.0\n612,37,11.5\n612,38,12.0\n612,39,12.5\n612,40,13.0\n612,41,13.5\n612,42,14.0\n612,43,14.5\n612,44,15.0\n612,45,15.5\n612,46,16.0\n612,47,16.5\n612,48,17.0\n612,49,17.5\n612,50,17.0\n612,51,16.5\n612,52,16.0\n612,53,15.5\n612,54,15.0\n612,55,14.5\n612,56,14.0\n612,57,13.5\n612,58,13.0\n612,59,12.5\n612,60,12.0\n612,61,11.5\n612,62,11.0\n612,63,11.5\n612,64,12.0\n612,65,12.5\n612,66,13.0\n612,67,13.5\n612,68,14.0\n612,69,14.5\n612,70,15.0\n612,71,15.5\n612,72,16.0\n612,73,16.5\n612,74,17.0\n612,75,16.5\n612,76,16.0\n612,77,15.5\n612,78,15.0\n612,79,14.5\n612,80,14.0\n612,81,13.5\n612,82,13.0\n612,83,12.5\n612,84,12.0\n612,85,11.5\n612,86,11.0\n612,87,10.5\n612,88,11.0\n612,89,11.5\n612,90,12.0\n612,91,12.5\n612,92,13.0\n612,93,13.5\n612,94,14.0\n612,95,14.5\n612,96,15.0\n612,97,15.5\n612,98,16.0\n612,99,16.5\n612,100,16.0\n612,101,15.5\n612,102,15.0\n612,103,14.5\n612,104,14.0\n612,105,13.5\n612,106,13.0\n612,107,12.5\n612,108,12.0\n612,109,11.5\n612,110,11.0\n612,111,10.5\n612,112,10.0\n612,113,10.5\n612,114,11.0\n612,115,11.5\n612,116,12.0\n612,117,12.5\n612,118,13.0\n612,119,13.5\n612,120,14.0\n612,121,14.5\n612,122,15.0\n612,123,15.5\n612,124,16.0\n612,125,15.5\n612,126,15.0\n612,127,14.5\n612,128,14.0\n612,129,13.5\n612,130,13.0\n612,131,12.5\n612,132,12.0\n612,133,11.5\n612,134,11.0\n612,135,10.5\n612,136,10.0\n612,137,9.5\n612,138,10.0\n612,139,10.5\n612,140,11.0\n612,141,11.5\n612,142,12.0\n612,143,12.5\n612,144,13.0\n612,145,13.5\n612,146,14.0\n612,147,14.5\n612,148,15.0\n612,149,15.5\n612,150,15.0\n612,151,14.5\n612,152,14.0\n612,153,13.5\n612,154,13.0\n612,155,12.5\n612,156,12.0\n612,157,11.5\n612,158,11.0\n612,159,10.5\n612,160,10.0\n612,161,9.5\n612,162,9.0\n612,163,9.5\n612,164,10.0\n612,165,10.5\n612,166,11.0\n612,167,11.5\n612,168,12.0\n612,169,12.5\n612,170,13.0\n612,171,13.5\n612,172,14.0\n612,173,14.5\n612,174,15.0\n612,175,14.5\n612,176,14.0\n612,177,13.5\n612,178,13.0\n612,179,12.5\n612,180,12.0\n612,181,11.5\n612,182,11.0\n612,183,10.5\n612,184,10.0\n612,185,9.5\n612,186,9.0\n612,187,8.5\n612,188,9.0\n612,189,9.5\n612,190,10.0\n612,191,10.5\n612,192,11.0\n612,193,11.5\n612,194,12.0\n612,195,12.5\n612,196,13.0\n612,197,13.5\n612,198,14.0\n612,199,14.5\n612,200,14.0\n612,201,13.5\n612,202,13.0\n612,203,12.5\n612,204,12.0\n612,205,11.5\n612,206,11.0\n612,207,10.5\n612,208,10.0\n612,209,9.5\n612,210,9.0\n612,211,8.5\n612,212,8.0\n612,213,8.5\n612,214,9.0\n612,215,9.5\n612,216,10.0\n612,217,10.5\n612,218,11.0\n612,219,11.5\n612,220,12.0\n612,221,12.5\n612,222,13.0\n612,223,13.5\n612,224,14.0\n612,225,13.5\n612,226,13.0\n612,227,12.5\n612,228,12.0\n612,229,11.5\n612,230,11.0\n612,231,10.5\n612,232,10.0\n612,233,9.5\n612,234,9.0\n612,235,8.5\n612,236,8.0\n612,237,7.5\n612,238,8.0\n612,239,8.5\n612,240,9.0\n612,241,9.5\n612,242,10.0\n612,243,10.5\n612,244,11.0\n612,245,11.5\n612,246,12.0\n612,247,12.5\n612,248,13.0\n612,249,13.5\n612,250,13.0\n612,251,12.5\n612,252,12.0\n612,253,11.5\n612,254,11.0\n612,255,10.5\n612,256,10.0\n612,257,9.5\n612,258,9.0\n612,259,8.5\n612,260,8.0\n612,261,7.5\n612,262,7.0\n612,263,7.5\n612,264,8.0\n612,265,8.5\n612,266,9.0\n612,267,9.5\n612,268,10.0\n612,269,10.5\n612,270,11.0\n612,271,11.5\n612,272,12.0\n612,273,12.5\n612,274,13.0\n612,275,12.5\n612,276,12.0\n612,277,11.5\n612,278,11.0\n612,279,10.5\n612,280,10.0\n612,281,9.5\n612,282,9.0\n612,283,8.5\n612,284,8.0\n612,285,7.5\n612,286,7.0\n612,287,6.5\n612,288,7.0\n612,289,7.5\n612,290,8.0\n612,291,8.5\n612,292,9.0\n612,293,9.5\n612,294,10.0\n612,295,10.5\n612,296,11.0\n612,297,11.5\n612,298,12.0\n612,299,12.5\n612,300,12.0\n612,301,11.5\n612,302,11.0\n612,303,10.5\n612,304,10.0\n612,305,9.5\n612,306,9.0\n612,307,8.5\n612,308,8.0\n612,309,7.5\n612,310,7.0\n612,311,6.5\n612,312,6.0\n612,313,6.5\n612,314,7.0\n612,315,7.5\n612,316,8.0\n612,317,8.5\n612,318,9.0\n612,319,9.5\n612,320,10.0\n612,321,10.5\n612,322,11.0\n612,323,11.5\n612,324,12.0\n612,325,11.5\n612,326,11.0\n612,327,10.5\n612,328,10.0\n612,329,9.5\n612,330,9.0\n612,331,8.5\n612,332,8.0\n612,333,7.5\n612,334,7.0\n612,335,6.5\n612,336,6.0\n612,337,5.5\n612,338,6.0\n612,339,6.5\n612,340,7.0\n612,341,7.5\n612,342,8.0\n612,343,8.5\n612,344,9.0\n612,345,9.5\n612,346,10.0\n612,347,10.5\n612,348,11.0\n612,349,11.5\n612,350,11.0\n612,351,10.5\n612,352,10.0\n612,353,9.5\n612,354,9.0\n612,355,8.5\n612,356,8.0\n612,357,7.5\n612,358,7.0\n612,359,6.5\n612,360,6.0\n612,361,5.5\n612,362,5.0\n612,363,5.5\n612,364,6.0\n612,365,6.5\n612,366,7.0\n612,367,7.5\n612,368,8.0\n612,369,8.5\n612,370,9.0\n612,371,9.5\n612,372,10.0\n612,373,10.5\n612,374,11.0\n612,375,10.5\n612,376,10.0\n612,377,9.5\n612,378,9.0\n612,379,8.5\n612,380,8.0\n612,381,7.5\n612,382,7.0\n612,383,6.5\n612,384,6.0\n612,385,5.5\n612,386,5.0\n612,387,4.5\n612,388,5.0\n612,389,5.5\n612,390,6.0\n612,391,6.5\n612,392,7.0\n612,393,7.5\n612,394,8.0\n612,395,8.5\n612,396,9.0\n612,397,9.5\n612,398,10.0\n612,399,10.5\n612,400,10.0\n612,401,9.5\n612,402,9.0\n612,403,8.5\n612,404,8.0\n612,405,7.5\n612,406,7.0\n612,407,6.5\n612,408,6.0\n612,409,5.5\n612,410,5.0\n612,411,4.5\n612,412,4.0\n612,413,4.5\n612,414,5.0\n612,415,5.5\n612,416,6.0\n612,417,6.5\n612,418,7.0\n612,419,7.5\n612,420,8.0\n612,421,8.5\n612,422,9.0\n612,423,9.5\n612,424,10.0\n612,425,9.5\n612,426,9.0\n612,427,8.5\n612,428,8.0\n612,429,7.5\n612,430,7.0\n612,431,6.5\n612,432,6.0\n612,433,5.5\n612,434,5.0\n612,435,4.5\n612,436,4.0\n612,437,3.5\n612,438,4.0\n612,439,4.5\n612,440,5.0\n612,441,5.5\n612,442,6.0\n612,443,6.5\n612,444,7.0\n612,445,7.5\n612,446,8.0\n612,447,8.5\n612,448,9.0\n612,449,9.5\n612,450,9.0\n612,451,8.5\n612,452,8.0\n612,453,7.5\n612,454,7.0\n612,455,6.5\n612,456,6.0\n612,457,5.5\n612,458,5.0\n612,459,4.5\n612,460,4.0\n612,461,3.5\n612,462,3.0\n612,463,3.5\n612,464,4.0\n612,465,4.5\n612,466,5.0\n612,467,5.5\n612,468,6.0\n612,469,6.5\n612,470,7.0\n612,471,7.5\n612,472,8.0\n612,473,8.5\n612,474,9.0\n612,475,8.5\n612,476,8.0\n612,477,7.5\n612,478,7.0\n612,479,6.5\n612,480,6.0\n612,481,5.5\n612,482,5.0\n612,483,4.5\n612,484,4.0\n612,485,3.5\n612,486,3.0\n612,487,2.5\n612,488,3.0\n612,489,3.5\n612,490,4.0\n612,491,4.5\n612,492,5.0\n612,493,5.5\n612,494,6.0\n612,495,6.5\n612,496,7.0\n612,497,7.5\n612,498,8.0\n612,499,8.5\n612,500,8.0\n612,501,7.5\n612,502,7.0\n612,503,6.5\n612,504,6.0\n612,505,5.5\n612,506,5.0\n612,507,4.5\n612,508,4.0\n612,509,3.5\n612,510,3.0\n612,511,2.5\n612,512,2.0\n612,513,2.5\n612,514,3.0\n612,515,3.5\n612,516,4.0\n612,517,4.5\n612,518,5.0\n612,519,5.5\n612,520,6.0\n612,521,6.5\n612,522,7.0\n612,523,7.5\n612,524,8.0\n612,525,7.5\n612,526,7.0\n612,527,6.5\n612,528,6.0\n612,529,5.5\n612,530,5.0\n612,531,4.5\n612,532,4.0\n612,533,3.5\n612,534,3.0\n612,535,2.5\n612,536,2.0\n612,537,1.5\n612,538,2.0\n612,539,2.5\n612,540,3.0\n612,541,3.5\n612,542,4.0\n612,543,4.5\n612,544,5.0\n612,545,5.5\n612,546,6.0\n612,547,6.5\n612,548,7.0\n612,549,7.5\n612,550,7.0\n612,551,6.5\n612,552,6.0\n612,553,5.5\n612,554,5.0\n612,555,4.5\n612,556,4.0\n612,557,3.5\n612,558,3.0\n612,559,2.5\n612,560,2.0\n612,561,1.5\n612,562,1.0\n612,563,1.5\n612,564,2.0\n612,565,2.5\n612,566,3.0\n612,567,3.5\n612,568,4.0\n612,569,4.5\n612,570,5.0\n612,571,5.5\n612,572,6.0\n612,573,6.5\n612,574,7.0\n612,575,6.5\n612,576,6.0\n612,577,5.5\n612,578,5.0\n612,579,4.5\n612,580,4.0\n612,581,3.5\n612,582,3.0\n612,583,2.5\n612,584,2.0\n612,585,1.5\n612,586,1.0\n612,587,0.5\n612,588,1.0\n612,589,1.5\n612,590,2.0\n612,591,2.5\n612,592,3.0\n612,593,3.5\n612,594,4.0\n612,595,4.5\n612,596,5.0\n612,597,5.5\n612,598,6.0\n612,599,6.5\n612,600,6.0\n612,601,5.5\n612,602,5.0\n612,603,4.5\n612,604,4.0\n612,605,3.5\n612,606,3.0\n612,607,2.5\n612,608,2.0\n612,609,1.5\n612,610,1.0\n612,611,0.5\n612,612,0\n612,613,0.5\n612,614,1.0\n612,615,1.5\n612,616,2.0\n612,617,2.5\n612,618,3.0\n612,619,3.5\n612,620,4.0\n612,621,4.5\n612,622,5.0\n612,623,5.5\n612,624,6.0\n613,0,18.5\n613,1,18.0\n613,2,17.5\n613,3,17.0\n613,4,16.5\n613,5,16.0\n613,6,15.5\n613,7,15.0\n613,8,14.5\n613,9,14.0\n613,10,13.5\n613,11,13.0\n613,12,12.5\n613,13,12.0\n613,14,12.5\n613,15,13.0\n613,16,13.5\n613,17,14.0\n613,18,14.5\n613,19,15.0\n613,20,15.5\n613,21,16.0\n613,22,16.5\n613,23,17.0\n613,24,17.5\n613,25,18.0\n613,26,17.5\n613,27,17.0\n613,28,16.5\n613,29,16.0\n613,30,15.5\n613,31,15.0\n613,32,14.5\n613,33,14.0\n613,34,13.5\n613,35,13.0\n613,36,12.5\n613,37,12.0\n613,38,11.5\n613,39,12.0\n613,40,12.5\n613,41,13.0\n613,42,13.5\n613,43,14.0\n613,44,14.5\n613,45,15.0\n613,46,15.5\n613,47,16.0\n613,48,16.5\n613,49,17.0\n613,50,17.5\n613,51,17.0\n613,52,16.5\n613,53,16.0\n613,54,15.5\n613,55,15.0\n613,56,14.5\n613,57,14.0\n613,58,13.5\n613,59,13.0\n613,60,12.5\n613,61,12.0\n613,62,11.5\n613,63,11.0\n613,64,11.5\n613,65,12.0\n613,66,12.5\n613,67,13.0\n613,68,13.5\n613,69,14.0\n613,70,14.5\n613,71,15.0\n613,72,15.5\n613,73,16.0\n613,74,16.5\n613,75,17.0\n613,76,16.5\n613,77,16.0\n613,78,15.5\n613,79,15.0\n613,80,14.5\n613,81,14.0\n613,82,13.5\n613,83,13.0\n613,84,12.5\n613,85,12.0\n613,86,11.5\n613,87,11.0\n613,88,10.5\n613,89,11.0\n613,90,11.5\n613,91,12.0\n613,92,12.5\n613,93,13.0\n613,94,13.5\n613,95,14.0\n613,96,14.5\n613,97,15.0\n613,98,15.5\n613,99,16.0\n613,100,16.5\n613,101,16.0\n613,102,15.5\n613,103,15.0\n613,104,14.5\n613,105,14.0\n613,106,13.5\n613,107,13.0\n613,108,12.5\n613,109,12.0\n613,110,11.5\n613,111,11.0\n613,112,10.5\n613,113,10.0\n613,114,10.5\n613,115,11.0\n613,116,11.5\n613,117,12.0\n613,118,12.5\n613,119,13.0\n613,120,13.5\n613,121,14.0\n613,122,14.5\n613,123,15.0\n613,124,15.5\n613,125,16.0\n613,126,15.5\n613,127,15.0\n613,128,14.5\n613,129,14.0\n613,130,13.5\n613,131,13.0\n613,132,12.5\n613,133,12.0\n613,134,11.5\n613,135,11.0\n613,136,10.5\n613,137,10.0\n613,138,9.5\n613,139,10.0\n613,140,10.5\n613,141,11.0\n613,142,11.5\n613,143,12.0\n613,144,12.5\n613,145,13.0\n613,146,13.5\n613,147,14.0\n613,148,14.5\n613,149,15.0\n613,150,15.5\n613,151,15.0\n613,152,14.5\n613,153,14.0\n613,154,13.5\n613,155,13.0\n613,156,12.5\n613,157,12.0\n613,158,11.5\n613,159,11.0\n613,160,10.5\n613,161,10.0\n613,162,9.5\n613,163,9.0\n613,164,9.5\n613,165,10.0\n613,166,10.5\n613,167,11.0\n613,168,11.5\n613,169,12.0\n613,170,12.5\n613,171,13.0\n613,172,13.5\n613,173,14.0\n613,174,14.5\n613,175,15.0\n613,176,14.5\n613,177,14.0\n613,178,13.5\n613,179,13.0\n613,180,12.5\n613,181,12.0\n613,182,11.5\n613,183,11.0\n613,184,10.5\n613,185,10.0\n613,186,9.5\n613,187,9.0\n613,188,8.5\n613,189,9.0\n613,190,9.5\n613,191,10.0\n613,192,10.5\n613,193,11.0\n613,194,11.5\n613,195,12.0\n613,196,12.5\n613,197,13.0\n613,198,13.5\n613,199,14.0\n613,200,14.5\n613,201,14.0\n613,202,13.5\n613,203,13.0\n613,204,12.5\n613,205,12.0\n613,206,11.5\n613,207,11.0\n613,208,10.5\n613,209,10.0\n613,210,9.5\n613,211,9.0\n613,212,8.5\n613,213,8.0\n613,214,8.5\n613,215,9.0\n613,216,9.5\n613,217,10.0\n613,218,10.5\n613,219,11.0\n613,220,11.5\n613,221,12.0\n613,222,12.5\n613,223,13.0\n613,224,13.5\n613,225,14.0\n613,226,13.5\n613,227,13.0\n613,228,12.5\n613,229,12.0\n613,230,11.5\n613,231,11.0\n613,232,10.5\n613,233,10.0\n613,234,9.5\n613,235,9.0\n613,236,8.5\n613,237,8.0\n613,238,7.5\n613,239,8.0\n613,240,8.5\n613,241,9.0\n613,242,9.5\n613,243,10.0\n613,244,10.5\n613,245,11.0\n613,246,11.5\n613,247,12.0\n613,248,12.5\n613,249,13.0\n613,250,13.5\n613,251,13.0\n613,252,12.5\n613,253,12.0\n613,254,11.5\n613,255,11.0\n613,256,10.5\n613,257,10.0\n613,258,9.5\n613,259,9.0\n613,260,8.5\n613,261,8.0\n613,262,7.5\n613,263,7.0\n613,264,7.5\n613,265,8.0\n613,266,8.5\n613,267,9.0\n613,268,9.5\n613,269,10.0\n613,270,10.5\n613,271,11.0\n613,272,11.5\n613,273,12.0\n613,274,12.5\n613,275,13.0\n613,276,12.5\n613,277,12.0\n613,278,11.5\n613,279,11.0\n613,280,10.5\n613,281,10.0\n613,282,9.5\n613,283,9.0\n613,284,8.5\n613,285,8.0\n613,286,7.5\n613,287,7.0\n613,288,6.5\n613,289,7.0\n613,290,7.5\n613,291,8.0\n613,292,8.5\n613,293,9.0\n613,294,9.5\n613,295,10.0\n613,296,10.5\n613,297,11.0\n613,298,11.5\n613,299,12.0\n613,300,12.5\n613,301,12.0\n613,302,11.5\n613,303,11.0\n613,304,10.5\n613,305,10.0\n613,306,9.5\n613,307,9.0\n613,308,8.5\n613,309,8.0\n613,310,7.5\n613,311,7.0\n613,312,6.5\n613,313,6.0\n613,314,6.5\n613,315,7.0\n613,316,7.5\n613,317,8.0\n613,318,8.5\n613,319,9.0\n613,320,9.5\n613,321,10.0\n613,322,10.5\n613,323,11.0\n613,324,11.5\n613,325,12.0\n613,326,11.5\n613,327,11.0\n613,328,10.5\n613,329,10.0\n613,330,9.5\n613,331,9.0\n613,332,8.5\n613,333,8.0\n613,334,7.5\n613,335,7.0\n613,336,6.5\n613,337,6.0\n613,338,5.5\n613,339,6.0\n613,340,6.5\n613,341,7.0\n613,342,7.5\n613,343,8.0\n613,344,8.5\n613,345,9.0\n613,346,9.5\n613,347,10.0\n613,348,10.5\n613,349,11.0\n613,350,11.5\n613,351,11.0\n613,352,10.5\n613,353,10.0\n613,354,9.5\n613,355,9.0\n613,356,8.5\n613,357,8.0\n613,358,7.5\n613,359,7.0\n613,360,6.5\n613,361,6.0\n613,362,5.5\n613,363,5.0\n613,364,5.5\n613,365,6.0\n613,366,6.5\n613,367,7.0\n613,368,7.5\n613,369,8.0\n613,370,8.5\n613,371,9.0\n613,372,9.5\n613,373,10.0\n613,374,10.5\n613,375,11.0\n613,376,10.5\n613,377,10.0\n613,378,9.5\n613,379,9.0\n613,380,8.5\n613,381,8.0\n613,382,7.5\n613,383,7.0\n613,384,6.5\n613,385,6.0\n613,386,5.5\n613,387,5.0\n613,388,4.5\n613,389,5.0\n613,390,5.5\n613,391,6.0\n613,392,6.5\n613,393,7.0\n613,394,7.5\n613,395,8.0\n613,396,8.5\n613,397,9.0\n613,398,9.5\n613,399,10.0\n613,400,10.5\n613,401,10.0\n613,402,9.5\n613,403,9.0\n613,404,8.5\n613,405,8.0\n613,406,7.5\n613,407,7.0\n613,408,6.5\n613,409,6.0\n613,410,5.5\n613,411,5.0\n613,412,4.5\n613,413,4.0\n613,414,4.5\n613,415,5.0\n613,416,5.5\n613,417,6.0\n613,418,6.5\n613,419,7.0\n613,420,7.5\n613,421,8.0\n613,422,8.5\n613,423,9.0\n613,424,9.5\n613,425,10.0\n613,426,9.5\n613,427,9.0\n613,428,8.5\n613,429,8.0\n613,430,7.5\n613,431,7.0\n613,432,6.5\n613,433,6.0\n613,434,5.5\n613,435,5.0\n613,436,4.5\n613,437,4.0\n613,438,3.5\n613,439,4.0\n613,440,4.5\n613,441,5.0\n613,442,5.5\n613,443,6.0\n613,444,6.5\n613,445,7.0\n613,446,7.5\n613,447,8.0\n613,448,8.5\n613,449,9.0\n613,450,9.5\n613,451,9.0\n613,452,8.5\n613,453,8.0\n613,454,7.5\n613,455,7.0\n613,456,6.5\n613,457,6.0\n613,458,5.5\n613,459,5.0\n613,460,4.5\n613,461,4.0\n613,462,3.5\n613,463,3.0\n613,464,3.5\n613,465,4.0\n613,466,4.5\n613,467,5.0\n613,468,5.5\n613,469,6.0\n613,470,6.5\n613,471,7.0\n613,472,7.5\n613,473,8.0\n613,474,8.5\n613,475,9.0\n613,476,8.5\n613,477,8.0\n613,478,7.5\n613,479,7.0\n613,480,6.5\n613,481,6.0\n613,482,5.5\n613,483,5.0\n613,484,4.5\n613,485,4.0\n613,486,3.5\n613,487,3.0\n613,488,2.5\n613,489,3.0\n613,490,3.5\n613,491,4.0\n613,492,4.5\n613,493,5.0\n613,494,5.5\n613,495,6.0\n613,496,6.5\n613,497,7.0\n613,498,7.5\n613,499,8.0\n613,500,8.5\n613,501,8.0\n613,502,7.5\n613,503,7.0\n613,504,6.5\n613,505,6.0\n613,506,5.5\n613,507,5.0\n613,508,4.5\n613,509,4.0\n613,510,3.5\n613,511,3.0\n613,512,2.5\n613,513,2.0\n613,514,2.5\n613,515,3.0\n613,516,3.5\n613,517,4.0\n613,518,4.5\n613,519,5.0\n613,520,5.5\n613,521,6.0\n613,522,6.5\n613,523,7.0\n613,524,7.5\n613,525,8.0\n613,526,7.5\n613,527,7.0\n613,528,6.5\n613,529,6.0\n613,530,5.5\n613,531,5.0\n613,532,4.5\n613,533,4.0\n613,534,3.5\n613,535,3.0\n613,536,2.5\n613,537,2.0\n613,538,1.5\n613,539,2.0\n613,540,2.5\n613,541,3.0\n613,542,3.5\n613,543,4.0\n613,544,4.5\n613,545,5.0\n613,546,5.5\n613,547,6.0\n613,548,6.5\n613,549,7.0\n613,550,7.5\n613,551,7.0\n613,552,6.5\n613,553,6.0\n613,554,5.5\n613,555,5.0\n613,556,4.5\n613,557,4.0\n613,558,3.5\n613,559,3.0\n613,560,2.5\n613,561,2.0\n613,562,1.5\n613,563,1.0\n613,564,1.5\n613,565,2.0\n613,566,2.5\n613,567,3.0\n613,568,3.5\n613,569,4.0\n613,570,4.5\n613,571,5.0\n613,572,5.5\n613,573,6.0\n613,574,6.5\n613,575,7.0\n613,576,6.5\n613,577,6.0\n613,578,5.5\n613,579,5.0\n613,580,4.5\n613,581,4.0\n613,582,3.5\n613,583,3.0\n613,584,2.5\n613,585,2.0\n613,586,1.5\n613,587,1.0\n613,588,0.5\n613,589,1.0\n613,590,1.5\n613,591,2.0\n613,592,2.5\n613,593,3.0\n613,594,3.5\n613,595,4.0\n613,596,4.5\n613,597,5.0\n613,598,5.5\n613,599,6.0\n613,600,6.5\n613,601,6.0\n613,602,5.5\n613,603,5.0\n613,604,4.5\n613,605,4.0\n613,606,3.5\n613,607,3.0\n613,608,2.5\n613,609,2.0\n613,610,1.5\n613,611,1.0\n613,612,0.5\n613,613,0\n613,614,0.5\n613,615,1.0\n613,616,1.5\n613,617,2.0\n613,618,2.5\n613,619,3.0\n613,620,3.5\n613,621,4.0\n613,622,4.5\n613,623,5.0\n613,624,5.5\n614,0,19.0\n614,1,18.5\n614,2,18.0\n614,3,17.5\n614,4,17.0\n614,5,16.5\n614,6,16.0\n614,7,15.5\n614,8,15.0\n614,9,14.5\n614,10,14.0\n614,11,13.5\n614,12,13.0\n614,13,12.5\n614,14,12.0\n614,15,12.5\n614,16,13.0\n614,17,13.5\n614,18,14.0\n614,19,14.5\n614,20,15.0\n614,21,15.5\n614,22,16.0\n614,23,16.5\n614,24,17.0\n614,25,18.5\n614,26,18.0\n614,27,17.5\n614,28,17.0\n614,29,16.5\n614,30,16.0\n614,31,15.5\n614,32,15.0\n614,33,14.5\n614,34,14.0\n614,35,13.5\n614,36,13.0\n614,37,12.5\n614,38,12.0\n614,39,11.5\n614,40,12.0\n614,41,12.5\n614,42,13.0\n614,43,13.5\n614,44,14.0\n614,45,14.5\n614,46,15.0\n614,47,15.5\n614,48,16.0\n614,49,16.5\n614,50,18.0\n614,51,17.5\n614,52,17.0\n614,53,16.5\n614,54,16.0\n614,55,15.5\n614,56,15.0\n614,57,14.5\n614,58,14.0\n614,59,13.5\n614,60,13.0\n614,61,12.5\n614,62,12.0\n614,63,11.5\n614,64,11.0\n614,65,11.5\n614,66,12.0\n614,67,12.5\n614,68,13.0\n614,69,13.5\n614,70,14.0\n614,71,14.5\n614,72,15.0\n614,73,15.5\n614,74,16.0\n614,75,17.5\n614,76,17.0\n614,77,16.5\n614,78,16.0\n614,79,15.5\n614,80,15.0\n614,81,14.5\n614,82,14.0\n614,83,13.5\n614,84,13.0\n614,85,12.5\n614,86,12.0\n614,87,11.5\n614,88,11.0\n614,89,10.5\n614,90,11.0\n614,91,11.5\n614,92,12.0\n614,93,12.5\n614,94,13.0\n614,95,13.5\n614,96,14.0\n614,97,14.5\n614,98,15.0\n614,99,15.5\n614,100,17.0\n614,101,16.5\n614,102,16.0\n614,103,15.5\n614,104,15.0\n614,105,14.5\n614,106,14.0\n614,107,13.5\n614,108,13.0\n614,109,12.5\n614,110,12.0\n614,111,11.5\n614,112,11.0\n614,113,10.5\n614,114,10.0\n614,115,10.5\n614,116,11.0\n614,117,11.5\n614,118,12.0\n614,119,12.5\n614,120,13.0\n614,121,13.5\n614,122,14.0\n614,123,14.5\n614,124,15.0\n614,125,16.5\n614,126,16.0\n614,127,15.5\n614,128,15.0\n614,129,14.5\n614,130,14.0\n614,131,13.5\n614,132,13.0\n614,133,12.5\n614,134,12.0\n614,135,11.5\n614,136,11.0\n614,137,10.5\n614,138,10.0\n614,139,9.5\n614,140,10.0\n614,141,10.5\n614,142,11.0\n614,143,11.5\n614,144,12.0\n614,145,12.5\n614,146,13.0\n614,147,13.5\n614,148,14.0\n614,149,14.5\n614,150,16.0\n614,151,15.5\n614,152,15.0\n614,153,14.5\n614,154,14.0\n614,155,13.5\n614,156,13.0\n614,157,12.5\n614,158,12.0\n614,159,11.5\n614,160,11.0\n614,161,10.5\n614,162,10.0\n614,163,9.5\n614,164,9.0\n614,165,9.5\n614,166,10.0\n614,167,10.5\n614,168,11.0\n614,169,11.5\n614,170,12.0\n614,171,12.5\n614,172,13.0\n614,173,13.5\n614,174,14.0\n614,175,15.5\n614,176,15.0\n614,177,14.5\n614,178,14.0\n614,179,13.5\n614,180,13.0\n614,181,12.5\n614,182,12.0\n614,183,11.5\n614,184,11.0\n614,185,10.5\n614,186,10.0\n614,187,9.5\n614,188,9.0\n614,189,8.5\n614,190,9.0\n614,191,9.5\n614,192,10.0\n614,193,10.5\n614,194,11.0\n614,195,11.5\n614,196,12.0\n614,197,12.5\n614,198,13.0\n614,199,13.5\n614,200,15.0\n614,201,14.5\n614,202,14.0\n614,203,13.5\n614,204,13.0\n614,205,12.5\n614,206,12.0\n614,207,11.5\n614,208,11.0\n614,209,10.5\n614,210,10.0\n614,211,9.5\n614,212,9.0\n614,213,8.5\n614,214,8.0\n614,215,8.5\n614,216,9.0\n614,217,9.5\n614,218,10.0\n614,219,10.5\n614,220,11.0\n614,221,11.5\n614,222,12.0\n614,223,12.5\n614,224,13.0\n614,225,14.5\n614,226,14.0\n614,227,13.5\n614,228,13.0\n614,229,12.5\n614,230,12.0\n614,231,11.5\n614,232,11.0\n614,233,10.5\n614,234,10.0\n614,235,9.5\n614,236,9.0\n614,237,8.5\n614,238,8.0\n614,239,7.5\n614,240,8.0\n614,241,8.5\n614,242,9.0\n614,243,9.5\n614,244,10.0\n614,245,10.5\n614,246,11.0\n614,247,11.5\n614,248,12.0\n614,249,12.5\n614,250,14.0\n614,251,13.5\n614,252,13.0\n614,253,12.5\n614,254,12.0\n614,255,11.5\n614,256,11.0\n614,257,10.5\n614,258,10.0\n614,259,9.5\n614,260,9.0\n614,261,8.5\n614,262,8.0\n614,263,7.5\n614,264,7.0\n614,265,7.5\n614,266,8.0\n614,267,8.5\n614,268,9.0\n614,269,9.5\n614,270,10.0\n614,271,10.5\n614,272,11.0\n614,273,11.5\n614,274,12.0\n614,275,13.5\n614,276,13.0\n614,277,12.5\n614,278,12.0\n614,279,11.5\n614,280,11.0\n614,281,10.5\n614,282,10.0\n614,283,9.5\n614,284,9.0\n614,285,8.5\n614,286,8.0\n614,287,7.5\n614,288,7.0\n614,289,6.5\n614,290,7.0\n614,291,7.5\n614,292,8.0\n614,293,8.5\n614,294,9.0\n614,295,9.5\n614,296,10.0\n614,297,10.5\n614,298,11.0\n614,299,11.5\n614,300,13.0\n614,301,12.5\n614,302,12.0\n614,303,11.5\n614,304,11.0\n614,305,10.5\n614,306,10.0\n614,307,9.5\n614,308,9.0\n614,309,8.5\n614,310,8.0\n614,311,7.5\n614,312,7.0\n614,313,6.5\n614,314,6.0\n614,315,6.5\n614,316,7.0\n614,317,7.5\n614,318,8.0\n614,319,8.5\n614,320,9.0\n614,321,9.5\n614,322,10.0\n614,323,10.5\n614,324,11.0\n614,325,12.5\n614,326,12.0\n614,327,11.5\n614,328,11.0\n614,329,10.5\n614,330,10.0\n614,331,9.5\n614,332,9.0\n614,333,8.5\n614,334,8.0\n614,335,7.5\n614,336,7.0\n614,337,6.5\n614,338,6.0\n614,339,5.5\n614,340,6.0\n614,341,6.5\n614,342,7.0\n614,343,7.5\n614,344,8.0\n614,345,8.5\n614,346,9.0\n614,347,9.5\n614,348,10.0\n614,349,10.5\n614,350,12.0\n614,351,11.5\n614,352,11.0\n614,353,10.5\n614,354,10.0\n614,355,9.5\n614,356,9.0\n614,357,8.5\n614,358,8.0\n614,359,7.5\n614,360,7.0\n614,361,6.5\n614,362,6.0\n614,363,5.5\n614,364,5.0\n614,365,5.5\n614,366,6.0\n614,367,6.5\n614,368,7.0\n614,369,7.5\n614,370,8.0\n614,371,8.5\n614,372,9.0\n614,373,9.5\n614,374,10.0\n614,375,11.5\n614,376,11.0\n614,377,10.5\n614,378,10.0\n614,379,9.5\n614,380,9.0\n614,381,8.5\n614,382,8.0\n614,383,7.5\n614,384,7.0\n614,385,6.5\n614,386,6.0\n614,387,5.5\n614,388,5.0\n614,389,4.5\n614,390,5.0\n614,391,5.5\n614,392,6.0\n614,393,6.5\n614,394,7.0\n614,395,7.5\n614,396,8.0\n614,397,8.5\n614,398,9.0\n614,399,9.5\n614,400,11.0\n614,401,10.5\n614,402,10.0\n614,403,9.5\n614,404,9.0\n614,405,8.5\n614,406,8.0\n614,407,7.5\n614,408,7.0\n614,409,6.5\n614,410,6.0\n614,411,5.5\n614,412,5.0\n614,413,4.5\n614,414,4.0\n614,415,4.5\n614,416,5.0\n614,417,5.5\n614,418,6.0\n614,419,6.5\n614,420,7.0\n614,421,7.5\n614,422,8.0\n614,423,8.5\n614,424,9.0\n614,425,10.5\n614,426,10.0\n614,427,9.5\n614,428,9.0\n614,429,8.5\n614,430,8.0\n614,431,7.5\n614,432,7.0\n614,433,6.5\n614,434,6.0\n614,435,5.5\n614,436,5.0\n614,437,4.5\n614,438,4.0\n614,439,3.5\n614,440,4.0\n614,441,4.5\n614,442,5.0\n614,443,5.5\n614,444,6.0\n614,445,6.5\n614,446,7.0\n614,447,7.5\n614,448,8.0\n614,449,8.5\n614,450,10.0\n614,451,9.5\n614,452,9.0\n614,453,8.5\n614,454,8.0\n614,455,7.5\n614,456,7.0\n614,457,6.5\n614,458,6.0\n614,459,5.5\n614,460,5.0\n614,461,4.5\n614,462,4.0\n614,463,3.5\n614,464,3.0\n614,465,3.5\n614,466,4.0\n614,467,4.5\n614,468,5.0\n614,469,5.5\n614,470,6.0\n614,471,6.5\n614,472,7.0\n614,473,7.5\n614,474,8.0\n614,475,9.5\n614,476,9.0\n614,477,8.5\n614,478,8.0\n614,479,7.5\n614,480,7.0\n614,481,6.5\n614,482,6.0\n614,483,5.5\n614,484,5.0\n614,485,4.5\n614,486,4.0\n614,487,3.5\n614,488,3.0\n614,489,2.5\n614,490,3.0\n614,491,3.5\n614,492,4.0\n614,493,4.5\n614,494,5.0\n614,495,5.5\n614,496,6.0\n614,497,6.5\n614,498,7.0\n614,499,7.5\n614,500,9.0\n614,501,8.5\n614,502,8.0\n614,503,7.5\n614,504,7.0\n614,505,6.5\n614,506,6.0\n614,507,5.5\n614,508,5.0\n614,509,4.5\n614,510,4.0\n614,511,3.5\n614,512,3.0\n614,513,2.5\n614,514,2.0\n614,515,2.5\n614,516,3.0\n614,517,3.5\n614,518,4.0\n614,519,4.5\n614,520,5.0\n614,521,5.5\n614,522,6.0\n614,523,6.5\n614,524,7.0\n614,525,8.5\n614,526,8.0\n614,527,7.5\n614,528,7.0\n614,529,6.5\n614,530,6.0\n614,531,5.5\n614,532,5.0\n614,533,4.5\n614,534,4.0\n614,535,3.5\n614,536,3.0\n614,537,2.5\n614,538,2.0\n614,539,1.5\n614,540,2.0\n614,541,2.5\n614,542,3.0\n614,543,3.5\n614,544,4.0\n614,545,4.5\n614,546,5.0\n614,547,5.5\n614,548,6.0\n614,549,6.5\n614,550,8.0\n614,551,7.5\n614,552,7.0\n614,553,6.5\n614,554,6.0\n614,555,5.5\n614,556,5.0\n614,557,4.5\n614,558,4.0\n614,559,3.5\n614,560,3.0\n614,561,2.5\n614,562,2.0\n614,563,1.5\n614,564,1.0\n614,565,1.5\n614,566,2.0\n614,567,2.5\n614,568,3.0\n614,569,3.5\n614,570,4.0\n614,571,4.5\n614,572,5.0\n614,573,5.5\n614,574,6.0\n614,575,7.5\n614,576,7.0\n614,577,6.5\n614,578,6.0\n614,579,5.5\n614,580,5.0\n614,581,4.5\n614,582,4.0\n614,583,3.5\n614,584,3.0\n614,585,2.5\n614,586,2.0\n614,587,1.5\n614,588,1.0\n614,589,0.5\n614,590,1.0\n614,591,1.5\n614,592,2.0\n614,593,2.5\n614,594,3.0\n614,595,3.5\n614,596,4.0\n614,597,4.5\n614,598,5.0\n614,599,5.5\n614,600,7.0\n614,601,6.5\n614,602,6.0\n614,603,5.5\n614,604,5.0\n614,605,4.5\n614,606,4.0\n614,607,3.5\n614,608,3.0\n614,609,2.5\n614,610,2.0\n614,611,1.5\n614,612,1.0\n614,613,0.5\n614,614,0\n614,615,0.5\n614,616,1.0\n614,617,1.5\n614,618,2.0\n614,619,2.5\n614,620,3.0\n614,621,3.5\n614,622,4.0\n614,623,4.5\n614,624,5.0\n615,0,19.5\n615,1,19.0\n615,2,18.5\n615,3,18.0\n615,4,17.5\n615,5,17.0\n615,6,16.5\n615,7,16.0\n615,8,15.5\n615,9,15.0\n615,10,14.5\n615,11,14.0\n615,12,13.5\n615,13,13.0\n615,14,12.5\n615,15,12.0\n615,16,12.5\n615,17,13.0\n615,18,13.5\n615,19,14.0\n615,20,14.5\n615,21,15.0\n615,22,15.5\n615,23,16.0\n615,24,16.5\n615,25,19.0\n615,26,18.5\n615,27,18.0\n615,28,17.5\n615,29,17.0\n615,30,16.5\n615,31,16.0\n615,32,15.5\n615,33,15.0\n615,34,14.5\n615,35,14.0\n615,36,13.5\n615,37,13.0\n615,38,12.5\n615,39,12.0\n615,40,11.5\n615,41,12.0\n615,42,12.5\n615,43,13.0\n615,44,13.5\n615,45,14.0\n615,46,14.5\n615,47,15.0\n615,48,15.5\n615,49,16.0\n615,50,18.5\n615,51,18.0\n615,52,17.5\n615,53,17.0\n615,54,16.5\n615,55,16.0\n615,56,15.5\n615,57,15.0\n615,58,14.5\n615,59,14.0\n615,60,13.5\n615,61,13.0\n615,62,12.5\n615,63,12.0\n615,64,11.5\n615,65,11.0\n615,66,11.5\n615,67,12.0\n615,68,12.5\n615,69,13.0\n615,70,13.5\n615,71,14.0\n615,72,14.5\n615,73,15.0\n615,74,15.5\n615,75,18.0\n615,76,17.5\n615,77,17.0\n615,78,16.5\n615,79,16.0\n615,80,15.5\n615,81,15.0\n615,82,14.5\n615,83,14.0\n615,84,13.5\n615,85,13.0\n615,86,12.5\n615,87,12.0\n615,88,11.5\n615,89,11.0\n615,90,10.5\n615,91,11.0\n615,92,11.5\n615,93,12.0\n615,94,12.5\n615,95,13.0\n615,96,13.5\n615,97,14.0\n615,98,14.5\n615,99,15.0\n615,100,17.5\n615,101,17.0\n615,102,16.5\n615,103,16.0\n615,104,15.5\n615,105,15.0\n615,106,14.5\n615,107,14.0\n615,108,13.5\n615,109,13.0\n615,110,12.5\n615,111,12.0\n615,112,11.5\n615,113,11.0\n615,114,10.5\n615,115,10.0\n615,116,10.5\n615,117,11.0\n615,118,11.5\n615,119,12.0\n615,120,12.5\n615,121,13.0\n615,122,13.5\n615,123,14.0\n615,124,14.5\n615,125,17.0\n615,126,16.5\n615,127,16.0\n615,128,15.5\n615,129,15.0\n615,130,14.5\n615,131,14.0\n615,132,13.5\n615,133,13.0\n615,134,12.5\n615,135,12.0\n615,136,11.5\n615,137,11.0\n615,138,10.5\n615,139,10.0\n615,140,9.5\n615,141,10.0\n615,142,10.5\n615,143,11.0\n615,144,11.5\n615,145,12.0\n615,146,12.5\n615,147,13.0\n615,148,13.5\n615,149,14.0\n615,150,16.5\n615,151,16.0\n615,152,15.5\n615,153,15.0\n615,154,14.5\n615,155,14.0\n615,156,13.5\n615,157,13.0\n615,158,12.5\n615,159,12.0\n615,160,11.5\n615,161,11.0\n615,162,10.5\n615,163,10.0\n615,164,9.5\n615,165,9.0\n615,166,9.5\n615,167,10.0\n615,168,10.5\n615,169,11.0\n615,170,11.5\n615,171,12.0\n615,172,12.5\n615,173,13.0\n615,174,13.5\n615,175,16.0\n615,176,15.5\n615,177,15.0\n615,178,14.5\n615,179,14.0\n615,180,13.5\n615,181,13.0\n615,182,12.5\n615,183,12.0\n615,184,11.5\n615,185,11.0\n615,186,10.5\n615,187,10.0\n615,188,9.5\n615,189,9.0\n615,190,8.5\n615,191,9.0\n615,192,9.5\n615,193,10.0\n615,194,10.5\n615,195,11.0\n615,196,11.5\n615,197,12.0\n615,198,12.5\n615,199,13.0\n615,200,15.5\n615,201,15.0\n615,202,14.5\n615,203,14.0\n615,204,13.5\n615,205,13.0\n615,206,12.5\n615,207,12.0\n615,208,11.5\n615,209,11.0\n615,210,10.5\n615,211,10.0\n615,212,9.5\n615,213,9.0\n615,214,8.5\n615,215,8.0\n615,216,8.5\n615,217,9.0\n615,218,9.5\n615,219,10.0\n615,220,10.5\n615,221,11.0\n615,222,11.5\n615,223,12.0\n615,224,12.5\n615,225,15.0\n615,226,14.5\n615,227,14.0\n615,228,13.5\n615,229,13.0\n615,230,12.5\n615,231,12.0\n615,232,11.5\n615,233,11.0\n615,234,10.5\n615,235,10.0\n615,236,9.5\n615,237,9.0\n615,238,8.5\n615,239,8.0\n615,240,7.5\n615,241,8.0\n615,242,8.5\n615,243,9.0\n615,244,9.5\n615,245,10.0\n615,246,10.5\n615,247,11.0\n615,248,11.5\n615,249,12.0\n615,250,14.5\n615,251,14.0\n615,252,13.5\n615,253,13.0\n615,254,12.5\n615,255,12.0\n615,256,11.5\n615,257,11.0\n615,258,10.5\n615,259,10.0\n615,260,9.5\n615,261,9.0\n615,262,8.5\n615,263,8.0\n615,264,7.5\n615,265,7.0\n615,266,7.5\n615,267,8.0\n615,268,8.5\n615,269,9.0\n615,270,9.5\n615,271,10.0\n615,272,10.5\n615,273,11.0\n615,274,11.5\n615,275,14.0\n615,276,13.5\n615,277,13.0\n615,278,12.5\n615,279,12.0\n615,280,11.5\n615,281,11.0\n615,282,10.5\n615,283,10.0\n615,284,9.5\n615,285,9.0\n615,286,8.5\n615,287,8.0\n615,288,7.5\n615,289,7.0\n615,290,6.5\n615,291,7.0\n615,292,7.5\n615,293,8.0\n615,294,8.5\n615,295,9.0\n615,296,9.5\n615,297,10.0\n615,298,10.5\n615,299,11.0\n615,300,13.5\n615,301,13.0\n615,302,12.5\n615,303,12.0\n615,304,11.5\n615,305,11.0\n615,306,10.5\n615,307,10.0\n615,308,9.5\n615,309,9.0\n615,310,8.5\n615,311,8.0\n615,312,7.5\n615,313,7.0\n615,314,6.5\n615,315,6.0\n615,316,6.5\n615,317,7.0\n615,318,7.5\n615,319,8.0\n615,320,8.5\n615,321,9.0\n615,322,9.5\n615,323,10.0\n615,324,10.5\n615,325,13.0\n615,326,12.5\n615,327,12.0\n615,328,11.5\n615,329,11.0\n615,330,10.5\n615,331,10.0\n615,332,9.5\n615,333,9.0\n615,334,8.5\n615,335,8.0\n615,336,7.5\n615,337,7.0\n615,338,6.5\n615,339,6.0\n615,340,5.5\n615,341,6.0\n615,342,6.5\n615,343,7.0\n615,344,7.5\n615,345,8.0\n615,346,8.5\n615,347,9.0\n615,348,9.5\n615,349,10.0\n615,350,12.5\n615,351,12.0\n615,352,11.5\n615,353,11.0\n615,354,10.5\n615,355,10.0\n615,356,9.5\n615,357,9.0\n615,358,8.5\n615,359,8.0\n615,360,7.5\n615,361,7.0\n615,362,6.5\n615,363,6.0\n615,364,5.5\n615,365,5.0\n615,366,5.5\n615,367,6.0\n615,368,6.5\n615,369,7.0\n615,370,7.5\n615,371,8.0\n615,372,8.5\n615,373,9.0\n615,374,9.5\n615,375,12.0\n615,376,11.5\n615,377,11.0\n615,378,10.5\n615,379,10.0\n615,380,9.5\n615,381,9.0\n615,382,8.5\n615,383,8.0\n615,384,7.5\n615,385,7.0\n615,386,6.5\n615,387,6.0\n615,388,5.5\n615,389,5.0\n615,390,4.5\n615,391,5.0\n615,392,5.5\n615,393,6.0\n615,394,6.5\n615,395,7.0\n615,396,7.5\n615,397,8.0\n615,398,8.5\n615,399,9.0\n615,400,11.5\n615,401,11.0\n615,402,10.5\n615,403,10.0\n615,404,9.5\n615,405,9.0\n615,406,8.5\n615,407,8.0\n615,408,7.5\n615,409,7.0\n615,410,6.5\n615,411,6.0\n615,412,5.5\n615,413,5.0\n615,414,4.5\n615,415,4.0\n615,416,4.5\n615,417,5.0\n615,418,5.5\n615,419,6.0\n615,420,6.5\n615,421,7.0\n615,422,7.5\n615,423,8.0\n615,424,8.5\n615,425,11.0\n615,426,10.5\n615,427,10.0\n615,428,9.5\n615,429,9.0\n615,430,8.5\n615,431,8.0\n615,432,7.5\n615,433,7.0\n615,434,6.5\n615,435,6.0\n615,436,5.5\n615,437,5.0\n615,438,4.5\n615,439,4.0\n615,440,3.5\n615,441,4.0\n615,442,4.5\n615,443,5.0\n615,444,5.5\n615,445,6.0\n615,446,6.5\n615,447,7.0\n615,448,7.5\n615,449,8.0\n615,450,10.5\n615,451,10.0\n615,452,9.5\n615,453,9.0\n615,454,8.5\n615,455,8.0\n615,456,7.5\n615,457,7.0\n615,458,6.5\n615,459,6.0\n615,460,5.5\n615,461,5.0\n615,462,4.5\n615,463,4.0\n615,464,3.5\n615,465,3.0\n615,466,3.5\n615,467,4.0\n615,468,4.5\n615,469,5.0\n615,470,5.5\n615,471,6.0\n615,472,6.5\n615,473,7.0\n615,474,7.5\n615,475,10.0\n615,476,9.5\n615,477,9.0\n615,478,8.5\n615,479,8.0\n615,480,7.5\n615,481,7.0\n615,482,6.5\n615,483,6.0\n615,484,5.5\n615,485,5.0\n615,486,4.5\n615,487,4.0\n615,488,3.5\n615,489,3.0\n615,490,2.5\n615,491,3.0\n615,492,3.5\n615,493,4.0\n615,494,4.5\n615,495,5.0\n615,496,5.5\n615,497,6.0\n615,498,6.5\n615,499,7.0\n615,500,9.5\n615,501,9.0\n615,502,8.5\n615,503,8.0\n615,504,7.5\n615,505,7.0\n615,506,6.5\n615,507,6.0\n615,508,5.5\n615,509,5.0\n615,510,4.5\n615,511,4.0\n615,512,3.5\n615,513,3.0\n615,514,2.5\n615,515,2.0\n615,516,2.5\n615,517,3.0\n615,518,3.5\n615,519,4.0\n615,520,4.5\n615,521,5.0\n615,522,5.5\n615,523,6.0\n615,524,6.5\n615,525,9.0\n615,526,8.5\n615,527,8.0\n615,528,7.5\n615,529,7.0\n615,530,6.5\n615,531,6.0\n615,532,5.5\n615,533,5.0\n615,534,4.5\n615,535,4.0\n615,536,3.5\n615,537,3.0\n615,538,2.5\n615,539,2.0\n615,540,1.5\n615,541,2.0\n615,542,2.5\n615,543,3.0\n615,544,3.5\n615,545,4.0\n615,546,4.5\n615,547,5.0\n615,548,5.5\n615,549,6.0\n615,550,8.5\n615,551,8.0\n615,552,7.5\n615,553,7.0\n615,554,6.5\n615,555,6.0\n615,556,5.5\n615,557,5.0\n615,558,4.5\n615,559,4.0\n615,560,3.5\n615,561,3.0\n615,562,2.5\n615,563,2.0\n615,564,1.5\n615,565,1.0\n615,566,1.5\n615,567,2.0\n615,568,2.5\n615,569,3.0\n615,570,3.5\n615,571,4.0\n615,572,4.5\n615,573,5.0\n615,574,5.5\n615,575,8.0\n615,576,7.5\n615,577,7.0\n615,578,6.5\n615,579,6.0\n615,580,5.5\n615,581,5.0\n615,582,4.5\n615,583,4.0\n615,584,3.5\n615,585,3.0\n615,586,2.5\n615,587,2.0\n615,588,1.5\n615,589,1.0\n615,590,0.5\n615,591,1.0\n615,592,1.5\n615,593,2.0\n615,594,2.5\n615,595,3.0\n615,596,3.5\n615,597,4.0\n615,598,4.5\n615,599,5.0\n615,600,7.5\n615,601,7.0\n615,602,6.5\n615,603,6.0\n615,604,5.5\n615,605,5.0\n615,606,4.5\n615,607,4.0\n615,608,3.5\n615,609,3.0\n615,610,2.5\n615,611,2.0\n615,612,1.5\n615,613,1.0\n615,614,0.5\n615,615,0\n615,616,0.5\n615,617,1.0\n615,618,1.5\n615,619,2.0\n615,620,2.5\n615,621,3.0\n615,622,3.5\n615,623,4.0\n615,624,4.5\n616,0,20.0\n616,1,19.5\n616,2,19.0\n616,3,18.5\n616,4,18.0\n616,5,17.5\n616,6,17.0\n616,7,16.5\n616,8,16.0\n616,9,15.5\n616,10,15.0\n616,11,14.5\n616,12,14.0\n616,13,13.5\n616,14,13.0\n616,15,12.5\n616,16,12.0\n616,17,12.5\n616,18,13.0\n616,19,13.5\n616,20,14.0\n616,21,14.5\n616,22,15.0\n616,23,15.5\n616,24,16.0\n616,25,19.5\n616,26,19.0\n616,27,18.5\n616,28,18.0\n616,29,17.5\n616,30,17.0\n616,31,16.5\n616,32,16.0\n616,33,15.5\n616,34,15.0\n616,35,14.5\n616,36,14.0\n616,37,13.5\n616,38,13.0\n616,39,12.5\n616,40,12.0\n616,41,11.5\n616,42,12.0\n616,43,12.5\n616,44,13.0\n616,45,13.5\n616,46,14.0\n616,47,14.5\n616,48,15.0\n616,49,15.5\n616,50,19.0\n616,51,18.5\n616,52,18.0\n616,53,17.5\n616,54,17.0\n616,55,16.5\n616,56,16.0\n616,57,15.5\n616,58,15.0\n616,59,14.5\n616,60,14.0\n616,61,13.5\n616,62,13.0\n616,63,12.5\n616,64,12.0\n616,65,11.5\n616,66,11.0\n616,67,11.5\n616,68,12.0\n616,69,12.5\n616,70,13.0\n616,71,13.5\n616,72,14.0\n616,73,14.5\n616,74,15.0\n616,75,18.5\n616,76,18.0\n616,77,17.5\n616,78,17.0\n616,79,16.5\n616,80,16.0\n616,81,15.5\n616,82,15.0\n616,83,14.5\n616,84,14.0\n616,85,13.5\n616,86,13.0\n616,87,12.5\n616,88,12.0\n616,89,11.5\n616,90,11.0\n616,91,10.5\n616,92,11.0\n616,93,11.5\n616,94,12.0\n616,95,12.5\n616,96,13.0\n616,97,13.5\n616,98,14.0\n616,99,14.5\n616,100,18.0\n616,101,17.5\n616,102,17.0\n616,103,16.5\n616,104,16.0\n616,105,15.5\n616,106,15.0\n616,107,14.5\n616,108,14.0\n616,109,13.5\n616,110,13.0\n616,111,12.5\n616,112,12.0\n616,113,11.5\n616,114,11.0\n616,115,10.5\n616,116,10.0\n616,117,10.5\n616,118,11.0\n616,119,11.5\n616,120,12.0\n616,121,12.5\n616,122,13.0\n616,123,13.5\n616,124,14.0\n616,125,17.5\n616,126,17.0\n616,127,16.5\n616,128,16.0\n616,129,15.5\n616,130,15.0\n616,131,14.5\n616,132,14.0\n616,133,13.5\n616,134,13.0\n616,135,12.5\n616,136,12.0\n616,137,11.5\n616,138,11.0\n616,139,10.5\n616,140,10.0\n616,141,9.5\n616,142,10.0\n616,143,10.5\n616,144,11.0\n616,145,11.5\n616,146,12.0\n616,147,12.5\n616,148,13.0\n616,149,13.5\n616,150,17.0\n616,151,16.5\n616,152,16.0\n616,153,15.5\n616,154,15.0\n616,155,14.5\n616,156,14.0\n616,157,13.5\n616,158,13.0\n616,159,12.5\n616,160,12.0\n616,161,11.5\n616,162,11.0\n616,163,10.5\n616,164,10.0\n616,165,9.5\n616,166,9.0\n616,167,9.5\n616,168,10.0\n616,169,10.5\n616,170,11.0\n616,171,11.5\n616,172,12.0\n616,173,12.5\n616,174,13.0\n616,175,16.5\n616,176,16.0\n616,177,15.5\n616,178,15.0\n616,179,14.5\n616,180,14.0\n616,181,13.5\n616,182,13.0\n616,183,12.5\n616,184,12.0\n616,185,11.5\n616,186,11.0\n616,187,10.5\n616,188,10.0\n616,189,9.5\n616,190,9.0\n616,191,8.5\n616,192,9.0\n616,193,9.5\n616,194,10.0\n616,195,10.5\n616,196,11.0\n616,197,11.5\n616,198,12.0\n616,199,12.5\n616,200,16.0\n616,201,15.5\n616,202,15.0\n616,203,14.5\n616,204,14.0\n616,205,13.5\n616,206,13.0\n616,207,12.5\n616,208,12.0\n616,209,11.5\n616,210,11.0\n616,211,10.5\n616,212,10.0\n616,213,9.5\n616,214,9.0\n616,215,8.5\n616,216,8.0\n616,217,8.5\n616,218,9.0\n616,219,9.5\n616,220,10.0\n616,221,10.5\n616,222,11.0\n616,223,11.5\n616,224,12.0\n616,225,15.5\n616,226,15.0\n616,227,14.5\n616,228,14.0\n616,229,13.5\n616,230,13.0\n616,231,12.5\n616,232,12.0\n616,233,11.5\n616,234,11.0\n616,235,10.5\n616,236,10.0\n616,237,9.5\n616,238,9.0\n616,239,8.5\n616,240,8.0\n616,241,7.5\n616,242,8.0\n616,243,8.5\n616,244,9.0\n616,245,9.5\n616,246,10.0\n616,247,10.5\n616,248,11.0\n616,249,11.5\n616,250,15.0\n616,251,14.5\n616,252,14.0\n616,253,13.5\n616,254,13.0\n616,255,12.5\n616,256,12.0\n616,257,11.5\n616,258,11.0\n616,259,10.5\n616,260,10.0\n616,261,9.5\n616,262,9.0\n616,263,8.5\n616,264,8.0\n616,265,7.5\n616,266,7.0\n616,267,7.5\n616,268,8.0\n616,269,8.5\n616,270,9.0\n616,271,9.5\n616,272,10.0\n616,273,10.5\n616,274,11.0\n616,275,14.5\n616,276,14.0\n616,277,13.5\n616,278,13.0\n616,279,12.5\n616,280,12.0\n616,281,11.5\n616,282,11.0\n616,283,10.5\n616,284,10.0\n616,285,9.5\n616,286,9.0\n616,287,8.5\n616,288,8.0\n616,289,7.5\n616,290,7.0\n616,291,6.5\n616,292,7.0\n616,293,7.5\n616,294,8.0\n616,295,8.5\n616,296,9.0\n616,297,9.5\n616,298,10.0\n616,299,10.5\n616,300,14.0\n616,301,13.5\n616,302,13.0\n616,303,12.5\n616,304,12.0\n616,305,11.5\n616,306,11.0\n616,307,10.5\n616,308,10.0\n616,309,9.5\n616,310,9.0\n616,311,8.5\n616,312,8.0\n616,313,7.5\n616,314,7.0\n616,315,6.5\n616,316,6.0\n616,317,6.5\n616,318,7.0\n616,319,7.5\n616,320,8.0\n616,321,8.5\n616,322,9.0\n616,323,9.5\n616,324,10.0\n616,325,13.5\n616,326,13.0\n616,327,12.5\n616,328,12.0\n616,329,11.5\n616,330,11.0\n616,331,10.5\n616,332,10.0\n616,333,9.5\n616,334,9.0\n616,335,8.5\n616,336,8.0\n616,337,7.5\n616,338,7.0\n616,339,6.5\n616,340,6.0\n616,341,5.5\n616,342,6.0\n616,343,6.5\n616,344,7.0\n616,345,7.5\n616,346,8.0\n616,347,8.5\n616,348,9.0\n616,349,9.5\n616,350,13.0\n616,351,12.5\n616,352,12.0\n616,353,11.5\n616,354,11.0\n616,355,10.5\n616,356,10.0\n616,357,9.5\n616,358,9.0\n616,359,8.5\n616,360,8.0\n616,361,7.5\n616,362,7.0\n616,363,6.5\n616,364,6.0\n616,365,5.5\n616,366,5.0\n616,367,5.5\n616,368,6.0\n616,369,6.5\n616,370,7.0\n616,371,7.5\n616,372,8.0\n616,373,8.5\n616,374,9.0\n616,375,12.5\n616,376,12.0\n616,377,11.5\n616,378,11.0\n616,379,10.5\n616,380,10.0\n616,381,9.5\n616,382,9.0\n616,383,8.5\n616,384,8.0\n616,385,7.5\n616,386,7.0\n616,387,6.5\n616,388,6.0\n616,389,5.5\n616,390,5.0\n616,391,4.5\n616,392,5.0\n616,393,5.5\n616,394,6.0\n616,395,6.5\n616,396,7.0\n616,397,7.5\n616,398,8.0\n616,399,8.5\n616,400,12.0\n616,401,11.5\n616,402,11.0\n616,403,10.5\n616,404,10.0\n616,405,9.5\n616,406,9.0\n616,407,8.5\n616,408,8.0\n616,409,7.5\n616,410,7.0\n616,411,6.5\n616,412,6.0\n616,413,5.5\n616,414,5.0\n616,415,4.5\n616,416,4.0\n616,417,4.5\n616,418,5.0\n616,419,5.5\n616,420,6.0\n616,421,6.5\n616,422,7.0\n616,423,7.5\n616,424,8.0\n616,425,11.5\n616,426,11.0\n616,427,10.5\n616,428,10.0\n616,429,9.5\n616,430,9.0\n616,431,8.5\n616,432,8.0\n616,433,7.5\n616,434,7.0\n616,435,6.5\n616,436,6.0\n616,437,5.5\n616,438,5.0\n616,439,4.5\n616,440,4.0\n616,441,3.5\n616,442,4.0\n616,443,4.5\n616,444,5.0\n616,445,5.5\n616,446,6.0\n616,447,6.5\n616,448,7.0\n616,449,7.5\n616,450,11.0\n616,451,10.5\n616,452,10.0\n616,453,9.5\n616,454,9.0\n616,455,8.5\n616,456,8.0\n616,457,7.5\n616,458,7.0\n616,459,6.5\n616,460,6.0\n616,461,5.5\n616,462,5.0\n616,463,4.5\n616,464,4.0\n616,465,3.5\n616,466,3.0\n616,467,3.5\n616,468,4.0\n616,469,4.5\n616,470,5.0\n616,471,5.5\n616,472,6.0\n616,473,6.5\n616,474,7.0\n616,475,10.5\n616,476,10.0\n616,477,9.5\n616,478,9.0\n616,479,8.5\n616,480,8.0\n616,481,7.5\n616,482,7.0\n616,483,6.5\n616,484,6.0\n616,485,5.5\n616,486,5.0\n616,487,4.5\n616,488,4.0\n616,489,3.5\n616,490,3.0\n616,491,2.5\n616,492,3.0\n616,493,3.5\n616,494,4.0\n616,495,4.5\n616,496,5.0\n616,497,5.5\n616,498,6.0\n616,499,6.5\n616,500,10.0\n616,501,9.5\n616,502,9.0\n616,503,8.5\n616,504,8.0\n616,505,7.5\n616,506,7.0\n616,507,6.5\n616,508,6.0\n616,509,5.5\n616,510,5.0\n616,511,4.5\n616,512,4.0\n616,513,3.5\n616,514,3.0\n616,515,2.5\n616,516,2.0\n616,517,2.5\n616,518,3.0\n616,519,3.5\n616,520,4.0\n616,521,4.5\n616,522,5.0\n616,523,5.5\n616,524,6.0\n616,525,9.5\n616,526,9.0\n616,527,8.5\n616,528,8.0\n616,529,7.5\n616,530,7.0\n616,531,6.5\n616,532,6.0\n616,533,5.5\n616,534,5.0\n616,535,4.5\n616,536,4.0\n616,537,3.5\n616,538,3.0\n616,539,2.5\n616,540,2.0\n616,541,1.5\n616,542,2.0\n616,543,2.5\n616,544,3.0\n616,545,3.5\n616,546,4.0\n616,547,4.5\n616,548,5.0\n616,549,5.5\n616,550,9.0\n616,551,8.5\n616,552,8.0\n616,553,7.5\n616,554,7.0\n616,555,6.5\n616,556,6.0\n616,557,5.5\n616,558,5.0\n616,559,4.5\n616,560,4.0\n616,561,3.5\n616,562,3.0\n616,563,2.5\n616,564,2.0\n616,565,1.5\n616,566,1.0\n616,567,1.5\n616,568,2.0\n616,569,2.5\n616,570,3.0\n616,571,3.5\n616,572,4.0\n616,573,4.5\n616,574,5.0\n616,575,8.5\n616,576,8.0\n616,577,7.5\n616,578,7.0\n616,579,6.5\n616,580,6.0\n616,581,5.5\n616,582,5.0\n616,583,4.5\n616,584,4.0\n616,585,3.5\n616,586,3.0\n616,587,2.5\n616,588,2.0\n616,589,1.5\n616,590,1.0\n616,591,0.5\n616,592,1.0\n616,593,1.5\n616,594,2.0\n616,595,2.5\n616,596,3.0\n616,597,3.5\n616,598,4.0\n616,599,4.5\n616,600,8.0\n616,601,7.5\n616,602,7.0\n616,603,6.5\n616,604,6.0\n616,605,5.5\n616,606,5.0\n616,607,4.5\n616,608,4.0\n616,609,3.5\n616,610,3.0\n616,611,2.5\n616,612,2.0\n616,613,1.5\n616,614,1.0\n616,615,0.5\n616,616,0\n616,617,0.5\n616,618,1.0\n616,619,1.5\n616,620,2.0\n616,621,2.5\n616,622,3.0\n616,623,3.5\n616,624,4.0\n617,0,20.5\n617,1,20.0\n617,2,19.5\n617,3,19.0\n617,4,18.5\n617,5,18.0\n617,6,17.5\n617,7,17.0\n617,8,16.5\n617,9,16.0\n617,10,15.5\n617,11,15.0\n617,12,14.5\n617,13,14.0\n617,14,13.5\n617,15,13.0\n617,16,12.5\n617,17,12.0\n617,18,12.5\n617,19,13.0\n617,20,13.5\n617,21,14.0\n617,22,14.5\n617,23,15.0\n617,24,15.5\n617,25,20.0\n617,26,19.5\n617,27,19.0\n617,28,18.5\n617,29,18.0\n617,30,17.5\n617,31,17.0\n617,32,16.5\n617,33,16.0\n617,34,15.5\n617,35,15.0\n617,36,14.5\n617,37,14.0\n617,38,13.5\n617,39,13.0\n617,40,12.5\n617,41,12.0\n617,42,11.5\n617,43,12.0\n617,44,12.5\n617,45,13.0\n617,46,13.5\n617,47,14.0\n617,48,14.5\n617,49,15.0\n617,50,19.5\n617,51,19.0\n617,52,18.5\n617,53,18.0\n617,54,17.5\n617,55,17.0\n617,56,16.5\n617,57,16.0\n617,58,15.5\n617,59,15.0\n617,60,14.5\n617,61,14.0\n617,62,13.5\n617,63,13.0\n617,64,12.5\n617,65,12.0\n617,66,11.5\n617,67,11.0\n617,68,11.5\n617,69,12.0\n617,70,12.5\n617,71,13.0\n617,72,13.5\n617,73,14.0\n617,74,14.5\n617,75,19.0\n617,76,18.5\n617,77,18.0\n617,78,17.5\n617,79,17.0\n617,80,16.5\n617,81,16.0\n617,82,15.5\n617,83,15.0\n617,84,14.5\n617,85,14.0\n617,86,13.5\n617,87,13.0\n617,88,12.5\n617,89,12.0\n617,90,11.5\n617,91,11.0\n617,92,10.5\n617,93,11.0\n617,94,11.5\n617,95,12.0\n617,96,12.5\n617,97,13.0\n617,98,13.5\n617,99,14.0\n617,100,18.5\n617,101,18.0\n617,102,17.5\n617,103,17.0\n617,104,16.5\n617,105,16.0\n617,106,15.5\n617,107,15.0\n617,108,14.5\n617,109,14.0\n617,110,13.5\n617,111,13.0\n617,112,12.5\n617,113,12.0\n617,114,11.5\n617,115,11.0\n617,116,10.5\n617,117,10.0\n617,118,10.5\n617,119,11.0\n617,120,11.5\n617,121,12.0\n617,122,12.5\n617,123,13.0\n617,124,13.5\n617,125,18.0\n617,126,17.5\n617,127,17.0\n617,128,16.5\n617,129,16.0\n617,130,15.5\n617,131,15.0\n617,132,14.5\n617,133,14.0\n617,134,13.5\n617,135,13.0\n617,136,12.5\n617,137,12.0\n617,138,11.5\n617,139,11.0\n617,140,10.5\n617,141,10.0\n617,142,9.5\n617,143,10.0\n617,144,10.5\n617,145,11.0\n617,146,11.5\n617,147,12.0\n617,148,12.5\n617,149,13.0\n617,150,17.5\n617,151,17.0\n617,152,16.5\n617,153,16.0\n617,154,15.5\n617,155,15.0\n617,156,14.5\n617,157,14.0\n617,158,13.5\n617,159,13.0\n617,160,12.5\n617,161,12.0\n617,162,11.5\n617,163,11.0\n617,164,10.5\n617,165,10.0\n617,166,9.5\n617,167,9.0\n617,168,9.5\n617,169,10.0\n617,170,10.5\n617,171,11.0\n617,172,11.5\n617,173,12.0\n617,174,12.5\n617,175,17.0\n617,176,16.5\n617,177,16.0\n617,178,15.5\n617,179,15.0\n617,180,14.5\n617,181,14.0\n617,182,13.5\n617,183,13.0\n617,184,12.5\n617,185,12.0\n617,186,11.5\n617,187,11.0\n617,188,10.5\n617,189,10.0\n617,190,9.5\n617,191,9.0\n617,192,8.5\n617,193,9.0\n617,194,9.5\n617,195,10.0\n617,196,10.5\n617,197,11.0\n617,198,11.5\n617,199,12.0\n617,200,16.5\n617,201,16.0\n617,202,15.5\n617,203,15.0\n617,204,14.5\n617,205,14.0\n617,206,13.5\n617,207,13.0\n617,208,12.5\n617,209,12.0\n617,210,11.5\n617,211,11.0\n617,212,10.5\n617,213,10.0\n617,214,9.5\n617,215,9.0\n617,216,8.5\n617,217,8.0\n617,218,8.5\n617,219,9.0\n617,220,9.5\n617,221,10.0\n617,222,10.5\n617,223,11.0\n617,224,11.5\n617,225,16.0\n617,226,15.5\n617,227,15.0\n617,228,14.5\n617,229,14.0\n617,230,13.5\n617,231,13.0\n617,232,12.5\n617,233,12.0\n617,234,11.5\n617,235,11.0\n617,236,10.5\n617,237,10.0\n617,238,9.5\n617,239,9.0\n617,240,8.5\n617,241,8.0\n617,242,7.5\n617,243,8.0\n617,244,8.5\n617,245,9.0\n617,246,9.5\n617,247,10.0\n617,248,10.5\n617,249,11.0\n617,250,15.5\n617,251,15.0\n617,252,14.5\n617,253,14.0\n617,254,13.5\n617,255,13.0\n617,256,12.5\n617,257,12.0\n617,258,11.5\n617,259,11.0\n617,260,10.5\n617,261,10.0\n617,262,9.5\n617,263,9.0\n617,264,8.5\n617,265,8.0\n617,266,7.5\n617,267,7.0\n617,268,7.5\n617,269,8.0\n617,270,8.5\n617,271,9.0\n617,272,9.5\n617,273,10.0\n617,274,10.5\n617,275,15.0\n617,276,14.5\n617,277,14.0\n617,278,13.5\n617,279,13.0\n617,280,12.5\n617,281,12.0\n617,282,11.5\n617,283,11.0\n617,284,10.5\n617,285,10.0\n617,286,9.5\n617,287,9.0\n617,288,8.5\n617,289,8.0\n617,290,7.5\n617,291,7.0\n617,292,6.5\n617,293,7.0\n617,294,7.5\n617,295,8.0\n617,296,8.5\n617,297,9.0\n617,298,9.5\n617,299,10.0\n617,300,14.5\n617,301,14.0\n617,302,13.5\n617,303,13.0\n617,304,12.5\n617,305,12.0\n617,306,11.5\n617,307,11.0\n617,308,10.5\n617,309,10.0\n617,310,9.5\n617,311,9.0\n617,312,8.5\n617,313,8.0\n617,314,7.5\n617,315,7.0\n617,316,6.5\n617,317,6.0\n617,318,6.5\n617,319,7.0\n617,320,7.5\n617,321,8.0\n617,322,8.5\n617,323,9.0\n617,324,9.5\n617,325,14.0\n617,326,13.5\n617,327,13.0\n617,328,12.5\n617,329,12.0\n617,330,11.5\n617,331,11.0\n617,332,10.5\n617,333,10.0\n617,334,9.5\n617,335,9.0\n617,336,8.5\n617,337,8.0\n617,338,7.5\n617,339,7.0\n617,340,6.5\n617,341,6.0\n617,342,5.5\n617,343,6.0\n617,344,6.5\n617,345,7.0\n617,346,7.5\n617,347,8.0\n617,348,8.5\n617,349,9.0\n617,350,13.5\n617,351,13.0\n617,352,12.5\n617,353,12.0\n617,354,11.5\n617,355,11.0\n617,356,10.5\n617,357,10.0\n617,358,9.5\n617,359,9.0\n617,360,8.5\n617,361,8.0\n617,362,7.5\n617,363,7.0\n617,364,6.5\n617,365,6.0\n617,366,5.5\n617,367,5.0\n617,368,5.5\n617,369,6.0\n617,370,6.5\n617,371,7.0\n617,372,7.5\n617,373,8.0\n617,374,8.5\n617,375,13.0\n617,376,12.5\n617,377,12.0\n617,378,11.5\n617,379,11.0\n617,380,10.5\n617,381,10.0\n617,382,9.5\n617,383,9.0\n617,384,8.5\n617,385,8.0\n617,386,7.5\n617,387,7.0\n617,388,6.5\n617,389,6.0\n617,390,5.5\n617,391,5.0\n617,392,4.5\n617,393,5.0\n617,394,5.5\n617,395,6.0\n617,396,6.5\n617,397,7.0\n617,398,7.5\n617,399,8.0\n617,400,12.5\n617,401,12.0\n617,402,11.5\n617,403,11.0\n617,404,10.5\n617,405,10.0\n617,406,9.5\n617,407,9.0\n617,408,8.5\n617,409,8.0\n617,410,7.5\n617,411,7.0\n617,412,6.5\n617,413,6.0\n617,414,5.5\n617,415,5.0\n617,416,4.5\n617,417,4.0\n617,418,4.5\n617,419,5.0\n617,420,5.5\n617,421,6.0\n617,422,6.5\n617,423,7.0\n617,424,7.5\n617,425,12.0\n617,426,11.5\n617,427,11.0\n617,428,10.5\n617,429,10.0\n617,430,9.5\n617,431,9.0\n617,432,8.5\n617,433,8.0\n617,434,7.5\n617,435,7.0\n617,436,6.5\n617,437,6.0\n617,438,5.5\n617,439,5.0\n617,440,4.5\n617,441,4.0\n617,442,3.5\n617,443,4.0\n617,444,4.5\n617,445,5.0\n617,446,5.5\n617,447,6.0\n617,448,6.5\n617,449,7.0\n617,450,11.5\n617,451,11.0\n617,452,10.5\n617,453,10.0\n617,454,9.5\n617,455,9.0\n617,456,8.5\n617,457,8.0\n617,458,7.5\n617,459,7.0\n617,460,6.5\n617,461,6.0\n617,462,5.5\n617,463,5.0\n617,464,4.5\n617,465,4.0\n617,466,3.5\n617,467,3.0\n617,468,3.5\n617,469,4.0\n617,470,4.5\n617,471,5.0\n617,472,5.5\n617,473,6.0\n617,474,6.5\n617,475,11.0\n617,476,10.5\n617,477,10.0\n617,478,9.5\n617,479,9.0\n617,480,8.5\n617,481,8.0\n617,482,7.5\n617,483,7.0\n617,484,6.5\n617,485,6.0\n617,486,5.5\n617,487,5.0\n617,488,4.5\n617,489,4.0\n617,490,3.5\n617,491,3.0\n617,492,2.5\n617,493,3.0\n617,494,3.5\n617,495,4.0\n617,496,4.5\n617,497,5.0\n617,498,5.5\n617,499,6.0\n617,500,10.5\n617,501,10.0\n617,502,9.5\n617,503,9.0\n617,504,8.5\n617,505,8.0\n617,506,7.5\n617,507,7.0\n617,508,6.5\n617,509,6.0\n617,510,5.5\n617,511,5.0\n617,512,4.5\n617,513,4.0\n617,514,3.5\n617,515,3.0\n617,516,2.5\n617,517,2.0\n617,518,2.5\n617,519,3.0\n617,520,3.5\n617,521,4.0\n617,522,4.5\n617,523,5.0\n617,524,5.5\n617,525,10.0\n617,526,9.5\n617,527,9.0\n617,528,8.5\n617,529,8.0\n617,530,7.5\n617,531,7.0\n617,532,6.5\n617,533,6.0\n617,534,5.5\n617,535,5.0\n617,536,4.5\n617,537,4.0\n617,538,3.5\n617,539,3.0\n617,540,2.5\n617,541,2.0\n617,542,1.5\n617,543,2.0\n617,544,2.5\n617,545,3.0\n617,546,3.5\n617,547,4.0\n617,548,4.5\n617,549,5.0\n617,550,9.5\n617,551,9.0\n617,552,8.5\n617,553,8.0\n617,554,7.5\n617,555,7.0\n617,556,6.5\n617,557,6.0\n617,558,5.5\n617,559,5.0\n617,560,4.5\n617,561,4.0\n617,562,3.5\n617,563,3.0\n617,564,2.5\n617,565,2.0\n617,566,1.5\n617,567,1.0\n617,568,1.5\n617,569,2.0\n617,570,2.5\n617,571,3.0\n617,572,3.5\n617,573,4.0\n617,574,4.5\n617,575,9.0\n617,576,8.5\n617,577,8.0\n617,578,7.5\n617,579,7.0\n617,580,6.5\n617,581,6.0\n617,582,5.5\n617,583,5.0\n617,584,4.5\n617,585,4.0\n617,586,3.5\n617,587,3.0\n617,588,2.5\n617,589,2.0\n617,590,1.5\n617,591,1.0\n617,592,0.5\n617,593,1.0\n617,594,1.5\n617,595,2.0\n617,596,2.5\n617,597,3.0\n617,598,3.5\n617,599,4.0\n617,600,8.5\n617,601,8.0\n617,602,7.5\n617,603,7.0\n617,604,6.5\n617,605,6.0\n617,606,5.5\n617,607,5.0\n617,608,4.5\n617,609,4.0\n617,610,3.5\n617,611,3.0\n617,612,2.5\n617,613,2.0\n617,614,1.5\n617,615,1.0\n617,616,0.5\n617,617,0\n617,618,0.5\n617,619,1.0\n617,620,1.5\n617,621,2.0\n617,622,2.5\n617,623,3.0\n617,624,3.5\n618,0,21.0\n618,1,20.5\n618,2,20.0\n618,3,19.5\n618,4,19.0\n618,5,18.5\n618,6,18.0\n618,7,17.5\n618,8,17.0\n618,9,16.5\n618,10,16.0\n618,11,15.5\n618,12,15.0\n618,13,14.5\n618,14,14.0\n618,15,13.5\n618,16,13.0\n618,17,12.5\n618,18,12.0\n618,19,12.5\n618,20,13.0\n618,21,13.5\n618,22,14.0\n618,23,14.5\n618,24,15.0\n618,25,20.5\n618,26,20.0\n618,27,19.5\n618,28,19.0\n618,29,18.5\n618,30,18.0\n618,31,17.5\n618,32,17.0\n618,33,16.5\n618,34,16.0\n618,35,15.5\n618,36,15.0\n618,37,14.5\n618,38,14.0\n618,39,13.5\n618,40,13.0\n618,41,12.5\n618,42,12.0\n618,43,11.5\n618,44,12.0\n618,45,12.5\n618,46,13.0\n618,47,13.5\n618,48,14.0\n618,49,14.5\n618,50,20.0\n618,51,19.5\n618,52,19.0\n618,53,18.5\n618,54,18.0\n618,55,17.5\n618,56,17.0\n618,57,16.5\n618,58,16.0\n618,59,15.5\n618,60,15.0\n618,61,14.5\n618,62,14.0\n618,63,13.5\n618,64,13.0\n618,65,12.5\n618,66,12.0\n618,67,11.5\n618,68,11.0\n618,69,11.5\n618,70,12.0\n618,71,12.5\n618,72,13.0\n618,73,13.5\n618,74,14.0\n618,75,19.5\n618,76,19.0\n618,77,18.5\n618,78,18.0\n618,79,17.5\n618,80,17.0\n618,81,16.5\n618,82,16.0\n618,83,15.5\n618,84,15.0\n618,85,14.5\n618,86,14.0\n618,87,13.5\n618,88,13.0\n618,89,12.5\n618,90,12.0\n618,91,11.5\n618,92,11.0\n618,93,10.5\n618,94,11.0\n618,95,11.5\n618,96,12.0\n618,97,12.5\n618,98,13.0\n618,99,13.5\n618,100,19.0\n618,101,18.5\n618,102,18.0\n618,103,17.5\n618,104,17.0\n618,105,16.5\n618,106,16.0\n618,107,15.5\n618,108,15.0\n618,109,14.5\n618,110,14.0\n618,111,13.5\n618,112,13.0\n618,113,12.5\n618,114,12.0\n618,115,11.5\n618,116,11.0\n618,117,10.5\n618,118,10.0\n618,119,10.5\n618,120,11.0\n618,121,11.5\n618,122,12.0\n618,123,12.5\n618,124,13.0\n618,125,18.5\n618,126,18.0\n618,127,17.5\n618,128,17.0\n618,129,16.5\n618,130,16.0\n618,131,15.5\n618,132,15.0\n618,133,14.5\n618,134,14.0\n618,135,13.5\n618,136,13.0\n618,137,12.5\n618,138,12.0\n618,139,11.5\n618,140,11.0\n618,141,10.5\n618,142,10.0\n618,143,9.5\n618,144,10.0\n618,145,10.5\n618,146,11.0\n618,147,11.5\n618,148,12.0\n618,149,12.5\n618,150,18.0\n618,151,17.5\n618,152,17.0\n618,153,16.5\n618,154,16.0\n618,155,15.5\n618,156,15.0\n618,157,14.5\n618,158,14.0\n618,159,13.5\n618,160,13.0\n618,161,12.5\n618,162,12.0\n618,163,11.5\n618,164,11.0\n618,165,10.5\n618,166,10.0\n618,167,9.5\n618,168,9.0\n618,169,9.5\n618,170,10.0\n618,171,10.5\n618,172,11.0\n618,173,11.5\n618,174,12.0\n618,175,17.5\n618,176,17.0\n618,177,16.5\n618,178,16.0\n618,179,15.5\n618,180,15.0\n618,181,14.5\n618,182,14.0\n618,183,13.5\n618,184,13.0\n618,185,12.5\n618,186,12.0\n618,187,11.5\n618,188,11.0\n618,189,10.5\n618,190,10.0\n618,191,9.5\n618,192,9.0\n618,193,8.5\n618,194,9.0\n618,195,9.5\n618,196,10.0\n618,197,10.5\n618,198,11.0\n618,199,11.5\n618,200,17.0\n618,201,16.5\n618,202,16.0\n618,203,15.5\n618,204,15.0\n618,205,14.5\n618,206,14.0\n618,207,13.5\n618,208,13.0\n618,209,12.5\n618,210,12.0\n618,211,11.5\n618,212,11.0\n618,213,10.5\n618,214,10.0\n618,215,9.5\n618,216,9.0\n618,217,8.5\n618,218,8.0\n618,219,8.5\n618,220,9.0\n618,221,9.5\n618,222,10.0\n618,223,10.5\n618,224,11.0\n618,225,16.5\n618,226,16.0\n618,227,15.5\n618,228,15.0\n618,229,14.5\n618,230,14.0\n618,231,13.5\n618,232,13.0\n618,233,12.5\n618,234,12.0\n618,235,11.5\n618,236,11.0\n618,237,10.5\n618,238,10.0\n618,239,9.5\n618,240,9.0\n618,241,8.5\n618,242,8.0\n618,243,7.5\n618,244,8.0\n618,245,8.5\n618,246,9.0\n618,247,9.5\n618,248,10.0\n618,249,10.5\n618,250,16.0\n618,251,15.5\n618,252,15.0\n618,253,14.5\n618,254,14.0\n618,255,13.5\n618,256,13.0\n618,257,12.5\n618,258,12.0\n618,259,11.5\n618,260,11.0\n618,261,10.5\n618,262,10.0\n618,263,9.5\n618,264,9.0\n618,265,8.5\n618,266,8.0\n618,267,7.5\n618,268,7.0\n618,269,7.5\n618,270,8.0\n618,271,8.5\n618,272,9.0\n618,273,9.5\n618,274,10.0\n618,275,15.5\n618,276,15.0\n618,277,14.5\n618,278,14.0\n618,279,13.5\n618,280,13.0\n618,281,12.5\n618,282,12.0\n618,283,11.5\n618,284,11.0\n618,285,10.5\n618,286,10.0\n618,287,9.5\n618,288,9.0\n618,289,8.5\n618,290,8.0\n618,291,7.5\n618,292,7.0\n618,293,6.5\n618,294,7.0\n618,295,7.5\n618,296,8.0\n618,297,8.5\n618,298,9.0\n618,299,9.5\n618,300,15.0\n618,301,14.5\n618,302,14.0\n618,303,13.5\n618,304,13.0\n618,305,12.5\n618,306,12.0\n618,307,11.5\n618,308,11.0\n618,309,10.5\n618,310,10.0\n618,311,9.5\n618,312,9.0\n618,313,8.5\n618,314,8.0\n618,315,7.5\n618,316,7.0\n618,317,6.5\n618,318,6.0\n618,319,6.5\n618,320,7.0\n618,321,7.5\n618,322,8.0\n618,323,8.5\n618,324,9.0\n618,325,14.5\n618,326,14.0\n618,327,13.5\n618,328,13.0\n618,329,12.5\n618,330,12.0\n618,331,11.5\n618,332,11.0\n618,333,10.5\n618,334,10.0\n618,335,9.5\n618,336,9.0\n618,337,8.5\n618,338,8.0\n618,339,7.5\n618,340,7.0\n618,341,6.5\n618,342,6.0\n618,343,5.5\n618,344,6.0\n618,345,6.5\n618,346,7.0\n618,347,7.5\n618,348,8.0\n618,349,8.5\n618,350,14.0\n618,351,13.5\n618,352,13.0\n618,353,12.5\n618,354,12.0\n618,355,11.5\n618,356,11.0\n618,357,10.5\n618,358,10.0\n618,359,9.5\n618,360,9.0\n618,361,8.5\n618,362,8.0\n618,363,7.5\n618,364,7.0\n618,365,6.5\n618,366,6.0\n618,367,5.5\n618,368,5.0\n618,369,5.5\n618,370,6.0\n618,371,6.5\n618,372,7.0\n618,373,7.5\n618,374,8.0\n618,375,13.5\n618,376,13.0\n618,377,12.5\n618,378,12.0\n618,379,11.5\n618,380,11.0\n618,381,10.5\n618,382,10.0\n618,383,9.5\n618,384,9.0\n618,385,8.5\n618,386,8.0\n618,387,7.5\n618,388,7.0\n618,389,6.5\n618,390,6.0\n618,391,5.5\n618,392,5.0\n618,393,4.5\n618,394,5.0\n618,395,5.5\n618,396,6.0\n618,397,6.5\n618,398,7.0\n618,399,7.5\n618,400,13.0\n618,401,12.5\n618,402,12.0\n618,403,11.5\n618,404,11.0\n618,405,10.5\n618,406,10.0\n618,407,9.5\n618,408,9.0\n618,409,8.5\n618,410,8.0\n618,411,7.5\n618,412,7.0\n618,413,6.5\n618,414,6.0\n618,415,5.5\n618,416,5.0\n618,417,4.5\n618,418,4.0\n618,419,4.5\n618,420,5.0\n618,421,5.5\n618,422,6.0\n618,423,6.5\n618,424,7.0\n618,425,12.5\n618,426,12.0\n618,427,11.5\n618,428,11.0\n618,429,10.5\n618,430,10.0\n618,431,9.5\n618,432,9.0\n618,433,8.5\n618,434,8.0\n618,435,7.5\n618,436,7.0\n618,437,6.5\n618,438,6.0\n618,439,5.5\n618,440,5.0\n618,441,4.5\n618,442,4.0\n618,443,3.5\n618,444,4.0\n618,445,4.5\n618,446,5.0\n618,447,5.5\n618,448,6.0\n618,449,6.5\n618,450,12.0\n618,451,11.5\n618,452,11.0\n618,453,10.5\n618,454,10.0\n618,455,9.5\n618,456,9.0\n618,457,8.5\n618,458,8.0\n618,459,7.5\n618,460,7.0\n618,461,6.5\n618,462,6.0\n618,463,5.5\n618,464,5.0\n618,465,4.5\n618,466,4.0\n618,467,3.5\n618,468,3.0\n618,469,3.5\n618,470,4.0\n618,471,4.5\n618,472,5.0\n618,473,5.5\n618,474,6.0\n618,475,11.5\n618,476,11.0\n618,477,10.5\n618,478,10.0\n618,479,9.5\n618,480,9.0\n618,481,8.5\n618,482,8.0\n618,483,7.5\n618,484,7.0\n618,485,6.5\n618,486,6.0\n618,487,5.5\n618,488,5.0\n618,489,4.5\n618,490,4.0\n618,491,3.5\n618,492,3.0\n618,493,2.5\n618,494,3.0\n618,495,3.5\n618,496,4.0\n618,497,4.5\n618,498,5.0\n618,499,5.5\n618,500,11.0\n618,501,10.5\n618,502,10.0\n618,503,9.5\n618,504,9.0\n618,505,8.5\n618,506,8.0\n618,507,7.5\n618,508,7.0\n618,509,6.5\n618,510,6.0\n618,511,5.5\n618,512,5.0\n618,513,4.5\n618,514,4.0\n618,515,3.5\n618,516,3.0\n618,517,2.5\n618,518,2.0\n618,519,2.5\n618,520,3.0\n618,521,3.5\n618,522,4.0\n618,523,4.5\n618,524,5.0\n618,525,10.5\n618,526,10.0\n618,527,9.5\n618,528,9.0\n618,529,8.5\n618,530,8.0\n618,531,7.5\n618,532,7.0\n618,533,6.5\n618,534,6.0\n618,535,5.5\n618,536,5.0\n618,537,4.5\n618,538,4.0\n618,539,3.5\n618,540,3.0\n618,541,2.5\n618,542,2.0\n618,543,1.5\n618,544,2.0\n618,545,2.5\n618,546,3.0\n618,547,3.5\n618,548,4.0\n618,549,4.5\n618,550,10.0\n618,551,9.5\n618,552,9.0\n618,553,8.5\n618,554,8.0\n618,555,7.5\n618,556,7.0\n618,557,6.5\n618,558,6.0\n618,559,5.5\n618,560,5.0\n618,561,4.5\n618,562,4.0\n618,563,3.5\n618,564,3.0\n618,565,2.5\n618,566,2.0\n618,567,1.5\n618,568,1.0\n618,569,1.5\n618,570,2.0\n618,571,2.5\n618,572,3.0\n618,573,3.5\n618,574,4.0\n618,575,9.5\n618,576,9.0\n618,577,8.5\n618,578,8.0\n618,579,7.5\n618,580,7.0\n618,581,6.5\n618,582,6.0\n618,583,5.5\n618,584,5.0\n618,585,4.5\n618,586,4.0\n618,587,3.5\n618,588,3.0\n618,589,2.5\n618,590,2.0\n618,591,1.5\n618,592,1.0\n618,593,0.5\n618,594,1.0\n618,595,1.5\n618,596,2.0\n618,597,2.5\n618,598,3.0\n618,599,3.5\n618,600,9.0\n618,601,8.5\n618,602,8.0\n618,603,7.5\n618,604,7.0\n618,605,6.5\n618,606,6.0\n618,607,5.5\n618,608,5.0\n618,609,4.5\n618,610,4.0\n618,611,3.5\n618,612,3.0\n618,613,2.5\n618,614,2.0\n618,615,1.5\n618,616,1.0\n618,617,0.5\n618,618,0\n618,619,0.5\n618,620,1.0\n618,621,1.5\n618,622,2.0\n618,623,2.5\n618,624,3.0\n619,0,21.5\n619,1,21.0\n619,2,20.5\n619,3,20.0\n619,4,19.5\n619,5,19.0\n619,6,18.5\n619,7,18.0\n619,8,17.5\n619,9,17.0\n619,10,16.5\n619,11,16.0\n619,12,15.5\n619,13,15.0\n619,14,14.5\n619,15,14.0\n619,16,13.5\n619,17,13.0\n619,18,12.5\n619,19,12.0\n619,20,12.5\n619,21,13.0\n619,22,13.5\n619,23,14.0\n619,24,14.5\n619,25,21.0\n619,26,20.5\n619,27,20.0\n619,28,19.5\n619,29,19.0\n619,30,18.5\n619,31,18.0\n619,32,17.5\n619,33,17.0\n619,34,16.5\n619,35,16.0\n619,36,15.5\n619,37,15.0\n619,38,14.5\n619,39,14.0\n619,40,13.5\n619,41,13.0\n619,42,12.5\n619,43,12.0\n619,44,11.5\n619,45,12.0\n619,46,12.5\n619,47,13.0\n619,48,13.5\n619,49,14.0\n619,50,20.5\n619,51,20.0\n619,52,19.5\n619,53,19.0\n619,54,18.5\n619,55,18.0\n619,56,17.5\n619,57,17.0\n619,58,16.5\n619,59,16.0\n619,60,15.5\n619,61,15.0\n619,62,14.5\n619,63,14.0\n619,64,13.5\n619,65,13.0\n619,66,12.5\n619,67,12.0\n619,68,11.5\n619,69,11.0\n619,70,11.5\n619,71,12.0\n619,72,12.5\n619,73,13.0\n619,74,13.5\n619,75,20.0\n619,76,19.5\n619,77,19.0\n619,78,18.5\n619,79,18.0\n619,80,17.5\n619,81,17.0\n619,82,16.5\n619,83,16.0\n619,84,15.5\n619,85,15.0\n619,86,14.5\n619,87,14.0\n619,88,13.5\n619,89,13.0\n619,90,12.5\n619,91,12.0\n619,92,11.5\n619,93,11.0\n619,94,10.5\n619,95,11.0\n619,96,11.5\n619,97,12.0\n619,98,12.5\n619,99,13.0\n619,100,19.5\n619,101,19.0\n619,102,18.5\n619,103,18.0\n619,104,17.5\n619,105,17.0\n619,106,16.5\n619,107,16.0\n619,108,15.5\n619,109,15.0\n619,110,14.5\n619,111,14.0\n619,112,13.5\n619,113,13.0\n619,114,12.5\n619,115,12.0\n619,116,11.5\n619,117,11.0\n619,118,10.5\n619,119,10.0\n619,120,10.5\n619,121,11.0\n619,122,11.5\n619,123,12.0\n619,124,12.5\n619,125,19.0\n619,126,18.5\n619,127,18.0\n619,128,17.5\n619,129,17.0\n619,130,16.5\n619,131,16.0\n619,132,15.5\n619,133,15.0\n619,134,14.5\n619,135,14.0\n619,136,13.5\n619,137,13.0\n619,138,12.5\n619,139,12.0\n619,140,11.5\n619,141,11.0\n619,142,10.5\n619,143,10.0\n619,144,9.5\n619,145,10.0\n619,146,10.5\n619,147,11.0\n619,148,11.5\n619,149,12.0\n619,150,18.5\n619,151,18.0\n619,152,17.5\n619,153,17.0\n619,154,16.5\n619,155,16.0\n619,156,15.5\n619,157,15.0\n619,158,14.5\n619,159,14.0\n619,160,13.5\n619,161,13.0\n619,162,12.5\n619,163,12.0\n619,164,11.5\n619,165,11.0\n619,166,10.5\n619,167,10.0\n619,168,9.5\n619,169,9.0\n619,170,9.5\n619,171,10.0\n619,172,10.5\n619,173,11.0\n619,174,11.5\n619,175,18.0\n619,176,17.5\n619,177,17.0\n619,178,16.5\n619,179,16.0\n619,180,15.5\n619,181,15.0\n619,182,14.5\n619,183,14.0\n619,184,13.5\n619,185,13.0\n619,186,12.5\n619,187,12.0\n619,188,11.5\n619,189,11.0\n619,190,10.5\n619,191,10.0\n619,192,9.5\n619,193,9.0\n619,194,8.5\n619,195,9.0\n619,196,9.5\n619,197,10.0\n619,198,10.5\n619,199,11.0\n619,200,17.5\n619,201,17.0\n619,202,16.5\n619,203,16.0\n619,204,15.5\n619,205,15.0\n619,206,14.5\n619,207,14.0\n619,208,13.5\n619,209,13.0\n619,210,12.5\n619,211,12.0\n619,212,11.5\n619,213,11.0\n619,214,10.5\n619,215,10.0\n619,216,9.5\n619,217,9.0\n619,218,8.5\n619,219,8.0\n619,220,8.5\n619,221,9.0\n619,222,9.5\n619,223,10.0\n619,224,10.5\n619,225,17.0\n619,226,16.5\n619,227,16.0\n619,228,15.5\n619,229,15.0\n619,230,14.5\n619,231,14.0\n619,232,13.5\n619,233,13.0\n619,234,12.5\n619,235,12.0\n619,236,11.5\n619,237,11.0\n619,238,10.5\n619,239,10.0\n619,240,9.5\n619,241,9.0\n619,242,8.5\n619,243,8.0\n619,244,7.5\n619,245,8.0\n619,246,8.5\n619,247,9.0\n619,248,9.5\n619,249,10.0\n619,250,16.5\n619,251,16.0\n619,252,15.5\n619,253,15.0\n619,254,14.5\n619,255,14.0\n619,256,13.5\n619,257,13.0\n619,258,12.5\n619,259,12.0\n619,260,11.5\n619,261,11.0\n619,262,10.5\n619,263,10.0\n619,264,9.5\n619,265,9.0\n619,266,8.5\n619,267,8.0\n619,268,7.5\n619,269,7.0\n619,270,7.5\n619,271,8.0\n619,272,8.5\n619,273,9.0\n619,274,9.5\n619,275,16.0\n619,276,15.5\n619,277,15.0\n619,278,14.5\n619,279,14.0\n619,280,13.5\n619,281,13.0\n619,282,12.5\n619,283,12.0\n619,284,11.5\n619,285,11.0\n619,286,10.5\n619,287,10.0\n619,288,9.5\n619,289,9.0\n619,290,8.5\n619,291,8.0\n619,292,7.5\n619,293,7.0\n619,294,6.5\n619,295,7.0\n619,296,7.5\n619,297,8.0\n619,298,8.5\n619,299,9.0\n619,300,15.5\n619,301,15.0\n619,302,14.5\n619,303,14.0\n619,304,13.5\n619,305,13.0\n619,306,12.5\n619,307,12.0\n619,308,11.5\n619,309,11.0\n619,310,10.5\n619,311,10.0\n619,312,9.5\n619,313,9.0\n619,314,8.5\n619,315,8.0\n619,316,7.5\n619,317,7.0\n619,318,6.5\n619,319,6.0\n619,320,6.5\n619,321,7.0\n619,322,7.5\n619,323,8.0\n619,324,8.5\n619,325,15.0\n619,326,14.5\n619,327,14.0\n619,328,13.5\n619,329,13.0\n619,330,12.5\n619,331,12.0\n619,332,11.5\n619,333,11.0\n619,334,10.5\n619,335,10.0\n619,336,9.5\n619,337,9.0\n619,338,8.5\n619,339,8.0\n619,340,7.5\n619,341,7.0\n619,342,6.5\n619,343,6.0\n619,344,5.5\n619,345,6.0\n619,346,6.5\n619,347,7.0\n619,348,7.5\n619,349,8.0\n619,350,14.5\n619,351,14.0\n619,352,13.5\n619,353,13.0\n619,354,12.5\n619,355,12.0\n619,356,11.5\n619,357,11.0\n619,358,10.5\n619,359,10.0\n619,360,9.5\n619,361,9.0\n619,362,8.5\n619,363,8.0\n619,364,7.5\n619,365,7.0\n619,366,6.5\n619,367,6.0\n619,368,5.5\n619,369,5.0\n619,370,5.5\n619,371,6.0\n619,372,6.5\n619,373,7.0\n619,374,7.5\n619,375,14.0\n619,376,13.5\n619,377,13.0\n619,378,12.5\n619,379,12.0\n619,380,11.5\n619,381,11.0\n619,382,10.5\n619,383,10.0\n619,384,9.5\n619,385,9.0\n619,386,8.5\n619,387,8.0\n619,388,7.5\n619,389,7.0\n619,390,6.5\n619,391,6.0\n619,392,5.5\n619,393,5.0\n619,394,4.5\n619,395,5.0\n619,396,5.5\n619,397,6.0\n619,398,6.5\n619,399,7.0\n619,400,13.5\n619,401,13.0\n619,402,12.5\n619,403,12.0\n619,404,11.5\n619,405,11.0\n619,406,10.5\n619,407,10.0\n619,408,9.5\n619,409,9.0\n619,410,8.5\n619,411,8.0\n619,412,7.5\n619,413,7.0\n619,414,6.5\n619,415,6.0\n619,416,5.5\n619,417,5.0\n619,418,4.5\n619,419,4.0\n619,420,4.5\n619,421,5.0\n619,422,5.5\n619,423,6.0\n619,424,6.5\n619,425,13.0\n619,426,12.5\n619,427,12.0\n619,428,11.5\n619,429,11.0\n619,430,10.5\n619,431,10.0\n619,432,9.5\n619,433,9.0\n619,434,8.5\n619,435,8.0\n619,436,7.5\n619,437,7.0\n619,438,6.5\n619,439,6.0\n619,440,5.5\n619,441,5.0\n619,442,4.5\n619,443,4.0\n619,444,3.5\n619,445,4.0\n619,446,4.5\n619,447,5.0\n619,448,5.5\n619,449,6.0\n619,450,12.5\n619,451,12.0\n619,452,11.5\n619,453,11.0\n619,454,10.5\n619,455,10.0\n619,456,9.5\n619,457,9.0\n619,458,8.5\n619,459,8.0\n619,460,7.5\n619,461,7.0\n619,462,6.5\n619,463,6.0\n619,464,5.5\n619,465,5.0\n619,466,4.5\n619,467,4.0\n619,468,3.5\n619,469,3.0\n619,470,3.5\n619,471,4.0\n619,472,4.5\n619,473,5.0\n619,474,5.5\n619,475,12.0\n619,476,11.5\n619,477,11.0\n619,478,10.5\n619,479,10.0\n619,480,9.5\n619,481,9.0\n619,482,8.5\n619,483,8.0\n619,484,7.5\n619,485,7.0\n619,486,6.5\n619,487,6.0\n619,488,5.5\n619,489,5.0\n619,490,4.5\n619,491,4.0\n619,492,3.5\n619,493,3.0\n619,494,2.5\n619,495,3.0\n619,496,3.5\n619,497,4.0\n619,498,4.5\n619,499,5.0\n619,500,11.5\n619,501,11.0\n619,502,10.5\n619,503,10.0\n619,504,9.5\n619,505,9.0\n619,506,8.5\n619,507,8.0\n619,508,7.5\n619,509,7.0\n619,510,6.5\n619,511,6.0\n619,512,5.5\n619,513,5.0\n619,514,4.5\n619,515,4.0\n619,516,3.5\n619,517,3.0\n619,518,2.5\n619,519,2.0\n619,520,2.5\n619,521,3.0\n619,522,3.5\n619,523,4.0\n619,524,4.5\n619,525,11.0\n619,526,10.5\n619,527,10.0\n619,528,9.5\n619,529,9.0\n619,530,8.5\n619,531,8.0\n619,532,7.5\n619,533,7.0\n619,534,6.5\n619,535,6.0\n619,536,5.5\n619,537,5.0\n619,538,4.5\n619,539,4.0\n619,540,3.5\n619,541,3.0\n619,542,2.5\n619,543,2.0\n619,544,1.5\n619,545,2.0\n619,546,2.5\n619,547,3.0\n619,548,3.5\n619,549,4.0\n619,550,10.5\n619,551,10.0\n619,552,9.5\n619,553,9.0\n619,554,8.5\n619,555,8.0\n619,556,7.5\n619,557,7.0\n619,558,6.5\n619,559,6.0\n619,560,5.5\n619,561,5.0\n619,562,4.5\n619,563,4.0\n619,564,3.5\n619,565,3.0\n619,566,2.5\n619,567,2.0\n619,568,1.5\n619,569,1.0\n619,570,1.5\n619,571,2.0\n619,572,2.5\n619,573,3.0\n619,574,3.5\n619,575,10.0\n619,576,9.5\n619,577,9.0\n619,578,8.5\n619,579,8.0\n619,580,7.5\n619,581,7.0\n619,582,6.5\n619,583,6.0\n619,584,5.5\n619,585,5.0\n619,586,4.5\n619,587,4.0\n619,588,3.5\n619,589,3.0\n619,590,2.5\n619,591,2.0\n619,592,1.5\n619,593,1.0\n619,594,0.5\n619,595,1.0\n619,596,1.5\n619,597,2.0\n619,598,2.5\n619,599,3.0\n619,600,9.5\n619,601,9.0\n619,602,8.5\n619,603,8.0\n619,604,7.5\n619,605,7.0\n619,606,6.5\n619,607,6.0\n619,608,5.5\n619,609,5.0\n619,610,4.5\n619,611,4.0\n619,612,3.5\n619,613,3.0\n619,614,2.5\n619,615,2.0\n619,616,1.5\n619,617,1.0\n619,618,0.5\n619,619,0\n619,620,0.5\n619,621,1.0\n619,622,1.5\n619,623,2.0\n619,624,2.5\n620,0,22.0\n620,1,21.5\n620,2,21.0\n620,3,20.5\n620,4,20.0\n620,5,19.5\n620,6,19.0\n620,7,18.5\n620,8,18.0\n620,9,17.5\n620,10,17.0\n620,11,16.5\n620,12,16.0\n620,13,15.5\n620,14,15.0\n620,15,14.5\n620,16,14.0\n620,17,13.5\n620,18,13.0\n620,19,12.5\n620,20,12.0\n620,21,12.5\n620,22,13.0\n620,23,13.5\n620,24,14.0\n620,25,21.5\n620,26,21.0\n620,27,20.5\n620,28,20.0\n620,29,19.5\n620,30,19.0\n620,31,18.5\n620,32,18.0\n620,33,17.5\n620,34,17.0\n620,35,16.5\n620,36,16.0\n620,37,15.5\n620,38,15.0\n620,39,14.5\n620,40,14.0\n620,41,13.5\n620,42,13.0\n620,43,12.5\n620,44,12.0\n620,45,11.5\n620,46,12.0\n620,47,12.5\n620,48,13.0\n620,49,13.5\n620,50,21.0\n620,51,20.5\n620,52,20.0\n620,53,19.5\n620,54,19.0\n620,55,18.5\n620,56,18.0\n620,57,17.5\n620,58,17.0\n620,59,16.5\n620,60,16.0\n620,61,15.5\n620,62,15.0\n620,63,14.5\n620,64,14.0\n620,65,13.5\n620,66,13.0\n620,67,12.5\n620,68,12.0\n620,69,11.5\n620,70,11.0\n620,71,11.5\n620,72,12.0\n620,73,12.5\n620,74,13.0\n620,75,20.5\n620,76,20.0\n620,77,19.5\n620,78,19.0\n620,79,18.5\n620,80,18.0\n620,81,17.5\n620,82,17.0\n620,83,16.5\n620,84,16.0\n620,85,15.5\n620,86,15.0\n620,87,14.5\n620,88,14.0\n620,89,13.5\n620,90,13.0\n620,91,12.5\n620,92,12.0\n620,93,11.5\n620,94,11.0\n620,95,10.5\n620,96,11.0\n620,97,11.5\n620,98,12.0\n620,99,12.5\n620,100,20.0\n620,101,19.5\n620,102,19.0\n620,103,18.5\n620,104,18.0\n620,105,17.5\n620,106,17.0\n620,107,16.5\n620,108,16.0\n620,109,15.5\n620,110,15.0\n620,111,14.5\n620,112,14.0\n620,113,13.5\n620,114,13.0\n620,115,12.5\n620,116,12.0\n620,117,11.5\n620,118,11.0\n620,119,10.5\n620,120,10.0\n620,121,10.5\n620,122,11.0\n620,123,11.5\n620,124,12.0\n620,125,19.5\n620,126,19.0\n620,127,18.5\n620,128,18.0\n620,129,17.5\n620,130,17.0\n620,131,16.5\n620,132,16.0\n620,133,15.5\n620,134,15.0\n620,135,14.5\n620,136,14.0\n620,137,13.5\n620,138,13.0\n620,139,12.5\n620,140,12.0\n620,141,11.5\n620,142,11.0\n620,143,10.5\n620,144,10.0\n620,145,9.5\n620,146,10.0\n620,147,10.5\n620,148,11.0\n620,149,11.5\n620,150,19.0\n620,151,18.5\n620,152,18.0\n620,153,17.5\n620,154,17.0\n620,155,16.5\n620,156,16.0\n620,157,15.5\n620,158,15.0\n620,159,14.5\n620,160,14.0\n620,161,13.5\n620,162,13.0\n620,163,12.5\n620,164,12.0\n620,165,11.5\n620,166,11.0\n620,167,10.5\n620,168,10.0\n620,169,9.5\n620,170,9.0\n620,171,9.5\n620,172,10.0\n620,173,10.5\n620,174,11.0\n620,175,18.5\n620,176,18.0\n620,177,17.5\n620,178,17.0\n620,179,16.5\n620,180,16.0\n620,181,15.5\n620,182,15.0\n620,183,14.5\n620,184,14.0\n620,185,13.5\n620,186,13.0\n620,187,12.5\n620,188,12.0\n620,189,11.5\n620,190,11.0\n620,191,10.5\n620,192,10.0\n620,193,9.5\n620,194,9.0\n620,195,8.5\n620,196,9.0\n620,197,9.5\n620,198,10.0\n620,199,10.5\n620,200,18.0\n620,201,17.5\n620,202,17.0\n620,203,16.5\n620,204,16.0\n620,205,15.5\n620,206,15.0\n620,207,14.5\n620,208,14.0\n620,209,13.5\n620,210,13.0\n620,211,12.5\n620,212,12.0\n620,213,11.5\n620,214,11.0\n620,215,10.5\n620,216,10.0\n620,217,9.5\n620,218,9.0\n620,219,8.5\n620,220,8.0\n620,221,8.5\n620,222,9.0\n620,223,9.5\n620,224,10.0\n620,225,17.5\n620,226,17.0\n620,227,16.5\n620,228,16.0\n620,229,15.5\n620,230,15.0\n620,231,14.5\n620,232,14.0\n620,233,13.5\n620,234,13.0\n620,235,12.5\n620,236,12.0\n620,237,11.5\n620,238,11.0\n620,239,10.5\n620,240,10.0\n620,241,9.5\n620,242,9.0\n620,243,8.5\n620,244,8.0\n620,245,7.5\n620,246,8.0\n620,247,8.5\n620,248,9.0\n620,249,9.5\n620,250,17.0\n620,251,16.5\n620,252,16.0\n620,253,15.5\n620,254,15.0\n620,255,14.5\n620,256,14.0\n620,257,13.5\n620,258,13.0\n620,259,12.5\n620,260,12.0\n620,261,11.5\n620,262,11.0\n620,263,10.5\n620,264,10.0\n620,265,9.5\n620,266,9.0\n620,267,8.5\n620,268,8.0\n620,269,7.5\n620,270,7.0\n620,271,7.5\n620,272,8.0\n620,273,8.5\n620,274,9.0\n620,275,16.5\n620,276,16.0\n620,277,15.5\n620,278,15.0\n620,279,14.5\n620,280,14.0\n620,281,13.5\n620,282,13.0\n620,283,12.5\n620,284,12.0\n620,285,11.5\n620,286,11.0\n620,287,10.5\n620,288,10.0\n620,289,9.5\n620,290,9.0\n620,291,8.5\n620,292,8.0\n620,293,7.5\n620,294,7.0\n620,295,6.5\n620,296,7.0\n620,297,7.5\n620,298,8.0\n620,299,8.5\n620,300,16.0\n620,301,15.5\n620,302,15.0\n620,303,14.5\n620,304,14.0\n620,305,13.5\n620,306,13.0\n620,307,12.5\n620,308,12.0\n620,309,11.5\n620,310,11.0\n620,311,10.5\n620,312,10.0\n620,313,9.5\n620,314,9.0\n620,315,8.5\n620,316,8.0\n620,317,7.5\n620,318,7.0\n620,319,6.5\n620,320,6.0\n620,321,6.5\n620,322,7.0\n620,323,7.5\n620,324,8.0\n620,325,15.5\n620,326,15.0\n620,327,14.5\n620,328,14.0\n620,329,13.5\n620,330,13.0\n620,331,12.5\n620,332,12.0\n620,333,11.5\n620,334,11.0\n620,335,10.5\n620,336,10.0\n620,337,9.5\n620,338,9.0\n620,339,8.5\n620,340,8.0\n620,341,7.5\n620,342,7.0\n620,343,6.5\n620,344,6.0\n620,345,5.5\n620,346,6.0\n620,347,6.5\n620,348,7.0\n620,349,7.5\n620,350,15.0\n620,351,14.5\n620,352,14.0\n620,353,13.5\n620,354,13.0\n620,355,12.5\n620,356,12.0\n620,357,11.5\n620,358,11.0\n620,359,10.5\n620,360,10.0\n620,361,9.5\n620,362,9.0\n620,363,8.5\n620,364,8.0\n620,365,7.5\n620,366,7.0\n620,367,6.5\n620,368,6.0\n620,369,5.5\n620,370,5.0\n620,371,5.5\n620,372,6.0\n620,373,6.5\n620,374,7.0\n620,375,14.5\n620,376,14.0\n620,377,13.5\n620,378,13.0\n620,379,12.5\n620,380,12.0\n620,381,11.5\n620,382,11.0\n620,383,10.5\n620,384,10.0\n620,385,9.5\n620,386,9.0\n620,387,8.5\n620,388,8.0\n620,389,7.5\n620,390,7.0\n620,391,6.5\n620,392,6.0\n620,393,5.5\n620,394,5.0\n620,395,4.5\n620,396,5.0\n620,397,5.5\n620,398,6.0\n620,399,6.5\n620,400,14.0\n620,401,13.5\n620,402,13.0\n620,403,12.5\n620,404,12.0\n620,405,11.5\n620,406,11.0\n620,407,10.5\n620,408,10.0\n620,409,9.5\n620,410,9.0\n620,411,8.5\n620,412,8.0\n620,413,7.5\n620,414,7.0\n620,415,6.5\n620,416,6.0\n620,417,5.5\n620,418,5.0\n620,419,4.5\n620,420,4.0\n620,421,4.5\n620,422,5.0\n620,423,5.5\n620,424,6.0\n620,425,13.5\n620,426,13.0\n620,427,12.5\n620,428,12.0\n620,429,11.5\n620,430,11.0\n620,431,10.5\n620,432,10.0\n620,433,9.5\n620,434,9.0\n620,435,8.5\n620,436,8.0\n620,437,7.5\n620,438,7.0\n620,439,6.5\n620,440,6.0\n620,441,5.5\n620,442,5.0\n620,443,4.5\n620,444,4.0\n620,445,3.5\n620,446,4.0\n620,447,4.5\n620,448,5.0\n620,449,5.5\n620,450,13.0\n620,451,12.5\n620,452,12.0\n620,453,11.5\n620,454,11.0\n620,455,10.5\n620,456,10.0\n620,457,9.5\n620,458,9.0\n620,459,8.5\n620,460,8.0\n620,461,7.5\n620,462,7.0\n620,463,6.5\n620,464,6.0\n620,465,5.5\n620,466,5.0\n620,467,4.5\n620,468,4.0\n620,469,3.5\n620,470,3.0\n620,471,3.5\n620,472,4.0\n620,473,4.5\n620,474,5.0\n620,475,12.5\n620,476,12.0\n620,477,11.5\n620,478,11.0\n620,479,10.5\n620,480,10.0\n620,481,9.5\n620,482,9.0\n620,483,8.5\n620,484,8.0\n620,485,7.5\n620,486,7.0\n620,487,6.5\n620,488,6.0\n620,489,5.5\n620,490,5.0\n620,491,4.5\n620,492,4.0\n620,493,3.5\n620,494,3.0\n620,495,2.5\n620,496,3.0\n620,497,3.5\n620,498,4.0\n620,499,4.5\n620,500,12.0\n620,501,11.5\n620,502,11.0\n620,503,10.5\n620,504,10.0\n620,505,9.5\n620,506,9.0\n620,507,8.5\n620,508,8.0\n620,509,7.5\n620,510,7.0\n620,511,6.5\n620,512,6.0\n620,513,5.5\n620,514,5.0\n620,515,4.5\n620,516,4.0\n620,517,3.5\n620,518,3.0\n620,519,2.5\n620,520,2.0\n620,521,2.5\n620,522,3.0\n620,523,3.5\n620,524,4.0\n620,525,11.5\n620,526,11.0\n620,527,10.5\n620,528,10.0\n620,529,9.5\n620,530,9.0\n620,531,8.5\n620,532,8.0\n620,533,7.5\n620,534,7.0\n620,535,6.5\n620,536,6.0\n620,537,5.5\n620,538,5.0\n620,539,4.5\n620,540,4.0\n620,541,3.5\n620,542,3.0\n620,543,2.5\n620,544,2.0\n620,545,1.5\n620,546,2.0\n620,547,2.5\n620,548,3.0\n620,549,3.5\n620,550,11.0\n620,551,10.5\n620,552,10.0\n620,553,9.5\n620,554,9.0\n620,555,8.5\n620,556,8.0\n620,557,7.5\n620,558,7.0\n620,559,6.5\n620,560,6.0\n620,561,5.5\n620,562,5.0\n620,563,4.5\n620,564,4.0\n620,565,3.5\n620,566,3.0\n620,567,2.5\n620,568,2.0\n620,569,1.5\n620,570,1.0\n620,571,1.5\n620,572,2.0\n620,573,2.5\n620,574,3.0\n620,575,10.5\n620,576,10.0\n620,577,9.5\n620,578,9.0\n620,579,8.5\n620,580,8.0\n620,581,7.5\n620,582,7.0\n620,583,6.5\n620,584,6.0\n620,585,5.5\n620,586,5.0\n620,587,4.5\n620,588,4.0\n620,589,3.5\n620,590,3.0\n620,591,2.5\n620,592,2.0\n620,593,1.5\n620,594,1.0\n620,595,0.5\n620,596,1.0\n620,597,1.5\n620,598,2.0\n620,599,2.5\n620,600,10.0\n620,601,9.5\n620,602,9.0\n620,603,8.5\n620,604,8.0\n620,605,7.5\n620,606,7.0\n620,607,6.5\n620,608,6.0\n620,609,5.5\n620,610,5.0\n620,611,4.5\n620,612,4.0\n620,613,3.5\n620,614,3.0\n620,615,2.5\n620,616,2.0\n620,617,1.5\n620,618,1.0\n620,619,0.5\n620,620,0\n620,621,0.5\n620,622,1.0\n620,623,1.5\n620,624,2.0\n621,0,22.5\n621,1,22.0\n621,2,21.5\n621,3,21.0\n621,4,20.5\n621,5,20.0\n621,6,19.5\n621,7,19.0\n621,8,18.5\n621,9,18.0\n621,10,17.5\n621,11,17.0\n621,12,16.5\n621,13,16.0\n621,14,15.5\n621,15,15.0\n621,16,14.5\n621,17,14.0\n621,18,13.5\n621,19,13.0\n621,20,12.5\n621,21,12.0\n621,22,12.5\n621,23,13.0\n621,24,13.5\n621,25,22.0\n621,26,21.5\n621,27,21.0\n621,28,20.5\n621,29,20.0\n621,30,19.5\n621,31,19.0\n621,32,18.5\n621,33,18.0\n621,34,17.5\n621,35,17.0\n621,36,16.5\n621,37,16.0\n621,38,15.5\n621,39,15.0\n621,40,14.5\n621,41,14.0\n621,42,13.5\n621,43,13.0\n621,44,12.5\n621,45,12.0\n621,46,11.5\n621,47,12.0\n621,48,12.5\n621,49,13.0\n621,50,21.5\n621,51,21.0\n621,52,20.5\n621,53,20.0\n621,54,19.5\n621,55,19.0\n621,56,18.5\n621,57,18.0\n621,58,17.5\n621,59,17.0\n621,60,16.5\n621,61,16.0\n621,62,15.5\n621,63,15.0\n621,64,14.5\n621,65,14.0\n621,66,13.5\n621,67,13.0\n621,68,12.5\n621,69,12.0\n621,70,11.5\n621,71,11.0\n621,72,11.5\n621,73,12.0\n621,74,12.5\n621,75,21.0\n621,76,20.5\n621,77,20.0\n621,78,19.5\n621,79,19.0\n621,80,18.5\n621,81,18.0\n621,82,17.5\n621,83,17.0\n621,84,16.5\n621,85,16.0\n621,86,15.5\n621,87,15.0\n621,88,14.5\n621,89,14.0\n621,90,13.5\n621,91,13.0\n621,92,12.5\n621,93,12.0\n621,94,11.5\n621,95,11.0\n621,96,10.5\n621,97,11.0\n621,98,11.5\n621,99,12.0\n621,100,20.5\n621,101,20.0\n621,102,19.5\n621,103,19.0\n621,104,18.5\n621,105,18.0\n621,106,17.5\n621,107,17.0\n621,108,16.5\n621,109,16.0\n621,110,15.5\n621,111,15.0\n621,112,14.5\n621,113,14.0\n621,114,13.5\n621,115,13.0\n621,116,12.5\n621,117,12.0\n621,118,11.5\n621,119,11.0\n621,120,10.5\n621,121,10.0\n621,122,10.5\n621,123,11.0\n621,124,11.5\n621,125,20.0\n621,126,19.5\n621,127,19.0\n621,128,18.5\n621,129,18.0\n621,130,17.5\n621,131,17.0\n621,132,16.5\n621,133,16.0\n621,134,15.5\n621,135,15.0\n621,136,14.5\n621,137,14.0\n621,138,13.5\n621,139,13.0\n621,140,12.5\n621,141,12.0\n621,142,11.5\n621,143,11.0\n621,144,10.5\n621,145,10.0\n621,146,9.5\n621,147,10.0\n621,148,10.5\n621,149,11.0\n621,150,19.5\n621,151,19.0\n621,152,18.5\n621,153,18.0\n621,154,17.5\n621,155,17.0\n621,156,16.5\n621,157,16.0\n621,158,15.5\n621,159,15.0\n621,160,14.5\n621,161,14.0\n621,162,13.5\n621,163,13.0\n621,164,12.5\n621,165,12.0\n621,166,11.5\n621,167,11.0\n621,168,10.5\n621,169,10.0\n621,170,9.5\n621,171,9.0\n621,172,9.5\n621,173,10.0\n621,174,10.5\n621,175,19.0\n621,176,18.5\n621,177,18.0\n621,178,17.5\n621,179,17.0\n621,180,16.5\n621,181,16.0\n621,182,15.5\n621,183,15.0\n621,184,14.5\n621,185,14.0\n621,186,13.5\n621,187,13.0\n621,188,12.5\n621,189,12.0\n621,190,11.5\n621,191,11.0\n621,192,10.5\n621,193,10.0\n621,194,9.5\n621,195,9.0\n621,196,8.5\n621,197,9.0\n621,198,9.5\n621,199,10.0\n621,200,18.5\n621,201,18.0\n621,202,17.5\n621,203,17.0\n621,204,16.5\n621,205,16.0\n621,206,15.5\n621,207,15.0\n621,208,14.5\n621,209,14.0\n621,210,13.5\n621,211,13.0\n621,212,12.5\n621,213,12.0\n621,214,11.5\n621,215,11.0\n621,216,10.5\n621,217,10.0\n621,218,9.5\n621,219,9.0\n621,220,8.5\n621,221,8.0\n621,222,8.5\n621,223,9.0\n621,224,9.5\n621,225,18.0\n621,226,17.5\n621,227,17.0\n621,228,16.5\n621,229,16.0\n621,230,15.5\n621,231,15.0\n621,232,14.5\n621,233,14.0\n621,234,13.5\n621,235,13.0\n621,236,12.5\n621,237,12.0\n621,238,11.5\n621,239,11.0\n621,240,10.5\n621,241,10.0\n621,242,9.5\n621,243,9.0\n621,244,8.5\n621,245,8.0\n621,246,7.5\n621,247,8.0\n621,248,8.5\n621,249,9.0\n621,250,17.5\n621,251,17.0\n621,252,16.5\n621,253,16.0\n621,254,15.5\n621,255,15.0\n621,256,14.5\n621,257,14.0\n621,258,13.5\n621,259,13.0\n621,260,12.5\n621,261,12.0\n621,262,11.5\n621,263,11.0\n621,264,10.5\n621,265,10.0\n621,266,9.5\n621,267,9.0\n621,268,8.5\n621,269,8.0\n621,270,7.5\n621,271,7.0\n621,272,7.5\n621,273,8.0\n621,274,8.5\n621,275,17.0\n621,276,16.5\n621,277,16.0\n621,278,15.5\n621,279,15.0\n621,280,14.5\n621,281,14.0\n621,282,13.5\n621,283,13.0\n621,284,12.5\n621,285,12.0\n621,286,11.5\n621,287,11.0\n621,288,10.5\n621,289,10.0\n621,290,9.5\n621,291,9.0\n621,292,8.5\n621,293,8.0\n621,294,7.5\n621,295,7.0\n621,296,6.5\n621,297,7.0\n621,298,7.5\n621,299,8.0\n621,300,16.5\n621,301,16.0\n621,302,15.5\n621,303,15.0\n621,304,14.5\n621,305,14.0\n621,306,13.5\n621,307,13.0\n621,308,12.5\n621,309,12.0\n621,310,11.5\n621,311,11.0\n621,312,10.5\n621,313,10.0\n621,314,9.5\n621,315,9.0\n621,316,8.5\n621,317,8.0\n621,318,7.5\n621,319,7.0\n621,320,6.5\n621,321,6.0\n621,322,6.5\n621,323,7.0\n621,324,7.5\n621,325,16.0\n621,326,15.5\n621,327,15.0\n621,328,14.5\n621,329,14.0\n621,330,13.5\n621,331,13.0\n621,332,12.5\n621,333,12.0\n621,334,11.5\n621,335,11.0\n621,336,10.5\n621,337,10.0\n621,338,9.5\n621,339,9.0\n621,340,8.5\n621,341,8.0\n621,342,7.5\n621,343,7.0\n621,344,6.5\n621,345,6.0\n621,346,5.5\n621,347,6.0\n621,348,6.5\n621,349,7.0\n621,350,15.5\n621,351,15.0\n621,352,14.5\n621,353,14.0\n621,354,13.5\n621,355,13.0\n621,356,12.5\n621,357,12.0\n621,358,11.5\n621,359,11.0\n621,360,10.5\n621,361,10.0\n621,362,9.5\n621,363,9.0\n621,364,8.5\n621,365,8.0\n621,366,7.5\n621,367,7.0\n621,368,6.5\n621,369,6.0\n621,370,5.5\n621,371,5.0\n621,372,5.5\n621,373,6.0\n621,374,6.5\n621,375,15.0\n621,376,14.5\n621,377,14.0\n621,378,13.5\n621,379,13.0\n621,380,12.5\n621,381,12.0\n621,382,11.5\n621,383,11.0\n621,384,10.5\n621,385,10.0\n621,386,9.5\n621,387,9.0\n621,388,8.5\n621,389,8.0\n621,390,7.5\n621,391,7.0\n621,392,6.5\n621,393,6.0\n621,394,5.5\n621,395,5.0\n621,396,4.5\n621,397,5.0\n621,398,5.5\n621,399,6.0\n621,400,14.5\n621,401,14.0\n621,402,13.5\n621,403,13.0\n621,404,12.5\n621,405,12.0\n621,406,11.5\n621,407,11.0\n621,408,10.5\n621,409,10.0\n621,410,9.5\n621,411,9.0\n621,412,8.5\n621,413,8.0\n621,414,7.5\n621,415,7.0\n621,416,6.5\n621,417,6.0\n621,418,5.5\n621,419,5.0\n621,420,4.5\n621,421,4.0\n621,422,4.5\n621,423,5.0\n621,424,5.5\n621,425,14.0\n621,426,13.5\n621,427,13.0\n621,428,12.5\n621,429,12.0\n621,430,11.5\n621,431,11.0\n621,432,10.5\n621,433,10.0\n621,434,9.5\n621,435,9.0\n621,436,8.5\n621,437,8.0\n621,438,7.5\n621,439,7.0\n621,440,6.5\n621,441,6.0\n621,442,5.5\n621,443,5.0\n621,444,4.5\n621,445,4.0\n621,446,3.5\n621,447,4.0\n621,448,4.5\n621,449,5.0\n621,450,13.5\n621,451,13.0\n621,452,12.5\n621,453,12.0\n621,454,11.5\n621,455,11.0\n621,456,10.5\n621,457,10.0\n621,458,9.5\n621,459,9.0\n621,460,8.5\n621,461,8.0\n621,462,7.5\n621,463,7.0\n621,464,6.5\n621,465,6.0\n621,466,5.5\n621,467,5.0\n621,468,4.5\n621,469,4.0\n621,470,3.5\n621,471,3.0\n621,472,3.5\n621,473,4.0\n621,474,4.5\n621,475,13.0\n621,476,12.5\n621,477,12.0\n621,478,11.5\n621,479,11.0\n621,480,10.5\n621,481,10.0\n621,482,9.5\n621,483,9.0\n621,484,8.5\n621,485,8.0\n621,486,7.5\n621,487,7.0\n621,488,6.5\n621,489,6.0\n621,490,5.5\n621,491,5.0\n621,492,4.5\n621,493,4.0\n621,494,3.5\n621,495,3.0\n621,496,2.5\n621,497,3.0\n621,498,3.5\n621,499,4.0\n621,500,12.5\n621,501,12.0\n621,502,11.5\n621,503,11.0\n621,504,10.5\n621,505,10.0\n621,506,9.5\n621,507,9.0\n621,508,8.5\n621,509,8.0\n621,510,7.5\n621,511,7.0\n621,512,6.5\n621,513,6.0\n621,514,5.5\n621,515,5.0\n621,516,4.5\n621,517,4.0\n621,518,3.5\n621,519,3.0\n621,520,2.5\n621,521,2.0\n621,522,2.5\n621,523,3.0\n621,524,3.5\n621,525,12.0\n621,526,11.5\n621,527,11.0\n621,528,10.5\n621,529,10.0\n621,530,9.5\n621,531,9.0\n621,532,8.5\n621,533,8.0\n621,534,7.5\n621,535,7.0\n621,536,6.5\n621,537,6.0\n621,538,5.5\n621,539,5.0\n621,540,4.5\n621,541,4.0\n621,542,3.5\n621,543,3.0\n621,544,2.5\n621,545,2.0\n621,546,1.5\n621,547,2.0\n621,548,2.5\n621,549,3.0\n621,550,11.5\n621,551,11.0\n621,552,10.5\n621,553,10.0\n621,554,9.5\n621,555,9.0\n621,556,8.5\n621,557,8.0\n621,558,7.5\n621,559,7.0\n621,560,6.5\n621,561,6.0\n621,562,5.5\n621,563,5.0\n621,564,4.5\n621,565,4.0\n621,566,3.5\n621,567,3.0\n621,568,2.5\n621,569,2.0\n621,570,1.5\n621,571,1.0\n621,572,1.5\n621,573,2.0\n621,574,2.5\n621,575,11.0\n621,576,10.5\n621,577,10.0\n621,578,9.5\n621,579,9.0\n621,580,8.5\n621,581,8.0\n621,582,7.5\n621,583,7.0\n621,584,6.5\n621,585,6.0\n621,586,5.5\n621,587,5.0\n621,588,4.5\n621,589,4.0\n621,590,3.5\n621,591,3.0\n621,592,2.5\n621,593,2.0\n621,594,1.5\n621,595,1.0\n621,596,0.5\n621,597,1.0\n621,598,1.5\n621,599,2.0\n621,600,10.5\n621,601,10.0\n621,602,9.5\n621,603,9.0\n621,604,8.5\n621,605,8.0\n621,606,7.5\n621,607,7.0\n621,608,6.5\n621,609,6.0\n621,610,5.5\n621,611,5.0\n621,612,4.5\n621,613,4.0\n621,614,3.5\n621,615,3.0\n621,616,2.5\n621,617,2.0\n621,618,1.5\n621,619,1.0\n621,620,0.5\n621,621,0\n621,622,0.5\n621,623,1.0\n621,624,1.5\n622,0,23.0\n622,1,22.5\n622,2,22.0\n622,3,21.5\n622,4,21.0\n622,5,20.5\n622,6,20.0\n622,7,19.5\n622,8,19.0\n622,9,18.5\n622,10,18.0\n622,11,17.5\n622,12,17.0\n622,13,16.5\n622,14,16.0\n622,15,15.5\n622,16,15.0\n622,17,14.5\n622,18,14.0\n622,19,13.5\n622,20,13.0\n622,21,12.5\n622,22,12.0\n622,23,12.5\n622,24,13.0\n622,25,22.5\n622,26,22.0\n622,27,21.5\n622,28,21.0\n622,29,20.5\n622,30,20.0\n622,31,19.5\n622,32,19.0\n622,33,18.5\n622,34,18.0\n622,35,17.5\n622,36,17.0\n622,37,16.5\n622,38,16.0\n622,39,15.5\n622,40,15.0\n622,41,14.5\n622,42,14.0\n622,43,13.5\n622,44,13.0\n622,45,12.5\n622,46,12.0\n622,47,11.5\n622,48,12.0\n622,49,12.5\n622,50,22.0\n622,51,21.5\n622,52,21.0\n622,53,20.5\n622,54,20.0\n622,55,19.5\n622,56,19.0\n622,57,18.5\n622,58,18.0\n622,59,17.5\n622,60,17.0\n622,61,16.5\n622,62,16.0\n622,63,15.5\n622,64,15.0\n622,65,14.5\n622,66,14.0\n622,67,13.5\n622,68,13.0\n622,69,12.5\n622,70,12.0\n622,71,11.5\n622,72,11.0\n622,73,11.5\n622,74,12.0\n622,75,21.5\n622,76,21.0\n622,77,20.5\n622,78,20.0\n622,79,19.5\n622,80,19.0\n622,81,18.5\n622,82,18.0\n622,83,17.5\n622,84,17.0\n622,85,16.5\n622,86,16.0\n622,87,15.5\n622,88,15.0\n622,89,14.5\n622,90,14.0\n622,91,13.5\n622,92,13.0\n622,93,12.5\n622,94,12.0\n622,95,11.5\n622,96,11.0\n622,97,10.5\n622,98,11.0\n622,99,11.5\n622,100,21.0\n622,101,20.5\n622,102,20.0\n622,103,19.5\n622,104,19.0\n622,105,18.5\n622,106,18.0\n622,107,17.5\n622,108,17.0\n622,109,16.5\n622,110,16.0\n622,111,15.5\n622,112,15.0\n622,113,14.5\n622,114,14.0\n622,115,13.5\n622,116,13.0\n622,117,12.5\n622,118,12.0\n622,119,11.5\n622,120,11.0\n622,121,10.5\n622,122,10.0\n622,123,10.5\n622,124,11.0\n622,125,20.5\n622,126,20.0\n622,127,19.5\n622,128,19.0\n622,129,18.5\n622,130,18.0\n622,131,17.5\n622,132,17.0\n622,133,16.5\n622,134,16.0\n622,135,15.5\n622,136,15.0\n622,137,14.5\n622,138,14.0\n622,139,13.5\n622,140,13.0\n622,141,12.5\n622,142,12.0\n622,143,11.5\n622,144,11.0\n622,145,10.5\n622,146,10.0\n622,147,9.5\n622,148,10.0\n622,149,10.5\n622,150,20.0\n622,151,19.5\n622,152,19.0\n622,153,18.5\n622,154,18.0\n622,155,17.5\n622,156,17.0\n622,157,16.5\n622,158,16.0\n622,159,15.5\n622,160,15.0\n622,161,14.5\n622,162,14.0\n622,163,13.5\n622,164,13.0\n622,165,12.5\n622,166,12.0\n622,167,11.5\n622,168,11.0\n622,169,10.5\n622,170,10.0\n622,171,9.5\n622,172,9.0\n622,173,9.5\n622,174,10.0\n622,175,19.5\n622,176,19.0\n622,177,18.5\n622,178,18.0\n622,179,17.5\n622,180,17.0\n622,181,16.5\n622,182,16.0\n622,183,15.5\n622,184,15.0\n622,185,14.5\n622,186,14.0\n622,187,13.5\n622,188,13.0\n622,189,12.5\n622,190,12.0\n622,191,11.5\n622,192,11.0\n622,193,10.5\n622,194,10.0\n622,195,9.5\n622,196,9.0\n622,197,8.5\n622,198,9.0\n622,199,9.5\n622,200,19.0\n622,201,18.5\n622,202,18.0\n622,203,17.5\n622,204,17.0\n622,205,16.5\n622,206,16.0\n622,207,15.5\n622,208,15.0\n622,209,14.5\n622,210,14.0\n622,211,13.5\n622,212,13.0\n622,213,12.5\n622,214,12.0\n622,215,11.5\n622,216,11.0\n622,217,10.5\n622,218,10.0\n622,219,9.5\n622,220,9.0\n622,221,8.5\n622,222,8.0\n622,223,8.5\n622,224,9.0\n622,225,18.5\n622,226,18.0\n622,227,17.5\n622,228,17.0\n622,229,16.5\n622,230,16.0\n622,231,15.5\n622,232,15.0\n622,233,14.5\n622,234,14.0\n622,235,13.5\n622,236,13.0\n622,237,12.5\n622,238,12.0\n622,239,11.5\n622,240,11.0\n622,241,10.5\n622,242,10.0\n622,243,9.5\n622,244,9.0\n622,245,8.5\n622,246,8.0\n622,247,7.5\n622,248,8.0\n622,249,8.5\n622,250,18.0\n622,251,17.5\n622,252,17.0\n622,253,16.5\n622,254,16.0\n622,255,15.5\n622,256,15.0\n622,257,14.5\n622,258,14.0\n622,259,13.5\n622,260,13.0\n622,261,12.5\n622,262,12.0\n622,263,11.5\n622,264,11.0\n622,265,10.5\n622,266,10.0\n622,267,9.5\n622,268,9.0\n622,269,8.5\n622,270,8.0\n622,271,7.5\n622,272,7.0\n622,273,7.5\n622,274,8.0\n622,275,17.5\n622,276,17.0\n622,277,16.5\n622,278,16.0\n622,279,15.5\n622,280,15.0\n622,281,14.5\n622,282,14.0\n622,283,13.5\n622,284,13.0\n622,285,12.5\n622,286,12.0\n622,287,11.5\n622,288,11.0\n622,289,10.5\n622,290,10.0\n622,291,9.5\n622,292,9.0\n622,293,8.5\n622,294,8.0\n622,295,7.5\n622,296,7.0\n622,297,6.5\n622,298,7.0\n622,299,7.5\n622,300,17.0\n622,301,16.5\n622,302,16.0\n622,303,15.5\n622,304,15.0\n622,305,14.5\n622,306,14.0\n622,307,13.5\n622,308,13.0\n622,309,12.5\n622,310,12.0\n622,311,11.5\n622,312,11.0\n622,313,10.5\n622,314,10.0\n622,315,9.5\n622,316,9.0\n622,317,8.5\n622,318,8.0\n622,319,7.5\n622,320,7.0\n622,321,6.5\n622,322,6.0\n622,323,6.5\n622,324,7.0\n622,325,16.5\n622,326,16.0\n622,327,15.5\n622,328,15.0\n622,329,14.5\n622,330,14.0\n622,331,13.5\n622,332,13.0\n622,333,12.5\n622,334,12.0\n622,335,11.5\n622,336,11.0\n622,337,10.5\n622,338,10.0\n622,339,9.5\n622,340,9.0\n622,341,8.5\n622,342,8.0\n622,343,7.5\n622,344,7.0\n622,345,6.5\n622,346,6.0\n622,347,5.5\n622,348,6.0\n622,349,6.5\n622,350,16.0\n622,351,15.5\n622,352,15.0\n622,353,14.5\n622,354,14.0\n622,355,13.5\n622,356,13.0\n622,357,12.5\n622,358,12.0\n622,359,11.5\n622,360,11.0\n622,361,10.5\n622,362,10.0\n622,363,9.5\n622,364,9.0\n622,365,8.5\n622,366,8.0\n622,367,7.5\n622,368,7.0\n622,369,6.5\n622,370,6.0\n622,371,5.5\n622,372,5.0\n622,373,5.5\n622,374,6.0\n622,375,15.5\n622,376,15.0\n622,377,14.5\n622,378,14.0\n622,379,13.5\n622,380,13.0\n622,381,12.5\n622,382,12.0\n622,383,11.5\n622,384,11.0\n622,385,10.5\n622,386,10.0\n622,387,9.5\n622,388,9.0\n622,389,8.5\n622,390,8.0\n622,391,7.5\n622,392,7.0\n622,393,6.5\n622,394,6.0\n622,395,5.5\n622,396,5.0\n622,397,4.5\n622,398,5.0\n622,399,5.5\n622,400,15.0\n622,401,14.5\n622,402,14.0\n622,403,13.5\n622,404,13.0\n622,405,12.5\n622,406,12.0\n622,407,11.5\n622,408,11.0\n622,409,10.5\n622,410,10.0\n622,411,9.5\n622,412,9.0\n622,413,8.5\n622,414,8.0\n622,415,7.5\n622,416,7.0\n622,417,6.5\n622,418,6.0\n622,419,5.5\n622,420,5.0\n622,421,4.5\n622,422,4.0\n622,423,4.5\n622,424,5.0\n622,425,14.5\n622,426,14.0\n622,427,13.5\n622,428,13.0\n622,429,12.5\n622,430,12.0\n622,431,11.5\n622,432,11.0\n622,433,10.5\n622,434,10.0\n622,435,9.5\n622,436,9.0\n622,437,8.5\n622,438,8.0\n622,439,7.5\n622,440,7.0\n622,441,6.5\n622,442,6.0\n622,443,5.5\n622,444,5.0\n622,445,4.5\n622,446,4.0\n622,447,3.5\n622,448,4.0\n622,449,4.5\n622,450,14.0\n622,451,13.5\n622,452,13.0\n622,453,12.5\n622,454,12.0\n622,455,11.5\n622,456,11.0\n622,457,10.5\n622,458,10.0\n622,459,9.5\n622,460,9.0\n622,461,8.5\n622,462,8.0\n622,463,7.5\n622,464,7.0\n622,465,6.5\n622,466,6.0\n622,467,5.5\n622,468,5.0\n622,469,4.5\n622,470,4.0\n622,471,3.5\n622,472,3.0\n622,473,3.5\n622,474,4.0\n622,475,13.5\n622,476,13.0\n622,477,12.5\n622,478,12.0\n622,479,11.5\n622,480,11.0\n622,481,10.5\n622,482,10.0\n622,483,9.5\n622,484,9.0\n622,485,8.5\n622,486,8.0\n622,487,7.5\n622,488,7.0\n622,489,6.5\n622,490,6.0\n622,491,5.5\n622,492,5.0\n622,493,4.5\n622,494,4.0\n622,495,3.5\n622,496,3.0\n622,497,2.5\n622,498,3.0\n622,499,3.5\n622,500,13.0\n622,501,12.5\n622,502,12.0\n622,503,11.5\n622,504,11.0\n622,505,10.5\n622,506,10.0\n622,507,9.5\n622,508,9.0\n622,509,8.5\n622,510,8.0\n622,511,7.5\n622,512,7.0\n622,513,6.5\n622,514,6.0\n622,515,5.5\n622,516,5.0\n622,517,4.5\n622,518,4.0\n622,519,3.5\n622,520,3.0\n622,521,2.5\n622,522,2.0\n622,523,2.5\n622,524,3.0\n622,525,12.5\n622,526,12.0\n622,527,11.5\n622,528,11.0\n622,529,10.5\n622,530,10.0\n622,531,9.5\n622,532,9.0\n622,533,8.5\n622,534,8.0\n622,535,7.5\n622,536,7.0\n622,537,6.5\n622,538,6.0\n622,539,5.5\n622,540,5.0\n622,541,4.5\n622,542,4.0\n622,543,3.5\n622,544,3.0\n622,545,2.5\n622,546,2.0\n622,547,1.5\n622,548,2.0\n622,549,2.5\n622,550,12.0\n622,551,11.5\n622,552,11.0\n622,553,10.5\n622,554,10.0\n622,555,9.5\n622,556,9.0\n622,557,8.5\n622,558,8.0\n622,559,7.5\n622,560,7.0\n622,561,6.5\n622,562,6.0\n622,563,5.5\n622,564,5.0\n622,565,4.5\n622,566,4.0\n622,567,3.5\n622,568,3.0\n622,569,2.5\n622,570,2.0\n622,571,1.5\n622,572,1.0\n622,573,1.5\n622,574,2.0\n622,575,11.5\n622,576,11.0\n622,577,10.5\n622,578,10.0\n622,579,9.5\n622,580,9.0\n622,581,8.5\n622,582,8.0\n622,583,7.5\n622,584,7.0\n622,585,6.5\n622,586,6.0\n622,587,5.5\n622,588,5.0\n622,589,4.5\n622,590,4.0\n622,591,3.5\n622,592,3.0\n622,593,2.5\n622,594,2.0\n622,595,1.5\n622,596,1.0\n622,597,0.5\n622,598,1.0\n622,599,1.5\n622,600,11.0\n622,601,10.5\n622,602,10.0\n622,603,9.5\n622,604,9.0\n622,605,8.5\n622,606,8.0\n622,607,7.5\n622,608,7.0\n622,609,6.5\n622,610,6.0\n622,611,5.5\n622,612,5.0\n622,613,4.5\n622,614,4.0\n622,615,3.5\n622,616,3.0\n622,617,2.5\n622,618,2.0\n622,619,1.5\n622,620,1.0\n622,621,0.5\n622,622,0\n622,623,0.5\n622,624,1.0\n623,0,23.5\n623,1,23.0\n623,2,22.5\n623,3,22.0\n623,4,21.5\n623,5,21.0\n623,6,20.5\n623,7,20.0\n623,8,19.5\n623,9,19.0\n623,10,18.5\n623,11,18.0\n623,12,17.5\n623,13,17.0\n623,14,16.5\n623,15,16.0\n623,16,15.5\n623,17,15.0\n623,18,14.5\n623,19,14.0\n623,20,13.5\n623,21,13.0\n623,22,12.5\n623,23,12.0\n623,24,12.5\n623,25,23.0\n623,26,22.5\n623,27,22.0\n623,28,21.5\n623,29,21.0\n623,30,20.5\n623,31,20.0\n623,32,19.5\n623,33,19.0\n623,34,18.5\n623,35,18.0\n623,36,17.5\n623,37,17.0\n623,38,16.5\n623,39,16.0\n623,40,15.5\n623,41,15.0\n623,42,14.5\n623,43,14.0\n623,44,13.5\n623,45,13.0\n623,46,12.5\n623,47,12.0\n623,48,11.5\n623,49,12.0\n623,50,22.5\n623,51,22.0\n623,52,21.5\n623,53,21.0\n623,54,20.5\n623,55,20.0\n623,56,19.5\n623,57,19.0\n623,58,18.5\n623,59,18.0\n623,60,17.5\n623,61,17.0\n623,62,16.5\n623,63,16.0\n623,64,15.5\n623,65,15.0\n623,66,14.5\n623,67,14.0\n623,68,13.5\n623,69,13.0\n623,70,12.5\n623,71,12.0\n623,72,11.5\n623,73,11.0\n623,74,11.5\n623,75,22.0\n623,76,21.5\n623,77,21.0\n623,78,20.5\n623,79,20.0\n623,80,19.5\n623,81,19.0\n623,82,18.5\n623,83,18.0\n623,84,17.5\n623,85,17.0\n623,86,16.5\n623,87,16.0\n623,88,15.5\n623,89,15.0\n623,90,14.5\n623,91,14.0\n623,92,13.5\n623,93,13.0\n623,94,12.5\n623,95,12.0\n623,96,11.5\n623,97,11.0\n623,98,10.5\n623,99,11.0\n623,100,21.5\n623,101,21.0\n623,102,20.5\n623,103,20.0\n623,104,19.5\n623,105,19.0\n623,106,18.5\n623,107,18.0\n623,108,17.5\n623,109,17.0\n623,110,16.5\n623,111,16.0\n623,112,15.5\n623,113,15.0\n623,114,14.5\n623,115,14.0\n623,116,13.5\n623,117,13.0\n623,118,12.5\n623,119,12.0\n623,120,11.5\n623,121,11.0\n623,122,10.5\n623,123,10.0\n623,124,10.5\n623,125,21.0\n623,126,20.5\n623,127,20.0\n623,128,19.5\n623,129,19.0\n623,130,18.5\n623,131,18.0\n623,132,17.5\n623,133,17.0\n623,134,16.5\n623,135,16.0\n623,136,15.5\n623,137,15.0\n623,138,14.5\n623,139,14.0\n623,140,13.5\n623,141,13.0\n623,142,12.5\n623,143,12.0\n623,144,11.5\n623,145,11.0\n623,146,10.5\n623,147,10.0\n623,148,9.5\n623,149,10.0\n623,150,20.5\n623,151,20.0\n623,152,19.5\n623,153,19.0\n623,154,18.5\n623,155,18.0\n623,156,17.5\n623,157,17.0\n623,158,16.5\n623,159,16.0\n623,160,15.5\n623,161,15.0\n623,162,14.5\n623,163,14.0\n623,164,13.5\n623,165,13.0\n623,166,12.5\n623,167,12.0\n623,168,11.5\n623,169,11.0\n623,170,10.5\n623,171,10.0\n623,172,9.5\n623,173,9.0\n623,174,9.5\n623,175,20.0\n623,176,19.5\n623,177,19.0\n623,178,18.5\n623,179,18.0\n623,180,17.5\n623,181,17.0\n623,182,16.5\n623,183,16.0\n623,184,15.5\n623,185,15.0\n623,186,14.5\n623,187,14.0\n623,188,13.5\n623,189,13.0\n623,190,12.5\n623,191,12.0\n623,192,11.5\n623,193,11.0\n623,194,10.5\n623,195,10.0\n623,196,9.5\n623,197,9.0\n623,198,8.5\n623,199,9.0\n623,200,19.5\n623,201,19.0\n623,202,18.5\n623,203,18.0\n623,204,17.5\n623,205,17.0\n623,206,16.5\n623,207,16.0\n623,208,15.5\n623,209,15.0\n623,210,14.5\n623,211,14.0\n623,212,13.5\n623,213,13.0\n623,214,12.5\n623,215,12.0\n623,216,11.5\n623,217,11.0\n623,218,10.5\n623,219,10.0\n623,220,9.5\n623,221,9.0\n623,222,8.5\n623,223,8.0\n623,224,8.5\n623,225,19.0\n623,226,18.5\n623,227,18.0\n623,228,17.5\n623,229,17.0\n623,230,16.5\n623,231,16.0\n623,232,15.5\n623,233,15.0\n623,234,14.5\n623,235,14.0\n623,236,13.5\n623,237,13.0\n623,238,12.5\n623,239,12.0\n623,240,11.5\n623,241,11.0\n623,242,10.5\n623,243,10.0\n623,244,9.5\n623,245,9.0\n623,246,8.5\n623,247,8.0\n623,248,7.5\n623,249,8.0\n623,250,18.5\n623,251,18.0\n623,252,17.5\n623,253,17.0\n623,254,16.5\n623,255,16.0\n623,256,15.5\n623,257,15.0\n623,258,14.5\n623,259,14.0\n623,260,13.5\n623,261,13.0\n623,262,12.5\n623,263,12.0\n623,264,11.5\n623,265,11.0\n623,266,10.5\n623,267,10.0\n623,268,9.5\n623,269,9.0\n623,270,8.5\n623,271,8.0\n623,272,7.5\n623,273,7.0\n623,274,7.5\n623,275,18.0\n623,276,17.5\n623,277,17.0\n623,278,16.5\n623,279,16.0\n623,280,15.5\n623,281,15.0\n623,282,14.5\n623,283,14.0\n623,284,13.5\n623,285,13.0\n623,286,12.5\n623,287,12.0\n623,288,11.5\n623,289,11.0\n623,290,10.5\n623,291,10.0\n623,292,9.5\n623,293,9.0\n623,294,8.5\n623,295,8.0\n623,296,7.5\n623,297,7.0\n623,298,6.5\n623,299,7.0\n623,300,17.5\n623,301,17.0\n623,302,16.5\n623,303,16.0\n623,304,15.5\n623,305,15.0\n623,306,14.5\n623,307,14.0\n623,308,13.5\n623,309,13.0\n623,310,12.5\n623,311,12.0\n623,312,11.5\n623,313,11.0\n623,314,10.5\n623,315,10.0\n623,316,9.5\n623,317,9.0\n623,318,8.5\n623,319,8.0\n623,320,7.5\n623,321,7.0\n623,322,6.5\n623,323,6.0\n623,324,6.5\n623,325,17.0\n623,326,16.5\n623,327,16.0\n623,328,15.5\n623,329,15.0\n623,330,14.5\n623,331,14.0\n623,332,13.5\n623,333,13.0\n623,334,12.5\n623,335,12.0\n623,336,11.5\n623,337,11.0\n623,338,10.5\n623,339,10.0\n623,340,9.5\n623,341,9.0\n623,342,8.5\n623,343,8.0\n623,344,7.5\n623,345,7.0\n623,346,6.5\n623,347,6.0\n623,348,5.5\n623,349,6.0\n623,350,16.5\n623,351,16.0\n623,352,15.5\n623,353,15.0\n623,354,14.5\n623,355,14.0\n623,356,13.5\n623,357,13.0\n623,358,12.5\n623,359,12.0\n623,360,11.5\n623,361,11.0\n623,362,10.5\n623,363,10.0\n623,364,9.5\n623,365,9.0\n623,366,8.5\n623,367,8.0\n623,368,7.5\n623,369,7.0\n623,370,6.5\n623,371,6.0\n623,372,5.5\n623,373,5.0\n623,374,5.5\n623,375,16.0\n623,376,15.5\n623,377,15.0\n623,378,14.5\n623,379,14.0\n623,380,13.5\n623,381,13.0\n623,382,12.5\n623,383,12.0\n623,384,11.5\n623,385,11.0\n623,386,10.5\n623,387,10.0\n623,388,9.5\n623,389,9.0\n623,390,8.5\n623,391,8.0\n623,392,7.5\n623,393,7.0\n623,394,6.5\n623,395,6.0\n623,396,5.5\n623,397,5.0\n623,398,4.5\n623,399,5.0\n623,400,15.5\n623,401,15.0\n623,402,14.5\n623,403,14.0\n623,404,13.5\n623,405,13.0\n623,406,12.5\n623,407,12.0\n623,408,11.5\n623,409,11.0\n623,410,10.5\n623,411,10.0\n623,412,9.5\n623,413,9.0\n623,414,8.5\n623,415,8.0\n623,416,7.5\n623,417,7.0\n623,418,6.5\n623,419,6.0\n623,420,5.5\n623,421,5.0\n623,422,4.5\n623,423,4.0\n623,424,4.5\n623,425,15.0\n623,426,14.5\n623,427,14.0\n623,428,13.5\n623,429,13.0\n623,430,12.5\n623,431,12.0\n623,432,11.5\n623,433,11.0\n623,434,10.5\n623,435,10.0\n623,436,9.5\n623,437,9.0\n623,438,8.5\n623,439,8.0\n623,440,7.5\n623,441,7.0\n623,442,6.5\n623,443,6.0\n623,444,5.5\n623,445,5.0\n623,446,4.5\n623,447,4.0\n623,448,3.5\n623,449,4.0\n623,450,14.5\n623,451,14.0\n623,452,13.5\n623,453,13.0\n623,454,12.5\n623,455,12.0\n623,456,11.5\n623,457,11.0\n623,458,10.5\n623,459,10.0\n623,460,9.5\n623,461,9.0\n623,462,8.5\n623,463,8.0\n623,464,7.5\n623,465,7.0\n623,466,6.5\n623,467,6.0\n623,468,5.5\n623,469,5.0\n623,470,4.5\n623,471,4.0\n623,472,3.5\n623,473,3.0\n623,474,3.5\n623,475,14.0\n623,476,13.5\n623,477,13.0\n623,478,12.5\n623,479,12.0\n623,480,11.5\n623,481,11.0\n623,482,10.5\n623,483,10.0\n623,484,9.5\n623,485,9.0\n623,486,8.5\n623,487,8.0\n623,488,7.5\n623,489,7.0\n623,490,6.5\n623,491,6.0\n623,492,5.5\n623,493,5.0\n623,494,4.5\n623,495,4.0\n623,496,3.5\n623,497,3.0\n623,498,2.5\n623,499,3.0\n623,500,13.5\n623,501,13.0\n623,502,12.5\n623,503,12.0\n623,504,11.5\n623,505,11.0\n623,506,10.5\n623,507,10.0\n623,508,9.5\n623,509,9.0\n623,510,8.5\n623,511,8.0\n623,512,7.5\n623,513,7.0\n623,514,6.5\n623,515,6.0\n623,516,5.5\n623,517,5.0\n623,518,4.5\n623,519,4.0\n623,520,3.5\n623,521,3.0\n623,522,2.5\n623,523,2.0\n623,524,2.5\n623,525,13.0\n623,526,12.5\n623,527,12.0\n623,528,11.5\n623,529,11.0\n623,530,10.5\n623,531,10.0\n623,532,9.5\n623,533,9.0\n623,534,8.5\n623,535,8.0\n623,536,7.5\n623,537,7.0\n623,538,6.5\n623,539,6.0\n623,540,5.5\n623,541,5.0\n623,542,4.5\n623,543,4.0\n623,544,3.5\n623,545,3.0\n623,546,2.5\n623,547,2.0\n623,548,1.5\n623,549,2.0\n623,550,12.5\n623,551,12.0\n623,552,11.5\n623,553,11.0\n623,554,10.5\n623,555,10.0\n623,556,9.5\n623,557,9.0\n623,558,8.5\n623,559,8.0\n623,560,7.5\n623,561,7.0\n623,562,6.5\n623,563,6.0\n623,564,5.5\n623,565,5.0\n623,566,4.5\n623,567,4.0\n623,568,3.5\n623,569,3.0\n623,570,2.5\n623,571,2.0\n623,572,1.5\n623,573,1.0\n623,574,1.5\n623,575,12.0\n623,576,11.5\n623,577,11.0\n623,578,10.5\n623,579,10.0\n623,580,9.5\n623,581,9.0\n623,582,8.5\n623,583,8.0\n623,584,7.5\n623,585,7.0\n623,586,6.5\n623,587,6.0\n623,588,5.5\n623,589,5.0\n623,590,4.5\n623,591,4.0\n623,592,3.5\n623,593,3.0\n623,594,2.5\n623,595,2.0\n623,596,1.5\n623,597,1.0\n623,598,0.5\n623,599,1.0\n623,600,11.5\n623,601,11.0\n623,602,10.5\n623,603,10.0\n623,604,9.5\n623,605,9.0\n623,606,8.5\n623,607,8.0\n623,608,7.5\n623,609,7.0\n623,610,6.5\n623,611,6.0\n623,612,5.5\n623,613,5.0\n623,614,4.5\n623,615,4.0\n623,616,3.5\n623,617,3.0\n623,618,2.5\n623,619,2.0\n623,620,1.5\n623,621,1.0\n623,622,0.5\n623,623,0\n623,624,0.5\n624,0,24.0\n624,1,23.5\n624,2,23.0\n624,3,22.5\n624,4,22.0\n624,5,21.5\n624,6,21.0\n624,7,20.5\n624,8,20.0\n624,9,19.5\n624,10,19.0\n624,11,18.5\n624,12,18.0\n624,13,17.5\n624,14,17.0\n624,15,16.5\n624,16,16.0\n624,17,15.5\n624,18,15.0\n624,19,14.5\n624,20,14.0\n624,21,13.5\n624,22,13.0\n624,23,12.5\n624,24,12.0\n624,25,23.5\n624,26,23.0\n624,27,22.5\n624,28,22.0\n624,29,21.5\n624,30,21.0\n624,31,20.5\n624,32,20.0\n624,33,19.5\n624,34,19.0\n624,35,18.5\n624,36,18.0\n624,37,17.5\n624,38,17.0\n624,39,16.5\n624,40,16.0\n624,41,15.5\n624,42,15.0\n624,43,14.5\n624,44,14.0\n624,45,13.5\n624,46,13.0\n624,47,12.5\n624,48,12.0\n624,49,11.5\n624,50,23.0\n624,51,22.5\n624,52,22.0\n624,53,21.5\n624,54,21.0\n624,55,20.5\n624,56,20.0\n624,57,19.5\n624,58,19.0\n624,59,18.5\n624,60,18.0\n624,61,17.5\n624,62,17.0\n624,63,16.5\n624,64,16.0\n624,65,15.5\n624,66,15.0\n624,67,14.5\n624,68,14.0\n624,69,13.5\n624,70,13.0\n624,71,12.5\n624,72,12.0\n624,73,11.5\n624,74,11.0\n624,75,22.5\n624,76,22.0\n624,77,21.5\n624,78,21.0\n624,79,20.5\n624,80,20.0\n624,81,19.5\n624,82,19.0\n624,83,18.5\n624,84,18.0\n624,85,17.5\n624,86,17.0\n624,87,16.5\n624,88,16.0\n624,89,15.5\n624,90,15.0\n624,91,14.5\n624,92,14.0\n624,93,13.5\n624,94,13.0\n624,95,12.5\n624,96,12.0\n624,97,11.5\n624,98,11.0\n624,99,10.5\n624,100,22.0\n624,101,21.5\n624,102,21.0\n624,103,20.5\n624,104,20.0\n624,105,19.5\n624,106,19.0\n624,107,18.5\n624,108,18.0\n624,109,17.5\n624,110,17.0\n624,111,16.5\n624,112,16.0\n624,113,15.5\n624,114,15.0\n624,115,14.5\n624,116,14.0\n624,117,13.5\n624,118,13.0\n624,119,12.5\n624,120,12.0\n624,121,11.5\n624,122,11.0\n624,123,10.5\n624,124,10.0\n624,125,21.5\n624,126,21.0\n624,127,20.5\n624,128,20.0\n624,129,19.5\n624,130,19.0\n624,131,18.5\n624,132,18.0\n624,133,17.5\n624,134,17.0\n624,135,16.5\n624,136,16.0\n624,137,15.5\n624,138,15.0\n624,139,14.5\n624,140,14.0\n624,141,13.5\n624,142,13.0\n624,143,12.5\n624,144,12.0\n624,145,11.5\n624,146,11.0\n624,147,10.5\n624,148,10.0\n624,149,9.5\n624,150,21.0\n624,151,20.5\n624,152,20.0\n624,153,19.5\n624,154,19.0\n624,155,18.5\n624,156,18.0\n624,157,17.5\n624,158,17.0\n624,159,16.5\n624,160,16.0\n624,161,15.5\n624,162,15.0\n624,163,14.5\n624,164,14.0\n624,165,13.5\n624,166,13.0\n624,167,12.5\n624,168,12.0\n624,169,11.5\n624,170,11.0\n624,171,10.5\n624,172,10.0\n624,173,9.5\n624,174,9.0\n624,175,20.5\n624,176,20.0\n624,177,19.5\n624,178,19.0\n624,179,18.5\n624,180,18.0\n624,181,17.5\n624,182,17.0\n624,183,16.5\n624,184,16.0\n624,185,15.5\n624,186,15.0\n624,187,14.5\n624,188,14.0\n624,189,13.5\n624,190,13.0\n624,191,12.5\n624,192,12.0\n624,193,11.5\n624,194,11.0\n624,195,10.5\n624,196,10.0\n624,197,9.5\n624,198,9.0\n624,199,8.5\n624,200,20.0\n624,201,19.5\n624,202,19.0\n624,203,18.5\n624,204,18.0\n624,205,17.5\n624,206,17.0\n624,207,16.5\n624,208,16.0\n624,209,15.5\n624,210,15.0\n624,211,14.5\n624,212,14.0\n624,213,13.5\n624,214,13.0\n624,215,12.5\n624,216,12.0\n624,217,11.5\n624,218,11.0\n624,219,10.5\n624,220,10.0\n624,221,9.5\n624,222,9.0\n624,223,8.5\n624,224,8.0\n624,225,19.5\n624,226,19.0\n624,227,18.5\n624,228,18.0\n624,229,17.5\n624,230,17.0\n624,231,16.5\n624,232,16.0\n624,233,15.5\n624,234,15.0\n624,235,14.5\n624,236,14.0\n624,237,13.5\n624,238,13.0\n624,239,12.5\n624,240,12.0\n624,241,11.5\n624,242,11.0\n624,243,10.5\n624,244,10.0\n624,245,9.5\n624,246,9.0\n624,247,8.5\n624,248,8.0\n624,249,7.5\n624,250,19.0\n624,251,18.5\n624,252,18.0\n624,253,17.5\n624,254,17.0\n624,255,16.5\n624,256,16.0\n624,257,15.5\n624,258,15.0\n624,259,14.5\n624,260,14.0\n624,261,13.5\n624,262,13.0\n624,263,12.5\n624,264,12.0\n624,265,11.5\n624,266,11.0\n624,267,10.5\n624,268,10.0\n624,269,9.5\n624,270,9.0\n624,271,8.5\n624,272,8.0\n624,273,7.5\n624,274,7.0\n624,275,18.5\n624,276,18.0\n624,277,17.5\n624,278,17.0\n624,279,16.5\n624,280,16.0\n624,281,15.5\n624,282,15.0\n624,283,14.5\n624,284,14.0\n624,285,13.5\n624,286,13.0\n624,287,12.5\n624,288,12.0\n624,289,11.5\n624,290,11.0\n624,291,10.5\n624,292,10.0\n624,293,9.5\n624,294,9.0\n624,295,8.5\n624,296,8.0\n624,297,7.5\n624,298,7.0\n624,299,6.5\n624,300,18.0\n624,301,17.5\n624,302,17.0\n624,303,16.5\n624,304,16.0\n624,305,15.5\n624,306,15.0\n624,307,14.5\n624,308,14.0\n624,309,13.5\n624,310,13.0\n624,311,12.5\n624,312,12.0\n624,313,11.5\n624,314,11.0\n624,315,10.5\n624,316,10.0\n624,317,9.5\n624,318,9.0\n624,319,8.5\n624,320,8.0\n624,321,7.5\n624,322,7.0\n624,323,6.5\n624,324,6.0\n624,325,17.5\n624,326,17.0\n624,327,16.5\n624,328,16.0\n624,329,15.5\n624,330,15.0\n624,331,14.5\n624,332,14.0\n624,333,13.5\n624,334,13.0\n624,335,12.5\n624,336,12.0\n624,337,11.5\n624,338,11.0\n624,339,10.5\n624,340,10.0\n624,341,9.5\n624,342,9.0\n624,343,8.5\n624,344,8.0\n624,345,7.5\n624,346,7.0\n624,347,6.5\n624,348,6.0\n624,349,5.5\n624,350,17.0\n624,351,16.5\n624,352,16.0\n624,353,15.5\n624,354,15.0\n624,355,14.5\n624,356,14.0\n624,357,13.5\n624,358,13.0\n624,359,12.5\n624,360,12.0\n624,361,11.5\n624,362,11.0\n624,363,10.5\n624,364,10.0\n624,365,9.5\n624,366,9.0\n624,367,8.5\n624,368,8.0\n624,369,7.5\n624,370,7.0\n624,371,6.5\n624,372,6.0\n624,373,5.5\n624,374,5.0\n624,375,16.5\n624,376,16.0\n624,377,15.5\n624,378,15.0\n624,379,14.5\n624,380,14.0\n624,381,13.5\n624,382,13.0\n624,383,12.5\n624,384,12.0\n624,385,11.5\n624,386,11.0\n624,387,10.5\n624,388,10.0\n624,389,9.5\n624,390,9.0\n624,391,8.5\n624,392,8.0\n624,393,7.5\n624,394,7.0\n624,395,6.5\n624,396,6.0\n624,397,5.5\n624,398,5.0\n624,399,4.5\n624,400,16.0\n624,401,15.5\n624,402,15.0\n624,403,14.5\n624,404,14.0\n624,405,13.5\n624,406,13.0\n624,407,12.5\n624,408,12.0\n624,409,11.5\n624,410,11.0\n624,411,10.5\n624,412,10.0\n624,413,9.5\n624,414,9.0\n624,415,8.5\n624,416,8.0\n624,417,7.5\n624,418,7.0\n624,419,6.5\n624,420,6.0\n624,421,5.5\n624,422,5.0\n624,423,4.5\n624,424,4.0\n624,425,15.5\n624,426,15.0\n624,427,14.5\n624,428,14.0\n624,429,13.5\n624,430,13.0\n624,431,12.5\n624,432,12.0\n624,433,11.5\n624,434,11.0\n624,435,10.5\n624,436,10.0\n624,437,9.5\n624,438,9.0\n624,439,8.5\n624,440,8.0\n624,441,7.5\n624,442,7.0\n624,443,6.5\n624,444,6.0\n624,445,5.5\n624,446,5.0\n624,447,4.5\n624,448,4.0\n624,449,3.5\n624,450,15.0\n624,451,14.5\n624,452,14.0\n624,453,13.5\n624,454,13.0\n624,455,12.5\n624,456,12.0\n624,457,11.5\n624,458,11.0\n624,459,10.5\n624,460,10.0\n624,461,9.5\n624,462,9.0\n624,463,8.5\n624,464,8.0\n624,465,7.5\n624,466,7.0\n624,467,6.5\n624,468,6.0\n624,469,5.5\n624,470,5.0\n624,471,4.5\n624,472,4.0\n624,473,3.5\n624,474,3.0\n624,475,14.5\n624,476,14.0\n624,477,13.5\n624,478,13.0\n624,479,12.5\n624,480,12.0\n624,481,11.5\n624,482,11.0\n624,483,10.5\n624,484,10.0\n624,485,9.5\n624,486,9.0\n624,487,8.5\n624,488,8.0\n624,489,7.5\n624,490,7.0\n624,491,6.5\n624,492,6.0\n624,493,5.5\n624,494,5.0\n624,495,4.5\n624,496,4.0\n624,497,3.5\n624,498,3.0\n624,499,2.5\n624,500,14.0\n624,501,13.5\n624,502,13.0\n624,503,12.5\n624,504,12.0\n624,505,11.5\n624,506,11.0\n624,507,10.5\n624,508,10.0\n624,509,9.5\n624,510,9.0\n624,511,8.5\n624,512,8.0\n624,513,7.5\n624,514,7.0\n624,515,6.5\n624,516,6.0\n624,517,5.5\n624,518,5.0\n624,519,4.5\n624,520,4.0\n624,521,3.5\n624,522,3.0\n624,523,2.5\n624,524,2.0\n624,525,13.5\n624,526,13.0\n624,527,12.5\n624,528,12.0\n624,529,11.5\n624,530,11.0\n624,531,10.5\n624,532,10.0\n624,533,9.5\n624,534,9.0\n624,535,8.5\n624,536,8.0\n624,537,7.5\n624,538,7.0\n624,539,6.5\n624,540,6.0\n624,541,5.5\n624,542,5.0\n624,543,4.5\n624,544,4.0\n624,545,3.5\n624,546,3.0\n624,547,2.5\n624,548,2.0\n624,549,1.5\n624,550,13.0\n624,551,12.5\n624,552,12.0\n624,553,11.5\n624,554,11.0\n624,555,10.5\n624,556,10.0\n624,557,9.5\n624,558,9.0\n624,559,8.5\n624,560,8.0\n624,561,7.5\n624,562,7.0\n624,563,6.5\n624,564,6.0\n624,565,5.5\n624,566,5.0\n624,567,4.5\n624,568,4.0\n624,569,3.5\n624,570,3.0\n624,571,2.5\n624,572,2.0\n624,573,1.5\n624,574,1.0\n624,575,12.5\n624,576,12.0\n624,577,11.5\n624,578,11.0\n624,579,10.5\n624,580,10.0\n624,581,9.5\n624,582,9.0\n624,583,8.5\n624,584,8.0\n624,585,7.5\n624,586,7.0\n624,587,6.5\n624,588,6.0\n624,589,5.5\n624,590,5.0\n624,591,4.5\n624,592,4.0\n624,593,3.5\n624,594,3.0\n624,595,2.5\n624,596,2.0\n624,597,1.5\n624,598,1.0\n624,599,0.5\n624,600,12.0\n624,601,11.5\n624,602,11.0\n624,603,10.5\n624,604,10.0\n624,605,9.5\n624,606,9.0\n624,607,8.5\n624,608,8.0\n624,609,7.5\n624,610,7.0\n624,611,6.5\n624,612,6.0\n624,613,5.5\n624,614,5.0\n624,615,4.5\n624,616,4.0\n624,617,3.5\n624,618,3.0\n624,619,2.5\n624,620,2.0\n624,621,1.5\n624,622,1.0\n624,623,0.5\n624,624,0\n"
  },
  {
    "path": "data/pm25_data.csv",
    "content": "station_id,lng,lat,date,PM2_5,row_index,col_index,proj_x,proj_y,dem,w10,d10,t2m,sp,tp,blh,e,r,u10,v10,aod_sat,ndvi\n1001A,116.366,39.8673,20170601,54.73389356,2201,6867,1650847.552,1370268.366,46,0.458176732,68.18715668,284.5610657,100809.2734,0.001006295,134.995636,-6.92884e-06,46.31597519,0.425366431,0.170262426,0.870966613,2401\n1002A,116.17,40.2865,20170601,48.08073654,2134,6835,1625003.973,1416959.964,420,0.70919323,162.6338501,282.9076843,97125.08594,0.001043523,157.7759705,-6.23878e-06,53.60550308,0.211734444,-0.676848233,0.712079525,5255\n1003A,116.434,39.9522,20170601,54.89859155,2188,6877,1653776.71,1381524.305,48,0.27549094,75.46051788,284.4922485,100830.9688,0.001002024,129.9712982,-6.67928e-06,45.53746414,0.266665608,0.06917157,0.87581104,2609\n1004A,116.434,39.8745,20170601,52.26638177,2200,6877,1655828.045,1372270.098,45,0.376301795,52.71779251,284.6362,100936.8047,0.001010466,138.7939606,-7.13398e-06,45.38791275,0.299402714,0.227949664,0.869679332,2420\n1005A,116.473,39.9716,20170601,53.18907563,2185,6884,1656224.681,1384491.842,40,0.186894715,64.81201172,284.5065613,100880.1797,0.00101927,130.5205994,-6.75659e-06,44.79011917,0.169121414,0.079546101,0.873232245,3296\n1006A,116.361,39.9425,20170601,53.87780899,2189,6866,1648488.68,1379142.177,55,0.415028334,89.74723053,284.4081421,100729.1953,0.000993201,126.2128677,-6.42526e-06,46.70851517,0.415024221,0.001850144,0.868779421,2062\n1007A,116.315,39.9934,20170601,50.41736695,2181,6858,1643658.083,1384435.679,52,0.532783926,107.7722931,284.2668762,100620.9141,0.000982214,117.6309509,-5.88151e-06,47.84044647,0.507366955,-0.162596047,0.841994762,3138\n1008A,116.72,40.1438,20170601,51.04366197,2157,6923,1670359.51,1409179.402,32,0.316639096,281.3189392,284.2118835,100659.0703,0.001038028,138.4461365,-7.09797e-06,46.57427216,-0.310483634,-0.06213069,0.804893494,3137\n1009A,116.644,40.3937,20170601,46.92151163,2117,6911,1657945.02,1437655.317,169,0.415816933,170.0383453,283.5123596,98736.03125,0.001102607,154.2833405,-6.18209e-06,50.75003433,0.071967669,-0.409541667,0.71338582,5288\n1010A,116.23,40.1952,20170601,48.23876404,2149,6845,1631926.783,1407069.146,57,0.647320211,147.3508606,284.052002,100057.2891,0.001045819,141.0935364,-6.08105e-06,51.74059296,0.349266022,-0.545010746,0.785904706,3249\n1011A,116.407,40.0031,20170601,51.25069638,2180,6873,1650384.299,1387133.42,47,0.307361811,103.0270462,284.3847656,100716.8516,0.000990527,123.1825027,-6.28568e-06,46.14625931,0.299455166,-0.069266826,0.850230277,3301\n1012A,116.225,39.9279,20170601,56.0694051,2192,6844,1638539.229,1375127.894,66,0.690516233,95.00730133,283.905365,99824.0,0.001066209,121.4498749,-6.00324e-06,49.16394043,0.687883854,-0.060236473,0.826856971,3691\n1015A,117.145,39.1654,20170601,50.42458101,2314,6991,1729155.563,1300184.178,6,1.027325869,188.9700317,285.4299316,101665.4531,0.000777989,198.2338409,-1.75793e-05,49.15804672,-0.160173729,1.014762402,0.864020705,2398\n1017A,117.237,39.1082,20170601,53.32777778,2323,7006,1737780.138,1295015.283,6,1.036170483,190.2543945,285.3269653,101627.0625,0.000786181,201.5840607,-2.18549e-05,50.02039719,-0.184452325,1.019620776,0.854233265,1963\n1018A,117.202,39.0927,20170601,50.48033708,2325,7000,1735514.748,1292556.453,7,1.049154043,190.5059357,285.3424377,101628.2266,0.000783038,200.5014801,-2.15297e-05,49.92195129,-0.191293985,1.031567097,0.86217165,2368\n1019A,117.1837,39.2133,20170601,50.36938202,2306,6997,1730819.413,1306554.085,4,0.993955493,187.8487396,285.393158,101661.0234,0.000790286,198.542923,-1.63274e-05,48.99599457,-0.135728583,0.984644711,0.8648597,2504\n1021A,117.307,39.0877,20170601,50.33704735,2326,7017,1743718.47,1293821.852,4,1.035703421,190.5746002,285.2901917,101639.6328,0.000789262,205.2225037,-2.32386e-05,50.41941071,-0.190062314,1.018114924,0.847042978,2347\n1024A,117.457,38.8394,20170601,48.95238095,2366,7041,1762091.446,1267036.935,3,1.206597447,193.9273834,285.5480957,101681.9141,0.000769883,232.6412964,-3.71346e-05,51.7426033,-0.290409952,1.171127439,0.817716777,1970\n1027A,117.157,38.9194,20170601,57.08866279,2353,6993,1736776.761,1271187.896,2,1.121411681,193.9801331,285.2681885,101692.0469,0.000799512,196.5031586,-2.22992e-05,50.57588577,-0.270908982,1.088196874,0.841988325,3110\n1029A,114.4548,38.0513,20170601,68.18472222,2492,6561,1548715.837,1122720.941,80,0.714270592,46.39890671,285.8171692,100146.5078,0.001021511,123.3626328,-8.71733e-06,52.38289642,0.517233551,0.492597163,0.809952021,2249\n1030A,114.6046,38.0398,20170601,72.15181058,2494,6585,1560759.875,1123720.525,67,0.632721186,15.83794117,286.2159424,100659.2266,0.00095308,139.9359436,-9.27118e-06,50.37906265,0.172675565,0.608702898,0.83161515,2543\n1031A,114.5019,38.1398,20170601,72.54901961,2478,6568,1550294.141,1134014.141,75,0.478524715,40.81724167,285.9184875,100477.2188,0.001008369,118.8057404,-8.66783e-06,51.44268036,0.312779278,0.362153322,0.81189847,3324\n1032A,114.4586111,38.00583333,20170601,64.80532213,2499,6561,1550102.798,1117361.256,73,0.784852922,45.74318695,285.8088684,100056.0938,0.001023395,127.3562927,-8.78532e-06,52.42238235,0.562113583,0.547743022,0.810598135,2383\n1033A,114.5330556,38.01777778,20170601,68.20833333,2497,6573,1555668.21,1119961.435,72,0.688386977,32.56216049,286.0679932,100526.4922,0.000986558,132.7654266,-9.04454e-06,51.11368561,0.370489955,0.580184281,0.831135094,2525\n1034A,114.5214,38.0524,20170601,75.23955432,2492,6571,1553921.372,1123903.548,78,0.650838554,34.59516525,286.027832,100525.2734,0.000993834,128.5818024,-8.92902e-06,51.25087738,0.36951983,0.535766661,0.82115227,2190\n1035A,114.3541,37.9097,20170601,52.41044776,2515,6545,1544172.496,1104256.718,326,1.017769933,56.64455795,285.2039795,98639.57031,0.001074703,128.0363464,-8.60246e-06,55.35539627,0.850102127,0.55962652,0.768948793,4667\n1036A,118.1662,39.6308,20170601,47.58448753,2239,7155,1794193.98,1373720.072,30,0.678802371,193.2322235,284.0889587,101426.6172,0.000736898,184.281189,-8.81654e-06,51.74806595,-0.155372381,0.660781443,0.808539331,2423\n1037A,118.144,39.643,20170601,45.89027778,2237,7151,1792159.377,1374761.464,30,0.682202995,194.4754333,284.1112671,101409.3594,0.000739086,182.9657745,-8.82367e-06,51.56108856,-0.170521781,0.660547674,0.796505332,2243\n1038A,118.1853,39.6407,20170601,50.95949721,2238,7158,1795363.493,1375242.712,35,0.666424394,193.2201538,284.0407715,101410.5703,0.000737926,183.8976593,-8.82957e-06,51.91472244,-0.152402371,0.648764193,0.797506988,2512\n1039A,118.2185,39.6679,20170601,49.28212291,2233,7163,1797109.869,1379074.404,31,0.631409109,194.1865387,283.9333801,101356.7422,0.000743904,181.6531982,-8.92103e-06,52.270298,-0.154741004,0.612154126,0.787240982,2393\n1040A,118.1838,39.65782,20170601,55.8933518,2235,7157,1794761.495,1377245.09,23,0.657153845,194.4245148,284.01828,101379.8984,0.000741303,182.249054,-8.86001e-06,51.90407562,-0.163695231,0.636439383,0.798998117,2073\n1041A,118.1997,39.6295,20170601,51.32686981,2239,7160,1796777.238,1374178.092,33,0.665033042,192.6335602,284.0272827,101417.3594,0.00073672,184.5201263,-8.8188e-06,52.00143433,-0.145448238,0.648932755,0.791115284,2999\n1043A,119.7624,40.0181,20170601,27.50418994,2177,7410,1903496.867,1449599.41,33,0.651797354,115.4212189,283.00354,101085.8047,0.000714438,261.8578186,-3.80611e-05,58.62321472,0.588704646,-0.279761702,0.663945794,2835\n1044A,119.6023,39.9567,20170601,38.59305556,2187,7384,1893305.169,1439250.091,16,0.535373449,127.8735886,282.9306641,100750.7813,0.000745355,246.7146149,-3.376e-05,58.48239899,0.422627807,-0.328649431,0.682995021,1835\n1046A,119.5369,39.9419,20170601,36.63826816,2189,7374,1888823.631,1436241.979,8,0.472314358,127.2269135,283.1615601,100802.5938,0.000743226,236.7299347,-3.0455e-05,58.43154907,0.376097023,-0.285712928,0.681556523,2614\n1047A,114.5129,36.61763,20170601,72.55013928,2721,6570,1587617.056,953010.0448,57,0.517950594,33.63252258,287.1910095,100660.4609,0.000737673,187.0337219,-9.77042e-06,52.61444092,0.286866874,0.431254238,0.808477104,2444\n1048A,114.5426,36.6164,20170601,75.5491573,2721,6575,1590031.055,953344.1355,55,0.515759468,26.72362709,287.2576294,100767.0391,0.000736678,189.2630768,-9.73578e-06,52.43909454,0.231924117,0.460672349,0.802488446,2694\n1049A,114.5035,36.5776,20170601,73.41736695,2728,6569,1587819.037,948101.7257,58,0.495076835,30.87116623,287.236084,100660.5781,0.000731497,188.6877289,-1.00877e-05,52.66633606,0.254021794,0.42493999,0.79543376,2499\n1050A,114.4965,36.61981,20170601,70.51810585,2721,6567,1586248.191,953004.222,60,0.522804618,37.71175385,287.1472473,100565.875,0.000738263,185.5763855,-9.77771e-06,52.73729324,0.319785953,0.413595915,0.802223086,2015\n1051A,115.493,38.8632,20170601,57.32777778,2362,6727,1609736.565,1236167.122,21,0.45382151,47.74733353,285.6299133,101191.0781,0.000989744,128.864624,-8.07344e-06,46.71962357,0.335905194,0.305158406,0.8721416,1915\n1052A,115.5223,38.8957,20170601,56.74789916,2357,6732,1611183.934,1240519.241,17,0.467236191,46.89681625,285.6257324,101233.1563,0.000988291,128.7496796,-8.41291e-06,46.76945877,0.34113276,0.319277465,0.865892828,2754\n1053A,115.4713,38.9108,20170601,58.6801676,2354,6723,1606857.795,1241483.161,19,0.485465735,65.62568665,285.5649719,101177.1875,0.000996376,124.1079941,-7.84799e-06,47.35251236,0.442188799,0.200364783,0.861819804,2911\n1054A,115.4612,38.8416,20170601,57.22093023,2365,6722,1607818.668,1233073.103,21,0.444795907,51.28313446,285.6244507,101154.9141,0.000993803,128.6222076,-8.06088e-06,46.9811821,0.347043008,0.27821672,0.876563072,2389\n1055A,115.442,38.8756,20170601,50.77170868,2360,6719,1605476.638,1236810.092,24,0.475105911,64.50136566,285.6015015,101157.2109,0.000996274,125.5256729,-7.90693e-06,47.43140411,0.428821683,0.204542384,0.863855243,2743\n1056A,115.5214,38.8707,20170601,55.75207756,2361,6731,1611745.532,1237526.172,18,0.459951103,42.49386597,285.6372986,101214.4844,0.000986871,130.1126099,-8.39153e-06,46.66978836,0.310694754,0.339151561,0.877610922,2250\n1057A,114.8985,40.8367,20170601,26.28910615,2046,6632,1515272.393,1462367.043,920,0.938503146,343.3285522,279.1560059,90271.85156,0.000821549,209.9865265,-3.5811e-06,49.03476715,-0.269316286,-0.899031103,0.484285414,3527\n1059A,114.8814,40.8115,20170601,30.67267267,2050,6629,1514606.676,1459087.9,765,0.887655675,345.9730835,279.5247803,90913.33594,0.000830745,205.2168427,-3.56681e-06,48.51435471,-0.215221807,-0.8611691,0.500058711,1607\n1060A,114.9032,40.7688,20170601,29.62188366,2057,6632,1517293.988,1454314.903,732,0.788001418,348.1275024,279.9213257,91569.39063,0.000856444,198.5297852,-3.54484e-06,47.89870453,-0.162186235,-0.771130264,0.502401352,2191\n1061A,114.904,40.8725,20170601,29.97752809,2040,6633,1514805.616,1466735.845,902,1.004780173,341.3278198,278.6998596,89477.35938,0.00080777,216.4284363,-3.59591e-06,49.69035339,-0.321762592,-0.9518677,0.478150576,3146\n1062A,117.9664,40.9161,20170601,23.53472222,2034,7123,1742668.244,1522703.128,361,0.285557777,59.21615982,281.2525635,95837.97656,0.000901264,225.9160004,-4.66914e-06,49.97110367,0.245319471,0.146156117,0.612190962,3055\n1063A,117.9525,40.9843,20170601,23.03760446,2023,7120,1739704.031,1530562.888,372,0.236213982,74.86058044,280.9880981,95162.17969,0.000922693,222.1085663,-4.33684e-06,49.40387344,0.228013366,0.061700508,0.596278071,3443\n1064A,117.963,40.9359,20170601,32.35972222,2030,7122,1741854.775,1524996.111,404,0.263637125,64.08573151,281.1552734,95583.27344,0.000908621,224.5165863,-4.54778e-06,49.76586914,0.237124324,0.115224048,0.611416996,4011\n1065A,117.8184,40.9733,20170601,26.00983146,2024,7099,1730033.055,1526887.49,447,0.533103108,79.24391174,280.9381714,95493.07813,0.001018807,217.4887848,-3.99259e-06,50.00828552,0.523732722,0.099513598,0.620603979,3845\n1066A,117.9384,41.0112,20170601,27.04519774,2018,7118,1737894.456,1533510.946,384,0.231628314,84.36236572,280.8522034,94833.22656,0.000936639,221.4330139,-4.24276e-06,49.28611755,0.230506957,0.022764392,0.589861631,4430\n1067A,116.6838,39.5178,20170601,45.49159664,2257,6917,1684335.023,1334059.153,17,0.669777513,3.102200031,285.3367004,101485.4297,0.001031511,185.1394653,-8.91056e-06,46.43391037,0.036245476,0.668796062,0.894027174,2826\n1068A,116.7729,39.5747,20170601,42.60393258,2248,6932,1689617.989,1342357.198,14,0.69102627,0.678993583,285.2820129,101536.25,0.001078529,187.1360474,-9.09951e-06,46.61048889,0.008191353,0.690977752,0.875583827,3295\n1070A,116.7464,39.5343,20170601,46.71830986,2255,6927,1688676.496,1337096.298,15,0.685273647,2.063803434,285.3218994,101502.4609,0.001052768,189.2041473,-9.0666e-06,46.73443604,0.024677454,0.684829175,0.876384199,2900\n1071A,116.8854,38.2991,20170601,49.09749304,2452,6950,1732520.575,1192780.49,9,1.185975075,203.5504456,285.6523132,101553.2891,0.000931695,180.4525604,-9.50657e-06,50.57389832,-0.473850638,1.08719933,0.841551185,1938\n1072A,116.8584,38.3254,20170601,47.80055402,2448,6945,1729712.705,1195425.204,10,1.189601421,203.3277283,285.6799927,101562.4922,0.000925066,180.3520813,-9.42188e-06,50.51550293,-0.471057355,1.092362881,0.839398623,2171\n1073A,116.8709,38.3228,20170601,54.73184358,2448,6947,1730755.299,1195336.823,9,1.189467311,203.3088531,285.6641235,101564.7656,0.000926884,180.3038177,-9.42345e-06,50.5304451,-0.470644176,1.092394948,0.85095942,2064\n1074A,115.6951,37.7575,20170601,58.14285714,2539,6759,1653497.29,1107962.694,22,1.171304941,207.1447449,286.6327515,101397.5391,0.000760664,202.3623657,-1.17335e-05,49.35187531,-0.534381628,1.042301178,0.857591271,2515\n1075A,115.6426,37.7379,20170601,63.57938719,2542,6751,1649861.277,1104751.109,22,1.160543799,206.9411774,286.6635437,101373.5625,0.000767126,202.7361755,-1.1905e-05,49.30101013,-0.525799572,1.034599781,0.857527614,2870\n1076A,115.6906,37.739,20170601,61.18333333,2542,6758,1653612.94,1105688.704,23,1.175037026,207.3005524,286.637146,101386.4922,0.000766754,202.8595123,-1.18784e-05,49.38758087,-0.53892535,1.044160604,0.860339403,2074\n1077A,114.4821,37.0967,20170601,74.24929972,2645,6565,1573699.917,1009473.467,73,0.784852684,56.6906395,286.5733337,100195.5781,0.000809905,162.1003723,-8.74116e-06,52.13700485,0.655902684,0.431028306,0.78845191,3407\n1078A,114.5261,37.0533,20170601,69.78910615,2652,6572,1578246.806,1005016.69,66,0.719194293,48.03390503,286.7686768,100496.375,0.000814298,169.0746307,-9.01153e-06,51.70103073,0.534738362,0.480931759,0.80171752,2787\n1079A,114.5331,37.0964,20170601,77.58595989,2645,6573,1577772.38,1010255.645,63,0.722749174,46.28990555,286.741272,100519.875,0.000811932,167.5183258,-8.96764e-06,51.57893372,0.522424042,0.49943918,0.792474091,3384\n1080A,114.4854,37.062,20170601,68.37955182,2650,6566,1574792.451,1005398.511,76,0.769093096,55.5141449,286.6465454,100286.4063,0.000811564,164.4893494,-8.83304e-06,52.05469131,0.633924842,0.435480744,0.792172372,2071\n1081A,112.522,37.8873,20170601,63.20200573,2518,6252,1400116.06,1074131.886,789,0.351269156,142.4073334,282.8933716,91141.88281,0.001105974,143.0342102,-5.57305e-06,52.66632462,0.214309961,-0.278318644,0.521944702,2009\n1083A,112.434,38.0108,20170601,50.17329545,2498,6237,1390508.729,1087657.99,887,0.559365928,97.60449219,281.4598694,89016.79688,0.001351818,152.6072235,-4.84214e-06,54.33678055,0.554450095,-0.073995315,0.481554806,4129\n1084A,112.469,37.7124,20170601,76.31481481,2546,6243,1399684.64,1052458.545,770,0.391314059,157.9328003,282.8416138,90310.10938,0.001006434,135.7093811,-6.25103e-06,51.44281387,0.147043794,-0.36263594,0.511800647,2824\n1085A,112.5583,37.7394,20170601,58.13936782,2542,6257,1406180.472,1056962.193,773,0.233418897,344.4013062,283.4790344,91541.60156,0.000926575,138.4499817,-6.31353e-06,51.36520004,-0.062784836,-0.224816471,0.519560695,2969\n1086A,112.5369,37.8692,20170601,65.43201133,2521,6254,1401684.55,1072179.323,788,0.334386617,151.2243347,282.959198,91149.10156,0.001070591,142.3695221,-5.67258e-06,52.47053146,0.160990313,-0.293081105,0.50754863,1947\n1087A,112.57,37.8195,20170601,62.8782235,2529,6259,1405376.252,1066708.03,786,0.319642693,177.1777954,283.1853638,91309.27344,0.000980009,141.3523102,-5.93812e-06,51.98262024,0.015767714,-0.319253564,0.511066437,1775\n1088A,112.549,37.9854,20170601,57.60422535,2502,6256,1400132.117,1086251.917,822,0.273020446,102.5704422,282.8140564,91173.55469,0.001138521,147.1578522,-5.05958e-06,53.4700737,0.266479075,-0.059406016,0.494856417,3155\n1089A,112.488,37.7805,20170601,67.54843305,2535,6246,1399725.925,1060873.397,787,0.506280482,156.6732941,282.6539001,90270.96875,0.001074885,137.1691589,-6.10227e-06,51.81279373,0.200511262,-0.464881897,0.501628935,2474\n1090A,111.651,40.7579,20170601,34.55742297,2059,6112,1272205.141,1406838.292,1032,0.480284065,174.4728241,280.5791931,89050.00781,0.000670869,165.0842743,-4.64752e-06,42.45566559,0.046302769,-0.478046894,0.400845587,2177\n1091A,111.658,40.8033,20170601,36.70612813,2052,6113,1271799.182,1412395.029,1047,0.64222759,168.9503174,280.3956909,88754.35938,0.000686376,172.7218628,-4.59743e-06,43.12671661,0.123144269,-0.630310833,0.413114309,1389\n1092A,111.659,40.8452,20170601,36.20612813,2045,6113,1271011.17,1417452.957,1065,0.759677112,164.9285889,279.759613,87643.83594,0.000700155,180.3152008,-4.55001e-06,43.81771469,0.197595403,-0.733529389,0.405095398,1987\n1093A,111.608,40.8144,20170601,45.11331445,2050,6105,1267790.187,1413085.414,1053,0.743772686,164.3409271,280.040802,88076.39063,0.00070384,174.5379944,-4.60524e-06,43.45690536,0.200814128,-0.716150463,0.396783859,1946\n1094A,111.751,40.8369,20170601,38.55774648,2046,6128,1278134.455,1417647.034,1068,0.613084853,172.1980591,280.0837097,88321.92188,0.000671681,180.0339966,-4.51346e-06,43.51042175,0.083279334,-0.607402325,0.388767004,2219\n1095A,111.7277,40.8062,20170601,31.32590529,2051,6124,1277009.198,1413648.174,1054,0.553308249,174.0455322,280.4075317,88840.03125,0.000671471,174.2926178,-4.5613e-06,43.03878403,0.0574481,-0.550317824,0.401169062,2271\n1096A,111.551,40.7866,20170601,47.61559889,2054,6096,1264049.635,1409003.431,1061,0.732593179,162.3698578,280.0075989,87935.23438,0.000709469,169.8008575,-4.65631e-06,43.23674393,0.221939936,-0.698165774,0.399120927,2130\n1097A,111.717,40.7612,20170601,35.41242938,2058,6123,1277130.917,1408091.765,1043,0.394788593,357.4675598,280.5509033,89054.10156,0.000661266,166.6556396,-4.61145e-06,42.33866882,-0.017479463,-0.394401431,0.402627587,2312\n1098A,123.6836,41.9339,20170601,26.52638889,1871,8037,2129556.98,1755592.0,125,0.876135111,0.49298948,280.3681641,100458.2188,0.001152093,283.7866211,-9.02257e-06,52.2916832,0.007538188,0.876102686,0.544104815,2857\n1099A,123.535,41.7561,20170601,38.46111111,1899,8014,2125064.261,1731543.178,52,0.864560127,184.8525391,280.6159973,100931.125,0.001125928,269.4874878,-8.46305e-06,51.41911697,-0.073132396,0.861461461,0.558077097,2960\n1100A,123.439,41.7089,20170601,36.12638889,1907,7998,2119763.498,1723938.092,44,0.84405303,182.6966858,280.7333984,101100.0703,0.001112594,269.436676,-8.63853e-06,50.94733429,-0.039709948,0.84311837,0.575883746,2433\n1102A,123.542,41.8336,20170601,30.66997167,1887,8015,2122856.064,1740776.091,56,0.859084368,181.4778137,280.6018066,100910.4297,0.001130205,275.5848083,-8.53349e-06,51.31137848,-0.022155104,0.858798623,0.561574757,2468\n1103A,123.428,41.8472,20170601,31.03651685,1885,7996,2114140.965,1739912.225,50,0.835658491,3.99313736,280.6773682,101048.8359,0.001111497,280.2225037,-8.59948e-06,50.39046478,0.058191247,0.833629966,0.558842957,3040\n1104A,123.41,41.765,20170601,38.61699164,1898,7994,2115706.35,1729888.82,43,0.828971922,1.479269505,280.7277832,101098.9844,0.001110342,275.3372803,-8.63597e-06,50.45639801,0.021399353,0.828695655,0.582520604,2436\n1105A,123.478,41.7775,20170601,34.99164345,1896,8004,2120191.03,1732819.701,48,0.844963849,181.2673645,280.6740417,101021.7422,0.001120052,272.8754578,-8.53062e-06,50.82132339,-0.018687231,0.84475714,0.570454121,2136\n1106A,123.3997,41.7972,20170601,38.97206704,1893,7992,2113838.332,1733441.871,47,0.822690725,3.805352211,280.7196655,101090.9219,0.001108439,278.0549927,-8.64848e-06,50.32461929,0.054598246,0.820877016,0.575678408,1586\n1108A,123.3783,41.9228,20170601,34.71727019,1872,7989,2107914.594,1747707.935,48,0.83898133,9.385151863,280.6687012,101060.6953,0.001095354,287.2320251,-8.63452e-06,49.98429871,0.136808962,0.827751756,0.554728389,3093\n1109A,121.6119444,38.97388889,20170601,30.28830084,2344,7706,2076360.891,1364078.986,23,0.200011507,115.6109848,284.403717,101277.9688,0.000439464,492.7960205,-9.28801e-05,61.71054459,0.180365443,-0.086445987,0.628965855,2263\n1110A,121.565,38.95111111,20170601,28.5,2348,7698,2073528.812,1360414.358,27,0.202048704,113.3042221,284.4041138,101105.7891,0.000428921,504.8711853,-9.69823e-05,61.75147629,0.185569659,-0.079922333,0.641193926,2532\n1111A,121.5638889,38.885,20170601,28.35180055,2358,7698,2075594.463,1352631.914,38,0.244522199,111.6177979,284.4536133,101045.5469,0.000425188,513.6858521,-0.000101538,61.83102036,0.227328181,-0.0900722,0.650078833,2716\n1112A,121.6330556,38.91194444,20170601,30.51815642,2354,7709,2079987.485,1357256.377,46,0.282652378,113.857338,284.4724426,101299.0703,0.00044155,503.0411987,-9.79461e-05,61.74584961,0.258507937,-0.114306651,0.625500381,2470\n1113A,121.625,38.86388889,20170601,25.54366197,2362,7708,2080940.256,1351447.218,26,0.297588795,113.5048523,284.4838867,101284.4922,0.000440985,514.1121216,-0.000102745,61.78464508,0.272903681,-0.118670449,0.636235833,5164\n1114A,121.5180556,38.85611111,20170601,26.56786704,2363,7691,2073038.628,1348273.928,24,0.215485036,109.3980713,284.492218,100957.6875,0.000413171,519.9678345,-0.00010416,61.92812347,0.203256816,-0.07155744,0.646775424,3366\n1115A,121.2588889,38.80805556,20170601,26.59773371,2371,7649,2054810.717,1337188.296,16,0.055798065,60.41362381,284.6854553,101431.5781,0.000366197,498.5209656,-8.64496e-05,61.68934631,0.048521832,0.027550969,0.638872385,3905\n1117A,121.7769,39.0511,20170601,29.50833333,2332,7732,2086380.808,1376633.089,36,0.22735922,121.3709869,284.0149536,101059.1094,0.000464833,449.9803772,-7.95607e-05,61.49964142,0.194130003,-0.118345924,0.629770041,2882\n1118A,121.9769,39.0631,20170601,25.05477528,2330,7764,2101175.915,1382302.305,22,0.332625717,119.8187866,283.7857971,101264.1484,0.000470483,433.2407532,-7.18987e-05,61.11878967,0.288597077,-0.16538316,0.610258937,5345\n1119A,125.323,43.9167,20170601,30.47464789,1553,8300,2173758.545,2023400.317,214,1.332660198,44.47698212,277.7146606,99044.82031,0.001096506,265.1932373,-1.02064e-05,59.26754379,0.933670282,0.950917006,0.465223789,1750\n1120A,125.287,43.91,20170601,31.19134078,1554,8294,2171509.168,2021822.145,221,1.341006994,44.61652374,277.7460938,99074.32813,0.001087155,266.0755005,-1.04008e-05,59.1226387,0.941845536,0.954581976,0.473524392,2157\n1121A,125.2786,43.84,20170601,32.66760563,1566,8293,2173527.286,2013464.141,228,1.351730108,44.96036148,277.7688599,99040.33594,0.001096958,267.8677063,-1.20344e-05,59.49041367,0.955133975,0.956500649,0.478527367,2189\n1122A,125.3649,43.8748,20170601,29.41114458,1560,8306,2178227.372,2019437.433,198,1.324145079,44.50125122,277.6734619,98947.71094,0.00111393,265.17453,-1.06744e-05,59.65094757,0.928104579,0.944447994,0.473441273,1843\n1123A,125.325,43.8694,20170601,31.45596591,1561,8300,2175657.624,2017923.138,213,1.338708639,44.75065613,277.7271729,99009.95313,0.001105189,266.1532593,-1.10318e-05,59.51631165,0.942459583,0.950742185,0.468061507,2501\n1124A,125.454,43.7878,20170601,22.37073864,1574,8321,2187664.251,2011264.353,242,1.296965241,44.60767365,277.5579529,98681.42969,0.001147033,263.9197083,-1.01526e-05,60.41678619,0.910770535,0.92337203,0.468828708,3106\n1125A,125.633,43.55,20170601,26.19602273,1612,8349,2209040.299,1987533.649,221,1.301642656,41.46250534,277.507019,98710.07813,0.001216662,256.736908,-8.99204e-06,61.24198151,0.86183548,0.975455284,0.457995176,3629\n1126A,125.417,43.8667,20170601,34.31728045,1561,8315,2182147.051,2019648.122,212,1.3043046,44.22899628,277.594696,98838.07031,0.001129022,263.966217,-1.03284e-05,59.92636871,0.909767389,0.934630275,0.484565318,2409\n1127A,125.25,43.8167,20170601,26.91520468,1569,8288,2172404.572,2010111.368,208,1.359662056,45.00798798,277.8009338,99072.00781,0.00109049,269.1202393,-1.28545e-05,59.46441269,0.961538076,0.961314499,0.478931129,2408\n1128A,125.217,43.85,20170601,27.01971831,1564,8283,2168874.945,2013270.564,215,1.360637546,44.88332748,277.8160095,99117.67969,0.00107708,268.9192505,-1.18619e-05,59.16466522,0.960132599,0.964095354,0.473345518,2004\n1129A,126.542,45.755,20170601,32.56527778,1259,8495,2187092.809,2264692.215,115,1.222982526,50.12163925,276.0447998,99902.85938,0.000711808,211.2042847,-6.9082e-06,61.15317154,0.93850559,0.784151495,0.401894063,2315\n1130A,126.561,45.8167,20170601,27.96121884,1249,8498,2185976.788,2272291.929,117,1.197531819,51.73068619,275.9894714,100001.2734,0.000710105,209.7124176,-7.10396e-06,61.15815353,0.940172374,0.741726696,0.412337601,2548\n1131A,126.979,45.5422,20170601,33.17847025,1293,8565,2224665.012,2249767.507,142,1.1245296,36.37899017,275.5332336,99554.6875,0.00081715,212.2166138,-6.81518e-06,64.67676544,0.666968286,0.905384004,0.432353258,1812\n1133A,126.689,45.7733,20170601,34.81805556,1256,8518,2196219.656,2270099.222,127,1.234857917,46.91785049,275.8401794,99835.10938,0.000724032,211.1270752,-7.18747e-06,61.61277008,0.901889026,0.843486905,0.407940894,1376\n1134A,126.635,45.7667,20170601,32.13547486,1257,8510,2192863.497,2268125.751,130,1.230559111,48.00048447,275.8968506,99870.67188,0.000719989,211.1055908,-7.07197e-06,61.44894028,0.914470315,0.823419571,0.405226946,1120\n1135A,126.685,45.7319,20170601,35.66852368,1263,8518,2197560.412,2265196.376,146,1.257589221,45.33588409,275.9059753,99723.54688,0.000729689,211.7245789,-6.93249e-06,61.67489624,0.894426882,0.884042501,0.416167617,1737\n1136A,126.646,45.7258,20170601,37.67694805,1264,8511,2195186.437,2263615.338,149,1.253280044,46.32527924,275.9520264,99754.95313,0.000725031,211.8538971,-6.88147e-06,61.55596924,0.906441569,0.865490913,0.411220342,1850\n1137A,126.593,45.7478,20170601,37.80972222,1260,8503,2190785.417,2264990.9,125,1.233011007,48.54213715,275.9775391,99857.80469,0.000717233,211.4166107,-6.93665e-06,61.31793594,0.924050808,0.816361547,0.415853322,1449\n1138A,126.615,45.61,20170601,34.97091413,1282,8506,2197599.803,2249456.22,173,1.260065436,45.63877869,275.92453,99456.64844,0.000739872,213.9514923,-6.47235e-06,61.83914566,0.900858164,0.881033182,0.415826917,2617\n1139A,126.6106,45.9819,20170601,34.13841808,1223,8506,2182889.844,2292608.284,123,1.129419446,56.13928223,275.8691101,99987.07031,0.000711028,206.6298523,-7.97826e-06,61.24607849,0.937845528,0.629312396,0.398237228,1854\n1140A,126.6206,45.6842,20170601,34.80031447,1271,8507,2195098.687,2258210.345,170,1.262706518,45.98751068,275.9935303,99663.23438,0.000727427,212.6598663,-6.71286e-06,61.62557983,0.908103049,0.877369165,0.421420425,2099\n1141A,121.4,31.238,20170601,40.8079096,3582,7672,2308085.387,459407.1665,7,1.078588367,263.979248,288.8809204,101650.2109,0.001983516,341.953064,-2.49082e-05,75.36515808,-1.072633982,0.113177918,0.649101734,2562\n1142A,121.478,31.2036,20170601,43.17563739,3588,7684,2315832.213,457284.2308,10,1.080632925,263.397583,288.9226074,101647.5547,0.001997873,352.5625916,-2.82058e-05,75.58149719,-1.073460817,0.124296024,0.63635695,1842\n1143A,121.467,31.3008,20170601,38.97262248,3572,7683,2311805.803,468209.5881,7,1.101606488,262.9876404,288.9433899,101649.1719,0.001934772,358.8995972,-3.26369e-05,75.54244995,-1.093360543,0.134534463,0.64725107,2577\n1144A,121.412,31.1654,20170601,41.32285714,3594,7674,2311410.318,451335.3315,7,1.049924374,264.1340332,288.8684387,101644.3047,0.002043706,341.5586853,-2.4569e-05,75.45054626,-1.04442203,0.107349247,0.641874135,2660\n1145A,121.536,31.2659,20170601,40.78813559,3578,7694,2318797.274,465819.5687,7,1.105717778,262.5270996,288.9989319,101649.5078,0.001952073,375.844574,-3.87511e-05,75.64382935,-1.096320271,0.143853471,0.633812547,1852\n1146A,120.978,31.0935,20170601,48.90921788,3605,7604,2276568.048,432926.741,3,1.134941697,269.9763184,288.7773743,101668.9609,0.001936015,308.4819031,-3.44612e-05,74.07064819,-1.134941578,0.00052182,0.681437254,3215\n1147A,121.425,31.2261,20170601,41.84261838,3584,7676,2310595.562,458625.3112,10,1.076615334,263.7683411,288.881958,101648.6406,0.001991,345.5020142,-2.61719e-05,75.44211578,-1.070248723,0.116911449,0.653249979,2392\n1148A,121.703,31.1907,20170601,36.71126761,3590,7720,2335439.812,461126.0509,4,1.371918678,263.9904785,289.4405212,101691.0469,0.001936592,437.2162781,-6.20038e-05,75.67650604,-1.364373088,0.143690243,0.614477754,3420\n1149A,121.533,31.2284,20170601,39.66384181,3584,7693,2319735.652,461434.619,8,1.100723267,262.7807617,288.9947205,101648.5391,0.001971258,370.8068542,-3.59229e-05,75.64474487,-1.091991425,0.138370633,0.645522475,2402\n1150A,121.577,31.2071,20170601,40.78472222,3587,7700,2324167.601,460024.3326,3,1.130100608,262.7351379,289.105072,101655.9688,0.001969476,387.7877808,-4.23951e-05,75.65406036,-1.121022224,0.142955974,0.642294884,3352\n1151A,118.803,32.1083,20170601,43.03641457,3443,7256,2060789.639,502334.9274,24,1.113111734,264.9004211,288.13797,101400.0156,0.002390687,242.984787,-2.04458e-05,68.42819977,-1.108701348,0.09898939,0.780806124,3173\n1152A,118.749,32.0572,20170601,39.61416185,3451,7248,2057669.984,495264.9239,15,1.118335962,264.9707336,288.1726074,101391.5859,0.002373687,241.2114563,-2.07366e-05,68.25093079,-1.11402607,0.098087475,0.783808053,2572\n1153A,118.778,32.0723,20170601,42.57244318,3449,7252,2059700.302,497627.2418,16,1.119075537,264.8840332,288.157135,101389.5313,0.002378167,241.9047089,-2.05532e-05,68.34951019,-1.114613056,0.099838696,0.772660017,2728\n1154A,118.777,32.0144,20170601,39.8255814,3458,7252,2061275.899,490878.6042,17,1.136381865,264.4804993,288.2111206,101415.7656,0.002364999,241.1607819,-2.05117e-05,68.40370941,-1.131108284,0.109351724,0.783036828,2327\n1155A,118.803,32.0314,20170601,47.42318436,3455,7256,2062997.616,493399.3767,12,1.134877086,264.4506531,288.184967,101407.2031,0.002369686,241.9085846,-2.03041e-05,68.49415588,-1.129553437,0.109795034,0.780192792,2259\n1156A,118.795,32.0775,20170601,48.81395349,3448,7255,2060994.732,498587.9665,13,1.120778441,264.7900391,288.1511536,101391.4688,0.002381502,242.3991241,-2.04295e-05,68.42763519,-1.116143703,0.10182175,0.77449429,2652\n1157A,118.626,32.0878,20170601,38.83383686,3446,7228,2046347.497,496252.9203,38,1.059375405,266.2998962,288.1353455,101181.7188,0.002397407,239.8341217,-1.86948e-05,68.09899139,-1.057164073,0.068412669,0.776954234,3913\n1158A,118.737,32.0092,20170601,46.43521127,3459,7246,2058024.869,489435.964,8,1.132401824,264.6637268,288.2364197,101423.7813,0.002364973,240.427475,-2.06769e-05,68.27670288,-1.127489448,0.105363622,0.783305407,2719\n1159A,118.907,32.105,20170601,37.08189655,3443,7273,2069710.824,504137.4008,25,1.129577279,264.0560608,288.1342163,101281.9219,0.002416553,245.4673462,-1.9872e-05,68.91624451,-1.123499274,0.117022552,0.779545009,3755\n1160A,120.561,31.2472,20170601,40.37883008,3581,7538,2236141.578,441066.2672,46,1.652379394,269.1838684,289.5220032,101562.1641,0.001781626,346.0613708,-6.66594e-05,71.97569275,-1.652210712,0.023611957,0.720286489,4355\n1161A,120.628,31.2864,20170601,41.43156425,3574,7548,2240662.824,447114.317,7,1.441110253,270.0965271,289.2358093,101578.2109,0.001763128,328.2744446,-5.02552e-05,72.25830078,-1.441108346,-0.002361435,0.723933101,2363\n1162A,120.591,31.3019,20170601,45.21527778,3572,7543,2237024.906,448059.2928,8,1.530174613,269.3577271,289.3453064,101564.0,0.001756569,331.8258057,-5.31021e-05,72.07091522,-1.530077696,0.01722341,0.712134421,2333\n1163A,120.596,31.3264,20170601,43.19230769,3568,7543,2236698.632,450999.6638,7,1.496544957,269.1057129,289.2918396,101586.0938,0.001770476,328.2316589,-4.93678e-05,72.03697205,-1.496361494,0.023426285,0.728493512,2575\n1164A,120.613,31.2703,20170601,39.79469274,3577,7546,2239876.582,444915.2358,6,1.484794617,270.0042725,289.3019409,101580.1016,0.001767269,332.7530212,-5.47025e-05,72.21630859,-1.484794617,-4.17689e-05,0.710166276,2495\n1165A,120.543,31.2994,20170601,40.22777778,3572,7535,2233000.766,446679.0467,7,1.694848657,268.4058838,289.5557251,101547.4375,0.001747284,339.7496948,-6.02197e-05,71.79953003,-1.694190621,0.04722571,0.718467355,2552\n1166A,120.669,31.3097,20170601,39.40363128,3571,7555,2243447.141,450737.4049,5,1.345791817,270.2224426,289.0808411,101616.1172,0.001774447,319.516571,-4.18109e-05,72.46854401,-1.345781922,-0.005162416,0.711461306,2826\n1167A,120.641,31.3708,20170601,39.74515235,3561,7551,2239173.479,457147.214,2,1.321242332,269.2276306,289.0168762,101649.5859,0.001808774,317.5026245,-3.80527e-05,72.2419281,-1.321121454,0.017870884,0.728561103,3169\n1168A,120.913,31.96,20170601,38.12824207,3466,7594,2244017.052,531372.8095,3,1.157897353,262.6371155,288.4204102,101700.0938,0.002062357,319.198822,-3.18529e-05,73.17723846,-1.148343444,0.148437008,0.704843402,3235\n1169A,120.86,32.0005,20170601,37.98735955,3460,7586,2238273.183,534842.8767,5,1.13609612,262.4923401,288.3467407,101696.8594,0.002078181,314.2708435,-2.91968e-05,72.95754242,-1.126350522,0.148488939,0.706392765,2744\n1170A,120.87,32.02,20170601,34.07799443,3457,7587,2238511.318,537323.846,7,1.116045117,262.2901611,288.3232422,101695.7031,0.002089722,313.9808044,-2.86828e-05,72.97457886,-1.105949879,0.149771631,0.694758892,2304\n1172A,120.81,32.0417,20170601,36.4957265,3453,7578,2232765.324,538466.3995,5,1.08083725,262.1073914,288.2396545,101693.6094,0.002118569,307.8841553,-2.43203e-05,72.72140503,-1.070592403,0.148462251,0.703569531,2223\n1173A,119.176,34.5885,20170601,42.12256267,3046,7316,2019845.744,799261.05,5,0.808309436,243.9462128,286.9439087,101566.2344,0.001325007,254.9545135,-1.93785e-05,64.7420578,-0.726159155,0.355045199,0.711947203,2541\n1177A,117.167,34.2761,20170601,66.15223464,3096,6995,1863411.971,722945.5328,39,1.082059622,239.4601135,287.5498657,101259.1094,0.001606595,208.2361145,-1.35953e-05,62.66415024,-0.931934714,0.549864292,0.819704533,2431\n1178A,117.192,34.2417,20170601,62.62464986,3101,6999,1866405.805,719380.6569,39,1.07820034,240.1565552,287.5435181,101265.0938,0.001635063,208.5312195,-1.34286e-05,62.84805298,-0.935201764,0.536575735,0.810628355,3470\n1180A,117.256,34.2153,20170601,58.55555556,3106,7009,1872410.371,717498.8861,37,1.067156792,241.0869598,287.526001,101319.5625,0.00166982,209.2604218,-1.35686e-05,62.99317169,-0.934124291,0.515980005,0.793101192,3533\n1181A,117.244,34.2911,20170601,66.16428571,3094,7007,1869368.363,726169.4828,53,1.073421001,239.8292542,287.5418091,101317.0625,0.001620726,209.263916,-1.41703e-05,62.70018387,-0.927989662,0.539507031,0.802675426,2305\n1182A,117.2933,34.2778,20170601,67.94117647,3096,7015,1873800.709,725547.0071,38,1.065492511,240.4212341,287.5091248,101328.3672,0.001641876,209.3422546,-1.38517e-05,62.7490654,-0.926618814,0.525976956,0.810331285,3063\n1184A,119.46,32.3878,20170601,47.79369628,3398,7362,2108260.386,548741.6146,8,1.05290091,258.3102112,288.1564331,101634.5703,0.002593438,259.0297241,-1.97964e-05,69.10820007,-1.03105402,0.213372678,0.775831461,2278\n1185A,119.404,32.41,20170601,43.72058824,3394,7353,2102879.537,550119.7312,12,1.06448853,258.0456543,288.1752625,101605.5938,0.002589911,259.0968933,-1.95293e-05,69.16434479,-1.041394114,0.220531493,0.78359437,3254\n1186A,119.389,32.3761,20170601,46.29279279,3400,7350,2102611.502,545861.5699,7,1.056780815,258.4685364,288.1877136,101642.8281,0.002580811,258.9778137,-2.04407e-05,69.28695679,-1.035441279,0.211298689,0.781100869,2671\n1188A,120.269,31.4867,20170601,39.27620397,3542,7491,2203891.366,462118.0973,4,1.739105701,264.594696,289.5806274,101519.4922,0.001781077,346.1542664,-6.68735e-05,70.07304382,-1.731365085,0.163900241,0.741462946,4727\n1189A,120.275,31.6219,20170601,42.90625,3521,7492,2200293.156,477876.4342,3,1.295582056,265.0903015,288.9356689,101614.1641,0.001821463,316.0049133,-4.37446e-05,70.39360046,-1.29082346,0.110939883,0.741893291,2283\n1190A,120.294,31.56,20170601,43.77966102,3530,7495,2203793.799,471148.3756,8,1.457497716,265.3551636,289.1346436,101574.5078,0.001797102,325.6673584,-5.03285e-05,70.34750366,-1.45270586,0.118090548,0.726024687,2273\n1191A,120.242,31.5031,20170601,45.41292135,3540,7487,2201090.755,463407.8035,29,1.685083747,264.2542114,289.5232239,101495.2813,0.00179221,346.645813,-6.75683e-05,69.94046783,-1.676610351,0.168775275,0.731709003,2664\n1192A,120.354,31.5848,20170601,47.23011364,3527,7505,2208148.792,475361.1,5,1.360104203,265.8167725,289.0026855,101634.0,0.001826354,315.2738647,-4.04245e-05,70.69758606,-1.356476307,0.099274106,0.731728971,2739\n1193A,120.354,31.5475,20170601,42.00139665,3532,7505,2209286.177,471051.4473,5,1.474445462,265.7662354,289.1332092,101617.7656,0.00180756,319.4313049,-4.36141e-05,70.63874054,-1.470417142,0.1089174,0.733866453,2705\n1194A,120.245,31.5631,20170601,46.98314607,3530,7487,2199524.887,470408.6975,20,1.451959491,264.6549683,289.1764526,101540.4531,0.001797434,331.5303955,-5.63425e-05,70.10752869,-1.445640206,0.135317311,0.73156029,3859\n1195A,120.288,31.6842,20170601,47.45224719,3511,7494,2199504.356,485369.1025,4,1.215592742,264.4580688,288.804657,101701.6016,0.001867623,302.5334473,-3.32198e-05,70.60146332,-1.209905744,0.117447242,0.735167563,2942\n1196A,119.996,31.7586,20170601,46.04481793,3499,7447,2172421.798,487478.4431,4,1.1553303,261.3725586,288.692749,101678.125,0.001914978,282.2326965,-2.48103e-05,69.73713684,-1.14225018,0.173357278,0.752935469,2368\n1200A,119.935,31.7039,20170601,43.56005587,3507,7438,2168876.566,479800.8627,5,1.183915377,261.4901123,288.6828613,101629.7188,0.001872173,288.6053467,-3.31543e-05,69.73280334,-1.170873523,0.175245017,0.748586833,3139\n1201A,119.905,31.9108,20170601,48.17130919,3474,7433,2160118.712,503091.8008,5,1.084443688,261.1506653,288.4787903,101664.5547,0.002101663,271.9251709,-2.47128e-05,69.70951843,-1.071527839,0.166872069,0.763816118,3828\n1203A,119.68,32.1883,20170601,51.92178771,3430,7397,2132762.946,530337.4483,19,1.049262047,261.1204224,288.2279053,101589.1406,0.00244211,261.6349792,-2.29112e-05,69.40813446,-1.036679745,0.162005737,0.762907147,3157\n1204A,119.491,32.215,20170601,46.08888889,3426,7367,2115982.529,529348.7991,14,1.037587166,260.7250061,288.1010437,101552.3203,0.002504705,259.5843506,-2.32828e-05,69.39672089,-1.02401495,0.167273566,0.778085232,3445\n1205A,119.43,32.1319,20170601,53.00555556,3439,7357,2113269.784,518393.0431,31,1.03555131,261.5003052,288.1333618,101385.2109,0.002452063,255.5625916,-2.14748e-05,69.52696228,-1.024171114,0.153101444,0.773493886,3318\n1206A,119.9,32.4867,20170601,45.3875,3382,7432,2142405.827,569738.2548,6,0.998357356,258.7586365,287.8560181,101693.25,0.002617253,254.0509644,-1.39746e-05,69.46192932,-0.979195654,0.194661826,0.75205183,2809\n1207A,119.9219,32.4611,20170601,46.7261236,3386,7435,2145019.393,567246.0861,4,0.999828398,259.0179443,287.8745728,101688.6641,0.002606904,255.2181396,-1.47951e-05,69.54936981,-0.981510639,0.190509111,0.765233815,2735\n1209A,119.888,32.4639,20170601,55.42896936,3386,7430,2142080.254,566831.3799,3,1.003367186,258.8575439,287.8908691,101686.2188,0.00261259,255.0440063,-1.5001e-05,69.44334412,-0.984445691,0.193939552,0.766198397,3361\n1210A,119.036,33.5981,20170601,43.71126761,3204,7294,2037268.846,680675.1667,13,1.035090566,254.3633728,287.4054871,101607.4219,0.001690594,239.982254,-1.75831e-05,66.19241333,-0.996771634,0.279031903,0.764626145,2351\n1211A,119.007,33.575,20170601,45.62465374,3208,7289,2035531.907,677378.9961,11,1.068981528,254.8045654,287.50354,101600.6563,0.001699836,241.8061829,-1.87383e-05,66.16108704,-1.031596303,0.280232877,0.759972751,2919\n1212A,118.989,33.6067,20170601,49.74859551,3203,7286,2033114.729,680705.1361,14,1.058212042,254.3706665,287.4717102,101595.4922,0.001689018,241.3416901,-1.88418e-05,66.0517807,-1.019073486,0.28513509,0.75478369,3783\n1213A,119.135,33.5039,20170601,45.50277008,3219,7310,2048245.053,671745.646,7,1.03248632,255.4097748,287.4474487,101651.3594,0.0017421,242.3017426,-1.82577e-05,66.64586639,-0.999180734,0.260126501,0.747934103,3144\n1214A,119.0122,33.627,20170601,49.44707521,3200,7290,2034451.028,683554.1346,15,1.037345767,253.7719116,287.4024963,101607.5625,0.001693185,239.2324829,-1.73453e-05,66.0721817,-0.996003628,0.289936185,0.751135767,2864\n1215A,120.118,33.4022,20170601,41.83611111,3236,7467,2132971.177,680817.9139,2,0.971559227,254.0597534,287.111084,101749.8984,0.001975715,250.6370239,-1.09549e-05,69.5666275,-0.934191287,0.266859472,0.69275707,3148\n1216A,120.156,33.3942,20170601,40.27158774,3237,7473,2136370.775,680713.2949,3,0.971421778,253.7582092,287.1174316,101747.5469,0.001986508,253.3945618,-1.10829e-05,69.67285919,-0.932641923,0.27173391,0.69635129,2607\n1218A,120.225,33.3947,20170601,35.74438202,3237,7484,2142086.218,682273.6437,-1,0.970848262,253.0681763,287.1251831,101744.8359,0.001993368,258.4848633,-1.13064e-05,69.86140442,-0.928753316,0.282778352,0.675939739,3416\n1220A,118.293,33.9528,20170601,55.33664773,3148,7175,1965474.308,706985.584,23,1.011668921,248.2718811,287.3872375,101473.1484,0.001784482,229.2952881,-2.3824e-05,64.29232788,-0.939777613,0.374555767,0.773139954,2683\n1221A,118.2442,33.9592,20170601,56.46619217,3147,7167,1961253.169,706759.3965,23,1.014962435,248.1983948,287.376709,101462.875,0.001779311,229.9592285,-2.6262e-05,64.2469635,-0.9423545,0.376983732,0.787112713,3330\n1222A,118.3214,33.9506,20170601,54.23463687,3148,7179,1967887.84,707296.6077,20,1.010190964,248.2906799,287.3928223,101477.8359,0.00178478,229.0317688,-2.27493e-05,64.30950928,-0.938527524,0.37370038,0.784743369,2690\n1223A,120.211,30.21,20170601,38.86072423,3746,7482,2237566.416,313608.5252,10,0.879980564,300.7580566,289.8270569,101484.2578,0.002470908,243.5818634,-2.14523e-05,71.52324677,-0.756225705,-0.449987262,0.688420773,2181\n1224A,120.063,30.2747,20170601,37.63788301,3736,7458,2222775.911,317695.5028,6,0.714374721,308.1428223,289.4983826,101102.5469,0.002687519,227.7123413,-1.56558e-05,72.9908371,-0.561866105,-0.441177607,0.704770803,4086\n1225A,119.026,29.635,20170601,27.02982955,3838,7292,2151091.514,220953.5708,107,0.933353901,307.5400391,290.1485596,98938.8125,0.003128674,222.3942871,-3.03939e-05,76.96091461,-0.740119576,-0.568658531,0.615735173,3370\n1226A,120.348,30.3058,20170601,46.53047091,3731,7504,2246547.923,327756.2956,10,1.014252424,291.7313538,289.645813,101478.6172,0.00239094,262.1755676,-2.78451e-05,71.06648254,-0.942191184,-0.375478119,0.708190084,2457\n1227A,120.127,30.2456,20170601,39.34916201,3741,7468,2229203.478,315795.7699,30,0.787919462,305.2120972,289.5741577,101158.2031,0.00259055,235.3573303,-1.87067e-05,72.33004761,-0.643777788,-0.454276562,0.688291907,5345\n1228A,120.19,30.2692,20170601,42.02361111,3737,7478,2233957.952,319942.6136,16,0.83724153,300.4840088,289.625946,101326.7969,0.002536721,242.3191986,-2.08055e-05,71.68570709,-0.721536756,-0.424685866,0.689756215,2102\n1229A,120.157,30.2897,20170601,50.10972222,3734,7473,2230477.998,321552.287,14,0.795664549,301.7076721,289.5498047,101255.6875,0.002588751,238.3686981,-1.90325e-05,72.02410889,-0.676930428,-0.418147385,0.70338881,2540\n1230A,120.12,30.3119,20170601,42.92936288,3730,7467,2226601.38,323268.5589,9,0.736901581,303.046875,289.4729614,101210.2656,0.002662131,233.4883118,-1.70592e-05,72.43157959,-0.617714643,-0.40181163,0.718350887,2814\n1231A,120.301,30.4183,20170601,38.71666667,3713,7496,2239065.497,339629.7205,9,0.943836272,291.066925,289.4186707,101354.8906,0.002493108,254.2673035,-1.9667e-05,71.26215363,-0.880770802,-0.339219272,0.712481678,2977\n1232A,120.27,30.1819,20170601,43.43521127,3751,7491,2243537.147,311721.3579,13,0.914559126,298.2581482,289.8997803,101439.7188,0.002422209,248.1712799,-2.27691e-05,71.24567413,-0.805591345,-0.432944536,0.691005826,2611\n1233A,120.088,30.1808,20170601,34.76264045,3751,7462,2227765.732,307453.82,59,0.777298689,309.0681458,289.5455627,100818.2031,0.002606487,227.9638367,-1.59928e-05,72.89274597,-0.603524923,-0.489847869,0.680938125,5614\n1235A,121.56,29.8208,20170601,36.98472222,3809,7698,2366794.505,300549.4462,4,0.4400042,254.4442749,289.9533691,101425.6484,0.003185493,369.0124512,-3.28363e-05,78.97048187,-0.423882335,0.118014678,0.589393854,2690\n1237A,121.554,29.8906,20170601,36.43098592,3798,7697,2364059.258,308395.8557,7,0.551451266,252.7306824,290.0628967,101696.5938,0.003170814,379.0813904,-3.67703e-05,78.41760254,-0.526585698,0.163725451,0.575511158,2035\n1239A,121.633,29.7736,20170601,33.41340782,3816,7709,2374640.706,296908.9195,14,0.409499168,261.2898865,289.8026733,100623.3828,0.003139502,389.9339905,-3.83418e-05,78.82299042,-0.404773891,0.062029589,0.563440442,3775\n1240A,121.586,29.8633,20170601,34.40027701,3802,7702,2367705.231,306040.8677,6,0.526893854,254.9023438,290.0255432,101474.3125,0.003142621,387.1171265,-3.88283e-05,78.45108795,-0.508701921,0.137257025,0.593012929,2330\n1241A,121.524,29.8506,20170601,31.24792244,3804,7692,2362720.878,303094.5143,5,0.473662734,251.4663239,290.0154114,101741.1328,0.003214971,359.4755859,-3.04301e-05,78.93255615,-0.449091643,0.150575832,0.580007911,2369\n1242A,120.634,28.0089,20170601,34.10277778,4099,7549,2341518.945,71385.3921,22,0.551493347,327.9435425,290.423584,100212.3281,0.002784423,256.3656006,-3.21053e-05,81.16259003,-0.292743325,-0.467382342,0.546185672,2428\n1243A,120.677,27.9939,20170601,32.07605634,4101,7556,2345814.187,70701.43436,9,0.737793267,325.4155273,290.6038208,100385.7031,0.002689945,280.7914124,-4.05877e-05,80.28862762,-0.418832123,-0.607386708,0.539707124,2134\n1244A,120.76,27.9747,20170601,30.625,4104,7570,2353809.713,70498.58135,16,1.17950809,321.7615356,290.9420166,100536.5547,0.002538435,329.4247131,-5.69942e-05,78.96625519,-0.730107486,-0.926381409,0.518862009,3556\n1245A,120.671,28.0167,20170601,37.0042735,4097,7555,2344583.803,73156.71662,10,0.680588126,326.0200806,290.4649658,100236.5234,0.002726603,271.0088806,-3.65989e-05,80.72190857,-0.38042447,-0.564338028,0.527247071,2176\n1246A,120.598,30.0911,20170601,42.53221289,3766,7544,2274781.606,308825.0294,9,1.023867726,281.7053833,290.1461487,101472.6641,0.002433016,272.2157593,-2.43084e-05,71.48095703,-1.002586007,-0.207668841,0.66721648,2580\n1247A,120.605,29.9919,20170601,42.86938202,3781,7545,2278427.773,297592.9636,9,0.878875136,280.6818542,289.9578552,101016.8203,0.002544374,261.8351746,-1.58214e-05,71.86288452,-0.863654077,-0.162859425,0.65984565,3019\n1250A,120.07,30.8244,20170601,38.02668539,3648,7459,2206861.816,381196.2617,22,0.818119049,269.0801086,288.993988,101128.8906,0.002263708,275.2915344,-3.26574e-05,72.12408447,-0.818013012,0.013171966,0.725790977,3967\n1252A,120.744,30.7946,20170601,41.25,3653,7567,2265767.264,393102.2663,7,1.13258636,273.5099792,289.1840515,101589.5156,0.002120791,297.3394165,-2.49218e-05,72.91191864,-1.13046515,-0.069285005,0.69095844,3200\n1253A,120.726,30.7478,20170601,43.09888579,3660,7564,2265663.102,387299.9193,7,1.16454649,274.3938599,289.243927,101594.2266,0.002181931,293.5216064,-2.12615e-05,72.84377289,-1.161128163,-0.089162312,0.690496504,3183\n1255A,121.273,28.6459,20170601,28.00724638,3997,7652,2378627.891,159367.0242,129,0.251679748,348.6769104,290.2898254,100781.1563,0.002618861,330.263916,-1.51401e-05,78.63561249,-0.049436584,-0.24677667,0.535940588,4546\n1256A,121.419,28.6542,20170601,31.10814607,3995,7675,2391266.101,163857.283,11,0.43613553,346.0286255,290.54245,100985.1406,0.002336381,373.4453125,-2.48162e-05,78.24567413,-0.105335347,-0.423224121,0.538393497,3380\n1257A,121.377,28.5773,20170601,31.56478873,4008,7668,2389968.264,154068.1304,18,0.435178995,353.5023193,290.5466919,101017.8828,0.002394292,362.4503174,-1.84752e-05,78.30812073,-0.049285013,-0.432379186,0.528689265,3127\n1262A,119.647,29.077,20170601,37.48739496,3928,7392,2221958.577,170624.376,45,0.786994278,274.4619141,290.5435791,99960.73438,0.002472113,216.9483337,-1.2594e-05,72.02579498,-0.78461206,-0.06118729,0.621354461,2923\n1263A,119.686,29.1029,20170601,34.52506964,3924,7398,2224637.505,174478.83,44,0.817785561,277.5187988,290.5285034,99814.42188,0.002367802,220.8942871,-1.25426e-05,71.89976501,-0.810759604,-0.106967837,0.623388112,2752\n1264A,118.871,28.9404,20170601,32.40168539,3950,7267,2157297.522,137645.0605,70,1.053934216,294.7254639,290.714386,100159.4688,0.002581076,192.2047729,-1.069e-05,74.49195862,-0.957337976,-0.440773696,0.608933091,3210\n1265A,118.871,28.9664,20170601,34.66526611,3945,7267,2156556.979,140633.1108,67,1.054400444,296.470459,290.7413025,100328.1797,0.002603298,195.1674347,-1.09417e-05,74.39060211,-0.943889797,-0.469927907,0.591825068,4123\n1266A,118.855,28.9745,20170601,35.13927577,3944,7265,2154909.456,141213.0527,69,1.071379662,297.3466797,290.718811,100258.25,0.002598091,196.5460205,-1.09849e-05,74.32008362,-0.951675415,-0.49210608,0.599039555,4201\n1267A,119.914,28.4514,20170601,28.95391061,4028,7434,2264081.254,105041.4525,61,0.521767139,262.8431396,290.1302185,98728.85156,0.00237556,220.1003876,-7.907e-06,76.57558441,-0.517699182,0.065026999,0.604331017,3919\n1268A,119.93,28.4586,20170601,27.13091922,4027,7437,2265290.369,106233.8849,56,0.530605733,262.1140137,290.0856323,98621.6875,0.002333659,223.0967102,-7.89922e-06,76.66146851,-0.525584757,0.072822481,0.590718508,3156\n1269A,119.879,28.4231,20170601,30.35369318,4032,7429,2261806.644,100997.9407,91,0.508110583,262.9339294,290.1945801,98859.85938,0.002466876,213.1069641,-7.91098e-06,76.61692047,-0.504248798,0.062526032,0.547872603,4250\n1270A,117.196,31.7848,20170601,48.77949438,3495,6999,1932792.325,432026.4364,34,1.024951816,256.0180054,288.880127,101334.3672,0.002223135,239.2498779,-1.56752e-05,67.72418213,-0.994574487,0.247684643,0.7954638,3327\n1271A,117.307,31.8766,20170601,51.31754875,3480,7017,1939820.642,444912.7486,20,1.055467486,259.3335266,288.8564148,101454.2734,0.002232966,246.9914551,-2.08359e-05,67.71926117,-1.037222385,0.195400387,0.778991818,2257\n1272A,117.259,31.8706,20170601,46.20473538,3481,7009,1935879.476,443266.777,22,1.035451055,258.0049744,288.7788696,101371.3047,0.002230059,241.5169678,-1.69884e-05,67.69577026,-1.012833953,0.215235144,0.789512336,2949\n1273A,117.16,31.9051,20170601,47.26264045,3475,6994,1926493.323,445343.0046,29,1.003379941,255.8636169,288.5348511,101172.875,0.002217068,232.9623871,-1.60269e-05,67.75965881,-0.972985148,0.245094314,0.778822541,4122\n1274A,117.25,31.8572,20170601,49.77871148,3483,7008,1935470.017,441527.6054,29,1.03785038,257.8066101,288.8024292,101371.8828,0.002232113,241.2009735,-1.64577e-05,67.68803406,-1.0144279,0.219247267,0.798512936,2799\n1275A,117.266,31.9438,20170601,52.0210084,3469,7011,1934510.403,451937.7037,33,1.028813601,257.9957886,288.6001587,101257.9688,0.002219917,239.5991516,-1.71932e-05,67.73134613,-1.006307244,0.214016482,0.78590548,3859\n1276A,117.336,31.8585,20170601,51.78089888,3483,7022,1942786.847,443376.3137,18,1.086572409,260.1125793,288.9656067,101480.1484,0.002245428,252.1993713,-2.43177e-05,67.72509003,-1.070425868,0.1866225,0.782854199,2259\n1277A,117.302,31.7956,20170601,51.98022599,3493,7016,1941573.347,435374.7744,21,1.109904647,259.0768127,289.1032104,101484.3672,0.002264974,251.5123444,-2.29364e-05,67.68444061,-1.089787006,0.210363343,0.793789148,3851\n1278A,117.278,31.7386,20170601,49.27824859,3502,7012,1941052.011,428259.4521,18,1.122968554,258.1546326,289.322113,101410.2188,0.002273595,249.6889191,-2.03922e-05,67.68088531,-1.099045873,0.230557203,0.788195252,2982\n1279A,117.124,31.8516,20170601,46.00277778,3484,6988,1924845.538,438399.7067,48,0.989542425,254.7271423,288.5857239,101174.5938,0.002205849,231.9657898,-1.56599e-05,67.79624176,-0.954584002,0.260698318,0.783483148,3027\n1280A,119.389,26.0542,20170601,24.21186441,4411,7350,2286633.379,-180241.4635,350,0.856737316,324.4451599,291.8222656,99741.82813,0.002665866,324.4317017,-3.70487e-05,83.3534317,-0.498229057,-0.696969628,0.415077567,5913\n1282A,119.303,26.0392,20170601,27.23743017,4414,7336,2279165.492,-183941.4839,18,0.660829902,314.7249451,291.7391663,100222.5,0.002735934,285.039978,-2.46829e-05,84.31043243,-0.469547421,-0.464996099,0.434393883,3221\n1283A,119.299,26.1092,20170601,26.66615854,4403,7336,2276792.412,-176089.9945,15,0.672390699,312.1690674,291.5812378,99842.45313,0.002802417,267.8289185,-2.19215e-05,84.69174957,-0.498384506,-0.451355845,0.465857327,3229\n1284A,119.268,26.0797,20170601,25.44662921,4407,7331,2274791.331,-180156.3502,26,0.633227229,307.7336426,291.6205139,99916.67188,0.002799797,258.8541565,-1.83825e-05,84.9222641,-0.500822306,-0.38749674,0.449537158,3288\n1285A,119.315,26.0753,20170601,31.11871508,4408,7338,2279232.88,-179566.5619,12,0.680991769,315.185791,291.697113,100144.0938,0.00276312,281.7966003,-2.50081e-05,84.36978149,-0.480003417,-0.483059585,0.458785087,2518\n1286A,118.1569444,24.81805556,20170601,24.03812317,4609,7153,2207017.741,-348510.3697,197,0.741103709,319.5954895,292.3213806,98418.89063,0.002630952,254.0848694,-1.9887e-05,79.57509613,-0.480409026,-0.564306498,0.393619299,6376\n1288A,118.0636111,24.44583333,20170601,28.7359736,4669,7138,2208356.455,-392712.3158,0,1.776781678,308.0550537,293.8876038,100821.875,0.002047232,362.2870789,-6.81531e-05,79.16016388,-1.399144173,-1.095147967,0.379904926,1665\n1290A,115.893,28.6844,20170601,36.59401709,3991,6791,1898924.787,46657.37765,28,1.290891767,346.7346191,291.0671997,101131.4609,0.002607477,233.0478058,-2.39785e-05,71.27455902,-0.296317697,-1.2564224,0.681694448,1744\n1291A,115.8886,28.6839,20170601,31.19067797,3991,6790,1898543.401,46514.54379,29,1.287086129,346.6752625,291.0464783,101076.75,0.002599293,232.4456635,-2.372e-05,71.28962708,-0.296741784,-1.252411604,0.674262524,1599\n1292A,115.813,28.7442,20170601,28.46468927,3981,6778,1890275.792,52030.18965,41,1.152769208,351.081604,290.5980835,100129.1641,0.002541604,221.3071442,-2.04187e-05,71.81318665,-0.178810954,-1.138816714,0.66898936,3885\n1293A,115.973,28.6969,20170601,37.09444444,3989,6804,1905772.09,49651.3553,17,1.322411656,347.6565552,291.2492371,101475.1172,0.002669514,240.5954895,-2.73618e-05,71.11805725,-0.282805026,-1.291818023,0.660606265,1725\n1294A,115.852,28.6869,20170601,34.8837535,3990,6784,1895192.257,46154.86128,19,1.255147696,346.7901001,290.8968201,100707.875,0.002554241,228.4994965,-2.21568e-05,71.41098022,-0.286929935,-1.221911192,0.668902993,2202\n1295A,115.892,28.6425,20170601,36.65598886,3997,6791,1899881.024,41794.03185,23,1.346121788,344.2358704,291.196167,101270.0391,0.002581747,234.6418762,-2.40028e-05,71.11257935,-0.365821183,-1.29546082,0.67128396,2364\n1296A,115.742,28.7994,20170601,27.25360231,3972,6767,1882555.16,57052.94511,188,1.03218329,356.8309937,290.350647,99583.74219,0.002482573,211.6692505,-1.74474e-05,72.27113342,-0.057154361,-1.030599713,0.664389729,6557\n1298A,115.931,28.6844,20170601,35.57244318,3991,6797,1902326.184,47392.41275,22,1.313311934,346.98172,291.1802979,101390.7734,0.002646531,236.6606598,-2.5529e-05,71.18412018,-0.29594928,-1.279532075,0.670797646,2181\n1299A,116.988,36.6114,20170601,53.2592068,2722,6966,1785985.883,994763.6837,134,1.198862195,213.053421,286.2298279,100400.0547,0.001087912,191.6004639,-1.18428e-05,57.19073486,-0.653867245,1.004852295,0.817577362,3037\n1300A,116.93,36.67,20170601,51.10704225,2713,6957,1779781.196,1000637.823,30,1.209402919,212.7987061,286.506897,100874.9922,0.001060971,194.2963257,-1.23449e-05,55.39476776,-0.655103445,1.01660955,0.817664206,2694\n1301A,117.114,36.6739,20170601,50.28088235,2712,6986,1794356.744,1004445.242,85,1.208310366,209.3106384,286.1491089,100192.5781,0.001077851,190.977005,-1.09952e-05,56.96566772,-0.591505647,1.053629398,0.808104634,2454\n1302A,116.989,36.6872,20170601,52.91253644,2710,6966,1784026.664,1003740.994,29,1.221477866,211.414505,286.4693298,100837.375,0.001053725,193.8558197,-1.23915e-05,55.44024277,-0.636648774,1.04244256,0.820888877,2310\n1303A,117.0684,36.6868,20170601,56.59705882,2710,6979,1790370.917,1005137.897,39,1.220882297,209.9672241,286.3095398,100541.1875,0.001062584,192.1914215,-1.1551e-05,56.22574234,-0.609819829,1.057673573,0.817932367,2109\n1304A,116.943,36.6489,20170601,62.66091954,2716,6959,1781385.103,998379.1373,38,1.207132816,213.0199127,286.4356689,100756.4219,0.001068765,193.5187988,-1.2201e-05,55.91096497,-0.657786191,1.01216948,0.819606364,2426\n1305A,117.049,36.6622,20170601,60.01311953,2714,6976,1789487.122,1001877.217,70,1.212028265,210.7757874,286.2530212,100425.4453,0.001072094,191.897171,-1.16187e-05,56.64222717,-0.620153904,1.041355729,0.823446095,2168\n1306A,116.734,36.5336,20170601,58.35446686,2735,6925,1767762.844,980973.837,54,1.20902586,220.7306366,286.5935059,100878.5391,0.001072886,194.0511932,-1.22342e-05,55.73442841,-0.788874686,0.91619885,0.819988012,3924\n1307A,120.6659,36.2403,20170601,25.74107143,2782,7555,2090013.058,1023660.43,45,0.598014295,180.4764404,285.2951355,99714.1875,0.000898823,413.3325806,-7.9533e-05,67.41822815,-0.004973119,0.597993612,0.633653462,4004\n1308A,120.3905,36.1851,20170601,42.19219653,2790,7510,2069799.107,1011370.883,28,0.7155146,189.3818665,285.9462585,101179.6328,0.000868624,359.5069885,-5.9206e-05,66.18849182,-0.116635114,0.7059443,0.650496602,2283\n1314A,120.1964,36.3083,20170601,41.015625,2771,7479,2050541.989,1021729.457,5,0.643388808,193.7384033,285.4806213,101677.5078,0.000917933,270.1025696,-2.60371e-05,64.7797699,-0.152793363,0.624982655,0.656085134,2701\n1315A,120.4001,36.2403,20170601,30.67,2782,7512,2068855.455,1018035.354,23,0.678664923,190.5519867,285.7209167,101209.9531,0.00090022,340.594635,-5.13822e-05,66.28878784,-0.124278389,0.667188823,0.653640509,2624\n1316A,113.681,34.7545,20170601,65.23728814,3019,6437,1563346.651,718598.0309,101,0.641930938,208.2400055,288.1940918,100398.7266,0.001027582,218.8000488,-1.25078e-05,58.68849945,-0.30373174,0.565528393,0.854364574,2126\n1317A,113.641,34.7745,20170601,63.62078652,3016,6431,1559584.469,720331.9279,103,0.665182531,210.0144043,288.1921082,100404.6094,0.001011267,214.8143311,-1.27262e-05,58.54251862,-0.332727224,0.575986445,0.839864969,1961\n1318A,113.675,34.8019,20170601,66.82162921,3012,6436,1561770.203,724118.4702,92,0.681568027,212.8955078,288.315094,100687.7656,0.001004856,215.3556671,-1.32565e-05,58.04828262,-0.370155871,0.572293282,0.852751851,2261\n1319A,113.564,34.802,20170601,62.60085227,3012,6418,1552596.175,722371.2196,112,0.702414095,213.4332581,288.1034546,100289.3906,0.000992073,207.3097992,-1.29245e-05,58.3849678,-0.386995584,0.586191058,0.851491392,2711\n1320A,113.727,34.7187,20170601,65.41432584,3025,6444,1567967.706,715090.1755,100,0.602924109,204.6053925,288.1590881,100277.3047,0.001053692,221.9347687,-1.23614e-05,58.79164505,-0.251030356,0.548179924,0.855601549,2533\n1321A,113.734,34.719,20170601,62.79378531,3025,6445,1568539.824,715237.4325,99,0.602926195,204.8696747,288.1617737,100291.4531,0.001057655,222.3699799,-1.23789e-05,58.76182556,-0.253556967,0.547018111,0.840416908,2582\n1322A,113.5991,34.7496,20170601,64.34520124,3020,6424,1556686.197,716717.1943,125,0.655335128,206.991394,288.0125427,100049.8828,0.001021759,213.3342743,-1.21599e-05,59.13059998,-0.297420084,0.583956659,0.846046627,2230\n1323A,113.6356,34.7538,20170601,63.08240223,3019,6430,1559608.928,717793.6263,107,0.650875986,207.8070679,288.1161194,100237.3828,0.00101989,215.631958,-1.23793e-05,58.86881256,-0.303622603,0.575719416,0.839287639,1995\n1324A,113.6113,34.9162,20170601,59.82294618,2993,6426,1553909.984,736654.4282,93,0.781253636,226.5361328,288.2816772,100644.0781,0.000916769,202.9169159,-1.51515e-05,56.23620605,-0.567027569,0.537435532,0.823637009,4169\n1325A,114.3672,30.5719,20170601,48.38636364,3689,6547,1718247.761,237929.3792,27,1.092125654,301.0447998,290.1140747,101302.6563,0.002541434,210.8522339,-3.45589e-05,68.97547913,-0.935729384,-0.563159823,0.805538952,2250\n1326A,114.2511,30.5514,20170601,43.4494382,3692,6528,1708555.233,233510.4901,31,1.118394494,301.5838928,290.1111145,101281.3594,0.002537019,214.9947205,-3.54378e-05,68.53266907,-0.952768087,-0.585695565,0.801629007,2720\n1327A,114.2836,30.6197,20170601,48.60393258,3681,6533,1709816.336,242054.5322,29,1.101818323,301.9703064,290.02005,101298.3906,0.002553479,210.0927734,-3.1854e-05,68.6966095,-0.934733927,-0.583331883,0.811086297,2025\n1328A,114.3006,30.5494,20170601,44.58333333,3692,6536,1712938.32,234138.7098,38,1.120484591,301.2478027,290.1384888,101301.0625,0.002528618,213.7231903,-3.53923e-05,68.71790314,-0.957974017,-0.581181109,0.802339196,1716\n1329A,114.4272,30.6103,20170601,57.25492958,3682,6556,1722603.115,243464.6664,31,1.047051668,301.5730896,290.0148926,101304.9844,0.002581318,206.7971802,-3.31349e-05,69.16859436,-0.892094076,-0.54816556,0.802711964,3155\n1330A,114.1525,30.4753,20170601,47.02089136,3704,6512,1701670.835,222910.6105,29,1.077702165,302.203949,290.0886536,101220.2578,0.002574136,214.2940826,-3.42269e-05,68.67253876,-0.911940634,-0.574287534,0.812991083,2110\n1331A,114.3008,30.5947,20170601,45.17222222,3685,6536,1711902.909,239433.4756,26,1.108243346,301.6933899,290.0739746,101310.75,0.00254495,211.1082764,-3.32292e-05,68.74343109,-0.943009436,-0.582182646,0.803780437,1620\n1333A,114.2131,30.6414,20170601,48.2254902,3677,6522,1703143.119,243365.6039,21,1.095896959,302.197998,289.9346008,101242.5938,0.002556101,208.6443787,-2.91134e-05,68.5973587,-0.927397788,-0.583886564,0.804320514,2857\n1334A,113.8531,30.2997,20170601,43.25073314,3732,6464,1679384.985,197249.3631,21,0.932408869,305.3052673,289.9713745,101366.4609,0.002586212,204.6863098,-2.28903e-05,69.29116058,-0.760959208,-0.538820326,0.807403505,2382\n1335A,113.0833,28.2325,20170601,45.18472222,4063,6341,1656447.976,-56542.64937,58,0.754913509,345.0029907,291.0456848,100953.9219,0.002546156,228.4793396,-1.65101e-05,72.4181366,-0.195409775,-0.729184031,0.782874703,2941\n1336A,112.8872,28.2189,20170601,46.02374302,4065,6310,1638975.709,-61410.05114,59,0.803195179,350.6568604,290.8293762,100692.2422,0.002678428,240.7741699,-1.75897e-05,72.73033142,-0.130465791,-0.792528391,0.795592368,2907\n1337A,113.0792,28.2053,20170601,48.97075209,4067,6341,1656664.24,-59769.08318,44,0.761191964,345.5974121,291.0561218,100940.6328,0.00253287,228.7906494,-1.65405e-05,72.40476227,-0.189396977,-0.73725301,0.782356024,3067\n1338A,112.9394,28.19,20170601,52.06601124,4070,6318,1644325.023,-63893.44358,102,0.807576537,350.2634583,290.8830566,100708.8672,0.002644349,238.8645935,-1.74299e-05,72.54368591,-0.13664557,-0.795932055,0.78768146,5543\n1339A,112.9956,28.1442,20170601,44.35195531,4077,6327,1650403.339,-68267.65041,83,0.812318444,349.3313599,290.9437561,100703.9297,0.002605598,236.9651947,-1.73276e-05,72.30608368,-0.150453061,-0.798263848,0.780599594,2931\n1340A,112.9792,28.2597,20170601,46.94182825,4059,6325,1646434.86,-55134.31895,30,0.774442554,346.8496704,290.9231873,100887.8672,0.00262666,236.5379486,-1.73787e-05,72.50500488,-0.176255643,-0.7541188,0.799811006,2105\n1341A,113.0014,28.1944,20170601,52.33757062,4069,6328,1649849.695,-62343.35904,48,0.786838472,348.3643494,290.9443665,100827.4063,0.002591404,236.0260315,-1.72821e-05,72.36945343,-0.158762127,-0.770655155,0.784723103,1952\n1342A,112.9844,28.1178,20170601,41.61516854,4081,6325,1649954.817,-71519.6784,90,0.829354167,350.1261597,290.9384155,100642.4297,0.002617801,237.7223816,-1.73406e-05,72.31246948,-0.142288372,-0.817057133,0.784308195,2717\n1343A,112.8908,28.1308,20170601,43.11408451,4079,6311,1641185.136,-71578.35935,45,0.853407919,352.6566772,290.8698425,100604.3438,0.002662458,241.0706635,-1.74155e-05,72.62168121,-0.109153256,-0.846398652,0.783427894,3672\n1344A,112.9958,28.3586,20170601,47.99858757,4043,6327,1645810.518,-43370.10594,69,0.756720543,342.5375671,290.8086548,100645.4453,0.00267755,237.1007385,-1.7639e-05,72.65622711,-0.227137432,-0.721827209,0.780225039,4589\n1345A,113.235,23.1422,20170601,38.90947075,4877,6366,1779926.644,-638513.0766,10,0.784633756,269.2297974,295.0992737,101227.5625,0.003095145,241.3158112,-2.29249e-05,72.35305023,-0.784562409,0.010583142,0.556961715,2310\n1346A,113.261,23.105,20170601,35.15502793,4883,6370,1783229.312,-642265.1455,12,0.786271274,266.4555664,295.1201172,101258.9297,0.003122867,243.8480835,-2.38846e-05,72.57878113,-0.784765124,0.048644256,0.555120885,1915\n1348A,113.348,23.0916,20170601,31.47632312,4885,6384,1791913.674,-642203.4203,2,0.771642923,263.4588013,295.0488281,101200.1016,0.003284694,243.738205,-2.50305e-05,73.23412323,-0.766615868,0.087936565,0.556255579,2592\n1349A,113.433,23.105,20170601,34.26330532,4883,6397,1799828.954,-639129.1144,4,0.756003141,262.1160889,294.9769592,101113.7813,0.00338229,241.3295441,-2.54152e-05,73.80982208,-0.748852968,0.103730068,0.563663125,2445\n1350A,113.352,22.9477,20170601,36.97331461,4908,6384,1795385.041,-658456.8606,5,0.780080557,256.8186951,295.2226563,101327.8203,0.003241642,255.1020203,-2.81505e-05,73.54603577,-0.759521067,0.177914217,0.552449226,2860\n1351A,113.215,23.3917,20170601,31.49579832,4837,6362,1772680.807,-610527.5137,8,0.769667923,291.1340942,294.8891907,101126.6719,0.003101079,224.4102783,-1.7871e-05,72.3507843,-0.717915297,-0.277464032,0.566865027,2460\n1352A,113.26,23.1331,20170601,35.90896359,4879,6370,1782533.017,-639093.1125,18,0.782682657,267.8681641,295.0823975,101206.2969,0.003136461,241.9406586,-2.33207e-05,72.53935242,-0.782139659,0.02915013,0.571879387,2436\n1353A,113.568,23.2783,20170601,28.38128492,4856,6419,1809092.018,-616977.6772,31,0.696415663,272.9414673,294.5361023,100234.0391,0.003282168,216.859375,-1.91823e-05,74.23719025,-0.695499837,-0.035703715,0.556178868,5539\n1354A,113.281,23.1569,20170601,35.75487465,4875,6373,1784050.705,-636009.7075,42,0.777210414,268.8037109,295.0168762,101114.3594,0.003184943,239.5456848,-2.28666e-05,72.6390152,-0.777040243,0.016261788,0.557862937,3589\n1355A,113.589,23.5538,20170601,33.23537604,4811,6422,1805120.318,-585289.9502,32,0.765622079,292.2573853,294.1547852,100269.4688,0.003279448,197.6809082,-1.43646e-05,76.49649811,-0.708593667,-0.28995201,0.543533087,4237\n1356A,114.1063,22.5545,20170601,27.20926966,4971,6505,1877026.324,-688883.0505,17,1.319441557,263.1357422,294.9416199,100378.4609,0.003077449,306.2022705,-4.3861e-05,79.63565826,-1.309977174,0.157752723,0.501211405,2807\n1357A,114.117,22.5625,20170601,28.08798883,4970,6507,1877886.018,-687774.2831,19,1.304514289,263.2776489,294.9215088,100363.0391,0.003090781,305.2449341,-4.35993e-05,79.73753357,-1.29553926,0.152760014,0.50228411,3030\n1360A,114.263,22.5908,20170601,22.57746479,4966,6530,1891409.11,-681775.1349,53,1.376850843,267.0551758,294.9255371,100410.6719,0.002873792,305.4543762,-4.59042e-05,80.99490356,-1.375029445,0.07079652,0.474117041,2651\n1361A,114.24,22.7267,20170601,26.57660167,4944,6526,1886131.964,-666852.0938,45,1.141771674,264.5367432,294.7447815,100487.3672,0.003008291,269.5958862,-3.18209e-05,80.18016052,-1.136580348,0.108754911,0.501216829,4447\n1365A,114.297,22.5978,20170601,26.13927577,4964,6536,1894547.138,-680328.9711,37,1.384451747,267.8066101,294.9591064,100468.9844,0.002803015,311.1329346,-5.13332e-05,80.80823517,-1.383435011,0.053048849,0.479024351,5256\n1366A,114.085,22.75,20170601,34.49715909,4940,6502,1870610.812,-667179.3382,36,1.1803087,259.8186951,294.8808899,100657.0625,0.003093733,270.5914001,-3.14045e-05,78.18308258,-1.161714196,0.208683491,0.508110762,4304\n1368A,113.495,22.2294,20170601,28.53813559,5023,6407,1824697.338,-737140.758,13,1.618147492,263.7887878,295.8627319,101108.8594,0.002624252,378.7181702,-7.57378e-05,78.38285828,-1.608641148,0.175142884,0.483257711,3649\n1370A,113.299,22.2281,20170601,30.13276836,5024,6376,1805613.163,-740908.4287,6,1.303276181,264.6208801,295.6557617,101040.4297,0.0027672,355.4140625,-7.20109e-05,78.17297363,-1.297531486,0.122232631,0.494875938,2750\n1371A,113.134,23.0048,20170601,35.82152975,4899,6349,1773092.54,-655937.0211,3,0.817487895,265.354126,295.2848511,101244.7109,0.002753559,250.8326569,-2.57542e-05,72.20375824,-0.814799011,0.066249952,0.572459698,2664\n1372A,113.105,23.0395,20170601,39.28969359,4894,6345,1769555.098,-652521.0692,9,0.79575038,267.0890503,295.2361755,101187.0078,0.002794035,248.4721527,-2.50565e-05,72.00431061,-0.794721782,0.040446728,0.570706666,2500\n1373A,113.144,23.0467,20170601,35.05211268,4893,6351,1773170.865,-651000.6642,3,0.805814326,266.5808716,295.2511902,101253.2578,0.002834494,248.1858521,-2.49677e-05,72.13818359,-0.804377794,0.048094299,0.57229799,2413\n1374A,113.292,22.8054,20170601,28.99439776,4931,6375,1792622.345,-675687.2389,1,0.758004069,253.80867,295.2419739,101206.7031,0.003104889,257.3787537,-2.80492e-05,73.72279358,-0.727930486,0.211393848,0.552574277,3532\n1375A,113.257,22.7629,20170601,34.17746479,4938,6369,1790137.48,-681142.5905,3,0.723628044,253.4748993,295.2415161,101252.6875,0.003101477,255.1836243,-2.73967e-05,73.64826965,-0.69373095,0.205851644,0.548339605,2149\n1376A,112.844,22.8693,20170601,39.67787115,4921,6303,1747876.67,-676510.9123,31,0.565837502,265.9544678,294.8993225,100774.8594,0.003029548,241.1379242,-2.09283e-05,74.0732193,-0.564425886,0.039944187,0.568857491,5768\n1377A,112.885,23.1572,20170601,38.81534091,4875,6310,1745831.166,-643088.6485,7,0.588560998,277.4393005,295.0350342,101170.8047,0.003121902,232.4656372,-2.21024e-05,72.11452484,-0.583610654,-0.07617525,0.573870182,3039\n1378A,112.863,23.1886,20170601,38.29305556,4870,6306,1743051.416,-639910.8919,23,0.573706508,279.8635559,295.0332336,101246.8203,0.003165651,228.8575134,-2.1828e-05,72.26731873,-0.565231323,-0.098248176,0.568219483,3663\n1379A,113.3769,22.5211,20170601,35.20786517,4977,6388,1806938.948,-706334.5609,8,0.7892344,252.1611938,295.2304077,100930.3125,0.002965539,288.5749207,-3.50185e-05,76.49225616,-0.751280725,0.241802022,0.534883916,2621\n1380A,113.3881,22.5497,20170601,33.25770308,4972,6390,1807414.348,-702891.347,2,0.793949068,250.8421021,295.2735291,101052.7891,0.002968894,287.220459,-3.49542e-05,76.26359558,-0.749968886,0.260579675,0.531543255,2896\n1381A,113.4075,22.5111,20170601,29.46927374,4978,6393,1810127.024,-706903.1147,13,0.829056203,252.4943237,295.2363892,100838.6016,0.002912565,293.5805359,-3.66533e-05,76.64382172,-0.790650904,0.249409929,0.524514079,3852\n1382A,113.4411,22.4853,20170601,37.20505618,4982,6399,1813946.72,-709203.02,58,0.897511721,253.7532501,295.2511292,100724.7031,0.002844854,302.9868774,-4.00436e-05,76.9348526,-0.861660779,0.251133561,0.514138818,5930\n1383A,113.104,22.6069,20170601,37.28011204,4963,6345,1778601.174,-701598.0687,8,0.587068558,255.4230499,295.0271301,101057.6484,0.003360467,254.9163208,-2.3507e-05,75.69476318,-0.568165421,0.147775501,0.53491056,3303\n1384A,113.074,22.5811,20170601,35.29722222,4967,6340,1776230.991,-705063.4905,12,0.588686347,257.6977234,295.0207825,101100.8594,0.003364779,252.829422,-2.23242e-05,76.13333893,-0.575163364,0.125453964,0.545013309,2854\n1385A,113.024,22.5328,20170601,36.91903409,4975,6332,1772387.574,-711437.4688,23,0.600268781,261.7745667,295.0432434,101279.0781,0.00332213,247.9923706,-2.01123e-05,77.00639343,-0.594090104,0.085904375,0.543663561,4206\n1386A,113.0819,22.5931,20170601,35.44289694,4965,6341,1776745.564,-703561.2595,9,0.586270988,256.9856567,295.0094604,101057.2031,0.003379143,253.2666168,-2.2604e-05,75.94943237,-0.571206629,0.132047996,0.549889505,2982\n1387A,113.7819444,23.05361111,20170601,37.732493,4892,6453,1834616.037,-638504.8179,21,0.791039944,256.5083008,295.0609131,101043.8672,0.00310294,240.8421021,-2.55858e-05,73.76796722,-0.769202948,0.184583411,0.543184817,2288\n1388A,113.7461111,23.02777778,20170601,36.35734463,4896,6447,1831724.143,-642102.2446,12,0.806755424,254.6917572,295.0757446,100951.2109,0.003132683,247.7622833,-2.85361e-05,73.53556824,-0.778123081,0.213022873,0.543141365,2290\n1389A,113.7480556,23.06,20170601,39.63445378,4890,6448,1831206.167,-638412.5699,5,0.760095775,256.1028748,295.0964966,101140.9844,0.003113785,241.2823334,-2.65111e-05,73.59203339,-0.73783952,0.182588294,0.533854187,2454\n1390A,113.7944444,23.01277778,20170601,33.54142857,4898,6455,1836718.503,-642900.465,30,0.848429978,255.7484283,295.0090637,100808.9063,0.003111002,245.9399414,-2.64898e-05,73.77760315,-0.822310686,0.208898515,0.540817261,5663\n1391A,113.7383333,22.96583333,20170601,35.75761773,4906,6446,1832328.983,-649269.1789,31,0.897951722,253.1913757,295.0991211,100822.3516,0.003149349,261.8977356,-3.69851e-05,73.82089233,-0.859577894,0.259698331,0.544216216,4262\n1392A,114.4183,23.0528,20170601,27.9902507,4892,6555,1895995.701,-626516.3776,21,0.647749364,271.894989,294.495575,100649.5625,0.002983528,211.5156708,-1.51594e-05,77.96212769,-0.647396147,-0.021388927,0.489900202,4704\n1393A,114.4053,23.08,20170601,28.84733894,4887,6553,1894126.577,-623686.8753,21,0.635555208,273.6177979,294.5423279,100781.3516,0.003018772,209.2550812,-1.52726e-05,77.84584808,-0.634290576,-0.040073249,0.488559157,3056\n1394A,114.4103,23.1142,20170601,28.22727273,4882,6554,1893832.965,-619716.9778,19,0.612820506,275.219635,294.5081787,100671.8438,0.003013732,207.2019348,-1.54969e-05,77.6918335,-0.610282063,-0.055720687,0.50130558,2800\n1395A,114.3244,22.8172,20170601,24.58848315,4929,6540,1892259.655,-654992.357,81,0.956310332,267.0995483,294.4826355,100138.3594,0.003024695,255.1569366,-3.01505e-05,79.50608826,-0.955083072,0.048433039,0.489254385,4177\n1396A,114.5317,22.7422,20170601,29.73285714,4941,6573,1914000.146,-659458.769,13,1.373717189,267.5316772,294.897522,100286.1016,0.00255526,293.9423828,-5.59032e-05,79.67350006,-1.372439981,0.059223849,0.465269625,4569\n1397A,112.427,23.0706,20170601,39.67086835,4889,6236,1703364.794,-660969.9043,11,0.714842439,273.4051514,294.5708923,100007.0938,0.002928441,217.0730438,-1.4898e-05,76.35643005,-0.713582397,-0.042424597,0.557553291,2688\n1398A,112.471,23.0528,20170601,38.88826816,4892,6243,1707983.708,-662229.4579,10,0.720156848,271.6866455,294.6395264,100205.9688,0.002944014,220.5185242,-1.52215e-05,76.10688782,-0.719845831,-0.02116262,0.558288634,1464\n1399A,112.565,23.1617,20170601,39.39495798,4874,6258,1714838.677,-648212.3413,17,0.661383867,277.3355103,294.3409119,99287.88281,0.003029945,219.1104431,-1.81026e-05,75.72619629,-0.655974984,-0.084412314,0.564404726,4265\n1400A,112.4722,23.0786,20170601,38.267507,4888,6244,1707572.738,-659275.949,9,0.71356982,273.1748047,294.5643616,99983.96094,0.002943652,219.9272003,-1.55717e-05,76.19499969,-0.712476552,-0.039484859,0.553430438,2650\n1401A,108.301,22.7875,20170601,35.12253521,4934,5576,1307340.47,-756473.1589,91,1.095800757,250.1768494,294.4387207,99865.55469,0.002777726,263.9943237,-1.59962e-05,79.70346069,-1.030854225,0.371643305,0.541004241,2332\n1402A,108.316,22.8561,20170601,33.86731844,4923,5579,1307736.621,-748432.5494,85,1.127639651,251.1008148,294.4006958,99840.24219,0.002779066,261.5622864,-1.59962e-05,79.83918762,-1.066835165,0.365286022,0.545925081,2342\n1403A,108.321,22.8225,20170601,33.82062147,4928,5579,1308748.553,-752206.7347,84,1.119592071,250.6407471,294.4284668,99893.10938,0.002779258,263.2190857,-1.60176e-05,79.79971313,-1.056275368,0.371172309,0.540578067,2095\n1404A,108.383,22.805,20170601,32.59722222,4931,5589,1315076.34,-753378.9954,122,1.107817054,251.6599121,294.4295959,100020.5703,0.002805531,268.0393066,-1.6175e-05,79.96898651,-1.051533222,0.348620832,0.548646629,3386\n1405A,108.439,22.7906,20170601,33.82303371,4934,5598,1320771.342,-754273.3837,84,1.091839194,252.5002747,294.4198914,100084.6484,0.002821381,272.8891602,-1.63416e-05,80.06187439,-1.041294813,0.328356266,0.542551994,2056\n1406A,108.239,22.8464,20170601,32.19683908,4925,5566,1300370.89,-750563.3786,80,1.029970646,251.7612915,294.3756104,99650.26563,0.002759798,257.764679,-1.5841e-05,79.52333069,-0.978213847,0.322392762,0.546062648,2822\n1407A,108.328,22.735,20170601,34.70655271,4942,5580,1310796.716,-762112.4435,127,1.104768395,249.1029816,294.4283752,99831.52344,0.002777642,268.0148621,-1.6057e-05,79.74669647,-1.032086015,0.394095957,0.536856949,3786\n1408A,108.244,22.7833,20170601,36.84195402,4935,5567,1301837.141,-757709.9533,89,1.051894546,250.4844666,294.4044495,99687.3125,0.002774982,260.6064453,-1.58529e-05,79.56781006,-0.991451323,0.351434618,0.539061904,2979\n1409A,110.576,19.9507,20170601,16.45702006,5388,5940,1580503.031,-1044494.26,4,2.833151817,263.4823608,297.2429504,101028.2813,0.002657095,471.5733948,-7.27536e-05,82.50409698,-2.814827204,0.321709692,0.404807031,5461\n1412A,110.338,19.9969,20170601,18.88642659,5381,5902,1555734.147,-1043102.57,17,3.203410864,265.3181458,297.1684875,100737.7109,0.002318121,454.3805847,-8.14985e-05,82.31691742,-3.192710638,0.26161167,0.413349807,2986\n1414A,106.379,29.8272,20170601,31.79189944,3808,5269,1024070.277,38831.25409,569,0.727498531,314.1569824,291.4524231,97223.65625,0.00149034,129.0305786,-9.87306e-06,73.65727997,-0.521967232,-0.506758571,0.936833382,5508\n1416A,106.424,29.8264,20170601,40.68156425,3808,5276,1028112.915,39206.7901,231,0.71689713,312.6628418,291.4952698,97296.71094,0.001512393,127.4329147,-9.86351e-06,73.66621399,-0.527206659,-0.485792786,0.944296181,4472\n1417A,106.626,29.7228,20170601,37.63407821,3824,5308,1047660.272,29121.46665,412,0.730139077,310.2180481,291.698761,97623.82031,0.001509026,127.0112076,-1.02582e-05,73.63394165,-0.557560444,-0.471412122,0.941099823,3198\n1418A,106.296,29.5983,20170601,37.21030641,3844,5255,1019751.181,10970.67597,298,0.751918852,326.3827515,291.504364,97103.30469,0.001450536,137.1002808,-1.07257e-05,73.43577576,-0.416341037,-0.626132667,0.969889939,3527\n1419A,106.54,29.5186,20170601,41.60526316,3857,5294,1042786.306,4137.579975,202,0.68494314,311.4235229,291.7192078,97549.84375,0.00142687,130.9321442,-1.09546e-05,73.22263336,-0.513628006,-0.453137249,0.958242118,1737\n1420A,106.65,29.6219,20170601,29.91086351,3841,5312,1051229.756,17483.26645,230,0.730116785,308.3588562,291.7987976,97791.60156,0.001445885,125.920311,-1.0069e-05,73.66951752,-0.572543085,-0.4530617,0.934265196,3792\n1421A,106.634,29.4892,20170601,39.38022284,3862,5309,1051652.871,1675.519135,289,0.6522035,301.2843018,291.574707,97276.52344,0.001434643,126.1045761,-1.00443e-05,73.58778381,-0.557394862,-0.338644952,0.94690001,3081\n1422A,106.364,29.4822,20170601,41.16714286,3863,5266,1027452.329,-2005.77718,309,0.73490113,320.5494385,291.6544189,97391.25781,0.001387973,136.2640686,-1.12239e-05,73.23698425,-0.467006087,-0.567437232,0.974527836,4194\n1425A,106.617,29.7125,20170601,36.10724234,3826,5307,1046997.288,27811.10468,414,0.735382378,311.0783997,291.7601013,97748.61719,0.001499428,127.174614,-1.02793e-05,73.61724091,-0.554372072,-0.483175725,0.937363207,2796\n1426A,106.468,29.4892,20170601,36.48189415,3862,5283,1036716.03,-88.54081316,318,0.690676987,314.3849487,291.7139282,97527.32813,0.00140813,133.5908356,-1.12766e-05,73.07865906,-0.49363032,-0.483077407,0.967462063,3113\n1427A,106.562,29.6453,20170601,35.45125348,3837,5298,1042999.88,19303.69085,312,0.7348122,314.2977295,291.8200378,97822.03906,0.001464822,129.1272736,-1.05866e-05,73.43989563,-0.525955498,-0.513146877,0.944549024,3468\n1428A,106.452,29.709,20170601,32.58450704,3827,5280,1032242.655,25652.63221,233,0.739265501,318.6140442,291.6680908,97500.80469,0.001485209,131.8697968,-1.0647e-05,73.40904999,-0.488788754,-0.554616153,0.952594519,4702\n1429A,106.513,29.389,20170601,38.69390582,3878,5290,1042154.877,-11416.5757,211,0.617653072,304.982605,291.7689514,97582.88281,0.001398313,128.9347382,-1.02366e-05,73.19018555,-0.506082058,-0.354085088,0.955352187,3010\n1431A,103.97275,30.72358333,20170601,55.87465181,3664,4884,798474.6861,122594.7246,516,1.094888687,153.6392517,290.1993408,95423.6875,0.001169071,148.2844543,-1.13367e-05,69.5111084,0.486231744,-0.98099947,0.781147718,3140\n1432A,104.176,30.6872,20170601,55.30532213,3670,4916,816913.8933,119948.8354,497,0.942406774,164.7892914,290.7298889,96039.65625,0.001094053,167.4013672,-1.2244e-05,69.15605927,0.247335628,-0.909370959,0.822873175,2798\n1433A,104.079,30.5706,20170601,54.24512535,3689,4901,809584.4984,105316.6191,479,1.07012248,169.3012695,290.6941528,96100.97656,0.001375646,167.7062378,-1.29388e-05,70.48048401,0.198754206,-1.051503181,0.832762837,2438\n1434A,104.1113889,30.63,20170601,52.46787709,3679,4906,811809.2746,112628.5247,495,1.026299715,165.946701,290.7294617,96160.41406,0.001252795,166.0556793,-1.25224e-05,69.84716797,0.249295771,-0.995561481,0.832397282,2741\n1437A,104.054,30.6578,20170601,56.91292135,3675,4897,806405.8262,115453.4992,499,1.089778543,161.3090515,290.5448914,95912.79688,0.001276924,160.3549805,-1.22889e-05,69.9834137,0.349319935,-1.032275558,0.814091206,2777\n1438A,103.613,31.0283,20170601,38.79661017,3616,4826,763364.3782,155918.6152,1007,0.334213346,137.5024261,285.9831238,87564.375,0.002728773,66.37595367,-2.21576e-06,80.87184906,0.225798294,-0.246401504,0.641732693,3854\n1439A,106.6856,26.6029,20170601,30.36070381,4324,5318,1096699.35,-335907.3823,1150,1.237574816,235.3930359,287.4142151,88227.30469,0.002067968,334.5128479,-1.10392e-05,82.99447632,-1.018587232,0.702902138,0.596409798,4079\n1440A,106.6971,26.5689,20170601,30.99571429,4329,5320,1098247.184,-339738.9765,1073,1.243344307,235.6721954,287.4920654,88413.75,0.002070751,335.5584106,-1.09028e-05,83.01126862,-1.026764393,0.70118469,0.593898594,2255\n1441A,106.6243,26.6266,20170601,29.28045326,4320,5308,1090645.092,-333828.8501,1278,1.250990152,235.1604767,287.1951599,87522.69531,0.002084943,336.0944519,-1.19831e-05,82.99046326,-1.026736617,0.7146945,0.60201323,3587\n1442A,106.7487,26.6343,20170601,36.45365169,4319,5328,1102153.731,-331543.7583,1126,1.211054683,235.1846008,287.3961487,88331.59375,0.002090871,330.0420227,-9.97721e-06,82.95019531,-0.994251072,0.691460907,0.60751617,4617\n1443A,106.6554,26.4364,20170601,30.33479532,4350,5313,1096189.034,-355632.0873,1128,1.292473793,236.6201019,287.552948,88284.88281,0.002157127,340.4060364,-1.14608e-05,83.25749969,-1.079247832,0.711134791,0.587897956,4398\n1444A,106.6948,26.5155,20170601,35.31601124,4338,5319,1098775.891,-345983.121,1093,1.261153102,236.0878448,287.561676,88480.24219,0.002084561,338.7220154,-1.11839e-05,83.0590744,-1.046602964,0.70365417,0.596750736,3109\n1445A,106.7105,26.6009,20170601,37.39915966,4324,5322,1099053.06,-335862.1243,1105,1.231004238,235.4505768,287.4734192,88457.39844,0.002065275,333.3855896,-1.06022e-05,82.98294067,-1.013881207,0.698152244,0.598706007,2731\n1446A,106.7164,26.5697,20170601,32.42655367,4329,5323,1100039.52,-339429.9137,1082,1.23895824,235.7267761,287.530365,88566.17969,0.002067527,334.7288818,-1.05491e-05,82.99799347,-1.023807526,0.697736084,0.597075224,2282\n1447A,106.6867,26.5495,20170601,26.4756447,4332,5318,1097545.325,-342114.4817,1096,1.251607895,235.7802124,287.4953918,88355.92188,0.002077359,337.0706482,-1.11982e-05,83.03549957,-1.034917235,0.703895271,0.599681735,2841\n1449A,102.743,25.0124,20170601,30.86350975,4578,4687,742285.0596,-557891.1583,1898,1.317375302,1.720041633,288.3932495,80864.21094,0.003044849,358.9023743,-2.74211e-05,71.48313904,0.039538663,1.316781759,0.288654119,2603\n1450A,102.821,24.8885,20170601,22.06388889,4598,4699,750894.3823,-571685.6833,1920,1.286846638,2.899976254,288.4659119,80669.92969,0.002776541,368.7088623,-2.876e-05,70.82524872,0.06510298,1.285198808,0.291824192,3193\n1451A,102.625,24.9624,20170601,26.83903134,4586,4668,731447.4317,-564583.435,2121,1.499572039,180.0342712,288.2841492,80133.99219,0.002936303,365.2866211,-2.92936e-05,70.66940308,-0.000864665,1.4995718,0.281233788,5777\n1452A,102.728,25.0836,20170601,21.87534626,4567,4684,740198.1485,-549732.7642,1901,1.296617389,1.919339299,287.9809265,80247.41406,0.003151022,355.6161194,-2.20678e-05,70.58847046,0.043425269,1.295889974,0.294220418,3214\n1453A,102.722,25.0405,20170601,33.50415512,4574,4684,740018.9827,-554785.3846,1899,1.326483846,1.658877015,288.2658997,80642.44531,0.00307915,358.1446838,-2.54506e-05,71.05016327,0.038398266,1.325927973,0.289167106,2120\n1454A,102.681,25.067,20170601,25.84722222,4569,4677,735856.711,-552014.5417,1934,1.3573066,1.588854909,287.9034424,79934.48438,0.003088265,358.0253906,-2.28983e-05,70.30989838,0.037632089,1.356784821,0.291880876,2781\n1455A,102.638,25.0359,20170601,31.47645429,4574,4670,732026.9839,-555948.9976,1911,1.434587717,0.958819926,287.8925476,79703.5625,0.003018526,361.4255981,-2.52326e-05,70.24674225,0.024012588,1.434386849,0.296678424,4403\n1456A,91.1319,29.6514,20170601,19.38243626,3836,2829,-349626.2845,-34524.66527,3656,0.307950467,182.5081177,278.9877319,60599.71094,0.001003054,349.0698242,-5.03294e-06,38.49600983,-0.01347574,0.307655483,0.08314231,1394\n1457A,91.1221,29.6747,20170601,15.42241379,3832,2828,-350402.4839,-31725.91307,3659,0.270927548,2.284201145,278.810791,60481.10938,0.001035743,341.0104675,-4.75675e-06,38.77491379,0.0107978,0.270712286,0.092499048,2179\n1458A,91.0874,29.6475,20170601,10.2880117,3836,2822,-353664.8254,-34828.00174,3649,0.261772275,13.31741142,279.1650696,60833.72266,0.00110792,338.9909668,-4.74075e-06,38.79095459,0.060296275,0.254733354,0.105149671,1514\n1459A,91.1774,29.6541,20170601,13.734375,3835,2836,-345503.2937,-34365.34415,3676,0.362885445,193.4119568,278.766449,60340.83203,0.000903132,357.5426636,-5.2657e-06,38.23548126,-0.084169112,0.352989227,0.088719495,1673\n1460A,90.9798,29.6588,20170601,31.98979592,3835,2805,-363330.7024,-33095.1173,3690,0.259432316,56.91983414,278.8786926,60728.98047,0.001382741,318.2589111,-4.05867e-06,39.96254349,0.217376187,0.141607627,0.085361913,2163\n1461A,91.0834,29.6292,20170601,11.04373178,3839,2821,-354112.7614,-36984.10805,3653,0.274957746,12.28662682,279.4502563,61081.3125,0.001104194,342.6440125,-4.87271e-06,38.59047318,0.058510013,0.268660277,0.086122155,956\n1462A,108.882,34.2749,20170601,66.98873239,3096,5669,1173021.442,594714.3148,399,0.271153122,193.2610321,286.6852722,94717.76563,0.001240007,89.31004333,-7.10064e-06,63.45855713,-0.062197357,0.263923287,0.610731244,2303\n1463A,108.993,34.2629,20170601,62.91193182,3098,5687,1182542.844,594613.5413,425,0.540483534,203.4666443,286.5937805,94704.72656,0.001267999,89.58302307,-7.17826e-06,63.32247162,-0.215222761,0.495783836,0.61308378,2384\n1464A,109.06,34.2572,20170601,67.61647727,3099,5698,1188264.314,594742.0833,451,0.710011542,204.9296875,286.343689,94362.47656,0.001287108,88.92196655,-7.11889e-06,63.5719223,-0.299265772,0.643860579,0.616715193,2745\n1465A,108.94,34.2324,20170601,66.77361111,3103,5678,1178613.539,590339.2893,415,0.75047195,185.9441071,286.4230957,95037.71875,0.001338344,86.33976746,-7.04371e-06,64.39261627,-0.077715322,0.746437192,0.608163774,2328\n1466A,108.954,34.2713,20170601,69.81284916,3097,5681,1179125.945,595146.6918,409,0.433108836,202.772583,286.6636353,94733.16406,0.001253752,89.80882263,-7.16216e-06,63.31423187,-0.167640671,0.399349302,0.609525681,1858\n1467A,108.883,34.2303,20170601,67.22881356,3103,5669,1173862.049,589406.4973,406,0.703688323,0.094875589,286.4391174,95156.85156,0.001337782,85.16716003,-6.98226e-06,64.55342865,0.001159314,0.70368737,0.621122956,2391\n1468A,108.935,34.3474,20170601,65.3767313,3084,5678,1176235.116,603996.575,378,0.489953578,326.440155,287.307373,95600.17969,0.001070402,102.1190338,-7.48617e-06,61.60705948,-0.270880848,-0.408262253,0.620920897,2532\n1469A,108.906,34.1546,20170601,63.16142857,3115,5673,1177079.998,580654.0435,434,1.231153131,2.677012682,286.0867615,95604.99219,0.001545431,87.11981201,-6.99461e-06,66.99512482,0.057500094,1.229809642,0.60175842,2900\n1470A,109.2,34.6575,20170601,67.91428571,3035,5720,1193064.872,644194.9663,385,0.998359978,329.9326172,288.1097107,96786.19531,0.000930122,133.8486176,-8.47837e-06,57.2674942,-0.500263512,-0.863978624,0.616701365,3677\n1471A,109.2186,34.3731,20170601,59.05270655,3080,5723,1199561.166,610490.6246,479,0.708416522,260.0042114,286.7976685,94360.4375,0.001053304,100.8179016,-7.43027e-06,61.01222229,-0.697658002,0.122992784,0.612815082,3830\n1472A,108.869,34.378,20170601,62.61024845,3080,5667,1170182.488,606859.4314,374,0.777870893,346.1106262,287.2488403,95835.875,0.001016792,104.8355255,-7.49368e-06,61.47875977,-0.186790884,-0.7551108,0.622148514,3171\n1473A,108.985,34.1978,20170601,65.46175637,3108,5686,1182983.797,586753.9869,472,1.085491776,185.1331635,286.140686,95049.19531,0.00140997,88.06926727,-7.08988e-06,65.34165192,-0.097117551,1.081138611,0.619029522,2847\n1474A,109.043,34.3274,20170601,65.58142857,3088,5695,1185632.622,602908.8462,386,0.398665041,269.3773499,287.0744934,94991.1875,0.001129164,98.62310028,-7.41653e-06,61.93347168,-0.398641318,0.004350647,0.626205444,2799\n1475A,103.712,36.0756,20170601,54.81601124,2808,4842,718389.2799,761062.0923,1556,1.00877285,259.8876038,282.5976563,81497.28906,0.000723558,232.3790588,-7.0757e-06,47.6957283,-0.993094504,0.177160829,0.312096477,1724\n1476A,103.631,36.1031,20170601,61.04073034,2804,4829,711435.2631,763788.8499,1562,0.928310513,268.746582,282.6821289,81375.45313,0.000688222,241.6933136,-7.33991e-06,47.07268906,-0.928087473,0.020348558,0.305758923,2044\n1477A,104.148,35.94,20170601,27.50283286,2830,4912,755766.044,747988.3951,1773,1.285517573,230.1035919,281.2746887,81500.70313,0.000994183,220.7520905,-7.0712e-06,57.92592621,-0.986234665,0.824558377,0.318494707,2671\n1478A,103.841,36.0725,20170601,48.85734463,2808,4863,729031.795,761638.4561,1537,1.236114621,248.9255981,282.8693237,82449.57813,0.000709841,234.7140503,-6.77053e-06,49.16866302,-1.153420448,0.444522858,0.318420291,1619\n1479A,103.831,36.0464,20170601,55.54131054,2813,4861,728492.9776,758417.7101,1589,1.181087255,249.4361877,282.3246155,81448.125,0.0007738,225.0000153,-6.69714e-06,49.72145462,-1.105815411,0.414896786,0.307305455,2402\n1480A,101.748,36.6428,20170601,57.3005618,2717,4528,552015.3765,816863.6317,2264,0.710649133,226.2095337,279.507843,75252.89844,0.000825722,215.906662,-4.84229e-06,47.60145187,-0.512988389,0.491797805,0.206411824,2217\n1482A,101.834,36.5819,20170601,64.51694915,2727,4541,559552.2452,809986.2106,2233,0.903442025,239.3544922,279.340332,74867.73438,0.000858076,240.4103241,-4.8393e-06,48.3513298,-0.777251005,0.460530549,0.217406556,2408\n1483A,101.524,36.6867,20170601,52.19736842,2710,4492,533365.5383,820935.9539,2424,0.454251558,194.5162811,278.0318604,73803.48438,0.001060768,185.4665527,-4.37961e-06,52.40709305,-0.11385712,0.439751089,0.199551359,3763\n1484A,105.9512,38.6016,20170601,32.96111111,2404,5200,868240.432,1084277.167,1329,0.716346323,143.5142212,281.2161255,82920.0,0.00044568,203.4988098,-5.87599e-06,40.41498184,0.425998718,-0.575914204,0.351496994,2585\n1488A,106.2328,38.4975,20170601,44.18994413,2420,5245,891915.4991,1074210.711,1108,0.731767595,121.852272,283.5935364,88452.24219,0.000320122,135.5515137,-5.42559e-06,39.16087341,0.621596158,-0.386137366,0.377271712,2324\n1489A,106.1358,38.5036,20170601,34.52222222,2420,5230,884162.6298,1074071.567,1113,0.9348827,124.910881,283.9379578,89122.9375,0.000340787,158.2210999,-5.58866e-06,39.63668823,0.766678691,-0.534985483,0.386075169,2369\n1490A,87.5801,43.8303,20170601,54.90373563,1567,2261,-540731.4845,1695138.952,816,0.606189966,7.47672987,282.2767029,90909.625,0.000442726,153.6481018,-1.03638e-05,48.61283875,0.078877479,0.60103631,0.261584401,2179\n1491A,87.6046,43.768,20170601,53.62608696,1577,2265,-539523.3284,1687393.315,919,0.507930756,6.016121864,281.3979187,89372.92969,0.000496278,160.2506409,-1.07761e-05,49.4164238,0.053234208,0.50513345,0.238862827,2289\n1492A,87.4754,43.9469,20170601,77.70943953,1549,2244,-547253.8339,1709963.211,595,0.758949459,28.55837822,283.7349243,93723.5,0.000339247,150.0768585,-9.79761e-06,47.19406509,0.362808943,0.666613758,0.234454781,2866\n1493A,87.5525,43.8711,20170601,61.29261364,1561,2256,-542360.4975,1700275.501,754,0.671163023,12.81330967,282.8711548,92034.125,0.000407183,151.4837494,-1.01446e-05,48.15284729,0.148842931,0.654450595,0.242967978,2071\n1494A,87.6432,43.831,20170601,57.57374631,1567,2271,-536135.2363,1694878.7,845,0.547886729,189.1998138,282.1436768,90821.0625,0.000453023,149.0643768,-1.04041e-05,48.50119781,-0.087592579,0.540839553,0.237886757,2404\n1496A,87.6444,43.962,20170601,64.43895349,1546,2271,-534847.5584,1710877.46,603,0.686324418,189.0024109,283.6722717,93380.15625,0.000354643,129.9361267,-9.48218e-06,46.73591995,-0.107390255,0.677870572,0.257363528,2046\n1508A,112.9433,27.8614,20170601,42.59331476,4122,6319,1651718.931,-101952.5419,60,0.917779863,354.5755005,291.0956726,100709.7031,0.002673088,239.433075,-1.76781e-05,72.40300751,-0.086843744,-0.913661897,0.7768085,1855\n1511A,112.9118,27.8403,20170601,48.11731844,4126,6314,1649302.492,-104928.0975,51,0.931414545,355.4562683,291.0872192,100744.2422,0.002671917,240.1859131,-1.74296e-05,72.51087189,-0.073869817,-0.928480625,0.787657201,3302\n1512A,112.8937,27.8728,20170601,45.97638889,4120,6311,1646960.369,-101463.2338,50,0.949528694,355.7221985,291.0793152,100752.4297,0.002659036,241.0134583,-1.72202e-05,72.54418182,-0.070912927,-0.946877003,0.786983848,2914\n1513A,112.9227,27.8159,20170601,45.07222222,4130,6316,1650816.787,-107573.9053,48,0.919741392,355.3554382,291.0926514,100734.8203,0.002681269,239.6596375,-1.76111e-05,72.49411774,-0.074557491,-0.91671443,0.779583097,2675\n1514A,112.9074,27.9119,20170601,47.09887006,4114,6313,1647371.706,-96699.16835,58,0.945307732,355.2565918,291.0732422,100739.2891,0.002657789,240.9077301,-1.72856e-05,72.48426819,-0.078255348,-0.942063034,0.785585403,4455\n1515A,113.135,27.8244,20170601,41.64623955,4128,6350,1669966.122,-103001.2096,47,0.791041613,349.5984192,291.2579346,100618.0156,0.002759503,225.3671722,-1.70918e-05,72.70252991,-0.142887458,-0.778029561,0.761198163,2493\n1518A,113.095,27.8867,20170601,42.7122905,4118,6343,1664979.423,-96459.087,65,0.825519085,349.2688599,291.1448364,100534.1484,0.002680005,229.6220856,-1.72086e-05,72.48356628,-0.153782904,-0.811068833,0.771825373,3373\n1519A,113.167,27.8667,20170601,38.5579096,4121,6355,1671962.405,-97554.73998,59,0.769379556,347.1192017,291.2568359,100611.8984,0.002775748,223.0041046,-1.66523e-05,72.72164917,-0.171577454,-0.750004053,0.748995423,3036\n1520A,113.143,27.8381,20170601,41.82670455,4126,6351,1670397.882,-101277.5424,45,0.787034869,349.0003052,291.2530518,100610.9297,0.002759207,224.9189453,-1.69864e-05,72.70095825,-0.150235936,-0.772562623,0.759830654,2095\n1524A,113.13,27.8528,20170601,43.01404494,4124,6349,1668896.64,-99794.76483,41,0.797493875,349.0153198,291.2219238,100579.5313,0.002730258,226.1065521,-1.70485e-05,72.64543915,-0.152027696,-0.782869101,0.761444569,2462\n1552A,106.805,26.3003,20170601,34.97844828,4372,5337,1112103.252,-369787.7437,1463,1.313749671,238.0185394,287.2139587,87357.03906,0.002269292,333.3141174,-9.25281e-06,83.5423584,-1.114327431,0.695853949,0.562892199,5662\n1559A,113.251,27.8336,20170601,33.70142857,4127,6368,1680324.98,-99957.54547,117,0.705615044,345.4394531,291.3537903,100703.7266,0.002938061,215.4237061,-1.60259e-05,73.02091217,-0.177451804,-0.682937384,0.743979037,5755\n1562A,113.0048,27.9153,20170601,42.26977401,4114,6329,1656158.618,-94667.55421,50,0.881071806,352.0388184,291.0776367,100592.6484,0.002660718,237.2675018,-1.77896e-05,72.21081543,-0.122107312,-0.872569382,0.77411443,3609\n1564A,112.4876,27.9164,20170601,41.67039106,4113,6246,1609072.307,-103133.464,164,0.976414919,356.8845825,290.6444702,100008.2578,0.002232114,254.2412262,-1.53237e-05,73.86838531,-0.05315356,-0.974967062,0.801579356,5089\n1585A,109.8756,40.6532,20170601,45.81005587,2076,5828,1139586.419,1372424.834,1057,0.681261659,341.8218689,281.5418091,88966.09375,0.000416127,180.8938293,-6.15724e-06,39.44210434,-0.212588698,-0.647243023,0.423594713,2130\n1586A,109.8104,40.6575,20170601,40.33005618,2075,5818,1134550.704,1372189.5,1066,0.637353778,345.0492249,281.608429,89070.15625,0.000407663,179.7046356,-6.04282e-06,39.34965134,-0.164482549,-0.615764022,0.419467777,1478\n1587A,110.0067,40.5905,20170601,45.84818942,2086,5849,1150716.727,1366384.003,1033,0.6955446,339.8997803,281.8370972,89376.53906,0.000438684,185.1907196,-6.85043e-06,39.60290527,-0.239087284,-0.653161228,0.407932788,1303\n1588A,109.8538,40.6821,20170601,44.97777778,2071,5825,1137397.585,1375661.501,1071,0.692964673,341.2880554,281.2381287,88534.15625,0.000416333,179.1918488,-5.82549e-06,39.4914856,-0.222364739,-0.656318486,0.422143996,2344\n1589A,109.8654,40.6288,20170601,45.84322034,2079,5826,1139260.093,1369360.745,1055,0.656205893,343.5179443,281.7881775,89330.53125,0.000412402,181.5717621,-6.33687e-06,39.37115097,-0.186228156,-0.62922591,0.411966741,2013\n1590A,110.0377,40.5546,20170601,42.96829971,2091,5854,1153743.546,1362414.768,1008,0.507119,345.7775879,281.8840637,89369.34375,0.000454378,185.3095093,-7.00448e-06,39.69287491,-0.124634251,-0.49156484,0.418643057,1884\n1591A,110.0023,39.8129,20170601,27.22957746,2210,5848,1164815.702,1272533.098,1453,1.374191999,66.17224121,280.4753723,85846.57813,0.000836773,271.5151672,-1.09041e-05,45.48843765,1.257042527,0.555200517,0.398181736,1515\n1592A,109.9486,39.8261,20170601,28.75915493,2208,5840,1160434.573,1273489.105,1465,1.359291077,64.52292633,280.5108032,85925.45313,0.000811057,269.8643188,-1.06983e-05,45.31322479,1.227090716,0.584739745,0.395643771,2196\n1593A,109.7736,39.5986,20170601,19.47191011,2244,5812,1151108.526,1244003.007,1301,0.902215958,67.47734833,280.8291626,86628.10156,0.000764764,247.8950043,-9.23819e-06,46.57600403,0.833390296,0.345621586,0.394631475,2924\n1594A,109.8119,39.5989,20170601,28.25633803,2244,5818,1154064.629,1244488.435,1287,0.929235041,68.38034058,280.9314575,86874.60938,0.000770789,250.335022,-9.62404e-06,46.60416794,0.863851428,0.342401057,0.382480323,2382\n1595A,109.9734,39.7884,20170601,24.92339833,2214,5844,1163042.863,1269237.174,1436,1.301764965,67.7186203,280.4292603,85844.15625,0.000831661,270.5464478,-1.06163e-05,45.66374969,1.204548955,0.493613154,0.396506429,2173\n1596A,122.2414,40.6592,20170601,31.50138504,2075,7807,2067961.719,1575242.607,1,0.813817263,182.8146057,282.6120605,101509.6641,0.000811613,336.5118713,-4.39507e-05,53.1151886,-0.039959826,0.812835574,0.604075789,1852\n1597A,122.2703,40.7094,20170601,32.92200557,2067,7811,2068419.17,1581747.624,1,0.813787699,184.0701294,282.5514221,101529.9844,0.000818763,316.4767151,-3.50889e-05,52.75950623,-0.057758771,0.811735392,0.601274729,1474\n1598A,122.215,40.6511,20170601,28.33286908,2076,7802,2066279.669,1573735.717,-5,0.805618107,181.1025543,282.6505127,101502.7969,0.000809575,352.1453552,-4.9582e-05,53.27906418,-0.015500654,0.805468976,0.609398842,2389\n1600A,124.3303,40.0625,20170601,23.85451977,2170,8141,2243394.662,1551222.956,8,0.52090621,356.5179749,280.8227539,101060.0938,0.00106907,245.6591339,-2.0069e-05,62.83757019,-0.031684052,-0.519941688,0.578290164,2695\n1601A,124.4256,40.1503,20170601,21.48735955,2156,8156,2247304.215,1563639.559,6,0.410326779,337.5914917,280.6713562,100941.0625,0.001084722,234.662262,-1.28932e-05,63.44303894,-0.156450614,-0.379330009,0.57869184,2537\n1602A,124.3933,40.1461,20170601,24.14164306,2157,8151,2245062.504,1562411.417,25,0.415040612,343.3535156,280.6315613,100868.7813,0.001084661,233.8926392,-1.35003e-05,63.41411209,-0.118928313,-0.397636473,0.574115992,2642\n1603A,124.3678,40.1194,20170601,22.3557423,2161,8147,2244132.6,1558715.16,17,0.443680257,347.8162537,280.6568604,100896.5703,0.001084017,236.9409332,-1.54801e-05,63.26110077,-0.093675032,-0.433678627,0.57767117,3222\n1604A,122.0247,41.1556,20170601,32.5377095,1995,7772,2035459.992,1629065.605,4,0.71797365,24.53059006,281.7715454,101648.7656,0.000896827,296.3873901,-1.15544e-05,51.16648865,0.298079312,0.65317291,0.609920204,3231\n1605A,122.0539,41.0903,20170601,31.2005571,2006,7777,2039772.967,1621991.373,3,0.710598469,22.0561924,281.8742981,101726.3516,0.000900518,298.1155701,-1.40382e-05,51.4271698,0.266833514,0.658597052,0.59926194,2803\n1606A,121.835,41.1042,20170601,29.90948276,2003,7742,2023224.622,1619100.758,2,0.677488744,24.92010117,282.0646057,101638.8203,0.000876145,302.4534607,-1.18073e-05,51.40505981,0.28545469,0.614415646,0.594777703,4209\n1607A,120.9092,40.7136,20170601,38.91316527,2066,7593,1967516.823,1554288.254,35,1.005424857,59.02132416,283.1208191,101204.3516,0.000581291,414.2618713,-7.15388e-05,54.26570892,0.861994267,0.517537475,0.622131467,2945\n1608A,120.8392,40.7514,20170601,38.0140056,2060,7582,1961124.198,1557346.662,16,0.899543226,61.09931183,282.8033752,100634.7656,0.000599508,386.2988892,-5.85177e-05,53.87037659,0.787499309,0.434767574,0.612552047,1889\n1609A,120.8478,40.715,20170601,32.58615819,2066,7584,1962917.892,1553225.327,24,0.922271192,60.66659927,282.9402771,100838.9297,0.000596107,400.8572083,-6.53703e-05,54.12990952,0.804007053,0.451837182,0.6214481,3128\n1610A,120.8631,40.7736,20170601,32.87222222,2056,7586,1962190.546,1560442.15,22,0.926190615,60.43153,282.8128052,100720.5547,0.000592419,383.5965271,-5.67737e-05,53.74096298,0.805555463,0.457066149,0.616130948,2312\n1611A,118.5819,24.9117,20170601,24.49861111,4594,7221,2244153.689,-328287.9348,13,1.491243005,321.5588074,293.5477905,100975.3047,0.002172832,398.0970459,-3.43882e-05,78.59575653,-0.92720747,-1.167943478,0.393044591,2583\n1612A,118.5972,24.8978,20170601,26.7605042,4596,7224,2245966.647,-329510.7348,13,1.590343833,322.2613525,293.5991516,101044.8438,0.002154743,408.4360352,-3.76484e-05,78.73104858,-0.973478734,-1.257590055,0.413902402,2330\n1613A,118.6663,24.9424,20170601,26.91374269,4589,7235,2251176.99,-322884.4372,5,1.672789454,322.2612305,293.5256653,100951.1875,0.002228093,415.8861389,-2.98341e-05,79.07250977,-1.023948312,-1.322782874,0.38532877,2142\n1614A,118.6108,24.9617,20170601,25.4,4586,7226,2245464.832,-321970.9439,218,1.455203533,320.4249573,293.5049133,100948.1484,0.002223735,390.7698669,-2.41708e-05,78.69562531,-0.927174568,-1.121590257,0.402218908,6910\n1616A,117.6789,36.2289,20170601,49.29411765,2783,7077,1851721.157,962403.7776,214,0.689459801,227.0018158,285.3067017,99096.44531,0.001008372,196.602356,-8.30647e-06,63.03105927,-0.50424248,0.470206648,0.764710188,2505\n1618A,118.3418,35.0573,20170601,39.93871866,2971,7183,1938178.593,837382.3357,69,0.693356812,241.8581238,286.4443359,100889.4766,0.00117236,208.6896057,-1.25053e-05,63.09588242,-0.611379445,0.327045649,0.750219464,1984\n1619A,118.2939,35.0622,20170601,41.16340782,2970,7175,1934137.156,837013.5356,69,0.66381824,241.6122437,286.4294128,100814.9297,0.001178699,207.7281342,-1.27008e-05,62.91082382,-0.583984137,0.315621823,0.750642538,1981\n1620A,118.2764,34.9817,20170601,46.4432133,2983,7172,1934992.172,827221.8775,67,0.695376277,241.1823883,286.5305481,100856.2891,0.001240561,209.2254639,-1.31028e-05,62.69041824,-0.609249353,0.335206538,0.7568174,2636\n1621A,118.4023,35.0896,20170601,47.18435754,2966,7192,1942186.841,842367.2284,66,0.701261699,242.7005157,286.369873,100884.3359,0.001143498,209.2429352,-1.21448e-05,63.32729721,-0.6231457,0.321647912,0.751848996,2454\n1622A,116.3061,37.4664,20170601,54.98997135,2585,6857,1709166.373,1083860.779,22,1.134077907,212.0407715,286.4750061,101410.1172,0.000888311,199.1997528,-1.10325e-05,50.6620903,-0.60163784,0.961334705,0.859624803,2239\n1624A,116.3189,37.4489,20170601,57.425,2588,6859,1710634.495,1082008.203,23,1.123700738,212.2004547,286.4721985,101400.2031,0.00089896,199.4121552,-1.10914e-05,50.73317337,-0.5987854,0.950873017,0.860723138,2345\n1625A,115.9848,36.4372,20170601,59.31179775,2750,6806,1710247.662,956308.2363,34,0.990914941,220.6962585,287.0934448,101257.5391,0.000993995,200.2789154,-1.18998e-05,53.02191925,-0.646109343,0.751302302,0.851911545,2943\n1627A,115.9835,36.4796,20170601,57.26740947,2743,6805,1709054.559,961306.2282,33,0.990226269,220.3613434,287.0750427,101268.9453,0.001001082,200.6942902,-1.15546e-05,52.84360886,-0.641260743,0.754541337,0.859417915,2719\n1628A,118.0062,37.3803,20170601,57.56779661,2599,7129,1845566.532,1104423.454,12,0.803805292,224.1965942,285.9595032,101618.4063,0.00080481,192.4468994,-1.06852e-05,52.11980438,-0.560337603,0.576302648,0.791954517,2410\n1629A,118.0018,37.3617,20170601,54.07541899,2602,7128,1845743.867,1102144.139,12,0.797798097,224.3066864,285.9794922,101616.7813,0.000803164,191.8181,-1.08153e-05,52.10063553,-0.557247877,0.570926011,0.790579975,2740\n1630A,117.9776,37.393,20170601,53.84180791,2597,7124,1842956.917,1105386.618,10,0.798869312,223.704071,285.9798584,101615.7422,0.000819592,192.3296661,-1.05893e-05,52.04418182,-0.551952839,0.57752943,0.794043303,3406\n1631A,118.0482,36.8088,20170601,53.3245614,2691,7136,1864991.085,1037766.87,41,1.040923715,190.2612,285.9635315,100772.5625,0.000912619,190.433548,-8.83044e-06,56.51491547,-0.185420588,1.024276018,0.780364931,2568\n1632A,118.0448,36.838,20170601,53.40947075,2686,7135,1863898.159,1041146.352,31,1.010884523,192.8911743,286.0388489,100918.625,0.000872613,189.6843262,-8.88814e-06,55.88364029,-0.225521713,0.985407293,0.780150771,3026\n1633A,117.8477,36.497,20170601,53.86827195,2741,7104,1857771.496,997198.9788,210,0.918748319,191.1878204,284.4354553,97179.71094,0.001116327,205.0503235,-8.73227e-06,63.06698227,-0.178255662,0.90128988,0.753453732,3443\n1634A,117.9544,36.6377,20170601,50.94507042,2718,7121,1862341.959,1015809.776,97,1.104663849,184.7385712,285.4519958,99770.29688,0.001072533,199.4207458,-8.6885e-06,59.95675278,-0.091252215,1.100888371,0.766484499,2777\n1635A,118.3092,36.8198,20170601,58.88951841,2689,7177,1885401.582,1044044.809,65,0.975193918,189.9206696,285.8804321,100598.2109,0.000938738,199.3250732,-8.44907e-06,56.64081955,-0.168005884,0.960612953,0.760534585,2790\n1636A,117.8512,36.8041,20170601,56.51267606,2691,7104,1849471.486,1033488.843,50,1.001184344,193.5328674,285.7624207,100466.4766,0.000942024,184.0343933,-8.87756e-06,56.74019241,-0.234273672,0.97338891,0.784299135,2390\n1637A,117.5564,34.864,20170601,51.03221289,3002,7057,1879442.789,799424.9154,73,1.006241918,248.7110291,286.8347168,100420.9766,0.001372134,207.3903198,-1.34282e-05,63.67664719,-0.937564194,0.365371346,0.782929778,2015\n1638A,117.2852,34.7837,20170601,60.64944134,3015,7014,1859415.879,784826.8558,70,1.242194533,242.221283,287.3563232,100902.8359,0.001318938,210.5931702,-2.32299e-05,61.3789444,-1.099018335,0.578969836,0.798897803,3443\n1639A,117.5852,34.7745,20170601,49.32633053,3016,7062,1884260.578,789460.6903,59,0.980308354,250.0236511,287.0166931,100924.2344,0.001424066,205.4583435,-1.4544e-05,62.94879913,-0.921314776,0.334938079,0.775545597,3033\n1640A,117.732,34.5667,20170601,62.16432584,3049,7085,1902036.32,767888.5055,26,0.918803453,247.8565063,287.0748291,101215.9922,0.001579051,205.4299927,-1.08905e-05,61.92969894,-0.851022899,0.34635222,0.780947626,2514\n1641A,117.4518,35.0992,20170601,49.70762712,2964,7040,1864448.603,825083.3174,168,1.152058601,240.746933,286.5387268,99600.75781,0.001163998,209.1637573,-1.16866e-05,64.45832825,-1.005118847,0.563005388,0.779389083,3462\n1642A,121.2514,37.5639,20170601,29.87078652,2570,7648,2094184.019,1191090.863,5,0.763974726,28.81622696,284.8908081,101156.7578,0.000922345,394.3131409,-4.51789e-05,63.93867493,0.368227243,0.669377387,0.61305207,2518\n1644A,121.3181,37.5436,20170601,26.89346591,2573,7659,2100029.809,1190136.475,19,0.77137351,31.06195641,284.9713135,101289.2578,0.000901973,399.734436,-4.88569e-05,64.1164856,0.397990972,0.660772502,0.610537529,2453\n1646A,121.2611,37.4967,20170601,30.04441261,2581,7650,2097094.775,1183425.696,10,0.782544911,28.9070816,284.8276672,101138.5469,0.000936166,363.4239807,-3.54023e-05,64.66517639,0.378264666,0.685049176,0.612672925,2328\n1648A,119.12,36.7019,20170601,46.91504178,2708,7307,1953158.606,1046001.212,31,0.855927348,200.0806122,286.0301208,101318.5313,0.000787754,243.0398712,-1.1805e-05,58.25310898,-0.29386735,0.80389899,0.733187616,2308\n1650A,119.1425,36.7008,20170601,47.30812325,2708,7311,1954976.224,1046319.314,30,0.849948883,200.3027039,285.9971313,101320.0703,0.000794282,243.0031586,-1.1674e-05,58.43498993,-0.294906765,0.797146857,0.727613628,2469\n1652A,119.1939,36.7731,20170601,44.57843137,2696,7319,1956917.441,1055844.419,15,0.882698596,205.7969971,286.010437,101524.9688,0.000825922,246.460434,-1.36649e-05,58.17367554,-0.38412559,0.794735372,0.729832768,2927\n1653A,116.6305,35.428,20170601,49.96927374,2912,6909,1788699.122,848541.891,38,1.003880501,224.9829407,287.5328369,101243.1563,0.000872848,189.3755798,-1.3267e-05,57.11571121,-0.70962292,0.710078478,0.837061763,2815\n1654A,116.5856,35.4144,20170601,52.05196629,2914,6902,1785404.351,846121.2426,40,0.990174472,224.2931976,287.5345154,101232.5391,0.000872542,189.5454254,-1.36452e-05,57.07492828,-0.691452742,0.708758473,0.846585035,2235\n1655A,116.5546,35.4039,20170601,45.83753501,2915,6897,1783157.681,844319.8292,39,0.98013097,223.844635,287.5210876,101212.8984,0.000871087,189.5303802,-1.37445e-05,57.03695679,-0.678925931,0.706906199,0.83983016,2937\n1656A,117.1436,36.1942,20170601,50.27793296,2789,6991,1809704.741,948337.2128,142,0.720976472,245.2601013,285.5614319,98912.79688,0.001023079,167.3216705,-9.14897e-06,62.70920181,-0.654792905,0.301750451,0.805314422,2253\n1657A,117.0881,36.1942,20170601,48.14542936,2789,6982,1805245.714,947316.2891,166,0.767899811,245.3131866,285.5733032,98834.11719,0.001015358,168.2943726,-9.04765e-06,62.26632309,-0.697706282,0.320742965,0.800968051,2720\n1658A,117.1081,36.1758,20170601,49.33147632,2792,6985,1807349.704,945512.1025,137,0.754473269,247.5123291,285.6602478,99097.375,0.001000177,167.3327789,-9.08167e-06,62.27106094,-0.69709456,0.288598508,0.806031823,2454\n1659A,119.4641,35.4178,20170601,41.96218487,2913,7362,2018749.783,902246.3748,15,0.328011721,229.0926514,286.4263306,101229.4531,0.000835942,328.4160461,-5.12127e-05,66.17008209,-0.247895807,0.21480073,0.68579483,2297\n1660A,119.5198,35.4234,20170601,41.30501393,2912,7371,2023083.251,904047.8419,29,0.415533125,228.1508789,286.5542908,101158.75,0.00082856,347.9267578,-5.97478e-05,65.79637909,-0.309525549,0.277239442,0.689523339,2671\n1661A,119.54,35.3962,20170601,42.57464789,2917,7374,2025527.588,901278.7395,8,0.455493599,230.3441315,286.6143799,101210.8516,0.000822518,359.7850037,-6.46903e-05,65.52081299,-0.35067302,0.29069373,0.682033181,2252\n1662A,122.1206,37.4294,20170601,27.61864407,2591,7787,2166234.705,1194199.033,49,0.803479731,62.70717239,285.1461182,101083.7813,0.000853198,471.1765137,-6.81902e-05,66.57131958,0.714020133,0.368449271,0.591804385,3925\n1665A,118.5019,37.4658,20170601,50.71587744,2586,7208,1882119.232,1123918.835,5,0.967041969,225.3577423,285.8274536,101685.8594,0.000737644,213.9183502,-1.76364e-05,53.44158936,-0.688042283,0.679535091,0.759425759,1888\n1666A,118.6672,37.4314,20170601,46.0,2591,7235,1896097.456,1123039.327,3,1.088632822,225.6043396,285.9559326,101712.8984,0.000692601,246.7866974,-3.30833e-05,54.03356934,-0.777838171,0.76163584,0.762271285,2687\n1667A,118.5857,37.4442,20170601,50.74328358,2589,7222,1889324.677,1122979.022,3,1.018675447,225.4268494,285.8803406,101704.1953,0.000712919,230.8400879,-2.55836e-05,53.74921417,-0.725641906,0.714942992,0.759936035,2616\n1669A,113.586606,24.769519,20170601,36.18194444,4617,6422,1778356.609,-446737.7104,76,0.164397284,326.3635864,293.2125244,99861.25,0.002506563,161.2261047,-1.04936e-05,75.91668701,-0.091073401,-0.136865273,0.564152837,3361\n1670A,113.5593889,24.81119444,20170601,36.51396648,4610,6417,1774872.706,-442465.1156,83,0.119470909,359.6052246,293.1229858,99516.77344,0.002608585,153.9846191,-1.02474e-05,75.82808685,-0.000834516,-0.119467996,0.555465877,5077\n1671A,113.598061,24.795928,20170601,31.37429379,4613,6424,1778861.143,-443511.2655,86,0.158265471,316.9199219,293.2704773,99853.49219,0.002434323,161.2541962,-1.04215e-05,75.90643311,-0.108106621,-0.11558944,0.551126122,4904\n1672A,113.6734722,24.77908333,20170601,34.24229692,4615,6436,1786357.567,-444068.7309,109,0.293609947,292.8977661,293.0881042,99527.21875,0.002214485,172.4920959,-1.06398e-05,76.00717163,-0.270480275,-0.114224441,0.543126583,5945\n1673A,113.5970833,24.68636111,20170601,38.7745098,4630,6424,1781167.704,-456052.303,73,0.2482678,321.5082397,293.0586548,99833.8125,0.002538019,169.159668,-1.0991e-05,76.30568695,-0.154536545,-0.194307387,0.56836319,4352\n1674A,116.6794,23.3667,20170601,24.04929577,4841,6917,2105426.719,-544986.0802,11,1.956584573,282.5606689,294.9193115,101028.1328,0.002088661,339.1417236,-5.81948e-05,80.44031525,-1.909778714,-0.425403595,0.397007704,2273\n1675A,116.7244,23.3633,20170601,19.99022346,4842,6924,2109811.824,-544404.5089,8,2.15453577,283.184082,294.9730835,101148.1875,0.00205156,354.6831665,-6.70754e-05,80.52487946,-2.097773314,-0.491295993,0.416325361,2540\n1676A,116.7258,23.2775,20170601,21.45567867,4856,6924,2112121.305,-554053.7485,18,2.458545923,283.6779175,295.0837708,101214.3203,0.002042381,387.1519165,-8.64682e-05,80.65623474,-2.38885355,-0.58122921,0.40844658,2658\n1677A,116.7519,23.4714,20170601,30.35614525,4825,6928,2109693.098,-531613.8745,6,1.73174572,282.6190796,294.8141785,101162.0938,0.002144465,322.5917053,-4.62446e-05,80.42146301,-1.689933777,-0.378242075,0.394721866,2589\n1678A,116.6092,23.2539,20170601,24.50423729,4859,6905,2101564.77,-559215.9042,27,2.059513807,282.8687744,294.9584656,101095.2734,0.002129409,356.4177246,-5.92966e-05,80.64022827,-2.007808685,-0.458586454,0.412594229,3220\n1679A,116.4019,23.2536,20170601,29.83704735,4860,6872,2081733.081,-563662.5741,6,1.18530345,281.2310791,294.513916,100616.0781,0.002322017,298.2737732,-2.39391e-05,80.19814301,-1.162616491,-0.230796665,0.414222956,3275\n1680A,110.3539,21.2706,20170601,25.63165266,5177,5905,1534712.054,-899260.9562,20,1.636835337,259.013092,295.7459412,100946.1172,0.003391973,305.9963379,-1.83328e-05,81.19696808,-1.606820703,0.312020898,0.465937406,3658\n1684A,110.3316,21.2679,20170601,25.9859944,5177,5901,1532549.208,-899914.3795,30,1.630625367,259.1130371,295.7373657,100906.1563,0.003400438,302.6914978,-1.81729e-05,81.16773987,-1.601264477,0.308044285,0.46582824,3771\n1685A,110.4558,21.2567,20170601,25.92837079,5179,5921,1545062.979,-899235.8645,6,1.857905626,258.0644226,295.9324951,101128.1875,0.003109846,320.9769592,-1.92166e-05,81.33553314,-1.817723632,0.384310037,0.460234612,3938\n1686A,111.0286,21.4689,20170601,20.53975535,5145,6013,1597876.796,-866079.9479,10,2.114904881,261.5062256,296.0270996,101157.7344,0.002491188,339.5609741,-3.8719e-05,80.32311249,-2.091695547,0.312462777,0.447047234,4687\n1687A,110.9294,21.6533,20170601,25.79741379,5116,5997,1584662.127,-846822.8131,25,1.499594092,257.2289429,295.6622925,100974.1484,0.003086019,263.2003784,-1.80007e-05,80.44173431,-1.462482691,0.331552088,0.464969575,3127\n1688A,110.9067,21.6669,20170601,30.53888889,5113,5993,1582172.246,-845648.9609,18,1.438597679,256.0663147,295.6444397,100975.0938,0.003137077,258.7303162,-1.74419e-05,80.34757233,-1.396253467,0.346467406,0.46733588,3044\n1689A,110.8592,21.6828,20170601,29.20142857,5111,5985,1577195.653,-844612.331,16,1.385302186,254.2406921,295.6589355,101002.3594,0.003173307,258.4579773,-1.73949e-05,80.11118317,-1.333215833,0.376294553,0.473231673,4321\n1690A,116.1278,24.3289,20170601,23.67318436,4687,6828,2028900.049,-447698.4233,113,0.257462442,284.8291931,294.0529785,99295.8125,0.001944559,188.3181458,-1.22597e-05,73.48175812,-0.248890728,-0.065881118,0.459909528,4205\n1691A,116.0797,24.2719,20170601,25.39915966,4697,6821,2025761.598,-455159.1549,86,0.276028544,279.0545654,293.9372253,98807.10938,0.001931621,195.1190643,-1.26219e-05,72.89041138,-0.272591144,-0.043426152,0.451126069,3202\n1692A,116.1248,24.2654,20170601,28.63611111,4698,6828,2030189.843,-454965.8425,100,0.282169163,269.8446045,293.9444885,98899.23438,0.001918752,188.7090302,-1.22029e-05,73.30332947,-0.28216809,0.000778423,0.460862756,3725\n1696A,114.6778,23.7569,20170601,27.04225352,4779,6596,1904794.086,-541658.8868,55,0.586523652,328.3630066,293.8779907,99595.33594,0.002593908,228.8796234,-3.0584e-05,76.98720551,-0.30769074,-0.499335945,0.47852692,4106\n1697A,114.6944,23.7586,20170601,29.19382022,4779,6599,1906340.171,-541143.9331,44,0.585864961,327.2789001,293.8950195,99774.74219,0.002589757,229.3222809,-3.0059e-05,76.90437317,-0.316726774,-0.492871106,0.48905459,2415\n1698A,114.6892,23.7233,20170601,26.02240896,4784,6598,1906657.589,-545252.5687,41,0.588151395,325.039978,293.8720093,99512.89063,0.002575225,228.3772736,-2.95643e-05,76.69662476,-0.337049514,-0.481995523,0.480994403,3684\n1699A,111.9786,21.8586,20170601,30.71428571,5083,6165,1683977.545,-806139.3198,7,1.113238335,283.3474731,295.2257996,100886.5938,0.003165407,275.5071106,-2.15077e-05,79.97473907,-1.083181143,-0.256940007,0.481696308,2688\n1700A,111.9508,21.8536,20170601,31.69088319,5084,6160,1681346.256,-807180.964,5,1.098488212,283.7192383,295.1897583,100760.6328,0.003157079,273.6459961,-2.29671e-05,79.90969849,-1.067161798,-0.260464817,0.473783463,3536\n1701A,111.9494,21.865,20170601,26.47058824,5082,6160,1680984.09,-805915.3515,7,1.071486354,284.2114258,295.1596985,100740.5781,0.003178635,269.3141479,-2.20186e-05,79.99268341,-1.038709164,-0.262994945,0.478349328,2977\n1702A,113.0425,23.6936,20170601,32.96374622,4789,6335,1749702.687,-579268.56,13,0.692171037,314.6259155,294.2069092,100369.0625,0.003248555,205.5150757,-1.60127e-05,75.4809494,-0.492657781,-0.486198574,0.563162804,2971\n1703A,113.0208,23.7106,20170601,33.74147727,4786,6331,1747262.832,-577718.6276,13,0.679115951,314.8795776,294.085083,100132.6953,0.003314191,203.4927063,-1.59598e-05,75.82136536,-0.481249064,-0.479163617,0.576182544,2985\n1705A,116.6339,23.6714,20170601,29.08888889,4793,6909,2093378.022,-511547.168,17,0.72311306,272.6368408,294.2747498,101239.7188,0.002698529,203.0926514,-1.7308e-05,81.17048645,-0.722348988,-0.033232827,0.430449426,2247\n1706A,116.6447,23.6706,20170601,26.14225352,4793,6911,2094426.362,-511407.434,18,0.73642844,273.4875793,294.2312317,101088.9766,0.002700813,204.9089661,-1.76273e-05,81.18883514,-0.735066712,-0.044763103,0.412502825,2242\n1708A,116.3697,23.5353,20170601,30.43258427,4814,6867,2071619.981,-532528.3935,8,0.602673233,262.4718018,294.2104187,100526.625,0.002467811,201.5692596,-1.58238e-05,79.18592834,-0.597475111,0.078984156,0.426376343,1827\n1709A,116.3242,23.5486,20170601,32.28,4812,6860,2066947.195,-531983.3618,6,0.560389459,259.8047485,294.1719666,100519.0156,0.002483285,190.9488068,-1.40494e-05,79.04416656,-0.551536977,0.099213406,0.436569273,2131\n1710A,116.3594,23.5739,20170601,28.48587571,4808,6865,2069673.629,-528382.5837,31,0.57477802,259.56604,294.0877686,100362.9063,0.00251438,191.7503662,-1.44238e-05,79.42962646,-0.565269351,0.104116783,0.442840546,2550\n1711A,116.4094,23.5292,20170601,32.23882682,4815,6873,2075560.155,-532379.95,5,0.638857126,264.2199707,294.2381592,100533.2813,0.002460144,210.3935699,-1.73349e-05,79.34617615,-0.635606289,0.064366683,0.452055335,3204\n1712A,112.0392,22.9169,20170601,32.90555556,4913,6174,1668906.96,-685097.1764,98,0.864083827,257.4291077,293.9777222,98439.94531,0.003149707,207.1984253,-1.13128e-05,78.8657074,-0.843362033,0.188099161,0.542743862,4141\n1713A,112.0369,22.9394,20170601,34.66527778,4910,6174,1668235.942,-682578.3419,84,0.861535609,258.6884766,293.9867859,98492.67969,0.003142678,207.4624939,-1.14652e-05,78.7071228,-0.844793677,0.169018582,0.54842627,3794\n1714A,112.0539,22.9539,20170601,31.77562327,4907,6177,1669594.799,-680641.0578,93,0.844846368,260.4356995,294.0514221,98688.71875,0.003123252,207.6355591,-1.16317e-05,78.41332245,-0.833096981,0.140409529,0.547084212,3633\n1715A,102.5778,24.3694,20170601,17.84818942,4681,4660,732243.8087,-633716.8712,1683,1.344697118,0.650136769,288.7161255,81393.97656,0.002282492,265.4284363,-1.11814e-05,71.266922,0.015253415,1.344610572,0.284979969,4102\n1718A,115.42277,35.248889,20170601,58.11235955,2940,6716,1694779.584,805984.7651,52,0.824534595,221.7895813,287.816803,101052.4141,0.000894984,199.6607361,-1.06523e-05,56.91238022,-0.549454033,0.614782512,0.85853982,2606\n1719A,115.474722,35.2375,20170601,57.86516854,2942,6724,1699312.921,805535.9362,54,0.831949711,222.1751099,287.7970276,101062.6094,0.000913777,198.8802338,-1.04138e-05,56.93972778,-0.558556497,0.616567075,0.870670557,2481\n1720A,115.455,35.27,20170601,62.4789916,2937,6721,1696888.385,809036.3481,52,0.829551816,221.8765564,287.800293,101053.0,0.000899515,199.1878052,-1.06659e-05,56.82141876,-0.553735673,0.617683649,0.8643592,2394\n1721A,113.3819,40.1097,20170601,39.15384615,2163,6389,1417699.178,1352644.265,1061,0.856366098,94.81126404,280.1578979,88586.0625,0.000814735,169.4886322,-4.989e-06,45.98936081,0.853352129,-0.071784958,0.446172684,1500\n1723A,113.2994,40.0758,20170601,36.50283286,2168,6376,1412176.251,1347391.396,1044,1.037079215,92.7870636,280.2149658,88793.95313,0.000879601,169.8482971,-5.01817e-06,46.33763123,1.035854936,-0.050377745,0.460584641,1695\n1724A,113.3444,40.0917,20170601,36.00139665,2165,6383,1415248.415,1349945.409,1063,0.945655406,94.06076813,280.2436523,88790.20313,0.000840312,169.8782806,-4.99748e-06,46.15485001,0.943284571,-0.066920348,0.446914136,2456\n1725A,113.2661,40.1269,20170601,42.12784091,2160,6371,1408483.638,1353041.464,1088,1.077930689,98.62270355,279.7328186,88122.97656,0.000914728,174.4394226,-4.89987e-06,46.71366119,1.065755129,-0.161556855,0.440841585,2310\n1726A,113.2711,40.0844,20170601,37.62215909,2167,6371,1409823.557,1348016.301,1059,1.117697477,94.34470367,279.9786072,88437.00781,0.000913198,171.1439209,-4.99299e-06,46.54786682,1.114489675,-0.084618978,0.444447666,1961\n1727A,113.1097,36.1542,20170601,67.22486034,2795,6346,1485084.616,875952.9463,943,0.964887202,186.347641,282.2278442,90274.5,0.000935444,180.4326019,-5.5988e-06,61.57829666,-0.106675446,0.958972156,0.591946423,2641\n1728A,113.0972,36.1939,20170601,67.90720222,2789,6344,1483190.84,880489.7113,929,0.92394352,186.3601074,282.2337036,90377.16406,0.000930865,178.9786987,-5.68634e-06,61.25635529,-0.102349192,0.918257236,0.596491933,2285\n1730A,113.0886,36.2126,20170601,68.68767507,2786,6342,1482079.491,882586.0442,921,0.899124026,186.4111176,282.2459106,90455.11719,0.000930382,178.1455078,-5.74636e-06,61.09853745,-0.100394957,0.893501461,0.584191799,2593\n1731A,113.0844444,36.1855,20170601,72.24509804,2790,6341,1482343.41,879297.2939,923,0.935123861,185.7047882,282.3136292,90535.88281,0.000935539,178.7865906,-5.70066e-06,61.24636841,-0.09295135,0.930492699,0.584604263,2640\n1733A,111.5531,36.0783,20170601,69.44428969,2808,6096,1360243.985,844368.3913,461,0.185014188,48.76656342,286.0409546,94797.14063,0.000819977,139.1143646,-6.35906e-06,53.23267365,0.139133215,0.121951602,0.550884366,2351\n1734A,111.5028,36.0714,20170601,76.35933148,2809,6088,1356289.227,842849.6058,449,0.435884416,82.36463928,285.7574768,94566.72656,0.000884549,137.0457611,-6.38621e-06,53.3295517,0.432017267,0.057933468,0.550855398,2229\n1735A,111.5169,36.0822,20170601,78.88718663,2807,6091,1357218.381,844333.2562,453,0.339239419,77.31710815,285.9347534,94772.69531,0.000865237,138.6897125,-6.38313e-06,53.3003273,0.330959052,0.074494846,0.551361203,1854\n1736A,111.5025,36.0875,20170601,81.15416667,2806,6088,1355939.014,844767.0044,440,0.452304006,84.21585846,285.7679138,94605.77344,0.000895034,138.6487274,-6.39933e-06,53.35424805,0.449999183,0.045603085,0.548592687,2348\n1737A,111.4917,36.0417,20170601,72.86685552,2813,6087,1355986.122,839151.8689,450,0.449992746,81.76942444,285.7096863,94505.49219,0.000878388,134.7795715,-6.38288e-06,53.3822403,0.445355088,0.06443841,0.559331894,3125\n1738A,113.5753,37.8564,20170601,55.25140449,2523,6420,1484010.913,1085897.954,699,0.753548741,77.30951691,282.0491028,91621.40625,0.001092094,158.8437347,-4.69538e-06,61.50248718,0.735133767,0.165571943,0.600037038,2636\n1739A,113.4922,37.8792,20170601,50.03267045,2519,6407,1476932.222,1087367.834,814,0.712742805,85.05738068,281.4868774,90467.03125,0.001168665,160.7254639,-4.35382e-06,61.85591507,0.710089743,0.061439585,0.575711429,3710\n1740A,113.5922,37.8561,20170601,58.70972222,2523,6423,1485351.795,1086117.5,679,0.763870895,76.171875,282.1902466,91948.92969,0.001079989,158.0419922,-4.7696e-06,61.43956757,0.741724551,0.182602018,0.607760191,2378\n1741A,113.6292,37.8531,20170601,53.93452381,2524,6429,1488341.014,1086319.293,657,0.784118831,73.47470856,282.404541,92413.99219,0.001054754,156.8799438,-4.92769e-06,61.30110931,0.751721799,0.223062009,0.612173796,2942\n1742A,113.5689,37.8694,20170601,54.83193277,2521,6419,1483208.897,1087353.179,691,0.751902997,79.04614258,282.0428467,91645.79688,0.001107621,158.2690582,-4.65268e-06,61.55775452,0.738197923,0.142905459,0.594920456,2677\n1743A,113.5158,37.85,20170601,48.72804533,2524,6411,1479459.56,1084236.684,1015,0.723758757,80.24599457,281.6029358,90565.72656,0.001122177,161.6535339,-4.48116e-06,61.67048264,0.713291228,0.122647464,0.57794106,4109\n1744A,118.9233,42.2814,20170601,24.72268908,1815,7276,1773620.886,1702038.747,568,1.161489248,78.83686829,279.4663086,94247.65625,0.000646835,275.7804565,-4.18163e-06,44.60363007,1.139504671,0.224914044,0.444131255,1742\n1745A,118.9572,42.2725,20170601,25.29608939,1816,7281,1776347.103,1701594.229,567,1.119968891,77.79209137,279.4325867,94233.67188,0.000648198,273.7367554,-4.20237e-06,44.44298935,1.094633222,0.236872196,0.439684719,1814\n1746A,118.8789,42.2556,20170601,23.22576177,1819,7269,1771153.982,1698173.765,586,1.231915832,77.69317627,279.3052063,93901.78906,0.000665481,276.4822083,-4.11452e-06,44.82976913,1.203596115,0.262626946,0.446661711,2288\n1748A,123.044,41.1196,20170601,33.3767313,2001,7935,2111414.324,1646346.904,86,1.042547464,193.8271942,281.1046753,100647.7344,0.001028935,270.2232361,-8.14869e-06,52.92178726,-0.249155462,1.012337208,0.565992832,4178\n1749A,123.011,41.0931,20170601,28.875,2005,7930,2109908.208,1642530.524,90,1.024908066,194.9835358,281.1362,100626.1094,0.001023153,271.911499,-8.1068e-06,52.71163177,-0.26497367,0.990063429,0.575857282,2169\n1750A,123.0485,41.1442,20170601,33.3189415,1997,7936,2110897.322,1649328.24,45,1.050357699,192.3028564,281.1580811,100798.8125,0.001027347,270.3400574,-8.23458e-06,52.62127304,-0.22380285,1.026237607,0.571201563,3024\n1751A,122.9642,41.0971,20170601,35.54178273,2005,7922,2106341.566,1641995.548,33,0.997273862,194.035675,281.3293457,100951.4219,0.001008122,274.7186584,-8.05235e-06,52.06453705,-0.241857901,0.967501879,0.582949519,2008\n1752A,122.9481,41.0833,20170601,33.61173184,2007,7920,2105634.975,1640031.91,30,0.986440301,194.9032288,281.3385315,100941.7578,0.001004585,275.0236511,-8.00317e-06,52.10451889,-0.253692627,0.953259945,0.578601956,2566\n1753A,123.0156,41.0831,20170601,32.32402235,2007,7930,2110588.975,1641456.644,89,1.017026067,196.005249,281.0834045,100501.4375,0.001024689,271.6261292,-8.07623e-06,52.90532303,-0.280411899,0.977604866,0.574787974,2426\n1754A,123.1289,41.0228,20170601,27.61384615,2016,7949,2120971.258,1636826.661,188,0.991235197,202.1609344,280.5291138,99275.10156,0.001079577,261.7826538,-7.52596e-06,56.43515015,-0.373892814,0.918014884,0.554819524,5871\n1755A,123.81,41.8469,20170601,40.69088319,1885,8058,2141747.097,1748149.867,87,0.878900826,184.9146118,280.2966919,100380.3125,0.001143382,271.5030823,-9.0348e-06,54.2951088,-0.075293928,0.875669718,0.547599912,2618\n1756A,123.9169,41.8828,20170601,34.99301676,1879,8075,2148190.082,1754686.447,85,0.870360017,183.5139618,280.1009216,100188.2578,0.001156587,270.4274902,-9.77627e-06,55.74318314,-0.053344153,0.86872375,0.5467273,2909\n1757A,124.0383,41.8625,20170601,29.60694444,1882,8094,2157668.334,1754970.617,101,0.84517628,183.5670471,279.8502808,100080.3125,0.001151623,261.1168518,-1.00531e-05,57.75439072,-0.052582294,0.843539,0.519235134,2924\n1758A,123.9,41.8594,20170601,36.30779944,1883,8072,2147800.77,1751577.819,29,0.87275064,184.5937195,280.1603394,100265.2422,0.001149039,268.6628418,-9.49985e-06,55.61320496,-0.069896147,0.869947255,0.547334552,2106\n1759A,124.0878,41.8864,20170601,24.38515406,1878,8102,2160385.598,1758854.659,112,0.830179811,182.088028,279.6804504,99977.20313,0.001157755,259.2373657,-1.0378e-05,58.36804199,-0.030246619,0.829628646,0.513459384,3465\n1760A,123.7117,41.8417,20170601,31.18296089,1885,8042,2134832.2,1745401.718,63,0.873235941,183.675354,280.4032593,100545.0,0.001139717,274.9641113,-8.72034e-06,52.91415787,-0.055975433,0.871440053,0.541828632,3277\n1761A,123.8436,41.3283,20170601,26.20416667,1968,8063,2162520.964,1688183.398,162,0.873671293,204.9165802,278.8351746,98619.32031,0.001152897,220.4054718,-7.31843e-06,63.46626663,-0.368065864,0.79235661,0.533671618,3511\n1762A,123.7528,41.3369,20170601,27.14763231,1966,8048,2155605.823,1687194.647,188,0.949497402,204.2605286,279.2185364,98945.27344,0.001130412,224.369873,-7.40622e-06,61.5226059,-0.390124828,0.865648866,0.532090425,3645\n1763A,123.7308,41.3047,20170601,28.61699164,1971,8045,2155138.321,1682943.257,144,0.922013879,205.1357117,279.1554565,98943.08594,0.001129588,224.1584473,-7.41297e-06,61.90137863,-0.391627342,0.834708095,0.537741661,2687\n1764A,123.7669,41.2864,20170601,26.47777778,1974,8051,2158414.03,1681593.864,191,0.869398117,206.2238617,278.9196472,98686.57031,0.001140165,221.9816895,-6.95975e-06,63.02005005,-0.38415876,0.779919982,0.541263163,1919\n1765A,123.7989,41.2692,20170601,27.25905292,1977,8056,2161353.316,1680284.484,308,0.814185798,207.383728,278.6672668,98296.72656,0.00115036,220.2493134,-6.77902e-06,63.97449875,-0.374472648,0.722958326,0.52306056,4624\n1766A,123.8142,41.3472,20170601,30.93201133,1965,8058,2159712.486,1689748.352,161,0.927616775,204.4311829,279.0293884,98795.14844,0.00114235,222.1768951,-7.48937e-06,62.4950676,-0.383651495,0.844561636,0.539563358,5019\n1767A,121.0986,41.0781,20170601,28.91643454,2008,7624,1969871.935,1601063.146,31,0.790780127,53.80680084,282.4335938,100952.2188,0.0006376,339.7416077,-3.11962e-05,52.37919998,0.638170719,0.466981113,0.598131895,2588\n1769A,121.2008,41.1219,20170601,31.9719888,2001,7640,1975992.091,1608279.215,16,0.765205562,49.74586487,282.3079224,101010.5625,0.000665039,342.2581787,-3.15717e-05,52.36695099,0.583981395,0.494474769,0.596599877,2820\n1770A,121.1178,41.1222,20170601,34.33379888,2001,7627,1969871.191,1606648.036,29,0.743052661,53.06433105,282.2899475,100820.6094,0.000654298,331.3728333,-2.60269e-05,52.22275543,0.593917787,0.446529895,0.599375308,1881\n1771A,121.1303,41.1386,20170601,33.10893855,1998,7629,1970264.929,1608832.426,44,0.724091947,52.45780563,282.2090454,100763.1406,0.000662681,327.9137573,-2.38005e-05,52.1627388,0.574124098,0.441237658,0.599637628,2085\n1772A,126.555,43.8875,20170601,31.1800554,1558,8497,2260211.196,2047796.098,189,1.079998493,26.33688354,276.2576599,98285.03906,0.001296815,223.7047119,-1.02139e-05,65.95077515,0.479126126,0.967902243,0.469642848,1610\n1773A,126.5844,43.8358,20170601,31.67275281,1566,8501,2264245.244,2042462.893,192,1.05459702,24.25174522,276.1485596,97983.03906,0.001325919,222.8381348,-1.13752e-05,66.80348206,0.433160365,0.961533725,0.464100629,1338\n1774A,126.4978,43.8228,20170601,27.61111111,1568,8488,2258753.289,2038958.373,211,1.141084075,27.65626335,276.2796021,98057.96094,0.001307207,225.2650299,-1.02492e-05,65.81345367,0.529638231,1.01072073,0.46103543,2874\n1775A,126.5786,43.8947,20170601,28.36768802,1557,8501,2261564.378,2049176.139,190,1.054775834,24.77671051,276.2477112,98243.07813,0.001298738,222.9978027,-1.03935e-05,66.21914673,0.442026615,0.95768714,0.46543923,1182\n1776A,126.55,43.8256,20170601,32.43871866,1568,8496,2262258.937,2040484.807,195,1.088535547,25.58363914,276.1708069,97975.71094,0.001322086,223.7497253,-1.10763e-05,66.50260925,0.470047265,0.981817245,0.46669054,1638\n1778A,126.6772,43.7256,20170601,29.62780899,1584,8516,2274943.717,2031798.981,248,0.931865454,23.03873825,276.40448,97893.25781,0.001432117,218.5051727,-1.45337e-05,69.23558044,0.364678681,0.857544601,0.464548469,4038\n1779A,123.9305,47.3636,20170601,28.63649025,1002,8077,1954309.116,2397572.868,148,0.835941911,87.43138123,276.2744751,99684.47656,0.000591043,265.0334473,-1.42837e-05,54.6150856,0.835100353,0.037501004,0.287700415,2288\n1780A,123.9305,47.3386,20170601,24.86428571,1006,8077,1955198.093,2394641.323,150,0.829468727,87.06686401,276.3829651,99684.71875,0.000590996,265.2062073,-1.42953e-05,54.59431076,0.828380167,0.042481396,0.284867764,2303\n1781A,123.9483,47.3227,20170601,29.87815126,1008,8080,1956931.799,2393131.241,149,0.823303163,86.40278625,276.4429932,99683.59375,0.000592894,265.4508057,-1.44941e-05,54.6813736,0.821678758,0.051692162,0.287535667,2019\n1782A,123.6261,47.203,20170601,26.81497175,1028,8028,1939987.251,2372698.985,152,0.808801353,93.36252594,276.7007141,99660.85156,0.00057352,264.4382019,-1.32619e-05,53.23241806,0.807411194,-0.047400083,0.278404564,2257\n1783A,123.945,47.2988,20170601,34.6183844,1012,8079,1957565.5,2390263.032,145,0.81807965,86.1865387,276.5497437,99684.0625,0.000592191,265.580658,-1.44241e-05,54.62895966,0.816265941,0.0544452,0.292001158,2225\n1784A,129.61,44.561,20170601,25.8449848,1450,8986,2441859.814,2198805.64,234,0.981581807,57.61687088,275.4317017,97660.04688,0.000863476,278.4235535,-6.57577e-06,67.04069519,0.828916192,0.525738358,0.39620468,1676\n1785A,129.6115,44.5782,20170601,22.02089136,1448,8986,2441233.949,2200821.496,234,0.989310861,58.80412292,275.4117432,97642.53125,0.000865467,279.347168,-6.52603e-06,67.0668869,0.846242487,0.51245451,0.391554326,1539\n1786A,129.5902,44.5952,20170601,22.29411765,1445,8982,2439075.802,2202248.195,248,0.985315084,63.14550781,275.3909302,97506.6875,0.000871453,279.1282043,-6.38892e-06,67.08575439,0.879040897,0.445121258,0.399129808,2144\n1787A,129.6459,44.6104,20170601,26.84033613,1442,8991,2442196.077,2205380.206,233,1.036484718,59.33597183,275.3889465,97480.22656,0.000870559,283.7144775,-6.43757e-06,67.14394379,0.891539633,0.528637528,0.391809464,2599\n1788A,129.6386,44.5462,20170601,19.77793296,1453,8990,2444419.662,2197814.352,248,0.991636574,53.80203247,275.4576721,97609.59375,0.000862419,279.5148621,-6.75001e-06,67.07952118,0.80021596,0.585659921,0.398675889,2559\n1789A,124.8354,46.0347,20170601,29.63342697,1215,8222,2062275.815,2260418.357,134,0.837191284,54.04372787,276.9046936,99844.53906,0.000723391,246.5344696,-1.66291e-05,58.32799149,0.677663684,0.4915905,0.330724269,3067\n1790A,125.112,46.528,20170601,25.71428571,1136,8266,2062553.292,2323900.883,145,0.893705666,65.95240021,276.1199036,99694.01563,0.000782598,227.8874817,-1.46265e-05,60.30093384,0.816126168,0.364208668,0.342921376,1968\n1791A,124.8847,46.3991,20170601,22.25633803,1156,8230,2052200.799,2304072.26,141,0.829764247,64.21159363,276.457489,99810.27344,0.000759838,231.6907501,-1.19601e-05,58.84423065,0.747113466,0.361012697,0.332987547,2635\n1792A,125.1386,46.5776,20170601,32.70612813,1128,8270,2062482.14,2330255.339,146,0.887265623,66.03892517,276.1003418,99685.6875,0.0007852,227.4758911,-1.45286e-05,60.44749832,0.810790241,0.360360205,0.351172179,1631\n1793A,124.8648,46.6219,20170601,21.60504202,1121,8226,2042703.381,2329714.516,147,0.841696203,67.82704163,276.3719482,99741.51563,0.000755784,234.8500214,-1.28773e-05,59.32965088,0.779440641,0.317686498,0.337514758,2678\n1794A,118.3528,31.3508,20170601,46.87988827,3564,7184,2043879.192,404959.6551,8,1.18000567,275.0214233,289.0262146,101545.1563,0.002046067,228.2472839,-2.3132e-05,68.5449295,-1.175481796,-0.103226781,0.757713377,2066\n1795A,118.37,31.4189,20170601,49.21848739,3553,7187,2043439.952,413221.435,11,1.186893106,274.5854492,288.9786377,101514.2734,0.002047622,231.4064636,-2.42413e-05,68.49343872,-1.183098793,-0.094829425,0.756279826,1929\n1796A,118.3708,31.3178,20170601,55.5,3569,7187,2046353.174,401504.7943,13,1.190397501,275.0525818,289.0646057,101574.3203,0.002036665,226.9997711,-2.25608e-05,68.51829529,-1.185777068,-0.104779951,0.76573962,784\n1797A,118.4022,31.3839,20170601,48.11772853,3559,7192,2047188.256,409829.4369,10,1.208682656,274.6813049,289.0191345,101518.1172,0.002031749,229.969986,-2.35457e-05,68.44996643,-1.204655409,-0.098586068,0.757750034,3297\n1798A,118.5058,31.6861,20170601,45.78672316,3510,7209,2047522.145,447072.3849,16,1.170979023,270.3184814,288.6643372,101463.5547,0.002137391,238.0056915,-2.44232e-05,68.46238708,-1.170961142,-0.006454895,0.772407889,3157\n1799A,118.4828,31.6411,20170601,43.52653631,3518,7205,2046830.322,441367.1691,7,1.177890301,271.4775085,288.7276306,101530.1328,0.002095668,237.3304138,-2.4753e-05,68.43269348,-1.17750001,-0.030316068,0.765924096,2881\n1800A,118.5106,31.7506,20170601,49.01256983,3500,7210,2046104.694,454664.0869,10,1.156383038,268.999176,288.5747375,101481.2656,0.002197216,238.6899872,-2.39665e-05,68.50488281,-1.156205773,0.020251423,0.761320829,2924\n1801A,118.48,31.6928,20170601,42.37571429,3509,7205,2045128.167,447313.2434,15,1.165913343,270.4291077,288.6559448,101509.7422,0.002139366,238.0114441,-2.44669e-05,68.46792603,-1.165881038,-0.008677498,0.76921308,2441\n1802A,118.6439,31.7133,20170601,57.34135977,3506,7231,2058544.327,453116.4437,50,1.178388953,268.5570679,288.4676208,101175.7422,0.002186747,237.5756378,-2.13896e-05,68.86768341,-1.178013921,0.02972706,0.764087915,5237\n1803A,115.9872,29.6816,20170601,44.49293785,3831,6806,1882307.46,163967.2949,38,0.864065349,304.9067383,289.9586792,100302.0625,0.003186206,234.2413025,-3.25768e-05,74.90136719,-0.708638489,-0.494409174,0.706738114,2679\n1804A,115.9581,29.7048,20170601,43.60306407,3827,6801,1879154.198,166102.221,15,0.904241383,300.8624878,290.1009216,100838.0078,0.00316569,233.4998932,-3.1819e-05,74.71866608,-0.776230514,-0.463808835,0.697830498,1723\n1805A,115.988,29.7292,20170601,44.39612188,3823,6806,1881180.107,169505.7469,20,0.983640432,301.3703613,290.109436,100903.8906,0.003133138,237.3299103,-3.41341e-05,74.67681122,-0.839884281,-0.511998951,0.694528759,1122\n1806A,116.0174,29.6535,20170601,37.94428969,3836,6811,1885682.75,161286.3918,153,0.832318842,310.0906372,289.7447815,99561.14063,0.003191837,235.1663055,-3.33016e-05,74.88863373,-0.63678205,-0.535969496,0.690182686,5690\n1807A,116.0628,29.6926,20170601,42.53107345,3829,6818,1888706.112,166694.1596,27,0.911483943,308.1764526,290.0635376,100628.6328,0.003166914,242.4742432,-3.75787e-05,74.32828522,-0.716564715,-0.56332761,0.698226511,4904\n1808A,115.9114,29.6039,20170601,43.8487395,3843,6794,1877560.323,153502.6408,55,0.73354423,307.9508057,289.6404724,99172.10938,0.003184199,224.3693085,-2.66592e-05,75.0455246,-0.578457832,-0.451080561,0.715380073,4203\n1809A,116.0726,29.7534,20170601,44.47493036,3820,6820,1888034.969,173936.4542,27,1.077277899,305.2729797,290.1976624,101153.9297,0.003084939,247.3973999,-4.068e-05,73.95304108,-0.879540682,-0.622041643,0.698738039,1968\n1810A,115.9936,29.5867,20170601,21.53521127,3846,6807,1885261.183,153081.4526,919,0.758080125,316.0289307,289.4712219,98615.89844,0.003181043,228.8829193,-2.99535e-05,75.33885193,-0.526369631,-0.545546055,0.685769856,6103\n1811A,112.3628,34.6692,20170601,60.93277311,3033,6226,1456034.9,688227.0153,175,0.28727743,213.4764709,287.6018677,98713.89063,0.001070342,170.1418762,-1.0388e-05,60.11990356,-0.158456504,0.239624396,0.782719254,2822\n1812A,112.3939,34.6511,20170601,64.64325843,3036,6231,1459000.093,686539.2996,163,0.356151402,209.9569702,287.6138611,98885.85156,0.001064777,170.621048,-1.02784e-05,60.18424988,-0.177839249,0.308572561,0.792759717,2610\n1814A,112.4664,34.6869,20170601,59.93661972,3030,6243,1464253.805,691868.0353,147,0.47071591,212.0818176,287.711731,99078.67188,0.001022207,168.2483826,-1.03006e-05,59.38035965,-0.250004649,0.398837239,0.789968073,2332\n1815A,112.4831,34.6869,20170601,60.01825843,3030,6245,1465639.011,692117.0163,140,0.496985734,212.0930176,287.7333679,99121.76563,0.00101551,168.0699005,-1.02809e-05,59.31695938,-0.264039189,0.421044081,0.795682788,2190\n1816A,112.3844,34.6231,20170601,61.63098592,3040,6229,1458805.919,683074.0466,181,0.359400302,208.1025238,287.6013184,98882.15625,0.001072841,171.3013458,-1.01912e-05,60.51517105,-0.169291154,0.317031682,0.799704909,3060\n1817A,112.4275,34.6258,20170601,63.49719888,3040,6236,1462327.233,684035.2322,145,0.428625435,207.6272888,287.6339417,99074.23438,0.001062244,171.9577026,-1.01688e-05,60.34508514,-0.19875598,0.379757583,0.793782949,3026\n1818A,114.483,36.061,20170601,60.56695157,2810,6565,1598497.842,886424.4719,63,0.532841861,16.01104927,287.8005676,100718.8203,0.000720889,204.5107117,-1.03025e-05,53.10264969,0.146965787,0.512173355,0.810954034,4582\n1819A,114.32,36.086,20170601,72.47486034,2806,6539,1584706.697,886751.6842,80,0.593100548,50.14426422,287.6363831,100365.9766,0.000715504,188.6518555,-9.78449e-06,53.93691635,0.455290079,0.380104244,0.786001444,2371\n1820A,114.358,36.087,20170601,68.93837535,2806,6545,1587759.53,887483.8518,75,0.562115073,42.52035522,287.7117615,100500.3984,0.000709618,192.0339355,-9.92214e-06,53.72750473,0.379897565,0.414308101,0.795968533,2037\n1822A,114.286,36.11,20170601,68.70670391,2802,6534,1581387.201,889053.4432,85,0.613553762,56.90554428,287.4449158,100057.2031,0.000722854,184.6355591,-9.74848e-06,54.06504059,0.514008045,0.335028261,0.779776514,2139\n1824A,114.3389,34.7781,20170601,58.12853107,3016,6542,1617146.777,732039.8572,73,0.693052649,226.9611206,287.9394836,100766.4453,0.001248911,213.8705139,-1.29963e-05,58.29756165,-0.506534278,0.473016888,0.858763814,2447\n1825A,114.3733,34.7975,20170601,57.65870787,3012,6548,1619527.496,734901.854,73,0.695344865,226.9511261,287.9491272,100786.3906,0.001236842,213.359024,-1.35334e-05,58.28215408,-0.508126855,0.474669933,0.859253407,2455\n1826A,114.2886,34.7967,20170601,58.68994413,3013,6534,1612557.143,733414.1485,74,0.685132325,226.0942535,287.9278564,100723.9375,0.001241425,214.7375946,-1.33414e-05,58.19022369,-0.493613899,0.47513324,0.858758092,3013\n1827A,113.261,35.235,20170601,66.46751412,2942,6370,1517890.406,768997.293,111,0.990185797,328.6016846,287.3854675,98972.5625,0.000908851,142.3688507,-7.82803e-06,56.18889618,-0.515935719,-0.845149815,0.763349831,2266\n1828A,113.227,35.213,20170601,66.43888889,2946,6364,1515586.916,765860.683,102,0.963361323,324.8134155,287.5132141,99225.22656,0.000885309,145.1372833,-8.28708e-06,56.22066879,-0.555186868,-0.787294447,0.763045132,2691\n1829A,113.2464,35.1764,20170601,67.43117978,2952,6367,1517997.666,761815.3712,94,0.885525048,318.3309937,287.7909241,99678.80469,0.000857338,150.0248566,-9.33647e-06,56.05779648,-0.58876729,-0.661443651,0.774671316,3517\n1830A,113.1992,35.259,20170601,66.3319209,2939,6360,1512278.527,770893.842,191,1.006987572,328.4871826,286.9160156,97992.57813,0.000928456,141.4900665,-7.377e-06,56.6177597,-0.526407003,-0.85844028,0.759267092,3221\n1831A,113.3064,33.7214,20170601,58.5933908,3185,6377,1555418.855,590391.5317,90,0.219197765,194.7049561,287.9946594,100231.4063,0.001297471,212.3942261,-1.3317e-05,62.12262726,-0.0556399,0.212018535,0.856111765,2791\n1832A,113.322,33.721,20170601,62.36805556,3185,6380,1556737.852,590591.2963,86,0.224137053,198.8684845,288.0117798,100244.9141,0.001300916,212.1009216,-1.32836e-05,62.05892563,-0.072483152,0.212093398,0.861038983,2780\n1833A,113.292,33.739,20170601,60.00560224,3182,6375,1553817.64,592244.35,92,0.207277298,194.2907104,287.9678955,100151.0703,0.001286896,212.2362976,-1.33991e-05,62.01827621,-0.051163293,0.20086363,0.854885578,2315\n1834A,113.182,33.737,20170601,60.34225352,3182,6357,1544625.156,590273.5394,97,0.219506964,16.37846375,287.8694153,100070.1719,0.001277251,210.550293,-1.30527e-05,62.58480453,0.061894964,0.210599899,0.847097099,755\n1835A,111.1928,34.7772,20170601,55.32022472,3016,6039,1356704.412,684319.8912,379,1.021046638,241.8598175,286.1897583,96117.21094,0.001186155,170.5573425,-1.24501e-05,63.67425537,-0.900339842,0.481585354,0.643416882,2603\n1836A,111.158,34.794,20170601,58.11898017,3013,6033,1353483.249,685839.5396,333,1.063268185,240.825943,286.2734375,96021.22656,0.001163409,168.209137,-1.28776e-05,63.14827728,-0.928368807,0.518334508,0.633691907,2616\n1838A,111.1489,34.7997,20170601,54.08100559,3012,6032,1352615.337,686392.7039,329,1.070873141,240.855072,286.2693481,95937.51563,0.001157618,167.9270477,-1.2907e-05,63.02849579,-0.935274065,0.521566451,0.632011414,2484\n1839A,111.3009,30.7157,20170601,54.33893557,3666,6056,1446117.482,205402.1266,104,0.309547871,345.421875,289.5180054,98509.82031,0.002161921,120.7241745,-8.00594e-06,73.29129028,-0.077938743,-0.299575418,0.773427427,2490\n1840A,111.2992,30.698,20170601,59.28888889,3668,6056,1446316.288,203297.0848,99,0.295909792,346.3167725,289.5414734,98532.79688,0.002170318,121.173378,-8.1363e-06,73.27246857,-0.070023194,-0.287505388,0.776303887,2664\n1841A,111.3549,30.6463,20170601,54.88450704,3677,6065,1452233.682,198044.1008,60,0.244142145,348.8564453,289.6460571,98939.83594,0.002159378,132.5664978,-9.7884e-06,72.65235901,-0.047205616,-0.239535004,0.778909922,2219\n1842A,111.268,30.696,20170601,53.72980501,3669,6051,1443612.383,202603.2384,66,0.245019481,347.559021,289.3479614,98002.59375,0.002270184,116.4564972,-7.68385e-06,73.56494904,-0.052806057,-0.239261493,0.748569667,4304\n1843A,111.3296,30.7819,20170601,52.59556787,3655,6061,1447335.079,213605.1272,102,0.423213005,343.0461426,289.4862061,98716.28125,0.002046995,125.3606186,-7.87935e-06,73.60633087,-0.12344341,-0.404809803,0.763970613,3667\n1844A,112.2551,30.3175,20170601,53.66573816,3729,6209,1538204.51,173167.0828,33,0.720575333,305.1057739,289.8209534,101190.7031,0.002286069,238.6536102,-2.7592e-05,69.07542419,-0.589523315,-0.414356261,0.828312814,2156\n1845A,112.2068,30.3515,20170601,51.6056338,3724,6201,1533238.088,176396.0278,35,0.719484329,306.0953979,289.8277893,101111.4531,0.002264848,239.3492889,-2.78325e-05,68.91123962,-0.581397712,-0.423832983,0.823110342,2803\n1846A,112.2887,30.3055,20170601,55.24782609,3731,6214,1541418.772,172287.7827,31,0.721692085,304.7090149,289.8115845,101230.0234,0.002298012,237.248764,-2.62185e-05,69.13858032,-0.593296587,-0.410899788,0.828235984,2674\n1847A,113.1094,29.3578,20170601,52.86376404,3883,6345,1634409.087,74799.81927,36,1.037202001,311.8988647,290.5915833,101126.9531,0.00242957,255.5616302,-3.24913e-05,71.20270538,-0.772061884,-0.692609847,0.81054759,2291\n1848A,113.1493,29.4251,20170601,49.36543909,3872,6352,1636503.272,83309.86833,37,1.007611513,309.510376,290.5125732,101102.1563,0.002437706,254.5217285,-3.35397e-05,71.39170837,-0.777424514,-0.641008675,0.797427177,3064\n1849A,113.1772,29.3678,20170601,43.77106742,3881,6356,1640240.221,77095.25763,47,1.033074379,309.7947998,290.4830017,100906.2422,0.002477681,252.5169678,-3.25456e-05,71.59677887,-0.793798089,-0.661155999,0.805084109,3084\n1850A,113.2621,29.4758,20170601,48.03179191,3864,6370,1645445.987,91104.79279,49,0.971163571,304.8240356,290.3257446,100698.6719,0.002459551,251.1899109,-3.49791e-05,71.96575928,-0.797273338,-0.554539263,0.799928129,4305\n1851A,112.9943,29.4402,20170601,47.75,3870,6327,1622358.194,82500.33901,27,0.975420594,311.0901489,290.5697937,101300.9297,0.002306274,259.1890564,-3.23957e-05,70.60830688,-0.735194564,-0.641041577,0.811621726,4660\n1852A,113.2117,29.355,20170601,43.30473373,3883,6362,1643597.387,76179.86234,71,1.034198046,308.8942871,290.4233704,100753.5703,0.002508281,250.443222,-3.21744e-05,71.83750916,-0.804965317,-0.649304628,0.784529328,4938\n1854A,111.6975,28.9703,20170601,44.52442529,3945,6120,1516029.301,6965.260774,47,0.988335073,312.401001,290.4732056,101065.7109,0.002136488,238.1098022,-2.02849e-05,70.71951294,-0.729874909,-0.666399896,0.833501339,3302\n1857A,111.7158,29.1456,20170601,34.8832853,3917,6123,1514159.428,27711.98488,72,1.092972755,319.6559448,290.374115,100744.2813,0.002004648,244.2007599,-2.21838e-05,70.55252075,-0.707624376,-0.832980871,0.823841989,6291\n1858A,110.48,29.1389,20170601,45.04469274,3918,5925,1403307.242,8582.056399,230,0.914720058,272.6709595,288.775177,96692.19531,0.002847217,207.5251465,-8.68697e-06,77.37037659,-0.913728356,-0.042582527,0.737847686,3134\n1859A,110.4697,29.1242,20170601,40.49860724,3920,5923,1402654.32,6714.878383,187,0.917783022,271.5867615,288.7306824,96559.67969,0.00287608,208.3604279,-8.75514e-06,77.36063385,-0.917432308,-0.025370562,0.752946079,3363\n1860A,110.5594,29.3547,20170601,28.22005571,3883,5937,1406411.417,34977.92136,437,0.77869916,282.1037598,288.2032776,94872.96094,0.002578454,185.8214417,-7.34357e-06,77.76854706,-0.761396885,-0.163239747,0.729782701,5864\n1861A,110.4417,29.315,20170601,28.36478873,3890,5919,1396597.314,28650.35021,854,0.829989314,273.9925537,288.3518677,94818.85938,0.002530119,186.5463715,-7.15413e-06,77.21740723,-0.827977836,-0.057749458,0.73192817,6076\n1862A,110.4144,25.3167,20170601,33.86694678,4529,5914,1467633.742,-436319.169,208,1.257950068,312.9104614,292.0314941,98537.71094,0.002744724,222.7389526,-1.29025e-05,76.22538757,-0.921404779,-0.856417954,0.589889705,5698\n1863A,110.2819,25.2697,20170601,39.11173184,4537,5893,1455969.817,-443706.6103,156,1.160073757,317.0359497,291.9952393,98086.71094,0.003143144,217.2765961,-1.29468e-05,75.39362335,-0.790695906,-0.848864615,0.599629104,2727\n1864A,110.3089,25.2708,20170601,42.62952646,4537,5897,1458501.479,-443179.4241,160,1.187788486,316.0391846,291.9887085,98063.20313,0.003044128,217.6634064,-1.29818e-05,75.54496765,-0.824582458,-0.854929984,0.59533596,2931\n1865A,110.2869,25.2178,20170601,37.9301676,4545,5894,1457380.305,-449612.7122,157,1.190551639,316.8713379,292.1083679,98198.99219,0.002973078,213.7904663,-1.30866e-05,75.56040192,-0.81396836,-0.868831813,0.597452879,3319\n1866A,109.2256,21.5958,20170601,34.31700288,5125,5724,1417376.638,-879368.5347,30,1.062204719,275.8356323,296.1120911,101067.7266,0.0028437,345.6342468,-6.97215e-05,77.09281921,-1.056705356,-0.107947953,0.47739923,5340\n1870A,109.4883,24.3898,20170601,38.23142857,4678,5766,1395974.277,-556490.9868,129,0.579104185,335.2332153,293.5350342,99628.05469,0.003629879,262.7426147,-1.98217e-05,75.74874115,-0.24264355,-0.525819182,0.56593293,5763\n1871A,109.4108,24.3304,20170601,44.54661017,4687,5754,1389569.262,-564416.0529,88,0.460518152,333.2667847,293.6275024,99988.64063,0.0035935,270.2512817,-1.94417e-05,76.37477112,-0.207190618,-0.411277294,0.566913426,1987\n1872A,109.3886,24.3406,20170601,40.90250696,4686,5750,1387271.058,-563557.5511,91,0.458784848,327.9056396,293.5845947,99991.25,0.003591797,271.9590149,-1.90522e-05,76.70124054,-0.243789017,-0.388652086,0.56827718,2244\n1873A,109.4221,24.299,20170601,37.98179272,4692,5756,1391184.451,-567864.2424,102,0.42661804,339.6827698,293.6799927,99988.05469,0.003582781,270.4307251,-1.98839e-05,76.11131287,-0.148162261,-0.400063634,0.577699184,3181\n1874A,109.3957,24.3663,20170601,50.98333333,4681,5751,1387514.832,-560503.563,95,0.507493556,325.9737549,293.5636597,99989.52344,0.003589642,270.158844,-1.89191e-05,76.6975174,-0.284011185,-0.420579761,0.57358098,2681\n1875A,109.4839,24.3158,20170601,34.85854342,4690,5765,1396816.058,-565057.214,93,0.481155843,341.8652954,293.6621704,99716.19531,0.00354164,265.3618164,-2.06137e-05,75.41307831,-0.149798959,-0.457243055,0.570562541,2672\n1878A,104.7778,31.4747,20170601,44.43398876,3544,5012,860985.3154,218601.7323,489,0.565733552,332.7427673,290.3540344,95431.49219,0.000928277,148.548111,-1.0968e-05,65.83541107,-0.25913763,-0.502893746,0.751277328,2850\n1879A,104.7536,31.4539,20170601,50.954039,3547,5009,859107.6298,215917.4862,464,0.557541311,332.9430237,290.3952026,95466.24219,0.000919416,147.4331512,-1.09503e-05,65.92232513,-0.25365144,-0.496500999,0.743232012,2822\n1880A,104.6717,31.4656,20170601,48.23743017,3546,4995,851779.8545,216595.2575,478,0.545692921,340.8397217,290.2144165,94994.57813,0.000933485,134.899231,-9.93651e-06,65.13310242,-0.1791455,-0.515448987,0.740613937,3164\n1881A,104.7283,31.5072,20170601,50.53472222,3539,5005,856257.0921,222032.7411,468,0.575144768,339.2542725,290.3222656,95207.50781,0.000890028,139.0517731,-1.02673e-05,65.27946472,-0.203772381,-0.537836671,0.734473348,3465\n1882A,104.5969,28.8194,20170601,49.5720339,3969,4983,875897.2962,-97212.4742,343,0.574995518,129.6760712,291.7008362,96878.45313,0.001207849,148.7240143,-1.31978e-05,71.91112518,0.44257912,-0.367074281,0.989683867,3609\n1883A,104.6225,28.76611,20170601,47.41504178,3978,4988,878842.8558,-103259.58,301,0.555002809,131.8848724,291.6523438,96722.92188,0.001210027,149.8258362,-1.32929e-05,72.04242706,0.413217962,-0.37051183,1.00313437,3274\n1884A,104.6061,28.7867,20170601,50.48179272,3974,4985,877111.9907,-100981.5008,320,0.572576404,130.4493408,291.7028198,96819.89063,0.001211049,149.0327911,-1.32074e-05,71.98251343,0.435744047,-0.371444285,1.002220511,3216\n1885A,104.6417,28.76389,20170601,46.44150418,3978,4991,880616.5383,-103349.0838,301,0.551851332,133.8452301,291.6606445,96746.3125,0.001200382,150.9474335,-1.34452e-05,72.05448914,0.398029149,-0.382246912,1.003585696,2720\n1886A,104.5761,28.71583,20170601,57.30277778,3986,4980,875197.315,-109593.8507,327,0.537228703,124.9964905,291.382843,96186.42188,0.001269122,144.9151917,-1.22388e-05,72.28664398,0.440110683,-0.308086485,0.98899138,3993\n1887A,104.6789,28.7989,20170601,54.35955056,3972,4997,883595.7939,-98892.56183,340,0.572529972,139.8998413,291.7781677,96971.79688,0.001170704,153.5704498,-1.3817e-05,72.02098846,0.368812859,-0.437912852,0.996237636,4058\n1888A,101.68912,26.57098,20170601,34.35014006,4329,4518,629028.2751,-383522.6956,1152,0.235272422,233.2457123,292.4658203,84378.60156,0.002155921,182.2531586,-4.06756e-06,59.89054489,-0.188498557,0.140788525,0.282065868,3456\n1889A,101.5769,26.5928,20170601,36.39972145,4325,4500,618320.095,-381681.3452,1141,0.153564751,261.6351013,292.2519531,83793.34375,0.001861429,189.186264,-3.64908e-06,58.928936,-0.151930124,0.022346541,0.26872009,4783\n1890A,101.7169,26.585,20170601,32.77222222,4326,4523,631524.2458,-381703.8194,1127,0.233383134,238.9780121,292.8516541,84935.07813,0.002156427,179.965744,-4.17589e-06,60.29755783,-0.199998602,0.120284021,0.280255914,4058\n1891A,101.7453,26.5017,20170601,31.86768802,4340,4527,634860.3618,-391267.3535,1182,0.380367815,215.170166,293.0507202,85408.625,0.00235102,177.7971191,-4.22998e-06,59.91336441,-0.219088778,0.310933739,0.251470685,4745\n1893A,105.4306,28.9583,20170601,39.22050562,3947,5117,949971.4142,-73109.55815,322,0.549115181,334.5930786,291.9873962,97864.92188,0.00128253,148.4105988,-1.30472e-05,73.7434845,-0.235634133,-0.495987952,1.058444619,4853\n1894A,105.4436,28.9026,20170601,45.04634831,3956,5119,951850.5145,-79540.99998,250,0.456011117,336.5304565,292.0223694,97839.39844,0.001261711,147.2907257,-1.27689e-05,73.49526978,-0.181645274,-0.418271601,1.058086872,2653\n1895A,105.4322,28.8558,20170601,41.88997214,3963,5117,951402.4495,-85159.84582,282,0.387345046,340.5147705,292.0029907,97728.45313,0.001255511,146.1122131,-1.26617e-05,73.33326721,-0.129234433,-0.365150183,1.061148047,2279\n1896A,105.4322,28.8833,20170601,37.04353933,3959,5117,951057.5106,-81923.14732,287,0.428428441,338.7138062,292.0162964,97810.24219,0.001259443,146.6868134,-1.27581e-05,73.43582153,-0.155563533,-0.399187833,1.069990754,2367\n1897A,104.7547,29.3628,20170601,74.37711864,3882,5009,883872.4251,-31738.68044,331,0.777469993,179.4752045,291.7219543,97437.15625,0.00105818,150.0917053,-1.27371e-05,72.93656921,0.007193131,-0.777436733,1.016264915,4591\n1900A,104.7692,29.3411,20170601,64.99164345,3886,5011,885437.3467,-34168.5706,309,0.780762732,179.2603607,291.6853027,97333.69531,0.001062089,150.7517548,-1.28835e-05,72.82495117,0.010153056,-0.78069675,1.024815798,3306\n1901A,104.4219,31.1208,20170601,42.56741573,3601,4955,833789.715,173481.7588,507,0.543905258,176.7321777,290.3390808,94986.32813,0.001026293,150.148819,-1.05076e-05,66.12191772,0.031054454,-0.543018043,0.766114652,3740\n1902A,104.3883,31.1333,20170601,44.57222222,3599,4950,830683.0648,174681.8665,496,0.548659325,172.5022278,290.3959961,95078.42969,0.001041836,145.555542,-1.02715e-05,66.26266479,0.071641371,-0.543961883,0.768450141,3244\n1903A,104.4053,31.1167,20170601,49.15927978,3601,4953,832371.9486,172854.055,494,0.547267199,174.9160767,290.3775024,95044.44531,0.001027282,148.9884033,-1.04373e-05,66.18191528,0.048544731,-0.545109868,0.770202577,3003\n1904A,104.3539,31.1108,20170601,63.7266289,3602,4945,827903.7342,171719.042,489,0.568953454,167.7808685,290.5610046,95322.22656,0.00102244,145.2479553,-1.01879e-05,66.41021729,0.12046773,-0.556053579,0.776457191,3625\n1905A,106.056,30.8064,20170601,41.3079096,3651,5217,982043.6272,151289.3773,308,0.879426181,308.9922485,290.844635,97502.07813,0.001381001,151.6591034,-1.20811e-05,74.92990112,-0.683553874,-0.553303242,0.87104857,4923\n1906A,106.0789,30.8023,20170601,48.08472222,3652,5221,984124.0733,151032.9064,282,0.885013759,308.9163818,290.8631592,97536.82031,0.001389245,150.9994659,-1.20451e-05,75.01079559,-0.6886338,-0.555907249,0.868879318,2918\n1907A,106.1031,30.8217,20170601,47.4255618,3649,5224,986003.8426,153573.1651,300,0.888030589,308.4597168,290.8873291,97559.91406,0.001398045,150.5676727,-1.21491e-05,75.05997467,-0.695405066,-0.552277148,0.876248121,2900\n1908A,106.1064,30.7856,20170601,49.45391061,3654,5225,986780.9649,149330.9605,285,0.896087289,308.9842834,290.8911133,97568.39063,0.00139715,150.3124695,-1.19645e-05,75.09119415,-0.696582735,-0.563688695,0.880144715,2655\n1909A,106.0642,30.7636,20170601,51.33240997,3658,5218,983342.084,146302.6342,284,0.902434289,309.4742432,290.9161072,97565.28125,0.00138268,151.4132996,-1.18652e-05,74.98168182,-0.696636617,-0.57365942,0.878920257,3093\n1910A,106.1087,30.8388,20170601,42.04634831,3646,5225,986269.0717,155654.7064,318,0.888748765,308.0556641,290.9064636,97573.95313,0.001402697,150.4662628,-1.22618e-05,75.07325745,-0.699847579,-0.547802567,0.862408996,3119\n1911A,106.9222,27.6869,20170601,30.9275766,4150,5356,1103370.845,-206732.1068,869,1.204445839,270.4447021,288.2242737,90735.42188,0.001904941,244.5178833,-1.07473e-05,77.88352966,-1.204409957,-0.009291916,0.71316433,2938\n1912A,106.9242,27.7019,20170601,27.95238095,4148,5356,1103341.07,-204955.212,887,1.202354431,270.5683289,288.2044373,90727.65625,0.00191777,244.1181641,-1.07353e-05,77.9752655,-1.202295899,-0.011870167,0.716519594,2940\n1913A,106.8906,27.6486,20170601,24.83472222,4156,5350,1101005.373,-211565.8519,873,1.177000761,269.7781067,288.2180176,90586.25781,0.001880351,244.8582306,-1.07223e-05,77.79264069,-1.17699182,0.004612549,0.709870279,3028\n1915A,106.9178,27.72,20170601,29.96944444,4145,5355,1102493.731,-202909.8848,854,1.181907177,270.2075806,288.1087646,90537.52344,0.001933497,243.307663,-1.06997e-05,78.14828491,-1.181899548,-0.004227233,0.723858595,3283\n1916A,103.7897,25.5035,20170601,35.22957746,4500,4854,837258.136,-492397.3436,1888,1.716951609,194.941391,286.8114014,80383.3125,0.002508642,358.395874,-1.43404e-05,75.14983368,-0.442670286,1.658905029,0.335355341,4422\n1917A,103.8,25.5364,20170601,34.69859155,4494,4856,837893.0195,-488483.0636,1877,1.759679437,195.3168945,286.8308411,80416.26563,0.002461457,361.0354614,-1.45502e-05,75.19747925,-0.464819491,1.697178483,0.337081969,2663\n1918A,108.7197,34.3956,20170601,60.59470752,3077,5643,1157372.659,607191.4518,463,1.179106951,176.9803619,286.9052429,95692.98438,0.000983151,105.4164658,-7.25398e-06,62.06290436,0.062220652,-1.177464128,0.618010998,4139\n1919A,108.6761,34.3181,20170601,64.58591549,3089,5636,1155014.199,597429.3075,388,0.427577376,159.1076965,286.5556335,94540.39844,0.001147953,93.1432724,-6.72714e-06,63.51910782,0.152512148,-0.399452686,0.620392442,2592\n1920A,108.7233,34.3617,20170601,67.50702247,3082,5644,1158243.136,603188.0231,409,0.839052856,174.6754913,286.7914124,95240.23438,0.00105034,100.5067444,-7.16199e-06,62.55570984,0.077936374,-0.835425436,0.620607018,2902\n1921A,108.7369,34.3164,20170601,66.23809524,3089,5646,1160144.182,597942.7275,383,0.36326772,164.9398956,286.6364746,94605.41406,0.00114498,93.62757111,-7.05726e-06,63.24367142,0.094418459,-0.350782841,0.613609433,2709\n1922A,109.0656,35.0994,20170601,35.85632184,2964,5698,1174242.322,695355.2672,961,0.648982406,352.0760803,284.1787109,90082.51563,0.001070753,149.4832916,-7.27995e-06,60.96445465,-0.089524291,-0.642777979,0.545577049,4489\n1923A,109.0697,35.0697,20170601,43.21111111,2969,5699,1175094.025,691854.7145,857,0.784514368,350.9170532,284.3713074,90409.49219,0.001036449,147.5519409,-7.33708e-06,60.60102081,-0.123914666,-0.774666309,0.562015951,3927\n1924A,108.9344,34.9058,20170601,49.65266106,2995,5677,1166666.552,670657.2077,736,1.135878444,345.3878174,285.2592468,92109.23438,0.000988117,142.802948,-7.76725e-06,59.94162369,-0.286647677,-1.099114656,0.577400208,3158\n1925A,108.9589,34.8731,20170601,51.80346821,3000,5681,1169262.785,667041.647,685,1.170345545,346.3882446,285.5673523,92634.26563,0.000979013,143.154129,-7.94811e-06,59.38394928,-0.275528163,-1.137450218,0.591906309,3195\n1926A,109.4131,36.6275,20170601,29.30351906,2720,5754,1176024.898,882454.1196,1065,0.513106167,26.9654789,283.0245667,88592.58594,0.000955282,207.8951721,-7.86441e-06,54.13394547,0.232663453,0.457324445,0.430976599,4455\n1927A,109.4761,36.6028,20170601,26.54378531,2724,5764,1181567.641,880248.3869,1021,0.542918265,22.19558907,283.1245117,88737.67969,0.000956122,208.0177002,-8.01058e-06,53.97742844,0.205092177,0.502690196,0.435377121,4066\n1928A,109.4824,36.5767,20170601,30.72346369,2728,5765,1182542.689,877195.1303,1032,0.552359939,19.38192558,283.0561523,88555.74219,0.0009655,208.5716553,-8.02693e-06,54.06606674,0.183303073,0.521058083,0.439019591,3658\n1929A,109.5056,36.6106,20170601,38.42792793,2722,5769,1183818.931,881538.6009,1030,0.550649464,21.92397499,283.20047,88887.74219,0.000950885,207.7160339,-8.08629e-06,53.81389618,0.205593586,0.510828853,0.434011281,3593\n1930A,107.1586,34.3708,20170601,43.64899713,3081,5393,1026765.96,586877.5683,593,0.329276055,20.18849945,285.714325,91695.96875,0.001502599,107.7091675,-3.93471e-06,66.00567627,0.113633133,0.309047282,0.546731889,3138\n1931A,107.0708,34.3017,20170601,44.9301676,3092,5379,1020409.291,577699.2047,864,0.396368384,19.02463341,283.3543701,87038.75,0.001776829,112.4791336,-3.7588e-06,67.62475586,0.129202336,0.374719411,0.524760962,5824\n1932A,107.1906,34.3672,20170601,50.35434174,3081,5398,1029508.115,586781.8682,596,0.305412918,13.86052036,285.8243103,91975.97656,0.001493757,105.6873093,-3.97722e-06,66.20861816,0.073162362,0.296520352,0.529422343,2810\n1933A,107.1431,34.3547,20170601,50.70172911,3083,5391,1025702.871,584790.217,597,0.352196127,20.54267883,285.3041382,90914.1875,0.0015573,107.9905853,-3.89104e-06,66.32097626,0.123583898,0.329801649,0.54930532,3349\n1934A,107.1186,34.3739,20170601,48.6103352,3080,5387,1023359.263,586831.0355,629,0.357475519,27.64004898,285.7642212,91695.45313,0.001488057,110.3381729,-3.89431e-06,65.56370544,0.165833816,0.316682607,0.537284136,3351\n1935A,107.3906,34.3528,20170601,56.48472222,3084,5430,1046527.674,587172.8523,544,0.220629945,206.5397644,285.3908691,92224.72656,0.001495237,91.6646347,-3.52797e-06,68.62831879,-0.098578945,0.197382286,0.555408597,2956\n1936A,107.2058,34.3497,20170601,49.42896936,3084,5401,1031046.47,584848.4974,578,0.325266272,8.818524361,285.3563232,91202.61719,0.001570077,103.2266083,-3.94232e-06,66.92357635,0.049863648,0.321421474,0.549201846,3048\n1937A,107.2386,34.3622,20170601,50.03760446,3082,5406,1033615.679,586687.8657,591,0.28761375,2.260253668,285.7457886,92072.4375,0.001504506,101.9603806,-4.02169e-06,66.73080444,0.01134264,0.287389994,0.546833992,2701\n1938A,109.5293,34.5101,20170601,60.51585014,3058,5773,1223151.306,630658.7146,347,0.977224827,237.3246765,287.3561096,96523.08594,0.001217962,99.54223633,-8.10061e-06,61.990448,-0.822556973,0.527606308,0.601806819,3036\n1939A,109.5049,34.5004,20170601,72.50142857,3060,5769,1221284.15,629198.4999,359,0.97453171,238.8558655,287.3674927,96443.86719,0.001197413,98.52627563,-8.01612e-06,61.82299423,-0.834056199,0.504045904,0.604505539,2495\n1940A,109.4636,34.493,20170601,70.88997214,3061,5762,1217962.807,627803.409,380,0.931024849,244.3529968,287.4116516,96219.53906,0.001135641,100.0737991,-7.95372e-06,61.3036232,-0.839284897,0.402998924,0.609041452,2922\n1941A,109.4266,34.5021,20170601,61.24373259,3060,5756,1214709.031,628430.6458,357,0.879841268,251.7609558,287.5474243,96176.5,0.001069992,102.3084717,-7.94492e-06,60.6456604,-0.835627019,0.275405437,0.605953097,3409\n1942A,102.1878,38.5247,20170601,33.28028169,2416,4598,571224.379,1047386.36,1522,0.39669314,66.76177979,283.6272888,83436.13281,0.000315591,303.3875732,-5.57107e-06,33.57984161,0.364504993,0.156529739,0.265895754,1984\n1943A,102.1725,38.5339,20170601,28.71587744,2415,4596,569928.9741,1048414.153,1518,0.404886276,65.9061203,283.4888611,83242.04688,0.000321092,305.331665,-5.61574e-06,33.73610687,0.369606078,0.165300488,0.252459645,1597\n1944A,102.1708,38.5061,20170601,24.38687151,2419,4595,570040.8105,1045030.142,1551,0.422089845,65.08037567,283.3521118,82952.40625,0.000327484,304.3884888,-5.57649e-06,34.03249359,0.382787198,0.177858934,0.274183244,1713\n1945A,98.2908,39.7711,20170601,30.22005571,2217,3975,256624.038,1182636.583,1655,1.00842607,23.74979591,282.2704163,82341.57813,0.000244018,177.3407898,-6.09007e-06,37.75084305,0.406125516,0.923030376,0.206479624,1927\n1947A,106.3394,38.817,20170601,45.58882521,2369,5262,895864.0949,1113816.234,1100,0.720886111,137.6966095,283.6262512,88097.01563,0.000344818,155.5193939,-5.85841e-06,39.24173355,0.485234737,-0.533126593,0.367263079,2358\n1948A,106.3717,39.0153,20170601,49.59103641,2338,5267,895615.8444,1138099.749,1110,0.68385905,120.7404327,284.3329773,88127.45313,0.000343931,212.1736603,-6.47785e-06,38.18918228,0.587792933,-0.349517733,0.391967505,2036\n1949A,106.7704,39.2282,20170601,42.43454039,2304,5331,923769.3521,1167549.166,1094,0.267566115,109.431015,284.7584229,88080.60938,0.000295676,343.7106323,-7.19597e-06,34.00588608,0.252331287,-0.088997483,0.357204139,1771\n1950A,106.7096,39.1292,20170601,40.22740113,2319,5322,920454.3854,1155002.116,1092,0.276718527,122.3796692,284.5925903,88332.40625,0.000298734,304.23703,-7.34178e-06,34.87409973,0.233703107,-0.148175567,0.359870613,3127\n1951A,84.8861,45.6033,20170601,24.26825843,1284,1830,-714130.5606,1928797.639,382,1.93642354,133.6169434,285.2608643,96302.65625,0.000264259,570.1309814,-9.81697e-06,42.17436981,1.402000308,-1.335713744,0.213667184,1920\n1952A,84.8897,45.5828,20170601,21.96296296,1287,1830,-714135.383,1926271.785,354,1.908054829,134.3760223,285.3796997,96513.34375,0.000269908,567.0460815,-9.76535e-06,42.00608826,1.36390388,-1.334331036,0.240162075,2059\n1953A,85.1186,45.6886,20170601,33.96398892,1270,1867,-696720.2586,1937530.886,291,1.729465842,129.2556,285.9472961,97494.44531,0.000166066,599.0054932,-8.77541e-06,40.29742432,1.339251518,-1.094283938,0.211915165,2318\n1954A,84.8983,44.3336,20170601,34.77683616,1487,1832,-729243.6822,1773902.325,742,1.284570456,33.36539078,282.6404724,92354.38281,0.001037227,132.8213348,-1.28528e-05,55.11009979,0.706464827,1.072860003,0.258401394,2287\n1955A,85.6931,46.0872,20170601,28.31534091,1206,1959,-651717.0144,1982218.541,303,1.305851579,108.1486816,285.6183777,97062.57813,0.000109129,620.6276855,-1.02429e-05,38.93966293,1.240910053,-0.40668264,0.212577194,2609\n1956A,86.1461,41.7511,20170601,53.63764045,1900,2031,-667879.9408,1450289.766,939,0.644579947,355.1481934,287.0762634,90649.39063,0.000191458,158.2389526,-1.13114e-05,37.72828674,-0.054575365,-0.642265379,0.261760652,1593\n1957A,86.2022,41.7192,20170601,52.89481268,1905,2040,-664008.3159,1446024.032,952,0.706175923,351.7924194,287.0703735,90095.1875,0.000143489,182.0660095,-1.02816e-05,36.47826385,-0.100875482,-0.698933899,0.238025546,1615\n1958A,86.2381,41.7128,20170601,41.54929577,1906,2046,-661375.6868,1445002.354,979,0.706081092,350.4817505,286.9968262,89745.60156,0.000135102,193.5648041,-9.89858e-06,36.06020355,-0.116819926,-0.696350217,0.235998198,1532\n1959A,118.746,36.881,20170601,52.24558824,2679,7247,1918272.628,1059709.41,21,0.866908371,201.2275848,286.0896606,101380.6875,0.000808298,224.8664093,-1.1834e-05,55.32573318,-0.313875586,0.80809176,0.745500684,2412\n1960A,118.78,36.864,20170601,52.04333333,2682,7253,1921459.567,1058371.989,22,0.871823311,200.8208008,286.0860901,101342.6953,0.000815353,229.3359985,-1.30122e-05,55.5737381,-0.309877694,0.814893663,0.74447912,2853\n1961A,117.541,36.71,20170601,54.36,2706,7055,1827404.856,1016578.603,77,1.092469335,198.5237274,285.657959,100077.5234,0.001075418,183.4550934,-8.91527e-06,59.02105713,-0.347064942,1.035874128,0.781022251,2465\n1963A,120.61,36.44,20170601,31.77478754,2750,7546,2079331.135,1045845.212,75,0.481741548,185.6659241,285.1216125,101136.9844,0.00105534,307.5242004,-3.86657e-05,66.06706238,-0.04755991,0.479388118,0.604243159,3985\n1964A,120.47,36.39,20170601,28.07303371,2758,7523,2069773.36,1037035.314,27,0.565185785,191.195816,285.1802063,101237.9688,0.000992653,296.0322571,-3.24286e-05,65.80377197,-0.109734781,0.554430544,0.64891392,2249\n1967A,120.008,36.283,20170601,38.38483146,2775,7449,2036314.836,1014846.623,10,0.620691001,190.2990265,285.3343811,101428.4688,0.000899788,241.872345,-1.35545e-05,64.02494049,-0.110967264,0.610691071,0.675942242,2183\n1968A,120.014,36.253,20170601,33.08732394,2780,7450,2037707.765,1011454.822,21,0.618620932,187.4125977,285.3928223,101417.9297,0.000895404,245.4938202,-1.51989e-05,64.22150421,-0.079807974,0.613451302,0.676147103,3162\n1969A,120.537,36.865,20170601,33.85582822,2682,7534,2060299.431,1094089.982,57,0.381477177,211.9386902,284.4803467,100774.1094,0.00108989,264.4487305,-7.3596e-06,65.02375793,-0.20180048,0.323730439,0.638130546,2453\n1970A,120.515,36.885,20170601,39.55890805,2678,7530,2057941.784,1095973.152,65,0.381221592,210.7970581,284.4913635,100726.5938,0.001085405,267.6190796,-7.60387e-06,64.93920135,-0.19517982,0.327467173,0.650446296,2918\n1971A,119.952,36.792,20170601,32.28248588,2693,7440,2016357.371,1073392.484,56,0.725837588,226.8506317,285.0223999,101208.0703,0.000872484,248.8716888,-7.99817e-06,63.21492386,-0.529539764,0.496415019,0.672168195,2458\n1972A,119.976,36.799,20170601,34.60057471,2692,7444,2018041.431,1074706.747,63,0.709809124,226.9320679,284.9526062,101131.1172,0.000885525,249.1580505,-7.83441e-06,63.59031296,-0.518535554,0.484716296,0.659083128,2856\n1973A,120.747,37.825,20170601,31.43079096,2528,7568,2046662.917,1211081.216,6,0.861073196,181.3109436,285.5254211,101167.8125,0.000681089,472.4484863,-7.78312e-05,60.97776794,-0.01969859,0.860847831,0.63664639,2532\n1974A,120.773,37.809,20170601,28.17908309,2531,7572,2049186.289,1209745.122,19,0.8466748,0.03956585,285.5157471,101169.8203,0.000693343,468.5272217,-7.63137e-05,61.16248322,0.000536061,0.846674621,0.637932777,2151\n1975A,120.399,37.374,20170601,28.94929577,2600,7512,2033627.073,1150916.938,63,0.834623277,210.302597,284.6075745,100238.6563,0.00080018,326.9888306,-1.93477e-05,63.77984238,-0.421111912,0.720597506,0.653290629,2927\n1976A,120.394,37.364,20170601,30.69662921,2602,7511,2033545.987,1149639.666,75,0.826941431,210.5200043,284.61203,100253.1016,0.000805083,325.6167908,-1.87553e-05,63.81868362,-0.419942141,0.712376833,0.646867514,3377\n1977A,119.941,37.177,20170601,28.97706422,2632,7439,2003759.669,1118374.393,49,1.191324711,221.9379883,285.651947,101093.3047,0.000755185,332.3521729,-3.03561e-05,61.18584824,-0.79617399,0.88620621,0.678074837,2666\n1978A,119.959,37.18,20170601,36.77761628,2631,7441,2005083.073,1119093.992,58,1.18651855,221.6113129,285.6207581,101059.1016,0.000754719,331.9237366,-2.90607e-05,61.2922821,-0.787916958,0.887137592,0.678234279,2306\n1979A,122.471,37.154,20170601,20.93626062,2635,7843,2202719.754,1169839.44,11,0.85059315,86.4906311,284.7306213,101133.1484,0.000863693,432.5138855,-5.31604e-05,68.90348053,0.848995745,0.052104175,0.560306191,2480\n1980A,122.41,37.161,20170601,18.70396601,2634,7834,2197722.335,1169290.105,27,0.750730753,81.57907104,284.5595398,101011.3281,0.000867269,413.0947571,-4.38782e-05,68.79725647,0.742632449,0.109971464,0.569379807,2367\n1981A,122.038,37.197,20170601,22.64730878,2629,7774,2167470.456,1165229.381,49,0.486324281,53.66136932,284.2849426,101081.7891,0.000929517,339.3569946,-1.14569e-05,68.07839966,0.391740322,0.288185418,0.582678914,2062\n1982A,122.019,37.187,20170601,19.37711864,2630,7771,2166315.478,1163642.351,44,0.473622024,53.17795181,284.2929993,101128.4219,0.00092996,337.01474,-1.10024e-05,68.05549622,0.379127055,0.283867031,0.57832551,2930\n1983A,121.531,36.913,20170601,20.8988604,2674,7693,2137020.943,1120939.008,24,0.297029167,103.4968414,284.7035522,101225.7266,0.000956236,348.9638977,-3.36368e-05,68.25534058,0.288829744,-0.069308795,0.585755289,2189\n1984A,121.544,36.907,20170601,18.6504298,2675,7695,2138236.688,1120520.469,27,0.306060523,104.4561081,284.7194519,101210.6094,0.000953183,353.0021362,-3.55043e-05,68.22831726,0.29637447,-0.076388501,0.600116432,2400\n1985A,120.636,31.155,20170601,39.32271468,3595,7550,2245392.004,432143.7455,4,1.490454435,270.9126587,289.3637085,101641.1797,0.001800512,329.4098206,-5.48224e-05,72.49164581,-1.490266442,-0.023670746,0.704465568,3136\n1986A,120.635,31.17,20170601,41.06571429,3593,7550,2244844.685,433850.3587,5,1.482085824,270.870697,289.3474731,101636.8281,0.001796414,329.5151978,-5.46027e-05,72.47696686,-1.481915712,-0.022452137,0.71391201,2860\n1987A,120.658,31.172,20170601,40.59217877,3593,7553,2246751.198,434606.6395,3,1.449633479,270.976532,289.3094177,101645.375,0.001796157,325.6022034,-5.13207e-05,72.56830597,-1.449424028,-0.024638103,0.711487293,2829\n1988A,120.953,31.388,20170601,37.71892655,3558,7600,2265250.898,466282.3172,7,1.137174726,267.0893555,288.7775879,101679.2344,0.001807365,312.8594055,-2.10617e-05,73.59786987,-1.135705113,0.057795018,0.700797856,2947\n1989A,120.999,31.381,20170601,37.6265625,3559,7608,2269390.478,466536.8355,3,1.132111192,266.75,288.8069153,101670.4453,0.001812175,313.7701111,-1.99695e-05,73.81433105,-1.130287528,0.064232931,0.707275391,2700\n1991A,120.721,31.671,20170601,43.43968254,3513,7563,2236717.59,493618.6458,59,1.096853256,263.1172485,288.5152588,101607.6484,0.002022156,309.8349915,-2.22294e-05,72.27472687,-1.088943124,0.131491572,0.71767801,5574\n1992A,120.734,31.656,20170601,43.63128492,3515,7565,2238286.361,492182.7686,24,1.093646288,263.1853638,288.5234375,101611.2109,0.002017042,310.2623901,-2.2153e-05,72.33341217,-1.085914373,0.129815906,0.711922705,4160\n1993A,120.526,31.874,20170601,37.58333333,3480,7532,2213909.63,512655.844,8,1.152732015,262.2667847,288.5232239,101641.5547,0.00200645,299.4348145,-2.33448e-05,71.54403687,-1.142241716,0.155161068,0.728489876,3382\n1994A,120.55,31.882,20170601,44.14265537,3479,7536,2215698.047,514121.6201,7,1.1661762,262.4104004,288.5354919,101646.7578,0.002006166,300.3103027,-2.31804e-05,71.63387299,-1.155953407,0.154073492,0.725712061,2849\n1995A,121.115,31.453,20170601,37.25837989,3548,7626,2277018.111,477519.3662,6,1.148671865,265.252594,288.8684692,101664.4766,0.001869651,328.8388977,-2.55006e-05,74.20243073,-1.144726872,0.095117867,0.694634199,2673\n1996A,121.14,31.422,20170601,36.98680352,3553,7630,2280119.755,474526.4237,3,1.146115661,265.4116211,288.8692627,101663.2188,0.001866136,328.5057983,-2.6152e-05,74.34291077,-1.142438531,0.091735512,0.685276031,3909\n1997A,119.146,31.955,20170601,48.35190616,3467,7311,2094352.926,491784.1327,21,1.131390333,263.0299072,288.182251,101239.3984,0.002315211,245.5321808,-1.83031e-05,69.56578064,-1.123023152,0.137343347,0.777030408,3367\n1998A,119.18,31.955,20170601,40.82033426,3467,7317,2097242.258,492509.33,18,1.116225839,263.0058594,288.173584,101250.7188,0.002309939,245.8154907,-1.82775e-05,69.60277557,-1.107913852,0.135967433,0.763398349,2898\n1999A,120.268,31.92,20170601,54.32535211,3473,7491,2190631.412,512193.2863,9,1.049233079,260.4625854,288.3274841,101629.9531,0.002059278,282.5405884,-2.27705e-05,70.63465881,-1.034723043,0.173891678,0.74609983,2348\n2000A,120.237,31.909,20170601,53.80617978,3475,7486,2188337.525,510229.7859,4,1.051629782,260.4096985,288.3249512,101628.1719,0.002050892,281.309906,-2.28259e-05,70.53587341,-1.036925197,0.175246224,0.749362946,3505\n2001A,120.302,31.92,20170601,56.37743733,3473,7496,2193513.676,512951.7971,5,1.046705961,260.4523926,288.3370056,101629.8203,0.002056117,284.5577698,-2.28534e-05,70.74123383,-1.03219986,0.173656955,0.743012309,2689\n2002A,119.818,31.354,20170601,47.49582173,3563,7419,2169365.122,436744.0927,8,1.484939218,258.0192871,289.3616028,101354.0156,0.002016003,319.4496765,-6.25229e-05,71.55879211,-1.452581286,0.308305174,0.745851994,2767\n2003A,119.794,31.371,20170601,48.33333333,3561,7415,2166805.162,438180.2523,1,1.432892442,257.9572754,289.2860107,101386.2188,0.002004848,312.0127258,-5.81421e-05,71.57782745,-1.40134573,0.299016446,0.740708411,2835\n2004A,119.579,31.751,20170601,40.41620112,3500,7381,2137170.674,477453.741,7,1.135902643,262.5191956,288.5517273,101615.7422,0.002010187,262.2275391,-2.99028e-05,69.46572876,-1.126228213,0.14793545,0.760685444,2847\n2005A,119.579,31.737,20170601,43.87361111,3502,7381,2137585.045,475831.9158,7,1.140962839,262.5109863,288.556366,101615.8828,0.001997268,262.714447,-3.03991e-05,69.50246429,-1.131224036,0.148756579,0.757739007,2625\n2006A,119.46,31.4,20170601,41.13091922,3556,7362,2137372.556,434220.0226,21,1.202006817,261.5230103,288.8313599,101578.8984,0.001886343,251.8521729,-2.40883e-05,71.03779602,-1.188867688,0.177240431,0.75641042,3791\n2007A,119.438,31.317,20170601,41.8005618,3569,7358,2137929.692,424135.2644,19,1.193521738,261.0742188,288.7021179,101252.5625,0.001873031,247.5405731,-2.04754e-05,71.48733521,-1.179060578,0.185230106,0.769857705,3573\n2008A,121.173,31.896,20170601,35.22303207,3477,7636,2268015.755,529952.9627,6,1.146961451,261.8303833,288.6109009,101705.7188,0.001996979,340.2286682,-3.29384e-05,74.13921356,-1.135314941,0.163035393,0.676090777,2852\n2009A,121.1518,31.89708,20170601,35.28041543,3477,7632,2266188.295,529588.4634,5,1.16392684,262.1202393,288.6333008,101710.1016,0.001997298,338.4962158,-3.32408e-05,74.05730438,-1.15293026,0.159616619,0.676906824,3260\n2010A,119.7183,30.2366,20170601,32.08100559,3742,7403,2193985.805,305560.443,44,0.67244333,320.7337952,289.1682434,99763.38281,0.002783078,206.3201447,-1.01556e-05,75.56233978,-0.425643414,-0.520583987,0.699158251,2634\n2011A,119.6942,30.2311,20170601,36.65868263,3743,7399,2192054.648,304388.8823,60,0.660592973,320.5175171,289.1073303,99573.25781,0.002803886,203.4999084,-9.9256e-06,75.63575745,-0.420069784,-0.509827852,0.703976393,3723\n2013A,119.946,30.049,20170601,31.72916667,3772,7439,2219365.401,289073.9742,14,0.626450121,309.6399536,289.4871216,100054.5703,0.002785187,210.4428864,-1.15656e-05,74.15386963,-0.482436299,-0.399618506,0.694573581,3362\n2014A,120.091,29.305,20170601,32.27683616,3891,7463,2254295.032,206896.5633,75,0.737074077,299.9815674,290.2668152,99862.5625,0.002012749,257.0974121,-1.11376e-05,71.07883453,-0.63846606,-0.368292391,0.624889493,2909\n2015A,120.04,29.334,20170601,33.41340782,3887,7454,2248945.915,209054.9511,79,0.730431855,306.7442627,290.3661194,100147.7109,0.002084197,252.8818817,-1.13591e-05,71.08288574,-0.585333467,-0.436938643,0.627880335,2648\n2018A,121.989,39.625,20170601,30.40555556,2240,7766,2083519.771,1448477.073,121,0.23139587,257.2958679,282.3086548,100666.1953,0.000669331,267.568512,-1.1178e-05,60.92406845,-0.225728974,0.050896782,0.608800173,3248\n2019A,122.011,39.617,20170601,32.03191489,2241,7770,2085439.957,1448004.9,92,0.207656801,259.9527588,282.2541809,100642.1641,0.000671917,264.8847961,-1.10987e-05,61.00244141,-0.204470724,0.036236256,0.614898324,2389\n2031A,113.1817,27.9958,20170601,39.6686747,4101,6357,1670498.489,-82338.52277,64,0.755009055,343.4105225,291.2310181,100615.6719,0.002723373,223.0370941,-1.61304e-05,72.54686737,-0.21562539,-0.723563671,0.762653053,4528\n2054A,114.1044,32.1078,20170601,50.29519774,3443,6505,1659795.998,413303.0189,84,0.342128307,245.9837952,288.0976257,100634.9063,0.001848727,215.9733887,-1.50819e-05,71.77636719,-0.312505662,0.139255166,0.838692904,3092\n2064A,114.0122,32.1403,20170601,44.81843575,3438,6490,1651137.98,415567.3379,100,0.314103663,245.0543671,288.0062866,100430.4844,0.001839447,215.7365723,-1.65271e-05,72.26110077,-0.284796,0.1324853,0.837379336,3710\n2065A,114.0681,32.1342,20170601,48.12083333,3439,6499,1656072.51,415791.4722,86,0.33098039,244.0778809,288.04776,100527.9141,0.001839149,215.3658295,-1.57024e-05,71.78760529,-0.297675401,0.144697547,0.840458155,2648\n2066A,114.0614,32.1383,20170601,51.8125,3438,6498,1655403.309,416160.2028,89,0.328555495,243.3849182,288.0372925,100509.375,0.00183664,215.1823273,-1.58265e-05,71.75837708,-0.293735743,0.147200644,0.840706825,2785\n2067A,114.6613,33.6128,20170601,51.95903955,3202,6594,1671648.828,599821.676,49,0.744743466,236.741806,288.1369019,101074.7188,0.001573164,198.3740997,-1.23834e-05,62.62329865,-0.622748315,0.408445001,0.877117038,2463\n2068A,114.6758,33.6347,20170601,49.04929577,3199,6596,1672341.262,602649.555,49,0.748358071,236.5259247,288.1223145,101065.2266,0.001586124,198.0141907,-1.23871e-05,62.57056808,-0.624219954,0.412782282,0.87323755,3095\n2069A,114.6546,33.5979,20170601,50.46760563,3204,6593,1671442.824,597951.633,49,0.742731571,236.9082794,288.1467896,101082.1563,0.001565866,198.5998993,-1.23796e-05,62.65990829,-0.622246921,0.40553543,0.873512506,2865\n2070A,114.6369,33.6406,20170601,53.37290503,3198,6590,1668938.278,602683.5832,51,0.739221036,235.8690338,288.1241455,101059.7109,0.001560205,198.2514496,-1.24174e-05,62.544384,-0.611883581,0.414784551,0.870157361,2970\n2074A,117.6569,24.5157,20170601,27.33613445,4658,7073,2168256.488,-393867.4781,14,0.621001422,248.913269,293.8982544,100310.4141,0.002129103,191.2363129,-1.00656e-05,77.4164505,-0.579409301,0.223444968,0.43692854,2568\n2075A,117.6336,24.4674,20170601,27.59357542,4665,7069,2167348.216,-399847.8234,48,0.607177198,243.053009,293.5982971,99639.15625,0.002187408,195.939743,-1.14019e-05,77.71063995,-0.541244745,0.275169551,0.421488822,5669\n2160A,112.85,35.5051,20170601,58.35552408,2899,6304,1478211.651,794820.4104,732,0.480250508,251.0019531,284.1273499,92393.85156,0.00100591,171.7619171,-6.0896e-06,59.91003418,-0.45408538,0.156355411,0.656301141,2082\n2161A,112.835,35.4934,20170601,59.60277778,2901,6302,1477238.434,793203.7922,709,0.456651896,250.0981445,284.1417236,92362.33594,0.00100555,171.1280212,-6.06758e-06,59.78850555,-0.429373711,0.155464351,0.656714261,2156\n2162A,112.8564,35.4883,20170601,59.66573816,2902,6305,1479102.825,792919.3951,710,0.467280239,258.1205139,284.2034912,92513.29688,0.001013652,170.318634,-6.13769e-06,59.82877731,-0.457268506,0.096209839,0.676228344,2363\n2163A,112.8664,35.4894,20170601,56.08169014,2902,6307,1479897.967,793200.7394,726,0.483200043,261.715271,284.2384949,92617.13281,0.001016469,170.1770172,-6.18311e-06,59.89573288,-0.47815454,0.069645554,0.665664554,2519\n2164A,112.8252,35.4813,20170601,60.03361345,2903,6300,1476699.522,791617.9062,726,0.42642048,250.3935242,284.124176,92247.38281,0.00101096,170.0814362,-6.02659e-06,59.60507202,-0.401691258,0.143103316,0.663295627,2784\n2165A,112.8453,35.546,20170601,54.41501416,2893,6303,1476933.691,799612.6792,848,0.510300338,242.1949158,283.9302368,92026.82031,0.000999556,173.6820679,-5.97518e-06,59.94342804,-0.451373279,0.238051742,0.642809808,3510\n2166A,112.44,39.3514,20170601,38.79971989,2284,6238,1362168.935,1248372.085,1098,1.253728628,71.7040863,279.5061646,88112.83594,0.000988894,173.3073425,-3.74035e-06,53.73200226,1.190335393,0.393620402,0.417336941,2086\n2167A,112.4549,39.3606,20170601,36.20538244,2282,6241,1363122.309,1249682.388,1101,1.263934135,73.78655243,279.526947,88128.86719,0.000975647,173.5114136,-3.72637e-06,53.46703339,1.213651776,0.352957249,0.421209037,2641\n2168A,112.4254,39.3179,20170601,46.64705882,2289,6236,1361760.843,1244150.952,1095,1.253083229,67.2808075,279.6309814,88407.94531,0.000999305,171.4592438,-3.72581e-06,53.97813034,1.155838251,0.48399955,0.428279877,1871\n2169A,112.4078,39.3265,20170601,48.93417367,2288,6233,1360215.148,1244938.864,1104,1.243502975,67.59925842,279.388031,87890.69531,0.001008321,172.6505585,-3.76435e-06,54.18214417,1.149653077,0.473917067,0.418770075,2113\n2170A,112.4279,39.3673,20170601,35.7987988,2281,6236,1360891.865,1250111.91,1117,1.25028348,73.92602539,279.3161621,87721.1875,0.000994448,175.1917572,-3.78054e-06,53.82436371,1.201390505,0.346221894,0.413744211,2777\n2171A,112.7549,37.7019,20170601,59.83055556,2548,6289,1422573.517,1055309.148,822,0.515580297,245.4406586,283.4151611,91511.89844,0.000796085,154.3292084,-6.42277e-06,51.69888687,-0.468929231,0.214309245,0.512913585,1784\n2173A,112.7306,37.7111,20170601,57.2367688,2546,6285,1420447.114,1056057.217,806,0.472042054,250.9978027,283.4724731,91538.11719,0.00078821,151.3427124,-6.41289e-06,51.44772339,-0.446312994,0.153715312,0.519373357,2212\n2174A,112.7105,37.7087,20170601,62.86173184,2547,6282,1418906.609,1055479.935,799,0.45923692,250.9508362,283.6018982,91726.75781,0.000789204,150.3637238,-6.41473e-06,51.45659256,-0.434083134,0.149901271,0.520622313,2777\n2175A,110.9956,35.0147,20170601,73.66899441,2978,6007,1335683.659,709898.2065,355,1.170674324,248.8930664,286.9493713,96110.48438,0.00095434,165.1033783,-1.27028e-05,58.90702057,-1.09211874,0.421609819,0.617738903,2071\n2176A,111.0233,35.0611,20170601,63.99438202,2970,6012,1337066.675,715802.8353,367,1.192007899,244.7565613,287.2636719,97178.64063,0.000975219,161.3008423,-1.13962e-05,59.02674866,-1.078158855,0.508385897,0.619306922,2364\n2178A,110.9678,35.0308,20170601,72.14185393,2975,6003,1333068.274,711438.7731,362,1.150477529,248.6179047,287.1377869,96518.46875,0.000945231,162.3888092,-1.19863e-05,58.51220322,-1.071275115,0.419485599,0.61713022,3126\n2179A,111.0414,35.1147,20170601,57.46648045,2962,6015,1337511.652,722435.4393,378,1.193482399,240.7014465,287.4403992,97901.0,0.000992634,156.6450653,-1.03128e-05,58.97314453,-1.040795684,0.584075809,0.617802501,3148\n2180A,112.7356,38.4186,20170601,59.60806916,2433,6286,1405400.437,1140755.144,789,0.404523879,38.41837692,282.6290588,91183.39844,0.001036057,105.0215073,-2.69457e-06,52.31288528,0.25136447,0.316947103,0.49778372,1960\n2181A,112.7383,38.4519,20170601,53.09014085,2428,6286,1404884.567,1144779.75,782,0.339300066,49.06974792,282.7994385,91406.52344,0.001043609,102.8699036,-2.58138e-06,52.14321136,0.256338179,0.222295448,0.494992226,2532\n2182A,112.7003,38.4928,20170601,49.83427762,2421,6280,1401015.904,1149133.403,787,0.414336711,83.73331451,282.8284607,91582.14844,0.001129076,99.84103394,-2.58591e-06,52.49736786,0.411858946,0.045245245,0.477023661,2745\n2183A,111.1406,37.5211,20170601,61.23537604,2577,6030,1298047.234,1011322.568,954,0.98660177,245.8887939,282.6286316,88683.34375,0.000979714,164.5884552,-6.18655e-06,50.98200226,-0.900511265,0.403066337,0.450992316,2108\n2185A,111.1297,37.5136,20170601,59.83844011,2578,6029,1297327.388,1010279.988,956,0.999191701,244.9355621,282.6859436,88736.80469,0.00097069,164.6408386,-6.20374e-06,50.83869553,-0.905085564,0.423325092,0.445770621,2233\n2186A,106.8219,39.6719,20170601,43.65340909,2233,5339,921299.9973,1221730.395,1104,0.531984389,0.856405258,284.377655,88134.63281,0.00025897,356.1768799,-6.05102e-06,33.44136047,0.007951069,0.531924963,0.371391237,1709\n2187A,106.8089,39.6969,20170601,36.94972067,2229,5337,919926.2561,1224635.274,1089,0.572850943,181.8816528,284.4541931,88340.05469,0.000255678,352.4972534,-5.91208e-06,33.28762817,-0.018809484,0.572542071,0.378238142,2341\n2188A,106.7931,39.6572,20170601,38.36629526,2235,5335,919280.9964,1219681.008,1092,0.543146789,2.647675991,284.4393921,88238.41406,0.000260353,356.4842834,-6.02153e-06,33.2258606,0.02508869,0.542567015,0.360314876,620\n2189A,122.2603,43.6267,20170601,21.67696629,1600,7810,1969927.288,1924798.079,178,0.935547531,45.03133392,279.7679443,99447.55469,0.00067176,325.7674255,-5.83928e-06,46.80221558,0.661878347,0.661185503,0.41636768,2016\n2190A,122.3039,43.6156,20170601,22.00710227,1602,7817,1973369.536,1924365.265,175,0.956740677,44.02510452,279.7571411,99480.5,0.000682122,324.0717163,-6.1277e-06,47.08013916,0.664893806,0.687945485,0.415284872,2486\n2191A,122.2532,43.6801,20170601,20.17887324,1591,7808,1967636.207,1930947.429,175,0.891622245,47.11419296,279.763855,99452.13281,0.000664869,327.8914185,-5.75062e-06,46.47060394,0.653287113,0.606799901,0.399967492,2616\n2192A,119.7594,49.2261,20170601,15.27361111,704,7409,1622193.781,2541301.901,609,1.036782622,65.64511108,271.9096375,93871.0,0.000566243,219.2879181,-5.26977e-06,64.62444305,0.944503486,0.427587777,0.167937577,1582\n2194A,107.5936,40.916,20170601,28.17335244,2034,5463,961710.3623,1379813.209,1033,0.17704615,57.58438873,282.5994263,89611.53125,0.000252741,198.9614868,-6.39003e-06,33.10530853,0.149456322,0.09491124,0.391774625,2247\n2195A,107.4211,40.7608,20170601,25.21610169,2058,5435,950998.4104,1359328.547,1040,0.293677479,52.34536362,282.9934082,89954.98438,0.00024931,198.2429352,-6.39955e-06,33.65159988,0.23250179,0.179413959,0.380846113,1425\n2196A,107.3715,40.7378,20170601,27.96590909,2062,5427,947573.7867,1356062.368,1040,0.285980821,54.19656372,282.9250183,89846.64063,0.000251976,195.9321289,-6.2974e-06,33.7673378,0.231934026,0.167307049,0.385956138,2749\n2197A,113.1306,40.9923,20170601,19.8487395,2021,6349,1378766.173,1454987.04,1374,1.389757633,95.23073578,277.5353088,86205.32813,0.000677194,266.2433472,-7.30819e-06,50.05215454,1.38397634,-0.126631945,0.386386573,2338\n2200A,122.0506,46.0703,20170601,10.9972067,1209,7776,1873748.392,2208821.153,274,1.342645407,104.9668427,277.0335388,97755.45313,0.000747596,296.205658,-6.4644e-06,51.87607956,1.297115564,-0.346681446,0.292271703,1937\n2201A,121.9462,46.0756,20170601,9.045961003,1208,7759,1866523.407,2207459.456,299,1.374847412,104.7194138,276.8456421,97493.125,0.000766129,296.1846313,-6.48687e-06,52.33117676,1.329746127,-0.349257469,0.283757746,3054\n2202A,116.1042,43.9317,20170601,15.73460411,1551,6825,1524992.39,1851538.995,1007,0.765536726,66.50341034,276.6970215,89311.70313,0.000287773,320.1216736,-4.94596e-06,45.5569191,0.702050865,0.30523932,0.314478874,1847\n2203A,116.0781,43.9311,20170601,17.65738162,1551,6820,1523151.087,1851062.337,992,0.79381597,67.57935333,276.7290955,89322.67188,0.000284394,319.6823425,-4.90322e-06,45.40840912,0.733799815,0.302789748,0.312423199,1721\n2204A,105.6775,38.8343,20170601,29.56703911,2367,5156,843554.946,1110050.957,1545,0.431638181,265.2961121,283.3588562,85688.60156,0.000357864,262.8854675,-5.74262e-06,36.90644455,-0.430182815,0.035415825,0.326920897,1682\n2205A,105.6975,38.843,20170601,33.15181058,2365,5160,845013.6566,1111275.934,1597,0.389483571,259.2996216,282.954895,85063.52344,0.000380539,264.3408813,-5.85472e-06,37.2563324,-0.382708132,0.072332188,0.33673802,1729\n2206A,105.724,38.8516,20170601,29.55477528,2364,5164,846984.5609,1112545.109,1666,0.346425951,254.4539948,282.5476074,84422.32813,0.000402444,265.7690125,-5.9628e-06,37.64739227,-0.333748609,0.092859104,0.337020218,1813\n2207A,121.6178,41.9967,20170601,23.90422535,1861,7707,1978051.948,1719791.53,130,0.706633925,54.96004486,280.6085205,99944.10938,0.000831713,313.5397949,-5.3518e-06,51.6814537,0.578546345,0.405728489,0.522704482,2171\n2208A,121.6561,42.0186,20170601,25.61772853,1857,7713,1980110.113,1723144.197,142,0.755217731,57.48738861,280.4088745,99496.03125,0.000838532,316.0150146,-5.43617e-06,51.54109955,0.636842847,0.405937195,0.521852255,1733\n2209A,121.6972,42.0503,20170601,24.87606838,1852,7720,1982046.965,1727708.862,156,0.807763219,59.86421204,280.2131042,99053.88281,0.000847968,318.7912903,-5.55576e-06,51.36547089,0.698571801,0.405559868,0.515846491,2882\n2210A,121.6722,42.0228,20170601,28.55070423,1856,7716,1981138.803,1723963.731,145,0.775674939,58.43053436,280.3300781,99311.96875,0.000841892,316.8934631,-5.48192e-06,51.4942131,0.660867512,0.406110436,0.527018189,2148\n2211A,121.6592,42.0486,20170601,23.12188366,1852,7713,1979351.133,1726742.503,157,0.768486083,58.30780029,280.3286438,99347.92969,0.000842473,317.6134338,-5.452e-06,51.42351151,0.653879344,0.403748274,0.512108445,2700\n2212A,123.2,41.1953,20170601,26.80898876,1989,7960,2120217.328,1658581.095,81,1.115287066,193.380249,280.9151611,100495.6484,0.001044164,260.6088867,-8.66503e-06,54.25777435,-0.25808388,1.085015178,0.570164502,2653\n2213A,123.15,41.2553,20170601,28.93661972,1979,7952,2114489.313,1664537.52,24,1.044148564,188.657486,281.07724,100955.6484,0.001033832,265.7355347,-8.91004e-06,52.25619507,-0.157168552,1.032252073,0.573555589,2610\n2214A,123.1761,41.2736,20170601,31.98467967,1976,7956,2115763.165,1667244.861,27,1.027720332,188.5934143,281.02771,100954.7891,0.001036194,264.5457764,-8.9392e-06,52.4006424,-0.153559297,1.016183376,0.57888782,2032\n2215A,123.1417,41.2894,20170601,33.12921348,1974,7951,2112705.527,1668357.147,21,1.004803896,186.644043,281.1124268,101082.6563,0.001031844,267.2101746,-8.81095e-06,51.84498215,-0.116253331,0.998056173,0.582609951,2688\n2216A,123.8139,42.3022,20170601,27.88053097,1812,8058,2125927.469,1801558.985,59,1.102552652,18.07344627,280.2128906,100743.1484,0.001080358,296.0635071,-1.05773e-05,51.80924606,0.342041641,1.048155427,0.52020967,3603\n2217A,123.8831,42.2953,20170601,30.840625,1813,8069,2131130.049,1802249.807,77,1.078734398,15.34309292,280.0916443,100510.7266,0.001095789,294.0438538,-1.1015e-05,52.51746368,0.285422772,1.040289164,0.515350103,3485\n2218A,123.8489,42.2864,20170601,32.58333333,1814,8064,2128994.767,1800465.997,86,1.084157944,16.26812744,280.1493225,100595.5156,0.001091814,295.0588379,-1.08059e-05,52.2274971,0.303699523,1.040752172,0.528179288,2893\n2219A,123.7153,42.2217,20170601,31.41666667,1825,8042,2121699.179,1789996.492,58,1.052132249,17.39409447,280.3673096,100879.0859,0.001087904,297.6304932,-1.01178e-05,51.33463287,0.314517856,1.004022241,0.537185192,3710\n2220A,120.4439,41.5931,20170601,27.10888252,1925,7519,1905460.834,1648952.346,174,0.694162071,76.59540558,281.1581116,98463.25781,0.00073706,287.0365906,-4.90828e-06,48.51871872,0.675244868,0.160951361,0.544203877,2238\n2221A,120.4486,41.5672,20170601,25.5915493,1929,7520,1906615.979,1645982.219,168,0.688925862,72.19995117,281.1743774,98395.90625,0.000729882,286.1395874,-4.93262e-06,48.52017212,0.655938566,0.210626394,0.551502764,1894\n2222A,120.4247,41.5647,20170601,24.74857955,1930,7516,1904943.761,1645223.172,174,0.690934122,73.25019836,281.1590881,98347.17969,0.000724837,285.9662476,-4.88964e-06,48.51923752,0.661611915,0.199147254,0.549625516,2409\n2223A,120.3939,41.615,20170601,24.47443182,1922,7511,1901115.832,1650572.614,216,0.714353502,83.97556305,280.9645386,98080.49219,0.000739415,288.8837891,-4.82522e-06,48.55553055,0.710405052,0.075003989,0.529945552,3401\n2224A,124.3419,43.1747,20170601,44.17746479,1672,8143,2132306.475,1915167.6,163,1.25522995,24.29963684,278.6562195,99670.41406,0.001122397,290.611969,-9.13661e-06,55.59843826,0.516523421,1.144030452,0.488097876,2547\n2225A,124.3711,43.1594,20170601,48.26264045,1675,8147,2134916.69,1914010.982,172,1.228613615,24.84180641,278.601593,99548.76563,0.001135458,290.3252258,-9.39883e-06,56.01652145,0.516143918,1.114938021,0.481749922,2130\n2226A,124.3897,43.1847,20170601,31.2745098,1671,8150,2135315.17,1917375.985,172,1.245658398,25.97842789,278.567749,99516.21875,0.001133413,290.7432556,-9.47161e-06,56.07120895,0.545623958,1.11980319,0.481185198,2266\n2227A,125.1358,42.8947,20170601,33.01549296,1717,8270,2198555.969,1899935.845,266,1.222893,41.14221573,277.7783813,97898.50781,0.001161611,275.5865479,-9.18489e-06,60.2246933,0.804558814,0.920951903,0.479208648,2510\n2228A,125.1567,42.8953,20170601,33.06657224,1717,8273,2200010.373,1900473.671,268,1.223889828,41.37622833,277.7859802,97905.3125,0.001167713,275.0844727,-8.95835e-06,60.26158524,0.808972418,0.918406248,0.478661478,2140\n2229A,125.9361,41.7156,20170601,31.46935933,1906,8398,2299706.172,1780880.442,405,0.580253839,12.05024624,276.1308594,95285.48438,0.001152153,218.7411346,-6.106e-06,71.61966705,0.12113589,0.567468643,0.49320814,2193\n2230A,125.9486,41.7381,20170601,30.97625698,1902,8400,2299752.038,1783789.329,390,0.599119246,12.36921501,276.0752563,95206.01563,0.001151769,219.2610016,-6.0522e-06,71.61951447,0.128333911,0.585213006,0.49060452,2644\n2231A,126.4047,41.9206,20170601,37.63445378,1873,8473,2325477.778,1815731.35,483,0.638025701,38.32817841,275.3294067,94093.1875,0.001317453,219.3965302,-6.41946e-06,75.4845047,0.395671278,0.500520766,0.484874249,2585\n2232A,126.4078,41.9419,20170601,32.37709497,1869,8473,2324880.745,1818278.223,500,0.647617877,37.19845963,275.3440247,94072.5,0.001318248,221.3408356,-6.56498e-06,75.49783325,0.391525477,0.515865028,0.460416764,2581\n2233A,124.8292,45.0878,20170601,27.28830084,1366,8221,2096559.17,2149522.049,134,1.231211782,38.10520172,277.7322388,99947.17969,0.00073872,254.6051636,-9.78751e-06,55.52175903,0.759770751,0.968829632,0.394981861,2514\n2234A,124.8528,45.1642,20170601,29.24404762,1354,8224,2095364.912,2158961.83,134,1.174448133,39.40567017,277.6005249,99854.25,0.000732931,253.9140167,-1.00994e-05,55.38992691,0.745529532,0.907476842,0.386989623,2067\n2235A,122.8444,45.6289,20170601,27.69308357,1279,7903,1942404.51,2172223.985,151,0.832130551,85.39241028,278.240509,99635.21094,0.000604783,285.396698,-7.5794e-06,48.43993378,0.829438388,0.066882282,0.341090202,2185\n2236A,122.8211,45.6175,20170601,18.97067039,1281,7899,1941213.222,2170421.749,152,0.830276847,86.15685272,278.2516785,99615.13281,0.000605321,286.6825256,-7.50184e-06,48.39455414,0.828407288,0.055686295,0.331344694,2036\n2237A,129.4892,42.8939,20170601,17.38028169,1717,8966,2503912.371,2004032.498,180,1.011323571,88.91830444,276.5528564,97820.65625,0.000780401,299.2271729,-3.29339e-06,67.62123871,1.011142492,0.019138074,0.40419969,2405\n2238A,129.5042,42.9061,20170601,20.3913649,1715,8969,2504442.429,2005817.391,180,0.979317307,90.25302887,276.5004883,97651.24219,0.000786697,298.5923767,-3.3222e-06,67.61209869,0.97930795,-0.004279356,0.408384055,2065\n2239A,129.3675,42.8775,20170601,16.46751412,1720,8947,2496128.983,1999050.127,218,1.134649038,87.19962311,276.6505737,98006.32031,0.000797148,304.6461487,-3.4917e-06,67.77149963,1.133291602,0.055485651,0.407669276,3687\n2240A,130.962,45.2924,20170601,22.86111111,1333,9202,2500953.222,2316743.588,206,1.259371758,78.80725098,274.7574768,97771.85156,0.000966321,297.4319458,-5.74787e-06,69.00905609,1.235408187,0.24450697,0.383280218,2052\n2241A,130.9817,45.305,20170601,30.75431034,1331,9205,2501708.433,2318687.254,187,1.257111549,79.94828033,274.7881165,97830.67188,0.000958537,297.3721619,-5.73697e-06,69.0633316,1.237806559,0.219463632,0.382986218,2260\n2242A,131.0103,45.2948,20170601,25.48174157,1333,9210,2504055.155,2318248.399,190,1.266902089,78.77550507,274.7669067,97879.45313,0.000963974,298.3456421,-5.73262e-06,68.97348022,1.242658734,0.246657655,0.378085375,2324\n2243A,130.9298,45.2978,20170601,22.03703704,1332,9197,2498577.961,2316542.537,244,1.252220869,79.46941376,274.7644043,97731.46875,0.000964059,296.017395,-5.7702e-06,69.06118011,1.231120944,0.228906736,0.383184552,2506\n2244A,130.2659,47.3349,20170601,25.09206799,1006,9091,2366724.865,2533591.381,175,1.221241355,104.8328629,273.7519226,99180.70313,0.000927327,220.5894012,-5.78453e-06,67.42763519,1.180562496,-0.312574446,0.344137907,1992\n2245A,130.261,47.2753,20170601,23.20251397,1016,9090,2368975.199,2526635.346,145,1.217135906,102.833168,273.7487183,99508.57031,0.000895055,215.3112335,-5.88906e-06,67.04514313,1.186747193,-0.27027896,0.354332983,1781\n2246A,130.3172,47.3489,20170601,18.87857143,1004,9099,2369414.807,2536433.755,167,1.22297585,104.84832,273.719696,99182.07031,0.000909141,222.5641327,-6.03087e-06,66.99106598,1.182154655,-0.313337326,0.34131664,2190\n2247A,130.1097,47.3382,20170601,17.86571429,1006,9066,2356551.752,2530215.852,165,1.211852551,106.1408234,273.8323059,98534.24219,0.00099897,220.8084564,-5.24671e-06,69.71770477,1.164101243,-0.336830497,0.333137006,3711\n2248A,131.1638,46.6572,20170601,28.1755618,1115,9234,2454156.754,2477988.922,171,1.591771722,64.15701294,274.4983826,98910.52344,0.000981885,287.2829895,-7.6076e-06,66.63980103,1.432558894,0.693910897,0.367050588,2415\n2249A,131.1651,46.619,20170601,26.38235294,1121,9234,2455925.625,2473652.797,148,1.56174469,63.78240585,274.4595642,98479.13281,0.001023261,290.5139771,-7.51846e-06,67.30860901,1.401054025,0.689995646,0.37264806,2648\n2250A,131.1516,46.6462,20170601,32.94225352,1117,9232,2453851.48,2476426.225,150,1.573465586,63.75320435,274.4778748,98711.86719,0.000997678,287.9507446,-7.57669e-06,66.90652466,1.411214471,0.695893347,0.370402187,2380\n2251A,131.1572,46.5888,20170601,31.57807808,1126,9233,2456745.18,2470001.516,166,1.528999805,63.39850616,274.3969421,98117.24219,0.001057673,293.0010376,-7.44515e-06,67.88625336,1.367121458,0.684703946,0.365666866,3368\n2252A,128.8736,47.7222,20170601,17.74193548,945,8868,2261062.045,2545351.046,236,0.80924207,59.2206955,272.6233521,97133.95313,0.001100571,181.5938568,-3.45161e-06,74.71936798,0.695243478,0.414136767,0.312150061,2412\n2253A,128.9094,47.7317,20170601,18.82248521,943,8873,2262962.407,2547270.472,248,0.76622653,59.92066193,272.6238098,97123.69531,0.001088169,181.3152924,-3.41212e-06,74.44569397,0.663028598,0.384052247,0.313867033,4110\n2254A,129.4942,48.4658,20170601,14.43993994,826,8967,2269468.985,2645274.897,431,1.060719252,88.22642517,272.4632874,96202.69531,0.0011442,279.7743835,-5.30721e-06,71.35535431,1.060209632,0.032877073,0.295710385,5660\n2255A,130.2719,46.8025,20170601,28.64647887,1092,9091,2390031.597,2472648.711,82,1.240229607,60.56204224,274.4664917,100031.8828,0.000705877,207.1914978,-8.80682e-06,65.10733795,1.080082536,0.609582782,0.368902862,2553\n2256A,130.3961,46.8267,20170601,31.34682081,1088,9111,2397035.374,2478450.47,78,1.299665689,55.59780884,274.7007751,100108.9375,0.00075057,218.2768707,-8.74929e-06,64.94659424,1.072322607,0.734339833,0.364023894,1857\n2257A,130.3258,46.7975,20170601,32.52089136,1092,9100,2393740.876,2473387.084,82,1.275984049,56.74259949,274.4707336,99962.53906,0.000727686,212.4485016,-8.81381e-06,65.11225891,1.066976905,0.699782431,0.368902326,2114\n2258A,130.3648,46.8032,20170601,23.81714286,1092,9106,2396022.498,2474991.537,82,1.301913738,54.60100555,274.5829773,100037.3125,0.000743546,215.9531555,-8.81848e-06,65.11553192,1.061218023,0.754185379,0.375943929,1659\n2259A,130.3794,46.7588,20170601,31.27683616,1099,9109,2398885.91,2470254.72,103,1.280087352,52.23353577,274.6879883,99727.85938,0.000773934,218.6244812,-8.96756e-06,65.39828491,1.011905432,0.784009576,0.366232425,3165\n2260A,131.0032,45.7677,20170601,36.55084746,1257,9208,2482815.008,2372189.291,216,1.180631995,79.34379578,274.5822144,98588.08594,0.000993838,285.6298218,-6.26285e-06,70.49327087,1.160262346,0.218364567,0.386563987,2153\n2261A,130.8625,45.8194,20170601,28.55477528,1249,9186,2471285.721,2374560.904,185,1.229182959,71.31165314,274.5661011,98913.14844,0.000944573,281.9474792,-6.10919e-06,70.0810318,1.164360404,0.39389804,0.375061423,3027\n2262A,130.9467,45.8309,20170601,29.78267045,1247,9199,2476322.779,2377997.411,294,1.201147079,74.0170517,274.6150818,98922.9375,0.000931429,283.6371765,-6.17343e-06,70.24242401,1.154702544,0.33078143,0.365109205,4099\n2266A,126.9934,46.6384,20170601,29.89728097,1118,8567,2182647.764,2377406.709,179,0.880041957,60.71829224,274.9450073,99416.40625,0.000813144,190.606781,-7.22109e-06,65.49192047,0.767581582,0.430455983,0.362668186,1582\n2267A,126.9636,46.6527,20170601,30.71186441,1116,8562,2180126.846,2378405.876,175,0.873803139,61.62137604,274.9441833,99444.42188,0.000810609,190.8537598,-7.19754e-06,65.32666779,0.768781483,0.41533953,0.365864515,2509\n2268A,124.1186,50.4269,20170601,16.56714286,512,8107,1857177.964,2759831.032,399,0.840717018,114.0391769,271.8976746,95943.70313,0.00077294,230.1941223,-4.56524e-06,65.79052734,0.767819285,-0.342430532,0.188500807,3060\n2269A,124.1303,50.4217,20170601,13.39714286,513,8109,1858087.728,2759444.859,391,0.837508917,114.0418091,271.9159241,95981.82813,0.000772871,230.3892365,-4.59441e-06,65.73883057,0.764873624,-0.341158956,0.189137638,2437\n2270A,117.3961,32.939,20170601,64.66016713,3310,7031,1918670.525,570678.7543,22,1.080824018,249.8131409,288.1527405,101435.6563,0.002250776,229.1140442,-1.81879e-05,66.38648224,-1.014417887,0.373010516,0.791068852,2402\n2271A,117.3575,32.9444,20170601,63.05042017,3309,7025,1915274.79,570557.055,23,1.080721855,250.1609039,288.1721497,101444.9688,0.00223539,228.3403778,-1.90107e-05,66.26745605,-1.01656723,0.366811901,0.789175987,2151\n2272A,117.3086,32.935,20170601,54.68539326,3310,7017,1911411.977,568505.7049,23,1.081582546,250.7500305,288.1820984,101444.8047,0.002217807,227.4403687,-2.00088e-05,66.17932129,-1.021097541,0.356624097,0.796961486,3390\n2273A,117.4186,32.8913,20170601,42.02521008,3317,7035,1921859.316,565542.2786,22,1.08006537,249.8610992,288.0968018,101385.8906,0.002272437,229.8716583,-1.72625e-05,66.68421936,-1.014017582,0.371899992,0.801276863,3070\n2274A,117.3536,32.9673,20170601,49.43333333,3305,7025,1914326.575,573158.7524,18,1.078963041,249.953064,288.1928406,101462.7734,0.002230062,228.1148987,-1.91803e-05,66.14646149,-1.0135777,0.369894058,0.793555319,2762\n2275A,117.3065,32.8985,20170601,46.36619718,3316,7017,1912221.04,564196.9243,24,1.086892486,251.0886993,288.156189,101423.5391,0.002223765,227.8575592,-1.98286e-05,66.34241486,-1.02821064,0.352303892,0.797428012,2995\n2277A,116.8028,32.7639,20170601,56.22284123,3338,6936,1873314.827,538750.1656,23,1.061765194,255.7071533,288.4064941,101381.6016,0.002212979,218.6503754,-2.04683e-05,65.74108887,-1.028889656,0.26216647,0.798549533,4314\n2278A,117.0083,32.645,20170601,60.11376404,3357,6969,1893844.015,528782.6294,33,1.12166965,255.1430969,288.3251343,101189.9688,0.002166557,225.3109283,-2.35231e-05,66.04001617,-1.084160209,0.287644565,0.796956658,2615\n2279A,116.8556,32.6028,20170601,56.07520891,3364,6945,1882038.359,520914.3597,46,1.086727619,255.9489746,288.3945618,101251.4219,0.002164011,221.2746735,-2.46092e-05,66.01789093,-1.054202199,0.263883591,0.796525896,2932\n2280A,116.8306,32.6319,20170601,54.37900875,3359,6941,1879152.294,523839.07,50,1.077997923,256.0991821,288.4120483,101297.5,0.002176847,220.4829407,-2.4011e-05,65.95225525,-1.046416521,0.259021372,0.802841544,3855\n2281A,116.7039,32.625,20170601,58.06582633,3360,6921,1868605.852,520615.6857,21,1.062380075,256.8199158,288.4088745,101390.7578,0.002175478,216.5729828,-2.3615e-05,65.93348694,-1.034385562,0.242276877,0.790068328,4608\n2282A,116.8008,33.975,20170601,53.05138889,3144,6936,1841119.281,680683.2468,62,1.082316756,244.4416809,287.6891479,101234.4453,0.001803476,203.7582092,-1.24087e-05,63.0742836,-0.976392984,0.466975778,0.813908815,3487\n2283A,116.8067,33.8997,20170601,59.70949721,3156,6937,1843604.428,671952.2147,29,1.083043218,246.0786743,287.7176514,101262.5078,0.001905322,203.9851227,-1.25052e-05,63.25701141,-0.989998281,0.439187914,0.80707562,2992\n2284A,116.7844,33.9461,20170601,55.20448179,3149,6933,1840522.036,676982.2799,32,1.079333901,245.0466309,287.716156,101268.2188,0.001838218,203.6351166,-1.24638e-05,63.10512161,-0.978564322,0.455382824,0.814001501,3018\n2285A,117.8178,30.9414,20170601,52.25837989,3629,7099,2009153.015,346414.2246,29,0.941267431,285.0881042,289.1896973,101191.9453,0.002054569,216.7509918,-2.27234e-05,70.55384064,-0.908832014,-0.244966686,0.756169438,3334\n2286A,117.8078,30.9222,20170601,57.00139276,3633,7097,2008815.039,343981.7322,58,0.928633273,284.4909058,289.1851196,101075.5625,0.002065281,215.480423,-2.24227e-05,70.80625916,-0.899103463,-0.232320115,0.748245478,3299\n2287A,117.7806,30.9414,20170601,50.90972222,3629,7093,2005936.429,345654.1852,14,0.928480089,286.5053101,289.1838379,101158.7266,0.002049056,218.535141,-2.3928e-05,70.53025055,-0.890235186,-0.26373601,0.735882163,3095\n2288A,117.7442,30.8811,20170601,54.68333333,3639,7087,2004438.163,337913.5863,10,0.908958256,285.6149902,289.2581482,101129.5469,0.002074852,216.1066284,-2.32347e-05,71.13631439,-0.875423789,-0.244618595,0.734851301,2433\n2289A,117.8561,30.9219,20170601,50.87396122,3633,7105,2013000.425,344935.4004,37,0.929070771,282.9291687,289.107605,100906.0,0.00207576,212.970108,-2.08305e-05,70.84411621,-0.905527532,-0.207828,0.740846932,3853\n2290A,117.8472,30.9697,20170601,53.95621469,3625,7104,2010917.284,350299.7853,8,0.952269971,285.2825623,289.1690063,101224.8125,0.002050756,217.2445221,-2.24097e-05,70.30760956,-0.918609023,-0.250949264,0.747032166,3014\n2291A,117.0549,30.5103,20170601,46.05865922,3698,6977,1954563.733,280990.3364,14,1.283691168,319.668457,289.7104187,101193.3047,0.002596543,246.7310181,-2.89802e-05,70.4782486,-0.830887258,-0.978513837,0.719925284,2922\n2292A,117.0331111,30.51197222,20170601,50.17827298,3698,6973,1952620.958,280751.2496,23,1.292113066,321.2965393,289.6859436,101143.6641,0.002599486,248.3855591,-2.92812e-05,70.27024078,-0.808018565,-1.008296609,0.734222114,3151\n2293A,117.0486,30.5489,20170601,50.58888889,3692,6976,1952992.047,285346.2083,22,1.250477076,323.5499878,289.599823,100956.6172,0.002524432,246.7169647,-2.93401e-05,70.40621185,-0.743009269,-1.005798221,0.731026173,2958\n2294A,116.9894,30.6145,20170601,57.02957746,3682,6966,1946102.362,291789.2004,28,1.213535309,334.9865417,289.3392639,100435.6328,0.00241919,246.3351746,-2.91041e-05,70.17926025,-0.513208151,-1.099675059,0.722575545,3172\n2295A,118.3057,29.7128,20170601,26.5280112,3826,7177,2085664.706,214394.0758,139,0.595979512,282.5294189,289.5133667,99672.16406,0.003283436,178.2717133,-8.83938e-06,76.65644073,-0.581792891,-0.129261702,0.614688456,3897\n2296A,118.3236,29.7207,20170601,23.60451977,3825,7180,2087015.85,215685.8742,134,0.603131711,282.677124,289.5024414,99637.6875,0.00325339,178.3028412,-8.82893e-06,76.61365509,-0.588435709,-0.13233006,0.614478946,3403\n2297A,118.1371,30.2756,20170601,23.8575419,3736,7150,2055251.729,275872.8253,176,0.426897407,274.040802,288.4789429,97984.97656,0.003129513,167.9563446,-8.27726e-06,77.63318634,-0.425837636,-0.030061524,0.647016048,4595\n2298A,118.3094,32.3153,20170601,50.79166667,3410,7177,2013043.51,516181.1301,22,0.964519441,263.3778992,287.9793091,101177.4844,0.002480015,241.1250458,-1.46289e-05,69.19974518,-0.958079696,0.111270048,0.777175069,3064\n2299A,118.3244,32.2786,20170601,52.09888579,3416,7180,2015348.227,512215.9374,24,0.956834435,264.5996704,288.0233154,101254.7188,0.002489174,240.3382111,-1.4447e-05,69.03160095,-0.952583492,0.090093255,0.785313964,3065\n2300A,118.3158,32.3061,20170601,51.82492997,3411,7179,2013844.862,515241.1366,20,0.96036762,263.758667,287.9902039,101215.0625,0.00248339,240.9942627,-1.45874e-05,69.13195801,-0.954670787,0.104449295,0.783346891,2993\n2301A,115.8275,32.8928,20170601,51.21148459,3317,6780,1787551.592,535684.1737,31,0.875802696,253.3766785,288.2510681,101354.2813,0.00217193,197.380127,-1.31835e-05,64.80891418,-0.839190185,0.250579804,0.841141105,2434\n2303A,115.8556,32.8603,20170601,54.9719888,3322,6785,1790748.555,532383.4222,29,0.887989879,254.5608826,288.2521973,101337.125,0.002175472,197.2092438,-1.31597e-05,64.86552429,-0.855936646,0.236428618,0.839790285,2629\n2304A,116.9765,33.6481,20170601,55.37114846,3196,6964,1864434.692,645633.2906,29,1.067447782,248.0788727,287.8458862,101391.0156,0.002110152,206.2516174,-1.28069e-05,63.99135208,-0.990255952,0.398544848,0.804332256,2689\n2305A,116.9677,33.6284,20170601,55.42916667,3200,6963,1864225.895,643156.0549,29,1.066444993,248.158905,287.8616943,101391.6406,0.002129239,206.2526703,-1.28669e-05,64.01164246,-0.98988086,0.396788031,0.804219604,2867\n2306A,116.989,33.63063889,20170601,60.00277008,3199,6966,1865943.444,643822.9068,30,1.065565586,248.1517181,287.8557739,101392.4453,0.002117346,206.4594116,-1.2848e-05,64.02980804,-0.989014804,0.396585107,0.803293347,2738\n2307A,116.508,31.7371,20170601,44.06005587,3502,6889,1875096.51,413131.9583,64,0.899863958,248.1708069,288.4790649,101085.0625,0.001928179,177.0330048,-1.21031e-05,68.50600433,-0.835328877,0.334635347,0.79020977,2903\n2308A,116.478,31.7618,20170601,41.19722222,3498,6884,1871882.46,415442.9125,42,0.898550034,247.971405,288.4637451,101096.7031,0.001971273,176.9476013,-1.23149e-05,68.41970062,-0.832941175,0.337047815,0.79097712,3376\n2309A,116.5068,31.7797,20170601,41.27668539,3495,6889,1873887.536,418081.2793,42,0.943426192,249.2676849,288.4832153,101150.4375,0.001974092,179.9130554,-1.27093e-05,68.33091736,-0.882322252,0.334006667,0.781720579,2305\n2310A,116.5661,31.7712,20170601,47.88194444,3497,6899,1879192.527,418221.687,52,0.945687771,249.4944763,288.4835205,101149.4922,0.001963766,183.1430206,-1.24914e-05,68.38280487,-0.885755658,0.331303954,0.791014135,3065\n2311A,115.8067,33.8399,20170601,53.26123596,3166,6777,1761872.528,646576.9227,39,0.877627134,241.7089844,287.9424438,101224.6094,0.001709138,196.4986877,-1.10385e-05,62.6071701,-0.772782922,0.415975899,0.830929995,3524\n2312A,115.7831,33.8561,20170601,51.48280802,3163,6773,1759494.753,648060.0469,39,0.876777887,241.3581696,287.943573,101230.2266,0.001687986,196.4363403,-1.10325e-05,62.56277847,-0.769476116,0.420292735,0.838687599,2195\n2314A,117.4697,30.6617,20170601,48.46561605,3674,7043,1986599.79,306880.2837,19,0.974260688,295.7675171,289.4548645,101027.0859,0.002293654,224.8204651,-2.3483e-05,72.18147278,-0.87741065,-0.423478991,0.741527617,3598\n2315A,117.4974,30.6539,20170601,57.20555556,3675,7048,1989216.795,306535.6911,10,0.958787382,293.0215759,289.3667908,100851.5313,0.002318315,220.7883911,-2.18134e-05,72.43123627,-0.88244909,-0.374909043,0.735378623,3879\n2316A,118.7581,30.9447,20170601,42.49019608,3629,7249,2090267.184,366411.8263,18,1.052492499,262.4625549,288.8905945,101234.125,0.002155277,204.2660675,-1.47079e-05,71.38100433,-1.04339242,0.1381042,0.725428581,3041\n2317A,118.7386,30.9742,20170601,41.79551821,3624,7246,2087743.397,369412.9939,40,1.084605575,263.8908386,288.9046936,101213.7578,0.002142965,207.4211884,-1.4925e-05,70.8663559,-1.078441024,0.115473822,0.726809323,5005\n2318A,118.7175,30.9431,20170601,41.53221289,3629,7243,2086810.459,365363.599,42,1.045755744,263.070343,288.8798828,101186.9922,0.002160499,203.2387848,-1.41999e-05,71.29559326,-1.03811121,0.126215369,0.72707063,3807\n2319A,119.0156,25.442,20170601,28.97338936,4509,7290,2269646.29,-258298.0098,20,1.362974644,333.9920044,292.4500732,99730.07031,0.00225856,364.8334045,-3.80079e-05,81.36826324,-0.597756803,-1.224902749,0.427908927,2997\n2320A,119.0018,25.4552,20170601,31.57983193,4507,7288,2267995.467,-257121.4853,58,1.265537977,333.6867065,292.2887878,99387.14844,0.002287746,354.2032166,-3.21668e-05,81.42645264,-0.561075985,-1.134363294,0.415670455,4886\n2323A,118.981,25.4792,20170601,28.92458101,4503,7285,2265392.147,-254882.4836,139,1.105475307,333.1380005,291.9940491,98763.27344,0.002333066,336.2792664,-2.38232e-05,81.54581451,-0.49957937,-0.986152172,0.40502274,5510\n2324A,117.6211,26.2625,20170601,27.27222222,4378,7067,2118371.85,-196173.853,165,0.444835037,272.9368286,291.5320435,95914.74219,0.002275976,122.2554321,-8.6595e-06,74.80988312,-0.444251895,-0.022769809,0.434409648,4431\n2325A,117.6353,26.2708,20170601,26.2752809,4377,7070,2119456.014,-194920.9994,221,0.433126122,271.9342957,291.5101318,95815.0,0.002298447,122.7386703,-8.68529e-06,74.88137054,-0.432880014,-0.014599091,0.449076295,3702\n2326A,117.6028,26.2378,20170601,24.41620112,4382,7064,2117348.175,-199385.3015,188,0.440345347,273.0180359,291.532074,95991.29688,0.002292608,122.0111618,-8.63095e-06,74.78565979,-0.439735711,-0.023163246,0.436716676,3835\n2327A,117.7275,26.3108,20170601,26.40668524,4370,7084,2126860.661,-188366.7761,266,0.354950488,267.0460205,291.644165,95997.64063,0.002420749,125.3084488,-8.85309e-06,75.11643219,-0.354478031,0.018307932,0.421910286,5573\n2331A,118.0966,26.6761,20170601,19.22050562,4312,7143,2150792.157,-138657.9951,1044,0.282099456,270.1705933,292.0853577,96602.27344,0.002443687,144.4280548,-1.11612e-05,72.29118347,-0.282098234,-0.000826824,0.431283653,6887\n2332A,118.1694,26.6383,20170601,22.0,4318,7155,2158481.672,-141374.5654,125,0.388703644,263.6714172,292.284668,97074.60938,0.002374068,148.9430695,-1.09323e-05,72.15641022,-0.386333078,0.042863488,0.439908713,4522\n2333A,118.1819,26.6514,20170601,22.86312849,4316,7157,2159265.234,-139605.4606,121,0.39565292,263.7986145,292.2583008,97047.40625,0.002362116,149.0433044,-1.08604e-05,72.12953186,-0.393335849,0.042756703,0.440635949,3831\n2334A,118.1756,26.6272,20170601,22.71927374,4320,7156,2159352.843,-142504.5888,152,0.403568268,262.881897,292.3458557,97225.39063,0.002368728,149.6603851,-1.09434e-05,72.15335083,-0.400455773,0.050025139,0.441487908,4573\n2335A,117.0181,25.1174,20170601,23.24930362,4561,6971,2092600.191,-339472.5893,358,0.384046644,260.1303711,290.9665222,94328.82813,0.002547143,109.7207108,-7.1572e-06,78.75170135,-0.378360152,0.06584391,0.436848968,3540\n2336A,117.0216,25.1035,20170601,24.6232493,4564,6971,2093287.343,-340977.7941,338,0.398720503,260.2210083,291.0870361,94684.64844,0.002532167,110.1729736,-7.23627e-06,78.83322144,-0.392924398,0.067738131,0.448465586,3799\n2337A,117.0256,25.0661,20170601,20.88194444,4570,6972,2094630.144,-345142.603,353,0.434038937,260.4188232,291.172821,94821.47656,0.002497975,111.1142807,-7.36892e-06,78.98696136,-0.427981436,0.072261333,0.442430377,3266\n2338A,117.0151,25.0311,20170601,21.51805556,4575,6970,2094554.582,-349343.1519,397,0.463234156,261.2901917,291.2410278,94898.13281,0.00246005,111.8146439,-7.55474e-06,79.13510132,-0.457889199,0.070166752,0.432569057,3777\n2339A,119.5001,26.6946,20170601,30.51558074,4309,7368,2278312.815,-104917.8295,135,0.271472096,308.6144714,290.2366028,96781.14844,0.00383414,177.4463806,-1.50269e-05,84.67468262,-0.212129429,-0.169405431,0.441744655,5632\n2340A,119.5202,26.6607,20170601,32.12569832,4314,7371,2281125.439,-108306.3822,83,0.321464807,312.5800781,290.3682251,97187.89063,0.003701851,192.2820282,-1.81776e-05,84.54278564,-0.236719832,-0.217493311,0.465289593,5571\n2341A,119.5392,26.6611,20170601,26.51523546,4314,7374,2282844.531,-107819.6424,27,0.323870301,312.7493896,290.3966675,97258.63281,0.003693326,199.8421326,-1.9882e-05,84.31491852,-0.237842545,-0.219824672,0.479809284,2961\n2342A,117.3097,29.3864,20170601,26.33286119,3878,7018,2006821.842,155958.8225,81,1.134611726,307.8752747,290.5311584,100257.75,0.003100029,195.4864044,-1.38109e-05,72.14587402,-0.895650744,-0.696529627,0.601864398,5851\n2343A,117.2111,29.2958,20170601,34.08831909,3893,7002,2000512.131,143480.0321,45,1.121008873,309.9274292,290.6206055,100389.0391,0.003018231,199.5610199,-1.44461e-05,70.49576569,-0.859702587,-0.719425082,0.613310575,2369\n2344A,117.1983,29.2786,20170601,31.27871148,3896,7000,1999835.69,141232.2746,59,1.11975956,310.6353149,290.6551819,100356.4375,0.00301735,199.8067627,-1.45232e-05,70.19947815,-0.849800825,-0.729177535,0.614824772,4162\n2345A,117.1558,29.2647,20170601,32.66713483,3898,6993,1996440.454,138762.0731,38,1.12102747,312.2519836,290.6610107,100390.0156,0.002971061,200.4817047,-1.46042e-05,69.81545258,-0.829830289,-0.753713727,0.621376097,3087\n2346A,117.2461,29.2956,20170601,34.24792244,3893,7007,2003615.835,144170.0643,51,1.123164058,309.2003174,290.6253967,100323.4453,0.003044909,199.0952759,-1.44194e-05,70.67519379,-0.870432794,-0.709819794,0.629918754,3372\n2347A,114.0944,27.4948,20170601,22.06590258,4181,6503,1764724.831,-124369.6582,397,0.58000946,261.7337646,289.4288025,94675.32031,0.004073772,141.7137451,-9.08755e-06,79.05051422,-0.573980033,0.08341372,0.664875269,6254\n2348A,113.8381,27.6428,20170601,47.81111111,4157,6462,1738009.036,-111831.6523,110,0.581751823,274.9484558,291.0979614,99508.1875,0.003082481,146.3523254,-9.54312e-06,76.04020691,-0.57958591,-0.050153375,0.714989543,3517\n2349A,113.8447,27.6231,20170601,47.67086835,4160,6463,1739052.819,-113993.0059,109,0.584183812,272.816925,291.0622253,99498.95313,0.003151616,145.7396545,-9.52422e-06,76.30267334,-0.583479285,-0.02868185,0.715139687,3997\n2350A,113.8686,27.6442,20170601,43.725,4157,6467,1740756.854,-111129.8398,109,0.607530892,271.7436829,291.0496216,99475.70313,0.003139014,145.6219482,-9.49163e-06,76.27965546,-0.607250452,-0.018457489,0.713118553,2786\n2351A,113.865,27.6178,20170601,43.54583333,4161,6466,1741022.237,-114246.3706,115,0.597985089,270.5455322,291.0272522,99477.78906,0.003206521,145.194809,-9.49072e-06,76.51351166,-0.597958267,-0.005665849,0.716518641,4199\n2352A,115.0586,27.7758,20170601,43.86864407,4136,6657,1845915.652,-74206.461,72,0.861186504,312.0721436,291.746582,100519.2031,0.002699427,243.2925262,-1.67739e-05,70.81617737,-0.63929975,-0.57700789,0.643669963,5650\n2353A,114.9831,27.8344,20170601,41.76601671,4127,6645,1837668.732,-68856.76044,54,0.832867503,308.3184204,291.6977234,100735.0938,0.002932675,233.7166138,-1.56101e-05,71.11712646,-0.653482735,-0.516360939,0.66236347,3129\n2354A,114.9289,27.8328,20170601,48.87916667,4127,6637,1832791.062,-70053.83303,51,0.799427629,306.5995789,291.680603,100770.7266,0.002986033,228.5323486,-1.52127e-05,71.63578796,-0.641829133,-0.476592034,0.669696867,2544\n2355A,114.9314,27.8036,20170601,42.52089136,4132,6637,1833711.29,-73378.90729,60,0.785281599,308.9792175,291.7711487,100887.9922,0.002918826,231.6656952,-1.55332e-05,71.69377899,-0.610490441,-0.49393183,0.658805549,2279\n2356A,114.9119,27.8042,20170601,46.45056497,4131,6634,1831927.671,-73673.36069,71,0.773409784,307.6126099,291.7469788,100876.375,0.00296806,229.0547791,-1.53179e-05,71.8875885,-0.612691522,-0.471987039,0.659641027,2518\n2357A,116.9622,28.095,20170601,29.73167155,4085,6962,2009954.53,-63.7984271,103,0.704508424,315.2539673,291.3725281,99849.65625,0.002567314,174.3397827,-1.33984e-05,72.72041321,-0.495984375,-0.500331461,0.588622689,6087\n2358A,117.0564,28.2642,20170601,34.52683616,4058,6977,2013984.455,21340.64094,34,0.818978786,315.9300232,291.7583313,100812.0938,0.002429195,174.5668335,-1.44533e-05,70.66157532,-0.569670856,-0.588388801,0.594829679,2773\n2359A,117.0281,28.2403,20170601,34.53501401,4062,6972,2012071.248,18009.31259,37,0.819194257,316.5574951,291.7428284,100789.1016,0.00241605,176.9019012,-1.45328e-05,70.7614975,-0.563341439,-0.594748437,0.593418539,2952\n2360A,117.0222,28.2264,20170601,34.38687151,4064,6972,2011906.169,16288.28314,40,0.810566664,316.0727234,291.730011,100755.4453,0.002411164,175.9455719,-1.43734e-05,70.96355438,-0.56236738,-0.583747625,0.609263718,3057\n2361A,116.9983,28.2169,20170601,34.9039548,4065,6968,2010008.366,14705.48526,40,0.821457267,317.1242981,291.7567444,100819.7031,0.002406403,178.7319183,-1.45717e-05,70.97229767,-0.558970392,-0.601950288,0.601747572,3139\n2362A,114.9064,25.9118,20170601,42.14366197,4434,6633,1876142.04,-291455.7268,126,0.506054461,167.2737427,292.229187,99372.5,0.002026861,269.9758606,-1.74112e-05,75.58555603,0.111523032,-0.493612945,0.537011623,4888\n2363A,114.9367,25.8664,20170601,47.77146814,4441,6638,1880028.498,-296077.7442,109,0.469468415,170.721756,292.2148132,99394.53906,0.002014583,267.4163208,-1.70639e-05,75.71694946,0.07573273,-0.463319719,0.537528396,2323\n2364A,114.9461,25.8481,20170601,45.10138889,4444,6639,1881334.154,-297993.9595,117,0.458803177,172.3521271,292.1966858,99348.36719,0.002012361,266.6590881,-1.68622e-05,75.7615509,0.061099965,-0.454716563,0.538053989,2460\n2365A,114.9322,25.8333,20170601,44.84497207,4447,6637,1880389.795,-299955.1526,108,0.462926209,173.7719574,292.2061462,99381.29688,0.002001312,266.437439,-1.65885e-05,75.76821136,0.050261997,-0.460189521,0.53688091,2843\n2366A,114.8905,25.8471,20170601,45.81320225,4445,6630,1876185.353,-299171.6027,121,0.495152056,171.5131683,292.2163086,99450.16406,0.001998308,268.0809631,-1.65693e-05,75.65853119,0.073118776,-0.489723593,0.535943866,2703\n2367A,114.9817,27.0658,20170601,51.02148997,4250,6645,1855813.985,-157493.5723,51,0.814556003,323.3487549,292.3908386,100568.5313,0.002045772,258.7020264,-1.76957e-05,70.75080109,-0.486291468,-0.653469265,0.613512635,3854\n2368A,114.9739,27.11,20170601,50.92039106,4242,6644,1854050.711,-152552.4451,61,0.84678787,323.9136353,292.3630371,100604.4375,0.002031853,255.932312,-1.71566e-05,70.83209229,-0.498811871,-0.684278011,0.630548894,3000\n2369A,114.99,27.1311,20170601,51.25626741,4239,6646,1855023.345,-149819.2074,58,0.846888781,323.8673706,292.3458557,100613.7188,0.002039758,256.2553406,-1.71119e-05,70.82741547,-0.4994241,-0.683956265,0.629048526,3658\n2370A,115.0075,27.0983,20170601,52.13370474,4244,6649,1857404.516,-153264.8477,57,0.843191803,323.3169556,292.3804321,100636.8516,0.002053568,258.3811951,-1.74726e-05,70.80789948,-0.503762364,-0.676162601,0.623462617,2891\n2371A,114.3442,27.8036,20170601,49.8198324,4132,6543,1780398.793,-84177.98452,98,0.686520576,269.078064,291.1037598,100287.5391,0.003731343,160.874527,-9.65491e-06,77.62141418,-0.68643117,0.01107755,0.689163387,4389\n2372A,114.3806,27.8014,20170601,50.74166667,4132,6549,1783756.275,-83772.12976,102,0.670342088,270.413208,291.1391602,100364.1484,0.003742702,164.9906311,-1.00835e-05,77.45219421,-0.670324922,-0.004803124,0.691819429,3281\n2373A,114.3953,27.7842,20170601,48.19777159,4135,6551,1785489.229,-85493.24675,107,0.642351568,269.9945679,291.020752,99993.39063,0.003815764,166.0158844,-1.02667e-05,77.5470047,-0.642351568,9.09032e-05,0.681075931,3992\n2374A,114.3703,27.7914,20170601,50.81476323,4133,6547,1783051.47,-85114.99596,104,0.668355703,269.5732422,291.1007996,100261.7734,0.003764055,163.4533081,-9.94686e-06,77.55700684,-0.668336928,0.005008882,0.689736247,3768\n2375A,114.4011,27.8072,20170601,51.75623269,4131,6552,1785484.367,-82729.3662,97,0.670251131,271.5167236,291.1463013,100370.1172,0.003721028,167.1518555,-1.02825e-05,77.31668091,-0.670017123,-0.017709201,0.689414501,3329\n2376A,116.2239,28.0797,20170601,43.84861111,4087,6844,1943846.016,-16680.09585,45,1.054667711,338.5984192,291.7095032,100798.1953,0.002379155,227.6644287,-1.8134e-05,70.86721802,-0.384931028,-0.981912494,0.626872838,5661\n2377A,116.3553,27.9883,20170601,44.83333333,4102,6865,1958016.48,-24602.95435,43,0.956858397,337.5844116,291.8484497,100947.7656,0.002287734,220.3248291,-1.75693e-05,71.22817993,-0.364942819,-0.884530783,0.622548103,2672\n2378A,116.3598,27.9639,20170601,40.7367688,4106,6866,1959043.313,-27323.7482,49,0.924904525,337.7368774,291.8118286,100828.7266,0.002288705,219.0309601,-1.71615e-05,71.5124588,-0.350479454,-0.855927885,0.6301018,2735\n2379A,116.3574,28.0005,20170601,44.09887006,4100,6865,1957895.616,-23155.7597,40,0.970585465,337.4850159,291.8616028,100992.25,0.002289904,220.8904114,-1.77261e-05,71.11911774,-0.371733993,-0.896576822,0.62272191,2512\n2380A,116.385,27.9647,20170601,37.26330532,4106,6870,1961297.604,-26728.8928,47,0.91591692,337.2653809,291.7987671,100783.7656,0.002294607,218.4802399,-1.7136e-05,71.55229187,-0.354036391,-0.844726026,0.620418012,2675\n2381A,118.0058,28.4569,20170601,36.31908832,4027,7129,2093837.058,63355.26393,125,0.799908519,313.2450256,291.2276611,99754.75781,0.002528333,144.0782928,-9.301e-06,74.95729828,-0.582715273,-0.547993183,0.556254506,4643\n2382A,117.973,28.4459,20170601,38.90642458,4029,7124,2091207.617,61392.22791,89,0.773184597,306.6387024,291.2061768,99643.875,0.002532567,141.7419586,-9.32202e-06,75.07967377,-0.620444596,-0.461370707,0.577663779,3225\n2383A,117.9511,28.4622,20170601,39.12359551,4026,7120,2088804.627,62800.34902,85,0.839139521,308.0633545,291.2121277,99658.42188,0.0024366,145.0435333,-9.49502e-06,74.69206238,-0.660713494,-0.517313063,0.561583519,2492\n2384A,117.9033,28.4303,20170601,43.17847025,4031,7113,2085404.22,58117.42673,85,0.781558394,295.7962341,291.1804504,99467.00781,0.002474272,139.7541656,-9.43432e-06,74.76644135,-0.703694344,-0.340070277,0.566145301,2604\n2385A,114.17,35.9019,20170601,56.75702247,2836,6515,1576879.685,862483.1652,183,0.735497415,72.12950134,286.5694885,98192.35156,0.000848313,180.3030243,-9.05837e-06,56.39939117,0.700003147,0.225725532,0.781967044,3663\n2386A,114.2956,35.7511,20170601,56.3356546,2860,6535,1590638.138,846612.4254,90,0.540479362,55.39128494,287.6413269,100405.8203,0.000884022,201.1470184,-1.02028e-05,56.73690796,0.444832802,0.30698815,0.805345118,3179\n2387A,114.2878,35.7306,20170601,52.82686981,2863,6534,1590487.025,844054.2697,88,0.512310326,56.69152832,287.65271,100443.2109,0.000883302,200.9434814,-1.02015e-05,56.86006927,0.428142905,0.281345874,0.809254885,3179\n2389A,113.836,35.31,20170601,57.52793296,2930,6462,1563381.466,786912.6748,73,0.555281818,316.6461182,287.9078979,100077.8984,0.000832964,171.0006866,-8.73702e-06,54.34914017,-0.381230593,-0.403733969,0.79844743,3130\n2390A,113.884,35.272,20170601,61.12534819,2937,6469,1568193.237,783170.9294,72,0.548376799,298.8278198,287.9819946,100276.1484,0.000853742,179.7498779,-9.34065e-06,54.4716301,-0.48043412,-0.264386415,0.80810529,2129\n2391A,113.883,35.303,20170601,53.45658263,2932,6469,1567395.9,786831.2393,74,0.545760572,306.5619202,287.9338379,100192.8359,0.000846671,177.1723175,-9.0894e-06,54.70845032,-0.43838349,-0.325076222,0.805954158,1937\n2392A,115.031,35.763,20170601,59.26740947,2858,6653,1650143.246,860150.6617,54,0.785409331,210.4628754,287.7951355,101058.4141,0.000789856,205.6880798,-1.08127e-05,54.88176727,-0.398176134,0.676995993,0.860675335,2860\n2394A,115.0628,35.7672,20170601,57.94301994,2857,6658,1652623.424,861182.6019,51,0.79353267,211.0608826,287.787384,101060.7109,0.000789008,205.6059265,-1.08852e-05,54.86082077,-0.409411103,0.679762185,0.861858964,2218\n2395A,115.0772,35.767,20170601,57.44803371,2857,6660,1653797.949,861401.1933,51,0.79685843,211.3308258,287.7846375,101061.6172,0.00078969,205.538681,-1.09195e-05,54.86204147,-0.414338499,0.680666566,0.863194704,2317\n2396A,113.8331,34.0117,20170601,56.1302521,3138,6461,1592973.547,633144.2898,71,0.427094758,227.100708,288.0717468,100729.4531,0.001301751,206.8370514,-1.24399e-05,60.82209015,-0.3128618,0.29073602,0.864086032,2396\n2398A,113.7906,33.9953,20170601,52.43435754,3141,6454,1589798.006,630517.5944,69,0.394068658,227.0913391,288.0695801,100683.4141,0.001300904,207.1117401,-1.24434e-05,60.87358856,-0.288625121,0.268301398,0.861555219,3837\n2399A,114.056,33.567,20170601,55.5480226,3209,6497,1621903.539,584276.1561,62,0.608364642,230.4484711,288.1853943,100996.1875,0.001530548,202.6868744,-1.26493e-05,62.51510239,-0.469070822,0.38740173,0.87829119,2390\n2400A,114.005,33.568,20170601,57.45111732,3209,6489,1617594.03,583553.4408,63,0.599766433,230.0953522,288.1923523,100976.1797,0.001530092,202.7896423,-1.26347e-05,62.42100525,-0.460078746,0.384769142,0.878447533,2899\n2401A,114.014,33.581,20170601,57.82033426,3207,6490,1618049.869,585235.6409,64,0.604690909,230.1258392,288.1955566,100990.8438,0.001532016,202.8228149,-1.26416e-05,62.36314392,-0.464062721,0.387681454,0.871405423,2491\n2402A,114.0322,33.5653,20170601,55.8189415,3210,6493,1619942.621,583682.9574,63,0.603703201,230.3164673,288.1911316,100989.7109,0.001529784,202.7234955,-1.26393e-05,62.502491,-0.464589745,0.385504782,0.872941017,2401\n2403A,112.5192,32.9917,20170601,62.29189944,3301,6251,1504811.55,491899.4999,125,0.814088702,299.4424438,288.0932312,99960.01563,0.001373866,205.654068,-1.23444e-05,66.74893188,-0.708973646,-0.400120944,0.843529761,2116\n2404A,112.5224,33.0122,20170601,56.43732591,3298,6252,1504646.982,494370.3041,129,0.785927296,301.8539734,288.0603027,99925.4375,0.001374437,203.5218048,-1.24222e-05,66.80957794,-0.667589545,-0.414735973,0.841745496,2142\n2405A,112.5003,32.9735,20170601,56.01264045,3304,6248,1503592.378,489460.1653,126,0.828174889,296.7843628,288.1109619,99957.63281,0.001374721,206.7806702,-1.23734e-05,66.75045776,-0.739341378,-0.373159379,0.854722977,2911\n2406A,112.5573,33.027,20170601,60.09610028,3296,6257,1507296.133,496653.6545,128,0.746194363,302.8924561,288.0501404,99963.35156,0.001378033,203.260376,-1.25738e-05,66.75246429,-0.626598716,-0.405191392,0.841064394,2180\n2407A,112.55,32.9683,20170601,55.1075419,3305,6256,1507927.955,489607.541,122,0.793991506,294.6564941,288.12854,100076.8281,0.001388169,209.1359406,-1.24941e-05,66.55693817,-0.72161895,-0.331192672,0.8530581,2810\n2408A,115.6697,34.4286,20170601,58.56478873,3072,6755,1735638.794,713466.8413,49,0.888605118,233.345932,287.9100342,101089.6563,0.001309427,200.5289001,-1.10299e-05,60.62379074,-0.712872803,0.530501068,0.846171498,2449\n2409A,115.6558,34.429,20170601,55.75,3071,6753,1734478.797,713268.5472,50,0.887304604,233.1862793,287.9137573,101085.3359,0.001305927,200.6802826,-1.10247e-05,60.59967422,-0.710350692,0.531706035,0.84527421,2306\n2410A,115.6386,34.407,20170601,54.83519553,3075,6750,1733608.704,710371.6115,50,0.885019481,233.6104126,287.925415,101097.75,0.001316219,200.5164795,-1.10336e-05,60.69537735,-0.712427557,0.525077581,0.848089933,2311\n2411A,115.6578,34.402,20170601,56.04761905,3076,6753,1735323.42,710121.1449,49,0.887030482,233.7945862,287.9189148,101102.0078,0.001319994,200.3342285,-1.10397e-05,60.72004318,-0.715734303,0.52397275,0.845039904,2358\n2420A,114.018,32.965,20170601,53.2740113,3306,6491,1632620.306,512678.7934,83,0.413042068,218.585144,287.9568787,100421.0078,0.001531555,208.9429932,-1.72145e-05,66.1530838,-0.2575984,0.322872758,0.873422146,2685\n2421A,114.0131,33.0069,20170601,55.45224719,3299,6490,1631237.792,517532.9515,85,0.436475486,215.5913391,287.9891052,100533.4219,0.001484962,208.8626862,-1.75671e-05,65.75605774,-0.254022181,0.354941636,0.875811219,2686\n2422A,113.996,32.996,20170601,53.78888889,3301,6487,1630040.402,515965.1359,90,0.423445433,214.9379272,287.9627075,100513.7266,0.001494916,208.5143738,-1.68843e-05,65.9642868,-0.242496118,0.347133487,0.880611956,2779\n2423A,115.0625,30.2352,20170601,47.3969697,3742,6658,1787215.923,211059.9407,28,0.879741311,253.7840576,290.259552,101077.8906,0.002562172,191.2175598,-2.68668e-05,70.29212952,-0.844732404,0.24570699,0.743985772,3339\n2424A,115.0767,30.2028,20170601,54.00704225,3748,6660,1789245.231,207544.5506,78,0.897421241,250.8583374,290.3422241,101205.3047,0.002554582,190.3108521,-2.52694e-05,70.76367188,-0.847792745,0.294299781,0.750813127,4247\n2426A,114.8949,30.2043,20170601,52.29083095,3747,6631,1773230.297,204423.615,76,0.881900728,262.6491089,290.4185181,101254.3594,0.002534305,194.9039307,-3.02002e-05,70.88707733,-0.874647737,0.112872548,0.766887665,4337\n2427A,115.0264,30.2099,20170601,54.80532213,3746,6652,1784653.864,207456.7617,36,0.872690856,253.2558594,290.3366699,101187.3516,0.002562362,191.5309753,-2.60636e-05,70.56793976,-0.835680068,0.251452148,0.747626603,4142\n2428A,111.0419,32.395,20170601,29.91477273,3397,6015,1390732.183,399611.1341,906,0.581072748,209.7067719,286.7265625,94688.42188,0.001876009,142.3296661,-9.13777e-06,74.19376373,-0.287949502,0.504708469,0.753336906,5870\n2429A,110.78,32.6494,20170601,48.53703704,3356,5973,1363348.214,426035.021,267,0.579666078,266.3717346,287.6343994,96314.85938,0.001682506,154.8578186,-9.48046e-06,71.86335754,-0.578502595,0.036708716,0.770803034,3530\n2430A,110.7258,32.6389,20170601,45.01416431,3358,5964,1358906.247,424041.325,319,0.567093909,267.5360107,287.3049011,95469.44531,0.001722202,152.0007324,-8.54938e-06,71.85572052,-0.566568494,0.024405705,0.759398878,4940\n2431A,110.8839,32.5714,20170601,48.0027933,3369,5989,1373752.005,418251.389,248,0.580401182,241.1729584,287.3545227,95840.13281,0.001763977,148.6104889,-1.01526e-05,72.73914337,-0.508468628,0.279866427,0.770895362,5460\n2432A,112.155,32.0197,20170601,64.06741573,3457,6193,1494087.063,371650.2164,69,0.583027184,205.0807037,288.690094,100355.3984,0.001769713,229.0804749,-1.67241e-05,67.86605835,-0.247135058,0.528057694,0.838162959,2640\n2433A,112.1392,32.0564,20170601,60.23389356,3451,6190,1491962.723,375735.673,70,0.629749417,208.0970306,288.6974792,100407.5781,0.001739104,228.0433807,-1.65933e-05,67.7873764,-0.296582639,0.555538535,0.838002741,2331\n2434A,112.1825,32.1142,20170601,62.29295775,3442,6197,1494489.842,383206.9811,80,0.71410042,219.0383301,288.7574463,100587.0938,0.00171172,232.8225555,-1.67492e-05,67.46230316,-0.449758053,0.554668486,0.848117113,2841\n2435A,112.2106,32.0903,20170601,71.5252809,3446,6202,1497407.433,380817.5614,68,0.691217363,219.5436859,288.7744751,100619.9531,0.001736499,235.1690521,-1.6929e-05,67.46040344,-0.440063983,0.533033907,0.838894904,2531\n2436A,114.8878,30.3944,20170601,50.14027778,3717,6630,1768059.307,226452.2841,24,0.874894619,276.6123962,290.2131958,101045.5234,0.002510336,189.8375244,-3.00083e-05,69.40388489,-0.869079709,-0.100702628,0.759871244,1658\n2437A,114.8989,30.3714,20170601,57.2733711,3721,6632,1769583.174,223970.6215,32,0.869527996,273.8360291,290.2193604,101020.7344,0.00251587,190.4274445,-3.00439e-05,69.54967499,-0.867582738,-0.058130682,0.765437305,3278\n2438A,114.8131,30.4133,20170601,49.26478873,3714,6618,1761058.231,227314.6393,22,0.90606457,282.2607422,290.2521057,101152.1719,0.002493007,194.0690613,-3.24645e-05,69.44293976,-0.88540858,-0.1923659,0.773359001,3743\n2439A,112.2014,31.0483,20170601,56.0724234,3612,6200,1518301.944,258064.994,98,0.547357678,357.2966614,289.0420532,100095.4922,0.001961888,228.4979553,-2.06951e-05,71.67955017,-0.025865909,-0.546746194,0.82157737,3589\n2440A,112.1969,30.9892,20170601,50.80113636,3622,6199,1519136.269,251053.8244,115,0.597231746,349.0828857,289.147583,100350.4141,0.001979621,228.3972473,-2.0839e-05,71.47092438,-0.113159917,-0.586413324,0.821234822,3129\n2441A,112.2211,31.0386,20170601,54.21848739,3614,6203,1520224.716,257230.2039,89,0.551894248,356.2021484,289.0668335,100211.4766,0.00196544,228.2400818,-2.02402e-05,71.37194824,-0.036604684,-0.550678968,0.823824048,2865\n2443A,113.9153,30.9285,20170601,42.16432584,3632,6474,1670527.787,271828.629,31,1.026959658,300.9306335,289.3096008,101195.2734,0.002431046,198.7042694,-1.6695e-05,68.71648407,-0.880948722,-0.527802587,0.800049007,3431\n2444A,113.942,30.9075,20170601,49.76571429,3635,6479,1673336.292,269825.2817,25,1.027381659,300.8529358,289.3362732,101185.9688,0.002457302,198.764679,-1.68787e-05,68.77377319,-0.882026017,-0.52682358,0.817943573,3453\n2446A,114.9028,30.4742,20170601,45.7019774,3704,6632,1767463.563,236027.3531,28,0.874299526,281.6670532,290.2140808,101286.7734,0.002518509,184.4016876,-2.7816e-05,68.80151367,-0.8562451,-0.176759914,0.767791569,3374\n2447A,114.3036,29.8181,20170601,41.71910112,3809,6537,1730178.405,148888.1806,65,0.790231884,275.6500854,289.8298645,100272.7188,0.0026672,174.8209839,-1.65275e-05,73.55194855,-0.786396563,-0.077761799,0.781116128,4021\n2448A,114.3231,29.8211,20170601,40.85097493,3809,6540,1731833.984,149581.1843,68,0.788140476,274.3710632,289.8173218,100259.9688,0.002672547,174.2637329,-1.65103e-05,73.63240814,-0.785851002,-0.060030218,0.781045616,4231\n2449A,114.2894,29.8539,20170601,36.90972222,3803,6534,1728092.585,152809.1,48,0.823998511,279.9075928,290.0158997,100697.7813,0.002568891,178.2748413,-1.78984e-05,72.78683472,-0.811717153,-0.141735032,0.799533367,4608\n2450A,114.3372,29.8686,20170601,44.10504202,3801,6542,1731978.061,155363.401,50,0.828320146,277.6859131,290.0399475,100797.1797,0.00253244,177.7349548,-1.82548e-05,72.78105927,-0.820884228,-0.110740386,0.76483655,3090\n2451A,113.3583,31.7275,20170601,50.34453782,3504,6385,1604197.261,356238.2333,70,0.705096662,270.2790527,288.396698,100247.0625,0.001855075,208.5019226,-1.39888e-05,70.9389801,-0.705088437,-0.003401343,0.817208886,2968\n2452A,113.3833,31.6908,20170601,49.01955307,3510,6389,1607172.389,352335.6562,85,0.661326408,269.8027344,288.4047546,100250.1016,0.001895521,208.8917847,-1.43587e-05,71.05017853,-0.661322355,0.002307559,0.811189592,3807\n2453A,113.3983,31.7308,20170601,48.91364903,3503,6392,1607578.223,357279.6377,87,0.765293658,274.4717712,288.379364,100175.9844,0.001838981,210.3170013,-1.43328e-05,71.00125122,-0.762966931,-0.059631199,0.804376483,3482\n2454A,109.5039,30.2989,20170601,41.26966292,3732,5769,1295229.587,131312.6263,456,0.183219969,16.68285751,288.5693054,92793.67969,0.00296109,106.9549866,-3.53988e-06,75.58926392,0.052596148,0.17550841,0.661848068,3550\n2455A,109.4689,30.2819,20170601,41.53792135,3735,5763,1292423.426,128851.0725,438,0.18364206,29.92904091,288.4746704,92657.52344,0.003017882,107.6463394,-3.54332e-06,76.04735565,0.091621548,0.1591537,0.674036264,3585\n2456A,112.5328,26.9089,20170601,42.46991404,4275,6253,1634233.54,-219088.3619,60,0.991531253,344.8278809,291.9360657,100692.2422,0.002427358,262.2875366,-1.64002e-05,71.21987152,-0.259583861,-0.956948519,0.758978963,3715\n2457A,112.6194,26.9258,20170601,41.8531856,4272,6267,1641864.992,-215691.2553,64,0.984476268,345.005188,291.8616333,100571.3281,0.002384939,261.6593628,-1.72992e-05,71.38027191,-0.254796147,-0.950932443,0.752492309,2699\n2458A,112.6211,26.8956,20170601,41.88227147,4277,6267,1642654.437,-219153.1906,63,0.986598134,343.7758179,291.9206238,100612.1016,0.002359344,261.044342,-1.73178e-05,71.22641754,-0.275731951,-0.9472844,0.745732307,2348\n2459A,112.6197,26.8733,20170601,47.85070423,4280,6267,1642992.459,-221753.6306,66,0.978028238,343.2598877,291.9150391,100538.8906,0.002341966,260.6753235,-1.73289e-05,71.1341095,-0.281781316,-0.936556756,0.740932405,2967\n2460A,112.6006,26.8919,20170601,42.72299169,4277,6264,1640841.329,-219923.3157,73,0.987432122,343.9099121,291.9283142,100630.0,0.002371561,261.2034607,-1.71295e-05,71.20933533,-0.273745358,-0.948728442,0.741418242,2361\n2461A,112.5664,26.9056,20170601,43.28072626,4275,6259,1637400.92,-218910.4282,70,0.989563704,344.5756226,291.9215698,100656.25,0.002402707,261.8601685,-1.67903e-05,71.24905396,-0.263271928,-0.953899503,0.745803177,2573\n2462A,111.5239,27.3033,20170601,42.53539823,4212,6092,1533349.656,-189682.1249,245,0.803620279,304.7120667,290.281311,98828.25,0.002232966,230.6237335,-1.08742e-05,75.85951996,-0.660624623,-0.457581401,0.743639529,5292\n2463A,111.4733,27.2317,20170601,51.66572238,4223,6084,1530103.717,-198774.641,235,0.950242102,301.5267029,290.3252563,98676.13281,0.002182061,233.4302521,-1.12113e-05,75.72887421,-0.810014248,-0.496826828,0.741808414,2417\n2464A,111.4908,27.2582,20170601,49.60393258,4219,6087,1531193.251,-195428.9153,241,0.892938852,302.8062134,290.3187561,98755.125,0.002201652,233.749115,-1.10621e-05,75.82839203,-0.750552535,-0.483746529,0.748838544,3499\n2465A,111.4503,27.2537,20170601,49.32869081,4219,6080,1527556.216,-196581.1706,223,0.922108591,303.0621643,290.3300171,98638.96094,0.002118265,231.2845154,-1.11447e-05,75.58161163,-0.772831738,-0.503006339,0.74563992,3222\n2466A,111.4328,27.2272,20170601,46.85070423,4224,6077,1526465.2,-199926.4068,236,0.996133149,301.1107178,290.3303833,98547.32813,0.002102709,230.8039703,-1.13237e-05,75.49783325,-0.852891862,-0.514642358,0.751137912,3112\n2467A,112.4067,28.6428,20170601,41.83333333,3997,6233,1586588.881,-20011.16606,28,0.567671716,325.7294617,290.8299866,101025.9219,0.002409793,263.3740234,-2.90205e-05,71.49113464,-0.319691867,-0.469093055,0.840340495,4168\n2468A,112.3458,28.5808,20170601,44.30736544,4007,6223,1582383.364,-28210.33019,54,0.42097199,332.2106018,290.6671143,100773.4063,0.002468345,253.0350952,-2.32627e-05,72.11418152,-0.196295977,-0.372404784,0.843540668,2836\n2469A,112.3439,28.56,20170601,39.57022472,4010,6223,1582643.666,-30661.91237,66,0.397435457,335.7533569,290.6412048,100725.7578,0.002480919,251.3430634,-2.18176e-05,72.22229004,-0.163242042,-0.36236304,0.847109914,3384\n2470A,112.3347,28.6047,20170601,29.37283237,4003,6222,1580885.32,-25606.94122,34,0.453820527,327.9594421,290.6940918,100817.8125,0.002454311,254.8023376,-2.5101e-05,72.0012207,-0.240789875,-0.38467297,0.844014049,2840\n2471A,112.3744,28.5819,20170601,32.59357542,4007,6228,1584942.316,-27621.34266,40,0.447520584,333.0464478,290.7068787,100821.4297,0.002455799,255.5422668,-2.36861e-05,71.94178772,-0.202878162,-0.398892373,0.842388034,2916\n2472A,113.0073,25.9061,20170601,34.37464789,4435,6329,1699392.857,-326664.2655,251,0.306201965,352.6844482,291.5570374,98768.48438,0.001960136,235.7931213,-1.1879e-05,75.07857513,-0.039016932,-0.30370599,0.665069103,5300\n2473A,113.0116,25.8226,20170601,43.44583333,4448,6330,1701574.096,-336191.3023,174,0.262275696,337.5553589,291.3356018,98474.34375,0.002023876,225.9036102,-1.08712e-05,76.07247925,-0.100154154,-0.242399856,0.677723706,4148\n2474A,113.0119,25.8179,20170601,37.42577031,4449,6330,1701702.294,-336726.4442,177,0.259970546,336.2202454,291.3158875,98446.84375,0.002029434,225.2325897,-1.07889e-05,76.14299774,-0.104844972,-0.237891167,0.67931658,3710\n2475A,113.0383,25.8071,20170601,32.6800554,4451,6334,1704398.926,-337510.4259,192,0.240424827,333.8120117,291.1817932,98075.71094,0.002024018,219.5547943,-1.09133e-05,76.63010406,-0.10612078,-0.21573706,0.661989987,2535\n2476A,113.0348,25.7759,20170601,36.1680791,4456,6334,1704737.681,-341157.4545,199,0.236297563,327.7247925,290.9969482,97642.17969,0.00204571,216.3026123,-1.05137e-05,76.9944458,-0.126194894,-0.199778333,0.671119452,3554\n2477A,111.6217,26.2081,20170601,37.14595376,4387,6107,1563982.085,-314873.7567,117,0.674932241,299.8596497,292.01651,100026.3359,0.00150971,252.7855377,-1.1972e-05,72.28494263,-0.58535409,-0.335997254,0.726286948,4815\n2478A,111.6156,26.4214,20170601,44.47167139,4353,6106,1559207.546,-290335.2026,105,0.617295802,318.7261963,291.8294067,99039.89844,0.001636964,260.2683105,-1.18333e-05,70.72663116,-0.407237262,-0.463909388,0.74633646,2996\n2479A,111.6236,26.2331,20170601,39.27011494,4383,6108,1563666.138,-311957.2524,119,0.679004788,300.6091919,292.0270691,99986.16406,0.001487941,253.2713013,-1.18733e-05,71.9759903,-0.584413886,-0.345699102,0.734659016,3515\n2480A,111.5992,26.4364,20170601,38.71856287,4350,6104,1557387.609,-288861.9773,106,0.595986187,321.8036194,291.7950134,99046.85938,0.001723871,260.6595459,-1.18115e-05,70.60904694,-0.368567437,-0.468356222,0.742161572,2982\n2481A,111.5989,26.4519,20170601,38.40285714,4348,6104,1557054.226,-287075.5004,107,0.589670718,323.3930359,291.8050842,99112.42188,0.001756925,261.0776062,-1.18115e-05,70.55952454,-0.351668864,-0.473329216,0.739135087,2774\n2482A,109.9333,27.5733,20170601,42.20140845,4168,5837,1382136.524,-181904.2551,346,0.664505363,338.0976563,290.1990662,97684.02344,0.00260912,204.6327362,-1.12255e-05,74.57990265,-0.247927666,-0.616521895,0.706343055,5405\n2483A,109.9453,27.5444,20170601,36.36023055,4173,5839,1383754.268,-185099.5222,238,0.65212518,337.4970703,290.1321716,97366.92969,0.002540052,199.850769,-1.102e-05,74.59181213,-0.249636829,-0.602452219,0.718379259,3245\n2484A,109.9792,27.5342,20170601,39.37083333,4175,5845,1387051.071,-185808.7649,242,0.640944958,334.614502,290.0126038,96884.32031,0.002468085,192.8009949,-1.07342e-05,74.45547485,-0.274823219,-0.579035997,0.711530209,2719\n2485A,109.9972,27.5578,20170601,42.84463277,4171,5848,1388282.358,-182807.7052,237,0.648509562,333.420166,290.02948,96947.46875,0.002482558,192.9264832,-1.07682e-05,74.33651733,-0.290217429,-0.579946935,0.710507154,2771\n2486A,110.0394,27.583,20170601,43.59749304,4167,5854,1391705.797,-179277.5061,245,0.654066324,331.0610352,290.0429993,96968.82031,0.002474641,190.9025726,-1.07707e-05,74.5614624,-0.316532493,-0.572372198,0.704614043,3605\n2487A,111.9975,27.725,20170601,26.00668896,4144,6168,1568318.224,-133274.8811,132,0.782859921,337.2138977,290.4688721,99571.64063,0.002302269,229.7408752,-1.21832e-05,74.29649353,-0.30325368,-0.721738756,0.781769812,2920\n2489A,112.0194,27.7314,20170601,31.31779661,4143,6171,1570188.666,-132182.1904,132,0.795218647,338.3766174,290.4475708,99497.10938,0.002292658,231.5582733,-1.25185e-05,74.19737244,-0.293101609,-0.739232183,0.774625421,3047\n2490A,111.9561,27.7569,20170601,35.39577465,4139,6161,1563890.853,-130231.2769,128,0.783385158,337.6931763,290.3634338,99599.28125,0.00238625,225.6069031,-1.17009e-05,74.90756226,-0.297405303,-0.724736094,0.778168559,3526\n2491A,111.9892,27.7044,20170601,35.07983193,4147,6166,1567977.679,-135798.6011,125,0.765988886,335.3491211,290.5322571,99668.17188,0.002289236,229.5262299,-1.21471e-05,74.40862274,-0.31954062,-0.696155727,0.776067197,3594\n2492A,109.6414,28.2558,20170601,32.74358974,4059,5791,1343373.269,-106374.5205,293,0.732493699,285.2645874,289.1526794,96839.07031,0.003487726,229.2196503,-1.13689e-05,77.95145416,-0.706661999,-0.192810401,0.74516511,5910\n2493A,109.7325,28.3169,20170601,40.78011204,4049,5805,1350591.426,-97990.11265,230,0.748540521,288.3500061,289.4301453,97731.55469,0.003589657,230.2562256,-1.15377e-05,76.82450104,-0.71049118,-0.235616714,0.748874843,4368\n2494A,109.6958,28.2675,20170601,45.76388889,4057,5799,1348121.484,-104263.1695,223,0.720895946,290.6882324,289.393158,97632.04688,0.003573879,231.6224213,-1.17156e-05,77.11557007,-0.674424648,-0.254641682,0.748409092,4388\n2495A,111.2897,23.4792,20170601,35.94598338,4823,6054,1585463.226,-633460.9028,44,0.956192017,298.736145,294.4013062,100228.6016,0.003019675,180.5093079,-1.79777e-05,77.07028961,-0.838458478,-0.45966354,0.557651222,3060\n2496A,111.3178,23.475,20170601,36.53910615,4824,6059,1588253.347,-633486.4083,65,0.943925142,298.3441772,294.3736267,100100.7734,0.0030029,179.8728638,-1.75776e-05,77.18374634,-0.830786824,-0.448093712,0.534276247,4296\n2497A,111.2353,23.415,20170601,48.28028169,4834,6046,1581438.563,-641663.7112,32,0.923986971,291.6904907,294.5239868,100337.1953,0.003047402,180.6576233,-1.66932e-05,77.21131134,-0.858582854,-0.341449052,0.543387771,3638\n2498A,111.26,23.4794,20170601,40.91876751,4823,6050,1582595.196,-633916.8697,39,0.96235019,298.5396729,294.4262695,100317.5313,0.003033929,181.0740356,-1.82126e-05,76.99365997,-0.845439732,-0.459727615,0.540629268,2894\n2500A,108.3511,21.7631,20170601,31.28212291,5098,5584,1328200.021,-872581.6961,15,0.369634122,354.6724243,295.082428,100808.6563,0.002766602,281.1942749,-4.10084e-05,79.26787567,-0.034353744,-0.368034244,0.501352429,4164\n2502A,108.6236,21.9667,20170601,28.71488764,5065,5628,1351905.71,-845706.4135,10,0.263568163,304.5966797,294.9052734,100714.7266,0.002841118,276.7215271,-2.36491e-05,78.1467514,-0.216970816,-0.149639025,0.512249649,3318\n2503A,108.6553,21.9508,20170601,31.75706215,5068,5633,1355284.16,-847078.7388,12,0.299408495,304.2290039,294.9709778,100761.1172,0.002850934,280.3829346,-2.62083e-05,77.93145752,-0.247560546,-0.168401971,0.508985996,3794\n2505A,109.5681,23.1478,20170601,38.18571429,4876,5779,1424864.633,-697681.3057,113,0.446328253,293.3067322,294.0881348,99581.52344,0.003272329,230.177948,-1.65834e-05,77.88550568,-0.409918129,-0.176567376,0.545196533,5219\n2506A,109.6042,23.0672,20170601,37.3603352,4889,5785,1429748.163,-706364.8142,46,0.49199909,290.9143677,294.3914185,100189.6094,0.00313246,231.2391968,-1.64774e-05,77.10945892,-0.459593683,-0.175603926,0.542579949,3549\n2507A,109.6014,23.0944,20170601,37.92877095,4885,5784,1429010.944,-703298.6348,48,0.477540076,292.1697998,294.3154602,100070.1484,0.003168068,230.6963196,-1.64854e-05,77.30142212,-0.442245722,-0.180175558,0.546257377,2752\n2508A,109.5683,23.1036,20170601,34.63714286,4884,5779,1425638.33,-702728.465,46,0.451461732,294.0062256,294.2759399,100055.75,0.003221848,231.5661316,-1.67761e-05,77.59007263,-0.412421674,-0.183646545,0.555551529,3513\n2509A,110.1106,22.7019,20170601,33.85714286,4948,5866,1485396.624,-740524.3759,105,0.824321985,266.4427185,294.3353271,99915.39844,0.003302474,237.1069794,-1.24622e-05,80.89638519,-0.822731435,0.051182766,0.530209482,5456\n2510A,110.1675,22.6411,20170601,38.76056338,4958,5875,1492023.162,-746587.9599,80,0.804365754,270.216095,294.4644775,100256.4141,0.003211519,238.6332092,-1.23341e-05,81.04673767,-0.804360151,-0.00299628,0.538504303,2787\n2511A,110.1433,22.6164,20170601,34.49011299,4961,5871,1490098.495,-749768.098,77,0.783448815,268.9223633,294.5059509,100362.7578,0.003234258,238.7167206,-1.23647e-05,80.9986496,-0.783309579,0.014770144,0.529439747,2989\n2512A,106.6103,23.9011,20170601,39.07282913,4756,5306,1126813.515,-649667.9341,143,1.052119613,253.7632294,293.5342407,97606.40625,0.00271546,210.8524323,-9.67009e-06,80.82280731,-1.010144114,0.2942186,0.554944992,4015\n2513A,106.6527,23.8844,20170601,41.93296089,4759,5312,1131138.35,-651103.2992,130,1.06463325,252.0052185,293.5493469,97678.6875,0.002787164,216.7257538,-9.95995e-06,80.80246735,-1.012544155,0.328935176,0.550092876,3188\n2514A,111.5269,24.4175,20170601,44.24504249,4673,6092,1590118.278,-522334.3618,109,0.662247717,311.8299561,292.6168518,98898.57031,0.002735477,161.181778,-9.95038e-06,78.75340271,-0.493489087,-0.441633999,0.57084322,3440\n2515A,111.5622,24.4072,20170601,38.43194444,4675,6098,1593683.234,-522942.4603,111,0.656982064,307.0863953,292.6877441,99128.78906,0.002775051,159.1306458,-9.74129e-06,79.06266785,-0.524118423,-0.396137983,0.571112871,3127\n2516A,108.2134,24.7121,20170601,28.12883436,4626,5562,1268888.288,-536673.8655,312,0.545595348,277.0908508,292.4475708,97327.41406,0.003284543,215.4864807,-1.13094e-05,78.54876709,-0.541425824,-0.06732294,0.564175189,6116\n2517A,108.054,24.6928,20170601,30.28151261,4629,5537,1253969.228,-540945.8669,245,0.535634458,270.6789856,292.1390686,96881.55469,0.003584113,238.6083221,-1.20872e-05,79.8213501,-0.535597146,-0.006322374,0.575574994,5054\n2518A,108.1009,24.6967,20170601,32.43905817,4629,5544,1258387.446,-539896.5173,281,0.532169461,271.9934082,292.208252,96961.125,0.003518467,232.51091,-1.18597e-05,79.45727539,-0.531848252,-0.018486008,0.565978408,4845\n2519A,109.2131,23.7208,20170601,38.19806094,4785,5722,1380833.326,-637169.8023,84,0.755312443,308.4341431,293.9679565,99768.76563,0.003375312,279.06427,-1.71357e-05,76.25611877,-0.591684639,-0.469474316,0.567354083,3973\n2520A,109.2317,23.7369,20170601,41.42577031,4782,5725,1382358.512,-635062.655,86,0.755817354,309.0960388,293.9732971,99822.64063,0.003392727,279.7532043,-1.73465e-05,76.08705139,-0.586613953,-0.476596206,0.565176964,3066\n2521A,107.3476,22.4137,20170601,28.27130682,4994,5424,1219543.587,-811441.5382,119,0.858888149,278.7430115,294.4343872,99126.0625,0.00271639,223.0121155,-1.25782e-05,80.27223206,-0.848914564,-0.130510136,0.523277342,3892\n2522A,107.3701,22.3708,20170601,30.14730878,5001,5427,1222374.221,-816061.6218,131,0.865378976,275.9311829,294.4101868,99035.28125,0.002701797,222.5195313,-1.25826e-05,80.22525024,-0.860750794,-0.089380503,0.522289217,5141\n2523A,105.8945,32.4535,20170601,21.4622905,3388,5191,945975.5108,345338.1393,611,0.358207375,300.5761719,287.7425842,92576.29688,0.001388603,128.1676788,-7.27418e-06,72.21583557,-0.30841127,-0.182195008,0.627396166,5092\n2524A,105.8242,32.4429,20170601,25.40529248,3389,5180,940035.7635,343400.9549,498,0.285548776,311.7120972,288.0372925,92960.02344,0.001397334,132.2037354,-7.74419e-06,71.5116272,-0.213174433,-0.189986229,0.635604799,3224\n2525A,105.8153,32.4246,20170601,25.12222222,3392,5178,939506.8442,341136.2273,512,0.273956329,315.311615,288.1926575,93271.0,0.001406247,133.4162598,-7.91306e-06,71.57542419,-0.192673549,-0.194753617,0.642330885,3241\n2526A,105.8624,32.4285,20170601,25.26044568,3392,5186,943530.1399,342052.0258,536,0.323060572,305.9998169,288.0357056,93082.72656,0.001399379,130.115387,-7.5737e-06,72.10784912,-0.261374444,-0.189872399,0.642406404,4924\n2527A,105.7519,30.5797,20170601,43.79275362,3687,5168,958091.2047,121443.002,406,1.057799339,306.6527405,290.8927307,97096.875,0.001249612,157.0896759,-1.11881e-05,73.64533234,-0.848680079,-0.631412387,0.895123541,5085\n2528A,105.68,30.6133,20170601,41.39944134,3682,5157,951275.4772,124722.5944,346,1.066163421,305.3616943,290.9446411,97196.02344,0.001224935,160.1657715,-1.13824e-05,73.5326004,-0.869512081,-0.616970897,0.907170057,4989\n2529A,105.8161,30.6347,20170601,35.92634561,3679,5179,963069.2794,128582.2569,423,1.015315652,306.8540649,290.7131042,96844.89063,0.001308999,156.4204102,-1.14511e-05,74.05819702,-0.812460482,-0.608911932,0.893412888,5460\n2530A,105.5956,30.475,20170601,38.00277778,3704,5143,945559.6872,107535.0585,284,1.049053311,307.1231079,291.2172546,97556.05469,0.001108223,158.8593445,-1.08938e-05,73.26052856,-0.836494327,-0.633079708,0.929426968,2588\n2531A,105.0331,29.5953,20170601,34.3258427,3845,5053,906200.2356,-1760.366907,327,1.070901394,330.1539001,291.5809937,97372.09375,0.001092559,160.3136597,-1.27217e-05,73.37574768,-0.533029437,-0.928821564,1.020350814,3114\n2532A,105.0717,29.5947,20170601,34.1028169,3845,5059,909681.7198,-1474.529073,323,1.088062406,328.4711304,291.5606689,97359.65625,0.001108068,159.6989441,-1.25981e-05,73.62997437,-0.569049478,-0.927395523,1.015865326,3002\n2533A,105.0653,29.5817,20170601,37.25698324,3847,5058,909263.4587,-3068.511402,321,1.079145312,329.4352417,291.5730286,97362.64063,0.001104659,159.3561859,-1.26529e-05,73.56088257,-0.548829556,-0.929161251,1.020235181,3306\n2534A,105.0406,29.5822,20170601,34.67746479,3847,5054,907033.8767,-3237.770484,332,1.068079472,330.5858765,291.5884399,97374.14063,0.001094099,159.7591095,-1.27344e-05,73.3921051,-0.524626017,-0.930355489,1.025977254,3692\n2535A,103.7705,29.5467,20170601,48.10252809,3853,4851,792999.9033,-18418.85541,372,0.866698503,115.4364853,291.201416,96486.92188,0.001041266,134.0043945,-1.21778e-05,70.67670441,0.782704651,-0.37220937,0.895491362,4874\n2536A,103.7627,29.5844,20170601,48.26880223,3847,4850,791898.0755,-14025.6964,373,0.887860894,115.5301208,291.2165222,96529.96875,0.000989047,135.7652283,-1.24637e-05,70.75178528,0.801191866,-0.382607639,0.894410133,3758\n2537A,103.7506,29.6007,20170601,49.0491573,3844,4848,790635.4219,-12196.30162,370,0.896206439,115.0095749,291.2340393,96581.35938,0.000973635,136.1267548,-1.26079e-05,70.75499725,0.812198043,-0.378840804,0.891406178,3620\n2538A,103.757,29.5634,20170601,52.01133144,3850,4849,791606.1334,-16553.87505,380,0.87563926,115.0060654,291.2200928,96534.74219,0.001024524,134.3856659,-1.23178e-05,70.67913818,0.793581426,-0.370098114,0.897755027,4182\n2539A,103.8986,30.0506,20170601,35.75,3772,4872,799138.2172,42225.48895,460,0.897696257,150.1503448,291.1086121,96439.96094,0.001057554,171.3225555,-1.42935e-05,70.82621002,0.446866781,-0.778568327,0.864451885,4268\n2540A,103.8416,30.0874,20170601,43.24930362,3766,4863,793640.0626,46120.66741,416,0.940160334,144.6555939,291.1042786,96538.0,0.001075432,166.0624847,-1.44114e-05,70.88861847,0.543930471,-0.766838372,0.869625449,3581\n2543A,106.631,30.518,20170601,32.56446991,3697,5309,1036942.361,123067.5478,352,0.983241498,316.0308228,291.1222229,97546.29688,0.001620776,117.719162,-8.80367e-06,75.80275726,-0.68268609,-0.707604051,0.872786343,4780\n2544A,106.6303,30.4576,20170601,42.27513966,3707,5309,1037729.444,115919.2153,310,0.945186138,314.8026123,291.2832642,97796.69531,0.001615451,114.8932953,-8.57133e-06,75.68507385,-0.670692146,-0.665994644,0.881689727,4312\n2545A,106.6271,30.4663,20170601,43.66944444,3705,5308,1037322.98,116913.9154,302,0.967691362,315.3991394,291.2513733,97757.6875,0.001608984,116.0142212,-8.69052e-06,75.70404816,-0.679525912,-0.688963771,0.879355848,3975\n2547A,106.6388,30.4551,20170601,30.78888889,3707,5310,1038519.49,115713.4844,301,0.935414135,314.5847168,291.2894287,97799.08594,0.00161998,114.4745712,-8.51194e-06,75.6977005,-0.666259825,-0.656580091,0.874839306,4281\n2548A,107.5272,31.2797,20170601,42.31320225,3575,5452,1104876.783,222967.4412,337,0.960395753,322.5675049,289.6777344,95433.78906,0.002043173,86.44931793,-7.66409e-06,75.65969849,-0.583809972,-0.762578487,0.70358932,4342\n2549A,107.525,31.215,20170601,46.16016713,3586,5452,1105665.611,215282.1312,373,0.857059181,317.5628052,289.9786987,95774.11719,0.002023846,85.8718338,-7.32727e-06,75.26950073,-0.578372598,-0.632483721,0.713810086,3462\n2550A,107.4967,31.2108,20170601,48.13509749,3586,5447,1103244.464,214466.7943,323,0.857193649,317.7084351,289.9658813,95756.14063,0.002015242,87.35523224,-7.48363e-06,75.18881226,-0.576853693,-0.634051085,0.717251718,2559\n2551A,107.5069,31.1956,20170601,49.24373259,3589,5449,1104370.374,212781.8874,339,0.832082272,316.1691589,290.0606995,95877.53906,0.002013422,86.69328308,-7.3117e-06,75.29351807,-0.576285303,-0.600213468,0.721264839,3271\n2552A,107.4611,31.2058,20170601,57.28272981,3587,5442,1100193.964,213475.6672,310,0.848661065,317.3516846,289.9820251,95774.72656,0.002005199,88.6242218,-7.62635e-06,75.16581726,-0.57500881,-0.624171853,0.728233457,2872\n2553A,103.009,30.0125,20170601,50.64428571,3778,4729,719803.3513,30837.25579,632,0.281379521,113.6614151,287.6148071,89989.96094,0.001795279,90.75141144,-3.90038e-06,76.64189148,0.257731408,-0.112911284,0.660827518,4990\n2554A,103.0013,29.9899,20170601,48.85180055,3782,4728,719331.3443,28103.61874,602,0.292732328,114.8098831,287.493103,89840.94531,0.001826168,91.37215424,-3.94762e-06,76.90119934,0.265721858,-0.122817382,0.679678798,3564\n2555A,103.0109,29.9834,20170601,42.66619318,3783,4730,720255.403,27403.97875,626,0.316516459,113.4783554,287.4503174,89747.13281,0.001829886,91.54737091,-4.13763e-06,77.02692413,0.290319622,-0.126084,0.67332238,3623\n2556A,103.0001,29.9816,20170601,48.52539683,3783,4728,719303.9277,27111.64724,606,0.296465009,115.0142593,287.4232483,89730.72656,0.001836429,91.5186615,-4.01032e-06,77.11815643,0.268664777,-0.125342503,0.686961412,4048\n2558A,106.7389,31.8711,20170601,32.18662953,3481,5326,1027269.358,284549.2122,415,0.867936313,327.6471558,289.3360291,95038.95313,0.001942131,117.5797577,-7.93222e-06,72.65765381,-0.464516103,-0.733170033,0.683009744,3659\n2559A,106.7594,31.8531,20170601,34.7867036,3484,5329,1029311.797,282626.1068,382,0.875813901,326.4268188,289.4684143,95310.53125,0.001954474,118.3181992,-8.06832e-06,72.71941376,-0.484381676,-0.72967416,0.69203496,3838\n2561A,104.6617,30.1366,20170601,33.4432133,3758,4994,866452.3266,58872.72104,377,0.800412118,298.3917847,291.2840271,96588.45313,0.000963947,193.3557129,-1.32982e-05,70.43460846,-0.70415926,-0.380551368,0.944391012,4313\n2562A,104.6356,30.1506,20170601,37.29501385,3756,4990,863956.2228,60299.71577,381,0.79409802,299.6325073,291.297821,96550.92969,0.000948357,195.1900787,-1.34271e-05,70.12814331,-0.690265596,-0.392587572,0.940865278,4226\n2563A,104.6289,30.1377,20170601,37.58725762,3758,4989,863507.493,58714.15621,368,0.777052164,299.7052612,291.2937622,96535.39063,0.000949055,194.6743011,-1.3389e-05,70.12590027,-0.674960375,-0.385017663,0.958182096,3643\n2564A,104.6469,30.1142,20170601,39.93888889,3762,4991,865390.4311,56091.57696,366,0.761607051,298.7831726,291.2766113,96544.89063,0.000962269,192.5832977,-1.32437e-05,70.36664581,-0.66753149,-0.366670251,0.955630064,3194\n2565A,104.6294,30.1259,20170601,38.15571429,3760,4989,863689.4786,57322.12405,368,0.764628828,299.4906616,291.2884216,96531.39844,0.000952779,193.8971252,-1.3331e-05,70.18626404,-0.665583611,-0.376371771,0.964913428,3739\n2566A,102.1755,31.9286,20170601,4.474930362,3472,4596,628361.9688,252944.9263,2887,0.317354977,266.8496094,275.2094421,66149.50781,0.001560812,74.56398773,-1.1333e-06,73.08799744,-0.316874593,0.017454971,0.141552567,5597\n2567A,102.2218,31.9025,20170601,10.50840336,3476,4603,632638.4853,250127.9872,2851,0.394913703,266.465332,275.1412964,66085.33594,0.001603235,82.3562088,-1.26611e-06,72.91881561,-0.394161373,0.02436492,0.144236654,6541\n2568A,102.2402,31.8934,20170601,3.856338028,3477,4606,634327.5735,249160.9657,2967,0.436406434,265.7664795,274.9389343,65873.66406,0.001623698,85.46770477,-1.31826e-06,72.85816193,-0.435214251,0.032235384,0.14681676,7007\n2570A,101.9603,30.0475,20170601,15.21648045,3772,4562,625427.3095,27806.88671,2740,0.406288981,203.8076019,274.2634583,63770.57422,0.00254528,121.7675018,-3.57074e-06,87.76465607,-0.16400072,0.371718287,0.215120465,6631\n2571A,102.3419,27.8094,20170601,19.32142857,4131,4623,679433.8398,-233920.2892,1621,0.475815624,232.3231812,288.2166138,80420.9375,0.002016616,192.4848633,-3.13899e-06,64.93786621,-0.376586407,0.290831894,0.26171729,3581\n2572A,102.2714,27.8408,20170601,20.54329609,4126,4611,672647.9158,-230713.8368,1692,0.34070766,231.2393494,289.4865723,82113.42969,0.001943677,190.5304871,-3.16795e-06,62.30973053,-0.265667349,0.213313311,0.260489076,5689\n2573A,102.2625,27.8978,20170601,21.25218659,4116,4610,671329.8128,-224072.1958,1562,0.312241763,233.3387756,289.5451355,82435.22656,0.001917009,194.9723053,-3.40234e-06,62.19509125,-0.250468969,0.186440915,0.281057447,4045\n2574A,102.2689,27.8847,20170601,22.76470588,4119,4611,672034.5081,-225568.9816,1523,0.330293238,232.4882965,289.5105896,82352.80469,0.001930135,194.1278076,-3.33858e-06,62.36984253,-0.261992723,0.201130405,0.282879651,3967\n2575A,102.2311,27.8953,20170601,24.98459384,4117,4605,668454.1938,-224580.2746,1540,0.2498153,234.3257599,289.8138123,82585.65625,0.001893445,187.1129608,-3.30195e-06,62.25106812,-0.202932328,0.145691991,0.280997127,4169\n2576A,104.8,26.5892,20170601,39.79665738,4326,5016,920538.8457,-356861.0601,1898,0.80696398,238.3761902,284.5499268,79875.05469,0.002609261,228.9575958,-6.40407e-06,83.24412537,-0.687124491,0.423143864,0.524140358,5011\n2577A,104.83,26.5917,20170601,40.890625,4325,5021,923318.1396,-356287.7843,1844,0.799913704,236.9937744,284.627533,80194.19531,0.002607421,232.2611847,-6.52448e-06,83.34240723,-0.670803905,0.435756862,0.524475694,4175\n2578A,104.89,26.5939,20170601,39.54929577,4325,5030,928908.9376,-355465.4986,1852,0.785284102,234.9063568,284.8887329,81073.27344,0.002598977,237.7640533,-6.73521e-06,83.3825531,-0.642517209,0.451489449,0.533989727,4047\n2579A,104.8475,26.5894,20170601,30.62569832,4326,5024,924983.3819,-356391.6387,1823,0.792980731,236.6195068,284.7252197,80464.52344,0.002601658,233.8719177,-6.59327e-06,83.28025055,-0.662154078,0.436314583,0.538946688,3374\n2580A,104.9544,26.5506,20170601,39.40833333,4332,5041,935450.6547,-359907.517,1830,0.752775967,235.1817627,285.1922913,81656.3125,0.002556966,243.2651978,-7.01063e-06,82.90953064,-0.617992401,0.42983377,0.532309413,5145\n2585A,109.1916,27.7297,20170601,23.85416667,4143,5719,1311327.91,-173846.5597,308,0.939418554,306.1422729,289.3128052,96037.00781,0.002274304,232.4941559,-1.02374e-05,77.46893311,-0.758668184,-0.554012418,0.731624246,3832\n2586A,109.1794,27.7231,20170601,29.31284916,4144,5717,1310320.296,-174778.9917,276,0.9342044,306.7456665,289.3229675,96045.21875,0.00228549,230.838913,-1.01422e-05,77.54299164,-0.748613536,-0.558852077,0.732177615,3430\n2587A,105.2864,27.3125,20170601,31.51949861,4210,5094,957185.4798,-267685.7135,1519,0.382281572,253.7569885,284.9778442,83539.3125,0.002090187,227.9919128,-7.3479e-06,85.83651733,-0.367018372,0.106942587,0.658759654,4304\n2588A,105.31,27.2944,20170601,31.77094972,4213,5098,959596.5055,-269573.219,1506,0.402884245,250.622757,285.1691589,84010.78125,0.002070776,231.0780945,-7.42555e-06,85.65518188,-0.380057812,0.13368535,0.670807779,2820\n2589A,104.9022,25.0925,20170601,16.9625,4565,5032,947713.8409,-530024.3482,1221,0.869531393,255.2337952,288.7155762,86595.30469,0.002511422,207.3165741,-1.21594e-05,78.94020081,-0.84080559,0.221654713,0.497350246,5020\n2590A,104.8811,25.0992,20170601,15.26544944,4564,5029,945622.833,-529450.6441,1283,0.861305594,254.327179,288.6146851,86431.32031,0.002539662,206.1522522,-1.17635e-05,79.12487793,-0.829273283,0.232708216,0.465371609,5435\n2591A,107.9783,26.5747,20170601,35.51815642,4328,5525,1217784.639,-323964.4079,746,0.927642524,252.3674622,288.3153992,91816.09375,0.002453703,278.0741272,-9.40635e-06,81.15408325,-0.88405025,0.281026185,0.612250686,3241\n2593A,107.5228,26.2403,20170601,23.11350575,4382,5452,1180261.849,-368389.7049,877,0.79744947,252.5640717,288.0232544,90582.97656,0.002956341,301.2262268,-9.07251e-06,84.0309906,-0.760799825,0.23897551,0.573387146,5582\n2594A,99.1678,25.1081,20170601,27.45338983,4563,4115,399368.3863,-567528.9573,1663,0.758282125,31.95875931,288.0348206,80014.91406,0.002351345,96.16580963,-3.11304e-06,66.56684875,0.40135482,0.64335537,0.233318731,3311\n2595A,99.1711,25.1328,20170601,30.39106145,4559,4115,399562.2198,-564638.8197,1672,0.755832791,32.28301239,287.7327881,79496.625,0.002341066,95.80272675,-3.09291e-06,66.43314362,0.40368095,0.639003038,0.233538389,4070\n2596A,103.7032,27.3392,20170601,26.85310734,4206,4840,810005.9823,-278796.1274,1914,1.00482893,304.3499756,284.7238464,80857.80469,0.00191047,173.0699463,-6.3495e-06,80.17396545,-0.82962966,-0.566917837,0.482687116,3315\n2597A,103.7225,27.3361,20170601,22.50840336,4206,4844,811829.8525,-279000.1643,1921,0.988420248,305.135376,284.5687256,80641.46094,0.001903543,171.4781494,-6.23521e-06,80.66107178,-0.808361411,-0.568793833,0.481885672,2942\n2598A,100.2143,26.8576,20170601,19.28389831,4283,4282,488704.2501,-358333.2514,2385,0.46882689,49.05317307,285.002533,73996.99219,0.002544035,157.1844635,-4.31272e-06,64.14559937,0.354105651,0.307258576,0.191317394,3915\n2599A,100.2497,26.8802,20170601,14.76734104,4279,4288,491877.194,-355506.2786,2428,0.467945695,44.51752472,285.2825623,74317.75781,0.00256236,159.0809326,-4.54803e-06,64.42049408,0.328081906,0.333669662,0.177616209,3969\n2600A,100.2203,26.8906,20170601,12.86505682,4278,4283,489060.2619,-354433.3281,2415,0.471450388,48.6860199,285.0585022,74047.82813,0.002575112,153.2482758,-4.40524e-06,64.28829193,0.354100049,0.311253309,0.188906804,3622\n2601A,100.98,22.7633,20170601,18.6408046,4938,4405,589372.3158,-829944.7863,1333,0.905670404,205.871109,291.3075867,86133.14844,0.003571338,127.7452469,-6.48283e-06,77.40776062,-0.395176619,0.814907491,0.288197458,3813\n2602A,100.9817,22.8322,20170601,19.05694444,4927,4405,589056.1552,-822002.1298,1363,0.919576406,204.0083618,291.2594299,85982.71094,0.003569263,123.6655426,-6.45679e-06,76.68824768,-0.374137729,0.840024829,0.284693629,5233\n2603A,100.0869,23.8822,20170601,26.72285714,4759,4262,494741.563,-705699.5666,1488,0.528833449,60.6861496,288.3456726,80643.85156,0.003621748,64.56266022,-2.41799e-06,72.13432312,0.461108744,0.258927703,0.258298099,3913\n2604A,100.0782,23.8982,20170601,26.17847025,4756,4260,493800.3505,-703890.9038,1543,0.523346245,59.20407104,288.2746887,80511.96094,0.003541532,64.87241364,-2.35407e-06,72.18202972,0.449544281,0.267957479,0.247886837,5148\n2605A,101.5482,25.0441,20170601,15.67688022,4573,4496,627684.3374,-562536.3494,1789,1.418025136,12.1774807,288.5780029,80336.45313,0.002238392,259.2600098,-6.05266e-06,66.7363739,0.299110442,1.386119843,0.256407291,3465\n2606A,101.538,25.0492,20170601,21.25348189,4572,4494,626668.5345,-562008.4502,1787,1.421431303,12.47855949,288.5471497,80281.83594,0.00224828,260.5528259,-6.07959e-06,66.85070801,0.307125956,1.387854695,0.256832361,4176\n2608A,103.3772,23.3993,20170601,26.65198864,4836,4788,818888.1159,-739499.3226,1291,1.261051774,199.8368073,289.856842,86490.78125,0.002855228,202.9137878,-4.72273e-06,82.96553802,-0.427915782,1.18622911,0.346936643,3872\n2609A,103.386,23.4168,20170601,27.5,4833,4790,819573.6887,-737409.0101,1285,1.283986449,199.2191772,289.8394775,86515.10938,0.00288259,207.3394775,-4.92886e-06,82.88478088,-0.422653913,1.212429285,0.342468679,4549\n2610A,104.2533,23.3594,20170601,18.79008746,4843,4929,904721.3149,-736411.4984,1275,1.359906197,199.8015747,288.7011414,84959.74219,0.002445734,243.1298218,-6.79694e-06,85.36598969,-0.46067366,1.279501677,0.386454701,3713\n2611A,104.2319,23.3892,20170601,19.89655172,4838,4925,902311.7993,-733176.9551,1268,1.384558082,199.8092651,288.7767029,85045.09375,0.002396623,247.1528625,-7.17614e-06,84.98868561,-0.469199568,1.302633047,0.376519203,3366\n2612A,100.7939,22.0019,20170601,25.28366762,5060,4375,576217.6784,-918539.9801,551,0.537201285,0.952060878,294.5121155,91861.92188,0.003040961,61.1054039,-4.31799e-06,78.18933105,0.008925479,0.537127137,0.303641975,4920\n2613A,100.8017,22.0225,20170601,16.5130814,5056,4376,576852.8202,-916131.1954,588,0.533723414,183.1256561,294.4959717,91786.125,0.003031315,63.74806976,-4.32574e-06,78.04306793,-0.029100992,0.53292948,0.290002406,5283\n2614A,100.1542,25.7054,20170601,21.56703911,4467,4273,490153.9184,-493426.8257,2018,0.919150114,31.97635269,286.9704895,76959.82813,0.002134944,280.7499695,-1.82624e-05,65.33032227,0.486740649,0.779692531,0.2253277,5372\n2615A,100.2171,25.5811,20170601,15.15915493,4487,4283,496900.7183,-507613.3694,2017,0.972710192,35.46317673,287.3417969,77876.65625,0.002134419,273.9028931,-1.21537e-05,65.579216,0.564332187,0.792271614,0.233715877,5387\n2616A,98.5842,24.428,20170601,38.13610315,4672,4021,346360.0683,-648839.3908,923,0.524293959,49.02747726,292.3500977,88334.53125,0.003677026,69.67405701,-2.15987e-06,75.00344086,0.39584592,0.343787998,0.271404147,3690\n2617A,98.578,24.441,20170601,42.49019608,4670,4020,345706.1916,-647351.3981,909,0.524014056,47.25299835,292.4095764,88425.39063,0.003632618,69.62265015,-2.15409e-06,74.87721252,0.384805262,0.35569036,0.274780333,3682\n2618A,98.8601,25.8567,20170601,19.85755814,4443,4066,366466.9035,-481398.4167,1044,0.494122148,95.02560425,287.450531,80397.75,0.003521879,36.58598328,-9.08586e-07,77.62693787,0.492224693,-0.043261465,0.214865834,5357\n2619A,98.8546,25.8417,20170601,15.54347826,4445,4065,366013.8104,-483171.6468,1021,0.498714298,95.24827576,287.3891907,80338.42188,0.003561329,36.45748901,-9.06615e-07,77.69726563,0.496625751,-0.045593917,0.223707095,5520\n2620A,99.7064,27.8136,20170601,12.44481605,4130,4201,435754.6559,-248382.7472,3332,0.769264698,30.77442932,278.3132629,66492.28906,0.002137532,157.1840973,-1.82312e-06,76.16876221,0.393591106,0.660949469,0.116448417,2835\n2621A,99.7056,27.8317,20170601,12.73638968,4127,4201,435578.495,-246254.9584,3292,0.77958256,28.83324814,278.2930908,66432.22656,0.002079668,159.760849,-1.86319e-06,75.8204422,0.375952989,0.68294096,0.116368696,2307\n2622A,97.1804,31.1278,20170601,19.72532895,3600,3797,193215.806,136454.7832,3358,0.246395782,59.10718536,276.7553101,62262.41406,0.001334445,213.7978516,-1.88942e-06,51.86611176,0.211435601,0.126514301,0.084683217,3878\n2624A,91.7608,29.2313,20170601,8.361031519,3903,2930,-294446.8563,-86384.11584,3591,0.68668288,216.2489014,279.0968018,61529.78125,0.001535424,320.7613525,-7.45727e-06,46.17853546,-0.406021237,0.553787112,0.089234129,2015\n2625A,91.7706,29.261,20170601,7.943313953,3898,2931,-293440.6663,-82894.96948,3554,0.663208723,217.407135,279.0942993,61499.89844,0.001461139,321.644989,-7.48978e-06,46.35028076,-0.402872384,0.526820302,0.088327661,2181\n2626A,88.8876,29.2718,20170601,13.47058824,3897,2470,-555067.7734,-69167.1786,3842,0.780289173,182.8169098,281.6560974,62330.64453,0.000841066,655.4854736,-6.74866e-06,31.11416054,-0.03834578,0.779346406,0.083929546,1750\n2627A,88.8931,29.2365,20170601,7.04398827,3902,2471,-554828.8507,-73374.42296,3852,0.850846112,182.5454559,281.3746643,62114.77344,0.00087887,644.1260986,-6.85687e-06,31.08370018,-0.037786577,0.85000664,0.09649995,2296\n2628A,92.0657,31.4846,20170601,44.10614525,3543,2978,-258733.2706,180774.0212,4520,0.757283449,238.7271423,271.5436096,57251.09375,0.001244112,172.8322296,-4.68929e-06,55.47658539,-0.64724189,0.393136263,0.069626011,2302\n2630A,80.1161,32.5,20170601,16.11726384,3380,1067,-1289241.411,396246.3684,4290,1.630481243,54.8483696,275.8942261,58827.33984,0.000362187,1170.675903,-8.6177e-06,29.03489876,1.333105922,0.938774526,0.056254357,672\n2632A,94.3681,29.6376,20170601,9.39017341,3838,3347,-57140.49478,-42861.69842,3017,0.269031703,206.3456268,275.1026917,63637.25391,0.002380212,158.4367981,-4.02048e-06,78.79019165,-0.119388916,0.241089895,0.135992765,3030\n2633A,94.3616,29.6632,20170601,7.451977401,3834,3346,-57708.5148,-39819.07344,3041,0.247635141,206.5253448,275.0056763,63619.57813,0.002420449,157.0464325,-3.84113e-06,78.7743454,-0.110589229,0.221569821,0.134660676,2168\n2634A,106.9893,33.1842,20170601,41.890625,3271,5366,1029917.067,443417.503,562,0.428251177,359.4197998,286.6208191,91847.45313,0.001880005,68.87059784,-2.60598e-06,77.28965759,-0.004376623,-0.428228825,0.565573752,4314\n2635A,107.0154,33.0706,20170601,47.69553073,3289,5370,1033811.955,430151.5471,510,0.12008667,173.3561401,287.5496521,94011.75,0.001753839,77.07151031,-2.24398e-06,75.89679718,0.013904395,-0.119278982,0.569553077,2997\n2636A,107.0089,33.1138,20170601,45.40730337,3282,5369,1032623.101,435231.6211,529,0.230627075,177.9336548,287.3482056,93392.75,0.001781352,73.77414703,-2.3815e-06,76.41027069,0.008336528,-0.23047635,0.575571477,3244\n2637A,107.007,33.0323,20170601,47.88611111,3295,5369,1033653.309,425499.2719,511,0.041591436,160.3083649,287.5950928,94354.60156,0.001746097,80.02737427,-2.10086e-06,75.43299103,0.014017797,-0.039158002,0.580293953,4032\n2638A,109.7414,38.3344,20170601,28.8960114,2447,5807,1171631.979,1091382.133,1133,0.383485317,183.7398987,283.1827087,88786.9375,0.000751,253.1254883,-1.172e-05,48.24245453,-0.025013002,0.382668704,0.392663628,3193\n2639A,109.7456,38.2911,20170601,29.62570621,2454,5807,1172750.782,1086224.077,1071,0.422878504,185.6974182,283.2213135,88814.13281,0.00075286,251.7909088,-1.14078e-05,48.07284164,-0.041980024,0.420789629,0.408533186,1739\n2640A,109.7289,38.2839,20170601,30.51983003,2455,5805,1171563.355,1085158.871,1075,0.434205472,187.049057,283.245697,88815.60156,0.000751476,252.1665497,-1.14657e-05,48.0436058,-0.053283796,0.4309237,0.408666641,1943\n2641A,109.7336,38.2478,20170601,31.4501385,2460,5805,1172590.359,1080873.112,1077,0.480805486,185.7622528,283.2600708,88845.25,0.000757291,251.2440643,-1.12471e-05,47.92235184,-0.048271891,0.47837615,0.413436711,2091\n2642A,109.0311,32.6778,20170601,38.88285714,3352,5693,1212856.659,406474.2512,359,0.615920663,292.7368164,289.1119995,96151.72656,0.001729907,143.3545532,-5.33541e-06,69.22299194,-0.568071246,-0.238019526,0.638497293,4239\n2643A,109.0281,32.6939,20170601,42.38169014,3349,5692,1212324.387,408348.356,265,0.646802068,297.3444824,289.2582397,96412.1875,0.001689448,146.8538208,-5.42697e-06,68.89003754,-0.574546993,-0.297066778,0.62157917,2637\n2644A,109.0072,32.6975,20170601,42.6755618,3348,5689,1210469.108,408518.0412,276,0.63067764,299.1253357,289.3021851,96461.11719,0.001694863,148.0795441,-5.47218e-06,68.78479767,-0.550951779,-0.306930691,0.625590801,3428\n2645A,109.9154,33.8715,20170601,33.87955182,3161,5834,1267040.371,559489.4658,724,0.164359972,227.1846161,284.2695007,90260.85156,0.001798143,138.1898346,-5.02428e-06,68.89324951,-0.120563127,0.111708246,0.597771883,4581\n2647A,104.1731,36.5458,20170601,42.94827586,2733,4916,750994.7195,821225.1675,1715,1.355695367,303.5161133,282.9290466,81715.86719,0.000577497,367.8388062,-6.98244e-06,44.23310471,-1.130332232,-0.748504579,0.314399362,1764\n2648A,104.1731,36.5481,20170601,30.22922636,2732,4916,750968.7358,821502.6867,1723,1.357420325,304.3940735,282.8800964,81643.40625,0.000577582,368.0976563,-6.99065e-06,44.21148682,-1.120154262,-0.766710103,0.302439153,1704\n2649A,106.005,34.3469,20170601,21.88243626,3085,5209,930098.1823,572529.916,1700,0.716347694,226.886261,282.2886047,83537.73438,0.00143241,240.8093872,-7.80151e-06,66.17281342,-0.522920907,0.489599615,0.469249517,6181\n2650A,105.7281,34.5814,20170601,30.97740113,3047,5164,903709.6996,598041.899,1197,0.893477201,203.2091217,283.4786072,85615.88281,0.001330396,265.8504028,-7.22041e-06,63.82713318,-0.352099001,0.821174622,0.475265712,3997\n2651A,105.8614,34.5653,20170601,34.33286119,3050,5186,915107.2498,597345.9173,1104,0.893947423,219.9158173,283.5162964,85888.86719,0.001296321,250.276825,-6.75318e-06,63.71847153,-0.573597491,0.685658753,0.467576444,2934\n2652A,102.6219,37.9311,20170601,36.92837079,2511,4667,611250.3971,978005.3236,1538,0.815663576,50.51007843,281.8594055,82612.67188,0.000487283,148.7010956,-4.6404e-06,38.61241913,0.629463792,0.518731475,0.244492665,2267\n2653A,102.6469,37.9358,20170601,36.28194444,2510,4671,613206.8523,978730.6813,1522,0.776118875,50.24443054,282.2157593,83098.34375,0.000460682,153.8014221,-4.74737e-06,37.98474503,0.596651614,0.496354073,0.269750714,2264\n2654A,100.4686,38.9467,20170601,19.8,2349,4323,431902.6137,1089882.506,1472,0.839065254,9.563155174,282.3387146,84065.375,0.000365978,109.1428146,-4.14774e-06,37.37229919,0.139393717,0.827405512,0.235155448,1970\n2655A,100.4497,38.9389,20170601,27.20277778,2350,4320,430464.1121,1088851.058,1478,0.86799401,14.07009315,282.2464905,83903.40625,0.000372754,106.0350342,-4.13879e-06,37.64964676,0.211010829,0.841954887,0.220015913,1846\n2656A,106.6692,35.5461,20170601,25.28169014,2893,5315,968827.2082,722734.7438,1386,0.829016864,70.96283722,280.7131042,83806.30469,0.001241517,195.05159,-6.02548e-06,61.51247406,0.783665717,0.270438462,0.430801153,3054\n2657A,106.7039,35.5294,20170601,29.01532033,2895,5321,971934.4402,721072.8172,1353,0.850659192,70.81289673,280.9185181,84059.26563,0.001216197,195.6702728,-6.19449e-06,60.79110718,0.803395152,0.279601902,0.437777847,2564\n2658A,98.509,39.746,20170601,32.68854749,2221,4009,273742.0588,1180166.037,1467,1.165856719,32.14234161,282.2484741,83745.92969,0.0002078,131.4166107,-6.93406e-06,37.21934891,0.62024796,0.987174928,0.227842391,2087\n2659A,98.5023,39.7294,20170601,34.2994429,2223,4008,273291.7493,1178124.166,1479,1.186703205,31.64324188,282.0433044,83439.58594,0.000223595,126.6658401,-6.86272e-06,38.02019882,0.622561932,1.010287642,0.20681259,2089\n2660A,107.6831,35.7289,20170601,28.02793296,2863,5477,1049711.082,755084.3459,1372,0.443602949,192.6305237,283.2072449,87041.35156,0.000973954,214.7493896,-8.46936e-06,57.25603104,-0.096996769,0.43286857,0.457609594,3233\n2661A,107.6406,35.5236,20170601,34.47075209,2896,5470,1049397.806,730011.7629,1243,0.38339141,201.7560425,283.8739624,88018.35156,0.000989846,212.3048401,-8.45937e-06,57.24524689,-0.142102063,0.356084228,0.465678811,4304\n2662A,107.6364,35.7067,20170601,30.4902507,2867,5470,1046211.696,751923.5357,1402,0.427698076,191.6710968,283.2947998,87146.49219,0.000976939,216.7307129,-8.52506e-06,57.19116592,-0.086517856,0.418855935,0.465575278,2932\n2663A,104.6228,35.5714,20170601,27.74789916,2889,4988,799228.8268,707363.7087,1939,0.987079501,217.6892548,279.9481506,79557.04688,0.000822836,245.6480865,-6.45643e-06,61.06822968,-0.603464186,0.781125367,0.323401719,2563\n2664A,104.6169,35.5975,20170601,29.16155989,2884,4987,798432.0064,710456.2565,1957,0.966579437,216.0372925,279.9670105,79546.78906,0.000823755,245.8132629,-6.49199e-06,60.61266708,-0.568635523,0.781619787,0.318248868,2464\n2665A,105.0822,33.3261,20170601,20.0625,3248,5061,864975.4457,441968.031,1146,0.235272527,221.1211548,282.3683167,82686.01563,0.001451904,164.3709869,-3.6828e-06,74.61393738,-0.154724032,0.177238941,0.497137308,4247\n2667A,103.2139,35.6039,20170601,35.40756303,2883,4762,682179.6674,700656.2081,1894,0.572397292,24.49534416,279.8554688,78281.21875,0.001188712,151.5879822,-7.47118e-06,56.36581802,0.237320423,0.520881653,0.281044781,2991\n2668A,103.2064,35.5997,20170601,30.64345404,2884,4761,681600.5913,700098.1078,1900,0.600163102,26.28383255,279.7972107,78284.0,0.001211459,148.6433105,-7.22589e-06,56.6895752,0.265755832,0.538116693,0.282856673,2807\n2669A,102.905,35.0003,20170601,27.56901408,2980,4713,662441.9863,625862.2214,2907,0.848208785,282.2159119,274.5579529,69771.72656,0.001358416,141.4181213,-3.48597e-06,71.5104599,-0.829012394,-0.179434091,0.210101157,3731\n2671A,100.9048,36.9639,20170601,26.02222222,2666,4393,480788.5372,851288.3369,3106,0.915762842,296.2992859,274.8508911,69149.08594,0.001014638,256.7167969,-9.30309e-06,57.09166718,-0.820998371,-0.405688673,0.153272375,2583\n2672A,102.0199,35.5102,20170601,29.07799443,2898,4571,584007.5302,681668.816,2561,0.175709888,74.67662811,276.7151184,70571.47656,0.001750593,122.0310364,-1.06118e-06,56.72477341,0.169461563,0.046440728,0.177762911,2944\n2673A,100.6188,36.2866,20170601,22.37640449,2774,4347,462219.4506,767961.5441,2871,0.637171507,294.7624512,278.3710022,71072.88281,0.000794096,297.9203491,-2.05624e-05,46.41195679,-0.578600705,-0.266849637,0.152113423,1983\n2674A,100.2561,34.4714,20170601,27.10110803,3065,4289,444139.8556,547277.7565,3771,0.699670613,47.98114014,269.5961304,61971.53906,0.001650528,127.5365067,-1.17158e-06,68.28144836,0.519790888,0.46835497,0.097499505,2289\n2675A,97.0,33.0014,20170601,17.88095238,3300,3768,172667.9362,360313.5612,3757,0.548581064,28.39790154,270.2093201,60521.32031,0.001336878,86.96800995,-3.04678e-07,73.20298004,0.260893643,0.48257193,0.087460175,3045\n2676A,97.3731,37.3753,20170601,28.27777778,2600,3828,192117.5837,889084.8891,2999,0.606610894,324.050293,276.5194397,68761.16406,0.000645369,180.1441193,-5.56876e-06,38.20018387,-0.356162399,-0.491044939,0.110580862,1636\n2677A,106.1532,37.9648,20170601,36.54507042,2506,5232,892960.8555,1009116.469,1130,0.269492298,17.94690323,285.1565552,88356.99219,0.000373558,276.1674194,-9.36624e-06,37.92724991,0.083037809,0.25638023,0.388421357,3058\n2678A,106.2025,37.9844,20170601,35.49438202,2503,5240,896619.8298,1011932.708,1131,0.399353206,185.6519318,285.2631836,88568.42969,0.000372326,277.828064,-9.58941e-06,37.78768921,-0.039329208,0.397411883,0.380642414,2617\n2679A,106.196,37.9723,20170601,31.52752294,2505,5239,896269.0845,1010411.992,1130,0.392440766,184.1256714,285.2640381,88515.76563,0.000374951,279.3349304,-9.56553e-06,37.867836,-0.028232798,0.391423881,0.372224063,2864\n2680A,105.0197,37.4514,20170601,32.86182336,2588,5051,808891.6753,937283.2381,1259,0.325256735,199.6809082,284.3375854,85470.44531,0.000443934,334.6666565,-7.92326e-06,40.30327606,-0.1095374,0.306257248,0.31900239,1533\n2681A,105.18,37.0172,20170601,35.66201117,2657,5077,827237.0702,886194.3756,1709,0.06970761,236.7164307,281.9941711,82823.27344,0.000755304,307.1931763,-1.00134e-05,49.86452866,-0.058271989,0.038256057,0.316709965,1231\n2682A,105.1971,37.5002,20170601,38.00702247,2580,5080,822548.288,944650.9018,1225,0.358546615,195.6910858,285.1191406,87173.6875,0.000419843,341.2068176,-8.10492e-06,39.3909111,-0.096966475,0.345185727,0.353224605,2702\n2683A,106.2319,36.1417,20170601,27.15616046,2797,5245,924463.1254,790090.8218,1610,0.541872561,9.020320892,280.3899231,82699.09375,0.000864578,242.8618011,-6.37311e-06,58.08214188,0.084954798,0.535171509,0.342578411,3380\n2684A,106.2792,36.0022,20170601,24.97771588,2820,5253,930273.3393,773761.2487,1737,0.483846754,10.11861706,279.7474365,81571.78125,0.000954525,230.4520874,-6.08451e-06,60.11287308,0.085002854,0.476321518,0.367416412,2363\n2685A,106.2375,36.0211,20170601,24.23455056,2817,5246,926588.0422,775639.7685,1790,0.497945905,7.997248173,279.684845,81400.75781,0.000939131,230.6415863,-5.97917e-06,59.96330261,0.069275104,0.493103534,0.373061597,3104\n2686A,89.191,42.9409,20170601,53.92087542,1710,2519,-429927.9711,1578490.724,16,0.494080901,122.0056839,290.8013916,99066.41406,3.88167e-05,160.9238434,-3.93639e-06,26.42686272,0.418994814,-0.261838257,0.221727252,2319\n2687A,89.1673,42.9559,20170601,68.71764706,1707,2515,-431571.0087,1580428.02,47,0.509785056,129.21698,290.5697632,98458.85938,4.60207e-05,164.8608398,-3.89935e-06,26.61513329,0.394981056,-0.322289854,0.213779852,2662\n2688A,93.5128,42.8172,20170601,29.67156863,1729,3210,-110357.8242,1551468.552,754,1.335805416,166.1001587,287.5172119,92337.63281,5.72949e-05,214.7267303,-3.04096e-06,27.20458221,0.321005642,-1.296661735,0.250863791,2388\n2689A,93.4961,42.8328,20170601,32.6103352,1727,3207,-111567.7225,1553397.079,761,1.321559429,166.3286438,287.431366,92205.11719,5.79569e-05,212.1388245,-3.06988e-06,27.20147514,0.312463641,-1.284089446,0.240016878,2023\n2690A,87.9897,44.1564,20170601,10.12539185,1515,2326,-508085.4248,1732801.491,558,0.777440488,12.27381229,283.6047974,93165.0625,0.000331724,194.7369843,-8.14053e-06,45.60099411,0.165266424,0.75967145,0.212963939,2710\n2691A,87.2997,44.0114,20170601,73.18696884,1538,2216,-559387.682,1718831.883,579,0.799316466,49.9695816,284.3627319,94617.73438,0.000291684,173.0821686,-9.39597e-06,46.32137299,0.612025797,0.514131486,0.262832701,2369\n2692A,87.2717,44.0297,20170601,52.32122905,1535,2211,-561241.372,1721226.929,570,0.759749651,55.69974518,284.4645996,94640.30469,0.000288062,191.508316,-9.42329e-06,46.22452164,0.627613723,0.428159505,0.222225696,2469\n2693A,82.0485,44.9079,20170601,20.61699164,1395,1376,-924659.7667,1867798.154,525,0.507968545,146.4760742,283.2757568,94296.21875,0.00064731,181.5914612,-1.23561e-05,55.07424164,0.280575454,-0.423449486,0.223066106,2439\n2694A,82.0806,44.8969,20170601,34.93175487,1397,1381,-922558.0233,1866159.803,502,0.539366603,145.1879272,283.5654297,94906.82031,0.000621153,188.2937927,-1.24042e-05,54.69483185,0.307950377,-0.442812502,0.212994978,2184\n2695A,80.2828,41.1636,20170601,69.5,1994,1093,-1118238.371,1432255.093,1110,0.911611199,337.9553833,285.7757568,88618.16406,0.000281572,109.6018982,-1.79578e-05,46.01344681,-0.342222452,-0.844937146,0.259647042,1671\n2696A,80.2956,41.1933,20170601,69.5377095,1989,1095,-1116731.913,1435698.672,1122,0.92384398,339.5630493,285.6088562,88587.33594,0.000293061,112.823555,-1.7371e-05,45.95623779,-0.322655797,-0.86566788,0.252849162,1907\n2697A,76.1861,39.7153,20170601,63.63700565,2226,438,-1459769.956,1311715.085,1290,0.348976642,158.5228271,288.3949585,85634.0625,0.000215322,618.8771362,-1.12248e-05,30.51471901,0.127797559,-0.324734479,0.266867816,1718\n2698A,75.9828,39.5371,20170601,98.80446927,2254,405,-1479526.882,1293428.194,1370,0.099880852,141.0090332,287.869812,85787.76563,0.000299375,398.4848328,-1.8474e-05,33.57466125,0.062850446,-0.077627353,0.235154659,1580\n2700A,75.9435,39.4365,20170601,133.8005618,2270,399,-1484909.609,1281986.561,1290,0.203933403,64.68322754,288.2397766,86647.0625,0.000276627,371.1020508,-1.81205e-05,33.80693054,0.184344232,0.087212622,0.251003951,3226\n2701A,79.9485,37.1152,20170601,103.977591,2642,1040,-1218690.365,948717.6981,1367,0.68871659,282.7757263,288.5829468,85202.42188,0.000135035,368.0710449,-1.06801e-05,27.22746468,-0.671674132,-0.152264252,0.25745061,1555\n2702A,79.9117,37.1013,20170601,131.0946328,2644,1034,-1221904.543,947507.8567,1391,0.656262577,284.3878174,288.3294678,84944.5625,0.000147042,351.0545959,-1.13484e-05,27.7211132,-0.635688305,-0.163036764,0.25891009,2997\n2703A,81.2815,43.9404,20170601,48.26760563,1550,1253,-995572.9683,1757814.371,639,0.493626207,352.4929199,285.6677551,92803.59375,0.000393966,295.7780762,-1.23629e-05,45.99690247,-0.064535066,-0.489389479,0.221095145,2840\n2704A,81.2867,43.895,20170601,59.07703081,1557,1254,-995971.8538,1752253.257,611,0.100160152,352.2024536,285.6015015,92694.33594,0.000397781,280.1430359,-1.38764e-05,46.56907654,-0.013597842,-0.09923283,0.217016324,2365\n2705A,81.3364,43.941,20170601,54.96022727,1550,1262,-991604.3656,1757332.027,664,0.524003804,347.693512,285.4779358,92675.10156,0.000412368,278.4420471,-1.29559e-05,46.75620651,-0.111731127,-0.511953294,0.207190394,2589\n2706A,82.9994,46.7432,20170601,18.03333333,1101,1528,-829714.6301,2082471.189,551,1.0137465,176.2288818,282.2819214,94120.75781,0.000601377,235.9192505,-1.85105e-05,49.90005875,0.066768318,-1.01154542,0.160028219,2001\n2707A,88.1214,47.9047,20170601,9.540785498,915,2347,-466422.3514,2190396.594,1013,1.389637232,347.1051941,275.0678711,87218.55469,0.000794801,144.9333344,-9.32686e-06,59.67956543,-0.310230374,-1.354565859,0.137945384,2472\n2708A,88.1267,47.8515,20170601,12.43539326,924,2348,-466519.037,2183870.643,921,1.357331395,352.4895935,276.47229,89115.78906,0.000697224,156.1495361,-9.71626e-06,56.37965775,-0.177531123,-1.345671296,0.170039922,2013\n2709A,86.0497,44.2967,20170601,59.0518732,1493,2016,-646780.0982,1761339.292,488,0.712336481,40.37915039,284.3507385,95988.28906,0.000364158,181.8424683,-9.81711e-06,50.02946091,0.461470842,0.542649031,0.270531058,2662\n2710A,86.0697,44.3075,20170601,63.06545961,1491,2019,-645218.6934,1762525.822,480,0.701237559,40.87155533,284.4746399,96218.4375,0.000355741,184.6402588,-9.93827e-06,49.84248352,0.458854496,0.530270398,0.247823164,2399\n2711A,87.5475,44.1756,20170601,61.95505618,1512,2256,-539896.8255,1737506.009,470,0.583892584,78.35292053,285.1177368,95576.33594,0.000253864,260.3128662,-9.85043e-06,45.717453,0.571865261,0.117900915,0.250094444,2710\n2835A,101.7227,26.567,20170601,25.5362117,4329,4524,632213.0532,-383772.92,1266,0.261160403,231.4132843,292.8708801,85006.25781,0.002208773,179.5517731,-4.19465e-06,60.23318863,-0.204135671,0.162890717,0.300056636,3692\n2842A,118.0936,24.5058,20170601,25.02367688,4659,7143,2209551.664,-385259.0438,39,1.746042371,310.777832,293.9453125,101004.3281,0.002070068,353.769043,-6.05164e-05,78.85771942,-1.322263598,-1.140299439,0.407048494,2237\n2845A,113.1569,36.1912,20170601,65.63509749,2789,6353,1488088.014,881070.9673,1012,0.909381986,187.7304993,282.0431824,89917.63281,0.000921323,180.1275787,-5.60067e-06,61.40594864,-0.12232089,0.901117742,0.578655779,3159\n2846A,113.3208,23.1323,20170601,35.87222222,4879,6379,1788416.595,-638079.1327,9,0.774305105,266.3726501,295.0050354,101110.1406,0.003248306,240.7895813,-2.37406e-05,72.95316315,-0.772751689,0.049022432,0.568709731,2707\n2858A,117.7918,39.2474,20170601,53.30225989,2300,7095,1776467.147,1321453.878,1,1.060025454,181.5824432,285.2262573,101662.3359,0.000739276,239.0631866,-1.71198e-05,51.50098419,-0.029271942,1.059621215,0.814179659,2550\n2859A,117.3747,38.9846,20170601,51.10339943,2343,7028,1751754.021,1282790.406,3,1.112664461,192.0211639,285.3530273,101689.2578,0.000774209,212.4254608,-2.77708e-05,51.2142067,-0.231730625,1.088266015,0.822022617,2420\n2860A,117.1589,39.0845,20170601,50.49011299,2327,6993,1732426.392,1290822.258,4,1.061497211,190.7718964,285.3466492,101646.2031,0.000780756,198.9930115,-2.10249e-05,49.79409409,-0.19838728,1.042793751,0.853808522,2464\n2862A,114.5480556,38.03777778,20170601,68.15266106,2494,6576,1556366.493,1122582.628,74,0.648570836,28.2766037,286.0995483,100571.7422,0.000978954,133.3346863,-9.0693e-06,50.93685532,0.307238311,0.571181893,0.826391816,2519\n2865A,112.7194444,37.68277778,20170601,58.19134078,2551,6283,1420180.302,1052510.749,793,0.537938297,242.2893066,283.6765442,91833.28906,0.000783869,152.3018036,-6.46299e-06,51.56368637,-0.476232529,0.250160396,0.509984255,2490\n2866A,111.0522222,35.04388889,20170601,72.68296089,2973,6016,1339796.58,714146.36,349,1.178678274,245.3684692,287.0262146,96694.34375,0.000989847,164.1177979,-1.13368e-05,59.48862457,-1.071410179,0.491286695,0.627516806,2613\n2868A,126.4738889,43.95305556,20170601,32.6299435,1548,8484,2252072.72,2053556.148,183,1.158568382,33.19928741,276.589447,98939.58594,0.00127056,226.4085236,-8.87201e-06,64.41370392,0.63436079,0.969467402,0.475748479,2790\n2869A,119.458,32.41361,20170601,47.77423823,3394,7361,2107329.738,551695.8844,9,1.059657574,258.0735779,288.150177,101613.5547,0.002596986,258.8884583,-1.91596e-05,69.06277466,-1.036774755,0.219025731,0.777674198,2566\n2870A,119.4369444,32.18888889,20170601,49.86908078,3430,7358,2112178.604,525155.5737,38,1.034299016,260.9939575,288.0992737,101488.7109,0.002501329,257.5121765,-2.24585e-05,69.50085449,-1.021541238,0.161950588,0.780995071,3637\n2871A,121.6147222,29.90166667,20170601,33.82777778,3796,7706,2368980.749,311125.3428,4,0.6134184,255.7086487,290.1271057,101605.7891,0.003091791,403.7295227,-4.43322e-05,78.02191162,-0.594429076,0.151447132,0.572559774,2381\n2872A,120.7844444,30.7525,20170601,40.42222222,3660,7573,2270546.394,389189.9502,6,1.206874251,274.6819763,289.3324585,101578.8203,0.002154832,300.0643616,-2.23472e-05,73.01953125,-1.202851892,-0.09845262,0.70030129,3384\n2873A,120.0875,30.89556,20170601,39.35434174,3637,7462,2206226.21,389797.6738,4,1.074354529,268.1129456,289.2928772,101325.75,0.002172881,307.4073792,-5.2774e-05,71.95672607,-1.073770285,0.035426371,0.745548487,3083\n2874A,117.0411667,32.64600333,20170601,56.67590028,3357,6975,1896597.917,529533.8617,31,1.130840302,254.9455109,288.3117981,101213.9063,0.002164221,226.0154114,-2.29249e-05,66.19322205,-1.092017651,0.293763787,0.806144416,2470\n2875A,115.7838889,32.88922222,20170601,52.57485876,3318,6773,1783954.79,534471.8449,30,0.868269563,253.1006317,288.2595215,101349.4453,0.002169428,197.4543915,-1.31282e-05,64.82080841,-0.830765426,0.252429962,0.845551133,3456\n2876A,119.0841,36.7339,20170601,55.09861111,2703,7301,1949368.618,1049051.725,24,0.875296891,201.665451,286.0795288,101365.2422,0.000790763,242.1334381,-1.2005e-05,57.66342163,-0.323138803,0.813465416,0.736166835,3240\n2877A,119.1638,36.6525,20170601,45.55665722,2716,7314,1958091.557,1041064.292,48,0.81976521,196.9091492,285.90448,101141.7734,0.000789763,244.4321136,-1.19358e-05,59.03960037,-0.238425881,0.784326494,0.738867044,2736\n2878A,116.0072,36.4343,20170601,61.4815864,2751,6809,1712119.91,956354.9697,34,0.995472431,220.8953552,287.0918274,101259.25,0.000996976,199.9930115,-1.20291e-05,53.0760498,-0.651699722,0.752497733,0.853916824,2970\n2880A,104.0238889,30.65638889,20170601,56.7150838,3675,4892,803746.917,115039.3909,500,1.127279878,160.0240479,290.4620972,95806.79688,0.001311949,158.0326843,-1.22522e-05,70.15310669,0.385194689,-1.059426665,0.80781132,2943\n2881A,107.8908333,26.53111111,20170601,30.87146893,4335,5511,1210293.509,-330113.2005,708,0.814464152,251.6021118,288.3283386,91529.28125,0.002565846,282.5541687,-9.58085e-06,81.12774658,-0.772825539,0.257084638,0.597933412,3818\n2882A,102.5389,24.3702,20170601,29.84240688,4681,4654,728485.1701,-633913.3449,1628,1.305220008,0.886275053,288.5868835,81159.07813,0.002324935,254.6402893,-9.88235e-06,71.3062973,0.02018938,1.305063844,0.290308714,2845\n2883A,102.5381,24.339,20170601,22.35252809,4686,4654,728685.8193,-637533.3061,1658,1.268293262,0.765684068,288.8092041,81556.25,0.002286367,248.6258392,-9.29998e-06,71.25341034,0.016949164,1.268180013,0.293379486,3295\n2884A,98.26722222,39.79777778,20170601,28.45014245,2212,3971,254677.8959,1185827.251,1661,0.955782592,22.65673256,282.5832214,82448.83594,0.000198261,212.5974121,-5.90146e-06,36.83179092,0.36816597,0.882028401,0.230003744,1354\n2885A,104.9338889,33.38256667,20170601,22.50144092,3239,5037,851610.3655,447422.7774,1090,0.284801185,233.5663452,282.5770874,82749.35938,0.001501449,160.591095,-3.29327e-06,74.18119812,-0.229130715,0.169147357,0.483033061,3577\n2897A,123.2444,41.7347,20170601,32.5238764,1903,7967,2104767.196,1722779.639,34,0.788231492,12.66122723,280.8995361,101284.9375,0.001077872,282.7331238,-8.89832e-06,49.49466705,0.172764525,0.769065261,0.576362431,2901\n2900A,123.5953,41.9086,20170601,30.00423729,1875,8023,2124075.716,1750716.539,115,0.869160295,0.66677928,280.5023193,100759.1406,0.00114009,281.6382446,-8.72444e-06,51.59070587,0.010111905,0.869101465,0.542443931,3862\n2902A,106.6351,30.4865,20170601,37.19359331,3702,5310,1037749.261,119386.489,280,0.966715097,315.5208435,291.2397156,97742.94531,0.001614881,116.2177811,-8.66092e-06,75.77349091,-0.677376926,-0.689709067,0.870176435,3875\n2907A,120.1844,30.8596,20170601,41.06022409,3643,7477,2215647.506,387830.368,2,1.153352976,270.149231,289.3192749,101436.8516,0.002212252,304.4859314,-5.09218e-05,71.56728363,-1.153349161,-0.002950672,0.74265635,2796\n2914A,106.7513889,31.87888889,20170601,31.05857143,3479,5328,1028245.886,285604.8766,467,0.880945444,328.3469238,289.2779236,94902.54688,0.001958027,117.5090942,-7.85674e-06,72.56833649,-0.462355405,-0.749861538,0.682826221,4378\n2915A,106.7619444,31.85805556,20170601,21.37042254,3483,5330,1029462.664,283241.2533,384,0.882093132,326.7931213,289.4392395,95241.83594,0.001962412,118.4081955,-8.05066e-06,72.68408966,-0.483145982,-0.738009632,0.695916176,3499\n2916A,117.49,30.66,20170601,55.51436782,3674,7046,1988409.075,307093.6487,15,0.965968251,294.2754211,289.4108887,100942.8672,0.002299375,223.0151367,-2.27122e-05,72.28826141,-0.880580425,-0.397080272,0.738209844,3015\n2919A,116.7022,39.5453,20170601,42.37047354,2253,6920,1685006.475,1337645.963,17,0.673909307,2.468224525,285.3144226,101502.4922,0.001057976,185.0716858,-8.94603e-06,46.44060898,0.029021183,0.673284113,0.902606845,2707\n2920A,117.7116,24.506,20170601,32.09052925,4659,7082,2173656.156,-393756.7023,8,0.674512506,260.6334229,293.9732971,100665.5156,0.002155975,204.3484039,-1.09609e-05,77.69190979,-0.665514886,0.109804727,0.420130253,2864\n2921A,120.7789,30.0033,20170601,43.33379888,3780,7573,2293195.188,302947.3186,12,0.853857815,271.0571594,289.8463135,100897.4766,0.002572465,272.3495178,-1.54364e-05,72.69501495,-0.853713214,-0.015713606,0.661064863,4267\n2922A,117.1941,39.1067,20170601,47.90083799,2323,6999,1734525.775,1294079.185,8,1.044128656,190.2506409,285.3526001,101633.3125,0.000782741,200.1099548,-2.0879e-05,49.80358887,-0.185801789,1.027464032,0.859359741,2162\n2923A,113.2803,40.1114,20170601,39.94444444,2162,6373,1409915.802,1351386.236,1066,1.068640947,97.47382355,279.865509,88290.4375,0.000901711,173.092041,-4.93209e-06,46.59411621,1.05956912,-0.138948515,0.447961628,1994\n2924A,106.2275,38.44139,20170601,34.7254902,2429,5244,892274.9667,1067379.418,1111,0.685366392,118.7454453,283.8615112,88568.47656,0.000307433,150.2375183,-5.85943e-06,38.86563873,0.600925326,-0.329569131,0.390583903,2988\n2925A,106.2739,38.4841,20170601,46.99579832,2423,5252,895351.3302,1072964.546,1110,0.473322898,120.1210175,283.5683899,88067.51563,0.000310477,140.2265015,-5.75058e-06,38.99528885,0.40942362,-0.237501323,0.382548392,2609\n2926A,106.1024,38.49494,20170601,53.02661064,2421,5224,881640.8642,1072724.344,1119,0.925673544,127.1165771,283.8668213,88816.90625,0.000348904,167.7219849,-5.67327e-06,39.79272842,0.738177359,-0.558538914,0.375401974,2889\n2929A,114.8858,30.4519,20170601,45.08988764,3708,6630,1766508.186,233121.0494,28,0.876475871,280.5663757,290.2145386,101210.4297,0.002513931,186.7877655,-2.87935e-05,69.0033493,-0.861621976,-0.160678566,0.769310236,2889\n2994A,119.6533,29.1128,20170601,35.30779944,3922,7393,2221461.613,174875.0953,52,0.81883359,278.5924072,290.4902039,99732.0,0.002359398,218.8130646,-1.2625e-05,71.81649017,-0.809649348,-0.122296244,0.620717108,2714\n2996A,118.283,33.965,20170601,55.98459384,3146,7173,1964301.611,708213.169,26,1.013220072,248.1973572,287.3911438,101467.7188,0.001775767,229.6809387,-2.50442e-05,64.26145172,-0.940729976,0.376353592,0.778381348,3378\n2997A,119.8767,32.3292,20170601,46.44334278,3407,7428,2145171.081,550960.3736,5,1.032977343,260.0223999,288.0259094,101659.2734,0.002538252,260.3939514,-1.99987e-05,69.54625702,-1.01734674,0.179018795,0.760640621,3235\n3000A,119.3581,34.6972,20170601,39.00854701,3029,7345,2031531.282,815727.3956,13,0.931725562,246.5258484,287.2103882,101151.3984,0.00123818,324.1776733,-4.78964e-05,65.25444031,-0.854603112,0.371168554,0.695316195,3693\n3002A,119.9736,31.8108,20170601,42.58333333,3490,7444,2168947.627,493025.0536,4,1.121845841,261.1388855,288.600708,101688.1328,0.001979715,278.7095947,-2.51468e-05,69.74658966,-1.108448982,0.172855139,0.766275406,2865\n3003A,120.0469,31.7694,20170601,46.64772727,3497,7455,2176423.792,489854.5873,4,1.146373153,261.4289856,288.6895447,101704.1484,0.001923699,282.6078796,-2.44316e-05,69.90763092,-1.133563161,0.17089729,0.741580606,2856\n3004A,120.1631,33.3681,20170601,40.77653631,3241,7474,2137755.004,677833.3791,2,0.972116828,253.9811707,287.1271667,101743.9688,0.002015878,253.6097412,-1.11007e-05,69.70375824,-0.934360385,0.268294275,0.697860897,3272\n3005A,117.1814,34.29,20170601,63.42997199,3094,6997,1864226.975,724850.9935,38,1.080987811,239.3434296,287.5539856,101279.6797,0.001601907,208.4224854,-1.37982e-05,62.61753464,-0.92989105,0.551214397,0.81409514,2935\n3006A,117.1694,34.1781,20170601,63.68130312,3112,6995,1866251.431,711484.3095,37,1.079510212,241.1897583,287.5263367,101175.25,0.001677566,208.1490631,-1.31099e-05,63.01538467,-0.945872664,0.520256817,0.807475865,2875\n3009A,119.1478,34.5911,20170601,43.48860399,3046,7312,2017461.076,798985.8046,4,0.797383904,243.5589905,286.9277954,101606.3047,0.001318736,251.5277557,-1.82581e-05,64.62281799,-0.713960588,0.355079383,0.717554271,2879\n3010A,119.8914,31.7897,20170601,45.79469274,3494,7431,2162594.618,488770.7379,5,1.137468576,261.3164063,288.6162109,101638.4922,0.001969435,276.2714539,-2.7076e-05,69.65171051,-1.124422789,0.171779439,0.753919244,2890\n3012A,112.1908,31.03389,20170601,50.85154062,3615,6199,1517675.093,256208.5658,117,0.56425637,354.5836792,289.0747681,100168.3672,0.001967496,228.5219574,-2.08762e-05,71.69390106,-0.05331168,-0.561732233,0.821527898,4217\n3014A,106.4959,29.53675,20170601,37.87465181,3854,5287,1038568.158,5809.294064,314,0.704479218,315.2382507,291.730957,97578.67969,0.001427953,132.7479858,-1.12517e-05,73.09924316,-0.496101081,-0.500174642,0.959151149,2935\n3015A,106.4042,29.57278,20170601,40.69553073,3848,5273,1029826.021,9090.648389,499,0.734752893,321.2451172,291.6476746,97393.6875,0.001437464,134.5672302,-1.10165e-05,73.26824951,-0.459989816,-0.572949588,0.9507249,4647\n3016A,106.5506,29.41569,20170601,31.64325843,3874,5296,1045171.511,-7873.566677,300,0.622029364,303.2274475,291.6806641,97423.89063,0.001409797,127.8334885,-1.01129e-05,73.31949615,-0.520350337,-0.340816736,0.957148075,3611\n3018A,111.505,36.10139,20170601,74.34078212,2804,6089,1355861.371,846459.3347,435,0.423889518,83.7609024,285.8188782,94663.20313,0.000892191,139.9090881,-6.40413e-06,53.34920883,0.421376854,0.046085536,0.53830272,2519\n3020A,117.2099,39.16969,20170601,47.05177515,2313,7002,1734019.558,1301837.331,6,1.009168148,188.9460144,285.3578491,101659.0703,0.000786501,199.6832275,-1.87119e-05,49.46067047,-0.15692535,0.996892631,0.854454517,1978\n3021A,115.0061,35.76806,20170601,62.33002833,2857,6649,1647996.679,860332.1673,54,0.774536073,209.6607971,287.7931824,101045.1719,0.000786218,205.9085236,-1.07308e-05,54.85531616,-0.38327983,0.673054695,0.86507982,3673\n3022A,112.4433,34.6686,20170601,60.85352113,3033,6239,1462727.468,689351.3964,143,0.432097435,210.8765869,287.6643982,99027.03125,0.001041266,169.6954498,-1.02858e-05,59.73667145,-0.221742466,0.370861799,0.795811057,2323\n3025A,113.0472,23.63444,20170601,34.71169916,4799,6336,1751404.674,-585921.0227,13,0.708671927,310.3640137,294.385437,100601.8516,0.003207473,208.5917969,-1.59962e-05,74.40440369,-0.539999843,-0.458929271,0.57777518,4491\n3026A,116.6183,23.65889,20170601,30.49442897,4795,6907,2092209.144,-513293.2884,13,0.746302962,272.5525513,294.3370056,101367.1328,0.002663295,206.6050568,-1.79555e-05,81.06671143,-0.745564044,-0.033201545,0.421838433,1733\n3027A,104.7228,29.33972,20170601,66.02941176,3886,5004,881261.7871,-34748.53284,343,0.75069207,176.1659393,291.6412354,97262.84375,0.001059401,149.9949493,-1.27434e-05,72.82115936,0.05026428,-0.749007404,1.010713696,4061\n3028A,104.7778,29.36028,20170601,54.58543417,3882,5012,885988.2958,-31827.9898,335,0.791309118,359.2512207,291.7330627,97453.1875,0.001059048,150.6390991,-1.28382e-05,72.93257904,-0.010417562,-0.791240573,1.007692575,3919\n3033A,87.4651,43.4569,20170601,18.97464789,1627,2242,-552600.1829,1650168.661,1720,0.821363986,40.33463669,275.6513062,81051.17969,0.000779964,177.4375,-9.77225e-06,59.73023224,0.531615376,0.626118064,0.191398412,2550\n3034A,113.1076,41.0385,20170601,21.04899135,2014,6345,1376002.539,1460214.014,1403,1.501193643,95.51268768,277.3596497,85942.80469,0.000707332,272.0794067,-6.72817e-06,50.21829224,1.494257569,-0.144140452,0.384343177,1548\n3035A,122.0931,46.0707,20170601,14.30087209,1209,7783,1876604.018,2209679.408,267,1.328297019,104.9607849,277.0768738,97826.95313,0.000739863,295.70578,-6.42826e-06,51.74936295,1.283289909,-0.34284088,0.293536156,2263\n3036A,118.696,37.43445,20170601,50.83479532,2591,7239,1898271.44,1123955.051,1,1.114443898,225.6781616,285.9765015,101711.6797,0.000687702,251.7024384,-3.53631e-05,54.1207695,-0.797284305,0.77866751,0.756052136,2608\n3038A,103.3758,23.3682,20170601,30.92655367,4841,4788,819057.8453,-743094.998,1303,1.201764345,201.7079315,289.4332275,85581.4375,0.002862381,193.5937347,-4.21486e-06,83.74964142,-0.444490492,1.116541862,0.360403746,3504\n3039A,111.19,34.7822,20170601,56.6448468,3015,6038,1356372.993,684876.3217,380,1.029007792,241.8014832,286.2153625,96123.84375,0.001181354,170.224762,-1.24794e-05,63.56178284,-0.90686518,0.486263812,0.643537164,2388\n3046A,115.9083,28.6064,20170601,29.79859155,4003,6793,1902242.438,37936.60086,28,1.410493016,342.1771851,291.3531494,101458.0547,0.002571589,237.2083588,-2.45144e-05,70.93387604,-0.431827575,-1.342764139,0.670610487,2771\n3048A,119.58,26.0931,20170601,24.6103352,4405,7381,2303040.135,-171368.0378,46,2.147257328,325.8845215,292.2287903,99451.75781,0.002383557,414.9331055,-7.29902e-05,81.43119049,-1.204450607,-1.777642488,0.43510133,3425\n3051A,117.3916,39.1495,20170601,51.78892216,2316,7031,1748515.978,1302660.43,4,0.98868078,189.3351593,285.1841736,101665.2969,0.00080137,207.2237396,-2.1277e-05,50.41049957,-0.160368502,0.975587845,0.846681476,3151\n3054A,113.5922,35.28385,20170601,53.94444444,2935,6423,1543984.077,779955.4548,77,0.816206098,331.6189575,288.134613,100455.3359,0.000823945,154.0036469,-8.19638e-06,53.97286606,-0.388026088,-0.718072474,0.771944344,4917\n3057A,121.5992,37.4014,20170601,26.3627451,2596,7704,2126530.167,1179535.82,17,0.683009624,39.34734344,284.9398499,101258.0547,0.000932878,396.5309143,-4.48854e-05,65.79862976,0.433031112,0.528191447,0.596742988,2363\n3058A,119.2654,42.0352,20170601,35.10584958,1854,7330,1805833.105,1679047.887,524,0.749086797,53.66554642,279.657074,94727.9375,0.00063212,286.072876,-4.28521e-06,45.6945343,0.603431165,0.443848878,0.45236817,2621\n3059A,117.7181,36.2092,20170601,56.48314607,2787,7083,1855411.288,960821.061,203,0.7008003,230.3683472,285.2442322,98891.0,0.000980818,199.8552704,-8.08416e-06,62.87316513,-0.539717495,0.4470191,0.768513918,2865\n3061A,119.7512,49.1577,20170601,10.28151261,715,7408,1623753.67,2533062.372,613,1.128756523,62.88479614,271.8934631,93729.42188,0.000569275,221.8800354,-5.24758e-06,64.75436401,1.004680395,0.514498353,0.169842139,1502\n3064A,117.6983,36.2211,20170601,54.98994253,2785,7080,1853493.154,961850.0714,212,0.694641709,228.7049408,285.272644,98985.17969,0.000994343,198.2284851,-8.19533e-06,62.94991302,-0.521887481,0.458432764,0.769903243,2343\n3065A,101.9533,29.9972,20170601,18.25892857,3781,4561,625222.1124,21798.38193,3047,0.416172802,200.3689423,273.576416,62641.71094,0.002600942,116.5148315,-3.53677e-06,88.25034332,-0.144850701,0.390151352,0.219825998,6557\n3066A,116.2714,37.4372,20170601,52.45266272,2590,6851,1707188.048,1079794.576,23,1.147450209,212.3318176,286.5121155,101393.125,0.000893207,200.0878601,-1.11689e-05,50.65703201,-0.613664925,0.969565511,0.862419248,3228\n"
  },
  {
    "path": "data/pm25_predict_data.csv",
    "content": "station_id,lng,lat,date,PM2.5,row_index,col_index,proj_x,proj_y,dem,w10,d10,t2m,sp,tp,blh,e,r,u10,v10,aod_sat,ndvi\n1001A,116.366,39.8673,20170930,56.35714285714285,2201.0,6867.0,1650847.5516331228,1370268.3659701913,46,0.8738294243812561,26.08804702758789,294.22430419921875,100287.671875,5.14547573402524e-05,64.58305358886719,-7.4101053542108275e-06,52.682090759277344,0.3842574059963226,0.7848082780838013,0.7627617120742798,3443\n1002A,116.17,40.2865,20170930,47.14814814814815,2134.0,6835.0,1625003.973250138,1416959.9639730146,420,0.5599374771118164,343.809326171875,292.29327392578125,96752.5078125,0.0003038885770365,40.62113952636719,-6.73940257911454e-06,62.529090881347656,-0.1561753302812576,-0.5377166867256165,0.5747854709625244,7810\n1003A,116.434,39.9522,20170930,53.85714285714285,2188.0,6877.0,1653776.7102650262,1381524.3053945734,48,0.6246087551116943,8.643502235412598,294.0104675292969,100307.703125,5.775926183559932e-05,60.2429084777832,-7.043234745651716e-06,52.12664031982422,0.0938672572374343,0.6175152063369751,0.7968273758888245,3328\n1004A,116.434,39.8745,20170930,46.33333333333334,2200.0,6877.0,1655828.0445424512,1372270.097507006,45,0.9150498509407043,12.4610013961792,294.296630859375,100410.3671875,4.7366542275995016e-05,69.53563690185547,-7.760440894344356e-06,51.30152893066406,0.1974392384290695,0.8934953808784485,0.7588391900062561,4535\n1005A,116.473,39.9716,20170930,52.2037037037037,2185.0,6884.0,1656224.6805005262,1384491.8424875431,40,0.6377434730529785,185.4476776123047,293.9593811035156,100355.0546875,5.872291512787342e-05,62.28145599365234,-7.159225788200274e-06,51.071964263916016,-0.0605433210730552,0.6348631381988525,0.7601479887962341,3901\n1006A,116.361,39.9425,20170930,54.0,2189.0,6866.0,1648488.6803659303,1379142.1766624278,55,0.5854148268699646,31.782339096069336,293.94140625,100209.6796875,6.655116158071905e-05,54.30177307128906,-6.642199423367856e-06,53.94256591796875,0.3083261847496032,0.4976398944854736,0.7338208556175232,3100\n1007A,116.315,39.9934,20170930,42.48214285714285,2181.0,6858.0,1643658.0833643028,1384435.6792709937,52,0.4500706195831299,61.36774444580078,293.7333068847656,100104.8046875,8.807569975033402e-05,42.74374008178711,-5.817776127514662e-06,56.19776153564453,0.3950261771678924,0.2156800180673599,0.7247135043144226,4498\n1008A,116.72,40.1438,20170930,50.05555555555557,2157.0,6923.0,1670359.5101822412,1409179.4017513914,32,0.9032157063484192,240.58921813964844,293.6003112792969,100146.875,7.96479798736982e-05,72.14629364013672,-7.66457560530398e-06,52.5093879699707,-0.7867966890335083,0.4435646831989288,0.6788797378540039,6014\n1009A,116.644,40.3937,20170930,48.0,2117.0,6911.0,1657945.0195431802,1437655.3173973674,169,0.2932051122188568,282.2738342285156,293.0658874511719,98302.1171875,0.0002362580271437,59.10792922973633,-6.308683623501565e-06,59.00632858276367,-0.2865065336227417,-0.0623156651854515,0.6250155568122864,7081\n1010A,116.23,40.1952,20170930,48.67857142857143,2149.0,6845.0,1631926.7826818542,1407069.146014603,57,0.3517861664295196,167.009033203125,293.5003967285156,99565.5625,0.0002181246818508,33.82514190673828,-6.058698090782855e-06,60.94388198852539,0.0791100859642028,-0.3427755832672119,0.6652228832244873,3890\n1011A,116.407,40.0031,20170930,50.41071428571429,2180.0,6873.0,1650384.2993514207,1387133.4197281853,47,0.3928609490394592,14.96135139465332,293.83367919921875,100197.359375,6.934627890586853e-05,51.78152847290039,-6.42662780592218e-06,53.462364196777344,0.1014210656285286,0.3795438110828399,0.7030987739562988,4257\n1012A,116.225,39.9279,20170930,51.35714285714285,2192.0,6844.0,1638539.229021886,1375127.8940789944,66,0.7927032113075256,63.172481536865234,293.3878173828125,99341.7578125,0.0001120511951739,44.94417953491211,-6.069289611332351e-06,57.414024353027344,0.70737224817276,0.3577749133110046,0.6806278824806213,3606\n1015A,117.145,39.1654,20170930,42.33928571428572,2314.0,6991.0,1729155.5632773454,1300184.178096506,6,2.183090925216675,186.29122924804688,295.8124389648437,101142.484375,0.0001649152254685,167.8925018310547,-2.3059457816998478e-05,54.04914474487305,-0.2392213940620422,2.169944524765014,0.7058769464492798,3544\n1017A,117.237,39.1082,20170930,42.785714285714285,2323.0,7006.0,1737780.1380324084,1295015.2827556727,6,2.16945743560791,186.8938140869141,295.7485046386719,101109.0625,0.0001510562433395,172.4687042236328,-2.892982774937991e-05,55.01163482666016,-0.260391503572464,2.153773784637451,0.7191949486732483,2544\n1018A,117.202,39.0927,20170930,42.875,2325.0,7000.0,1735514.7479055552,1292556.452844512,7,2.181724548339844,186.5748443603516,295.744384765625,101109.75,0.0001451123389415,171.37347412109375,-2.8571523216669448e-05,54.81863784790039,-0.2498029172420501,2.167376518249512,0.6845795512199402,2850\n1019A,117.1837,39.2133,20170930,38.57142857142857,2306.0,6997.0,1730819.4129383704,1306554.0854461065,4,2.159424066543579,186.5977478027344,295.7804870605469,101137.7421875,0.0001744975452311,167.9374237060547,-2.116202813340351e-05,54.04219436645508,-0.2481055259704589,2.1451237201690674,0.7471513748168945,3151\n1021A,117.307,39.0877,20170930,43.2962962962963,2326.0,7017.0,1743718.470043329,1293821.8519381783,4,2.166038274765014,187.3207244873047,295.7030639648437,101122.875,0.0001486504625063,176.7541046142578,-3.056036803172901e-05,55.76520156860352,-0.2759957611560821,2.148382663726806,0.7263540625572205,3144\n1024A,117.457,38.8394,20170930,43.407407407407405,2366.0,7041.0,1762091.4457384683,1267036.9345306552,3,2.4385597705841064,187.6753387451172,296.0422058105469,101171.078125,9.167644748231396e-05,200.1884613037109,-4.965938933310099e-05,57.10664749145508,-0.3256836831569671,2.4167134761810303,0.6526952385902405,3512\n1027A,117.157,38.9194,20170930,50.48,2353.0,6993.0,1736776.7607285143,1271187.8960052915,2,2.1971263885498047,185.8948516845703,295.5566101074219,101174.3203125,8.075186633504927e-05,168.83447265625,-2.93718148896005e-05,54.93426132202149,-0.2256462723016739,2.185508728027344,0.6590660214424133,3709\n1029A,114.4548,38.0513,20170930,66.33928571428571,2492.0,6561.0,1548715.8370152607,1122720.941225226,80,1.5463701486587524,11.28683376312256,295.4872131347656,99652.2890625,3.702572576003149e-05,110.33699798583984,-9.215666977979708e-06,56.22869110107422,0.3026476204395294,1.5164645910263062,0.6283159852027893,2733\n1030A,114.6046,38.0398,20170930,72.73214285714286,2494.0,6585.0,1560759.8749639106,1123720.5251976768,67,1.9589970111846924,1.3219373226165771,296.08544921875,100149.2890625,3.1787512853043154e-05,139.7240753173828,-9.695665539766196e-06,53.7807731628418,0.0451883226633071,1.9584757089614868,0.6053469181060791,2760\n1031A,114.5019,38.1398,20170930,74.10714285714286,2478.0,6568.0,1550294.1407386851,1134014.1409644291,75,1.346576690673828,6.0588860511779785,295.70391845703125,99970.3046875,3.0381888791453093e-05,102.7422866821289,-8.804408025753219e-06,56.17023849487305,0.1421278715133667,1.339055061340332,0.6349625587463379,3733\n1032A,114.4586111,38.00583333,20170930,58.96428571428572,2499.0,6561.0,1550102.7979398533,1117361.25585124,73,1.6689964532852173,12.22000503540039,295.47247314453125,99566.0390625,4.406053994898684e-05,117.23342895507812,-9.40491463552462e-06,55.73377227783203,0.3532597422599792,1.6311826705932615,0.5624557137489319,3095\n1033A,114.53305559999998,38.01777778,20170930,54.32142857142857,2497.0,6573.0,1555668.2103117425,1119961.434802212,72,1.8096550703048704,6.359187602996826,295.8675842285156,100019.7734375,3.689719596877694e-05,129.0147705078125,-9.5173527370207e-06,54.35937881469727,0.200433149933815,1.7985210418701172,0.6012784242630005,3586\n1034A,114.5214,38.0524,20170930,81.66071428571429,2492.0,6571.0,1553921.371897637,1123903.547914651,78,1.7035472393035889,6.382794380187988,295.81170654296875,100017.640625,3.360359914950095e-05,121.28363037109376,-9.319501259597018e-06,54.87617111206055,0.1893789917230606,1.6929881572723389,0.5494735240936279,2522\n1035A,114.3541,37.9097,20170930,61.8,2515.0,6545.0,1544172.496295803,1104256.71834455,326,1.703995943069458,22.52314758300781,294.5590209960937,98204.484375,8.596893167123199e-05,112.2973175048828,-9.92705190583365e-06,58.391719818115234,0.6527087688446045,1.5740309953689575,0.5543336272239685,6973\n1036A,118.1662,39.6308,20170930,35.875,2239.0,7155.0,1794193.979789944,1373720.0724208166,30,1.744629979133606,197.3908843994141,294.1426696777344,100927.375,0.0002266786032123,160.70437622070312,-8.906968105293345e-06,62.098392486572266,-0.5214354991912842,1.6648839712142944,0.8008750677108765,2831\n1037A,118.144,39.643,20170930,37.32142857142857,2237.0,7151.0,1792159.3766959591,1374761.4641271755,30,1.7398499250411987,198.084716796875,294.1667175292969,100910.0703125,0.0002233858394902,159.60963439941406,-8.983687621366698e-06,61.90864944458008,-0.5400741696357727,1.653903841972351,0.7550247311592102,3221\n1038A,118.1853,39.6407,20170930,47.7962962962963,2238.0,7158.0,1795363.4933915236,1375242.7118771877,35,1.7329164743423462,197.2813873291016,294.0783386230469,100912.4453125,0.0002356456825509,159.79583740234375,-8.970246199169196e-06,62.351505279541016,-0.5147738456726074,1.654692530632019,0.7600129842758179,4953\n1039A,118.2185,39.6679,20170930,39.875,2233.0,7163.0,1797109.8688146814,1379074.404434926,31,1.692686676979065,197.47683715820312,293.9213256835937,100861.3984375,0.0002580931759439,155.981201171875,-9.312117981608026e-06,62.98738098144531,-0.5083335638046265,1.6145541667938232,0.7233968377113342,3174\n1040A,118.1838,39.65782,20170930,50.75,2235.0,7157.0,1794761.4946568122,1377245.0896162903,23,1.716301441192627,197.83306884765625,294.040771484375,100882.71875,0.0002410561428405,157.79385375976562,-9.12736140890047e-06,62.429935455322266,-0.5255931615829468,1.6338428258895874,0.7552027106285095,2891\n1041A,118.1997,39.6295,20170930,43.83928571428572,2239.0,7160.0,1796777.237854065,1374178.0916289124,33,1.7354429960250854,196.9615020751953,294.0644226074219,100919.3359375,0.000237476764596,160.34231567382812,-8.919903848436661e-06,62.43583297729492,-0.5062649250030518,1.6599572896957395,0.7352085709571838,4764\n1042A,119.5259,39.8283,20170930,24.392857142857142,2208.0,7372.0,1891417.6821072449,1422602.2703801745,3,1.6709470748901367,8.338292121887207,294.427734375,101271.5703125,0.000429194769822,288.7357788085937,-9.049538493854924e-05,70.88798522949219,0.2423097789287567,1.6532846689224243,0.641679584980011,4698\n1043A,119.7624,40.0181,20170930,23.125,2177.0,7410.0,1903496.8672210225,1449599.4096933184,33,1.102703332901001,30.119112014770508,293.471923828125,100627.5,0.0006876166444271,256.6519775390625,-5.576808689511381e-05,74.2383804321289,0.5533209443092346,0.9538294076919556,0.6088972687721252,5488\n1044A,119.6023,39.9567,20170930,34.625,2187.0,7384.0,1893305.168637002,1439250.0913043136,16,0.9747885465621948,20.240419387817383,293.3051147460937,100305.3671875,0.0006721201352775,226.1302490234375,-4.920534047414549e-05,72.91651153564453,0.337228387594223,0.9145981073379515,0.6687365770339966,2164\n1046A,119.5369,39.9419,20170930,32.267857142857146,2189.0,7374.0,1888823.6312204087,1436241.9792512425,8,1.094773292541504,13.513882637023926,293.5343322753906,100354.09375,0.0006150476401671,209.3124542236328,-4.4298853026703e-05,72.43692779541016,0.2558202445507049,1.064464449882507,0.6271591782569885,3439\n1047A,114.5129,36.61763,20170930,59.35185185185186,2721.0,6570.0,1587617.0564496485,953010.0447816384,57,1.9125101566314695,13.153818130493164,296.0736389160156,100202.875,0.0003752255870494,194.99403381347656,-1.157878796220757e-05,59.72245788574219,0.4352096915245056,1.86233389377594,0.5551730394363403,3013\n1048A,114.5426,36.6164,20170930,74.64285714285714,2721.0,6575.0,1590031.0550574411,953344.1355310014,55,1.9417898654937744,10.959625244140623,296.1258544921875,100306.25,0.0003731831675395,197.80252075195312,-1.1490516044432296e-05,59.32982635498047,0.3691572844982147,1.906376361846924,0.6193481683731079,3869\n1049A,114.5035,36.5776,20170930,68.66071428571429,2728.0,6569.0,1587819.0368633494,948101.7257358052,58,1.8902225494384768,12.09601593017578,296.04913330078125,100204.3984375,0.000403749232646,195.6696929931641,-1.20364411486662e-05,60.07511138916016,0.3960859477519989,1.8482578992843628,0.5731784701347351,3673\n1050A,114.4965,36.61981,20170930,61.53571428571429,2721.0,6567.0,1586248.1914189043,953004.2219524656,60,1.8962584733963013,14.499937057495115,296.02423095703125,100111.3515625,0.0003764707362279,193.0708465576172,-1.160584815806942e-05,59.96076965332031,0.4747693836688995,1.8358622789382932,0.5695925951004028,2562\n1051A,115.493,38.8632,20170930,51.64285714285714,2362.0,6727.0,1609736.564829013,1236167.1215982502,21,1.1514042615890503,26.87943649291992,295.8361511230469,100665.359375,2.9184046070440672e-05,90.62866973876952,-7.532739346061135e-06,49.69501876831055,0.5205525159835815,1.0270135402679443,0.6766037344932556,2602\n1052A,115.5223,38.8957,20170930,49.62962962962962,2357.0,6732.0,1611183.9339425713,1240519.240765485,17,1.1605017185211182,27.99674797058105,295.8368530273437,100705.75,2.836936982930638e-05,89.75210571289062,-8.185418664652389e-06,49.83441925048828,0.5447495579719543,1.0247009992599487,0.7117418050765991,3157\n1053A,115.4713,38.9108,20170930,47.96296296296296,2354.0,6723.0,1606857.7950902996,1241483.1610820852,19,1.0399320125579834,39.383087158203125,295.7999572753906,100651.2578125,3.031713822565507e-05,83.88740539550781,-7.150994406401878e-06,50.769161224365234,0.6598231196403503,0.8037985563278198,0.6980651617050171,4260\n1054A,115.4612,38.8416,20170930,57.55357142857143,2365.0,6722.0,1607818.6676709163,1233073.10335903,21,1.1302437782287598,27.410266876220703,295.8262023925781,100630.4921875,3.025851219717879e-05,90.68730926513672,-7.447020379913738e-06,50.00032043457031,0.5203035473823547,1.0033619403839111,0.6964933276176453,2504\n1055A,115.442,38.8756,20170930,49.96428571428572,2360.0,6719.0,1605476.6378987944,1236810.091564384,24,1.0526033639907837,36.33145523071289,295.83795166015625,100632.140625,2.900306571973488e-05,86.30557250976562,-7.186438324424671e-06,50.744415283203125,0.623604953289032,0.8479922413825989,0.6996962428092957,2745\n1056A,115.5214,38.8707,20170930,51.75,2361.0,6731.0,1611745.5317122089,1237526.1719943746,18,1.1870311498641968,24.83262825012207,295.8375244140625,100688.046875,2.8835675038862973e-05,91.8982925415039,-8.124492524075322e-06,49.6079330444336,0.4985026717185974,1.0772827863693235,0.6802457571029663,3352\n1057A,114.8985,40.8367,20170930,23.642857142857142,2046.0,6632.0,1515272.3927568016,1462367.043073434,920,0.7948369383811951,291.8601989746094,288.5033264160156,90133.3046875,0.0004813735431525,117.01974487304688,-5.005156253901077e-06,51.5721435546875,-0.7377012968063354,-0.2959096133708954,0.4189028441905975,6935\n1058A,114.892,40.79481,20170930,29.759259259259263,2053.0,6631.0,1515813.0648931146,1457254.233270808,777,0.7389008402824402,291.7931823730469,289.0233764648437,91018.6640625,0.0004828507080674,105.80130004882812,-4.826864369533723e-06,51.13712692260742,-0.6861073970794678,-0.2742829918861389,0.4197666943073272,4614\n1060A,114.9032,40.7688,20170930,21.73214285714285,2057.0,6632.0,1517293.9878300074,1454314.902552071,732,0.6945805549621582,289.9659423828125,289.2547302246094,91382.21875,0.0004981766105629,99.70896911621094,-4.700078079622472e-06,50.9272575378418,-0.6528467535972595,-0.2371354550123214,0.4235719740390777,2784\n1061A,114.904,40.8725,20170930,27.69642857142857,2040.0,6633.0,1514805.6162883672,1466735.844796198,902,0.8359333276748657,291.5774230957031,288.0531616210937,89368.4140625,0.0004823928466066,126.79542541503906,-5.152908215677599e-06,51.94765853881836,-0.7773699760437012,-0.3073767125606537,0.3989690840244293,4962\n1062A,117.9664,40.9161,20170930,19.142857142857142,2034.0,7123.0,1742668.2442399214,1522703.1278227607,361,0.699833333492279,180.06561279296875,289.9857788085937,95542.375,0.0005229319795034,103.85028839111328,-6.423997547244653e-06,60.61782836914063,-0.0008206415805034,0.6998328566551208,0.5158467292785645,5725\n1063A,117.9525,40.9843,20170930,18.732142857142858,2023.0,7120.0,1739704.030690676,1530562.8875486013,372,0.5976558923721313,182.5586395263672,289.8142395019531,94891.96875,0.0007315700640901,98.79168701171876,-6.072947599022882e-06,59.68157577514648,-0.0266797076910734,0.5970600843429565,0.5181764364242554,5513\n1064A,117.963,40.9359,20170930,30.035714285714285,2030.0,7122.0,1741854.7753274036,1524996.1113907455,404,0.6621944308280945,181.05186462402344,289.92706298828125,95297.265625,0.0005983937880955,102.05029296875,-6.29668738838518e-06,60.280982971191406,-0.0121554201468825,0.662082850933075,0.5967780351638794,6293\n1065A,117.8184,40.9733,20170930,21.428571428571427,2024.0,7099.0,1730033.055008314,1526887.4904631914,447,0.6678563356399536,28.072378158569336,289.8681030273437,95206.7109375,0.0008546673925593,88.42176055908203,-5.411854090198176e-06,59.86515808105469,0.3142757415771484,0.5892901420593262,0.6254462003707886,3974\n1066A,117.9384,41.0112,20170930,23.423076923076927,2018.0,7118.0,1737894.4564492642,1533510.946496051,384,0.5506740212440491,182.83041381835935,289.71337890625,94575.1953125,0.0008353164885193,97.87454223632812,-5.954681000730488e-06,59.42051696777344,-0.0271906163543462,0.5500022768974304,0.5237298011779785,5693\n1067A,116.6838,39.5178,20170930,38.375,2257.0,6917.0,1684335.0225340093,1334059.1526020237,17,1.7840691804885864,182.35491943359372,295.4382629394531,100948.5703125,8.039190288400277e-05,125.63365173339844,-1.1287642337265424e-05,51.1386833190918,-0.073304608464241,1.7825626134872437,0.7435026168823242,3094\n1068A,116.7729,39.5747,20170930,37.74074074074074,2248.0,6932.0,1689617.9894301384,1342357.1982228004,14,1.836729645729065,185.38890075683597,295.36328125,100997.4453125,9.534037235425784e-05,127.74088287353516,-1.1916604307771196e-05,51.541934967041016,-0.1724919825792312,1.8286120891571045,0.749599277973175,4519\n1070A,116.7464,39.5343,20170930,42.80357142857143,2255.0,6927.0,1688676.4962491558,1337096.2980085686,15,1.8247034549713133,183.7653045654297,295.4222717285156,100965.8125,8.980491838883609e-05,129.91575622558594,-1.1921867553610356e-05,51.70385360717773,-0.1198243573307991,1.8207648992538448,0.7336576581001282,3624\n1071A,116.8854,38.2991,20170930,37.23214285714285,2452.0,6950.0,1732520.5748827572,1192780.4904787843,9,2.2010650634765625,182.6319580078125,295.5547790527344,101050.7890625,5.42632733413484e-05,151.70574951171875,-9.031113222590648e-06,52.69087219238281,-0.1010693311691284,2.1987433433532715,0.6213150024414062,3072\n1072A,116.8584,38.3254,20170930,39.142857142857146,2448.0,6945.0,1729712.7047298958,1195425.203871742,10,2.220342874526977,182.5040435791016,295.6114196777344,101058.421875,4.9686350394040346e-05,152.74050903320312,-8.961616913438775e-06,52.69309997558594,-0.0970052108168602,2.2182228565216064,0.6353514790534973,3566\n1073A,116.8709,38.3228,20170930,46.17857142857143,2448.0,6947.0,1730755.2991836588,1195336.8228236905,9,2.2156858444213867,182.5907287597656,295.5955810546875,101060.8125,5.086482269689441e-05,152.41001892089844,-8.96182973519899e-06,52.69799423217773,-0.1001503318548202,2.21342134475708,0.6403969526290894,2862\n1074A,115.6951,37.7575,20170930,47.0,2539.0,6759.0,1653497.2900325633,1107962.6937265105,22,2.4584577083587646,182.97488403320312,296.4212646484375,100897.9765625,4.865196387981996e-05,207.94869995117188,-1.2701781088253483e-05,51.357608795166016,-0.127585083246231,2.4551448822021484,0.6302980184555054,3844\n1075A,115.6426,37.7379,20170930,54.05357142857143,2542.0,6751.0,1649861.2772532338,1104751.1091996492,22,2.4645259380340576,183.113037109375,296.4242248535156,100874.5703125,5.252251503407024e-05,210.1839599609375,-1.3099749594402963e-05,51.203857421875,-0.1338334083557129,2.460889339447021,0.6261756420135498,2995\n1076A,115.6906,37.739,20170930,48.32142857142857,2542.0,6758.0,1653612.9397437049,1105688.7035881423,23,2.461742401123047,183.05340576171875,296.4115600585937,100887.921875,5.274252180242911e-05,208.9675445556641,-1.3001044862903656e-05,51.40536117553711,-0.1311247050762176,2.458247661590576,0.6341663599014282,2527\n1077A,114.4821,37.0967,20170930,60.185185185185176,2645.0,6565.0,1573699.916514014,1009473.4672055868,73,1.9459189176559448,27.25058364868164,295.93438720703125,99737.203125,0.0001773066614987,177.71710205078125,-9.828067049966194e-06,56.39112854003906,0.890978991985321,1.7299586534500122,0.5799354314804077,2932\n1078A,114.5261,37.0533,20170930,57.66071428571429,2652.0,6572.0,1578246.8061086051,1005016.6899581857,66,1.9947651624679563,21.9824333190918,296.13775634765625,100029.0703125,0.0001904640375869,187.572509765625,-1.030702787829796e-05,56.201416015625,0.7466641068458557,1.8497514724731443,0.5494175553321838,2728\n1079A,114.5331,37.0964,20170930,69.55555555555556,2645.0,6573.0,1577772.3796544997,1010255.6452998648,63,2.0105576515197754,21.487552642822266,296.1547546386719,100050.140625,0.0001699555723462,186.5095977783203,-1.0177599506278057e-05,55.757568359375,0.7364445328712463,1.8708263635635376,0.5698723793029785,4543\n1080A,114.4854,37.062,20170930,56.53571428571429,2650.0,6566.0,1574792.4509487925,1005398.5112661044,76,1.9505615234375,26.283159255981445,295.9897766113281,99825.8671875,0.0001900964562082,180.6547698974609,-1.0002324415836483e-05,56.533912658691406,0.8637000322341919,1.748917579650879,0.5468434691429138,2132\n1081A,112.522,37.8873,20170930,58.0,2518.0,6252.0,1400116.059778645,1074131.8859409844,789,0.2159502506256103,21.09225273132324,291.1309509277344,90977.765625,0.0002365412656217,65.24301147460938,-5.492453055921942e-06,61.05958557128906,0.0777119919657707,0.2014829069375991,0.4272824823856354,2809\n1083A,112.434,38.0108,20170930,44.33333333333334,2498.0,6237.0,1390508.729158474,1087657.9898207595,887,0.4485034942626953,51.74446105957031,289.6440734863281,88917.7421875,0.0003861614968627,56.42270660400391,-5.013256213715067e-06,62.61519241333008,0.3521831631660461,0.2777092158794403,0.3852676153182983,5330\n1084A,112.469,37.7124,20170930,64.14285714285714,2546.0,6243.0,1399684.6395390064,1052458.5448626748,770,0.2091604173183441,45.54083633422852,290.88385009765625,90176.1875,0.0002407818537903,72.06354522705078,-6.169630978547502e-06,60.016700744628906,0.1492847949266433,0.1464996039867401,0.4847020804882049,2820\n1085A,112.5583,37.7394,20170930,49.981481481481474,2542.0,6257.0,1406180.4717640025,1056962.193499744,773,0.3319089412689209,200.5497283935547,291.5626525878906,91368.3828125,0.0001927013654494,76.2880630493164,-6.169371317810146e-06,59.918792724609375,-0.116503469645977,0.310790091753006,0.4439438581466675,3540\n1086A,112.5369,37.8692,20170930,59.01785714285714,2521.0,6254.0,1401684.5496889006,1072179.322617581,788,0.2056222707033157,9.464054107666016,291.1790466308594,90985.3984375,0.0002190077502746,66.96060180664062,-5.565028459386667e-06,60.882205963134766,0.0338092483580112,0.2028236985206604,0.4296835660934448,1968\n1087A,112.57,37.8195,20170930,59.05357142857143,2529.0,6259.0,1405376.2520207795,1066708.0299980517,786,0.2357936799526214,201.9163818359375,291.37066650390625,91141.90625,0.0001784785708878,71.88179016113281,-5.7839702094497625e-06,60.44458770751953,-0.0880082324147224,0.218753769993782,0.47269406914711,1889\n1088A,112.549,37.9854,20170930,59.55357142857143,2502.0,6256.0,1400132.1166841032,1086251.9171368892,822,0.3550628423690796,8.795571327209473,291.0525817871094,91007.203125,0.0002470048202667,59.900909423828125,-5.005347702535801e-06,61.75482177734375,0.0542908422648906,0.3508876264095306,0.4551171064376831,4678\n1089A,112.488,37.7805,20170930,53.0,2535.0,6246.0,1399725.9250979184,1060873.396802097,787,0.1630730032920837,67.54022979736328,290.8077697753906,90136.6640625,0.0002299453335581,69.46339416503906,-5.944404165347805e-06,60.31242752075195,0.1507014334201812,0.0623047687113285,0.4257083535194397,2558\n1090A,111.651,40.7579,20170930,26.517857142857142,2059.0,6112.0,1272205.141415575,1406838.2924259375,1032,0.4570832252502441,272.90496826171875,289.1737365722656,88934.6328125,0.0008375197649002,118.60596466064452,-8.542427167412825e-06,47.16983795166016,-0.4564969539642334,-0.023142971098423,0.2998785674571991,2988\n1091A,111.658,40.8033,20170930,26.62962962962963,2052.0,6113.0,1271799.1821574834,1412395.0289789485,1047,0.3624313771724701,289.0721435546875,289.0757141113281,88649.1796875,0.0008871726458892,125.44923400878906,-8.259962669399101e-06,47.07919692993164,-0.3425433933734894,-0.1184083521366119,0.3573633730411529,3026\n1092A,111.659,40.8452,20170930,34.092592592592595,2045.0,6113.0,1271011.1703736826,1417452.956787858,1065,0.290091723203659,305.0182189941406,288.4730834960937,87576.03125,0.0009349518222734,132.3848419189453,-7.968648787937127e-06,46.97430038452149,-0.2375870496034622,-0.1664499938488006,0.3647996187210083,3056\n1093A,111.608,40.8144,20170930,36.03846153846154,2050.0,6105.0,1267790.1867455556,1413085.4135992068,1053,0.3431622982025146,301.3778076171875,288.72320556640625,87993.2421875,0.0009254232863895,128.169189453125,-8.105826964310836e-06,46.93308639526367,-0.2929868698120117,-0.1786590218544006,0.3081443905830383,2107\n1094A,111.751,40.8369,20170930,31.94,2046.0,6128.0,1278134.4550458663,1417647.0342125262,1068,0.2737320065498352,284.4613952636719,288.844482421875,88232.8125,0.0008488526800647,130.11300659179688,-8.126011380227283e-06,47.20659255981445,-0.2650627791881561,-0.0683442056179046,0.2999065518379211,2697\n1095A,111.7277,40.8062,20170930,26.464285714285715,2051.0,6124.0,1277009.1978736666,1413648.1735191965,1054,0.3392306268215179,278.1026916503906,289.1255798339844,88732.96875,0.000839740212541,125.42475128173828,-8.315822014992591e-06,47.22359085083008,-0.3358465135097503,-0.0477968193590641,0.2917474210262298,3574\n1096A,111.551,40.7866,20170930,35.44642857142857,2054.0,6096.0,1264049.6348043713,1409003.4309673298,1061,0.3508432805538177,301.97027587890625,288.70166015625,87855.890625,0.0008813340682536,125.03699493408205,-8.192625500669237e-06,46.86433792114258,-0.2976400852203369,-0.1857454925775528,0.3222158849239349,3254\n1097A,111.717,40.7612,20170930,25.44642857142857,2058.0,6123.0,1277130.917214611,1408091.7651708913,1043,0.4544882774353027,263.7493896484375,289.1845703125,88939.6484375,0.000803752511274,118.58104705810548,-8.598172826168593e-06,47.31196594238281,-0.4517843127250671,0.0495028868317604,0.3207696378231048,3020\n1098A,123.6836,41.9339,20170930,15.178571428571429,1871.0,8037.0,2129556.9804676403,1755591.9995222648,125,1.935392022132873,190.12322998046875,289.6651306152344,100053.75,0.0027467713225632,221.5626678466797,-1.0312397535017226e-05,67.1956787109375,-0.340165376663208,1.9052636623382568,0.450039267539978,6554\n1099A,123.535,41.7561,20170930,24.57142857142857,1899.0,8014.0,2125064.2610081304,1731543.1780614024,52,1.9398552179336548,194.5915679931641,289.8939819335937,100507.0703125,0.0025198271032422,204.99632263183597,-8.803579476079904e-06,65.13684844970703,-0.4886878132820129,1.877291321754456,0.4723890721797943,4069\n1100A,123.439,41.7089,20170930,21.5,1907.0,7998.0,2119763.498432587,1723938.0920975024,44,1.916046142578125,193.9201202392578,290.0036315917969,100667.46875,0.0024798072408884,206.0448303222656,-8.81964479049202e-06,64.1572494506836,-0.4609275758266449,1.8597791194915767,0.5676145553588867,3611\n1102A,123.542,41.8336,20170930,21.14814814814815,1887.0,8015.0,2122856.063759939,1740776.0912912274,56,1.961500644683838,192.337646484375,289.8957824707031,100485.921875,0.0026155752129852,212.7747039794922,-9.011929250846151e-06,65.29682159423828,-0.4191064238548279,1.9162031412124636,0.4626012742519378,4473\n1103A,123.428,41.8472,20170930,19.38888888888889,1885.0,7996.0,2114140.964719078,1739912.2245709177,50,1.9652167558670044,189.66688537597656,289.9389343261719,100615.2734375,0.0025816692505031,219.72515869140625,-8.834622349240817e-06,63.84986877441406,-0.3299889862537384,1.937313675880432,0.4557799100875854,6928\n1104A,123.41,41.765,20170930,24.092592592592588,1898.0,7994.0,2115706.350295917,1729888.8204690842,43,1.9283300638198853,191.5691375732422,289.9765319824219,100664.7265625,0.0025322122965008,212.600341796875,-8.788045306573622e-06,63.57449722290039,-0.386715680360794,1.8891552686691284,0.5475549697875977,3721\n1105A,123.478,41.7775,20170930,20.11111111111111,1896.0,8004.0,2120191.0304577868,1732819.7009249916,48,1.9416594505310056,192.7758636474609,289.9390869140625,100592.0234375,0.0025502780918031,209.2014923095703,-8.787375918473117e-06,64.2921371459961,-0.4293616116046905,1.8935917615890503,0.5375012755393982,3563\n1106A,123.3997,41.7972,20170930,23.910714285714285,1893.0,7992.0,2113838.331602913,1733441.8707491278,47,1.935341715812683,190.2860565185547,289.95953369140625,100656.09375,0.0025525109376758,216.5833282470703,-8.805382094578817e-06,63.48929977416992,-0.345569908618927,1.9042397737503047,0.5163331627845764,2265\n1108A,123.3783,41.9228,20170930,24.07142857142857,1872.0,7989.0,2107914.5938606244,1747707.9348952635,48,1.9982197284698489,186.25672912597656,289.9571533203125,100623.8515625,0.0025511637795716,230.5730743408203,-8.857966349751223e-06,63.51796722412109,-0.2177671045064926,1.9863181114196775,0.4694028496742248,4857\n1109A,121.6119444,38.97388889,20170930,22.214285714285715,2344.0,7706.0,2076360.890761116,1364078.9857954578,23,1.811506509780884,5.269280910491943,294.930908203125,100868.4921875,0.0006374915246851,439.7756652832031,-0.0001307666971115,71.51107788085938,0.1663579046726226,1.8038517236709597,0.5194690823554993,4161\n1110A,121.565,38.95111111,20170930,17.267857142857142,2348.0,7698.0,2073528.8122370872,1360414.3577281593,27,1.7785239219665527,4.710118770599365,294.87774658203125,100704.03125,0.000634528172668,446.6583862304688,-0.0001360102760372,71.54583740234375,0.1460378617048263,1.7725180387496948,0.5253152251243591,3073\n1111A,121.5638889,38.885,20170930,23.089285714285715,2358.0,7698.0,2075594.4628619235,1352631.9139785515,38,1.7784916162490845,4.804381847381592,294.895751953125,100647.2578125,0.0006374277290888,447.73138427734375,-0.0001388171658618,71.46192932128906,0.1489518284797668,1.7722431421279907,0.5736582279205322,4190\n1112A,121.6330556,38.91194444,20170930,22.759259259259263,2354.0,7709.0,2079987.4852426236,1357256.3772669935,46,1.83822762966156,6.09218692779541,294.9901428222656,100889.8984375,0.0006471402593888,443.9727783203125,-0.000134668443934,71.33841705322266,0.1950819790363311,1.8278467655181885,0.5304928421974182,2800\n1113A,121.625,38.86388889,20170930,19.88888888888889,2362.0,7708.0,2080940.2564217,1351447.2175031516,26,1.8396635055541992,6.192413330078125,294.9952697753906,100876.203125,0.0006487889331765,449.1659851074219,-0.0001391091500408,71.23965454101562,0.1984343528747558,1.828930139541626,0.5391609072685242,6391\n1114A,121.51805559999998,38.85611111,20170930,18.517857142857142,2363.0,7691.0,2073038.6283332517,1348273.9278651727,24,1.7557967901229858,3.5674874782562256,294.8783874511719,100563.2734375,0.0006211222498677,447.2113037109375,-0.000140634147101,71.55609130859375,0.1092511191964149,1.7523945569992063,0.5242246985435486,2849\n1115A,121.2588889,38.80805556,20170930,20.01851851851852,2371.0,7649.0,2054810.7173493528,1337188.2958765752,16,1.8138214349746704,184.6553649902344,294.8944091796875,101015.1796875,0.0004860394983552,399.4076843261719,-0.0001107151765609,72.16336822509766,-0.1472096741199493,1.8078378438949585,0.560206949710846,3207\n1117A,121.7769,39.0511,20170930,24.69642857142857,2332.0,7732.0,2086380.8077644263,1376633.0888619204,36,1.6416131258010864,8.75969409942627,294.6944580078125,100659.6171875,0.0006970714894123,409.7349853515625,-0.0001118835061788,71.72862243652344,0.2499948889017105,1.6224660873413086,0.5553646087646484,2845\n1119A,125.323,43.9167,20170930,16.0,1553.0,8300.0,2173758.544607888,2023400.3168702272,214,2.12820816040039,24.31465148925781,287.6834716796875,98686.640625,0.0008477627416141,230.1319732666016,-1.7229576769750565e-05,65.32381439208984,0.876259982585907,1.9394428730010984,0.3587302267551422,2821\n1120A,125.287,43.91,20170930,14.678571428571429,1554.0,8294.0,2171509.16831646,2021822.145415828,221,2.150761604309082,24.37910461425781,287.7174072265625,98714.1875,0.0008307188982143,232.1402130126953,-1.7519718312541954e-05,65.26744079589844,0.8877500891685486,1.958998441696167,0.4135657846927643,2888\n1121A,125.2786,43.84,20170930,14.25925925925926,1566.0,8293.0,2173527.2858362827,2013464.1409786085,228,2.182082414627075,25.11299133300781,287.7088623046875,98683.125,0.0009244859102182,232.443603515625,-2.0462763131945397e-05,65.5383071899414,0.926060438156128,1.9758278131484983,0.410891979932785,2656\n1122A,125.3649,43.8748,20170930,10.892857142857142,1560.0,8306.0,2178227.3724156814,2019437.4334890856,198,2.1166470050811768,24.676654815673828,287.61395263671875,98595.4453125,0.0009170354460366,227.5880126953125,-1.8084403563989326e-05,65.57072448730469,0.8836693167686462,1.9233624935150144,0.4297031164169311,2222\n1123A,125.325,43.8694,20170930,11.964285714285715,1561.0,8300.0,2175657.624280038,2017923.137670369,213,2.145813465118408,24.8034725189209,287.6765441894531,98654.328125,0.0009049255750142,229.7958831787109,-1.868958497652784e-05,65.5139389038086,0.9001590013504028,1.9478780031204224,0.3928669095039367,2179\n1124A,125.454,43.7878,20170930,10.125,1574.0,8321.0,2187664.2513397266,2011264.3528906489,242,2.069124221801758,25.32380104064941,287.426513671875,98344.515625,0.0010256073437631,219.74484252929688,-1.7009884686558507e-05,66.10819244384766,0.8850088715553284,1.8703031539916992,0.354583203792572,7561\n1125A,125.633,43.55,20170930,12.321428571428571,1612.0,8349.0,2209040.2986590653,1987533.6492459532,221,2.012238025665283,24.882043838500977,287.2953186035156,98381.5859375,0.0012375671649351,204.51449584960935,-1.4800794815528208e-05,67.20528411865234,0.8466288447380066,1.8254647254943848,0.3564071357250213,5426\n1126A,125.417,43.8667,20170930,13.785714285714285,1561.0,8315.0,2182147.050533095,2019648.1223987043,212,2.07775616645813,24.64564323425293,287.5137634277344,98491.8828125,0.0009521288448013,224.08799743652344,-1.7501615729997866e-05,65.71549224853516,0.8664103746414185,1.8884923458099363,0.4723280966281891,3178\n1127A,125.25,43.8167,20170930,11.888888888888893,1569.0,8288.0,2172404.57232605,2010111.368067672,208,2.207066297531128,25.270675659179688,287.7379150390625,98713.171875,0.0009377427631989,234.5584716796875,-2.1940071746939797e-05,65.54171752929688,0.9421595931053162,1.9958648681640625,0.4388992488384247,3728\n1128A,125.217,43.85,20170930,10.964285714285712,1564.0,8283.0,2168874.9454048723,2013270.5635945864,215,2.2120261192321777,24.939836502075195,287.770263671875,98755.53125,0.0008776019094511,236.4867706298828,-2.0027377104270272e-05,65.37669372558594,0.9327113032341005,2.0057690143585205,0.4139990508556366,3094\n1129A,126.542,45.755,20170930,13.017857142857142,1259.0,8495.0,2187092.8090272066,2264692.21523977,115,2.0096983909606934,30.816829681396484,287.0976257324219,99492.984375,0.0012536119902506,221.4501190185547,-1.197956589749083e-05,67.54359436035156,1.0295313596725464,1.7259643077850342,0.3321316540241241,2697\n1130A,126.561,45.8167,20170930,10.839285714285712,1249.0,8498.0,2185976.7878043377,2272291.92913437,117,1.967319130897522,32.29758834838867,287.0712890625,99585.921875,0.0012635472230613,219.3450927734375,-1.2134033568145242e-05,67.74708557128906,1.051144003868103,1.662961483001709,0.3846141397953033,3921\n1131A,126.979,45.5422,20170930,12.0,1293.0,8565.0,2224665.0119926,2249767.506890247,142,1.9121209383010864,22.73692512512207,286.715576171875,99175.390625,0.0013501895591616,212.0380401611328,-1.303871613345109e-05,68.84489440917969,0.7390148639678955,1.7635371685028076,0.3681445121765136,2447\n1133A,126.689,45.7733,20170930,11.732142857142858,1256.0,8518.0,2196219.6563872565,2270099.222345536,127,2.055346727371216,29.55660820007324,287.0232849121094,99430.8046875,0.0011903418926522,220.5355529785156,-1.2912718375446277e-05,67.73573303222656,1.0138410329818726,1.7878973484039309,0.3555667698383331,2100\n1134A,126.635,45.7667,20170930,13.357142857142858,1257.0,8510.0,2192863.4973412105,2268125.7508213758,130,2.039912700653076,29.95820999145508,287.0460205078125,99463.8984375,0.0012108174851164,220.7743225097656,-1.2544967830763198e-05,67.66419219970703,1.018640160560608,1.767375349998474,0.3593739569187164,1491\n1135A,126.685,45.7319,20170930,13.785714285714285,1263.0,8518.0,2197560.411618121,2265196.3763690507,146,2.089539766311645,28.2522029876709,287.01226806640625,99325.3359375,0.0011660435702651,220.7568206787109,-1.2557031368487516e-05,67.62181854248047,0.989064395427704,1.8406325578689573,0.3560202419757843,2226\n1136A,126.646,45.7258,20170930,14.928571428571429,1264.0,8511.0,2195186.436960456,2263615.3382662903,149,2.077251434326172,28.645893096923828,287.0392150878906,99354.578125,0.0011874045012518,221.0608673095703,-1.2356513252598234e-05,67.58736419677734,0.9957972168922424,1.823009014129639,0.3725869357585907,2265\n1137A,126.593,45.7478,20170930,13.464285714285715,1260.0,8503.0,2190785.4165470903,2264990.900120507,125,2.036335229873657,29.989280700683597,287.0698547363281,99451.15625,0.0012253053719177,221.4259796142578,-1.2218150914122816e-05,67.56241607666016,1.0178104639053345,1.7637242078781128,0.4217794239521026,1730\n1138A,126.615,45.61,20170930,14.053571428571429,1282.0,8506.0,2197599.8027693084,2249456.219520363,173,2.087364912033081,27.04476928710937,286.9308166503906,99072.2578125,0.0011695742141455,221.0338897705078,-1.1933007954212371e-05,67.54315948486328,0.9490708708763124,1.8591278791427608,0.3782010078430176,4357\n1139A,126.6106,45.9819,20170930,13.333333333333336,1223.0,8506.0,2182889.844268301,2292608.2841715645,123,1.833134770393372,35.886512756347656,286.9559631347656,99570.4375,0.001330665894784,215.2093963623047,-1.3368693544180132e-05,68.38239288330078,1.0745224952697754,1.485188364982605,0.34851735830307,4279\n1140A,126.6206,45.6842,20170930,11.928571428571429,1271.0,8507.0,2195098.6872304343,2258210.345263535,170,2.090028762817383,27.9927921295166,287.03106689453125,99267.6328125,0.0011855668853968,221.1185607910156,-1.213439190905774e-05,67.56111145019531,0.980949878692627,1.845523476600647,0.3848466873168945,3411\n1141A,121.4,31.238000000000003,20170930,24.134615384615387,3582.0,7672.0,2308085.386520753,459407.16646483407,7,1.836769819259644,283.9879455566406,296.3946228027344,101158.1953125,0.004419311415404,381.5106201171875,-3.054849730688147e-05,80.37239074707031,-1.7823272943496704,-0.4438840448856354,0.5663275718688965,3295\n1142A,121.478,31.2036,20170930,28.55555555555556,3588.0,7684.0,2315832.213351281,457284.2307689312,10,1.914091944694519,283.62371826171875,296.4905090332031,101154.515625,0.0044001783244311,398.3569946289063,-3.459721483523026e-05,80.29112243652344,-1.860260248184204,-0.4507547318935394,0.5508914589881897,2388\n1143A,121.467,31.3008,20170930,23.964285714285715,3572.0,7683.0,2311805.8025830844,468209.58806890703,7,1.9421262741088867,282.8507995605469,296.4300842285156,101158.3671875,0.0044450010173022,403.1450500488281,-3.8657257391605526e-05,80.2315902709961,-1.8935037851333616,-0.4318540692329407,0.5676408410072327,3613\n1144A,121.412,31.1654,20170930,23.535714285714285,3594.0,7674.0,2311410.3181603,451335.331504143,7,1.803205728530884,284.7660522460937,296.4319763183594,101150.71875,0.0043623973615467,384.5534362792969,-3.0494302336592227e-05,80.42706298828125,-1.7436789274215698,-0.45949387550354,0.5541599988937378,4351\n1145A,121.536,31.2659,20170930,22.67857142857143,3578.0,7694.0,2318797.2743460624,465819.5686964428,7,2.022064447402954,282.6901550292969,296.53289794921875,101157.6328125,0.0044168354943394,424.8829040527344,-5.099285408505239e-05,79.98723602294922,-1.97269344329834,-0.4441004991531372,0.5469980239868164,2694\n1146A,120.978,31.0935,20170930,29.92592592592593,3605.0,7604.0,2276568.048179442,432926.7409552181,3,1.698969841003418,289.2635192871094,296.2195129394531,101175.328125,0.0034223445691168,348.6672058105469,-3.831769208773039e-05,80.82442474365234,-1.6038780212402344,-0.5604231357574463,0.6261768341064453,1478\n1147A,121.425,31.2261,20170930,26.142857142857142,3584.0,7676.0,2310595.561825627,458625.3111744593,10,1.8575870990753172,283.90496826171875,296.4134521484375,101156.3203125,0.0044125942513346,387.14453125,-3.206489782314748e-05,80.34854125976562,-1.803175687789917,-0.4463039934635162,0.5719768404960632,2786\n1148A,121.703,31.1907,20170930,20.875,3590.0,7720.0,2335439.811506024,461126.0509072857,4,2.6826181411743164,281.5337219238281,297.1198425292969,101195.5,0.0044631515629589,499.4466857910156,-9.76002193056047e-05,79.13465118408203,-2.628476619720459,-0.5362371206283569,0.5209836363792419,3289\n1149A,121.533,31.2284,20170930,22.81481481481481,3584.0,7693.0,2319735.652350633,461434.6190017258,8,2.005131244659424,282.9165954589844,296.5611572265625,101155.8359375,0.0044109006412327,419.8340759277344,-4.736775372293778e-05,80.05066680908203,-1.954418063163757,-0.4481083154678345,0.567550778388977,2977\n1150A,121.577,31.2071,20170930,24.07142857142857,3587.0,7700.0,2324167.600693376,460024.3326441118,3,2.102034091949463,282.58203125,296.7063903808594,101162.4375,0.0044133681803941,440.6161804199219,-6.012110679876059e-05,79.81734466552734,-2.0515780448913574,-0.4577936232089996,0.5761347413063049,4571\n1151A,118.803,32.1083,20170930,22.410714285714285,3443.0,7256.0,2060789.6386423088,502334.9273583511,24,1.413477063179016,277.81231689453125,295.0613098144531,100934.0546875,0.0041563594713807,227.1265106201172,-2.176178350055125e-05,79.46077728271484,-1.4003677368164062,-0.1920615881681442,0.7405486702919006,5138\n1152A,118.749,32.0572,20170930,25.203703703703702,3451.0,7248.0,2057669.984205824,495264.9239074013,15,1.4134100675582886,277.5447998046875,295.1098937988281,100925.53125,0.0040177144110202,227.5653533935547,-2.2026715669198893e-05,79.29853820800781,-1.401182770729065,-0.1855123341083526,0.7381569147109985,4359\n1153A,118.778,32.0723,20170930,23.64814814814815,3449.0,7252.0,2059700.30198914,497627.2417998041,16,1.4153776168823242,277.5139465332031,295.0924377441406,100923.5703125,0.0040522855706512,227.5109100341797,-2.1904959794483148e-05,79.40057373046875,-1.4032331705093384,-0.1850146353244781,0.7430164217948914,3072\n1154A,118.777,32.0144,20170930,17.096153846153847,3458.0,7252.0,2061275.8993319292,490878.6041730997,17,1.429643154144287,276.52008056640625,295.1634521484375,100948.40625,0.0039188303053379,228.44163513183597,-2.205557575507555e-05,79.49833679199219,-1.4204044342041016,-0.1622675508260727,0.7467942237854004,2707\n1155A,118.803,32.0314,20170930,27.875,3455.0,7256.0,2062997.6159002832,493399.3767029431,12,1.4290146827697754,276.61669921875,295.1337890625,100940.203125,0.0039627775549888,228.24192810058597,-2.189432234445121e-05,79.58869934082031,-1.4195045232772827,-0.1645901799201965,0.740868091583252,3074\n1156A,118.795,32.0775,20170930,21.66,3448.0,7255.0,2060994.7316951824,498587.9665022163,13,1.418195366859436,277.4255065917969,295.08575439453125,100925.4375,0.0040738666430115,227.5453338623047,-2.1834812287124805e-05,79.48298645019531,-1.4063111543655396,-0.1832128912210464,0.7348220348358154,4034\n1158A,118.737,32.0092,20170930,29.517857142857142,3459.0,7246.0,2058024.868709843,489435.964021699,8,1.4264718294143677,276.73370361328125,295.18682861328125,100956.265625,0.0039129867218434,228.48883056640625,-2.2098605768405832e-05,79.35136413574219,-1.416640043258667,-0.1671904176473617,0.7524036765098572,3634\n1159A,118.907,32.105,20170930,22.87037037037037,3443.0,7273.0,2069710.823635944,504137.400822276,25,1.4436068534851074,276.6336669921875,295.0328674316406,100819.40625,0.0042612398974597,228.12985229492188,-2.158003371732775e-05,79.99365997314453,-1.4339503049850464,-0.1666956692934036,0.744059145450592,5288\n1160A,120.561,31.2472,20170930,22.053571428571423,3581.0,7538.0,2236141.5781756323,441066.2672145413,46,2.3511605262756348,282.6868591308594,296.51397705078125,101078.796875,0.0033998610451817,388.3794555664063,-6.81083693052642e-05,80.8776626586914,-2.293784141540528,-0.5162462592124939,0.6641373634338379,5064\n1161A,120.628,31.2864,20170930,22.517857142857142,3574.0,7548.0,2240662.8235815293,447114.3170125727,7,2.05155348777771,282.9361572265625,296.31890869140625,101094.484375,0.0035935279447585,365.2615051269531,-5.2261144446674734e-05,80.7486801147461,-1.9995096921920776,-0.4591649770736694,0.6856001615524292,2826\n1162A,120.591,31.3019,20170930,25.19642857142857,3572.0,7543.0,2237024.9060083,448059.292827868,8,2.177273750305176,282.0277099609375,296.3793640136719,101081.2890625,0.0035835523158311,368.8751220703125,-5.494183278642595e-05,80.75955963134766,-2.129499912261963,-0.4535982012748718,0.6542125940322876,2741\n1163A,120.596,31.3264,20170930,27.23214285714285,3568.0,7543.0,2236698.6317590056,450999.66378941113,7,2.125661611557007,281.5415954589844,296.334228515625,101102.9609375,0.0036470589693635,363.5400695800781,-5.129676355863921e-05,80.72248077392578,-2.082702398300171,-0.425191730260849,0.657292902469635,2887\n1164A,120.613,31.2703,20170930,24.35185185185185,3577.0,7546.0,2239876.582047024,444915.2357814904,6,2.1119751930236816,283.1057434082031,296.3686218261719,101096.0859375,0.0035210708156228,371.3088073730469,-5.6560089433332905e-05,80.78673553466797,-2.056990623474121,-0.4787792861461639,0.6669298410415649,2628\n1165A,120.543,31.2994,20170930,25.267857142857142,3572.0,7535.0,2233000.7655349635,446679.0466742546,7,2.410745143890381,281.1192626953125,296.51031494140625,101065.7890625,0.0035055398475378,378.0956726074219,-6.172716530272737e-05,80.80392456054688,-2.3655145168304443,-0.4647940099239349,0.6695055365562439,2519\n1166A,120.669,31.3097,20170930,20.0,3571.0,7555.0,2243447.1405840777,450737.40493197046,5,1.9240034818649288,283.1580810546875,296.2255859375,101130.96875,0.0036975990515202,354.3324584960937,-4.4167427404318005e-05,80.6857681274414,-1.8735134601593015,-0.4378776848316192,0.6696268320083618,3766\n1167A,120.641,31.3708,20170930,20.946428571428573,3561.0,7551.0,2239173.4791178037,457147.2140130602,2,1.8751118183135984,281.39825439453125,296.1481018066406,101164.375,0.0038305239286273,349.5440368652344,-4.044156230520457e-05,80.62810516357422,-1.8381484746932983,-0.3704784512519836,0.6435636878013611,4290\n1168A,120.913,31.96,20170930,17.826923076923073,3466.0,7594.0,2244017.051575991,531372.809531108,3,1.5918952226638794,270.37506103515625,295.6121826171875,101218.359375,0.0047936448827385,334.4860534667969,-3.46863416780252e-05,80.23025512695312,-1.591861605644226,-0.0103471875190734,0.6073121428489685,3569\n1169A,120.86,32.0005,20170930,22.642857142857142,3460.0,7586.0,2238273.183129527,534842.8766719941,5,1.5547441244125366,270.1898803710937,295.5426940917969,101215.5703125,0.0047813639976084,327.0940856933594,-3.204682070645504e-05,80.13711547851562,-1.554735779762268,-0.0050806133076548,0.6214533448219299,3130\n1170A,120.87,32.02,20170930,20.517857142857142,3457.0,7587.0,2238511.3181912177,537323.8459927032,7,1.5256885290145874,270.0989990234375,295.5162048339844,101214.6328125,0.0047926907427608,326.5314636230469,-3.2061194360721856e-05,80.08531951904297,-1.5256863832473757,-0.0025660402607172,0.6067409515380859,2626\n1172A,120.81,32.0417,20170930,22.85714285714285,3453.0,7578.0,2232765.324297426,538466.3995493175,5,1.4645586013793943,269.81207275390625,295.4315185546875,101213.1484375,0.004781924188137,318.2834167480469,-2.804485302476678e-05,79.98110961914062,-1.464550495147705,0.004871379584074,0.633710503578186,4868\n1173A,119.176,34.5885,20170930,25.35714285714285,3046.0,7316.0,2019845.7444100445,799261.0499782427,5,1.2470426559448242,237.9596710205078,294.5502319335937,101121.9765625,0.001691301818937,257.3834533691406,-2.726676393649541e-05,75.19825744628906,-1.0570669174194336,0.6616078019142151,0.5873293280601501,3017\n1177A,117.167,34.2761,20170930,36.10714285714285,3096.0,6995.0,1863411.970887288,722945.5328200305,39,1.325443148612976,238.59603881835935,294.67413330078125,100821.3828125,0.0025485006626695,181.9252777099609,-1.6009469618438743e-05,75.01376342773438,-1.1312644481658936,0.690680980682373,0.6920924186706543,2550\n1178A,117.192,34.2417,20170930,32.982142857142854,3101.0,6999.0,1866405.804648619,719380.6568966939,39,1.3286880254745483,238.94813537597656,294.67059326171875,100826.890625,0.0025986116379499,182.04446411132807,-1.5843181245145388e-05,75.21090698242188,-1.138267159461975,0.685390293598175,0.7197828888893127,2711\n1180A,117.256,34.2153,20170930,33.69642857142857,3106.0,7009.0,1872410.3711313133,717498.8860775072,37,1.3420367240905762,239.6477813720703,294.6645202636719,100879.3203125,0.0026189449708908,183.19189453125,-1.603808777872473e-05,75.33476257324219,-1.1580702066421509,0.6781858801841736,0.6704874634742737,4903\n1182A,117.2933,34.2778,20170930,43.83928571428572,3096.0,7015.0,1873800.7094767916,725547.0071014,38,1.363440990447998,239.502197265625,294.682861328125,100888.3046875,0.0024503362365067,185.45382690429688,-1.650686863285955e-05,75.15655517578125,-1.174785852432251,0.6919896006584167,0.696087121963501,4635\n1184A,119.46,32.3878,20170930,29.4,3398.0,7362.0,2108260.3856164743,548741.6146005092,8,1.327551007270813,272.6434936523437,294.89678955078125,101165.25,0.0050940546207129,231.06138610839844,-2.224216950708069e-05,79.60769653320312,-1.3261412382125854,-0.061165515333414,0.7101255059242249,2972\n1185A,119.404,32.41,20170930,30.59615384615385,3394.0,7353.0,2102879.537251268,550119.7312407221,12,1.336575269699097,272.51300048828125,294.9124450683594,101137.3828125,0.0050962059758603,231.5286407470703,-2.1789915990666486e-05,79.6924057006836,-1.3352926969528198,-0.0585394948720932,0.6969576478004456,5068\n1186A,119.389,32.3761,20170930,28.17857142857143,3400.0,7350.0,2102611.501712267,545861.5698812671,7,1.3401645421981812,272.9779663085937,294.9384765625,101172.9296875,0.00506037985906,231.8432464599609,-2.259955908812117e-05,79.83427429199219,-1.3383580446243286,-0.0695601627230644,0.710178554058075,3435\n1188A,120.269,31.4867,20170930,21.964285714285715,3542.0,7491.0,2203891.3660522634,462118.0973492889,4,2.429860115051269,274.8169250488281,296.4257507324219,101042.6171875,0.0034903490450233,370.9142456054688,-6.573746941285208e-05,80.0920181274414,-2.421288013458252,-0.2039219588041305,0.665001392364502,4043\n1189A,120.275,31.6219,20170930,34.267857142857146,3521.0,7492.0,2200293.156480649,477876.4342162003,3,1.7642908096313477,272.376220703125,295.8772888183594,101134.6953125,0.0037443570327013,327.6546936035156,-4.3806230678455904e-05,80.18303680419922,-1.7627772092819214,-0.0730656310915947,0.6843357682228088,3434\n1190A,120.294,31.56,20170930,29.214285714285715,3530.0,7495.0,2203793.799193455,471148.3755544864,8,2.012321949005127,273.7890625,296.0624694824219,101095.984375,0.0036695848684757,342.9226379394531,-5.0119437219109386e-05,80.1650390625,-2.007929563522339,-0.1328849345445633,0.6817859411239624,3009\n1191A,120.242,31.5031,20170930,31.87037037037037,3540.0,7487.0,2201090.7552102064,463407.8034668893,29,2.3473145961761475,274.20263671875,296.3739624023437,101019.34375,0.0034898647572845,370.39794921875,-6.627452239627019e-05,80.03072357177734,-2.3410112857818604,-0.171907365322113,0.683280885219574,5666\n1192A,120.354,31.5848,20170930,30.392857142857142,3527.0,7505.0,2208148.791529943,475361.0999980349,5,1.8767539262771609,273.8817749023437,295.9745788574219,101153.203125,0.0038085840642452,331.4099426269531,-4.09642634622287e-05,80.27471923828125,-1.8724545240402224,-0.1269611865282058,0.6658012866973877,3335\n1193A,120.354,31.5475,20170930,27.05357142857143,3532.0,7505.0,2209286.1774212206,471051.4473488431,5,2.045313596725464,274.6918640136719,296.0830383300781,101137.4375,0.0037373881787061,337.83612060546875,-4.400860780151561e-05,80.25566864013672,-2.0384681224823,-0.1672011166810989,0.6734815239906311,3780\n1194A,120.245,31.5631,20170930,29.75,3530.0,7487.0,2199524.887263568,470408.6974865123,20,1.996601104736328,273.03192138671875,296.0763854980469,101063.296875,0.0036028125323355,348.5609436035156,-5.564743696595542e-05,80.0870590209961,-1.9938113689422607,-0.1055098995566368,0.6541486978530884,4818\n1195A,120.288,31.6842,20170930,32.648148148148145,3511.0,7494.0,2199504.35561039,485369.10254528286,4,1.635509371757507,271.731201171875,295.75048828125,101219.6171875,0.0038506644777953,308.5546264648437,-3.3867723686853424e-05,80.25115966796875,-1.6347651481628418,-0.049332782626152,0.6770219802856445,4110\n1196A,119.996,31.7586,20170930,31.214285714285715,3499.0,7447.0,2172421.7982142456,487478.4431445548,4,1.4889121055603027,268.8619384765625,295.5631408691406,101198.8203125,0.0036201069597154,271.59088134765625,-2.6054889531224035e-05,79.57992553710938,-1.4886170625686646,0.0296405106782913,0.716313362121582,3280\n1200A,119.935,31.7039,20170930,25.55357142857143,3507.0,7438.0,2168876.565523892,479800.86266131705,5,1.527137279510498,268.8602294921875,295.61846923828125,101151.6328125,0.0034489266108721,282.9830627441406,-3.37929704983253e-05,79.71656036376953,-1.5268337726593018,0.0304470732808113,0.7066532373428345,3207\n1201A,119.905,31.9108,20170930,29.944444444444446,3474.0,7433.0,2160118.7120844657,503091.8007751509,5,1.3849440813064575,270.3921203613281,295.2962646484375,101187.1953125,0.0039114574901759,251.5642852783203,-2.578909698058851e-05,79.7663345336914,-1.384912133216858,-0.0094136530533432,0.7053679823875427,5276\n1203A,119.68,32.1883,20170930,33.96296296296296,3430.0,7397.0,2132762.945901931,530337.4483238196,19,1.3623849153518677,273.66424560546875,295.0295715332031,101118.3515625,0.0047699813731014,233.9593811035156,-2.556606887083035e-05,79.7354965209961,-1.359604001045227,-0.0870035588741302,0.6926662921905518,5355\n1204A,119.491,32.215,20170930,26.23214285714285,3426.0,7367.0,2115982.528513791,529348.7991169957,14,1.3584134578704834,274.2451171875,294.9400329589844,101082.9453125,0.0048065851442515,232.26589965820312,-2.5628891307860613e-05,79.99821472167969,-1.354691505432129,-0.100488543510437,0.7437258958816528,5978\n1205A,119.43,32.1319,20170930,31.82142857142857,3439.0,7357.0,2113269.7844324512,518393.0431059132,31,1.359389066696167,274.7220153808594,294.959228515625,100919.890625,0.0045322352088987,229.53453063964844,-2.3734333808533847e-05,80.2655029296875,-1.3547805547714231,-0.111841008067131,0.7191041111946106,3449\n1206A,119.9,32.4867,20170930,26.267857142857142,3382.0,7432.0,2142405.826581883,569738.254758057,6,1.1949422359466553,270.47491455078125,294.6714172363281,101222.5234375,0.0050659365952014,226.00845336914065,-1.7355188902001828e-05,79.14617919921875,-1.194901704788208,-0.0098488703370094,0.6890369057655334,3342\n1207A,119.9219,32.4611,20170930,25.910714285714285,3386.0,7435.0,2145019.3928266745,567246.0861215233,4,1.1997579336166382,270.61602783203125,294.6947937011719,101217.8203125,0.0050469660200178,227.39183044433597,-1.805243664421141e-05,79.2297592163086,-1.1996891498565674,-0.01284337695688,0.6960756778717041,4071\n1209A,119.888,32.4639,20170930,29.96296296296296,3386.0,7430.0,2142080.254472749,566831.3798744513,3,1.2084710597991943,270.6824951171875,294.6990661621094,101215.5234375,0.0050628553144633,226.9369354248047,-1.8287893908564e-05,79.1782455444336,-1.208385944366455,-0.0143382484093308,0.6966283917427063,3474\n1210A,119.036,33.5981,20170930,30.17857142857143,3204.0,7294.0,2037268.8462026648,680675.1666842016,13,1.428489089012146,265.8642272949219,294.4609069824219,101152.5234375,0.0026826723478734,226.7217254638672,-2.1412635760498237e-05,76.24740600585938,-1.4247647523880005,0.1030856519937515,0.628836452960968,3455\n1211A,119.007,33.575,20170930,25.57142857142857,3208.0,7289.0,2035531.9066712616,677378.996134566,11,1.4735368490219116,266.1452941894531,294.5477294921875,101145.7421875,0.0028436605352908,229.04544067382807,-2.248898999823723e-05,76.2957763671875,-1.4701989889144895,0.0991258397698402,0.6490492820739746,2912\n1212A,118.989,33.6067,20170930,33.0,3203.0,7286.0,2033114.7288390736,680705.1361195798,14,1.4685124158859253,265.80078125,294.52593994140625,101141.2109375,0.0026884647086262,228.4878845214844,-2.26954525714973e-05,76.19100952148438,-1.464565396308899,0.1075963452458381,0.6408358216285706,4568\n1213A,119.135,33.5039,20170930,30.55357142857143,3219.0,7310.0,2048245.0530789571,671745.6460173256,7,1.3702961206436155,266.8351745605469,294.47760009765625,101193.515625,0.0032281503081321,228.4110870361328,-2.1737692804890685e-05,76.68385314941406,-1.368202805519104,0.0757134705781936,0.6249821186065674,3280\n1214A,119.0122,33.626999999999995,20170930,35.464285714285715,3200.0,7290.0,2034451.027695706,683554.1345761358,15,1.4360482692718506,265.23052978515625,294.4603881835937,101153.046875,0.002635640790686,226.0499267578125,-2.1272380763548423e-05,76.13621520996094,-1.4310704469680786,0.1194653660058975,0.628558337688446,3185\n1215A,120.118,33.4022,20170930,24.464285714285715,3236.0,7467.0,2132971.176929006,680817.913944045,2,1.168107986450195,260.6504821777344,294.27008056640625,101284.5234375,0.004329340532422,237.8021697998047,-1.5801759218447842e-05,77.41118621826172,-1.1525825262069702,0.1898149996995926,0.603003740310669,3141\n1216A,120.156,33.3942,20170930,21.714285714285715,3237.0,7473.0,2136370.7751475726,680713.2948569956,3,1.1691585779190063,260.0326843261719,294.3070983886719,101282.015625,0.0043701902031898,242.4174041748047,-1.611745756235905e-05,77.4148178100586,-1.1515038013458252,0.2024126648902893,0.642966628074646,3952\n1218A,120.225,33.3947,20170930,22.035714285714285,3237.0,7484.0,2142086.218445823,682273.6437086078,-1,1.175150752067566,258.7055053710937,294.3784484863281,101279.125,0.0043482459150254,251.46202087402344,-1.67293273989344e-05,77.39221954345703,-1.1523829698562622,0.2302017509937286,0.5759943127632141,6264\n1220A,118.293,33.9528,20170930,30.875,3148.0,7175.0,1965474.3080540376,706985.5840348046,23,1.5002923011779783,255.26495361328125,294.50299072265625,101027.9453125,0.0026451495941728,222.31900024414065,-2.879481871786993e-05,75.7161636352539,-1.4509363174438477,0.3816550672054291,0.6298061609268188,2937\n1222A,118.3214,33.9506,20170930,29.464285714285715,3148.0,7179.0,1967887.839589056,707296.607668954,20,1.4949074983596802,255.32992553710935,294.50128173828125,101032.5859375,0.0026367609389126,221.67059326171875,-2.7741676603909585e-05,75.70170593261719,-1.4461591243743896,0.3786453008651733,0.6583980917930603,3712\n1223A,120.211,30.21,20170930,27.82142857142857,3746.0,7482.0,2237566.415697688,313608.5251646338,10,1.355647325515747,312.5957946777344,297.25604248046875,100986.3203125,0.0025881347246468,317.2388916015625,-2.5691779228509404e-05,79.68299102783203,-0.9980180263519288,-0.9174637794494628,0.6786260008811951,2982\n1224A,120.063,30.2747,20170930,27.625,3736.0,7458.0,2222775.911325924,317695.502767676,6,1.267249345779419,315.4769287109375,296.79815673828125,100619.9453125,0.0027658357284963,297.84014892578125,-1.9015038560610265e-05,80.75148010253906,-0.8886538147926331,-0.9034462571144104,0.67457115650177,5044\n1225A,119.026,29.635,20170930,19.32,3838.0,7292.0,2151091.514427807,220953.570767773,107,1.3544583320617676,311.3507385253906,297.2001953125,98508.359375,0.0020563791040331,268.27496337890625,-4.743681711261161e-05,81.17023468017578,-1.01682448387146,-0.8947765827178955,0.6236245632171631,3797\n1226A,120.348,30.3058,20170930,35.07142857142857,3731.0,7504.0,2246547.922844542,327756.29557272664,10,1.3731186389923096,306.3652038574219,297.0773010253906,100981.125,0.0026757498271763,336.41632080078125,-3.321076655993238e-05,79.60824584960938,-1.1057623624801636,-0.8140912652015686,0.6784014105796814,2427\n1227A,120.127,30.2456,20170930,30.57142857142857,3741.0,7468.0,2229203.477546231,315795.7699364976,30,1.314361810684204,314.47271728515625,296.9399108886719,100672.40625,0.0026987725868821,307.3515319824219,-2.2500420527649112e-05,80.25448608398438,-0.9379711747169496,-0.9207371473312378,0.681045413017273,4475\n1228A,120.19,30.2692,20170930,31.57142857142857,3737.0,7478.0,2233957.952382809,319942.6136032786,16,1.312802791595459,312.2916259765625,297.0287170410156,100835.5,0.0026567121967673,313.5093078613281,-2.48905871558236e-05,79.94722747802734,-0.9711785912513732,-0.8833250999450684,0.6746840476989746,3269\n1229A,120.157,30.2897,20170930,36.42857142857143,3734.0,7473.0,2230477.998372984,321552.28702759754,14,1.2895257472991943,312.8246459960937,296.9354248046875,100767.453125,0.0026932272594422,308.486083984375,-2.2860267563373785e-05,80.20557403564453,-0.9458465576171876,-0.8764991760253906,0.6895003318786621,4077\n1230A,120.12,30.3119,20170930,32.69642857142857,3730.0,7467.0,2226601.379672677,323268.5589064147,9,1.2511959075927734,313.39825439453125,296.8392333984375,100724.4765625,0.0027322997339069,302.129638671875,-2.061666964436881e-05,80.5321273803711,-0.9091726541519164,-0.8595907688140869,0.6911615133285522,3162\n1231A,120.301,30.4183,20170930,27.222222222222214,3713.0,7496.0,2239065.4965220126,339629.7205091957,9,1.2593321800231934,306.2845153808594,296.8577880859375,100864.3359375,0.0027786404825747,322.57257080078125,-2.371854861848988e-05,80.0234146118164,-1.015181303024292,-0.7452009320259094,0.7016208171844482,2272\n1232A,120.27,30.1819,20170930,30.23076923076923,3751.0,7491.0,2243537.147009383,311721.35785506375,13,1.3574737310409546,311.6430053710937,297.3399963378906,100941.7421875,0.0025072812568396,323.910888671875,-2.7263438823865727e-05,79.43000793457031,-1.0145007371902466,-0.901955246925354,0.6654708981513977,2576\n1233A,120.088,30.1808,20170930,21.053571428571427,3751.0,7462.0,2227765.73183013,307453.8199660371,59,1.326979160308838,316.32598876953125,296.8829345703125,100342.1640625,0.0027169734239578,301.8705139160156,-1.9542958398233168e-05,80.35321044921875,-0.9164183735847472,-0.9597140550613404,0.6582724452018738,7591\n1235A,121.56,29.8208,20170930,23.57142857142857,3809.0,7698.0,2366794.504613512,300549.44622950815,4,0.8683264255523682,280.04736328125,297.4639587402344,100905.671875,0.0040150545537471,431.5755310058594,-5.094011066830717e-05,83.75956726074219,-0.8550174832344055,-0.151446059346199,0.4815081655979156,2889\n1237A,121.554,29.8906,20170930,20.16,3798.0,7697.0,2364059.258136594,308395.85565963626,7,0.9925432205200196,277.5923767089844,297.5981140136719,101168.9765625,0.0040357112884521,446.5881652832031,-5.948518082732335e-05,83.16609954833984,-0.98384827375412,-0.131089836359024,0.4914682805538177,2063\n1239A,121.633,29.7736,20170930,22.5,3816.0,7709.0,2374640.7055564644,296908.9195396631,14,0.9070624709129332,281.760498046875,297.3174133300781,100128.8359375,0.0039382353425025,449.6570434570313,-5.696135121979751e-05,83.45174407958984,-0.8880312442779541,-0.1848318725824356,0.4771434664726257,3311\n1240A,121.586,29.8633,20170930,22.60714285714285,3802.0,7702.0,2367705.2314566667,306040.8677309729,6,0.9992812871932985,278.444091796875,297.5612487792969,100953.4140625,0.003984740935266,452.5290222167969,-6.1014434322714806e-05,83.11168670654297,-0.9884561896324158,-0.1466883569955825,0.4983409345149994,2061\n1241A,121.524,29.8506,20170930,19.517857142857142,3804.0,7692.0,2362720.87829259,303094.51434422244,5,0.8650242686271667,278.8232421875,297.5258178710937,101211.46875,0.0040697497315704,424.5404052734375,-4.916474063065834e-05,83.82147979736328,-0.8547945618629456,-0.132639542222023,0.4973118007183075,2115\n1242A,120.634,28.0089,20170930,28.32142857142857,4099.0,7549.0,2341518.944681287,71385.39209791353,22,0.4789590537548065,313.981689453125,297.7216796875,99731.9140625,0.0033650188706815,320.2407531738281,-4.89212543470785e-05,83.49357604980469,-0.3446634709835052,-0.332579106092453,0.4566627442836761,3055\n1243A,120.677,27.9939,20170930,24.240740740740737,4101.0,7556.0,2345814.186876216,70701.43436280674,9,0.6390051245689392,311.3441162109375,297.9706115722656,99899.1015625,0.0031411435920745,351.8559875488281,-6.149241380626336e-05,82.74054718017578,-0.4797653555870056,-0.4220814704895019,0.4426919817924499,3383\n1244A,120.76,27.9747,20170930,23.44642857142857,4104.0,7570.0,2353809.713012583,70498.58135475723,16,1.0128697156906128,307.1806640625,298.4068908691406,100043.6953125,0.0026816609315574,413.6526489257813,-8.564392919652164e-05,81.47993469238281,-0.8070276975631714,-0.6120551228523254,0.4170023202896118,365\n1245A,120.671,28.0167,20170930,30.892857142857142,4097.0,7555.0,2344583.803014831,73156.7166222372,10,0.5784072875976562,312.15301513671875,297.81988525390625,99754.65625,0.003221672726795,341.2159729003906,-5.555897223530337e-05,83.07286834716797,-0.4288317859172821,-0.388147234916687,0.4320202171802521,2188\n1246A,120.598,30.0911,20170930,29.5,3766.0,7544.0,2274781.60601228,308825.0294016508,9,1.3732049465179443,300.05029296875,297.6533203125,100966.9453125,0.0028860878665,360.1908874511719,-3.00384454021696e-05,79.24069213867188,-1.1886695623397827,-0.6875728964805603,0.6094000339508057,2462\n1247A,120.605,29.9919,20170930,32.57692307692308,3781.0,7545.0,2278427.772793617,297592.9635975533,9,1.2145812511444092,302.04833984375,297.5733642578125,100523.5078125,0.0027835343498736,350.8309631347656,-2.045510700554587e-05,79.3624496459961,-1.0295205116271973,-0.6444339752197266,0.6363555788993835,2608\n1250A,120.07,30.8244,20170930,30.75,3648.0,7459.0,2206861.8158151745,381196.2617072524,22,1.254191756248474,286.06500244140625,296.3711242675781,100656.3359375,0.0025074125733226,347.8563842773437,-3.6006636946694925e-05,81.02770233154297,-1.2052323818206787,-0.3470040261745453,0.7109429836273193,5387\n1252A,120.744,30.7946,20170930,24.44642857142857,3653.0,7567.0,2265767.2640952403,393102.266280444,7,1.539283275604248,290.19287109375,296.7029724121094,101093.4375,0.0027613888960331,372.5875244140625,-3.4051103284582496e-05,81.04369354248047,-1.4447028636932373,-0.5312502384185791,0.7136842608451843,3784\n1253A,120.726,30.7478,20170930,28.339285714285715,3660.0,7564.0,2265663.101636063,387299.9193127023,7,1.5769834518432615,289.9903869628906,296.782958984375,101097.1953125,0.0028379946015775,373.2113952636719,-3.1138195481617004e-05,81.02176666259766,-1.4820005893707275,-0.539027750492096,0.642856776714325,3472\n1255A,121.273,28.6459,20170930,22.303571428571423,3997.0,7652.0,2378627.8908326807,159367.0242190854,129,0.3587178289890289,330.2470703125,298.0814819335937,100267.0546875,0.0031132698059082,454.2738952636719,-2.1244446543278173e-05,80.52801513671875,-0.1780417561531067,-0.3114154934883117,0.4420929849147796,5371\n1256A,121.419,28.6542,20170930,25.19642857142857,3995.0,7675.0,2391266.1007089866,163857.28304633783,11,0.5751253962516785,329.50341796875,298.41766357421875,100462.4609375,0.0026228828355669,502.3004455566406,-3.085555727011524e-05,80.59326171875,-0.2919068336486816,-0.4955397546291351,0.4434174299240112,4540\n1257A,121.377,28.5773,20170930,24.87037037037037,4008.0,7668.0,2389968.264172279,154068.1303886213,18,0.5302958488464355,332.1028137207031,298.4486694335937,100493.8046875,0.0026127945166081,494.0671081542969,-2.2574133254238404e-05,80.4113998413086,-0.2481549531221389,-0.4686500132083893,0.426891565322876,2196\n1262A,119.647,29.077,20170930,29.017857142857142,3928.0,7392.0,2221958.577362243,170624.37600593886,45,1.0519602298736572,288.2572631835937,298.73052978515625,99485.109375,0.0018147055525332,332.8915100097656,-1.77323763637105e-05,72.00274658203125,-0.9990222454071044,-0.3295069932937622,0.5831979513168335,4038\n1263A,119.686,29.1029,20170930,23.517857142857142,3924.0,7398.0,2224637.5050951755,174478.82997693727,44,1.0916693210601809,289.3238525390625,298.73248291015625,99343.9140625,0.001648326171562,343.3100280761719,-1.77440724655753e-05,71.87442016601562,-1.0301885604858398,-0.3611834943294525,0.5831891298294067,3643\n1264A,118.871,28.9404,20170930,23.796296296296298,3950.0,7267.0,2157297.521946271,137645.06046697436,70,1.328250527381897,304.4349975585937,298.9164428710937,99671.6875,0.0016029642429202,266.336669921875,-1.4661036402685568e-05,71.19535827636719,-1.0955466032028198,-0.7510173320770264,0.5752400159835815,3417\n1265A,118.871,28.9664,20170930,23.589285714285715,3945.0,7267.0,2156556.979304068,140633.11076203405,67,1.3559587001800537,305.5145568847656,298.8895568847656,99835.2421875,0.0016376564744859,271.4932861328125,-1.5062605598359369e-05,71.15137481689453,-1.1037579774856567,-0.787618100643158,0.5823746919631958,3570\n1266A,118.855,28.9745,20170930,29.964285714285715,3944.0,7265.0,2154909.455663348,141213.05265773484,69,1.3735191822052002,305.94842529296875,298.86700439453125,99767.8203125,0.0016148738795891,273.2461853027344,-1.5094025911821518e-05,71.0584487915039,-1.1119791269302368,-0.8062613606452942,0.5937710404396057,3168\n1267A,119.914,28.4514,20170930,19.678571428571427,4028.0,7434.0,2264081.254243376,105041.452506953,61,0.5495090484619141,261.8539123535156,298.1361083984375,98288.9140625,0.0011013235198333,345.04620361328125,-1.0952430784527678e-05,73.92066192626953,-0.543961226940155,0.0778869614005088,0.5497349500656128,2975\n1268A,119.93,28.4586,20170930,18.982142857142858,4027.0,7437.0,2265290.3686149265,106233.88491240588,56,0.54912269115448,261.00225830078125,298.1031494140625,98185.2890625,0.00106053694617,350.9551696777344,-1.086839893105207e-05,73.94261169433594,-0.5423619151115417,0.0859028548002243,0.5378594994544983,4351\n1269A,119.879,28.4231,20170930,20.703703703703702,4032.0,7429.0,2261806.6439708336,100997.9407244854,91,0.55184006690979,262.38446044921875,298.1277770996094,98415.78125,0.0012324408162385,330.7015686035156,-1.1199605069123209e-05,74.15747833251953,-0.5469695329666138,0.0731559172272682,0.4836002290248871,7630\n1270A,117.196,31.7848,20170930,30.277777777777786,3495.0,6999.0,1932792.3246045213,432026.4364348845,34,1.3268224000930786,283.5852355957031,295.4716186523437,100876.578125,0.0040517775341868,204.9820556640625,-1.6634061466902494e-05,79.92709350585938,-1.2897166013717651,-0.3115906417369842,0.8409164547920227,3885\n1271A,117.307,31.8766,20170930,33.5,3480.0,7017.0,1939820.6420691945,444912.7486127748,20,1.3782291412353516,284.597412109375,295.4716186523437,100992.1015625,0.0043249130249023,210.6841583251953,-2.159085488528945e-05,79.90122985839844,-1.3337594270706177,-0.3472769260406494,0.8016369342803955,2777\n1272A,117.259,31.8706,20170930,28.153846153846157,3481.0,7009.0,1935879.4757875,443266.7770239177,22,1.3310322761535645,283.444580078125,295.3890380859375,100912.21875,0.004256279207766,204.5763092041016,-1.7877586287795566e-05,79.87889862060547,-1.294572114944458,-0.3094025552272796,0.8081594109535217,3829\n1273A,117.16,31.9051,20170930,30.30357142857143,3475.0,6994.0,1926493.3234138396,445343.0046331868,29,1.229359745979309,280.2698974609375,295.1448974609375,100721.1171875,0.0042688171379268,198.12733459472656,-1.6967951523838565e-05,80.06124877929688,-1.2096753120422363,-0.2191141247749328,0.8077132105827332,4791\n1274A,117.25,31.8572,20170930,34.964285714285715,3483.0,7008.0,1935470.0174502383,441527.6053778212,29,1.3370673656463623,283.4927062988281,295.40936279296875,100912.7578125,0.0042254514992237,204.3274688720703,-1.736671219987329e-05,79.86341857910156,-1.300180435180664,-0.3118976056575775,0.7825120687484741,3854\n1275A,117.266,31.9438,20170930,34.55357142857143,3469.0,7011.0,1934510.402517204,451937.70371746575,33,1.2974473237991333,282.1523742675781,295.241943359375,100802.671875,0.0045642773620784,201.7524871826172,-1.806983891583513e-05,79.95804595947266,-1.2683874368667605,-0.2730619609355926,0.7945670485496521,3844\n1276A,117.336,31.8585,20170930,33.7037037037037,3483.0,7022.0,1942786.8466519855,443376.3136578094,18,1.442905306816101,285.50469970703125,295.5798645019531,101016.59375,0.0043164175003767,216.7326202392578,-2.495100670785177e-05,79.8971939086914,-1.3904168605804443,-0.3856379389762878,0.8059608936309814,3753\n1277A,117.302,31.7956,20170930,31.625,3493.0,7016.0,1941573.347275026,435374.77442086674,21,1.4862350225448608,285.4223327636719,295.6993408203125,101020.5390625,0.0041482155211269,216.53370666503903,-2.3620017600478604e-05,79.82758331298828,-1.4327398538589478,-0.3951594829559326,0.8810935616493225,4660\n1278A,117.278,31.7386,20170930,28.892857142857142,3502.0,7012.0,1941052.0114874728,428259.45214804943,18,1.5190129280090332,285.5849304199219,295.8852844238281,100948.5546875,0.0040521691553294,215.1368560791016,-2.113936352543533e-05,79.7772216796875,-1.4631859064102173,-0.4080285429954529,0.825056791305542,4754\n1279A,117.124,31.8516,20170930,26.07142857142857,3484.0,6988.0,1924845.5376938405,438399.7066867983,48,1.2151055335998535,280.58856201171875,295.18511962890625,100722.9296875,0.0041110450401902,199.04864501953125,-1.6630214304313995e-05,80.12129211425781,-1.194426417350769,-0.2232196927070617,0.8109028339385986,3437\n1280A,119.389,26.0542,20170930,21.796296296296298,4411.0,7350.0,2286633.3790439707,-180241.46351669185,350,0.7719701528549194,292.8648681640625,299.1181640625,99302.34375,0.001949725090526,315.4844970703125,-4.12878034694586e-05,84.83885192871094,-0.7113291025161743,-0.2999147176742553,0.2982362806797027,7177\n1282A,119.303,26.0392,20170930,26.05357142857143,4414.0,7336.0,2279165.491863024,-183941.4839055712,18,0.684053897857666,283.4864501953125,299.16217041015625,99765.6796875,0.0018385672010481,283.149658203125,-2.8206073693581857e-05,84.76622772216797,-0.6651996374130249,-0.1594965755939483,0.3160490989685058,3779\n1283A,119.299,26.1092,20170930,23.73214285714285,4403.0,7336.0,2276792.4120324277,-176089.9945079648,15,0.7078321576118469,283.55584716796875,298.95086669921875,99397.1640625,0.0019232496852055,267.3086242675781,-2.4985987693071365e-05,85.2893295288086,-0.6881222128868103,-0.1658741980791092,0.3736386895179748,3394\n1284A,119.268,26.0797,20170930,21.214285714285715,4407.0,7331.0,2274791.331131888,-180156.3501682775,26,0.6942675113677979,279.68951416015625,299.0099182128906,99468.640625,0.0018437416292726,260.6051940917969,-2.1341609681257975e-05,85.12268829345703,-0.6843692660331726,-0.116816371679306,0.3567016720771789,4026\n1285A,119.315,26.0753,20170930,29.14814814814815,4408.0,7338.0,2279232.8802138544,-179566.5618907104,12,0.7003622651100159,284.9654541015625,299.0963134765625,99689.6484375,0.0019049673574045,279.5573425292969,-2.8392827516654503e-05,85.04197692871094,-0.6766169667243958,-0.1808226257562637,0.3528990149497986,3230\n1286A,118.1569444,24.81805556,20170930,25.04166666666667,4609.0,7153.0,2207017.740680397,-348510.3697484472,197,0.5244957208633423,275.9715576171875,298.5744934082031,98058.0078125,0.0016173886833712,196.63487243652344,-1.714450991130434e-05,83.6805191040039,-0.521652340888977,-0.0545401312410831,0.3235001862049103,5532\n1288A,118.0636111,24.44583333,20170930,32.19642857142857,4669.0,7138.0,2208356.454600408,-392712.3158426643,0,1.0542179346084597,265.414794921875,300.1365051269531,100400.5859375,0.00126045756042,301.1005249023437,-5.976060492685065e-05,83.84870910644531,-1.0508402585983276,0.0843217298388481,0.3315872848033905,3482\n1290A,115.893,28.6844,20170930,29.87037037037037,3991.0,6791.0,1898924.7872917885,46657.377652659125,28,1.8689180612564087,346.63385009765625,298.5478210449219,100631.2890625,0.001265570288524,246.36569213867188,-3.066178396693431e-05,77.98784637451172,-0.4321986734867096,-1.8182570934295652,0.6546775102615356,2657\n1291A,115.8886,28.6839,20170930,23.125,3991.0,6790.0,1898543.40109039,46514.543787555056,29,1.8631945848464968,346.5422668457031,298.5287475585937,100578.421875,0.0012598305474966,245.6834716796875,-3.031656888197176e-05,77.99799346923828,-0.433773010969162,-1.8119975328445437,0.6436752080917358,2289\n1292A,115.813,28.7442,20170930,17.910714285714285,3981.0,6778.0,1890275.791973675,52030.18964531628,41,1.6934847831726074,348.6966247558594,298.0344543457031,99663.03125,0.0012410921044647,229.17214965820312,-2.5914037905749865e-05,78.81051635742188,-0.3320743143558502,-1.6606075763702393,0.6577339768409729,4261\n1293A,115.973,28.6969,20170930,31.964285714285715,3989.0,6804.0,1905772.0900439916,49651.3553040377,17,1.9389704465866089,347.8431396484375,298.7287292480469,100963.0390625,0.0013017759192734,254.2563018798828,-3.5175089578842744e-05,77.9446792602539,-0.4084890484809875,-1.8954533338546755,0.639722466468811,2023\n1294A,115.852,28.6869,20170930,28.57142857142857,3990.0,6784.0,1895192.2573039967,46154.86127522885,19,1.818863034248352,346.28192138671875,298.3819885253906,100222.0546875,0.001228796551004,240.8368682861328,-2.8228239898453467e-05,78.12223052978516,-0.4314853847026825,-1.766941785812378,0.6552711725234985,3107\n1295A,115.892,28.6425,20170930,33.32142857142857,3997.0,6791.0,1899881.024234948,41794.03185211431,23,1.9271820783615112,345.05908203125,298.71636962890625,100764.8046875,0.0012446210021153,250.33058166503903,-3.0701467039762065e-05,77.64754486083984,-0.4970296621322632,-1.8619861602783203,0.6381692886352539,3274\n1296A,115.742,28.7994,20170930,29.30769230769231,3972.0,6767.0,1882555.1603543656,57052.94511279395,188,1.527467966079712,351.7757568359375,297.681884765625,99136.1953125,0.0012374614598229,216.2172698974609,-2.1925125111010857e-05,79.5697021484375,-0.2186340242624282,-1.5117398500442505,0.6444523334503174,7586\n1298A,115.931,28.6844,20170930,30.625,3991.0,6797.0,1902326.1841922996,47392.41275093893,22,1.9054104089736936,347.10382080078125,298.65673828125,100881.765625,0.001291309366934,250.4590606689453,-3.273305992479436e-05,77.92698669433594,-0.4254184067249298,-1.8573119640350344,0.6441571712493896,3242\n1299A,116.988,36.6114,20170930,32.339285714285715,2722.0,6966.0,1785985.8832936925,994763.683666896,134,1.5870225429534912,195.3897247314453,294.6822204589844,99986.734375,0.0004053466254845,166.40089416503906,-1.2202490324852988e-05,65.8123550415039,-0.4211570918560028,1.530120015144348,0.6274726986885071,4052\n1300A,116.93,36.67,20170930,32.87037037037037,2713.0,6957.0,1779781.1956137684,1000637.8228765936,30,1.645540714263916,193.0872039794922,294.9873352050781,100442.65625,0.0003930074162781,167.6527557373047,-1.2519573829194997e-05,63.30562973022461,-0.3725949227809906,1.602802872657776,0.6301270723342896,4475\n1301A,117.114,36.6739,20170930,25.55555555555556,2712.0,6986.0,1794356.74439847,1004445.2419722626,85,1.6275807619094849,192.99459838867188,294.6531982421875,99785.4921875,0.0003729610180016,164.76663208007812,-1.1071330845879856e-05,65.13797760009766,-0.3659660816192627,1.5859029293060305,0.6026102900505066,2709\n1302A,116.989,36.6872,20170930,33.55357142857143,2710.0,6966.0,1784026.6637681874,1003740.994475029,29,1.6535265445709229,192.47560119628903,294.9925537109375,100406.0,0.0003817663236986,168.2255401611328,-1.2638951375265606e-05,63.45490264892578,-0.3571910560131073,1.6144858598709106,0.6375160217285156,2650\n1303A,117.0684,36.6868,20170930,34.57142857142857,2710.0,6979.0,1790370.9167291156,1005137.8969206832,39,1.6446746587753296,192.58639526367188,294.83990478515625,100120.8671875,0.000373877788661,166.28683471679688,-1.1687198821164202e-05,64.29451751708984,-0.3583831191062927,1.6051530838012695,0.6206908226013184,2653\n1304A,116.943,36.6489,20170930,39.44444444444444,2716.0,6959.0,1781385.1031714054,998379.1373206386,38,1.628341794013977,193.85597229003903,294.9056396484375,100328.953125,0.0003980627516284,167.28097534179688,-1.2434073141776024e-05,64.04363250732422,-0.3899474442005157,1.5809611082077026,0.6449208855628967,3050\n1305A,117.049,36.6622,20170930,38.46153846153846,2714.0,6976.0,1789487.1215658952,1001877.217053345,70,1.621851086616516,193.4418792724609,294.7584228515625,100009.984375,0.0003832641814369,166.16845703125,-1.182512005470926e-05,64.90633392333984,-0.3770025968551636,1.5774251222610474,0.6735424399375916,2684\n1306A,116.734,36.5336,20170930,39.24,2735.0,6925.0,1767762.8439382664,980973.837016238,54,1.619231104850769,199.53631591796875,294.9503173828125,100449.4375,0.0004734648973681,166.38076782226562,-1.261329362023389e-05,64.35039520263672,-0.5414624214172363,1.5260169506072998,0.679050087928772,4364\n1308A,120.3905,36.1851,20170930,24.535714285714285,2790.0,7510.0,2069799.1065319316,1011370.8825317224,28,1.668187975883484,207.93263244628903,295.5172424316406,100767.6484375,0.0014148999471217,360.0018615722656,-9.472852252656594e-05,71.38862609863281,-0.7814134359359741,1.473853588104248,0.5012001991271973,3268\n1314A,120.1964,36.3083,20170930,26.017857142857142,2771.0,7479.0,2050541.989239961,1021729.4567898654,5,1.1382362842559814,207.79608154296875,294.47589111328125,101246.6171875,0.0012500422308221,248.6547698974609,-3.9733335142955184e-05,71.21983337402344,-0.5307748913764954,1.0069061517715454,0.49063441157341,4167\n1315A,120.4001,36.2403,20170930,20.46153846153846,2782.0,7512.0,2068855.455110736,1018035.3542174292,23,1.449313044548035,207.0031280517578,295.176513671875,100797.5625,0.0013503014342859,336.0102233886719,-8.109699410852045e-05,71.71273040771484,-0.6580268740653992,1.291320562362671,0.509928822517395,4273\n1316A,113.681,34.7545,20170930,42.44444444444444,3019.0,6437.0,1563346.650902707,718598.0309264403,101,1.0586878061294556,180.3064727783203,294.9066467285156,99997.2578125,0.0016372768441215,122.35706329345705,-1.363683713861974e-05,74.75911712646484,-0.0056658084504306,1.0586726665496826,0.7886640429496765,2663\n1317A,113.641,34.7745,20170930,45.0,3016.0,6431.0,1559584.4686567246,720331.927855063,103,1.064800500869751,182.0580139160156,294.9125061035156,100002.6171875,0.0016073340084403,118.6291961669922,-1.34925130623742e-05,74.56558990478516,-0.038235668092966,1.064113736152649,0.7305357456207275,2033\n1318A,113.675,34.8019,20170930,44.55357142857143,3012.0,6436.0,1561770.203375694,724118.4702023983,92,1.0720500946044922,182.9176788330078,295.0543212890625,100276.9765625,0.0015555499121546,120.52024841308594,-1.396411516907392e-05,73.96482849121094,-0.054567277431488,1.0706604719161987,0.8151289820671082,3048\n1319A,113.564,34.802,20170930,40.910714285714285,3012.0,6418.0,1552596.174576395,722371.2195833377,112,1.0432854890823364,186.36378479003903,294.8122253417969,99890.3828125,0.0015770501922816,111.1897430419922,-1.304992019868223e-05,74.3700180053711,-0.1156343892216682,1.0368573665618896,0.7964991927146912,2913\n1320A,113.727,34.7187,20170930,43.94444444444444,3025.0,6444.0,1567967.7062967168,715090.1755472538,100,1.0403069257736206,2.4250221252441406,294.8486328125,99880.1484375,0.0016969428397715,125.92410278320312,-1.3791773199045563e-05,74.8896713256836,0.0440162904560565,1.0393753051757812,0.7686389684677124,2978\n1321A,113.734,34.719,20170930,41.92592592592592,3025.0,6445.0,1568539.8240689775,715237.432513614,99,1.036928415298462,2.325137138366699,294.8522644042969,99893.8671875,0.0016997897764667,126.43990325927734,-1.3840092833561355e-05,74.85977172851562,0.0420675389468669,1.0360747575759888,0.7696051001548767,2743\n1322A,113.5991,34.7496,20170930,42.410714285714285,3020.0,6424.0,1556686.1971422844,716717.194347163,125,1.0556741952896118,181.70724487304688,294.7122497558594,99658.7578125,0.0016724321758374,115.5785903930664,-1.2915552360937e-05,75.26145935058594,-0.0314511209726333,1.0552055835723877,0.7543819546699524,2197\n1323A,113.6356,34.7538,20170930,43.94444444444444,3019.0,6430.0,1559608.9275199582,717793.6263435954,107,1.06074321269989,181.06222534179688,294.8244323730469,99840.6640625,0.001645372249186,118.62105560302734,-1.3278007827466354e-05,74.96051788330078,-0.0196643136441707,1.060560941696167,0.7484450936317444,1973\n1324A,113.6113,34.9162,20170930,36.96428571428572,2993.0,6426.0,1553909.9835182982,736654.428241981,93,1.027700424194336,192.2316131591797,295.017333984375,100233.59375,0.0012821053387597,112.21641540527344,-1.4496522453555372e-05,71.78597259521484,-0.2177266478538513,1.0043721199035645,0.7004439830780029,5849\n1325A,114.3672,30.5719,20170930,28.074074074074076,3689.0,6547.0,1718247.761404337,237929.37917637927,27,1.396131157875061,319.4315795898437,296.9126281738281,100832.0078125,0.002378371078521,189.5238800048828,-3.735293284989893e-05,78.07747650146484,-0.9080577492713928,-1.06047785282135,0.9208335280418396,3873\n1326A,114.2511,30.5514,20170930,26.44642857142857,3692.0,6528.0,1708555.2332756524,233510.49010548496,31,1.4443596601486206,320.2325439453125,296.8956298828125,100811.5546875,0.0023257117718458,191.5663146972656,-3.754382123588584e-05,77.57928466796875,-0.923998475074768,-1.1101359128952026,0.8699766993522644,3449\n1327A,114.2836,30.6197,20170930,29.089285714285715,3681.0,6533.0,1709816.336427084,242054.5322118225,29,1.448230862617493,320.539794921875,296.8075866699219,100828.3046875,0.0024746733251959,185.79710388183597,-3.464208566583693e-05,77.82424926757812,-0.9204925894737244,-1.1180634498596191,0.9055846929550172,2846\n1328A,114.3006,30.5494,20170930,24.5,3692.0,6536.0,1712938.320322411,234138.7098458337,38,1.429473876953125,319.74383544921875,296.9376525878906,100830.5078125,0.0023246549535542,191.3456573486328,-3.771595220314339e-05,77.78270721435547,-0.9238133430480956,-1.0908548831939695,0.8986007571220398,2904\n1329A,114.4272,30.6103,20170930,35.25925925925926,3682.0,6556.0,1722603.1148952362,243464.66642220612,31,1.3746761083602903,319.9482421875,296.8206787109375,100834.421875,0.0025156212504953,185.7701416015625,-3.662090966827236e-05,78.30487823486328,-0.8846516609191895,-1.052200436592102,0.8931601047515869,4155\n1330A,114.1525,30.4753,20170930,26.92857142857143,3704.0,6512.0,1701670.8348510296,222910.61045734969,29,1.428921818733215,320.5721435546875,296.8281555175781,100752.34375,0.0022041872143745,191.1546936035156,-3.627641490311362e-05,77.55826568603516,-0.9075971245765686,-1.1036689281463623,0.9085474610328674,2994\n1331A,114.3008,30.5947,20170930,28.339285714285715,3685.0,6536.0,1711902.909485892,239433.4756476612,26,1.438359022140503,320.23614501953125,296.8779602050781,100840.0625,0.002418499905616,187.77081298828125,-3.5911445593228564e-05,77.84915161132812,-0.9200894236564636,-1.1055822372436523,0.8948997259140015,2946\n1332A,114.3894,30.4822,20170930,28.25,3703.0,6550.0,1722285.781935569,227843.89636621997,28,1.357701539993286,317.19708251953125,297.0166015625,100803.734375,0.0021960132289677,195.7738494873047,-3.961726542911492e-05,78.13240814208984,-0.9225996136665344,-0.996074080467224,0.9030267000198364,3513\n1333A,114.2131,30.6414,20170930,28.60714285714285,3677.0,6522.0,1703143.1188627884,243365.60389965703,21,1.4669228792190552,320.9674072265625,296.6933898925781,100774.625,0.0025203605182468,182.6246032714844,-3.1970892450772226e-05,77.72787475585938,-0.9238951206207277,-1.1394211053848269,0.8980964422225952,3906\n1334A,113.8531,30.2997,20170930,23.19230769230769,3732.0,6464.0,1679384.9849878596,197249.36312211596,21,1.4167084693908691,321.8775329589844,296.578857421875,100894.5625,0.0020911726169288,179.1275634765625,-2.4762015527812764e-05,78.43673706054688,-0.8746786117553711,-1.1144505739212036,0.9043399691581726,2829\n1335A,113.0833,28.2325,20170930,34.625,4063.0,6341.0,1656447.9763578747,-56542.64937391733,58,1.339655876159668,353.24560546875,298.4472961425781,100462.875,0.0012595634907484,212.4099578857422,-1.771892493707128e-05,77.9996566772461,-0.1576802730560302,-1.3303438425064087,0.8240857124328613,3486\n1336A,112.8872,28.2189,20170930,30.61111111111111,4065.0,6310.0,1638975.7085505568,-61410.051136520575,59,1.4633246660232544,356.39764404296875,298.136962890625,100212.1171875,0.0015359076205641,224.089599609375,-1.9019615137949583e-05,79.02548217773438,-0.0920742899179458,-1.4604250192642212,0.8165290355682373,4478\n1337A,113.0792,28.2053,20170930,37.32142857142857,4067.0,6341.0,1656664.2395844054,-59769.08318188609,44,1.3402694463729858,353.4568786621094,298.4708251953125,100449.84375,0.0012483793543651,213.32228088378903,-1.788266672519967e-05,77.92130279541016,-0.1528440862894058,-1.331525802612305,0.8068019151687622,4350\n1338A,112.9394,28.19,20170930,37.875,4070.0,6318.0,1644325.0226819566,-63893.44357573405,102,1.4423069953918457,355.9244079589844,298.2251892089844,100227.2578125,0.0014633761020377,223.4197235107422,-1.900755705719348e-05,78.61924743652344,-0.1026390343904495,-1.438650369644165,0.7912625670433044,6009\n1339A,112.9956,28.1442,20170930,32.94444444444444,4077.0,6327.0,1650403.3390680538,-68267.65040818707,83,1.4191439151763916,354.9320678710937,298.32330322265625,100221.6171875,0.001376518397592,223.0689697265625,-1.9152175809722397e-05,78.1004638671875,-0.1254895478487014,-1.4135847091674805,0.7901551723480225,4278\n1340A,112.9792,28.2597,20170930,30.642857142857142,4059.0,6325.0,1646434.86022051,-55134.31895207711,30,1.4088407754898071,354.57635498046875,298.2648620605469,100400.484375,0.0014052026672288,219.14144897460935,-1.8635353626450524e-05,78.65272521972656,-0.1332878023386001,-1.4025214910507202,0.8337357044219971,3318\n1341A,113.0014,28.1944,20170930,38.660714285714285,4069.0,6328.0,1649849.6950502428,-62343.35904366493,48,1.397444725036621,354.94024658203125,298.3222351074219,100341.203125,0.0013665587175637,220.83750915527344,-1.885737401607912e-05,78.27059936523438,-0.1233727931976318,-1.3919881582260132,0.7995733022689819,2443\n1342A,112.9844,28.1178,20170930,27.339285714285715,4081.0,6325.0,1649954.816841983,-71519.67839529835,90,1.4381471872329712,355.05535888671875,298.3134765625,100162.1484375,0.0013924750965088,224.41217041015625,-1.9271163182565942e-05,78.08033752441406,-0.1240879222750663,-1.432783842086792,0.8359660506248474,3911\n1343A,112.8908,28.1308,20170930,28.48214285714285,4079.0,6311.0,1641185.1358563092,-71578.35934531335,45,1.4975873231887815,356.22869873046875,298.1968078613281,100126.328125,0.001501674298197,226.9051971435547,-1.918427915370557e-05,78.69493865966797,-0.0986378341913223,-1.494335412979126,0.8041316270828247,2272\n1344A,112.9958,28.3586,20170930,38.61111111111112,4043.0,6327.0,1645810.517767697,-43370.10594440412,69,1.4170857667922974,352.7348937988281,298.0967102050781,100166.796875,0.0014166574692353,212.3898468017578,-1.819894532673061e-05,79.2810287475586,-0.1793299317359924,-1.4056929349899292,0.8264482021331787,6266\n1345A,113.235,23.1422,20170930,38.57142857142857,4877.0,6366.0,1779926.644344306,-638513.0766011232,10,1.2343451976776123,220.2242889404297,300.6181030273437,100823.75,0.0046084919013082,131.33096313476562,-2.2290831111604348e-05,80.11236572265625,-0.7970976233482361,0.942466676235199,0.5793535709381104,2309\n1346A,113.261,23.105,20170930,35.714285714285715,4883.0,6370.0,1783229.3119852962,-642265.1455298301,12,1.2586511373519895,219.14117431640625,300.6250305175781,100855.15625,0.0046497131697833,134.9663848876953,-2.3617585611646064e-05,80.3735580444336,-0.7944828271865845,0.9762170314788818,0.5760529041290283,1897\n1348A,113.348,23.0916,20170930,34.535714285714285,4885.0,6384.0,1791913.6739360788,-642203.4202702653,2,1.2299845218658447,218.81585693359372,300.5331726074219,100799.0,0.0048897550441324,137.0264434814453,-2.488112841092516e-05,81.37643432617188,-0.7709589004516602,0.9583758115768432,0.581176221370697,3939\n1349A,113.433,23.105,20170930,34.30357142857143,4883.0,6397.0,1799828.9540193873,-639129.114440192,4,1.1796022653579712,219.00192260742188,300.4352111816406,100715.515625,0.0050712255761027,136.1873321533203,-2.5113511583185755e-05,82.37739562988281,-0.7423601746559143,0.9167130589485168,0.5695996284484863,3104\n1350A,113.352,22.9477,20170930,42.57142857142857,4908.0,6384.0,1795385.0410857117,-658456.8606221963,5,1.2817835807800293,215.5389862060547,300.64422607421875,100925.6171875,0.0046791406348347,150.3164825439453,-2.9254413675516844e-05,81.09846496582031,-0.7450262308120728,1.0430268049240112,0.574161946773529,3472\n1351A,113.215,23.3917,20170930,30.07142857142857,4837.0,6362.0,1772680.8072781705,-610527.513703738,8,0.8853402733802795,231.5756683349609,300.5009765625,100720.140625,0.00409860862419,110.59951782226562,-1.5143100426939782e-05,80.64656829833984,-0.6935871243476868,0.5502402186393738,0.5748196840286255,2267\n1352A,113.26,23.1331,20170930,38.35714285714285,4879.0,6370.0,1782533.0172905405,-639093.1125376975,18,1.238101840019226,219.8590087890625,300.5914001464844,100803.5,0.0046697882935404,132.6475830078125,-2.2802087187301368e-05,80.41214752197266,-0.7934807538986206,0.9504128694534302,0.5980209112167358,2979\n1353A,113.568,23.2783,20170930,31.464285714285715,4856.0,6419.0,1809092.018460161,-616977.6771734342,31,0.9003332853317261,223.64028930664065,299.9286193847656,99856.6015625,0.0050485907122492,107.73760986328124,-1.6865547877387144e-05,83.90235137939453,-0.6213310360908508,0.6515733003616333,0.5832920074462891,4770\n1354A,113.281,23.1569,20170930,36.35714285714285,4875.0,6373.0,1784050.704878677,-636009.7075422793,42,1.2135688066482544,220.5985107421875,300.523193359375,100713.75,0.0047419494949281,130.23509216308594,-2.20841211557854e-05,80.68782806396484,-0.7897160649299622,0.92146497964859,0.5703880190849304,7282\n1355A,113.589,23.5538,20170930,37.48214285714285,4811.0,6422.0,1805120.3179413253,-585289.9502424741,32,0.6594160199165344,237.0113220214844,299.8922119140625,99882.9453125,0.0045427135191857,83.36259460449219,-9.716108252177946e-06,86.3334732055664,-0.5530931949615479,0.3590507209300995,0.5813385248184204,4840\n1356A,114.1063,22.5545,20170930,26.642857142857142,4971.0,6505.0,1877026.3238815232,-688883.0504781061,17,1.3221194744110107,231.4691925048828,299.9430236816406,100009.09375,0.0058442107401788,219.73336791992188,-4.4154305214760825e-05,87.67890930175781,-1.0342369079589844,0.823622465133667,0.4610685110092163,4346\n1357A,114.117,22.5625,20170930,30.75,4970.0,6507.0,1877886.0175927184,-687774.2830896026,19,1.3026832342147827,231.77166748046875,299.9335632324219,99993.9765625,0.0058895736001431,219.3447723388672,-4.438178802956827e-05,87.81111145019531,-1.023302435874939,0.8061237931251526,0.4531068205833435,3609\n1360A,114.263,22.5908,20170930,23.07142857142857,4966.0,6530.0,1891409.110164907,-681775.1348554111,53,1.3934073448181152,231.5124664306641,300.0649719238281,100038.8203125,0.005078800022602,229.50135803222656,-5.092252467875369e-05,88.84471893310547,-1.0906575918197632,0.8672081828117371,0.440925121307373,5256\n1361A,114.24,22.7267,20170930,27.535714285714285,4944.0,6526.0,1886131.9644586565,-666852.0938473677,45,1.1718438863754272,231.4091796875,299.84716796875,100110.8984375,0.0050802147015929,180.7998504638672,-3.455448313616216e-05,89.67001342773438,-0.9159176349639891,0.730967104434967,0.4729956388473511,4592\n1365A,114.297,22.5978,20170930,24.80357142857143,4964.0,6536.0,1894547.138446405,-680328.9710565641,37,1.413591384887695,231.4353790283203,300.1596069335937,100095.0546875,0.0048094657249748,236.67581176757807,-5.4925800213823095e-05,88.26358032226562,-1.105271577835083,0.8812577724456787,0.4333244562149048,4283\n1366A,114.085,22.75,20170930,34.142857142857146,4940.0,6502.0,1870610.8124259731,-667179.3381729692,36,1.1965075731277466,228.96945190429688,299.8521728515625,100277.2421875,0.0053486013785004,167.02210998535156,-3.0493401936837472e-05,87.94849395751953,-0.9025772213935852,0.785483717918396,0.4849934577941894,4717\n1368A,113.495,22.2294,20170930,28.19642857142857,5023.0,6407.0,1824697.3375276867,-737140.7579818078,13,1.8788737058639529,226.06805419921875,300.9378662109375,100723.890625,0.0038213809020817,309.3126220703125,-7.222592103062198e-05,83.32666015625,-1.3530668020248413,1.3036013841629028,0.4364563226699829,2191\n1370A,113.299,22.2281,20170930,28.535714285714285,5024.0,6376.0,1805613.1631006417,-740908.4287223646,6,1.676986813545227,225.93878173828125,300.8061828613281,100655.296875,0.0042373808100819,283.2859191894531,-6.757515802746639e-05,83.35218811035156,-1.2050502300262451,1.1662498712539673,0.4669407308101654,3302\n1371A,113.134,23.0048,20170930,38.160714285714285,4899.0,6349.0,1773092.539675008,-655937.0210990878,3,1.3679533004760742,216.30311584472656,300.75457763671875,100841.59375,0.0040505183860659,141.28282165527344,-2.650001079018693e-05,78.7671127319336,-0.8098857402801514,1.1024433374404907,0.5778859853744507,3528\n1372A,113.105,23.0395,20170930,42.017857142857146,4894.0,6345.0,1769555.097814613,-652521.0692278756,9,1.3179271221160889,217.1355743408203,300.70513916015625,100784.5546875,0.0041464325040578,138.0128173828125,-2.5497021852061152e-05,78.4610595703125,-0.7956167459487915,1.050678849220276,0.579347550868988,2144\n1373A,113.144,23.0467,20170930,35.96296296296296,4893.0,6351.0,1773170.864795451,-651000.6642423358,3,1.329563856124878,217.3233337402344,300.7257385253906,100849.421875,0.004198754671961,138.25096130371094,-2.534039958845824e-05,78.89591217041016,-0.8061104416847229,1.0573201179504397,0.5783016085624695,4350\n1374A,113.292,22.8054,20170930,26.625,4931.0,6375.0,1792622.344589788,-675687.2389491454,1,1.2644904851913452,214.5303955078125,300.63720703125,100808.8515625,0.0043583093211054,148.1979217529297,-2.950963244074956e-05,80.68216705322266,-0.7167493104934692,1.0417324304580688,0.5796871185302734,2772\n1375A,113.257,22.7629,20170930,32.214285714285715,4938.0,6369.0,1790137.4797228903,-681142.5905131534,3,1.2209103107452393,214.49072265625,300.654052734375,100853.578125,0.0043141548521816,141.6106414794922,-2.8787799237761647e-05,80.45967864990234,-0.6913502216339111,1.0063085556030271,0.5672988295555115,1976\n1376A,112.844,22.8693,20170930,46.71428571428572,4921.0,6303.0,1747876.6695560983,-676510.912292288,31,0.91360741853714,213.4227600097656,300.198974609375,100382.171875,0.0042838058434426,109.92127990722656,-1.9071718270424757e-05,82.03109741210938,-0.5032132863998413,0.7625319361686707,0.5692367553710938,5954\n1377A,112.885,23.1572,20170930,45.31481481481482,4875.0,6310.0,1745831.1658480123,-643088.6485476737,7,0.9134117364883424,221.9804534912109,300.6349182128906,100763.1640625,0.0048923455178737,118.87735748291016,-2.071261405944824e-05,79.20407104492188,-0.6109454035758972,0.6790189146995544,0.5679680705070496,3146\n1378A,112.863,23.1886,20170930,42.0,4870.0,6306.0,1743051.415603462,-639910.8919358047,23,0.8663303852081299,223.5785217285156,300.7076110839844,100836.125,0.0049975248984992,116.64305114746094,-2.0196397599647756e-05,79.6744155883789,-0.59718918800354,0.6276093125343323,0.5816110372543335,6178\n1379A,113.3769,22.5211,20170930,32.42307692307692,4977.0,6388.0,1806938.9483974616,-706334.5609378321,8,1.1738284826278689,218.71820068359372,300.4514465332031,100543.15625,0.0044515361078083,195.20803833007807,-3.743446359294467e-05,82.40983581542969,-0.7342002987861633,0.9158728718757628,0.5010502934455872,3098\n1380A,113.3881,22.5497,20170930,34.910714285714285,4972.0,6390.0,1807414.3475435448,-702891.3470267898,2,1.1841201782226562,218.0791015625,300.5187683105469,100662.234375,0.004322103690356,194.2955322265625,-3.736672442755662e-05,82.27784729003906,-0.7302864789962769,0.9321064352989196,0.5100870132446289,2507\n1381A,113.4075,22.5111,20170930,29.017857142857142,4978.0,6393.0,1810127.0244879057,-706903.114709109,13,1.207237958908081,219.02508544921875,300.4382629394531,100454.1015625,0.0043766312301158,204.4802703857422,-3.915132401743904e-05,82.47095489501953,-0.7601311802864075,0.9378827214241028,0.5035350322723389,3765\n1382A,113.4411,22.4853,20170930,44.07407407407408,4982.0,6399.0,1813946.7199788592,-709203.0199904351,58,1.2641459703445437,219.75379943847656,300.41925048828125,100343.734375,0.0043266350403428,219.8995819091797,-4.243996590957977e-05,82.58892822265625,-0.808388888835907,0.9718911647796632,0.4913465082645416,6271\n1383A,113.104,22.6069,20170930,34.2037037037037,4963.0,6345.0,1778601.173816956,-701598.0686757326,8,0.9542338848114014,215.09063720703125,300.2895202636719,100663.2578125,0.0045816670171916,130.4279022216797,-2.405411760264542e-05,82.69032287597656,-0.5485479235649109,0.7808057069778442,0.5302066802978516,1125\n1384A,113.074,22.5811,20170930,34.24074074074074,4967.0,6340.0,1776230.991192716,-705063.4904727308,12,0.9252123236656188,215.8125915527344,300.2668151855469,100705.484375,0.0046421983279287,125.59923553466795,-2.2597274437430315e-05,83.33143615722656,-0.5413610339164734,0.7502973079681396,0.5325294733047485,2630\n1385A,113.024,22.5328,20170930,32.839285714285715,4975.0,6332.0,1772387.5743974007,-711437.4688165791,23,0.887394905090332,217.98252868652344,300.2956237792969,100879.703125,0.0047730505466461,115.97953033447266,-1.988916847039945e-05,84.67607116699219,-0.5461080074310303,0.6994539499282837,0.5289233326911926,4553\n1386A,113.0819,22.5931,20170930,41.30357142857143,4965.0,6341.0,1776745.5638622642,-703561.2594614186,9,0.930152177810669,215.33282470703125,300.2554931640625,100662.75,0.0046041109599173,126.57146453857422,-2.293042780365795e-05,83.08296966552734,-0.5379164218902588,0.7588339447975159,0.5548323392868042,4426\n1387A,113.7819444,23.05361111,20170930,36.05357142857143,4892.0,6453.0,1834616.0368771087,-638504.8178792582,21,0.9537450671195984,218.15402221679688,300.3086242675781,100650.34375,0.0050012310966849,129.46939086914062,-2.552777914388571e-05,82.27264404296875,-0.589187502861023,0.7499918341636658,0.5827195048332214,3353\n1388A,113.7461111,23.02777778,20170930,36.30357142857143,4896.0,6447.0,1831724.1434301855,-642102.2445892321,12,1.0126256942749023,217.1922912597656,300.3249206542969,100560.4765625,0.0049770348705351,139.6487579345703,-2.9128417736501436e-05,81.46439361572266,-0.6121086478233337,0.8066807389259338,0.5637217164039612,3053\n1389A,113.7480556,23.06,20170930,41.48214285714285,4890.0,6448.0,1831206.1668212428,-638412.5699256219,5,0.9510000348091124,217.2981414794922,300.377685546875,100744.90625,0.0050186151638627,131.9312744140625,-2.660321115399711e-05,81.78244018554688,-0.5762558579444885,0.7565250992774963,0.5539464950561523,4599\n1390A,113.79444440000002,23.01277778,20170930,34.732142857142854,4898.0,6455.0,1836718.5029153104,-642900.4649622344,30,1.006708741188049,218.66159057617188,300.2054138183594,100421.796875,0.0049616936594247,134.1814727783203,-2.6755469662020918e-05,82.25353240966797,-0.6288948655128479,0.7861003279685974,0.5626909136772156,4786\n1391A,113.7383333,22.96583333,20170930,36.17857142857143,4906.0,6446.0,1832328.9832661424,-649269.1789455678,31,1.1249464750289917,217.3775634765625,300.3079833984375,100435.765625,0.00487398263067,156.81394958496094,-3.635384564404376e-05,81.41937255859375,-0.6828979849815369,0.8939546346664429,0.5918388366699219,6208\n1392A,114.4183,23.0528,20170930,24.82142857142857,4892.0,6555.0,1895995.70123152,-626516.3775682484,21,0.7013740539550781,228.03793334960935,299.6595764160156,100260.734375,0.0048482441343367,105.80172729492188,-1.2724646694550756e-05,89.50300598144531,-0.5215214490890503,0.4689785838127136,0.4815944731235504,3698\n1393A,114.4053,23.08,20170930,25.69642857142857,4887.0,6553.0,1894126.576588864,-623686.8752528154,21,0.6716040372848511,226.9288330078125,299.7323608398437,100388.3125,0.0049157892353832,101.19829559326172,-1.2507600331446156e-05,89.50566864013672,-0.490599662065506,0.4586545526981354,0.4803817272186279,2796\n1394A,114.4103,23.1142,20170930,22.85714285714285,4882.0,6554.0,1893832.964738985,-619716.9778196836,19,0.6448299288749695,225.53823852539065,299.69903564453125,100280.65625,0.0049237692728638,97.64136505126952,-1.2565576071210671e-05,89.43441009521484,-0.4602161347866058,0.4516710340976715,0.4978185594081878,3250\n1395A,114.3244,22.8172,20170930,21.35185185185185,4929.0,6540.0,1892259.654880476,-654992.3569786971,81,0.994009017944336,232.7929534912109,299.57537841796875,99767.8984375,0.0047983624972403,165.46939086914062,-3.13808886858169e-05,89.12722778320312,-0.791667640209198,0.6010958552360535,0.4666797518730163,4233\n1396A,114.5317,22.7422,20170930,29.69642857142857,4941.0,6573.0,1914000.1464460236,-659458.7689769327,13,1.4143717288970947,232.01258850097656,300.0212707519531,99914.3359375,0.0039262580685317,228.4619598388672,-5.678950037690811e-05,86.22229766845703,-1.1147080659866333,0.8705591559410095,0.4282648265361786,3560\n1397A,112.427,23.0706,20170930,41.767857142857146,4889.0,6236.0,1703364.7941516996,-660969.9042599192,11,0.6535945534706116,233.7333984375,299.9942626953125,99629.015625,0.0043639172799885,94.46092987060548,-1.1255210665694904e-05,85.85802459716797,-0.5269651412963867,0.3866439759731293,0.547714114189148,3201\n1398A,112.471,23.0528,20170930,43.23214285714285,4892.0,6243.0,1707983.708395444,-662229.4579041234,10,0.6909058094024658,231.592041015625,300.0516357421875,99823.046875,0.0044167176820337,94.54997253417967,-1.160412466560956e-05,85.76263427734375,-0.5413874387741089,0.4292441010475158,0.5511084198951721,2523\n1399A,112.565,23.1617,20170930,50.19642857142857,4874.0,6258.0,1714838.676692037,-648212.3412809549,17,0.6882480978965759,233.64877319335935,299.8133544921875,98926.5625,0.0050198012031614,104.69652557373048,-1.536249510536436e-05,84.91952514648438,-0.5543028116226196,0.4079630374908447,0.5526423454284668,4398\n1400A,112.4722,23.0786,20170930,44.78571428571429,4888.0,6244.0,1707572.7384311345,-659275.9489986534,9,0.6821365356445312,232.932373046875,300.0101013183594,99606.28125,0.0045464434660971,96.32788848876952,-1.2100685125915334e-05,85.7876968383789,-0.5442823171615601,0.4111775159835815,0.5518046617507935,3133\n1401A,108.301,22.7875,20170930,24.22,4934.0,5576.0,1307340.4696717917,-756473.1588595471,91,1.5089260339736938,235.31251525878903,299.9846496582031,99491.53125,0.0027433303184807,203.2766265869141,-1.5214049199130386e-05,87.26953125,-1.2407176494598389,0.8587650656700134,0.4453223943710327,2194\n1402A,108.316,22.8561,20170930,25.03703703703704,4923.0,5579.0,1307736.6205701611,-748432.5493984204,85,1.5106356143951416,236.1420745849609,299.9455871582031,99467.140625,0.002824235940352,197.01333618164065,-1.5048204659251496e-05,87.31682586669922,-1.2544403076171875,0.8416648507118225,0.4501732885837555,2899\n1403A,108.321,22.8225,20170930,26.53703703703704,4928.0,5579.0,1308748.5532505224,-752206.7346687953,84,1.5158320665359497,235.63304138183597,299.9906616210937,99518.578125,0.0027993025723844,200.27957153320312,-1.5090132365003228e-05,87.30162048339844,-1.2512025833129885,0.8557096123695374,0.4472130239009857,2584\n1404A,108.383,22.805,20170930,25.125,4931.0,5589.0,1315076.3396156586,-753378.9954433957,122,1.4950722455978394,234.63168334960935,299.9969177246094,99642.9296875,0.002757295500487,205.0784454345703,-1.4873704458295832e-05,87.35823822021484,-1.2191293239593506,0.8654276132583618,0.448028951883316,3818\n1405A,108.439,22.7906,20170930,26.267857142857142,4934.0,5598.0,1320771.3415086751,-754273.3837470112,84,1.471745252609253,233.51898193359372,299.9844970703125,99705.5546875,0.002716921037063,210.04107666015625,-1.4674295016448012e-05,87.3710708618164,-1.1833384037017822,0.875068187713623,0.4496763050556183,3228\n1406A,108.239,22.8464,20170930,22.634615384615387,4925.0,5566.0,1300370.8898038694,-750563.3785773134,80,1.4175450801849363,237.01161193847656,299.8502197265625,99281.609375,0.0026818816550076,194.5687561035156,-1.5251328477461357e-05,87.1863784790039,-1.1889872550964355,0.771844208240509,0.4456420540809631,2926\n1407A,108.328,22.735,20170930,28.115384615384613,4942.0,5580.0,1310796.7162788424,-762112.4435107276,127,1.5373992919921875,233.94253540039065,299.9516296386719,99458.3984375,0.0027187587693333,209.2117919921875,-1.511724531155778e-05,87.28231048583984,-1.2428501844406128,0.9049420356750488,0.4413621723651886,3277\n1408A,108.244,22.7833,20170930,28.240740740740737,4935.0,5567.0,1301837.1407980488,-757709.9533061817,89,1.4710873365402222,236.21095275878903,299.881103515625,99317.4921875,0.0026678459253162,200.86865234375,-1.54049394041067e-05,87.23487091064453,-1.2225834131240845,0.818161129951477,0.4439736306667328,2124\n1409A,110.576,19.9507,20170930,11.351851851851851,5388.0,5940.0,1580503.0309424852,-1044494.260476063,4,2.540841817855835,235.80093383789065,300.87554931640625,100669.359375,0.0035290699452161,330.6798095703125,-6.125804065959528e-05,84.36902618408203,-2.1014633178710938,1.4281909465789795,0.2803654372692108,6697\n1412A,110.338,19.9969,20170930,12.464285714285715,5381.0,5902.0,1555734.1465932855,-1043102.56971362,17,2.700897455215454,240.3986053466797,300.9205017089844,100382.484375,0.0028191520832479,328.1907653808594,-7.066171383485198e-05,84.31957244873047,-2.3483428955078125,1.3342162370681765,0.2903665602207184,3172\n1414A,106.379,29.8272,20170930,17.85185185185185,3808.0,5269.0,1024070.277212802,38831.25408515387,569,1.0865317583084106,359.6268310546875,296.3460693359375,96898.7734375,0.0015862290747463,143.2400360107422,-1.397284086124273e-05,80.6789321899414,-0.0071839955635368,-1.08650803565979,0.9964600801467896,4830\n1416A,106.424,29.8264,20170930,23.535714285714285,3808.0,5276.0,1028112.9153465268,39206.79010439404,231,1.032551407814026,358.9482421875,296.41357421875,96968.796875,0.0016156389610841,142.65911865234375,-1.3919069715484513e-05,80.54756927490234,-0.0190464537590742,-1.032375693321228,1.0025063753128052,2926\n1417A,106.626,29.7228,20170930,19.777777777777786,3824.0,5308.0,1047660.272073152,29121.4666487605,412,0.8852370381355286,353.9786376953125,296.9236145019531,97280.8046875,0.001610510982573,155.51092529296875,-1.5010607057774903e-05,79.28828430175781,-0.0929395258426666,-0.8803447484970093,0.9667204022407532,2287\n1418A,106.296,29.5983,20170930,21.357142857142858,3844.0,5255.0,1019751.1809270256,10970.675970138183,298,1.2423882484436035,172.68157958984375,296.4887084960937,96782.25,0.0014100096886977,159.1704559326172,-1.5875713870627806e-05,80.05511474609375,0.1583693772554397,-1.232253074645996,1.0156322717666626,3106\n1419A,106.54,29.5186,20170930,25.0,3857.0,5294.0,1042786.3058859188,4137.579975026157,202,0.9080376029014589,177.29299926757812,297.0470275878906,97211.34375,0.0014601547736674,162.05551147460938,-1.595788671693299e-05,78.52670288085938,0.0429681092500686,-0.907020390033722,0.97797954082489,2102\n1420A,106.65,29.6219,20170930,15.0,3841.0,5312.0,1051229.7557467974,17483.266454694432,230,0.8643895983695984,353.9853515625,297.1424560546875,97443.6875,0.0015569238457828,155.41290283203125,-1.4769753761356696e-05,78.93331146240234,-0.0906503126025199,-0.8596231341362,0.9545234441757202,4244\n1421A,106.634,29.4892,20170930,21.517857142857142,3862.0,5309.0,1051652.8709537275,1675.5191351284543,289,0.7571058869361877,358.8414611816406,297.0107116699219,96942.265625,0.0016094339080154,155.85418701171875,-1.4690443094877992e-05,78.59540557861328,-0.0153747852891683,-0.7569497227668762,0.957656979560852,2171\n1422A,106.364,29.4822,20170930,24.23076923076923,3863.0,5266.0,1027452.3288618114,-2005.777179969752,309,1.1014552116394043,174.13856506347656,296.8171691894531,97061.546875,0.00133132643532,166.33880615234375,-1.6672536730766296e-05,79.10214233398438,0.1125825271010398,-1.095686435699463,1.014343023300171,2568\n1423A,106.571,29.5642,20170930,23.847826086956523,3850.0,5299.0,1044938.8937052318,9840.413657015792,209,0.9133157134056092,179.50718688964844,297.0778503417969,97320.6015625,0.0014731313567608,158.76675415039062,-1.548812724649906e-05,78.75377655029297,0.0079393740743398,-0.9132812023162842,0.9942809343338012,634\n1425A,106.617,29.7125,20170930,16.107142857142858,3826.0,5307.0,1046997.2877693122,27811.10467884078,414,0.8995790481567383,354.7308959960937,296.98797607421875,97402.7734375,0.0015780719695612,155.44044494628906,-1.5022581465018447e-05,79.26536560058594,-0.0826922357082367,-0.8957703113555908,0.9681068062782288,2916\n1426A,106.468,29.4892,20170930,18.839285714285715,3862.0,5283.0,1036716.0297864396,-88.54081315707289,318,0.9679012298583984,175.3147735595703,296.9818420410156,97191.421875,0.0014110946794971,166.01052856445312,-1.6509493434568867e-05,78.5079574584961,0.0791470184922218,-0.9646598100662231,0.9911642670631408,3068\n1427A,106.562,29.6453,20170930,17.732142857142858,3837.0,5298.0,1042999.8800928608,19303.69084542196,312,0.9604965448379515,359.2744140625,297.04376220703125,97476.0078125,0.0014778554905205,156.50218200683594,-1.535536466690246e-05,79.11072540283203,-0.0122543023899197,-0.9604184031486512,0.986663281917572,2630\n1428A,106.452,29.709,20170930,16.703703703703702,3827.0,5280.0,1032242.6549261976,25652.632213008357,233,1.0794475078582764,177.72486877441406,296.6950378417969,97166.1640625,0.0014897399814799,153.10865783691406,-1.5287740097846836e-05,79.79271697998047,0.0429518148303031,-1.0785926580429075,1.0048633813858032,3649\n1429A,106.513,29.389,20170930,20.375,3878.0,5290.0,1042154.877216021,-11416.575697270628,211,0.8031929135322571,174.20416259765625,297.1662902832031,97245.03125,0.0014764593215659,164.0227508544922,-1.5044684914755637e-05,78.37178802490234,0.08118137717247,-0.7990797758102417,0.9786182641983032,243\n1431A,103.97275,30.72358333,20170930,41.375,3664.0,4884.0,798474.6860791672,122594.72455821229,516,1.4214282035827637,145.27940368652344,295.2474670410156,95163.5234375,0.000585350615438,142.06826782226562,-1.090874502551742e-05,76.07939910888672,0.8096972107887268,-1.1682672500610352,0.6882156133651733,3734\n1432A,104.176,30.6872,20170930,38.2962962962963,3670.0,4916.0,816913.8933379711,119948.83536280002,497,1.2094842195510864,159.81275939941406,295.9076538085937,95764.25,0.0004197769158054,163.21128845214844,-1.119938042393187e-05,74.63958740234375,0.4174731075763702,-1.1351511478424072,0.7574962973594666,2779\n1433A,104.079,30.5706,20170930,37.96428571428572,3689.0,4901.0,809584.498388063,105316.61911440465,479,1.3929567337036133,162.357421875,295.79071044921875,95824.921875,0.0006668487330898,164.1964111328125,-1.242170765181072e-05,76.19689178466797,0.4222854375839233,-1.3274047374725342,0.754403293132782,4460\n1434A,104.1113889,30.63,20170930,26.60714285714285,3679.0,4906.0,811809.274591185,112628.524659213,495,1.3309307098388672,159.75270080566406,295.87042236328125,95882.6171875,0.0005498785176314,162.35179138183594,-1.1791737961175386e-05,75.51124572753906,0.4607015550136566,-1.2486515045166016,0.7477813363075256,3497\n1435A,104.074,30.685,20170930,30.125,3670.0,4900.0,807883.2611875145,118844.52184999095,501,1.3789845705032349,153.20697021484375,295.6630249023437,95626.2734375,0.0004937219200655,155.1147918701172,-1.140224685514113e-05,75.66995239257812,0.6217004656791687,-1.2308887243270874,0.7248397469520569,2322\n1437A,104.054,30.6578,20170930,33.129629629629626,3675.0,4897.0,806405.8262361713,115453.49922582207,499,1.4150187969207764,154.60638427734375,295.63623046875,95640.78125,0.0005602655000984,155.79177856445312,-1.1722274393832777e-05,76.04206085205078,0.6069107055664062,-1.2782557010650637,0.7243678569793701,4433\n1438A,103.613,31.0283,20170930,30.125,3616.0,4826.0,763364.3782327079,155918.6152469598,1007,0.3385987877845764,84.38272857666016,291.26544189453125,87476.9765625,0.0037592872977256,76.5579833984375,-2.4763915007497417e-06,87.19124603271484,0.3369713723659515,0.0331576727330684,0.581916868686676,3082\n1439A,106.6856,26.6029,20170930,16.423076923076927,4324.0,5318.0,1096699.3502978035,-335907.3822935134,1150,1.401541233062744,217.55984497070312,293.3609313964844,88118.5703125,0.0021637538447976,374.4056701660156,-1.134981994255213e-05,88.1509780883789,-0.8543436527252197,1.1110421419143677,0.5232759118080139,6733\n1440A,106.6971,26.5689,20170930,16.270833333333332,4329.0,5320.0,1098247.1841506856,-339738.9764714702,1073,1.39423668384552,218.1766357421875,293.4482116699219,88300.8984375,0.0021611659321933,374.0703430175781,-1.1039780474675354e-05,88.18859100341797,-0.8617392182350159,1.0960389375686646,0.5313277840614319,2961\n1441A,106.6243,26.6266,20170930,15.72222222222222,4320.0,5308.0,1090645.0917704797,-333828.85011877504,1278,1.4470030069351196,216.99508666992188,293.0702819824219,87431.015625,0.0021427685860544,376.6720886230469,-1.2497511306719389e-05,88.09935760498047,-0.8707072138786316,1.1557191610336304,0.515507161617279,4406\n1442A,106.7487,26.6343,20170930,20.944444444444443,4319.0,5328.0,1102153.7313815907,-331543.7582756597,1126,1.3614598512649536,217.00119018554688,293.38311767578125,88219.4921875,0.0021905163303017,371.8539733886719,-1.035905097523937e-05,88.11659240722656,-0.8193490505218506,1.087308645248413,0.5298155546188354,2919\n1443A,106.6554,26.4364,20170930,17.80769230769231,4350.0,5313.0,1096189.0335543647,-355632.0872725407,1128,1.4177112579345703,220.65899658203125,293.4222412109375,88177.59375,0.0021391797345131,368.4442138671875,-1.121507739298977e-05,88.53722381591797,-0.9236952066421508,1.0754963159561155,0.5185519456863403,3747\n1444A,106.6948,26.5155,20170930,22.60714285714285,4338.0,5319.0,1098775.8913877967,-345983.120999649,1093,1.3990395069122314,219.22482299804688,293.4989929199219,88366.734375,0.0021515116095542,374.4019165039063,-1.1058735253755003e-05,88.26581573486328,-0.8846815824508667,1.0838127136230469,0.5263611674308777,2861\n1445A,106.7105,26.6009,20170930,28.18518518518519,4324.0,5322.0,1099053.060361704,-335862.1242795707,1105,1.385815978050232,217.6058654785156,293.4496459960937,88342.8828125,0.0021695401519536,373.5444030761719,-1.0873548490053508e-05,88.14913940429688,-0.8456403613090515,1.0978972911834717,0.5269798040390015,2359\n1446A,106.7164,26.5697,20170930,22.321428571428577,4329.0,5323.0,1100039.5202645804,-339429.91370931367,1082,1.3836060762405396,218.21066284179688,293.50799560546875,88449.4765625,0.0021637082099914,373.4835815429688,-1.065116794052301e-05,88.17928314208984,-0.8558144569396973,1.0871740579605105,0.5371655225753784,4489\n1447A,106.6867,26.5495,20170930,13.08,4332.0,5318.0,1097545.325461052,-342114.4816642329,1096,1.4014586210250854,218.5082855224609,293.4335327148437,88244.875,0.0021568622905761,374.4949951171875,-1.1268276466580572e-05,88.2210922241211,-0.872565507888794,1.0966839790344238,0.5362656712532043,4380\n1449A,102.743,25.0124,20170930,24.07142857142857,4578.0,4687.0,742285.0595576382,-557891.1582553004,1898,1.3312395811080933,213.79425048828125,291.6629638671875,80933.609375,0.0040196040645241,251.35678100585935,-2.463012424414046e-05,84.80847930908203,-0.7404323220252991,1.106326699256897,0.3003197312355041,3357\n1450A,102.821,24.8885,20170930,14.392857142857142,4598.0,4699.0,750894.3822530331,-571685.6832923731,1920,1.308925747871399,213.17037963867188,291.8426208496094,80741.046875,0.0032923016697168,276.4006042480469,-2.6432177037349905e-05,83.60002136230469,-0.7161346077919006,1.0956449508666992,0.3052572607994079,3333\n1451A,102.625,24.9624,20170930,18.90384615384616,4586.0,4668.0,731447.4317026896,-564583.4349989531,2121,1.5173752307891846,212.3280487060547,291.5007019042969,80209.921875,0.003999619744718,255.40081787109372,-2.6929872547043487e-05,85.21820831298828,-0.8114196062088013,1.282195806503296,0.2953373193740845,5823\n1452A,102.728,25.0836,20170930,15.785714285714285,4567.0,4684.0,740198.1485244401,-549732.7642251197,1901,1.2793128490447998,214.0678253173828,291.2583923339844,80325.328125,0.0043519944883883,223.6236572265625,-1.936847729666624e-05,84.67210388183594,-0.7166189551353455,1.0597634315490725,0.311189740896225,3318\n1453A,102.722,25.0405,20170930,24.23214285714285,4574.0,4684.0,740018.9827089213,-554785.3845626255,1899,1.3263808488845823,213.72003173828125,291.5323791503906,80714.734375,0.0041576758958399,240.5540313720703,-2.272706842632033e-05,84.787353515625,-0.736301600933075,1.1032434701919556,0.3142169415950775,2490\n1454A,102.681,25.067,20170930,20.107142857142858,4569.0,4677.0,735856.710950416,-552014.541728743,1934,1.325816988945007,213.3142547607422,291.1722717285156,80015.4765625,0.0043173772282898,225.89129638671875,-2.0321736883488484e-05,84.7376708984375,-0.7281606793403625,1.1079589128494265,0.3135278224945068,4902\n1455A,102.638,25.0359,20170930,23.67857142857143,4574.0,4670.0,732026.983881859,-555948.9976357146,1911,1.4064680337905884,212.6036376953125,291.1402587890625,79786.2734375,0.0042358804494142,235.3448486328125,-2.2763273591408503e-05,84.93235778808594,-0.7578191757202148,1.1848469972610474,0.2955952882766723,2847\n1456A,91.1319,29.6514,20170930,9.160714285714286,3836.0,2829.0,-349626.2844881849,-34524.66527380941,3656,0.3204505145549774,5.900207996368408,284.9350891113281,60914.484375,0.0015655575552955,191.80345153808597,-6.212540029082447e-06,49.5557861328125,0.0329400710761547,0.3187530040740967,0.1141703873872757,2115\n1457A,91.1221,29.6747,20170930,6.846153846153847,3832.0,2828.0,-350402.4839230429,-31725.913068766644,3659,0.2937241792678833,11.811326026916504,284.7763977050781,60798.00390625,0.0016372053651139,179.7509307861328,-5.780269475508248e-06,50.00743103027344,0.060120515525341,0.2875055074691772,0.1471240371465683,3046\n1458A,91.0874,29.6475,20170930,4.711538461538462,3836.0,2822.0,-353664.8254435263,-34828.0017356514,3649,0.27609783411026,21.091598510742188,285.06268310546875,61144.93359375,0.0017694843700155,170.09622192382812,-5.8138216445513535e-06,50.0633544921875,0.0993537530303001,0.2576020956039428,0.1529568880796432,3951\n1459A,91.1774,29.6541,20170930,6.722222222222222,3835.0,2836.0,-345503.29366066115,-34365.34415083121,3676,0.3748069405555725,184.4582977294922,284.75054931640625,60659.671875,0.0013724614400416,211.29034423828125,-6.520108399854507e-06,49.09951019287109,-0.0291341394186019,0.3736729025840759,0.1101942211389541,2559\n1460A,90.9798,29.6588,20170930,17.796296296296298,3835.0,2805.0,-363330.7023678818,-33095.11730126552,3690,0.2615509927272796,60.635475158691406,284.6056213378906,61042.2734375,0.0023192299995571,118.8455047607422,-4.758941031468567e-06,52.34664916992188,0.2279422879219055,0.1282623559236526,0.1207347437739372,2763\n1461A,91.0834,29.6292,20170930,4.903846153846153,3839.0,2821.0,-354112.7614399382,-36984.10804503016,3653,0.2806994020938873,19.884014129638672,285.3299255371094,61388.40625,0.0017541628330945,173.7548370361328,-6.045373993401881e-06,49.73735809326172,0.0954680517315864,0.2639659345149994,0.145087331533432,2324\n1462A,108.882,34.2749,20170930,41.5,3096.0,5669.0,1173021.4422698806,594714.3147632418,399,0.1022942438721656,221.7426605224609,292.97955322265625,94456.6015625,0.002531410427764,82.21678924560547,-6.310165645118104e-06,74.79612731933594,-0.0681044459342956,0.0763275623321533,0.5329320430755615,2844\n1463A,108.993,34.2629,20170930,41.0,3098.0,5687.0,1182542.8435848798,594613.541296176,425,0.3967950046062469,219.8200836181641,292.89813232421875,94442.90625,0.002570507582277,81.05179595947266,-6.973534709686646e-06,74.77143096923828,-0.2540929019451141,0.3047672212123871,0.50801682472229,3312\n1464A,109.06,34.2572,20170930,36.85714285714285,3099.0,5698.0,1188264.3137339072,594742.0832507436,451,0.5781363248825073,218.0882873535156,292.66082763671875,94109.1875,0.0025994824245572,79.43953704833984,-6.803914857300697e-06,75.28927612304688,-0.3566289246082306,0.4550356566905975,0.5073960423469543,3944\n1465A,108.94,34.2324,20170930,43.87037037037037,3103.0,5678.0,1178613.5394104267,590339.2893210872,415,0.5178983807563782,188.4127655029297,292.8801574707031,94765.3515625,0.0027657451573759,79.60183715820312,-6.364235559885856e-06,75.56229400634766,-0.0757682546973228,0.5123260021209717,0.5157585144042969,2622\n1466A,108.954,34.2713,20170930,46.7962962962963,3097.0,5681.0,1179125.9453407058,595146.6917789903,409,0.2876919507980346,222.90032958984372,292.95330810546875,94471.046875,0.0025467646773904,81.69110870361328,-6.778976967325434e-06,74.74427032470703,-0.1958344578742981,0.2107499241828918,0.5175976753234863,2664\n1467A,108.883,34.2303,20170930,49.05555555555557,3103.0,5669.0,1173862.048538078,589406.4972997652,406,0.4585894644260406,3.421581745147705,292.9242858886719,94881.4375,0.0027808183804154,79.28858184814453,-5.960779162705876e-06,75.60741424560547,0.0273685026913881,0.4577720463275909,0.5073146224021912,3437\n1468A,108.935,34.3474,20170930,44.21428571428572,3084.0,5678.0,1176235.1159500412,603996.5749857778,378,0.6103329658508301,326.009033203125,293.6371154785156,95317.1953125,0.0020909579470753,91.91706848144533,-7.691105565754697e-06,73.72823333740234,-0.3412519991397857,-0.5060172080993652,0.5030040740966797,3160\n1469A,108.906,34.1546,20170930,39.481481481481474,3115.0,5673.0,1177079.9982819865,580654.0435295325,434,0.9502509236335754,5.989930629730225,292.7558288574219,95311.84375,0.0031786367762833,82.8845443725586,-6.192782166181132e-06,77.96453094482422,0.0991591736674308,0.9450631141662598,0.5164109468460083,4001\n1470A,109.2,34.6575,20170930,43.30357142857143,3035.0,5720.0,1193064.872468251,644194.9663299402,385,1.202808141708374,324.69390869140625,294.2076110839844,96473.578125,0.001834287890233,115.38809967041016,-9.054364454641473e-06,73.04881286621094,-0.6952294111251831,-0.9815311431884766,0.5093868374824524,4549\n1471A,109.2186,34.3731,20170930,37.27777777777778,3080.0,5723.0,1199561.1660016882,610490.6245727157,479,0.7669598460197449,271.91558837890625,293.0979919433594,94110.578125,0.0020453708712011,83.01917266845703,-7.326172635657713e-06,74.52019500732422,-0.7665324807167053,-0.0256009604781866,0.4964555501937866,2861\n1472A,108.869,34.378,20170930,45.71739130434783,3080.0,5667.0,1170182.4877360542,606859.4314352811,374,0.851030707359314,342.05633544921875,293.6816711425781,95546.9296875,0.0019642845727503,95.09934997558594,-7.517216999985976e-06,73.69708251953125,-0.2622547149658203,-0.8096145391464233,0.5261776447296143,5307\n1473A,108.985,34.1978,20170930,46.39285714285714,3108.0,5686.0,1182983.7967499564,586753.9869347423,472,0.8326342105865479,187.0267791748047,292.7098693847656,94774.5625,0.0029249123763293,81.48876953125,-6.71539464747184e-06,76.56429290771484,-0.1018557623028755,0.826380729675293,0.5122525691986084,3690\n1474A,109.043,34.3274,20170930,41.71428571428572,3088.0,5695.0,1185632.6224200395,602908.8461799484,386,0.4932301938533783,285.3973693847656,293.3035583496094,94723.890625,0.0022186695132404,87.11779022216797,-7.629821993759833e-06,74.16842651367188,-0.4755341112613678,-0.1309325993061065,0.4919913709163666,5379\n1475A,103.712,36.0756,20170930,39.160714285714285,2808.0,4842.0,718389.2799181455,761062.0922745351,1556,0.8056158423423767,258.26275634765625,289.0008239746094,81520.84375,0.0011318592587485,158.96217346191406,-1.0250749255646951e-05,61.142860412597656,-0.7887644171714783,0.1639132797718048,0.2429197579622268,1918\n1476A,103.631,36.1031,20170930,45.53703703703704,2804.0,4829.0,711435.263110884,763788.8498633147,1562,0.7218106389045715,268.43212890625,289.1402587890625,81403.1640625,0.0010311256628483,161.1003875732422,-1.1080460353696251e-05,60.34760284423828,-0.7215394973754883,0.0197823420166969,0.2528733611106872,2317\n1477A,104.148,35.94,20170930,25.42857142857143,2830.0,4912.0,755766.0439666435,747988.3951099735,1773,1.431666135787964,221.14280700683597,287.84820556640625,81519.8671875,0.0019689709879457,176.05032348632812,-9.503690307610668e-06,72.43255615234375,-0.941924810409546,1.0781676769256592,0.2707109451293945,4255\n1478A,103.841,36.0725,20170930,39.160714285714285,2808.0,4863.0,729031.7949565867,761638.4560993429,1537,1.0335626602172852,243.39920043945312,289.2835693359375,82446.96875,0.0011299280449748,161.98422241210938,-9.55481118580792e-06,62.88597106933594,-0.9241429567337036,0.462829977273941,0.2716161012649536,3009\n1479A,103.831,36.0464,20170930,42.017857142857146,2813.0,4861.0,728492.977563886,758417.7100729583,1589,0.9865841865539552,243.59718322753903,288.6671142578125,81471.21875,0.0013101015938445,158.66201782226562,-9.281367965741085e-06,63.46620559692383,-0.8836591839790344,0.4387423396110534,0.2468378543853759,1779\n1480A,101.748,36.6428,20170930,22.51851851851852,2717.0,4528.0,552015.3764938172,816863.6316859224,2264,0.5020553469657898,244.25991821289065,285.8144836425781,75438.0390625,0.0016848305240273,183.2538909912109,-7.376711891993182e-06,64.24951934814453,-0.4522308707237243,0.2180522978305816,0.1969492584466934,2884\n1482A,101.834,36.5819,20170930,18.05769230769231,2727.0,4541.0,559552.2452424697,809986.2105864165,2233,0.7672469615936279,249.34771728515625,285.61578369140625,75057.328125,0.0018069583456963,220.1167907714844,-7.73670672060689e-06,64.7052230834961,-0.7179325819015503,0.2706301510334015,0.1973792463541031,3154\n1484A,105.9512,38.6016,20170930,32.19642857142857,2404.0,5200.0,868240.4320391497,1084277.1674439737,1329,0.1729395389556884,23.79185676574707,290.21612548828125,82903.5390625,0.0005086841993033,241.8677215576172,-8.334224730788264e-06,43.05202865600586,0.0697645097970962,0.1582434773445129,0.2376158535480499,3891\n1488A,106.2328,38.4975,20170930,31.910714285714285,2420.0,5245.0,891915.4991291006,1074210.7114104875,1108,0.5262337923049927,48.3746223449707,293.01983642578125,88264.171875,0.0001816118747228,167.98971557617188,-6.973032213863917e-06,42.04149627685547,0.393353134393692,0.3495644927024841,0.2609434127807617,2792\n1489A,106.1358,38.5036,20170930,24.035714285714285,2420.0,5230.0,884162.6297668642,1074071.566623268,1113,0.4933494627475738,60.33329391479492,293.4739074707031,88905.0546875,0.0002359033533139,197.74566650390625,-7.507971076847752e-06,42.767208099365234,0.4286732673645019,0.2441985160112381,0.298497200012207,3687\n1490A,87.5801,43.8303,20170930,17.592592592592588,1567.0,2261.0,-540731.48448028,1695138.952383482,816,0.2947086691856384,93.41275787353516,291.401611328125,90716.2421875,0.0003774062206503,143.6973114013672,-6.331566510198172e-06,31.93343162536621,0.2941868603229522,-0.0175294689834117,0.2517704367637634,3210\n1491A,87.6046,43.768,20170930,21.83333333333333,1577.0,2265.0,-539523.3284421257,1687393.315223073,919,0.4769090116024017,118.30498504638672,290.371337890625,89231.7265625,0.0004292298399377,158.6276092529297,-6.895486876601353e-06,33.66785430908203,0.4199016690254211,-0.2261079400777816,0.2192501425743103,2215\n1492A,87.4754,43.9469,20170930,25.642857142857142,1549.0,2244.0,-547253.8338639822,1709963.2113203043,595,0.2886917293071747,40.83621597290039,293.3905029296875,93430.7265625,0.0002844028640538,124.2716293334961,-5.5182413234433625e-06,28.687944412231445,0.1887706220149994,0.2184228897094726,0.2512043118476867,3356\n1493A,87.5525,43.8711,20170930,25.67857142857143,1561.0,2256.0,-542360.4974790245,1700275.5006674514,754,0.2573689520359039,66.71436309814453,292.16387939453125,91801.5234375,0.000344859494362,135.58447265625,-6.014894552208716e-06,30.831880569458008,0.2364016026258468,0.1017499789595604,0.2674663960933685,3020\n1494A,87.6432,43.831,20170930,22.67857142857143,1567.0,2271.0,-536135.2363282131,1694878.70007666,845,0.2985544502735138,104.34986114501952,291.180908203125,90628.9609375,0.0003888685023412,144.48574829101562,-6.424822913686512e-06,32.14174270629883,0.2892436683177948,-0.0739788636565208,0.2535244524478912,3076\n1496A,87.6444,43.962,20170930,23.42592592592593,1546.0,2271.0,-534847.5584476726,1710877.4597153773,603,0.3010995984077453,5.46782112121582,293.0157775878906,93099.328125,0.0002948055625893,111.34363555908205,-5.2117625273240265e-06,28.690162658691406,0.0286899581551551,0.2997296452522278,0.3225456774234772,3059\n1508A,112.9433,27.8614,20170930,27.964285714285715,4122.0,6319.0,1651718.9311604523,-101952.5418523738,60,1.4670510292053225,354.8925170898437,298.4573669433594,100226.9375,0.0014890894526615,230.5912933349609,-2.1160245523788035e-05,77.77507019042969,-0.1307349652051925,-1.461214303970337,0.7969390749931335,4054\n1511A,112.9118,27.8403,20170930,31.48148148148148,4126.0,6314.0,1649302.4922600389,-104928.09745339668,51,1.4800395965576172,354.7716064453125,298.43133544921875,100260.609375,0.0015195802552625,231.56253051757807,-2.0857904019067064e-05,77.90497589111328,-0.135002464056015,-1.473869562149048,0.7951192855834961,3659\n1512A,112.8937,27.8728,20170930,29.55357142857143,4120.0,6311.0,1646960.3689551794,-101463.23377859851,50,1.5264774560928345,354.9179077148437,298.4149475097656,100268.671875,0.0014975918456912,231.9631500244141,-2.026396214205306e-05,78.052490234375,-0.1353575885295868,-1.520464301109314,0.791873574256897,3774\n1513A,112.9227,27.8159,20170930,31.42857142857143,4130.0,6316.0,1650816.7868374945,-107573.90526407288,48,1.4491348266601562,354.7330322265625,298.440185546875,100251.3828125,0.0015349470777437,231.30967712402344,-2.1322744942153804e-05,77.81977081298828,-0.133154958486557,-1.4430043697357178,0.8015871644020081,3161\n1514A,112.9074,27.9119,20170930,34.017857142857146,4114.0,6313.0,1647371.7058587277,-96699.16834646932,58,1.5353034734725952,355.11505126953125,298.4176330566406,100255.8984375,0.0014731030678376,231.4784393310547,-2.01648726942949e-05,78.03621673583984,-0.1308774501085281,-1.5297149419784546,0.8119831085205078,4943\n1515A,113.135,27.8244,20170930,36.31481481481482,4128.0,6350.0,1669966.1224436602,-103001.20959337208,47,1.22291898727417,354.7766418457031,298.6629638671875,100136.6484375,0.0014648563228547,215.61073303222656,-2.0438221326912757e-05,77.33197021484375,-0.111442781984806,-1.2178306579589844,0.7906334400177002,2006\n1518A,113.095,27.8867,20170930,36.65384615384615,4118.0,6343.0,1664979.4228097233,-96459.08699816838,65,1.3199249505996704,354.33551025390625,298.574951171875,100055.8359375,0.0013995979679748,219.86251831054688,-2.040253093582578e-05,77.33089447021484,-0.1303986459970474,-1.3134679794311523,0.8067163825035095,3890\n1519A,113.167,27.8667,20170930,27.60714285714285,4121.0,6355.0,1671962.4049047376,-97554.73998022109,59,1.2002177238464355,353.71075439453125,298.6852111816406,100130.265625,0.0014324350049719,212.74319458007807,-1.960158988367766e-05,77.22956085205078,-0.131588876247406,-1.1929824352264404,0.8005039095878601,4329\n1520A,113.143,27.8381,20170930,30.660714285714285,4126.0,6351.0,1670397.8820311492,-101277.5424403457,45,1.2211410999298096,354.5128479003906,298.6648864746094,100129.703125,0.0014532463392242,215.03550720214844,-2.0226767446729355e-05,77.30838775634766,-0.1168784126639366,-1.2155349254608154,0.7911437749862671,1951\n1524A,113.13,27.8528,20170930,31.57142857142857,4124.0,6349.0,1668896.640406032,-99794.76482950996,41,1.248470902442932,354.5355529785156,298.6399230957031,100099.4609375,0.001435232697986,216.26675415039065,-2.02914779947605e-05,77.31051635742188,-0.1190004125237464,-1.242786526679993,0.7866725921630859,2639\n1552A,106.805,26.3003,20170930,22.777777777777786,4372.0,5337.0,1112103.2522342275,-369787.74366099737,1463,1.40505051612854,222.42556762695312,293.0595397949219,87272.078125,0.002131477696821,351.1465759277344,-8.906513357942458e-06,88.8282241821289,-0.9478691816329956,1.0371649265289309,0.5034667253494263,6101\n1559A,113.251,27.8336,20170930,27.964285714285715,4127.0,6368.0,1680324.9799238006,-99957.54547307375,117,1.050254464149475,352.61334228515625,298.7696533203125,100218.125,0.0015010132919996,204.61508178710935,-1.865554258984048e-05,77.18692779541016,-0.1351180672645568,-1.0415265560150146,0.7664501070976257,6794\n1562A,113.0048,27.9153,20170930,31.017857142857142,4114.0,6329.0,1656158.6184034613,-94667.55421017153,50,1.4284495115280151,354.6727905273437,298.4807434082031,100113.1015625,0.0014216783456504,227.96827697753903,-2.1131721950951032e-05,77.4748764038086,-0.1327502131462097,-1.4222676753997805,0.7889232635498047,4271\n1564A,112.4876,27.9164,20170930,35.214285714285715,4113.0,6246.0,1609072.3069605918,-103133.46398531928,164,1.6706751585006714,350.7821960449219,297.8533630371094,99551.828125,0.0013413749402388,242.34811401367188,-1.552208050270565e-05,78.95889282226562,-0.267766535282135,-1.6490774154663086,0.8314136862754822,4935\n1585A,109.8756,40.6532,20170930,36.67857142857143,2076.0,5828.0,1139586.4185066288,1372424.8344859816,1057,0.7383727431297302,258.0043640136719,290.9958190917969,88798.2578125,0.0003601445932872,197.4284210205078,-9.266767847293522e-06,39.51945877075195,-0.722243070602417,0.1534903198480606,0.346231460571289,3160\n1586A,109.8104,40.6575,20170930,20.857142857142858,2075.0,5818.0,1134550.704200461,1372189.500410807,1066,0.7185992002487183,255.82553100585935,291.10406494140625,88896.25,0.0003330653416924,196.79933166503903,-9.242986379831564e-06,39.35797500610352,-0.6967142224311829,0.1759945154190063,0.3380101323127746,1808\n1587A,110.0067,40.5905,20170930,28.73214285714285,2086.0,5849.0,1150716.7267010938,1366384.0032361057,1033,0.7187505960464478,258.3204345703125,291.19854736328125,89199.0859375,0.0004425342194736,199.5621795654297,-9.730033525556792e-06,40.45676803588867,-0.7038630843162537,0.1455308347940445,0.2981350421905517,1923\n1588A,109.8538,40.6821,20170930,30.714285714285715,2071.0,5825.0,1137397.585112242,1375661.5005682171,1071,0.7632611989974976,259.3597412109375,290.6882019042969,88381.28125,0.0003560205805115,196.30389404296875,-8.995765711006243e-06,39.237552642822266,-0.7501318454742432,0.1409606337547302,0.3244596421718597,3476\n1589A,109.8654,40.6288,20170930,32.07142857142857,2079.0,5826.0,1139260.0927347871,1369360.7454669557,1055,0.7148751020431519,256.0800170898437,291.2636108398437,89149.0234375,0.000351826311089,197.93951416015625,-9.441674592380878e-06,39.64624786376953,-0.6938744187355042,0.1720020622014999,0.3459493815898895,2622\n1590A,110.0377,40.5546,20170930,28.73214285714285,2091.0,5854.0,1153743.5459229772,1362414.7680578046,1008,0.668042778968811,241.1048583984375,291.2204284667969,89192.984375,0.0004630404291674,198.19178771972656,-9.860789759841282e-06,40.9160385131836,-0.5848649740219116,0.322822093963623,0.3598752915859222,2485\n1591A,110.0023,39.8129,20170930,23.10714285714285,2210.0,5848.0,1164815.7018660689,1272533.0977150756,1453,2.376525640487671,23.99715232849121,288.7751770019531,85798.8828125,0.000866864924319,233.4088134765625,-2.226820470241364e-05,54.11300277709961,0.9664852023124696,2.171124219894409,0.2743096649646759,2027\n1592A,109.9486,39.8261,20170930,28.35185185185185,2208.0,5840.0,1160434.5733191592,1273489.105423313,1465,2.364349603652954,22.867605209350582,288.85089111328125,85873.5,0.0008634707191959,234.83660888671875,-2.1199150069151077e-05,53.48712539672852,0.9187678098678588,2.178534984588623,0.2830104827880859,2811\n1593A,109.7736,39.5986,20170930,19.035714285714285,2244.0,5812.0,1151108.5259831978,1244003.0072167134,1301,1.8665363788604736,14.322102546691896,289.24932861328125,86553.0390625,0.0007122118258848,209.0242919921875,-1.4699241546622945e-05,55.323036193847656,0.4617169201374054,1.808528542518616,0.2635433375835418,4464\n1594A,109.8119,39.5989,20170930,28.80357142857143,2244.0,5818.0,1154064.62943183,1244488.4352264225,1287,1.896769642829895,15.382038116455078,289.360595703125,86792.3828125,0.0007174403290264,208.85934448242188,-1.5789661119924858e-05,55.65653991699219,0.5031113028526306,1.8288286924362185,0.2595204412937164,4216\n1595A,109.9734,39.7884,20170930,24.48214285714285,2214.0,5844.0,1163042.862897224,1269237.1739986686,1436,2.2875969409942627,23.32419776916504,288.7681884765625,85796.8125,0.0008456370560452,232.12112426757807,-2.1218649635557085e-05,54.34563446044922,0.905710756778717,2.100663661956787,0.2658885717391968,2841\n1596A,122.2414,40.6592,20170930,21.571428571428577,2075.0,7807.0,2067961.71907158,1575242.6069631712,1,2.454392433166504,186.26547241210935,292.70416259765625,101058.9609375,0.001707857241854,306.3954162597656,-6.526894867420197e-05,63.1999626159668,-0.2678532302379608,2.439733028411865,0.6245948076248169,2073\n1597A,122.2703,40.7094,20170930,28.66666666666667,2067.0,7811.0,2068419.1699312376,1581747.6238909771,1,2.3905341625213623,186.55465698242188,292.6049499511719,101078.59375,0.0017472469480708,290.7958679199219,-4.990799425286241e-05,62.82298278808594,-0.2728730738162994,2.3749091625213623,0.5744801163673401,3198\n1598A,122.215,40.6511,20170930,20.107142857142858,2076.0,7802.0,2066279.668826488,1573735.7174838046,-5,2.49236273765564,185.7696990966797,292.7746887207031,101051.96875,0.001699642278254,320.4520263671875,-7.45276702218689e-05,63.41706848144531,-0.2505497932434082,2.4797372817993164,0.5973162055015564,3188\n1600A,124.3303,40.0625,20170930,19.240740740740737,2170.0,8141.0,2243394.661950886,1551222.956438772,8,0.2732250988483429,130.8211669921875,290.6941223144531,100677.8671875,0.0027966152410954,177.92430114746094,-2.5103447114815932e-05,76.40128326416016,0.2067760527133941,-0.1785934269428253,0.4842996597290039,2599\n1601A,124.4256,40.1503,20170930,19.821428571428573,2156.0,8156.0,2247304.215381009,1563639.5587508453,6,0.1394479274749755,345.1573791503906,290.3638610839844,100564.1171875,0.0025032581761479,164.1614990234375,-1.405845432600472e-05,77.63990783691406,-0.0357331372797489,-0.1347919404506683,0.5228680968284607,3584\n1602A,124.3933,40.1461,20170930,19.98148148148148,2157.0,8151.0,2245062.5035621133,1562411.4166237395,25,0.135305106639862,175.4651641845703,290.3515319824219,100494.46875,0.0025469854008406,163.50784301757812,-1.497574703535065e-05,77.64781951904297,0.0107101267203688,-0.1348805576562881,0.525471031665802,3465\n1603A,124.3678,40.1194,20170930,18.982142857142858,2161.0,8147.0,2244132.600214389,1558715.1596243945,17,0.1640479266643524,157.5553436279297,290.41778564453125,100521.0859375,0.0026851692236959,167.38690185546875,-1.802424412744585e-05,77.31111907958984,0.0626442804932594,-0.1516160070896148,0.4861555993556976,2554\n1604A,122.0247,41.1556,20170930,27.69642857142857,1995.0,7772.0,2035459.992169629,1629065.6048470377,4,1.93907368183136,8.89222526550293,291.3697509765625,101174.1328125,0.0019843359477818,270.1164855957031,-1.3553501048590988e-05,63.87263107299805,0.2997262477874756,1.9157689809799197,0.4978720545768738,4337\n1605A,122.0539,41.0903,20170930,24.55357142857143,2006.0,7777.0,2039772.966763095,1621991.3731828262,3,1.9691016674041748,6.876264572143555,291.54376220703125,101250.71875,0.0020893919281661,274.5867614746094,-1.6979858628474176e-05,63.597469329833984,0.2357446402311325,1.9549387693405151,0.5271481871604919,3865\n1606A,121.835,41.1042,20170930,25.33333333333333,2003.0,7742.0,2023224.6223259545,1619100.7577398848,2,1.9400709867477417,8.610487937927246,291.921630859375,101162.046875,0.0018017687834799,278.2936096191406,-1.49938296090113e-05,64.3208999633789,0.2904518246650696,1.918205738067627,0.5605220198631287,6386\n1607A,120.9092,40.7136,20170930,23.44642857142857,2066.0,7593.0,1967516.823308827,1554288.2541712576,35,2.6605870723724365,21.40508270263672,293.6308898925781,100737.0234375,0.0005128563498146,406.3712158203125,-0.00011308183457,67.77257537841797,0.9709790349006652,2.4770796298980717,0.6314782500267029,2716\n1608A,120.8392,40.7514,20170930,28.85714285714285,2060.0,7582.0,1961124.1979694788,1557346.6615054065,16,2.30241060256958,22.869792938232425,293.13043212890625,100190.8984375,0.0005133480299264,368.5808410644531,-9.144593786913902e-05,67.90730285644531,0.8947793841362,2.121429681777954,0.5684592723846436,2365\n1609A,120.8478,40.715,20170930,21.44230769230769,2066.0,7584.0,1962917.8920007013,1553225.3274631065,24,2.3912198543548584,22.57892227172852,293.33544921875,100386.8359375,0.0005081381532363,388.1784057617188,-0.0001036417015711,67.94444274902344,0.918096661567688,2.207947254180908,0.6308208107948303,3765\n1610A,120.8631,40.7736,20170930,21.410714285714285,2056.0,7586.0,1962190.5458368864,1560442.1496772766,22,2.379629135131836,22.364681243896484,293.1561889648437,100272.921875,0.000516481057275,365.4183349609375,-8.782014629105106e-05,67.7637939453125,0.9054240584373474,2.200645685195923,0.5609391331672668,3439\n1611A,118.5819,24.9117,20170930,25.10714285714285,4594.0,7221.0,2244153.6887551704,-328287.9348230369,13,0.8061106204986572,285.7011108398437,300.2095947265625,100541.5078125,0.0006431609508581,346.6879577636719,-2.703070822462905e-05,81.26810455322266,-0.776043713092804,-0.2181067466735839,0.3104874193668365,2393\n1612A,118.5972,24.8978,20170930,27.785714285714285,4596.0,7224.0,2245966.647465714,-329510.734765996,13,0.8231183886528015,286.9256896972656,300.2763977050781,100609.5859375,0.0006092611001804,355.1791076660156,-2.901548759837169e-05,81.36355590820312,-0.7874767184257507,-0.2395919859409332,0.3591359257698059,3201\n1614A,118.6108,24.9617,20170930,26.5,4586.0,7226.0,2245464.832000287,-321970.9438683692,218,0.8396987915039062,286.222900390625,300.2231140136719,100514.0625,0.0006947408546693,343.4005432128906,-1.916979090310633e-05,81.07950592041016,-0.8062765002250671,-0.2345468401908874,0.3721705675125122,7471\n1616A,117.6789,36.2289,20170930,28.375,2783.0,7077.0,1851721.157044244,962403.7775581736,214,1.0962731838226318,218.0817413330078,293.45880126953125,98740.109375,0.000473035062896,158.82420349121094,-8.774746675044298e-06,72.41899871826172,-0.6761480569839478,0.8629245162010193,0.6042298078536987,4071\n1618A,118.3418,35.0573,20170930,21.285714285714285,2971.0,7183.0,1938178.593222508,837382.3356760035,69,1.0981991291046145,230.16796875,294.3153991699219,100469.6875,0.0015218714252114,198.67076110839844,-1.5453208106919192e-05,78.410888671875,-0.8433170318603516,0.703461229801178,0.6025092601776123,3253\n1619A,118.2939,35.0622,20170930,22.80357142857143,2970.0,7175.0,1934137.1556827885,837013.5355967908,69,1.0748717784881592,230.23892211914065,294.29266357421875,100397.75,0.0015359541866928,196.3642425537109,-1.562691613798961e-05,78.26383209228516,-0.8262555599212646,0.6874961853027344,0.6018558144569397,2545\n1620A,118.2764,34.9817,20170930,23.92857142857143,2983.0,7172.0,1934992.171932796,827221.8775153859,67,1.113463044166565,229.68272399902344,294.3335876464844,100437.2578125,0.0015277423663064,203.35202026367188,-1.6141797459567897e-05,77.96369171142578,-0.848967432975769,0.720454216003418,0.605521023273468,2386\n1621A,118.4023,35.0896,20170930,25.375,2966.0,7192.0,1942186.8411938783,842367.2283826501,66,1.094541072845459,230.86654663085935,294.2636108398437,100464.8984375,0.0015332516049966,197.7674102783203,-1.5090510714799166e-05,78.63899230957031,-0.8489933013916016,0.6908187866210938,0.6109956502914429,3919\n1622A,116.3061,37.4664,20170930,38.72,2585.0,6857.0,1709166.3728149745,1083860.779214415,22,2.0747828483581543,183.3717193603516,295.82110595703125,100929.890625,6.722228863509372e-05,183.02932739257807,-1.0009672223532108e-05,53.66667175292969,-0.1220224797725677,2.0711915493011475,0.6438643932342529,2718\n1625A,115.9848,36.4372,20170930,42.981481481481474,2750.0,6806.0,1710247.6623514234,956308.2362773644,34,1.679880142211914,193.68161010742188,295.63885498046875,100809.75,0.0004927417612634,172.59230041503906,-1.2571822480822448e-05,59.35005569458008,-0.3973243832588196,1.632216453552246,0.6822876334190369,2839\n1627A,115.9835,36.4796,20170930,38.017857142857146,2743.0,6805.0,1709054.5585519725,961306.2282468592,33,1.6970725059509275,193.17837524414065,295.668701171875,100819.6171875,0.0004708275664597,172.96954345703125,-1.2184274055471178e-05,58.9620475769043,-0.386893481016159,1.652382731437683,0.6836236715316772,3658\n1628A,118.0062,37.3803,20170930,42.32142857142857,2599.0,7129.0,1845566.532374693,1104423.4537899457,12,1.6171317100524902,205.9569091796875,295.59063720703125,101152.046875,9.82551500783302e-05,184.76931762695312,-1.0925293281616176e-05,54.747169494628906,-0.707791268825531,1.4540104866027832,0.6078726053237915,2682\n1629A,118.0018,37.3617,20170930,40.05357142857143,2602.0,7128.0,1845743.867027759,1102144.1387708455,12,1.6012760400772097,206.141357421875,295.5996398925781,101150.6796875,0.0001006696911645,185.27952575683597,-1.1138485206174664e-05,54.73969268798828,-0.7054823040962219,1.437490701675415,0.6370278000831604,2538\n1630A,117.9776,37.393,20170930,40.25925925925926,2597.0,7124.0,1842956.916835168,1105386.6184176195,10,1.609757423400879,205.2114105224609,295.5987548828125,101148.7578125,9.395126107847318e-05,183.44793701171875,-1.0772504538181238e-05,54.66011428833008,-0.685672402381897,1.4564244747161863,0.6338110566139221,4511\n1632A,118.0448,36.838,20170930,41.125,2686.0,7135.0,1863898.159140668,1041146.3515793368,31,1.6063575744628906,196.8223114013672,295.1966857910156,100485.8828125,0.0003195868048351,170.267578125,-9.006012987811118e-06,61.34556198120117,-0.4648738801479339,1.5376205444335938,0.6048755049705505,3701\n1633A,117.8477,36.497,20170930,36.634615384615394,2741.0,7104.0,1857771.4957690297,997198.9787962376,210,1.4474815130233765,192.2549743652344,292.5836486816406,96888.15625,0.0005585103062912,163.54351806640625,-9.734717423270922e-06,72.51284790039062,-0.307236909866333,1.414499282836914,0.5932139754295349,3201\n1634A,117.9544,36.6377,20170930,26.61111111111111,2718.0,7121.0,1862341.9586199876,1015809.776395412,97,1.610474705696106,188.99545288085935,293.91943359375,99382.71875,0.0004850981640629,165.42340087890625,-9.681064511823934e-06,67.73877716064453,-0.2518002390861511,1.5906682014465332,0.5683982968330383,2759\n1635A,118.3092,36.8198,20170930,39.660714285714285,2689.0,7177.0,1885401.5824448736,1044044.8091340396,65,1.6763558387756348,195.8303680419922,294.8346862792969,100182.46875,0.0003799360420089,172.28822326660156,-1.0000262591347564e-05,62.65309143066406,-0.4572805166244507,1.612781286239624,0.6034841537475586,3859\n1636A,117.8512,36.8041,20170930,33.58,2691.0,7104.0,1849471.4857277223,1033488.8425855356,50,1.534207463264465,194.5902862548828,294.6904602050781,100049.1484375,0.0003235883195884,161.07012939453125,-9.448135642742272e-06,62.62086868286133,-0.3864640593528747,1.4847350120544434,0.6158131957054138,3245\n1637A,117.5564,34.864000000000004,20170930,30.910714285714285,3002.0,7057.0,1879442.7885220505,799424.9153918938,73,1.366574764251709,242.94227600097656,294.3582763671875,100015.1796875,0.0016294491942971,199.6949005126953,-1.5914140021777712e-05,78.56073760986328,-1.2169811725616455,0.6216778755187988,0.6623306274414062,2450\n1638A,117.2852,34.7837,20170930,34.535714285714285,3015.0,7014.0,1859415.8793550988,784826.855821789,70,1.5274107456207275,239.8046875,294.8029479980469,100480.53125,0.0016790656372904,195.82733154296875,-2.5448596716159955e-05,75.32564544677734,-1.3201417922973633,0.7682506442070007,0.7122446298599243,4527\n1639A,117.5852,34.7745,20170930,29.32142857142857,3016.0,7062.0,1884260.5779433723,789460.6903400332,59,1.384949803352356,243.19493103027344,294.5254821777344,100501.15625,0.0017318489262834,201.37127685546875,-1.732513919705525e-05,77.44420623779297,-1.2361109256744385,0.6245924830436707,0.6385166049003601,5542\n1640A,117.732,34.5667,20170930,31.910714285714285,3049.0,7085.0,1902036.3202611124,767888.5054683565,26,1.389529824256897,241.8251190185547,294.4718322753906,100782.6171875,0.0019431217806413,203.7572479248047,-1.4566973732144106e-05,75.07070922851562,-1.2248643636703491,0.6561253070831299,0.6586620807647705,3578\n1641A,117.4518,35.0992,20170930,28.944444444444446,2964.0,7040.0,1864448.602841103,825083.3173823331,168,1.4003232717514038,237.8453826904297,294.1005554199219,99223.8671875,0.0014635671395808,192.1671295166016,-1.3454660802381111e-05,79.55946350097656,-1.1855124235153198,0.7452956438064575,0.6837241053581238,4183\n1642A,121.2514,37.5639,20170930,24.240740740740737,2570.0,7648.0,2094184.019462264,1191090.8632146695,5,1.5692245960235596,5.936279296875,294.12530517578125,100759.21875,0.0003713530313689,270.03106689453125,-5.853003312950023e-05,72.12864685058594,0.1622882336378097,1.5608102083206177,0.4657451808452606,3793\n1644A,121.3181,37.5436,20170930,23.62,2573.0,7659.0,2100029.808814607,1190136.4752527298,19,1.5555706024169922,6.580568313598633,294.2492980957031,100887.671875,0.0003763886052183,277.7940979003906,-6.49466528557241e-05,72.02967071533203,0.1782626360654831,1.5453226566314695,0.479640930891037,2455\n1646A,121.2611,37.4967,20170930,27.37037037037037,2581.0,7650.0,2097094.775175854,1183425.6964646445,10,1.4441850185394287,8.408487319946289,293.9540100097656,100741.6484375,0.0004038505721837,236.5093994140625,-4.584520502248779e-05,72.92875671386719,0.211175799369812,1.4286619424819946,0.4542300105094909,3722\n1648A,119.12,36.7019,20170930,33.767857142857146,2708.0,7307.0,1953158.6059717776,1046001.211541831,31,1.7635512351989746,200.38397216796875,294.7514038085937,100891.453125,0.0004018862964585,205.1562347412109,-1.5548765077255666e-05,66.83707427978516,-0.6142448782920837,1.653123140335083,0.5686174631118774,3568\n1650A,119.1425,36.7008,20170930,35.214285714285715,2708.0,7311.0,1954976.2242942336,1046319.3138404554,30,1.7469686269760132,200.4824676513672,294.7090759277344,100893.3515625,0.0004128509317524,204.5105438232422,-1.5369196262327023e-05,67.06623840332031,-0.6112830638885498,1.636530518531799,0.5482189059257507,3661\n1652A,119.1939,36.7731,20170930,34.42857142857143,2696.0,7319.0,1956917.441052963,1055844.4194704655,15,1.7691566944122314,202.09634399414065,294.77471923828125,101091.1328125,0.0004046045651193,208.0274200439453,-1.809332752600312e-05,66.39037322998047,-0.6654761433601379,1.639224410057068,0.5479649305343628,4061\n1653A,116.6305,35.42800000000001,20170930,35.107142857142854,2912.0,6909.0,1788699.121960943,848541.8910247552,38,1.271011471748352,212.95867919921875,295.1295166015625,100812.6796875,0.0013039157493039,151.98062133789062,-1.442237953597214e-05,67.79169464111328,-0.6914554238319397,1.0664706230163574,0.7232164144515991,3734\n1654A,116.5856,35.4144,20170930,32.839285714285715,2914.0,6902.0,1785404.350504224,846121.242609887,40,1.264093041419983,211.7569122314453,295.0997009277344,100802.359375,0.0013422156916931,151.8455352783203,-1.4831132830295246e-05,67.49088287353516,-0.665295422077179,1.0748549699783323,0.6851370334625244,3299\n1655A,116.5546,35.4039,20170930,30.535714285714285,2915.0,6897.0,1783157.6809908028,844319.8292094311,39,1.2576245069503784,210.91465759277344,295.0608825683594,100783.34375,0.0013620605459436,151.53802490234375,-1.4955289771023672e-05,67.27503204345703,-0.6461009383201599,1.0789684057235718,0.7313851714134216,3051\n1656A,117.1436,36.1942,20170930,37.98214285714285,2789.0,6991.0,1809704.7405988069,948337.2127523078,142,0.9245148301124572,229.5628967285156,293.8092956542969,98562.1953125,0.0005400726804509,141.32366943359375,-1.0154266419704072e-05,72.46270751953125,-0.7036500573158264,0.5996701121330261,0.6415358781814575,2833\n1657A,117.0881,36.1942,20170930,32.5,2789.0,6982.0,1805245.714466356,947316.2890769856,166,0.9545499682426452,229.57699584960935,293.7909240722656,98486.3359375,0.0005544059677049,142.98971557617188,-9.964924174710175e-06,72.06465148925781,-0.7266620397567749,0.6189732551574707,0.6229603290557861,2676\n1658A,117.1081,36.1758,20170930,31.0,2792.0,6985.0,1807349.704196868,945512.1025464692,137,0.9375948309898376,231.7577362060547,293.8815002441406,98740.421875,0.000559136562515,141.6885223388672,-1.0073816156364046e-05,72.24136352539062,-0.7363720536231995,0.5803794264793396,0.6166723370552063,2865\n1659A,119.4641,35.4178,20170930,21.767857142857142,2913.0,7362.0,2018749.783210613,902246.3747929828,15,1.3202210664749146,224.9449462890625,295.3510131835937,100800.265625,0.0017813656013458,375.7815551757813,-9.403147123521194e-05,73.53779602050781,-0.9326181411743164,0.9344554543495178,0.579110860824585,3306\n1660A,119.5198,35.4234,20170930,21.51851851851852,2912.0,7371.0,2023083.2514799444,904047.8418682092,29,1.5456480979919434,224.5073089599609,295.58331298828125,100732.71875,0.0018243786180391,402.53662109375,-0.0001111210294766,72.59008026123047,-1.0834745168685913,1.1023207902908323,0.5540758371353149,3639\n1661A,119.54,35.3962,20170930,26.64814814814815,2917.0,7374.0,2025527.5879698184,901278.7394994246,8,1.5876632928848269,225.40451049804688,295.6324768066406,100782.8515625,0.0017916009528562,419.7388305664063,-0.0001198492172989,72.15984344482422,-1.1305193901062012,1.1147198677062988,0.5373132824897766,2482\n1662A,122.1206,37.4294,20170930,19.785714285714285,2591.0,7787.0,2166234.7051319983,1194199.0325624165,49,1.58781898021698,3.4520044326782227,294.6637268066406,100704.921875,0.0003550962428562,353.8596496582031,-9.428700286662206e-05,72.77916717529297,0.0956031382083892,1.5849381685256958,0.4471709132194519,3458\n1665A,118.5019,37.4658,20170930,37.80357142857143,2586.0,7208.0,1882119.2321282648,1123918.8345394244,5,1.9469507932662964,207.1301422119141,295.45379638671875,101225.7109375,9.991896513383836e-05,201.0538024902344,-2.2699687178828757e-05,57.14484024047852,-0.8878110647201538,1.7327460050582886,0.5661182999610901,2448\n1666A,118.6672,37.4314,20170930,32.425925925925924,2591.0,7235.0,1896097.4557356676,1123039.3271308015,3,2.145406723022461,206.18670654296875,295.6053771972656,101255.2109375,9.882528684102e-05,232.78958129882807,-4.438199175638147e-05,58.40398025512695,-0.9467371106147766,1.925216555595398,0.5834116339683533,3796\n1667A,118.5857,37.4442,20170930,39.518518518518526,2589.0,7222.0,1889324.6769323184,1122979.022446825,3,2.0264360904693604,206.70993041992188,295.520263671875,101245.1484375,0.0001018580223899,217.6405029296875,-3.3840700780274346e-05,57.79821014404297,-0.9108055233955384,1.810214638710022,0.5837904810905457,3371\n1669A,113.586606,24.769519,20170930,34.464285714285715,4617.0,6422.0,1778356.6094179966,-446737.7104456054,76,0.163762480020523,10.445557594299316,300.4103088378906,99421.421875,0.0021976279094815,74.41382598876953,-7.932845619507134e-06,75.70427703857422,0.0296894498169422,0.1610487103462219,0.5434620380401611,4327\n1670A,113.5593889,24.81119444,20170930,38.48214285714285,4610.0,6417.0,1774872.7064665484,-442465.1156395304,83,0.1689012795686721,35.06245422363281,300.331787109375,99085.5703125,0.0023132236674427,73.2534408569336,-7.786431524436921e-06,75.31124114990234,0.0970260351896286,0.1382519006729126,0.5361699461936951,5326\n1671A,113.59806100000002,24.795928,20170930,33.48148148148148,4613.0,6424.0,1778861.143025312,-443511.2655141356,86,0.1652346551418304,2.887935161590576,300.4935607910156,99412.7109375,0.0021160203032195,74.9256820678711,-7.942355296108872e-06,75.5826187133789,0.0083247069269418,0.1650248169898986,0.5432865619659424,3835\n1672A,113.6734722,24.77908333,20170930,36.71428571428572,4615.0,6436.0,1786357.5674637386,-444068.730860893,109,0.2348418235778808,214.84280395507807,300.20904541015625,99097.7265625,0.0018788648303598,77.85684967041016,-8.179552423825953e-06,75.88584899902344,-0.1341680139303207,0.1927423775196075,0.5281919836997986,6384\n1673A,113.59708329999998,24.68636111,20170930,36.42592592592592,4630.0,6424.0,1781167.7040479037,-456052.3029748388,73,0.1739146262407302,181.9875640869141,300.1416931152344,99398.953125,0.0022312458604574,72.8598403930664,-8.243635420512874e-06,76.89657592773438,-0.0060317181050777,0.1738100051879882,0.5589727759361267,4538\n1674A,116.6794,23.3667,20170930,22.58333333333333,4841.0,6917.0,2105426.7194901328,-544986.0801953013,11,1.1526830196380615,238.8715667724609,300.3267822265625,100618.328125,0.002751110587269,262.23876953125,-5.480816253111698e-05,83.8719253540039,-0.9866908192634584,0.5959188938140869,0.3516853153705597,2338\n1675A,116.7244,23.3633,20170930,21.017857142857142,4842.0,6924.0,2109811.824462345,-544404.5088860019,8,1.2326043844223022,236.93313598632807,300.42236328125,100735.765625,0.0025677524972707,282.4616394042969,-6.169041444081813e-05,83.75318145751953,-1.0329450368881226,0.6725608110427856,0.3528627753257751,3504\n1676A,116.7258,23.2775,20170930,22.80357142857143,4856.0,6924.0,2112121.305216717,-554053.7485041035,18,1.414937973022461,231.2179412841797,300.5550537109375,100800.34375,0.0025824645999819,324.7835998535156,-7.496625039493665e-05,82.916748046875,-1.1029691696166992,0.8862892389297485,0.3586796224117279,3711\n1677A,116.7519,23.4714,20170930,32.785714285714285,4825.0,6928.0,2109693.098022501,-531613.8744881025,6,0.9995850920677184,246.8787841796875,300.2267761230469,100749.2890625,0.0025832834653556,238.83094787597656,-4.775974957738072e-05,84.79679107666016,-0.9192811250686646,0.3925462365150451,0.3563763499259949,3009\n1678A,116.6092,23.2539,20170930,24.59615384615385,4859.0,6905.0,2101564.770380604,-559215.9042309712,27,1.263683199882507,231.35646057128903,300.30908203125,100682.9609375,0.0030912468209862,273.4526672363281,-5.433174374047667e-05,83.3224868774414,-0.9869741201400756,0.7891624569892883,0.380900889635086,5836\n1679A,116.4019,23.2536,20170930,27.57142857142857,4860.0,6872.0,2081733.081246944,-563662.5740918437,6,0.8545143604278564,238.3301696777344,299.5745544433594,100213.4375,0.0040271217003464,193.6629943847656,-2.6042820536531508e-05,84.47483825683594,-0.7272530794143677,0.448662132024765,0.3815098404884338,2051\n1680A,110.3539,21.2706,20170930,18.803571428571427,5177.0,5905.0,1534712.0536194833,-899260.9562134874,20,1.7086435556411743,258.0406494140625,300.2131652832031,100577.8984375,0.0045152809470891,219.9413146972656,-1.777288161974866e-05,84.91239929199219,-1.671543002128601,0.354128360748291,0.3838802278041839,2226\n1684A,110.3316,21.2679,20170930,18.803571428571427,5177.0,5901.0,1532549.2084021962,-899914.3795420282,30,1.6964467763900757,258.0435791015625,300.19952392578125,100538.765625,0.0045467955060303,216.07199096679688,-1.7639280486037023e-05,84.9641342163086,-1.6596291065216064,0.351514995098114,0.3870613873004913,3936\n1685A,110.4558,21.2567,20170930,21.696428571428577,5179.0,5921.0,1545062.9788773125,-899235.8644545673,6,1.9369020462036133,255.0013732910156,300.48309326171875,100756.40625,0.004091699142009,237.0121612548828,-1.850613989518024e-05,84.67450714111328,-1.8708964586257932,0.5013340711593628,0.3843742311000824,5723\n1686A,111.0286,21.4689,20170930,11.8125,5145.0,6013.0,1597876.7960053124,-866079.9478686318,10,2.0466179847717285,259.88165283203125,300.4872436523437,100788.2890625,0.0037196448538452,253.68003845214844,-4.087563502253033e-05,85.26299285888672,-2.0147719383239746,0.3596367537975311,0.4061488509178161,5821\n1687A,110.9294,21.6533,20170930,16.692307692307693,5116.0,5997.0,1584662.1274604711,-846822.8130869952,25,1.561690330505371,261.47509765625,300.0455627441406,100608.9453125,0.0042473045177757,179.53135681152344,-1.872131360869389e-05,86.66996002197266,-1.5444263219833374,0.2315684109926223,0.4301137328147888,2695\n1688A,110.9067,21.6669,20170930,21.48214285714285,5113.0,5993.0,1582172.2461283829,-845648.9609119704,18,1.5215327739715576,261.15924072265625,300.0237121582031,100609.9140625,0.0042166686616837,175.2766876220703,-1.792878902051598e-05,86.59683990478516,-1.503446102142334,0.2339054197072982,0.4324631989002228,4055\n1689A,110.8592,21.6828,20170930,21.55555555555556,5111.0,5985.0,1577195.652522287,-844612.3309775222,16,1.50312602519989,260.332275390625,300.0450439453125,100636.5390625,0.0041321730241179,174.78074645996094,-1.7694164853310212e-05,86.15320587158203,-1.4817684888839722,0.2524877190589905,0.4344558417797088,5054\n1690A,116.1278,24.3289,20170930,25.75,4687.0,6828.0,2028900.049341138,-447698.42325557256,113,0.6543295979499817,197.3396759033203,299.89678955078125,98915.1484375,0.0012283793184906,140.53939819335938,-1.3114518878865056e-05,75.9196548461914,-0.1950081586837768,0.6245951056480408,0.4014069139957428,5744\n1691A,116.0797,24.2719,20170930,28.35714285714285,4697.0,6821.0,2025761.5984431107,-455159.15490481566,86,0.6689506769180298,200.30661010742188,299.6634521484375,98440.5859375,0.0012502792524173,144.7994842529297,-1.3327118722372688e-05,75.86233520507812,-0.232148602604866,0.6273770928382874,0.3994607627391815,3349\n1692A,116.1248,24.2654,20170930,29.464285714285715,4698.0,6828.0,2030189.843191271,-454965.8424819826,100,0.699855625629425,201.5440826416016,299.6299743652344,98530.65625,0.0012425639433786,139.9855194091797,-1.300590065511642e-05,76.43229675292969,-0.2569915950298309,0.650963306427002,0.4272713363170624,3306\n1696A,114.6778,23.7569,20170930,27.09615384615385,4779.0,6596.0,1904794.0857942463,-541658.8867839425,55,0.2415148466825485,206.94200134277344,299.99432373046875,99213.296875,0.003620637813583,112.43049621582033,-2.8665926947724078e-05,84.0666732788086,-0.1094245761632919,0.2153037041425705,0.4680830240249634,2412\n1697A,114.6944,23.7586,20170930,26.54,4779.0,6599.0,1906340.17052293,-541143.933139435,44,0.2488391995429992,209.0506591796875,300.02740478515625,99387.6171875,0.0036212892737239,112.29624938964844,-2.8191099772811867e-05,84.03054809570312,-0.1208287924528122,0.2175347208976745,0.4706310629844665,2940\n1698A,114.6892,23.7233,20170930,23.67857142857143,4784.0,6598.0,1906657.5892924385,-545252.5686774066,41,0.272601306438446,210.69888305664065,299.9159851074219,99134.421875,0.0036813891492784,111.2941436767578,-2.7559115551412106e-05,84.22647857666016,-0.1391664147377014,0.2344017624855041,0.4752185046672821,2425\n1699A,111.9786,21.8586,20170930,25.23214285714285,5083.0,6165.0,1683977.5454464268,-806139.319777753,7,0.7903017997741699,272.1351928710937,299.95513916015625,100510.625,0.0052651767618954,152.66162109375,-1.644256008148659e-05,87.07344055175781,-0.7897545099258423,-0.0294070057570934,0.4302004277706146,4591\n1700A,111.9508,21.8536,20170930,25.464285714285715,5084.0,6160.0,1681346.25577274,-807180.9640077633,5,0.7803757786750793,272.5277099609375,299.9044494628906,100387.9453125,0.0051898625679314,152.9268035888672,-1.8085438568959944e-05,87.03434753417969,-0.7796180844306946,-0.0343797095119953,0.4320071339607239,2766\n1701A,111.9494,21.865,20170930,22.16666666666667,5082.0,6160.0,1680984.090412361,-805915.3515098561,7,0.7606402635574341,273.6650695800781,299.8724365234375,100368.125,0.0052187666296958,147.7329559326172,-1.718108615023084e-05,87.26518249511719,-0.7590869665145874,-0.0485864728689193,0.425008475780487,2582\n1702A,113.0425,23.6936,20170930,30.839285714285715,4789.0,6335.0,1749702.6867738983,-579268.5600354346,13,0.4640269577503204,230.99888610839844,300.19012451171875,99971.203125,0.003286630148068,95.34774780273438,-1.171465828520013e-05,82.99581909179688,-0.3606033325195312,0.2920381128787994,0.5696256160736084,1461\n1703A,113.0208,23.7106,20170930,31.910714285714285,4786.0,6331.0,1747262.832334441,-577718.6275571218,13,0.4495289921760559,231.6241912841797,300.0712585449219,99740.3359375,0.0033220336772501,94.26043701171876,-1.1622416423051618e-05,83.16593933105469,-0.3524033725261688,0.2790845334529876,0.584011971950531,2579\n1705A,116.6339,23.6714,20170930,30.285714285714285,4793.0,6909.0,2093378.0221197691,-511547.168014074,17,0.6589447855949402,255.4297790527344,299.4403076171875,100826.4375,0.0033730284776538,137.54583740234375,-1.975189479708206e-05,87.8724136352539,-0.6377467513084412,0.1657930463552475,0.4104103744029999,3712\n1706A,116.6447,23.6706,20170930,22.18518518518519,4793.0,6911.0,2094426.36193087,-511407.4339609547,18,0.655789315700531,255.6213531494141,299.3873596191406,100679.5,0.0033502492588013,139.0439910888672,-2.0088937162654474e-05,87.92752838134766,-0.6352408528327942,0.162876158952713,0.3727263212203979,2451\n1708A,116.3697,23.5353,20170930,26.092592592592588,4814.0,6867.0,2071619.9814654037,-532528.3934970972,8,0.7009618282318115,258.16552734375,299.2298583984375,100127.1328125,0.0038344678469002,127.47767639160156,-1.832923589972779e-05,85.1409683227539,-0.6860565543174744,0.14378422498703,0.385844886302948,2206\n1709A,116.3242,23.5486,20170930,22.31481481481481,4812.0,6860.0,2066947.1946345128,-531983.3617690306,6,0.6806612014770508,254.94818115234372,299.1843566894531,100119.5,0.0037780879065394,118.93670654296876,-1.6009715182008222e-05,85.31130981445312,-0.6573018431663513,0.1767879128456115,0.3989709615707397,3085\n1710A,116.3594,23.5739,20170930,24.240740740740737,4808.0,6865.0,2069673.62946269,-528382.5836535684,31,0.698769748210907,254.84963989257807,299.1097412109375,99967.8203125,0.0037804753519594,121.15609741210938,-1.6455771401524544e-05,85.63702392578125,-0.6744757294654846,0.1826516240835189,0.3933521509170532,5388\n1711A,116.4094,23.5292,20170930,24.285714285714285,4815.0,6873.0,2075560.1551641347,-532379.9499796522,5,0.7219247221946716,260.48065185546875,299.2673034667969,100133.8359375,0.003880760166794,134.75575256347656,-2.027671325777192e-05,85.03706359863281,-0.7119786739349365,0.1194220855832099,0.4102691113948822,4918\n1712A,112.0392,22.9169,20170930,39.767857142857146,4913.0,6174.0,1668906.9600557317,-685097.1764186576,98,0.7659308314323425,232.17138671875,298.872802734375,98101.6171875,0.0034833580721169,88.9942398071289,-6.734621365467319e-06,88.61656188964844,-0.604957103729248,0.4697626829147339,0.5300753116607666,4359\n1713A,112.0369,22.9394,20170930,41.2962962962963,4910.0,6174.0,1668235.9417804102,-682578.3419451161,84,0.7582194209098816,233.287109375,298.9216003417969,98153.0703125,0.0034821422304958,90.2244644165039,-6.97544510330772e-06,88.39012145996094,-0.6078073978424072,0.4532845020294189,0.5276395082473755,3853\n1714A,112.0539,22.9539,20170930,38.21428571428572,4907.0,6177.0,1669594.7988456667,-680641.0578152904,93,0.7349377870559692,233.94346618652344,299.0429382324219,98344.3125,0.0034955434966832,90.62667846679688,-7.234822533064289e-06,88.02855682373047,-0.5941385626792908,0.4325885772705078,0.5255454182624817,5888\n1715A,102.5778,24.3694,20170930,10.375,4681.0,4660.0,732243.8087000807,-633716.8711679808,1683,1.0896782875061035,197.4480743408203,291.54345703125,81445.703125,0.0030384513083845,146.93820190429688,-8.827835699776188e-06,87.05963897705078,-0.3267211019992828,1.0395441055297852,0.2891216874122619,3989\n1718A,115.42277,35.248889,20170930,38.285714285714285,2940.0,6716.0,1694779.5835330973,805984.7650902731,52,1.1345710754394531,205.8314514160156,295.14019775390625,100625.9453125,0.0014997227117419,157.5093994140625,-1.3163770745450163e-05,68.60899353027344,-0.4943476319313049,1.02121102809906,0.7472654581069946,2547\n1719A,115.474722,35.2375,20170930,43.375,2942.0,6724.0,1699312.9210799732,805535.9362028537,54,1.1481590270996094,206.74876403808597,295.1033020019531,100636.109375,0.0015468557830899,157.11776733398438,-1.2936448911204934e-05,68.4766845703125,-0.5167482495307922,1.025300145149231,0.7478283643722534,3074\n1720A,115.455,35.27,20170930,49.16071428571429,2937.0,6721.0,1696888.3845974102,809036.3481326532,52,1.1511211395263672,205.9104766845703,295.13739013671875,100626.5625,0.001492258394137,158.2197723388672,-1.3230051081336567e-05,68.34321594238281,-0.5029874444007874,1.035414695739746,0.7575891017913818,3727\n1721A,113.3819,40.1097,20170930,29.875,2163.0,6389.0,1417699.1783741184,1352644.2647374263,1061,0.957804262638092,75.83535766601562,289.1146545410156,88502.1640625,0.0003434550599195,93.46646881103516,-7.080220711941365e-06,49.34415817260742,0.928674578666687,0.2344196885824203,0.3255697786808014,3488\n1723A,113.2994,40.0758,20170930,36.2037037037037,2168.0,6376.0,1412176.251040361,1347391.3963572923,1044,1.1686736345291138,77.66829681396484,288.99078369140625,88702.4609375,0.000482318282593,90.58597564697266,-7.102883046172792e-06,50.708343505859375,1.1416994333267212,0.2496404200792312,0.3721341788768768,2450\n1724A,113.3444,40.0917,20170930,30.142857142857142,2165.0,6383.0,1415248.4148736016,1349945.4090014736,1063,1.0622202157974243,77.16757202148438,289.1347045898437,88699.078125,0.0004032589495182,92.27135467529295,-7.086433470249176e-06,49.97672271728516,1.035680651664734,0.2359605580568313,0.3326208293437958,3139\n1725A,113.2661,40.1269,20170930,35.232142857142854,2160.0,6371.0,1408483.6377929936,1353041.4643551658,1088,1.1976585388183594,83.53064727783203,288.3558654785156,88054.6953125,0.0005791288567706,92.12942504882812,-7.000067398621468e-06,51.43328475952149,1.1900262832641602,0.1349935084581375,0.3021444678306579,2591\n1726A,113.2711,40.0844,20170930,32.17857142857143,2167.0,6371.0,1409823.5574941826,1348016.300963308,1059,1.2518714666366575,80.27403259277344,288.6307678222656,88357.7421875,0.0005602035089395,90.1650390625,-7.0801670517539605e-06,51.29791259765625,1.233869552612305,0.2115374058485031,0.3338140249252319,2114\n1727A,113.1097,36.1542,20170930,61.92857142857143,2795.0,6346.0,1485084.6164099113,875952.9462575667,943,1.4830695390701294,1.145892858505249,289.7315979003906,90163.828125,0.0007060160278342,123.49652862548828,-5.231679551798152e-06,71.93084716796875,0.0296626258641481,1.482772946357727,0.4594143331050873,2909\n1728A,113.0972,36.1939,20170930,61.82142857142857,2789.0,6344.0,1483190.8396978204,880489.7112817134,929,1.4710148572921753,2.061336040496826,289.7853698730469,90263.03125,0.0006968003581278,123.06932067871094,-5.348427293938585e-06,71.40863037109375,0.0529136136174202,1.4700629711151123,0.4869199991226196,2741\n1730A,113.0886,36.2126,20170930,61.5,2786.0,6342.0,1482079.4908111223,882586.0441517455,921,1.4639323949813845,2.514735221862793,289.81268310546875,90338.484375,0.0006949582020752,123.01079559326172,-5.4265838116407394e-06,71.16267395019531,0.0642316341400146,1.4625226259231567,0.4701187014579773,2417\n1731A,113.0844444,36.1855,20170930,61.46,2790.0,6341.0,1482343.4098112884,879297.2939209496,923,1.4905716180801392,2.297870635986328,289.8544006347656,90417.2421875,0.0007022336358204,123.5536651611328,-5.362033334677108e-06,71.45987701416016,0.059761457145214,1.4893730878829956,0.4690352380275726,2531\n1733A,111.5531,36.0783,20170930,59.46428571428572,2808.0,6096.0,1360243.984998099,844368.3913091259,461,0.4879102706909179,13.238749504089355,292.8180847167969,94549.0546875,0.0006889355718158,56.37788772583008,-4.875609647569945e-06,68.19801330566406,0.1117326915264129,0.4749444425106048,0.4495660066604614,2388\n1734A,111.5028,36.0714,20170930,60.55357142857143,2809.0,6088.0,1356289.2270501684,842849.6057516778,449,0.5789233446121216,41.59120178222656,292.6269836425781,94324.28125,0.0007432948914356,54.62590789794922,-4.788927526533371e-06,68.30037689208984,0.3842865824699402,0.4329850077629089,0.3887108564376831,2079\n1735A,111.5169,36.0822,20170930,60.16071428571429,2807.0,6091.0,1357218.3810619283,844333.2561783695,453,0.5304004549980164,32.71633529663086,292.7855224609375,94524.6171875,0.0007190051255747,55.551639556884766,-4.815659394807881e-06,68.26423645019531,0.2866633832454681,0.4462608098983764,0.4787538647651672,2119\n1736A,111.5025,36.0875,20170930,65.91071428571429,2806.0,6088.0,1355939.0139062493,844767.0044048904,440,0.583426833152771,42.49611282348633,292.6365966796875,94362.0703125,0.0007372465915977,55.12211227416992,-4.778292350238189e-06,68.32252502441406,0.3941188156604767,0.4301827549934387,0.4648902118206024,2375\n1737A,111.4917,36.0417,20170930,58.41071428571429,2813.0,6087.0,1355986.122318955,839151.8688522534,450,0.590912938117981,43.354339599609375,292.591796875,94264.8671875,0.0007573813199996,53.91914367675781,-4.798322152055334e-06,68.34500885009766,0.4056569635868072,0.4296748638153076,0.4394416809082031,3498\n1738A,113.5753,37.8564,20170930,54.92857142857143,2523.0,6420.0,1484010.913477135,1085897.9542149482,699,0.7837592363357544,63.06124496459961,290.576171875,91446.1875,0.0003024670295417,80.6080551147461,-4.800996521225898e-06,69.91385650634766,0.6987029910087585,0.355095237493515,0.438304990530014,2445\n1739A,113.4922,37.8792,20170930,56.53571428571429,2519.0,6407.0,1476932.2220539914,1087367.8336793524,814,0.6795017123222351,71.16828918457031,289.8800964355469,90331.4921875,0.0003199540078639,80.16259765625,-4.314212674216833e-06,70.8656005859375,0.6431204676628113,0.2193597108125686,0.4679921567440033,4051\n1740A,113.5922,37.8561,20170930,53.92857142857143,2523.0,6423.0,1485351.7954555082,1086117.5004785748,679,0.8062394857406616,62.32240295410156,290.751708984375,91762.421875,0.0003038122958969,80.2254638671875,-4.896365680906456e-06,69.74153137207031,0.7139738202095032,0.3745177984237671,0.4777246415615082,2388\n1741A,113.6292,37.8531,20170930,55.66071428571429,2524.0,6429.0,1488341.0136717637,1086319.2934774538,657,0.852242648601532,59.79055404663086,291.0151672363281,92211.34375,0.0003000794677063,79.97579956054688,-5.114253326610196e-06,69.35685729980469,0.7364879846572876,0.4288391172885895,0.4392672181129455,3722\n1742A,113.5689,37.8694,20170930,51.518518518518526,2521.0,6419.0,1483208.8968859152,1087353.1787178563,691,0.7731363773345947,65.61746215820312,290.5615234375,91469.7578125,0.0003147449169773,79.69095611572266,-4.718439868156565e-06,70.06591033935547,0.7041692137718201,0.3191952407360077,0.4551388323307037,2385\n1743A,113.5158,37.85,20170930,43.46,2524.0,6411.0,1479459.5597866797,1084236.6840652756,1015,0.7194616198539734,64.4038314819336,290.02490234375,90426.828125,0.0002923289721366,82.28357696533203,-4.538860139291501e-06,70.3777084350586,0.6488444209098816,0.3108471632003784,0.4406693577766418,6393\n1744A,118.9233,42.2814,20170930,20.607142857142858,1815.0,7276.0,1773620.8859640586,1702038.7470028251,568,1.9444279670715328,52.60147857666016,288.8143615722656,93976.25,0.0008017133804969,251.0990753173828,-7.219121016532881e-06,53.711402893066406,1.5446805953979492,1.181000590324402,0.4458345472812652,1880\n1745A,118.9572,42.2725,20170930,19.732142857142858,1816.0,7281.0,1776347.102873938,1701594.2290390576,567,1.9230667352676392,50.43742752075195,288.78338623046875,93963.359375,0.0007959961658343,249.0254669189453,-7.292715054063592e-06,53.61372375488281,1.482516884803772,1.2248791456222534,0.4242908358573913,1653\n1746A,118.8789,42.2556,20170930,19.392857142857142,1819.0,7269.0,1771153.9819518193,1698173.7647361069,586,2.008735418319702,53.52767181396485,288.62811279296875,93644.3125,0.0007852101116441,252.5997467041016,-7.088944585120771e-06,53.96856689453125,1.6152796745300293,1.1941062211990356,0.3976225554943084,3651\n1748A,123.044,41.1196,20170930,20.660714285714285,2001.0,7935.0,2111414.3238782254,1646346.9039128367,86,1.988566279411316,194.44517517089844,290.4847106933594,100235.8515625,0.0018968963995575,205.7216339111328,-9.00060695130378e-06,65.51802825927734,-0.4960404336452484,1.9257049560546875,0.45576211810112,6845\n1749A,123.011,41.0931,20170930,18.696428571428573,2005.0,7930.0,2109908.207939182,1642530.5238319137,90,1.971890330314636,194.44525146484372,290.52349853515625,100215.1875,0.0019145942060276,207.66932678222656,-9.058452633325942e-06,65.2132797241211,-0.4918835461139679,1.9095555543899536,0.484129935503006,6880\n1750A,123.0485,41.1442,20170930,21.303571428571427,1997.0,7936.0,2110897.322202072,1649328.2398295,45,2.0077104568481445,193.95314025878903,290.532958984375,100380.1953125,0.0018931025406345,205.8361968994141,-9.047086678037886e-06,65.13090515136719,-0.4841012060642242,1.9484729766845703,0.5007761120796204,3498\n1751A,122.9642,41.0971,20170930,23.0,2005.0,7922.0,2106341.565720351,1641995.548286412,33,1.9687957763671875,193.37733459472656,290.7201843261719,100526.2109375,0.0019408426014706,211.39007568359372,-9.0304738478153e-06,64.2933120727539,-0.4554931223392486,1.915380597114563,0.5077065229415894,2329\n1752A,122.9481,41.0833,20170930,20.857142857142858,2007.0,7920.0,2105634.975302956,1640031.9102346364,30,1.9564939737319944,193.5227508544922,290.7338256835937,100517.0625,0.0019528734264895,211.9835205078125,-9.011345355247611e-06,64.33155059814453,-0.4574764370918274,1.9022575616836548,0.4674966335296631,2749\n1753A,123.0156,41.0831,20170930,21.142857142857142,2007.0,7930.0,2110588.974538874,1641456.6442553208,89,1.95633602142334,194.8153381347656,290.4737854003906,100095.9921875,0.0019225506111979,207.38247680664065,-9.054872862179764e-06,65.47441864013672,-0.5002298355102539,1.8913013935089111,0.4774195849895477,4237\n1754A,123.1289,41.0228,20170930,18.65384615384616,2016.0,7949.0,2120971.258032937,1636826.6607003792,188,1.8343422412872317,198.65966796875,290.0187683105469,98923.765625,0.0019239051034674,195.9743804931641,-8.170427463483065e-06,70.15152740478516,-0.5868737697601318,1.7379270792007446,0.4175593256950378,6885\n1755A,123.81,41.8469,20170930,21.87037037037037,1885.0,8058.0,2141747.097157403,1748149.8672070254,87,1.8662961721420288,193.3913726806641,289.5958251953125,99984.1796875,0.0025453472044318,208.7783203125,-1.0258259862894192e-05,69.0956039428711,-0.4322246015071869,1.8155559301376345,0.4479577541351318,2365\n1756A,123.9169,41.8828,20170930,24.60714285714285,1879.0,8075.0,2148190.082433711,1754686.4471814015,85,1.7833895683288574,192.1348419189453,289.40679931640625,99801.796875,0.0024970679078251,208.6492156982422,-1.1320429621264338e-05,70.31599426269531,-0.3748806715011596,1.7435431480407717,0.5074191689491272,3258\n1757A,124.0383,41.8625,20170930,20.553571428571427,1882.0,8094.0,2157668.3340934566,1754970.6166507725,101,1.6590074300765991,192.08827209472656,289.25799560546875,99701.40625,0.002192533807829,200.9375457763672,-1.1553197509783786e-05,71.9039077758789,-0.3474163115024566,1.6222230195999146,0.4333478808403015,2392\n1758A,123.9,41.8594,20170930,16.678571428571427,1883.0,8072.0,2147800.7700708173,1751577.8188876722,29,1.800693392753601,192.93820190429688,289.4700012207031,99875.7265625,0.0024625288788229,206.7875061035156,-1.0895350897044407e-05,70.2036361694336,-0.403163343667984,1.7549803256988523,0.4924635291099548,2414\n1759A,124.0878,41.8864,20170930,10.25,1878.0,8102.0,2160385.5978294485,1758854.6593281084,112,1.600407600402832,191.06222534179688,289.17449951171875,99603.0234375,0.0021374814677983,199.8834381103516,-1.1922728845092934e-05,72.28730773925781,-0.3070689737796783,1.5706727504730225,0.4024868905544281,4323\n1760A,123.7117,41.8417,20170930,17.055555555555557,1885.0,8042.0,2134832.1996028707,1745401.7176811968,63,1.907129406929016,192.96224975585935,289.6953430175781,100139.53125,0.0025875074788928,211.7237243652344,-9.7533784355619e-06,67.72555541992188,-0.4277737438678741,1.858534932136536,0.4394145905971527,5163\n1761A,123.8436,41.3283,20170930,13.571428571428571,1968.0,8063.0,2162520.963834262,1688183.3976338292,162,1.4778740406036377,204.9313201904297,288.5226135253906,98305.828125,0.0016087315743789,162.4896697998047,-6.994317573116859e-06,77.96429443359375,-0.6229532957077026,1.3401644229888916,0.4162746667861938,3870\n1762A,123.7528,41.3369,20170930,16.660714285714285,1966.0,8048.0,2155605.823024821,1687194.6471225638,188,1.6053738594055176,205.14584350585935,288.778076171875,98616.1328125,0.0016726789763197,165.82888793945312,-6.981904789427063e-06,76.1831283569336,-0.682142972946167,1.453239917755127,0.423839122056961,6352\n1763A,123.7308,41.3047,20170930,17.321428571428573,1971.0,8045.0,2155138.321420878,1682943.2569828094,144,1.574306607246399,205.4936981201172,288.728515625,98614.3046875,0.0016988954739645,165.2552490234375,-7.108419595169835e-06,76.60836791992188,-0.6775818467140198,1.4210293292999268,0.4464010298252105,4744\n1764A,123.7669,41.2864,20170930,14.625,1974.0,8051.0,2158414.030184994,1681593.863599617,191,1.49517023563385,205.6517333984375,288.5805358886719,98369.4765625,0.0016762621235102,162.83123779296875,-6.48862760499469e-06,77.70777130126953,-0.647240936756134,1.3478178977966309,0.4377851188182831,2685\n1765A,123.7989,41.2692,20170930,16.62962962962963,1977.0,8056.0,2161353.3157183914,1680284.483680537,308,1.417612910270691,205.7895355224609,288.4170227050781,97996.6484375,0.001662777038291,161.02029418945312,-6.301347639237065e-06,78.62635040283203,-0.6167392134666443,1.2764244079589844,0.4331789910793304,7749\n1766A,123.8142,41.3472,20170930,19.21153846153846,1965.0,8058.0,2159712.486465225,1689748.3516271932,161,1.5529165267944336,204.9996795654297,288.637939453125,98473.390625,0.0016147086862474,164.30923461914062,-7.162183919717791e-06,77.02894592285156,-0.6562646627426147,1.4074325561523438,0.4529895782470703,4099\n1767A,121.0986,41.0781,20170930,16.607142857142858,2008.0,7624.0,1969871.9348905915,1601063.1458610937,31,2.224811553955078,19.15397071838379,292.4228210449219,100490.9296875,0.00055670842994,304.608154296875,-4.068094858666882e-05,66.9259262084961,0.7299574017524719,2.101653814315796,0.5389187335968018,4354\n1769A,121.2008,41.1219,20170930,25.410714285714285,2001.0,7640.0,1975992.0905533943,1608279.2150193194,16,2.2546815872192383,17.65059471130371,292.2465515136719,100547.4453125,0.0006569116958416,305.5914611816406,-4.171144973952323e-05,66.85418701171875,0.6836261749267578,2.148544788360596,0.5422976016998291,5229\n1770A,121.1178,41.1222,20170930,25.85185185185185,2001.0,7627.0,1969871.1912158064,1606648.0359981654,29,2.1346731185913086,18.903797149658203,292.1916198730469,100364.2578125,0.0005704758223146,292.63671875,-3.3591899409657344e-05,66.87885284423828,0.6915717720985413,2.0195438861846924,0.5432654619216919,2008\n1771A,121.1303,41.1386,20170930,26.017857142857142,1998.0,7629.0,1970264.929181325,1608832.4255924085,44,2.1053199768066406,18.682579040527344,292.0747985839844,100309.0234375,0.0005825439002364,287.8004455566406,-3.053597902180627e-05,66.8665771484375,0.6743674278259277,1.9943923950195312,0.5216705799102783,3103\n1772A,126.555,43.8875,20170930,12.982142857142858,1558.0,8497.0,2260211.196128348,2047796.0981131687,189,1.416006326675415,15.565629959106444,286.3923645019531,97984.078125,0.0014441527891904,175.5890655517578,-1.806818545446731e-05,69.63336181640625,0.3799628019332886,1.3640755414962769,0.3366610407829284,1588\n1773A,126.5844,43.8358,20170930,12.25,1566.0,8501.0,2264245.2439740896,2042462.892833344,192,1.3670610189437866,14.564031600952148,286.3820495605469,97696.109375,0.0014678458683192,175.94349670410156,-2.0955969375791028e-05,70.01405334472656,0.3437537252902984,1.3231360912322998,0.3190224170684814,2491\n1774A,126.4978,43.8228,20170930,9.714285714285714,1568.0,8488.0,2258753.289439623,2038958.3734833533,211,1.4765653610229492,16.62220573425293,286.4477233886719,97766.4765625,0.0014060843968763,175.2340545654297,-1.8253085727337748e-05,69.53120422363281,0.4223737716674804,1.4148659706115725,0.2932516038417816,3754\n1775A,126.5786,43.8947,20170930,9.267857142857142,1557.0,8501.0,2261564.3776188777,2049176.1385136044,190,1.3854920864105225,14.63140869140625,286.4264831542969,97944.3046875,0.0014587170444428,175.52798461914062,-1.8460046703694388e-05,69.758056640625,0.3499652147293091,1.3405643701553345,0.3075978755950928,2905\n1776A,126.55,43.8256,20170930,11.642857142857142,1568.0,8496.0,2262258.9367890186,2040484.8073530851,195,1.4076229333877563,15.396903038024902,286.38580322265625,97688.6953125,0.0014451052993535,175.7274627685547,-2.025772118940949e-05,69.86334991455078,0.3737187683582306,1.3571059703826904,0.3223350346088409,2802\n1778A,126.6772,43.7256,20170930,11.571428571428571,1584.0,8516.0,2274943.7170248423,2031798.9813755704,248,1.1728992462158203,14.35025405883789,287.072265625,97611.8984375,0.00158807344269,176.5884246826172,-2.908525129896589e-05,71.20601654052734,0.2906932532787323,1.1363054513931274,0.3045282959938049,2014\n1779A,123.9305,47.3636,20170930,14.410714285714285,1002.0,8077.0,1954309.1163478224,2397572.867887756,148,1.2525979280471802,55.31972885131836,286.66534423828125,99224.6640625,0.0006702512619085,303.3641967773437,-2.3169857740867883e-05,63.81975173950195,1.0300410985946655,0.7127529978752136,0.2781667709350586,2942\n1780A,123.9305,47.3386,20170930,10.096153846153848,1006.0,8077.0,1955198.092731969,2394641.3231566343,150,1.247005820274353,55.06245040893555,286.6977233886719,99225.1875,0.00066928146407,303.0780944824219,-2.3066675566951744e-05,63.92861175537109,1.0222461223602295,0.71416836977005,0.2878157198429107,4501\n1781A,123.9483,47.3227,20170930,10.410714285714286,1008.0,8080.0,1956931.799172405,2393131.24109213,149,1.2460145950317385,54.9959716796875,286.71832275390625,99224.5625,0.0006692325114272,303.9961853027344,-2.332741314603481e-05,64.02040100097656,1.0206048488616943,0.7147852778434753,0.3013702034950256,2527\n1782A,123.6261,47.203,20170930,11.962962962962964,1028.0,8028.0,1939987.2505609968,2372698.98500385,152,1.0929715633392334,51.30183029174805,286.5058288574219,99199.515625,0.0007060574134811,285.6351928710937,-2.080009107885417e-05,63.99095153808594,0.8529919981956482,0.6833677291870117,0.2695347964763641,2597\n1783A,123.945,47.2988,20170930,19.089285714285715,1012.0,8079.0,1957565.4996471936,2390263.0320193893,145,1.240241289138794,54.72113037109375,286.7493896484375,99225.2109375,0.0006679334328509,303.388671875,-2.3090633476385847e-05,64.11664581298828,1.0124515295028689,0.7163380980491638,0.3100369274616241,3190\n1784A,129.61,44.56100000000001,20170930,15.053571428571429,1450.0,8986.0,2441859.814401269,2198805.639663148,234,1.2748781442642212,35.11015319824219,285.5345153808594,97447.1171875,0.0011610907968133,208.38507080078125,-1.1850517694256268e-05,70.91412353515625,0.733227550983429,1.0429245233535769,0.2418836057186126,2263\n1785A,129.6115,44.5782,20170930,13.375,1448.0,8986.0,2441233.9493402103,2200821.4957874217,234,1.2803752422332764,35.98566055297852,285.5233154296875,97430.265625,0.0011626378400251,209.3492431640625,-1.1804924724856392e-05,70.96524047851562,0.7523074150085449,1.0360475778579712,0.2208752483129501,1520\n1786A,129.5902,44.5952,20170930,10.388888888888893,1445.0,8982.0,2439075.8015103075,2202248.194802659,248,1.2644386291503906,38.399208068847656,285.4871826171875,97299.8125,0.0011668021325021,207.7660675048828,-1.1574055861274246e-05,71.06922149658203,0.785369873046875,0.9909586906433104,0.2204381674528122,3034\n1787A,129.6459,44.6104,20170930,16.685185185185187,1442.0,8991.0,2442196.076845168,2205380.2060020464,233,1.3273903131484983,37.30318832397461,285.533447265625,97274.703125,0.0011589782079681,215.5953826904297,-1.182615142170107e-05,71.06922912597656,0.8044215440750122,1.0558744668960571,0.2277964800596237,3991\n1788A,129.6386,44.5462,20170930,8.125,1453.0,8990.0,2444419.6623659614,2197814.352289743,248,1.289290189743042,33.06045913696289,285.5771789550781,97398.9921875,0.0011636900017037,210.89231872558597,-1.2177597454865465e-05,70.8426742553711,0.7033200860023499,1.0805600881576538,0.2293193638324737,3305\n1789A,124.8354,46.0347,20170930,12.803571428571429,1215.0,8222.0,2062275.814543036,2260418.357142736,134,1.1806639432907104,34.3799934387207,287.2938842773437,99401.0390625,0.0014539394760504,301.6745910644531,-2.9698745493078604e-05,68.1102294921875,0.6666788458824158,0.9744263887405396,0.2701099514961242,5889\n1790A,125.112,46.528,20170930,18.25,1136.0,8266.0,2062553.2920619124,2323900.882703996,145,1.2025264501571655,41.477821350097656,287.0142517089844,99257.703125,0.0012702296953648,262.5374450683594,-2.7378840968594886e-05,68.84334564208984,0.7964502573013306,0.9009644985198976,0.3752947449684143,3296\n1791A,124.8847,46.3991,20170930,15.035714285714285,1156.0,8230.0,2052200.7987635727,2304072.2596290214,141,1.1207787990570068,39.87567901611328,286.9646301269531,99366.3125,0.0011335698654875,273.00994873046875,-2.0995799786760472e-05,67.67362976074219,0.7185405492782593,0.8601422309875488,0.3063122630119324,3309\n1792A,125.1386,46.5776,20170930,12.785714285714285,1128.0,8270.0,2062482.1404578188,2330255.3386412417,146,1.2043684720993042,41.75605773925781,286.9864196777344,99249.9765625,0.0013050811830908,260.60205078125,-2.7296568077872507e-05,68.92790985107422,0.802042543888092,0.8984604477882385,0.3321546912193298,3494\n1793A,124.8648,46.6219,20170930,14.857142857142858,1121.0,8226.0,2042703.38116432,2329714.5161317466,147,1.1746790409088137,43.90120697021485,286.9920654296875,99298.6015625,0.0009049051441252,274.5015869140625,-2.3502065232605677e-05,68.1296615600586,0.8145232200622559,0.8464176058769226,0.3305224776268005,2379\n1794A,118.3528,31.3508,20170930,29.92857142857143,3564.0,7184.0,2043879.192244695,404959.65506522456,8,1.6152342557907104,285.5914306640625,295.8060607910156,101067.5703125,0.0030603031627833,230.58023071289065,-2.5069322873605412e-05,79.9565200805664,-1.555821657180786,-0.434051364660263,0.8643819689750671,2752\n1795A,118.37,31.4189,20170930,30.90740740740741,3553.0,7187.0,2043439.952075774,413221.4350277368,11,1.59944748878479,284.7244567871094,295.75958251953125,101038.3671875,0.0030897699762135,233.9757232666016,-2.6101126422872767e-05,79.8921127319336,-1.5469425916671753,-0.4064491093158722,0.7971324920654297,2412\n1796A,118.3708,31.3178,20170930,39.96428571428572,3569.0,7187.0,2046353.1735604256,401504.7942686025,13,1.6276401281356812,285.7243957519531,295.8479919433594,101095.4375,0.0030187363736331,229.9223480224609,-2.4589086024207063e-05,79.91844940185547,-1.5667520761489868,-0.4410218000411987,0.8096190690994263,2301\n1797A,118.4022,31.3839,20170930,32.0,3559.0,7192.0,2047188.2559565,409829.4369041092,10,1.6224271059036257,284.7346496582031,295.8065795898437,101041.703125,0.0030553594697266,233.46774291992188,-2.5531100618536584e-05,79.8333511352539,-1.56909441947937,-0.4125681519508362,0.7918992638587952,3840\n1798A,118.5058,31.6861,20170930,29.94642857142857,3510.0,7209.0,2047522.14450464,447072.38493650506,16,1.5046786069869995,280.5315856933594,295.5316467285156,100991.7578125,0.0033577855210751,238.1749267578125,-2.6040930606541224e-05,79.58548736572266,-1.479345440864563,-0.274944931268692,0.7617520093917847,4689\n1799A,118.4828,31.6411,20170930,28.73214285714285,3518.0,7205.0,2046830.3218814053,441367.1691171352,7,1.515591740608215,281.4145812988281,295.58740234375,101055.6875,0.0032283733598887,238.7340545654297,-2.641763603605796e-05,79.63603973388672,-1.4856302738189695,-0.2998684644699096,0.7918887138366699,3108\n1800A,118.5106,31.7506,20170930,32.464285714285715,3500.0,7210.0,2046104.6936071236,454664.08685580816,10,1.4943909645080566,279.8159484863281,295.46051025390625,101009.7265625,0.0035329528618603,237.0752716064453,-2.5484285288257524e-05,79.54537200927734,-1.4725269079208374,-0.2546938359737396,0.754233717918396,3678\n1801A,118.48,31.6928,20170930,25.035714285714285,3509.0,7205.0,2045128.166678571,447313.2433734951,15,1.5077085494995115,280.8871154785156,295.5363464355469,101036.6484375,0.0033668768592178,237.9273834228516,-2.60235283349175e-05,79.59521484375,-1.4805864095687866,-0.2846908271312713,0.7810353636741638,3056\n1802A,118.6439,31.7133,20170930,41.98214285714285,3506.0,7231.0,2058544.327471548,453116.4436955068,50,1.4704866409301758,277.8348388671875,295.3563842773437,100712.875,0.0034516619052737,236.198486328125,-2.3415452233166437e-05,79.94380950927734,-1.4567700624465942,-0.2003800570964813,0.7750554084777832,6081\n1803A,115.9872,29.6816,20170930,27.285714285714285,3831.0,6806.0,1882307.4595131308,163967.29489410963,38,1.399978518486023,325.1034545898437,296.8292541503906,99845.4375,0.0040667653083801,253.873291015625,-4.0925628127297387e-05,85.1328125,-0.8010088205337524,-1.1481832265853882,0.7341344356536865,3565\n1804A,115.9581,29.7048,20170930,25.42857142857143,3827.0,6801.0,1879154.1977843773,166102.22100763395,15,1.4090863466262815,321.072509765625,296.9515380859375,100366.03125,0.0041749440133571,255.77296447753903,-3.988976459368132e-05,84.92097473144531,-0.8854594826698303,-1.096122980117798,0.7350702285766602,3163\n1805A,115.988,29.7292,20170930,27.35714285714285,3823.0,6806.0,1881180.1068736124,169505.7468734616,20,1.506100058555603,320.77587890625,297.0099792480469,100430.0859375,0.0041306135244667,259.43133544921875,-4.24507561547216e-05,84.94322204589844,-0.952475607395172,-1.16667377948761,0.7328773736953735,1546\n1806A,116.0174,29.6535,20170930,23.19642857142857,3836.0,6811.0,1885682.74993558,161286.39175044248,153,1.3996645212173462,329.5363464355469,296.6521301269531,99126.0078125,0.0039050900377333,251.3992462158203,-4.1869283450068906e-05,85.16397094726562,-0.709711492061615,-1.2063874006271362,0.7278617024421692,7500\n1807A,116.0628,29.6926,20170930,25.17857142857143,3829.0,6818.0,1888706.1123631792,166694.15963142752,27,1.5195006132125854,328.38360595703125,296.98150634765625,100161.2578125,0.003922592382878,258.1258544921875,-4.628772148862481e-05,84.78671264648438,-0.7966656684875488,-1.293911099433899,0.7333332896232605,5303\n1808A,115.9114,29.6039,20170930,28.964285714285715,3843.0,6794.0,1877560.3232662915,153502.6408157587,55,1.2399858236312866,328.0965881347656,296.4915466308594,98749.046875,0.0039620944298803,244.06222534179688,-3.4052518458338454e-05,85.11429595947266,-0.6553990244865417,-1.0526238679885864,0.736294150352478,4519\n1809A,116.0726,29.7534,20170930,25.73214285714285,3820.0,6820.0,1888034.9688765807,173936.4542399811,27,1.6995882987976074,324.5133056640625,297.1532592773437,100671.609375,0.0039494689553976,265.100341796875,-4.939915015711449e-05,84.55250549316406,-0.9867380261421204,-1.3838167190551758,0.7381543517112732,3498\n1810A,115.9936,29.5867,20170930,18.222222222222214,3846.0,6807.0,1885261.1830688985,153081.4526196248,919,1.3217449188232422,334.03546142578125,296.3882141113281,98208.40625,0.0037152669392526,243.5648193359375,-3.8452337321359664e-05,85.51388549804688,-0.5787739157676697,-1.1882888078689575,0.7021262049674988,6883\n1811A,112.3628,34.6692,20170930,41.42592592592592,3033.0,6226.0,1456034.9002960855,688227.0153216572,175,0.5259029269218445,211.82925415039065,294.0975952148437,98358.75,0.0018582118209451,81.4085693359375,-8.258089110313449e-06,73.76791381835938,-0.2773483991622925,0.4468240737915039,0.6565609574317932,3342\n1812A,112.3939,34.6511,20170930,49.39285714285714,3036.0,6231.0,1459000.0926109713,686539.299632404,163,0.5784611701965332,208.9031219482422,294.1178894042969,98525.90625,0.0018540157470852,81.59406280517578,-8.343359695572872e-06,73.96420288085938,-0.2795801758766174,0.5064111351966858,0.6544985771179199,2369\n1814A,112.4664,34.6869,20170930,45.71428571428572,3030.0,6243.0,1464253.804707335,691868.0353432497,147,0.629697859287262,207.10769653320312,294.2284545898437,98713.7578125,0.0017933170311152,77.92179870605469,-8.260116374003701e-06,73.29546356201172,-0.2869232296943664,0.5605305433273315,0.6595946550369263,2583\n1815A,112.4831,34.6869,20170930,45.35714285714285,3030.0,6245.0,1465639.011007568,692117.0163027305,140,0.6444798707962036,206.6674041748047,294.2417297363281,98755.6875,0.0017864741384983,77.59335327148438,-8.266014447144698e-06,73.26837921142578,-0.2892414629459381,0.5759285092353821,0.6743985414505005,2984\n1816A,112.3844,34.6231,20170930,46.55555555555557,3040.0,6229.0,1458805.9187451908,683074.0465757952,181,0.589124858379364,208.29165649414065,294.0763244628906,98522.171875,0.0018740312661975,82.84913635253906,-8.401604645769112e-06,74.31423950195312,-0.279213935136795,0.5187558531761169,0.6870273947715759,6521\n1817A,112.4275,34.6258,20170930,44.0925925925926,3040.0,6236.0,1462327.2326428313,684035.232215487,145,0.6368088722229004,206.626708984375,294.1414489746094,98708.984375,0.0018542662728577,82.42672729492188,-8.474555215798318e-06,74.2702865600586,-0.285394549369812,0.5692762732505798,0.67051762342453,3411\n1818A,114.483,36.061,20170930,37.42857142857143,2810.0,6565.0,1598497.8415974237,886424.4719371871,63,1.788050889968872,10.341361045837402,296.0198059082031,100277.4375,0.0006010891520418,189.3048095703125,-1.1337132491462398e-05,63.532169342041016,0.3209680616855621,1.7590069770812988,0.6500146389007568,5590\n1819A,114.32,36.086,20170930,51.44444444444444,2806.0,6539.0,1584706.6973724377,886751.6841805713,80,1.7341341972351074,20.29997062683105,295.8269958496094,99932.953125,0.0005537179531529,170.6763153076172,-1.09234069896047e-05,64.02208709716797,0.6016154289245605,1.6264318227767944,0.595300018787384,2423\n1820A,114.358,36.087,20170930,51.33928571428572,2806.0,6545.0,1587759.53017113,887483.8518161199,75,1.754734754562378,17.555994033813477,295.9142761230469,100063.40625,0.0005607845378108,174.99537658691406,-1.1060285032726824e-05,63.85690307617188,0.5292790532112122,1.6730085611343384,0.6194931268692017,2283\n1821A,114.3931,36.0883,20170930,43.10714285714285,2806.0,6551.0,1590570.1581592094,888205.8553983592,69,1.7773842811584473,14.92244815826416,295.990234375,100174.8125,0.0005682270275428,179.31442260742188,-1.1197163075848948e-05,63.69171905517578,0.4576837122440338,1.717445969581604,0.6099761128425598,2909\n1822A,114.286,36.11,20170930,39.48214285714285,2802.0,6534.0,1581387.2008388543,889053.443152007,85,1.6964620351791382,22.74945831298828,295.6366882324219,99633.6875,0.0005473818164318,167.16937255859375,-1.0989178917952812e-05,63.9924201965332,0.6560072898864746,1.5644928216934204,0.5642144083976746,3095\n1823A,114.3406,34.8022,20170930,39.42857142857143,3012.0,6542.0,1616718.4332396125,734919.4771164319,72,0.8424642086029053,195.4398651123047,294.7637939453125,100344.640625,0.0017924673156812,131.11917114257812,-1.4908784578437915e-05,72.30085754394531,-0.2242802530527115,0.8120617866516113,0.8005410432815552,3064\n1824A,114.3389,34.7781,20170930,41.642857142857146,3016.0,6542.0,1617146.7770821864,732039.8572195206,73,0.8271864652633667,196.40675354003903,294.7623596191406,100353.203125,0.0018271740991622,131.0108642578125,-1.4478665434580762e-05,72.32795715332031,-0.2336359322071075,0.7935059666633606,0.7978814840316772,2803\n1825A,114.3733,34.7975,20170930,45.0,3012.0,6548.0,1619527.4962931974,734901.8539656928,73,0.8396754860877991,196.6174774169922,294.7899780273437,100372.3046875,0.0018054235260933,131.36306762695312,-1.4983774235588498e-05,72.18244934082031,-0.24012391269207,0.8046088218688965,0.7801863551139832,3658\n1826A,114.2886,34.7967,20170930,38.92857142857143,3013.0,6534.0,1612557.1433043464,733414.148460267,74,0.8492870926856995,193.95384216308597,294.7521667480469,100312.1171875,0.00178463535849,130.7675018310547,-1.4701554391649552e-05,72.4609603881836,-0.2047914266586303,0.8242263197898865,0.7675558924674988,3490\n1827A,113.261,35.235,20170930,49.28571428571429,2942.0,6370.0,1517890.406332973,768997.293035379,111,0.7674998641014099,332.3891296386719,294.3999938964844,98613.4375,0.0009863404557108,71.6111068725586,-6.512553682114231e-06,68.9126968383789,-0.3557619452476501,-0.6800657510757446,0.632179856300354,2530\n1828A,113.227,35.213,20170930,58.92857142857143,2946.0,6364.0,1515586.9156540784,765860.6829994684,102,0.7640168070793152,327.358642578125,294.50421142578125,98858.296875,0.0009878447744995,73.19232177734375,-6.941549600014696e-06,69.21885681152344,-0.4121431112289428,-0.6433192491531372,0.6703839898109436,2133\n1829A,113.2464,35.1764,20170930,58.90384615384615,2952.0,6367.0,1517997.6657481077,761815.3711623785,94,0.6696391105651855,321.3812255859375,294.7586669921875,99298.1875,0.0009651855798438,75.53294372558594,-7.795797500875778e-06,69.5259017944336,-0.4179836511611938,-0.5231693983078003,0.6343030333518982,2937\n1830A,113.1992,35.259,20170930,52.625,2939.0,6360.0,1512278.5273070948,770893.84199728,191,0.8184639811515808,328.59112548828125,293.902099609375,97663.265625,0.0010320683941245,71.04718017578125,-6.172370831336593e-06,69.15168762207031,-0.4265893101692199,-0.6985018849372864,0.6473963856697083,3333\n1831A,113.3064,33.7214,20170930,39.19642857142857,3185.0,6377.0,1555418.855263475,590391.5317470591,90,0.3098362982273102,202.45883178710935,294.416259765625,99835.75,0.002534070983529,162.35513305664062,-1.6417276128777303e-05,77.63270568847656,-0.1183602213859558,0.2863378822803497,0.7756418585777283,2554\n1833A,113.292,33.739000000000004,20170930,43.407407407407405,3182.0,6375.0,1553817.64032476,592244.3500012734,92,0.3060288727283478,201.5910186767578,294.384033203125,99757.7265625,0.0025309638585895,160.76348876953125,-1.6518350093974732e-05,77.66657257080078,-0.1126089692115783,0.2845573425292969,0.7838130593299866,2862\n1834A,113.182,33.736999999999995,20170930,47.64285714285714,3182.0,6357.0,1544625.156055756,590273.5393681175,97,0.2941628694534302,2.705815076828003,294.3154296875,99679.265625,0.0024738041684031,156.15432739257812,-1.605596480658278e-05,77.93817901611328,0.0138864554464817,0.293834924697876,0.7580359578132629,176\n1835A,111.1928,34.7772,20170930,38.64814814814815,3016.0,6039.0,1356704.4117177797,684319.8911885192,379,1.0790419578552246,247.0830993652344,292.753173828125,95824.84375,0.0022368440404534,141.2123565673828,-1.0511343134567142e-05,80.5767822265625,-0.9938592910766602,0.4202086925506592,0.5366033315658569,2270\n1836A,111.158,34.794000000000004,20170930,40.92592592592592,3013.0,6033.0,1353483.24903936,685839.5395605593,333,1.111037015914917,245.5164337158203,292.774169921875,95732.015625,0.0021836420055478,140.83360290527344,-1.118603177019395e-05,80.07707977294922,-1.0111172199249268,0.4604837596416473,0.5157361626625061,3801\n1838A,111.1489,34.7997,20170930,39.625,3012.0,6032.0,1352615.337149696,686392.7038845251,329,1.1166123151779177,245.3079071044922,292.7548522949219,95650.7578125,0.0021701043006032,140.94302368164062,-1.1265661669312976e-05,79.97969818115234,-1.0145001411437988,0.4664896130561828,0.5110546946525574,4831\n1839A,111.3009,30.7157,20170930,31.296296296296298,3666.0,6056.0,1446117.4816569267,205402.12660926377,104,0.2003748267889022,145.35183715820312,295.3580322265625,98151.6484375,0.0028959822375327,124.1874008178711,-8.974638149084058e-06,81.98334503173828,0.1139325499534607,-0.1648315638303756,0.8755385279655457,3333\n1840A,111.2992,30.698,20170930,35.642857142857146,3668.0,6056.0,1446316.2881632396,203297.0847655975,99,0.2055532187223434,143.27066040039062,295.3667907714844,98174.2734375,0.0028869896195828,124.6124038696289,-9.094655979424717e-06,82.02250671386719,0.1229403316974639,-0.1647355407476425,0.8801407814025879,3137\n1841A,111.3549,30.6463,20170930,34.642857142857146,3677.0,6065.0,1452233.682177257,198044.1007804799,60,0.3206585645675659,147.8587188720703,295.4693603515625,98571.453125,0.0027581551112234,133.2568359375,-1.07884388853563e-05,81.92422485351562,0.1706139147281646,-0.2715010344982147,0.880266547203064,4155\n1842A,111.268,30.696,20170930,26.796296296296298,3669.0,6051.0,1443612.3828594373,202603.2384261584,66,0.1376732438802719,139.0402069091797,295.1642150878906,97657.921875,0.0029538804665207,121.26315307617188,-8.570893442083616e-06,82.22216033935547,0.0902563035488128,-0.1039602011442184,0.8542646169662476,1449\n1843A,111.3296,30.7819,20170930,29.69642857142857,3655.0,6061.0,1447335.0790178706,213605.12718988184,102,0.2480425983667373,158.44473266601562,295.4131164550781,98351.40625,0.0028828687500208,125.12337493896484,-8.996341421152465e-06,81.97848510742188,0.0911492779850959,-0.2306879758834839,0.8660878539085388,2756\n1844A,112.2551,30.3175,20170930,32.5,3729.0,6209.0,1538204.5100321283,173167.0827950566,33,1.6371923685073853,332.01812744140625,296.11895751953125,100745.59375,0.0021574273705482,192.28338623046875,-2.7493544621393085e-05,77.99154663085938,-0.7682712078094482,-1.4457378387451172,0.9395096898078918,2138\n1845A,112.2068,30.3515,20170930,33.035714285714285,3724.0,6201.0,1533238.0877523534,176396.02784556054,35,1.655678391456604,332.0157470703125,296.107177734375,100669.7265625,0.0022329094354063,192.826171875,-2.7848307581734844e-05,77.71050262451172,-0.7770057916641235,-1.4620304107666016,0.9417724609375,2300\n1846A,112.2887,30.3055,20170930,33.55357142857143,3731.0,6214.0,1541418.7720688188,172287.78271570677,31,1.6268411874771118,332.0235900878906,296.12066650390625,100783.1640625,0.0021203604992479,191.3512420654297,-2.62511402979726e-05,78.11612701416016,-0.7632770538330078,-1.436669945716858,0.965059757232666,2706\n1847A,113.1094,29.3578,20170930,39.98214285714285,3883.0,6345.0,1634409.086674685,74799.81927328209,36,2.148324489593506,328.0865783691406,297.421875,100650.578125,0.0021178177557885,215.56265258789065,-3.394729719730094e-05,80.43193817138672,-1.1358234882354736,-1.8235138654708865,0.8733078837394714,4433\n1848A,113.1493,29.4251,20170930,35.87037037037037,3872.0,6352.0,1636503.2715711845,83309.86833426305,37,2.0955283641815186,326.3844299316406,297.298828125,100627.8828125,0.0021486871410161,215.7505798339844,-3.5241449950262904e-05,80.98450469970703,-1.160252809524536,-1.7450077533721924,0.8451982140541077,3963\n1849A,113.1772,29.3678,20170930,30.32692307692308,3881.0,6356.0,1640240.221015591,77095.257626924,47,2.085648536682129,326.76873779296875,297.295166015625,100436.21875,0.0021249144338071,212.35491943359372,-3.40987608069554e-05,80.92516326904297,-1.1431089639663696,-1.7444862127304075,0.839857280254364,3527\n1850A,113.2621,29.4758,20170930,30.61111111111111,3864.0,6370.0,1645445.9874468218,91104.79279049892,49,1.9466010332107544,323.1468811035156,297.0742492675781,100237.2265625,0.0020851446315646,214.2066650390625,-3.692071550176479e-05,81.8473129272461,-1.1676193475723269,-1.5575367212295532,0.8558173775672913,4716\n1851A,112.9943,29.4402,20170930,30.83333333333333,3870.0,6327.0,1622358.1939045626,82500.33900502985,27,2.132638692855835,328.1598815917969,297.30975341796875,100822.7578125,0.0020303749479353,220.6461944580078,-3.391442078282125e-05,80.17921447753906,-1.1252135038375854,-1.811640977859497,0.8472979664802551,4500\n1852A,113.2117,29.355,20170930,31.35714285714285,3883.0,6362.0,1643597.386885424,76179.8623403771,71,2.043454885482788,326.2841796875,297.23492431640625,100287.546875,0.0021105653140693,209.7198486328125,-3.3717526093823835e-05,81.12432861328125,-1.134397268295288,-1.6996620893478394,0.8206413388252258,7208\n1853A,111.7044,29.0244,20170930,38.32142857142857,3936.0,6121.0,1515565.825197589,13385.981127111583,34,1.8669313192367556,332.5258178710937,297.1347045898437,100622.7734375,0.0016096667386591,225.4829864501953,-2.177945498260669e-05,79.40546417236328,-0.8614360690116882,-1.6563092470169067,0.8825454711914062,4252\n1854A,111.6975,28.9703,20170930,40.42857142857143,3945.0,6120.0,1516029.3011435317,6965.260774153308,47,1.7572834491729736,331.1700439453125,297.1423645019531,100601.6796875,0.0016702358843758,222.75865173339844,-2.060856240859721e-05,79.37405395507812,-0.8475022912025452,-1.5394105911254885,0.891115128993988,3064\n1855A,111.6753,29.0239,20170930,41.05357142857143,3936.0,6116.0,1512961.0438338702,12879.158091653037,36,1.863043069839477,332.62353515625,297.1048889160156,100566.1328125,0.0015975238056853,225.12831115722656,-2.139000935130753e-05,79.44083404541016,-0.8568219542503357,-1.6543233394622805,0.8990944623947144,1416\n1856A,111.6794,29.0381,20170930,39.85714285714285,3934.0,6117.0,1513045.3454342426,14599.918970764664,35,1.8856678009033203,332.90167236328125,297.1016845703125,100551.203125,0.0015880370046943,225.3771514892578,-2.161259726563003e-05,79.49845886230469,-0.8590899109840393,-1.678602933883667,0.8874274492263794,3593\n1857A,111.7158,29.1456,20170930,18.410714285714285,3917.0,6123.0,1514159.4277138088,27711.98488238127,72,2.017531156539917,335.0478210449219,296.9718322753906,100293.6015625,0.001568388659507,227.671630859375,-2.361246879445389e-05,79.95869445800781,-0.8512651324272156,-1.8291473388671875,0.8504732847213745,6991\n1858A,110.48,29.1389,20170930,31.33333333333333,3918.0,5925.0,1403307.241691968,8582.05639888948,230,1.3041993379592896,272.9698791503906,294.9308776855469,96351.1328125,0.0030843431595712,203.4335021972656,-1.024901939672418e-05,84.01789093017578,-1.3024508953094482,-0.0675095319747924,0.7910041809082031,4200\n1859A,110.4697,29.1242,20170930,30.57142857142857,3920.0,5923.0,1402654.3197391566,6714.878383393633,187,1.302813172340393,272.3243408203125,294.89404296875,96222.1328125,0.003132083453238,203.78160095214844,-1.0307524462405128e-05,83.99810028076172,-1.301743745803833,-0.0527752079069614,0.7953222393989563,1552\n1860A,110.5594,29.3547,20170930,24.32142857142857,3883.0,5937.0,1406411.416606959,34977.92135964372,437,1.1646182537078855,277.8122253417969,294.3551025390625,94584.59375,0.0026935581117868,185.4853057861328,-8.984809028333984e-06,84.30091857910156,-1.1538172960281372,-0.1582449227571487,0.8099631071090698,7948\n1861A,110.4417,29.315,20170930,21.214285714285715,3890.0,5919.0,1396597.3136074347,28650.35021155382,854,1.1630563735961914,271.72271728515625,294.5023193359375,94530.3046875,0.0027012208011001,186.0874938964844,-8.821441042528022e-06,83.36602783203125,-1.1625323295593262,-0.0349097028374671,0.7938247323036194,5688\n1862A,110.4144,25.3167,20170930,30.625,4529.0,5914.0,1467633.7424822198,-436319.16898818297,208,0.7898830771446228,315.8142395019531,299.0023498535156,98143.953125,0.0015945266932249,120.4510726928711,-9.28461940929992e-06,80.00201416015625,-0.5505778193473816,-0.566373884677887,0.5896355509757996,5863\n1863A,110.2819,25.2697,20170930,34.0,4537.0,5893.0,1455969.8170277397,-443706.6102913812,156,0.7223047018051147,315.257080078125,298.83258056640625,97709.4140625,0.0019519650377333,116.04273223876952,-9.00387476576725e-06,79.61370849609375,-0.508485734462738,-0.5129974484443665,0.6030198931694031,4011\n1864A,110.3089,25.2708,20170930,39.285714285714285,4537.0,5897.0,1458501.4787549388,-443179.4240835685,160,0.7360168695449829,314.5663757324219,298.82763671875,97686.7421875,0.0018729749135673,115.84276580810548,-9.08658421394648e-06,79.7441177368164,-0.5244022011756897,-0.516452431678772,0.5837975144386292,6679\n1865A,110.2869,25.2178,20170930,35.5,4545.0,5894.0,1457380.3047231035,-449612.7122211589,157,0.7122248411178589,313.07177734375,298.901123046875,97819.796875,0.0019257441163063,114.87323760986328,-9.103144293476362e-06,79.96150970458984,-0.5203126072883606,-0.4863527417182922,0.5880416035652161,5102\n1866A,109.2256,21.5958,20170930,21.74,5125.0,5724.0,1417376.6382131858,-879368.5347340407,30,1.700938701629639,240.86911010742188,301.10028076171875,100690.5703125,0.003353496082127,337.78125,-7.574108167318627e-05,84.72979736328125,-1.4857609272003174,0.8280742764472961,0.3659133315086365,4310\n1870A,109.4883,24.3898,20170930,26.48148148148148,4678.0,5766.0,1395974.2768091797,-556490.9867655127,129,0.2509392499923706,245.10336303710935,299.6795349121094,99230.3046875,0.0023234852124005,139.17449951171875,-1.4913835912011564e-05,83.96653747558594,-0.2276156097650528,0.1056486591696739,0.5174469947814941,6824\n1871A,109.4108,24.3304,20170930,36.61111111111112,4687.0,5754.0,1389569.261606861,-564416.0529018824,88,0.3136079907417297,218.5501708984375,299.8037109375,99581.3046875,0.0025365983601659,148.94119262695312,-1.4821963304711971e-05,84.47793579101562,-0.195435494184494,0.2452650368213653,0.5106253027915955,2435\n1872A,109.3886,24.3406,20170930,31.660714285714285,4686.0,5750.0,1387271.0581572212,-563557.5510671237,91,0.3533076643943786,221.2063751220703,299.77398681640625,99583.6171875,0.0025909454561769,151.418212890625,-1.4394248864846304e-05,84.63107299804688,-0.2327440083026886,0.2658129632472992,0.5098581314086914,2319\n1873A,109.4221,24.299,20170930,29.589285714285715,4692.0,5756.0,1391184.451136996,-567864.2423547176,102,0.2986727356910705,207.09326171875,299.8380432128906,99581.453125,0.0025413939729332,148.75021362304688,-1.541700112284161e-05,84.42654418945312,-0.1360238790512085,0.265900194644928,0.5085189342498779,3366\n1874A,109.3957,24.3663,20170930,38.958333333333336,4681.0,5751.0,1387514.8318758935,-560503.5629821197,95,0.3519753813743591,230.62127685546875,299.7631225585937,99581.3203125,0.0025342251174151,149.36936950683594,-1.413566951669054e-05,84.55657958984375,-0.2720602750778198,0.2233156114816665,0.5140442252159119,3369\n1875A,109.4839,24.3158,20170930,26.285714285714285,4690.0,5765.0,1396816.0578379054,-565057.2140314453,93,0.232577845454216,214.66766357421875,299.7747802734375,99317.546875,0.002406746847555,141.87757873535156,-1.6137701095431112e-05,84.0479965209961,-0.1322904378175735,0.1912895441055297,0.5315937995910645,3708\n1878A,104.7778,31.4747,20170930,21.589285714285715,3544.0,5012.0,860985.3154007818,218601.73225311903,489,0.5981098413467407,330.06280517578125,295.45928955078125,95167.8359375,0.0004789929662365,110.12126922607422,-8.964942026068456e-06,71.16089630126953,-0.2985270023345947,-0.5182827711105347,0.6677523851394653,5988\n1879A,104.7536,31.4539,20170930,27.07142857142857,3547.0,5009.0,859107.6297959638,215917.4861601581,464,0.586243212223053,331.93975830078125,295.5089416503906,95201.953125,0.0004597977094817,110.53421020507812,-8.889709533832502e-06,71.3416976928711,-0.2758089900016784,-0.5173108577728271,0.6720089912414551,2855\n1880A,104.6717,31.4656,20170930,18.696428571428573,3546.0,4995.0,851779.8544918156,216595.25753415475,478,0.5754854679107666,346.0470886230469,295.3271484375,94741.3828125,0.0005865381099283,100.85719299316406,-8.085489753284492e-06,71.73612213134766,-0.1388111263513565,-0.5584934949874878,0.6691911816596985,4531\n1881A,104.7283,31.5072,20170930,25.55555555555556,3539.0,5005.0,856257.0921028159,222032.74108033293,468,0.5932012796401978,339.915283203125,295.3526611328125,94948.9765625,0.0005114356172271,99.50145721435548,-8.393855750910006e-06,71.39997100830078,-0.2037565410137176,-0.557109534740448,0.6713836193084717,3258\n1882A,104.5969,28.8194,20170930,31.57142857142857,3969.0,4983.0,875897.2961744596,-97212.47420218712,343,0.8449092507362366,136.7670135498047,296.8564453125,96586.1953125,0.0010158118093386,166.5734405517578,-1.912828884087503e-05,75.95162963867188,0.5787780284881592,-0.615538477897644,0.9746936559677124,3631\n1883A,104.6225,28.76611,20170930,29.964285714285715,3978.0,4988.0,878842.8558364153,-103259.57996537013,301,0.8214928507804871,138.74163818359375,296.8244323730469,96434.0625,0.0010256569366902,168.93093872070312,-1.912084007926751e-05,75.93567657470703,0.5417820811271667,-0.6175132989883423,0.9815515875816344,1443\n1884A,104.6061,28.7867,20170930,33.035714285714285,3974.0,4985.0,877111.9906510565,-100981.50081012434,320,0.8425608277320862,137.62538146972656,296.8705444335937,96528.8828125,0.0010324451141059,167.5181884765625,-1.90796399692772e-05,75.92855834960938,0.5679092407226562,-0.6224048733711243,0.9792742729187012,1982\n1885A,104.6417,28.763890000000004,20170930,24.69642857142857,3978.0,4991.0,880616.5383212821,-103349.08381987136,301,0.8234424591064453,139.9142303466797,296.8327331542969,96456.921875,0.0010127110872417,170.41419982910156,-1.9267803509137597e-05,75.97837829589844,0.5302876830101013,-0.6299622654914856,0.9812116026878356,1738\n1886A,104.5761,28.71583,20170930,34.857142857142854,3986.0,4980.0,875197.3149758026,-109593.85073058636,327,0.7658652067184448,135.13995361328125,296.5553894042969,95909.6171875,0.0010943505913019,164.07318115234375,-1.759170481818728e-05,75.89163970947266,0.5402618050575256,-0.54283207654953,0.9479669332504272,2769\n1887A,104.6789,28.7989,20170930,32.833333333333336,3972.0,4997.0,883595.79390334,-98892.56182822929,340,0.8604384064674377,143.2613067626953,296.9456787109375,96677.359375,0.0009910324588418,173.6627197265625,-1.9662700651679188e-05,76.08885955810547,0.5147361755371094,-0.6894932389259338,0.9910483956336976,3529\n1888A,101.68912,26.57098,20170930,20.53703703703704,4329.0,4518.0,629028.2751084126,-383522.6955682324,1152,0.1497478485107422,319.4150390625,295.0843200683594,84447.9765625,0.0039597740396857,45.62674331665039,-2.344059112147079e-06,82.62934112548828,-0.0974303632974624,-0.1137178167700767,0.2717018127441406,5615\n1889A,101.5769,26.5928,20170930,30.44642857142857,4325.0,4500.0,618320.0950142248,-381681.3452045847,1141,0.279300183057785,353.6145935058594,294.7014465332031,83872.1640625,0.0034703619312494,53.358154296875,-2.074701342280605e-06,81.47382354736328,-0.031087502837181,-0.2775647044181824,0.3009358942508697,4068\n1890A,101.7169,26.585,20170930,18.642857142857142,4326.0,4523.0,631524.245821151,-381703.8194423398,1127,0.163355752825737,318.4199523925781,295.4643249511719,84998.109375,0.0039632474072277,43.102874755859375,-2.4351143110834528e-06,83.04671478271484,-0.1084223166108131,-0.1221871674060821,0.2858501970767975,4716\n1891A,101.7453,26.5017,20170930,17.767857142857142,4340.0,4527.0,634860.3617549004,-391267.35348040686,1182,0.1694662421941757,247.489990234375,295.774169921875,85463.8203125,0.0041853603906929,41.98514175415039,-2.358354095122195e-06,82.806884765625,-0.1565528064966201,0.0648846998810768,0.2623611390590668,4900\n1893A,105.4306,28.9583,20170930,25.589285714285715,3947.0,5117.0,949971.4141738054,-73109.55814568356,322,0.9721502661705016,173.53807067871094,297.32281494140625,97543.328125,0.0009577931487001,190.39273071289065,-1.9405522834858857e-05,77.90827178955078,0.1094951257109642,-0.9659642577171326,1.052581787109375,3853\n1894A,105.4436,28.9026,20170930,37.7962962962963,3956.0,5119.0,951850.5145399984,-79540.99997816999,250,0.8706647753715515,169.60850524902344,297.36883544921875,97518.4765625,0.0009500319138169,190.3771209716797,-1.8739090592134744e-05,77.60631561279297,0.1571195125579834,-0.8563706278800964,1.025275468826294,1201\n1895A,105.4322,28.8558,20170930,30.017857142857142,3963.0,5117.0,951402.44952844,-85159.84581624498,282,0.8105406165122986,165.18141174316406,297.3402099609375,97410.5859375,0.0009395431261509,189.4498748779297,-1.838543903431855e-05,77.3377914428711,0.2073700278997421,-0.7835648059844971,1.0426127910614014,2335\n1896A,105.4322,28.8833,20170930,16.285714285714285,3959.0,5117.0,951057.5106098969,-81923.14731860261,287,0.8515107035636902,167.61221313476562,297.3587951660156,97490.296875,0.0009403598960489,189.6855926513672,-1.864045952970628e-05,77.48040771484375,0.1827438622713089,-0.8316701054573059,1.043767333030701,2780\n1897A,104.7547,29.3628,20170930,43.5,3882.0,5009.0,883872.4250563672,-31738.680444823465,331,1.0011892318725586,356.78961181640625,296.9214172363281,97130.75,0.0006755521171726,172.48617553710938,-1.6491019778186455e-05,77.50787353515625,-0.0561595745384693,-0.9996129274368286,1.0436955690383911,4126\n1900A,104.7692,29.3411,20170930,36.60714285714285,3886.0,5011.0,885437.3466533327,-34168.57060449412,309,1.0061110258102417,357.77642822265625,296.8913269042969,97029.75,0.0006808405159972,173.356201171875,-1.6869165847310796e-05,77.39590454101562,-0.0391289927065372,-1.00534987449646,1.036826729774475,2924\n1901A,104.4219,31.1208,20170930,20.55769230769231,3601.0,4955.0,833789.714993228,173481.7587527131,507,0.7945118546485901,172.2775421142578,295.4042358398437,94734.375,0.0005884692072868,128.94900512695312,-9.742136171553284e-06,72.85734558105469,0.1068320646882057,-0.7872966527938843,0.7000970244407654,6105\n1902A,104.3883,31.1333,20170930,21.142857142857142,3599.0,4950.0,830683.0648394626,174681.86648326137,496,0.8176197409629822,169.23072814941406,295.4285888671875,94824.625,0.0006749460590071,124.18750762939452,-9.64354239840759e-06,73.11326599121094,0.1528456360101699,-0.803206205368042,0.693813681602478,3861\n1903A,104.4053,31.1167,20170930,24.142857142857142,3601.0,4953.0,832371.9485632187,172854.05498454714,494,0.8051145076751709,171.08241271972656,295.42926025390625,94791.25,0.0006034572143107,127.84740447998048,-9.726114512886852e-06,72.94499969482422,0.1248734295368194,-0.7953715920448303,0.7001937031745911,3793\n1904A,104.3539,31.1108,20170930,34.24074074074074,3602.0,4945.0,827903.7341943063,171719.0419554139,489,0.8539790511131287,166.63735961914062,295.55841064453125,95063.03125,0.0006359412218444,124.4739227294922,-9.685665645520205e-06,73.26348114013672,0.1974375247955322,-0.830842137336731,0.7136006951332092,5477\n1905A,106.056,30.8064,20170930,25.017857142857142,3651.0,5217.0,982043.6271548156,151289.37725307047,308,1.2189964056015017,331.4076232910156,295.7169494628906,97181.15625,0.0016991976881399,167.1490020751953,-1.2330717254371848e-05,80.34014129638672,-0.5834645628929138,-1.0702903270721436,0.9307138323783876,4412\n1906A,106.0789,30.8023,20170930,28.10714285714285,3652.0,5221.0,984124.073309393,151032.90637997366,282,1.2244477272033691,331.536376953125,295.7235717773437,97214.6640625,0.0017163733718916,166.49420166015625,-1.2341751244093755e-05,80.53411102294922,-0.5836568474769592,-1.0763907432556152,0.944369912147522,2894\n1907A,106.1031,30.8217,20170930,25.94642857142857,3649.0,5224.0,986003.8425606452,153573.16505429705,300,1.2288637161254885,331.2382202148437,295.7337341308594,97236.9765625,0.0017298891907557,165.54116821289062,-1.2474874893086962e-05,80.61758422851562,-0.5913751125335693,-1.0772100687026978,0.9519839882850648,2923\n1908A,106.1064,30.7856,20170930,31.67857142857143,3654.0,5225.0,986780.9649159756,149330.96051205217,285,1.2354828119277954,331.7990417480469,295.7402038574219,97245.0703125,0.0017334504518657,165.94493103027344,-1.230959878739668e-05,80.74016571044922,-0.5839316844940186,-1.0887798070907593,0.9885711073875428,3610\n1909A,106.0642,30.7636,20170930,30.910714285714285,3658.0,5218.0,983342.0840407535,146302.634171289,284,1.2373515367507937,332.0308837890625,295.77978515625,97242.765625,0.0017174421809613,167.8707275390625,-1.2139000318711624e-05,80.51386260986328,-0.5803977847099304,-1.0927841663360596,0.9484902024269104,3408\n1910A,106.1087,30.8388,20170930,26.35714285714285,3646.0,5225.0,986269.0717361238,155654.70642975226,318,1.2302356958389282,330.9030456542969,295.743896484375,97250.65625,0.001737784477882,164.9920654296875,-1.2594206964422485e-05,80.61610412597656,-0.5983335375785828,-1.0749311447143557,0.9299792647361756,4494\n1911A,106.9222,27.6869,20170930,17.892857142857142,4150.0,5356.0,1103370.845153951,-206732.1068432022,869,1.177875518798828,252.9083709716797,294.6623840332031,90545.9140625,0.0018565715290606,302.2668762207031,-1.4869288861518726e-05,80.82755279541016,-1.125842809677124,0.3462205231189728,0.6039912700653076,2184\n1912A,106.9242,27.7019,20170930,23.92857142857143,4148.0,5356.0,1103341.07035789,-204955.212027536,887,1.1795285940170288,253.10031127929688,294.6432800292969,90538.1953125,0.0018753865733742,302.4394226074219,-1.4839069990557618e-05,80.92788696289062,-1.1285778284072876,0.3429279923439026,0.6051865220069885,2395\n1913A,106.8906,27.6486,20170930,11.946428571428571,4156.0,5350.0,1101005.373231473,-211565.85192014917,873,1.1437386274337769,251.84393310546875,294.63262939453125,90401.375,0.0018203067593276,301.6618347167969,-1.5179100046225358e-05,80.56544494628906,-1.0867801904678345,0.3564365208148956,0.5978540778160095,3063\n1915A,106.9178,27.72,20170930,18.339285714285715,4145.0,5355.0,1102493.7306623664,-202909.88478102584,854,1.1653670072555542,252.8251037597656,294.53173828125,90352.9296875,0.0018992407713085,302.5766906738281,-1.4823210221948102e-05,81.08907318115234,-1.1133878231048584,0.344162255525589,0.6064656376838684,1922\n1916A,103.7897,25.5035,20170930,23.26923076923077,4500.0,4854.0,837258.1360414226,-492397.3435718848,1888,1.8055256605148315,201.94680786132807,290.93670654296875,80464.625,0.0021890802308917,312.5544738769531,-1.3097702321829274e-05,85.1135482788086,-0.6747886538505554,1.6746890544891355,0.3282506465911865,2632\n1917A,103.8,25.5364,20170930,24.44642857142857,4494.0,4856.0,837893.0195174916,-488483.06362328166,1877,1.8677096366882324,201.3809967041016,290.9883728027344,80497.2265625,0.0021053487434983,319.59649658203125,-1.345811142527964e-05,85.09634399414062,-0.6808878183364868,1.7391754388809204,0.3377153873443603,2590\n1918A,108.7197,34.3956,20170930,37.0,3077.0,5643.0,1157372.6587401812,607191.4517504106,463,1.166133165359497,359.49169921875,293.3461608886719,95407.6953125,0.0018899943679571,96.84765625,-6.636346370214596e-06,74.2967758178711,-0.0104504190385341,-1.1660863161087036,0.5262486338615417,4819\n1919A,108.6761,34.3181,20170930,49.05357142857143,3089.0,5636.0,1155014.1987979624,597429.3074512401,388,0.5440574288368225,161.52182006835938,292.845703125,94285.4296875,0.0023176288232207,86.29421997070312,-5.326197879185202e-06,75.15406799316406,0.1724782884120941,-0.5159938931465149,0.5392302870750427,3421\n1920A,108.7233,34.3617,20170930,40.185185185185176,3082.0,5644.0,1158243.1357072166,603188.0231351677,409,0.8804258704185486,177.7768096923828,293.1839599609375,94966.9375,0.0020617039408534,92.93069458007812,-6.288405529630836e-06,74.48485565185547,0.0342347174882888,-0.8797600269317627,0.5240567922592163,3616\n1921A,108.7369,34.3164,20170930,41.24074074074074,3089.0,5646.0,1160144.182105683,597942.7274966409,383,0.4803526699542999,169.1138153076172,292.95037841796875,94348.875,0.0023041483946144,87.4297103881836,-5.824450454383623e-06,74.73947143554688,0.0907597988843917,-0.4717004895210266,0.5029987096786499,4038\n1922A,109.0656,35.0994,20170930,26.25,2964.0,5698.0,1174242.321751427,695355.2672377215,961,0.7065073251724243,325.7421264648437,290.3983459472656,89938.109375,0.0018105941126123,116.34049224853516,-4.180698397249216e-06,78.81182098388672,-0.3977499604225158,-0.5839071273803711,0.4336319863796234,6975\n1923A,109.0697,35.0697,20170930,35.518518518518526,2969.0,5699.0,1175094.0245516538,691854.7144925613,857,0.8401294946670532,331.0656433105469,290.5806579589844,90257.546875,0.0018008537590503,115.199462890625,-4.445816102816025e-06,78.36143493652344,-0.4065179824829101,-0.7352283596992493,0.465850293636322,4422\n1924A,108.9344,34.9058,20170930,39.64814814814815,2995.0,5677.0,1166666.551705032,670657.2077036453,736,1.2105872631072998,333.6452331542969,291.4979858398437,91914.5078125,0.0018153605051338,113.57978057861328,-5.723298272641841e-06,77.0685806274414,-0.5374992489814758,-1.08471941947937,0.4822767674922943,3737\n1925A,108.9589,34.8731,20170930,41.55357142857143,3000.0,5681.0,1169262.7850082438,667041.6470262747,685,1.2616342306137085,335.39434814453125,291.8417663574219,92426.7265625,0.001834383001551,116.79974365234376,-6.338303137454204e-06,76.22307586669922,-0.525399386882782,-1.1470293998718262,0.4822124242782593,4881\n1926A,109.4131,36.6275,20170930,27.75,2720.0,5754.0,1176024.8975404503,882454.1196460148,1065,1.2125190496444702,8.868042945861816,290.2909851074219,88478.234375,0.0004708032647613,138.40492248535156,-7.257085599121638e-06,68.86451721191406,0.1869152784347534,1.198025465011597,0.3032203912734985,4579\n1927A,109.4761,36.6028,20170930,26.67857142857143,2724.0,5764.0,1181567.641498222,880248.3868503892,1021,1.2347923517227173,7.168305397033691,290.381103515625,88619.890625,0.0004613909695763,137.55007934570312,-7.509759598178789e-06,68.65471649169922,0.1540785878896713,1.2251416444778442,0.3091731369495392,3927\n1928A,109.4824,36.5767,20170930,26.642857142857142,2728.0,5765.0,1182542.6888273517,877195.1303233751,1032,1.2370494604110718,6.350671768188477,290.2685546875,88443.4609375,0.0004586717986967,137.52569580078125,-7.451877081621205e-06,68.81389617919922,0.136830061674118,1.2294588088989258,0.3495816886425018,5133\n1929A,109.5056,36.6106,20170930,28.5,2722.0,5769.0,1183818.9305628974,881538.6009194065,1030,1.251823663711548,6.768335342407227,290.4757385253906,88765.7265625,0.0004566280695144,137.48390197753906,-7.73575266066473e-06,68.39667510986328,0.1475295722484588,1.2430999279022217,0.3385959267616272,4721\n1930A,107.1586,34.3708,20170930,28.740740740740737,3081.0,5393.0,1026765.9599690726,586877.5682690818,593,0.0610854551196098,100.63133239746094,291.36260986328125,91501.9453125,0.0027049805503338,81.05094909667969,-1.782853132681339e-06,80.08074951171875,0.0600374825298786,-0.0112664755433797,0.5269644856452942,3730\n1931A,107.0708,34.3017,20170930,35.32142857142857,3092.0,5379.0,1020409.2905092102,577699.2047113032,864,0.1459038406610489,53.15991973876953,289.430908203125,86952.3671875,0.002749448409304,74.08468627929688,-1.6967073861451354e-06,80.3884506225586,0.1167662143707275,0.0874847471714019,0.4942579269409179,7975\n1932A,107.1906,34.3672,20170930,36.98214285714285,3081.0,5398.0,1029508.1150619326,586781.8681906755,596,0.0183437820523977,151.40786743164062,291.4598388671875,91775.0546875,0.0027249073609709,82.62297058105469,-1.8273843807037336e-06,80.30506134033203,0.0087800649926066,-0.0161060485988855,0.5040503144264221,4509\n1933A,107.1431,34.3547,20170930,40.74074074074074,3083.0,5391.0,1025702.8706022712,584790.2169862123,597,0.0788513123989105,79.57483673095703,291.0451965332031,90738.3046875,0.002722434233874,79.60530853271484,-1.7588944274393723e-06,80.16314697265625,0.0775490626692771,0.0142714055255055,0.5003341436386108,3951\n1934A,107.1186,34.3739,20170930,34.48148148148148,3080.0,5387.0,1023359.2633998696,586831.0355297273,629,0.1244320571422576,97.66971588134766,291.3868408203125,91501.9921875,0.0026691863313317,79.51451873779297,-1.7302966170973375e-06,79.72583770751953,0.1233197078108787,-0.0166007969528436,0.5050612688064575,3687\n1935A,107.3906,34.3528,20170930,43.60714285714285,3084.0,5430.0,1046527.6740311256,587172.8523022567,544,0.2163596749305725,276.39532470703125,291.0444641113281,92016.8046875,0.0028324676677584,79.3742446899414,-9.233994546775648e-07,82.5966567993164,-0.2150144726037979,-0.0240891221910715,0.5189388394355774,3426\n1936A,107.2058,34.3497,20170930,36.42857142857143,3084.0,5401.0,1031046.4703333976,584848.4974173339,578,0.0289907567203044,213.4498291015625,291.1252746582031,91019.171875,0.0027819548267871,81.90275573730469,-1.828441327234032e-06,80.7003173828125,-0.0159794837236404,0.024189256131649,0.4971664845943451,3535\n1937A,107.2386,34.3622,20170930,36.82142857142857,3082.0,5406.0,1033615.6789245598,586687.8656797045,591,0.0697046294808387,277.6014404296875,291.4039001464844,91868.65625,0.0027692716103047,84.51069641113281,-1.887339976747171e-06,80.75126647949219,-0.0690925419330596,-0.0092171337455511,0.509922444820404,3556\n1938A,109.5293,34.5101,20170930,37.384615384615394,3058.0,5773.0,1223151.3060885312,630658.714626399,347,0.9174325466156006,248.03598022460935,293.43798828125,96212.3359375,0.0020922722760587,76.93949890136719,-8.115038326650392e-06,77.41600799560547,-0.8508322834968567,0.3431718647480011,0.4913638532161712,4405\n1939A,109.5049,34.5004,20170930,50.07142857142857,3060.0,5769.0,1221284.1503744773,629198.499943683,359,0.9201232194900512,249.72628784179688,293.4570617675781,96135.421875,0.0020711284596472,75.17658996582031,-8.015733328647912e-06,77.18272399902344,-0.8631083369255066,0.3188585042953491,0.5144335627555847,2984\n1940A,109.4636,34.493,20170930,50.03571428571429,3061.0,5762.0,1217962.8070285907,627803.4090128356,380,0.9036014676094056,256.19635009765625,293.52398681640625,95918.1328125,0.0020195450633764,76.55159759521484,-7.961884875840042e-06,76.5353012084961,-0.8774962425231934,0.2156292796134948,0.5086231827735901,3227\n1941A,109.4266,34.5021,20170930,36.96428571428572,3060.0,5756.0,1214709.030969086,628430.6457928157,357,0.8899742364883423,264.4969177246094,293.6687316894531,95877.4140625,0.0019597085192799,78.5032958984375,-7.988985998963472e-06,75.82835388183594,-0.8858686089515686,0.0853866711258888,0.5025157332420349,3896\n1942A,102.1878,38.5247,20170930,11.107142857142858,2416.0,4598.0,571224.379028432,1047386.3600532684,1522,0.2247719317674636,10.2208251953125,292.6808166503906,83347.15625,0.000189673519344,156.5526885986328,-6.432660939026391e-06,30.103355407714844,0.0398829132318496,0.2212052792310714,0.1760719418525695,2725\n1943A,102.1725,38.5339,20170930,14.678571428571429,2415.0,4596.0,569928.974096165,1048414.1527832304,1518,0.231612354516983,7.12333345413208,292.52471923828125,83159.5,0.0001935861946549,157.88674926757812,-6.509723334602313e-06,30.229766845703125,0.0287203323096036,0.2298247665166854,0.1633973866701126,2166\n1944A,102.1708,38.5061,20170930,7.3392857142857135,2419.0,4595.0,570040.810485048,1045030.1416073296,1551,0.2606857120990753,14.88033390045166,292.3502197265625,82879.3828125,0.0001995209458982,158.05868530273438,-6.616286555072293e-06,30.65370750427246,0.0669424310326576,0.2519439458847046,0.1863954961299896,2791\n1945A,98.2908,39.7711,20170930,14.0,2217.0,3975.0,256624.037976063,1182636.5825435943,1655,1.7035094499588013,21.23541641235352,290.3923645019531,82295.6640625,0.0001897297042887,106.81330871582033,-7.089346581778955e-06,36.23196029663086,0.6169953942298889,1.5878480672836304,0.1524109989404678,3509\n1947A,106.3394,38.817,20170930,30.134615384615387,2369.0,5262.0,895864.0949468086,1113816.2336913475,1100,0.5833405256271362,93.22256469726562,292.654296875,87914.984375,0.000409371801652,151.97825622558594,-7.2347725108556915e-06,43.52638626098633,0.5824196934700012,-0.032764371484518,0.236334890127182,3379\n1948A,106.3717,39.0153,20170930,46.91071428571429,2338.0,5267.0,895615.8444436202,1138099.7493787257,1110,0.5636929273605347,71.25873565673828,293.6495056152344,87935.7265625,0.0003974279679823,181.20291137695312,-8.11684822110692e-06,41.488277435302734,0.5337988138198853,0.181131362915039,0.2799592614173889,3047\n1949A,106.7704,39.2282,20170930,34.57142857142857,2304.0,5331.0,923769.3520756292,1167549.166244818,1094,0.8691933751106262,12.669918060302734,294.2957763671875,87890.9140625,0.0002316016471013,283.5101928710937,-8.095796147244982e-06,34.151798248291016,0.1906380355358123,0.848029613494873,0.2271405458450317,2121\n1950A,106.7096,39.1292,20170930,33.24074074074074,2319.0,5322.0,920454.3853812002,1155002.1155268385,1092,0.8168590664863586,26.7153434753418,293.9234924316406,88136.5078125,0.0002277176099596,254.27008056640625,-8.00290763436351e-06,36.214263916015625,0.3672157824039459,0.729665219783783,0.1950631737709045,3494\n1951A,84.8861,45.6033,20170930,12.24074074074074,1284.0,1830.0,-714130.5605713031,1928797.6393068093,382,1.6606162786483765,141.55335998535156,294.2123413085937,95935.1015625,0.0002443126286379,445.7058715820313,-1.1101656127721071e-05,31.184701919555664,1.0326416492462158,-1.3004989624023438,0.246393546462059,3117\n1952A,84.8897,45.5828,20170930,14.576923076923077,1287.0,1830.0,-714135.3829689829,1926271.7848791408,354,1.6730263233184814,144.96815490722656,294.4058532714844,96137.546875,0.0002424751437501,438.1293640136719,-1.0957830454572104e-05,30.972431182861328,0.9604721665382384,-1.369857668876648,0.2365986108779907,3698\n1953A,85.1186,45.6886,20170930,20.964285714285715,1270.0,1867.0,-696720.2585597537,1937530.8863710929,291,1.6356446743011477,134.13047790527344,295.0384216308594,97084.5390625,0.0001578843948664,462.5709838867188,-1.0484042832104024e-05,29.71528434753418,1.174072265625,-1.1388098001480105,0.1955730468034744,3037\n1954A,84.8983,44.3336,20170930,19.785714285714285,1487.0,1832.0,-729243.6821740724,1773902.3254347483,742,1.3797929286956787,13.688984870910645,291.3192443847656,92105.3828125,0.0005830064765177,115.67157745361328,-1.0512591870792676e-05,43.77204895019531,0.3265205025672912,1.340601682662964,0.3210723996162414,3427\n1955A,85.6931,46.0872,20170930,24.75,1206.0,1959.0,-651717.0144166406,1982218.5407253057,303,1.5495719909667969,109.25848388671876,294.4616394042969,96675.53125,8.114732190733775e-05,431.5933837890625,-1.4122335414867848e-05,29.56634521484375,1.462886929512024,-0.5110138654708862,0.1995597183704376,3495\n1956A,86.1461,41.7511,20170930,30.46296296296296,1900.0,2031.0,-667879.9407909825,1450289.7659665567,939,1.041104793548584,334.4461364746094,295.8736572265625,90327.4765625,3.914042099495418e-05,96.69664764404295,-9.823574146139435e-06,28.79689216613769,-0.4491650760173797,-0.9392284154891968,0.2377088069915771,2674\n1957A,86.2022,41.7192,20170930,39.60714285714285,1905.0,2040.0,-664008.315887081,1446024.0317030838,952,1.159854531288147,338.0906066894531,295.9098205566406,89792.234375,2.163377757824492e-05,116.33887481689452,-9.02552801562706e-06,27.50229263305664,-0.432875394821167,-1.0760489702224731,0.1957468092441558,1808\n1958A,86.2381,41.7128,20170930,24.30357142857143,1906.0,2046.0,-661375.686805515,1445002.3539828956,979,1.1962398290634155,340.041259765625,295.8749389648437,89455.1015625,1.828497988753952e-05,125.18961334228516,-8.789218554738909e-06,27.06083297729492,-0.4084213078022003,-1.1243584156036377,0.2030190229415893,2639\n1959A,118.746,36.881,20170930,37.28260869565217,2679.0,7247.0,1918272.6277756707,1059709.410074197,21,1.7886723279953003,200.6978302001953,295.0854797363281,100943.1875,0.0002633133553899,196.8826446533203,-1.587737278896384e-05,61.67560577392578,-0.6321691870689392,1.6732336282730105,0.6003516912460327,3163\n1960A,118.78,36.864,20170930,35.67857142857143,2682.0,7253.0,1921459.567148157,1058371.9886888324,22,1.7980087995529177,200.34945678710935,295.0529479980469,100907.625,0.0002798858913592,199.4215087890625,-1.7491571270511486e-05,62.16242599487305,-0.6252309083938599,1.685800075531006,0.5661419630050659,4256\n1961A,117.541,36.71,20170930,33.24074074074074,2706.0,7055.0,1827404.8564802615,1016578.6033373508,77,1.5783014297485352,191.8477935791016,294.2017822265625,99674.953125,0.000357359269401,156.56573486328125,-9.494435289525429e-06,66.3852310180664,-0.3240351378917694,1.5446799993515017,0.5818050503730774,2932\n1963A,120.61,36.44,20170930,22.98214285714285,2750.0,7546.0,2079331.1346523112,1045845.2123286146,75,0.8791519403457642,201.65802001953125,294.36248779296875,100730.1171875,0.0012358074309304,286.0355224609375,-5.654509732266888e-05,72.67818450927734,-0.3244559168815613,0.8170902729034424,0.4678713679313659,5607\n1964A,120.47,36.39,20170930,21.660714285714285,2758.0,7523.0,2069773.3597711232,1037035.3137035582,27,0.9742125272750854,203.16845703125,294.3694152832031,100826.0234375,0.0012285540578886,272.2959899902344,-4.883286965196021e-05,72.36763000488281,-0.3832792937755584,0.8956488966941833,0.4804152846336365,3044\n1967A,120.008,36.283,20170930,23.61111111111111,2775.0,7449.0,2036314.8362364047,1014846.623378207,10,1.0624573230743408,209.81553649902344,293.98681640625,101006.3515625,0.0012180937919765,209.03121948242188,-1.780793536454439e-05,70.77088928222656,-0.5282495617866516,0.9218286275863647,0.4867673516273498,2285\n1968A,120.014,36.253,20170930,18.90740740740741,2780.0,7450.0,2037707.7649428076,1011454.822104392,21,1.0771483182907104,209.7257080078125,294.0812683105469,100995.8515625,0.0012683075619861,215.7052459716797,-2.0264435079297986e-05,70.83758544921875,-0.5340878367424011,0.9354135990142822,0.5262004733085632,4117\n1969A,120.537,36.865,20170930,32.84,2682.0,7534.0,2060299.4309494132,1094089.9824532138,57,0.7398622632026672,202.2255401611328,293.064697265625,100385.8046875,0.000901619088836,169.87062072753906,-7.950705366965849e-06,75.49606323242188,-0.2798476815223694,0.6848952174186707,0.497464507818222,2790\n1970A,120.515,36.885,20170930,31.01851851851852,2678.0,7530.0,2057941.78429984,1095973.151709725,65,0.7732648849487305,201.2284698486328,293.0560607910156,100340.09375,0.0008841430535539,169.94070434570312,-8.189243999368045e-06,75.6783447265625,-0.2799816727638244,0.7207973003387451,0.4957297444343567,3216\n1971A,119.952,36.792,20170930,27.092592592592588,2693.0,7440.0,2016357.37125978,1073392.4840784215,56,1.2177348136901855,211.89743041992188,293.5976257324219,100797.53125,0.0007353526307269,173.5662841796875,-9.706694072519896e-06,73.29503631591797,-0.6434344053268433,1.0338618755340576,0.4761378765106201,2911\n1972A,119.976,36.799,20170930,26.05555555555556,2692.0,7444.0,2018041.430979073,1074706.746749614,63,1.1875252723693848,211.8396759033203,293.52447509765625,100723.7109375,0.0007556229247711,172.04443359375,-9.458171007281637e-06,73.95903015136719,-0.6264557242393494,1.0088456869125366,0.4543110132217407,4195\n1973A,120.747,37.825,20170930,28.67857142857143,2528.0,7568.0,2046662.9171510448,1211081.2162524753,6,2.369312524795532,185.9233245849609,295.5099182128906,100763.53125,0.0002853170444723,366.7380065917969,-0.000106274652353,69.14201354980469,-0.2445008009672165,2.356663227081299,0.5333582162857056,3219\n1974A,120.773,37.809,20170930,27.73214285714285,2531.0,7572.0,2049186.288766184,1209745.1215687846,19,2.3588905334472656,185.72984313964844,295.49755859375,100765.84375,0.0002828805299941,363.1598510742188,-0.0001046903053065,69.36627197265625,-0.2354990690946579,2.3471055030822754,0.5132801532745361,3404\n1975A,120.399,37.374,20170930,25.410714285714285,2600.0,7512.0,2033627.0733799755,1150916.9384696523,63,1.4617414474487305,198.200439453125,293.2891540527344,99868.6328125,0.0004511623701546,213.5466461181641,-2.5652983822510574e-05,75.13636016845703,-0.456550657749176,1.388614296913147,0.5294000506401062,3335\n1976A,120.394,37.364,20170930,27.05357142857143,2602.0,7511.0,2033545.9866116464,1149639.6660816905,75,1.4433640241622925,198.58511352539065,293.3026733398437,99882.546875,0.0004548117576632,212.5086975097656,-2.480540206306614e-05,75.25212860107422,-0.4600055813789367,1.3680988550186155,0.5081782341003418,2399\n1977A,119.941,37.177,20170930,20.357142857142858,2632.0,7439.0,2003759.6691609616,1118374.392858779,49,1.9853445291519165,207.12718200683597,294.60302734375,100685.6171875,0.0005177112761884,233.2567596435547,-4.0924140193965286e-05,71.15565490722656,-0.9052271842956544,1.7669625282287598,0.5068939328193665,2976\n1978A,119.959,37.18,20170930,29.30357142857143,2631.0,7441.0,2005083.072772364,1119093.9923152667,58,1.9718565940856931,207.05035400390625,294.5613708496094,100652.8671875,0.0005155766266398,231.74066162109372,-3.886678678099997e-05,71.36843872070312,-0.8967235088348389,1.7561620473861694,0.5448122620582581,2967\n1979A,122.471,37.154,20170930,15.296296296296294,2635.0,7843.0,2202719.753501787,1169839.440419616,11,0.877822756767273,17.158655166625977,293.90045166015625,100756.8359375,0.000548793002963,332.38787841796875,-6.287647556746379e-05,74.24030303955078,0.2589666843414306,0.8387544751167297,0.3953421413898468,4000\n1980A,122.41,37.161,20170930,15.851851851851851,2634.0,7834.0,2197722.3350084256,1169290.105369354,27,0.8271945118904114,15.705577850341797,293.6351318359375,100638.4921875,0.0005593918613158,311.73858642578125,-5.253474955679849e-05,74.38231658935547,0.2239103317260742,0.7963133454322815,0.4410822987556457,2453\n1981A,122.038,37.197,20170930,17.410714285714285,2629.0,7774.0,2167470.456029706,1165229.3809510702,49,0.8632704019546509,7.60967493057251,293.2240905761719,100699.265625,0.0005732408026233,226.32778930664065,-1.575891292304732e-05,74.88191223144531,0.1143142506480217,0.8556681871414185,0.458125352859497,2366\n1982A,122.019,37.187,20170930,16.089285714285715,2630.0,7771.0,2166315.4779656166,1163642.350590088,44,0.8560912013053894,7.359997749328613,293.2368469238281,100743.6640625,0.0005755263846367,224.0959625244141,-1.5169002836046276e-05,74.9010009765625,0.1096649095416069,0.8490381240844727,0.4508409202098846,3379\n1983A,121.531,36.913,20170930,18.660714285714285,2674.0,7693.0,2137020.943385902,1120939.0081425845,24,0.5563823580741882,3.682596921920776,293.8624267578125,100827.0859375,0.0008047767332755,262.8763427734375,-4.5901375415269285e-05,74.9521713256836,0.0357345454394817,0.5552335977554321,0.4615476727485657,2730\n1984A,121.544,36.907,20170930,13.403846153846152,2675.0,7695.0,2138236.6882122643,1120520.4690703675,27,0.5615101456642151,3.3063979148864746,293.8874206542969,100812.71875,0.000803947856184,268.5355834960937,-4.8428144509671256e-05,74.86331939697266,0.0323848016560077,0.5605754852294922,0.4689399600028991,2916\n1985A,120.636,31.155,20170930,22.25,3595.0,7550.0,2245392.003857158,432143.7454867554,4,2.118885040283203,285.7649230957031,296.46929931640625,101152.8984375,0.0032024104148149,375.0542297363281,-5.7219276641262695e-05,80.93283081054688,-2.0392134189605717,-0.5755712389945984,0.6606754064559937,3014\n1986A,120.635,31.17,20170930,24.267857142857142,3593.0,7550.0,2244844.68509567,433850.3587474842,5,2.107067108154297,285.5403137207031,296.4535217285156,101148.8828125,0.0032401166390627,374.22747802734375,-5.693927232641727e-05,80.91305541992188,-2.0300679206848145,-0.564407467842102,0.6547377705574036,2944\n1987A,120.658,31.172,20170930,23.589285714285715,3593.0,7553.0,2246751.198039189,434606.639455248,3,2.063518047332764,285.7649841308594,296.4349365234375,101156.96875,0.0032534534111618,369.4788208007813,-5.375825639930554e-05,80.89551544189453,-1.9859275817871092,-0.5605338215827942,0.6401228308677673,3168\n1988A,120.953,31.388,20170930,28.375,3558.0,7600.0,2265250.89816966,466282.3171801972,7,1.6985403299331665,283.1176147460937,296.1144714355469,101191.1484375,0.0040123905055224,344.5058288574219,-2.54374881478725e-05,80.54914093017578,-1.654239535331726,-0.3853972554206848,0.6188092231750488,3550\n1989A,120.999,31.381,20170930,24.964285714285715,3559.0,7608.0,2269390.477988651,466536.83550861006,3,1.7083896398544312,283.3088684082031,296.1546936035156,101182.3046875,0.0040460149757564,345.5147399902344,-2.4605522412457503e-05,80.54596710205078,-1.6625287532806396,-0.3931834101676941,0.6311716437339783,4011\n1991A,120.721,31.671,20170930,39.125,3513.0,7563.0,2236717.58985034,493618.64577775577,59,1.5065006017684937,272.9673767089844,295.72491455078125,101126.453125,0.0043689063750207,332.8028259277344,-2.5096382159972563e-05,80.45492553710938,-1.5044842958450315,-0.0779156386852264,0.6246082782745361,3948\n1992A,120.734,31.656,20170930,26.12962962962963,3515.0,7565.0,2238286.3613092643,492182.7685649498,24,1.5057324171066284,273.3065185546875,295.7367248535156,101129.6953125,0.0043585272505879,334.02716064453125,-2.5104642190854065e-05,80.45281982421875,-1.5032298564910889,-0.0867750272154808,0.6396849155426025,4077\n1993A,120.526,31.874,20170930,25.60714285714285,3480.0,7532.0,2213909.6304283408,512655.8439725001,8,1.5284286737442017,269.84619140625,295.6388854980469,101161.9140625,0.0042839315719902,307.7010498046875,-2.551543002482504e-05,80.3036117553711,-1.5284229516983032,0.0041735242120921,0.6395635008811951,3576\n1994A,120.55,31.882,20170930,32.42857142857143,3479.0,7536.0,2215698.046554033,514121.6200672625,7,1.5514200925827026,269.8310546875,295.6603698730469,101166.921875,0.0043055522255599,309.2061767578125,-2.5443641789024696e-05,80.2881851196289,-1.5514130592346191,0.0046459720470011,0.6431708335876465,3267\n1995A,121.115,31.453000000000007,20170930,21.48214285714285,3548.0,7626.0,2277018.1105734794,477519.36619173584,6,1.7456166744232178,280.8607788085937,296.2102966308594,101176.9609375,0.0042064618319272,359.2283020019531,-2.9331142286537212e-05,80.61609649658203,-1.7143661975860596,-0.3288255333900451,0.6227625608444214,3183\n1996A,121.14,31.422,20170930,25.375,3553.0,7630.0,2280119.754916127,474526.4237451782,3,1.7614164352416992,281.6675720214844,296.2290344238281,101175.171875,0.0042443093843758,358.7071228027344,-2.9837345209671184e-05,80.60810089111328,-1.7250396013259888,-0.3561263978481293,0.6112490892410278,5078\n1997A,119.146,31.955,20170930,36.28846153846154,3467.0,7311.0,2094352.92603734,491784.13265894685,21,1.4239966869354248,274.4787292480469,295.0982971191406,100776.171875,0.0037583333905786,227.0742034912109,-2.055921322607901e-05,80.68700408935547,-1.4196537733078003,-0.1111294105648994,0.7359029054641724,3429\n1998A,119.18,31.955,20170930,25.535714285714285,3467.0,7317.0,2097242.2580910577,492509.3299702448,18,1.4068049192428589,274.5426025390625,295.08746337890625,100787.1796875,0.0037599157076328,226.3201141357422,-2.043867425527424e-05,80.6943588256836,-1.4023911952972412,-0.1113507971167564,0.7169415354728699,3107\n1999A,120.268,31.92,20170930,37.407407407407405,3473.0,7491.0,2190631.4122428554,512193.2862874145,9,1.3332104682922363,269.1931457519531,295.34991455078125,101152.234375,0.0041965353302657,272.76727294921875,-2.443991252221167e-05,80.22784423828125,-1.3330774307250977,0.0188352316617965,0.6597577929496765,3703\n2000A,120.237,31.909,20170930,32.142857142857146,3475.0,7486.0,2188337.52478156,510229.7859285743,4,1.3348320722579956,269.0868530273437,295.3402709960937,101150.5078125,0.0041397386230528,270.3876647949219,-2.4379110982408747e-05,80.2091064453125,-1.334661602973938,0.0213343277573585,0.685448944568634,3427\n2001A,120.302,31.92,20170930,42.46428571428572,3473.0,7496.0,2193513.676465776,512951.7970908218,5,1.331596851348877,269.20770263671875,295.3715515136719,101151.953125,0.0042178425937891,276.8533020019531,-2.4601742552476932e-05,80.22911071777344,-1.33146870136261,0.0184739734977483,0.6765833497047424,3198\n2002A,119.818,31.354,20170930,34.42857142857143,3563.0,7419.0,2169365.122447682,436744.0926593251,8,2.0620033740997314,269.44146728515625,296.31561279296875,100881.2265625,0.0030687926337122,355.4086303710937,-6.279856461333111e-05,81.6471176147461,-2.0619044303894043,0.0201948974281549,0.7341150045394897,2209\n2003A,119.794,31.371,20170930,32.07692307692308,3561.0,7415.0,2166805.161824364,438180.25225003465,1,1.9738256931304927,269.146240234375,296.2518005371094,100912.4140625,0.0030588351655751,345.271240234375,-5.840474113938399e-05,81.69298553466797,-1.9736052751541135,0.0295008495450019,0.7375339269638062,99\n2004A,119.579,31.751,20170930,27.55357142857143,3500.0,7381.0,2137170.674258956,477453.7410299542,7,1.4331626892089844,272.07525634765625,295.4991149902344,101138.390625,0.0032599633559584,249.14356994628903,-2.999888783961069e-05,80.37889099121094,-1.432225227355957,-0.0518295988440513,0.7232614755630493,2996\n2005A,119.579,31.737,20170930,33.94642857142857,3502.0,7381.0,2137585.0450503416,475831.915775427,7,1.4371477365493774,271.9555053710937,295.51617431640625,101138.3984375,0.0032321109902113,250.58973693847656,-3.044969889742788e-05,80.40931701660156,-1.4363130331039429,-0.0489721037447452,0.7536704540252686,3000\n2006A,119.46,31.4,20170930,26.44642857142857,3556.0,7362.0,2137372.5560059724,434220.02264783526,21,1.4913368225097656,272.5274658203125,295.8729858398437,101098.3046875,0.0027485499158501,265.0262451171875,-2.524271621950902e-05,81.91295623779297,-1.489889144897461,-0.0656945630908012,0.758828341960907,6379\n2007A,119.438,31.317,20170930,25.80357142857143,3569.0,7358.0,2137929.6915620933,424135.2643886806,19,1.4705041646957395,272.6329650878906,295.7906494140625,100781.078125,0.0026190439239144,267.4203186035156,-2.228271659987513e-05,82.29882049560547,-1.4689550399780271,-0.0674813538789749,0.7857316732406616,4917\n2008A,121.173,31.896,20170930,20.321428571428573,3477.0,7636.0,2268015.7552191867,529952.9626891356,6,1.61421537399292,271.2047424316406,295.84381103515625,101221.828125,0.0047935182228684,360.1681823730469,-3.718520019901917e-05,80.04708099365234,-1.6138601303100586,-0.0338631756603717,0.5931592583656311,2807\n2009A,121.1518,31.89708,20170930,19.517857142857142,3477.0,7632.0,2266188.2948667537,529588.4633940005,5,1.635688066482544,271.21954345703125,295.85528564453125,101226.1796875,0.0047982227988541,358.44757080078125,-3.732596815098077e-05,80.09613800048828,-1.6353192329406738,-0.03473611921072,0.5754589438438416,3146\n2010A,119.7183,30.2366,20170930,26.660714285714285,3742.0,7403.0,2193985.8048936133,305560.44299756107,44,1.0864324569702148,320.34234619140625,296.1478881835937,99322.6015625,0.0027865525335073,265.1282653808594,-1.2264407814654987e-05,82.06311798095703,-0.6934207677841187,-0.8363630175590515,0.7044010162353516,3466\n2011A,119.6942,30.2311,20170930,28.82142857142857,3743.0,7399.0,2192054.647658872,304388.88229628204,60,1.0598595142364502,320.0356750488281,296.0799560546875,99138.171875,0.0027718229684978,257.8302917480469,-1.2008392332063522e-05,82.1019058227539,-0.6808174848556519,-0.8122744560241699,0.7233818769454956,2520\n2013A,119.946,30.049,20170930,25.714285714285715,3772.0,7439.0,2219365.401450535,289073.97417234257,14,1.1247992515563965,318.0043029785156,296.6515808105469,99600.046875,0.0026852241717278,285.9491271972656,-1.4826198821538128e-05,80.42353820800781,-0.7526342272758484,-0.835891842842102,0.6881979703903198,2369\n2014A,120.091,29.305,20170930,22.017857142857142,3891.0,7463.0,2254295.031771932,206896.5633051305,75,1.150920033454895,305.4205627441406,298.24517822265625,99392.640625,0.002100302837789,394.6701965332031,-1.567579420225229e-05,73.2829360961914,-0.9379505515098572,-0.6669824123382568,0.6013838648796082,2946\n2015A,120.04,29.334,20170930,22.82142857142857,3887.0,7454.0,2248945.9149623825,209054.95114001603,79,1.1868596076965332,308.4759826660156,298.32147216796875,99669.25,0.0021567824296653,393.2764587402344,-1.598916423972696e-05,73.2830581665039,-0.929204523563385,-0.7383865714073181,0.5964110493659973,2496\n2018A,121.989,39.625,20170930,26.214285714285715,2240.0,7766.0,2083519.770711374,1448477.0726715624,121,0.7670151591300964,196.38790893554688,292.2351379394531,100275.7890625,0.0012456595432013,220.38363647460935,-1.1502454071887769e-05,76.1555404663086,-0.216398686170578,0.7358558773994446,0.5393187403678894,4614\n2019A,122.011,39.617,20170930,26.892857142857142,2241.0,7770.0,2085439.9567340657,1448004.9000766848,92,0.7218152284622192,195.6807098388672,292.1674194335937,100253.2578125,0.0012392146745696,218.8781280517578,-1.135823822551174e-05,76.283935546875,-0.1950840204954147,0.6949528455734253,0.5445458889007568,4023\n2031A,113.1817,27.9958,20170930,28.19642857142857,4101.0,6357.0,1670498.4892384545,-82338.52276782459,64,1.2224719524383545,352.2938232421875,298.7051696777344,100133.609375,0.0013491773279383,212.12527465820312,-1.8492346498533152e-05,77.01702880859375,-0.1640319675207138,-1.2114169597625732,0.7732164859771729,5234\n2054A,114.1044,32.1078,20170930,24.42592592592593,3443.0,6505.0,1659795.998465648,413303.0189471292,84,0.8666079640388489,305.3976745605469,294.4412841796875,100208.2578125,0.0036872981581836,170.82321166992188,-1.27696075651329e-05,83.97541046142578,-0.7064489722251892,-0.5019354224205017,0.9143772721290588,2700\n2064A,114.0122,32.1403,20170930,21.357142857142858,3438.0,6490.0,1651137.9800762113,415567.3379451884,100,0.8351424932479858,305.7069396972656,294.3674011230469,100010.53125,0.0037395432591438,171.537841796875,-1.3585824490291998e-05,84.43373107910156,-0.678178071975708,-0.487378180027008,0.8976892828941345,2902\n2065A,114.0681,32.1342,20170930,27.214285714285715,3439.0,6499.0,1656072.5104266533,415791.47224568506,86,0.8424208164215088,304.7967529296875,294.41278076171875,100105.03125,0.0037091083358973,171.04200744628906,-1.3115114597894715e-05,84.07608032226562,-0.6918112635612488,-0.480697363615036,0.9303126335144044,1829\n2066A,114.0614,32.1383,20170930,23.267857142857142,3438.0,6498.0,1655403.308914144,416160.2028031915,89,0.8360211253166199,304.5826721191406,294.4081420898437,100087.203125,0.0037123572546988,171.068359375,-1.3184525414544623e-05,84.08409881591797,-0.6883333325386047,-0.4744771718978882,0.9229862689971924,2125\n2067A,114.6613,33.6128,20170930,28.535714285714285,3202.0,6594.0,1671648.8277379326,599821.6760263459,49,0.8437308073043823,243.6966552734375,294.8449401855469,100650.046875,0.0034834162797778,155.65512084960938,-1.2013112609565724e-05,74.46636962890625,-0.7563591599464417,0.373901754617691,0.8194150924682617,2705\n2068A,114.6758,33.6347,20170930,26.73214285714285,3199.0,6596.0,1672341.26249638,602649.555038806,49,0.8430531620979309,242.85903930664065,294.83349609375,100640.796875,0.0035106835421174,155.3388671875,-1.208854610013077e-05,74.4089126586914,-0.7502095699310303,0.3846092224121094,0.8355823159217834,4108\n2069A,114.6546,33.5979,20170930,25.777777777777786,3204.0,6593.0,1671442.824325183,597951.6329803397,49,0.8451007604598999,244.2305450439453,294.853515625,100657.28125,0.0034667288418859,155.87539672851562,-1.1960922165599186e-05,74.50737762451172,-0.761043906211853,0.3674336969852447,0.8198137283325195,3448\n2070A,114.6369,33.6406,20170930,24.98214285714285,3198.0,6590.0,1668938.2779967312,602683.5832160689,51,0.8270992636680603,242.9422607421875,294.8225402832031,100635.671875,0.0034988643601536,155.1480712890625,-1.2146999324613716e-05,74.38914489746094,-0.7365598678588867,0.3762615919113159,0.8091697096824646,3597\n2074A,117.6569,24.5157,20170930,27.05357142857143,4658.0,7073.0,2168256.487774105,-393867.4781162696,14,0.7021291255950928,259.51153564453125,299.6544494628906,99903.0859375,0.0015537748113274,134.94017028808594,-1.1101411473646294e-05,84.03407287597656,-0.6903924345970154,0.1278422176837921,0.458798199892044,2972\n2075A,117.6336,24.4674,20170930,26.785714285714285,4665.0,7069.0,2167348.216141139,-399847.8233958529,48,0.66227787733078,254.0034637451172,299.26904296875,99248.8359375,0.0016567460261285,138.69375610351562,-1.1978608199569862e-05,84.32288360595703,-0.6366264224052429,0.1825342774391174,0.392006903886795,6138\n2160A,112.85,35.5051,20170930,55.68,2899.0,6304.0,1478211.650817366,794820.41038113,732,0.753696084022522,239.041015625,291.1450500488281,92224.28125,0.0011987182078883,85.65543365478516,-4.483378688746598e-06,72.03143310546875,-0.6463096141815186,0.3877392113208771,0.5024969577789307,2231\n2161A,112.835,35.4934,20170930,52.96428571428572,2901.0,6302.0,1477238.4337001618,793203.7921604214,709,0.7280129790306091,238.5380096435547,291.1567077636719,92193.6796875,0.0012029770296067,84.99797058105469,-4.446696493687341e-06,71.9089126586914,-0.6209738254547119,0.3799926340579986,0.5203730463981628,2112\n2162A,112.8564,35.4883,20170930,53.67857142857143,2902.0,6305.0,1479102.8246756191,792919.3950987338,710,0.7233661413192749,243.07943725585935,291.2274780273437,92340.546875,0.0012117370497435,84.48257446289062,-4.5421693357639015e-06,71.92586517333984,-0.6449679732322693,0.3275284469127655,0.5294637084007263,2959\n2163A,112.8664,35.4894,20170930,52.98214285714285,2902.0,6307.0,1479897.9666331436,793200.7393706961,726,0.7319207191467285,245.29586791992188,291.26763916015625,92441.4921875,0.0012146470835432,84.27664947509766,-4.599727162712952e-06,71.98311614990234,-0.6649236679077148,0.3059157729148865,0.531022310256958,2712\n2164A,112.8252,35.4813,20170930,53.07142857142857,2903.0,6300.0,1476699.5218701772,791617.9062384006,726,0.6913920044898987,238.4621734619141,291.1367492675781,92082.140625,0.001209377660416,84.7920150756836,-4.407430424180348e-06,71.7166519165039,-0.589259147644043,0.3616581261157989,0.5203258991241455,2202\n2165A,112.8453,35.546,20170930,46.25,2893.0,6303.0,1476933.6911766855,799612.6791647465,848,0.7985291481018066,233.81851196289065,290.9354858398437,91867.5859375,0.0011734237195923,88.71737670898438,-4.389180048747221e-06,72.10179138183594,-0.6445205211639404,0.4714255630970001,0.5041729807853699,5539\n2166A,112.44,39.3514,20170930,34.714285714285715,2284.0,6238.0,1362168.9354253833,1248372.0849128645,1098,1.2348055839538574,55.83922576904297,287.8603515625,88041.1484375,0.0002702050842344,55.423709869384766,-4.693235041486332e-06,60.890384674072266,1.0217386484146118,0.6933937072753906,0.3225588798522949,4282\n2167A,112.4549,39.3606,20170930,30.23214285714285,2282.0,6241.0,1363122.3087691574,1249682.3876594717,1101,1.2409967184066772,57.84405899047852,287.9141540527344,88056.9453125,0.0002653441915754,55.263763427734375,-4.69980523121194e-06,60.613407135009766,1.0506114959716797,0.6605212688446045,0.3100597858428955,4779\n2168A,112.4254,39.3179,20170930,32.57142857142857,2289.0,6236.0,1361760.8425990515,1244150.951939235,1095,1.2516006231307983,51.76676940917969,287.935302734375,88325.9375,0.0002659411984495,53.61706161499024,-4.625515430234373e-06,61.18367767333984,0.9831093549728394,0.7745968699455261,0.3696745336055755,2145\n2169A,112.4078,39.3265,20170930,37.10714285714285,2288.0,6233.0,1360215.1480412616,1244938.864292561,1104,1.2345385551452637,52.013282775878906,287.6645202636719,87825.7890625,0.0002726728271227,55.31783676147461,-4.676961452787509e-06,61.37621307373047,0.9729855060577391,0.7598583102226257,0.3276830017566681,2160\n2170A,112.4279,39.3673,20170930,31.92857142857143,2281.0,6236.0,1360891.864860033,1250111.9098998418,1117,1.2157313823699951,57.92747116088867,287.68096923828125,87662.734375,0.0002803462557494,57.77846145629883,-4.76699142382131e-06,60.94899368286133,1.030163049697876,0.6455748081207275,0.30414479970932,5445\n2171A,112.7549,37.7019,20170930,53.46428571428572,2548.0,6289.0,1422573.517058218,1055309.1480783906,822,0.9456462264060974,216.7546539306641,291.2655944824219,91342.609375,0.0001492652372689,92.83345794677734,-6.628305982303573e-06,60.29866409301758,-0.5658506155014038,0.7576674222946167,0.4152783751487732,2829\n2173A,112.7306,37.7111,20170930,52.89285714285714,2546.0,6285.0,1420447.114413541,1056057.2169128412,806,0.8892797827720642,217.816162109375,291.3533630371094,91367.6484375,0.0001433282886864,90.1723861694336,-6.513031166832661e-06,60.015716552734375,-0.5452304482460022,0.7025256752967834,0.4646750688552856,2653\n2174A,112.7105,37.7087,20170930,57.875,2547.0,6282.0,1418906.6086904856,1055479.9352922617,799,0.875542938709259,217.13514709472656,291.48455810546875,91550.1015625,0.0001484852837165,89.08236694335938,-6.538520210597199e-06,60.034061431884766,-0.5285494923591614,0.698004961013794,0.4630836546421051,3245\n2175A,110.9956,35.0147,20170930,44.42857142857143,2978.0,6007.0,1335683.6593554262,709898.2064777401,355,1.1890171766281128,245.7032165527344,293.2507629394531,95819.8671875,0.001687970245257,147.89096069335938,-1.2451860129658598e-05,76.89625549316406,-1.0836851596832275,0.4892733693122864,0.5502783060073853,1779\n2176A,111.0233,35.0611,20170930,36.75925925925926,2970.0,6012.0,1337066.6750166698,715802.8352655991,367,1.2152727842330933,242.03314208984372,293.6234741210937,96857.046875,0.0016318971756845,142.22262573242188,-1.0618612577673048e-05,76.84393310546875,-1.073333740234375,0.5699495077133179,0.5366978049278259,3302\n2178A,110.9678,35.0308,20170930,46.44444444444444,2975.0,6003.0,1333068.2744178516,711438.7730650959,362,1.176136136054993,245.74038696289065,293.4371337890625,96216.03125,0.0016506554093211,144.369873046875,-1.1612825801421424e-05,76.38458251953125,-1.0722588300704956,0.4832774996757507,0.5250508189201355,2763\n2179A,111.0414,35.1147,20170930,42.17857142857143,2962.0,6015.0,1337511.65241832,722435.4392801458,378,1.2261781692504885,238.8937530517578,293.88330078125,97558.09375,0.0015813999343663,136.2272186279297,-9.106332072406076e-06,76.5918197631836,-1.0498477220535278,0.6335082650184631,0.5007078647613525,3964\n2180A,112.7356,38.4186,20170930,62.8,2433.0,6286.0,1405400.43742033,1140755.1444643482,789,0.448523461818695,6.890598773956299,291.2580261230469,91016.65625,0.0001633405336178,33.54224395751953,-2.571285449448624e-06,59.07514190673828,0.0538095980882644,0.445283979177475,0.4094507396221161,2568\n2181A,112.7383,38.4519,20170930,43.15384615384615,2428.0,6286.0,1404884.5668635156,1144779.7499790252,782,0.3482548892498016,9.330920219421388,291.436279296875,91232.3828125,0.0001717748382361,32.20164108276367,-2.4751309410930844e-06,58.791446685791016,0.0564631558954715,0.3436471819877624,0.4304750859737396,2929\n2182A,112.7003,38.4928,20170930,46.48214285714285,2421.0,6280.0,1401015.9042558277,1149133.402503752,787,0.2619926929473877,56.19649124145508,291.5303649902344,91401.7734375,0.0002144241298083,29.887300491333008,-2.567358251326368e-06,59.01476287841797,0.2176986932754516,0.145765021443367,0.3498974144458771,3766\n2183A,111.1406,37.5211,20170930,51.08928571428572,2577.0,6030.0,1298047.2338404069,1011322.5681033672,954,1.3351635932922363,244.83470153808597,290.0418701171875,88587.78125,0.0003324514837004,70.9690933227539,-6.048896011634497e-06,60.11709213256836,-1.208417296409607,0.5677934885025024,0.3613723814487457,2258\n2185A,111.1297,37.5136,20170930,44.55555555555557,2578.0,6029.0,1297327.387712102,1010279.9877825384,956,1.3456324338912964,244.3717498779297,290.0968017578125,88639.5234375,0.0003306501312181,71.19178771972656,-6.077657872083364e-06,59.9863395690918,-1.213229060173035,0.5820669531822205,0.3450655937194824,2079\n2186A,106.8219,39.6719,20170930,36.230769230769226,2233.0,5339.0,921299.9972756308,1221730.3949632356,1104,1.0881705284118652,200.328857421875,294.63848876953125,87929.03125,9.314081398770212e-05,325.01470947265625,-5.544449777517002e-06,28.212217330932617,-0.3780286312103271,1.020396709442139,0.3392064571380615,2791\n2187A,106.8089,39.6969,20170930,29.642857142857142,2229.0,5337.0,919926.2560763884,1224635.2736653455,1089,1.1197302341461182,201.92691040039065,294.779052734375,88125.4453125,8.162289304891601e-05,323.9920349121094,-5.224917003943119e-06,27.733753204345703,-0.418121725320816,1.038734793663025,0.3141795396804809,4130\n2188A,106.7931,39.6572,20170930,32.05555555555556,2235.0,5335.0,919280.9964358698,1219681.008349963,1092,1.102946162223816,201.8756103515625,294.6890869140625,88028.6640625,9.65774670476094e-05,320.872802734375,-5.556231371883769e-06,28.15877723693848,-0.4109382629394531,1.0235331058502195,0.2792949676513672,2756\n2189A,122.2603,43.6267,20170930,13.74074074074074,1600.0,7810.0,1969927.2879406828,1924798.078768354,178,1.912473440170288,25.552000045776367,289.6920166015625,99005.2734375,0.000643354083877,292.432373046875,-1.0296175787516404e-05,58.77179336547852,0.8248845934867859,1.7254332304000854,0.430637389421463,2785\n2190A,122.3039,43.6156,20170930,16.096153846153847,1602.0,7817.0,1973369.53606524,1924365.265297439,175,1.945806622505188,25.43406867980957,289.6771240234375,99038.2421875,0.0006526683573611,292.0541687011719,-1.0513936103961896e-05,59.11852645874024,0.8356468081474304,1.7572301626205444,0.4297195076942444,3573\n2191A,122.2532,43.6801,20170930,18.06,1591.0,7808.0,1967636.2073285931,1930947.4290770232,175,1.8217980861663816,26.097644805908203,289.7256164550781,99008.1640625,0.0006298287189565,294.7123718261719,-1.0436155207571574e-05,58.19010543823242,0.8013912439346313,1.63606858253479,0.4002312123775482,2428\n2192A,119.7594,49.2261,20170930,9.464285714285714,704.0,7409.0,1622193.7813675902,2541301.901116832,609,1.4068249464035034,60.55192565917969,282.4194641113281,93522.4453125,0.001435778918676,342.36102294921875,-1.025794517772738e-05,64.29191589355469,1.2250438928604126,0.691681981086731,0.1304994225502014,2137\n2194A,107.5936,40.916,20170930,25.68518518518519,2034.0,5463.0,961710.3622766308,1379813.209045939,1033,0.1937890201807022,207.0117645263672,292.81549072265625,89353.5,7.211055344669148e-05,159.45358276367188,-8.300209628941957e-06,26.746835708618164,-0.0880114361643791,0.1726504266262054,0.2673970758914947,3632\n2195A,107.4211,40.7608,20170930,18.55555555555556,2058.0,5435.0,950998.4104096604,1359328.5469573117,1040,0.3150384128093719,191.9586334228516,293.0896301269531,89680.7421875,7.488261326216161e-05,154.45407104492188,-8.344054549525026e-06,27.27471160888672,-0.0652758106589317,0.3082016706466675,0.2668406367301941,1988\n2196A,107.3715,40.7378,20170930,20.369565217391305,2062.0,5427.0,947573.7866724192,1356062.3678722049,1040,0.2965335249900818,196.29147338867188,292.9906921386719,89575.9375,7.862914208089933e-05,150.78097534179688,-8.312627869599964e-06,27.57088851928711,-0.0831822827458381,0.2846275269985199,0.2713181376457214,3317\n2197A,113.1306,40.9923,20170930,15.673076923076923,2021.0,6349.0,1378766.172784399,1454987.0402453227,1374,1.6394673585891724,73.73101043701172,286.7214660644531,86195.640625,0.0006833734805695,186.4005279541016,-1.2638328371394891e-05,51.505027770996094,1.573800802230835,0.4593520760536194,0.3040672838687897,2983\n2200A,122.0506,46.0703,20170930,7.5357142857142865,1209.0,7776.0,1873748.3916904551,2208821.153095704,274,1.0924770832061768,68.74583435058594,286.2622375488281,97348.8359375,0.001519922283478,242.7965087890625,-1.141578559327172e-05,61.53447723388672,1.018154501914978,0.396065205335617,0.2737680375576019,2142\n2201A,121.9462,46.0756,20170930,5.111111111111111,1208.0,7759.0,1866523.40661885,2207459.45596167,299,1.0934656858444214,70.1540756225586,285.9786376953125,97095.5625,0.0016980740474537,237.1420745849609,-1.1280039871053305e-05,62.0600471496582,1.0285102128982544,0.3712599277496338,0.2583291828632355,3273\n2202A,116.1042,43.9317,20170930,11.826923076923077,1551.0,6825.0,1524992.3901101097,1851538.9951273263,1007,1.3996496200561523,50.31745147705078,287.2570495605469,89127.6328125,0.0003403046284802,348.0506286621094,-8.726544365345035e-06,37.83014678955078,1.077138900756836,0.8937510251998901,0.4085919559001922,1790\n2203A,116.0781,43.9311,20170930,12.982142857142858,1551.0,6820.0,1523151.0865058207,1851062.337044785,992,1.4264942407608032,51.93580627441406,287.2762756347656,89137.796875,0.0003310577885713,348.67333984375,-8.643640285299625e-06,37.55524444580078,1.123084545135498,0.8795264959335327,0.4172104597091675,2020\n2204A,105.6775,38.8343,20170930,21.98214285714285,2367.0,5156.0,843554.946038019,1110050.957421609,1545,0.8537443280220032,223.21165466308597,293.168701171875,85552.9609375,0.0002496957313269,285.55615234375,-6.7266619225847535e-06,34.39824676513672,-0.584540843963623,0.6222469806671143,0.2027575224637985,2425\n2205A,105.6975,38.843,20170930,26.767857142857142,2365.0,5160.0,845013.656583452,1111275.934394518,1597,0.8171573281288147,223.61569213867188,292.69873046875,84950.3125,0.0002711793640628,282.88104248046875,-6.940696039237082e-06,34.70642852783203,-0.5636763572692871,0.591620683670044,0.2054671943187713,2100\n2206A,105.724,38.8516,20170930,15.648148148148149,2364.0,5164.0,846984.5608704722,1112545.1093749765,1666,0.7802475094795227,224.0697021484375,292.2057800292969,84332.0078125,0.0002951656351797,281.0040283203125,-7.181728051364189e-06,35.12784576416016,-0.5426750183105469,0.5606157183647156,0.2084787189960479,2119\n2207A,121.6178,41.9967,20170930,18.464285714285715,1861.0,7707.0,1978051.947727556,1719791.5296409172,130,1.643009066581726,24.6512451171875,290.0000915527344,99513.6484375,0.0007448419346474,240.01626586914065,-5.561004854826024e-06,67.74626922607422,0.6852700114250183,1.4932795763015747,0.4774495661258697,2681\n2208A,121.6561,42.0186,20170930,23.339285714285715,1857.0,7713.0,1980110.1129960956,1723144.197037336,142,1.665038824081421,26.03859519958496,289.7756652832031,99084.078125,0.000736930174753,242.9744415283203,-5.749445335823111e-06,67.68314361572266,0.7308928966522217,1.4960447549819946,0.4668364822864532,3637\n2209A,121.6972,42.0503,20170930,20.089285714285715,1852.0,7720.0,1982046.9647630204,1727708.8618722176,156,1.6958063840866089,27.365049362182617,289.5617980957031,98660.2109375,0.0007303741876967,246.4051055908203,-5.989335477352142e-06,67.58822631835938,0.779469907283783,1.5060497522354126,0.4364728033542633,4368\n2210A,121.6722,42.0228,20170930,21.425925925925924,1856.0,7716.0,1981138.8028490543,1723963.7305747815,145,1.672057867050171,26.6428165435791,289.68798828125,98907.8046875,0.000740846095141,243.76821899414065,-5.818357294629095e-06,67.6825942993164,0.7497752904891968,1.49452805519104,0.5088866949081421,2875\n2211A,121.6592,42.0486,20170930,17.785714285714285,1852.0,7713.0,1979351.133315907,1726742.5032883694,157,1.6906802654266355,26.128042221069336,289.6879272460937,98941.2109375,0.0007069514831528,246.2797393798828,-5.895256435906049e-06,67.52252197265625,0.7445188760757446,1.517923355102539,0.4303184151649475,5900\n2212A,123.2,41.1953,20170930,17.98,1989.0,7960.0,2120217.3282611608,1658581.0952115275,81,2.0186522006988525,196.58872985839844,290.2971496582031,100091.515625,0.0018453097436577,195.51258850097656,-9.481886991125066e-06,67.63251495361328,-0.5763086676597595,1.934638261795044,0.4890738129615783,3102\n2213A,123.15,41.2553,20170930,19.03703703703704,1979.0,7952.0,2114489.313418855,1664537.520435651,24,2.013300657272339,193.83871459960935,290.4433288574219,100530.1484375,0.0019409691449254,201.32373046875,-9.73073019849835e-06,64.95093536376953,-0.4815462529659271,1.954863786697388,0.4821687042713165,2922\n2214A,123.1761,41.2736,20170930,17.482142857142858,1976.0,7956.0,2115763.1653877883,1667244.8605164387,27,1.993208765983581,194.13429260253903,290.39581298828125,100529.546875,0.001964378170669,200.2340240478516,-9.712917744764129e-06,65.2009506225586,-0.486718088388443,1.9328700304031368,0.542405366897583,3493\n2215A,123.1417,41.2894,20170930,21.98214285714285,1974.0,7951.0,2112705.527059017,1668357.1473407869,21,1.9940149784088133,192.9287567138672,290.478759765625,100651.21875,0.0019904107321053,203.0783233642578,-9.472370948060416e-06,64.380126953125,-0.4461263418197632,1.9434677362442017,0.5318958163261414,4884\n2216A,123.8139,42.3022,20170930,13.72,1812.0,8058.0,2125927.468594368,1801558.9851076065,59,2.1718223094940186,4.576078414916992,289.72149658203125,100321.515625,0.0023890221491456,251.1850433349609,-1.2606088603206445e-05,67.40998077392578,0.1732674241065979,2.1648995876312256,0.4086393415927887,5594\n2217A,123.8831,42.2953,20170930,19.314814814814813,1813.0,8069.0,2131130.049309068,1802249.8072422612,77,2.109397649765014,3.1691935062408447,289.5965270996094,100100.328125,0.0024626944214105,248.35987854003903,-1.322323350905208e-05,67.9167709350586,0.1166116595268249,2.1061718463897705,0.4123030602931976,5789\n2218A,123.8489,42.2864,20170930,19.185185185185187,1814.0,8064.0,2128994.7671028376,1800465.996790178,86,2.1296045780181885,3.520413637161255,289.6468811035156,100181.0859375,0.0024442472495138,249.1437530517578,-1.295316542382352e-05,67.71277618408203,0.1307618468999862,2.1255862712860107,0.4435477554798126,3783\n2219A,123.7153,42.2217,20170930,17.615384615384613,1825.0,8042.0,2121699.179027222,1789996.4923347817,58,2.1444997787475586,2.7686774730682373,289.77374267578125,100451.6875,0.0024431890342384,248.6481170654297,-1.199649977934314e-05,66.98077392578125,0.1035855636000633,2.1419966220855717,0.4581017196178436,4826\n2220A,120.4439,41.5931,20170930,22.517857142857142,1925.0,7519.0,1905460.833603888,1648952.3462998902,174,1.4814121723175049,34.819915771484375,290.287353515625,98082.5078125,0.0005361532093957,212.54443359375,-5.69319036003435e-06,63.59151077270508,0.8458630442619324,1.2161816358566284,0.5455413460731506,2010\n2221A,120.4486,41.5672,20170930,30.240740740740737,1929.0,7520.0,1906615.979491785,1645982.2188283422,168,1.5320916175842283,32.638092041015625,290.29443359375,98018.1484375,0.0005214030970819,211.97315979003903,-5.643608801619848e-06,63.61783218383789,0.8262825608253479,1.2901790142059326,0.5066043138504028,2255\n2222A,120.4247,41.5647,20170930,22.574074074074076,1930.0,7516.0,1904943.7614549089,1645223.171860966,174,1.5109453201293943,33.43211364746094,290.26251220703125,97971.203125,0.0005309642874635,211.03399658203125,-5.570068879023893e-06,63.62089920043945,0.832431435585022,1.2609573602676392,0.5267655849456787,2682\n2223A,120.3939,41.615,20170930,28.35416666666667,1922.0,7511.0,1901115.8315679769,1650572.6144526089,216,1.390853762626648,39.2023811340332,290.04608154296875,97713.953125,0.0005731602432206,212.25198364257807,-5.66674543733825e-06,63.596824645996094,0.8790834546089172,1.0778156518936155,0.4903452098369598,4479\n2224A,124.3419,43.1747,20170930,26.38888888888889,1672.0,8143.0,2132306.47516684,1915167.600133964,163,2.42682147026062,14.686795234680176,288.547119140625,99283.0859375,0.0013700680574402,289.2933654785156,-1.2349007192824502e-05,66.5967025756836,0.6152660846710205,2.3475327491760254,0.4348887503147125,2682\n2225A,124.3711,43.1594,20170930,27.410714285714285,1675.0,8147.0,2134916.6895196787,1914010.982032612,172,2.366252899169922,14.9541654586792,288.4765625,99167.875,0.0014032181352376,287.63262939453125,-1.2627820979105309e-05,66.94375610351562,0.6105846762657166,2.286118745803833,0.4050202071666717,2430\n2226A,124.3897,43.1847,20170930,16.767857142857142,1671.0,8150.0,2135315.1700560125,1917375.9854434535,172,2.378974914550781,15.672057151794434,288.448486328125,99136.375,0.0013647207524627,288.83770751953125,-1.2809488907805644e-05,66.76758575439453,0.6426162719726562,2.2905383110046387,0.3574495613574981,3390\n2227A,125.1358,42.8947,20170930,17.055555555555557,1717.0,8270.0,2198555.968829796,1899935.8451289448,266,1.952322483062744,25.174596786499023,287.5673828125,97611.8125,0.0016145708505064,234.2700042724609,-1.334265834884718e-05,68.46162414550781,0.8304522037506104,1.7668933868408203,0.3958129286766052,2266\n2228A,125.1567,42.8953,20170930,17.69230769230769,1717.0,8273.0,2200010.373253237,1900473.671098799,268,1.9492663145065308,25.5219669342041,287.5863037109375,97618.7421875,0.0016136160120368,233.18556213378903,-1.2908261851407588e-05,68.4311294555664,0.8398323059082031,1.759068250656128,0.3756715357303619,3179\n2229A,125.9361,41.7156,20170930,19.857142857142858,1906.0,8398.0,2299706.171863985,1780880.4421356858,405,0.7987990379333496,8.469344139099121,286.4079284667969,95132.3671875,0.0008043069392442,197.26409912109372,-9.98137693386525e-06,76.57975769042969,0.1176438927650451,0.7900884747505188,0.3731990158557892,3597\n2230A,125.9486,41.7381,20170930,19.85185185185185,1902.0,8400.0,2299752.038014698,1783789.3285236396,390,0.8136736154556274,8.631175994873047,286.3763427734375,95056.09375,0.0008094122749753,197.7430419921875,-9.877526281343307e-06,76.50318145751953,0.1221072077751159,0.8044592142105103,0.3551753163337707,4406\n2231A,126.4047,41.9206,20170930,27.85714285714285,1873.0,8473.0,2325477.7784316824,1815731.3503638252,483,0.7105267643928528,30.448814392089844,285.73828125,93990.2578125,0.0009222706430591,215.70095825195312,-1.0911401659541298e-05,76.67069244384766,0.3600628972053528,0.6125381588935852,0.3531453907489776,2672\n2232A,126.4078,41.9419,20170930,19.166666666666668,1869.0,8473.0,2324880.7452930287,1818278.2229362524,500,0.721178412437439,28.944780349731445,285.7756042480469,93970.296875,0.0009252575109712,218.66265869140625,-1.0994490367011169e-05,76.63793182373047,0.3490167558193207,0.631098747253418,0.3244003355503082,5666\n2233A,124.8292,45.0878,20170930,13.714285714285715,1366.0,8221.0,2096559.169948295,2149522.0494110906,134,2.1164321899414062,23.46570587158203,288.1390686035156,99513.1640625,0.0009972042171284,279.94708251953125,-1.7242602552869357e-05,65.16427612304688,0.8427401781082153,1.9414104223251345,0.3548712730407715,2761\n2234A,124.8528,45.1642,20170930,11.907407407407408,1354.0,8224.0,2095364.91235236,2158961.8302340284,134,2.024993896484375,24.234783172607425,288.02392578125,99423.1953125,0.0009611097048036,280.1455993652344,-1.7823202142608352e-05,65.2579345703125,0.8311896324157715,1.846543788909912,0.3330306708812713,2613\n2235A,122.8444,45.6289,20170930,17.428571428571427,1279.0,7903.0,1942404.5099878188,2172223.984629385,151,1.2378884553909302,37.3399658203125,287.97479248046875,99164.6328125,0.0007746907067485,284.3139038085937,-1.614145548956003e-05,59.01198959350586,0.7508136630058289,0.9841983914375304,0.3312884569168091,2983\n2236A,122.8211,45.6175,20170930,11.5,1281.0,7899.0,1941213.221529503,2170421.7486013863,152,1.2305586338043213,37.310054779052734,287.9915771484375,99144.96875,0.0007786807254888,284.50299072265625,-1.608943784958683e-05,58.92680358886719,0.745857298374176,0.9787601828575134,0.3231449425220489,2445\n2237A,129.4892,42.8939,20170930,8.907407407407408,1717.0,8966.0,2503912.370588444,2004032.4977407996,180,0.9760911464691162,64.3752670288086,286.3943176269531,97612.140625,0.000325255386997,186.54725646972656,-4.898264251096407e-06,74.4023666381836,0.8800746202468872,0.4221641421318054,0.292205810546875,2069\n2238A,129.5042,42.9061,20170930,11.142857142857142,1715.0,8969.0,2504442.4289135006,2005817.3909860563,180,0.9242724776268004,65.23125457763672,286.35076904296875,97449.8046875,0.0003384163137525,185.23789978027344,-5.006987066735746e-06,74.41178131103516,0.8392320275306702,0.3872584998607635,0.2936055958271026,2210\n2239A,129.3675,42.8775,20170930,8.648148148148149,1720.0,8947.0,2496128.982979068,1999050.126635927,218,1.1198910474777222,65.19779968261719,286.4263000488281,97789.578125,0.0003293691843282,192.77354431152344,-5.128396878717467e-06,74.35660552978516,1.0165780782699585,0.4698137938976288,0.2545454502105713,3834\n2240A,130.96200000000002,45.2924,20170930,15.214285714285715,1333.0,9202.0,2500953.2217099434,2316743.5877256566,206,1.415280818939209,55.88507080078125,284.98394775390625,97561.0234375,0.0009348897146992,219.8172912597656,-1.0564502190391067e-05,73.69783782958984,1.1717082262039185,0.7938007116317749,0.2108803838491439,2214\n2241A,130.9817,45.305,20170930,18.196428571428573,1331.0,9205.0,2501708.432919651,2318687.2541049374,187,1.4056326150894165,56.70985794067383,285.0263061523437,97617.5703125,0.0009364746510982,220.25567626953125,-1.0562922398094088e-05,73.72618103027344,1.1749483346939087,0.7715564370155334,0.1997949928045272,3171\n2242A,131.0103,45.2948,20170930,13.5,1333.0,9210.0,2504055.154507616,2318248.3986022463,190,1.4181839227676392,55.78363800048828,285.015869140625,97664.9609375,0.0009209059062413,221.01646423339844,-1.05090648503392e-05,73.72980499267578,1.172701716423035,0.7975062131881714,0.2257293313741684,4390\n2243A,130.9298,45.2978,20170930,15.076923076923077,1332.0,9197.0,2498577.961401449,2316542.537005559,244,1.4077149629592896,56.43857955932617,284.977294921875,97521.75,0.0009472971432842,218.4818115234375,-1.0652726814441849e-05,73.65918731689453,1.1730173826217651,0.7782619595527649,0.2256324589252472,3112\n2244A,130.2659,47.3349,20170930,9.946428571428571,1006.0,9091.0,2366724.864713445,2533591.38103058,175,1.2759302854537964,68.90410614013672,284.96240234375,98855.1171875,0.0009599408949725,151.3830108642578,-8.144819730659947e-06,72.25605010986328,1.1904003620147705,0.4592877626419067,0.2497814446687698,2825\n2245A,130.261,47.2753,20170930,8.553571428571429,1016.0,9090.0,2368975.198855575,2526635.3459885963,145,1.316425085067749,67.49513244628906,285.08013916015625,99168.796875,0.0009479128057137,152.13470458984375,-8.231589163187891e-06,71.54679870605469,1.2161577939987185,0.503919780254364,0.2502824962139129,3526\n2246A,130.3172,47.3489,20170930,10.23076923076923,1004.0,9099.0,2369414.807169054,2536433.754732379,167,1.27549409866333,68.00302124023438,284.92626953125,98857.359375,0.0008908458403311,152.87306213378906,-8.618754691269714e-06,72.0854721069336,1.1826260089874268,0.4777874946594238,0.22206611931324,4096\n2247A,130.1097,47.3382,20170930,6.5555555555555545,1006.0,9066.0,2356551.752427589,2530215.852416144,165,1.246107578277588,72.6739730834961,284.9324951171875,98234.390625,0.0011843105312436,149.36184692382812,-7.283971172000747e-06,73.21519470214844,1.1895523071289062,0.3711461126804352,0.235856294631958,4722\n2248A,131.1638,46.6572,20170930,16.46,1115.0,9234.0,2454156.754149267,2477988.9224501285,171,1.8522140979766848,45.3962516784668,286.0826721191406,98620.84375,0.0009962485637515,258.756103515625,-1.3759050489170477e-05,68.43264770507812,1.318709135055542,1.3006548881530762,0.2092437297105789,4005\n2249A,131.1651,46.619,20170930,9.678571428571429,1121.0,9234.0,2455925.6250224607,2473652.7972818026,148,1.83156156539917,44.90397262573242,285.95855712890625,98209.6953125,0.0010266673052683,264.2371826171875,-1.3805392882204616e-05,68.86393737792969,1.2929072380065918,1.2973082065582275,0.2851049602031708,2834\n2250A,131.1516,46.6462,20170930,10.46,1117.0,9232.0,2453851.480208406,2476426.2249810128,150,1.8412604331970213,45.08968734741211,286.0239562988281,98431.171875,0.0010136406635865,259.8885498046875,-1.379098557663383e-05,68.57987213134766,1.303974151611328,1.299958348274231,0.227469116449356,2129\n2251A,131.1572,46.5888,20170930,10.96,1126.0,9233.0,2456745.179524742,2470001.515935273,166,1.8091777563095093,44.43462371826172,285.8364562988281,97864.6328125,0.0010547030251473,268.3827209472656,-1.3857456906407606e-05,69.22103881835938,1.2665668725967407,1.2918717861175537,0.2344912141561508,5824\n2252A,128.8736,47.7222,20170930,8.58695652173913,945.0,8868.0,2261062.045332382,2545351.0455756234,236,1.178014874458313,33.20689010620117,283.9967956542969,96847.34375,0.0016192442271858,150.3014678955078,-5.28298278368311e-06,74.8245849609375,0.6451391577720642,0.9856542944908142,0.2328245043754577,3141\n2255A,130.2719,46.8025,20170930,10.0,1092.0,9091.0,2390031.596501306,2472648.711437882,82,1.746801257133484,43.48827362060547,286.3397521972656,99672.75,0.0008033986086957,169.83145141601562,-1.441031872673193e-05,67.80896759033203,1.2021310329437256,1.2673578262329102,0.2340050339698791,2765\n2257A,130.3258,46.7975,20170930,9.803571428571429,1092.0,9100.0,2393740.8757894523,2473387.083503696,82,1.7981215715408323,41.60732650756836,286.36676025390625,99607.3203125,0.0008747880929149,176.24107360839844,-1.4572282452718356e-05,67.55461120605469,1.1939632892608645,1.344504714012146,0.2243400514125824,2409\n2258A,130.3648,46.8032,20170930,7.98,1092.0,9106.0,2396022.4984242884,2474991.5372091588,82,1.8293099403381348,40.57372283935547,286.4550170898437,99678.953125,0.0009234295575879,180.51416015625,-1.468025857320754e-05,67.38504028320312,1.1898016929626465,1.3895132541656494,0.2519047260284424,2016\n2259A,130.3794,46.7588,20170930,8.785714285714286,1099.0,9109.0,2398885.9101188523,2470254.7198747336,103,1.7998285293579102,39.18100738525391,286.3734436035156,99384.5625,0.0009823784930631,183.989013671875,-1.5172553503361996e-05,67.33422088623047,1.1370538473129272,1.395167112350464,0.2418242543935775,6067\n2260A,131.0032,45.7677,20170930,15.01851851851852,1257.0,9208.0,2482815.007780296,2372189.29091003,216,1.450184345245361,51.86516189575195,285.3554077148437,98330.9140625,0.0012046130141243,234.6914520263672,-1.476726174587384e-05,72.04871368408203,1.1406327486038208,0.8955399394035339,0.2502042651176452,2531\n2261A,130.8625,45.8194,20170930,9.125,1249.0,9186.0,2471285.721420864,2374560.9038063576,185,1.5611926317214966,46.41365432739258,285.40191650390625,98637.0546875,0.0011468654265627,227.64163208007807,-1.4954660400690044e-05,71.85359191894531,1.1308026313781738,1.076386570930481,0.2019392997026443,5554\n2262A,130.9467,45.8309,20170930,15.788461538461537,1247.0,9199.0,2476322.778919029,2377997.410580304,294,1.525202751159668,47.58641815185547,285.46417236328125,98647.625,0.001130404882133,233.90689086914065,-1.4744828149559908e-05,71.62773895263672,1.1260250806808472,1.028742432594299,0.1995934098958969,6389\n2266A,126.9934,46.6384,20170930,9.055555555555555,1118.0,8567.0,2182647.7636265806,2377406.7086662697,179,1.354006052017212,35.47883987426758,286.0062255859375,99025.8203125,0.0020377920009195,193.29473876953125,-1.249530578206759e-05,70.40454864501953,0.7858479619026184,1.1026220321655271,0.3348216116428375,2726\n2267A,126.9636,46.6527,20170930,10.074074074074074,1116.0,8562.0,2180126.845829281,2378405.875754429,175,1.343766450881958,35.51603317260742,286.0140380859375,99051.96875,0.0020069298334419,193.6450042724609,-1.2420289749570657e-05,70.35807800292969,0.7806153297424316,1.0937769412994385,0.359696477651596,3804\n2268A,124.1186,50.4269,20170930,8.203703703703704,512.0,8107.0,1857177.9635862515,2759831.0324130617,399,0.904144525527954,63.28695297241211,282.1476745605469,95568.34375,0.0008662218460813,233.7144317626953,-9.569376743456814e-06,71.87144470214844,0.8076310753822327,0.4064595997333526,0.1928582042455673,3941\n2269A,124.1303,50.4217,20170930,6.517857142857142,513.0,8109.0,1858087.727651516,2759444.858611441,391,0.9072417616844176,62.94118881225586,282.1663818359375,95605.2578125,0.0008695937576703,233.4954376220703,-9.582066923030652e-06,71.8051528930664,0.8079217076301575,0.4127348661422729,0.1992467194795608,2509\n2270A,117.3961,32.939,20170930,44.76785714285715,3310.0,7031.0,1918670.5254605268,570678.7542578104,22,1.1322846412658691,261.4706420898437,294.8614807128906,100981.2265625,0.004356516059488,195.7327117919922,-1.5425568562932312e-05,78.42242431640625,-1.1197545528411863,0.1679833382368087,0.7311534285545349,4089\n2271A,117.3575,32.9444,20170930,41.94642857142857,3309.0,7025.0,1915274.7897830345,570557.054963287,23,1.1277663707733154,261.6181945800781,294.8786926269531,100990.5,0.0043086064979434,194.87564086914065,-1.6114829122670926e-05,78.26580047607422,-1.1157134771347046,0.1644399017095565,0.738012433052063,2517\n2272A,117.3086,32.935,20170930,40.83928571428572,3310.0,7017.0,1911411.9772598809,568505.7049067509,23,1.1210063695907593,262.0388488769531,294.8912353515625,100990.59375,0.0042409119196236,193.62045288085935,-1.6890522601897828e-05,78.13719177246094,-1.1101957559585571,0.1553081572055816,0.7375426888465881,3298\n2273A,117.4186,32.8913,20170930,25.267857142857142,3317.0,7035.0,1921859.3164052293,565542.2785611589,22,1.1289427280426023,261.88250732421875,294.8122253417969,100932.484375,0.0043745758011937,195.8606109619141,-1.446688111172989e-05,78.77536010742188,-1.1176246404647827,0.1594576984643936,0.731265664100647,4655\n2274A,117.3536,32.9673,20170930,28.92857142857143,3305.0,7025.0,1914326.575052283,573158.7523629993,18,1.1289483308792114,261.2479553222656,294.8956298828125,101007.9765625,0.0043139681220054,195.0683135986328,-1.6360523659386672e-05,78.1282730102539,-1.1157957315444946,0.1718258559703827,0.7214683890342712,3652\n2275A,117.3065,32.8985,20170930,25.642857142857142,3316.0,7017.0,1912221.0403183275,564196.9242957245,24,1.122624158859253,262.64898681640625,294.8722229003906,100969.6875,0.0042368615977466,193.4263610839844,-1.6597519788774662e-05,78.32238006591797,-1.1133910417556765,0.1436846256256103,0.7327836751937866,3011\n2277A,116.8028,32.7639,20170930,21.517857142857142,3338.0,6936.0,1873314.8269449745,538750.1655774832,23,1.153921604156494,266.0279541015625,295.0975341796875,100932.3984375,0.0040161707438528,185.4082946777344,-1.6054085790528916e-05,77.42023468017578,-1.1511462926864624,0.0799826085567474,0.7443878650665283,5760\n2278A,117.0083,32.645,20170930,41.74074074074074,3357.0,6969.0,1893844.015225984,528782.6294143891,33,1.1768879890441897,267.89923095703125,295.0554504394531,100744.1875,0.00451301317662,189.8880615234375,-1.925768629007507e-05,77.6208724975586,-1.1760951280593872,0.0431945100426673,0.7506795525550842,2995\n2279A,116.8556,32.6028,20170930,35.814814814814824,3364.0,6945.0,1882038.3590684524,520914.3596944212,46,1.1630133390426636,267.96588134765625,295.1363220214844,100804.625,0.0046611963771283,188.37692260742188,-2.008691626542713e-05,77.56868743896484,-1.162278652191162,0.0413332395255565,0.7667210698127747,3455\n2280A,116.8306,32.6319,20170930,30.61111111111111,3359.0,6941.0,1879152.294286436,523839.070032935,50,1.1592429876327517,267.732421875,295.1504821777344,100849.7265625,0.0044925957918167,187.7095184326172,-1.9446290025371127e-05,77.52776336669922,-1.1583331823349,0.0459190942347049,0.7604321837425232,3995\n2281A,116.7039,32.625,20170930,42.69642857142857,3360.0,6921.0,1868605.851660465,520615.6857350123,21,1.1729484796524048,267.1117248535156,295.18585205078125,100940.90625,0.0044984491541981,186.32687377929688,-1.8990929675055668e-05,77.52163696289062,-1.1714558601379397,0.0591557808220386,0.7517598867416382,5666\n2282A,116.8008,33.975,20170930,34.482142857142854,3144.0,6936.0,1841119.280505484,680683.2468335719,62,1.210483193397522,241.2430725097656,294.77392578125,100797.0625,0.003558219410479,171.81752014160156,-1.390847046423005e-05,74.85962677001953,-1.0611742734909058,0.5823904871940613,0.7321714162826538,2640\n2283A,116.8067,33.8997,20170930,32.839285714285715,3156.0,6937.0,1843604.427673459,671952.2146555979,29,1.217910647392273,242.927001953125,294.79132080078125,100823.71875,0.0038795855361968,171.54876708984375,-1.3707316611544227e-05,75.01065063476562,-1.0844430923461914,0.5543370246887207,0.721107542514801,2581\n2284A,116.7844,33.9461,20170930,32.410714285714285,3149.0,6933.0,1840522.036111596,676982.2798847214,32,1.211574673652649,241.7947998046875,294.7933349609375,100829.65625,0.0036721986252814,171.58116149902344,-1.3825918358634226e-05,74.85423278808594,-1.0676947832107544,0.5726613402366638,0.723996102809906,3590\n2285A,117.8178,30.9414,20170930,35.285714285714285,3629.0,7099.0,2009153.0148692825,346414.2245985095,29,1.517890453338623,295.56414794921875,295.9562683105469,100718.8125,0.002543797250837,210.6429443359375,-2.359613790758885e-05,81.75931549072266,-1.369331955909729,-0.6549209952354431,0.8358995318412781,3454\n2286A,117.8078,30.9222,20170930,36.35714285714285,3633.0,7097.0,2008815.0385224984,343981.7322338699,58,1.498499035835266,295.3621520996094,295.9592590332031,100605.5,0.0025910839904099,209.1052398681641,-2.321592182852328e-05,81.95999908447266,-1.3541094064712524,-0.6417843103408813,0.8254637122154236,4335\n2287A,117.7806,30.9414,20170930,34.01851851851852,3629.0,7093.0,2005936.4287127105,345654.185208579,14,1.519342064857483,296.82623291015625,295.9465637207031,100686.5546875,0.0025448421947658,211.44482421875,-2.4687704353709705e-05,81.68724822998047,-1.3558706045150757,-0.6855764985084534,0.8250719308853149,2420\n2288A,117.7442,30.8811,20170930,41.910714285714285,3639.0,7087.0,2004438.1630664456,337913.5863225366,10,1.4893736839294434,296.7772216796875,296.0421142578125,100657.0625,0.0026599548291414,208.34906005859372,-2.384694198553916e-05,82.1962661743164,-1.329700946807861,-0.670916736125946,0.8169489502906799,4221\n2289A,117.8561,30.9219,20170930,35.589285714285715,3633.0,7105.0,2013000.4245234705,344935.40041920287,37,1.4872283935546875,294.40484619140625,295.8962707519531,100441.1015625,0.0025921033229678,207.82716369628903,-2.17523720493773e-05,82.05027770996094,-1.3543788194656372,-0.6144154667854309,0.8100452423095703,5447\n2290A,117.8472,30.9697,20170930,39.660714285714285,3625.0,7104.0,2010917.2839420205,350299.7853213776,8,1.5352187156677246,295.7451171875,295.9307556152344,100751.171875,0.0025047431699931,211.9624938964844,-2.343768392165657e-05,81.5997543334961,-1.3828654289245603,-0.666767954826355,0.8286743760108948,4438\n2291A,117.0549,30.5103,20170930,27.30357142857143,3698.0,6977.0,1954563.7334420492,280990.33640474896,14,2.172835111618042,325.8690185546875,296.47412109375,100713.265625,0.0034249124582856,229.78433227539065,-2.932432107627392e-05,81.7813720703125,-1.2192842960357666,-1.798487663269043,0.8248761296272278,3656\n2292A,117.0331111,30.51197222,20170930,29.785714285714285,3698.0,6973.0,1952620.9584514084,280751.249644272,23,2.192110300064087,326.7118530273437,296.4537353515625,100665.484375,0.0034395013935863,231.8827667236328,-2.966080683108885e-05,81.64163208007812,-1.2032780647277832,-1.8323400020599363,0.8200901746749878,3183\n2293A,117.0486,30.5489,20170930,31.48214285714285,3692.0,6976.0,1952992.047385123,285346.2082706045,22,2.144277334213257,327.5391845703125,296.3617858886719,100484.8828125,0.003319987328723,228.4163818359375,-2.946451968455221e-05,81.74190521240234,-1.1510190963745115,-1.809165596961975,0.8231680989265442,3307\n2294A,116.9894,30.6145,20170930,48.32142857142857,3682.0,6966.0,1946102.3619147795,291789.20038028783,28,2.089294195175171,332.6904296875,296.11883544921875,99982.1171875,0.0032015284523367,226.214111328125,-2.881088585127145e-05,81.65229797363281,-0.958709716796875,-1.8563475608825684,0.8046789169311523,6127\n2295A,118.3057,29.7128,20170930,18.160714285714285,3826.0,7177.0,2085664.706365568,214394.07578250195,139,0.8131909966468811,294.1195678710937,296.3243408203125,99219.21875,0.0025420738384127,186.9242248535156,-1.1045311111956836e-05,81.24723815917969,-0.7422146797180176,-0.3322603702545166,0.6278794407844543,4189\n2296A,118.3236,29.7207,20170930,7.5,3825.0,7180.0,2087015.8500131485,215685.87421322652,134,0.8126318454742432,294.0570068359375,296.3207702636719,99186.0078125,0.0025238760281354,186.77496337890625,-1.1023209481209053e-05,81.16436767578125,-0.7420663833618164,-0.3312219977378845,0.6225070953369141,2935\n2297A,118.1371,30.2756,20170930,12.27777777777778,3736.0,7150.0,2055251.7291966607,275872.8253496108,176,0.6612316370010376,299.38604736328125,295.0885009765625,97591.78125,0.0036020129919052,133.5873565673828,-7.953954082040582e-06,86.05772399902344,-0.5761730670928955,-0.3244254291057586,0.6774470806121826,6963\n2298A,118.3094,32.3153,20170930,28.892857142857142,3410.0,7177.0,2013043.5096355365,516181.13011853705,22,1.2912567853927612,278.3080139160156,294.8568115234375,100721.15625,0.0047448836266994,224.6412506103516,-1.4696693142468575e-05,81.17740631103516,-1.2777153253555298,-0.1865149289369583,0.7341705560684204,3478\n2299A,118.3244,32.2786,20170930,35.839285714285715,3416.0,7180.0,2015348.227063966,512215.9373989193,24,1.2927929162979126,279.5142822265625,294.9067687988281,100795.703125,0.0047342586331069,224.6499786376953,-1.4660715351055842e-05,80.84752655029297,-1.275020718574524,-0.213625282049179,0.767422080039978,3016\n2300A,118.3158,32.3061,20170930,35.685185185185176,3411.0,7179.0,2013844.861990748,515241.1365593568,20,1.289920687675476,278.6495056152344,294.8706359863281,100757.5078125,0.0047497362829744,224.61331176757807,-1.470410279580392e-05,81.04228973388672,-1.275260090827942,-0.1939257830381393,0.7627018094062805,2734\n2301A,115.8275,32.8928,20170930,27.16666666666667,3317.0,6780.0,1787551.592128976,535684.1737428412,31,1.2087959051132202,259.87908935546875,294.9301147460937,100911.09375,0.0036298495251685,168.22531127929688,-1.01450987131102e-05,76.72418212890625,-1.1899772882461548,0.2124653756618499,0.8104889988899231,2375\n2303A,115.8556,32.8603,20170930,29.535714285714285,3322.0,6785.0,1790748.555052012,532383.4221964746,29,1.2184292078018188,260.9853820800781,294.94500732421875,100894.09375,0.003746552625671,168.66566467285156,-1.0061052307719365e-05,76.72084045410156,-1.2033716440200806,0.1909617632627487,0.8000186085700989,3371\n2304A,116.9765,33.6481,20170930,26.98214285714285,3196.0,6964.0,1864434.6918949855,645633.2906256181,29,1.2106621265411377,248.78585815429688,294.822509765625,100946.1640625,0.0038947435095906,172.4189910888672,-1.302207510889275e-05,75.85298156738281,-1.1286054849624634,0.4381236732006073,0.7089177370071411,4578\n2305A,116.9677,33.6284,20170930,34.535714285714285,3200.0,6963.0,1864225.8952965592,643156.0548762564,29,1.206411600112915,249.13058471679688,294.8247375488281,100946.671875,0.0038770583923906,172.5395050048828,-1.295181027671788e-05,75.87652587890625,-1.1272493600845337,0.4298111498355865,0.7159059047698975,3269\n2306A,116.989,33.63063889,20170930,36.30357142857143,3199.0,6966.0,1865943.443678353,643822.9067533162,30,1.208070158958435,249.23236083984372,294.82574462890625,100947.3515625,0.0038762723561376,172.6703643798828,-1.297631661145715e-05,75.91249084472656,-1.1295619010925293,0.4283964037895202,0.7117930054664612,2838\n2307A,116.508,31.7371,20170930,27.69642857142857,3502.0,6889.0,1875096.510260283,413131.9583151026,64,0.9519522190093994,268.666015625,295.08953857421875,100642.1015625,0.0036318197380751,173.3083038330078,-1.3472636055666952e-05,81.28633880615234,-0.9516932368278505,0.0222049728035926,0.8532832860946655,5482\n2308A,116.478,31.7618,20170930,24.089285714285715,3498.0,6884.0,1871882.4601550256,415442.9125190334,42,0.9577932953834534,267.2589416503906,295.0743408203125,100653.5859375,0.0037667469587177,173.64698791503906,-1.3735031643591356e-05,81.27276611328125,-0.9566953778266908,0.0458468459546566,0.8896992802619934,4832\n2309A,116.5068,31.7797,20170930,12.428571428571429,3495.0,6889.0,1873887.5358068787,418081.2793079677,42,0.9976189136505128,267.9040832519531,295.09747314453125,100705.5390625,0.0038627253379672,175.7510986328125,-1.4159244528855195e-05,81.10989379882812,-0.9969498515129088,0.0365304388105869,0.8454071283340454,2906\n2310A,116.5661,31.7712,20170930,37.98214285714285,3497.0,6899.0,1879192.52657482,418221.6870418789,52,0.9975776076316832,269.8447265625,295.0945129394531,100704.1796875,0.0037744904402643,175.90328979492188,-1.3925309758633375e-05,81.13957214355469,-0.9975737929344176,0.0027496805414557,0.8435752391815186,4413\n2311A,115.8067,33.8399,20170930,23.160714285714285,3166.0,6777.0,1761872.5278001337,646576.9226758309,39,1.1199361085891724,236.5893096923828,294.83477783203125,100792.09375,0.0032483376562595,165.25930786132812,-1.1860951417475007e-05,75.00956726074219,-0.9348432421684264,0.616705060005188,0.7963799238204956,5455\n2312A,115.7831,33.8561,20170930,21.571428571428577,3163.0,6773.0,1759494.7532191046,648060.0469221858,39,1.113734006881714,236.1529083251953,294.8445129394531,100797.6953125,0.0032500221859663,164.90823364257812,-1.1889684174093418e-05,74.96863555908203,-0.9249682426452636,0.620352566242218,0.7827152013778687,2591\n2314A,117.4697,30.6617,20170930,31.074074074074076,3674.0,7043.0,1986599.7896792148,306880.2837323274,19,1.6201465129852295,308.3812866210937,296.24957275390625,100552.421875,0.0030116888228803,205.565185546875,-2.3553446226287637e-05,83.23473358154297,-1.2700934410095217,-1.0058515071868896,0.8206959366798401,2854\n2315A,117.4974,30.6539,20170930,42.96296296296296,3675.0,7048.0,1989216.7952771024,306535.691091587,10,1.570870041847229,306.5438232421875,296.17559814453125,100381.8984375,0.003059976035729,201.7993011474609,-2.18729255720973e-05,83.47193145751953,-1.2621004581451416,-0.935272753238678,0.8107128739356995,5570\n2316A,118.7581,30.9447,20170930,28.67857142857143,3629.0,7249.0,2090267.184094644,366411.82626332017,18,1.3925347328186035,283.4414367675781,295.9476013183594,100759.125,0.0023910889867693,209.5211334228516,-1.5728597645647824e-05,82.18893432617188,-1.354407787322998,-0.3236242532730102,0.7962564826011658,3366\n2317A,118.7386,30.9742,20170930,31.714285714285715,3624.0,7246.0,2087743.3969438416,369412.9939295685,40,1.440407633781433,284.4395446777344,295.9332275390625,100740.1484375,0.0023454364854842,213.5724029541016,-1.6107091141748242e-05,81.77703094482422,-1.3949261903762815,-0.3591029345989227,0.8112267851829529,6590\n2318A,118.7175,30.9431,20170930,26.05555555555556,3629.0,7243.0,2086810.4585438787,365363.5989584312,42,1.3974876403808594,284.3795471191406,295.9298400878906,100713.5625,0.0024070360232144,207.54324340820312,-1.5236561921483371e-05,82.15436553955078,-1.3537256717681885,-0.3469850122928619,0.8188186883926392,4003\n2319A,119.0156,25.442,20170930,27.703703703703702,4509.0,7290.0,2269646.2897997783,-258298.0098223588,20,0.6944143176078796,301.1446838378906,299.41705322265625,99315.0703125,0.0009694821783341,326.93658447265625,-3.519814708852209e-05,83.10953521728516,-0.5943467020988464,-0.3591145575046539,0.3530889451503753,3448\n2320A,119.0018,25.4552,20170930,33.625,4507.0,7288.0,2267995.467381805,-257121.4852852131,58,0.649377167224884,299.422607421875,299.2447814941406,98981.875,0.0010094947647303,317.8138732910156,-2.958585537271574e-05,83.0377197265625,-0.5656402111053467,-0.3189699351787567,0.3144305944442749,4858\n2323A,118.981,25.4792,20170930,30.214285714285715,4503.0,7285.0,2265392.1465311763,-254882.48360011703,139,0.576264500617981,295.99420166015625,298.9324951171875,98375.5859375,0.0010794990230351,302.2832336425781,-2.192803003708832e-05,82.89155578613281,-0.5179837942123413,-0.2525343000888824,0.3034570813179016,5916\n2324A,117.6211,26.2625,20170930,27.23214285714285,4378.0,7067.0,2118371.8495113915,-196173.8529831787,165,0.3654461503028869,258.197509765625,298.73358154296875,95590.1015625,0.0023727386724203,89.68342590332031,-1.0405490684206598e-05,74.0562515258789,-0.3577170670032501,0.0747622847557067,0.3398849368095398,1622\n2325A,117.6353,26.2708,20170930,26.64583333333333,4377.0,7070.0,2119456.0136998813,-194920.9994378772,221,0.3544245660305023,256.40020751953125,298.6800231933594,95493.2890625,0.0023648897185921,91.3522720336914,-1.050317041517701e-05,74.1989517211914,-0.344483882188797,0.0833524614572525,0.3634287118911743,4368\n2326A,117.6028,26.2378,20170930,24.48214285714285,4382.0,7064.0,2117348.1750259586,-199385.30150953,188,0.3621797263622284,258.23834228515625,298.7715148925781,95664.3828125,0.0023627222981303,89.0356674194336,-1.0256502719130369e-05,73.87137603759766,-0.35457244515419,0.0738413035869598,0.3453111052513122,1492\n2327A,117.7275,26.3108,20170930,24.17857142857143,4370.0,7084.0,2126860.6614773874,-188366.77612211445,266,0.2851891219615936,245.56622314453125,298.740234375,95669.8203125,0.0022939287591725,99.3866729736328,-1.111071469495073e-05,74.67960357666016,-0.2596435844898224,0.1179747357964515,0.3268541693687439,6298\n2331A,118.0966,26.6761,20170930,20.535714285714285,4312.0,7143.0,2150792.156722192,-138657.99506311392,1044,0.2623756825923919,234.7559814453125,299.6004638671875,96253.296875,0.0014566847821697,154.18153381347656,-1.5173506653809454e-05,68.19322967529297,-0.2142784297466278,0.1514125168323516,0.3419768214225769,6980\n2332A,118.1694,26.6383,20170930,18.732142857142858,4318.0,7155.0,2158481.672402429,-141374.56539950406,125,0.3627398610115051,241.3377227783203,299.97760009765625,96710.8359375,0.0011630249209702,162.86656188964844,-1.4992472642916256e-05,67.7651138305664,-0.3182849884033203,0.1739967465400695,0.3665202260017395,2490\n2333A,118.1819,26.6514,20170930,22.69642857142857,4316.0,7157.0,2159265.233566721,-139605.46055104095,121,0.3651401102542877,241.75320434570312,299.9629211425781,96684.3515625,0.0011326607782393,163.7665557861328,-1.4858017493679654e-05,67.6754150390625,-0.3216527104377746,0.1728202104568481,0.3543548285961151,5283\n2334A,118.1756,26.6272,20170930,21.785714285714285,4320.0,7156.0,2159352.843070608,-142504.58878693328,152,0.3790553212165832,241.91265869140625,300.0666809082031,96856.90625,0.0011256748111918,163.94439697265625,-1.5050344700284768e-05,67.73951721191406,-0.3344086408615112,0.178476333618164,0.3549744188785553,5928\n2335A,117.0181,25.1174,20170930,23.125,4561.0,6971.0,2092600.1913207867,-339472.5892936677,358,0.4512207508087158,221.7364044189453,297.40106201171875,94069.15625,0.0016619425732642,72.7903823852539,-7.90783542470308e-06,76.95524597167969,-0.3003724813461303,0.3367143273353576,0.3962393403053283,5027\n2336A,117.0216,25.1035,20170930,24.5,4564.0,6971.0,2093287.343388321,-340977.7940529589,338,0.4642695784568786,222.1683654785156,297.5323486328125,94415.953125,0.0016254978254437,74.30174255371094,-7.970118531375192e-06,77.12821197509766,-0.3116620481014251,0.3441119194030761,0.3875156342983246,3279\n2337A,117.0256,25.0661,20170930,19.857142857142858,4570.0,6972.0,2094630.1441670745,-345142.6030277726,353,0.4858923256397247,224.5269775390625,297.5657653808594,94550.296875,0.0015982327749952,77.18167114257812,-8.038879968808033e-06,77.50200653076172,-0.3407216370105743,0.3464103043079376,0.3534391820430755,3534\n2338A,117.0151,25.0311,20170930,19.964285714285715,4575.0,6970.0,2094554.5824947616,-349343.1519127051,397,0.501576840877533,226.44793701171875,297.6001281738281,94625.90625,0.0015686618862673,80.02143096923828,-8.257155059254728e-06,77.7223892211914,-0.3635088503360748,0.345601886510849,0.3803542554378509,5299\n2339A,119.5001,26.6946,20170930,25.19230769230769,4309.0,7368.0,2278312.8151818123,-104917.82954884208,135,0.421335756778717,283.0621643066406,297.2511291503906,96428.2265625,0.0030627564992755,197.2198486328125,-2.0785204469575547e-05,85.26898956298828,-0.4104389548301697,-0.0952034443616867,0.3287853300571441,6646\n2340A,119.5202,26.6607,20170930,26.160714285714285,4314.0,7371.0,2281125.4389794287,-108306.3822120872,83,0.4546222686767578,287.39190673828125,297.4510498046875,96823.1484375,0.002954225288704,211.39259338378903,-2.385190782661084e-05,85.2342758178711,-0.4338456392288208,-0.1358653157949447,0.3415791392326355,3604\n2341A,119.5392,26.6611,20170930,20.803571428571427,4314.0,7374.0,2282844.53055025,-107819.64242208912,27,0.4559729397296905,287.51470947265625,297.4846496582031,96891.765625,0.0029509656596928,219.6380920410156,-2.590122858237009e-05,85.02977752685547,-0.4348414540290832,-0.1372013688087463,0.3836682736873626,3526\n2342A,117.3097,29.3864,20170930,21.203703703703702,3878.0,7018.0,2006821.8415774077,155958.82249806143,81,1.4311680793762207,317.18341064453125,298.1679077148437,99777.2578125,0.0014712380943819,198.3476104736328,-1.648478973947931e-05,76.96733093261719,-0.9727729558944702,-1.049740433692932,0.5837806463241577,6822\n2343A,117.2111,29.2958,20170930,31.46296296296296,3893.0,7002.0,2000512.1314564864,143480.0320921687,45,1.4432228803634644,321.2081298828125,298.2841491699219,99904.390625,0.0012952743563801,204.3052215576172,-1.7104068319895305e-05,75.96717071533203,-0.9042511582374572,-1.1248208284378052,0.6024981141090393,3457\n2344A,117.1983,29.2786,20170930,27.82142857142857,3896.0,7000.0,1999835.690263616,141232.27456660167,59,1.4436287879943848,321.98406982421875,298.33331298828125,99872.8984375,0.0012674173340201,204.95822143554688,-1.713918572932016e-05,75.71332550048828,-0.8891861438751221,-1.1372827291488647,0.613533616065979,4064\n2345A,117.1558,29.2647,20170930,28.392857142857142,3898.0,6993.0,1996440.454459809,138762.073087422,38,1.4586111307144165,324.1591186523437,298.3687744140625,99905.7890625,0.0012250004801899,203.66546630859372,-1.713570782158058e-05,75.46234893798828,-0.8541572093963623,-1.18235445022583,0.6059606075286865,4006\n2346A,117.2461,29.2956,20170930,28.035714285714285,3893.0,7007.0,2003615.8349127409,144170.06427195165,51,1.4353379011154177,319.8501281738281,298.2926025390625,99840.71875,0.0013085952959954,205.7948303222656,-1.712844277790282e-05,76.0452651977539,-0.9255691766738892,-1.0970489978790283,0.6530355215072632,4083\n2347A,114.0944,27.4948,20170930,17.482142857142858,4181.0,6503.0,1764724.8309946586,-124369.65821175376,397,0.4049240052700043,266.1953430175781,296.488037109375,94375.828125,0.0031995184253901,120.7186279296875,-1.1574941709113771e-05,81.8294677734375,-0.4040303826332092,0.0268867164850235,0.6681833863258362,6798\n2348A,113.8381,27.6428,20170930,38.75,4157.0,6462.0,1738009.0356285826,-111831.65234103688,110,0.4273565411567688,276.16680908203125,298.4932861328125,99058.734375,0.0020205120090395,140.9618682861328,-1.160545798484236e-05,78.94538879394531,-0.4248858690261841,-0.0458869785070419,0.7319207191467285,1503\n2349A,113.8447,27.6231,20170930,35.892857142857146,4160.0,6463.0,1739052.8185498226,-113993.005896597,109,0.4301271736621856,274.7980041503906,298.4550476074219,99049.7890625,0.0021425897721201,139.74888610839844,-1.1595278010645416e-05,79.21107482910156,-0.4286216497421264,-0.035956222563982,0.7224904298782349,3020\n2350A,113.8686,27.6442,20170930,35.607142857142854,4157.0,6467.0,1740756.853579138,-111129.83984451884,109,0.4340054988861084,271.2952880859375,298.458251953125,99026.796875,0.0020943980198353,139.5206298828125,-1.1595263458730187e-05,79.14935302734375,-0.433895081281662,-0.0097902631387114,0.7659739255905151,2976\n2351A,113.865,27.6178,20170930,34.410714285714285,4161.0,6466.0,1741022.2371732127,-114246.37055030932,115,0.4336645901203155,271.8798217773437,298.426025390625,99029.0390625,0.0022200874518603,138.60960388183594,-1.1593605449888855e-05,79.41168212890625,-0.43343186378479,-0.0142051130533218,0.7360207438468933,4709\n2352A,115.0586,27.7758,20170930,36.642857142857146,4136.0,6657.0,1845915.6522228064,-74206.46100312917,72,1.3193330764770508,312.7131042480469,299.8113708496094,100030.25,0.0009944955818355,245.9426727294922,-2.08493565878598e-05,71.75147247314453,-0.9694535732269288,-0.8948740363121033,0.6418740749359131,6959\n2353A,114.9831,27.8344,20170930,37.03703703703704,4127.0,6645.0,1837668.7320569232,-68856.76044278535,54,1.3093851804733276,308.979736328125,299.7149963378906,100238.5625,0.0010864366777241,235.56040954589844,-1.950193109223619e-05,72.3275375366211,-1.0179295539855957,-0.8235952258110046,0.6726652979850769,3708\n2354A,114.9289,27.8328,20170930,40.42857142857143,4127.0,6637.0,1832791.06211367,-70053.83302619017,51,1.2675511837005615,307.5641784667969,299.6889038085937,100272.328125,0.0011236862046644,227.58822631835935,-1.8988146621268243e-05,72.70048522949219,-1.0048017501831057,-0.7726963758468628,0.6821972727775574,2135\n2355A,114.9314,27.8036,20170930,36.83928571428572,4132.0,6637.0,1833711.2904826163,-73378.90728848478,60,1.24810528755188,309.1874694824219,299.8370666503906,100385.1953125,0.0010723284212872,230.14259338378903,-1.929103564179968e-05,72.59244537353516,-0.9674371480941772,-0.7885632514953613,0.6725385785102844,2013\n2356A,114.9119,27.8042,20170930,45.71428571428572,4131.0,6634.0,1831927.671054904,-73673.36069290356,71,1.23030424118042,308.23486328125,299.7914428710937,100373.8125,0.0011174527462571,226.63888549804688,-1.903686643345281e-05,72.76477813720703,-0.9664300084114076,-0.7613551020622253,0.6720322370529175,2534\n2357A,116.9622,28.095,20170930,23.98076923076923,4085.0,6962.0,2009954.5301688483,-63.79842710108032,103,0.8770107626914978,339.9772644042969,299.8280334472656,99380.859375,0.000920727092307,193.0242919921875,-1.6224172213696875e-05,70.67660522460938,-0.300350159406662,-0.8239767551422119,0.5242971777915955,7866\n2358A,117.0564,28.2642,20170930,27.10714285714285,4058.0,6977.0,2013984.4546769967,21340.64094460762,34,0.9303888082504272,340.3896484375,300.3812866210937,100308.640625,0.0006086001521907,204.43003845214844,-1.7813968952395953e-05,69.87372589111328,-0.3123311400413513,-0.8763974905014038,0.5478561520576477,4911\n2359A,117.0281,28.2403,20170930,27.94642857142857,4062.0,6972.0,2012071.24824598,18009.3125887501,37,0.9552468061447144,341.259033203125,300.3687744140625,100286.8515625,0.0006121876649558,206.52301025390625,-1.7636135453358293e-05,69.79022979736328,-0.3069864809513092,-0.9045749306678772,0.5773587226867676,2500\n2360A,117.0222,28.2264,20170930,25.69642857142857,4064.0,6972.0,2011906.169200477,16288.283141491664,40,0.9400169849395752,340.89971923828125,300.35089111328125,100254.375,0.0006242408417165,204.5333251953125,-1.747750684444327e-05,69.8965835571289,-0.307668536901474,-0.8882409334182739,0.5897074937820435,3902\n2361A,116.9983,28.2169,20170930,27.714285714285715,4065.0,6968.0,2010008.3655975373,14705.485259982275,40,0.976323902606964,341.9186706542969,300.3878479003906,100316.6484375,0.0006127342930994,207.3685302734375,-1.7469834347139113e-05,69.84675598144531,-0.3030957281589508,-0.9280847907066344,0.5937244892120361,3798\n2362A,114.9064,25.9118,20170930,42.35714285714285,4434.0,6633.0,1876142.040244145,-291455.7268141943,126,0.4133844077587127,348.53472900390625,300.6537475585937,98918.1015625,0.0012468928471207,269.0700988769531,-2.083543222397566e-05,70.22038269042969,-0.0822050273418426,-0.4051283895969391,0.5243806838989258,6079\n2363A,114.9367,25.8664,20170930,40.44642857142857,4441.0,6638.0,1880028.4981171903,-296077.7442316773,109,0.3861787021160126,342.44366455078125,300.6371459960937,98940.03125,0.0012534906854853,269.2521057128906,-2.017312726820819e-05,70.10188293457031,-0.1165191456675529,-0.368181049823761,0.5214551687240601,3781\n2364A,114.9461,25.8481,20170930,42.46428571428572,4444.0,6639.0,1881334.153967068,-297993.95952515537,117,0.3769164681434631,340.69171142578125,300.6005859375,98895.765625,0.0012701714877039,268.7189025878906,-1.981656896532513e-05,70.10066986083984,-0.1246572583913803,-0.3557057380676269,0.5373123288154602,3168\n2365A,114.9322,25.8333,20170930,39.535714285714285,4447.0,6637.0,1880389.794914991,-299955.1525860561,108,0.3767384588718414,340.8460693359375,300.6205444335937,98927.6953125,0.001271745073609,266.7275390625,-1.9355717086000368e-05,70.18984985351562,-0.1236400678753852,-0.3558721840381622,0.5210320949554443,3170\n2366A,114.8905,25.8471,20170930,45.907407407407405,4445.0,6630.0,1876185.3531846933,-299171.60273901414,121,0.3917076587677002,349.21209716796875,300.59112548828125,98993.984375,0.0013357220450416,264.0013732910156,-1.937129491125233e-05,70.38237762451172,-0.073351077735424,-0.3847785294055938,0.5226696729660034,2417\n2367A,114.9817,27.0658,20170930,41.407407407407405,4250.0,6645.0,1855813.9846336243,-157493.5722620702,51,1.1863996982574463,324.32373046875,300.7977294921875,100071.0625,0.0011298632016405,244.7779693603516,-2.1057448975625448e-05,70.80792999267578,-0.6919857859611511,-0.9636907577514648,0.6246426105499268,4221\n2368A,114.9739,27.11,20170930,44.98214285714285,4242.0,6644.0,1854050.7111222397,-152552.4451361309,61,1.207887053489685,324.9246826171875,300.77130126953125,100105.9375,0.0010708944173529,241.8746032714844,-2.0173682059976272e-05,70.87150573730469,-0.6941890716552734,-0.988480031490326,0.6469473242759705,2826\n2369A,114.99,27.1311,20170930,41.375,4239.0,6646.0,1855023.3454157,-149819.20740741948,58,1.202167272567749,324.6884155273437,300.7574157714844,100115.0546875,0.0010459687327966,242.52117919921875,-2.005010173888877e-05,70.8697280883789,-0.6949535012245178,-0.980941355228424,0.6637647747993469,3607\n2370A,115.0075,27.0983,20170930,47.98214285714285,4244.0,6649.0,1857404.515729327,-153264.8476543171,57,1.1955395936965942,324.0365295410156,300.8082275390625,100137.0703125,0.0010477543110027,244.9212646484375,-2.0613191736629236e-05,70.78367614746094,-0.7021756172180176,-0.96760755777359,0.6278266906738281,3481\n2371A,114.3442,27.8036,20170930,47.51785714285714,4132.0,6543.0,1780398.792691117,-84177.98452473641,98,0.6552630662918091,267.5495910644531,298.8108215332031,99802.375,0.0023318794555962,136.3682098388672,-1.1530526535352692e-05,78.53166198730469,-0.6546626687049866,0.0280450787395238,0.6958752870559692,4313\n2372A,114.3806,27.8014,20170930,49.33928571428572,4132.0,6549.0,1783756.274754278,-83772.12976428839,102,0.6727471351623535,270.5741271972656,298.8695373535156,99876.1875,0.0023045011330395,141.48599243164062,-1.2124964996473864e-05,78.23377990722656,-0.6727136969566345,-0.0067097409628331,0.7279614806175232,3690\n2373A,114.3953,27.7842,20170930,44.91071428571429,4135.0,6551.0,1785489.229030935,-85493.24674917736,107,0.6467862129211426,271.048583984375,298.72296142578125,99517.9453125,0.0023453466128557,141.84718322753906,-1.2371429875202011e-05,78.30186462402344,-0.6466784477233887,-0.0118058724328875,0.7446705102920532,5510\n2374A,114.3703,27.7914,20170930,48.21428571428572,4133.0,6547.0,1783051.47022362,-85114.99595776059,104,0.6562461853027344,269.299560546875,298.8165588378906,99777.34375,0.0023313830606639,139.25025939941406,-1.1934160283999518e-05,78.39045715332031,-0.6561967730522156,0.0080527001991868,0.740772545337677,2752\n2375A,114.4011,27.8072,20170930,48.69642857142857,4131.0,6552.0,1785484.3674760545,-82729.366197287,97,0.6934680342674255,272.3081359863281,298.88525390625,99881.8671875,0.0022717525716871,144.4727325439453,-1.2403887012624182e-05,78.0294418334961,-0.6929067373275757,-0.0278956294059753,0.7638365030288696,2827\n2376A,116.2239,28.0797,20170930,33.32142857142857,4087.0,6844.0,1943846.016460574,-16680.09585076286,45,1.5672740936279297,347.06463623046875,299.9745788574219,100303.0234375,0.0006537055596709,258.286865234375,-2.0365248929010704e-05,72.60427856445312,-0.3509684801101684,-1.5274715423583984,0.6095056533813477,7164\n2377A,116.3553,27.9883,20170930,36.32142857142857,4102.0,6865.0,1958016.4801360832,-24602.954353737023,43,1.4074647426605225,348.859619140625,300.3108215332031,100445.5703125,0.0005118046537972,244.19012451171875,-1.982984940696042e-05,71.58100128173828,-0.2720614075660705,-1.3809198141098022,0.6048073172569275,2650\n2378A,116.3598,27.9639,20170930,30.81481481481481,4106.0,6866.0,1959043.313269916,-27323.74820231644,49,1.3658146858215332,349.0300598144531,300.289306640625,100330.4921875,0.0005154471145942,242.0371551513672,-1.9406777937547304e-05,71.59027099609375,-0.2600228786468506,-1.3408347368240356,0.6025832295417786,3282\n2379A,116.3574,28.0005,20170930,34.01851851851852,4100.0,6865.0,1957895.615661036,-23155.759696459223,40,1.426070213317871,348.7947998046875,300.313720703125,100488.59375,0.0005152992089278,245.0691680908203,-1.998052903218195e-05,71.6064453125,-0.2772400081157684,-1.3988617658615112,0.6035444736480713,3019\n2380A,116.385,27.9647,20170930,27.73214285714285,4106.0,6870.0,1961297.6044311996,-26728.89280097293,47,1.3521020412445068,349.19970703125,300.2750549316406,100286.9453125,0.0005244889762252,240.24261474609372,-1.937769411597401e-05,71.57439422607422,-0.2534809708595276,-1.3281292915344238,0.6009930968284607,3323\n2381A,118.0058,28.4569,20170930,30.339285714285715,4027.0,7129.0,2093837.0577692708,63355.263932267975,125,0.806094765663147,300.8506164550781,300.1694030761719,99277.8515625,0.0009487102506682,197.0068817138672,-9.893208698485978e-06,68.62698364257812,-0.6920638680458069,-0.4133235812187195,0.4992901682853699,6541\n2382A,117.973,28.4459,20170930,35.964285714285715,4029.0,7124.0,2091207.6165063176,61392.22790915319,89,0.7625488638877869,294.9501647949219,300.0818176269531,99170.8828125,0.0010032153222709,191.07809448242188,-1.0221874617855065e-05,68.8977279663086,-0.6914030909538269,-0.3216249346733093,0.5155189037322998,4687\n2383A,117.9511,28.4622,20170930,39.05555555555557,4026.0,7120.0,2088804.6270223155,62800.349019267815,85,0.8052247762680054,295.5927734375,300.2019958496094,99184.359375,0.0008584329625591,197.27867126464844,-1.0111880328622648e-05,68.23428344726562,-0.7262423634529114,-0.347791463136673,0.5251950025558472,3083\n2384A,117.9033,28.4303,20170930,44.14,4031.0,7113.0,2085404.2195137327,58117.42673374532,85,0.7314557433128357,284.3117980957031,300.0164489746094,99000.21875,0.0010114366887137,184.4610137939453,-1.0707301044021731e-05,68.63182067871094,-0.7087646126747131,-0.1807767003774643,0.534630537033081,2758\n2385A,114.17,35.9019,20170930,47.05555555555557,2836.0,6515.0,1576879.6853202167,862483.1651688896,183,1.5517728328704834,38.31208801269531,294.39276123046875,97836.9921875,0.0005689454847015,145.33863830566406,-9.594452421879396e-06,67.14327239990234,0.9619892239570618,1.2176107168197632,0.595282793045044,3408\n2386A,114.2956,35.7511,20170930,42.96428571428572,2860.0,6535.0,1590638.137638501,846612.4253695097,90,1.5328794717788696,27.874652862548828,295.4454650878906,99981.9921875,0.0007051336579024,159.46054077148438,-1.0790240594360512e-05,69.95637512207031,0.716661274433136,1.3550336360931396,0.6735336780548096,3491\n2387A,114.2878,35.7306,20170930,42.30357142857143,2863.0,6534.0,1590487.025306871,844054.269670693,88,1.4988151788711548,28.244722366333008,295.43212890625,100018.8359375,0.0007319340948015,157.42507934570312,-1.0759284123196268e-05,70.18787384033203,0.7092780470848083,1.3203680515289309,0.6794177293777466,3488\n2389A,113.836,35.31,20170930,49.32142857142857,2930.0,6462.0,1563381.4662337217,786912.6748246476,73,0.1518729031085968,51.43451690673828,295.22613525390625,99683.2890625,0.0010215911315754,93.1757354736328,-7.218939572339877e-06,66.35782623291016,0.1187463328242302,0.0946820378303527,0.7065027952194214,2366\n2390A,113.884,35.272,20170930,51.67857142857143,2937.0,6469.0,1568193.2371085128,783170.9293929542,72,0.271540492773056,7.118319034576416,295.1761779785156,99875.234375,0.0010730060748755,97.86778259277344,-7.887558240327053e-06,67.19152069091797,0.0336478576064109,0.2694476842880249,0.6580409407615662,2409\n2391A,113.883,35.30300000000001,20170930,46.23214285714285,2932.0,6469.0,1567395.900429671,786831.2393014932,74,0.2249107509851455,19.805763244628903,295.1789855957031,99794.1484375,0.0010554214240983,97.48114013671876,-7.743993592157494e-06,67.17202758789062,0.0762049257755279,0.2116073071956634,0.6718341112136841,1912\n2392A,115.031,35.76300000000001,20170930,38.892857142857146,2858.0,6653.0,1650143.2458993164,860150.6616782272,54,1.434873342514038,188.34457397460935,295.60498046875,100621.3984375,0.0010815256973728,173.84588623046875,-1.2159490324847866e-05,64.99945068359375,-0.2082318067550659,1.4196834564208984,0.7085715532302856,2344\n2394A,115.0628,35.7672,20170930,37.267857142857146,2857.0,6658.0,1652623.4236484051,861182.6019160567,51,1.4371190071105957,188.98948669433597,295.6107482910156,100623.796875,0.0010812507243826,174.6881103515625,-1.227538268722128e-05,64.96693420410156,-0.2245477586984634,1.4194679260253906,0.7247577905654907,2768\n2395A,115.0772,35.767,20170930,37.481481481481474,2857.0,6660.0,1653797.949050044,861401.1932882805,51,1.4363834857940674,189.2954864501953,295.61090087890625,100624.8046875,0.0010832623811438,174.90089416503906,-1.2332638107181992e-05,64.97492980957031,-0.2320065647363662,1.417522668838501,0.7167056798934937,3680\n2396A,113.8331,34.0117,20170930,40.0,3138.0,6461.0,1592973.5468594823,633144.2898393589,71,0.4763725996017456,222.93621826171875,294.5893249511719,100317.8359375,0.0027484078891575,141.8110809326172,-1.4730177099409048e-05,74.88338470458984,-0.3244896233081817,0.3487654626369476,0.7858432531356812,2639\n2398A,113.7906,33.9953,20170930,31.767857142857142,3141.0,6454.0,1589798.005942752,630517.594394727,69,0.459972470998764,223.93060302734372,294.5797119140625,100273.34375,0.0027615136932581,142.73822021484375,-1.4837816706858575e-05,75.08560180664062,-0.3191152513027191,0.3312704861164093,0.7989294528961182,3542\n2399A,114.056,33.567,20170930,32.785714285714285,3209.0,6497.0,1621903.539486874,584276.1560982083,62,0.6730672121047974,244.91018676757807,294.7405090332031,100575.6484375,0.0028806529007852,157.44119262695312,-1.2784031241608318e-05,75.00724792480469,-0.609549880027771,0.2854267358779907,0.8155102729797363,2604\n2400A,114.005,33.568000000000005,20170930,33.94642857142857,3209.0,6489.0,1617594.0295511947,583553.4408340026,63,0.6661249995231628,244.89031982421875,294.730224609375,100556.390625,0.002871966920793,157.61117553710938,-1.2998350939597003e-05,74.92106628417969,-0.6031649112701416,0.2826917767524719,0.803994357585907,2272\n2401A,114.014,33.581,20170930,31.839285714285715,3207.0,6490.0,1618049.8686146196,585235.640909436,64,0.6691023111343384,244.55841064453125,294.72967529296875,100570.6015625,0.0028912217821925,157.2350616455078,-1.3049336303083692e-05,74.84591674804688,-0.6042056679725647,0.2874602973461151,0.8050704002380371,2799\n2402A,114.0322,33.5653,20170930,35.125,3210.0,6493.0,1619942.6209128257,583682.9573667224,63,0.6702185273170471,245.1307678222656,294.7405090332031,100569.421875,0.002868999261409,157.70677185058594,-1.2852005966124125e-05,75.007080078125,-0.6080597639083862,0.2818797528743744,0.8134567141532898,2339\n2403A,112.5192,32.9917,20170930,26.42592592592593,3301.0,6251.0,1504811.5502489822,491899.4999457868,125,0.8567409515380859,318.1805419921875,294.34930419921875,99576.8984375,0.0026521999388933,177.33270263671875,-1.738226637826301e-05,79.9680404663086,-0.5713075995445251,-0.6384454965591431,0.8258695602416992,2208\n2404A,112.5224,33.0122,20170930,26.892857142857142,3298.0,6252.0,1504646.982216325,494370.3040712911,129,0.8342776298522949,320.0416259765625,294.3274230957031,99543.0859375,0.0026499738451093,175.28416442871094,-1.732487180561293e-05,79.97956085205078,-0.5358450412750244,-0.6394444704055786,0.8096612095832825,2475\n2405A,112.5003,32.9735,20170930,36.642857142857146,3304.0,6248.0,1503592.3777455753,489460.1653381704,126,0.8646644949913025,315.7203674316406,294.3599548339844,99574.7578125,0.0026489663869142,177.00689697265625,-1.7432003005524166e-05,79.94650268554688,-0.6037180423736572,-0.6190065741539001,0.823355495929718,2962\n2406A,112.5573,33.027,20170930,33.660714285714285,3296.0,6257.0,1507296.133278448,496653.6545051158,128,0.8101873397827148,322.1501770019531,294.3233947753906,99579.671875,0.0026673297397792,175.7250213623047,-1.7361640857416205e-05,80.01697540283203,-0.4971728026866913,-0.6397051811218262,0.8035621047019958,2713\n2407A,112.55,32.9683,20170930,25.5,3305.0,6256.0,1507927.9548986943,489607.5410326215,122,0.849063515663147,316.60772705078125,294.3910522460937,99690.3515625,0.0026982673443853,180.3438720703125,-1.7503092749393545e-05,80.01490783691406,-0.5833413600921631,-0.6169454455375671,0.8245444297790527,4197\n2408A,115.6697,34.4286,20170930,33.592592592592595,3072.0,6755.0,1735638.7935605592,713466.8412672556,49,1.092747926712036,227.75338745117188,295.0370178222656,100664.2578125,0.0031990900170058,163.4053955078125,-1.294012963626301e-05,72.5986328125,-0.8088971972465515,0.7346994280815125,0.7634148597717285,3398\n2409A,115.6558,34.429,20170930,31.07142857142857,3071.0,6753.0,1734478.7967893605,713268.5471769795,50,1.091166853904724,227.4832000732422,295.03887939453125,100660.0859375,0.0031979456543922,163.2104034423828,-1.293809873459395e-05,72.59896850585938,-0.8042584657669067,0.7374371886253357,0.7370348572731018,2684\n2410A,115.6386,34.407,20170930,25.464285714285715,3075.0,6750.0,1733608.7044593983,710371.6114728132,50,1.084730625152588,227.8525238037109,295.0430603027344,100672.0625,0.0032297077123075,162.94772338867188,-1.2901010450150352e-05,72.73291015625,-0.8042232394218445,0.7279186248779297,0.7667352557182312,2976\n2411A,115.6578,34.402,20170930,31.32692307692308,3076.0,6753.0,1735323.419731144,710121.1449308166,49,1.087675929069519,228.1923065185547,295.0394592285156,100676.1640625,0.003228309797123,163.23880004882812,-1.290925865760073e-05,72.72232055664062,-0.8107209801673889,0.7251002192497253,0.7733120918273926,2993\n2420A,114.018,32.965,20170930,26.589285714285715,3306.0,6491.0,1632620.3059052185,512678.79339506576,83,0.5630398392677307,262.272216796875,294.5971984863281,100014.09375,0.002550954464823,173.17987060546875,-1.5158628229983153e-05,80.53002166748047,-0.5579231381416321,0.0757337659597396,0.8959301710128784,1459\n2421A,114.0131,33.0069,20170930,33.388888888888886,3299.0,6490.0,1631237.7919591316,517532.9514637915,85,0.5620146989822388,258.0407409667969,294.6320495605469,100123.9296875,0.0024396060034632,172.08224487304688,-1.5316374629037455e-05,80.06829833984375,-0.549811601638794,0.1164806187152862,0.8644116520881653,2060\n2422A,113.996,32.996,20170930,31.767857142857142,3301.0,6487.0,1630040.4023704738,515965.1358843805,90,0.5509629249572754,258.9356994628906,294.6072082519531,100104.6796875,0.0024518803693354,172.0822296142578,-1.4725595065101516e-05,80.37972259521484,-0.5407175421714783,0.1057576388120651,0.916668176651001,2301\n2423A,115.0625,30.2352,20170930,32.98148148148148,3742.0,6658.0,1787215.9229531034,211059.9407323082,28,0.8754811882972717,254.4527587890625,296.9668884277344,100611.546875,0.0020593875087797,203.91358947753903,-3.246210326324217e-05,79.6168212890625,-0.8434382081031799,0.2346898466348648,0.802089512348175,2323\n2424A,115.0767,30.2028,20170930,43.25,3748.0,6660.0,1789245.2311426187,207544.5506422441,78,0.9127206802368164,251.07159423828125,297.0403747558594,100735.0859375,0.0020643554162234,206.8580017089844,-3.071509490837343e-05,80.10131072998047,-0.8633542060852051,0.2961057424545288,0.8067482709884644,4402\n2425A,114.9551,30.1765,20170930,40.142857142857146,3752.0,6641.0,1779188.9463146366,202273.1541619434,43,0.8988904356956482,258.2279663085937,297.007568359375,100650.28125,0.0021601403132081,209.7081756591797,-3.089602614636533e-05,80.37779235839844,-0.879976749420166,0.1834255158901214,0.8180752992630005,4402\n2426A,114.8949,30.2043,20170930,42.5925925925926,3747.0,6631.0,1773230.2969567871,204423.61499592036,76,0.9142464399337769,264.1114807128906,297.0637512207031,100782.640625,0.0021076255943626,206.8630828857422,-3.50569243892096e-05,80.20691680908203,-0.9094182252883912,0.0938350185751915,0.7953562140464783,4715\n2427A,115.0264,30.2099,20170930,37.81481481481482,3746.0,6652.0,1784653.8638741432,207456.76166804307,36,0.8893508911132812,253.94387817382807,297.0496826171875,100717.75,0.0020694287959486,207.41458129882807,-3.1651139579480514e-05,79.82174682617188,-0.8546491265296936,0.246007964015007,0.8199315667152405,3590\n2428A,111.0419,32.395,20170930,19.923076923076927,3397.0,6015.0,1390732.1828747725,399611.1340510383,906,0.6074532866477966,227.63412475585935,292.35894775390625,94446.3984375,0.0036802503746002,124.640380859375,-9.72872931015445e-06,83.91825866699219,-0.4488109946250915,0.4093509316444397,0.7536157965660095,4536\n2429A,110.78,32.6494,20170930,33.596153846153854,3356.0,5973.0,1363348.2141584586,426035.0209641258,267,0.6669874787330627,273.78863525390625,293.14385986328125,96034.6796875,0.0037193468306213,115.80199432373048,-1.0948349881800825e-05,82.68574523925781,-0.6655319333076477,-0.0440399646759033,0.718923032283783,3445\n2430A,110.7258,32.6389,20170930,29.035714285714285,3358.0,5964.0,1358906.247399504,424041.3250191991,319,0.6720350384712219,277.09161376953125,292.82293701171875,95209.296875,0.0037831049412488,112.67623138427734,-1.027978396450635e-05,82.83673858642578,-0.6668980717658997,-0.0829338356852531,0.7095471024513245,5614\n2431A,110.8839,32.5714,20170930,28.142857142857142,3369.0,5989.0,1373752.0046705245,418251.3889842024,248,0.6193618774414062,252.79107666015625,292.89947509765625,95570.828125,0.0036641156766563,116.34838104248048,-1.080535730579868e-05,83.18562316894531,-0.5916275382041931,0.1832647025585174,0.7431662678718567,3030\n2432A,112.155,32.0197,20170930,37.407407407407405,3457.0,6193.0,1494087.063020776,371650.2164145579,69,0.3166119158267975,343.1396484375,294.6671447753906,99960.453125,0.0037143847439438,174.79930114746094,-1.47529290188686e-05,80.82125854492188,-0.0918555706739425,-0.3029944896697998,0.9254152178764344,3257\n2433A,112.1392,32.0564,20170930,29.94642857142857,3451.0,6190.0,1491962.7230032762,375735.6729527161,70,0.2946284115314483,332.5052490234375,294.6583557128906,100012.484375,0.0036863856948912,174.73275756835938,-1.5072899259394036e-05,80.76995849609375,-0.1360407620668411,-0.2613404095172882,0.917865753173828,2370\n2434A,112.1825,32.1142,20170930,37.0925925925926,3442.0,6197.0,1494489.8422193371,383206.981073358,80,0.4343093931674957,307.995849609375,294.658447265625,100187.1015625,0.0035948746372014,178.86245727539062,-1.5826621165615506e-05,80.71721649169922,-0.3422774970531463,-0.2673401534557342,0.9130374789237976,4043\n2435A,112.2106,32.0903,20170930,33.05357142857143,3446.0,6202.0,1497407.433331198,380817.5614496623,68,0.4683210551738739,310.997314453125,294.6667175292969,100217.796875,0.0036019324325025,180.01119995117188,-1.5685220205341466e-05,80.75760650634766,-0.3534815013408661,-0.307205855846405,0.9276816248893738,3134\n2436A,114.8878,30.3944,20170930,35.214285714285715,3717.0,6630.0,1768059.3073091272,226452.28411176143,24,0.8638392090797424,287.3389587402344,296.8411560058594,100581.1015625,0.0019759279675781,185.54193115234372,-3.45452172041405e-05,79.01944732666016,-0.8245992064476013,-0.2573992908000946,0.8314123153686523,2887\n2437A,114.8989,30.3714,20170930,38.46428571428572,3721.0,6632.0,1769583.1736524466,223970.6214975908,32,0.8540535569190979,282.85369873046875,296.85650634765625,100556.9140625,0.0019854246638715,188.52687072753903,-3.47324603353627e-05,79.12886810302734,-0.8326621055603027,-0.1899506449699401,0.8054340481758118,3002\n2438A,114.8131,30.4133,20170930,21.017857142857142,3714.0,6618.0,1761058.2312736297,227314.6392758406,22,0.9325709342956544,295.1378173828125,296.8619384765625,100684.7109375,0.0019929686095565,186.27850341796875,-3.656815169961192e-05,78.93079376220703,-0.8442692160606384,-0.39610356092453,0.8559024930000305,4486\n2439A,112.2014,31.0483,20170930,29.464285714285715,3612.0,6200.0,1518301.9443409191,258064.9940135208,98,1.5155842304229736,356.6412658691406,295.1934509277344,99686.328125,0.0027665065135806,188.1011199951172,-2.1985671992297284e-05,81.3537368774414,-0.0889304652810096,-1.5129728317260742,0.9351325035095216,2842\n2440A,112.1969,30.9892,20170930,26.80357142857143,3622.0,6199.0,1519136.2688867236,251053.8244428844,115,1.551419973373413,353.121337890625,295.3034362792969,99933.984375,0.0027334727346897,188.50917053222656,-2.253877391922288e-05,81.25767517089844,-0.1859457790851593,-1.5402363538742063,0.9281245470046996,3299\n2441A,112.2211,31.0386,20170930,29.51851851851852,3614.0,6203.0,1520224.7164294473,257230.20387374016,89,1.518247127532959,356.2034912109375,295.22515869140625,99798.8671875,0.0027592324186116,187.24842834472656,-2.164372926927172e-05,81.18818664550781,-0.1006636172533035,-1.5149062871932983,0.9420129656791688,3332\n2443A,113.9153,30.9285,20170930,26.0,3632.0,6474.0,1670527.7873262414,271828.62899597886,31,1.5933047533035278,323.12890625,295.9786071777344,100732.671875,0.0033062226139009,166.7348175048828,-2.046554618573282e-05,78.28288269042969,-0.9561030268669128,-1.274553656578064,0.8704411387443542,3488\n2444A,113.942,30.9075,20170930,30.66666666666667,3635.0,6479.0,1673336.2924770715,269825.28169306053,25,1.5726622343063354,322.6538391113281,296.01031494140625,100723.234375,0.0032643694430589,167.1268310546875,-2.068721551040653e-05,78.41780853271484,-0.954114556312561,-1.250172734260559,0.8994734287261963,4296\n2446A,114.9028,30.4742,20170930,21.678571428571423,3704.0,6632.0,1767463.5628911743,236027.35309665432,28,0.8751183152198792,296.8094177246094,296.8749694824219,100815.2734375,0.0019924256484955,173.84791564941406,-3.213974923710339e-05,78.6363754272461,-0.7810770273208618,-0.3946527242660522,0.8278023600578308,3609\n2447A,114.3036,29.8181,20170930,32.232142857142854,3809.0,6537.0,1730178.4046810877,148888.18062551256,65,0.9948850274086,290.8052673339844,296.6691589355469,99827.03125,0.0025869542732834,175.52520751953125,-1.7566102542332374e-05,81.73603057861328,-0.9300317764282228,-0.3533229529857635,0.8539962768554688,4805\n2448A,114.3231,29.8211,20170930,32.625,3809.0,6540.0,1731833.9842003572,149581.18429410015,68,0.9810920357704164,289.5033264160156,296.660400390625,99814.609375,0.0026045846752822,176.39999389648438,-1.761381463438738e-05,81.81776428222656,-0.9248175621032716,-0.3274967074394226,0.8527644872665405,4615\n2449A,114.2894,29.8539,20170930,30.160714285714285,3803.0,6534.0,1728092.585301186,152809.09995797134,48,1.0373886823654177,293.4402770996094,296.8238525390625,100240.0390625,0.002410510322079,176.41798400878906,-1.888528640847653e-05,81.01773071289062,-0.9518024921417236,-0.4126102328300476,0.8518065214157104,3750\n2450A,114.3372,29.8686,20170930,39.94642857142857,3801.0,6542.0,1731978.0609288777,155363.4010426716,50,1.0073124170303345,290.5270080566406,296.8446350097656,100336.578125,0.0023701905738562,178.86036682128906,-1.9414505004533567e-05,81.07991027832031,-0.9433753490447998,-0.3531590402126312,0.8473372459411621,4516\n2451A,113.3583,31.7275,20170930,28.75,3504.0,6385.0,1604197.2608635926,356238.2333476151,70,1.011460781097412,308.6758117675781,294.6509094238281,99830.3828125,0.0035161536652594,167.58473205566406,-1.3174867490306497e-05,83.29037475585938,-0.7896834015846252,-0.6320229172706604,0.9382195472717284,2429\n2452A,113.3833,31.6908,20170930,28.25,3510.0,6389.0,1607172.3889587312,352335.6562003238,85,0.9941605925559998,310.420166015625,294.6669616699219,99832.6640625,0.0035546293947845,167.8768768310547,-1.3632967238663696e-05,83.05857849121094,-0.7569080591201782,-0.6445505619049072,0.9156782627105712,2551\n2453A,113.3983,31.7308,20170930,33.535714285714285,3503.0,6392.0,1607578.2231186214,357279.63772437465,87,1.08732807636261,309.8369140625,294.6622619628906,99760.484375,0.0034910144750028,169.36859130859375,-1.3628244232677387e-05,83.21504211425781,-0.8349741697311401,-0.6964916586875916,0.9043346047401428,3838\n2454A,109.5039,30.2989,20170930,27.32142857142857,3732.0,5769.0,1295229.587433458,131312.62631270057,456,0.1250007450580597,186.848388671875,294.23052978515625,92557.5546875,0.0052090156823396,126.83242797851562,-6.225567631190643e-06,82.98741149902344,-0.0149049824103713,0.1241089329123497,0.6923646330833435,3885\n2455A,109.4689,30.2819,20170930,27.535714285714285,3735.0,5763.0,1292423.4262777497,128851.07252361608,438,0.1012352406978607,1.3551257848739624,294.1399230957031,92424.765625,0.0052587729878723,128.37840270996094,-6.225674496818101e-06,83.33074188232422,0.0023941667750477,0.1012069284915924,0.7046582102775574,3124\n2456A,112.5328,26.9089,20170930,30.02173913043478,4275.0,6253.0,1634233.5401524703,-219088.3618952426,60,1.4654293060302734,332.8617553710937,300.4457092285156,100197.4921875,0.000614745193161,347.1158752441406,-1.8380274923401885e-05,69.49839782714844,-0.6685426235198975,-1.3040452003479004,0.7998904585838318,4697\n2457A,112.6194,26.9258,20170930,30.82142857142857,4272.0,6267.0,1641864.9918512283,-215691.25529828347,64,1.4465410709381104,334.12261962890625,300.347412109375,100081.84375,0.0006706558051519,339.3715515136719,-1.983802940230817e-05,70.02196502685547,-0.6314409375190735,-1.301446557044983,0.7693253755569458,3694\n2458A,112.6211,26.8956,20170930,31.910714285714285,4277.0,6267.0,1642654.4369607987,-219153.1906064929,63,1.469170331954956,332.79949951171875,300.4496459960937,100120.703125,0.0006311942124739,341.9691467285156,-1.9837427316815592e-05,69.68724060058594,-0.6716692447662354,-1.3066452741622925,0.7699593305587769,3099\n2459A,112.6197,26.8733,20170930,37.0,4280.0,6267.0,1642992.459008752,-221753.6305584536,66,1.472597599029541,332.1685791015625,300.4545593261719,100049.8515625,0.0006193777080625,343.5276794433594,-1.9837065337924287e-05,69.48641204833984,-0.6876161694526672,-1.3022011518478394,0.7665908932685852,2705\n2460A,112.6006,26.8919,20170930,32.214285714285715,4277.0,6264.0,1640841.3293500557,-219923.31568653803,73,1.4698630571365356,332.6968994140625,300.45684814453125,100137.8125,0.0006242108647711,343.298828125,-1.9542589143384248e-05,69.61695098876953,-0.6743257641792297,-1.306056022644043,0.7622691988945007,2730\n2461A,112.5664,26.9056,20170930,33.07407407407408,4275.0,6259.0,1637400.9201612112,-218910.42819580488,70,1.4636738300323486,333.0510559082031,300.4329528808594,100163.0703125,0.0006279103690758,344.4648132324219,-1.9004872228833847e-05,69.63671112060547,-0.663434624671936,-1.3046822547912598,0.7653074264526367,2950\n2462A,111.5239,27.3033,20170930,38.46428571428572,4212.0,6092.0,1533349.6555626325,-189682.12493600373,245,1.1102954149246216,314.71319580078125,297.58648681640625,98395.8671875,0.0007939071510918,219.4704742431641,-1.3462784409057347e-05,76.52023315429688,-0.7890715599060059,-0.7811030745506287,0.7600335478782654,5613\n2463A,111.4733,27.2317,20170930,41.017857142857146,4223.0,6084.0,1530103.7166728731,-198774.6409870381,235,1.233277678489685,311.8516845703125,297.7172546386719,98247.9609375,0.0007339138537645,217.28762817382807,-1.3955193026049528e-05,76.40017700195312,-0.9186932444572448,-0.8227858543395996,0.7950909733772278,2714\n2464A,111.4908,27.2582,20170930,40.75,4219.0,6087.0,1531193.251354948,-195428.9152910079,241,1.1859784126281738,312.9503173828125,297.6780090332031,98324.65625,0.0007555360207334,218.6041259765625,-1.3784160728391726e-05,76.57415008544922,-0.8681262135505676,-0.80802321434021,0.7940186262130737,2969\n2465A,111.4503,27.2537,20170930,40.410714285714285,4219.0,6080.0,1527556.2159594789,-196581.1705877763,223,1.1972346305847168,314.2369689941406,297.67242431640625,98212.578125,0.0007164067355915,215.0899353027344,-1.3722738003707493e-05,76.29483032226562,-0.8578292727470398,-0.835164487361908,0.7996345162391663,3293\n2466A,111.4328,27.2272,20170930,36.481481481481474,4224.0,6077.0,1526465.1999731043,-199926.40684466736,236,1.2578908205032349,312.4721069335937,297.7171325683594,98123.5546875,0.0006945081986486,213.62350463867188,-1.3949939784652088e-05,76.12115478515625,-0.9278857111930848,-0.8493040800094604,0.8335586786270142,3148\n2467A,112.4067,28.6428,20170930,30.26923076923077,3997.0,6233.0,1586588.8813579492,-20011.16605834293,28,1.3652383089065552,345.1893310546875,297.78192138671875,100548.3046875,0.0013755859108641,227.04725646972656,-2.6644647732609883e-05,78.75930786132812,-0.3491023182868957,-1.319849729537964,0.8745492696762085,3662\n2468A,112.3458,28.5808,20170930,36.65384615384615,4007.0,6223.0,1582383.3635172308,-28210.330186616608,54,1.1514151096343994,349.7543334960937,297.6221008300781,100303.59375,0.0014573734952136,219.9303436279297,-2.1165575162740424e-05,79.37153625488281,-0.2048995494842529,-1.133036971092224,0.8847843408584595,4251\n2469A,112.3439,28.56,20170930,37.72222222222222,4010.0,6223.0,1582643.666170927,-30661.912368494053,66,1.121052384376526,351.283935546875,297.60302734375,100257.15625,0.0014794962480664,218.8712921142578,-1.9777777197305116e-05,79.43509674072266,-0.1699807494878769,-1.1080907583236694,0.8728043437004089,3329\n2470A,112.3347,28.6047,20170930,19.14,4003.0,6222.0,1580885.320132906,-25606.941221526457,34,1.1896852254867554,347.7239990234375,297.6359558105469,100347.0703125,0.0014340004418045,220.9492950439453,-2.2939546397537924e-05,79.33195495605469,-0.2530530989170074,-1.1624608039855957,0.8783370852470398,4063\n2471A,112.3744,28.5819,20170930,18.714285714285715,4007.0,6228.0,1584942.3159482435,-27621.34265830902,40,1.1990511417388916,349.7242736816406,297.67498779296875,100349.7109375,0.0014371960423886,222.0106658935547,-2.151809894712642e-05,79.12857818603516,-0.2139960378408432,-1.179800510406494,0.9026706218719482,4039\n2472A,113.0073,25.9061,20170930,34.25,4435.0,6329.0,1699392.8568386373,-326664.2654553545,251,0.6399283409118652,336.4017639160156,300.40924072265625,98323.2890625,0.0010704142041504,306.7330017089844,-1.1949323379667476e-05,66.5040512084961,-0.2562238574028015,-0.5863937735557556,0.6808370351791382,6790\n2473A,113.0116,25.8226,20170930,43.71428571428572,4448.0,6330.0,1701574.0963721145,-336191.30231228983,174,0.5176975727081299,330.8082275390625,300.0282287597656,98038.140625,0.0011772776488214,287.7007751464844,-1.1535610610735604e-05,67.71261596679688,-0.2525338530540466,-0.4519263505935669,0.7114341259002686,3216\n2474A,113.0119,25.8179,20170930,34.75925925925926,4449.0,6330.0,1701702.293565303,-336726.4441750546,177,0.5088374018669128,330.2601928710937,299.9959716796875,98011.515625,0.0011858962243422,286.394775390625,-1.1494676982692908e-05,67.79634857177734,-0.2524492144584656,-0.4417973458766937,0.7367327213287354,3091\n2475A,113.0383,25.8071,20170930,26.35714285714285,4451.0,6334.0,1704398.9264548556,-337510.4258778775,192,0.4679077863693237,329.5982666015625,299.7952575683594,97653.171875,0.0012047291966155,276.348388671875,-1.1911944966414012e-05,68.5146255493164,-0.2368206083774566,-0.4035513699054718,0.6928802132606506,5329\n2476A,113.0348,25.7759,20170930,39.73214285714285,4456.0,6334.0,1704737.6810598357,-341157.454517514,199,0.4292947649955749,326.6590881347656,299.5188293457031,97234.71875,0.0012414128286764,270.0629272460937,-1.1715235814335756e-05,68.9554672241211,-0.2359758168458938,-0.3586215376853943,0.7388979196548462,6057\n2477A,111.6217,26.2081,20170930,24.642857142857142,4387.0,6107.0,1563982.0850406345,-314873.756713826,117,0.9311619400978088,312.1048583984375,300.5624389648437,99534.6640625,0.0004864683141931,289.2841491699219,-1.2434826203389092e-05,66.82876586914062,-0.6908890008926392,-0.6242875456809998,0.7941814064979553,4568\n2478A,111.6156,26.4214,20170930,34.05357142857143,4353.0,6106.0,1559207.5458465477,-290335.2025896067,105,1.0523041486740112,318.50799560546875,300.5783996582031,98587.3125,0.0002871979959309,328.431640625,-1.07581217889674e-05,64.57845306396484,-0.6972239017486572,-0.7881768345832825,0.8603123426437378,3080\n2479A,111.6236,26.2331,20170930,29.88888888888889,4383.0,6108.0,1563666.137737927,-311957.25244396366,119,0.9659180641174316,312.2642822265625,300.6223449707031,99496.375,0.000456437584944,294.4608459472656,-1.2207879990455694e-05,66.37892150878906,-0.7148724794387817,-0.6495806574821472,0.7841423749923706,3501\n2480A,111.5992,26.4364,20170930,25.44230769230769,4350.0,6104.0,1557387.609190177,-288861.9772810563,106,1.0284793376922607,319.0791015625,300.538330078125,98593.921875,0.00029438486672,330.454345703125,-1.0536995432630649e-05,64.41336822509766,-0.6737267971038818,-0.7770856022834778,0.8346050977706909,3014\n2481A,111.5989,26.4519,20170930,25.777777777777786,4348.0,6104.0,1557054.225791332,-287075.5004401808,107,1.0260655879974363,319.5477905273437,300.5559997558594,98657.171875,0.0002918428508564,332.5794372558594,-1.045417957357131e-05,64.34150695800781,-0.6657813787460327,-0.780734121799469,0.8201229572296143,2882\n2482A,109.9333,27.5733,20170930,33.107142857142854,4168.0,5837.0,1382136.523814954,-181904.2550575368,346,0.8559528589248657,350.0029296875,297.0709533691406,97289.515625,0.0020957479719072,192.75,-1.3060973287792876e-05,77.65823364257812,-0.1486652940511703,-0.8429436087608337,0.7674111723899841,7381\n2483A,109.9453,27.5444,20170930,25.074074074074076,4173.0,5839.0,1383754.267953377,-185099.52220999284,238,0.8465062975883484,349.8589782714844,297.01715087890625,96981.8828125,0.0019841752946376,185.78749084472656,-1.2644245543924626e-05,77.6524887084961,-0.149118572473526,-0.8332685828208923,0.755641758441925,3385\n2484A,109.9792,27.5342,20170930,32.0,4175.0,5845.0,1387051.0709815505,-185808.76494963092,242,0.8351818323135376,348.4750061035156,296.912109375,96513.7890625,0.0018377806991338,176.00067138671875,-1.214938674820587e-05,77.47069549560547,-0.1669362932443618,-0.8183281421661377,0.7529624700546265,3894\n2485A,109.9972,27.5578,20170930,25.85185185185185,4171.0,5848.0,1388282.357520017,-182807.70516885375,237,0.8431272506713867,347.7423095703125,296.9321594238281,96574.9765625,0.0018352852202951,176.45436096191406,-1.224834795721108e-05,77.33712768554688,-0.1790746301412582,-0.8238906860351562,0.755671501159668,3741\n2486A,110.0394,27.583,20170930,32.214285714285715,4167.0,5854.0,1391705.7974375729,-179277.50606446076,245,0.8493324518203735,346.2623291015625,296.9651184082031,96595.4609375,0.0017819569911807,175.1003875732422,-1.2343765774858184e-05,77.62885284423828,-0.2017674744129181,-0.8250185251235962,0.7634831070899963,2921\n2487A,111.9975,27.725,20170930,22.653846153846157,4144.0,6168.0,1568318.2243270385,-133274.88106315534,132,1.3528752326965332,327.1602783203125,297.8602294921875,99127.2734375,0.0009026792249642,244.86964416503903,-1.2970423995284364e-05,76.4234848022461,-0.7337375283241272,-1.1366180181503296,0.8346548676490784,3735\n2489A,112.0194,27.7314,20170930,23.910714285714285,4143.0,6171.0,1570188.6658943596,-132182.1904430369,132,1.370386242866516,328.4352111816406,297.8340759277344,99055.296875,0.0009060258162207,245.98745727539065,-1.3335390576685311e-05,76.44522857666016,-0.717434823513031,-1.1675810813903809,0.8287752866744995,2902\n2490A,111.9561,27.7569,20170930,22.98214285714285,4139.0,6161.0,1563890.8528683854,-130231.27694132656,128,1.3287642002105713,326.92779541015625,297.7381591796875,99153.7578125,0.0009333666530437,240.6522216796875,-1.2423784028214868e-05,76.93695068359375,-0.7251851558685303,-1.1134275197982788,0.8270928263664246,2819\n2491A,111.9892,27.7044,20170930,33.629629629629626,4147.0,6166.0,1567977.679054962,-135798.60107085732,125,1.3370585441589355,325.3912353515625,297.935791015625,99220.5625,0.0008882984402589,244.17483520507807,-1.3059709090157412e-05,76.4244384765625,-0.7594910264015198,-1.1004084348678589,0.827987790107727,3390\n2492A,109.6414,28.2558,20170930,23.923076923076927,4059.0,5791.0,1343373.2687294115,-106374.52051482428,293,1.0665216445922852,293.1898803710937,295.6466064453125,96479.1171875,0.0035909158177673,229.34034729003903,-1.4148409718472976e-05,83.26988220214844,-0.9803765416145324,-0.419916957616806,0.7931139469146729,4887\n2493A,109.7325,28.3169,20170930,26.777777777777786,4049.0,5805.0,1350591.4261359083,-97990.11265471343,230,1.1383967399597168,294.9309997558594,295.853515625,97346.59375,0.0037589413113892,226.4873962402344,-1.473083466407843e-05,82.24590301513672,-1.032344937324524,-0.4798031151294708,0.7914775013923645,2483\n2494A,109.6958,28.2675,20170930,35.785714285714285,4057.0,5799.0,1348121.4844363432,-104263.16945580194,223,1.108066439628601,296.7649841308594,295.8648376464844,97249.4453125,0.0036682111676782,230.1272430419922,-1.4897013898007572e-05,82.4084243774414,-0.989379584789276,-0.4989382922649383,0.7836084961891174,3643\n2495A,111.2897,23.4792,20170930,31.410714285714285,4823.0,6054.0,1585463.2259190318,-633460.9028155542,44,0.6849236488342285,271.7089233398437,300.2021484375,99844.15625,0.0030275480821728,104.41631317138672,-1.4303628631751051e-05,86.67047119140625,-0.6846199631690979,-0.0203934479504823,0.5311889052391052,3197\n2496A,111.3178,23.475,20170930,37.75925925925926,4824.0,6059.0,1588253.3465307888,-633486.4082706668,65,0.6701323390007019,270.8041076660156,300.1529235839844,99719.9296875,0.0030254272278398,103.51461029052734,-1.375098781863926e-05,86.75762176513672,-0.670066773891449,-0.0093732783570885,0.5225710272789001,5180\n2497A,111.2353,23.415,20170930,44.25,4834.0,6046.0,1581438.5629527264,-641663.7111846928,32,0.7485866546630859,263.0963134765625,300.2391357421875,99950.421875,0.0029770443215966,105.23091888427734,-1.3162676623323932e-05,86.53125762939453,-0.7431552410125732,0.0900127589702606,0.5304194092750549,2797\n2498A,111.26,23.4794,20170930,37.660714285714285,4823.0,6050.0,1582595.1957729177,-633916.8697470578,39,0.6991477608680725,271.6903686523437,300.2353210449219,99930.6171875,0.0030278181657195,105.25305938720705,-1.4669341908302158e-05,86.59364318847656,-0.6988444924354553,-0.0205905959010124,0.5281102657318115,2831\n2500A,108.3511,21.7631,20170930,22.57142857142857,5098.0,5584.0,1328200.0208893863,-872581.6961374737,15,0.6975924968719482,215.8014068603516,300.34136962890625,100422.625,0.0034614715259522,233.76292419433597,-3.728430237970315e-05,86.79051208496094,-0.4080656170845032,0.565789520740509,0.3784668147563934,4787\n2502A,108.6236,21.9667,20170930,15.428571428571429,5065.0,5628.0,1351905.709795545,-845706.4134793114,10,0.8100674152374268,225.93377685546875,300.1132507324219,100330.8125,0.0030537459533661,216.8359832763672,-2.002065593842417e-05,86.88360595703125,-0.582049548625946,0.5634071230888367,0.3987836837768554,2283\n2503A,108.6553,21.9508,20170930,21.592592592592588,5068.0,5633.0,1355284.1600224224,-847078.7388428274,12,0.8410045504570007,227.66033935546875,300.1732177734375,100376.84375,0.003125627990812,221.4214630126953,-2.277092971780803e-05,86.53076934814453,-0.6216272115707397,0.5664523243904114,0.3891627490520477,4314\n2505A,109.5681,23.1478,20170930,32.214285714285715,4876.0,5779.0,1424864.6326971892,-697681.3057444071,113,0.8093255162239075,241.6173095703125,299.8006286621094,99215.8125,0.0022797142155468,155.49810791015625,-1.089306351786945e-05,85.10083770751953,-0.7120261192321777,0.3847423493862152,0.5016577243804932,6674\n2506A,109.6042,23.0672,20170930,30.35185185185185,4889.0,5785.0,1429748.1626304558,-706364.8142296053,46,0.8138746023178101,241.6142578125,300.063720703125,99810.2109375,0.0022648307494819,154.80096435546875,-1.1133218322356695e-05,84.8583755493164,-0.7160077095031738,0.386942982673645,0.4846453964710235,3186\n2507A,109.6014,23.0944,20170930,30.910714285714285,4885.0,5784.0,1429010.9435834032,-703298.6348370387,48,0.804149866104126,242.1901092529297,300.0123291015625,99693.265625,0.0022527251858264,154.87789916992188,-1.1065713806601709e-05,84.88762664794922,-0.7112589478492737,0.3751902878284454,0.4868507981300354,2371\n2508A,109.5683,23.1036,20170930,27.392857142857142,4884.0,5779.0,1425638.3295453077,-702728.4650413931,46,0.8030314445495605,240.65283203125,299.9894714355469,99678.7265625,0.0022737053222954,155.9786376953125,-1.1224838999623898e-05,85.15703582763672,-0.6999629735946655,0.3935877978801727,0.5353186726570129,4286\n2509A,110.1106,22.7019,20170930,31.461538461538463,4948.0,5866.0,1485396.6235476732,-740524.3759344395,105,0.9656767845153807,238.3802490234375,299.4271545410156,99555.0390625,0.0031955484300851,123.18404388427734,-6.210867468325887e-06,88.71240997314453,-0.8223031759262085,0.5063093304634094,0.4880306124687195,5815\n2510A,110.1675,22.6411,20170930,39.94642857142857,4958.0,5875.0,1492023.1624290836,-746587.9598952102,80,0.9124975204467772,240.72743225097656,299.53564453125,99890.125,0.0030696471221745,121.78012084960938,-5.95574874751037e-06,89.060546875,-0.7959608435630798,0.4462040662765503,0.4867602288722992,2246\n2511A,110.1433,22.6164,20170930,33.19642857142857,4961.0,5871.0,1490098.4954647624,-749768.0979809327,77,0.9236919283866882,239.38607788085935,299.5811462402344,99994.1796875,0.0030606335494667,124.0591049194336,-6.070727522455854e-06,88.99559783935547,-0.7949318289756775,0.4704148173332214,0.4838427603244781,2406\n2512A,106.6103,23.9011,20170930,25.88888888888889,4756.0,5306.0,1126813.515081324,-649667.9341325159,143,1.0373305082321167,254.62255859375,298.6922607421875,97294.2734375,0.0031093610450625,112.2580337524414,-7.754982107144315e-06,87.21208190917969,-1.0001834630966189,0.2751139402389526,0.4654485583305359,3578\n2513A,106.6527,23.8844,20170930,32.232142857142854,4759.0,5312.0,1131138.3503371847,-651103.2991982215,130,1.067310094833374,252.27587890625,298.7322692871094,97364.1640625,0.0033010824117809,115.25779724121094,-8.193063877115492e-06,87.21019744873047,-1.0166363716125488,0.3249634206295013,0.4749634861946106,3076\n2514A,111.5269,24.4175,20170930,45.27777777777778,4673.0,6092.0,1590118.277877605,-522334.3617596406,109,0.3903354406356811,270.87896728515625,299.3791809082031,98514.6328125,0.0023771575652062,79.25430297851562,-5.107503056933638e-06,83.392578125,-0.3902897834777832,-0.0059697018004953,0.5909759998321533,3483\n2515A,111.5622,24.4072,20170930,36.08928571428572,4675.0,6098.0,1593683.234382381,-522942.46031070745,111,0.4376164972782135,268.2506408691406,299.4305725097656,98738.859375,0.0025068209506571,79.4760513305664,-5.024093752581393e-06,83.7018051147461,-0.4374119341373443,0.0133792022243142,0.5584856867790222,3323\n2516A,108.2134,24.7121,20170930,21.05769230769231,4626.0,5562.0,1268888.2881956687,-536673.8655354765,312,0.6096346378326416,253.0674743652344,298.5562438964844,96995.859375,0.002367969835177,113.66487884521484,-7.474684025510214e-06,84.7820816040039,-0.5831992626190186,0.1775752454996109,0.4918074309825897,5781\n2517A,108.054,24.6928,20170930,20.55555555555556,4629.0,5537.0,1253969.2278791224,-540945.8669435179,245,0.6251306533813477,245.86138916015625,298.2461853027344,96562.6171875,0.0026067267172038,134.2643585205078,-8.163857273757458e-06,86.016845703125,-0.57045978307724,0.2556637525558471,0.5004584193229675,3542\n2518A,108.1009,24.6967,20170930,19.464285714285715,4629.0,5544.0,1258387.4461455687,-539896.5172582257,281,0.6192454695701599,247.13198852539065,298.3109130859375,96639.9375,0.0025443180929869,128.46371459960938,-7.956531590025406e-06,85.67318725585938,-0.5705659985542297,0.240664467215538,0.4934190213680267,4202\n2519A,109.2131,23.7208,20170930,26.214285714285715,4785.0,5722.0,1380833.3256966178,-637169.8023078222,84,0.7635577321052551,259.1805419921875,300.0387878417969,99382.5234375,0.0019600414671003,172.9807891845703,-1.2739291378238704e-05,83.73294830322266,-0.7499786019325256,0.1433614641427993,0.5000933408737183,3906\n2520A,109.2317,23.7369,20170930,30.339285714285715,4782.0,5725.0,1382358.5121370635,-635062.6550279357,86,0.758746862411499,258.6591796875,300.05450439453125,99434.7890625,0.0019630030728876,173.96214294433594,-1.2976232028449886e-05,83.61614990234375,-0.7439261078834534,0.1492338627576828,0.5004449486732483,3468\n2521A,107.3476,22.4137,20170930,16.375,4994.0,5424.0,1219543.586806913,-811441.5381698598,119,0.8586866855621338,287.762939453125,299.36041259765625,98768.078125,0.0028575125616043,135.19151306152344,-9.121191396843642e-06,87.85723876953125,-0.8177649974822998,-0.2619220912456512,0.4278735518455505,4200\n2522A,107.3701,22.3708,20170930,19.232142857142858,5001.0,5427.0,1222374.2209705545,-816061.6217783728,131,0.8523194193840027,285.4803161621094,299.340576171875,98678.90625,0.0028711974155157,134.28927612304688,-9.401055649504997e-06,87.85018157958984,-0.8214114308357239,-0.2274459153413772,0.424555242061615,4838\n2523A,105.8945,32.4535,20170930,9.232142857142858,3388.0,5191.0,945975.5108473392,345338.13926721667,611,0.420050710439682,341.26788330078125,292.8522033691406,92366.5625,0.0012921588495373,112.42233276367188,-5.385966687754262e-06,80.28631591796875,-0.1349295824766159,-0.3977896273136139,0.5448805093765259,8106\n2524A,105.8242,32.4429,20170930,11.357142857142858,3389.0,5180.0,940035.7635448826,343400.9548552489,498,0.3971413671970367,350.85400390625,293.08892822265625,92742.234375,0.0012856519315391,113.5419921875,-5.659417183778714e-06,79.5008773803711,-0.0631604641675949,-0.3920867443084717,0.5568593740463257,2798\n2525A,105.8153,32.4246,20170930,10.625,3392.0,5178.0,939506.8442288412,341136.2272691408,512,0.3969553411006927,353.78302001953125,293.2299499511719,93046.2109375,0.0012749612797051,114.72347259521484,-5.834078365296591e-06,79.44310760498047,-0.0430233590304851,-0.394616961479187,0.5567344427108765,732\n2526A,105.8624,32.4285,20170930,11.946428571428571,3392.0,5186.0,943530.1398959826,342052.0258362229,536,0.4093959033489227,346.9432373046875,293.1037902832031,92861.7578125,0.0012791590997949,113.48306274414062,-5.636042715195799e-06,80.01921844482422,-0.092523381114006,-0.3988037407398224,0.5937240123748779,3243\n2527A,105.7519,30.5797,20170930,25.30357142857143,3687.0,5168.0,958091.204659661,121443.00202554232,406,1.3088053464889526,328.0877685546875,295.79315185546875,96789.3828125,0.0012529119849205,168.4921875,-1.1953796274610797e-05,78.84302520751953,-0.6919442415237427,-1.110938549041748,0.9873570799827576,5917\n2528A,105.68,30.6133,20170930,29.23214285714285,3682.0,5157.0,951275.4772272642,124722.59438145396,346,1.3057445287704468,326.0162353515625,295.828125,96887.2734375,0.0010902972426265,171.3465118408203,-1.1799405001511332e-05,78.68194580078125,-0.7299375534057617,-1.0826632976531982,0.9681214690208436,5422\n2529A,105.8161,30.6347,20170930,21.60714285714285,3679.0,5179.0,963069.2794111316,128582.25689873056,423,1.2863242626190186,328.74615478515625,295.6397705078125,96542.0390625,0.0014193890383467,169.73468017578125,-1.1991828614554834e-05,79.24684143066406,-0.6674688458442688,-1.0995978116989136,0.9711035490036012,7193\n2530A,105.5956,30.475,20170930,22.785714285714285,3704.0,5143.0,945559.6871813696,107535.05849326492,284,1.2742632627487185,328.102783203125,296.0604858398437,97240.953125,0.0009249148424714,166.26649475097656,-1.1921523764613084e-05,78.84394073486328,-0.6733995079994202,-1.0817948579788208,1.0220788717269895,3431\n2531A,105.0331,29.5953,20170930,17.196428571428573,3845.0,5053.0,906200.2355778624,-1760.366906802779,327,1.4069020748138428,338.28240966796875,296.69891357421875,97065.03125,0.0006067308713681,188.536376953125,-1.7009529983624816e-05,78.3727035522461,-0.5207056999206543,-1.30699622631073,1.043379306793213,4348\n2532A,105.0717,29.5947,20170930,18.64814814814815,3845.0,5059.0,909681.719799498,-1474.5290734625623,323,1.4290629625320437,337.8331298828125,296.67803955078125,97052.6328125,0.0006515758577734,188.4228363037109,-1.715227699605748e-05,78.6622314453125,-0.5393006801605225,-1.3233954906463623,1.0580469369888306,3733\n2533A,105.0653,29.5817,20170930,18.625,3847.0,5058.0,909263.4586566052,-3068.5114017626734,321,1.4195923805236816,338.4570617675781,296.6929016113281,97055.6484375,0.0006461856537498,188.1002197265625,-1.7233998732990585e-05,78.6014404296875,-0.5213799476623535,-1.3203808069229126,1.0489474534988403,2247\n2534A,105.0406,29.5822,20170930,15.535714285714285,3847.0,5054.0,907033.8767134512,-3237.77048359168,332,1.404938817024231,338.7591247558594,296.70819091796875,97067.0546875,0.0006163493380881,188.1649932861328,-1.7136504538939334e-05,78.40975189208984,-0.509101927280426,-1.3094534873962402,1.0513863563537598,4010\n2535A,103.7705,29.5467,20170930,30.69642857142857,3853.0,4851.0,792999.9032556141,-18418.855405777493,372,1.0026010274887085,114.32324981689452,296.21539306640625,96206.6796875,0.0008718369062989,125.25942993164062,-1.6783598766778596e-05,75.2613754272461,0.9136306643486024,-0.4129016101360321,0.8509544730186462,3766\n2536A,103.7627,29.5844,20170930,30.33333333333333,3847.0,4850.0,791898.0755369939,-14025.696395440484,373,1.0233454704284668,114.4872055053711,296.2426147460937,96248.6328125,0.0007755141123197,127.0339813232422,-1.6903442883631214e-05,75.21871185302734,0.9313244223594666,-0.4241117238998413,0.8517329692840576,2819\n2537A,103.7506,29.6007,20170930,33.160714285714285,3844.0,4848.0,790635.4219195844,-12196.30161881386,370,1.0286827087402344,114.10186004638672,296.2709045410156,96298.890625,0.0007352008251473,127.36150360107422,-1.6970147044048645e-05,75.1119384765625,0.9390278458595276,-0.420017808675766,0.8465937376022339,1691\n2538A,103.757,29.5634,20170930,32.875,3850.0,4849.0,791606.1334392335,-16553.87505060469,380,1.0092473030090332,113.99992370605467,296.2401428222656,96253.4453125,0.0008303179056383,125.58892059326172,-1.684351263975259e-05,75.15574645996094,0.9220179915428162,-0.4104425311088562,0.8443195819854736,2720\n2539A,103.8986,30.0506,20170930,16.962962962962962,3772.0,4872.0,799138.2172119134,42225.4889534705,460,1.0120880603790283,152.2815399169922,296.2334899902344,96158.390625,0.0004409645916894,167.0967559814453,-1.5589259419357404e-05,75.65129852294922,0.4708200097084045,-0.8959077596664429,0.830956757068634,3497\n2540A,103.8416,30.0874,20170930,20.785714285714285,3766.0,4863.0,793640.0625611766,46120.6674073364,416,1.044853448867798,147.57904052734375,296.2112731933594,96254.9765625,0.000450210791314,161.30081176757812,-1.5432853615493514e-05,75.63246154785156,0.5602500438690186,-0.8819515705108643,0.8121827244758606,1815\n2541A,103.8495,30.0691,20170930,17.785714285714285,3769.0,4864.0,794542.9480542613,44017.65035516605,413,1.0364344120025637,147.69667053222656,296.2105712890625,96235.1328125,0.0004467319522518,161.8202667236328,-1.5560941392323002e-05,75.68043518066406,0.5539385676383972,-0.875984251499176,0.8253982663154602,2530\n2542A,103.8341,30.062,20170930,37.25,3770.0,4861.0,793239.7916345297,43052.56478253931,416,1.0431493520736694,145.68309020996094,296.1985168457031,96256.0703125,0.0004459991178009,159.7170867919922,-1.5638916011084802e-05,75.71785736083984,0.5881606936454773,-0.8615262508392334,0.812345027923584,1541\n2543A,106.631,30.518,20170930,14.928571428571429,3697.0,5309.0,1036942.3608250696,123067.54779680866,352,1.2422770261764526,334.01324462890625,295.8816833496094,97212.8359375,0.0025298360269516,127.2591323852539,-1.0793611181725282e-05,82.83806610107422,-0.5444086194038391,-1.1166340112686155,0.9455240964889526,3795\n2544A,106.6303,30.4576,20170930,21.96296296296296,3707.0,5309.0,1037729.4440197042,115919.2153023653,310,1.189272165298462,334.7652282714844,296.0242614746094,97457.3828125,0.0024294957984238,124.43620300292967,-1.0657126040314324e-05,82.8015365600586,-0.5071062445640564,-1.075737714767456,0.9577365517616272,2144\n2545A,106.6271,30.4663,20170930,20.017857142857142,3705.0,5308.0,1037322.9798726634,116913.91542837932,302,1.217432737350464,334.7318115234375,295.99981689453125,97419.3984375,0.0024473406374454,125.51113891601562,-1.0779650438053068e-05,82.79293060302734,-0.5197557210922241,-1.1009070873260498,0.9697152972221376,2963\n2547A,106.6388,30.4551,20170930,16.232142857142858,3707.0,5310.0,1038519.4897967842,115713.48440186956,301,1.1774592399597168,334.6287536621094,296.02618408203125,97459.625,0.0024309530854225,123.9670867919922,-1.0589765224722214e-05,82.82853698730469,-0.5046047568321228,-1.0638535022735596,0.94997638463974,2299\n2548A,107.5272,31.2797,20170930,21.160714285714285,3575.0,5452.0,1104876.783028765,222967.44118219876,337,1.1925289630889893,323.36492919921875,294.5495910644531,95141.6328125,0.0052705300040543,90.56769561767578,-1.140636140917195e-05,83.4649429321289,-0.7116720080375671,-0.9568950533866882,0.7247706055641174,2918\n2549A,107.525,31.215,20170930,19.267857142857142,3586.0,5452.0,1105665.6106543012,215282.1312339029,373,1.1052634716033936,321.17333984375,294.75634765625,95474.1640625,0.0049028312787413,88.90718841552734,-1.0937071238004137e-05,83.24241638183594,-0.6930259466171265,-0.8610008955001831,0.7332934141159058,3444\n2550A,107.4967,31.2108,20170930,22.321428571428577,3586.0,5447.0,1103244.4635210035,214466.7942729884,323,1.1052066087722778,321.4961242675781,294.7548217773437,95456.8203125,0.004869938828051,90.39481353759766,-1.1012737559212836e-05,83.15494537353516,-0.6881287097930908,-0.8648470640182495,0.7416855096817017,1582\n2551A,107.5069,31.1956,20170930,20.857142857142858,3589.0,5449.0,1104370.374225692,212781.88738642156,339,1.0832988023757937,320.76104736328125,294.8202209472656,95575.3515625,0.0047844578512012,89.74073791503906,-1.0866276170418132e-05,83.2634506225586,-0.6853079795837402,-0.8389810919761658,0.741137683391571,1704\n2552A,107.4611,31.2058,20170930,27.92857142857143,3587.0,5442.0,1100193.9641900908,213475.6672409728,310,1.09699547290802,321.59344482421875,294.7751770019531,95475.21875,0.004804843571037,91.92788696289062,-1.1054919923481066e-05,83.09392547607422,-0.6815572381019592,-0.8595805764198303,0.7390886545181274,2221\n2553A,103.009,30.0125,20170930,25.03703703703704,3778.0,4729.0,719803.3512628948,30837.25579153587,632,0.22963248193264,128.77468872070312,292.82391357421875,89855.40625,0.0015568010276183,93.73542785644533,-4.274572802387411e-06,79.5894775390625,0.1790343821048736,-0.1437976509332656,0.5511206984519958,4445\n2554A,103.0013,29.9899,20170930,28.94642857142857,3782.0,4728.0,719331.3443422981,28103.618738623787,602,0.2472939938306808,134.755615234375,292.7135009765625,89709.4609375,0.0015932376263663,93.86368560791016,-4.376588094601175e-06,79.76113891601562,0.1756196171045303,-0.1741036176681518,0.5545109510421753,2447\n2555A,103.0109,29.9834,20170930,21.767857142857142,3783.0,4730.0,720255.403021703,27403.978753561107,626,0.2727544605731964,130.86456298828125,292.6840209960937,89617.7734375,0.0016110982978716,93.83918762207033,-4.590870503307087e-06,79.88642120361328,0.2062848657369613,-0.1784420162439346,0.5672265291213989,2232\n2556A,103.0001,29.9816,20170930,34.44444444444444,3783.0,4728.0,719303.9277055175,27111.647236704368,606,0.2529321908950805,135.68821716308594,292.6502990722656,89601.59375,0.0016056676395237,94.257568359375,-4.476425601751544e-06,79.95240783691406,0.1767015308141708,-0.180973082780838,0.5531737804412842,2118\n2558A,106.7389,31.8711,20170930,16.017857142857142,3481.0,5326.0,1027269.3576410726,284549.21218466543,415,1.002589464187622,335.5054931640625,294.3707275390625,94764.46875,0.0043360074050724,108.61669158935548,-7.686847311560996e-06,78.69366455078125,-0.4157528877258301,-0.912324070930481,0.6681362390518188,2539\n2559A,106.7594,31.8531,20170930,18.785714285714285,3484.0,5329.0,1029311.7970561448,282626.1068462479,382,1.024104356765747,334.0740966796875,294.4944763183594,95029.765625,0.0044825314544141,111.87808227539062,-7.987281605892349e-06,78.75460052490234,-0.447820246219635,-0.9210031628608704,0.6706538200378418,2568\n2561A,104.6617,30.1366,20170930,9.053571428571429,3758.0,4994.0,866452.3265792939,58872.72103887951,377,0.8654243350028992,315.32830810546875,296.2675476074219,96300.421875,0.0004622664419002,197.7290954589844,-1.377168700855691e-05,74.89637756347656,-0.6084737777709961,-0.6154014468193054,0.9730014204978944,4042\n2562A,104.6356,30.1506,20170930,21.321428571428573,3756.0,4990.0,863956.2228417592,60299.71576512226,381,0.8525187969207764,316.2157592773437,296.27545166015625,96263.78125,0.0004516760527621,198.73995971679688,-1.3710576240555383e-05,74.49100494384766,-0.589938759803772,-0.6154353022575378,0.9680674076080322,4794\n2563A,104.6289,30.1377,20170930,18.053571428571427,3758.0,4989.0,863507.4929602711,58714.15621077576,368,0.8364435434341431,316.83612060546875,296.2760314941406,96248.609375,0.000447969941888,198.41505432128903,-1.368957327940734e-05,74.47564697265625,-0.5722437500953674,-0.6100613474845886,0.9816427826881408,3269\n2564A,104.6469,30.1142,20170930,21.48214285714285,3762.0,4991.0,865390.4310670869,56091.57696008943,366,0.8274037837982178,316.8758850097656,296.2694091796875,96257.8984375,0.0004522829258348,197.23619079589844,-1.371739199385047e-05,74.77947235107422,-0.5656401515007019,-0.6038610935211182,0.9843300580978394,2748\n2565A,104.6294,30.1259,20170930,15.071428571428571,3760.0,4989.0,863689.4786024651,57322.12404869018,368,0.8261337876319885,317.1488037109375,296.2754211425781,96244.71875,0.0004469791601877,197.94309997558597,-1.3682925782632084e-05,74.54546356201172,-0.5618935227394104,-0.6056176424026489,0.9944196343421936,3419\n2566A,102.1755,31.9286,20170930,2.740740740740741,3472.0,4596.0,628361.9688248683,252944.92626851887,2887,0.3166823089122772,218.18719482421875,283.7445373535156,66382.8046875,0.0030841657426208,116.33981323242188,-3.837299118458759e-06,76.35105895996094,-0.1957785338163375,0.2489145696163177,0.1441554576158523,4959\n2567A,102.2218,31.9025,20170930,3.4821428571428568,3476.0,4603.0,632638.4852533116,250127.98715376368,2851,0.3539947867393493,222.34878540039065,283.693359375,66319.46875,0.0031453927513211,132.2877197265625,-4.156911472819047e-06,76.08518981933594,-0.2384600788354873,0.2616277635097503,0.143712431192398,5749\n2568A,102.2402,31.8934,20170930,2.5357142857142856,3477.0,4606.0,634327.5735472619,249160.96566396832,2967,0.3780426681041717,224.5790100097656,283.4891662597656,66113.0390625,0.0031968746334314,138.6214141845703,-4.287072442821227e-06,75.9499740600586,-0.26533904671669,0.2692795097827911,0.1393634974956512,7284\n2570A,101.9603,30.0475,20170930,9.125,3772.0,4562.0,625427.3095234314,27806.88671163454,2740,0.9397727847099304,242.2769470214844,280.4196472167969,64097.0859375,0.0028133259620517,195.1412353515625,-8.589092431066092e-06,98.91426849365234,-0.8318790197372437,0.4372073411941528,0.2085783630609512,4626\n2571A,102.3419,27.8094,20170930,13.833333333333336,4131.0,4623.0,679433.8397764938,-233920.28917284496,1621,0.3734298050403595,199.1519012451172,292.2391967773437,80516.359375,0.0027447182219475,114.79922485351562,-2.855487309716409e-06,78.84228515625,-0.1225090473890304,0.3527624607086181,0.2542677819728851,7234\n2572A,102.2714,27.8408,20170930,11.25,4126.0,4611.0,672647.9157839766,-230713.8367931048,1692,0.2679254412651062,2.7528650760650635,293.2516174316406,82187.1875,0.003030952066183,98.05471801757812,-2.33304558605596e-06,78.22077178955078,0.0128679042682051,0.2676162719726562,0.2580277323722839,4114\n2573A,102.2625,27.8978,20170930,11.980769230769232,4116.0,4610.0,671329.8128447311,-224072.1958162061,1562,0.2372074723243713,17.48760223388672,293.3716125488281,82503.5546875,0.0031172716990113,102.98052215576172,-2.471950210747309e-06,77.89505767822266,0.0712787061929702,0.2262448519468307,0.2904383540153503,4886\n2574A,102.2689,27.8847,20170930,13.611111111111107,4119.0,4611.0,672034.5081235197,-225568.9816344042,1523,0.2488276213407516,10.71208381652832,293.3390808105469,82422.2890625,0.0030787009745836,102.69970703125,-2.462270003888989e-06,78.0069808959961,0.0462491437792778,0.2444917112588882,0.2783685624599457,4285\n2575A,102.2311,27.8953,20170930,14.267857142857142,4117.0,4605.0,668454.1938111517,-224580.27461854136,1540,0.2258077263832092,32.58570098876953,293.4950256347656,82653.7578125,0.0032139888498932,95.52987670898438,-2.31535773309588e-06,78.2623291015625,0.1216079443693161,0.1902646571397781,0.2696835100650787,4438\n2576A,104.8,26.5892,20170930,27.035714285714285,4326.0,5016.0,920538.8456718288,-356861.06013393454,1898,0.9880266785621644,219.663330078125,289.8538513183594,79949.2265625,0.0025498864706605,261.79656982421875,-9.393262189405505e-06,86.2720947265625,-0.6306174993515015,0.7606039047241211,0.4649339318275451,4496\n2577A,104.83,26.5917,20170930,29.03703703703704,4325.0,5021.0,923318.1395922723,-356287.7843424395,1844,1.0052032470703125,217.9922790527344,289.9575500488281,80261.625,0.0025482391938567,266.4359130859375,-9.418156878382432e-06,86.33961486816406,-0.6187427639961243,0.7922064065933228,0.452951431274414,4071\n2578A,104.89,26.5939,20170930,34.714285714285715,4325.0,5030.0,928908.9376154422,-355465.4986314633,1852,1.0305224657058716,215.5777282714844,290.2761535644531,81122.53125,0.0025395490229129,273.6828918457031,-9.438882443646436e-06,86.357177734375,-0.5995494723320007,0.8381627798080444,0.4676240682601928,4407\n2579A,104.8475,26.5894,20170930,21.875,4326.0,5024.0,924983.3818948334,-356391.6387064558,1823,1.008150339126587,217.47332763671875,290.066650390625,80526.484375,0.0025416645221412,268.19891357421875,-9.411638529854828e-06,86.29016876220703,-0.6133354306221008,0.800116777420044,0.4762881696224212,3638\n2580A,104.9544,26.5506,20170930,28.92857142857143,4332.0,5041.0,935450.6546808154,-359907.51701250434,1830,1.0132384300231934,215.041748046875,290.56719970703125,81694.265625,0.0025000981986522,277.3851928710937,-9.369528015668038e-06,86.02810668945312,-0.5817593932151794,0.8295831680297852,0.4698988199234009,5793\n2581A,105.9556,26.2611,20170930,15.232142857142858,4378.0,5201.0,1032940.3572487496,-383620.8611952767,1395,1.3537774085998535,224.96066284179688,292.66357421875,86153.875,0.0019984208047389,349.9834899902344,-1.0261553143209312e-05,88.29073333740234,-0.9565854668617249,0.9579443335533142,0.4706521034240722,4822\n2582A,105.9278,26.255,20170930,15.142857142857142,4379.0,5196.0,1030409.3903485376,-384622.883080701,1396,1.3422372341156006,225.2367248535156,292.67486572265625,86131.84375,0.0020063151605427,345.82666015625,-1.02503636298934e-05,88.1658935546875,-0.95299631357193,0.9451977014541626,0.474350094795227,3172\n2583A,105.9394,26.2358,20170930,20.732142857142858,4382.0,5198.0,1031748.530860609,-386736.23751230864,1369,1.3452149629592896,226.360107421875,292.6946105957031,86130.1953125,0.0020221122540533,344.32867431640625,-1.0354422556702048e-05,88.14259338378906,-0.9734987020492554,0.9283877015113832,0.4867797195911407,3215\n2584A,105.8853,26.2392,20170930,18.0,4382.0,5190.0,1026623.0088015829,-386907.1011695273,1415,1.322828769683838,226.9065093994141,292.7640686035156,86236.0390625,0.002020975574851,338.7846069335937,-1.0305639989383051e-05,87.90713500976562,-0.965960681438446,0.9037676453590392,0.4654485881328583,4613\n2585A,109.1916,27.7297,20170930,14.428571428571429,4143.0,5719.0,1311327.9095338362,-173846.55973655035,308,1.0871665477752686,309.5079345703125,295.9168701171875,95695.8984375,0.0022813184186816,225.2141876220703,-1.120407341659302e-05,82.57499694824219,-0.838834822177887,-0.6915830373764038,0.7628166079521179,3207\n2586A,109.1794,27.7231,20170930,24.87037037037037,4144.0,5717.0,1310320.2961866506,-174778.99174229207,276,1.0859332084655762,309.822509765625,295.9225158691406,95703.8046875,0.0022797593846917,223.1941070556641,-1.1120406270492822e-05,82.65243530273438,-0.8340780735015869,-0.6953880786895752,0.768608033657074,2332\n2587A,105.2864,27.3125,20170930,18.910714285714285,4210.0,5094.0,957185.4797664116,-267685.7135118309,1519,0.5515367388725281,243.77761840820312,291.0009765625,83525.90625,0.0016603248659521,244.17161560058597,-1.0946565453195944e-05,86.55677032470703,-0.494767814874649,0.2437161803245544,0.5280763506889343,5472\n2588A,105.31,27.2944,20170930,21.767857142857142,4213.0,5098.0,959596.5054661648,-269573.2189971271,1506,0.5882660746574402,238.5005340576172,291.199462890625,83986.625,0.001641952781938,249.3896942138672,-1.10029204734019e-05,86.33078002929688,-0.5015729069709778,0.3073786497116089,0.5530052185058594,5049\n2589A,104.9022,25.0925,20170930,12.464285714285715,4565.0,5032.0,947713.8409136926,-530024.3481528527,1221,0.7949064373970032,251.16018676757807,293.4454650878906,86550.109375,0.0022627224680036,123.16741943359376,-8.819851245789323e-06,86.47715759277344,-0.752310037612915,0.2567213773727417,0.4090241491794586,3882\n2590A,104.8811,25.0992,20170930,13.303571428571429,4564.0,5029.0,945622.8329974384,-529450.6440527706,1283,0.7865960001945496,249.78355407714844,293.3381042480469,86389.390625,0.0022987939883023,122.4041976928711,-8.44857822812628e-06,86.70016479492188,-0.7381271123886108,0.2718485295772552,0.4013823568820953,6827\n2591A,107.9783,26.5747,20170930,26.55357142857143,4328.0,5525.0,1217784.6386985243,-323964.4078991482,746,0.7718342542648315,235.49365234375,295.0916442871094,91598.3984375,0.0031493057031184,251.1166534423828,-8.742308637010865e-06,86.60586547851562,-0.636027991771698,0.4372602999210357,0.5751609206199646,2590\n2593A,107.5228,26.2403,20170930,15.8,4382.0,5452.0,1180261.8492081063,-368389.7049279376,877,0.905758500099182,225.4521484375,294.4289855957031,90408.84375,0.0027602175250649,305.108154296875,-8.990483365778346e-06,89.06173706054688,-0.645487368106842,0.6354089379310608,0.5198782086372375,6150\n2594A,99.1678,25.1081,20170930,15.142857142857142,4563.0,4115.0,399368.3863409404,-567528.9573260067,1663,0.6754932403564453,12.75827693939209,291.1763916015625,80055.53125,0.0029489656444638,91.24913787841795,-2.985965693369508e-06,84.3780517578125,0.1491704881191253,0.6588165760040283,0.2439466267824173,2525\n2595A,99.1711,25.1328,20170930,21.267857142857142,4559.0,4115.0,399562.2198159018,-564638.8196753921,1672,0.6727051138877869,13.07643985748291,290.9254150390625,79543.8671875,0.0029270013328641,90.9096221923828,-2.9788063784508267e-06,84.17341613769531,0.1521955877542495,0.655262291431427,0.243449330329895,3360\n2596A,103.7032,27.3392,20170930,19.23913043478261,4206.0,4840.0,810005.9823368415,-278796.12743443943,1914,1.0669920444488523,299.0272216796875,290.65606689453125,80900.6875,0.0023941730614751,177.78366088867188,-1.095847437682096e-05,84.42351531982422,-0.9329980611801147,-0.5176742076873779,0.4500079452991485,3431\n2597A,103.7225,27.3361,20170930,13.964285714285715,4206.0,4844.0,811829.8525252759,-279000.1642822451,1921,1.0658156871795654,299.4582824707031,290.4869689941406,80689.1328125,0.0023937302175909,175.7991180419922,-1.0836703950189984e-05,84.8822250366211,-0.9280529022216796,-0.524100124835968,0.445875883102417,4534\n2598A,100.2143,26.8576,20170930,10.982142857142858,4283.0,4282.0,488704.2501384664,-358333.2513804236,2385,0.4290015995502472,204.2555389404297,288.4158630371094,74152.5703125,0.0042230784893035,53.94047546386719,-3.5460077469906537e-06,85.262451171875,-0.1762319654226303,0.3911325335502624,0.197632610797882,2975\n2599A,100.2497,26.8802,20170930,6.981481481481483,4279.0,4288.0,491877.1940028229,-355506.2785709776,2428,0.4369986951351166,203.81808471679688,288.63726806640625,74472.3828125,0.004293153528124,56.24532699584961,-3.8007883631507866e-06,85.45355224609375,-0.1764699816703796,0.3997826874256134,0.1908829063177108,5617\n2600A,100.2203,26.8906,20170930,9.01851851851852,4278.0,4283.0,489060.26192513615,-354433.32809641387,2415,0.4355583786964416,203.041015625,288.4884033203125,74203.3828125,0.0042639803141355,56.833641052246094,-3.7129900647414615e-06,85.15924835205078,-0.1704684346914291,0.4008136987686157,0.1928777396678924,4045\n2601A,100.98,22.7633,20170930,12.392857142857142,4938.0,4405.0,589372.3157960438,-829944.7862814987,1333,0.8612392544746399,221.7616729736328,293.5135192871094,86102.40625,0.005410068668425,80.19268035888672,-4.209997769066831e-06,92.6236343383789,-0.5736005902290344,0.6424293518066406,0.2688226103782654,3946\n2602A,100.9817,22.8322,20170930,9.071428571428571,4927.0,4405.0,589056.1551848646,-822002.129750117,1363,0.8746556043624878,221.4393310546875,293.44744873046875,85954.6015625,0.0054880431853234,74.4102554321289,-4.033263849123614e-06,92.42218017578124,-0.5788562297821045,0.6557040810585022,0.2707576751708984,6251\n2603A,100.0869,23.8822,20170930,13.696428571428571,4759.0,4262.0,494741.562963929,-705699.566560868,1488,0.3112532496452331,35.178897857666016,290.7457275390625,80671.921875,0.0059613185003399,44.036094665527344,-6.388888778019464e-07,91.38380432128906,0.1793181598186493,0.2544082999229431,0.2878515124320984,2689\n2604A,100.0782,23.8982,20170930,11.589285714285715,4756.0,4260.0,493800.3504742868,-703890.90384595,1543,0.3169615566730499,33.56180191040039,290.6769714355469,80540.9375,0.0057790013961493,44.21146011352539,-6.416864835045999e-07,91.46289825439452,0.1752232611179351,0.2641239166259765,0.2871953845024109,3768\n2605A,101.5482,25.0441,20170930,9.785714285714286,4573.0,4496.0,627684.3374206615,-562536.3493862812,1789,1.2259186506271362,193.19163513183597,291.4422302246094,80405.4453125,0.0028969626873731,126.43607330322266,-5.4549332162423525e-06,86.20572662353516,-0.2797573208808899,1.1935713291168213,0.2763110399246216,3308\n2606A,101.538,25.0492,20170930,11.785714285714285,4572.0,4494.0,626668.5344778454,-562008.45018844,1787,1.2341734170913696,193.7115173339844,291.40301513671875,80351.3828125,0.002918689744547,127.01457977294922,-5.482316282723332e-06,86.4122314453125,-0.2925319969654083,1.1990033388137815,0.2747029364109039,2822\n2608A,103.3772,23.3993,20170930,14.48148148148148,4836.0,4788.0,818888.1158767234,-739499.3226029056,1291,0.9689183831214904,203.6097717285156,293.3449401855469,86444.2734375,0.0048661814071238,148.48435974121094,-4.840725068788743e-06,89.73617553710938,-0.388045996427536,0.8878192901611328,0.3797613084316253,4558\n2609A,103.386,23.4168,20170930,15.785714285714285,4833.0,4790.0,819573.6886883286,-737409.0101080544,1285,0.9909538626670836,203.0232391357422,293.33349609375,86468.8125,0.0049404348246753,154.20962524414062,-5.055111159890657e-06,89.60304260253906,-0.3875556886196136,0.912025272846222,0.3446941971778869,5533\n2610A,104.2533,23.3594,20170930,11.442307692307692,4843.0,4929.0,904721.3148762682,-736411.4984473964,1275,1.0687991380691528,210.9019775390625,292.65264892578125,84925.46875,0.0032645852770656,166.52371215820312,-6.3617453633924015e-06,90.53572845458984,-0.5488893985748291,0.9170888066291808,0.3565628826618194,2944\n2611A,104.2319,23.3892,20170930,12.055555555555555,4838.0,4925.0,902311.7993431232,-733176.9551261452,1268,1.0973258018493652,210.5510406494141,292.71075439453125,85010.6328125,0.0032579717226326,170.68173217773438,-6.586638846783899e-06,90.31304168701172,-0.5577622056007385,0.945000171661377,0.3458412885665893,3333\n2612A,100.7939,22.0019,20170930,11.375,5060.0,4375.0,576217.6784211717,-918539.9801110736,551,0.4023758471012115,4.27538537979126,296.4130554199219,91772.5,0.0052357106469571,39.47274017333984,-1.2383370631141588e-06,92.42645263671876,0.0299961697310209,0.4012562036514282,0.2406912446022033,4254\n2613A,100.8017,22.0225,20170930,8.946428571428571,5056.0,4376.0,576852.8201519903,-916131.1953546047,588,0.3954018950462341,180.6579132080078,296.39373779296875,91697.7265625,0.0052126394584774,41.02936935424805,-1.2679732890319428e-06,92.41960906982422,-0.0045433184131979,0.3953758180141449,0.2408137321472168,6266\n2614A,100.1542,25.7054,20170930,11.892857142857142,4467.0,4273.0,490153.9183803912,-493426.8257176879,2018,0.7271196842193604,25.990385055541992,290.23419189453125,77061.59375,0.002953861374408,134.16139221191406,-2.146091719623655e-05,83.11693572998047,0.3186298310756683,0.653588593006134,0.2502575814723968,3956\n2615A,100.2171,25.5811,20170930,16.892857142857142,4487.0,4283.0,496900.71831995744,-507613.36940833,2017,0.7213922739028931,27.424015045166016,290.4558410644531,77964.9140625,0.0031224412377923,107.42428588867188,-1.3749830031883905e-05,84.6719970703125,0.3322440087795257,0.6403286457061768,0.2568327784538269,2774\n2616A,98.5842,24.428,20170930,18.12,4672.0,4021.0,346360.0682742415,-648839.3907836381,923,0.5438744425773621,30.079185485839844,294.46197509765625,88268.3125,0.0051952986977994,84.41777801513672,-1.0896263802351314e-06,90.10848236083984,0.2725806534290313,0.4706370234489441,0.2541479766368866,3616\n2617A,98.578,24.441,20170930,25.75,4670.0,4020.0,345706.19158641977,-647351.3980986882,909,0.5491601824760437,28.933015823364254,294.50927734375,88357.8984375,0.0051431842148303,85.15911865234375,-1.0941295158772846e-06,90.01081085205078,0.2656692266464233,0.4806212186813354,0.2532182037830353,3003\n2618A,98.8601,25.8567,20170930,10.814814814814817,4443.0,4066.0,366466.9034627275,-481398.4167227211,1044,0.3159823417663574,75.55809783935547,291.0912170410156,80409.34375,0.0041437819600105,38.77461242675781,-9.933794444805244e-07,90.10649871826172,0.3059945404529571,0.0788173303008079,0.2252383232116699,6789\n2619A,98.8546,25.8417,20170930,9.192307692307692,4445.0,4065.0,366013.8104022085,-483171.6467724503,1021,0.3177793622016907,76.47756958007812,291.0397644042969,80350.9375,0.0041847540996968,38.90605926513672,-1.0054482117993755e-06,90.13469696044922,0.308967113494873,0.0743172615766525,0.2235659211874008,6466\n2620A,99.7064,27.8136,20170930,5.065217391304348,4130.0,4201.0,435754.6558747529,-248382.7471548332,3332,0.9265080690383912,24.678390502929688,283.8400573730469,66710.453125,0.0028829467482864,179.3019561767578,-2.6671355044527445e-06,84.13261413574219,0.3868289887905121,0.8418910503387451,0.128885805606842,2704\n2621A,99.7056,27.8317,20170930,5.388888888888888,4127.0,4201.0,435578.49502392334,-246254.9584426976,3292,0.9301822185516356,24.396018981933597,283.832275390625,66651.34375,0.0027844423893839,181.02284240722656,-2.7087307898909785e-06,83.83048248291016,0.3841928243637085,0.8471332788467407,0.1278487294912338,1399\n2622A,97.1804,31.1278,20170930,20.08,3600.0,3797.0,193215.80596148127,136454.7831688146,3358,0.4575960338115692,192.51683044433597,284.90753173828125,62507.19140625,0.0025370861403644,121.71180725097656,-3.0775245249969885e-06,59.56917572021485,-0.0991702377796173,0.4467207193374634,0.0667227059602737,2591\n2624A,91.7608,29.2313,20170930,3.9814814814814814,3903.0,2930.0,-294446.85629901715,-86384.11584464287,3591,0.7884178757667542,238.66241455078125,283.91754150390625,61843.71875,0.0024013523943722,180.95252990722656,-9.2836853582412e-06,64.21441650390625,-0.6733893752098083,0.4100603759288788,0.1247055977582931,2737\n2625A,91.7706,29.261,20170930,4.814814814814816,3898.0,2931.0,-293440.6663086209,-82894.96947834559,3554,0.7986096739768982,236.85104370117188,283.9096069335937,61814.91796875,0.0022330838255584,182.65936279296875,-9.50974936131388e-06,64.37110137939453,-0.6686246395111084,0.4367132782936096,0.1099868044257164,5279\n2626A,88.8876,29.2718,20170930,5.375,3897.0,2470.0,-555067.773415926,-69167.17860105723,3842,0.7413478493690491,222.568603515625,286.7591857910156,62597.0859375,0.0010961557272821,235.49642944335935,-7.430562618537806e-06,49.142181396484375,-0.5014895796775818,0.5459898114204407,0.1444905698299408,2401\n2628A,92.0657,31.4846,20170930,22.81481481481481,3543.0,2978.0,-258733.2706399386,180774.0211742982,4520,0.9764516353607178,236.77493286132807,278.7976989746094,57607.3515625,0.0019035355653613,110.98381042480467,-5.098112524137832e-06,70.7126693725586,-0.8168103098869324,0.5350502133369446,0.0933794900774955,2448\n2630A,80.1161,32.5,20170930,5.630434782608695,3380.0,1067.0,-1289241.4111383096,396246.3684214846,4290,1.888761043548584,42.6860580444336,282.5796203613281,59057.61328125,0.0005134999519214,1116.793701171875,-6.350143394229235e-06,36.57745742797852,1.2805131673812866,1.3884178400039673,0.0503302067518234,748\n2632A,94.3681,29.6376,20170930,5.803571428571429,3838.0,3347.0,-57140.4947800198,-42861.69842046306,3017,0.8471730947494507,201.0245361328125,282.3270874023437,63884.77734375,0.0031543509103357,287.6492004394531,-9.31527029024437e-06,82.06182098388672,-0.3039298057556152,0.7907774448394775,0.1256581395864486,4590\n2633A,94.3616,29.6632,20170930,4.769230769230768,3834.0,3346.0,-57708.51480430236,-39819.07343757561,3041,0.8533617854118347,201.58853149414065,282.3268737792969,63864.78515625,0.0033172972034662,291.8014831542969,-9.25673248275416e-06,81.96097564697266,-0.3139756619930267,0.7935020923614502,0.1247279942035675,3397\n2634A,106.9893,33.1842,20170930,20.75,3271.0,5366.0,1029917.0674419248,443417.50296650745,562,0.533329963684082,342.38458251953125,291.5626525878906,91669.140625,0.0032677142880856,57.59440612792969,-1.712423568278609e-06,87.98578643798828,-0.161442369222641,-0.5083081722259521,0.5105925798416138,3823\n2635A,107.0154,33.0706,20170930,22.839285714285715,3289.0,5370.0,1033811.9547769956,430151.5471291985,510,0.3681458830833435,343.842041015625,292.347412109375,93786.2578125,0.0033505933824926,67.2682876586914,-1.1098995855718383e-06,86.59276580810547,-0.1024800017476081,-0.3535947501659393,0.5315560102462769,2051\n2636A,107.0089,33.1138,20170930,22.653846153846157,3282.0,5369.0,1032623.1006682434,435231.6211240028,529,0.4273976683616638,343.43084716796875,292.1382751464844,93181.0,0.0033004055730998,63.34513473510742,-1.3378802350416663e-06,87.09696960449219,-0.1219165325164794,-0.4096402525901794,0.5173081159591675,2665\n2637A,107.007,33.0323,20170930,24.285714285714285,3295.0,5369.0,1033653.309371594,425499.2718891732,511,0.3226097822189331,342.61279296875,292.4324951171875,94121.2421875,0.0033881156705319,70.8770980834961,-8.803635864751413e-07,86.18814086914062,-0.0964306518435478,-0.3078607022762298,0.5340111255645752,2408\n2638A,109.7414,38.3344,20170930,28.76,2447.0,5807.0,1171631.978755525,1091382.1330838008,1133,1.9135373830795288,194.62237548828125,290.7205810546875,88657.8828125,0.000288203387754,181.61985778808597,-2.157668859581463e-05,61.520294189453125,-0.4830529689788818,1.8515628576278689,0.2663540244102478,5542\n2639A,109.7456,38.2911,20170930,26.69642857142857,2454.0,5807.0,1172750.7816966318,1086224.0770328238,1071,1.926424264907837,194.95901489257807,290.7468566894531,88684.0078125,0.0002989358326885,180.3111114501953,-2.0898303773719817e-05,61.25959777832031,-0.4972496032714844,1.861142992973328,0.2739469707012176,2391\n2640A,109.7289,38.2839,20170930,26.10714285714285,2455.0,5805.0,1171563.3550062536,1085158.8706063242,1075,1.943397045135498,195.42501831054688,290.7424011230469,88685.1171875,0.0003014436515513,180.74305725097656,-2.1095602278364826e-05,61.26169967651367,-0.5168845057487488,1.8733986616134644,0.3016261160373688,2129\n2641A,109.7336,38.2478,20170930,26.892857142857142,2460.0,5805.0,1172590.3588441152,1080873.1124953884,1077,1.9724571704864504,195.0032501220703,290.74688720703125,88713.5703125,0.0003128972020931,179.84446716308594,-2.062669227598235e-05,61.07808303833008,-0.510602593421936,1.9052222967147827,0.2859633266925812,3633\n2642A,109.0311,32.6778,20170930,17.964285714285715,3352.0,5693.0,1212856.6591864573,406474.2512072071,359,0.6736310720443726,305.3818664550781,293.75732421875,95880.7421875,0.0063417204655706,97.23849487304688,-5.144852821103996e-06,85.0568618774414,-0.5492440462112427,-0.3900125622749328,0.6008297801017761,3582\n2643A,109.0281,32.6939,20170930,23.92,3349.0,5692.0,1212324.3870376532,408348.3560458024,265,0.6944130659103394,307.44940185546875,293.8672790527344,96135.8203125,0.0062869447283446,98.29783630371094,-5.282586243993137e-06,84.87751770019531,-0.5513156652450562,-0.4222091436386108,0.6001899838447571,2367\n2644A,109.0072,32.6975,20170930,23.54,3348.0,5689.0,1210469.1081632632,408518.04120580485,276,0.6802060604095459,308.0133972167969,293.9017333984375,96183.7265625,0.006338583305478,97.89935302734376,-5.327542112354422e-06,84.7706069946289,-0.5359393954277039,-0.4188666045665741,0.5989304780960083,2552\n2645A,109.9154,33.8715,20170930,24.0,3161.0,5834.0,1267040.370770965,559489.4657710473,724,0.3642005920410156,234.88812255859372,290.1362609863281,90118.8046875,0.0034857764840126,109.34549713134766,-3.030545713045285e-06,82.28521728515625,-0.2979212701320648,0.2094874382019043,0.5185116529464722,3074\n2647A,104.1731,36.5458,20170930,24.875,2733.0,4916.0,750994.7195277833,821225.1675064043,1715,1.0620336532592771,295.3581848144531,288.9828796386719,81730.0625,0.0007890709675848,234.36854553222656,-1.3870675502403174e-05,57.83513259887695,-0.9597316384315492,-0.4547862410545349,0.2487519830465316,2961\n2648A,104.1731,36.5481,20170930,16.96153846153846,2732.0,4916.0,750968.7358038261,821502.6867360211,1723,1.062791347503662,295.88006591796875,288.94024658203125,81659.4765625,0.0007925544632598,235.13519287109372,-1.3915615454607178e-05,57.79341506958008,-0.9562312960624696,-0.4638395011425018,0.2327369600534439,2318\n2649A,106.005,34.3469,20170930,8.166666666666666,3085.0,5209.0,930098.1823347886,572529.915970101,1700,0.7741535902023315,220.4454345703125,288.2301940917969,83527.59375,0.001831152010709,214.34458923339844,-7.581887530250242e-06,77.38851928710938,-0.5021993517875671,0.5891600251197815,0.4262834787368774,7046\n2650A,105.7281,34.5814,20170930,17.410714285714285,3047.0,5164.0,903709.6996293266,598041.8989894587,1197,1.117003321647644,202.42189025878903,289.47247314453125,85554.78125,0.0017016814090311,275.1509704589844,-8.895507562556304e-06,74.55242919921875,-0.4260395467281341,1.0325632095336914,0.4041899442672729,2898\n2651A,105.8614,34.5653,20170930,17.5,3050.0,5186.0,915107.2497954542,597345.9172648309,1104,1.0291712284088137,215.7818298339844,289.451171875,85821.7890625,0.0016848903615027,242.4861297607422,-7.930164429126307e-06,75.02796173095703,-0.60174161195755,0.8349254727363586,0.3987101018428802,3345\n2652A,102.6219,37.9311,20170930,19.678571428571427,2511.0,4667.0,611250.3970539545,978005.3236476298,1538,1.494691252708435,47.416751861572266,289.6949157714844,82552.5703125,0.0003183826047461,80.7162857055664,-7.356313744821818e-06,43.200984954833984,1.1005088090896606,1.0114257335662842,0.1760046035051345,2323\n2653A,102.6469,37.9358,20170930,22.321428571428577,2510.0,4671.0,613206.85229728,978730.6813137048,1522,1.487981200218201,46.48941040039063,290.09649658203125,83022.984375,0.0002915886288974,83.95191192626953,-7.421544523822376e-06,42.40830612182617,1.0791295766830444,1.0244840383529663,0.2420098781585693,4339\n2654A,100.4686,38.9467,20170930,6.22,2349.0,4323.0,431902.6136916799,1089882.506346159,1472,1.444427490234375,21.78235626220703,289.63580322265625,83979.1484375,0.000360536185326,71.58575439453125,-7.251607712532859e-06,43.43761444091797,0.535986065864563,1.3413015604019165,0.2105448096990585,3369\n2655A,100.4497,38.9389,20170930,9.982142857142858,2350.0,4320.0,430464.1120646168,1088851.0576697146,1478,1.4930169582366943,24.046417236328125,289.4722595214844,83822.15625,0.0003707905707415,69.46589660644531,-7.295982413779711e-06,43.903350830078125,0.608352541923523,1.363453984260559,0.1476785838603973,2739\n2656A,106.6692,35.5461,20170930,25.32142857142857,2893.0,5315.0,968827.2081992122,722734.7438220762,1386,0.8553280234336853,34.07592010498047,287.4769592285156,83796.9140625,0.0014739459147676,162.8995819091797,-6.319840395008214e-06,76.17446899414062,0.4792200922966003,0.7084730863571167,0.3571867644786834,3382\n2657A,106.7039,35.5294,20170930,23.910714285714285,2895.0,5321.0,971934.4401793128,721072.817166486,1353,0.8916146755218506,36.29512023925781,287.6173095703125,84044.7578125,0.0014449503505602,162.91836547851562,-6.389607733581215e-06,75.5820083618164,0.5277730822563171,0.7186322808265686,0.3954597413539886,3785\n2658A,98.509,39.746,20170930,12.464285714285715,2221.0,4009.0,273742.0587948633,1180166.0370633968,1467,2.0570569038391118,28.001060485839844,290.1449279785156,83653.6640625,0.0001479861966799,79.48576354980469,-9.795704499993008e-06,39.13758087158203,0.9657371044158936,1.8162695169448853,0.1795483231544494,2198\n2659A,98.5023,39.7294,20170930,17.875,2223.0,4008.0,273291.74933905667,1178124.1663138631,1479,2.0545663833618164,28.106273651123047,289.9070739746094,83357.1171875,0.0001702608569758,76.69596862792969,-9.66713560046628e-06,40.09106063842773,0.9678974747657776,1.8122962713241575,0.1705310493707656,2675\n2660A,107.6831,35.7289,20170930,23.339285714285715,2863.0,5477.0,1049711.0817165468,755084.3459492628,1372,1.095583438873291,189.02085876464844,289.7538452148437,86959.484375,0.0012157140299677,189.15167236328125,-7.653963621123694e-06,74.24475860595703,-0.1717756241559982,1.0820332765579224,0.3515439331531524,4709\n2661A,107.6406,35.5236,20170930,27.87037037037037,2896.0,5470.0,1049397.8060805153,730011.762921301,1243,0.9307885766029358,195.7850799560547,290.2081298828125,87912.1640625,0.0013348781503736,188.04237365722656,-7.946553523652256e-06,74.71089935302734,-0.2531947791576385,0.8956895470619202,0.3775676786899566,4941\n2662A,107.6364,35.7067,20170930,25.592592592592588,2867.0,5470.0,1046211.6959714012,751923.5357029445,1402,1.0841752290725708,189.38787841796875,289.80474853515625,87061.75,0.0012157772434875,191.3122711181641,-7.958260539453477e-06,74.26844024658203,-0.1768423616886139,1.069655418395996,0.3871331214904785,3111\n2663A,104.6228,35.5714,20170930,15.357142857142858,2889.0,4988.0,799228.8268270884,707363.7086749219,1939,1.297023057937622,212.2240295410156,286.46685791015625,79630.015625,0.0015218056505545,234.2569580078125,-8.323729161929805e-06,74.38304901123047,-0.6915950179100037,1.097253441810608,0.2727053165435791,2517\n2664A,104.6169,35.5975,20170930,13.214285714285715,2884.0,4987.0,798432.006353758,710456.2564616262,1957,1.2785669565200806,210.9596099853516,286.4800109863281,79620.1171875,0.0015124587807804,232.1533050537109,-8.302369678858668e-06,74.02218627929688,-0.6577203869819641,1.0964202880859375,0.2508256137371063,3406\n2665A,105.0822,33.3261,20170930,10.875,3248.0,5061.0,864975.4456985539,441968.0310223575,1146,0.3830296993255615,233.20120239257807,288.4565734863281,82693.96875,0.0017992448993027,185.6493682861328,-4.962361799698556e-06,82.02059936523438,-0.3067024350166321,0.2294457852840423,0.4199820160865783,3919\n2667A,103.2139,35.6039,20170930,13.660714285714285,2883.0,4762.0,682179.6674076503,700656.2081024505,1894,0.5946396589279175,48.21324920654297,286.4684143066406,78391.9765625,0.0030507370829582,118.62808227539062,-1.0022938113252168e-05,71.10523223876953,0.4433713853359222,0.3962551355361938,0.2394949197769165,2813\n2668A,103.2064,35.5997,20170930,12.321428571428571,2884.0,4761.0,681600.5912817249,700098.1078403079,1900,0.6054956912994385,48.62504959106445,286.4322814941406,78394.5,0.00312678841874,117.31340789794922,-9.742271686263848e-06,71.47590637207031,0.4543540179729461,0.4002342522144317,0.2407358437776565,2542\n2669A,102.905,35.0003,20170930,17.48148148148148,2980.0,4713.0,662441.98629701,625862.2214344998,2907,1.2829827070236206,295.12969970703125,281.2742919921875,70032.90625,0.002604475012049,218.2890625,-7.325065780605655e-06,85.19269561767578,-1.161579132080078,-0.5447739958763123,0.1589976996183395,3025\n2671A,100.9048,36.9639,20170930,21.303571428571427,2666.0,4393.0,480788.53717040847,851288.3369015855,3106,1.4895963668823242,281.874755859375,280.86895751953125,69434.9921875,0.0017324569635093,184.6597137451172,-1.4340110283228569e-05,73.8242416381836,-1.4577345848083496,-0.3064428269863128,0.1418796330690384,3975\n2672A,102.0199,35.5102,20170930,17.785714285714285,2898.0,4571.0,584007.5301897358,681668.8160312237,2561,0.4574792683124542,303.51727294921875,282.8353271484375,70828.8125,0.0049939099699258,146.18641662597656,-3.3986436847044388e-06,75.92356872558594,-0.3814254701137543,-0.2525903582572937,0.1660008430480957,2355\n2673A,100.6188,36.2866,20170930,13.017857142857142,2774.0,4347.0,462219.4505657392,767961.5441036653,2871,0.9431715607643129,270.5924377441406,284.0096130371094,71319.234375,0.0013226123992353,190.54969787597656,-2.8622296667890623e-05,65.70587158203125,-0.943121612071991,-0.0097083840519189,0.1368759572505951,2575\n2674A,100.2561,34.4714,20170930,22.517857142857142,3065.0,4289.0,444139.8555763073,547277.7564710287,3771,0.2256966978311538,316.51287841796875,277.46710205078125,62318.55859375,0.0040754149667918,165.8961181640625,-4.904612069367431e-06,80.60944366455078,-0.1553341150283813,-0.1637385636568069,0.0824499428272247,4954\n2675A,97.0,33.0014,20170930,9.370370370370368,3300.0,3768.0,172667.9362115236,360313.5612189761,3757,0.2018897086381912,231.16905212402344,280.2334289550781,60795.59375,0.0034045816864818,80.45064544677734,-1.860199404291052e-06,74.64939880371094,-0.1572686284780502,0.1265939623117447,0.089590735733509,3039\n2676A,97.3731,37.3753,20170930,22.75,2600.0,3828.0,192117.58370609817,889084.889066094,2999,0.9521082639694214,313.87261962890625,282.7372131347656,69008.6796875,0.000794805935584,95.86654663085938,-6.301898338278988e-06,49.613765716552734,-0.6864033937454224,-0.6598185300827026,0.1058980524539947,3460\n2677A,106.1532,37.9648,20170930,24.125,2506.0,5232.0,892960.8555198201,1009116.4691596662,1130,1.865632176399231,197.82498168945312,293.7273254394531,88170.4453125,0.0002244956995127,277.7464599609375,-1.3932902220403776e-05,46.73630142211914,-0.5710731148719788,1.7760796546936035,0.3481635451316833,4439\n2678A,106.2025,37.9844,20170930,16.946428571428573,2503.0,5240.0,896619.8297781153,1011932.7084122216,1131,2.0501224994659424,199.67335510253903,293.86279296875,88375.7421875,0.0002179824077757,291.0054016113281,-1.3916742318542674e-05,46.39213180541992,-0.6901693940162659,1.930458068847656,0.2608725428581238,2554\n2679A,106.196,37.9723,20170930,18.18,2505.0,5239.0,896269.0844892439,1010411.9924503744,1130,2.033546209335327,199.32073974609372,293.8335876464844,88324.859375,0.0002218313893536,288.0036926269531,-1.4043880582903512e-05,46.68199920654297,-0.6727922558784485,1.9190260171890257,0.284128189086914,2368\n2680A,105.0197,37.4514,20170930,22.69642857142857,2588.0,5051.0,808891.675311407,937283.2380520932,1259,1.2635903358459473,191.43276977539065,291.99560546875,85358.0546875,0.000307954440359,234.33035278320312,-1.0842647498066071e-05,50.69700241088867,-0.250459611415863,1.238519549369812,0.1796393245458603,4148\n2681A,105.18,37.0172,20170930,23.60714285714285,2657.0,5077.0,827237.0701721335,886194.375603343,1709,0.8839013576507568,188.99758911132807,288.57098388671875,82802.0078125,0.0010092589072883,182.49269104003903,-1.544056794955395e-05,65.69528198242188,-0.1382319182157516,0.8730255365371704,0.2174563556909561,1822\n2682A,105.1971,37.5002,20170930,25.57142857142857,2580.0,5080.0,822548.2879581335,944650.9017557104,1225,1.3388773202896118,193.34815979003903,293.18817138671875,87009.9765625,0.0002216139400843,249.9081268310547,-9.795303412829526e-06,49.26742935180664,-0.3090941607952118,1.302709937095642,0.253089964389801,4171\n2683A,106.2319,36.1417,20170930,15.428571428571429,2797.0,5245.0,924463.1253715171,790090.8218269938,1610,1.2595356702804563,199.9042053222656,287.4787902832031,82702.1875,0.0009046105551533,193.72080993652344,-8.430302841588855e-06,72.14305114746094,-0.4287950098514557,1.184299349784851,0.2751048505306244,5366\n2684A,106.2792,36.0022,20170930,22.178571428571423,2820.0,5253.0,930273.3392531164,773761.2487351983,1737,1.077317476272583,202.7590789794922,286.7867126464844,81605.9765625,0.0010369046358391,185.54124450683597,-8.03725743026007e-06,73.95996856689453,-0.4167561829090118,0.9934420585632324,0.3162295818328857,1960\n2685A,106.2375,36.0211,20170930,18.857142857142858,2817.0,5246.0,926588.0422412748,775639.768451059,1790,1.0784432888031006,201.54893493652344,286.7251281738281,81438.4375,0.0010190950706601,184.0577850341797,-8.024482667678967e-06,73.55094909667969,-0.3960963189601898,1.0030690431594849,0.3210349977016449,3507\n2686A,89.191,42.9409,20170930,30.83333333333333,1710.0,2519.0,-429927.9710953192,1578490.7242926103,16,0.8410056233406067,94.06525421142578,300.0401306152344,98485.6640625,7.261799055413576e-06,120.35991668701172,-2.7439284622232663e-06,18.081871032714844,0.8388925194740295,-0.0595804490149021,0.2111565619707107,2455\n2687A,89.1673,42.9559,20170930,35.04,1707.0,2515.0,-431571.0087082757,1580428.0195423935,47,0.7770372629165649,98.11861419677734,299.76318359375,97901.1171875,8.304908078571316e-06,122.15460205078124,-2.6875054572883528e-06,18.113378524780277,0.7692552208900452,-0.1096965968608856,0.1758279949426651,3031\n2688A,93.5128,42.8172,20170930,18.88888888888889,1729.0,3210.0,-110357.82415436444,1551468.5518098618,754,2.0653443336486816,172.47793579101562,296.39532470703125,91988.296875,2.860897075152025e-05,226.2906188964844,-2.032328893619706e-06,18.456035614013672,0.2705510258674621,-2.0475471019744877,0.2527441680431366,2838\n2689A,93.4961,42.8328,20170930,21.964285714285715,1727.0,3207.0,-111567.72246895422,1553397.0785220535,761,2.0799572467803955,172.55967712402344,296.2716369628906,91860.3515625,2.9695975172217004e-05,222.426513671875,-2.066495198960183e-06,18.53411102294922,0.2695245742797851,-2.062420606613159,0.2239009886980056,3195\n2690A,87.9897,44.1564,20170930,7.833333333333332,1515.0,2326.0,-508085.4248178127,1732801.4906476447,558,0.6587134599685669,4.59828519821167,292.91864013671875,92890.734375,0.0002994832757394,175.737060546875,-5.991647412884049e-06,29.38453483581543,0.0528068505227565,0.656593382358551,0.1650805920362472,4665\n2691A,87.2997,44.0114,20170930,26.142857142857142,1538.0,2216.0,-559387.6819911076,1718831.883395998,579,0.3040938079357147,66.33016204833984,294.2113342285156,94292.546875,0.0002272085112053,138.56040954589844,-5.221825631451793e-06,27.47257423400879,0.2785074710845947,0.1220927238464355,0.2710482776165008,3626\n2692A,87.2717,44.0297,20170930,23.267857142857142,1535.0,2211.0,-561241.3720216225,1721226.9293298232,570,0.301714688539505,82.6423110961914,294.320068359375,94314.7578125,0.0002176316775148,149.93850708007812,-5.321648586686933e-06,27.310434341430664,0.2992287278175354,0.0386513024568557,0.1944513022899627,3124\n2693A,82.0485,44.9079,20170930,15.910714285714285,1395.0,1376.0,-924659.766736306,1867798.1540718584,525,0.4318808913230896,305.4886474609375,292.969970703125,93958.4375,0.0005729842814616,206.22802734375,-5.96363861404825e-06,38.19514465332031,-0.3516668677330017,-0.2507020831108093,0.1804116666316986,4104\n2694A,82.0806,44.8969,20170930,21.98214285714285,1397.0,1381.0,-922558.0232715886,1866159.8028776352,502,0.4277291595935821,303.241455078125,293.44854736328125,94546.34375,0.000538621272426,214.88323974609372,-6.069860319257714e-06,37.40008163452149,-0.3577538132667541,-0.2344449758529663,0.229207843542099,3719\n2695A,80.2828,41.1636,20170930,38.518518518518526,1994.0,1093.0,-1118238.3706794984,1432255.0928921446,1110,1.4323512315750122,175.69825744628906,294.021240234375,88345.3515625,7.229731272673234e-05,75.68722534179688,-1.3171291357139124e-05,43.21418380737305,0.1075680777430534,-1.4283063411712646,0.2404047399759292,2031\n2696A,80.2956,41.1933,20170930,35.981481481481474,1989.0,1095.0,-1116731.9128939356,1435698.672128088,1122,1.464824676513672,174.4279022216797,293.8612976074219,88316.0859375,7.424238719977438e-05,77.0191421508789,-1.299785162700573e-05,43.13019561767578,0.1423640847206115,-1.457890272140503,0.2434255629777908,2447\n2697A,76.1861,39.7153,20170930,60.77777777777778,2226.0,438.0,-1459769.9556300486,1311715.0845385238,1290,1.0100464820861816,160.67636108398438,296.76385498046875,85477.5390625,0.0002493215142749,348.42254638671875,-1.135391903517302e-05,23.18807983398437,0.334306925535202,-0.9531173706054688,0.315538227558136,3894\n2698A,75.9828,39.5371,20170930,67.625,2254.0,405.0,-1479526.8817450665,1293428.194471292,1370,0.5332188606262207,108.67406463623048,295.9513854980469,85628.46875,0.0003390297933947,165.29412841796875,-1.843893369368743e-05,28.33236122131348,0.5051572918891907,-0.1707000136375427,0.167120561003685,1377\n2700A,75.9435,39.4365,20170930,104.0925925925926,2270.0,399.0,-1484909.6092482128,1281986.5611717484,1290,0.9178271293640136,74.35443115234375,296.44403076171875,86460.171875,0.0003103557392023,173.26869201660156,-1.7133654182543978e-05,28.86909484863281,0.8838106393814087,0.2475587874650955,0.1867103576660156,5280\n2701A,79.9485,37.1152,20170930,52.57142857142857,2642.0,1040.0,-1218690.3652032565,948717.6981319996,1367,0.251452624797821,34.85137176513672,296.9010009765625,85067.984375,3.1523410143563524e-05,179.6980438232422,-1.2136091754655354e-05,24.37801742553711,0.1436887979507446,0.206353947520256,0.1801830381155014,1648\n2702A,79.9117,37.1013,20170930,67.14285714285714,2644.0,1034.0,-1221904.543341933,947507.8567493644,1391,0.2122855484485626,46.00435256958008,296.5608215332031,84818.9453125,4.081288352608681e-05,174.23013305664062,-1.2698858881776688e-05,25.11478614807129,0.1527131646871566,0.1474579572677612,0.1827351003885269,1860\n2703A,81.2815,43.9404,20170930,32.875,1550.0,1253.0,-995572.9683248736,1757814.37095693,639,0.2934849560260772,101.52169799804688,294.4079284667969,92588.7265625,0.0003012310771737,212.56927490234372,-6.346553618641337e-06,30.97601318359375,0.2875740230083465,-0.0586053691804409,0.2518196702003479,3223\n2704A,81.2867,43.895,20170930,31.42857142857143,1557.0,1254.0,-995971.85379096,1752253.256966082,611,0.3271576464176178,44.26177597045898,294.2145690917969,92485.3203125,0.000320506747812,204.9443817138672,-7.21709420758998e-06,32.586849212646484,0.2283302843570709,0.2343019396066665,0.227430909872055,4130\n2705A,81.3364,43.941,20170930,31.5,1550.0,1262.0,-991604.3656109415,1757332.0272991054,664,0.2106658518314361,106.46453857421876,294.172119140625,92463.6953125,0.0003236154734622,204.06190490722656,-6.53501729175332e-06,32.086280822753906,0.2020308524370193,-0.0596962347626686,0.1972044855356216,2918\n2706A,82.9994,46.7432,20170930,13.446428571428571,1101.0,1528.0,-829714.6300591873,2082471.1894983333,551,1.1296497583389282,146.21510314941406,290.3580322265625,93859.9140625,0.000720759097021,220.47259521484372,-1.1926489605684765e-05,38.67789840698242,0.628242552280426,-0.9388396143913268,0.1307219713926315,4305\n2707A,88.1214,47.9047,20170930,7.035714285714287,915.0,2347.0,-466422.3514114968,2190396.5943886028,1013,0.8852497935295105,160.2607421875,283.2059936523437,87079.328125,0.0009159785695374,186.27294921875,-4.545808678813046e-06,56.4791259765625,0.2990531325340271,-0.8332073092460632,0.1115851402282714,4009\n2708A,88.1267,47.8515,20170930,6.428571428571429,924.0,2348.0,-466519.0370458345,2183870.642516352,921,0.9537973403930664,148.24424743652344,284.63751220703125,88930.4140625,0.0007686694734729,198.3968048095703,-5.461864475364564e-06,52.75522994995117,0.5020448565483093,-0.8109749555587769,0.1361428350210189,2903\n2709A,86.0497,44.2967,20170930,33.74074074074074,1493.0,2016.0,-646780.098240028,1761339.2915265108,488,0.7292813658714294,8.130642890930176,294.526611328125,95613.5625,0.000228444187087,140.35986328125,-7.370770163106499e-06,31.56536865234375,0.1031394079327583,0.7219511866569519,0.2818257808685303,3991\n2710A,86.0697,44.3075,20170930,34.339285714285715,1491.0,2019.0,-645218.6933833116,1762525.8215950804,480,0.6623550653457642,6.72577714920044,294.6950378417969,95834.71875,0.0002305477537447,142.44342041015625,-7.70279348216718e-06,31.341100692749023,0.0775710344314575,0.6577970385551453,0.2718171179294586,3409\n2711A,87.5475,44.1756,20170930,16.51851851851852,1512.0,2256.0,-539896.825489145,1737506.0089366855,470,0.1722055673599243,150.9861297607422,295.1612548828125,95218.6171875,0.0001862952922238,187.6067047119141,-6.928681614226662e-06,25.543235778808597,0.0835351049900055,-0.1505876630544662,0.386908084154129,2675\n2835A,101.7227,26.567,20170930,15.017857142857142,4329.0,4524.0,632213.0531514047,-383772.919957631,1266,0.1433713585138321,303.4752502441406,295.5080871582031,85067.9375,0.0040319017134606,42.83563995361328,-2.4261003090941813e-06,83.01676940917969,-0.1195945367217063,-0.0790727064013481,0.3223529756069183,5100\n2842A,118.0936,24.5058,20170930,24.69642857142857,4659.0,7143.0,2209551.663644012,-385259.0438301716,39,1.021665096282959,271.7112731933594,300.3060913085937,100578.59375,0.0011492220219224,292.04931640625,-5.297390089253895e-05,83.59554290771484,-1.0212109088897705,-0.0304618962109088,0.3571558594703674,3910\n2845A,113.1569,36.1912,20170930,59.375,2789.0,6353.0,1488088.013644366,881070.9673317256,1012,1.4131444692611694,1.1374939680099487,289.579833984375,89816.578125,0.0006853605736978,121.92268371582033,-5.249291461950634e-06,71.47936248779297,0.0280541740357875,1.4128659963607788,0.4312211573123932,5121\n2846A,113.3208,23.1323,20170930,38.22222222222222,4879.0,6379.0,1788416.5946563757,-638079.1326979217,9,1.221657633781433,219.87710571289065,300.49932861328125,100710.4375,0.0048345294781029,132.71054077148438,-2.319770646863617e-05,81.10176086425781,-0.7832381129264832,0.9375422596931458,0.5728865265846252,2814\n2858A,117.7918,39.2474,20170930,48.33333333333334,2300.0,7095.0,1776467.147295284,1321453.8784410346,1,2.373995780944824,188.1752471923828,295.6352233886719,101149.5703125,0.0001961312809726,216.22360229492188,-1.9430857719271444e-05,60.52513122558594,-0.3375760316848755,2.34987211227417,0.6923342347145081,2839\n2859A,117.3747,38.9846,20170930,41.03846153846154,2343.0,7028.0,1751754.020613431,1282790.4055396274,3,2.271868705749512,187.1656188964844,295.7871398925781,101173.984375,0.0001196890880237,184.74203491210935,-3.656508488347754e-05,56.65597152709961,-0.2833786904811859,2.2541258335113525,0.6396747827529907,2115\n2860A,117.1589,39.0845,20170930,39.96428571428572,2327.0,6993.0,1732426.3920374743,1290822.2581275832,4,2.191713809967041,186.2216339111328,295.6973571777344,101126.3984375,0.0001382169139105,169.9305419921875,-2.797782326524612e-05,54.584716796875,-0.237520545721054,2.1788055896759038,0.6807559132575989,2645\n2862A,114.54805559999998,38.03777778,20170930,62.730769230769226,2494.0,6576.0,1556366.4925170816,1122582.6280842524,74,1.812563419342041,4.637861728668213,295.9157409667969,100063.484375,3.39127509505488e-05,129.25746154785156,-9.49364130065078e-06,54.386138916015625,0.1465551555156707,1.8066288232803345,0.5708348751068115,2727\n2865A,112.7194444,37.68277778,20170930,52.73214285714285,2551.0,6283.0,1420180.301955228,1052510.7492046906,793,0.9734519720077516,215.6249084472656,291.52099609375,91653.6953125,0.0001601193798705,90.6673355102539,-6.7483188104233705e-06,60.167388916015625,-0.5669982433319092,0.7912785410881042,0.4169555008411407,2107\n2866A,111.0522222,35.04388889,20170930,41.83928571428572,2973.0,6016.0,1339796.5803403324,714146.3599811882,349,1.1986594200134275,242.6357269287109,293.3951416015625,96386.6171875,0.0016909637488424,144.50497436523438,-1.0554931577644313e-05,77.3471908569336,-1.0645142793655396,0.5509935617446899,0.4839353263378143,3941\n2868A,126.4738889,43.95305556,20170930,9.615384615384617,1548.0,8484.0,2252072.719585128,2053556.1480653677,183,1.5209389925003052,19.436920166015625,286.52459716796875,98608.3203125,0.0014137910911813,176.77572631835938,-1.4892649232933763e-05,68.9453125,0.5061068534851074,1.4342633485794067,0.3546399772167206,4078\n2869A,119.458,32.41361,20170930,27.339285714285715,3394.0,7361.0,2107329.737651893,551695.8844042597,9,1.3281652927398682,272.3712158203125,294.88671875,101145.1875,0.005106390453875,230.83856201171875,-2.16164298763033e-05,79.55659484863281,-1.3270306587219238,-0.0548882596194744,0.7109925746917725,3156\n2870A,119.43694440000002,32.18888889,20170930,36.55357142857143,3430.0,7358.0,2112178.604389323,525155.5737027492,38,1.3619123697280884,274.6060485839844,294.9388427734375,101020.8671875,0.0047355727292597,231.0355987548828,-2.4688913981663063e-05,80.15181732177734,-1.357519268989563,-0.109301172196865,0.7134186625480652,4975\n2871A,121.6147222,29.90166667,20170930,25.035714285714285,3796.0,7706.0,2368980.749043251,311125.3428055064,4,1.1374694108963013,277.3739929199219,297.6851806640625,101081.0625,0.0039490456692874,471.2615051269531,-6.989917892497033e-05,82.54700469970703,-1.128069281578064,-0.145932599902153,0.4772512018680572,1741\n2872A,120.7844444,30.7525,20170930,24.42857142857143,3660.0,7573.0,2270546.3943894,389189.950160506,6,1.665067195892334,289.75701904296875,296.8668518066406,101081.6796875,0.0028746877796947,380.3398742675781,-3.282347461208701e-05,81.01876068115234,-1.5670841932296753,-0.5627574324607849,0.6416054964065552,3302\n2873A,120.0875,30.89556,20170930,28.392857142857142,3637.0,7462.0,2206226.210036215,389797.6738445017,4,1.619728684425354,283.719482421875,296.5925598144531,100847.4765625,0.0025299875997006,381.9312744140625,-5.638778748107143e-05,81.02617645263672,-1.5735357999801636,-0.3840650916099548,0.7416126132011414,4423\n2874A,117.04116670000002,32.64600333,20170930,32.57142857142857,3357.0,6975.0,1896597.917204652,529533.8617192879,31,1.181435227394104,267.9225158691406,295.04205322265625,100767.0859375,0.0045316987670958,190.3597412109375,-1.8775283024297096e-05,77.84174346923828,-1.1806567907333374,0.0428816750645637,0.7861878871917725,3717\n2875A,115.7838889,32.88922222,20170930,38.833333333333336,3318.0,6773.0,1783954.7902911354,534471.8449218969,30,1.203330636024475,260.0440673828125,294.93365478515625,100906.53125,0.0036026295274496,167.53602600097656,-1.0057940016849898e-05,76.75804138183594,-1.1852011680603027,0.208093449473381,0.8501022458076477,2500\n2876A,119.0841,36.7339,20170930,42.21428571428572,2703.0,7301.0,1949368.6183479056,1049051.725155965,24,1.7987524271011353,200.74188232421875,294.8497314453125,100935.734375,0.0003752183110918,206.53684997558597,-1.5850002455408685e-05,65.90232849121094,-0.6370254755020142,1.6821738481521606,0.5955877304077148,3865\n2877A,119.1638,36.6525,20170930,30.285714285714285,2716.0,7314.0,1958091.5567535493,1041064.2924101627,48,1.6911263465881348,199.64913940429688,294.5633850097656,100722.2734375,0.0004585565475281,203.6742401123047,-1.5646170140826143e-05,68.10970306396484,-0.568640947341919,1.5926568508148191,0.5817749500274658,3685\n2878A,116.0072,36.4343,20170930,43.53571428571429,2751.0,6809.0,1712119.9099747154,956354.9696706852,34,1.6765496730804443,193.8936309814453,295.63409423828125,100811.8125,0.0004963488900102,172.25303649902344,-1.2711668205156457e-05,59.4459228515625,-0.4025614857673645,1.6275020837783811,0.6661754846572876,4493\n2880A,104.0238889,30.65638889,20170930,29.12962962962963,3675.0,4892.0,803746.9170220399,115039.39093408744,500,1.4670321941375732,152.98287963867188,295.521484375,95537.3203125,0.0005874634953215,153.1845703125,-1.1798638297477735e-05,76.39317321777344,0.6665120124816895,-1.3068838119506836,0.7369768619537354,4563\n2881A,107.89083329999998,26.53111111,20170930,21.57692307692308,4335.0,5511.0,1210293.5088867254,-330113.20051334886,708,0.7299890518188477,230.16380310058597,294.99810791015625,91321.7734375,0.0031846892088651,264.6084899902344,-8.806036930764094e-06,86.56169128417969,-0.5605311989784241,0.4676417410373688,0.566178023815155,2824\n2882A,102.5389,24.3702,20170930,23.33333333333333,4681.0,4654.0,728485.1700804548,-633913.3448525863,1628,1.064175724983215,197.2480926513672,291.4254150390625,81213.484375,0.0030766485724598,137.32403564453125,-7.528804871981265e-06,87.27236938476562,-0.3155295252799988,1.016322374343872,0.2902973294258117,3811\n2883A,102.5381,24.339,20170930,15.535714285714285,4686.0,4654.0,728685.8193106373,-637533.3061231826,1658,1.025503158569336,196.92898559570312,291.6039733886719,81605.7578125,0.0030005110893398,128.5704803466797,-6.85037275616196e-06,87.31156158447266,-0.298603743314743,0.9810670018196106,0.2882856726646423,3553\n2884A,98.26722222,39.79777778,20170930,15.555555555555555,2212.0,3971.0,254677.89594998068,1185827.2507588917,1661,1.6677387952804563,19.729066848754883,290.8594055175781,82400.390625,9.667737322160974e-05,131.90264892578125,-6.370546543621458e-06,34.37809371948242,0.5629675984382629,1.5698472261428833,0.2363277673721313,2099\n2885A,104.9338889,33.38256667,20170930,14.410714285714285,3239.0,5037.0,851610.3654790637,447422.7774370156,1090,0.4511730670928955,241.0714263916016,288.65997314453125,82751.7109375,0.0018194043077528,196.1978759765625,-4.841732334170956e-06,81.51345825195312,-0.3948703706264496,0.2182533740997314,0.4058957695960998,3331\n2897A,123.2444,41.7347,20170930,17.82,1903.0,7967.0,2104767.195965945,1722779.6386817717,34,1.8778111934661863,186.60333251953125,290.1864624023437,100839.453125,0.0024838999379426,222.62684631347656,-8.785123100096826e-06,61.71954727172852,-0.2159323096275329,1.8653546571731567,0.5416616797447205,3715\n2900A,123.5953,41.9086,20170930,17.37037037037037,1875.0,8023.0,2124075.7158585014,1750716.53853804,115,1.969439148902893,190.46853637695312,289.8031921386719,100340.609375,0.0027076019905507,220.0053253173828,-9.542156476527452e-06,66.0361328125,-0.3578278720378876,1.9366594552993772,0.4657860398292541,7016\n2902A,106.6351,30.4865,20170930,19.928571428571427,3702.0,5310.0,1037749.2608323618,119386.48895530666,280,1.2176637649536133,334.2255249023437,295.9807434082031,97404.890625,0.0024745953269302,125.42623138427734,-1.0726539585448336e-05,82.87324523925781,-0.5295636057853699,-1.0964795351028442,0.9573752880096436,2458\n2907A,120.1844,30.8596,20170930,31.48148148148148,3643.0,7477.0,2215647.5058323774,387830.3679983562,2,1.6740972995758057,286.4451904296875,296.6485290527344,100953.3203125,0.0026145987212657,376.0415954589844,-5.388759382185526e-05,80.65193939208984,-1.6056376695632937,-0.4738451540470123,0.7510795593261719,4671\n2914A,106.7513889,31.87888889,20170930,16.673076923076927,3479.0,5328.0,1028245.8863392676,285604.8765941715,467,1.003373384475708,335.9808044433594,294.3182067871094,94630.984375,0.0044370386749506,108.5312728881836,-7.610874945385149e-06,78.60057067871094,-0.4084894955158233,-0.9164575934410096,0.6667887568473816,4370\n2915A,106.76194440000002,31.85805556,20170930,10.535714285714286,3483.0,5330.0,1029462.66351717,283241.25325802393,384,1.0242412090301514,334.31610107421875,294.4679870605469,94962.5390625,0.0045328326523303,112.2032241821289,-7.998405635589734e-06,78.72489166259766,-0.4439851343631744,-0.9230099320411682,0.6753712296485901,2420\n2916A,117.49,30.66,20170930,44.33333333333334,3674.0,7046.0,1988409.075092602,307093.6486874018,15,1.595788598060608,307.3114929199219,296.2138366699219,100470.6953125,0.0030284121166914,204.0323638916016,-2.280571425217204e-05,83.34375,-1.269276738166809,-0.9672009348869324,0.7794007062911987,3891\n2919A,116.7022,39.5453,20170930,39.160714285714285,2253.0,6920.0,1685006.4752629618,1337645.9627145596,17,1.7919913530349731,183.32069396972656,295.3993835449219,100964.4375,8.666985377203673e-05,124.86872100830078,-1.1454335435701068e-05,51.20330429077149,-0.1037957072257995,1.7889827489852903,0.8009015917778015,3465\n2920A,117.7116,24.506,20170930,31.125,4659.0,7082.0,2173656.1557082934,-393756.70225935976,8,0.7557366490364075,262.0509948730469,299.8056640625,100248.3046875,0.001519854646176,142.775390625,-1.2315495041548274e-05,84.47148895263672,-0.7484707832336426,0.1045439019799232,0.3896187245845794,2725\n2921A,120.7789,30.0033,20170930,31.42857142857143,3780.0,7573.0,2293195.1883635777,302947.3186401934,12,1.1252888441085815,294.9522705078125,297.4723205566406,100405.828125,0.0030811293981969,362.7036437988281,-2.0618521375581626e-05,79.78302764892578,-1.0202819108963013,-0.4746575355529785,0.6106064915657043,5658\n2922A,117.1941,39.1067,20170930,36.69642857142857,2323.0,6999.0,1734525.7753908678,1294079.1848277731,8,2.179795742034912,186.56344604492188,295.752685546875,101114.1796875,0.0001489361311541,170.82981872558594,-2.7656886231852692e-05,54.70767593383789,-0.2491504400968551,2.1655099391937256,0.6974897980690002,2895\n2923A,113.2803,40.1114,20170930,33.589285714285715,2162.0,6373.0,1409915.8021746164,1351386.2358875864,1066,1.1898901462554932,82.36672973632812,288.5405578613281,88216.375,0.0005459928652271,91.80257415771484,-7.028160780464532e-06,51.169410705566406,1.1793392896652222,0.1581054627895355,0.333322137594223,2173\n2924A,106.2275,38.44139000000001,20170930,25.5,2429.0,5244.0,892274.966747524,1067379.4181972705,1111,0.6023820042610168,30.992372512817383,293.3291931152344,88377.390625,0.0001436871098121,186.8320770263672,-7.609651220263913e-06,42.03083038330078,0.3101726770401001,0.5163884162902832,0.317820131778717,2937\n2925A,106.2739,38.4841,20170930,32.785714285714285,2423.0,5252.0,895351.3301972945,1072964.5456331605,1110,0.5685268044471741,24.48154830932617,292.896240234375,87895.0,0.0001551362511236,173.77999877929688,-7.329126674449071e-06,42.07471084594727,0.235591173171997,0.51741623878479,0.3360277414321899,3478\n2926A,106.1024,38.49494,20170930,41.0,2421.0,5224.0,881640.8641720997,1072724.3442988973,1119,0.4422082901000976,55.880184173583984,293.3730773925781,88607.8515625,0.000257693696767,210.29331970214844,-7.748461030132603e-06,43.0418815612793,0.3660822212696075,0.2480563968420028,0.2508302628993988,3207\n2929A,114.8858,30.4519,20170930,23.96296296296296,3708.0,6630.0,1766508.1856830276,233121.04938346145,28,0.8764379024505615,294.5352478027344,296.8625183105469,100741.1953125,0.0019877790473401,177.99073791503906,-3.314845162094571e-05,78.7413558959961,-0.7973223328590393,-0.363896369934082,0.8166545629501343,3507\n2994A,119.6533,29.1128,20170930,26.160714285714285,3922.0,7393.0,2221461.6132628853,174875.0953181152,52,1.102914810180664,290.6768798828125,298.6663818359375,99264.5234375,0.0016344212926924,337.3489685058594,-1.780908860382624e-05,71.87979888916016,-1.0318944454193115,-0.3893776834011078,0.5689943432807922,3476\n2996A,118.283,33.965,20170930,32.75,3146.0,7173.0,1964301.6110286769,708213.1689524583,26,1.5048362016677856,254.916259765625,294.5200500488281,101022.7578125,0.0026394920423626,223.48361206054688,-3.002613993885461e-05,75.73957061767578,-1.4529742002487185,0.3916603922843933,0.6660746932029724,5278\n2997A,119.8767,32.3292,20170930,27.85185185185185,3407.0,7428.0,2145171.0812418,550960.37358467,5,1.2800076007843018,271.7955017089844,294.8388061523437,101187.9609375,0.0049634957686066,232.492919921875,-2.2789045033277944e-05,79.44833374023438,-1.2793810367584229,-0.0400452315807342,0.7061233520507812,3848\n3000A,119.3581,34.6972,20170930,23.23214285714285,3029.0,7345.0,2031531.281837787,815727.3956311601,13,1.6065458059310913,236.78103637695312,295.1472473144531,100721.609375,0.0018459147540852,353.6606750488281,-7.243532309075817e-05,74.45819854736328,-1.3439834117889404,0.8801693916320801,0.5647323727607727,4684\n3002A,119.9736,31.8108,20170930,25.035714285714285,3490.0,7444.0,2168947.6265050475,493025.053563931,4,1.4368369579315186,269.1680603027344,295.4514465332031,101208.875,0.0037274423521012,264.671875,-2.6230922230752185e-05,79.64280700683594,-1.436684489250183,0.0209279470145702,0.6916074156761169,3712\n3003A,120.0469,31.7694,20170930,28.19642857142857,3497.0,7455.0,2176423.7920420617,489854.5872813656,4,1.4788650274276731,268.8992919921875,295.55145263671875,101223.953125,0.0037003001198172,272.7016906738281,-2.5655290301074277e-05,79.71094512939453,-1.4785908460617063,0.0284763071686029,0.6633113026618958,3399\n3004A,120.1631,33.3681,20170930,21.48214285714285,3241.0,7474.0,2137755.004026697,677833.3790711238,2,1.1611089706420898,260.38507080078125,294.3070983886719,101278.21875,0.0045663532800972,241.7109375,-1.60477684403304e-05,77.47542572021484,-1.1447902917861938,0.1939826309680938,0.5889669060707092,3832\n3005A,117.1814,34.29,20170930,37.33928571428572,3094.0,6997.0,1864226.9747644283,724850.9935256287,38,1.331107258796692,238.6130828857422,294.68487548828125,100841.359375,0.0025129301939159,182.45016479492188,-1.625148070161231e-05,74.97290802001953,-1.1363049745559692,0.6932946443557739,0.7096887230873108,2768\n3006A,117.1694,34.1781,20170930,39.83928571428572,3112.0,6995.0,1866251.4310956253,711484.3094827278,37,1.3113157749176023,239.36441040039065,294.6376953125,100739.53125,0.0027822481933981,180.3157196044922,-1.5361492842203006e-05,75.27854919433594,-1.1282691955566406,0.6682495474815369,0.6873772740364075,3437\n3009A,119.1478,34.5911,20170930,25.98214285714285,3046.0,7312.0,2017461.076489504,798985.804565537,4,1.2217618227005005,237.7570343017578,294.5198974609375,101160.7734375,0.0016728538321331,253.18991088867188,-2.570554715930484e-05,75.21751403808594,-1.0333386659622192,0.6518535614013672,0.5969316959381104,2802\n3010A,119.8914,31.7897,20170930,28.642857142857142,3494.0,7431.0,2162594.6179894987,488770.7378857089,5,1.459863543510437,269.5943298339844,295.4828491210937,101160.671875,0.003587068291381,262.76617431640625,-2.7767857318394817e-05,79.72917175292969,-1.4598264694213867,0.0104034123942255,0.6998991966247559,3628\n3012A,112.1908,31.033890000000003,20170930,26.964285714285715,3615.0,6199.0,1517675.092779601,256208.56583875397,117,1.5287641286849976,355.52496337890625,295.22711181640625,99757.140625,0.0027567218057811,188.4813537597656,-2.229593155789189e-05,81.38645935058594,-0.1194182410836219,-1.5240927934646606,0.9404959082603456,3974\n3014A,106.4959,29.53675,20170930,19.482142857142858,3854.0,5287.0,1038568.1581661162,5809.29406402511,314,0.9796823263168336,176.2725830078125,296.9882507324219,97240.6875,0.0014237262075766,163.57057189941406,-1.634767795621883e-05,78.601318359375,0.0637777298688888,-0.9776041507720948,0.995952606201172,2282\n3015A,106.4042,29.57278,20170930,23.017857142857142,3848.0,5273.0,1029826.0207027274,9090.64838878878,499,1.1136696338653564,174.45802307128906,296.7651062011719,97062.6796875,0.0014025167329236,161.11306762695312,-1.612989217392169e-05,79.30309295654297,0.1076523438096046,-1.108454346656799,0.9975537061691284,3378\n3016A,106.5506,29.41569,20170930,18.0,3874.0,5296.0,1045171.510537574,-7873.566676650281,300,0.7831082344055176,175.51283264160156,297.09893798828125,97088.7734375,0.0015255477046594,161.24453735351562,-1.4842869859421626e-05,78.48778533935547,0.0613374039530754,-0.7807023525238037,0.981625497341156,4280\n3018A,111.505,36.10139,20170930,59.615384615384606,2804.0,6089.0,1355861.3706681966,846459.3347168431,435,0.5641005635261536,39.94191360473633,292.6849975585937,94417.8828125,0.0007268511108122,55.65118408203125,-4.782462838193169e-06,68.31057739257812,0.362149715423584,0.4325009286403656,0.4047448635101318,3051\n3020A,117.2099,39.16969,20170930,36.76,2313.0,7002.0,1734019.5582368514,1301837.330725739,6,2.156118869781494,186.8852996826172,295.76824951171875,101137.6875,0.0001695554237812,169.90338134765625,-2.4500246581737883e-05,54.50202941894531,-0.2584719657897949,2.140570163726806,0.697568416595459,3414\n3021A,115.0061,35.76806,20170930,39.981481481481474,2857.0,6649.0,1647996.679322902,860332.1672726582,54,1.4442195892333984,187.5299072265625,295.61016845703125,100608.28125,0.0010666121961548,173.7305908203125,-1.2017731023661328e-05,64.93094635009766,-0.1892497241497039,1.4317662715911863,0.7269710898399353,3995\n3022A,112.4433,34.6686,20170930,55.92857142857143,3033.0,6239.0,1462727.46779515,689351.3964402834,143,0.6174933910369873,207.5052947998047,294.1865234375,98663.3984375,0.0018191441195085,79.67878723144531,-8.325569979206193e-06,73.62017822265625,-0.2851696312427521,0.5477010011672974,0.6548564434051514,2916\n3025A,113.0472,23.63444,20170930,31.60714285714285,4799.0,6336.0,1751404.6744316816,-585921.022676407,13,0.5304981470108032,234.0037384033203,300.3290405273437,100200.078125,0.0034283900167793,97.50360107421876,-1.1861431630677544e-05,81.9719009399414,-0.4291936755180359,0.3118029236793518,0.5859429836273193,4512\n3026A,116.6183,23.65889,20170930,27.089285714285715,4795.0,6907.0,2092209.1438295816,-513293.2883604502,13,0.6760134696960449,255.22802734375,299.5155029296875,100950.359375,0.0033736294135451,139.9475860595703,-2.050500006589573e-05,87.59407806396484,-0.6536633372306824,0.1723904311656952,0.3717176914215088,2416\n3027A,104.7228,29.33972,20170930,47.28571428571429,3886.0,5004.0,881261.78706248,-34748.53283598342,343,0.9547396302223206,359.4599304199219,296.8529052734375,96960.71875,0.0006937537691555,169.9840545654297,-1.6604555639787577e-05,77.3834228515625,-0.0090908017009496,-0.9546963572502136,1.031282901763916,4042\n3028A,104.7778,29.36028,20170930,33.78846153846154,3882.0,5012.0,885988.295839576,-31827.98979666832,335,1.0238240957260132,356.1166381835937,296.9292297363281,97146.3515625,0.0006698730867356,173.640625,-1.6709671399439685e-05,77.51551818847656,-0.0694316998124122,-1.0214670896530151,1.0370985269546509,3852\n3033A,87.4651,43.4569,20170930,12.51851851851852,1627.0,2242.0,-552600.1828837625,1650168.660544224,1720,0.6099453568458557,103.3463897705078,283.8915710449219,81117.140625,0.0008819565409794,178.6591796875,-7.315651146200253e-06,48.955848693847656,0.5934796333312988,-0.1407667994499206,0.1540823280811309,2757\n3034A,113.1076,41.0385,20170930,20.673076923076927,2014.0,6345.0,1376002.5394307673,1460214.014315373,1403,1.749744892120361,73.61531829833984,286.5723876953125,85941.4296875,0.0007536327466368,196.1474609375,-1.175882152892882e-05,50.98445510864258,1.6786681413650513,0.4936401844024658,0.3108103275299072,2018\n3035A,122.0931,46.0707,20170930,9.288461538461537,1209.0,7783.0,1876604.0177418531,2209679.408250803,267,1.093781590461731,68.10482025146484,286.33367919921875,97418.1171875,0.0014435333432629,244.91683959960935,-1.143712506745942e-05,61.34488677978516,1.0148701667785645,0.4079174101352691,0.2859247028827667,3315\n3036A,118.696,37.43445,20170930,37.57142857142857,2591.0,7239.0,1898271.440114092,1123955.0508817427,1,2.1899402141571045,205.9947509765625,295.6326904296875,101254.53125,9.71028712228872e-05,237.3237762451172,-4.757207352668047e-05,58.58786392211914,-0.9597992897033693,1.9684062004089355,0.5785852670669556,2969\n3038A,103.3758,23.3682,20170930,20.946428571428573,4841.0,4788.0,819057.845338697,-743094.9979921847,1303,0.9242976903915404,205.85076904296875,292.9226989746094,85546.328125,0.0047911801375448,140.29620361328125,-4.385262855066685e-06,90.3294677734375,-0.403009295463562,0.8318111300468445,0.3438330590724945,3526\n3039A,111.19,34.7822,20170930,39.92592592592592,3015.0,6038.0,1356372.9934038229,684876.3216941295,380,1.0847694873809814,246.8263702392578,292.765625,95831.3828125,0.0022252476774156,141.2754669189453,-1.0589087651169392e-05,80.48319244384766,-0.997231900691986,0.4269115328788757,0.5260658860206604,2598\n3046A,115.9083,28.6064,20170930,23.55357142857143,4003.0,6793.0,1902242.4380683403,37936.60085744433,28,1.9963645935058596,343.84783935546875,298.908447265625,100946.03125,0.0012348525924608,255.3430328369141,-3.1395789847010747e-05,77.30977630615234,-0.555528998374939,-1.9175138473510744,0.6458659172058105,4119\n3048A,119.58,26.0931,20170930,21.115384615384613,4405.0,7381.0,2303040.1354866754,-171368.037753459,46,1.5724546909332275,297.9207763671875,299.332763671875,99024.7890625,0.0016729603521525,389.837158203125,-7.84207513788715e-05,84.38423156738281,-1.3894593715667725,-0.7362176775932312,0.3081854581832886,7565\n3051A,117.3916,39.1495,20170930,43.98214285714285,2316.0,7031.0,1748515.977900102,1302660.4296679937,4,2.1215713024139404,188.2496490478516,295.582763671875,101147.7109375,0.0001704930036794,179.12063598632812,-2.734482222876977e-05,56.49564743041992,-0.3044072091579437,2.099619150161743,0.7104526162147522,3232\n3054A,113.5922,35.28385,20170930,48.25,2935.0,6423.0,1543984.0765980345,779955.4547595219,77,0.4079146087169647,177.06956481933594,295.5210266113281,100050.5859375,0.000937353936024,77.80014038085938,-6.06445655648713e-06,65.75057983398438,0.0208908468484878,-0.4073792994022369,0.6299414038658142,5707\n3057A,121.5992,37.4014,20170930,20.892857142857142,2596.0,7704.0,2126530.1667783465,1179535.8198159104,17,1.4392772912979126,5.025343894958496,294.2705383300781,100861.421875,0.000407722312957,280.6423034667969,-6.394793308572844e-05,72.84649658203125,0.1260710209608078,1.4337451457977295,0.4884900152683258,4227\n3058A,119.2654,42.0352,20170930,23.589285714285715,1854.0,7330.0,1805833.1047941868,1679047.8869690292,524,2.0825374126434326,22.97675132751465,289.0167541503906,94452.4296875,0.0005704819923266,249.64956665039065,-6.73646854920662e-06,56.79784393310547,0.8129112720489502,1.917325496673584,0.4061006307601928,2782\n3059A,117.7181,36.2092,20170930,37.80357142857143,2787.0,7083.0,1855411.2878743275,960821.0610475764,203,1.0953936576843262,221.53054809570312,293.3712463378906,98542.3984375,0.0004708591150119,162.07003784179688,-8.509017789037898e-06,72.42178344726562,-0.7262495756149292,0.8200297355651855,0.6072547435760498,3994\n3061A,119.7512,49.1577,20170930,7.196428571428571,715.0,7408.0,1623753.6701354482,2533062.3722373745,613,1.525168776512146,58.168338775634766,282.4030456542969,93387.53125,0.001373290666379,347.41473388671875,-1.0574425687082112e-05,63.961544036865234,1.2957613468170166,0.8044514656066895,0.1380617320537567,2808\n3064A,117.6983,36.2211,20170930,27.84615384615385,2785.0,7080.0,1853493.1535279115,961850.0713567542,212,1.09516179561615,219.80044555664065,293.4119873046875,98633.03125,0.0004722501616925,160.44688415527344,-8.641899512440432e-06,72.42259216308594,-0.7010130882263184,0.8414036631584167,0.6333510279655457,3521\n3065A,101.9533,29.9972,20170930,12.333333333333336,3781.0,4561.0,625222.1124472335,21798.38192940672,3047,0.9477724432945251,242.56884765625,279.8399963378906,62988.2734375,0.0027600738685578,187.39048767089844,-8.368376256839838e-06,99.21215057373048,-0.8411956429481506,0.4366491138935089,0.2095261812210083,6370\n3066A,116.2714,37.4372,20170930,38.71153846153846,2590.0,6851.0,1707188.048422795,1079794.575928686,23,2.097768545150757,183.73507690429688,295.84796142578125,100914.25,7.459215703420341e-05,185.2398223876953,-1.0290422324032988e-05,53.699249267578125,-0.1366519331932068,2.093312978744507,0.6365942358970642,4290\n"
  },
  {
    "path": "data/simulated_data.csv",
    "content": "id,u,v,x1,x2,y\n0,0,0,0.28140219,0.425025438,2.771897876\n1,0.5,0,0.971844902,0.876178178,4.139923938\n2,1,0,0.543419374,0.743107327,2.380696706\n3,1.5,0,0.343183774,0.534696195,2.573292847\n4,2,0,0.493780503,0.453839148,3.694790062\n5,2.5,0,0.261281272,0.460323871,4.883756491\n6,3,0,0.337743839,0.024596739,3.671681467\n7,3.5,0,0.116466208,0.138029377,2.402119533\n8,4,0,0.484274955,0.804879411,3.032872515\n9,4.5,0,0.49179653,0.551884663,3.29288893\n10,5,0,0.158573743,0.004707129,2.395205408\n11,5.5,0,0.51264138,0.636406008,4.761096603\n12,6,0,0.09464962,0.069286299,3.230851329\n13,6.5,0,0.519649338,0.842263952,5.014950578\n14,7,0,0.00164651,0.197085206,1.941258446\n15,7.5,0,0.093244802,0.287649939,1.547305406\n16,8,0,0.221847845,0.477137789,2.097505046\n17,8.5,0,0.622468486,0.963786565,4.309616168\n18,9,0,0.807006808,0.343754085,5.43848869\n19,9.5,0,0.070051502,0.62256975,3.84278823\n20,10,0,0.313624141,0.506782648,3.81439522\n21,10.5,0,0.586382352,0.878116872,3.97206102\n22,11,0,0.922903212,0.747859712,3.707304522\n23,11.5,0,0.034728902,0.717285348,2.243850842\n24,12,0,0.600872876,0.517128807,5.037347656\n25,0,0.5,0.588924564,0.723428496,3.966657991\n26,0.5,0.5,0.87194326,0.967180848,4.160528751\n27,1,0.5,0.628493967,0.985926772,1.263689754\n28,1.5,0.5,0.324371174,0.222540034,3.013343049\n29,2,0.5,0.519557884,0.821976754,3.708772987\n30,2.5,0.5,0.146349705,0.170181485,3.58013947\n31,3,0.5,0.427315786,0.761996763,4.590231668\n32,3.5,0.5,0.097990846,0.49407321,2.551734501\n33,4,0.5,0.448181078,0.156291959,2.105744009\n34,4.5,0.5,0.885937482,0.882882696,4.267577186\n35,5,0.5,0.70910089,0.01979666,3.384178166\n36,5.5,0.5,0.371344197,0.92701883,4.215248931\n37,6,0.5,0.746650553,0.423602514,5.288546427\n38,6.5,0.5,0.10724654,0.374801858,3.248469799\n39,7,0.5,0.423328103,0.947772505,3.219772444\n40,7.5,0.5,0.519323638,0.975321712,4.569771713\n41,8,0.5,0.721994625,0.171399253,3.430446973\n42,8.5,0.5,0.663214439,0.417521544,3.286866614\n43,9,0.5,0.624251077,0.413088773,4.108534776\n44,9.5,0.5,0.160436005,0.481541628,4.176465345\n45,10,0.5,0.313849259,0.964511042,4.707936655\n46,10.5,0.5,0.5329846,0.526308721,4.605119664\n47,11,0.5,0.753043277,0.527658993,3.435935716\n48,11.5,0.5,0.153972181,0.73403172,2.633669867\n49,12,0.5,0.596576767,0.320339067,3.133572478\n50,0,1,0.502096095,0.236241878,2.009870197\n51,0.5,1,0.391423412,0.325037978,2.510021296\n52,1,1,0.898545678,0.6788159,4.86769879\n53,1.5,1,0.668656298,0.983747857,5.218774266\n54,2,1,0.714279729,0.813475001,4.841170741\n55,2.5,1,0.634472109,0.4084114,4.934940934\n56,3,1,0.58418948,0.613678733,3.979545435\n57,3.5,1,0.237213832,0.132996281,1.512799148\n58,4,1,0.17985506,0.124857102,1.415011991\n59,4.5,1,0.275426642,0.758803472,3.091734282\n60,5,1,0.897472623,0.521162701,5.017116539\n61,5.5,1,0.480198559,0.163268172,3.897005313\n62,6,1,0.734112813,0.928362868,7.737983894\n63,6.5,1,0.321252053,0.611731619,4.7453646\n64,7,1,0.678349457,0.24616436,3.850579547\n65,7.5,1,0.822894774,0.352450562,4.387937008\n66,8,1,0.60321376,0.685907051,3.644501274\n67,8.5,1,0.912164764,0.763242059,5.239021929\n68,9,1,0,0.927662986,3.89677691\n69,9.5,1,0.754118409,0.526970437,5.492851736\n70,10,1,0.465516068,0.009470654,3.625271576\n71,10.5,1,0.309253284,0.145074918,3.668566935\n72,11,1,0.2665233,0.700544946,4.025701211\n73,11.5,1,0.484877249,0.877683964,3.37908595\n74,12,1,0.683095588,0.163728827,3.810446901\n75,0,1.5,0.395675948,0.218957204,2.629540695\n76,0.5,1.5,0.99700287,0.658153827,4.317985427\n77,1,1.5,0.788136692,0.951135907,6.668987546\n78,1.5,1.5,0.164459154,0.384382054,3.99412117\n79,2,1.5,0.651040989,0.657094352,4.929485982\n80,2.5,1.5,0.974620886,0.161498644,3.845490591\n81,3,1.5,0.081680873,0.253101777,2.409461947\n82,3.5,1.5,0.946853004,0.570373149,4.15869209\n83,4,1.5,0.842098982,0.158801218,2.739543077\n84,4.5,1.5,0.487585901,0.557307544,4.169063322\n85,5,1.5,0.40062599,0.52460161,4.242691488\n86,5.5,1.5,0.470161714,0.925102001,5.889864836\n87,6,1.5,0.034593195,0.188707754,3.650896303\n88,6.5,1.5,0.127064231,0.743416062,4.921580526\n89,7,1.5,0.238300677,0.752985036,5.463058833\n90,7.5,1.5,0.712524109,0.588552325,4.547916206\n91,8,1.5,0.971937187,0.977206564,5.923318744\n92,8.5,1.5,0.100974356,0.238305262,2.52849723\n93,9,1.5,0.52701594,0.30356778,3.114122873\n94,9.5,1.5,0.694901514,0.823965315,5.983423152\n95,10,1.5,0.753799436,0.42174246,5.345767167\n96,10.5,1.5,0.981455196,0.42867654,6.179778601\n97,11,1.5,0.870276061,0.951416444,5.321006331\n98,11.5,1.5,0.257816607,0.370884349,2.702454693\n99,12,1.5,0.828610184,0.41082164,3.865486213\n100,0,2,0.891943124,0.296567907,4.92675062\n101,0.5,2,0.092599489,0.601780065,3.914806159\n102,1,2,0.569854446,0.602664624,5.285925763\n103,1.5,2,0.315495844,0.723624034,4.666205297\n104,2,2,0.538807827,0.715475792,4.389450282\n105,2.5,2,0.630734374,0.528154943,4.385217401\n106,3,2,0.295717427,0.423955561,2.99301685\n107,3.5,2,0.36491474,0.059619196,2.071851672\n108,4,2,0.957475925,0.205636039,4.308600027\n109,4.5,2,0.459851775,0.533974484,4.400023755\n110,5,2,0.227043093,0.602389148,4.662078522\n111,5.5,2,0.607318378,0.534494249,5.440916485\n112,6,2,0.16727603,0.554461585,4.956993123\n113,6.5,2,0.823578401,0.478855956,5.357384289\n114,7,2,0.078494175,0.435381283,3.518626415\n115,7.5,2,0.818655171,0.08434525,4.034822275\n116,8,2,0.495149459,0.073515977,2.39410873\n117,8.5,2,0.744418047,0.581350102,4.327661058\n118,9,2,0.100862696,0.835145098,3.4964261\n119,9.5,2,0.602691758,0.656635654,4.786349598\n120,10,2,0.027364025,0.07807585,2.796055059\n121,10.5,2,0.90793564,0.449188899,5.473084594\n122,11,2,0.194324814,0.330233537,4.318210998\n123,11.5,2,0.204067207,0.213993653,3.686579437\n124,12,2,0.1359872,0.167773316,2.821357233\n125,0,2.5,0.109482232,0.600519005,3.391052706\n126,0.5,2.5,0.639691567,0.063732876,4.602798317\n127,1,2.5,0.39704471,0.820893097,4.618569992\n128,1.5,2.5,0.202845358,0.844654722,4.324912729\n129,2,2.5,0.770128756,0.884746495,5.555703227\n130,2.5,2.5,0.241234401,0.720360742,3.680101107\n131,3,2.5,0.347362532,0.031221719,2.070272069\n132,3.5,2.5,0.481081734,0.747105657,3.65181686\n133,4,2.5,0.300443976,0.642995289,4.139076766\n134,4.5,2.5,0.109263912,0.560362324,3.562427023\n135,5,2.5,0.538546853,0.141977846,4.264330624\n136,5.5,2.5,0.346087622,0.568855402,4.914139787\n137,6,2.5,0.189740107,0.956946152,6.76881123\n138,6.5,2.5,0.514273721,0.019454642,4.436065267\n139,7,2.5,0.967128047,0.815437278,7.842077602\n140,7.5,2.5,0.335839219,0.743831513,4.935889468\n141,8,2.5,0.466887795,0.612168711,4.579788479\n142,8.5,2.5,0.491700503,0.505399549,3.048332485\n143,9,2.5,0.227590716,0.86176654,3.820251109\n144,9.5,2.5,0.221021308,0.7501123,3.960514244\n145,10,2.5,0.317411904,0.923812552,5.29341162\n146,10.5,2.5,0.844184252,0.084010184,4.279963103\n147,11,2.5,0.41481481,0.425496563,4.049188307\n148,11.5,2.5,0.633190729,0.798812224,5.035238824\n149,12,2.5,0.852697562,0.234702488,5.105332094\n150,0,3,0.35736581,0.604126293,3.339380469\n151,0.5,3,0.592222457,0.788330169,5.039923337\n152,1,3,0.20108391,0.549479525,3.549711945\n153,1.5,3,0.949129742,0.75825357,4.813702066\n154,2,3,0.372798396,0.597494974,3.501729115\n155,2.5,3,0.391935617,0.188459014,2.127068745\n156,3,3,0.824501903,0.263765914,3.527174419\n157,3.5,3,0.570984026,0.816697624,5.387827459\n158,4,3,0.869019661,0.718561366,6.116478308\n159,4.5,3,0.004650192,0.724956461,4.485724537\n160,5,3,0.802223882,0.603006706,6.572900535\n161,5.5,3,0.078730886,0.260481839,4.390367422\n162,6,3,0.902199025,0.473377769,6.936928429\n163,6.5,3,0.119285231,0.530753075,5.458832182\n164,7,3,0.445048145,0.616444307,5.645994577\n165,7.5,3,0.592867852,0.417066576,4.195387078\n166,8,3,0.862522461,0.60813197,5.745402799\n167,8.5,3,0.93029144,0.661539576,5.616558093\n168,9,3,0.450560329,0.988154806,5.66152488\n169,9.5,3,0.406266079,0.759728502,3.845473545\n170,10,3,0.976267627,0.156021292,3.826535409\n171,10.5,3,0.968242444,0.137080987,4.471787292\n172,11,3,0.101603884,0.487163915,2.925034744\n173,11.5,3,0.852592924,0.120225046,5.366677705\n174,12,3,0.067004778,0.768078901,5.042912801\n175,0,3.5,0.089682783,0.674269427,2.684660282\n176,0.5,3.5,0.507439095,0.99731726,4.044764198\n177,1,3.5,0.030308996,0.189332353,1.602766598\n178,1.5,3.5,0.777448435,0.118869741,3.060085614\n179,2,3.5,0.308625996,0.106487865,2.190294807\n180,2.5,3.5,0.847937077,0.88804083,5.833384151\n181,3,3.5,0.106268906,0.171467775,2.343813426\n182,3.5,3.5,0.315419068,0.981064053,5.604480656\n183,4,3.5,0.586049443,0.923321457,5.392596057\n184,4.5,3.5,0.011008853,0.741268639,5.290761582\n185,5,3.5,0.802094655,0.194381933,5.412991492\n186,5.5,3.5,0.649423956,0.781528659,8.792355366\n187,6,3.5,0.996510145,0.53571324,7.70074753\n188,6.5,3.5,0.972743339,0.060533402,5.978182443\n189,7,3.5,0.427195413,0.305872921,4.050156464\n190,7.5,3.5,0.158240947,0.185759356,3.881927827\n191,8,3.5,0.951979183,0.596629569,5.745126057\n192,8.5,3.5,0.072612198,0.426669038,3.333276197\n193,9,3.5,0.6641126,0.332057232,3.603425116\n194,9.5,3.5,0.585420842,0.471676874,3.63974546\n195,10,3.5,0.704321991,0.404692925,3.745116875\n196,10.5,3.5,0.264091751,0.670269742,3.547081961\n197,11,3.5,0.008990776,0.985451037,3.283350229\n198,11.5,3.5,0.119985564,0.495361532,2.278051303\n199,12,3.5,0.446543995,0.378111503,3.285516993\n200,0,4,0.246039933,0.911236535,2.431117174\n201,0.5,4,0.472716658,0.461275169,2.520027065\n202,1,4,0.897432584,0.715692379,4.007685817\n203,1.5,4,0.86899716,0.814185824,4.857891535\n204,2,4,0.18562949,0.788824422,4.307642212\n205,2.5,4,0.664202871,0.16017442,2.752831362\n206,3,4,0.298089435,0.901465346,5.303749055\n207,3.5,4,0.057996895,0.264956014,2.737041195\n208,4,4,0.651586312,0.913223274,7.357792686\n209,4.5,4,0.09492023,0.481615098,4.757719355\n210,5,4,0.483514096,0.926776293,8.046087779\n211,5.5,4,0.069813184,0.714689184,6.581745827\n212,6,4,0.042061443,0.791879115,5.959115894\n213,6.5,4,0.079580248,0.287790374,3.862046285\n214,7,4,0.585200712,0.330430861,5.587401537\n215,7.5,4,0.457563386,0.79091828,6.416635579\n216,8,4,0.200254523,0.783414734,5.526233014\n217,8.5,4,0.80136728,0.867002482,6.356875474\n218,9,4,0.814098224,0.773790898,7.440070234\n219,9.5,4,0.758493587,0.636366389,4.602667717\n220,10,4,0.962580478,0.139469479,3.775494886\n221,10.5,4,0.731651644,0.178557344,2.72520489\n222,11,4,0.308494489,0.763310023,3.15835444\n223,11.5,4,0.28307341,0.6049136,2.748536161\n224,12,4,0.993763803,0.445483041,4.56420383\n225,0,4.5,0.861885477,0.3001269,2.523978236\n226,0.5,4.5,0.910404457,0.152873058,3.304714904\n227,1,4.5,0.343072766,0.233229395,2.388650249\n228,1.5,4.5,0.378284339,0.633143901,4.411126392\n229,2,4.5,0.247520139,0.776629745,3.829483544\n230,2.5,4.5,0.993599468,0.14482174,4.937095179\n231,3,4.5,0.607994983,0.328470992,4.266089723\n232,3.5,4.5,0.520921973,0.408124302,5.420850982\n233,4,4.5,0.252689367,0.627065485,5.777770469\n234,4.5,4.5,0.943387013,0.067154562,5.341021799\n235,5,4.5,0.155335884,0.984017259,7.601992502\n236,5.5,4.5,0.602189344,0.34145636,6.267636905\n237,6,4.5,0.507371629,0.534599907,6.176239713\n238,6.5,4.5,0.39926267,0.540602612,6.492296382\n239,7,4.5,0.270172658,0.571712859,6.483551643\n240,7.5,4.5,0.96231531,0.7255047,7.96700599\n241,8,4.5,0.353987634,0.206074986,4.391599429\n242,8.5,4.5,0.975063935,0.661267339,7.43885254\n243,9,4.5,0.438657029,0.526036825,5.217605588\n244,9.5,4.5,0.586727043,0.390664143,5.305876162\n245,10,4.5,0.640692064,0.98221448,5.766336105\n246,10.5,4.5,0.347567905,0.639807649,4.48448431\n247,11,4.5,0.972622994,0.765213031,5.614689059\n248,11.5,4.5,0.850197556,0.524856248,3.741489527\n249,12,4.5,0.440940139,0.595440195,2.398740944\n250,0,5,0.436503896,0.025408343,2.671537163\n251,0.5,5,0.957881716,0.545984156,5.322770574\n252,1,5,0.301375092,0.167983296,3.404481654\n253,1.5,5,0.229256871,0.468923561,4.229961043\n254,2,5,0.043771916,0.194133201,2.813201038\n255,2.5,5,0.711104462,0.236023264,4.237080726\n256,3,5,0.869952091,0.419785135,5.970592636\n257,3.5,5,0.264384947,0.102211706,3.644683899\n258,4,5,0.543363262,0.781102817,6.400001426\n259,4.5,5,0.053031182,0.775644046,5.875193262\n260,5,5,0.301080828,0.955356165,7.497626628\n261,5.5,5,0.34855686,0.22544334,5.084314434\n262,6,5,0.108822063,0.409795149,5.266332072\n263,6.5,5,0.339873827,0.794377039,7.620505616\n264,7,5,0.720236962,0.384736231,6.419516188\n265,7.5,5,0.104088973,0.308762999,4.209243222\n266,8,5,0.739762348,0.827194277,8.107041196\n267,8.5,5,0.375306039,0.213151999,4.618244405\n268,9,5,0.215731485,0.115688969,3.80796162\n269,9.5,5,0.055607172,0.55526165,4.706534506\n270,10,5,0.690326748,0.90294685,6.213973728\n271,10.5,5,0.014511613,0.235843834,3.420885272\n272,11,5,0.301317644,0.02610691,2.832109195\n273,11.5,5,0.438951332,0.703431093,4.115222044\n274,12,5,0.028659736,0.065995443,1.87264114\n275,0,5.5,0.871016587,0.401046643,5.514492632\n276,0.5,5.5,0.068253446,0.569952294,2.895799132\n277,1,5.5,0.008964646,0.782496895,4.919773346\n278,1.5,5.5,0.063749635,0.353363353,3.694796019\n279,2,5.5,0.826845552,0.953334181,7.494823014\n280,2.5,5.5,0.867532991,0.197330008,4.200020335\n281,3,5.5,0.75648124,0.94416944,9.433944867\n282,3.5,5.5,0.162422822,0.335520958,4.57774917\n283,4,5.5,0.041455013,0.247724887,3.75838475\n284,4.5,5.5,0.853484077,0.430484668,6.680837696\n285,5,5.5,0.98541189,0.513902863,7.432225922\n286,5.5,5.5,0.921125741,0.405616301,5.962816091\n287,6,5.5,0.978518363,0.912247403,11.33460112\n288,6.5,5.5,0.655798065,0.241427199,5.070269092\n289,7,5.5,0.838822945,0.046546204,5.594488208\n290,7.5,5.5,0.470145439,0.349289904,5.88771303\n291,8,5.5,0.984973376,0.350812886,7.06796878\n292,8.5,5.5,0.857091516,0.088397124,5.951834897\n293,9,5.5,0.299534195,0.964447539,6.927077696\n294,9.5,5.5,0.068238301,0.906386827,5.466220491\n295,10,5.5,0.096177445,0.922300359,6.099541355\n296,10.5,5.5,0.424959404,0.722259828,5.966449032\n297,11,5.5,0.748874034,0.560442703,4.681279777\n298,11.5,5.5,0.262482098,0.103150343,3.415005276\n299,12,5.5,0.433692472,0.531796797,4.326145642\n300,0,6,0.583251193,0.945535337,4.674320864\n301,0.5,6,0.318659844,0.147721827,3.698884095\n302,1,6,0.381448752,0.138396604,3.972797607\n303,1.5,6,0.401860227,0.413288796,5.398900025\n304,2,6,0.480902083,0.745463102,6.350895647\n305,2.5,6,0.517349592,0.952161221,8.051305673\n306,3,6,0.148874401,0.490120888,4.541114453\n307,3.5,6,0.481009323,0.627100644,7.072468008\n308,4,6,0.98568012,0.300107287,6.250374261\n309,4.5,6,0.280151948,0.962716398,8.031638886\n310,5,6,0.796216615,0.83223777,8.268513975\n311,5.5,6,0.542595995,0.638785207,7.291834508\n312,6,6,0.877252826,0.202035461,5.412308982\n313,6.5,6,0.441868145,0.560180781,6.089611067\n314,7,6,0.730641966,0.454791866,6.768906337\n315,7.5,6,0.304069763,0.22199047,4.829413577\n316,8,6,0.447347792,0.92013066,8.625733174\n317,8.5,6,0.755083364,0.411156003,6.950936113\n318,9,6,0.629033615,0.726577976,7.144531431\n319,9.5,6,0.011123416,0.369614571,5.06464714\n320,10,6,0.918501296,0.859845785,8.07361088\n321,10.5,6,0.187736958,0.222055583,3.495512991\n322,11,6,0.781666378,0.806991562,6.910326157\n323,11.5,6,0.77651019,0.736853009,6.188306704\n324,12,6,0.567309161,0.902145846,5.686205043\n325,0,6.5,0.074033219,0.933082534,4.031906974\n326,0.5,6.5,0.883719152,0.155114047,5.057484907\n327,1,6.5,0.206111419,0.561972597,4.093950021\n328,1.5,6.5,0.855100798,0.976792661,7.937629748\n329,2,6.5,0.953679437,0.83990608,6.759256513\n330,2.5,6.5,0.86054675,0.595740164,6.656061565\n331,3,6.5,0.415621168,0.60042579,5.555309336\n332,3.5,6.5,0.285636106,0.77163151,6.784408954\n333,4,6.5,0.159625566,0.722457936,7.421050633\n334,4.5,6.5,0.522435602,0.533155754,5.879044275\n335,5,6.5,0.393255524,0.969814608,8.63631769\n336,5.5,6.5,0.465848779,0.090967373,5.085687761\n337,6,6.5,0.923753911,0.688178923,8.397147018\n338,6.5,6.5,0.985634933,0.538339373,6.770670257\n339,7,6.5,0.124655,0.213308185,3.810751116\n340,7.5,6.5,0.845750169,0.999133618,8.77958954\n341,8,6.5,0.16985268,0.206857823,4.267672852\n342,8.5,6.5,0.754203279,0.071068042,4.695705556\n343,9,6.5,0.732032183,0.168164126,4.865226771\n344,9.5,6.5,0.655350332,0.122008228,4.845335473\n345,10,6.5,0.149118989,0.260248198,4.417700968\n346,10.5,6.5,0.91193657,0.347429189,5.86464804\n347,11,6.5,0.771364697,0.862166228,6.49434182\n348,11.5,6.5,0.253212963,0.487475938,4.018811071\n349,12,6.5,0.819194847,0.652178451,4.996985463\n350,0,7,0.441290712,0.439917364,2.747734685\n351,0.5,7,0.039616111,0.547251369,3.128822609\n352,1,7,0.912522559,0.937276394,5.368878543\n353,1.5,7,0.685993712,0.601439119,4.799517906\n354,2,7,0.051572768,0.774432514,5.326691256\n355,2.5,7,0.197009019,0.815808046,5.568466351\n356,3,7,0.099350515,0.252152137,4.037871804\n357,3.5,7,0.40507452,0.280974312,4.805672979\n358,4,7,0.766332246,0.445436312,7.215923886\n359,4.5,7,0.934476939,0.972479214,8.416360861\n360,5,7,0.080448404,0.968898841,7.474042417\n361,5.5,7,0.054299595,0.747305311,5.838746919\n362,6,7,0.669307572,0.35287294,6.452174314\n363,6.5,7,0.465564633,0.850801459,7.290395583\n364,7,7,0.776309956,0.460976496,7.042419309\n365,7.5,7,0.459037301,0.751058057,7.2540588\n366,8,7,0.809217363,0.887634285,8.821656972\n367,8.5,7,0.529585931,0.76936831,7.627097252\n368,9,7,0.955165999,0.347151748,5.995631328\n369,9.5,7,0.831356258,0.902050827,6.533036298\n370,10,7,0.148915858,0.346918773,3.580931648\n371,10.5,7,0.324456951,0.940139252,5.351423304\n372,11,7,0.124625308,0.142484791,2.881244155\n373,11.5,7,0.484617518,0.888814977,4.756628291\n374,12,7,0.560534127,0.483614343,4.680016423\n375,0,7.5,0.960414422,0.510548474,3.900944963\n376,0.5,7.5,0.490222907,0.385053162,3.367240347\n377,1,7.5,0.5307043,0.99437149,4.322213974\n378,1.5,7.5,0.675046487,0.90429486,5.499544174\n379,2,7.5,0.508548398,0.581937253,4.431577182\n380,2.5,7.5,0.346506801,0.866694572,5.019153138\n381,3,7.5,0.984787369,0.787962807,6.840942897\n382,3.5,7.5,0.852715087,0.402539173,5.54543513\n383,4,7.5,0.164609233,0.746881603,5.813580067\n384,4.5,7.5,0.31799814,0.625915905,5.663399017\n385,5,7.5,0.211673362,0.163052797,4.369949561\n386,5.5,7.5,0.98520539,0.262022077,6.071218598\n387,6,7.5,0.232548783,0.496669926,4.693838995\n388,6.5,7.5,0.859500698,1,9.49290303\n389,7,7.5,0.109663777,0.129262832,3.836400748\n390,7.5,7.5,0.450841108,0.476198116,5.499573645\n391,8,7.5,0.663385887,0.596898057,6.59790418\n392,8.5,7.5,0.403607432,0.705787974,5.559793008\n393,9,7.5,0.86333778,0.683054623,6.347499963\n394,9.5,7.5,0.311887554,0.072157732,3.184428747\n395,10,7.5,0.040665164,0.124413798,2.24138951\n396,10.5,7.5,0.355580737,0.39854484,3.934129898\n397,11,7.5,0.381355265,0.14181659,2.591933981\n398,11.5,7.5,0.858002409,0.001929028,2.760384899\n399,12,7.5,0.527877294,0.504778007,2.797403178\n400,0,8,0.086429712,0.527876572,1.88311292\n401,0.5,8,0.486538746,0.623335903,2.148863523\n402,1,8,0.400954441,0.704410998,3.840695284\n403,1.5,8,0.410702102,0.160400943,2.492195029\n404,2,8,0.757338464,0.201563478,3.582105173\n405,2.5,8,0.240108649,0.37749002,2.984258878\n406,3,8,0.977917801,0.063391628,4.092951991\n407,3.5,8,0.006110706,0.346398211,3.439243225\n408,4,8,0.640197526,0.066419878,3.671039281\n409,4.5,8,0.83670238,0.361155608,5.993732411\n410,5,8,0.129545568,0.226053713,4.000556062\n411,5.5,8,0.455236388,0.720917159,6.225506856\n412,6,8,0.842499239,0.471987279,6.533742271\n413,6.5,8,0.422969516,0.037928622,4.307129736\n414,7,8,0.728273077,0.347643312,5.998805311\n415,7.5,8,0.065642284,0.660548579,4.437015277\n416,8,8,0.037272441,0.443236742,4.36726358\n417,8.5,8,0.571401147,0.95723215,6.654309715\n418,9,8,0.136006458,0.661535885,4.723225317\n419,9.5,8,0.405415899,0.404960564,3.973301389\n420,10,8,0.349978951,0.516877111,3.935618505\n421,10.5,8,0.252631487,0.021236938,1.285688248\n422,11,8,0.611956294,0.520251554,3.397919451\n423,11.5,8,0.221792807,0.07794389,1.605507451\n424,12,8,0.381614623,0.034018705,2.23586561\n425,0,8.5,0.042259467,0.753996829,2.794242494\n426,0.5,8.5,0.057081609,0.00881184,2.234357701\n427,1,8.5,0.169950402,0.762370263,3.008598699\n428,1.5,8.5,0.807503771,0.936647755,4.048984562\n429,2,8.5,0.808237121,0.35773865,2.742127537\n430,2.5,8.5,0.135834321,0.844835346,4.149007294\n431,3,8.5,0.810424801,0.995580263,5.669575145\n432,3.5,8.5,0.846904886,0.616965892,6.126247748\n433,4,8.5,0.888919285,0.388129258,5.956096095\n434,4.5,8.5,0.345550244,0.184877224,3.504095943\n435,5,8.5,0.075845705,0.224165355,3.735679496\n436,5.5,8.5,0.381512261,0.037905165,3.910260971\n437,6,8.5,0.525924588,0.442626037,6.080953947\n438,6.5,8.5,0.792731943,0.121606592,5.069092958\n439,7,8.5,0.318840662,0.49287843,5.544414675\n440,7.5,8.5,0.416227721,0.977640838,6.646412543\n441,8,8.5,0.909341289,0.000835065,4.440721835\n442,8.5,8.5,0.154758811,0.054762358,2.237159322\n443,9,8.5,0.843933439,0.053572152,2.945192815\n444,9.5,8.5,0.724305415,0.516420666,4.765034919\n445,10,8.5,0.304950473,0.83124872,4.158756854\n446,10.5,8.5,0.53747417,0.169924254,2.817293976\n447,11,8.5,0.78108879,0.7339103,4.963834878\n448,11.5,8.5,0.198976576,0.049169428,2.286334257\n449,12,8.5,0.809609529,0.676427312,5.227726604\n450,0,9,0.249030283,0.781679039,4.20668935\n451,0.5,9,0.02379543,0.005611415,2.682307181\n452,1,9,0.490439132,0.425595627,4.125731419\n453,1.5,9,0.196747377,0.64976856,3.05492768\n454,2,9,0.327857775,0.401012209,2.853014144\n455,2.5,9,0.293960081,0.452267296,2.55552709\n456,3,9,0.604602238,0.253216336,2.577051821\n457,3.5,9,0.112444541,0.658715949,3.446216799\n458,4,9,0.509265669,0.174314867,3.457919576\n459,4.5,9,0.35618221,0.936251164,7.074716577\n460,5,9,0.69639861,0.564486099,6.376740638\n461,5.5,9,0.301807798,0.461679849,5.580358488\n462,6,9,0.467904156,0.496526721,5.546511318\n463,6.5,9,0.760699621,0.588490239,7.710679938\n464,7,9,0.287452115,0.153733983,3.943760944\n465,7.5,9,0.28507213,0.648799581,5.53611151\n466,8,9,0.671839828,0.22393395,3.698454899\n467,8.5,9,0.997971688,0.294924331,4.648074728\n468,9,9,0.906435249,0.474683498,5.388268244\n469,9.5,9,0.363280919,0.704126694,4.042657559\n470,10,9,0.58260082,0.091554142,2.630408224\n471,10.5,9,0.24482493,0.820801039,3.243895178\n472,11,9,0.203944018,0.736037814,3.263232304\n473,11.5,9,0.217229245,0.735338601,4.379907369\n474,12,9,0.260569006,0.379822886,3.400656421\n475,0,9.5,0.242908125,0.430975028,3.849885797\n476,0.5,9.5,0.973633516,0.127764317,5.517947476\n477,1,9.5,0.477117678,0.199563579,3.970261085\n478,1.5,9.5,0.095776943,0.825028932,4.548926884\n479,2,9.5,0.898159194,0.959517829,6.227401231\n480,2.5,9.5,0.323609304,0.423000798,2.49681401\n481,3,9.5,0.25663121,0.181897758,1.576410888\n482,3.5,9.5,0.975393725,0.330573762,3.762238238\n483,4,9.5,0.737703479,0.768310386,5.467370789\n484,4.5,9.5,0.656634009,0.162481431,3.833862474\n485,5,9.5,0.437602584,0.270080328,4.237829114\n486,5.5,9.5,0.175846092,0.871023189,7.111222794\n487,6,9.5,0.764117287,0.304200759,6.259419682\n488,6.5,9.5,0.586219788,0.787543534,7.39982575\n489,7,9.5,0.046717255,0.382421565,3.658426212\n490,7.5,9.5,0.244397468,0.003920657,2.11855657\n491,8,9.5,0.984346365,0.269161528,3.655101937\n492,8.5,9.5,0.725508978,0.349134667,3.780020975\n493,9,9.5,0.707258401,0.198884893,3.447862669\n494,9.5,9.5,0.676907289,0.692130016,4.643321128\n495,10,9.5,0.480656812,0.71323287,4.31768935\n496,10.5,9.5,0.235300475,0.559098869,3.778886757\n497,11,9.5,0.364015426,0.387688614,5.10804488\n498,11.5,9.5,0.328933835,0.921495927,4.443875895\n499,12,9.5,0.144166015,0.126683812,3.401377022\n500,0,10,0.536999612,0.088690977,3.487692341\n501,0.5,10,0.009373205,0.844289522,3.624995146\n502,1,10,0.983223643,0.702809415,5.883498273\n503,1.5,10,0.568145968,0.20618636,4.287319686\n504,2,10,0.755833589,0.917192023,6.442310078\n505,2.5,10,0.097780678,0.441362595,2.250438852\n506,3,10,0.946014077,0.779715936,4.851324098\n507,3.5,10,0.767575133,0.166277868,3.079060762\n508,4,10,0.922601995,0.3271999,4.439702052\n509,4.5,10,0.245550549,0.003911075,2.538876362\n510,5,10,0.569721527,0.135334049,3.930139604\n511,5.5,10,0.318721852,0.173948051,3.84640703\n512,6,10,0.404192704,0.366516822,5.040751241\n513,6.5,10,0.388325293,0.20871077,4.112642912\n514,7,10,0.895638133,0.303452619,4.760791356\n515,7.5,10,0.024241027,0.487144309,3.348399962\n516,8,10,0.524515338,0.998976845,4.888057664\n517,8.5,10,0.930693291,0.570368271,4.507037881\n518,9,10,0.17337325,0.372996267,2.632848406\n519,9.5,10,0.420807103,0.955106905,5.733531552\n520,10,10,0.791452937,0.191430248,4.51415676\n521,10.5,10,0.98796397,0.001042992,5.151963196\n522,11,10,0.883006482,0.188375005,6.172580524\n523,11.5,10,0.360902351,0.162244913,3.271914617\n524,12,10,0.321770115,0.490596922,3.982851772\n525,0,10.5,0.547776152,0.64613689,2.779471245\n526,0.5,10.5,0.967425159,0.210558775,4.2574525\n527,1,10.5,0.355590653,0.087571888,3.558373194\n528,1.5,10.5,0.614096127,0.742460665,5.151906741\n529,2,10.5,0.929921145,0.725828116,5.698555487\n530,2.5,10.5,0.438174933,0.938598545,5.473347292\n531,3,10.5,0.957950386,0.014775456,3.30437948\n532,3.5,10.5,0.742829465,0.718617471,4.776627546\n533,4,10.5,0.465113451,0.851424559,3.75200524\n534,4.5,10.5,0.481978148,0.58269728,3.97515251\n535,5,10.5,0.419320417,0.637481914,4.866383996\n536,5.5,10.5,0.891055555,0.680095555,6.150332756\n537,6,10.5,0.399794582,0.009154159,4.019061898\n538,6.5,10.5,0.472688505,0.502036143,4.57233541\n539,7,10.5,0.819536325,0.195029827,3.564393891\n540,7.5,10.5,0.467689719,0.852543249,4.651971528\n541,8,10.5,0.359847341,0.07925111,1.794921392\n542,8.5,10.5,1,0.201873296,3.566081317\n543,9,10.5,0.859400741,0.30495259,4.697968254\n544,9.5,10.5,0.452433694,0.44921348,3.532043887\n545,10,10.5,0.443310369,0.278496679,4.447848783\n546,10.5,10.5,0.814606107,0.142435258,5.568184553\n547,11,10.5,0.846586381,0.620064643,4.57728101\n548,11.5,10.5,0.784865925,0.515102424,5.258582827\n549,12,10.5,0.227059024,0.162587984,1.908997483\n550,0,11,0.505994492,0.505259352,2.035850549\n551,0.5,11,0.580356465,0.867421774,3.11869323\n552,1,11,0.807629957,0.655388566,4.771923298\n553,1.5,11,0.09298601,0.946484653,3.860979871\n554,2,11,0.572298043,0.545448681,4.810557096\n555,2.5,11,0.48734306,0.858902286,5.209252881\n556,3,11,0.622165279,0.487147008,4.587528527\n557,3.5,11,0.526418696,0.982924592,3.686192105\n558,4,11,0.198501484,0.952871712,3.346215986\n559,4.5,11,0.667703084,0.656163878,3.577181353\n560,5,11,0.551886573,0.956984965,3.957019578\n561,5.5,11,0.343225634,0.656802984,5.186773257\n562,6,11,0.403296072,0.444919692,5.010214578\n563,6.5,11,0.408420048,0.120138598,3.81141861\n564,7,11,0.793259074,0.170960277,4.258058844\n565,7.5,11,0.557565877,0.928157827,4.469135469\n566,8,11,0.830485884,0.413186237,4.012075495\n567,8.5,11,0.895488007,0.944564909,5.56272412\n568,9,11,0.351366593,0.275091445,3.520058715\n569,9.5,11,0.938238211,0.643410995,5.564479581\n570,10,11,0.579471743,0.641370869,4.945001723\n571,10.5,11,0.129095299,0.964071939,4.527845229\n572,11,11,0.511862179,0.438618038,4.069992267\n573,11.5,11,0.628113299,0.522096263,3.000634867\n574,12,11,0.541379968,0.779044159,3.510274743\n575,0,11.5,0.521911996,0.880757038,3.358601526\n576,0.5,11.5,0.257077953,0.678993081,2.823866901\n577,1,11.5,0.964259085,0.419254012,3.441902751\n578,1.5,11.5,0.329168628,0.979489767,3.505698915\n579,2,11.5,0.123117148,0.573714884,3.81778918\n580,2.5,11.5,0.1281847,0.406921335,4.333711404\n581,3,11.5,0.176259047,0.658892062,3.363073338\n582,3.5,11.5,0.538831251,0.524608521,3.101815928\n583,4,11.5,0.212019024,0.128606674,1.907022323\n584,4.5,11.5,0.104416665,0.128221578,1.627451906\n585,5,11.5,0.185740484,0.092575057,2.119825747\n586,5.5,11.5,0.904986637,0.799125254,5.187573852\n587,6,11.5,0.108594459,0.600568005,4.526495933\n588,6.5,11.5,0.018006644,0.222697628,3.199332531\n589,7,11.5,0.026622499,0.402221494,2.502085677\n590,7.5,11.5,0.760342269,0.586336902,3.658768599\n591,8,11.5,0.361738562,0.55358032,3.089946102\n592,8.5,11.5,0.121771702,0.617636817,2.573296491\n593,9,11.5,0.714855426,0.055551348,3.826289291\n594,9.5,11.5,0.260094351,0.240020847,3.847635256\n595,10,11.5,0.432169115,0.664633243,4.666263792\n596,10.5,11.5,0.447252393,0.854600386,3.699198084\n597,11,11.5,0.289648709,0.122016626,2.246912231\n598,11.5,11.5,0.22167976,0.615744295,2.196029352\n599,12,11.5,0.016419534,0.625294821,2.365323404\n600,0,12,0.462232371,0.490021139,3.943223782\n601,0.5,12,0.043135984,0.931827444,2.627929815\n602,1,12,0.812838277,0.102325726,2.348446438\n603,1.5,12,0.318834856,0.654895267,2.618262131\n604,2,12,0.602204108,0.428934108,4.572230817\n605,2.5,12,0.805727927,0.608419483,6.169200619\n606,3,12,0.047826895,0.029666078,3.205680875\n607,3.5,12,0.941611533,0.627484888,6.072980244\n608,4,12,0.506338064,0.973627807,2.870961289\n609,4.5,12,0.305632932,0.386814847,1.993918664\n610,5,12,0.665021015,0.596043074,3.14097218\n611,5.5,12,0.833240299,0.013631583,4.695036093\n612,6,12,0.939731365,0.348459223,4.96685926\n613,6.5,12,0.558127581,0.794501797,5.183101194\n614,7,12,0.065545397,0.920844903,3.632567553\n615,7.5,12,0.871819685,0.121248508,3.253786655\n616,8,12,0.922814857,0.55267766,2.549960768\n617,8.5,12,0.746621521,0.648375723,4.40440265\n618,9,12,0.334495419,0.930841491,5.611345858\n619,9.5,12,0.270547417,0.824494591,3.407457727\n620,10,12,0.753266218,0.29811746,4.374270256\n621,10.5,12,0.545090802,0.963122748,4.22092089\n622,11,12,0.015637061,0.010520117,0.51947064\n623,11.5,12,0.35264677,0.444586743,3.147800306\n624,12,12,0.360385522,0.236455,3.664159341\n"
  },
  {
    "path": "data/simulated_predict_data.csv",
    "content": "id,u,v,x1,x2,y\n501,0.5,10,0.009373205,0.844289522,3.624995146\n502,1,10,0.983223643,0.702809415,5.883498273\n503,1.5,10,0.568145968,0.20618636,4.287319686\n504,2,10,0.755833589,0.917192023,6.442310078\n505,2.5,10,0.097780678,0.441362595,2.250438852\n506,3,10,0.946014077,0.779715936,4.851324098\n507,3.5,10,0.767575133,0.166277868,3.079060762\n508,4,10,0.922601995,0.3271999,4.439702052\n509,4.5,10,0.245550549,0.003911075,2.538876362\n510,5,10,0.569721527,0.135334049,3.930139604\n511,5.5,10,0.318721852,0.173948051,3.84640703\n512,6,10,0.404192704,0.366516822,5.040751241\n513,6.5,10,0.388325293,0.20871077,4.112642912\n514,7,10,0.895638133,0.303452619,4.760791356\n515,7.5,10,0.024241027,0.487144309,3.348399962\n516,8,10,0.524515338,0.998976845,4.888057664\n517,8.5,10,0.930693291,0.570368271,4.507037881\n518,9,10,0.17337325,0.372996267,2.632848406\n519,9.5,10,0.420807103,0.955106905,5.733531552\n520,10,10,0.791452937,0.191430248,4.51415676\n521,10.5,10,0.98796397,0.001042992,5.151963196\n522,11,10,0.883006482,0.188375005,6.172580524\n523,11.5,10,0.360902351,0.162244913,3.271914617\n524,12,10,0.321770115,0.490596922,3.982851772\n525,0,10.5,0.547776152,0.64613689,2.779471245\n526,0.5,10.5,0.967425159,0.210558775,4.2574525\n527,1,10.5,0.355590653,0.087571888,3.558373194\n528,1.5,10.5,0.614096127,0.742460665,5.151906741\n529,2,10.5,0.929921145,0.725828116,5.698555487\n530,2.5,10.5,0.438174933,0.938598545,5.473347292\n531,3,10.5,0.957950386,0.014775456,3.30437948\n532,3.5,10.5,0.742829465,0.718617471,4.776627546\n533,4,10.5,0.465113451,0.851424559,3.75200524\n534,4.5,10.5,0.481978148,0.58269728,3.97515251\n535,5,10.5,0.419320417,0.637481914,4.866383996\n536,5.5,10.5,0.891055555,0.680095555,6.150332756\n537,6,10.5,0.399794582,0.009154159,4.019061898\n538,6.5,10.5,0.472688505,0.502036143,4.57233541\n539,7,10.5,0.819536325,0.195029827,3.564393891\n540,7.5,10.5,0.467689719,0.852543249,4.651971528\n541,8,10.5,0.359847341,0.07925111,1.794921392\n542,8.5,10.5,1,0.201873296,3.566081317\n543,9,10.5,0.859400741,0.30495259,4.697968254\n544,9.5,10.5,0.452433694,0.44921348,3.532043887\n545,10,10.5,0.443310369,0.278496679,4.447848783\n546,10.5,10.5,0.814606107,0.142435258,5.568184553\n547,11,10.5,0.846586381,0.620064643,4.57728101\n548,11.5,10.5,0.784865925,0.515102424,5.258582827\n549,12,10.5,0.227059024,0.162587984,1.908997483\n550,0,11,0.505994492,0.505259352,2.035850549\n551,0.5,11,0.580356465,0.867421774,3.11869323\n552,1,11,0.807629957,0.655388566,4.771923298\n553,1.5,11,0.09298601,0.946484653,3.860979871\n554,2,11,0.572298043,0.545448681,4.810557096\n555,2.5,11,0.48734306,0.858902286,5.209252881\n556,3,11,0.622165279,0.487147008,4.587528527\n557,3.5,11,0.526418696,0.982924592,3.686192105\n558,4,11,0.198501484,0.952871712,3.346215986\n559,4.5,11,0.667703084,0.656163878,3.577181353\n560,5,11,0.551886573,0.956984965,3.957019578\n561,5.5,11,0.343225634,0.656802984,5.186773257\n562,6,11,0.403296072,0.444919692,5.010214578\n563,6.5,11,0.408420048,0.120138598,3.81141861\n564,7,11,0.793259074,0.170960277,4.258058844\n565,7.5,11,0.557565877,0.928157827,4.469135469\n566,8,11,0.830485884,0.413186237,4.012075495\n567,8.5,11,0.895488007,0.944564909,5.56272412\n568,9,11,0.351366593,0.275091445,3.520058715\n569,9.5,11,0.938238211,0.643410995,5.564479581\n570,10,11,0.579471743,0.641370869,4.945001723\n571,10.5,11,0.129095299,0.964071939,4.527845229\n572,11,11,0.511862179,0.438618038,4.069992267\n573,11.5,11,0.628113299,0.522096263,3.000634867\n574,12,11,0.541379968,0.779044159,3.510274743\n575,0,11.5,0.521911996,0.880757038,3.358601526\n576,0.5,11.5,0.257077953,0.678993081,2.823866901\n577,1,11.5,0.964259085,0.419254012,3.441902751\n578,1.5,11.5,0.329168628,0.979489767,3.505698915\n579,2,11.5,0.123117148,0.573714884,3.81778918\n580,2.5,11.5,0.1281847,0.406921335,4.333711404\n581,3,11.5,0.176259047,0.658892062,3.363073338\n582,3.5,11.5,0.538831251,0.524608521,3.101815928\n583,4,11.5,0.212019024,0.128606674,1.907022323\n584,4.5,11.5,0.104416665,0.128221578,1.627451906\n585,5,11.5,0.185740484,0.092575057,2.119825747\n586,5.5,11.5,0.904986637,0.799125254,5.187573852\n587,6,11.5,0.108594459,0.600568005,4.526495933\n588,6.5,11.5,0.018006644,0.222697628,3.199332531\n589,7,11.5,0.026622499,0.402221494,2.502085677\n590,7.5,11.5,0.760342269,0.586336902,3.658768599\n591,8,11.5,0.361738562,0.55358032,3.089946102\n592,8.5,11.5,0.121771702,0.617636817,2.573296491\n593,9,11.5,0.714855426,0.055551348,3.826289291\n594,9.5,11.5,0.260094351,0.240020847,3.847635256\n595,10,11.5,0.432169115,0.664633243,4.666263792\n596,10.5,11.5,0.447252393,0.854600386,3.699198084\n597,11,11.5,0.289648709,0.122016626,2.246912231\n598,11.5,11.5,0.22167976,0.615744295,2.196029352\n599,12,11.5,0.016419534,0.625294821,2.365323404\n600,0,12,0.462232371,0.490021139,3.943223782\n601,0.5,12,0.043135984,0.931827444,2.627929815\n602,1,12,0.812838277,0.102325726,2.348446438\n603,1.5,12,0.318834856,0.654895267,2.618262131\n604,2,12,0.602204108,0.428934108,4.572230817\n605,2.5,12,0.805727927,0.608419483,6.169200619\n606,3,12,0.047826895,0.029666078,3.205680875\n607,3.5,12,0.941611533,0.627484888,6.072980244\n608,4,12,0.506338064,0.973627807,2.870961289\n609,4.5,12,0.305632932,0.386814847,1.993918664\n610,5,12,0.665021015,0.596043074,3.14097218\n611,5.5,12,0.833240299,0.013631583,4.695036093\n612,6,12,0.939731365,0.348459223,4.96685926\n613,6.5,12,0.558127581,0.794501797,5.183101194\n614,7,12,0.065545397,0.920844903,3.632567553\n615,7.5,12,0.871819685,0.121248508,3.253786655\n616,8,12,0.922814857,0.55267766,2.549960768\n617,8.5,12,0.746621521,0.648375723,4.40440265\n618,9,12,0.334495419,0.930841491,5.611345858\n619,9.5,12,0.270547417,0.824494591,3.407457727\n620,10,12,0.753266218,0.29811746,4.374270256\n621,10.5,12,0.545090802,0.963122748,4.22092089\n622,11,12,0.015637061,0.010520117,0.51947064\n623,11.5,12,0.35264677,0.444586743,3.147800306\n624,12,12,0.360385522,0.236455,3.664159341\n"
  },
  {
    "path": "demo/demo_gnnwr_en_US.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# PM2.5 concentration spatial distribution estimation in China \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 1 Introductions\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.1 Backgrounds\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"07F60126A6AC44478EC9751ADCA2B877\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"\\n\",\n    \"China, as the largest developing country in the world, has been facing increasingly severe air quality problems accompanying the continuous advancement of industrialization and urbanization. According to the “2017 China Environmental Situation Bulletin” released by the Ministry of Ecology and Environment, among the 338 cities at the prefecture level and above, 239 cities have exceeded the national ambient air quality standards, with a proportion of more than 70%. Air quality problems have seriously affected people's daily travel and physical health, restricted sustainable economic development, and become a hot issue for public and government attention. PM2.5 is a respirable particle with a diameter of no more than 2.5 micrometers in the aerodynamic field, and is one of the main indicators for evaluating air quality. Comprehensive understanding of the spatial distribution of PM2.5 concentration, representing the spatial process and environmental behavior of atmospheric pollution, is of great significance and guidance value for supporting atmospheric pollution monitoring and early warning, comprehensive treatment, protecting human health and social sustainable development. By the end of 2017, the China National Environmental Monitoring Center had established over 400 ground-level air quality monitoring stations, and released hourly air quality monitoring data including PM2.5, providing high-precision and reliable real-time monitoring results. However, due to the uneven spatial distribution and low coverage of ground monitoring stations, it is difficult for existing studies to effectively analyze and deeply mine the spatiotemporal data of their monitoring data. Unlike ground monitoring, remote sensing observation based on satellites can obtain high-coverage atmospheric environment spatial datasets, such as atmospheric aerosol optical depth (AOD). Numerous studies have shown that there is a strong correlation between AOD and PM2.5 concentration. Research on PM2.5 concentration Spatial regression relationships with factors such as AOD retrieved from remote sensing inversion can provide effective solutions for obtaining the spatial distribution of PM2.5 concentration in the entire study area. Methodology Based on GWR geographical weighted regression thinking, Wu SenSen combines OLR with neural network model to propose a Geographically Neural Network Weighted Regression (GNNWR) model. By utilizing the learning ability of neural networks, this model can handle the spatial heterogeneity and complex nonlinear characteristics of regression relationships, which has better fitness accuracy and prediction performance compared to models such as OLR and GWR. The purpose of this case is to establish a PM2.5 concentration spatial estimation model based on GNNWR to achieve accurate fitting of spatial heterogeneity and nonlinear characteristics in PM2.5 regression relationships, and then obtain high-precision and high-reasonability PM2.5 concentration spatial distribution in China.  \\n\",\n    \"\\n\",\n    \"![graph](https://pub.mdpi-res.com/remotesensing/remotesensing-13-01979/article_deploy/html/images/remotesensing-13-01979-ag.png?1621475926)  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.2 Data description    \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"D05AAC185E3D49EC8ABB64A3E23EB1BD\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"Many studies have shown that integrating meteorological conditions such as temperature, precipitation, wind speed, wind direction, and surface elevation factors can further improve the accuracy of PM2.5 spatial estimation. In this case, in addition to selecting AOD data as an auxiliary factor, temperature (TEMP), precipitation (TP), wind speed (WS), wind direction (WD), and surface elevation (DEM) factors are added as input variables for the model. The research time scale is the average of 2017 year scale:\\n\",\n    \"\\n\",\n    \"(1) PM2.5 monitoring site data. The hourly PM2.5 concentration observation values from January 1, 2017 to December 31, 2017 were obtained from the China Environmental Monitoring Station. PM2.5 concentrations were measured using cone-shaped element oscillation trace or beta attenuation methods following national standard GB3095-2012. PM2.5 data were averaged for one year's time scale \\n\",\n    \"\\n\",\n    \"![图片](https://www.mdpi.com/remotesensing/remotesensing-13-01979/article_deploy/html/images/remotesensing-13-01979-g001.png)  \\n\",\n    \"\\n\",\n    \"(2) Aerosol data. Aerosol data are obtained from the LAADS website including both Terra and Aqua dark pixel inversion products with a resolution of 3 km (MOD04_3K and MYD04_3k), as well as deep blue algorithm inversion products with a resolution of 10 km (MOD04_L2 and MYD04_L2). In this article, the 3 km resolution AOD products are the main data source for PM2.5 estimation. When there is a missing value in the 3 km resolution data, a resolution-matching product will be used as much as possible using a 10 km resolution product for resampling substitution to ensure the reliability of AOD data.\\n\",\n    \"\\n\",\n    \"(3) DEM data. DEM data are obtained from the ETO-PO1 global surface elevation model of NOAA with a resolution of 1 arc minute\\n\",\n    \"\\n\",\n    \"(4) Meteorological data including temperature, precipitation, wind speed, and wind direction are obtained from the ERA5 global climate reanalysis modele provided by ECMWF with hourly gridded data at a resolution of 0.5 degrees.   \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.3 Model Introduction  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"86D4493F77124498975E055E70A236E9\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"Based on the geographical weighted idea similar to GWR, the GNNWR model believes that the spatial heterogeneity of the regression relationship can be regarded as the varying levels of spatial nonstationarity at different locations that affect the \\\"OLR regression relationship\\\". Therefore, in the spatial estimation experiment of PM2.5 concentration in this case, the model structure of GNNWR is defined as follows:     \\n\",\n    \" \\n\",\n    \"![Image Name](https://mydde.deep-time.org/s3/static-files/upload/upload/1694059648746_1.png)  \\n\",\n    \"\\n\",\n    \"In this equation, $(u_i, v_i)$ are the spatial coordinates of the i-th sample point, and $β = (β_0, β_1, ..., β_6)$ are the regression coefficients of the OLR model, reflecting the average level of the PM2.5 regression relationship for the entire region. The estimation matrix of OLR coefficients is represented as follows:\\n\",\n    \"\\n\",\n    \"![Image Name](https://mydde.deep-time.org/s3/static-files/upload/upload/1694059665465_2.png)  \\n\",\n    \"\\n\",\n    \"of which: \\n\",\n    \"\\n\",\n    \"![Image Name](https://mydde.deep-time.org/s3/static-files/upload/upload/1694059673642_3.png)  \\n\",\n    \"\\n\",\n    \"![Image Name](https://mydde.deep-time.org/s3/static-files/upload/upload/1694003342595_1.png)  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.4 References\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Du Z H, Wu S S, Wang Z Y, et al. Estimating ground-level PM2.5 concentrations across China using geographically neural network weighted regression[J]. Journal of Geo-information Science,2020,22(1):122-135.\\n\",\n    \"\\n\",\n    \"[DOI:10.12082/dqxxkx.2020.190533](https://www.researching.cn/ArticlePdf/m40005/2020/22/1/01000122.pdf)  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.5 Main Content  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"E3BFF987D9404CCF8E3C5C639A47034A\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"\\n\",\n    \"1. Model Training \\n\",\n    \"2. Result Storage, Loading, and Visualization\\n\",\n    \"3. Estimation \\n\",\n    \"\\n\",\n    \"![模型示意图](https://www.mdpi.com/remotesensing/remotesensing-13-01979/article_deploy/html/images/remotesensing-13-01979-g002.png)  \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"33DD2DA7E0C244B3B610181368A805CE\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 2 Preparation\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"A0798D319B524FC48F524866D805C37A\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"Import Necessary Packages\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"id\": \"D0BC6C42245D4720B21C5B166B6D8CEF\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from gnnwr import models, datasets, utils\\n\",\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import folium\\n\",\n    \"import torch.nn as nn\\n\",\n    \"from sklearn.metrics import r2_score as r2\\n\",\n    \"import matplotlib.pyplot as plt\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"53E5F38F7AB3444EBDADA824C49964C0\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 3 Model Training\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"A52C0D05A5A14FA7A67DD5F3879E91DA\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.1 Import Training Data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"id\": \"C9E0CFB808FD4B9F86CD6B58F373E68C\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>station_id</th>\\n\",\n       \"      <th>lng</th>\\n\",\n       \"      <th>lat</th>\\n\",\n       \"      <th>date</th>\\n\",\n       \"      <th>PM2_5</th>\\n\",\n       \"      <th>row_index</th>\\n\",\n       \"      <th>col_index</th>\\n\",\n       \"      <th>proj_x</th>\\n\",\n       \"      <th>proj_y</th>\\n\",\n       \"      <th>dem</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>t2m</th>\\n\",\n       \"      <th>sp</th>\\n\",\n       \"      <th>tp</th>\\n\",\n       \"      <th>blh</th>\\n\",\n       \"      <th>e</th>\\n\",\n       \"      <th>r</th>\\n\",\n       \"      <th>u10</th>\\n\",\n       \"      <th>v10</th>\\n\",\n       \"      <th>aod_sat</th>\\n\",\n       \"      <th>ndvi</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1001A</td>\\n\",\n       \"      <td>116.366</td>\\n\",\n       \"      <td>39.8673</td>\\n\",\n       \"      <td>20170601</td>\\n\",\n       \"      <td>54.733894</td>\\n\",\n       \"      <td>2201</td>\\n\",\n       \"      <td>6867</td>\\n\",\n       \"      <td>1650847.552</td>\\n\",\n       \"      <td>1370268.366</td>\\n\",\n       \"      <td>46</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>284.561066</td>\\n\",\n       \"      <td>100809.27340</td>\\n\",\n       \"      <td>0.001006</td>\\n\",\n       \"      <td>134.995636</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>46.315975</td>\\n\",\n       \"      <td>0.425366</td>\\n\",\n       \"      <td>0.170262</td>\\n\",\n       \"      <td>0.870967</td>\\n\",\n       \"      <td>2401</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>1002A</td>\\n\",\n       \"      <td>116.170</td>\\n\",\n       \"      <td>40.2865</td>\\n\",\n       \"      <td>20170601</td>\\n\",\n       \"      <td>48.080737</td>\\n\",\n       \"      <td>2134</td>\\n\",\n       \"      <td>6835</td>\\n\",\n       \"      <td>1625003.973</td>\\n\",\n       \"      <td>1416959.964</td>\\n\",\n       \"      <td>420</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>282.907684</td>\\n\",\n       \"      <td>97125.08594</td>\\n\",\n       \"      <td>0.001044</td>\\n\",\n       \"      <td>157.775970</td>\\n\",\n       \"      <td>-0.000006</td>\\n\",\n       \"      <td>53.605503</td>\\n\",\n       \"      <td>0.211734</td>\\n\",\n       \"      <td>-0.676848</td>\\n\",\n       \"      <td>0.712080</td>\\n\",\n       \"      <td>5255</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>1003A</td>\\n\",\n       \"      <td>116.434</td>\\n\",\n       \"      <td>39.9522</td>\\n\",\n       \"      <td>20170601</td>\\n\",\n       \"      <td>54.898592</td>\\n\",\n       \"      <td>2188</td>\\n\",\n       \"      <td>6877</td>\\n\",\n       \"      <td>1653776.710</td>\\n\",\n       \"      <td>1381524.305</td>\\n\",\n       \"      <td>48</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>284.492249</td>\\n\",\n       \"      <td>100830.96880</td>\\n\",\n       \"      <td>0.001002</td>\\n\",\n       \"      <td>129.971298</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>45.537464</td>\\n\",\n       \"      <td>0.266666</td>\\n\",\n       \"      <td>0.069172</td>\\n\",\n       \"      <td>0.875811</td>\\n\",\n       \"      <td>2609</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>1004A</td>\\n\",\n       \"      <td>116.434</td>\\n\",\n       \"      <td>39.8745</td>\\n\",\n       \"      <td>20170601</td>\\n\",\n       \"      <td>52.266382</td>\\n\",\n       \"      <td>2200</td>\\n\",\n       \"      <td>6877</td>\\n\",\n       \"      <td>1655828.045</td>\\n\",\n       \"      <td>1372270.098</td>\\n\",\n       \"      <td>45</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>284.636200</td>\\n\",\n       \"      <td>100936.80470</td>\\n\",\n       \"      <td>0.001010</td>\\n\",\n       \"      <td>138.793961</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>45.387913</td>\\n\",\n       \"      <td>0.299403</td>\\n\",\n       \"      <td>0.227950</td>\\n\",\n       \"      <td>0.869679</td>\\n\",\n       \"      <td>2420</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>1005A</td>\\n\",\n       \"      <td>116.473</td>\\n\",\n       \"      <td>39.9716</td>\\n\",\n       \"      <td>20170601</td>\\n\",\n       \"      <td>53.189076</td>\\n\",\n       \"      <td>2185</td>\\n\",\n       \"      <td>6884</td>\\n\",\n       \"      <td>1656224.681</td>\\n\",\n       \"      <td>1384491.842</td>\\n\",\n       \"      <td>40</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>284.506561</td>\\n\",\n       \"      <td>100880.17970</td>\\n\",\n       \"      <td>0.001019</td>\\n\",\n       \"      <td>130.520599</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>44.790119</td>\\n\",\n       \"      <td>0.169121</td>\\n\",\n       \"      <td>0.079546</td>\\n\",\n       \"      <td>0.873232</td>\\n\",\n       \"      <td>3296</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 22 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"  station_id      lng      lat      date      PM2_5  row_index  col_index  \\\\\\n\",\n       \"0      1001A  116.366  39.8673  20170601  54.733894       2201       6867   \\n\",\n       \"1      1002A  116.170  40.2865  20170601  48.080737       2134       6835   \\n\",\n       \"2      1003A  116.434  39.9522  20170601  54.898592       2188       6877   \\n\",\n       \"3      1004A  116.434  39.8745  20170601  52.266382       2200       6877   \\n\",\n       \"4      1005A  116.473  39.9716  20170601  53.189076       2185       6884   \\n\",\n       \"\\n\",\n       \"        proj_x       proj_y  dem  ...         t2m            sp        tp  \\\\\\n\",\n       \"0  1650847.552  1370268.366   46  ...  284.561066  100809.27340  0.001006   \\n\",\n       \"1  1625003.973  1416959.964  420  ...  282.907684   97125.08594  0.001044   \\n\",\n       \"2  1653776.710  1381524.305   48  ...  284.492249  100830.96880  0.001002   \\n\",\n       \"3  1655828.045  1372270.098   45  ...  284.636200  100936.80470  0.001010   \\n\",\n       \"4  1656224.681  1384491.842   40  ...  284.506561  100880.17970  0.001019   \\n\",\n       \"\\n\",\n       \"          blh         e          r       u10       v10   aod_sat  ndvi  \\n\",\n       \"0  134.995636 -0.000007  46.315975  0.425366  0.170262  0.870967  2401  \\n\",\n       \"1  157.775970 -0.000006  53.605503  0.211734 -0.676848  0.712080  5255  \\n\",\n       \"2  129.971298 -0.000007  45.537464  0.266666  0.069172  0.875811  2609  \\n\",\n       \"3  138.793961 -0.000007  45.387913  0.299403  0.227950  0.869679  2420  \\n\",\n       \"4  130.520599 -0.000007  44.790119  0.169121  0.079546  0.873232  3296  \\n\",\n       \"\\n\",\n       \"[5 rows x 22 columns]\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"data = pd.read_csv('../data/pm25_data.csv')\\n\",\n    \"data.head(5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"3504795E356E4437816E76D12CAC0991\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.2 Partition Datasets\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"id\": \"40BD347213E44C4E80325892E5B48A17\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"train_dataset, val_dataset, test_dataset = datasets.init_dataset(data=data,\\n\",\n    \"                                                                 test_ratio=0.15,\\n\",\n    \"                                                                 valid_ratio=0.15,\\n\",\n    \"                                                                 x_column=[\\n\",\n    \"                                                                     'dem', 'w10', 'd10', 't2m', 'aod_sat', 'tp'],\\n\",\n    \"                                                                 y_column=[\\n\",\n    \"                                                                     'PM2_5'],\\n\",\n    \"                                                                 spatial_column=[\\n\",\n    \"                                                                     'proj_x', 'proj_y'],\\n\",\n    \"                                                                 sample_seed=23,\\n\",\n    \"                                                                 batch_size=64)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"5CC697DE031B42ADB899D9B2D91E5C4C\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.3 Initialize GNNWR Model\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"id\": \"06A2E9226CD346EA865E297EC5C250A9\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Add Graph Successfully\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"gnnwr = models.GNNWR(train_dataset=train_dataset,\\n\",\n    \"                     valid_dataset=val_dataset,\\n\",\n    \"                     test_dataset=test_dataset,\\n\",\n    \"                     dense_layers=[512, 256, 128],\\n\",\n    \"                     start_lr=0.2,\\n\",\n    \"                     optimizer=\\\"Adadelta\\\",\\n\",\n    \"                     activate_func=nn.PReLU(init=0.1),\\n\",\n    \"                     model_name=\\\"GNNWR_PM25\\\",\\n\",\n    \"                     write_path=\\\"../demo_result/gnnwr/runs/\\\",\\n\",\n    \"                     model_save_path=\\\"../demo_result/gnnwr/models/\\\",\\n\",\n    \"                     log_path=\\\"../demo_result/gnnwr/logs/\\\",\\n\",\n    \"                     )\\n\",\n    \"gnnwr.add_graph()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"771126F1DC394DA3A41FA3D80164ED2B\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.4 Model Training\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"id\": \"392C030FC48D40698859C4A8A60E82AB\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"100%|██████████| 200/200 [00:29<00:00,  6.71it/s, Train Loss=55.007241, Train R2=0.726874, Train AIC=6957.4873, Valid Loss=58.3, Valid R2=0.692, Best Valid R2=0.768, Learning Rate=0.2]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"gnnwr.run(max_epoch=200, early_stop=50)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"10FD366C72BC4023BADF205C76A1B5E4\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.5 Model Evaluation and Analysis\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"BD45531797814F92BBFE8C1F81A8790D\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"Output the training result\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"hide_input\": false,\n    \"id\": \"C3F2344514A7404C9B82AF1199B8AB86\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------Model Information-----------------\\n\",\n      \"Model Name:           | GNNWR_PM25\\n\",\n      \"independent variable: | ['dem', 'w10', 'd10', 't2m', 'aod_sat', 'tp']\\n\",\n      \"dependent variable:   | ['PM2_5']\\n\",\n      \"\\n\",\n      \"OLS coefficients: \\n\",\n      \"x0: 4.84385\\n\",\n      \"x1: -8.85402\\n\",\n      \"x2: 0.17612\\n\",\n      \"x3: 18.69575\\n\",\n      \"x4: 35.19490\\n\",\n      \"x5: -23.06419\\n\",\n      \"Intercept: 22.06353\\n\",\n      \"\\n\",\n      \"--------------------Result Information----------------\\n\",\n      \"Test Loss: |                  56.67216\\n\",\n      \"Test R2  : |                   0.73790\\n\",\n      \"Train R2 : |                   0.82596\\n\",\n      \"Valid R2 : |                   0.76837\\n\",\n      \"RMSE: |                        7.52809\\n\",\n      \"AIC:  |                     1452.48474\\n\",\n      \"AICc: |                     1449.55029\\n\",\n      \"F1:   |                        0.14694\\n\",\n      \"F2:   |                        0.79863\\n\",\n      \"f3_param_0: |                  1.39256\\n\",\n      \"f3_param_1: |                  4.65791\\n\",\n      \"f3_param_2: |                  0.36700\\n\",\n      \"f3_param_3: |                 38.43280\\n\",\n      \"f3_param_4: |                 84.29873\\n\",\n      \"f3_param_5: |                100.56641\\n\",\n      \"f3_param_6: |                 71.90481\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(gnnwr.result())\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"5527C08955E146FBAC4836BF7A049F1B\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"Save the training result\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"id\": \"EC21C530B5B3495D89A5CC748F5E4838\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>coef_dem</th>\\n\",\n       \"      <th>coef_w10</th>\\n\",\n       \"      <th>coef_d10</th>\\n\",\n       \"      <th>coef_t2m</th>\\n\",\n       \"      <th>coef_aod_sat</th>\\n\",\n       \"      <th>coef_tp</th>\\n\",\n       \"      <th>bias</th>\\n\",\n       \"      <th>Pred_PM2_5</th>\\n\",\n       \"      <th>id</th>\\n\",\n       \"      <th>dataset_belong</th>\\n\",\n       \"      <th>denormalized_pred_result</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>525</th>\\n\",\n       \"      <td>-13.982780</td>\\n\",\n       \"      <td>0.986766</td>\\n\",\n       \"      <td>-0.265440</td>\\n\",\n       \"      <td>15.096186</td>\\n\",\n       \"      <td>39.772655</td>\\n\",\n       \"      <td>0.168308</td>\\n\",\n       \"      <td>10.864908</td>\\n\",\n       \"      <td>50.459122</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>50.459122</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>856</th>\\n\",\n       \"      <td>-13.017211</td>\\n\",\n       \"      <td>1.010324</td>\\n\",\n       \"      <td>-0.244473</td>\\n\",\n       \"      <td>15.638182</td>\\n\",\n       \"      <td>43.804943</td>\\n\",\n       \"      <td>-0.079256</td>\\n\",\n       \"      <td>7.333379</td>\\n\",\n       \"      <td>41.463264</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>41.463264</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1106</th>\\n\",\n       \"      <td>-13.462659</td>\\n\",\n       \"      <td>1.519648</td>\\n\",\n       \"      <td>-0.253571</td>\\n\",\n       \"      <td>14.013595</td>\\n\",\n       \"      <td>43.117420</td>\\n\",\n       \"      <td>0.434180</td>\\n\",\n       \"      <td>8.655427</td>\\n\",\n       \"      <td>50.600433</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>valid</td>\\n\",\n       \"      <td>50.600433</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>878</th>\\n\",\n       \"      <td>-13.738739</td>\\n\",\n       \"      <td>1.328917</td>\\n\",\n       \"      <td>-0.260308</td>\\n\",\n       \"      <td>14.333707</td>\\n\",\n       \"      <td>41.565952</td>\\n\",\n       \"      <td>0.365591</td>\\n\",\n       \"      <td>9.796055</td>\\n\",\n       \"      <td>50.511223</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>50.511223</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1224</th>\\n\",\n       \"      <td>-13.282292</td>\\n\",\n       \"      <td>1.723946</td>\\n\",\n       \"      <td>-0.250305</td>\\n\",\n       \"      <td>13.519067</td>\\n\",\n       \"      <td>44.411713</td>\\n\",\n       \"      <td>0.508260</td>\\n\",\n       \"      <td>7.894271</td>\\n\",\n       \"      <td>50.550869</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>50.550869</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1371</th>\\n\",\n       \"      <td>-17.246046</td>\\n\",\n       \"      <td>6.366604</td>\\n\",\n       \"      <td>-0.478529</td>\\n\",\n       \"      <td>-1.594304</td>\\n\",\n       \"      <td>52.899521</td>\\n\",\n       \"      <td>10.622722</td>\\n\",\n       \"      <td>14.197436</td>\\n\",\n       \"      <td>53.354580</td>\\n\",\n       \"      <td>1403</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>53.354580</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>961</th>\\n\",\n       \"      <td>1.734755</td>\\n\",\n       \"      <td>-22.650177</td>\\n\",\n       \"      <td>-1.014575</td>\\n\",\n       \"      <td>9.799455</td>\\n\",\n       \"      <td>89.167091</td>\\n\",\n       \"      <td>-34.360985</td>\\n\",\n       \"      <td>14.354010</td>\\n\",\n       \"      <td>12.014944</td>\\n\",\n       \"      <td>1404</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>12.014944</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>925</th>\\n\",\n       \"      <td>-17.335573</td>\\n\",\n       \"      <td>6.256605</td>\\n\",\n       \"      <td>-0.480732</td>\\n\",\n       \"      <td>-1.363827</td>\\n\",\n       \"      <td>52.114891</td>\\n\",\n       \"      <td>10.563044</td>\\n\",\n       \"      <td>14.693017</td>\\n\",\n       \"      <td>53.442284</td>\\n\",\n       \"      <td>1405</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>53.442284</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1088</th>\\n\",\n       \"      <td>-8.700379</td>\\n\",\n       \"      <td>10.593680</td>\\n\",\n       \"      <td>-0.705613</td>\\n\",\n       \"      <td>25.247837</td>\\n\",\n       \"      <td>32.304390</td>\\n\",\n       \"      <td>4.642990</td>\\n\",\n       \"      <td>6.718304</td>\\n\",\n       \"      <td>12.019615</td>\\n\",\n       \"      <td>1406</td>\\n\",\n       \"      <td>valid</td>\\n\",\n       \"      <td>12.019615</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>245</th>\\n\",\n       \"      <td>-24.186794</td>\\n\",\n       \"      <td>-3.212118</td>\\n\",\n       \"      <td>-0.623428</td>\\n\",\n       \"      <td>21.558348</td>\\n\",\n       \"      <td>-1.865212</td>\\n\",\n       \"      <td>-1.452510</td>\\n\",\n       \"      <td>48.198952</td>\\n\",\n       \"      <td>57.349991</td>\\n\",\n       \"      <td>1407</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>57.349991</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>1408 rows × 11 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"       coef_dem   coef_w10  coef_d10   coef_t2m  coef_aod_sat    coef_tp  \\\\\\n\",\n       \"525  -13.982780   0.986766 -0.265440  15.096186     39.772655   0.168308   \\n\",\n       \"856  -13.017211   1.010324 -0.244473  15.638182     43.804943  -0.079256   \\n\",\n       \"1106 -13.462659   1.519648 -0.253571  14.013595     43.117420   0.434180   \\n\",\n       \"878  -13.738739   1.328917 -0.260308  14.333707     41.565952   0.365591   \\n\",\n       \"1224 -13.282292   1.723946 -0.250305  13.519067     44.411713   0.508260   \\n\",\n       \"...         ...        ...       ...        ...           ...        ...   \\n\",\n       \"1371 -17.246046   6.366604 -0.478529  -1.594304     52.899521  10.622722   \\n\",\n       \"961    1.734755 -22.650177 -1.014575   9.799455     89.167091 -34.360985   \\n\",\n       \"925  -17.335573   6.256605 -0.480732  -1.363827     52.114891  10.563044   \\n\",\n       \"1088  -8.700379  10.593680 -0.705613  25.247837     32.304390   4.642990   \\n\",\n       \"245  -24.186794  -3.212118 -0.623428  21.558348     -1.865212  -1.452510   \\n\",\n       \"\\n\",\n       \"           bias  Pred_PM2_5    id dataset_belong  denormalized_pred_result  \\n\",\n       \"525   10.864908   50.459122     0          train                 50.459122  \\n\",\n       \"856    7.333379   41.463264     1          train                 41.463264  \\n\",\n       \"1106   8.655427   50.600433     2          valid                 50.600433  \\n\",\n       \"878    9.796055   50.511223     3          train                 50.511223  \\n\",\n       \"1224   7.894271   50.550869     4           test                 50.550869  \\n\",\n       \"...         ...         ...   ...            ...                       ...  \\n\",\n       \"1371  14.197436   53.354580  1403           test                 53.354580  \\n\",\n       \"961   14.354010   12.014944  1404          train                 12.014944  \\n\",\n       \"925   14.693017   53.442284  1405          train                 53.442284  \\n\",\n       \"1088   6.718304   12.019615  1406          valid                 12.019615  \\n\",\n       \"245   48.198952   57.349991  1407          train                 57.349991  \\n\",\n       \"\\n\",\n       \"[1408 rows x 11 columns]\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"gnnwr.reg_result('../demo_result/gnnwr/gnnwr_result.csv').sort_values(by='id')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"0D039711996848DE9217140B02C5E10E\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 4 Saving and Loading\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"96488D5CBDC9485CAC078B712F4EB2BA\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 4.1 Saving Datasets\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"id\": \"EEEC216859F14662AC92DB11004828F9\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"train_dataset.save('../demo_result/gnnwr/dataset/train_dataset/', exist_ok=True)\\n\",\n    \"val_dataset.save('../demo_result/gnnwr/dataset/val_dataset/', exist_ok=True)\\n\",\n    \"test_dataset.save('../demo_result/gnnwr/dataset/test_dataset/', exist_ok=True)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"0EF15A835A134240AB32C6826816A446\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 4.2 Loading Datasets\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"id\": \"B8B0450836D34F17B770C4236A32A2EF\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"train_dataset_load = datasets.load_dataset(\\n\",\n    \"    '../demo_result/gnnwr/dataset/train_dataset/')\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"val_dataset_load = datasets.load_dataset(\\n\",\n    \"    '../demo_result/gnnwr/dataset/val_dataset/')\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"test_dataset_load = datasets.load_dataset(\\n\",\n    \"    '../demo_result/gnnwr/dataset/test_dataset/')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"85C871CF435D44299507646EEEF29DD9\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 4.3 Loading Model\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"475BB7B168104D958937E7DFD35D9ABF\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"Initialize the model\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {\n    \"id\": \"E87800E3AB6041898E808E402C8F06A1\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"gnnwr_load = models.GNNWR(train_dataset=train_dataset_load,\\n\",\n    \"                          valid_dataset=val_dataset_load,\\n\",\n    \"                          test_dataset=test_dataset_load,\\n\",\n    \"                          dense_layers=[512, 256, 128],\\n\",\n    \"                          start_lr=0.2,\\n\",\n    \"                          optimizer=\\\"Adadelta\\\",\\n\",\n    \"                          activate_func=nn.PReLU(init=0.1),\\n\",\n    \"                          model_name=\\\"GNNWR_PM25\\\",\\n\",\n    \"                          model_save_path=\\\"../demo_result/gnnwr/models/\\\",\\n\",\n    \"                          log_path=\\\"../demo_result/gnnwr/logs/\\\",\\n\",\n    \"                          write_path=\\\"../demo_result/gnnwr/writes/\\\"\\n\",\n    \"                          )\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"35B7929FA9D543598710B7CA6B1FD517\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"Loading Parameters\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"3289C4F9F06E4C8490C3481938DED86A\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------Model Information-----------------\\n\",\n      \"Model Name:           | GNNWR_PM25\\n\",\n      \"independent variable: | ['dem', 'w10', 'd10', 't2m', 'aod_sat', 'tp']\\n\",\n      \"dependent variable:   | ['PM2_5']\\n\",\n      \"\\n\",\n      \"OLS coefficients: \\n\",\n      \"x0: 4.84385\\n\",\n      \"x1: -8.85402\\n\",\n      \"x2: 0.17612\\n\",\n      \"x3: 18.69575\\n\",\n      \"x4: 35.19490\\n\",\n      \"x5: -23.06419\\n\",\n      \"Intercept: 22.06353\\n\",\n      \"\\n\",\n      \"--------------------Result Information----------------\\n\",\n      \"Test Loss: |                  56.67217\\n\",\n      \"Test R2  : |                   0.73790\\n\",\n      \"Train R2 : |                   0.82596\\n\",\n      \"Valid R2 : |                   0.76837\\n\",\n      \"RMSE: |                        7.52809\\n\",\n      \"AIC:  |                     1452.48462\\n\",\n      \"AICc: |                     1449.55017\\n\",\n      \"F1:   |                        0.14694\\n\",\n      \"F2:   |                        0.79846\\n\",\n      \"f3_param_0: |                  1.39242\\n\",\n      \"f3_param_1: |                  4.65801\\n\",\n      \"f3_param_2: |                  0.36687\\n\",\n      \"f3_param_3: |                 38.43230\\n\",\n      \"f3_param_4: |                 84.29624\\n\",\n      \"f3_param_5: |                100.56878\\n\",\n      \"f3_param_6: |                 71.90552\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"gnnwr_load.load_model('../demo_result/gnnwr/models/GNNWR_PM25.pkl')\\n\",\n    \"print(gnnwr_load.result())\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"D8AF221F731440B59F0B0ED68D973250\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 5 Estimation\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"F86C3BA9A4E747ED821487D5FA3FA489\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 5.1 Import Estimation Data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"id\": \"D6E5AE8DB59B46BE88857DD639425FC6\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"pred_data = pd.read_csv('../data/pm25_predict_data.csv')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"91CA814D3C014609894F6494EDAE9412\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 5.2 Initialize Estimation Dataset\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"id\": \"F3B99F1FEAC84FD8984410F90EA322EC\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"pred_dataset = datasets.init_predict_dataset(data=pred_data, train_dataset=train_dataset, x_column=[\\n\",\n    \"                                             'dem', 'w10', 'd10', 't2m', 'aod_sat', 'tp'],\\n\",\n    \"                                             spatial_column=['proj_x', 'proj_y'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"D9F130BCAFB84C43B55BE8C048C602E0\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 5.3 Estimate\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {\n    \"id\": \"3488FBA395284C42B7315AAF110560DD\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>station_id</th>\\n\",\n       \"      <th>lng</th>\\n\",\n       \"      <th>lat</th>\\n\",\n       \"      <th>date</th>\\n\",\n       \"      <th>PM2.5</th>\\n\",\n       \"      <th>row_index</th>\\n\",\n       \"      <th>col_index</th>\\n\",\n       \"      <th>proj_x</th>\\n\",\n       \"      <th>proj_y</th>\\n\",\n       \"      <th>dem</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>tp</th>\\n\",\n       \"      <th>blh</th>\\n\",\n       \"      <th>e</th>\\n\",\n       \"      <th>r</th>\\n\",\n       \"      <th>u10</th>\\n\",\n       \"      <th>v10</th>\\n\",\n       \"      <th>aod_sat</th>\\n\",\n       \"      <th>ndvi</th>\\n\",\n       \"      <th>pred_result</th>\\n\",\n       \"      <th>denormalized_pred_result</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1001A</td>\\n\",\n       \"      <td>116.366</td>\\n\",\n       \"      <td>39.8673</td>\\n\",\n       \"      <td>20170930</td>\\n\",\n       \"      <td>56.357143</td>\\n\",\n       \"      <td>2201.0</td>\\n\",\n       \"      <td>6867.0</td>\\n\",\n       \"      <td>1.650848e+06</td>\\n\",\n       \"      <td>1.370268e+06</td>\\n\",\n       \"      <td>46</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.000051</td>\\n\",\n       \"      <td>64.583054</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>52.682091</td>\\n\",\n       \"      <td>0.384257</td>\\n\",\n       \"      <td>0.784808</td>\\n\",\n       \"      <td>0.762762</td>\\n\",\n       \"      <td>3443</td>\\n\",\n       \"      <td>52.025711</td>\\n\",\n       \"      <td>52.025711</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>1002A</td>\\n\",\n       \"      <td>116.170</td>\\n\",\n       \"      <td>40.2865</td>\\n\",\n       \"      <td>20170930</td>\\n\",\n       \"      <td>47.148148</td>\\n\",\n       \"      <td>2134.0</td>\\n\",\n       \"      <td>6835.0</td>\\n\",\n       \"      <td>1.625004e+06</td>\\n\",\n       \"      <td>1.416960e+06</td>\\n\",\n       \"      <td>420</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.000304</td>\\n\",\n       \"      <td>40.621140</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>62.529091</td>\\n\",\n       \"      <td>-0.156175</td>\\n\",\n       \"      <td>-0.537717</td>\\n\",\n       \"      <td>0.574785</td>\\n\",\n       \"      <td>7810</td>\\n\",\n       \"      <td>41.102737</td>\\n\",\n       \"      <td>41.102737</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>1003A</td>\\n\",\n       \"      <td>116.434</td>\\n\",\n       \"      <td>39.9522</td>\\n\",\n       \"      <td>20170930</td>\\n\",\n       \"      <td>53.857143</td>\\n\",\n       \"      <td>2188.0</td>\\n\",\n       \"      <td>6877.0</td>\\n\",\n       \"      <td>1.653777e+06</td>\\n\",\n       \"      <td>1.381524e+06</td>\\n\",\n       \"      <td>48</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.000058</td>\\n\",\n       \"      <td>60.242908</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>52.126640</td>\\n\",\n       \"      <td>0.093867</td>\\n\",\n       \"      <td>0.617515</td>\\n\",\n       \"      <td>0.796827</td>\\n\",\n       \"      <td>3328</td>\\n\",\n       \"      <td>52.553932</td>\\n\",\n       \"      <td>52.553932</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>1004A</td>\\n\",\n       \"      <td>116.434</td>\\n\",\n       \"      <td>39.8745</td>\\n\",\n       \"      <td>20170930</td>\\n\",\n       \"      <td>46.333333</td>\\n\",\n       \"      <td>2200.0</td>\\n\",\n       \"      <td>6877.0</td>\\n\",\n       \"      <td>1.655828e+06</td>\\n\",\n       \"      <td>1.372270e+06</td>\\n\",\n       \"      <td>45</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.000047</td>\\n\",\n       \"      <td>69.535637</td>\\n\",\n       \"      <td>-0.000008</td>\\n\",\n       \"      <td>51.301529</td>\\n\",\n       \"      <td>0.197439</td>\\n\",\n       \"      <td>0.893495</td>\\n\",\n       \"      <td>0.758839</td>\\n\",\n       \"      <td>4535</td>\\n\",\n       \"      <td>51.534027</td>\\n\",\n       \"      <td>51.534027</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>1005A</td>\\n\",\n       \"      <td>116.473</td>\\n\",\n       \"      <td>39.9716</td>\\n\",\n       \"      <td>20170930</td>\\n\",\n       \"      <td>52.203704</td>\\n\",\n       \"      <td>2185.0</td>\\n\",\n       \"      <td>6884.0</td>\\n\",\n       \"      <td>1.656225e+06</td>\\n\",\n       \"      <td>1.384492e+06</td>\\n\",\n       \"      <td>40</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.000059</td>\\n\",\n       \"      <td>62.281456</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>51.071964</td>\\n\",\n       \"      <td>-0.060543</td>\\n\",\n       \"      <td>0.634863</td>\\n\",\n       \"      <td>0.760148</td>\\n\",\n       \"      <td>3901</td>\\n\",\n       \"      <td>50.618057</td>\\n\",\n       \"      <td>50.618057</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 24 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"  station_id      lng      lat      date      PM2.5  row_index  col_index  \\\\\\n\",\n       \"0      1001A  116.366  39.8673  20170930  56.357143     2201.0     6867.0   \\n\",\n       \"1      1002A  116.170  40.2865  20170930  47.148148     2134.0     6835.0   \\n\",\n       \"2      1003A  116.434  39.9522  20170930  53.857143     2188.0     6877.0   \\n\",\n       \"3      1004A  116.434  39.8745  20170930  46.333333     2200.0     6877.0   \\n\",\n       \"4      1005A  116.473  39.9716  20170930  52.203704     2185.0     6884.0   \\n\",\n       \"\\n\",\n       \"         proj_x        proj_y  dem  ...        tp        blh         e  \\\\\\n\",\n       \"0  1.650848e+06  1.370268e+06   46  ...  0.000051  64.583054 -0.000007   \\n\",\n       \"1  1.625004e+06  1.416960e+06  420  ...  0.000304  40.621140 -0.000007   \\n\",\n       \"2  1.653777e+06  1.381524e+06   48  ...  0.000058  60.242908 -0.000007   \\n\",\n       \"3  1.655828e+06  1.372270e+06   45  ...  0.000047  69.535637 -0.000008   \\n\",\n       \"4  1.656225e+06  1.384492e+06   40  ...  0.000059  62.281456 -0.000007   \\n\",\n       \"\\n\",\n       \"           r       u10       v10   aod_sat  ndvi  pred_result  \\\\\\n\",\n       \"0  52.682091  0.384257  0.784808  0.762762  3443    52.025711   \\n\",\n       \"1  62.529091 -0.156175 -0.537717  0.574785  7810    41.102737   \\n\",\n       \"2  52.126640  0.093867  0.617515  0.796827  3328    52.553932   \\n\",\n       \"3  51.301529  0.197439  0.893495  0.758839  4535    51.534027   \\n\",\n       \"4  51.071964 -0.060543  0.634863  0.760148  3901    50.618057   \\n\",\n       \"\\n\",\n       \"   denormalized_pred_result  \\n\",\n       \"0                 52.025711  \\n\",\n       \"1                 41.102737  \\n\",\n       \"2                 52.553932  \\n\",\n       \"3                 51.534027  \\n\",\n       \"4                 50.618057  \\n\",\n       \"\\n\",\n       \"[5 rows x 24 columns]\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pred_res = gnnwr_load.predict(pred_dataset)\\n\",\n    \"pred_res.head(5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"C9421D7C42A14CF99F37CD7A513225E6\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 6 Visualization\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 6.1 Introductions to the Visualization Module\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"3C8394F94AC34D5A881B81968522EAD9\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"**Initialization (utils.Visualize)**\\n\",\n    \"\\n\",\n    \"params:  \\n\",\n    \"- data: An instance of the GNNWR or its derived model (required)  \\n\",\n    \"- lon_lat_columns: The longitude and latitude column names in the dataset. If not provided, the first two columns of `spatial_columns` will be used as longitude and latitude by default.\\n\",\n    \"\\n\",\n    \"```python\\n\",\n    \"visualizer = utils.Visualize(data = gnnwr, lon_lat_columns = ['lon','lat'])\\n\",\n    \"```\\n\",\n    \"\\n\",\n    \"**Dataset Visualization (display_dataset)**\\n\",\n    \"\\n\",\n    \"params:  \\n\",\n    \"- name: The dataset to display. Options are 'all', 'train', 'valid', 'test', representing the full dataset, training set, validation set, and test set respectively. Default is 'all'.  \\n\",\n    \"- y_column: The field to measure. Defaults to the first column in the dataset's `y_columns`.  \\n\",\n    \"- colors: Pass a color array to customize the color palette. Default is a yellow -> red palette.  \\n\",\n    \"- steps: Pass a positive integer to set the number of color gradations. Default is 20.  \\n\",\n    \"- vmin: Set the minimum value for the color palette. Defaults to the minimum value of the measurement data.  \\n\",\n    \"- vmax: Set the maximum value for the color palette. Defaults to the maximum value of the measurement data.\\n\",\n    \"\\n\",\n    \"```python\\n\",\n    \"visualizer.display_dataset(name='train', y_column='PM2_5', colors=['blue','green','yellow','red'], steps=50, vmin=0, vmax=100)\\n\",\n    \"```\\n\",\n    \"\\n\",\n    \"**Weights Visualization (weights_heatmap)**\\n\",\n    \"\\n\",\n    \"params:  \\n\",\n    \"- data_column: Select the weight field (required).  \\n\",\n    \"- colors: Pass a color array to customize the color palette. Default is a yellow -> red palette.  \\n\",\n    \"- steps: Pass a positive integer to set the number of color gradations. Default is 20.  \\n\",\n    \"- vmin: Set the minimum value for the color palette. Defaults to the minimum value of the measurement data.  \\n\",\n    \"- vmax: Set the maximum value for the color palette. Defaults to the maximum value of the measurement data.\\n\",\n    \"\\n\",\n    \"```python\\n\",\n    \"visualizer.weights_heatmap(data_column='weight_dem', colors=['blue','green','yellow','red'], steps=50, vmin=0, vmax=100)\\n\",\n    \"```\\n\",\n    \"\\n\",\n    \"**Custom Point Data Visualization (dot_map)**\\n\",\n    \"\\n\",\n    \"params:  \\n\",\n    \"- data: Pass the DataFrame used for visualization (required).  \\n\",\n    \"- lon_column: Longitude field name (required).  \\n\",\n    \"- lat_column: Latitude field name (required).  \\n\",\n    \"- y_column: Measurement value field name (required).  \\n\",\n    \"- zoom: Initial zoom level for the map. Default is 4.  \\n\",\n    \"- colors: Pass a color array to customize the color palette. Default is a yellow -> red palette.  \\n\",\n    \"- steps: Pass a positive integer to set the number of color gradations. Default is 20.  \\n\",\n    \"- vmin: Set the minimum value for the color palette. Defaults to the minimum value of the measurement data.  \\n\",\n    \"- vmax: Set the maximum value for the color palette. Defaults to the maximum value of the measurement data.\\n\",\n    \"\\n\",\n    \"```python\\n\",\n    \"visualizer.dot_map(data=df, lon_column='lon', lat_column='lat', y_column='res', zoom=1, colors=['blue','green','yellow','red'], steps=50, vmin=0, vmax=100)\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {\n    \"id\": \"B6761633E26143F7BFB37242F112873B\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"visualizer = utils.Visualize(data=gnnwr, lon_lat_columns=['lng', 'lat'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"FBA4F74AF8504C5099D45C5689AA04DE\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 6.2 Drawing the distribution of datasets  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Universal\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {\n    \"id\": \"D51E06156EEF40CC9064FC0D98F42347\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_169672f77f97c686a931b03447dcd812 {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_169672f77f97c686a931b03447dcd812&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_169672f77f97c686a931b03447dcd812 = L.map(\\n\",\n       \"                &quot;map_169672f77f97c686a931b03447dcd812&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_1d43157d794fbca1e82a400dd7d6608c = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_1d43157d794fbca1e82a400dd7d6608c.addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da71fcb1a74511f322c5255321b1c5c6 = L.circleMarker(\\n\",\n       \"                [30.8217, 106.1031],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b64588444d4bff08570f66fe8a59395 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0751e4d8990a3af0c21e5da0f81f37e5 = $(`&lt;div id=&quot;html_0751e4d8990a3af0c21e5da0f81f37e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1031             latitude:30.8217             PM2_5:47.4255618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b64588444d4bff08570f66fe8a59395.setContent(html_0751e4d8990a3af0c21e5da0f81f37e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da71fcb1a74511f322c5255321b1c5c6.bindPopup(popup_3b64588444d4bff08570f66fe8a59395)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61ddeaae18496d85e6b181eda6c866b7 = L.circleMarker(\\n\",\n       \"                [29.5186, 106.54],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a98633e10789a7fd4f834abb5937048 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e714898418fe6141033bee1bef3ddc2 = $(`&lt;div id=&quot;html_9e714898418fe6141033bee1bef3ddc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.54             latitude:29.5186             PM2_5:41.60526316             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a98633e10789a7fd4f834abb5937048.setContent(html_9e714898418fe6141033bee1bef3ddc2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61ddeaae18496d85e6b181eda6c866b7.bindPopup(popup_8a98633e10789a7fd4f834abb5937048)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_027743f24f1d55fc975cb113313b51a4 = L.circleMarker(\\n\",\n       \"                [31.7371, 116.508],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df20d35d7f0b5a5c6e2879e46cc25e13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9f8e714a984bd43aca3cad67d005837 = $(`&lt;div id=&quot;html_d9f8e714a984bd43aca3cad67d005837&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.508             latitude:31.7371             PM2_5:44.06005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df20d35d7f0b5a5c6e2879e46cc25e13.setContent(html_d9f8e714a984bd43aca3cad67d005837);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_027743f24f1d55fc975cb113313b51a4.bindPopup(popup_df20d35d7f0b5a5c6e2879e46cc25e13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3abbb46470f7f544281b718c921ba92 = L.circleMarker(\\n\",\n       \"                [34.6869, 112.4664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c433da934dfd057df837b64fc345b1e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea056e7634a946fdeeff392abf96cf59 = $(`&lt;div id=&quot;html_ea056e7634a946fdeeff392abf96cf59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4664             latitude:34.6869             PM2_5:59.93661972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c433da934dfd057df837b64fc345b1e0.setContent(html_ea056e7634a946fdeeff392abf96cf59);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3abbb46470f7f544281b718c921ba92.bindPopup(popup_c433da934dfd057df837b64fc345b1e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5955c6ae66390eb86f12fc4e7c2209c3 = L.circleMarker(\\n\",\n       \"                [31.1208, 104.4219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a76114d9d6207c90c103a8c7339e422e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_671dc54160612d1ee4ec8043996bc015 = $(`&lt;div id=&quot;html_671dc54160612d1ee4ec8043996bc015&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.4219             latitude:31.1208             PM2_5:42.56741573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a76114d9d6207c90c103a8c7339e422e.setContent(html_671dc54160612d1ee4ec8043996bc015);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5955c6ae66390eb86f12fc4e7c2209c3.bindPopup(popup_a76114d9d6207c90c103a8c7339e422e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_709127b464ce3c2e6c68069358492d0d = L.circleMarker(\\n\",\n       \"                [33.5653, 114.0322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9d341197607b0ee81197c13e4b0c7b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_000f8a65031e376ec3465d2718fb950e = $(`&lt;div id=&quot;html_000f8a65031e376ec3465d2718fb950e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0322             latitude:33.5653             PM2_5:55.8189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9d341197607b0ee81197c13e4b0c7b1.setContent(html_000f8a65031e376ec3465d2718fb950e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_709127b464ce3c2e6c68069358492d0d.bindPopup(popup_d9d341197607b0ee81197c13e4b0c7b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c1bf1a7159b1472c983f308af09ffc0 = L.circleMarker(\\n\",\n       \"                [32.02, 120.87],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d35758af58739137815f0f4a65341ff2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dfbc1a561aaf2c4795c4bf28e1ca31ee = $(`&lt;div id=&quot;html_dfbc1a561aaf2c4795c4bf28e1ca31ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.87             latitude:32.02             PM2_5:34.07799443             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d35758af58739137815f0f4a65341ff2.setContent(html_dfbc1a561aaf2c4795c4bf28e1ca31ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c1bf1a7159b1472c983f308af09ffc0.bindPopup(popup_d35758af58739137815f0f4a65341ff2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d95bf7893e5fe8680baf2d774d1beb6d = L.circleMarker(\\n\",\n       \"                [32.6975, 109.0072],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea54908e949f0f6579d30db7415334f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de39d86a72cb2d6e7aa3a52aa66d8b29 = $(`&lt;div id=&quot;html_de39d86a72cb2d6e7aa3a52aa66d8b29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0072             latitude:32.6975             PM2_5:42.6755618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea54908e949f0f6579d30db7415334f2.setContent(html_de39d86a72cb2d6e7aa3a52aa66d8b29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d95bf7893e5fe8680baf2d774d1beb6d.bindPopup(popup_ea54908e949f0f6579d30db7415334f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25883827a861078e4003b0b0e38f0a3b = L.circleMarker(\\n\",\n       \"                [40.715, 120.8478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3374d71a35d677162994d437d2b7c969 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e07733d45b8b6c87ae3b670556fc463e = $(`&lt;div id=&quot;html_e07733d45b8b6c87ae3b670556fc463e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8478             latitude:40.715             PM2_5:32.58615819             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3374d71a35d677162994d437d2b7c969.setContent(html_e07733d45b8b6c87ae3b670556fc463e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25883827a861078e4003b0b0e38f0a3b.bindPopup(popup_3374d71a35d677162994d437d2b7c969)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_124d2258f5ec611bf998bfb48f992a69 = L.circleMarker(\\n\",\n       \"                [33.5039, 119.135],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f36471437b02e902a6b0d952b2aec707 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55098e278fb2d9ce4379bebf187ac5f5 = $(`&lt;div id=&quot;html_55098e278fb2d9ce4379bebf187ac5f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.135             latitude:33.5039             PM2_5:45.50277008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f36471437b02e902a6b0d952b2aec707.setContent(html_55098e278fb2d9ce4379bebf187ac5f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_124d2258f5ec611bf998bfb48f992a69.bindPopup(popup_f36471437b02e902a6b0d952b2aec707)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e431b314184ace9567ac21231cdceba9 = L.circleMarker(\\n\",\n       \"                [28.0089, 120.634],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e63f6b8175f00456a6057d86cb5cc40 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21c00513e8465e8087f20c691dc9aa5a = $(`&lt;div id=&quot;html_21c00513e8465e8087f20c691dc9aa5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.634             latitude:28.0089             PM2_5:34.10277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e63f6b8175f00456a6057d86cb5cc40.setContent(html_21c00513e8465e8087f20c691dc9aa5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e431b314184ace9567ac21231cdceba9.bindPopup(popup_4e63f6b8175f00456a6057d86cb5cc40)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2245a8085db46b431d4f03a1edd0c532 = L.circleMarker(\\n\",\n       \"                [45.8194, 130.8625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cbe35650e5f243ff5268d627dee3b0f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2eec9cfa41482ac6e28295baa78ad73 = $(`&lt;div id=&quot;html_a2eec9cfa41482ac6e28295baa78ad73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.8625             latitude:45.8194             PM2_5:28.55477528             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cbe35650e5f243ff5268d627dee3b0f8.setContent(html_a2eec9cfa41482ac6e28295baa78ad73);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2245a8085db46b431d4f03a1edd0c532.bindPopup(popup_cbe35650e5f243ff5268d627dee3b0f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1ba56e330b06d93c4e7d1869a6565cd = L.circleMarker(\\n\",\n       \"                [29.8539, 114.2894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae4ddffc9bbb6d3f411556f56682f1c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37bf4bff5d984a9f33fe3c6f17409cee = $(`&lt;div id=&quot;html_37bf4bff5d984a9f33fe3c6f17409cee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2894             latitude:29.8539             PM2_5:36.90972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae4ddffc9bbb6d3f411556f56682f1c6.setContent(html_37bf4bff5d984a9f33fe3c6f17409cee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1ba56e330b06d93c4e7d1869a6565cd.bindPopup(popup_ae4ddffc9bbb6d3f411556f56682f1c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a877c9797174a3d75c5d2112f47050d = L.circleMarker(\\n\",\n       \"                [31.7308, 113.3983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2947a7a9e86c01a6870eb48307d6366d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c51e528f79c120622f488bbd1cf9fe16 = $(`&lt;div id=&quot;html_c51e528f79c120622f488bbd1cf9fe16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3983             latitude:31.7308             PM2_5:48.91364903             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2947a7a9e86c01a6870eb48307d6366d.setContent(html_c51e528f79c120622f488bbd1cf9fe16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a877c9797174a3d75c5d2112f47050d.bindPopup(popup_2947a7a9e86c01a6870eb48307d6366d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f7a286da166872d48162f2859d6905e = L.circleMarker(\\n\",\n       \"                [27.8328, 114.9289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ef9dfa78fd2f27514e42eab586b6233 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da7470f7eace72f2107df0dd613a0578 = $(`&lt;div id=&quot;html_da7470f7eace72f2107df0dd613a0578&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9289             latitude:27.8328             PM2_5:48.87916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ef9dfa78fd2f27514e42eab586b6233.setContent(html_da7470f7eace72f2107df0dd613a0578);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f7a286da166872d48162f2859d6905e.bindPopup(popup_1ef9dfa78fd2f27514e42eab586b6233)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de3f4b3c1a3ff1aa589f77ab9ec58b56 = L.circleMarker(\\n\",\n       \"                [36.2866, 100.6188],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1bae2d8533c038529cd74f2e8bbb40c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c8ceafb8af55194c630881b54a685473 = $(`&lt;div id=&quot;html_c8ceafb8af55194c630881b54a685473&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.6188             latitude:36.2866             PM2_5:22.37640449             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1bae2d8533c038529cd74f2e8bbb40c2.setContent(html_c8ceafb8af55194c630881b54a685473);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de3f4b3c1a3ff1aa589f77ab9ec58b56.bindPopup(popup_1bae2d8533c038529cd74f2e8bbb40c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9748c4f655954b00a01e5a3234a3d712 = L.circleMarker(\\n\",\n       \"                [40.1952, 116.23],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d2150ce421259676f6e32cdc4d620941 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a1ab91cab01ef1fca2466e7eec246b0 = $(`&lt;div id=&quot;html_8a1ab91cab01ef1fca2466e7eec246b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.23             latitude:40.1952             PM2_5:48.23876404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d2150ce421259676f6e32cdc4d620941.setContent(html_8a1ab91cab01ef1fca2466e7eec246b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9748c4f655954b00a01e5a3234a3d712.bindPopup(popup_d2150ce421259676f6e32cdc4d620941)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_767b53c8de9abe3cb117eeb02ccbb334 = L.circleMarker(\\n\",\n       \"                [21.9508, 108.6553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_451797cca53f500f4ca256448b04cf3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a885a90768ca1686f7ee272d5c7102e8 = $(`&lt;div id=&quot;html_a885a90768ca1686f7ee272d5c7102e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6553             latitude:21.9508             PM2_5:31.75706215             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_451797cca53f500f4ca256448b04cf3d.setContent(html_a885a90768ca1686f7ee272d5c7102e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_767b53c8de9abe3cb117eeb02ccbb334.bindPopup(popup_451797cca53f500f4ca256448b04cf3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_caef853c7bb802497014743f695a1637 = L.circleMarker(\\n\",\n       \"                [31.85805556, 106.7619444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8def0845848625876e3697263b50b68e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d52e4758d37d569df7f41cb2a83682c8 = $(`&lt;div id=&quot;html_d52e4758d37d569df7f41cb2a83682c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7619444             latitude:31.85805556             PM2_5:21.37042254             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8def0845848625876e3697263b50b68e.setContent(html_d52e4758d37d569df7f41cb2a83682c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_caef853c7bb802497014743f695a1637.bindPopup(popup_8def0845848625876e3697263b50b68e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_550ab7ec96ea50c2b7926e6e91e5e933 = L.circleMarker(\\n\",\n       \"                [45.8309, 130.9467],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43926b6aad4138b9cc53dd21647c4308 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_868706f5f35c8af2c3cf0117f206ebd6 = $(`&lt;div id=&quot;html_868706f5f35c8af2c3cf0117f206ebd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9467             latitude:45.8309             PM2_5:29.78267045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43926b6aad4138b9cc53dd21647c4308.setContent(html_868706f5f35c8af2c3cf0117f206ebd6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_550ab7ec96ea50c2b7926e6e91e5e933.bindPopup(popup_43926b6aad4138b9cc53dd21647c4308)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a52e98ab27d2013df57b2a879553b529 = L.circleMarker(\\n\",\n       \"                [36.0417, 111.4917],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a9a8eb26c73ea19e251421c7244542e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57ba08c32cbcb0b2e5ea653f46ddbf21 = $(`&lt;div id=&quot;html_57ba08c32cbcb0b2e5ea653f46ddbf21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4917             latitude:36.0417             PM2_5:72.86685552             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a9a8eb26c73ea19e251421c7244542e.setContent(html_57ba08c32cbcb0b2e5ea653f46ddbf21);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a52e98ab27d2013df57b2a879553b529.bindPopup(popup_2a9a8eb26c73ea19e251421c7244542e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_beee0f4ade1c511db17795286da00b28 = L.circleMarker(\\n\",\n       \"                [39.2282, 106.7704],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_059da0a742fc41a7856aef55848caa83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_204d821006fedfe860592f2f745e76b6 = $(`&lt;div id=&quot;html_204d821006fedfe860592f2f745e76b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7704             latitude:39.2282             PM2_5:42.43454039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_059da0a742fc41a7856aef55848caa83.setContent(html_204d821006fedfe860592f2f745e76b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_beee0f4ade1c511db17795286da00b28.bindPopup(popup_059da0a742fc41a7856aef55848caa83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb606c62e1d491e1785cb0586b4cd216 = L.circleMarker(\\n\",\n       \"                [37.18, 119.959],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28ea0efa3c0acbeccc48120e1ec4e792 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_277730432b00040e6621ac506a815bdd = $(`&lt;div id=&quot;html_277730432b00040e6621ac506a815bdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.959             latitude:37.18             PM2_5:36.77761628             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28ea0efa3c0acbeccc48120e1ec4e792.setContent(html_277730432b00040e6621ac506a815bdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb606c62e1d491e1785cb0586b4cd216.bindPopup(popup_28ea0efa3c0acbeccc48120e1ec4e792)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23eb10eb0170de7e4ae0d8c3f5cb8bea = L.circleMarker(\\n\",\n       \"                [34.6575, 109.2],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df23c86f353c48bdd60efaacd6168717 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9b6b510f5e95581fdb3128983239899e = $(`&lt;div id=&quot;html_9b6b510f5e95581fdb3128983239899e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2             latitude:34.6575             PM2_5:67.91428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df23c86f353c48bdd60efaacd6168717.setContent(html_9b6b510f5e95581fdb3128983239899e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23eb10eb0170de7e4ae0d8c3f5cb8bea.bindPopup(popup_df23c86f353c48bdd60efaacd6168717)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca2d976840636734b4044dc5e6f5a885 = L.circleMarker(\\n\",\n       \"                [30.5494, 114.3006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de8840f1c88a5d50dbd81bb769f67819 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3bfe3bcfeb2482e66fe36dc015bf6f59 = $(`&lt;div id=&quot;html_3bfe3bcfeb2482e66fe36dc015bf6f59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3006             latitude:30.5494             PM2_5:44.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de8840f1c88a5d50dbd81bb769f67819.setContent(html_3bfe3bcfeb2482e66fe36dc015bf6f59);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca2d976840636734b4044dc5e6f5a885.bindPopup(popup_de8840f1c88a5d50dbd81bb769f67819)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_349f0d90811952b4b86b5761a0bf83c8 = L.circleMarker(\\n\",\n       \"                [25.1035, 117.0216],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ec93a7534369692effda033d43929ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c541c10af960abdc09c917af65c880c = $(`&lt;div id=&quot;html_0c541c10af960abdc09c917af65c880c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0216             latitude:25.1035             PM2_5:24.6232493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ec93a7534369692effda033d43929ca.setContent(html_0c541c10af960abdc09c917af65c880c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_349f0d90811952b4b86b5761a0bf83c8.bindPopup(popup_4ec93a7534369692effda033d43929ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c4746c8fbd7bfa9a66d9d488f1d07ea = L.circleMarker(\\n\",\n       \"                [32.8603, 115.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f66e5e4017df4717f8e89a853180caf8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44bff78dedd9de3d1e86aa5441cf38a0 = $(`&lt;div id=&quot;html_44bff78dedd9de3d1e86aa5441cf38a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8556             latitude:32.8603             PM2_5:54.9719888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f66e5e4017df4717f8e89a853180caf8.setContent(html_44bff78dedd9de3d1e86aa5441cf38a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c4746c8fbd7bfa9a66d9d488f1d07ea.bindPopup(popup_f66e5e4017df4717f8e89a853180caf8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82f760b7e59e40ac36a29c5c3eddadd0 = L.circleMarker(\\n\",\n       \"                [36.1851, 120.3905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fcb5bff00fde580625957dae3eeb5860 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c75c6f93436fe3052b2bf91536fcade = $(`&lt;div id=&quot;html_4c75c6f93436fe3052b2bf91536fcade&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.3905             latitude:36.1851             PM2_5:42.19219653             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fcb5bff00fde580625957dae3eeb5860.setContent(html_4c75c6f93436fe3052b2bf91536fcade);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82f760b7e59e40ac36a29c5c3eddadd0.bindPopup(popup_fcb5bff00fde580625957dae3eeb5860)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84f0d9b8a43e879cebf5551f8d57e57c = L.circleMarker(\\n\",\n       \"                [39.6308, 118.1662],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a95a70d26571b29b8324f454e7b4fc13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_41c9aff812dcd9f2ada08d91e4e1343d = $(`&lt;div id=&quot;html_41c9aff812dcd9f2ada08d91e4e1343d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1662             latitude:39.6308             PM2_5:47.58448753             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a95a70d26571b29b8324f454e7b4fc13.setContent(html_41c9aff812dcd9f2ada08d91e4e1343d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84f0d9b8a43e879cebf5551f8d57e57c.bindPopup(popup_a95a70d26571b29b8324f454e7b4fc13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82580b2371e646fc63b820396e5c06f0 = L.circleMarker(\\n\",\n       \"                [24.9424, 118.6663],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8a72b95a1a64cfdce208e8510d512b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a1afde9b23d71bd68d51c9d7d11be34 = $(`&lt;div id=&quot;html_1a1afde9b23d71bd68d51c9d7d11be34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6663             latitude:24.9424             PM2_5:26.91374269             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8a72b95a1a64cfdce208e8510d512b3.setContent(html_1a1afde9b23d71bd68d51c9d7d11be34);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82580b2371e646fc63b820396e5c06f0.bindPopup(popup_f8a72b95a1a64cfdce208e8510d512b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_470b96a0b6d89d5d7b1101c43941c59e = L.circleMarker(\\n\",\n       \"                [43.7878, 125.454],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2434798842b4f6c3fd75d5c0c73c7188 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8402c1cab341b3597238b85c11032e7e = $(`&lt;div id=&quot;html_8402c1cab341b3597238b85c11032e7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.454             latitude:43.7878             PM2_5:22.37073864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2434798842b4f6c3fd75d5c0c73c7188.setContent(html_8402c1cab341b3597238b85c11032e7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_470b96a0b6d89d5d7b1101c43941c59e.bindPopup(popup_2434798842b4f6c3fd75d5c0c73c7188)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81ea5317f69c024ec307031189fcbd37 = L.circleMarker(\\n\",\n       \"                [29.8181, 114.3036],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef575d8bd93de910ddb4745f8e6cf81c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55702b319dd3b9afa9e87278d1b8ee31 = $(`&lt;div id=&quot;html_55702b319dd3b9afa9e87278d1b8ee31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3036             latitude:29.8181             PM2_5:41.71910112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef575d8bd93de910ddb4745f8e6cf81c.setContent(html_55702b319dd3b9afa9e87278d1b8ee31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81ea5317f69c024ec307031189fcbd37.bindPopup(popup_ef575d8bd93de910ddb4745f8e6cf81c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc2dfeb4a4d69f0575af4c7d2f672d6d = L.circleMarker(\\n\",\n       \"                [24.3158, 109.4839],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f74e1c4a2ea2cd96c3f9dbd98fff9e3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_228aceec55a77f1cb9c7ccaf7c2817d9 = $(`&lt;div id=&quot;html_228aceec55a77f1cb9c7ccaf7c2817d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4839             latitude:24.3158             PM2_5:34.85854342             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f74e1c4a2ea2cd96c3f9dbd98fff9e3a.setContent(html_228aceec55a77f1cb9c7ccaf7c2817d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc2dfeb4a4d69f0575af4c7d2f672d6d.bindPopup(popup_f74e1c4a2ea2cd96c3f9dbd98fff9e3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ccfce02703d9fed1e6d79aded098ae4 = L.circleMarker(\\n\",\n       \"                [26.567, 101.7227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00452cb0e43b7df074f443d7503aa840 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf5efac6b4b87ebdded77f97e14f739c = $(`&lt;div id=&quot;html_bf5efac6b4b87ebdded77f97e14f739c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7227             latitude:26.567             PM2_5:25.5362117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00452cb0e43b7df074f443d7503aa840.setContent(html_bf5efac6b4b87ebdded77f97e14f739c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ccfce02703d9fed1e6d79aded098ae4.bindPopup(popup_00452cb0e43b7df074f443d7503aa840)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_625ea0f42a3296ea4695e70beff05e86 = L.circleMarker(\\n\",\n       \"                [32.0092, 118.737],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b91b3efa9e984460d3ba05f4687a7b14 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_340b6eba3f539f97c1eae94548705613 = $(`&lt;div id=&quot;html_340b6eba3f539f97c1eae94548705613&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.737             latitude:32.0092             PM2_5:46.43521127             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b91b3efa9e984460d3ba05f4687a7b14.setContent(html_340b6eba3f539f97c1eae94548705613);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_625ea0f42a3296ea4695e70beff05e86.bindPopup(popup_b91b3efa9e984460d3ba05f4687a7b14)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9fef556e801e2b342d6e701a39ac893 = L.circleMarker(\\n\",\n       \"                [34.9162, 113.6113],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_902994c8d3643ca5fdfc4c196aeb1c11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c22d9557499d87a380ce154d4f7d3283 = $(`&lt;div id=&quot;html_c22d9557499d87a380ce154d4f7d3283&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6113             latitude:34.9162             PM2_5:59.82294618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_902994c8d3643ca5fdfc4c196aeb1c11.setContent(html_c22d9557499d87a380ce154d4f7d3283);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9fef556e801e2b342d6e701a39ac893.bindPopup(popup_902994c8d3643ca5fdfc4c196aeb1c11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e002fdf6d83cab8be1423fcbe87e7331 = L.circleMarker(\\n\",\n       \"                [34.719, 113.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_958c11fa2b74d84a9e70a5f6b2a76678 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_adfe3ac0c6c11e7e142247ee16974ea4 = $(`&lt;div id=&quot;html_adfe3ac0c6c11e7e142247ee16974ea4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.734             latitude:34.719             PM2_5:62.79378531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_958c11fa2b74d84a9e70a5f6b2a76678.setContent(html_adfe3ac0c6c11e7e142247ee16974ea4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e002fdf6d83cab8be1423fcbe87e7331.bindPopup(popup_958c11fa2b74d84a9e70a5f6b2a76678)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33b0b532bb1ee461f3b4e1c5b65a1690 = L.circleMarker(\\n\",\n       \"                [29.3578, 113.1094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_495488a55fff171aeb0a6dbc18fcb544 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04c9f7756f18a5212c58285ad23b2738 = $(`&lt;div id=&quot;html_04c9f7756f18a5212c58285ad23b2738&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1094             latitude:29.3578             PM2_5:52.86376404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_495488a55fff171aeb0a6dbc18fcb544.setContent(html_04c9f7756f18a5212c58285ad23b2738);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33b0b532bb1ee461f3b4e1c5b65a1690.bindPopup(popup_495488a55fff171aeb0a6dbc18fcb544)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c252f01731f665becd120ae8174e0cc = L.circleMarker(\\n\",\n       \"                [22.9394, 112.0369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d1df293388053c8acb6e293da472a72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35d6f0b418d145f9d71e7f73f9fa8e52 = $(`&lt;div id=&quot;html_35d6f0b418d145f9d71e7f73f9fa8e52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0369             latitude:22.9394             PM2_5:34.66527778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d1df293388053c8acb6e293da472a72.setContent(html_35d6f0b418d145f9d71e7f73f9fa8e52);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c252f01731f665becd120ae8174e0cc.bindPopup(popup_0d1df293388053c8acb6e293da472a72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_743d8afa8c32e9d572a2a8cc034aa472 = L.circleMarker(\\n\",\n       \"                [27.8614, 112.9433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_959886d3c6b1ef2c752c255ee3e98c43 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38fe176b174ed71ef494024eba4fce87 = $(`&lt;div id=&quot;html_38fe176b174ed71ef494024eba4fce87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9433             latitude:27.8614             PM2_5:42.59331476             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_959886d3c6b1ef2c752c255ee3e98c43.setContent(html_38fe176b174ed71ef494024eba4fce87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_743d8afa8c32e9d572a2a8cc034aa472.bindPopup(popup_959886d3c6b1ef2c752c255ee3e98c43)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a914d116834d8a91b48a35e8727fc047 = L.circleMarker(\\n\",\n       \"                [23.1478, 109.5681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2f7863de953438c42245d4edae2a526 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b13e10826bd0dfb6502fb38d660a8c09 = $(`&lt;div id=&quot;html_b13e10826bd0dfb6502fb38d660a8c09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5681             latitude:23.1478             PM2_5:38.18571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2f7863de953438c42245d4edae2a526.setContent(html_b13e10826bd0dfb6502fb38d660a8c09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a914d116834d8a91b48a35e8727fc047.bindPopup(popup_e2f7863de953438c42245d4edae2a526)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13eb570e34cf02ac760c37a6c8fec514 = L.circleMarker(\\n\",\n       \"                [39.8261, 109.9486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4ab56e35ba791fee6b410f6991612f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4faf6fdf38af808c355c1155cdb2a2bf = $(`&lt;div id=&quot;html_4faf6fdf38af808c355c1155cdb2a2bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9486             latitude:39.8261             PM2_5:28.75915493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4ab56e35ba791fee6b410f6991612f7.setContent(html_4faf6fdf38af808c355c1155cdb2a2bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13eb570e34cf02ac760c37a6c8fec514.bindPopup(popup_d4ab56e35ba791fee6b410f6991612f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2584c02a89f0540a85e5b010ec786a49 = L.circleMarker(\\n\",\n       \"                [27.7569, 111.9561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a765cc985462a92e7c5a72740fcee1fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2dc0791dd1e22c590e882b089daf041 = $(`&lt;div id=&quot;html_c2dc0791dd1e22c590e882b089daf041&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9561             latitude:27.7569             PM2_5:35.39577465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a765cc985462a92e7c5a72740fcee1fd.setContent(html_c2dc0791dd1e22c590e882b089daf041);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2584c02a89f0540a85e5b010ec786a49.bindPopup(popup_a765cc985462a92e7c5a72740fcee1fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f00250ce3f0c186e05604b8ed63a203 = L.circleMarker(\\n\",\n       \"                [26.5155, 106.6948],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffce9a6da68a601d404be9e77e1446b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d780aab56c8c6bce53f013032525e4a2 = $(`&lt;div id=&quot;html_d780aab56c8c6bce53f013032525e4a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6948             latitude:26.5155             PM2_5:35.31601124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffce9a6da68a601d404be9e77e1446b7.setContent(html_d780aab56c8c6bce53f013032525e4a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f00250ce3f0c186e05604b8ed63a203.bindPopup(popup_ffce9a6da68a601d404be9e77e1446b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b34cac15206301d969d9e48526a652a0 = L.circleMarker(\\n\",\n       \"                [30.6103, 114.4272],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e64cd07fd3a79e82c38c3f69fa4fe962 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6cb902952e039f24e4ccca1a7055fc2 = $(`&lt;div id=&quot;html_f6cb902952e039f24e4ccca1a7055fc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4272             latitude:30.6103             PM2_5:57.25492958             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e64cd07fd3a79e82c38c3f69fa4fe962.setContent(html_f6cb902952e039f24e4ccca1a7055fc2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b34cac15206301d969d9e48526a652a0.bindPopup(popup_e64cd07fd3a79e82c38c3f69fa4fe962)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_046a5efe87aef610b2f07b5575448d89 = L.circleMarker(\\n\",\n       \"                [43.1747, 124.3419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60b14fe23f7b18db9ab66bec1981c64c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f2991558df2df0b3133fcd7ee62a435 = $(`&lt;div id=&quot;html_3f2991558df2df0b3133fcd7ee62a435&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3419             latitude:43.1747             PM2_5:44.17746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60b14fe23f7b18db9ab66bec1981c64c.setContent(html_3f2991558df2df0b3133fcd7ee62a435);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_046a5efe87aef610b2f07b5575448d89.bindPopup(popup_60b14fe23f7b18db9ab66bec1981c64c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e2cf37781c03f67694a1faf0c7a2ff7 = L.circleMarker(\\n\",\n       \"                [30.7856, 106.1064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5dcc635124c1068391f8785d6820e0a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4f841bf350e7967f5e5d52fa73950de = $(`&lt;div id=&quot;html_f4f841bf350e7967f5e5d52fa73950de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1064             latitude:30.7856             PM2_5:49.45391061             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5dcc635124c1068391f8785d6820e0a7.setContent(html_f4f841bf350e7967f5e5d52fa73950de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e2cf37781c03f67694a1faf0c7a2ff7.bindPopup(popup_5dcc635124c1068391f8785d6820e0a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f87317242a17b4dcec5649f7e8cc01b7 = L.circleMarker(\\n\",\n       \"                [27.6869, 106.9222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab64ecbfe92bb4f963489350694f4a81 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c0ce8a773d2cbc0e2318a2cac6528a1 = $(`&lt;div id=&quot;html_7c0ce8a773d2cbc0e2318a2cac6528a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9222             latitude:27.6869             PM2_5:30.9275766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab64ecbfe92bb4f963489350694f4a81.setContent(html_7c0ce8a773d2cbc0e2318a2cac6528a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f87317242a17b4dcec5649f7e8cc01b7.bindPopup(popup_ab64ecbfe92bb4f963489350694f4a81)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b9ca0532b23112e96de1f02ab3106d8 = L.circleMarker(\\n\",\n       \"                [32.105, 118.907],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80d328888b2b239f71b713bc6c055ef6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6fbc9963a695fd54d032eb19f3e463c = $(`&lt;div id=&quot;html_e6fbc9963a695fd54d032eb19f3e463c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.907             latitude:32.105             PM2_5:37.08189655             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80d328888b2b239f71b713bc6c055ef6.setContent(html_e6fbc9963a695fd54d032eb19f3e463c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b9ca0532b23112e96de1f02ab3106d8.bindPopup(popup_80d328888b2b239f71b713bc6c055ef6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5deed93eed70557a8e486f58b85c0acb = L.circleMarker(\\n\",\n       \"                [26.5495, 106.6867],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_153371943beffba07d942ee62e823b7d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70fc8db6d3209f220097fc0e9181fe7e = $(`&lt;div id=&quot;html_70fc8db6d3209f220097fc0e9181fe7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6867             latitude:26.5495             PM2_5:26.4756447             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_153371943beffba07d942ee62e823b7d.setContent(html_70fc8db6d3209f220097fc0e9181fe7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5deed93eed70557a8e486f58b85c0acb.bindPopup(popup_153371943beffba07d942ee62e823b7d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d32dc9ef1c33cd2f06629021e0fa03e = L.circleMarker(\\n\",\n       \"                [39.4365, 75.9435],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_622021aa6850709b6e07d929247e7883 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd4a49d8373a14bc81fce54136d93685 = $(`&lt;div id=&quot;html_dd4a49d8373a14bc81fce54136d93685&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:75.9435             latitude:39.4365             PM2_5:133.8005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_622021aa6850709b6e07d929247e7883.setContent(html_dd4a49d8373a14bc81fce54136d93685);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d32dc9ef1c33cd2f06629021e0fa03e.bindPopup(popup_622021aa6850709b6e07d929247e7883)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cecd280b113b30bfa1f1904aff58cb8f = L.circleMarker(\\n\",\n       \"                [24.5157, 117.6569],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08f033fcb49b13abf38bc4c738e0a879 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_732dcc6f1e9b03ade20c048977a29bcc = $(`&lt;div id=&quot;html_732dcc6f1e9b03ade20c048977a29bcc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6569             latitude:24.5157             PM2_5:27.33613445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08f033fcb49b13abf38bc4c738e0a879.setContent(html_732dcc6f1e9b03ade20c048977a29bcc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cecd280b113b30bfa1f1904aff58cb8f.bindPopup(popup_08f033fcb49b13abf38bc4c738e0a879)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3200ae99a33869336c2181ad5d702753 = L.circleMarker(\\n\",\n       \"                [47.7317, 128.9094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfbe671be8752598a058eaf29abe906d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7347f2dd9964ea6dd2b3a21d8d389e6 = $(`&lt;div id=&quot;html_f7347f2dd9964ea6dd2b3a21d8d389e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:128.9094             latitude:47.7317             PM2_5:18.82248521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfbe671be8752598a058eaf29abe906d.setContent(html_f7347f2dd9964ea6dd2b3a21d8d389e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3200ae99a33869336c2181ad5d702753.bindPopup(popup_dfbe671be8752598a058eaf29abe906d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee7f974c387650d497fa074738f67507 = L.circleMarker(\\n\",\n       \"                [47.9047, 88.1214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e85cf32778493c01ffae44400595b2e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3741f232af29dcf90ff9c4822fa12875 = $(`&lt;div id=&quot;html_3741f232af29dcf90ff9c4822fa12875&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.1214             latitude:47.9047             PM2_5:9.540785498             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e85cf32778493c01ffae44400595b2e.setContent(html_3741f232af29dcf90ff9c4822fa12875);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee7f974c387650d497fa074738f67507.bindPopup(popup_3e85cf32778493c01ffae44400595b2e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83741afba284719913a3203fc802bcbe = L.circleMarker(\\n\",\n       \"                [31.9438, 117.266],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47eaf028af73c982a3c76d86d4f86269 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78041c3b678e158d8cc2fca4d7dbd702 = $(`&lt;div id=&quot;html_78041c3b678e158d8cc2fca4d7dbd702&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.266             latitude:31.9438             PM2_5:52.0210084             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47eaf028af73c982a3c76d86d4f86269.setContent(html_78041c3b678e158d8cc2fca4d7dbd702);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83741afba284719913a3203fc802bcbe.bindPopup(popup_47eaf028af73c982a3c76d86d4f86269)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75386883dd25d40066a7aedae8765b76 = L.circleMarker(\\n\",\n       \"                [41.1386, 121.1303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1484b2195c580b753256e583df013b70 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_deaa3fe312fd081daedfe763378f8842 = $(`&lt;div id=&quot;html_deaa3fe312fd081daedfe763378f8842&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1303             latitude:41.1386             PM2_5:33.10893855             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1484b2195c580b753256e583df013b70.setContent(html_deaa3fe312fd081daedfe763378f8842);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75386883dd25d40066a7aedae8765b76.bindPopup(popup_1484b2195c580b753256e583df013b70)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_491cd447a4acf60984beb7c3e443f1fa = L.circleMarker(\\n\",\n       \"                [29.1456, 111.7158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a815bc15cdb209773e298f640cde0975 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d28660ba691f1bda0964e603f7f71fb7 = $(`&lt;div id=&quot;html_d28660ba691f1bda0964e603f7f71fb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7158             latitude:29.1456             PM2_5:34.8832853             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a815bc15cdb209773e298f640cde0975.setContent(html_d28660ba691f1bda0964e603f7f71fb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_491cd447a4acf60984beb7c3e443f1fa.bindPopup(popup_a815bc15cdb209773e298f640cde0975)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90c6e0dd84635c4a662db6361d156a5b = L.circleMarker(\\n\",\n       \"                [38.95111111, 121.565],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b61dd5bdb8cfa13fc825ba0248ab629 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0958ee3620a13a931cf0702a7b621a8 = $(`&lt;div id=&quot;html_d0958ee3620a13a931cf0702a7b621a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.565             latitude:38.95111111             PM2_5:28.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b61dd5bdb8cfa13fc825ba0248ab629.setContent(html_d0958ee3620a13a931cf0702a7b621a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90c6e0dd84635c4a662db6361d156a5b.bindPopup(popup_2b61dd5bdb8cfa13fc825ba0248ab629)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7de57aa66cf5d174c2b15cfe90410626 = L.circleMarker(\\n\",\n       \"                [37.3617, 118.0018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a770d94ac9df95cff54543a2c1bb3a2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86b0104f6725051f30c7d725b48e716a = $(`&lt;div id=&quot;html_86b0104f6725051f30c7d725b48e716a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0018             latitude:37.3617             PM2_5:54.07541899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a770d94ac9df95cff54543a2c1bb3a2d.setContent(html_86b0104f6725051f30c7d725b48e716a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7de57aa66cf5d174c2b15cfe90410626.bindPopup(popup_a770d94ac9df95cff54543a2c1bb3a2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9802a5078f079ff86de72686c3109c5b = L.circleMarker(\\n\",\n       \"                [29.5634, 103.757],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c96849178e26ba19df67fc99fe0db51e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e052964702bca662464fd23526a1917 = $(`&lt;div id=&quot;html_3e052964702bca662464fd23526a1917&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.757             latitude:29.5634             PM2_5:52.01133144             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c96849178e26ba19df67fc99fe0db51e.setContent(html_3e052964702bca662464fd23526a1917);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9802a5078f079ff86de72686c3109c5b.bindPopup(popup_c96849178e26ba19df67fc99fe0db51e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f12cac2c78909f95fda3d71af24e6c00 = L.circleMarker(\\n\",\n       \"                [25.8664, 114.9367],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b8dfb17e547263a8983cd8d5b3ea9c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14402a64735390d6615709896d0fc5b6 = $(`&lt;div id=&quot;html_14402a64735390d6615709896d0fc5b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9367             latitude:25.8664             PM2_5:47.77146814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b8dfb17e547263a8983cd8d5b3ea9c6.setContent(html_14402a64735390d6615709896d0fc5b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f12cac2c78909f95fda3d71af24e6c00.bindPopup(popup_6b8dfb17e547263a8983cd8d5b3ea9c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1828f881c63153f43873e284763d43e8 = L.circleMarker(\\n\",\n       \"                [41.9419, 126.4078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23dde33731b1033d95a74b6a2d6f23ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c99aa36d8a89711eef7233c660e0c404 = $(`&lt;div id=&quot;html_c99aa36d8a89711eef7233c660e0c404&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4078             latitude:41.9419             PM2_5:32.37709497             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23dde33731b1033d95a74b6a2d6f23ea.setContent(html_c99aa36d8a89711eef7233c660e0c404);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1828f881c63153f43873e284763d43e8.bindPopup(popup_23dde33731b1033d95a74b6a2d6f23ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ee797c6c46d53fbfe24f5c9bd82d626 = L.circleMarker(\\n\",\n       \"                [29.8208, 121.56],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36292a0fe080158d8552b77996ec8136 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff528ace93827105178f8b43a4aa301a = $(`&lt;div id=&quot;html_ff528ace93827105178f8b43a4aa301a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.56             latitude:29.8208             PM2_5:36.98472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36292a0fe080158d8552b77996ec8136.setContent(html_ff528ace93827105178f8b43a4aa301a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ee797c6c46d53fbfe24f5c9bd82d626.bindPopup(popup_36292a0fe080158d8552b77996ec8136)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fc7924269630cf9eb812d05755adf48 = L.circleMarker(\\n\",\n       \"                [37.7019, 112.7549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c401666d919eeabb580a99374a23d5eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_32015ec93327c2bbbff3183639c33c5f = $(`&lt;div id=&quot;html_32015ec93327c2bbbff3183639c33c5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7549             latitude:37.7019             PM2_5:59.83055556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c401666d919eeabb580a99374a23d5eb.setContent(html_32015ec93327c2bbbff3183639c33c5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fc7924269630cf9eb812d05755adf48.bindPopup(popup_c401666d919eeabb580a99374a23d5eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59a6c380803c3eb4db8100b8aba0203b = L.circleMarker(\\n\",\n       \"                [31.1108, 104.3539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d064d530ce7ae56ccecc8c0478d7376f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_457189c08e6c239e1a40e10ea4381ff0 = $(`&lt;div id=&quot;html_457189c08e6c239e1a40e10ea4381ff0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.3539             latitude:31.1108             PM2_5:63.7266289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d064d530ce7ae56ccecc8c0478d7376f.setContent(html_457189c08e6c239e1a40e10ea4381ff0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59a6c380803c3eb4db8100b8aba0203b.bindPopup(popup_d064d530ce7ae56ccecc8c0478d7376f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61983e0ce34a294c17aeb11374cfd96e = L.circleMarker(\\n\",\n       \"                [36.253, 120.014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c225d39014d34f58b77e7405953ce1b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29682c4e53ed1ee451dd51326f6472a3 = $(`&lt;div id=&quot;html_29682c4e53ed1ee451dd51326f6472a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.014             latitude:36.253             PM2_5:33.08732394             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c225d39014d34f58b77e7405953ce1b3.setContent(html_29682c4e53ed1ee451dd51326f6472a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61983e0ce34a294c17aeb11374cfd96e.bindPopup(popup_c225d39014d34f58b77e7405953ce1b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12ad15e92896171ea0596b767ec4da09 = L.circleMarker(\\n\",\n       \"                [23.3682, 103.3758],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d932aeed46e6370c5be2a8150d5a0507 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8fe5a749000feced1cccd1b66e5a65e = $(`&lt;div id=&quot;html_d8fe5a749000feced1cccd1b66e5a65e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.3758             latitude:23.3682             PM2_5:30.92655367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d932aeed46e6370c5be2a8150d5a0507.setContent(html_d8fe5a749000feced1cccd1b66e5a65e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12ad15e92896171ea0596b767ec4da09.bindPopup(popup_d932aeed46e6370c5be2a8150d5a0507)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7382a6e039a49ab2143f8e74bd043fc = L.circleMarker(\\n\",\n       \"                [41.0931, 123.011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d64b094cc01114e0d12c4b6016e7b5ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_720eb134238d9cc81567470877b12b7d = $(`&lt;div id=&quot;html_720eb134238d9cc81567470877b12b7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.011             latitude:41.0931             PM2_5:28.875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d64b094cc01114e0d12c4b6016e7b5ed.setContent(html_720eb134238d9cc81567470877b12b7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7382a6e039a49ab2143f8e74bd043fc.bindPopup(popup_d64b094cc01114e0d12c4b6016e7b5ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_55791069303cc86bc3af3e9bf24ae793 = L.circleMarker(\\n\",\n       \"                [31.7956, 117.302],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a21a429372d1bb7a5dd985729b531c8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db0c6f60fa362f955dbb9df643359c66 = $(`&lt;div id=&quot;html_db0c6f60fa362f955dbb9df643359c66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.302             latitude:31.7956             PM2_5:51.98022599             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a21a429372d1bb7a5dd985729b531c8f.setContent(html_db0c6f60fa362f955dbb9df643359c66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_55791069303cc86bc3af3e9bf24ae793.bindPopup(popup_a21a429372d1bb7a5dd985729b531c8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc8f9da56ddabc029165e9277b3af3d6 = L.circleMarker(\\n\",\n       \"                [22.5111, 113.4075],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb9abcd9aa79ea14fa40fddc2ebd9fb4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2572dd2c5a7f7d036cf953d706304c36 = $(`&lt;div id=&quot;html_2572dd2c5a7f7d036cf953d706304c36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4075             latitude:22.5111             PM2_5:29.46927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb9abcd9aa79ea14fa40fddc2ebd9fb4.setContent(html_2572dd2c5a7f7d036cf953d706304c36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc8f9da56ddabc029165e9277b3af3d6.bindPopup(popup_eb9abcd9aa79ea14fa40fddc2ebd9fb4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfcb3dd3150ff5d12493d78858f85b1d = L.circleMarker(\\n\",\n       \"                [29.6541, 91.1774],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb0ad24f8035c090b85c132708bbdbdc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92f1b4ee24854546856c4f76b74bdc5a = $(`&lt;div id=&quot;html_92f1b4ee24854546856c4f76b74bdc5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1774             latitude:29.6541             PM2_5:13.734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb0ad24f8035c090b85c132708bbdbdc.setContent(html_92f1b4ee24854546856c4f76b74bdc5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfcb3dd3150ff5d12493d78858f85b1d.bindPopup(popup_eb0ad24f8035c090b85c132708bbdbdc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e1de8b4f28df709cce5fffe6328cb72 = L.circleMarker(\\n\",\n       \"                [26.6761, 118.0966],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22ab6e2fccfa5fbaa694cf722750c194 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_360a5bcfa23bd46e7c306ea7589c970d = $(`&lt;div id=&quot;html_360a5bcfa23bd46e7c306ea7589c970d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0966             latitude:26.6761             PM2_5:19.22050562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22ab6e2fccfa5fbaa694cf722750c194.setContent(html_360a5bcfa23bd46e7c306ea7589c970d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e1de8b4f28df709cce5fffe6328cb72.bindPopup(popup_22ab6e2fccfa5fbaa694cf722750c194)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51f3bb92351882640a7890c271aec655 = L.circleMarker(\\n\",\n       \"                [35.4883, 112.8564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78a05091ec9db19420efd8cc76fa5afe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2836194e4b567a78a969fbafdaeb6caa = $(`&lt;div id=&quot;html_2836194e4b567a78a969fbafdaeb6caa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8564             latitude:35.4883             PM2_5:59.66573816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78a05091ec9db19420efd8cc76fa5afe.setContent(html_2836194e4b567a78a969fbafdaeb6caa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51f3bb92351882640a7890c271aec655.bindPopup(popup_78a05091ec9db19420efd8cc76fa5afe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62f453aeb7ad763d0963e57fe5121e0b = L.circleMarker(\\n\",\n       \"                [37.187, 122.019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7609d1d966f4f45e049d2d7b9a100327 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18a1aa109c87c956a5e0753a63e9cc72 = $(`&lt;div id=&quot;html_18a1aa109c87c956a5e0753a63e9cc72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.019             latitude:37.187             PM2_5:19.37711864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7609d1d966f4f45e049d2d7b9a100327.setContent(html_18a1aa109c87c956a5e0753a63e9cc72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62f453aeb7ad763d0963e57fe5121e0b.bindPopup(popup_7609d1d966f4f45e049d2d7b9a100327)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80bd5d81c2481ccca6cf31054b64e1da = L.circleMarker(\\n\",\n       \"                [34.493, 109.4636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e1b3556b859edd97f7966eaf4103543 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_036dfccd607c67a97b98f9e66494a8e8 = $(`&lt;div id=&quot;html_036dfccd607c67a97b98f9e66494a8e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4636             latitude:34.493             PM2_5:70.88997214             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e1b3556b859edd97f7966eaf4103543.setContent(html_036dfccd607c67a97b98f9e66494a8e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80bd5d81c2481ccca6cf31054b64e1da.bindPopup(popup_8e1b3556b859edd97f7966eaf4103543)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_829bdc7289a6264590c378f4cbbaba90 = L.circleMarker(\\n\",\n       \"                [39.7884, 109.9734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70096214a28f1e1175411393c50ab8f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89d3725313f9e0fb9d34d88080f422d1 = $(`&lt;div id=&quot;html_89d3725313f9e0fb9d34d88080f422d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9734             latitude:39.7884             PM2_5:24.92339833             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70096214a28f1e1175411393c50ab8f1.setContent(html_89d3725313f9e0fb9d34d88080f422d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_829bdc7289a6264590c378f4cbbaba90.bindPopup(popup_70096214a28f1e1175411393c50ab8f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c0b158ef597f8225458eafca6a9555a = L.circleMarker(\\n\",\n       \"                [30.1808, 120.088],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_389891d982c03173743eef450ee486bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac4e3700930fc9cc5f9a41b78af95be4 = $(`&lt;div id=&quot;html_ac4e3700930fc9cc5f9a41b78af95be4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.088             latitude:30.1808             PM2_5:34.76264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_389891d982c03173743eef450ee486bd.setContent(html_ac4e3700930fc9cc5f9a41b78af95be4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c0b158ef597f8225458eafca6a9555a.bindPopup(popup_389891d982c03173743eef450ee486bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e1cc9384e2b677049579eab938fee64 = L.circleMarker(\\n\",\n       \"                [35.76806, 115.0061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40d92adbdedec30656df2aef19ce4025 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f5825bca93ffd6a22fbe121ad25fde69 = $(`&lt;div id=&quot;html_f5825bca93ffd6a22fbe121ad25fde69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0061             latitude:35.76806             PM2_5:62.33002833             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40d92adbdedec30656df2aef19ce4025.setContent(html_f5825bca93ffd6a22fbe121ad25fde69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e1cc9384e2b677049579eab938fee64.bindPopup(popup_40d92adbdedec30656df2aef19ce4025)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_662dc5f154aced2f9ab3a84c2c57afaf = L.circleMarker(\\n\",\n       \"                [28.76611, 104.6225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4cd1a93ad154cfebcf23709b8f1203dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_193bec567d999b750ce2374ee401d880 = $(`&lt;div id=&quot;html_193bec567d999b750ce2374ee401d880&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6225             latitude:28.76611             PM2_5:47.41504178             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4cd1a93ad154cfebcf23709b8f1203dd.setContent(html_193bec567d999b750ce2374ee401d880);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_662dc5f154aced2f9ab3a84c2c57afaf.bindPopup(popup_4cd1a93ad154cfebcf23709b8f1203dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_baec4990244f4331e9de466deea219ee = L.circleMarker(\\n\",\n       \"                [22.6411, 110.1675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d09c1c062d9ef8c2831770e0cece23f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6d6dee4d9cd53b71d38477c8cd13e27 = $(`&lt;div id=&quot;html_f6d6dee4d9cd53b71d38477c8cd13e27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1675             latitude:22.6411             PM2_5:38.76056338             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d09c1c062d9ef8c2831770e0cece23f.setContent(html_f6d6dee4d9cd53b71d38477c8cd13e27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_baec4990244f4331e9de466deea219ee.bindPopup(popup_3d09c1c062d9ef8c2831770e0cece23f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b89903952fc9488c5323f217bcaee4a7 = L.circleMarker(\\n\",\n       \"                [26.6029, 106.6856],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_073657b50f52205023503e74038f9d72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab56f4ca4c0a40c840c888f718a4d2c0 = $(`&lt;div id=&quot;html_ab56f4ca4c0a40c840c888f718a4d2c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6856             latitude:26.6029             PM2_5:30.36070381             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_073657b50f52205023503e74038f9d72.setContent(html_ab56f4ca4c0a40c840c888f718a4d2c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b89903952fc9488c5323f217bcaee4a7.bindPopup(popup_073657b50f52205023503e74038f9d72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e49c023cfdac73609ea024491f82c4c = L.circleMarker(\\n\",\n       \"                [29.7125, 106.617],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e74fd42871e4a39f6bdfca8a1587b33c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb5f53ebcbda401d1b17c7fd27ca4ea2 = $(`&lt;div id=&quot;html_fb5f53ebcbda401d1b17c7fd27ca4ea2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.617             latitude:29.7125             PM2_5:36.10724234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e74fd42871e4a39f6bdfca8a1587b33c.setContent(html_fb5f53ebcbda401d1b17c7fd27ca4ea2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e49c023cfdac73609ea024491f82c4c.bindPopup(popup_e74fd42871e4a39f6bdfca8a1587b33c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d5e5d2e2ed6b8faa79b35c3c582cca6 = L.circleMarker(\\n\",\n       \"                [27.9939, 120.677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a79b6fa6aaf291a2cd3dd302ca8805c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c83be6de9ff433aee405f18feb51820 = $(`&lt;div id=&quot;html_5c83be6de9ff433aee405f18feb51820&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.677             latitude:27.9939             PM2_5:32.07605634             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a79b6fa6aaf291a2cd3dd302ca8805c2.setContent(html_5c83be6de9ff433aee405f18feb51820);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d5e5d2e2ed6b8faa79b35c3c582cca6.bindPopup(popup_a79b6fa6aaf291a2cd3dd302ca8805c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3679b62f37b819014d06f409b8b8d7de = L.circleMarker(\\n\",\n       \"                [36.864, 118.78],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_628ae689cd1b4fff11078e1efc587575 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fdde56cbc74f45ed90633150a0ad44a = $(`&lt;div id=&quot;html_2fdde56cbc74f45ed90633150a0ad44a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.78             latitude:36.864             PM2_5:52.04333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_628ae689cd1b4fff11078e1efc587575.setContent(html_2fdde56cbc74f45ed90633150a0ad44a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3679b62f37b819014d06f409b8b8d7de.bindPopup(popup_628ae689cd1b4fff11078e1efc587575)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a3c01dbdeac3b4446f0e5ab2e2b6fdb = L.circleMarker(\\n\",\n       \"                [39.3179, 112.4254],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c35192fb6cdd6322a2145f57498c6014 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d06efc3b88579553130fcf0a502eaa3 = $(`&lt;div id=&quot;html_2d06efc3b88579553130fcf0a502eaa3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4254             latitude:39.3179             PM2_5:46.64705882             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c35192fb6cdd6322a2145f57498c6014.setContent(html_2d06efc3b88579553130fcf0a502eaa3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a3c01dbdeac3b4446f0e5ab2e2b6fdb.bindPopup(popup_c35192fb6cdd6322a2145f57498c6014)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afaa99792ef4fe47c6c854a48b84d360 = L.circleMarker(\\n\",\n       \"                [27.8344, 114.9831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44299e4b2be769eb0caf78f186e5eb47 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39618b7415a523d59e476fb7eb7022dd = $(`&lt;div id=&quot;html_39618b7415a523d59e476fb7eb7022dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9831             latitude:27.8344             PM2_5:41.76601671             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44299e4b2be769eb0caf78f186e5eb47.setContent(html_39618b7415a523d59e476fb7eb7022dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afaa99792ef4fe47c6c854a48b84d360.bindPopup(popup_44299e4b2be769eb0caf78f186e5eb47)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4a149782c4ed1ed909fe7bd28d14b49 = L.circleMarker(\\n\",\n       \"                [45.8167, 126.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_034a9ca4b734ea62cb3f7805f34a49ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1feead39980d108653d674a690fa6fe = $(`&lt;div id=&quot;html_a1feead39980d108653d674a690fa6fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.561             latitude:45.8167             PM2_5:27.96121884             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_034a9ca4b734ea62cb3f7805f34a49ec.setContent(html_a1feead39980d108653d674a690fa6fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4a149782c4ed1ed909fe7bd28d14b49.bindPopup(popup_034a9ca4b734ea62cb3f7805f34a49ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afcb337cf630955158d2151609be1cff = L.circleMarker(\\n\",\n       \"                [21.6533, 110.9294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb3c65cd0d2de616bb4c8f6d597c7c6b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_178cfed2874e1a6c162c7f34c0aaa3ff = $(`&lt;div id=&quot;html_178cfed2874e1a6c162c7f34c0aaa3ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9294             latitude:21.6533             PM2_5:25.79741379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb3c65cd0d2de616bb4c8f6d597c7c6b.setContent(html_178cfed2874e1a6c162c7f34c0aaa3ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afcb337cf630955158d2151609be1cff.bindPopup(popup_eb3c65cd0d2de616bb4c8f6d597c7c6b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ba46bb7c8e51fce68dcbc9925f994a6 = L.circleMarker(\\n\",\n       \"                [36.0725, 103.841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02a565c1ed27bad3bb2d99cf012823f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f180140698cd90102441fb00c5b6605 = $(`&lt;div id=&quot;html_9f180140698cd90102441fb00c5b6605&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.841             latitude:36.0725             PM2_5:48.85734463             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02a565c1ed27bad3bb2d99cf012823f1.setContent(html_9f180140698cd90102441fb00c5b6605);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ba46bb7c8e51fce68dcbc9925f994a6.bindPopup(popup_02a565c1ed27bad3bb2d99cf012823f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e3cbb71f7042752aa051740c6228d70 = L.circleMarker(\\n\",\n       \"                [36.39, 120.47],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e38052bbc7d5789a945ef59455133e64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f13236b1bb0490560d0e542488744df5 = $(`&lt;div id=&quot;html_f13236b1bb0490560d0e542488744df5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.47             latitude:36.39             PM2_5:28.07303371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e38052bbc7d5789a945ef59455133e64.setContent(html_f13236b1bb0490560d0e542488744df5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e3cbb71f7042752aa051740c6228d70.bindPopup(popup_e38052bbc7d5789a945ef59455133e64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd67db0d02dbe6d09b3bbc6a9eca0195 = L.circleMarker(\\n\",\n       \"                [46.0872, 85.6931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5195f06b2b0bde31e0e8dc3505efa6b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e903a5a3badc2da9694057f2f6266774 = $(`&lt;div id=&quot;html_e903a5a3badc2da9694057f2f6266774&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:85.6931             latitude:46.0872             PM2_5:28.31534091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5195f06b2b0bde31e0e8dc3505efa6b.setContent(html_e903a5a3badc2da9694057f2f6266774);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd67db0d02dbe6d09b3bbc6a9eca0195.bindPopup(popup_c5195f06b2b0bde31e0e8dc3505efa6b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0410fa092356481480e257b4b9fb7f8b = L.circleMarker(\\n\",\n       \"                [36.799, 119.976],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0b06021cfa24b351dae7ede5645d66e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24cce4992eb2e8199f12601e30eabf1a = $(`&lt;div id=&quot;html_24cce4992eb2e8199f12601e30eabf1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.976             latitude:36.799             PM2_5:34.60057471             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0b06021cfa24b351dae7ede5645d66e.setContent(html_24cce4992eb2e8199f12601e30eabf1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0410fa092356481480e257b4b9fb7f8b.bindPopup(popup_b0b06021cfa24b351dae7ede5645d66e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81b9c7b35daaa96e2760c972785f1485 = L.circleMarker(\\n\",\n       \"                [35.272, 113.884],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c39513948dcd4c194c54796e4723fa75 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d3ef7faf1aa8a70e22fe50b86cf5025 = $(`&lt;div id=&quot;html_9d3ef7faf1aa8a70e22fe50b86cf5025&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.884             latitude:35.272             PM2_5:61.12534819             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c39513948dcd4c194c54796e4723fa75.setContent(html_9d3ef7faf1aa8a70e22fe50b86cf5025);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81b9c7b35daaa96e2760c972785f1485.bindPopup(popup_c39513948dcd4c194c54796e4723fa75)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23725c6ef511a55b691946a6e1bf25cf = L.circleMarker(\\n\",\n       \"                [29.90166667, 121.6147222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46d683eb13a4b64cf64ed15f1e56b8f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ab971151f8829c25b40ebe1bdddc9a4 = $(`&lt;div id=&quot;html_6ab971151f8829c25b40ebe1bdddc9a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6147222             latitude:29.90166667             PM2_5:33.82777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46d683eb13a4b64cf64ed15f1e56b8f4.setContent(html_6ab971151f8829c25b40ebe1bdddc9a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23725c6ef511a55b691946a6e1bf25cf.bindPopup(popup_46d683eb13a4b64cf64ed15f1e56b8f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37fd3cc89753577e26588a5d66706f26 = L.circleMarker(\\n\",\n       \"                [33.8561, 115.7831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a970460ba78c7c049fb53d9d15b1d1f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f5c53cbd138ef872e8c3cfdd0a4424d0 = $(`&lt;div id=&quot;html_f5c53cbd138ef872e8c3cfdd0a4424d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.7831             latitude:33.8561             PM2_5:51.48280802             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a970460ba78c7c049fb53d9d15b1d1f2.setContent(html_f5c53cbd138ef872e8c3cfdd0a4424d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37fd3cc89753577e26588a5d66706f26.bindPopup(popup_a970460ba78c7c049fb53d9d15b1d1f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22e43f7249469a0eacd2f7d2900fd0fb = L.circleMarker(\\n\",\n       \"                [43.9404, 81.2815],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aef427e0279d6a329c10b8f6928ddb35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab6a886c2e815409fac20a715bc63258 = $(`&lt;div id=&quot;html_ab6a886c2e815409fac20a715bc63258&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.2815             latitude:43.9404             PM2_5:48.26760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aef427e0279d6a329c10b8f6928ddb35.setContent(html_ab6a886c2e815409fac20a715bc63258);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22e43f7249469a0eacd2f7d2900fd0fb.bindPopup(popup_aef427e0279d6a329c10b8f6928ddb35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_391ee710db492e0f27149701933cfa9a = L.circleMarker(\\n\",\n       \"                [34.3181, 108.6761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2004a8c05729ba26758d4a702a4da367 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a4d3dff3c985844a94adf1972682210 = $(`&lt;div id=&quot;html_2a4d3dff3c985844a94adf1972682210&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6761             latitude:34.3181             PM2_5:64.58591549             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2004a8c05729ba26758d4a702a4da367.setContent(html_2a4d3dff3c985844a94adf1972682210);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_391ee710db492e0f27149701933cfa9a.bindPopup(popup_2004a8c05729ba26758d4a702a4da367)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2b95b800c55ab46f48c3af3591010c0 = L.circleMarker(\\n\",\n       \"                [30.7525, 120.7844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe892bdf5a0633c4c579b3536322e426 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_051368399ea148f2588d2393a0434dc4 = $(`&lt;div id=&quot;html_051368399ea148f2588d2393a0434dc4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.7844444             latitude:30.7525             PM2_5:40.42222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe892bdf5a0633c4c579b3536322e426.setContent(html_051368399ea148f2588d2393a0434dc4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2b95b800c55ab46f48c3af3591010c0.bindPopup(popup_fe892bdf5a0633c4c579b3536322e426)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c20b405e464a5308cb7c1b28fd74f44 = L.circleMarker(\\n\",\n       \"                [31.7848, 117.196],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb2144b49b080938c7df4a975cbdabc7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1600722dcc57cc3b0628cbdb2ae3be19 = $(`&lt;div id=&quot;html_1600722dcc57cc3b0628cbdb2ae3be19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.196             latitude:31.7848             PM2_5:48.77949438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb2144b49b080938c7df4a975cbdabc7.setContent(html_1600722dcc57cc3b0628cbdb2ae3be19);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c20b405e464a5308cb7c1b28fd74f44.bindPopup(popup_bb2144b49b080938c7df4a975cbdabc7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43c19c2556ac5c8494850f28d0db4e6c = L.circleMarker(\\n\",\n       \"                [38.00583333, 114.4586111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cce4cb7b9d429eda03c1e58ef70adebb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a956b438b59692af419ce12edfa4d256 = $(`&lt;div id=&quot;html_a956b438b59692af419ce12edfa4d256&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4586111             latitude:38.00583333             PM2_5:64.80532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cce4cb7b9d429eda03c1e58ef70adebb.setContent(html_a956b438b59692af419ce12edfa4d256);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43c19c2556ac5c8494850f28d0db4e6c.bindPopup(popup_cce4cb7b9d429eda03c1e58ef70adebb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ebcea56c8ea99a24085aec7c46324f76 = L.circleMarker(\\n\",\n       \"                [30.6872, 104.176],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88a10ea268b1dc0d45ac57e40bdf0b48 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_942278dbe75c1bfce1c3544de389c70d = $(`&lt;div id=&quot;html_942278dbe75c1bfce1c3544de389c70d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.176             latitude:30.6872             PM2_5:55.30532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88a10ea268b1dc0d45ac57e40bdf0b48.setContent(html_942278dbe75c1bfce1c3544de389c70d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ebcea56c8ea99a24085aec7c46324f76.bindPopup(popup_88a10ea268b1dc0d45ac57e40bdf0b48)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_530c1e97735e5287c12462611804cb07 = L.circleMarker(\\n\",\n       \"                [34.29, 117.1814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_312cf291876ef505b837fbb3ccd67db2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be4743f508f82959a8e02fda60dc3ebd = $(`&lt;div id=&quot;html_be4743f508f82959a8e02fda60dc3ebd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1814             latitude:34.29             PM2_5:63.42997199             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_312cf291876ef505b837fbb3ccd67db2.setContent(html_be4743f508f82959a8e02fda60dc3ebd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_530c1e97735e5287c12462611804cb07.bindPopup(popup_312cf291876ef505b837fbb3ccd67db2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cd3e52dee3bbfdc3ac1b0688cb276cb = L.circleMarker(\\n\",\n       \"                [45.5828, 84.8897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9bab739e88638016d78553a95954a0db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da7ab21491482367a17449b3062a97a8 = $(`&lt;div id=&quot;html_da7ab21491482367a17449b3062a97a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8897             latitude:45.5828             PM2_5:21.96296296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9bab739e88638016d78553a95954a0db.setContent(html_da7ab21491482367a17449b3062a97a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cd3e52dee3bbfdc3ac1b0688cb276cb.bindPopup(popup_9bab739e88638016d78553a95954a0db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6fcddfe2f02aad68f59852dc676578f9 = L.circleMarker(\\n\",\n       \"                [30.7157, 111.3009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59931c7a9f582b888962c47a0ac476c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8c115da68b2edbadea6abbe550c39b0 = $(`&lt;div id=&quot;html_d8c115da68b2edbadea6abbe550c39b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3009             latitude:30.7157             PM2_5:54.33893557             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59931c7a9f582b888962c47a0ac476c6.setContent(html_d8c115da68b2edbadea6abbe550c39b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6fcddfe2f02aad68f59852dc676578f9.bindPopup(popup_59931c7a9f582b888962c47a0ac476c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5cf4054486f3326653a222b6d520d08 = L.circleMarker(\\n\",\n       \"                [30.1366, 104.6617],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f5bb6aefac35e1458ec5a26368ed597 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_044e38e62c686a54e92114a225717338 = $(`&lt;div id=&quot;html_044e38e62c686a54e92114a225717338&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6617             latitude:30.1366             PM2_5:33.4432133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f5bb6aefac35e1458ec5a26368ed597.setContent(html_044e38e62c686a54e92114a225717338);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5cf4054486f3326653a222b6d520d08.bindPopup(popup_6f5bb6aefac35e1458ec5a26368ed597)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48c60c6004121d0b9bdba95720fb8c60 = L.circleMarker(\\n\",\n       \"                [42.8775, 129.3675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f17c2bca6e95a8a72d35caeb57018d64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd3c7ac34d2ba03101622740e8528d5d = $(`&lt;div id=&quot;html_fd3c7ac34d2ba03101622740e8528d5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.3675             latitude:42.8775             PM2_5:16.46751412             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f17c2bca6e95a8a72d35caeb57018d64.setContent(html_fd3c7ac34d2ba03101622740e8528d5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48c60c6004121d0b9bdba95720fb8c60.bindPopup(popup_f17c2bca6e95a8a72d35caeb57018d64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_921051a55a52182b27b72702fb37fa33 = L.circleMarker(\\n\",\n       \"                [34.7496, 113.5991],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a809d861e08a3aa8b56d141ee293068 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bef32015f689712add71119c113a9dc1 = $(`&lt;div id=&quot;html_bef32015f689712add71119c113a9dc1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5991             latitude:34.7496             PM2_5:64.34520124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a809d861e08a3aa8b56d141ee293068.setContent(html_bef32015f689712add71119c113a9dc1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_921051a55a52182b27b72702fb37fa33.bindPopup(popup_0a809d861e08a3aa8b56d141ee293068)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67f4da3272b2e229ffe35c4c1f1942d9 = L.circleMarker(\\n\",\n       \"                [29.261, 91.7706],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1322aaff263b5dcd954309ac6b0fe40f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de90f13189efa73bc89fb424310f31d5 = $(`&lt;div id=&quot;html_de90f13189efa73bc89fb424310f31d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.7706             latitude:29.261             PM2_5:7.943313953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1322aaff263b5dcd954309ac6b0fe40f.setContent(html_de90f13189efa73bc89fb424310f31d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67f4da3272b2e229ffe35c4c1f1942d9.bindPopup(popup_1322aaff263b5dcd954309ac6b0fe40f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7140bd3623ebd9f56102ffb7bd428b01 = L.circleMarker(\\n\",\n       \"                [34.7967, 114.2886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_512bbbd9f01a8829b8bc9c1508fa1b70 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a23393ede7c35fd5021a3824f01768ab = $(`&lt;div id=&quot;html_a23393ede7c35fd5021a3824f01768ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2886             latitude:34.7967             PM2_5:58.68994413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_512bbbd9f01a8829b8bc9c1508fa1b70.setContent(html_a23393ede7c35fd5021a3824f01768ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7140bd3623ebd9f56102ffb7bd428b01.bindPopup(popup_512bbbd9f01a8829b8bc9c1508fa1b70)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52a3a15b460b7156128686243c061d95 = L.circleMarker(\\n\",\n       \"                [32.18888889, 119.4369444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d64044f4ca0555ce5b2c20c550e4138a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86b53cad743dd0be0f4f49e4d071de0c = $(`&lt;div id=&quot;html_86b53cad743dd0be0f4f49e4d071de0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.4369444             latitude:32.18888889             PM2_5:49.86908078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d64044f4ca0555ce5b2c20c550e4138a.setContent(html_86b53cad743dd0be0f4f49e4d071de0c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52a3a15b460b7156128686243c061d95.bindPopup(popup_d64044f4ca0555ce5b2c20c550e4138a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e75f3cf505103eb39aede7116a5cf7a7 = L.circleMarker(\\n\",\n       \"                [29.6747, 91.1221],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b28558bed57d8845f426bde5925a7060 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60172e74785d9936b9431580e82c349f = $(`&lt;div id=&quot;html_60172e74785d9936b9431580e82c349f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1221             latitude:29.6747             PM2_5:15.42241379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b28558bed57d8845f426bde5925a7060.setContent(html_60172e74785d9936b9431580e82c349f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e75f3cf505103eb39aede7116a5cf7a7.bindPopup(popup_b28558bed57d8845f426bde5925a7060)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cec0753f44304979da8af33cf56d1b0f = L.circleMarker(\\n\",\n       \"                [22.0019, 100.7939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b3403a02863194dfd94e29315662bcc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6173809dc72082d08c873df58728dd54 = $(`&lt;div id=&quot;html_6173809dc72082d08c873df58728dd54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.7939             latitude:22.0019             PM2_5:25.28366762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b3403a02863194dfd94e29315662bcc.setContent(html_6173809dc72082d08c873df58728dd54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cec0753f44304979da8af33cf56d1b0f.bindPopup(popup_6b3403a02863194dfd94e29315662bcc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_478fe94b8c066189fc79e67d809740fb = L.circleMarker(\\n\",\n       \"                [34.7822, 111.19],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9929ed87cea9c1954dacd54e6ac1d9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c410cbf8c0b468227e878a65890ba863 = $(`&lt;div id=&quot;html_c410cbf8c0b468227e878a65890ba863&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.19             latitude:34.7822             PM2_5:56.6448468             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9929ed87cea9c1954dacd54e6ac1d9c.setContent(html_c410cbf8c0b468227e878a65890ba863);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_478fe94b8c066189fc79e67d809740fb.bindPopup(popup_f9929ed87cea9c1954dacd54e6ac1d9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81892cdddbf1bfc479b2d2c5b6fd9c9a = L.circleMarker(\\n\",\n       \"                [26.8576, 100.2143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d28f73c2ab1aca6b5e6079a141559ebf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac32adb37ff9a34d4499b33962b1a02c = $(`&lt;div id=&quot;html_ac32adb37ff9a34d4499b33962b1a02c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2143             latitude:26.8576             PM2_5:19.28389831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d28f73c2ab1aca6b5e6079a141559ebf.setContent(html_ac32adb37ff9a34d4499b33962b1a02c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81892cdddbf1bfc479b2d2c5b6fd9c9a.bindPopup(popup_d28f73c2ab1aca6b5e6079a141559ebf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b8d6d2a6d5a31470005b631c3cd07932 = L.circleMarker(\\n\",\n       \"                [36.61981, 114.4965],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad3c18807fafab2f72db498b43747f90 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ca9871713d1c98044b3826aeecc4e41 = $(`&lt;div id=&quot;html_8ca9871713d1c98044b3826aeecc4e41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4965             latitude:36.61981             PM2_5:70.51810585             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad3c18807fafab2f72db498b43747f90.setContent(html_8ca9871713d1c98044b3826aeecc4e41);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b8d6d2a6d5a31470005b631c3cd07932.bindPopup(popup_ad3c18807fafab2f72db498b43747f90)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f4cfe63c0e0f5065dc5c4862c92eb2f = L.circleMarker(\\n\",\n       \"                [32.3292, 119.8767],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad6ba72e652f953eeac126913620d9f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1929c5f5c42c661b608e27290a5f1cc = $(`&lt;div id=&quot;html_e1929c5f5c42c661b608e27290a5f1cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.8767             latitude:32.3292             PM2_5:46.44334278             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad6ba72e652f953eeac126913620d9f2.setContent(html_e1929c5f5c42c661b608e27290a5f1cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f4cfe63c0e0f5065dc5c4862c92eb2f.bindPopup(popup_ad6ba72e652f953eeac126913620d9f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78f64a534e33b82235d842e86c660358 = L.circleMarker(\\n\",\n       \"                [34.2778, 117.2933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfe8f48ae4df78cbe47fdbe6a6e71adb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b81ac57e6e31029cfc2b0db9af3b2df = $(`&lt;div id=&quot;html_1b81ac57e6e31029cfc2b0db9af3b2df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2933             latitude:34.2778             PM2_5:67.94117647             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfe8f48ae4df78cbe47fdbe6a6e71adb.setContent(html_1b81ac57e6e31029cfc2b0db9af3b2df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78f64a534e33b82235d842e86c660358.bindPopup(popup_bfe8f48ae4df78cbe47fdbe6a6e71adb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b7a868c8e2dce06da723fdefb989394 = L.circleMarker(\\n\",\n       \"                [37.3803, 118.0062],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ccf3fb7748742697e5734a1e05594337 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ff766dd56a070d221373ebfcd0d618b = $(`&lt;div id=&quot;html_2ff766dd56a070d221373ebfcd0d618b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0062             latitude:37.3803             PM2_5:57.56779661             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ccf3fb7748742697e5734a1e05594337.setContent(html_2ff766dd56a070d221373ebfcd0d618b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b7a868c8e2dce06da723fdefb989394.bindPopup(popup_ccf3fb7748742697e5734a1e05594337)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef3ed0093855cfbb833b9df9d5300b6c = L.circleMarker(\\n\",\n       \"                [29.8272, 106.379],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c28f7cd02d30af9f6fed314205ee28a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4463a821e9c212534811faffcfc4d959 = $(`&lt;div id=&quot;html_4463a821e9c212534811faffcfc4d959&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.379             latitude:29.8272             PM2_5:31.79189944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c28f7cd02d30af9f6fed314205ee28a.setContent(html_4463a821e9c212534811faffcfc4d959);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef3ed0093855cfbb833b9df9d5300b6c.bindPopup(popup_9c28f7cd02d30af9f6fed314205ee28a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c351361d066e0b24049015b813e69c99 = L.circleMarker(\\n\",\n       \"                [28.6425, 115.892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6943db95226db456f207ac8e5230969 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5522226256bf474ee39ac5156a48f856 = $(`&lt;div id=&quot;html_5522226256bf474ee39ac5156a48f856&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.892             latitude:28.6425             PM2_5:36.65598886             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6943db95226db456f207ac8e5230969.setContent(html_5522226256bf474ee39ac5156a48f856);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c351361d066e0b24049015b813e69c99.bindPopup(popup_f6943db95226db456f207ac8e5230969)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e27e6d1ee55f8702889f45a08fe7adf = L.circleMarker(\\n\",\n       \"                [39.0511, 121.7769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9dd04df96780b4b53c7aef6443de428 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1537185af6fac35cec27d7dae71fe6b5 = $(`&lt;div id=&quot;html_1537185af6fac35cec27d7dae71fe6b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.7769             latitude:39.0511             PM2_5:29.50833333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9dd04df96780b4b53c7aef6443de428.setContent(html_1537185af6fac35cec27d7dae71fe6b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e27e6d1ee55f8702889f45a08fe7adf.bindPopup(popup_a9dd04df96780b4b53c7aef6443de428)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e41b14dfbdba55bf636d530bf42cccd = L.circleMarker(\\n\",\n       \"                [39.3265, 112.4078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c2b75f914d1d9888443d9abdf892201 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_edf3c3bb2d8044b4b01ba297a969770d = $(`&lt;div id=&quot;html_edf3c3bb2d8044b4b01ba297a969770d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4078             latitude:39.3265             PM2_5:48.93417367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c2b75f914d1d9888443d9abdf892201.setContent(html_edf3c3bb2d8044b4b01ba297a969770d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e41b14dfbdba55bf636d530bf42cccd.bindPopup(popup_3c2b75f914d1d9888443d9abdf892201)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbfbb9bc1685fab938838f4e43493d4f = L.circleMarker(\\n\",\n       \"                [37.7575, 115.6951],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f59479b54cd45bd7d785e090936b141b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbbdeaf7cdb6b4e6f2bdd8ebfb94d52f = $(`&lt;div id=&quot;html_cbbdeaf7cdb6b4e6f2bdd8ebfb94d52f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6951             latitude:37.7575             PM2_5:58.14285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f59479b54cd45bd7d785e090936b141b.setContent(html_cbbdeaf7cdb6b4e6f2bdd8ebfb94d52f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbfbb9bc1685fab938838f4e43493d4f.bindPopup(popup_f59479b54cd45bd7d785e090936b141b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7a6427307c8cdefe7c02db6b819fa05 = L.circleMarker(\\n\",\n       \"                [42.2814, 118.9233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9f06c10efc1de8d14111b6682a2eb5e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33d89cca164bcf76bd068ebc96d8d0cc = $(`&lt;div id=&quot;html_33d89cca164bcf76bd068ebc96d8d0cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9233             latitude:42.2814             PM2_5:24.72268908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9f06c10efc1de8d14111b6682a2eb5e.setContent(html_33d89cca164bcf76bd068ebc96d8d0cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7a6427307c8cdefe7c02db6b819fa05.bindPopup(popup_c9f06c10efc1de8d14111b6682a2eb5e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52336cec0adf0c9fa1dc72cbe6009f07 = L.circleMarker(\\n\",\n       \"                [33.027, 112.5573],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff222e1f2d733a905590c701df972043 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5445b2b06239082381c4591d1bf239d5 = $(`&lt;div id=&quot;html_5445b2b06239082381c4591d1bf239d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5573             latitude:33.027             PM2_5:60.09610028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff222e1f2d733a905590c701df972043.setContent(html_5445b2b06239082381c4591d1bf239d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52336cec0adf0c9fa1dc72cbe6009f07.bindPopup(popup_ff222e1f2d733a905590c701df972043)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90d4c80b964739919228746e31e3ee63 = L.circleMarker(\\n\",\n       \"                [35.3962, 119.54],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_927419a93c3e107185364f451c02b696 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65cf45026c2bb527950bc3a4654755c3 = $(`&lt;div id=&quot;html_65cf45026c2bb527950bc3a4654755c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.54             latitude:35.3962             PM2_5:42.57464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_927419a93c3e107185364f451c02b696.setContent(html_65cf45026c2bb527950bc3a4654755c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90d4c80b964739919228746e31e3ee63.bindPopup(popup_927419a93c3e107185364f451c02b696)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d4b83d68a71081e8e707bfee6b1965b = L.circleMarker(\\n\",\n       \"                [21.5958, 109.2256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51196cdae93a9efa28b6a96f9cbecc2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5c7cf578e97948a7a30a5fee656abec = $(`&lt;div id=&quot;html_a5c7cf578e97948a7a30a5fee656abec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2256             latitude:21.5958             PM2_5:34.31700288             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51196cdae93a9efa28b6a96f9cbecc2f.setContent(html_a5c7cf578e97948a7a30a5fee656abec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d4b83d68a71081e8e707bfee6b1965b.bindPopup(popup_51196cdae93a9efa28b6a96f9cbecc2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed98054573a60e764dec4e1d53b50fad = L.circleMarker(\\n\",\n       \"                [35.31, 113.836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_154815d89c9d0e2fc74c35421a6c5aa5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c25833d359fdb0960f6cdf511fdbdc66 = $(`&lt;div id=&quot;html_c25833d359fdb0960f6cdf511fdbdc66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.836             latitude:35.31             PM2_5:57.52793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_154815d89c9d0e2fc74c35421a6c5aa5.setContent(html_c25833d359fdb0960f6cdf511fdbdc66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed98054573a60e764dec4e1d53b50fad.bindPopup(popup_154815d89c9d0e2fc74c35421a6c5aa5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1b123ffd0bb7b0c01e77523e217f3d2 = L.circleMarker(\\n\",\n       \"                [43.55, 125.633],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_332bdfbe9bf338c84f1b75f00ef5397d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_20d8efcc2e9de56d7f9f0356f5b2e32a = $(`&lt;div id=&quot;html_20d8efcc2e9de56d7f9f0356f5b2e32a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.633             latitude:43.55             PM2_5:26.19602273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_332bdfbe9bf338c84f1b75f00ef5397d.setContent(html_20d8efcc2e9de56d7f9f0356f5b2e32a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1b123ffd0bb7b0c01e77523e217f3d2.bindPopup(popup_332bdfbe9bf338c84f1b75f00ef5397d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5015ea99186164a14ba69f66d7847ca = L.circleMarker(\\n\",\n       \"                [28.6844, 115.931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6506cbb88a6b3ac620bd79151165e09 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd037beb2f8a2ff099f0790ca0db8973 = $(`&lt;div id=&quot;html_dd037beb2f8a2ff099f0790ca0db8973&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.931             latitude:28.6844             PM2_5:35.57244318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6506cbb88a6b3ac620bd79151165e09.setContent(html_dd037beb2f8a2ff099f0790ca0db8973);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5015ea99186164a14ba69f66d7847ca.bindPopup(popup_b6506cbb88a6b3ac620bd79151165e09)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf1fb75c8f8ea3268e685abba522f9bd = L.circleMarker(\\n\",\n       \"                [35.4813, 112.8252],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb4917bcda553a48f5af72b9113d3cd6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6f4ff4b7560d6e24993283b9014037c = $(`&lt;div id=&quot;html_a6f4ff4b7560d6e24993283b9014037c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8252             latitude:35.4813             PM2_5:60.03361345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb4917bcda553a48f5af72b9113d3cd6.setContent(html_a6f4ff4b7560d6e24993283b9014037c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf1fb75c8f8ea3268e685abba522f9bd.bindPopup(popup_bb4917bcda553a48f5af72b9113d3cd6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8cb38daa94cc8dd0ba852d292987cd2 = L.circleMarker(\\n\",\n       \"                [30.2897, 120.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6eea551eff1efa7947b561ca66aa2600 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2d9a9bf7d9d2e937b094d3a4e6c3c8e = $(`&lt;div id=&quot;html_f2d9a9bf7d9d2e937b094d3a4e6c3c8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.157             latitude:30.2897             PM2_5:50.10972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6eea551eff1efa7947b561ca66aa2600.setContent(html_f2d9a9bf7d9d2e937b094d3a4e6c3c8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8cb38daa94cc8dd0ba852d292987cd2.bindPopup(popup_6eea551eff1efa7947b561ca66aa2600)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c1bc980b917ecfbe1fed69d195f7234 = L.circleMarker(\\n\",\n       \"                [30.049, 119.946],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_143b7ba4210909c7368681f80a359934 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ffe12751d4aa2d06fd8eb9a5a388fdd2 = $(`&lt;div id=&quot;html_ffe12751d4aa2d06fd8eb9a5a388fdd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.946             latitude:30.049             PM2_5:31.72916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_143b7ba4210909c7368681f80a359934.setContent(html_ffe12751d4aa2d06fd8eb9a5a388fdd2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c1bc980b917ecfbe1fed69d195f7234.bindPopup(popup_143b7ba4210909c7368681f80a359934)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17aaefd78a4c460f1a872907b88da01f = L.circleMarker(\\n\",\n       \"                [32.0878, 118.626],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b2cb412d432f9590beb66ba63a17481 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a9eaa8dcea53b89adefee03e88741bf = $(`&lt;div id=&quot;html_4a9eaa8dcea53b89adefee03e88741bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.626             latitude:32.0878             PM2_5:38.83383686             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b2cb412d432f9590beb66ba63a17481.setContent(html_4a9eaa8dcea53b89adefee03e88741bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17aaefd78a4c460f1a872907b88da01f.bindPopup(popup_2b2cb412d432f9590beb66ba63a17481)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76c1c09376ecfe36ee7dc9c4d0023fd1 = L.circleMarker(\\n\",\n       \"                [36.6164, 114.5426],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f67ee7558ca5e213d1c23b06e41d121a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de03944ee0912cd3785ae0e610a7533a = $(`&lt;div id=&quot;html_de03944ee0912cd3785ae0e610a7533a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5426             latitude:36.6164             PM2_5:75.5491573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f67ee7558ca5e213d1c23b06e41d121a.setContent(html_de03944ee0912cd3785ae0e610a7533a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76c1c09376ecfe36ee7dc9c4d0023fd1.bindPopup(popup_f67ee7558ca5e213d1c23b06e41d121a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc9aa18a84b0dad754909b58346adb97 = L.circleMarker(\\n\",\n       \"                [46.8025, 130.2719],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11c44d8ae71c2519a789f8511abfa03b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2635aea0fa02521f471854773ce14e2 = $(`&lt;div id=&quot;html_a2635aea0fa02521f471854773ce14e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.2719             latitude:46.8025             PM2_5:28.64647887             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11c44d8ae71c2519a789f8511abfa03b.setContent(html_a2635aea0fa02521f471854773ce14e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc9aa18a84b0dad754909b58346adb97.bindPopup(popup_11c44d8ae71c2519a789f8511abfa03b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_500156748a0c878ddce1d40b392fffbe = L.circleMarker(\\n\",\n       \"                [23.6714, 116.6339],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e1c996d6dcf604aa30086b4b17ea456 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51917f2b954baef5521b7167e021fc57 = $(`&lt;div id=&quot;html_51917f2b954baef5521b7167e021fc57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6339             latitude:23.6714             PM2_5:29.08888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e1c996d6dcf604aa30086b4b17ea456.setContent(html_51917f2b954baef5521b7167e021fc57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_500156748a0c878ddce1d40b392fffbe.bindPopup(popup_2e1c996d6dcf604aa30086b4b17ea456)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e68bf36bc72b7f8cb43ed6267df914f5 = L.circleMarker(\\n\",\n       \"                [41.1933, 80.2956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2497767ff9ad2ae515ec192b6f851ef8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d993ed334582b56d7d111b364052256 = $(`&lt;div id=&quot;html_4d993ed334582b56d7d111b364052256&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2956             latitude:41.1933             PM2_5:69.5377095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2497767ff9ad2ae515ec192b6f851ef8.setContent(html_4d993ed334582b56d7d111b364052256);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e68bf36bc72b7f8cb43ed6267df914f5.bindPopup(popup_2497767ff9ad2ae515ec192b6f851ef8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de79be4a0ec740d45736e72573c81d1b = L.circleMarker(\\n\",\n       \"                [38.9467, 100.4686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0df55a1daaca08904e34453bea6f9f7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbdd4db9b81fa8af6b17df3b44bf0e80 = $(`&lt;div id=&quot;html_fbdd4db9b81fa8af6b17df3b44bf0e80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.4686             latitude:38.9467             PM2_5:19.8             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0df55a1daaca08904e34453bea6f9f7a.setContent(html_fbdd4db9b81fa8af6b17df3b44bf0e80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de79be4a0ec740d45736e72573c81d1b.bindPopup(popup_0df55a1daaca08904e34453bea6f9f7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aea38c6e3d3dddf0dc63b7be415ff160 = L.circleMarker(\\n\",\n       \"                [22.6069, 113.104],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd4cfb51331caf2083916b4b5039ff7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6208a0488e7a323f645a8b3574ef0b5 = $(`&lt;div id=&quot;html_e6208a0488e7a323f645a8b3574ef0b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.104             latitude:22.6069             PM2_5:37.28011204             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd4cfb51331caf2083916b4b5039ff7e.setContent(html_e6208a0488e7a323f645a8b3574ef0b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aea38c6e3d3dddf0dc63b7be415ff160.bindPopup(popup_cd4cfb51331caf2083916b4b5039ff7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a2ea871050c21e49105ba904a989d11 = L.circleMarker(\\n\",\n       \"                [30.2028, 115.0767],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df2463ccc85a89330ff41817a762b3a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55df25f60246ba07cbce33efed7ad29e = $(`&lt;div id=&quot;html_55df25f60246ba07cbce33efed7ad29e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0767             latitude:30.2028             PM2_5:54.00704225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df2463ccc85a89330ff41817a762b3a1.setContent(html_55df25f60246ba07cbce33efed7ad29e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a2ea871050c21e49105ba904a989d11.bindPopup(popup_df2463ccc85a89330ff41817a762b3a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af099bbceb4d9516d3d6bfb0192a537c = L.circleMarker(\\n\",\n       \"                [40.7608, 107.4211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d39f007ecaf8ecec7dc4b7f88314e4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d55664d3e693616fb9acb8e89e0fa6f = $(`&lt;div id=&quot;html_9d55664d3e693616fb9acb8e89e0fa6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4211             latitude:40.7608             PM2_5:25.21610169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d39f007ecaf8ecec7dc4b7f88314e4b.setContent(html_9d55664d3e693616fb9acb8e89e0fa6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af099bbceb4d9516d3d6bfb0192a537c.bindPopup(popup_4d39f007ecaf8ecec7dc4b7f88314e4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86d8079682c4af5328de047213ed3993 = L.circleMarker(\\n\",\n       \"                [41.7128, 86.2381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de266b364b8ac7744c0df1d66aaeea8d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1930171ccc431b00317199af1c4fb3ff = $(`&lt;div id=&quot;html_1930171ccc431b00317199af1c4fb3ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.2381             latitude:41.7128             PM2_5:41.54929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de266b364b8ac7744c0df1d66aaeea8d.setContent(html_1930171ccc431b00317199af1c4fb3ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86d8079682c4af5328de047213ed3993.bindPopup(popup_de266b364b8ac7744c0df1d66aaeea8d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ed6b43d9ab43d5082cb7d44f86a2b13 = L.circleMarker(\\n\",\n       \"                [43.8256, 126.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34196392e336bbcb45caa892a8dbad23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd973c6005556158fe90b9dba85cabac = $(`&lt;div id=&quot;html_cd973c6005556158fe90b9dba85cabac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.55             latitude:43.8256             PM2_5:32.43871866             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34196392e336bbcb45caa892a8dbad23.setContent(html_cd973c6005556158fe90b9dba85cabac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ed6b43d9ab43d5082cb7d44f86a2b13.bindPopup(popup_34196392e336bbcb45caa892a8dbad23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23803ad49f1f1657052d3f850a69aad4 = L.circleMarker(\\n\",\n       \"                [31.2994, 120.543],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a748ffed9f1373d7bc6222c17a9f3494 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c4a50420b12319cf03769209b05a549 = $(`&lt;div id=&quot;html_9c4a50420b12319cf03769209b05a549&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.543             latitude:31.2994             PM2_5:40.22777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a748ffed9f1373d7bc6222c17a9f3494.setContent(html_9c4a50420b12319cf03769209b05a549);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23803ad49f1f1657052d3f850a69aad4.bindPopup(popup_a748ffed9f1373d7bc6222c17a9f3494)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd228cbd0035d36b38197a4c1fe903e2 = L.circleMarker(\\n\",\n       \"                [26.2331, 111.6236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3458e7ba71d8a80c33cea73fa89006e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea219823d261e42fc07ab47b2342b4ef = $(`&lt;div id=&quot;html_ea219823d261e42fc07ab47b2342b4ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6236             latitude:26.2331             PM2_5:39.27011494             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3458e7ba71d8a80c33cea73fa89006e0.setContent(html_ea219823d261e42fc07ab47b2342b4ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd228cbd0035d36b38197a4c1fe903e2.bindPopup(popup_3458e7ba71d8a80c33cea73fa89006e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c937a60ae408f3d9a44bb2df5ecb8bb1 = L.circleMarker(\\n\",\n       \"                [24.506, 117.7116],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a73e5053ae277bc8f84c8e05b5b2284 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17f459fbce781d0a818b9abba1fff7d1 = $(`&lt;div id=&quot;html_17f459fbce781d0a818b9abba1fff7d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7116             latitude:24.506             PM2_5:32.09052925             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a73e5053ae277bc8f84c8e05b5b2284.setContent(html_17f459fbce781d0a818b9abba1fff7d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c937a60ae408f3d9a44bb2df5ecb8bb1.bindPopup(popup_1a73e5053ae277bc8f84c8e05b5b2284)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27aeafbfb5b276e4571b835ca539a369 = L.circleMarker(\\n\",\n       \"                [26.0931, 119.58],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f20db04b55acaccc8a113e8dfa4b890b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f087e1c84a7f5daa868b72c463ce4ec0 = $(`&lt;div id=&quot;html_f087e1c84a7f5daa868b72c463ce4ec0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.58             latitude:26.0931             PM2_5:24.6103352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f20db04b55acaccc8a113e8dfa4b890b.setContent(html_f087e1c84a7f5daa868b72c463ce4ec0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27aeafbfb5b276e4571b835ca539a369.bindPopup(popup_f20db04b55acaccc8a113e8dfa4b890b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6dc8f80a008349c6ec5a059868d81d58 = L.circleMarker(\\n\",\n       \"                [23.0048, 113.134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fbf73ca247c674e100bc8e03fb01cc06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52548b593476772573e439983d8afc04 = $(`&lt;div id=&quot;html_52548b593476772573e439983d8afc04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.134             latitude:23.0048             PM2_5:35.82152975             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fbf73ca247c674e100bc8e03fb01cc06.setContent(html_52548b593476772573e439983d8afc04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6dc8f80a008349c6ec5a059868d81d58.bindPopup(popup_fbf73ca247c674e100bc8e03fb01cc06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96efe8993ff148d739bafe4b2f604fe9 = L.circleMarker(\\n\",\n       \"                [26.2403, 107.5228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_abfded262da0576340780a05348f63e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e020816ea0c119cd0e7e38f2417a835a = $(`&lt;div id=&quot;html_e020816ea0c119cd0e7e38f2417a835a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5228             latitude:26.2403             PM2_5:23.11350575             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_abfded262da0576340780a05348f63e6.setContent(html_e020816ea0c119cd0e7e38f2417a835a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96efe8993ff148d739bafe4b2f604fe9.bindPopup(popup_abfded262da0576340780a05348f63e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e63c362e3a5efcaae97bcd8303a4f444 = L.circleMarker(\\n\",\n       \"                [38.2911, 109.7456],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69c956cc8c3ccc25ce2f5e0b2f9735a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c319d364884c11558f0f882817af2ae = $(`&lt;div id=&quot;html_5c319d364884c11558f0f882817af2ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7456             latitude:38.2911             PM2_5:29.62570621             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69c956cc8c3ccc25ce2f5e0b2f9735a1.setContent(html_5c319d364884c11558f0f882817af2ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e63c362e3a5efcaae97bcd8303a4f444.bindPopup(popup_69c956cc8c3ccc25ce2f5e0b2f9735a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_524d2b5c476a8213dc6bb7137a3cb2f1 = L.circleMarker(\\n\",\n       \"                [46.6384, 126.9934],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbc26ec1bc7a03fd585e6c96afdb1a83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e44305b526872616fdf0444172fbd704 = $(`&lt;div id=&quot;html_e44305b526872616fdf0444172fbd704&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.9934             latitude:46.6384             PM2_5:29.89728097             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbc26ec1bc7a03fd585e6c96afdb1a83.setContent(html_e44305b526872616fdf0444172fbd704);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_524d2b5c476a8213dc6bb7137a3cb2f1.bindPopup(popup_bbc26ec1bc7a03fd585e6c96afdb1a83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_142d3284704ccadfc81e71c3aba711ad = L.circleMarker(\\n\",\n       \"                [28.1944, 113.0014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c821b3c87da0f43bd2eac12b634ee4c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a3c6e0369fe5b23b74b06d311a4406e = $(`&lt;div id=&quot;html_6a3c6e0369fe5b23b74b06d311a4406e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0014             latitude:28.1944             PM2_5:52.33757062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c821b3c87da0f43bd2eac12b634ee4c7.setContent(html_6a3c6e0369fe5b23b74b06d311a4406e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_142d3284704ccadfc81e71c3aba711ad.bindPopup(popup_c821b3c87da0f43bd2eac12b634ee4c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_550ccadc9a17249afc25ab7eca0dbd15 = L.circleMarker(\\n\",\n       \"                [33.0706, 107.0154],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_178d272f9a9e2b1ea36fb7106c7f5ef4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46376886365891f1ae21a032921add34 = $(`&lt;div id=&quot;html_46376886365891f1ae21a032921add34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0154             latitude:33.0706             PM2_5:47.69553073             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_178d272f9a9e2b1ea36fb7106c7f5ef4.setContent(html_46376886365891f1ae21a032921add34);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_550ccadc9a17249afc25ab7eca0dbd15.bindPopup(popup_178d272f9a9e2b1ea36fb7106c7f5ef4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4603196273633bb9c7dd2b10d1e198c = L.circleMarker(\\n\",\n       \"                [28.2403, 117.0281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2ca7316a48e514a3aa8ee45e5c4ef85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3e0fd4acc621c398cbf3928aa04ea0f = $(`&lt;div id=&quot;html_d3e0fd4acc621c398cbf3928aa04ea0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0281             latitude:28.2403             PM2_5:34.53501401             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2ca7316a48e514a3aa8ee45e5c4ef85.setContent(html_d3e0fd4acc621c398cbf3928aa04ea0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4603196273633bb9c7dd2b10d1e198c.bindPopup(popup_c2ca7316a48e514a3aa8ee45e5c4ef85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72405c54d487b62b119172bdd67c57b8 = L.circleMarker(\\n\",\n       \"                [27.8036, 114.9314],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_957d7cf59831122b966a8d90760606bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8eec3f78edd2e18f55b5118940650f49 = $(`&lt;div id=&quot;html_8eec3f78edd2e18f55b5118940650f49&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9314             latitude:27.8036             PM2_5:42.52089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_957d7cf59831122b966a8d90760606bc.setContent(html_8eec3f78edd2e18f55b5118940650f49);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72405c54d487b62b119172bdd67c57b8.bindPopup(popup_957d7cf59831122b966a8d90760606bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47f52ba512f1b0c1718fc06cbb25dae2 = L.circleMarker(\\n\",\n       \"                [27.7314, 112.0194],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b84b948adb33c772bfc362fc9ace9a21 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1741eabf5de5f79de0238591a469576 = $(`&lt;div id=&quot;html_c1741eabf5de5f79de0238591a469576&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0194             latitude:27.7314             PM2_5:31.31779661             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b84b948adb33c772bfc362fc9ace9a21.setContent(html_c1741eabf5de5f79de0238591a469576);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47f52ba512f1b0c1718fc06cbb25dae2.bindPopup(popup_b84b948adb33c772bfc362fc9ace9a21)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a9ee85c97fbf0416c95819e62c576f5 = L.circleMarker(\\n\",\n       \"                [39.0845, 117.1589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_141f1615d2c4983904d82319405d8104 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4231d53d39e11062bad4ef0cb957944 = $(`&lt;div id=&quot;html_a4231d53d39e11062bad4ef0cb957944&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1589             latitude:39.0845             PM2_5:50.49011299             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_141f1615d2c4983904d82319405d8104.setContent(html_a4231d53d39e11062bad4ef0cb957944);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a9ee85c97fbf0416c95819e62c576f5.bindPopup(popup_141f1615d2c4983904d82319405d8104)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e704d24dcc541c0f472dd42724375fef = L.circleMarker(\\n\",\n       \"                [31.354, 119.818],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5448d27326a42bbf8da055664d7b4129 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0188f57ea64e0057828b8536c6e03f7c = $(`&lt;div id=&quot;html_0188f57ea64e0057828b8536c6e03f7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.818             latitude:31.354             PM2_5:47.49582173             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5448d27326a42bbf8da055664d7b4129.setContent(html_0188f57ea64e0057828b8536c6e03f7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e704d24dcc541c0f472dd42724375fef.bindPopup(popup_5448d27326a42bbf8da055664d7b4129)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c34c5165743c8d4ac371a8db3f44072 = L.circleMarker(\\n\",\n       \"                [33.9506, 118.3214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_464a9e26b19bd2693aac8b630f4436df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bbbb86ed201907a53f47fda000be2c4b = $(`&lt;div id=&quot;html_bbbb86ed201907a53f47fda000be2c4b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3214             latitude:33.9506             PM2_5:54.23463687             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_464a9e26b19bd2693aac8b630f4436df.setContent(html_bbbb86ed201907a53f47fda000be2c4b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c34c5165743c8d4ac371a8db3f44072.bindPopup(popup_464a9e26b19bd2693aac8b630f4436df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c5e3b99ff99f3d3efe6067de0778517 = L.circleMarker(\\n\",\n       \"                [35.0003, 102.905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df922a46dc82d606ce7f0686185d521c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_45ec6ddaf6b56af629eea03915e60152 = $(`&lt;div id=&quot;html_45ec6ddaf6b56af629eea03915e60152&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.905             latitude:35.0003             PM2_5:27.56901408             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df922a46dc82d606ce7f0686185d521c.setContent(html_45ec6ddaf6b56af629eea03915e60152);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c5e3b99ff99f3d3efe6067de0778517.bindPopup(popup_df922a46dc82d606ce7f0686185d521c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d8501d52e843ba628502729ad091ffd = L.circleMarker(\\n\",\n       \"                [31.2071, 121.577],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3a4cac7d4675be42ab83c0dbc47b49e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9ddb56b51e7dbe866e58dafa83a0ebb = $(`&lt;div id=&quot;html_d9ddb56b51e7dbe866e58dafa83a0ebb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.577             latitude:31.2071             PM2_5:40.78472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3a4cac7d4675be42ab83c0dbc47b49e.setContent(html_d9ddb56b51e7dbe866e58dafa83a0ebb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d8501d52e843ba628502729ad091ffd.bindPopup(popup_d3a4cac7d4675be42ab83c0dbc47b49e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b86df5c30705279609d5da0ef426e1e4 = L.circleMarker(\\n\",\n       \"                [32.0197, 112.155],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12e334f34e94ec0767807cc3bc32008a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f8f3ac56d85b20360776d63c9fb883b = $(`&lt;div id=&quot;html_1f8f3ac56d85b20360776d63c9fb883b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.155             latitude:32.0197             PM2_5:64.06741573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12e334f34e94ec0767807cc3bc32008a.setContent(html_1f8f3ac56d85b20360776d63c9fb883b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b86df5c30705279609d5da0ef426e1e4.bindPopup(popup_12e334f34e94ec0767807cc3bc32008a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbcee1507d584a6624ff7eabbc4d51cc = L.circleMarker(\\n\",\n       \"                [37.364, 120.394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa374feaa8e50fc0a045eb1a5299183a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6ef63c902eb8378f086f67fa7f5c748 = $(`&lt;div id=&quot;html_b6ef63c902eb8378f086f67fa7f5c748&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.394             latitude:37.364             PM2_5:30.69662921             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa374feaa8e50fc0a045eb1a5299183a.setContent(html_b6ef63c902eb8378f086f67fa7f5c748);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbcee1507d584a6624ff7eabbc4d51cc.bindPopup(popup_fa374feaa8e50fc0a045eb1a5299183a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5311d34a63c40140cd0a54e68bd19758 = L.circleMarker(\\n\",\n       \"                [31.5072, 104.7283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ee004cfad5886fca485cc76a0b079de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91cee9758ad0e06746de0bfecbb667cf = $(`&lt;div id=&quot;html_91cee9758ad0e06746de0bfecbb667cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7283             latitude:31.5072             PM2_5:50.53472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ee004cfad5886fca485cc76a0b079de.setContent(html_91cee9758ad0e06746de0bfecbb667cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5311d34a63c40140cd0a54e68bd19758.bindPopup(popup_4ee004cfad5886fca485cc76a0b079de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c524ac9cccc1160be72af75d7dd407e = L.circleMarker(\\n\",\n       \"                [36.8041, 117.8512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3783ba7d79cef0ac8bdd807db51a22e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_292a0ac8cd8b64e919d77d3129e17cfe = $(`&lt;div id=&quot;html_292a0ac8cd8b64e919d77d3129e17cfe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8512             latitude:36.8041             PM2_5:56.51267606             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3783ba7d79cef0ac8bdd807db51a22e2.setContent(html_292a0ac8cd8b64e919d77d3129e17cfe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c524ac9cccc1160be72af75d7dd407e.bindPopup(popup_3783ba7d79cef0ac8bdd807db51a22e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d73d124ffedd2ae58b3618ed224ef1a6 = L.circleMarker(\\n\",\n       \"                [36.913, 121.531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ae4eb9ef4063f6743f218046d5e123d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a04068bf20e3abbed419ea214aa3b8e3 = $(`&lt;div id=&quot;html_a04068bf20e3abbed419ea214aa3b8e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.531             latitude:36.913             PM2_5:20.8988604             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ae4eb9ef4063f6743f218046d5e123d.setContent(html_a04068bf20e3abbed419ea214aa3b8e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d73d124ffedd2ae58b3618ed224ef1a6.bindPopup(popup_9ae4eb9ef4063f6743f218046d5e123d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31983f5864b769369222792817588c8f = L.circleMarker(\\n\",\n       \"                [34.5885, 119.176],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2d964fb444d1c58ed7c22ef61fa8138 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0d5330cf3f99a98e878fe5da9577b65 = $(`&lt;div id=&quot;html_e0d5330cf3f99a98e878fe5da9577b65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.176             latitude:34.5885             PM2_5:42.12256267             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2d964fb444d1c58ed7c22ef61fa8138.setContent(html_e0d5330cf3f99a98e878fe5da9577b65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31983f5864b769369222792817588c8f.bindPopup(popup_f2d964fb444d1c58ed7c22ef61fa8138)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0df61171335b9c07f4b1ec105826571 = L.circleMarker(\\n\",\n       \"                [34.7745, 113.641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01e198ee7eef4d980a1bebfbe3e6c149 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae84d973fa7cb1151c176f33b6503de4 = $(`&lt;div id=&quot;html_ae84d973fa7cb1151c176f33b6503de4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.641             latitude:34.7745             PM2_5:63.62078652             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01e198ee7eef4d980a1bebfbe3e6c149.setContent(html_ae84d973fa7cb1151c176f33b6503de4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0df61171335b9c07f4b1ec105826571.bindPopup(popup_01e198ee7eef4d980a1bebfbe3e6c149)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b6609f4b6bee1bcf464005b8968849f = L.circleMarker(\\n\",\n       \"                [24.77908333, 113.6734722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_977eef6e7640f0c22f615e946de9e9ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_28c332101d408a6e0b77403e84f72894 = $(`&lt;div id=&quot;html_28c332101d408a6e0b77403e84f72894&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6734722             latitude:24.77908333             PM2_5:34.24229692             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_977eef6e7640f0c22f615e946de9e9ca.setContent(html_28c332101d408a6e0b77403e84f72894);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b6609f4b6bee1bcf464005b8968849f.bindPopup(popup_977eef6e7640f0c22f615e946de9e9ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d5137e3bfecccc469bfc6500adf144ed = L.circleMarker(\\n\",\n       \"                [34.9817, 118.2764],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b032dd19c0b04881850b163352d09373 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65b33bead272f6bef8eeac305102ae39 = $(`&lt;div id=&quot;html_65b33bead272f6bef8eeac305102ae39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2764             latitude:34.9817             PM2_5:46.4432133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b032dd19c0b04881850b163352d09373.setContent(html_65b33bead272f6bef8eeac305102ae39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d5137e3bfecccc469bfc6500adf144ed.bindPopup(popup_b032dd19c0b04881850b163352d09373)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f5406f3807c4ac63db5df21250e3f28 = L.circleMarker(\\n\",\n       \"                [37.8792, 113.4922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_434de7efad210771fc1d30d91ff02635 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56d1175aa29ea1d396729e1b65a9b37d = $(`&lt;div id=&quot;html_56d1175aa29ea1d396729e1b65a9b37d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4922             latitude:37.8792             PM2_5:50.03267045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_434de7efad210771fc1d30d91ff02635.setContent(html_56d1175aa29ea1d396729e1b65a9b37d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f5406f3807c4ac63db5df21250e3f28.bindPopup(popup_434de7efad210771fc1d30d91ff02635)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a19cb4b782017429ef06416caf4db89 = L.circleMarker(\\n\",\n       \"                [22.5497, 113.3881],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e235d1bceabe21eed8772035d41b06b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93274c180218fd2bee077748729e8087 = $(`&lt;div id=&quot;html_93274c180218fd2bee077748729e8087&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3881             latitude:22.5497             PM2_5:33.25770308             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e235d1bceabe21eed8772035d41b06b1.setContent(html_93274c180218fd2bee077748729e8087);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a19cb4b782017429ef06416caf4db89.bindPopup(popup_e235d1bceabe21eed8772035d41b06b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6bf63db4117bfc5450090e5891fead04 = L.circleMarker(\\n\",\n       \"                [22.7629, 113.257],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1766dfdf9995fad5b2cff50c9b936a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ae600e9cb77350f95e71a2b1b52ed37 = $(`&lt;div id=&quot;html_9ae600e9cb77350f95e71a2b1b52ed37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.257             latitude:22.7629             PM2_5:34.17746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1766dfdf9995fad5b2cff50c9b936a1.setContent(html_9ae600e9cb77350f95e71a2b1b52ed37);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6bf63db4117bfc5450090e5891fead04.bindPopup(popup_b1766dfdf9995fad5b2cff50c9b936a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d262bff54a54f808093d872bc603f572 = L.circleMarker(\\n\",\n       \"                [40.8367, 114.8985],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84918b637e3429baf71bc8352dd49510 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1ec9e4d51aee5559dee0b4235af56d1 = $(`&lt;div id=&quot;html_d1ec9e4d51aee5559dee0b4235af56d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8985             latitude:40.8367             PM2_5:26.28910615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84918b637e3429baf71bc8352dd49510.setContent(html_d1ec9e4d51aee5559dee0b4235af56d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d262bff54a54f808093d872bc603f572.bindPopup(popup_84918b637e3429baf71bc8352dd49510)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb23a4a74767aa8d42aba2bee6e31479 = L.circleMarker(\\n\",\n       \"                [23.5353, 116.3697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6dbd1190b74eafcfe33cacfd8f20ed8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c77cc9c1768a14e829092c1d08b05a30 = $(`&lt;div id=&quot;html_c77cc9c1768a14e829092c1d08b05a30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3697             latitude:23.5353             PM2_5:30.43258427             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6dbd1190b74eafcfe33cacfd8f20ed8.setContent(html_c77cc9c1768a14e829092c1d08b05a30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb23a4a74767aa8d42aba2bee6e31479.bindPopup(popup_f6dbd1190b74eafcfe33cacfd8f20ed8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef08db0730adcf6ca9232cce47c24945 = L.circleMarker(\\n\",\n       \"                [35.0308, 110.9678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47ff8222a9c9973d9717d4c5054f6685 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb483ea2d68a41e69deef7f7c1dd4fb9 = $(`&lt;div id=&quot;html_cb483ea2d68a41e69deef7f7c1dd4fb9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9678             latitude:35.0308             PM2_5:72.14185393             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47ff8222a9c9973d9717d4c5054f6685.setContent(html_cb483ea2d68a41e69deef7f7c1dd4fb9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef08db0730adcf6ca9232cce47c24945.bindPopup(popup_47ff8222a9c9973d9717d4c5054f6685)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2a77eb96b47179b7263c1be13944427 = L.circleMarker(\\n\",\n       \"                [25.0492, 101.538],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6ac790acd5703c6873b9e3bf5d2f32f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6800fa3221abc8d742fb1b9743c2ca74 = $(`&lt;div id=&quot;html_6800fa3221abc8d742fb1b9743c2ca74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.538             latitude:25.0492             PM2_5:21.25348189             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6ac790acd5703c6873b9e3bf5d2f32f.setContent(html_6800fa3221abc8d742fb1b9743c2ca74);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2a77eb96b47179b7263c1be13944427.bindPopup(popup_f6ac790acd5703c6873b9e3bf5d2f32f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_557141626757dd3512f11ec56a591827 = L.circleMarker(\\n\",\n       \"                [27.9747, 120.76],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8cc27a89787c25345fb3f9b827eab63 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0c85252916a5c6242d2ea3f75c44160 = $(`&lt;div id=&quot;html_e0c85252916a5c6242d2ea3f75c44160&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.76             latitude:27.9747             PM2_5:30.625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8cc27a89787c25345fb3f9b827eab63.setContent(html_e0c85252916a5c6242d2ea3f75c44160);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_557141626757dd3512f11ec56a591827.bindPopup(popup_b8cc27a89787c25345fb3f9b827eab63)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46008e31c0ef6bcd89ff4b42b2b704ad = L.circleMarker(\\n\",\n       \"                [24.6928, 108.054],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d5c138c6796bef24a6721a4c25a8551 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd6b420d93ce192a9d547d80233bec1d = $(`&lt;div id=&quot;html_bd6b420d93ce192a9d547d80233bec1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.054             latitude:24.6928             PM2_5:30.28151261             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d5c138c6796bef24a6721a4c25a8551.setContent(html_bd6b420d93ce192a9d547d80233bec1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46008e31c0ef6bcd89ff4b42b2b704ad.bindPopup(popup_0d5c138c6796bef24a6721a4c25a8551)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ff11a7877408a89f4b7cd1b91cb318a = L.circleMarker(\\n\",\n       \"                [39.0153, 106.3717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1634739f71370d69c0759a359eb489a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_beadd0015b031e5471d477ceb0ae6d53 = $(`&lt;div id=&quot;html_beadd0015b031e5471d477ceb0ae6d53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3717             latitude:39.0153             PM2_5:49.59103641             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1634739f71370d69c0759a359eb489a5.setContent(html_beadd0015b031e5471d477ceb0ae6d53);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ff11a7877408a89f4b7cd1b91cb318a.bindPopup(popup_1634739f71370d69c0759a359eb489a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ba47132590d49fb15c0b98a11e6d4ba = L.circleMarker(\\n\",\n       \"                [43.941, 81.3364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1129fa9cba5efcb950fab0743f383408 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5667def069f0fcd467795f6840c4bb0 = $(`&lt;div id=&quot;html_a5667def069f0fcd467795f6840c4bb0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.3364             latitude:43.941             PM2_5:54.96022727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1129fa9cba5efcb950fab0743f383408.setContent(html_a5667def069f0fcd467795f6840c4bb0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ba47132590d49fb15c0b98a11e6d4ba.bindPopup(popup_1129fa9cba5efcb950fab0743f383408)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b623bbc08e07bfdaf4cfab39fd74106 = L.circleMarker(\\n\",\n       \"                [39.746, 98.509],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_496ab0e77d46ccacf37be954c2e40cc7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6109bfbf8b6c238bfaf68c14b273210 = $(`&lt;div id=&quot;html_f6109bfbf8b6c238bfaf68c14b273210&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.509             latitude:39.746             PM2_5:32.68854749             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_496ab0e77d46ccacf37be954c2e40cc7.setContent(html_f6109bfbf8b6c238bfaf68c14b273210);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b623bbc08e07bfdaf4cfab39fd74106.bindPopup(popup_496ab0e77d46ccacf37be954c2e40cc7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab7c08ba66d283a22ba3f9d4256bd549 = L.circleMarker(\\n\",\n       \"                [25.8417, 98.8546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3715f86c8c80557cb41612236a614d34 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf1c76a7f7a08c706d59b35542737247 = $(`&lt;div id=&quot;html_bf1c76a7f7a08c706d59b35542737247&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.8546             latitude:25.8417             PM2_5:15.54347826             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3715f86c8c80557cb41612236a614d34.setContent(html_bf1c76a7f7a08c706d59b35542737247);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab7c08ba66d283a22ba3f9d4256bd549.bindPopup(popup_3715f86c8c80557cb41612236a614d34)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f087437e2be19e86fe21288049c4eb2 = L.circleMarker(\\n\",\n       \"                [29.6376, 94.3681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6deb3dfc745e7205350f234463ef8344 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4c24e89946767140ddc8524f97a6eb4 = $(`&lt;div id=&quot;html_c4c24e89946767140ddc8524f97a6eb4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:94.3681             latitude:29.6376             PM2_5:9.39017341             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6deb3dfc745e7205350f234463ef8344.setContent(html_c4c24e89946767140ddc8524f97a6eb4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f087437e2be19e86fe21288049c4eb2.bindPopup(popup_6deb3dfc745e7205350f234463ef8344)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72ae7029f4dd6c2f28e718d5cbe26642 = L.circleMarker(\\n\",\n       \"                [29.4402, 112.9943],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a9ee52f9f4e7cb13d1731c5810f5223 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f81103fd76e22846326ddff724283648 = $(`&lt;div id=&quot;html_f81103fd76e22846326ddff724283648&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9943             latitude:29.4402             PM2_5:47.75             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a9ee52f9f4e7cb13d1731c5810f5223.setContent(html_f81103fd76e22846326ddff724283648);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72ae7029f4dd6c2f28e718d5cbe26642.bindPopup(popup_3a9ee52f9f4e7cb13d1731c5810f5223)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c91fff518f3d84d814a574504b84e93 = L.circleMarker(\\n\",\n       \"                [34.2629, 108.993],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_204e863de1f285c00782c3c3aa6299a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e57ea18d1976084b9cdc016fb629593e = $(`&lt;div id=&quot;html_e57ea18d1976084b9cdc016fb629593e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.993             latitude:34.2629             PM2_5:62.91193182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_204e863de1f285c00782c3c3aa6299a4.setContent(html_e57ea18d1976084b9cdc016fb629593e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c91fff518f3d84d814a574504b84e93.bindPopup(popup_204e863de1f285c00782c3c3aa6299a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5491338ea548b7bdda02e25a08c5bd3e = L.circleMarker(\\n\",\n       \"                [41.5931, 120.4439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f9249b17584743ceeb784a05a178249 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30c3a58da0996c0bded7743332f80868 = $(`&lt;div id=&quot;html_30c3a58da0996c0bded7743332f80868&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4439             latitude:41.5931             PM2_5:27.10888252             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f9249b17584743ceeb784a05a178249.setContent(html_30c3a58da0996c0bded7743332f80868);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5491338ea548b7bdda02e25a08c5bd3e.bindPopup(popup_0f9249b17584743ceeb784a05a178249)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15136be9f47e6ca522604eb8a58653ae = L.circleMarker(\\n\",\n       \"                [34.794, 111.158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2dca4eeee0ffef01c93057ca3405873 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5bc1e0e4e423090e3e4447e236c230b0 = $(`&lt;div id=&quot;html_5bc1e0e4e423090e3e4447e236c230b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.158             latitude:34.794             PM2_5:58.11898017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2dca4eeee0ffef01c93057ca3405873.setContent(html_5bc1e0e4e423090e3e4447e236c230b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15136be9f47e6ca522604eb8a58653ae.bindPopup(popup_b2dca4eeee0ffef01c93057ca3405873)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f3a37e790bd221d7f14c19ba6efb1fa = L.circleMarker(\\n\",\n       \"                [46.5888, 131.1572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d155ee4965f03cd59c44e3bfb4ab506 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9e73e0256a436805079a23291cf589c = $(`&lt;div id=&quot;html_c9e73e0256a436805079a23291cf589c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1572             latitude:46.5888             PM2_5:31.57807808             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d155ee4965f03cd59c44e3bfb4ab506.setContent(html_c9e73e0256a436805079a23291cf589c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f3a37e790bd221d7f14c19ba6efb1fa.bindPopup(popup_8d155ee4965f03cd59c44e3bfb4ab506)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f3efbc9d30384317b5dd81175d39bdc = L.circleMarker(\\n\",\n       \"                [31.5475, 120.354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba66defe78fb8ec034097eb3092ea4ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_558f99dbfcd4de77f8c56cdb29ba8782 = $(`&lt;div id=&quot;html_558f99dbfcd4de77f8c56cdb29ba8782&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.354             latitude:31.5475             PM2_5:42.00139665             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba66defe78fb8ec034097eb3092ea4ef.setContent(html_558f99dbfcd4de77f8c56cdb29ba8782);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f3efbc9d30384317b5dd81175d39bdc.bindPopup(popup_ba66defe78fb8ec034097eb3092ea4ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce4d98e1a8995f4be5bfbb2243f819be = L.circleMarker(\\n\",\n       \"                [39.8673, 116.366],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_295c89b4365b5d488755de28bb4e4f3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9b6ec53a610ed93ac21300395dc8a00a = $(`&lt;div id=&quot;html_9b6ec53a610ed93ac21300395dc8a00a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.366             latitude:39.8673             PM2_5:54.73389356             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_295c89b4365b5d488755de28bb4e4f3b.setContent(html_9b6ec53a610ed93ac21300395dc8a00a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce4d98e1a8995f4be5bfbb2243f819be.bindPopup(popup_295c89b4365b5d488755de28bb4e4f3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12e0a98ca72d11f241642c6b62989a3a = L.circleMarker(\\n\",\n       \"                [29.9834, 103.0109],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fda597e0a7bf6f45376a575792e1bdf0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_255d1d901cdb73a54bfb675a932aacc0 = $(`&lt;div id=&quot;html_255d1d901cdb73a54bfb675a932aacc0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0109             latitude:29.9834             PM2_5:42.66619318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fda597e0a7bf6f45376a575792e1bdf0.setContent(html_255d1d901cdb73a54bfb675a932aacc0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12e0a98ca72d11f241642c6b62989a3a.bindPopup(popup_fda597e0a7bf6f45376a575792e1bdf0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_169b2134b88f7b2450d4274061d0d4eb = L.circleMarker(\\n\",\n       \"                [29.6453, 106.562],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ebfbf25a240263fa9faaaa2a535e590 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0260716e632efd965bb04ac02153aaee = $(`&lt;div id=&quot;html_0260716e632efd965bb04ac02153aaee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.562             latitude:29.6453             PM2_5:35.45125348             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ebfbf25a240263fa9faaaa2a535e590.setContent(html_0260716e632efd965bb04ac02153aaee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_169b2134b88f7b2450d4274061d0d4eb.bindPopup(popup_2ebfbf25a240263fa9faaaa2a535e590)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f219f485dc9f837b98c4391e27acbc0 = L.circleMarker(\\n\",\n       \"                [39.16969, 117.2099],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_373d9b20648085ea4f85008c01fa8051 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1cc23e5ddf576cc4f0c840c9b4c69ddd = $(`&lt;div id=&quot;html_1cc23e5ddf576cc4f0c840c9b4c69ddd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2099             latitude:39.16969             PM2_5:47.05177515             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_373d9b20648085ea4f85008c01fa8051.setContent(html_1cc23e5ddf576cc4f0c840c9b4c69ddd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f219f485dc9f837b98c4391e27acbc0.bindPopup(popup_373d9b20648085ea4f85008c01fa8051)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e269a6e975172007e3e286adbd64496e = L.circleMarker(\\n\",\n       \"                [41.3047, 123.7308],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87e6701a2f7914c66e86131a897a9d33 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68e9133aea9490f4056d47838aa58d68 = $(`&lt;div id=&quot;html_68e9133aea9490f4056d47838aa58d68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7308             latitude:41.3047             PM2_5:28.61699164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87e6701a2f7914c66e86131a897a9d33.setContent(html_68e9133aea9490f4056d47838aa58d68);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e269a6e975172007e3e286adbd64496e.bindPopup(popup_87e6701a2f7914c66e86131a897a9d33)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f81668b7e8342671b28a4fcc99577e2 = L.circleMarker(\\n\",\n       \"                [28.4231, 119.879],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9bbd7bf589a0c1d38253169f127999ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99158d614e8eb4d3a3f9af83cf5624b0 = $(`&lt;div id=&quot;html_99158d614e8eb4d3a3f9af83cf5624b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.879             latitude:28.4231             PM2_5:30.35369318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9bbd7bf589a0c1d38253169f127999ca.setContent(html_99158d614e8eb4d3a3f9af83cf5624b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f81668b7e8342671b28a4fcc99577e2.bindPopup(popup_9bbd7bf589a0c1d38253169f127999ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_301862251cc7bec8efafbd859d596eab = L.circleMarker(\\n\",\n       \"                [38.91194444, 121.6330556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2654030930fe7eb280bede9f8e61a24d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb85b72e5367c4c51e2e3ce5591c7de0 = $(`&lt;div id=&quot;html_bb85b72e5367c4c51e2e3ce5591c7de0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6330556             latitude:38.91194444             PM2_5:30.51815642             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2654030930fe7eb280bede9f8e61a24d.setContent(html_bb85b72e5367c4c51e2e3ce5591c7de0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_301862251cc7bec8efafbd859d596eab.bindPopup(popup_2654030930fe7eb280bede9f8e61a24d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19f5c26abed98fbf35b4f2da324d422b = L.circleMarker(\\n\",\n       \"                [30.3944, 114.8878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_254a12f7f0c4de6dace482fe5ca617fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25c3645bbafa53f7edcf7ce082e75e4f = $(`&lt;div id=&quot;html_25c3645bbafa53f7edcf7ce082e75e4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8878             latitude:30.3944             PM2_5:50.14027778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_254a12f7f0c4de6dace482fe5ca617fc.setContent(html_25c3645bbafa53f7edcf7ce082e75e4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19f5c26abed98fbf35b4f2da324d422b.bindPopup(popup_254a12f7f0c4de6dace482fe5ca617fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e78dc0984076eadc965deb3f170a7cc7 = L.circleMarker(\\n\",\n       \"                [40.7378, 107.3715],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df47505aec7662c880a4484de5b838d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_260305047b9fb3a846bb597f67d9e301 = $(`&lt;div id=&quot;html_260305047b9fb3a846bb597f67d9e301&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3715             latitude:40.7378             PM2_5:27.96590909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df47505aec7662c880a4484de5b838d4.setContent(html_260305047b9fb3a846bb597f67d9e301);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e78dc0984076eadc965deb3f170a7cc7.bindPopup(popup_df47505aec7662c880a4484de5b838d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07e7faa58bb9a6fe7aea02dfd6cd0d2c = L.circleMarker(\\n\",\n       \"                [22.9477, 113.352],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6dd5ade2d8f025db37c3c66bef17134 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_28f6ed7cdd73ac6654cb0ef15a83e69c = $(`&lt;div id=&quot;html_28f6ed7cdd73ac6654cb0ef15a83e69c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.352             latitude:22.9477             PM2_5:36.97331461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6dd5ade2d8f025db37c3c66bef17134.setContent(html_28f6ed7cdd73ac6654cb0ef15a83e69c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07e7faa58bb9a6fe7aea02dfd6cd0d2c.bindPopup(popup_f6dd5ade2d8f025db37c3c66bef17134)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_373c32723d5edeef2f69776a79188e9e = L.circleMarker(\\n\",\n       \"                [38.4841, 106.2739],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67ba886cd12d4ca8d75571ca8ee1e92f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c171664c9f15b164e850de65412a5925 = $(`&lt;div id=&quot;html_c171664c9f15b164e850de65412a5925&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2739             latitude:38.4841             PM2_5:46.99579832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67ba886cd12d4ca8d75571ca8ee1e92f.setContent(html_c171664c9f15b164e850de65412a5925);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_373c32723d5edeef2f69776a79188e9e.bindPopup(popup_67ba886cd12d4ca8d75571ca8ee1e92f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed7152eefb506dacd91dd00274f7b034 = L.circleMarker(\\n\",\n       \"                [29.355, 113.2117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dececa045a7ad66c858e0b59de44a368 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31197b8fcc8107bc3fd2c4c9717ae479 = $(`&lt;div id=&quot;html_31197b8fcc8107bc3fd2c4c9717ae479&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2117             latitude:29.355             PM2_5:43.30473373             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dececa045a7ad66c858e0b59de44a368.setContent(html_31197b8fcc8107bc3fd2c4c9717ae479);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed7152eefb506dacd91dd00274f7b034.bindPopup(popup_dececa045a7ad66c858e0b59de44a368)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4bd2713bf53c57183ddde713c3a13576 = L.circleMarker(\\n\",\n       \"                [28.8833, 105.4322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84c71c0bcdc02ac9f96b2babce25b852 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0b1aa499a43843c7145f71fdd625037 = $(`&lt;div id=&quot;html_b0b1aa499a43843c7145f71fdd625037&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4322             latitude:28.8833             PM2_5:37.04353933             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84c71c0bcdc02ac9f96b2babce25b852.setContent(html_b0b1aa499a43843c7145f71fdd625037);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4bd2713bf53c57183ddde713c3a13576.bindPopup(popup_84c71c0bcdc02ac9f96b2babce25b852)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc1fce61f399e7126e442866ab597e92 = L.circleMarker(\\n\",\n       \"                [22.4853, 113.4411],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4cea5db38feb41b87d53350e8386bacd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f033b2d751fdaa2d51a0343df8ece7f = $(`&lt;div id=&quot;html_8f033b2d751fdaa2d51a0343df8ece7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4411             latitude:22.4853             PM2_5:37.20505618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4cea5db38feb41b87d53350e8386bacd.setContent(html_8f033b2d751fdaa2d51a0343df8ece7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc1fce61f399e7126e442866ab597e92.bindPopup(popup_4cea5db38feb41b87d53350e8386bacd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9afd038898e6d0e0680e141febbed705 = L.circleMarker(\\n\",\n       \"                [41.1042, 121.835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6aedd9426040343f0a28596a5ae3302 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f0cfc0a5f26f378b8b60d224b1013f8 = $(`&lt;div id=&quot;html_8f0cfc0a5f26f378b8b60d224b1013f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.835             latitude:41.1042             PM2_5:29.90948276             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6aedd9426040343f0a28596a5ae3302.setContent(html_8f0cfc0a5f26f378b8b60d224b1013f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9afd038898e6d0e0680e141febbed705.bindPopup(popup_e6aedd9426040343f0a28596a5ae3302)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90f9fca862957f43530fd5ffd72f0ef7 = L.circleMarker(\\n\",\n       \"                [35.7289, 107.6831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce9b83bbb4f09f7934021465efbb3de9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c1a25620b3253d6e46a371d53f1cee0 = $(`&lt;div id=&quot;html_8c1a25620b3253d6e46a371d53f1cee0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6831             latitude:35.7289             PM2_5:28.02793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce9b83bbb4f09f7934021465efbb3de9.setContent(html_8c1a25620b3253d6e46a371d53f1cee0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90f9fca862957f43530fd5ffd72f0ef7.bindPopup(popup_ce9b83bbb4f09f7934021465efbb3de9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6aa73953540abb0f50da5ad1d1248d1f = L.circleMarker(\\n\",\n       \"                [31.92, 120.302],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83376bb3cb16fd8fb800f105c00146cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_20e89c01c7005a700a3d60d8e700af04 = $(`&lt;div id=&quot;html_20e89c01c7005a700a3d60d8e700af04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.302             latitude:31.92             PM2_5:56.37743733             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83376bb3cb16fd8fb800f105c00146cb.setContent(html_20e89c01c7005a700a3d60d8e700af04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6aa73953540abb0f50da5ad1d1248d1f.bindPopup(popup_83376bb3cb16fd8fb800f105c00146cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff3c9cb5d750fe6906d2ed081d3a8975 = L.circleMarker(\\n\",\n       \"                [45.7478, 126.593],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ae0372189d15c8d9d8988231a91886c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_649b886c024a88473079e0e17e332931 = $(`&lt;div id=&quot;html_649b886c024a88473079e0e17e332931&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.593             latitude:45.7478             PM2_5:37.80972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ae0372189d15c8d9d8988231a91886c.setContent(html_649b886c024a88473079e0e17e332931);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff3c9cb5d750fe6906d2ed081d3a8975.bindPopup(popup_4ae0372189d15c8d9d8988231a91886c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b374bc89df4881556bda59df39e2c6d = L.circleMarker(\\n\",\n       \"                [29.7048, 115.9581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb9c4c8452c1aacfb9cc7a855a321977 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55a241e4895c6df6caeedeea94ba37bc = $(`&lt;div id=&quot;html_55a241e4895c6df6caeedeea94ba37bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9581             latitude:29.7048             PM2_5:43.60306407             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb9c4c8452c1aacfb9cc7a855a321977.setContent(html_55a241e4895c6df6caeedeea94ba37bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b374bc89df4881556bda59df39e2c6d.bindPopup(popup_cb9c4c8452c1aacfb9cc7a855a321977)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84a23cf5fce9226252fcf9f8701019c6 = L.circleMarker(\\n\",\n       \"                [38.4186, 112.7356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_653be2db113892ec701c3fde2e5e0923 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13c7e62f03db685696ae23cef9d4b72c = $(`&lt;div id=&quot;html_13c7e62f03db685696ae23cef9d4b72c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7356             latitude:38.4186             PM2_5:59.60806916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_653be2db113892ec701c3fde2e5e0923.setContent(html_13c7e62f03db685696ae23cef9d4b72c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84a23cf5fce9226252fcf9f8701019c6.bindPopup(popup_653be2db113892ec701c3fde2e5e0923)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d973bac0e3bae3a857f052fa33072b4d = L.circleMarker(\\n\",\n       \"                [39.0631, 121.9769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba8f809e61e0db4f0e77520da4237b40 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f8d2b630907f6a5fb3f9056044982725 = $(`&lt;div id=&quot;html_f8d2b630907f6a5fb3f9056044982725&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.9769             latitude:39.0631             PM2_5:25.05477528             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba8f809e61e0db4f0e77520da4237b40.setContent(html_f8d2b630907f6a5fb3f9056044982725);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d973bac0e3bae3a857f052fa33072b4d.bindPopup(popup_ba8f809e61e0db4f0e77520da4237b40)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fb8d47b8ecddaa9f376a9c9e06a3610 = L.circleMarker(\\n\",\n       \"                [32.395, 111.0419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b13d93ba9c225bb6a78b67b9385a776f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15cc66d7ce1971f76014993334fd0054 = $(`&lt;div id=&quot;html_15cc66d7ce1971f76014993334fd0054&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0419             latitude:32.395             PM2_5:29.91477273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b13d93ba9c225bb6a78b67b9385a776f.setContent(html_15cc66d7ce1971f76014993334fd0054);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fb8d47b8ecddaa9f376a9c9e06a3610.bindPopup(popup_b13d93ba9c225bb6a78b67b9385a776f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d29a91dde8acbe40a130834d18267703 = L.circleMarker(\\n\",\n       \"                [31.5848, 120.354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aba524100b169c5a56647598c47c8ce2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69bbc3e8bb953ddb0466d7278b52e94c = $(`&lt;div id=&quot;html_69bbc3e8bb953ddb0466d7278b52e94c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.354             latitude:31.5848             PM2_5:47.23011364             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aba524100b169c5a56647598c47c8ce2.setContent(html_69bbc3e8bb953ddb0466d7278b52e94c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d29a91dde8acbe40a130834d18267703.bindPopup(popup_aba524100b169c5a56647598c47c8ce2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d19563f779a3934f1e8e3ee1993f16df = L.circleMarker(\\n\",\n       \"                [26.6611, 119.5392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1bdf0c942f5f0f5b182427fcd8e16114 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5caf474fe6c5d63cee134007b4c4184e = $(`&lt;div id=&quot;html_5caf474fe6c5d63cee134007b4c4184e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5392             latitude:26.6611             PM2_5:26.51523546             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1bdf0c942f5f0f5b182427fcd8e16114.setContent(html_5caf474fe6c5d63cee134007b4c4184e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d19563f779a3934f1e8e3ee1993f16df.bindPopup(popup_1bdf0c942f5f0f5b182427fcd8e16114)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d5bbad5480cf625d9afa917a5d726e8 = L.circleMarker(\\n\",\n       \"                [37.4294, 122.1206],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1918d98abb754063a3896f603f2ceb48 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8368eee3874fd66735b3bd4ce2af9287 = $(`&lt;div id=&quot;html_8368eee3874fd66735b3bd4ce2af9287&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.1206             latitude:37.4294             PM2_5:27.61864407             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1918d98abb754063a3896f603f2ceb48.setContent(html_8368eee3874fd66735b3bd4ce2af9287);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d5bbad5480cf625d9afa917a5d726e8.bindPopup(popup_1918d98abb754063a3896f603f2ceb48)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c2bcb93fd9d824724432f6a0735377fd = L.circleMarker(\\n\",\n       \"                [41.7381, 125.9486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_012d7c619a3ad725cb70ddca4a3fac34 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48385a3ebf6cce7e5d37874c20b064d4 = $(`&lt;div id=&quot;html_48385a3ebf6cce7e5d37874c20b064d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.9486             latitude:41.7381             PM2_5:30.97625698             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_012d7c619a3ad725cb70ddca4a3fac34.setContent(html_48385a3ebf6cce7e5d37874c20b064d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c2bcb93fd9d824724432f6a0735377fd.bindPopup(popup_012d7c619a3ad725cb70ddca4a3fac34)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4550ee7242d29b256cd3b50487461a8d = L.circleMarker(\\n\",\n       \"                [35.5294, 106.7039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eff2849f417bdb8b6a75a0f8c682c150 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47f883c09d468724c684b36687a37dfa = $(`&lt;div id=&quot;html_47f883c09d468724c684b36687a37dfa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7039             latitude:35.5294             PM2_5:29.01532033             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eff2849f417bdb8b6a75a0f8c682c150.setContent(html_47f883c09d468724c684b36687a37dfa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4550ee7242d29b256cd3b50487461a8d.bindPopup(popup_eff2849f417bdb8b6a75a0f8c682c150)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d08b4facf9060e963767a946006d31ce = L.circleMarker(\\n\",\n       \"                [27.8408, 102.2714],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7fb57c05b627c166efddd2fb86e45dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_586a80b14414e47af7ed5d72397daf29 = $(`&lt;div id=&quot;html_586a80b14414e47af7ed5d72397daf29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2714             latitude:27.8408             PM2_5:20.54329609             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7fb57c05b627c166efddd2fb86e45dc.setContent(html_586a80b14414e47af7ed5d72397daf29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d08b4facf9060e963767a946006d31ce.bindPopup(popup_c7fb57c05b627c166efddd2fb86e45dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5baa6d0186c72d5f3a64f5fd15f6afb2 = L.circleMarker(\\n\",\n       \"                [36.6867, 101.524],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea7d0e2f944f33ad21ea1608238149ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b09336dac46b594181da91f1cca3082a = $(`&lt;div id=&quot;html_b09336dac46b594181da91f1cca3082a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.524             latitude:36.6867             PM2_5:52.19736842             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea7d0e2f944f33ad21ea1608238149ce.setContent(html_b09336dac46b594181da91f1cca3082a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5baa6d0186c72d5f3a64f5fd15f6afb2.bindPopup(popup_ea7d0e2f944f33ad21ea1608238149ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_039b6b685b178b287ae5f49d169eb4a3 = L.circleMarker(\\n\",\n       \"                [32.8985, 117.3065],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94ad67eaa151ad61c8fd26af89307ca8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f8c3fcdbbac1e4661a0e2c7e87dfda78 = $(`&lt;div id=&quot;html_f8c3fcdbbac1e4661a0e2c7e87dfda78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3065             latitude:32.8985             PM2_5:46.36619718             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94ad67eaa151ad61c8fd26af89307ca8.setContent(html_f8c3fcdbbac1e4661a0e2c7e87dfda78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_039b6b685b178b287ae5f49d169eb4a3.bindPopup(popup_94ad67eaa151ad61c8fd26af89307ca8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d170e7ee3677274cd5e0a0e6674a0c42 = L.circleMarker(\\n\",\n       \"                [31.3708, 120.641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1fe146f0cfed365be67fdce6a74b7558 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d7c25f353fa5d8c54e46c4363752aa3 = $(`&lt;div id=&quot;html_1d7c25f353fa5d8c54e46c4363752aa3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.641             latitude:31.3708             PM2_5:39.74515235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1fe146f0cfed365be67fdce6a74b7558.setContent(html_1d7c25f353fa5d8c54e46c4363752aa3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d170e7ee3677274cd5e0a0e6674a0c42.bindPopup(popup_1fe146f0cfed365be67fdce6a74b7558)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_384b9ea93d4e0495a941d3554ce2847c = L.circleMarker(\\n\",\n       \"                [34.7187, 113.727],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a964bb730055ad0108070c45d3d7395 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e19aa09283f6b06356d6026d5b81183 = $(`&lt;div id=&quot;html_4e19aa09283f6b06356d6026d5b81183&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.727             latitude:34.7187             PM2_5:65.41432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a964bb730055ad0108070c45d3d7395.setContent(html_4e19aa09283f6b06356d6026d5b81183);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_384b9ea93d4e0495a941d3554ce2847c.bindPopup(popup_9a964bb730055ad0108070c45d3d7395)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6609a9b6d911ac6fc279d1af0416ebe4 = L.circleMarker(\\n\",\n       \"                [32.0903, 112.2106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a7744a891ab5e232b5c6aba5582b3f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_594444f9a224142f70001fa2c18e2e9e = $(`&lt;div id=&quot;html_594444f9a224142f70001fa2c18e2e9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2106             latitude:32.0903             PM2_5:71.5252809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a7744a891ab5e232b5c6aba5582b3f9.setContent(html_594444f9a224142f70001fa2c18e2e9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6609a9b6d911ac6fc279d1af0416ebe4.bindPopup(popup_6a7744a891ab5e232b5c6aba5582b3f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2be4349923bad0cdb8f3dba0d99a58d3 = L.circleMarker(\\n\",\n       \"                [34.7997, 111.1489],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39992666651c087416fdcdf3051eb095 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec4eba517dd50323298d3aee5327e239 = $(`&lt;div id=&quot;html_ec4eba517dd50323298d3aee5327e239&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1489             latitude:34.7997             PM2_5:54.08100559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39992666651c087416fdcdf3051eb095.setContent(html_ec4eba517dd50323298d3aee5327e239);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2be4349923bad0cdb8f3dba0d99a58d3.bindPopup(popup_39992666651c087416fdcdf3051eb095)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_317c4aa0862bec3a67ca3e4463d1196b = L.circleMarker(\\n\",\n       \"                [33.6481, 116.9765],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb3feb581bc26d8dafbb68a630ca7df5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d156dc7a11dacd0aea2808f15fa21cd5 = $(`&lt;div id=&quot;html_d156dc7a11dacd0aea2808f15fa21cd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9765             latitude:33.6481             PM2_5:55.37114846             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb3feb581bc26d8dafbb68a630ca7df5.setContent(html_d156dc7a11dacd0aea2808f15fa21cd5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_317c4aa0862bec3a67ca3e4463d1196b.bindPopup(popup_fb3feb581bc26d8dafbb68a630ca7df5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac01c122aad18ad8dbf8f78abce9a5ed = L.circleMarker(\\n\",\n       \"                [27.2317, 111.4733],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34bf5ead351fcd876563300816fcedfe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17304ca80031e5d0642d758be276ed0f = $(`&lt;div id=&quot;html_17304ca80031e5d0642d758be276ed0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4733             latitude:27.2317             PM2_5:51.66572238             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34bf5ead351fcd876563300816fcedfe.setContent(html_17304ca80031e5d0642d758be276ed0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac01c122aad18ad8dbf8f78abce9a5ed.bindPopup(popup_34bf5ead351fcd876563300816fcedfe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9aefd15404a10ef9e900f70f19a43602 = L.circleMarker(\\n\",\n       \"                [38.4519, 112.7383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_840db84f7e98d23970690bef4f246feb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4bb1b800f466755b78d51b17b23f9d18 = $(`&lt;div id=&quot;html_4bb1b800f466755b78d51b17b23f9d18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7383             latitude:38.4519             PM2_5:53.09014085             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_840db84f7e98d23970690bef4f246feb.setContent(html_4bb1b800f466755b78d51b17b23f9d18);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9aefd15404a10ef9e900f70f19a43602.bindPopup(popup_840db84f7e98d23970690bef4f246feb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_184c5e69067330a1ee2f873bacc3a6a3 = L.circleMarker(\\n\",\n       \"                [39.5989, 109.8119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10c30ddef5c54ac0eb65affb82de99a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3202cf96ff3b020b3ae1ebde4681671e = $(`&lt;div id=&quot;html_3202cf96ff3b020b3ae1ebde4681671e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8119             latitude:39.5989             PM2_5:28.25633803             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10c30ddef5c54ac0eb65affb82de99a7.setContent(html_3202cf96ff3b020b3ae1ebde4681671e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_184c5e69067330a1ee2f873bacc3a6a3.bindPopup(popup_10c30ddef5c54ac0eb65affb82de99a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70bcd0cc1bd95d7ec820ff4d37612497 = L.circleMarker(\\n\",\n       \"                [31.6219, 120.275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8109ac7081c46791ae665fd26c36f21 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43393a5b78cb4ea9e03ea456adc5e41d = $(`&lt;div id=&quot;html_43393a5b78cb4ea9e03ea456adc5e41d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.275             latitude:31.6219             PM2_5:42.90625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8109ac7081c46791ae665fd26c36f21.setContent(html_43393a5b78cb4ea9e03ea456adc5e41d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70bcd0cc1bd95d7ec820ff4d37612497.bindPopup(popup_f8109ac7081c46791ae665fd26c36f21)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b818df4841c216a2a31faa232f96a66 = L.circleMarker(\\n\",\n       \"                [26.2625, 117.6211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81d6e2560a9febb2866eee4b490cbfd1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fe6394e0996c570e567283cf31e9bd5 = $(`&lt;div id=&quot;html_7fe6394e0996c570e567283cf31e9bd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6211             latitude:26.2625             PM2_5:27.27222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81d6e2560a9febb2866eee4b490cbfd1.setContent(html_7fe6394e0996c570e567283cf31e9bd5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b818df4841c216a2a31faa232f96a66.bindPopup(popup_81d6e2560a9febb2866eee4b490cbfd1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a849945e338ec7bc4b3ad2651d73e7b9 = L.circleMarker(\\n\",\n       \"                [42.3022, 123.8139],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3fa71c6eb25c350857a0f1b6e00312cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62431bd376d93352b1cba45271f41ef1 = $(`&lt;div id=&quot;html_62431bd376d93352b1cba45271f41ef1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8139             latitude:42.3022             PM2_5:27.88053097             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3fa71c6eb25c350857a0f1b6e00312cc.setContent(html_62431bd376d93352b1cba45271f41ef1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a849945e338ec7bc4b3ad2651d73e7b9.bindPopup(popup_3fa71c6eb25c350857a0f1b6e00312cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df414f56fbcdb8158cb286222bc165d7 = L.circleMarker(\\n\",\n       \"                [32.9683, 112.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0885de90c8547f62a5c5af060e46bb86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01f4db5372becab334046020eb6a3e63 = $(`&lt;div id=&quot;html_01f4db5372becab334046020eb6a3e63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.55             latitude:32.9683             PM2_5:55.1075419             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0885de90c8547f62a5c5af060e46bb86.setContent(html_01f4db5372becab334046020eb6a3e63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df414f56fbcdb8158cb286222bc165d7.bindPopup(popup_0885de90c8547f62a5c5af060e46bb86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0cb1bf0862b7fb9608bfb56d6fde88f9 = L.circleMarker(\\n\",\n       \"                [41.5672, 120.4486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_89cd58603c6e015095f2122d7038eebc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f87698725f045a7630438628d0a2625 = $(`&lt;div id=&quot;html_0f87698725f045a7630438628d0a2625&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4486             latitude:41.5672             PM2_5:25.5915493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_89cd58603c6e015095f2122d7038eebc.setContent(html_0f87698725f045a7630438628d0a2625);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0cb1bf0862b7fb9608bfb56d6fde88f9.bindPopup(popup_89cd58603c6e015095f2122d7038eebc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_220b41c32b0e1f5aedc505decfbea538 = L.circleMarker(\\n\",\n       \"                [31.2261, 121.425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_075ac2de2f434f2f2b4f98cdb1e7eaf6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30bacfce0ad8122b194e1acf826c8c6c = $(`&lt;div id=&quot;html_30bacfce0ad8122b194e1acf826c8c6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.425             latitude:31.2261             PM2_5:41.84261838             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_075ac2de2f434f2f2b4f98cdb1e7eaf6.setContent(html_30bacfce0ad8122b194e1acf826c8c6c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_220b41c32b0e1f5aedc505decfbea538.bindPopup(popup_075ac2de2f434f2f2b4f98cdb1e7eaf6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f9e1a8c5f85d622f2a1c9118b325531 = L.circleMarker(\\n\",\n       \"                [27.5578, 109.9972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9bf67023a837ad80f4ea43592ae815e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_900baf608fff0e3ac38ba6b8e66f4749 = $(`&lt;div id=&quot;html_900baf608fff0e3ac38ba6b8e66f4749&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9972             latitude:27.5578             PM2_5:42.84463277             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9bf67023a837ad80f4ea43592ae815e0.setContent(html_900baf608fff0e3ac38ba6b8e66f4749);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f9e1a8c5f85d622f2a1c9118b325531.bindPopup(popup_9bf67023a837ad80f4ea43592ae815e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c0fa7d341759f10fa14aebcc57f382c = L.circleMarker(\\n\",\n       \"                [37.0172, 105.18],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3c1365c4440711696e22a651192500f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_927a59755c2da3c4b97dbe326ba78563 = $(`&lt;div id=&quot;html_927a59755c2da3c4b97dbe326ba78563&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.18             latitude:37.0172             PM2_5:35.66201117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3c1365c4440711696e22a651192500f.setContent(html_927a59755c2da3c4b97dbe326ba78563);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c0fa7d341759f10fa14aebcc57f382c.bindPopup(popup_f3c1365c4440711696e22a651192500f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91cba6905b80fc44cf4fb48c7ec6a0b1 = L.circleMarker(\\n\",\n       \"                [36.497, 117.8477],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0b50cc16d4bb570a00ad0d488dcbfa4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_657c5e4313b3dda7ebf34963b032439d = $(`&lt;div id=&quot;html_657c5e4313b3dda7ebf34963b032439d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8477             latitude:36.497             PM2_5:53.86827195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0b50cc16d4bb570a00ad0d488dcbfa4.setContent(html_657c5e4313b3dda7ebf34963b032439d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91cba6905b80fc44cf4fb48c7ec6a0b1.bindPopup(popup_d0b50cc16d4bb570a00ad0d488dcbfa4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e47259c0db1916637465f2f9f39cfae = L.circleMarker(\\n\",\n       \"                [29.334, 120.04],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a620736e83b3a3efe57687206550984 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_608c21d9c6f94a193df4b3838424d41a = $(`&lt;div id=&quot;html_608c21d9c6f94a193df4b3838424d41a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.04             latitude:29.334             PM2_5:33.41340782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a620736e83b3a3efe57687206550984.setContent(html_608c21d9c6f94a193df4b3838424d41a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e47259c0db1916637465f2f9f39cfae.bindPopup(popup_4a620736e83b3a3efe57687206550984)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aec7c4f40e6df76c30bb7fd293c3a47c = L.circleMarker(\\n\",\n       \"                [32.6939, 109.0281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7228f928f12173b262cc904872fd824a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8565faffd632b1dd8a3430a66385bd7 = $(`&lt;div id=&quot;html_e8565faffd632b1dd8a3430a66385bd7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0281             latitude:32.6939             PM2_5:42.38169014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7228f928f12173b262cc904872fd824a.setContent(html_e8565faffd632b1dd8a3430a66385bd7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aec7c4f40e6df76c30bb7fd293c3a47c.bindPopup(popup_7228f928f12173b262cc904872fd824a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7362cb837fa4056a0b9c19b0f2a5dde = L.circleMarker(\\n\",\n       \"                [36.5481, 104.1731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1877ae3b8f1c6adb9e3c7099ab5ff1c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1ccec2a11916eaa19318c484c914b16 = $(`&lt;div id=&quot;html_c1ccec2a11916eaa19318c484c914b16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1731             latitude:36.5481             PM2_5:30.22922636             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1877ae3b8f1c6adb9e3c7099ab5ff1c7.setContent(html_c1ccec2a11916eaa19318c484c914b16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7362cb837fa4056a0b9c19b0f2a5dde.bindPopup(popup_1877ae3b8f1c6adb9e3c7099ab5ff1c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_288daf57be5f902babc6201b5b8ecf3c = L.circleMarker(\\n\",\n       \"                [31.671, 120.721],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d94f5f6ca3f2269282433df3016bddf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47af3129907a7ea3d52be3dda880cb65 = $(`&lt;div id=&quot;html_47af3129907a7ea3d52be3dda880cb65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.721             latitude:31.671             PM2_5:43.43968254             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d94f5f6ca3f2269282433df3016bddf.setContent(html_47af3129907a7ea3d52be3dda880cb65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_288daf57be5f902babc6201b5b8ecf3c.bindPopup(popup_5d94f5f6ca3f2269282433df3016bddf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80d9bc17d49c06047bfe3d5628db6ac7 = L.circleMarker(\\n\",\n       \"                [26.5506, 104.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7cb528243f05fa3120263df496a050e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2aa6de8bebf34d81b67cddf78f74d3ee = $(`&lt;div id=&quot;html_2aa6de8bebf34d81b67cddf78f74d3ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9544             latitude:26.5506             PM2_5:39.40833333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7cb528243f05fa3120263df496a050e2.setContent(html_2aa6de8bebf34d81b67cddf78f74d3ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80d9bc17d49c06047bfe3d5628db6ac7.bindPopup(popup_7cb528243f05fa3120263df496a050e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a59c4f5ddd53b838882762d1b68da25 = L.circleMarker(\\n\",\n       \"                [40.8033, 111.658],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2bf1e2a3adb344ceb482f0516a4e6df3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bcf0a3e7ec1bb5ddb06a2f4cf54dc627 = $(`&lt;div id=&quot;html_bcf0a3e7ec1bb5ddb06a2f4cf54dc627&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.658             latitude:40.8033             PM2_5:36.70612813             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2bf1e2a3adb344ceb482f0516a4e6df3.setContent(html_bcf0a3e7ec1bb5ddb06a2f4cf54dc627);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a59c4f5ddd53b838882762d1b68da25.bindPopup(popup_2bf1e2a3adb344ceb482f0516a4e6df3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4912697c97da28c01da408c66f83b5a6 = L.circleMarker(\\n\",\n       \"                [46.619, 131.1651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b48d0c69d25cf343a9fe433653f001a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a24ca64255ff989022548dace9c44df1 = $(`&lt;div id=&quot;html_a24ca64255ff989022548dace9c44df1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1651             latitude:46.619             PM2_5:26.38235294             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b48d0c69d25cf343a9fe433653f001a.setContent(html_a24ca64255ff989022548dace9c44df1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4912697c97da28c01da408c66f83b5a6.bindPopup(popup_9b48d0c69d25cf343a9fe433653f001a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_816375222c6aa0543ef8b35eb7371a22 = L.circleMarker(\\n\",\n       \"                [27.8136, 99.7064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_030459fbf4d3de159b6c424e27d83813 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c11d259831b6bb83185ed32d62dcfeda = $(`&lt;div id=&quot;html_c11d259831b6bb83185ed32d62dcfeda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.7064             latitude:27.8136             PM2_5:12.44481605             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_030459fbf4d3de159b6c424e27d83813.setContent(html_c11d259831b6bb83185ed32d62dcfeda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_816375222c6aa0543ef8b35eb7371a22.bindPopup(popup_030459fbf4d3de159b6c424e27d83813)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c938fb5d7a084ae54f6135f9ff657ab = L.circleMarker(\\n\",\n       \"                [28.2325, 113.0833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bef7b6f8fbf6b39565838e3ed747ee2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b56b7162cc6eb0f7b83768adb75d729f = $(`&lt;div id=&quot;html_b56b7162cc6eb0f7b83768adb75d729f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0833             latitude:28.2325             PM2_5:45.18472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bef7b6f8fbf6b39565838e3ed747ee2c.setContent(html_b56b7162cc6eb0f7b83768adb75d729f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c938fb5d7a084ae54f6135f9ff657ab.bindPopup(popup_bef7b6f8fbf6b39565838e3ed747ee2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f11d65e6f1d0aebc78e5d81b05d44ced = L.circleMarker(\\n\",\n       \"                [39.8745, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b81a917bdb00e19a0c67e7d3d157715 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db90c72cc2bf978f02da2e72406645fb = $(`&lt;div id=&quot;html_db90c72cc2bf978f02da2e72406645fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.8745             PM2_5:52.26638177             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b81a917bdb00e19a0c67e7d3d157715.setContent(html_db90c72cc2bf978f02da2e72406645fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f11d65e6f1d0aebc78e5d81b05d44ced.bindPopup(popup_2b81a917bdb00e19a0c67e7d3d157715)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fce5363f14a6dace55c1e223af86fc51 = L.circleMarker(\\n\",\n       \"                [27.2582, 111.4908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2cda858b19319416a78c89090120c1a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9afe947f7ec5f03c032ecfc133c7f83a = $(`&lt;div id=&quot;html_9afe947f7ec5f03c032ecfc133c7f83a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4908             latitude:27.2582             PM2_5:49.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2cda858b19319416a78c89090120c1a5.setContent(html_9afe947f7ec5f03c032ecfc133c7f83a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fce5363f14a6dace55c1e223af86fc51.bindPopup(popup_2cda858b19319416a78c89090120c1a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f381562ee3d7f4d389b972ac26f14a77 = L.circleMarker(\\n\",\n       \"                [35.6039, 103.2139],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd8b829300519712fc5d07ec1a1831df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23b948fc4ad497ae75156838cf85262a = $(`&lt;div id=&quot;html_23b948fc4ad497ae75156838cf85262a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.2139             latitude:35.6039             PM2_5:35.40756303             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd8b829300519712fc5d07ec1a1831df.setContent(html_23b948fc4ad497ae75156838cf85262a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f381562ee3d7f4d389b972ac26f14a77.bindPopup(popup_fd8b829300519712fc5d07ec1a1831df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9698f62e885c07a173b6e953d1d50df = L.circleMarker(\\n\",\n       \"                [33.1138, 107.0089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_791ff2fd5c2ec8da8c8bac92f2f69640 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9a180986dfc08ee6d8023618e59fa77 = $(`&lt;div id=&quot;html_d9a180986dfc08ee6d8023618e59fa77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0089             latitude:33.1138             PM2_5:45.40730337             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_791ff2fd5c2ec8da8c8bac92f2f69640.setContent(html_d9a180986dfc08ee6d8023618e59fa77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9698f62e885c07a173b6e953d1d50df.bindPopup(popup_791ff2fd5c2ec8da8c8bac92f2f69640)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ae8b21257eba4a6c16462fae5d66f50 = L.circleMarker(\\n\",\n       \"                [31.8711, 106.7389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17895af9be777a2c966e1f2771673300 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14073321e24c7d220f9cb2f608ca0c46 = $(`&lt;div id=&quot;html_14073321e24c7d220f9cb2f608ca0c46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7389             latitude:31.8711             PM2_5:32.18662953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17895af9be777a2c966e1f2771673300.setContent(html_14073321e24c7d220f9cb2f608ca0c46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ae8b21257eba4a6c16462fae5d66f50.bindPopup(popup_17895af9be777a2c966e1f2771673300)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54eaba42194cb3e0583d3f6535614737 = L.circleMarker(\\n\",\n       \"                [43.8875, 126.555],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c000ab4054a280a65b2548de549f362 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d47c357716b7d5260c1a15e68d968d4a = $(`&lt;div id=&quot;html_d47c357716b7d5260c1a15e68d968d4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.555             latitude:43.8875             PM2_5:31.1800554             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c000ab4054a280a65b2548de549f362.setContent(html_d47c357716b7d5260c1a15e68d968d4a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54eaba42194cb3e0583d3f6535614737.bindPopup(popup_2c000ab4054a280a65b2548de549f362)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80b079099014039d38bcba1c3fa90dd0 = L.circleMarker(\\n\",\n       \"                [23.02777778, 113.7461111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c81b45a9d87b2512f9c23c6f0e5c5259 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f57459ec280f7e38aebd0b73a9e3a1d = $(`&lt;div id=&quot;html_2f57459ec280f7e38aebd0b73a9e3a1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7461111             latitude:23.02777778             PM2_5:36.35734463             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c81b45a9d87b2512f9c23c6f0e5c5259.setContent(html_2f57459ec280f7e38aebd0b73a9e3a1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80b079099014039d38bcba1c3fa90dd0.bindPopup(popup_c81b45a9d87b2512f9c23c6f0e5c5259)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_171acd0257558c60bbc60c59e61542a1 = L.circleMarker(\\n\",\n       \"                [35.5997, 103.2064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eecc582f27472c33cbc515669fd6bb23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ab0ec551221394441188ee22e00e969 = $(`&lt;div id=&quot;html_7ab0ec551221394441188ee22e00e969&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.2064             latitude:35.5997             PM2_5:30.64345404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eecc582f27472c33cbc515669fd6bb23.setContent(html_7ab0ec551221394441188ee22e00e969);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_171acd0257558c60bbc60c59e61542a1.bindPopup(popup_eecc582f27472c33cbc515669fd6bb23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b6f7212f8f9a406a593d9ed34f29ddc = L.circleMarker(\\n\",\n       \"                [28.8194, 104.5969],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f72683c51440db254e160b1691200e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdc6b49215847023f94e0ede7baa6215 = $(`&lt;div id=&quot;html_bdc6b49215847023f94e0ede7baa6215&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.5969             latitude:28.8194             PM2_5:49.5720339             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f72683c51440db254e160b1691200e4.setContent(html_bdc6b49215847023f94e0ede7baa6215);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b6f7212f8f9a406a593d9ed34f29ddc.bindPopup(popup_4f72683c51440db254e160b1691200e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77fd04daf2a7b77564c5857d6459d29d = L.circleMarker(\\n\",\n       \"                [32.939, 117.3961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2b70734a1fdad329766d7e927d8e8aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_537d04616cf05ad830739e81d976b786 = $(`&lt;div id=&quot;html_537d04616cf05ad830739e81d976b786&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3961             latitude:32.939             PM2_5:64.66016713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2b70734a1fdad329766d7e927d8e8aa.setContent(html_537d04616cf05ad830739e81d976b786);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77fd04daf2a7b77564c5857d6459d29d.bindPopup(popup_e2b70734a1fdad329766d7e927d8e8aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81d4940bb7f23e2ddd492d1d3e4e841e = L.circleMarker(\\n\",\n       \"                [34.2761, 117.167],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e874e9a93db4add16e4e69aaf6ba7d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_75d38943523a9ea06439ea4922b1641c = $(`&lt;div id=&quot;html_75d38943523a9ea06439ea4922b1641c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.167             latitude:34.2761             PM2_5:66.15223464             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e874e9a93db4add16e4e69aaf6ba7d5.setContent(html_75d38943523a9ea06439ea4922b1641c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81d4940bb7f23e2ddd492d1d3e4e841e.bindPopup(popup_3e874e9a93db4add16e4e69aaf6ba7d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98a79db0b064decce8197cba4135748a = L.circleMarker(\\n\",\n       \"                [36.6428, 101.748],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be1ad8220346b17afdc509226e906fec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b4ac36a52ca85ada776a61e1d28f476 = $(`&lt;div id=&quot;html_6b4ac36a52ca85ada776a61e1d28f476&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.748             latitude:36.6428             PM2_5:57.3005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be1ad8220346b17afdc509226e906fec.setContent(html_6b4ac36a52ca85ada776a61e1d28f476);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98a79db0b064decce8197cba4135748a.bindPopup(popup_be1ad8220346b17afdc509226e906fec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2abd36d1cacfcce7c5d643e5c0b6f78 = L.circleMarker(\\n\",\n       \"                [27.8159, 112.9227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3aec26dd47bf724512f29f4a9dfb97ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc2c7e033cd054d6ff8bd0eb675cda84 = $(`&lt;div id=&quot;html_fc2c7e033cd054d6ff8bd0eb675cda84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9227             latitude:27.8159             PM2_5:45.07222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3aec26dd47bf724512f29f4a9dfb97ca.setContent(html_fc2c7e033cd054d6ff8bd0eb675cda84);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2abd36d1cacfcce7c5d643e5c0b6f78.bindPopup(popup_3aec26dd47bf724512f29f4a9dfb97ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fffc08d373e9e65ceb2d822c1bb57c5f = L.circleMarker(\\n\",\n       \"                [30.3119, 120.12],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fcfcd93590bd278c5869e4cec26a1649 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18fe3147db1f0018b06f925d0332fe7a = $(`&lt;div id=&quot;html_18fe3147db1f0018b06f925d0332fe7a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.12             latitude:30.3119             PM2_5:42.92936288             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fcfcd93590bd278c5869e4cec26a1649.setContent(html_18fe3147db1f0018b06f925d0332fe7a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fffc08d373e9e65ceb2d822c1bb57c5f.bindPopup(popup_fcfcd93590bd278c5869e4cec26a1649)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fdafecaf44ca3e06ff0871bc0c196cd5 = L.circleMarker(\\n\",\n       \"                [29.7736, 121.633],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6cbc73569fdbb08664b70808087c450 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_871df2593d2dd81d844747026e822a42 = $(`&lt;div id=&quot;html_871df2593d2dd81d844747026e822a42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.633             latitude:29.7736             PM2_5:33.41340782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6cbc73569fdbb08664b70808087c450.setContent(html_871df2593d2dd81d844747026e822a42);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fdafecaf44ca3e06ff0871bc0c196cd5.bindPopup(popup_b6cbc73569fdbb08664b70808087c450)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c73afca5f3461ed0839a7a62d5c43e9 = L.circleMarker(\\n\",\n       \"                [34.5911, 119.1478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25a01a84259de901c5248dcc959bdae6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13efaa9eb53b5952c1589c0844d34828 = $(`&lt;div id=&quot;html_13efaa9eb53b5952c1589c0844d34828&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1478             latitude:34.5911             PM2_5:43.48860399             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25a01a84259de901c5248dcc959bdae6.setContent(html_13efaa9eb53b5952c1589c0844d34828);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c73afca5f3461ed0839a7a62d5c43e9.bindPopup(popup_25a01a84259de901c5248dcc959bdae6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8c40aa68bd1f4dfbfcf8d7423b7d2bb = L.circleMarker(\\n\",\n       \"                [31.155, 120.636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7f1fcc9b1c77a75cd7dd4f80d6ede7b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7787fc1f3b48b551df2d0a297cbb72e8 = $(`&lt;div id=&quot;html_7787fc1f3b48b551df2d0a297cbb72e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.636             latitude:31.155             PM2_5:39.32271468             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7f1fcc9b1c77a75cd7dd4f80d6ede7b.setContent(html_7787fc1f3b48b551df2d0a297cbb72e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8c40aa68bd1f4dfbfcf8d7423b7d2bb.bindPopup(popup_f7f1fcc9b1c77a75cd7dd4f80d6ede7b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aaf749c747eb1ac7ac4554699c600aaa = L.circleMarker(\\n\",\n       \"                [35.2375, 115.474722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7afc8e32a10bffcea52626aa1c0c8d28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d47824b9dcaee53abecccad17639a2d = $(`&lt;div id=&quot;html_5d47824b9dcaee53abecccad17639a2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.474722             latitude:35.2375             PM2_5:57.86516854             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7afc8e32a10bffcea52626aa1c0c8d28.setContent(html_5d47824b9dcaee53abecccad17639a2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aaf749c747eb1ac7ac4554699c600aaa.bindPopup(popup_7afc8e32a10bffcea52626aa1c0c8d28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01491862a67e17b9f576a40f3aad8c15 = L.circleMarker(\\n\",\n       \"                [30.518, 106.631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dae7d0616d004da7dc01e2c137ff872f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a81d307d7c43090cce096eae26acb13 = $(`&lt;div id=&quot;html_3a81d307d7c43090cce096eae26acb13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.631             latitude:30.518             PM2_5:32.56446991             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dae7d0616d004da7dc01e2c137ff872f.setContent(html_3a81d307d7c43090cce096eae26acb13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01491862a67e17b9f576a40f3aad8c15.bindPopup(popup_dae7d0616d004da7dc01e2c137ff872f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b21c45a9358c2c513f8189d6c3940ed7 = L.circleMarker(\\n\",\n       \"                [31.1333, 104.3883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eddf213c183964ab55767880ca59cdda = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dabe9c48a6c63d9e6d3aba8c86ec4a28 = $(`&lt;div id=&quot;html_dabe9c48a6c63d9e6d3aba8c86ec4a28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.3883             latitude:31.1333             PM2_5:44.57222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eddf213c183964ab55767880ca59cdda.setContent(html_dabe9c48a6c63d9e6d3aba8c86ec4a28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b21c45a9358c2c513f8189d6c3940ed7.bindPopup(popup_eddf213c183964ab55767880ca59cdda)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c42690690ab0c7485faca405ecef6019 = L.circleMarker(\\n\",\n       \"                [32.0417, 120.81],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5901b9b455f091271f2a042a1a80a21d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5bb34693cf9c2040fbbd56381965aa3 = $(`&lt;div id=&quot;html_b5bb34693cf9c2040fbbd56381965aa3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.81             latitude:32.0417             PM2_5:36.4957265             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5901b9b455f091271f2a042a1a80a21d.setContent(html_b5bb34693cf9c2040fbbd56381965aa3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c42690690ab0c7485faca405ecef6019.bindPopup(popup_5901b9b455f091271f2a042a1a80a21d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0301195098c026b35072c5c5c006aaed = L.circleMarker(\\n\",\n       \"                [36.5776, 114.5035],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e67f79f00040c8b01c58757121cea3e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_20acbd4f0a166e5ea20a09e470c10704 = $(`&lt;div id=&quot;html_20acbd4f0a166e5ea20a09e470c10704&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5035             latitude:36.5776             PM2_5:73.41736695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e67f79f00040c8b01c58757121cea3e3.setContent(html_20acbd4f0a166e5ea20a09e470c10704);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0301195098c026b35072c5c5c006aaed.bindPopup(popup_e67f79f00040c8b01c58757121cea3e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c058fa5cbb08d51fe71450723875d299 = L.circleMarker(\\n\",\n       \"                [45.7677, 131.0032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f84522cbf0e93ad021691ab9fec8b279 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_101589f246ad3b026fdfba5ada92a40b = $(`&lt;div id=&quot;html_101589f246ad3b026fdfba5ada92a40b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.0032             latitude:45.7677             PM2_5:36.55084746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f84522cbf0e93ad021691ab9fec8b279.setContent(html_101589f246ad3b026fdfba5ada92a40b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c058fa5cbb08d51fe71450723875d299.bindPopup(popup_f84522cbf0e93ad021691ab9fec8b279)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d123d3b38508e4c1e925fe7fbb34a6d = L.circleMarker(\\n\",\n       \"                [30.2692, 120.19],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7226950771e391d3c627a244b95914d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36bb83e4f2b69692d77e650c40eda695 = $(`&lt;div id=&quot;html_36bb83e4f2b69692d77e650c40eda695&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.19             latitude:30.2692             PM2_5:42.02361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7226950771e391d3c627a244b95914d5.setContent(html_36bb83e4f2b69692d77e650c40eda695);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d123d3b38508e4c1e925fe7fbb34a6d.bindPopup(popup_7226950771e391d3c627a244b95914d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a4d359d2750f08d070113d2324ef23d = L.circleMarker(\\n\",\n       \"                [37.8692, 112.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_203c83a7695cedfc24bc871bf9bd0447 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43073ef2f85cf4cac161af76e7d36bcd = $(`&lt;div id=&quot;html_43073ef2f85cf4cac161af76e7d36bcd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5369             latitude:37.8692             PM2_5:65.43201133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_203c83a7695cedfc24bc871bf9bd0447.setContent(html_43073ef2f85cf4cac161af76e7d36bcd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a4d359d2750f08d070113d2324ef23d.bindPopup(popup_203c83a7695cedfc24bc871bf9bd0447)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66960c5f66d1af030448e5c1ad0fd093 = L.circleMarker(\\n\",\n       \"                [31.4189, 118.37],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_260a0811f490dfa1728e12b717c3326a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_081dd0346d1a5add0208ea6d033eed4f = $(`&lt;div id=&quot;html_081dd0346d1a5add0208ea6d033eed4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.37             latitude:31.4189             PM2_5:49.21848739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_260a0811f490dfa1728e12b717c3326a.setContent(html_081dd0346d1a5add0208ea6d033eed4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66960c5f66d1af030448e5c1ad0fd093.bindPopup(popup_260a0811f490dfa1728e12b717c3326a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7afdcb1a3712079c3fa892e1c031ef1d = L.circleMarker(\\n\",\n       \"                [31.7797, 116.5068],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4fc0343b25a864d0fba7e4d99740db73 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_542c21a757efe4e2685c4f1e41dac7a1 = $(`&lt;div id=&quot;html_542c21a757efe4e2685c4f1e41dac7a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5068             latitude:31.7797             PM2_5:41.27668539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4fc0343b25a864d0fba7e4d99740db73.setContent(html_542c21a757efe4e2685c4f1e41dac7a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7afdcb1a3712079c3fa892e1c031ef1d.bindPopup(popup_4fc0343b25a864d0fba7e4d99740db73)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1bf65134d97377095dc539c237e8987 = L.circleMarker(\\n\",\n       \"                [23.0944, 109.6014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c40f1701047b6ff2ddd27ccd2ea9ff4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c52838edc31e8577318c7b6c46b814d4 = $(`&lt;div id=&quot;html_c52838edc31e8577318c7b6c46b814d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6014             latitude:23.0944             PM2_5:37.92877095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c40f1701047b6ff2ddd27ccd2ea9ff4.setContent(html_c52838edc31e8577318c7b6c46b814d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1bf65134d97377095dc539c237e8987.bindPopup(popup_1c40f1701047b6ff2ddd27ccd2ea9ff4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ef505d7b6f42f5ff03cad3a1230e271 = L.circleMarker(\\n\",\n       \"                [47.3382, 130.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_148dbe5ab7820880cb05612ba0b9b3cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d5ae65e7606f0d7224042ed78f74dc0 = $(`&lt;div id=&quot;html_3d5ae65e7606f0d7224042ed78f74dc0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.1097             latitude:47.3382             PM2_5:17.86571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_148dbe5ab7820880cb05612ba0b9b3cd.setContent(html_3d5ae65e7606f0d7224042ed78f74dc0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ef505d7b6f42f5ff03cad3a1230e271.bindPopup(popup_148dbe5ab7820880cb05612ba0b9b3cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1af5686e7bdb25fe35083b0ef9dad33 = L.circleMarker(\\n\",\n       \"                [32.4285, 105.8624],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a131a39ea7c51b62225163b12fc9393 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ab6cb361950ca0bda252688bd68919f = $(`&lt;div id=&quot;html_7ab6cb361950ca0bda252688bd68919f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8624             latitude:32.4285             PM2_5:25.26044568             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a131a39ea7c51b62225163b12fc9393.setContent(html_7ab6cb361950ca0bda252688bd68919f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1af5686e7bdb25fe35083b0ef9dad33.bindPopup(popup_3a131a39ea7c51b62225163b12fc9393)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4b9a6f312bf05ef6da160ff82a1ad86 = L.circleMarker(\\n\",\n       \"                [31.9025, 102.2218],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fcb852502ae4be51034fcdc25f60ed19 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0023ba38e405ee91702bb63fd3ce896 = $(`&lt;div id=&quot;html_d0023ba38e405ee91702bb63fd3ce896&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2218             latitude:31.9025             PM2_5:10.50840336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fcb852502ae4be51034fcdc25f60ed19.setContent(html_d0023ba38e405ee91702bb63fd3ce896);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4b9a6f312bf05ef6da160ff82a1ad86.bindPopup(popup_fcb852502ae4be51034fcdc25f60ed19)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3cf462d365273efdd287f876c822790d = L.circleMarker(\\n\",\n       \"                [27.7019, 106.9242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33b87701e5087276f094b2d8f3eac961 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a5611ea1b826763379dfc736cd80183 = $(`&lt;div id=&quot;html_0a5611ea1b826763379dfc736cd80183&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9242             latitude:27.7019             PM2_5:27.95238095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33b87701e5087276f094b2d8f3eac961.setContent(html_0a5611ea1b826763379dfc736cd80183);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3cf462d365273efdd287f876c822790d.bindPopup(popup_33b87701e5087276f094b2d8f3eac961)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f08d60ba52684c16c24db9c3630d8c5 = L.circleMarker(\\n\",\n       \"                [22.7422, 114.5317],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2f93b5460568638d96d9c7855ee410f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5a6d94db534dd9941bbab76a6d1cd17 = $(`&lt;div id=&quot;html_e5a6d94db534dd9941bbab76a6d1cd17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5317             latitude:22.7422             PM2_5:29.73285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2f93b5460568638d96d9c7855ee410f.setContent(html_e5a6d94db534dd9941bbab76a6d1cd17);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f08d60ba52684c16c24db9c3630d8c5.bindPopup(popup_e2f93b5460568638d96d9c7855ee410f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b26798812178537b36752c9d0437ebe7 = L.circleMarker(\\n\",\n       \"                [29.5467, 103.7705],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b9e4d3d1930a7b8668d5c94076731c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40f6aaa9fb041b3712848c3f2d70269c = $(`&lt;div id=&quot;html_40f6aaa9fb041b3712848c3f2d70269c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7705             latitude:29.5467             PM2_5:48.10252809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b9e4d3d1930a7b8668d5c94076731c4.setContent(html_40f6aaa9fb041b3712848c3f2d70269c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b26798812178537b36752c9d0437ebe7.bindPopup(popup_9b9e4d3d1930a7b8668d5c94076731c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d633814e8fd9d3992be13855ffccd2f6 = L.circleMarker(\\n\",\n       \"                [23.0672, 109.6042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ced89ce3a6b772f40ff908cc3fcae7c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e261e00d739485ea0e450acdfad1a0ed = $(`&lt;div id=&quot;html_e261e00d739485ea0e450acdfad1a0ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6042             latitude:23.0672             PM2_5:37.3603352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ced89ce3a6b772f40ff908cc3fcae7c8.setContent(html_e261e00d739485ea0e450acdfad1a0ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d633814e8fd9d3992be13855ffccd2f6.bindPopup(popup_ced89ce3a6b772f40ff908cc3fcae7c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f1f1ecf069ffc1dc902c24d2644f20a = L.circleMarker(\\n\",\n       \"                [33.6347, 114.6758],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbd0359550ecbfe61ddfa883d16812a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9738576df7c9613a53ee22e89b2629f7 = $(`&lt;div id=&quot;html_9738576df7c9613a53ee22e89b2629f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6758             latitude:33.6347             PM2_5:49.04929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbd0359550ecbfe61ddfa883d16812a4.setContent(html_9738576df7c9613a53ee22e89b2629f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f1f1ecf069ffc1dc902c24d2644f20a.bindPopup(popup_bbd0359550ecbfe61ddfa883d16812a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59294d7d1e0981b12932de809f2040d5 = L.circleMarker(\\n\",\n       \"                [41.0831, 123.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdfcf1a39427c4ed53d8894118bce76e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc8659b9f8af797172ab364275cb023d = $(`&lt;div id=&quot;html_fc8659b9f8af797172ab364275cb023d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0156             latitude:41.0831             PM2_5:32.32402235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdfcf1a39427c4ed53d8894118bce76e.setContent(html_fc8659b9f8af797172ab364275cb023d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59294d7d1e0981b12932de809f2040d5.bindPopup(popup_fdfcf1a39427c4ed53d8894118bce76e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ea8b15150c24073895fceb24e09e16b = L.circleMarker(\\n\",\n       \"                [42.2217, 123.7153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_765741056521efcd043ff6de724542d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e82401389199b5322632d30b6df5ee9 = $(`&lt;div id=&quot;html_2e82401389199b5322632d30b6df5ee9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7153             latitude:42.2217             PM2_5:31.41666667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_765741056521efcd043ff6de724542d1.setContent(html_2e82401389199b5322632d30b6df5ee9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ea8b15150c24073895fceb24e09e16b.bindPopup(popup_765741056521efcd043ff6de724542d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_649b8c925dcde999fbed39302f7c7868 = L.circleMarker(\\n\",\n       \"                [29.6632, 94.3616],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_736ea4ff092082ac96edf3ea1f5f6eec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef5f46ffbeb806b0b088d27e370114bc = $(`&lt;div id=&quot;html_ef5f46ffbeb806b0b088d27e370114bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:94.3616             latitude:29.6632             PM2_5:7.451977401             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_736ea4ff092082ac96edf3ea1f5f6eec.setContent(html_ef5f46ffbeb806b0b088d27e370114bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_649b8c925dcde999fbed39302f7c7868.bindPopup(popup_736ea4ff092082ac96edf3ea1f5f6eec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08611d2b1f6746c88df00623e8615d72 = L.circleMarker(\\n\",\n       \"                [30.9414, 117.7806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_961fb160c3e539f3f0e663c99663fcba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ecd0ab382fe61e47c4cbb40c94d75b5 = $(`&lt;div id=&quot;html_5ecd0ab382fe61e47c4cbb40c94d75b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7806             latitude:30.9414             PM2_5:50.90972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_961fb160c3e539f3f0e663c99663fcba.setContent(html_5ecd0ab382fe61e47c4cbb40c94d75b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08611d2b1f6746c88df00623e8615d72.bindPopup(popup_961fb160c3e539f3f0e663c99663fcba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45f444456e485210b71788bcb6cc132a = L.circleMarker(\\n\",\n       \"                [28.2169, 116.9983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3ccf9efbf57e977b1c4caff15787395 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac2737f9a38098168f47b2a1e08a6b87 = $(`&lt;div id=&quot;html_ac2737f9a38098168f47b2a1e08a6b87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9983             latitude:28.2169             PM2_5:34.9039548             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3ccf9efbf57e977b1c4caff15787395.setContent(html_ac2737f9a38098168f47b2a1e08a6b87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45f444456e485210b71788bcb6cc132a.bindPopup(popup_e3ccf9efbf57e977b1c4caff15787395)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_befe38b83ec5b32db72bca24791c2e00 = L.circleMarker(\\n\",\n       \"                [33.9592, 118.2442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b667ca5d12a306d1bc3ca3c73d12475 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2c411c25572318370e2d74dabae2f44 = $(`&lt;div id=&quot;html_d2c411c25572318370e2d74dabae2f44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2442             latitude:33.9592             PM2_5:56.46619217             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b667ca5d12a306d1bc3ca3c73d12475.setContent(html_d2c411c25572318370e2d74dabae2f44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_befe38b83ec5b32db72bca24791c2e00.bindPopup(popup_0b667ca5d12a306d1bc3ca3c73d12475)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a7d73861a44c24a1eacd29ebafa7f70 = L.circleMarker(\\n\",\n       \"                [24.5058, 118.0936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa42a744036330157bad2fa482678ee6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ab05be8e9acc84cf8087b5f6d7959d7 = $(`&lt;div id=&quot;html_2ab05be8e9acc84cf8087b5f6d7959d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0936             latitude:24.5058             PM2_5:25.02367688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa42a744036330157bad2fa482678ee6.setContent(html_2ab05be8e9acc84cf8087b5f6d7959d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a7d73861a44c24a1eacd29ebafa7f70.bindPopup(popup_aa42a744036330157bad2fa482678ee6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34635374c0d6592f3927e5bf41145906 = L.circleMarker(\\n\",\n       \"                [32.215, 119.491],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4745f6b7e675b4a61ceb3788190cee18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_88330209d83011b1bfd5a79cd7bf1963 = $(`&lt;div id=&quot;html_88330209d83011b1bfd5a79cd7bf1963&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.491             latitude:32.215             PM2_5:46.08888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4745f6b7e675b4a61ceb3788190cee18.setContent(html_88330209d83011b1bfd5a79cd7bf1963);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34635374c0d6592f3927e5bf41145906.bindPopup(popup_4745f6b7e675b4a61ceb3788190cee18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6b02f4cde9cd256c8b2af4b3fc961c4 = L.circleMarker(\\n\",\n       \"                [45.0878, 124.8292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4de2abbd7b310494930b52ff1a6b74a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2de6012c5808ac70f03216c23e9611f = $(`&lt;div id=&quot;html_f2de6012c5808ac70f03216c23e9611f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8292             latitude:45.0878             PM2_5:27.28830084             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4de2abbd7b310494930b52ff1a6b74a5.setContent(html_f2de6012c5808ac70f03216c23e9611f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6b02f4cde9cd256c8b2af4b3fc961c4.bindPopup(popup_4de2abbd7b310494930b52ff1a6b74a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c079e77ce5014e8939b839f30680dea = L.circleMarker(\\n\",\n       \"                [23.7586, 114.6944],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3653f9a23e4d541b01b1daf729621bed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5cb21e320c767470fe26d7c4d157f8f9 = $(`&lt;div id=&quot;html_5cb21e320c767470fe26d7c4d157f8f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6944             latitude:23.7586             PM2_5:29.19382022             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3653f9a23e4d541b01b1daf729621bed.setContent(html_5cb21e320c767470fe26d7c4d157f8f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c079e77ce5014e8939b839f30680dea.bindPopup(popup_3653f9a23e4d541b01b1daf729621bed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_811fcddd5fc539a638910af0a615d135 = L.circleMarker(\\n\",\n       \"                [27.9958, 113.1817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac00d2e630a90fbc46a72dae20145f69 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14adaa4d5519921e0d0c9a5c9daedb74 = $(`&lt;div id=&quot;html_14adaa4d5519921e0d0c9a5c9daedb74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1817             latitude:27.9958             PM2_5:39.6686747             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac00d2e630a90fbc46a72dae20145f69.setContent(html_14adaa4d5519921e0d0c9a5c9daedb74);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_811fcddd5fc539a638910af0a615d135.bindPopup(popup_ac00d2e630a90fbc46a72dae20145f69)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36c44eba87365c2a42ae89dc91a74fe5 = L.circleMarker(\\n\",\n       \"                [42.2864, 123.8489],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cff9497b0d7107c380210526686d1e5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1733b33c445c5b4dc2a25587dbd2bb74 = $(`&lt;div id=&quot;html_1733b33c445c5b4dc2a25587dbd2bb74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8489             latitude:42.2864             PM2_5:32.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cff9497b0d7107c380210526686d1e5f.setContent(html_1733b33c445c5b4dc2a25587dbd2bb74);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36c44eba87365c2a42ae89dc91a74fe5.bindPopup(popup_cff9497b0d7107c380210526686d1e5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_539ccfa5f5300032c81b07a39db9906a = L.circleMarker(\\n\",\n       \"                [36.1031, 103.631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77623a799864b4fc2549b7191d8016f0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a864916621003c2be63b9fc25a51c650 = $(`&lt;div id=&quot;html_a864916621003c2be63b9fc25a51c650&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.631             latitude:36.1031             PM2_5:61.04073034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77623a799864b4fc2549b7191d8016f0.setContent(html_a864916621003c2be63b9fc25a51c650);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_539ccfa5f5300032c81b07a39db9906a.bindPopup(popup_77623a799864b4fc2549b7191d8016f0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41a18d38ed5caf27eb83a7f3f1e122a1 = L.circleMarker(\\n\",\n       \"                [30.9414, 117.8178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4c80cc568242a58c9ff42449127611d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa144e6661c098fd716360103ae64035 = $(`&lt;div id=&quot;html_aa144e6661c098fd716360103ae64035&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8178             latitude:30.9414             PM2_5:52.25837989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4c80cc568242a58c9ff42449127611d.setContent(html_aa144e6661c098fd716360103ae64035);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41a18d38ed5caf27eb83a7f3f1e122a1.bindPopup(popup_b4c80cc568242a58c9ff42449127611d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dfbed8ae5f2e61472c1438bfc4ec2529 = L.circleMarker(\\n\",\n       \"                [43.8303, 87.5801],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4431597fc11e0f9d00923b01f4492d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f5aa1828d44582da9691aedf33559398 = $(`&lt;div id=&quot;html_f5aa1828d44582da9691aedf33559398&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5801             latitude:43.8303             PM2_5:54.90373563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4431597fc11e0f9d00923b01f4492d2.setContent(html_f5aa1828d44582da9691aedf33559398);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dfbed8ae5f2e61472c1438bfc4ec2529.bindPopup(popup_c4431597fc11e0f9d00923b01f4492d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_819ace1424ba6e380f766d655f56d1f6 = L.circleMarker(\\n\",\n       \"                [30.0033, 120.7789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ef5676f1ae2ad70f3bebe80385bbfd4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9cf3bde830611469492cab6d6455ccce = $(`&lt;div id=&quot;html_9cf3bde830611469492cab6d6455ccce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.7789             latitude:30.0033             PM2_5:43.33379888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ef5676f1ae2ad70f3bebe80385bbfd4.setContent(html_9cf3bde830611469492cab6d6455ccce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_819ace1424ba6e380f766d655f56d1f6.bindPopup(popup_7ef5676f1ae2ad70f3bebe80385bbfd4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff09371c98ca10909e64a5dd18c445e2 = L.circleMarker(\\n\",\n       \"                [37.0964, 114.5331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9bee30dd9a04727b4a9c4c9762edc3ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df666b47ea98678e0dc5f5a54cfae1d6 = $(`&lt;div id=&quot;html_df666b47ea98678e0dc5f5a54cfae1d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5331             latitude:37.0964             PM2_5:77.58595989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9bee30dd9a04727b4a9c4c9762edc3ab.setContent(html_df666b47ea98678e0dc5f5a54cfae1d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff09371c98ca10909e64a5dd18c445e2.bindPopup(popup_9bee30dd9a04727b4a9c4c9762edc3ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_363219ec7ed4ff63821625387e2d72b5 = L.circleMarker(\\n\",\n       \"                [40.8144, 111.608],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ba19f65badc6fb76a646abda213ebdf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f70a79395e6835b442c2e958644e6cde = $(`&lt;div id=&quot;html_f70a79395e6835b442c2e958644e6cde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.608             latitude:40.8144             PM2_5:45.11331445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ba19f65badc6fb76a646abda213ebdf.setContent(html_f70a79395e6835b442c2e958644e6cde);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_363219ec7ed4ff63821625387e2d72b5.bindPopup(popup_9ba19f65badc6fb76a646abda213ebdf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_316784115124e6518a88b63dfd4e380b = L.circleMarker(\\n\",\n       \"                [38.885, 121.5638889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8ac13fe31bce43c24c517b3ee3bff99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60624d32be0483e1035a29b20860dd7b = $(`&lt;div id=&quot;html_60624d32be0483e1035a29b20860dd7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5638889             latitude:38.885             PM2_5:28.35180055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8ac13fe31bce43c24c517b3ee3bff99.setContent(html_60624d32be0483e1035a29b20860dd7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_316784115124e6518a88b63dfd4e380b.bindPopup(popup_f8ac13fe31bce43c24c517b3ee3bff99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0de9886957a18d2b82423f6f5dd9e03 = L.circleMarker(\\n\",\n       \"                [29.3547, 110.5594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a2a1ad448ae3681899e2d6c0a85e25c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0bffe42f1c1467ac1a4b8cee2bdc1e01 = $(`&lt;div id=&quot;html_0bffe42f1c1467ac1a4b8cee2bdc1e01&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.5594             latitude:29.3547             PM2_5:28.22005571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a2a1ad448ae3681899e2d6c0a85e25c.setContent(html_0bffe42f1c1467ac1a4b8cee2bdc1e01);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0de9886957a18d2b82423f6f5dd9e03.bindPopup(popup_2a2a1ad448ae3681899e2d6c0a85e25c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86e8ab0a1c5f68f3dea2abe50630edd5 = L.circleMarker(\\n\",\n       \"                [41.2864, 123.7669],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc2436660ca017b5a1294c0b19176e89 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e4a12b73cd42978a74f5b0b224325ad = $(`&lt;div id=&quot;html_1e4a12b73cd42978a74f5b0b224325ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7669             latitude:41.2864             PM2_5:26.47777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc2436660ca017b5a1294c0b19176e89.setContent(html_1e4a12b73cd42978a74f5b0b224325ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86e8ab0a1c5f68f3dea2abe50630edd5.bindPopup(popup_dc2436660ca017b5a1294c0b19176e89)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8e00c7ce22a53a4174797f04d444601 = L.circleMarker(\\n\",\n       \"                [26.5894, 104.8475],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eac7926c204985d366e87979f55c481b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b6e85a0119860cde807cc395f7101e8 = $(`&lt;div id=&quot;html_6b6e85a0119860cde807cc395f7101e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8475             latitude:26.5894             PM2_5:30.62569832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eac7926c204985d366e87979f55c481b.setContent(html_6b6e85a0119860cde807cc395f7101e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8e00c7ce22a53a4174797f04d444601.bindPopup(popup_eac7926c204985d366e87979f55c481b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_919227f83b3192cb359204d2754cfa81 = L.circleMarker(\\n\",\n       \"                [34.402, 115.6578],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e1e16b8945a106722566a467ecb633d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d4aefb082eff2d4192fe66f1d6be1ce = $(`&lt;div id=&quot;html_9d4aefb082eff2d4192fe66f1d6be1ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6578             latitude:34.402             PM2_5:56.04761905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e1e16b8945a106722566a467ecb633d.setContent(html_9d4aefb082eff2d4192fe66f1d6be1ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_919227f83b3192cb359204d2754cfa81.bindPopup(popup_6e1e16b8945a106722566a467ecb633d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8495c60486c493a8ef1cea2213da1b79 = L.circleMarker(\\n\",\n       \"                [31.3097, 120.669],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e61a10fd35d1e09086d2388a6659043f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7d5d1e035f3c2e6405bb397ee878633 = $(`&lt;div id=&quot;html_a7d5d1e035f3c2e6405bb397ee878633&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.669             latitude:31.3097             PM2_5:39.40363128             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e61a10fd35d1e09086d2388a6659043f.setContent(html_a7d5d1e035f3c2e6405bb397ee878633);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8495c60486c493a8ef1cea2213da1b79.bindPopup(popup_e61a10fd35d1e09086d2388a6659043f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f58c7cac4e58723b3647d270426e890e = L.circleMarker(\\n\",\n       \"                [31.7506, 118.5106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f258e960fe3dcd82d076d3e709a5ddae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96ea79433e3e0a903ece8b7285f0d61e = $(`&lt;div id=&quot;html_96ea79433e3e0a903ece8b7285f0d61e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5106             latitude:31.7506             PM2_5:49.01256983             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f258e960fe3dcd82d076d3e709a5ddae.setContent(html_96ea79433e3e0a903ece8b7285f0d61e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f58c7cac4e58723b3647d270426e890e.bindPopup(popup_f258e960fe3dcd82d076d3e709a5ddae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31e64c393b719c9e9e086da4fac91f29 = L.circleMarker(\\n\",\n       \"                [26.1092, 119.299],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_072701328028c3003c822233bffb42c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e97533b85a210d8fd0855b88acd99890 = $(`&lt;div id=&quot;html_e97533b85a210d8fd0855b88acd99890&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.299             latitude:26.1092             PM2_5:26.66615854             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_072701328028c3003c822233bffb42c4.setContent(html_e97533b85a210d8fd0855b88acd99890);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31e64c393b719c9e9e086da4fac91f29.bindPopup(popup_072701328028c3003c822233bffb42c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e46190f45ab3754b6f5e7b023d03f7e9 = L.circleMarker(\\n\",\n       \"                [34.2749, 108.882],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac11124022b75fcaa8c73c4280c56f81 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14bf50c7beded3afdf1599012905445d = $(`&lt;div id=&quot;html_14bf50c7beded3afdf1599012905445d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.882             latitude:34.2749             PM2_5:66.98873239             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac11124022b75fcaa8c73c4280c56f81.setContent(html_14bf50c7beded3afdf1599012905445d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e46190f45ab3754b6f5e7b023d03f7e9.bindPopup(popup_ac11124022b75fcaa8c73c4280c56f81)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_423e2a267dcbd8429c2ce17391b5180a = L.circleMarker(\\n\",\n       \"                [41.9339, 123.6836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7b4241126409ad86df6c6494e6a4124 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef61ea4ef143600ff8d1b9b19f770a61 = $(`&lt;div id=&quot;html_ef61ea4ef143600ff8d1b9b19f770a61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.6836             latitude:41.9339             PM2_5:26.52638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7b4241126409ad86df6c6494e6a4124.setContent(html_ef61ea4ef143600ff8d1b9b19f770a61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_423e2a267dcbd8429c2ce17391b5180a.bindPopup(popup_e7b4241126409ad86df6c6494e6a4124)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68135936ff3108ac3c58f1bc2a599f53 = L.circleMarker(\\n\",\n       \"                [30.3515, 112.2068],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a9f6c98e44bbc6af51e91b4687f1001 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f0d3f27434f03ad7d4a3d6a1ae2f714 = $(`&lt;div id=&quot;html_6f0d3f27434f03ad7d4a3d6a1ae2f714&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2068             latitude:30.3515             PM2_5:51.6056338             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a9f6c98e44bbc6af51e91b4687f1001.setContent(html_6f0d3f27434f03ad7d4a3d6a1ae2f714);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68135936ff3108ac3c58f1bc2a599f53.bindPopup(popup_3a9f6c98e44bbc6af51e91b4687f1001)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3b003a9f6519c126b07e029da269079 = L.circleMarker(\\n\",\n       \"                [42.0503, 121.6972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e442f89951d16014fd311316f64acfe8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_200bd340f2e67f8be080304efb4e4438 = $(`&lt;div id=&quot;html_200bd340f2e67f8be080304efb4e4438&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6972             latitude:42.0503             PM2_5:24.87606838             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e442f89951d16014fd311316f64acfe8.setContent(html_200bd340f2e67f8be080304efb4e4438);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3b003a9f6519c126b07e029da269079.bindPopup(popup_e442f89951d16014fd311316f64acfe8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_130e1f10a5ec13548415544aeb5cf8d1 = L.circleMarker(\\n\",\n       \"                [34.2153, 117.256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7fa929b404f4310d79132a2340397bd9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3093e3c8dae885316f04705e438b3b3 = $(`&lt;div id=&quot;html_d3093e3c8dae885316f04705e438b3b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.256             latitude:34.2153             PM2_5:58.55555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7fa929b404f4310d79132a2340397bd9.setContent(html_d3093e3c8dae885316f04705e438b3b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_130e1f10a5ec13548415544aeb5cf8d1.bindPopup(popup_7fa929b404f4310d79132a2340397bd9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5e162485950ac2552355cfce84bb48c = L.circleMarker(\\n\",\n       \"                [43.8947, 126.5786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d76feb2365971642d5e0b897b05439fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_227bfa07f0ded81d315d778edb638efb = $(`&lt;div id=&quot;html_227bfa07f0ded81d315d778edb638efb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5786             latitude:43.8947             PM2_5:28.36768802             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d76feb2365971642d5e0b897b05439fb.setContent(html_227bfa07f0ded81d315d778edb638efb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5e162485950ac2552355cfce84bb48c.bindPopup(popup_d76feb2365971642d5e0b897b05439fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1200f1bf0235bcd97158ee0fc97b655 = L.circleMarker(\\n\",\n       \"                [31.9051, 117.16],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a3077eb3f34490e1c70e6784876cc9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b923976ce9c1a3a98b823369b3410aea = $(`&lt;div id=&quot;html_b923976ce9c1a3a98b823369b3410aea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.16             latitude:31.9051             PM2_5:47.26264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a3077eb3f34490e1c70e6784876cc9e.setContent(html_b923976ce9c1a3a98b823369b3410aea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1200f1bf0235bcd97158ee0fc97b655.bindPopup(popup_5a3077eb3f34490e1c70e6784876cc9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2074622b3c37b354e45a7d209267038 = L.circleMarker(\\n\",\n       \"                [38.0513, 114.4548],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b107035169e490f1b5695965e34a3cb0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99dda5e52f09ab999bcbb2b199892fdb = $(`&lt;div id=&quot;html_99dda5e52f09ab999bcbb2b199892fdb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4548             latitude:38.0513             PM2_5:68.18472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b107035169e490f1b5695965e34a3cb0.setContent(html_99dda5e52f09ab999bcbb2b199892fdb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2074622b3c37b354e45a7d209267038.bindPopup(popup_b107035169e490f1b5695965e34a3cb0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3681e7b4c35e28fee587035d172bcce = L.circleMarker(\\n\",\n       \"                [37.9648, 106.1532],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae625eacce943715f5403c8fd1aeb35b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2dc31127199c644ef07a27c60c43b077 = $(`&lt;div id=&quot;html_2dc31127199c644ef07a27c60c43b077&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1532             latitude:37.9648             PM2_5:36.54507042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae625eacce943715f5403c8fd1aeb35b.setContent(html_2dc31127199c644ef07a27c60c43b077);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3681e7b4c35e28fee587035d172bcce.bindPopup(popup_ae625eacce943715f5403c8fd1aeb35b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee03d44d1a9d49fdf2e7d1d9356bb5d6 = L.circleMarker(\\n\",\n       \"                [45.2978, 130.9298],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b34bfb90c5931e6246560f80512c9b9a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f48900f70effc243911036943660ca54 = $(`&lt;div id=&quot;html_f48900f70effc243911036943660ca54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9298             latitude:45.2978             PM2_5:22.03703704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b34bfb90c5931e6246560f80512c9b9a.setContent(html_f48900f70effc243911036943660ca54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee03d44d1a9d49fdf2e7d1d9356bb5d6.bindPopup(popup_b34bfb90c5931e6246560f80512c9b9a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_99849f00d8bd050fb4f42f9d247cd8fc = L.circleMarker(\\n\",\n       \"                [31.2284, 121.533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52abe2f4acfef96a39059aa06eef1fc5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa03d9930fede8d37c99c9de0e8d6e12 = $(`&lt;div id=&quot;html_aa03d9930fede8d37c99c9de0e8d6e12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.533             latitude:31.2284             PM2_5:39.66384181             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52abe2f4acfef96a39059aa06eef1fc5.setContent(html_aa03d9930fede8d37c99c9de0e8d6e12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_99849f00d8bd050fb4f42f9d247cd8fc.bindPopup(popup_52abe2f4acfef96a39059aa06eef1fc5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e1a62174a8f6c75e37f32bef56ad438 = L.circleMarker(\\n\",\n       \"                [39.6407, 118.1853],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d5ca266345b55afc3be7f16963e6eb9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bfa3a6bb2bfa75a00a7d2110854dc131 = $(`&lt;div id=&quot;html_bfa3a6bb2bfa75a00a7d2110854dc131&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1853             latitude:39.6407             PM2_5:50.95949721             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d5ca266345b55afc3be7f16963e6eb9.setContent(html_bfa3a6bb2bfa75a00a7d2110854dc131);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e1a62174a8f6c75e37f32bef56ad438.bindPopup(popup_9d5ca266345b55afc3be7f16963e6eb9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb7b61fbedc179f9c264baab47605a6d = L.circleMarker(\\n\",\n       \"                [30.3055, 112.2887],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_205ac4fea128b6d52439c447eb31be7c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_172ca095ce72add8f39303eec1f6315a = $(`&lt;div id=&quot;html_172ca095ce72add8f39303eec1f6315a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2887             latitude:30.3055             PM2_5:55.24782609             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_205ac4fea128b6d52439c447eb31be7c.setContent(html_172ca095ce72add8f39303eec1f6315a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb7b61fbedc179f9c264baab47605a6d.bindPopup(popup_205ac4fea128b6d52439c447eb31be7c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fad022257b576f34f98c3e6daba408f7 = L.circleMarker(\\n\",\n       \"                [35.7672, 115.0628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33f3dc798320db503c7f12bc932628d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f67fe2587e3946cf51f7c1d8992d8ba = $(`&lt;div id=&quot;html_0f67fe2587e3946cf51f7c1d8992d8ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0628             latitude:35.7672             PM2_5:57.94301994             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33f3dc798320db503c7f12bc932628d0.setContent(html_0f67fe2587e3946cf51f7c1d8992d8ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fad022257b576f34f98c3e6daba408f7.bindPopup(popup_33f3dc798320db503c7f12bc932628d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_103b27e5219fd2a034ec9f441cfb666f = L.circleMarker(\\n\",\n       \"                [30.9222, 117.8078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af8b485bf7d98f6eaa9ee3caaebb1902 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_87c57503e25c3b44d525b967c16e7cf9 = $(`&lt;div id=&quot;html_87c57503e25c3b44d525b967c16e7cf9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8078             latitude:30.9222             PM2_5:57.00139276             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af8b485bf7d98f6eaa9ee3caaebb1902.setContent(html_87c57503e25c3b44d525b967c16e7cf9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_103b27e5219fd2a034ec9f441cfb666f.bindPopup(popup_af8b485bf7d98f6eaa9ee3caaebb1902)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8346b72214129abc22db4a59e35b3f2d = L.circleMarker(\\n\",\n       \"                [31.4656, 104.6717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5f5340bb715d6a9adc0cb7ed816a7e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78c7c7e14f7c7d7199722ff94388ca31 = $(`&lt;div id=&quot;html_78c7c7e14f7c7d7199722ff94388ca31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6717             latitude:31.4656             PM2_5:48.23743017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5f5340bb715d6a9adc0cb7ed816a7e2.setContent(html_78c7c7e14f7c7d7199722ff94388ca31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8346b72214129abc22db4a59e35b3f2d.bindPopup(popup_c5f5340bb715d6a9adc0cb7ed816a7e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83626dc3b345d93d166de96f6417c72b = L.circleMarker(\\n\",\n       \"                [47.3489, 130.3172],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7aed011e0198b55337406d6ebd7114f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0ca572df4c9b5f8063e55f4a56eaaf5 = $(`&lt;div id=&quot;html_d0ca572df4c9b5f8063e55f4a56eaaf5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3172             latitude:47.3489             PM2_5:18.87857143             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7aed011e0198b55337406d6ebd7114f7.setContent(html_d0ca572df4c9b5f8063e55f4a56eaaf5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83626dc3b345d93d166de96f6417c72b.bindPopup(popup_7aed011e0198b55337406d6ebd7114f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2862d44c81e7220ca80e20d99921744 = L.circleMarker(\\n\",\n       \"                [32.3153, 118.3094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41952033fb306a8a97151f1d11b0543a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e789dfef176d411c7f519930692cb212 = $(`&lt;div id=&quot;html_e789dfef176d411c7f519930692cb212&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3094             latitude:32.3153             PM2_5:50.79166667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41952033fb306a8a97151f1d11b0543a.setContent(html_e789dfef176d411c7f519930692cb212);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2862d44c81e7220ca80e20d99921744.bindPopup(popup_41952033fb306a8a97151f1d11b0543a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1509850e8268e27750a1381c19031145 = L.circleMarker(\\n\",\n       \"                [29.7534, 116.0726],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea632a4022ca5fa7cc4bb6be886000ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17d6f6fd6816ff9479d269be5cd5bd19 = $(`&lt;div id=&quot;html_17d6f6fd6816ff9479d269be5cd5bd19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0726             latitude:29.7534             PM2_5:44.47493036             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea632a4022ca5fa7cc4bb6be886000ff.setContent(html_17d6f6fd6816ff9479d269be5cd5bd19);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1509850e8268e27750a1381c19031145.bindPopup(popup_ea632a4022ca5fa7cc4bb6be886000ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6142949648dc6e19a9c12fd4c7db1b4a = L.circleMarker(\\n\",\n       \"                [35.0611, 111.0233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7c3d72b0f3ed22d33315446a210db7b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_746f27244dc45dc131f470829129ddbf = $(`&lt;div id=&quot;html_746f27244dc45dc131f470829129ddbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0233             latitude:35.0611             PM2_5:63.99438202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7c3d72b0f3ed22d33315446a210db7b.setContent(html_746f27244dc45dc131f470829129ddbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6142949648dc6e19a9c12fd4c7db1b4a.bindPopup(popup_a7c3d72b0f3ed22d33315446a210db7b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_097ceba9cd7200c816dd351ebdd22865 = L.circleMarker(\\n\",\n       \"                [30.4753, 114.1525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a693542bdc1bb9b9f4004adcf73845ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2618e5515cbbf7af8c3319a33ba57da = $(`&lt;div id=&quot;html_e2618e5515cbbf7af8c3319a33ba57da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1525             latitude:30.4753             PM2_5:47.02089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a693542bdc1bb9b9f4004adcf73845ab.setContent(html_e2618e5515cbbf7af8c3319a33ba57da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_097ceba9cd7200c816dd351ebdd22865.bindPopup(popup_a693542bdc1bb9b9f4004adcf73845ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8647ee360ee6cc3ecc5300d39352e997 = L.circleMarker(\\n\",\n       \"                [29.305, 120.091],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0522c2514c308d8aca56b9e92890b68 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afa5c7373ca1e82553d020290921c994 = $(`&lt;div id=&quot;html_afa5c7373ca1e82553d020290921c994&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.091             latitude:29.305             PM2_5:32.27683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0522c2514c308d8aca56b9e92890b68.setContent(html_afa5c7373ca1e82553d020290921c994);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8647ee360ee6cc3ecc5300d39352e997.bindPopup(popup_b0522c2514c308d8aca56b9e92890b68)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5018783ccef3c49ae6e7f4b90a60441e = L.circleMarker(\\n\",\n       \"                [29.5844, 103.7627],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2d19f07138c5573a72c76b64d0753fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b60bc8974cbeafb5207e74bac9ccbbf8 = $(`&lt;div id=&quot;html_b60bc8974cbeafb5207e74bac9ccbbf8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7627             latitude:29.5844             PM2_5:48.26880223             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2d19f07138c5573a72c76b64d0753fc.setContent(html_b60bc8974cbeafb5207e74bac9ccbbf8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5018783ccef3c49ae6e7f4b90a60441e.bindPopup(popup_e2d19f07138c5573a72c76b64d0753fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4962b869304c96908d80ff85141a39a = L.circleMarker(\\n\",\n       \"                [40.9733, 117.8184],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58d5ec657f4959e85fc716723635745c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6dad4ebd24ab74d1530abeb3d49e60a6 = $(`&lt;div id=&quot;html_6dad4ebd24ab74d1530abeb3d49e60a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8184             latitude:40.9733             PM2_5:26.00983146             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58d5ec657f4959e85fc716723635745c.setContent(html_6dad4ebd24ab74d1530abeb3d49e60a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4962b869304c96908d80ff85141a39a.bindPopup(popup_58d5ec657f4959e85fc716723635745c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc1017ffead6c08583981918b64a7bcd = L.circleMarker(\\n\",\n       \"                [31.3508, 118.3528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76dd13bfde6af93fcec19f5fcc8ad634 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5291589b8539c29559558aabfe8bcb33 = $(`&lt;div id=&quot;html_5291589b8539c29559558aabfe8bcb33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3528             latitude:31.3508             PM2_5:46.87988827             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76dd13bfde6af93fcec19f5fcc8ad634.setContent(html_5291589b8539c29559558aabfe8bcb33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc1017ffead6c08583981918b64a7bcd.bindPopup(popup_76dd13bfde6af93fcec19f5fcc8ad634)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3f35f440d4e03cae31df6295ad91d5b = L.circleMarker(\\n\",\n       \"                [30.6617, 117.4697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_016324a5b78827a7559f897411a70509 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2035e595d8ead3afa07a7ad62de96b70 = $(`&lt;div id=&quot;html_2035e595d8ead3afa07a7ad62de96b70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4697             latitude:30.6617             PM2_5:48.46561605             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_016324a5b78827a7559f897411a70509.setContent(html_2035e595d8ead3afa07a7ad62de96b70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3f35f440d4e03cae31df6295ad91d5b.bindPopup(popup_016324a5b78827a7559f897411a70509)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f99457e1b1c677c1540dd58b0347581 = L.circleMarker(\\n\",\n       \"                [35.5461, 106.6692],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5a3e6252908f6f8c90fca6bc833b7b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e8f39dfff989b366f063cd827b5a4a0 = $(`&lt;div id=&quot;html_9e8f39dfff989b366f063cd827b5a4a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6692             latitude:35.5461             PM2_5:25.28169014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5a3e6252908f6f8c90fca6bc833b7b4.setContent(html_9e8f39dfff989b366f063cd827b5a4a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f99457e1b1c677c1540dd58b0347581.bindPopup(popup_d5a3e6252908f6f8c90fca6bc833b7b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42111bffab09fdec0e337d14afd26d94 = L.circleMarker(\\n\",\n       \"                [27.1311, 114.99],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c7b8b8c7eaaf8ee818004c5c50d7bed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ee337739e97a47514c1d0ee7b50eddb = $(`&lt;div id=&quot;html_5ee337739e97a47514c1d0ee7b50eddb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.99             latitude:27.1311             PM2_5:51.25626741             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c7b8b8c7eaaf8ee818004c5c50d7bed.setContent(html_5ee337739e97a47514c1d0ee7b50eddb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42111bffab09fdec0e337d14afd26d94.bindPopup(popup_3c7b8b8c7eaaf8ee818004c5c50d7bed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_677097ba8230f286dd1acab3a1739d58 = L.circleMarker(\\n\",\n       \"                [33.5979, 114.6546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9fa0cc721edd0f2008dbd5084c8376ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b0e311235244b9d81f74dbb8a892d2b = $(`&lt;div id=&quot;html_2b0e311235244b9d81f74dbb8a892d2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6546             latitude:33.5979             PM2_5:50.46760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9fa0cc721edd0f2008dbd5084c8376ec.setContent(html_2b0e311235244b9d81f74dbb8a892d2b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_677097ba8230f286dd1acab3a1739d58.bindPopup(popup_9fa0cc721edd0f2008dbd5084c8376ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d180c96a0c2a8e91c0c6ad9564b85856 = L.circleMarker(\\n\",\n       \"                [27.725, 111.9975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67b1e8a11498f274f416b11e534b3c7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_202376f178cba48456d45d86a9959a44 = $(`&lt;div id=&quot;html_202376f178cba48456d45d86a9959a44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9975             latitude:27.725             PM2_5:26.00668896             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67b1e8a11498f274f416b11e534b3c7a.setContent(html_202376f178cba48456d45d86a9959a44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d180c96a0c2a8e91c0c6ad9564b85856.bindPopup(popup_67b1e8a11498f274f416b11e534b3c7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d89433d838d8a7f5542636e71ea9558 = L.circleMarker(\\n\",\n       \"                [27.8728, 112.8937],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e079b58c11c4f57a4af4eec48e64cb0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5360dac4c24103ca87694615960a80b = $(`&lt;div id=&quot;html_e5360dac4c24103ca87694615960a80b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8937             latitude:27.8728             PM2_5:45.97638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e079b58c11c4f57a4af4eec48e64cb0f.setContent(html_e5360dac4c24103ca87694615960a80b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d89433d838d8a7f5542636e71ea9558.bindPopup(popup_e079b58c11c4f57a4af4eec48e64cb0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7ebd181ed5ff72f7c4236df11ab4255 = L.circleMarker(\\n\",\n       \"                [30.0125, 103.009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_306267996524aa1ef1a5fad8cb273186 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c5714933727d2adbec914aa23cf975d = $(`&lt;div id=&quot;html_5c5714933727d2adbec914aa23cf975d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.009             latitude:30.0125             PM2_5:50.64428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_306267996524aa1ef1a5fad8cb273186.setContent(html_5c5714933727d2adbec914aa23cf975d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7ebd181ed5ff72f7c4236df11ab4255.bindPopup(popup_306267996524aa1ef1a5fad8cb273186)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e9db538147eebfbe9ad16060be332e8 = L.circleMarker(\\n\",\n       \"                [27.8042, 114.9119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9005c8c897e1b446a23c70c28ad3ede = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_783f49bc78cdbe45a02b48a1077f24c6 = $(`&lt;div id=&quot;html_783f49bc78cdbe45a02b48a1077f24c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9119             latitude:27.8042             PM2_5:46.45056497             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9005c8c897e1b446a23c70c28ad3ede.setContent(html_783f49bc78cdbe45a02b48a1077f24c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e9db538147eebfbe9ad16060be332e8.bindPopup(popup_d9005c8c897e1b446a23c70c28ad3ede)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e43ed82c26c50119bc6b82742df091f8 = L.circleMarker(\\n\",\n       \"                [40.1503, 124.4256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9bd17356627812df7f75bdb8dddb5e2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c417a6642875493793ba29b4cc5ed430 = $(`&lt;div id=&quot;html_c417a6642875493793ba29b4cc5ed430&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.4256             latitude:40.1503             PM2_5:21.48735955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9bd17356627812df7f75bdb8dddb5e2d.setContent(html_c417a6642875493793ba29b4cc5ed430);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e43ed82c26c50119bc6b82742df091f8.bindPopup(popup_9bd17356627812df7f75bdb8dddb5e2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08957cdab9fe0ffa2ae1841fb6189d88 = L.circleMarker(\\n\",\n       \"                [30.4865, 106.6351],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ee80e3c1bf9825e9f302238390d6e84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30de87deceb2d436c63f889223c14f96 = $(`&lt;div id=&quot;html_30de87deceb2d436c63f889223c14f96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6351             latitude:30.4865             PM2_5:37.19359331             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ee80e3c1bf9825e9f302238390d6e84.setContent(html_30de87deceb2d436c63f889223c14f96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08957cdab9fe0ffa2ae1841fb6189d88.bindPopup(popup_9ee80e3c1bf9825e9f302238390d6e84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33f29fbff0e9b80ae8e7f973279ea4a5 = L.circleMarker(\\n\",\n       \"                [30.698, 111.2992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35b6baaf37ca6ea8651a5631e702ccd4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_baedd92b0f4d00329a4cb5086cd202a0 = $(`&lt;div id=&quot;html_baedd92b0f4d00329a4cb5086cd202a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2992             latitude:30.698             PM2_5:59.28888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35b6baaf37ca6ea8651a5631e702ccd4.setContent(html_baedd92b0f4d00329a4cb5086cd202a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33f29fbff0e9b80ae8e7f973279ea4a5.bindPopup(popup_35b6baaf37ca6ea8651a5631e702ccd4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6f0ea3a0f6fec9cae4894cb95790c28 = L.circleMarker(\\n\",\n       \"                [35.546, 112.8453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8aec0b3e8e4a8eb91498c9c52c5150fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0011dce088592d2bafd09fc0546a492d = $(`&lt;div id=&quot;html_0011dce088592d2bafd09fc0546a492d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8453             latitude:35.546             PM2_5:54.41501416             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8aec0b3e8e4a8eb91498c9c52c5150fb.setContent(html_0011dce088592d2bafd09fc0546a492d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6f0ea3a0f6fec9cae4894cb95790c28.bindPopup(popup_8aec0b3e8e4a8eb91498c9c52c5150fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43dc058c199b875f9978cd50d298172d = L.circleMarker(\\n\",\n       \"                [34.2713, 108.954],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3e6832a84732410b49b3d79c8331adb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4bba97a5e96bf0110022c049c9d4bba9 = $(`&lt;div id=&quot;html_4bba97a5e96bf0110022c049c9d4bba9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.954             latitude:34.2713             PM2_5:69.81284916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3e6832a84732410b49b3d79c8331adb.setContent(html_4bba97a5e96bf0110022c049c9d4bba9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43dc058c199b875f9978cd50d298172d.bindPopup(popup_f3e6832a84732410b49b3d79c8331adb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f804803c9362f0203ea27cde8aec4bdd = L.circleMarker(\\n\",\n       \"                [39.6679, 118.2185],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa4f8cf6520921571221d199d9270543 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_668513020237906d10916cd62f307f77 = $(`&lt;div id=&quot;html_668513020237906d10916cd62f307f77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2185             latitude:39.6679             PM2_5:49.28212291             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa4f8cf6520921571221d199d9270543.setContent(html_668513020237906d10916cd62f307f77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f804803c9362f0203ea27cde8aec4bdd.bindPopup(popup_aa4f8cf6520921571221d199d9270543)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_616291018a5fba77b7a93c1a23583ec0 = L.circleMarker(\\n\",\n       \"                [32.1078, 114.1044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71a5d6b9e12dad60338d25c4e0d9075b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c78044369811d4143b7ee306bf9ab132 = $(`&lt;div id=&quot;html_c78044369811d4143b7ee306bf9ab132&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1044             latitude:32.1078             PM2_5:50.29519774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71a5d6b9e12dad60338d25c4e0d9075b.setContent(html_c78044369811d4143b7ee306bf9ab132);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_616291018a5fba77b7a93c1a23583ec0.bindPopup(popup_71a5d6b9e12dad60338d25c4e0d9075b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec9000f8190d1535e657298458f456bf = L.circleMarker(\\n\",\n       \"                [45.7733, 126.689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68ebfafc294daf57bbf8df48d1588db9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_528b70b04b56b903e907d5f4faf963f9 = $(`&lt;div id=&quot;html_528b70b04b56b903e907d5f4faf963f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.689             latitude:45.7733             PM2_5:34.81805556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68ebfafc294daf57bbf8df48d1588db9.setContent(html_528b70b04b56b903e907d5f4faf963f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec9000f8190d1535e657298458f456bf.bindPopup(popup_68ebfafc294daf57bbf8df48d1588db9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f270d528e0b65f68b8c520f9be4f4ae7 = L.circleMarker(\\n\",\n       \"                [23.0528, 114.4183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d1829ee302ea495bfbf1efe513a46d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9eb9fef57a3942fd92f5574105d18910 = $(`&lt;div id=&quot;html_9eb9fef57a3942fd92f5574105d18910&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4183             latitude:23.0528             PM2_5:27.9902507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d1829ee302ea495bfbf1efe513a46d5.setContent(html_9eb9fef57a3942fd92f5574105d18910);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f270d528e0b65f68b8c520f9be4f4ae7.bindPopup(popup_7d1829ee302ea495bfbf1efe513a46d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9d63f73ee1a417bdfd0a60718b9f7de = L.circleMarker(\\n\",\n       \"                [37.809, 120.773],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69c1aa48b7fc263f18af5b198b9fb84f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a7261d00971479360e0bed4756b4f97 = $(`&lt;div id=&quot;html_1a7261d00971479360e0bed4756b4f97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.773             latitude:37.809             PM2_5:28.17908309             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69c1aa48b7fc263f18af5b198b9fb84f.setContent(html_1a7261d00971479360e0bed4756b4f97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9d63f73ee1a417bdfd0a60718b9f7de.bindPopup(popup_69c1aa48b7fc263f18af5b198b9fb84f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56e6fa69f32f1461cd12cc00d14d875f = L.circleMarker(\\n\",\n       \"                [33.6128, 114.6613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44a483d6a357cfda68f3b46127847a11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2f6592731efb6cf95b3f101adb1ce14 = $(`&lt;div id=&quot;html_b2f6592731efb6cf95b3f101adb1ce14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6613             latitude:33.6128             PM2_5:51.95903955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44a483d6a357cfda68f3b46127847a11.setContent(html_b2f6592731efb6cf95b3f101adb1ce14);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56e6fa69f32f1461cd12cc00d14d875f.bindPopup(popup_44a483d6a357cfda68f3b46127847a11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9af139c803ded67d0395c33a7f81e913 = L.circleMarker(\\n\",\n       \"                [41.0112, 117.9384],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53d74967d6865ccd8dbe731e70e21419 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9bb5d2adaed77dfa14d2a33964de259e = $(`&lt;div id=&quot;html_9bb5d2adaed77dfa14d2a33964de259e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9384             latitude:41.0112             PM2_5:27.04519774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53d74967d6865ccd8dbe731e70e21419.setContent(html_9bb5d2adaed77dfa14d2a33964de259e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9af139c803ded67d0395c33a7f81e913.bindPopup(popup_53d74967d6865ccd8dbe731e70e21419)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a0bd2d90f20786e6fc298df4aecd094 = L.circleMarker(\\n\",\n       \"                [40.8452, 111.659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_624bf5c0d3168fbe057c679ff178d549 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d150f92740cd9054bc5f35a7480ab784 = $(`&lt;div id=&quot;html_d150f92740cd9054bc5f35a7480ab784&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.659             latitude:40.8452             PM2_5:36.20612813             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_624bf5c0d3168fbe057c679ff178d549.setContent(html_d150f92740cd9054bc5f35a7480ab784);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a0bd2d90f20786e6fc298df4aecd094.bindPopup(popup_624bf5c0d3168fbe057c679ff178d549)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0856cc61b5b90fec4aa569c10a76a97b = L.circleMarker(\\n\",\n       \"                [34.2572, 109.06],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8feb1b7350c969b582939a148f4482ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f68fc605d1704ed7dbb7438879663fe = $(`&lt;div id=&quot;html_7f68fc605d1704ed7dbb7438879663fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.06             latitude:34.2572             PM2_5:67.61647727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8feb1b7350c969b582939a148f4482ac.setContent(html_7f68fc605d1704ed7dbb7438879663fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0856cc61b5b90fec4aa569c10a76a97b.bindPopup(popup_8feb1b7350c969b582939a148f4482ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c6ae83b55241f2a8b4221172b4aad45 = L.circleMarker(\\n\",\n       \"                [38.03777778, 114.5480556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d7e02a25a45ee2e896e4a29cb72c54c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_297a903d3b9d30784538cc97ed004212 = $(`&lt;div id=&quot;html_297a903d3b9d30784538cc97ed004212&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5480556             latitude:38.03777778             PM2_5:68.15266106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d7e02a25a45ee2e896e4a29cb72c54c.setContent(html_297a903d3b9d30784538cc97ed004212);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c6ae83b55241f2a8b4221172b4aad45.bindPopup(popup_3d7e02a25a45ee2e896e4a29cb72c54c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d27e2d1681618efb3885af6bf68ce420 = L.circleMarker(\\n\",\n       \"                [26.2081, 111.6217],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66f36665344de5cb7b37fc14504e5b1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37d6dbb0bc0772081d89a096f4ddb936 = $(`&lt;div id=&quot;html_37d6dbb0bc0772081d89a096f4ddb936&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6217             latitude:26.2081             PM2_5:37.14595376             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66f36665344de5cb7b37fc14504e5b1b.setContent(html_37d6dbb0bc0772081d89a096f4ddb936);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d27e2d1681618efb3885af6bf68ce420.bindPopup(popup_66f36665344de5cb7b37fc14504e5b1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92ecdb7cb7c68cab5e200e936ad66415 = L.circleMarker(\\n\",\n       \"                [22.8322, 100.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8cebe79813fccab7c89f4e00584b5a84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_495e2ed2be7cb32bed26417b709e3901 = $(`&lt;div id=&quot;html_495e2ed2be7cb32bed26417b709e3901&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.9817             latitude:22.8322             PM2_5:19.05694444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8cebe79813fccab7c89f4e00584b5a84.setContent(html_495e2ed2be7cb32bed26417b709e3901);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92ecdb7cb7c68cab5e200e936ad66415.bindPopup(popup_8cebe79813fccab7c89f4e00584b5a84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_279bf4d95e39b38e4cd5e6978ce329f9 = L.circleMarker(\\n\",\n       \"                [27.3033, 111.5239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1d092bca3756ac44c924ea80c0ea548 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_151c4c407b996964a1105c7e45614767 = $(`&lt;div id=&quot;html_151c4c407b996964a1105c7e45614767&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5239             latitude:27.3033             PM2_5:42.53539823             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1d092bca3756ac44c924ea80c0ea548.setContent(html_151c4c407b996964a1105c7e45614767);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_279bf4d95e39b38e4cd5e6978ce329f9.bindPopup(popup_d1d092bca3756ac44c924ea80c0ea548)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74a802fbda5c082ba4a3d24dd97a297d = L.circleMarker(\\n\",\n       \"                [30.5947, 114.3008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2d37e2a7072086d9920d22b0871a6e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4d889f2578f6b51bba148cd1265fc36 = $(`&lt;div id=&quot;html_c4d889f2578f6b51bba148cd1265fc36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3008             latitude:30.5947             PM2_5:45.17222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2d37e2a7072086d9920d22b0871a6e5.setContent(html_c4d889f2578f6b51bba148cd1265fc36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74a802fbda5c082ba4a3d24dd97a297d.bindPopup(popup_c2d37e2a7072086d9920d22b0871a6e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1427c16284b031dc4dc15926a540ef6 = L.circleMarker(\\n\",\n       \"                [30.2997, 113.8531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eabd3bb7da299675a5c3ff1caa87312b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fe7ce0c00d9103c003f77793f6f5a57 = $(`&lt;div id=&quot;html_7fe7ce0c00d9103c003f77793f6f5a57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8531             latitude:30.2997             PM2_5:43.25073314             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eabd3bb7da299675a5c3ff1caa87312b.setContent(html_7fe7ce0c00d9103c003f77793f6f5a57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1427c16284b031dc4dc15926a540ef6.bindPopup(popup_eabd3bb7da299675a5c3ff1caa87312b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db6a2e41f76c38662b86fffa6fa21545 = L.circleMarker(\\n\",\n       \"                [27.7297, 109.1916],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df1667351563118fbcb4ad747c015030 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5a0560a2bf3c0ecff1ecdd6ba31bf13 = $(`&lt;div id=&quot;html_b5a0560a2bf3c0ecff1ecdd6ba31bf13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.1916             latitude:27.7297             PM2_5:23.85416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df1667351563118fbcb4ad747c015030.setContent(html_b5a0560a2bf3c0ecff1ecdd6ba31bf13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db6a2e41f76c38662b86fffa6fa21545.bindPopup(popup_df1667351563118fbcb4ad747c015030)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d21f02844fb2325c725f7fed57887f4a = L.circleMarker(\\n\",\n       \"                [30.2366, 119.7183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01548940627b56b3c3f7393e5ae7f526 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a859ae343514c062377b1570d715247a = $(`&lt;div id=&quot;html_a859ae343514c062377b1570d715247a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7183             latitude:30.2366             PM2_5:32.08100559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01548940627b56b3c3f7393e5ae7f526.setContent(html_a859ae343514c062377b1570d715247a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d21f02844fb2325c725f7fed57887f4a.bindPopup(popup_01548940627b56b3c3f7393e5ae7f526)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d33cb619243732f206f9c9827e9c68c0 = L.circleMarker(\\n\",\n       \"                [36.2289, 117.6789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f20fb200e504d7da37185f1608862f46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb1440ff46a31df92fd9e7e6a204a5ae = $(`&lt;div id=&quot;html_fb1440ff46a31df92fd9e7e6a204a5ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6789             latitude:36.2289             PM2_5:49.29411765             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f20fb200e504d7da37185f1608862f46.setContent(html_fb1440ff46a31df92fd9e7e6a204a5ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d33cb619243732f206f9c9827e9c68c0.bindPopup(popup_f20fb200e504d7da37185f1608862f46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d8cf8909033b5deca07b8e3a807dbe1 = L.circleMarker(\\n\",\n       \"                [38.80805556, 121.2588889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_504d1aac49593fe14ff84a15e9d0db77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_976ba8d99b7248ac27ead655dd17f88d = $(`&lt;div id=&quot;html_976ba8d99b7248ac27ead655dd17f88d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2588889             latitude:38.80805556             PM2_5:26.59773371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_504d1aac49593fe14ff84a15e9d0db77.setContent(html_976ba8d99b7248ac27ead655dd17f88d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d8cf8909033b5deca07b8e3a807dbe1.bindPopup(popup_504d1aac49593fe14ff84a15e9d0db77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adfc8bf6b39fe32faeb3583f21fab857 = L.circleMarker(\\n\",\n       \"                [39.0927, 117.202],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_352f1ddefe14dd3abb755ac50110d385 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ceb00d7a6f4c5947d3880834fc3719a9 = $(`&lt;div id=&quot;html_ceb00d7a6f4c5947d3880834fc3719a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.202             latitude:39.0927             PM2_5:50.48033708             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_352f1ddefe14dd3abb755ac50110d385.setContent(html_ceb00d7a6f4c5947d3880834fc3719a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adfc8bf6b39fe32faeb3583f21fab857.bindPopup(popup_352f1ddefe14dd3abb755ac50110d385)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee945c9deb1483c2de5a17f95314de39 = L.circleMarker(\\n\",\n       \"                [30.21, 120.211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec8b732c526f84ccd60867e5b07ad706 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2878a46e1d27a762244f693516e4733 = $(`&lt;div id=&quot;html_c2878a46e1d27a762244f693516e4733&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.211             latitude:30.21             PM2_5:38.86072423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec8b732c526f84ccd60867e5b07ad706.setContent(html_c2878a46e1d27a762244f693516e4733);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee945c9deb1483c2de5a17f95314de39.bindPopup(popup_ec8b732c526f84ccd60867e5b07ad706)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a10e2bca5caa8a1058df60b5a484daeb = L.circleMarker(\\n\",\n       \"                [33.4022, 120.118],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9a4f56a417e2c62bfe914d5943f7586 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da2c8a22aae0785aaee046b2860afa51 = $(`&lt;div id=&quot;html_da2c8a22aae0785aaee046b2860afa51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.118             latitude:33.4022             PM2_5:41.83611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9a4f56a417e2c62bfe914d5943f7586.setContent(html_da2c8a22aae0785aaee046b2860afa51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a10e2bca5caa8a1058df60b5a484daeb.bindPopup(popup_b9a4f56a417e2c62bfe914d5943f7586)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e19d7559aa51ba849172d2baeff3438 = L.circleMarker(\\n\",\n       \"                [31.737, 119.579],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5317d4c87b9876c3c81b95a5c9a2446 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d36dce4d116f529246ca28a0558f82c = $(`&lt;div id=&quot;html_3d36dce4d116f529246ca28a0558f82c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.579             latitude:31.737             PM2_5:43.87361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5317d4c87b9876c3c81b95a5c9a2446.setContent(html_3d36dce4d116f529246ca28a0558f82c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e19d7559aa51ba849172d2baeff3438.bindPopup(popup_d5317d4c87b9876c3c81b95a5c9a2446)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de3e1f44fbe0c9b35bf2c462066951e3 = L.circleMarker(\\n\",\n       \"                [38.0524, 114.5214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87f80092c070ba4ae0460bbd9dcd16a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85bd66f203313ae7be776815fddb1d8b = $(`&lt;div id=&quot;html_85bd66f203313ae7be776815fddb1d8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5214             latitude:38.0524             PM2_5:75.23955432             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87f80092c070ba4ae0460bbd9dcd16a7.setContent(html_85bd66f203313ae7be776815fddb1d8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de3e1f44fbe0c9b35bf2c462066951e3.bindPopup(popup_87f80092c070ba4ae0460bbd9dcd16a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e5734abe1cdb0258a1d9058654a2504 = L.circleMarker(\\n\",\n       \"                [39.6969, 106.8089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_417f8cbefee7e2ac35d9b61740656291 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_433e01408998cd2a50d4c59845d2f499 = $(`&lt;div id=&quot;html_433e01408998cd2a50d4c59845d2f499&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8089             latitude:39.6969             PM2_5:36.94972067             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_417f8cbefee7e2ac35d9b61740656291.setContent(html_433e01408998cd2a50d4c59845d2f499);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e5734abe1cdb0258a1d9058654a2504.bindPopup(popup_417f8cbefee7e2ac35d9b61740656291)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52fff3d6ed2f42e61e0d5f766e48f3dc = L.circleMarker(\\n\",\n       \"                [29.2365, 88.8931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8565b6a84635533600fd306413b0168 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2919f597cf36c072ab3c88d6d03803b4 = $(`&lt;div id=&quot;html_2919f597cf36c072ab3c88d6d03803b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.8931             latitude:29.2365             PM2_5:7.04398827             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8565b6a84635533600fd306413b0168.setContent(html_2919f597cf36c072ab3c88d6d03803b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52fff3d6ed2f42e61e0d5f766e48f3dc.bindPopup(popup_d8565b6a84635533600fd306413b0168)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a2fcd1f96c6938b7bac479e993fde18 = L.circleMarker(\\n\",\n       \"                [30.696, 111.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b585bec03590526db4ef6d3af0da1956 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47654ee074a0dd9046df45f39fe36128 = $(`&lt;div id=&quot;html_47654ee074a0dd9046df45f39fe36128&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.268             latitude:30.696             PM2_5:53.72980501             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b585bec03590526db4ef6d3af0da1956.setContent(html_47654ee074a0dd9046df45f39fe36128);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a2fcd1f96c6938b7bac479e993fde18.bindPopup(popup_b585bec03590526db4ef6d3af0da1956)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5933f12bab9f777464c9a9f4b8e53a5 = L.circleMarker(\\n\",\n       \"                [27.5342, 109.9792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_989e4ffb629163f3f7b567c535eafadd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a58a7d62553f81ae55a0b4d8f1d8f602 = $(`&lt;div id=&quot;html_a58a7d62553f81ae55a0b4d8f1d8f602&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9792             latitude:27.5342             PM2_5:39.37083333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_989e4ffb629163f3f7b567c535eafadd.setContent(html_a58a7d62553f81ae55a0b4d8f1d8f602);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5933f12bab9f777464c9a9f4b8e53a5.bindPopup(popup_989e4ffb629163f3f7b567c535eafadd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0de4fb3e4da1792267c28fe3047c194b = L.circleMarker(\\n\",\n       \"                [34.7538, 113.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd63bc8b66de728000c64c979c63f55c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_235c908d99c809bd72b80df3a2597c29 = $(`&lt;div id=&quot;html_235c908d99c809bd72b80df3a2597c29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6356             latitude:34.7538             PM2_5:63.08240223             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd63bc8b66de728000c64c979c63f55c.setContent(html_235c908d99c809bd72b80df3a2597c29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0de4fb3e4da1792267c28fe3047c194b.bindPopup(popup_cd63bc8b66de728000c64c979c63f55c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8a943f2be3d1739a4478dc0a8511fec9 = L.circleMarker(\\n\",\n       \"                [27.8847, 102.2689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_14bf4c07544e56c9d115be1042d567ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9b8df81454d55c84c899e7171d1cc4a4 = $(`&lt;div id=&quot;html_9b8df81454d55c84c899e7171d1cc4a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2689             latitude:27.8847             PM2_5:22.76470588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_14bf4c07544e56c9d115be1042d567ca.setContent(html_9b8df81454d55c84c899e7171d1cc4a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8a943f2be3d1739a4478dc0a8511fec9.bindPopup(popup_14bf4c07544e56c9d115be1042d567ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c17c3d9b8382e1774f5a61ca0ce0be70 = L.circleMarker(\\n\",\n       \"                [28.2264, 117.0222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce1d26b7a8a476134f000e58d1861c5b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ca5b412a08025c3e691010b2cc4f78c = $(`&lt;div id=&quot;html_4ca5b412a08025c3e691010b2cc4f78c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0222             latitude:28.2264             PM2_5:34.38687151             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce1d26b7a8a476134f000e58d1861c5b.setContent(html_4ca5b412a08025c3e691010b2cc4f78c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c17c3d9b8382e1774f5a61ca0ce0be70.bindPopup(popup_ce1d26b7a8a476134f000e58d1861c5b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28a082fc471f0a20e6dc63aa2a12965b = L.circleMarker(\\n\",\n       \"                [25.8071, 113.0383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_06140f12e829b70ab905055af602d979 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ca40b9670b10be1d178d7ef54d0db0a = $(`&lt;div id=&quot;html_9ca40b9670b10be1d178d7ef54d0db0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0383             latitude:25.8071             PM2_5:32.6800554             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_06140f12e829b70ab905055af602d979.setContent(html_9ca40b9670b10be1d178d7ef54d0db0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28a082fc471f0a20e6dc63aa2a12965b.bindPopup(popup_06140f12e829b70ab905055af602d979)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_495702a7729cf2c6d6af127c1cdf4bcc = L.circleMarker(\\n\",\n       \"                [34.3672, 107.1906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_701980de644ea8adf4728f231fd3fdf1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc7b44ba891c76b17220e10502f7f795 = $(`&lt;div id=&quot;html_bc7b44ba891c76b17220e10502f7f795&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1906             latitude:34.3672             PM2_5:50.35434174             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_701980de644ea8adf4728f231fd3fdf1.setContent(html_bc7b44ba891c76b17220e10502f7f795);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_495702a7729cf2c6d6af127c1cdf4bcc.bindPopup(popup_701980de644ea8adf4728f231fd3fdf1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ac0502a5a7cb467b74f4ec4c9b63e20 = L.circleMarker(\\n\",\n       \"                [37.161, 122.41],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f40b3f6ad6bfc7bbcc127b5ed12b805f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a9699d2f4cea5e67abe64ec254f334e = $(`&lt;div id=&quot;html_4a9699d2f4cea5e67abe64ec254f334e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.41             latitude:37.161             PM2_5:18.70396601             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f40b3f6ad6bfc7bbcc127b5ed12b805f.setContent(html_4a9699d2f4cea5e67abe64ec254f334e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ac0502a5a7cb467b74f4ec4c9b63e20.bindPopup(popup_f40b3f6ad6bfc7bbcc127b5ed12b805f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1ac2c4859d959bee2f9819693910eff = L.circleMarker(\\n\",\n       \"                [38.97388889, 121.6119444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2a3350bed7eefcb240661e8f3842c06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40323b9fb40dc12f03ba8702557ad1a3 = $(`&lt;div id=&quot;html_40323b9fb40dc12f03ba8702557ad1a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6119444             latitude:38.97388889             PM2_5:30.28830084             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2a3350bed7eefcb240661e8f3842c06.setContent(html_40323b9fb40dc12f03ba8702557ad1a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1ac2c4859d959bee2f9819693910eff.bindPopup(popup_a2a3350bed7eefcb240661e8f3842c06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84252868873bf6f226e7e7f6a3ab0632 = L.circleMarker(\\n\",\n       \"                [26.0542, 119.389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f2b08390f831349c9c10abe18cdfc05 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb44b252811f90b692da482d092d49d2 = $(`&lt;div id=&quot;html_cb44b252811f90b692da482d092d49d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.389             latitude:26.0542             PM2_5:24.21186441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f2b08390f831349c9c10abe18cdfc05.setContent(html_cb44b252811f90b692da482d092d49d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84252868873bf6f226e7e7f6a3ab0632.bindPopup(popup_8f2b08390f831349c9c10abe18cdfc05)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77b39da54842cb10bc437b3f6ff4c98e = L.circleMarker(\\n\",\n       \"                [36.5458, 104.1731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85e91cf5ef761fb8a8a1377a5cd9fba0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1897c5f0968de83497404b9715dccf0c = $(`&lt;div id=&quot;html_1897c5f0968de83497404b9715dccf0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1731             latitude:36.5458             PM2_5:42.94827586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85e91cf5ef761fb8a8a1377a5cd9fba0.setContent(html_1897c5f0968de83497404b9715dccf0c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77b39da54842cb10bc437b3f6ff4c98e.bindPopup(popup_85e91cf5ef761fb8a8a1377a5cd9fba0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a36eff56f1f26cd6fe7b612f6ca95e3 = L.circleMarker(\\n\",\n       \"                [21.6828, 110.8592],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d139f4485e197df72a6b9e8f94a711b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7da58c8b198aa3fc5f458ebeb800552 = $(`&lt;div id=&quot;html_d7da58c8b198aa3fc5f458ebeb800552&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.8592             latitude:21.6828             PM2_5:29.20142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d139f4485e197df72a6b9e8f94a711b1.setContent(html_d7da58c8b198aa3fc5f458ebeb800552);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a36eff56f1f26cd6fe7b612f6ca95e3.bindPopup(popup_d139f4485e197df72a6b9e8f94a711b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3bcfebd05b96a9d12d5449d58239453 = L.circleMarker(\\n\",\n       \"                [27.5444, 109.9453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c062cc47261307730dd880862d86013b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0798e89d69fa7b804150bf1a1100ebe3 = $(`&lt;div id=&quot;html_0798e89d69fa7b804150bf1a1100ebe3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9453             latitude:27.5444             PM2_5:36.36023055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c062cc47261307730dd880862d86013b.setContent(html_0798e89d69fa7b804150bf1a1100ebe3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3bcfebd05b96a9d12d5449d58239453.bindPopup(popup_c062cc47261307730dd880862d86013b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47dd9a177069d735ec95679898dd092a = L.circleMarker(\\n\",\n       \"                [30.2989, 109.5039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd3e02ed04529e46c246ed4aa7434484 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_787461eb2f8b93149f8ccc15e997f288 = $(`&lt;div id=&quot;html_787461eb2f8b93149f8ccc15e997f288&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5039             latitude:30.2989             PM2_5:41.26966292             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd3e02ed04529e46c246ed4aa7434484.setContent(html_787461eb2f8b93149f8ccc15e997f288);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47dd9a177069d735ec95679898dd092a.bindPopup(popup_fd3e02ed04529e46c246ed4aa7434484)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23fdd6a906682391c7a188e02df068bb = L.circleMarker(\\n\",\n       \"                [25.8567, 98.8601],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfd5981d59fa75e60e5b7001f61162b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_573703f6dcd604627d34c07b64dc8e0e = $(`&lt;div id=&quot;html_573703f6dcd604627d34c07b64dc8e0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.8601             latitude:25.8567             PM2_5:19.85755814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfd5981d59fa75e60e5b7001f61162b1.setContent(html_573703f6dcd604627d34c07b64dc8e0e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23fdd6a906682391c7a188e02df068bb.bindPopup(popup_dfd5981d59fa75e60e5b7001f61162b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28cc9bd00edd201395a06d58a223ee24 = L.circleMarker(\\n\",\n       \"                [21.9667, 108.6236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b92a53a9f7d51dadad9f1e2fb84fc272 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6635a87fae95a9015e7d7cc1294238a6 = $(`&lt;div id=&quot;html_6635a87fae95a9015e7d7cc1294238a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6236             latitude:21.9667             PM2_5:28.71488764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b92a53a9f7d51dadad9f1e2fb84fc272.setContent(html_6635a87fae95a9015e7d7cc1294238a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28cc9bd00edd201395a06d58a223ee24.bindPopup(popup_b92a53a9f7d51dadad9f1e2fb84fc272)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9de6bd09293d36892f927e6e611932f = L.circleMarker(\\n\",\n       \"                [31.6908, 113.3833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea21efb24c383deed520671258a622fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97f69bbfb8adf4e295c25d02389f62a2 = $(`&lt;div id=&quot;html_97f69bbfb8adf4e295c25d02389f62a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3833             latitude:31.6908             PM2_5:49.01955307             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea21efb24c383deed520671258a622fa.setContent(html_97f69bbfb8adf4e295c25d02389f62a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9de6bd09293d36892f927e6e611932f.bindPopup(popup_ea21efb24c383deed520671258a622fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f984d6ba7311619a1798ed602a09eae = L.circleMarker(\\n\",\n       \"                [38.6016, 105.9512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b15237c606ee014d9d077b347213aea9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e126ec1965c9ffe49265ed58ea86a5c7 = $(`&lt;div id=&quot;html_e126ec1965c9ffe49265ed58ea86a5c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.9512             latitude:38.6016             PM2_5:32.96111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b15237c606ee014d9d077b347213aea9.setContent(html_e126ec1965c9ffe49265ed58ea86a5c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f984d6ba7311619a1798ed602a09eae.bindPopup(popup_b15237c606ee014d9d077b347213aea9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f2ce6f64634e87b6ef70bdeedab4f3a = L.circleMarker(\\n\",\n       \"                [25.5364, 103.8],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d5265b733854fea29ac03f6cbb89fe6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9674e0dfbee47c1e6181355400672040 = $(`&lt;div id=&quot;html_9674e0dfbee47c1e6181355400672040&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8             latitude:25.5364             PM2_5:34.69859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d5265b733854fea29ac03f6cbb89fe6.setContent(html_9674e0dfbee47c1e6181355400672040);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f2ce6f64634e87b6ef70bdeedab4f3a.bindPopup(popup_5d5265b733854fea29ac03f6cbb89fe6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_acbcbd734f433f222df3f7a68bee272f = L.circleMarker(\\n\",\n       \"                [42.0486, 121.6592],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd83d1c06e24280e40a6be858569ad3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4a421a07c89a45eb7b19bc9ed6d0441 = $(`&lt;div id=&quot;html_e4a421a07c89a45eb7b19bc9ed6d0441&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6592             latitude:42.0486             PM2_5:23.12188366             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd83d1c06e24280e40a6be858569ad3f.setContent(html_e4a421a07c89a45eb7b19bc9ed6d0441);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_acbcbd734f433f222df3f7a68bee272f.bindPopup(popup_fd83d1c06e24280e40a6be858569ad3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9c175d90cdf33cab5ff9a539b86d20e = L.circleMarker(\\n\",\n       \"                [23.1036, 109.5683],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d26d0128469f2776066ac451eae3efb9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0c85c71fdbfac25ee66367b9977b13a = $(`&lt;div id=&quot;html_a0c85c71fdbfac25ee66367b9977b13a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5683             latitude:23.1036             PM2_5:34.63714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d26d0128469f2776066ac451eae3efb9.setContent(html_a0c85c71fdbfac25ee66367b9977b13a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9c175d90cdf33cab5ff9a539b86d20e.bindPopup(popup_d26d0128469f2776066ac451eae3efb9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c4a2bc512c699f9ae634d03f1677f52 = L.circleMarker(\\n\",\n       \"                [30.5514, 114.2511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a63124c0da4a9dc174e73459d2a62a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76775c32cb875d7d92497a75ae17e65b = $(`&lt;div id=&quot;html_76775c32cb875d7d92497a75ae17e65b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2511             latitude:30.5514             PM2_5:43.4494382             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a63124c0da4a9dc174e73459d2a62a3.setContent(html_76775c32cb875d7d92497a75ae17e65b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c4a2bc512c699f9ae634d03f1677f52.bindPopup(popup_6a63124c0da4a9dc174e73459d2a62a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6c8d20e730730e219ad5462a34e3f1e = L.circleMarker(\\n\",\n       \"                [31.8108, 119.9736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_610cff68e2ee6b3969474aa7bbacc1b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82c4475a79d09f3b19136d611cd85fad = $(`&lt;div id=&quot;html_82c4475a79d09f3b19136d611cd85fad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9736             latitude:31.8108             PM2_5:42.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_610cff68e2ee6b3969474aa7bbacc1b0.setContent(html_82c4475a79d09f3b19136d611cd85fad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6c8d20e730730e219ad5462a34e3f1e.bindPopup(popup_610cff68e2ee6b3969474aa7bbacc1b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4cc5d6f5a0e1336f0a9b8461bd1c45f3 = L.circleMarker(\\n\",\n       \"                [43.9311, 116.0781],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15c74d35c91aea04f84b873a37e6dc3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d919ec8020a7037b6b46c7312a3b386 = $(`&lt;div id=&quot;html_3d919ec8020a7037b6b46c7312a3b386&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0781             latitude:43.9311             PM2_5:17.65738162             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15c74d35c91aea04f84b873a37e6dc3f.setContent(html_3d919ec8020a7037b6b46c7312a3b386);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4cc5d6f5a0e1336f0a9b8461bd1c45f3.bindPopup(popup_15c74d35c91aea04f84b873a37e6dc3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6f604163bd80fc520d30fa207816b7a = L.circleMarker(\\n\",\n       \"                [23.0786, 112.4722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94c6b466ba98cb739205524212e7dc0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f203c70bb03c6446d298a63b25c0d03 = $(`&lt;div id=&quot;html_8f203c70bb03c6446d298a63b25c0d03&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4722             latitude:23.0786             PM2_5:38.267507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94c6b466ba98cb739205524212e7dc0a.setContent(html_8f203c70bb03c6446d298a63b25c0d03);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6f604163bd80fc520d30fa207816b7a.bindPopup(popup_94c6b466ba98cb739205524212e7dc0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bea70080ca4f6e5ceea20ff75b4173df = L.circleMarker(\\n\",\n       \"                [36.4372, 115.9848],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf94cab348394c885137c966d222dbfb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b65838c6a8f515578dd894e0de6daa10 = $(`&lt;div id=&quot;html_b65838c6a8f515578dd894e0de6daa10&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9848             latitude:36.4372             PM2_5:59.31179775             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf94cab348394c885137c966d222dbfb.setContent(html_b65838c6a8f515578dd894e0de6daa10);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bea70080ca4f6e5ceea20ff75b4173df.bindPopup(popup_bf94cab348394c885137c966d222dbfb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fb8014bce570c00e1a893355064d629 = L.circleMarker(\\n\",\n       \"                [34.3164, 108.7369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d734ef7cd82a7372589bd6ae5b95ecb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a851af39fc38759ca6a36be640a2fc64 = $(`&lt;div id=&quot;html_a851af39fc38759ca6a36be640a2fc64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7369             latitude:34.3164             PM2_5:66.23809524             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d734ef7cd82a7372589bd6ae5b95ecb.setContent(html_a851af39fc38759ca6a36be640a2fc64);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fb8014bce570c00e1a893355064d629.bindPopup(popup_8d734ef7cd82a7372589bd6ae5b95ecb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b0dffb9ad9c3f2b1c4b08379a8e4779 = L.circleMarker(\\n\",\n       \"                [26.8802, 100.2497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3084fe5b8e9f46becb871e31bb00bc2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51bc39855c34cf9845cfc27c0ae797c3 = $(`&lt;div id=&quot;html_51bc39855c34cf9845cfc27c0ae797c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2497             latitude:26.8802             PM2_5:14.76734104             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3084fe5b8e9f46becb871e31bb00bc2.setContent(html_51bc39855c34cf9845cfc27c0ae797c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b0dffb9ad9c3f2b1c4b08379a8e4779.bindPopup(popup_f3084fe5b8e9f46becb871e31bb00bc2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0948bf4e797dfc0013635153862255d7 = L.circleMarker(\\n\",\n       \"                [23.415, 111.2353],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d46c4c520c61ee60e98af1ef399d37d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_975d9812d79fd926ea6e0068ea685bda = $(`&lt;div id=&quot;html_975d9812d79fd926ea6e0068ea685bda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2353             latitude:23.415             PM2_5:48.28028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d46c4c520c61ee60e98af1ef399d37d9.setContent(html_975d9812d79fd926ea6e0068ea685bda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0948bf4e797dfc0013635153862255d7.bindPopup(popup_d46c4c520c61ee60e98af1ef399d37d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a327eb7250cc82ee7e80a9131a6af2c = L.circleMarker(\\n\",\n       \"                [39.5371, 75.9828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_879a04305ec547f679abff287db23665 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f6af50f7194faf7ab28e9c28a0daafd = $(`&lt;div id=&quot;html_8f6af50f7194faf7ab28e9c28a0daafd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:75.9828             latitude:39.5371             PM2_5:98.80446927             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_879a04305ec547f679abff287db23665.setContent(html_8f6af50f7194faf7ab28e9c28a0daafd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a327eb7250cc82ee7e80a9131a6af2c.bindPopup(popup_879a04305ec547f679abff287db23665)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c677654fec5b0491990bde223486ae0 = L.circleMarker(\\n\",\n       \"                [39.9934, 116.315],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a59d80ef0fc349a830d38c483a842d78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f36c918f01ea60c83c23c9a2787ab917 = $(`&lt;div id=&quot;html_f36c918f01ea60c83c23c9a2787ab917&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.315             latitude:39.9934             PM2_5:50.41736695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a59d80ef0fc349a830d38c483a842d78.setContent(html_f36c918f01ea60c83c23c9a2787ab917);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c677654fec5b0491990bde223486ae0.bindPopup(popup_a59d80ef0fc349a830d38c483a842d78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df61155397ce37431e59dfb9a24a49a7 = L.circleMarker(\\n\",\n       \"                [32.3761, 119.389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f4727581d78feba88d54a598dadc60a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c98ecc01083f798ab211f2ce6dce2681 = $(`&lt;div id=&quot;html_c98ecc01083f798ab211f2ce6dce2681&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.389             latitude:32.3761             PM2_5:46.29279279             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f4727581d78feba88d54a598dadc60a.setContent(html_c98ecc01083f798ab211f2ce6dce2681);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df61155397ce37431e59dfb9a24a49a7.bindPopup(popup_6f4727581d78feba88d54a598dadc60a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e58a4176971831b305f9de5c7f22eee1 = L.circleMarker(\\n\",\n       \"                [32.64600333, 117.0411667],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7e38d55c4127e84d3d17d85c0511de3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97d1394a286b175ec9adbda6ff678156 = $(`&lt;div id=&quot;html_97d1394a286b175ec9adbda6ff678156&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0411667             latitude:32.64600333             PM2_5:56.67590028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7e38d55c4127e84d3d17d85c0511de3.setContent(html_97d1394a286b175ec9adbda6ff678156);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e58a4176971831b305f9de5c7f22eee1.bindPopup(popup_b7e38d55c4127e84d3d17d85c0511de3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2a0d7fc9828088b58abc57e22f13781 = L.circleMarker(\\n\",\n       \"                [44.5462, 129.6386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d16e48e830071574a58b1b6eca0e634 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e37df4dfd8b62d6086ee322c0ebf6867 = $(`&lt;div id=&quot;html_e37df4dfd8b62d6086ee322c0ebf6867&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6386             latitude:44.5462             PM2_5:19.77793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d16e48e830071574a58b1b6eca0e634.setContent(html_e37df4dfd8b62d6086ee322c0ebf6867);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2a0d7fc9828088b58abc57e22f13781.bindPopup(popup_5d16e48e830071574a58b1b6eca0e634)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ceea1b8a1b9fe6fab9a9328b2420ddfb = L.circleMarker(\\n\",\n       \"                [33.739, 113.292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83f1c2696bcfad244d1034e0bb7a4b1e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c9e2e1ab9e96367f69b08d79957806a = $(`&lt;div id=&quot;html_3c9e2e1ab9e96367f69b08d79957806a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.292             latitude:33.739             PM2_5:60.00560224             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83f1c2696bcfad244d1034e0bb7a4b1e.setContent(html_3c9e2e1ab9e96367f69b08d79957806a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ceea1b8a1b9fe6fab9a9328b2420ddfb.bindPopup(popup_83f1c2696bcfad244d1034e0bb7a4b1e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48c02b446c87454deed0c0747a988352 = L.circleMarker(\\n\",\n       \"                [27.72, 106.9178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e0d314fb48671bb6a58ef6a9b78f2a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1775b2726608f5e2c85e468dd838d8ba = $(`&lt;div id=&quot;html_1775b2726608f5e2c85e468dd838d8ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9178             latitude:27.72             PM2_5:29.96944444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e0d314fb48671bb6a58ef6a9b78f2a7.setContent(html_1775b2726608f5e2c85e468dd838d8ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48c02b446c87454deed0c0747a988352.bindPopup(popup_0e0d314fb48671bb6a58ef6a9b78f2a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfebf0e31f96123496a496e729c28c12 = L.circleMarker(\\n\",\n       \"                [31.4, 119.46],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b108e79efb97ab76f75812b79445ab34 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_053db648cdca81cd6480f7ce5a1ea5d7 = $(`&lt;div id=&quot;html_053db648cdca81cd6480f7ce5a1ea5d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.46             latitude:31.4             PM2_5:41.13091922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b108e79efb97ab76f75812b79445ab34.setContent(html_053db648cdca81cd6480f7ce5a1ea5d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfebf0e31f96123496a496e729c28c12.bindPopup(popup_b108e79efb97ab76f75812b79445ab34)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08ce87b852fb02a2d8842ee967e53f67 = L.circleMarker(\\n\",\n       \"                [25.0992, 104.8811],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1c994a9ad12be1f003eb824ebab153b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f56efa011992753e7aeb84113548420 = $(`&lt;div id=&quot;html_1f56efa011992753e7aeb84113548420&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8811             latitude:25.0992             PM2_5:15.26544944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1c994a9ad12be1f003eb824ebab153b.setContent(html_1f56efa011992753e7aeb84113548420);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08ce87b852fb02a2d8842ee967e53f67.bindPopup(popup_d1c994a9ad12be1f003eb824ebab153b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b28959933895d895ad1afd74cbf3e453 = L.circleMarker(\\n\",\n       \"                [46.0707, 122.0931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80b678f30c37860114b33e744979ab5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d01a414bbe7bb5ebed2076dce753a25a = $(`&lt;div id=&quot;html_d01a414bbe7bb5ebed2076dce753a25a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0931             latitude:46.0707             PM2_5:14.30087209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80b678f30c37860114b33e744979ab5a.setContent(html_d01a414bbe7bb5ebed2076dce753a25a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b28959933895d895ad1afd74cbf3e453.bindPopup(popup_80b678f30c37860114b33e744979ab5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68dcf0640974c9be60e3edd248af11ba = L.circleMarker(\\n\",\n       \"                [21.2679, 110.3316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3455c855967cc07bf991054b5c0800f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_311d3f1f9d1b1308f205039b55c6c38a = $(`&lt;div id=&quot;html_311d3f1f9d1b1308f205039b55c6c38a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3316             latitude:21.2679             PM2_5:25.9859944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3455c855967cc07bf991054b5c0800f8.setContent(html_311d3f1f9d1b1308f205039b55c6c38a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68dcf0640974c9be60e3edd248af11ba.bindPopup(popup_3455c855967cc07bf991054b5c0800f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f418726a299d8b5abc1c27ca12234d4e = L.circleMarker(\\n\",\n       \"                [25.5811, 100.2171],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d8ffa4585f65b996de0113c22994aa5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_223a8137ec6e3dab3caca2d38c0ec965 = $(`&lt;div id=&quot;html_223a8137ec6e3dab3caca2d38c0ec965&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2171             latitude:25.5811             PM2_5:15.15915493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d8ffa4585f65b996de0113c22994aa5.setContent(html_223a8137ec6e3dab3caca2d38c0ec965);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f418726a299d8b5abc1c27ca12234d4e.bindPopup(popup_8d8ffa4585f65b996de0113c22994aa5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddd59a46e2d66736a09aa21151edab3f = L.circleMarker(\\n\",\n       \"                [29.8633, 121.586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b762f2918dc34567ed1a80dd091c2f8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1991c11db5e059f7220dae9c1ed5fe8 = $(`&lt;div id=&quot;html_e1991c11db5e059f7220dae9c1ed5fe8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.586             latitude:29.8633             PM2_5:34.40027701             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b762f2918dc34567ed1a80dd091c2f8a.setContent(html_e1991c11db5e059f7220dae9c1ed5fe8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddd59a46e2d66736a09aa21151edab3f.bindPopup(popup_b762f2918dc34567ed1a80dd091c2f8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_608f40de57da2768ed5788dd6cd9d0af = L.circleMarker(\\n\",\n       \"                [43.962, 87.6444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58a02837ab2d462bff23a3c017a34c35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6778c783a9fb5d87ae6b85db30bd79f = $(`&lt;div id=&quot;html_e6778c783a9fb5d87ae6b85db30bd79f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6444             latitude:43.962             PM2_5:64.43895349             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58a02837ab2d462bff23a3c017a34c35.setContent(html_e6778c783a9fb5d87ae6b85db30bd79f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_608f40de57da2768ed5788dd6cd9d0af.bindPopup(popup_58a02837ab2d462bff23a3c017a34c35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54f412319c2d0c21e910927da1574003 = L.circleMarker(\\n\",\n       \"                [28.9583, 105.4306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba2ef609e902790a1b68057de2161a2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_817283fcaa7fcbacc8907962d5e5fee3 = $(`&lt;div id=&quot;html_817283fcaa7fcbacc8907962d5e5fee3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4306             latitude:28.9583             PM2_5:39.22050562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba2ef609e902790a1b68057de2161a2c.setContent(html_817283fcaa7fcbacc8907962d5e5fee3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54f412319c2d0c21e910927da1574003.bindPopup(popup_ba2ef609e902790a1b68057de2161a2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b8e30d3d33604c97a44f4f1c19c306aa = L.circleMarker(\\n\",\n       \"                [28.2597, 112.9792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05a1b6dcbd9aea1b131387a4a2a90f6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d970f77d9890adf6871741b0d1af43c0 = $(`&lt;div id=&quot;html_d970f77d9890adf6871741b0d1af43c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9792             latitude:28.2597             PM2_5:46.94182825             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05a1b6dcbd9aea1b131387a4a2a90f6e.setContent(html_d970f77d9890adf6871741b0d1af43c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b8e30d3d33604c97a44f4f1c19c306aa.bindPopup(popup_05a1b6dcbd9aea1b131387a4a2a90f6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1749a43696b344098a544fe39e9c18b = L.circleMarker(\\n\",\n       \"                [22.8054, 113.292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56271ab66aa3b17918416d1649cd1a3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62f06f3179cb69b48667bb47875cc3d2 = $(`&lt;div id=&quot;html_62f06f3179cb69b48667bb47875cc3d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.292             latitude:22.8054             PM2_5:28.99439776             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56271ab66aa3b17918416d1649cd1a3b.setContent(html_62f06f3179cb69b48667bb47875cc3d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1749a43696b344098a544fe39e9c18b.bindPopup(popup_56271ab66aa3b17918416d1649cd1a3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a851d6a8142e25f4269ed8c096082028 = L.circleMarker(\\n\",\n       \"                [45.7667, 126.635],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f405a12f44e6cee21fd08a939202edac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_352b366699d9aa9ead93984e3c0949c5 = $(`&lt;div id=&quot;html_352b366699d9aa9ead93984e3c0949c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.635             latitude:45.7667             PM2_5:32.13547486             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f405a12f44e6cee21fd08a939202edac.setContent(html_352b366699d9aa9ead93984e3c0949c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a851d6a8142e25f4269ed8c096082028.bindPopup(popup_f405a12f44e6cee21fd08a939202edac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a811e58eb5a4f2a408c7b4e8e1b9b42d = L.circleMarker(\\n\",\n       \"                [22.5625, 114.117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27242b48ec66dc1dcbe6d91d5dadae6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c1561bdad4162ecfb465ed5876a270e = $(`&lt;div id=&quot;html_4c1561bdad4162ecfb465ed5876a270e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.117             latitude:22.5625             PM2_5:28.08798883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27242b48ec66dc1dcbe6d91d5dadae6e.setContent(html_4c1561bdad4162ecfb465ed5876a270e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a811e58eb5a4f2a408c7b4e8e1b9b42d.bindPopup(popup_27242b48ec66dc1dcbe6d91d5dadae6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49989e0dc4cb6f18d57eb44b0d24c138 = L.circleMarker(\\n\",\n       \"                [33.9953, 113.7906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a65c66c057d6d61ba37bd6947c76dd0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f77ad4f97d7939622e1effd90e49d82 = $(`&lt;div id=&quot;html_0f77ad4f97d7939622e1effd90e49d82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7906             latitude:33.9953             PM2_5:52.43435754             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a65c66c057d6d61ba37bd6947c76dd0f.setContent(html_0f77ad4f97d7939622e1effd90e49d82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49989e0dc4cb6f18d57eb44b0d24c138.bindPopup(popup_a65c66c057d6d61ba37bd6947c76dd0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1886d683774cececca9d02f0fa9d06c0 = L.circleMarker(\\n\",\n       \"                [30.0911, 120.598],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9dbc1a474bb05840cd5fe07f642fa05b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66ad9396e8e9238f7bfb75bd7b4b1221 = $(`&lt;div id=&quot;html_66ad9396e8e9238f7bfb75bd7b4b1221&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.598             latitude:30.0911             PM2_5:42.53221289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9dbc1a474bb05840cd5fe07f642fa05b.setContent(html_66ad9396e8e9238f7bfb75bd7b4b1221);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1886d683774cececca9d02f0fa9d06c0.bindPopup(popup_9dbc1a474bb05840cd5fe07f642fa05b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08d9f9e22c797816dee3c33a8a70cba5 = L.circleMarker(\\n\",\n       \"                [33.0122, 112.5224],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfb92f39ec9cc7a041e36e56eee3ea9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14ab5339d7f055643b157efe2585af0d = $(`&lt;div id=&quot;html_14ab5339d7f055643b157efe2585af0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5224             latitude:33.0122             PM2_5:56.43732591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfb92f39ec9cc7a041e36e56eee3ea9d.setContent(html_14ab5339d7f055643b157efe2585af0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08d9f9e22c797816dee3c33a8a70cba5.bindPopup(popup_bfb92f39ec9cc7a041e36e56eee3ea9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39500cbbefdc06bb2f6380421ccbb0e2 = L.circleMarker(\\n\",\n       \"                [34.6692, 112.3628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e93e25f28f3576ef7b0a1890e83bcbda = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_297f1fa71414eccbb10b9676d451cd1d = $(`&lt;div id=&quot;html_297f1fa71414eccbb10b9676d451cd1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3628             latitude:34.6692             PM2_5:60.93277311             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e93e25f28f3576ef7b0a1890e83bcbda.setContent(html_297f1fa71414eccbb10b9676d451cd1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39500cbbefdc06bb2f6380421ccbb0e2.bindPopup(popup_e93e25f28f3576ef7b0a1890e83bcbda)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a40f6cfd396c6267e79135510322bf1 = L.circleMarker(\\n\",\n       \"                [27.8953, 102.2311],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70727c8b3e5914f17ef9b9c7ab9f16e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6806f3b326dbeb6d67332eacef1bdd8 = $(`&lt;div id=&quot;html_f6806f3b326dbeb6d67332eacef1bdd8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2311             latitude:27.8953             PM2_5:24.98459384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70727c8b3e5914f17ef9b9c7ab9f16e5.setContent(html_f6806f3b326dbeb6d67332eacef1bdd8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a40f6cfd396c6267e79135510322bf1.bindPopup(popup_70727c8b3e5914f17ef9b9c7ab9f16e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3e3b5f06aac030878157d29f18c6ca2 = L.circleMarker(\\n\",\n       \"                [30.3714, 114.8989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbff06946ce0b3dfd419c9d59edb5c55 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3de243697b8635acab018568d356ca4 = $(`&lt;div id=&quot;html_a3de243697b8635acab018568d356ca4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8989             latitude:30.3714             PM2_5:57.2733711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbff06946ce0b3dfd419c9d59edb5c55.setContent(html_a3de243697b8635acab018568d356ca4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3e3b5f06aac030878157d29f18c6ca2.bindPopup(popup_dbff06946ce0b3dfd419c9d59edb5c55)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8df8c02d643f43adf5e6042a891f91f9 = L.circleMarker(\\n\",\n       \"                [36.881, 118.746],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46430d2abb58e115c9f9c9d69cf795cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ed57ff51d8618a0eeb8e41833b84504 = $(`&lt;div id=&quot;html_7ed57ff51d8618a0eeb8e41833b84504&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.746             latitude:36.881             PM2_5:52.24558824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46430d2abb58e115c9f9c9d69cf795cb.setContent(html_7ed57ff51d8618a0eeb8e41833b84504);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8df8c02d643f43adf5e6042a891f91f9.bindPopup(popup_46430d2abb58e115c9f9c9d69cf795cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c914bc3d6e74235059ce71be1b4fe64 = L.circleMarker(\\n\",\n       \"                [28.3586, 112.9958],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50f20f52d0e03e9f862693c12ec693a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3f43dd2fba5a7cea176c171462ade4f = $(`&lt;div id=&quot;html_e3f43dd2fba5a7cea176c171462ade4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9958             latitude:28.3586             PM2_5:47.99858757             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50f20f52d0e03e9f862693c12ec693a5.setContent(html_e3f43dd2fba5a7cea176c171462ade4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c914bc3d6e74235059ce71be1b4fe64.bindPopup(popup_50f20f52d0e03e9f862693c12ec693a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43a323f47896c5209ec173dbd7b5b163 = L.circleMarker(\\n\",\n       \"                [21.865, 111.9494],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_068ba3723d61ac16cbd3042e5724c111 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7f266ce64e00cbeaf5e1d1000e77bc2 = $(`&lt;div id=&quot;html_d7f266ce64e00cbeaf5e1d1000e77bc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9494             latitude:21.865             PM2_5:26.47058824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_068ba3723d61ac16cbd3042e5724c111.setContent(html_d7f266ce64e00cbeaf5e1d1000e77bc2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43a323f47896c5209ec173dbd7b5b163.bindPopup(popup_068ba3723d61ac16cbd3042e5724c111)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78dae2dc16fcbb8dd9a3fd44c887814c = L.circleMarker(\\n\",\n       \"                [37.739, 115.6906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_547ffe54169320b6303b296b8d6eae2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b67238f839fefe190f6ef37921c194d = $(`&lt;div id=&quot;html_0b67238f839fefe190f6ef37921c194d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6906             latitude:37.739             PM2_5:61.18333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_547ffe54169320b6303b296b8d6eae2f.setContent(html_0b67238f839fefe190f6ef37921c194d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78dae2dc16fcbb8dd9a3fd44c887814c.bindPopup(popup_547ffe54169320b6303b296b8d6eae2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86904059f0c63586c8003d0e1937acbb = L.circleMarker(\\n\",\n       \"                [41.3283, 123.8436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2a22c0a8eddaa1f2faf2ec04fbd1f55 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_351576635ab0af9a7f2c6991f4c0a6eb = $(`&lt;div id=&quot;html_351576635ab0af9a7f2c6991f4c0a6eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8436             latitude:41.3283             PM2_5:26.20416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2a22c0a8eddaa1f2faf2ec04fbd1f55.setContent(html_351576635ab0af9a7f2c6991f4c0a6eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86904059f0c63586c8003d0e1937acbb.bindPopup(popup_b2a22c0a8eddaa1f2faf2ec04fbd1f55)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_169523f4105a055fae1cf9c77f2298cd = L.circleMarker(\\n\",\n       \"                [25.8179, 113.0119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e993caebbfb57307988177ec24d6d03 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_20a15f9e0e18a0f8b8227169225be336 = $(`&lt;div id=&quot;html_20a15f9e0e18a0f8b8227169225be336&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0119             latitude:25.8179             PM2_5:37.42577031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e993caebbfb57307988177ec24d6d03.setContent(html_20a15f9e0e18a0f8b8227169225be336);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_169523f4105a055fae1cf9c77f2298cd.bindPopup(popup_4e993caebbfb57307988177ec24d6d03)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bca3c62c1eca30e3cebffab00db266a7 = L.circleMarker(\\n\",\n       \"                [41.2894, 123.1417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_abffeee33d1b58fbfc16c2d559c40875 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5eecf863de733c61ec23f78c24dcb18 = $(`&lt;div id=&quot;html_e5eecf863de733c61ec23f78c24dcb18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1417             latitude:41.2894             PM2_5:33.12921348             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_abffeee33d1b58fbfc16c2d559c40875.setContent(html_e5eecf863de733c61ec23f78c24dcb18);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bca3c62c1eca30e3cebffab00db266a7.bindPopup(popup_abffeee33d1b58fbfc16c2d559c40875)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c62d68b2b89ddc7da86dd078cb34dcd8 = L.circleMarker(\\n\",\n       \"                [43.4569, 87.4651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa941b6f1a7bff0fb593e2d4413a0367 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5fe6cfef3f887368f5df24a32ce07092 = $(`&lt;div id=&quot;html_5fe6cfef3f887368f5df24a32ce07092&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.4651             latitude:43.4569             PM2_5:18.97464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa941b6f1a7bff0fb593e2d4413a0367.setContent(html_5fe6cfef3f887368f5df24a32ce07092);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c62d68b2b89ddc7da86dd078cb34dcd8.bindPopup(popup_fa941b6f1a7bff0fb593e2d4413a0367)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e24e674e458dfb27d04c77aa551b22f = L.circleMarker(\\n\",\n       \"                [30.72358333, 103.97275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16b334fa0473529b341c2bd26b01bfe5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5cf634e69caf354d647a7c050e62572c = $(`&lt;div id=&quot;html_5cf634e69caf354d647a7c050e62572c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.97275             latitude:30.72358333             PM2_5:55.87465181             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16b334fa0473529b341c2bd26b01bfe5.setContent(html_5cf634e69caf354d647a7c050e62572c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e24e674e458dfb27d04c77aa551b22f.bindPopup(popup_16b334fa0473529b341c2bd26b01bfe5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_329ae6b133f7fefe6c54aaa63f49962b = L.circleMarker(\\n\",\n       \"                [28.2675, 109.6958],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfc07c0bee81de0424d4bd0811fd008c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4721f44950d5cf33665e59112485bb6 = $(`&lt;div id=&quot;html_d4721f44950d5cf33665e59112485bb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6958             latitude:28.2675             PM2_5:45.76388889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfc07c0bee81de0424d4bd0811fd008c.setContent(html_d4721f44950d5cf33665e59112485bb6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_329ae6b133f7fefe6c54aaa63f49962b.bindPopup(popup_dfc07c0bee81de0424d4bd0811fd008c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f59c27755f3b7ae39d7a19dbdeffae84 = L.circleMarker(\\n\",\n       \"                [37.9844, 106.2025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2802dd70bad2516ed7577c39e981fc8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47126abe314216e4661bf35cafb59313 = $(`&lt;div id=&quot;html_47126abe314216e4661bf35cafb59313&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2025             latitude:37.9844             PM2_5:35.49438202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2802dd70bad2516ed7577c39e981fc8f.setContent(html_47126abe314216e4661bf35cafb59313);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f59c27755f3b7ae39d7a19dbdeffae84.bindPopup(popup_2802dd70bad2516ed7577c39e981fc8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_196c4fc1dfc41815048ccb6c0c762fa8 = L.circleMarker(\\n\",\n       \"                [36.8198, 118.3092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00eb09aae83e4b413b141212aac2abc9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c565ffc4dba2bfa3c90eee97ad58d507 = $(`&lt;div id=&quot;html_c565ffc4dba2bfa3c90eee97ad58d507&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3092             latitude:36.8198             PM2_5:58.88951841             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00eb09aae83e4b413b141212aac2abc9.setContent(html_c565ffc4dba2bfa3c90eee97ad58d507);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_196c4fc1dfc41815048ccb6c0c762fa8.bindPopup(popup_00eb09aae83e4b413b141212aac2abc9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_404e7558e0babb8360eb15739ab2b780 = L.circleMarker(\\n\",\n       \"                [29.3628, 104.7547],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53508bb2f05717ddd47aa274183b2689 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03ecc60a125018b8d2c46c59b2c340e4 = $(`&lt;div id=&quot;html_03ecc60a125018b8d2c46c59b2c340e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7547             latitude:29.3628             PM2_5:74.37711864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53508bb2f05717ddd47aa274183b2689.setContent(html_03ecc60a125018b8d2c46c59b2c340e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_404e7558e0babb8360eb15739ab2b780.bindPopup(popup_53508bb2f05717ddd47aa274183b2689)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c762ee10d6cc4b137adaee84b502f4c8 = L.circleMarker(\\n\",\n       \"                [26.5917, 104.83],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a72d6bf40d845dc98bfe7e14d9810c4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_88582b0e13961c5b77dd348247fd73fa = $(`&lt;div id=&quot;html_88582b0e13961c5b77dd348247fd73fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.83             latitude:26.5917             PM2_5:40.890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a72d6bf40d845dc98bfe7e14d9810c4b.setContent(html_88582b0e13961c5b77dd348247fd73fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c762ee10d6cc4b137adaee84b502f4c8.bindPopup(popup_a72d6bf40d845dc98bfe7e14d9810c4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5afad319a3ea33d3712d91c2d129ea0d = L.circleMarker(\\n\",\n       \"                [38.4975, 106.2328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0fd8cf83c57a255d78ce884e5cf052d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2afb77acd8b5d08c04d7217b23a1e12b = $(`&lt;div id=&quot;html_2afb77acd8b5d08c04d7217b23a1e12b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2328             latitude:38.4975             PM2_5:44.18994413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0fd8cf83c57a255d78ce884e5cf052d7.setContent(html_2afb77acd8b5d08c04d7217b23a1e12b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5afad319a3ea33d3712d91c2d129ea0d.bindPopup(popup_0fd8cf83c57a255d78ce884e5cf052d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4283506ef9e574afbf2bbb6520791afa = L.circleMarker(\\n\",\n       \"                [22.8225, 108.321],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b201caf36648133a6b8e35ff335a5ccc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa7df930bd21ab334093c3dcf3176b37 = $(`&lt;div id=&quot;html_fa7df930bd21ab334093c3dcf3176b37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.321             latitude:22.8225             PM2_5:33.82062147             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b201caf36648133a6b8e35ff335a5ccc.setContent(html_fa7df930bd21ab334093c3dcf3176b37);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4283506ef9e574afbf2bbb6520791afa.bindPopup(popup_b201caf36648133a6b8e35ff335a5ccc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4cc0ffd2ee92d759fc5d93e6e3ca636 = L.circleMarker(\\n\",\n       \"                [30.6539, 117.4974],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31635280306ece6cfae5b35678d6c9de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f111e0e61871f417f036bac0783ffccb = $(`&lt;div id=&quot;html_f111e0e61871f417f036bac0783ffccb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4974             latitude:30.6539             PM2_5:57.20555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31635280306ece6cfae5b35678d6c9de.setContent(html_f111e0e61871f417f036bac0783ffccb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4cc0ffd2ee92d759fc5d93e6e3ca636.bindPopup(popup_31635280306ece6cfae5b35678d6c9de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9031ecc1c2b4b97a10906a08f81fd1ce = L.circleMarker(\\n\",\n       \"                [32.935, 117.3086],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f1abb89f97643b139168f19cb912f74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de48197e93751e8e6ae65454ff30d905 = $(`&lt;div id=&quot;html_de48197e93751e8e6ae65454ff30d905&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3086             latitude:32.935             PM2_5:54.68539326             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f1abb89f97643b139168f19cb912f74.setContent(html_de48197e93751e8e6ae65454ff30d905);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9031ecc1c2b4b97a10906a08f81fd1ce.bindPopup(popup_2f1abb89f97643b139168f19cb912f74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d2ba8e922e0427f6ca5fc6e31cfbf39 = L.circleMarker(\\n\",\n       \"                [35.4234, 119.5198],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c2d7d74ecd2edc1e062956e7b526712 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11a14c0959df64903837cfb4b9e7ed66 = $(`&lt;div id=&quot;html_11a14c0959df64903837cfb4b9e7ed66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5198             latitude:35.4234             PM2_5:41.30501393             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c2d7d74ecd2edc1e062956e7b526712.setContent(html_11a14c0959df64903837cfb4b9e7ed66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d2ba8e922e0427f6ca5fc6e31cfbf39.bindPopup(popup_8c2d7d74ecd2edc1e062956e7b526712)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65964796dcbec842c2bbb757a1eb61a0 = L.circleMarker(\\n\",\n       \"                [24.769519, 113.586606],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53c7a174b02673d575a2b2f2942c9949 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82cf274fafd0d5de9f17acbca5664cf5 = $(`&lt;div id=&quot;html_82cf274fafd0d5de9f17acbca5664cf5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.586606             latitude:24.769519             PM2_5:36.18194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53c7a174b02673d575a2b2f2942c9949.setContent(html_82cf274fafd0d5de9f17acbca5664cf5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65964796dcbec842c2bbb757a1eb61a0.bindPopup(popup_53c7a174b02673d575a2b2f2942c9949)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db43aa4f7fa5fec8fe83b83c81317d2c = L.circleMarker(\\n\",\n       \"                [30.2352, 115.0625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b49d8382c67e93f76666f76d23fee50 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9772214c6aff9f2016d63f8993a9e6eb = $(`&lt;div id=&quot;html_9772214c6aff9f2016d63f8993a9e6eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0625             latitude:30.2352             PM2_5:47.3969697             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b49d8382c67e93f76666f76d23fee50.setContent(html_9772214c6aff9f2016d63f8993a9e6eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db43aa4f7fa5fec8fe83b83c81317d2c.bindPopup(popup_5b49d8382c67e93f76666f76d23fee50)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24bac36698c179f95ffb0b375bcdf3d4 = L.circleMarker(\\n\",\n       \"                [41.9228, 123.3783],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3bcc9211ff2d8a6050c6476da207bf93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59e03b549438acb35cd87c44befd14e3 = $(`&lt;div id=&quot;html_59e03b549438acb35cd87c44befd14e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.3783             latitude:41.9228             PM2_5:34.71727019             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3bcc9211ff2d8a6050c6476da207bf93.setContent(html_59e03b549438acb35cd87c44befd14e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24bac36698c179f95ffb0b375bcdf3d4.bindPopup(popup_3bcc9211ff2d8a6050c6476da207bf93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b66bd674f57840061c7d35d1f88156f = L.circleMarker(\\n\",\n       \"                [33.3947, 120.225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4a9940b04c332176d068b0e378bf214 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec4e1c850292edd626120ad4b27e199b = $(`&lt;div id=&quot;html_ec4e1c850292edd626120ad4b27e199b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.225             latitude:33.3947             PM2_5:35.74438202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4a9940b04c332176d068b0e378bf214.setContent(html_ec4e1c850292edd626120ad4b27e199b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b66bd674f57840061c7d35d1f88156f.bindPopup(popup_c4a9940b04c332176d068b0e378bf214)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62355565216efded5595ef574782754d = L.circleMarker(\\n\",\n       \"                [22.96583333, 113.7383333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f1253a77e1928f0d84c0edd42751ed0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44e3174cc2d47d495d50138b1aa5ba8e = $(`&lt;div id=&quot;html_44e3174cc2d47d495d50138b1aa5ba8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7383333             latitude:22.96583333             PM2_5:35.75761773             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f1253a77e1928f0d84c0edd42751ed0.setContent(html_44e3174cc2d47d495d50138b1aa5ba8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62355565216efded5595ef574782754d.bindPopup(popup_1f1253a77e1928f0d84c0edd42751ed0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60e809aa2d6b90f00c539ac503115fa6 = L.circleMarker(\\n\",\n       \"                [31.8706, 117.259],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc17c6611538f38b57f2836fd17f018e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f8550fc80753b622107e9f63d96429ca = $(`&lt;div id=&quot;html_f8550fc80753b622107e9f63d96429ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.259             latitude:31.8706             PM2_5:46.20473538             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc17c6611538f38b57f2836fd17f018e.setContent(html_f8550fc80753b622107e9f63d96429ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60e809aa2d6b90f00c539ac503115fa6.bindPopup(popup_bc17c6611538f38b57f2836fd17f018e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a8833c3b7f62ac330cfe4fa55600ec7 = L.circleMarker(\\n\",\n       \"                [31.03389, 112.1908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4805e66867c463e90e0fbd523559dac5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5bd2f0c28ea9794195023ac26d4d9d84 = $(`&lt;div id=&quot;html_5bd2f0c28ea9794195023ac26d4d9d84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1908             latitude:31.03389             PM2_5:50.85154062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4805e66867c463e90e0fbd523559dac5.setContent(html_5bd2f0c28ea9794195023ac26d4d9d84);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a8833c3b7f62ac330cfe4fa55600ec7.bindPopup(popup_4805e66867c463e90e0fbd523559dac5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffcb1a6d2d1e8fb2fbbb9ca07d24ab4d = L.circleMarker(\\n\",\n       \"                [31.371, 119.794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_793bb0c26c566b18b67259a54d0c3e2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6822d207807666994c8d45b5f9d1cbe = $(`&lt;div id=&quot;html_e6822d207807666994c8d45b5f9d1cbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.794             latitude:31.371             PM2_5:48.33333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_793bb0c26c566b18b67259a54d0c3e2f.setContent(html_e6822d207807666994c8d45b5f9d1cbe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffcb1a6d2d1e8fb2fbbb9ca07d24ab4d.bindPopup(popup_793bb0c26c566b18b67259a54d0c3e2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b411542fd35ff5bfa8fe06f3be85caf = L.circleMarker(\\n\",\n       \"                [36.2211, 117.6983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_48b1d84452bed26f18ce7eb9cc4d524b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6b0a016a21585375ddc3ab39d456801 = $(`&lt;div id=&quot;html_f6b0a016a21585375ddc3ab39d456801&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6983             latitude:36.2211             PM2_5:54.98994253             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_48b1d84452bed26f18ce7eb9cc4d524b.setContent(html_f6b0a016a21585375ddc3ab39d456801);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b411542fd35ff5bfa8fe06f3be85caf.bindPopup(popup_48b1d84452bed26f18ce7eb9cc4d524b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36896226e31c3cd1ea90bfc12c3ce356 = L.circleMarker(\\n\",\n       \"                [30.9219, 117.8561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98b81ec24477154ad23f1cb910675c73 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5dfede226a13da1fd40277bb50a4fce2 = $(`&lt;div id=&quot;html_5dfede226a13da1fd40277bb50a4fce2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8561             latitude:30.9219             PM2_5:50.87396122             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98b81ec24477154ad23f1cb910675c73.setContent(html_5dfede226a13da1fd40277bb50a4fce2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36896226e31c3cd1ea90bfc12c3ce356.bindPopup(popup_98b81ec24477154ad23f1cb910675c73)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66b15edcc40e4dc7e85d05fdfa810aba = L.circleMarker(\\n\",\n       \"                [32.0723, 118.778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9582554605763bf16bb3959cee6ca05d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f14f7b461a8f3be4381be2a9e3dc6f85 = $(`&lt;div id=&quot;html_f14f7b461a8f3be4381be2a9e3dc6f85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.778             latitude:32.0723             PM2_5:42.57244318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9582554605763bf16bb3959cee6ca05d.setContent(html_f14f7b461a8f3be4381be2a9e3dc6f85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66b15edcc40e4dc7e85d05fdfa810aba.bindPopup(popup_9582554605763bf16bb3959cee6ca05d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23112f68b5d7217daa0e92a40a5f3821 = L.circleMarker(\\n\",\n       \"                [42.2953, 123.8831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_072cdc4b05d8f38273521869c1929bc5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_358f70f6ec2d4cb88750bb74e6e7041e = $(`&lt;div id=&quot;html_358f70f6ec2d4cb88750bb74e6e7041e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8831             latitude:42.2953             PM2_5:30.840625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_072cdc4b05d8f38273521869c1929bc5.setContent(html_358f70f6ec2d4cb88750bb74e6e7041e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23112f68b5d7217daa0e92a40a5f3821.bindPopup(popup_072cdc4b05d8f38273521869c1929bc5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42001721244253c3141494a2aa72b153 = L.circleMarker(\\n\",\n       \"                [34.2911, 117.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56dd7eb37c216c60cd9fccfb3711f38e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7182492b0a07b865967ec61744f27fc = $(`&lt;div id=&quot;html_f7182492b0a07b865967ec61744f27fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.244             latitude:34.2911             PM2_5:66.16428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56dd7eb37c216c60cd9fccfb3711f38e.setContent(html_f7182492b0a07b865967ec61744f27fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42001721244253c3141494a2aa72b153.bindPopup(popup_56dd7eb37c216c60cd9fccfb3711f38e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f4576465c97166243fb2168cce3d8df = L.circleMarker(\\n\",\n       \"                [36.0714, 111.5028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e39da6319914033656282e4f4b0d3f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac69a0f8be1b10fa37974fba2735f58c = $(`&lt;div id=&quot;html_ac69a0f8be1b10fa37974fba2735f58c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5028             latitude:36.0714             PM2_5:76.35933148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e39da6319914033656282e4f4b0d3f8.setContent(html_ac69a0f8be1b10fa37974fba2735f58c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f4576465c97166243fb2168cce3d8df.bindPopup(popup_9e39da6319914033656282e4f4b0d3f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e3f5e854106b98843b3c65b97d55671 = L.circleMarker(\\n\",\n       \"                [30.0506, 103.8986],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b55384dc51ad8a5cb31594dafbcedde = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_157d353188c40bfd13d89c15414a0221 = $(`&lt;div id=&quot;html_157d353188c40bfd13d89c15414a0221&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8986             latitude:30.0506             PM2_5:35.75             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b55384dc51ad8a5cb31594dafbcedde.setContent(html_157d353188c40bfd13d89c15414a0221);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e3f5e854106b98843b3c65b97d55671.bindPopup(popup_3b55384dc51ad8a5cb31594dafbcedde)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3424e3968d4bc485960eed5d88148290 = L.circleMarker(\\n\",\n       \"                [31.1167, 104.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32dd61ceaffa7a0d94969867b68a6e55 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdcf0181bb72c3226e0a1f15be96f80e = $(`&lt;div id=&quot;html_bdcf0181bb72c3226e0a1f15be96f80e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.4053             latitude:31.1167             PM2_5:49.15927978             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32dd61ceaffa7a0d94969867b68a6e55.setContent(html_bdcf0181bb72c3226e0a1f15be96f80e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3424e3968d4bc485960eed5d88148290.bindPopup(popup_32dd61ceaffa7a0d94969867b68a6e55)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_992434bf7c453285c038a3bf48b6e824 = L.circleMarker(\\n\",\n       \"                [22.8464, 108.239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f190bd300bdcf7f1e362536752f1c2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9581cc07834201eb11ccf0a23933bf7 = $(`&lt;div id=&quot;html_a9581cc07834201eb11ccf0a23933bf7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.239             latitude:22.8464             PM2_5:32.19683908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f190bd300bdcf7f1e362536752f1c2c.setContent(html_a9581cc07834201eb11ccf0a23933bf7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_992434bf7c453285c038a3bf48b6e824.bindPopup(popup_3f190bd300bdcf7f1e362536752f1c2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b975f2d18578943120412bfa1f157ec = L.circleMarker(\\n\",\n       \"                [33.0069, 114.0131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ceb99f93ab48eb3164fb4156391f479 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be1fe9c2bb9c6dea65e9e1e21dc4ec36 = $(`&lt;div id=&quot;html_be1fe9c2bb9c6dea65e9e1e21dc4ec36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0131             latitude:33.0069             PM2_5:55.45224719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ceb99f93ab48eb3164fb4156391f479.setContent(html_be1fe9c2bb9c6dea65e9e1e21dc4ec36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b975f2d18578943120412bfa1f157ec.bindPopup(popup_7ceb99f93ab48eb3164fb4156391f479)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a04813bfd40f6b86b9b2d5b6286c002 = L.circleMarker(\\n\",\n       \"                [46.8032, 130.3648],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fb31ae8bf28fb1710688b6181bdec61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4583b1c6a89a8b3b464549380b6c5ba5 = $(`&lt;div id=&quot;html_4583b1c6a89a8b3b464549380b6c5ba5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3648             latitude:46.8032             PM2_5:23.81714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fb31ae8bf28fb1710688b6181bdec61.setContent(html_4583b1c6a89a8b3b464549380b6c5ba5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a04813bfd40f6b86b9b2d5b6286c002.bindPopup(popup_8fb31ae8bf28fb1710688b6181bdec61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f404e4e70ea184393826e0c69ea11d97 = L.circleMarker(\\n\",\n       \"                [30.8064, 106.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b36b3df346eec09c835501b7bcfc5df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94ef3c5a03a83373485f49f07187cbbd = $(`&lt;div id=&quot;html_94ef3c5a03a83373485f49f07187cbbd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.056             latitude:30.8064             PM2_5:41.3079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b36b3df346eec09c835501b7bcfc5df.setContent(html_94ef3c5a03a83373485f49f07187cbbd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f404e4e70ea184393826e0c69ea11d97.bindPopup(popup_0b36b3df346eec09c835501b7bcfc5df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d5dc39310b1ff62e810ac825443ec9c4 = L.circleMarker(\\n\",\n       \"                [45.6886, 85.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_137f521f5319a673734017d16e21a333 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1375a3731120d9408d689373d197fb9 = $(`&lt;div id=&quot;html_a1375a3731120d9408d689373d197fb9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:85.1186             latitude:45.6886             PM2_5:33.96398892             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_137f521f5319a673734017d16e21a333.setContent(html_a1375a3731120d9408d689373d197fb9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d5dc39310b1ff62e810ac825443ec9c4.bindPopup(popup_137f521f5319a673734017d16e21a333)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e361892aa3217a756a0524811fd9bcf9 = L.circleMarker(\\n\",\n       \"                [32.4639, 119.888],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c57239afe4c230afc86c74f38476fdd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5633f29138ed117c519b9bf0c16e07d = $(`&lt;div id=&quot;html_d5633f29138ed117c519b9bf0c16e07d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.888             latitude:32.4639             PM2_5:55.42896936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c57239afe4c230afc86c74f38476fdd.setContent(html_d5633f29138ed117c519b9bf0c16e07d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e361892aa3217a756a0524811fd9bcf9.bindPopup(popup_7c57239afe4c230afc86c74f38476fdd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f68d58dfb1d9755de52238bf638b830 = L.circleMarker(\\n\",\n       \"                [27.9119, 112.9074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fb8c70e6502b4692643376535005854 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1fc2c43e4123b525bfd1da767d5075d9 = $(`&lt;div id=&quot;html_1fc2c43e4123b525bfd1da767d5075d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9074             latitude:27.9119             PM2_5:47.09887006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fb8c70e6502b4692643376535005854.setContent(html_1fc2c43e4123b525bfd1da767d5075d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f68d58dfb1d9755de52238bf638b830.bindPopup(popup_8fb8c70e6502b4692643376535005854)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d898b2758d891751dab4ced11687310 = L.circleMarker(\\n\",\n       \"                [31.7275, 113.3583],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8060308fe5ca4496a0a164c2ae989b0c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0c16469485d5121836e64dbe0a790aa = $(`&lt;div id=&quot;html_d0c16469485d5121836e64dbe0a790aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3583             latitude:31.7275             PM2_5:50.34453782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8060308fe5ca4496a0a164c2ae989b0c.setContent(html_d0c16469485d5121836e64dbe0a790aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d898b2758d891751dab4ced11687310.bindPopup(popup_8060308fe5ca4496a0a164c2ae989b0c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f3e5a8470d615eebda73d902ce19d3c = L.circleMarker(\\n\",\n       \"                [25.7054, 100.1542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_056214a4b785391a6a445672545321d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f2884317695f9bffc421782d7046a66 = $(`&lt;div id=&quot;html_9f2884317695f9bffc421782d7046a66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.1542             latitude:25.7054             PM2_5:21.56703911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_056214a4b785391a6a445672545321d3.setContent(html_9f2884317695f9bffc421782d7046a66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f3e5a8470d615eebda73d902ce19d3c.bindPopup(popup_056214a4b785391a6a445672545321d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b940203ba9fa28371c30db22008be91b = L.circleMarker(\\n\",\n       \"                [36.838, 118.0448],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c967143691a6727af94229ad37fb474 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3e17a60030fea4fce66d451f88ede39 = $(`&lt;div id=&quot;html_f3e17a60030fea4fce66d451f88ede39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0448             latitude:36.838             PM2_5:53.40947075             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c967143691a6727af94229ad37fb474.setContent(html_f3e17a60030fea4fce66d451f88ede39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b940203ba9fa28371c30db22008be91b.bindPopup(popup_1c967143691a6727af94229ad37fb474)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b7774c7b12ae34436e593eccf40e9f2 = L.circleMarker(\\n\",\n       \"                [25.7759, 113.0348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26ab4b30882210a13a5e60effe3e473f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12f8affbad5f7eb7d67e51753f0d1f2d = $(`&lt;div id=&quot;html_12f8affbad5f7eb7d67e51753f0d1f2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0348             latitude:25.7759             PM2_5:36.1680791             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26ab4b30882210a13a5e60effe3e473f.setContent(html_12f8affbad5f7eb7d67e51753f0d1f2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b7774c7b12ae34436e593eccf40e9f2.bindPopup(popup_26ab4b30882210a13a5e60effe3e473f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a5c5e03bdab9cea43370d7c099cb997 = L.circleMarker(\\n\",\n       \"                [37.7805, 112.488],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd4ac967181b52554ec3ec32ca48a596 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3c3461ad16110a8b7ce510237299799 = $(`&lt;div id=&quot;html_e3c3461ad16110a8b7ce510237299799&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.488             latitude:37.7805             PM2_5:67.54843305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd4ac967181b52554ec3ec32ca48a596.setContent(html_e3c3461ad16110a8b7ce510237299799);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a5c5e03bdab9cea43370d7c099cb997.bindPopup(popup_dd4ac967181b52554ec3ec32ca48a596)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_326605e8bb7b836e9ce23cff5aef2d41 = L.circleMarker(\\n\",\n       \"                [31.0483, 112.2014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_549058fe5d90cddad3fcd718f35e1303 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_537d7c47f457f5838513a1677198e065 = $(`&lt;div id=&quot;html_537d7c47f457f5838513a1677198e065&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2014             latitude:31.0483             PM2_5:56.0724234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_549058fe5d90cddad3fcd718f35e1303.setContent(html_537d7c47f457f5838513a1677198e065);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_326605e8bb7b836e9ce23cff5aef2d41.bindPopup(popup_549058fe5d90cddad3fcd718f35e1303)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_acd00bde13dc21b457d7b162b32d103c = L.circleMarker(\\n\",\n       \"                [26.4214, 111.6156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba34d2421749bc4622ce71a8e2e60688 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ac9491d96518c70dd0a081671695a23 = $(`&lt;div id=&quot;html_6ac9491d96518c70dd0a081671695a23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6156             latitude:26.4214             PM2_5:44.47167139             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba34d2421749bc4622ce71a8e2e60688.setContent(html_6ac9491d96518c70dd0a081671695a23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_acd00bde13dc21b457d7b162b32d103c.bindPopup(popup_ba34d2421749bc4622ce71a8e2e60688)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a60421405fb87e7ca0d04f7a35b2c0d = L.circleMarker(\\n\",\n       \"                [38.3228, 116.8709],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1bdd21eddef232cf18b2e994f33aa46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1377fbeb985039a20e13f7a33919b74 = $(`&lt;div id=&quot;html_d1377fbeb985039a20e13f7a33919b74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8709             latitude:38.3228             PM2_5:54.73184358             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1bdd21eddef232cf18b2e994f33aa46.setContent(html_d1377fbeb985039a20e13f7a33919b74);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a60421405fb87e7ca0d04f7a35b2c0d.bindPopup(popup_d1bdd21eddef232cf18b2e994f33aa46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f87ac758a1658fa9e88030089177d24 = L.circleMarker(\\n\",\n       \"                [23.5739, 116.3594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76a2729115c2ef310ffd782022479d62 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed6e4fb1c2eefdfdbc6295b25300f5de = $(`&lt;div id=&quot;html_ed6e4fb1c2eefdfdbc6295b25300f5de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3594             latitude:23.5739             PM2_5:28.48587571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76a2729115c2ef310ffd782022479d62.setContent(html_ed6e4fb1c2eefdfdbc6295b25300f5de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f87ac758a1658fa9e88030089177d24.bindPopup(popup_76a2729115c2ef310ffd782022479d62)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36ec0aa78f76236aa8e6775649c7d519 = L.circleMarker(\\n\",\n       \"                [25.2708, 110.3089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c2f64f6010a7473b8c1d7fdd2dbcd62 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a79412e154c3f9eda84488f58076279 = $(`&lt;div id=&quot;html_6a79412e154c3f9eda84488f58076279&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3089             latitude:25.2708             PM2_5:42.62952646             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c2f64f6010a7473b8c1d7fdd2dbcd62.setContent(html_6a79412e154c3f9eda84488f58076279);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36ec0aa78f76236aa8e6775649c7d519.bindPopup(popup_0c2f64f6010a7473b8c1d7fdd2dbcd62)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_108e51a41b4bfab0f5a8da848442e055 = L.circleMarker(\\n\",\n       \"                [30.4183, 120.301],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c16b9af7ad3aa0cb3d4c6548821c60f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05d5c6e81664bed8c9292e5260d85ba7 = $(`&lt;div id=&quot;html_05d5c6e81664bed8c9292e5260d85ba7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.301             latitude:30.4183             PM2_5:38.71666667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c16b9af7ad3aa0cb3d4c6548821c60f.setContent(html_05d5c6e81664bed8c9292e5260d85ba7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_108e51a41b4bfab0f5a8da848442e055.bindPopup(popup_4c16b9af7ad3aa0cb3d4c6548821c60f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5635535cb170b036512845af56ae5d2b = L.circleMarker(\\n\",\n       \"                [31.1956, 107.5069],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8840619b02de1c18a8e96f0fd0dc415e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08061410c78266738420e8319c0ce952 = $(`&lt;div id=&quot;html_08061410c78266738420e8319c0ce952&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5069             latitude:31.1956             PM2_5:49.24373259             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8840619b02de1c18a8e96f0fd0dc415e.setContent(html_08061410c78266738420e8319c0ce952);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5635535cb170b036512845af56ae5d2b.bindPopup(popup_8840619b02de1c18a8e96f0fd0dc415e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_455f185f3bd3a09f762b2dc1418bac4c = L.circleMarker(\\n\",\n       \"                [31.4747, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b3a1c93f075d2e6e61f5429cdc2ffc0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_acd9fe618f6687a0b26773d714bb2d20 = $(`&lt;div id=&quot;html_acd9fe618f6687a0b26773d714bb2d20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:31.4747             PM2_5:44.43398876             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b3a1c93f075d2e6e61f5429cdc2ffc0.setContent(html_acd9fe618f6687a0b26773d714bb2d20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_455f185f3bd3a09f762b2dc1418bac4c.bindPopup(popup_8b3a1c93f075d2e6e61f5429cdc2ffc0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae97895fa0859600edaf93b756bb5051 = L.circleMarker(\\n\",\n       \"                [37.5002, 105.1971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f904c975edfab4ca3a1e0efe80b5b6b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce8dab8b63eba86987279397a0b0c943 = $(`&lt;div id=&quot;html_ce8dab8b63eba86987279397a0b0c943&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.1971             latitude:37.5002             PM2_5:38.00702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f904c975edfab4ca3a1e0efe80b5b6b3.setContent(html_ce8dab8b63eba86987279397a0b0c943);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae97895fa0859600edaf93b756bb5051.bindPopup(popup_f904c975edfab4ca3a1e0efe80b5b6b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_999ea88aac67b15bbd1866ba6ff04f8b = L.circleMarker(\\n\",\n       \"                [36.7731, 119.1939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7969d9bdd7c4aa6f3b8266ea6f015b76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_182779a3f37c7ada773b4b5783eebb67 = $(`&lt;div id=&quot;html_182779a3f37c7ada773b4b5783eebb67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1939             latitude:36.7731             PM2_5:44.57843137             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7969d9bdd7c4aa6f3b8266ea6f015b76.setContent(html_182779a3f37c7ada773b4b5783eebb67);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_999ea88aac67b15bbd1866ba6ff04f8b.bindPopup(popup_7969d9bdd7c4aa6f3b8266ea6f015b76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afcc74b2641744b3a6066dea5d4c264f = L.circleMarker(\\n\",\n       \"                [39.5747, 116.7729],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4923e384a6dc660d658a5b46b9d0ee6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_340f19d1bfe66f2266088844df8f4c4d = $(`&lt;div id=&quot;html_340f19d1bfe66f2266088844df8f4c4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7729             latitude:39.5747             PM2_5:42.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4923e384a6dc660d658a5b46b9d0ee6.setContent(html_340f19d1bfe66f2266088844df8f4c4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afcc74b2641744b3a6066dea5d4c264f.bindPopup(popup_e4923e384a6dc660d658a5b46b9d0ee6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5dc6a837374f010b0686756c837e551d = L.circleMarker(\\n\",\n       \"                [35.4178, 119.4641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9d85a5cb3fa3eba82f3164568b09f4e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a7d1e5770a090b1a31039ba33efc9ca = $(`&lt;div id=&quot;html_1a7d1e5770a090b1a31039ba33efc9ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.4641             latitude:35.4178             PM2_5:41.96218487             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9d85a5cb3fa3eba82f3164568b09f4e.setContent(html_1a7d1e5770a090b1a31039ba33efc9ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5dc6a837374f010b0686756c837e551d.bindPopup(popup_e9d85a5cb3fa3eba82f3164568b09f4e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52496365e00a5cb7b37c894a6fa170af = L.circleMarker(\\n\",\n       \"                [29.9816, 103.0001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98ce557aeb90a0a2d5edde1f4bad4647 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6b5f227bb52e95fbd0bad9b70b00a73 = $(`&lt;div id=&quot;html_b6b5f227bb52e95fbd0bad9b70b00a73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0001             latitude:29.9816             PM2_5:48.52539683             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98ce557aeb90a0a2d5edde1f4bad4647.setContent(html_b6b5f227bb52e95fbd0bad9b70b00a73);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52496365e00a5cb7b37c894a6fa170af.bindPopup(popup_98ce557aeb90a0a2d5edde1f4bad4647)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f840b5722792ded84ebd9a601101f30 = L.circleMarker(\\n\",\n       \"                [42.8953, 125.1567],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_795d62d036aae9cb3d54be9aea0e01b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5dcd7ff7a989bc041ecb9563eba6e9f4 = $(`&lt;div id=&quot;html_5dcd7ff7a989bc041ecb9563eba6e9f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1567             latitude:42.8953             PM2_5:33.06657224             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_795d62d036aae9cb3d54be9aea0e01b9.setContent(html_5dcd7ff7a989bc041ecb9563eba6e9f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f840b5722792ded84ebd9a601101f30.bindPopup(popup_795d62d036aae9cb3d54be9aea0e01b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07a3b3e5e81ab07c4c63f536666b3bea = L.circleMarker(\\n\",\n       \"                [45.2924, 130.962],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cde2d21a8325321063ceb74bb831b51c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a36c78d1854066bc27468053ca8c1f91 = $(`&lt;div id=&quot;html_a36c78d1854066bc27468053ca8c1f91&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.962             latitude:45.2924             PM2_5:22.86111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cde2d21a8325321063ceb74bb831b51c.setContent(html_a36c78d1854066bc27468053ca8c1f91);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07a3b3e5e81ab07c4c63f536666b3bea.bindPopup(popup_cde2d21a8325321063ceb74bb831b51c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93d7273c8d643e19ac4e250acc55392a = L.circleMarker(\\n\",\n       \"                [35.0992, 117.4518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2c49b460621baa8c1e9130f8edd54af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b400a4fe3baac1ff2c36094dbc9b191 = $(`&lt;div id=&quot;html_1b400a4fe3baac1ff2c36094dbc9b191&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4518             latitude:35.0992             PM2_5:49.70762712             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2c49b460621baa8c1e9130f8edd54af.setContent(html_1b400a4fe3baac1ff2c36094dbc9b191);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93d7273c8d643e19ac4e250acc55392a.bindPopup(popup_f2c49b460621baa8c1e9130f8edd54af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf8c601b12d06f86dfacaad25340e1f5 = L.circleMarker(\\n\",\n       \"                [23.5538, 113.589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57e9eb198f9d3d116166985cc863bf59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_029cc79cefc8c6767fe6033e9a9545ea = $(`&lt;div id=&quot;html_029cc79cefc8c6767fe6033e9a9545ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.589             latitude:23.5538             PM2_5:33.23537604             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57e9eb198f9d3d116166985cc863bf59.setContent(html_029cc79cefc8c6767fe6033e9a9545ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf8c601b12d06f86dfacaad25340e1f5.bindPopup(popup_57e9eb198f9d3d116166985cc863bf59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1b5cb4bab00660d3362497d64ce2bcc = L.circleMarker(\\n\",\n       \"                [24.441, 98.578],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e8083d4ce4654f1b309fe4e1bcd184f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_444422628dd893df42b5993253cc54f4 = $(`&lt;div id=&quot;html_444422628dd893df42b5993253cc54f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.578             latitude:24.441             PM2_5:42.49019608             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e8083d4ce4654f1b309fe4e1bcd184f.setContent(html_444422628dd893df42b5993253cc54f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1b5cb4bab00660d3362497d64ce2bcc.bindPopup(popup_5e8083d4ce4654f1b309fe4e1bcd184f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3bd0731d0e786ac3c3dbbd07819b6d9f = L.circleMarker(\\n\",\n       \"                [39.1082, 117.237],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71e08304d08236dfe4786a3afaa5cbee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bcb6153ae9d048f85f88862c3e6a0802 = $(`&lt;div id=&quot;html_bcb6153ae9d048f85f88862c3e6a0802&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.237             latitude:39.1082             PM2_5:53.32777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71e08304d08236dfe4786a3afaa5cbee.setContent(html_bcb6153ae9d048f85f88862c3e6a0802);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3bd0731d0e786ac3c3dbbd07819b6d9f.bindPopup(popup_71e08304d08236dfe4786a3afaa5cbee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4f9db78cfe80f990fe01c355fe9a627 = L.circleMarker(\\n\",\n       \"                [25.4552, 119.0018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_208c31c67b3ba27e5a9c5f1e7f9c25b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f370c2383fff596bba1f2e19a7765c4 = $(`&lt;div id=&quot;html_2f370c2383fff596bba1f2e19a7765c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0018             latitude:25.4552             PM2_5:31.57983193             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_208c31c67b3ba27e5a9c5f1e7f9c25b5.setContent(html_2f370c2383fff596bba1f2e19a7765c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4f9db78cfe80f990fe01c355fe9a627.bindPopup(popup_208c31c67b3ba27e5a9c5f1e7f9c25b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0cc6ab3a978fe60dd896b548f5384c06 = L.circleMarker(\\n\",\n       \"                [31.317, 119.438],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1ee9c7215c2aba25f1fbc179175a57e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e754aa40c14127930881e0606761dde = $(`&lt;div id=&quot;html_9e754aa40c14127930881e0606761dde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.438             latitude:31.317             PM2_5:41.8005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1ee9c7215c2aba25f1fbc179175a57e.setContent(html_9e754aa40c14127930881e0606761dde);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0cc6ab3a978fe60dd896b548f5384c06.bindPopup(popup_a1ee9c7215c2aba25f1fbc179175a57e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6eb1699dcf1d573e95a24177d404b37 = L.circleMarker(\\n\",\n       \"                [47.7222, 128.8736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04243271274ef1068ce16e7e578cf859 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b8a35ac598d6e902a6bd313c373650f = $(`&lt;div id=&quot;html_1b8a35ac598d6e902a6bd313c373650f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:128.8736             latitude:47.7222             PM2_5:17.74193548             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04243271274ef1068ce16e7e578cf859.setContent(html_1b8a35ac598d6e902a6bd313c373650f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6eb1699dcf1d573e95a24177d404b37.bindPopup(popup_04243271274ef1068ce16e7e578cf859)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b8f991e431a9aa08e23ea9d875926bd0 = L.circleMarker(\\n\",\n       \"                [38.86388889, 121.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_237de2f0d785379826678bb9af495679 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebadcce57a9712491a6e1141a964e6f8 = $(`&lt;div id=&quot;html_ebadcce57a9712491a6e1141a964e6f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.625             latitude:38.86388889             PM2_5:25.54366197             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_237de2f0d785379826678bb9af495679.setContent(html_ebadcce57a9712491a6e1141a964e6f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b8f991e431a9aa08e23ea9d875926bd0.bindPopup(popup_237de2f0d785379826678bb9af495679)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6eb8f1fab9367665e3f91e29c78f666c = L.circleMarker(\\n\",\n       \"                [40.8369, 111.751],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f596828b601dc72e17fa6280a63a3bca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a83e615d4b17541d200734415b3a46c = $(`&lt;div id=&quot;html_1a83e615d4b17541d200734415b3a46c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.751             latitude:40.8369             PM2_5:38.55774648             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f596828b601dc72e17fa6280a63a3bca.setContent(html_1a83e615d4b17541d200734415b3a46c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6eb8f1fab9367665e3f91e29c78f666c.bindPopup(popup_f596828b601dc72e17fa6280a63a3bca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d14a3e507f37489f385a9147a85ec502 = L.circleMarker(\\n\",\n       \"                [31.3019, 120.591],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_022867b630fabac3324ac83e203d99f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ded8c54dcac267fe06a5fd9ccb453e0 = $(`&lt;div id=&quot;html_2ded8c54dcac267fe06a5fd9ccb453e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.591             latitude:31.3019             PM2_5:45.21527778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_022867b630fabac3324ac83e203d99f3.setContent(html_2ded8c54dcac267fe06a5fd9ccb453e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d14a3e507f37489f385a9147a85ec502.bindPopup(popup_022867b630fabac3324ac83e203d99f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d05c34bc3d42b8acd746ecc796fa1479 = L.circleMarker(\\n\",\n       \"                [46.6527, 126.9636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1243d5886c9ea8e1fb0243389b2da08b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c48cdec67c9d26869d9e6a602a1af6ae = $(`&lt;div id=&quot;html_c48cdec67c9d26869d9e6a602a1af6ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.9636             latitude:46.6527             PM2_5:30.71186441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1243d5886c9ea8e1fb0243389b2da08b.setContent(html_c48cdec67c9d26869d9e6a602a1af6ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d05c34bc3d42b8acd746ecc796fa1479.bindPopup(popup_1243d5886c9ea8e1fb0243389b2da08b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b6dcf75802516ba24d4d36ffb6b2962 = L.circleMarker(\\n\",\n       \"                [29.389, 106.513],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_558d117c908ad9ff1a9ccf3412e0c005 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4767d453b288323db89edd89db515b16 = $(`&lt;div id=&quot;html_4767d453b288323db89edd89db515b16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.513             latitude:29.389             PM2_5:38.69390582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_558d117c908ad9ff1a9ccf3412e0c005.setContent(html_4767d453b288323db89edd89db515b16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b6dcf75802516ba24d4d36ffb6b2962.bindPopup(popup_558d117c908ad9ff1a9ccf3412e0c005)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6dc9fe512c4172375a70f92f6cae9896 = L.circleMarker(\\n\",\n       \"                [31.9286, 102.1755],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cac3007d97e29bb78523fc448949d0e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_659b164ada60555e5b7fc14cb5d8537c = $(`&lt;div id=&quot;html_659b164ada60555e5b7fc14cb5d8537c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1755             latitude:31.9286             PM2_5:4.474930362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cac3007d97e29bb78523fc448949d0e8.setContent(html_659b164ada60555e5b7fc14cb5d8537c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6dc9fe512c4172375a70f92f6cae9896.bindPopup(popup_cac3007d97e29bb78523fc448949d0e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e4d42387510b71c5118a454d2212b06 = L.circleMarker(\\n\",\n       \"                [40.2865, 116.17],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91246a303b7ff796b9ac4f5f13349ffe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5df7f37d14e0a6790438333eaeb04f0 = $(`&lt;div id=&quot;html_d5df7f37d14e0a6790438333eaeb04f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.17             latitude:40.2865             PM2_5:48.08073654             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91246a303b7ff796b9ac4f5f13349ffe.setContent(html_d5df7f37d14e0a6790438333eaeb04f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e4d42387510b71c5118a454d2212b06.bindPopup(popup_91246a303b7ff796b9ac4f5f13349ffe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d87d3332c49a21d11ef1c707e4cdbe0 = L.circleMarker(\\n\",\n       \"                [32.6494, 110.78],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2598f923b330fb8c4e9fd1d35dd8a52f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_592573bc92eaec61c2d155031b4b6c81 = $(`&lt;div id=&quot;html_592573bc92eaec61c2d155031b4b6c81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.78             latitude:32.6494             PM2_5:48.53703704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2598f923b330fb8c4e9fd1d35dd8a52f.setContent(html_592573bc92eaec61c2d155031b4b6c81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d87d3332c49a21d11ef1c707e4cdbe0.bindPopup(popup_2598f923b330fb8c4e9fd1d35dd8a52f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbc52353aa58d479a32b26b01682574e = L.circleMarker(\\n\",\n       \"                [39.7294, 98.5023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd09660d96c3b648f2a430d32db558ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89800f81bc78d3be68de61df24e26a6a = $(`&lt;div id=&quot;html_89800f81bc78d3be68de61df24e26a6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5023             latitude:39.7294             PM2_5:34.2994429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd09660d96c3b648f2a430d32db558ae.setContent(html_89800f81bc78d3be68de61df24e26a6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbc52353aa58d479a32b26b01682574e.bindPopup(popup_dd09660d96c3b648f2a430d32db558ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73428bbc486079fb86a8dd61cd637222 = L.circleMarker(\\n\",\n       \"                [27.2944, 105.31],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3471dec3d77a285bb05d67e60478a88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f008c78976ab7cc06c4008359e471db = $(`&lt;div id=&quot;html_8f008c78976ab7cc06c4008359e471db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.31             latitude:27.2944             PM2_5:31.77094972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3471dec3d77a285bb05d67e60478a88.setContent(html_8f008c78976ab7cc06c4008359e471db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73428bbc486079fb86a8dd61cd637222.bindPopup(popup_c3471dec3d77a285bb05d67e60478a88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_131323f65133001c8665b6ba60469abe = L.circleMarker(\\n\",\n       \"                [21.2706, 110.3539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4a0386c2366ba82d5b7619e900d77ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3eb0c06a6964ceef19fe9d7e95710ed = $(`&lt;div id=&quot;html_b3eb0c06a6964ceef19fe9d7e95710ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3539             latitude:21.2706             PM2_5:25.63165266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4a0386c2366ba82d5b7619e900d77ca.setContent(html_b3eb0c06a6964ceef19fe9d7e95710ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_131323f65133001c8665b6ba60469abe.bindPopup(popup_d4a0386c2366ba82d5b7619e900d77ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8b273650a6f14f0ae109220a9d0dd8c = L.circleMarker(\\n\",\n       \"                [23.5292, 116.4094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd6fa92d5d279ff808969faeac3510da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb5c452c328cd56bd3d9d3c7a6315230 = $(`&lt;div id=&quot;html_fb5c452c328cd56bd3d9d3c7a6315230&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.4094             latitude:23.5292             PM2_5:32.23882682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd6fa92d5d279ff808969faeac3510da.setContent(html_fb5c452c328cd56bd3d9d3c7a6315230);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8b273650a6f14f0ae109220a9d0dd8c.bindPopup(popup_bd6fa92d5d279ff808969faeac3510da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5c80fa3f5b5d4766b3eb46f21f6c0f6 = L.circleMarker(\\n\",\n       \"                [42.8939, 129.4892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61a6cb06cbf89fed108c70e637967ca1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9b8859a90de9d78e1c66e8a0271dbffb = $(`&lt;div id=&quot;html_9b8859a90de9d78e1c66e8a0271dbffb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.4892             latitude:42.8939             PM2_5:17.38028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61a6cb06cbf89fed108c70e637967ca1.setContent(html_9b8859a90de9d78e1c66e8a0271dbffb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5c80fa3f5b5d4766b3eb46f21f6c0f6.bindPopup(popup_61a6cb06cbf89fed108c70e637967ca1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b95e244d2f9292949d8a010ff42d409a = L.circleMarker(\\n\",\n       \"                [40.9843, 117.9525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b3b4fee36710edbf72a9f16efe350d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2115e5786ceccf14c59cd4ee358c263a = $(`&lt;div id=&quot;html_2115e5786ceccf14c59cd4ee358c263a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9525             latitude:40.9843             PM2_5:23.03760446             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b3b4fee36710edbf72a9f16efe350d4.setContent(html_2115e5786ceccf14c59cd4ee358c263a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b95e244d2f9292949d8a010ff42d409a.bindPopup(popup_2b3b4fee36710edbf72a9f16efe350d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b959dff0d88f6934bd6efa4c31dea44b = L.circleMarker(\\n\",\n       \"                [32.5, 80.1161],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5eaff5b628cb3aa2b46e18061328c922 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d0455bafdd17e5b57b43f8189f64c46 = $(`&lt;div id=&quot;html_1d0455bafdd17e5b57b43f8189f64c46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.1161             latitude:32.5             PM2_5:16.11726384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5eaff5b628cb3aa2b46e18061328c922.setContent(html_1d0455bafdd17e5b57b43f8189f64c46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b959dff0d88f6934bd6efa4c31dea44b.bindPopup(popup_5eaff5b628cb3aa2b46e18061328c922)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84c26a75f74dd13d66fe743142e40a4f = L.circleMarker(\\n\",\n       \"                [34.1978, 108.985],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ee98aa22d19495a845d1a8c2daffa72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_070846029e56c38b5fff81883eb17d56 = $(`&lt;div id=&quot;html_070846029e56c38b5fff81883eb17d56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.985             latitude:34.1978             PM2_5:65.46175637             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ee98aa22d19495a845d1a8c2daffa72.setContent(html_070846029e56c38b5fff81883eb17d56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84c26a75f74dd13d66fe743142e40a4f.bindPopup(popup_7ee98aa22d19495a845d1a8c2daffa72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a7136e69baf03e781775e21cec6e5c8 = L.circleMarker(\\n\",\n       \"                [36.7019, 119.12],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b32490d4eb8141e7ae7030ed7166bbe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40afe0e0f7a7a09ef21e4fbabbed69eb = $(`&lt;div id=&quot;html_40afe0e0f7a7a09ef21e4fbabbed69eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.12             latitude:36.7019             PM2_5:46.91504178             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b32490d4eb8141e7ae7030ed7166bbe.setContent(html_40afe0e0f7a7a09ef21e4fbabbed69eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a7136e69baf03e781775e21cec6e5c8.bindPopup(popup_8b32490d4eb8141e7ae7030ed7166bbe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85bb07df084968e60089b08559c7fde3 = L.circleMarker(\\n\",\n       \"                [43.8748, 125.3649],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b82bb1e0e1b5eea04993c47c9a70be8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9db25254b478e381662040da0ccd5e17 = $(`&lt;div id=&quot;html_9db25254b478e381662040da0ccd5e17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.3649             latitude:43.8748             PM2_5:29.41114458             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b82bb1e0e1b5eea04993c47c9a70be8f.setContent(html_9db25254b478e381662040da0ccd5e17);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85bb07df084968e60089b08559c7fde3.bindPopup(popup_b82bb1e0e1b5eea04993c47c9a70be8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3aa1d65f90cd022ec768af329530bdf = L.circleMarker(\\n\",\n       \"                [43.6156, 122.3039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b56f534099da87dca65917ab99b5ea00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85d3a39a772a5a85bc4dd4751ea4f9bd = $(`&lt;div id=&quot;html_85d3a39a772a5a85bc4dd4751ea4f9bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.3039             latitude:43.6156             PM2_5:22.00710227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b56f534099da87dca65917ab99b5ea00.setContent(html_85d3a39a772a5a85bc4dd4751ea4f9bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3aa1d65f90cd022ec768af329530bdf.bindPopup(popup_b56f534099da87dca65917ab99b5ea00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc4c2d5a9d65e6988beb212710b35f62 = L.circleMarker(\\n\",\n       \"                [36.5819, 101.834],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c76638d3251ee8fc8f85c92457d6b48d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8127ef440fa36ccfc1474744dcff98fb = $(`&lt;div id=&quot;html_8127ef440fa36ccfc1474744dcff98fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.834             latitude:36.5819             PM2_5:64.51694915             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c76638d3251ee8fc8f85c92457d6b48d.setContent(html_8127ef440fa36ccfc1474744dcff98fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc4c2d5a9d65e6988beb212710b35f62.bindPopup(popup_c76638d3251ee8fc8f85c92457d6b48d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36190fa6bc269a5307b10524732c21e2 = L.circleMarker(\\n\",\n       \"                [37.43445, 118.696],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2623c41df939f6bccce905889185a1e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95e96ffcc77a780af81fff33c3f5c91e = $(`&lt;div id=&quot;html_95e96ffcc77a780af81fff33c3f5c91e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.696             latitude:37.43445             PM2_5:50.83479532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2623c41df939f6bccce905889185a1e1.setContent(html_95e96ffcc77a780af81fff33c3f5c91e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36190fa6bc269a5307b10524732c21e2.bindPopup(popup_2623c41df939f6bccce905889185a1e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31852803a1d2829da3544bab8f3552a5 = L.circleMarker(\\n\",\n       \"                [29.5822, 105.0406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ca317110e45af82dec509f92040e0c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07289bcf19442ae3c5836806ae03b2ea = $(`&lt;div id=&quot;html_07289bcf19442ae3c5836806ae03b2ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0406             latitude:29.5822             PM2_5:34.67746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ca317110e45af82dec509f92040e0c7.setContent(html_07289bcf19442ae3c5836806ae03b2ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31852803a1d2829da3544bab8f3552a5.bindPopup(popup_3ca317110e45af82dec509f92040e0c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ec099f3677516abc5852c4a2fb2bc77 = L.circleMarker(\\n\",\n       \"                [25.0311, 117.0151],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a04a716f6dc49fcb2cd15c18ecea6790 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6105e04e0b4f2fa9c8574ff96573cf1 = $(`&lt;div id=&quot;html_e6105e04e0b4f2fa9c8574ff96573cf1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0151             latitude:25.0311             PM2_5:21.51805556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a04a716f6dc49fcb2cd15c18ecea6790.setContent(html_e6105e04e0b4f2fa9c8574ff96573cf1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ec099f3677516abc5852c4a2fb2bc77.bindPopup(popup_a04a716f6dc49fcb2cd15c18ecea6790)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1819a499f0dc9e21b0a26e5fc917eaa6 = L.circleMarker(\\n\",\n       \"                [34.3739, 107.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df6cfc71e29232b9d5401d908528ab46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa9c393117b0e38ed284d0d3b5217eb4 = $(`&lt;div id=&quot;html_fa9c393117b0e38ed284d0d3b5217eb4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1186             latitude:34.3739             PM2_5:48.6103352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df6cfc71e29232b9d5401d908528ab46.setContent(html_fa9c393117b0e38ed284d0d3b5217eb4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1819a499f0dc9e21b0a26e5fc917eaa6.bindPopup(popup_df6cfc71e29232b9d5401d908528ab46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2648ff34c9ff497cacad72e559b16f7 = L.circleMarker(\\n\",\n       \"                [37.4514, 105.0197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_355126957962a1f90c778a7f87d277ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03ce834ca282008033c7b6326c6ec44f = $(`&lt;div id=&quot;html_03ce834ca282008033c7b6326c6ec44f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0197             latitude:37.4514             PM2_5:32.86182336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_355126957962a1f90c778a7f87d277ad.setContent(html_03ce834ca282008033c7b6326c6ec44f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2648ff34c9ff497cacad72e559b16f7.bindPopup(popup_355126957962a1f90c778a7f87d277ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e87e7b279c3a92c48f8766ba51993f7 = L.circleMarker(\\n\",\n       \"                [36.6525, 119.1638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a58faf76eea0f0db838fc536720a80a8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4734444be47159f66bddb10d1f38fb75 = $(`&lt;div id=&quot;html_4734444be47159f66bddb10d1f38fb75&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1638             latitude:36.6525             PM2_5:45.55665722             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a58faf76eea0f0db838fc536720a80a8.setContent(html_4734444be47159f66bddb10d1f38fb75);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e87e7b279c3a92c48f8766ba51993f7.bindPopup(popup_a58faf76eea0f0db838fc536720a80a8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_99c6faa324700ef8f05d9ef823ed54b2 = L.circleMarker(\\n\",\n       \"                [31.3839, 118.4022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9be1e6bc37833bad510bd5fd9a84363 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c215524f99b8a1f4647be9cefd286c2 = $(`&lt;div id=&quot;html_3c215524f99b8a1f4647be9cefd286c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4022             latitude:31.3839             PM2_5:48.11772853             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9be1e6bc37833bad510bd5fd9a84363.setContent(html_3c215524f99b8a1f4647be9cefd286c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_99c6faa324700ef8f05d9ef823ed54b2.bindPopup(popup_f9be1e6bc37833bad510bd5fd9a84363)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7b5574f72ea86854c4da8ec0275b2d3 = L.circleMarker(\\n\",\n       \"                [34.5021, 109.4266],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26a18bbc4a05f07c6de4b41b64233f2b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd639ec42a310c7affc99eadbd6f6048 = $(`&lt;div id=&quot;html_bd639ec42a310c7affc99eadbd6f6048&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4266             latitude:34.5021             PM2_5:61.24373259             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26a18bbc4a05f07c6de4b41b64233f2b.setContent(html_bd639ec42a310c7affc99eadbd6f6048);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7b5574f72ea86854c4da8ec0275b2d3.bindPopup(popup_26a18bbc4a05f07c6de4b41b64233f2b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48111f87009c489bddbec8385c73b6f6 = L.circleMarker(\\n\",\n       \"                [31.7386, 117.278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2376d228190955e45522d4fd2499f33b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c43b4b5dbd5a2f86d8ebfadab2d712cd = $(`&lt;div id=&quot;html_c43b4b5dbd5a2f86d8ebfadab2d712cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.278             latitude:31.7386             PM2_5:49.27824859             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2376d228190955e45522d4fd2499f33b.setContent(html_c43b4b5dbd5a2f86d8ebfadab2d712cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48111f87009c489bddbec8385c73b6f6.bindPopup(popup_2376d228190955e45522d4fd2499f33b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a95106ce2d888d7638e4c43ac4a35387 = L.circleMarker(\\n\",\n       \"                [26.9258, 112.6194],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aaee052f82e1097702084b2b8bb1aeb0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65fcd6354805e3e7ab3fc9b126f74f85 = $(`&lt;div id=&quot;html_65fcd6354805e3e7ab3fc9b126f74f85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6194             latitude:26.9258             PM2_5:41.8531856             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aaee052f82e1097702084b2b8bb1aeb0.setContent(html_65fcd6354805e3e7ab3fc9b126f74f85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a95106ce2d888d7638e4c43ac4a35387.bindPopup(popup_aaee052f82e1097702084b2b8bb1aeb0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f905102fc397bc48a8838374739b8fec = L.circleMarker(\\n\",\n       \"                [36.0464, 103.831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e8a9bb51cadf83781246ac0d7ce5276 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2098ca7ae4246e5cd371f11a57d31622 = $(`&lt;div id=&quot;html_2098ca7ae4246e5cd371f11a57d31622&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.831             latitude:36.0464             PM2_5:55.54131054             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e8a9bb51cadf83781246ac0d7ce5276.setContent(html_2098ca7ae4246e5cd371f11a57d31622);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f905102fc397bc48a8838374739b8fec.bindPopup(popup_6e8a9bb51cadf83781246ac0d7ce5276)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0821e5e89f836088df1b0fe5538e4a4f = L.circleMarker(\\n\",\n       \"                [26.6607, 119.5202],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c91bbe4f2153f5a8ec9b385210a6b38 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_008196825e7e5db6433de9cb75be9b9c = $(`&lt;div id=&quot;html_008196825e7e5db6433de9cb75be9b9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5202             latitude:26.6607             PM2_5:32.12569832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c91bbe4f2153f5a8ec9b385210a6b38.setContent(html_008196825e7e5db6433de9cb75be9b9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0821e5e89f836088df1b0fe5538e4a4f.bindPopup(popup_8c91bbe4f2153f5a8ec9b385210a6b38)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39dbd4272f0ba6ee5bfb98f66770f575 = L.circleMarker(\\n\",\n       \"                [27.8403, 112.9118],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f42d1374bf49a2f2a1b6162717f20bb3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9087500d52f38209023719642ab7c110 = $(`&lt;div id=&quot;html_9087500d52f38209023719642ab7c110&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9118             latitude:27.8403             PM2_5:48.11731844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f42d1374bf49a2f2a1b6162717f20bb3.setContent(html_9087500d52f38209023719642ab7c110);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39dbd4272f0ba6ee5bfb98f66770f575.bindPopup(popup_f42d1374bf49a2f2a1b6162717f20bb3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2e3b9cc63d1f9dfd14e69b65d8f7241 = L.circleMarker(\\n\",\n       \"                [35.7306, 114.2878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df5dd51d3940fcdbfc3398b66a59d561 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9151f26554822c6658c73ddb7703e6e4 = $(`&lt;div id=&quot;html_9151f26554822c6658c73ddb7703e6e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2878             latitude:35.7306             PM2_5:52.82686981             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df5dd51d3940fcdbfc3398b66a59d561.setContent(html_9151f26554822c6658c73ddb7703e6e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2e3b9cc63d1f9dfd14e69b65d8f7241.bindPopup(popup_df5dd51d3940fcdbfc3398b66a59d561)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49ca0010768b498dfbb0d88561643a9c = L.circleMarker(\\n\",\n       \"                [34.6258, 112.4275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f35a448adb4f83e01ed73d4f0d99ce84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3219e2316d958963f674106e6a41498c = $(`&lt;div id=&quot;html_3219e2316d958963f674106e6a41498c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4275             latitude:34.6258             PM2_5:63.49719888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f35a448adb4f83e01ed73d4f0d99ce84.setContent(html_3219e2316d958963f674106e6a41498c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49ca0010768b498dfbb0d88561643a9c.bindPopup(popup_f35a448adb4f83e01ed73d4f0d99ce84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ed1b7171b914117911e796228f274ed = L.circleMarker(\\n\",\n       \"                [35.767, 115.0772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1bb73a35e9a5d1fe5a58eef5f1132982 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_16a45c1f57d4702fa85eb74726815af8 = $(`&lt;div id=&quot;html_16a45c1f57d4702fa85eb74726815af8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0772             latitude:35.767             PM2_5:57.44803371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1bb73a35e9a5d1fe5a58eef5f1132982.setContent(html_16a45c1f57d4702fa85eb74726815af8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ed1b7171b914117911e796228f274ed.bindPopup(popup_1bb73a35e9a5d1fe5a58eef5f1132982)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4e2b72d1fc7b2780402ced3788a921f = L.circleMarker(\\n\",\n       \"                [22.5545, 114.1063],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4100ff4e4616594f78b6120ea0229765 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_631f0bb67ba0518fdd4714ce4efa96dc = $(`&lt;div id=&quot;html_631f0bb67ba0518fdd4714ce4efa96dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1063             latitude:22.5545             PM2_5:27.20926966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4100ff4e4616594f78b6120ea0229765.setContent(html_631f0bb67ba0518fdd4714ce4efa96dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4e2b72d1fc7b2780402ced3788a921f.bindPopup(popup_4100ff4e4616594f78b6120ea0229765)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_469c395e8bc7930f09c630e3bbe6ffd0 = L.circleMarker(\\n\",\n       \"                [32.9917, 112.5192],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_092dd4f09a5f547811f3a6f6ac9b43b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1a5b2caf38518943cb8df12b6aa8e27 = $(`&lt;div id=&quot;html_d1a5b2caf38518943cb8df12b6aa8e27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5192             latitude:32.9917             PM2_5:62.29189944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_092dd4f09a5f547811f3a6f6ac9b43b4.setContent(html_d1a5b2caf38518943cb8df12b6aa8e27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_469c395e8bc7930f09c630e3bbe6ffd0.bindPopup(popup_092dd4f09a5f547811f3a6f6ac9b43b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65c6c85c513b963b43fc842a95933a0f = L.circleMarker(\\n\",\n       \"                [23.3993, 103.3772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f4da9656424cb7c080944a402383bec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7500fc5415078e7b2bf77f9fd89fc9a2 = $(`&lt;div id=&quot;html_7500fc5415078e7b2bf77f9fd89fc9a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.3772             latitude:23.3993             PM2_5:26.65198864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f4da9656424cb7c080944a402383bec.setContent(html_7500fc5415078e7b2bf77f9fd89fc9a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65c6c85c513b963b43fc842a95933a0f.bindPopup(popup_1f4da9656424cb7c080944a402383bec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_803defa7cba4960299d72b3d835516fc = L.circleMarker(\\n\",\n       \"                [23.2775, 116.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_245b3a80d54164b37d31022fa9afb4be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2c73a3697eac8c224d35f8c4e1b8ae2 = $(`&lt;div id=&quot;html_d2c73a3697eac8c224d35f8c4e1b8ae2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7258             latitude:23.2775             PM2_5:21.45567867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_245b3a80d54164b37d31022fa9afb4be.setContent(html_d2c73a3697eac8c224d35f8c4e1b8ae2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_803defa7cba4960299d72b3d835516fc.bindPopup(popup_245b3a80d54164b37d31022fa9afb4be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa18f4770e6999d947cef1ead691bb5f = L.circleMarker(\\n\",\n       \"                [39.8129, 110.0023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e03e3240c93d6abdad2687b8086207b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_507d9a5b4cf97d89d4713c883b52d2ae = $(`&lt;div id=&quot;html_507d9a5b4cf97d89d4713c883b52d2ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0023             latitude:39.8129             PM2_5:27.22957746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e03e3240c93d6abdad2687b8086207b5.setContent(html_507d9a5b4cf97d89d4713c883b52d2ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa18f4770e6999d947cef1ead691bb5f.bindPopup(popup_e03e3240c93d6abdad2687b8086207b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_193ae52dac3f39c42b3c184954d862f3 = L.circleMarker(\\n\",\n       \"                [23.0916, 113.348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3364aee90eb2ad9c30b4b821c519c86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a20a8724a9d1a39cf82e7b8fa453d7e = $(`&lt;div id=&quot;html_8a20a8724a9d1a39cf82e7b8fa453d7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.348             latitude:23.0916             PM2_5:31.47632312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3364aee90eb2ad9c30b4b821c519c86.setContent(html_8a20a8724a9d1a39cf82e7b8fa453d7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_193ae52dac3f39c42b3c184954d862f3.bindPopup(popup_c3364aee90eb2ad9c30b4b821c519c86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a23cfdc403356be68630064c8192c7fe = L.circleMarker(\\n\",\n       \"                [24.8885, 102.821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4cfc729e6cd2f905602a481bb796d27b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd6a87bad66f0cd29043548545d5c205 = $(`&lt;div id=&quot;html_dd6a87bad66f0cd29043548545d5c205&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.821             latitude:24.8885             PM2_5:22.06388889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4cfc729e6cd2f905602a481bb796d27b.setContent(html_dd6a87bad66f0cd29043548545d5c205);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a23cfdc403356be68630064c8192c7fe.bindPopup(popup_4cfc729e6cd2f905602a481bb796d27b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aac97285163fd3e25d05d93f0cb448cd = L.circleMarker(\\n\",\n       \"                [47.203, 123.6261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_542c4cc3edd21f60d9610034f5cd68c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d745b20f0c3cc006258cc9cf85ad51b4 = $(`&lt;div id=&quot;html_d745b20f0c3cc006258cc9cf85ad51b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.6261             latitude:47.203             PM2_5:26.81497175             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_542c4cc3edd21f60d9610034f5cd68c7.setContent(html_d745b20f0c3cc006258cc9cf85ad51b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aac97285163fd3e25d05d93f0cb448cd.bindPopup(popup_542c4cc3edd21f60d9610034f5cd68c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b951e4773888342dc5d29f7ea195f73 = L.circleMarker(\\n\",\n       \"                [34.3731, 109.2186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b7654abd52fd536280fbaff848a0dc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_122f13a90f9b7c85ed4a1ca013f684fd = $(`&lt;div id=&quot;html_122f13a90f9b7c85ed4a1ca013f684fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2186             latitude:34.3731             PM2_5:59.05270655             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b7654abd52fd536280fbaff848a0dc4.setContent(html_122f13a90f9b7c85ed4a1ca013f684fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b951e4773888342dc5d29f7ea195f73.bindPopup(popup_3b7654abd52fd536280fbaff848a0dc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_628b971745bad64448bbe220cb58c94c = L.circleMarker(\\n\",\n       \"                [40.5905, 110.0067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a615a1425b8207b0ce9e2d1c04d2c7b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c30f1aab403f42d419856f203dc916f5 = $(`&lt;div id=&quot;html_c30f1aab403f42d419856f203dc916f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0067             latitude:40.5905             PM2_5:45.84818942             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a615a1425b8207b0ce9e2d1c04d2c7b.setContent(html_c30f1aab403f42d419856f203dc916f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_628b971745bad64448bbe220cb58c94c.bindPopup(popup_2a615a1425b8207b0ce9e2d1c04d2c7b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8597e91032d4172c786dd3a8234c47b1 = L.circleMarker(\\n\",\n       \"                [37.3753, 97.3731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8b0f1e9f77488432a11cce8dfde4d21 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52a602d37b713ab8fed20951ff719015 = $(`&lt;div id=&quot;html_52a602d37b713ab8fed20951ff719015&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.3731             latitude:37.3753             PM2_5:28.27777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8b0f1e9f77488432a11cce8dfde4d21.setContent(html_52a602d37b713ab8fed20951ff719015);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8597e91032d4172c786dd3a8234c47b1.bindPopup(popup_a8b0f1e9f77488432a11cce8dfde4d21)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d151bdbce142f2c727c5f699a11ad054 = L.circleMarker(\\n\",\n       \"                [28.6047, 112.3347],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73041c4ccbcc5350d54bad95540b1be3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_614c6a7b3d31c683493ab301d62480d5 = $(`&lt;div id=&quot;html_614c6a7b3d31c683493ab301d62480d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3347             latitude:28.6047             PM2_5:29.37283237             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73041c4ccbcc5350d54bad95540b1be3.setContent(html_614c6a7b3d31c683493ab301d62480d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d151bdbce142f2c727c5f699a11ad054.bindPopup(popup_73041c4ccbcc5350d54bad95540b1be3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c262abfde0b1472df7ada35811a7b30f = L.circleMarker(\\n\",\n       \"                [31.0935, 120.978],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0e1e8bf2fe707ae76bd9af01c577c57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95bf043aa596ab2ae9ddcb0099d8cf3b = $(`&lt;div id=&quot;html_95bf043aa596ab2ae9ddcb0099d8cf3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.978             latitude:31.0935             PM2_5:48.90921788             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0e1e8bf2fe707ae76bd9af01c577c57.setContent(html_95bf043aa596ab2ae9ddcb0099d8cf3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c262abfde0b1472df7ada35811a7b30f.bindPopup(popup_b0e1e8bf2fe707ae76bd9af01c577c57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_750b930f815b9a0f9c742c87101d3150 = L.circleMarker(\\n\",\n       \"                [38.49494, 106.1024],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3459c199c6e70153d58634087b8d8d11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9191002dea2d7b2798a524ed35d2e66 = $(`&lt;div id=&quot;html_f9191002dea2d7b2798a524ed35d2e66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1024             latitude:38.49494             PM2_5:53.02661064             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3459c199c6e70153d58634087b8d8d11.setContent(html_f9191002dea2d7b2798a524ed35d2e66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_750b930f815b9a0f9c742c87101d3150.bindPopup(popup_3459c199c6e70153d58634087b8d8d11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94ac37ec75be18b927874224d3c0d5eb = L.circleMarker(\\n\",\n       \"                [37.062, 114.4854],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd0c01317e8f1e827470040d1d15c8b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92875092a75f73543aa5c47831eba638 = $(`&lt;div id=&quot;html_92875092a75f73543aa5c47831eba638&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4854             latitude:37.062             PM2_5:68.37955182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd0c01317e8f1e827470040d1d15c8b8.setContent(html_92875092a75f73543aa5c47831eba638);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94ac37ec75be18b927874224d3c0d5eb.bindPopup(popup_cd0c01317e8f1e827470040d1d15c8b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51800a6c8c8057c4b573f2901b06c9d1 = L.circleMarker(\\n\",\n       \"                [36.6114, 116.988],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cfa9355baa2ec3928ca71c77a8ce2a0c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6f2874db1d3c8010882069498591ba8 = $(`&lt;div id=&quot;html_e6f2874db1d3c8010882069498591ba8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.988             latitude:36.6114             PM2_5:53.2592068             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cfa9355baa2ec3928ca71c77a8ce2a0c.setContent(html_e6f2874db1d3c8010882069498591ba8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51800a6c8c8057c4b573f2901b06c9d1.bindPopup(popup_cfa9355baa2ec3928ca71c77a8ce2a0c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1f43037c1976da9524f918e769d49fb = L.circleMarker(\\n\",\n       \"                [36.865, 120.537],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2234a64aaefe34af2f714bf01235ff6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c63239504ef4ea9f7e86e1bc0558581 = $(`&lt;div id=&quot;html_6c63239504ef4ea9f7e86e1bc0558581&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.537             latitude:36.865             PM2_5:33.85582822             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2234a64aaefe34af2f714bf01235ff6e.setContent(html_6c63239504ef4ea9f7e86e1bc0558581);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1f43037c1976da9524f918e769d49fb.bindPopup(popup_2234a64aaefe34af2f714bf01235ff6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23a09a48600b5ee6c4ec645a9f71c22d = L.circleMarker(\\n\",\n       \"                [44.5952, 129.5902],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_abb1231ea28f2319d75af97ba1f3a944 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc95c007114c6219d528dc70507b659f = $(`&lt;div id=&quot;html_bc95c007114c6219d528dc70507b659f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.5902             latitude:44.5952             PM2_5:22.29411765             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_abb1231ea28f2319d75af97ba1f3a944.setContent(html_bc95c007114c6219d528dc70507b659f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23a09a48600b5ee6c4ec645a9f71c22d.bindPopup(popup_abb1231ea28f2319d75af97ba1f3a944)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5484305e232331e12d5c0218d01fe4e2 = L.circleMarker(\\n\",\n       \"                [29.1389, 110.48],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_adc7e271c2254639ca2a96e43610e166 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ba841b6ee55f28f81cea5542b41a18f = $(`&lt;div id=&quot;html_5ba841b6ee55f28f81cea5542b41a18f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.48             latitude:29.1389             PM2_5:45.04469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_adc7e271c2254639ca2a96e43610e166.setContent(html_5ba841b6ee55f28f81cea5542b41a18f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5484305e232331e12d5c0218d01fe4e2.bindPopup(popup_adc7e271c2254639ca2a96e43610e166)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_395bafe99aa435f5a7359231786a5e00 = L.circleMarker(\\n\",\n       \"                [27.7231, 109.1794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_723e4c588f84c802afb7f3a2004f2fab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f95fd0ae0f296edea6acad3e148dd278 = $(`&lt;div id=&quot;html_f95fd0ae0f296edea6acad3e148dd278&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.1794             latitude:27.7231             PM2_5:29.31284916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_723e4c588f84c802afb7f3a2004f2fab.setContent(html_f95fd0ae0f296edea6acad3e148dd278);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_395bafe99aa435f5a7359231786a5e00.bindPopup(popup_723e4c588f84c802afb7f3a2004f2fab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3dfdbc1a2bfbd11725b2d8d3b1011c48 = L.circleMarker(\\n\",\n       \"                [25.0925, 104.9022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bea8673cbae63698459319c279f8eac3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb0f9075234cb2762bd0cbadb076f9b2 = $(`&lt;div id=&quot;html_bb0f9075234cb2762bd0cbadb076f9b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9022             latitude:25.0925             PM2_5:16.9625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bea8673cbae63698459319c279f8eac3.setContent(html_bb0f9075234cb2762bd0cbadb076f9b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3dfdbc1a2bfbd11725b2d8d3b1011c48.bindPopup(popup_bea8673cbae63698459319c279f8eac3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0058cbc73663a835c164f51f4fb4bdd0 = L.circleMarker(\\n\",\n       \"                [29.5817, 105.0653],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f965ba7a557f22f3cf897a25fbfb33ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c95e7f3f8c2264528e93d6283507e4c = $(`&lt;div id=&quot;html_7c95e7f3f8c2264528e93d6283507e4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0653             latitude:29.5817             PM2_5:37.25698324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f965ba7a557f22f3cf897a25fbfb33ea.setContent(html_7c95e7f3f8c2264528e93d6283507e4c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0058cbc73663a835c164f51f4fb4bdd0.bindPopup(popup_f965ba7a557f22f3cf897a25fbfb33ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e740573804cf594a3e01b8c39a6e13a = L.circleMarker(\\n\",\n       \"                [26.3003, 106.805],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fca42f6e7bb6085fb0fc5827927979ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c64f20d6cadd30475dc3f6b26d6d7516 = $(`&lt;div id=&quot;html_c64f20d6cadd30475dc3f6b26d6d7516&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.805             latitude:26.3003             PM2_5:34.97844828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fca42f6e7bb6085fb0fc5827927979ac.setContent(html_c64f20d6cadd30475dc3f6b26d6d7516);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e740573804cf594a3e01b8c39a6e13a.bindPopup(popup_fca42f6e7bb6085fb0fc5827927979ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b5ed2b49f1d887e50f3fe4b9e7389435 = L.circleMarker(\\n\",\n       \"                [31.8766, 117.307],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f351e26f213cb42fdf5ab2dfe5b71c13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03042b258a8a164743fea41f9cb76d51 = $(`&lt;div id=&quot;html_03042b258a8a164743fea41f9cb76d51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.307             latitude:31.8766             PM2_5:51.31754875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f351e26f213cb42fdf5ab2dfe5b71c13.setContent(html_03042b258a8a164743fea41f9cb76d51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b5ed2b49f1d887e50f3fe4b9e7389435.bindPopup(popup_f351e26f213cb42fdf5ab2dfe5b71c13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_143065304a17517093ffc713ecbe99f0 = L.circleMarker(\\n\",\n       \"                [42.8328, 93.4961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f39e288e9aa140c86b059bb4f0b7f0f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_366c670733f300ab0dffbdf28bd1a5b4 = $(`&lt;div id=&quot;html_366c670733f300ab0dffbdf28bd1a5b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:93.4961             latitude:42.8328             PM2_5:32.6103352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f39e288e9aa140c86b059bb4f0b7f0f4.setContent(html_366c670733f300ab0dffbdf28bd1a5b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_143065304a17517093ffc713ecbe99f0.bindPopup(popup_f39e288e9aa140c86b059bb4f0b7f0f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa634232613ddbd71be07242f838441d = L.circleMarker(\\n\",\n       \"                [23.475, 111.3178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ec2904ef817d9641422433885fbbb18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8fdc4b83a6503f9381b5fef48e684957 = $(`&lt;div id=&quot;html_8fdc4b83a6503f9381b5fef48e684957&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3178             latitude:23.475             PM2_5:36.53910615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ec2904ef817d9641422433885fbbb18.setContent(html_8fdc4b83a6503f9381b5fef48e684957);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa634232613ddbd71be07242f838441d.bindPopup(popup_9ec2904ef817d9641422433885fbbb18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_779ee5f247586f5c794f1a58b8cd161b = L.circleMarker(\\n\",\n       \"                [36.8088, 118.0482],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f16e76f155a95252696c6872e04bc74e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d630869d36b6af5000bf2d347d2c3f6 = $(`&lt;div id=&quot;html_4d630869d36b6af5000bf2d347d2c3f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0482             latitude:36.8088             PM2_5:53.3245614             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f16e76f155a95252696c6872e04bc74e.setContent(html_4d630869d36b6af5000bf2d347d2c3f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_779ee5f247586f5c794f1a58b8cd161b.bindPopup(popup_f16e76f155a95252696c6872e04bc74e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_02edcbbed92f86cad73d5c84c09abb3e = L.circleMarker(\\n\",\n       \"                [23.105, 113.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9c0d33569a2d3a71e95413a379b5f57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f50db6610930108ef52ef0710008376e = $(`&lt;div id=&quot;html_f50db6610930108ef52ef0710008376e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.261             latitude:23.105             PM2_5:35.15502793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9c0d33569a2d3a71e95413a379b5f57.setContent(html_f50db6610930108ef52ef0710008376e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_02edcbbed92f86cad73d5c84c09abb3e.bindPopup(popup_c9c0d33569a2d3a71e95413a379b5f57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb192bbd37c897301daa05b2ac746d8b = L.circleMarker(\\n\",\n       \"                [26.8956, 112.6211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b400ed799204edcf63bdae66a7a5b0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82951bc2afe615d2f19e1359a331e8ad = $(`&lt;div id=&quot;html_82951bc2afe615d2f19e1359a331e8ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6211             latitude:26.8956             PM2_5:41.88227147             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b400ed799204edcf63bdae66a7a5b0a.setContent(html_82951bc2afe615d2f19e1359a331e8ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb192bbd37c897301daa05b2ac746d8b.bindPopup(popup_1b400ed799204edcf63bdae66a7a5b0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0aad2986296d4e6930a3897d3d12dd1f = L.circleMarker(\\n\",\n       \"                [28.19, 112.9394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03e78282227dfabf545ce17dd7736bc2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2188f8ce820713dba5e2d120a2cfca70 = $(`&lt;div id=&quot;html_2188f8ce820713dba5e2d120a2cfca70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9394             latitude:28.19             PM2_5:52.06601124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03e78282227dfabf545ce17dd7736bc2.setContent(html_2188f8ce820713dba5e2d120a2cfca70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0aad2986296d4e6930a3897d3d12dd1f.bindPopup(popup_03e78282227dfabf545ce17dd7736bc2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2eef6f21ce69f818787495d40a3d606 = L.circleMarker(\\n\",\n       \"                [47.2988, 123.945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e751877e619637878c5d90f3b7f46e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e030816eebca223faea3b0ae8ae6ab75 = $(`&lt;div id=&quot;html_e030816eebca223faea3b0ae8ae6ab75&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.945             latitude:47.2988             PM2_5:34.6183844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e751877e619637878c5d90f3b7f46e2.setContent(html_e030816eebca223faea3b0ae8ae6ab75);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2eef6f21ce69f818787495d40a3d606.bindPopup(popup_1e751877e619637878c5d90f3b7f46e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da66bb25c64ca8ac901f9273d3726f87 = L.circleMarker(\\n\",\n       \"                [29.6535, 116.0174],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2835bb7829bcc6639aad05c7fea4ef48 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07c954c227892a34786fdf0c973b8f57 = $(`&lt;div id=&quot;html_07c954c227892a34786fdf0c973b8f57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0174             latitude:29.6535             PM2_5:37.94428969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2835bb7829bcc6639aad05c7fea4ef48.setContent(html_07c954c227892a34786fdf0c973b8f57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da66bb25c64ca8ac901f9273d3726f87.bindPopup(popup_2835bb7829bcc6639aad05c7fea4ef48)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_536feb58e26d034ac43d51369533193c = L.circleMarker(\\n\",\n       \"                [30.9697, 117.8472],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c939482a736a87a6c1a4f5db873f5457 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_16f70c11e9fc6e1308e1a9273ff9db1b = $(`&lt;div id=&quot;html_16f70c11e9fc6e1308e1a9273ff9db1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8472             latitude:30.9697             PM2_5:53.95621469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c939482a736a87a6c1a4f5db873f5457.setContent(html_16f70c11e9fc6e1308e1a9273ff9db1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_536feb58e26d034ac43d51369533193c.bindPopup(popup_c939482a736a87a6c1a4f5db873f5457)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20293d4a790bcf52f8f958178446c95b = L.circleMarker(\\n\",\n       \"                [34.3622, 107.2386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7e8d4c1e8a9b744e3c5d657156473e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_163fc477a0af9c64d7ff725aa7d74ec4 = $(`&lt;div id=&quot;html_163fc477a0af9c64d7ff725aa7d74ec4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.2386             latitude:34.3622             PM2_5:50.03760446             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7e8d4c1e8a9b744e3c5d657156473e3.setContent(html_163fc477a0af9c64d7ff725aa7d74ec4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20293d4a790bcf52f8f958178446c95b.bindPopup(popup_e7e8d4c1e8a9b744e3c5d657156473e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_762dd3dca257ca1807f73633225502a4 = L.circleMarker(\\n\",\n       \"                [30.2747, 120.063],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a2c0a40c9865f26a4ee0cbe59c7d61b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58901fd757719e1b9c93198258d15d10 = $(`&lt;div id=&quot;html_58901fd757719e1b9c93198258d15d10&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.063             latitude:30.2747             PM2_5:37.63788301             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a2c0a40c9865f26a4ee0cbe59c7d61b.setContent(html_58901fd757719e1b9c93198258d15d10);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_762dd3dca257ca1807f73633225502a4.bindPopup(popup_5a2c0a40c9865f26a4ee0cbe59c7d61b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f09c979eddac9238457c82346a492f0 = L.circleMarker(\\n\",\n       \"                [30.2756, 118.1371],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_966d55a0762650f751a59aaed853ad8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f7d2b65bcc101cd486b4b1e3190d50d = $(`&lt;div id=&quot;html_7f7d2b65bcc101cd486b4b1e3190d50d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1371             latitude:30.2756             PM2_5:23.8575419             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_966d55a0762650f751a59aaed853ad8f.setContent(html_7f7d2b65bcc101cd486b4b1e3190d50d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f09c979eddac9238457c82346a492f0.bindPopup(popup_966d55a0762650f751a59aaed853ad8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fcf0d551fe13fe25975c1d5e6eab49bc = L.circleMarker(\\n\",\n       \"                [33.627, 119.0122],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_14766fb34c6b2536842d012c793d509e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1b8b69c508e66d5f7a31a2a2508a0fe = $(`&lt;div id=&quot;html_c1b8b69c508e66d5f7a31a2a2508a0fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0122             latitude:33.627             PM2_5:49.44707521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_14766fb34c6b2536842d012c793d509e.setContent(html_c1b8b69c508e66d5f7a31a2a2508a0fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fcf0d551fe13fe25975c1d5e6eab49bc.bindPopup(popup_14766fb34c6b2536842d012c793d509e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1da581f8f1a98ad817e684555839735f = L.circleMarker(\\n\",\n       \"                [23.1617, 112.565],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4e95a2d7c9ea2def7035e9b4fb98057 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_427a4119e4512d5d210dfea715f0d39d = $(`&lt;div id=&quot;html_427a4119e4512d5d210dfea715f0d39d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.565             latitude:23.1617             PM2_5:39.39495798             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4e95a2d7c9ea2def7035e9b4fb98057.setContent(html_427a4119e4512d5d210dfea715f0d39d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1da581f8f1a98ad817e684555839735f.bindPopup(popup_b4e95a2d7c9ea2def7035e9b4fb98057)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3fae947c88f0e7ffc7f74686356d2048 = L.circleMarker(\\n\",\n       \"                [37.374, 120.399],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8333fb6a34726a6af23479b8f9070ce6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43262a0d9cd9bc12f3b82c26600fedc2 = $(`&lt;div id=&quot;html_43262a0d9cd9bc12f3b82c26600fedc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.399             latitude:37.374             PM2_5:28.94929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8333fb6a34726a6af23479b8f9070ce6.setContent(html_43262a0d9cd9bc12f3b82c26600fedc2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3fae947c88f0e7ffc7f74686356d2048.bindPopup(popup_8333fb6a34726a6af23479b8f9070ce6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4ca6c666d227ed6779a3e76ef1984da = L.circleMarker(\\n\",\n       \"                [40.1097, 113.3819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b58fa17f23acf9e9b13860fe208f4da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7e850d48d5067b49c06c5e0de1bd192 = $(`&lt;div id=&quot;html_b7e850d48d5067b49c06c5e0de1bd192&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3819             latitude:40.1097             PM2_5:39.15384615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b58fa17f23acf9e9b13860fe208f4da.setContent(html_b7e850d48d5067b49c06c5e0de1bd192);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4ca6c666d227ed6779a3e76ef1984da.bindPopup(popup_3b58fa17f23acf9e9b13860fe208f4da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6fd56d716729a00d57f293f075d50bdb = L.circleMarker(\\n\",\n       \"                [43.6801, 122.2532],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8acf7433ca6c2c862a42a100c86331a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c8907f35760c94f35471e14e6263f8a6 = $(`&lt;div id=&quot;html_c8907f35760c94f35471e14e6263f8a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2532             latitude:43.6801             PM2_5:20.17887324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8acf7433ca6c2c862a42a100c86331a7.setContent(html_c8907f35760c94f35471e14e6263f8a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6fd56d716729a00d57f293f075d50bdb.bindPopup(popup_8acf7433ca6c2c862a42a100c86331a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6aa474992560a408a8e1fa7a6f7325c2 = L.circleMarker(\\n\",\n       \"                [28.6428, 112.4067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19d3a7d8420af7acec230ce8fac152bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecf1d1b44cc51a70aa6e228e883bf481 = $(`&lt;div id=&quot;html_ecf1d1b44cc51a70aa6e228e883bf481&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4067             latitude:28.6428             PM2_5:41.83333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19d3a7d8420af7acec230ce8fac152bb.setContent(html_ecf1d1b44cc51a70aa6e228e883bf481);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6aa474992560a408a8e1fa7a6f7325c2.bindPopup(popup_19d3a7d8420af7acec230ce8fac152bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9a0792fed6df083e427e48dccbbbb21 = L.circleMarker(\\n\",\n       \"                [27.8528, 113.13],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfeae5d5d4542ac70e183a0b2c22b80d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59e9dc9fd03734147c9d592bb0b2a9ab = $(`&lt;div id=&quot;html_59e9dc9fd03734147c9d592bb0b2a9ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.13             latitude:27.8528             PM2_5:43.01404494             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfeae5d5d4542ac70e183a0b2c22b80d.setContent(html_59e9dc9fd03734147c9d592bb0b2a9ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9a0792fed6df083e427e48dccbbbb21.bindPopup(popup_dfeae5d5d4542ac70e183a0b2c22b80d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e06248b02856f3af1456d0464472fdfe = L.circleMarker(\\n\",\n       \"                [34.5653, 105.8614],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7db1b74204b1e50cf108adafd42bba10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1eebd1f26a245220e434f22869d5166 = $(`&lt;div id=&quot;html_e1eebd1f26a245220e434f22869d5166&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8614             latitude:34.5653             PM2_5:34.33286119             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7db1b74204b1e50cf108adafd42bba10.setContent(html_e1eebd1f26a245220e434f22869d5166);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e06248b02856f3af1456d0464472fdfe.bindPopup(popup_7db1b74204b1e50cf108adafd42bba10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdd3cd4eb09b5d4c931d70a9505ad990 = L.circleMarker(\\n\",\n       \"                [44.1564, 87.9897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_95594e9688c264a1a70381f49aaea859 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e5449ca8716ce3669bd138e323ecb39 = $(`&lt;div id=&quot;html_0e5449ca8716ce3669bd138e323ecb39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.9897             latitude:44.1564             PM2_5:10.12539185             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_95594e9688c264a1a70381f49aaea859.setContent(html_0e5449ca8716ce3669bd138e323ecb39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdd3cd4eb09b5d4c931d70a9505ad990.bindPopup(popup_95594e9688c264a1a70381f49aaea859)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef088da49f0c7c7c670d260730a4f266 = L.circleMarker(\\n\",\n       \"                [28.5808, 112.3458],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ded2cf0655032a2672a5bed1d3ad566b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4205fd4e2605ece259d6cc50e71147d0 = $(`&lt;div id=&quot;html_4205fd4e2605ece259d6cc50e71147d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3458             latitude:28.5808             PM2_5:44.30736544             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ded2cf0655032a2672a5bed1d3ad566b.setContent(html_4205fd4e2605ece259d6cc50e71147d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef088da49f0c7c7c670d260730a4f266.bindPopup(popup_ded2cf0655032a2672a5bed1d3ad566b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5b62ff903d9efda9231afab1371f48d = L.circleMarker(\\n\",\n       \"                [23.3667, 116.6794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bdc191c858197f3817f4c51fba724c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef869b06c8902935dee961ae8bfbf1a0 = $(`&lt;div id=&quot;html_ef869b06c8902935dee961ae8bfbf1a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6794             latitude:23.3667             PM2_5:24.04929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bdc191c858197f3817f4c51fba724c6.setContent(html_ef869b06c8902935dee961ae8bfbf1a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5b62ff903d9efda9231afab1371f48d.bindPopup(popup_0bdc191c858197f3817f4c51fba724c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3968182361a16ddc3e91e663448e984d = L.circleMarker(\\n\",\n       \"                [34.2417, 117.192],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c06f7083c8f3588ffd92e4aea4fd2fdf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c025378f24212bd9d5f0dd70dc0cadd6 = $(`&lt;div id=&quot;html_c025378f24212bd9d5f0dd70dc0cadd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.192             latitude:34.2417             PM2_5:62.62464986             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c06f7083c8f3588ffd92e4aea4fd2fdf.setContent(html_c025378f24212bd9d5f0dd70dc0cadd6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3968182361a16ddc3e91e663448e984d.bindPopup(popup_c06f7083c8f3588ffd92e4aea4fd2fdf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a860ca5f2fc31345f9968306357fddc = L.circleMarker(\\n\",\n       \"                [37.9854, 112.549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a69e3996cda9d6194f599f38b7c103c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7f196e61c2a6cc00eae3a0091e603ac = $(`&lt;div id=&quot;html_f7f196e61c2a6cc00eae3a0091e603ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.549             latitude:37.9854             PM2_5:57.60422535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a69e3996cda9d6194f599f38b7c103c.setContent(html_f7f196e61c2a6cc00eae3a0091e603ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a860ca5f2fc31345f9968306357fddc.bindPopup(popup_6a69e3996cda9d6194f599f38b7c103c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a67d4bc5edac4afcc0cf1a01a0f0374 = L.circleMarker(\\n\",\n       \"                [28.2053, 113.0792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6fee2742c8b2fbb45fcd9d80f7ef735 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1b9d093df55819ceddafae7b935ea6a = $(`&lt;div id=&quot;html_f1b9d093df55819ceddafae7b935ea6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0792             latitude:28.2053             PM2_5:48.97075209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6fee2742c8b2fbb45fcd9d80f7ef735.setContent(html_f1b9d093df55819ceddafae7b935ea6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a67d4bc5edac4afcc0cf1a01a0f0374.bindPopup(popup_d6fee2742c8b2fbb45fcd9d80f7ef735)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c1d7bb798bffe6ea6b446c944b8c465 = L.circleMarker(\\n\",\n       \"                [25.8471, 114.8905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_536a81a900e92e29b68e495459a0af17 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9374f9c8a084d1c62c2bf76afebb867c = $(`&lt;div id=&quot;html_9374f9c8a084d1c62c2bf76afebb867c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8905             latitude:25.8471             PM2_5:45.81320225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_536a81a900e92e29b68e495459a0af17.setContent(html_9374f9c8a084d1c62c2bf76afebb867c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c1d7bb798bffe6ea6b446c944b8c465.bindPopup(popup_536a81a900e92e29b68e495459a0af17)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f17e9118392eff117ee57348fba1403 = L.circleMarker(\\n\",\n       \"                [23.3594, 104.2533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd195d9d4b42e3cd658192edac050243 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77f10f66cfa4937d4ad1be40e36ec997 = $(`&lt;div id=&quot;html_77f10f66cfa4937d4ad1be40e36ec997&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.2533             latitude:23.3594             PM2_5:18.79008746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd195d9d4b42e3cd658192edac050243.setContent(html_77f10f66cfa4937d4ad1be40e36ec997);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f17e9118392eff117ee57348fba1403.bindPopup(popup_fd195d9d4b42e3cd658192edac050243)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c3776f3e4db58daceca152feedab0a1 = L.circleMarker(\\n\",\n       \"                [32.0572, 118.749],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5f72729de665d61d6768e26066ef47e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_747ed872f45f6191a296d94e79c73d3f = $(`&lt;div id=&quot;html_747ed872f45f6191a296d94e79c73d3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.749             latitude:32.0572             PM2_5:39.61416185             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5f72729de665d61d6768e26066ef47e.setContent(html_747ed872f45f6191a296d94e79c73d3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c3776f3e4db58daceca152feedab0a1.bindPopup(popup_d5f72729de665d61d6768e26066ef47e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbd620c4d8f88d65b174246683bd0f66 = L.circleMarker(\\n\",\n       \"                [30.1259, 104.6294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45cdbb4facb2ec1aa8e1d7448c0a44f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_694d8f5d782cbffe147139bac8e37aba = $(`&lt;div id=&quot;html_694d8f5d782cbffe147139bac8e37aba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6294             latitude:30.1259             PM2_5:38.15571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45cdbb4facb2ec1aa8e1d7448c0a44f6.setContent(html_694d8f5d782cbffe147139bac8e37aba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbd620c4d8f88d65b174246683bd0f66.bindPopup(popup_45cdbb4facb2ec1aa8e1d7448c0a44f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fe92e3167bf8488a9a10aeae3d5a925 = L.circleMarker(\\n\",\n       \"                [25.4792, 118.981],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_853ccaaebfcd32a9c2faec487f68f73c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dccdb8f6895cdcface311f06981b6e3e = $(`&lt;div id=&quot;html_dccdb8f6895cdcface311f06981b6e3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.981             latitude:25.4792             PM2_5:28.92458101             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_853ccaaebfcd32a9c2faec487f68f73c.setContent(html_dccdb8f6895cdcface311f06981b6e3e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fe92e3167bf8488a9a10aeae3d5a925.bindPopup(popup_853ccaaebfcd32a9c2faec487f68f73c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea232b9f0a5ec7fe052ee789a2fe70ac = L.circleMarker(\\n\",\n       \"                [34.3474, 108.935],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5030944bb0ca9f3aa149b0d7a63eb221 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6030ce58ee2c30ab4f5d8da3d790c256 = $(`&lt;div id=&quot;html_6030ce58ee2c30ab4f5d8da3d790c256&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.935             latitude:34.3474             PM2_5:65.3767313             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5030944bb0ca9f3aa149b0d7a63eb221.setContent(html_6030ce58ee2c30ab4f5d8da3d790c256);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea232b9f0a5ec7fe052ee789a2fe70ac.bindPopup(popup_5030944bb0ca9f3aa149b0d7a63eb221)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64bd611edde8f8311a4f78e07f19d72c = L.circleMarker(\\n\",\n       \"                [34.7772, 111.1928],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a75ae5e05c11c65f77f1af19eea45d79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e8d772da0b0ee0179c0a3f7aa147cb5 = $(`&lt;div id=&quot;html_4e8d772da0b0ee0179c0a3f7aa147cb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1928             latitude:34.7772             PM2_5:55.32022472             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a75ae5e05c11c65f77f1af19eea45d79.setContent(html_4e8d772da0b0ee0179c0a3f7aa147cb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64bd611edde8f8311a4f78e07f19d72c.bindPopup(popup_a75ae5e05c11c65f77f1af19eea45d79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c4f2a8814a8ce9b96d4c563314bcb1ae = L.circleMarker(\\n\",\n       \"                [34.9058, 108.9344],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e331f0ae84c06641b56361064c8fa83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5567ecc3b1f82fd4ab6780091628d0c = $(`&lt;div id=&quot;html_e5567ecc3b1f82fd4ab6780091628d0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.9344             latitude:34.9058             PM2_5:49.65266106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e331f0ae84c06641b56361064c8fa83.setContent(html_e5567ecc3b1f82fd4ab6780091628d0c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c4f2a8814a8ce9b96d4c563314bcb1ae.bindPopup(popup_3e331f0ae84c06641b56361064c8fa83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee24255d863ad4d0952c0a63dfd35dc0 = L.circleMarker(\\n\",\n       \"                [37.7124, 112.469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d7ac727a0dd5d738910bbab0081a978 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1c22a4b6f813186705ce15374f571d1 = $(`&lt;div id=&quot;html_a1c22a4b6f813186705ce15374f571d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.469             latitude:37.7124             PM2_5:76.31481481             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d7ac727a0dd5d738910bbab0081a978.setContent(html_a1c22a4b6f813186705ce15374f571d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee24255d863ad4d0952c0a63dfd35dc0.bindPopup(popup_5d7ac727a0dd5d738910bbab0081a978)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59d105d833c5c4068338bd64d9705588 = L.circleMarker(\\n\",\n       \"                [23.4794, 111.26],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_302c72d87af326b9607ca549b7780c4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b974026856065466180351f2f5c05aa = $(`&lt;div id=&quot;html_3b974026856065466180351f2f5c05aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.26             latitude:23.4794             PM2_5:40.91876751             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_302c72d87af326b9607ca549b7780c4a.setContent(html_3b974026856065466180351f2f5c05aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59d105d833c5c4068338bd64d9705588.bindPopup(popup_302c72d87af326b9607ca549b7780c4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e129ca35c8b888a9c4543951bb0db04 = L.circleMarker(\\n\",\n       \"                [28.7989, 104.6789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b18124a06b5a91368a7576f4f8a86118 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73d4987f1ebd276e8b66840ab354d7de = $(`&lt;div id=&quot;html_73d4987f1ebd276e8b66840ab354d7de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6789             latitude:28.7989             PM2_5:54.35955056             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b18124a06b5a91368a7576f4f8a86118.setContent(html_73d4987f1ebd276e8b66840ab354d7de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e129ca35c8b888a9c4543951bb0db04.bindPopup(popup_b18124a06b5a91368a7576f4f8a86118)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa49a0197d398726d5f9c1ac7ae9fec8 = L.circleMarker(\\n\",\n       \"                [40.9359, 117.963],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c64b6d90c5676ba19c00a1f238be884 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da6db02a3d1c5777e3dc869417a60a8c = $(`&lt;div id=&quot;html_da6db02a3d1c5777e3dc869417a60a8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.963             latitude:40.9359             PM2_5:32.35972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c64b6d90c5676ba19c00a1f238be884.setContent(html_da6db02a3d1c5777e3dc869417a60a8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa49a0197d398726d5f9c1ac7ae9fec8.bindPopup(popup_8c64b6d90c5676ba19c00a1f238be884)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c298a81536d3892a9b7cac0d4e083cea = L.circleMarker(\\n\",\n       \"                [30.6578, 104.054],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2ba64922179dce219ed1914864daf26 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3f30101a95522449ea9db2e667c45ce = $(`&lt;div id=&quot;html_f3f30101a95522449ea9db2e667c45ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.054             latitude:30.6578             PM2_5:56.91292135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2ba64922179dce219ed1914864daf26.setContent(html_f3f30101a95522449ea9db2e667c45ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c298a81536d3892a9b7cac0d4e083cea.bindPopup(popup_a2ba64922179dce219ed1914864daf26)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f569438e5a382cbfd671e2dcb2c9afc = L.circleMarker(\\n\",\n       \"                [48.4658, 129.4942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3617e2b6104eb7f674c577ddec1ba3fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a61d81a9a62ba72658e2608caff6214 = $(`&lt;div id=&quot;html_3a61d81a9a62ba72658e2608caff6214&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.4942             latitude:48.4658             PM2_5:14.43993994             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3617e2b6104eb7f674c577ddec1ba3fd.setContent(html_3a61d81a9a62ba72658e2608caff6214);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f569438e5a382cbfd671e2dcb2c9afc.bindPopup(popup_3617e2b6104eb7f674c577ddec1ba3fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0b1997212780f3a64b7c5bf685befcc = L.circleMarker(\\n\",\n       \"                [33.3681, 120.1631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f496251441ee9c57fe6819b5223d30c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b278473ccad2eff5aa1816a3d5704358 = $(`&lt;div id=&quot;html_b278473ccad2eff5aa1816a3d5704358&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1631             latitude:33.3681             PM2_5:40.77653631             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f496251441ee9c57fe6819b5223d30c2.setContent(html_b278473ccad2eff5aa1816a3d5704358);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0b1997212780f3a64b7c5bf685befcc.bindPopup(popup_f496251441ee9c57fe6819b5223d30c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff14372c51cef5d295be63d02f68f068 = L.circleMarker(\\n\",\n       \"                [30.65638889, 104.0238889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c96bcbfe43e9529fbe2b10ed87f7606 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e2895a9eba91fab6ccccc4897a1a58a = $(`&lt;div id=&quot;html_2e2895a9eba91fab6ccccc4897a1a58a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.0238889             latitude:30.65638889             PM2_5:56.7150838             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c96bcbfe43e9529fbe2b10ed87f7606.setContent(html_2e2895a9eba91fab6ccccc4897a1a58a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff14372c51cef5d295be63d02f68f068.bindPopup(popup_8c96bcbfe43e9529fbe2b10ed87f7606)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d8eae86973392608a542fea9b5a01aef = L.circleMarker(\\n\",\n       \"                [26.5928, 101.5769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec0cc0c82086c8745bdfd9d26e50d665 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22cd66a70a804ad8785c42995f72d9f2 = $(`&lt;div id=&quot;html_22cd66a70a804ad8785c42995f72d9f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.5769             latitude:26.5928             PM2_5:36.39972145             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec0cc0c82086c8745bdfd9d26e50d665.setContent(html_22cd66a70a804ad8785c42995f72d9f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d8eae86973392608a542fea9b5a01aef.bindPopup(popup_ec0cc0c82086c8745bdfd9d26e50d665)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_022fef649a0f67528c9630b37d4ee141 = L.circleMarker(\\n\",\n       \"                [32.645, 117.0083],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e50ef4a3d51347d3cd6a412207299d0c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90c871c03f7b6721b0d4aa28a5f3e51d = $(`&lt;div id=&quot;html_90c871c03f7b6721b0d4aa28a5f3e51d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0083             latitude:32.645             PM2_5:60.11376404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e50ef4a3d51347d3cd6a412207299d0c.setContent(html_90c871c03f7b6721b0d4aa28a5f3e51d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_022fef649a0f67528c9630b37d4ee141.bindPopup(popup_e50ef4a3d51347d3cd6a412207299d0c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc6ee35fcb8dd94a6e4e3c393f21cc87 = L.circleMarker(\\n\",\n       \"                [41.8864, 124.0878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e3d515be194d382fd1be14031209c8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_34d4ff880842ac0483009ae71f6c43bd = $(`&lt;div id=&quot;html_34d4ff880842ac0483009ae71f6c43bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.0878             latitude:41.8864             PM2_5:24.38515406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e3d515be194d382fd1be14031209c8f.setContent(html_34d4ff880842ac0483009ae71f6c43bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc6ee35fcb8dd94a6e4e3c393f21cc87.bindPopup(popup_4e3d515be194d382fd1be14031209c8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba3b8790514587348e154661e4b4b732 = L.circleMarker(\\n\",\n       \"                [50.4269, 124.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b05b707a5b7e8e2b503b42ebc01e7ecf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58ab796c8c9c226ed372c1955777f0ab = $(`&lt;div id=&quot;html_58ab796c8c9c226ed372c1955777f0ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.1186             latitude:50.4269             PM2_5:16.56714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b05b707a5b7e8e2b503b42ebc01e7ecf.setContent(html_58ab796c8c9c226ed372c1955777f0ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba3b8790514587348e154661e4b4b732.bindPopup(popup_b05b707a5b7e8e2b503b42ebc01e7ecf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5306d32f3794cf67c89e8d8ab4275d89 = L.circleMarker(\\n\",\n       \"                [23.7569, 114.6778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f6b0841e870d5b25e83b86c954d31b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c89e4e64386b031d03eadaa0586e0a0 = $(`&lt;div id=&quot;html_2c89e4e64386b031d03eadaa0586e0a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6778             latitude:23.7569             PM2_5:27.04225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f6b0841e870d5b25e83b86c954d31b3.setContent(html_2c89e4e64386b031d03eadaa0586e0a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5306d32f3794cf67c89e8d8ab4275d89.bindPopup(popup_0f6b0841e870d5b25e83b86c954d31b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba407997b6f4b54aebe6b696d2618846 = L.circleMarker(\\n\",\n       \"                [33.975, 116.8008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e3dec7d99059577d6694d0e08e3b4d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_120e4e166f80edff364e16ee7d7a1ba6 = $(`&lt;div id=&quot;html_120e4e166f80edff364e16ee7d7a1ba6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8008             latitude:33.975             PM2_5:53.05138889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e3dec7d99059577d6694d0e08e3b4d2.setContent(html_120e4e166f80edff364e16ee7d7a1ba6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba407997b6f4b54aebe6b696d2618846.bindPopup(popup_2e3dec7d99059577d6694d0e08e3b4d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e72989977cf1e57eb4e61f51b557be87 = L.circleMarker(\\n\",\n       \"                [31.955, 119.146],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c1d40b522971c10b497df01df21329b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a84c74dcba6fd34d583fbc581e2019cd = $(`&lt;div id=&quot;html_a84c74dcba6fd34d583fbc581e2019cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.146             latitude:31.955             PM2_5:48.35190616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c1d40b522971c10b497df01df21329b.setContent(html_a84c74dcba6fd34d583fbc581e2019cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e72989977cf1e57eb4e61f51b557be87.bindPopup(popup_4c1d40b522971c10b497df01df21329b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0532c975d0458a4383803ca5418eac7 = L.circleMarker(\\n\",\n       \"                [32.0314, 118.803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2e8c8689545487b26a85e54f4e57815 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6c46f31e103c4f93aeaf26b37c30b85 = $(`&lt;div id=&quot;html_e6c46f31e103c4f93aeaf26b37c30b85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.803             latitude:32.0314             PM2_5:47.42318436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2e8c8689545487b26a85e54f4e57815.setContent(html_e6c46f31e103c4f93aeaf26b37c30b85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0532c975d0458a4383803ca5418eac7.bindPopup(popup_e2e8c8689545487b26a85e54f4e57815)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c6e61d5c017db324feac531100844f9 = L.circleMarker(\\n\",\n       \"                [29.8906, 121.554],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15efd3f84fc7a2cb5ea4d692972f1bad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3479b287262d50c36c20e2309c85770 = $(`&lt;div id=&quot;html_b3479b287262d50c36c20e2309c85770&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.554             latitude:29.8906             PM2_5:36.43098592             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15efd3f84fc7a2cb5ea4d692972f1bad.setContent(html_b3479b287262d50c36c20e2309c85770);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c6e61d5c017db324feac531100844f9.bindPopup(popup_15efd3f84fc7a2cb5ea4d692972f1bad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_797d546e9d67ba39cacb1e46431ae170 = L.circleMarker(\\n\",\n       \"                [31.955, 119.18],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1b810bd33f7aa91930eaf87ed7e2be6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19577a892d748013a50f3b22af5a738a = $(`&lt;div id=&quot;html_19577a892d748013a50f3b22af5a738a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.18             latitude:31.955             PM2_5:40.82033426             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1b810bd33f7aa91930eaf87ed7e2be6.setContent(html_19577a892d748013a50f3b22af5a738a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_797d546e9d67ba39cacb1e46431ae170.bindPopup(popup_c1b810bd33f7aa91930eaf87ed7e2be6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d93e276c6c5a7345f264070d4362e341 = L.circleMarker(\\n\",\n       \"                [34.7837, 117.2852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6a444ca0ab9e30cea7c40e28f2c30bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9911a2cadc4affacd0e42a58e5b2ac50 = $(`&lt;div id=&quot;html_9911a2cadc4affacd0e42a58e5b2ac50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2852             latitude:34.7837             PM2_5:60.64944134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6a444ca0ab9e30cea7c40e28f2c30bc.setContent(html_9911a2cadc4affacd0e42a58e5b2ac50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d93e276c6c5a7345f264070d4362e341.bindPopup(popup_d6a444ca0ab9e30cea7c40e28f2c30bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9566e85aa21e9e4d750bc76285bb9790 = L.circleMarker(\\n\",\n       \"                [32.4867, 119.9],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07b010b55cbd1b699508bfa37fd017d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e7128458a426a333fb9f8ac5927dd15 = $(`&lt;div id=&quot;html_9e7128458a426a333fb9f8ac5927dd15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9             latitude:32.4867             PM2_5:45.3875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07b010b55cbd1b699508bfa37fd017d7.setContent(html_9e7128458a426a333fb9f8ac5927dd15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9566e85aa21e9e4d750bc76285bb9790.bindPopup(popup_07b010b55cbd1b699508bfa37fd017d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ba4e24bbcae13ab9a5e11a096991b83 = L.circleMarker(\\n\",\n       \"                [32.88922222, 115.7838889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74c9ac4879f0bc98609e9106d625fb1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_288199265258e59c7637055fb34c0aac = $(`&lt;div id=&quot;html_288199265258e59c7637055fb34c0aac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.7838889             latitude:32.88922222             PM2_5:52.57485876             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74c9ac4879f0bc98609e9106d625fb1d.setContent(html_288199265258e59c7637055fb34c0aac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ba4e24bbcae13ab9a5e11a096991b83.bindPopup(popup_74c9ac4879f0bc98609e9106d625fb1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbe5db4007869356936bd319870d2a34 = L.circleMarker(\\n\",\n       \"                [29.33972, 104.7228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32bd25aa2b4e426e3de6de93cf292c0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72c7e332a1a19d1790eada414014fb1d = $(`&lt;div id=&quot;html_72c7e332a1a19d1790eada414014fb1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7228             latitude:29.33972             PM2_5:66.02941176             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32bd25aa2b4e426e3de6de93cf292c0d.setContent(html_72c7e332a1a19d1790eada414014fb1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbe5db4007869356936bd319870d2a34.bindPopup(popup_32bd25aa2b4e426e3de6de93cf292c0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24795a3c4ee7d5f9b25e7bb0e7a7fa43 = L.circleMarker(\\n\",\n       \"                [28.095, 116.9622],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31362dbd03b02b68e9adbcc0d6ab3683 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1137e9a31f157efc75815fc090b23d4 = $(`&lt;div id=&quot;html_b1137e9a31f157efc75815fc090b23d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9622             latitude:28.095             PM2_5:29.73167155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31362dbd03b02b68e9adbcc0d6ab3683.setContent(html_b1137e9a31f157efc75815fc090b23d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24795a3c4ee7d5f9b25e7bb0e7a7fa43.bindPopup(popup_31362dbd03b02b68e9adbcc0d6ab3683)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b11d7529ae4509e5aadbd9325651f9e = L.circleMarker(\\n\",\n       \"                [42.2556, 118.8789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c079583222c007d59b1d1323f38bbe25 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4ea3ac71f5279639b07d13f045bb3a8 = $(`&lt;div id=&quot;html_f4ea3ac71f5279639b07d13f045bb3a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.8789             latitude:42.2556             PM2_5:23.22576177             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c079583222c007d59b1d1323f38bbe25.setContent(html_f4ea3ac71f5279639b07d13f045bb3a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b11d7529ae4509e5aadbd9325651f9e.bindPopup(popup_c079583222c007d59b1d1323f38bbe25)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9707406b34f7b2956b56798a53a5e2fc = L.circleMarker(\\n\",\n       \"                [41.7156, 125.9361],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38cc2ae757d823c3a7056d2001a24e32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_649dfffd7567136519b734243c4ae627 = $(`&lt;div id=&quot;html_649dfffd7567136519b734243c4ae627&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.9361             latitude:41.7156             PM2_5:31.46935933             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38cc2ae757d823c3a7056d2001a24e32.setContent(html_649dfffd7567136519b734243c4ae627);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9707406b34f7b2956b56798a53a5e2fc.bindPopup(popup_38cc2ae757d823c3a7056d2001a24e32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b5565eecb42e874492149a2f27c4626 = L.circleMarker(\\n\",\n       \"                [28.9026, 105.4436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9a74a0562312f6258875bf30a24659c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b37370520b2b4cb8ae3ade7ad21fad9 = $(`&lt;div id=&quot;html_1b37370520b2b4cb8ae3ade7ad21fad9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4436             latitude:28.9026             PM2_5:45.04634831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9a74a0562312f6258875bf30a24659c.setContent(html_1b37370520b2b4cb8ae3ade7ad21fad9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b5565eecb42e874492149a2f27c4626.bindPopup(popup_f9a74a0562312f6258875bf30a24659c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f9ed7931820e484a3cd89040e2ad63a = L.circleMarker(\\n\",\n       \"                [30.9892, 112.1969],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09b2c3c7fb411dc6be3c36835720c269 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2b1f15cc04af5461791e866ae4e37b9 = $(`&lt;div id=&quot;html_c2b1f15cc04af5461791e866ae4e37b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1969             latitude:30.9892             PM2_5:50.80113636             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09b2c3c7fb411dc6be3c36835720c269.setContent(html_c2b1f15cc04af5461791e866ae4e37b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f9ed7931820e484a3cd89040e2ad63a.bindPopup(popup_09b2c3c7fb411dc6be3c36835720c269)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f6aced28a484407670c5d9f4dfc173a = L.circleMarker(\\n\",\n       \"                [30.3175, 112.2551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e61682c736922ef77a1bb8c157748010 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_673c607ca294f3c66d77e7ff84e91701 = $(`&lt;div id=&quot;html_673c607ca294f3c66d77e7ff84e91701&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2551             latitude:30.3175             PM2_5:53.66573816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e61682c736922ef77a1bb8c157748010.setContent(html_673c607ca294f3c66d77e7ff84e91701);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f6aced28a484407670c5d9f4dfc173a.bindPopup(popup_e61682c736922ef77a1bb8c157748010)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c8a9a3b1e5d83262075c05e93a6e72b = L.circleMarker(\\n\",\n       \"                [31.3008, 121.467],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d41254641f119f0c1bb8aae1fb02d222 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aea8bbca01287ccaa3e613024a514ded = $(`&lt;div id=&quot;html_aea8bbca01287ccaa3e613024a514ded&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.467             latitude:31.3008             PM2_5:38.97262248             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d41254641f119f0c1bb8aae1fb02d222.setContent(html_aea8bbca01287ccaa3e613024a514ded);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c8a9a3b1e5d83262075c05e93a6e72b.bindPopup(popup_d41254641f119f0c1bb8aae1fb02d222)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30bfcb033f83e9fe7e614a6d6018809c = L.circleMarker(\\n\",\n       \"                [37.0533, 114.5261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2701e1c8df2f196648c23cccf18ca10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9d27cb22f709bcecaa1362d05afdae7 = $(`&lt;div id=&quot;html_b9d27cb22f709bcecaa1362d05afdae7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5261             latitude:37.0533             PM2_5:69.78910615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2701e1c8df2f196648c23cccf18ca10.setContent(html_b9d27cb22f709bcecaa1362d05afdae7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30bfcb033f83e9fe7e614a6d6018809c.bindPopup(popup_f2701e1c8df2f196648c23cccf18ca10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_110cbd2517c917c3983703bdf89a7425 = L.circleMarker(\\n\",\n       \"                [38.3254, 116.8584],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ccb9d31e4be21eb286c123579fe4d65c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9befb08152e5385c68119d4a1f8f93d = $(`&lt;div id=&quot;html_f9befb08152e5385c68119d4a1f8f93d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8584             latitude:38.3254             PM2_5:47.80055402             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ccb9d31e4be21eb286c123579fe4d65c.setContent(html_f9befb08152e5385c68119d4a1f8f93d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_110cbd2517c917c3983703bdf89a7425.bindPopup(popup_ccb9d31e4be21eb286c123579fe4d65c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40cd36f6cefaea4deb763ccce42ea73d = L.circleMarker(\\n\",\n       \"                [35.213, 113.227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e257ce6f34f7714f8452c0bbf58ad91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb2a172efc2fc9986e819574d402c552 = $(`&lt;div id=&quot;html_eb2a172efc2fc9986e819574d402c552&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.227             latitude:35.213             PM2_5:66.43888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e257ce6f34f7714f8452c0bbf58ad91.setContent(html_eb2a172efc2fc9986e819574d402c552);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40cd36f6cefaea4deb763ccce42ea73d.bindPopup(popup_8e257ce6f34f7714f8452c0bbf58ad91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2cc9dec253892d5ba265279e66b4451c = L.circleMarker(\\n\",\n       \"                [33.8715, 109.9154],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3016826560c3cc0e0e2fb6088e525d1c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4806eb063f1da5b75e8063894a93f8f3 = $(`&lt;div id=&quot;html_4806eb063f1da5b75e8063894a93f8f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9154             latitude:33.8715             PM2_5:33.87955182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3016826560c3cc0e0e2fb6088e525d1c.setContent(html_4806eb063f1da5b75e8063894a93f8f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2cc9dec253892d5ba265279e66b4451c.bindPopup(popup_3016826560c3cc0e0e2fb6088e525d1c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3387d261dedb665a54d6820e4424ca7d = L.circleMarker(\\n\",\n       \"                [30.5706, 104.079],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_befd8a8b3a29f5b549a28e94aae6c202 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b2b2a9247b65e06f83f90807f4f92b1 = $(`&lt;div id=&quot;html_1b2b2a9247b65e06f83f90807f4f92b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.079             latitude:30.5706             PM2_5:54.24512535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_befd8a8b3a29f5b549a28e94aae6c202.setContent(html_1b2b2a9247b65e06f83f90807f4f92b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3387d261dedb665a54d6820e4424ca7d.bindPopup(popup_befd8a8b3a29f5b549a28e94aae6c202)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5605d3097c2adde27a410b2369245806 = L.circleMarker(\\n\",\n       \"                [32.5714, 110.8839],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db293709ff9d476dc02d0ccdc0493f7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3953f7a6e952e7e29d4ed3d19028bbeb = $(`&lt;div id=&quot;html_3953f7a6e952e7e29d4ed3d19028bbeb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.8839             latitude:32.5714             PM2_5:48.0027933             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db293709ff9d476dc02d0ccdc0493f7e.setContent(html_3953f7a6e952e7e29d4ed3d19028bbeb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5605d3097c2adde27a410b2369245806.bindPopup(popup_db293709ff9d476dc02d0ccdc0493f7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_731c947a538c69c10c19acf50c77b532 = L.circleMarker(\\n\",\n       \"                [37.4664, 116.3061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc60e260d12a08edf998a527bc44ff5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afaebcc05c4bdf822c3bea562b861d3e = $(`&lt;div id=&quot;html_afaebcc05c4bdf822c3bea562b861d3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3061             latitude:37.4664             PM2_5:54.98997135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc60e260d12a08edf998a527bc44ff5d.setContent(html_afaebcc05c4bdf822c3bea562b861d3e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_731c947a538c69c10c19acf50c77b532.bindPopup(popup_bc60e260d12a08edf998a527bc44ff5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afc9283068eff546f30bd2a651228e20 = L.circleMarker(\\n\",\n       \"                [25.0405, 102.722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77fa1843ad487922f6e168f72ab6889d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_689fc83148921e0505dcd612593b4f3c = $(`&lt;div id=&quot;html_689fc83148921e0505dcd612593b4f3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.722             latitude:25.0405             PM2_5:33.50415512             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77fa1843ad487922f6e168f72ab6889d.setContent(html_689fc83148921e0505dcd612593b4f3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afc9283068eff546f30bd2a651228e20.bindPopup(popup_77fa1843ad487922f6e168f72ab6889d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19070ca2c2a0fe66b2f9db8b29390fd6 = L.circleMarker(\\n\",\n       \"                [36.9639, 100.9048],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9cec7c0930bb99514cdfdcc1ea64212f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37ae258c319ae95bf4d70aff67972da4 = $(`&lt;div id=&quot;html_37ae258c319ae95bf4d70aff67972da4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.9048             latitude:36.9639             PM2_5:26.02222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9cec7c0930bb99514cdfdcc1ea64212f.setContent(html_37ae258c319ae95bf4d70aff67972da4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19070ca2c2a0fe66b2f9db8b29390fd6.bindPopup(popup_9cec7c0930bb99514cdfdcc1ea64212f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a064d1f581acdac6698d56f607175f9e = L.circleMarker(\\n\",\n       \"                [27.9639, 116.3598],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ebcc56fe7c3fa9966a0071ce96432f63 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f18c5db1ad508e92a66cbfa1f03f0ff6 = $(`&lt;div id=&quot;html_f18c5db1ad508e92a66cbfa1f03f0ff6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3598             latitude:27.9639             PM2_5:40.7367688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ebcc56fe7c3fa9966a0071ce96432f63.setContent(html_f18c5db1ad508e92a66cbfa1f03f0ff6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a064d1f581acdac6698d56f607175f9e.bindPopup(popup_ebcc56fe7c3fa9966a0071ce96432f63)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4bf66fb36ec2a6b33e4620489181df9 = L.circleMarker(\\n\",\n       \"                [40.8725, 114.904],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf284070593846afdd68acaed4bc62cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2398e88794ebca518b2d0161b510708 = $(`&lt;div id=&quot;html_c2398e88794ebca518b2d0161b510708&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.904             latitude:40.8725             PM2_5:29.97752809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf284070593846afdd68acaed4bc62cd.setContent(html_c2398e88794ebca518b2d0161b510708);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4bf66fb36ec2a6b33e4620489181df9.bindPopup(popup_bf284070593846afdd68acaed4bc62cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca65bc998322a1e948ae9f5567b38ebe = L.circleMarker(\\n\",\n       \"                [30.4742, 114.9028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e85f6baa925a09292728967593f54b86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c7b1bd7c90bbc737f6d10cd7960fa40 = $(`&lt;div id=&quot;html_6c7b1bd7c90bbc737f6d10cd7960fa40&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9028             latitude:30.4742             PM2_5:45.7019774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e85f6baa925a09292728967593f54b86.setContent(html_6c7b1bd7c90bbc737f6d10cd7960fa40);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca65bc998322a1e948ae9f5567b38ebe.bindPopup(popup_e85f6baa925a09292728967593f54b86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b9888b8872d31e6814b671636bfeb23 = L.circleMarker(\\n\",\n       \"                [41.0833, 122.9481],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_850af436238eafb70119095dd9337a35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1fdfcf4072085c08bded9bfaf6690ca = $(`&lt;div id=&quot;html_e1fdfcf4072085c08bded9bfaf6690ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.9481             latitude:41.0833             PM2_5:33.61173184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_850af436238eafb70119095dd9337a35.setContent(html_e1fdfcf4072085c08bded9bfaf6690ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b9888b8872d31e6814b671636bfeb23.bindPopup(popup_850af436238eafb70119095dd9337a35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_baf365869104650afdf298222b40354f = L.circleMarker(\\n\",\n       \"                [35.5051, 112.85],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43f668e8156d9cc4f75dd3df1767bddc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4cb6f497208cd3edb02fd675d3e05d2f = $(`&lt;div id=&quot;html_4cb6f497208cd3edb02fd675d3e05d2f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.85             latitude:35.5051             PM2_5:58.35552408             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43f668e8156d9cc4f75dd3df1767bddc.setContent(html_4cb6f497208cd3edb02fd675d3e05d2f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_baf365869104650afdf298222b40354f.bindPopup(popup_43f668e8156d9cc4f75dd3df1767bddc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7cc44547a4c8c8fbdd1ad5650d8bc4d = L.circleMarker(\\n\",\n       \"                [32.6778, 109.0311],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c39e2fee5785b3df63600f49b7bc512 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ef1f1f9fa0a43cb6dbc9f8f5ee826ef = $(`&lt;div id=&quot;html_2ef1f1f9fa0a43cb6dbc9f8f5ee826ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0311             latitude:32.6778             PM2_5:38.88285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c39e2fee5785b3df63600f49b7bc512.setContent(html_2ef1f1f9fa0a43cb6dbc9f8f5ee826ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7cc44547a4c8c8fbdd1ad5650d8bc4d.bindPopup(popup_8c39e2fee5785b3df63600f49b7bc512)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e07e4e4270311a8363e5a660bd08132 = L.circleMarker(\\n\",\n       \"                [29.6926, 116.0628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_944f6508bf84973b26e8418c2e8cf6b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_937da418efdf4c4f34008fb9aa9005e5 = $(`&lt;div id=&quot;html_937da418efdf4c4f34008fb9aa9005e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0628             latitude:29.6926             PM2_5:42.53107345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_944f6508bf84973b26e8418c2e8cf6b9.setContent(html_937da418efdf4c4f34008fb9aa9005e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e07e4e4270311a8363e5a660bd08132.bindPopup(popup_944f6508bf84973b26e8418c2e8cf6b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c265a5563e0fc25068d0e3a3ab331443 = L.circleMarker(\\n\",\n       \"                [28.0167, 120.671],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ec7a68dd80f5ef88405b6631f6ee54d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2586b26a682402092767fed621ff05a = $(`&lt;div id=&quot;html_f2586b26a682402092767fed621ff05a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.671             latitude:28.0167             PM2_5:37.0042735             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ec7a68dd80f5ef88405b6631f6ee54d.setContent(html_f2586b26a682402092767fed621ff05a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c265a5563e0fc25068d0e3a3ab331443.bindPopup(popup_9ec7a68dd80f5ef88405b6631f6ee54d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a25ee8db37870500a8b5103dd2c02ca8 = L.circleMarker(\\n\",\n       \"                [43.831, 87.6432],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_778396f487f50b0427dddb0072fb715b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6be8e3c97e43126bb5e19c345635ea3d = $(`&lt;div id=&quot;html_6be8e3c97e43126bb5e19c345635ea3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6432             latitude:43.831             PM2_5:57.57374631             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_778396f487f50b0427dddb0072fb715b.setContent(html_6be8e3c97e43126bb5e19c345635ea3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a25ee8db37870500a8b5103dd2c02ca8.bindPopup(popup_778396f487f50b0427dddb0072fb715b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4ddc04fd629734b3da2e19cb970ec14 = L.circleMarker(\\n\",\n       \"                [24.81119444, 113.5593889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_449f998292fe23db4553b2ada7cf87c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2491beb749b977ced048fd5189922088 = $(`&lt;div id=&quot;html_2491beb749b977ced048fd5189922088&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5593889             latitude:24.81119444             PM2_5:36.51396648             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_449f998292fe23db4553b2ada7cf87c3.setContent(html_2491beb749b977ced048fd5189922088);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4ddc04fd629734b3da2e19cb970ec14.bindPopup(popup_449f998292fe23db4553b2ada7cf87c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_734146a8a6dc1cfd48ee09a793a6c0ae = L.circleMarker(\\n\",\n       \"                [36.6622, 117.049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9fb8a108f3046c760412f9c4044bd9fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_549bfdff5bed3ddc021645a7a4ad3704 = $(`&lt;div id=&quot;html_549bfdff5bed3ddc021645a7a4ad3704&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.049             latitude:36.6622             PM2_5:60.01311953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9fb8a108f3046c760412f9c4044bd9fd.setContent(html_549bfdff5bed3ddc021645a7a4ad3704);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_734146a8a6dc1cfd48ee09a793a6c0ae.bindPopup(popup_9fb8a108f3046c760412f9c4044bd9fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5722b5c4b1604e230ea264811cb2eb82 = L.circleMarker(\\n\",\n       \"                [45.1642, 124.8528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01ec905e839d2d1a1c9b90d451ca72e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5bca3804e04341b2fa89e5d68bd4a4fa = $(`&lt;div id=&quot;html_5bca3804e04341b2fa89e5d68bd4a4fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8528             latitude:45.1642             PM2_5:29.24404762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01ec905e839d2d1a1c9b90d451ca72e3.setContent(html_5bca3804e04341b2fa89e5d68bd4a4fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5722b5c4b1604e230ea264811cb2eb82.bindPopup(popup_01ec905e839d2d1a1c9b90d451ca72e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9082d0f2c5a7c8871967a600792df564 = L.circleMarker(\\n\",\n       \"                [32.8913, 117.4186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3340bfe8f449382dafd211f34312254 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85eccef87fb7dc22216b5d9bfbf78538 = $(`&lt;div id=&quot;html_85eccef87fb7dc22216b5d9bfbf78538&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4186             latitude:32.8913             PM2_5:42.02521008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3340bfe8f449382dafd211f34312254.setContent(html_85eccef87fb7dc22216b5d9bfbf78538);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9082d0f2c5a7c8871967a600792df564.bindPopup(popup_e3340bfe8f449382dafd211f34312254)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bc70741d25f49f11825a971ab475043 = L.circleMarker(\\n\",\n       \"                [41.7972, 123.3997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f5f06f47e3032e9cc09342c845d7b99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_196d75e61757df41d9a7e7a80e2d9808 = $(`&lt;div id=&quot;html_196d75e61757df41d9a7e7a80e2d9808&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.3997             latitude:41.7972             PM2_5:38.97206704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f5f06f47e3032e9cc09342c845d7b99.setContent(html_196d75e61757df41d9a7e7a80e2d9808);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bc70741d25f49f11825a971ab475043.bindPopup(popup_1f5f06f47e3032e9cc09342c845d7b99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95101b30870feb9f2917cc8ca115e08f = L.circleMarker(\\n\",\n       \"                [38.9846, 117.3747],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8ea8c0e845f787569d87bd22bb40415 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4aa29973cbddbd997ec66c4a256f9568 = $(`&lt;div id=&quot;html_4aa29973cbddbd997ec66c4a256f9568&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3747             latitude:38.9846             PM2_5:51.10339943             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8ea8c0e845f787569d87bd22bb40415.setContent(html_4aa29973cbddbd997ec66c4a256f9568);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95101b30870feb9f2917cc8ca115e08f.bindPopup(popup_e8ea8c0e845f787569d87bd22bb40415)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1893f7c9f61e795cc3bb250ea5c0025c = L.circleMarker(\\n\",\n       \"                [26.53111111, 107.8908333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52d97abe14f1a33316bb7ff349af8f3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b51df9aa091e53e2b2552eb49b2a16e = $(`&lt;div id=&quot;html_5b51df9aa091e53e2b2552eb49b2a16e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.8908333             latitude:26.53111111             PM2_5:30.87146893             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52d97abe14f1a33316bb7ff349af8f3a.setContent(html_5b51df9aa091e53e2b2552eb49b2a16e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1893f7c9f61e795cc3bb250ea5c0025c.bindPopup(popup_52d97abe14f1a33316bb7ff349af8f3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ada402c648b67f6507a94e00c0add204 = L.circleMarker(\\n\",\n       \"                [26.5892, 104.8],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15b56611bc981c249e30899c17ac279e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_129c0602fb0266dafb98fc97ded53130 = $(`&lt;div id=&quot;html_129c0602fb0266dafb98fc97ded53130&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8             latitude:26.5892             PM2_5:39.79665738             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15b56611bc981c249e30899c17ac279e.setContent(html_129c0602fb0266dafb98fc97ded53130);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ada402c648b67f6507a94e00c0add204.bindPopup(popup_15b56611bc981c249e30899c17ac279e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfa86127c46e4e39de18e04095380c2a = L.circleMarker(\\n\",\n       \"                [22.5978, 114.297],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86b12ae19ccb97aee989393ce7bf4a85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52afbfb80770a19a4ca7e9c0f9ae8116 = $(`&lt;div id=&quot;html_52afbfb80770a19a4ca7e9c0f9ae8116&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.297             latitude:22.5978             PM2_5:26.13927577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86b12ae19ccb97aee989393ce7bf4a85.setContent(html_52afbfb80770a19a4ca7e9c0f9ae8116);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfa86127c46e4e39de18e04095380c2a.bindPopup(popup_86b12ae19ccb97aee989393ce7bf4a85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b820da6774db9a543e282ac3b5910404 = L.circleMarker(\\n\",\n       \"                [35.235, 113.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffe80d6f7e6adf4cbadf7d4859db2256 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8bda8f455fc7e5029d9a7a581f16f1b4 = $(`&lt;div id=&quot;html_8bda8f455fc7e5029d9a7a581f16f1b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.261             latitude:35.235             PM2_5:66.46751412             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffe80d6f7e6adf4cbadf7d4859db2256.setContent(html_8bda8f455fc7e5029d9a7a581f16f1b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b820da6774db9a543e282ac3b5910404.bindPopup(popup_ffe80d6f7e6adf4cbadf7d4859db2256)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0e628d5ff6a1fcf0e70165b9207e47f = L.circleMarker(\\n\",\n       \"                [30.4663, 106.6271],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79fccdb22730b2769986409557130983 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb78081b505db80f5a5fb48126d1bd20 = $(`&lt;div id=&quot;html_eb78081b505db80f5a5fb48126d1bd20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6271             latitude:30.4663             PM2_5:43.66944444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79fccdb22730b2769986409557130983.setContent(html_eb78081b505db80f5a5fb48126d1bd20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0e628d5ff6a1fcf0e70165b9207e47f.bindPopup(popup_79fccdb22730b2769986409557130983)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_023dc5185ae810912d4ca35547cc9547 = L.circleMarker(\\n\",\n       \"                [39.65782, 118.1838],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_383e1a1789faaec071bc7b81e8f57a1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9254f8a9fc9f5df70f388f79d46a726 = $(`&lt;div id=&quot;html_d9254f8a9fc9f5df70f388f79d46a726&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1838             latitude:39.65782             PM2_5:55.8933518             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_383e1a1789faaec071bc7b81e8f57a1b.setContent(html_d9254f8a9fc9f5df70f388f79d46a726);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_023dc5185ae810912d4ca35547cc9547.bindPopup(popup_383e1a1789faaec071bc7b81e8f57a1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c5711e911480ad76b93edea5bec42df = L.circleMarker(\\n\",\n       \"                [49.2261, 119.7594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b61689a73caf46f8974cf2f01ca7588 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89199620a37211e3d6e810efdddb73bd = $(`&lt;div id=&quot;html_89199620a37211e3d6e810efdddb73bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7594             latitude:49.2261             PM2_5:15.27361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b61689a73caf46f8974cf2f01ca7588.setContent(html_89199620a37211e3d6e810efdddb73bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c5711e911480ad76b93edea5bec42df.bindPopup(popup_5b61689a73caf46f8974cf2f01ca7588)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa85da5080790108ab8bb49f62a74570 = L.circleMarker(\\n\",\n       \"                [23.3633, 116.7244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b96ee2ca6edb4f3892b5fb719e96a93d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1559ac46eda9d8f08f0b4c74aade2c43 = $(`&lt;div id=&quot;html_1559ac46eda9d8f08f0b4c74aade2c43&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7244             latitude:23.3633             PM2_5:19.99022346             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b96ee2ca6edb4f3892b5fb719e96a93d.setContent(html_1559ac46eda9d8f08f0b4c74aade2c43);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa85da5080790108ab8bb49f62a74570.bindPopup(popup_b96ee2ca6edb4f3892b5fb719e96a93d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_911b0235f1cb5035579d57594b770de2 = L.circleMarker(\\n\",\n       \"                [35.248889, 115.42277],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b175807f569d6ad9c69a819b247241d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fae895417d45e251ef0c24f7e4deace9 = $(`&lt;div id=&quot;html_fae895417d45e251ef0c24f7e4deace9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.42277             latitude:35.248889             PM2_5:58.11235955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b175807f569d6ad9c69a819b247241d6.setContent(html_fae895417d45e251ef0c24f7e4deace9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_911b0235f1cb5035579d57594b770de2.bindPopup(popup_b175807f569d6ad9c69a819b247241d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa2131733b719c4c0e6f5bbb7670585f = L.circleMarker(\\n\",\n       \"                [45.305, 130.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f3cae48fc213ab0d6c97150ff838a53 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7531985382d701e9b0710ddc2803fc80 = $(`&lt;div id=&quot;html_7531985382d701e9b0710ddc2803fc80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9817             latitude:45.305             PM2_5:30.75431034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f3cae48fc213ab0d6c97150ff838a53.setContent(html_7531985382d701e9b0710ddc2803fc80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa2131733b719c4c0e6f5bbb7670585f.bindPopup(popup_9f3cae48fc213ab0d6c97150ff838a53)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c65200be3c72aa89abdefb4b4554508 = L.circleMarker(\\n\",\n       \"                [31.5031, 120.242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a677a736247495500d6058968ea0cd0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a12752f8c6594031b538a84020e2f076 = $(`&lt;div id=&quot;html_a12752f8c6594031b538a84020e2f076&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.242             latitude:31.5031             PM2_5:45.41292135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a677a736247495500d6058968ea0cd0a.setContent(html_a12752f8c6594031b538a84020e2f076);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c65200be3c72aa89abdefb4b4554508.bindPopup(popup_a677a736247495500d6058968ea0cd0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31a3b19936f93bfba282275128b4b7fc = L.circleMarker(\\n\",\n       \"                [47.3349, 130.2659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be9add035c511562e1122f560864df06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5cf4b549fd07cfecf93f63299b85025b = $(`&lt;div id=&quot;html_5cf4b549fd07cfecf93f63299b85025b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.2659             latitude:47.3349             PM2_5:25.09206799             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be9add035c511562e1122f560864df06.setContent(html_5cf4b549fd07cfecf93f63299b85025b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31a3b19936f93bfba282275128b4b7fc.bindPopup(popup_be9add035c511562e1122f560864df06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec9f90954f027349fbe084cc46a2af4e = L.circleMarker(\\n\",\n       \"                [27.6428, 113.8381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4eb2a87396b508dd35c1c320bf877ef2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0e5fc5ddd26d65d8b47fc4295b1ce33 = $(`&lt;div id=&quot;html_b0e5fc5ddd26d65d8b47fc4295b1ce33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8381             latitude:27.6428             PM2_5:47.81111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4eb2a87396b508dd35c1c320bf877ef2.setContent(html_b0e5fc5ddd26d65d8b47fc4295b1ce33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec9f90954f027349fbe084cc46a2af4e.bindPopup(popup_4eb2a87396b508dd35c1c320bf877ef2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ad8562a1db964213dc76dda41a74f8a = L.circleMarker(\\n\",\n       \"                [29.635, 119.026],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f4eb0336e562099ab45d66feabf97f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21b0c6048919fda503cab1859505c82b = $(`&lt;div id=&quot;html_21b0c6048919fda503cab1859505c82b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.026             latitude:29.635             PM2_5:27.02982955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f4eb0336e562099ab45d66feabf97f4.setContent(html_21b0c6048919fda503cab1859505c82b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ad8562a1db964213dc76dda41a74f8a.bindPopup(popup_9f4eb0336e562099ab45d66feabf97f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5291d394ba711160d017361693bb54d7 = L.circleMarker(\\n\",\n       \"                [41.5647, 120.4247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f7ac884c010a1693b2fc743027767c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c8eb1d4d0b1e2f69bd51b727341b2ee = $(`&lt;div id=&quot;html_1c8eb1d4d0b1e2f69bd51b727341b2ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4247             latitude:41.5647             PM2_5:24.74857955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f7ac884c010a1693b2fc743027767c7.setContent(html_1c8eb1d4d0b1e2f69bd51b727341b2ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5291d394ba711160d017361693bb54d7.bindPopup(popup_4f7ac884c010a1693b2fc743027767c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a5cf49377a6a8057a794ab8cb35db56 = L.circleMarker(\\n\",\n       \"                [28.5773, 121.377],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28af8cdf0b1467ce7fccb91760f7f4be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15894b3c2537155ed92044492abdd032 = $(`&lt;div id=&quot;html_15894b3c2537155ed92044492abdd032&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.377             latitude:28.5773             PM2_5:31.56478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28af8cdf0b1467ce7fccb91760f7f4be.setContent(html_15894b3c2537155ed92044492abdd032);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a5cf49377a6a8057a794ab8cb35db56.bindPopup(popup_28af8cdf0b1467ce7fccb91760f7f4be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c8999c126d85e24383d87716e2f642e = L.circleMarker(\\n\",\n       \"                [46.7975, 130.3258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f20c70939dae7091a66f6273fe7d1fe2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5bef65eba5a8f5ac3312bc48160177b6 = $(`&lt;div id=&quot;html_5bef65eba5a8f5ac3312bc48160177b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3258             latitude:46.7975             PM2_5:32.52089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f20c70939dae7091a66f6273fe7d1fe2.setContent(html_5bef65eba5a8f5ac3312bc48160177b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c8999c126d85e24383d87716e2f642e.bindPopup(popup_f20c70939dae7091a66f6273fe7d1fe2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5419bc29f51405fd7e5d2ed6c0a3949e = L.circleMarker(\\n\",\n       \"                [31.388, 120.953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_304dc15d330f2595458182bcb6c3af31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b838149eb64cae1e664d133c6f671e56 = $(`&lt;div id=&quot;html_b838149eb64cae1e664d133c6f671e56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.953             latitude:31.388             PM2_5:37.71892655             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_304dc15d330f2595458182bcb6c3af31.setContent(html_b838149eb64cae1e664d133c6f671e56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5419bc29f51405fd7e5d2ed6c0a3949e.bindPopup(popup_304dc15d330f2595458182bcb6c3af31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_532bb82c5291f1d18c04f899128d1b29 = L.circleMarker(\\n\",\n       \"                [41.615, 120.3939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04c6902539143071a338b10397469300 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7f32619eac8e71b5af01096f21856c6 = $(`&lt;div id=&quot;html_b7f32619eac8e71b5af01096f21856c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.3939             latitude:41.615             PM2_5:24.47443182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04c6902539143071a338b10397469300.setContent(html_b7f32619eac8e71b5af01096f21856c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_532bb82c5291f1d18c04f899128d1b29.bindPopup(popup_04c6902539143071a338b10397469300)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f35ce8067aa458e6aeb4b2dda2a37b4 = L.circleMarker(\\n\",\n       \"                [36.5767, 109.4824],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea7d910c51089f39467e886110de3504 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4d342961b82deb125dbcdc6683a4820 = $(`&lt;div id=&quot;html_d4d342961b82deb125dbcdc6683a4820&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4824             latitude:36.5767             PM2_5:30.72346369             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea7d910c51089f39467e886110de3504.setContent(html_d4d342961b82deb125dbcdc6683a4820);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f35ce8067aa458e6aeb4b2dda2a37b4.bindPopup(popup_ea7d910c51089f39467e886110de3504)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4615dc76d05cac2e8d98f8450182a67 = L.circleMarker(\\n\",\n       \"                [32.7639, 116.8028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51725fc509bf12b278b9c837d1dd561c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_693d89542adacdaa9650269aacee399c = $(`&lt;div id=&quot;html_693d89542adacdaa9650269aacee399c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8028             latitude:32.7639             PM2_5:56.22284123             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51725fc509bf12b278b9c837d1dd561c.setContent(html_693d89542adacdaa9650269aacee399c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4615dc76d05cac2e8d98f8450182a67.bindPopup(popup_51725fc509bf12b278b9c837d1dd561c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e469ea42e3ad2717635b0f9a4125ca65 = L.circleMarker(\\n\",\n       \"                [23.7208, 109.2131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b662022fa3dd3e4e006429b07107511 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25275496cb9b51118c524d8833b8c12d = $(`&lt;div id=&quot;html_25275496cb9b51118c524d8833b8c12d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2131             latitude:23.7208             PM2_5:38.19806094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b662022fa3dd3e4e006429b07107511.setContent(html_25275496cb9b51118c524d8833b8c12d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e469ea42e3ad2717635b0f9a4125ca65.bindPopup(popup_2b662022fa3dd3e4e006429b07107511)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_409e83a44533ed33060d3579de80eacd = L.circleMarker(\\n\",\n       \"                [35.4144, 116.5856],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51c046c63e853b9e7d2b9af8b54d5b35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad1d7db3d46884be960a9d4972895e5a = $(`&lt;div id=&quot;html_ad1d7db3d46884be960a9d4972895e5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5856             latitude:35.4144             PM2_5:52.05196629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51c046c63e853b9e7d2b9af8b54d5b35.setContent(html_ad1d7db3d46884be960a9d4972895e5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_409e83a44533ed33060d3579de80eacd.bindPopup(popup_51c046c63e853b9e7d2b9af8b54d5b35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b3af45ee9620425779cef85f8147947 = L.circleMarker(\\n\",\n       \"                [50.4217, 124.1303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_758588d1b12f6b035aba39b6ae45951c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2891e41e1a5917723813f69fbc0ea3c1 = $(`&lt;div id=&quot;html_2891e41e1a5917723813f69fbc0ea3c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.1303             latitude:50.4217             PM2_5:13.39714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_758588d1b12f6b035aba39b6ae45951c.setContent(html_2891e41e1a5917723813f69fbc0ea3c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b3af45ee9620425779cef85f8147947.bindPopup(popup_758588d1b12f6b035aba39b6ae45951c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_876ee54458b4f7a8b4b9a710a32cd232 = L.circleMarker(\\n\",\n       \"                [38.4928, 112.7003],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a37051f9438a1d0a7d259a4337d305f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_014138d4cf1ea4eebf146e4e7a643aef = $(`&lt;div id=&quot;html_014138d4cf1ea4eebf146e4e7a643aef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7003             latitude:38.4928             PM2_5:49.83427762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a37051f9438a1d0a7d259a4337d305f1.setContent(html_014138d4cf1ea4eebf146e4e7a643aef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_876ee54458b4f7a8b4b9a710a32cd232.bindPopup(popup_a37051f9438a1d0a7d259a4337d305f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30dcc7282834cc80f29765fa42d21db8 = L.circleMarker(\\n\",\n       \"                [25.0124, 102.743],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37e8362c06114a8faefa599f4a815e61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f18b326d78c809706a2f624a448e6743 = $(`&lt;div id=&quot;html_f18b326d78c809706a2f624a448e6743&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.743             latitude:25.0124             PM2_5:30.86350975             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37e8362c06114a8faefa599f4a815e61.setContent(html_f18b326d78c809706a2f624a448e6743);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30dcc7282834cc80f29765fa42d21db8.bindPopup(popup_37e8362c06114a8faefa599f4a815e61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30d1db3c781c25da7770c24a666c3529 = L.circleMarker(\\n\",\n       \"                [35.9019, 114.17],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7a8742dfdf4d7378aef7b7596896132 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f211d92e5eb94929b2246688e4f02ca = $(`&lt;div id=&quot;html_9f211d92e5eb94929b2246688e4f02ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.17             latitude:35.9019             PM2_5:56.75702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7a8742dfdf4d7378aef7b7596896132.setContent(html_9f211d92e5eb94929b2246688e4f02ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30d1db3c781c25da7770c24a666c3529.bindPopup(popup_f7a8742dfdf4d7378aef7b7596896132)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1e950df3cb611f725e7a3eafbfe3de3 = L.circleMarker(\\n\",\n       \"                [21.4689, 111.0286],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bdbc3815c076199c838e9e10fd8cd8b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec3bdb1dd029ea41a136e77e65c8879c = $(`&lt;div id=&quot;html_ec3bdb1dd029ea41a136e77e65c8879c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0286             latitude:21.4689             PM2_5:20.53975535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bdbc3815c076199c838e9e10fd8cd8b1.setContent(html_ec3bdb1dd029ea41a136e77e65c8879c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1e950df3cb611f725e7a3eafbfe3de3.bindPopup(popup_bdbc3815c076199c838e9e10fd8cd8b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d19d1fa07bd915adf8c8ce81d7031fd7 = L.circleMarker(\\n\",\n       \"                [32.41, 119.404],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58c6201a944246d76a1cf150600c5e83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d8603f0be83201853d882ccd402aebd = $(`&lt;div id=&quot;html_4d8603f0be83201853d882ccd402aebd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.404             latitude:32.41             PM2_5:43.72058824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58c6201a944246d76a1cf150600c5e83.setContent(html_4d8603f0be83201853d882ccd402aebd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d19d1fa07bd915adf8c8ce81d7031fd7.bindPopup(popup_58c6201a944246d76a1cf150600c5e83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_406f3d4defb8153a46885cbda13f62ab = L.circleMarker(\\n\",\n       \"                [32.0564, 112.1392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_89ebb4147afb89ee4e932e33e63a6efa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ce986b27530eb3aedd77c21d0609def = $(`&lt;div id=&quot;html_4ce986b27530eb3aedd77c21d0609def&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1392             latitude:32.0564             PM2_5:60.23389356             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_89ebb4147afb89ee4e932e33e63a6efa.setContent(html_4ce986b27530eb3aedd77c21d0609def);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_406f3d4defb8153a46885cbda13f62ab.bindPopup(popup_89ebb4147afb89ee4e932e33e63a6efa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_407cdd6202453e9201c52dc86130826b = L.circleMarker(\\n\",\n       \"                [33.63063889, 116.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_397c1a291e455af74ab78e03906fd004 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10c64c7b34f9aaf7504300c8639576b0 = $(`&lt;div id=&quot;html_10c64c7b34f9aaf7504300c8639576b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.989             latitude:33.63063889             PM2_5:60.00277008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_397c1a291e455af74ab78e03906fd004.setContent(html_10c64c7b34f9aaf7504300c8639576b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_407cdd6202453e9201c52dc86130826b.bindPopup(popup_397c1a291e455af74ab78e03906fd004)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1027e26261f356841106451f27a1e5da = L.circleMarker(\\n\",\n       \"                [41.8417, 123.7117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f21505400246f74a335c12348e2ed9c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5460234348e6f1a1ce2a46eeaf9da62d = $(`&lt;div id=&quot;html_5460234348e6f1a1ce2a46eeaf9da62d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7117             latitude:41.8417             PM2_5:31.18296089             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f21505400246f74a335c12348e2ed9c1.setContent(html_5460234348e6f1a1ce2a46eeaf9da62d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1027e26261f356841106451f27a1e5da.bindPopup(popup_f21505400246f74a335c12348e2ed9c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76690a27840804978a702bf5db45e2de = L.circleMarker(\\n\",\n       \"                [24.2654, 116.1248],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8de041a24c415b06a06caa936256f3be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d554f750fbd53c5e139f7f2afc727b6 = $(`&lt;div id=&quot;html_5d554f750fbd53c5e139f7f2afc727b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1248             latitude:24.2654             PM2_5:28.63611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8de041a24c415b06a06caa936256f3be.setContent(html_5d554f750fbd53c5e139f7f2afc727b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76690a27840804978a702bf5db45e2de.bindPopup(popup_8de041a24c415b06a06caa936256f3be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0e241f3bb98a8ae790880434fd8369b = L.circleMarker(\\n\",\n       \"                [24.3898, 109.4883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15885dbac29773c0f1f866a0817979fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_edcf2c065f1ee395e28691f5b7212ef2 = $(`&lt;div id=&quot;html_edcf2c065f1ee395e28691f5b7212ef2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4883             latitude:24.3898             PM2_5:38.23142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15885dbac29773c0f1f866a0817979fd.setContent(html_edcf2c065f1ee395e28691f5b7212ef2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0e241f3bb98a8ae790880434fd8369b.bindPopup(popup_15885dbac29773c0f1f866a0817979fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_159f5c8dc8e6b15d1cb3945d663a2250 = L.circleMarker(\\n\",\n       \"                [29.41569, 106.5506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_286361a7f1bd507bc37ffc6cef996ece = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a92fe704fc5911de10912303460a874 = $(`&lt;div id=&quot;html_3a92fe704fc5911de10912303460a874&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.5506             latitude:29.41569             PM2_5:31.64325843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_286361a7f1bd507bc37ffc6cef996ece.setContent(html_3a92fe704fc5911de10912303460a874);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_159f5c8dc8e6b15d1cb3945d663a2250.bindPopup(popup_286361a7f1bd507bc37ffc6cef996ece)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c636914c421c06459cafb73af9f712c = L.circleMarker(\\n\",\n       \"                [40.0625, 124.3303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d152d965e34d4086b38fc2a2cc97e15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_81e6361c51d3cd27ab02adc1f0a785d4 = $(`&lt;div id=&quot;html_81e6361c51d3cd27ab02adc1f0a785d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3303             latitude:40.0625             PM2_5:23.85451977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d152d965e34d4086b38fc2a2cc97e15.setContent(html_81e6361c51d3cd27ab02adc1f0a785d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c636914c421c06459cafb73af9f712c.bindPopup(popup_2d152d965e34d4086b38fc2a2cc97e15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d78c36f135f44c30aa2b98655b862d03 = L.circleMarker(\\n\",\n       \"                [32.3878, 119.46],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d03394e7c5fedc48385d316b51545793 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbacf57b254e72d2e6dc3da00f8c5cc2 = $(`&lt;div id=&quot;html_dbacf57b254e72d2e6dc3da00f8c5cc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.46             latitude:32.3878             PM2_5:47.79369628             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d03394e7c5fedc48385d316b51545793.setContent(html_dbacf57b254e72d2e6dc3da00f8c5cc2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d78c36f135f44c30aa2b98655b862d03.bindPopup(popup_d03394e7c5fedc48385d316b51545793)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8abfe0c7ff08075d59c52798275fb87c = L.circleMarker(\\n\",\n       \"                [39.5986, 109.7736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_391f7c4a2c51f065239a4cbb81299725 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5bdc7790d19ccf33396050895251aab2 = $(`&lt;div id=&quot;html_5bdc7790d19ccf33396050895251aab2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7736             latitude:39.5986             PM2_5:19.47191011             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_391f7c4a2c51f065239a4cbb81299725.setContent(html_5bdc7790d19ccf33396050895251aab2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8abfe0c7ff08075d59c52798275fb87c.bindPopup(popup_391f7c4a2c51f065239a4cbb81299725)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7df0d24a7e167cc396e8f9aba467634 = L.circleMarker(\\n\",\n       \"                [29.2958, 117.2111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc33641ead8806cbc753dfc5f6de0a83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0306fedfd87747842e5bdb79f4eea49a = $(`&lt;div id=&quot;html_0306fedfd87747842e5bdb79f4eea49a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2111             latitude:29.2958             PM2_5:34.08831909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc33641ead8806cbc753dfc5f6de0a83.setContent(html_0306fedfd87747842e5bdb79f4eea49a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7df0d24a7e167cc396e8f9aba467634.bindPopup(popup_fc33641ead8806cbc753dfc5f6de0a83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2965f10983a9a3d0f9060dafbcf9680 = L.circleMarker(\\n\",\n       \"                [29.6007, 103.7506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_414a6b11207ebf6cf2f8584a95bbec96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab67f71bba396e5a8fb6095360698a37 = $(`&lt;div id=&quot;html_ab67f71bba396e5a8fb6095360698a37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7506             latitude:29.6007             PM2_5:49.0491573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_414a6b11207ebf6cf2f8584a95bbec96.setContent(html_ab67f71bba396e5a8fb6095360698a37);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2965f10983a9a3d0f9060dafbcf9680.bindPopup(popup_414a6b11207ebf6cf2f8584a95bbec96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de3513729bc2bdea96902d39feb3a995 = L.circleMarker(\\n\",\n       \"                [33.581, 114.014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4856347f2a69f7f4ed03f2ac50bf46e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_066f93a00abcc9c859dfbdba69b7ebe5 = $(`&lt;div id=&quot;html_066f93a00abcc9c859dfbdba69b7ebe5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.014             latitude:33.581             PM2_5:57.82033426             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4856347f2a69f7f4ed03f2ac50bf46e4.setContent(html_066f93a00abcc9c859dfbdba69b7ebe5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de3513729bc2bdea96902d39feb3a995.bindPopup(popup_4856347f2a69f7f4ed03f2ac50bf46e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6aa98411186c0f582e1ee3e895cc9e56 = L.circleMarker(\\n\",\n       \"                [33.38256667, 104.9338889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3977e7e73ec09d78152992163160b75 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_061fe5f7449dbbf5c3ed7203a8566dc0 = $(`&lt;div id=&quot;html_061fe5f7449dbbf5c3ed7203a8566dc0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9338889             latitude:33.38256667             PM2_5:22.50144092             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3977e7e73ec09d78152992163160b75.setContent(html_061fe5f7449dbbf5c3ed7203a8566dc0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6aa98411186c0f582e1ee3e895cc9e56.bindPopup(popup_e3977e7e73ec09d78152992163160b75)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffd7017a5f48f46391e6661c6d88551e = L.circleMarker(\\n\",\n       \"                [26.9056, 112.5664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50eb55ae6d3b79d2d9711c00fcafe9c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9fd7b78b0ac7845719dcbc0ab984ee7 = $(`&lt;div id=&quot;html_d9fd7b78b0ac7845719dcbc0ab984ee7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5664             latitude:26.9056             PM2_5:43.28072626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50eb55ae6d3b79d2d9711c00fcafe9c2.setContent(html_d9fd7b78b0ac7845719dcbc0ab984ee7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffd7017a5f48f46391e6661c6d88551e.bindPopup(popup_50eb55ae6d3b79d2d9711c00fcafe9c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a288477670eb46483e7b5e06bf5f0ceb = L.circleMarker(\\n\",\n       \"                [34.864, 117.5564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb511c66c284bd6699b033de7d6f8ed7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ea4456f06cc815a8ebfb036beb1d723 = $(`&lt;div id=&quot;html_4ea4456f06cc815a8ebfb036beb1d723&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5564             latitude:34.864             PM2_5:51.03221289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb511c66c284bd6699b033de7d6f8ed7.setContent(html_4ea4456f06cc815a8ebfb036beb1d723);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a288477670eb46483e7b5e06bf5f0ceb.bindPopup(popup_fb511c66c284bd6699b033de7d6f8ed7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5ed8652930d902703913f15a0a0c342 = L.circleMarker(\\n\",\n       \"                [31.896, 121.173],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5dc399aa348e1908337d267aad39f05e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27d9aef1acc7c9e1fa46eb7fcdca87f3 = $(`&lt;div id=&quot;html_27d9aef1acc7c9e1fa46eb7fcdca87f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.173             latitude:31.896             PM2_5:35.22303207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5dc399aa348e1908337d267aad39f05e.setContent(html_27d9aef1acc7c9e1fa46eb7fcdca87f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5ed8652930d902703913f15a0a0c342.bindPopup(popup_5dc399aa348e1908337d267aad39f05e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_223e38f6dbfe5111ef405d0dc7840cb1 = L.circleMarker(\\n\",\n       \"                [22.0225, 100.8017],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_72464a55361056859338e1af187ae57f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_79831ab83ffa355c22e799f93d6fe1e9 = $(`&lt;div id=&quot;html_79831ab83ffa355c22e799f93d6fe1e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.8017             latitude:22.0225             PM2_5:16.5130814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_72464a55361056859338e1af187ae57f.setContent(html_79831ab83ffa355c22e799f93d6fe1e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_223e38f6dbfe5111ef405d0dc7840cb1.bindPopup(popup_72464a55361056859338e1af187ae57f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc21e1c92080f2bc7821726dc3ee6a23 = L.circleMarker(\\n\",\n       \"                [30.8811, 117.7442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b65d078472555ce1357170499676e8f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_440a8c08925dc45f01026c2d513a9b0b = $(`&lt;div id=&quot;html_440a8c08925dc45f01026c2d513a9b0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7442             latitude:30.8811             PM2_5:54.68333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b65d078472555ce1357170499676e8f3.setContent(html_440a8c08925dc45f01026c2d513a9b0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc21e1c92080f2bc7821726dc3ee6a23.bindPopup(popup_b65d078472555ce1357170499676e8f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_32a3dba3fff5185d7942be16bcad2c78 = L.circleMarker(\\n\",\n       \"                [28.9745, 118.855],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b18ab3b0f53cca200b6e37ee08e2338 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0bedcd3dfba514208242e4941d701ed5 = $(`&lt;div id=&quot;html_0bedcd3dfba514208242e4941d701ed5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.855             latitude:28.9745             PM2_5:35.13927577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b18ab3b0f53cca200b6e37ee08e2338.setContent(html_0bedcd3dfba514208242e4941d701ed5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_32a3dba3fff5185d7942be16bcad2c78.bindPopup(popup_6b18ab3b0f53cca200b6e37ee08e2338)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3154a2903c9da235c9d46dd4f9c42493 = L.circleMarker(\\n\",\n       \"                [24.4674, 117.6336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ebfdf72553a399499711b72654cab794 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30251c16c783839d61aa24f0c2b78125 = $(`&lt;div id=&quot;html_30251c16c783839d61aa24f0c2b78125&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6336             latitude:24.4674             PM2_5:27.59357542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ebfdf72553a399499711b72654cab794.setContent(html_30251c16c783839d61aa24f0c2b78125);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3154a2903c9da235c9d46dd4f9c42493.bindPopup(popup_ebfdf72553a399499711b72654cab794)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6d11c88ddcac710d2107c2b6186c3de = L.circleMarker(\\n\",\n       \"                [38.2478, 109.7336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_187226c361b35d19d218c06a125fc3ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74046e68dc3ffa74b65eabbb6a4a0c57 = $(`&lt;div id=&quot;html_74046e68dc3ffa74b65eabbb6a4a0c57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7336             latitude:38.2478             PM2_5:31.4501385             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_187226c361b35d19d218c06a125fc3ca.setContent(html_74046e68dc3ffa74b65eabbb6a4a0c57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6d11c88ddcac710d2107c2b6186c3de.bindPopup(popup_187226c361b35d19d218c06a125fc3ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_391242a2a45c1310e47449c09f6f212a = L.circleMarker(\\n\",\n       \"                [37.4442, 118.5857],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78982f213a5bef910580546afa4274df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7b3a237b297f8d9b2ea1160f7de5c9b = $(`&lt;div id=&quot;html_d7b3a237b297f8d9b2ea1160f7de5c9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5857             latitude:37.4442             PM2_5:50.74328358             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78982f213a5bef910580546afa4274df.setContent(html_d7b3a237b297f8d9b2ea1160f7de5c9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_391242a2a45c1310e47449c09f6f212a.bindPopup(popup_78982f213a5bef910580546afa4274df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8fa1d3140eba614f0f7e38a1cf26a6d7 = L.circleMarker(\\n\",\n       \"                [39.79777778, 98.26722222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d46fefa925bebb9926615a9d2435e38 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40412f0f49e54f1bdb50d4a80d74b8b3 = $(`&lt;div id=&quot;html_40412f0f49e54f1bdb50d4a80d74b8b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.26722222             latitude:39.79777778             PM2_5:28.45014245             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d46fefa925bebb9926615a9d2435e38.setContent(html_40412f0f49e54f1bdb50d4a80d74b8b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8fa1d3140eba614f0f7e38a1cf26a6d7.bindPopup(popup_4d46fefa925bebb9926615a9d2435e38)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f723806ee3fcd331c872037b56b70b10 = L.circleMarker(\\n\",\n       \"                [33.7214, 113.3064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c59f0bcfc9748fd2789efebaaf986b74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19327dc3d8b1ef43d18aef54e3a8a290 = $(`&lt;div id=&quot;html_19327dc3d8b1ef43d18aef54e3a8a290&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3064             latitude:33.7214             PM2_5:58.5933908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c59f0bcfc9748fd2789efebaaf986b74.setContent(html_19327dc3d8b1ef43d18aef54e3a8a290);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f723806ee3fcd331c872037b56b70b10.bindPopup(popup_c59f0bcfc9748fd2789efebaaf986b74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_02601a8a562f94c2f62adb2f0fae23f9 = L.circleMarker(\\n\",\n       \"                [30.5719, 114.3672],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fcebb98e011a3ebe60349ccd618815a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00347c43d01a9b98bd39013a10ddb3eb = $(`&lt;div id=&quot;html_00347c43d01a9b98bd39013a10ddb3eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3672             latitude:30.5719             PM2_5:48.38636364             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fcebb98e011a3ebe60349ccd618815a.setContent(html_00347c43d01a9b98bd39013a10ddb3eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_02601a8a562f94c2f62adb2f0fae23f9.bindPopup(popup_6fcebb98e011a3ebe60349ccd618815a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65b444c4decce74dbb2d61a0c469d36f = L.circleMarker(\\n\",\n       \"                [31.7897, 119.8914],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11070119a5792e67bcab09af0b1096b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c342746256ccf23720e243551b87114d = $(`&lt;div id=&quot;html_c342746256ccf23720e243551b87114d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.8914             latitude:31.7897             PM2_5:45.79469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11070119a5792e67bcab09af0b1096b4.setContent(html_c342746256ccf23720e243551b87114d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65b444c4decce74dbb2d61a0c469d36f.bindPopup(popup_11070119a5792e67bcab09af0b1096b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_494785583bf8181fc42967af3884be9d = L.circleMarker(\\n\",\n       \"                [39.625, 121.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d17583663a3c6642b4957a92a2b29cf7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_514886597949c0de41d5fcd0a2bc58a8 = $(`&lt;div id=&quot;html_514886597949c0de41d5fcd0a2bc58a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.989             latitude:39.625             PM2_5:30.40555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d17583663a3c6642b4957a92a2b29cf7.setContent(html_514886597949c0de41d5fcd0a2bc58a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_494785583bf8181fc42967af3884be9d.bindPopup(popup_d17583663a3c6642b4957a92a2b29cf7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d17fb08376ce56438c1da1de2de39276 = L.circleMarker(\\n\",\n       \"                [31.215, 107.525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d321b709bdeae1e484efb4a39378973 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d17184a905435c2aec1fc7cd127f6443 = $(`&lt;div id=&quot;html_d17184a905435c2aec1fc7cd127f6443&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.525             latitude:31.215             PM2_5:46.16016713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d321b709bdeae1e484efb4a39378973.setContent(html_d17184a905435c2aec1fc7cd127f6443);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d17fb08376ce56438c1da1de2de39276.bindPopup(popup_9d321b709bdeae1e484efb4a39378973)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16eede73daa1d53087aaf3a333637e1b = L.circleMarker(\\n\",\n       \"                [36.0822, 111.5169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5228797ce33ec2af6885093d4cc7b9cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_830f46fcae5d8660c96fb04fd335bb8d = $(`&lt;div id=&quot;html_830f46fcae5d8660c96fb04fd335bb8d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5169             latitude:36.0822             PM2_5:78.88718663             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5228797ce33ec2af6885093d4cc7b9cc.setContent(html_830f46fcae5d8660c96fb04fd335bb8d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16eede73daa1d53087aaf3a333637e1b.bindPopup(popup_5228797ce33ec2af6885093d4cc7b9cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_490a612377eb416205e88bd9737b2c88 = L.circleMarker(\\n\",\n       \"                [29.2718, 88.8876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_93c41ed4c5530fe4034710887f8a6c53 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13b121b9e1d9d194e385c833190e3e62 = $(`&lt;div id=&quot;html_13b121b9e1d9d194e385c833190e3e62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.8876             latitude:29.2718             PM2_5:13.47058824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_93c41ed4c5530fe4034710887f8a6c53.setContent(html_13b121b9e1d9d194e385c833190e3e62);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_490a612377eb416205e88bd9737b2c88.bindPopup(popup_93c41ed4c5530fe4034710887f8a6c53)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8bebc5096c20d2c2cc7f275136e2abec = L.circleMarker(\\n\",\n       \"                [32.996, 113.996],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c19d060f0e7268675f2b615d5f43db7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c7abb13fe28bdd8b2c7a391d99bf136 = $(`&lt;div id=&quot;html_7c7abb13fe28bdd8b2c7a391d99bf136&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.996             latitude:32.996             PM2_5:53.78888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c19d060f0e7268675f2b615d5f43db7e.setContent(html_7c7abb13fe28bdd8b2c7a391d99bf136);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8bebc5096c20d2c2cc7f275136e2abec.bindPopup(popup_c19d060f0e7268675f2b615d5f43db7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_113bb16cb26a8125342dd91fd4b77333 = L.circleMarker(\\n\",\n       \"                [24.4072, 111.5622],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aba20e68ebbed08ca091b7e7df7ada37 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f8cc0c4fb194cd1c9ae1acbd1d6d6ed = $(`&lt;div id=&quot;html_0f8cc0c4fb194cd1c9ae1acbd1d6d6ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5622             latitude:24.4072             PM2_5:38.43194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aba20e68ebbed08ca091b7e7df7ada37.setContent(html_0f8cc0c4fb194cd1c9ae1acbd1d6d6ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_113bb16cb26a8125342dd91fd4b77333.bindPopup(popup_aba20e68ebbed08ca091b7e7df7ada37)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45bb48d3d4f3c4cac16ce017c89ec4f0 = L.circleMarker(\\n\",\n       \"                [30.8596, 120.1844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_72ab30fdada92c4538eb9bef7e1ddc77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b7994b26073a86ef8375fe51e9106e1 = $(`&lt;div id=&quot;html_3b7994b26073a86ef8375fe51e9106e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1844             latitude:30.8596             PM2_5:41.06022409             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_72ab30fdada92c4538eb9bef7e1ddc77.setContent(html_3b7994b26073a86ef8375fe51e9106e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45bb48d3d4f3c4cac16ce017c89ec4f0.bindPopup(popup_72ab30fdada92c4538eb9bef7e1ddc77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0367f3fb2b56bd0bee9dd9578fc8809d = L.circleMarker(\\n\",\n       \"                [40.6575, 109.8104],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa3abbb3b51c913b5ba97fcff343c964 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fab5fdbcd3e892bae3ee735376ec2c99 = $(`&lt;div id=&quot;html_fab5fdbcd3e892bae3ee735376ec2c99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8104             latitude:40.6575             PM2_5:40.33005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa3abbb3b51c913b5ba97fcff343c964.setContent(html_fab5fdbcd3e892bae3ee735376ec2c99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0367f3fb2b56bd0bee9dd9578fc8809d.bindPopup(popup_aa3abbb3b51c913b5ba97fcff343c964)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ce5507eb7ef03dba72b0579b56123c4 = L.circleMarker(\\n\",\n       \"                [38.5339, 102.1725],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_926824bbc6c0e6af098624ab7ae9fcbc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee57ea900ddff7838b3859790c7e8e44 = $(`&lt;div id=&quot;html_ee57ea900ddff7838b3859790c7e8e44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1725             latitude:38.5339             PM2_5:28.71587744             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_926824bbc6c0e6af098624ab7ae9fcbc.setContent(html_ee57ea900ddff7838b3859790c7e8e44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ce5507eb7ef03dba72b0579b56123c4.bindPopup(popup_926824bbc6c0e6af098624ab7ae9fcbc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fc2819a191b690e6b65539da72faf54 = L.circleMarker(\\n\",\n       \"                [28.0005, 116.3574],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a582dca6e9828692e83e0cc9f43c343d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4009173db4da7d5f7a77105287b0c5a = $(`&lt;div id=&quot;html_b4009173db4da7d5f7a77105287b0c5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3574             latitude:28.0005             PM2_5:44.09887006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a582dca6e9828692e83e0cc9f43c343d.setContent(html_b4009173db4da7d5f7a77105287b0c5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fc2819a191b690e6b65539da72faf54.bindPopup(popup_a582dca6e9828692e83e0cc9f43c343d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d2021064742aa75aac502abbcd348a3 = L.circleMarker(\\n\",\n       \"                [37.5639, 121.2514],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be563a54687064090a78fd2a3cefdf5e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b079ae5fa69ef75fc620f3be7ac7bb67 = $(`&lt;div id=&quot;html_b079ae5fa69ef75fc620f3be7ac7bb67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2514             latitude:37.5639             PM2_5:29.87078652             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be563a54687064090a78fd2a3cefdf5e.setContent(html_b079ae5fa69ef75fc620f3be7ac7bb67);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d2021064742aa75aac502abbcd348a3.bindPopup(popup_be563a54687064090a78fd2a3cefdf5e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1dc6ab5d3ab9971bccf0415137f6727 = L.circleMarker(\\n\",\n       \"                [39.0877, 117.307],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb5eb76f4a3b22270d59b11070e4eeb3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a3ad2de030e1c68ccf78f7376a4afe7 = $(`&lt;div id=&quot;html_1a3ad2de030e1c68ccf78f7376a4afe7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.307             latitude:39.0877             PM2_5:50.33704735             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb5eb76f4a3b22270d59b11070e4eeb3.setContent(html_1a3ad2de030e1c68ccf78f7376a4afe7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1dc6ab5d3ab9971bccf0415137f6727.bindPopup(popup_eb5eb76f4a3b22270d59b11070e4eeb3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb497a9e1951323d93b8e6051b0e57cf = L.circleMarker(\\n\",\n       \"                [29.6588, 90.9798],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af94d3973cf765f21601f6378b72614e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7aea9f231c3ab665007daa1f7e62c387 = $(`&lt;div id=&quot;html_7aea9f231c3ab665007daa1f7e62c387&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:90.9798             latitude:29.6588             PM2_5:31.98979592             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af94d3973cf765f21601f6378b72614e.setContent(html_7aea9f231c3ab665007daa1f7e62c387);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb497a9e1951323d93b8e6051b0e57cf.bindPopup(popup_af94d3973cf765f21601f6378b72614e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eebe8dcb7484bc73d9826462f6e58b7d = L.circleMarker(\\n\",\n       \"                [19.9969, 110.338],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c2be40ef579aad0ce474fcac13ece3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5f1d9f1fc1f235c37eda57d50c931e7 = $(`&lt;div id=&quot;html_e5f1d9f1fc1f235c37eda57d50c931e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.338             latitude:19.9969             PM2_5:18.88642659             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c2be40ef579aad0ce474fcac13ece3e.setContent(html_e5f1d9f1fc1f235c37eda57d50c931e7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eebe8dcb7484bc73d9826462f6e58b7d.bindPopup(popup_1c2be40ef579aad0ce474fcac13ece3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_53d86a2cff0cc0595da654eaed5ff2a7 = L.circleMarker(\\n\",\n       \"                [27.8094, 102.3419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_972ad5f20dc3bbc11f02a90fd4163a76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_500788bd8a15f4a0399b7659750f23df = $(`&lt;div id=&quot;html_500788bd8a15f4a0399b7659750f23df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.3419             latitude:27.8094             PM2_5:19.32142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_972ad5f20dc3bbc11f02a90fd4163a76.setContent(html_500788bd8a15f4a0399b7659750f23df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_53d86a2cff0cc0595da654eaed5ff2a7.bindPopup(popup_972ad5f20dc3bbc11f02a90fd4163a76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f47ffafff5d667d0df3c034826671a6 = L.circleMarker(\\n\",\n       \"                [40.7736, 120.8631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a10d705b4a7b32a47de6ec29648060dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb91ff074ce724b237d7c65f7e124298 = $(`&lt;div id=&quot;html_cb91ff074ce724b237d7c65f7e124298&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8631             latitude:40.7736             PM2_5:32.87222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a10d705b4a7b32a47de6ec29648060dd.setContent(html_cb91ff074ce724b237d7c65f7e124298);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f47ffafff5d667d0df3c034826671a6.bindPopup(popup_a10d705b4a7b32a47de6ec29648060dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9498862a2f2df9d2bbd47643596b74b2 = L.circleMarker(\\n\",\n       \"                [41.0903, 122.0539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_438b19cb15426a8204fef1239879a179 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f24e654fadb816996fe366fe1d46ccf = $(`&lt;div id=&quot;html_2f24e654fadb816996fe366fe1d46ccf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0539             latitude:41.0903             PM2_5:31.2005571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_438b19cb15426a8204fef1239879a179.setContent(html_2f24e654fadb816996fe366fe1d46ccf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9498862a2f2df9d2bbd47643596b74b2.bindPopup(popup_438b19cb15426a8204fef1239879a179)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dafac12c7d418469280b83920e99a48 = L.circleMarker(\\n\",\n       \"                [36.086, 114.32],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83b51d896a2a5ba77b6ff07881020086 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_45b03b7c8021374841ddc1dfd802a0fb = $(`&lt;div id=&quot;html_45b03b7c8021374841ddc1dfd802a0fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.32             latitude:36.086             PM2_5:72.47486034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83b51d896a2a5ba77b6ff07881020086.setContent(html_45b03b7c8021374841ddc1dfd802a0fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dafac12c7d418469280b83920e99a48.bindPopup(popup_83b51d896a2a5ba77b6ff07881020086)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af263269933a5ec2a5327f2cce25ce5e = L.circleMarker(\\n\",\n       \"                [29.2647, 117.1558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1a2ec7b341b4e11ab0f851025be683f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff4188fc5352c6258db0e818b37c9fb3 = $(`&lt;div id=&quot;html_ff4188fc5352c6258db0e818b37c9fb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1558             latitude:29.2647             PM2_5:32.66713483             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1a2ec7b341b4e11ab0f851025be683f.setContent(html_ff4188fc5352c6258db0e818b37c9fb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af263269933a5ec2a5327f2cce25ce5e.bindPopup(popup_f1a2ec7b341b4e11ab0f851025be683f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6130ebe2fbd98d41b2007f1e51565bfb = L.circleMarker(\\n\",\n       \"                [21.6669, 110.9067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92ae863c317c5bbd6bb1b4d950a16536 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_721dae9331a14e411dc2c9598ea28d56 = $(`&lt;div id=&quot;html_721dae9331a14e411dc2c9598ea28d56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9067             latitude:21.6669             PM2_5:30.53888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92ae863c317c5bbd6bb1b4d950a16536.setContent(html_721dae9331a14e411dc2c9598ea28d56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6130ebe2fbd98d41b2007f1e51565bfb.bindPopup(popup_92ae863c317c5bbd6bb1b4d950a16536)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9aebbf67524ac1e59f2bbe465891add7 = L.circleMarker(\\n\",\n       \"                [23.0467, 113.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1778ac403fccd3c5059f4ed2e4272c2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afc327a7338a81efb4aeccdf0018ed02 = $(`&lt;div id=&quot;html_afc327a7338a81efb4aeccdf0018ed02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.144             latitude:23.0467             PM2_5:35.05211268             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1778ac403fccd3c5059f4ed2e4272c2d.setContent(html_afc327a7338a81efb4aeccdf0018ed02);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9aebbf67524ac1e59f2bbe465891add7.bindPopup(popup_1778ac403fccd3c5059f4ed2e4272c2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_137f189c0c15626c307c99a3fb5087f5 = L.circleMarker(\\n\",\n       \"                [41.7775, 123.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5cec8f86462ece7638ce51996e74b64c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5eea17faee93f10f39fdb3ef8a5aabb = $(`&lt;div id=&quot;html_a5eea17faee93f10f39fdb3ef8a5aabb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.478             latitude:41.7775             PM2_5:34.99164345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5cec8f86462ece7638ce51996e74b64c.setContent(html_a5eea17faee93f10f39fdb3ef8a5aabb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_137f189c0c15626c307c99a3fb5087f5.bindPopup(popup_5cec8f86462ece7638ce51996e74b64c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5511ebc78c677472bcee62ba10ca2c7f = L.circleMarker(\\n\",\n       \"                [37.5211, 111.1406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4ba502b44642c5f21c61596b47f3d76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_607fd7df3376a95e28d9bb863e75e9a1 = $(`&lt;div id=&quot;html_607fd7df3376a95e28d9bb863e75e9a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1406             latitude:37.5211             PM2_5:61.23537604             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4ba502b44642c5f21c61596b47f3d76.setContent(html_607fd7df3376a95e28d9bb863e75e9a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5511ebc78c677472bcee62ba10ca2c7f.bindPopup(popup_a4ba502b44642c5f21c61596b47f3d76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5be78ff718149d3de79882e8661f58e8 = L.circleMarker(\\n\",\n       \"                [35.28385, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3b25a99f93ab40cb2ff85d9340095e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ddd48bea1c2b0f08c3a496fb7e6e876 = $(`&lt;div id=&quot;html_8ddd48bea1c2b0f08c3a496fb7e6e876&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:35.28385             PM2_5:53.94444444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3b25a99f93ab40cb2ff85d9340095e5.setContent(html_8ddd48bea1c2b0f08c3a496fb7e6e876);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5be78ff718149d3de79882e8661f58e8.bindPopup(popup_d3b25a99f93ab40cb2ff85d9340095e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b60e4651b780af186f8ee2a0cd90cce = L.circleMarker(\\n\",\n       \"                [26.6343, 106.7487],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5b08b18fe3b535c9abb1b1de00ca2b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b92680ccf8272795d1fca11c81b08da = $(`&lt;div id=&quot;html_0b92680ccf8272795d1fca11c81b08da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7487             latitude:26.6343             PM2_5:36.45365169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5b08b18fe3b535c9abb1b1de00ca2b8.setContent(html_0b92680ccf8272795d1fca11c81b08da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b60e4651b780af186f8ee2a0cd90cce.bindPopup(popup_e5b08b18fe3b535c9abb1b1de00ca2b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c20a1062f7ec771ccd31bf3b7c8debe = L.circleMarker(\\n\",\n       \"                [39.5453, 116.7022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38bbec5a6150385b9a88f475bff59085 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d6667975f7bb643959e6f6db4fccb72 = $(`&lt;div id=&quot;html_0d6667975f7bb643959e6f6db4fccb72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7022             latitude:39.5453             PM2_5:42.37047354             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38bbec5a6150385b9a88f475bff59085.setContent(html_0d6667975f7bb643959e6f6db4fccb72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c20a1062f7ec771ccd31bf3b7c8debe.bindPopup(popup_38bbec5a6150385b9a88f475bff59085)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49e7cc8cea5de3faf5e78ac75e8c8840 = L.circleMarker(\\n\",\n       \"                [36.6028, 109.4761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc6b2378d0db46d1381dc3aca67b75e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a0f2307720b90dabd7005c7ab2a17d9 = $(`&lt;div id=&quot;html_8a0f2307720b90dabd7005c7ab2a17d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4761             latitude:36.6028             PM2_5:26.54378531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc6b2378d0db46d1381dc3aca67b75e9.setContent(html_8a0f2307720b90dabd7005c7ab2a17d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49e7cc8cea5de3faf5e78ac75e8c8840.bindPopup(popup_dc6b2378d0db46d1381dc3aca67b75e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9eab492b2183076db541f8515042b18 = L.circleMarker(\\n\",\n       \"                [23.0706, 112.427],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67d1756a9aea5a7955e6400fcf2d6278 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cae753a8e0b95735ee33c808aa308cc = $(`&lt;div id=&quot;html_8cae753a8e0b95735ee33c808aa308cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.427             latitude:23.0706             PM2_5:39.67086835             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67d1756a9aea5a7955e6400fcf2d6278.setContent(html_8cae753a8e0b95735ee33c808aa308cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9eab492b2183076db541f8515042b18.bindPopup(popup_67d1756a9aea5a7955e6400fcf2d6278)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a555516788f90c6b9e37a5214ccc8996 = L.circleMarker(\\n\",\n       \"                [31.8516, 117.124],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9277054fcc92f21ceecde1ef46716101 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_394831240cfb1bed89464930906bb5d1 = $(`&lt;div id=&quot;html_394831240cfb1bed89464930906bb5d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.124             latitude:31.8516             PM2_5:46.00277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9277054fcc92f21ceecde1ef46716101.setContent(html_394831240cfb1bed89464930906bb5d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a555516788f90c6b9e37a5214ccc8996.bindPopup(popup_9277054fcc92f21ceecde1ef46716101)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_efe5bffa9344a8b6e840480123a49932 = L.circleMarker(\\n\",\n       \"                [22.5211, 113.3769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_888cd4aafbc0026b1273f11901a0fe70 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4688108436db53d0970981be9ca83da9 = $(`&lt;div id=&quot;html_4688108436db53d0970981be9ca83da9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3769             latitude:22.5211             PM2_5:35.20786517             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_888cd4aafbc0026b1273f11901a0fe70.setContent(html_4688108436db53d0970981be9ca83da9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_efe5bffa9344a8b6e840480123a49932.bindPopup(popup_888cd4aafbc0026b1273f11901a0fe70)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f64b658465b91f7ae8057aaec195c44f = L.circleMarker(\\n\",\n       \"                [33.3942, 120.156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8e9c0665d7bacca3a2148f84bc7624c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8e2a42713a3b3f5fd4f95abfe380cb4 = $(`&lt;div id=&quot;html_e8e2a42713a3b3f5fd4f95abfe380cb4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.156             latitude:33.3942             PM2_5:40.27158774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8e9c0665d7bacca3a2148f84bc7624c.setContent(html_e8e2a42713a3b3f5fd4f95abfe380cb4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f64b658465b91f7ae8057aaec195c44f.bindPopup(popup_b8e9c0665d7bacca3a2148f84bc7624c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b29ff688c42e421dc5fda620414fdd9 = L.circleMarker(\\n\",\n       \"                [39.5178, 116.6838],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_687bac6c9e13f0289c3812a9289a08b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f80c2671cc351fff93b7d8233b7dd10 = $(`&lt;div id=&quot;html_7f80c2671cc351fff93b7d8233b7dd10&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6838             latitude:39.5178             PM2_5:45.49159664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_687bac6c9e13f0289c3812a9289a08b2.setContent(html_7f80c2671cc351fff93b7d8233b7dd10);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b29ff688c42e421dc5fda620414fdd9.bindPopup(popup_687bac6c9e13f0289c3812a9289a08b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a4f79d23a2e62e3bcdcc130bdad7d9b = L.circleMarker(\\n\",\n       \"                [37.1152, 79.9485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04b9b150db7cbdcaf2f92241849df972 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3829f7feea7f1a049837688ddcb2f287 = $(`&lt;div id=&quot;html_3829f7feea7f1a049837688ddcb2f287&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:79.9485             latitude:37.1152             PM2_5:103.977591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04b9b150db7cbdcaf2f92241849df972.setContent(html_3829f7feea7f1a049837688ddcb2f287);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a4f79d23a2e62e3bcdcc130bdad7d9b.bindPopup(popup_04b9b150db7cbdcaf2f92241849df972)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd1cd188be0325d6f4249ec955da23d0 = L.circleMarker(\\n\",\n       \"                [30.5797, 105.7519],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9fd35f0767594f7a789270a2131f9a2e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ddead34c94a62d378422bc9a0b4052c = $(`&lt;div id=&quot;html_2ddead34c94a62d378422bc9a0b4052c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.7519             latitude:30.5797             PM2_5:43.79275362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9fd35f0767594f7a789270a2131f9a2e.setContent(html_2ddead34c94a62d378422bc9a0b4052c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd1cd188be0325d6f4249ec955da23d0.bindPopup(popup_9fd35f0767594f7a789270a2131f9a2e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93170bb159684d440032bca6449f6c15 = L.circleMarker(\\n\",\n       \"                [45.6842, 126.6206],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dff46a7f77c37876353aca8f93e53b10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f853d5a3f7d41486e2921592c9289de = $(`&lt;div id=&quot;html_8f853d5a3f7d41486e2921592c9289de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6206             latitude:45.6842             PM2_5:34.80031447             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dff46a7f77c37876353aca8f93e53b10.setContent(html_8f853d5a3f7d41486e2921592c9289de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93170bb159684d440032bca6449f6c15.bindPopup(popup_dff46a7f77c37876353aca8f93e53b10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d05097f1b79512b0316b253d664b1331 = L.circleMarker(\\n\",\n       \"                [30.9742, 118.7386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2162377a23441fab264d01e0f72b92a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71eaf681812d4e957d841d6ee74d6386 = $(`&lt;div id=&quot;html_71eaf681812d4e957d841d6ee74d6386&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7386             latitude:30.9742             PM2_5:41.79551821             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2162377a23441fab264d01e0f72b92a5.setContent(html_71eaf681812d4e957d841d6ee74d6386);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d05097f1b79512b0316b253d664b1331.bindPopup(popup_2162377a23441fab264d01e0f72b92a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c0e75e68aa99220d04d3ea53dd3a9e9b = L.circleMarker(\\n\",\n       \"                [28.8558, 105.4322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44d17327bdfd7b2e501d70f6e742a6c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18e6bbac89892f7a3574873b27f63d53 = $(`&lt;div id=&quot;html_18e6bbac89892f7a3574873b27f63d53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4322             latitude:28.8558             PM2_5:41.88997214             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44d17327bdfd7b2e501d70f6e742a6c1.setContent(html_18e6bbac89892f7a3574873b27f63d53);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c0e75e68aa99220d04d3ea53dd3a9e9b.bindPopup(popup_44d17327bdfd7b2e501d70f6e742a6c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f01808e48eff9d1a97bd197bb8ddbb2 = L.circleMarker(\\n\",\n       \"                [36.6275, 109.4131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e81c28c5c1a86731d61a98f89d86fdeb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a898e3d09c68e38119f7bccd7e26db2 = $(`&lt;div id=&quot;html_6a898e3d09c68e38119f7bccd7e26db2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4131             latitude:36.6275             PM2_5:29.30351906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e81c28c5c1a86731d61a98f89d86fdeb.setContent(html_6a898e3d09c68e38119f7bccd7e26db2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f01808e48eff9d1a97bd197bb8ddbb2.bindPopup(popup_e81c28c5c1a86731d61a98f89d86fdeb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab30d4caf0ae234bbbaabb0d97ea732d = L.circleMarker(\\n\",\n       \"                [29.7292, 115.988],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f393e59abb3c189ed3bb77024891bea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_872da30edf25eea718d333497d1e355a = $(`&lt;div id=&quot;html_872da30edf25eea718d333497d1e355a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.988             latitude:29.7292             PM2_5:44.39612188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f393e59abb3c189ed3bb77024891bea.setContent(html_872da30edf25eea718d333497d1e355a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab30d4caf0ae234bbbaabb0d97ea732d.bindPopup(popup_1f393e59abb3c189ed3bb77024891bea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50fd67271915350982f9f0537b5662f3 = L.circleMarker(\\n\",\n       \"                [22.5931, 113.0819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84388a02d9a47c8859f716298a0ce1f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f12753dd070cfdf3e0a5f790afa9f2a3 = $(`&lt;div id=&quot;html_f12753dd070cfdf3e0a5f790afa9f2a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0819             latitude:22.5931             PM2_5:35.44289694             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84388a02d9a47c8859f716298a0ce1f6.setContent(html_f12753dd070cfdf3e0a5f790afa9f2a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50fd67271915350982f9f0537b5662f3.bindPopup(popup_84388a02d9a47c8859f716298a0ce1f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dfd4ef53b0ab302302fb2335f9d6283e = L.circleMarker(\\n\",\n       \"                [30.475, 105.5956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4bf7b7015a29fed818c50741595df26f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab2e0a5a35a00a6917422ed5eed8ce02 = $(`&lt;div id=&quot;html_ab2e0a5a35a00a6917422ed5eed8ce02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.5956             latitude:30.475             PM2_5:38.00277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4bf7b7015a29fed818c50741595df26f.setContent(html_ab2e0a5a35a00a6917422ed5eed8ce02);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dfd4ef53b0ab302302fb2335f9d6283e.bindPopup(popup_4bf7b7015a29fed818c50741595df26f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9e9ca51a4d83bf14ff3a423f89419da = L.circleMarker(\\n\",\n       \"                [40.7688, 114.9032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_211aeba9d48103e43e2d66fcb1f9814b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3075a26c56b0e2e36ee91e6ecf8cd09 = $(`&lt;div id=&quot;html_f3075a26c56b0e2e36ee91e6ecf8cd09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9032             latitude:40.7688             PM2_5:29.62188366             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_211aeba9d48103e43e2d66fcb1f9814b.setContent(html_f3075a26c56b0e2e36ee91e6ecf8cd09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9e9ca51a4d83bf14ff3a423f89419da.bindPopup(popup_211aeba9d48103e43e2d66fcb1f9814b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ddfb30ab38c0d501caa3296b5615874 = L.circleMarker(\\n\",\n       \"                [41.0971, 122.9642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce8cba2cd9d09b490e603697beca4cd6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c87a094d7e577cd5d00edbd176f5285 = $(`&lt;div id=&quot;html_9c87a094d7e577cd5d00edbd176f5285&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.9642             latitude:41.0971             PM2_5:35.54178273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce8cba2cd9d09b490e603697beca4cd6.setContent(html_9c87a094d7e577cd5d00edbd176f5285);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ddfb30ab38c0d501caa3296b5615874.bindPopup(popup_ce8cba2cd9d09b490e603697beca4cd6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e35d8744d3bb86aaa287cbd141073f1 = L.circleMarker(\\n\",\n       \"                [41.9206, 126.4047],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a82c8c95218f94f3c9dd8d211399917b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10911c8d4e28c51042a344b712074767 = $(`&lt;div id=&quot;html_10911c8d4e28c51042a344b712074767&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4047             latitude:41.9206             PM2_5:37.63445378             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a82c8c95218f94f3c9dd8d211399917b.setContent(html_10911c8d4e28c51042a344b712074767);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e35d8744d3bb86aaa287cbd141073f1.bindPopup(popup_a82c8c95218f94f3c9dd8d211399917b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fa250d262e254a319cfd8a83a2b2da1 = L.circleMarker(\\n\",\n       \"                [35.5236, 107.6406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1672e0bbe251818387dd016067187bc2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc44b83c8b458c0fc782e866c4ce018a = $(`&lt;div id=&quot;html_fc44b83c8b458c0fc782e866c4ce018a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6406             latitude:35.5236             PM2_5:34.47075209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1672e0bbe251818387dd016067187bc2.setContent(html_fc44b83c8b458c0fc782e866c4ce018a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fa250d262e254a319cfd8a83a2b2da1.bindPopup(popup_1672e0bbe251818387dd016067187bc2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ec499e4b9a33a5c7061d486c4b955fc = L.circleMarker(\\n\",\n       \"                [31.4539, 104.7536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8e36867755b08dd3fe4afe64f60d889 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e669f3271a2e49116d2109f56ef014ef = $(`&lt;div id=&quot;html_e669f3271a2e49116d2109f56ef014ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7536             latitude:31.4539             PM2_5:50.954039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8e36867755b08dd3fe4afe64f60d889.setContent(html_e669f3271a2e49116d2109f56ef014ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ec499e4b9a33a5c7061d486c4b955fc.bindPopup(popup_b8e36867755b08dd3fe4afe64f60d889)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_defebc8d9381784256cd010cf8f9b1ed = L.circleMarker(\\n\",\n       \"                [40.6592, 122.2414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d65cb862a34e2eb6d0943e90a02be272 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_299b6361cd1c016e36702d0477711f70 = $(`&lt;div id=&quot;html_299b6361cd1c016e36702d0477711f70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2414             latitude:40.6592             PM2_5:31.50138504             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d65cb862a34e2eb6d0943e90a02be272.setContent(html_299b6361cd1c016e36702d0477711f70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_defebc8d9381784256cd010cf8f9b1ed.bindPopup(popup_d65cb862a34e2eb6d0943e90a02be272)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_541bb42016ee8c68fd9a8095d15ca416 = L.circleMarker(\\n\",\n       \"                [26.5747, 107.9783],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7459c33c86742d6ffbd62960fa70375 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9bdd101fae2d3e2f40e9519c335e41be = $(`&lt;div id=&quot;html_9bdd101fae2d3e2f40e9519c335e41be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.9783             latitude:26.5747             PM2_5:35.51815642             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7459c33c86742d6ffbd62960fa70375.setContent(html_9bdd101fae2d3e2f40e9519c335e41be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_541bb42016ee8c68fd9a8095d15ca416.bindPopup(popup_f7459c33c86742d6ffbd62960fa70375)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05076ba4fc63aeb70518d854ebf205bd = L.circleMarker(\\n\",\n       \"                [33.568, 114.005],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_62e9e3e35c00100927109631d442635f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d594c0dffbd8fddcc86586ddeb70bc71 = $(`&lt;div id=&quot;html_d594c0dffbd8fddcc86586ddeb70bc71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.005             latitude:33.568             PM2_5:57.45111732             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_62e9e3e35c00100927109631d442635f.setContent(html_d594c0dffbd8fddcc86586ddeb70bc71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05076ba4fc63aeb70518d854ebf205bd.bindPopup(popup_62e9e3e35c00100927109631d442635f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91217e818769af2809f4ff2fc2d535fd = L.circleMarker(\\n\",\n       \"                [27.583, 110.0394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3c1d6d460c7ad521d028a5b137ba64a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8dc5b3bafad6df014b6b5999661b80f7 = $(`&lt;div id=&quot;html_8dc5b3bafad6df014b6b5999661b80f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0394             latitude:27.583             PM2_5:43.59749304             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3c1d6d460c7ad521d028a5b137ba64a.setContent(html_8dc5b3bafad6df014b6b5999661b80f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91217e818769af2809f4ff2fc2d535fd.bindPopup(popup_c3c1d6d460c7ad521d028a5b137ba64a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb5c56d26beadaf81419885b7b4ba951 = L.circleMarker(\\n\",\n       \"                [43.8694, 125.325],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77b0a1276e03ad78c9508e109ac044f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a58e2f14eccdf6e82e8fb3024feb184 = $(`&lt;div id=&quot;html_1a58e2f14eccdf6e82e8fb3024feb184&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.325             latitude:43.8694             PM2_5:31.45596591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77b0a1276e03ad78c9508e109ac044f6.setContent(html_1a58e2f14eccdf6e82e8fb3024feb184);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb5c56d26beadaf81419885b7b4ba951.bindPopup(popup_77b0a1276e03ad78c9508e109ac044f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aae51dcda5a5de2028039b81682a9011 = L.circleMarker(\\n\",\n       \"                [36.5336, 116.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3eda6bd1455fea5b980cd5dec0077cd7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1fd0d57b56e0aa66d34219f9a4bfba9d = $(`&lt;div id=&quot;html_1fd0d57b56e0aa66d34219f9a4bfba9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.734             latitude:36.5336             PM2_5:58.35446686             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3eda6bd1455fea5b980cd5dec0077cd7.setContent(html_1fd0d57b56e0aa66d34219f9a4bfba9d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aae51dcda5a5de2028039b81682a9011.bindPopup(popup_3eda6bd1455fea5b980cd5dec0077cd7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a56bb98ba8c314083f531b65b11cb63e = L.circleMarker(\\n\",\n       \"                [35.4039, 116.5546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71a1089a6d2bba0332cce8c51f37571e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cde382e95a88cdb8f2183f0dd4a99bd1 = $(`&lt;div id=&quot;html_cde382e95a88cdb8f2183f0dd4a99bd1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5546             latitude:35.4039             PM2_5:45.83753501             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71a1089a6d2bba0332cce8c51f37571e.setContent(html_cde382e95a88cdb8f2183f0dd4a99bd1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a56bb98ba8c314083f531b65b11cb63e.bindPopup(popup_71a1089a6d2bba0332cce8c51f37571e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fde2b6110a07274e788109a851711a9 = L.circleMarker(\\n\",\n       \"                [34.0117, 113.8331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d2e4dd16d9ece60db729c1e99592b541 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ca3d04c602d4125f899e89db94d7db0 = $(`&lt;div id=&quot;html_8ca3d04c602d4125f899e89db94d7db0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8331             latitude:34.0117             PM2_5:56.1302521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d2e4dd16d9ece60db729c1e99592b541.setContent(html_8ca3d04c602d4125f899e89db94d7db0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fde2b6110a07274e788109a851711a9.bindPopup(popup_d2e4dd16d9ece60db729c1e99592b541)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8bf9794dc18cf498930e26ef41f2a688 = L.circleMarker(\\n\",\n       \"                [28.9664, 118.871],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a70bb840fcb0cc3866fd3741907e9323 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cdffbd3e6c9c2c4b957e625eb0583235 = $(`&lt;div id=&quot;html_cdffbd3e6c9c2c4b957e625eb0583235&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.871             latitude:28.9664             PM2_5:34.66526611             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a70bb840fcb0cc3866fd3741907e9323.setContent(html_cdffbd3e6c9c2c4b957e625eb0583235);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8bf9794dc18cf498930e26ef41f2a688.bindPopup(popup_a70bb840fcb0cc3866fd3741907e9323)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2641bf03e22e682291cf132073b3ad2 = L.circleMarker(\\n\",\n       \"                [24.68636111, 113.5970833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_221abc753e3e66c8c85b95e58700f095 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c5d3d27eb68cc77da8dee8ada2bdda6 = $(`&lt;div id=&quot;html_1c5d3d27eb68cc77da8dee8ada2bdda6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5970833             latitude:24.68636111             PM2_5:38.7745098             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_221abc753e3e66c8c85b95e58700f095.setContent(html_1c5d3d27eb68cc77da8dee8ada2bdda6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2641bf03e22e682291cf132073b3ad2.bindPopup(popup_221abc753e3e66c8c85b95e58700f095)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_644ae3710b5027ce5c11d3e29592f13e = L.circleMarker(\\n\",\n       \"                [37.393, 117.9776],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0c83704d4668f6bb9aef1ceb0ef697f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c5692bbfec5eb68bee0d523b968d09e = $(`&lt;div id=&quot;html_1c5692bbfec5eb68bee0d523b968d09e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9776             latitude:37.393             PM2_5:53.84180791             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0c83704d4668f6bb9aef1ceb0ef697f.setContent(html_1c5692bbfec5eb68bee0d523b968d09e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_644ae3710b5027ce5c11d3e29592f13e.bindPopup(popup_c0c83704d4668f6bb9aef1ceb0ef697f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d12b299bba779efe04f30c08e56a01c5 = L.circleMarker(\\n\",\n       \"                [37.8531, 113.6292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9cb472a8805191873a6cd9d54f20535e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7c932ea32e1b42e64a16954605ebdfa = $(`&lt;div id=&quot;html_c7c932ea32e1b42e64a16954605ebdfa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6292             latitude:37.8531             PM2_5:53.93452381             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9cb472a8805191873a6cd9d54f20535e.setContent(html_c7c932ea32e1b42e64a16954605ebdfa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d12b299bba779efe04f30c08e56a01c5.bindPopup(popup_9cb472a8805191873a6cd9d54f20535e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9141b37b08667ae346abe3323a5b8e10 = L.circleMarker(\\n\",\n       \"                [41.3369, 123.7528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27b1a44b6809f2d001e5498e4bf9e16a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a1cf2409c1f3e210d1d5fb8893cd956 = $(`&lt;div id=&quot;html_7a1cf2409c1f3e210d1d5fb8893cd956&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7528             latitude:41.3369             PM2_5:27.14763231             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27b1a44b6809f2d001e5498e4bf9e16a.setContent(html_7a1cf2409c1f3e210d1d5fb8893cd956);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9141b37b08667ae346abe3323a5b8e10.bindPopup(popup_27b1a44b6809f2d001e5498e4bf9e16a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67b1d6a6eb19118f2bf494a0be14924c = L.circleMarker(\\n\",\n       \"                [30.2311, 119.6942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea7542c22573bac5b8c3d7a63fae420c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2ba405c93fb8d05f809a719208c9e32 = $(`&lt;div id=&quot;html_b2ba405c93fb8d05f809a719208c9e32&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6942             latitude:30.2311             PM2_5:36.65868263             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea7542c22573bac5b8c3d7a63fae420c.setContent(html_b2ba405c93fb8d05f809a719208c9e32);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67b1d6a6eb19118f2bf494a0be14924c.bindPopup(popup_ea7542c22573bac5b8c3d7a63fae420c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c963860ea778a7356f9463d8a31312ed = L.circleMarker(\\n\",\n       \"                [31.8585, 117.336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d54887a732d10f36ba96bf4e0ff2075 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c971c28a729e559031a0cf43e7159ff1 = $(`&lt;div id=&quot;html_c971c28a729e559031a0cf43e7159ff1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.336             latitude:31.8585             PM2_5:51.78089888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d54887a732d10f36ba96bf4e0ff2075.setContent(html_c971c28a729e559031a0cf43e7159ff1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c963860ea778a7356f9463d8a31312ed.bindPopup(popup_2d54887a732d10f36ba96bf4e0ff2075)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83727a9348028278c016eb4cf085b0e4 = L.circleMarker(\\n\",\n       \"                [26.6266, 106.6243],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bfe5c1e7a918d5222f8bb548d5492ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f12fc3b098b513ab4a3923055b87cf55 = $(`&lt;div id=&quot;html_f12fc3b098b513ab4a3923055b87cf55&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6243             latitude:26.6266             PM2_5:29.28045326             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bfe5c1e7a918d5222f8bb548d5492ee.setContent(html_f12fc3b098b513ab4a3923055b87cf55);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83727a9348028278c016eb4cf085b0e4.bindPopup(popup_0bfe5c1e7a918d5222f8bb548d5492ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_955fb49419c8641cabf365b767d5140e = L.circleMarker(\\n\",\n       \"                [38.85611111, 121.5180556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f18c5e55901b38cad814ece76c63e72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aea08d27f459cdda591b86c758f3e7dc = $(`&lt;div id=&quot;html_aea08d27f459cdda591b86c758f3e7dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5180556             latitude:38.85611111             PM2_5:26.56786704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f18c5e55901b38cad814ece76c63e72.setContent(html_aea08d27f459cdda591b86c758f3e7dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_955fb49419c8641cabf365b767d5140e.bindPopup(popup_1f18c5e55901b38cad814ece76c63e72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82015d52b8a9058ef5b3570543d339b5 = L.circleMarker(\\n\",\n       \"                [46.0703, 122.0506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_237d06509d968bce5f9ab1b0c0146afc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc6b59c12614758cd2bc5732b5d26ddc = $(`&lt;div id=&quot;html_dc6b59c12614758cd2bc5732b5d26ddc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0506             latitude:46.0703             PM2_5:10.9972067             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_237d06509d968bce5f9ab1b0c0146afc.setContent(html_dc6b59c12614758cd2bc5732b5d26ddc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82015d52b8a9058ef5b3570543d339b5.bindPopup(popup_237d06509d968bce5f9ab1b0c0146afc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_681ee0babaaff717766112d62c0ba909 = L.circleMarker(\\n\",\n       \"                [22.2281, 113.299],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c74ab4b378fb96fd49e15852db041219 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e83aa39670f77c99a745a536b94f028 = $(`&lt;div id=&quot;html_7e83aa39670f77c99a745a536b94f028&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.299             latitude:22.2281             PM2_5:30.13276836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c74ab4b378fb96fd49e15852db041219.setContent(html_7e83aa39670f77c99a745a536b94f028);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_681ee0babaaff717766112d62c0ba909.bindPopup(popup_c74ab4b378fb96fd49e15852db041219)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88ba70411420ac636346e3a6f87afa7d = L.circleMarker(\\n\",\n       \"                [30.51197222, 117.0331111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d39ff36bc60f14c16c3acc799283a26 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_940b4a93a755dd326cf8ccd116e4a157 = $(`&lt;div id=&quot;html_940b4a93a755dd326cf8ccd116e4a157&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0331111             latitude:30.51197222             PM2_5:50.17827298             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d39ff36bc60f14c16c3acc799283a26.setContent(html_940b4a93a755dd326cf8ccd116e4a157);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88ba70411420ac636346e3a6f87afa7d.bindPopup(popup_5d39ff36bc60f14c16c3acc799283a26)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a9c31c242ad715c655ff86174e71e66 = L.circleMarker(\\n\",\n       \"                [38.9108, 115.4713],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_432ec79f2989c38a251285317e72d159 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aaeae0c7cb73a83d974c6b96a6a4af38 = $(`&lt;div id=&quot;html_aaeae0c7cb73a83d974c6b96a6a4af38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.4713             latitude:38.9108             PM2_5:58.6801676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_432ec79f2989c38a251285317e72d159.setContent(html_aaeae0c7cb73a83d974c6b96a6a4af38);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a9c31c242ad715c655ff86174e71e66.bindPopup(popup_432ec79f2989c38a251285317e72d159)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a0544598d3a97878c72e384c646673e = L.circleMarker(\\n\",\n       \"                [32.4429, 105.8242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b532d7d0b0ffc0e2bf6cbdb878f11116 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51a169329e19db3c6aa0dd21a4c351b7 = $(`&lt;div id=&quot;html_51a169329e19db3c6aa0dd21a4c351b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8242             latitude:32.4429             PM2_5:25.40529248             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b532d7d0b0ffc0e2bf6cbdb878f11116.setContent(html_51a169329e19db3c6aa0dd21a4c351b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a0544598d3a97878c72e384c646673e.bindPopup(popup_b532d7d0b0ffc0e2bf6cbdb878f11116)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc4d868fcd79349b81a7c4d1a1b6a3d0 = L.circleMarker(\\n\",\n       \"                [29.7207, 118.3236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2bd73a480fe1beda6a4aa2d407e39780 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4afc98acae31856b8b72a78e6b9279a = $(`&lt;div id=&quot;html_c4afc98acae31856b8b72a78e6b9279a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3236             latitude:29.7207             PM2_5:23.60451977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2bd73a480fe1beda6a4aa2d407e39780.setContent(html_c4afc98acae31856b8b72a78e6b9279a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc4d868fcd79349b81a7c4d1a1b6a3d0.bindPopup(popup_2bd73a480fe1beda6a4aa2d407e39780)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f47fb2767d7d5b8c176529974baf8ea8 = L.circleMarker(\\n\",\n       \"                [26.4364, 111.5992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef7c0a20e589fbe4788f77de28a2cdc0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0aa889b5b18ec6418f2a2499842061ba = $(`&lt;div id=&quot;html_0aa889b5b18ec6418f2a2499842061ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5992             latitude:26.4364             PM2_5:38.71856287             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef7c0a20e589fbe4788f77de28a2cdc0.setContent(html_0aa889b5b18ec6418f2a2499842061ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f47fb2767d7d5b8c176529974baf8ea8.bindPopup(popup_ef7c0a20e589fbe4788f77de28a2cdc0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37c7c052ea93f02aafe731cfc4ddf1f9 = L.circleMarker(\\n\",\n       \"                [31.6928, 118.48],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8b90c805b0dbf2a2040eef5af6bb6e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a574c6614a40b00bf24e09bda07be24 = $(`&lt;div id=&quot;html_1a574c6614a40b00bf24e09bda07be24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.48             latitude:31.6928             PM2_5:42.37571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8b90c805b0dbf2a2040eef5af6bb6e6.setContent(html_1a574c6614a40b00bf24e09bda07be24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37c7c052ea93f02aafe731cfc4ddf1f9.bindPopup(popup_a8b90c805b0dbf2a2040eef5af6bb6e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20b4971a273a09125f877dd91d051a48 = L.circleMarker(\\n\",\n       \"                [39.9567, 119.6023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_64516e24034a00b2e75e50873bfebfd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3cc4af6f1b26b31a096b64927c01c429 = $(`&lt;div id=&quot;html_3cc4af6f1b26b31a096b64927c01c429&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6023             latitude:39.9567             PM2_5:38.59305556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_64516e24034a00b2e75e50873bfebfd5.setContent(html_3cc4af6f1b26b31a096b64927c01c429);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20b4971a273a09125f877dd91d051a48.bindPopup(popup_64516e24034a00b2e75e50873bfebfd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0edea40a1b67640446d81dadb9882d88 = L.circleMarker(\\n\",\n       \"                [40.6511, 122.215],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c4699536e47dc90eeb22ad08c522164 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a542a648022412ca12a91a686899d571 = $(`&lt;div id=&quot;html_a542a648022412ca12a91a686899d571&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.215             latitude:40.6511             PM2_5:28.33286908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c4699536e47dc90eeb22ad08c522164.setContent(html_a542a648022412ca12a91a686899d571);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0edea40a1b67640446d81dadb9882d88.bindPopup(popup_1c4699536e47dc90eeb22ad08c522164)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e79f791475f029446af13e4543fb1475 = L.circleMarker(\\n\",\n       \"                [24.44583333, 118.0636111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20eedf0c4622d6924e1b3c72dae42185 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1770e0e225979932b8427130bae51cf1 = $(`&lt;div id=&quot;html_1770e0e225979932b8427130bae51cf1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0636111             latitude:24.44583333             PM2_5:28.7359736             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20eedf0c4622d6924e1b3c72dae42185.setContent(html_1770e0e225979932b8427130bae51cf1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e79f791475f029446af13e4543fb1475.bindPopup(popup_20eedf0c4622d6924e1b3c72dae42185)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b06b0f8ac56fa5196d397abfb325e3e4 = L.circleMarker(\\n\",\n       \"                [45.755, 126.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f2e700e4ebaf59ed169771d8ccc829e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a307b88e47915cef8a5d0872ae37ad00 = $(`&lt;div id=&quot;html_a307b88e47915cef8a5d0872ae37ad00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.542             latitude:45.755             PM2_5:32.56527778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f2e700e4ebaf59ed169771d8ccc829e.setContent(html_a307b88e47915cef8a5d0872ae37ad00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b06b0f8ac56fa5196d397abfb325e3e4.bindPopup(popup_4f2e700e4ebaf59ed169771d8ccc829e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71c1872b21e064958696daa736e013bb = L.circleMarker(\\n\",\n       \"                [31.1907, 121.703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3152b8beb7f0c9fc65902624195c4814 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de4e89817f978a971e4e2215233f226c = $(`&lt;div id=&quot;html_de4e89817f978a971e4e2215233f226c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.703             latitude:31.1907             PM2_5:36.71126761             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3152b8beb7f0c9fc65902624195c4814.setContent(html_de4e89817f978a971e4e2215233f226c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71c1872b21e064958696daa736e013bb.bindPopup(popup_3152b8beb7f0c9fc65902624195c4814)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2c13ac074aaa572109c9727eb690e26 = L.circleMarker(\\n\",\n       \"                [23.63444, 113.0472],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb952d0122f4b0fce0f4c843044905c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_725ce188a5df11108c85ea91fdf1dc79 = $(`&lt;div id=&quot;html_725ce188a5df11108c85ea91fdf1dc79&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0472             latitude:23.63444             PM2_5:34.71169916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb952d0122f4b0fce0f4c843044905c9.setContent(html_725ce188a5df11108c85ea91fdf1dc79);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2c13ac074aaa572109c9727eb690e26.bindPopup(popup_bb952d0122f4b0fce0f4c843044905c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58704b57cddd86d672605056fa086843 = L.circleMarker(\\n\",\n       \"                [34.3274, 109.043],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05a90fc3eb51009c39f6cb9681d0e60f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9ee84cf89b741cfb5b709089a748b66 = $(`&lt;div id=&quot;html_e9ee84cf89b741cfb5b709089a748b66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.043             latitude:34.3274             PM2_5:65.58142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05a90fc3eb51009c39f6cb9681d0e60f.setContent(html_e9ee84cf89b741cfb5b709089a748b66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58704b57cddd86d672605056fa086843.bindPopup(popup_05a90fc3eb51009c39f6cb9681d0e60f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_980c7a57d31c82d45f45378db34cad9f = L.circleMarker(\\n\",\n       \"                [37.8873, 112.522],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b8605e588f68a40ad5e803087d350a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a99b121ed7f27707cce3affe413358ee = $(`&lt;div id=&quot;html_a99b121ed7f27707cce3affe413358ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.522             latitude:37.8873             PM2_5:63.20200573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b8605e588f68a40ad5e803087d350a2.setContent(html_a99b121ed7f27707cce3affe413358ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_980c7a57d31c82d45f45378db34cad9f.bindPopup(popup_3b8605e588f68a40ad5e803087d350a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e65252bc3fe7850d6291449529ae66fc = L.circleMarker(\\n\",\n       \"                [30.66, 117.49],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e257bd8ebad6cbd908774aedd607b28a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d57f495f313f28554efdac92afc7ee93 = $(`&lt;div id=&quot;html_d57f495f313f28554efdac92afc7ee93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.49             latitude:30.66             PM2_5:55.51436782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e257bd8ebad6cbd908774aedd607b28a.setContent(html_d57f495f313f28554efdac92afc7ee93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e65252bc3fe7850d6291449529ae66fc.bindPopup(popup_e257bd8ebad6cbd908774aedd607b28a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7f391941e7bcd2b57182e8037d27ee1 = L.circleMarker(\\n\",\n       \"                [31.4846, 92.0657],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d66980f7bc38feb51480b63afc2a0ecf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c061da4a60aa795917eb345054f25f0 = $(`&lt;div id=&quot;html_4c061da4a60aa795917eb345054f25f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:92.0657             latitude:31.4846             PM2_5:44.10614525             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d66980f7bc38feb51480b63afc2a0ecf.setContent(html_4c061da4a60aa795917eb345054f25f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7f391941e7bcd2b57182e8037d27ee1.bindPopup(popup_d66980f7bc38feb51480b63afc2a0ecf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7a8795e7113f2880df4ee4fc7aa31fd = L.circleMarker(\\n\",\n       \"                [46.528, 125.112],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de71cefea8100d6c5c3ebcab44d85fd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9bd539edeafb33302892095e9d3d0244 = $(`&lt;div id=&quot;html_9bd539edeafb33302892095e9d3d0244&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.112             latitude:46.528             PM2_5:25.71428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de71cefea8100d6c5c3ebcab44d85fd5.setContent(html_9bd539edeafb33302892095e9d3d0244);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7a8795e7113f2880df4ee4fc7aa31fd.bindPopup(popup_de71cefea8100d6c5c3ebcab44d85fd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_897851d3234f063bb7c1432382e2b866 = L.circleMarker(\\n\",\n       \"                [35.5714, 104.6228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_736daa864db50a19f99437904fcd6f15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d741a59cc73d280c7d72d0ad5017ff6 = $(`&lt;div id=&quot;html_9d741a59cc73d280c7d72d0ad5017ff6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6228             latitude:35.5714             PM2_5:27.74789916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_736daa864db50a19f99437904fcd6f15.setContent(html_9d741a59cc73d280c7d72d0ad5017ff6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_897851d3234f063bb7c1432382e2b866.bindPopup(popup_736daa864db50a19f99437904fcd6f15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8674a5ddb61933f4d2cfa01fa631ff97 = L.circleMarker(\\n\",\n       \"                [26.6946, 119.5001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98afe24a2fa48414f930d9e66bd6f7aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9679ffadcbb081bf75427f51544637c9 = $(`&lt;div id=&quot;html_9679ffadcbb081bf75427f51544637c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5001             latitude:26.6946             PM2_5:30.51558074             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98afe24a2fa48414f930d9e66bd6f7aa.setContent(html_9679ffadcbb081bf75427f51544637c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8674a5ddb61933f4d2cfa01fa631ff97.bindPopup(popup_98afe24a2fa48414f930d9e66bd6f7aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c8c89b166c599433b9958319fa048af = L.circleMarker(\\n\",\n       \"                [31.2058, 107.4611],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f7894c240c2df5c08edf8e0c5f4ce49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_736aa627e17e119e87bbd884f996d892 = $(`&lt;div id=&quot;html_736aa627e17e119e87bbd884f996d892&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4611             latitude:31.2058             PM2_5:57.28272981             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f7894c240c2df5c08edf8e0c5f4ce49.setContent(html_736aa627e17e119e87bbd884f996d892);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c8c89b166c599433b9958319fa048af.bindPopup(popup_9f7894c240c2df5c08edf8e0c5f4ce49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25c17f2e98dba06e9ae3197b2d421bea = L.circleMarker(\\n\",\n       \"                [37.7111, 112.7306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c57cc54cf8456ad2904e38c3ab53779b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf906d76ad5aec5b56467b22b84d532d = $(`&lt;div id=&quot;html_bf906d76ad5aec5b56467b22b84d532d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7306             latitude:37.7111             PM2_5:57.2367688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c57cc54cf8456ad2904e38c3ab53779b.setContent(html_bf906d76ad5aec5b56467b22b84d532d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25c17f2e98dba06e9ae3197b2d421bea.bindPopup(popup_c57cc54cf8456ad2904e38c3ab53779b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5bb38237f4a613f2071d23f5dc588a62 = L.circleMarker(\\n\",\n       \"                [36.7008, 119.1425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d74b384c4d25b1d4799e950c8c98537d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c04af8c32336f59f9bcb00ee47486ac = $(`&lt;div id=&quot;html_1c04af8c32336f59f9bcb00ee47486ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1425             latitude:36.7008             PM2_5:47.30812325             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d74b384c4d25b1d4799e950c8c98537d.setContent(html_1c04af8c32336f59f9bcb00ee47486ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5bb38237f4a613f2071d23f5dc588a62.bindPopup(popup_d74b384c4d25b1d4799e950c8c98537d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2c6e3b42964a93c098712d24535c861 = L.circleMarker(\\n\",\n       \"                [41.2692, 123.7989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9026034b6ce792500a28a59357b6de4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f0924ce9d35d7fa9803fbff2f9e0db7 = $(`&lt;div id=&quot;html_3f0924ce9d35d7fa9803fbff2f9e0db7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7989             latitude:41.2692             PM2_5:27.25905292             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9026034b6ce792500a28a59357b6de4.setContent(html_3f0924ce9d35d7fa9803fbff2f9e0db7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2c6e3b42964a93c098712d24535c861.bindPopup(popup_d9026034b6ce792500a28a59357b6de4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7f6c134e3b26b7f61c4ff0f88cd2db5 = L.circleMarker(\\n\",\n       \"                [35.4934, 112.835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52852369a4e9d8e2ac3b6b8e9b7154c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0bc359094ed3e0afbe528913d64bead = $(`&lt;div id=&quot;html_f0bc359094ed3e0afbe528913d64bead&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.835             latitude:35.4934             PM2_5:59.60277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52852369a4e9d8e2ac3b6b8e9b7154c7.setContent(html_f0bc359094ed3e0afbe528913d64bead);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7f6c134e3b26b7f61c4ff0f88cd2db5.bindPopup(popup_52852369a4e9d8e2ac3b6b8e9b7154c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fd3cb93d1320a468bd7b72681460301 = L.circleMarker(\\n\",\n       \"                [39.2474, 117.7918],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6d890a0be2f2d05c23b6465c03f7ef81 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05dd08a187b8e1305b3c8ad0bbf14148 = $(`&lt;div id=&quot;html_05dd08a187b8e1305b3c8ad0bbf14148&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7918             latitude:39.2474             PM2_5:53.30225989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6d890a0be2f2d05c23b6465c03f7ef81.setContent(html_05dd08a187b8e1305b3c8ad0bbf14148);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fd3cb93d1320a468bd7b72681460301.bindPopup(popup_6d890a0be2f2d05c23b6465c03f7ef81)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a2c5061b0bd54d652910aee57f6de72 = L.circleMarker(\\n\",\n       \"                [44.8969, 82.0806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6df0a5e466efe496c3510279647a7020 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9cbcae603be77280dcc7fb4c4182f206 = $(`&lt;div id=&quot;html_9cbcae603be77280dcc7fb4c4182f206&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.0806             latitude:44.8969             PM2_5:34.93175487             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6df0a5e466efe496c3510279647a7020.setContent(html_9cbcae603be77280dcc7fb4c4182f206);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a2c5061b0bd54d652910aee57f6de72.bindPopup(popup_6df0a5e466efe496c3510279647a7020)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d229419a382c69e990f53a4e1db878a9 = L.circleMarker(\\n\",\n       \"                [37.154, 122.471],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21a2fbb5f77b442734696497e13ce421 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b9e3adecfa1200c43cf6a460c8bef25 = $(`&lt;div id=&quot;html_5b9e3adecfa1200c43cf6a460c8bef25&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.471             latitude:37.154             PM2_5:20.93626062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21a2fbb5f77b442734696497e13ce421.setContent(html_5b9e3adecfa1200c43cf6a460c8bef25);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d229419a382c69e990f53a4e1db878a9.bindPopup(popup_21a2fbb5f77b442734696497e13ce421)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a656e0863f0d612321d63d6856aebc3 = L.circleMarker(\\n\",\n       \"                [40.7612, 111.717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_908669aa79ef32539d02148bc14f17fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1767bf34b1094d7c33df1ca19d4f4bce = $(`&lt;div id=&quot;html_1767bf34b1094d7c33df1ca19d4f4bce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.717             latitude:40.7612             PM2_5:35.41242938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_908669aa79ef32539d02148bc14f17fa.setContent(html_1767bf34b1094d7c33df1ca19d4f4bce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a656e0863f0d612321d63d6856aebc3.bindPopup(popup_908669aa79ef32539d02148bc14f17fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_031d5fd949bcb565b25000e605bee5ed = L.circleMarker(\\n\",\n       \"                [40.0917, 113.3444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24eea227160d54a7fb36ebd2c2acf74d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_833678fe4d598af067aa3efc9529d7fb = $(`&lt;div id=&quot;html_833678fe4d598af067aa3efc9529d7fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3444             latitude:40.0917             PM2_5:36.00139665             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24eea227160d54a7fb36ebd2c2acf74d.setContent(html_833678fe4d598af067aa3efc9529d7fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_031d5fd949bcb565b25000e605bee5ed.bindPopup(popup_24eea227160d54a7fb36ebd2c2acf74d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29c61541a441e33e8c36b1154222bd42 = L.circleMarker(\\n\",\n       \"                [21.8536, 111.9508],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e40059c1a6704f4177e1b65ec170dffa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_277794bbeb3c9f51c44a1b89cf1c011b = $(`&lt;div id=&quot;html_277794bbeb3c9f51c44a1b89cf1c011b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9508             latitude:21.8536             PM2_5:31.69088319             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e40059c1a6704f4177e1b65ec170dffa.setContent(html_277794bbeb3c9f51c44a1b89cf1c011b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29c61541a441e33e8c36b1154222bd42.bindPopup(popup_e40059c1a6704f4177e1b65ec170dffa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4bae35754bc2e47d358e433d8ea4f01 = L.circleMarker(\\n\",\n       \"                [42.0228, 121.6722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_447cbe1c9d8b37f09beef6780bc28aa2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5ebbb638af196e8f539dbbb718712f8 = $(`&lt;div id=&quot;html_d5ebbb638af196e8f539dbbb718712f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6722             latitude:42.0228             PM2_5:28.55070423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_447cbe1c9d8b37f09beef6780bc28aa2.setContent(html_d5ebbb638af196e8f539dbbb718712f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4bae35754bc2e47d358e433d8ea4f01.bindPopup(popup_447cbe1c9d8b37f09beef6780bc28aa2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6509d9ef04f0a5b89c7981b734ed5af4 = L.circleMarker(\\n\",\n       \"                [36.6872, 116.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e74ca91e06988bb93599ffab487c3e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_741b10a2ede7051b8e1cc1349617104a = $(`&lt;div id=&quot;html_741b10a2ede7051b8e1cc1349617104a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.989             latitude:36.6872             PM2_5:52.91253644             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e74ca91e06988bb93599ffab487c3e2.setContent(html_741b10a2ede7051b8e1cc1349617104a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6509d9ef04f0a5b89c7981b734ed5af4.bindPopup(popup_1e74ca91e06988bb93599ffab487c3e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab104fb78f86100d9bede3546232e2a7 = L.circleMarker(\\n\",\n       \"                [31.9108, 119.905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_011797f747562dbabe8e17c6edbb5451 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d8d8b3a9ab22ae511ffc29b74be73be = $(`&lt;div id=&quot;html_4d8d8b3a9ab22ae511ffc29b74be73be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.905             latitude:31.9108             PM2_5:48.17130919             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_011797f747562dbabe8e17c6edbb5451.setContent(html_4d8d8b3a9ab22ae511ffc29b74be73be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab104fb78f86100d9bede3546232e2a7.bindPopup(popup_011797f747562dbabe8e17c6edbb5451)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fb0ce8f14c71555d917a4a8a1f886f2 = L.circleMarker(\\n\",\n       \"                [44.2967, 86.0497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fe5824b7ffb6b8f64b7be11a601ef73 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_550bc6aaa63b5e036d5fda39a6f2ac7a = $(`&lt;div id=&quot;html_550bc6aaa63b5e036d5fda39a6f2ac7a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.0497             latitude:44.2967             PM2_5:59.0518732             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fe5824b7ffb6b8f64b7be11a601ef73.setContent(html_550bc6aaa63b5e036d5fda39a6f2ac7a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fb0ce8f14c71555d917a4a8a1f886f2.bindPopup(popup_6fe5824b7ffb6b8f64b7be11a601ef73)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b64754bdc70c48ad8a7e57467f250383 = L.circleMarker(\\n\",\n       \"                [37.7379, 115.6426],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ae2d1ea93dff0c4e81fa50580b3e0b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a85f2f0631715149757a3e78f3c129b = $(`&lt;div id=&quot;html_8a85f2f0631715149757a3e78f3c129b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6426             latitude:37.7379             PM2_5:63.57938719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ae2d1ea93dff0c4e81fa50580b3e0b9.setContent(html_8a85f2f0631715149757a3e78f3c129b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b64754bdc70c48ad8a7e57467f250383.bindPopup(popup_2ae2d1ea93dff0c4e81fa50580b3e0b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07bdc08f455259f5f72949f45f0927ea = L.circleMarker(\\n\",\n       \"                [22.7019, 110.1106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bac10c8dd2ff9ce519dac8237433a43 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36d01a60b7556ad62b786c13d68e3a0a = $(`&lt;div id=&quot;html_36d01a60b7556ad62b786c13d68e3a0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1106             latitude:22.7019             PM2_5:33.85714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bac10c8dd2ff9ce519dac8237433a43.setContent(html_36d01a60b7556ad62b786c13d68e3a0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07bdc08f455259f5f72949f45f0927ea.bindPopup(popup_7bac10c8dd2ff9ce519dac8237433a43)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c63ecad87b62780d2bde488dcc880f0 = L.circleMarker(\\n\",\n       \"                [37.4967, 121.2611],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bebf5ceef71204bfb55edad5fb7d042 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_719d834eb1e5d735b19443527c5c352b = $(`&lt;div id=&quot;html_719d834eb1e5d735b19443527c5c352b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2611             latitude:37.4967             PM2_5:30.04441261             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bebf5ceef71204bfb55edad5fb7d042.setContent(html_719d834eb1e5d735b19443527c5c352b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c63ecad87b62780d2bde488dcc880f0.bindPopup(popup_0bebf5ceef71204bfb55edad5fb7d042)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_408732421ce1d3f7cd084aede687381e = L.circleMarker(\\n\",\n       \"                [26.8906, 100.2203],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c24970f56b0777e541554fe06816516 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2103d2f37a6caec2e5b7ef975955d758 = $(`&lt;div id=&quot;html_2103d2f37a6caec2e5b7ef975955d758&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2203             latitude:26.8906             PM2_5:12.86505682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c24970f56b0777e541554fe06816516.setContent(html_2103d2f37a6caec2e5b7ef975955d758);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_408732421ce1d3f7cd084aede687381e.bindPopup(popup_7c24970f56b0777e541554fe06816516)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b2f8d066dbb6d7489eacbd8bdc03ff6 = L.circleMarker(\\n\",\n       \"                [28.4303, 117.9033],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6bd8a62f4f38b6e13f19b0bd43e3fc46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5910ee44774ece6b1e13292afba14cb = $(`&lt;div id=&quot;html_b5910ee44774ece6b1e13292afba14cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9033             latitude:28.4303             PM2_5:43.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6bd8a62f4f38b6e13f19b0bd43e3fc46.setContent(html_b5910ee44774ece6b1e13292afba14cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b2f8d066dbb6d7489eacbd8bdc03ff6.bindPopup(popup_6bd8a62f4f38b6e13f19b0bd43e3fc46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5bf42511631e267c001478268b16da1f = L.circleMarker(\\n\",\n       \"                [33.8997, 116.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_632b64a122021e38beabba7b629370ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7050e083764b253a2b5f22b8c2dd2b2c = $(`&lt;div id=&quot;html_7050e083764b253a2b5f22b8c2dd2b2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8067             latitude:33.8997             PM2_5:59.70949721             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_632b64a122021e38beabba7b629370ca.setContent(html_7050e083764b253a2b5f22b8c2dd2b2c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5bf42511631e267c001478268b16da1f.bindPopup(popup_632b64a122021e38beabba7b629370ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b8228d316c2bf9ad903ad6244cb8ae7 = L.circleMarker(\\n\",\n       \"                [27.9153, 113.0048],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8220b1c5585fcf7ce769a51924a41e1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4461cdd1af5bd7c415016b1fae15675 = $(`&lt;div id=&quot;html_d4461cdd1af5bd7c415016b1fae15675&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0048             latitude:27.9153             PM2_5:42.26977401             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8220b1c5585fcf7ce769a51924a41e1a.setContent(html_d4461cdd1af5bd7c415016b1fae15675);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b8228d316c2bf9ad903ad6244cb8ae7.bindPopup(popup_8220b1c5585fcf7ce769a51924a41e1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9833c224311797808a0f4df237a399ae = L.circleMarker(\\n\",\n       \"                [42.8172, 93.5128],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4bb4acb58b9a8bbb2f256524d8003ecb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37cf097652f552a6d4af66d5692bba7f = $(`&lt;div id=&quot;html_37cf097652f552a6d4af66d5692bba7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:93.5128             latitude:42.8172             PM2_5:29.67156863             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4bb4acb58b9a8bbb2f256524d8003ecb.setContent(html_37cf097652f552a6d4af66d5692bba7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9833c224311797808a0f4df237a399ae.bindPopup(popup_4bb4acb58b9a8bbb2f256524d8003ecb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b26f7bafd3b2d45a85d017f34d1e4231 = L.circleMarker(\\n\",\n       \"                [27.11, 114.9739],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_faf44af0545778f7db9a1fe3c397ca73 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71443a61a77b70d66f13b6a540c27f3d = $(`&lt;div id=&quot;html_71443a61a77b70d66f13b6a540c27f3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9739             latitude:27.11             PM2_5:50.92039106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_faf44af0545778f7db9a1fe3c397ca73.setContent(html_71443a61a77b70d66f13b6a540c27f3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b26f7bafd3b2d45a85d017f34d1e4231.bindPopup(popup_faf44af0545778f7db9a1fe3c397ca73)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ed47718a9a7b82e216653064b4f1146 = L.circleMarker(\\n\",\n       \"                [32.4246, 105.8153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1698c30e3f6dda73f2f334184c66ed2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c704c4e01ca1c0901afa150014fbbc8 = $(`&lt;div id=&quot;html_0c704c4e01ca1c0901afa150014fbbc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8153             latitude:32.4246             PM2_5:25.12222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1698c30e3f6dda73f2f334184c66ed2.setContent(html_0c704c4e01ca1c0901afa150014fbbc8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ed47718a9a7b82e216653064b4f1146.bindPopup(popup_d1698c30e3f6dda73f2f334184c66ed2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1812bce10b277b647e8645529f8a6e27 = L.circleMarker(\\n\",\n       \"                [30.1377, 104.6289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_386099fb70ca220b9e74be6ed4387b67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0329b0d69b93a6283e0c6da1cacd6aa7 = $(`&lt;div id=&quot;html_0329b0d69b93a6283e0c6da1cacd6aa7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6289             latitude:30.1377             PM2_5:37.58725762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_386099fb70ca220b9e74be6ed4387b67.setContent(html_0329b0d69b93a6283e0c6da1cacd6aa7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1812bce10b277b647e8645529f8a6e27.bindPopup(popup_386099fb70ca220b9e74be6ed4387b67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f4f41d140555e96b892526609132786 = L.circleMarker(\\n\",\n       \"                [31.751, 119.579],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7d8fc116678c91253d21a4cf416e55d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57a682a6b1b467175105460bf428158c = $(`&lt;div id=&quot;html_57a682a6b1b467175105460bf428158c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.579             latitude:31.751             PM2_5:40.41620112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7d8fc116678c91253d21a4cf416e55d.setContent(html_57a682a6b1b467175105460bf428158c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f4f41d140555e96b892526609132786.bindPopup(popup_b7d8fc116678c91253d21a4cf416e55d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f623c9eac1e65f0d2acba012ea8b933 = L.circleMarker(\\n\",\n       \"                [38.8707, 115.5214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e54581b465935abd5dc3478106f2db15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1370d09d5e0ff5e01a4861afde6a12ab = $(`&lt;div id=&quot;html_1370d09d5e0ff5e01a4861afde6a12ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.5214             latitude:38.8707             PM2_5:55.75207756             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e54581b465935abd5dc3478106f2db15.setContent(html_1370d09d5e0ff5e01a4861afde6a12ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f623c9eac1e65f0d2acba012ea8b933.bindPopup(popup_e54581b465935abd5dc3478106f2db15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_950a29e2d6612a1b97da1068fac96ecc = L.circleMarker(\\n\",\n       \"                [43.95305556, 126.4738889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e8d7ae1dc6b24c449249f2b1a0ba4cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac6baf56931004128fe680be8b90200e = $(`&lt;div id=&quot;html_ac6baf56931004128fe680be8b90200e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4738889             latitude:43.95305556             PM2_5:32.6299435             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e8d7ae1dc6b24c449249f2b1a0ba4cd.setContent(html_ac6baf56931004128fe680be8b90200e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_950a29e2d6612a1b97da1068fac96ecc.bindPopup(popup_2e8d7ae1dc6b24c449249f2b1a0ba4cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e2555547f3946ef54abf0534a268c12 = L.circleMarker(\\n\",\n       \"                [41.0385, 113.1076],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_926d54753d0374f5efe2b8a42c645028 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf5df710c6d84fadce0a3a0af45590c5 = $(`&lt;div id=&quot;html_cf5df710c6d84fadce0a3a0af45590c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1076             latitude:41.0385             PM2_5:21.04899135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_926d54753d0374f5efe2b8a42c645028.setContent(html_cf5df710c6d84fadce0a3a0af45590c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e2555547f3946ef54abf0534a268c12.bindPopup(popup_926d54753d0374f5efe2b8a42c645028)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94bef75dc26c83a3d45264570d96d838 = L.circleMarker(\\n\",\n       \"                [45.9819, 126.6106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d85bd6b612948f0875e472b8515d0cb4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_347439d14a0a8d78f307186f76cec27c = $(`&lt;div id=&quot;html_347439d14a0a8d78f307186f76cec27c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6106             latitude:45.9819             PM2_5:34.13841808             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d85bd6b612948f0875e472b8515d0cb4.setContent(html_347439d14a0a8d78f307186f76cec27c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94bef75dc26c83a3d45264570d96d838.bindPopup(popup_d85bd6b612948f0875e472b8515d0cb4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e53f19a43a934e654ee72a0bccf3ac2c = L.circleMarker(\\n\",\n       \"                [27.8244, 113.135],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79b5cf920dc5b8b2accc519efb3addde = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2f8af04b47ac3185dacbebfda658ce7 = $(`&lt;div id=&quot;html_f2f8af04b47ac3185dacbebfda658ce7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.135             latitude:27.8244             PM2_5:41.64623955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79b5cf920dc5b8b2accc519efb3addde.setContent(html_f2f8af04b47ac3185dacbebfda658ce7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e53f19a43a934e654ee72a0bccf3ac2c.bindPopup(popup_79b5cf920dc5b8b2accc519efb3addde)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42c2d7e85e1582f31a02dd28c37eab74 = L.circleMarker(\\n\",\n       \"                [33.6067, 118.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4108d0e282b33acfb65efccacc5f1ba7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa84c102a69d8f3f804789aa6296690d = $(`&lt;div id=&quot;html_fa84c102a69d8f3f804789aa6296690d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.989             latitude:33.6067             PM2_5:49.74859551             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4108d0e282b33acfb65efccacc5f1ba7.setContent(html_fa84c102a69d8f3f804789aa6296690d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42c2d7e85e1582f31a02dd28c37eab74.bindPopup(popup_4108d0e282b33acfb65efccacc5f1ba7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d5886053cdb3c9bb58ec890714f923d = L.circleMarker(\\n\",\n       \"                [35.763, 115.031],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b29da7e5ff250df7c2cdebab188f2590 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa6b5e383c29247a8e993debd3bdc78c = $(`&lt;div id=&quot;html_aa6b5e383c29247a8e993debd3bdc78c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.031             latitude:35.763             PM2_5:59.26740947             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b29da7e5ff250df7c2cdebab188f2590.setContent(html_aa6b5e383c29247a8e993debd3bdc78c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d5886053cdb3c9bb58ec890714f923d.bindPopup(popup_b29da7e5ff250df7c2cdebab188f2590)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8eb9f920e82e8748cfbc08590eeeda94 = L.circleMarker(\\n\",\n       \"                [46.7588, 130.3794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0de9c705ed0b06c7afa88cd744f04ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a69f123e6e6144689d9f13a904cd022a = $(`&lt;div id=&quot;html_a69f123e6e6144689d9f13a904cd022a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3794             latitude:46.7588             PM2_5:31.27683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0de9c705ed0b06c7afa88cd744f04ac.setContent(html_a69f123e6e6144689d9f13a904cd022a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8eb9f920e82e8748cfbc08590eeeda94.bindPopup(popup_c0de9c705ed0b06c7afa88cd744f04ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d6795714196acfa4d3b65975edd93e7 = L.circleMarker(\\n\",\n       \"                [23.3892, 104.2319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50eec0e3f09b4897cdd5752c9027c3dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8af26a193c6d750f01e4b8afa6df8e45 = $(`&lt;div id=&quot;html_8af26a193c6d750f01e4b8afa6df8e45&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.2319             latitude:23.3892             PM2_5:19.89655172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50eec0e3f09b4897cdd5752c9027c3dd.setContent(html_8af26a193c6d750f01e4b8afa6df8e45);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d6795714196acfa4d3b65975edd93e7.bindPopup(popup_50eec0e3f09b4897cdd5752c9027c3dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbea3aa5e67a5c2cdeba386fb4226be5 = L.circleMarker(\\n\",\n       \"                [30.1142, 104.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0f96293485ee77f5d16097dd432c98e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf59d3bdc78fb495420a01aab79b9c2b = $(`&lt;div id=&quot;html_bf59d3bdc78fb495420a01aab79b9c2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6469             latitude:30.1142             PM2_5:39.93888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0f96293485ee77f5d16097dd432c98e.setContent(html_bf59d3bdc78fb495420a01aab79b9c2b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbea3aa5e67a5c2cdeba386fb4226be5.bindPopup(popup_e0f96293485ee77f5d16097dd432c98e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa2b40e7b3616cc2a8ee5bf4aec6e13e = L.circleMarker(\\n\",\n       \"                [41.9967, 121.6178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_084baf0cdaa5568360c07540e70a0c15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a92710f22e416b58aef09434badcdd22 = $(`&lt;div id=&quot;html_a92710f22e416b58aef09434badcdd22&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6178             latitude:41.9967             PM2_5:23.90422535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_084baf0cdaa5568360c07540e70a0c15.setContent(html_a92710f22e416b58aef09434badcdd22);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa2b40e7b3616cc2a8ee5bf4aec6e13e.bindPopup(popup_084baf0cdaa5568360c07540e70a0c15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f125ff0c48e0cba12bd0672207163bb = L.circleMarker(\\n\",\n       \"                [22.805, 108.383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8511f44727a0a6e69e17cf8ee807e7e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df3a1b85ead5699f0cf1cbb3b41b924c = $(`&lt;div id=&quot;html_df3a1b85ead5699f0cf1cbb3b41b924c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.383             latitude:22.805             PM2_5:32.59722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8511f44727a0a6e69e17cf8ee807e7e0.setContent(html_df3a1b85ead5699f0cf1cbb3b41b924c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f125ff0c48e0cba12bd0672207163bb.bindPopup(popup_8511f44727a0a6e69e17cf8ee807e7e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f14123199ae5592e5fee8d9c2173e97 = L.circleMarker(\\n\",\n       \"                [28.4459, 117.973],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42a408c067ca3129cbea272402742ec3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_444085d2432cbef3275f33114698c4cf = $(`&lt;div id=&quot;html_444085d2432cbef3275f33114698c4cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.973             latitude:28.4459             PM2_5:38.90642458             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42a408c067ca3129cbea272402742ec3.setContent(html_444085d2432cbef3275f33114698c4cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f14123199ae5592e5fee8d9c2173e97.bindPopup(popup_42a408c067ca3129cbea272402742ec3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c548a4581f68bd073c184350d75a7a89 = L.circleMarker(\\n\",\n       \"                [39.6572, 106.7931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_386c0e6f1a4c9be07e0a946f853b0744 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4db9c7b5732411a2cae62359649f146c = $(`&lt;div id=&quot;html_4db9c7b5732411a2cae62359649f146c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7931             latitude:39.6572             PM2_5:38.36629526             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_386c0e6f1a4c9be07e0a946f853b0744.setContent(html_4db9c7b5732411a2cae62359649f146c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c548a4581f68bd073c184350d75a7a89.bindPopup(popup_386c0e6f1a4c9be07e0a946f853b0744)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_348d21552e9251c27ce758faef50e1b3 = L.circleMarker(\\n\",\n       \"                [31.17, 120.635],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4215e5bc38c402c0e97fb85d1dd62b34 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1bcdeb40e337c5d0c14f36dfdf51cf74 = $(`&lt;div id=&quot;html_1bcdeb40e337c5d0c14f36dfdf51cf74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.635             latitude:31.17             PM2_5:41.06571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4215e5bc38c402c0e97fb85d1dd62b34.setContent(html_1bcdeb40e337c5d0c14f36dfdf51cf74);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_348d21552e9251c27ce758faef50e1b3.bindPopup(popup_4215e5bc38c402c0e97fb85d1dd62b34)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_469bfb30066f743096d5f30732d28fce = L.circleMarker(\\n\",\n       \"                [27.8072, 114.4011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1f289b4a16ec0d48b0d979863e38009 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2129214b799431a1e1261283f74a05f2 = $(`&lt;div id=&quot;html_2129214b799431a1e1261283f74a05f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4011             latitude:27.8072             PM2_5:51.75623269             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1f289b4a16ec0d48b0d979863e38009.setContent(html_2129214b799431a1e1261283f74a05f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_469bfb30066f743096d5f30732d28fce.bindPopup(popup_f1f289b4a16ec0d48b0d979863e38009)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7fe9c123556b43a78ac16cea7d704963 = L.circleMarker(\\n\",\n       \"                [24.339, 102.5381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19445456983a4e72bdea598199ad8d54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9cc7ed93256b0f62e2a835786cb2032f = $(`&lt;div id=&quot;html_9cc7ed93256b0f62e2a835786cb2032f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5381             latitude:24.339             PM2_5:22.35252809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19445456983a4e72bdea598199ad8d54.setContent(html_9cc7ed93256b0f62e2a835786cb2032f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7fe9c123556b43a78ac16cea7d704963.bindPopup(popup_19445456983a4e72bdea598199ad8d54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c2c5c0e63d253fe55c6533ce31e7aa4d = L.circleMarker(\\n\",\n       \"                [35.0697, 109.0697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f377194a91d5e0a5009f64d9af3e113 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f746570631f1be874ba78d9171ed9a5 = $(`&lt;div id=&quot;html_8f746570631f1be874ba78d9171ed9a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0697             latitude:35.0697             PM2_5:43.21111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f377194a91d5e0a5009f64d9af3e113.setContent(html_8f746570631f1be874ba78d9171ed9a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c2c5c0e63d253fe55c6533ce31e7aa4d.bindPopup(popup_9f377194a91d5e0a5009f64d9af3e113)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf9446efa48087c06e46103dce107d45 = L.circleMarker(\\n\",\n       \"                [26.4519, 111.5989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7498732c5c4ad68c6572692ddb2a294 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8e8979b75840e050d53422891a29f94 = $(`&lt;div id=&quot;html_d8e8979b75840e050d53422891a29f94&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5989             latitude:26.4519             PM2_5:38.40285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7498732c5c4ad68c6572692ddb2a294.setContent(html_d8e8979b75840e050d53422891a29f94);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf9446efa48087c06e46103dce107d45.bindPopup(popup_b7498732c5c4ad68c6572692ddb2a294)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c3642c5a4a4a8f240392561d567b9d1 = L.circleMarker(\\n\",\n       \"                [31.2659, 121.536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f53608279181e12c3df1c7048a88cb6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bed90353e5cb5eb7e1caaa5998eda886 = $(`&lt;div id=&quot;html_bed90353e5cb5eb7e1caaa5998eda886&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.536             latitude:31.2659             PM2_5:40.78813559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f53608279181e12c3df1c7048a88cb6.setContent(html_bed90353e5cb5eb7e1caaa5998eda886);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c3642c5a4a4a8f240392561d567b9d1.bindPopup(popup_2f53608279181e12c3df1c7048a88cb6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92731b4b5e614598fef3fcadd0be9c62 = L.circleMarker(\\n\",\n       \"                [29.53675, 106.4959],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09aa40e2ee568166c7a8bbbd9ac42f83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8674be2f29029ef0d8dc50edc2a12c3d = $(`&lt;div id=&quot;html_8674be2f29029ef0d8dc50edc2a12c3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.4959             latitude:29.53675             PM2_5:37.87465181             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09aa40e2ee568166c7a8bbbd9ac42f83.setContent(html_8674be2f29029ef0d8dc50edc2a12c3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92731b4b5e614598fef3fcadd0be9c62.bindPopup(popup_09aa40e2ee568166c7a8bbbd9ac42f83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f7ad78ba3241a67387f0f28f79dcf68 = L.circleMarker(\\n\",\n       \"                [30.6145, 116.9894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_413a0d556c90c868e2d303ccef996457 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f86796f35ef220ecfcd160df6701710b = $(`&lt;div id=&quot;html_f86796f35ef220ecfcd160df6701710b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9894             latitude:30.6145             PM2_5:57.02957746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_413a0d556c90c868e2d303ccef996457.setContent(html_f86796f35ef220ecfcd160df6701710b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f7ad78ba3241a67387f0f28f79dcf68.bindPopup(popup_413a0d556c90c868e2d303ccef996457)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfe56a4e023ef4537a0d94eea61a3666 = L.circleMarker(\\n\",\n       \"                [23.3917, 113.215],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7509cdb3125fa1a3b9ca26561888733 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f73b55e578ea96abe1d42e3ae3ba01c = $(`&lt;div id=&quot;html_2f73b55e578ea96abe1d42e3ae3ba01c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.215             latitude:23.3917             PM2_5:31.49579832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7509cdb3125fa1a3b9ca26561888733.setContent(html_2f73b55e578ea96abe1d42e3ae3ba01c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfe56a4e023ef4537a0d94eea61a3666.bindPopup(popup_a7509cdb3125fa1a3b9ca26561888733)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f9d4e9642edee6fb7a7ee23a62beb1f = L.circleMarker(\\n\",\n       \"                [30.6463, 111.3549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88692cc98807571dda4ac6efcc805bbf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_645c67760d695e992598d648fff5ae86 = $(`&lt;div id=&quot;html_645c67760d695e992598d648fff5ae86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3549             latitude:30.6463             PM2_5:54.88450704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88692cc98807571dda4ac6efcc805bbf.setContent(html_645c67760d695e992598d648fff5ae86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f9d4e9642edee6fb7a7ee23a62beb1f.bindPopup(popup_88692cc98807571dda4ac6efcc805bbf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4c4f3e37eabb04e34276ddedfa9d8bb = L.circleMarker(\\n\",\n       \"                [29.9899, 103.0013],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_982426c3c870c846011549a986e09d12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ac029a29d0e6a1d80acd304509fbd39 = $(`&lt;div id=&quot;html_5ac029a29d0e6a1d80acd304509fbd39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0013             latitude:29.9899             PM2_5:48.85180055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_982426c3c870c846011549a986e09d12.setContent(html_5ac029a29d0e6a1d80acd304509fbd39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4c4f3e37eabb04e34276ddedfa9d8bb.bindPopup(popup_982426c3c870c846011549a986e09d12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30e488bb1bd1852e5961728c54b0940c = L.circleMarker(\\n\",\n       \"                [41.3472, 123.8142],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_558ad83111abf0342b6e4d6baf9da930 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6e0c14980988ef6aa0160dcd078f19c = $(`&lt;div id=&quot;html_a6e0c14980988ef6aa0160dcd078f19c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8142             latitude:41.3472             PM2_5:30.93201133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_558ad83111abf0342b6e4d6baf9da930.setContent(html_a6e0c14980988ef6aa0160dcd078f19c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30e488bb1bd1852e5961728c54b0940c.bindPopup(popup_558ad83111abf0342b6e4d6baf9da930)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e7f2fa6dad446cd2328e37ce404cd39 = L.circleMarker(\\n\",\n       \"                [47.3386, 123.9305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_499e4900eebd8a16fce5f7cda62ac7cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21b53ea848fc534a3974d75058f72a36 = $(`&lt;div id=&quot;html_21b53ea848fc534a3974d75058f72a36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9305             latitude:47.3386             PM2_5:24.86428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_499e4900eebd8a16fce5f7cda62ac7cc.setContent(html_21b53ea848fc534a3974d75058f72a36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e7f2fa6dad446cd2328e37ce404cd39.bindPopup(popup_499e4900eebd8a16fce5f7cda62ac7cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_665c9e5b752152d21dfb4625b6320973 = L.circleMarker(\\n\",\n       \"                [27.8667, 113.167],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1c30a398772e93de718ffbb9d104e71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c39db545c03656a14feb2ad47d9ad27 = $(`&lt;div id=&quot;html_5c39db545c03656a14feb2ad47d9ad27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.167             latitude:27.8667             PM2_5:38.5579096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1c30a398772e93de718ffbb9d104e71.setContent(html_5c39db545c03656a14feb2ad47d9ad27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_665c9e5b752152d21dfb4625b6320973.bindPopup(popup_c1c30a398772e93de718ffbb9d104e71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f82a437dfdc67557b08379fe16f78714 = L.circleMarker(\\n\",\n       \"                [40.916, 107.5936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed338954b8c97d7731980c91136fa5c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c075fca1febeecf7601e516ddade40e3 = $(`&lt;div id=&quot;html_c075fca1febeecf7601e516ddade40e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5936             latitude:40.916             PM2_5:28.17335244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed338954b8c97d7731980c91136fa5c8.setContent(html_c075fca1febeecf7601e516ddade40e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f82a437dfdc67557b08379fe16f78714.bindPopup(popup_ed338954b8c97d7731980c91136fa5c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33aeb41b81d0f3a62901194626103e5e = L.circleMarker(\\n\",\n       \"                [37.7087, 112.7105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6d026f36b46d07ac6bb61e03fd07d1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e49e8119d9674fa5ba8391ac178086a = $(`&lt;div id=&quot;html_3e49e8119d9674fa5ba8391ac178086a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7105             latitude:37.7087             PM2_5:62.86173184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6d026f36b46d07ac6bb61e03fd07d1a.setContent(html_3e49e8119d9674fa5ba8391ac178086a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33aeb41b81d0f3a62901194626103e5e.bindPopup(popup_e6d026f36b46d07ac6bb61e03fd07d1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc2c5d039ceb98c932f063f2375811ce = L.circleMarker(\\n\",\n       \"                [24.3663, 109.3957],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d78d14c184293fa7f9c30b21db0aee7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2eff775598a5bee73c98a724e0d1273f = $(`&lt;div id=&quot;html_2eff775598a5bee73c98a724e0d1273f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.3957             latitude:24.3663             PM2_5:50.98333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d78d14c184293fa7f9c30b21db0aee7.setContent(html_2eff775598a5bee73c98a724e0d1273f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc2c5d039ceb98c932f063f2375811ce.bindPopup(popup_3d78d14c184293fa7f9c30b21db0aee7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2bab2ea81e2f03c4047acaf9fa35211b = L.circleMarker(\\n\",\n       \"                [26.4364, 106.6554],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_544e0ca55720bb9618116c915f02e74e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c5e6b58ee5a05d2a70041850220350a = $(`&lt;div id=&quot;html_4c5e6b58ee5a05d2a70041850220350a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6554             latitude:26.4364             PM2_5:30.33479532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_544e0ca55720bb9618116c915f02e74e.setContent(html_4c5e6b58ee5a05d2a70041850220350a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2bab2ea81e2f03c4047acaf9fa35211b.bindPopup(popup_544e0ca55720bb9618116c915f02e74e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14949e89b204fe0b5e0b43da4f039e1e = L.circleMarker(\\n\",\n       \"                [26.6009, 106.7105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3096527f72dd0ae50cb6287fe26889c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d34416e59fd05cae65d5ef4bbca5c2b = $(`&lt;div id=&quot;html_1d34416e59fd05cae65d5ef4bbca5c2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7105             latitude:26.6009             PM2_5:37.39915966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3096527f72dd0ae50cb6287fe26889c0.setContent(html_1d34416e59fd05cae65d5ef4bbca5c2b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14949e89b204fe0b5e0b43da4f039e1e.bindPopup(popup_3096527f72dd0ae50cb6287fe26889c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45dc741f77c23c96002eed16f3fa43a6 = L.circleMarker(\\n\",\n       \"                [31.5631, 120.245],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9e6dbd8238ea12a856137c6e9c17dea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74ecb48ecaa5a1f0c46a022e4a4ee5e1 = $(`&lt;div id=&quot;html_74ecb48ecaa5a1f0c46a022e4a4ee5e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.245             latitude:31.5631             PM2_5:46.98314607             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9e6dbd8238ea12a856137c6e9c17dea.setContent(html_74ecb48ecaa5a1f0c46a022e4a4ee5e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45dc741f77c23c96002eed16f3fa43a6.bindPopup(popup_a9e6dbd8238ea12a856137c6e9c17dea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85dc2c76f05ee94608eb72acf3fab3ac = L.circleMarker(\\n\",\n       \"                [37.4372, 116.2714],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce05bc1ddc416633f2cc344597c7d5a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ce59ef73e37020adbac410c9daa069a = $(`&lt;div id=&quot;html_4ce59ef73e37020adbac410c9daa069a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.2714             latitude:37.4372             PM2_5:52.45266272             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce05bc1ddc416633f2cc344597c7d5a6.setContent(html_4ce59ef73e37020adbac410c9daa069a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85dc2c76f05ee94608eb72acf3fab3ac.bindPopup(popup_ce05bc1ddc416633f2cc344597c7d5a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48cac9391a3161e9585cadf9a062a340 = L.circleMarker(\\n\",\n       \"                [35.27, 115.455],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cefce1c3658a3577bc444eb031d5f333 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_345ba4d3f01d3ca510b7d5483a85842f = $(`&lt;div id=&quot;html_345ba4d3f01d3ca510b7d5483a85842f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.455             latitude:35.27             PM2_5:62.4789916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cefce1c3658a3577bc444eb031d5f333.setContent(html_345ba4d3f01d3ca510b7d5483a85842f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48cac9391a3161e9585cadf9a062a340.bindPopup(popup_cefce1c3658a3577bc444eb031d5f333)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ceda122ff99b3d8eb342a001043849c4 = L.circleMarker(\\n\",\n       \"                [35.428, 116.6305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5babea8ec0bf1d8eeb0205ad8fa3af1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab110473bae4c1834c943e8e3dfc965a = $(`&lt;div id=&quot;html_ab110473bae4c1834c943e8e3dfc965a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6305             latitude:35.428             PM2_5:49.96927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5babea8ec0bf1d8eeb0205ad8fa3af1.setContent(html_ab110473bae4c1834c943e8e3dfc965a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ceda122ff99b3d8eb342a001043849c4.bindPopup(popup_c5babea8ec0bf1d8eeb0205ad8fa3af1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_804aedacf4950d26ea97ef279146c8fa = L.circleMarker(\\n\",\n       \"                [38.0398, 114.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f16a71d5dff9b253794f309da1d9c5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_282db67ad8333f0be1af841e4ae36ae8 = $(`&lt;div id=&quot;html_282db67ad8333f0be1af841e4ae36ae8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6046             latitude:38.0398             PM2_5:72.15181058             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f16a71d5dff9b253794f309da1d9c5d.setContent(html_282db67ad8333f0be1af841e4ae36ae8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_804aedacf4950d26ea97ef279146c8fa.bindPopup(popup_5f16a71d5dff9b253794f309da1d9c5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09670c2a327fdb6255a51a24b7668acd = L.circleMarker(\\n\",\n       \"                [23.1142, 114.4103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f89f8ae51d9e69bf22542c6f9ce8b6d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e883b7a06c84426e67bc7583695ff00d = $(`&lt;div id=&quot;html_e883b7a06c84426e67bc7583695ff00d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4103             latitude:23.1142             PM2_5:28.22727273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f89f8ae51d9e69bf22542c6f9ce8b6d2.setContent(html_e883b7a06c84426e67bc7583695ff00d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09670c2a327fdb6255a51a24b7668acd.bindPopup(popup_f89f8ae51d9e69bf22542c6f9ce8b6d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_518ef4e92dcd33b1e38415206082092e = L.circleMarker(\\n\",\n       \"                [22.6164, 110.1433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5285f8b8a25cdf84b2ea50c9e3fc6b48 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a3b2f9d33e6ba3e150d25496e54f416 = $(`&lt;div id=&quot;html_8a3b2f9d33e6ba3e150d25496e54f416&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1433             latitude:22.6164             PM2_5:34.49011299             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5285f8b8a25cdf84b2ea50c9e3fc6b48.setContent(html_8a3b2f9d33e6ba3e150d25496e54f416);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_518ef4e92dcd33b1e38415206082092e.bindPopup(popup_5285f8b8a25cdf84b2ea50c9e3fc6b48)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21a59f1fc7978fbb11b5b4619c9fb22f = L.circleMarker(\\n\",\n       \"                [29.57278, 106.4042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_303ed7513abce1514fcf0c805bd9230c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5c728e652ea36595c83b89bce89cb4e = $(`&lt;div id=&quot;html_e5c728e652ea36595c83b89bce89cb4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.4042             latitude:29.57278             PM2_5:40.69553073             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_303ed7513abce1514fcf0c805bd9230c.setContent(html_e5c728e652ea36595c83b89bce89cb4e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21a59f1fc7978fbb11b5b4619c9fb22f.bindPopup(popup_303ed7513abce1514fcf0c805bd9230c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4f72859898b8c9617c442461d271756 = L.circleMarker(\\n\",\n       \"                [24.2719, 116.0797],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28eada2f59633a9d1c8e7501ad8e617e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_308ad586e961186eac5aebcceeb53206 = $(`&lt;div id=&quot;html_308ad586e961186eac5aebcceeb53206&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0797             latitude:24.2719             PM2_5:25.39915966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28eada2f59633a9d1c8e7501ad8e617e.setContent(html_308ad586e961186eac5aebcceeb53206);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4f72859898b8c9617c442461d271756.bindPopup(popup_28eada2f59633a9d1c8e7501ad8e617e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a99e205ee481012333653c0a5040590c = L.circleMarker(\\n\",\n       \"                [36.1417, 106.2319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16c88a0f5dcd02f97a4dedb93d2cd6c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02969761899a531b4e90f8ba691edd42 = $(`&lt;div id=&quot;html_02969761899a531b4e90f8ba691edd42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2319             latitude:36.1417             PM2_5:27.15616046             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16c88a0f5dcd02f97a4dedb93d2cd6c1.setContent(html_02969761899a531b4e90f8ba691edd42);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a99e205ee481012333653c0a5040590c.bindPopup(popup_16c88a0f5dcd02f97a4dedb93d2cd6c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab3d1cba917ad2516559082b523fad92 = L.circleMarker(\\n\",\n       \"                [29.1029, 119.686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e90574395bb95b6d4b675a0ef1c0c5c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6bea2266dc141ff643e86acb0c3acd4 = $(`&lt;div id=&quot;html_d6bea2266dc141ff643e86acb0c3acd4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.686             latitude:29.1029             PM2_5:34.52506964             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e90574395bb95b6d4b675a0ef1c0c5c2.setContent(html_d6bea2266dc141ff643e86acb0c3acd4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab3d1cba917ad2516559082b523fad92.bindPopup(popup_e90574395bb95b6d4b675a0ef1c0c5c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a525286effc033323ac1dc01eb2934e7 = L.circleMarker(\\n\",\n       \"                [30.1819, 120.27],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b78a9d9ee0ab4296f738fc859da3e39e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_223f8c670c23fd1910a1384e46df8670 = $(`&lt;div id=&quot;html_223f8c670c23fd1910a1384e46df8670&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.27             latitude:30.1819             PM2_5:43.43521127             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b78a9d9ee0ab4296f738fc859da3e39e.setContent(html_223f8c670c23fd1910a1384e46df8670);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a525286effc033323ac1dc01eb2934e7.bindPopup(popup_b78a9d9ee0ab4296f738fc859da3e39e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0091e01e739b311f6f099aa8f6678cce = L.circleMarker(\\n\",\n       \"                [30.4133, 114.8131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_379779af5a12194e36f05c027fcdc6d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b61f0a687a6e17f8ad866e19085c1b7 = $(`&lt;div id=&quot;html_7b61f0a687a6e17f8ad866e19085c1b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8131             latitude:30.4133             PM2_5:49.26478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_379779af5a12194e36f05c027fcdc6d1.setContent(html_7b61f0a687a6e17f8ad866e19085c1b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0091e01e739b311f6f099aa8f6678cce.bindPopup(popup_379779af5a12194e36f05c027fcdc6d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06ae1c1c094ebbbcf3d24bf180f88cff = L.circleMarker(\\n\",\n       \"                [39.9279, 116.225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e771b357397a24034974f70fb4b39c1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f893e7c79643e2711e838f72b36c146 = $(`&lt;div id=&quot;html_3f893e7c79643e2711e838f72b36c146&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.225             latitude:39.9279             PM2_5:56.0694051             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e771b357397a24034974f70fb4b39c1b.setContent(html_3f893e7c79643e2711e838f72b36c146);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06ae1c1c094ebbbcf3d24bf180f88cff.bindPopup(popup_e771b357397a24034974f70fb4b39c1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b72c468f69d1b5e5032b54c733370337 = L.circleMarker(\\n\",\n       \"                [42.9409, 89.191],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f2d9de1eca108ad665d6f83c56d718c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a5dc66f8af4c09cb103d1bd4073d794 = $(`&lt;div id=&quot;html_3a5dc66f8af4c09cb103d1bd4073d794&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:89.191             latitude:42.9409             PM2_5:53.92087542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f2d9de1eca108ad665d6f83c56d718c.setContent(html_3a5dc66f8af4c09cb103d1bd4073d794);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b72c468f69d1b5e5032b54c733370337.bindPopup(popup_3f2d9de1eca108ad665d6f83c56d718c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf6e5be3e40a18403b9b9bd84d0d7933 = L.circleMarker(\\n\",\n       \"                [29.1242, 110.4697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ab6d3bfe33490791658bbb681587143 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e08d1c98497a49cb230160186a466ff = $(`&lt;div id=&quot;html_1e08d1c98497a49cb230160186a466ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4697             latitude:29.1242             PM2_5:40.49860724             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ab6d3bfe33490791658bbb681587143.setContent(html_1e08d1c98497a49cb230160186a466ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf6e5be3e40a18403b9b9bd84d0d7933.bindPopup(popup_8ab6d3bfe33490791658bbb681587143)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92a90efc08b25c87d2c7ec9b39fcf9ae = L.circleMarker(\\n\",\n       \"                [24.3406, 109.3886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf1a1e1984ffdd47fd705a9e2486cbdf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9c62313419588b111d8673f413d46be = $(`&lt;div id=&quot;html_e9c62313419588b111d8673f413d46be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.3886             latitude:24.3406             PM2_5:40.90250696             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf1a1e1984ffdd47fd705a9e2486cbdf.setContent(html_e9c62313419588b111d8673f413d46be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92a90efc08b25c87d2c7ec9b39fcf9ae.bindPopup(popup_bf1a1e1984ffdd47fd705a9e2486cbdf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_edc9662b5d853e21816b1bfa2918dfed = L.circleMarker(\\n\",\n       \"                [29.7228, 106.626],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eac1abb3aee5b2a2d0a89462f3acbec3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e71ab4d26823a0dd99434d8253a73440 = $(`&lt;div id=&quot;html_e71ab4d26823a0dd99434d8253a73440&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.626             latitude:29.7228             PM2_5:37.63407821             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eac1abb3aee5b2a2d0a89462f3acbec3.setContent(html_e71ab4d26823a0dd99434d8253a73440);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_edc9662b5d853e21816b1bfa2918dfed.bindPopup(popup_eac1abb3aee5b2a2d0a89462f3acbec3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47f8a89324e9a1d2c0532de668865a5f = L.circleMarker(\\n\",\n       \"                [22.7875, 108.301],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3037cdf16b8c39c582eea844a47afb38 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0eeaeac7f808e262ef6af0c3f5792d16 = $(`&lt;div id=&quot;html_0eeaeac7f808e262ef6af0c3f5792d16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.301             latitude:22.7875             PM2_5:35.12253521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3037cdf16b8c39c582eea844a47afb38.setContent(html_0eeaeac7f808e262ef6af0c3f5792d16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47f8a89324e9a1d2c0532de668865a5f.bindPopup(popup_3037cdf16b8c39c582eea844a47afb38)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d446d40491c438d1bd7be48195849e0 = L.circleMarker(\\n\",\n       \"                [31.1654, 121.412],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bd06e6c9f100a2981937a813005e8e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70b84b4075692ea96657620bcd77ba97 = $(`&lt;div id=&quot;html_70b84b4075692ea96657620bcd77ba97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.412             latitude:31.1654             PM2_5:41.32285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bd06e6c9f100a2981937a813005e8e1.setContent(html_70b84b4075692ea96657620bcd77ba97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d446d40491c438d1bd7be48195849e0.bindPopup(popup_0bd06e6c9f100a2981937a813005e8e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3092ef575909c1027c8221b5fa6249d = L.circleMarker(\\n\",\n       \"                [33.5981, 119.036],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e26a25f2e7f20880fd70462db3ccced8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ee6f49fe926aba5a91d577d0dc06d61 = $(`&lt;div id=&quot;html_4ee6f49fe926aba5a91d577d0dc06d61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.036             latitude:33.5981             PM2_5:43.71126761             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e26a25f2e7f20880fd70462db3ccced8.setContent(html_4ee6f49fe926aba5a91d577d0dc06d61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3092ef575909c1027c8221b5fa6249d.bindPopup(popup_e26a25f2e7f20880fd70462db3ccced8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84c28050552a8133ec4b857e0220bf00 = L.circleMarker(\\n\",\n       \"                [30.5103, 117.0549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a18ff0a61f3ef7224b6687a3d0026b38 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0107ea2f44253bae477d943ad14e683a = $(`&lt;div id=&quot;html_0107ea2f44253bae477d943ad14e683a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0549             latitude:30.5103             PM2_5:46.05865922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a18ff0a61f3ef7224b6687a3d0026b38.setContent(html_0107ea2f44253bae477d943ad14e683a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84c28050552a8133ec4b857e0220bf00.bindPopup(popup_a18ff0a61f3ef7224b6687a3d0026b38)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0d51afe8c2310cb60abd1161fb7e0f4 = L.circleMarker(\\n\",\n       \"                [32.1319, 119.43],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fad11e733a6a5437eb3758e0d9d58767 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2e2f2ac459f2bd96d28b5d056d69cca = $(`&lt;div id=&quot;html_c2e2f2ac459f2bd96d28b5d056d69cca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.43             latitude:32.1319             PM2_5:53.00555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fad11e733a6a5437eb3758e0d9d58767.setContent(html_c2e2f2ac459f2bd96d28b5d056d69cca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0d51afe8c2310cb60abd1161fb7e0f4.bindPopup(popup_fad11e733a6a5437eb3758e0d9d58767)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62fc2671e8c1d5a4e1dda6899396068b = L.circleMarker(\\n\",\n       \"                [44.0297, 87.2717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c9dda8beb75625c22291d4239076a00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a5d2015764a08b65641333b74fabd5f = $(`&lt;div id=&quot;html_8a5d2015764a08b65641333b74fabd5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2717             latitude:44.0297             PM2_5:52.32122905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c9dda8beb75625c22291d4239076a00.setContent(html_8a5d2015764a08b65641333b74fabd5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62fc2671e8c1d5a4e1dda6899396068b.bindPopup(popup_0c9dda8beb75625c22291d4239076a00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ba2e7901c30a813a4161a9b22fe8a1f = L.circleMarker(\\n\",\n       \"                [30.9431, 118.7175],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0c8b4d0fd336f146daf4d6ae49d7610 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a40ff6ff46fb9c101f91d888139bbc6 = $(`&lt;div id=&quot;html_4a40ff6ff46fb9c101f91d888139bbc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7175             latitude:30.9431             PM2_5:41.53221289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0c8b4d0fd336f146daf4d6ae49d7610.setContent(html_4a40ff6ff46fb9c101f91d888139bbc6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ba2e7901c30a813a4161a9b22fe8a1f.bindPopup(popup_f0c8b4d0fd336f146daf4d6ae49d7610)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_477dc623008bac0286968d1f00421537 = L.circleMarker(\\n\",\n       \"                [41.765, 123.41],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6801d2aab6a9ff6e92dbcf2053ce1e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94bfd527add7784f9fe65779952fc406 = $(`&lt;div id=&quot;html_94bfd527add7784f9fe65779952fc406&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.41             latitude:41.765             PM2_5:38.61699164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6801d2aab6a9ff6e92dbcf2053ce1e1.setContent(html_94bfd527add7784f9fe65779952fc406);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_477dc623008bac0286968d1f00421537.bindPopup(popup_e6801d2aab6a9ff6e92dbcf2053ce1e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_663246f635b2c4bbbd08ec80b741a358 = L.circleMarker(\\n\",\n       \"                [32.3061, 118.3158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f0e156476d9a235db287c4805619063 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fee682ad81acb15cadc3f103f38a3d1b = $(`&lt;div id=&quot;html_fee682ad81acb15cadc3f103f38a3d1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3158             latitude:32.3061             PM2_5:51.82492997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f0e156476d9a235db287c4805619063.setContent(html_fee682ad81acb15cadc3f103f38a3d1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_663246f635b2c4bbbd08ec80b741a358.bindPopup(popup_5f0e156476d9a235db287c4805619063)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00442efb67df30e05e1bed85a14f70c5 = L.circleMarker(\\n\",\n       \"                [28.71583, 104.5761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_673096b465dc66a27fd357082d512daa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b238612621dda5778ab655ef3416ac1 = $(`&lt;div id=&quot;html_0b238612621dda5778ab655ef3416ac1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.5761             latitude:28.71583             PM2_5:57.30277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_673096b465dc66a27fd357082d512daa.setContent(html_0b238612621dda5778ab655ef3416ac1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00442efb67df30e05e1bed85a14f70c5.bindPopup(popup_673096b465dc66a27fd357082d512daa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93c3b1608424f6d957b60ffa0208ff2a = L.circleMarker(\\n\",\n       \"                [27.3392, 103.7032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b662a3ddb58040bc278bb752f7b4960 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9579a315a6de271ae3b1dfc90aae36cd = $(`&lt;div id=&quot;html_9579a315a6de271ae3b1dfc90aae36cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7032             latitude:27.3392             PM2_5:26.85310734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b662a3ddb58040bc278bb752f7b4960.setContent(html_9579a315a6de271ae3b1dfc90aae36cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93c3b1608424f6d957b60ffa0208ff2a.bindPopup(popup_8b662a3ddb58040bc278bb752f7b4960)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_814c345bb794d714046befb2a7e1ac35 = L.circleMarker(\\n\",\n       \"                [30.6347, 105.8161],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca923f689596258435c2edfd65a0d59d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3bbaace5f2eccb7302d7af6050f575ad = $(`&lt;div id=&quot;html_3bbaace5f2eccb7302d7af6050f575ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8161             latitude:30.6347             PM2_5:35.92634561             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca923f689596258435c2edfd65a0d59d.setContent(html_3bbaace5f2eccb7302d7af6050f575ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_814c345bb794d714046befb2a7e1ac35.bindPopup(popup_ca923f689596258435c2edfd65a0d59d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0dcfd54aaaeb996fa92d3afdd238c009 = L.circleMarker(\\n\",\n       \"                [23.105, 113.433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b70589a3d96370d8c692c0fc5234a2ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f253d9c86c02d80279da2e69820c525 = $(`&lt;div id=&quot;html_7f253d9c86c02d80279da2e69820c525&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.433             latitude:23.105             PM2_5:34.26330532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b70589a3d96370d8c692c0fc5234a2ed.setContent(html_7f253d9c86c02d80279da2e69820c525);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0dcfd54aaaeb996fa92d3afdd238c009.bindPopup(popup_b70589a3d96370d8c692c0fc5234a2ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_621079c4ca21758fbea9c4cec5a63359 = L.circleMarker(\\n\",\n       \"                [28.1308, 112.8908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_456539f0c0e5647e7b5fcff652352521 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12579f012cab1049da2fae52886e4454 = $(`&lt;div id=&quot;html_12579f012cab1049da2fae52886e4454&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8908             latitude:28.1308             PM2_5:43.11408451             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_456539f0c0e5647e7b5fcff652352521.setContent(html_12579f012cab1049da2fae52886e4454);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_621079c4ca21758fbea9c4cec5a63359.bindPopup(popup_456539f0c0e5647e7b5fcff652352521)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_567065bf72cd38d3aa8ce86630b7af80 = L.circleMarker(\\n\",\n       \"                [41.0781, 121.0986],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e9997267291619e5b0643e01df62944 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30b7d0926df858285526395b95d2ce5c = $(`&lt;div id=&quot;html_30b7d0926df858285526395b95d2ce5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.0986             latitude:41.0781             PM2_5:28.91643454             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e9997267291619e5b0643e01df62944.setContent(html_30b7d0926df858285526395b95d2ce5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_567065bf72cd38d3aa8ce86630b7af80.bindPopup(popup_2e9997267291619e5b0643e01df62944)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0132fb9854d54af7eb0924b8a381b9f6 = L.circleMarker(\\n\",\n       \"                [25.1174, 117.0181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90b3a87c4146ef0fc7b172aba6aeaad2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de3ac484063c6cacc5e4a3accce66234 = $(`&lt;div id=&quot;html_de3ac484063c6cacc5e4a3accce66234&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0181             latitude:25.1174             PM2_5:23.24930362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90b3a87c4146ef0fc7b172aba6aeaad2.setContent(html_de3ac484063c6cacc5e4a3accce66234);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0132fb9854d54af7eb0924b8a381b9f6.bindPopup(popup_90b3a87c4146ef0fc7b172aba6aeaad2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54341a636c306e304ae422a1f0d6a796 = L.circleMarker(\\n\",\n       \"                [34.6972, 119.3581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d380df84e65dbed9bcbcd60788b8c117 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2c81efd67c2f83229b06c536d54f747 = $(`&lt;div id=&quot;html_b2c81efd67c2f83229b06c536d54f747&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.3581             latitude:34.6972             PM2_5:39.00854701             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d380df84e65dbed9bcbcd60788b8c117.setContent(html_b2c81efd67c2f83229b06c536d54f747);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54341a636c306e304ae422a1f0d6a796.bindPopup(popup_d380df84e65dbed9bcbcd60788b8c117)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2787daca38b5e9d23c8d449e045a5808 = L.circleMarker(\\n\",\n       \"                [34.6869, 112.4831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b72b0afbd0f5c837fce88ef388fcb38 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97671f5d8fd7743e0e1abae16e38b5c1 = $(`&lt;div id=&quot;html_97671f5d8fd7743e0e1abae16e38b5c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4831             latitude:34.6869             PM2_5:60.01825843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b72b0afbd0f5c837fce88ef388fcb38.setContent(html_97671f5d8fd7743e0e1abae16e38b5c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2787daca38b5e9d23c8d449e045a5808.bindPopup(popup_9b72b0afbd0f5c837fce88ef388fcb38)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bcffb6d2afd727a71928984d11a60160 = L.circleMarker(\\n\",\n       \"                [34.6231, 112.3844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_061a68c2d0ed7703d0532f3571350894 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8af7cd5280de41ffd5fed50d0bf59135 = $(`&lt;div id=&quot;html_8af7cd5280de41ffd5fed50d0bf59135&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3844             latitude:34.6231             PM2_5:61.63098592             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_061a68c2d0ed7703d0532f3571350894.setContent(html_8af7cd5280de41ffd5fed50d0bf59135);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bcffb6d2afd727a71928984d11a60160.bindPopup(popup_061a68c2d0ed7703d0532f3571350894)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58bd110026ac34eac1489ad4a4674209 = L.circleMarker(\\n\",\n       \"                [37.4314, 118.6672],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_235cfa43769044ffd63ddccbe99988a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4d39bfc4e70035d7d79b913a25a268b = $(`&lt;div id=&quot;html_f4d39bfc4e70035d7d79b913a25a268b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6672             latitude:37.4314             PM2_5:46.0             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_235cfa43769044ffd63ddccbe99988a2.setContent(html_f4d39bfc4e70035d7d79b913a25a268b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58bd110026ac34eac1489ad4a4674209.bindPopup(popup_235cfa43769044ffd63ddccbe99988a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b09f9b5b3910ed7f65dee6c97b9574c0 = L.circleMarker(\\n\",\n       \"                [35.04388889, 111.0522222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15ee9fc3f90fdd0041786488556059fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_41ea52b3c2ce6176afb519178e737308 = $(`&lt;div id=&quot;html_41ea52b3c2ce6176afb519178e737308&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0522222             latitude:35.04388889             PM2_5:72.68296089             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15ee9fc3f90fdd0041786488556059fa.setContent(html_41ea52b3c2ce6176afb519178e737308);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b09f9b5b3910ed7f65dee6c97b9574c0.bindPopup(popup_15ee9fc3f90fdd0041786488556059fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63e115e3ff13a1e4672bd8f1c89a7ff5 = L.circleMarker(\\n\",\n       \"                [38.2991, 116.8854],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_499f0bbb9952e24607cb33de834e3ef5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0489f76257c4b99baa07b3bbd24024d6 = $(`&lt;div id=&quot;html_0489f76257c4b99baa07b3bbd24024d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8854             latitude:38.2991             PM2_5:49.09749304             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_499f0bbb9952e24607cb33de834e3ef5.setContent(html_0489f76257c4b99baa07b3bbd24024d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63e115e3ff13a1e4672bd8f1c89a7ff5.bindPopup(popup_499f0bbb9952e24607cb33de834e3ef5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46362d33da4413b56e1ec73c5c6ae37f = L.circleMarker(\\n\",\n       \"                [21.7631, 108.3511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9bfe18122fe0327dcbdca7940027b0c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c340f48890185e33de4d09037bf2e2e = $(`&lt;div id=&quot;html_2c340f48890185e33de4d09037bf2e2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.3511             latitude:21.7631             PM2_5:31.28212291             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9bfe18122fe0327dcbdca7940027b0c.setContent(html_2c340f48890185e33de4d09037bf2e2e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46362d33da4413b56e1ec73c5c6ae37f.bindPopup(popup_e9bfe18122fe0327dcbdca7940027b0c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d0849eb6d5b691b53f097f8d6b40381c = L.circleMarker(\\n\",\n       \"                [36.4343, 116.0072],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_740029a7e066fbba7f6ed86ba6e40ea4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_741cae8e73975e6fa1c9d33a4a2bcf3f = $(`&lt;div id=&quot;html_741cae8e73975e6fa1c9d33a4a2bcf3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0072             latitude:36.4343             PM2_5:61.4815864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_740029a7e066fbba7f6ed86ba6e40ea4.setContent(html_741cae8e73975e6fa1c9d33a4a2bcf3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d0849eb6d5b691b53f097f8d6b40381c.bindPopup(popup_740029a7e066fbba7f6ed86ba6e40ea4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_209ecd34e9993b99d33a23259073be81 = L.circleMarker(\\n\",\n       \"                [34.3956, 108.7197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88e129dd1e7c4505faa5cccdf2273f70 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1d9f0b94e34ab017fe7fc893a8803a7 = $(`&lt;div id=&quot;html_a1d9f0b94e34ab017fe7fc893a8803a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7197             latitude:34.3956             PM2_5:60.59470752             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88e129dd1e7c4505faa5cccdf2273f70.setContent(html_a1d9f0b94e34ab017fe7fc893a8803a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_209ecd34e9993b99d33a23259073be81.bindPopup(popup_88e129dd1e7c4505faa5cccdf2273f70)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2434f0e622dc041de6c2da396c294592 = L.circleMarker(\\n\",\n       \"                [26.6514, 118.1819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77310fdf4aacfe6436793cdd0dba5024 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67bc1c9681f10c464b1058ce3eceb25f = $(`&lt;div id=&quot;html_67bc1c9681f10c464b1058ce3eceb25f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1819             latitude:26.6514             PM2_5:22.86312849             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77310fdf4aacfe6436793cdd0dba5024.setContent(html_67bc1c9681f10c464b1058ce3eceb25f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2434f0e622dc041de6c2da396c294592.bindPopup(popup_77310fdf4aacfe6436793cdd0dba5024)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27c517040bf4b59a1a34fee96e5cb99c = L.circleMarker(\\n\",\n       \"                [22.5328, 113.024],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ce1158e84e0441c9cee2bc2fe299914 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ce2a9f3fcafd51e0986679ab2abbddb = $(`&lt;div id=&quot;html_0ce2a9f3fcafd51e0986679ab2abbddb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.024             latitude:22.5328             PM2_5:36.91903409             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ce1158e84e0441c9cee2bc2fe299914.setContent(html_0ce2a9f3fcafd51e0986679ab2abbddb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27c517040bf4b59a1a34fee96e5cb99c.bindPopup(popup_4ce1158e84e0441c9cee2bc2fe299914)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d663b5d7f1de89e978901e1363cd11e = L.circleMarker(\\n\",\n       \"                [36.885, 120.515],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c67533c30b9f0aa47b7f11012350355b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f6efb3e64d1004b13096362a8d211af = $(`&lt;div id=&quot;html_9f6efb3e64d1004b13096362a8d211af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.515             latitude:36.885             PM2_5:39.55890805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c67533c30b9f0aa47b7f11012350355b.setContent(html_9f6efb3e64d1004b13096362a8d211af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d663b5d7f1de89e978901e1363cd11e.bindPopup(popup_c67533c30b9f0aa47b7f11012350355b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e0fa9d5481bc804936dbba46adb8b9f = L.circleMarker(\\n\",\n       \"                [29.5947, 105.0717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63f1afc5d82834e3cb989a27004648f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7f0a8af8810b72ed455ddb4e4aea6a5 = $(`&lt;div id=&quot;html_e7f0a8af8810b72ed455ddb4e4aea6a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0717             latitude:29.5947             PM2_5:34.1028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63f1afc5d82834e3cb989a27004648f8.setContent(html_e7f0a8af8810b72ed455ddb4e4aea6a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e0fa9d5481bc804936dbba46adb8b9f.bindPopup(popup_63f1afc5d82834e3cb989a27004648f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f10d8939926be432c7b3c0750f3f61d = L.circleMarker(\\n\",\n       \"                [45.2948, 131.0103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d833c6a61fc3cbbcc5f8473a9e317fc0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9cb764f8a7fdde670c0c313ab8bb035 = $(`&lt;div id=&quot;html_e9cb764f8a7fdde670c0c313ab8bb035&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.0103             latitude:45.2948             PM2_5:25.48174157             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d833c6a61fc3cbbcc5f8473a9e317fc0.setContent(html_e9cb764f8a7fdde670c0c313ab8bb035);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f10d8939926be432c7b3c0750f3f61d.bindPopup(popup_d833c6a61fc3cbbcc5f8473a9e317fc0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77d6de2d4e97c195692e47857ec33e26 = L.circleMarker(\\n\",\n       \"                [49.1577, 119.7512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_292f2b06a667169478277cd1392a759e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49cb823872ad8f9fd56e3320d60f704e = $(`&lt;div id=&quot;html_49cb823872ad8f9fd56e3320d60f704e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7512             latitude:49.1577             PM2_5:10.28151261             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_292f2b06a667169478277cd1392a759e.setContent(html_49cb823872ad8f9fd56e3320d60f704e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77d6de2d4e97c195692e47857ec33e26.bindPopup(popup_292f2b06a667169478277cd1392a759e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4b006bde56388e7081a253cfa95a69c = L.circleMarker(\\n\",\n       \"                [41.1953, 123.2],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f8c9ef1b5980aae6524ba6ce0e442c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d57929c8ec9b437efd1b78f16a47c10a = $(`&lt;div id=&quot;html_d57929c8ec9b437efd1b78f16a47c10a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.2             latitude:41.1953             PM2_5:26.80898876             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f8c9ef1b5980aae6524ba6ce0e442c0.setContent(html_d57929c8ec9b437efd1b78f16a47c10a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4b006bde56388e7081a253cfa95a69c.bindPopup(popup_6f8c9ef1b5980aae6524ba6ce0e442c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f732eba397d6b6721c7e310ea37787e = L.circleMarker(\\n\",\n       \"                [37.197, 122.038],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26ba6404f61c90c4af130add87d464d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_363576c595e1a1cc8c8e9b83fbe86a8a = $(`&lt;div id=&quot;html_363576c595e1a1cc8c8e9b83fbe86a8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.038             latitude:37.197             PM2_5:22.64730878             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26ba6404f61c90c4af130add87d464d6.setContent(html_363576c595e1a1cc8c8e9b83fbe86a8a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f732eba397d6b6721c7e310ea37787e.bindPopup(popup_26ba6404f61c90c4af130add87d464d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ac56388dec843ce31d4c3d1b93c18c4 = L.circleMarker(\\n\",\n       \"                [29.077, 119.647],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10c5e7744a17f73992a20d78cf6eb813 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a8a7690b8363cbf16dc064a3045df4c7 = $(`&lt;div id=&quot;html_a8a7690b8363cbf16dc064a3045df4c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.647             latitude:29.077             PM2_5:37.48739496             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10c5e7744a17f73992a20d78cf6eb813.setContent(html_a8a7690b8363cbf16dc064a3045df4c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ac56388dec843ce31d4c3d1b93c18c4.bindPopup(popup_10c5e7744a17f73992a20d78cf6eb813)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06f92691d2a701d3540568ca126cd900 = L.circleMarker(\\n\",\n       \"                [40.1269, 113.2661],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76e4ac0801875234b89ba73b90529427 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0fd2a8c18aefe4b7d37b529983b1ca05 = $(`&lt;div id=&quot;html_0fd2a8c18aefe4b7d37b529983b1ca05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2661             latitude:40.1269             PM2_5:42.12784091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76e4ac0801875234b89ba73b90529427.setContent(html_0fd2a8c18aefe4b7d37b529983b1ca05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06f92691d2a701d3540568ca126cd900.bindPopup(popup_76e4ac0801875234b89ba73b90529427)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b954ed09bf549b6592e7b004eee6c9d = L.circleMarker(\\n\",\n       \"                [39.7711, 98.2908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_553a3d2476349d4241205d7c0ac9b26d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e4a9e95db711bbde70792847151e774 = $(`&lt;div id=&quot;html_1e4a9e95db711bbde70792847151e774&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.2908             latitude:39.7711             PM2_5:30.22005571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_553a3d2476349d4241205d7c0ac9b26d.setContent(html_1e4a9e95db711bbde70792847151e774);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b954ed09bf549b6592e7b004eee6c9d.bindPopup(popup_553a3d2476349d4241205d7c0ac9b26d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a87a52ef7cf5d48568372f8b7550ecc5 = L.circleMarker(\\n\",\n       \"                [31.6861, 118.5058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1eaa8016ff7884777e4eb3bfd701026e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c16f9debb00ba75523c356253049a52 = $(`&lt;div id=&quot;html_3c16f9debb00ba75523c356253049a52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5058             latitude:31.6861             PM2_5:45.78672316             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1eaa8016ff7884777e4eb3bfd701026e.setContent(html_3c16f9debb00ba75523c356253049a52);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a87a52ef7cf5d48568372f8b7550ecc5.bindPopup(popup_1eaa8016ff7884777e4eb3bfd701026e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44bd667a5b5e6adbfca845adbef62982 = L.circleMarker(\\n\",\n       \"                [34.3469, 106.005],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86066aee8338fff15111099d4d095c7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96f129de0a381c12de3d784456d4dcc9 = $(`&lt;div id=&quot;html_96f129de0a381c12de3d784456d4dcc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.005             latitude:34.3469             PM2_5:21.88243626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86066aee8338fff15111099d4d095c7f.setContent(html_96f129de0a381c12de3d784456d4dcc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44bd667a5b5e6adbfca845adbef62982.bindPopup(popup_86066aee8338fff15111099d4d095c7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d3d06095cf280d61f3b7f4538971ac2 = L.circleMarker(\\n\",\n       \"                [31.2797, 107.5272],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e6134d2bf86a415990bd3e1875c4c56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ced7f221e1e1f8ca9d15909ad83111f = $(`&lt;div id=&quot;html_0ced7f221e1e1f8ca9d15909ad83111f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5272             latitude:31.2797             PM2_5:42.31320225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e6134d2bf86a415990bd3e1875c4c56.setContent(html_0ced7f221e1e1f8ca9d15909ad83111f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d3d06095cf280d61f3b7f4538971ac2.bindPopup(popup_2e6134d2bf86a415990bd3e1875c4c56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2b36d42e5ab5e7d5230697ebf0a016c = L.circleMarker(\\n\",\n       \"                [34.407, 115.6386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ec13a7c85de3d2df958427fdfe541b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0b64c62363265b11227236ba7369b9b = $(`&lt;div id=&quot;html_d0b64c62363265b11227236ba7369b9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6386             latitude:34.407             PM2_5:54.83519553             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ec13a7c85de3d2df958427fdfe541b5.setContent(html_d0b64c62363265b11227236ba7369b9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2b36d42e5ab5e7d5230697ebf0a016c.bindPopup(popup_1ec13a7c85de3d2df958427fdfe541b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9158f00b7b348dcd96be11cbc2537e3a = L.circleMarker(\\n\",\n       \"                [31.0283, 103.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_036414a285d45d86cc59a893e7a4ebbb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e4c2a471401004c8d8011e2dc432664 = $(`&lt;div id=&quot;html_9e4c2a471401004c8d8011e2dc432664&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.613             latitude:31.0283             PM2_5:38.79661017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_036414a285d45d86cc59a893e7a4ebbb.setContent(html_9e4c2a471401004c8d8011e2dc432664);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9158f00b7b348dcd96be11cbc2537e3a.bindPopup(popup_036414a285d45d86cc59a893e7a4ebbb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d814bbd4e3b153fd9e9761a4dc75661 = L.circleMarker(\\n\",\n       \"                [43.85, 125.217],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7a58524e991479de3be89b81eebffe2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd26088e5c8b31bc18b718c68e8eee19 = $(`&lt;div id=&quot;html_cd26088e5c8b31bc18b718c68e8eee19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.217             latitude:43.85             PM2_5:27.01971831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7a58524e991479de3be89b81eebffe2.setContent(html_cd26088e5c8b31bc18b718c68e8eee19);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d814bbd4e3b153fd9e9761a4dc75661.bindPopup(popup_b7a58524e991479de3be89b81eebffe2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f18a06a727417471a742bcba96d0c35 = L.circleMarker(\\n\",\n       \"                [30.0874, 103.8416],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b947e3fcf48ebacf3ce37aa2ffe80541 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5877e9d83110bccd1e76f11d973e51de = $(`&lt;div id=&quot;html_5877e9d83110bccd1e76f11d973e51de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8416             latitude:30.0874             PM2_5:43.24930362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b947e3fcf48ebacf3ce37aa2ffe80541.setContent(html_5877e9d83110bccd1e76f11d973e51de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f18a06a727417471a742bcba96d0c35.bindPopup(popup_b947e3fcf48ebacf3ce37aa2ffe80541)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52a0815afbdfc400f5efe091edc75181 = L.circleMarker(\\n\",\n       \"                [34.8731, 108.9589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9592982d21afa948cc1355361fce0e0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc674f3a0a8e7f37b79ec6cd80ca0f8c = $(`&lt;div id=&quot;html_dc674f3a0a8e7f37b79ec6cd80ca0f8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.9589             latitude:34.8731             PM2_5:51.80346821             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9592982d21afa948cc1355361fce0e0d.setContent(html_dc674f3a0a8e7f37b79ec6cd80ca0f8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52a0815afbdfc400f5efe091edc75181.bindPopup(popup_9592982d21afa948cc1355361fce0e0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b0cd94be670a3f82ab32d8b8fb156fe = L.circleMarker(\\n\",\n       \"                [46.5776, 125.1386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc26e0ef5d76cdf993bd1874b4069579 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b747ed0efee9c7763e2f718e70ef00d = $(`&lt;div id=&quot;html_8b747ed0efee9c7763e2f718e70ef00d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1386             latitude:46.5776             PM2_5:32.70612813             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc26e0ef5d76cdf993bd1874b4069579.setContent(html_8b747ed0efee9c7763e2f718e70ef00d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b0cd94be670a3f82ab32d8b8fb156fe.bindPopup(popup_dc26e0ef5d76cdf993bd1874b4069579)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1298aa9052812175e79c8028a01ffbf0 = L.circleMarker(\\n\",\n       \"                [32.1403, 114.0122],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d7c80bc02dfbc722ff8aac47f537248 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c410065c26d92b34b7cb421cb5d36764 = $(`&lt;div id=&quot;html_c410065c26d92b34b7cb421cb5d36764&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0122             latitude:32.1403             PM2_5:44.81843575             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d7c80bc02dfbc722ff8aac47f537248.setContent(html_c410065c26d92b34b7cb421cb5d36764);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1298aa9052812175e79c8028a01ffbf0.bindPopup(popup_0d7c80bc02dfbc722ff8aac47f537248)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_268518bd494aca5e736933531b9ea627 = L.circleMarker(\\n\",\n       \"                [25.0441, 101.5482],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19363bb6d52d52deea4e3cfa232a644e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca67cb2d40420fc2034ce7ffbeb1abf7 = $(`&lt;div id=&quot;html_ca67cb2d40420fc2034ce7ffbeb1abf7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.5482             latitude:25.0441             PM2_5:15.67688022             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19363bb6d52d52deea4e3cfa232a644e.setContent(html_ca67cb2d40420fc2034ce7ffbeb1abf7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_268518bd494aca5e736933531b9ea627.bindPopup(popup_19363bb6d52d52deea4e3cfa232a644e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4174964e46b8a94852ba0bc03e9cbf42 = L.circleMarker(\\n\",\n       \"                [30.63, 104.1113889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8687e7050e857943c5734fbe54113677 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b735fdfc92726eb11b45a175011202d7 = $(`&lt;div id=&quot;html_b735fdfc92726eb11b45a175011202d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1113889             latitude:30.63             PM2_5:52.46787709             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8687e7050e857943c5734fbe54113677.setContent(html_b735fdfc92726eb11b45a175011202d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4174964e46b8a94852ba0bc03e9cbf42.bindPopup(popup_8687e7050e857943c5734fbe54113677)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddb20bdb65c9962c267a188784ad51cf = L.circleMarker(\\n\",\n       \"                [33.721, 113.322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e697cf2952053aa585c437ac10ede78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0be37a8923740aac467b3625b69eefb = $(`&lt;div id=&quot;html_b0be37a8923740aac467b3625b69eefb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.322             latitude:33.721             PM2_5:62.36805556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e697cf2952053aa585c437ac10ede78.setContent(html_b0be37a8923740aac467b3625b69eefb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddb20bdb65c9962c267a188784ad51cf.bindPopup(popup_4e697cf2952053aa585c437ac10ede78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f851043aa1040b472d039ce4ed51328 = L.circleMarker(\\n\",\n       \"                [23.05361111, 113.7819444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71955a6db015e179d81eccfacce28ed7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f07d1745d41f1440d67032ebca5de8a = $(`&lt;div id=&quot;html_6f07d1745d41f1440d67032ebca5de8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7819444             latitude:23.05361111             PM2_5:37.732493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71955a6db015e179d81eccfacce28ed7.setContent(html_6f07d1745d41f1440d67032ebca5de8a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f851043aa1040b472d039ce4ed51328.bindPopup(popup_71955a6db015e179d81eccfacce28ed7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e96b2427cfcbfcb8c39c76c7d34d569 = L.circleMarker(\\n\",\n       \"                [35.1147, 111.0414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d12dd65b338199fe253f4747b2c42c3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2baeeff2718f7e0e4776581f23edb6a = $(`&lt;div id=&quot;html_c2baeeff2718f7e0e4776581f23edb6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0414             latitude:35.1147             PM2_5:57.46648045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d12dd65b338199fe253f4747b2c42c3d.setContent(html_c2baeeff2718f7e0e4776581f23edb6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e96b2427cfcbfcb8c39c76c7d34d569.bindPopup(popup_d12dd65b338199fe253f4747b2c42c3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65cf53566f0d273de1ecb1182ad7ddfc = L.circleMarker(\\n\",\n       \"                [38.5036, 106.1358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24a02732b1a055a66ac53251e9863d03 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04a4653601330384a1dd82b39800f25c = $(`&lt;div id=&quot;html_04a4653601330384a1dd82b39800f25c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1358             latitude:38.5036             PM2_5:34.52222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24a02732b1a055a66ac53251e9863d03.setContent(html_04a4653601330384a1dd82b39800f25c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65cf53566f0d273de1ecb1182ad7ddfc.bindPopup(popup_24a02732b1a055a66ac53251e9863d03)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6051730d34e5eb9324b9b260d79fca6d = L.circleMarker(\\n\",\n       \"                [36.4796, 115.9835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81cbf2fff6eaeab611023053441d0a2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_305c74f0c34435e9a4ec627e95e4bb87 = $(`&lt;div id=&quot;html_305c74f0c34435e9a4ec627e95e4bb87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9835             latitude:36.4796             PM2_5:57.26740947             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81cbf2fff6eaeab611023053441d0a2f.setContent(html_305c74f0c34435e9a4ec627e95e4bb87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6051730d34e5eb9324b9b260d79fca6d.bindPopup(popup_81cbf2fff6eaeab611023053441d0a2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff25c645497c4de20c344ccc3c94120e = L.circleMarker(\\n\",\n       \"                [44.1756, 87.5475],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0cc9a4b58a678d61c621e91ef3affed6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93d8473f0ea993626e3a5ec5a8c95019 = $(`&lt;div id=&quot;html_93d8473f0ea993626e3a5ec5a8c95019&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5475             latitude:44.1756             PM2_5:61.95505618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0cc9a4b58a678d61c621e91ef3affed6.setContent(html_93d8473f0ea993626e3a5ec5a8c95019);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff25c645497c4de20c344ccc3c94120e.bindPopup(popup_0cc9a4b58a678d61c621e91ef3affed6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9251f6beaaa3a4edfff12fa82f9cef70 = L.circleMarker(\\n\",\n       \"                [30.3058, 120.348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53436022310714e947695d8a0a5ab5dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25d6c47525e3017b3c87bc74f76c25e5 = $(`&lt;div id=&quot;html_25d6c47525e3017b3c87bc74f76c25e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.348             latitude:30.3058             PM2_5:46.53047091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53436022310714e947695d8a0a5ab5dc.setContent(html_25d6c47525e3017b3c87bc74f76c25e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9251f6beaaa3a4edfff12fa82f9cef70.bindPopup(popup_53436022310714e947695d8a0a5ab5dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c0b9c9ffe18c14f1685ba30da0bbe3d = L.circleMarker(\\n\",\n       \"                [29.6039, 115.9114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_14e180a5ff3d4ee4c9537eb40f5602dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36fe473f45bfaa61572699d54d6e21e3 = $(`&lt;div id=&quot;html_36fe473f45bfaa61572699d54d6e21e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9114             latitude:29.6039             PM2_5:43.8487395             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_14e180a5ff3d4ee4c9537eb40f5602dc.setContent(html_36fe473f45bfaa61572699d54d6e21e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c0b9c9ffe18c14f1685ba30da0bbe3d.bindPopup(popup_14e180a5ff3d4ee4c9537eb40f5602dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96b42fca6e3a44933716a4df4ee00a65 = L.circleMarker(\\n\",\n       \"                [27.5733, 109.9333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0dda856b21f2e589b0b5e965c20d0de8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ec9ff50ece38fc4e0d401a23bda7b81 = $(`&lt;div id=&quot;html_7ec9ff50ece38fc4e0d401a23bda7b81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9333             latitude:27.5733             PM2_5:42.20140845             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0dda856b21f2e589b0b5e965c20d0de8.setContent(html_7ec9ff50ece38fc4e0d401a23bda7b81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96b42fca6e3a44933716a4df4ee00a65.bindPopup(popup_0dda856b21f2e589b0b5e965c20d0de8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d48b56f232d27ed66e460cebcaf8fbb = L.circleMarker(\\n\",\n       \"                [28.2189, 112.8872],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fa267f07e06f566725de5c47233440f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19d8175122982908a1e87bb6e4d33d94 = $(`&lt;div id=&quot;html_19d8175122982908a1e87bb6e4d33d94&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8872             latitude:28.2189             PM2_5:46.02374302             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fa267f07e06f566725de5c47233440f.setContent(html_19d8175122982908a1e87bb6e4d33d94);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d48b56f232d27ed66e460cebcaf8fbb.bindPopup(popup_8fa267f07e06f566725de5c47233440f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f57c2cdaa2fd492447b7a087e0574be = L.circleMarker(\\n\",\n       \"                [27.7758, 115.0586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6618abc4f8839a5637e0e4e9e13e6b72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_821ab5df6598691b836f5fbf24978d35 = $(`&lt;div id=&quot;html_821ab5df6598691b836f5fbf24978d35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0586             latitude:27.7758             PM2_5:43.86864407             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6618abc4f8839a5637e0e4e9e13e6b72.setContent(html_821ab5df6598691b836f5fbf24978d35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f57c2cdaa2fd492447b7a087e0574be.bindPopup(popup_6618abc4f8839a5637e0e4e9e13e6b72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2dd64fe55727401098ff03c2cf5fb076 = L.circleMarker(\\n\",\n       \"                [24.3304, 109.4108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12ddf25c7a6b2bde4be434c342aa9e69 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8937c035324259d22a699532f3f3f8d4 = $(`&lt;div id=&quot;html_8937c035324259d22a699532f3f3f8d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4108             latitude:24.3304             PM2_5:44.54661017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12ddf25c7a6b2bde4be434c342aa9e69.setContent(html_8937c035324259d22a699532f3f3f8d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2dd64fe55727401098ff03c2cf5fb076.bindPopup(popup_12ddf25c7a6b2bde4be434c342aa9e69)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67367d9e3fc3b771205e1d5b3fbf7056 = L.circleMarker(\\n\",\n       \"                [24.795928, 113.598061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c287871a9cc4ef9a062baed829fc934 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3980ae80bcaa77ed00c9c7d43059de0 = $(`&lt;div id=&quot;html_c3980ae80bcaa77ed00c9c7d43059de0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.598061             latitude:24.795928             PM2_5:31.37429379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c287871a9cc4ef9a062baed829fc934.setContent(html_c3980ae80bcaa77ed00c9c7d43059de0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67367d9e3fc3b771205e1d5b3fbf7056.bindPopup(popup_3c287871a9cc4ef9a062baed829fc934)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36750ba91b122dd9245b28012b83d9c9 = L.circleMarker(\\n\",\n       \"                [36.71, 117.541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65d587f4e445cb4428881cab90519259 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_799c6c8cd0845ecf8a3b49fc49df293d = $(`&lt;div id=&quot;html_799c6c8cd0845ecf8a3b49fc49df293d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.541             latitude:36.71             PM2_5:54.36             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65d587f4e445cb4428881cab90519259.setContent(html_799c6c8cd0845ecf8a3b49fc49df293d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36750ba91b122dd9245b28012b83d9c9.bindPopup(popup_65d587f4e445cb4428881cab90519259)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d0e90a731dbbeb61f04a1d9cc492452 = L.circleMarker(\\n\",\n       \"                [43.9317, 116.1042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c3313ee021b4335c35218cdc8cdeb8b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3325c9dae73f85cc00ddf7cca8019fe5 = $(`&lt;div id=&quot;html_3325c9dae73f85cc00ddf7cca8019fe5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1042             latitude:43.9317             PM2_5:15.73460411             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c3313ee021b4335c35218cdc8cdeb8b.setContent(html_3325c9dae73f85cc00ddf7cca8019fe5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d0e90a731dbbeb61f04a1d9cc492452.bindPopup(popup_3c3313ee021b4335c35218cdc8cdeb8b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a829f93d69ced3e64edc5e2898e955e9 = L.circleMarker(\\n\",\n       \"                [23.2539, 116.6092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_462e58489206fd1803083d6020861d3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29f3d49c6dc4fd2c2d2acecdd98bc497 = $(`&lt;div id=&quot;html_29f3d49c6dc4fd2c2d2acecdd98bc497&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6092             latitude:23.2539             PM2_5:24.50423729             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_462e58489206fd1803083d6020861d3f.setContent(html_29f3d49c6dc4fd2c2d2acecdd98bc497);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a829f93d69ced3e64edc5e2898e955e9.bindPopup(popup_462e58489206fd1803083d6020861d3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3b3084e9623262c7850e2f2bc5ae59a = L.circleMarker(\\n\",\n       \"                [29.3411, 104.7692],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_096d1ef3550c867184acaa03622de2d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecbd6cdfc90e43b99dea552a1ea523d2 = $(`&lt;div id=&quot;html_ecbd6cdfc90e43b99dea552a1ea523d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7692             latitude:29.3411             PM2_5:64.99164345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_096d1ef3550c867184acaa03622de2d4.setContent(html_ecbd6cdfc90e43b99dea552a1ea523d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3b3084e9623262c7850e2f2bc5ae59a.bindPopup(popup_096d1ef3550c867184acaa03622de2d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9fc7f15ec46f0faf87c3b8be831d0a3 = L.circleMarker(\\n\",\n       \"                [39.9425, 116.361],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_032d4e248a9a0011a8493a5cea67579b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_004b75a0fda53a25f8a145fde2c295ed = $(`&lt;div id=&quot;html_004b75a0fda53a25f8a145fde2c295ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.361             latitude:39.9425             PM2_5:53.87780899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_032d4e248a9a0011a8493a5cea67579b.setContent(html_004b75a0fda53a25f8a145fde2c295ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9fc7f15ec46f0faf87c3b8be831d0a3.bindPopup(popup_032d4e248a9a0011a8493a5cea67579b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e93cc11a3df209d07acd2b3be56d9b12 = L.circleMarker(\\n\",\n       \"                [32.625, 116.7039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef5a528d201acb50188c98d42ed47775 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3bddad32a2cf96c4fe9f9840eebed019 = $(`&lt;div id=&quot;html_3bddad32a2cf96c4fe9f9840eebed019&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7039             latitude:32.625             PM2_5:58.06582633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef5a528d201acb50188c98d42ed47775.setContent(html_3bddad32a2cf96c4fe9f9840eebed019);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e93cc11a3df209d07acd2b3be56d9b12.bindPopup(popup_ef5a528d201acb50188c98d42ed47775)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0840a0f5dfa502ea63222cf74947b962 = L.circleMarker(\\n\",\n       \"                [41.2736, 123.1761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aacae09a2f98d28685915858c605c70a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cfea8365381cadb9a522232052e1d7de = $(`&lt;div id=&quot;html_cfea8365381cadb9a522232052e1d7de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1761             latitude:41.2736             PM2_5:31.98467967             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aacae09a2f98d28685915858c605c70a.setContent(html_cfea8365381cadb9a522232052e1d7de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0840a0f5dfa502ea63222cf74947b962.bindPopup(popup_aacae09a2f98d28685915858c605c70a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b745fc6afcecfb4a3cda61b9c5f59acd = L.circleMarker(\\n\",\n       \"                [34.1546, 108.906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_056ea57cc3684eef5f12cfc1cb127777 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_87b9672f25b0c075f423c6a5d7b04d51 = $(`&lt;div id=&quot;html_87b9672f25b0c075f423c6a5d7b04d51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.906             latitude:34.1546             PM2_5:63.16142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_056ea57cc3684eef5f12cfc1cb127777.setContent(html_87b9672f25b0c075f423c6a5d7b04d51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b745fc6afcecfb4a3cda61b9c5f59acd.bindPopup(popup_056ea57cc3684eef5f12cfc1cb127777)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6b07c830f1d34bb899dccde2d1c5ca6 = L.circleMarker(\\n\",\n       \"                [28.0797, 116.2239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00d632815b3680a2ae7d306a63a886b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1fa9c5d1e72dcd65d97e30eac80527e5 = $(`&lt;div id=&quot;html_1fa9c5d1e72dcd65d97e30eac80527e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.2239             latitude:28.0797             PM2_5:43.84861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00d632815b3680a2ae7d306a63a886b5.setContent(html_1fa9c5d1e72dcd65d97e30eac80527e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6b07c830f1d34bb899dccde2d1c5ca6.bindPopup(popup_00d632815b3680a2ae7d306a63a886b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_475007aea65870fba7c62126845bc321 = L.circleMarker(\\n\",\n       \"                [34.4286, 115.6697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b31abde903b8258635055a9d76bddd35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be6f2214fa5131776bae3c9298083cd0 = $(`&lt;div id=&quot;html_be6f2214fa5131776bae3c9298083cd0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6697             latitude:34.4286             PM2_5:58.56478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b31abde903b8258635055a9d76bddd35.setContent(html_be6f2214fa5131776bae3c9298083cd0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_475007aea65870fba7c62126845bc321.bindPopup(popup_b31abde903b8258635055a9d76bddd35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c93114ed4ac7abf4ce3a5a9abed7201b = L.circleMarker(\\n\",\n       \"                [31.7618, 116.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d01ac074220c2e336749bde41fd54cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c44e48b730bebe5dd15b1f583e9f76a = $(`&lt;div id=&quot;html_6c44e48b730bebe5dd15b1f583e9f76a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.478             latitude:31.7618             PM2_5:41.19722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d01ac074220c2e336749bde41fd54cc.setContent(html_6c44e48b730bebe5dd15b1f583e9f76a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c93114ed4ac7abf4ce3a5a9abed7201b.bindPopup(popup_4d01ac074220c2e336749bde41fd54cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2bb3b508c5921019f960e214cce1b46 = L.circleMarker(\\n\",\n       \"                [39.1654, 117.145],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16aa2dbffee6186a31b84e30c36688d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c39cd4e0697425f36653dc3561549777 = $(`&lt;div id=&quot;html_c39cd4e0697425f36653dc3561549777&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.145             latitude:39.1654             PM2_5:50.42458101             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16aa2dbffee6186a31b84e30c36688d6.setContent(html_c39cd4e0697425f36653dc3561549777);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2bb3b508c5921019f960e214cce1b46.bindPopup(popup_16aa2dbffee6186a31b84e30c36688d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5555f65990e906757a08f36c708ada4d = L.circleMarker(\\n\",\n       \"                [46.0347, 124.8354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97b2a150fec44d2692c387e21ac4d7ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f042f04ccfd88e5044a5391856ec8f7f = $(`&lt;div id=&quot;html_f042f04ccfd88e5044a5391856ec8f7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8354             latitude:46.0347             PM2_5:29.63342697             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97b2a150fec44d2692c387e21ac4d7ae.setContent(html_f042f04ccfd88e5044a5391856ec8f7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5555f65990e906757a08f36c708ada4d.bindPopup(popup_97b2a150fec44d2692c387e21ac4d7ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3d395e7871d3e2f88b5e5c473503107 = L.circleMarker(\\n\",\n       \"                [32.1342, 114.0681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae7e3e253f77372212aa4636bf4ad49e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54804f49be2a910387e1f443b68e838f = $(`&lt;div id=&quot;html_54804f49be2a910387e1f443b68e838f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0681             latitude:32.1342             PM2_5:48.12083333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae7e3e253f77372212aa4636bf4ad49e.setContent(html_54804f49be2a910387e1f443b68e838f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3d395e7871d3e2f88b5e5c473503107.bindPopup(popup_ae7e3e253f77372212aa4636bf4ad49e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3cb740393fcfd9c83ae1aacb7553d239 = L.circleMarker(\\n\",\n       \"                [31.422, 121.14],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52a86ae5a39ca374b85c36207f4cfa1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a248a48f334b6ad9a7151fca62e76e2f = $(`&lt;div id=&quot;html_a248a48f334b6ad9a7151fca62e76e2f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.14             latitude:31.422             PM2_5:36.98680352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52a86ae5a39ca374b85c36207f4cfa1b.setContent(html_a248a48f334b6ad9a7151fca62e76e2f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3cb740393fcfd9c83ae1aacb7553d239.bindPopup(popup_52a86ae5a39ca374b85c36207f4cfa1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4102f1dfa1d99dfcbae34c781d9b854 = L.circleMarker(\\n\",\n       \"                [43.9469, 87.4754],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b3770eb178ebc34706eaa2ea047fe530 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18197f919d7c4980a1d0e9e65feb39e1 = $(`&lt;div id=&quot;html_18197f919d7c4980a1d0e9e65feb39e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.4754             latitude:43.9469             PM2_5:77.70943953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b3770eb178ebc34706eaa2ea047fe530.setContent(html_18197f919d7c4980a1d0e9e65feb39e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4102f1dfa1d99dfcbae34c781d9b854.bindPopup(popup_b3770eb178ebc34706eaa2ea047fe530)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13c107261743153c9ac6119ab53bd6b2 = L.circleMarker(\\n\",\n       \"                [32.9735, 112.5003],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3eed9532aa5a4531e8bc2faa8ef60ef7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d220c860fbdfba28897b97f3b1b112ac = $(`&lt;div id=&quot;html_d220c860fbdfba28897b97f3b1b112ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5003             latitude:32.9735             PM2_5:56.01264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3eed9532aa5a4531e8bc2faa8ef60ef7.setContent(html_d220c860fbdfba28897b97f3b1b112ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13c107261743153c9ac6119ab53bd6b2.bindPopup(popup_3eed9532aa5a4531e8bc2faa8ef60ef7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f62fdcd488f5c4689d28f152b8271083 = L.circleMarker(\\n\",\n       \"                [31.909, 120.237],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_844fa03c8105c25ef9d2f0915b6cc8f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10cf7c35733121ade3ceec62eeff9111 = $(`&lt;div id=&quot;html_10cf7c35733121ade3ceec62eeff9111&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.237             latitude:31.909             PM2_5:53.80617978             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_844fa03c8105c25ef9d2f0915b6cc8f3.setContent(html_10cf7c35733121ade3ceec62eeff9111);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f62fdcd488f5c4689d28f152b8271083.bindPopup(popup_844fa03c8105c25ef9d2f0915b6cc8f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d39cb6e535f69bfaaa4edba5a956efe = L.circleMarker(\\n\",\n       \"                [38.8756, 115.442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49813e6b643891f58ae664914a993b2b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed4fc925ae4d01d78a215da901b3def3 = $(`&lt;div id=&quot;html_ed4fc925ae4d01d78a215da901b3def3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.442             latitude:38.8756             PM2_5:50.77170868             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49813e6b643891f58ae664914a993b2b.setContent(html_ed4fc925ae4d01d78a215da901b3def3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d39cb6e535f69bfaaa4edba5a956efe.bindPopup(popup_49813e6b643891f58ae664914a993b2b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8bebbeb38e096f94c23bf2522fb9e8ac = L.circleMarker(\\n\",\n       \"                [44.6104, 129.6459],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f986fa07f64d612e1126481843575957 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e756cf137787dbc8894a465711a2065c = $(`&lt;div id=&quot;html_e756cf137787dbc8894a465711a2065c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6459             latitude:44.6104             PM2_5:26.84033613             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f986fa07f64d612e1126481843575957.setContent(html_e756cf137787dbc8894a465711a2065c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8bebbeb38e096f94c23bf2522fb9e8ac.bindPopup(popup_f986fa07f64d612e1126481843575957)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f4363d78c71eb7d582fb872adfb2ff8 = L.circleMarker(\\n\",\n       \"                [31.6411, 118.4828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbbfe43182e9195a7f32f9f7e11d2772 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b552f05cee6b89c4137dda4707869d76 = $(`&lt;div id=&quot;html_b552f05cee6b89c4137dda4707869d76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4828             latitude:31.6411             PM2_5:43.52653631             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbbfe43182e9195a7f32f9f7e11d2772.setContent(html_b552f05cee6b89c4137dda4707869d76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f4363d78c71eb7d582fb872adfb2ff8.bindPopup(popup_bbbfe43182e9195a7f32f9f7e11d2772)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87a25c7ae3953deeba632bb74c663cf3 = L.circleMarker(\\n\",\n       \"                [32.965, 114.018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4626fbd94225338e0722c4e0c796777 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d46410e59f8ac49ffaca74534930cc38 = $(`&lt;div id=&quot;html_d46410e59f8ac49ffaca74534930cc38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.018             latitude:32.965             PM2_5:53.2740113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4626fbd94225338e0722c4e0c796777.setContent(html_d46410e59f8ac49ffaca74534930cc38);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87a25c7ae3953deeba632bb74c663cf3.bindPopup(popup_a4626fbd94225338e0722c4e0c796777)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97abd21c7c55adf9c14db83cc79b427b = L.circleMarker(\\n\",\n       \"                [32.4611, 119.9219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d48b02e1a5ae090e0f76a640c83fc8d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9c0da64d74b99d58efcb021da5c9b56 = $(`&lt;div id=&quot;html_f9c0da64d74b99d58efcb021da5c9b56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9219             latitude:32.4611             PM2_5:46.7261236             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d48b02e1a5ae090e0f76a640c83fc8d.setContent(html_f9c0da64d74b99d58efcb021da5c9b56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97abd21c7c55adf9c14db83cc79b427b.bindPopup(popup_7d48b02e1a5ae090e0f76a640c83fc8d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e77bdd9e8d9d7ff50b393258f178d5c5 = L.circleMarker(\\n\",\n       \"                [36.0022, 106.2792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16a6f6dffaf63865f9bde91299708715 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0cc4b020bd89b78b842452fcf73a179d = $(`&lt;div id=&quot;html_0cc4b020bd89b78b842452fcf73a179d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2792             latitude:36.0022             PM2_5:24.97771588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16a6f6dffaf63865f9bde91299708715.setContent(html_0cc4b020bd89b78b842452fcf73a179d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e77bdd9e8d9d7ff50b393258f178d5c5.bindPopup(popup_16a6f6dffaf63865f9bde91299708715)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2103e023e800c2e2c54ceb2bd7305fe = L.circleMarker(\\n\",\n       \"                [40.3937, 116.644],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d7cb004929083f75a3a6a13e5b379e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4fda9a3d8ff0bb8add8a16fb16ffb370 = $(`&lt;div id=&quot;html_4fda9a3d8ff0bb8add8a16fb16ffb370&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.644             latitude:40.3937             PM2_5:46.92151163             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d7cb004929083f75a3a6a13e5b379e5.setContent(html_4fda9a3d8ff0bb8add8a16fb16ffb370);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2103e023e800c2e2c54ceb2bd7305fe.bindPopup(popup_3d7cb004929083f75a3a6a13e5b379e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_371096aa7876f300f6ecfc474fdcb9dc = L.circleMarker(\\n\",\n       \"                [32.1883, 119.68],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8105c0a09ab9080d9f5f0341334b9ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da75a63fb57650da248c40812a46f529 = $(`&lt;div id=&quot;html_da75a63fb57650da248c40812a46f529&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.68             latitude:32.1883             PM2_5:51.92178771             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8105c0a09ab9080d9f5f0341334b9ce.setContent(html_da75a63fb57650da248c40812a46f529);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_371096aa7876f300f6ecfc474fdcb9dc.bindPopup(popup_c8105c0a09ab9080d9f5f0341334b9ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b7929d2aec3185faf34107133714607 = L.circleMarker(\\n\",\n       \"                [27.6442, 113.8686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01cdf8ca5d96bb948b0d00c16eed6efb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80d2a80d7cbced63a0093e1d5e54c6d7 = $(`&lt;div id=&quot;html_80d2a80d7cbced63a0093e1d5e54c6d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8686             latitude:27.6442             PM2_5:43.725             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01cdf8ca5d96bb948b0d00c16eed6efb.setContent(html_80d2a80d7cbced63a0093e1d5e54c6d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b7929d2aec3185faf34107133714607.bindPopup(popup_01cdf8ca5d96bb948b0d00c16eed6efb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d33f27fdb07d32d10942d0a5f676ad3 = L.circleMarker(\\n\",\n       \"                [27.7842, 114.3953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b283e12cd67aaba7e26872604887e64a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9dc1fe91cdb1462b102914fc899199c5 = $(`&lt;div id=&quot;html_9dc1fe91cdb1462b102914fc899199c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3953             latitude:27.7842             PM2_5:48.19777159             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b283e12cd67aaba7e26872604887e64a.setContent(html_9dc1fe91cdb1462b102914fc899199c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d33f27fdb07d32d10942d0a5f676ad3.bindPopup(popup_b283e12cd67aaba7e26872604887e64a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40de1ae3f974a108c174ec498a49895f = L.circleMarker(\\n\",\n       \"                [27.8317, 99.7056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78c923a4065b052f28eaf30e0b08aa91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_437c3e0225d5275492da4d23d8386dcc = $(`&lt;div id=&quot;html_437c3e0225d5275492da4d23d8386dcc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.7056             latitude:27.8317             PM2_5:12.73638968             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78c923a4065b052f28eaf30e0b08aa91.setContent(html_437c3e0225d5275492da4d23d8386dcc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40de1ae3f974a108c174ec498a49895f.bindPopup(popup_78c923a4065b052f28eaf30e0b08aa91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7d9cd771d39a83f3a5f7169d0e5a0ad = L.circleMarker(\\n\",\n       \"                [41.1222, 121.1178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de38dfc6fb6e24f6587cca5273ce7af8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9a91bbb3e177d027e37e115842c94ae = $(`&lt;div id=&quot;html_f9a91bbb3e177d027e37e115842c94ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1178             latitude:41.1222             PM2_5:34.33379888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de38dfc6fb6e24f6587cca5273ce7af8.setContent(html_f9a91bbb3e177d027e37e115842c94ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7d9cd771d39a83f3a5f7169d0e5a0ad.bindPopup(popup_de38dfc6fb6e24f6587cca5273ce7af8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a34d6cc75f3aad6a36008dcb5b268dae = L.circleMarker(\\n\",\n       \"                [29.6514, 91.1319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20bcd7ac8ae84762f60339c4356c9098 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae615e4a65bd9576fcf77cbb80acc433 = $(`&lt;div id=&quot;html_ae615e4a65bd9576fcf77cbb80acc433&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1319             latitude:29.6514             PM2_5:19.38243626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20bcd7ac8ae84762f60339c4356c9098.setContent(html_ae615e4a65bd9576fcf77cbb80acc433);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a34d6cc75f3aad6a36008dcb5b268dae.bindPopup(popup_20bcd7ac8ae84762f60339c4356c9098)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a6012c58329db3c477d67527c554911 = L.circleMarker(\\n\",\n       \"                [23.65889, 116.6183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4da21fe826c539c616a502dc321bc93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_253b4f0ad65705445410471415da9150 = $(`&lt;div id=&quot;html_253b4f0ad65705445410471415da9150&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6183             latitude:23.65889             PM2_5:30.49442897             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4da21fe826c539c616a502dc321bc93.setContent(html_253b4f0ad65705445410471415da9150);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a6012c58329db3c477d67527c554911.bindPopup(popup_a4da21fe826c539c616a502dc321bc93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45c228f79ce06b04e4a9195d1125231d = L.circleMarker(\\n\",\n       \"                [31.3178, 118.3708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a960bdf9ed80f253406ab4ab591efe9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d55b3eabc5f7b23d5b80b892e680f7e = $(`&lt;div id=&quot;html_9d55b3eabc5f7b23d5b80b892e680f7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3708             latitude:31.3178             PM2_5:55.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a960bdf9ed80f253406ab4ab591efe9.setContent(html_9d55b3eabc5f7b23d5b80b892e680f7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45c228f79ce06b04e4a9195d1125231d.bindPopup(popup_1a960bdf9ed80f253406ab4ab591efe9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3303f9a624c7b517e82cc2eb22447530 = L.circleMarker(\\n\",\n       \"                [40.0031, 116.407],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1181c4b23bed2c72378af63e6e1ff767 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9abdaa24ba59cfcdbfb1a0464653b76c = $(`&lt;div id=&quot;html_9abdaa24ba59cfcdbfb1a0464653b76c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.407             latitude:40.0031             PM2_5:51.25069638             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1181c4b23bed2c72378af63e6e1ff767.setContent(html_9abdaa24ba59cfcdbfb1a0464653b76c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3303f9a624c7b517e82cc2eb22447530.bindPopup(popup_1181c4b23bed2c72378af63e6e1ff767)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_513a42857ea2750d515b181052fad0f1 = L.circleMarker(\\n\",\n       \"                [28.6869, 115.852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_235ec4efdc93b65dbba47596efea11e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf41c799e9c4c571297cf393ab53ce16 = $(`&lt;div id=&quot;html_cf41c799e9c4c571297cf393ab53ce16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.852             latitude:28.6869             PM2_5:34.8837535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_235ec4efdc93b65dbba47596efea11e2.setContent(html_cf41c799e9c4c571297cf393ab53ce16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_513a42857ea2750d515b181052fad0f1.bindPopup(popup_235ec4efdc93b65dbba47596efea11e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15a2d739a8e795953f44bb0f649cbb6b = L.circleMarker(\\n\",\n       \"                [27.2537, 111.4503],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33fc80cd876948e21a8e63e7fc72ab8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9774d5e8da50e9a8d8c87cd6cdaf119b = $(`&lt;div id=&quot;html_9774d5e8da50e9a8d8c87cd6cdaf119b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4503             latitude:27.2537             PM2_5:49.32869081             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33fc80cd876948e21a8e63e7fc72ab8e.setContent(html_9774d5e8da50e9a8d8c87cd6cdaf119b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15a2d739a8e795953f44bb0f649cbb6b.bindPopup(popup_33fc80cd876948e21a8e63e7fc72ab8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3902b4edc80ce5a8b15d710a1022eb4 = L.circleMarker(\\n\",\n       \"                [22.9539, 112.0539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e855303da31b7ad9fab85f22b77a785 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0d6eeddc54b825916c90ed58b2277c2 = $(`&lt;div id=&quot;html_b0d6eeddc54b825916c90ed58b2277c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0539             latitude:22.9539             PM2_5:31.77562327             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e855303da31b7ad9fab85f22b77a785.setContent(html_b0d6eeddc54b825916c90ed58b2277c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3902b4edc80ce5a8b15d710a1022eb4.bindPopup(popup_9e855303da31b7ad9fab85f22b77a785)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_892dabb3b29a5ae43bacc441176097c0 = L.circleMarker(\\n\",\n       \"                [41.1196, 123.044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c74b95e5268b1c8dac84d6eaae08135d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a89a12203b6371edafb32d5c27cd4dc = $(`&lt;div id=&quot;html_5a89a12203b6371edafb32d5c27cd4dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.044             latitude:41.1196             PM2_5:33.3767313             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c74b95e5268b1c8dac84d6eaae08135d.setContent(html_5a89a12203b6371edafb32d5c27cd4dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_892dabb3b29a5ae43bacc441176097c0.bindPopup(popup_c74b95e5268b1c8dac84d6eaae08135d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a21a5eefdab437904323dea2297d6032 = L.circleMarker(\\n\",\n       \"                [28.1442, 112.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1295c91e7286cad19bdd4348d9c2567 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7469077cf4d0c29aff4552fbde2bbf1 = $(`&lt;div id=&quot;html_f7469077cf4d0c29aff4552fbde2bbf1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9956             latitude:28.1442             PM2_5:44.35195531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1295c91e7286cad19bdd4348d9c2567.setContent(html_f7469077cf4d0c29aff4552fbde2bbf1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a21a5eefdab437904323dea2297d6032.bindPopup(popup_e1295c91e7286cad19bdd4348d9c2567)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7325937b64972501c0a685b25385f0f9 = L.circleMarker(\\n\",\n       \"                [36.6106, 109.5056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76d3fad79a355148e4d059ed23dfaba7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c67f66a4150859142a1232e9c779a12 = $(`&lt;div id=&quot;html_6c67f66a4150859142a1232e9c779a12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5056             latitude:36.6106             PM2_5:38.42792793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76d3fad79a355148e4d059ed23dfaba7.setContent(html_6c67f66a4150859142a1232e9c779a12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7325937b64972501c0a685b25385f0f9.bindPopup(popup_76d3fad79a355148e4d059ed23dfaba7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb5dae82fe46e5a2714324bb23b37cc0 = L.circleMarker(\\n\",\n       \"                [28.6844, 115.893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1e922cb0d0cc35b81210185525cd6b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b89ec129c0e39acb8c550f3f3cb2ecfa = $(`&lt;div id=&quot;html_b89ec129c0e39acb8c550f3f3cb2ecfa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.893             latitude:28.6844             PM2_5:36.59401709             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1e922cb0d0cc35b81210185525cd6b2.setContent(html_b89ec129c0e39acb8c550f3f3cb2ecfa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb5dae82fe46e5a2714324bb23b37cc0.bindPopup(popup_e1e922cb0d0cc35b81210185525cd6b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_efd4ad6ac1eccda5eeaad3604d0b42fb = L.circleMarker(\\n\",\n       \"                [46.6219, 124.8648],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d18dba139c0e68d71f2180cc9ccab273 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab39a3fc92916f968b2b8c278de1d840 = $(`&lt;div id=&quot;html_ab39a3fc92916f968b2b8c278de1d840&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8648             latitude:46.6219             PM2_5:21.60504202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d18dba139c0e68d71f2180cc9ccab273.setContent(html_ab39a3fc92916f968b2b8c278de1d840);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_efd4ad6ac1eccda5eeaad3604d0b42fb.bindPopup(popup_d18dba139c0e68d71f2180cc9ccab273)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f9f128c35515bbb44ce04651c1e38ce = L.circleMarker(\\n\",\n       \"                [42.0186, 121.6561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e5002256bf1757ee341b0d121602cbe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3fddb3f95e30ba8b54a553144bb0eb9f = $(`&lt;div id=&quot;html_3fddb3f95e30ba8b54a553144bb0eb9f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6561             latitude:42.0186             PM2_5:25.61772853             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e5002256bf1757ee341b0d121602cbe.setContent(html_3fddb3f95e30ba8b54a553144bb0eb9f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f9f128c35515bbb44ce04651c1e38ce.bindPopup(popup_3e5002256bf1757ee341b0d121602cbe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c466ca37c5b30aa1753af25d3f781325 = L.circleMarker(\\n\",\n       \"                [36.0783, 111.5531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae8095b745588050cc5aa41218f3de9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38cbcc3487037e7fb17f1d5ffcf61358 = $(`&lt;div id=&quot;html_38cbcc3487037e7fb17f1d5ffcf61358&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5531             latitude:36.0783             PM2_5:69.44428969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae8095b745588050cc5aa41218f3de9e.setContent(html_38cbcc3487037e7fb17f1d5ffcf61358);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c466ca37c5b30aa1753af25d3f781325.bindPopup(popup_ae8095b745588050cc5aa41218f3de9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c977de13a116324fcb6f9f502e92c9f9 = L.circleMarker(\\n\",\n       \"                [26.6383, 118.1694],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd10c6f407e2336ed64ab6a827e4d394 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30a06b43a45d4455a30b99ff9c7f760c = $(`&lt;div id=&quot;html_30a06b43a45d4455a30b99ff9c7f760c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1694             latitude:26.6383             PM2_5:22.0             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd10c6f407e2336ed64ab6a827e4d394.setContent(html_30a06b43a45d4455a30b99ff9c7f760c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c977de13a116324fcb6f9f502e92c9f9.bindPopup(popup_fd10c6f407e2336ed64ab6a827e4d394)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ea12030045a151881bd04a0e2ac96ac = L.circleMarker(\\n\",\n       \"                [36.2126, 113.0886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8da7e2e9f48166138843193d0a3f8a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8df8fa5ccd1d9ecf9b7362671fd7b3ba = $(`&lt;div id=&quot;html_8df8fa5ccd1d9ecf9b7362671fd7b3ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0886             latitude:36.2126             PM2_5:68.68767507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8da7e2e9f48166138843193d0a3f8a0.setContent(html_8df8fa5ccd1d9ecf9b7362671fd7b3ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ea12030045a151881bd04a0e2ac96ac.bindPopup(popup_e8da7e2e9f48166138843193d0a3f8a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b02deae4d0dee2cad84eca2b48f14e75 = L.circleMarker(\\n\",\n       \"                [40.7579, 111.651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82ba1fe79c6b255acd90577353bfe097 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0e77e01fc86cab6e249cfc62ba7d40d = $(`&lt;div id=&quot;html_a0e77e01fc86cab6e249cfc62ba7d40d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.651             latitude:40.7579             PM2_5:34.55742297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82ba1fe79c6b255acd90577353bfe097.setContent(html_a0e77e01fc86cab6e249cfc62ba7d40d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b02deae4d0dee2cad84eca2b48f14e75.bindPopup(popup_82ba1fe79c6b255acd90577353bfe097)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21d61ec0c45e143de2add43685258b0e = L.circleMarker(\\n\",\n       \"                [25.9061, 113.0073],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec94e14fa8148bdee93a48464cdfedba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e427c6b1b83c010d9ca999aa580e60d6 = $(`&lt;div id=&quot;html_e427c6b1b83c010d9ca999aa580e60d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0073             latitude:25.9061             PM2_5:34.37464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec94e14fa8148bdee93a48464cdfedba.setContent(html_e427c6b1b83c010d9ca999aa580e60d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21d61ec0c45e143de2add43685258b0e.bindPopup(popup_ec94e14fa8148bdee93a48464cdfedba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7668b81f011b1be767e8ed2884617880 = L.circleMarker(\\n\",\n       \"                [23.0395, 113.105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffd0979bbfd4b6412c07f5e69f84b28b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_edce59a90452f12998e380a75ae9f710 = $(`&lt;div id=&quot;html_edce59a90452f12998e380a75ae9f710&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.105             latitude:23.0395             PM2_5:39.28969359             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffd0979bbfd4b6412c07f5e69f84b28b.setContent(html_edce59a90452f12998e380a75ae9f710);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7668b81f011b1be767e8ed2884617880.bindPopup(popup_ffd0979bbfd4b6412c07f5e69f84b28b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb859ebfcea811ce0644a093bd49f31a = L.circleMarker(\\n\",\n       \"                [31.2108, 107.4967],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3391c6313e3235972e7a35e0badb1c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_692f2f71bff4fc68cc1251fb784cc434 = $(`&lt;div id=&quot;html_692f2f71bff4fc68cc1251fb784cc434&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4967             latitude:31.2108             PM2_5:48.13509749             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3391c6313e3235972e7a35e0badb1c7.setContent(html_692f2f71bff4fc68cc1251fb784cc434);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb859ebfcea811ce0644a093bd49f31a.bindPopup(popup_a3391c6313e3235972e7a35e0badb1c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c5f7a5007d7eb5e4bf3466d4eb52666 = L.circleMarker(\\n\",\n       \"                [38.8957, 115.5223],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_285024b671d703aa6072c98a38daa8f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_648eadb1c982634f2085d67ea4e83c3c = $(`&lt;div id=&quot;html_648eadb1c982634f2085d67ea4e83c3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.5223             latitude:38.8957             PM2_5:56.74789916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_285024b671d703aa6072c98a38daa8f8.setContent(html_648eadb1c982634f2085d67ea4e83c3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c5f7a5007d7eb5e4bf3466d4eb52666.bindPopup(popup_285024b671d703aa6072c98a38daa8f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf9d95f98a43ce3b238cf96ffff81bca = L.circleMarker(\\n\",\n       \"                [39.617, 122.011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1260baba5bbb30b9828e69eb988b1d93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c4b5a0a7f0cec02b439cf6d832d677f = $(`&lt;div id=&quot;html_9c4b5a0a7f0cec02b439cf6d832d677f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.011             latitude:39.617             PM2_5:32.03191489             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1260baba5bbb30b9828e69eb988b1d93.setContent(html_9c4b5a0a7f0cec02b439cf6d832d677f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf9d95f98a43ce3b238cf96ffff81bca.bindPopup(popup_1260baba5bbb30b9828e69eb988b1d93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8e89d9990c978a3c4f772f591eb93a8 = L.circleMarker(\\n\",\n       \"                [36.907, 121.544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8f0b2559abd0bfb090c6e90fc89efaf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5837fda59fbfbf32937b6cb370977bec = $(`&lt;div id=&quot;html_5837fda59fbfbf32937b6cb370977bec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.544             latitude:36.907             PM2_5:18.6504298             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8f0b2559abd0bfb090c6e90fc89efaf.setContent(html_5837fda59fbfbf32937b6cb370977bec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8e89d9990c978a3c4f772f591eb93a8.bindPopup(popup_e8f0b2559abd0bfb090c6e90fc89efaf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adf7ff4f1891a381914740ca6849d7c9 = L.circleMarker(\\n\",\n       \"                [34.6686, 112.4433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d65bbbc8bd5dd338ead8adc1ea9cbb55 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ef603d9c9463e1fec672b58cbd67479 = $(`&lt;div id=&quot;html_9ef603d9c9463e1fec672b58cbd67479&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4433             latitude:34.6686             PM2_5:60.85352113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d65bbbc8bd5dd338ead8adc1ea9cbb55.setContent(html_9ef603d9c9463e1fec672b58cbd67479);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adf7ff4f1891a381914740ca6849d7c9.bindPopup(popup_d65bbbc8bd5dd338ead8adc1ea9cbb55)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d8171b3056cedf8b771e0a4eb747d541 = L.circleMarker(\\n\",\n       \"                [31.172, 120.658],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e6fc0ba13d22ca31a449860eb833308 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_201bbac7fc8135572a7c5ed99ceb9cac = $(`&lt;div id=&quot;html_201bbac7fc8135572a7c5ed99ceb9cac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.658             latitude:31.172             PM2_5:40.59217877             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e6fc0ba13d22ca31a449860eb833308.setContent(html_201bbac7fc8135572a7c5ed99ceb9cac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d8171b3056cedf8b771e0a4eb747d541.bindPopup(popup_1e6fc0ba13d22ca31a449860eb833308)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2faaee3663df7079b78cfa327f8ccb31 = L.circleMarker(\\n\",\n       \"                [26.3108, 117.7275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e3d869e8f622f34c9f6dd478aa86192 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e1cebfdaf4a206863a9045de9d8e6f7 = $(`&lt;div id=&quot;html_4e1cebfdaf4a206863a9045de9d8e6f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7275             latitude:26.3108             PM2_5:26.40668524             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e3d869e8f622f34c9f6dd478aa86192.setContent(html_4e1cebfdaf4a206863a9045de9d8e6f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2faaee3663df7079b78cfa327f8ccb31.bindPopup(popup_7e3d869e8f622f34c9f6dd478aa86192)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44dff335b51f04a6e1bbe094fc3ab104 = L.circleMarker(\\n\",\n       \"                [34.378, 108.869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8b002db0d06cb31e19b106e64841e3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be1632cd7684c361b04a5c1109af9534 = $(`&lt;div id=&quot;html_be1632cd7684c361b04a5c1109af9534&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.869             latitude:34.378             PM2_5:62.61024845             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8b002db0d06cb31e19b106e64841e3d.setContent(html_be1632cd7684c361b04a5c1109af9534);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44dff335b51f04a6e1bbe094fc3ab104.bindPopup(popup_f8b002db0d06cb31e19b106e64841e3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df33865a6d11d826f39e99d66a1954de = L.circleMarker(\\n\",\n       \"                [29.8506, 121.524],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9517c503043bbc68ac935fe49e1e7e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f68d80ed6d541841f0e99d0a128af79f = $(`&lt;div id=&quot;html_f68d80ed6d541841f0e99d0a128af79f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.524             latitude:29.8506             PM2_5:31.24792244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9517c503043bbc68ac935fe49e1e7e2.setContent(html_f68d80ed6d541841f0e99d0a128af79f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df33865a6d11d826f39e99d66a1954de.bindPopup(popup_b9517c503043bbc68ac935fe49e1e7e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d869c8ae1acde383e8179e8bdc7d973 = L.circleMarker(\\n\",\n       \"                [43.895, 81.2867],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ebdc034f247fef708452477bedf96d53 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3231718218f6bedda749dc9bf9ee0ad = $(`&lt;div id=&quot;html_a3231718218f6bedda749dc9bf9ee0ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.2867             latitude:43.895             PM2_5:59.07703081             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ebdc034f247fef708452477bedf96d53.setContent(html_a3231718218f6bedda749dc9bf9ee0ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d869c8ae1acde383e8179e8bdc7d973.bindPopup(popup_ebdc034f247fef708452477bedf96d53)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e7f102c160601a941ecc2764b952368 = L.circleMarker(\\n\",\n       \"                [34.802, 113.564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2be931c801ed1356d9120830f0e1cc3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c80febe83bc0f9fb9653a2ada5543bc = $(`&lt;div id=&quot;html_2c80febe83bc0f9fb9653a2ada5543bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.564             latitude:34.802             PM2_5:62.60085227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2be931c801ed1356d9120830f0e1cc3f.setContent(html_2c80febe83bc0f9fb9653a2ada5543bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e7f102c160601a941ecc2764b952368.bindPopup(popup_2be931c801ed1356d9120830f0e1cc3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b5a7c70ecf3943f8cbccdfa1494f2cb = L.circleMarker(\\n\",\n       \"                [29.315, 110.4417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e549989f647e05c8a56688615a9a5bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ce236c287d327bfa9de7763f7f33582 = $(`&lt;div id=&quot;html_3ce236c287d327bfa9de7763f7f33582&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4417             latitude:29.315             PM2_5:28.36478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e549989f647e05c8a56688615a9a5bf.setContent(html_3ce236c287d327bfa9de7763f7f33582);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b5a7c70ecf3943f8cbccdfa1494f2cb.bindPopup(popup_6e549989f647e05c8a56688615a9a5bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1811d691b2850b6db07d0520d16c625 = L.circleMarker(\\n\",\n       \"                [46.6572, 131.1638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_455e969f1e60d083e54890e3c5045954 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac466841b0d4675969660de71e5f686f = $(`&lt;div id=&quot;html_ac466841b0d4675969660de71e5f686f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1638             latitude:46.6572             PM2_5:28.1755618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_455e969f1e60d083e54890e3c5045954.setContent(html_ac466841b0d4675969660de71e5f686f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1811d691b2850b6db07d0520d16c625.bindPopup(popup_455e969f1e60d083e54890e3c5045954)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1aa6a97711b8cea848ca4180ed0e408f = L.circleMarker(\\n\",\n       \"                [27.0658, 114.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a95fe35772acddb45c7e7732f49c0b96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb9d66e345dd42f77720b88aa369a549 = $(`&lt;div id=&quot;html_fb9d66e345dd42f77720b88aa369a549&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9817             latitude:27.0658             PM2_5:51.02148997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a95fe35772acddb45c7e7732f49c0b96.setContent(html_fb9d66e345dd42f77720b88aa369a549);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1aa6a97711b8cea848ca4180ed0e408f.bindPopup(popup_a95fe35772acddb45c7e7732f49c0b96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8608f3b6f465c8c8ac5158b809b965d9 = L.circleMarker(\\n\",\n       \"                [22.9169, 112.0392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92108527c7e9a996aa3f2a80b8fa80ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbb82f802dd24e073f5642ac30b6d4cb = $(`&lt;div id=&quot;html_fbb82f802dd24e073f5642ac30b6d4cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0392             latitude:22.9169             PM2_5:32.90555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92108527c7e9a996aa3f2a80b8fa80ae.setContent(html_fbb82f802dd24e073f5642ac30b6d4cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8608f3b6f465c8c8ac5158b809b965d9.bindPopup(popup_92108527c7e9a996aa3f2a80b8fa80ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3000d97f569c7cdea5bee60c75ce3ca = L.circleMarker(\\n\",\n       \"                [23.7369, 109.2317],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d84866111bfdaeed96ba18533c1d917 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80c378297f21af54bf06789d6102d54f = $(`&lt;div id=&quot;html_80c378297f21af54bf06789d6102d54f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2317             latitude:23.7369             PM2_5:41.42577031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d84866111bfdaeed96ba18533c1d917.setContent(html_80c378297f21af54bf06789d6102d54f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3000d97f569c7cdea5bee60c75ce3ca.bindPopup(popup_4d84866111bfdaeed96ba18533c1d917)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_35a6133fd08bf82aa6142a895809126e = L.circleMarker(\\n\",\n       \"                [32.6319, 116.8306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1389cf23fea2a7a62308ba1996f9c13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a95854443530131e85c9cb2ab9bcef3 = $(`&lt;div id=&quot;html_5a95854443530131e85c9cb2ab9bcef3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8306             latitude:32.6319             PM2_5:54.37900875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1389cf23fea2a7a62308ba1996f9c13.setContent(html_5a95854443530131e85c9cb2ab9bcef3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_35a6133fd08bf82aa6142a895809126e.bindPopup(popup_b1389cf23fea2a7a62308ba1996f9c13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_99d9ca65c60582c472adeab8188f9368 = L.circleMarker(\\n\",\n       \"                [42.9061, 129.5042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10afd7ddcaf2f1a0f6bb593a7e200a42 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d05fecf55124d520759782506cf9980 = $(`&lt;div id=&quot;html_1d05fecf55124d520759782506cf9980&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.5042             latitude:42.9061             PM2_5:20.3913649             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10afd7ddcaf2f1a0f6bb593a7e200a42.setContent(html_1d05fecf55124d520759782506cf9980);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_99d9ca65c60582c472adeab8188f9368.bindPopup(popup_10afd7ddcaf2f1a0f6bb593a7e200a42)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b06d6e7e0c1f2032d486d4c0eae896f6 = L.circleMarker(\\n\",\n       \"                [41.8594, 123.9],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8297a978a14a333ec2c0391871accad5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_75588ec418ee46d0fcb41c4149f23c30 = $(`&lt;div id=&quot;html_75588ec418ee46d0fcb41c4149f23c30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9             latitude:41.8594             PM2_5:36.30779944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8297a978a14a333ec2c0391871accad5.setContent(html_75588ec418ee46d0fcb41c4149f23c30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b06d6e7e0c1f2032d486d4c0eae896f6.bindPopup(popup_8297a978a14a333ec2c0391871accad5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d26eeaca2be7590b5af0d697d9e0273 = L.circleMarker(\\n\",\n       \"                [29.5867, 115.9936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6129a44c50d2fc69fd07a6dbaa6dc23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc86d41019912c64b71c5c308ae20976 = $(`&lt;div id=&quot;html_fc86d41019912c64b71c5c308ae20976&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9936             latitude:29.5867             PM2_5:21.53521127             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6129a44c50d2fc69fd07a6dbaa6dc23.setContent(html_fc86d41019912c64b71c5c308ae20976);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d26eeaca2be7590b5af0d697d9e0273.bindPopup(popup_f6129a44c50d2fc69fd07a6dbaa6dc23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3963d6372f537a366788880ad7ab8313 = L.circleMarker(\\n\",\n       \"                [36.0211, 106.2375],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6dda189ebeb1f17b8413b1e14ef58df5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4305dfb4aa40317995eec6703c8f53e8 = $(`&lt;div id=&quot;html_4305dfb4aa40317995eec6703c8f53e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2375             latitude:36.0211             PM2_5:24.23455056             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6dda189ebeb1f17b8413b1e14ef58df5.setContent(html_4305dfb4aa40317995eec6703c8f53e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3963d6372f537a366788880ad7ab8313.bindPopup(popup_6dda189ebeb1f17b8413b1e14ef58df5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ed42d90ceffacc21417b7f64f412678 = L.circleMarker(\\n\",\n       \"                [43.1847, 124.3897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b204978783f20d39f11c4e07ccc7cd7c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f440d399cf97505ccbf19d3f18b0d691 = $(`&lt;div id=&quot;html_f440d399cf97505ccbf19d3f18b0d691&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3897             latitude:43.1847             PM2_5:31.2745098             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b204978783f20d39f11c4e07ccc7cd7c.setContent(html_f440d399cf97505ccbf19d3f18b0d691);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ed42d90ceffacc21417b7f64f412678.bindPopup(popup_b204978783f20d39f11c4e07ccc7cd7c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1ce26caed84bf291f4aff98acbe5acb = L.circleMarker(\\n\",\n       \"                [35.1764, 113.2464],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7892699a76fa9f7b65f4f7b764e1585d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5404446bd09ea429f7b6249e8ace4cba = $(`&lt;div id=&quot;html_5404446bd09ea429f7b6249e8ace4cba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2464             latitude:35.1764             PM2_5:67.43117978             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7892699a76fa9f7b65f4f7b764e1585d.setContent(html_5404446bd09ea429f7b6249e8ace4cba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1ce26caed84bf291f4aff98acbe5acb.bindPopup(popup_7892699a76fa9f7b65f4f7b764e1585d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7990be9a2f92b8383f21f9cc3fbcc8da = L.circleMarker(\\n\",\n       \"                [35.0994, 109.0656],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5d2690b2a9b03ce513de99008293754 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ece0e160f125dcdc096079bd68c98f35 = $(`&lt;div id=&quot;html_ece0e160f125dcdc096079bd68c98f35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0656             latitude:35.0994             PM2_5:35.85632184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5d2690b2a9b03ce513de99008293754.setContent(html_ece0e160f125dcdc096079bd68c98f35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7990be9a2f92b8383f21f9cc3fbcc8da.bindPopup(popup_b5d2690b2a9b03ce513de99008293754)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc2447ac62e0e8f69163542356c0a403 = L.circleMarker(\\n\",\n       \"                [30.7819, 111.3296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1fa2052d1eb0a4d71d2f233ed5a5efaf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04f2918a2de986bcae0032ee6f05c1f5 = $(`&lt;div id=&quot;html_04f2918a2de986bcae0032ee6f05c1f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3296             latitude:30.7819             PM2_5:52.59556787             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1fa2052d1eb0a4d71d2f233ed5a5efaf.setContent(html_04f2918a2de986bcae0032ee6f05c1f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc2447ac62e0e8f69163542356c0a403.bindPopup(popup_1fa2052d1eb0a4d71d2f233ed5a5efaf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d051272c94164ad3533f5d854ff81d43 = L.circleMarker(\\n\",\n       \"                [25.5035, 103.7897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d7134ff959f98aee679fcfd3bb5879d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afe550bf5889e7686fcada33e1c07cf7 = $(`&lt;div id=&quot;html_afe550bf5889e7686fcada33e1c07cf7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7897             latitude:25.5035             PM2_5:35.22957746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d7134ff959f98aee679fcfd3bb5879d4.setContent(html_afe550bf5889e7686fcada33e1c07cf7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d051272c94164ad3533f5d854ff81d43.bindPopup(popup_d7134ff959f98aee679fcfd3bb5879d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad789c8cdb83862e97dee3e419a5167a = L.circleMarker(\\n\",\n       \"                [37.8195, 112.57],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b100ab511a02975c6d59c0357fdc98c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c475aaaacaeab9106d1e5621e638271 = $(`&lt;div id=&quot;html_2c475aaaacaeab9106d1e5621e638271&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.57             latitude:37.8195             PM2_5:62.8782235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b100ab511a02975c6d59c0357fdc98c.setContent(html_2c475aaaacaeab9106d1e5621e638271);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad789c8cdb83862e97dee3e419a5167a.bindPopup(popup_2b100ab511a02975c6d59c0357fdc98c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1be76de478e6b43bc7129b17bd8b5fd = L.circleMarker(\\n\",\n       \"                [32.1083, 118.803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27208702a35465d2454adbdf863f68b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8299159f80cfc5be595be0a6e33e7394 = $(`&lt;div id=&quot;html_8299159f80cfc5be595be0a6e33e7394&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.803             latitude:32.1083             PM2_5:43.03641457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27208702a35465d2454adbdf863f68b9.setContent(html_8299159f80cfc5be595be0a6e33e7394);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1be76de478e6b43bc7129b17bd8b5fd.bindPopup(popup_27208702a35465d2454adbdf863f68b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5eb6938cbd523b8df11abd93f4c4053d = L.circleMarker(\\n\",\n       \"                [23.8822, 100.0869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b90a455ad797ec823d56b53e1b6ec5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c314d132c60b406b7d3c8d10f8ba89da = $(`&lt;div id=&quot;html_c314d132c60b406b7d3c8d10f8ba89da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0869             latitude:23.8822             PM2_5:26.72285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b90a455ad797ec823d56b53e1b6ec5a.setContent(html_c314d132c60b406b7d3c8d10f8ba89da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5eb6938cbd523b8df11abd93f4c4053d.bindPopup(popup_2b90a455ad797ec823d56b53e1b6ec5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e914d030e937aeb9469af9dcfb577db = L.circleMarker(\\n\",\n       \"                [27.8978, 102.2625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bae35efb5b4241438acfc08769aee5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83f7b55ef748972ce2c94486b189d993 = $(`&lt;div id=&quot;html_83f7b55ef748972ce2c94486b189d993&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2625             latitude:27.8978             PM2_5:21.25218659             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bae35efb5b4241438acfc08769aee5c.setContent(html_83f7b55ef748972ce2c94486b189d993);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e914d030e937aeb9469af9dcfb577db.bindPopup(popup_8bae35efb5b4241438acfc08769aee5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e5e29b3b7033a716bd1c0b81ee49375 = L.circleMarker(\\n\",\n       \"                [37.825, 120.747],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0548387bb23c7d4040ef0c20254a2eef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df6dedf595dddcf8b776cec9e6b0f133 = $(`&lt;div id=&quot;html_df6dedf595dddcf8b776cec9e6b0f133&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.747             latitude:37.825             PM2_5:31.43079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0548387bb23c7d4040ef0c20254a2eef.setContent(html_df6dedf595dddcf8b776cec9e6b0f133);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e5e29b3b7033a716bd1c0b81ee49375.bindPopup(popup_0548387bb23c7d4040ef0c20254a2eef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b937786a7f6980453530e4fa10c48a4 = L.circleMarker(\\n\",\n       \"                [43.8167, 125.25],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8434ef964f1df30e0463faad1ce6a138 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aada8561c00960fcd76b5acaa830319b = $(`&lt;div id=&quot;html_aada8561c00960fcd76b5acaa830319b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.25             latitude:43.8167             PM2_5:26.91520468             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8434ef964f1df30e0463faad1ce6a138.setContent(html_aada8561c00960fcd76b5acaa830319b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b937786a7f6980453530e4fa10c48a4.bindPopup(popup_8434ef964f1df30e0463faad1ce6a138)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6392373af3e3125d1ea47770b9647c3d = L.circleMarker(\\n\",\n       \"                [37.8564, 113.5753],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5345224a994962ac0586ac69bc37c10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a8db2e131b66a59826248fc0f125622 = $(`&lt;div id=&quot;html_4a8db2e131b66a59826248fc0f125622&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5753             latitude:37.8564             PM2_5:55.25140449             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5345224a994962ac0586ac69bc37c10.setContent(html_4a8db2e131b66a59826248fc0f125622);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6392373af3e3125d1ea47770b9647c3d.bindPopup(popup_d5345224a994962ac0586ac69bc37c10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f62818a45cc9c24101c6de31fb416bc = L.circleMarker(\\n\",\n       \"                [25.0359, 102.638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd890a028c4c4251ba6ce6b5c2c33e45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_781b3129a8aad56033d6375ad6e07462 = $(`&lt;div id=&quot;html_781b3129a8aad56033d6375ad6e07462&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.638             latitude:25.0359             PM2_5:31.47645429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd890a028c4c4251ba6ce6b5c2c33e45.setContent(html_781b3129a8aad56033d6375ad6e07462);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f62818a45cc9c24101c6de31fb416bc.bindPopup(popup_cd890a028c4c4251ba6ce6b5c2c33e45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7fa024a137406753e4ae46f5c74e9145 = L.circleMarker(\\n\",\n       \"                [23.1323, 113.3208],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5a306a53a230d0ce9b78e79349fc908 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a682c5b2e1ac4825f07408f30114bc82 = $(`&lt;div id=&quot;html_a682c5b2e1ac4825f07408f30114bc82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3208             latitude:23.1323             PM2_5:35.87222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5a306a53a230d0ce9b78e79349fc908.setContent(html_a682c5b2e1ac4825f07408f30114bc82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7fa024a137406753e4ae46f5c74e9145.bindPopup(popup_a5a306a53a230d0ce9b78e79349fc908)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3549381fd21c14a57d5e01e73827324 = L.circleMarker(\\n\",\n       \"                [40.7136, 120.9092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea173bf4f958ee21cc670d3fe0938528 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1673f46a45cf3aa424b699dfeaca9311 = $(`&lt;div id=&quot;html_1673f46a45cf3aa424b699dfeaca9311&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.9092             latitude:40.7136             PM2_5:38.91316527             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea173bf4f958ee21cc670d3fe0938528.setContent(html_1673f46a45cf3aa424b699dfeaca9311);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3549381fd21c14a57d5e01e73827324.bindPopup(popup_ea173bf4f958ee21cc670d3fe0938528)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adfde1551a75e2256e40c67a64674fd6 = L.circleMarker(\\n\",\n       \"                [40.9923, 113.1306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ebc4e22d9583f2eda4b5fe1633d3408 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d3b888d31d330f637a1c6811939a9ab = $(`&lt;div id=&quot;html_8d3b888d31d330f637a1c6811939a9ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1306             latitude:40.9923             PM2_5:19.8487395             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ebc4e22d9583f2eda4b5fe1633d3408.setContent(html_8d3b888d31d330f637a1c6811939a9ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adfde1551a75e2256e40c67a64674fd6.bindPopup(popup_5ebc4e22d9583f2eda4b5fe1633d3408)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31a718a03e10bc6ed7ec81a55dde9146 = L.circleMarker(\\n\",\n       \"                [31.874, 120.526],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb9b3254148107002be598a39a423267 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09c40c89af627799325b92999e5e956e = $(`&lt;div id=&quot;html_09c40c89af627799325b92999e5e956e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.526             latitude:31.874             PM2_5:37.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb9b3254148107002be598a39a423267.setContent(html_09c40c89af627799325b92999e5e956e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31a718a03e10bc6ed7ec81a55dde9146.bindPopup(popup_fb9b3254148107002be598a39a423267)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98a0a402894304eedc768abf8ffbfbca = L.circleMarker(\\n\",\n       \"                [26.0797, 119.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_423f65c0a8ca14bf147aef01483299ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a3236d3c9748fd49d0ae3d8d7763f47 = $(`&lt;div id=&quot;html_6a3236d3c9748fd49d0ae3d8d7763f47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.268             latitude:26.0797             PM2_5:25.44662921             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_423f65c0a8ca14bf147aef01483299ff.setContent(html_6a3236d3c9748fd49d0ae3d8d7763f47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98a0a402894304eedc768abf8ffbfbca.bindPopup(popup_423f65c0a8ca14bf147aef01483299ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84aff6a45381bb10546a6c8209a8ac9d = L.circleMarker(\\n\",\n       \"                [31.3264, 120.596],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55a06e619d412039639be45191a8f7f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1e598e8917c69d57b2e6d87a6eca3bd = $(`&lt;div id=&quot;html_d1e598e8917c69d57b2e6d87a6eca3bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.596             latitude:31.3264             PM2_5:43.19230769             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55a06e619d412039639be45191a8f7f4.setContent(html_d1e598e8917c69d57b2e6d87a6eca3bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84aff6a45381bb10546a6c8209a8ac9d.bindPopup(popup_55a06e619d412039639be45191a8f7f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_442253bf523467f3d6702cadcac2aca0 = L.circleMarker(\\n\",\n       \"                [34.3017, 107.0708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a04575b71cd308fc31eed37fe8edb950 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de617f543607d7cd6bc842dcb56e0db0 = $(`&lt;div id=&quot;html_de617f543607d7cd6bc842dcb56e0db0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0708             latitude:34.3017             PM2_5:44.9301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a04575b71cd308fc31eed37fe8edb950.setContent(html_de617f543607d7cd6bc842dcb56e0db0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_442253bf523467f3d6702cadcac2aca0.bindPopup(popup_a04575b71cd308fc31eed37fe8edb950)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b19eb7695c7b2046cc723f13c33cfec8 = L.circleMarker(\\n\",\n       \"                [32.0775, 118.795],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb80ea9290f3472b22cc4fd360e9a68a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35ad0a88893e8cfca6e8489cdce8d373 = $(`&lt;div id=&quot;html_35ad0a88893e8cfca6e8489cdce8d373&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.795             latitude:32.0775             PM2_5:48.81395349             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb80ea9290f3472b22cc4fd360e9a68a.setContent(html_35ad0a88893e8cfca6e8489cdce8d373);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b19eb7695c7b2046cc723f13c33cfec8.bindPopup(popup_bb80ea9290f3472b22cc4fd360e9a68a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2ec6d5dac94dd497cf246995e6f99dc = L.circleMarker(\\n\",\n       \"                [46.6462, 131.1516],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30d3fe702441aa28a01f48b16cb4c7ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f58cba179028c285c3115984d061d8aa = $(`&lt;div id=&quot;html_f58cba179028c285c3115984d061d8aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1516             latitude:46.6462             PM2_5:32.94225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30d3fe702441aa28a01f48b16cb4c7ba.setContent(html_f58cba179028c285c3115984d061d8aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2ec6d5dac94dd497cf246995e6f99dc.bindPopup(popup_30d3fe702441aa28a01f48b16cb4c7ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f10cd8e2cd87c253f9d409a444d7d8e = L.circleMarker(\\n\",\n       \"                [35.0573, 118.3418],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0af1ce55c493241535bf7206090d92d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c9ca4f89d48e251c53fe5fa8316ed5f = $(`&lt;div id=&quot;html_6c9ca4f89d48e251c53fe5fa8316ed5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3418             latitude:35.0573             PM2_5:39.93871866             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0af1ce55c493241535bf7206090d92d.setContent(html_6c9ca4f89d48e251c53fe5fa8316ed5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f10cd8e2cd87c253f9d409a444d7d8e.bindPopup(popup_e0af1ce55c493241535bf7206090d92d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7a5a84b2add78d544b4a9f689686ac8 = L.circleMarker(\\n\",\n       \"                [23.6936, 113.0425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4f8af181d2ddaf47ac29018def09dc9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1002bf1688ddb52a5746460f76c6573c = $(`&lt;div id=&quot;html_1002bf1688ddb52a5746460f76c6573c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0425             latitude:23.6936             PM2_5:32.96374622             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4f8af181d2ddaf47ac29018def09dc9.setContent(html_1002bf1688ddb52a5746460f76c6573c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7a5a84b2add78d544b4a9f689686ac8.bindPopup(popup_e4f8af181d2ddaf47ac29018def09dc9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ff353678fcf93570e6530965a4a7d7e = L.circleMarker(\\n\",\n       \"                [29.4758, 113.2621],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76a0fe689849df14afb28e58e1d8f073 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0eca8d55a181df9b2f4ad78187f4e3b4 = $(`&lt;div id=&quot;html_0eca8d55a181df9b2f4ad78187f4e3b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2621             latitude:29.4758             PM2_5:48.03179191             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76a0fe689849df14afb28e58e1d8f073.setContent(html_0eca8d55a181df9b2f4ad78187f4e3b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ff353678fcf93570e6530965a4a7d7e.bindPopup(popup_76a0fe689849df14afb28e58e1d8f073)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3646d3a75f0fe5e84cf4e85e96143180 = L.circleMarker(\\n\",\n       \"                [40.6821, 109.8538],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3da4dfc93bf572fdc2a0b5c34804a3ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6899625dcd9efc98938e0ce989a7313 = $(`&lt;div id=&quot;html_d6899625dcd9efc98938e0ce989a7313&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8538             latitude:40.6821             PM2_5:44.97777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3da4dfc93bf572fdc2a0b5c34804a3ee.setContent(html_d6899625dcd9efc98938e0ce989a7313);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3646d3a75f0fe5e84cf4e85e96143180.bindPopup(popup_3da4dfc93bf572fdc2a0b5c34804a3ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51d8bcec761a2fdad22cbf4dda771690 = L.circleMarker(\\n\",\n       \"                [30.8388, 106.1087],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_912829362b2b3f797ab63b9818b26073 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2bbd1c17fb3de6d7b95f462e444bcff2 = $(`&lt;div id=&quot;html_2bbd1c17fb3de6d7b95f462e444bcff2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1087             latitude:30.8388             PM2_5:42.04634831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_912829362b2b3f797ab63b9818b26073.setContent(html_2bbd1c17fb3de6d7b95f462e444bcff2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51d8bcec761a2fdad22cbf4dda771690.bindPopup(popup_912829362b2b3f797ab63b9818b26073)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e16d2ada506a685d33db31d15dc3c44a = L.circleMarker(\\n\",\n       \"                [36.1758, 117.1081],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da45cae64053999e3e457e38715bc1c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb5ed2bdd72acab6c1949699d862deff = $(`&lt;div id=&quot;html_bb5ed2bdd72acab6c1949699d862deff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1081             latitude:36.1758             PM2_5:49.33147632             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da45cae64053999e3e457e38715bc1c4.setContent(html_bb5ed2bdd72acab6c1949699d862deff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e16d2ada506a685d33db31d15dc3c44a.bindPopup(popup_da45cae64053999e3e457e38715bc1c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db71ad56863d045c4698216f1bc8ac17 = L.circleMarker(\\n\",\n       \"                [39.1067, 117.1941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0923c4b56b61253cb5ca27607ef7c870 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09e56a6fa1ce50deaf9a69375812282a = $(`&lt;div id=&quot;html_09e56a6fa1ce50deaf9a69375812282a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1941             latitude:39.1067             PM2_5:47.90083799             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0923c4b56b61253cb5ca27607ef7c870.setContent(html_09e56a6fa1ce50deaf9a69375812282a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db71ad56863d045c4698216f1bc8ac17.bindPopup(popup_0923c4b56b61253cb5ca27607ef7c870)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_590d6c567e3f36d4993bf2b2a6ae3276 = L.circleMarker(\\n\",\n       \"                [32.1142, 112.1825],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e606bcddb179d28614f2529c1453f479 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1fa74e4418f749e00acae96bd8264387 = $(`&lt;div id=&quot;html_1fa74e4418f749e00acae96bd8264387&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1825             latitude:32.1142             PM2_5:62.29295775             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e606bcddb179d28614f2529c1453f479.setContent(html_1fa74e4418f749e00acae96bd8264387);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_590d6c567e3f36d4993bf2b2a6ae3276.bindPopup(popup_e606bcddb179d28614f2529c1453f479)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3dafcfc617ad8863fea5393057d6b003 = L.circleMarker(\\n\",\n       \"                [36.792, 119.952],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6dcf70d53120d36cb9d7b199c314018 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fc1cb4d5e9617ff43cbc5993fee8c13 = $(`&lt;div id=&quot;html_7fc1cb4d5e9617ff43cbc5993fee8c13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.952             latitude:36.792             PM2_5:32.28248588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6dcf70d53120d36cb9d7b199c314018.setContent(html_7fc1cb4d5e9617ff43cbc5993fee8c13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3dafcfc617ad8863fea5393057d6b003.bindPopup(popup_b6dcf70d53120d36cb9d7b199c314018)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86e2904a525da26a68dc42d64c5b3ae8 = L.circleMarker(\\n\",\n       \"                [40.6532, 109.8756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9807be6a899e2f772d7a722bd9704bff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4a71a38175cd11067a3442d7381df0e = $(`&lt;div id=&quot;html_c4a71a38175cd11067a3442d7381df0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8756             latitude:40.6532             PM2_5:45.81005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9807be6a899e2f772d7a722bd9704bff.setContent(html_c4a71a38175cd11067a3442d7381df0e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86e2904a525da26a68dc42d64c5b3ae8.bindPopup(popup_9807be6a899e2f772d7a722bd9704bff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_285c1ce330546f1b57facf3d7ef61ad0 = L.circleMarker(\\n\",\n       \"                [36.0875, 111.5025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0fdd54fbcf8a793c7058ad3e4694aba2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_304f586de82226975271b2f9811db5f0 = $(`&lt;div id=&quot;html_304f586de82226975271b2f9811db5f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5025             latitude:36.0875             PM2_5:81.15416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0fdd54fbcf8a793c7058ad3e4694aba2.setContent(html_304f586de82226975271b2f9811db5f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_285c1ce330546f1b57facf3d7ef61ad0.bindPopup(popup_0fdd54fbcf8a793c7058ad3e4694aba2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_580728da5c35a6a8ba981a2b1dc955f1 = L.circleMarker(\\n\",\n       \"                [38.8343, 105.6775],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7179af43c9b634065411d2f8552ba1dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ad9037f695723a944952e2d6b8a5310 = $(`&lt;div id=&quot;html_7ad9037f695723a944952e2d6b8a5310&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6775             latitude:38.8343             PM2_5:29.56703911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7179af43c9b634065411d2f8552ba1dd.setContent(html_7ad9037f695723a944952e2d6b8a5310);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_580728da5c35a6a8ba981a2b1dc955f1.bindPopup(popup_7179af43c9b634065411d2f8552ba1dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4cc3f7e6f11cbad3172605cc58ea50f = L.circleMarker(\\n\",\n       \"                [22.7906, 108.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd02bab4979e7efcd33c9b70f73e0cf4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a425d315624b375656bf44e363afc9e = $(`&lt;div id=&quot;html_7a425d315624b375656bf44e363afc9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.439             latitude:22.7906             PM2_5:33.82303371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd02bab4979e7efcd33c9b70f73e0cf4.setContent(html_7a425d315624b375656bf44e363afc9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4cc3f7e6f11cbad3172605cc58ea50f.bindPopup(popup_dd02bab4979e7efcd33c9b70f73e0cf4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad4512729369255792ed0f791ad0d5bd = L.circleMarker(\\n\",\n       \"                [37.4489, 116.3189],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3cc34b9dc43b69dc7ff804699172738e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fdc6389b6100cf219cbdb3371f0114f6 = $(`&lt;div id=&quot;html_fdc6389b6100cf219cbdb3371f0114f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3189             latitude:37.4489             PM2_5:57.425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3cc34b9dc43b69dc7ff804699172738e.setContent(html_fdc6389b6100cf219cbdb3371f0114f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad4512729369255792ed0f791ad0d5bd.bindPopup(popup_3cc34b9dc43b69dc7ff804699172738e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25d50ce67a962bc64cb4671a4c5fa307 = L.circleMarker(\\n\",\n       \"                [38.44139, 106.2275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ebb63b93800546566ccc5e09b848f1b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c06af420d875d0aa214ad3edaf84f1f4 = $(`&lt;div id=&quot;html_c06af420d875d0aa214ad3edaf84f1f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2275             latitude:38.44139             PM2_5:34.7254902             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ebb63b93800546566ccc5e09b848f1b4.setContent(html_c06af420d875d0aa214ad3edaf84f1f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25d50ce67a962bc64cb4671a4c5fa307.bindPopup(popup_ebb63b93800546566ccc5e09b848f1b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18d9ed264b326b712efb2f7042e28135 = L.circleMarker(\\n\",\n       \"                [23.01277778, 113.7944444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e439702d67901cce436712461a7527b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_185e5bb713aa5c1138ed56e8eb326555 = $(`&lt;div id=&quot;html_185e5bb713aa5c1138ed56e8eb326555&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7944444             latitude:23.01277778             PM2_5:33.54142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e439702d67901cce436712461a7527b0.setContent(html_185e5bb713aa5c1138ed56e8eb326555);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18d9ed264b326b712efb2f7042e28135.bindPopup(popup_e439702d67901cce436712461a7527b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71837b61984d722ed6a0fa66ee4d45b7 = L.circleMarker(\\n\",\n       \"                [42.2725, 118.9572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74636e5fd257980597206bed75255508 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_077db652c0f3b392245ebf0ae9b215f6 = $(`&lt;div id=&quot;html_077db652c0f3b392245ebf0ae9b215f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9572             latitude:42.2725             PM2_5:25.29608939             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74636e5fd257980597206bed75255508.setContent(html_077db652c0f3b392245ebf0ae9b215f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71837b61984d722ed6a0fa66ee4d45b7.bindPopup(popup_74636e5fd257980597206bed75255508)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d73f836ba0ea2c3e1874afe700141d39 = L.circleMarker(\\n\",\n       \"                [34.7545, 113.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_043efda6e5919c47e8ecde0b588ce073 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1854804ad47f1dbe3ff2e945d1a40590 = $(`&lt;div id=&quot;html_1854804ad47f1dbe3ff2e945d1a40590&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.681             latitude:34.7545             PM2_5:65.23728814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_043efda6e5919c47e8ecde0b588ce073.setContent(html_1854804ad47f1dbe3ff2e945d1a40590);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d73f836ba0ea2c3e1874afe700141d39.bindPopup(popup_043efda6e5919c47e8ecde0b588ce073)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5eed7c343e139b341ad7f5a8daf851ed = L.circleMarker(\\n\",\n       \"                [31.1278, 97.1804],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db2fc36f41f4e66bdb00a9f44436af2b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a256f728846eb8939d932728ceee15dc = $(`&lt;div id=&quot;html_a256f728846eb8939d932728ceee15dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.1804             latitude:31.1278             PM2_5:19.72532895             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db2fc36f41f4e66bdb00a9f44436af2b.setContent(html_a256f728846eb8939d932728ceee15dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5eed7c343e139b341ad7f5a8daf851ed.bindPopup(popup_db2fc36f41f4e66bdb00a9f44436af2b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a3987f49a54ef2c8147db42a9a814ce = L.circleMarker(\\n\",\n       \"                [44.3336, 84.8983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0d08eba86dd2f4eaf921d78d2534097 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd0e8b58f7646b7a5f4da2e1f9646b11 = $(`&lt;div id=&quot;html_bd0e8b58f7646b7a5f4da2e1f9646b11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8983             latitude:44.3336             PM2_5:34.77683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0d08eba86dd2f4eaf921d78d2534097.setContent(html_bd0e8b58f7646b7a5f4da2e1f9646b11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a3987f49a54ef2c8147db42a9a814ce.bindPopup(popup_b0d08eba86dd2f4eaf921d78d2534097)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70b04ea71c50fb4aaef52d653f01b9ac = L.circleMarker(\\n\",\n       \"                [36.6739, 117.114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09c94200ede6c0d3a7b04570eca9aaad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bec2670e3ae27dd69081d1dd6a75675f = $(`&lt;div id=&quot;html_bec2670e3ae27dd69081d1dd6a75675f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.114             latitude:36.6739             PM2_5:50.28088235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09c94200ede6c0d3a7b04570eca9aaad.setContent(html_bec2670e3ae27dd69081d1dd6a75675f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70b04ea71c50fb4aaef52d653f01b9ac.bindPopup(popup_09c94200ede6c0d3a7b04570eca9aaad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e8ffc7bea8d897df29e37b3c3ba8bac = L.circleMarker(\\n\",\n       \"                [33.965, 118.283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1648950732de3cb64a45a4d5128b00c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e27747080a9a3b0a9f9dbc753695f75c = $(`&lt;div id=&quot;html_e27747080a9a3b0a9f9dbc753695f75c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.283             latitude:33.965             PM2_5:55.98459384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1648950732de3cb64a45a4d5128b00c.setContent(html_e27747080a9a3b0a9f9dbc753695f75c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e8ffc7bea8d897df29e37b3c3ba8bac.bindPopup(popup_b1648950732de3cb64a45a4d5128b00c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fe79b4f8953545f98fb084f16cc7c80 = L.circleMarker(\\n\",\n       \"                [35.259, 113.1992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2be3d5210ac488a93e3b2d5182a9b3fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_243ce1eb10a9b0560afb428fce5c2542 = $(`&lt;div id=&quot;html_243ce1eb10a9b0560afb428fce5c2542&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1992             latitude:35.259             PM2_5:66.3319209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2be3d5210ac488a93e3b2d5182a9b3fc.setContent(html_243ce1eb10a9b0560afb428fce5c2542);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fe79b4f8953545f98fb084f16cc7c80.bindPopup(popup_2be3d5210ac488a93e3b2d5182a9b3fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14387579f73b5aea125a4ad855a75f62 = L.circleMarker(\\n\",\n       \"                [31.56, 120.294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83a9dd99293dd4bc6c55c83c63ddd5e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_297037b79acc30f1eaac43a2e5ccf5d4 = $(`&lt;div id=&quot;html_297037b79acc30f1eaac43a2e5ccf5d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.294             latitude:31.56             PM2_5:43.77966102             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83a9dd99293dd4bc6c55c83c63ddd5e3.setContent(html_297037b79acc30f1eaac43a2e5ccf5d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14387579f73b5aea125a4ad855a75f62.bindPopup(popup_83a9dd99293dd4bc6c55c83c63ddd5e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d934be3a1805f5160c4b72392584f6c = L.circleMarker(\\n\",\n       \"                [24.3702, 102.5389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3a94ad4828b682ad534d9777839d3f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_945607bf4715cbac864f8385642bed88 = $(`&lt;div id=&quot;html_945607bf4715cbac864f8385642bed88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5389             latitude:24.3702             PM2_5:29.84240688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3a94ad4828b682ad534d9777839d3f7.setContent(html_945607bf4715cbac864f8385642bed88);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d934be3a1805f5160c4b72392584f6c.bindPopup(popup_c3a94ad4828b682ad534d9777839d3f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6423ceec5c71051e229276c28e2ffd04 = L.circleMarker(\\n\",\n       \"                [41.7089, 123.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_573442e971027d8dda4a827781b02340 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6c918713c502ba54270349dd8517d4a = $(`&lt;div id=&quot;html_e6c918713c502ba54270349dd8517d4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.439             latitude:41.7089             PM2_5:36.12638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_573442e971027d8dda4a827781b02340.setContent(html_e6c918713c502ba54270349dd8517d4a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6423ceec5c71051e229276c28e2ffd04.bindPopup(popup_573442e971027d8dda4a827781b02340)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86856fa32205c864b8c35881c7eaa82b = L.circleMarker(\\n\",\n       \"                [30.2819, 109.4689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a12490ab7f12ee145c478d5a98550ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d11fb501b65095a6bdcdb6d1c1619cb4 = $(`&lt;div id=&quot;html_d11fb501b65095a6bdcdb6d1c1619cb4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4689             latitude:30.2819             PM2_5:41.53792135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a12490ab7f12ee145c478d5a98550ec.setContent(html_d11fb501b65095a6bdcdb6d1c1619cb4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86856fa32205c864b8c35881c7eaa82b.bindPopup(popup_0a12490ab7f12ee145c478d5a98550ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41b6dc860048b6edbf20bec5dd4c12b6 = L.circleMarker(\\n\",\n       \"                [28.5819, 112.3744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa96bccb580b6e03a9566112b5646b76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c952e6a305f5032e617a4f06e687066a = $(`&lt;div id=&quot;html_c952e6a305f5032e617a4f06e687066a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3744             latitude:28.5819             PM2_5:32.59357542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa96bccb580b6e03a9566112b5646b76.setContent(html_c952e6a305f5032e617a4f06e687066a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41b6dc860048b6edbf20bec5dd4c12b6.bindPopup(popup_aa96bccb580b6e03a9566112b5646b76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_520275d00982d5707c748ef516b8b14e = L.circleMarker(\\n\",\n       \"                [24.7121, 108.2134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_853cf336927b5762b2041053aaa13885 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f460a542b571a2bd3ebb86361a4e9f6 = $(`&lt;div id=&quot;html_6f460a542b571a2bd3ebb86361a4e9f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.2134             latitude:24.7121             PM2_5:28.12883436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_853cf336927b5762b2041053aaa13885.setContent(html_6f460a542b571a2bd3ebb86361a4e9f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_520275d00982d5707c748ef516b8b14e.bindPopup(popup_853cf336927b5762b2041053aaa13885)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10d575ce8354c10a23950730d47cfc3f = L.circleMarker(\\n\",\n       \"                [43.768, 87.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2456be0c1362dd448cd4aaace76560b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e59f4396c613a27c7e720266e54fa9a = $(`&lt;div id=&quot;html_3e59f4396c613a27c7e720266e54fa9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6046             latitude:43.768             PM2_5:53.62608696             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2456be0c1362dd448cd4aaace76560b.setContent(html_3e59f4396c613a27c7e720266e54fa9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10d575ce8354c10a23950730d47cfc3f.bindPopup(popup_e2456be0c1362dd448cd4aaace76560b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f845d61c35a32123822cbd280628776 = L.circleMarker(\\n\",\n       \"                [32.9444, 117.3575],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b4090efb9d1b478b2a12c3b1422a645 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e243dc23be3cf1387603f543e4cd42d = $(`&lt;div id=&quot;html_4e243dc23be3cf1387603f543e4cd42d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3575             latitude:32.9444             PM2_5:63.05042017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b4090efb9d1b478b2a12c3b1422a645.setContent(html_4e243dc23be3cf1387603f543e4cd42d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f845d61c35a32123822cbd280628776.bindPopup(popup_8b4090efb9d1b478b2a12c3b1422a645)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0acf86c776b545b6b0f3229854f7ca22 = L.circleMarker(\\n\",\n       \"                [23.08, 114.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_feff5a3cf35721ccc06af5db4175571c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b597b2d5a3a1345bbe683b424492f079 = $(`&lt;div id=&quot;html_b597b2d5a3a1345bbe683b424492f079&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4053             latitude:23.08             PM2_5:28.84733894             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_feff5a3cf35721ccc06af5db4175571c.setContent(html_b597b2d5a3a1345bbe683b424492f079);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0acf86c776b545b6b0f3229854f7ca22.bindPopup(popup_feff5a3cf35721ccc06af5db4175571c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f51dcd8743e7c69e122882901cc6149 = L.circleMarker(\\n\",\n       \"                [23.2783, 113.568],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ea5a95ffc3bb175510b6c514f5eec3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0992a35c92db47d1b5c78720b71af214 = $(`&lt;div id=&quot;html_0992a35c92db47d1b5c78720b71af214&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.568             latitude:23.2783             PM2_5:28.38128492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ea5a95ffc3bb175510b6c514f5eec3e.setContent(html_0992a35c92db47d1b5c78720b71af214);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f51dcd8743e7c69e122882901cc6149.bindPopup(popup_3ea5a95ffc3bb175510b6c514f5eec3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6f918a9de57bff6457033335cc79856 = L.circleMarker(\\n\",\n       \"                [24.9624, 102.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98e30a1dc4c7788ec6378069b6cf6d7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_499c5dfd8bfc9b7a53d908aa0505a5ab = $(`&lt;div id=&quot;html_499c5dfd8bfc9b7a53d908aa0505a5ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.625             latitude:24.9624             PM2_5:26.83903134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98e30a1dc4c7788ec6378069b6cf6d7a.setContent(html_499c5dfd8bfc9b7a53d908aa0505a5ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6f918a9de57bff6457033335cc79856.bindPopup(popup_98e30a1dc4c7788ec6378069b6cf6d7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57858379bd8290d12276c58081233cd3 = L.circleMarker(\\n\",\n       \"                [32.6028, 116.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40b91f044de0ab721e56ed3bca0a844b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6317f31c52d8ded415debf68941006f5 = $(`&lt;div id=&quot;html_6317f31c52d8ded415debf68941006f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8556             latitude:32.6028             PM2_5:56.07520891             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40b91f044de0ab721e56ed3bca0a844b.setContent(html_6317f31c52d8ded415debf68941006f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57858379bd8290d12276c58081233cd3.bindPopup(popup_40b91f044de0ab721e56ed3bca0a844b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67b9e18dccdad2a313d758583fb3abbb = L.circleMarker(\\n\",\n       \"                [34.3708, 107.1586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9ca9c09ec0fc476f03dbd56aaeb974a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1fc8c30693969d72a6f843f2436a4e77 = $(`&lt;div id=&quot;html_1fc8c30693969d72a6f843f2436a4e77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1586             latitude:34.3708             PM2_5:43.64899713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9ca9c09ec0fc476f03dbd56aaeb974a.setContent(html_1fc8c30693969d72a6f843f2436a4e77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67b9e18dccdad2a313d758583fb3abbb.bindPopup(popup_b9ca9c09ec0fc476f03dbd56aaeb974a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8e6a9914e61dbcaab80f1c00d14bc5d = L.circleMarker(\\n\",\n       \"                [45.61, 126.615],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9741c95b2a38452491497e130d8df46e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57fc3ebbd4dc14ab2328d2278bca739f = $(`&lt;div id=&quot;html_57fc3ebbd4dc14ab2328d2278bca739f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.615             latitude:45.61             PM2_5:34.97091413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9741c95b2a38452491497e130d8df46e.setContent(html_57fc3ebbd4dc14ab2328d2278bca739f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8e6a9914e61dbcaab80f1c00d14bc5d.bindPopup(popup_9741c95b2a38452491497e130d8df46e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06fc7cb830b0a0a8eb2548438e53bbc8 = L.circleMarker(\\n\",\n       \"                [40.1194, 124.3678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9e728772eb49cd1df97b6c755d43104 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d309ea12b2883b3ac12cfcbc37a47262 = $(`&lt;div id=&quot;html_d309ea12b2883b3ac12cfcbc37a47262&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3678             latitude:40.1194             PM2_5:22.3557423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9e728772eb49cd1df97b6c755d43104.setContent(html_d309ea12b2883b3ac12cfcbc37a47262);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06fc7cb830b0a0a8eb2548438e53bbc8.bindPopup(popup_d9e728772eb49cd1df97b6c755d43104)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b86e9353dc99bf86a2a4ee2e0396cf28 = L.circleMarker(\\n\",\n       \"                [41.0228, 123.1289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9e88dfe0b603901e14e4cb0cb05e845 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7da203fc30500b68d8997defece4b46 = $(`&lt;div id=&quot;html_f7da203fc30500b68d8997defece4b46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1289             latitude:41.0228             PM2_5:27.61384615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9e88dfe0b603901e14e4cb0cb05e845.setContent(html_f7da203fc30500b68d8997defece4b46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b86e9353dc99bf86a2a4ee2e0396cf28.bindPopup(popup_a9e88dfe0b603901e14e4cb0cb05e845)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f65dfc2e8d12c85860a8ab1de74e7c4a = L.circleMarker(\\n\",\n       \"                [31.238, 121.4],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46055834dd56989931cc2726477a0024 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af11d19e257264d49e8263fb646295db = $(`&lt;div id=&quot;html_af11d19e257264d49e8263fb646295db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.4             latitude:31.238             PM2_5:40.8079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46055834dd56989931cc2726477a0024.setContent(html_af11d19e257264d49e8263fb646295db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f65dfc2e8d12c85860a8ab1de74e7c4a.bindPopup(popup_46055834dd56989931cc2726477a0024)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c52d565c15c5e17b0de59ba4b9758a11 = L.circleMarker(\\n\",\n       \"                [30.2456, 120.127],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_06df891603de50be23fd5ba026cbc176 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad1f2da4dcbbf14e0d289e945c7a39ca = $(`&lt;div id=&quot;html_ad1f2da4dcbbf14e0d289e945c7a39ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.127             latitude:30.2456             PM2_5:39.34916201             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_06df891603de50be23fd5ba026cbc176.setContent(html_ad1f2da4dcbbf14e0d289e945c7a39ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c52d565c15c5e17b0de59ba4b9758a11.bindPopup(popup_06df891603de50be23fd5ba026cbc176)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbb8f990cb0d8827bfce94eaf005892b = L.circleMarker(\\n\",\n       \"                [38.5061, 102.1708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_213da540e1a1ffe2fb49ad3fed0d85e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbbb99bc7a4b552acf24c28df710cccf = $(`&lt;div id=&quot;html_cbbb99bc7a4b552acf24c28df710cccf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1708             latitude:38.5061             PM2_5:24.38687151             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_213da540e1a1ffe2fb49ad3fed0d85e9.setContent(html_cbbb99bc7a4b552acf24c28df710cccf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbb8f990cb0d8827bfce94eaf005892b.bindPopup(popup_213da540e1a1ffe2fb49ad3fed0d85e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45f878293aafca0c66015c2acdc9ce65 = L.circleMarker(\\n\",\n       \"                [36.7339, 119.0841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8239f6582ff8538dd5d6364ce0701ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49009be847e5dded53edd49f79fffacb = $(`&lt;div id=&quot;html_49009be847e5dded53edd49f79fffacb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0841             latitude:36.7339             PM2_5:55.09861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8239f6582ff8538dd5d6364ce0701ba.setContent(html_49009be847e5dded53edd49f79fffacb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45f878293aafca0c66015c2acdc9ce65.bindPopup(popup_d8239f6582ff8538dd5d6364ce0701ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea0b5d3d31ac490fdc0e3a88c558e029 = L.circleMarker(\\n\",\n       \"                [32.2786, 118.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63123d53345d8843e30c39ba5a7fcfbc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_030313ea509121816685e918818bf248 = $(`&lt;div id=&quot;html_030313ea509121816685e918818bf248&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3244             latitude:32.2786             PM2_5:52.09888579             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63123d53345d8843e30c39ba5a7fcfbc.setContent(html_030313ea509121816685e918818bf248);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea0b5d3d31ac490fdc0e3a88c558e029.bindPopup(popup_63123d53345d8843e30c39ba5a7fcfbc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_458f9bc89b23c95a3f58da5712a23333 = L.circleMarker(\\n\",\n       \"                [33.8399, 115.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43306ec461ce036a1d31821248d0b4e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_391181e47bfe67f4149c05746aae5e6f = $(`&lt;div id=&quot;html_391181e47bfe67f4149c05746aae5e6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8067             latitude:33.8399             PM2_5:53.26123596             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43306ec461ce036a1d31821248d0b4e8.setContent(html_391181e47bfe67f4149c05746aae5e6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_458f9bc89b23c95a3f58da5712a23333.bindPopup(popup_43306ec461ce036a1d31821248d0b4e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90cc32bedc21f8a394a80a331fe51618 = L.circleMarker(\\n\",\n       \"                [30.0475, 101.9603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cacbdff2efe752b021c718411d8929e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9b3091dca0b17bc5686ed9dc76e59cc4 = $(`&lt;div id=&quot;html_9b3091dca0b17bc5686ed9dc76e59cc4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9603             latitude:30.0475             PM2_5:15.21648045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cacbdff2efe752b021c718411d8929e0.setContent(html_9b3091dca0b17bc5686ed9dc76e59cc4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90cc32bedc21f8a394a80a331fe51618.bindPopup(popup_cacbdff2efe752b021c718411d8929e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_efc4e04bc475f1805ddf20a977ba965b = L.circleMarker(\\n\",\n       \"                [37.9097, 114.3541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55139645ad771e4933c6839cb3144dfa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf1d13cca9f4a42b845d7ed3ea998158 = $(`&lt;div id=&quot;html_bf1d13cca9f4a42b845d7ed3ea998158&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3541             latitude:37.9097             PM2_5:52.41044776             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55139645ad771e4933c6839cb3144dfa.setContent(html_bf1d13cca9f4a42b845d7ed3ea998158);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_efc4e04bc475f1805ddf20a977ba965b.bindPopup(popup_55139645ad771e4933c6839cb3144dfa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2159477f06d0d55c179fc8a61c1293c6 = L.circleMarker(\\n\",\n       \"                [24.6967, 108.1009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb94f906795cf3c9cc602ab616a9a306 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ddd3647868d1d05c47044406ef7e1a7 = $(`&lt;div id=&quot;html_3ddd3647868d1d05c47044406ef7e1a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.1009             latitude:24.6967             PM2_5:32.43905817             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb94f906795cf3c9cc602ab616a9a306.setContent(html_3ddd3647868d1d05c47044406ef7e1a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2159477f06d0d55c179fc8a61c1293c6.bindPopup(popup_fb94f906795cf3c9cc602ab616a9a306)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6c19e4a305aa9109d7fa75cbbc3feae = L.circleMarker(\\n\",\n       \"                [23.6706, 116.6447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a03a066e8d539ecef5feb5432aa6e88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_417fd022ff1cad97b1907c01ccda6585 = $(`&lt;div id=&quot;html_417fd022ff1cad97b1907c01ccda6585&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6447             latitude:23.6706             PM2_5:26.14225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a03a066e8d539ecef5feb5432aa6e88.setContent(html_417fd022ff1cad97b1907c01ccda6585);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6c19e4a305aa9109d7fa75cbbc3feae.bindPopup(popup_3a03a066e8d539ecef5feb5432aa6e88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f241dbbee96bfe3f565d7be4a26759cc = L.circleMarker(\\n\",\n       \"                [33.0323, 107.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6464f46107cdf6383ebb7fa434141371 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d4c59c56b7d1026fcf4ebd808f3f28c = $(`&lt;div id=&quot;html_1d4c59c56b7d1026fcf4ebd808f3f28c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.007             latitude:33.0323             PM2_5:47.88611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6464f46107cdf6383ebb7fa434141371.setContent(html_1d4c59c56b7d1026fcf4ebd808f3f28c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f241dbbee96bfe3f565d7be4a26759cc.bindPopup(popup_6464f46107cdf6383ebb7fa434141371)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd915aab5f1fb3e2c3780db1154d4ac2 = L.circleMarker(\\n\",\n       \"                [25.442, 119.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e73825c66f2d98a2e358c22d03f736de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01b40003c09e49c4ebcd52ab6a6e3291 = $(`&lt;div id=&quot;html_01b40003c09e49c4ebcd52ab6a6e3291&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0156             latitude:25.442             PM2_5:28.97338936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e73825c66f2d98a2e358c22d03f736de.setContent(html_01b40003c09e49c4ebcd52ab6a6e3291);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd915aab5f1fb3e2c3780db1154d4ac2.bindPopup(popup_e73825c66f2d98a2e358c22d03f736de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bf5c55b930d7acaa35e0c822624f5ac = L.circleMarker(\\n\",\n       \"                [38.5247, 102.1878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a536119d53010332a4e1bb8e7c76f5dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e353901eb4a00132737b20dac5db77d = $(`&lt;div id=&quot;html_8e353901eb4a00132737b20dac5db77d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1878             latitude:38.5247             PM2_5:33.28028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a536119d53010332a4e1bb8e7c76f5dd.setContent(html_8e353901eb4a00132737b20dac5db77d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bf5c55b930d7acaa35e0c822624f5ac.bindPopup(popup_a536119d53010332a4e1bb8e7c76f5dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd67772a2fb1a3e9e124f871167938c0 = L.circleMarker(\\n\",\n       \"                [22.8561, 108.316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b044878ee43eb152b5e3c4367994fdd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66f1eeb573dc2448ee16cf07e24b735c = $(`&lt;div id=&quot;html_66f1eeb573dc2448ee16cf07e24b735c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.316             latitude:22.8561             PM2_5:33.86731844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b044878ee43eb152b5e3c4367994fdd.setContent(html_66f1eeb573dc2448ee16cf07e24b735c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd67772a2fb1a3e9e124f871167938c0.bindPopup(popup_6b044878ee43eb152b5e3c4367994fdd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_509db7788fdad06db3ff102762379e34 = L.circleMarker(\\n\",\n       \"                [31.656, 120.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2ee289ed04cbf3c2c2baf72f65be49e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f2efe383f6829d855765164446879d8 = $(`&lt;div id=&quot;html_4f2efe383f6829d855765164446879d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.734             latitude:31.656             PM2_5:43.63128492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2ee289ed04cbf3c2c2baf72f65be49e.setContent(html_4f2efe383f6829d855765164446879d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_509db7788fdad06db3ff102762379e34.bindPopup(popup_e2ee289ed04cbf3c2c2baf72f65be49e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56096c43bae6a9d89698963ad84ec0fc = L.circleMarker(\\n\",\n       \"                [29.36028, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c6081acd2a2c3bfb7f525773ad772da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_676e835c021405cbb73aa35eb0bba982 = $(`&lt;div id=&quot;html_676e835c021405cbb73aa35eb0bba982&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:29.36028             PM2_5:54.58543417             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c6081acd2a2c3bfb7f525773ad772da.setContent(html_676e835c021405cbb73aa35eb0bba982);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56096c43bae6a9d89698963ad84ec0fc.bindPopup(popup_1c6081acd2a2c3bfb7f525773ad772da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cda1ad376db8bc8d92f0e2153db94f1c = L.circleMarker(\\n\",\n       \"                [22.7833, 108.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_171ead47f5495c51e52f52524c7c9380 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40c2e283139e9790fc7bf08a6d00d55c = $(`&lt;div id=&quot;html_40c2e283139e9790fc7bf08a6d00d55c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.244             latitude:22.7833             PM2_5:36.84195402             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_171ead47f5495c51e52f52524c7c9380.setContent(html_40c2e283139e9790fc7bf08a6d00d55c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cda1ad376db8bc8d92f0e2153db94f1c.bindPopup(popup_171ead47f5495c51e52f52524c7c9380)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a31f9c243290ab66cc7cf717e99533d3 = L.circleMarker(\\n\",\n       \"                [36.3083, 120.1964],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5ceb3a02f5e15c40af138dde3543d7b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e73c67d65416ccdbd73b108ef4a01b4a = $(`&lt;div id=&quot;html_e73c67d65416ccdbd73b108ef4a01b4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1964             latitude:36.3083             PM2_5:41.015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5ceb3a02f5e15c40af138dde3543d7b.setContent(html_e73c67d65416ccdbd73b108ef4a01b4a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a31f9c243290ab66cc7cf717e99533d3.bindPopup(popup_b5ceb3a02f5e15c40af138dde3543d7b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_625de163d59dbcee404c384cdf6eb3f5 = L.circleMarker(\\n\",\n       \"                [41.8828, 123.9169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8da6767611e20c1f1e607a4800db8255 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2d5e05cd07ec2ebb8b863ba0dfcbc0d = $(`&lt;div id=&quot;html_a2d5e05cd07ec2ebb8b863ba0dfcbc0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9169             latitude:41.8828             PM2_5:34.99301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8da6767611e20c1f1e607a4800db8255.setContent(html_a2d5e05cd07ec2ebb8b863ba0dfcbc0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_625de163d59dbcee404c384cdf6eb3f5.bindPopup(popup_8da6767611e20c1f1e607a4800db8255)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8996bc1a083de3d8738423c1d3c47916 = L.circleMarker(\\n\",\n       \"                [41.8472, 123.428],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27777a6dec8ab091703b50ef23a1dda6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdaa210913bd54c52c523c85f92f35d9 = $(`&lt;div id=&quot;html_bdaa210913bd54c52c523c85f92f35d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.428             latitude:41.8472             PM2_5:31.03651685             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27777a6dec8ab091703b50ef23a1dda6.setContent(html_bdaa210913bd54c52c523c85f92f35d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8996bc1a083de3d8738423c1d3c47916.bindPopup(popup_27777a6dec8ab091703b50ef23a1dda6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c188d075864a90bcf181be290966a1fd = L.circleMarker(\\n\",\n       \"                [27.8381, 113.143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_282f6971539fe838f35f785bbcdf5153 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0519910f90d5d0123adf6887aa24a62 = $(`&lt;div id=&quot;html_d0519910f90d5d0123adf6887aa24a62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.143             latitude:27.8381             PM2_5:41.82670455             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_282f6971539fe838f35f785bbcdf5153.setContent(html_d0519910f90d5d0123adf6887aa24a62);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c188d075864a90bcf181be290966a1fd.bindPopup(popup_282f6971539fe838f35f785bbcdf5153)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7636f5aafb8f5b278edab3f9451d6d6 = L.circleMarker(\\n\",\n       \"                [43.8667, 125.417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_641502c9e83bac60d891f9606bbdfdde = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbc36b31a2cbd913623b4bb2a0c14175 = $(`&lt;div id=&quot;html_cbc36b31a2cbd913623b4bb2a0c14175&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.417             latitude:43.8667             PM2_5:34.31728045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_641502c9e83bac60d891f9606bbdfdde.setContent(html_cbc36b31a2cbd913623b4bb2a0c14175);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7636f5aafb8f5b278edab3f9451d6d6.bindPopup(popup_641502c9e83bac60d891f9606bbdfdde)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2045bf4a954b28ea884993772243c8ac = L.circleMarker(\\n\",\n       \"                [45.7258, 126.646],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1e3912f69458ba59e0e9db7dc8ff057 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_473db88bba89377a8c476ff876be0429 = $(`&lt;div id=&quot;html_473db88bba89377a8c476ff876be0429&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.646             latitude:45.7258             PM2_5:37.67694805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1e3912f69458ba59e0e9db7dc8ff057.setContent(html_473db88bba89377a8c476ff876be0429);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2045bf4a954b28ea884993772243c8ac.bindPopup(popup_b1e3912f69458ba59e0e9db7dc8ff057)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c63b72ccc8c60fc944cea5e6ce1ddbaf = L.circleMarker(\\n\",\n       \"                [26.6272, 118.1756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47aa4a0759089ccbeb4d752af7ff25b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_174104698d1bafb11bdea0a7637943f8 = $(`&lt;div id=&quot;html_174104698d1bafb11bdea0a7637943f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1756             latitude:26.6272             PM2_5:22.71927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47aa4a0759089ccbeb4d752af7ff25b2.setContent(html_174104698d1bafb11bdea0a7637943f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c63b72ccc8c60fc944cea5e6ce1ddbaf.bindPopup(popup_47aa4a0759089ccbeb4d752af7ff25b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7c50092c315674a7a8896bec12c8f5f = L.circleMarker(\\n\",\n       \"                [27.9883, 116.3553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a08eb3624c52ca8872aac9e4f8e32dbf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_817ca1f39cfc0283bc9bdd940d63090a = $(`&lt;div id=&quot;html_817ca1f39cfc0283bc9bdd940d63090a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3553             latitude:27.9883             PM2_5:44.83333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a08eb3624c52ca8872aac9e4f8e32dbf.setContent(html_817ca1f39cfc0283bc9bdd940d63090a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7c50092c315674a7a8896bec12c8f5f.bindPopup(popup_a08eb3624c52ca8872aac9e4f8e32dbf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d7b169954f5dff1d851a709201bc839 = L.circleMarker(\\n\",\n       \"                [39.9522, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e2ed4530c89d0c4730c2c3c3f27d201 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_334ae8ff50d0ab401cdcca5436d49eb7 = $(`&lt;div id=&quot;html_334ae8ff50d0ab401cdcca5436d49eb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.9522             PM2_5:54.89859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e2ed4530c89d0c4730c2c3c3f27d201.setContent(html_334ae8ff50d0ab401cdcca5436d49eb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d7b169954f5dff1d851a709201bc839.bindPopup(popup_4e2ed4530c89d0c4730c2c3c3f27d201)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1b38fc051d856d53bc0afcd18f65498 = L.circleMarker(\\n\",\n       \"                [38.843, 105.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ee919a8532929f06b2a4725f717678c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f229fe51cd19016834fae87d384d672c = $(`&lt;div id=&quot;html_f229fe51cd19016834fae87d384d672c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6975             latitude:38.843             PM2_5:33.15181058             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ee919a8532929f06b2a4725f717678c.setContent(html_f229fe51cd19016834fae87d384d672c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1b38fc051d856d53bc0afcd18f65498.bindPopup(popup_9ee919a8532929f06b2a4725f717678c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b72b45deb29737c31c9568ab9f0b8c7f = L.circleMarker(\\n\",\n       \"                [22.8172, 114.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b988c1799211fe45e7ea0c0ba416e0b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09f8a8b4d4b466a8a22678558d942d18 = $(`&lt;div id=&quot;html_09f8a8b4d4b466a8a22678558d942d18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3244             latitude:22.8172             PM2_5:24.58848315             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b988c1799211fe45e7ea0c0ba416e0b4.setContent(html_09f8a8b4d4b466a8a22678558d942d18);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b72b45deb29737c31c9568ab9f0b8c7f.bindPopup(popup_b988c1799211fe45e7ea0c0ba416e0b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adf0d8d6b367e52dea9bde5a0d3dae74 = L.circleMarker(\\n\",\n       \"                [39.9419, 119.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a243315621b94a07b10ca16337a07c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be22390be62c91a5357c5ce40baff876 = $(`&lt;div id=&quot;html_be22390be62c91a5357c5ce40baff876&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5369             latitude:39.9419             PM2_5:36.63826816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a243315621b94a07b10ca16337a07c4.setContent(html_be22390be62c91a5357c5ce40baff876);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adf0d8d6b367e52dea9bde5a0d3dae74.bindPopup(popup_5a243315621b94a07b10ca16337a07c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17c5bedd30d629a8e2e1bdcbfd252e2b = L.circleMarker(\\n\",\n       \"                [24.4175, 111.5269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20fff8fe8cc69f123bd0ab66ac811728 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b88f668522003e910bfe27fc35b82ea5 = $(`&lt;div id=&quot;html_b88f668522003e910bfe27fc35b82ea5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5269             latitude:24.4175             PM2_5:44.24504249             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20fff8fe8cc69f123bd0ab66ac811728.setContent(html_b88f668522003e910bfe27fc35b82ea5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17c5bedd30d629a8e2e1bdcbfd252e2b.bindPopup(popup_20fff8fe8cc69f123bd0ab66ac811728)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20e727fe13bb4d773e01cd5705f38f17 = L.circleMarker(\\n\",\n       \"                [29.7128, 118.3057],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63259d6f2723eadd429f055e3f89dfb9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a00988edf715d0aabe6d5fcbd3dd1088 = $(`&lt;div id=&quot;html_a00988edf715d0aabe6d5fcbd3dd1088&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3057             latitude:29.7128             PM2_5:26.5280112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63259d6f2723eadd429f055e3f89dfb9.setContent(html_a00988edf715d0aabe6d5fcbd3dd1088);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20e727fe13bb4d773e01cd5705f38f17.bindPopup(popup_63259d6f2723eadd429f055e3f89dfb9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2396b08f21a6e40ae55ae09f783d51f0 = L.circleMarker(\\n\",\n       \"                [26.57098, 101.68912],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9f46c7a98d75db9e6ee8539a0078dc7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_238c1d72152d8146cbd7b2caedb9fcbb = $(`&lt;div id=&quot;html_238c1d72152d8146cbd7b2caedb9fcbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.68912             latitude:26.57098             PM2_5:34.35014006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9f46c7a98d75db9e6ee8539a0078dc7.setContent(html_238c1d72152d8146cbd7b2caedb9fcbb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2396b08f21a6e40ae55ae09f783d51f0.bindPopup(popup_e9f46c7a98d75db9e6ee8539a0078dc7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c6d878fad8f80e6145f8f39e9fe035c = L.circleMarker(\\n\",\n       \"                [36.087, 114.358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b30037a3941387f17f399ce140445bd4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60b98b1ca6819116485447dfd3ee8f5e = $(`&lt;div id=&quot;html_60b98b1ca6819116485447dfd3ee8f5e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.358             latitude:36.087             PM2_5:68.93837535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b30037a3941387f17f399ce140445bd4.setContent(html_60b98b1ca6819116485447dfd3ee8f5e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c6d878fad8f80e6145f8f39e9fe035c.bindPopup(popup_b30037a3941387f17f399ce140445bd4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b512842d72fcf509359ea7b8fcef4c82 = L.circleMarker(\\n\",\n       \"                [39.3673, 112.4279],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_503f76417cd83597a88d58e9104bdb39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68a72c65e3375afa13be19da31c1fe93 = $(`&lt;div id=&quot;html_68a72c65e3375afa13be19da31c1fe93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4279             latitude:39.3673             PM2_5:35.7987988             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_503f76417cd83597a88d58e9104bdb39.setContent(html_68a72c65e3375afa13be19da31c1fe93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b512842d72fcf509359ea7b8fcef4c82.bindPopup(popup_503f76417cd83597a88d58e9104bdb39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9016ed7944ca7d790b67ef4e5363fdd3 = L.circleMarker(\\n\",\n       \"                [37.4658, 118.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e37e17498e91b653ccfc67f622bee409 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0dc0c78b0785768b53dee88ac73863f8 = $(`&lt;div id=&quot;html_0dc0c78b0785768b53dee88ac73863f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5019             latitude:37.4658             PM2_5:50.71587744             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e37e17498e91b653ccfc67f622bee409.setContent(html_0dc0c78b0785768b53dee88ac73863f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9016ed7944ca7d790b67ef4e5363fdd3.bindPopup(popup_e37e17498e91b653ccfc67f622bee409)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b322dfd1960b79804ba61690507f0197 = L.circleMarker(\\n\",\n       \"                [23.7233, 114.6892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ed9ec570ae801fbb2c1425d2922bd89 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c5f61dc6b8da60f4349b00561daf85e = $(`&lt;div id=&quot;html_4c5f61dc6b8da60f4349b00561daf85e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6892             latitude:23.7233             PM2_5:26.02240896             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ed9ec570ae801fbb2c1425d2922bd89.setContent(html_4c5f61dc6b8da60f4349b00561daf85e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b322dfd1960b79804ba61690507f0197.bindPopup(popup_6ed9ec570ae801fbb2c1425d2922bd89)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c20a30ee3b06bc0bd73abf316695e7b2 = L.circleMarker(\\n\",\n       \"                [28.4569, 118.0058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_055dd4edb0c211efe45e35e3081ae390 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f713fec1957c1196a921c671efc29cc6 = $(`&lt;div id=&quot;html_f713fec1957c1196a921c671efc29cc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0058             latitude:28.4569             PM2_5:36.31908832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_055dd4edb0c211efe45e35e3081ae390.setContent(html_f713fec1957c1196a921c671efc29cc6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c20a30ee3b06bc0bd73abf316695e7b2.bindPopup(popup_055dd4edb0c211efe45e35e3081ae390)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31bcd4d8ca22c347156df0ce81326026 = L.circleMarker(\\n\",\n       \"                [30.2099, 115.0264],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3551473619136647d8ba51ad7aa95cc1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d55adcadd5d1ae67649a282eae8b5f0 = $(`&lt;div id=&quot;html_4d55adcadd5d1ae67649a282eae8b5f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0264             latitude:30.2099             PM2_5:54.80532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3551473619136647d8ba51ad7aa95cc1.setContent(html_4d55adcadd5d1ae67649a282eae8b5f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31bcd4d8ca22c347156df0ce81326026.bindPopup(popup_3551473619136647d8ba51ad7aa95cc1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb107894647730148f3d2107a54bd1dc = L.circleMarker(\\n\",\n       \"                [33.737, 113.182],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e7750771b317bc324c57aa08f534847 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cb1a8f4b67f7f3b4fa92cbed17c8d31 = $(`&lt;div id=&quot;html_8cb1a8f4b67f7f3b4fa92cbed17c8d31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.182             latitude:33.737             PM2_5:60.34225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e7750771b317bc324c57aa08f534847.setContent(html_8cb1a8f4b67f7f3b4fa92cbed17c8d31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb107894647730148f3d2107a54bd1dc.bindPopup(popup_5e7750771b317bc324c57aa08f534847)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_372d9a76523512fa7f2326303277c723 = L.circleMarker(\\n\",\n       \"                [22.735, 108.328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf75f5dc31c5aaac0d38d7f0a8031a13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4fba8078a48b1f03993aaf8b9e0e52ea = $(`&lt;div id=&quot;html_4fba8078a48b1f03993aaf8b9e0e52ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.328             latitude:22.735             PM2_5:34.70655271             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf75f5dc31c5aaac0d38d7f0a8031a13.setContent(html_4fba8078a48b1f03993aaf8b9e0e52ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_372d9a76523512fa7f2326303277c723.bindPopup(popup_bf75f5dc31c5aaac0d38d7f0a8031a13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1ac63ddf7e3dd6c10d1a2b9af4afdee = L.circleMarker(\\n\",\n       \"                [35.0147, 110.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00431f8f9865bcc4cf465baf73b5dc32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0dcc500e25490f3c99dd8ca33637d944 = $(`&lt;div id=&quot;html_0dcc500e25490f3c99dd8ca33637d944&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9956             latitude:35.0147             PM2_5:73.66899441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00431f8f9865bcc4cf465baf73b5dc32.setContent(html_0dcc500e25490f3c99dd8ca33637d944);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1ac63ddf7e3dd6c10d1a2b9af4afdee.bindPopup(popup_00431f8f9865bcc4cf465baf73b5dc32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b798f7c975a8cd8dd839c19973befd15 = L.circleMarker(\\n\",\n       \"                [38.9194, 117.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c6ef251613a00387bc657eb5001956b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22b1c7df0dfd2c5fd7f7bcc2c901ddd5 = $(`&lt;div id=&quot;html_22b1c7df0dfd2c5fd7f7bcc2c901ddd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.157             latitude:38.9194             PM2_5:57.08866279             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c6ef251613a00387bc657eb5001956b.setContent(html_22b1c7df0dfd2c5fd7f7bcc2c901ddd5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b798f7c975a8cd8dd839c19973befd15.bindPopup(popup_8c6ef251613a00387bc657eb5001956b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd7b707447689a4744a498004d3a6cc9 = L.circleMarker(\\n\",\n       \"                [27.8036, 114.3442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f01c8442d51d93b43925ec8b14e4b8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c61f27c1e4716bac689fccd4f125ebea = $(`&lt;div id=&quot;html_c61f27c1e4716bac689fccd4f125ebea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3442             latitude:27.8036             PM2_5:49.8198324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f01c8442d51d93b43925ec8b14e4b8e.setContent(html_c61f27c1e4716bac689fccd4f125ebea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd7b707447689a4744a498004d3a6cc9.bindPopup(popup_3f01c8442d51d93b43925ec8b14e4b8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98e8b233515eab844643080952a6cae6 = L.circleMarker(\\n\",\n       \"                [23.8982, 100.0782],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d45d642c6846ef313d414324f3d48eea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84d7cf22c0dc38cc61d3772c57b3f4b8 = $(`&lt;div id=&quot;html_84d7cf22c0dc38cc61d3772c57b3f4b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0782             latitude:23.8982             PM2_5:26.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d45d642c6846ef313d414324f3d48eea.setContent(html_84d7cf22c0dc38cc61d3772c57b3f4b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98e8b233515eab844643080952a6cae6.bindPopup(popup_d45d642c6846ef313d414324f3d48eea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69cd2c358fe9ffe4bd8e9c6168a1fe0c = L.circleMarker(\\n\",\n       \"                [30.8244, 120.07],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_116b3f6fc950c3c0815759052d16afe6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae0aca833f62a7d346a053e6f10fa5bb = $(`&lt;div id=&quot;html_ae0aca833f62a7d346a053e6f10fa5bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.07             latitude:30.8244             PM2_5:38.02668539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_116b3f6fc950c3c0815759052d16afe6.setContent(html_ae0aca833f62a7d346a053e6f10fa5bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69cd2c358fe9ffe4bd8e9c6168a1fe0c.bindPopup(popup_116b3f6fc950c3c0815759052d16afe6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_691d94fe32677740f4c7f5ff8d5d66a8 = L.circleMarker(\\n\",\n       \"                [22.2294, 113.495],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c30f5d5f86a195d6c46f041c6a99d5ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3399191f3a79cc56411e10c0506533a = $(`&lt;div id=&quot;html_e3399191f3a79cc56411e10c0506533a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.495             latitude:22.2294             PM2_5:28.53813559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c30f5d5f86a195d6c46f041c6a99d5ab.setContent(html_e3399191f3a79cc56411e10c0506533a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_691d94fe32677740f4c7f5ff8d5d66a8.bindPopup(popup_c30f5d5f86a195d6c46f041c6a99d5ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67ef32c8f0e3f7c4a713ce8cd75fd291 = L.circleMarker(\\n\",\n       \"                [22.4137, 107.3476],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34629a3ca1cdfaa845936d2b46b972d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4713a5732c60f8c077555d04e1d2db4 = $(`&lt;div id=&quot;html_f4713a5732c60f8c077555d04e1d2db4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3476             latitude:22.4137             PM2_5:28.27130682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34629a3ca1cdfaa845936d2b46b972d0.setContent(html_f4713a5732c60f8c077555d04e1d2db4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67ef32c8f0e3f7c4a713ce8cd75fd291.bindPopup(popup_34629a3ca1cdfaa845936d2b46b972d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88d5dc988b089dfe04fd3796b547b876 = L.circleMarker(\\n\",\n       \"                [36.1942, 117.1436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0de19edc2098c4c69a68c9a7397e721f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57b325c9a16ba3a3ccabc455ddd7994f = $(`&lt;div id=&quot;html_57b325c9a16ba3a3ccabc455ddd7994f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1436             latitude:36.1942             PM2_5:50.27793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0de19edc2098c4c69a68c9a7397e721f.setContent(html_57b325c9a16ba3a3ccabc455ddd7994f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88d5dc988b089dfe04fd3796b547b876.bindPopup(popup_0de19edc2098c4c69a68c9a7397e721f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_958b01dab5e51989b55633caec2f2622 = L.circleMarker(\\n\",\n       \"                [30.7946, 120.744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c368648967548ec73bcd2fde3276e0de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9bb1cc0680083b3e64e54ba9fa9975b = $(`&lt;div id=&quot;html_e9bb1cc0680083b3e64e54ba9fa9975b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.744             latitude:30.7946             PM2_5:41.25             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c368648967548ec73bcd2fde3276e0de.setContent(html_e9bb1cc0680083b3e64e54ba9fa9975b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_958b01dab5e51989b55633caec2f2622.bindPopup(popup_c368648967548ec73bcd2fde3276e0de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb8667e314e1f7bcb485d1455abc0860 = L.circleMarker(\\n\",\n       \"                [38.2839, 109.7289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e67d51ef76abb4fa7ce5d53b1ed8fcc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6846345bb27612f610ae13befecfc67 = $(`&lt;div id=&quot;html_c6846345bb27612f610ae13befecfc67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7289             latitude:38.2839             PM2_5:30.51983003             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e67d51ef76abb4fa7ce5d53b1ed8fcc.setContent(html_c6846345bb27612f610ae13befecfc67);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb8667e314e1f7bcb485d1455abc0860.bindPopup(popup_5e67d51ef76abb4fa7ce5d53b1ed8fcc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c1fdc4621be9cdcb3ad5c5fed59682a = L.circleMarker(\\n\",\n       \"                [29.5953, 105.0331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d7e32afd21ebba6253e7f0aeeb5e64b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4a558c6a46ead26961a3a1c8dde7260 = $(`&lt;div id=&quot;html_b4a558c6a46ead26961a3a1c8dde7260&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0331             latitude:29.5953             PM2_5:34.3258427             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d7e32afd21ebba6253e7f0aeeb5e64b2.setContent(html_b4a558c6a46ead26961a3a1c8dde7260);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c1fdc4621be9cdcb3ad5c5fed59682a.bindPopup(popup_d7e32afd21ebba6253e7f0aeeb5e64b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18a798328d41d1e4a9856bffd78bf2aa = L.circleMarker(\\n\",\n       \"                [32.9673, 117.3536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7b4c279f9545561f516af94754964ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_232be4c1682240a0a1c1fb84208d9b7b = $(`&lt;div id=&quot;html_232be4c1682240a0a1c1fb84208d9b7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3536             latitude:32.9673             PM2_5:49.43333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7b4c279f9545561f516af94754964ae.setContent(html_232be4c1682240a0a1c1fb84208d9b7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18a798328d41d1e4a9856bffd78bf2aa.bindPopup(popup_b7b4c279f9545561f516af94754964ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad5d91664ef14812568de2fa9eebe8ea = L.circleMarker(\\n\",\n       \"                [27.9164, 112.4876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d97a9cf72b62699e198162817babe34 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cfc3ad2075c74ca13ec783ab4fda65be = $(`&lt;div id=&quot;html_cfc3ad2075c74ca13ec783ab4fda65be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4876             latitude:27.9164             PM2_5:41.67039106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d97a9cf72b62699e198162817babe34.setContent(html_cfc3ad2075c74ca13ec783ab4fda65be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad5d91664ef14812568de2fa9eebe8ea.bindPopup(popup_7d97a9cf72b62699e198162817babe34)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ead90162c3302a8ba4724bd08291eb1 = L.circleMarker(\\n\",\n       \"                [29.9972, 101.9533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d39735f23e3947af36882cd2221129d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c8dfb483262d149f6e46c54b19f6e2fe = $(`&lt;div id=&quot;html_c8dfb483262d149f6e46c54b19f6e2fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9533             latitude:29.9972             PM2_5:18.25892857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d39735f23e3947af36882cd2221129d5.setContent(html_c8dfb483262d149f6e46c54b19f6e2fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ead90162c3302a8ba4724bd08291eb1.bindPopup(popup_d39735f23e3947af36882cd2221129d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_829ee5f7fd4e10f17d6c9790b23c0458 = L.circleMarker(\\n\",\n       \"                [30.1506, 104.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3fc0a957f62f32ce1628ecc809725b38 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_492caf95022e38b0e7f6f5ca4580a07b = $(`&lt;div id=&quot;html_492caf95022e38b0e7f6f5ca4580a07b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6356             latitude:30.1506             PM2_5:37.29501385             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3fc0a957f62f32ce1628ecc809725b38.setContent(html_492caf95022e38b0e7f6f5ca4580a07b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_829ee5f7fd4e10f17d6c9790b23c0458.bindPopup(popup_3fc0a957f62f32ce1628ecc809725b38)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9558d2042cd5ec5189b4e886059f9db6 = L.circleMarker(\\n\",\n       \"                [43.84, 125.2786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb765ebb1b264321252f56117410d578 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35bdd6d307877d77707ff82d9947918c = $(`&lt;div id=&quot;html_35bdd6d307877d77707ff82d9947918c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.2786             latitude:43.84             PM2_5:32.66760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb765ebb1b264321252f56117410d578.setContent(html_35bdd6d307877d77707ff82d9947918c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9558d2042cd5ec5189b4e886059f9db6.bindPopup(popup_fb765ebb1b264321252f56117410d578)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_722b2bd880c499fb229084fd142026dd = L.circleMarker(\\n\",\n       \"                [36.1542, 113.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_272f16e3f918fd937573e8a5426552ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_428c6c647e871ec611a150f7a7aee402 = $(`&lt;div id=&quot;html_428c6c647e871ec611a150f7a7aee402&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1097             latitude:36.1542             PM2_5:67.22486034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_272f16e3f918fd937573e8a5426552ad.setContent(html_428c6c647e871ec611a150f7a7aee402);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_722b2bd880c499fb229084fd142026dd.bindPopup(popup_272f16e3f918fd937573e8a5426552ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de2c542bafa473b65331d2343a8472cb = L.circleMarker(\\n\",\n       \"                [32.4535, 105.8945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5dd81626df716962e2edf10ae6c5c9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4906ec0e5ea670aa41054b0c0597787 = $(`&lt;div id=&quot;html_a4906ec0e5ea670aa41054b0c0597787&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8945             latitude:32.4535             PM2_5:21.4622905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5dd81626df716962e2edf10ae6c5c9f.setContent(html_a4906ec0e5ea670aa41054b0c0597787);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de2c542bafa473b65331d2343a8472cb.bindPopup(popup_f5dd81626df716962e2edf10ae6c5c9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0703ded2b7a6da0b2d819c77ff5f896 = L.circleMarker(\\n\",\n       \"                [24.8978, 118.5972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4d9dc884d40f49e7ea13ed72449e512 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_516561268d8da6a960d2ace854d0f1a9 = $(`&lt;div id=&quot;html_516561268d8da6a960d2ace854d0f1a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5972             latitude:24.8978             PM2_5:26.7605042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4d9dc884d40f49e7ea13ed72449e512.setContent(html_516561268d8da6a960d2ace854d0f1a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0703ded2b7a6da0b2d819c77ff5f896.bindPopup(popup_d4d9dc884d40f49e7ea13ed72449e512)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1adfb3fa0482e05ec135a06aa1edaaac = L.circleMarker(\\n\",\n       \"                [29.6219, 106.65],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd1e3eb3b6c900d3c902e5ba7defaa2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cab98765f3f895b9da7e757d3124f55 = $(`&lt;div id=&quot;html_8cab98765f3f895b9da7e757d3124f55&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.65             latitude:29.6219             PM2_5:29.91086351             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd1e3eb3b6c900d3c902e5ba7defaa2a.setContent(html_8cab98765f3f895b9da7e757d3124f55);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1adfb3fa0482e05ec135a06aa1edaaac.bindPopup(popup_cd1e3eb3b6c900d3c902e5ba7defaa2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff4eb38c5e35ebead7d1f4d51c5cb5f6 = L.circleMarker(\\n\",\n       \"                [41.1636, 80.2828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d688dd4d95fa971c81825abcde618ded = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35199054a03ec9e79518309954970db8 = $(`&lt;div id=&quot;html_35199054a03ec9e79518309954970db8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2828             latitude:41.1636             PM2_5:69.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d688dd4d95fa971c81825abcde618ded.setContent(html_35199054a03ec9e79518309954970db8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff4eb38c5e35ebead7d1f4d51c5cb5f6.bindPopup(popup_d688dd4d95fa971c81825abcde618ded)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f16657e7ca11693fb0e90c9ff1d2f819 = L.circleMarker(\\n\",\n       \"                [34.3617, 108.7233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35e2110bc51ab2393dae07b3b99738d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_88ef794cd1fd06727421459ae3153ebe = $(`&lt;div id=&quot;html_88ef794cd1fd06727421459ae3153ebe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7233             latitude:34.3617             PM2_5:67.50702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35e2110bc51ab2393dae07b3b99738d2.setContent(html_88ef794cd1fd06727421459ae3153ebe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f16657e7ca11693fb0e90c9ff1d2f819.bindPopup(popup_35e2110bc51ab2393dae07b3b99738d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43080ea94fe49e8d56a32ccb3c7e6e64 = L.circleMarker(\\n\",\n       \"                [41.9086, 123.5953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6a9e15cd8134c0dbffd6b45208f2908 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e02dc8fd5dad544d5ba90e89a0f4529 = $(`&lt;div id=&quot;html_5e02dc8fd5dad544d5ba90e89a0f4529&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.5953             latitude:41.9086             PM2_5:30.00423729             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6a9e15cd8134c0dbffd6b45208f2908.setContent(html_5e02dc8fd5dad544d5ba90e89a0f4529);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43080ea94fe49e8d56a32ccb3c7e6e64.bindPopup(popup_c6a9e15cd8134c0dbffd6b45208f2908)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd9eb39e2332d839b8b53bde5a4949a9 = L.circleMarker(\\n\",\n       \"                [29.2786, 117.1983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8cd84528cda9aefaa65562e8cf4979d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e15aed5308432aa6a8a8b9e4e0e7b36e = $(`&lt;div id=&quot;html_e15aed5308432aa6a8a8b9e4e0e7b36e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1983             latitude:29.2786             PM2_5:31.27871148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8cd84528cda9aefaa65562e8cf4979d8.setContent(html_e15aed5308432aa6a8a8b9e4e0e7b36e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd9eb39e2332d839b8b53bde5a4949a9.bindPopup(popup_8cd84528cda9aefaa65562e8cf4979d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5524a9ca7a5d02dbc4cc7ecca45b86c8 = L.circleMarker(\\n\",\n       \"                [25.3167, 110.4144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d116afa281e69d9852f136ece565c70c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c32b7571e2b5e5813a86fbc1a935d3c = $(`&lt;div id=&quot;html_6c32b7571e2b5e5813a86fbc1a935d3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4144             latitude:25.3167             PM2_5:33.86694678             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d116afa281e69d9852f136ece565c70c.setContent(html_6c32b7571e2b5e5813a86fbc1a935d3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5524a9ca7a5d02dbc4cc7ecca45b86c8.bindPopup(popup_d116afa281e69d9852f136ece565c70c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2d8f01c00e86a49dfcd7c3906499ee0 = L.circleMarker(\\n\",\n       \"                [40.8115, 114.8814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6726925548da37b3a84e5c5faffa923d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca7d67be031b245d776a430fd17c965f = $(`&lt;div id=&quot;html_ca7d67be031b245d776a430fd17c965f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8814             latitude:40.8115             PM2_5:30.67267267             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6726925548da37b3a84e5c5faffa923d.setContent(html_ca7d67be031b245d776a430fd17c965f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2d8f01c00e86a49dfcd7c3906499ee0.bindPopup(popup_6726925548da37b3a84e5c5faffa923d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e5355fbaeb4ddf9ff1f03db00e4004b = L.circleMarker(\\n\",\n       \"                [33.3261, 105.0822],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_284159d7be66a412d8936a7551e025a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98668fd0ed3ec6fcd67e2a5f5c908ea5 = $(`&lt;div id=&quot;html_98668fd0ed3ec6fcd67e2a5f5c908ea5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0822             latitude:33.3261             PM2_5:20.0625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_284159d7be66a412d8936a7551e025a5.setContent(html_98668fd0ed3ec6fcd67e2a5f5c908ea5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e5355fbaeb4ddf9ff1f03db00e4004b.bindPopup(popup_284159d7be66a412d8936a7551e025a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_622389958f11badf5e9952c5b48c9593 = L.circleMarker(\\n\",\n       \"                [31.2472, 120.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_514007448090731057bf502ee400d95e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4fea3fac42b8ecc170afabb04de7b3c = $(`&lt;div id=&quot;html_d4fea3fac42b8ecc170afabb04de7b3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.561             latitude:31.2472             PM2_5:40.37883008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_514007448090731057bf502ee400d95e.setContent(html_d4fea3fac42b8ecc170afabb04de7b3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_622389958f11badf5e9952c5b48c9593.bindPopup(popup_514007448090731057bf502ee400d95e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e261c2b1864bc1772ccc190062370221 = L.circleMarker(\\n\",\n       \"                [41.1442, 123.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f77c8bb188b2e3520926d5583026a30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46a507e2a434b9644a93e60c46f9d974 = $(`&lt;div id=&quot;html_46a507e2a434b9644a93e60c46f9d974&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0485             latitude:41.1442             PM2_5:33.3189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f77c8bb188b2e3520926d5583026a30.setContent(html_46a507e2a434b9644a93e60c46f9d974);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e261c2b1864bc1772ccc190062370221.bindPopup(popup_1f77c8bb188b2e3520926d5583026a30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c89069753ec27ba0dd082879406a9840 = L.circleMarker(\\n\",\n       \"                [33.1842, 106.9893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_843e49ee4800a4e1f39b741be08d3b1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_164c8306c9872069be12b6c8ca95e1bc = $(`&lt;div id=&quot;html_164c8306c9872069be12b6c8ca95e1bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9893             latitude:33.1842             PM2_5:41.890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_843e49ee4800a4e1f39b741be08d3b1b.setContent(html_164c8306c9872069be12b6c8ca95e1bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c89069753ec27ba0dd082879406a9840.bindPopup(popup_843e49ee4800a4e1f39b741be08d3b1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42b06e3493ec9d28438873a0c685b6d4 = L.circleMarker(\\n\",\n       \"                [26.8919, 112.6006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3c4d89b39977bb5c5acfaf9f09dbd98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b14fbea26e62c258b38dcb5b5ff12db7 = $(`&lt;div id=&quot;html_b14fbea26e62c258b38dcb5b5ff12db7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6006             latitude:26.8919             PM2_5:42.72299169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3c4d89b39977bb5c5acfaf9f09dbd98.setContent(html_b14fbea26e62c258b38dcb5b5ff12db7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42b06e3493ec9d28438873a0c685b6d4.bindPopup(popup_a3c4d89b39977bb5c5acfaf9f09dbd98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0704d9fed9bd8d4fedb778eb40937c7 = L.circleMarker(\\n\",\n       \"                [39.643, 118.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d5bfc535e6c3969887082a0b9956563 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f00a3ab126117483efcf45e767f99d58 = $(`&lt;div id=&quot;html_f00a3ab126117483efcf45e767f99d58&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.144             latitude:39.643             PM2_5:45.89027778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d5bfc535e6c3969887082a0b9956563.setContent(html_f00a3ab126117483efcf45e767f99d58);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0704d9fed9bd8d4fedb778eb40937c7.bindPopup(popup_1d5bfc535e6c3969887082a0b9956563)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26e25e0496450c334c69d03c49b3d25d = L.circleMarker(\\n\",\n       \"                [31.2703, 120.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0850877972fa7cd1927f70a8b67dc67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ec042dcc6df3f08060c7bccdf6d70d7 = $(`&lt;div id=&quot;html_4ec042dcc6df3f08060c7bccdf6d70d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.613             latitude:31.2703             PM2_5:39.79469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0850877972fa7cd1927f70a8b67dc67.setContent(html_4ec042dcc6df3f08060c7bccdf6d70d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26e25e0496450c334c69d03c49b3d25d.bindPopup(popup_f0850877972fa7cd1927f70a8b67dc67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26f62a871b71cafaec709435ba1c05e4 = L.circleMarker(\\n\",\n       \"                [36.6377, 117.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d20950bd25419ca4f133d9388ca05f3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe979b55d01c774abbe71f55d6ea9e7c = $(`&lt;div id=&quot;html_fe979b55d01c774abbe71f55d6ea9e7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9544             latitude:36.6377             PM2_5:50.94507042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d20950bd25419ca4f133d9388ca05f3d.setContent(html_fe979b55d01c774abbe71f55d6ea9e7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26f62a871b71cafaec709435ba1c05e4.bindPopup(popup_d20950bd25419ca4f133d9388ca05f3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff4b240dbb3b5ecb06daa23929b2817f = L.circleMarker(\\n\",\n       \"                [30.4551, 106.6388],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9119dbed4411a3f45965d40c38c021a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6859d3ebf1732a4ed515291d4ebf7d76 = $(`&lt;div id=&quot;html_6859d3ebf1732a4ed515291d4ebf7d76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6388             latitude:30.4551             PM2_5:30.78888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9119dbed4411a3f45965d40c38c021a.setContent(html_6859d3ebf1732a4ed515291d4ebf7d76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff4b240dbb3b5ecb06daa23929b2817f.bindPopup(popup_a9119dbed4411a3f45965d40c38c021a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9157ea4d341bc9d4429fc32be656a6c = L.circleMarker(\\n\",\n       \"                [31.8934, 102.2402],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9aaa34b58095632e9a9b8a15beb0bd44 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6b83f3c34e44080f8d4cb2e16b23d58 = $(`&lt;div id=&quot;html_a6b83f3c34e44080f8d4cb2e16b23d58&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2402             latitude:31.8934             PM2_5:3.856338028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9aaa34b58095632e9a9b8a15beb0bd44.setContent(html_a6b83f3c34e44080f8d4cb2e16b23d58);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9157ea4d341bc9d4429fc32be656a6c.bindPopup(popup_9aaa34b58095632e9a9b8a15beb0bd44)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1c9468277a52ef2cefd9f58529cc7a7 = L.circleMarker(\\n\",\n       \"                [38.8394, 117.457],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_288eafb1ae1ffa560431e8f645eceb74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10ce5f5e5517ed166e278c860129719c = $(`&lt;div id=&quot;html_10ce5f5e5517ed166e278c860129719c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.457             latitude:38.8394             PM2_5:48.95238095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_288eafb1ae1ffa560431e8f645eceb74.setContent(html_10ce5f5e5517ed166e278c860129719c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1c9468277a52ef2cefd9f58529cc7a7.bindPopup(popup_288eafb1ae1ffa560431e8f645eceb74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f668ffb2571d0cede47fbed76b188d7 = L.circleMarker(\\n\",\n       \"                [32.0144, 118.777],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_713c1cc81b65ed5b2b4cbfea00e6d289 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abc4f515f8d3c0f704c991448f25c577 = $(`&lt;div id=&quot;html_abc4f515f8d3c0f704c991448f25c577&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.777             latitude:32.0144             PM2_5:39.8255814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_713c1cc81b65ed5b2b4cbfea00e6d289.setContent(html_abc4f515f8d3c0f704c991448f25c577);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f668ffb2571d0cede47fbed76b188d7.bindPopup(popup_713c1cc81b65ed5b2b4cbfea00e6d289)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f146cd8ad84a2b982c224400930f4557 = L.circleMarker(\\n\",\n       \"                [27.8336, 113.251],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb394928172182e7b05358b4ef6878e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70611a186b6bb222953d1ad88f4cdedd = $(`&lt;div id=&quot;html_70611a186b6bb222953d1ad88f4cdedd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.251             latitude:27.8336             PM2_5:33.70142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb394928172182e7b05358b4ef6878e5.setContent(html_70611a186b6bb222953d1ad88f4cdedd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f146cd8ad84a2b982c224400930f4557.bindPopup(popup_fb394928172182e7b05358b4ef6878e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c148f4fcca885cc2ce2f4e5044346972 = L.circleMarker(\\n\",\n       \"                [22.8693, 112.844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2972948933fabe7c5bdc1f314014125b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5dc190fc3a70dac61f24c11b0464ff05 = $(`&lt;div id=&quot;html_5dc190fc3a70dac61f24c11b0464ff05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.844             latitude:22.8693             PM2_5:39.67787115             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2972948933fabe7c5bdc1f314014125b.setContent(html_5dc190fc3a70dac61f24c11b0464ff05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c148f4fcca885cc2ce2f4e5044346972.bindPopup(popup_2972948933fabe7c5bdc1f314014125b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50559dbea7eff8531c51a139d479e1fb = L.circleMarker(\\n\",\n       \"                [26.5697, 106.7164],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f87bdf97fa151bae31485d38f4eac2e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11c35feee608ff3565a3b07e94ee36a6 = $(`&lt;div id=&quot;html_11c35feee608ff3565a3b07e94ee36a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7164             latitude:26.5697             PM2_5:32.42655367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f87bdf97fa151bae31485d38f4eac2e.setContent(html_11c35feee608ff3565a3b07e94ee36a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50559dbea7eff8531c51a139d479e1fb.bindPopup(popup_6f87bdf97fa151bae31485d38f4eac2e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70d47500d99d0ec20c76aa89f327c85f = L.circleMarker(\\n\",\n       \"                [23.1572, 112.885],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05fee0bafb00947610ef96c5d6617740 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e86699736b62cf55ca597c5945170e67 = $(`&lt;div id=&quot;html_e86699736b62cf55ca597c5945170e67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.885             latitude:23.1572             PM2_5:38.81534091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05fee0bafb00947610ef96c5d6617740.setContent(html_e86699736b62cf55ca597c5945170e67);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70d47500d99d0ec20c76aa89f327c85f.bindPopup(popup_05fee0bafb00947610ef96c5d6617740)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec26e462991d3af27d50036084340f19 = L.circleMarker(\\n\",\n       \"                [30.6197, 114.2836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5480cc3a4a0e9fa472183cf0a702f6d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d7b132dc655c579c05b9e757464417b = $(`&lt;div id=&quot;html_1d7b132dc655c579c05b9e757464417b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2836             latitude:30.6197             PM2_5:48.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5480cc3a4a0e9fa472183cf0a702f6d5.setContent(html_1d7b132dc655c579c05b9e757464417b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec26e462991d3af27d50036084340f19.bindPopup(popup_5480cc3a4a0e9fa472183cf0a702f6d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c07fa16d4ea3c9529ac22909a3076b86 = L.circleMarker(\\n\",\n       \"                [33.6284, 116.9677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b70aa43b9e267b44bfe363429e3ab9dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b36a7b60bb1df1bfd11d71539192ee36 = $(`&lt;div id=&quot;html_b36a7b60bb1df1bfd11d71539192ee36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9677             latitude:33.6284             PM2_5:55.42916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b70aa43b9e267b44bfe363429e3ab9dd.setContent(html_b36a7b60bb1df1bfd11d71539192ee36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c07fa16d4ea3c9529ac22909a3076b86.bindPopup(popup_b70aa43b9e267b44bfe363429e3ab9dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7773bd2d857ff472b034ddcc685bd028 = L.circleMarker(\\n\",\n       \"                [22.5908, 114.263],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c48ffd9c76ea6007dce4e290edce16c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c7ce291f40ab4ec06c145c793ad8514 = $(`&lt;div id=&quot;html_2c7ce291f40ab4ec06c145c793ad8514&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.263             latitude:22.5908             PM2_5:22.57746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c48ffd9c76ea6007dce4e290edce16c.setContent(html_2c7ce291f40ab4ec06c145c793ad8514);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7773bd2d857ff472b034ddcc685bd028.bindPopup(popup_4c48ffd9c76ea6007dce4e290edce16c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_556d30dd631221ca80c6db94a388f8df = L.circleMarker(\\n\",\n       \"                [41.8336, 123.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e6ce45361b1a1f52820132c30bf0f8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f154704e1655e25cc1a466302b15bfb = $(`&lt;div id=&quot;html_0f154704e1655e25cc1a466302b15bfb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.542             latitude:41.8336             PM2_5:30.66997167             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e6ce45361b1a1f52820132c30bf0f8e.setContent(html_0f154704e1655e25cc1a466302b15bfb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_556d30dd631221ca80c6db94a388f8df.bindPopup(popup_2e6ce45361b1a1f52820132c30bf0f8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e311caccd42fd6a7dbce5880b81dfaec = L.circleMarker(\\n\",\n       \"                [34.3528, 107.3906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc5261012b20600935665592bdc9a9fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bde0b4fc329ee885c7e106cdd1fd986f = $(`&lt;div id=&quot;html_bde0b4fc329ee885c7e106cdd1fd986f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3906             latitude:34.3528             PM2_5:56.48472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc5261012b20600935665592bdc9a9fd.setContent(html_bde0b4fc329ee885c7e106cdd1fd986f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e311caccd42fd6a7dbce5880b81dfaec.bindPopup(popup_fc5261012b20600935665592bdc9a9fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4ba174a2a549c9ee61018ef8259a163 = L.circleMarker(\\n\",\n       \"                [38.817, 106.3394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_446c0b843f35f7caf81035bfbbbc0a10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23ce9151119968ed1a937767ca184eca = $(`&lt;div id=&quot;html_23ce9151119968ed1a937767ca184eca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3394             latitude:38.817             PM2_5:45.58882521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_446c0b843f35f7caf81035bfbbbc0a10.setContent(html_23ce9151119968ed1a937767ca184eca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4ba174a2a549c9ee61018ef8259a163.bindPopup(popup_446c0b843f35f7caf81035bfbbbc0a10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be395687bdcfaaf352490e0e9d081f25 = L.circleMarker(\\n\",\n       \"                [37.8561, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74492223518ae346d3a14bb5ff4146c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd8e3a0143231d9170615d15120213cf = $(`&lt;div id=&quot;html_cd8e3a0143231d9170615d15120213cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:37.8561             PM2_5:58.70972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74492223518ae346d3a14bb5ff4146c4.setContent(html_cd8e3a0143231d9170615d15120213cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be395687bdcfaaf352490e0e9d081f25.bindPopup(popup_74492223518ae346d3a14bb5ff4146c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59580618d4f24db55295f83b7b4e1a79 = L.circleMarker(\\n\",\n       \"                [28.6459, 121.273],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56f7ecacbd9877a63b276b76e86e252f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_545cda235c8752f196a11e7e43fe29db = $(`&lt;div id=&quot;html_545cda235c8752f196a11e7e43fe29db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.273             latitude:28.6459             PM2_5:28.00724638             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56f7ecacbd9877a63b276b76e86e252f.setContent(html_545cda235c8752f196a11e7e43fe29db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59580618d4f24db55295f83b7b4e1a79.bindPopup(popup_56f7ecacbd9877a63b276b76e86e252f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bd368e270a85db9951f0b5d51f32f73 = L.circleMarker(\\n\",\n       \"                [30.4576, 106.6303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9bde5c24d479f9e016a315b6df32c21 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e87828d8be1923e0d89c46ed87374b0 = $(`&lt;div id=&quot;html_9e87828d8be1923e0d89c46ed87374b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6303             latitude:30.4576             PM2_5:42.27513966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9bde5c24d479f9e016a315b6df32c21.setContent(html_9e87828d8be1923e0d89c46ed87374b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bd368e270a85db9951f0b5d51f32f73.bindPopup(popup_c9bde5c24d479f9e016a315b6df32c21)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e05b579c33a73264d248ea7c9a94a7d9 = L.circleMarker(\\n\",\n       \"                [34.5667, 117.732],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5aebc8ae98c812a05beaf8bea05397cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2c0421a479662928585698c98e4d040 = $(`&lt;div id=&quot;html_b2c0421a479662928585698c98e4d040&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.732             latitude:34.5667             PM2_5:62.16432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5aebc8ae98c812a05beaf8bea05397cb.setContent(html_b2c0421a479662928585698c98e4d040);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e05b579c33a73264d248ea7c9a94a7d9.bindPopup(popup_5aebc8ae98c812a05beaf8bea05397cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad1c62ac905029b39030332454f76dd8 = L.circleMarker(\\n\",\n       \"                [37.9358, 102.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f97f0f96b658e3d66383c58717c44b47 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9cb85e3190fc665c13bdf0f8957d9a9 = $(`&lt;div id=&quot;html_f9cb85e3190fc665c13bdf0f8957d9a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6469             latitude:37.9358             PM2_5:36.28194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f97f0f96b658e3d66383c58717c44b47.setContent(html_f9cb85e3190fc665c13bdf0f8957d9a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad1c62ac905029b39030332454f76dd8.bindPopup(popup_f97f0f96b658e3d66383c58717c44b47)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94f7053d6386b91a787be2a9f2e707e9 = L.circleMarker(\\n\",\n       \"                [31.89708, 121.1518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9965711d2e537c42f675031befa0458 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b7c8e99cc23c18863cab158bd8597c2 = $(`&lt;div id=&quot;html_2b7c8e99cc23c18863cab158bd8597c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1518             latitude:31.89708             PM2_5:35.28041543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9965711d2e537c42f675031befa0458.setContent(html_2b7c8e99cc23c18863cab158bd8597c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94f7053d6386b91a787be2a9f2e707e9.bindPopup(popup_a9965711d2e537c42f675031befa0458)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d464099d9189fd30a14c9115c47fece2 = L.circleMarker(\\n\",\n       \"                [27.6178, 113.865],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f0204669531b7062128bf2ece05247f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21b597523cac6590d77a052a00cae381 = $(`&lt;div id=&quot;html_21b597523cac6590d77a052a00cae381&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.865             latitude:27.6178             PM2_5:43.54583333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f0204669531b7062128bf2ece05247f.setContent(html_21b597523cac6590d77a052a00cae381);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d464099d9189fd30a14c9115c47fece2.bindPopup(popup_0f0204669531b7062128bf2ece05247f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f48951e934f85abcb078c8531c276df = L.circleMarker(\\n\",\n       \"                [25.0661, 117.0256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b7e07a95f506d86ce78fb110f67286d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e038e5c9dd94e824e715a31712d2975 = $(`&lt;div id=&quot;html_5e038e5c9dd94e824e715a31712d2975&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0256             latitude:25.0661             PM2_5:20.88194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b7e07a95f506d86ce78fb110f67286d.setContent(html_5e038e5c9dd94e824e715a31712d2975);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f48951e934f85abcb078c8531c276df.bindPopup(popup_3b7e07a95f506d86ce78fb110f67286d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7978de5d209ecb9b4c3b9ed05433bc60 = L.circleMarker(\\n\",\n       \"                [37.0967, 114.4821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13d54fb1951dd33b257683a4b998b57d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e48d369eb6e6e91c8b726510098199d = $(`&lt;div id=&quot;html_4e48d369eb6e6e91c8b726510098199d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4821             latitude:37.0967             PM2_5:74.24929972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13d54fb1951dd33b257683a4b998b57d.setContent(html_4e48d369eb6e6e91c8b726510098199d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7978de5d209ecb9b4c3b9ed05433bc60.bindPopup(popup_13d54fb1951dd33b257683a4b998b57d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ef65a645dfe72a25e2a619b960a3f3e = L.circleMarker(\\n\",\n       \"                [26.5689, 106.6971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e94319aee9b106b92f91541286c53f7b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aff7d53acc1a1e19c586874cc5095849 = $(`&lt;div id=&quot;html_aff7d53acc1a1e19c586874cc5095849&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6971             latitude:26.5689             PM2_5:30.99571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e94319aee9b106b92f91541286c53f7b.setContent(html_aff7d53acc1a1e19c586874cc5095849);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ef65a645dfe72a25e2a619b960a3f3e.bindPopup(popup_e94319aee9b106b92f91541286c53f7b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56e08d312d43289e38f168fd3a4dbeac = L.circleMarker(\\n\",\n       \"                [34.5004, 109.5049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1dbdfe170daa6b23b1a2f542b1ced583 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c153562bbc3b603ed35bf604756cd548 = $(`&lt;div id=&quot;html_c153562bbc3b603ed35bf604756cd548&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5049             latitude:34.5004             PM2_5:72.50142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1dbdfe170daa6b23b1a2f542b1ced583.setContent(html_c153562bbc3b603ed35bf604756cd548);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56e08d312d43289e38f168fd3a4dbeac.bindPopup(popup_1dbdfe170daa6b23b1a2f542b1ced583)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e37016fd46949050bdc9eea6441d1875 = L.circleMarker(\\n\",\n       \"                [30.9447, 118.7581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1306bb672e20e9cd8123bb253d8a5665 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d57a8039a6af5749da66cf9430a9b16 = $(`&lt;div id=&quot;html_3d57a8039a6af5749da66cf9430a9b16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7581             latitude:30.9447             PM2_5:42.49019608             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1306bb672e20e9cd8123bb253d8a5665.setContent(html_3d57a8039a6af5749da66cf9430a9b16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e37016fd46949050bdc9eea6441d1875.bindPopup(popup_1306bb672e20e9cd8123bb253d8a5665)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bacc8734285f80bc474174f05a2fea14 = L.circleMarker(\\n\",\n       \"                [30.7636, 106.0642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_deba9bd65867c9bc6f41a6210a99a024 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ba23ef64784477bc07d5c973d9d743e = $(`&lt;div id=&quot;html_9ba23ef64784477bc07d5c973d9d743e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0642             latitude:30.7636             PM2_5:51.33240997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_deba9bd65867c9bc6f41a6210a99a024.setContent(html_9ba23ef64784477bc07d5c973d9d743e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bacc8734285f80bc474174f05a2fea14.bindPopup(popup_deba9bd65867c9bc6f41a6210a99a024)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c3986556e01da9e57af13746ff5895e = L.circleMarker(\\n\",\n       \"                [25.2178, 110.2869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_389d7d8f76d938fb57f47bdab484cae9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60590ae07fcafdcf5182f1e9d9aa9fea = $(`&lt;div id=&quot;html_60590ae07fcafdcf5182f1e9d9aa9fea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2869             latitude:25.2178             PM2_5:37.9301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_389d7d8f76d938fb57f47bdab484cae9.setContent(html_60590ae07fcafdcf5182f1e9d9aa9fea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c3986556e01da9e57af13746ff5895e.bindPopup(popup_389d7d8f76d938fb57f47bdab484cae9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_232f1b89eadbdf727922083b882a03e0 = L.circleMarker(\\n\",\n       \"                [23.9011, 106.6103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90b83618c56d18d731031b68c8b221ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c2407f79c6a83a1455ab3c8814b0f53 = $(`&lt;div id=&quot;html_0c2407f79c6a83a1455ab3c8814b0f53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6103             latitude:23.9011             PM2_5:39.07282913             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90b83618c56d18d731031b68c8b221ef.setContent(html_0c2407f79c6a83a1455ab3c8814b0f53);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_232f1b89eadbdf727922083b882a03e0.bindPopup(popup_90b83618c56d18d731031b68c8b221ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a24691692f0a3033183e99b9f6a3eabd = L.circleMarker(\\n\",\n       \"                [38.1398, 114.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_93a480c6d19794fbf15a64d5b4ceb45b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5008036f23a6f52e3dacea7c7dde522 = $(`&lt;div id=&quot;html_d5008036f23a6f52e3dacea7c7dde522&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5019             latitude:38.1398             PM2_5:72.54901961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_93a480c6d19794fbf15a64d5b4ceb45b.setContent(html_d5008036f23a6f52e3dacea7c7dde522);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a24691692f0a3033183e99b9f6a3eabd.bindPopup(popup_93a480c6d19794fbf15a64d5b4ceb45b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_423320f1505be8efdc9550d43681a498 = L.circleMarker(\\n\",\n       \"                [31.2036, 121.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_670bc5899dca5e956410eee74da5bf10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1686e21c22d24241b8ddca20b5d8024f = $(`&lt;div id=&quot;html_1686e21c22d24241b8ddca20b5d8024f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.478             latitude:31.2036             PM2_5:43.17563739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_670bc5899dca5e956410eee74da5bf10.setContent(html_1686e21c22d24241b8ddca20b5d8024f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_423320f1505be8efdc9550d43681a498.bindPopup(popup_670bc5899dca5e956410eee74da5bf10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ea3613054a8210e346a26b3bab08b7b = L.circleMarker(\\n\",\n       \"                [31.882, 120.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_160a5dbee0863f9c58aac78b3189fccf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e32afb87932bb6eb558d5e011ea75739 = $(`&lt;div id=&quot;html_e32afb87932bb6eb558d5e011ea75739&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.55             latitude:31.882             PM2_5:44.14265537             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_160a5dbee0863f9c58aac78b3189fccf.setContent(html_e32afb87932bb6eb558d5e011ea75739);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ea3613054a8210e346a26b3bab08b7b.bindPopup(popup_160a5dbee0863f9c58aac78b3189fccf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57c908d966ccb0bddbd4096641a5a53e = L.circleMarker(\\n\",\n       \"                [40.1461, 124.3933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b33d798f6eb075a27db0e8051f60df2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc2bd7251760325c21a332b4a24971c7 = $(`&lt;div id=&quot;html_fc2bd7251760325c21a332b4a24971c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3933             latitude:40.1461             PM2_5:24.14164306             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b33d798f6eb075a27db0e8051f60df2.setContent(html_fc2bd7251760325c21a332b4a24971c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57c908d966ccb0bddbd4096641a5a53e.bindPopup(popup_3b33d798f6eb075a27db0e8051f60df2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9c262ac96695b30540fe7ee45a3bbe1 = L.circleMarker(\\n\",\n       \"                [39.6719, 106.8219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5f6a907cde5781ea6b22092c5f1ee18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25677f614ce0ccda5926f34161a040d1 = $(`&lt;div id=&quot;html_25677f614ce0ccda5926f34161a040d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8219             latitude:39.6719             PM2_5:43.65340909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5f6a907cde5781ea6b22092c5f1ee18.setContent(html_25677f614ce0ccda5926f34161a040d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9c262ac96695b30540fe7ee45a3bbe1.bindPopup(popup_a5f6a907cde5781ea6b22092c5f1ee18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0437e0edbcbe019dd7013a48bbc458de = L.circleMarker(\\n\",\n       \"                [33.575, 119.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4fe382fee75446310a5fbb08ce7b07bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e3077e51a48c6a236b6de564c6a7249 = $(`&lt;div id=&quot;html_2e3077e51a48c6a236b6de564c6a7249&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.007             latitude:33.575             PM2_5:45.62465374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4fe382fee75446310a5fbb08ce7b07bf.setContent(html_2e3077e51a48c6a236b6de564c6a7249);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0437e0edbcbe019dd7013a48bbc458de.bindPopup(popup_4fe382fee75446310a5fbb08ce7b07bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa2767ad60f76e8354672f3b3e7e4cdb = L.circleMarker(\\n\",\n       \"                [29.5983, 106.296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a53439d73046625bba96e6b0e427679 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01436fb77fb59d25635610830bd2aac4 = $(`&lt;div id=&quot;html_01436fb77fb59d25635610830bd2aac4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.296             latitude:29.5983             PM2_5:37.21030641             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a53439d73046625bba96e6b0e427679.setContent(html_01436fb77fb59d25635610830bd2aac4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa2767ad60f76e8354672f3b3e7e4cdb.bindPopup(popup_3a53439d73046625bba96e6b0e427679)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29490a955cf7b9f469f73a59274d43eb = L.circleMarker(\\n\",\n       \"                [43.7256, 126.6772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c055626c51b53641eea46fdd25e1e55 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76b58a7a840541a078bb5906a76b1df7 = $(`&lt;div id=&quot;html_76b58a7a840541a078bb5906a76b1df7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6772             latitude:43.7256             PM2_5:29.62780899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c055626c51b53641eea46fdd25e1e55.setContent(html_76b58a7a840541a078bb5906a76b1df7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29490a955cf7b9f469f73a59274d43eb.bindPopup(popup_4c055626c51b53641eea46fdd25e1e55)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83381aca63c5bb8e0e23fa4c54636ef5 = L.circleMarker(\\n\",\n       \"                [45.6033, 84.8861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0be89b2c1f27a69489d44e8bd92f598a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a81fca33482aa89b6c1911c46625dda = $(`&lt;div id=&quot;html_6a81fca33482aa89b6c1911c46625dda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8861             latitude:45.6033             PM2_5:24.26825843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0be89b2c1f27a69489d44e8bd92f598a.setContent(html_6a81fca33482aa89b6c1911c46625dda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83381aca63c5bb8e0e23fa4c54636ef5.bindPopup(popup_0be89b2c1f27a69489d44e8bd92f598a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05119cdab340cd3dbc5896cc99a2385d = L.circleMarker(\\n\",\n       \"                [30.4519, 114.8858],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65c2144ddab2318ef763394ba37be405 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bcc6bd14acfaf0452b16e0b1203201f1 = $(`&lt;div id=&quot;html_bcc6bd14acfaf0452b16e0b1203201f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8858             latitude:30.4519             PM2_5:45.08988764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65c2144ddab2318ef763394ba37be405.setContent(html_bcc6bd14acfaf0452b16e0b1203201f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05119cdab340cd3dbc5896cc99a2385d.bindPopup(popup_65c2144ddab2318ef763394ba37be405)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fa2bf0516de21ff476cb50711742479 = L.circleMarker(\\n\",\n       \"                [43.9167, 125.323],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4eaea50a3f98133a49c59dcbd755c680 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea065cf26c2b9a86cde71a905e1e4bf1 = $(`&lt;div id=&quot;html_ea065cf26c2b9a86cde71a905e1e4bf1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.323             latitude:43.9167             PM2_5:30.47464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4eaea50a3f98133a49c59dcbd755c680.setContent(html_ea065cf26c2b9a86cde71a905e1e4bf1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fa2bf0516de21ff476cb50711742479.bindPopup(popup_4eaea50a3f98133a49c59dcbd755c680)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71510298b56210e9aa66842ff3567bbf = L.circleMarker(\\n\",\n       \"                [36.1855, 113.0844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c3e14c2f43830a4eebb397dd7323cdf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3956cd4f7f9a1bc47cabce2be47e267f = $(`&lt;div id=&quot;html_3956cd4f7f9a1bc47cabce2be47e267f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0844444             latitude:36.1855             PM2_5:72.24509804             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c3e14c2f43830a4eebb397dd7323cdf.setContent(html_3956cd4f7f9a1bc47cabce2be47e267f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71510298b56210e9aa66842ff3567bbf.bindPopup(popup_8c3e14c2f43830a4eebb397dd7323cdf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_faa85e9fb69b095463fa972127a11cb4 = L.circleMarker(\\n\",\n       \"                [35.303, 113.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78e6c6933ff8ce09793a8a7b74f7b1fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6551e387681c4ce91c114e7cc0da6582 = $(`&lt;div id=&quot;html_6551e387681c4ce91c114e7cc0da6582&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.883             latitude:35.303             PM2_5:53.45658263             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78e6c6933ff8ce09793a8a7b74f7b1fb.setContent(html_6551e387681c4ce91c114e7cc0da6582);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_faa85e9fb69b095463fa972127a11cb4.bindPopup(popup_78e6c6933ff8ce09793a8a7b74f7b1fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c43c38047468bdb64acb4dbb795dadd = L.circleMarker(\\n\",\n       \"                [34.7745, 117.5852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a0860537e4c3534714ec05f38013cf0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f469ac527cd88b22547d96b02f3b9be = $(`&lt;div id=&quot;html_5f469ac527cd88b22547d96b02f3b9be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5852             latitude:34.7745             PM2_5:49.32633053             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a0860537e4c3534714ec05f38013cf0.setContent(html_5f469ac527cd88b22547d96b02f3b9be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c43c38047468bdb64acb4dbb795dadd.bindPopup(popup_6a0860537e4c3534714ec05f38013cf0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e18b203d3f957438feba5b17fd1bfb1 = L.circleMarker(\\n\",\n       \"                [44.561, 129.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_360cfb80044deaf6f35b8160a99530dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19ae84c54fd3fe7ab460a59d1a55b17a = $(`&lt;div id=&quot;html_19ae84c54fd3fe7ab460a59d1a55b17a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.61             latitude:44.561             PM2_5:25.8449848             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_360cfb80044deaf6f35b8160a99530dc.setContent(html_19ae84c54fd3fe7ab460a59d1a55b17a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e18b203d3f957438feba5b17fd1bfb1.bindPopup(popup_360cfb80044deaf6f35b8160a99530dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ad465a580d5753bdc0f6325688322e2 = L.circleMarker(\\n\",\n       \"                [22.3708, 107.3701],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cdbf8c1f3524ff5813dcafa6816bdea3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bfa6c085187ab44dcc837d842293f2f6 = $(`&lt;div id=&quot;html_bfa6c085187ab44dcc837d842293f2f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3701             latitude:22.3708             PM2_5:30.14730878             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cdbf8c1f3524ff5813dcafa6816bdea3.setContent(html_bfa6c085187ab44dcc837d842293f2f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ad465a580d5753bdc0f6325688322e2.bindPopup(popup_cdbf8c1f3524ff5813dcafa6816bdea3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_866bbd93e001a1a1fd5a247a0faad4ee = L.circleMarker(\\n\",\n       \"                [31.381, 120.999],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16e17de3e2be152d5a4e9d66482edce3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a688d336e61c8fa4576bbdfca6ab6535 = $(`&lt;div id=&quot;html_a688d336e61c8fa4576bbdfca6ab6535&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.999             latitude:31.381             PM2_5:37.6265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16e17de3e2be152d5a4e9d66482edce3.setContent(html_a688d336e61c8fa4576bbdfca6ab6535);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_866bbd93e001a1a1fd5a247a0faad4ee.bindPopup(popup_16e17de3e2be152d5a4e9d66482edce3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef3be5d34b1a567f525c4628942868e1 = L.circleMarker(\\n\",\n       \"                [27.3125, 105.2864],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e8f72eb9e3658c8c8dea7056247ca7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4bbda0a3ccdb230d2c2a94fe47a67fd0 = $(`&lt;div id=&quot;html_4bbda0a3ccdb230d2c2a94fe47a67fd0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.2864             latitude:27.3125             PM2_5:31.51949861             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e8f72eb9e3658c8c8dea7056247ca7f.setContent(html_4bbda0a3ccdb230d2c2a94fe47a67fd0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef3be5d34b1a567f525c4628942868e1.bindPopup(popup_6e8f72eb9e3658c8c8dea7056247ca7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1f3fc6d2482715d97406ce158c79567 = L.circleMarker(\\n\",\n       \"                [23.4168, 103.386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d9517b4ed0e8f4a7daf5491a0058843 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b34f32edb20a49fa9adad8c67b028dc1 = $(`&lt;div id=&quot;html_b34f32edb20a49fa9adad8c67b028dc1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.386             latitude:23.4168             PM2_5:27.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d9517b4ed0e8f4a7daf5491a0058843.setContent(html_b34f32edb20a49fa9adad8c67b028dc1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1f3fc6d2482715d97406ce158c79567.bindPopup(popup_5d9517b4ed0e8f4a7daf5491a0058843)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84edebeddafa480384a48b1668929f98 = L.circleMarker(\\n\",\n       \"                [41.1556, 122.0247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6d4bc0aaf4bd3cbdaf935118ef2db432 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e3e4de198f6052ee1bbc42fa8304eeb = $(`&lt;div id=&quot;html_2e3e4de198f6052ee1bbc42fa8304eeb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0247             latitude:41.1556             PM2_5:32.5377095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6d4bc0aaf4bd3cbdaf935118ef2db432.setContent(html_2e3e4de198f6052ee1bbc42fa8304eeb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84edebeddafa480384a48b1668929f98.bindPopup(popup_6d4bc0aaf4bd3cbdaf935118ef2db432)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74137d785a36c7d0ad69d6dad54cdacb = L.circleMarker(\\n\",\n       \"                [37.177, 119.941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4fe920602e9396d517f73dc7ae6927c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2c2979c027b65271c04eb762f91a06c = $(`&lt;div id=&quot;html_f2c2979c027b65271c04eb762f91a06c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.941             latitude:37.177             PM2_5:28.97706422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4fe920602e9396d517f73dc7ae6927c.setContent(html_f2c2979c027b65271c04eb762f91a06c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74137d785a36c7d0ad69d6dad54cdacb.bindPopup(popup_b4fe920602e9396d517f73dc7ae6927c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f32f63779ad05440f936429ba72f64f9 = L.circleMarker(\\n\",\n       \"                [27.8014, 114.3806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb163b62204f1a47d3af455ba6c4892e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00652c51bb9baf7355722a8994b32604 = $(`&lt;div id=&quot;html_00652c51bb9baf7355722a8994b32604&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3806             latitude:27.8014             PM2_5:50.74166667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb163b62204f1a47d3af455ba6c4892e.setContent(html_00652c51bb9baf7355722a8994b32604);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f32f63779ad05440f936429ba72f64f9.bindPopup(popup_bb163b62204f1a47d3af455ba6c4892e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c73c2aaaf02ae2714111eabf87ea3c78 = L.circleMarker(\\n\",\n       \"                [32.6389, 110.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d70c78eae78223bfa2ffc4a273f173fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99be61cad385f7d324b62ba129f937fb = $(`&lt;div id=&quot;html_99be61cad385f7d324b62ba129f937fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.7258             latitude:32.6389             PM2_5:45.01416431             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d70c78eae78223bfa2ffc4a273f173fe.setContent(html_99be61cad385f7d324b62ba129f937fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c73c2aaaf02ae2714111eabf87ea3c78.bindPopup(popup_d70c78eae78223bfa2ffc4a273f173fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4262cce07285e7b1d682376c06f8d94d = L.circleMarker(\\n\",\n       \"                [24.428, 98.5842],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32ad9dc4bf5211771b6dd1289a50e824 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95a1d7fd1dd5c67f3e606a9a0dd59c30 = $(`&lt;div id=&quot;html_95a1d7fd1dd5c67f3e606a9a0dd59c30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5842             latitude:24.428             PM2_5:38.13610315             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32ad9dc4bf5211771b6dd1289a50e824.setContent(html_95a1d7fd1dd5c67f3e606a9a0dd59c30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4262cce07285e7b1d682376c06f8d94d.bindPopup(popup_32ad9dc4bf5211771b6dd1289a50e824)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f026676e772a46d9982fadc862158d62 = L.circleMarker(\\n\",\n       \"                [25.8333, 114.9322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5de9408dcf761b940a321e8ce88dc3ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2d940fc7a2603d4dd92d6a553908a31 = $(`&lt;div id=&quot;html_b2d940fc7a2603d4dd92d6a553908a31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9322             latitude:25.8333             PM2_5:44.84497207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5de9408dcf761b940a321e8ce88dc3ec.setContent(html_b2d940fc7a2603d4dd92d6a553908a31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f026676e772a46d9982fadc862158d62.bindPopup(popup_5de9408dcf761b940a321e8ce88dc3ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93aabfb64e46ae868fafb772518780eb = L.circleMarker(\\n\",\n       \"                [33.567, 114.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e284eb0847f5491dd5cb38ea5f8609b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e843163f0a4f1edbb2317cc647ab4879 = $(`&lt;div id=&quot;html_e843163f0a4f1edbb2317cc647ab4879&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.056             latitude:33.567             PM2_5:55.5480226             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e284eb0847f5491dd5cb38ea5f8609b.setContent(html_e843163f0a4f1edbb2317cc647ab4879);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93aabfb64e46ae868fafb772518780eb.bindPopup(popup_9e284eb0847f5491dd5cb38ea5f8609b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c41c416a5d5331d57ed5f12da64afbd1 = L.circleMarker(\\n\",\n       \"                [33.0014, 97.0],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc99ff9b8dbc14db3255bc78897e6211 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9a8b7017e82a76151bcd0392a44c77be = $(`&lt;div id=&quot;html_9a8b7017e82a76151bcd0392a44c77be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.0             latitude:33.0014             PM2_5:17.88095238             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc99ff9b8dbc14db3255bc78897e6211.setContent(html_9a8b7017e82a76151bcd0392a44c77be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c41c416a5d5331d57ed5f12da64afbd1.bindPopup(popup_fc99ff9b8dbc14db3255bc78897e6211)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_164036ceba61b508bb88f8e6b9a917bd = L.circleMarker(\\n\",\n       \"                [26.2378, 117.6028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b654adefe0372d6d2f94e2dc68fd78c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e197920bc895f47ee53d472dbce08ed6 = $(`&lt;div id=&quot;html_e197920bc895f47ee53d472dbce08ed6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6028             latitude:26.2378             PM2_5:24.41620112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b654adefe0372d6d2f94e2dc68fd78c.setContent(html_e197920bc895f47ee53d472dbce08ed6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_164036ceba61b508bb88f8e6b9a917bd.bindPopup(popup_3b654adefe0372d6d2f94e2dc68fd78c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3aa8bc5ffed0d1ad8d36a7da4c5f8e1b = L.circleMarker(\\n\",\n       \"                [41.7561, 123.535],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9b23ec3657120780a107c782c60535a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1ce024ce06ec2483ead32793c414e12 = $(`&lt;div id=&quot;html_e1ce024ce06ec2483ead32793c414e12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.535             latitude:41.7561             PM2_5:38.46111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9b23ec3657120780a107c782c60535a.setContent(html_e1ce024ce06ec2483ead32793c414e12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3aa8bc5ffed0d1ad8d36a7da4c5f8e1b.bindPopup(popup_c9b23ec3657120780a107c782c60535a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a2b77d496e8ae8c49951fc42ed4425b = L.circleMarker(\\n\",\n       \"                [25.0836, 102.728],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41420ae07d24bcb996e9d77b0adabcf2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ddd50ebfd821702229fc9b3baa190477 = $(`&lt;div id=&quot;html_ddd50ebfd821702229fc9b3baa190477&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.728             latitude:25.0836             PM2_5:21.87534626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41420ae07d24bcb996e9d77b0adabcf2.setContent(html_ddd50ebfd821702229fc9b3baa190477);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a2b77d496e8ae8c49951fc42ed4425b.bindPopup(popup_41420ae07d24bcb996e9d77b0adabcf2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc110d871f526bdf28c518d7ec1ab57b = L.circleMarker(\\n\",\n       \"                [34.3547, 107.1431],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9dccb83ec446e96e08514f60ee1fe57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5af4fee90f384d759d8dba8d1a686ff8 = $(`&lt;div id=&quot;html_5af4fee90f384d759d8dba8d1a686ff8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1431             latitude:34.3547             PM2_5:50.70172911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9dccb83ec446e96e08514f60ee1fe57.setContent(html_5af4fee90f384d759d8dba8d1a686ff8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc110d871f526bdf28c518d7ec1ab57b.bindPopup(popup_b9dccb83ec446e96e08514f60ee1fe57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6cc8177c44db4615d63f5d11e9faa43f = L.circleMarker(\\n\",\n       \"                [39.7153, 76.1861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4fa14479709a455769a3d2e573374b37 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_feea8e737efebd8273b2e100ededb60b = $(`&lt;div id=&quot;html_feea8e737efebd8273b2e100ededb60b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:76.1861             latitude:39.7153             PM2_5:63.63700565             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4fa14479709a455769a3d2e573374b37.setContent(html_feea8e737efebd8273b2e100ededb60b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6cc8177c44db4615d63f5d11e9faa43f.bindPopup(popup_4fa14479709a455769a3d2e573374b37)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc55c71b3178039c5eb02b8bf8876807 = L.circleMarker(\\n\",\n       \"                [24.9617, 118.6108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_795ba9ccb7469f28ee40c9b45e5c6049 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_516516c6612bdb83a10a2270afa1f725 = $(`&lt;div id=&quot;html_516516c6612bdb83a10a2270afa1f725&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6108             latitude:24.9617             PM2_5:25.4             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_795ba9ccb7469f28ee40c9b45e5c6049.setContent(html_516516c6612bdb83a10a2270afa1f725);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc55c71b3178039c5eb02b8bf8876807.bindPopup(popup_795ba9ccb7469f28ee40c9b45e5c6049)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7d0fc119ee393aa85c208e9ba8d8dd3 = L.circleMarker(\\n\",\n       \"                [36.283, 120.008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_482803b25abf61ac1815310d2e9bbf4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e6b2d3f36ec7eb0d39a8dedd14f7e10 = $(`&lt;div id=&quot;html_6e6b2d3f36ec7eb0d39a8dedd14f7e10&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.008             latitude:36.283             PM2_5:38.38483146             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_482803b25abf61ac1815310d2e9bbf4b.setContent(html_6e6b2d3f36ec7eb0d39a8dedd14f7e10);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7d0fc119ee393aa85c208e9ba8d8dd3.bindPopup(popup_482803b25abf61ac1815310d2e9bbf4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d61c96dab3432d31cf9f5850c75d9881 = L.circleMarker(\\n\",\n       \"                [22.5811, 113.074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8478d3858ee6c66984ba5b6d58031769 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3762adb0d8e5935109eea283f5bace6 = $(`&lt;div id=&quot;html_d3762adb0d8e5935109eea283f5bace6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.074             latitude:22.5811             PM2_5:35.29722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8478d3858ee6c66984ba5b6d58031769.setContent(html_d3762adb0d8e5935109eea283f5bace6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d61c96dab3432d31cf9f5850c75d9881.bindPopup(popup_8478d3858ee6c66984ba5b6d58031769)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42210ff857e0010d571a29c53f74704f = L.circleMarker(\\n\",\n       \"                [29.8264, 106.424],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_179e4abcde14169ea59b1e4571b58290 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b23690de1a985b95005ce4211d937fc6 = $(`&lt;div id=&quot;html_b23690de1a985b95005ce4211d937fc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.424             latitude:29.8264             PM2_5:40.68156425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_179e4abcde14169ea59b1e4571b58290.setContent(html_b23690de1a985b95005ce4211d937fc6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42210ff857e0010d571a29c53f74704f.bindPopup(popup_179e4abcde14169ea59b1e4571b58290)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93dbd0921d8e7ae5c954d113ff2aa1a0 = L.circleMarker(\\n\",\n       \"                [43.8358, 126.5844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_849ab540cc301c89e8875706d07f8a50 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_419671b72b21a5e0795595350381fc4f = $(`&lt;div id=&quot;html_419671b72b21a5e0795595350381fc4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5844             latitude:43.8358             PM2_5:31.67275281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_849ab540cc301c89e8875706d07f8a50.setContent(html_419671b72b21a5e0795595350381fc4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93dbd0921d8e7ae5c954d113ff2aa1a0.bindPopup(popup_849ab540cc301c89e8875706d07f8a50)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1950be9fe96b67cb99c4be2d46a7e235 = L.circleMarker(\\n\",\n       \"                [29.9919, 120.605],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b96d99e964ba8ec98b9b0b5abace39e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c3eb49b2e66161da75ca2e7747b8c65 = $(`&lt;div id=&quot;html_4c3eb49b2e66161da75ca2e7747b8c65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.605             latitude:29.9919             PM2_5:42.86938202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b96d99e964ba8ec98b9b0b5abace39e7.setContent(html_4c3eb49b2e66161da75ca2e7747b8c65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1950be9fe96b67cb99c4be2d46a7e235.bindPopup(popup_b96d99e964ba8ec98b9b0b5abace39e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf5f2b28b886449c238718c743657941 = L.circleMarker(\\n\",\n       \"                [44.0114, 87.2997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87b3424b3b1899de15a7656d6833a5d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_342745d3e67ec9de31185a44dae5b683 = $(`&lt;div id=&quot;html_342745d3e67ec9de31185a44dae5b683&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2997             latitude:44.0114             PM2_5:73.18696884             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87b3424b3b1899de15a7656d6833a5d1.setContent(html_342745d3e67ec9de31185a44dae5b683);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf5f2b28b886449c238718c743657941.bindPopup(popup_87b3424b3b1899de15a7656d6833a5d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66583c0bb19a22fc6f427ccfe237b6bf = L.circleMarker(\\n\",\n       \"                [35.5102, 102.0199],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd9b28bd2b3d6eb81be25b4e2d368e35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a700b71b7d8d3d5a7ae8fbdf2d919b89 = $(`&lt;div id=&quot;html_a700b71b7d8d3d5a7ae8fbdf2d919b89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.0199             latitude:35.5102             PM2_5:29.07799443             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd9b28bd2b3d6eb81be25b4e2d368e35.setContent(html_a700b71b7d8d3d5a7ae8fbdf2d919b89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66583c0bb19a22fc6f427ccfe237b6bf.bindPopup(popup_dd9b28bd2b3d6eb81be25b4e2d368e35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_394b2c65b997a8a3b7fb6120055243f6 = L.circleMarker(\\n\",\n       \"                [31.7133, 118.6439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6b3b2a0e5d90ad89129b05e6386f260 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a49325edfb322812ecd2fc6f50d95390 = $(`&lt;div id=&quot;html_a49325edfb322812ecd2fc6f50d95390&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6439             latitude:31.7133             PM2_5:57.34135977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6b3b2a0e5d90ad89129b05e6386f260.setContent(html_a49325edfb322812ecd2fc6f50d95390);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_394b2c65b997a8a3b7fb6120055243f6.bindPopup(popup_b6b3b2a0e5d90ad89129b05e6386f260)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_738963e94104cacb27139c2b891ca431 = L.circleMarker(\\n\",\n       \"                [36.1942, 117.0881],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d90886714adeb5fa64b1470e2c18d01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_300094e6d98b8f300015da48c11c2f35 = $(`&lt;div id=&quot;html_300094e6d98b8f300015da48c11c2f35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0881             latitude:36.1942             PM2_5:48.14542936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d90886714adeb5fa64b1470e2c18d01.setContent(html_300094e6d98b8f300015da48c11c2f35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_738963e94104cacb27139c2b891ca431.bindPopup(popup_0d90886714adeb5fa64b1470e2c18d01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9f43f99ba52c52ea948ba0ae5a1de39 = L.circleMarker(\\n\",\n       \"                [28.56, 112.3439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ebbcbb518a21fcb1b764eb16921f4536 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71935261b1edbf4acd18f2b0942aa9c9 = $(`&lt;div id=&quot;html_71935261b1edbf4acd18f2b0942aa9c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3439             latitude:28.56             PM2_5:39.57022472             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ebbcbb518a21fcb1b764eb16921f4536.setContent(html_71935261b1edbf4acd18f2b0942aa9c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9f43f99ba52c52ea948ba0ae5a1de39.bindPopup(popup_ebbcbb518a21fcb1b764eb16921f4536)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b316d9c4475c9b1394c898b59e6a763 = L.circleMarker(\\n\",\n       \"                [31.0386, 112.2211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_808eaefa48f83310fc5a89ed585e08aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f60240c0e70178b51ba897c13dc92f9b = $(`&lt;div id=&quot;html_f60240c0e70178b51ba897c13dc92f9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2211             latitude:31.0386             PM2_5:54.21848739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_808eaefa48f83310fc5a89ed585e08aa.setContent(html_f60240c0e70178b51ba897c13dc92f9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b316d9c4475c9b1394c898b59e6a763.bindPopup(popup_808eaefa48f83310fc5a89ed585e08aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2a1785cac2aefbb646ec2d39764a5a8 = L.circleMarker(\\n\",\n       \"                [32.1383, 114.0614],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d2471af3803c6d8219b38d2e42f53ea5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca8d3e3b89ba78ba2b79add856b9c23b = $(`&lt;div id=&quot;html_ca8d3e3b89ba78ba2b79add856b9c23b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0614             latitude:32.1383             PM2_5:51.8125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d2471af3803c6d8219b38d2e42f53ea5.setContent(html_ca8d3e3b89ba78ba2b79add856b9c23b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2a1785cac2aefbb646ec2d39764a5a8.bindPopup(popup_d2471af3803c6d8219b38d2e42f53ea5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91764dd746bbd773068a32675e030d45 = L.circleMarker(\\n\",\n       \"                [36.67, 116.93],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18a7042b04dd839104d2ccf2056203c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7caef5eb6ae88f2a3899ba4e90e555c = $(`&lt;div id=&quot;html_c7caef5eb6ae88f2a3899ba4e90e555c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.93             latitude:36.67             PM2_5:51.10704225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18a7042b04dd839104d2ccf2056203c6.setContent(html_c7caef5eb6ae88f2a3899ba4e90e555c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91764dd746bbd773068a32675e030d45.bindPopup(popup_18a7042b04dd839104d2ccf2056203c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da1561861ffdca242f7958ecfdda148f = L.circleMarker(\\n\",\n       \"                [28.6542, 121.419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_546f06a25c6b12503a2ab959e605358c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1609088451d4c260c6b54f3fcb7f2218 = $(`&lt;div id=&quot;html_1609088451d4c260c6b54f3fcb7f2218&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.419             latitude:28.6542             PM2_5:31.10814607             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_546f06a25c6b12503a2ab959e605358c.setContent(html_1609088451d4c260c6b54f3fcb7f2218);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da1561861ffdca242f7958ecfdda148f.bindPopup(popup_546f06a25c6b12503a2ab959e605358c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8853c943d13655f9585c8e274b41cd7 = L.circleMarker(\\n\",\n       \"                [28.2642, 117.0564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6cb0e1bb4195ac63a9bc04652278b057 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4c496a34a6acc2f264073973620aab9 = $(`&lt;div id=&quot;html_e4c496a34a6acc2f264073973620aab9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0564             latitude:28.2642             PM2_5:34.52683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6cb0e1bb4195ac63a9bc04652278b057.setContent(html_e4c496a34a6acc2f264073973620aab9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8853c943d13655f9585c8e274b41cd7.bindPopup(popup_6cb0e1bb4195ac63a9bc04652278b057)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ad554805c7c747316a50405aa3a0298 = L.circleMarker(\\n\",\n       \"                [34.6511, 112.3939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a107c1a7a5e1380512723db20525f61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f389394bb212cfea648ab3ac988972f9 = $(`&lt;div id=&quot;html_f389394bb212cfea648ab3ac988972f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3939             latitude:34.6511             PM2_5:64.64325843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a107c1a7a5e1380512723db20525f61.setContent(html_f389394bb212cfea648ab3ac988972f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ad554805c7c747316a50405aa3a0298.bindPopup(popup_8a107c1a7a5e1380512723db20525f61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba6a89e05fab8d6bfd9a32c61b4e763b = L.circleMarker(\\n\",\n       \"                [25.067, 102.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41c97c9b978fbd8fd644c055551eae4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84482459655a3b2b701fb46505654f8c = $(`&lt;div id=&quot;html_84482459655a3b2b701fb46505654f8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.681             latitude:25.067             PM2_5:25.84722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41c97c9b978fbd8fd644c055551eae4a.setContent(html_84482459655a3b2b701fb46505654f8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba6a89e05fab8d6bfd9a32c61b4e763b.bindPopup(popup_41c97c9b978fbd8fd644c055551eae4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76c87aafaef6b23521d18421d2e73589 = L.circleMarker(\\n\",\n       \"                [23.1331, 113.26],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6716859c59e7126cd187cb523d406c5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_092e50d0ea848a0ee22599ddb972b861 = $(`&lt;div id=&quot;html_092e50d0ea848a0ee22599ddb972b861&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.26             latitude:23.1331             PM2_5:35.90896359             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6716859c59e7126cd187cb523d406c5d.setContent(html_092e50d0ea848a0ee22599ddb972b861);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76c87aafaef6b23521d18421d2e73589.bindPopup(popup_6716859c59e7126cd187cb523d406c5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8acb57246471cda4378dba4835d7a79a = L.circleMarker(\\n\",\n       \"                [23.06, 113.7480556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25999fa41d6459174f9211b863662b8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d6c251c3a8bb0c9360c7b45d871bd6d = $(`&lt;div id=&quot;html_8d6c251c3a8bb0c9360c7b45d871bd6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7480556             latitude:23.06             PM2_5:39.63445378             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25999fa41d6459174f9211b863662b8e.setContent(html_8d6c251c3a8bb0c9360c7b45d871bd6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8acb57246471cda4378dba4835d7a79a.bindPopup(popup_25999fa41d6459174f9211b863662b8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_304d47c333d2c05166c489cc557f2079 = L.circleMarker(\\n\",\n       \"                [32.8928, 115.8275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1670300a9d723164e29ecf2dff6aa751 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e404b39bea85f39be4bfdfe8dacc1667 = $(`&lt;div id=&quot;html_e404b39bea85f39be4bfdfe8dacc1667&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8275             latitude:32.8928             PM2_5:51.21148459             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1670300a9d723164e29ecf2dff6aa751.setContent(html_e404b39bea85f39be4bfdfe8dacc1667);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_304d47c333d2c05166c489cc557f2079.bindPopup(popup_1670300a9d723164e29ecf2dff6aa751)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aae21256286bbd9c802707fd08a4c869 = L.circleMarker(\\n\",\n       \"                [27.6231, 113.8447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5a970fcbd4127b0f3850df2b57cde35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8aa7fa5a907f9cd783fb7fa8abefbe8a = $(`&lt;div id=&quot;html_8aa7fa5a907f9cd783fb7fa8abefbe8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8447             latitude:27.6231             PM2_5:47.67086835             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5a970fcbd4127b0f3850df2b57cde35.setContent(html_8aa7fa5a907f9cd783fb7fa8abefbe8a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aae21256286bbd9c802707fd08a4c869.bindPopup(popup_c5a970fcbd4127b0f3850df2b57cde35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20480466045febaa71d1e1bdc84c6a9d = L.circleMarker(\\n\",\n       \"                [36.2403, 120.4001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a401906f74b92fb340dff4743183f09 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3629381a9576c7693cf81dad2d3d9077 = $(`&lt;div id=&quot;html_3629381a9576c7693cf81dad2d3d9077&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4001             latitude:36.2403             PM2_5:30.67             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a401906f74b92fb340dff4743183f09.setContent(html_3629381a9576c7693cf81dad2d3d9077);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20480466045febaa71d1e1bdc84c6a9d.bindPopup(popup_5a401906f74b92fb340dff4743183f09)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e443904199f9b0b3d73536bf825c51fd = L.circleMarker(\\n\",\n       \"                [31.8531, 106.7594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa3988af90514d4be8caf952fd3be7a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f95d9a8dc369c3790675409c909c645 = $(`&lt;div id=&quot;html_7f95d9a8dc369c3790675409c909c645&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7594             latitude:31.8531             PM2_5:34.7867036             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa3988af90514d4be8caf952fd3be7a6.setContent(html_7f95d9a8dc369c3790675409c909c645);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e443904199f9b0b3d73536bf825c51fd.bindPopup(popup_fa3988af90514d4be8caf952fd3be7a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_abd4103ff36f46277c426c5137110270 = L.circleMarker(\\n\",\n       \"                [41.7192, 86.2022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9fa5dfbfbe2324e7ecb1f5a6f048cccd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9a78e4d17d0e071a82de98c9e5fb732 = $(`&lt;div id=&quot;html_c9a78e4d17d0e071a82de98c9e5fb732&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.2022             latitude:41.7192             PM2_5:52.89481268             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9fa5dfbfbe2324e7ecb1f5a6f048cccd.setContent(html_c9a78e4d17d0e071a82de98c9e5fb732);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_abd4103ff36f46277c426c5137110270.bindPopup(popup_9fa5dfbfbe2324e7ecb1f5a6f048cccd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_441da77e33793d977c544b90664763e2 = L.circleMarker(\\n\",\n       \"                [34.2324, 108.94],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e29936a95279d5d101dfee4161aabef7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d6cdd73ba708e098b8c148ca7bbfe13 = $(`&lt;div id=&quot;html_8d6cdd73ba708e098b8c148ca7bbfe13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.94             latitude:34.2324             PM2_5:66.77361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e29936a95279d5d101dfee4161aabef7.setContent(html_8d6cdd73ba708e098b8c148ca7bbfe13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_441da77e33793d977c544b90664763e2.bindPopup(popup_e29936a95279d5d101dfee4161aabef7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64f92299cf8d1f960bdf8779bf38ff5c = L.circleMarker(\\n\",\n       \"                [31.7694, 120.0469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c65eaf95454be855df0da894323c65a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac2160ee565284355c25e1f4e4dce394 = $(`&lt;div id=&quot;html_ac2160ee565284355c25e1f4e4dce394&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.0469             latitude:31.7694             PM2_5:46.64772727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c65eaf95454be855df0da894323c65a.setContent(html_ac2160ee565284355c25e1f4e4dce394);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64f92299cf8d1f960bdf8779bf38ff5c.bindPopup(popup_2c65eaf95454be855df0da894323c65a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94521d71f06cda979a5c03ef8967d229 = L.circleMarker(\\n\",\n       \"                [46.3991, 124.8847],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a17ba6c76fa65f519e98be8b993daccd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eebbc66db3ee86b825dda0759b863607 = $(`&lt;div id=&quot;html_eebbc66db3ee86b825dda0759b863607&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8847             latitude:46.3991             PM2_5:22.25633803             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a17ba6c76fa65f519e98be8b993daccd.setContent(html_eebbc66db3ee86b825dda0759b863607);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94521d71f06cda979a5c03ef8967d229.bindPopup(popup_a17ba6c76fa65f519e98be8b993daccd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d96c26e95b9825b02b3e80fe47b15f86 = L.circleMarker(\\n\",\n       \"                [41.8625, 124.0383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ce673dae754e8839db4a5f549b3bb80 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4cc6582fd090297c670a508d8c83193 = $(`&lt;div id=&quot;html_f4cc6582fd090297c670a508d8c83193&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.0383             latitude:41.8625             PM2_5:29.60694444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ce673dae754e8839db4a5f549b3bb80.setContent(html_f4cc6582fd090297c670a508d8c83193);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d96c26e95b9825b02b3e80fe47b15f86.bindPopup(popup_8ce673dae754e8839db4a5f549b3bb80)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ea7dad03ccb833ea7197f78f73c72e1 = L.circleMarker(\\n\",\n       \"                [42.0352, 119.2654],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6de59998d34cf8a651727042f9eb158c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab79cc5366acc741a9ead7fb30169090 = $(`&lt;div id=&quot;html_ab79cc5366acc741a9ead7fb30169090&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.2654             latitude:42.0352             PM2_5:35.10584958             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6de59998d34cf8a651727042f9eb158c.setContent(html_ab79cc5366acc741a9ead7fb30169090);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ea7dad03ccb833ea7197f78f73c72e1.bindPopup(popup_6de59998d34cf8a651727042f9eb158c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65bd9217617760650c9015ee313f0db6 = L.circleMarker(\\n\",\n       \"                [29.8211, 114.3231],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c483ca7f0605a7482e47cf53629bd091 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c6033a83cc0c0de67be3a2da625930b = $(`&lt;div id=&quot;html_7c6033a83cc0c0de67be3a2da625930b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3231             latitude:29.8211             PM2_5:40.85097493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c483ca7f0605a7482e47cf53629bd091.setContent(html_7c6033a83cc0c0de67be3a2da625930b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65bd9217617760650c9015ee313f0db6.bindPopup(popup_c483ca7f0605a7482e47cf53629bd091)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c84f57342cf9784f8c286cebbb406cb = L.circleMarker(\\n\",\n       \"                [28.7867, 104.6061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be96f152f9cdc838414da33be32084de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8b3352c8e038a2da6c12fdaeeb57b9e = $(`&lt;div id=&quot;html_d8b3352c8e038a2da6c12fdaeeb57b9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6061             latitude:28.7867             PM2_5:50.48179272             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be96f152f9cdc838414da33be32084de.setContent(html_d8b3352c8e038a2da6c12fdaeeb57b9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c84f57342cf9784f8c286cebbb406cb.bindPopup(popup_be96f152f9cdc838414da33be32084de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26728dfc25d505467cc9286090848ebd = L.circleMarker(\\n\",\n       \"                [45.6289, 122.8444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_962e7a70825b8bedc9bd764a22398d5e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0a9a6be0aa2b37c0041ef8f0246aacc = $(`&lt;div id=&quot;html_a0a9a6be0aa2b37c0041ef8f0246aacc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.8444             latitude:45.6289             PM2_5:27.69308357             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_962e7a70825b8bedc9bd764a22398d5e.setContent(html_a0a9a6be0aa2b37c0041ef8f0246aacc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26728dfc25d505467cc9286090848ebd.bindPopup(popup_962e7a70825b8bedc9bd764a22398d5e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_55f69fea81f5c8ac8f37e24b55ac8dd6 = L.circleMarker(\\n\",\n       \"                [40.7866, 111.551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0a88975effa72e3b71d7f566f26f90a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9e7e82eae9cfe9bcf2ae955d5462548 = $(`&lt;div id=&quot;html_b9e7e82eae9cfe9bcf2ae955d5462548&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.551             latitude:40.7866             PM2_5:47.61559889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0a88975effa72e3b71d7f566f26f90a.setContent(html_b9e7e82eae9cfe9bcf2ae955d5462548);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_55f69fea81f5c8ac8f37e24b55ac8dd6.bindPopup(popup_e0a88975effa72e3b71d7f566f26f90a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c574096affa0bf10a3e43edf6432f83 = L.circleMarker(\\n\",\n       \"                [45.7319, 126.685],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f613bcf0f39c743b0b86bcabcd21d63d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cfc75c03505f63a7362b637d7738b4dc = $(`&lt;div id=&quot;html_cfc75c03505f63a7362b637d7738b4dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.685             latitude:45.7319             PM2_5:35.66852368             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f613bcf0f39c743b0b86bcabcd21d63d.setContent(html_cfc75c03505f63a7362b637d7738b4dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c574096affa0bf10a3e43edf6432f83.bindPopup(popup_f613bcf0f39c743b0b86bcabcd21d63d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9043f894f88e16953f7f46198056fda6 = L.circleMarker(\\n\",\n       \"                [35.94, 104.148],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6e0ad76e9c5222b86815f321f41e189 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e21913569f0496fe96cbcd2eb91bee1 = $(`&lt;div id=&quot;html_9e21913569f0496fe96cbcd2eb91bee1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.148             latitude:35.94             PM2_5:27.50283286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6e0ad76e9c5222b86815f321f41e189.setContent(html_9e21913569f0496fe96cbcd2eb91bee1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9043f894f88e16953f7f46198056fda6.bindPopup(popup_b6e0ad76e9c5222b86815f321f41e189)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f777104f04afb4b2edcacebd4d4af128 = L.circleMarker(\\n\",\n       \"                [34.1781, 117.1694],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13b62c542c3c6e04f0cf92313b78d895 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1922eb5834828799a2ddf5e81584eec0 = $(`&lt;div id=&quot;html_1922eb5834828799a2ddf5e81584eec0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1694             latitude:34.1781             PM2_5:63.68130312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13b62c542c3c6e04f0cf92313b78d895.setContent(html_1922eb5834828799a2ddf5e81584eec0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f777104f04afb4b2edcacebd4d4af128.bindPopup(popup_13b62c542c3c6e04f0cf92313b78d895)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81e24c387d8cb49709c38ded9b3cf8ba = L.circleMarker(\\n\",\n       \"                [23.2536, 116.4019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ea2f94b0a5d54342188082d0a8ad815 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fdbc0cc3c87b1f11ad2408ec6e985a47 = $(`&lt;div id=&quot;html_fdbc0cc3c87b1f11ad2408ec6e985a47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.4019             latitude:23.2536             PM2_5:29.83704735             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ea2f94b0a5d54342188082d0a8ad815.setContent(html_fdbc0cc3c87b1f11ad2408ec6e985a47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81e24c387d8cb49709c38ded9b3cf8ba.bindPopup(popup_6ea2f94b0a5d54342188082d0a8ad815)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72c83c7fea8fa3ef9d03fc4f39d6d602 = L.circleMarker(\\n\",\n       \"                [32.41361, 119.458],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_062541b25036ca545a2f86289c0467b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_64f8e8f7a0c88f0c63182dc8dc737bec = $(`&lt;div id=&quot;html_64f8e8f7a0c88f0c63182dc8dc737bec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.458             latitude:32.41361             PM2_5:47.77423823             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_062541b25036ca545a2f86289c0467b9.setContent(html_64f8e8f7a0c88f0c63182dc8dc737bec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72c83c7fea8fa3ef9d03fc4f39d6d602.bindPopup(popup_062541b25036ca545a2f86289c0467b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d2b11603276423763289e77ba5e64b0 = L.circleMarker(\\n\",\n       \"                [26.0753, 119.315],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d6f707647f270cdc4d8e3846e24d591 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aae51f529c7d9d7f095c4db66159d5e0 = $(`&lt;div id=&quot;html_aae51f529c7d9d7f095c4db66159d5e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.315             latitude:26.0753             PM2_5:31.11871508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d6f707647f270cdc4d8e3846e24d591.setContent(html_aae51f529c7d9d7f095c4db66159d5e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d2b11603276423763289e77ba5e64b0.bindPopup(popup_7d6f707647f270cdc4d8e3846e24d591)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ab576e67910830fe6085cba310f67a3 = L.circleMarker(\\n\",\n       \"                [37.85, 113.5158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b53b95420ddb95d865dc5ea7998ed104 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b102a081e98dc67f9d814cbc9fc5915f = $(`&lt;div id=&quot;html_b102a081e98dc67f9d814cbc9fc5915f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5158             latitude:37.85             PM2_5:48.72804533             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b53b95420ddb95d865dc5ea7998ed104.setContent(html_b102a081e98dc67f9d814cbc9fc5915f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ab576e67910830fe6085cba310f67a3.bindPopup(popup_b53b95420ddb95d865dc5ea7998ed104)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e8a7746a32ccf965d5cc7df3192e1c4 = L.circleMarker(\\n\",\n       \"                [25.8481, 114.9461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_093fb1fcf1eb762d247bdf1a51e783bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f204cd5e7372b67a549ee5b34bd8ad09 = $(`&lt;div id=&quot;html_f204cd5e7372b67a549ee5b34bd8ad09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9461             latitude:25.8481             PM2_5:45.10138889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_093fb1fcf1eb762d247bdf1a51e783bf.setContent(html_f204cd5e7372b67a549ee5b34bd8ad09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e8a7746a32ccf965d5cc7df3192e1c4.bindPopup(popup_093fb1fcf1eb762d247bdf1a51e783bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4bb22076c1baddf9009b605f92b23349 = L.circleMarker(\\n\",\n       \"                [38.3344, 109.7414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0758acaea95dc78b165ef1de89f12ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_414d80124e6a06afa8c8656012cad215 = $(`&lt;div id=&quot;html_414d80124e6a06afa8c8656012cad215&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7414             latitude:38.3344             PM2_5:28.8960114             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0758acaea95dc78b165ef1de89f12ec.setContent(html_414d80124e6a06afa8c8656012cad215);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4bb22076c1baddf9009b605f92b23349.bindPopup(popup_a0758acaea95dc78b165ef1de89f12ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe416003ce51784ebe3f28e6038cfaa6 = L.circleMarker(\\n\",\n       \"                [31.6842, 120.288],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f57c716869e8f7911c5e222728a3906 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d524e82f2f93df78f27ee2b852b4a4f3 = $(`&lt;div id=&quot;html_d524e82f2f93df78f27ee2b852b4a4f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.288             latitude:31.6842             PM2_5:47.45224719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f57c716869e8f7911c5e222728a3906.setContent(html_d524e82f2f93df78f27ee2b852b4a4f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe416003ce51784ebe3f28e6038cfaa6.bindPopup(popup_2f57c716869e8f7911c5e222728a3906)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4bd034fa12467ff2780642b676d2c886 = L.circleMarker(\\n\",\n       \"                [23.4714, 116.7519],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca42febf326fca2fc48409392ad51766 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f924b2280886c6e48db03d23976ed564 = $(`&lt;div id=&quot;html_f924b2280886c6e48db03d23976ed564&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7519             latitude:23.4714             PM2_5:30.35614525             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca42febf326fca2fc48409392ad51766.setContent(html_f924b2280886c6e48db03d23976ed564);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4bd034fa12467ff2780642b676d2c886.bindPopup(popup_ca42febf326fca2fc48409392ad51766)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9eba7691370ff6a7cf7a6268380a6ac8 = L.circleMarker(\\n\",\n       \"                [45.5422, 126.979],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_571db7ee1d85993621aec6b20d6ea48a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14ff0da08d29db1f0902454cc255de33 = $(`&lt;div id=&quot;html_14ff0da08d29db1f0902454cc255de33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.979             latitude:45.5422             PM2_5:33.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_571db7ee1d85993621aec6b20d6ea48a.setContent(html_14ff0da08d29db1f0902454cc255de33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9eba7691370ff6a7cf7a6268380a6ac8.bindPopup(popup_571db7ee1d85993621aec6b20d6ea48a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f26c90ef5e8673b15a942e4cfeb2f8f = L.circleMarker(\\n\",\n       \"                [36.1912, 113.1569],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf5e98284ec40818f77e6909fd778dad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a2d51811acb8439062369d34f062750 = $(`&lt;div id=&quot;html_8a2d51811acb8439062369d34f062750&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1569             latitude:36.1912             PM2_5:65.63509749             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf5e98284ec40818f77e6909fd778dad.setContent(html_8a2d51811acb8439062369d34f062750);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f26c90ef5e8673b15a942e4cfeb2f8f.bindPopup(popup_bf5e98284ec40818f77e6909fd778dad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d74f829ecd01d050f883f4e063ec433d = L.circleMarker(\\n\",\n       \"                [29.4251, 113.1493],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e45053748027f3901de0c03599e02d46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_782d06c8d54362a5184d3f88344058ab = $(`&lt;div id=&quot;html_782d06c8d54362a5184d3f88344058ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1493             latitude:29.4251             PM2_5:49.36543909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e45053748027f3901de0c03599e02d46.setContent(html_782d06c8d54362a5184d3f88344058ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d74f829ecd01d050f883f4e063ec433d.bindPopup(popup_e45053748027f3901de0c03599e02d46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aeb658e97ec94b7f5a4c03ac6e4063be = L.circleMarker(\\n\",\n       \"                [29.3864, 117.3097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7ca27c3582526743201220e40b693fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4df05c6859de3ef0648176fcb71a9b2 = $(`&lt;div id=&quot;html_e4df05c6859de3ef0648176fcb71a9b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3097             latitude:29.3864             PM2_5:26.33286119             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7ca27c3582526743201220e40b693fa.setContent(html_e4df05c6859de3ef0648176fcb71a9b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aeb658e97ec94b7f5a4c03ac6e4063be.bindPopup(popup_b7ca27c3582526743201220e40b693fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6aa9e1304eec9344d9d35738a58f55c = L.circleMarker(\\n\",\n       \"                [27.7044, 111.9892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e58e90eab2da562b7f6ee1ca3375b367 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27daa8bd69d2eb6268197a76846a0bfd = $(`&lt;div id=&quot;html_27daa8bd69d2eb6268197a76846a0bfd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9892             latitude:27.7044             PM2_5:35.07983193             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e58e90eab2da562b7f6ee1ca3375b367.setContent(html_27daa8bd69d2eb6268197a76846a0bfd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6aa9e1304eec9344d9d35738a58f55c.bindPopup(popup_e58e90eab2da562b7f6ee1ca3375b367)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82f53ef1079993b65e76f5511fbe5e5c = L.circleMarker(\\n\",\n       \"                [34.5814, 105.7281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7edf8b9953633e0de1dd0af4d0ed2bc8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2457436064362846818dbf5c5020b954 = $(`&lt;div id=&quot;html_2457436064362846818dbf5c5020b954&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.7281             latitude:34.5814             PM2_5:30.97740113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7edf8b9953633e0de1dd0af4d0ed2bc8.setContent(html_2457436064362846818dbf5c5020b954);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82f53ef1079993b65e76f5511fbe5e5c.bindPopup(popup_7edf8b9953633e0de1dd0af4d0ed2bc8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_117101a61843932869bd2bb1ac2d4e90 = L.circleMarker(\\n\",\n       \"                [36.11, 114.286],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_462f8978482deab9136f8de7aad9ec99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b741c1672906566c682c4ca2ef12d1b = $(`&lt;div id=&quot;html_8b741c1672906566c682c4ca2ef12d1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.286             latitude:36.11             PM2_5:68.70670391             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_462f8978482deab9136f8de7aad9ec99.setContent(html_8b741c1672906566c682c4ca2ef12d1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_117101a61843932869bd2bb1ac2d4e90.bindPopup(popup_462f8978482deab9136f8de7aad9ec99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ee7ebc478ad10916f56db36297857b3 = L.circleMarker(\\n\",\n       \"                [26.5939, 104.89],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_999ef6438c71ba7c0393efb1e2ce83fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ca17df43b8a521a974e9ce97c2f299a = $(`&lt;div id=&quot;html_3ca17df43b8a521a974e9ce97c2f299a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.89             latitude:26.5939             PM2_5:39.54929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_999ef6438c71ba7c0393efb1e2ce83fd.setContent(html_3ca17df43b8a521a974e9ce97c2f299a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ee7ebc478ad10916f56db36297857b3.bindPopup(popup_999ef6438c71ba7c0393efb1e2ce83fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a1e5040defbb0ef8e1145fdfcf4583d = L.circleMarker(\\n\",\n       \"                [31.92, 120.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f06116953bce54c6aa7214f5414adf3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48ce6545d57cb0a36b8a65e826ada7a5 = $(`&lt;div id=&quot;html_48ce6545d57cb0a36b8a65e826ada7a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.268             latitude:31.92             PM2_5:54.32535211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f06116953bce54c6aa7214f5414adf3.setContent(html_48ce6545d57cb0a36b8a65e826ada7a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a1e5040defbb0ef8e1145fdfcf4583d.bindPopup(popup_2f06116953bce54c6aa7214f5414adf3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f05e8f4db00c3b2af0e301662a21aa40 = L.circleMarker(\\n\",\n       \"                [37.68277778, 112.7194444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b454c988184be8e907993617288bd990 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4660697ec943f82f59ec392a7739fad = $(`&lt;div id=&quot;html_f4660697ec943f82f59ec392a7739fad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7194444             latitude:37.68277778             PM2_5:58.19134078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b454c988184be8e907993617288bd990.setContent(html_f4660697ec943f82f59ec392a7739fad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f05e8f4db00c3b2af0e301662a21aa40.bindPopup(popup_b454c988184be8e907993617288bd990)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_04767b61154f598f35ace375ca9cdca6 = L.circleMarker(\\n\",\n       \"                [34.4714, 100.2561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ce1fa0c4bab4d36b878488448867ef3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e7a20bf80614c53d2eb865efd48cd00 = $(`&lt;div id=&quot;html_8e7a20bf80614c53d2eb865efd48cd00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2561             latitude:34.4714             PM2_5:27.10110803             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ce1fa0c4bab4d36b878488448867ef3.setContent(html_8e7a20bf80614c53d2eb865efd48cd00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_04767b61154f598f35ace375ca9cdca6.bindPopup(popup_7ce1fa0c4bab4d36b878488448867ef3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e111ec4b67ba121d869ae2123f15741 = L.circleMarker(\\n\",\n       \"                [39.1495, 117.3916],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_985f79ab4f159243981835db0bbd3f32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_778b6c21cf654367cca6425560c6b1a7 = $(`&lt;div id=&quot;html_778b6c21cf654367cca6425560c6b1a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3916             latitude:39.1495             PM2_5:51.78892216             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_985f79ab4f159243981835db0bbd3f32.setContent(html_778b6c21cf654367cca6425560c6b1a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e111ec4b67ba121d869ae2123f15741.bindPopup(popup_985f79ab4f159243981835db0bbd3f32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db094efba3d0d017ede1b08bb0b40066 = L.circleMarker(\\n\",\n       \"                [23.1422, 113.235],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37a57bf29e3d8a0daba0b8349eb197df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1de7dc0e1dc72803bf1ffff45878901 = $(`&lt;div id=&quot;html_e1de7dc0e1dc72803bf1ffff45878901&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.235             latitude:23.1422             PM2_5:38.90947075             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37a57bf29e3d8a0daba0b8349eb197df.setContent(html_e1de7dc0e1dc72803bf1ffff45878901);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db094efba3d0d017ede1b08bb0b40066.bindPopup(popup_37a57bf29e3d8a0daba0b8349eb197df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72efcb4de598b2b3dfb9673164ff9748 = L.circleMarker(\\n\",\n       \"                [25.2697, 110.2819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_540a4968b43a7570cf45fa2d559d1cc5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ecf6db6b961b4418dede94455c517cd = $(`&lt;div id=&quot;html_3ecf6db6b961b4418dede94455c517cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2819             latitude:25.2697             PM2_5:39.11173184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_540a4968b43a7570cf45fa2d559d1cc5.setContent(html_3ecf6db6b961b4418dede94455c517cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72efcb4de598b2b3dfb9673164ff9748.bindPopup(popup_540a4968b43a7570cf45fa2d559d1cc5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17b48b607aef6e01af11ac1153d4710c = L.circleMarker(\\n\",\n       \"                [23.8844, 106.6527],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d54caac755b22a6b135fc7ca31285d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58c4302e933fa1f5ba88d91023a8d4ab = $(`&lt;div id=&quot;html_58c4302e933fa1f5ba88d91023a8d4ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6527             latitude:23.8844             PM2_5:41.93296089             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d54caac755b22a6b135fc7ca31285d9.setContent(html_58c4302e933fa1f5ba88d91023a8d4ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17b48b607aef6e01af11ac1153d4710c.bindPopup(popup_3d54caac755b22a6b135fc7ca31285d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03a40ef8618ac1bb8571e9735a0f9c3a = L.circleMarker(\\n\",\n       \"                [21.8586, 111.9786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de07b7dcc43b8da8d66c6d73d5c2b33f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0632f7cc2b44775b1b8cd1b835f427c9 = $(`&lt;div id=&quot;html_0632f7cc2b44775b1b8cd1b835f427c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9786             latitude:21.8586             PM2_5:30.71428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de07b7dcc43b8da8d66c6d73d5c2b33f.setContent(html_0632f7cc2b44775b1b8cd1b835f427c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03a40ef8618ac1bb8571e9735a0f9c3a.bindPopup(popup_de07b7dcc43b8da8d66c6d73d5c2b33f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd59d264cd25345afbab6440a95733e5 = L.circleMarker(\\n\",\n       \"                [40.7514, 120.8392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f21996871f13ad8f314f8b21caaed8f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6cfd83e86fc086c6b98f332315090e70 = $(`&lt;div id=&quot;html_6cfd83e86fc086c6b98f332315090e70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8392             latitude:40.7514             PM2_5:38.0140056             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f21996871f13ad8f314f8b21caaed8f2.setContent(html_6cfd83e86fc086c6b98f332315090e70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd59d264cd25345afbab6440a95733e5.bindPopup(popup_f21996871f13ad8f314f8b21caaed8f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d53dac10369168ca75f3ce12c031946f = L.circleMarker(\\n\",\n       \"                [35.7067, 107.6364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd8a3250a201b63f0cf91cb0469e1aac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e79f0cfc1d9a03d7328e0c47db10ec3 = $(`&lt;div id=&quot;html_4e79f0cfc1d9a03d7328e0c47db10ec3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6364             latitude:35.7067             PM2_5:30.4902507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd8a3250a201b63f0cf91cb0469e1aac.setContent(html_4e79f0cfc1d9a03d7328e0c47db10ec3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d53dac10369168ca75f3ce12c031946f.bindPopup(popup_dd8a3250a201b63f0cf91cb0469e1aac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa4acf1e96363b92e69c1c2a266f3991 = L.circleMarker(\\n\",\n       \"                [42.8947, 125.1358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f00856d949c815e574fd9c95845c8ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed84e3b1736f28a76a89f7724686b1d5 = $(`&lt;div id=&quot;html_ed84e3b1736f28a76a89f7724686b1d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1358             latitude:42.8947             PM2_5:33.01549296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f00856d949c815e574fd9c95845c8ab.setContent(html_ed84e3b1736f28a76a89f7724686b1d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa4acf1e96363b92e69c1c2a266f3991.bindPopup(popup_7f00856d949c815e574fd9c95845c8ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19c99547bf2e34b49cce1407eb5c038b = L.circleMarker(\\n\",\n       \"                [30.8023, 106.0789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad4e1cd89118dc62fa057650a9fb0d7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4d09e6eac2512f4fdcc473e359d4c48 = $(`&lt;div id=&quot;html_c4d09e6eac2512f4fdcc473e359d4c48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0789             latitude:30.8023             PM2_5:48.08472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad4e1cd89118dc62fa057650a9fb0d7a.setContent(html_c4d09e6eac2512f4fdcc473e359d4c48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19c99547bf2e34b49cce1407eb5c038b.bindPopup(popup_ad4e1cd89118dc62fa057650a9fb0d7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80ba132eb0e4a12c9422ac6f0587b001 = L.circleMarker(\\n\",\n       \"                [47.2753, 130.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96b4ab32f373b78dcbb848655dcdb66b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_867d3f6789e6a012a8e17996f37dc2b8 = $(`&lt;div id=&quot;html_867d3f6789e6a012a8e17996f37dc2b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.261             latitude:47.2753             PM2_5:23.20251397             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96b4ab32f373b78dcbb848655dcdb66b.setContent(html_867d3f6789e6a012a8e17996f37dc2b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80ba132eb0e4a12c9422ac6f0587b001.bindPopup(popup_96b4ab32f373b78dcbb848655dcdb66b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ef15934d6aba1f4532251bb271fa3f2 = L.circleMarker(\\n\",\n       \"                [37.5436, 121.3181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03166eb75852d03a23b8f41a075456f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39e1bff368167440d1ba5a8ac3fd8821 = $(`&lt;div id=&quot;html_39e1bff368167440d1ba5a8ac3fd8821&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.3181             latitude:37.5436             PM2_5:26.89346591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03166eb75852d03a23b8f41a075456f6.setContent(html_39e1bff368167440d1ba5a8ac3fd8821);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ef15934d6aba1f4532251bb271fa3f2.bindPopup(popup_03166eb75852d03a23b8f41a075456f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d0378c214456d077314d22dcc45ebc9 = L.circleMarker(\\n\",\n       \"                [38.8516, 105.724],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_651eabb2315118c5eb26221b08ed9485 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d632da66d2f250dcd4fe08818a7c67de = $(`&lt;div id=&quot;html_d632da66d2f250dcd4fe08818a7c67de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.724             latitude:38.8516             PM2_5:29.55477528             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_651eabb2315118c5eb26221b08ed9485.setContent(html_d632da66d2f250dcd4fe08818a7c67de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d0378c214456d077314d22dcc45ebc9.bindPopup(popup_651eabb2315118c5eb26221b08ed9485)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fe35019e7470c0132864147adf1dee0 = L.circleMarker(\\n\",\n       \"                [29.4892, 106.634],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18b928c68fe8a8d805e0836af2009134 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5b92b3826ccb77dc24f4d07a82947db = $(`&lt;div id=&quot;html_b5b92b3826ccb77dc24f4d07a82947db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.634             latitude:29.4892             PM2_5:39.38022284             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18b928c68fe8a8d805e0836af2009134.setContent(html_b5b92b3826ccb77dc24f4d07a82947db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fe35019e7470c0132864147adf1dee0.bindPopup(popup_18b928c68fe8a8d805e0836af2009134)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d64817506cde5614ed6d955a863fc38c = L.circleMarker(\\n\",\n       \"                [28.9703, 111.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60bcc2c8bec8874cd1ac9f5572621165 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6d1d013036176045e87011dafcf2d97 = $(`&lt;div id=&quot;html_e6d1d013036176045e87011dafcf2d97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6975             latitude:28.9703             PM2_5:44.52442529             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60bcc2c8bec8874cd1ac9f5572621165.setContent(html_e6d1d013036176045e87011dafcf2d97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d64817506cde5614ed6d955a863fc38c.bindPopup(popup_60bcc2c8bec8874cd1ac9f5572621165)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b32731b9fbbb6fff23c8e6264acb54a3 = L.circleMarker(\\n\",\n       \"                [28.9404, 118.871],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3d7dd74db1fd68058341f0ba7b76d4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4501a4df70c1956c1cb09ad40f4d7ea2 = $(`&lt;div id=&quot;html_4501a4df70c1956c1cb09ad40f4d7ea2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.871             latitude:28.9404             PM2_5:32.40168539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3d7dd74db1fd68058341f0ba7b76d4a.setContent(html_4501a4df70c1956c1cb09ad40f4d7ea2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b32731b9fbbb6fff23c8e6264acb54a3.bindPopup(popup_d3d7dd74db1fd68058341f0ba7b76d4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c0c3a2273a14a2d58276cf89be7dbef5 = L.circleMarker(\\n\",\n       \"                [26.9089, 112.5328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58285484e157373bfedf09edc9968d56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fab09e99f657ea7e5d3b2d9789d50308 = $(`&lt;div id=&quot;html_fab09e99f657ea7e5d3b2d9789d50308&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5328             latitude:26.9089             PM2_5:42.46991404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58285484e157373bfedf09edc9968d56.setContent(html_fab09e99f657ea7e5d3b2d9789d50308);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c0c3a2273a14a2d58276cf89be7dbef5.bindPopup(popup_58285484e157373bfedf09edc9968d56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_635a1539fd2798ed2cc7949f89c37681 = L.circleMarker(\\n\",\n       \"                [30.89556, 120.0875],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee858f63f75d8eb7c253e5f81007144a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f514c81c6d68559eae37b583201998f = $(`&lt;div id=&quot;html_9f514c81c6d68559eae37b583201998f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.0875             latitude:30.89556             PM2_5:39.35434174             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee858f63f75d8eb7c253e5f81007144a.setContent(html_9f514c81c6d68559eae37b583201998f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_635a1539fd2798ed2cc7949f89c37681.bindPopup(popup_ee858f63f75d8eb7c253e5f81007144a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b60446c3baa2ff326de69b9493ac20ec = L.circleMarker(\\n\",\n       \"                [43.91, 125.287],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c38e1ba22ea5b6e8e82dd2cbfa105dcf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecc41ab2079450340bb139ae04e6c14a = $(`&lt;div id=&quot;html_ecc41ab2079450340bb139ae04e6c14a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.287             latitude:43.91             PM2_5:31.19134078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c38e1ba22ea5b6e8e82dd2cbfa105dcf.setContent(html_ecc41ab2079450340bb139ae04e6c14a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b60446c3baa2ff326de69b9493ac20ec.bindPopup(popup_c38e1ba22ea5b6e8e82dd2cbfa105dcf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b19e054d6b235eb498b51f33f391201 = L.circleMarker(\\n\",\n       \"                [39.1292, 106.7096],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd2e2c7f6973b0a0ea00324395686555 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21c9da1e01e99dfc1b34e56647c2d9bc = $(`&lt;div id=&quot;html_21c9da1e01e99dfc1b34e56647c2d9bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7096             latitude:39.1292             PM2_5:40.22740113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd2e2c7f6973b0a0ea00324395686555.setContent(html_21c9da1e01e99dfc1b34e56647c2d9bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b19e054d6b235eb498b51f33f391201.bindPopup(popup_bd2e2c7f6973b0a0ea00324395686555)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a692ecf71d1863deb3e6b5ce96dccd5 = L.circleMarker(\\n\",\n       \"                [37.5136, 111.1297],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39beec7592bdd40866ede70ce886fb4d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_499c1ec1c2c6dc2f524a4dead6d4b884 = $(`&lt;div id=&quot;html_499c1ec1c2c6dc2f524a4dead6d4b884&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1297             latitude:37.5136             PM2_5:59.83844011             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39beec7592bdd40866ede70ce886fb4d.setContent(html_499c1ec1c2c6dc2f524a4dead6d4b884);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a692ecf71d1863deb3e6b5ce96dccd5.bindPopup(popup_39beec7592bdd40866ede70ce886fb4d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86becd51326057e5591758fcb36f1bb5 = L.circleMarker(\\n\",\n       \"                [28.7442, 115.813],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ac232f5d4c565ef0ad7d19facee2cf7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aec076bcd738bfefe325b90c877ca073 = $(`&lt;div id=&quot;html_aec076bcd738bfefe325b90c877ca073&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.813             latitude:28.7442             PM2_5:28.46468927             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ac232f5d4c565ef0ad7d19facee2cf7.setContent(html_aec076bcd738bfefe325b90c877ca073);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86becd51326057e5591758fcb36f1bb5.bindPopup(popup_9ac232f5d4c565ef0ad7d19facee2cf7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93c212cc0ef0b55d98679126c36edad1 = L.circleMarker(\\n\",\n       \"                [39.3514, 112.44],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8568a098dd2a4bbdcc9d183c5f459c3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9862a573038da6deb6dec12247d46e61 = $(`&lt;div id=&quot;html_9862a573038da6deb6dec12247d46e61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.44             latitude:39.3514             PM2_5:38.79971989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8568a098dd2a4bbdcc9d183c5f459c3d.setContent(html_9862a573038da6deb6dec12247d46e61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93c212cc0ef0b55d98679126c36edad1.bindPopup(popup_8568a098dd2a4bbdcc9d183c5f459c3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5a6e8eb9391ada8dec13bed315a583d = L.circleMarker(\\n\",\n       \"                [31.96, 120.913],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41dc1468a309e9f4d315421728a9ad93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26e1d645718f61b2931905a0a200b254 = $(`&lt;div id=&quot;html_26e1d645718f61b2931905a0a200b254&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.913             latitude:31.96             PM2_5:38.12824207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41dc1468a309e9f4d315421728a9ad93.setContent(html_26e1d645718f61b2931905a0a200b254);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5a6e8eb9391ada8dec13bed315a583d.bindPopup(popup_41dc1468a309e9f4d315421728a9ad93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bac008e70e0800cdae173ea460c425ab = L.circleMarker(\\n\",\n       \"                [28.4622, 117.9511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_286b301cc80518ca095f433205ad2416 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40a30218b9bed82036b8437679f3d35b = $(`&lt;div id=&quot;html_40a30218b9bed82036b8437679f3d35b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9511             latitude:28.4622             PM2_5:39.12359551             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_286b301cc80518ca095f433205ad2416.setContent(html_40a30218b9bed82036b8437679f3d35b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bac008e70e0800cdae173ea460c425ab.bindPopup(popup_286b301cc80518ca095f433205ad2416)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba320297a0668b853b754170c7f86672 = L.circleMarker(\\n\",\n       \"                [41.7511, 86.1461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ccb9ff8afd984a80d95b50feb757ffc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1e7ad8558141b7b8aa3b745ed7ae294 = $(`&lt;div id=&quot;html_e1e7ad8558141b7b8aa3b745ed7ae294&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.1461             latitude:41.7511             PM2_5:53.63764045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ccb9ff8afd984a80d95b50feb757ffc4.setContent(html_e1e7ad8558141b7b8aa3b745ed7ae294);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba320297a0668b853b754170c7f86672.bindPopup(popup_ccb9ff8afd984a80d95b50feb757ffc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8691367ad0c2cd5737b6a828c6c81c5f = L.circleMarker(\\n\",\n       \"                [28.6064, 115.9083],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_462264236d7da08214f9da06ea953a3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc0b90e80df2e1e614b074314113848b = $(`&lt;div id=&quot;html_bc0b90e80df2e1e614b074314113848b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9083             latitude:28.6064             PM2_5:29.79859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_462264236d7da08214f9da06ea953a3e.setContent(html_bc0b90e80df2e1e614b074314113848b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8691367ad0c2cd5737b6a828c6c81c5f.bindPopup(popup_462264236d7da08214f9da06ea953a3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b88a374c6edb946fe9cf30066afc6c5 = L.circleMarker(\\n\",\n       \"                [36.2403, 120.6659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47b129b1f880992a5ab515efbaefaafc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3834ec4277a0ae91fd64cd3bbbce552 = $(`&lt;div id=&quot;html_e3834ec4277a0ae91fd64cd3bbbce552&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.6659             latitude:36.2403             PM2_5:25.74107143             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47b129b1f880992a5ab515efbaefaafc.setContent(html_e3834ec4277a0ae91fd64cd3bbbce552);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b88a374c6edb946fe9cf30066afc6c5.bindPopup(popup_47b129b1f880992a5ab515efbaefaafc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87dde444bd8554ff9277a5f3968cae61 = L.circleMarker(\\n\",\n       \"                [28.6969, 115.973],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57c183b96008014b9995b1fc767e30d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_495695d2783005acb02fe8937747fea8 = $(`&lt;div id=&quot;html_495695d2783005acb02fe8937747fea8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.973             latitude:28.6969             PM2_5:37.09444444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57c183b96008014b9995b1fc767e30d8.setContent(html_495695d2783005acb02fe8937747fea8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87dde444bd8554ff9277a5f3968cae61.bindPopup(popup_57c183b96008014b9995b1fc767e30d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80e2f746d5dd911bef934827b634b2c6 = L.circleMarker(\\n\",\n       \"                [41.2553, 123.15],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d43efdfaa1b17e784d816ad98d4bf36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60de5af55e6312222d6f471aeddb9b5d = $(`&lt;div id=&quot;html_60de5af55e6312222d6f471aeddb9b5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.15             latitude:41.2553             PM2_5:28.93661972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d43efdfaa1b17e784d816ad98d4bf36.setContent(html_60de5af55e6312222d6f471aeddb9b5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80e2f746d5dd911bef934827b634b2c6.bindPopup(popup_3d43efdfaa1b17e784d816ad98d4bf36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c06999f997b682e91d1675ccc78963f = L.circleMarker(\\n\",\n       \"                [41.7347, 123.2444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a16113c90772a8c25ce96bbda9744eba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4df954615680af007d3b28fd96731411 = $(`&lt;div id=&quot;html_4df954615680af007d3b28fd96731411&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.2444             latitude:41.7347             PM2_5:32.5238764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a16113c90772a8c25ce96bbda9744eba.setContent(html_4df954615680af007d3b28fd96731411);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c06999f997b682e91d1675ccc78963f.bindPopup(popup_a16113c90772a8c25ce96bbda9744eba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eadc169e3fc37e2ec341d3ade4ae81b5 = L.circleMarker(\\n\",\n       \"                [25.8226, 113.0116],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01d046cb255a3e0ce8e7570f614382b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b350b6bbbfbbe70346f2eb2b28e5fa7 = $(`&lt;div id=&quot;html_5b350b6bbbfbbe70346f2eb2b28e5fa7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0116             latitude:25.8226             PM2_5:43.44583333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01d046cb255a3e0ce8e7570f614382b8.setContent(html_5b350b6bbbfbbe70346f2eb2b28e5fa7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eadc169e3fc37e2ec341d3ade4ae81b5.bindPopup(popup_01d046cb255a3e0ce8e7570f614382b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c266c200c1a150f08231620fb1d3607 = L.circleMarker(\\n\",\n       \"                [38.01777778, 114.5330556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f1e7d244ecb9bd56413bb3cbfef93a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71250948fb5c63cc7f84f4f418fb7b86 = $(`&lt;div id=&quot;html_71250948fb5c63cc7f84f4f418fb7b86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5330556             latitude:38.01777778             PM2_5:68.20833333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f1e7d244ecb9bd56413bb3cbfef93a0.setContent(html_71250948fb5c63cc7f84f4f418fb7b86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c266c200c1a150f08231620fb1d3607.bindPopup(popup_8f1e7d244ecb9bd56413bb3cbfef93a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9af402a0ad8a1e152aa12a4afdface0 = L.circleMarker(\\n\",\n       \"                [33.9461, 116.7844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f62a11860e73149457779a53b66f946a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c1f6bf47b8ff00a45006a1efbeb5e27 = $(`&lt;div id=&quot;html_4c1f6bf47b8ff00a45006a1efbeb5e27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7844             latitude:33.9461             PM2_5:55.20448179             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f62a11860e73149457779a53b66f946a.setContent(html_4c1f6bf47b8ff00a45006a1efbeb5e27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9af402a0ad8a1e152aa12a4afdface0.bindPopup(popup_f62a11860e73149457779a53b66f946a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d7d0d7d5bd2f583305c8bedd74e3ffd = L.circleMarker(\\n\",\n       \"                [26.5017, 101.7453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c08d48eccb04bc91b8282e10097eb7b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8bc67beaab59fa90a8e69c1c95346b6f = $(`&lt;div id=&quot;html_8bc67beaab59fa90a8e69c1c95346b6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7453             latitude:26.5017             PM2_5:31.86768802             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c08d48eccb04bc91b8282e10097eb7b.setContent(html_8bc67beaab59fa90a8e69c1c95346b6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d7d0d7d5bd2f583305c8bedd74e3ffd.bindPopup(popup_0c08d48eccb04bc91b8282e10097eb7b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba8a8259933e00e4155f51196328f3f7 = L.circleMarker(\\n\",\n       \"                [37.7394, 112.5583],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b2ca6816ee490050bea0ea83c712192 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8eebc92155d969ce1f284a66b7f02521 = $(`&lt;div id=&quot;html_8eebc92155d969ce1f284a66b7f02521&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5583             latitude:37.7394             PM2_5:58.13936782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b2ca6816ee490050bea0ea83c712192.setContent(html_8eebc92155d969ce1f284a66b7f02521);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba8a8259933e00e4155f51196328f3f7.bindPopup(popup_0b2ca6816ee490050bea0ea83c712192)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ff200a87bc5aa17a08d29db9da07422 = L.circleMarker(\\n\",\n       \"                [36.6868, 117.0684],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f216103ebcd31abe9e2cf8eee3310db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e6f8b5c60ef50c5a3b630af9a6868b7 = $(`&lt;div id=&quot;html_4e6f8b5c60ef50c5a3b630af9a6868b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0684             latitude:36.6868             PM2_5:56.59705882             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f216103ebcd31abe9e2cf8eee3310db.setContent(html_4e6f8b5c60ef50c5a3b630af9a6868b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ff200a87bc5aa17a08d29db9da07422.bindPopup(popup_3f216103ebcd31abe9e2cf8eee3310db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6cccb5b2314c191465a4f87fca6a0ac1 = L.circleMarker(\\n\",\n       \"                [47.3636, 123.9305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ab0816e612b991a12c902dbdc0f45ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b91e3a60b9f687b9bd4283969486bdc = $(`&lt;div id=&quot;html_5b91e3a60b9f687b9bd4283969486bdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9305             latitude:47.3636             PM2_5:28.63649025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ab0816e612b991a12c902dbdc0f45ec.setContent(html_5b91e3a60b9f687b9bd4283969486bdc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6cccb5b2314c191465a4f87fca6a0ac1.bindPopup(popup_4ab0816e612b991a12c902dbdc0f45ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ae4ede74ed0129ccb39404cf74df75a = L.circleMarker(\\n\",\n       \"                [31.8572, 117.25],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fce47064538ccbbd689119c9ffa54de7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df90b1ede2b5625ecb066409b74bd24b = $(`&lt;div id=&quot;html_df90b1ede2b5625ecb066409b74bd24b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.25             latitude:31.8572             PM2_5:49.77871148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fce47064538ccbbd689119c9ffa54de7.setContent(html_df90b1ede2b5625ecb066409b74bd24b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ae4ede74ed0129ccb39404cf74df75a.bindPopup(popup_fce47064538ccbbd689119c9ffa54de7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23784bb330f012b7db515b6d69f5051b = L.circleMarker(\\n\",\n       \"                [25.1081, 99.1678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc3d0c56dddfa6766629992689b9faa6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_144d86bf3fe445b9d65fd8ccd1aab935 = $(`&lt;div id=&quot;html_144d86bf3fe445b9d65fd8ccd1aab935&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.1678             latitude:25.1081             PM2_5:27.45338983             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc3d0c56dddfa6766629992689b9faa6.setContent(html_144d86bf3fe445b9d65fd8ccd1aab935);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23784bb330f012b7db515b6d69f5051b.bindPopup(popup_fc3d0c56dddfa6766629992689b9faa6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12ab64903441b2f9b2a55b2bc3d39e8b = L.circleMarker(\\n\",\n       \"                [40.8062, 111.7277],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_088b5b4c6436d2b6525dd9217c3561d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6a69c70f14a6b77414f5a82fdfc798a = $(`&lt;div id=&quot;html_a6a69c70f14a6b77414f5a82fdfc798a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7277             latitude:40.8062             PM2_5:31.32590529             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_088b5b4c6436d2b6525dd9217c3561d1.setContent(html_a6a69c70f14a6b77414f5a82fdfc798a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12ab64903441b2f9b2a55b2bc3d39e8b.bindPopup(popup_088b5b4c6436d2b6525dd9217c3561d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94969719974991582b371fbf415ff99c = L.circleMarker(\\n\",\n       \"                [37.8694, 113.5689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fb4ba6254fda2b3637590414b5413ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0da8e0cdd7c9d835de356d7b3a1b6e82 = $(`&lt;div id=&quot;html_0da8e0cdd7c9d835de356d7b3a1b6e82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5689             latitude:37.8694             PM2_5:54.83193277             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fb4ba6254fda2b3637590414b5413ae.setContent(html_0da8e0cdd7c9d835de356d7b3a1b6e82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94969719974991582b371fbf415ff99c.bindPopup(popup_6fb4ba6254fda2b3637590414b5413ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d1b0c440f6fc17c90f3546c7b0ff3f7 = L.circleMarker(\\n\",\n       \"                [27.2272, 111.4328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61b95c4d7ed24b39255c44f50244567e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a80098c37b8a14df3d377f0717fc305 = $(`&lt;div id=&quot;html_2a80098c37b8a14df3d377f0717fc305&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4328             latitude:27.2272             PM2_5:46.85070423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61b95c4d7ed24b39255c44f50244567e.setContent(html_2a80098c37b8a14df3d377f0717fc305);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d1b0c440f6fc17c90f3546c7b0ff3f7.bindPopup(popup_61b95c4d7ed24b39255c44f50244567e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_995375b39c8b1fae8a5a6a71df127156 = L.circleMarker(\\n\",\n       \"                [34.7781, 114.3389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87aa04f2b9f4c9a5364d9fba07758b04 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aadd7c214fd4ed742aefaa823724cae2 = $(`&lt;div id=&quot;html_aadd7c214fd4ed742aefaa823724cae2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3389             latitude:34.7781             PM2_5:58.12853107             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87aa04f2b9f4c9a5364d9fba07758b04.setContent(html_aadd7c214fd4ed742aefaa823724cae2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_995375b39c8b1fae8a5a6a71df127156.bindPopup(popup_87aa04f2b9f4c9a5364d9fba07758b04)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_506e724f9c029743733aadd43f5fe90f = L.circleMarker(\\n\",\n       \"                [47.3227, 123.9483],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22d156f28aade83172dd761128739ad8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00fdcc50871edc05db99754fa7917bf0 = $(`&lt;div id=&quot;html_00fdcc50871edc05db99754fa7917bf0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9483             latitude:47.3227             PM2_5:29.87815126             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22d156f28aade83172dd761128739ad8.setContent(html_00fdcc50871edc05db99754fa7917bf0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_506e724f9c029743733aadd43f5fe90f.bindPopup(popup_22d156f28aade83172dd761128739ad8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75e1e90ceac8b09624c998e086dbc17a = L.circleMarker(\\n\",\n       \"                [28.3169, 109.7325],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79494caa66603c4a61eef6b3bd1de508 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_790eebac25fbaf81921d920d771a511f = $(`&lt;div id=&quot;html_790eebac25fbaf81921d920d771a511f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7325             latitude:28.3169             PM2_5:40.78011204             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79494caa66603c4a61eef6b3bd1de508.setContent(html_790eebac25fbaf81921d920d771a511f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75e1e90ceac8b09624c998e086dbc17a.bindPopup(popup_79494caa66603c4a61eef6b3bd1de508)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_507ebdc4dbb2bb58de23db43030175e2 = L.circleMarker(\\n\",\n       \"                [31.7586, 119.996],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c0d95a160501b5f2386d17aa3ecfbe6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbea67d4fce25845011499b43aa493c6 = $(`&lt;div id=&quot;html_dbea67d4fce25845011499b43aa493c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.996             latitude:31.7586             PM2_5:46.04481793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c0d95a160501b5f2386d17aa3ecfbe6.setContent(html_dbea67d4fce25845011499b43aa493c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_507ebdc4dbb2bb58de23db43030175e2.bindPopup(popup_8c0d95a160501b5f2386d17aa3ecfbe6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7009bd3c4ea1a7b2c2ac6a7c5af135b2 = L.circleMarker(\\n\",\n       \"                [29.6475, 91.0874],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73a5a3d867bcfefd29d7c189f0836e1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc43cfa7b636618223a5d928c89f19c2 = $(`&lt;div id=&quot;html_dc43cfa7b636618223a5d928c89f19c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.0874             latitude:29.6475             PM2_5:10.2880117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73a5a3d867bcfefd29d7c189f0836e1d.setContent(html_dc43cfa7b636618223a5d928c89f19c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7009bd3c4ea1a7b2c2ac6a7c5af135b2.bindPopup(popup_73a5a3d867bcfefd29d7c189f0836e1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6bacddc727cc944ed3286b6e9e641bf8 = L.circleMarker(\\n\",\n       \"                [28.1178, 112.9844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84ab2bb535ede7d39b2eea49364e910b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd7e1684e748081b91c61294f2af1f97 = $(`&lt;div id=&quot;html_cd7e1684e748081b91c61294f2af1f97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9844             latitude:28.1178             PM2_5:41.61516854             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84ab2bb535ede7d39b2eea49364e910b.setContent(html_cd7e1684e748081b91c61294f2af1f97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6bacddc727cc944ed3286b6e9e641bf8.bindPopup(popup_84ab2bb535ede7d39b2eea49364e910b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8fd0d054c09a1c9581cf2ae4a5036891 = L.circleMarker(\\n\",\n       \"                [36.10139, 111.505],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37fdaf07ef6d70195508fb5b3f6a0b83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f971a47afd2af248ed077fe4f3de58d = $(`&lt;div id=&quot;html_2f971a47afd2af248ed077fe4f3de58d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.505             latitude:36.10139             PM2_5:74.34078212             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37fdaf07ef6d70195508fb5b3f6a0b83.setContent(html_2f971a47afd2af248ed077fe4f3de58d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8fd0d054c09a1c9581cf2ae4a5036891.bindPopup(popup_37fdaf07ef6d70195508fb5b3f6a0b83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83215ebfdf3c28aa22f126f776e21c6e = L.circleMarker(\\n\",\n       \"                [35.5975, 104.6169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_337763f4a7f6f22d1b145f0632d42df5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a470c6409c5e7ca8f078babdb7e0017c = $(`&lt;div id=&quot;html_a470c6409c5e7ca8f078babdb7e0017c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6169             latitude:35.5975             PM2_5:29.16155989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_337763f4a7f6f22d1b145f0632d42df5.setContent(html_a470c6409c5e7ca8f078babdb7e0017c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83215ebfdf3c28aa22f126f776e21c6e.bindPopup(popup_337763f4a7f6f22d1b145f0632d42df5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9e308a57b1907ec115b0d1f2555ec40 = L.circleMarker(\\n\",\n       \"                [34.7975, 114.3733],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b528320378da648a963e25e02cf10a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1e4086196c92ee3a1c823c2dd568a90 = $(`&lt;div id=&quot;html_f1e4086196c92ee3a1c823c2dd568a90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3733             latitude:34.7975             PM2_5:57.65870787             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b528320378da648a963e25e02cf10a7.setContent(html_f1e4086196c92ee3a1c823c2dd568a90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9e308a57b1907ec115b0d1f2555ec40.bindPopup(popup_9b528320378da648a963e25e02cf10a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ffadf17ff77449e7b32f7441c20d920 = L.circleMarker(\\n\",\n       \"                [36.2092, 117.7181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5530a18447a967bdb741307e122bcde3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59f695e66f8fcfbf0e55880fbfe9b4a6 = $(`&lt;div id=&quot;html_59f695e66f8fcfbf0e55880fbfe9b4a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7181             latitude:36.2092             PM2_5:56.48314607             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5530a18447a967bdb741307e122bcde3.setContent(html_59f695e66f8fcfbf0e55880fbfe9b4a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ffadf17ff77449e7b32f7441c20d920.bindPopup(popup_5530a18447a967bdb741307e122bcde3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5f42749276d36181a862eeef4de5ca1 = L.circleMarker(\\n\",\n       \"                [22.7633, 100.98],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae1f5d76e54f3c85f87076cfa2dff49d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22ca1fdee0bde1f24b4e2140c46370a4 = $(`&lt;div id=&quot;html_22ca1fdee0bde1f24b4e2140c46370a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.98             latitude:22.7633             PM2_5:18.6408046             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae1f5d76e54f3c85f87076cfa2dff49d.setContent(html_22ca1fdee0bde1f24b4e2140c46370a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5f42749276d36181a862eeef4de5ca1.bindPopup(popup_ae1f5d76e54f3c85f87076cfa2dff49d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa0c7baf506f1b57892deb6fa79425fd = L.circleMarker(\\n\",\n       \"                [24.81805556, 118.1569444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44833fdd2d22a7b9bf3038927211d0fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e1e01df9b2afa8998395dc6217fdfb5 = $(`&lt;div id=&quot;html_0e1e01df9b2afa8998395dc6217fdfb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1569444             latitude:24.81805556             PM2_5:24.03812317             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44833fdd2d22a7b9bf3038927211d0fe.setContent(html_0e1e01df9b2afa8998395dc6217fdfb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa0c7baf506f1b57892deb6fa79425fd.bindPopup(popup_44833fdd2d22a7b9bf3038927211d0fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_589a29f3bfb4def1b87b71374cc32e30 = L.circleMarker(\\n\",\n       \"                [29.8686, 114.3372],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aff959e32d70090493d1e84e06aa6d79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d613f11d42f36c3d0d84f5274920f0a = $(`&lt;div id=&quot;html_1d613f11d42f36c3d0d84f5274920f0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3372             latitude:29.8686             PM2_5:44.10504202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aff959e32d70090493d1e84e06aa6d79.setContent(html_1d613f11d42f36c3d0d84f5274920f0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_589a29f3bfb4def1b87b71374cc32e30.bindPopup(popup_aff959e32d70090493d1e84e06aa6d79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2622386af468b3094e8c6307056382ac = L.circleMarker(\\n\",\n       \"                [31.7039, 119.935],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b44f8e1d5761ca920e1696ee79e8d8e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3bcf4e2b81a370a00b85531f66d0daa = $(`&lt;div id=&quot;html_e3bcf4e2b81a370a00b85531f66d0daa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.935             latitude:31.7039             PM2_5:43.56005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b44f8e1d5761ca920e1696ee79e8d8e4.setContent(html_e3bcf4e2b81a370a00b85531f66d0daa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2622386af468b3094e8c6307056382ac.bindPopup(popup_b44f8e1d5761ca920e1696ee79e8d8e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16f5063d0d30fb9d61c565c9c9bf4ebb = L.circleMarker(\\n\",\n       \"                [29.6816, 115.9872],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4010f74e47b8eca1c903f94a42b53556 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4268fe7614ae2a71eb9516bf0f947c9f = $(`&lt;div id=&quot;html_4268fe7614ae2a71eb9516bf0f947c9f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9872             latitude:29.6816             PM2_5:44.49293785             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4010f74e47b8eca1c903f94a42b53556.setContent(html_4268fe7614ae2a71eb9516bf0f947c9f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16f5063d0d30fb9d61c565c9c9bf4ebb.bindPopup(popup_4010f74e47b8eca1c903f94a42b53556)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a553bf41541130b0d39701c35b3db80 = L.circleMarker(\\n\",\n       \"                [22.7267, 114.24],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2375bd9b4ad9ba184605ec598d6fd9f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25cce986f6a1fefb2d5ce3bedd40369e = $(`&lt;div id=&quot;html_25cce986f6a1fefb2d5ce3bedd40369e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.24             latitude:22.7267             PM2_5:26.57660167             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2375bd9b4ad9ba184605ec598d6fd9f6.setContent(html_25cce986f6a1fefb2d5ce3bedd40369e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a553bf41541130b0d39701c35b3db80.bindPopup(popup_2375bd9b4ad9ba184605ec598d6fd9f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30f81de5c19fba1641d8f0630024fb8b = L.circleMarker(\\n\",\n       \"                [39.5343, 116.7464],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12f51f8bc8692d01c0cd3129bbc5bc63 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cdbf8de555a34fa34a9f7419836de1a5 = $(`&lt;div id=&quot;html_cdbf8de555a34fa34a9f7419836de1a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7464             latitude:39.5343             PM2_5:46.71830986             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12f51f8bc8692d01c0cd3129bbc5bc63.setContent(html_cdbf8de555a34fa34a9f7419836de1a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30f81de5c19fba1641d8f0630024fb8b.bindPopup(popup_12f51f8bc8692d01c0cd3129bbc5bc63)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb48dc14046eabe5f5782f086ba77f77 = L.circleMarker(\\n\",\n       \"                [34.8019, 113.675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_852d0da7417bd888f4f257d1cb9178e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60a605d9545d8f647fd31c6bf99f9ca3 = $(`&lt;div id=&quot;html_60a605d9545d8f647fd31c6bf99f9ca3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.675             latitude:34.8019             PM2_5:66.82162921             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_852d0da7417bd888f4f257d1cb9178e3.setContent(html_60a605d9545d8f647fd31c6bf99f9ca3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb48dc14046eabe5f5782f086ba77f77.bindPopup(popup_852d0da7417bd888f4f257d1cb9178e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9be2500bb588fc043c754b7490806f96 = L.circleMarker(\\n\",\n       \"                [29.4892, 106.468],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57a6a539095b5c2dbb1faff5d1dd4720 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59186515528e29b1b211cc6c2765023c = $(`&lt;div id=&quot;html_59186515528e29b1b211cc6c2765023c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.468             latitude:29.4892             PM2_5:36.48189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57a6a539095b5c2dbb1faff5d1dd4720.setContent(html_59186515528e29b1b211cc6c2765023c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9be2500bb588fc043c754b7490806f96.bindPopup(popup_57a6a539095b5c2dbb1faff5d1dd4720)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_079b81f4a8ca9ff0ff7bd2a633e6c728 = L.circleMarker(\\n\",\n       \"                [40.1438, 116.72],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_95c5e6dfe0ed4831f3116df5c4f1bf7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6445f9af6dae21a3658fab9214b46fe6 = $(`&lt;div id=&quot;html_6445f9af6dae21a3658fab9214b46fe6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.72             latitude:40.1438             PM2_5:51.04366197             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_95c5e6dfe0ed4831f3116df5c4f1bf7e.setContent(html_6445f9af6dae21a3658fab9214b46fe6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_079b81f4a8ca9ff0ff7bd2a633e6c728.bindPopup(popup_95c5e6dfe0ed4831f3116df5c4f1bf7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdec3a127de4bf46223ce384854d51bf = L.circleMarker(\\n\",\n       \"                [29.6292, 91.0834],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85f6129101fabf1b5558ff7426f00c43 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6252c23c8d579432ad6d7ff13fc3d3d6 = $(`&lt;div id=&quot;html_6252c23c8d579432ad6d7ff13fc3d3d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.0834             latitude:29.6292             PM2_5:11.04373178             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85f6129101fabf1b5558ff7426f00c43.setContent(html_6252c23c8d579432ad6d7ff13fc3d3d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdec3a127de4bf46223ce384854d51bf.bindPopup(popup_85f6129101fabf1b5558ff7426f00c43)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d800f48ef1419f8dc53e9b10f8fb892 = L.circleMarker(\\n\",\n       \"                [31.87888889, 106.7513889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_667b753c7e4599e70072d0963c29814f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2cb13e38d882fb7dffcde778db677b6f = $(`&lt;div id=&quot;html_2cb13e38d882fb7dffcde778db677b6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7513889             latitude:31.87888889             PM2_5:31.05857143             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_667b753c7e4599e70072d0963c29814f.setContent(html_2cb13e38d882fb7dffcde778db677b6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d800f48ef1419f8dc53e9b10f8fb892.bindPopup(popup_667b753c7e4599e70072d0963c29814f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_294a371554073f93d2000168813be69d = L.circleMarker(\\n\",\n       \"                [31.7712, 116.5661],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13d8de8570ab4a77f0071acf6be09338 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9477540a2b76d561f491ee392d8f3bb1 = $(`&lt;div id=&quot;html_9477540a2b76d561f491ee392d8f3bb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5661             latitude:31.7712             PM2_5:47.88194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13d8de8570ab4a77f0071acf6be09338.setContent(html_9477540a2b76d561f491ee392d8f3bb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_294a371554073f93d2000168813be69d.bindPopup(popup_13d8de8570ab4a77f0071acf6be09338)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d62d8d1982b1b55a4ac9e89560da57f = L.circleMarker(\\n\",\n       \"                [27.6486, 106.8906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8af3c70de5a002619a1e012079c864c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5eaad4e7e371d4323271e05187392126 = $(`&lt;div id=&quot;html_5eaad4e7e371d4323271e05187392126&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8906             latitude:27.6486             PM2_5:24.83472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8af3c70de5a002619a1e012079c864c9.setContent(html_5eaad4e7e371d4323271e05187392126);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d62d8d1982b1b55a4ac9e89560da57f.bindPopup(popup_8af3c70de5a002619a1e012079c864c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_674b57336a43998624efc69fb01235f7 = L.circleMarker(\\n\",\n       \"                [40.6288, 109.8654],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b4268d9d54828812d09df2d14576e36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d89b11f0b0426ddd0ed1208be3b31cdd = $(`&lt;div id=&quot;html_d89b11f0b0426ddd0ed1208be3b31cdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8654             latitude:40.6288             PM2_5:45.84322034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b4268d9d54828812d09df2d14576e36.setContent(html_d89b11f0b0426ddd0ed1208be3b31cdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_674b57336a43998624efc69fb01235f7.bindPopup(popup_6b4268d9d54828812d09df2d14576e36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_855d565c29cd6fb7e8896d1170f8c301 = L.circleMarker(\\n\",\n       \"                [43.1594, 124.3711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0640447a30aba8106a2ed12ddcf4e28d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d841c1e938cd286be99246b7233706ba = $(`&lt;div id=&quot;html_d841c1e938cd286be99246b7233706ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3711             latitude:43.1594             PM2_5:48.26264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0640447a30aba8106a2ed12ddcf4e28d.setContent(html_d841c1e938cd286be99246b7233706ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_855d565c29cd6fb7e8896d1170f8c301.bindPopup(popup_0640447a30aba8106a2ed12ddcf4e28d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6bcbed276078d98de001a248290174c6 = L.circleMarker(\\n\",\n       \"                [28.4586, 119.93],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_495afba270fd32dfea1c97f514be958f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f86cd79615c30f0cb21af72fdf919c7 = $(`&lt;div id=&quot;html_3f86cd79615c30f0cb21af72fdf919c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.93             latitude:28.4586             PM2_5:27.13091922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_495afba270fd32dfea1c97f514be958f.setContent(html_3f86cd79615c30f0cb21af72fdf919c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6bcbed276078d98de001a248290174c6.bindPopup(popup_495afba270fd32dfea1c97f514be958f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_196741fbcc0393b02a2d4bec1b003479 = L.circleMarker(\\n\",\n       \"                [25.9118, 114.9064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e54f9e1516a7f9b1fd2ecc8633eeb20b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f01ac1c9ff9a7c0151e0cee046e4d419 = $(`&lt;div id=&quot;html_f01ac1c9ff9a7c0151e0cee046e4d419&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9064             latitude:25.9118             PM2_5:42.14366197             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e54f9e1516a7f9b1fd2ecc8633eeb20b.setContent(html_f01ac1c9ff9a7c0151e0cee046e4d419);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_196741fbcc0393b02a2d4bec1b003479.bindPopup(popup_e54f9e1516a7f9b1fd2ecc8633eeb20b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3595feb88924ab34448942ef0f88bd94 = L.circleMarker(\\n\",\n       \"                [34.3497, 107.2058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0f4d74f7decb58bc3378e649bcdcb55 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cfa05b436d1a0dc54db3eef7c603033e = $(`&lt;div id=&quot;html_cfa05b436d1a0dc54db3eef7c603033e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.2058             latitude:34.3497             PM2_5:49.42896936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0f4d74f7decb58bc3378e649bcdcb55.setContent(html_cfa05b436d1a0dc54db3eef7c603033e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3595feb88924ab34448942ef0f88bd94.bindPopup(popup_b0f4d74f7decb58bc3378e649bcdcb55)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ae0a8963170f1bbe35e58b102d85a9d = L.circleMarker(\\n\",\n       \"                [34.2303, 108.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2b88e422799a89c9aea876a57e5caa1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1fb250564300dc90f0ad62a9de7a756 = $(`&lt;div id=&quot;html_f1fb250564300dc90f0ad62a9de7a756&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.883             latitude:34.2303             PM2_5:67.22881356             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2b88e422799a89c9aea876a57e5caa1.setContent(html_f1fb250564300dc90f0ad62a9de7a756);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ae0a8963170f1bbe35e58b102d85a9d.bindPopup(popup_c2b88e422799a89c9aea876a57e5caa1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d03b2d10c27c0ef079ae9dfa5ca3ea93 = L.circleMarker(\\n\",\n       \"                [29.2313, 91.7608],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a69e555afd4733d7737d39d3b607ce6f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b747224a1cb5e736dd8e29ad79e6a207 = $(`&lt;div id=&quot;html_b747224a1cb5e736dd8e29ad79e6a207&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.7608             latitude:29.2313             PM2_5:8.361031519             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a69e555afd4733d7737d39d3b607ce6f.setContent(html_b747224a1cb5e736dd8e29ad79e6a207);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d03b2d10c27c0ef079ae9dfa5ca3ea93.bindPopup(popup_a69e555afd4733d7737d39d3b607ce6f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1efe882d1a73ba637017dee4bc0aa71 = L.circleMarker(\\n\",\n       \"                [36.6489, 116.943],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e7b7c95d4f8be5a2992ab5d10523b91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_675e0bcec1e364e003583b1f5e8fff8c = $(`&lt;div id=&quot;html_675e0bcec1e364e003583b1f5e8fff8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.943             latitude:36.6489             PM2_5:62.66091954             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e7b7c95d4f8be5a2992ab5d10523b91.setContent(html_675e0bcec1e364e003583b1f5e8fff8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1efe882d1a73ba637017dee4bc0aa71.bindPopup(popup_1e7b7c95d4f8be5a2992ab5d10523b91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fce674959ae05de9bce767b82c96a002 = L.circleMarker(\\n\",\n       \"                [29.2956, 117.2461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc7ad8d87778dc9b9b030ef5f13584d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46dee3f80332e905dd4a334c314dcd78 = $(`&lt;div id=&quot;html_46dee3f80332e905dd4a334c314dcd78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2461             latitude:29.2956             PM2_5:34.24792244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc7ad8d87778dc9b9b030ef5f13584d5.setContent(html_46dee3f80332e905dd4a334c314dcd78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fce674959ae05de9bce767b82c96a002.bindPopup(popup_bc7ad8d87778dc9b9b030ef5f13584d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d743614c36954476b5c4f019ed0726d3 = L.circleMarker(\\n\",\n       \"                [31.4867, 120.269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5459e1fe17f42ba1cf4a2f13275a62b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e79b2d1951529a8015fa0cb67ec1e4b2 = $(`&lt;div id=&quot;html_e79b2d1951529a8015fa0cb67ec1e4b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.269             latitude:31.4867             PM2_5:39.27620397             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5459e1fe17f42ba1cf4a2f13275a62b.setContent(html_e79b2d1951529a8015fa0cb67ec1e4b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d743614c36954476b5c4f019ed0726d3.bindPopup(popup_f5459e1fe17f42ba1cf4a2f13275a62b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bcdbc41698dfb16514791346042774c4 = L.circleMarker(\\n\",\n       \"                [28.4514, 119.914],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a32d504bb195553eee47fe03270ba188 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26e244ac8efe9d1ea7383dcc82879405 = $(`&lt;div id=&quot;html_26e244ac8efe9d1ea7383dcc82879405&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.914             latitude:28.4514             PM2_5:28.95391061             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a32d504bb195553eee47fe03270ba188.setContent(html_26e244ac8efe9d1ea7383dcc82879405);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bcdbc41698dfb16514791346042774c4.bindPopup(popup_a32d504bb195553eee47fe03270ba188)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e2c4ea71e18926ab9171ef81bb61edc = L.circleMarker(\\n\",\n       \"                [37.4014, 121.5992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b786d00d81c6379ce1e11274e8286516 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4243daaf46e1bec7968b712a375dd9f1 = $(`&lt;div id=&quot;html_4243daaf46e1bec7968b712a375dd9f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5992             latitude:37.4014             PM2_5:26.3627451             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b786d00d81c6379ce1e11274e8286516.setContent(html_4243daaf46e1bec7968b712a375dd9f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e2c4ea71e18926ab9171ef81bb61edc.bindPopup(popup_b786d00d81c6379ce1e11274e8286516)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6ccc6953f086a9c03531dced53393f3 = L.circleMarker(\\n\",\n       \"                [29.709, 106.452],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c423520b1d125ee94c4155b9c3dc1b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2193864dcd5b52cfc94ef082f5009761 = $(`&lt;div id=&quot;html_2193864dcd5b52cfc94ef082f5009761&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.452             latitude:29.709             PM2_5:32.58450704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c423520b1d125ee94c4155b9c3dc1b0.setContent(html_2193864dcd5b52cfc94ef082f5009761);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6ccc6953f086a9c03531dced53393f3.bindPopup(popup_0c423520b1d125ee94c4155b9c3dc1b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db7cd53f9bee7dc9d51f951b756f180e = L.circleMarker(\\n\",\n       \"                [43.8711, 87.5525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7672b15367d1f3cd17bb403911055b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf95f965efd9510ea14ea5898c235b8c = $(`&lt;div id=&quot;html_cf95f965efd9510ea14ea5898c235b8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5525             latitude:43.8711             PM2_5:61.29261364             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7672b15367d1f3cd17bb403911055b3.setContent(html_cf95f965efd9510ea14ea5898c235b8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db7cd53f9bee7dc9d51f951b756f180e.bindPopup(popup_a7672b15367d1f3cd17bb403911055b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_efda69f5f46e72d58320af08b7a6c8d4 = L.circleMarker(\\n\",\n       \"                [43.6267, 122.2603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78d52904280aeff5a8ce3402ca7f59cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9a9241c50bf96dcd747058df3facf83 = $(`&lt;div id=&quot;html_e9a9241c50bf96dcd747058df3facf83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2603             latitude:43.6267             PM2_5:21.67696629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78d52904280aeff5a8ce3402ca7f59cc.setContent(html_e9a9241c50bf96dcd747058df3facf83);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_efda69f5f46e72d58320af08b7a6c8d4.bindPopup(popup_78d52904280aeff5a8ce3402ca7f59cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e8df5061542ad80a3f94b0be314f334 = L.circleMarker(\\n\",\n       \"                [22.75, 114.085],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_178b43b51310e8ebf42034f85efddafb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5eccd49110ed54d9efbe0a3763cdc66 = $(`&lt;div id=&quot;html_e5eccd49110ed54d9efbe0a3763cdc66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.085             latitude:22.75             PM2_5:34.49715909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_178b43b51310e8ebf42034f85efddafb.setContent(html_e5eccd49110ed54d9efbe0a3763cdc66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e8df5061542ad80a3f94b0be314f334.bindPopup(popup_178b43b51310e8ebf42034f85efddafb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_309347baa3e5e4c25ff58b37838e228e = L.circleMarker(\\n\",\n       \"                [34.429, 115.6558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24d0a869c394e6add792d76f6bd7c4cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff32bfa342841742259d880cc27291d6 = $(`&lt;div id=&quot;html_ff32bfa342841742259d880cc27291d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6558             latitude:34.429             PM2_5:55.75             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24d0a869c394e6add792d76f6bd7c4cc.setContent(html_ff32bfa342841742259d880cc27291d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_309347baa3e5e4c25ff58b37838e228e.bindPopup(popup_24d0a869c394e6add792d76f6bd7c4cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4de8bf82bf59b71109281c1623b330bb = L.circleMarker(\\n\",\n       \"                [44.5782, 129.6115],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38a6e1690bec940ad77239aef43745eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1e5cf11db41f54d6f0a1322ea40fe1a = $(`&lt;div id=&quot;html_d1e5cf11db41f54d6f0a1322ea40fe1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6115             latitude:44.5782             PM2_5:22.02089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38a6e1690bec940ad77239aef43745eb.setContent(html_d1e5cf11db41f54d6f0a1322ea40fe1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4de8bf82bf59b71109281c1623b330bb.bindPopup(popup_38a6e1690bec940ad77239aef43745eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a0e8cd44e54116a4fb2033dac88e891 = L.circleMarker(\\n\",\n       \"                [39.9716, 116.473],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96ead1881d67e0d8d1239ee8e90642ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6fd2678f78dc6fcec384b1773b88b9e8 = $(`&lt;div id=&quot;html_6fd2678f78dc6fcec384b1773b88b9e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.473             latitude:39.9716             PM2_5:53.18907563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96ead1881d67e0d8d1239ee8e90642ab.setContent(html_6fd2678f78dc6fcec384b1773b88b9e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a0e8cd44e54116a4fb2033dac88e891.bindPopup(popup_96ead1881d67e0d8d1239ee8e90642ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6abf83d0b47138239b0b594948cb068d = L.circleMarker(\\n\",\n       \"                [38.8416, 115.4612],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b3de5f244b93c617c9199fe5d360e566 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fef05b97962eeb83f5e4b196966aa97b = $(`&lt;div id=&quot;html_fef05b97962eeb83f5e4b196966aa97b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.4612             latitude:38.8416             PM2_5:57.22093023             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b3de5f244b93c617c9199fe5d360e566.setContent(html_fef05b97962eeb83f5e4b196966aa97b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6abf83d0b47138239b0b594948cb068d.bindPopup(popup_b3de5f244b93c617c9199fe5d360e566)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf23ba81f45d0aacb4cc9fd565901042 = L.circleMarker(\\n\",\n       \"                [23.4792, 111.2897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d82da13a6adac0da566e1506edacf903 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_084262842865d9785f0fb60b905e9e77 = $(`&lt;div id=&quot;html_084262842865d9785f0fb60b905e9e77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2897             latitude:23.4792             PM2_5:35.94598338             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d82da13a6adac0da566e1506edacf903.setContent(html_084262842865d9785f0fb60b905e9e77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf23ba81f45d0aacb4cc9fd565901042.bindPopup(popup_d82da13a6adac0da566e1506edacf903)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd07c924caf7ad6ad5c086df7584b967 = L.circleMarker(\\n\",\n       \"                [30.6414, 114.2131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a90e177d6f2b231e3545bcabeb60b1f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d5901fb57f957ebe78e8092219dbf4e = $(`&lt;div id=&quot;html_1d5901fb57f957ebe78e8092219dbf4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2131             latitude:30.6414             PM2_5:48.2254902             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a90e177d6f2b231e3545bcabeb60b1f1.setContent(html_1d5901fb57f957ebe78e8092219dbf4e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd07c924caf7ad6ad5c086df7584b967.bindPopup(popup_a90e177d6f2b231e3545bcabeb60b1f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9691d3884d0aab07a42f588a6c34c02b = L.circleMarker(\\n\",\n       \"                [37.1013, 79.9117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87b5e736c44f194205bf7a726837d995 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe40debd91626f2387d3ba03a5b969a7 = $(`&lt;div id=&quot;html_fe40debd91626f2387d3ba03a5b969a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:79.9117             latitude:37.1013             PM2_5:131.0946328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87b5e736c44f194205bf7a726837d995.setContent(html_fe40debd91626f2387d3ba03a5b969a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9691d3884d0aab07a42f588a6c34c02b.bindPopup(popup_87b5e736c44f194205bf7a726837d995)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9eae575edc184a1b2d6744e10b4b7579 = L.circleMarker(\\n\",\n       \"                [28.76389, 104.6417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f299913124175629614d3e6c54090fd3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2f189050b124c48dfb7708933b80429 = $(`&lt;div id=&quot;html_c2f189050b124c48dfb7708933b80429&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6417             latitude:28.76389             PM2_5:46.44150418             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f299913124175629614d3e6c54090fd3.setContent(html_c2f189050b124c48dfb7708933b80429);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9eae575edc184a1b2d6744e10b4b7579.bindPopup(popup_f299913124175629614d3e6c54090fd3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6b1544dc550d720fada8a88896a94a1 = L.circleMarker(\\n\",\n       \"                [35.0622, 118.2939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31a8ddec4c8fe0453fe97e5df5d31d99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4467cbf1519666490cd9a6e023b034a6 = $(`&lt;div id=&quot;html_4467cbf1519666490cd9a6e023b034a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2939             latitude:35.0622             PM2_5:41.16340782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31a8ddec4c8fe0453fe97e5df5d31d99.setContent(html_4467cbf1519666490cd9a6e023b034a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6b1544dc550d720fada8a88896a94a1.bindPopup(popup_31a8ddec4c8fe0453fe97e5df5d31d99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c90d35a76bc6dec2aeb82862c7c4e88 = L.circleMarker(\\n\",\n       \"                [46.7432, 82.9994],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b5c16f4f29e464db360b12c5343674d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e6f643287a66164717baddc2aca7f37 = $(`&lt;div id=&quot;html_8e6f643287a66164717baddc2aca7f37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.9994             latitude:46.7432             PM2_5:18.03333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b5c16f4f29e464db360b12c5343674d.setContent(html_8e6f643287a66164717baddc2aca7f37);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c90d35a76bc6dec2aeb82862c7c4e88.bindPopup(popup_2b5c16f4f29e464db360b12c5343674d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c5eaa627567927a5968343a6aa71eeb = L.circleMarker(\\n\",\n       \"                [33.6406, 114.6369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82a2454c5dc2997dd0bdfed66193e5b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ac977494f9aff9cff1364756cd7f5a0 = $(`&lt;div id=&quot;html_9ac977494f9aff9cff1364756cd7f5a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6369             latitude:33.6406             PM2_5:53.37290503             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82a2454c5dc2997dd0bdfed66193e5b7.setContent(html_9ac977494f9aff9cff1364756cd7f5a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c5eaa627567927a5968343a6aa71eeb.bindPopup(popup_82a2454c5dc2997dd0bdfed66193e5b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc4043be9846b640f8fa24e826df587b = L.circleMarker(\\n\",\n       \"                [36.44, 120.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ffa437cdedee89fb5cce03429dae7ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1249b29794d199c06672d5d33ccb1ec = $(`&lt;div id=&quot;html_f1249b29794d199c06672d5d33ccb1ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.61             latitude:36.44             PM2_5:31.77478754             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ffa437cdedee89fb5cce03429dae7ef.setContent(html_f1249b29794d199c06672d5d33ccb1ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc4043be9846b640f8fa24e826df587b.bindPopup(popup_7ffa437cdedee89fb5cce03429dae7ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_807492ebd27edca6eda0a26851d52d6a = L.circleMarker(\\n\",\n       \"                [31.453, 121.115],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_151325f02209a2eb036750919b5e9aa8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57eabae0b3d396cea8712457785f69e6 = $(`&lt;div id=&quot;html_57eabae0b3d396cea8712457785f69e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.115             latitude:31.453             PM2_5:37.25837989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_151325f02209a2eb036750919b5e9aa8.setContent(html_57eabae0b3d396cea8712457785f69e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_807492ebd27edca6eda0a26851d52d6a.bindPopup(popup_151325f02209a2eb036750919b5e9aa8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aae7fe5708c9d323cc78a62616c2ddf3 = L.circleMarker(\\n\",\n       \"                [28.6839, 115.8886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_861e98de208ec527556fa1da17762486 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_793f0a87feb09693d4149a15eba59b2d = $(`&lt;div id=&quot;html_793f0a87feb09693d4149a15eba59b2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8886             latitude:28.6839             PM2_5:31.19067797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_861e98de208ec527556fa1da17762486.setContent(html_793f0a87feb09693d4149a15eba59b2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aae7fe5708c9d323cc78a62616c2ddf3.bindPopup(popup_861e98de208ec527556fa1da17762486)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_584b31d298131197894ca6532545250f = L.circleMarker(\\n\",\n       \"                [36.1939, 113.0972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02a78a74467df12f372152ebd12bf355 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e26863c796aab615e9f423f721d7918 = $(`&lt;div id=&quot;html_5e26863c796aab615e9f423f721d7918&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0972             latitude:36.1939             PM2_5:67.90720222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02a78a74467df12f372152ebd12bf355.setContent(html_5e26863c796aab615e9f423f721d7918);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_584b31d298131197894ca6532545250f.bindPopup(popup_02a78a74467df12f372152ebd12bf355)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21c5d03769e0e9d15ff6aa320565cebc = L.circleMarker(\\n\",\n       \"                [24.3289, 116.1278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85efbeb6e740add4897f196f5c2fb023 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24e3b18bbb90f66addeb24b6f79057cb = $(`&lt;div id=&quot;html_24e3b18bbb90f66addeb24b6f79057cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1278             latitude:24.3289             PM2_5:23.67318436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85efbeb6e740add4897f196f5c2fb023.setContent(html_24e3b18bbb90f66addeb24b6f79057cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21c5d03769e0e9d15ff6aa320565cebc.bindPopup(popup_85efbeb6e740add4897f196f5c2fb023)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00e466876531611a1b345e8e394ded38 = L.circleMarker(\\n\",\n       \"                [29.4822, 106.364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ddd825a9b95ce624f31a387007c22afe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8982aaeaed1a470afa92b7964e2e06be = $(`&lt;div id=&quot;html_8982aaeaed1a470afa92b7964e2e06be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.364             latitude:29.4822             PM2_5:41.16714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ddd825a9b95ce624f31a387007c22afe.setContent(html_8982aaeaed1a470afa92b7964e2e06be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00e466876531611a1b345e8e394ded38.bindPopup(popup_ddd825a9b95ce624f31a387007c22afe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40442e6273e2634823108e1cab0335ce = L.circleMarker(\\n\",\n       \"                [40.7094, 122.2703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c3b95db0a0419f2a2f66bccd6a1ef56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2cc8dec6404487049f89a647fe8776e1 = $(`&lt;div id=&quot;html_2cc8dec6404487049f89a647fe8776e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2703             latitude:40.7094             PM2_5:32.92200557             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c3b95db0a0419f2a2f66bccd6a1ef56.setContent(html_2cc8dec6404487049f89a647fe8776e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40442e6273e2634823108e1cab0335ce.bindPopup(popup_9c3b95db0a0419f2a2f66bccd6a1ef56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4cef3b360624b25e4ec7aa5a27db58b = L.circleMarker(\\n\",\n       \"                [30.6133, 105.68],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4141561c7282a77582c5eaf3f2783ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c2765ed439322b3b31666c5b00e4fbc = $(`&lt;div id=&quot;html_9c2765ed439322b3b31666c5b00e4fbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.68             latitude:30.6133             PM2_5:41.39944134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4141561c7282a77582c5eaf3f2783ec.setContent(html_9c2765ed439322b3b31666c5b00e4fbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4cef3b360624b25e4ec7aa5a27db58b.bindPopup(popup_b4141561c7282a77582c5eaf3f2783ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_625ad22b3577cb6f4a72f3a8c53c4a38 = L.circleMarker(\\n\",\n       \"                [23.1569, 113.281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5606f57f5d64a88ad1487facd19bd0cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_188324ac9ac13ca5a119b8a39da433eb = $(`&lt;div id=&quot;html_188324ac9ac13ca5a119b8a39da433eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.281             latitude:23.1569             PM2_5:35.75487465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5606f57f5d64a88ad1487facd19bd0cb.setContent(html_188324ac9ac13ca5a119b8a39da433eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_625ad22b3577cb6f4a72f3a8c53c4a38.bindPopup(popup_5606f57f5d64a88ad1487facd19bd0cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fb15ffa437912f3a7d63a581382328a = L.circleMarker(\\n\",\n       \"                [32.0005, 120.86],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_248c74ba330f277e18bd8c993f862a54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c11ef3d8240453caa21a676bdca5f76 = $(`&lt;div id=&quot;html_5c11ef3d8240453caa21a676bdca5f76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.86             latitude:32.0005             PM2_5:37.98735955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_248c74ba330f277e18bd8c993f862a54.setContent(html_5c11ef3d8240453caa21a676bdca5f76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fb15ffa437912f3a7d63a581382328a.bindPopup(popup_248c74ba330f277e18bd8c993f862a54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d173dab38c4b75c5232d9e396e9ebc72 = L.circleMarker(\\n\",\n       \"                [38.0108, 112.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9e852f588ef99d0ef77ab3504ef77ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_514baebdb0383dfbdb487b4743488f7e = $(`&lt;div id=&quot;html_514baebdb0383dfbdb487b4743488f7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.434             latitude:38.0108             PM2_5:50.17329545             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9e852f588ef99d0ef77ab3504ef77ea.setContent(html_514baebdb0383dfbdb487b4743488f7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d173dab38c4b75c5232d9e396e9ebc72.bindPopup(popup_c9e852f588ef99d0ef77ab3504ef77ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cae155243f62be29ed4d67153039b7b6 = L.circleMarker(\\n\",\n       \"                [29.1128, 119.6533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fcef76edfb76cc7aa3a1d891f7c0f83d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c6343311f47fcc300499926479e5ce7 = $(`&lt;div id=&quot;html_9c6343311f47fcc300499926479e5ce7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6533             latitude:29.1128             PM2_5:35.30779944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fcef76edfb76cc7aa3a1d891f7c0f83d.setContent(html_9c6343311f47fcc300499926479e5ce7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cae155243f62be29ed4d67153039b7b6.bindPopup(popup_fcef76edfb76cc7aa3a1d891f7c0f83d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff2def058418221e3f6dda9766e04880 = L.circleMarker(\\n\",\n       \"                [27.4948, 114.0944],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c268c58813e328a0880085fd18c999f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21c208a908407df7ff40158208a781d7 = $(`&lt;div id=&quot;html_21c208a908407df7ff40158208a781d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0944             latitude:27.4948             PM2_5:22.06590258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c268c58813e328a0880085fd18c999f.setContent(html_21c208a908407df7ff40158208a781d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff2def058418221e3f6dda9766e04880.bindPopup(popup_1c268c58813e328a0880085fd18c999f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd48f42661246bb1f3773ab3883f0b7a = L.circleMarker(\\n\",\n       \"                [42.9559, 89.1673],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d47254e5393353e4f7c79786a44c789e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4da8b5bb59c8555264d23b9b45bca05d = $(`&lt;div id=&quot;html_4da8b5bb59c8555264d23b9b45bca05d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:89.1673             latitude:42.9559             PM2_5:68.71764706             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d47254e5393353e4f7c79786a44c789e.setContent(html_4da8b5bb59c8555264d23b9b45bca05d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd48f42661246bb1f3773ab3883f0b7a.bindPopup(popup_d47254e5393353e4f7c79786a44c789e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_792ac77b80fb48791cd03f29b7fdd989 = L.circleMarker(\\n\",\n       \"                [40.1114, 113.2803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab6c84030f5c6dcb7475270cd33024ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1bf42187b6aaf9d61c37878677e57f77 = $(`&lt;div id=&quot;html_1bf42187b6aaf9d61c37878677e57f77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2803             latitude:40.1114             PM2_5:39.94444444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab6c84030f5c6dcb7475270cd33024ff.setContent(html_1bf42187b6aaf9d61c37878677e57f77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_792ac77b80fb48791cd03f29b7fdd989.bindPopup(popup_ab6c84030f5c6dcb7475270cd33024ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d5cc8baa62e527d9b7116fa3a2bb5e55 = L.circleMarker(\\n\",\n       \"                [27.8867, 113.095],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d6b17c9ae5fb6d7cf497669f66976c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8024d9caa2e1e08538f2a6d255fdabe4 = $(`&lt;div id=&quot;html_8024d9caa2e1e08538f2a6d255fdabe4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.095             latitude:27.8867             PM2_5:42.7122905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d6b17c9ae5fb6d7cf497669f66976c2.setContent(html_8024d9caa2e1e08538f2a6d255fdabe4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d5cc8baa62e527d9b7116fa3a2bb5e55.bindPopup(popup_9d6b17c9ae5fb6d7cf497669f66976c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc5936a056016e652e52f70a37371e16 = L.circleMarker(\\n\",\n       \"                [38.9389, 100.4497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34250f530355dcc3cde951e97a837418 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c257236bc93e6b3ad45408b20df85f1 = $(`&lt;div id=&quot;html_4c257236bc93e6b3ad45408b20df85f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.4497             latitude:38.9389             PM2_5:27.20277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34250f530355dcc3cde951e97a837418.setContent(html_4c257236bc93e6b3ad45408b20df85f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc5936a056016e652e52f70a37371e16.bindPopup(popup_34250f530355dcc3cde951e97a837418)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_205c72279bcc6f66e4866ac56ce331d2 = L.circleMarker(\\n\",\n       \"                [26.8733, 112.6197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d9158c1028ddeec792b38e6d4883e22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49dd767f07838aa232ae092b48d4aef7 = $(`&lt;div id=&quot;html_49dd767f07838aa232ae092b48d4aef7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6197             latitude:26.8733             PM2_5:47.85070423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d9158c1028ddeec792b38e6d4883e22.setContent(html_49dd767f07838aa232ae092b48d4aef7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_205c72279bcc6f66e4866ac56ce331d2.bindPopup(popup_1d9158c1028ddeec792b38e6d4883e22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b15428112737ea1796849d8b7c58594 = L.circleMarker(\\n\",\n       \"                [44.3075, 86.0697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_847b5f4d5b631212972d9e583052b7a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_589b752531987eacb7f0b02ddb84bb4d = $(`&lt;div id=&quot;html_589b752531987eacb7f0b02ddb84bb4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.0697             latitude:44.3075             PM2_5:63.06545961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_847b5f4d5b631212972d9e583052b7a7.setContent(html_589b752531987eacb7f0b02ddb84bb4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b15428112737ea1796849d8b7c58594.bindPopup(popup_847b5f4d5b631212972d9e583052b7a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c68de6064b66ab08432bb39d5a345c6f = L.circleMarker(\\n\",\n       \"                [37.9311, 102.6219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4477b38e1861f05cfb5796c5f394e90 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_deef4c8261081eedea18d80d592b958d = $(`&lt;div id=&quot;html_deef4c8261081eedea18d80d592b958d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6219             latitude:37.9311             PM2_5:36.92837079             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4477b38e1861f05cfb5796c5f394e90.setContent(html_deef4c8261081eedea18d80d592b958d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c68de6064b66ab08432bb39d5a345c6f.bindPopup(popup_c4477b38e1861f05cfb5796c5f394e90)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_088c8506b1c2044490f499d7c955612f = L.circleMarker(\\n\",\n       \"                [28.7994, 115.742],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38de12a9ec71d55ef842fd13a5ce3e9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b7b635d6245caa8ab485b605f3c82a0 = $(`&lt;div id=&quot;html_5b7b635d6245caa8ab485b605f3c82a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.742             latitude:28.7994             PM2_5:27.25360231             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38de12a9ec71d55ef842fd13a5ce3e9e.setContent(html_5b7b635d6245caa8ab485b605f3c82a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_088c8506b1c2044490f499d7c955612f.bindPopup(popup_38de12a9ec71d55ef842fd13a5ce3e9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c10d80ff2ddd6a582690aa11dd6a21a8 = L.circleMarker(\\n\",\n       \"                [35.4894, 112.8664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2650bb2d365a2f5fefa8d878caf41f6f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52630b5c8a7a572655c9af3563cedb15 = $(`&lt;div id=&quot;html_52630b5c8a7a572655c9af3563cedb15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8664             latitude:35.4894             PM2_5:56.08169014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2650bb2d365a2f5fefa8d878caf41f6f.setContent(html_52630b5c8a7a572655c9af3563cedb15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c10d80ff2ddd6a582690aa11dd6a21a8.bindPopup(popup_2650bb2d365a2f5fefa8d878caf41f6f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56ddfd7712f7795329e0811b84ecc408 = L.circleMarker(\\n\",\n       \"                [44.9079, 82.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57434f5ee0a9288f08484583ad185eb8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50d8827fd54fff3214e802a885ba8efe = $(`&lt;div id=&quot;html_50d8827fd54fff3214e802a885ba8efe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.0485             latitude:44.9079             PM2_5:20.61699164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57434f5ee0a9288f08484583ad185eb8.setContent(html_50d8827fd54fff3214e802a885ba8efe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56ddfd7712f7795329e0811b84ecc408.bindPopup(popup_57434f5ee0a9288f08484583ad185eb8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30ecdba3870db172eae7131e7ae0bec1 = L.circleMarker(\\n\",\n       \"                [40.5546, 110.0377],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6088965da606180c6b1baa306c3ec889 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60c93779c2ac0be598b5bfd1e722c2b7 = $(`&lt;div id=&quot;html_60c93779c2ac0be598b5bfd1e722c2b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0377             latitude:40.5546             PM2_5:42.96829971             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6088965da606180c6b1baa306c3ec889.setContent(html_60c93779c2ac0be598b5bfd1e722c2b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30ecdba3870db172eae7131e7ae0bec1.bindPopup(popup_6088965da606180c6b1baa306c3ec889)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93abc5d33795983f8ea79e04cc44dc20 = L.circleMarker(\\n\",\n       \"                [26.2708, 117.6353],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97eb6f54e28f722d6ccaa198d052478b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_034be2955b52fa6a49afd1c0fa70f498 = $(`&lt;div id=&quot;html_034be2955b52fa6a49afd1c0fa70f498&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6353             latitude:26.2708             PM2_5:26.2752809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97eb6f54e28f722d6ccaa198d052478b.setContent(html_034be2955b52fa6a49afd1c0fa70f498);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93abc5d33795983f8ea79e04cc44dc20.bindPopup(popup_97eb6f54e28f722d6ccaa198d052478b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6bee33901795aca5d644b6f25551fcb4 = L.circleMarker(\\n\",\n       \"                [39.3606, 112.4549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1732d1144799c83afcaca74f9075402f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3635633251cd434207065a3ca0f739e9 = $(`&lt;div id=&quot;html_3635633251cd434207065a3ca0f739e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4549             latitude:39.3606             PM2_5:36.20538244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1732d1144799c83afcaca74f9075402f.setContent(html_3635633251cd434207065a3ca0f739e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6bee33901795aca5d644b6f25551fcb4.bindPopup(popup_1732d1144799c83afcaca74f9075402f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25cfbdc246bc7d4e826b974061b197af = L.circleMarker(\\n\",\n       \"                [23.0528, 112.471],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ceb841b108bf01d182320af4759acea4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e54b4d3c2d05440e3baebded70aa3f7f = $(`&lt;div id=&quot;html_e54b4d3c2d05440e3baebded70aa3f7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.471             latitude:23.0528             PM2_5:38.88826816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ceb841b108bf01d182320af4759acea4.setContent(html_e54b4d3c2d05440e3baebded70aa3f7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25cfbdc246bc7d4e826b974061b197af.bindPopup(popup_ceb841b108bf01d182320af4759acea4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_095739e00f325c10514afe94a68f1871 = L.circleMarker(\\n\",\n       \"                [35.0896, 118.4023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_248a7ffe20f6d2aeb0a055b5854a7082 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e577921f13322237982e401a3d9e05e = $(`&lt;div id=&quot;html_4e577921f13322237982e401a3d9e05e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4023             latitude:35.0896             PM2_5:47.18435754             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_248a7ffe20f6d2aeb0a055b5854a7082.setContent(html_4e577921f13322237982e401a3d9e05e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_095739e00f325c10514afe94a68f1871.bindPopup(popup_248a7ffe20f6d2aeb0a055b5854a7082)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fff188ed48467d101b814a6d1c3814f8 = L.circleMarker(\\n\",\n       \"                [41.1219, 121.2008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2e06a531970c1b06db2fd53f5e65c8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_450e9a7adaee0a724a0f728de4deeaa3 = $(`&lt;div id=&quot;html_450e9a7adaee0a724a0f728de4deeaa3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2008             latitude:41.1219             PM2_5:31.9719888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2e06a531970c1b06db2fd53f5e65c8f.setContent(html_450e9a7adaee0a724a0f728de4deeaa3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fff188ed48467d101b814a6d1c3814f8.bindPopup(popup_c2e06a531970c1b06db2fd53f5e65c8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_123bb3f2efe3262373a06d9456caee21 = L.circleMarker(\\n\",\n       \"                [31.2864, 120.628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31538a38278e2b4883f3a2403ec0a7de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24dcdc28ec23cb39988f72bd7d8fc74f = $(`&lt;div id=&quot;html_24dcdc28ec23cb39988f72bd7d8fc74f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.628             latitude:31.2864             PM2_5:41.43156425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31538a38278e2b4883f3a2403ec0a7de.setContent(html_24dcdc28ec23cb39988f72bd7d8fc74f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_123bb3f2efe3262373a06d9456caee21.bindPopup(popup_31538a38278e2b4883f3a2403ec0a7de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a816e7ab56bc7d2db49b4c7504800f22 = L.circleMarker(\\n\",\n       \"                [27.0983, 115.0075],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_abd910caddc300f453e32df301e7a6c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1a29aba2de29fd526626a5afb9c993f = $(`&lt;div id=&quot;html_a1a29aba2de29fd526626a5afb9c993f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0075             latitude:27.0983             PM2_5:52.13370474             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_abd910caddc300f453e32df301e7a6c7.setContent(html_a1a29aba2de29fd526626a5afb9c993f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a816e7ab56bc7d2db49b4c7504800f22.bindPopup(popup_abd910caddc300f453e32df301e7a6c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c6022fc52437468d3ed1476a3b34d32 = L.circleMarker(\\n\",\n       \"                [40.0181, 119.7624],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20c093208b18e368daeefcfffe1871bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_240e4e0ae83f491ad7a8b341ebc8deaf = $(`&lt;div id=&quot;html_240e4e0ae83f491ad7a8b341ebc8deaf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7624             latitude:40.0181             PM2_5:27.50418994             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20c093208b18e368daeefcfffe1871bf.setContent(html_240e4e0ae83f491ad7a8b341ebc8deaf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c6022fc52437468d3ed1476a3b34d32.bindPopup(popup_20c093208b18e368daeefcfffe1871bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eee37c8c98ce7e1123b57063462eb881 = L.circleMarker(\\n\",\n       \"                [21.2567, 110.4558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f972eab4c24094c677bf8c561bea253 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08eb67628c21a394e4227abd3e5ac82f = $(`&lt;div id=&quot;html_08eb67628c21a394e4227abd3e5ac82f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4558             latitude:21.2567             PM2_5:25.92837079             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f972eab4c24094c677bf8c561bea253.setContent(html_08eb67628c21a394e4227abd3e5ac82f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eee37c8c98ce7e1123b57063462eb881.bindPopup(popup_5f972eab4c24094c677bf8c561bea253)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d7490aa1ad41f9f589b135653cb803c = L.circleMarker(\\n\",\n       \"                [46.8267, 130.3961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_155c63a91b3631063cb24fdee7b1dae4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5885391100e859067e734fe483903be1 = $(`&lt;div id=&quot;html_5885391100e859067e734fe483903be1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3961             latitude:46.8267             PM2_5:31.34682081             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_155c63a91b3631063cb24fdee7b1dae4.setContent(html_5885391100e859067e734fe483903be1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d7490aa1ad41f9f589b135653cb803c.bindPopup(popup_155c63a91b3631063cb24fdee7b1dae4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_404ac96bad5626e22bd04efeaafbadfc = L.circleMarker(\\n\",\n       \"                [27.7914, 114.3703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ce902306c13c323034ce972d7ba6d9b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4793da148c932f1710c2542649f9a716 = $(`&lt;div id=&quot;html_4793da148c932f1710c2542649f9a716&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3703             latitude:27.7914             PM2_5:50.81476323             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ce902306c13c323034ce972d7ba6d9b.setContent(html_4793da148c932f1710c2542649f9a716);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_404ac96bad5626e22bd04efeaafbadfc.bindPopup(popup_7ce902306c13c323034ce972d7ba6d9b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fd0aa6d9afe0f35f8b24ca013a2abeb = L.circleMarker(\\n\",\n       \"                [46.0756, 121.9462],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc26d20a6e470b00b3140e849d17f4cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6d617178e65b585dda59f070eba2630 = $(`&lt;div id=&quot;html_f6d617178e65b585dda59f070eba2630&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.9462             latitude:46.0756             PM2_5:9.045961003             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc26d20a6e470b00b3140e849d17f4cb.setContent(html_f6d617178e65b585dda59f070eba2630);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fd0aa6d9afe0f35f8b24ca013a2abeb.bindPopup(popup_dc26d20a6e470b00b3140e849d17f4cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2f93fe3de7c15e422c87e2b04206b15 = L.circleMarker(\\n\",\n       \"                [24.3694, 102.5778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df6d7b27ca4c7217d900884431a83e48 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e70b8e07280cd9f01a84ed0e7caf7a65 = $(`&lt;div id=&quot;html_e70b8e07280cd9f01a84ed0e7caf7a65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5778             latitude:24.3694             PM2_5:17.84818942             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df6d7b27ca4c7217d900884431a83e48.setContent(html_e70b8e07280cd9f01a84ed0e7caf7a65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2f93fe3de7c15e422c87e2b04206b15.bindPopup(popup_df6d7b27ca4c7217d900884431a83e48)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6cd67113f1cb9ab4c24ec299674f4d89 = L.circleMarker(\\n\",\n       \"                [23.1886, 112.863],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4b6086804c4d508b9ddf3d4df0992ab8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e83eeedff6b34a3d85bef91ef390283e = $(`&lt;div id=&quot;html_e83eeedff6b34a3d85bef91ef390283e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.863             latitude:23.1886             PM2_5:38.29305556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4b6086804c4d508b9ddf3d4df0992ab8.setContent(html_e83eeedff6b34a3d85bef91ef390283e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6cd67113f1cb9ab4c24ec299674f4d89.bindPopup(popup_4b6086804c4d508b9ddf3d4df0992ab8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cccb5dfec12f746eabdc8f50120fff56 = L.circleMarker(\\n\",\n       \"                [37.9723, 106.196],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afc0722dcb93be956f2e9767c8dda19f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d92b92aaa6159ba7a9d2d2c0a40dc20 = $(`&lt;div id=&quot;html_9d92b92aaa6159ba7a9d2d2c0a40dc20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.196             latitude:37.9723             PM2_5:31.52752294             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afc0722dcb93be956f2e9767c8dda19f.setContent(html_9d92b92aaa6159ba7a9d2d2c0a40dc20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cccb5dfec12f746eabdc8f50120fff56.bindPopup(popup_afc0722dcb93be956f2e9767c8dda19f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0618a40dc74c8756f043c742411cd00b = L.circleMarker(\\n\",\n       \"                [30.9285, 113.9153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6591ede5b6604590cc5976c678b1b3d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5dbf91e18c04fa8ebcee0a0491312892 = $(`&lt;div id=&quot;html_5dbf91e18c04fa8ebcee0a0491312892&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.9153             latitude:30.9285             PM2_5:42.16432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6591ede5b6604590cc5976c678b1b3d1.setContent(html_5dbf91e18c04fa8ebcee0a0491312892);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0618a40dc74c8756f043c742411cd00b.bindPopup(popup_6591ede5b6604590cc5976c678b1b3d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cffd23f22c749fc946415223cdee6697 = L.circleMarker(\\n\",\n       \"                [36.61763, 114.5129],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5aaca1cdff6784c01ee60ba28d1658c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c92101ed09cc9bed82dd2f01a476b87 = $(`&lt;div id=&quot;html_0c92101ed09cc9bed82dd2f01a476b87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5129             latitude:36.61763             PM2_5:72.55013928             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5aaca1cdff6784c01ee60ba28d1658c9.setContent(html_0c92101ed09cc9bed82dd2f01a476b87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cffd23f22c749fc946415223cdee6697.bindPopup(popup_5aaca1cdff6784c01ee60ba28d1658c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dba2abbe0dd3a8922da9262210cafb54 = L.circleMarker(\\n\",\n       \"                [36.061, 114.483],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c7246a9d73adf36daee4da2436f988a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a38c09e4cb980b580314621c928eb47 = $(`&lt;div id=&quot;html_4a38c09e4cb980b580314621c928eb47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.483             latitude:36.061             PM2_5:60.56695157             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c7246a9d73adf36daee4da2436f988a.setContent(html_4a38c09e4cb980b580314621c928eb47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dba2abbe0dd3a8922da9262210cafb54.bindPopup(popup_1c7246a9d73adf36daee4da2436f988a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3c781ab151335a7c95f052291a0d270 = L.circleMarker(\\n\",\n       \"                [27.3361, 103.7225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d27db10cdc6e6e956a63f8ba9bf61ef8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd774175c05217d21a81f2d8594e2d5d = $(`&lt;div id=&quot;html_bd774175c05217d21a81f2d8594e2d5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7225             latitude:27.3361             PM2_5:22.50840336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d27db10cdc6e6e956a63f8ba9bf61ef8.setContent(html_bd774175c05217d21a81f2d8594e2d5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3c781ab151335a7c95f052291a0d270.bindPopup(popup_d27db10cdc6e6e956a63f8ba9bf61ef8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f91727b5bbdfe99eb5d07452424570b7 = L.circleMarker(\\n\",\n       \"                [23.5486, 116.3242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d9b97fcda88777930a6d54eb988e40c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_022107e2156568391012cf0d2aeb1572 = $(`&lt;div id=&quot;html_022107e2156568391012cf0d2aeb1572&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3242             latitude:23.5486             PM2_5:32.28             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d9b97fcda88777930a6d54eb988e40c.setContent(html_022107e2156568391012cf0d2aeb1572);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f91727b5bbdfe99eb5d07452424570b7.bindPopup(popup_2d9b97fcda88777930a6d54eb988e40c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5992a06b551ba027394a4ba5479fc5d = L.circleMarker(\\n\",\n       \"                [26.585, 101.7169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e10156840a759fc5534f7a0e3bbc1c24 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4cb374ac7c1a77ce24d98b4dfd7c3938 = $(`&lt;div id=&quot;html_4cb374ac7c1a77ce24d98b4dfd7c3938&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7169             latitude:26.585             PM2_5:32.77222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e10156840a759fc5534f7a0e3bbc1c24.setContent(html_4cb374ac7c1a77ce24d98b4dfd7c3938);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5992a06b551ba027394a4ba5479fc5d.bindPopup(popup_e10156840a759fc5534f7a0e3bbc1c24)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0506237aea8e8ea5119d7397d7fa589 = L.circleMarker(\\n\",\n       \"                [28.2558, 109.6414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ce778a85d8e2799740c51888baaa4ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7b54ebda28e98a8b13d00aeb7591964 = $(`&lt;div id=&quot;html_f7b54ebda28e98a8b13d00aeb7591964&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6414             latitude:28.2558             PM2_5:32.74358974             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ce778a85d8e2799740c51888baaa4ba.setContent(html_f7b54ebda28e98a8b13d00aeb7591964);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0506237aea8e8ea5119d7397d7fa589.bindPopup(popup_3ce778a85d8e2799740c51888baaa4ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0b48d8a52f0600d761f726a07f53b45 = L.circleMarker(\\n\",\n       \"                [30.7478, 120.726],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c09ebf8a79846d9542897fd715e98a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_646c2358c3e210d35e7d865b49e05d74 = $(`&lt;div id=&quot;html_646c2358c3e210d35e7d865b49e05d74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.726             latitude:30.7478             PM2_5:43.09888579             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c09ebf8a79846d9542897fd715e98a4.setContent(html_646c2358c3e210d35e7d865b49e05d74);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0b48d8a52f0600d761f726a07f53b45.bindPopup(popup_1c09ebf8a79846d9542897fd715e98a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea5a8897ae5ed62eeeb453954dbc133b = L.circleMarker(\\n\",\n       \"                [39.2133, 117.1837],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ad395a106bd9e39e81b68872208cfc0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc229222892fae223fc6e0ceaa076c56 = $(`&lt;div id=&quot;html_bc229222892fae223fc6e0ceaa076c56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1837             latitude:39.2133             PM2_5:50.36938202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ad395a106bd9e39e81b68872208cfc0.setContent(html_bc229222892fae223fc6e0ceaa076c56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea5a8897ae5ed62eeeb453954dbc133b.bindPopup(popup_9ad395a106bd9e39e81b68872208cfc0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9052e01d1ab07c337662b12c7ce1fa0f = L.circleMarker(\\n\",\n       \"                [24.299, 109.4221],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_493a4d762122ca22ee2e06a8addf3498 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_63720782a27ce59c2ff857d636c5d386 = $(`&lt;div id=&quot;html_63720782a27ce59c2ff857d636c5d386&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4221             latitude:24.299             PM2_5:37.98179272             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_493a4d762122ca22ee2e06a8addf3498.setContent(html_63720782a27ce59c2ff857d636c5d386);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9052e01d1ab07c337662b12c7ce1fa0f.bindPopup(popup_493a4d762122ca22ee2e06a8addf3498)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f7b6b3c899f6180c00291db2f767760 = L.circleMarker(\\n\",\n       \"                [45.6175, 122.8211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6d52fc313abb8bf0a263358de0e7f59f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2aaef4aecd13aa0abff088c45098af37 = $(`&lt;div id=&quot;html_2aaef4aecd13aa0abff088c45098af37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.8211             latitude:45.6175             PM2_5:18.97067039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6d52fc313abb8bf0a263358de0e7f59f.setContent(html_2aaef4aecd13aa0abff088c45098af37);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f7b6b3c899f6180c00291db2f767760.bindPopup(popup_6d52fc313abb8bf0a263358de0e7f59f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aee92bb029a08f82d82c03f4d17e7f60 = L.circleMarker(\\n\",\n       \"                [41.8469, 123.81],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc5e1113551bedcf7fe02c38b40974da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2db56fd231639da2868e37be0ed20ea4 = $(`&lt;div id=&quot;html_2db56fd231639da2868e37be0ed20ea4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.81             latitude:41.8469             PM2_5:40.69088319             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc5e1113551bedcf7fe02c38b40974da.setContent(html_2db56fd231639da2868e37be0ed20ea4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aee92bb029a08f82d82c03f4d17e7f60.bindPopup(popup_dc5e1113551bedcf7fe02c38b40974da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8bfde34c688c9e6a0b224cb3939a0d2d = L.circleMarker(\\n\",\n       \"                [40.0758, 113.2994],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b710f95c8bd919ea561d58e403d367af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93d029b6b2687d05da1143ed599a35f8 = $(`&lt;div id=&quot;html_93d029b6b2687d05da1143ed599a35f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2994             latitude:40.0758             PM2_5:36.50283286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b710f95c8bd919ea561d58e403d367af.setContent(html_93d029b6b2687d05da1143ed599a35f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8bfde34c688c9e6a0b224cb3939a0d2d.bindPopup(popup_b710f95c8bd919ea561d58e403d367af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5df748f63bdbdc050e45e755be88cdf = L.circleMarker(\\n\",\n       \"                [40.0844, 113.2711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7eddd71b708e46ce2f7d666bdcebeec7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30db628a32cb4044794662e854ea5f35 = $(`&lt;div id=&quot;html_30db628a32cb4044794662e854ea5f35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2711             latitude:40.0844             PM2_5:37.62215909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7eddd71b708e46ce2f7d666bdcebeec7.setContent(html_30db628a32cb4044794662e854ea5f35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5df748f63bdbdc050e45e755be88cdf.bindPopup(popup_7eddd71b708e46ce2f7d666bdcebeec7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1266226bc77ce7029368048fb4f322de = L.circleMarker(\\n\",\n       \"                [33.9528, 118.293],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6cb7fffcdcdc932ef50ca97f022d6c4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dee430c52917275e08720f27f7e39681 = $(`&lt;div id=&quot;html_dee430c52917275e08720f27f7e39681&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.293             latitude:33.9528             PM2_5:55.33664773             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6cb7fffcdcdc932ef50ca97f022d6c4c.setContent(html_dee430c52917275e08720f27f7e39681);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1266226bc77ce7029368048fb4f322de.bindPopup(popup_6cb7fffcdcdc932ef50ca97f022d6c4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b09878d197eaedc9e3654578722b2e6f = L.circleMarker(\\n\",\n       \"                [36.0756, 103.712],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a3dc0fd4d2bcc753783537d7116fcd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d021f7b4929702d7a9b587f0d2292d7 = $(`&lt;div id=&quot;html_9d021f7b4929702d7a9b587f0d2292d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.712             latitude:36.0756             PM2_5:54.81601124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a3dc0fd4d2bcc753783537d7116fcd5.setContent(html_9d021f7b4929702d7a9b587f0d2292d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b09878d197eaedc9e3654578722b2e6f.bindPopup(popup_1a3dc0fd4d2bcc753783537d7116fcd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_231610171be2a277324fd7e9537e17bf = L.circleMarker(\\n\",\n       \"                [30.9075, 113.942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0f943af48be2eb2ddcf707c909942fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55fb3636d4c4c03f52cdf00fdd4a0edb = $(`&lt;div id=&quot;html_55fb3636d4c4c03f52cdf00fdd4a0edb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.942             latitude:30.9075             PM2_5:49.76571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0f943af48be2eb2ddcf707c909942fd.setContent(html_55fb3636d4c4c03f52cdf00fdd4a0edb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_231610171be2a277324fd7e9537e17bf.bindPopup(popup_b0f943af48be2eb2ddcf707c909942fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c196e2eddd759e761cfba77a58452c7c = L.circleMarker(\\n\",\n       \"                [47.8515, 88.1267],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_755d4419e3f9c156defbc87ccff599a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5f396edfc894105114ba64551a69c90 = $(`&lt;div id=&quot;html_d5f396edfc894105114ba64551a69c90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.1267             latitude:47.8515             PM2_5:12.43539326             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_755d4419e3f9c156defbc87ccff599a3.setContent(html_d5f396edfc894105114ba64551a69c90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c196e2eddd759e761cfba77a58452c7c.bindPopup(popup_755d4419e3f9c156defbc87ccff599a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef48018c384d34aac11f4c1e0b8d1fd4 = L.circleMarker(\\n\",\n       \"                [23.7106, 113.0208],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b58575f01f6968c18ddeab1b3fea9200 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f12abfdb1ff4a35138965f9f983af5b2 = $(`&lt;div id=&quot;html_f12abfdb1ff4a35138965f9f983af5b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0208             latitude:23.7106             PM2_5:33.74147727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b58575f01f6968c18ddeab1b3fea9200.setContent(html_f12abfdb1ff4a35138965f9f983af5b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef48018c384d34aac11f4c1e0b8d1fd4.bindPopup(popup_b58575f01f6968c18ddeab1b3fea9200)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2895fab2194b4ebb51d96feda083067f = L.circleMarker(\\n\",\n       \"                [35.7511, 114.2956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90a1b4949b7feaae510f62f970789e1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_417194096bd3a5e8eb90e33fc0101ffb = $(`&lt;div id=&quot;html_417194096bd3a5e8eb90e33fc0101ffb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2956             latitude:35.7511             PM2_5:56.3356546             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90a1b4949b7feaae510f62f970789e1a.setContent(html_417194096bd3a5e8eb90e33fc0101ffb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2895fab2194b4ebb51d96feda083067f.bindPopup(popup_90a1b4949b7feaae510f62f970789e1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_513a218580f5eb4c4888ce7bce4a4fb5 = L.circleMarker(\\n\",\n       \"                [25.1328, 99.1711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5849fac973d3456b571bd74804e9bff7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c2542804f0e505a8b6ef593633c5979 = $(`&lt;div id=&quot;html_2c2542804f0e505a8b6ef593633c5979&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.1711             latitude:25.1328             PM2_5:30.39106145             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5849fac973d3456b571bd74804e9bff7.setContent(html_2c2542804f0e505a8b6ef593633c5979);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_513a218580f5eb4c4888ce7bce4a4fb5.bindPopup(popup_5849fac973d3456b571bd74804e9bff7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5240934686386a7751a1d43ad25b1c35 = L.circleMarker(\\n\",\n       \"                [24.9117, 118.5819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8cda182cab68cfd132b8305d3554ca99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c4e8ecf58f29f2e7d0f26b066fb57c9 = $(`&lt;div id=&quot;html_7c4e8ecf58f29f2e7d0f26b066fb57c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5819             latitude:24.9117             PM2_5:24.49861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8cda182cab68cfd132b8305d3554ca99.setContent(html_7c4e8ecf58f29f2e7d0f26b066fb57c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5240934686386a7751a1d43ad25b1c35.bindPopup(popup_8cda182cab68cfd132b8305d3554ca99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8a292b6cec5b0cc21f4e17de1177b1ba = L.circleMarker(\\n\",\n       \"                [40.9161, 117.9664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65769e432ce756e5cd5079fae670f7fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73cde232458ca432abfed8152479e61c = $(`&lt;div id=&quot;html_73cde232458ca432abfed8152479e61c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9664             latitude:40.9161             PM2_5:23.53472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65769e432ce756e5cd5079fae670f7fc.setContent(html_73cde232458ca432abfed8152479e61c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8a292b6cec5b0cc21f4e17de1177b1ba.bindPopup(popup_65769e432ce756e5cd5079fae670f7fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d639f7650e1cefbba4220366f842215 = L.circleMarker(\\n\",\n       \"                [27.9647, 116.385],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_310ccab3d64eee5c3668d38ed3280c93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef17b86afe7ee29f0076655422c90d6d = $(`&lt;div id=&quot;html_ef17b86afe7ee29f0076655422c90d6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.385             latitude:27.9647             PM2_5:37.26330532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_310ccab3d64eee5c3668d38ed3280c93.setContent(html_ef17b86afe7ee29f0076655422c90d6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d639f7650e1cefbba4220366f842215.bindPopup(popup_310ccab3d64eee5c3668d38ed3280c93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_55cb72f72d48f80a6fea7ea62bb12d2c = L.circleMarker(\\n\",\n       \"                [29.3678, 113.1772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7dcfe7fdbf786e13a6d51e41b29006f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8da5460704d992fd1fa889661a2b9a43 = $(`&lt;div id=&quot;html_8da5460704d992fd1fa889661a2b9a43&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1772             latitude:29.3678             PM2_5:43.77106742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7dcfe7fdbf786e13a6d51e41b29006f6.setContent(html_8da5460704d992fd1fa889661a2b9a43);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_55cb72f72d48f80a6fea7ea62bb12d2c.bindPopup(popup_7dcfe7fdbf786e13a6d51e41b29006f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_444844357264f6eb9a237ec8d4b22985 = L.circleMarker(\\n\",\n       \"                [38.8632, 115.493],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f862b701c374d1e1c222e766401daf32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ccd181b61898e422c1ed91ca1211e5e3 = $(`&lt;div id=&quot;html_ccd181b61898e422c1ed91ca1211e5e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.493             latitude:38.8632             PM2_5:57.32777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f862b701c374d1e1c222e766401daf32.setContent(html_ccd181b61898e422c1ed91ca1211e5e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_444844357264f6eb9a237ec8d4b22985.bindPopup(popup_f862b701c374d1e1c222e766401daf32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d270d85562b3d228060527413a03324a = L.circleMarker(\\n\",\n       \"                [19.9507, 110.576],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fed07b11db57312aaacf928db71ebf6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a035ee14da22af1c0e30967ef032080 = $(`&lt;div id=&quot;html_1a035ee14da22af1c0e30967ef032080&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.576             latitude:19.9507             PM2_5:16.45702006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fed07b11db57312aaacf928db71ebf6.setContent(html_1a035ee14da22af1c0e30967ef032080);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d270d85562b3d228060527413a03324a.bindPopup(popup_8fed07b11db57312aaacf928db71ebf6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e72867fdf610c7f660ffb81a00e46cf6 = L.circleMarker(\\n\",\n       \"                [26.0392, 119.303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db70213f197c87396450b371aa5c006b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b54accb63b857a223fb5c04856cbbd3 = $(`&lt;div id=&quot;html_4b54accb63b857a223fb5c04856cbbd3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.303             latitude:26.0392             PM2_5:27.23743017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db70213f197c87396450b371aa5c006b.setContent(html_4b54accb63b857a223fb5c04856cbbd3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e72867fdf610c7f660ffb81a00e46cf6.bindPopup(popup_db70213f197c87396450b371aa5c006b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f69087c905646cdc5b50289d0d64fd4d = L.circleMarker(\\n\",\n       \"                [39.6295, 118.1997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_695cc545805365132a2e91def6617834 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b27acb3746744157fc36cfa56c37da9 = $(`&lt;div id=&quot;html_0b27acb3746744157fc36cfa56c37da9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1997             latitude:39.6295             PM2_5:51.32686981             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_695cc545805365132a2e91def6617834.setContent(html_0b27acb3746744157fc36cfa56c37da9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f69087c905646cdc5b50289d0d64fd4d.bindPopup(popup_695cc545805365132a2e91def6617834)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fccd0c02859eab5340894df78ee67688 = L.circleMarker(\\n\",\n       \"                [30.5489, 117.0486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f95218b7e9b27d8e178210d8e9299792 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_169b3aee2ddb9dc7b8ee4783c961a50a = $(`&lt;div id=&quot;html_169b3aee2ddb9dc7b8ee4783c961a50a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0486             latitude:30.5489             PM2_5:50.58888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f95218b7e9b27d8e178210d8e9299792.setContent(html_169b3aee2ddb9dc7b8ee4783c961a50a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fccd0c02859eab5340894df78ee67688.bindPopup(popup_f95218b7e9b27d8e178210d8e9299792)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d6e65407a07df0b3f529156aec65ee03 = L.circleMarker(\\n\",\n       \"                [30.2043, 114.8949],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1834065cf946792b2bc5ddf3ce6b3b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54e91ee10b4f4dd4ec615ed22b4f1839 = $(`&lt;div id=&quot;html_54e91ee10b4f4dd4ec615ed22b4f1839&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8949             latitude:30.2043             PM2_5:52.29083095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1834065cf946792b2bc5ddf3ce6b3b4.setContent(html_54e91ee10b4f4dd4ec615ed22b4f1839);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d6e65407a07df0b3f529156aec65ee03.bindPopup(popup_a1834065cf946792b2bc5ddf3ce6b3b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ff5649614165cdc554860fa1f8f0484 = L.circleMarker(\\n\",\n       \"                [34.5101, 109.5293],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9237225ae023798836243108cfe7a0d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0ceed321ec71bde07629fb4429a7317 = $(`&lt;div id=&quot;html_c0ceed321ec71bde07629fb4429a7317&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5293             latitude:34.5101             PM2_5:60.51585014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9237225ae023798836243108cfe7a0d1.setContent(html_c0ceed321ec71bde07629fb4429a7317);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ff5649614165cdc554860fa1f8f0484.bindPopup(popup_9237225ae023798836243108cfe7a0d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a76ef002192d20983ccf2e9811e2f876 = L.circleMarker(\\n\",\n       \"                [43.8228, 126.4978],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a9228be9dd0a8a7e9c0285102e4d105 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1be75c52e668aa382adcd463636c5485 = $(`&lt;div id=&quot;html_1be75c52e668aa382adcd463636c5485&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4978             latitude:43.8228             PM2_5:27.61111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a9228be9dd0a8a7e9c0285102e4d105.setContent(html_1be75c52e668aa382adcd463636c5485);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a76ef002192d20983ccf2e9811e2f876.bindPopup(popup_6a9228be9dd0a8a7e9c0285102e4d105)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_3e40dbab7c3a53dcf2e64235b73d0641 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_3e40dbab7c3a53dcf2e64235b73d0641.color = d3.scale.threshold()\\n\",\n       \"              .domain([3.856338028, 4.116747294076152, 4.377156560152304, 4.637565826228457, 4.897975092304609, 5.158384358380761, 5.418793624456914, 5.679202890533066, 5.939612156609218, 6.200021422685371, 6.460430688761523, 6.720839954837675, 6.981249220913828, 7.24165848698998, 7.502067753066132, 7.762477019142285, 8.022886285218437, 8.28329555129459, 8.543704817370742, 8.804114083446894, 9.064523349523046, 9.324932615599199, 9.585341881675351, 9.845751147751503, 10.106160413827654, 10.366569679903806, 10.626978945979959, 10.887388212056111, 11.147797478132263, 11.408206744208416, 11.668616010284568, 11.92902527636072, 12.189434542436873, 12.449843808513023, 12.710253074589177, 12.97066234066533, 13.231071606741482, 13.491480872817633, 13.751890138893787, 14.012299404969939, 14.272708671046091, 14.533117937122242, 14.793527203198396, 15.053936469274548, 15.3143457353507, 15.574755001426851, 15.835164267503005, 16.09557353357916, 16.355982799655308, 16.61639206573146, 16.876801331807613, 17.13721059788377, 17.397619863959918, 17.65802913003607, 17.918438396112222, 18.178847662188378, 18.439256928264527, 18.69966619434068, 18.96007546041683, 19.220484726492987, 19.480893992569136, 19.74130325864529, 20.00171252472144, 20.262121790797593, 20.522531056873746, 20.782940322949898, 21.043349589026047, 21.303758855102203, 21.564168121178355, 21.824577387254507, 22.08498665333066, 22.345395919406812, 22.605805185482964, 22.866214451559117, 23.126623717635265, 23.38703298371142, 23.647442249787574, 23.907851515863726, 24.16826078193988, 24.42867004801603, 24.689079314092183, 24.94948858016833, 25.209897846244484, 25.47030711232064, 25.730716378396792, 25.99112564447294, 26.251534910549097, 26.51194417662525, 26.7723534427014, 27.03276270877755, 27.293171974853703, 27.55358124092986, 27.81399050700601, 28.07439977308216, 28.334809039158316, 28.595218305234468, 28.855627571310617, 29.11603683738677, 29.37644610346292, 29.636855369539077, 29.897264635615226, 30.15767390169138, 30.418083167767534, 30.678492433843687, 30.938901699919835, 31.199310965995988, 31.45972023207214, 31.720129498148296, 31.980538764224445, 32.2409480303006, 32.50135729637675, 32.761766562452905, 33.02217582852906, 33.28258509460521, 33.54299436068136, 33.803403626757515, 34.06381289283367, 34.32422215890982, 34.58463142498597, 34.845040691062124, 35.105449957138276, 35.36585922321443, 35.62626848929058, 35.88667775536673, 36.147087021442886, 36.40749628751904, 36.66790555359519, 36.92831481967134, 37.188724085747495, 37.44913335182365, 37.7095426178998, 37.96995188397595, 38.2303611500521, 38.49077041612826, 38.75117968220441, 39.01158894828056, 39.271998214356714, 39.532407480432866, 39.79281674650902, 40.05322601258517, 40.31363527866132, 40.574044544737475, 40.83445381081363, 41.09486307688978, 41.35527234296593, 41.615681609042085, 41.87609087511824, 42.13650014119438, 42.396909407270535, 42.657318673346694, 42.917727939422846, 43.178137205499, 43.43854647157515, 43.6989557376513, 43.959365003727456, 44.2197742698036, 44.48018353587976, 44.74059280195591, 45.001002068032065, 45.26141133410822, 45.52182060018437, 45.78222986626052, 46.04263913233667, 46.30304839841282, 46.56345766448897, 46.82386693056513, 47.084276196641284, 47.344685462717436, 47.60509472879359, 47.86550399486974, 48.125913260945886, 48.38632252702204, 48.6467317930982, 48.90714105917435, 49.1675503252505, 49.427959591326655, 49.68836885740281, 49.94877812347895, 50.209187389555105, 50.46959665563126, 50.73000592170741, 50.99041518778357, 51.25082445385972, 51.51123371993587, 51.771642986012026, 52.03205225208817, 52.29246151816432, 52.552870784240476, 52.813280050316635, 53.07368931639279, 53.33409858246894, 53.59450784854509, 53.85491711462124, 54.11532638069739, 54.37573564677354, 54.636144912849694, 54.89655417892585, 55.156963445002006, 55.41737271107816, 55.67778197715431, 55.938191243230456, 56.19860050930661, 56.45900977538276, 56.71941904145891, 56.97982830753507, 57.240237573611225, 57.50064683968738, 57.76105610576352, 58.021465371839675, 58.28187463791583, 58.54228390399198, 58.80269317006813, 59.063102436144284, 59.32351170222044, 59.583920968296596, 59.84433023437274, 60.10473950044889, 60.365148766525046, 60.6255580326012, 60.88596729867735, 61.14637656475351, 61.40678583082966, 61.66719509690581, 61.92760436298196, 62.18801362905811, 62.448422895134264, 62.70883216121042, 62.96924142728657, 63.22965069336272, 63.49005995943888, 63.750469225515026, 64.01087849159117, 64.27128775766732, 64.53169702374348, 64.79210628981963, 65.05251555589578, 65.31292482197195, 65.57333408804809, 65.83374335412424, 66.09415262020039, 66.35456188627654, 66.6149711523527, 66.87538041842885, 67.135789684505, 67.39619895058115, 67.6566082166573, 67.91701748273346, 68.17742674880961, 68.43783601488576, 68.69824528096191, 68.95865454703807, 69.21906381311422, 69.47947307919037, 69.73988234526652, 70.00029161134267, 70.26070087741883, 70.52111014349498, 70.78151940957113, 71.04192867564728, 71.30233794172344, 71.56274720779959, 71.82315647387574, 72.0835657399519, 72.34397500602803, 72.60438427210418, 72.86479353818035, 73.1252028042565, 73.38561207033266, 73.64602133640881, 73.90643060248496, 74.16683986856111, 74.42724913463726, 74.68765840071342, 74.94806766678957, 75.20847693286572, 75.46888619894187, 75.72929546501803, 75.98970473109418, 76.25011399717033, 76.51052326324647, 76.77093252932264, 77.03134179539879, 77.29175106147494, 77.55216032755109, 77.81256959362725, 78.0729788597034, 78.33338812577955, 78.5937973918557, 78.85420665793185, 79.114615924008, 79.37502519008416, 79.63543445616031, 79.89584372223646, 80.15625298831262, 80.41666225438875, 80.6770715204649, 80.93748078654106, 81.19789005261723, 81.45829931869338, 81.71870858476953, 81.97911785084568, 82.23952711692183, 82.49993638299799, 82.76034564907414, 83.02075491515029, 83.28116418122644, 83.5415734473026, 83.80198271337875, 84.0623919794549, 84.32280124553104, 84.58321051160719, 84.84361977768334, 85.10402904375951, 85.36443830983566, 85.62484757591182, 85.88525684198797, 86.14566610806412, 86.40607537414027, 86.66648464021642, 86.92689390629258, 87.18730317236873, 87.44771243844488, 87.70812170452103, 87.96853097059719, 88.22894023667332, 88.48934950274948, 88.74975876882563, 89.01016803490178, 89.27057730097793, 89.5309865670541, 89.79139583313025, 90.0518050992064, 90.31221436528256, 90.57262363135871, 90.83303289743486, 91.09344216351101, 91.35385142958717, 91.61426069566332, 91.87466996173947, 92.13507922781561, 92.39548849389176, 92.65589775996791, 92.91630702604407, 93.17671629212022, 93.43712555819639, 93.69753482427254, 93.95794409034869, 94.21835335642484, 94.478762622501, 94.73917188857715, 94.9995811546533, 95.25999042072945, 95.5203996868056, 95.78080895288176, 96.0412182189579, 96.30162748503405, 96.5620367511102, 96.82244601718635, 97.0828552832625, 97.34326454933866, 97.60367381541481, 97.86408308149097, 98.12449234756713, 98.38490161364328, 98.64531087971943, 98.90572014579558, 99.16612941187174, 99.42653867794789, 99.68694794402404, 99.94735721010018, 100.20776647617633, 100.46817574225248, 100.72858500832864, 100.98899427440479, 101.24940354048094, 101.5098128065571, 101.77022207263326, 102.03063133870941, 102.29104060478556, 102.55144987086172, 102.81185913693787, 103.07226840301402, 103.33267766909017, 103.59308693516633, 103.85349620124246, 104.11390546731862, 104.37431473339477, 104.63472399947092, 104.89513326554707, 105.15554253162323, 105.41595179769938, 105.67636106377553, 105.93677032985168, 106.19717959592785, 106.457588862004, 106.71799812808015, 106.9784073941563, 107.23881666023246, 107.49922592630861, 107.75963519238475, 108.0200444584609, 108.28045372453705, 108.5408629906132, 108.80127225668936, 109.06168152276551, 109.32209078884166, 109.58250005491782, 109.84290932099397, 110.10331858707013, 110.36372785314629, 110.62413711922244, 110.88454638529859, 111.14495565137474, 111.4053649174509, 111.66577418352703, 111.92618344960319, 112.18659271567934, 112.44700198175549, 112.70741124783164, 112.9678205139078, 113.22822977998395, 113.4886390460601, 113.74904831213625, 114.0094575782124, 114.26986684428856, 114.53027611036472, 114.79068537644088, 115.05109464251703, 115.31150390859318, 115.57191317466932, 115.83232244074547, 116.09273170682162, 116.35314097289778, 116.61355023897393, 116.87395950505008, 117.13436877112623, 117.39477803720239, 117.65518730327854, 117.91559656935469, 118.17600583543084, 118.43641510150701, 118.69682436758316, 118.95723363365931, 119.21764289973547, 119.4780521658116, 119.73846143188776, 119.99887069796391, 120.25927996404006, 120.51968923011621, 120.78009849619237, 121.04050776226852, 121.30091702834467, 121.56132629442082, 121.82173556049698, 122.08214482657313, 122.34255409264928, 122.60296335872543, 122.8633726248016, 123.12378189087775, 123.38419115695389, 123.64460042303004, 123.9050096891062, 124.16541895518235, 124.4258282212585, 124.68623748733465, 124.9466467534108, 125.20705601948696, 125.46746528556311, 125.72787455163926, 125.98828381771541, 126.24869308379157, 126.50910234986772, 126.76951161594388, 127.02992088202004, 127.29033014809617, 127.55073941417233, 127.81114868024848, 128.07155794632465, 128.3319672124008, 128.59237647847695, 128.8527857445531, 129.11319501062925, 129.3736042767054, 129.63401354278156, 129.8944228088577, 130.15483207493386, 130.41524134101002, 130.67565060708617, 130.93605987316232, 131.19646913923847, 131.45687840531463, 131.71728767139078, 131.97769693746693, 132.23810620354308, 132.49851546961924, 132.7589247356954, 133.01933400177154, 133.2797432678477, 133.54015253392384, 133.8005618])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_3e40dbab7c3a53dcf2e64235b73d0641.x = d3.scale.linear()\\n\",\n       \"              .domain([3.856338028, 133.8005618])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_3e40dbab7c3a53dcf2e64235b73d0641.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_3e40dbab7c3a53dcf2e64235b73d0641.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_3e40dbab7c3a53dcf2e64235b73d0641.legend.addTo(map_169672f77f97c686a931b03447dcd812);\\n\",\n       \"\\n\",\n       \"    color_map_3e40dbab7c3a53dcf2e64235b73d0641.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_3e40dbab7c3a53dcf2e64235b73d0641.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([3.856338028, &#x27;&#x27;, &#x27;&#x27;, 23.347971593799997, &#x27;&#x27;, &#x27;&#x27;, 42.8396051596, &#x27;&#x27;, &#x27;&#x27;, 62.3312387254, &#x27;&#x27;, &#x27;&#x27;, 81.82287229119999, &#x27;&#x27;, &#x27;&#x27;, 101.31450585699999, &#x27;&#x27;, &#x27;&#x27;, 120.80613942279999, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_3e40dbab7c3a53dcf2e64235b73d0641.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_3e40dbab7c3a53dcf2e64235b73d0641.g = color_map_3e40dbab7c3a53dcf2e64235b73d0641.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_3e40dbab7c3a53dcf2e64235b73d0641.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_3e40dbab7c3a53dcf2e64235b73d0641.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_3e40dbab7c3a53dcf2e64235b73d0641.x(color_map_3e40dbab7c3a53dcf2e64235b73d0641.color.domain()[i - 1]) : color_map_3e40dbab7c3a53dcf2e64235b73d0641.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_3e40dbab7c3a53dcf2e64235b73d0641.color.domain().length ? color_map_3e40dbab7c3a53dcf2e64235b73d0641.x(color_map_3e40dbab7c3a53dcf2e64235b73d0641.color.domain()[i]) : color_map_3e40dbab7c3a53dcf2e64235b73d0641.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_3e40dbab7c3a53dcf2e64235b73d0641.g.call(color_map_3e40dbab7c3a53dcf2e64235b73d0641.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1d9b771e350>\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.display_dataset(name='all', y_column='PM2_5', colors=[\\n\",\n    \"                           'blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Train\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"id\": \"980C5D44EA7A4E0D85AA3AAB6D802234\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_d0b8192593038d17d9efb406c511f44b {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_d0b8192593038d17d9efb406c511f44b&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_d0b8192593038d17d9efb406c511f44b = L.map(\\n\",\n       \"                &quot;map_d0b8192593038d17d9efb406c511f44b&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_b18a3bfee0f6f7d485a94139f637c5b0 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_b18a3bfee0f6f7d485a94139f637c5b0.addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_365f81a0c74a8d3d6abc86a14eab29f3 = L.circleMarker(\\n\",\n       \"                [30.8217, 106.1031],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_770f2343e70ab8f5754e53133110e8c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fed95419a6cb15d66b0356fa7de9d8a = $(`&lt;div id=&quot;html_7fed95419a6cb15d66b0356fa7de9d8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1031             latitude:30.8217             PM2_5:47.4255618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_770f2343e70ab8f5754e53133110e8c7.setContent(html_7fed95419a6cb15d66b0356fa7de9d8a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_365f81a0c74a8d3d6abc86a14eab29f3.bindPopup(popup_770f2343e70ab8f5754e53133110e8c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b44307ff3f5af268f70138e146a4787c = L.circleMarker(\\n\",\n       \"                [29.5186, 106.54],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_524454476a201b2194c0aba1e5d65eff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f231c61be84e32f9285d13477302f0be = $(`&lt;div id=&quot;html_f231c61be84e32f9285d13477302f0be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.54             latitude:29.5186             PM2_5:41.60526316             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_524454476a201b2194c0aba1e5d65eff.setContent(html_f231c61be84e32f9285d13477302f0be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b44307ff3f5af268f70138e146a4787c.bindPopup(popup_524454476a201b2194c0aba1e5d65eff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98e3fba18c7b050976253cea4856b360 = L.circleMarker(\\n\",\n       \"                [31.7371, 116.508],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0997d674c1679b6a00e9af5e15eb1310 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09c54c614cd5087ef3e2ea9b6ca172fd = $(`&lt;div id=&quot;html_09c54c614cd5087ef3e2ea9b6ca172fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.508             latitude:31.7371             PM2_5:44.06005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0997d674c1679b6a00e9af5e15eb1310.setContent(html_09c54c614cd5087ef3e2ea9b6ca172fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98e3fba18c7b050976253cea4856b360.bindPopup(popup_0997d674c1679b6a00e9af5e15eb1310)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f81a5446e057c6ace0b9bf1f764d124 = L.circleMarker(\\n\",\n       \"                [34.6869, 112.4664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_744b30ff6a21d73ec457331cf5e4bf30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0de4edd4a3283765982317e34785103a = $(`&lt;div id=&quot;html_0de4edd4a3283765982317e34785103a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4664             latitude:34.6869             PM2_5:59.93661972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_744b30ff6a21d73ec457331cf5e4bf30.setContent(html_0de4edd4a3283765982317e34785103a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f81a5446e057c6ace0b9bf1f764d124.bindPopup(popup_744b30ff6a21d73ec457331cf5e4bf30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4c348211512d002a91300b4cadc0c40 = L.circleMarker(\\n\",\n       \"                [31.1208, 104.4219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e601c474acbcd6805b340bb9b551a89 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8487737ab9fb9da37a62456835578575 = $(`&lt;div id=&quot;html_8487737ab9fb9da37a62456835578575&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.4219             latitude:31.1208             PM2_5:42.56741573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e601c474acbcd6805b340bb9b551a89.setContent(html_8487737ab9fb9da37a62456835578575);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4c348211512d002a91300b4cadc0c40.bindPopup(popup_3e601c474acbcd6805b340bb9b551a89)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b4cbe873988969096fd6b4ed5baabbf = L.circleMarker(\\n\",\n       \"                [33.5653, 114.0322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d3d7d7370e080c7b6a35509b473bcd9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ee2f4ff29826d86a20a488b8c46b27d = $(`&lt;div id=&quot;html_4ee2f4ff29826d86a20a488b8c46b27d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0322             latitude:33.5653             PM2_5:55.8189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d3d7d7370e080c7b6a35509b473bcd9.setContent(html_4ee2f4ff29826d86a20a488b8c46b27d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b4cbe873988969096fd6b4ed5baabbf.bindPopup(popup_1d3d7d7370e080c7b6a35509b473bcd9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_860e106ba39be742b74f06de875b6f3b = L.circleMarker(\\n\",\n       \"                [32.02, 120.87],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16f3acbff8cf7efc99e445217faef6f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_885079dff194755a9afdf87ea40f1def = $(`&lt;div id=&quot;html_885079dff194755a9afdf87ea40f1def&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.87             latitude:32.02             PM2_5:34.07799443             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16f3acbff8cf7efc99e445217faef6f1.setContent(html_885079dff194755a9afdf87ea40f1def);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_860e106ba39be742b74f06de875b6f3b.bindPopup(popup_16f3acbff8cf7efc99e445217faef6f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a34733d4c76884adc469221f41d7d5e8 = L.circleMarker(\\n\",\n       \"                [32.6975, 109.0072],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97e90415f3082e4751d25c177370e462 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_608d69f5c47307a777a66a66dfd4d06a = $(`&lt;div id=&quot;html_608d69f5c47307a777a66a66dfd4d06a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0072             latitude:32.6975             PM2_5:42.6755618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97e90415f3082e4751d25c177370e462.setContent(html_608d69f5c47307a777a66a66dfd4d06a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a34733d4c76884adc469221f41d7d5e8.bindPopup(popup_97e90415f3082e4751d25c177370e462)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f87a9a9f39367a61716c2de68dadb5e5 = L.circleMarker(\\n\",\n       \"                [40.715, 120.8478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34b50ff636de87a3263c894badb9674f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3df2be89b3172043560106fa4aee158d = $(`&lt;div id=&quot;html_3df2be89b3172043560106fa4aee158d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8478             latitude:40.715             PM2_5:32.58615819             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34b50ff636de87a3263c894badb9674f.setContent(html_3df2be89b3172043560106fa4aee158d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f87a9a9f39367a61716c2de68dadb5e5.bindPopup(popup_34b50ff636de87a3263c894badb9674f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c40b565f46d1785a6402fc5675efc20 = L.circleMarker(\\n\",\n       \"                [33.5039, 119.135],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57079cf46891a4d2bba9f8e3afa7113d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e6e58eee7a4aab7231a42f1d2e3310e = $(`&lt;div id=&quot;html_0e6e58eee7a4aab7231a42f1d2e3310e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.135             latitude:33.5039             PM2_5:45.50277008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57079cf46891a4d2bba9f8e3afa7113d.setContent(html_0e6e58eee7a4aab7231a42f1d2e3310e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c40b565f46d1785a6402fc5675efc20.bindPopup(popup_57079cf46891a4d2bba9f8e3afa7113d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a15e8ea3afeb41c770f138152170a1d6 = L.circleMarker(\\n\",\n       \"                [28.0089, 120.634],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18c946beb64ef05677742e94f3edf8e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73d0c5b1341ab55cef277b4117a7604b = $(`&lt;div id=&quot;html_73d0c5b1341ab55cef277b4117a7604b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.634             latitude:28.0089             PM2_5:34.10277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18c946beb64ef05677742e94f3edf8e0.setContent(html_73d0c5b1341ab55cef277b4117a7604b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a15e8ea3afeb41c770f138152170a1d6.bindPopup(popup_18c946beb64ef05677742e94f3edf8e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb4c5eb25a7e8d445cf974857bc26e32 = L.circleMarker(\\n\",\n       \"                [45.8194, 130.8625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_944b1556958dcd4691b29fdad75eddab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6365c8fe0ac0356521879bcdbeffc892 = $(`&lt;div id=&quot;html_6365c8fe0ac0356521879bcdbeffc892&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.8625             latitude:45.8194             PM2_5:28.55477528             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_944b1556958dcd4691b29fdad75eddab.setContent(html_6365c8fe0ac0356521879bcdbeffc892);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb4c5eb25a7e8d445cf974857bc26e32.bindPopup(popup_944b1556958dcd4691b29fdad75eddab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_334aeabd770f52d280f17f79819613ad = L.circleMarker(\\n\",\n       \"                [29.8539, 114.2894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4864bcb1598efe304017bc168b01049d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d978c9ce06496a5d7a70c1107c05bc3 = $(`&lt;div id=&quot;html_6d978c9ce06496a5d7a70c1107c05bc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2894             latitude:29.8539             PM2_5:36.90972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4864bcb1598efe304017bc168b01049d.setContent(html_6d978c9ce06496a5d7a70c1107c05bc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_334aeabd770f52d280f17f79819613ad.bindPopup(popup_4864bcb1598efe304017bc168b01049d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da9e4e5ac991c5ff869bcd7d7c752e29 = L.circleMarker(\\n\",\n       \"                [31.7308, 113.3983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_307ba2ecb7f326a12ff02d26f117df12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_53cd42331d0a647a2f5b562a91c972e9 = $(`&lt;div id=&quot;html_53cd42331d0a647a2f5b562a91c972e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3983             latitude:31.7308             PM2_5:48.91364903             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_307ba2ecb7f326a12ff02d26f117df12.setContent(html_53cd42331d0a647a2f5b562a91c972e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da9e4e5ac991c5ff869bcd7d7c752e29.bindPopup(popup_307ba2ecb7f326a12ff02d26f117df12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd01a5cadcc5140d405dcf945c9fe667 = L.circleMarker(\\n\",\n       \"                [27.8328, 114.9289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4d8f406f1a9c8969e42f56ed9020db8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d68af2f5d37798020a5d11f0290bad01 = $(`&lt;div id=&quot;html_d68af2f5d37798020a5d11f0290bad01&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9289             latitude:27.8328             PM2_5:48.87916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4d8f406f1a9c8969e42f56ed9020db8.setContent(html_d68af2f5d37798020a5d11f0290bad01);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd01a5cadcc5140d405dcf945c9fe667.bindPopup(popup_a4d8f406f1a9c8969e42f56ed9020db8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a712515a14dd9c1d73becaeee276056 = L.circleMarker(\\n\",\n       \"                [36.2866, 100.6188],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8b16d161eb7c3bab786af226a4e0639 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd620350b52fbb14dd0981d2bfe61319 = $(`&lt;div id=&quot;html_bd620350b52fbb14dd0981d2bfe61319&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.6188             latitude:36.2866             PM2_5:22.37640449             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8b16d161eb7c3bab786af226a4e0639.setContent(html_bd620350b52fbb14dd0981d2bfe61319);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a712515a14dd9c1d73becaeee276056.bindPopup(popup_d8b16d161eb7c3bab786af226a4e0639)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11facd77dc016afd4b4fd61589dca5e8 = L.circleMarker(\\n\",\n       \"                [40.1952, 116.23],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a73c9cf0dc94a50015c9921f07bf863a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c2a91e471aded41fd35ef9d4cf30a11 = $(`&lt;div id=&quot;html_3c2a91e471aded41fd35ef9d4cf30a11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.23             latitude:40.1952             PM2_5:48.23876404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a73c9cf0dc94a50015c9921f07bf863a.setContent(html_3c2a91e471aded41fd35ef9d4cf30a11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11facd77dc016afd4b4fd61589dca5e8.bindPopup(popup_a73c9cf0dc94a50015c9921f07bf863a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_418457c17a9a921c0211d2bc4b0b748c = L.circleMarker(\\n\",\n       \"                [21.9508, 108.6553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a67c2e910e7bed7346b2822c902dc607 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ce135fa8bdb21a4eef7330d3dc11fc5 = $(`&lt;div id=&quot;html_0ce135fa8bdb21a4eef7330d3dc11fc5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6553             latitude:21.9508             PM2_5:31.75706215             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a67c2e910e7bed7346b2822c902dc607.setContent(html_0ce135fa8bdb21a4eef7330d3dc11fc5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_418457c17a9a921c0211d2bc4b0b748c.bindPopup(popup_a67c2e910e7bed7346b2822c902dc607)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e693b2536382ea442ab4342a123c9675 = L.circleMarker(\\n\",\n       \"                [31.85805556, 106.7619444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0923f70da619d3e7d6f3eb38d3729cee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3cd762b5b68b8fc807520bc775a2318 = $(`&lt;div id=&quot;html_c3cd762b5b68b8fc807520bc775a2318&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7619444             latitude:31.85805556             PM2_5:21.37042254             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0923f70da619d3e7d6f3eb38d3729cee.setContent(html_c3cd762b5b68b8fc807520bc775a2318);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e693b2536382ea442ab4342a123c9675.bindPopup(popup_0923f70da619d3e7d6f3eb38d3729cee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ef708ad8dccadedae7e101b24a97024 = L.circleMarker(\\n\",\n       \"                [45.8309, 130.9467],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4575b7fb1b8fe22d6812e1d2e9bf76e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d65e629b95e0eceec0a6aef0038d8e36 = $(`&lt;div id=&quot;html_d65e629b95e0eceec0a6aef0038d8e36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9467             latitude:45.8309             PM2_5:29.78267045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4575b7fb1b8fe22d6812e1d2e9bf76e9.setContent(html_d65e629b95e0eceec0a6aef0038d8e36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ef708ad8dccadedae7e101b24a97024.bindPopup(popup_4575b7fb1b8fe22d6812e1d2e9bf76e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f20ba6d153b8b7ad66f1c9bcbd7c3ba9 = L.circleMarker(\\n\",\n       \"                [36.0417, 111.4917],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9304c91ee0a215f00a2b7c467cff68f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6120457dd795e2e9e973474702e088ff = $(`&lt;div id=&quot;html_6120457dd795e2e9e973474702e088ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4917             latitude:36.0417             PM2_5:72.86685552             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9304c91ee0a215f00a2b7c467cff68f3.setContent(html_6120457dd795e2e9e973474702e088ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f20ba6d153b8b7ad66f1c9bcbd7c3ba9.bindPopup(popup_9304c91ee0a215f00a2b7c467cff68f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5feb2ff7f41c7cca31c948e6c4c1ed59 = L.circleMarker(\\n\",\n       \"                [39.2282, 106.7704],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e3e31224153a3faea8204286eaed950 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6e4d7d76924bbd34e3c34003d7b5094 = $(`&lt;div id=&quot;html_c6e4d7d76924bbd34e3c34003d7b5094&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7704             latitude:39.2282             PM2_5:42.43454039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e3e31224153a3faea8204286eaed950.setContent(html_c6e4d7d76924bbd34e3c34003d7b5094);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5feb2ff7f41c7cca31c948e6c4c1ed59.bindPopup(popup_0e3e31224153a3faea8204286eaed950)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e32262c69ab1e6850b16b5a5c53214f = L.circleMarker(\\n\",\n       \"                [37.18, 119.959],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8770d9c4a4f51a372ed69242d9a57550 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7431e6e272e1bc46747bb2098783980d = $(`&lt;div id=&quot;html_7431e6e272e1bc46747bb2098783980d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.959             latitude:37.18             PM2_5:36.77761628             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8770d9c4a4f51a372ed69242d9a57550.setContent(html_7431e6e272e1bc46747bb2098783980d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e32262c69ab1e6850b16b5a5c53214f.bindPopup(popup_8770d9c4a4f51a372ed69242d9a57550)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b60e7e3d300a6f4ca3fcfcd55d57bc52 = L.circleMarker(\\n\",\n       \"                [34.6575, 109.2],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_caa5fb7d85fe9286ca2b30e51e7b521d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0db368704014fc711ab5ded18ecc385 = $(`&lt;div id=&quot;html_d0db368704014fc711ab5ded18ecc385&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2             latitude:34.6575             PM2_5:67.91428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_caa5fb7d85fe9286ca2b30e51e7b521d.setContent(html_d0db368704014fc711ab5ded18ecc385);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b60e7e3d300a6f4ca3fcfcd55d57bc52.bindPopup(popup_caa5fb7d85fe9286ca2b30e51e7b521d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af1b7edf93c09db2b021abf69b6886ad = L.circleMarker(\\n\",\n       \"                [30.5494, 114.3006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_726ffa8a4ea4fd2f9ddaedc331083681 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b16263e3cacbe619c6d64e83538b203b = $(`&lt;div id=&quot;html_b16263e3cacbe619c6d64e83538b203b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3006             latitude:30.5494             PM2_5:44.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_726ffa8a4ea4fd2f9ddaedc331083681.setContent(html_b16263e3cacbe619c6d64e83538b203b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af1b7edf93c09db2b021abf69b6886ad.bindPopup(popup_726ffa8a4ea4fd2f9ddaedc331083681)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bdd6c83b0b7159cede10d7b9e34ec3d1 = L.circleMarker(\\n\",\n       \"                [25.1035, 117.0216],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eff628c2311a06f5f006b8341f694915 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_113d6d85785c63b681453205179d2137 = $(`&lt;div id=&quot;html_113d6d85785c63b681453205179d2137&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0216             latitude:25.1035             PM2_5:24.6232493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eff628c2311a06f5f006b8341f694915.setContent(html_113d6d85785c63b681453205179d2137);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bdd6c83b0b7159cede10d7b9e34ec3d1.bindPopup(popup_eff628c2311a06f5f006b8341f694915)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11c12f83adc110fc832a4f547930d8dd = L.circleMarker(\\n\",\n       \"                [32.8603, 115.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a114a29317407a2d4d4c41c7341607f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e70b7d411594d8db3b6a9e1c0d26d87e = $(`&lt;div id=&quot;html_e70b7d411594d8db3b6a9e1c0d26d87e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8556             latitude:32.8603             PM2_5:54.9719888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a114a29317407a2d4d4c41c7341607f3.setContent(html_e70b7d411594d8db3b6a9e1c0d26d87e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11c12f83adc110fc832a4f547930d8dd.bindPopup(popup_a114a29317407a2d4d4c41c7341607f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60ccac933334d855da6dccc92e84714e = L.circleMarker(\\n\",\n       \"                [36.1851, 120.3905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ece07ad23e91b8ed99449396b49b6a2e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e178da55fee20f16319e39b3dbfb2614 = $(`&lt;div id=&quot;html_e178da55fee20f16319e39b3dbfb2614&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.3905             latitude:36.1851             PM2_5:42.19219653             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ece07ad23e91b8ed99449396b49b6a2e.setContent(html_e178da55fee20f16319e39b3dbfb2614);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60ccac933334d855da6dccc92e84714e.bindPopup(popup_ece07ad23e91b8ed99449396b49b6a2e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d87212ff4bd9889c2c193452091e82a9 = L.circleMarker(\\n\",\n       \"                [39.6308, 118.1662],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d9d22bf0bea3fde7e8398980c8504d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abf9bccb72d7dc578c8282f48417cefd = $(`&lt;div id=&quot;html_abf9bccb72d7dc578c8282f48417cefd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1662             latitude:39.6308             PM2_5:47.58448753             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d9d22bf0bea3fde7e8398980c8504d9.setContent(html_abf9bccb72d7dc578c8282f48417cefd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d87212ff4bd9889c2c193452091e82a9.bindPopup(popup_2d9d22bf0bea3fde7e8398980c8504d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2545b24a663dab49db17dfbe0e043799 = L.circleMarker(\\n\",\n       \"                [24.9424, 118.6663],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5cf1cdda6ae346f4f02a77a2856bbd7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a02543c1c19467078a80a594210e9997 = $(`&lt;div id=&quot;html_a02543c1c19467078a80a594210e9997&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6663             latitude:24.9424             PM2_5:26.91374269             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5cf1cdda6ae346f4f02a77a2856bbd7.setContent(html_a02543c1c19467078a80a594210e9997);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2545b24a663dab49db17dfbe0e043799.bindPopup(popup_f5cf1cdda6ae346f4f02a77a2856bbd7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c52dde2e369b8f722f8bc7926678a17e = L.circleMarker(\\n\",\n       \"                [43.7878, 125.454],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47b4129be178be14e8454c388d15d105 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d081990e0184f489c86157e53a300bd = $(`&lt;div id=&quot;html_9d081990e0184f489c86157e53a300bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.454             latitude:43.7878             PM2_5:22.37073864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47b4129be178be14e8454c388d15d105.setContent(html_9d081990e0184f489c86157e53a300bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c52dde2e369b8f722f8bc7926678a17e.bindPopup(popup_47b4129be178be14e8454c388d15d105)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8535b3d59dbad729f3f8518f3be585de = L.circleMarker(\\n\",\n       \"                [29.8181, 114.3036],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86b510ed44f0eb6df24c01fde23a3ccb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f05acb1ba081258bc23e165ae24253e = $(`&lt;div id=&quot;html_1f05acb1ba081258bc23e165ae24253e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3036             latitude:29.8181             PM2_5:41.71910112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86b510ed44f0eb6df24c01fde23a3ccb.setContent(html_1f05acb1ba081258bc23e165ae24253e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8535b3d59dbad729f3f8518f3be585de.bindPopup(popup_86b510ed44f0eb6df24c01fde23a3ccb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2036228891c503823d5d63e44030baed = L.circleMarker(\\n\",\n       \"                [24.3158, 109.4839],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d070cc365c365c809411562d4ecc4c5b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44bb42d3c05bb112432f30a8788df514 = $(`&lt;div id=&quot;html_44bb42d3c05bb112432f30a8788df514&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4839             latitude:24.3158             PM2_5:34.85854342             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d070cc365c365c809411562d4ecc4c5b.setContent(html_44bb42d3c05bb112432f30a8788df514);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2036228891c503823d5d63e44030baed.bindPopup(popup_d070cc365c365c809411562d4ecc4c5b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a5e49a267ea91213945490cc24cc3e3 = L.circleMarker(\\n\",\n       \"                [26.567, 101.7227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8dd246977c323700e8c235ad5a1c99d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_408be9d138762fd858fc4005734ef4f6 = $(`&lt;div id=&quot;html_408be9d138762fd858fc4005734ef4f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7227             latitude:26.567             PM2_5:25.5362117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8dd246977c323700e8c235ad5a1c99d5.setContent(html_408be9d138762fd858fc4005734ef4f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a5e49a267ea91213945490cc24cc3e3.bindPopup(popup_8dd246977c323700e8c235ad5a1c99d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da146c653747452785cfc19d95d57d55 = L.circleMarker(\\n\",\n       \"                [32.0092, 118.737],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef5c6c47b9d344e2dc21b1a762fe8b66 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_16d59a80f360965a18fd0e14f9e9a225 = $(`&lt;div id=&quot;html_16d59a80f360965a18fd0e14f9e9a225&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.737             latitude:32.0092             PM2_5:46.43521127             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef5c6c47b9d344e2dc21b1a762fe8b66.setContent(html_16d59a80f360965a18fd0e14f9e9a225);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da146c653747452785cfc19d95d57d55.bindPopup(popup_ef5c6c47b9d344e2dc21b1a762fe8b66)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6dc3b582a93e3b4392a0588e51d9fa22 = L.circleMarker(\\n\",\n       \"                [34.9162, 113.6113],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33c7976b19030fdebdec4c59f58cb626 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05881b6a09bc989c1f1739a6181b1ec0 = $(`&lt;div id=&quot;html_05881b6a09bc989c1f1739a6181b1ec0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6113             latitude:34.9162             PM2_5:59.82294618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33c7976b19030fdebdec4c59f58cb626.setContent(html_05881b6a09bc989c1f1739a6181b1ec0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6dc3b582a93e3b4392a0588e51d9fa22.bindPopup(popup_33c7976b19030fdebdec4c59f58cb626)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d50489a43b4dd97559fe8e1251e7647 = L.circleMarker(\\n\",\n       \"                [34.719, 113.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f971338d7b0ebf5c463291f8737b3e83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b56908c1b82634b6d79dcd008fab6ac0 = $(`&lt;div id=&quot;html_b56908c1b82634b6d79dcd008fab6ac0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.734             latitude:34.719             PM2_5:62.79378531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f971338d7b0ebf5c463291f8737b3e83.setContent(html_b56908c1b82634b6d79dcd008fab6ac0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d50489a43b4dd97559fe8e1251e7647.bindPopup(popup_f971338d7b0ebf5c463291f8737b3e83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6985d975fc6a2441abd4e86c9ab2792c = L.circleMarker(\\n\",\n       \"                [29.3578, 113.1094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdd158ae69ff6f4d9a280f37e0172718 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c29a31355f45b8501f1cfa9be644ee44 = $(`&lt;div id=&quot;html_c29a31355f45b8501f1cfa9be644ee44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1094             latitude:29.3578             PM2_5:52.86376404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdd158ae69ff6f4d9a280f37e0172718.setContent(html_c29a31355f45b8501f1cfa9be644ee44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6985d975fc6a2441abd4e86c9ab2792c.bindPopup(popup_fdd158ae69ff6f4d9a280f37e0172718)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45c1f30cf958fb483dc503fc22dfb98a = L.circleMarker(\\n\",\n       \"                [22.9394, 112.0369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9e2daa55e0b0760288ae434e41a0f90 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0461f85a02d291fcfd6f9e2eb6a1e9c2 = $(`&lt;div id=&quot;html_0461f85a02d291fcfd6f9e2eb6a1e9c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0369             latitude:22.9394             PM2_5:34.66527778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9e2daa55e0b0760288ae434e41a0f90.setContent(html_0461f85a02d291fcfd6f9e2eb6a1e9c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45c1f30cf958fb483dc503fc22dfb98a.bindPopup(popup_f9e2daa55e0b0760288ae434e41a0f90)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0570e234a432fb16511706c102f4d632 = L.circleMarker(\\n\",\n       \"                [27.8614, 112.9433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bae0ae78820e4b97fb2bc9a7df866ea2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b18a706c1f0d37efe27a4c4be4ea86dd = $(`&lt;div id=&quot;html_b18a706c1f0d37efe27a4c4be4ea86dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9433             latitude:27.8614             PM2_5:42.59331476             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bae0ae78820e4b97fb2bc9a7df866ea2.setContent(html_b18a706c1f0d37efe27a4c4be4ea86dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0570e234a432fb16511706c102f4d632.bindPopup(popup_bae0ae78820e4b97fb2bc9a7df866ea2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dd055707952b43a0c1fd4b0b3768234 = L.circleMarker(\\n\",\n       \"                [23.1478, 109.5681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f839294e4a6bb74a0a0cae008e86b8c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f3916ee21b6b2ebebf91d35bdcff7c2 = $(`&lt;div id=&quot;html_9f3916ee21b6b2ebebf91d35bdcff7c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5681             latitude:23.1478             PM2_5:38.18571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f839294e4a6bb74a0a0cae008e86b8c.setContent(html_9f3916ee21b6b2ebebf91d35bdcff7c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dd055707952b43a0c1fd4b0b3768234.bindPopup(popup_1f839294e4a6bb74a0a0cae008e86b8c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbe4c05b4a6b4176530538376cefd00a = L.circleMarker(\\n\",\n       \"                [39.8261, 109.9486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6d8de7d4f07f79764306417b341c5f0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dfb8961a3f79d4bdbb77648109874e78 = $(`&lt;div id=&quot;html_dfb8961a3f79d4bdbb77648109874e78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9486             latitude:39.8261             PM2_5:28.75915493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6d8de7d4f07f79764306417b341c5f0.setContent(html_dfb8961a3f79d4bdbb77648109874e78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbe4c05b4a6b4176530538376cefd00a.bindPopup(popup_a6d8de7d4f07f79764306417b341c5f0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_35ad82dbbe80dcee8fc2f7de651cb541 = L.circleMarker(\\n\",\n       \"                [27.7569, 111.9561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da6f956fa4a23ca2ca13c782442becb7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85cde93ed7542e6d6acf71cc507577aa = $(`&lt;div id=&quot;html_85cde93ed7542e6d6acf71cc507577aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9561             latitude:27.7569             PM2_5:35.39577465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da6f956fa4a23ca2ca13c782442becb7.setContent(html_85cde93ed7542e6d6acf71cc507577aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_35ad82dbbe80dcee8fc2f7de651cb541.bindPopup(popup_da6f956fa4a23ca2ca13c782442becb7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e25364fa65cc80e4bd59a4fffc01857 = L.circleMarker(\\n\",\n       \"                [26.5155, 106.6948],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66e059b347e3ac552a8074b38bb979a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fbf620e1bfa2fa38e9e16de1bb2c92d = $(`&lt;div id=&quot;html_2fbf620e1bfa2fa38e9e16de1bb2c92d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6948             latitude:26.5155             PM2_5:35.31601124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66e059b347e3ac552a8074b38bb979a1.setContent(html_2fbf620e1bfa2fa38e9e16de1bb2c92d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e25364fa65cc80e4bd59a4fffc01857.bindPopup(popup_66e059b347e3ac552a8074b38bb979a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4001ae8a101332202b62f9824f23f665 = L.circleMarker(\\n\",\n       \"                [30.6103, 114.4272],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34c15e091a6db3af0b466508e383e171 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92d80d0289d4acd3539cad252a5fed45 = $(`&lt;div id=&quot;html_92d80d0289d4acd3539cad252a5fed45&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4272             latitude:30.6103             PM2_5:57.25492958             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34c15e091a6db3af0b466508e383e171.setContent(html_92d80d0289d4acd3539cad252a5fed45);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4001ae8a101332202b62f9824f23f665.bindPopup(popup_34c15e091a6db3af0b466508e383e171)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd40ce309b49c66d29dcc8c4a24785d7 = L.circleMarker(\\n\",\n       \"                [43.1747, 124.3419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31e8f1d82006924fbfa1fe0b8eddd1a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a36923a758ebb28bcae3816271f99210 = $(`&lt;div id=&quot;html_a36923a758ebb28bcae3816271f99210&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3419             latitude:43.1747             PM2_5:44.17746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31e8f1d82006924fbfa1fe0b8eddd1a3.setContent(html_a36923a758ebb28bcae3816271f99210);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd40ce309b49c66d29dcc8c4a24785d7.bindPopup(popup_31e8f1d82006924fbfa1fe0b8eddd1a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7423ecd7a36894e7d4d0a0e2144544d = L.circleMarker(\\n\",\n       \"                [30.7856, 106.1064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_584e8fda2dd41f4254c02d92db51d89d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba316b82176783f0bd1586f81fbd4307 = $(`&lt;div id=&quot;html_ba316b82176783f0bd1586f81fbd4307&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1064             latitude:30.7856             PM2_5:49.45391061             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_584e8fda2dd41f4254c02d92db51d89d.setContent(html_ba316b82176783f0bd1586f81fbd4307);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7423ecd7a36894e7d4d0a0e2144544d.bindPopup(popup_584e8fda2dd41f4254c02d92db51d89d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20e4605ae0aa52eab5c841acd910dde5 = L.circleMarker(\\n\",\n       \"                [27.6869, 106.9222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2e75dd4502dc94d50a751a8bec28d05 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_53db988d52e77273cfd8176427c146a4 = $(`&lt;div id=&quot;html_53db988d52e77273cfd8176427c146a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9222             latitude:27.6869             PM2_5:30.9275766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2e75dd4502dc94d50a751a8bec28d05.setContent(html_53db988d52e77273cfd8176427c146a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20e4605ae0aa52eab5c841acd910dde5.bindPopup(popup_b2e75dd4502dc94d50a751a8bec28d05)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d971cec21d4938d15c4436600641674e = L.circleMarker(\\n\",\n       \"                [32.105, 118.907],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f71eb53d0b49cf745d5e96d377de85f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0df3b03e202e80345865107b25d33326 = $(`&lt;div id=&quot;html_0df3b03e202e80345865107b25d33326&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.907             latitude:32.105             PM2_5:37.08189655             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f71eb53d0b49cf745d5e96d377de85f1.setContent(html_0df3b03e202e80345865107b25d33326);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d971cec21d4938d15c4436600641674e.bindPopup(popup_f71eb53d0b49cf745d5e96d377de85f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44476056dc5d94deecbe155b64b5bc93 = L.circleMarker(\\n\",\n       \"                [26.5495, 106.6867],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ef95efa66a68bc71c4b25a6a51d3fc1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_441057a1d53dcfbe71fc375cf3011fe3 = $(`&lt;div id=&quot;html_441057a1d53dcfbe71fc375cf3011fe3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6867             latitude:26.5495             PM2_5:26.4756447             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ef95efa66a68bc71c4b25a6a51d3fc1.setContent(html_441057a1d53dcfbe71fc375cf3011fe3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44476056dc5d94deecbe155b64b5bc93.bindPopup(popup_3ef95efa66a68bc71c4b25a6a51d3fc1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3a36c09aa0d020a55eb86df263d4ccd = L.circleMarker(\\n\",\n       \"                [39.4365, 75.9435],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e49c3d58246d89cfab6f99d277ab715 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0c0ce345b27cded33f80c78b972e27e = $(`&lt;div id=&quot;html_b0c0ce345b27cded33f80c78b972e27e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:75.9435             latitude:39.4365             PM2_5:133.8005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e49c3d58246d89cfab6f99d277ab715.setContent(html_b0c0ce345b27cded33f80c78b972e27e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3a36c09aa0d020a55eb86df263d4ccd.bindPopup(popup_6e49c3d58246d89cfab6f99d277ab715)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fbaca59e1d01cae6701f6f920ba4b7e = L.circleMarker(\\n\",\n       \"                [24.5157, 117.6569],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34b1d9ca71d9b6cc3ec0739b08cdc719 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80645c30047bf35d019f6911df29f4d9 = $(`&lt;div id=&quot;html_80645c30047bf35d019f6911df29f4d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6569             latitude:24.5157             PM2_5:27.33613445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34b1d9ca71d9b6cc3ec0739b08cdc719.setContent(html_80645c30047bf35d019f6911df29f4d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fbaca59e1d01cae6701f6f920ba4b7e.bindPopup(popup_34b1d9ca71d9b6cc3ec0739b08cdc719)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b815f9279511cb42244284fb46e114bd = L.circleMarker(\\n\",\n       \"                [47.7317, 128.9094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8879fb7129ab2250e40afac148aae60a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6af4c576d2f5d8713a12b14e04e6c709 = $(`&lt;div id=&quot;html_6af4c576d2f5d8713a12b14e04e6c709&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:128.9094             latitude:47.7317             PM2_5:18.82248521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8879fb7129ab2250e40afac148aae60a.setContent(html_6af4c576d2f5d8713a12b14e04e6c709);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b815f9279511cb42244284fb46e114bd.bindPopup(popup_8879fb7129ab2250e40afac148aae60a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68fdb79ab2ea2c8282b75b061f2ee1e4 = L.circleMarker(\\n\",\n       \"                [47.9047, 88.1214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e4ab1ccbf04e45d9e42794c7ec8dd59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40747c7500c93d81ceb1dfba1163a582 = $(`&lt;div id=&quot;html_40747c7500c93d81ceb1dfba1163a582&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.1214             latitude:47.9047             PM2_5:9.540785498             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e4ab1ccbf04e45d9e42794c7ec8dd59.setContent(html_40747c7500c93d81ceb1dfba1163a582);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68fdb79ab2ea2c8282b75b061f2ee1e4.bindPopup(popup_6e4ab1ccbf04e45d9e42794c7ec8dd59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0459dd8cf5476f068d1e3a067f174d65 = L.circleMarker(\\n\",\n       \"                [31.9438, 117.266],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_975911a75ddffb589f007e5ee6580f13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd366998e7bfa3c7ea384609b8c4d386 = $(`&lt;div id=&quot;html_dd366998e7bfa3c7ea384609b8c4d386&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.266             latitude:31.9438             PM2_5:52.0210084             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_975911a75ddffb589f007e5ee6580f13.setContent(html_dd366998e7bfa3c7ea384609b8c4d386);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0459dd8cf5476f068d1e3a067f174d65.bindPopup(popup_975911a75ddffb589f007e5ee6580f13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e3a4d54f78b565d2b363c20abd3ab54 = L.circleMarker(\\n\",\n       \"                [41.1386, 121.1303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_178370da5912392d9a73c2afb5efb83f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef0939aeaad6cff19a8c765657193318 = $(`&lt;div id=&quot;html_ef0939aeaad6cff19a8c765657193318&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1303             latitude:41.1386             PM2_5:33.10893855             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_178370da5912392d9a73c2afb5efb83f.setContent(html_ef0939aeaad6cff19a8c765657193318);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e3a4d54f78b565d2b363c20abd3ab54.bindPopup(popup_178370da5912392d9a73c2afb5efb83f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c34d088198c94d94103f95950b408bd2 = L.circleMarker(\\n\",\n       \"                [29.1456, 111.7158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eab079b5e455589ac8f7fad34402a5d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd98fd46b6c5322aa7b44f63130f650d = $(`&lt;div id=&quot;html_bd98fd46b6c5322aa7b44f63130f650d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7158             latitude:29.1456             PM2_5:34.8832853             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eab079b5e455589ac8f7fad34402a5d2.setContent(html_bd98fd46b6c5322aa7b44f63130f650d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c34d088198c94d94103f95950b408bd2.bindPopup(popup_eab079b5e455589ac8f7fad34402a5d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88240389741a0322ff544611bc2ea99e = L.circleMarker(\\n\",\n       \"                [38.95111111, 121.565],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ebbc3831282b647c592ff26b3593384 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c8f22d77e3a80a5d49e76650698a5a5 = $(`&lt;div id=&quot;html_7c8f22d77e3a80a5d49e76650698a5a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.565             latitude:38.95111111             PM2_5:28.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ebbc3831282b647c592ff26b3593384.setContent(html_7c8f22d77e3a80a5d49e76650698a5a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88240389741a0322ff544611bc2ea99e.bindPopup(popup_6ebbc3831282b647c592ff26b3593384)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15c9b1f27b03dbcf642edac221e68256 = L.circleMarker(\\n\",\n       \"                [37.3617, 118.0018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3c13a3a5a6ba45139b5474cb519803b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8651985e739e3eea9ef196d37444a080 = $(`&lt;div id=&quot;html_8651985e739e3eea9ef196d37444a080&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0018             latitude:37.3617             PM2_5:54.07541899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3c13a3a5a6ba45139b5474cb519803b.setContent(html_8651985e739e3eea9ef196d37444a080);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15c9b1f27b03dbcf642edac221e68256.bindPopup(popup_a3c13a3a5a6ba45139b5474cb519803b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fcb35504b0176a69d5ce4653d6e1a40 = L.circleMarker(\\n\",\n       \"                [29.5634, 103.757],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_875568d25f23a3ed4437c7dad019ef82 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a3153f2025a9178f557432ca254f8cd = $(`&lt;div id=&quot;html_3a3153f2025a9178f557432ca254f8cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.757             latitude:29.5634             PM2_5:52.01133144             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_875568d25f23a3ed4437c7dad019ef82.setContent(html_3a3153f2025a9178f557432ca254f8cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fcb35504b0176a69d5ce4653d6e1a40.bindPopup(popup_875568d25f23a3ed4437c7dad019ef82)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9b9f83cada3c2066bcde01d3316c4c9 = L.circleMarker(\\n\",\n       \"                [25.8664, 114.9367],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5cf6b6f373d515e5d8c709fca15b6578 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_edc25f055166ef8523388b41b9f9d75d = $(`&lt;div id=&quot;html_edc25f055166ef8523388b41b9f9d75d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9367             latitude:25.8664             PM2_5:47.77146814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5cf6b6f373d515e5d8c709fca15b6578.setContent(html_edc25f055166ef8523388b41b9f9d75d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9b9f83cada3c2066bcde01d3316c4c9.bindPopup(popup_5cf6b6f373d515e5d8c709fca15b6578)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf47b9bdf9e295e1e4c16b6a84c356a4 = L.circleMarker(\\n\",\n       \"                [41.9419, 126.4078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_452f268805c4cf72f51cc0342850aac2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ac31ba5c4849ad00124282a79745e7d = $(`&lt;div id=&quot;html_6ac31ba5c4849ad00124282a79745e7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4078             latitude:41.9419             PM2_5:32.37709497             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_452f268805c4cf72f51cc0342850aac2.setContent(html_6ac31ba5c4849ad00124282a79745e7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf47b9bdf9e295e1e4c16b6a84c356a4.bindPopup(popup_452f268805c4cf72f51cc0342850aac2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ca4f65200164453ad5966781ee1412b = L.circleMarker(\\n\",\n       \"                [29.8208, 121.56],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b3f59a427d0be843725732d38eeb0885 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ac2fc5c398c6121502dfa1654779fd2 = $(`&lt;div id=&quot;html_4ac2fc5c398c6121502dfa1654779fd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.56             latitude:29.8208             PM2_5:36.98472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b3f59a427d0be843725732d38eeb0885.setContent(html_4ac2fc5c398c6121502dfa1654779fd2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ca4f65200164453ad5966781ee1412b.bindPopup(popup_b3f59a427d0be843725732d38eeb0885)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9c4a77d40d77fc90eba91623160d251 = L.circleMarker(\\n\",\n       \"                [37.7019, 112.7549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6b1571b1247b8c22a13a7f12e211667 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74f2bfe817f180398c8b5fe4c8ec53e8 = $(`&lt;div id=&quot;html_74f2bfe817f180398c8b5fe4c8ec53e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7549             latitude:37.7019             PM2_5:59.83055556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6b1571b1247b8c22a13a7f12e211667.setContent(html_74f2bfe817f180398c8b5fe4c8ec53e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9c4a77d40d77fc90eba91623160d251.bindPopup(popup_b6b1571b1247b8c22a13a7f12e211667)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_029f9be98213b27025383723e1e71454 = L.circleMarker(\\n\",\n       \"                [31.1108, 104.3539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2470f0e6afb114a77e2bb1cac34b6d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_656af491bb23dfd1bf443af49208e361 = $(`&lt;div id=&quot;html_656af491bb23dfd1bf443af49208e361&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.3539             latitude:31.1108             PM2_5:63.7266289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2470f0e6afb114a77e2bb1cac34b6d5.setContent(html_656af491bb23dfd1bf443af49208e361);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_029f9be98213b27025383723e1e71454.bindPopup(popup_c2470f0e6afb114a77e2bb1cac34b6d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2bf8fd12e228540738e0e5b8685dfde1 = L.circleMarker(\\n\",\n       \"                [36.253, 120.014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83291d734b3bb5ccfedc945dc815fabb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94658ca193c28edb8854a448b87cdc74 = $(`&lt;div id=&quot;html_94658ca193c28edb8854a448b87cdc74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.014             latitude:36.253             PM2_5:33.08732394             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83291d734b3bb5ccfedc945dc815fabb.setContent(html_94658ca193c28edb8854a448b87cdc74);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2bf8fd12e228540738e0e5b8685dfde1.bindPopup(popup_83291d734b3bb5ccfedc945dc815fabb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0c99919d88b7e1a372852150498e170 = L.circleMarker(\\n\",\n       \"                [23.3682, 103.3758],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42540a9da2b5231bf5abb97548e5050b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc007ba5235c151f5a948a0c41c4b0cb = $(`&lt;div id=&quot;html_fc007ba5235c151f5a948a0c41c4b0cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.3758             latitude:23.3682             PM2_5:30.92655367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42540a9da2b5231bf5abb97548e5050b.setContent(html_fc007ba5235c151f5a948a0c41c4b0cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0c99919d88b7e1a372852150498e170.bindPopup(popup_42540a9da2b5231bf5abb97548e5050b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb2402259c231c1a63fb58553fe0a2d3 = L.circleMarker(\\n\",\n       \"                [41.0931, 123.011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6c016c1861ef73f804546d51449bf4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1655c7917b5a01522a21fefd377bf886 = $(`&lt;div id=&quot;html_1655c7917b5a01522a21fefd377bf886&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.011             latitude:41.0931             PM2_5:28.875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6c016c1861ef73f804546d51449bf4c.setContent(html_1655c7917b5a01522a21fefd377bf886);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb2402259c231c1a63fb58553fe0a2d3.bindPopup(popup_d6c016c1861ef73f804546d51449bf4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf081afd522941f34e6876abbfa44805 = L.circleMarker(\\n\",\n       \"                [31.7956, 117.302],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53604e35c5851e3c2d9254572a4232e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33e209cfdc671163493c7eaec2ed81f0 = $(`&lt;div id=&quot;html_33e209cfdc671163493c7eaec2ed81f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.302             latitude:31.7956             PM2_5:51.98022599             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53604e35c5851e3c2d9254572a4232e4.setContent(html_33e209cfdc671163493c7eaec2ed81f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf081afd522941f34e6876abbfa44805.bindPopup(popup_53604e35c5851e3c2d9254572a4232e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3ac0d679c2401ef43ea88fd52862bad = L.circleMarker(\\n\",\n       \"                [22.5111, 113.4075],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7307ee99980bfae5b9080e77ec7b03e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71b815af3f4f56d5e055c79893a5b2d4 = $(`&lt;div id=&quot;html_71b815af3f4f56d5e055c79893a5b2d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4075             latitude:22.5111             PM2_5:29.46927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7307ee99980bfae5b9080e77ec7b03e7.setContent(html_71b815af3f4f56d5e055c79893a5b2d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3ac0d679c2401ef43ea88fd52862bad.bindPopup(popup_7307ee99980bfae5b9080e77ec7b03e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e56ca09c0c68307bedd583ecce60f359 = L.circleMarker(\\n\",\n       \"                [29.6541, 91.1774],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f17ad68c79bef6247caf683a354a15d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6584938ff195a7380022d93c431c2b0 = $(`&lt;div id=&quot;html_f6584938ff195a7380022d93c431c2b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1774             latitude:29.6541             PM2_5:13.734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f17ad68c79bef6247caf683a354a15d.setContent(html_f6584938ff195a7380022d93c431c2b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e56ca09c0c68307bedd583ecce60f359.bindPopup(popup_6f17ad68c79bef6247caf683a354a15d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_443b3e924e5b20c72e5df30828008ada = L.circleMarker(\\n\",\n       \"                [26.6761, 118.0966],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df4fe5145c804bec08f3f5ae7a381de4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f65898a653aa667c3090fbd1dee60e1 = $(`&lt;div id=&quot;html_8f65898a653aa667c3090fbd1dee60e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0966             latitude:26.6761             PM2_5:19.22050562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df4fe5145c804bec08f3f5ae7a381de4.setContent(html_8f65898a653aa667c3090fbd1dee60e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_443b3e924e5b20c72e5df30828008ada.bindPopup(popup_df4fe5145c804bec08f3f5ae7a381de4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbdf4a2baad58ca2ac6b6a5a6c35eea9 = L.circleMarker(\\n\",\n       \"                [35.4883, 112.8564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0fb73f8d7dd909ca053df2364f476bea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3b3250f5a5b71af9feff3d5dec7a436 = $(`&lt;div id=&quot;html_d3b3250f5a5b71af9feff3d5dec7a436&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8564             latitude:35.4883             PM2_5:59.66573816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0fb73f8d7dd909ca053df2364f476bea.setContent(html_d3b3250f5a5b71af9feff3d5dec7a436);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbdf4a2baad58ca2ac6b6a5a6c35eea9.bindPopup(popup_0fb73f8d7dd909ca053df2364f476bea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9b4c6b00b2eb90fd1b4dee6c757cbf1 = L.circleMarker(\\n\",\n       \"                [37.187, 122.019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_469befe4cf138b139c92520e5a98b0be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a16bb3315c8ce1ccd527d382ff06e4e = $(`&lt;div id=&quot;html_8a16bb3315c8ce1ccd527d382ff06e4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.019             latitude:37.187             PM2_5:19.37711864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_469befe4cf138b139c92520e5a98b0be.setContent(html_8a16bb3315c8ce1ccd527d382ff06e4e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9b4c6b00b2eb90fd1b4dee6c757cbf1.bindPopup(popup_469befe4cf138b139c92520e5a98b0be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_853175aa9d6bbdc1c6438c29c95b31fb = L.circleMarker(\\n\",\n       \"                [34.493, 109.4636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4434aed0caf3d5e7b7dfd9bfb6785f18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25b9455f1fe866133428f3dfecc96d28 = $(`&lt;div id=&quot;html_25b9455f1fe866133428f3dfecc96d28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4636             latitude:34.493             PM2_5:70.88997214             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4434aed0caf3d5e7b7dfd9bfb6785f18.setContent(html_25b9455f1fe866133428f3dfecc96d28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_853175aa9d6bbdc1c6438c29c95b31fb.bindPopup(popup_4434aed0caf3d5e7b7dfd9bfb6785f18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d53ec6028651380fdafe00a0c670337a = L.circleMarker(\\n\",\n       \"                [39.7884, 109.9734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f056a323d592c2ba2ea1fb120911a2b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03435fc477670d010b329eebce66b016 = $(`&lt;div id=&quot;html_03435fc477670d010b329eebce66b016&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9734             latitude:39.7884             PM2_5:24.92339833             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f056a323d592c2ba2ea1fb120911a2b0.setContent(html_03435fc477670d010b329eebce66b016);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d53ec6028651380fdafe00a0c670337a.bindPopup(popup_f056a323d592c2ba2ea1fb120911a2b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f492b565d34dbf49363fa67d1d65c255 = L.circleMarker(\\n\",\n       \"                [30.1808, 120.088],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4d49d3becd18373a617937013210c71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e33995b6e29673a3fe21966d6311d8c = $(`&lt;div id=&quot;html_4e33995b6e29673a3fe21966d6311d8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.088             latitude:30.1808             PM2_5:34.76264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4d49d3becd18373a617937013210c71.setContent(html_4e33995b6e29673a3fe21966d6311d8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f492b565d34dbf49363fa67d1d65c255.bindPopup(popup_a4d49d3becd18373a617937013210c71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e8d0c94f36e2d88abb52466f260ae83 = L.circleMarker(\\n\",\n       \"                [35.76806, 115.0061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6c310bb01eff66c746e7ab4a43c527c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d62789d5dbff87ef5f47badd7a62a01d = $(`&lt;div id=&quot;html_d62789d5dbff87ef5f47badd7a62a01d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0061             latitude:35.76806             PM2_5:62.33002833             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6c310bb01eff66c746e7ab4a43c527c4.setContent(html_d62789d5dbff87ef5f47badd7a62a01d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e8d0c94f36e2d88abb52466f260ae83.bindPopup(popup_6c310bb01eff66c746e7ab4a43c527c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfeea4866cdcfee7e39d503131261aa7 = L.circleMarker(\\n\",\n       \"                [28.76611, 104.6225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d7ec175c80a3d24270274ea1e04835a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_916322928dfd0ab2e261ec0eaee52225 = $(`&lt;div id=&quot;html_916322928dfd0ab2e261ec0eaee52225&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6225             latitude:28.76611             PM2_5:47.41504178             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d7ec175c80a3d24270274ea1e04835a.setContent(html_916322928dfd0ab2e261ec0eaee52225);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfeea4866cdcfee7e39d503131261aa7.bindPopup(popup_8d7ec175c80a3d24270274ea1e04835a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4fd075968b58aeda4da5ee6efe5614f8 = L.circleMarker(\\n\",\n       \"                [22.6411, 110.1675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fbc5c7dc39270052bcf1057042400406 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce3484bd50b9daf6321eb153c7b74f0c = $(`&lt;div id=&quot;html_ce3484bd50b9daf6321eb153c7b74f0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1675             latitude:22.6411             PM2_5:38.76056338             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fbc5c7dc39270052bcf1057042400406.setContent(html_ce3484bd50b9daf6321eb153c7b74f0c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4fd075968b58aeda4da5ee6efe5614f8.bindPopup(popup_fbc5c7dc39270052bcf1057042400406)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_04526246673fe94ff1b570aeeac048a8 = L.circleMarker(\\n\",\n       \"                [26.6029, 106.6856],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb74213324acca3219e4ea329120c0b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b726ac01de286ed6468eff25a484d72 = $(`&lt;div id=&quot;html_2b726ac01de286ed6468eff25a484d72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6856             latitude:26.6029             PM2_5:30.36070381             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb74213324acca3219e4ea329120c0b3.setContent(html_2b726ac01de286ed6468eff25a484d72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_04526246673fe94ff1b570aeeac048a8.bindPopup(popup_eb74213324acca3219e4ea329120c0b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d1b542b2ad5bc9be50cfe55d9bb1b4a = L.circleMarker(\\n\",\n       \"                [29.7125, 106.617],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e98af3573527a8d2b1bdf4f8e21e8e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ed4941a5d4e882652f825598343bab0 = $(`&lt;div id=&quot;html_1ed4941a5d4e882652f825598343bab0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.617             latitude:29.7125             PM2_5:36.10724234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e98af3573527a8d2b1bdf4f8e21e8e8.setContent(html_1ed4941a5d4e882652f825598343bab0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d1b542b2ad5bc9be50cfe55d9bb1b4a.bindPopup(popup_9e98af3573527a8d2b1bdf4f8e21e8e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca5e248d0316bbd34f088acfdb4b685c = L.circleMarker(\\n\",\n       \"                [27.9939, 120.677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33eb2d72f4edf5dc6f65de6f39ef0e19 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27a543b9fd4f442772069b7af39170c3 = $(`&lt;div id=&quot;html_27a543b9fd4f442772069b7af39170c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.677             latitude:27.9939             PM2_5:32.07605634             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33eb2d72f4edf5dc6f65de6f39ef0e19.setContent(html_27a543b9fd4f442772069b7af39170c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca5e248d0316bbd34f088acfdb4b685c.bindPopup(popup_33eb2d72f4edf5dc6f65de6f39ef0e19)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9cf5d24739f008a5ad6860ec0a83f630 = L.circleMarker(\\n\",\n       \"                [36.864, 118.78],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b17e3071f9fd6239d4d30c3e9a7f97f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9fc9a2f44f484e9e4bf11dc2e7c422f8 = $(`&lt;div id=&quot;html_9fc9a2f44f484e9e4bf11dc2e7c422f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.78             latitude:36.864             PM2_5:52.04333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b17e3071f9fd6239d4d30c3e9a7f97f.setContent(html_9fc9a2f44f484e9e4bf11dc2e7c422f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9cf5d24739f008a5ad6860ec0a83f630.bindPopup(popup_1b17e3071f9fd6239d4d30c3e9a7f97f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7d162233ff97a2d75b000a1f914ed80 = L.circleMarker(\\n\",\n       \"                [39.3179, 112.4254],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffa061dbdb997f566324d1db83c6344b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38cad451bbe93e95424bfe7beac87405 = $(`&lt;div id=&quot;html_38cad451bbe93e95424bfe7beac87405&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4254             latitude:39.3179             PM2_5:46.64705882             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffa061dbdb997f566324d1db83c6344b.setContent(html_38cad451bbe93e95424bfe7beac87405);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7d162233ff97a2d75b000a1f914ed80.bindPopup(popup_ffa061dbdb997f566324d1db83c6344b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9bb09f716b7ddb4ac5ac7648b98f43b = L.circleMarker(\\n\",\n       \"                [27.8344, 114.9831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6a4ad1ea0773b7ac7f89864c37cf740 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f7e058e9ca23e05895e04ead2264730 = $(`&lt;div id=&quot;html_4f7e058e9ca23e05895e04ead2264730&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9831             latitude:27.8344             PM2_5:41.76601671             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6a4ad1ea0773b7ac7f89864c37cf740.setContent(html_4f7e058e9ca23e05895e04ead2264730);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9bb09f716b7ddb4ac5ac7648b98f43b.bindPopup(popup_e6a4ad1ea0773b7ac7f89864c37cf740)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff026a95c8ebaa7cf6033deedded8a6f = L.circleMarker(\\n\",\n       \"                [45.8167, 126.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_06db97445fd3be992513505c9944c26c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c45db16886f256fc7112781b950f5043 = $(`&lt;div id=&quot;html_c45db16886f256fc7112781b950f5043&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.561             latitude:45.8167             PM2_5:27.96121884             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_06db97445fd3be992513505c9944c26c.setContent(html_c45db16886f256fc7112781b950f5043);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff026a95c8ebaa7cf6033deedded8a6f.bindPopup(popup_06db97445fd3be992513505c9944c26c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d21179d91bc0a9b3d7d76fb6d915b98b = L.circleMarker(\\n\",\n       \"                [21.6533, 110.9294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c481c481c779569900e308a68e81f157 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_784a41b79653a0bb1f5ce2d852c9f6cc = $(`&lt;div id=&quot;html_784a41b79653a0bb1f5ce2d852c9f6cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9294             latitude:21.6533             PM2_5:25.79741379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c481c481c779569900e308a68e81f157.setContent(html_784a41b79653a0bb1f5ce2d852c9f6cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d21179d91bc0a9b3d7d76fb6d915b98b.bindPopup(popup_c481c481c779569900e308a68e81f157)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9b0f420a4653f40c3f5052a3f9215fa = L.circleMarker(\\n\",\n       \"                [36.0725, 103.841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02910b5656854a70dd03797756d03775 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06d0b8904707344a38f6b83c2e5b5ce3 = $(`&lt;div id=&quot;html_06d0b8904707344a38f6b83c2e5b5ce3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.841             latitude:36.0725             PM2_5:48.85734463             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02910b5656854a70dd03797756d03775.setContent(html_06d0b8904707344a38f6b83c2e5b5ce3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9b0f420a4653f40c3f5052a3f9215fa.bindPopup(popup_02910b5656854a70dd03797756d03775)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d21f92a374e6a81db0cb47679d9f4640 = L.circleMarker(\\n\",\n       \"                [36.39, 120.47],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_adbff44b94da1fd50dacd352a655c0fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5356ea6ce76e888ca1f8ae2feadd487 = $(`&lt;div id=&quot;html_a5356ea6ce76e888ca1f8ae2feadd487&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.47             latitude:36.39             PM2_5:28.07303371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_adbff44b94da1fd50dacd352a655c0fc.setContent(html_a5356ea6ce76e888ca1f8ae2feadd487);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d21f92a374e6a81db0cb47679d9f4640.bindPopup(popup_adbff44b94da1fd50dacd352a655c0fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f85058d6372a218a1cdec439ed08157d = L.circleMarker(\\n\",\n       \"                [46.0872, 85.6931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_257059ae92cc1e3dd99a8b81cddb135c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_623a949590426d48396c22e3172b0e22 = $(`&lt;div id=&quot;html_623a949590426d48396c22e3172b0e22&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:85.6931             latitude:46.0872             PM2_5:28.31534091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_257059ae92cc1e3dd99a8b81cddb135c.setContent(html_623a949590426d48396c22e3172b0e22);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f85058d6372a218a1cdec439ed08157d.bindPopup(popup_257059ae92cc1e3dd99a8b81cddb135c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85b0ab4200d4dec35bb934e1131b04cb = L.circleMarker(\\n\",\n       \"                [36.799, 119.976],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_542c9fd7142b6f6cbfff8c884bae104c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_468b2efca748a3cbf0636b1fec2d76d1 = $(`&lt;div id=&quot;html_468b2efca748a3cbf0636b1fec2d76d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.976             latitude:36.799             PM2_5:34.60057471             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_542c9fd7142b6f6cbfff8c884bae104c.setContent(html_468b2efca748a3cbf0636b1fec2d76d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85b0ab4200d4dec35bb934e1131b04cb.bindPopup(popup_542c9fd7142b6f6cbfff8c884bae104c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff22a44f3726a2b71a707f47b6a1ae70 = L.circleMarker(\\n\",\n       \"                [35.272, 113.884],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7b90d4abd752311a3f4677d6af37826 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a24a1d7111917a970e561b3f93e713de = $(`&lt;div id=&quot;html_a24a1d7111917a970e561b3f93e713de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.884             latitude:35.272             PM2_5:61.12534819             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7b90d4abd752311a3f4677d6af37826.setContent(html_a24a1d7111917a970e561b3f93e713de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff22a44f3726a2b71a707f47b6a1ae70.bindPopup(popup_c7b90d4abd752311a3f4677d6af37826)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1120395ffcd9f6f44c5805ec19de702f = L.circleMarker(\\n\",\n       \"                [29.90166667, 121.6147222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a98aacb0ce026e60f934459ccca17635 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7fc8919789257dbf057687121f7edd4 = $(`&lt;div id=&quot;html_e7fc8919789257dbf057687121f7edd4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6147222             latitude:29.90166667             PM2_5:33.82777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a98aacb0ce026e60f934459ccca17635.setContent(html_e7fc8919789257dbf057687121f7edd4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1120395ffcd9f6f44c5805ec19de702f.bindPopup(popup_a98aacb0ce026e60f934459ccca17635)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18658245be436e4b524e1bb3518cf51e = L.circleMarker(\\n\",\n       \"                [33.8561, 115.7831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbb442e25187223fec610a6f08a6454a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76ffa74b2191bf3d0894834d73d4b1de = $(`&lt;div id=&quot;html_76ffa74b2191bf3d0894834d73d4b1de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.7831             latitude:33.8561             PM2_5:51.48280802             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbb442e25187223fec610a6f08a6454a.setContent(html_76ffa74b2191bf3d0894834d73d4b1de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18658245be436e4b524e1bb3518cf51e.bindPopup(popup_bbb442e25187223fec610a6f08a6454a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b215fd909d42dcf43a7f725d1e1017b7 = L.circleMarker(\\n\",\n       \"                [43.9404, 81.2815],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5b416cce8816adccb7172e615fdc9ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46cdb87a5ac47fe57745b047aad5b001 = $(`&lt;div id=&quot;html_46cdb87a5ac47fe57745b047aad5b001&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.2815             latitude:43.9404             PM2_5:48.26760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5b416cce8816adccb7172e615fdc9ca.setContent(html_46cdb87a5ac47fe57745b047aad5b001);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b215fd909d42dcf43a7f725d1e1017b7.bindPopup(popup_d5b416cce8816adccb7172e615fdc9ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88f2f7e4d4100ae2d00ab48212941d80 = L.circleMarker(\\n\",\n       \"                [34.3181, 108.6761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20f8121e8a09fa1f75e5a2d17f2e41fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dab937552b4b00cd26c9c2e65d5433fe = $(`&lt;div id=&quot;html_dab937552b4b00cd26c9c2e65d5433fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6761             latitude:34.3181             PM2_5:64.58591549             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20f8121e8a09fa1f75e5a2d17f2e41fd.setContent(html_dab937552b4b00cd26c9c2e65d5433fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88f2f7e4d4100ae2d00ab48212941d80.bindPopup(popup_20f8121e8a09fa1f75e5a2d17f2e41fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d873d72ffaa2a43829f3fb1f6c3d0b8 = L.circleMarker(\\n\",\n       \"                [30.7525, 120.7844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d98750ce504b0b97212e5bc1219eed98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57a7fdb90eb36416e3e44f00da4b8376 = $(`&lt;div id=&quot;html_57a7fdb90eb36416e3e44f00da4b8376&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.7844444             latitude:30.7525             PM2_5:40.42222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d98750ce504b0b97212e5bc1219eed98.setContent(html_57a7fdb90eb36416e3e44f00da4b8376);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d873d72ffaa2a43829f3fb1f6c3d0b8.bindPopup(popup_d98750ce504b0b97212e5bc1219eed98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2794971e3049e95190ef0193996b2d03 = L.circleMarker(\\n\",\n       \"                [31.7848, 117.196],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c7e0534fc0dfd300a2960fe1c4ee084 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8eac6be0c8c19fba5e94e59612c46b0 = $(`&lt;div id=&quot;html_d8eac6be0c8c19fba5e94e59612c46b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.196             latitude:31.7848             PM2_5:48.77949438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c7e0534fc0dfd300a2960fe1c4ee084.setContent(html_d8eac6be0c8c19fba5e94e59612c46b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2794971e3049e95190ef0193996b2d03.bindPopup(popup_7c7e0534fc0dfd300a2960fe1c4ee084)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e333e5556f4a3b7bc5deed52567068b8 = L.circleMarker(\\n\",\n       \"                [38.00583333, 114.4586111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1141287e00ac7d9449c12a356ea9488c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93266ad502c349ccf283eaaeadcb12bd = $(`&lt;div id=&quot;html_93266ad502c349ccf283eaaeadcb12bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4586111             latitude:38.00583333             PM2_5:64.80532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1141287e00ac7d9449c12a356ea9488c.setContent(html_93266ad502c349ccf283eaaeadcb12bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e333e5556f4a3b7bc5deed52567068b8.bindPopup(popup_1141287e00ac7d9449c12a356ea9488c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7251c20cff09fb0ebde43e5e2c93eb2d = L.circleMarker(\\n\",\n       \"                [30.6872, 104.176],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_757bb1bb4a36edbe4a07a91e721aab23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c3fe720f9323b0f37805a56455b08c5 = $(`&lt;div id=&quot;html_2c3fe720f9323b0f37805a56455b08c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.176             latitude:30.6872             PM2_5:55.30532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_757bb1bb4a36edbe4a07a91e721aab23.setContent(html_2c3fe720f9323b0f37805a56455b08c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7251c20cff09fb0ebde43e5e2c93eb2d.bindPopup(popup_757bb1bb4a36edbe4a07a91e721aab23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ab3d60c75bd7932bbf43f4212ba2347 = L.circleMarker(\\n\",\n       \"                [34.29, 117.1814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1bbb71496d8e36d873c711688f45fc3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff840c5df8c79434f481d8dc76a2cd23 = $(`&lt;div id=&quot;html_ff840c5df8c79434f481d8dc76a2cd23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1814             latitude:34.29             PM2_5:63.42997199             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1bbb71496d8e36d873c711688f45fc3d.setContent(html_ff840c5df8c79434f481d8dc76a2cd23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ab3d60c75bd7932bbf43f4212ba2347.bindPopup(popup_1bbb71496d8e36d873c711688f45fc3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_935a10df9d0d34d9bb59c66a19d8962b = L.circleMarker(\\n\",\n       \"                [45.5828, 84.8897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cab0efc1200cd31a55ced2472c266e1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9006b88ebc5c0bac057713d0d51d152 = $(`&lt;div id=&quot;html_a9006b88ebc5c0bac057713d0d51d152&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8897             latitude:45.5828             PM2_5:21.96296296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cab0efc1200cd31a55ced2472c266e1d.setContent(html_a9006b88ebc5c0bac057713d0d51d152);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_935a10df9d0d34d9bb59c66a19d8962b.bindPopup(popup_cab0efc1200cd31a55ced2472c266e1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf773c715cf46550a420e7612c18eb02 = L.circleMarker(\\n\",\n       \"                [30.7157, 111.3009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86e1af7af7eb7e92b6d78c2b4703bf68 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df87f4c88d8c3384b32256df6c8182a2 = $(`&lt;div id=&quot;html_df87f4c88d8c3384b32256df6c8182a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3009             latitude:30.7157             PM2_5:54.33893557             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86e1af7af7eb7e92b6d78c2b4703bf68.setContent(html_df87f4c88d8c3384b32256df6c8182a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf773c715cf46550a420e7612c18eb02.bindPopup(popup_86e1af7af7eb7e92b6d78c2b4703bf68)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1bb2863f46bc5bb365d8867d5fe561c = L.circleMarker(\\n\",\n       \"                [30.1366, 104.6617],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ad8d89b75f1d0cf539adf3dc8c5e558 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f02c0bd0ebe11b2850c0d233462e63f = $(`&lt;div id=&quot;html_8f02c0bd0ebe11b2850c0d233462e63f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6617             latitude:30.1366             PM2_5:33.4432133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ad8d89b75f1d0cf539adf3dc8c5e558.setContent(html_8f02c0bd0ebe11b2850c0d233462e63f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1bb2863f46bc5bb365d8867d5fe561c.bindPopup(popup_3ad8d89b75f1d0cf539adf3dc8c5e558)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a59756dafad191ea1784cc18fdb058d4 = L.circleMarker(\\n\",\n       \"                [42.8775, 129.3675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a555070eddea306703460633c277c72c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6bbb4bfa57eaaa072cb52e6066217f39 = $(`&lt;div id=&quot;html_6bbb4bfa57eaaa072cb52e6066217f39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.3675             latitude:42.8775             PM2_5:16.46751412             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a555070eddea306703460633c277c72c.setContent(html_6bbb4bfa57eaaa072cb52e6066217f39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a59756dafad191ea1784cc18fdb058d4.bindPopup(popup_a555070eddea306703460633c277c72c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be1f694ce71feaa4b7dfe620b074c489 = L.circleMarker(\\n\",\n       \"                [34.7496, 113.5991],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01fc5855d02b4af8bcf3ab9377fd3fcb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ae64843e49bbeb41aab77e69c693e56 = $(`&lt;div id=&quot;html_7ae64843e49bbeb41aab77e69c693e56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5991             latitude:34.7496             PM2_5:64.34520124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01fc5855d02b4af8bcf3ab9377fd3fcb.setContent(html_7ae64843e49bbeb41aab77e69c693e56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be1f694ce71feaa4b7dfe620b074c489.bindPopup(popup_01fc5855d02b4af8bcf3ab9377fd3fcb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_941a0836038ccd9cdd68068f466e9353 = L.circleMarker(\\n\",\n       \"                [29.261, 91.7706],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b43b902edb5f2841a59fbd1929acef39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_285ea6cc9e53b362a32bdca52dfa11cb = $(`&lt;div id=&quot;html_285ea6cc9e53b362a32bdca52dfa11cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.7706             latitude:29.261             PM2_5:7.943313953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b43b902edb5f2841a59fbd1929acef39.setContent(html_285ea6cc9e53b362a32bdca52dfa11cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_941a0836038ccd9cdd68068f466e9353.bindPopup(popup_b43b902edb5f2841a59fbd1929acef39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a49c26b571e0869a1ecaa1ec7ca418a2 = L.circleMarker(\\n\",\n       \"                [34.7967, 114.2886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20fb0ddaaab775b0521f7490219294e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43a590d619747d071b2489931345a767 = $(`&lt;div id=&quot;html_43a590d619747d071b2489931345a767&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2886             latitude:34.7967             PM2_5:58.68994413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20fb0ddaaab775b0521f7490219294e0.setContent(html_43a590d619747d071b2489931345a767);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a49c26b571e0869a1ecaa1ec7ca418a2.bindPopup(popup_20fb0ddaaab775b0521f7490219294e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_354217fbbacd7adc935e4b90cb38368c = L.circleMarker(\\n\",\n       \"                [32.18888889, 119.4369444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ecfa1b8b43f377b9a782879e1e63f5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f81211015afbde42af737e8c75b4eb1a = $(`&lt;div id=&quot;html_f81211015afbde42af737e8c75b4eb1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.4369444             latitude:32.18888889             PM2_5:49.86908078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ecfa1b8b43f377b9a782879e1e63f5a.setContent(html_f81211015afbde42af737e8c75b4eb1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_354217fbbacd7adc935e4b90cb38368c.bindPopup(popup_5ecfa1b8b43f377b9a782879e1e63f5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fcf710f3f71829b6e76987ad614ef894 = L.circleMarker(\\n\",\n       \"                [29.6747, 91.1221],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91a77055194155a422ca6d3fa1d0e53f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_657c38b3945b252a94a8d5d347c77a44 = $(`&lt;div id=&quot;html_657c38b3945b252a94a8d5d347c77a44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1221             latitude:29.6747             PM2_5:15.42241379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91a77055194155a422ca6d3fa1d0e53f.setContent(html_657c38b3945b252a94a8d5d347c77a44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fcf710f3f71829b6e76987ad614ef894.bindPopup(popup_91a77055194155a422ca6d3fa1d0e53f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a55277407226b401c06c914d74b66943 = L.circleMarker(\\n\",\n       \"                [22.0019, 100.7939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c5a4993f979e1a2cda5d4a86eb459e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ed98b47dddd76d5226d89879c5268ee = $(`&lt;div id=&quot;html_2ed98b47dddd76d5226d89879c5268ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.7939             latitude:22.0019             PM2_5:25.28366762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c5a4993f979e1a2cda5d4a86eb459e0.setContent(html_2ed98b47dddd76d5226d89879c5268ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a55277407226b401c06c914d74b66943.bindPopup(popup_1c5a4993f979e1a2cda5d4a86eb459e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c91416502edd3f3c8489f9c76cec410 = L.circleMarker(\\n\",\n       \"                [34.7822, 111.19],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_673ebc696585e608dd23ff27bf719c29 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bea4d7a061c8f1f10918f9f34eed03e4 = $(`&lt;div id=&quot;html_bea4d7a061c8f1f10918f9f34eed03e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.19             latitude:34.7822             PM2_5:56.6448468             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_673ebc696585e608dd23ff27bf719c29.setContent(html_bea4d7a061c8f1f10918f9f34eed03e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c91416502edd3f3c8489f9c76cec410.bindPopup(popup_673ebc696585e608dd23ff27bf719c29)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5828f6ef86dd5d3e8e897c26b2d36c1d = L.circleMarker(\\n\",\n       \"                [26.8576, 100.2143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7821bb2bee6a3db77828a31eb1a001ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b8ce2a3be559b10d0df4f6f0a1b97944 = $(`&lt;div id=&quot;html_b8ce2a3be559b10d0df4f6f0a1b97944&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2143             latitude:26.8576             PM2_5:19.28389831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7821bb2bee6a3db77828a31eb1a001ed.setContent(html_b8ce2a3be559b10d0df4f6f0a1b97944);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5828f6ef86dd5d3e8e897c26b2d36c1d.bindPopup(popup_7821bb2bee6a3db77828a31eb1a001ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab21b382c78389fa7735b5c634ebbc8d = L.circleMarker(\\n\",\n       \"                [36.61981, 114.4965],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b78b31f67f5f2d7d104a9e0e86e58927 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9141808dfccba673b74eae1ab7d9441 = $(`&lt;div id=&quot;html_e9141808dfccba673b74eae1ab7d9441&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4965             latitude:36.61981             PM2_5:70.51810585             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b78b31f67f5f2d7d104a9e0e86e58927.setContent(html_e9141808dfccba673b74eae1ab7d9441);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab21b382c78389fa7735b5c634ebbc8d.bindPopup(popup_b78b31f67f5f2d7d104a9e0e86e58927)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f1902dca7679ad56247a3de1e505250 = L.circleMarker(\\n\",\n       \"                [32.3292, 119.8767],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c411526b787133eb3172ef14ff6ba4f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebf538837c8fe9474d8e3756b761e103 = $(`&lt;div id=&quot;html_ebf538837c8fe9474d8e3756b761e103&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.8767             latitude:32.3292             PM2_5:46.44334278             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c411526b787133eb3172ef14ff6ba4f4.setContent(html_ebf538837c8fe9474d8e3756b761e103);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f1902dca7679ad56247a3de1e505250.bindPopup(popup_c411526b787133eb3172ef14ff6ba4f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7e946bc79caa6db80938ea6fc468f79 = L.circleMarker(\\n\",\n       \"                [34.2778, 117.2933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b72b7a4e36bc4c44440e24bc12face2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29bcfc72f657e2718d7fe0b215ed150a = $(`&lt;div id=&quot;html_29bcfc72f657e2718d7fe0b215ed150a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2933             latitude:34.2778             PM2_5:67.94117647             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b72b7a4e36bc4c44440e24bc12face2d.setContent(html_29bcfc72f657e2718d7fe0b215ed150a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7e946bc79caa6db80938ea6fc468f79.bindPopup(popup_b72b7a4e36bc4c44440e24bc12face2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9589515adf7a06451b7fed02509172e = L.circleMarker(\\n\",\n       \"                [37.3803, 118.0062],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5bbb378be2e5a4aabd4e3098f57dc24 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa10f580c5e563bb101fe71ee4d22adf = $(`&lt;div id=&quot;html_aa10f580c5e563bb101fe71ee4d22adf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0062             latitude:37.3803             PM2_5:57.56779661             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5bbb378be2e5a4aabd4e3098f57dc24.setContent(html_aa10f580c5e563bb101fe71ee4d22adf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9589515adf7a06451b7fed02509172e.bindPopup(popup_b5bbb378be2e5a4aabd4e3098f57dc24)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_172e131899cadcb66727f2e736123d9c = L.circleMarker(\\n\",\n       \"                [29.8272, 106.379],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_273b96393c96e8938138a5c66d3f0294 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f22b0c8af0de2d37387716ec2dd0e6c = $(`&lt;div id=&quot;html_8f22b0c8af0de2d37387716ec2dd0e6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.379             latitude:29.8272             PM2_5:31.79189944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_273b96393c96e8938138a5c66d3f0294.setContent(html_8f22b0c8af0de2d37387716ec2dd0e6c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_172e131899cadcb66727f2e736123d9c.bindPopup(popup_273b96393c96e8938138a5c66d3f0294)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_522d15b756134ba8934898bdf541b68b = L.circleMarker(\\n\",\n       \"                [28.6425, 115.892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ebd9a8139abb133dae657f1b950e4b14 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f90a6f61c5ee872e8a5cb846431ae463 = $(`&lt;div id=&quot;html_f90a6f61c5ee872e8a5cb846431ae463&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.892             latitude:28.6425             PM2_5:36.65598886             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ebd9a8139abb133dae657f1b950e4b14.setContent(html_f90a6f61c5ee872e8a5cb846431ae463);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_522d15b756134ba8934898bdf541b68b.bindPopup(popup_ebd9a8139abb133dae657f1b950e4b14)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f334fa9488b0c7fa21f3a9dc38e42386 = L.circleMarker(\\n\",\n       \"                [39.0511, 121.7769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eaee44a985d133a538bb6ab25948add8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a30dab8f11b6ad6fb9d661f522bbbed3 = $(`&lt;div id=&quot;html_a30dab8f11b6ad6fb9d661f522bbbed3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.7769             latitude:39.0511             PM2_5:29.50833333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eaee44a985d133a538bb6ab25948add8.setContent(html_a30dab8f11b6ad6fb9d661f522bbbed3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f334fa9488b0c7fa21f3a9dc38e42386.bindPopup(popup_eaee44a985d133a538bb6ab25948add8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f91ab9207b48b247b9eef323f26507a = L.circleMarker(\\n\",\n       \"                [39.3265, 112.4078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_324b4598555c8c8888629a5a3107bfd2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6ae223bdb987b362ed1f6a0584fa84e = $(`&lt;div id=&quot;html_c6ae223bdb987b362ed1f6a0584fa84e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4078             latitude:39.3265             PM2_5:48.93417367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_324b4598555c8c8888629a5a3107bfd2.setContent(html_c6ae223bdb987b362ed1f6a0584fa84e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f91ab9207b48b247b9eef323f26507a.bindPopup(popup_324b4598555c8c8888629a5a3107bfd2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b9347474441663e6cfd207fc6ed4fe0 = L.circleMarker(\\n\",\n       \"                [37.7575, 115.6951],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_273df899aec86c1fe5552473f0dd7367 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9b88374300fbbd1ac99f5a0b5412c3a = $(`&lt;div id=&quot;html_c9b88374300fbbd1ac99f5a0b5412c3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6951             latitude:37.7575             PM2_5:58.14285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_273df899aec86c1fe5552473f0dd7367.setContent(html_c9b88374300fbbd1ac99f5a0b5412c3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b9347474441663e6cfd207fc6ed4fe0.bindPopup(popup_273df899aec86c1fe5552473f0dd7367)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b4774a96934a0d9b7c6903eef1d6eba = L.circleMarker(\\n\",\n       \"                [42.2814, 118.9233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da4d5e393d10d56f1abd98e54141ce43 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0dd462b6274dba23b0082c3426aa4da4 = $(`&lt;div id=&quot;html_0dd462b6274dba23b0082c3426aa4da4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9233             latitude:42.2814             PM2_5:24.72268908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da4d5e393d10d56f1abd98e54141ce43.setContent(html_0dd462b6274dba23b0082c3426aa4da4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b4774a96934a0d9b7c6903eef1d6eba.bindPopup(popup_da4d5e393d10d56f1abd98e54141ce43)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13653de48932c428e5b00fcb2c08eadc = L.circleMarker(\\n\",\n       \"                [33.027, 112.5573],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a39c4da5ac7c790b7f35ecdd834782ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d329e3334d5c0130d5dfb9489965e12c = $(`&lt;div id=&quot;html_d329e3334d5c0130d5dfb9489965e12c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5573             latitude:33.027             PM2_5:60.09610028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a39c4da5ac7c790b7f35ecdd834782ba.setContent(html_d329e3334d5c0130d5dfb9489965e12c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13653de48932c428e5b00fcb2c08eadc.bindPopup(popup_a39c4da5ac7c790b7f35ecdd834782ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13c01ece824c8648b2dd59c363dc6f17 = L.circleMarker(\\n\",\n       \"                [35.3962, 119.54],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec624202649a41effcb08aeee500845b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4179c7cab7ec7a05d9b777c59331600e = $(`&lt;div id=&quot;html_4179c7cab7ec7a05d9b777c59331600e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.54             latitude:35.3962             PM2_5:42.57464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec624202649a41effcb08aeee500845b.setContent(html_4179c7cab7ec7a05d9b777c59331600e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13c01ece824c8648b2dd59c363dc6f17.bindPopup(popup_ec624202649a41effcb08aeee500845b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_699cae7c74bd3262cbcc6097565a9479 = L.circleMarker(\\n\",\n       \"                [21.5958, 109.2256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_996c1041507380ad72d2b6b6d3a9b1e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e9ae1dc01eadadc9d068eccc440d609 = $(`&lt;div id=&quot;html_3e9ae1dc01eadadc9d068eccc440d609&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2256             latitude:21.5958             PM2_5:34.31700288             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_996c1041507380ad72d2b6b6d3a9b1e2.setContent(html_3e9ae1dc01eadadc9d068eccc440d609);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_699cae7c74bd3262cbcc6097565a9479.bindPopup(popup_996c1041507380ad72d2b6b6d3a9b1e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74c67b0038a0ff928f6675e99e7e0063 = L.circleMarker(\\n\",\n       \"                [35.31, 113.836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8645baf2da41e4f630352d8d3cda8494 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01bca81eacf3eec7cb94f6792240d8a6 = $(`&lt;div id=&quot;html_01bca81eacf3eec7cb94f6792240d8a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.836             latitude:35.31             PM2_5:57.52793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8645baf2da41e4f630352d8d3cda8494.setContent(html_01bca81eacf3eec7cb94f6792240d8a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74c67b0038a0ff928f6675e99e7e0063.bindPopup(popup_8645baf2da41e4f630352d8d3cda8494)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69b3e1c8ec6dcc0786baae66e8d3efe4 = L.circleMarker(\\n\",\n       \"                [43.55, 125.633],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47258921808768730c22cb5d791ebc93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47cf51685f144ca13a91059ac05677ac = $(`&lt;div id=&quot;html_47cf51685f144ca13a91059ac05677ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.633             latitude:43.55             PM2_5:26.19602273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47258921808768730c22cb5d791ebc93.setContent(html_47cf51685f144ca13a91059ac05677ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69b3e1c8ec6dcc0786baae66e8d3efe4.bindPopup(popup_47258921808768730c22cb5d791ebc93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74349a2420c1814fae178113f187803c = L.circleMarker(\\n\",\n       \"                [28.6844, 115.931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18c9ba6beabcbd47d275b3e886754777 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3e6c81274984fc7b41df701d4fa8222 = $(`&lt;div id=&quot;html_d3e6c81274984fc7b41df701d4fa8222&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.931             latitude:28.6844             PM2_5:35.57244318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18c9ba6beabcbd47d275b3e886754777.setContent(html_d3e6c81274984fc7b41df701d4fa8222);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74349a2420c1814fae178113f187803c.bindPopup(popup_18c9ba6beabcbd47d275b3e886754777)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_825fdff4b2c2f883c4a4a6243b977a02 = L.circleMarker(\\n\",\n       \"                [35.4813, 112.8252],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c502fef5597b3e50ac56f204da28007c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9434e8f24e445b0afb25388440fce9e8 = $(`&lt;div id=&quot;html_9434e8f24e445b0afb25388440fce9e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8252             latitude:35.4813             PM2_5:60.03361345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c502fef5597b3e50ac56f204da28007c.setContent(html_9434e8f24e445b0afb25388440fce9e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_825fdff4b2c2f883c4a4a6243b977a02.bindPopup(popup_c502fef5597b3e50ac56f204da28007c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43e803deafa33b29ad6c16686e3d9d33 = L.circleMarker(\\n\",\n       \"                [30.2897, 120.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79529bc3a1c5355f028bec10e0281f5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be37ee0fec9f79385c790f906dc37740 = $(`&lt;div id=&quot;html_be37ee0fec9f79385c790f906dc37740&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.157             latitude:30.2897             PM2_5:50.10972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79529bc3a1c5355f028bec10e0281f5a.setContent(html_be37ee0fec9f79385c790f906dc37740);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43e803deafa33b29ad6c16686e3d9d33.bindPopup(popup_79529bc3a1c5355f028bec10e0281f5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cec00960fe4bce6a90c3e209b44d9d56 = L.circleMarker(\\n\",\n       \"                [30.049, 119.946],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68720141b858e50b77de845d092cf49e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59a780f81264952f2ab859f36d787189 = $(`&lt;div id=&quot;html_59a780f81264952f2ab859f36d787189&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.946             latitude:30.049             PM2_5:31.72916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68720141b858e50b77de845d092cf49e.setContent(html_59a780f81264952f2ab859f36d787189);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cec00960fe4bce6a90c3e209b44d9d56.bindPopup(popup_68720141b858e50b77de845d092cf49e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed02888813d33aed25728ddc80cc609d = L.circleMarker(\\n\",\n       \"                [32.0878, 118.626],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94a170bb22b95279f7e4b5071273d961 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1ed3264521b7e67fa0c9dbcda73e4a1 = $(`&lt;div id=&quot;html_d1ed3264521b7e67fa0c9dbcda73e4a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.626             latitude:32.0878             PM2_5:38.83383686             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94a170bb22b95279f7e4b5071273d961.setContent(html_d1ed3264521b7e67fa0c9dbcda73e4a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed02888813d33aed25728ddc80cc609d.bindPopup(popup_94a170bb22b95279f7e4b5071273d961)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b17f19e18dde50a3567caa6b4477cb0 = L.circleMarker(\\n\",\n       \"                [36.6164, 114.5426],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5a07fe4b4188e5f8348ed92a5b79845 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58f54bf9e2b64b7a75895b69ba8275ad = $(`&lt;div id=&quot;html_58f54bf9e2b64b7a75895b69ba8275ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5426             latitude:36.6164             PM2_5:75.5491573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5a07fe4b4188e5f8348ed92a5b79845.setContent(html_58f54bf9e2b64b7a75895b69ba8275ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b17f19e18dde50a3567caa6b4477cb0.bindPopup(popup_d5a07fe4b4188e5f8348ed92a5b79845)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65d21ae8bd9fe74bdebaf3dd1205d8f9 = L.circleMarker(\\n\",\n       \"                [46.8025, 130.2719],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f174b4fa0ab1f6d68697d75907127bac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39b82c343dc875bbbe5e21a8fccab692 = $(`&lt;div id=&quot;html_39b82c343dc875bbbe5e21a8fccab692&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.2719             latitude:46.8025             PM2_5:28.64647887             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f174b4fa0ab1f6d68697d75907127bac.setContent(html_39b82c343dc875bbbe5e21a8fccab692);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65d21ae8bd9fe74bdebaf3dd1205d8f9.bindPopup(popup_f174b4fa0ab1f6d68697d75907127bac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3dd07a49c28941f12f61ddc0ad4c80f6 = L.circleMarker(\\n\",\n       \"                [23.6714, 116.6339],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5891daf45a802f0e4cd712952b192bbd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff6f418e0084dffaa5fd4287a3ad153d = $(`&lt;div id=&quot;html_ff6f418e0084dffaa5fd4287a3ad153d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6339             latitude:23.6714             PM2_5:29.08888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5891daf45a802f0e4cd712952b192bbd.setContent(html_ff6f418e0084dffaa5fd4287a3ad153d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3dd07a49c28941f12f61ddc0ad4c80f6.bindPopup(popup_5891daf45a802f0e4cd712952b192bbd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23a716086aa4ac52cdab23c33bcbbb60 = L.circleMarker(\\n\",\n       \"                [41.1933, 80.2956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3f6867a68fd29fc9655d8eb76b011f0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22741a859777d23f25ad388456530ef3 = $(`&lt;div id=&quot;html_22741a859777d23f25ad388456530ef3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2956             latitude:41.1933             PM2_5:69.5377095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3f6867a68fd29fc9655d8eb76b011f0.setContent(html_22741a859777d23f25ad388456530ef3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23a716086aa4ac52cdab23c33bcbbb60.bindPopup(popup_d3f6867a68fd29fc9655d8eb76b011f0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_018b7333c08c05640a906c6c0ab70b88 = L.circleMarker(\\n\",\n       \"                [38.9467, 100.4686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ad92945ef30f5e2634c131dcb829ced = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04219841c49b74ed360a37eb8b47cc32 = $(`&lt;div id=&quot;html_04219841c49b74ed360a37eb8b47cc32&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.4686             latitude:38.9467             PM2_5:19.8             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ad92945ef30f5e2634c131dcb829ced.setContent(html_04219841c49b74ed360a37eb8b47cc32);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_018b7333c08c05640a906c6c0ab70b88.bindPopup(popup_7ad92945ef30f5e2634c131dcb829ced)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51fddaccf7b96f8c5ce540f97d1d373a = L.circleMarker(\\n\",\n       \"                [22.6069, 113.104],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_813599cc3e89c290b2e69c07498ef187 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7950545fb2f0360bae5a960dc849869 = $(`&lt;div id=&quot;html_d7950545fb2f0360bae5a960dc849869&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.104             latitude:22.6069             PM2_5:37.28011204             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_813599cc3e89c290b2e69c07498ef187.setContent(html_d7950545fb2f0360bae5a960dc849869);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51fddaccf7b96f8c5ce540f97d1d373a.bindPopup(popup_813599cc3e89c290b2e69c07498ef187)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94561539131e44f45b98bf22bb064a30 = L.circleMarker(\\n\",\n       \"                [30.2028, 115.0767],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16839aa95c513f10606ac268e4b62ae6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d0dd674ee5cfbcdfd1eba3c24aedc24 = $(`&lt;div id=&quot;html_2d0dd674ee5cfbcdfd1eba3c24aedc24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0767             latitude:30.2028             PM2_5:54.00704225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16839aa95c513f10606ac268e4b62ae6.setContent(html_2d0dd674ee5cfbcdfd1eba3c24aedc24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94561539131e44f45b98bf22bb064a30.bindPopup(popup_16839aa95c513f10606ac268e4b62ae6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b247eaf78db7e9efbf5706d934e15ae = L.circleMarker(\\n\",\n       \"                [40.7608, 107.4211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ddebfb31ad838147178a22416e6c4f15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0f764875cf87b7f988ba0e5a33a53e0 = $(`&lt;div id=&quot;html_c0f764875cf87b7f988ba0e5a33a53e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4211             latitude:40.7608             PM2_5:25.21610169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ddebfb31ad838147178a22416e6c4f15.setContent(html_c0f764875cf87b7f988ba0e5a33a53e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b247eaf78db7e9efbf5706d934e15ae.bindPopup(popup_ddebfb31ad838147178a22416e6c4f15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd989e141f5f412908d93198dcd0927c = L.circleMarker(\\n\",\n       \"                [41.7128, 86.2381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5065f4aa22e18a93e59c826c9e163639 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_373bda759426172187a379c80da3b65e = $(`&lt;div id=&quot;html_373bda759426172187a379c80da3b65e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.2381             latitude:41.7128             PM2_5:41.54929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5065f4aa22e18a93e59c826c9e163639.setContent(html_373bda759426172187a379c80da3b65e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd989e141f5f412908d93198dcd0927c.bindPopup(popup_5065f4aa22e18a93e59c826c9e163639)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7bbe7c6c52ac07f0311b90a8e044485 = L.circleMarker(\\n\",\n       \"                [43.8256, 126.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d26f8b1999dda788b2634fe4481f2593 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2478a848d6dff62e650973a350452a2 = $(`&lt;div id=&quot;html_f2478a848d6dff62e650973a350452a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.55             latitude:43.8256             PM2_5:32.43871866             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d26f8b1999dda788b2634fe4481f2593.setContent(html_f2478a848d6dff62e650973a350452a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7bbe7c6c52ac07f0311b90a8e044485.bindPopup(popup_d26f8b1999dda788b2634fe4481f2593)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_583c66679056d0236d447823a579406f = L.circleMarker(\\n\",\n       \"                [31.2994, 120.543],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_577b2fe74f6463c810e0021afd0fb153 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad6f73e6b1dcb0df33831480ae297f05 = $(`&lt;div id=&quot;html_ad6f73e6b1dcb0df33831480ae297f05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.543             latitude:31.2994             PM2_5:40.22777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_577b2fe74f6463c810e0021afd0fb153.setContent(html_ad6f73e6b1dcb0df33831480ae297f05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_583c66679056d0236d447823a579406f.bindPopup(popup_577b2fe74f6463c810e0021afd0fb153)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eefaa8cf1a5c773dabeb63002db7632c = L.circleMarker(\\n\",\n       \"                [26.2331, 111.6236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33c5fbf91dca20a26dcf1e45afd5eaf5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_723e4975bad6f8abce3b1bf5c10aea7f = $(`&lt;div id=&quot;html_723e4975bad6f8abce3b1bf5c10aea7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6236             latitude:26.2331             PM2_5:39.27011494             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33c5fbf91dca20a26dcf1e45afd5eaf5.setContent(html_723e4975bad6f8abce3b1bf5c10aea7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eefaa8cf1a5c773dabeb63002db7632c.bindPopup(popup_33c5fbf91dca20a26dcf1e45afd5eaf5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8da922248a4165fee72fe36b1aa24d29 = L.circleMarker(\\n\",\n       \"                [24.506, 117.7116],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02362c40f35151175e186ed76e439178 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19e798ded6abf09a6beedb889c147420 = $(`&lt;div id=&quot;html_19e798ded6abf09a6beedb889c147420&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7116             latitude:24.506             PM2_5:32.09052925             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02362c40f35151175e186ed76e439178.setContent(html_19e798ded6abf09a6beedb889c147420);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8da922248a4165fee72fe36b1aa24d29.bindPopup(popup_02362c40f35151175e186ed76e439178)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e22feb99c7ba86ea46d9282007eb5caf = L.circleMarker(\\n\",\n       \"                [26.0931, 119.58],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c03fcaa98efb161e2a38ef0442f33188 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a04727f598a2e5d9a7d0004e2fc0be8 = $(`&lt;div id=&quot;html_6a04727f598a2e5d9a7d0004e2fc0be8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.58             latitude:26.0931             PM2_5:24.6103352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c03fcaa98efb161e2a38ef0442f33188.setContent(html_6a04727f598a2e5d9a7d0004e2fc0be8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e22feb99c7ba86ea46d9282007eb5caf.bindPopup(popup_c03fcaa98efb161e2a38ef0442f33188)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4a6900ec4e4ee89d7f99de25530abef = L.circleMarker(\\n\",\n       \"                [23.0048, 113.134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_737ac07a70389aa0c88edaa2ea73cf72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7eb4559a7eefe7c531447888e045b6de = $(`&lt;div id=&quot;html_7eb4559a7eefe7c531447888e045b6de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.134             latitude:23.0048             PM2_5:35.82152975             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_737ac07a70389aa0c88edaa2ea73cf72.setContent(html_7eb4559a7eefe7c531447888e045b6de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4a6900ec4e4ee89d7f99de25530abef.bindPopup(popup_737ac07a70389aa0c88edaa2ea73cf72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e29a84de6810679e5899f891e96ad0f5 = L.circleMarker(\\n\",\n       \"                [26.2403, 107.5228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b638231a29bd2a57db1deb98ac76e893 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_889545154a36fdee5cd695d248c30eb8 = $(`&lt;div id=&quot;html_889545154a36fdee5cd695d248c30eb8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5228             latitude:26.2403             PM2_5:23.11350575             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b638231a29bd2a57db1deb98ac76e893.setContent(html_889545154a36fdee5cd695d248c30eb8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e29a84de6810679e5899f891e96ad0f5.bindPopup(popup_b638231a29bd2a57db1deb98ac76e893)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7cc4f820c13aeec988273bae55a842e0 = L.circleMarker(\\n\",\n       \"                [38.2911, 109.7456],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6a7cbc06131743dc469af556b9f5fbb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aca9e5ad0da2ff32ea26e56e7ba18bed = $(`&lt;div id=&quot;html_aca9e5ad0da2ff32ea26e56e7ba18bed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7456             latitude:38.2911             PM2_5:29.62570621             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6a7cbc06131743dc469af556b9f5fbb.setContent(html_aca9e5ad0da2ff32ea26e56e7ba18bed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7cc4f820c13aeec988273bae55a842e0.bindPopup(popup_f6a7cbc06131743dc469af556b9f5fbb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65912d7766a7fce9b3fa35d6ee5c6879 = L.circleMarker(\\n\",\n       \"                [46.6384, 126.9934],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4175140ad0e6155b9d7ff6e1f7eb02e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed4be657f4986c9debcac672fc72edf5 = $(`&lt;div id=&quot;html_ed4be657f4986c9debcac672fc72edf5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.9934             latitude:46.6384             PM2_5:29.89728097             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4175140ad0e6155b9d7ff6e1f7eb02e2.setContent(html_ed4be657f4986c9debcac672fc72edf5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65912d7766a7fce9b3fa35d6ee5c6879.bindPopup(popup_4175140ad0e6155b9d7ff6e1f7eb02e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94b726097e21b6537e49434b051df9ed = L.circleMarker(\\n\",\n       \"                [28.1944, 113.0014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_097277d5e7489042838794f98daa5bee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7fa9dc47563362a7df4694c3a1a578f = $(`&lt;div id=&quot;html_c7fa9dc47563362a7df4694c3a1a578f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0014             latitude:28.1944             PM2_5:52.33757062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_097277d5e7489042838794f98daa5bee.setContent(html_c7fa9dc47563362a7df4694c3a1a578f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94b726097e21b6537e49434b051df9ed.bindPopup(popup_097277d5e7489042838794f98daa5bee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d09bd41615ce4500e67a58989782af4 = L.circleMarker(\\n\",\n       \"                [33.0706, 107.0154],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d90498153f6227c72298b0c57f1de7c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe335bd46e33de66049c28435e035c15 = $(`&lt;div id=&quot;html_fe335bd46e33de66049c28435e035c15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0154             latitude:33.0706             PM2_5:47.69553073             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d90498153f6227c72298b0c57f1de7c.setContent(html_fe335bd46e33de66049c28435e035c15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d09bd41615ce4500e67a58989782af4.bindPopup(popup_5d90498153f6227c72298b0c57f1de7c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a339678057bebb1f69df51b34fe048e = L.circleMarker(\\n\",\n       \"                [28.2403, 117.0281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04d75a1f9eac9c4488d4b463b9ad2c74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7a96daa748a00ef362e388ec1f1dedb = $(`&lt;div id=&quot;html_b7a96daa748a00ef362e388ec1f1dedb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0281             latitude:28.2403             PM2_5:34.53501401             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04d75a1f9eac9c4488d4b463b9ad2c74.setContent(html_b7a96daa748a00ef362e388ec1f1dedb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a339678057bebb1f69df51b34fe048e.bindPopup(popup_04d75a1f9eac9c4488d4b463b9ad2c74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34f994eaa4f720e155e42c9f0c12a103 = L.circleMarker(\\n\",\n       \"                [27.8036, 114.9314],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5723b10756235fa0d9a21a55fba8310f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4bbf4b19e9875e535bbd53dd11b7c616 = $(`&lt;div id=&quot;html_4bbf4b19e9875e535bbd53dd11b7c616&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9314             latitude:27.8036             PM2_5:42.52089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5723b10756235fa0d9a21a55fba8310f.setContent(html_4bbf4b19e9875e535bbd53dd11b7c616);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34f994eaa4f720e155e42c9f0c12a103.bindPopup(popup_5723b10756235fa0d9a21a55fba8310f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10612a0da1f63aeb60dab313a65375d5 = L.circleMarker(\\n\",\n       \"                [27.7314, 112.0194],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9095c4b57aada9b2fc7b5cb41950bc9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f0d14616e2829104fa5775bb55cd8ff = $(`&lt;div id=&quot;html_8f0d14616e2829104fa5775bb55cd8ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0194             latitude:27.7314             PM2_5:31.31779661             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9095c4b57aada9b2fc7b5cb41950bc9d.setContent(html_8f0d14616e2829104fa5775bb55cd8ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10612a0da1f63aeb60dab313a65375d5.bindPopup(popup_9095c4b57aada9b2fc7b5cb41950bc9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ae17311ed4fae028519113d52cde7d7 = L.circleMarker(\\n\",\n       \"                [39.0845, 117.1589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a932dda275fb935f3938ab82ed6ec57b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9099e660e91b52404844e7fd12dcb6eb = $(`&lt;div id=&quot;html_9099e660e91b52404844e7fd12dcb6eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1589             latitude:39.0845             PM2_5:50.49011299             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a932dda275fb935f3938ab82ed6ec57b.setContent(html_9099e660e91b52404844e7fd12dcb6eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ae17311ed4fae028519113d52cde7d7.bindPopup(popup_a932dda275fb935f3938ab82ed6ec57b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7aa47e7a2369f9d1c806b30c981b248 = L.circleMarker(\\n\",\n       \"                [31.354, 119.818],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_428421e5a8b1708a2ed170c9551b9fd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1c487790740c255cbe44f12de81f32e = $(`&lt;div id=&quot;html_c1c487790740c255cbe44f12de81f32e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.818             latitude:31.354             PM2_5:47.49582173             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_428421e5a8b1708a2ed170c9551b9fd5.setContent(html_c1c487790740c255cbe44f12de81f32e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7aa47e7a2369f9d1c806b30c981b248.bindPopup(popup_428421e5a8b1708a2ed170c9551b9fd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_210d376d6fb6fd57859ed10016e11668 = L.circleMarker(\\n\",\n       \"                [33.9506, 118.3214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ed3075ca5d14877ac875a57719a0747 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_691722f9785b67f4ca365b16bccb4d5c = $(`&lt;div id=&quot;html_691722f9785b67f4ca365b16bccb4d5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3214             latitude:33.9506             PM2_5:54.23463687             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ed3075ca5d14877ac875a57719a0747.setContent(html_691722f9785b67f4ca365b16bccb4d5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_210d376d6fb6fd57859ed10016e11668.bindPopup(popup_2ed3075ca5d14877ac875a57719a0747)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4ac1368e7c1c3b2bcd0ddd363528d37 = L.circleMarker(\\n\",\n       \"                [35.0003, 102.905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10fc6ef6352693234b9231131d303c5b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7baf6d16be21c51b8cacec06aaeceede = $(`&lt;div id=&quot;html_7baf6d16be21c51b8cacec06aaeceede&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.905             latitude:35.0003             PM2_5:27.56901408             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10fc6ef6352693234b9231131d303c5b.setContent(html_7baf6d16be21c51b8cacec06aaeceede);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4ac1368e7c1c3b2bcd0ddd363528d37.bindPopup(popup_10fc6ef6352693234b9231131d303c5b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6236c92f5d4935500c0af191eead9834 = L.circleMarker(\\n\",\n       \"                [31.2071, 121.577],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17ec1c49f9a5f30b83328349155cb3b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_490f1680b021fca6202b07ed055b80da = $(`&lt;div id=&quot;html_490f1680b021fca6202b07ed055b80da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.577             latitude:31.2071             PM2_5:40.78472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17ec1c49f9a5f30b83328349155cb3b4.setContent(html_490f1680b021fca6202b07ed055b80da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6236c92f5d4935500c0af191eead9834.bindPopup(popup_17ec1c49f9a5f30b83328349155cb3b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_713d53eba9ff37f757a94391c90ad83d = L.circleMarker(\\n\",\n       \"                [32.0197, 112.155],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b362c88eb898d990ac7e668c77b24f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40b51ae1c7f722b301d87384cfba3b5c = $(`&lt;div id=&quot;html_40b51ae1c7f722b301d87384cfba3b5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.155             latitude:32.0197             PM2_5:64.06741573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b362c88eb898d990ac7e668c77b24f1.setContent(html_40b51ae1c7f722b301d87384cfba3b5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_713d53eba9ff37f757a94391c90ad83d.bindPopup(popup_3b362c88eb898d990ac7e668c77b24f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d74a73c92d13fd91aa0948b792f6f949 = L.circleMarker(\\n\",\n       \"                [37.364, 120.394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_beca94eb80027b239cc4c91d897bef80 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_946c34994a112d2af5e6292076d8c5c7 = $(`&lt;div id=&quot;html_946c34994a112d2af5e6292076d8c5c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.394             latitude:37.364             PM2_5:30.69662921             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_beca94eb80027b239cc4c91d897bef80.setContent(html_946c34994a112d2af5e6292076d8c5c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d74a73c92d13fd91aa0948b792f6f949.bindPopup(popup_beca94eb80027b239cc4c91d897bef80)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85dc6e8c09bcb9c9fba8465f3adb0cd8 = L.circleMarker(\\n\",\n       \"                [31.5072, 104.7283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f793ff206cbf144494b08c80fd3e0ad9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af47856d165a4b72c4ec23a2935b5719 = $(`&lt;div id=&quot;html_af47856d165a4b72c4ec23a2935b5719&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7283             latitude:31.5072             PM2_5:50.53472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f793ff206cbf144494b08c80fd3e0ad9.setContent(html_af47856d165a4b72c4ec23a2935b5719);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85dc6e8c09bcb9c9fba8465f3adb0cd8.bindPopup(popup_f793ff206cbf144494b08c80fd3e0ad9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8fee44afe0d3c682f84bf195818c62d0 = L.circleMarker(\\n\",\n       \"                [36.8041, 117.8512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1536d9a09de534f567171a31184ec424 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13b04ddfe1207762a5c1773255f9c222 = $(`&lt;div id=&quot;html_13b04ddfe1207762a5c1773255f9c222&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8512             latitude:36.8041             PM2_5:56.51267606             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1536d9a09de534f567171a31184ec424.setContent(html_13b04ddfe1207762a5c1773255f9c222);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8fee44afe0d3c682f84bf195818c62d0.bindPopup(popup_1536d9a09de534f567171a31184ec424)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c47ff82551d6c2c2c5077f80e624cbd6 = L.circleMarker(\\n\",\n       \"                [36.913, 121.531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_408db01481d248a34db10be0802c21b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d479f2b6a34a0748e8d036f4c2af4978 = $(`&lt;div id=&quot;html_d479f2b6a34a0748e8d036f4c2af4978&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.531             latitude:36.913             PM2_5:20.8988604             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_408db01481d248a34db10be0802c21b0.setContent(html_d479f2b6a34a0748e8d036f4c2af4978);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c47ff82551d6c2c2c5077f80e624cbd6.bindPopup(popup_408db01481d248a34db10be0802c21b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82dcc0d8374b1b0e6bdc694d3a960d48 = L.circleMarker(\\n\",\n       \"                [34.5885, 119.176],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c845ed5613d9328762b3ac472066610 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_654df7b1d9536af7656658039e34efc1 = $(`&lt;div id=&quot;html_654df7b1d9536af7656658039e34efc1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.176             latitude:34.5885             PM2_5:42.12256267             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c845ed5613d9328762b3ac472066610.setContent(html_654df7b1d9536af7656658039e34efc1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82dcc0d8374b1b0e6bdc694d3a960d48.bindPopup(popup_7c845ed5613d9328762b3ac472066610)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9ec384fbe344258e92635a45289d354 = L.circleMarker(\\n\",\n       \"                [34.7745, 113.641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6bd28a51d0fb58d660d552877426bf1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e933b16fabdaae132bc6777f51a36e9a = $(`&lt;div id=&quot;html_e933b16fabdaae132bc6777f51a36e9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.641             latitude:34.7745             PM2_5:63.62078652             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6bd28a51d0fb58d660d552877426bf1.setContent(html_e933b16fabdaae132bc6777f51a36e9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9ec384fbe344258e92635a45289d354.bindPopup(popup_d6bd28a51d0fb58d660d552877426bf1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_450605db5a044b10e8da017ac0a9dc1c = L.circleMarker(\\n\",\n       \"                [24.77908333, 113.6734722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e2e8416db9a59abfff685540b88b928 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96eca8ef0c7b0a5d64dc3a1782165663 = $(`&lt;div id=&quot;html_96eca8ef0c7b0a5d64dc3a1782165663&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6734722             latitude:24.77908333             PM2_5:34.24229692             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e2e8416db9a59abfff685540b88b928.setContent(html_96eca8ef0c7b0a5d64dc3a1782165663);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_450605db5a044b10e8da017ac0a9dc1c.bindPopup(popup_4e2e8416db9a59abfff685540b88b928)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_746a0159fbc7d51bfd4bdad9665b0e36 = L.circleMarker(\\n\",\n       \"                [34.9817, 118.2764],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c780fcf4f473c8661740bc544016c9a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d353e080760dfc25ddeb6a83c99712e = $(`&lt;div id=&quot;html_1d353e080760dfc25ddeb6a83c99712e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2764             latitude:34.9817             PM2_5:46.4432133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c780fcf4f473c8661740bc544016c9a1.setContent(html_1d353e080760dfc25ddeb6a83c99712e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_746a0159fbc7d51bfd4bdad9665b0e36.bindPopup(popup_c780fcf4f473c8661740bc544016c9a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfa5cbb3fc1bc28e12b8a7f81b0925cd = L.circleMarker(\\n\",\n       \"                [37.8792, 113.4922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e324e14d9a89f3527b7e7681ea5635e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c69c3f41d5c189d7ad5beada8681ac7d = $(`&lt;div id=&quot;html_c69c3f41d5c189d7ad5beada8681ac7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4922             latitude:37.8792             PM2_5:50.03267045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e324e14d9a89f3527b7e7681ea5635e.setContent(html_c69c3f41d5c189d7ad5beada8681ac7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfa5cbb3fc1bc28e12b8a7f81b0925cd.bindPopup(popup_8e324e14d9a89f3527b7e7681ea5635e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e85c071bd6ceb27f7937266d1272191 = L.circleMarker(\\n\",\n       \"                [22.5497, 113.3881],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63a5fa289e720ce38406d66ca243171c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15806018a1cb40492ff92818be594945 = $(`&lt;div id=&quot;html_15806018a1cb40492ff92818be594945&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3881             latitude:22.5497             PM2_5:33.25770308             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63a5fa289e720ce38406d66ca243171c.setContent(html_15806018a1cb40492ff92818be594945);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e85c071bd6ceb27f7937266d1272191.bindPopup(popup_63a5fa289e720ce38406d66ca243171c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65b27a8f09477100a5622663115e3954 = L.circleMarker(\\n\",\n       \"                [22.7629, 113.257],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3de79e7f610748f12bcab439819f7e6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5bd9304aa12070428d37b10dd35a2bcf = $(`&lt;div id=&quot;html_5bd9304aa12070428d37b10dd35a2bcf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.257             latitude:22.7629             PM2_5:34.17746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3de79e7f610748f12bcab439819f7e6c.setContent(html_5bd9304aa12070428d37b10dd35a2bcf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65b27a8f09477100a5622663115e3954.bindPopup(popup_3de79e7f610748f12bcab439819f7e6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fad5d117092d2f7f788d6c2ca53842f0 = L.circleMarker(\\n\",\n       \"                [40.8367, 114.8985],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c9726dedcf945445ca9417d4c80b9bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90c000027f12fa5e08b8ee5b02d796aa = $(`&lt;div id=&quot;html_90c000027f12fa5e08b8ee5b02d796aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8985             latitude:40.8367             PM2_5:26.28910615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c9726dedcf945445ca9417d4c80b9bc.setContent(html_90c000027f12fa5e08b8ee5b02d796aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fad5d117092d2f7f788d6c2ca53842f0.bindPopup(popup_9c9726dedcf945445ca9417d4c80b9bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1c04457cf933ba56fafff8c57399060 = L.circleMarker(\\n\",\n       \"                [23.5353, 116.3697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a801e55dd82354e353310393f40e2c38 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b35e8008cefb573b57850f1d7e574b51 = $(`&lt;div id=&quot;html_b35e8008cefb573b57850f1d7e574b51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3697             latitude:23.5353             PM2_5:30.43258427             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a801e55dd82354e353310393f40e2c38.setContent(html_b35e8008cefb573b57850f1d7e574b51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1c04457cf933ba56fafff8c57399060.bindPopup(popup_a801e55dd82354e353310393f40e2c38)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_388a364bb47d733ee28c2d49d950300e = L.circleMarker(\\n\",\n       \"                [35.0308, 110.9678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6c17d127792d6c4ab16c8b958c0c04c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76150e3a4e30a691a7e685a5366764c1 = $(`&lt;div id=&quot;html_76150e3a4e30a691a7e685a5366764c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9678             latitude:35.0308             PM2_5:72.14185393             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6c17d127792d6c4ab16c8b958c0c04c.setContent(html_76150e3a4e30a691a7e685a5366764c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_388a364bb47d733ee28c2d49d950300e.bindPopup(popup_d6c17d127792d6c4ab16c8b958c0c04c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af13288d4bf1fb183635b27622aab1d3 = L.circleMarker(\\n\",\n       \"                [25.0492, 101.538],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19c1a2731da64ac806bc6d0a819e7515 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b46c6b26e4ff726d524a79066bc55e3 = $(`&lt;div id=&quot;html_6b46c6b26e4ff726d524a79066bc55e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.538             latitude:25.0492             PM2_5:21.25348189             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19c1a2731da64ac806bc6d0a819e7515.setContent(html_6b46c6b26e4ff726d524a79066bc55e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af13288d4bf1fb183635b27622aab1d3.bindPopup(popup_19c1a2731da64ac806bc6d0a819e7515)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ed688ba712e9cebc2813c558e848d48 = L.circleMarker(\\n\",\n       \"                [27.9747, 120.76],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fba885da80d4ffd8a48fbdf65f080e94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_64ad25643d4831679d6e6a3cd5adbf29 = $(`&lt;div id=&quot;html_64ad25643d4831679d6e6a3cd5adbf29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.76             latitude:27.9747             PM2_5:30.625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fba885da80d4ffd8a48fbdf65f080e94.setContent(html_64ad25643d4831679d6e6a3cd5adbf29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ed688ba712e9cebc2813c558e848d48.bindPopup(popup_fba885da80d4ffd8a48fbdf65f080e94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae77da8ad250e4322103be7a8637ee58 = L.circleMarker(\\n\",\n       \"                [24.6928, 108.054],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e9938fe77a201a3ab048bfa078a8e1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2444abe8eab947513908fc41119475b3 = $(`&lt;div id=&quot;html_2444abe8eab947513908fc41119475b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.054             latitude:24.6928             PM2_5:30.28151261             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e9938fe77a201a3ab048bfa078a8e1d.setContent(html_2444abe8eab947513908fc41119475b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae77da8ad250e4322103be7a8637ee58.bindPopup(popup_1e9938fe77a201a3ab048bfa078a8e1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d120e4a729704ca6a5ccf677839e45b8 = L.circleMarker(\\n\",\n       \"                [39.0153, 106.3717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1401e6d5d5776243a51aac279145e315 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0940fef91b0af85196f06d31bc974433 = $(`&lt;div id=&quot;html_0940fef91b0af85196f06d31bc974433&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3717             latitude:39.0153             PM2_5:49.59103641             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1401e6d5d5776243a51aac279145e315.setContent(html_0940fef91b0af85196f06d31bc974433);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d120e4a729704ca6a5ccf677839e45b8.bindPopup(popup_1401e6d5d5776243a51aac279145e315)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4834502a49fbc845a3221843f1a525df = L.circleMarker(\\n\",\n       \"                [43.941, 81.3364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_425831f7f778f29bca7a833cf20c14d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb1c446fa630e6c4992043c2097ee1b9 = $(`&lt;div id=&quot;html_cb1c446fa630e6c4992043c2097ee1b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.3364             latitude:43.941             PM2_5:54.96022727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_425831f7f778f29bca7a833cf20c14d3.setContent(html_cb1c446fa630e6c4992043c2097ee1b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4834502a49fbc845a3221843f1a525df.bindPopup(popup_425831f7f778f29bca7a833cf20c14d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bbe1767dc40f151a41d18e83086d1718 = L.circleMarker(\\n\",\n       \"                [39.746, 98.509],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e410d2c5d5d9520f12c7e9956ad0569 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77e0a87f4bdbd0e6fd6d32642ba2f32b = $(`&lt;div id=&quot;html_77e0a87f4bdbd0e6fd6d32642ba2f32b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.509             latitude:39.746             PM2_5:32.68854749             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e410d2c5d5d9520f12c7e9956ad0569.setContent(html_77e0a87f4bdbd0e6fd6d32642ba2f32b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bbe1767dc40f151a41d18e83086d1718.bindPopup(popup_8e410d2c5d5d9520f12c7e9956ad0569)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0cb00977ae666d6fbd0e78ab338b2a64 = L.circleMarker(\\n\",\n       \"                [25.8417, 98.8546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_efd30cb7c39e4d5d7cd215d6ef71ce0c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02140dcf3218d76c8fbd7a36c67ca552 = $(`&lt;div id=&quot;html_02140dcf3218d76c8fbd7a36c67ca552&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.8546             latitude:25.8417             PM2_5:15.54347826             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_efd30cb7c39e4d5d7cd215d6ef71ce0c.setContent(html_02140dcf3218d76c8fbd7a36c67ca552);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0cb00977ae666d6fbd0e78ab338b2a64.bindPopup(popup_efd30cb7c39e4d5d7cd215d6ef71ce0c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8fd2b770b8dc0b37c41316d6d635f4b = L.circleMarker(\\n\",\n       \"                [29.6376, 94.3681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1486e6d70e22af7738c05a411971b727 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e97093303cd5cf05aa1f82bb099c0d0 = $(`&lt;div id=&quot;html_8e97093303cd5cf05aa1f82bb099c0d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:94.3681             latitude:29.6376             PM2_5:9.39017341             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1486e6d70e22af7738c05a411971b727.setContent(html_8e97093303cd5cf05aa1f82bb099c0d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8fd2b770b8dc0b37c41316d6d635f4b.bindPopup(popup_1486e6d70e22af7738c05a411971b727)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2857106d3f63fe1736827632177719a = L.circleMarker(\\n\",\n       \"                [29.4402, 112.9943],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df8ef152f5712575193ea43409166032 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ad5f8ef22c17fe9d536c5507080bb6c = $(`&lt;div id=&quot;html_1ad5f8ef22c17fe9d536c5507080bb6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9943             latitude:29.4402             PM2_5:47.75             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df8ef152f5712575193ea43409166032.setContent(html_1ad5f8ef22c17fe9d536c5507080bb6c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2857106d3f63fe1736827632177719a.bindPopup(popup_df8ef152f5712575193ea43409166032)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_918a85510b51a1746257c546b85b45b2 = L.circleMarker(\\n\",\n       \"                [34.2629, 108.993],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de4d33f1e9d80162092f3c00a3172c13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea8a35fa3bcffaaa68e953512468f7f4 = $(`&lt;div id=&quot;html_ea8a35fa3bcffaaa68e953512468f7f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.993             latitude:34.2629             PM2_5:62.91193182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de4d33f1e9d80162092f3c00a3172c13.setContent(html_ea8a35fa3bcffaaa68e953512468f7f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_918a85510b51a1746257c546b85b45b2.bindPopup(popup_de4d33f1e9d80162092f3c00a3172c13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9bef2dea2e33f7a2710bac1af94307f9 = L.circleMarker(\\n\",\n       \"                [41.5931, 120.4439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_604c92493ac10248a3948dd9dfa4b79a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e1e62aec436377fa9a39c7454d40026 = $(`&lt;div id=&quot;html_7e1e62aec436377fa9a39c7454d40026&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4439             latitude:41.5931             PM2_5:27.10888252             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_604c92493ac10248a3948dd9dfa4b79a.setContent(html_7e1e62aec436377fa9a39c7454d40026);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9bef2dea2e33f7a2710bac1af94307f9.bindPopup(popup_604c92493ac10248a3948dd9dfa4b79a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ede58329ed7a3cb4fe9a3c55ba178512 = L.circleMarker(\\n\",\n       \"                [34.794, 111.158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b57394403d5f58e169eca124695d2881 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_282b4de660f595dc302d590ac2cd46a2 = $(`&lt;div id=&quot;html_282b4de660f595dc302d590ac2cd46a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.158             latitude:34.794             PM2_5:58.11898017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b57394403d5f58e169eca124695d2881.setContent(html_282b4de660f595dc302d590ac2cd46a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ede58329ed7a3cb4fe9a3c55ba178512.bindPopup(popup_b57394403d5f58e169eca124695d2881)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a0c9bcaa0ee7f8880d15d5e4389ca32 = L.circleMarker(\\n\",\n       \"                [46.5888, 131.1572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f468e9e26030f4e4f9464714bb10ecf2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_215a8fc3dfed76396147d2cefe5b3da4 = $(`&lt;div id=&quot;html_215a8fc3dfed76396147d2cefe5b3da4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1572             latitude:46.5888             PM2_5:31.57807808             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f468e9e26030f4e4f9464714bb10ecf2.setContent(html_215a8fc3dfed76396147d2cefe5b3da4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a0c9bcaa0ee7f8880d15d5e4389ca32.bindPopup(popup_f468e9e26030f4e4f9464714bb10ecf2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26ff27e52db02300f7af9e5972e40f54 = L.circleMarker(\\n\",\n       \"                [31.5475, 120.354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98f6a764cc19567a7c3af349ea8c8712 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa07323ac1abaa0484bd04be19302b18 = $(`&lt;div id=&quot;html_aa07323ac1abaa0484bd04be19302b18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.354             latitude:31.5475             PM2_5:42.00139665             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98f6a764cc19567a7c3af349ea8c8712.setContent(html_aa07323ac1abaa0484bd04be19302b18);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26ff27e52db02300f7af9e5972e40f54.bindPopup(popup_98f6a764cc19567a7c3af349ea8c8712)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6736d428dfaeceed1bb9152fc1953efd = L.circleMarker(\\n\",\n       \"                [39.8673, 116.366],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_48f11adbb8cf64fd6df38d43024ceadc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3cebe6c6201f2d4e3b4127f71d933fb = $(`&lt;div id=&quot;html_f3cebe6c6201f2d4e3b4127f71d933fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.366             latitude:39.8673             PM2_5:54.73389356             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_48f11adbb8cf64fd6df38d43024ceadc.setContent(html_f3cebe6c6201f2d4e3b4127f71d933fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6736d428dfaeceed1bb9152fc1953efd.bindPopup(popup_48f11adbb8cf64fd6df38d43024ceadc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1903cfd41017f300ddae172c6bfe6353 = L.circleMarker(\\n\",\n       \"                [29.9834, 103.0109],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7329886d29ea2b072be147623e689693 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b42643722e346a8e4d7bbcb0c137e85 = $(`&lt;div id=&quot;html_4b42643722e346a8e4d7bbcb0c137e85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0109             latitude:29.9834             PM2_5:42.66619318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7329886d29ea2b072be147623e689693.setContent(html_4b42643722e346a8e4d7bbcb0c137e85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1903cfd41017f300ddae172c6bfe6353.bindPopup(popup_7329886d29ea2b072be147623e689693)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_531161643ffbfafade24ba85a1f26ea8 = L.circleMarker(\\n\",\n       \"                [29.6453, 106.562],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aae979b6d95788771effeb919355b6ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3878f1df76640a5a157e2f8789fc311 = $(`&lt;div id=&quot;html_c3878f1df76640a5a157e2f8789fc311&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.562             latitude:29.6453             PM2_5:35.45125348             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aae979b6d95788771effeb919355b6ed.setContent(html_c3878f1df76640a5a157e2f8789fc311);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_531161643ffbfafade24ba85a1f26ea8.bindPopup(popup_aae979b6d95788771effeb919355b6ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5c2c0bf8980828799446efea634e340 = L.circleMarker(\\n\",\n       \"                [39.16969, 117.2099],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_901da299dfb77fcd7fc5bc2ff012c0c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd1b740b27e15110e91fb6755724f3dc = $(`&lt;div id=&quot;html_bd1b740b27e15110e91fb6755724f3dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2099             latitude:39.16969             PM2_5:47.05177515             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_901da299dfb77fcd7fc5bc2ff012c0c3.setContent(html_bd1b740b27e15110e91fb6755724f3dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5c2c0bf8980828799446efea634e340.bindPopup(popup_901da299dfb77fcd7fc5bc2ff012c0c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73603a9cf0e4e78c7c303ec7b755792a = L.circleMarker(\\n\",\n       \"                [41.3047, 123.7308],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4479efe1c80dac4785284a58c4cc5ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eafa3149c950fe3d4e0ee1f736ce9a3e = $(`&lt;div id=&quot;html_eafa3149c950fe3d4e0ee1f736ce9a3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7308             latitude:41.3047             PM2_5:28.61699164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4479efe1c80dac4785284a58c4cc5ed.setContent(html_eafa3149c950fe3d4e0ee1f736ce9a3e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73603a9cf0e4e78c7c303ec7b755792a.bindPopup(popup_e4479efe1c80dac4785284a58c4cc5ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_956fb86f8fad08b1b09e033bd91e54a2 = L.circleMarker(\\n\",\n       \"                [28.4231, 119.879],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb8d9603fdc1031768eb0ab135de5b54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc2da3ec24440d338cae581e9c2c906b = $(`&lt;div id=&quot;html_cc2da3ec24440d338cae581e9c2c906b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.879             latitude:28.4231             PM2_5:30.35369318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb8d9603fdc1031768eb0ab135de5b54.setContent(html_cc2da3ec24440d338cae581e9c2c906b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_956fb86f8fad08b1b09e033bd91e54a2.bindPopup(popup_cb8d9603fdc1031768eb0ab135de5b54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0fd39a792ebf52707b573c1ed274e3e = L.circleMarker(\\n\",\n       \"                [38.91194444, 121.6330556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fda4c226ecd03f73adc75f58b13f7e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_393e20b26c82c51471619d2f09f126d4 = $(`&lt;div id=&quot;html_393e20b26c82c51471619d2f09f126d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6330556             latitude:38.91194444             PM2_5:30.51815642             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fda4c226ecd03f73adc75f58b13f7e7.setContent(html_393e20b26c82c51471619d2f09f126d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0fd39a792ebf52707b573c1ed274e3e.bindPopup(popup_6fda4c226ecd03f73adc75f58b13f7e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6eebb8d3902a6547023b28dbb9eca5f0 = L.circleMarker(\\n\",\n       \"                [30.3944, 114.8878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd289f778170e7bc1404fe0c6024dc98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98de47d03668c3e048828fc369e76b8f = $(`&lt;div id=&quot;html_98de47d03668c3e048828fc369e76b8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8878             latitude:30.3944             PM2_5:50.14027778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd289f778170e7bc1404fe0c6024dc98.setContent(html_98de47d03668c3e048828fc369e76b8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6eebb8d3902a6547023b28dbb9eca5f0.bindPopup(popup_cd289f778170e7bc1404fe0c6024dc98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_607a6141a35cca39e57c80b8180dde39 = L.circleMarker(\\n\",\n       \"                [40.7378, 107.3715],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b67fa7e7f57ebfb56c2ace0c59359609 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a36bf7e9734ae10a30d9900a2a7acaba = $(`&lt;div id=&quot;html_a36bf7e9734ae10a30d9900a2a7acaba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3715             latitude:40.7378             PM2_5:27.96590909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b67fa7e7f57ebfb56c2ace0c59359609.setContent(html_a36bf7e9734ae10a30d9900a2a7acaba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_607a6141a35cca39e57c80b8180dde39.bindPopup(popup_b67fa7e7f57ebfb56c2ace0c59359609)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e1ef919344e50b3be14719654ab5090 = L.circleMarker(\\n\",\n       \"                [22.9477, 113.352],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d200c1c1424dbf6bc68b623570b835a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15d6d84d485b87576a57b045edc11353 = $(`&lt;div id=&quot;html_15d6d84d485b87576a57b045edc11353&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.352             latitude:22.9477             PM2_5:36.97331461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d200c1c1424dbf6bc68b623570b835a.setContent(html_15d6d84d485b87576a57b045edc11353);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e1ef919344e50b3be14719654ab5090.bindPopup(popup_8d200c1c1424dbf6bc68b623570b835a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aea81bc5acbea0252a3c0e5e27ddbeeb = L.circleMarker(\\n\",\n       \"                [38.4841, 106.2739],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d9e1924b467922217d7108416811af0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b635631d3bfc1792d61dcfc06aaf0968 = $(`&lt;div id=&quot;html_b635631d3bfc1792d61dcfc06aaf0968&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2739             latitude:38.4841             PM2_5:46.99579832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d9e1924b467922217d7108416811af0.setContent(html_b635631d3bfc1792d61dcfc06aaf0968);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aea81bc5acbea0252a3c0e5e27ddbeeb.bindPopup(popup_3d9e1924b467922217d7108416811af0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8d17ad3784253a02ac46228737d9eeb = L.circleMarker(\\n\",\n       \"                [29.355, 113.2117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_073a57955b6b7cfce9a224522e2e21ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e56a197fac8631b2fbb8633f93fea76 = $(`&lt;div id=&quot;html_8e56a197fac8631b2fbb8633f93fea76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2117             latitude:29.355             PM2_5:43.30473373             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_073a57955b6b7cfce9a224522e2e21ea.setContent(html_8e56a197fac8631b2fbb8633f93fea76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8d17ad3784253a02ac46228737d9eeb.bindPopup(popup_073a57955b6b7cfce9a224522e2e21ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc1c11dc27b95f838c0311b52048d740 = L.circleMarker(\\n\",\n       \"                [28.8833, 105.4322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46e236197d792664ca4c5a06aa5af735 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e06e7699305a7fdd2cc8a78b0727d99 = $(`&lt;div id=&quot;html_8e06e7699305a7fdd2cc8a78b0727d99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4322             latitude:28.8833             PM2_5:37.04353933             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46e236197d792664ca4c5a06aa5af735.setContent(html_8e06e7699305a7fdd2cc8a78b0727d99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc1c11dc27b95f838c0311b52048d740.bindPopup(popup_46e236197d792664ca4c5a06aa5af735)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98249c6e975ccecd1a0772bc96b9da99 = L.circleMarker(\\n\",\n       \"                [22.4853, 113.4411],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9962a2536c4e5fe2d67a919200e13880 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_289eb0c843c1b68a218b7ee8ae12531b = $(`&lt;div id=&quot;html_289eb0c843c1b68a218b7ee8ae12531b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4411             latitude:22.4853             PM2_5:37.20505618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9962a2536c4e5fe2d67a919200e13880.setContent(html_289eb0c843c1b68a218b7ee8ae12531b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98249c6e975ccecd1a0772bc96b9da99.bindPopup(popup_9962a2536c4e5fe2d67a919200e13880)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b01e4fb249a94d8f64b13dac8c8cef01 = L.circleMarker(\\n\",\n       \"                [41.1042, 121.835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9e7cd3ecfe23da061dbfea3b039f692 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02639ea7bf0243d159ba751d3a4d1289 = $(`&lt;div id=&quot;html_02639ea7bf0243d159ba751d3a4d1289&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.835             latitude:41.1042             PM2_5:29.90948276             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9e7cd3ecfe23da061dbfea3b039f692.setContent(html_02639ea7bf0243d159ba751d3a4d1289);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b01e4fb249a94d8f64b13dac8c8cef01.bindPopup(popup_d9e7cd3ecfe23da061dbfea3b039f692)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c3c86f5959c19658374393af81ea848 = L.circleMarker(\\n\",\n       \"                [35.7289, 107.6831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4598f1628d6d839584aeda4d10b68174 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ced3b3f27fbbf20614c11eb97be11fa = $(`&lt;div id=&quot;html_5ced3b3f27fbbf20614c11eb97be11fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6831             latitude:35.7289             PM2_5:28.02793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4598f1628d6d839584aeda4d10b68174.setContent(html_5ced3b3f27fbbf20614c11eb97be11fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c3c86f5959c19658374393af81ea848.bindPopup(popup_4598f1628d6d839584aeda4d10b68174)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_328af592f0b70c5fe8d212ef6cefce51 = L.circleMarker(\\n\",\n       \"                [31.92, 120.302],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60b59f33f6a8e2c6d846ac2632001681 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d87c1f5ab39b2c4bb8d3a5d1157dda9d = $(`&lt;div id=&quot;html_d87c1f5ab39b2c4bb8d3a5d1157dda9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.302             latitude:31.92             PM2_5:56.37743733             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60b59f33f6a8e2c6d846ac2632001681.setContent(html_d87c1f5ab39b2c4bb8d3a5d1157dda9d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_328af592f0b70c5fe8d212ef6cefce51.bindPopup(popup_60b59f33f6a8e2c6d846ac2632001681)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af1608be278554edb2cab194f71fe810 = L.circleMarker(\\n\",\n       \"                [45.7478, 126.593],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f18f1b1df0f993aeb8b1f9c312c3ab6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e488474037e56204e0eb99346963f97d = $(`&lt;div id=&quot;html_e488474037e56204e0eb99346963f97d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.593             latitude:45.7478             PM2_5:37.80972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f18f1b1df0f993aeb8b1f9c312c3ab6.setContent(html_e488474037e56204e0eb99346963f97d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af1608be278554edb2cab194f71fe810.bindPopup(popup_1f18f1b1df0f993aeb8b1f9c312c3ab6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8be928fba40fedf738f16aeae20d7dab = L.circleMarker(\\n\",\n       \"                [29.7048, 115.9581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d05db7ad01118bc4c42400844b95fd1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4fba6a78f02015c10713e91f061e2ed5 = $(`&lt;div id=&quot;html_4fba6a78f02015c10713e91f061e2ed5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9581             latitude:29.7048             PM2_5:43.60306407             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d05db7ad01118bc4c42400844b95fd1.setContent(html_4fba6a78f02015c10713e91f061e2ed5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8be928fba40fedf738f16aeae20d7dab.bindPopup(popup_5d05db7ad01118bc4c42400844b95fd1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25d2a7e6d7bb0e73913f73b0321a6123 = L.circleMarker(\\n\",\n       \"                [38.4186, 112.7356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a27ff2a94b9b37225221970c0ab4dd90 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf01ad719f0efa8edb47262acfcc5a1b = $(`&lt;div id=&quot;html_cf01ad719f0efa8edb47262acfcc5a1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7356             latitude:38.4186             PM2_5:59.60806916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a27ff2a94b9b37225221970c0ab4dd90.setContent(html_cf01ad719f0efa8edb47262acfcc5a1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25d2a7e6d7bb0e73913f73b0321a6123.bindPopup(popup_a27ff2a94b9b37225221970c0ab4dd90)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6fc9dbe4ee0e3ed6d8e100c84ec7924 = L.circleMarker(\\n\",\n       \"                [39.0631, 121.9769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94d1a881a0de0fe74a0c6daa98b1dcb8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca76f8b3a0470f0c51956bc1f12a07b2 = $(`&lt;div id=&quot;html_ca76f8b3a0470f0c51956bc1f12a07b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.9769             latitude:39.0631             PM2_5:25.05477528             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94d1a881a0de0fe74a0c6daa98b1dcb8.setContent(html_ca76f8b3a0470f0c51956bc1f12a07b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6fc9dbe4ee0e3ed6d8e100c84ec7924.bindPopup(popup_94d1a881a0de0fe74a0c6daa98b1dcb8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11abea3f8d84e4714c825ea218d2ff9a = L.circleMarker(\\n\",\n       \"                [32.395, 111.0419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ecfbe70639da78d0f834e786fcf1fe45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec2308222716cb5ef9a23bbc6469dbf0 = $(`&lt;div id=&quot;html_ec2308222716cb5ef9a23bbc6469dbf0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0419             latitude:32.395             PM2_5:29.91477273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ecfbe70639da78d0f834e786fcf1fe45.setContent(html_ec2308222716cb5ef9a23bbc6469dbf0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11abea3f8d84e4714c825ea218d2ff9a.bindPopup(popup_ecfbe70639da78d0f834e786fcf1fe45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5457fa084ffc8b2b01d148d6605cd96f = L.circleMarker(\\n\",\n       \"                [31.5848, 120.354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_690d0633ef1b2bb6ca30e067fd69c117 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2225ce99461b67def15154b993cd085 = $(`&lt;div id=&quot;html_d2225ce99461b67def15154b993cd085&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.354             latitude:31.5848             PM2_5:47.23011364             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_690d0633ef1b2bb6ca30e067fd69c117.setContent(html_d2225ce99461b67def15154b993cd085);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5457fa084ffc8b2b01d148d6605cd96f.bindPopup(popup_690d0633ef1b2bb6ca30e067fd69c117)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c0115d6ec7c3f75a2480adad289ac6c = L.circleMarker(\\n\",\n       \"                [26.6611, 119.5392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b21ed64430d277fc48323a4d8e73572 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4102ebfd92478aa613b4cb56e23ef02 = $(`&lt;div id=&quot;html_e4102ebfd92478aa613b4cb56e23ef02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5392             latitude:26.6611             PM2_5:26.51523546             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b21ed64430d277fc48323a4d8e73572.setContent(html_e4102ebfd92478aa613b4cb56e23ef02);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c0115d6ec7c3f75a2480adad289ac6c.bindPopup(popup_5b21ed64430d277fc48323a4d8e73572)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d3fddef6d0cdfd9960c8bcb7dcfb9f4 = L.circleMarker(\\n\",\n       \"                [37.4294, 122.1206],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec026efda5482b3420130db75812547c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9caf9d7303f9c4431a3ef88440ebcfb = $(`&lt;div id=&quot;html_e9caf9d7303f9c4431a3ef88440ebcfb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.1206             latitude:37.4294             PM2_5:27.61864407             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec026efda5482b3420130db75812547c.setContent(html_e9caf9d7303f9c4431a3ef88440ebcfb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d3fddef6d0cdfd9960c8bcb7dcfb9f4.bindPopup(popup_ec026efda5482b3420130db75812547c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cebfeb7f0a06703f862a371e346f0ed3 = L.circleMarker(\\n\",\n       \"                [41.7381, 125.9486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_89595228c39d8c6379e49a6abe462b92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2bf33965179b5ef0d3fac0dbf19fd9c = $(`&lt;div id=&quot;html_a2bf33965179b5ef0d3fac0dbf19fd9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.9486             latitude:41.7381             PM2_5:30.97625698             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_89595228c39d8c6379e49a6abe462b92.setContent(html_a2bf33965179b5ef0d3fac0dbf19fd9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cebfeb7f0a06703f862a371e346f0ed3.bindPopup(popup_89595228c39d8c6379e49a6abe462b92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6cb29e1b9238202be40f511aed12b828 = L.circleMarker(\\n\",\n       \"                [35.5294, 106.7039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e362d91b986beaf9c2241ae6e016ddb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af2426fd8bc718a2f710568e871fc45e = $(`&lt;div id=&quot;html_af2426fd8bc718a2f710568e871fc45e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7039             latitude:35.5294             PM2_5:29.01532033             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e362d91b986beaf9c2241ae6e016ddb2.setContent(html_af2426fd8bc718a2f710568e871fc45e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6cb29e1b9238202be40f511aed12b828.bindPopup(popup_e362d91b986beaf9c2241ae6e016ddb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_612bfffa31a0a3d263a64b9d6db85c53 = L.circleMarker(\\n\",\n       \"                [27.8408, 102.2714],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb39fe60293222e42bf7495e0469fe76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3265f955366f064f6e93e84e8fb5d7cc = $(`&lt;div id=&quot;html_3265f955366f064f6e93e84e8fb5d7cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2714             latitude:27.8408             PM2_5:20.54329609             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb39fe60293222e42bf7495e0469fe76.setContent(html_3265f955366f064f6e93e84e8fb5d7cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_612bfffa31a0a3d263a64b9d6db85c53.bindPopup(popup_bb39fe60293222e42bf7495e0469fe76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f68fe86ce09b42f13bb82f392fd1a8f5 = L.circleMarker(\\n\",\n       \"                [36.6867, 101.524],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d7a1d9543e14a0eb809bfd3e9529cf8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ac1e1061f977134f64b9d6f7e45fe14 = $(`&lt;div id=&quot;html_7ac1e1061f977134f64b9d6f7e45fe14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.524             latitude:36.6867             PM2_5:52.19736842             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d7a1d9543e14a0eb809bfd3e9529cf8.setContent(html_7ac1e1061f977134f64b9d6f7e45fe14);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f68fe86ce09b42f13bb82f392fd1a8f5.bindPopup(popup_8d7a1d9543e14a0eb809bfd3e9529cf8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94d5d93b59b5ca72febb4adf301c16ae = L.circleMarker(\\n\",\n       \"                [32.8985, 117.3065],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed078d0213ca9c342d57fde149b840d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9ebd43ad9c41eaf51bd8600dc408640 = $(`&lt;div id=&quot;html_a9ebd43ad9c41eaf51bd8600dc408640&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3065             latitude:32.8985             PM2_5:46.36619718             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed078d0213ca9c342d57fde149b840d3.setContent(html_a9ebd43ad9c41eaf51bd8600dc408640);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94d5d93b59b5ca72febb4adf301c16ae.bindPopup(popup_ed078d0213ca9c342d57fde149b840d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a4bb339ec91c5f3f81548ce5491f861 = L.circleMarker(\\n\",\n       \"                [31.3708, 120.641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49c45984edc7f0331ac05192b9aa3fd6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c385312ee300fcf1d42c87d7b1ecf587 = $(`&lt;div id=&quot;html_c385312ee300fcf1d42c87d7b1ecf587&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.641             latitude:31.3708             PM2_5:39.74515235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49c45984edc7f0331ac05192b9aa3fd6.setContent(html_c385312ee300fcf1d42c87d7b1ecf587);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a4bb339ec91c5f3f81548ce5491f861.bindPopup(popup_49c45984edc7f0331ac05192b9aa3fd6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5d31f5b8ba80d7c84d2526cbf2903dc = L.circleMarker(\\n\",\n       \"                [34.7187, 113.727],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aad0d74cb08a72d90c22d25057313c8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd240d36fd23228495adf0181035cdd4 = $(`&lt;div id=&quot;html_fd240d36fd23228495adf0181035cdd4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.727             latitude:34.7187             PM2_5:65.41432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aad0d74cb08a72d90c22d25057313c8e.setContent(html_fd240d36fd23228495adf0181035cdd4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5d31f5b8ba80d7c84d2526cbf2903dc.bindPopup(popup_aad0d74cb08a72d90c22d25057313c8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_249d2f791e774f1e478a56199b9f1118 = L.circleMarker(\\n\",\n       \"                [32.0903, 112.2106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_acaa7699b4faef35db22bae0346cef6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68dab057f89e76d3dbf488579471833c = $(`&lt;div id=&quot;html_68dab057f89e76d3dbf488579471833c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2106             latitude:32.0903             PM2_5:71.5252809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_acaa7699b4faef35db22bae0346cef6c.setContent(html_68dab057f89e76d3dbf488579471833c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_249d2f791e774f1e478a56199b9f1118.bindPopup(popup_acaa7699b4faef35db22bae0346cef6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5d7a34fb08d36227ac2db74c2598f32 = L.circleMarker(\\n\",\n       \"                [34.7997, 111.1489],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f4527905496aae0aaa44ced2bf23197d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a75d357e00f6b61187011706bfc0434b = $(`&lt;div id=&quot;html_a75d357e00f6b61187011706bfc0434b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1489             latitude:34.7997             PM2_5:54.08100559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f4527905496aae0aaa44ced2bf23197d.setContent(html_a75d357e00f6b61187011706bfc0434b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5d7a34fb08d36227ac2db74c2598f32.bindPopup(popup_f4527905496aae0aaa44ced2bf23197d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ce4c7e67e90a6dbe55df902c2669e1a = L.circleMarker(\\n\",\n       \"                [33.6481, 116.9765],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a81a06a4805079507080bfb11c739a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc7fe9a826cbb44d11d4652e2072f968 = $(`&lt;div id=&quot;html_cc7fe9a826cbb44d11d4652e2072f968&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9765             latitude:33.6481             PM2_5:55.37114846             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a81a06a4805079507080bfb11c739a0.setContent(html_cc7fe9a826cbb44d11d4652e2072f968);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ce4c7e67e90a6dbe55df902c2669e1a.bindPopup(popup_1a81a06a4805079507080bfb11c739a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a5e126497e1e8a2adf391b41a5636b4 = L.circleMarker(\\n\",\n       \"                [27.2317, 111.4733],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1c8bd0ebc4e62414d7e5df43efff8dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e14fbe7e2fb42d8253215e9fbc36da50 = $(`&lt;div id=&quot;html_e14fbe7e2fb42d8253215e9fbc36da50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4733             latitude:27.2317             PM2_5:51.66572238             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1c8bd0ebc4e62414d7e5df43efff8dd.setContent(html_e14fbe7e2fb42d8253215e9fbc36da50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a5e126497e1e8a2adf391b41a5636b4.bindPopup(popup_d1c8bd0ebc4e62414d7e5df43efff8dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0b7c546e060d0029cff9d0130fdefc8 = L.circleMarker(\\n\",\n       \"                [38.4519, 112.7383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01a5c418ae2d708e8edf689163698d09 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cbc705d6389c51252a180cdc9684396 = $(`&lt;div id=&quot;html_8cbc705d6389c51252a180cdc9684396&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7383             latitude:38.4519             PM2_5:53.09014085             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01a5c418ae2d708e8edf689163698d09.setContent(html_8cbc705d6389c51252a180cdc9684396);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0b7c546e060d0029cff9d0130fdefc8.bindPopup(popup_01a5c418ae2d708e8edf689163698d09)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b062ee48afedbec9adb94f381ba977e8 = L.circleMarker(\\n\",\n       \"                [39.5989, 109.8119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_721b7df333cce18ecf18dbfe1b598d1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15c6e878bac7b24324a48131462ea11b = $(`&lt;div id=&quot;html_15c6e878bac7b24324a48131462ea11b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8119             latitude:39.5989             PM2_5:28.25633803             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_721b7df333cce18ecf18dbfe1b598d1d.setContent(html_15c6e878bac7b24324a48131462ea11b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b062ee48afedbec9adb94f381ba977e8.bindPopup(popup_721b7df333cce18ecf18dbfe1b598d1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e13ef82ec2d2569d963f95140d0e6507 = L.circleMarker(\\n\",\n       \"                [31.6219, 120.275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d43d5eb4ddcf5505dcee518f90a3a35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62401657ab9ae156c921e3544fa3fdbc = $(`&lt;div id=&quot;html_62401657ab9ae156c921e3544fa3fdbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.275             latitude:31.6219             PM2_5:42.90625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d43d5eb4ddcf5505dcee518f90a3a35.setContent(html_62401657ab9ae156c921e3544fa3fdbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e13ef82ec2d2569d963f95140d0e6507.bindPopup(popup_2d43d5eb4ddcf5505dcee518f90a3a35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b522261727c73acf5357e54f71d354f1 = L.circleMarker(\\n\",\n       \"                [26.2625, 117.6211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f594335ca60fb6c979b28ff93cd74772 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f42a2530242287b72e3ebc16e095e825 = $(`&lt;div id=&quot;html_f42a2530242287b72e3ebc16e095e825&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6211             latitude:26.2625             PM2_5:27.27222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f594335ca60fb6c979b28ff93cd74772.setContent(html_f42a2530242287b72e3ebc16e095e825);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b522261727c73acf5357e54f71d354f1.bindPopup(popup_f594335ca60fb6c979b28ff93cd74772)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b8588d4ce9242b067d300d41cd7665b9 = L.circleMarker(\\n\",\n       \"                [42.3022, 123.8139],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9acfa5763d6bcfc072b11b6a04559103 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3426b26f8627aceafe800785bd7241d0 = $(`&lt;div id=&quot;html_3426b26f8627aceafe800785bd7241d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8139             latitude:42.3022             PM2_5:27.88053097             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9acfa5763d6bcfc072b11b6a04559103.setContent(html_3426b26f8627aceafe800785bd7241d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b8588d4ce9242b067d300d41cd7665b9.bindPopup(popup_9acfa5763d6bcfc072b11b6a04559103)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9792eb37371300cdd3e456f70d9d4fa = L.circleMarker(\\n\",\n       \"                [32.9683, 112.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afbad688c075dc9ec19ad1ef2974d454 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ef2a02cde6713bcb74ba3b7821504a2 = $(`&lt;div id=&quot;html_3ef2a02cde6713bcb74ba3b7821504a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.55             latitude:32.9683             PM2_5:55.1075419             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afbad688c075dc9ec19ad1ef2974d454.setContent(html_3ef2a02cde6713bcb74ba3b7821504a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9792eb37371300cdd3e456f70d9d4fa.bindPopup(popup_afbad688c075dc9ec19ad1ef2974d454)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62498a4dfb4d9fc922178983a82e6e58 = L.circleMarker(\\n\",\n       \"                [41.5672, 120.4486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c00b1dce335f1134f230e7039e40ff8d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ec7efd009af07d3d9c703261b70f3b6 = $(`&lt;div id=&quot;html_9ec7efd009af07d3d9c703261b70f3b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4486             latitude:41.5672             PM2_5:25.5915493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c00b1dce335f1134f230e7039e40ff8d.setContent(html_9ec7efd009af07d3d9c703261b70f3b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62498a4dfb4d9fc922178983a82e6e58.bindPopup(popup_c00b1dce335f1134f230e7039e40ff8d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c378754ad20fb8fcf5012f7f26f6e369 = L.circleMarker(\\n\",\n       \"                [31.2261, 121.425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1317878792e1b23bbbaf95737c6149fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1116174ef44190c5e8a30adf26f5c46a = $(`&lt;div id=&quot;html_1116174ef44190c5e8a30adf26f5c46a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.425             latitude:31.2261             PM2_5:41.84261838             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1317878792e1b23bbbaf95737c6149fe.setContent(html_1116174ef44190c5e8a30adf26f5c46a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c378754ad20fb8fcf5012f7f26f6e369.bindPopup(popup_1317878792e1b23bbbaf95737c6149fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_496b310ebeeb8fa4458791cc1f1e2d52 = L.circleMarker(\\n\",\n       \"                [27.5578, 109.9972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27fc3023b23bb124227557bbbf2e8d26 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_098ce364bbba0c1c5fbcd42f08e1d660 = $(`&lt;div id=&quot;html_098ce364bbba0c1c5fbcd42f08e1d660&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9972             latitude:27.5578             PM2_5:42.84463277             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27fc3023b23bb124227557bbbf2e8d26.setContent(html_098ce364bbba0c1c5fbcd42f08e1d660);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_496b310ebeeb8fa4458791cc1f1e2d52.bindPopup(popup_27fc3023b23bb124227557bbbf2e8d26)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ae96bbcb860c057b4c676f97e6dda7b = L.circleMarker(\\n\",\n       \"                [37.0172, 105.18],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a059b64382c386480d0a2f1c19b0f53 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96cbc65e0b93ab2e34a89fb7819f0af6 = $(`&lt;div id=&quot;html_96cbc65e0b93ab2e34a89fb7819f0af6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.18             latitude:37.0172             PM2_5:35.66201117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a059b64382c386480d0a2f1c19b0f53.setContent(html_96cbc65e0b93ab2e34a89fb7819f0af6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ae96bbcb860c057b4c676f97e6dda7b.bindPopup(popup_2a059b64382c386480d0a2f1c19b0f53)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_919fca8031f5941655df5cd97aceff8c = L.circleMarker(\\n\",\n       \"                [36.497, 117.8477],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_793185605b5ad685eb0fa2a14c0fbc09 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0824e7fcd4677ad6ec82305e8a08a703 = $(`&lt;div id=&quot;html_0824e7fcd4677ad6ec82305e8a08a703&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8477             latitude:36.497             PM2_5:53.86827195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_793185605b5ad685eb0fa2a14c0fbc09.setContent(html_0824e7fcd4677ad6ec82305e8a08a703);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_919fca8031f5941655df5cd97aceff8c.bindPopup(popup_793185605b5ad685eb0fa2a14c0fbc09)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d9afdd448ca80c91514e287708361cb = L.circleMarker(\\n\",\n       \"                [29.334, 120.04],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78dadff22c8069fda8cc07cf94b0cb21 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_faff1721e1dcb5e1d869fb4e4b124b83 = $(`&lt;div id=&quot;html_faff1721e1dcb5e1d869fb4e4b124b83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.04             latitude:29.334             PM2_5:33.41340782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78dadff22c8069fda8cc07cf94b0cb21.setContent(html_faff1721e1dcb5e1d869fb4e4b124b83);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d9afdd448ca80c91514e287708361cb.bindPopup(popup_78dadff22c8069fda8cc07cf94b0cb21)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60851ed011bfc7b8fb7da6def34b4adf = L.circleMarker(\\n\",\n       \"                [32.6939, 109.0281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90d8fd4d08762c01a4d07c34069207e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cfe4cf4486d417feef83e8b4e9324de4 = $(`&lt;div id=&quot;html_cfe4cf4486d417feef83e8b4e9324de4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0281             latitude:32.6939             PM2_5:42.38169014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90d8fd4d08762c01a4d07c34069207e3.setContent(html_cfe4cf4486d417feef83e8b4e9324de4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60851ed011bfc7b8fb7da6def34b4adf.bindPopup(popup_90d8fd4d08762c01a4d07c34069207e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d87f7cea6b9ccdf9a8150f46bcf10b2 = L.circleMarker(\\n\",\n       \"                [36.5481, 104.1731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_972305f6b6812b91387746145cc97d93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35a5efb5245030151bd3a118d6c6c9b0 = $(`&lt;div id=&quot;html_35a5efb5245030151bd3a118d6c6c9b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1731             latitude:36.5481             PM2_5:30.22922636             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_972305f6b6812b91387746145cc97d93.setContent(html_35a5efb5245030151bd3a118d6c6c9b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d87f7cea6b9ccdf9a8150f46bcf10b2.bindPopup(popup_972305f6b6812b91387746145cc97d93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_371f0be00111eacf19cbfcc7e5ed0e7e = L.circleMarker(\\n\",\n       \"                [31.671, 120.721],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f149b521370b9c46c5f3bb8419893612 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d7230f01fd75c96ac818a8caf65ffdd = $(`&lt;div id=&quot;html_3d7230f01fd75c96ac818a8caf65ffdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.721             latitude:31.671             PM2_5:43.43968254             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f149b521370b9c46c5f3bb8419893612.setContent(html_3d7230f01fd75c96ac818a8caf65ffdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_371f0be00111eacf19cbfcc7e5ed0e7e.bindPopup(popup_f149b521370b9c46c5f3bb8419893612)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6166594a673b35f31dcd5b5e97f22c1e = L.circleMarker(\\n\",\n       \"                [26.5506, 104.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e45da4ddf9e176610d5a66e059c4172f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b375cadcb4ba9a0ae834499d08d5f396 = $(`&lt;div id=&quot;html_b375cadcb4ba9a0ae834499d08d5f396&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9544             latitude:26.5506             PM2_5:39.40833333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e45da4ddf9e176610d5a66e059c4172f.setContent(html_b375cadcb4ba9a0ae834499d08d5f396);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6166594a673b35f31dcd5b5e97f22c1e.bindPopup(popup_e45da4ddf9e176610d5a66e059c4172f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b311f4d104f787c019579d4881c94aa7 = L.circleMarker(\\n\",\n       \"                [40.8033, 111.658],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0de6a2f035a463b2077b71ab49ea21b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e762ed95bae1361f03b8c8414c5f5e4d = $(`&lt;div id=&quot;html_e762ed95bae1361f03b8c8414c5f5e4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.658             latitude:40.8033             PM2_5:36.70612813             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0de6a2f035a463b2077b71ab49ea21b7.setContent(html_e762ed95bae1361f03b8c8414c5f5e4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b311f4d104f787c019579d4881c94aa7.bindPopup(popup_0de6a2f035a463b2077b71ab49ea21b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14ae5eefd23f470c5ed8c35009b6b721 = L.circleMarker(\\n\",\n       \"                [46.619, 131.1651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c22cc86068b9a484cb71269079fbb4ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_134fe15b3b6f8e5ee7bf7692ed4d1e30 = $(`&lt;div id=&quot;html_134fe15b3b6f8e5ee7bf7692ed4d1e30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1651             latitude:46.619             PM2_5:26.38235294             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c22cc86068b9a484cb71269079fbb4ce.setContent(html_134fe15b3b6f8e5ee7bf7692ed4d1e30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14ae5eefd23f470c5ed8c35009b6b721.bindPopup(popup_c22cc86068b9a484cb71269079fbb4ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2e6fe8f4a038ebbe7598b75b703679b = L.circleMarker(\\n\",\n       \"                [27.8136, 99.7064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d560309ce5e3948de623dba98e684d73 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e0ecc9864e6732ba555d7996904c8a7 = $(`&lt;div id=&quot;html_3e0ecc9864e6732ba555d7996904c8a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.7064             latitude:27.8136             PM2_5:12.44481605             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d560309ce5e3948de623dba98e684d73.setContent(html_3e0ecc9864e6732ba555d7996904c8a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2e6fe8f4a038ebbe7598b75b703679b.bindPopup(popup_d560309ce5e3948de623dba98e684d73)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3c5d4f0ed61bcc45d0a3e11e10cb108 = L.circleMarker(\\n\",\n       \"                [28.2325, 113.0833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3fd4dc28f2275113cf8761616ba9d3ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05cbdb2ccfa0b8f57256ca53e5d9bdf8 = $(`&lt;div id=&quot;html_05cbdb2ccfa0b8f57256ca53e5d9bdf8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0833             latitude:28.2325             PM2_5:45.18472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3fd4dc28f2275113cf8761616ba9d3ce.setContent(html_05cbdb2ccfa0b8f57256ca53e5d9bdf8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3c5d4f0ed61bcc45d0a3e11e10cb108.bindPopup(popup_3fd4dc28f2275113cf8761616ba9d3ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d1abd7d278df40b94a1c821ef8062a4 = L.circleMarker(\\n\",\n       \"                [39.8745, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbf4f6d54ec8d3cbd2437e66332bd96b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19a2eaae6153889fefc92e2d539d8dab = $(`&lt;div id=&quot;html_19a2eaae6153889fefc92e2d539d8dab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.8745             PM2_5:52.26638177             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbf4f6d54ec8d3cbd2437e66332bd96b.setContent(html_19a2eaae6153889fefc92e2d539d8dab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d1abd7d278df40b94a1c821ef8062a4.bindPopup(popup_bbf4f6d54ec8d3cbd2437e66332bd96b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0edcefa8f167673d1dee5ef919475ba3 = L.circleMarker(\\n\",\n       \"                [27.2582, 111.4908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82baf4d833f8a78416f45e1dcf8af484 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a36715966d85bb4932dc126900573bec = $(`&lt;div id=&quot;html_a36715966d85bb4932dc126900573bec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4908             latitude:27.2582             PM2_5:49.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82baf4d833f8a78416f45e1dcf8af484.setContent(html_a36715966d85bb4932dc126900573bec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0edcefa8f167673d1dee5ef919475ba3.bindPopup(popup_82baf4d833f8a78416f45e1dcf8af484)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2827cf3c76091d534d3ffa4a05ee493 = L.circleMarker(\\n\",\n       \"                [35.6039, 103.2139],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d5f813889ce2d97ff940139142e86c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a19c632c1a0e89ba8e6c1ec451f5eb05 = $(`&lt;div id=&quot;html_a19c632c1a0e89ba8e6c1ec451f5eb05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.2139             latitude:35.6039             PM2_5:35.40756303             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d5f813889ce2d97ff940139142e86c8.setContent(html_a19c632c1a0e89ba8e6c1ec451f5eb05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2827cf3c76091d534d3ffa4a05ee493.bindPopup(popup_5d5f813889ce2d97ff940139142e86c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ed0934e3485acf78506f594bcb84756 = L.circleMarker(\\n\",\n       \"                [33.1138, 107.0089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_459fc213467efd965d08fd1837bfeb1c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59450707bafcdc621aeb08184cd42b0e = $(`&lt;div id=&quot;html_59450707bafcdc621aeb08184cd42b0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0089             latitude:33.1138             PM2_5:45.40730337             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_459fc213467efd965d08fd1837bfeb1c.setContent(html_59450707bafcdc621aeb08184cd42b0e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ed0934e3485acf78506f594bcb84756.bindPopup(popup_459fc213467efd965d08fd1837bfeb1c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48b7b04413f0cb304c7fb0933981540e = L.circleMarker(\\n\",\n       \"                [31.8711, 106.7389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f71f9458b69b3149f97c4929e9b67cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0323c3bc1e3e5331b4e734a596440c6 = $(`&lt;div id=&quot;html_f0323c3bc1e3e5331b4e734a596440c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7389             latitude:31.8711             PM2_5:32.18662953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f71f9458b69b3149f97c4929e9b67cf.setContent(html_f0323c3bc1e3e5331b4e734a596440c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48b7b04413f0cb304c7fb0933981540e.bindPopup(popup_9f71f9458b69b3149f97c4929e9b67cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb5b54cf0b7e769b948c9ac834b32823 = L.circleMarker(\\n\",\n       \"                [43.8875, 126.555],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71c5e36e03d6102215c97b6e3af22ffd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c918e77ac3176bd751d589ef36cab1bb = $(`&lt;div id=&quot;html_c918e77ac3176bd751d589ef36cab1bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.555             latitude:43.8875             PM2_5:31.1800554             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71c5e36e03d6102215c97b6e3af22ffd.setContent(html_c918e77ac3176bd751d589ef36cab1bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb5b54cf0b7e769b948c9ac834b32823.bindPopup(popup_71c5e36e03d6102215c97b6e3af22ffd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4c406a9a74f9f11afb7eb5c8f1f0e08 = L.circleMarker(\\n\",\n       \"                [23.02777778, 113.7461111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7517494b6c24777b366f64f29fe0dc5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de8cd9c98847ec19bcbd543f2925311b = $(`&lt;div id=&quot;html_de8cd9c98847ec19bcbd543f2925311b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7461111             latitude:23.02777778             PM2_5:36.35734463             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7517494b6c24777b366f64f29fe0dc5.setContent(html_de8cd9c98847ec19bcbd543f2925311b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4c406a9a74f9f11afb7eb5c8f1f0e08.bindPopup(popup_e7517494b6c24777b366f64f29fe0dc5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_467dafd995accb9ba2077aad9d0a4a13 = L.circleMarker(\\n\",\n       \"                [35.5997, 103.2064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_199d27e200e226d5228e1e306d261f9a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a66d7e5ed799da8fab7fa30dbb04e741 = $(`&lt;div id=&quot;html_a66d7e5ed799da8fab7fa30dbb04e741&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.2064             latitude:35.5997             PM2_5:30.64345404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_199d27e200e226d5228e1e306d261f9a.setContent(html_a66d7e5ed799da8fab7fa30dbb04e741);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_467dafd995accb9ba2077aad9d0a4a13.bindPopup(popup_199d27e200e226d5228e1e306d261f9a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6d9ad4c570e0177bccb57ffe1e21183 = L.circleMarker(\\n\",\n       \"                [28.8194, 104.5969],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ed9f3ec6bd5048023ff452a7d2f568c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc1169ded2c004a7fe1f8f8b5498d402 = $(`&lt;div id=&quot;html_cc1169ded2c004a7fe1f8f8b5498d402&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.5969             latitude:28.8194             PM2_5:49.5720339             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ed9f3ec6bd5048023ff452a7d2f568c.setContent(html_cc1169ded2c004a7fe1f8f8b5498d402);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6d9ad4c570e0177bccb57ffe1e21183.bindPopup(popup_9ed9f3ec6bd5048023ff452a7d2f568c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8fc6349d5bfbac602e92e61a0e33c7c = L.circleMarker(\\n\",\n       \"                [32.939, 117.3961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a83bbd8ccfc16d0feaf557e6d2765d8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6749b6a99fcbf8c7b3edd029f93f6cdb = $(`&lt;div id=&quot;html_6749b6a99fcbf8c7b3edd029f93f6cdb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3961             latitude:32.939             PM2_5:64.66016713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a83bbd8ccfc16d0feaf557e6d2765d8e.setContent(html_6749b6a99fcbf8c7b3edd029f93f6cdb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8fc6349d5bfbac602e92e61a0e33c7c.bindPopup(popup_a83bbd8ccfc16d0feaf557e6d2765d8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a9c4459c183a98b29832c450b49854e = L.circleMarker(\\n\",\n       \"                [34.2761, 117.167],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d0619a3eef1c11b312f906a14971d7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a986301485da9a8bcbf80d837851ad4c = $(`&lt;div id=&quot;html_a986301485da9a8bcbf80d837851ad4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.167             latitude:34.2761             PM2_5:66.15223464             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d0619a3eef1c11b312f906a14971d7f.setContent(html_a986301485da9a8bcbf80d837851ad4c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a9c4459c183a98b29832c450b49854e.bindPopup(popup_0d0619a3eef1c11b312f906a14971d7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e500c03fc38a962146b1c7c9a4334d5 = L.circleMarker(\\n\",\n       \"                [36.6428, 101.748],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b200543f5eb2f1efd61c13dc0d2f5d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ecc38d93b407917bcaed5d76acbfd7a = $(`&lt;div id=&quot;html_4ecc38d93b407917bcaed5d76acbfd7a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.748             latitude:36.6428             PM2_5:57.3005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b200543f5eb2f1efd61c13dc0d2f5d3.setContent(html_4ecc38d93b407917bcaed5d76acbfd7a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e500c03fc38a962146b1c7c9a4334d5.bindPopup(popup_3b200543f5eb2f1efd61c13dc0d2f5d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0213f42caeceab0c3127be4ac119a308 = L.circleMarker(\\n\",\n       \"                [27.8159, 112.9227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43bf280056d234cde798b25f7165933f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebd59c3c74f333363ab2c3381f7d14cc = $(`&lt;div id=&quot;html_ebd59c3c74f333363ab2c3381f7d14cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9227             latitude:27.8159             PM2_5:45.07222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43bf280056d234cde798b25f7165933f.setContent(html_ebd59c3c74f333363ab2c3381f7d14cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0213f42caeceab0c3127be4ac119a308.bindPopup(popup_43bf280056d234cde798b25f7165933f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d44bffe4797cde9bd81d6203dbcb7661 = L.circleMarker(\\n\",\n       \"                [30.3119, 120.12],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_898403e5edb4910b03e943213a95076d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e67f790a7890dab6fc36f2f691f4e7f3 = $(`&lt;div id=&quot;html_e67f790a7890dab6fc36f2f691f4e7f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.12             latitude:30.3119             PM2_5:42.92936288             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_898403e5edb4910b03e943213a95076d.setContent(html_e67f790a7890dab6fc36f2f691f4e7f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d44bffe4797cde9bd81d6203dbcb7661.bindPopup(popup_898403e5edb4910b03e943213a95076d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c76d85b470e56be2ae60ea84f85b72a9 = L.circleMarker(\\n\",\n       \"                [29.7736, 121.633],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4ac904b79223b5eb058322a404f9eaf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1258d693c92e13ece3cca65d702d7f4 = $(`&lt;div id=&quot;html_a1258d693c92e13ece3cca65d702d7f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.633             latitude:29.7736             PM2_5:33.41340782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4ac904b79223b5eb058322a404f9eaf.setContent(html_a1258d693c92e13ece3cca65d702d7f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c76d85b470e56be2ae60ea84f85b72a9.bindPopup(popup_a4ac904b79223b5eb058322a404f9eaf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7844dd78beb35d35999be234e11f7115 = L.circleMarker(\\n\",\n       \"                [34.5911, 119.1478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbe517a4b3cbe1b6e14895c5cc7d50cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d532a9e63bca4bad746864c752f8f12f = $(`&lt;div id=&quot;html_d532a9e63bca4bad746864c752f8f12f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1478             latitude:34.5911             PM2_5:43.48860399             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbe517a4b3cbe1b6e14895c5cc7d50cb.setContent(html_d532a9e63bca4bad746864c752f8f12f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7844dd78beb35d35999be234e11f7115.bindPopup(popup_dbe517a4b3cbe1b6e14895c5cc7d50cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fdb7176ea599a58fa1c3833b1f637dfa = L.circleMarker(\\n\",\n       \"                [31.155, 120.636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b1c539daaea3454a7b5249e3443f0be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd23fe9593aeeb116bea92430eaa379d = $(`&lt;div id=&quot;html_cd23fe9593aeeb116bea92430eaa379d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.636             latitude:31.155             PM2_5:39.32271468             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b1c539daaea3454a7b5249e3443f0be.setContent(html_cd23fe9593aeeb116bea92430eaa379d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fdb7176ea599a58fa1c3833b1f637dfa.bindPopup(popup_3b1c539daaea3454a7b5249e3443f0be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0cf0add3e6deb3fb1430026623144b88 = L.circleMarker(\\n\",\n       \"                [35.2375, 115.474722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c02b875da9a3da3f990f9b5babd2f7a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_79f361e11e07b1454b08b35ddfaa789d = $(`&lt;div id=&quot;html_79f361e11e07b1454b08b35ddfaa789d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.474722             latitude:35.2375             PM2_5:57.86516854             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c02b875da9a3da3f990f9b5babd2f7a1.setContent(html_79f361e11e07b1454b08b35ddfaa789d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0cf0add3e6deb3fb1430026623144b88.bindPopup(popup_c02b875da9a3da3f990f9b5babd2f7a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_371b56b0c5ae5da1bd236a5d797ec11b = L.circleMarker(\\n\",\n       \"                [30.518, 106.631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2dfffc080c9387368083a9010376e6fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a479d2e76a6bf4df945499b57488ecae = $(`&lt;div id=&quot;html_a479d2e76a6bf4df945499b57488ecae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.631             latitude:30.518             PM2_5:32.56446991             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2dfffc080c9387368083a9010376e6fc.setContent(html_a479d2e76a6bf4df945499b57488ecae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_371b56b0c5ae5da1bd236a5d797ec11b.bindPopup(popup_2dfffc080c9387368083a9010376e6fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7e6e46405387c137916d2f9be07843f = L.circleMarker(\\n\",\n       \"                [31.1333, 104.3883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94fd5bf9c94734e2f84221be181de488 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d4aee33b4b1d84cd76bbe81bdf6ce59 = $(`&lt;div id=&quot;html_1d4aee33b4b1d84cd76bbe81bdf6ce59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.3883             latitude:31.1333             PM2_5:44.57222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94fd5bf9c94734e2f84221be181de488.setContent(html_1d4aee33b4b1d84cd76bbe81bdf6ce59);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7e6e46405387c137916d2f9be07843f.bindPopup(popup_94fd5bf9c94734e2f84221be181de488)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7fa24ae61f6a68dc78beebe05ee1600b = L.circleMarker(\\n\",\n       \"                [32.0417, 120.81],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e49af6f9d2d2e57272f7fe1da9d14ee5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d2d60cf4fa38c9a21dedae76eadef67 = $(`&lt;div id=&quot;html_6d2d60cf4fa38c9a21dedae76eadef67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.81             latitude:32.0417             PM2_5:36.4957265             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e49af6f9d2d2e57272f7fe1da9d14ee5.setContent(html_6d2d60cf4fa38c9a21dedae76eadef67);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7fa24ae61f6a68dc78beebe05ee1600b.bindPopup(popup_e49af6f9d2d2e57272f7fe1da9d14ee5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d769ab0640e5d6cb0e65c8509476c70 = L.circleMarker(\\n\",\n       \"                [36.5776, 114.5035],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9518943c85309a40b85ba4d5f0a54618 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b2f96fe3d27eb9ea73a3124d2d7ef76 = $(`&lt;div id=&quot;html_0b2f96fe3d27eb9ea73a3124d2d7ef76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5035             latitude:36.5776             PM2_5:73.41736695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9518943c85309a40b85ba4d5f0a54618.setContent(html_0b2f96fe3d27eb9ea73a3124d2d7ef76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d769ab0640e5d6cb0e65c8509476c70.bindPopup(popup_9518943c85309a40b85ba4d5f0a54618)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dad172b1015e0df75e06c2fac16b7718 = L.circleMarker(\\n\",\n       \"                [45.7677, 131.0032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26d3fea6b9593ed3d87106898675c3a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3774febd11966f4e320980f88eca2e4 = $(`&lt;div id=&quot;html_d3774febd11966f4e320980f88eca2e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.0032             latitude:45.7677             PM2_5:36.55084746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26d3fea6b9593ed3d87106898675c3a7.setContent(html_d3774febd11966f4e320980f88eca2e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dad172b1015e0df75e06c2fac16b7718.bindPopup(popup_26d3fea6b9593ed3d87106898675c3a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28ea2b6beac4178971afe84ff1df5b18 = L.circleMarker(\\n\",\n       \"                [30.2692, 120.19],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8996c65d78964596b6724a06712f6129 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0275efc333f4682f4558aaacf4a8fdf9 = $(`&lt;div id=&quot;html_0275efc333f4682f4558aaacf4a8fdf9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.19             latitude:30.2692             PM2_5:42.02361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8996c65d78964596b6724a06712f6129.setContent(html_0275efc333f4682f4558aaacf4a8fdf9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28ea2b6beac4178971afe84ff1df5b18.bindPopup(popup_8996c65d78964596b6724a06712f6129)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7b570683856b4b5f024040f355ca4ce = L.circleMarker(\\n\",\n       \"                [37.8692, 112.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa00a4a0c872e6473f766b749b56cdbc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e13beb8ffcb691f4a3bfe7131bb24ee = $(`&lt;div id=&quot;html_3e13beb8ffcb691f4a3bfe7131bb24ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5369             latitude:37.8692             PM2_5:65.43201133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa00a4a0c872e6473f766b749b56cdbc.setContent(html_3e13beb8ffcb691f4a3bfe7131bb24ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7b570683856b4b5f024040f355ca4ce.bindPopup(popup_aa00a4a0c872e6473f766b749b56cdbc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cddcc19abe1d16274d03fc23b707ed23 = L.circleMarker(\\n\",\n       \"                [31.4189, 118.37],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab2aa0c8393162a78c3015d21875c705 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9bda818ff5da612e3165fa8456151916 = $(`&lt;div id=&quot;html_9bda818ff5da612e3165fa8456151916&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.37             latitude:31.4189             PM2_5:49.21848739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab2aa0c8393162a78c3015d21875c705.setContent(html_9bda818ff5da612e3165fa8456151916);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cddcc19abe1d16274d03fc23b707ed23.bindPopup(popup_ab2aa0c8393162a78c3015d21875c705)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d798162648bb555e45b57cc30c650e6 = L.circleMarker(\\n\",\n       \"                [31.7797, 116.5068],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aacc6a979b5be6e1d55d57e16e321f40 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0cc5869618f6a212190e78727c891811 = $(`&lt;div id=&quot;html_0cc5869618f6a212190e78727c891811&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5068             latitude:31.7797             PM2_5:41.27668539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aacc6a979b5be6e1d55d57e16e321f40.setContent(html_0cc5869618f6a212190e78727c891811);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d798162648bb555e45b57cc30c650e6.bindPopup(popup_aacc6a979b5be6e1d55d57e16e321f40)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_762c8cabbfe48659f75a122ab2320b01 = L.circleMarker(\\n\",\n       \"                [23.0944, 109.6014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8225c4d60f27bbfdeb94af89b8f8f60 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd794928a925383ab5bbac356ccdb2ea = $(`&lt;div id=&quot;html_fd794928a925383ab5bbac356ccdb2ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6014             latitude:23.0944             PM2_5:37.92877095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8225c4d60f27bbfdeb94af89b8f8f60.setContent(html_fd794928a925383ab5bbac356ccdb2ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_762c8cabbfe48659f75a122ab2320b01.bindPopup(popup_d8225c4d60f27bbfdeb94af89b8f8f60)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10cdc467ca6d4607b7b8c40aa3c5024c = L.circleMarker(\\n\",\n       \"                [47.3382, 130.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5eb708df9295dfd00f4c9d25a967c233 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d55a4256875d7ce9caf9206903f6b7c8 = $(`&lt;div id=&quot;html_d55a4256875d7ce9caf9206903f6b7c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.1097             latitude:47.3382             PM2_5:17.86571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5eb708df9295dfd00f4c9d25a967c233.setContent(html_d55a4256875d7ce9caf9206903f6b7c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10cdc467ca6d4607b7b8c40aa3c5024c.bindPopup(popup_5eb708df9295dfd00f4c9d25a967c233)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d66a9074237780c9fcace45c1d2ccdf = L.circleMarker(\\n\",\n       \"                [32.4285, 105.8624],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d669dabf4668d7002e08275730ee81a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27e2f0269114e6d63ec99de7ea434486 = $(`&lt;div id=&quot;html_27e2f0269114e6d63ec99de7ea434486&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8624             latitude:32.4285             PM2_5:25.26044568             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d669dabf4668d7002e08275730ee81a.setContent(html_27e2f0269114e6d63ec99de7ea434486);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d66a9074237780c9fcace45c1d2ccdf.bindPopup(popup_4d669dabf4668d7002e08275730ee81a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54a5ba4a1c07d79ef54e5d53816b94b0 = L.circleMarker(\\n\",\n       \"                [31.9025, 102.2218],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16b07fe4f3d8e30221484551cb6cf02c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e22644a0a9a9e1935bcfa2f85ca218e = $(`&lt;div id=&quot;html_3e22644a0a9a9e1935bcfa2f85ca218e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2218             latitude:31.9025             PM2_5:10.50840336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16b07fe4f3d8e30221484551cb6cf02c.setContent(html_3e22644a0a9a9e1935bcfa2f85ca218e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54a5ba4a1c07d79ef54e5d53816b94b0.bindPopup(popup_16b07fe4f3d8e30221484551cb6cf02c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7904c4d786e348882dbd11af74bcef1 = L.circleMarker(\\n\",\n       \"                [27.7019, 106.9242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73d5b841fc6939dd7125753a46b4c6ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd672bd6bfbf4db3a9aa9fa612f22878 = $(`&lt;div id=&quot;html_bd672bd6bfbf4db3a9aa9fa612f22878&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9242             latitude:27.7019             PM2_5:27.95238095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73d5b841fc6939dd7125753a46b4c6ad.setContent(html_bd672bd6bfbf4db3a9aa9fa612f22878);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7904c4d786e348882dbd11af74bcef1.bindPopup(popup_73d5b841fc6939dd7125753a46b4c6ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ea2327f19397fc1a007b5d588f9ec65 = L.circleMarker(\\n\",\n       \"                [22.7422, 114.5317],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a8d8c8c3eb0650f1c1d465a656e1274 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af4d75794aef54e58030e2199e7b896a = $(`&lt;div id=&quot;html_af4d75794aef54e58030e2199e7b896a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5317             latitude:22.7422             PM2_5:29.73285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a8d8c8c3eb0650f1c1d465a656e1274.setContent(html_af4d75794aef54e58030e2199e7b896a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ea2327f19397fc1a007b5d588f9ec65.bindPopup(popup_0a8d8c8c3eb0650f1c1d465a656e1274)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f30fd9a89fee14de89d1e8b7e6715c6 = L.circleMarker(\\n\",\n       \"                [29.5467, 103.7705],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8eb88ef81e0a47cae0fda49d09b3c907 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65d26ff7a1e922727628bb85df07d6b1 = $(`&lt;div id=&quot;html_65d26ff7a1e922727628bb85df07d6b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7705             latitude:29.5467             PM2_5:48.10252809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8eb88ef81e0a47cae0fda49d09b3c907.setContent(html_65d26ff7a1e922727628bb85df07d6b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f30fd9a89fee14de89d1e8b7e6715c6.bindPopup(popup_8eb88ef81e0a47cae0fda49d09b3c907)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be12c4ada40102c4050814a5f7c738a3 = L.circleMarker(\\n\",\n       \"                [23.0672, 109.6042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d44fd4b2f739556700ba0ed7a43bf9b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe5571187ea015ea6b7de4310757fc84 = $(`&lt;div id=&quot;html_fe5571187ea015ea6b7de4310757fc84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6042             latitude:23.0672             PM2_5:37.3603352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d44fd4b2f739556700ba0ed7a43bf9b.setContent(html_fe5571187ea015ea6b7de4310757fc84);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be12c4ada40102c4050814a5f7c738a3.bindPopup(popup_0d44fd4b2f739556700ba0ed7a43bf9b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f700af7e29dd31d0f0a78f4997f2c89d = L.circleMarker(\\n\",\n       \"                [33.6347, 114.6758],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd163e2875e1b51387ad3badb434e58b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bff7cde2e6f5f54627e3abe44e7380a7 = $(`&lt;div id=&quot;html_bff7cde2e6f5f54627e3abe44e7380a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6758             latitude:33.6347             PM2_5:49.04929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd163e2875e1b51387ad3badb434e58b.setContent(html_bff7cde2e6f5f54627e3abe44e7380a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f700af7e29dd31d0f0a78f4997f2c89d.bindPopup(popup_dd163e2875e1b51387ad3badb434e58b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5482717126d4844364fb0dc043948207 = L.circleMarker(\\n\",\n       \"                [41.0831, 123.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb3d2724b5d908e785e01b0361539289 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5d2a00f456927302fc305812516e56e = $(`&lt;div id=&quot;html_e5d2a00f456927302fc305812516e56e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0156             latitude:41.0831             PM2_5:32.32402235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb3d2724b5d908e785e01b0361539289.setContent(html_e5d2a00f456927302fc305812516e56e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5482717126d4844364fb0dc043948207.bindPopup(popup_cb3d2724b5d908e785e01b0361539289)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54227f668ffba22ca70f0108d7533a59 = L.circleMarker(\\n\",\n       \"                [42.2217, 123.7153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d39d9be6e60048644fe69067a12f87d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18a72253a41e8445a919da2b2916c0db = $(`&lt;div id=&quot;html_18a72253a41e8445a919da2b2916c0db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7153             latitude:42.2217             PM2_5:31.41666667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d39d9be6e60048644fe69067a12f87d9.setContent(html_18a72253a41e8445a919da2b2916c0db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54227f668ffba22ca70f0108d7533a59.bindPopup(popup_d39d9be6e60048644fe69067a12f87d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e586ab957035dacc292fda04bca2f39a = L.circleMarker(\\n\",\n       \"                [29.6632, 94.3616],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ecf4ded308e4e81ce7d10e5bd7f5aa9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f20975d0eda384394344b270f369a7b1 = $(`&lt;div id=&quot;html_f20975d0eda384394344b270f369a7b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:94.3616             latitude:29.6632             PM2_5:7.451977401             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ecf4ded308e4e81ce7d10e5bd7f5aa9.setContent(html_f20975d0eda384394344b270f369a7b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e586ab957035dacc292fda04bca2f39a.bindPopup(popup_7ecf4ded308e4e81ce7d10e5bd7f5aa9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6edb61cf6986783413c3cc90f22b977a = L.circleMarker(\\n\",\n       \"                [30.9414, 117.7806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0847f3c5071bb1c9b4f0870edf0a79f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb1bba9e05aed106120de119448ee7e7 = $(`&lt;div id=&quot;html_bb1bba9e05aed106120de119448ee7e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7806             latitude:30.9414             PM2_5:50.90972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0847f3c5071bb1c9b4f0870edf0a79f4.setContent(html_bb1bba9e05aed106120de119448ee7e7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6edb61cf6986783413c3cc90f22b977a.bindPopup(popup_0847f3c5071bb1c9b4f0870edf0a79f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_04962308aec4f0137d3318b1788e4887 = L.circleMarker(\\n\",\n       \"                [28.2169, 116.9983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e23c20d52f3e9759e2e65744f8f7120 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_befb8ab612d0e875e93766ba4225a26c = $(`&lt;div id=&quot;html_befb8ab612d0e875e93766ba4225a26c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9983             latitude:28.2169             PM2_5:34.9039548             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e23c20d52f3e9759e2e65744f8f7120.setContent(html_befb8ab612d0e875e93766ba4225a26c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_04962308aec4f0137d3318b1788e4887.bindPopup(popup_2e23c20d52f3e9759e2e65744f8f7120)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea6d59a38ad24da1fd25cdf7f2bd66ec = L.circleMarker(\\n\",\n       \"                [33.9592, 118.2442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab7fd22022cd060db28094610ddb08a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2e08e70def17074d03064b16dca7366 = $(`&lt;div id=&quot;html_b2e08e70def17074d03064b16dca7366&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2442             latitude:33.9592             PM2_5:56.46619217             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab7fd22022cd060db28094610ddb08a7.setContent(html_b2e08e70def17074d03064b16dca7366);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea6d59a38ad24da1fd25cdf7f2bd66ec.bindPopup(popup_ab7fd22022cd060db28094610ddb08a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_329371a8e3f45985716d1649a1d1cc57 = L.circleMarker(\\n\",\n       \"                [24.5058, 118.0936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b3addae3466082c670c8456ec7003279 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b00376c8a9f0f0945c68106a256abd14 = $(`&lt;div id=&quot;html_b00376c8a9f0f0945c68106a256abd14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0936             latitude:24.5058             PM2_5:25.02367688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b3addae3466082c670c8456ec7003279.setContent(html_b00376c8a9f0f0945c68106a256abd14);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_329371a8e3f45985716d1649a1d1cc57.bindPopup(popup_b3addae3466082c670c8456ec7003279)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f67d5a03e83f8501bce27e6810b95bfc = L.circleMarker(\\n\",\n       \"                [32.215, 119.491],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d964dc0d9c0021542b064ed4592ce01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9758a13fbce1fbf909d7439f4336051f = $(`&lt;div id=&quot;html_9758a13fbce1fbf909d7439f4336051f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.491             latitude:32.215             PM2_5:46.08888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d964dc0d9c0021542b064ed4592ce01.setContent(html_9758a13fbce1fbf909d7439f4336051f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f67d5a03e83f8501bce27e6810b95bfc.bindPopup(popup_5d964dc0d9c0021542b064ed4592ce01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdad8bac46877dd5f3edbbbe6a113552 = L.circleMarker(\\n\",\n       \"                [45.0878, 124.8292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc5e0da83f5b34a39cfec5a0ecaea00f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f21c350df120fe597cac26fffc77ef3c = $(`&lt;div id=&quot;html_f21c350df120fe597cac26fffc77ef3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8292             latitude:45.0878             PM2_5:27.28830084             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc5e0da83f5b34a39cfec5a0ecaea00f.setContent(html_f21c350df120fe597cac26fffc77ef3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdad8bac46877dd5f3edbbbe6a113552.bindPopup(popup_dc5e0da83f5b34a39cfec5a0ecaea00f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3908648da3fb8a795cf31d34dd180b5 = L.circleMarker(\\n\",\n       \"                [23.7586, 114.6944],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25720ef9b9af990481ee0edf8ce7c750 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86cdcf4a88c5190ff0d1995f7081d276 = $(`&lt;div id=&quot;html_86cdcf4a88c5190ff0d1995f7081d276&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6944             latitude:23.7586             PM2_5:29.19382022             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25720ef9b9af990481ee0edf8ce7c750.setContent(html_86cdcf4a88c5190ff0d1995f7081d276);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3908648da3fb8a795cf31d34dd180b5.bindPopup(popup_25720ef9b9af990481ee0edf8ce7c750)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5ffec92a70823cbb119ae490dbeea26 = L.circleMarker(\\n\",\n       \"                [27.9958, 113.1817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65a6319ac0454dc6bc31b71bb0472677 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf0f1cd143c9cc2c5344965018651be3 = $(`&lt;div id=&quot;html_cf0f1cd143c9cc2c5344965018651be3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1817             latitude:27.9958             PM2_5:39.6686747             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65a6319ac0454dc6bc31b71bb0472677.setContent(html_cf0f1cd143c9cc2c5344965018651be3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5ffec92a70823cbb119ae490dbeea26.bindPopup(popup_65a6319ac0454dc6bc31b71bb0472677)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_820bccb5003dedf8b6c6d48973751512 = L.circleMarker(\\n\",\n       \"                [42.2864, 123.8489],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76b29f9fed9b8d21b9b12a55d71547ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_602ac531a5de99272a33cdfa245facac = $(`&lt;div id=&quot;html_602ac531a5de99272a33cdfa245facac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8489             latitude:42.2864             PM2_5:32.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76b29f9fed9b8d21b9b12a55d71547ba.setContent(html_602ac531a5de99272a33cdfa245facac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_820bccb5003dedf8b6c6d48973751512.bindPopup(popup_76b29f9fed9b8d21b9b12a55d71547ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8018376fa45c806d926f79331477c2f5 = L.circleMarker(\\n\",\n       \"                [36.1031, 103.631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_566c28703a2e34316e7909b05933c5c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf67990d68b60dc5f75f12563bcfb792 = $(`&lt;div id=&quot;html_bf67990d68b60dc5f75f12563bcfb792&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.631             latitude:36.1031             PM2_5:61.04073034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_566c28703a2e34316e7909b05933c5c5.setContent(html_bf67990d68b60dc5f75f12563bcfb792);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8018376fa45c806d926f79331477c2f5.bindPopup(popup_566c28703a2e34316e7909b05933c5c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0104eaed291b200d77302f9f2ae8f840 = L.circleMarker(\\n\",\n       \"                [30.9414, 117.8178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b84bb7ee2903841b3c091284678d8775 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7e1b383f0fbe90a53ade417a394193c = $(`&lt;div id=&quot;html_b7e1b383f0fbe90a53ade417a394193c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8178             latitude:30.9414             PM2_5:52.25837989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b84bb7ee2903841b3c091284678d8775.setContent(html_b7e1b383f0fbe90a53ade417a394193c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0104eaed291b200d77302f9f2ae8f840.bindPopup(popup_b84bb7ee2903841b3c091284678d8775)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_abb11dae5c566886ff67a865bcf54040 = L.circleMarker(\\n\",\n       \"                [43.8303, 87.5801],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c992b5b0022c06bac9df2b0b01f767d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92587de9df32b4fbb62b6cd18d61dae8 = $(`&lt;div id=&quot;html_92587de9df32b4fbb62b6cd18d61dae8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5801             latitude:43.8303             PM2_5:54.90373563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c992b5b0022c06bac9df2b0b01f767d9.setContent(html_92587de9df32b4fbb62b6cd18d61dae8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_abb11dae5c566886ff67a865bcf54040.bindPopup(popup_c992b5b0022c06bac9df2b0b01f767d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ce5c96c9b2bff70353b28f89e3c2a5a = L.circleMarker(\\n\",\n       \"                [30.0033, 120.7789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05b9a0159c679872e3bbe3ff3ee2ea6a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bac507c1b824e8653c2c0c39c43834a5 = $(`&lt;div id=&quot;html_bac507c1b824e8653c2c0c39c43834a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.7789             latitude:30.0033             PM2_5:43.33379888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05b9a0159c679872e3bbe3ff3ee2ea6a.setContent(html_bac507c1b824e8653c2c0c39c43834a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ce5c96c9b2bff70353b28f89e3c2a5a.bindPopup(popup_05b9a0159c679872e3bbe3ff3ee2ea6a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fb25663e9f73e9f6ee5e760aa7b848d = L.circleMarker(\\n\",\n       \"                [37.0964, 114.5331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1dc2cf058992f293cd0e0ea5f2045d10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ea674065986ffed26bf6f9a6d3ca59c = $(`&lt;div id=&quot;html_6ea674065986ffed26bf6f9a6d3ca59c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5331             latitude:37.0964             PM2_5:77.58595989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1dc2cf058992f293cd0e0ea5f2045d10.setContent(html_6ea674065986ffed26bf6f9a6d3ca59c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fb25663e9f73e9f6ee5e760aa7b848d.bindPopup(popup_1dc2cf058992f293cd0e0ea5f2045d10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08270f01c0b67579fce3a29e4b16d419 = L.circleMarker(\\n\",\n       \"                [40.8144, 111.608],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2fad8211f6a4370a84ed8981f16882e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4a4a9e68c891637f69871652efef578 = $(`&lt;div id=&quot;html_d4a4a9e68c891637f69871652efef578&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.608             latitude:40.8144             PM2_5:45.11331445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2fad8211f6a4370a84ed8981f16882e0.setContent(html_d4a4a9e68c891637f69871652efef578);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08270f01c0b67579fce3a29e4b16d419.bindPopup(popup_2fad8211f6a4370a84ed8981f16882e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9279c57e129e5ffd20e56025fc81d34a = L.circleMarker(\\n\",\n       \"                [38.885, 121.5638889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d8ed1b56c9a70a3fd95b2a021dd3906 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33568b76a94b29000cdf490f6165f6ad = $(`&lt;div id=&quot;html_33568b76a94b29000cdf490f6165f6ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5638889             latitude:38.885             PM2_5:28.35180055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d8ed1b56c9a70a3fd95b2a021dd3906.setContent(html_33568b76a94b29000cdf490f6165f6ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9279c57e129e5ffd20e56025fc81d34a.bindPopup(popup_0d8ed1b56c9a70a3fd95b2a021dd3906)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91df865e1b3e22d0dd751a18305b37ee = L.circleMarker(\\n\",\n       \"                [29.3547, 110.5594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2666ea5b71f82484b2295f4b48fa370 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9035631e55af56b850ca384e8474d7b2 = $(`&lt;div id=&quot;html_9035631e55af56b850ca384e8474d7b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.5594             latitude:29.3547             PM2_5:28.22005571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2666ea5b71f82484b2295f4b48fa370.setContent(html_9035631e55af56b850ca384e8474d7b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91df865e1b3e22d0dd751a18305b37ee.bindPopup(popup_a2666ea5b71f82484b2295f4b48fa370)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2be69094919941d4d853031aa2928c58 = L.circleMarker(\\n\",\n       \"                [41.2864, 123.7669],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c11ab9f01a1585f4f52916228cc07283 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d31b2d8533142835236b4329d8c1619 = $(`&lt;div id=&quot;html_2d31b2d8533142835236b4329d8c1619&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7669             latitude:41.2864             PM2_5:26.47777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c11ab9f01a1585f4f52916228cc07283.setContent(html_2d31b2d8533142835236b4329d8c1619);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2be69094919941d4d853031aa2928c58.bindPopup(popup_c11ab9f01a1585f4f52916228cc07283)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd479fd10062b9c5df097cadd0872af9 = L.circleMarker(\\n\",\n       \"                [26.5894, 104.8475],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_541d44c7282034221e7bbc5268bdd227 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f34023657022c4517efa6e4bcbee226 = $(`&lt;div id=&quot;html_5f34023657022c4517efa6e4bcbee226&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8475             latitude:26.5894             PM2_5:30.62569832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_541d44c7282034221e7bbc5268bdd227.setContent(html_5f34023657022c4517efa6e4bcbee226);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd479fd10062b9c5df097cadd0872af9.bindPopup(popup_541d44c7282034221e7bbc5268bdd227)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96a66c9279e6ef487de575ec98b1fab1 = L.circleMarker(\\n\",\n       \"                [34.402, 115.6578],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd9e3ec37441be38092dc334cedf0cb1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_088ef56b5b160093695f1e2d0d67d3ee = $(`&lt;div id=&quot;html_088ef56b5b160093695f1e2d0d67d3ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6578             latitude:34.402             PM2_5:56.04761905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd9e3ec37441be38092dc334cedf0cb1.setContent(html_088ef56b5b160093695f1e2d0d67d3ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96a66c9279e6ef487de575ec98b1fab1.bindPopup(popup_fd9e3ec37441be38092dc334cedf0cb1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e481b0928761da6387e93fdebba2a81 = L.circleMarker(\\n\",\n       \"                [31.3097, 120.669],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d651217dff571152f53ad51ed56ca5fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_412279c42d2196c0ccda7ba63b277cfd = $(`&lt;div id=&quot;html_412279c42d2196c0ccda7ba63b277cfd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.669             latitude:31.3097             PM2_5:39.40363128             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d651217dff571152f53ad51ed56ca5fc.setContent(html_412279c42d2196c0ccda7ba63b277cfd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e481b0928761da6387e93fdebba2a81.bindPopup(popup_d651217dff571152f53ad51ed56ca5fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_313fecc3c5c5cf19cfd99fc2e96cd3b7 = L.circleMarker(\\n\",\n       \"                [31.7506, 118.5106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_941da5aec1316bfc129e16efd6755f9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f288126a3da799b1423e04f2ede0557c = $(`&lt;div id=&quot;html_f288126a3da799b1423e04f2ede0557c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5106             latitude:31.7506             PM2_5:49.01256983             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_941da5aec1316bfc129e16efd6755f9e.setContent(html_f288126a3da799b1423e04f2ede0557c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_313fecc3c5c5cf19cfd99fc2e96cd3b7.bindPopup(popup_941da5aec1316bfc129e16efd6755f9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3f07532938bf65bea411c6088e50fe2 = L.circleMarker(\\n\",\n       \"                [26.1092, 119.299],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bdb6aa7f1ac909f731310c94edfcf1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_febc3acd54374d6ab168c60af735bc19 = $(`&lt;div id=&quot;html_febc3acd54374d6ab168c60af735bc19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.299             latitude:26.1092             PM2_5:26.66615854             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bdb6aa7f1ac909f731310c94edfcf1a.setContent(html_febc3acd54374d6ab168c60af735bc19);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3f07532938bf65bea411c6088e50fe2.bindPopup(popup_7bdb6aa7f1ac909f731310c94edfcf1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_019886440465469498e210e8c13cff78 = L.circleMarker(\\n\",\n       \"                [34.2749, 108.882],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b0c496426c359bbd37b7dcb373c0195 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a8789ad352af2ae851c53727bb671eb = $(`&lt;div id=&quot;html_1a8789ad352af2ae851c53727bb671eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.882             latitude:34.2749             PM2_5:66.98873239             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b0c496426c359bbd37b7dcb373c0195.setContent(html_1a8789ad352af2ae851c53727bb671eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_019886440465469498e210e8c13cff78.bindPopup(popup_3b0c496426c359bbd37b7dcb373c0195)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b71d5077100c2d001cd2c06c492d3a0b = L.circleMarker(\\n\",\n       \"                [41.9339, 123.6836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c162fd9b3e779d8bb233f753c4f58ee4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e205810e09a33153c0e4d5614f8b3720 = $(`&lt;div id=&quot;html_e205810e09a33153c0e4d5614f8b3720&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.6836             latitude:41.9339             PM2_5:26.52638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c162fd9b3e779d8bb233f753c4f58ee4.setContent(html_e205810e09a33153c0e4d5614f8b3720);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b71d5077100c2d001cd2c06c492d3a0b.bindPopup(popup_c162fd9b3e779d8bb233f753c4f58ee4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_426598e443fa57d83e7009b91747ffcb = L.circleMarker(\\n\",\n       \"                [30.3515, 112.2068],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7facab50fb5744e1ebeafb832dd13a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5164cade9dfae934833472cf84f91436 = $(`&lt;div id=&quot;html_5164cade9dfae934833472cf84f91436&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2068             latitude:30.3515             PM2_5:51.6056338             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7facab50fb5744e1ebeafb832dd13a6.setContent(html_5164cade9dfae934833472cf84f91436);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_426598e443fa57d83e7009b91747ffcb.bindPopup(popup_c7facab50fb5744e1ebeafb832dd13a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6487f33735e9b2f703754fd084b926e8 = L.circleMarker(\\n\",\n       \"                [42.0503, 121.6972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d49aeba108e864354dbcf40bf6f377b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98e71ca81431a3931da0578305530418 = $(`&lt;div id=&quot;html_98e71ca81431a3931da0578305530418&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6972             latitude:42.0503             PM2_5:24.87606838             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d49aeba108e864354dbcf40bf6f377b.setContent(html_98e71ca81431a3931da0578305530418);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6487f33735e9b2f703754fd084b926e8.bindPopup(popup_8d49aeba108e864354dbcf40bf6f377b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8515ec7d093308da073cb0ab6cf36d84 = L.circleMarker(\\n\",\n       \"                [34.2153, 117.256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad666f7a9b5938cd9afb9afb637c18bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19ab8765c636eadeda2045ccdfe64014 = $(`&lt;div id=&quot;html_19ab8765c636eadeda2045ccdfe64014&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.256             latitude:34.2153             PM2_5:58.55555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad666f7a9b5938cd9afb9afb637c18bf.setContent(html_19ab8765c636eadeda2045ccdfe64014);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8515ec7d093308da073cb0ab6cf36d84.bindPopup(popup_ad666f7a9b5938cd9afb9afb637c18bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38fbeac5f3d3c521b8c0d36bb944f70a = L.circleMarker(\\n\",\n       \"                [43.8947, 126.5786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cdb74fec6a24892932fec024e8c65355 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5fa5820e3f4a398460d6ae8426cfa76 = $(`&lt;div id=&quot;html_b5fa5820e3f4a398460d6ae8426cfa76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5786             latitude:43.8947             PM2_5:28.36768802             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cdb74fec6a24892932fec024e8c65355.setContent(html_b5fa5820e3f4a398460d6ae8426cfa76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38fbeac5f3d3c521b8c0d36bb944f70a.bindPopup(popup_cdb74fec6a24892932fec024e8c65355)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4fa13f85cb1329282de76414b039da35 = L.circleMarker(\\n\",\n       \"                [31.9051, 117.16],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b2e8f36dcadb8bef4e91d1bbf34da9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2552bcea6ab1ff4b602cb18b491fbf9 = $(`&lt;div id=&quot;html_a2552bcea6ab1ff4b602cb18b491fbf9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.16             latitude:31.9051             PM2_5:47.26264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b2e8f36dcadb8bef4e91d1bbf34da9d.setContent(html_a2552bcea6ab1ff4b602cb18b491fbf9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4fa13f85cb1329282de76414b039da35.bindPopup(popup_3b2e8f36dcadb8bef4e91d1bbf34da9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fb19fd6f382ca912d8cc44de0817936 = L.circleMarker(\\n\",\n       \"                [38.0513, 114.4548],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04fa3074d01c062d181c98f5fb70bc06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09f223116bfa59d602c502768a76d8de = $(`&lt;div id=&quot;html_09f223116bfa59d602c502768a76d8de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4548             latitude:38.0513             PM2_5:68.18472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04fa3074d01c062d181c98f5fb70bc06.setContent(html_09f223116bfa59d602c502768a76d8de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fb19fd6f382ca912d8cc44de0817936.bindPopup(popup_04fa3074d01c062d181c98f5fb70bc06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e83e58b1c2ceb017fdc6ab9a0f9606a5 = L.circleMarker(\\n\",\n       \"                [37.9648, 106.1532],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e01f8a059cf52fb802bb1f22d6b2e67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf00e5bb2c627e012a06e26e5ca16684 = $(`&lt;div id=&quot;html_bf00e5bb2c627e012a06e26e5ca16684&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1532             latitude:37.9648             PM2_5:36.54507042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e01f8a059cf52fb802bb1f22d6b2e67.setContent(html_bf00e5bb2c627e012a06e26e5ca16684);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e83e58b1c2ceb017fdc6ab9a0f9606a5.bindPopup(popup_1e01f8a059cf52fb802bb1f22d6b2e67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3709b9c52d90be7baca790c86c362667 = L.circleMarker(\\n\",\n       \"                [45.2978, 130.9298],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a63be7994a23fab97a3ce133e6e5467 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8afb89b38da73d628c2219e2c9ae868c = $(`&lt;div id=&quot;html_8afb89b38da73d628c2219e2c9ae868c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9298             latitude:45.2978             PM2_5:22.03703704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a63be7994a23fab97a3ce133e6e5467.setContent(html_8afb89b38da73d628c2219e2c9ae868c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3709b9c52d90be7baca790c86c362667.bindPopup(popup_9a63be7994a23fab97a3ce133e6e5467)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_931b2b4cb2effbc9f0ac3ecbdc1e5437 = L.circleMarker(\\n\",\n       \"                [31.2284, 121.533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afb3c53a0d80ea3eca3234939a0aaac4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_777bb183a9b8be6a330f1eaf89053f24 = $(`&lt;div id=&quot;html_777bb183a9b8be6a330f1eaf89053f24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.533             latitude:31.2284             PM2_5:39.66384181             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afb3c53a0d80ea3eca3234939a0aaac4.setContent(html_777bb183a9b8be6a330f1eaf89053f24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_931b2b4cb2effbc9f0ac3ecbdc1e5437.bindPopup(popup_afb3c53a0d80ea3eca3234939a0aaac4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e86cd7752b9866a94793d732678ec7f = L.circleMarker(\\n\",\n       \"                [39.6407, 118.1853],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_614c4233af2e5517597155da191fb9ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95ef19ea0e060b291d500c0efd71fe04 = $(`&lt;div id=&quot;html_95ef19ea0e060b291d500c0efd71fe04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1853             latitude:39.6407             PM2_5:50.95949721             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_614c4233af2e5517597155da191fb9ce.setContent(html_95ef19ea0e060b291d500c0efd71fe04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e86cd7752b9866a94793d732678ec7f.bindPopup(popup_614c4233af2e5517597155da191fb9ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d03ba1a0c7197dcd586c1d513a15824 = L.circleMarker(\\n\",\n       \"                [30.3055, 112.2887],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36c56a4644b0ff34dd793daf9facc586 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3189c806b01a0781b09be67006a17a11 = $(`&lt;div id=&quot;html_3189c806b01a0781b09be67006a17a11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2887             latitude:30.3055             PM2_5:55.24782609             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36c56a4644b0ff34dd793daf9facc586.setContent(html_3189c806b01a0781b09be67006a17a11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d03ba1a0c7197dcd586c1d513a15824.bindPopup(popup_36c56a4644b0ff34dd793daf9facc586)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c300a321094886b04bbbcb8f5ebc7d14 = L.circleMarker(\\n\",\n       \"                [35.7672, 115.0628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26ca57e4bc24faf615c2c33d9d28b90f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_41781df63659a6452b82c1d6d79fdb85 = $(`&lt;div id=&quot;html_41781df63659a6452b82c1d6d79fdb85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0628             latitude:35.7672             PM2_5:57.94301994             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26ca57e4bc24faf615c2c33d9d28b90f.setContent(html_41781df63659a6452b82c1d6d79fdb85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c300a321094886b04bbbcb8f5ebc7d14.bindPopup(popup_26ca57e4bc24faf615c2c33d9d28b90f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2f285e59283977fcad840e7539f3bc5 = L.circleMarker(\\n\",\n       \"                [30.9222, 117.8078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bdcf08e6656cffe30500eb37687d095a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57e30a2e4cac3366204213811d27c320 = $(`&lt;div id=&quot;html_57e30a2e4cac3366204213811d27c320&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8078             latitude:30.9222             PM2_5:57.00139276             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bdcf08e6656cffe30500eb37687d095a.setContent(html_57e30a2e4cac3366204213811d27c320);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2f285e59283977fcad840e7539f3bc5.bindPopup(popup_bdcf08e6656cffe30500eb37687d095a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1aec69520d2a5cba9949b4de8a03865c = L.circleMarker(\\n\",\n       \"                [31.4656, 104.6717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82aa124ca1af6f18ab7b6da94b2eaee4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fdbf485706953b133a8920175ac1f331 = $(`&lt;div id=&quot;html_fdbf485706953b133a8920175ac1f331&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6717             latitude:31.4656             PM2_5:48.23743017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82aa124ca1af6f18ab7b6da94b2eaee4.setContent(html_fdbf485706953b133a8920175ac1f331);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1aec69520d2a5cba9949b4de8a03865c.bindPopup(popup_82aa124ca1af6f18ab7b6da94b2eaee4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9deedfe0e9f0d0b46e26f65c8426498a = L.circleMarker(\\n\",\n       \"                [47.3489, 130.3172],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d83f6aa8e1a29f9e16fe83e69c323ea9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f13434129d55c4dc9e2d70721aba3310 = $(`&lt;div id=&quot;html_f13434129d55c4dc9e2d70721aba3310&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3172             latitude:47.3489             PM2_5:18.87857143             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d83f6aa8e1a29f9e16fe83e69c323ea9.setContent(html_f13434129d55c4dc9e2d70721aba3310);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9deedfe0e9f0d0b46e26f65c8426498a.bindPopup(popup_d83f6aa8e1a29f9e16fe83e69c323ea9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6956b0d0789d002b0f1ba7cd5bedbc23 = L.circleMarker(\\n\",\n       \"                [32.3153, 118.3094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7dfe23e3c248e6d1683de2e4d7a32ca1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04cc3ed600f77a9ca2bde3da867566af = $(`&lt;div id=&quot;html_04cc3ed600f77a9ca2bde3da867566af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3094             latitude:32.3153             PM2_5:50.79166667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7dfe23e3c248e6d1683de2e4d7a32ca1.setContent(html_04cc3ed600f77a9ca2bde3da867566af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6956b0d0789d002b0f1ba7cd5bedbc23.bindPopup(popup_7dfe23e3c248e6d1683de2e4d7a32ca1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67716038a905b2e3128b2c9d20a2fdd0 = L.circleMarker(\\n\",\n       \"                [29.7534, 116.0726],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3033f48bab44c1db73ac98e69f9e5c78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10a0efd3e1e14f6d8247f17b292d8b52 = $(`&lt;div id=&quot;html_10a0efd3e1e14f6d8247f17b292d8b52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0726             latitude:29.7534             PM2_5:44.47493036             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3033f48bab44c1db73ac98e69f9e5c78.setContent(html_10a0efd3e1e14f6d8247f17b292d8b52);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67716038a905b2e3128b2c9d20a2fdd0.bindPopup(popup_3033f48bab44c1db73ac98e69f9e5c78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d494456b8552b9b2c9ef40d910d57859 = L.circleMarker(\\n\",\n       \"                [35.0611, 111.0233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1182a49cd7303df70f179666144d72a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02c77a76d2294b74f636a1fb65fc3005 = $(`&lt;div id=&quot;html_02c77a76d2294b74f636a1fb65fc3005&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0233             latitude:35.0611             PM2_5:63.99438202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1182a49cd7303df70f179666144d72a1.setContent(html_02c77a76d2294b74f636a1fb65fc3005);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d494456b8552b9b2c9ef40d910d57859.bindPopup(popup_1182a49cd7303df70f179666144d72a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3637bb563360e7032c50b2166d33dc10 = L.circleMarker(\\n\",\n       \"                [30.4753, 114.1525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02fd0324b2d55d77f960881bedad5dcb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4999fbd2a53826eeda9861a81208f09d = $(`&lt;div id=&quot;html_4999fbd2a53826eeda9861a81208f09d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1525             latitude:30.4753             PM2_5:47.02089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02fd0324b2d55d77f960881bedad5dcb.setContent(html_4999fbd2a53826eeda9861a81208f09d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3637bb563360e7032c50b2166d33dc10.bindPopup(popup_02fd0324b2d55d77f960881bedad5dcb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a03e29ca1d625da1412c1670c5f7cbb6 = L.circleMarker(\\n\",\n       \"                [29.305, 120.091],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c98f9b9cbd087752da02c34b4c287d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72092de57374175b151dd18f23d97b13 = $(`&lt;div id=&quot;html_72092de57374175b151dd18f23d97b13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.091             latitude:29.305             PM2_5:32.27683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c98f9b9cbd087752da02c34b4c287d0.setContent(html_72092de57374175b151dd18f23d97b13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a03e29ca1d625da1412c1670c5f7cbb6.bindPopup(popup_7c98f9b9cbd087752da02c34b4c287d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac55813d9252f919f4684b81ac6edca8 = L.circleMarker(\\n\",\n       \"                [29.5844, 103.7627],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_829f68d1432a099b56e6f24908f3c2d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abd963a2abe468962691c69f64f153d1 = $(`&lt;div id=&quot;html_abd963a2abe468962691c69f64f153d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7627             latitude:29.5844             PM2_5:48.26880223             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_829f68d1432a099b56e6f24908f3c2d2.setContent(html_abd963a2abe468962691c69f64f153d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac55813d9252f919f4684b81ac6edca8.bindPopup(popup_829f68d1432a099b56e6f24908f3c2d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb57766b06347a14700775d2ba01e9ef = L.circleMarker(\\n\",\n       \"                [40.9733, 117.8184],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a56b2a19cd56ad70630121b9e377038 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebf8e98fdb064e6eab051cfc7d194f8b = $(`&lt;div id=&quot;html_ebf8e98fdb064e6eab051cfc7d194f8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8184             latitude:40.9733             PM2_5:26.00983146             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a56b2a19cd56ad70630121b9e377038.setContent(html_ebf8e98fdb064e6eab051cfc7d194f8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb57766b06347a14700775d2ba01e9ef.bindPopup(popup_0a56b2a19cd56ad70630121b9e377038)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f15df2824d8c44543c54c8e5df61374f = L.circleMarker(\\n\",\n       \"                [31.3508, 118.3528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8082528151378b404a75eb10c24a7ff0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cededf2bf4bc550e1a486823f3e75f92 = $(`&lt;div id=&quot;html_cededf2bf4bc550e1a486823f3e75f92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3528             latitude:31.3508             PM2_5:46.87988827             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8082528151378b404a75eb10c24a7ff0.setContent(html_cededf2bf4bc550e1a486823f3e75f92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f15df2824d8c44543c54c8e5df61374f.bindPopup(popup_8082528151378b404a75eb10c24a7ff0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7aea0a0be6a4184c60f0ad32223aa8f = L.circleMarker(\\n\",\n       \"                [30.6617, 117.4697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_478c7880da68183552d6c63e3c246e84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_873740ab63f517ffbe5e21a006954471 = $(`&lt;div id=&quot;html_873740ab63f517ffbe5e21a006954471&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4697             latitude:30.6617             PM2_5:48.46561605             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_478c7880da68183552d6c63e3c246e84.setContent(html_873740ab63f517ffbe5e21a006954471);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7aea0a0be6a4184c60f0ad32223aa8f.bindPopup(popup_478c7880da68183552d6c63e3c246e84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba76fbf6a536f1025f03be733ebeb70b = L.circleMarker(\\n\",\n       \"                [35.5461, 106.6692],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27582c3984a7baa7dea9a13335f2c82a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7cee3a72756c4031f290699435be66e1 = $(`&lt;div id=&quot;html_7cee3a72756c4031f290699435be66e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6692             latitude:35.5461             PM2_5:25.28169014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27582c3984a7baa7dea9a13335f2c82a.setContent(html_7cee3a72756c4031f290699435be66e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba76fbf6a536f1025f03be733ebeb70b.bindPopup(popup_27582c3984a7baa7dea9a13335f2c82a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f44dccb1924ef3aa087c425b8bc42eb = L.circleMarker(\\n\",\n       \"                [27.1311, 114.99],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f15969eef5a249b93ca82938d933614 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4345264fcc7e0b6ef2390681a4682c1e = $(`&lt;div id=&quot;html_4345264fcc7e0b6ef2390681a4682c1e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.99             latitude:27.1311             PM2_5:51.25626741             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f15969eef5a249b93ca82938d933614.setContent(html_4345264fcc7e0b6ef2390681a4682c1e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f44dccb1924ef3aa087c425b8bc42eb.bindPopup(popup_7f15969eef5a249b93ca82938d933614)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb5b6228e88ba40c259e7da7a920eb86 = L.circleMarker(\\n\",\n       \"                [33.5979, 114.6546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b1d832afd65ca86476f4ddf61b0f407 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac51ec40f393a9118e9ee286f94b206a = $(`&lt;div id=&quot;html_ac51ec40f393a9118e9ee286f94b206a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6546             latitude:33.5979             PM2_5:50.46760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b1d832afd65ca86476f4ddf61b0f407.setContent(html_ac51ec40f393a9118e9ee286f94b206a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb5b6228e88ba40c259e7da7a920eb86.bindPopup(popup_6b1d832afd65ca86476f4ddf61b0f407)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2a84e2ecdcda8d417c50c1a7d044d01 = L.circleMarker(\\n\",\n       \"                [27.725, 111.9975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c69658f60d7b02f7c6a98d165e74d172 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f88304c6286bca1ed452cbefcb9c5b6 = $(`&lt;div id=&quot;html_8f88304c6286bca1ed452cbefcb9c5b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9975             latitude:27.725             PM2_5:26.00668896             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c69658f60d7b02f7c6a98d165e74d172.setContent(html_8f88304c6286bca1ed452cbefcb9c5b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2a84e2ecdcda8d417c50c1a7d044d01.bindPopup(popup_c69658f60d7b02f7c6a98d165e74d172)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19b6e9e4b963217ff9e6a65a3bd0dd00 = L.circleMarker(\\n\",\n       \"                [27.8728, 112.8937],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe038e8270958763531923483e37e3aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9494c17976b4381e6b5352e5dfd8b3c4 = $(`&lt;div id=&quot;html_9494c17976b4381e6b5352e5dfd8b3c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8937             latitude:27.8728             PM2_5:45.97638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe038e8270958763531923483e37e3aa.setContent(html_9494c17976b4381e6b5352e5dfd8b3c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19b6e9e4b963217ff9e6a65a3bd0dd00.bindPopup(popup_fe038e8270958763531923483e37e3aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28eb05dbbb200fb5fa4c5e477b9d24c6 = L.circleMarker(\\n\",\n       \"                [30.0125, 103.009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce547f9175088eac701d413a1c73af32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aefa79fc16acb181da5afcf7d5eb4697 = $(`&lt;div id=&quot;html_aefa79fc16acb181da5afcf7d5eb4697&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.009             latitude:30.0125             PM2_5:50.64428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce547f9175088eac701d413a1c73af32.setContent(html_aefa79fc16acb181da5afcf7d5eb4697);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28eb05dbbb200fb5fa4c5e477b9d24c6.bindPopup(popup_ce547f9175088eac701d413a1c73af32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_570e7c6dfea52b2d43a12cb625bb5976 = L.circleMarker(\\n\",\n       \"                [27.8042, 114.9119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d311d6912bb124169c68901b2351c995 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d670e95fc1eec1311c70b780f258a29 = $(`&lt;div id=&quot;html_9d670e95fc1eec1311c70b780f258a29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9119             latitude:27.8042             PM2_5:46.45056497             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d311d6912bb124169c68901b2351c995.setContent(html_9d670e95fc1eec1311c70b780f258a29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_570e7c6dfea52b2d43a12cb625bb5976.bindPopup(popup_d311d6912bb124169c68901b2351c995)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a0886a097b55cb87ff913ad1899ba06 = L.circleMarker(\\n\",\n       \"                [40.1503, 124.4256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02995712165790704740bce91ee3a138 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3752381936b7714b1246efb25b02652f = $(`&lt;div id=&quot;html_3752381936b7714b1246efb25b02652f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.4256             latitude:40.1503             PM2_5:21.48735955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02995712165790704740bce91ee3a138.setContent(html_3752381936b7714b1246efb25b02652f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a0886a097b55cb87ff913ad1899ba06.bindPopup(popup_02995712165790704740bce91ee3a138)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69e432106e20260cd3de2717e396a774 = L.circleMarker(\\n\",\n       \"                [30.4865, 106.6351],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_295ad5c647031776f5c34e0ae8200e12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d0001c5e71b2b0c1b8524e0f46eaca0 = $(`&lt;div id=&quot;html_6d0001c5e71b2b0c1b8524e0f46eaca0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6351             latitude:30.4865             PM2_5:37.19359331             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_295ad5c647031776f5c34e0ae8200e12.setContent(html_6d0001c5e71b2b0c1b8524e0f46eaca0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69e432106e20260cd3de2717e396a774.bindPopup(popup_295ad5c647031776f5c34e0ae8200e12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a05c7e18c66b494ed8346397181d9841 = L.circleMarker(\\n\",\n       \"                [30.698, 111.2992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f5c71d6bc2abfb3b117988774a7f019 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01de399dab32c84a234819e4b11df330 = $(`&lt;div id=&quot;html_01de399dab32c84a234819e4b11df330&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2992             latitude:30.698             PM2_5:59.28888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f5c71d6bc2abfb3b117988774a7f019.setContent(html_01de399dab32c84a234819e4b11df330);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a05c7e18c66b494ed8346397181d9841.bindPopup(popup_6f5c71d6bc2abfb3b117988774a7f019)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ed867fe0d4c109210804b637f7f4675 = L.circleMarker(\\n\",\n       \"                [35.546, 112.8453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9fc522341bf0e62078405a72ede3f91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0be6cd06b527fc5f2b672813c50a02fb = $(`&lt;div id=&quot;html_0be6cd06b527fc5f2b672813c50a02fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8453             latitude:35.546             PM2_5:54.41501416             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9fc522341bf0e62078405a72ede3f91.setContent(html_0be6cd06b527fc5f2b672813c50a02fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ed867fe0d4c109210804b637f7f4675.bindPopup(popup_b9fc522341bf0e62078405a72ede3f91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3f96fb8704ba4cf5f882e549f8fb910 = L.circleMarker(\\n\",\n       \"                [34.2713, 108.954],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_712b27931916d99947842c3fd91a8449 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac1efec8f97169f6b3e0676aa6b7160f = $(`&lt;div id=&quot;html_ac1efec8f97169f6b3e0676aa6b7160f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.954             latitude:34.2713             PM2_5:69.81284916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_712b27931916d99947842c3fd91a8449.setContent(html_ac1efec8f97169f6b3e0676aa6b7160f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3f96fb8704ba4cf5f882e549f8fb910.bindPopup(popup_712b27931916d99947842c3fd91a8449)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7ff2fef98a805b6c981aa4953b37a82 = L.circleMarker(\\n\",\n       \"                [39.6679, 118.2185],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8517d8c868cc0630f53678de4770c5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ba181cf9d570ef373f260074f803ae4 = $(`&lt;div id=&quot;html_6ba181cf9d570ef373f260074f803ae4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2185             latitude:39.6679             PM2_5:49.28212291             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8517d8c868cc0630f53678de4770c5a.setContent(html_6ba181cf9d570ef373f260074f803ae4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7ff2fef98a805b6c981aa4953b37a82.bindPopup(popup_f8517d8c868cc0630f53678de4770c5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93d262344fd6f30b2002f78b5874ad29 = L.circleMarker(\\n\",\n       \"                [32.1078, 114.1044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66051d2800ad6494854d052206bb25ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b7a44923786d6e8f855ac67c0d99e9d = $(`&lt;div id=&quot;html_2b7a44923786d6e8f855ac67c0d99e9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1044             latitude:32.1078             PM2_5:50.29519774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66051d2800ad6494854d052206bb25ea.setContent(html_2b7a44923786d6e8f855ac67c0d99e9d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93d262344fd6f30b2002f78b5874ad29.bindPopup(popup_66051d2800ad6494854d052206bb25ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f19b54cc341bf34bc686c549617fe4b5 = L.circleMarker(\\n\",\n       \"                [45.7733, 126.689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d6ac9d3a6d052f8320f20358be5e80e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_476908f28c612d020cfb570364a499d7 = $(`&lt;div id=&quot;html_476908f28c612d020cfb570364a499d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.689             latitude:45.7733             PM2_5:34.81805556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d6ac9d3a6d052f8320f20358be5e80e.setContent(html_476908f28c612d020cfb570364a499d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f19b54cc341bf34bc686c549617fe4b5.bindPopup(popup_4d6ac9d3a6d052f8320f20358be5e80e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_efa38cd4f999a490c32adb059dbc720e = L.circleMarker(\\n\",\n       \"                [23.0528, 114.4183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2587f51b66dc138e69fdb82c9ec6eb3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8fd1c95765ba938386ac3228f9b8cdc = $(`&lt;div id=&quot;html_e8fd1c95765ba938386ac3228f9b8cdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4183             latitude:23.0528             PM2_5:27.9902507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2587f51b66dc138e69fdb82c9ec6eb3.setContent(html_e8fd1c95765ba938386ac3228f9b8cdc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_efa38cd4f999a490c32adb059dbc720e.bindPopup(popup_f2587f51b66dc138e69fdb82c9ec6eb3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ccf70e9e78648f4d936f45222ec28097 = L.circleMarker(\\n\",\n       \"                [37.809, 120.773],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0842e7dd57b265b5628d929af7dc615f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8de78ed3c1c1a47a4919582216d3ef21 = $(`&lt;div id=&quot;html_8de78ed3c1c1a47a4919582216d3ef21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.773             latitude:37.809             PM2_5:28.17908309             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0842e7dd57b265b5628d929af7dc615f.setContent(html_8de78ed3c1c1a47a4919582216d3ef21);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ccf70e9e78648f4d936f45222ec28097.bindPopup(popup_0842e7dd57b265b5628d929af7dc615f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d188cc6e77f5798ae249df81d61e468 = L.circleMarker(\\n\",\n       \"                [33.6128, 114.6613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e04b81bef9f0edeb2537dd2937172fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60ee309356f54cede32b58378e58cd79 = $(`&lt;div id=&quot;html_60ee309356f54cede32b58378e58cd79&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6613             latitude:33.6128             PM2_5:51.95903955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e04b81bef9f0edeb2537dd2937172fa.setContent(html_60ee309356f54cede32b58378e58cd79);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d188cc6e77f5798ae249df81d61e468.bindPopup(popup_2e04b81bef9f0edeb2537dd2937172fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f1c149c10a069fd87700d21f1046b68 = L.circleMarker(\\n\",\n       \"                [41.0112, 117.9384],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f02dd40a4c96f0c2b5936c3963fb8b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4089515808ff3f1651138924314033fa = $(`&lt;div id=&quot;html_4089515808ff3f1651138924314033fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9384             latitude:41.0112             PM2_5:27.04519774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f02dd40a4c96f0c2b5936c3963fb8b5.setContent(html_4089515808ff3f1651138924314033fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f1c149c10a069fd87700d21f1046b68.bindPopup(popup_0f02dd40a4c96f0c2b5936c3963fb8b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b11ad60535982ffeab36318eb26b3691 = L.circleMarker(\\n\",\n       \"                [40.8452, 111.659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4fad6a2d92ce341d334f11de4fd3f9b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9bc56477f4f11ca2ca81dacb4882dcde = $(`&lt;div id=&quot;html_9bc56477f4f11ca2ca81dacb4882dcde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.659             latitude:40.8452             PM2_5:36.20612813             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4fad6a2d92ce341d334f11de4fd3f9b0.setContent(html_9bc56477f4f11ca2ca81dacb4882dcde);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b11ad60535982ffeab36318eb26b3691.bindPopup(popup_4fad6a2d92ce341d334f11de4fd3f9b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c307cfb32ed6761136aa5690decf0fd3 = L.circleMarker(\\n\",\n       \"                [34.2572, 109.06],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_534aefc2311d8ec13b239ff9584cb30c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36dcc974b210172cf5a6eda6839d0176 = $(`&lt;div id=&quot;html_36dcc974b210172cf5a6eda6839d0176&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.06             latitude:34.2572             PM2_5:67.61647727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_534aefc2311d8ec13b239ff9584cb30c.setContent(html_36dcc974b210172cf5a6eda6839d0176);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c307cfb32ed6761136aa5690decf0fd3.bindPopup(popup_534aefc2311d8ec13b239ff9584cb30c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6fa5517d4f15ec05a96db65965a17d29 = L.circleMarker(\\n\",\n       \"                [38.03777778, 114.5480556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0daea7d3280d4801ec7965280b9da159 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a79ff5484600f99764218ef8a470a80a = $(`&lt;div id=&quot;html_a79ff5484600f99764218ef8a470a80a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5480556             latitude:38.03777778             PM2_5:68.15266106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0daea7d3280d4801ec7965280b9da159.setContent(html_a79ff5484600f99764218ef8a470a80a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6fa5517d4f15ec05a96db65965a17d29.bindPopup(popup_0daea7d3280d4801ec7965280b9da159)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5022d056322c1ee4613725438b8948e8 = L.circleMarker(\\n\",\n       \"                [26.2081, 111.6217],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2dfb03f1719ec6002cbbf13016f6aa29 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0058fec4042966a5807dc224d0951d11 = $(`&lt;div id=&quot;html_0058fec4042966a5807dc224d0951d11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6217             latitude:26.2081             PM2_5:37.14595376             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2dfb03f1719ec6002cbbf13016f6aa29.setContent(html_0058fec4042966a5807dc224d0951d11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5022d056322c1ee4613725438b8948e8.bindPopup(popup_2dfb03f1719ec6002cbbf13016f6aa29)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46f92c16f2466f03657a56208dde0f60 = L.circleMarker(\\n\",\n       \"                [22.8322, 100.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3905760c9fe8592ed70c86a2009a50b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_552a081bae9d9cb5bd7f5e3b7d213c6d = $(`&lt;div id=&quot;html_552a081bae9d9cb5bd7f5e3b7d213c6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.9817             latitude:22.8322             PM2_5:19.05694444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3905760c9fe8592ed70c86a2009a50b9.setContent(html_552a081bae9d9cb5bd7f5e3b7d213c6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46f92c16f2466f03657a56208dde0f60.bindPopup(popup_3905760c9fe8592ed70c86a2009a50b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_384b593b614fc754d99207314a558429 = L.circleMarker(\\n\",\n       \"                [27.3033, 111.5239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29d35b24edf74e139cfe4067ed2f9bff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21c13ba580067c373fb0526272912c94 = $(`&lt;div id=&quot;html_21c13ba580067c373fb0526272912c94&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5239             latitude:27.3033             PM2_5:42.53539823             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29d35b24edf74e139cfe4067ed2f9bff.setContent(html_21c13ba580067c373fb0526272912c94);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_384b593b614fc754d99207314a558429.bindPopup(popup_29d35b24edf74e139cfe4067ed2f9bff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4492cf012603b7a43331dcc59d07ac51 = L.circleMarker(\\n\",\n       \"                [30.5947, 114.3008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ad9bdaae0d98064bbe7371a920190b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b2e7816835ece9224217f18d4f1e90d = $(`&lt;div id=&quot;html_5b2e7816835ece9224217f18d4f1e90d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3008             latitude:30.5947             PM2_5:45.17222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ad9bdaae0d98064bbe7371a920190b1.setContent(html_5b2e7816835ece9224217f18d4f1e90d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4492cf012603b7a43331dcc59d07ac51.bindPopup(popup_6ad9bdaae0d98064bbe7371a920190b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95e985ddb2cce800fcc9684c1b35baab = L.circleMarker(\\n\",\n       \"                [30.2997, 113.8531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b27deb3f70f741c84e95e784cf016502 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2328dfc0a8321a283d7885689d0c0d30 = $(`&lt;div id=&quot;html_2328dfc0a8321a283d7885689d0c0d30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8531             latitude:30.2997             PM2_5:43.25073314             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b27deb3f70f741c84e95e784cf016502.setContent(html_2328dfc0a8321a283d7885689d0c0d30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95e985ddb2cce800fcc9684c1b35baab.bindPopup(popup_b27deb3f70f741c84e95e784cf016502)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d74357e498e198bd3d68a4fa842b6f19 = L.circleMarker(\\n\",\n       \"                [27.7297, 109.1916],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63c6b86149a9f91968ea742bf66c2479 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8297e5ebe27411b129c670d44d13a6b0 = $(`&lt;div id=&quot;html_8297e5ebe27411b129c670d44d13a6b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.1916             latitude:27.7297             PM2_5:23.85416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63c6b86149a9f91968ea742bf66c2479.setContent(html_8297e5ebe27411b129c670d44d13a6b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d74357e498e198bd3d68a4fa842b6f19.bindPopup(popup_63c6b86149a9f91968ea742bf66c2479)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31cafbf15d01f69c85a2c8ee9f817483 = L.circleMarker(\\n\",\n       \"                [30.2366, 119.7183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_881be0919be1b8cdc79d118420a09c00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ef1a5075200f024e3f786dbca02feea = $(`&lt;div id=&quot;html_9ef1a5075200f024e3f786dbca02feea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7183             latitude:30.2366             PM2_5:32.08100559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_881be0919be1b8cdc79d118420a09c00.setContent(html_9ef1a5075200f024e3f786dbca02feea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31cafbf15d01f69c85a2c8ee9f817483.bindPopup(popup_881be0919be1b8cdc79d118420a09c00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3cab587bf3923dd43e3acadbad346dee = L.circleMarker(\\n\",\n       \"                [36.2289, 117.6789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_151906abf3f8c926947d04864e725387 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ee4e09c9e35582cc99df8ce6ec9c8cc = $(`&lt;div id=&quot;html_6ee4e09c9e35582cc99df8ce6ec9c8cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6789             latitude:36.2289             PM2_5:49.29411765             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_151906abf3f8c926947d04864e725387.setContent(html_6ee4e09c9e35582cc99df8ce6ec9c8cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3cab587bf3923dd43e3acadbad346dee.bindPopup(popup_151906abf3f8c926947d04864e725387)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a46d83bd63cc8491a93381e43417010e = L.circleMarker(\\n\",\n       \"                [38.80805556, 121.2588889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a193de39aacd7d5ac492e3ecf21088a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_063862ca766e1595cc9ea36c49493736 = $(`&lt;div id=&quot;html_063862ca766e1595cc9ea36c49493736&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2588889             latitude:38.80805556             PM2_5:26.59773371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a193de39aacd7d5ac492e3ecf21088a.setContent(html_063862ca766e1595cc9ea36c49493736);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a46d83bd63cc8491a93381e43417010e.bindPopup(popup_9a193de39aacd7d5ac492e3ecf21088a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_961b4ace27d9f92db3ba8e2a041f612f = L.circleMarker(\\n\",\n       \"                [39.0927, 117.202],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13bf75a1fb0b0cb0687719c197fa647e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d89c5c8616f8b8209e1f003747af435 = $(`&lt;div id=&quot;html_5d89c5c8616f8b8209e1f003747af435&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.202             latitude:39.0927             PM2_5:50.48033708             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13bf75a1fb0b0cb0687719c197fa647e.setContent(html_5d89c5c8616f8b8209e1f003747af435);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_961b4ace27d9f92db3ba8e2a041f612f.bindPopup(popup_13bf75a1fb0b0cb0687719c197fa647e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef7005c1f230ef0365d6ba53ab05f0aa = L.circleMarker(\\n\",\n       \"                [30.21, 120.211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66adc7ff9bfa4b362b92af9965b46c84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7c663d18766bf259f30e0c58e422c00 = $(`&lt;div id=&quot;html_a7c663d18766bf259f30e0c58e422c00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.211             latitude:30.21             PM2_5:38.86072423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66adc7ff9bfa4b362b92af9965b46c84.setContent(html_a7c663d18766bf259f30e0c58e422c00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef7005c1f230ef0365d6ba53ab05f0aa.bindPopup(popup_66adc7ff9bfa4b362b92af9965b46c84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18917b49efbc5f6dc639d678f5017329 = L.circleMarker(\\n\",\n       \"                [33.4022, 120.118],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8154442994dfd99ebb9ba1290c9daad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0cfe537f573f9a9bddb940d081844c9c = $(`&lt;div id=&quot;html_0cfe537f573f9a9bddb940d081844c9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.118             latitude:33.4022             PM2_5:41.83611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8154442994dfd99ebb9ba1290c9daad.setContent(html_0cfe537f573f9a9bddb940d081844c9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18917b49efbc5f6dc639d678f5017329.bindPopup(popup_f8154442994dfd99ebb9ba1290c9daad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_874ae6ab76acf742823423efc51ebfb1 = L.circleMarker(\\n\",\n       \"                [31.737, 119.579],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db7dc1f582478f83b16c35311b8d35f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_373b3bed9e66773b20ad407c165af6f3 = $(`&lt;div id=&quot;html_373b3bed9e66773b20ad407c165af6f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.579             latitude:31.737             PM2_5:43.87361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db7dc1f582478f83b16c35311b8d35f2.setContent(html_373b3bed9e66773b20ad407c165af6f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_874ae6ab76acf742823423efc51ebfb1.bindPopup(popup_db7dc1f582478f83b16c35311b8d35f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d39cc5e0f6bbd2006937f5d1b3c145fa = L.circleMarker(\\n\",\n       \"                [38.0524, 114.5214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f29ec68914a1039958b1994d1224b49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_894251057e0b87d220528511f9f9ff6a = $(`&lt;div id=&quot;html_894251057e0b87d220528511f9f9ff6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5214             latitude:38.0524             PM2_5:75.23955432             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f29ec68914a1039958b1994d1224b49.setContent(html_894251057e0b87d220528511f9f9ff6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d39cc5e0f6bbd2006937f5d1b3c145fa.bindPopup(popup_6f29ec68914a1039958b1994d1224b49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2224cdf64c13f4c58e49d1a65f2527cd = L.circleMarker(\\n\",\n       \"                [39.6969, 106.8089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2f58c1f415febfb3efa022b94c3ffba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98f018284bf81b966936a5b102912fc9 = $(`&lt;div id=&quot;html_98f018284bf81b966936a5b102912fc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8089             latitude:39.6969             PM2_5:36.94972067             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2f58c1f415febfb3efa022b94c3ffba.setContent(html_98f018284bf81b966936a5b102912fc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2224cdf64c13f4c58e49d1a65f2527cd.bindPopup(popup_e2f58c1f415febfb3efa022b94c3ffba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bca7d64e21007e6e94634d2602b5a268 = L.circleMarker(\\n\",\n       \"                [29.2365, 88.8931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b24687ba9cad84862dd79f4a69b5f78a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb726ff2db3155c7f7ccfda31100ba19 = $(`&lt;div id=&quot;html_bb726ff2db3155c7f7ccfda31100ba19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.8931             latitude:29.2365             PM2_5:7.04398827             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b24687ba9cad84862dd79f4a69b5f78a.setContent(html_bb726ff2db3155c7f7ccfda31100ba19);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bca7d64e21007e6e94634d2602b5a268.bindPopup(popup_b24687ba9cad84862dd79f4a69b5f78a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f80b2b61e56eebfbe0e98085338a614 = L.circleMarker(\\n\",\n       \"                [30.696, 111.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2173c3eaeb5abf0246369f12b26ff43c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ec712550dd9cb29dea652331a138cce = $(`&lt;div id=&quot;html_6ec712550dd9cb29dea652331a138cce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.268             latitude:30.696             PM2_5:53.72980501             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2173c3eaeb5abf0246369f12b26ff43c.setContent(html_6ec712550dd9cb29dea652331a138cce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f80b2b61e56eebfbe0e98085338a614.bindPopup(popup_2173c3eaeb5abf0246369f12b26ff43c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_109a327f5406b4e72faabbc31cb0046e = L.circleMarker(\\n\",\n       \"                [27.5342, 109.9792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be3106641959c252398463c022a24be3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f7e9655abead0c128a4bf09155f7768 = $(`&lt;div id=&quot;html_9f7e9655abead0c128a4bf09155f7768&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9792             latitude:27.5342             PM2_5:39.37083333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be3106641959c252398463c022a24be3.setContent(html_9f7e9655abead0c128a4bf09155f7768);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_109a327f5406b4e72faabbc31cb0046e.bindPopup(popup_be3106641959c252398463c022a24be3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9cda5fca810e98ae2c5fbd274f18ed0 = L.circleMarker(\\n\",\n       \"                [34.7538, 113.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_171f06a31f04e56ee805f84e2724dc59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_334a3b04cde6959cf9e5f4b5b0219423 = $(`&lt;div id=&quot;html_334a3b04cde6959cf9e5f4b5b0219423&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6356             latitude:34.7538             PM2_5:63.08240223             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_171f06a31f04e56ee805f84e2724dc59.setContent(html_334a3b04cde6959cf9e5f4b5b0219423);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9cda5fca810e98ae2c5fbd274f18ed0.bindPopup(popup_171f06a31f04e56ee805f84e2724dc59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a44eeb48911950a83b0ca4c522c3ebc = L.circleMarker(\\n\",\n       \"                [27.8847, 102.2689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46c237a54253f722b51df002e0b389ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_702c25dce8ba057f893fccd0c45e3a26 = $(`&lt;div id=&quot;html_702c25dce8ba057f893fccd0c45e3a26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2689             latitude:27.8847             PM2_5:22.76470588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46c237a54253f722b51df002e0b389ed.setContent(html_702c25dce8ba057f893fccd0c45e3a26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a44eeb48911950a83b0ca4c522c3ebc.bindPopup(popup_46c237a54253f722b51df002e0b389ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25ab226c53c907f7375194b00f982188 = L.circleMarker(\\n\",\n       \"                [28.2264, 117.0222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b00b3ffaf7b31b117b55b341d09070af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b57943f035786f9eea135707a1e76c6 = $(`&lt;div id=&quot;html_6b57943f035786f9eea135707a1e76c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0222             latitude:28.2264             PM2_5:34.38687151             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b00b3ffaf7b31b117b55b341d09070af.setContent(html_6b57943f035786f9eea135707a1e76c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25ab226c53c907f7375194b00f982188.bindPopup(popup_b00b3ffaf7b31b117b55b341d09070af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc214e9cf49e3c37c8a4858a18721baf = L.circleMarker(\\n\",\n       \"                [25.8071, 113.0383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_647096c2429ae022f4ae0fba6104829c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9745b298b1ab2269c50687136233830e = $(`&lt;div id=&quot;html_9745b298b1ab2269c50687136233830e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0383             latitude:25.8071             PM2_5:32.6800554             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_647096c2429ae022f4ae0fba6104829c.setContent(html_9745b298b1ab2269c50687136233830e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc214e9cf49e3c37c8a4858a18721baf.bindPopup(popup_647096c2429ae022f4ae0fba6104829c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e88d00e15f0512457d8e378eb1e86af5 = L.circleMarker(\\n\",\n       \"                [34.3672, 107.1906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5808a920c3f4e937ccf8915bafe8fae9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5596e57a8ca428f40fc399531447a735 = $(`&lt;div id=&quot;html_5596e57a8ca428f40fc399531447a735&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1906             latitude:34.3672             PM2_5:50.35434174             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5808a920c3f4e937ccf8915bafe8fae9.setContent(html_5596e57a8ca428f40fc399531447a735);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e88d00e15f0512457d8e378eb1e86af5.bindPopup(popup_5808a920c3f4e937ccf8915bafe8fae9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9c84386a41470c62475cd2ff8074e77 = L.circleMarker(\\n\",\n       \"                [37.161, 122.41],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4511ad1488138c35ca553ad2fdfd30ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52ff3c70298fb3306c5deb236852b374 = $(`&lt;div id=&quot;html_52ff3c70298fb3306c5deb236852b374&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.41             latitude:37.161             PM2_5:18.70396601             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4511ad1488138c35ca553ad2fdfd30ee.setContent(html_52ff3c70298fb3306c5deb236852b374);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9c84386a41470c62475cd2ff8074e77.bindPopup(popup_4511ad1488138c35ca553ad2fdfd30ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_421d07e248c8a9decff4292c78390e97 = L.circleMarker(\\n\",\n       \"                [38.97388889, 121.6119444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7581814a8ff84936b7fd08dd58277bdf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a07c5e3f4bb14c310b8a16a910516b6a = $(`&lt;div id=&quot;html_a07c5e3f4bb14c310b8a16a910516b6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6119444             latitude:38.97388889             PM2_5:30.28830084             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7581814a8ff84936b7fd08dd58277bdf.setContent(html_a07c5e3f4bb14c310b8a16a910516b6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_421d07e248c8a9decff4292c78390e97.bindPopup(popup_7581814a8ff84936b7fd08dd58277bdf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9aa2c4522e4b92c0d51e20d047a68a1 = L.circleMarker(\\n\",\n       \"                [26.0542, 119.389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58440dee28b27f34b2631d95fddf3097 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_75ff0d2c995cc53941f53bb16d8fb5de = $(`&lt;div id=&quot;html_75ff0d2c995cc53941f53bb16d8fb5de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.389             latitude:26.0542             PM2_5:24.21186441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58440dee28b27f34b2631d95fddf3097.setContent(html_75ff0d2c995cc53941f53bb16d8fb5de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9aa2c4522e4b92c0d51e20d047a68a1.bindPopup(popup_58440dee28b27f34b2631d95fddf3097)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_392aaa90541cc8cfd0f10256c8d77342 = L.circleMarker(\\n\",\n       \"                [36.5458, 104.1731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_060e4fd6621c0f056df0c576b9f69826 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05cd6965dc40e9418110ab30f6daf7ab = $(`&lt;div id=&quot;html_05cd6965dc40e9418110ab30f6daf7ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1731             latitude:36.5458             PM2_5:42.94827586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_060e4fd6621c0f056df0c576b9f69826.setContent(html_05cd6965dc40e9418110ab30f6daf7ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_392aaa90541cc8cfd0f10256c8d77342.bindPopup(popup_060e4fd6621c0f056df0c576b9f69826)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ee8e6d73d66db3397ac31fa93ab3114 = L.circleMarker(\\n\",\n       \"                [21.6828, 110.8592],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_216f3a044e61435eb0200808528c1bf5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab1e733ce3e13986c67ce5bd650ee6a4 = $(`&lt;div id=&quot;html_ab1e733ce3e13986c67ce5bd650ee6a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.8592             latitude:21.6828             PM2_5:29.20142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_216f3a044e61435eb0200808528c1bf5.setContent(html_ab1e733ce3e13986c67ce5bd650ee6a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ee8e6d73d66db3397ac31fa93ab3114.bindPopup(popup_216f3a044e61435eb0200808528c1bf5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90c5db162fa812a8f0bec9cdc2766b8a = L.circleMarker(\\n\",\n       \"                [27.5444, 109.9453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41b776ba366cedb8a0b63c5c8821637b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_999c46843b73124496afa1ec799313ca = $(`&lt;div id=&quot;html_999c46843b73124496afa1ec799313ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9453             latitude:27.5444             PM2_5:36.36023055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41b776ba366cedb8a0b63c5c8821637b.setContent(html_999c46843b73124496afa1ec799313ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90c5db162fa812a8f0bec9cdc2766b8a.bindPopup(popup_41b776ba366cedb8a0b63c5c8821637b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc4bd62772bc0e76284ef583506eeba0 = L.circleMarker(\\n\",\n       \"                [30.2989, 109.5039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce11bc0dfd8d0d315cd708ae0cc8ebcc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2fcdce644c78352afb9a03cdcd91b33 = $(`&lt;div id=&quot;html_d2fcdce644c78352afb9a03cdcd91b33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5039             latitude:30.2989             PM2_5:41.26966292             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce11bc0dfd8d0d315cd708ae0cc8ebcc.setContent(html_d2fcdce644c78352afb9a03cdcd91b33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc4bd62772bc0e76284ef583506eeba0.bindPopup(popup_ce11bc0dfd8d0d315cd708ae0cc8ebcc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82c7382d47797c5d79dcf1584f7cb8bc = L.circleMarker(\\n\",\n       \"                [25.8567, 98.8601],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7042d5e2e0b227892189aca1bb292614 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_955a32d1f062fcbd36acde6dc79a0dbc = $(`&lt;div id=&quot;html_955a32d1f062fcbd36acde6dc79a0dbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.8601             latitude:25.8567             PM2_5:19.85755814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7042d5e2e0b227892189aca1bb292614.setContent(html_955a32d1f062fcbd36acde6dc79a0dbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82c7382d47797c5d79dcf1584f7cb8bc.bindPopup(popup_7042d5e2e0b227892189aca1bb292614)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a0ef58330b2599d5be97f73128820a8 = L.circleMarker(\\n\",\n       \"                [21.9667, 108.6236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c50806f456ec1578e49c2b5fc6a2e043 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90ca5e73eee5b6ac9b8989e4b14410b5 = $(`&lt;div id=&quot;html_90ca5e73eee5b6ac9b8989e4b14410b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6236             latitude:21.9667             PM2_5:28.71488764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c50806f456ec1578e49c2b5fc6a2e043.setContent(html_90ca5e73eee5b6ac9b8989e4b14410b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a0ef58330b2599d5be97f73128820a8.bindPopup(popup_c50806f456ec1578e49c2b5fc6a2e043)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1039826a52e3b1d88c506943d7dd837 = L.circleMarker(\\n\",\n       \"                [31.6908, 113.3833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b160abc9fc975b074d00f7d89b5152e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fc0b64e14fd35783b18910657c02e8a = $(`&lt;div id=&quot;html_2fc0b64e14fd35783b18910657c02e8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3833             latitude:31.6908             PM2_5:49.01955307             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b160abc9fc975b074d00f7d89b5152e.setContent(html_2fc0b64e14fd35783b18910657c02e8a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1039826a52e3b1d88c506943d7dd837.bindPopup(popup_0b160abc9fc975b074d00f7d89b5152e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f478799939d40dd88059739ed2d09a0 = L.circleMarker(\\n\",\n       \"                [38.6016, 105.9512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92173fae7fe06e4ea1688e40c94d03ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aec2faaf6a0d471ea33e05dc9eb7c2ed = $(`&lt;div id=&quot;html_aec2faaf6a0d471ea33e05dc9eb7c2ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.9512             latitude:38.6016             PM2_5:32.96111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92173fae7fe06e4ea1688e40c94d03ea.setContent(html_aec2faaf6a0d471ea33e05dc9eb7c2ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f478799939d40dd88059739ed2d09a0.bindPopup(popup_92173fae7fe06e4ea1688e40c94d03ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82ae1a020ebc790704466451b90fee79 = L.circleMarker(\\n\",\n       \"                [25.5364, 103.8],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3573db0e4571ce294029ad2d71c9edb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1bf0f55660076aa0e1255d0cd4980c4 = $(`&lt;div id=&quot;html_c1bf0f55660076aa0e1255d0cd4980c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8             latitude:25.5364             PM2_5:34.69859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3573db0e4571ce294029ad2d71c9edb.setContent(html_c1bf0f55660076aa0e1255d0cd4980c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82ae1a020ebc790704466451b90fee79.bindPopup(popup_f3573db0e4571ce294029ad2d71c9edb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6ff2eaf4c29a1384225502132dcb361 = L.circleMarker(\\n\",\n       \"                [42.0486, 121.6592],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e339cf003f746008e76877d4c6c5f55 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aaadc037a57fe471c9f1094338f5d912 = $(`&lt;div id=&quot;html_aaadc037a57fe471c9f1094338f5d912&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6592             latitude:42.0486             PM2_5:23.12188366             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e339cf003f746008e76877d4c6c5f55.setContent(html_aaadc037a57fe471c9f1094338f5d912);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6ff2eaf4c29a1384225502132dcb361.bindPopup(popup_3e339cf003f746008e76877d4c6c5f55)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95227e07604473a247ebbcd57cc11065 = L.circleMarker(\\n\",\n       \"                [23.1036, 109.5683],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f0e727ffd885d95370607cb5b8fa9c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f085cdda70bc23a6a1617094fea62bfd = $(`&lt;div id=&quot;html_f085cdda70bc23a6a1617094fea62bfd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5683             latitude:23.1036             PM2_5:34.63714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f0e727ffd885d95370607cb5b8fa9c8.setContent(html_f085cdda70bc23a6a1617094fea62bfd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95227e07604473a247ebbcd57cc11065.bindPopup(popup_4f0e727ffd885d95370607cb5b8fa9c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5dbf1c805f3d3630ad7f85ab006f7710 = L.circleMarker(\\n\",\n       \"                [30.5514, 114.2511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6317a1304304feb0a0d03aef88951c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4582a9c521ac8d60ec1df7dc622b337c = $(`&lt;div id=&quot;html_4582a9c521ac8d60ec1df7dc622b337c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2511             latitude:30.5514             PM2_5:43.4494382             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6317a1304304feb0a0d03aef88951c8.setContent(html_4582a9c521ac8d60ec1df7dc622b337c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5dbf1c805f3d3630ad7f85ab006f7710.bindPopup(popup_d6317a1304304feb0a0d03aef88951c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64e310f2d658c5ef719d2b786d258f15 = L.circleMarker(\\n\",\n       \"                [31.8108, 119.9736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d79dd1038a37e25b5bba55532b8b6d65 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47fea8f93920a66695a09915cc898f36 = $(`&lt;div id=&quot;html_47fea8f93920a66695a09915cc898f36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9736             latitude:31.8108             PM2_5:42.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d79dd1038a37e25b5bba55532b8b6d65.setContent(html_47fea8f93920a66695a09915cc898f36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64e310f2d658c5ef719d2b786d258f15.bindPopup(popup_d79dd1038a37e25b5bba55532b8b6d65)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8cbcec0eb84136eab04d3533debf1743 = L.circleMarker(\\n\",\n       \"                [43.9311, 116.0781],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41ef66756d17ed0d7f3d2316eab92cdf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_106ee9e0d322eece39d2f32b7c932aba = $(`&lt;div id=&quot;html_106ee9e0d322eece39d2f32b7c932aba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0781             latitude:43.9311             PM2_5:17.65738162             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41ef66756d17ed0d7f3d2316eab92cdf.setContent(html_106ee9e0d322eece39d2f32b7c932aba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8cbcec0eb84136eab04d3533debf1743.bindPopup(popup_41ef66756d17ed0d7f3d2316eab92cdf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77824be8d37132d20f645e5de5c8e6a5 = L.circleMarker(\\n\",\n       \"                [23.0786, 112.4722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12eee126ccfcb0858cbf346519c72412 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_345cf511d3a8b4881bc6cc7b668ec5eb = $(`&lt;div id=&quot;html_345cf511d3a8b4881bc6cc7b668ec5eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4722             latitude:23.0786             PM2_5:38.267507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12eee126ccfcb0858cbf346519c72412.setContent(html_345cf511d3a8b4881bc6cc7b668ec5eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77824be8d37132d20f645e5de5c8e6a5.bindPopup(popup_12eee126ccfcb0858cbf346519c72412)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_504dc5b501613964b0569fbe332d09f3 = L.circleMarker(\\n\",\n       \"                [36.4372, 115.9848],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1054ca4854497d38ea8ccd03e758432 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2c006b84f2dc27fa3bf03f654cb0a37 = $(`&lt;div id=&quot;html_c2c006b84f2dc27fa3bf03f654cb0a37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9848             latitude:36.4372             PM2_5:59.31179775             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1054ca4854497d38ea8ccd03e758432.setContent(html_c2c006b84f2dc27fa3bf03f654cb0a37);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_504dc5b501613964b0569fbe332d09f3.bindPopup(popup_c1054ca4854497d38ea8ccd03e758432)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f9494cca25ab363b46dd809798c0c36 = L.circleMarker(\\n\",\n       \"                [34.3164, 108.7369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9ecbe0cb82e2265dd62052352580cca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_758b3e8407c6d31bd17f643633de049a = $(`&lt;div id=&quot;html_758b3e8407c6d31bd17f643633de049a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7369             latitude:34.3164             PM2_5:66.23809524             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9ecbe0cb82e2265dd62052352580cca.setContent(html_758b3e8407c6d31bd17f643633de049a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f9494cca25ab363b46dd809798c0c36.bindPopup(popup_a9ecbe0cb82e2265dd62052352580cca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc8952dd11a31a74f8dc277275878587 = L.circleMarker(\\n\",\n       \"                [26.8802, 100.2497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1014f5df5d15d7c1500432b0440d3f39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a585af595b90fda219309a6b9c24aca = $(`&lt;div id=&quot;html_1a585af595b90fda219309a6b9c24aca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2497             latitude:26.8802             PM2_5:14.76734104             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1014f5df5d15d7c1500432b0440d3f39.setContent(html_1a585af595b90fda219309a6b9c24aca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc8952dd11a31a74f8dc277275878587.bindPopup(popup_1014f5df5d15d7c1500432b0440d3f39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_325bb3fcb6360289924c3c6298d46ecf = L.circleMarker(\\n\",\n       \"                [23.415, 111.2353],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bcfeda23728cbc9a582f9d53b27c1527 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a130e05201136b100cc2ce1c13c3e8d = $(`&lt;div id=&quot;html_6a130e05201136b100cc2ce1c13c3e8d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2353             latitude:23.415             PM2_5:48.28028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bcfeda23728cbc9a582f9d53b27c1527.setContent(html_6a130e05201136b100cc2ce1c13c3e8d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_325bb3fcb6360289924c3c6298d46ecf.bindPopup(popup_bcfeda23728cbc9a582f9d53b27c1527)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_997ccefb0b19cf552b58fc6fc03f7e65 = L.circleMarker(\\n\",\n       \"                [39.5371, 75.9828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3efc28e577d4ae04623d6cb91a0c53ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1eb5975cdcd73cba44b5e4b32cebf404 = $(`&lt;div id=&quot;html_1eb5975cdcd73cba44b5e4b32cebf404&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:75.9828             latitude:39.5371             PM2_5:98.80446927             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3efc28e577d4ae04623d6cb91a0c53ad.setContent(html_1eb5975cdcd73cba44b5e4b32cebf404);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_997ccefb0b19cf552b58fc6fc03f7e65.bindPopup(popup_3efc28e577d4ae04623d6cb91a0c53ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d339c09b7751864cc0d64c4f0274bda9 = L.circleMarker(\\n\",\n       \"                [39.9934, 116.315],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f15499ed8091268aa372b350af81a55e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fedb240de4412bdcd3083695a612b779 = $(`&lt;div id=&quot;html_fedb240de4412bdcd3083695a612b779&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.315             latitude:39.9934             PM2_5:50.41736695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f15499ed8091268aa372b350af81a55e.setContent(html_fedb240de4412bdcd3083695a612b779);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d339c09b7751864cc0d64c4f0274bda9.bindPopup(popup_f15499ed8091268aa372b350af81a55e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f96797f00670668a08023d7a282be487 = L.circleMarker(\\n\",\n       \"                [32.3761, 119.389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9bdc03e990a7c75ccd2384ba57a8e9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72a67920bd7121b52303dfdc417206f7 = $(`&lt;div id=&quot;html_72a67920bd7121b52303dfdc417206f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.389             latitude:32.3761             PM2_5:46.29279279             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9bdc03e990a7c75ccd2384ba57a8e9c.setContent(html_72a67920bd7121b52303dfdc417206f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f96797f00670668a08023d7a282be487.bindPopup(popup_e9bdc03e990a7c75ccd2384ba57a8e9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb54e9b22c4dc8fcddd92a9913b60042 = L.circleMarker(\\n\",\n       \"                [32.64600333, 117.0411667],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_568966fe7281221b77c5f62bf614b94e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6bda8b940a39f3b76c6236cb20731eb1 = $(`&lt;div id=&quot;html_6bda8b940a39f3b76c6236cb20731eb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0411667             latitude:32.64600333             PM2_5:56.67590028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_568966fe7281221b77c5f62bf614b94e.setContent(html_6bda8b940a39f3b76c6236cb20731eb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb54e9b22c4dc8fcddd92a9913b60042.bindPopup(popup_568966fe7281221b77c5f62bf614b94e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0ebf42e5f48a51d173039c0c5102095 = L.circleMarker(\\n\",\n       \"                [44.5462, 129.6386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35dde2d1cfcb55e425ca5246b4475e68 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c4213a5f37ea77c39643cc920fd7fd5 = $(`&lt;div id=&quot;html_7c4213a5f37ea77c39643cc920fd7fd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6386             latitude:44.5462             PM2_5:19.77793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35dde2d1cfcb55e425ca5246b4475e68.setContent(html_7c4213a5f37ea77c39643cc920fd7fd5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0ebf42e5f48a51d173039c0c5102095.bindPopup(popup_35dde2d1cfcb55e425ca5246b4475e68)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61840c63c4340f1228e02079b0ff8ed7 = L.circleMarker(\\n\",\n       \"                [33.739, 113.292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_184443b6fb9224553592df95457e82b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6229f1ff61b0cd640fe1be3de648139 = $(`&lt;div id=&quot;html_f6229f1ff61b0cd640fe1be3de648139&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.292             latitude:33.739             PM2_5:60.00560224             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_184443b6fb9224553592df95457e82b7.setContent(html_f6229f1ff61b0cd640fe1be3de648139);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61840c63c4340f1228e02079b0ff8ed7.bindPopup(popup_184443b6fb9224553592df95457e82b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df6bca1e3ad93f175839e8ca0baa3d91 = L.circleMarker(\\n\",\n       \"                [27.72, 106.9178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56235cee0e0801a55c4c0d8967fd85c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_680f310cd4fa04cd917cc61e6e093acb = $(`&lt;div id=&quot;html_680f310cd4fa04cd917cc61e6e093acb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9178             latitude:27.72             PM2_5:29.96944444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56235cee0e0801a55c4c0d8967fd85c4.setContent(html_680f310cd4fa04cd917cc61e6e093acb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df6bca1e3ad93f175839e8ca0baa3d91.bindPopup(popup_56235cee0e0801a55c4c0d8967fd85c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b96adf96b7eac619cff22e0921431ab4 = L.circleMarker(\\n\",\n       \"                [31.4, 119.46],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7de52c60d4272b524b691feb2adbbb9a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d638d9298bfbe77ee129f57d8eb01424 = $(`&lt;div id=&quot;html_d638d9298bfbe77ee129f57d8eb01424&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.46             latitude:31.4             PM2_5:41.13091922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7de52c60d4272b524b691feb2adbbb9a.setContent(html_d638d9298bfbe77ee129f57d8eb01424);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b96adf96b7eac619cff22e0921431ab4.bindPopup(popup_7de52c60d4272b524b691feb2adbbb9a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b70c9fa82f06d104e00456298805d7a = L.circleMarker(\\n\",\n       \"                [25.0992, 104.8811],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c23f3aa5818fc6cce87e97b0f1de7002 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d17298a8a57625c99d9c7cff11065ea = $(`&lt;div id=&quot;html_8d17298a8a57625c99d9c7cff11065ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8811             latitude:25.0992             PM2_5:15.26544944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c23f3aa5818fc6cce87e97b0f1de7002.setContent(html_8d17298a8a57625c99d9c7cff11065ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b70c9fa82f06d104e00456298805d7a.bindPopup(popup_c23f3aa5818fc6cce87e97b0f1de7002)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41afbeb916168bb311b5b18fedf2f16d = L.circleMarker(\\n\",\n       \"                [46.0707, 122.0931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb63120e497e865a0fbaccf93b386161 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d31eb19ff042c95b0238d3e873dc2fc = $(`&lt;div id=&quot;html_1d31eb19ff042c95b0238d3e873dc2fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0931             latitude:46.0707             PM2_5:14.30087209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb63120e497e865a0fbaccf93b386161.setContent(html_1d31eb19ff042c95b0238d3e873dc2fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41afbeb916168bb311b5b18fedf2f16d.bindPopup(popup_fb63120e497e865a0fbaccf93b386161)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7a4fd60707229e0109ff1aad7886169 = L.circleMarker(\\n\",\n       \"                [21.2679, 110.3316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dffdc5b6ffc3147e1b68157404118cf3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_276ac079cc49620e0c79d36f2ef5dce6 = $(`&lt;div id=&quot;html_276ac079cc49620e0c79d36f2ef5dce6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3316             latitude:21.2679             PM2_5:25.9859944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dffdc5b6ffc3147e1b68157404118cf3.setContent(html_276ac079cc49620e0c79d36f2ef5dce6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7a4fd60707229e0109ff1aad7886169.bindPopup(popup_dffdc5b6ffc3147e1b68157404118cf3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4179a607361c5b7a9a8b850500c4bcbd = L.circleMarker(\\n\",\n       \"                [25.5811, 100.2171],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e4b2ca8106e4242b7eb0cfd77bd2128 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_895e1f1961864fb1b293ab99e3733fcd = $(`&lt;div id=&quot;html_895e1f1961864fb1b293ab99e3733fcd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2171             latitude:25.5811             PM2_5:15.15915493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e4b2ca8106e4242b7eb0cfd77bd2128.setContent(html_895e1f1961864fb1b293ab99e3733fcd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4179a607361c5b7a9a8b850500c4bcbd.bindPopup(popup_0e4b2ca8106e4242b7eb0cfd77bd2128)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_535ec994b75c95f9e64faa551b7b759c = L.circleMarker(\\n\",\n       \"                [29.8633, 121.586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1fe7af53f2d2ef46b50b3fd0f3982fff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2c780407ee1739c5a1a5dbe052d0399 = $(`&lt;div id=&quot;html_d2c780407ee1739c5a1a5dbe052d0399&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.586             latitude:29.8633             PM2_5:34.40027701             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1fe7af53f2d2ef46b50b3fd0f3982fff.setContent(html_d2c780407ee1739c5a1a5dbe052d0399);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_535ec994b75c95f9e64faa551b7b759c.bindPopup(popup_1fe7af53f2d2ef46b50b3fd0f3982fff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5eb252ee92271617fd8172b33b6342f3 = L.circleMarker(\\n\",\n       \"                [43.962, 87.6444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b27426a00591c7ef1bfc22e843f328a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a6408c54b4a6c6e856ef3868b1d1203 = $(`&lt;div id=&quot;html_8a6408c54b4a6c6e856ef3868b1d1203&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6444             latitude:43.962             PM2_5:64.43895349             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b27426a00591c7ef1bfc22e843f328a3.setContent(html_8a6408c54b4a6c6e856ef3868b1d1203);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5eb252ee92271617fd8172b33b6342f3.bindPopup(popup_b27426a00591c7ef1bfc22e843f328a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cac405c6d932c5b6b9a7fbe3b57b4e80 = L.circleMarker(\\n\",\n       \"                [28.9583, 105.4306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b2f855c0b45f209ea0ef1d440efd75d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56a2a33f0d7c477223194608da3923e3 = $(`&lt;div id=&quot;html_56a2a33f0d7c477223194608da3923e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4306             latitude:28.9583             PM2_5:39.22050562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b2f855c0b45f209ea0ef1d440efd75d.setContent(html_56a2a33f0d7c477223194608da3923e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cac405c6d932c5b6b9a7fbe3b57b4e80.bindPopup(popup_3b2f855c0b45f209ea0ef1d440efd75d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b5f98a58970c18bfa9f5e9799c655ac6 = L.circleMarker(\\n\",\n       \"                [28.2597, 112.9792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a39c55061ab67e5b12c05c94f4aa560 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_370608ad0b1a81659055e4321b17611b = $(`&lt;div id=&quot;html_370608ad0b1a81659055e4321b17611b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9792             latitude:28.2597             PM2_5:46.94182825             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a39c55061ab67e5b12c05c94f4aa560.setContent(html_370608ad0b1a81659055e4321b17611b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b5f98a58970c18bfa9f5e9799c655ac6.bindPopup(popup_2a39c55061ab67e5b12c05c94f4aa560)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e9af88fa1c65f175dfb591d64bce1cc = L.circleMarker(\\n\",\n       \"                [22.8054, 113.292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_661f851818100e6f5e2e93702763a161 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c3d40a1a2385505babb9c61d855394f = $(`&lt;div id=&quot;html_6c3d40a1a2385505babb9c61d855394f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.292             latitude:22.8054             PM2_5:28.99439776             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_661f851818100e6f5e2e93702763a161.setContent(html_6c3d40a1a2385505babb9c61d855394f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e9af88fa1c65f175dfb591d64bce1cc.bindPopup(popup_661f851818100e6f5e2e93702763a161)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92b2ac6991a9f6beedc39a9c9f888638 = L.circleMarker(\\n\",\n       \"                [45.7667, 126.635],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2fedfb9996d66ec02b2459b5c7ecafb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8369a428e620188e56c854b88b2240a3 = $(`&lt;div id=&quot;html_8369a428e620188e56c854b88b2240a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.635             latitude:45.7667             PM2_5:32.13547486             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2fedfb9996d66ec02b2459b5c7ecafb.setContent(html_8369a428e620188e56c854b88b2240a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92b2ac6991a9f6beedc39a9c9f888638.bindPopup(popup_b2fedfb9996d66ec02b2459b5c7ecafb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1a8a1a3dd3ec023f6dfe91a788a9d0c = L.circleMarker(\\n\",\n       \"                [22.5625, 114.117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e472698fcd9ea35bdfbd9bcad5923f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84e903a04609ccae15e1c582f570d40f = $(`&lt;div id=&quot;html_84e903a04609ccae15e1c582f570d40f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.117             latitude:22.5625             PM2_5:28.08798883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e472698fcd9ea35bdfbd9bcad5923f4.setContent(html_84e903a04609ccae15e1c582f570d40f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1a8a1a3dd3ec023f6dfe91a788a9d0c.bindPopup(popup_8e472698fcd9ea35bdfbd9bcad5923f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e88d408637901ad983d1fcdc547793c3 = L.circleMarker(\\n\",\n       \"                [33.9953, 113.7906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41d31f395198a73337c8a7c948c4e6e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce23ec3131d8f19072aeea9e2d0dde3a = $(`&lt;div id=&quot;html_ce23ec3131d8f19072aeea9e2d0dde3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7906             latitude:33.9953             PM2_5:52.43435754             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41d31f395198a73337c8a7c948c4e6e9.setContent(html_ce23ec3131d8f19072aeea9e2d0dde3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e88d408637901ad983d1fcdc547793c3.bindPopup(popup_41d31f395198a73337c8a7c948c4e6e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3dd6fbc1f4199c730a4124a6034db65b = L.circleMarker(\\n\",\n       \"                [30.0911, 120.598],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_124c7a456d41e23429b4f93b6dfb29e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9a358f71ad5e07d886fbed37b1e9d37d = $(`&lt;div id=&quot;html_9a358f71ad5e07d886fbed37b1e9d37d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.598             latitude:30.0911             PM2_5:42.53221289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_124c7a456d41e23429b4f93b6dfb29e3.setContent(html_9a358f71ad5e07d886fbed37b1e9d37d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3dd6fbc1f4199c730a4124a6034db65b.bindPopup(popup_124c7a456d41e23429b4f93b6dfb29e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a70fbf374216aa7f1e26cbe3a8f2d44a = L.circleMarker(\\n\",\n       \"                [33.0122, 112.5224],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21676d083890a2208e4eabe41adc9c98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac07795094810f3546768738047941ac = $(`&lt;div id=&quot;html_ac07795094810f3546768738047941ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5224             latitude:33.0122             PM2_5:56.43732591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21676d083890a2208e4eabe41adc9c98.setContent(html_ac07795094810f3546768738047941ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a70fbf374216aa7f1e26cbe3a8f2d44a.bindPopup(popup_21676d083890a2208e4eabe41adc9c98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94fe061d117296c550ddc5bf16656e04 = L.circleMarker(\\n\",\n       \"                [34.6692, 112.3628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c29d2e057ed0017850b60004689295ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf040baa8ffe5ee19c91e2eec6ec91fb = $(`&lt;div id=&quot;html_cf040baa8ffe5ee19c91e2eec6ec91fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3628             latitude:34.6692             PM2_5:60.93277311             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c29d2e057ed0017850b60004689295ce.setContent(html_cf040baa8ffe5ee19c91e2eec6ec91fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94fe061d117296c550ddc5bf16656e04.bindPopup(popup_c29d2e057ed0017850b60004689295ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c082d26b6a5b68ab424053464a66250 = L.circleMarker(\\n\",\n       \"                [27.8953, 102.2311],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46768ed3c9379654711da65364c1d560 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_425a09eb08891e914d1f5dae84cd11c0 = $(`&lt;div id=&quot;html_425a09eb08891e914d1f5dae84cd11c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2311             latitude:27.8953             PM2_5:24.98459384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46768ed3c9379654711da65364c1d560.setContent(html_425a09eb08891e914d1f5dae84cd11c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c082d26b6a5b68ab424053464a66250.bindPopup(popup_46768ed3c9379654711da65364c1d560)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8a5bf6a97ee9128b9020a2f58b215686 = L.circleMarker(\\n\",\n       \"                [30.3714, 114.8989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f997475c9a02a58a17ae697a95fd2546 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a52c217aecef04ee8274f1783f0bea8 = $(`&lt;div id=&quot;html_8a52c217aecef04ee8274f1783f0bea8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8989             latitude:30.3714             PM2_5:57.2733711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f997475c9a02a58a17ae697a95fd2546.setContent(html_8a52c217aecef04ee8274f1783f0bea8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8a5bf6a97ee9128b9020a2f58b215686.bindPopup(popup_f997475c9a02a58a17ae697a95fd2546)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67f310690a022775ff2c84edc8fa255d = L.circleMarker(\\n\",\n       \"                [36.881, 118.746],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c940c47e3b24bd0750bae777a3b92133 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9150591a3f328a1e31661f7dd50edcd = $(`&lt;div id=&quot;html_b9150591a3f328a1e31661f7dd50edcd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.746             latitude:36.881             PM2_5:52.24558824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c940c47e3b24bd0750bae777a3b92133.setContent(html_b9150591a3f328a1e31661f7dd50edcd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67f310690a022775ff2c84edc8fa255d.bindPopup(popup_c940c47e3b24bd0750bae777a3b92133)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9cbcf048902bc23526f8b1b4b8e41176 = L.circleMarker(\\n\",\n       \"                [28.3586, 112.9958],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3895b4aba1fddc23caeb813e3a40719 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f11bd4dd1b3ababc74ef89eaa2af3d85 = $(`&lt;div id=&quot;html_f11bd4dd1b3ababc74ef89eaa2af3d85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9958             latitude:28.3586             PM2_5:47.99858757             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3895b4aba1fddc23caeb813e3a40719.setContent(html_f11bd4dd1b3ababc74ef89eaa2af3d85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9cbcf048902bc23526f8b1b4b8e41176.bindPopup(popup_e3895b4aba1fddc23caeb813e3a40719)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0cdc9c460d51b9e78a9141be0be117c1 = L.circleMarker(\\n\",\n       \"                [21.865, 111.9494],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f8a5c1aa989ad1fac574a9315e44271 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afc59f466c2ed00301ec6f1a62023060 = $(`&lt;div id=&quot;html_afc59f466c2ed00301ec6f1a62023060&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9494             latitude:21.865             PM2_5:26.47058824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f8a5c1aa989ad1fac574a9315e44271.setContent(html_afc59f466c2ed00301ec6f1a62023060);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0cdc9c460d51b9e78a9141be0be117c1.bindPopup(popup_3f8a5c1aa989ad1fac574a9315e44271)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f8ecfcf65857c1e33d325b47d70f848 = L.circleMarker(\\n\",\n       \"                [37.739, 115.6906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d52e4868a1ea7378a0d8d282ed14216 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d527c4ea2615ea3d7d7f8e12345168b4 = $(`&lt;div id=&quot;html_d527c4ea2615ea3d7d7f8e12345168b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6906             latitude:37.739             PM2_5:61.18333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d52e4868a1ea7378a0d8d282ed14216.setContent(html_d527c4ea2615ea3d7d7f8e12345168b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f8ecfcf65857c1e33d325b47d70f848.bindPopup(popup_3d52e4868a1ea7378a0d8d282ed14216)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_35dc13e5108f4c25f20c5e8dd0176293 = L.circleMarker(\\n\",\n       \"                [41.3283, 123.8436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67411e1e9f77bbef0db3b96b26a8f7a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1c7a15c88a1519bf8b54e01be29f244 = $(`&lt;div id=&quot;html_e1c7a15c88a1519bf8b54e01be29f244&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8436             latitude:41.3283             PM2_5:26.20416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67411e1e9f77bbef0db3b96b26a8f7a0.setContent(html_e1c7a15c88a1519bf8b54e01be29f244);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_35dc13e5108f4c25f20c5e8dd0176293.bindPopup(popup_67411e1e9f77bbef0db3b96b26a8f7a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47837b5cb6138803306a490d8a5726d0 = L.circleMarker(\\n\",\n       \"                [25.8179, 113.0119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a864a7efe1800e4d8bea2445d61cdf4d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ded6b57ad436a6582ef5bdc904790137 = $(`&lt;div id=&quot;html_ded6b57ad436a6582ef5bdc904790137&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0119             latitude:25.8179             PM2_5:37.42577031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a864a7efe1800e4d8bea2445d61cdf4d.setContent(html_ded6b57ad436a6582ef5bdc904790137);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47837b5cb6138803306a490d8a5726d0.bindPopup(popup_a864a7efe1800e4d8bea2445d61cdf4d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3446614c3932848f2787e85b0d0179dd = L.circleMarker(\\n\",\n       \"                [41.2894, 123.1417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3fe402283d8d6dda1cb1888fd4e34f68 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4f47bac1521ce6791437854a399c9ea = $(`&lt;div id=&quot;html_c4f47bac1521ce6791437854a399c9ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1417             latitude:41.2894             PM2_5:33.12921348             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3fe402283d8d6dda1cb1888fd4e34f68.setContent(html_c4f47bac1521ce6791437854a399c9ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3446614c3932848f2787e85b0d0179dd.bindPopup(popup_3fe402283d8d6dda1cb1888fd4e34f68)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b631ba1c0d7c352523d53b07703ba6d5 = L.circleMarker(\\n\",\n       \"                [43.4569, 87.4651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b92134e256c7ee5f8794a07fb841c2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c2bdd9e649f9b1f5980e26e1d43b281 = $(`&lt;div id=&quot;html_8c2bdd9e649f9b1f5980e26e1d43b281&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.4651             latitude:43.4569             PM2_5:18.97464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b92134e256c7ee5f8794a07fb841c2a.setContent(html_8c2bdd9e649f9b1f5980e26e1d43b281);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b631ba1c0d7c352523d53b07703ba6d5.bindPopup(popup_3b92134e256c7ee5f8794a07fb841c2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0f4e5ca721b3120e2f9caae55f213a5 = L.circleMarker(\\n\",\n       \"                [30.72358333, 103.97275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d280b1dd9721793e2dc237c78ce88ce6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ea3536dc38e9965c2d9fb6104a0f571 = $(`&lt;div id=&quot;html_3ea3536dc38e9965c2d9fb6104a0f571&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.97275             latitude:30.72358333             PM2_5:55.87465181             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d280b1dd9721793e2dc237c78ce88ce6.setContent(html_3ea3536dc38e9965c2d9fb6104a0f571);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0f4e5ca721b3120e2f9caae55f213a5.bindPopup(popup_d280b1dd9721793e2dc237c78ce88ce6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_427ef9fe7fcb0c0609d319af726a2f5e = L.circleMarker(\\n\",\n       \"                [28.2675, 109.6958],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96fc07b08dbb206c22a28d5aa2492c91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db140ecbc3505f4f6f4ab1a5bda8eca6 = $(`&lt;div id=&quot;html_db140ecbc3505f4f6f4ab1a5bda8eca6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6958             latitude:28.2675             PM2_5:45.76388889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96fc07b08dbb206c22a28d5aa2492c91.setContent(html_db140ecbc3505f4f6f4ab1a5bda8eca6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_427ef9fe7fcb0c0609d319af726a2f5e.bindPopup(popup_96fc07b08dbb206c22a28d5aa2492c91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab3e7003db58f9d2fe70a528dca1c011 = L.circleMarker(\\n\",\n       \"                [37.9844, 106.2025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20e79ace5d41c46d84e9c672360d12d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb51ca8431a8960c60a7c990e24dbcf1 = $(`&lt;div id=&quot;html_fb51ca8431a8960c60a7c990e24dbcf1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2025             latitude:37.9844             PM2_5:35.49438202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20e79ace5d41c46d84e9c672360d12d1.setContent(html_fb51ca8431a8960c60a7c990e24dbcf1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab3e7003db58f9d2fe70a528dca1c011.bindPopup(popup_20e79ace5d41c46d84e9c672360d12d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e574cd8162bcb32f4203fc6f8c78fca7 = L.circleMarker(\\n\",\n       \"                [36.8198, 118.3092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_673ab7e2ab67ca5111f8207f4da8c6b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_987c2a749d75851b746ae6107d4a44b4 = $(`&lt;div id=&quot;html_987c2a749d75851b746ae6107d4a44b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3092             latitude:36.8198             PM2_5:58.88951841             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_673ab7e2ab67ca5111f8207f4da8c6b0.setContent(html_987c2a749d75851b746ae6107d4a44b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e574cd8162bcb32f4203fc6f8c78fca7.bindPopup(popup_673ab7e2ab67ca5111f8207f4da8c6b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c43565baa7589604db12a524b310f788 = L.circleMarker(\\n\",\n       \"                [29.3628, 104.7547],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e092dcfef2d060fe33f90eaa7f61c2ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_172109320b35a8c114228ab437328400 = $(`&lt;div id=&quot;html_172109320b35a8c114228ab437328400&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7547             latitude:29.3628             PM2_5:74.37711864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e092dcfef2d060fe33f90eaa7f61c2ba.setContent(html_172109320b35a8c114228ab437328400);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c43565baa7589604db12a524b310f788.bindPopup(popup_e092dcfef2d060fe33f90eaa7f61c2ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_760377bb289d8fd8dc78c4bd6bf61ebe = L.circleMarker(\\n\",\n       \"                [26.5917, 104.83],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f108d046c9a08903d4d11967f0d4286 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eaa52cf8e44c819c8c37e26e54b47906 = $(`&lt;div id=&quot;html_eaa52cf8e44c819c8c37e26e54b47906&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.83             latitude:26.5917             PM2_5:40.890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f108d046c9a08903d4d11967f0d4286.setContent(html_eaa52cf8e44c819c8c37e26e54b47906);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_760377bb289d8fd8dc78c4bd6bf61ebe.bindPopup(popup_2f108d046c9a08903d4d11967f0d4286)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09399164b3c5754dc0240ff2da3a7afe = L.circleMarker(\\n\",\n       \"                [38.4975, 106.2328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8c8602691a3f1491f7be0f74e789cf6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6731f1ad0722ed7df7260ecf1e07c7ad = $(`&lt;div id=&quot;html_6731f1ad0722ed7df7260ecf1e07c7ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2328             latitude:38.4975             PM2_5:44.18994413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8c8602691a3f1491f7be0f74e789cf6.setContent(html_6731f1ad0722ed7df7260ecf1e07c7ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09399164b3c5754dc0240ff2da3a7afe.bindPopup(popup_a8c8602691a3f1491f7be0f74e789cf6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f7ceb5ee9aea65802b5070143f592f0 = L.circleMarker(\\n\",\n       \"                [22.8225, 108.321],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3160f2e0b75d2100465dccb4c0e5b2d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ddc19516ad16841c2b296794a89a7a7 = $(`&lt;div id=&quot;html_8ddc19516ad16841c2b296794a89a7a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.321             latitude:22.8225             PM2_5:33.82062147             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3160f2e0b75d2100465dccb4c0e5b2d6.setContent(html_8ddc19516ad16841c2b296794a89a7a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f7ceb5ee9aea65802b5070143f592f0.bindPopup(popup_3160f2e0b75d2100465dccb4c0e5b2d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10251198fffdbaa7be1ccfa139b7fa35 = L.circleMarker(\\n\",\n       \"                [30.6539, 117.4974],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fbb443386bd0adba5e06c4cb9b701eea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd8c4e15b448142faf2185acc00b82db = $(`&lt;div id=&quot;html_cd8c4e15b448142faf2185acc00b82db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4974             latitude:30.6539             PM2_5:57.20555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fbb443386bd0adba5e06c4cb9b701eea.setContent(html_cd8c4e15b448142faf2185acc00b82db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10251198fffdbaa7be1ccfa139b7fa35.bindPopup(popup_fbb443386bd0adba5e06c4cb9b701eea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65f371f0cabf7bfcac1de885458dd9e1 = L.circleMarker(\\n\",\n       \"                [32.935, 117.3086],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9990ff92207dff26ab06a8fa9bdf1599 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_814e9d852025ce057d578f141f20b3eb = $(`&lt;div id=&quot;html_814e9d852025ce057d578f141f20b3eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3086             latitude:32.935             PM2_5:54.68539326             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9990ff92207dff26ab06a8fa9bdf1599.setContent(html_814e9d852025ce057d578f141f20b3eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65f371f0cabf7bfcac1de885458dd9e1.bindPopup(popup_9990ff92207dff26ab06a8fa9bdf1599)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22e16bca24261b745df0ee7e5fc4f642 = L.circleMarker(\\n\",\n       \"                [35.4234, 119.5198],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d2b986f48a50906ebb46ea4ec49c2f8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8658c612b3121559e046ef6eeb64ccb5 = $(`&lt;div id=&quot;html_8658c612b3121559e046ef6eeb64ccb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5198             latitude:35.4234             PM2_5:41.30501393             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d2b986f48a50906ebb46ea4ec49c2f8a.setContent(html_8658c612b3121559e046ef6eeb64ccb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22e16bca24261b745df0ee7e5fc4f642.bindPopup(popup_d2b986f48a50906ebb46ea4ec49c2f8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9965defcf5635632e15ffcbf02e5445e = L.circleMarker(\\n\",\n       \"                [24.769519, 113.586606],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_706faa61fe5ae62edcc6dc24801e38f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d2afb3fa5a6154a4ea18718509a4f04 = $(`&lt;div id=&quot;html_1d2afb3fa5a6154a4ea18718509a4f04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.586606             latitude:24.769519             PM2_5:36.18194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_706faa61fe5ae62edcc6dc24801e38f2.setContent(html_1d2afb3fa5a6154a4ea18718509a4f04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9965defcf5635632e15ffcbf02e5445e.bindPopup(popup_706faa61fe5ae62edcc6dc24801e38f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d5e1740a20b22518d17d66f318dcd53 = L.circleMarker(\\n\",\n       \"                [30.2352, 115.0625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3098c3a51e375919d4f14c9c85d2615 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ce69309e3a3a213f0ec0f098969e904 = $(`&lt;div id=&quot;html_2ce69309e3a3a213f0ec0f098969e904&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0625             latitude:30.2352             PM2_5:47.3969697             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3098c3a51e375919d4f14c9c85d2615.setContent(html_2ce69309e3a3a213f0ec0f098969e904);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d5e1740a20b22518d17d66f318dcd53.bindPopup(popup_d3098c3a51e375919d4f14c9c85d2615)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b10d0488daa3349eb202b38f488ca45 = L.circleMarker(\\n\",\n       \"                [41.9228, 123.3783],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b91f22363e3f6003a44b6fb4a91fbde = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9a5fdc8c277330c8f8fe5ff60b4235a = $(`&lt;div id=&quot;html_b9a5fdc8c277330c8f8fe5ff60b4235a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.3783             latitude:41.9228             PM2_5:34.71727019             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b91f22363e3f6003a44b6fb4a91fbde.setContent(html_b9a5fdc8c277330c8f8fe5ff60b4235a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b10d0488daa3349eb202b38f488ca45.bindPopup(popup_0b91f22363e3f6003a44b6fb4a91fbde)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37f249260b8fdef6cdaf8ef3922a5a05 = L.circleMarker(\\n\",\n       \"                [33.3947, 120.225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16c13626e3b04e5ea5d2a26ecea7e4d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e84207d4e1d37ce261694219fca96e1f = $(`&lt;div id=&quot;html_e84207d4e1d37ce261694219fca96e1f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.225             latitude:33.3947             PM2_5:35.74438202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16c13626e3b04e5ea5d2a26ecea7e4d4.setContent(html_e84207d4e1d37ce261694219fca96e1f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37f249260b8fdef6cdaf8ef3922a5a05.bindPopup(popup_16c13626e3b04e5ea5d2a26ecea7e4d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea5ae47358b2c9acee7c690075a389bb = L.circleMarker(\\n\",\n       \"                [22.96583333, 113.7383333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c6b3b0200e8867ab7aea61247ae60a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a85dccfcf83d8b2c8c996a8bc41ff3e6 = $(`&lt;div id=&quot;html_a85dccfcf83d8b2c8c996a8bc41ff3e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7383333             latitude:22.96583333             PM2_5:35.75761773             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c6b3b0200e8867ab7aea61247ae60a1.setContent(html_a85dccfcf83d8b2c8c996a8bc41ff3e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea5ae47358b2c9acee7c690075a389bb.bindPopup(popup_4c6b3b0200e8867ab7aea61247ae60a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_071e34819569eec1072307e79562d3b9 = L.circleMarker(\\n\",\n       \"                [31.8706, 117.259],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6f8cbbf0ac72e8c2fb1e1a934bce9db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8960b2ecb29fad5304bd781fa991ec0 = $(`&lt;div id=&quot;html_e8960b2ecb29fad5304bd781fa991ec0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.259             latitude:31.8706             PM2_5:46.20473538             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6f8cbbf0ac72e8c2fb1e1a934bce9db.setContent(html_e8960b2ecb29fad5304bd781fa991ec0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_071e34819569eec1072307e79562d3b9.bindPopup(popup_f6f8cbbf0ac72e8c2fb1e1a934bce9db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1dcaba873e101083e1a20ffe9e9c7a57 = L.circleMarker(\\n\",\n       \"                [31.03389, 112.1908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2c8fdb10951ce84667d006d215df837 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40b78f00502781c96d95187596a84aee = $(`&lt;div id=&quot;html_40b78f00502781c96d95187596a84aee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1908             latitude:31.03389             PM2_5:50.85154062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2c8fdb10951ce84667d006d215df837.setContent(html_40b78f00502781c96d95187596a84aee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1dcaba873e101083e1a20ffe9e9c7a57.bindPopup(popup_f2c8fdb10951ce84667d006d215df837)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b341957d38586d3bf01cabc9c323758c = L.circleMarker(\\n\",\n       \"                [31.371, 119.794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77efe450e99de748127b431d96babd92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4ec0165d7e58041f9e305204a0000c4 = $(`&lt;div id=&quot;html_b4ec0165d7e58041f9e305204a0000c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.794             latitude:31.371             PM2_5:48.33333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77efe450e99de748127b431d96babd92.setContent(html_b4ec0165d7e58041f9e305204a0000c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b341957d38586d3bf01cabc9c323758c.bindPopup(popup_77efe450e99de748127b431d96babd92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a75553538e839962102e3f525914962c = L.circleMarker(\\n\",\n       \"                [36.2211, 117.6983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1ca7daab73cc64ad023598b3854c19b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_119ac5fa49feedc60f5d8d933e5ff719 = $(`&lt;div id=&quot;html_119ac5fa49feedc60f5d8d933e5ff719&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6983             latitude:36.2211             PM2_5:54.98994253             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1ca7daab73cc64ad023598b3854c19b.setContent(html_119ac5fa49feedc60f5d8d933e5ff719);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a75553538e839962102e3f525914962c.bindPopup(popup_c1ca7daab73cc64ad023598b3854c19b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_167a7d73ab43f2b4398f692fa35f27b7 = L.circleMarker(\\n\",\n       \"                [30.9219, 117.8561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38cbf1c6904904c63181afa4e3f0807e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5dea4a999c6fa46843216bb707f7f69a = $(`&lt;div id=&quot;html_5dea4a999c6fa46843216bb707f7f69a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8561             latitude:30.9219             PM2_5:50.87396122             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38cbf1c6904904c63181afa4e3f0807e.setContent(html_5dea4a999c6fa46843216bb707f7f69a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_167a7d73ab43f2b4398f692fa35f27b7.bindPopup(popup_38cbf1c6904904c63181afa4e3f0807e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af3e62b5763257ad650664b8ec2363d5 = L.circleMarker(\\n\",\n       \"                [32.0723, 118.778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c0b527d44e99e572be0c772df8fdb3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff1bafe44dc7bd52137ada0bbfc27ea0 = $(`&lt;div id=&quot;html_ff1bafe44dc7bd52137ada0bbfc27ea0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.778             latitude:32.0723             PM2_5:42.57244318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c0b527d44e99e572be0c772df8fdb3f.setContent(html_ff1bafe44dc7bd52137ada0bbfc27ea0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af3e62b5763257ad650664b8ec2363d5.bindPopup(popup_3c0b527d44e99e572be0c772df8fdb3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18c1b53caf6455d210fb4a4d27df461c = L.circleMarker(\\n\",\n       \"                [42.2953, 123.8831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a58e686fbebdbf936221bf187c0ea4ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_838f90c802bb574a9fb13383061ae4b8 = $(`&lt;div id=&quot;html_838f90c802bb574a9fb13383061ae4b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8831             latitude:42.2953             PM2_5:30.840625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a58e686fbebdbf936221bf187c0ea4ca.setContent(html_838f90c802bb574a9fb13383061ae4b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18c1b53caf6455d210fb4a4d27df461c.bindPopup(popup_a58e686fbebdbf936221bf187c0ea4ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf7e7acdd5dbbc017e81ca04807efe1d = L.circleMarker(\\n\",\n       \"                [34.2911, 117.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f38326acabe4fd0929ce3d731c31d80a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_28605071f396596bbc220635ebc4bf9c = $(`&lt;div id=&quot;html_28605071f396596bbc220635ebc4bf9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.244             latitude:34.2911             PM2_5:66.16428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f38326acabe4fd0929ce3d731c31d80a.setContent(html_28605071f396596bbc220635ebc4bf9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf7e7acdd5dbbc017e81ca04807efe1d.bindPopup(popup_f38326acabe4fd0929ce3d731c31d80a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08ec70ca2e84477bf99f6f31bc8d7917 = L.circleMarker(\\n\",\n       \"                [36.0714, 111.5028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3bd1e7b0a3be56f71c9551bc25cfbb7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c8f263df3ea0800f104d7ca073d12b5 = $(`&lt;div id=&quot;html_1c8f263df3ea0800f104d7ca073d12b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5028             latitude:36.0714             PM2_5:76.35933148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3bd1e7b0a3be56f71c9551bc25cfbb7a.setContent(html_1c8f263df3ea0800f104d7ca073d12b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08ec70ca2e84477bf99f6f31bc8d7917.bindPopup(popup_3bd1e7b0a3be56f71c9551bc25cfbb7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d93d85b8d68d4441eb3a7975c26004d = L.circleMarker(\\n\",\n       \"                [30.0506, 103.8986],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7fcd5bfb401e79905d1fc638c32f9d6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b159dbd37e85496c7b264b77b11781b5 = $(`&lt;div id=&quot;html_b159dbd37e85496c7b264b77b11781b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8986             latitude:30.0506             PM2_5:35.75             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7fcd5bfb401e79905d1fc638c32f9d6c.setContent(html_b159dbd37e85496c7b264b77b11781b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d93d85b8d68d4441eb3a7975c26004d.bindPopup(popup_7fcd5bfb401e79905d1fc638c32f9d6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f99ed6ff483133f6c694f81d8a32db0 = L.circleMarker(\\n\",\n       \"                [31.1167, 104.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53102cfff4330cd653b9aacabf8e856c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dac43eb01a2b22f886e761bd4de378ca = $(`&lt;div id=&quot;html_dac43eb01a2b22f886e761bd4de378ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.4053             latitude:31.1167             PM2_5:49.15927978             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53102cfff4330cd653b9aacabf8e856c.setContent(html_dac43eb01a2b22f886e761bd4de378ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f99ed6ff483133f6c694f81d8a32db0.bindPopup(popup_53102cfff4330cd653b9aacabf8e856c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78177d09fbeded7bfd5afb991f976982 = L.circleMarker(\\n\",\n       \"                [22.8464, 108.239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_010c65eb12fda5f3a8d4db7ad6bfbb35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7941cec5a338537e0a814936bff9d35 = $(`&lt;div id=&quot;html_a7941cec5a338537e0a814936bff9d35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.239             latitude:22.8464             PM2_5:32.19683908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_010c65eb12fda5f3a8d4db7ad6bfbb35.setContent(html_a7941cec5a338537e0a814936bff9d35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78177d09fbeded7bfd5afb991f976982.bindPopup(popup_010c65eb12fda5f3a8d4db7ad6bfbb35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5a7a03fb745ff30925f518d3fbc8068 = L.circleMarker(\\n\",\n       \"                [33.0069, 114.0131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18e3676ee91cacd63c632905cca82c74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_134c9fae1e86551e20954cbd69e6aa0e = $(`&lt;div id=&quot;html_134c9fae1e86551e20954cbd69e6aa0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0131             latitude:33.0069             PM2_5:55.45224719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18e3676ee91cacd63c632905cca82c74.setContent(html_134c9fae1e86551e20954cbd69e6aa0e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5a7a03fb745ff30925f518d3fbc8068.bindPopup(popup_18e3676ee91cacd63c632905cca82c74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_496b017725f037f8550f2e599679f14c = L.circleMarker(\\n\",\n       \"                [46.8032, 130.3648],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49018e44c3e0944b9109a9e327e9deee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f55fb3e51ceeaa6b7a4e1f476b50df9 = $(`&lt;div id=&quot;html_3f55fb3e51ceeaa6b7a4e1f476b50df9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3648             latitude:46.8032             PM2_5:23.81714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49018e44c3e0944b9109a9e327e9deee.setContent(html_3f55fb3e51ceeaa6b7a4e1f476b50df9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_496b017725f037f8550f2e599679f14c.bindPopup(popup_49018e44c3e0944b9109a9e327e9deee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff45626b5f25ea32be9036c8aa559e06 = L.circleMarker(\\n\",\n       \"                [30.8064, 106.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b20d67ee28ef556660b72cc5b1caf8ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6edfbbb1776e64922994aadc5666788d = $(`&lt;div id=&quot;html_6edfbbb1776e64922994aadc5666788d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.056             latitude:30.8064             PM2_5:41.3079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b20d67ee28ef556660b72cc5b1caf8ce.setContent(html_6edfbbb1776e64922994aadc5666788d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff45626b5f25ea32be9036c8aa559e06.bindPopup(popup_b20d67ee28ef556660b72cc5b1caf8ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29480c8e0bae7a338368aa95942cd427 = L.circleMarker(\\n\",\n       \"                [45.6886, 85.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fc894a3873c3a552e9f49c988aad7ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13527439c390e701d8b07acbeefe4186 = $(`&lt;div id=&quot;html_13527439c390e701d8b07acbeefe4186&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:85.1186             latitude:45.6886             PM2_5:33.96398892             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fc894a3873c3a552e9f49c988aad7ec.setContent(html_13527439c390e701d8b07acbeefe4186);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29480c8e0bae7a338368aa95942cd427.bindPopup(popup_8fc894a3873c3a552e9f49c988aad7ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b5adaf161e15889d7ba32849a0d5a6e4 = L.circleMarker(\\n\",\n       \"                [32.4639, 119.888],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_788851948bc198cd2e4ac155cbefdd84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_816d3a0f4e42a24a7d78a3ee56a659a5 = $(`&lt;div id=&quot;html_816d3a0f4e42a24a7d78a3ee56a659a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.888             latitude:32.4639             PM2_5:55.42896936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_788851948bc198cd2e4ac155cbefdd84.setContent(html_816d3a0f4e42a24a7d78a3ee56a659a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b5adaf161e15889d7ba32849a0d5a6e4.bindPopup(popup_788851948bc198cd2e4ac155cbefdd84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24e3433dd5828458cd01d1a485fdb06d = L.circleMarker(\\n\",\n       \"                [27.9119, 112.9074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67318109ce93c0852f7f90ac8658f0ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e15d54fb17242c677d862ac83c4fa4c2 = $(`&lt;div id=&quot;html_e15d54fb17242c677d862ac83c4fa4c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9074             latitude:27.9119             PM2_5:47.09887006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67318109ce93c0852f7f90ac8658f0ba.setContent(html_e15d54fb17242c677d862ac83c4fa4c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24e3433dd5828458cd01d1a485fdb06d.bindPopup(popup_67318109ce93c0852f7f90ac8658f0ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a102a6c5bc9e65fe1cff56163cc6629 = L.circleMarker(\\n\",\n       \"                [31.7275, 113.3583],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb44662ee841156c659e509ea61f029e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_093ced83541d092d7a8535a459074763 = $(`&lt;div id=&quot;html_093ced83541d092d7a8535a459074763&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3583             latitude:31.7275             PM2_5:50.34453782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb44662ee841156c659e509ea61f029e.setContent(html_093ced83541d092d7a8535a459074763);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a102a6c5bc9e65fe1cff56163cc6629.bindPopup(popup_eb44662ee841156c659e509ea61f029e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a40ad648349319e96d049c03670b655 = L.circleMarker(\\n\",\n       \"                [25.7054, 100.1542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8947acec69d48be4b77027fbe7b4151 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10066892178aff8d2ce4ae487e0fc4ea = $(`&lt;div id=&quot;html_10066892178aff8d2ce4ae487e0fc4ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.1542             latitude:25.7054             PM2_5:21.56703911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8947acec69d48be4b77027fbe7b4151.setContent(html_10066892178aff8d2ce4ae487e0fc4ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a40ad648349319e96d049c03670b655.bindPopup(popup_a8947acec69d48be4b77027fbe7b4151)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d50b1ac081b0b2abbe48e9c791373328 = L.circleMarker(\\n\",\n       \"                [36.838, 118.0448],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bab064ef6041ca7a2500ac31c748c603 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c4eac1bb6f6968f46181f26933bf46c = $(`&lt;div id=&quot;html_5c4eac1bb6f6968f46181f26933bf46c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0448             latitude:36.838             PM2_5:53.40947075             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bab064ef6041ca7a2500ac31c748c603.setContent(html_5c4eac1bb6f6968f46181f26933bf46c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d50b1ac081b0b2abbe48e9c791373328.bindPopup(popup_bab064ef6041ca7a2500ac31c748c603)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab65902a78d17ac1becd2d09e6cd1807 = L.circleMarker(\\n\",\n       \"                [25.7759, 113.0348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e619816d99b4039aa3c1573f1194d0c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a8ac5ccc77732f7e896027a3721bdc3 = $(`&lt;div id=&quot;html_1a8ac5ccc77732f7e896027a3721bdc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0348             latitude:25.7759             PM2_5:36.1680791             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e619816d99b4039aa3c1573f1194d0c9.setContent(html_1a8ac5ccc77732f7e896027a3721bdc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab65902a78d17ac1becd2d09e6cd1807.bindPopup(popup_e619816d99b4039aa3c1573f1194d0c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c28d8a237337032f97def8ccc7a21385 = L.circleMarker(\\n\",\n       \"                [37.7805, 112.488],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e58084e0f2714c8e74990c7fa59637ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f568e6392801cef8111c65b5790b8bc = $(`&lt;div id=&quot;html_5f568e6392801cef8111c65b5790b8bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.488             latitude:37.7805             PM2_5:67.54843305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e58084e0f2714c8e74990c7fa59637ee.setContent(html_5f568e6392801cef8111c65b5790b8bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c28d8a237337032f97def8ccc7a21385.bindPopup(popup_e58084e0f2714c8e74990c7fa59637ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26ee3a5a24faefa22004cfe371382bab = L.circleMarker(\\n\",\n       \"                [31.0483, 112.2014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_143c57f45a2d96c92b4c53d6a483f6f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a17f7b940acb9a38b8c3951c4fe847c2 = $(`&lt;div id=&quot;html_a17f7b940acb9a38b8c3951c4fe847c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2014             latitude:31.0483             PM2_5:56.0724234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_143c57f45a2d96c92b4c53d6a483f6f9.setContent(html_a17f7b940acb9a38b8c3951c4fe847c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26ee3a5a24faefa22004cfe371382bab.bindPopup(popup_143c57f45a2d96c92b4c53d6a483f6f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9bd08855ddecd3ac94973fbe978a3906 = L.circleMarker(\\n\",\n       \"                [26.4214, 111.6156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71ae7ac20c06ad24f26364da812052f0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_284790ab4594ee57df74ac19ac38d5c7 = $(`&lt;div id=&quot;html_284790ab4594ee57df74ac19ac38d5c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6156             latitude:26.4214             PM2_5:44.47167139             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71ae7ac20c06ad24f26364da812052f0.setContent(html_284790ab4594ee57df74ac19ac38d5c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9bd08855ddecd3ac94973fbe978a3906.bindPopup(popup_71ae7ac20c06ad24f26364da812052f0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b31ec571d4eedbf232d64c8a468dcc64 = L.circleMarker(\\n\",\n       \"                [38.3228, 116.8709],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d47e9d4460d6a76d00191b25c410b25 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_842a2af768c5e3fa26d3ee545f54fe80 = $(`&lt;div id=&quot;html_842a2af768c5e3fa26d3ee545f54fe80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8709             latitude:38.3228             PM2_5:54.73184358             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d47e9d4460d6a76d00191b25c410b25.setContent(html_842a2af768c5e3fa26d3ee545f54fe80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b31ec571d4eedbf232d64c8a468dcc64.bindPopup(popup_3d47e9d4460d6a76d00191b25c410b25)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_840138a4f831f099d0d9c0af1bd76a58 = L.circleMarker(\\n\",\n       \"                [23.5739, 116.3594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c20ecdb069f4bbd55c5bac179f3a0e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d0c1220383ad865df8a84052ff18b83 = $(`&lt;div id=&quot;html_0d0c1220383ad865df8a84052ff18b83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3594             latitude:23.5739             PM2_5:28.48587571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c20ecdb069f4bbd55c5bac179f3a0e6.setContent(html_0d0c1220383ad865df8a84052ff18b83);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_840138a4f831f099d0d9c0af1bd76a58.bindPopup(popup_9c20ecdb069f4bbd55c5bac179f3a0e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73bdfcbcfaa9f1b7852d00708fbcd8e0 = L.circleMarker(\\n\",\n       \"                [25.2708, 110.3089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5d32207ac6c88acab8ebb0d86c33a9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a3984515478c2ea210f82790658f489 = $(`&lt;div id=&quot;html_4a3984515478c2ea210f82790658f489&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3089             latitude:25.2708             PM2_5:42.62952646             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5d32207ac6c88acab8ebb0d86c33a9d.setContent(html_4a3984515478c2ea210f82790658f489);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73bdfcbcfaa9f1b7852d00708fbcd8e0.bindPopup(popup_b5d32207ac6c88acab8ebb0d86c33a9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1aa18413f107dd0d1750861e54eaa314 = L.circleMarker(\\n\",\n       \"                [30.4183, 120.301],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e0ad46bb3d1eb3dfd2925af178a48b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f6dd7441ef9979f7e9ad358b3516af8 = $(`&lt;div id=&quot;html_7f6dd7441ef9979f7e9ad358b3516af8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.301             latitude:30.4183             PM2_5:38.71666667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e0ad46bb3d1eb3dfd2925af178a48b4.setContent(html_7f6dd7441ef9979f7e9ad358b3516af8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1aa18413f107dd0d1750861e54eaa314.bindPopup(popup_4e0ad46bb3d1eb3dfd2925af178a48b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f215d69cb4d4380457a47b9a0ea5ab9 = L.circleMarker(\\n\",\n       \"                [31.1956, 107.5069],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36d29b490501fedfdd80e1f3c1c02afd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d401adcc5cded549e7dac4634f5a6251 = $(`&lt;div id=&quot;html_d401adcc5cded549e7dac4634f5a6251&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5069             latitude:31.1956             PM2_5:49.24373259             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36d29b490501fedfdd80e1f3c1c02afd.setContent(html_d401adcc5cded549e7dac4634f5a6251);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f215d69cb4d4380457a47b9a0ea5ab9.bindPopup(popup_36d29b490501fedfdd80e1f3c1c02afd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_578b7b9626e61857250232c1a8fdbfb2 = L.circleMarker(\\n\",\n       \"                [31.4747, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_989cc904a0e61d67fa875468cd227b15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f96c46ce434998cc78319bab90e3517 = $(`&lt;div id=&quot;html_8f96c46ce434998cc78319bab90e3517&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:31.4747             PM2_5:44.43398876             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_989cc904a0e61d67fa875468cd227b15.setContent(html_8f96c46ce434998cc78319bab90e3517);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_578b7b9626e61857250232c1a8fdbfb2.bindPopup(popup_989cc904a0e61d67fa875468cd227b15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6cc81b4c0239c5ca95a72afab90608d = L.circleMarker(\\n\",\n       \"                [37.5002, 105.1971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6f85d9768ff42d01d039d46550ee3bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b057207c6161d9dc5d56ba261b7fff1c = $(`&lt;div id=&quot;html_b057207c6161d9dc5d56ba261b7fff1c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.1971             latitude:37.5002             PM2_5:38.00702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6f85d9768ff42d01d039d46550ee3bb.setContent(html_b057207c6161d9dc5d56ba261b7fff1c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6cc81b4c0239c5ca95a72afab90608d.bindPopup(popup_a6f85d9768ff42d01d039d46550ee3bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a6e446725f087d036f79c58f1d153d8 = L.circleMarker(\\n\",\n       \"                [36.7731, 119.1939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_453aea6796da42fc26e5cffb9a87cdb1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ff746beebdccb05023d3732920247ef = $(`&lt;div id=&quot;html_4ff746beebdccb05023d3732920247ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1939             latitude:36.7731             PM2_5:44.57843137             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_453aea6796da42fc26e5cffb9a87cdb1.setContent(html_4ff746beebdccb05023d3732920247ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a6e446725f087d036f79c58f1d153d8.bindPopup(popup_453aea6796da42fc26e5cffb9a87cdb1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ad1c563bd579b425e3e85f2d0c0e9af = L.circleMarker(\\n\",\n       \"                [39.5747, 116.7729],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96ea6b93274d036e420a51bf953222cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d90e5ffed3b0f3d40ecf7bff9600bb2f = $(`&lt;div id=&quot;html_d90e5ffed3b0f3d40ecf7bff9600bb2f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7729             latitude:39.5747             PM2_5:42.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96ea6b93274d036e420a51bf953222cc.setContent(html_d90e5ffed3b0f3d40ecf7bff9600bb2f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ad1c563bd579b425e3e85f2d0c0e9af.bindPopup(popup_96ea6b93274d036e420a51bf953222cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_108720f9dadf8803229723e6afe9f57d = L.circleMarker(\\n\",\n       \"                [35.4178, 119.4641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad5ddd2c891ceafff667472f90d2f2b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51532a4f07fc6361aae8962a649d5385 = $(`&lt;div id=&quot;html_51532a4f07fc6361aae8962a649d5385&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.4641             latitude:35.4178             PM2_5:41.96218487             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad5ddd2c891ceafff667472f90d2f2b6.setContent(html_51532a4f07fc6361aae8962a649d5385);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_108720f9dadf8803229723e6afe9f57d.bindPopup(popup_ad5ddd2c891ceafff667472f90d2f2b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_780a93eb656867598acd0dffea43c914 = L.circleMarker(\\n\",\n       \"                [29.9816, 103.0001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85699a511e79896f4d1d44013680e10f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c927cab1b9fd9bbaccb77d49723d2413 = $(`&lt;div id=&quot;html_c927cab1b9fd9bbaccb77d49723d2413&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0001             latitude:29.9816             PM2_5:48.52539683             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85699a511e79896f4d1d44013680e10f.setContent(html_c927cab1b9fd9bbaccb77d49723d2413);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_780a93eb656867598acd0dffea43c914.bindPopup(popup_85699a511e79896f4d1d44013680e10f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_965c8f5dec39e2c7472a29c191133536 = L.circleMarker(\\n\",\n       \"                [42.8953, 125.1567],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c7302e0fd5e31c70aa0fce732ad8742 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0dc78925cc51565121fc03fa0f15e8f9 = $(`&lt;div id=&quot;html_0dc78925cc51565121fc03fa0f15e8f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1567             latitude:42.8953             PM2_5:33.06657224             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c7302e0fd5e31c70aa0fce732ad8742.setContent(html_0dc78925cc51565121fc03fa0f15e8f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_965c8f5dec39e2c7472a29c191133536.bindPopup(popup_5c7302e0fd5e31c70aa0fce732ad8742)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bab0c547fba51cbca7a08fe86bf81440 = L.circleMarker(\\n\",\n       \"                [45.2924, 130.962],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b66319b00464934cf627663a86ccac96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_523d35b4f4d888ebc70bbdec04a20cc7 = $(`&lt;div id=&quot;html_523d35b4f4d888ebc70bbdec04a20cc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.962             latitude:45.2924             PM2_5:22.86111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b66319b00464934cf627663a86ccac96.setContent(html_523d35b4f4d888ebc70bbdec04a20cc7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bab0c547fba51cbca7a08fe86bf81440.bindPopup(popup_b66319b00464934cf627663a86ccac96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8a454d7ac79443a62e873c79640bb358 = L.circleMarker(\\n\",\n       \"                [35.0992, 117.4518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6d4783e2c0999f3d4c50fa4247fe5c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e1101255784f1efc2a0b3dfe7322542 = $(`&lt;div id=&quot;html_2e1101255784f1efc2a0b3dfe7322542&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4518             latitude:35.0992             PM2_5:49.70762712             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6d4783e2c0999f3d4c50fa4247fe5c3.setContent(html_2e1101255784f1efc2a0b3dfe7322542);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8a454d7ac79443a62e873c79640bb358.bindPopup(popup_b6d4783e2c0999f3d4c50fa4247fe5c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e855342ea08f3514287ef8fa625a34ce = L.circleMarker(\\n\",\n       \"                [23.5538, 113.589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f612ddc6f787d894b835043b27d03a98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2472ed226c0f6858588a3f13216594d = $(`&lt;div id=&quot;html_d2472ed226c0f6858588a3f13216594d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.589             latitude:23.5538             PM2_5:33.23537604             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f612ddc6f787d894b835043b27d03a98.setContent(html_d2472ed226c0f6858588a3f13216594d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e855342ea08f3514287ef8fa625a34ce.bindPopup(popup_f612ddc6f787d894b835043b27d03a98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_397f3dd1c54d02ef22bcc69f417bb024 = L.circleMarker(\\n\",\n       \"                [24.441, 98.578],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d23323e799860d4d5b9921255da9bd0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0995751205a8627bee8f0ef172f85a2a = $(`&lt;div id=&quot;html_0995751205a8627bee8f0ef172f85a2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.578             latitude:24.441             PM2_5:42.49019608             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d23323e799860d4d5b9921255da9bd0.setContent(html_0995751205a8627bee8f0ef172f85a2a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_397f3dd1c54d02ef22bcc69f417bb024.bindPopup(popup_4d23323e799860d4d5b9921255da9bd0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9f2afdbe9ed8a9bd779836b3cb820f6 = L.circleMarker(\\n\",\n       \"                [39.1082, 117.237],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60e6cbc2e5e93c40b380f4c64ba951fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f44eee1ddd5e8823879ae31dec61373 = $(`&lt;div id=&quot;html_3f44eee1ddd5e8823879ae31dec61373&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.237             latitude:39.1082             PM2_5:53.32777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60e6cbc2e5e93c40b380f4c64ba951fc.setContent(html_3f44eee1ddd5e8823879ae31dec61373);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9f2afdbe9ed8a9bd779836b3cb820f6.bindPopup(popup_60e6cbc2e5e93c40b380f4c64ba951fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3d554c9d6aef4f4e9ae009ef7050134 = L.circleMarker(\\n\",\n       \"                [25.4552, 119.0018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee9bb5d5788d1e8908310b1b214f9707 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d1ff4900f0f39d26ec77e14867545ea = $(`&lt;div id=&quot;html_2d1ff4900f0f39d26ec77e14867545ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0018             latitude:25.4552             PM2_5:31.57983193             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee9bb5d5788d1e8908310b1b214f9707.setContent(html_2d1ff4900f0f39d26ec77e14867545ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3d554c9d6aef4f4e9ae009ef7050134.bindPopup(popup_ee9bb5d5788d1e8908310b1b214f9707)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_140ba2cdaf5792dadcb3696a526492ec = L.circleMarker(\\n\",\n       \"                [31.317, 119.438],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88f71de4e7db696ea0b9b72ed943715f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b51c156ff5104b040327f466f5f0847 = $(`&lt;div id=&quot;html_5b51c156ff5104b040327f466f5f0847&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.438             latitude:31.317             PM2_5:41.8005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88f71de4e7db696ea0b9b72ed943715f.setContent(html_5b51c156ff5104b040327f466f5f0847);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_140ba2cdaf5792dadcb3696a526492ec.bindPopup(popup_88f71de4e7db696ea0b9b72ed943715f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5367b7224d741a1dfa95c66cb99eb91 = L.circleMarker(\\n\",\n       \"                [47.7222, 128.8736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_782e6f40781ac2232730e2156deb02f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2ea6ddb481f78f2ae5aca5378132799 = $(`&lt;div id=&quot;html_e2ea6ddb481f78f2ae5aca5378132799&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:128.8736             latitude:47.7222             PM2_5:17.74193548             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_782e6f40781ac2232730e2156deb02f2.setContent(html_e2ea6ddb481f78f2ae5aca5378132799);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5367b7224d741a1dfa95c66cb99eb91.bindPopup(popup_782e6f40781ac2232730e2156deb02f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_490435504fb6ba4c779066624cd178cc = L.circleMarker(\\n\",\n       \"                [38.86388889, 121.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18f1cfd39238665e901a4a2e735953fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5394c53f174b71dffe5e319c87fe47dd = $(`&lt;div id=&quot;html_5394c53f174b71dffe5e319c87fe47dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.625             latitude:38.86388889             PM2_5:25.54366197             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18f1cfd39238665e901a4a2e735953fe.setContent(html_5394c53f174b71dffe5e319c87fe47dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_490435504fb6ba4c779066624cd178cc.bindPopup(popup_18f1cfd39238665e901a4a2e735953fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b582a4552c7eff232450ac2bfb0b3b0c = L.circleMarker(\\n\",\n       \"                [40.8369, 111.751],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_faf5093af8f602081238712e44a8e629 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70ac5ffb9a016b8a273fe89d6e5da6f4 = $(`&lt;div id=&quot;html_70ac5ffb9a016b8a273fe89d6e5da6f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.751             latitude:40.8369             PM2_5:38.55774648             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_faf5093af8f602081238712e44a8e629.setContent(html_70ac5ffb9a016b8a273fe89d6e5da6f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b582a4552c7eff232450ac2bfb0b3b0c.bindPopup(popup_faf5093af8f602081238712e44a8e629)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_010fd515a6543b91afcca0a2a5e1c096 = L.circleMarker(\\n\",\n       \"                [31.3019, 120.591],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b081815b49d2618716e08013a8bea2f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_322b2a559fe8ff2fe097f5d8ba9f0b12 = $(`&lt;div id=&quot;html_322b2a559fe8ff2fe097f5d8ba9f0b12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.591             latitude:31.3019             PM2_5:45.21527778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b081815b49d2618716e08013a8bea2f1.setContent(html_322b2a559fe8ff2fe097f5d8ba9f0b12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_010fd515a6543b91afcca0a2a5e1c096.bindPopup(popup_b081815b49d2618716e08013a8bea2f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba06adf566615703f212e1f1c431849b = L.circleMarker(\\n\",\n       \"                [46.6527, 126.9636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8652b2ef9429fa4faf2b5b5d6f68c720 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98b6b951867a423b0c70c8112d8701c5 = $(`&lt;div id=&quot;html_98b6b951867a423b0c70c8112d8701c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.9636             latitude:46.6527             PM2_5:30.71186441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8652b2ef9429fa4faf2b5b5d6f68c720.setContent(html_98b6b951867a423b0c70c8112d8701c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba06adf566615703f212e1f1c431849b.bindPopup(popup_8652b2ef9429fa4faf2b5b5d6f68c720)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d18f165ae0432a00a7db28828bbcaf0 = L.circleMarker(\\n\",\n       \"                [29.389, 106.513],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b67cf6a18650a705121f9cbb442014cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e577c9f78dc3ea75a87294ec437ccfe8 = $(`&lt;div id=&quot;html_e577c9f78dc3ea75a87294ec437ccfe8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.513             latitude:29.389             PM2_5:38.69390582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b67cf6a18650a705121f9cbb442014cc.setContent(html_e577c9f78dc3ea75a87294ec437ccfe8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d18f165ae0432a00a7db28828bbcaf0.bindPopup(popup_b67cf6a18650a705121f9cbb442014cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_080b4324e9edf4278d73603c3b94148d = L.circleMarker(\\n\",\n       \"                [31.9286, 102.1755],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1af7f8a7f7c1e3b41749100657936f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9ff126e8ab1440bc774f6229aa2a57a = $(`&lt;div id=&quot;html_e9ff126e8ab1440bc774f6229aa2a57a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1755             latitude:31.9286             PM2_5:4.474930362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1af7f8a7f7c1e3b41749100657936f3.setContent(html_e9ff126e8ab1440bc774f6229aa2a57a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_080b4324e9edf4278d73603c3b94148d.bindPopup(popup_d1af7f8a7f7c1e3b41749100657936f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e395ae5551f28d6ca9b7b046ce5e7ce2 = L.circleMarker(\\n\",\n       \"                [40.2865, 116.17],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e923c92f6ce1282ba931b3ea0a74fbc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbb141c497c059ffbed96416459253c4 = $(`&lt;div id=&quot;html_fbb141c497c059ffbed96416459253c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.17             latitude:40.2865             PM2_5:48.08073654             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e923c92f6ce1282ba931b3ea0a74fbc4.setContent(html_fbb141c497c059ffbed96416459253c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e395ae5551f28d6ca9b7b046ce5e7ce2.bindPopup(popup_e923c92f6ce1282ba931b3ea0a74fbc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7cda9781b12e42d0a4f184c59c13c41b = L.circleMarker(\\n\",\n       \"                [32.6494, 110.78],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74324720d0f579f41ee9fd7cc6942cb0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ffe3fdd12f245cd13e1fd4b261cd60e = $(`&lt;div id=&quot;html_3ffe3fdd12f245cd13e1fd4b261cd60e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.78             latitude:32.6494             PM2_5:48.53703704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74324720d0f579f41ee9fd7cc6942cb0.setContent(html_3ffe3fdd12f245cd13e1fd4b261cd60e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7cda9781b12e42d0a4f184c59c13c41b.bindPopup(popup_74324720d0f579f41ee9fd7cc6942cb0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdca86c3d616a1ed74cdf963a8165319 = L.circleMarker(\\n\",\n       \"                [39.7294, 98.5023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b2be0e267348b16ffdf540b1a430552 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd29e8dfb4a043b8dad5d331d7068878 = $(`&lt;div id=&quot;html_dd29e8dfb4a043b8dad5d331d7068878&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5023             latitude:39.7294             PM2_5:34.2994429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b2be0e267348b16ffdf540b1a430552.setContent(html_dd29e8dfb4a043b8dad5d331d7068878);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdca86c3d616a1ed74cdf963a8165319.bindPopup(popup_6b2be0e267348b16ffdf540b1a430552)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fec8483e0c613aae9a4563e83b89d8d = L.circleMarker(\\n\",\n       \"                [27.2944, 105.31],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_003481418f6c5658e52e49f77918368f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24cb62c8e38c9c7adba702a52171476d = $(`&lt;div id=&quot;html_24cb62c8e38c9c7adba702a52171476d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.31             latitude:27.2944             PM2_5:31.77094972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_003481418f6c5658e52e49f77918368f.setContent(html_24cb62c8e38c9c7adba702a52171476d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fec8483e0c613aae9a4563e83b89d8d.bindPopup(popup_003481418f6c5658e52e49f77918368f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fba578288626ad7124932535c7a96d6 = L.circleMarker(\\n\",\n       \"                [21.2706, 110.3539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84ecef9cfaac6fb89f20c7dfe85db4df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b47d358912063550e89bcde292c5a5e6 = $(`&lt;div id=&quot;html_b47d358912063550e89bcde292c5a5e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3539             latitude:21.2706             PM2_5:25.63165266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84ecef9cfaac6fb89f20c7dfe85db4df.setContent(html_b47d358912063550e89bcde292c5a5e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fba578288626ad7124932535c7a96d6.bindPopup(popup_84ecef9cfaac6fb89f20c7dfe85db4df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb77f68ece74b1d23c53e56a38cbbea6 = L.circleMarker(\\n\",\n       \"                [23.5292, 116.4094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c77cb2185528120c60448ceb9832991 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7ffeb0cfb99649478a97d687db71906 = $(`&lt;div id=&quot;html_e7ffeb0cfb99649478a97d687db71906&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.4094             latitude:23.5292             PM2_5:32.23882682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c77cb2185528120c60448ceb9832991.setContent(html_e7ffeb0cfb99649478a97d687db71906);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb77f68ece74b1d23c53e56a38cbbea6.bindPopup(popup_3c77cb2185528120c60448ceb9832991)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_edbb1b4476a9e4b71fd3cadc7237cff3 = L.circleMarker(\\n\",\n       \"                [42.8939, 129.4892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71d5987c50f5e0a1de02052560f35717 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02faa1997d1b2ee0598fad8e8e5f6897 = $(`&lt;div id=&quot;html_02faa1997d1b2ee0598fad8e8e5f6897&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.4892             latitude:42.8939             PM2_5:17.38028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71d5987c50f5e0a1de02052560f35717.setContent(html_02faa1997d1b2ee0598fad8e8e5f6897);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_edbb1b4476a9e4b71fd3cadc7237cff3.bindPopup(popup_71d5987c50f5e0a1de02052560f35717)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d0749bbf5ab0fc6a4c90bf02d1d1b76 = L.circleMarker(\\n\",\n       \"                [40.9843, 117.9525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de03386c092566bc1dd82a75729fc812 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f234b76c5df6c179776387701c0a892f = $(`&lt;div id=&quot;html_f234b76c5df6c179776387701c0a892f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9525             latitude:40.9843             PM2_5:23.03760446             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de03386c092566bc1dd82a75729fc812.setContent(html_f234b76c5df6c179776387701c0a892f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d0749bbf5ab0fc6a4c90bf02d1d1b76.bindPopup(popup_de03386c092566bc1dd82a75729fc812)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a80168e13503b7c3c3214cc3721f7e2c = L.circleMarker(\\n\",\n       \"                [32.5, 80.1161],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5ebdfd2a89c63e58b2b36cf5ec1096e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dae10e98055b311a00efd4bcff55b95c = $(`&lt;div id=&quot;html_dae10e98055b311a00efd4bcff55b95c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.1161             latitude:32.5             PM2_5:16.11726384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5ebdfd2a89c63e58b2b36cf5ec1096e.setContent(html_dae10e98055b311a00efd4bcff55b95c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a80168e13503b7c3c3214cc3721f7e2c.bindPopup(popup_f5ebdfd2a89c63e58b2b36cf5ec1096e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_334beaa9ac939b2b29aedd5afe6f04a6 = L.circleMarker(\\n\",\n       \"                [34.1978, 108.985],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f02f945e38d585414fb9e76d3f1d6466 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3449e2d436c1551d809053fec6767112 = $(`&lt;div id=&quot;html_3449e2d436c1551d809053fec6767112&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.985             latitude:34.1978             PM2_5:65.46175637             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f02f945e38d585414fb9e76d3f1d6466.setContent(html_3449e2d436c1551d809053fec6767112);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_334beaa9ac939b2b29aedd5afe6f04a6.bindPopup(popup_f02f945e38d585414fb9e76d3f1d6466)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73ea1ad59bb4845c6ab802c866f33de1 = L.circleMarker(\\n\",\n       \"                [36.7019, 119.12],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_369cc0b249b3da417bd328988edacdf5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_64b363d1fc903d2b6ef4312e2b0694c0 = $(`&lt;div id=&quot;html_64b363d1fc903d2b6ef4312e2b0694c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.12             latitude:36.7019             PM2_5:46.91504178             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_369cc0b249b3da417bd328988edacdf5.setContent(html_64b363d1fc903d2b6ef4312e2b0694c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73ea1ad59bb4845c6ab802c866f33de1.bindPopup(popup_369cc0b249b3da417bd328988edacdf5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00952760034d5d48d7e0a20d3c522899 = L.circleMarker(\\n\",\n       \"                [43.8748, 125.3649],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ec96cc4d02f1f27524ff926af7bef6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e22e9b62b51671bcfe3796a9342c3718 = $(`&lt;div id=&quot;html_e22e9b62b51671bcfe3796a9342c3718&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.3649             latitude:43.8748             PM2_5:29.41114458             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ec96cc4d02f1f27524ff926af7bef6e.setContent(html_e22e9b62b51671bcfe3796a9342c3718);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00952760034d5d48d7e0a20d3c522899.bindPopup(popup_3ec96cc4d02f1f27524ff926af7bef6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1746017a59653b8f3d0aaf6b20a8fa4e = L.circleMarker(\\n\",\n       \"                [43.6156, 122.3039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3dc58cc4c6cbb44493f6b8cd37a7b001 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ea3346f5e77c1e914176818510b757f = $(`&lt;div id=&quot;html_0ea3346f5e77c1e914176818510b757f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.3039             latitude:43.6156             PM2_5:22.00710227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3dc58cc4c6cbb44493f6b8cd37a7b001.setContent(html_0ea3346f5e77c1e914176818510b757f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1746017a59653b8f3d0aaf6b20a8fa4e.bindPopup(popup_3dc58cc4c6cbb44493f6b8cd37a7b001)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6647a9961c6000ec84eae4f46b833240 = L.circleMarker(\\n\",\n       \"                [36.5819, 101.834],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a108e901a7ff3aea34ddf6432014efa0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ddcf3c88b6abc76a2a12cf957658889 = $(`&lt;div id=&quot;html_0ddcf3c88b6abc76a2a12cf957658889&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.834             latitude:36.5819             PM2_5:64.51694915             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a108e901a7ff3aea34ddf6432014efa0.setContent(html_0ddcf3c88b6abc76a2a12cf957658889);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6647a9961c6000ec84eae4f46b833240.bindPopup(popup_a108e901a7ff3aea34ddf6432014efa0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d9dfe97e575d6d6702fd3518e37e05f = L.circleMarker(\\n\",\n       \"                [37.43445, 118.696],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2cbd68d172a122ace95ad77a0141c25c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a163aea86cb24def765dd49c98591843 = $(`&lt;div id=&quot;html_a163aea86cb24def765dd49c98591843&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.696             latitude:37.43445             PM2_5:50.83479532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2cbd68d172a122ace95ad77a0141c25c.setContent(html_a163aea86cb24def765dd49c98591843);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d9dfe97e575d6d6702fd3518e37e05f.bindPopup(popup_2cbd68d172a122ace95ad77a0141c25c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ee7e0680933418002828e808a973c44 = L.circleMarker(\\n\",\n       \"                [29.5822, 105.0406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec5ed4607f0967683ff5be54ec1522e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c140f3a3239b0e648b1102db03a94abd = $(`&lt;div id=&quot;html_c140f3a3239b0e648b1102db03a94abd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0406             latitude:29.5822             PM2_5:34.67746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec5ed4607f0967683ff5be54ec1522e6.setContent(html_c140f3a3239b0e648b1102db03a94abd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ee7e0680933418002828e808a973c44.bindPopup(popup_ec5ed4607f0967683ff5be54ec1522e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33f14e0dc5403ea6fa896c49a1c7086a = L.circleMarker(\\n\",\n       \"                [25.0311, 117.0151],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99880379f84ffdffda3cc3a0247510f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08700b36a3e0d85af483e56f3198ad41 = $(`&lt;div id=&quot;html_08700b36a3e0d85af483e56f3198ad41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0151             latitude:25.0311             PM2_5:21.51805556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99880379f84ffdffda3cc3a0247510f3.setContent(html_08700b36a3e0d85af483e56f3198ad41);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33f14e0dc5403ea6fa896c49a1c7086a.bindPopup(popup_99880379f84ffdffda3cc3a0247510f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_112ed7e70c9c85616bce70d59e5aa6f2 = L.circleMarker(\\n\",\n       \"                [34.3739, 107.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca73f6f1883e19f163ad84d27cd3e174 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2e419a4bf02c1b1a80ed7b03a7d08bb = $(`&lt;div id=&quot;html_b2e419a4bf02c1b1a80ed7b03a7d08bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1186             latitude:34.3739             PM2_5:48.6103352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca73f6f1883e19f163ad84d27cd3e174.setContent(html_b2e419a4bf02c1b1a80ed7b03a7d08bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_112ed7e70c9c85616bce70d59e5aa6f2.bindPopup(popup_ca73f6f1883e19f163ad84d27cd3e174)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b55848ebb062d08bb4c8030d308e98c8 = L.circleMarker(\\n\",\n       \"                [37.4514, 105.0197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37d427cf9ca120313af5bbead53faed1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d27fdea5c97602eb942735eac923008 = $(`&lt;div id=&quot;html_4d27fdea5c97602eb942735eac923008&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0197             latitude:37.4514             PM2_5:32.86182336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37d427cf9ca120313af5bbead53faed1.setContent(html_4d27fdea5c97602eb942735eac923008);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b55848ebb062d08bb4c8030d308e98c8.bindPopup(popup_37d427cf9ca120313af5bbead53faed1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e12a8ad27456317c88c20e29b33c01de = L.circleMarker(\\n\",\n       \"                [36.6525, 119.1638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef889ef71afa814eceaab00aa3b55ef8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dad4212167801bbb36c37e587db5451d = $(`&lt;div id=&quot;html_dad4212167801bbb36c37e587db5451d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1638             latitude:36.6525             PM2_5:45.55665722             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef889ef71afa814eceaab00aa3b55ef8.setContent(html_dad4212167801bbb36c37e587db5451d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e12a8ad27456317c88c20e29b33c01de.bindPopup(popup_ef889ef71afa814eceaab00aa3b55ef8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8346760894e90f001aaa1ccea189ff00 = L.circleMarker(\\n\",\n       \"                [31.3839, 118.4022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_72a4b7ddba011fbf7e474a4dc2ef3fa0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99114cdeacf71085bee14570a81c1bb9 = $(`&lt;div id=&quot;html_99114cdeacf71085bee14570a81c1bb9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4022             latitude:31.3839             PM2_5:48.11772853             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_72a4b7ddba011fbf7e474a4dc2ef3fa0.setContent(html_99114cdeacf71085bee14570a81c1bb9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8346760894e90f001aaa1ccea189ff00.bindPopup(popup_72a4b7ddba011fbf7e474a4dc2ef3fa0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e80b28915ed26633573192c2a65bea9 = L.circleMarker(\\n\",\n       \"                [34.5021, 109.4266],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1ad6c92ac67e4e4f6e5346a060aeade = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38b2f5e3c2ad68c6bca3e0256ea9b4e9 = $(`&lt;div id=&quot;html_38b2f5e3c2ad68c6bca3e0256ea9b4e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4266             latitude:34.5021             PM2_5:61.24373259             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1ad6c92ac67e4e4f6e5346a060aeade.setContent(html_38b2f5e3c2ad68c6bca3e0256ea9b4e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e80b28915ed26633573192c2a65bea9.bindPopup(popup_f1ad6c92ac67e4e4f6e5346a060aeade)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36155c0e4d731f221a9fe8fff4065d3d = L.circleMarker(\\n\",\n       \"                [31.7386, 117.278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35aac6836ca2160697400318e0d7e7ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d60a91101b840bbdbd4de4638a2184be = $(`&lt;div id=&quot;html_d60a91101b840bbdbd4de4638a2184be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.278             latitude:31.7386             PM2_5:49.27824859             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35aac6836ca2160697400318e0d7e7ff.setContent(html_d60a91101b840bbdbd4de4638a2184be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36155c0e4d731f221a9fe8fff4065d3d.bindPopup(popup_35aac6836ca2160697400318e0d7e7ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d5a91a86be9245ed674b8083b954ac9 = L.circleMarker(\\n\",\n       \"                [26.9258, 112.6194],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73ec9b71601de7b37c859b5bb1263ba2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c44b4088248a1d846c815f10ccad7bba = $(`&lt;div id=&quot;html_c44b4088248a1d846c815f10ccad7bba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6194             latitude:26.9258             PM2_5:41.8531856             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73ec9b71601de7b37c859b5bb1263ba2.setContent(html_c44b4088248a1d846c815f10ccad7bba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d5a91a86be9245ed674b8083b954ac9.bindPopup(popup_73ec9b71601de7b37c859b5bb1263ba2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9708f2e732dedd23aff703add74569e2 = L.circleMarker(\\n\",\n       \"                [36.0464, 103.831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8cd7dd79834b016b52226463854a02fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22f538631a4fa2340cd6b7b2fecc6ada = $(`&lt;div id=&quot;html_22f538631a4fa2340cd6b7b2fecc6ada&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.831             latitude:36.0464             PM2_5:55.54131054             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8cd7dd79834b016b52226463854a02fb.setContent(html_22f538631a4fa2340cd6b7b2fecc6ada);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9708f2e732dedd23aff703add74569e2.bindPopup(popup_8cd7dd79834b016b52226463854a02fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91876761983ab56743b2116458ef06f9 = L.circleMarker(\\n\",\n       \"                [26.6607, 119.5202],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8cee718803457df72c3ff4527d74fbe0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78c5c3aef1e7495276129ea4c96f6d72 = $(`&lt;div id=&quot;html_78c5c3aef1e7495276129ea4c96f6d72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5202             latitude:26.6607             PM2_5:32.12569832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8cee718803457df72c3ff4527d74fbe0.setContent(html_78c5c3aef1e7495276129ea4c96f6d72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91876761983ab56743b2116458ef06f9.bindPopup(popup_8cee718803457df72c3ff4527d74fbe0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e92f91d7b4e8992f5427c3901f7afa0 = L.circleMarker(\\n\",\n       \"                [27.8403, 112.9118],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f533214275311f713e7380decf0e1a92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_feab5f1f57850902704eb08037e55665 = $(`&lt;div id=&quot;html_feab5f1f57850902704eb08037e55665&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9118             latitude:27.8403             PM2_5:48.11731844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f533214275311f713e7380decf0e1a92.setContent(html_feab5f1f57850902704eb08037e55665);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e92f91d7b4e8992f5427c3901f7afa0.bindPopup(popup_f533214275311f713e7380decf0e1a92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81c4d754cfa1361fa9221ce2e97ef3c4 = L.circleMarker(\\n\",\n       \"                [35.7306, 114.2878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ccbcd8066fbaaf4407dc9a967b73dcd3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1fd9802a42e9510bf07934a303220401 = $(`&lt;div id=&quot;html_1fd9802a42e9510bf07934a303220401&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2878             latitude:35.7306             PM2_5:52.82686981             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ccbcd8066fbaaf4407dc9a967b73dcd3.setContent(html_1fd9802a42e9510bf07934a303220401);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81c4d754cfa1361fa9221ce2e97ef3c4.bindPopup(popup_ccbcd8066fbaaf4407dc9a967b73dcd3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_610c3dffeec3df5ebdbccf0c68baad30 = L.circleMarker(\\n\",\n       \"                [34.6258, 112.4275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1779371a490e877e9f00bccce7a990f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d12c8ede15c5e9449aa3f294c350672b = $(`&lt;div id=&quot;html_d12c8ede15c5e9449aa3f294c350672b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4275             latitude:34.6258             PM2_5:63.49719888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1779371a490e877e9f00bccce7a990f9.setContent(html_d12c8ede15c5e9449aa3f294c350672b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_610c3dffeec3df5ebdbccf0c68baad30.bindPopup(popup_1779371a490e877e9f00bccce7a990f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45ac0eb8c4e76c0e267b727f6665c504 = L.circleMarker(\\n\",\n       \"                [35.767, 115.0772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9558594e448cc241b92e1738d0fffcc6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a68aeec13401597f17170e981f17a04 = $(`&lt;div id=&quot;html_6a68aeec13401597f17170e981f17a04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0772             latitude:35.767             PM2_5:57.44803371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9558594e448cc241b92e1738d0fffcc6.setContent(html_6a68aeec13401597f17170e981f17a04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45ac0eb8c4e76c0e267b727f6665c504.bindPopup(popup_9558594e448cc241b92e1738d0fffcc6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffeda4e74e711fc8ceeceb07daeabcab = L.circleMarker(\\n\",\n       \"                [22.5545, 114.1063],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf724d10eca6879ba76376d012603153 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eed82cda296dc959854d52c59da91d76 = $(`&lt;div id=&quot;html_eed82cda296dc959854d52c59da91d76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1063             latitude:22.5545             PM2_5:27.20926966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf724d10eca6879ba76376d012603153.setContent(html_eed82cda296dc959854d52c59da91d76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffeda4e74e711fc8ceeceb07daeabcab.bindPopup(popup_cf724d10eca6879ba76376d012603153)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_710b37f71acc3e3235a6475d80df22be = L.circleMarker(\\n\",\n       \"                [32.9917, 112.5192],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_618b2ebec9bdf70b82830d01f7192bf1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f2eafed5f2210dcf255def6b78a3851 = $(`&lt;div id=&quot;html_8f2eafed5f2210dcf255def6b78a3851&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5192             latitude:32.9917             PM2_5:62.29189944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_618b2ebec9bdf70b82830d01f7192bf1.setContent(html_8f2eafed5f2210dcf255def6b78a3851);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_710b37f71acc3e3235a6475d80df22be.bindPopup(popup_618b2ebec9bdf70b82830d01f7192bf1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f946808ce890c3fb747cd09270e6793e = L.circleMarker(\\n\",\n       \"                [23.3993, 103.3772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb44a73881689bdd8c7a3b9ad6ece195 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c31d91212ff061f73657d90dfaa76c48 = $(`&lt;div id=&quot;html_c31d91212ff061f73657d90dfaa76c48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.3772             latitude:23.3993             PM2_5:26.65198864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb44a73881689bdd8c7a3b9ad6ece195.setContent(html_c31d91212ff061f73657d90dfaa76c48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f946808ce890c3fb747cd09270e6793e.bindPopup(popup_bb44a73881689bdd8c7a3b9ad6ece195)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_780d8d33fa14b228d39a939930536118 = L.circleMarker(\\n\",\n       \"                [23.2775, 116.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3da46ccb58b2c52ddffdd4787ef3aefb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_688bec9b116b04bc960747e8ae0eff3e = $(`&lt;div id=&quot;html_688bec9b116b04bc960747e8ae0eff3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7258             latitude:23.2775             PM2_5:21.45567867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3da46ccb58b2c52ddffdd4787ef3aefb.setContent(html_688bec9b116b04bc960747e8ae0eff3e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_780d8d33fa14b228d39a939930536118.bindPopup(popup_3da46ccb58b2c52ddffdd4787ef3aefb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7615bbbcc212be5a74a6f0a510236097 = L.circleMarker(\\n\",\n       \"                [39.8129, 110.0023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf225e006120a3889c8bc38268bb2367 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4f35bc2d544b67e077df8dd26826777 = $(`&lt;div id=&quot;html_b4f35bc2d544b67e077df8dd26826777&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0023             latitude:39.8129             PM2_5:27.22957746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf225e006120a3889c8bc38268bb2367.setContent(html_b4f35bc2d544b67e077df8dd26826777);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7615bbbcc212be5a74a6f0a510236097.bindPopup(popup_cf225e006120a3889c8bc38268bb2367)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97af6f4c91e164a4e39f0b8edffdd9ac = L.circleMarker(\\n\",\n       \"                [23.0916, 113.348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f503df5f87fd4d872cf3fe4a2de0a26 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f135ced27c10a895b51d7957b66a35b = $(`&lt;div id=&quot;html_8f135ced27c10a895b51d7957b66a35b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.348             latitude:23.0916             PM2_5:31.47632312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f503df5f87fd4d872cf3fe4a2de0a26.setContent(html_8f135ced27c10a895b51d7957b66a35b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97af6f4c91e164a4e39f0b8edffdd9ac.bindPopup(popup_3f503df5f87fd4d872cf3fe4a2de0a26)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d886983bcbaa6aabad10a900eb8d106 = L.circleMarker(\\n\",\n       \"                [24.8885, 102.821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc1a312d86a1663a2b224d82875ad947 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2922d1b721310374f3dd8faa1984173 = $(`&lt;div id=&quot;html_e2922d1b721310374f3dd8faa1984173&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.821             latitude:24.8885             PM2_5:22.06388889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc1a312d86a1663a2b224d82875ad947.setContent(html_e2922d1b721310374f3dd8faa1984173);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d886983bcbaa6aabad10a900eb8d106.bindPopup(popup_fc1a312d86a1663a2b224d82875ad947)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11a1d8dfacd494de86caa2a7018372a4 = L.circleMarker(\\n\",\n       \"                [47.203, 123.6261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_179646cf6a976bbd29f21539e1e0012c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c6fca812b8348b1417ce198b6c076f4 = $(`&lt;div id=&quot;html_5c6fca812b8348b1417ce198b6c076f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.6261             latitude:47.203             PM2_5:26.81497175             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_179646cf6a976bbd29f21539e1e0012c.setContent(html_5c6fca812b8348b1417ce198b6c076f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11a1d8dfacd494de86caa2a7018372a4.bindPopup(popup_179646cf6a976bbd29f21539e1e0012c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d24e2605cb7f055e76449faab41b051f = L.circleMarker(\\n\",\n       \"                [34.3731, 109.2186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_192dc986e1cbbdc0ec959f1d129573d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2d898364e7dddd57081c58a3f24aab9 = $(`&lt;div id=&quot;html_e2d898364e7dddd57081c58a3f24aab9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2186             latitude:34.3731             PM2_5:59.05270655             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_192dc986e1cbbdc0ec959f1d129573d0.setContent(html_e2d898364e7dddd57081c58a3f24aab9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d24e2605cb7f055e76449faab41b051f.bindPopup(popup_192dc986e1cbbdc0ec959f1d129573d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64b704ec9fd606374e4af4a6e78b8290 = L.circleMarker(\\n\",\n       \"                [40.5905, 110.0067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d298a6c0d38009f43ff79ac8aaedbfa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d2251a77dd2ba21c1c0dfb3d9f25dc7 = $(`&lt;div id=&quot;html_1d2251a77dd2ba21c1c0dfb3d9f25dc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0067             latitude:40.5905             PM2_5:45.84818942             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d298a6c0d38009f43ff79ac8aaedbfa.setContent(html_1d2251a77dd2ba21c1c0dfb3d9f25dc7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64b704ec9fd606374e4af4a6e78b8290.bindPopup(popup_1d298a6c0d38009f43ff79ac8aaedbfa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cda3ce320bb41b6df5964b5ff890298c = L.circleMarker(\\n\",\n       \"                [37.3753, 97.3731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c07b3af54840f305d6202d67cb3a6c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb9bd2fba9d87b8ada7cf45e5a8d7721 = $(`&lt;div id=&quot;html_eb9bd2fba9d87b8ada7cf45e5a8d7721&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.3731             latitude:37.3753             PM2_5:28.27777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c07b3af54840f305d6202d67cb3a6c0.setContent(html_eb9bd2fba9d87b8ada7cf45e5a8d7721);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cda3ce320bb41b6df5964b5ff890298c.bindPopup(popup_5c07b3af54840f305d6202d67cb3a6c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4673ed9f2111a623c1487767e1c93892 = L.circleMarker(\\n\",\n       \"                [28.6047, 112.3347],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3cebe675e1d2c1963e03df7e7a0c4094 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6dc4d5b7ac6f6bd9f602f9e19ceda94 = $(`&lt;div id=&quot;html_a6dc4d5b7ac6f6bd9f602f9e19ceda94&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3347             latitude:28.6047             PM2_5:29.37283237             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3cebe675e1d2c1963e03df7e7a0c4094.setContent(html_a6dc4d5b7ac6f6bd9f602f9e19ceda94);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4673ed9f2111a623c1487767e1c93892.bindPopup(popup_3cebe675e1d2c1963e03df7e7a0c4094)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdd493003a1e30efd20f298ead774966 = L.circleMarker(\\n\",\n       \"                [31.0935, 120.978],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22a6e8773bbe85300ecb84b7fb332525 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0cdad475c8a620fdd784c83acf26e61 = $(`&lt;div id=&quot;html_e0cdad475c8a620fdd784c83acf26e61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.978             latitude:31.0935             PM2_5:48.90921788             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22a6e8773bbe85300ecb84b7fb332525.setContent(html_e0cdad475c8a620fdd784c83acf26e61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdd493003a1e30efd20f298ead774966.bindPopup(popup_22a6e8773bbe85300ecb84b7fb332525)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58a1881934b77a20e4fc90c84fd19ec3 = L.circleMarker(\\n\",\n       \"                [38.49494, 106.1024],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1761891d56e38ed557dfb6f80058a39d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae7f03b6dbd671c6862505ee7acdd6aa = $(`&lt;div id=&quot;html_ae7f03b6dbd671c6862505ee7acdd6aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1024             latitude:38.49494             PM2_5:53.02661064             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1761891d56e38ed557dfb6f80058a39d.setContent(html_ae7f03b6dbd671c6862505ee7acdd6aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58a1881934b77a20e4fc90c84fd19ec3.bindPopup(popup_1761891d56e38ed557dfb6f80058a39d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_538b396177d531f95026db18792ab7db = L.circleMarker(\\n\",\n       \"                [37.062, 114.4854],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2333494b1e241ab1d4c87b86969d6db1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f966f93c3861fbcbcabf1da1f64f5870 = $(`&lt;div id=&quot;html_f966f93c3861fbcbcabf1da1f64f5870&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4854             latitude:37.062             PM2_5:68.37955182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2333494b1e241ab1d4c87b86969d6db1.setContent(html_f966f93c3861fbcbcabf1da1f64f5870);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_538b396177d531f95026db18792ab7db.bindPopup(popup_2333494b1e241ab1d4c87b86969d6db1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a76a36bcb6839ff8761bd43359e35b5 = L.circleMarker(\\n\",\n       \"                [36.6114, 116.988],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4cf66fca936dc814130d3516fef521fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef7e429d2adb7bbaa2ae51e8d76f55c0 = $(`&lt;div id=&quot;html_ef7e429d2adb7bbaa2ae51e8d76f55c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.988             latitude:36.6114             PM2_5:53.2592068             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4cf66fca936dc814130d3516fef521fc.setContent(html_ef7e429d2adb7bbaa2ae51e8d76f55c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a76a36bcb6839ff8761bd43359e35b5.bindPopup(popup_4cf66fca936dc814130d3516fef521fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2166f816a752106befd8bdc69d38dbb8 = L.circleMarker(\\n\",\n       \"                [36.865, 120.537],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_480280e9bbbde4b430d805fdecd924ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3104852b84a19699220549069b677b3b = $(`&lt;div id=&quot;html_3104852b84a19699220549069b677b3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.537             latitude:36.865             PM2_5:33.85582822             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_480280e9bbbde4b430d805fdecd924ad.setContent(html_3104852b84a19699220549069b677b3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2166f816a752106befd8bdc69d38dbb8.bindPopup(popup_480280e9bbbde4b430d805fdecd924ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1a7c868fbc1b6cafeff58271f3f080b = L.circleMarker(\\n\",\n       \"                [44.5952, 129.5902],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e3480cf9254e7c9f7e5b2f7d3d65304 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c644b21f30289a54be2460bdd0c27bd8 = $(`&lt;div id=&quot;html_c644b21f30289a54be2460bdd0c27bd8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.5902             latitude:44.5952             PM2_5:22.29411765             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e3480cf9254e7c9f7e5b2f7d3d65304.setContent(html_c644b21f30289a54be2460bdd0c27bd8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1a7c868fbc1b6cafeff58271f3f080b.bindPopup(popup_5e3480cf9254e7c9f7e5b2f7d3d65304)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_efa670b31c0241122987db27505944ce = L.circleMarker(\\n\",\n       \"                [29.1389, 110.48],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_547f9a6e5c3cda7c820f817f0c4e61e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd280b1fd3eb749da551c30c0eb1e7b3 = $(`&lt;div id=&quot;html_fd280b1fd3eb749da551c30c0eb1e7b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.48             latitude:29.1389             PM2_5:45.04469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_547f9a6e5c3cda7c820f817f0c4e61e8.setContent(html_fd280b1fd3eb749da551c30c0eb1e7b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_efa670b31c0241122987db27505944ce.bindPopup(popup_547f9a6e5c3cda7c820f817f0c4e61e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c1cafff8fd5549b09f1f2a735f8df4c = L.circleMarker(\\n\",\n       \"                [27.7231, 109.1794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f41e32a9523e6d9e665bc6da97a3046 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_468ebddeb52ef0c5a6f5e51ae713c11e = $(`&lt;div id=&quot;html_468ebddeb52ef0c5a6f5e51ae713c11e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.1794             latitude:27.7231             PM2_5:29.31284916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f41e32a9523e6d9e665bc6da97a3046.setContent(html_468ebddeb52ef0c5a6f5e51ae713c11e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c1cafff8fd5549b09f1f2a735f8df4c.bindPopup(popup_7f41e32a9523e6d9e665bc6da97a3046)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c2a8f4b8f745bb49373705aac2ab392 = L.circleMarker(\\n\",\n       \"                [25.0925, 104.9022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc91ee39a3dd54e9f81cf9974d9d4c77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f24f6c98076dbc04fa9bd8be55d67c9 = $(`&lt;div id=&quot;html_1f24f6c98076dbc04fa9bd8be55d67c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9022             latitude:25.0925             PM2_5:16.9625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc91ee39a3dd54e9f81cf9974d9d4c77.setContent(html_1f24f6c98076dbc04fa9bd8be55d67c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c2a8f4b8f745bb49373705aac2ab392.bindPopup(popup_fc91ee39a3dd54e9f81cf9974d9d4c77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afa1158292859a25e75bc7559a996454 = L.circleMarker(\\n\",\n       \"                [29.5817, 105.0653],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5db9762d080a6bc6df36a89a65d51db9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_acfe75a2d24a29178d90e0602e2d175a = $(`&lt;div id=&quot;html_acfe75a2d24a29178d90e0602e2d175a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0653             latitude:29.5817             PM2_5:37.25698324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5db9762d080a6bc6df36a89a65d51db9.setContent(html_acfe75a2d24a29178d90e0602e2d175a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afa1158292859a25e75bc7559a996454.bindPopup(popup_5db9762d080a6bc6df36a89a65d51db9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a722419dd5b7dc5a9277f57e1bc27835 = L.circleMarker(\\n\",\n       \"                [26.3003, 106.805],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_89a731ffda5a12280fd8b3311c4961d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a2da307af44b49eea444867aba8ed48 = $(`&lt;div id=&quot;html_3a2da307af44b49eea444867aba8ed48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.805             latitude:26.3003             PM2_5:34.97844828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_89a731ffda5a12280fd8b3311c4961d1.setContent(html_3a2da307af44b49eea444867aba8ed48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a722419dd5b7dc5a9277f57e1bc27835.bindPopup(popup_89a731ffda5a12280fd8b3311c4961d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf5fa1171873d55bf0bf0260b584f8aa = L.circleMarker(\\n\",\n       \"                [31.8766, 117.307],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41adb3ae45fec43a29f9045c4804adda = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ceea9f98c5a47350025cb9d918c4fb6 = $(`&lt;div id=&quot;html_0ceea9f98c5a47350025cb9d918c4fb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.307             latitude:31.8766             PM2_5:51.31754875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41adb3ae45fec43a29f9045c4804adda.setContent(html_0ceea9f98c5a47350025cb9d918c4fb6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf5fa1171873d55bf0bf0260b584f8aa.bindPopup(popup_41adb3ae45fec43a29f9045c4804adda)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9124f5d2157ffb1c5a9d2b13b540ade8 = L.circleMarker(\\n\",\n       \"                [42.8328, 93.4961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e390bec54582855a6d3d83ee39b2102 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4be061ab0001fa1338d83ec9e4dabf31 = $(`&lt;div id=&quot;html_4be061ab0001fa1338d83ec9e4dabf31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:93.4961             latitude:42.8328             PM2_5:32.6103352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e390bec54582855a6d3d83ee39b2102.setContent(html_4be061ab0001fa1338d83ec9e4dabf31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9124f5d2157ffb1c5a9d2b13b540ade8.bindPopup(popup_3e390bec54582855a6d3d83ee39b2102)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c950150da1976093cc4c49c62d64e232 = L.circleMarker(\\n\",\n       \"                [23.475, 111.3178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a22e025f8978e801815a97b463a817b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13fe6c626a28b7077fbb87d7d687cee8 = $(`&lt;div id=&quot;html_13fe6c626a28b7077fbb87d7d687cee8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3178             latitude:23.475             PM2_5:36.53910615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a22e025f8978e801815a97b463a817b2.setContent(html_13fe6c626a28b7077fbb87d7d687cee8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c950150da1976093cc4c49c62d64e232.bindPopup(popup_a22e025f8978e801815a97b463a817b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_787adaf423f49f32e1b51ffbfba87a27 = L.circleMarker(\\n\",\n       \"                [36.8088, 118.0482],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_772fb3a5fc3968eba67cc6918851a7b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fa4bf1d6351688cb127cd26c552b4ca = $(`&lt;div id=&quot;html_2fa4bf1d6351688cb127cd26c552b4ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0482             latitude:36.8088             PM2_5:53.3245614             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_772fb3a5fc3968eba67cc6918851a7b9.setContent(html_2fa4bf1d6351688cb127cd26c552b4ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_787adaf423f49f32e1b51ffbfba87a27.bindPopup(popup_772fb3a5fc3968eba67cc6918851a7b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b849c42a74596c9f4bfab9d9063561d = L.circleMarker(\\n\",\n       \"                [23.105, 113.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_841f7b246ec49bb2feab836179eabe41 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31eb7a164dd3f248d35efe9ba173874d = $(`&lt;div id=&quot;html_31eb7a164dd3f248d35efe9ba173874d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.261             latitude:23.105             PM2_5:35.15502793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_841f7b246ec49bb2feab836179eabe41.setContent(html_31eb7a164dd3f248d35efe9ba173874d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b849c42a74596c9f4bfab9d9063561d.bindPopup(popup_841f7b246ec49bb2feab836179eabe41)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5839a00b1d3384eb194326a262d8a220 = L.circleMarker(\\n\",\n       \"                [26.8956, 112.6211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af1ae8f48e92b38137463202ade94ffc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36a41a9bd2b03ddfb4e0f28751964491 = $(`&lt;div id=&quot;html_36a41a9bd2b03ddfb4e0f28751964491&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6211             latitude:26.8956             PM2_5:41.88227147             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af1ae8f48e92b38137463202ade94ffc.setContent(html_36a41a9bd2b03ddfb4e0f28751964491);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5839a00b1d3384eb194326a262d8a220.bindPopup(popup_af1ae8f48e92b38137463202ade94ffc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f60c86fe95af8b6d7d8db7837c2b22a = L.circleMarker(\\n\",\n       \"                [28.19, 112.9394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_697d35ad0a7ae7c13f059d2a8117cdfc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b6a52b6c820698f7c54335ed4300db1 = $(`&lt;div id=&quot;html_0b6a52b6c820698f7c54335ed4300db1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9394             latitude:28.19             PM2_5:52.06601124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_697d35ad0a7ae7c13f059d2a8117cdfc.setContent(html_0b6a52b6c820698f7c54335ed4300db1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f60c86fe95af8b6d7d8db7837c2b22a.bindPopup(popup_697d35ad0a7ae7c13f059d2a8117cdfc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2d23f66e3b1eb885aa642702df29e91 = L.circleMarker(\\n\",\n       \"                [47.2988, 123.945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8de83168725a1c4e431ed4046927c270 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f872c0e59aa3efde57f520bd9d7433e = $(`&lt;div id=&quot;html_4f872c0e59aa3efde57f520bd9d7433e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.945             latitude:47.2988             PM2_5:34.6183844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8de83168725a1c4e431ed4046927c270.setContent(html_4f872c0e59aa3efde57f520bd9d7433e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2d23f66e3b1eb885aa642702df29e91.bindPopup(popup_8de83168725a1c4e431ed4046927c270)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad329cfe13c4345df497fc059c20276b = L.circleMarker(\\n\",\n       \"                [29.6535, 116.0174],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d9a37f7745d78953f00c95325e9c73d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_051072fd3352b62cbe7ebf6c6867c0af = $(`&lt;div id=&quot;html_051072fd3352b62cbe7ebf6c6867c0af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0174             latitude:29.6535             PM2_5:37.94428969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d9a37f7745d78953f00c95325e9c73d.setContent(html_051072fd3352b62cbe7ebf6c6867c0af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad329cfe13c4345df497fc059c20276b.bindPopup(popup_2d9a37f7745d78953f00c95325e9c73d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5f986757e94111cee00b99049a268fa = L.circleMarker(\\n\",\n       \"                [30.9697, 117.8472],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7a432b294c49c06cb4980e7c26acc37 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b40a80c27076fd250addedb512ab41c = $(`&lt;div id=&quot;html_3b40a80c27076fd250addedb512ab41c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8472             latitude:30.9697             PM2_5:53.95621469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7a432b294c49c06cb4980e7c26acc37.setContent(html_3b40a80c27076fd250addedb512ab41c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5f986757e94111cee00b99049a268fa.bindPopup(popup_c7a432b294c49c06cb4980e7c26acc37)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd63df3be176d75d418420c67b065504 = L.circleMarker(\\n\",\n       \"                [34.3622, 107.2386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c84c6c93b820502b8dd96d293abf92f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_20b98ee8c91511cea9694d9911ba1e95 = $(`&lt;div id=&quot;html_20b98ee8c91511cea9694d9911ba1e95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.2386             latitude:34.3622             PM2_5:50.03760446             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c84c6c93b820502b8dd96d293abf92f7.setContent(html_20b98ee8c91511cea9694d9911ba1e95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd63df3be176d75d418420c67b065504.bindPopup(popup_c84c6c93b820502b8dd96d293abf92f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57d597136096481f4bbc834d534d178b = L.circleMarker(\\n\",\n       \"                [30.2747, 120.063],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3367ca836b69cd46957dd65d1a78e82e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a55c1d2e53c0398ee002b5c2ea4bf98a = $(`&lt;div id=&quot;html_a55c1d2e53c0398ee002b5c2ea4bf98a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.063             latitude:30.2747             PM2_5:37.63788301             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3367ca836b69cd46957dd65d1a78e82e.setContent(html_a55c1d2e53c0398ee002b5c2ea4bf98a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57d597136096481f4bbc834d534d178b.bindPopup(popup_3367ca836b69cd46957dd65d1a78e82e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_55d948a206b86416d019ff4edcadf9d7 = L.circleMarker(\\n\",\n       \"                [30.2756, 118.1371],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bdebfd711c4641eb191be7d37c24b8e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b97d867eef9ef3e8e8907ebeb72f040 = $(`&lt;div id=&quot;html_0b97d867eef9ef3e8e8907ebeb72f040&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1371             latitude:30.2756             PM2_5:23.8575419             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bdebfd711c4641eb191be7d37c24b8e9.setContent(html_0b97d867eef9ef3e8e8907ebeb72f040);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_55d948a206b86416d019ff4edcadf9d7.bindPopup(popup_bdebfd711c4641eb191be7d37c24b8e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c928968bfe10a463db3ce4599e3a0207 = L.circleMarker(\\n\",\n       \"                [33.627, 119.0122],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b33515f12d5f89c8a55472a69ca83e8d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3be8c6696ad58186d859773083989e89 = $(`&lt;div id=&quot;html_3be8c6696ad58186d859773083989e89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0122             latitude:33.627             PM2_5:49.44707521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b33515f12d5f89c8a55472a69ca83e8d.setContent(html_3be8c6696ad58186d859773083989e89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c928968bfe10a463db3ce4599e3a0207.bindPopup(popup_b33515f12d5f89c8a55472a69ca83e8d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fdf3b037e69e4025f755ebc8a38a9c54 = L.circleMarker(\\n\",\n       \"                [23.1617, 112.565],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35333fe62552e2df6925625987191cff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e60f29ce472618c442ec7f742aeb22d = $(`&lt;div id=&quot;html_8e60f29ce472618c442ec7f742aeb22d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.565             latitude:23.1617             PM2_5:39.39495798             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35333fe62552e2df6925625987191cff.setContent(html_8e60f29ce472618c442ec7f742aeb22d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fdf3b037e69e4025f755ebc8a38a9c54.bindPopup(popup_35333fe62552e2df6925625987191cff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c4586ad50cfc580fccbc3d92f556a18 = L.circleMarker(\\n\",\n       \"                [37.374, 120.399],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_778ba9ccb441d91891bccb1561104628 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5de4d7d609a83c3e7f35b25b360b543c = $(`&lt;div id=&quot;html_5de4d7d609a83c3e7f35b25b360b543c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.399             latitude:37.374             PM2_5:28.94929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_778ba9ccb441d91891bccb1561104628.setContent(html_5de4d7d609a83c3e7f35b25b360b543c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c4586ad50cfc580fccbc3d92f556a18.bindPopup(popup_778ba9ccb441d91891bccb1561104628)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3aaf1ec010e260588827c9a381bbd0b = L.circleMarker(\\n\",\n       \"                [40.1097, 113.3819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a13b6588c32870a4f6ce55b776e046a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f5fee1a6c51ba0ead5633db73191c7c9 = $(`&lt;div id=&quot;html_f5fee1a6c51ba0ead5633db73191c7c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3819             latitude:40.1097             PM2_5:39.15384615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a13b6588c32870a4f6ce55b776e046a2.setContent(html_f5fee1a6c51ba0ead5633db73191c7c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3aaf1ec010e260588827c9a381bbd0b.bindPopup(popup_a13b6588c32870a4f6ce55b776e046a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4135dce690d33c39613988b5efaeaaa3 = L.circleMarker(\\n\",\n       \"                [43.6801, 122.2532],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9245073f35948164fd716506a7e201e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f208aa37aa714ade1ee82be927b6646 = $(`&lt;div id=&quot;html_3f208aa37aa714ade1ee82be927b6646&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2532             latitude:43.6801             PM2_5:20.17887324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9245073f35948164fd716506a7e201e.setContent(html_3f208aa37aa714ade1ee82be927b6646);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4135dce690d33c39613988b5efaeaaa3.bindPopup(popup_b9245073f35948164fd716506a7e201e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b022af3832c06ab8fb04f8bcdac9998 = L.circleMarker(\\n\",\n       \"                [28.6428, 112.4067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8cac371acb46ed51274dcf02d35de651 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_763bc1719e362100173b56a36fab51d8 = $(`&lt;div id=&quot;html_763bc1719e362100173b56a36fab51d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4067             latitude:28.6428             PM2_5:41.83333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8cac371acb46ed51274dcf02d35de651.setContent(html_763bc1719e362100173b56a36fab51d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b022af3832c06ab8fb04f8bcdac9998.bindPopup(popup_8cac371acb46ed51274dcf02d35de651)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96c6d2256c21454b6e202dcd6fdf229f = L.circleMarker(\\n\",\n       \"                [27.8528, 113.13],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_436bcc27fbb2d662f9eacb22996ddaea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18f209d34bbb583c9e1bf30074919d65 = $(`&lt;div id=&quot;html_18f209d34bbb583c9e1bf30074919d65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.13             latitude:27.8528             PM2_5:43.01404494             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_436bcc27fbb2d662f9eacb22996ddaea.setContent(html_18f209d34bbb583c9e1bf30074919d65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96c6d2256c21454b6e202dcd6fdf229f.bindPopup(popup_436bcc27fbb2d662f9eacb22996ddaea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f917b8dee969ffc3ceb0079f2b88995 = L.circleMarker(\\n\",\n       \"                [34.5653, 105.8614],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c01f8da567635f6f29abeef3802452a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4e198cc2efb2484f91f540cfce965bb = $(`&lt;div id=&quot;html_d4e198cc2efb2484f91f540cfce965bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8614             latitude:34.5653             PM2_5:34.33286119             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c01f8da567635f6f29abeef3802452a.setContent(html_d4e198cc2efb2484f91f540cfce965bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f917b8dee969ffc3ceb0079f2b88995.bindPopup(popup_5c01f8da567635f6f29abeef3802452a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd6c3bfab3d5c8748d37ab151379c4f9 = L.circleMarker(\\n\",\n       \"                [44.1564, 87.9897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5f73fec9ec63f3121c5ba80739ff5fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_029fdb468dec203c185e870c1ca68990 = $(`&lt;div id=&quot;html_029fdb468dec203c185e870c1ca68990&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.9897             latitude:44.1564             PM2_5:10.12539185             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5f73fec9ec63f3121c5ba80739ff5fd.setContent(html_029fdb468dec203c185e870c1ca68990);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd6c3bfab3d5c8748d37ab151379c4f9.bindPopup(popup_a5f73fec9ec63f3121c5ba80739ff5fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f2dd5f65f437de844a17b2d2a4a6d59 = L.circleMarker(\\n\",\n       \"                [28.5808, 112.3458],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3579d9474d94a8ead2a2802797c15d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bbb4eb6ad3a00542c1f1ef03e7994973 = $(`&lt;div id=&quot;html_bbb4eb6ad3a00542c1f1ef03e7994973&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3458             latitude:28.5808             PM2_5:44.30736544             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3579d9474d94a8ead2a2802797c15d0.setContent(html_bbb4eb6ad3a00542c1f1ef03e7994973);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f2dd5f65f437de844a17b2d2a4a6d59.bindPopup(popup_d3579d9474d94a8ead2a2802797c15d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3aaacdfec56324235c1b8fee73d3bc81 = L.circleMarker(\\n\",\n       \"                [23.3667, 116.6794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b656d94af24dea129fd220d93511e67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92637ece53420cc9c01c3c46fe92a33f = $(`&lt;div id=&quot;html_92637ece53420cc9c01c3c46fe92a33f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6794             latitude:23.3667             PM2_5:24.04929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b656d94af24dea129fd220d93511e67.setContent(html_92637ece53420cc9c01c3c46fe92a33f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3aaacdfec56324235c1b8fee73d3bc81.bindPopup(popup_2b656d94af24dea129fd220d93511e67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d945ca03024fd57a7e11503f2ff4943 = L.circleMarker(\\n\",\n       \"                [34.2417, 117.192],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1ef1a368e6d6c99802365c60d507143 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58fdeb957b743aba0d6fe5272525e67d = $(`&lt;div id=&quot;html_58fdeb957b743aba0d6fe5272525e67d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.192             latitude:34.2417             PM2_5:62.62464986             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1ef1a368e6d6c99802365c60d507143.setContent(html_58fdeb957b743aba0d6fe5272525e67d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d945ca03024fd57a7e11503f2ff4943.bindPopup(popup_e1ef1a368e6d6c99802365c60d507143)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e52148674a7764cbe379a95fd7c2987 = L.circleMarker(\\n\",\n       \"                [37.9854, 112.549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37af169235b1cb1190d27b45a26d21ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c95c7f3d7cab7f49f08df34fc9878343 = $(`&lt;div id=&quot;html_c95c7f3d7cab7f49f08df34fc9878343&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.549             latitude:37.9854             PM2_5:57.60422535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37af169235b1cb1190d27b45a26d21ab.setContent(html_c95c7f3d7cab7f49f08df34fc9878343);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e52148674a7764cbe379a95fd7c2987.bindPopup(popup_37af169235b1cb1190d27b45a26d21ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76db10ff928dcacd6df055bd2dbb79bb = L.circleMarker(\\n\",\n       \"                [28.2053, 113.0792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77a3cd855881b55c3eece95d081ff5de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1af78183566a1675ee77d65e8bdcb373 = $(`&lt;div id=&quot;html_1af78183566a1675ee77d65e8bdcb373&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0792             latitude:28.2053             PM2_5:48.97075209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77a3cd855881b55c3eece95d081ff5de.setContent(html_1af78183566a1675ee77d65e8bdcb373);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76db10ff928dcacd6df055bd2dbb79bb.bindPopup(popup_77a3cd855881b55c3eece95d081ff5de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36edae816bf38a5c02d5b65d5b802739 = L.circleMarker(\\n\",\n       \"                [25.8471, 114.8905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01dc0ff4b42724cd0910f30fad2a8764 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5449ae0e4712e0695046d7af3a9903b7 = $(`&lt;div id=&quot;html_5449ae0e4712e0695046d7af3a9903b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8905             latitude:25.8471             PM2_5:45.81320225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01dc0ff4b42724cd0910f30fad2a8764.setContent(html_5449ae0e4712e0695046d7af3a9903b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36edae816bf38a5c02d5b65d5b802739.bindPopup(popup_01dc0ff4b42724cd0910f30fad2a8764)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_452ececdc359d2608f7e7d3d08d07767 = L.circleMarker(\\n\",\n       \"                [23.3594, 104.2533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b51c252d76a23d602d6483f5d4f3a08 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9fcb5e856f824705db70e2a375d24f61 = $(`&lt;div id=&quot;html_9fcb5e856f824705db70e2a375d24f61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.2533             latitude:23.3594             PM2_5:18.79008746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b51c252d76a23d602d6483f5d4f3a08.setContent(html_9fcb5e856f824705db70e2a375d24f61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_452ececdc359d2608f7e7d3d08d07767.bindPopup(popup_8b51c252d76a23d602d6483f5d4f3a08)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d580e5568883bebe08f102e1af994c4d = L.circleMarker(\\n\",\n       \"                [32.0572, 118.749],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a62d4f5874adc9ec1dbb75df10a6fc27 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2153e31a556d63f605cae06114f27e1 = $(`&lt;div id=&quot;html_c2153e31a556d63f605cae06114f27e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.749             latitude:32.0572             PM2_5:39.61416185             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a62d4f5874adc9ec1dbb75df10a6fc27.setContent(html_c2153e31a556d63f605cae06114f27e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d580e5568883bebe08f102e1af994c4d.bindPopup(popup_a62d4f5874adc9ec1dbb75df10a6fc27)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d8cd1bfa03318c558804f6ea8baaeef1 = L.circleMarker(\\n\",\n       \"                [30.1259, 104.6294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2480cb90d521fe5e8509b9727a6a4d64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e1f3c357de4639507d9fd90efb64de2 = $(`&lt;div id=&quot;html_4e1f3c357de4639507d9fd90efb64de2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6294             latitude:30.1259             PM2_5:38.15571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2480cb90d521fe5e8509b9727a6a4d64.setContent(html_4e1f3c357de4639507d9fd90efb64de2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d8cd1bfa03318c558804f6ea8baaeef1.bindPopup(popup_2480cb90d521fe5e8509b9727a6a4d64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19f617d657a8642b8fca6254f494a7c4 = L.circleMarker(\\n\",\n       \"                [25.4792, 118.981],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55d90e69664307016114b6ca572f1f83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_576f79abd2e0ed2712587c6fcd344f59 = $(`&lt;div id=&quot;html_576f79abd2e0ed2712587c6fcd344f59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.981             latitude:25.4792             PM2_5:28.92458101             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55d90e69664307016114b6ca572f1f83.setContent(html_576f79abd2e0ed2712587c6fcd344f59);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19f617d657a8642b8fca6254f494a7c4.bindPopup(popup_55d90e69664307016114b6ca572f1f83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9aeb49172b1345536af05020696e1cc = L.circleMarker(\\n\",\n       \"                [34.3474, 108.935],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aab62c85d8b339ffd8f3443049d302e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09b55314c1bc4938f6ec8131ab1e765a = $(`&lt;div id=&quot;html_09b55314c1bc4938f6ec8131ab1e765a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.935             latitude:34.3474             PM2_5:65.3767313             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aab62c85d8b339ffd8f3443049d302e8.setContent(html_09b55314c1bc4938f6ec8131ab1e765a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9aeb49172b1345536af05020696e1cc.bindPopup(popup_aab62c85d8b339ffd8f3443049d302e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2154f3f3afb1dae6f8b9add9388ec2f1 = L.circleMarker(\\n\",\n       \"                [34.7772, 111.1928],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f4a495da223f93ec2a0245ea43f86585 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e851aa472b7d468464f354510236b278 = $(`&lt;div id=&quot;html_e851aa472b7d468464f354510236b278&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1928             latitude:34.7772             PM2_5:55.32022472             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f4a495da223f93ec2a0245ea43f86585.setContent(html_e851aa472b7d468464f354510236b278);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2154f3f3afb1dae6f8b9add9388ec2f1.bindPopup(popup_f4a495da223f93ec2a0245ea43f86585)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fe4825e5c1e2f0c2b8035f2cc949b70 = L.circleMarker(\\n\",\n       \"                [34.9058, 108.9344],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52bb22d49f3b90411e0d25fbb5bf61fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7da499569955716da5bc58ab2566f4dc = $(`&lt;div id=&quot;html_7da499569955716da5bc58ab2566f4dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.9344             latitude:34.9058             PM2_5:49.65266106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52bb22d49f3b90411e0d25fbb5bf61fe.setContent(html_7da499569955716da5bc58ab2566f4dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fe4825e5c1e2f0c2b8035f2cc949b70.bindPopup(popup_52bb22d49f3b90411e0d25fbb5bf61fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d281acd7b30aa02d5c9d5f73a4e95f8 = L.circleMarker(\\n\",\n       \"                [37.7124, 112.469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75579ff6fa44a78d1833864e1856ea7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_995ccef48885f158c0bad611947f94c9 = $(`&lt;div id=&quot;html_995ccef48885f158c0bad611947f94c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.469             latitude:37.7124             PM2_5:76.31481481             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75579ff6fa44a78d1833864e1856ea7a.setContent(html_995ccef48885f158c0bad611947f94c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d281acd7b30aa02d5c9d5f73a4e95f8.bindPopup(popup_75579ff6fa44a78d1833864e1856ea7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf8ec27c7ee87ad3172f9ddcca3fec0e = L.circleMarker(\\n\",\n       \"                [23.4794, 111.26],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4dd831973df728b21fb7024f2e571be6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2125a61afa72b1ac4ab5be74342bfb0d = $(`&lt;div id=&quot;html_2125a61afa72b1ac4ab5be74342bfb0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.26             latitude:23.4794             PM2_5:40.91876751             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4dd831973df728b21fb7024f2e571be6.setContent(html_2125a61afa72b1ac4ab5be74342bfb0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf8ec27c7ee87ad3172f9ddcca3fec0e.bindPopup(popup_4dd831973df728b21fb7024f2e571be6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4f9eeab4804f30c31bdf33547b40c7f = L.circleMarker(\\n\",\n       \"                [28.7989, 104.6789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5922174b9542bbe2d63ce0d74cbb7546 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78c34cba26d65e9ff696584db1cd215b = $(`&lt;div id=&quot;html_78c34cba26d65e9ff696584db1cd215b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6789             latitude:28.7989             PM2_5:54.35955056             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5922174b9542bbe2d63ce0d74cbb7546.setContent(html_78c34cba26d65e9ff696584db1cd215b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4f9eeab4804f30c31bdf33547b40c7f.bindPopup(popup_5922174b9542bbe2d63ce0d74cbb7546)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f6a4bad21f3e76a0c1f2e0af7a68bdc = L.circleMarker(\\n\",\n       \"                [40.9359, 117.963],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ae3c602805ef31356e0213c3afe7ad6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf631d8d677350f2367e54a86b703f35 = $(`&lt;div id=&quot;html_cf631d8d677350f2367e54a86b703f35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.963             latitude:40.9359             PM2_5:32.35972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ae3c602805ef31356e0213c3afe7ad6.setContent(html_cf631d8d677350f2367e54a86b703f35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f6a4bad21f3e76a0c1f2e0af7a68bdc.bindPopup(popup_6ae3c602805ef31356e0213c3afe7ad6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05147eebd44e24a9e502f4b09c01b63a = L.circleMarker(\\n\",\n       \"                [30.6578, 104.054],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26bb4b7d9c26f04b4c5e54a6270c794a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_286d4dfad7ba5ae8c84335c44b6372fb = $(`&lt;div id=&quot;html_286d4dfad7ba5ae8c84335c44b6372fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.054             latitude:30.6578             PM2_5:56.91292135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26bb4b7d9c26f04b4c5e54a6270c794a.setContent(html_286d4dfad7ba5ae8c84335c44b6372fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05147eebd44e24a9e502f4b09c01b63a.bindPopup(popup_26bb4b7d9c26f04b4c5e54a6270c794a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a26373c852657cb6a391b73e608e085 = L.circleMarker(\\n\",\n       \"                [48.4658, 129.4942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aaf6755d027bfda6c92feec32a2ad87d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_877ba59735a36572a3015b218cd61878 = $(`&lt;div id=&quot;html_877ba59735a36572a3015b218cd61878&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.4942             latitude:48.4658             PM2_5:14.43993994             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aaf6755d027bfda6c92feec32a2ad87d.setContent(html_877ba59735a36572a3015b218cd61878);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a26373c852657cb6a391b73e608e085.bindPopup(popup_aaf6755d027bfda6c92feec32a2ad87d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd10a5e183ba800f21c39c2d4b25f4e5 = L.circleMarker(\\n\",\n       \"                [33.3681, 120.1631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30766ade8ab8d1f0c5870b3a952afac7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42fc2229518af96c07dfd40af01400a0 = $(`&lt;div id=&quot;html_42fc2229518af96c07dfd40af01400a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1631             latitude:33.3681             PM2_5:40.77653631             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30766ade8ab8d1f0c5870b3a952afac7.setContent(html_42fc2229518af96c07dfd40af01400a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd10a5e183ba800f21c39c2d4b25f4e5.bindPopup(popup_30766ade8ab8d1f0c5870b3a952afac7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_130854c712c57ea1a1467fd90cd7b6ba = L.circleMarker(\\n\",\n       \"                [30.65638889, 104.0238889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bafb9af0a121a985e607f313b9f78fb6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cb6010a58e9c98a0416139374b7cc06 = $(`&lt;div id=&quot;html_8cb6010a58e9c98a0416139374b7cc06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.0238889             latitude:30.65638889             PM2_5:56.7150838             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bafb9af0a121a985e607f313b9f78fb6.setContent(html_8cb6010a58e9c98a0416139374b7cc06);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_130854c712c57ea1a1467fd90cd7b6ba.bindPopup(popup_bafb9af0a121a985e607f313b9f78fb6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7343de82dafe89f472461233878b8ede = L.circleMarker(\\n\",\n       \"                [26.5928, 101.5769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43f0688b4f436c4d9517ec132baddedf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b08184fe70509c0f3dee721d226a9b6f = $(`&lt;div id=&quot;html_b08184fe70509c0f3dee721d226a9b6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.5769             latitude:26.5928             PM2_5:36.39972145             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43f0688b4f436c4d9517ec132baddedf.setContent(html_b08184fe70509c0f3dee721d226a9b6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7343de82dafe89f472461233878b8ede.bindPopup(popup_43f0688b4f436c4d9517ec132baddedf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc0bc4d2ebab29df3aee8e5d9cc6344f = L.circleMarker(\\n\",\n       \"                [32.645, 117.0083],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83478695876b736a0168787a998bee9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83225de5a96f2d9ce9b17f328409473a = $(`&lt;div id=&quot;html_83225de5a96f2d9ce9b17f328409473a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0083             latitude:32.645             PM2_5:60.11376404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83478695876b736a0168787a998bee9e.setContent(html_83225de5a96f2d9ce9b17f328409473a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc0bc4d2ebab29df3aee8e5d9cc6344f.bindPopup(popup_83478695876b736a0168787a998bee9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07bb2ae2dd87589463671f963c809bb8 = L.circleMarker(\\n\",\n       \"                [41.8864, 124.0878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bdad24fa025319f96942b85fcd3e1a57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0bfe0b67c7446061db314f840e4ba697 = $(`&lt;div id=&quot;html_0bfe0b67c7446061db314f840e4ba697&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.0878             latitude:41.8864             PM2_5:24.38515406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bdad24fa025319f96942b85fcd3e1a57.setContent(html_0bfe0b67c7446061db314f840e4ba697);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07bb2ae2dd87589463671f963c809bb8.bindPopup(popup_bdad24fa025319f96942b85fcd3e1a57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a55574688c6936d5484eda89307e64a = L.circleMarker(\\n\",\n       \"                [50.4269, 124.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43cd06c953b32fb1e40dd53677edb15a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36f9e7ee4d6c7487cf0fae0380e668ff = $(`&lt;div id=&quot;html_36f9e7ee4d6c7487cf0fae0380e668ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.1186             latitude:50.4269             PM2_5:16.56714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43cd06c953b32fb1e40dd53677edb15a.setContent(html_36f9e7ee4d6c7487cf0fae0380e668ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a55574688c6936d5484eda89307e64a.bindPopup(popup_43cd06c953b32fb1e40dd53677edb15a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_257047cde5cd2bd9b0194b599c6da813 = L.circleMarker(\\n\",\n       \"                [23.7569, 114.6778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a8b61dbb72b10ba42d18ad542aefc51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f49afea968d2d9e2c466b3ef2a3612b = $(`&lt;div id=&quot;html_0f49afea968d2d9e2c466b3ef2a3612b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6778             latitude:23.7569             PM2_5:27.04225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a8b61dbb72b10ba42d18ad542aefc51.setContent(html_0f49afea968d2d9e2c466b3ef2a3612b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_257047cde5cd2bd9b0194b599c6da813.bindPopup(popup_7a8b61dbb72b10ba42d18ad542aefc51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27b7501447fecaad2922069fb81b260c = L.circleMarker(\\n\",\n       \"                [33.975, 116.8008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea4e067d5f9d421e31bd9fa9aba44eac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8fb15b85024fb8aa2e9c72f1bf853bd8 = $(`&lt;div id=&quot;html_8fb15b85024fb8aa2e9c72f1bf853bd8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8008             latitude:33.975             PM2_5:53.05138889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea4e067d5f9d421e31bd9fa9aba44eac.setContent(html_8fb15b85024fb8aa2e9c72f1bf853bd8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27b7501447fecaad2922069fb81b260c.bindPopup(popup_ea4e067d5f9d421e31bd9fa9aba44eac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40f03b109b45a2ae3fae5c2003caa1ab = L.circleMarker(\\n\",\n       \"                [31.955, 119.146],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6e3b14bb46aaa628852ee052ab065fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb1156c5ac2525c131d0cbba090f4f74 = $(`&lt;div id=&quot;html_bb1156c5ac2525c131d0cbba090f4f74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.146             latitude:31.955             PM2_5:48.35190616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6e3b14bb46aaa628852ee052ab065fc.setContent(html_bb1156c5ac2525c131d0cbba090f4f74);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40f03b109b45a2ae3fae5c2003caa1ab.bindPopup(popup_f6e3b14bb46aaa628852ee052ab065fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6aeaf2699db0d6ad1ba4f2df1f73f56 = L.circleMarker(\\n\",\n       \"                [32.0314, 118.803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80a1b12c5a09e29bc2c93b351a3b20ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1717a82de9f8bd2163570f1e3c633bcb = $(`&lt;div id=&quot;html_1717a82de9f8bd2163570f1e3c633bcb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.803             latitude:32.0314             PM2_5:47.42318436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80a1b12c5a09e29bc2c93b351a3b20ac.setContent(html_1717a82de9f8bd2163570f1e3c633bcb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6aeaf2699db0d6ad1ba4f2df1f73f56.bindPopup(popup_80a1b12c5a09e29bc2c93b351a3b20ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e46ed86e5d7dfeb43d0c8a43c44726f = L.circleMarker(\\n\",\n       \"                [29.8906, 121.554],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8eaf6a5a2dfd44385a289dc8ed42966a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_991799f94497a88bffbe1408bb9b7b97 = $(`&lt;div id=&quot;html_991799f94497a88bffbe1408bb9b7b97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.554             latitude:29.8906             PM2_5:36.43098592             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8eaf6a5a2dfd44385a289dc8ed42966a.setContent(html_991799f94497a88bffbe1408bb9b7b97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e46ed86e5d7dfeb43d0c8a43c44726f.bindPopup(popup_8eaf6a5a2dfd44385a289dc8ed42966a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e3ad6db7a4ec391579e1dc9ec2d8ae3 = L.circleMarker(\\n\",\n       \"                [31.955, 119.18],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac98be82e6a486c79a6ce009f66c1823 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b1a916f3e24193ab76ddba1e630a6ef = $(`&lt;div id=&quot;html_8b1a916f3e24193ab76ddba1e630a6ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.18             latitude:31.955             PM2_5:40.82033426             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac98be82e6a486c79a6ce009f66c1823.setContent(html_8b1a916f3e24193ab76ddba1e630a6ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e3ad6db7a4ec391579e1dc9ec2d8ae3.bindPopup(popup_ac98be82e6a486c79a6ce009f66c1823)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6e2cf8b51532e9550f17f766460c88b = L.circleMarker(\\n\",\n       \"                [34.7837, 117.2852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1cacf0fff78264d73bc43d539897916 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_128321882e1d84530f9b8f4faa8ea7a2 = $(`&lt;div id=&quot;html_128321882e1d84530f9b8f4faa8ea7a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2852             latitude:34.7837             PM2_5:60.64944134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1cacf0fff78264d73bc43d539897916.setContent(html_128321882e1d84530f9b8f4faa8ea7a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6e2cf8b51532e9550f17f766460c88b.bindPopup(popup_a1cacf0fff78264d73bc43d539897916)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91cc2f6a695d1d5897f4784ff679b7ab = L.circleMarker(\\n\",\n       \"                [32.4867, 119.9],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c3ba00155f8b332b3c741b3f2547112 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56e6bd2280bb36eb60041d23d4df8f59 = $(`&lt;div id=&quot;html_56e6bd2280bb36eb60041d23d4df8f59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9             latitude:32.4867             PM2_5:45.3875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c3ba00155f8b332b3c741b3f2547112.setContent(html_56e6bd2280bb36eb60041d23d4df8f59);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91cc2f6a695d1d5897f4784ff679b7ab.bindPopup(popup_9c3ba00155f8b332b3c741b3f2547112)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3fccccb29e47535b189163aca441f94e = L.circleMarker(\\n\",\n       \"                [32.88922222, 115.7838889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_943d0c8b33aebc18b41c30d13543e125 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ffb7532f4daba30aae1876911e44c9bc = $(`&lt;div id=&quot;html_ffb7532f4daba30aae1876911e44c9bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.7838889             latitude:32.88922222             PM2_5:52.57485876             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_943d0c8b33aebc18b41c30d13543e125.setContent(html_ffb7532f4daba30aae1876911e44c9bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3fccccb29e47535b189163aca441f94e.bindPopup(popup_943d0c8b33aebc18b41c30d13543e125)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddede2162c9623014c622c52313a35d2 = L.circleMarker(\\n\",\n       \"                [29.33972, 104.7228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_349d44ed8fb2e504841cc3299984c450 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cddefdb5962dfcba0da438561c1369b1 = $(`&lt;div id=&quot;html_cddefdb5962dfcba0da438561c1369b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7228             latitude:29.33972             PM2_5:66.02941176             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_349d44ed8fb2e504841cc3299984c450.setContent(html_cddefdb5962dfcba0da438561c1369b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddede2162c9623014c622c52313a35d2.bindPopup(popup_349d44ed8fb2e504841cc3299984c450)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_438369a80f6af92cc7407eeb873252be = L.circleMarker(\\n\",\n       \"                [28.095, 116.9622],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f84994524115885ef8e1edbccf3483e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd005ff14dd12a052ad1c7f08eadc5ff = $(`&lt;div id=&quot;html_cd005ff14dd12a052ad1c7f08eadc5ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9622             latitude:28.095             PM2_5:29.73167155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f84994524115885ef8e1edbccf3483e.setContent(html_cd005ff14dd12a052ad1c7f08eadc5ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_438369a80f6af92cc7407eeb873252be.bindPopup(popup_4f84994524115885ef8e1edbccf3483e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_049fd130eec0519acedbb8ebef5f91db = L.circleMarker(\\n\",\n       \"                [42.2556, 118.8789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ae778b85472f1194e0b967ef541dbf2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b916abfaacc5e53df3dc1fa92c46621e = $(`&lt;div id=&quot;html_b916abfaacc5e53df3dc1fa92c46621e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.8789             latitude:42.2556             PM2_5:23.22576177             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ae778b85472f1194e0b967ef541dbf2.setContent(html_b916abfaacc5e53df3dc1fa92c46621e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_049fd130eec0519acedbb8ebef5f91db.bindPopup(popup_8ae778b85472f1194e0b967ef541dbf2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9fa613224308bd55ac42f44af4f3b5f = L.circleMarker(\\n\",\n       \"                [41.7156, 125.9361],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bdc26a640a16afd05788c50b99b2882d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80934594f9b455fef06a47521cab1b52 = $(`&lt;div id=&quot;html_80934594f9b455fef06a47521cab1b52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.9361             latitude:41.7156             PM2_5:31.46935933             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bdc26a640a16afd05788c50b99b2882d.setContent(html_80934594f9b455fef06a47521cab1b52);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9fa613224308bd55ac42f44af4f3b5f.bindPopup(popup_bdc26a640a16afd05788c50b99b2882d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f972b39bc83637e56a57d8e59f830183 = L.circleMarker(\\n\",\n       \"                [28.9026, 105.4436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_688b49066f3b03e57ddba4e4ef4d561b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f8917a970b69cc74ed3eb3756680897 = $(`&lt;div id=&quot;html_4f8917a970b69cc74ed3eb3756680897&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4436             latitude:28.9026             PM2_5:45.04634831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_688b49066f3b03e57ddba4e4ef4d561b.setContent(html_4f8917a970b69cc74ed3eb3756680897);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f972b39bc83637e56a57d8e59f830183.bindPopup(popup_688b49066f3b03e57ddba4e4ef4d561b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d1777334eb252078cf117aa67f6c454 = L.circleMarker(\\n\",\n       \"                [30.9892, 112.1969],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20e097e5c173955b472b40bd08732ea7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ba037ffc4caa908b63735b028d40900 = $(`&lt;div id=&quot;html_3ba037ffc4caa908b63735b028d40900&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1969             latitude:30.9892             PM2_5:50.80113636             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20e097e5c173955b472b40bd08732ea7.setContent(html_3ba037ffc4caa908b63735b028d40900);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d1777334eb252078cf117aa67f6c454.bindPopup(popup_20e097e5c173955b472b40bd08732ea7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c57fc9535929cd9360249014d6f092a8 = L.circleMarker(\\n\",\n       \"                [30.3175, 112.2551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_707c39f040c2d88ac94d6a232ac0665a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4bd010f33a37bcd3a6ffb829c4decab = $(`&lt;div id=&quot;html_b4bd010f33a37bcd3a6ffb829c4decab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2551             latitude:30.3175             PM2_5:53.66573816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_707c39f040c2d88ac94d6a232ac0665a.setContent(html_b4bd010f33a37bcd3a6ffb829c4decab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c57fc9535929cd9360249014d6f092a8.bindPopup(popup_707c39f040c2d88ac94d6a232ac0665a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78d5edf56600daeea71abe6d45e41bf1 = L.circleMarker(\\n\",\n       \"                [31.3008, 121.467],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_062b880d8562308fd16e028b09b10a09 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ca96abe5d85f43ec74d2fab30536410 = $(`&lt;div id=&quot;html_3ca96abe5d85f43ec74d2fab30536410&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.467             latitude:31.3008             PM2_5:38.97262248             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_062b880d8562308fd16e028b09b10a09.setContent(html_3ca96abe5d85f43ec74d2fab30536410);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78d5edf56600daeea71abe6d45e41bf1.bindPopup(popup_062b880d8562308fd16e028b09b10a09)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_317b10fade36c5f65887709b366e3407 = L.circleMarker(\\n\",\n       \"                [37.0533, 114.5261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d558559396c992691220e0d027a7b5d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8570404255cd066cfd3c85d6972c46e6 = $(`&lt;div id=&quot;html_8570404255cd066cfd3c85d6972c46e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5261             latitude:37.0533             PM2_5:69.78910615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d558559396c992691220e0d027a7b5d9.setContent(html_8570404255cd066cfd3c85d6972c46e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_317b10fade36c5f65887709b366e3407.bindPopup(popup_d558559396c992691220e0d027a7b5d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9b38b38e20bc0503a20007b7584a19f = L.circleMarker(\\n\",\n       \"                [38.3254, 116.8584],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58c5e43cb6e0aa934db930bda747c084 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33352b7bd0ea0b4d327c6ee8ea0a69f8 = $(`&lt;div id=&quot;html_33352b7bd0ea0b4d327c6ee8ea0a69f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8584             latitude:38.3254             PM2_5:47.80055402             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58c5e43cb6e0aa934db930bda747c084.setContent(html_33352b7bd0ea0b4d327c6ee8ea0a69f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9b38b38e20bc0503a20007b7584a19f.bindPopup(popup_58c5e43cb6e0aa934db930bda747c084)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b014fe6f3e0a62c5f842fd0a08f6038b = L.circleMarker(\\n\",\n       \"                [35.213, 113.227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6a9efab04827975ebea69cd3d07fa97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_205b0368bad5965f24387e45b234092e = $(`&lt;div id=&quot;html_205b0368bad5965f24387e45b234092e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.227             latitude:35.213             PM2_5:66.43888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6a9efab04827975ebea69cd3d07fa97.setContent(html_205b0368bad5965f24387e45b234092e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b014fe6f3e0a62c5f842fd0a08f6038b.bindPopup(popup_d6a9efab04827975ebea69cd3d07fa97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f062fb70aaec7762064f314bd14db19 = L.circleMarker(\\n\",\n       \"                [33.8715, 109.9154],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5625d3be4347c76faa883c2bd9b1da5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec0927c7681c95e43a80d55a5fa4d209 = $(`&lt;div id=&quot;html_ec0927c7681c95e43a80d55a5fa4d209&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9154             latitude:33.8715             PM2_5:33.87955182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5625d3be4347c76faa883c2bd9b1da5.setContent(html_ec0927c7681c95e43a80d55a5fa4d209);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f062fb70aaec7762064f314bd14db19.bindPopup(popup_f5625d3be4347c76faa883c2bd9b1da5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b7031fe07bd2577d8b076dd66251982 = L.circleMarker(\\n\",\n       \"                [30.5706, 104.079],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd65c53d518ab5f7fe5c28d40b54fa74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbd0d4ac6afee2df57e0672ae78fc6e8 = $(`&lt;div id=&quot;html_cbd0d4ac6afee2df57e0672ae78fc6e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.079             latitude:30.5706             PM2_5:54.24512535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd65c53d518ab5f7fe5c28d40b54fa74.setContent(html_cbd0d4ac6afee2df57e0672ae78fc6e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b7031fe07bd2577d8b076dd66251982.bindPopup(popup_fd65c53d518ab5f7fe5c28d40b54fa74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_983baabe397093e98586d3a387051fd4 = L.circleMarker(\\n\",\n       \"                [32.5714, 110.8839],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c33b2b40675d2a76fb89a84888a822f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3af5bb3fbd8a8bced2fae53ec6ba078a = $(`&lt;div id=&quot;html_3af5bb3fbd8a8bced2fae53ec6ba078a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.8839             latitude:32.5714             PM2_5:48.0027933             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c33b2b40675d2a76fb89a84888a822f6.setContent(html_3af5bb3fbd8a8bced2fae53ec6ba078a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_983baabe397093e98586d3a387051fd4.bindPopup(popup_c33b2b40675d2a76fb89a84888a822f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eece6d65e9e917a8053c20ee4f6fe017 = L.circleMarker(\\n\",\n       \"                [37.4664, 116.3061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0fe2b22e99ac4326cae26ba51efda3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7c217ca91d6e1392fad0ef7f1adc2a4 = $(`&lt;div id=&quot;html_f7c217ca91d6e1392fad0ef7f1adc2a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3061             latitude:37.4664             PM2_5:54.98997135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0fe2b22e99ac4326cae26ba51efda3e.setContent(html_f7c217ca91d6e1392fad0ef7f1adc2a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eece6d65e9e917a8053c20ee4f6fe017.bindPopup(popup_d0fe2b22e99ac4326cae26ba51efda3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e65eebeedf04f2baa556ae4e68710ad5 = L.circleMarker(\\n\",\n       \"                [25.0405, 102.722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0de7b597ff936af36ea706719ff2ffa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5aac98cd00bd3225225204cbdc8ae2b0 = $(`&lt;div id=&quot;html_5aac98cd00bd3225225204cbdc8ae2b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.722             latitude:25.0405             PM2_5:33.50415512             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0de7b597ff936af36ea706719ff2ffa.setContent(html_5aac98cd00bd3225225204cbdc8ae2b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e65eebeedf04f2baa556ae4e68710ad5.bindPopup(popup_f0de7b597ff936af36ea706719ff2ffa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07d66b73b19309be728dd58381b61c48 = L.circleMarker(\\n\",\n       \"                [36.9639, 100.9048],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6568bbe7971393edfc2c06886b6507af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e7619947cbfa98a8748ed374843de8f = $(`&lt;div id=&quot;html_8e7619947cbfa98a8748ed374843de8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.9048             latitude:36.9639             PM2_5:26.02222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6568bbe7971393edfc2c06886b6507af.setContent(html_8e7619947cbfa98a8748ed374843de8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07d66b73b19309be728dd58381b61c48.bindPopup(popup_6568bbe7971393edfc2c06886b6507af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e53cba97f63e8712cc7f83b280e7b148 = L.circleMarker(\\n\",\n       \"                [27.9639, 116.3598],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16e3415ce1ee716218a6be32ddfa57cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_807e160040259ca06cd220c41e88e16e = $(`&lt;div id=&quot;html_807e160040259ca06cd220c41e88e16e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3598             latitude:27.9639             PM2_5:40.7367688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16e3415ce1ee716218a6be32ddfa57cc.setContent(html_807e160040259ca06cd220c41e88e16e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e53cba97f63e8712cc7f83b280e7b148.bindPopup(popup_16e3415ce1ee716218a6be32ddfa57cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_417787521f417a2ae252ae47735c19c8 = L.circleMarker(\\n\",\n       \"                [40.8725, 114.904],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a31e5ffd9eca365a4dba1198324d015f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23d285bd5bd7be21e5dbb5718bc90df7 = $(`&lt;div id=&quot;html_23d285bd5bd7be21e5dbb5718bc90df7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.904             latitude:40.8725             PM2_5:29.97752809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a31e5ffd9eca365a4dba1198324d015f.setContent(html_23d285bd5bd7be21e5dbb5718bc90df7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_417787521f417a2ae252ae47735c19c8.bindPopup(popup_a31e5ffd9eca365a4dba1198324d015f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b282b67ad056ffd98fe32fb781b5eee = L.circleMarker(\\n\",\n       \"                [30.4742, 114.9028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15edd6c4f93032dc6665789e9b544286 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47e43ec493a0a5c05bc4f82b29d95769 = $(`&lt;div id=&quot;html_47e43ec493a0a5c05bc4f82b29d95769&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9028             latitude:30.4742             PM2_5:45.7019774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15edd6c4f93032dc6665789e9b544286.setContent(html_47e43ec493a0a5c05bc4f82b29d95769);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b282b67ad056ffd98fe32fb781b5eee.bindPopup(popup_15edd6c4f93032dc6665789e9b544286)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7cf4ac3d9a111f60373c9ed144cd13a4 = L.circleMarker(\\n\",\n       \"                [41.0833, 122.9481],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca87f812b979be6b23c32408390aff69 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a569754894af88ec4cf21a5617d3aa2 = $(`&lt;div id=&quot;html_2a569754894af88ec4cf21a5617d3aa2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.9481             latitude:41.0833             PM2_5:33.61173184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca87f812b979be6b23c32408390aff69.setContent(html_2a569754894af88ec4cf21a5617d3aa2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7cf4ac3d9a111f60373c9ed144cd13a4.bindPopup(popup_ca87f812b979be6b23c32408390aff69)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_108f33910757f77f5cbcfd614513d106 = L.circleMarker(\\n\",\n       \"                [35.5051, 112.85],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b3e78d8a9d3a82ef51dc6b5f9f2015fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9813378e28b9b1f6271ac035e8dbdd21 = $(`&lt;div id=&quot;html_9813378e28b9b1f6271ac035e8dbdd21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.85             latitude:35.5051             PM2_5:58.35552408             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b3e78d8a9d3a82ef51dc6b5f9f2015fb.setContent(html_9813378e28b9b1f6271ac035e8dbdd21);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_108f33910757f77f5cbcfd614513d106.bindPopup(popup_b3e78d8a9d3a82ef51dc6b5f9f2015fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3b2be540b2d8717e860e4352f054ace = L.circleMarker(\\n\",\n       \"                [32.6778, 109.0311],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b932dfc788daea8b2bbdf5d62ac8de71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b769c0f797650b8d563e38b1b436599 = $(`&lt;div id=&quot;html_7b769c0f797650b8d563e38b1b436599&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0311             latitude:32.6778             PM2_5:38.88285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b932dfc788daea8b2bbdf5d62ac8de71.setContent(html_7b769c0f797650b8d563e38b1b436599);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3b2be540b2d8717e860e4352f054ace.bindPopup(popup_b932dfc788daea8b2bbdf5d62ac8de71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df822f34029090b8ff381d04878ddf08 = L.circleMarker(\\n\",\n       \"                [29.6926, 116.0628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_643659e0a54217e4f0e0e3f8d3365799 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e7071925ee05e510a3b41218b5fb493 = $(`&lt;div id=&quot;html_0e7071925ee05e510a3b41218b5fb493&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0628             latitude:29.6926             PM2_5:42.53107345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_643659e0a54217e4f0e0e3f8d3365799.setContent(html_0e7071925ee05e510a3b41218b5fb493);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df822f34029090b8ff381d04878ddf08.bindPopup(popup_643659e0a54217e4f0e0e3f8d3365799)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5fb7b83d75dc0c3c635e7d8a7160fb6 = L.circleMarker(\\n\",\n       \"                [28.0167, 120.671],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db5330ea8bab284dd112d86f32d85a51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afe479dacca6726eff1a347f8fd45bea = $(`&lt;div id=&quot;html_afe479dacca6726eff1a347f8fd45bea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.671             latitude:28.0167             PM2_5:37.0042735             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db5330ea8bab284dd112d86f32d85a51.setContent(html_afe479dacca6726eff1a347f8fd45bea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5fb7b83d75dc0c3c635e7d8a7160fb6.bindPopup(popup_db5330ea8bab284dd112d86f32d85a51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6162f4c9e70f3e9fee13a806bf2bc378 = L.circleMarker(\\n\",\n       \"                [43.831, 87.6432],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69fdc1496e78d6c73b4a6d1e2f663541 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa9aa4cc5108f23f0a0de1d21dd6c659 = $(`&lt;div id=&quot;html_aa9aa4cc5108f23f0a0de1d21dd6c659&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6432             latitude:43.831             PM2_5:57.57374631             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69fdc1496e78d6c73b4a6d1e2f663541.setContent(html_aa9aa4cc5108f23f0a0de1d21dd6c659);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6162f4c9e70f3e9fee13a806bf2bc378.bindPopup(popup_69fdc1496e78d6c73b4a6d1e2f663541)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8d302b30c0a109d19fc6c7b9d4a3108 = L.circleMarker(\\n\",\n       \"                [24.81119444, 113.5593889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c582960a099ecb06b1d783d85badfa9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58519ba5026da3be6ff7cecf554fe54e = $(`&lt;div id=&quot;html_58519ba5026da3be6ff7cecf554fe54e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5593889             latitude:24.81119444             PM2_5:36.51396648             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c582960a099ecb06b1d783d85badfa9c.setContent(html_58519ba5026da3be6ff7cecf554fe54e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8d302b30c0a109d19fc6c7b9d4a3108.bindPopup(popup_c582960a099ecb06b1d783d85badfa9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39c983f93679c16d189fe9c833665753 = L.circleMarker(\\n\",\n       \"                [36.6622, 117.049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05ec930e46f8ee52de884fd735ef2d93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f24fcc196ff905342925f55431c40a54 = $(`&lt;div id=&quot;html_f24fcc196ff905342925f55431c40a54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.049             latitude:36.6622             PM2_5:60.01311953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05ec930e46f8ee52de884fd735ef2d93.setContent(html_f24fcc196ff905342925f55431c40a54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39c983f93679c16d189fe9c833665753.bindPopup(popup_05ec930e46f8ee52de884fd735ef2d93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3177061dfb4a6552c58b09adb7c59dcc = L.circleMarker(\\n\",\n       \"                [45.1642, 124.8528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67eee10e304278a25113889798e872f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46399a82135df10c356fda5bdc799444 = $(`&lt;div id=&quot;html_46399a82135df10c356fda5bdc799444&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8528             latitude:45.1642             PM2_5:29.24404762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67eee10e304278a25113889798e872f4.setContent(html_46399a82135df10c356fda5bdc799444);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3177061dfb4a6552c58b09adb7c59dcc.bindPopup(popup_67eee10e304278a25113889798e872f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f04d17422147750e4f30bf1831c116f = L.circleMarker(\\n\",\n       \"                [32.8913, 117.4186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_850cfacbea6df052d6f2995510a6deb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_63dea14b93044bc023f94db95503f5d5 = $(`&lt;div id=&quot;html_63dea14b93044bc023f94db95503f5d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4186             latitude:32.8913             PM2_5:42.02521008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_850cfacbea6df052d6f2995510a6deb2.setContent(html_63dea14b93044bc023f94db95503f5d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f04d17422147750e4f30bf1831c116f.bindPopup(popup_850cfacbea6df052d6f2995510a6deb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2bf476a149eb495ec0ef3ec4c5a19cb9 = L.circleMarker(\\n\",\n       \"                [41.7972, 123.3997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7cf7e6de48c0130c339e622daef0dade = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70218fde5264f59a5563d8ebb3d253f2 = $(`&lt;div id=&quot;html_70218fde5264f59a5563d8ebb3d253f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.3997             latitude:41.7972             PM2_5:38.97206704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7cf7e6de48c0130c339e622daef0dade.setContent(html_70218fde5264f59a5563d8ebb3d253f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2bf476a149eb495ec0ef3ec4c5a19cb9.bindPopup(popup_7cf7e6de48c0130c339e622daef0dade)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74fc5045bc3b74b6f9d783e4f2e8f464 = L.circleMarker(\\n\",\n       \"                [38.9846, 117.3747],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ce5ccab484d836af5c87523c80bb1cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1939b3011633de959795c660fba87300 = $(`&lt;div id=&quot;html_1939b3011633de959795c660fba87300&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3747             latitude:38.9846             PM2_5:51.10339943             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ce5ccab484d836af5c87523c80bb1cb.setContent(html_1939b3011633de959795c660fba87300);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74fc5045bc3b74b6f9d783e4f2e8f464.bindPopup(popup_9ce5ccab484d836af5c87523c80bb1cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e859259ed5a956d85c2f485cdbb8350b = L.circleMarker(\\n\",\n       \"                [26.53111111, 107.8908333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf7a5c2bf191308b1a94e1961273263d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1d1c52a6b3045c65e99cee0ce861735 = $(`&lt;div id=&quot;html_f1d1c52a6b3045c65e99cee0ce861735&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.8908333             latitude:26.53111111             PM2_5:30.87146893             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf7a5c2bf191308b1a94e1961273263d.setContent(html_f1d1c52a6b3045c65e99cee0ce861735);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e859259ed5a956d85c2f485cdbb8350b.bindPopup(popup_bf7a5c2bf191308b1a94e1961273263d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_159f1989d5ee619adcbc01fb90934804 = L.circleMarker(\\n\",\n       \"                [26.5892, 104.8],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc3f258ed5a45125277562095719b677 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b97159a822317b8f28f6362994f1274e = $(`&lt;div id=&quot;html_b97159a822317b8f28f6362994f1274e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8             latitude:26.5892             PM2_5:39.79665738             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc3f258ed5a45125277562095719b677.setContent(html_b97159a822317b8f28f6362994f1274e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_159f1989d5ee619adcbc01fb90934804.bindPopup(popup_fc3f258ed5a45125277562095719b677)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8357a887bf9556b01872711586711635 = L.circleMarker(\\n\",\n       \"                [22.5978, 114.297],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_163a4d14974b15778cf1222a069c0366 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71ed6524c9c61b72c566e76d18eff312 = $(`&lt;div id=&quot;html_71ed6524c9c61b72c566e76d18eff312&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.297             latitude:22.5978             PM2_5:26.13927577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_163a4d14974b15778cf1222a069c0366.setContent(html_71ed6524c9c61b72c566e76d18eff312);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8357a887bf9556b01872711586711635.bindPopup(popup_163a4d14974b15778cf1222a069c0366)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07ca0429a71f6e1426119c95d331212c = L.circleMarker(\\n\",\n       \"                [35.235, 113.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4456b26883661e9eb5a140814551413 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_75caf7bc0fb2640942dd5ff7f6d580fc = $(`&lt;div id=&quot;html_75caf7bc0fb2640942dd5ff7f6d580fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.261             latitude:35.235             PM2_5:66.46751412             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4456b26883661e9eb5a140814551413.setContent(html_75caf7bc0fb2640942dd5ff7f6d580fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07ca0429a71f6e1426119c95d331212c.bindPopup(popup_d4456b26883661e9eb5a140814551413)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6807c10d6cde1ce3c7f124d201c8fd4f = L.circleMarker(\\n\",\n       \"                [30.4663, 106.6271],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b83203e4bdf505b06a5513e634292d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98dda602f9bc21b4e9d3ed2624438be4 = $(`&lt;div id=&quot;html_98dda602f9bc21b4e9d3ed2624438be4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6271             latitude:30.4663             PM2_5:43.66944444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b83203e4bdf505b06a5513e634292d1.setContent(html_98dda602f9bc21b4e9d3ed2624438be4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6807c10d6cde1ce3c7f124d201c8fd4f.bindPopup(popup_7b83203e4bdf505b06a5513e634292d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49179e0bd3d0f1498bad9d82de4be5bb = L.circleMarker(\\n\",\n       \"                [39.65782, 118.1838],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c87218d8dea6b06ec3598b93fed19d93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13e798a5580f25315f434357512c1305 = $(`&lt;div id=&quot;html_13e798a5580f25315f434357512c1305&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1838             latitude:39.65782             PM2_5:55.8933518             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c87218d8dea6b06ec3598b93fed19d93.setContent(html_13e798a5580f25315f434357512c1305);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49179e0bd3d0f1498bad9d82de4be5bb.bindPopup(popup_c87218d8dea6b06ec3598b93fed19d93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0686da537cc547acba8b87919319ef36 = L.circleMarker(\\n\",\n       \"                [49.2261, 119.7594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0898b7fb3813733a9f2b691538b1a2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e891e7032662b062a6e32b9c77b57b6f = $(`&lt;div id=&quot;html_e891e7032662b062a6e32b9c77b57b6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7594             latitude:49.2261             PM2_5:15.27361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0898b7fb3813733a9f2b691538b1a2c.setContent(html_e891e7032662b062a6e32b9c77b57b6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0686da537cc547acba8b87919319ef36.bindPopup(popup_a0898b7fb3813733a9f2b691538b1a2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea1473939102e3506a8d7e719d3255c4 = L.circleMarker(\\n\",\n       \"                [23.3633, 116.7244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bff254e73e552bcf6795e03cdb1c2ca2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a49e35b5f8acd58eb2e0dce897e7bc20 = $(`&lt;div id=&quot;html_a49e35b5f8acd58eb2e0dce897e7bc20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7244             latitude:23.3633             PM2_5:19.99022346             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bff254e73e552bcf6795e03cdb1c2ca2.setContent(html_a49e35b5f8acd58eb2e0dce897e7bc20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea1473939102e3506a8d7e719d3255c4.bindPopup(popup_bff254e73e552bcf6795e03cdb1c2ca2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e659b1be002e04107d6d37f7f5245814 = L.circleMarker(\\n\",\n       \"                [35.248889, 115.42277],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e01b102686d6418fd8d7112fdcb9908a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc8312192c9c7081c2df632dff5daec1 = $(`&lt;div id=&quot;html_cc8312192c9c7081c2df632dff5daec1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.42277             latitude:35.248889             PM2_5:58.11235955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e01b102686d6418fd8d7112fdcb9908a.setContent(html_cc8312192c9c7081c2df632dff5daec1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e659b1be002e04107d6d37f7f5245814.bindPopup(popup_e01b102686d6418fd8d7112fdcb9908a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_413556e08ca7ff3104963c075f0382bd = L.circleMarker(\\n\",\n       \"                [45.305, 130.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d24c6dc8bc0396662bd756358de478a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_672deb4d77019fb0f3314247278e2f2d = $(`&lt;div id=&quot;html_672deb4d77019fb0f3314247278e2f2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9817             latitude:45.305             PM2_5:30.75431034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d24c6dc8bc0396662bd756358de478a.setContent(html_672deb4d77019fb0f3314247278e2f2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_413556e08ca7ff3104963c075f0382bd.bindPopup(popup_0d24c6dc8bc0396662bd756358de478a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d57d9ebdf01558970736215830aacf2 = L.circleMarker(\\n\",\n       \"                [31.5031, 120.242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa4f257383c57f74eec37951826fc539 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07e9c1cc47ce1c2e8a9ef6730bacc0c9 = $(`&lt;div id=&quot;html_07e9c1cc47ce1c2e8a9ef6730bacc0c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.242             latitude:31.5031             PM2_5:45.41292135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa4f257383c57f74eec37951826fc539.setContent(html_07e9c1cc47ce1c2e8a9ef6730bacc0c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d57d9ebdf01558970736215830aacf2.bindPopup(popup_fa4f257383c57f74eec37951826fc539)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91b7a7a228dbef2a0d02bee9ba5b7114 = L.circleMarker(\\n\",\n       \"                [47.3349, 130.2659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9c5a7e505d2bfab8a48bf56a2ef50d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f43704f3b1f5b2eac56632c5cdbad1e = $(`&lt;div id=&quot;html_7f43704f3b1f5b2eac56632c5cdbad1e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.2659             latitude:47.3349             PM2_5:25.09206799             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9c5a7e505d2bfab8a48bf56a2ef50d2.setContent(html_7f43704f3b1f5b2eac56632c5cdbad1e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91b7a7a228dbef2a0d02bee9ba5b7114.bindPopup(popup_b9c5a7e505d2bfab8a48bf56a2ef50d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a44bc3903762a2d9f66b6a7b7341f35 = L.circleMarker(\\n\",\n       \"                [27.6428, 113.8381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2564efdd375aa3e7b2d331c5cfb1d094 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_feb4f13cf5079a2b36c1df3ef33e6f44 = $(`&lt;div id=&quot;html_feb4f13cf5079a2b36c1df3ef33e6f44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8381             latitude:27.6428             PM2_5:47.81111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2564efdd375aa3e7b2d331c5cfb1d094.setContent(html_feb4f13cf5079a2b36c1df3ef33e6f44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a44bc3903762a2d9f66b6a7b7341f35.bindPopup(popup_2564efdd375aa3e7b2d331c5cfb1d094)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9bb949954edb09f89c5cc500b9a967e = L.circleMarker(\\n\",\n       \"                [29.635, 119.026],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_678ff1442e5b797c60a3c55b9ec30d18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbcb818c7fc5529ffe56226e39d467fd = $(`&lt;div id=&quot;html_cbcb818c7fc5529ffe56226e39d467fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.026             latitude:29.635             PM2_5:27.02982955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_678ff1442e5b797c60a3c55b9ec30d18.setContent(html_cbcb818c7fc5529ffe56226e39d467fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9bb949954edb09f89c5cc500b9a967e.bindPopup(popup_678ff1442e5b797c60a3c55b9ec30d18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43cb806aba207b08f4a653c7056b9d40 = L.circleMarker(\\n\",\n       \"                [41.5647, 120.4247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_050fc44cc8954793ea70f78b74f15629 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00bf3c38d58bd584af24798517f181d6 = $(`&lt;div id=&quot;html_00bf3c38d58bd584af24798517f181d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4247             latitude:41.5647             PM2_5:24.74857955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_050fc44cc8954793ea70f78b74f15629.setContent(html_00bf3c38d58bd584af24798517f181d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43cb806aba207b08f4a653c7056b9d40.bindPopup(popup_050fc44cc8954793ea70f78b74f15629)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_317953a4d8dc18993607ba03cb46645d = L.circleMarker(\\n\",\n       \"                [28.5773, 121.377],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc2b3375ec996a208737988ae83733c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4cf4b23429657d42c2f8fae2e1a779e3 = $(`&lt;div id=&quot;html_4cf4b23429657d42c2f8fae2e1a779e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.377             latitude:28.5773             PM2_5:31.56478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc2b3375ec996a208737988ae83733c7.setContent(html_4cf4b23429657d42c2f8fae2e1a779e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_317953a4d8dc18993607ba03cb46645d.bindPopup(popup_dc2b3375ec996a208737988ae83733c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98e0d4dee57e6393170621a343ee38e6 = L.circleMarker(\\n\",\n       \"                [46.7975, 130.3258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d638244c8d7affc2f12326c1f6f61e7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ef5327739b85a3c09234ee41266dc07 = $(`&lt;div id=&quot;html_0ef5327739b85a3c09234ee41266dc07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3258             latitude:46.7975             PM2_5:32.52089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d638244c8d7affc2f12326c1f6f61e7e.setContent(html_0ef5327739b85a3c09234ee41266dc07);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98e0d4dee57e6393170621a343ee38e6.bindPopup(popup_d638244c8d7affc2f12326c1f6f61e7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_666eb26a4ac1268b6d9a7aab8e232c2e = L.circleMarker(\\n\",\n       \"                [31.388, 120.953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d82d4a0b8cca87364299ca57f4a1008b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a2933a943e03180e30538179929ee9c = $(`&lt;div id=&quot;html_7a2933a943e03180e30538179929ee9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.953             latitude:31.388             PM2_5:37.71892655             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d82d4a0b8cca87364299ca57f4a1008b.setContent(html_7a2933a943e03180e30538179929ee9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_666eb26a4ac1268b6d9a7aab8e232c2e.bindPopup(popup_d82d4a0b8cca87364299ca57f4a1008b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66e6c57378c5cb929221f565e595d7ec = L.circleMarker(\\n\",\n       \"                [41.615, 120.3939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f3884343777d5c1cc156616f03c9da1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_241cc8e3fe1b62ef1da487b5f518bc9a = $(`&lt;div id=&quot;html_241cc8e3fe1b62ef1da487b5f518bc9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.3939             latitude:41.615             PM2_5:24.47443182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f3884343777d5c1cc156616f03c9da1.setContent(html_241cc8e3fe1b62ef1da487b5f518bc9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66e6c57378c5cb929221f565e595d7ec.bindPopup(popup_1f3884343777d5c1cc156616f03c9da1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e96d81892ce014121ae5481d5f5ba42 = L.circleMarker(\\n\",\n       \"                [36.5767, 109.4824],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_daa633701872d283a29d20af897cb3ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36ed0c432253587f01712e1e5dce4893 = $(`&lt;div id=&quot;html_36ed0c432253587f01712e1e5dce4893&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4824             latitude:36.5767             PM2_5:30.72346369             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_daa633701872d283a29d20af897cb3ca.setContent(html_36ed0c432253587f01712e1e5dce4893);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e96d81892ce014121ae5481d5f5ba42.bindPopup(popup_daa633701872d283a29d20af897cb3ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d33fb6b893138d32cedecf8117ad6e4 = L.circleMarker(\\n\",\n       \"                [32.7639, 116.8028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3052bc65fb2c55c4a49556dadd63d04 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af83980b1911e00081950923f7748c9e = $(`&lt;div id=&quot;html_af83980b1911e00081950923f7748c9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8028             latitude:32.7639             PM2_5:56.22284123             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3052bc65fb2c55c4a49556dadd63d04.setContent(html_af83980b1911e00081950923f7748c9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d33fb6b893138d32cedecf8117ad6e4.bindPopup(popup_a3052bc65fb2c55c4a49556dadd63d04)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f385d29976e23249d5c43011dcc0243 = L.circleMarker(\\n\",\n       \"                [23.7208, 109.2131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_72e6adb81fdf112020a1ccfee6e9650a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0fb4fc1d4677acf3f8ad04a0144859dd = $(`&lt;div id=&quot;html_0fb4fc1d4677acf3f8ad04a0144859dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2131             latitude:23.7208             PM2_5:38.19806094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_72e6adb81fdf112020a1ccfee6e9650a.setContent(html_0fb4fc1d4677acf3f8ad04a0144859dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f385d29976e23249d5c43011dcc0243.bindPopup(popup_72e6adb81fdf112020a1ccfee6e9650a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e1e0908c3cb65600f5d04ddb04c2b66 = L.circleMarker(\\n\",\n       \"                [35.4144, 116.5856],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8aa42f75180454e009bd5a8a970a755f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8a468e93857055262e58b2bebc4321d = $(`&lt;div id=&quot;html_d8a468e93857055262e58b2bebc4321d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5856             latitude:35.4144             PM2_5:52.05196629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8aa42f75180454e009bd5a8a970a755f.setContent(html_d8a468e93857055262e58b2bebc4321d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e1e0908c3cb65600f5d04ddb04c2b66.bindPopup(popup_8aa42f75180454e009bd5a8a970a755f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca274563ca9e9ff188bdb2ca245e2a09 = L.circleMarker(\\n\",\n       \"                [50.4217, 124.1303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_876d5ac2dc7bd0486df9f8b1eff1d334 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb92ca005a2180e0ccf0650e0365f607 = $(`&lt;div id=&quot;html_bb92ca005a2180e0ccf0650e0365f607&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.1303             latitude:50.4217             PM2_5:13.39714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_876d5ac2dc7bd0486df9f8b1eff1d334.setContent(html_bb92ca005a2180e0ccf0650e0365f607);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca274563ca9e9ff188bdb2ca245e2a09.bindPopup(popup_876d5ac2dc7bd0486df9f8b1eff1d334)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_996e5654ec82743a565be4ce02bd37e2 = L.circleMarker(\\n\",\n       \"                [38.4928, 112.7003],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b1d13569c924b297d96dca88deec14f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3e4f8a7aefbc9754376fcbfbc9cc064 = $(`&lt;div id=&quot;html_a3e4f8a7aefbc9754376fcbfbc9cc064&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7003             latitude:38.4928             PM2_5:49.83427762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b1d13569c924b297d96dca88deec14f.setContent(html_a3e4f8a7aefbc9754376fcbfbc9cc064);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_996e5654ec82743a565be4ce02bd37e2.bindPopup(popup_7b1d13569c924b297d96dca88deec14f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a688d81c0e1500f494dd88b1632fd18 = L.circleMarker(\\n\",\n       \"                [25.0124, 102.743],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7d9e3902a54a94d3b5383bf5df1cda3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f31bddeadc1060fb491f512eb8755c6 = $(`&lt;div id=&quot;html_2f31bddeadc1060fb491f512eb8755c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.743             latitude:25.0124             PM2_5:30.86350975             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7d9e3902a54a94d3b5383bf5df1cda3.setContent(html_2f31bddeadc1060fb491f512eb8755c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a688d81c0e1500f494dd88b1632fd18.bindPopup(popup_e7d9e3902a54a94d3b5383bf5df1cda3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0d1d39ebeffedf8d7f09c7ceb6e3e4b = L.circleMarker(\\n\",\n       \"                [35.9019, 114.17],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d952676ec18c0c4c2fb2da89c56ae7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86ed1c631d3037d9bf4c6a3b1a75f54d = $(`&lt;div id=&quot;html_86ed1c631d3037d9bf4c6a3b1a75f54d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.17             latitude:35.9019             PM2_5:56.75702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d952676ec18c0c4c2fb2da89c56ae7e.setContent(html_86ed1c631d3037d9bf4c6a3b1a75f54d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0d1d39ebeffedf8d7f09c7ceb6e3e4b.bindPopup(popup_3d952676ec18c0c4c2fb2da89c56ae7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c43cff2866dbdc9bf32e1e7858266bcb = L.circleMarker(\\n\",\n       \"                [21.4689, 111.0286],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56fef0557c69e66e84ae78203522f264 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d8438dc6862385758e7c49dc3f40aa9 = $(`&lt;div id=&quot;html_8d8438dc6862385758e7c49dc3f40aa9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0286             latitude:21.4689             PM2_5:20.53975535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56fef0557c69e66e84ae78203522f264.setContent(html_8d8438dc6862385758e7c49dc3f40aa9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c43cff2866dbdc9bf32e1e7858266bcb.bindPopup(popup_56fef0557c69e66e84ae78203522f264)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e85b36a1540ce15c0f5cc1e5beaa909 = L.circleMarker(\\n\",\n       \"                [32.41, 119.404],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2cf966a3faa017aa861a136f59cc9317 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3933540f8c447b0afe528bbc369b602 = $(`&lt;div id=&quot;html_e3933540f8c447b0afe528bbc369b602&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.404             latitude:32.41             PM2_5:43.72058824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2cf966a3faa017aa861a136f59cc9317.setContent(html_e3933540f8c447b0afe528bbc369b602);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e85b36a1540ce15c0f5cc1e5beaa909.bindPopup(popup_2cf966a3faa017aa861a136f59cc9317)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12f0b580038c369d0ad0244c280a115e = L.circleMarker(\\n\",\n       \"                [32.0564, 112.1392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6ed41f560f7e67e91625dd1c2a3afa1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3aff3fc03771203abb55e1604f8d891 = $(`&lt;div id=&quot;html_a3aff3fc03771203abb55e1604f8d891&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1392             latitude:32.0564             PM2_5:60.23389356             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6ed41f560f7e67e91625dd1c2a3afa1.setContent(html_a3aff3fc03771203abb55e1604f8d891);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12f0b580038c369d0ad0244c280a115e.bindPopup(popup_e6ed41f560f7e67e91625dd1c2a3afa1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf42110992f5625645d5cd569d8c8bf3 = L.circleMarker(\\n\",\n       \"                [33.63063889, 116.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d34bb543ade01dfdf3a716a8ed5eb44 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_392358c5ecd0c1de10a6025d18697851 = $(`&lt;div id=&quot;html_392358c5ecd0c1de10a6025d18697851&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.989             latitude:33.63063889             PM2_5:60.00277008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d34bb543ade01dfdf3a716a8ed5eb44.setContent(html_392358c5ecd0c1de10a6025d18697851);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf42110992f5625645d5cd569d8c8bf3.bindPopup(popup_8d34bb543ade01dfdf3a716a8ed5eb44)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a87a0af92184deb104a41278b94bcb7 = L.circleMarker(\\n\",\n       \"                [41.8417, 123.7117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83aa5a9ede789c67ae9b1df91835807d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cdf36d710923780a02f41d97211b0e87 = $(`&lt;div id=&quot;html_cdf36d710923780a02f41d97211b0e87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7117             latitude:41.8417             PM2_5:31.18296089             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83aa5a9ede789c67ae9b1df91835807d.setContent(html_cdf36d710923780a02f41d97211b0e87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a87a0af92184deb104a41278b94bcb7.bindPopup(popup_83aa5a9ede789c67ae9b1df91835807d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fed17813076d5268b0489065791f03d0 = L.circleMarker(\\n\",\n       \"                [24.2654, 116.1248],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_586c915f123731ee63eb4398c8d1b932 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa9b5bb310138473058bae70726d9d65 = $(`&lt;div id=&quot;html_aa9b5bb310138473058bae70726d9d65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1248             latitude:24.2654             PM2_5:28.63611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_586c915f123731ee63eb4398c8d1b932.setContent(html_aa9b5bb310138473058bae70726d9d65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fed17813076d5268b0489065791f03d0.bindPopup(popup_586c915f123731ee63eb4398c8d1b932)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fdace6f94495953031738f959a1a527b = L.circleMarker(\\n\",\n       \"                [24.3898, 109.4883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc9357c23a1fedee8d4ba9fdce31a547 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6d0b0410b5aaba10e156d6d8880da62 = $(`&lt;div id=&quot;html_e6d0b0410b5aaba10e156d6d8880da62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4883             latitude:24.3898             PM2_5:38.23142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc9357c23a1fedee8d4ba9fdce31a547.setContent(html_e6d0b0410b5aaba10e156d6d8880da62);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fdace6f94495953031738f959a1a527b.bindPopup(popup_fc9357c23a1fedee8d4ba9fdce31a547)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38522afb517d0f761d0edf0e720fa238 = L.circleMarker(\\n\",\n       \"                [29.41569, 106.5506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96d13cb0929de650cfd1a38210b3510e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3141d75667f7547797ebf8523f0000c5 = $(`&lt;div id=&quot;html_3141d75667f7547797ebf8523f0000c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.5506             latitude:29.41569             PM2_5:31.64325843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96d13cb0929de650cfd1a38210b3510e.setContent(html_3141d75667f7547797ebf8523f0000c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38522afb517d0f761d0edf0e720fa238.bindPopup(popup_96d13cb0929de650cfd1a38210b3510e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3140f4a7c0417e02e7deacb5cd3d6288 = L.circleMarker(\\n\",\n       \"                [40.0625, 124.3303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ffd94a72e4e82432d3f450fdabe4ac9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a9536831da42ba8fea80fc5b555dfdc = $(`&lt;div id=&quot;html_7a9536831da42ba8fea80fc5b555dfdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3303             latitude:40.0625             PM2_5:23.85451977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ffd94a72e4e82432d3f450fdabe4ac9.setContent(html_7a9536831da42ba8fea80fc5b555dfdc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3140f4a7c0417e02e7deacb5cd3d6288.bindPopup(popup_3ffd94a72e4e82432d3f450fdabe4ac9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06a01ea7bfcfeefb09ea6b8cfb6db80c = L.circleMarker(\\n\",\n       \"                [32.3878, 119.46],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80ee1017f0cbe2d130f3edf191bea8f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1fda34f1ef159e662a9b99681d6dd3c = $(`&lt;div id=&quot;html_a1fda34f1ef159e662a9b99681d6dd3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.46             latitude:32.3878             PM2_5:47.79369628             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80ee1017f0cbe2d130f3edf191bea8f8.setContent(html_a1fda34f1ef159e662a9b99681d6dd3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06a01ea7bfcfeefb09ea6b8cfb6db80c.bindPopup(popup_80ee1017f0cbe2d130f3edf191bea8f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5601a63f875de3446f2548375a74f893 = L.circleMarker(\\n\",\n       \"                [39.5986, 109.7736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65b8f1619cec62c5475c0905e07a20d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a90754ea4bae4a96a25a30fb8c4d593 = $(`&lt;div id=&quot;html_0a90754ea4bae4a96a25a30fb8c4d593&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7736             latitude:39.5986             PM2_5:19.47191011             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65b8f1619cec62c5475c0905e07a20d9.setContent(html_0a90754ea4bae4a96a25a30fb8c4d593);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5601a63f875de3446f2548375a74f893.bindPopup(popup_65b8f1619cec62c5475c0905e07a20d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b8e808d77780b2d9e37f333f030115c = L.circleMarker(\\n\",\n       \"                [29.2958, 117.2111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70fca931d61c1547df2c41405d24b692 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e360ff4a425df787ed85c9b49147c1be = $(`&lt;div id=&quot;html_e360ff4a425df787ed85c9b49147c1be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2111             latitude:29.2958             PM2_5:34.08831909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70fca931d61c1547df2c41405d24b692.setContent(html_e360ff4a425df787ed85c9b49147c1be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b8e808d77780b2d9e37f333f030115c.bindPopup(popup_70fca931d61c1547df2c41405d24b692)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9733e7247394c8ee98a2136a6341eaf = L.circleMarker(\\n\",\n       \"                [29.6007, 103.7506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86ca3fccc79dab51895e987e5e2a6b72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96d264c6c418a2be437a84b6d1c17be6 = $(`&lt;div id=&quot;html_96d264c6c418a2be437a84b6d1c17be6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7506             latitude:29.6007             PM2_5:49.0491573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86ca3fccc79dab51895e987e5e2a6b72.setContent(html_96d264c6c418a2be437a84b6d1c17be6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9733e7247394c8ee98a2136a6341eaf.bindPopup(popup_86ca3fccc79dab51895e987e5e2a6b72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91ee17302cd5f4ec28d63a452b88e34a = L.circleMarker(\\n\",\n       \"                [33.581, 114.014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cbd14ae7d13c33edc3640ec8aba54392 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf25d1bede32c106da1d45760f1b2986 = $(`&lt;div id=&quot;html_cf25d1bede32c106da1d45760f1b2986&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.014             latitude:33.581             PM2_5:57.82033426             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cbd14ae7d13c33edc3640ec8aba54392.setContent(html_cf25d1bede32c106da1d45760f1b2986);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91ee17302cd5f4ec28d63a452b88e34a.bindPopup(popup_cbd14ae7d13c33edc3640ec8aba54392)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_438dc33d3429fe00a94720c570b1f947 = L.circleMarker(\\n\",\n       \"                [33.38256667, 104.9338889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46f06d5c154979f72975366d928dd7be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40bdbeca9a6d9716d58e5e3919ae774d = $(`&lt;div id=&quot;html_40bdbeca9a6d9716d58e5e3919ae774d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9338889             latitude:33.38256667             PM2_5:22.50144092             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46f06d5c154979f72975366d928dd7be.setContent(html_40bdbeca9a6d9716d58e5e3919ae774d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_438dc33d3429fe00a94720c570b1f947.bindPopup(popup_46f06d5c154979f72975366d928dd7be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95b9e13b99f1b551dc57f291e7045712 = L.circleMarker(\\n\",\n       \"                [26.9056, 112.5664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4fdd02c4a49b0ee0ab54b63f3909cc1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31b5bb39d4b47fc967f48e736984563f = $(`&lt;div id=&quot;html_31b5bb39d4b47fc967f48e736984563f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5664             latitude:26.9056             PM2_5:43.28072626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4fdd02c4a49b0ee0ab54b63f3909cc1.setContent(html_31b5bb39d4b47fc967f48e736984563f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95b9e13b99f1b551dc57f291e7045712.bindPopup(popup_e4fdd02c4a49b0ee0ab54b63f3909cc1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce09ec74bc0797b14049bc6f06d6e673 = L.circleMarker(\\n\",\n       \"                [34.864, 117.5564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4abc2cdf6799e63e85a0e31a4edfdd8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b661a89c69e8784d015094d2c4a5c712 = $(`&lt;div id=&quot;html_b661a89c69e8784d015094d2c4a5c712&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5564             latitude:34.864             PM2_5:51.03221289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4abc2cdf6799e63e85a0e31a4edfdd8.setContent(html_b661a89c69e8784d015094d2c4a5c712);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce09ec74bc0797b14049bc6f06d6e673.bindPopup(popup_a4abc2cdf6799e63e85a0e31a4edfdd8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3ad08dac13cb7a92b8ebf9f6043aa94 = L.circleMarker(\\n\",\n       \"                [31.896, 121.173],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_237abeb04a0f6b636870e6ac200e82b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd277ae5725227305d240dc67ea669c8 = $(`&lt;div id=&quot;html_cd277ae5725227305d240dc67ea669c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.173             latitude:31.896             PM2_5:35.22303207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_237abeb04a0f6b636870e6ac200e82b4.setContent(html_cd277ae5725227305d240dc67ea669c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3ad08dac13cb7a92b8ebf9f6043aa94.bindPopup(popup_237abeb04a0f6b636870e6ac200e82b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae31134f19110d2229b1281e721f1001 = L.circleMarker(\\n\",\n       \"                [22.0225, 100.8017],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7105b61041e0f65d9130a85cdec3a2c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_532952129a9986c85fe7101d86c5da2c = $(`&lt;div id=&quot;html_532952129a9986c85fe7101d86c5da2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.8017             latitude:22.0225             PM2_5:16.5130814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7105b61041e0f65d9130a85cdec3a2c9.setContent(html_532952129a9986c85fe7101d86c5da2c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae31134f19110d2229b1281e721f1001.bindPopup(popup_7105b61041e0f65d9130a85cdec3a2c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_397e28e9011780e6ffd2bbe21f97dfda = L.circleMarker(\\n\",\n       \"                [30.8811, 117.7442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6318d2b77d79b349cb1620572da14e43 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f2df0eec37e03622e98fe255a2b2d73 = $(`&lt;div id=&quot;html_6f2df0eec37e03622e98fe255a2b2d73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7442             latitude:30.8811             PM2_5:54.68333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6318d2b77d79b349cb1620572da14e43.setContent(html_6f2df0eec37e03622e98fe255a2b2d73);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_397e28e9011780e6ffd2bbe21f97dfda.bindPopup(popup_6318d2b77d79b349cb1620572da14e43)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d46cca4e1b8485b91f1ca1c993b23791 = L.circleMarker(\\n\",\n       \"                [28.9745, 118.855],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff5e44d4c12ad78f6a5c988467637108 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c70bdeb9ced6f089d8e85f8cb16bd33 = $(`&lt;div id=&quot;html_0c70bdeb9ced6f089d8e85f8cb16bd33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.855             latitude:28.9745             PM2_5:35.13927577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff5e44d4c12ad78f6a5c988467637108.setContent(html_0c70bdeb9ced6f089d8e85f8cb16bd33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d46cca4e1b8485b91f1ca1c993b23791.bindPopup(popup_ff5e44d4c12ad78f6a5c988467637108)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd5bf3cc5f2e85ddbb476aa45434e059 = L.circleMarker(\\n\",\n       \"                [24.4674, 117.6336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7fa05446fb165ae5b6453c50bd409a92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f267a89ae7cc6535ddd4c05b382c7352 = $(`&lt;div id=&quot;html_f267a89ae7cc6535ddd4c05b382c7352&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6336             latitude:24.4674             PM2_5:27.59357542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7fa05446fb165ae5b6453c50bd409a92.setContent(html_f267a89ae7cc6535ddd4c05b382c7352);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd5bf3cc5f2e85ddbb476aa45434e059.bindPopup(popup_7fa05446fb165ae5b6453c50bd409a92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b1f7710e6a4c7d7168675f10b5e057c = L.circleMarker(\\n\",\n       \"                [38.2478, 109.7336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8a1f7eceb26eafba75cb927977f7d35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_506a61a8a08945451b86fc4f16bbaf59 = $(`&lt;div id=&quot;html_506a61a8a08945451b86fc4f16bbaf59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7336             latitude:38.2478             PM2_5:31.4501385             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8a1f7eceb26eafba75cb927977f7d35.setContent(html_506a61a8a08945451b86fc4f16bbaf59);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b1f7710e6a4c7d7168675f10b5e057c.bindPopup(popup_d8a1f7eceb26eafba75cb927977f7d35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68a2caef418b4551ff366f515838bc84 = L.circleMarker(\\n\",\n       \"                [37.4442, 118.5857],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ea95cc029338ec2fd6e5560ff3fbbea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3cc393b4ec97f5dd55cdf03ef96685dc = $(`&lt;div id=&quot;html_3cc393b4ec97f5dd55cdf03ef96685dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5857             latitude:37.4442             PM2_5:50.74328358             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ea95cc029338ec2fd6e5560ff3fbbea.setContent(html_3cc393b4ec97f5dd55cdf03ef96685dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68a2caef418b4551ff366f515838bc84.bindPopup(popup_6ea95cc029338ec2fd6e5560ff3fbbea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2faa989db97050525ac4b74ebccc0c36 = L.circleMarker(\\n\",\n       \"                [39.79777778, 98.26722222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cec88ce033aab7de7c0c524367e41bbc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_32cb30723ccea5547600c6199e63f509 = $(`&lt;div id=&quot;html_32cb30723ccea5547600c6199e63f509&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.26722222             latitude:39.79777778             PM2_5:28.45014245             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cec88ce033aab7de7c0c524367e41bbc.setContent(html_32cb30723ccea5547600c6199e63f509);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2faa989db97050525ac4b74ebccc0c36.bindPopup(popup_cec88ce033aab7de7c0c524367e41bbc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_057cfbb51484c6d2cb0026d0a176da33 = L.circleMarker(\\n\",\n       \"                [33.7214, 113.3064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_875f412437affebdadd36befb98f2ba8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2d142223123cd6fadc54ae47e926853 = $(`&lt;div id=&quot;html_e2d142223123cd6fadc54ae47e926853&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3064             latitude:33.7214             PM2_5:58.5933908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_875f412437affebdadd36befb98f2ba8.setContent(html_e2d142223123cd6fadc54ae47e926853);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_057cfbb51484c6d2cb0026d0a176da33.bindPopup(popup_875f412437affebdadd36befb98f2ba8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6d56025be61816c9f4ac293b986c1ce = L.circleMarker(\\n\",\n       \"                [30.5719, 114.3672],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07d63224d041ea00f4181dd178ccd5cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3195082a2cf74a665b119f22df50bdd9 = $(`&lt;div id=&quot;html_3195082a2cf74a665b119f22df50bdd9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3672             latitude:30.5719             PM2_5:48.38636364             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07d63224d041ea00f4181dd178ccd5cf.setContent(html_3195082a2cf74a665b119f22df50bdd9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6d56025be61816c9f4ac293b986c1ce.bindPopup(popup_07d63224d041ea00f4181dd178ccd5cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a64a27524eaa585b0a9e0d45dd5ca484 = L.circleMarker(\\n\",\n       \"                [31.7897, 119.8914],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c464a9e6457201d43119cb37904ae5e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc8e71fc3a56ea1076aebdc5b9750e62 = $(`&lt;div id=&quot;html_bc8e71fc3a56ea1076aebdc5b9750e62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.8914             latitude:31.7897             PM2_5:45.79469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c464a9e6457201d43119cb37904ae5e3.setContent(html_bc8e71fc3a56ea1076aebdc5b9750e62);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a64a27524eaa585b0a9e0d45dd5ca484.bindPopup(popup_c464a9e6457201d43119cb37904ae5e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c1f178607fb3158bec03ead424101ed = L.circleMarker(\\n\",\n       \"                [39.625, 121.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5fd9a8028db787c833a8b35ab0785ac1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5cb8ef789981b5d32bc856b56f25cb24 = $(`&lt;div id=&quot;html_5cb8ef789981b5d32bc856b56f25cb24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.989             latitude:39.625             PM2_5:30.40555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5fd9a8028db787c833a8b35ab0785ac1.setContent(html_5cb8ef789981b5d32bc856b56f25cb24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c1f178607fb3158bec03ead424101ed.bindPopup(popup_5fd9a8028db787c833a8b35ab0785ac1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8c8560fd69fedbd246914da24cf20ed = L.circleMarker(\\n\",\n       \"                [31.215, 107.525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8bdc36c7b0874675a641f42e025ad1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba079b98d87ba13157c26cd8c8bebd8c = $(`&lt;div id=&quot;html_ba079b98d87ba13157c26cd8c8bebd8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.525             latitude:31.215             PM2_5:46.16016713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8bdc36c7b0874675a641f42e025ad1a.setContent(html_ba079b98d87ba13157c26cd8c8bebd8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8c8560fd69fedbd246914da24cf20ed.bindPopup(popup_c8bdc36c7b0874675a641f42e025ad1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3d258f0da3e66a3876a14300e050db9 = L.circleMarker(\\n\",\n       \"                [36.0822, 111.5169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2575d0d4bfdf35b445a2fc7d1a2aec76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f13980f6e9009d6f82ea0deea6201c5 = $(`&lt;div id=&quot;html_4f13980f6e9009d6f82ea0deea6201c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5169             latitude:36.0822             PM2_5:78.88718663             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2575d0d4bfdf35b445a2fc7d1a2aec76.setContent(html_4f13980f6e9009d6f82ea0deea6201c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3d258f0da3e66a3876a14300e050db9.bindPopup(popup_2575d0d4bfdf35b445a2fc7d1a2aec76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a43c4ec53069a11ef539bc3e883cc0ef = L.circleMarker(\\n\",\n       \"                [29.2718, 88.8876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b097ee105a1ee79707dd8e710658b1e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_263db245f30c6cf4e203bea90885202c = $(`&lt;div id=&quot;html_263db245f30c6cf4e203bea90885202c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.8876             latitude:29.2718             PM2_5:13.47058824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b097ee105a1ee79707dd8e710658b1e.setContent(html_263db245f30c6cf4e203bea90885202c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a43c4ec53069a11ef539bc3e883cc0ef.bindPopup(popup_3b097ee105a1ee79707dd8e710658b1e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c05b81f6819aec75e59c120e54d007c4 = L.circleMarker(\\n\",\n       \"                [32.996, 113.996],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5c4205e8665721b7e953a9b99c54422 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a112ee4854db0f488bb0cfe9771cbc1f = $(`&lt;div id=&quot;html_a112ee4854db0f488bb0cfe9771cbc1f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.996             latitude:32.996             PM2_5:53.78888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5c4205e8665721b7e953a9b99c54422.setContent(html_a112ee4854db0f488bb0cfe9771cbc1f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c05b81f6819aec75e59c120e54d007c4.bindPopup(popup_e5c4205e8665721b7e953a9b99c54422)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db7c021339261526f29a238d059a67f5 = L.circleMarker(\\n\",\n       \"                [24.4072, 111.5622],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe53433ec5dde700a235717e68db38e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d69b2d1d1999a82ca166e668730ee9b = $(`&lt;div id=&quot;html_4d69b2d1d1999a82ca166e668730ee9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5622             latitude:24.4072             PM2_5:38.43194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe53433ec5dde700a235717e68db38e7.setContent(html_4d69b2d1d1999a82ca166e668730ee9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db7c021339261526f29a238d059a67f5.bindPopup(popup_fe53433ec5dde700a235717e68db38e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_acb6e635a6eada801d6b2199082a89f0 = L.circleMarker(\\n\",\n       \"                [30.8596, 120.1844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1de8c6746cb12732aabbed79a551e152 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a07f7075c8aef12ce0d1f113f6abf20f = $(`&lt;div id=&quot;html_a07f7075c8aef12ce0d1f113f6abf20f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1844             latitude:30.8596             PM2_5:41.06022409             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1de8c6746cb12732aabbed79a551e152.setContent(html_a07f7075c8aef12ce0d1f113f6abf20f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_acb6e635a6eada801d6b2199082a89f0.bindPopup(popup_1de8c6746cb12732aabbed79a551e152)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f63d821f00d191b3082770fecf352259 = L.circleMarker(\\n\",\n       \"                [40.6575, 109.8104],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b12e00001ad53604b68ee534581248f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9049ffb442f663ed854aaa54a28f384b = $(`&lt;div id=&quot;html_9049ffb442f663ed854aaa54a28f384b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8104             latitude:40.6575             PM2_5:40.33005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b12e00001ad53604b68ee534581248f6.setContent(html_9049ffb442f663ed854aaa54a28f384b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f63d821f00d191b3082770fecf352259.bindPopup(popup_b12e00001ad53604b68ee534581248f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b060f111a2143183c2ac3e178abfe86d = L.circleMarker(\\n\",\n       \"                [38.5339, 102.1725],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd5cc752bb1dc5f4d34a4b2cd1c5f584 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17e4bb044d30b40b615a3f6dff24a8cc = $(`&lt;div id=&quot;html_17e4bb044d30b40b615a3f6dff24a8cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1725             latitude:38.5339             PM2_5:28.71587744             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd5cc752bb1dc5f4d34a4b2cd1c5f584.setContent(html_17e4bb044d30b40b615a3f6dff24a8cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b060f111a2143183c2ac3e178abfe86d.bindPopup(popup_fd5cc752bb1dc5f4d34a4b2cd1c5f584)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff2dd9d867299f0aaedfb34ac1354419 = L.circleMarker(\\n\",\n       \"                [28.0005, 116.3574],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_efce3ed920a23165736b103c0e58d1e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3176d199a6a721dd4f2afdc4e84ccc0a = $(`&lt;div id=&quot;html_3176d199a6a721dd4f2afdc4e84ccc0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3574             latitude:28.0005             PM2_5:44.09887006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_efce3ed920a23165736b103c0e58d1e7.setContent(html_3176d199a6a721dd4f2afdc4e84ccc0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff2dd9d867299f0aaedfb34ac1354419.bindPopup(popup_efce3ed920a23165736b103c0e58d1e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14bb12dea8f7b861a09f0f766f887de0 = L.circleMarker(\\n\",\n       \"                [37.5639, 121.2514],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df07472d4bf4d135f3bd433f27aeb4f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d107225bba4321f39c531d3e1748fd1 = $(`&lt;div id=&quot;html_6d107225bba4321f39c531d3e1748fd1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2514             latitude:37.5639             PM2_5:29.87078652             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df07472d4bf4d135f3bd433f27aeb4f9.setContent(html_6d107225bba4321f39c531d3e1748fd1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14bb12dea8f7b861a09f0f766f887de0.bindPopup(popup_df07472d4bf4d135f3bd433f27aeb4f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc0e2a005eb914e401355e750b667c9e = L.circleMarker(\\n\",\n       \"                [39.0877, 117.307],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09a017bad5ce3c565059e05ff3f7dedc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98b66e801540a2174ad6e5fba763edde = $(`&lt;div id=&quot;html_98b66e801540a2174ad6e5fba763edde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.307             latitude:39.0877             PM2_5:50.33704735             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09a017bad5ce3c565059e05ff3f7dedc.setContent(html_98b66e801540a2174ad6e5fba763edde);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc0e2a005eb914e401355e750b667c9e.bindPopup(popup_09a017bad5ce3c565059e05ff3f7dedc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f9271d74ad7757acd903c7f42f540e3 = L.circleMarker(\\n\",\n       \"                [29.6588, 90.9798],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_95f3eea9c311769d6d7a53415a85c2b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67cb6d27c64414ce422d578d10f04e61 = $(`&lt;div id=&quot;html_67cb6d27c64414ce422d578d10f04e61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:90.9798             latitude:29.6588             PM2_5:31.98979592             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_95f3eea9c311769d6d7a53415a85c2b2.setContent(html_67cb6d27c64414ce422d578d10f04e61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f9271d74ad7757acd903c7f42f540e3.bindPopup(popup_95f3eea9c311769d6d7a53415a85c2b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed4352b55b3fb55327920823e7dc5afc = L.circleMarker(\\n\",\n       \"                [19.9969, 110.338],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ab4521cd257c0cc0fdf4d83cc8bfe91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f2be05dac28109189610d5f59dad3dd = $(`&lt;div id=&quot;html_2f2be05dac28109189610d5f59dad3dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.338             latitude:19.9969             PM2_5:18.88642659             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ab4521cd257c0cc0fdf4d83cc8bfe91.setContent(html_2f2be05dac28109189610d5f59dad3dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed4352b55b3fb55327920823e7dc5afc.bindPopup(popup_2ab4521cd257c0cc0fdf4d83cc8bfe91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f8e9ce8eb26ef414ee83269d20a6fb0 = L.circleMarker(\\n\",\n       \"                [27.8094, 102.3419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4fd18f3a600cf5c6dc4a98fc7227baa4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90fa1e53ab10adda475c9df7ef29eb66 = $(`&lt;div id=&quot;html_90fa1e53ab10adda475c9df7ef29eb66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.3419             latitude:27.8094             PM2_5:19.32142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4fd18f3a600cf5c6dc4a98fc7227baa4.setContent(html_90fa1e53ab10adda475c9df7ef29eb66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f8e9ce8eb26ef414ee83269d20a6fb0.bindPopup(popup_4fd18f3a600cf5c6dc4a98fc7227baa4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4653a33d900f907bbef00ff26f65a227 = L.circleMarker(\\n\",\n       \"                [40.7736, 120.8631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3dacb2fd178e6db585cbc383f291e5a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1e842821d6c88931805130b5d2fe12b = $(`&lt;div id=&quot;html_b1e842821d6c88931805130b5d2fe12b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8631             latitude:40.7736             PM2_5:32.87222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3dacb2fd178e6db585cbc383f291e5a1.setContent(html_b1e842821d6c88931805130b5d2fe12b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4653a33d900f907bbef00ff26f65a227.bindPopup(popup_3dacb2fd178e6db585cbc383f291e5a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1715bfe6ea99b86b88e521dcf62397f = L.circleMarker(\\n\",\n       \"                [41.0903, 122.0539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1de1b46e74395b8b6b0272d56a1fe74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97ae988a50cee7b0fe2938ecc38c12a4 = $(`&lt;div id=&quot;html_97ae988a50cee7b0fe2938ecc38c12a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0539             latitude:41.0903             PM2_5:31.2005571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1de1b46e74395b8b6b0272d56a1fe74.setContent(html_97ae988a50cee7b0fe2938ecc38c12a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1715bfe6ea99b86b88e521dcf62397f.bindPopup(popup_a1de1b46e74395b8b6b0272d56a1fe74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28166f57f5efd652b1cde4259f623514 = L.circleMarker(\\n\",\n       \"                [36.086, 114.32],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b938ac29bc3a6ed3f9216946eede401c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed9da4bff471cf993ad7584a1a2105ed = $(`&lt;div id=&quot;html_ed9da4bff471cf993ad7584a1a2105ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.32             latitude:36.086             PM2_5:72.47486034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b938ac29bc3a6ed3f9216946eede401c.setContent(html_ed9da4bff471cf993ad7584a1a2105ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28166f57f5efd652b1cde4259f623514.bindPopup(popup_b938ac29bc3a6ed3f9216946eede401c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb663acac3214b3a691b95cf7f5d3e9e = L.circleMarker(\\n\",\n       \"                [29.2647, 117.1558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b859ca6efe3a960e98553dd280859f5e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e028acb7d5de7ce2e74db5d4599b30cc = $(`&lt;div id=&quot;html_e028acb7d5de7ce2e74db5d4599b30cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1558             latitude:29.2647             PM2_5:32.66713483             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b859ca6efe3a960e98553dd280859f5e.setContent(html_e028acb7d5de7ce2e74db5d4599b30cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb663acac3214b3a691b95cf7f5d3e9e.bindPopup(popup_b859ca6efe3a960e98553dd280859f5e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22b2f702e83b4d71bec7f7b4ef635e7a = L.circleMarker(\\n\",\n       \"                [21.6669, 110.9067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab9512ee88a253ff9de31ce4f17c3eac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_040df4c54f2dca45fa47a26b2d22ee0f = $(`&lt;div id=&quot;html_040df4c54f2dca45fa47a26b2d22ee0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9067             latitude:21.6669             PM2_5:30.53888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab9512ee88a253ff9de31ce4f17c3eac.setContent(html_040df4c54f2dca45fa47a26b2d22ee0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22b2f702e83b4d71bec7f7b4ef635e7a.bindPopup(popup_ab9512ee88a253ff9de31ce4f17c3eac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_820730b7c196775ae100723e0c439918 = L.circleMarker(\\n\",\n       \"                [23.0467, 113.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39479be0848710daeb54eade3075b305 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9de49cc3eb47eaee78b09f070ccb3c4 = $(`&lt;div id=&quot;html_c9de49cc3eb47eaee78b09f070ccb3c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.144             latitude:23.0467             PM2_5:35.05211268             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39479be0848710daeb54eade3075b305.setContent(html_c9de49cc3eb47eaee78b09f070ccb3c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_820730b7c196775ae100723e0c439918.bindPopup(popup_39479be0848710daeb54eade3075b305)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87999c0f7c0e3392dd950fcb4a1e0a3e = L.circleMarker(\\n\",\n       \"                [41.7775, 123.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a79ed11c58bccdb13ed3e2cdab1d969 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d17a8c6f41953d144ae36bf34516951c = $(`&lt;div id=&quot;html_d17a8c6f41953d144ae36bf34516951c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.478             latitude:41.7775             PM2_5:34.99164345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a79ed11c58bccdb13ed3e2cdab1d969.setContent(html_d17a8c6f41953d144ae36bf34516951c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87999c0f7c0e3392dd950fcb4a1e0a3e.bindPopup(popup_9a79ed11c58bccdb13ed3e2cdab1d969)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_059b77f458d3e3ca42e974cd16141567 = L.circleMarker(\\n\",\n       \"                [37.5211, 111.1406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b339ac8db95b8065869c4342ce966c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ccd8277c2427c1f9371bcc86974a0206 = $(`&lt;div id=&quot;html_ccd8277c2427c1f9371bcc86974a0206&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1406             latitude:37.5211             PM2_5:61.23537604             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b339ac8db95b8065869c4342ce966c2.setContent(html_ccd8277c2427c1f9371bcc86974a0206);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_059b77f458d3e3ca42e974cd16141567.bindPopup(popup_8b339ac8db95b8065869c4342ce966c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af5cebaad078149f325ca1165b01e801 = L.circleMarker(\\n\",\n       \"                [35.28385, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ec701e2f062b3a4c11f7d7807fb229d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e4b3e5978e8ff146178388387aecc27 = $(`&lt;div id=&quot;html_3e4b3e5978e8ff146178388387aecc27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:35.28385             PM2_5:53.94444444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ec701e2f062b3a4c11f7d7807fb229d.setContent(html_3e4b3e5978e8ff146178388387aecc27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af5cebaad078149f325ca1165b01e801.bindPopup(popup_9ec701e2f062b3a4c11f7d7807fb229d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be84064c998ea114b7f0f0fa2ab1c1f1 = L.circleMarker(\\n\",\n       \"                [26.6343, 106.7487],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ec0af06e2c5b961eaccd3aaf34b984b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7910a0ef2629dc0ec1b125c8fda2e277 = $(`&lt;div id=&quot;html_7910a0ef2629dc0ec1b125c8fda2e277&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7487             latitude:26.6343             PM2_5:36.45365169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ec0af06e2c5b961eaccd3aaf34b984b.setContent(html_7910a0ef2629dc0ec1b125c8fda2e277);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be84064c998ea114b7f0f0fa2ab1c1f1.bindPopup(popup_6ec0af06e2c5b961eaccd3aaf34b984b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10f23e433a119674ff052a3d6277da18 = L.circleMarker(\\n\",\n       \"                [39.5453, 116.7022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34d83bef9cc64deab89eee6ddc5685c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56a6e12b1ba2aad9d1661406a01fb5ae = $(`&lt;div id=&quot;html_56a6e12b1ba2aad9d1661406a01fb5ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7022             latitude:39.5453             PM2_5:42.37047354             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34d83bef9cc64deab89eee6ddc5685c3.setContent(html_56a6e12b1ba2aad9d1661406a01fb5ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10f23e433a119674ff052a3d6277da18.bindPopup(popup_34d83bef9cc64deab89eee6ddc5685c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_531c1560d4742fe030f2af372110bb6c = L.circleMarker(\\n\",\n       \"                [36.6028, 109.4761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ae05f64754861e2f698250be3286ca8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7f17a5afad1038b052d1f202bbb3079 = $(`&lt;div id=&quot;html_e7f17a5afad1038b052d1f202bbb3079&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4761             latitude:36.6028             PM2_5:26.54378531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ae05f64754861e2f698250be3286ca8.setContent(html_e7f17a5afad1038b052d1f202bbb3079);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_531c1560d4742fe030f2af372110bb6c.bindPopup(popup_4ae05f64754861e2f698250be3286ca8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc09b770be88b3b0f4b98b67a3fdc2c5 = L.circleMarker(\\n\",\n       \"                [23.0706, 112.427],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_247a423fb3399e8de32519e44865986a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42cb91054cc4ae07d6a1538c7ec71c09 = $(`&lt;div id=&quot;html_42cb91054cc4ae07d6a1538c7ec71c09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.427             latitude:23.0706             PM2_5:39.67086835             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_247a423fb3399e8de32519e44865986a.setContent(html_42cb91054cc4ae07d6a1538c7ec71c09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc09b770be88b3b0f4b98b67a3fdc2c5.bindPopup(popup_247a423fb3399e8de32519e44865986a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a869a81d723f642966e5762764ef962 = L.circleMarker(\\n\",\n       \"                [31.8516, 117.124],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6eeab057e7e4f6ff2c4e793fb6d60ac5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7df00015aacf73a31a169b9ea4e4e2b3 = $(`&lt;div id=&quot;html_7df00015aacf73a31a169b9ea4e4e2b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.124             latitude:31.8516             PM2_5:46.00277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6eeab057e7e4f6ff2c4e793fb6d60ac5.setContent(html_7df00015aacf73a31a169b9ea4e4e2b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a869a81d723f642966e5762764ef962.bindPopup(popup_6eeab057e7e4f6ff2c4e793fb6d60ac5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48e21d9681519f009da9b53766a829d9 = L.circleMarker(\\n\",\n       \"                [22.5211, 113.3769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d60adf8ae76d82264af2f4c6b800d45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ede96efff31cf15b2ad2e665430f7282 = $(`&lt;div id=&quot;html_ede96efff31cf15b2ad2e665430f7282&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3769             latitude:22.5211             PM2_5:35.20786517             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d60adf8ae76d82264af2f4c6b800d45.setContent(html_ede96efff31cf15b2ad2e665430f7282);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48e21d9681519f009da9b53766a829d9.bindPopup(popup_7d60adf8ae76d82264af2f4c6b800d45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03271dd20fe3e9a2f04ca34ed9dae27a = L.circleMarker(\\n\",\n       \"                [33.3942, 120.156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_896d5561a3da0fdce39c3a11cdd288e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3b2b8ff087b450b3586cbf1ebe0c326 = $(`&lt;div id=&quot;html_c3b2b8ff087b450b3586cbf1ebe0c326&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.156             latitude:33.3942             PM2_5:40.27158774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_896d5561a3da0fdce39c3a11cdd288e6.setContent(html_c3b2b8ff087b450b3586cbf1ebe0c326);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03271dd20fe3e9a2f04ca34ed9dae27a.bindPopup(popup_896d5561a3da0fdce39c3a11cdd288e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95ff7f5e173b0e3df602577221cce879 = L.circleMarker(\\n\",\n       \"                [39.5178, 116.6838],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29a266103bebce41227a2f7e996be357 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f897ff7093d3a9b18cebac145a9fb27 = $(`&lt;div id=&quot;html_3f897ff7093d3a9b18cebac145a9fb27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6838             latitude:39.5178             PM2_5:45.49159664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29a266103bebce41227a2f7e996be357.setContent(html_3f897ff7093d3a9b18cebac145a9fb27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95ff7f5e173b0e3df602577221cce879.bindPopup(popup_29a266103bebce41227a2f7e996be357)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15dc02ba1e06986de0af2faaa99d7eaa = L.circleMarker(\\n\",\n       \"                [37.1152, 79.9485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6f232eb605554fa6754e7accd5deeeb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b356fc3cb6539588e79d07eb1c4c986a = $(`&lt;div id=&quot;html_b356fc3cb6539588e79d07eb1c4c986a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:79.9485             latitude:37.1152             PM2_5:103.977591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6f232eb605554fa6754e7accd5deeeb.setContent(html_b356fc3cb6539588e79d07eb1c4c986a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15dc02ba1e06986de0af2faaa99d7eaa.bindPopup(popup_b6f232eb605554fa6754e7accd5deeeb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cad939224294690723ed0d9edd19d715 = L.circleMarker(\\n\",\n       \"                [30.5797, 105.7519],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_685681e6093df6b4da584fd11b11f6d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a8d899c7ca6263b7a8955db1541a6a4 = $(`&lt;div id=&quot;html_4a8d899c7ca6263b7a8955db1541a6a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.7519             latitude:30.5797             PM2_5:43.79275362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_685681e6093df6b4da584fd11b11f6d5.setContent(html_4a8d899c7ca6263b7a8955db1541a6a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cad939224294690723ed0d9edd19d715.bindPopup(popup_685681e6093df6b4da584fd11b11f6d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57253dabe1371a08e4dfe393d05cde45 = L.circleMarker(\\n\",\n       \"                [45.6842, 126.6206],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7213db312d37ba0d98a5e376b5515180 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_efa282ac666096bd0a896fa9d5b46f8f = $(`&lt;div id=&quot;html_efa282ac666096bd0a896fa9d5b46f8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6206             latitude:45.6842             PM2_5:34.80031447             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7213db312d37ba0d98a5e376b5515180.setContent(html_efa282ac666096bd0a896fa9d5b46f8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57253dabe1371a08e4dfe393d05cde45.bindPopup(popup_7213db312d37ba0d98a5e376b5515180)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85b750084ff1bf38ee4a7aebe5666376 = L.circleMarker(\\n\",\n       \"                [30.9742, 118.7386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_626cdd3c3b160853d94110a3543ead39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d40fc95e57e53c437db53d484b30b20 = $(`&lt;div id=&quot;html_5d40fc95e57e53c437db53d484b30b20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7386             latitude:30.9742             PM2_5:41.79551821             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_626cdd3c3b160853d94110a3543ead39.setContent(html_5d40fc95e57e53c437db53d484b30b20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85b750084ff1bf38ee4a7aebe5666376.bindPopup(popup_626cdd3c3b160853d94110a3543ead39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a0fba5bd92435916a779dad1d9bd773 = L.circleMarker(\\n\",\n       \"                [28.8558, 105.4322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_729f47ea608b4b4f873554ff46cd2def = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85747c59d733d4a5cf0b512d7adfffbf = $(`&lt;div id=&quot;html_85747c59d733d4a5cf0b512d7adfffbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4322             latitude:28.8558             PM2_5:41.88997214             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_729f47ea608b4b4f873554ff46cd2def.setContent(html_85747c59d733d4a5cf0b512d7adfffbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a0fba5bd92435916a779dad1d9bd773.bindPopup(popup_729f47ea608b4b4f873554ff46cd2def)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56619af84a1adda23fa7612952fc9163 = L.circleMarker(\\n\",\n       \"                [36.6275, 109.4131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5863e8f424b319c0be463ecdc591654e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_186b5d240dd4aaed9de5a59757ea52ed = $(`&lt;div id=&quot;html_186b5d240dd4aaed9de5a59757ea52ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4131             latitude:36.6275             PM2_5:29.30351906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5863e8f424b319c0be463ecdc591654e.setContent(html_186b5d240dd4aaed9de5a59757ea52ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56619af84a1adda23fa7612952fc9163.bindPopup(popup_5863e8f424b319c0be463ecdc591654e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca5dc571a7d265339993f3392325c476 = L.circleMarker(\\n\",\n       \"                [29.7292, 115.988],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5fdc74a3c87af5da87e3b4e212dd949 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29b4bd337e73b8b3f27768fc5896f24b = $(`&lt;div id=&quot;html_29b4bd337e73b8b3f27768fc5896f24b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.988             latitude:29.7292             PM2_5:44.39612188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5fdc74a3c87af5da87e3b4e212dd949.setContent(html_29b4bd337e73b8b3f27768fc5896f24b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca5dc571a7d265339993f3392325c476.bindPopup(popup_c5fdc74a3c87af5da87e3b4e212dd949)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d53e4c70b334a0617ebbea5eaf7c7cd6 = L.circleMarker(\\n\",\n       \"                [22.5931, 113.0819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee45a1a6ff165c5e41c60aed20250632 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f846cb7a69573f9e8f405a9acf62df7b = $(`&lt;div id=&quot;html_f846cb7a69573f9e8f405a9acf62df7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0819             latitude:22.5931             PM2_5:35.44289694             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee45a1a6ff165c5e41c60aed20250632.setContent(html_f846cb7a69573f9e8f405a9acf62df7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d53e4c70b334a0617ebbea5eaf7c7cd6.bindPopup(popup_ee45a1a6ff165c5e41c60aed20250632)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_036da9287df18b4544784ab09234cae1 = L.circleMarker(\\n\",\n       \"                [30.475, 105.5956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30f807803e3131ab2f2a6d27ec320667 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9b47eb042c3b2e885528d24e397dba77 = $(`&lt;div id=&quot;html_9b47eb042c3b2e885528d24e397dba77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.5956             latitude:30.475             PM2_5:38.00277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30f807803e3131ab2f2a6d27ec320667.setContent(html_9b47eb042c3b2e885528d24e397dba77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_036da9287df18b4544784ab09234cae1.bindPopup(popup_30f807803e3131ab2f2a6d27ec320667)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dfb4fe05fb52a3fcabab200c5ebc8dce = L.circleMarker(\\n\",\n       \"                [40.7688, 114.9032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d6cee0ee3dcafa837789215e65c7f27 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd68014f3bf41dc9a74976c9603de20c = $(`&lt;div id=&quot;html_cd68014f3bf41dc9a74976c9603de20c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9032             latitude:40.7688             PM2_5:29.62188366             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d6cee0ee3dcafa837789215e65c7f27.setContent(html_cd68014f3bf41dc9a74976c9603de20c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dfb4fe05fb52a3fcabab200c5ebc8dce.bindPopup(popup_3d6cee0ee3dcafa837789215e65c7f27)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ee2e50bd513e8bc263c100e0e11b6d5 = L.circleMarker(\\n\",\n       \"                [41.0971, 122.9642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ceeee636a27fea03ec24ac8f5ba0ca3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3702fc8814368b8cadcf087c82d751f = $(`&lt;div id=&quot;html_d3702fc8814368b8cadcf087c82d751f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.9642             latitude:41.0971             PM2_5:35.54178273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ceeee636a27fea03ec24ac8f5ba0ca3b.setContent(html_d3702fc8814368b8cadcf087c82d751f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ee2e50bd513e8bc263c100e0e11b6d5.bindPopup(popup_ceeee636a27fea03ec24ac8f5ba0ca3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79aac51ea0021cf2b53f669972edb1d8 = L.circleMarker(\\n\",\n       \"                [41.9206, 126.4047],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd528a1a4502488c42b87fa1f6fe533a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e162e2ebfbd65aa38cb7e7c5b1300a3 = $(`&lt;div id=&quot;html_8e162e2ebfbd65aa38cb7e7c5b1300a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4047             latitude:41.9206             PM2_5:37.63445378             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd528a1a4502488c42b87fa1f6fe533a.setContent(html_8e162e2ebfbd65aa38cb7e7c5b1300a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79aac51ea0021cf2b53f669972edb1d8.bindPopup(popup_dd528a1a4502488c42b87fa1f6fe533a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2a1038cd91e7b12525181e1df67efbf = L.circleMarker(\\n\",\n       \"                [35.5236, 107.6406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4d99e694f1a4258bc576e41dc68f3cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8bf80822536cc2b6df066cd18ca569cc = $(`&lt;div id=&quot;html_8bf80822536cc2b6df066cd18ca569cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6406             latitude:35.5236             PM2_5:34.47075209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4d99e694f1a4258bc576e41dc68f3cd.setContent(html_8bf80822536cc2b6df066cd18ca569cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2a1038cd91e7b12525181e1df67efbf.bindPopup(popup_c4d99e694f1a4258bc576e41dc68f3cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13fbef5abdd6391ff825d3896108a8ec = L.circleMarker(\\n\",\n       \"                [31.4539, 104.7536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb623965974d8f0a4feb0d4090f7c6a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4cd5da772effa552772aaf017f2dcdfb = $(`&lt;div id=&quot;html_4cd5da772effa552772aaf017f2dcdfb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7536             latitude:31.4539             PM2_5:50.954039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb623965974d8f0a4feb0d4090f7c6a0.setContent(html_4cd5da772effa552772aaf017f2dcdfb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13fbef5abdd6391ff825d3896108a8ec.bindPopup(popup_eb623965974d8f0a4feb0d4090f7c6a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b818fd16dbcd619af3041468fe01103b = L.circleMarker(\\n\",\n       \"                [40.6592, 122.2414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d10ae73d87a1d88d630dd0675befa46f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_659ff168456c5a2d0b490517a966ee28 = $(`&lt;div id=&quot;html_659ff168456c5a2d0b490517a966ee28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2414             latitude:40.6592             PM2_5:31.50138504             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d10ae73d87a1d88d630dd0675befa46f.setContent(html_659ff168456c5a2d0b490517a966ee28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b818fd16dbcd619af3041468fe01103b.bindPopup(popup_d10ae73d87a1d88d630dd0675befa46f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_342f847e91b0fbd00d4d75fc6fd7bc3c = L.circleMarker(\\n\",\n       \"                [26.5747, 107.9783],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4b2c063555d0c15db1c201fb31e30d8b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f29cd1a39d562903cae8dd0f6547c02b = $(`&lt;div id=&quot;html_f29cd1a39d562903cae8dd0f6547c02b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.9783             latitude:26.5747             PM2_5:35.51815642             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4b2c063555d0c15db1c201fb31e30d8b.setContent(html_f29cd1a39d562903cae8dd0f6547c02b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_342f847e91b0fbd00d4d75fc6fd7bc3c.bindPopup(popup_4b2c063555d0c15db1c201fb31e30d8b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a828c5d24d1243b3a92dc77471d0628e = L.circleMarker(\\n\",\n       \"                [33.568, 114.005],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_959ce7ef0e42528f5f87d50bd46fd2e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73290060798fcaa188ec9612c6d45996 = $(`&lt;div id=&quot;html_73290060798fcaa188ec9612c6d45996&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.005             latitude:33.568             PM2_5:57.45111732             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_959ce7ef0e42528f5f87d50bd46fd2e0.setContent(html_73290060798fcaa188ec9612c6d45996);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a828c5d24d1243b3a92dc77471d0628e.bindPopup(popup_959ce7ef0e42528f5f87d50bd46fd2e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23310027a49abfa54bf96fe2dd510163 = L.circleMarker(\\n\",\n       \"                [27.583, 110.0394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_458c4b33f15753a31348e539d5229a74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a32288d98ee8085ad463c9f10faca2e4 = $(`&lt;div id=&quot;html_a32288d98ee8085ad463c9f10faca2e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0394             latitude:27.583             PM2_5:43.59749304             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_458c4b33f15753a31348e539d5229a74.setContent(html_a32288d98ee8085ad463c9f10faca2e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23310027a49abfa54bf96fe2dd510163.bindPopup(popup_458c4b33f15753a31348e539d5229a74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eccb5cc8f1d561968ac4e0d530b9b9f9 = L.circleMarker(\\n\",\n       \"                [43.8694, 125.325],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d5787ef26ed46e47bed9f0b1bff56ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_502746059d2ac95465678849881016ec = $(`&lt;div id=&quot;html_502746059d2ac95465678849881016ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.325             latitude:43.8694             PM2_5:31.45596591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d5787ef26ed46e47bed9f0b1bff56ce.setContent(html_502746059d2ac95465678849881016ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eccb5cc8f1d561968ac4e0d530b9b9f9.bindPopup(popup_5d5787ef26ed46e47bed9f0b1bff56ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6efab2b6e9dd858faaed74ef88b4d5d4 = L.circleMarker(\\n\",\n       \"                [36.5336, 116.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_341310d7888ac523393df388a126ecc6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3147d221cfd000b3feb252e0433dcf8 = $(`&lt;div id=&quot;html_e3147d221cfd000b3feb252e0433dcf8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.734             latitude:36.5336             PM2_5:58.35446686             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_341310d7888ac523393df388a126ecc6.setContent(html_e3147d221cfd000b3feb252e0433dcf8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6efab2b6e9dd858faaed74ef88b4d5d4.bindPopup(popup_341310d7888ac523393df388a126ecc6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_738248de840fa3725dba41ea4f28af89 = L.circleMarker(\\n\",\n       \"                [35.4039, 116.5546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32819bc5cdc6b977daab5cefa9dcb4cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ace84e5309d50c42ee068020294dbc7e = $(`&lt;div id=&quot;html_ace84e5309d50c42ee068020294dbc7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5546             latitude:35.4039             PM2_5:45.83753501             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32819bc5cdc6b977daab5cefa9dcb4cc.setContent(html_ace84e5309d50c42ee068020294dbc7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_738248de840fa3725dba41ea4f28af89.bindPopup(popup_32819bc5cdc6b977daab5cefa9dcb4cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44fe87335c55d9ad9e45ada06ae961b2 = L.circleMarker(\\n\",\n       \"                [34.0117, 113.8331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a578fe4e172539c406611775e537928e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eefffa973d8d9f1f76159af5167a5495 = $(`&lt;div id=&quot;html_eefffa973d8d9f1f76159af5167a5495&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8331             latitude:34.0117             PM2_5:56.1302521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a578fe4e172539c406611775e537928e.setContent(html_eefffa973d8d9f1f76159af5167a5495);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44fe87335c55d9ad9e45ada06ae961b2.bindPopup(popup_a578fe4e172539c406611775e537928e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f61af9bf0da6de813bc767b8813a2eba = L.circleMarker(\\n\",\n       \"                [28.9664, 118.871],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0a06e2472f0606ef98a06eec3c64b12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9ae2444da947b56a00ee78b98d49d8b = $(`&lt;div id=&quot;html_c9ae2444da947b56a00ee78b98d49d8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.871             latitude:28.9664             PM2_5:34.66526611             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0a06e2472f0606ef98a06eec3c64b12.setContent(html_c9ae2444da947b56a00ee78b98d49d8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f61af9bf0da6de813bc767b8813a2eba.bindPopup(popup_a0a06e2472f0606ef98a06eec3c64b12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c79a0815a09c5be4b8c2437ae4550797 = L.circleMarker(\\n\",\n       \"                [24.68636111, 113.5970833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f73d54fa64546d95405c7a8a570866f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6cf74bb14dfd3e26bb7100e71d8bf4a2 = $(`&lt;div id=&quot;html_6cf74bb14dfd3e26bb7100e71d8bf4a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5970833             latitude:24.68636111             PM2_5:38.7745098             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f73d54fa64546d95405c7a8a570866f3.setContent(html_6cf74bb14dfd3e26bb7100e71d8bf4a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c79a0815a09c5be4b8c2437ae4550797.bindPopup(popup_f73d54fa64546d95405c7a8a570866f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0a4f34dc129a3f0051b8086d2aa64ab = L.circleMarker(\\n\",\n       \"                [37.393, 117.9776],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ae7f2b5b8764785ae669fe8d1d7cc5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d5ecf0b1dd504093c9e713c95b4148f = $(`&lt;div id=&quot;html_3d5ecf0b1dd504093c9e713c95b4148f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9776             latitude:37.393             PM2_5:53.84180791             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ae7f2b5b8764785ae669fe8d1d7cc5a.setContent(html_3d5ecf0b1dd504093c9e713c95b4148f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0a4f34dc129a3f0051b8086d2aa64ab.bindPopup(popup_9ae7f2b5b8764785ae669fe8d1d7cc5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19fc24fe3ff003bddbf128671b468080 = L.circleMarker(\\n\",\n       \"                [37.8531, 113.6292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0ea458f363b59dea96cbf75bf0ac0066 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd2ad378ab7bdb9a6fe4d7e3aea3eff9 = $(`&lt;div id=&quot;html_dd2ad378ab7bdb9a6fe4d7e3aea3eff9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6292             latitude:37.8531             PM2_5:53.93452381             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0ea458f363b59dea96cbf75bf0ac0066.setContent(html_dd2ad378ab7bdb9a6fe4d7e3aea3eff9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19fc24fe3ff003bddbf128671b468080.bindPopup(popup_0ea458f363b59dea96cbf75bf0ac0066)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62dac21e3bbc3f95e4fb6012fe4d23ce = L.circleMarker(\\n\",\n       \"                [41.3369, 123.7528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_394669def162c7d6b1d1ab7969b0b7e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_089cbb4925b8ec9606a2a2eeb741bfd8 = $(`&lt;div id=&quot;html_089cbb4925b8ec9606a2a2eeb741bfd8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7528             latitude:41.3369             PM2_5:27.14763231             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_394669def162c7d6b1d1ab7969b0b7e7.setContent(html_089cbb4925b8ec9606a2a2eeb741bfd8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62dac21e3bbc3f95e4fb6012fe4d23ce.bindPopup(popup_394669def162c7d6b1d1ab7969b0b7e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7df55406abad97f56bee7f61d5916061 = L.circleMarker(\\n\",\n       \"                [30.2311, 119.6942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af6ee3985fc21985542c2cfd21af1ca6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_202732b3add5b65194cb8b583a8f47e9 = $(`&lt;div id=&quot;html_202732b3add5b65194cb8b583a8f47e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6942             latitude:30.2311             PM2_5:36.65868263             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af6ee3985fc21985542c2cfd21af1ca6.setContent(html_202732b3add5b65194cb8b583a8f47e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7df55406abad97f56bee7f61d5916061.bindPopup(popup_af6ee3985fc21985542c2cfd21af1ca6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4eb774c160aefc5afa86f66a0b3bb1a = L.circleMarker(\\n\",\n       \"                [31.8585, 117.336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ac89bdb9fa7ea8cfb312093e760129c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb577c74903960dcf41e05a082ab5874 = $(`&lt;div id=&quot;html_cb577c74903960dcf41e05a082ab5874&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.336             latitude:31.8585             PM2_5:51.78089888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ac89bdb9fa7ea8cfb312093e760129c.setContent(html_cb577c74903960dcf41e05a082ab5874);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4eb774c160aefc5afa86f66a0b3bb1a.bindPopup(popup_1ac89bdb9fa7ea8cfb312093e760129c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_018d9e708f697fb582bd92a5e347f382 = L.circleMarker(\\n\",\n       \"                [26.6266, 106.6243],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e71b84e98b2abcb07d207856be4fe77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29f7087d3b50d6999b74b7d14ea58575 = $(`&lt;div id=&quot;html_29f7087d3b50d6999b74b7d14ea58575&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6243             latitude:26.6266             PM2_5:29.28045326             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e71b84e98b2abcb07d207856be4fe77.setContent(html_29f7087d3b50d6999b74b7d14ea58575);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_018d9e708f697fb582bd92a5e347f382.bindPopup(popup_2e71b84e98b2abcb07d207856be4fe77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3bd0ff857874485de641f64295ba994 = L.circleMarker(\\n\",\n       \"                [38.85611111, 121.5180556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c7f2b8993c44aeead82b9eccb5ebb3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d0af16144633048b74a40024e26943f = $(`&lt;div id=&quot;html_0d0af16144633048b74a40024e26943f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5180556             latitude:38.85611111             PM2_5:26.56786704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c7f2b8993c44aeead82b9eccb5ebb3b.setContent(html_0d0af16144633048b74a40024e26943f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3bd0ff857874485de641f64295ba994.bindPopup(popup_7c7f2b8993c44aeead82b9eccb5ebb3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34835967247c5bd7ceb6280c8ae9c355 = L.circleMarker(\\n\",\n       \"                [46.0703, 122.0506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6983b25eb7f20e9a0ebce8c45847a28d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91a182ac4e125f109414d911d5b869bc = $(`&lt;div id=&quot;html_91a182ac4e125f109414d911d5b869bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0506             latitude:46.0703             PM2_5:10.9972067             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6983b25eb7f20e9a0ebce8c45847a28d.setContent(html_91a182ac4e125f109414d911d5b869bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34835967247c5bd7ceb6280c8ae9c355.bindPopup(popup_6983b25eb7f20e9a0ebce8c45847a28d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5249e3b8289a859f4ffce7aeffacc52c = L.circleMarker(\\n\",\n       \"                [22.2281, 113.299],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ed4b333366b3ebe725b6429fb56f0c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_497f172272022ec61ea8f2bb7e4a45f2 = $(`&lt;div id=&quot;html_497f172272022ec61ea8f2bb7e4a45f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.299             latitude:22.2281             PM2_5:30.13276836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ed4b333366b3ebe725b6429fb56f0c2.setContent(html_497f172272022ec61ea8f2bb7e4a45f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5249e3b8289a859f4ffce7aeffacc52c.bindPopup(popup_6ed4b333366b3ebe725b6429fb56f0c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06bda096aa649cf5f611ae08ffac2d69 = L.circleMarker(\\n\",\n       \"                [30.51197222, 117.0331111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91ff59e96d9617f03a74bdf4c047de72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fcae4d90b2037f1678a4714f10a96493 = $(`&lt;div id=&quot;html_fcae4d90b2037f1678a4714f10a96493&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0331111             latitude:30.51197222             PM2_5:50.17827298             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91ff59e96d9617f03a74bdf4c047de72.setContent(html_fcae4d90b2037f1678a4714f10a96493);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06bda096aa649cf5f611ae08ffac2d69.bindPopup(popup_91ff59e96d9617f03a74bdf4c047de72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a018e448a132b216b6a5ba6f9eeb3931 = L.circleMarker(\\n\",\n       \"                [38.9108, 115.4713],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf5dabba230de1f1da95478f961935f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0874a1447ea53281b9b2692cb72ff867 = $(`&lt;div id=&quot;html_0874a1447ea53281b9b2692cb72ff867&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.4713             latitude:38.9108             PM2_5:58.6801676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf5dabba230de1f1da95478f961935f1.setContent(html_0874a1447ea53281b9b2692cb72ff867);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a018e448a132b216b6a5ba6f9eeb3931.bindPopup(popup_cf5dabba230de1f1da95478f961935f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38565a871c7f66329bca58b08f69905e = L.circleMarker(\\n\",\n       \"                [32.4429, 105.8242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_573fc54a4bcc5652a3b37dd2fcb49db4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ab4c3bf60696283f77a4cdcd4143ae5 = $(`&lt;div id=&quot;html_2ab4c3bf60696283f77a4cdcd4143ae5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8242             latitude:32.4429             PM2_5:25.40529248             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_573fc54a4bcc5652a3b37dd2fcb49db4.setContent(html_2ab4c3bf60696283f77a4cdcd4143ae5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38565a871c7f66329bca58b08f69905e.bindPopup(popup_573fc54a4bcc5652a3b37dd2fcb49db4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cff33c03e4c357ae3fe3f699e234030d = L.circleMarker(\\n\",\n       \"                [29.7207, 118.3236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_772b1f58e29f53757360afdab539b28f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_600f42b5feea398640909d1f707c1206 = $(`&lt;div id=&quot;html_600f42b5feea398640909d1f707c1206&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3236             latitude:29.7207             PM2_5:23.60451977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_772b1f58e29f53757360afdab539b28f.setContent(html_600f42b5feea398640909d1f707c1206);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cff33c03e4c357ae3fe3f699e234030d.bindPopup(popup_772b1f58e29f53757360afdab539b28f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd0da951d7a0cafc0b188e1be93e27cb = L.circleMarker(\\n\",\n       \"                [26.4364, 111.5992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a511d231768c578453ca6fced39a2bf7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17a9647d5415bd251b0ac8c33283c5e4 = $(`&lt;div id=&quot;html_17a9647d5415bd251b0ac8c33283c5e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5992             latitude:26.4364             PM2_5:38.71856287             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a511d231768c578453ca6fced39a2bf7.setContent(html_17a9647d5415bd251b0ac8c33283c5e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd0da951d7a0cafc0b188e1be93e27cb.bindPopup(popup_a511d231768c578453ca6fced39a2bf7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_382f02c2474d65a3c8416f694eecadae = L.circleMarker(\\n\",\n       \"                [31.6928, 118.48],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35f6a4032e09d4280692de6848402ed8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ffcca2c7cfdcea21f6e4141ba2835c48 = $(`&lt;div id=&quot;html_ffcca2c7cfdcea21f6e4141ba2835c48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.48             latitude:31.6928             PM2_5:42.37571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35f6a4032e09d4280692de6848402ed8.setContent(html_ffcca2c7cfdcea21f6e4141ba2835c48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_382f02c2474d65a3c8416f694eecadae.bindPopup(popup_35f6a4032e09d4280692de6848402ed8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9319914a10c916e94e814a39b3652df9 = L.circleMarker(\\n\",\n       \"                [39.9567, 119.6023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_580490c88d8b4d560e0344684ff4cf18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07799b3eea16610de8f671560a416f8c = $(`&lt;div id=&quot;html_07799b3eea16610de8f671560a416f8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6023             latitude:39.9567             PM2_5:38.59305556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_580490c88d8b4d560e0344684ff4cf18.setContent(html_07799b3eea16610de8f671560a416f8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9319914a10c916e94e814a39b3652df9.bindPopup(popup_580490c88d8b4d560e0344684ff4cf18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e000864952a37afb34bce88261e5a0be = L.circleMarker(\\n\",\n       \"                [40.6511, 122.215],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_230a35265cf78e60ac3bc9a1e3c28cc5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a200ef39020b2c2f95c04f13f36d81b = $(`&lt;div id=&quot;html_2a200ef39020b2c2f95c04f13f36d81b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.215             latitude:40.6511             PM2_5:28.33286908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_230a35265cf78e60ac3bc9a1e3c28cc5.setContent(html_2a200ef39020b2c2f95c04f13f36d81b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e000864952a37afb34bce88261e5a0be.bindPopup(popup_230a35265cf78e60ac3bc9a1e3c28cc5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ca648c1ccb58033d573d11c511da342 = L.circleMarker(\\n\",\n       \"                [24.44583333, 118.0636111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_438fe40cc67e45e7dcd78d47b087b9fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c3dcde90cd2752147d323efb29a0322 = $(`&lt;div id=&quot;html_9c3dcde90cd2752147d323efb29a0322&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0636111             latitude:24.44583333             PM2_5:28.7359736             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_438fe40cc67e45e7dcd78d47b087b9fc.setContent(html_9c3dcde90cd2752147d323efb29a0322);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ca648c1ccb58033d573d11c511da342.bindPopup(popup_438fe40cc67e45e7dcd78d47b087b9fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5e910b0965525dc423ae0dcaf44be00 = L.circleMarker(\\n\",\n       \"                [45.755, 126.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40ac8feb8e31c0735fcc42c005a087af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65ee8cdeeb84eafdc20f4eed4131418c = $(`&lt;div id=&quot;html_65ee8cdeeb84eafdc20f4eed4131418c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.542             latitude:45.755             PM2_5:32.56527778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40ac8feb8e31c0735fcc42c005a087af.setContent(html_65ee8cdeeb84eafdc20f4eed4131418c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5e910b0965525dc423ae0dcaf44be00.bindPopup(popup_40ac8feb8e31c0735fcc42c005a087af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52fd1ea541b614950ab178050f2027ea = L.circleMarker(\\n\",\n       \"                [31.1907, 121.703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f78f7c6e48c335876314069d9f27ecec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2bb636f28ae4fc9bccb9e8613e2bbbbc = $(`&lt;div id=&quot;html_2bb636f28ae4fc9bccb9e8613e2bbbbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.703             latitude:31.1907             PM2_5:36.71126761             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f78f7c6e48c335876314069d9f27ecec.setContent(html_2bb636f28ae4fc9bccb9e8613e2bbbbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52fd1ea541b614950ab178050f2027ea.bindPopup(popup_f78f7c6e48c335876314069d9f27ecec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d0187c66f24b0036938627eba9d28cdb = L.circleMarker(\\n\",\n       \"                [23.63444, 113.0472],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfb93f088f84ffee55ec7990c9628ae5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5389999956800b6be283fba565d667b4 = $(`&lt;div id=&quot;html_5389999956800b6be283fba565d667b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0472             latitude:23.63444             PM2_5:34.71169916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfb93f088f84ffee55ec7990c9628ae5.setContent(html_5389999956800b6be283fba565d667b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d0187c66f24b0036938627eba9d28cdb.bindPopup(popup_bfb93f088f84ffee55ec7990c9628ae5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_397785df40fc66a4c7aef21de1cd4e9b = L.circleMarker(\\n\",\n       \"                [34.3274, 109.043],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_503622623c4085e9bb8fa39274ef8123 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7d136a69527cf0e632623a1eeefbe56 = $(`&lt;div id=&quot;html_d7d136a69527cf0e632623a1eeefbe56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.043             latitude:34.3274             PM2_5:65.58142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_503622623c4085e9bb8fa39274ef8123.setContent(html_d7d136a69527cf0e632623a1eeefbe56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_397785df40fc66a4c7aef21de1cd4e9b.bindPopup(popup_503622623c4085e9bb8fa39274ef8123)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77a7b6f52b719b69986a66c97e3dd3e4 = L.circleMarker(\\n\",\n       \"                [37.8873, 112.522],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be5b61b0158d57542ceea3544bb6325b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_659f72c701b37ab990fd01b34b973b7d = $(`&lt;div id=&quot;html_659f72c701b37ab990fd01b34b973b7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.522             latitude:37.8873             PM2_5:63.20200573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be5b61b0158d57542ceea3544bb6325b.setContent(html_659f72c701b37ab990fd01b34b973b7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77a7b6f52b719b69986a66c97e3dd3e4.bindPopup(popup_be5b61b0158d57542ceea3544bb6325b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fb15214ca3693a1e7a939bbb186678e = L.circleMarker(\\n\",\n       \"                [30.66, 117.49],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59846244b6f2334f0e9db2c999cb93b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54ad4fcb304c37f77b16e819bb3d43a8 = $(`&lt;div id=&quot;html_54ad4fcb304c37f77b16e819bb3d43a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.49             latitude:30.66             PM2_5:55.51436782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59846244b6f2334f0e9db2c999cb93b9.setContent(html_54ad4fcb304c37f77b16e819bb3d43a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fb15214ca3693a1e7a939bbb186678e.bindPopup(popup_59846244b6f2334f0e9db2c999cb93b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c01f1e74b0d72fe74b8df0c45f9c8d9 = L.circleMarker(\\n\",\n       \"                [31.4846, 92.0657],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9145d8926c2a538e414550d3450bb354 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3add92d2fa589f17a07b9c77e1e51645 = $(`&lt;div id=&quot;html_3add92d2fa589f17a07b9c77e1e51645&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:92.0657             latitude:31.4846             PM2_5:44.10614525             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9145d8926c2a538e414550d3450bb354.setContent(html_3add92d2fa589f17a07b9c77e1e51645);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c01f1e74b0d72fe74b8df0c45f9c8d9.bindPopup(popup_9145d8926c2a538e414550d3450bb354)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc4f1efa8dfc15203165c35f0afce28c = L.circleMarker(\\n\",\n       \"                [46.528, 125.112],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98c5f644f9ac310e35c56ff728757304 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94dc856850058686f1768fef99b6187a = $(`&lt;div id=&quot;html_94dc856850058686f1768fef99b6187a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.112             latitude:46.528             PM2_5:25.71428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98c5f644f9ac310e35c56ff728757304.setContent(html_94dc856850058686f1768fef99b6187a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc4f1efa8dfc15203165c35f0afce28c.bindPopup(popup_98c5f644f9ac310e35c56ff728757304)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2f9c4547644aafd7cae5f8959e37efd = L.circleMarker(\\n\",\n       \"                [35.5714, 104.6228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3b5172b938f5c5f0bfc8cae3c81b634 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf7dfef2293bd8f7862d6cbb523b5747 = $(`&lt;div id=&quot;html_cf7dfef2293bd8f7862d6cbb523b5747&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6228             latitude:35.5714             PM2_5:27.74789916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3b5172b938f5c5f0bfc8cae3c81b634.setContent(html_cf7dfef2293bd8f7862d6cbb523b5747);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2f9c4547644aafd7cae5f8959e37efd.bindPopup(popup_a3b5172b938f5c5f0bfc8cae3c81b634)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_473ef061151664dcb4fe4282cb60e3c3 = L.circleMarker(\\n\",\n       \"                [26.6946, 119.5001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c5cff9beebed98b692b7b2f1ad985cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44d295a777889466374c842d212494a8 = $(`&lt;div id=&quot;html_44d295a777889466374c842d212494a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5001             latitude:26.6946             PM2_5:30.51558074             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c5cff9beebed98b692b7b2f1ad985cd.setContent(html_44d295a777889466374c842d212494a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_473ef061151664dcb4fe4282cb60e3c3.bindPopup(popup_4c5cff9beebed98b692b7b2f1ad985cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_115e9540d2d5e7725aba10c5ec663a7b = L.circleMarker(\\n\",\n       \"                [31.2058, 107.4611],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e479b4e257c67349aeba79464259f5c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e14284bd40394f93d4f2914291fe447 = $(`&lt;div id=&quot;html_6e14284bd40394f93d4f2914291fe447&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4611             latitude:31.2058             PM2_5:57.28272981             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e479b4e257c67349aeba79464259f5c0.setContent(html_6e14284bd40394f93d4f2914291fe447);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_115e9540d2d5e7725aba10c5ec663a7b.bindPopup(popup_e479b4e257c67349aeba79464259f5c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3339704085e3eb6564868c536dfdcc7 = L.circleMarker(\\n\",\n       \"                [37.7111, 112.7306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b28036a7716ca17ac24894be093d5ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50176d599693c66d68f50085241efd71 = $(`&lt;div id=&quot;html_50176d599693c66d68f50085241efd71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7306             latitude:37.7111             PM2_5:57.2367688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b28036a7716ca17ac24894be093d5ba.setContent(html_50176d599693c66d68f50085241efd71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3339704085e3eb6564868c536dfdcc7.bindPopup(popup_7b28036a7716ca17ac24894be093d5ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c93961775433e8dddf38e04860b144d = L.circleMarker(\\n\",\n       \"                [36.7008, 119.1425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb12f5e64b64ce8106eeb5efb6ac0ee8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0ea5308f258ee0a755e1962bc2aa607 = $(`&lt;div id=&quot;html_f0ea5308f258ee0a755e1962bc2aa607&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1425             latitude:36.7008             PM2_5:47.30812325             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb12f5e64b64ce8106eeb5efb6ac0ee8.setContent(html_f0ea5308f258ee0a755e1962bc2aa607);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c93961775433e8dddf38e04860b144d.bindPopup(popup_bb12f5e64b64ce8106eeb5efb6ac0ee8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_979af917365ff37e12e999cd555ee572 = L.circleMarker(\\n\",\n       \"                [41.2692, 123.7989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_271ddb486de96ed16d83a48d3578be5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db04a2dc75c835c2fe6403ca08891cc8 = $(`&lt;div id=&quot;html_db04a2dc75c835c2fe6403ca08891cc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7989             latitude:41.2692             PM2_5:27.25905292             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_271ddb486de96ed16d83a48d3578be5f.setContent(html_db04a2dc75c835c2fe6403ca08891cc8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_979af917365ff37e12e999cd555ee572.bindPopup(popup_271ddb486de96ed16d83a48d3578be5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61d8cd26b8e190de59c5d9227d691d61 = L.circleMarker(\\n\",\n       \"                [35.4934, 112.835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32f8f38882cb561c02e87d26c8bc9d0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3749731c7113b34d194887430a61e280 = $(`&lt;div id=&quot;html_3749731c7113b34d194887430a61e280&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.835             latitude:35.4934             PM2_5:59.60277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32f8f38882cb561c02e87d26c8bc9d0b.setContent(html_3749731c7113b34d194887430a61e280);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61d8cd26b8e190de59c5d9227d691d61.bindPopup(popup_32f8f38882cb561c02e87d26c8bc9d0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_909f8e91a35156051e6625dc2ab0a40e = L.circleMarker(\\n\",\n       \"                [39.2474, 117.7918],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13acb8d0f9c68ab650e75fee529966a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c1318f18d1d43b35fa47cd0390aebaa = $(`&lt;div id=&quot;html_7c1318f18d1d43b35fa47cd0390aebaa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7918             latitude:39.2474             PM2_5:53.30225989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13acb8d0f9c68ab650e75fee529966a5.setContent(html_7c1318f18d1d43b35fa47cd0390aebaa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_909f8e91a35156051e6625dc2ab0a40e.bindPopup(popup_13acb8d0f9c68ab650e75fee529966a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80c9411969aabf1d6369cb447c6f5d75 = L.circleMarker(\\n\",\n       \"                [44.8969, 82.0806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5fff6f034c8806c166b5ab6ca9bea85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_302cd189e257d103e5eed29c748ac8c2 = $(`&lt;div id=&quot;html_302cd189e257d103e5eed29c748ac8c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.0806             latitude:44.8969             PM2_5:34.93175487             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5fff6f034c8806c166b5ab6ca9bea85.setContent(html_302cd189e257d103e5eed29c748ac8c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80c9411969aabf1d6369cb447c6f5d75.bindPopup(popup_b5fff6f034c8806c166b5ab6ca9bea85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f61e6cf15ccb98c5788020291adfcb8 = L.circleMarker(\\n\",\n       \"                [37.154, 122.471],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78512266e78d6c5c37d97c64ebd47526 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e316bfb0ab3963a45fd0ce0a7c0c0932 = $(`&lt;div id=&quot;html_e316bfb0ab3963a45fd0ce0a7c0c0932&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.471             latitude:37.154             PM2_5:20.93626062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78512266e78d6c5c37d97c64ebd47526.setContent(html_e316bfb0ab3963a45fd0ce0a7c0c0932);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f61e6cf15ccb98c5788020291adfcb8.bindPopup(popup_78512266e78d6c5c37d97c64ebd47526)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_186840f10c3cf39e14e91189f33cf774 = L.circleMarker(\\n\",\n       \"                [40.7612, 111.717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3bf93e8b3e91737efaeb2b4365e3514d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27d52c1e65cfbc24b02ad2f3e00e3dd1 = $(`&lt;div id=&quot;html_27d52c1e65cfbc24b02ad2f3e00e3dd1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.717             latitude:40.7612             PM2_5:35.41242938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3bf93e8b3e91737efaeb2b4365e3514d.setContent(html_27d52c1e65cfbc24b02ad2f3e00e3dd1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_186840f10c3cf39e14e91189f33cf774.bindPopup(popup_3bf93e8b3e91737efaeb2b4365e3514d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1bef3950b1b2b49fbe5df87ffcbe392 = L.circleMarker(\\n\",\n       \"                [40.0917, 113.3444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3fc6903d4508e79b057d4d99a7c9c29f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_221a936218e825bef882289301e3b7b8 = $(`&lt;div id=&quot;html_221a936218e825bef882289301e3b7b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3444             latitude:40.0917             PM2_5:36.00139665             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3fc6903d4508e79b057d4d99a7c9c29f.setContent(html_221a936218e825bef882289301e3b7b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1bef3950b1b2b49fbe5df87ffcbe392.bindPopup(popup_3fc6903d4508e79b057d4d99a7c9c29f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51ba1e054adbe1b9695081ae6f020df9 = L.circleMarker(\\n\",\n       \"                [21.8536, 111.9508],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c833f1333006fd6fa05feef4032fed0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac378e83ff406103d440ad10aa7401fe = $(`&lt;div id=&quot;html_ac378e83ff406103d440ad10aa7401fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9508             latitude:21.8536             PM2_5:31.69088319             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c833f1333006fd6fa05feef4032fed0.setContent(html_ac378e83ff406103d440ad10aa7401fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51ba1e054adbe1b9695081ae6f020df9.bindPopup(popup_8c833f1333006fd6fa05feef4032fed0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c2bec86992a7647f9de8e3c0d48a8cbf = L.circleMarker(\\n\",\n       \"                [42.0228, 121.6722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a6a52cabe6d846597203a37f15a7554 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_81bfd8f799841d8e98e554a9842f86ee = $(`&lt;div id=&quot;html_81bfd8f799841d8e98e554a9842f86ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6722             latitude:42.0228             PM2_5:28.55070423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a6a52cabe6d846597203a37f15a7554.setContent(html_81bfd8f799841d8e98e554a9842f86ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c2bec86992a7647f9de8e3c0d48a8cbf.bindPopup(popup_2a6a52cabe6d846597203a37f15a7554)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d621e1bde79a4ab3aa89bc34e41c62e6 = L.circleMarker(\\n\",\n       \"                [36.6872, 116.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_009d909c494636e4b3b26ede0e5b8087 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2e24b2c4cc37a70a7be58bd210cf84f = $(`&lt;div id=&quot;html_e2e24b2c4cc37a70a7be58bd210cf84f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.989             latitude:36.6872             PM2_5:52.91253644             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_009d909c494636e4b3b26ede0e5b8087.setContent(html_e2e24b2c4cc37a70a7be58bd210cf84f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d621e1bde79a4ab3aa89bc34e41c62e6.bindPopup(popup_009d909c494636e4b3b26ede0e5b8087)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e17b559a19eb45d726261d4f599985a6 = L.circleMarker(\\n\",\n       \"                [31.9108, 119.905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30ef40eb4137c26045287c6625c4753d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c28b9eaae30f090f66824979b2e363b = $(`&lt;div id=&quot;html_3c28b9eaae30f090f66824979b2e363b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.905             latitude:31.9108             PM2_5:48.17130919             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30ef40eb4137c26045287c6625c4753d.setContent(html_3c28b9eaae30f090f66824979b2e363b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e17b559a19eb45d726261d4f599985a6.bindPopup(popup_30ef40eb4137c26045287c6625c4753d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c4b19d2c52bd9952e080852032fdcbf3 = L.circleMarker(\\n\",\n       \"                [44.2967, 86.0497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb87398b21e4a7e15ab7470504b96db9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c32206757a8812e1b34ebf77d4bd12f = $(`&lt;div id=&quot;html_0c32206757a8812e1b34ebf77d4bd12f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.0497             latitude:44.2967             PM2_5:59.0518732             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb87398b21e4a7e15ab7470504b96db9.setContent(html_0c32206757a8812e1b34ebf77d4bd12f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c4b19d2c52bd9952e080852032fdcbf3.bindPopup(popup_fb87398b21e4a7e15ab7470504b96db9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d0eac3c263185e42fce0afdec8baf42f = L.circleMarker(\\n\",\n       \"                [37.7379, 115.6426],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eba55e0100254eb63ba2e8d311e30130 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31172b9ca60ffbe8192cfc2bbd88d600 = $(`&lt;div id=&quot;html_31172b9ca60ffbe8192cfc2bbd88d600&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6426             latitude:37.7379             PM2_5:63.57938719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eba55e0100254eb63ba2e8d311e30130.setContent(html_31172b9ca60ffbe8192cfc2bbd88d600);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d0eac3c263185e42fce0afdec8baf42f.bindPopup(popup_eba55e0100254eb63ba2e8d311e30130)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75d09dc9680e7aafd64526f4b3693d0e = L.circleMarker(\\n\",\n       \"                [22.7019, 110.1106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d322acf0d2307552f61e1b08129a5c2b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f2e4d1d1ba8cfd09c78ad265f3cbbb2 = $(`&lt;div id=&quot;html_3f2e4d1d1ba8cfd09c78ad265f3cbbb2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1106             latitude:22.7019             PM2_5:33.85714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d322acf0d2307552f61e1b08129a5c2b.setContent(html_3f2e4d1d1ba8cfd09c78ad265f3cbbb2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75d09dc9680e7aafd64526f4b3693d0e.bindPopup(popup_d322acf0d2307552f61e1b08129a5c2b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c2d624005a978e6e1b0e0415e28794d = L.circleMarker(\\n\",\n       \"                [37.4967, 121.2611],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f1d4eb5e5ec983ced75077ccc7b7dc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca04a79c237d2d1ea390dc3883f54f28 = $(`&lt;div id=&quot;html_ca04a79c237d2d1ea390dc3883f54f28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2611             latitude:37.4967             PM2_5:30.04441261             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f1d4eb5e5ec983ced75077ccc7b7dc4.setContent(html_ca04a79c237d2d1ea390dc3883f54f28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c2d624005a978e6e1b0e0415e28794d.bindPopup(popup_4f1d4eb5e5ec983ced75077ccc7b7dc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_815291a3927c1569957f540670d64220 = L.circleMarker(\\n\",\n       \"                [26.8906, 100.2203],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb9a225a869127c58682a4cceb34c5e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5fbd9a6aacaad21502cb1f3dfd8d9140 = $(`&lt;div id=&quot;html_5fbd9a6aacaad21502cb1f3dfd8d9140&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2203             latitude:26.8906             PM2_5:12.86505682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb9a225a869127c58682a4cceb34c5e0.setContent(html_5fbd9a6aacaad21502cb1f3dfd8d9140);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_815291a3927c1569957f540670d64220.bindPopup(popup_fb9a225a869127c58682a4cceb34c5e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d41877833d3181273166e69bc8b7d7f = L.circleMarker(\\n\",\n       \"                [28.4303, 117.9033],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_128675b2bac2848e8f0c871727484233 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f75759e1b78a37502847c1059229b351 = $(`&lt;div id=&quot;html_f75759e1b78a37502847c1059229b351&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9033             latitude:28.4303             PM2_5:43.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_128675b2bac2848e8f0c871727484233.setContent(html_f75759e1b78a37502847c1059229b351);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d41877833d3181273166e69bc8b7d7f.bindPopup(popup_128675b2bac2848e8f0c871727484233)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c956d56216bd5474df788ed22c48353f = L.circleMarker(\\n\",\n       \"                [33.8997, 116.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bda59966e08f1628e2316ee0af621d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f819451a0e5e16d124fbf580f6f2b47b = $(`&lt;div id=&quot;html_f819451a0e5e16d124fbf580f6f2b47b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8067             latitude:33.8997             PM2_5:59.70949721             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bda59966e08f1628e2316ee0af621d2.setContent(html_f819451a0e5e16d124fbf580f6f2b47b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c956d56216bd5474df788ed22c48353f.bindPopup(popup_8bda59966e08f1628e2316ee0af621d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12ac33a01889ca3da0cb66d506289715 = L.circleMarker(\\n\",\n       \"                [27.9153, 113.0048],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f342c583a75603a09768f353173fcec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67cfe9ec5be56a2e3edff7eb3bf95b7a = $(`&lt;div id=&quot;html_67cfe9ec5be56a2e3edff7eb3bf95b7a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0048             latitude:27.9153             PM2_5:42.26977401             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f342c583a75603a09768f353173fcec.setContent(html_67cfe9ec5be56a2e3edff7eb3bf95b7a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12ac33a01889ca3da0cb66d506289715.bindPopup(popup_3f342c583a75603a09768f353173fcec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c142b7af43025db0ae0548815ea0d5cd = L.circleMarker(\\n\",\n       \"                [42.8172, 93.5128],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b30ac8a2e2e9b99012491f071d36659 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d4d10f69b50d9d315e2abc12d894b0f = $(`&lt;div id=&quot;html_6d4d10f69b50d9d315e2abc12d894b0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:93.5128             latitude:42.8172             PM2_5:29.67156863             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b30ac8a2e2e9b99012491f071d36659.setContent(html_6d4d10f69b50d9d315e2abc12d894b0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c142b7af43025db0ae0548815ea0d5cd.bindPopup(popup_8b30ac8a2e2e9b99012491f071d36659)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a55c8e69812428dc3a783a1bbeb529cf = L.circleMarker(\\n\",\n       \"                [27.11, 114.9739],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6bda4a5422f30c9e246f0b4c8dc852f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_227945f2efa6386784892fb00ab51bc8 = $(`&lt;div id=&quot;html_227945f2efa6386784892fb00ab51bc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9739             latitude:27.11             PM2_5:50.92039106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6bda4a5422f30c9e246f0b4c8dc852f.setContent(html_227945f2efa6386784892fb00ab51bc8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a55c8e69812428dc3a783a1bbeb529cf.bindPopup(popup_b6bda4a5422f30c9e246f0b4c8dc852f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce6e3abac990a2516625d9013a355076 = L.circleMarker(\\n\",\n       \"                [32.4246, 105.8153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66711b04a044f4deb15c1783f1acd51c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18abedc11e827f7da486ff1dfb863f35 = $(`&lt;div id=&quot;html_18abedc11e827f7da486ff1dfb863f35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8153             latitude:32.4246             PM2_5:25.12222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66711b04a044f4deb15c1783f1acd51c.setContent(html_18abedc11e827f7da486ff1dfb863f35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce6e3abac990a2516625d9013a355076.bindPopup(popup_66711b04a044f4deb15c1783f1acd51c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ef8d51738c7b32c1fcdf652799ad309 = L.circleMarker(\\n\",\n       \"                [30.1377, 104.6289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36dfd9391976b2258f58651d784f6f0e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_424031e6a8ba2812ff14fe08c7ac9a6a = $(`&lt;div id=&quot;html_424031e6a8ba2812ff14fe08c7ac9a6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6289             latitude:30.1377             PM2_5:37.58725762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36dfd9391976b2258f58651d784f6f0e.setContent(html_424031e6a8ba2812ff14fe08c7ac9a6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ef8d51738c7b32c1fcdf652799ad309.bindPopup(popup_36dfd9391976b2258f58651d784f6f0e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e638bc141d352bb7d64e6d989591c90 = L.circleMarker(\\n\",\n       \"                [31.751, 119.579],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0857e6885a9c07c4f3cffdaae51bb4af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_298821b74f03caba1552b5516a7c78b7 = $(`&lt;div id=&quot;html_298821b74f03caba1552b5516a7c78b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.579             latitude:31.751             PM2_5:40.41620112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0857e6885a9c07c4f3cffdaae51bb4af.setContent(html_298821b74f03caba1552b5516a7c78b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e638bc141d352bb7d64e6d989591c90.bindPopup(popup_0857e6885a9c07c4f3cffdaae51bb4af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_448a5277599ea836dce35dec0a10202e = L.circleMarker(\\n\",\n       \"                [38.8707, 115.5214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52af293d9017bebfc88666b3dad4ac50 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bbaa80edfabee5b28c97fa04a2869164 = $(`&lt;div id=&quot;html_bbaa80edfabee5b28c97fa04a2869164&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.5214             latitude:38.8707             PM2_5:55.75207756             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52af293d9017bebfc88666b3dad4ac50.setContent(html_bbaa80edfabee5b28c97fa04a2869164);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_448a5277599ea836dce35dec0a10202e.bindPopup(popup_52af293d9017bebfc88666b3dad4ac50)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa88b0162c9ea34d4157cdd17e266efa = L.circleMarker(\\n\",\n       \"                [43.95305556, 126.4738889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5082085be68623bf23f00dde57976253 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c031b2c331a1f9014278c333bbb0104f = $(`&lt;div id=&quot;html_c031b2c331a1f9014278c333bbb0104f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4738889             latitude:43.95305556             PM2_5:32.6299435             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5082085be68623bf23f00dde57976253.setContent(html_c031b2c331a1f9014278c333bbb0104f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa88b0162c9ea34d4157cdd17e266efa.bindPopup(popup_5082085be68623bf23f00dde57976253)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_815531cd1c355dbf50cbae85d9ee01a4 = L.circleMarker(\\n\",\n       \"                [41.0385, 113.1076],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9264c3451519a638d79813e55c87f2fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c74ee95c1d90e3df8ca1c1b6367fbbcc = $(`&lt;div id=&quot;html_c74ee95c1d90e3df8ca1c1b6367fbbcc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1076             latitude:41.0385             PM2_5:21.04899135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9264c3451519a638d79813e55c87f2fa.setContent(html_c74ee95c1d90e3df8ca1c1b6367fbbcc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_815531cd1c355dbf50cbae85d9ee01a4.bindPopup(popup_9264c3451519a638d79813e55c87f2fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e200e157adc7f0f3de4c10311d148a38 = L.circleMarker(\\n\",\n       \"                [45.9819, 126.6106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e817d25e6ab616e46200f9034df3614 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f53ca91fab61aea4dee7ba91ac2c86ea = $(`&lt;div id=&quot;html_f53ca91fab61aea4dee7ba91ac2c86ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6106             latitude:45.9819             PM2_5:34.13841808             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e817d25e6ab616e46200f9034df3614.setContent(html_f53ca91fab61aea4dee7ba91ac2c86ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e200e157adc7f0f3de4c10311d148a38.bindPopup(popup_1e817d25e6ab616e46200f9034df3614)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0f48c3de9464e521c58dc21b6c44cf5 = L.circleMarker(\\n\",\n       \"                [27.8244, 113.135],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60f094ab0cdd1802114b16b20bdf40c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44763565afb0d74c2865d9eaf449f9f1 = $(`&lt;div id=&quot;html_44763565afb0d74c2865d9eaf449f9f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.135             latitude:27.8244             PM2_5:41.64623955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60f094ab0cdd1802114b16b20bdf40c9.setContent(html_44763565afb0d74c2865d9eaf449f9f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0f48c3de9464e521c58dc21b6c44cf5.bindPopup(popup_60f094ab0cdd1802114b16b20bdf40c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c23ab4fbbf5d90582a1a632356002c4 = L.circleMarker(\\n\",\n       \"                [33.6067, 118.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_191165e78c9cfec62750525729f6ed91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff46eb744b20f2b956cdd30a0cae943d = $(`&lt;div id=&quot;html_ff46eb744b20f2b956cdd30a0cae943d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.989             latitude:33.6067             PM2_5:49.74859551             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_191165e78c9cfec62750525729f6ed91.setContent(html_ff46eb744b20f2b956cdd30a0cae943d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c23ab4fbbf5d90582a1a632356002c4.bindPopup(popup_191165e78c9cfec62750525729f6ed91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c09543b5db20e2103b4f3bbf230ab755 = L.circleMarker(\\n\",\n       \"                [35.763, 115.031],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf82691d6a952fab276893b8fa26f039 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4512a2cb8e79a66f32b6ab64f0dc4f22 = $(`&lt;div id=&quot;html_4512a2cb8e79a66f32b6ab64f0dc4f22&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.031             latitude:35.763             PM2_5:59.26740947             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf82691d6a952fab276893b8fa26f039.setContent(html_4512a2cb8e79a66f32b6ab64f0dc4f22);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c09543b5db20e2103b4f3bbf230ab755.bindPopup(popup_bf82691d6a952fab276893b8fa26f039)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97d22ac71219096095b68b9ef40f6124 = L.circleMarker(\\n\",\n       \"                [46.7588, 130.3794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ebdc4dbe1d550ba2b2bc7d04e9560bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c9f1258987f66bfdb9ebb3a6b71a5f2 = $(`&lt;div id=&quot;html_0c9f1258987f66bfdb9ebb3a6b71a5f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3794             latitude:46.7588             PM2_5:31.27683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ebdc4dbe1d550ba2b2bc7d04e9560bf.setContent(html_0c9f1258987f66bfdb9ebb3a6b71a5f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97d22ac71219096095b68b9ef40f6124.bindPopup(popup_5ebdc4dbe1d550ba2b2bc7d04e9560bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa1e58656c1a977b229e4a3ece1db6e0 = L.circleMarker(\\n\",\n       \"                [23.3892, 104.2319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7a3c532fbe5ce62fae2fa5695c0db14 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9de041ef198b1dc986b923b9364a62dd = $(`&lt;div id=&quot;html_9de041ef198b1dc986b923b9364a62dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.2319             latitude:23.3892             PM2_5:19.89655172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7a3c532fbe5ce62fae2fa5695c0db14.setContent(html_9de041ef198b1dc986b923b9364a62dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa1e58656c1a977b229e4a3ece1db6e0.bindPopup(popup_a7a3c532fbe5ce62fae2fa5695c0db14)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89f0c9901b845af3f03314792aba17f0 = L.circleMarker(\\n\",\n       \"                [30.1142, 104.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28aeb3eb8e38baec13371818df8e4d18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1092b05911c025f265daecabb4ad50cf = $(`&lt;div id=&quot;html_1092b05911c025f265daecabb4ad50cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6469             latitude:30.1142             PM2_5:39.93888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28aeb3eb8e38baec13371818df8e4d18.setContent(html_1092b05911c025f265daecabb4ad50cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89f0c9901b845af3f03314792aba17f0.bindPopup(popup_28aeb3eb8e38baec13371818df8e4d18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75aa2721795d0d47026c7a8651f02875 = L.circleMarker(\\n\",\n       \"                [41.9967, 121.6178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a00bf01a8732ec205e73807914e6427 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_339a771b536837a12c0ce3934ef6f65d = $(`&lt;div id=&quot;html_339a771b536837a12c0ce3934ef6f65d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6178             latitude:41.9967             PM2_5:23.90422535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a00bf01a8732ec205e73807914e6427.setContent(html_339a771b536837a12c0ce3934ef6f65d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75aa2721795d0d47026c7a8651f02875.bindPopup(popup_1a00bf01a8732ec205e73807914e6427)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d0014421e097069004c5619fe603db1b = L.circleMarker(\\n\",\n       \"                [22.805, 108.383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8cbc56db58bd4a7bf6df0122ea03977b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee833a8b7f40a8a9d40b845da2f92073 = $(`&lt;div id=&quot;html_ee833a8b7f40a8a9d40b845da2f92073&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.383             latitude:22.805             PM2_5:32.59722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8cbc56db58bd4a7bf6df0122ea03977b.setContent(html_ee833a8b7f40a8a9d40b845da2f92073);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d0014421e097069004c5619fe603db1b.bindPopup(popup_8cbc56db58bd4a7bf6df0122ea03977b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c293d03d32484e9100f554daa17ea41d = L.circleMarker(\\n\",\n       \"                [28.4459, 117.973],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34bdc5e7b5a4d37eb971df91d4a50cb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_118e2e0ba0d3ef26f66df81042d3a2d4 = $(`&lt;div id=&quot;html_118e2e0ba0d3ef26f66df81042d3a2d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.973             latitude:28.4459             PM2_5:38.90642458             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34bdc5e7b5a4d37eb971df91d4a50cb2.setContent(html_118e2e0ba0d3ef26f66df81042d3a2d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c293d03d32484e9100f554daa17ea41d.bindPopup(popup_34bdc5e7b5a4d37eb971df91d4a50cb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6866d22ef6aa26bae43794525f00a5b6 = L.circleMarker(\\n\",\n       \"                [39.6572, 106.7931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97b5df8a6e0513217db8fba19fdcd662 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6203293643c5699d98471f712a39e77 = $(`&lt;div id=&quot;html_d6203293643c5699d98471f712a39e77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7931             latitude:39.6572             PM2_5:38.36629526             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97b5df8a6e0513217db8fba19fdcd662.setContent(html_d6203293643c5699d98471f712a39e77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6866d22ef6aa26bae43794525f00a5b6.bindPopup(popup_97b5df8a6e0513217db8fba19fdcd662)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67c62be89f9e6f7dd0093d95cab42c05 = L.circleMarker(\\n\",\n       \"                [31.17, 120.635],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e0c088043d069ed05f25ba0f37a2fef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db9804a7b2d0f6a8560ba6801e3f422a = $(`&lt;div id=&quot;html_db9804a7b2d0f6a8560ba6801e3f422a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.635             latitude:31.17             PM2_5:41.06571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e0c088043d069ed05f25ba0f37a2fef.setContent(html_db9804a7b2d0f6a8560ba6801e3f422a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67c62be89f9e6f7dd0093d95cab42c05.bindPopup(popup_3e0c088043d069ed05f25ba0f37a2fef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87b67ffbbb1659a4f7c0f8184490fcd6 = L.circleMarker(\\n\",\n       \"                [27.8072, 114.4011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd59c016dbdc2bd9ccd55e5784c22d76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd96bb995f7348167a61ca40b03e20f0 = $(`&lt;div id=&quot;html_fd96bb995f7348167a61ca40b03e20f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4011             latitude:27.8072             PM2_5:51.75623269             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd59c016dbdc2bd9ccd55e5784c22d76.setContent(html_fd96bb995f7348167a61ca40b03e20f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87b67ffbbb1659a4f7c0f8184490fcd6.bindPopup(popup_fd59c016dbdc2bd9ccd55e5784c22d76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e88769e528dff449a86e469eff5c29ac = L.circleMarker(\\n\",\n       \"                [24.339, 102.5381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f78253c43b55c543b6754f8686890d85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8e049b7594f849e5e6b1fa198e34aca = $(`&lt;div id=&quot;html_e8e049b7594f849e5e6b1fa198e34aca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5381             latitude:24.339             PM2_5:22.35252809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f78253c43b55c543b6754f8686890d85.setContent(html_e8e049b7594f849e5e6b1fa198e34aca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e88769e528dff449a86e469eff5c29ac.bindPopup(popup_f78253c43b55c543b6754f8686890d85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bdfb1f9bce0a18d58ad4848ce5a13fbf = L.circleMarker(\\n\",\n       \"                [35.0697, 109.0697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5bbcfc98e70c171c7a69c691cf710ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c5f21ee694a64256a46506e206a2ad2 = $(`&lt;div id=&quot;html_9c5f21ee694a64256a46506e206a2ad2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0697             latitude:35.0697             PM2_5:43.21111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5bbcfc98e70c171c7a69c691cf710ac.setContent(html_9c5f21ee694a64256a46506e206a2ad2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bdfb1f9bce0a18d58ad4848ce5a13fbf.bindPopup(popup_b5bbcfc98e70c171c7a69c691cf710ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6272a4e6cc845391a7d27aab98a3dd34 = L.circleMarker(\\n\",\n       \"                [26.4519, 111.5989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c6e81ec90115ec4ea0c345d9e48936a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3146c86e3208c570a8a5cd0bc862b828 = $(`&lt;div id=&quot;html_3146c86e3208c570a8a5cd0bc862b828&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5989             latitude:26.4519             PM2_5:38.40285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c6e81ec90115ec4ea0c345d9e48936a.setContent(html_3146c86e3208c570a8a5cd0bc862b828);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6272a4e6cc845391a7d27aab98a3dd34.bindPopup(popup_9c6e81ec90115ec4ea0c345d9e48936a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06d18edd697e606e143354401fa6b47b = L.circleMarker(\\n\",\n       \"                [31.2659, 121.536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0063eb8a723042a8aef12dd56ad3905b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_683ec1dd150b4b932cef33a6db53f706 = $(`&lt;div id=&quot;html_683ec1dd150b4b932cef33a6db53f706&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.536             latitude:31.2659             PM2_5:40.78813559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0063eb8a723042a8aef12dd56ad3905b.setContent(html_683ec1dd150b4b932cef33a6db53f706);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06d18edd697e606e143354401fa6b47b.bindPopup(popup_0063eb8a723042a8aef12dd56ad3905b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7be9e671dc75c583bbff02f46e110a9 = L.circleMarker(\\n\",\n       \"                [29.53675, 106.4959],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_475ef4046bedf56bd8fe9a3278b2ed8c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_749f94b9d67730859304e400b6489906 = $(`&lt;div id=&quot;html_749f94b9d67730859304e400b6489906&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.4959             latitude:29.53675             PM2_5:37.87465181             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_475ef4046bedf56bd8fe9a3278b2ed8c.setContent(html_749f94b9d67730859304e400b6489906);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7be9e671dc75c583bbff02f46e110a9.bindPopup(popup_475ef4046bedf56bd8fe9a3278b2ed8c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a29401dfcea608706850738fd5c638d5 = L.circleMarker(\\n\",\n       \"                [30.6145, 116.9894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8a8d7c536a0b61cbbcb829274779bd1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82da371b9a33c6deebe26d1aa78f8a1f = $(`&lt;div id=&quot;html_82da371b9a33c6deebe26d1aa78f8a1f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9894             latitude:30.6145             PM2_5:57.02957746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8a8d7c536a0b61cbbcb829274779bd1.setContent(html_82da371b9a33c6deebe26d1aa78f8a1f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a29401dfcea608706850738fd5c638d5.bindPopup(popup_e8a8d7c536a0b61cbbcb829274779bd1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7abffcc03c02b64b8a641fc711d98ebe = L.circleMarker(\\n\",\n       \"                [23.3917, 113.215],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26ad7623d55342f09cecdcf3f657dcd9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2e35035630adbbb778246a2385b03fc = $(`&lt;div id=&quot;html_a2e35035630adbbb778246a2385b03fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.215             latitude:23.3917             PM2_5:31.49579832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26ad7623d55342f09cecdcf3f657dcd9.setContent(html_a2e35035630adbbb778246a2385b03fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7abffcc03c02b64b8a641fc711d98ebe.bindPopup(popup_26ad7623d55342f09cecdcf3f657dcd9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21541062dd5a364e75b0721d17b3d07b = L.circleMarker(\\n\",\n       \"                [30.6463, 111.3549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bc5e50ce6cde4860d9ef009632c0019 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_914a8b5f23f0c2a548b95c835312da27 = $(`&lt;div id=&quot;html_914a8b5f23f0c2a548b95c835312da27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3549             latitude:30.6463             PM2_5:54.88450704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bc5e50ce6cde4860d9ef009632c0019.setContent(html_914a8b5f23f0c2a548b95c835312da27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21541062dd5a364e75b0721d17b3d07b.bindPopup(popup_7bc5e50ce6cde4860d9ef009632c0019)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36ab8935200c64ff05f628268ff11181 = L.circleMarker(\\n\",\n       \"                [29.9899, 103.0013],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86155a1ff92d3ba8cd4848dc46739611 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa5f1dc8df2bdcfd172340be6386ec98 = $(`&lt;div id=&quot;html_aa5f1dc8df2bdcfd172340be6386ec98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0013             latitude:29.9899             PM2_5:48.85180055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86155a1ff92d3ba8cd4848dc46739611.setContent(html_aa5f1dc8df2bdcfd172340be6386ec98);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36ab8935200c64ff05f628268ff11181.bindPopup(popup_86155a1ff92d3ba8cd4848dc46739611)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5162777f58be17896a108b6760e03f57 = L.circleMarker(\\n\",\n       \"                [41.3472, 123.8142],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f68b82f58ce1a9e485420785221eccd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0d206adbe1191d4ecf4b5a8bcb536e9 = $(`&lt;div id=&quot;html_d0d206adbe1191d4ecf4b5a8bcb536e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8142             latitude:41.3472             PM2_5:30.93201133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f68b82f58ce1a9e485420785221eccd.setContent(html_d0d206adbe1191d4ecf4b5a8bcb536e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5162777f58be17896a108b6760e03f57.bindPopup(popup_4f68b82f58ce1a9e485420785221eccd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b84ed8c163e19d533d3497bd038d6de2 = L.circleMarker(\\n\",\n       \"                [47.3386, 123.9305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e475f18b2a0f3db0b44a9533db624ca4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_658e73491a4e05a765bacca064d1fff5 = $(`&lt;div id=&quot;html_658e73491a4e05a765bacca064d1fff5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9305             latitude:47.3386             PM2_5:24.86428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e475f18b2a0f3db0b44a9533db624ca4.setContent(html_658e73491a4e05a765bacca064d1fff5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b84ed8c163e19d533d3497bd038d6de2.bindPopup(popup_e475f18b2a0f3db0b44a9533db624ca4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e57a68e8c151fe7de09274c457fb8bd0 = L.circleMarker(\\n\",\n       \"                [27.8667, 113.167],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce3cf574d6296c5bb57b736f33516ff4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_229c00e79596f862d137aad904527746 = $(`&lt;div id=&quot;html_229c00e79596f862d137aad904527746&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.167             latitude:27.8667             PM2_5:38.5579096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce3cf574d6296c5bb57b736f33516ff4.setContent(html_229c00e79596f862d137aad904527746);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e57a68e8c151fe7de09274c457fb8bd0.bindPopup(popup_ce3cf574d6296c5bb57b736f33516ff4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34a581ea0bcdd5837b99b0cd2c8eb66b = L.circleMarker(\\n\",\n       \"                [40.916, 107.5936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9503609d0e45a855c604abcd2f519df0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43acb77359018c346053551311bfc40f = $(`&lt;div id=&quot;html_43acb77359018c346053551311bfc40f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5936             latitude:40.916             PM2_5:28.17335244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9503609d0e45a855c604abcd2f519df0.setContent(html_43acb77359018c346053551311bfc40f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34a581ea0bcdd5837b99b0cd2c8eb66b.bindPopup(popup_9503609d0e45a855c604abcd2f519df0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aff4b31f47efe8a9a1adfad3721fb2b8 = L.circleMarker(\\n\",\n       \"                [37.7087, 112.7105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0df43892960e351a57c184e836653bbb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94793691f9cedf34f0691ab12c4baffd = $(`&lt;div id=&quot;html_94793691f9cedf34f0691ab12c4baffd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7105             latitude:37.7087             PM2_5:62.86173184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0df43892960e351a57c184e836653bbb.setContent(html_94793691f9cedf34f0691ab12c4baffd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aff4b31f47efe8a9a1adfad3721fb2b8.bindPopup(popup_0df43892960e351a57c184e836653bbb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7d1b899191af44ba0f513e4ff28110a = L.circleMarker(\\n\",\n       \"                [24.3663, 109.3957],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7761220d1d618cacd32b4f5578d34886 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_348e496a8123c9852e33e50c544c8b4d = $(`&lt;div id=&quot;html_348e496a8123c9852e33e50c544c8b4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.3957             latitude:24.3663             PM2_5:50.98333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7761220d1d618cacd32b4f5578d34886.setContent(html_348e496a8123c9852e33e50c544c8b4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7d1b899191af44ba0f513e4ff28110a.bindPopup(popup_7761220d1d618cacd32b4f5578d34886)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24e9a868f9d68874b12a19360788a576 = L.circleMarker(\\n\",\n       \"                [26.4364, 106.6554],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11d0f240ae165ac7ad1208eb686443f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4b77cd4f98969f744764c8aae5dc5b9 = $(`&lt;div id=&quot;html_c4b77cd4f98969f744764c8aae5dc5b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6554             latitude:26.4364             PM2_5:30.33479532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11d0f240ae165ac7ad1208eb686443f5.setContent(html_c4b77cd4f98969f744764c8aae5dc5b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24e9a868f9d68874b12a19360788a576.bindPopup(popup_11d0f240ae165ac7ad1208eb686443f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f4c21f07dea2fd036508c0562dfe556 = L.circleMarker(\\n\",\n       \"                [26.6009, 106.7105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd06c2de359f949f99eeb9d02aa5ace7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab17be48893c78156a1e873cbc1d5a53 = $(`&lt;div id=&quot;html_ab17be48893c78156a1e873cbc1d5a53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7105             latitude:26.6009             PM2_5:37.39915966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd06c2de359f949f99eeb9d02aa5ace7.setContent(html_ab17be48893c78156a1e873cbc1d5a53);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f4c21f07dea2fd036508c0562dfe556.bindPopup(popup_cd06c2de359f949f99eeb9d02aa5ace7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10efb44e8a2cfe3e47b543db07db6b0b = L.circleMarker(\\n\",\n       \"                [31.5631, 120.245],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a587167707d2627ac73e9fad06964fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_817ea55130db1430d259163b8bb5b579 = $(`&lt;div id=&quot;html_817ea55130db1430d259163b8bb5b579&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.245             latitude:31.5631             PM2_5:46.98314607             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a587167707d2627ac73e9fad06964fe.setContent(html_817ea55130db1430d259163b8bb5b579);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10efb44e8a2cfe3e47b543db07db6b0b.bindPopup(popup_3a587167707d2627ac73e9fad06964fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_249102911ca0ed2477554a74d16b24b2 = L.circleMarker(\\n\",\n       \"                [37.4372, 116.2714],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afde9a45a85dacf4f617d40858faff72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ccc9816b60e38ecf177fbdb800b5a7c = $(`&lt;div id=&quot;html_9ccc9816b60e38ecf177fbdb800b5a7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.2714             latitude:37.4372             PM2_5:52.45266272             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afde9a45a85dacf4f617d40858faff72.setContent(html_9ccc9816b60e38ecf177fbdb800b5a7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_249102911ca0ed2477554a74d16b24b2.bindPopup(popup_afde9a45a85dacf4f617d40858faff72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_745778e6c1ee4a4c832c3bc7a01a3ee2 = L.circleMarker(\\n\",\n       \"                [35.27, 115.455],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59ed8264e114c2c78d810c02ba149bae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_739397c9a30af623b30a34f9cc713020 = $(`&lt;div id=&quot;html_739397c9a30af623b30a34f9cc713020&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.455             latitude:35.27             PM2_5:62.4789916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59ed8264e114c2c78d810c02ba149bae.setContent(html_739397c9a30af623b30a34f9cc713020);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_745778e6c1ee4a4c832c3bc7a01a3ee2.bindPopup(popup_59ed8264e114c2c78d810c02ba149bae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4caf4c5ea0649254d179481a5016f1e = L.circleMarker(\\n\",\n       \"                [35.428, 116.6305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5d021b3306e54afe798d05d729e7e3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1bfa53e08f85758c25f01ad22289ca3 = $(`&lt;div id=&quot;html_a1bfa53e08f85758c25f01ad22289ca3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6305             latitude:35.428             PM2_5:49.96927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5d021b3306e54afe798d05d729e7e3e.setContent(html_a1bfa53e08f85758c25f01ad22289ca3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4caf4c5ea0649254d179481a5016f1e.bindPopup(popup_f5d021b3306e54afe798d05d729e7e3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a2b57ed581f2c4945abb43d5462606e = L.circleMarker(\\n\",\n       \"                [38.0398, 114.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3de3ec992ff8dc51fde484d3e788bff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46cc9733ac83845a71be216708e6a4f4 = $(`&lt;div id=&quot;html_46cc9733ac83845a71be216708e6a4f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6046             latitude:38.0398             PM2_5:72.15181058             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3de3ec992ff8dc51fde484d3e788bff.setContent(html_46cc9733ac83845a71be216708e6a4f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a2b57ed581f2c4945abb43d5462606e.bindPopup(popup_e3de3ec992ff8dc51fde484d3e788bff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88f75ae00737be3179e58f1b30c33389 = L.circleMarker(\\n\",\n       \"                [23.1142, 114.4103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ea741451eaaf14533320077ef7a1fe1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ba6a410de58eed83bf7f6855615e8cd = $(`&lt;div id=&quot;html_3ba6a410de58eed83bf7f6855615e8cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4103             latitude:23.1142             PM2_5:28.22727273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ea741451eaaf14533320077ef7a1fe1.setContent(html_3ba6a410de58eed83bf7f6855615e8cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88f75ae00737be3179e58f1b30c33389.bindPopup(popup_2ea741451eaaf14533320077ef7a1fe1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27715f8eb4de63c1c6a4362d22ab8c17 = L.circleMarker(\\n\",\n       \"                [22.6164, 110.1433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d47f7fb5c92030a1a7e6e9938b39e258 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9e8ebf19c6b3940e1be7e5671787dbf = $(`&lt;div id=&quot;html_c9e8ebf19c6b3940e1be7e5671787dbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1433             latitude:22.6164             PM2_5:34.49011299             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d47f7fb5c92030a1a7e6e9938b39e258.setContent(html_c9e8ebf19c6b3940e1be7e5671787dbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27715f8eb4de63c1c6a4362d22ab8c17.bindPopup(popup_d47f7fb5c92030a1a7e6e9938b39e258)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1767a5d2492c6023c6b7d2f6b7e62eab = L.circleMarker(\\n\",\n       \"                [29.57278, 106.4042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02208c8b41ba398dd55ad4acdad3eca0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f04904d585047ed533d8690938990411 = $(`&lt;div id=&quot;html_f04904d585047ed533d8690938990411&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.4042             latitude:29.57278             PM2_5:40.69553073             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02208c8b41ba398dd55ad4acdad3eca0.setContent(html_f04904d585047ed533d8690938990411);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1767a5d2492c6023c6b7d2f6b7e62eab.bindPopup(popup_02208c8b41ba398dd55ad4acdad3eca0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74c9bc8ac97c68dab5305ca9da301cc9 = L.circleMarker(\\n\",\n       \"                [24.2719, 116.0797],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2636312db67ab47936a23d5a0737f139 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_deb8fc104417da9000ee67b531eb0282 = $(`&lt;div id=&quot;html_deb8fc104417da9000ee67b531eb0282&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0797             latitude:24.2719             PM2_5:25.39915966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2636312db67ab47936a23d5a0737f139.setContent(html_deb8fc104417da9000ee67b531eb0282);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74c9bc8ac97c68dab5305ca9da301cc9.bindPopup(popup_2636312db67ab47936a23d5a0737f139)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a87a308d728146ac9b9d607b3519550 = L.circleMarker(\\n\",\n       \"                [36.1417, 106.2319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea0b9e139508ed13afecc029b828d2d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0804247c8168adbf3a0b2a19ef926d47 = $(`&lt;div id=&quot;html_0804247c8168adbf3a0b2a19ef926d47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2319             latitude:36.1417             PM2_5:27.15616046             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea0b9e139508ed13afecc029b828d2d9.setContent(html_0804247c8168adbf3a0b2a19ef926d47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a87a308d728146ac9b9d607b3519550.bindPopup(popup_ea0b9e139508ed13afecc029b828d2d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ef2dca801f74b5aa41ee1d942df5f3d = L.circleMarker(\\n\",\n       \"                [29.1029, 119.686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_033f9995d214ee6ec6d517a6ad9503ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1fc800d93b7c2800788647d440f73e72 = $(`&lt;div id=&quot;html_1fc800d93b7c2800788647d440f73e72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.686             latitude:29.1029             PM2_5:34.52506964             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_033f9995d214ee6ec6d517a6ad9503ec.setContent(html_1fc800d93b7c2800788647d440f73e72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ef2dca801f74b5aa41ee1d942df5f3d.bindPopup(popup_033f9995d214ee6ec6d517a6ad9503ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c755fd1280f025d5a2ad2ab1b763e938 = L.circleMarker(\\n\",\n       \"                [30.1819, 120.27],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83e6a5770a0ebedbbacabc27ba6cb8be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7d216815eff19ff6d7d0f38ec2b369a = $(`&lt;div id=&quot;html_e7d216815eff19ff6d7d0f38ec2b369a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.27             latitude:30.1819             PM2_5:43.43521127             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83e6a5770a0ebedbbacabc27ba6cb8be.setContent(html_e7d216815eff19ff6d7d0f38ec2b369a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c755fd1280f025d5a2ad2ab1b763e938.bindPopup(popup_83e6a5770a0ebedbbacabc27ba6cb8be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c020f5431bb0fb9e1866e34f2bc7382 = L.circleMarker(\\n\",\n       \"                [30.4133, 114.8131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc2ad374fe17fa48f8512adfea9e86fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b09afc4d9c7d1fcecee90e78405ccaa = $(`&lt;div id=&quot;html_7b09afc4d9c7d1fcecee90e78405ccaa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8131             latitude:30.4133             PM2_5:49.26478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc2ad374fe17fa48f8512adfea9e86fe.setContent(html_7b09afc4d9c7d1fcecee90e78405ccaa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c020f5431bb0fb9e1866e34f2bc7382.bindPopup(popup_bc2ad374fe17fa48f8512adfea9e86fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c82ed14697a29fc13052d2087c898c81 = L.circleMarker(\\n\",\n       \"                [39.9279, 116.225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a243ff256a6f79a40775ad834472be0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4507609b5279298b4be7e48935b82ad = $(`&lt;div id=&quot;html_e4507609b5279298b4be7e48935b82ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.225             latitude:39.9279             PM2_5:56.0694051             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a243ff256a6f79a40775ad834472be0.setContent(html_e4507609b5279298b4be7e48935b82ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c82ed14697a29fc13052d2087c898c81.bindPopup(popup_7a243ff256a6f79a40775ad834472be0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73d192f2da1c448c8326f7e810997950 = L.circleMarker(\\n\",\n       \"                [42.9409, 89.191],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32a9039f17c02ab615ad5aaf7b8c1aed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5912ed416f82fba7307be67658db9a2b = $(`&lt;div id=&quot;html_5912ed416f82fba7307be67658db9a2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:89.191             latitude:42.9409             PM2_5:53.92087542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32a9039f17c02ab615ad5aaf7b8c1aed.setContent(html_5912ed416f82fba7307be67658db9a2b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73d192f2da1c448c8326f7e810997950.bindPopup(popup_32a9039f17c02ab615ad5aaf7b8c1aed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46fa34f5c0d1eca14a810b70830a3721 = L.circleMarker(\\n\",\n       \"                [29.1242, 110.4697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb93ceed3e9c3ab622c6d21197103d91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55be482416649270829814d03cd2a4f6 = $(`&lt;div id=&quot;html_55be482416649270829814d03cd2a4f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4697             latitude:29.1242             PM2_5:40.49860724             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb93ceed3e9c3ab622c6d21197103d91.setContent(html_55be482416649270829814d03cd2a4f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46fa34f5c0d1eca14a810b70830a3721.bindPopup(popup_eb93ceed3e9c3ab622c6d21197103d91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78abdc123478fbb94baeda3bfd534903 = L.circleMarker(\\n\",\n       \"                [24.3406, 109.3886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a6353c8a053d05c5190d1e789eb06af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d2e215f77d67d7196c7ce9c8825cb69 = $(`&lt;div id=&quot;html_5d2e215f77d67d7196c7ce9c8825cb69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.3886             latitude:24.3406             PM2_5:40.90250696             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a6353c8a053d05c5190d1e789eb06af.setContent(html_5d2e215f77d67d7196c7ce9c8825cb69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78abdc123478fbb94baeda3bfd534903.bindPopup(popup_4a6353c8a053d05c5190d1e789eb06af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_736d2711943c7decdfc4af2396e9ca69 = L.circleMarker(\\n\",\n       \"                [29.7228, 106.626],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a48a633451c605d77522d2500049684f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0cdcdca5d63032fc32211de4aad27ed1 = $(`&lt;div id=&quot;html_0cdcdca5d63032fc32211de4aad27ed1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.626             latitude:29.7228             PM2_5:37.63407821             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a48a633451c605d77522d2500049684f.setContent(html_0cdcdca5d63032fc32211de4aad27ed1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_736d2711943c7decdfc4af2396e9ca69.bindPopup(popup_a48a633451c605d77522d2500049684f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b8f39b16ac0d5879e74685633d1218a = L.circleMarker(\\n\",\n       \"                [22.7875, 108.301],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a19ff210b7c7000f8c0b09e70af3edf4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa55704400952e72edc2f269acd455e9 = $(`&lt;div id=&quot;html_aa55704400952e72edc2f269acd455e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.301             latitude:22.7875             PM2_5:35.12253521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a19ff210b7c7000f8c0b09e70af3edf4.setContent(html_aa55704400952e72edc2f269acd455e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b8f39b16ac0d5879e74685633d1218a.bindPopup(popup_a19ff210b7c7000f8c0b09e70af3edf4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2cc77d3f99b7d72e3adfc895763a0266 = L.circleMarker(\\n\",\n       \"                [31.1654, 121.412],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b6473d6b278a65fc55aace4730f785a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e77dbb6ccddcb2631a249557479f1f8 = $(`&lt;div id=&quot;html_3e77dbb6ccddcb2631a249557479f1f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.412             latitude:31.1654             PM2_5:41.32285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b6473d6b278a65fc55aace4730f785a.setContent(html_3e77dbb6ccddcb2631a249557479f1f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2cc77d3f99b7d72e3adfc895763a0266.bindPopup(popup_7b6473d6b278a65fc55aace4730f785a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_32920b24446a929d7e23e441734b332d = L.circleMarker(\\n\",\n       \"                [33.5981, 119.036],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd3a66f86a9398facef37e073b3751db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6a707537f073311a313224a956f71a9 = $(`&lt;div id=&quot;html_e6a707537f073311a313224a956f71a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.036             latitude:33.5981             PM2_5:43.71126761             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd3a66f86a9398facef37e073b3751db.setContent(html_e6a707537f073311a313224a956f71a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_32920b24446a929d7e23e441734b332d.bindPopup(popup_bd3a66f86a9398facef37e073b3751db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7185687ad91b2d20c1394a6d4c0b79f = L.circleMarker(\\n\",\n       \"                [30.5103, 117.0549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08743dbcedb92f1792e5a2bbb68a9f60 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99188a2f06d9182c49d0c40e75384233 = $(`&lt;div id=&quot;html_99188a2f06d9182c49d0c40e75384233&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0549             latitude:30.5103             PM2_5:46.05865922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08743dbcedb92f1792e5a2bbb68a9f60.setContent(html_99188a2f06d9182c49d0c40e75384233);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7185687ad91b2d20c1394a6d4c0b79f.bindPopup(popup_08743dbcedb92f1792e5a2bbb68a9f60)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4505ab23aa8584e825cf60086d06d4e = L.circleMarker(\\n\",\n       \"                [32.1319, 119.43],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ec24a0f7f4b2ade12a96c84c7ae980e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dce605f2713860be3ed9a388a3d51745 = $(`&lt;div id=&quot;html_dce605f2713860be3ed9a388a3d51745&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.43             latitude:32.1319             PM2_5:53.00555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ec24a0f7f4b2ade12a96c84c7ae980e.setContent(html_dce605f2713860be3ed9a388a3d51745);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4505ab23aa8584e825cf60086d06d4e.bindPopup(popup_5ec24a0f7f4b2ade12a96c84c7ae980e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_563794bbff1d07f3b278a6dbc91f8535 = L.circleMarker(\\n\",\n       \"                [44.0297, 87.2717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0aa81477d1586018c8b7912e1653a79c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2176e0939786317716b15a33da29a5e = $(`&lt;div id=&quot;html_a2176e0939786317716b15a33da29a5e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2717             latitude:44.0297             PM2_5:52.32122905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0aa81477d1586018c8b7912e1653a79c.setContent(html_a2176e0939786317716b15a33da29a5e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_563794bbff1d07f3b278a6dbc91f8535.bindPopup(popup_0aa81477d1586018c8b7912e1653a79c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_579af89706d4d866f124399037a019bd = L.circleMarker(\\n\",\n       \"                [30.9431, 118.7175],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0582d76ad4ab879f3718cf7c05aa21ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10759379dbc33e85af01d00a589d6f3f = $(`&lt;div id=&quot;html_10759379dbc33e85af01d00a589d6f3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7175             latitude:30.9431             PM2_5:41.53221289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0582d76ad4ab879f3718cf7c05aa21ad.setContent(html_10759379dbc33e85af01d00a589d6f3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_579af89706d4d866f124399037a019bd.bindPopup(popup_0582d76ad4ab879f3718cf7c05aa21ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83f5fa642589171c757a2f1f8eb574a1 = L.circleMarker(\\n\",\n       \"                [41.765, 123.41],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e64772bce0f2e522fc8fb17657afeda5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62b48dc1534593b20d56052eefcfc2b5 = $(`&lt;div id=&quot;html_62b48dc1534593b20d56052eefcfc2b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.41             latitude:41.765             PM2_5:38.61699164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e64772bce0f2e522fc8fb17657afeda5.setContent(html_62b48dc1534593b20d56052eefcfc2b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83f5fa642589171c757a2f1f8eb574a1.bindPopup(popup_e64772bce0f2e522fc8fb17657afeda5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6b649a3f0f0bd8ad6fea2fd75f049a8 = L.circleMarker(\\n\",\n       \"                [32.3061, 118.3158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a6bb5a95912bafb094598b84b509585 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f7485aa314e2c8d962f83c1d67dcba9 = $(`&lt;div id=&quot;html_5f7485aa314e2c8d962f83c1d67dcba9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3158             latitude:32.3061             PM2_5:51.82492997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a6bb5a95912bafb094598b84b509585.setContent(html_5f7485aa314e2c8d962f83c1d67dcba9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6b649a3f0f0bd8ad6fea2fd75f049a8.bindPopup(popup_6a6bb5a95912bafb094598b84b509585)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c115088f5c2f6c795538524289244146 = L.circleMarker(\\n\",\n       \"                [28.71583, 104.5761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_64aaf8dda94d01aff8d500b0c0347964 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f69476509ed4f0b1bc7af4e42752357 = $(`&lt;div id=&quot;html_3f69476509ed4f0b1bc7af4e42752357&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.5761             latitude:28.71583             PM2_5:57.30277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_64aaf8dda94d01aff8d500b0c0347964.setContent(html_3f69476509ed4f0b1bc7af4e42752357);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c115088f5c2f6c795538524289244146.bindPopup(popup_64aaf8dda94d01aff8d500b0c0347964)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a49da97c12b70b3b91078ddfaa4ccd1b = L.circleMarker(\\n\",\n       \"                [27.3392, 103.7032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_93aeb918c70c8729ef9fd4aa29a7e4e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3fc53bac6ba726013cd99e6bb6b3d96 = $(`&lt;div id=&quot;html_b3fc53bac6ba726013cd99e6bb6b3d96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7032             latitude:27.3392             PM2_5:26.85310734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_93aeb918c70c8729ef9fd4aa29a7e4e6.setContent(html_b3fc53bac6ba726013cd99e6bb6b3d96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a49da97c12b70b3b91078ddfaa4ccd1b.bindPopup(popup_93aeb918c70c8729ef9fd4aa29a7e4e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10ed230d78d122872db1c90abd7dc544 = L.circleMarker(\\n\",\n       \"                [30.6347, 105.8161],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77ea7d788243a5fc215e56f8bf1479fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a40722d08ee9c60668ec9b440760826 = $(`&lt;div id=&quot;html_2a40722d08ee9c60668ec9b440760826&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8161             latitude:30.6347             PM2_5:35.92634561             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77ea7d788243a5fc215e56f8bf1479fd.setContent(html_2a40722d08ee9c60668ec9b440760826);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10ed230d78d122872db1c90abd7dc544.bindPopup(popup_77ea7d788243a5fc215e56f8bf1479fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_32e900845b426a99c38d91a54b422898 = L.circleMarker(\\n\",\n       \"                [23.105, 113.433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10cc9e04a0340cd65a368b1d144b8ee5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36544deb0415adbfb2631b5ee994ca45 = $(`&lt;div id=&quot;html_36544deb0415adbfb2631b5ee994ca45&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.433             latitude:23.105             PM2_5:34.26330532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10cc9e04a0340cd65a368b1d144b8ee5.setContent(html_36544deb0415adbfb2631b5ee994ca45);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_32e900845b426a99c38d91a54b422898.bindPopup(popup_10cc9e04a0340cd65a368b1d144b8ee5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd4c1d71828343b05fbff6b132230608 = L.circleMarker(\\n\",\n       \"                [28.1308, 112.8908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3698d967701753d8663b6cf77a0bdbb6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a0fd907cd33c0de376b0b5f05e24ae4 = $(`&lt;div id=&quot;html_7a0fd907cd33c0de376b0b5f05e24ae4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8908             latitude:28.1308             PM2_5:43.11408451             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3698d967701753d8663b6cf77a0bdbb6.setContent(html_7a0fd907cd33c0de376b0b5f05e24ae4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd4c1d71828343b05fbff6b132230608.bindPopup(popup_3698d967701753d8663b6cf77a0bdbb6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3fd381beadf849127c3df111c5d3598c = L.circleMarker(\\n\",\n       \"                [41.0781, 121.0986],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e29746c20424dd04d853106af5304100 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d20dd8a7a2d4d1e5663ee105133945bb = $(`&lt;div id=&quot;html_d20dd8a7a2d4d1e5663ee105133945bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.0986             latitude:41.0781             PM2_5:28.91643454             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e29746c20424dd04d853106af5304100.setContent(html_d20dd8a7a2d4d1e5663ee105133945bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3fd381beadf849127c3df111c5d3598c.bindPopup(popup_e29746c20424dd04d853106af5304100)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4be3fac86be6a9d48508c27cda9a5462 = L.circleMarker(\\n\",\n       \"                [25.1174, 117.0181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05a2f163fcee5b849f8e87fe21144b28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b06b40a6de7c36f880d9b7f1a5d111f8 = $(`&lt;div id=&quot;html_b06b40a6de7c36f880d9b7f1a5d111f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0181             latitude:25.1174             PM2_5:23.24930362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05a2f163fcee5b849f8e87fe21144b28.setContent(html_b06b40a6de7c36f880d9b7f1a5d111f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4be3fac86be6a9d48508c27cda9a5462.bindPopup(popup_05a2f163fcee5b849f8e87fe21144b28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e947b3da43d71b0ce35c83b0c14bc8f5 = L.circleMarker(\\n\",\n       \"                [34.6972, 119.3581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad5eb62d298f818d2a340341b04dd760 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4a7561370ca28a261b265282b041407 = $(`&lt;div id=&quot;html_d4a7561370ca28a261b265282b041407&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.3581             latitude:34.6972             PM2_5:39.00854701             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad5eb62d298f818d2a340341b04dd760.setContent(html_d4a7561370ca28a261b265282b041407);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e947b3da43d71b0ce35c83b0c14bc8f5.bindPopup(popup_ad5eb62d298f818d2a340341b04dd760)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f67026e548d3b68fa3faaa51e01311d7 = L.circleMarker(\\n\",\n       \"                [34.6869, 112.4831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6cee7f3a86a8de49dbbdbe399c679bed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25de462a3c3fdd13c72702cf9ab1c918 = $(`&lt;div id=&quot;html_25de462a3c3fdd13c72702cf9ab1c918&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4831             latitude:34.6869             PM2_5:60.01825843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6cee7f3a86a8de49dbbdbe399c679bed.setContent(html_25de462a3c3fdd13c72702cf9ab1c918);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f67026e548d3b68fa3faaa51e01311d7.bindPopup(popup_6cee7f3a86a8de49dbbdbe399c679bed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a8dca15e8a0d7b70082b17253b5c7d2 = L.circleMarker(\\n\",\n       \"                [34.6231, 112.3844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd4154a75518ef85965cc7a10165c006 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44f08d26fcc302a2aa92f7cef3ccfd86 = $(`&lt;div id=&quot;html_44f08d26fcc302a2aa92f7cef3ccfd86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3844             latitude:34.6231             PM2_5:61.63098592             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd4154a75518ef85965cc7a10165c006.setContent(html_44f08d26fcc302a2aa92f7cef3ccfd86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a8dca15e8a0d7b70082b17253b5c7d2.bindPopup(popup_cd4154a75518ef85965cc7a10165c006)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1b38378bd1a8b3ca62b336449ec1a26 = L.circleMarker(\\n\",\n       \"                [37.4314, 118.6672],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc4c945d507d777a286c7e80fd129c31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_389099145853ee49c919a0fcb53f8665 = $(`&lt;div id=&quot;html_389099145853ee49c919a0fcb53f8665&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6672             latitude:37.4314             PM2_5:46.0             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc4c945d507d777a286c7e80fd129c31.setContent(html_389099145853ee49c919a0fcb53f8665);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1b38378bd1a8b3ca62b336449ec1a26.bindPopup(popup_fc4c945d507d777a286c7e80fd129c31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a449d1430babf68e2462df6570dcf21 = L.circleMarker(\\n\",\n       \"                [35.04388889, 111.0522222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c188fc6b36a8695577d16d1f011ae0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa224a514492a5e8030617818c65f6c5 = $(`&lt;div id=&quot;html_aa224a514492a5e8030617818c65f6c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0522222             latitude:35.04388889             PM2_5:72.68296089             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c188fc6b36a8695577d16d1f011ae0d.setContent(html_aa224a514492a5e8030617818c65f6c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a449d1430babf68e2462df6570dcf21.bindPopup(popup_1c188fc6b36a8695577d16d1f011ae0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_376c8b5088587d905b20dddf91504496 = L.circleMarker(\\n\",\n       \"                [38.2991, 116.8854],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5be64d17d5a76f2a0be36abde06cede1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82fdf70526ef3d2a8742c45a25104df8 = $(`&lt;div id=&quot;html_82fdf70526ef3d2a8742c45a25104df8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8854             latitude:38.2991             PM2_5:49.09749304             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5be64d17d5a76f2a0be36abde06cede1.setContent(html_82fdf70526ef3d2a8742c45a25104df8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_376c8b5088587d905b20dddf91504496.bindPopup(popup_5be64d17d5a76f2a0be36abde06cede1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_424f8f4a883c6131260c3229e48ed5fb = L.circleMarker(\\n\",\n       \"                [21.7631, 108.3511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41d49ae466f99d1181f66b4cbb2a1bc6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24e5857fce65a759d311f5a682005dff = $(`&lt;div id=&quot;html_24e5857fce65a759d311f5a682005dff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.3511             latitude:21.7631             PM2_5:31.28212291             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41d49ae466f99d1181f66b4cbb2a1bc6.setContent(html_24e5857fce65a759d311f5a682005dff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_424f8f4a883c6131260c3229e48ed5fb.bindPopup(popup_41d49ae466f99d1181f66b4cbb2a1bc6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f18726759c6166bf413f6f044a70bda8 = L.circleMarker(\\n\",\n       \"                [36.4343, 116.0072],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ceedaa7594f734746c61fc514d337ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe44542a54fa5a221bdc9adce2c373c6 = $(`&lt;div id=&quot;html_fe44542a54fa5a221bdc9adce2c373c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0072             latitude:36.4343             PM2_5:61.4815864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ceedaa7594f734746c61fc514d337ff.setContent(html_fe44542a54fa5a221bdc9adce2c373c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f18726759c6166bf413f6f044a70bda8.bindPopup(popup_6ceedaa7594f734746c61fc514d337ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a00ba02ea51d8440a907966d8e6bcc14 = L.circleMarker(\\n\",\n       \"                [34.3956, 108.7197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53289c67cff7792702b3b27b51fbf1d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_835b85474c07d855808064eeb128a658 = $(`&lt;div id=&quot;html_835b85474c07d855808064eeb128a658&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7197             latitude:34.3956             PM2_5:60.59470752             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53289c67cff7792702b3b27b51fbf1d6.setContent(html_835b85474c07d855808064eeb128a658);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a00ba02ea51d8440a907966d8e6bcc14.bindPopup(popup_53289c67cff7792702b3b27b51fbf1d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69ddaea5cc72acdbb27556983d661119 = L.circleMarker(\\n\",\n       \"                [26.6514, 118.1819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0201bac471c0b5d2340a1e4eab6a8e74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_41a6e5eeda87a26f04cd3a2219581d5c = $(`&lt;div id=&quot;html_41a6e5eeda87a26f04cd3a2219581d5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1819             latitude:26.6514             PM2_5:22.86312849             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0201bac471c0b5d2340a1e4eab6a8e74.setContent(html_41a6e5eeda87a26f04cd3a2219581d5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69ddaea5cc72acdbb27556983d661119.bindPopup(popup_0201bac471c0b5d2340a1e4eab6a8e74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d25746baa9348a688c19d7405aa7456c = L.circleMarker(\\n\",\n       \"                [22.5328, 113.024],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c23b87117072347dc55dd0edb793dc4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8752407bd9eea55d848c7cd446e28d0b = $(`&lt;div id=&quot;html_8752407bd9eea55d848c7cd446e28d0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.024             latitude:22.5328             PM2_5:36.91903409             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c23b87117072347dc55dd0edb793dc4f.setContent(html_8752407bd9eea55d848c7cd446e28d0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d25746baa9348a688c19d7405aa7456c.bindPopup(popup_c23b87117072347dc55dd0edb793dc4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_635f06660a55f2926d00b3c7a041d61e = L.circleMarker(\\n\",\n       \"                [36.885, 120.515],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9dcb202ddf4eb6c1e1df40064c360761 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18a698e7ff6e1dd7e41db32b85463d53 = $(`&lt;div id=&quot;html_18a698e7ff6e1dd7e41db32b85463d53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.515             latitude:36.885             PM2_5:39.55890805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9dcb202ddf4eb6c1e1df40064c360761.setContent(html_18a698e7ff6e1dd7e41db32b85463d53);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_635f06660a55f2926d00b3c7a041d61e.bindPopup(popup_9dcb202ddf4eb6c1e1df40064c360761)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9729a4f0d1db5821311ac930aba212a2 = L.circleMarker(\\n\",\n       \"                [29.5947, 105.0717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8962c31cdc655c086318950d4ad044d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abd4b85996cda143a6354d8a61111765 = $(`&lt;div id=&quot;html_abd4b85996cda143a6354d8a61111765&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0717             latitude:29.5947             PM2_5:34.1028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8962c31cdc655c086318950d4ad044d.setContent(html_abd4b85996cda143a6354d8a61111765);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9729a4f0d1db5821311ac930aba212a2.bindPopup(popup_a8962c31cdc655c086318950d4ad044d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e45117810b3c63d2fdf04bdda212ebee = L.circleMarker(\\n\",\n       \"                [45.2948, 131.0103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22ef7569952f5c674eada9673631fba9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc51260256dbb6935ed4e8c844f6d7db = $(`&lt;div id=&quot;html_dc51260256dbb6935ed4e8c844f6d7db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.0103             latitude:45.2948             PM2_5:25.48174157             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22ef7569952f5c674eada9673631fba9.setContent(html_dc51260256dbb6935ed4e8c844f6d7db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e45117810b3c63d2fdf04bdda212ebee.bindPopup(popup_22ef7569952f5c674eada9673631fba9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f34baf6fef344682b583a185b963f4fd = L.circleMarker(\\n\",\n       \"                [49.1577, 119.7512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afe340eb1a8def180dec554db0cf4409 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8ab839ab294c6aef6a803320fc3d26e = $(`&lt;div id=&quot;html_e8ab839ab294c6aef6a803320fc3d26e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7512             latitude:49.1577             PM2_5:10.28151261             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afe340eb1a8def180dec554db0cf4409.setContent(html_e8ab839ab294c6aef6a803320fc3d26e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f34baf6fef344682b583a185b963f4fd.bindPopup(popup_afe340eb1a8def180dec554db0cf4409)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c20ac2a399fb49c49cc01f55387a1c35 = L.circleMarker(\\n\",\n       \"                [41.1953, 123.2],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7f38bacc8cb71269b06dca2e4a510f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1ded9a69de9e90549ea520fc196cac4 = $(`&lt;div id=&quot;html_b1ded9a69de9e90549ea520fc196cac4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.2             latitude:41.1953             PM2_5:26.80898876             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7f38bacc8cb71269b06dca2e4a510f3.setContent(html_b1ded9a69de9e90549ea520fc196cac4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c20ac2a399fb49c49cc01f55387a1c35.bindPopup(popup_c7f38bacc8cb71269b06dca2e4a510f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a869f053930935ffd2ff6c8d5c5fd75 = L.circleMarker(\\n\",\n       \"                [37.197, 122.038],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23635b2fb87f30457fdc0dcc098e9fb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6963fcb618866569b5269d0ec8901669 = $(`&lt;div id=&quot;html_6963fcb618866569b5269d0ec8901669&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.038             latitude:37.197             PM2_5:22.64730878             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23635b2fb87f30457fdc0dcc098e9fb2.setContent(html_6963fcb618866569b5269d0ec8901669);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a869f053930935ffd2ff6c8d5c5fd75.bindPopup(popup_23635b2fb87f30457fdc0dcc098e9fb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00e3545f25930c617b208eb5011e0260 = L.circleMarker(\\n\",\n       \"                [29.077, 119.647],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e079a50b8adb4307cdc295d7d4616853 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b27bf7892f5b7e63a17e97ce6a546d70 = $(`&lt;div id=&quot;html_b27bf7892f5b7e63a17e97ce6a546d70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.647             latitude:29.077             PM2_5:37.48739496             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e079a50b8adb4307cdc295d7d4616853.setContent(html_b27bf7892f5b7e63a17e97ce6a546d70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00e3545f25930c617b208eb5011e0260.bindPopup(popup_e079a50b8adb4307cdc295d7d4616853)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97bd43ce5dd9167687359f1972536a10 = L.circleMarker(\\n\",\n       \"                [40.1269, 113.2661],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91badcf30e4fca5d024142a9476702a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0b0cc84d37c2f682449ff77cb967141 = $(`&lt;div id=&quot;html_d0b0cc84d37c2f682449ff77cb967141&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2661             latitude:40.1269             PM2_5:42.12784091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91badcf30e4fca5d024142a9476702a6.setContent(html_d0b0cc84d37c2f682449ff77cb967141);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97bd43ce5dd9167687359f1972536a10.bindPopup(popup_91badcf30e4fca5d024142a9476702a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8114bf2be9c7fe7aeca119c7d01cbbd = L.circleMarker(\\n\",\n       \"                [39.7711, 98.2908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f87a4f2c62c3c0019a726f2f59c9e301 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73c8e6b3deaa939ba149cd0c67add659 = $(`&lt;div id=&quot;html_73c8e6b3deaa939ba149cd0c67add659&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.2908             latitude:39.7711             PM2_5:30.22005571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f87a4f2c62c3c0019a726f2f59c9e301.setContent(html_73c8e6b3deaa939ba149cd0c67add659);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8114bf2be9c7fe7aeca119c7d01cbbd.bindPopup(popup_f87a4f2c62c3c0019a726f2f59c9e301)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1daf187d03e79b1fbd71c1a429b22bb6 = L.circleMarker(\\n\",\n       \"                [31.6861, 118.5058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c95c878b5d76891f3306bb75c6433ce2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7079aed0671d1df0db6f3a7f911f4ca0 = $(`&lt;div id=&quot;html_7079aed0671d1df0db6f3a7f911f4ca0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5058             latitude:31.6861             PM2_5:45.78672316             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c95c878b5d76891f3306bb75c6433ce2.setContent(html_7079aed0671d1df0db6f3a7f911f4ca0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1daf187d03e79b1fbd71c1a429b22bb6.bindPopup(popup_c95c878b5d76891f3306bb75c6433ce2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3af8f9a9d7d174b5abe421228762477c = L.circleMarker(\\n\",\n       \"                [34.3469, 106.005],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3606266bfbff456aa8846ee1ef4bc073 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb4ef8a846532d46f6bc188112917e41 = $(`&lt;div id=&quot;html_eb4ef8a846532d46f6bc188112917e41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.005             latitude:34.3469             PM2_5:21.88243626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3606266bfbff456aa8846ee1ef4bc073.setContent(html_eb4ef8a846532d46f6bc188112917e41);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3af8f9a9d7d174b5abe421228762477c.bindPopup(popup_3606266bfbff456aa8846ee1ef4bc073)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb9cd92b73ae2e36fdc4d8917671e01f = L.circleMarker(\\n\",\n       \"                [31.2797, 107.5272],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38b88488ba8d0ecc9afab3e3eac6ed13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3837748a042ffb7e28e201cfa3dba973 = $(`&lt;div id=&quot;html_3837748a042ffb7e28e201cfa3dba973&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5272             latitude:31.2797             PM2_5:42.31320225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38b88488ba8d0ecc9afab3e3eac6ed13.setContent(html_3837748a042ffb7e28e201cfa3dba973);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb9cd92b73ae2e36fdc4d8917671e01f.bindPopup(popup_38b88488ba8d0ecc9afab3e3eac6ed13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c37b2d28ab756375ad81cb9ff9fc97f = L.circleMarker(\\n\",\n       \"                [34.407, 115.6386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ad108759770822855194b61d1c1ecd1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b705d6b88db6b52350f56aea6ea40230 = $(`&lt;div id=&quot;html_b705d6b88db6b52350f56aea6ea40230&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6386             latitude:34.407             PM2_5:54.83519553             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ad108759770822855194b61d1c1ecd1.setContent(html_b705d6b88db6b52350f56aea6ea40230);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c37b2d28ab756375ad81cb9ff9fc97f.bindPopup(popup_5ad108759770822855194b61d1c1ecd1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9839fff84c8a7cb7c8037fd227726c4f = L.circleMarker(\\n\",\n       \"                [31.0283, 103.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33cb2a2acb985926209ff41bc6641617 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5577dea873043de432aabdb61f57f61 = $(`&lt;div id=&quot;html_c5577dea873043de432aabdb61f57f61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.613             latitude:31.0283             PM2_5:38.79661017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33cb2a2acb985926209ff41bc6641617.setContent(html_c5577dea873043de432aabdb61f57f61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9839fff84c8a7cb7c8037fd227726c4f.bindPopup(popup_33cb2a2acb985926209ff41bc6641617)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9505a1a4c0963931bf7244e199146f42 = L.circleMarker(\\n\",\n       \"                [43.85, 125.217],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac9e17b92b55b09a03e6c98dd393b2bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbcbf851e8930906a4a12397da891572 = $(`&lt;div id=&quot;html_fbcbf851e8930906a4a12397da891572&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.217             latitude:43.85             PM2_5:27.01971831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac9e17b92b55b09a03e6c98dd393b2bc.setContent(html_fbcbf851e8930906a4a12397da891572);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9505a1a4c0963931bf7244e199146f42.bindPopup(popup_ac9e17b92b55b09a03e6c98dd393b2bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc52e3f6e6545f9fac36c1ef42d2caee = L.circleMarker(\\n\",\n       \"                [30.0874, 103.8416],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0ae3a6f84e38d6d0cf804f2132a01583 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4decceeb1c88acb797a4ad08ef700b50 = $(`&lt;div id=&quot;html_4decceeb1c88acb797a4ad08ef700b50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8416             latitude:30.0874             PM2_5:43.24930362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0ae3a6f84e38d6d0cf804f2132a01583.setContent(html_4decceeb1c88acb797a4ad08ef700b50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc52e3f6e6545f9fac36c1ef42d2caee.bindPopup(popup_0ae3a6f84e38d6d0cf804f2132a01583)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11ac9b5e76f7b04e1cfed87b688a5b13 = L.circleMarker(\\n\",\n       \"                [34.8731, 108.9589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6a71fb61ddb7c7bb38740eaa9608190 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8758cb7252b10d579c6f52d138e5fd70 = $(`&lt;div id=&quot;html_8758cb7252b10d579c6f52d138e5fd70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.9589             latitude:34.8731             PM2_5:51.80346821             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6a71fb61ddb7c7bb38740eaa9608190.setContent(html_8758cb7252b10d579c6f52d138e5fd70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11ac9b5e76f7b04e1cfed87b688a5b13.bindPopup(popup_a6a71fb61ddb7c7bb38740eaa9608190)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f5abecea8b4f67ec3a4b0154f4349d3 = L.circleMarker(\\n\",\n       \"                [46.5776, 125.1386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_875a4452834e0bb779b353de936056e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_961160bd0e33cb0bf0814c175a4e0896 = $(`&lt;div id=&quot;html_961160bd0e33cb0bf0814c175a4e0896&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1386             latitude:46.5776             PM2_5:32.70612813             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_875a4452834e0bb779b353de936056e1.setContent(html_961160bd0e33cb0bf0814c175a4e0896);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f5abecea8b4f67ec3a4b0154f4349d3.bindPopup(popup_875a4452834e0bb779b353de936056e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6932f8987a5c447a97c7e19687ee011 = L.circleMarker(\\n\",\n       \"                [32.1403, 114.0122],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7db252645330135ca4bb0ae233915a1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4900a2bbc430892d566191b53ed9221 = $(`&lt;div id=&quot;html_e4900a2bbc430892d566191b53ed9221&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0122             latitude:32.1403             PM2_5:44.81843575             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7db252645330135ca4bb0ae233915a1f.setContent(html_e4900a2bbc430892d566191b53ed9221);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6932f8987a5c447a97c7e19687ee011.bindPopup(popup_7db252645330135ca4bb0ae233915a1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1036fef418f16f93df38bd7580b4544a = L.circleMarker(\\n\",\n       \"                [25.0441, 101.5482],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26fefdc9e5f620b14a12394d95d28f0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afbc89c884f5ca2360d062a90f0856c0 = $(`&lt;div id=&quot;html_afbc89c884f5ca2360d062a90f0856c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.5482             latitude:25.0441             PM2_5:15.67688022             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26fefdc9e5f620b14a12394d95d28f0b.setContent(html_afbc89c884f5ca2360d062a90f0856c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1036fef418f16f93df38bd7580b4544a.bindPopup(popup_26fefdc9e5f620b14a12394d95d28f0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8fac020f67b9d7020df936bce9fc7491 = L.circleMarker(\\n\",\n       \"                [30.63, 104.1113889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73db8cbe78b54bcb2987ca2c60ee6e0e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c355f21b49c361e8a246c8dea902ae13 = $(`&lt;div id=&quot;html_c355f21b49c361e8a246c8dea902ae13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1113889             latitude:30.63             PM2_5:52.46787709             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73db8cbe78b54bcb2987ca2c60ee6e0e.setContent(html_c355f21b49c361e8a246c8dea902ae13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8fac020f67b9d7020df936bce9fc7491.bindPopup(popup_73db8cbe78b54bcb2987ca2c60ee6e0e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4a8410317091dee2dfe93ae5ca2946c = L.circleMarker(\\n\",\n       \"                [33.721, 113.322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4bfcc9928a29cf5cc1b61c288829c357 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83569325d4f96363b1a3493e16c8769b = $(`&lt;div id=&quot;html_83569325d4f96363b1a3493e16c8769b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.322             latitude:33.721             PM2_5:62.36805556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4bfcc9928a29cf5cc1b61c288829c357.setContent(html_83569325d4f96363b1a3493e16c8769b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4a8410317091dee2dfe93ae5ca2946c.bindPopup(popup_4bfcc9928a29cf5cc1b61c288829c357)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40ebc69989eb3f3637744efb182aa006 = L.circleMarker(\\n\",\n       \"                [23.05361111, 113.7819444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61fa565aa2140b20266aa4fcc9d728e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e069379093a04e28de2ec00b836c66ea = $(`&lt;div id=&quot;html_e069379093a04e28de2ec00b836c66ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7819444             latitude:23.05361111             PM2_5:37.732493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61fa565aa2140b20266aa4fcc9d728e1.setContent(html_e069379093a04e28de2ec00b836c66ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40ebc69989eb3f3637744efb182aa006.bindPopup(popup_61fa565aa2140b20266aa4fcc9d728e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad12e0e8247fddeb295dc38a0ed995fd = L.circleMarker(\\n\",\n       \"                [35.1147, 111.0414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10308f1ca7cc8f96c317fec42afd34c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0ee02da5416449f48c4ae995ef5253f = $(`&lt;div id=&quot;html_d0ee02da5416449f48c4ae995ef5253f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0414             latitude:35.1147             PM2_5:57.46648045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10308f1ca7cc8f96c317fec42afd34c0.setContent(html_d0ee02da5416449f48c4ae995ef5253f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad12e0e8247fddeb295dc38a0ed995fd.bindPopup(popup_10308f1ca7cc8f96c317fec42afd34c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5748e0e0d9bf26378a5128f0b1413e15 = L.circleMarker(\\n\",\n       \"                [38.5036, 106.1358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e195175b2303ad19dbf4ccd7ee321ffe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14e16395d5131c3531462c8e0ef2a494 = $(`&lt;div id=&quot;html_14e16395d5131c3531462c8e0ef2a494&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1358             latitude:38.5036             PM2_5:34.52222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e195175b2303ad19dbf4ccd7ee321ffe.setContent(html_14e16395d5131c3531462c8e0ef2a494);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5748e0e0d9bf26378a5128f0b1413e15.bindPopup(popup_e195175b2303ad19dbf4ccd7ee321ffe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b057a13290caa387a8b1b126af4b51fb = L.circleMarker(\\n\",\n       \"                [36.4796, 115.9835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d72600afadef4a00223c02931fa7a685 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c30fb34901cb49702b52a1daea163c44 = $(`&lt;div id=&quot;html_c30fb34901cb49702b52a1daea163c44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9835             latitude:36.4796             PM2_5:57.26740947             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d72600afadef4a00223c02931fa7a685.setContent(html_c30fb34901cb49702b52a1daea163c44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b057a13290caa387a8b1b126af4b51fb.bindPopup(popup_d72600afadef4a00223c02931fa7a685)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4193ccaad0ee1d9cf496f00e1a6d5484 = L.circleMarker(\\n\",\n       \"                [44.1756, 87.5475],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98a98d9fc4d2afd759c584f3770cc63b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2bd90b458249b2884c7ee076eafd2f9 = $(`&lt;div id=&quot;html_c2bd90b458249b2884c7ee076eafd2f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5475             latitude:44.1756             PM2_5:61.95505618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98a98d9fc4d2afd759c584f3770cc63b.setContent(html_c2bd90b458249b2884c7ee076eafd2f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4193ccaad0ee1d9cf496f00e1a6d5484.bindPopup(popup_98a98d9fc4d2afd759c584f3770cc63b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46235e883cc0e9e95d515cccbb0de183 = L.circleMarker(\\n\",\n       \"                [30.3058, 120.348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ffd93504bbe76e6a695145bbabfc36e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9cc29fdf2357f98e4aac15dcd0fcd63 = $(`&lt;div id=&quot;html_f9cc29fdf2357f98e4aac15dcd0fcd63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.348             latitude:30.3058             PM2_5:46.53047091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ffd93504bbe76e6a695145bbabfc36e.setContent(html_f9cc29fdf2357f98e4aac15dcd0fcd63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46235e883cc0e9e95d515cccbb0de183.bindPopup(popup_2ffd93504bbe76e6a695145bbabfc36e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45dd75c6704f5b274ee4d8a2fe236bee = L.circleMarker(\\n\",\n       \"                [29.6039, 115.9114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c93aebba92f43ad6cdebcec7e66d647b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f363eb0bb8c0f8810c5f0a2e31614fbe = $(`&lt;div id=&quot;html_f363eb0bb8c0f8810c5f0a2e31614fbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9114             latitude:29.6039             PM2_5:43.8487395             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c93aebba92f43ad6cdebcec7e66d647b.setContent(html_f363eb0bb8c0f8810c5f0a2e31614fbe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45dd75c6704f5b274ee4d8a2fe236bee.bindPopup(popup_c93aebba92f43ad6cdebcec7e66d647b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfefd96569f5cb85ebd7b52518bb8762 = L.circleMarker(\\n\",\n       \"                [27.5733, 109.9333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d89758eae447d5b9e6ee1110cc402dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61f243f7c18b92d5fc26f54f2af3d532 = $(`&lt;div id=&quot;html_61f243f7c18b92d5fc26f54f2af3d532&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9333             latitude:27.5733             PM2_5:42.20140845             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d89758eae447d5b9e6ee1110cc402dc.setContent(html_61f243f7c18b92d5fc26f54f2af3d532);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfefd96569f5cb85ebd7b52518bb8762.bindPopup(popup_4d89758eae447d5b9e6ee1110cc402dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62c51d1bd794775d84f34a870f2f69a1 = L.circleMarker(\\n\",\n       \"                [28.2189, 112.8872],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75f27e47ea8e12099f521a3e47a3f67a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00163fb47f21ad2c678b04734e55e637 = $(`&lt;div id=&quot;html_00163fb47f21ad2c678b04734e55e637&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8872             latitude:28.2189             PM2_5:46.02374302             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75f27e47ea8e12099f521a3e47a3f67a.setContent(html_00163fb47f21ad2c678b04734e55e637);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62c51d1bd794775d84f34a870f2f69a1.bindPopup(popup_75f27e47ea8e12099f521a3e47a3f67a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce71c3902160cdcb8c4909ba86709412 = L.circleMarker(\\n\",\n       \"                [27.7758, 115.0586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1669dce0467474eaf4847c36178cf027 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e949f60e7066d56de94badf888a5c3e = $(`&lt;div id=&quot;html_9e949f60e7066d56de94badf888a5c3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0586             latitude:27.7758             PM2_5:43.86864407             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1669dce0467474eaf4847c36178cf027.setContent(html_9e949f60e7066d56de94badf888a5c3e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce71c3902160cdcb8c4909ba86709412.bindPopup(popup_1669dce0467474eaf4847c36178cf027)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52bfa4b581e4022da0654129d0c56ddd = L.circleMarker(\\n\",\n       \"                [24.3304, 109.4108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf52e5b2727798f6a7eaab32adfe0613 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ec4e773a760391b8988743ca6079b38 = $(`&lt;div id=&quot;html_1ec4e773a760391b8988743ca6079b38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4108             latitude:24.3304             PM2_5:44.54661017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf52e5b2727798f6a7eaab32adfe0613.setContent(html_1ec4e773a760391b8988743ca6079b38);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52bfa4b581e4022da0654129d0c56ddd.bindPopup(popup_bf52e5b2727798f6a7eaab32adfe0613)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a38bd51608d662fb0e443984e3e90943 = L.circleMarker(\\n\",\n       \"                [24.795928, 113.598061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86fd82810750d794bce5c25abba9b937 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c878aa54cdb6b08e350734f53fc95738 = $(`&lt;div id=&quot;html_c878aa54cdb6b08e350734f53fc95738&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.598061             latitude:24.795928             PM2_5:31.37429379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86fd82810750d794bce5c25abba9b937.setContent(html_c878aa54cdb6b08e350734f53fc95738);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a38bd51608d662fb0e443984e3e90943.bindPopup(popup_86fd82810750d794bce5c25abba9b937)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8da53d749fd24e64981bf18fcd99f8b = L.circleMarker(\\n\",\n       \"                [36.71, 117.541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_427cac11ed36f68f23f251190c421b28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ff41281b836c99526ba81d2c0b17078 = $(`&lt;div id=&quot;html_1ff41281b836c99526ba81d2c0b17078&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.541             latitude:36.71             PM2_5:54.36             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_427cac11ed36f68f23f251190c421b28.setContent(html_1ff41281b836c99526ba81d2c0b17078);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8da53d749fd24e64981bf18fcd99f8b.bindPopup(popup_427cac11ed36f68f23f251190c421b28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f3c037a09d91f5d307ff24e7d4ec5cd = L.circleMarker(\\n\",\n       \"                [43.9317, 116.1042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11856113634254ee42f4157b68a38897 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11b2e176b6a2111a26fb9f0dd9826dc2 = $(`&lt;div id=&quot;html_11b2e176b6a2111a26fb9f0dd9826dc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1042             latitude:43.9317             PM2_5:15.73460411             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11856113634254ee42f4157b68a38897.setContent(html_11b2e176b6a2111a26fb9f0dd9826dc2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f3c037a09d91f5d307ff24e7d4ec5cd.bindPopup(popup_11856113634254ee42f4157b68a38897)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_419a02cc910b228fd6488935b88ed7a8 = L.circleMarker(\\n\",\n       \"                [23.2539, 116.6092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39b9a60449b3179bb48e84df2fc91b30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51e0edc8cb1b853ccb3a195c9d4e2928 = $(`&lt;div id=&quot;html_51e0edc8cb1b853ccb3a195c9d4e2928&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6092             latitude:23.2539             PM2_5:24.50423729             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39b9a60449b3179bb48e84df2fc91b30.setContent(html_51e0edc8cb1b853ccb3a195c9d4e2928);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_419a02cc910b228fd6488935b88ed7a8.bindPopup(popup_39b9a60449b3179bb48e84df2fc91b30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60c591fe96b582a3190a2afe85665892 = L.circleMarker(\\n\",\n       \"                [29.3411, 104.7692],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ce57724d4f8b9a2797292b8e3132915 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3d33e6a1ae6af02d0cfb5be4ea3bd71 = $(`&lt;div id=&quot;html_a3d33e6a1ae6af02d0cfb5be4ea3bd71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7692             latitude:29.3411             PM2_5:64.99164345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ce57724d4f8b9a2797292b8e3132915.setContent(html_a3d33e6a1ae6af02d0cfb5be4ea3bd71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60c591fe96b582a3190a2afe85665892.bindPopup(popup_1ce57724d4f8b9a2797292b8e3132915)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a07593a9c86e4d28cb5c176cce6d1b2d = L.circleMarker(\\n\",\n       \"                [39.9425, 116.361],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da84be8814b73fd5a931adee6d5a4751 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_150f606d9c5a49ccf90ff17725148883 = $(`&lt;div id=&quot;html_150f606d9c5a49ccf90ff17725148883&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.361             latitude:39.9425             PM2_5:53.87780899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da84be8814b73fd5a931adee6d5a4751.setContent(html_150f606d9c5a49ccf90ff17725148883);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a07593a9c86e4d28cb5c176cce6d1b2d.bindPopup(popup_da84be8814b73fd5a931adee6d5a4751)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83b3989b24f1ea6be91ce40f5f1a5969 = L.circleMarker(\\n\",\n       \"                [32.625, 116.7039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c3f0c01521458df989a0c63f33dda71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f03cd626a4834639c22b150b36905db6 = $(`&lt;div id=&quot;html_f03cd626a4834639c22b150b36905db6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7039             latitude:32.625             PM2_5:58.06582633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c3f0c01521458df989a0c63f33dda71.setContent(html_f03cd626a4834639c22b150b36905db6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83b3989b24f1ea6be91ce40f5f1a5969.bindPopup(popup_9c3f0c01521458df989a0c63f33dda71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba42febc94ca18ecabcd113b824b8bfe = L.circleMarker(\\n\",\n       \"                [41.2736, 123.1761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d65d3f5922585dd766f90bafabfdb125 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d599e14e0cded3b676e5ee07ce22d92b = $(`&lt;div id=&quot;html_d599e14e0cded3b676e5ee07ce22d92b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1761             latitude:41.2736             PM2_5:31.98467967             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d65d3f5922585dd766f90bafabfdb125.setContent(html_d599e14e0cded3b676e5ee07ce22d92b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba42febc94ca18ecabcd113b824b8bfe.bindPopup(popup_d65d3f5922585dd766f90bafabfdb125)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37efcd30421e384e322db7a484fe340c = L.circleMarker(\\n\",\n       \"                [34.1546, 108.906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a629335a52f66d82339f1edf0c1193a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8aab97dba6c5c53cc20dd090a3153563 = $(`&lt;div id=&quot;html_8aab97dba6c5c53cc20dd090a3153563&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.906             latitude:34.1546             PM2_5:63.16142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a629335a52f66d82339f1edf0c1193a4.setContent(html_8aab97dba6c5c53cc20dd090a3153563);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37efcd30421e384e322db7a484fe340c.bindPopup(popup_a629335a52f66d82339f1edf0c1193a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5427b0b4469d0613abde0a90b7557ff9 = L.circleMarker(\\n\",\n       \"                [28.0797, 116.2239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09b8707af5188eef4c83e089882786d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a040230224b74ec7b455136948c1b4b = $(`&lt;div id=&quot;html_1a040230224b74ec7b455136948c1b4b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.2239             latitude:28.0797             PM2_5:43.84861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09b8707af5188eef4c83e089882786d0.setContent(html_1a040230224b74ec7b455136948c1b4b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5427b0b4469d0613abde0a90b7557ff9.bindPopup(popup_09b8707af5188eef4c83e089882786d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_550360bd05492d8ae21a721b85509488 = L.circleMarker(\\n\",\n       \"                [34.4286, 115.6697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b0f3ac92b05041ef4ab7c459fecf250 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ac1c63b2f3b7e799341f9a005a8390a = $(`&lt;div id=&quot;html_9ac1c63b2f3b7e799341f9a005a8390a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6697             latitude:34.4286             PM2_5:58.56478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b0f3ac92b05041ef4ab7c459fecf250.setContent(html_9ac1c63b2f3b7e799341f9a005a8390a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_550360bd05492d8ae21a721b85509488.bindPopup(popup_9b0f3ac92b05041ef4ab7c459fecf250)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_469255cc81335bd43f302cc16e972606 = L.circleMarker(\\n\",\n       \"                [31.7618, 116.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2baecdfca0fbbd62fe3ed7e900752852 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8a3d791be4903ff70ce5fa3f400580e = $(`&lt;div id=&quot;html_d8a3d791be4903ff70ce5fa3f400580e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.478             latitude:31.7618             PM2_5:41.19722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2baecdfca0fbbd62fe3ed7e900752852.setContent(html_d8a3d791be4903ff70ce5fa3f400580e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_469255cc81335bd43f302cc16e972606.bindPopup(popup_2baecdfca0fbbd62fe3ed7e900752852)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_559fe057627a838b21192512e2c0bd86 = L.circleMarker(\\n\",\n       \"                [39.1654, 117.145],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ae7b6ea5828b26caae598ae3c49845b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c90bf77438592a69ef68007ee44f88a2 = $(`&lt;div id=&quot;html_c90bf77438592a69ef68007ee44f88a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.145             latitude:39.1654             PM2_5:50.42458101             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ae7b6ea5828b26caae598ae3c49845b.setContent(html_c90bf77438592a69ef68007ee44f88a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_559fe057627a838b21192512e2c0bd86.bindPopup(popup_8ae7b6ea5828b26caae598ae3c49845b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2058f62a55bfc61eaf7ae5d14f7a8cf0 = L.circleMarker(\\n\",\n       \"                [46.0347, 124.8354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7ee10f0729d3b26bccb90404fa477a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f0bc35a74df3e04e1fd5c47cd4faceb = $(`&lt;div id=&quot;html_4f0bc35a74df3e04e1fd5c47cd4faceb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8354             latitude:46.0347             PM2_5:29.63342697             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7ee10f0729d3b26bccb90404fa477a9.setContent(html_4f0bc35a74df3e04e1fd5c47cd4faceb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2058f62a55bfc61eaf7ae5d14f7a8cf0.bindPopup(popup_b7ee10f0729d3b26bccb90404fa477a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8bbeb6717dae91a54e4c1b1f687d1a4b = L.circleMarker(\\n\",\n       \"                [32.1342, 114.0681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_860e2b5805b79d795550e93d598afa3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2766f93171651f000514e4908c12d42 = $(`&lt;div id=&quot;html_b2766f93171651f000514e4908c12d42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0681             latitude:32.1342             PM2_5:48.12083333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_860e2b5805b79d795550e93d598afa3a.setContent(html_b2766f93171651f000514e4908c12d42);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8bbeb6717dae91a54e4c1b1f687d1a4b.bindPopup(popup_860e2b5805b79d795550e93d598afa3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0ff6cba139917a816708aa41927c1f1 = L.circleMarker(\\n\",\n       \"                [31.422, 121.14],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab6357119ae192d376e81ec015531525 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70d4555f92a3ab6948f2953be524c056 = $(`&lt;div id=&quot;html_70d4555f92a3ab6948f2953be524c056&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.14             latitude:31.422             PM2_5:36.98680352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab6357119ae192d376e81ec015531525.setContent(html_70d4555f92a3ab6948f2953be524c056);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0ff6cba139917a816708aa41927c1f1.bindPopup(popup_ab6357119ae192d376e81ec015531525)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4574140a759e5b072b4f405a6349f8d = L.circleMarker(\\n\",\n       \"                [43.9469, 87.4754],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a1c6e47887eb60a99c65b01e9f5e988 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f891c1244ae242615b5958980790e9ff = $(`&lt;div id=&quot;html_f891c1244ae242615b5958980790e9ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.4754             latitude:43.9469             PM2_5:77.70943953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a1c6e47887eb60a99c65b01e9f5e988.setContent(html_f891c1244ae242615b5958980790e9ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4574140a759e5b072b4f405a6349f8d.bindPopup(popup_7a1c6e47887eb60a99c65b01e9f5e988)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7270630792069259ff899d478ade041c = L.circleMarker(\\n\",\n       \"                [32.9735, 112.5003],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c760b31ff582b9c76abcddc08a366738 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ae5f7e61ed1768efc559a5a9cfeaa4c = $(`&lt;div id=&quot;html_8ae5f7e61ed1768efc559a5a9cfeaa4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5003             latitude:32.9735             PM2_5:56.01264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c760b31ff582b9c76abcddc08a366738.setContent(html_8ae5f7e61ed1768efc559a5a9cfeaa4c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7270630792069259ff899d478ade041c.bindPopup(popup_c760b31ff582b9c76abcddc08a366738)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3a1764230143c451f278aa36969cd5f = L.circleMarker(\\n\",\n       \"                [31.909, 120.237],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25b117d16fb4b18abae3cee65cdb4c12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa6f1f1319025e01fec51777035bb3a1 = $(`&lt;div id=&quot;html_fa6f1f1319025e01fec51777035bb3a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.237             latitude:31.909             PM2_5:53.80617978             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25b117d16fb4b18abae3cee65cdb4c12.setContent(html_fa6f1f1319025e01fec51777035bb3a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3a1764230143c451f278aa36969cd5f.bindPopup(popup_25b117d16fb4b18abae3cee65cdb4c12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43c09fd0417512232aea0c1947622edf = L.circleMarker(\\n\",\n       \"                [38.8756, 115.442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f686adf23b30b7a7e1ac02992f6ce60 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22bc4487735a4aa77b8dd7be9693f922 = $(`&lt;div id=&quot;html_22bc4487735a4aa77b8dd7be9693f922&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.442             latitude:38.8756             PM2_5:50.77170868             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f686adf23b30b7a7e1ac02992f6ce60.setContent(html_22bc4487735a4aa77b8dd7be9693f922);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43c09fd0417512232aea0c1947622edf.bindPopup(popup_6f686adf23b30b7a7e1ac02992f6ce60)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1b56cb8e0d2f4a6c772a3ec4d0611cd = L.circleMarker(\\n\",\n       \"                [44.6104, 129.6459],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c3c97d518e9a3a1deea455ff27d2e83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51b35c9d34792eefba39efc97bb6d290 = $(`&lt;div id=&quot;html_51b35c9d34792eefba39efc97bb6d290&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6459             latitude:44.6104             PM2_5:26.84033613             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c3c97d518e9a3a1deea455ff27d2e83.setContent(html_51b35c9d34792eefba39efc97bb6d290);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1b56cb8e0d2f4a6c772a3ec4d0611cd.bindPopup(popup_3c3c97d518e9a3a1deea455ff27d2e83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ebe10fc98261116d934d67e6c62f3466 = L.circleMarker(\\n\",\n       \"                [31.6411, 118.4828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32d0dd9e36cc6c3d808689af413b7706 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a24279325ca13cb33798b9afac0cceff = $(`&lt;div id=&quot;html_a24279325ca13cb33798b9afac0cceff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4828             latitude:31.6411             PM2_5:43.52653631             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32d0dd9e36cc6c3d808689af413b7706.setContent(html_a24279325ca13cb33798b9afac0cceff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ebe10fc98261116d934d67e6c62f3466.bindPopup(popup_32d0dd9e36cc6c3d808689af413b7706)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ce7426e8abc92c0fdc50150ef829ece = L.circleMarker(\\n\",\n       \"                [32.965, 114.018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76c0bdfe30b0a629c56f75498830c528 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50301308d7d8e3a8af085ca6533dade1 = $(`&lt;div id=&quot;html_50301308d7d8e3a8af085ca6533dade1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.018             latitude:32.965             PM2_5:53.2740113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76c0bdfe30b0a629c56f75498830c528.setContent(html_50301308d7d8e3a8af085ca6533dade1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ce7426e8abc92c0fdc50150ef829ece.bindPopup(popup_76c0bdfe30b0a629c56f75498830c528)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3571b2fd34e5d741e89acc0c0b4901e = L.circleMarker(\\n\",\n       \"                [32.4611, 119.9219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_daf86099e9d8430e0411f46ba204555c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3351af5a5c93db9623b88c9f30b4aae3 = $(`&lt;div id=&quot;html_3351af5a5c93db9623b88c9f30b4aae3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9219             latitude:32.4611             PM2_5:46.7261236             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_daf86099e9d8430e0411f46ba204555c.setContent(html_3351af5a5c93db9623b88c9f30b4aae3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3571b2fd34e5d741e89acc0c0b4901e.bindPopup(popup_daf86099e9d8430e0411f46ba204555c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3215d2f76790f8e42252edc29b16cadb = L.circleMarker(\\n\",\n       \"                [36.0022, 106.2792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_985bead53636363e191702790a8f0fba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5eeee8fdac5463bbc6fcd9eadd2ebca = $(`&lt;div id=&quot;html_b5eeee8fdac5463bbc6fcd9eadd2ebca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2792             latitude:36.0022             PM2_5:24.97771588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_985bead53636363e191702790a8f0fba.setContent(html_b5eeee8fdac5463bbc6fcd9eadd2ebca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3215d2f76790f8e42252edc29b16cadb.bindPopup(popup_985bead53636363e191702790a8f0fba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0174f502cdd8b8d82b439864d0c89fd = L.circleMarker(\\n\",\n       \"                [40.3937, 116.644],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0fe675ec6e863ac6f5e8891182d8b2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c5ffb0db3954565a22e4d13c0f1fd7e = $(`&lt;div id=&quot;html_6c5ffb0db3954565a22e4d13c0f1fd7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.644             latitude:40.3937             PM2_5:46.92151163             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0fe675ec6e863ac6f5e8891182d8b2d.setContent(html_6c5ffb0db3954565a22e4d13c0f1fd7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0174f502cdd8b8d82b439864d0c89fd.bindPopup(popup_d0fe675ec6e863ac6f5e8891182d8b2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb38d6972243c1aeaaf0ca1c04df6f60 = L.circleMarker(\\n\",\n       \"                [32.1883, 119.68],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02693d6f104c609f2b7544da4ed3c80f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ba3f4f791415eb035c8d807e3244e2f = $(`&lt;div id=&quot;html_8ba3f4f791415eb035c8d807e3244e2f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.68             latitude:32.1883             PM2_5:51.92178771             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02693d6f104c609f2b7544da4ed3c80f.setContent(html_8ba3f4f791415eb035c8d807e3244e2f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb38d6972243c1aeaaf0ca1c04df6f60.bindPopup(popup_02693d6f104c609f2b7544da4ed3c80f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0dc984d08aec44f4f6bc8bde7e9c817 = L.circleMarker(\\n\",\n       \"                [27.6442, 113.8686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f68661bb4faa7638b8c73cffe7ca0793 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_128f4cf3733c0bbef843dc05e458b839 = $(`&lt;div id=&quot;html_128f4cf3733c0bbef843dc05e458b839&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8686             latitude:27.6442             PM2_5:43.725             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f68661bb4faa7638b8c73cffe7ca0793.setContent(html_128f4cf3733c0bbef843dc05e458b839);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0dc984d08aec44f4f6bc8bde7e9c817.bindPopup(popup_f68661bb4faa7638b8c73cffe7ca0793)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c45d56d9075afc6804cc10bfab56a387 = L.circleMarker(\\n\",\n       \"                [27.7842, 114.3953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_579db40c2fe754c423e5eae71f8568fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd9af67d31f3bb6a0ad971dcd5560178 = $(`&lt;div id=&quot;html_dd9af67d31f3bb6a0ad971dcd5560178&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3953             latitude:27.7842             PM2_5:48.19777159             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_579db40c2fe754c423e5eae71f8568fd.setContent(html_dd9af67d31f3bb6a0ad971dcd5560178);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c45d56d9075afc6804cc10bfab56a387.bindPopup(popup_579db40c2fe754c423e5eae71f8568fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6915cf881fc413f36aebad9c4a995b8b = L.circleMarker(\\n\",\n       \"                [27.8317, 99.7056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dcd416784c1515b1a8219b4ba7bf127f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d73b2b210d2b8b1994e40b06096a606c = $(`&lt;div id=&quot;html_d73b2b210d2b8b1994e40b06096a606c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.7056             latitude:27.8317             PM2_5:12.73638968             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dcd416784c1515b1a8219b4ba7bf127f.setContent(html_d73b2b210d2b8b1994e40b06096a606c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6915cf881fc413f36aebad9c4a995b8b.bindPopup(popup_dcd416784c1515b1a8219b4ba7bf127f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2f9d614e7a0664d9b986c4d1673ab65 = L.circleMarker(\\n\",\n       \"                [41.1222, 121.1178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1fa3684a64718b1a1911afabac20a3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d16ba2888597a1769a1ff7b9c10b3f9 = $(`&lt;div id=&quot;html_8d16ba2888597a1769a1ff7b9c10b3f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1178             latitude:41.1222             PM2_5:34.33379888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1fa3684a64718b1a1911afabac20a3f.setContent(html_8d16ba2888597a1769a1ff7b9c10b3f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2f9d614e7a0664d9b986c4d1673ab65.bindPopup(popup_d1fa3684a64718b1a1911afabac20a3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a87e2861d259aa98c4658b07ee63c72 = L.circleMarker(\\n\",\n       \"                [29.6514, 91.1319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1688807242593f50899474af74de9244 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_41647d04f7467cafff46248b6565486f = $(`&lt;div id=&quot;html_41647d04f7467cafff46248b6565486f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1319             latitude:29.6514             PM2_5:19.38243626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1688807242593f50899474af74de9244.setContent(html_41647d04f7467cafff46248b6565486f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a87e2861d259aa98c4658b07ee63c72.bindPopup(popup_1688807242593f50899474af74de9244)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_973dfe282646c1aebec8612b8b55872c = L.circleMarker(\\n\",\n       \"                [23.65889, 116.6183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34ed91e4633d36ccfa17b695e9f78c63 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b05e2da31c0ef53366b0251f108154d = $(`&lt;div id=&quot;html_6b05e2da31c0ef53366b0251f108154d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6183             latitude:23.65889             PM2_5:30.49442897             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34ed91e4633d36ccfa17b695e9f78c63.setContent(html_6b05e2da31c0ef53366b0251f108154d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_973dfe282646c1aebec8612b8b55872c.bindPopup(popup_34ed91e4633d36ccfa17b695e9f78c63)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43f6c3d10865b15323c95cd998b1ece2 = L.circleMarker(\\n\",\n       \"                [31.3178, 118.3708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cabc2b7a1f2949059e873796be466149 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb67c1997a284dd53ba9010c74bbe046 = $(`&lt;div id=&quot;html_bb67c1997a284dd53ba9010c74bbe046&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3708             latitude:31.3178             PM2_5:55.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cabc2b7a1f2949059e873796be466149.setContent(html_bb67c1997a284dd53ba9010c74bbe046);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43f6c3d10865b15323c95cd998b1ece2.bindPopup(popup_cabc2b7a1f2949059e873796be466149)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_abbd34cb7283471a17405210a1a12b5b = L.circleMarker(\\n\",\n       \"                [40.0031, 116.407],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a20523ef0c19e4802eebaf2d1b0a7ea4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2087db096c5a856ae60c836938e80877 = $(`&lt;div id=&quot;html_2087db096c5a856ae60c836938e80877&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.407             latitude:40.0031             PM2_5:51.25069638             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a20523ef0c19e4802eebaf2d1b0a7ea4.setContent(html_2087db096c5a856ae60c836938e80877);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_abbd34cb7283471a17405210a1a12b5b.bindPopup(popup_a20523ef0c19e4802eebaf2d1b0a7ea4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9895d7f42ce8b59c712c511f45033404 = L.circleMarker(\\n\",\n       \"                [28.6869, 115.852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_791010f2d68caf750071c09fde47085b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a278ebed1b99735b8706b84a40bdfad9 = $(`&lt;div id=&quot;html_a278ebed1b99735b8706b84a40bdfad9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.852             latitude:28.6869             PM2_5:34.8837535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_791010f2d68caf750071c09fde47085b.setContent(html_a278ebed1b99735b8706b84a40bdfad9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9895d7f42ce8b59c712c511f45033404.bindPopup(popup_791010f2d68caf750071c09fde47085b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52421f86924bb8b1abdd64eec5a2d46f = L.circleMarker(\\n\",\n       \"                [27.2537, 111.4503],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00fca7dbde2ea5192e351e47fa372571 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a6aea94213f9654ff3854c7adc956ce = $(`&lt;div id=&quot;html_6a6aea94213f9654ff3854c7adc956ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4503             latitude:27.2537             PM2_5:49.32869081             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00fca7dbde2ea5192e351e47fa372571.setContent(html_6a6aea94213f9654ff3854c7adc956ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52421f86924bb8b1abdd64eec5a2d46f.bindPopup(popup_00fca7dbde2ea5192e351e47fa372571)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b85053f80cd53ad1cbac4a1a403285d0 = L.circleMarker(\\n\",\n       \"                [22.9539, 112.0539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b2ffa738eda4dca6519bef0b119fd95 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_329ffde711b4bc365b93355f1ed20995 = $(`&lt;div id=&quot;html_329ffde711b4bc365b93355f1ed20995&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0539             latitude:22.9539             PM2_5:31.77562327             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b2ffa738eda4dca6519bef0b119fd95.setContent(html_329ffde711b4bc365b93355f1ed20995);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b85053f80cd53ad1cbac4a1a403285d0.bindPopup(popup_0b2ffa738eda4dca6519bef0b119fd95)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ead11e0b0cfff5742af1a00ef662f6c = L.circleMarker(\\n\",\n       \"                [41.1196, 123.044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_842416bebf7132f24918fe8298f74e26 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9d549d7f466179bb2d4d9d36d03a704 = $(`&lt;div id=&quot;html_b9d549d7f466179bb2d4d9d36d03a704&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.044             latitude:41.1196             PM2_5:33.3767313             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_842416bebf7132f24918fe8298f74e26.setContent(html_b9d549d7f466179bb2d4d9d36d03a704);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ead11e0b0cfff5742af1a00ef662f6c.bindPopup(popup_842416bebf7132f24918fe8298f74e26)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5397c9a28635181f10c948a1263698cb = L.circleMarker(\\n\",\n       \"                [28.1442, 112.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9206a6641296e4ac6377a8911aa19ecd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebed9530e0992bfd32abfe47462a62f7 = $(`&lt;div id=&quot;html_ebed9530e0992bfd32abfe47462a62f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9956             latitude:28.1442             PM2_5:44.35195531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9206a6641296e4ac6377a8911aa19ecd.setContent(html_ebed9530e0992bfd32abfe47462a62f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5397c9a28635181f10c948a1263698cb.bindPopup(popup_9206a6641296e4ac6377a8911aa19ecd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c1a659af1f4a4ac48d51418560321a2 = L.circleMarker(\\n\",\n       \"                [36.6106, 109.5056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c2429b9b2a4cbf5ac5f2c3755974508 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b829215be871cccfd9cccd6d4b1a10e5 = $(`&lt;div id=&quot;html_b829215be871cccfd9cccd6d4b1a10e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5056             latitude:36.6106             PM2_5:38.42792793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c2429b9b2a4cbf5ac5f2c3755974508.setContent(html_b829215be871cccfd9cccd6d4b1a10e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c1a659af1f4a4ac48d51418560321a2.bindPopup(popup_8c2429b9b2a4cbf5ac5f2c3755974508)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cfe5872b2307a5af8609650956645344 = L.circleMarker(\\n\",\n       \"                [28.6844, 115.893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5383c8e4e7cd361c35d23dfccb2a65e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e776a1564fe96cb687cfa28e1207276 = $(`&lt;div id=&quot;html_8e776a1564fe96cb687cfa28e1207276&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.893             latitude:28.6844             PM2_5:36.59401709             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5383c8e4e7cd361c35d23dfccb2a65e7.setContent(html_8e776a1564fe96cb687cfa28e1207276);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cfe5872b2307a5af8609650956645344.bindPopup(popup_5383c8e4e7cd361c35d23dfccb2a65e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_607a135d10f124fd6419a1307e6996e0 = L.circleMarker(\\n\",\n       \"                [46.6219, 124.8648],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7b213b77d4849287f119ca441d20577 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84084b7dca067bf6c4b66c51ecfc69f0 = $(`&lt;div id=&quot;html_84084b7dca067bf6c4b66c51ecfc69f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8648             latitude:46.6219             PM2_5:21.60504202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7b213b77d4849287f119ca441d20577.setContent(html_84084b7dca067bf6c4b66c51ecfc69f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_607a135d10f124fd6419a1307e6996e0.bindPopup(popup_f7b213b77d4849287f119ca441d20577)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da4b1f425550b315b52b4b97d6b6e7cb = L.circleMarker(\\n\",\n       \"                [42.0186, 121.6561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3311033e7e7a9daf0b2f6fa01ced5bdc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5d7b9535c52947dfee818fd68f436b9 = $(`&lt;div id=&quot;html_c5d7b9535c52947dfee818fd68f436b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6561             latitude:42.0186             PM2_5:25.61772853             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3311033e7e7a9daf0b2f6fa01ced5bdc.setContent(html_c5d7b9535c52947dfee818fd68f436b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da4b1f425550b315b52b4b97d6b6e7cb.bindPopup(popup_3311033e7e7a9daf0b2f6fa01ced5bdc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ea272c847836c83db132189bfca32c6 = L.circleMarker(\\n\",\n       \"                [36.0783, 111.5531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be68fd2fec3e12e5ffda1fae45171774 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd0edabe5142447dff1b92bf633beb05 = $(`&lt;div id=&quot;html_dd0edabe5142447dff1b92bf633beb05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5531             latitude:36.0783             PM2_5:69.44428969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be68fd2fec3e12e5ffda1fae45171774.setContent(html_dd0edabe5142447dff1b92bf633beb05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ea272c847836c83db132189bfca32c6.bindPopup(popup_be68fd2fec3e12e5ffda1fae45171774)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_859a676c2106d0b11a760490bafb9ff2 = L.circleMarker(\\n\",\n       \"                [26.6383, 118.1694],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aeb8e8d42890424c82c9e108f950817b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4227ad300b4d22660f3cabc1e038588 = $(`&lt;div id=&quot;html_e4227ad300b4d22660f3cabc1e038588&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1694             latitude:26.6383             PM2_5:22.0             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aeb8e8d42890424c82c9e108f950817b.setContent(html_e4227ad300b4d22660f3cabc1e038588);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_859a676c2106d0b11a760490bafb9ff2.bindPopup(popup_aeb8e8d42890424c82c9e108f950817b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee268c5bb83c4750ff8826c29cbbbf3f = L.circleMarker(\\n\",\n       \"                [36.2126, 113.0886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7273e78e2e2e215d4d843353144ed2ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46fcc80a251fb87d2e0a127dd9794304 = $(`&lt;div id=&quot;html_46fcc80a251fb87d2e0a127dd9794304&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0886             latitude:36.2126             PM2_5:68.68767507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7273e78e2e2e215d4d843353144ed2ca.setContent(html_46fcc80a251fb87d2e0a127dd9794304);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee268c5bb83c4750ff8826c29cbbbf3f.bindPopup(popup_7273e78e2e2e215d4d843353144ed2ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d287a62de5db50a36b4b265bcfe14fa = L.circleMarker(\\n\",\n       \"                [40.7579, 111.651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_299038f6a667bd783192380682e70508 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96bc9f291433bfd615aaf985aea9469b = $(`&lt;div id=&quot;html_96bc9f291433bfd615aaf985aea9469b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.651             latitude:40.7579             PM2_5:34.55742297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_299038f6a667bd783192380682e70508.setContent(html_96bc9f291433bfd615aaf985aea9469b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d287a62de5db50a36b4b265bcfe14fa.bindPopup(popup_299038f6a667bd783192380682e70508)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14fdc8f10a5f3b432907e129a22adf91 = L.circleMarker(\\n\",\n       \"                [25.9061, 113.0073],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_93c3dd150db48bf2157037adffb943d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae2ffaae04ec2202ce3e0d7f086e1478 = $(`&lt;div id=&quot;html_ae2ffaae04ec2202ce3e0d7f086e1478&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0073             latitude:25.9061             PM2_5:34.37464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_93c3dd150db48bf2157037adffb943d8.setContent(html_ae2ffaae04ec2202ce3e0d7f086e1478);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14fdc8f10a5f3b432907e129a22adf91.bindPopup(popup_93c3dd150db48bf2157037adffb943d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71f9c164533dff57856231063e82c5bd = L.circleMarker(\\n\",\n       \"                [23.0395, 113.105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44a437b8bfd46240c9ceaa5aa405c15f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e122acb1c279d2db59ec4f0d1a89fed = $(`&lt;div id=&quot;html_8e122acb1c279d2db59ec4f0d1a89fed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.105             latitude:23.0395             PM2_5:39.28969359             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44a437b8bfd46240c9ceaa5aa405c15f.setContent(html_8e122acb1c279d2db59ec4f0d1a89fed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71f9c164533dff57856231063e82c5bd.bindPopup(popup_44a437b8bfd46240c9ceaa5aa405c15f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae3bdbb5134c31d984d11087570e1755 = L.circleMarker(\\n\",\n       \"                [31.2108, 107.4967],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7034ce71e4796bca6b6ee458a3312ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5df48041831592ec347724abb42c5d58 = $(`&lt;div id=&quot;html_5df48041831592ec347724abb42c5d58&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4967             latitude:31.2108             PM2_5:48.13509749             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7034ce71e4796bca6b6ee458a3312ea.setContent(html_5df48041831592ec347724abb42c5d58);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae3bdbb5134c31d984d11087570e1755.bindPopup(popup_b7034ce71e4796bca6b6ee458a3312ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_102c96f68e95f13a30e4dda59c1a5577 = L.circleMarker(\\n\",\n       \"                [38.8957, 115.5223],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3152daf947e2b5fe8896a14c09a97a4d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f774d24e49b589df45f6a14de6b87644 = $(`&lt;div id=&quot;html_f774d24e49b589df45f6a14de6b87644&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.5223             latitude:38.8957             PM2_5:56.74789916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3152daf947e2b5fe8896a14c09a97a4d.setContent(html_f774d24e49b589df45f6a14de6b87644);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_102c96f68e95f13a30e4dda59c1a5577.bindPopup(popup_3152daf947e2b5fe8896a14c09a97a4d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4325361f39e88f681922c89a272daffe = L.circleMarker(\\n\",\n       \"                [39.617, 122.011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffe9d1f4a6ac5125dac0a02407a2814b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9442a2d880bba020c6397b12528b0f6a = $(`&lt;div id=&quot;html_9442a2d880bba020c6397b12528b0f6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.011             latitude:39.617             PM2_5:32.03191489             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffe9d1f4a6ac5125dac0a02407a2814b.setContent(html_9442a2d880bba020c6397b12528b0f6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4325361f39e88f681922c89a272daffe.bindPopup(popup_ffe9d1f4a6ac5125dac0a02407a2814b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af9bf75222b17bc1ec9ac863973754e9 = L.circleMarker(\\n\",\n       \"                [36.907, 121.544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_acc1644a84f53ff6573550e43d67c5b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_144f04aecd4c22927d4bf98ad00b9224 = $(`&lt;div id=&quot;html_144f04aecd4c22927d4bf98ad00b9224&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.544             latitude:36.907             PM2_5:18.6504298             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_acc1644a84f53ff6573550e43d67c5b7.setContent(html_144f04aecd4c22927d4bf98ad00b9224);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af9bf75222b17bc1ec9ac863973754e9.bindPopup(popup_acc1644a84f53ff6573550e43d67c5b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70312a46b2faee4bc2d910c873b35862 = L.circleMarker(\\n\",\n       \"                [34.6686, 112.4433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0be95c152381f981dfe5a2620442412f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f3f08d66d7fa917c717b995569f525b = $(`&lt;div id=&quot;html_5f3f08d66d7fa917c717b995569f525b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4433             latitude:34.6686             PM2_5:60.85352113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0be95c152381f981dfe5a2620442412f.setContent(html_5f3f08d66d7fa917c717b995569f525b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70312a46b2faee4bc2d910c873b35862.bindPopup(popup_0be95c152381f981dfe5a2620442412f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01dea2a6ea3bdcb9481fb1b10603932e = L.circleMarker(\\n\",\n       \"                [31.172, 120.658],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f787d54608896e7d7096b8617ca7af1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f468d4c122fcbed173edc231aae5def = $(`&lt;div id=&quot;html_3f468d4c122fcbed173edc231aae5def&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.658             latitude:31.172             PM2_5:40.59217877             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f787d54608896e7d7096b8617ca7af1f.setContent(html_3f468d4c122fcbed173edc231aae5def);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01dea2a6ea3bdcb9481fb1b10603932e.bindPopup(popup_f787d54608896e7d7096b8617ca7af1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88ed44a9a6486b1bf9b752dcda539628 = L.circleMarker(\\n\",\n       \"                [26.3108, 117.7275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f57619af66d78e235af9114863b16803 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a1ca5f6a7e0d1ea4cc75f5f2bcc67a5 = $(`&lt;div id=&quot;html_8a1ca5f6a7e0d1ea4cc75f5f2bcc67a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7275             latitude:26.3108             PM2_5:26.40668524             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f57619af66d78e235af9114863b16803.setContent(html_8a1ca5f6a7e0d1ea4cc75f5f2bcc67a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88ed44a9a6486b1bf9b752dcda539628.bindPopup(popup_f57619af66d78e235af9114863b16803)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fcd910249fa758b944f4476441c53809 = L.circleMarker(\\n\",\n       \"                [34.378, 108.869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_95203613e5a969892d64005e828f3483 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3188436c778ade25ed3f108e4dde81a7 = $(`&lt;div id=&quot;html_3188436c778ade25ed3f108e4dde81a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.869             latitude:34.378             PM2_5:62.61024845             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_95203613e5a969892d64005e828f3483.setContent(html_3188436c778ade25ed3f108e4dde81a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fcd910249fa758b944f4476441c53809.bindPopup(popup_95203613e5a969892d64005e828f3483)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eabb6b822d2e3c1fbac75b778ce81def = L.circleMarker(\\n\",\n       \"                [29.8506, 121.524],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ae625b6bfc5666c9eaafffb34f6687a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ce0bf32ad51fea7c979378e380cd2a5 = $(`&lt;div id=&quot;html_6ce0bf32ad51fea7c979378e380cd2a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.524             latitude:29.8506             PM2_5:31.24792244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ae625b6bfc5666c9eaafffb34f6687a.setContent(html_6ce0bf32ad51fea7c979378e380cd2a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eabb6b822d2e3c1fbac75b778ce81def.bindPopup(popup_4ae625b6bfc5666c9eaafffb34f6687a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_076a0571947fe7eb9b2a37efe40da31b = L.circleMarker(\\n\",\n       \"                [43.895, 81.2867],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0aab7270c5dd1fba64a1d99af49c5ed2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf0f2619d37a0ea5fb9c5ed0847327ff = $(`&lt;div id=&quot;html_cf0f2619d37a0ea5fb9c5ed0847327ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.2867             latitude:43.895             PM2_5:59.07703081             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0aab7270c5dd1fba64a1d99af49c5ed2.setContent(html_cf0f2619d37a0ea5fb9c5ed0847327ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_076a0571947fe7eb9b2a37efe40da31b.bindPopup(popup_0aab7270c5dd1fba64a1d99af49c5ed2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c349c1d3a372d9d13025a9e51fb62047 = L.circleMarker(\\n\",\n       \"                [34.802, 113.564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02112c795aac09b4640819e0f7c59024 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96763529b72082ed816b836120e02b90 = $(`&lt;div id=&quot;html_96763529b72082ed816b836120e02b90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.564             latitude:34.802             PM2_5:62.60085227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02112c795aac09b4640819e0f7c59024.setContent(html_96763529b72082ed816b836120e02b90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c349c1d3a372d9d13025a9e51fb62047.bindPopup(popup_02112c795aac09b4640819e0f7c59024)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18dc519ca9847b46ebb935b59b99d78a = L.circleMarker(\\n\",\n       \"                [29.315, 110.4417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8605bd55a0644bd44825b5105829233 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_769115cd4e358afc8274063a3532f954 = $(`&lt;div id=&quot;html_769115cd4e358afc8274063a3532f954&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4417             latitude:29.315             PM2_5:28.36478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8605bd55a0644bd44825b5105829233.setContent(html_769115cd4e358afc8274063a3532f954);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18dc519ca9847b46ebb935b59b99d78a.bindPopup(popup_f8605bd55a0644bd44825b5105829233)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44a9c86a2c950be49611bde7523ee29e = L.circleMarker(\\n\",\n       \"                [46.6572, 131.1638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fafdaa6f6bf3e678436f8bd39eabaddd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83896865ea4a21523c3ccf39fb4f16bc = $(`&lt;div id=&quot;html_83896865ea4a21523c3ccf39fb4f16bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1638             latitude:46.6572             PM2_5:28.1755618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fafdaa6f6bf3e678436f8bd39eabaddd.setContent(html_83896865ea4a21523c3ccf39fb4f16bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44a9c86a2c950be49611bde7523ee29e.bindPopup(popup_fafdaa6f6bf3e678436f8bd39eabaddd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fcf7bf96662d7a4b199ec1d835410bdc = L.circleMarker(\\n\",\n       \"                [27.0658, 114.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51188a6011fb1d7449e4659f82e57c89 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d44526c72922399bcff569a3817bcff4 = $(`&lt;div id=&quot;html_d44526c72922399bcff569a3817bcff4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9817             latitude:27.0658             PM2_5:51.02148997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51188a6011fb1d7449e4659f82e57c89.setContent(html_d44526c72922399bcff569a3817bcff4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fcf7bf96662d7a4b199ec1d835410bdc.bindPopup(popup_51188a6011fb1d7449e4659f82e57c89)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06c888f8eb84c903e18b2dd746dd6549 = L.circleMarker(\\n\",\n       \"                [22.9169, 112.0392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_959115551954d15c1102cf428d87c41a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eef58b155539e4a29f4b6b79a5ae3e6f = $(`&lt;div id=&quot;html_eef58b155539e4a29f4b6b79a5ae3e6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0392             latitude:22.9169             PM2_5:32.90555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_959115551954d15c1102cf428d87c41a.setContent(html_eef58b155539e4a29f4b6b79a5ae3e6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06c888f8eb84c903e18b2dd746dd6549.bindPopup(popup_959115551954d15c1102cf428d87c41a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c632996e42c407e9d3c4c0b9ff94a60b = L.circleMarker(\\n\",\n       \"                [23.7369, 109.2317],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_466cdf58707ea830f52a1d7d433bc089 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74940360c9839ba2aef4aa82423c374d = $(`&lt;div id=&quot;html_74940360c9839ba2aef4aa82423c374d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2317             latitude:23.7369             PM2_5:41.42577031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_466cdf58707ea830f52a1d7d433bc089.setContent(html_74940360c9839ba2aef4aa82423c374d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c632996e42c407e9d3c4c0b9ff94a60b.bindPopup(popup_466cdf58707ea830f52a1d7d433bc089)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_179a8ca952e7da761508d94d3b0b86a4 = L.circleMarker(\\n\",\n       \"                [32.6319, 116.8306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b0dcb8e79eab6ffbab83d55555bf74a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1850d3ca1e00a5a9ac145953fec138c = $(`&lt;div id=&quot;html_f1850d3ca1e00a5a9ac145953fec138c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8306             latitude:32.6319             PM2_5:54.37900875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b0dcb8e79eab6ffbab83d55555bf74a.setContent(html_f1850d3ca1e00a5a9ac145953fec138c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_179a8ca952e7da761508d94d3b0b86a4.bindPopup(popup_6b0dcb8e79eab6ffbab83d55555bf74a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6e4d25194757d8caeb325b4e757f80f = L.circleMarker(\\n\",\n       \"                [42.9061, 129.5042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_585ff6da4c7f55ee2c68bff746476182 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a977dd6a319a8862f333ff5314832309 = $(`&lt;div id=&quot;html_a977dd6a319a8862f333ff5314832309&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.5042             latitude:42.9061             PM2_5:20.3913649             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_585ff6da4c7f55ee2c68bff746476182.setContent(html_a977dd6a319a8862f333ff5314832309);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6e4d25194757d8caeb325b4e757f80f.bindPopup(popup_585ff6da4c7f55ee2c68bff746476182)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_183dc3cefc06af69e54daa97a586e6f3 = L.circleMarker(\\n\",\n       \"                [41.8594, 123.9],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_316c561fd0667099e7ceace0bf78b65e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4cd8ac76a05e038bfdfc470f2745eee = $(`&lt;div id=&quot;html_c4cd8ac76a05e038bfdfc470f2745eee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9             latitude:41.8594             PM2_5:36.30779944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_316c561fd0667099e7ceace0bf78b65e.setContent(html_c4cd8ac76a05e038bfdfc470f2745eee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_183dc3cefc06af69e54daa97a586e6f3.bindPopup(popup_316c561fd0667099e7ceace0bf78b65e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f346d0042f5a9bc548cee140f7eda4c = L.circleMarker(\\n\",\n       \"                [29.5867, 115.9936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8487e09a1f9cd3d2210de01beaf0f30a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_321983932d7447a92d72d821605929fa = $(`&lt;div id=&quot;html_321983932d7447a92d72d821605929fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9936             latitude:29.5867             PM2_5:21.53521127             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8487e09a1f9cd3d2210de01beaf0f30a.setContent(html_321983932d7447a92d72d821605929fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f346d0042f5a9bc548cee140f7eda4c.bindPopup(popup_8487e09a1f9cd3d2210de01beaf0f30a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59ad821e9af9e85cc91f6f5043ea7a76 = L.circleMarker(\\n\",\n       \"                [36.0211, 106.2375],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dedf12240fe3a7891a0094bff704eb12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d50add2932f70ed76693b3da62ce6dba = $(`&lt;div id=&quot;html_d50add2932f70ed76693b3da62ce6dba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2375             latitude:36.0211             PM2_5:24.23455056             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dedf12240fe3a7891a0094bff704eb12.setContent(html_d50add2932f70ed76693b3da62ce6dba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59ad821e9af9e85cc91f6f5043ea7a76.bindPopup(popup_dedf12240fe3a7891a0094bff704eb12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a489905b6dd9d3b73c9e0c952a46135 = L.circleMarker(\\n\",\n       \"                [43.1847, 124.3897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0aceebc526bbba1a33f4ba8312ce7ac6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8667e49d4e59af4a7229f7f98bd8c795 = $(`&lt;div id=&quot;html_8667e49d4e59af4a7229f7f98bd8c795&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3897             latitude:43.1847             PM2_5:31.2745098             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0aceebc526bbba1a33f4ba8312ce7ac6.setContent(html_8667e49d4e59af4a7229f7f98bd8c795);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a489905b6dd9d3b73c9e0c952a46135.bindPopup(popup_0aceebc526bbba1a33f4ba8312ce7ac6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f213682bfed4d320e9528fc5cb2d977 = L.circleMarker(\\n\",\n       \"                [35.1764, 113.2464],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50499625ff73620bf40fb59158bc8a70 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed7f2af62931e060fa39e35afc1e95b9 = $(`&lt;div id=&quot;html_ed7f2af62931e060fa39e35afc1e95b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2464             latitude:35.1764             PM2_5:67.43117978             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50499625ff73620bf40fb59158bc8a70.setContent(html_ed7f2af62931e060fa39e35afc1e95b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f213682bfed4d320e9528fc5cb2d977.bindPopup(popup_50499625ff73620bf40fb59158bc8a70)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06fd1c7bbc4904137a4f8b96c4e042cf = L.circleMarker(\\n\",\n       \"                [35.0994, 109.0656],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94d41746e24107a135d3a1af57cbdaef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2043631ceabea16ba720b54eaf5cc43e = $(`&lt;div id=&quot;html_2043631ceabea16ba720b54eaf5cc43e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0656             latitude:35.0994             PM2_5:35.85632184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94d41746e24107a135d3a1af57cbdaef.setContent(html_2043631ceabea16ba720b54eaf5cc43e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06fd1c7bbc4904137a4f8b96c4e042cf.bindPopup(popup_94d41746e24107a135d3a1af57cbdaef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bebbc51971574f15d597332f78324321 = L.circleMarker(\\n\",\n       \"                [30.7819, 111.3296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41da3631b55d263f7bb028a21868a9f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1b04ca5a9b26da20025982d887d0f3a = $(`&lt;div id=&quot;html_d1b04ca5a9b26da20025982d887d0f3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3296             latitude:30.7819             PM2_5:52.59556787             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41da3631b55d263f7bb028a21868a9f4.setContent(html_d1b04ca5a9b26da20025982d887d0f3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bebbc51971574f15d597332f78324321.bindPopup(popup_41da3631b55d263f7bb028a21868a9f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22cffce5f022ab6841d7ea163527c632 = L.circleMarker(\\n\",\n       \"                [25.5035, 103.7897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_061971a1e4421345b6462a0d964d66a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_955015efdd9b90bf58c22711792ee02f = $(`&lt;div id=&quot;html_955015efdd9b90bf58c22711792ee02f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7897             latitude:25.5035             PM2_5:35.22957746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_061971a1e4421345b6462a0d964d66a3.setContent(html_955015efdd9b90bf58c22711792ee02f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22cffce5f022ab6841d7ea163527c632.bindPopup(popup_061971a1e4421345b6462a0d964d66a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_35e5616d11e79c3606e2bfd6030899a4 = L.circleMarker(\\n\",\n       \"                [37.8195, 112.57],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aceedf16a481d79ddb48f77231d9a3d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f741e0a5532b99f778f620877ada27c = $(`&lt;div id=&quot;html_7f741e0a5532b99f778f620877ada27c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.57             latitude:37.8195             PM2_5:62.8782235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aceedf16a481d79ddb48f77231d9a3d9.setContent(html_7f741e0a5532b99f778f620877ada27c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_35e5616d11e79c3606e2bfd6030899a4.bindPopup(popup_aceedf16a481d79ddb48f77231d9a3d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bbee5e0c3664da5c9a54eddc46241020 = L.circleMarker(\\n\",\n       \"                [32.1083, 118.803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99515b422a43f710095f1f9f262f35a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_199f233e45d23608db49fdaccf18e1ec = $(`&lt;div id=&quot;html_199f233e45d23608db49fdaccf18e1ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.803             latitude:32.1083             PM2_5:43.03641457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99515b422a43f710095f1f9f262f35a7.setContent(html_199f233e45d23608db49fdaccf18e1ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bbee5e0c3664da5c9a54eddc46241020.bindPopup(popup_99515b422a43f710095f1f9f262f35a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d5af6d402c79b7f58f99965e69ef566 = L.circleMarker(\\n\",\n       \"                [23.8822, 100.0869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ffc66cc3add6bc2b24b140174aae3fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d100251187fad0e54c576f8eabcda5c = $(`&lt;div id=&quot;html_1d100251187fad0e54c576f8eabcda5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0869             latitude:23.8822             PM2_5:26.72285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ffc66cc3add6bc2b24b140174aae3fe.setContent(html_1d100251187fad0e54c576f8eabcda5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d5af6d402c79b7f58f99965e69ef566.bindPopup(popup_3ffc66cc3add6bc2b24b140174aae3fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72cec911bb3dd25c92e86967500fd804 = L.circleMarker(\\n\",\n       \"                [27.8978, 102.2625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43e126ee979efee3b8ced3a64902f1c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2597307de857cd5ab1dad945d8cc6de = $(`&lt;div id=&quot;html_d2597307de857cd5ab1dad945d8cc6de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2625             latitude:27.8978             PM2_5:21.25218659             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43e126ee979efee3b8ced3a64902f1c1.setContent(html_d2597307de857cd5ab1dad945d8cc6de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72cec911bb3dd25c92e86967500fd804.bindPopup(popup_43e126ee979efee3b8ced3a64902f1c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_401bffda0f675377989bb4e66bf523d2 = L.circleMarker(\\n\",\n       \"                [37.825, 120.747],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f0073d7c8e10f219c2c0cfd39641d15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5efcfa04b4695376a6be75b07938f31a = $(`&lt;div id=&quot;html_5efcfa04b4695376a6be75b07938f31a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.747             latitude:37.825             PM2_5:31.43079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f0073d7c8e10f219c2c0cfd39641d15.setContent(html_5efcfa04b4695376a6be75b07938f31a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_401bffda0f675377989bb4e66bf523d2.bindPopup(popup_1f0073d7c8e10f219c2c0cfd39641d15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbbf722073fa6962c916b56a53b72f94 = L.circleMarker(\\n\",\n       \"                [43.8167, 125.25],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bcbcd0017f126220fed77a0b0a651fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9554c455b2455f46b3a26ec39ad24caa = $(`&lt;div id=&quot;html_9554c455b2455f46b3a26ec39ad24caa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.25             latitude:43.8167             PM2_5:26.91520468             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bcbcd0017f126220fed77a0b0a651fc.setContent(html_9554c455b2455f46b3a26ec39ad24caa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbbf722073fa6962c916b56a53b72f94.bindPopup(popup_8bcbcd0017f126220fed77a0b0a651fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_300272e4615f09c7acce9fa036082571 = L.circleMarker(\\n\",\n       \"                [37.8564, 113.5753],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53f801ba1f1774824856d208ead2c3c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eebba83920c6779e666150e05733ff81 = $(`&lt;div id=&quot;html_eebba83920c6779e666150e05733ff81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5753             latitude:37.8564             PM2_5:55.25140449             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53f801ba1f1774824856d208ead2c3c2.setContent(html_eebba83920c6779e666150e05733ff81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_300272e4615f09c7acce9fa036082571.bindPopup(popup_53f801ba1f1774824856d208ead2c3c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e94d1f10d024848349a36e188f6477bf = L.circleMarker(\\n\",\n       \"                [25.0359, 102.638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1f38daa8f94c0bdba3c014d60019053 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4527e3d04f90e343471572780f04de59 = $(`&lt;div id=&quot;html_4527e3d04f90e343471572780f04de59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.638             latitude:25.0359             PM2_5:31.47645429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1f38daa8f94c0bdba3c014d60019053.setContent(html_4527e3d04f90e343471572780f04de59);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e94d1f10d024848349a36e188f6477bf.bindPopup(popup_c1f38daa8f94c0bdba3c014d60019053)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62d040099363db059381abc7a2634de2 = L.circleMarker(\\n\",\n       \"                [23.1323, 113.3208],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76c262dc35d59ea268aae3dd5a12740e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f76a4c17f1ed90ec23f0ca09aea22f0 = $(`&lt;div id=&quot;html_4f76a4c17f1ed90ec23f0ca09aea22f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3208             latitude:23.1323             PM2_5:35.87222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76c262dc35d59ea268aae3dd5a12740e.setContent(html_4f76a4c17f1ed90ec23f0ca09aea22f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62d040099363db059381abc7a2634de2.bindPopup(popup_76c262dc35d59ea268aae3dd5a12740e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88258ce6a4a705a9d2cc3cab511b32eb = L.circleMarker(\\n\",\n       \"                [40.7136, 120.9092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ef545de39544719d346006d44a5e846 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_597f853148048d9d21ecc2ec8b2a18e9 = $(`&lt;div id=&quot;html_597f853148048d9d21ecc2ec8b2a18e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.9092             latitude:40.7136             PM2_5:38.91316527             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ef545de39544719d346006d44a5e846.setContent(html_597f853148048d9d21ecc2ec8b2a18e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88258ce6a4a705a9d2cc3cab511b32eb.bindPopup(popup_5ef545de39544719d346006d44a5e846)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40955dde4910f15ac56683fe25a784e9 = L.circleMarker(\\n\",\n       \"                [40.9923, 113.1306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aae82d3cb1783c83d6c3d92f5c68565a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bbb794d665e02314270ad5d20676b5d2 = $(`&lt;div id=&quot;html_bbb794d665e02314270ad5d20676b5d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1306             latitude:40.9923             PM2_5:19.8487395             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aae82d3cb1783c83d6c3d92f5c68565a.setContent(html_bbb794d665e02314270ad5d20676b5d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40955dde4910f15ac56683fe25a784e9.bindPopup(popup_aae82d3cb1783c83d6c3d92f5c68565a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e51268cef1906ad43f86354570836a81 = L.circleMarker(\\n\",\n       \"                [31.874, 120.526],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_352e503565727ae9121cba0326c364a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7afc5787d84e930736e8233b0a42ef4 = $(`&lt;div id=&quot;html_b7afc5787d84e930736e8233b0a42ef4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.526             latitude:31.874             PM2_5:37.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_352e503565727ae9121cba0326c364a7.setContent(html_b7afc5787d84e930736e8233b0a42ef4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e51268cef1906ad43f86354570836a81.bindPopup(popup_352e503565727ae9121cba0326c364a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6791df13b01b4316ee7f6db771b0aecc = L.circleMarker(\\n\",\n       \"                [26.0797, 119.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10dbbf7cc24327061e60f541cfc3e595 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2a8bf1b4ee56c4f2eb334cf24b63594 = $(`&lt;div id=&quot;html_d2a8bf1b4ee56c4f2eb334cf24b63594&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.268             latitude:26.0797             PM2_5:25.44662921             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10dbbf7cc24327061e60f541cfc3e595.setContent(html_d2a8bf1b4ee56c4f2eb334cf24b63594);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6791df13b01b4316ee7f6db771b0aecc.bindPopup(popup_10dbbf7cc24327061e60f541cfc3e595)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ffd6ef2d179c5fdd8ced4b79febfecc = L.circleMarker(\\n\",\n       \"                [31.3264, 120.596],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e16fe2f86caccfa5c669f7ffaf874e66 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6efedcd2c8cad7bfd3229bab88085f98 = $(`&lt;div id=&quot;html_6efedcd2c8cad7bfd3229bab88085f98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.596             latitude:31.3264             PM2_5:43.19230769             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e16fe2f86caccfa5c669f7ffaf874e66.setContent(html_6efedcd2c8cad7bfd3229bab88085f98);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ffd6ef2d179c5fdd8ced4b79febfecc.bindPopup(popup_e16fe2f86caccfa5c669f7ffaf874e66)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c67bc8efdfbde181f0bfbbe5a066976f = L.circleMarker(\\n\",\n       \"                [34.3017, 107.0708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d325dc147423b37371a376850fb70b2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8acd67f1236788f2f60691950f841a93 = $(`&lt;div id=&quot;html_8acd67f1236788f2f60691950f841a93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0708             latitude:34.3017             PM2_5:44.9301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d325dc147423b37371a376850fb70b2d.setContent(html_8acd67f1236788f2f60691950f841a93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c67bc8efdfbde181f0bfbbe5a066976f.bindPopup(popup_d325dc147423b37371a376850fb70b2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3aff9656981fb9fd71a06458e7f9468 = L.circleMarker(\\n\",\n       \"                [32.0775, 118.795],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b48ad6b854e208feac4fe619d143f0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f8b4ce019111be837d57540563be807 = $(`&lt;div id=&quot;html_8f8b4ce019111be837d57540563be807&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.795             latitude:32.0775             PM2_5:48.81395349             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b48ad6b854e208feac4fe619d143f0b.setContent(html_8f8b4ce019111be837d57540563be807);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3aff9656981fb9fd71a06458e7f9468.bindPopup(popup_0b48ad6b854e208feac4fe619d143f0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71604cc2b3b986963df3c4dd6eb25b3b = L.circleMarker(\\n\",\n       \"                [46.6462, 131.1516],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_221bd11e1b45b187898b121654c935e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d67090c8e8d947819d20b07152093fd3 = $(`&lt;div id=&quot;html_d67090c8e8d947819d20b07152093fd3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1516             latitude:46.6462             PM2_5:32.94225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_221bd11e1b45b187898b121654c935e6.setContent(html_d67090c8e8d947819d20b07152093fd3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71604cc2b3b986963df3c4dd6eb25b3b.bindPopup(popup_221bd11e1b45b187898b121654c935e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c5cbc2918acb7c5025882b38bdd9936 = L.circleMarker(\\n\",\n       \"                [35.0573, 118.3418],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d24ae0917f21d5aca0515b6605623798 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe5014b1694ab12a161d246e36b64bcb = $(`&lt;div id=&quot;html_fe5014b1694ab12a161d246e36b64bcb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3418             latitude:35.0573             PM2_5:39.93871866             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d24ae0917f21d5aca0515b6605623798.setContent(html_fe5014b1694ab12a161d246e36b64bcb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c5cbc2918acb7c5025882b38bdd9936.bindPopup(popup_d24ae0917f21d5aca0515b6605623798)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46d9494aee253e5568445e25c8212515 = L.circleMarker(\\n\",\n       \"                [23.6936, 113.0425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1d0363bfd3155ef0ca683354c799304 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe29fbc39ec6f1b845898a9377e2eaaa = $(`&lt;div id=&quot;html_fe29fbc39ec6f1b845898a9377e2eaaa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0425             latitude:23.6936             PM2_5:32.96374622             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1d0363bfd3155ef0ca683354c799304.setContent(html_fe29fbc39ec6f1b845898a9377e2eaaa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46d9494aee253e5568445e25c8212515.bindPopup(popup_f1d0363bfd3155ef0ca683354c799304)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39a2edd89511420204077001c80b69da = L.circleMarker(\\n\",\n       \"                [29.4758, 113.2621],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c90fedc57d985a92ee8aaa0ba3f386bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2d43a94d4f0a7aa7ec311ecf578eefc = $(`&lt;div id=&quot;html_f2d43a94d4f0a7aa7ec311ecf578eefc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2621             latitude:29.4758             PM2_5:48.03179191             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c90fedc57d985a92ee8aaa0ba3f386bb.setContent(html_f2d43a94d4f0a7aa7ec311ecf578eefc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39a2edd89511420204077001c80b69da.bindPopup(popup_c90fedc57d985a92ee8aaa0ba3f386bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f19903814c4acc4d61486fcb4e2c4a2e = L.circleMarker(\\n\",\n       \"                [40.6821, 109.8538],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8deba87fd7ed909394425c10898113ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9b0335328b0a7af9c986bf38bdbcde9d = $(`&lt;div id=&quot;html_9b0335328b0a7af9c986bf38bdbcde9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8538             latitude:40.6821             PM2_5:44.97777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8deba87fd7ed909394425c10898113ac.setContent(html_9b0335328b0a7af9c986bf38bdbcde9d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f19903814c4acc4d61486fcb4e2c4a2e.bindPopup(popup_8deba87fd7ed909394425c10898113ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_9312c51fc3ffbadb3fa24e9563f3b15a = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_9312c51fc3ffbadb3fa24e9563f3b15a.color = d3.scale.threshold()\\n\",\n       \"              .domain([4.474930362, 4.73409996408016, 4.993269566160321, 5.252439168240481, 5.511608770320642, 5.770778372400802, 6.029947974480962, 6.2891175765611225, 6.548287178641283, 6.807456780721443, 7.066626382801603, 7.325795984881763, 7.584965586961924, 7.844135189042085, 8.103304791122245, 8.362474393202405, 8.621643995282565, 8.880813597362724, 9.139983199442886, 9.399152801523044, 9.658322403603206, 9.917492005683368, 10.176661607763528, 10.435831209843688, 10.695000811923848, 10.954170414004007, 11.213340016084167, 11.472509618164327, 11.731679220244489, 11.990848822324649, 12.250018424404809, 12.509188026484969, 12.76835762856513, 13.027527230645289, 13.28669683272545, 13.54586643480561, 13.805036036885772, 14.064205638965932, 14.32337524104609, 14.582544843126252, 14.841714445206412, 15.100884047286574, 15.360053649366733, 15.619223251446892, 15.878392853527053, 16.137562455607213, 16.396732057687373, 16.655901659767537, 16.915071261847693, 17.174240863927857, 17.433410466008013, 17.692580068088176, 17.951749670168336, 18.210919272248496, 18.470088874328656, 18.729258476408816, 18.98842807848898, 19.247597680569136, 19.5067672826493, 19.765936884729456, 20.02510648680962, 20.28427608888978, 20.54344569096994, 20.802615293050103, 21.06178489513026, 21.320954497210415, 21.58012409929058, 21.839293701370742, 22.0984633034509, 22.357632905531062, 22.61680250761122, 22.875972109691382, 23.135141711771546, 23.394311313851702, 23.653480915931866, 23.912650518012022, 24.17182012009218, 24.43098972217234, 24.690159324252505, 24.94932892633266, 25.208498528412825, 25.46766813049298, 25.726837732573145, 25.98600733465331, 26.245176936733465, 26.50434653881362, 26.763516140893785, 27.022685742973948, 27.281855345054105, 27.541024947134268, 27.800194549214424, 28.059364151294588, 28.31853375337475, 28.577703355454908, 28.83687295753507, 29.096042559615228, 29.35521216169539, 29.614381763775548, 29.87355136585571, 30.132720967935867, 30.39189057001603, 30.651060172096194, 30.91022977417635, 31.169399376256514, 31.42856897833667, 31.687738580416827, 31.94690818249699, 32.206077784577154, 32.46524738665731, 32.724416988737474, 32.98358659081763, 33.242756192897794, 33.50192579497796, 33.761095397058114, 34.02026499913827, 34.27943460121843, 34.5386042032986, 34.79777380537875, 35.05694340745892, 35.31611300953907, 35.57528261161924, 35.8344522136994, 36.09362181577956, 36.35279141785972, 36.611961019939876, 36.87113062202004, 37.1303002241002, 37.38946982618036, 37.64863942826052, 37.90780903034069, 38.166978632420836, 38.426148234501, 38.685317836581156, 38.94448743866132, 39.20365704074148, 39.46282664282164, 39.7219962449018, 39.98116584698196, 40.24033544906212, 40.499505051142286, 40.75867465322244, 41.017844255302606, 41.27701385738276, 41.536183459462926, 41.79535306154309, 42.054522663623246, 42.31369226570341, 42.572861867783566, 42.83203146986373, 43.091201071943885, 43.35037067402404, 43.609540276104205, 43.86870987818436, 44.127879480264525, 44.38704908234469, 44.646218684424845, 44.90538828650501, 45.164557888585165, 45.42372749066533, 45.68289709274549, 45.94206669482565, 46.20123629690581, 46.46040589898597, 46.71957550106613, 46.978745103146295, 47.23791470522645, 47.497084307306615, 47.75625390938677, 48.015423511466935, 48.27459311354709, 48.53376271562725, 48.79293231770741, 49.05210191978757, 49.31127152186773, 49.570441123947894, 49.82961072602805, 50.088780328108214, 50.34794993018837, 50.607119532268534, 50.8662891343487, 51.125458736428854, 51.38462833850902, 51.643797940589174, 51.90296754266934, 52.1621371447495, 52.42130674682966, 52.68047634890982, 52.93964595098998, 53.19881555307014, 53.4579851551503, 53.71715475723045, 53.97632435931062, 54.23549396139078, 54.49466356347094, 54.7538331655511, 55.01300276763126, 55.27217236971142, 55.53134197179158, 55.79051157387174, 56.0496811759519, 56.30885077803206, 56.56802038011222, 56.82718998219239, 57.08635958427254, 57.34552918635271, 57.60469878843286, 57.863868390513026, 58.12303799259319, 58.382207594673346, 58.6413771967535, 58.90054679883366, 59.15971640091382, 59.418886002993986, 59.67805560507414, 59.937225207154306, 60.19639480923446, 60.455564411314626, 60.71473401339479, 60.973903615474946, 61.23307321755511, 61.492242819635266, 61.75141242171543, 62.01058202379559, 62.26975162587575, 62.52892122795591, 62.78809083003607, 63.04726043211623, 63.306430034196396, 63.565599636276545, 63.82476923835671, 64.08393884043686, 64.34310844251702, 64.60227804459718, 64.86144764667735, 65.12061724875751, 65.37978685083766, 65.63895645291782, 65.89812605499799, 66.15729565707815, 66.41646525915831, 66.67563486123846, 66.93480446331863, 67.19397406539879, 67.45314366747895, 67.71231326955912, 67.97148287163927, 68.23065247371943, 68.4898220757996, 68.74899167787974, 69.00816127995991, 69.26733088204007, 69.52650048412023, 69.7856700862004, 70.04483968828055, 70.30400929036071, 70.56317889244087, 70.82234849452104, 71.08151809660119, 71.34068769868136, 71.59985730076151, 71.85902690284166, 72.11819650492184, 72.37736610700199, 72.63653570908215, 72.8957053111623, 73.15487491324248, 73.41404451532263, 73.6732141174028, 73.93238371948296, 74.19155332156312, 74.45072292364327, 74.70989252572345, 74.9690621278036, 75.22823172988376, 75.48740133196391, 75.74657093404409, 76.00574053612424, 76.2649101382044, 76.52407974028456, 76.78324934236471, 77.04241894444488, 77.30158854652504, 77.5607581486052, 77.81992775068535, 78.07909735276552, 78.33826695484568, 78.59743655692584, 78.85660615900599, 79.11577576108617, 79.37494536316632, 79.63411496524648, 79.89328456732665, 80.15245416940681, 80.41162377148696, 80.67079337356712, 80.92996297564729, 81.18913257772745, 81.4483021798076, 81.70747178188776, 81.96664138396793, 82.22581098604807, 82.48498058812825, 82.7441501902084, 83.00331979228856, 83.26248939436871, 83.52165899644889, 83.78082859852904, 84.0399982006092, 84.29916780268937, 84.55833740476953, 84.81750700684968, 85.07667660892986, 85.33584621101001, 85.59501581309017, 85.85418541517032, 86.1133550172505, 86.37252461933065, 86.6316942214108, 86.89086382349097, 87.15003342557112, 87.40920302765129, 87.66837262973145, 87.92754223181161, 88.18671183389176, 88.44588143597193, 88.70505103805209, 88.96422064013225, 89.2233902422124, 89.48255984429258, 89.74172944637273, 90.0008990484529, 90.26006865053306, 90.51923825261322, 90.77840785469337, 91.03757745677353, 91.2967470588537, 91.55591666093386, 91.81508626301401, 92.07425586509417, 92.33342546717434, 92.59259506925449, 92.85176467133466, 93.11093427341481, 93.37010387549498, 93.62927347757513, 93.8884430796553, 94.14761268173545, 94.40678228381562, 94.66595188589578, 94.92512148797594, 95.18429109005609, 95.44346069213627, 95.70263029421642, 95.96179989629658, 96.22096949837673, 96.48013910045691, 96.73930870253706, 96.99847830461721, 97.25764790669739, 97.51681750877754, 97.7759871108577, 98.03515671293786, 98.29432631501803, 98.55349591709818, 98.81266551917834, 99.0718351212585, 99.33100472333867, 99.59017432541881, 99.84934392749899, 100.10851352957914, 100.3676831316593, 100.62685273373947, 100.88602233581963, 101.14519193789978, 101.40436153997994, 101.66353114206011, 101.92270074414027, 102.18187034622042, 102.44103994830058, 102.70020955038075, 102.9593791524609, 103.21854875454108, 103.47771835662122, 103.73688795870139, 103.99605756078155, 104.25522716286171, 104.51439676494186, 104.77356636702203, 105.03273596910219, 105.29190557118235, 105.5510751732625, 105.81024477534268, 106.06941437742283, 106.328583979503, 106.58775358158316, 106.84692318366332, 107.10609278574347, 107.36526238782362, 107.6244319899038, 107.88360159198395, 108.14277119406411, 108.40194079614427, 108.66111039822444, 108.92028000030459, 109.17944960238476, 109.43861920446491, 109.69778880654508, 109.95695840862523, 110.2161280107054, 110.47529761278555, 110.73446721486572, 110.99363681694588, 111.25280641902604, 111.5119760211062, 111.77114562318637, 112.03031522526652, 112.28948482734668, 112.54865442942683, 112.807824031507, 113.06699363358716, 113.32616323566731, 113.58533283774749, 113.84450243982764, 114.1036720419078, 114.36284164398796, 114.62201124606813, 114.88118084814828, 115.14035045022844, 115.3995200523086, 115.65868965438877, 115.91785925646892, 116.1770288585491, 116.43619846062924, 116.6953680627094, 116.95453766478957, 117.21370726686973, 117.47287686894988, 117.73204647103003, 117.99121607311021, 118.25038567519036, 118.50955527727052, 118.76872487935069, 119.02789448143085, 119.287064083511, 119.54623368559118, 119.80540328767133, 120.06457288975149, 120.32374249183164, 120.58291209391182, 120.84208169599196, 121.10125129807213, 121.36042090015229, 121.61959050223246, 121.8787601043126, 122.13792970639278, 122.39709930847293, 122.65626891055308, 122.91543851263324, 123.17460811471341, 123.43377771679357, 123.69294731887372, 123.9521169209539, 124.21128652303405, 124.47045612511421, 124.72962572719437, 124.98879532927454, 125.24796493135469, 125.50713453343485, 125.76630413551501, 126.02547373759518, 126.28464333967533, 126.5438129417555, 126.80298254383565, 127.06215214591582, 127.32132174799598, 127.58049135007614, 127.8396609521563, 128.09883055423646, 128.35800015631662, 128.61716975839678, 128.87633936047695, 129.1355089625571, 129.39467856463727, 129.6538481667174, 129.9130177687976, 130.17218737087774, 130.4313569729579, 130.69052657503806, 130.94969617711823, 131.2088657791984, 131.46803538127855, 131.72720498335872, 131.98637458543888, 132.24554418751902, 132.5047137895992, 132.76388339167937, 133.0230529937595, 133.28222259583967, 133.54139219791983, 133.8005618])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_9312c51fc3ffbadb3fa24e9563f3b15a.x = d3.scale.linear()\\n\",\n       \"              .domain([4.474930362, 133.8005618])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_9312c51fc3ffbadb3fa24e9563f3b15a.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_9312c51fc3ffbadb3fa24e9563f3b15a.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_9312c51fc3ffbadb3fa24e9563f3b15a.legend.addTo(map_d0b8192593038d17d9efb406c511f44b);\\n\",\n       \"\\n\",\n       \"    color_map_9312c51fc3ffbadb3fa24e9563f3b15a.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_9312c51fc3ffbadb3fa24e9563f3b15a.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([4.474930362, &#x27;&#x27;, &#x27;&#x27;, 23.873775077700003, &#x27;&#x27;, &#x27;&#x27;, 43.272619793400004, &#x27;&#x27;, &#x27;&#x27;, 62.6714645091, &#x27;&#x27;, &#x27;&#x27;, 82.0703092248, &#x27;&#x27;, &#x27;&#x27;, 101.46915394049998, &#x27;&#x27;, &#x27;&#x27;, 120.86799865619999, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_9312c51fc3ffbadb3fa24e9563f3b15a.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_9312c51fc3ffbadb3fa24e9563f3b15a.g = color_map_9312c51fc3ffbadb3fa24e9563f3b15a.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_9312c51fc3ffbadb3fa24e9563f3b15a.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_9312c51fc3ffbadb3fa24e9563f3b15a.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_9312c51fc3ffbadb3fa24e9563f3b15a.x(color_map_9312c51fc3ffbadb3fa24e9563f3b15a.color.domain()[i - 1]) : color_map_9312c51fc3ffbadb3fa24e9563f3b15a.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_9312c51fc3ffbadb3fa24e9563f3b15a.color.domain().length ? color_map_9312c51fc3ffbadb3fa24e9563f3b15a.x(color_map_9312c51fc3ffbadb3fa24e9563f3b15a.color.domain()[i]) : color_map_9312c51fc3ffbadb3fa24e9563f3b15a.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_9312c51fc3ffbadb3fa24e9563f3b15a.g.call(color_map_9312c51fc3ffbadb3fa24e9563f3b15a.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1db1acc1950>\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.display_dataset(name='train', y_column='PM2_5', colors=[\\n\",\n    \"                           'blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Validation\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"id\": \"E843FFA5898943AD85EC92BE4D2D1E2C\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_5d80a72486c9e0ddb37bdba91bb4bda6 {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_5d80a72486c9e0ddb37bdba91bb4bda6&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_5d80a72486c9e0ddb37bdba91bb4bda6 = L.map(\\n\",\n       \"                &quot;map_5d80a72486c9e0ddb37bdba91bb4bda6&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_b271d1a540494d365127965b3913e659 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_b271d1a540494d365127965b3913e659.addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f420ff6e3f843942e1611b075952902f = L.circleMarker(\\n\",\n       \"                [30.8388, 106.1087],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f5255ba6c3b4f17c173e7d52201a5cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ce3ef05dd7a40e0e255fd612205ac4e = $(`&lt;div id=&quot;html_4ce3ef05dd7a40e0e255fd612205ac4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1087             latitude:30.8388             PM2_5:42.04634831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f5255ba6c3b4f17c173e7d52201a5cb.setContent(html_4ce3ef05dd7a40e0e255fd612205ac4e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f420ff6e3f843942e1611b075952902f.bindPopup(popup_3f5255ba6c3b4f17c173e7d52201a5cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9d8af7ffe68bc5176e659ba6e89549f = L.circleMarker(\\n\",\n       \"                [36.1758, 117.1081],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39f0715b61823ea031876831f32a71f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0eb2da4e87b0e1947f1aace9620fe765 = $(`&lt;div id=&quot;html_0eb2da4e87b0e1947f1aace9620fe765&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1081             latitude:36.1758             PM2_5:49.33147632             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39f0715b61823ea031876831f32a71f3.setContent(html_0eb2da4e87b0e1947f1aace9620fe765);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9d8af7ffe68bc5176e659ba6e89549f.bindPopup(popup_39f0715b61823ea031876831f32a71f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3ab4abe54784de4b6ea7cb26b1d6326 = L.circleMarker(\\n\",\n       \"                [39.1067, 117.1941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7eba57e290834081c8b75fb15207d41f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77aff1a9472f6aaaf6f66b3e7c6e37d6 = $(`&lt;div id=&quot;html_77aff1a9472f6aaaf6f66b3e7c6e37d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1941             latitude:39.1067             PM2_5:47.90083799             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7eba57e290834081c8b75fb15207d41f.setContent(html_77aff1a9472f6aaaf6f66b3e7c6e37d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3ab4abe54784de4b6ea7cb26b1d6326.bindPopup(popup_7eba57e290834081c8b75fb15207d41f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84a7dc118bc96d067e92437f02dd2a9f = L.circleMarker(\\n\",\n       \"                [32.1142, 112.1825],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47ca95331b82d9efd569dfb5dec1f3fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2daa4b14f78bce84b79f87d0383b19ea = $(`&lt;div id=&quot;html_2daa4b14f78bce84b79f87d0383b19ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1825             latitude:32.1142             PM2_5:62.29295775             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47ca95331b82d9efd569dfb5dec1f3fc.setContent(html_2daa4b14f78bce84b79f87d0383b19ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84a7dc118bc96d067e92437f02dd2a9f.bindPopup(popup_47ca95331b82d9efd569dfb5dec1f3fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95a42ba19d4a9a3c5dad4e5968e3ea52 = L.circleMarker(\\n\",\n       \"                [36.792, 119.952],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_709c87660d8cdd473a25ab50db32f9e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94ed78015338b8d2b11228cc67289907 = $(`&lt;div id=&quot;html_94ed78015338b8d2b11228cc67289907&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.952             latitude:36.792             PM2_5:32.28248588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_709c87660d8cdd473a25ab50db32f9e8.setContent(html_94ed78015338b8d2b11228cc67289907);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95a42ba19d4a9a3c5dad4e5968e3ea52.bindPopup(popup_709c87660d8cdd473a25ab50db32f9e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c212dd4c686f0ca5d080773049c022c = L.circleMarker(\\n\",\n       \"                [40.6532, 109.8756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f63e7a1ebc0121fa647d7ca0dc5b6baf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_693c914abcf4a25b96b424c08cc19528 = $(`&lt;div id=&quot;html_693c914abcf4a25b96b424c08cc19528&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8756             latitude:40.6532             PM2_5:45.81005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f63e7a1ebc0121fa647d7ca0dc5b6baf.setContent(html_693c914abcf4a25b96b424c08cc19528);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c212dd4c686f0ca5d080773049c022c.bindPopup(popup_f63e7a1ebc0121fa647d7ca0dc5b6baf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b03625f99f56e819d8db98e57dbcd77 = L.circleMarker(\\n\",\n       \"                [36.0875, 111.5025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02566ebdc2d9c48e499431abc0180f2e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3601b39373023419dcdd2031d3143ef4 = $(`&lt;div id=&quot;html_3601b39373023419dcdd2031d3143ef4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5025             latitude:36.0875             PM2_5:81.15416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02566ebdc2d9c48e499431abc0180f2e.setContent(html_3601b39373023419dcdd2031d3143ef4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b03625f99f56e819d8db98e57dbcd77.bindPopup(popup_02566ebdc2d9c48e499431abc0180f2e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac06713fe2a5fc3cdc58cc5a483e6b4c = L.circleMarker(\\n\",\n       \"                [38.8343, 105.6775],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_062b83857534246847fe860af6010094 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3614664fd305ba8ca05397c7080f3f48 = $(`&lt;div id=&quot;html_3614664fd305ba8ca05397c7080f3f48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6775             latitude:38.8343             PM2_5:29.56703911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_062b83857534246847fe860af6010094.setContent(html_3614664fd305ba8ca05397c7080f3f48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac06713fe2a5fc3cdc58cc5a483e6b4c.bindPopup(popup_062b83857534246847fe860af6010094)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_987eea5d437b88548765ff357901f492 = L.circleMarker(\\n\",\n       \"                [22.7906, 108.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a005c96bcf0808de19b0dbf626b3e479 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46f1d5485e16506a6279429f71b3ceeb = $(`&lt;div id=&quot;html_46f1d5485e16506a6279429f71b3ceeb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.439             latitude:22.7906             PM2_5:33.82303371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a005c96bcf0808de19b0dbf626b3e479.setContent(html_46f1d5485e16506a6279429f71b3ceeb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_987eea5d437b88548765ff357901f492.bindPopup(popup_a005c96bcf0808de19b0dbf626b3e479)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38a407808822da6ae3ad077eee64b041 = L.circleMarker(\\n\",\n       \"                [37.4489, 116.3189],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a68174e93e505ac53785012fa24640dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f9e409d712d81e1526c09ecfcafc29f = $(`&lt;div id=&quot;html_4f9e409d712d81e1526c09ecfcafc29f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3189             latitude:37.4489             PM2_5:57.425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a68174e93e505ac53785012fa24640dd.setContent(html_4f9e409d712d81e1526c09ecfcafc29f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38a407808822da6ae3ad077eee64b041.bindPopup(popup_a68174e93e505ac53785012fa24640dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e612b3fafed146b673cf8e49ae790189 = L.circleMarker(\\n\",\n       \"                [38.44139, 106.2275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56eb4f333576ee7646a31f2b787e5380 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a47aada0586f659b13ec0d736cc83b9 = $(`&lt;div id=&quot;html_5a47aada0586f659b13ec0d736cc83b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2275             latitude:38.44139             PM2_5:34.7254902             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56eb4f333576ee7646a31f2b787e5380.setContent(html_5a47aada0586f659b13ec0d736cc83b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e612b3fafed146b673cf8e49ae790189.bindPopup(popup_56eb4f333576ee7646a31f2b787e5380)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e77f4df5d2f07d7e21052dc6cb259e68 = L.circleMarker(\\n\",\n       \"                [23.01277778, 113.7944444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16f71aa074333335e220a5f5f11505ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0f7a30036bb688d83064e094b6d7fca = $(`&lt;div id=&quot;html_a0f7a30036bb688d83064e094b6d7fca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7944444             latitude:23.01277778             PM2_5:33.54142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16f71aa074333335e220a5f5f11505ae.setContent(html_a0f7a30036bb688d83064e094b6d7fca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e77f4df5d2f07d7e21052dc6cb259e68.bindPopup(popup_16f71aa074333335e220a5f5f11505ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_278d02fa9e8f19047996949662ac8084 = L.circleMarker(\\n\",\n       \"                [42.2725, 118.9572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49e3e38f2e250e061b101f70999b751e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38eb0f4f0cf5b0e705c2a5f3e1663e0d = $(`&lt;div id=&quot;html_38eb0f4f0cf5b0e705c2a5f3e1663e0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9572             latitude:42.2725             PM2_5:25.29608939             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49e3e38f2e250e061b101f70999b751e.setContent(html_38eb0f4f0cf5b0e705c2a5f3e1663e0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_278d02fa9e8f19047996949662ac8084.bindPopup(popup_49e3e38f2e250e061b101f70999b751e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_180c3f5ae3b2b3d59faec379813f73ff = L.circleMarker(\\n\",\n       \"                [34.7545, 113.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_363d55ad27519373e6efef96ba54d826 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2be15555cfc417d52f4a7d365361a10f = $(`&lt;div id=&quot;html_2be15555cfc417d52f4a7d365361a10f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.681             latitude:34.7545             PM2_5:65.23728814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_363d55ad27519373e6efef96ba54d826.setContent(html_2be15555cfc417d52f4a7d365361a10f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_180c3f5ae3b2b3d59faec379813f73ff.bindPopup(popup_363d55ad27519373e6efef96ba54d826)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80e2fbdd26d285f82b1e2ffe7e011b83 = L.circleMarker(\\n\",\n       \"                [31.1278, 97.1804],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76006b1941216a64488404f76d9ad73c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e71cbdb0813f1653dd9a7f50b6d9f6a7 = $(`&lt;div id=&quot;html_e71cbdb0813f1653dd9a7f50b6d9f6a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.1804             latitude:31.1278             PM2_5:19.72532895             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76006b1941216a64488404f76d9ad73c.setContent(html_e71cbdb0813f1653dd9a7f50b6d9f6a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80e2fbdd26d285f82b1e2ffe7e011b83.bindPopup(popup_76006b1941216a64488404f76d9ad73c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ab8e276fe5f9beb39db921dac2c1909 = L.circleMarker(\\n\",\n       \"                [44.3336, 84.8983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbe19a4e9b9fbe3770d35755405db621 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17f9228f4279d0ee0bd9e9f4484cf11e = $(`&lt;div id=&quot;html_17f9228f4279d0ee0bd9e9f4484cf11e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8983             latitude:44.3336             PM2_5:34.77683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbe19a4e9b9fbe3770d35755405db621.setContent(html_17f9228f4279d0ee0bd9e9f4484cf11e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ab8e276fe5f9beb39db921dac2c1909.bindPopup(popup_dbe19a4e9b9fbe3770d35755405db621)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd6ca0275e16935d0333379804d22066 = L.circleMarker(\\n\",\n       \"                [36.6739, 117.114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f09c8637cd41493fa5576596671e1a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fda99988e52e144990d1a29f93a4403a = $(`&lt;div id=&quot;html_fda99988e52e144990d1a29f93a4403a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.114             latitude:36.6739             PM2_5:50.28088235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f09c8637cd41493fa5576596671e1a9.setContent(html_fda99988e52e144990d1a29f93a4403a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd6ca0275e16935d0333379804d22066.bindPopup(popup_5f09c8637cd41493fa5576596671e1a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a4cb3046fc8712db1263bfc08b404ea = L.circleMarker(\\n\",\n       \"                [33.965, 118.283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2befb3de3e053f218a3d7bff90c27b60 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97ace21073fab8b979f8a09d95319347 = $(`&lt;div id=&quot;html_97ace21073fab8b979f8a09d95319347&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.283             latitude:33.965             PM2_5:55.98459384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2befb3de3e053f218a3d7bff90c27b60.setContent(html_97ace21073fab8b979f8a09d95319347);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a4cb3046fc8712db1263bfc08b404ea.bindPopup(popup_2befb3de3e053f218a3d7bff90c27b60)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5af7ee4061d954854c9c659854e7e418 = L.circleMarker(\\n\",\n       \"                [35.259, 113.1992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d7ad2a31e7ab8d0f5e21e4fd765ca26c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d5cf39a05848e86180f30c4f381dcef = $(`&lt;div id=&quot;html_0d5cf39a05848e86180f30c4f381dcef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1992             latitude:35.259             PM2_5:66.3319209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d7ad2a31e7ab8d0f5e21e4fd765ca26c.setContent(html_0d5cf39a05848e86180f30c4f381dcef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5af7ee4061d954854c9c659854e7e418.bindPopup(popup_d7ad2a31e7ab8d0f5e21e4fd765ca26c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b35f3455aae0a39fa116c362ea96bed = L.circleMarker(\\n\",\n       \"                [31.56, 120.294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d136948fcc65f99c8624822283fdd77c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44fc5c8fe679a38b62b652a6b1a97ffe = $(`&lt;div id=&quot;html_44fc5c8fe679a38b62b652a6b1a97ffe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.294             latitude:31.56             PM2_5:43.77966102             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d136948fcc65f99c8624822283fdd77c.setContent(html_44fc5c8fe679a38b62b652a6b1a97ffe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b35f3455aae0a39fa116c362ea96bed.bindPopup(popup_d136948fcc65f99c8624822283fdd77c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_919fc3aa5fa3f23d42303618e0a44d4a = L.circleMarker(\\n\",\n       \"                [24.3702, 102.5389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20512b9420283783b68e01d90ef9307b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_784dabb313cc4ebccb4c5e1f7fbafec3 = $(`&lt;div id=&quot;html_784dabb313cc4ebccb4c5e1f7fbafec3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5389             latitude:24.3702             PM2_5:29.84240688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20512b9420283783b68e01d90ef9307b.setContent(html_784dabb313cc4ebccb4c5e1f7fbafec3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_919fc3aa5fa3f23d42303618e0a44d4a.bindPopup(popup_20512b9420283783b68e01d90ef9307b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71c7254b97746648c68fc11bafa97eda = L.circleMarker(\\n\",\n       \"                [41.7089, 123.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45fb63d6d94f40f13213cf778c780896 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14d609620572beaf977043260aae81b3 = $(`&lt;div id=&quot;html_14d609620572beaf977043260aae81b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.439             latitude:41.7089             PM2_5:36.12638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45fb63d6d94f40f13213cf778c780896.setContent(html_14d609620572beaf977043260aae81b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71c7254b97746648c68fc11bafa97eda.bindPopup(popup_45fb63d6d94f40f13213cf778c780896)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52e46a3b87e2a7caa2da79a52e1071b2 = L.circleMarker(\\n\",\n       \"                [30.2819, 109.4689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b072fedea1aec2a243fbc321b7b3bf5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_630faa042126a587616aa4ca7e01462a = $(`&lt;div id=&quot;html_630faa042126a587616aa4ca7e01462a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4689             latitude:30.2819             PM2_5:41.53792135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b072fedea1aec2a243fbc321b7b3bf5f.setContent(html_630faa042126a587616aa4ca7e01462a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52e46a3b87e2a7caa2da79a52e1071b2.bindPopup(popup_b072fedea1aec2a243fbc321b7b3bf5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_701fb8ee7515aa2694a103fccd05a2a7 = L.circleMarker(\\n\",\n       \"                [28.5819, 112.3744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85f84f8dbf55b61c3681ee66a94a6ec8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c06ead89aedb617c7416229482b78ce6 = $(`&lt;div id=&quot;html_c06ead89aedb617c7416229482b78ce6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3744             latitude:28.5819             PM2_5:32.59357542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85f84f8dbf55b61c3681ee66a94a6ec8.setContent(html_c06ead89aedb617c7416229482b78ce6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_701fb8ee7515aa2694a103fccd05a2a7.bindPopup(popup_85f84f8dbf55b61c3681ee66a94a6ec8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08f315747894a86d09c6499aa684d1e3 = L.circleMarker(\\n\",\n       \"                [24.7121, 108.2134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae6aa41869dbcbed1d774892156d54ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba965ef1946e0ec0b4c9b51e80f7663e = $(`&lt;div id=&quot;html_ba965ef1946e0ec0b4c9b51e80f7663e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.2134             latitude:24.7121             PM2_5:28.12883436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae6aa41869dbcbed1d774892156d54ee.setContent(html_ba965ef1946e0ec0b4c9b51e80f7663e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08f315747894a86d09c6499aa684d1e3.bindPopup(popup_ae6aa41869dbcbed1d774892156d54ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25088a3b2ed0420e02f1891dcdb91153 = L.circleMarker(\\n\",\n       \"                [43.768, 87.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae4e2d47bb19b2a08cb19040addd7603 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_451507489a23210a850a8c10662d2c37 = $(`&lt;div id=&quot;html_451507489a23210a850a8c10662d2c37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6046             latitude:43.768             PM2_5:53.62608696             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae4e2d47bb19b2a08cb19040addd7603.setContent(html_451507489a23210a850a8c10662d2c37);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25088a3b2ed0420e02f1891dcdb91153.bindPopup(popup_ae4e2d47bb19b2a08cb19040addd7603)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7aaba6b7618ba3f21d6bdb7d505891e3 = L.circleMarker(\\n\",\n       \"                [32.9444, 117.3575],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d66ec215a5675c31883047842ce8eec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0585893ce833e9cd019cb41c70717647 = $(`&lt;div id=&quot;html_0585893ce833e9cd019cb41c70717647&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3575             latitude:32.9444             PM2_5:63.05042017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d66ec215a5675c31883047842ce8eec.setContent(html_0585893ce833e9cd019cb41c70717647);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7aaba6b7618ba3f21d6bdb7d505891e3.bindPopup(popup_7d66ec215a5675c31883047842ce8eec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef6613ac34b856f8b1164b301a3114d0 = L.circleMarker(\\n\",\n       \"                [23.08, 114.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98e8bf5f6c0d20dfb2f99eaeb37c95b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b51532975764f2a79ac506941c678539 = $(`&lt;div id=&quot;html_b51532975764f2a79ac506941c678539&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4053             latitude:23.08             PM2_5:28.84733894             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98e8bf5f6c0d20dfb2f99eaeb37c95b3.setContent(html_b51532975764f2a79ac506941c678539);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef6613ac34b856f8b1164b301a3114d0.bindPopup(popup_98e8bf5f6c0d20dfb2f99eaeb37c95b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bbc624c1d6aea0479d5af304955b2bf = L.circleMarker(\\n\",\n       \"                [23.2783, 113.568],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fac406513c9e8446b4a3103b17117bd0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1f03a8b12bcf39ad187f61f415e0c30 = $(`&lt;div id=&quot;html_c1f03a8b12bcf39ad187f61f415e0c30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.568             latitude:23.2783             PM2_5:28.38128492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fac406513c9e8446b4a3103b17117bd0.setContent(html_c1f03a8b12bcf39ad187f61f415e0c30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bbc624c1d6aea0479d5af304955b2bf.bindPopup(popup_fac406513c9e8446b4a3103b17117bd0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ffda7d0c1fdba487a99d2f989bee5c4 = L.circleMarker(\\n\",\n       \"                [24.9624, 102.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6015f417661902e8e3456e9491d7f9ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24ec4d97b27053c894bfe8bc8d2f001b = $(`&lt;div id=&quot;html_24ec4d97b27053c894bfe8bc8d2f001b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.625             latitude:24.9624             PM2_5:26.83903134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6015f417661902e8e3456e9491d7f9ed.setContent(html_24ec4d97b27053c894bfe8bc8d2f001b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ffda7d0c1fdba487a99d2f989bee5c4.bindPopup(popup_6015f417661902e8e3456e9491d7f9ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec52eb11413a6be79a6e1f6f8ea21c85 = L.circleMarker(\\n\",\n       \"                [32.6028, 116.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3fca660e929284877bfa00a57962d56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_16b5a0bef81f065be45d4e01c62a3d92 = $(`&lt;div id=&quot;html_16b5a0bef81f065be45d4e01c62a3d92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8556             latitude:32.6028             PM2_5:56.07520891             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3fca660e929284877bfa00a57962d56.setContent(html_16b5a0bef81f065be45d4e01c62a3d92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec52eb11413a6be79a6e1f6f8ea21c85.bindPopup(popup_c3fca660e929284877bfa00a57962d56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66e669f20cce8839675abc6c0a6f5acc = L.circleMarker(\\n\",\n       \"                [34.3708, 107.1586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e12248a398ac4c6f71d6af3e9b30e45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e815f73bd894dae463a5556bad57e4e8 = $(`&lt;div id=&quot;html_e815f73bd894dae463a5556bad57e4e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1586             latitude:34.3708             PM2_5:43.64899713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e12248a398ac4c6f71d6af3e9b30e45.setContent(html_e815f73bd894dae463a5556bad57e4e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66e669f20cce8839675abc6c0a6f5acc.bindPopup(popup_3e12248a398ac4c6f71d6af3e9b30e45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3066cff26431975a708ae16a1a997b6 = L.circleMarker(\\n\",\n       \"                [45.61, 126.615],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b482e1ad7ddd10a4e4cc355d6e33939 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc663cd3fd94911d5fda5db570827480 = $(`&lt;div id=&quot;html_cc663cd3fd94911d5fda5db570827480&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.615             latitude:45.61             PM2_5:34.97091413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b482e1ad7ddd10a4e4cc355d6e33939.setContent(html_cc663cd3fd94911d5fda5db570827480);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3066cff26431975a708ae16a1a997b6.bindPopup(popup_1b482e1ad7ddd10a4e4cc355d6e33939)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_359fb9e48ceb61e599d063a8f1d7653d = L.circleMarker(\\n\",\n       \"                [40.1194, 124.3678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad65aa5cc7251fe1cf4dacee8036918f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e5570992ce8c92b817bb0421e716583 = $(`&lt;div id=&quot;html_9e5570992ce8c92b817bb0421e716583&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3678             latitude:40.1194             PM2_5:22.3557423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad65aa5cc7251fe1cf4dacee8036918f.setContent(html_9e5570992ce8c92b817bb0421e716583);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_359fb9e48ceb61e599d063a8f1d7653d.bindPopup(popup_ad65aa5cc7251fe1cf4dacee8036918f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f3a62290bf93c6214a3f159dd168110 = L.circleMarker(\\n\",\n       \"                [41.0228, 123.1289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1479718f4a1e65879d973e7594d4deaa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2938b113d046ebb8a97fb9793d87a78 = $(`&lt;div id=&quot;html_c2938b113d046ebb8a97fb9793d87a78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1289             latitude:41.0228             PM2_5:27.61384615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1479718f4a1e65879d973e7594d4deaa.setContent(html_c2938b113d046ebb8a97fb9793d87a78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f3a62290bf93c6214a3f159dd168110.bindPopup(popup_1479718f4a1e65879d973e7594d4deaa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2ddc0e130d76d86a94d5e9a7a806255 = L.circleMarker(\\n\",\n       \"                [31.238, 121.4],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_073900713908317cd3e36ada4836d420 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a422213764f7f26a3fbc8d4de22b420 = $(`&lt;div id=&quot;html_2a422213764f7f26a3fbc8d4de22b420&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.4             latitude:31.238             PM2_5:40.8079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_073900713908317cd3e36ada4836d420.setContent(html_2a422213764f7f26a3fbc8d4de22b420);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2ddc0e130d76d86a94d5e9a7a806255.bindPopup(popup_073900713908317cd3e36ada4836d420)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44163d58073b8c2db61f238b322573e6 = L.circleMarker(\\n\",\n       \"                [30.2456, 120.127],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b69ead2e1b0e3725d09edf49c6607b3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96f36958caf1b3703b9417e51973b051 = $(`&lt;div id=&quot;html_96f36958caf1b3703b9417e51973b051&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.127             latitude:30.2456             PM2_5:39.34916201             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b69ead2e1b0e3725d09edf49c6607b3d.setContent(html_96f36958caf1b3703b9417e51973b051);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44163d58073b8c2db61f238b322573e6.bindPopup(popup_b69ead2e1b0e3725d09edf49c6607b3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_473a0c319ef6ebd7f2be6e14f4ddc732 = L.circleMarker(\\n\",\n       \"                [38.5061, 102.1708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2935237a455fbb9c4ed68d9807e104b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ebda69b1c2e336cdd40939f19b47229 = $(`&lt;div id=&quot;html_3ebda69b1c2e336cdd40939f19b47229&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1708             latitude:38.5061             PM2_5:24.38687151             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2935237a455fbb9c4ed68d9807e104b.setContent(html_3ebda69b1c2e336cdd40939f19b47229);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_473a0c319ef6ebd7f2be6e14f4ddc732.bindPopup(popup_c2935237a455fbb9c4ed68d9807e104b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40dad141b09fd5551032b152ba783866 = L.circleMarker(\\n\",\n       \"                [36.7339, 119.0841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68f4b6e92c1c7f48f271db89fc0d5802 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3a395b6efa4228b74abe1882f2cf93d = $(`&lt;div id=&quot;html_a3a395b6efa4228b74abe1882f2cf93d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0841             latitude:36.7339             PM2_5:55.09861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68f4b6e92c1c7f48f271db89fc0d5802.setContent(html_a3a395b6efa4228b74abe1882f2cf93d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40dad141b09fd5551032b152ba783866.bindPopup(popup_68f4b6e92c1c7f48f271db89fc0d5802)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ded15677e1b5b8f62c0eb3a13128ee5a = L.circleMarker(\\n\",\n       \"                [32.2786, 118.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a01e029538010a6a32755b674ee49c30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_790f3c134ebafc8bc421d9881bdccbae = $(`&lt;div id=&quot;html_790f3c134ebafc8bc421d9881bdccbae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3244             latitude:32.2786             PM2_5:52.09888579             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a01e029538010a6a32755b674ee49c30.setContent(html_790f3c134ebafc8bc421d9881bdccbae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ded15677e1b5b8f62c0eb3a13128ee5a.bindPopup(popup_a01e029538010a6a32755b674ee49c30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eae9c87cb3a1997e5bd5ccdc7a46daa7 = L.circleMarker(\\n\",\n       \"                [33.8399, 115.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b17c73258a924bd38e45452566639d56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b8407f5fa5a51bafef5d007f5a84d60b = $(`&lt;div id=&quot;html_b8407f5fa5a51bafef5d007f5a84d60b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8067             latitude:33.8399             PM2_5:53.26123596             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b17c73258a924bd38e45452566639d56.setContent(html_b8407f5fa5a51bafef5d007f5a84d60b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eae9c87cb3a1997e5bd5ccdc7a46daa7.bindPopup(popup_b17c73258a924bd38e45452566639d56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a273e99eb059bcd79cd98191d4635b22 = L.circleMarker(\\n\",\n       \"                [30.0475, 101.9603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_542c455085646f5e41e122487008ca05 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb8350489036c2da1df9c08356df8473 = $(`&lt;div id=&quot;html_eb8350489036c2da1df9c08356df8473&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9603             latitude:30.0475             PM2_5:15.21648045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_542c455085646f5e41e122487008ca05.setContent(html_eb8350489036c2da1df9c08356df8473);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a273e99eb059bcd79cd98191d4635b22.bindPopup(popup_542c455085646f5e41e122487008ca05)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f6ebb94eff72fa0eee09f862dbd4a24 = L.circleMarker(\\n\",\n       \"                [37.9097, 114.3541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_088aef32f7ac4e9d122294fd5e2824ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0fdccd0269f605bb85dcaea70162cbc7 = $(`&lt;div id=&quot;html_0fdccd0269f605bb85dcaea70162cbc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3541             latitude:37.9097             PM2_5:52.41044776             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_088aef32f7ac4e9d122294fd5e2824ab.setContent(html_0fdccd0269f605bb85dcaea70162cbc7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f6ebb94eff72fa0eee09f862dbd4a24.bindPopup(popup_088aef32f7ac4e9d122294fd5e2824ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07ee1f7291e394c47bfa8cf0d536682f = L.circleMarker(\\n\",\n       \"                [24.6967, 108.1009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2da0d1605cd49f0ecf2ef362121dd1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d305694a16d8b598e4befd1ff2c38f81 = $(`&lt;div id=&quot;html_d305694a16d8b598e4befd1ff2c38f81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.1009             latitude:24.6967             PM2_5:32.43905817             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2da0d1605cd49f0ecf2ef362121dd1b.setContent(html_d305694a16d8b598e4befd1ff2c38f81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07ee1f7291e394c47bfa8cf0d536682f.bindPopup(popup_f2da0d1605cd49f0ecf2ef362121dd1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37c84bc3c652eabcb14253d225ae7e85 = L.circleMarker(\\n\",\n       \"                [23.6706, 116.6447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1c28992a03b0bd15576b455bed31c3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_faafcf5946cc697c91ad7b38864206a8 = $(`&lt;div id=&quot;html_faafcf5946cc697c91ad7b38864206a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6447             latitude:23.6706             PM2_5:26.14225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1c28992a03b0bd15576b455bed31c3b.setContent(html_faafcf5946cc697c91ad7b38864206a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37c84bc3c652eabcb14253d225ae7e85.bindPopup(popup_d1c28992a03b0bd15576b455bed31c3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea5adc19d25d1fc2701070734386e444 = L.circleMarker(\\n\",\n       \"                [33.0323, 107.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af0cced40e09e8f1d5094d3b1f28d808 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f7fef99b7b1f9385f09898f1b672ecb = $(`&lt;div id=&quot;html_8f7fef99b7b1f9385f09898f1b672ecb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.007             latitude:33.0323             PM2_5:47.88611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af0cced40e09e8f1d5094d3b1f28d808.setContent(html_8f7fef99b7b1f9385f09898f1b672ecb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea5adc19d25d1fc2701070734386e444.bindPopup(popup_af0cced40e09e8f1d5094d3b1f28d808)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7839c46d84801507b6d286b29edfd0fa = L.circleMarker(\\n\",\n       \"                [25.442, 119.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51561ea7218a5287f5c2cef4a1650b7b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6945b69edeb720eefe2b3cbd0db96b54 = $(`&lt;div id=&quot;html_6945b69edeb720eefe2b3cbd0db96b54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0156             latitude:25.442             PM2_5:28.97338936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51561ea7218a5287f5c2cef4a1650b7b.setContent(html_6945b69edeb720eefe2b3cbd0db96b54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7839c46d84801507b6d286b29edfd0fa.bindPopup(popup_51561ea7218a5287f5c2cef4a1650b7b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dad5cf238882f422e17899194c4779ef = L.circleMarker(\\n\",\n       \"                [38.5247, 102.1878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_874128e89562cd9be616eac652525964 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8dbcc6fe63375996273866e242c7f8a5 = $(`&lt;div id=&quot;html_8dbcc6fe63375996273866e242c7f8a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1878             latitude:38.5247             PM2_5:33.28028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_874128e89562cd9be616eac652525964.setContent(html_8dbcc6fe63375996273866e242c7f8a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dad5cf238882f422e17899194c4779ef.bindPopup(popup_874128e89562cd9be616eac652525964)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c39648f3af3a3c403efa4f80bed1fd16 = L.circleMarker(\\n\",\n       \"                [22.8561, 108.316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_566c6036d52a924e8cdc30faf0c4c2ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4360b08d206c8eaba9c51f7d132e0391 = $(`&lt;div id=&quot;html_4360b08d206c8eaba9c51f7d132e0391&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.316             latitude:22.8561             PM2_5:33.86731844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_566c6036d52a924e8cdc30faf0c4c2ec.setContent(html_4360b08d206c8eaba9c51f7d132e0391);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c39648f3af3a3c403efa4f80bed1fd16.bindPopup(popup_566c6036d52a924e8cdc30faf0c4c2ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15457f7d47f42a62e1adf7db19a219f5 = L.circleMarker(\\n\",\n       \"                [31.656, 120.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a4bf053ee619e54b2e839dcbee0e3cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2afac5d6c922758b514ab22a07f9612 = $(`&lt;div id=&quot;html_e2afac5d6c922758b514ab22a07f9612&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.734             latitude:31.656             PM2_5:43.63128492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a4bf053ee619e54b2e839dcbee0e3cd.setContent(html_e2afac5d6c922758b514ab22a07f9612);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15457f7d47f42a62e1adf7db19a219f5.bindPopup(popup_3a4bf053ee619e54b2e839dcbee0e3cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_983c134db657fbcf2d84d649770d3dab = L.circleMarker(\\n\",\n       \"                [29.36028, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_331632d9ebd0b008503c8fe58ef2d975 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e38dd811ddd02886ba50897f7d84f66 = $(`&lt;div id=&quot;html_2e38dd811ddd02886ba50897f7d84f66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:29.36028             PM2_5:54.58543417             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_331632d9ebd0b008503c8fe58ef2d975.setContent(html_2e38dd811ddd02886ba50897f7d84f66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_983c134db657fbcf2d84d649770d3dab.bindPopup(popup_331632d9ebd0b008503c8fe58ef2d975)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a63a3376613b3826b5246bb6c3c3f35f = L.circleMarker(\\n\",\n       \"                [22.7833, 108.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0855483bc4147776c7cffccbfd4b36c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1839cc075d8cace222357f73e65ff674 = $(`&lt;div id=&quot;html_1839cc075d8cace222357f73e65ff674&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.244             latitude:22.7833             PM2_5:36.84195402             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0855483bc4147776c7cffccbfd4b36c.setContent(html_1839cc075d8cace222357f73e65ff674);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a63a3376613b3826b5246bb6c3c3f35f.bindPopup(popup_a0855483bc4147776c7cffccbfd4b36c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83908b266644016fa851b683e4aa0736 = L.circleMarker(\\n\",\n       \"                [36.3083, 120.1964],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_821879be04305ea6d82caf08eb02b5a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8451e747ffefeb01942630d0f123a0bb = $(`&lt;div id=&quot;html_8451e747ffefeb01942630d0f123a0bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1964             latitude:36.3083             PM2_5:41.015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_821879be04305ea6d82caf08eb02b5a1.setContent(html_8451e747ffefeb01942630d0f123a0bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83908b266644016fa851b683e4aa0736.bindPopup(popup_821879be04305ea6d82caf08eb02b5a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6007ad26a4362191f6c98d884192bf9a = L.circleMarker(\\n\",\n       \"                [41.8828, 123.9169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04786ea8e455276cfd4d08901ed7349c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5407ba632590e8ecbe19fbf1636c8edd = $(`&lt;div id=&quot;html_5407ba632590e8ecbe19fbf1636c8edd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9169             latitude:41.8828             PM2_5:34.99301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04786ea8e455276cfd4d08901ed7349c.setContent(html_5407ba632590e8ecbe19fbf1636c8edd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6007ad26a4362191f6c98d884192bf9a.bindPopup(popup_04786ea8e455276cfd4d08901ed7349c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d65417e82e2de81720a846aa41d90756 = L.circleMarker(\\n\",\n       \"                [41.8472, 123.428],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c32c21e1a4856407428762737c13d9eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4f8c0185bf8b1a2995ee2e453612f04 = $(`&lt;div id=&quot;html_f4f8c0185bf8b1a2995ee2e453612f04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.428             latitude:41.8472             PM2_5:31.03651685             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c32c21e1a4856407428762737c13d9eb.setContent(html_f4f8c0185bf8b1a2995ee2e453612f04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d65417e82e2de81720a846aa41d90756.bindPopup(popup_c32c21e1a4856407428762737c13d9eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2cd273e6cad73682ab0645f7f17ad674 = L.circleMarker(\\n\",\n       \"                [27.8381, 113.143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a26f4f786a44615896cc3d9fb627b058 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_295ff48a508212ea5b03bc9d711b308b = $(`&lt;div id=&quot;html_295ff48a508212ea5b03bc9d711b308b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.143             latitude:27.8381             PM2_5:41.82670455             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a26f4f786a44615896cc3d9fb627b058.setContent(html_295ff48a508212ea5b03bc9d711b308b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2cd273e6cad73682ab0645f7f17ad674.bindPopup(popup_a26f4f786a44615896cc3d9fb627b058)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c354222c1c80e4790c8064c13ce151f = L.circleMarker(\\n\",\n       \"                [43.8667, 125.417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8138563cc529142a784262b2b67ef865 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a8d82126bb7fc666f398075420ca83a = $(`&lt;div id=&quot;html_4a8d82126bb7fc666f398075420ca83a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.417             latitude:43.8667             PM2_5:34.31728045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8138563cc529142a784262b2b67ef865.setContent(html_4a8d82126bb7fc666f398075420ca83a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c354222c1c80e4790c8064c13ce151f.bindPopup(popup_8138563cc529142a784262b2b67ef865)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2dbb3a57e4ab7b639e1c2d4ac2b3df2f = L.circleMarker(\\n\",\n       \"                [45.7258, 126.646],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0fdf47cbf88e1ca1460fe184401d30ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a04ccd3e168c525d09276588e0fc90e = $(`&lt;div id=&quot;html_1a04ccd3e168c525d09276588e0fc90e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.646             latitude:45.7258             PM2_5:37.67694805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0fdf47cbf88e1ca1460fe184401d30ff.setContent(html_1a04ccd3e168c525d09276588e0fc90e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2dbb3a57e4ab7b639e1c2d4ac2b3df2f.bindPopup(popup_0fdf47cbf88e1ca1460fe184401d30ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9dda903188ebb7393787b0fa3d9e4e1b = L.circleMarker(\\n\",\n       \"                [26.6272, 118.1756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6abbe2ae960838c6490a6b1a031dc6d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9db7232a2c400adb23ed437e7b866c6 = $(`&lt;div id=&quot;html_c9db7232a2c400adb23ed437e7b866c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1756             latitude:26.6272             PM2_5:22.71927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6abbe2ae960838c6490a6b1a031dc6d.setContent(html_c9db7232a2c400adb23ed437e7b866c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9dda903188ebb7393787b0fa3d9e4e1b.bindPopup(popup_a6abbe2ae960838c6490a6b1a031dc6d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f4f374d0e2a792d1d746ccabeb2133e = L.circleMarker(\\n\",\n       \"                [27.9883, 116.3553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29541232eca1556816bf7dbe50c7d0cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_887b0c480aa804e78dc77ad56b46d649 = $(`&lt;div id=&quot;html_887b0c480aa804e78dc77ad56b46d649&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3553             latitude:27.9883             PM2_5:44.83333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29541232eca1556816bf7dbe50c7d0cd.setContent(html_887b0c480aa804e78dc77ad56b46d649);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f4f374d0e2a792d1d746ccabeb2133e.bindPopup(popup_29541232eca1556816bf7dbe50c7d0cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50ded066a7cb176175b7f966bd5d1d5d = L.circleMarker(\\n\",\n       \"                [39.9522, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1043ca292047439afe4986b75ad6655 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc1233c809443663f2d74209a91a32d7 = $(`&lt;div id=&quot;html_dc1233c809443663f2d74209a91a32d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.9522             PM2_5:54.89859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1043ca292047439afe4986b75ad6655.setContent(html_dc1233c809443663f2d74209a91a32d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50ded066a7cb176175b7f966bd5d1d5d.bindPopup(popup_c1043ca292047439afe4986b75ad6655)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f7d21cdddabaf3bc9d43e6e40c12d83 = L.circleMarker(\\n\",\n       \"                [38.843, 105.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ca0b86446cd0fc2edb2f2c309556a5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07d4cd602d814b78df05b15e94da3e6a = $(`&lt;div id=&quot;html_07d4cd602d814b78df05b15e94da3e6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6975             latitude:38.843             PM2_5:33.15181058             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ca0b86446cd0fc2edb2f2c309556a5d.setContent(html_07d4cd602d814b78df05b15e94da3e6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f7d21cdddabaf3bc9d43e6e40c12d83.bindPopup(popup_1ca0b86446cd0fc2edb2f2c309556a5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_595c4aafa9c7e25d8d3c47a5a57c389e = L.circleMarker(\\n\",\n       \"                [22.8172, 114.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc112c025d7df7d90dadb0c9eb8e0362 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_897badada9486a62ed3462acb138f9f4 = $(`&lt;div id=&quot;html_897badada9486a62ed3462acb138f9f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3244             latitude:22.8172             PM2_5:24.58848315             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc112c025d7df7d90dadb0c9eb8e0362.setContent(html_897badada9486a62ed3462acb138f9f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_595c4aafa9c7e25d8d3c47a5a57c389e.bindPopup(popup_cc112c025d7df7d90dadb0c9eb8e0362)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_225ef55c2d346a3f4b9b4245d7ee1ea5 = L.circleMarker(\\n\",\n       \"                [39.9419, 119.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aedc918584f5a024e4800dc529779cdc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb622581296325d7795abdc103d08d78 = $(`&lt;div id=&quot;html_eb622581296325d7795abdc103d08d78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5369             latitude:39.9419             PM2_5:36.63826816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aedc918584f5a024e4800dc529779cdc.setContent(html_eb622581296325d7795abdc103d08d78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_225ef55c2d346a3f4b9b4245d7ee1ea5.bindPopup(popup_aedc918584f5a024e4800dc529779cdc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3619394b4f0e5a84ddc566f848b7e4d3 = L.circleMarker(\\n\",\n       \"                [24.4175, 111.5269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0acfdfe8ed68f8d940012382521c3ed3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2b5c5de433b451d0ca2dfc90e1dd2af = $(`&lt;div id=&quot;html_e2b5c5de433b451d0ca2dfc90e1dd2af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5269             latitude:24.4175             PM2_5:44.24504249             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0acfdfe8ed68f8d940012382521c3ed3.setContent(html_e2b5c5de433b451d0ca2dfc90e1dd2af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3619394b4f0e5a84ddc566f848b7e4d3.bindPopup(popup_0acfdfe8ed68f8d940012382521c3ed3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b7f11fe244b68694a3df49f8f28e2d4 = L.circleMarker(\\n\",\n       \"                [29.7128, 118.3057],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_772ca9901a14eaec013fecc815bab9cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7ab7f76883ac1b2f9ecc1fc70a0e9e4 = $(`&lt;div id=&quot;html_d7ab7f76883ac1b2f9ecc1fc70a0e9e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3057             latitude:29.7128             PM2_5:26.5280112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_772ca9901a14eaec013fecc815bab9cd.setContent(html_d7ab7f76883ac1b2f9ecc1fc70a0e9e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b7f11fe244b68694a3df49f8f28e2d4.bindPopup(popup_772ca9901a14eaec013fecc815bab9cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e516a898b2053251a78d1740e8e48e42 = L.circleMarker(\\n\",\n       \"                [26.57098, 101.68912],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76e21439a1d362102eb9a3405b615701 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52b52ab956fc99a261248559966b7097 = $(`&lt;div id=&quot;html_52b52ab956fc99a261248559966b7097&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.68912             latitude:26.57098             PM2_5:34.35014006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76e21439a1d362102eb9a3405b615701.setContent(html_52b52ab956fc99a261248559966b7097);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e516a898b2053251a78d1740e8e48e42.bindPopup(popup_76e21439a1d362102eb9a3405b615701)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b967696fabb919fa63f7ed6760e9738f = L.circleMarker(\\n\",\n       \"                [36.087, 114.358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aec2185b65a0d30ec6238fbf4e41bd45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3b56ef8980e06162a073d4fe64cd9c9 = $(`&lt;div id=&quot;html_f3b56ef8980e06162a073d4fe64cd9c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.358             latitude:36.087             PM2_5:68.93837535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aec2185b65a0d30ec6238fbf4e41bd45.setContent(html_f3b56ef8980e06162a073d4fe64cd9c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b967696fabb919fa63f7ed6760e9738f.bindPopup(popup_aec2185b65a0d30ec6238fbf4e41bd45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_532aecbcaa5eb8d5cabc42ec94a7f5a8 = L.circleMarker(\\n\",\n       \"                [39.3673, 112.4279],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6c2f2fde84d0d14ad442ee30ba172c7c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9266afd842501fc08fc2eda63926fe9 = $(`&lt;div id=&quot;html_e9266afd842501fc08fc2eda63926fe9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4279             latitude:39.3673             PM2_5:35.7987988             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6c2f2fde84d0d14ad442ee30ba172c7c.setContent(html_e9266afd842501fc08fc2eda63926fe9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_532aecbcaa5eb8d5cabc42ec94a7f5a8.bindPopup(popup_6c2f2fde84d0d14ad442ee30ba172c7c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bccb0b349c64238fbc12794043f89d64 = L.circleMarker(\\n\",\n       \"                [37.4658, 118.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f70e54ce51f36a88eed002759024db8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_717736456afd0513042ca2d589400f75 = $(`&lt;div id=&quot;html_717736456afd0513042ca2d589400f75&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5019             latitude:37.4658             PM2_5:50.71587744             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f70e54ce51f36a88eed002759024db8.setContent(html_717736456afd0513042ca2d589400f75);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bccb0b349c64238fbc12794043f89d64.bindPopup(popup_2f70e54ce51f36a88eed002759024db8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c61fd6f99313d43c45ae513d30d565d = L.circleMarker(\\n\",\n       \"                [23.7233, 114.6892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73500088493dc73b84b461691f69a193 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abc1bbdcc0d077842d954112db86cd47 = $(`&lt;div id=&quot;html_abc1bbdcc0d077842d954112db86cd47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6892             latitude:23.7233             PM2_5:26.02240896             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73500088493dc73b84b461691f69a193.setContent(html_abc1bbdcc0d077842d954112db86cd47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c61fd6f99313d43c45ae513d30d565d.bindPopup(popup_73500088493dc73b84b461691f69a193)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ca9ba8979ec72e8141e306a2547e9d9 = L.circleMarker(\\n\",\n       \"                [28.4569, 118.0058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0acd0ef5ebde42f8683fe545d4992716 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c690c89c7a0367eca98594fdd7c9a1dd = $(`&lt;div id=&quot;html_c690c89c7a0367eca98594fdd7c9a1dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0058             latitude:28.4569             PM2_5:36.31908832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0acd0ef5ebde42f8683fe545d4992716.setContent(html_c690c89c7a0367eca98594fdd7c9a1dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ca9ba8979ec72e8141e306a2547e9d9.bindPopup(popup_0acd0ef5ebde42f8683fe545d4992716)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a863b2eefe52a789ef64a1f5d9598289 = L.circleMarker(\\n\",\n       \"                [30.2099, 115.0264],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16c0915bf2a6bf101b0b76de61ed7889 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0e3a1781b0b8382f2b61126a77dea64 = $(`&lt;div id=&quot;html_d0e3a1781b0b8382f2b61126a77dea64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0264             latitude:30.2099             PM2_5:54.80532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16c0915bf2a6bf101b0b76de61ed7889.setContent(html_d0e3a1781b0b8382f2b61126a77dea64);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a863b2eefe52a789ef64a1f5d9598289.bindPopup(popup_16c0915bf2a6bf101b0b76de61ed7889)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d768fff463ca4aa4d04b19c4e47197b = L.circleMarker(\\n\",\n       \"                [33.737, 113.182],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb60a87e59d38448f5e58176f2af7116 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8421c909e526c3901394886d7570ab1f = $(`&lt;div id=&quot;html_8421c909e526c3901394886d7570ab1f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.182             latitude:33.737             PM2_5:60.34225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb60a87e59d38448f5e58176f2af7116.setContent(html_8421c909e526c3901394886d7570ab1f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d768fff463ca4aa4d04b19c4e47197b.bindPopup(popup_eb60a87e59d38448f5e58176f2af7116)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9cfb9c5c7bd311555c3c739531dac95c = L.circleMarker(\\n\",\n       \"                [22.735, 108.328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a479db091bfbb3fa39f58c641f6245f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ac2b1d1421d913bba86a78a2169aa62 = $(`&lt;div id=&quot;html_4ac2b1d1421d913bba86a78a2169aa62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.328             latitude:22.735             PM2_5:34.70655271             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a479db091bfbb3fa39f58c641f6245f.setContent(html_4ac2b1d1421d913bba86a78a2169aa62);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9cfb9c5c7bd311555c3c739531dac95c.bindPopup(popup_1a479db091bfbb3fa39f58c641f6245f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cec638311a33afcd214ccc9c809957f0 = L.circleMarker(\\n\",\n       \"                [35.0147, 110.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d56b3df255add4d07db7dd110c645cca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d684cd4b86b9aa067649cfc50d2f7591 = $(`&lt;div id=&quot;html_d684cd4b86b9aa067649cfc50d2f7591&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9956             latitude:35.0147             PM2_5:73.66899441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d56b3df255add4d07db7dd110c645cca.setContent(html_d684cd4b86b9aa067649cfc50d2f7591);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cec638311a33afcd214ccc9c809957f0.bindPopup(popup_d56b3df255add4d07db7dd110c645cca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27c461303f9565ebd14274eb35ea4358 = L.circleMarker(\\n\",\n       \"                [38.9194, 117.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45aa2e61c9830e582ab97348033b72f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_493fa7071795609f1e02fc31a9ffe5c0 = $(`&lt;div id=&quot;html_493fa7071795609f1e02fc31a9ffe5c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.157             latitude:38.9194             PM2_5:57.08866279             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45aa2e61c9830e582ab97348033b72f4.setContent(html_493fa7071795609f1e02fc31a9ffe5c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27c461303f9565ebd14274eb35ea4358.bindPopup(popup_45aa2e61c9830e582ab97348033b72f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b12f92fbe841642a31544cc03111a106 = L.circleMarker(\\n\",\n       \"                [27.8036, 114.3442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf0933b5a843f444c3285e3edc613b12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78464d66cdded81d9ad9bd5c85274fc9 = $(`&lt;div id=&quot;html_78464d66cdded81d9ad9bd5c85274fc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3442             latitude:27.8036             PM2_5:49.8198324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf0933b5a843f444c3285e3edc613b12.setContent(html_78464d66cdded81d9ad9bd5c85274fc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b12f92fbe841642a31544cc03111a106.bindPopup(popup_cf0933b5a843f444c3285e3edc613b12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_863d942fc501e74cf0c16088e908c3c9 = L.circleMarker(\\n\",\n       \"                [23.8982, 100.0782],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0300728f5a81a877b397ade338bb956b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23208db837e00b31bdec4d454ce9c00d = $(`&lt;div id=&quot;html_23208db837e00b31bdec4d454ce9c00d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0782             latitude:23.8982             PM2_5:26.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0300728f5a81a877b397ade338bb956b.setContent(html_23208db837e00b31bdec4d454ce9c00d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_863d942fc501e74cf0c16088e908c3c9.bindPopup(popup_0300728f5a81a877b397ade338bb956b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4091360883e0e7185c8301a0dced1c85 = L.circleMarker(\\n\",\n       \"                [30.8244, 120.07],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69b5abd84ccfaa6b7802c5c7c0c4fa40 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_20ab06dc483f5c5a4acb84fe2cbd6c7f = $(`&lt;div id=&quot;html_20ab06dc483f5c5a4acb84fe2cbd6c7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.07             latitude:30.8244             PM2_5:38.02668539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69b5abd84ccfaa6b7802c5c7c0c4fa40.setContent(html_20ab06dc483f5c5a4acb84fe2cbd6c7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4091360883e0e7185c8301a0dced1c85.bindPopup(popup_69b5abd84ccfaa6b7802c5c7c0c4fa40)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92748f74c21f834701e77f2984ec4de0 = L.circleMarker(\\n\",\n       \"                [22.2294, 113.495],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_227afdd9a44e4fcc6dab75e79a44fd13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f103dffd27d47ffe64637a9b67541b9a = $(`&lt;div id=&quot;html_f103dffd27d47ffe64637a9b67541b9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.495             latitude:22.2294             PM2_5:28.53813559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_227afdd9a44e4fcc6dab75e79a44fd13.setContent(html_f103dffd27d47ffe64637a9b67541b9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92748f74c21f834701e77f2984ec4de0.bindPopup(popup_227afdd9a44e4fcc6dab75e79a44fd13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1792a625a2e70e5dd1b9d6247d7816b6 = L.circleMarker(\\n\",\n       \"                [22.4137, 107.3476],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_93d526fd00d6d9770c065c0ed676b182 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95216628ce87269ef19737edc0af554e = $(`&lt;div id=&quot;html_95216628ce87269ef19737edc0af554e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3476             latitude:22.4137             PM2_5:28.27130682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_93d526fd00d6d9770c065c0ed676b182.setContent(html_95216628ce87269ef19737edc0af554e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1792a625a2e70e5dd1b9d6247d7816b6.bindPopup(popup_93d526fd00d6d9770c065c0ed676b182)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57486d61d3e709db1a4d79055c410a38 = L.circleMarker(\\n\",\n       \"                [36.1942, 117.1436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d845585365c5a1e1a76e1df74b3aaddf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40d89c2eb7321e781e84350f9dde5dd5 = $(`&lt;div id=&quot;html_40d89c2eb7321e781e84350f9dde5dd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1436             latitude:36.1942             PM2_5:50.27793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d845585365c5a1e1a76e1df74b3aaddf.setContent(html_40d89c2eb7321e781e84350f9dde5dd5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57486d61d3e709db1a4d79055c410a38.bindPopup(popup_d845585365c5a1e1a76e1df74b3aaddf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b63b6364b23411c87b15bd90393b09e0 = L.circleMarker(\\n\",\n       \"                [30.7946, 120.744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec9d8374fcbb148ab35b8331532dc27d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3cae72e1ca87fbce083a37ec89ea3e9 = $(`&lt;div id=&quot;html_b3cae72e1ca87fbce083a37ec89ea3e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.744             latitude:30.7946             PM2_5:41.25             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec9d8374fcbb148ab35b8331532dc27d.setContent(html_b3cae72e1ca87fbce083a37ec89ea3e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b63b6364b23411c87b15bd90393b09e0.bindPopup(popup_ec9d8374fcbb148ab35b8331532dc27d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d58fd9d143d7586c8ed93561d2b7f92 = L.circleMarker(\\n\",\n       \"                [38.2839, 109.7289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6bf45afc1bd4513da46c14e746a49e61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3c34d0c114b3f1de2b848d2b47c98a6 = $(`&lt;div id=&quot;html_e3c34d0c114b3f1de2b848d2b47c98a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7289             latitude:38.2839             PM2_5:30.51983003             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6bf45afc1bd4513da46c14e746a49e61.setContent(html_e3c34d0c114b3f1de2b848d2b47c98a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d58fd9d143d7586c8ed93561d2b7f92.bindPopup(popup_6bf45afc1bd4513da46c14e746a49e61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05d6fbbc5c1e68e8195f005328489f07 = L.circleMarker(\\n\",\n       \"                [29.5953, 105.0331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3504767fe1db3a545deb530c1d256eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4461d1ec0032f7c992f9eda9fcd16896 = $(`&lt;div id=&quot;html_4461d1ec0032f7c992f9eda9fcd16896&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0331             latitude:29.5953             PM2_5:34.3258427             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3504767fe1db3a545deb530c1d256eb.setContent(html_4461d1ec0032f7c992f9eda9fcd16896);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05d6fbbc5c1e68e8195f005328489f07.bindPopup(popup_e3504767fe1db3a545deb530c1d256eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28c4cbdaf29d4a94e874ee9593c6d60b = L.circleMarker(\\n\",\n       \"                [32.9673, 117.3536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d3627587dc122356e493d578386f877 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eed0ea17d460b963b2ecdf9dd0b39716 = $(`&lt;div id=&quot;html_eed0ea17d460b963b2ecdf9dd0b39716&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3536             latitude:32.9673             PM2_5:49.43333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d3627587dc122356e493d578386f877.setContent(html_eed0ea17d460b963b2ecdf9dd0b39716);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28c4cbdaf29d4a94e874ee9593c6d60b.bindPopup(popup_5d3627587dc122356e493d578386f877)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74c099dd00b9a675df3d41f556acc16f = L.circleMarker(\\n\",\n       \"                [27.9164, 112.4876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c40d9dbd1f9021e343732e7f43ab098 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aebb308e357c2e36423d63fbcffd1c45 = $(`&lt;div id=&quot;html_aebb308e357c2e36423d63fbcffd1c45&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4876             latitude:27.9164             PM2_5:41.67039106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c40d9dbd1f9021e343732e7f43ab098.setContent(html_aebb308e357c2e36423d63fbcffd1c45);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74c099dd00b9a675df3d41f556acc16f.bindPopup(popup_4c40d9dbd1f9021e343732e7f43ab098)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b1990f03b58ad71a9a75ffffc9654d0 = L.circleMarker(\\n\",\n       \"                [29.9972, 101.9533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d5811801795c7304cb1467323afe856 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f87e753738d1f8514dbaa5c3379e474e = $(`&lt;div id=&quot;html_f87e753738d1f8514dbaa5c3379e474e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9533             latitude:29.9972             PM2_5:18.25892857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d5811801795c7304cb1467323afe856.setContent(html_f87e753738d1f8514dbaa5c3379e474e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b1990f03b58ad71a9a75ffffc9654d0.bindPopup(popup_5d5811801795c7304cb1467323afe856)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f271648077806a034795ef86e1957678 = L.circleMarker(\\n\",\n       \"                [30.1506, 104.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8b192dcab38f3c97fe16b113a031998 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a36a30a82ed220a52820514714bf791d = $(`&lt;div id=&quot;html_a36a30a82ed220a52820514714bf791d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6356             latitude:30.1506             PM2_5:37.29501385             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8b192dcab38f3c97fe16b113a031998.setContent(html_a36a30a82ed220a52820514714bf791d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f271648077806a034795ef86e1957678.bindPopup(popup_b8b192dcab38f3c97fe16b113a031998)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fdbef9990d4714d1c95b5e68c9b2b90 = L.circleMarker(\\n\",\n       \"                [43.84, 125.2786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15b21454944f8b7c5d933204b3e9edf6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65099410a955dfef84e065044ace75e4 = $(`&lt;div id=&quot;html_65099410a955dfef84e065044ace75e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.2786             latitude:43.84             PM2_5:32.66760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15b21454944f8b7c5d933204b3e9edf6.setContent(html_65099410a955dfef84e065044ace75e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fdbef9990d4714d1c95b5e68c9b2b90.bindPopup(popup_15b21454944f8b7c5d933204b3e9edf6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52c63dcf635010d33b5e5ab36cc94365 = L.circleMarker(\\n\",\n       \"                [36.1542, 113.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfc4f118aa4926ac43050c6c5898d48e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_161ec6180996627e35f141fa71fd5bbf = $(`&lt;div id=&quot;html_161ec6180996627e35f141fa71fd5bbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1097             latitude:36.1542             PM2_5:67.22486034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfc4f118aa4926ac43050c6c5898d48e.setContent(html_161ec6180996627e35f141fa71fd5bbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52c63dcf635010d33b5e5ab36cc94365.bindPopup(popup_dfc4f118aa4926ac43050c6c5898d48e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4723eaba147518343273fdadca173b7 = L.circleMarker(\\n\",\n       \"                [32.4535, 105.8945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9a594a749cf2f28e373d265b138bb27 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cdccac989c2dfb280d4d1206673296fd = $(`&lt;div id=&quot;html_cdccac989c2dfb280d4d1206673296fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8945             latitude:32.4535             PM2_5:21.4622905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9a594a749cf2f28e373d265b138bb27.setContent(html_cdccac989c2dfb280d4d1206673296fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4723eaba147518343273fdadca173b7.bindPopup(popup_f9a594a749cf2f28e373d265b138bb27)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca95103bf66a8815a37579a42d7c6c5e = L.circleMarker(\\n\",\n       \"                [24.8978, 118.5972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3675cb6ea0ae6fde401a17921f58db21 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fcd66feb8a0c6e13c564b6d728348319 = $(`&lt;div id=&quot;html_fcd66feb8a0c6e13c564b6d728348319&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5972             latitude:24.8978             PM2_5:26.7605042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3675cb6ea0ae6fde401a17921f58db21.setContent(html_fcd66feb8a0c6e13c564b6d728348319);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca95103bf66a8815a37579a42d7c6c5e.bindPopup(popup_3675cb6ea0ae6fde401a17921f58db21)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a09bccbdef4865389f37c0fe29bf5b21 = L.circleMarker(\\n\",\n       \"                [29.6219, 106.65],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e542ccf38fd246fe9b0f21c6212fa049 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb0f8bebba258b005ef5b1cc9ef74d16 = $(`&lt;div id=&quot;html_eb0f8bebba258b005ef5b1cc9ef74d16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.65             latitude:29.6219             PM2_5:29.91086351             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e542ccf38fd246fe9b0f21c6212fa049.setContent(html_eb0f8bebba258b005ef5b1cc9ef74d16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a09bccbdef4865389f37c0fe29bf5b21.bindPopup(popup_e542ccf38fd246fe9b0f21c6212fa049)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca2d7b2a33979bd362d6e1964acc3f76 = L.circleMarker(\\n\",\n       \"                [41.1636, 80.2828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24a41ef4267d1898a94903ea44c4a50c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f5d001b033ffc6e2c8a6c92aa921b7b0 = $(`&lt;div id=&quot;html_f5d001b033ffc6e2c8a6c92aa921b7b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2828             latitude:41.1636             PM2_5:69.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24a41ef4267d1898a94903ea44c4a50c.setContent(html_f5d001b033ffc6e2c8a6c92aa921b7b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca2d7b2a33979bd362d6e1964acc3f76.bindPopup(popup_24a41ef4267d1898a94903ea44c4a50c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40c9ae553e2f02d39480db04add2e160 = L.circleMarker(\\n\",\n       \"                [34.3617, 108.7233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fa449555f34118ce1020a3b01fdd092 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72d1b5a5e96bb846a9214c9f4c05dd26 = $(`&lt;div id=&quot;html_72d1b5a5e96bb846a9214c9f4c05dd26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7233             latitude:34.3617             PM2_5:67.50702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fa449555f34118ce1020a3b01fdd092.setContent(html_72d1b5a5e96bb846a9214c9f4c05dd26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40c9ae553e2f02d39480db04add2e160.bindPopup(popup_8fa449555f34118ce1020a3b01fdd092)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe3c3c0f8f0b6786a0a1427ed3088701 = L.circleMarker(\\n\",\n       \"                [41.9086, 123.5953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7e99783f65e2c37f6d16647d6762c03 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ab4def8cd14bc0e74b05bd34f97ceaa = $(`&lt;div id=&quot;html_2ab4def8cd14bc0e74b05bd34f97ceaa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.5953             latitude:41.9086             PM2_5:30.00423729             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7e99783f65e2c37f6d16647d6762c03.setContent(html_2ab4def8cd14bc0e74b05bd34f97ceaa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe3c3c0f8f0b6786a0a1427ed3088701.bindPopup(popup_e7e99783f65e2c37f6d16647d6762c03)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48675cb590c5c919f5d54b9cb952eb8e = L.circleMarker(\\n\",\n       \"                [29.2786, 117.1983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_281f848f1f5a1ac437f70e5795bc50f0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1afedde4696bc0dd3748e8b37ff8bd3e = $(`&lt;div id=&quot;html_1afedde4696bc0dd3748e8b37ff8bd3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1983             latitude:29.2786             PM2_5:31.27871148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_281f848f1f5a1ac437f70e5795bc50f0.setContent(html_1afedde4696bc0dd3748e8b37ff8bd3e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48675cb590c5c919f5d54b9cb952eb8e.bindPopup(popup_281f848f1f5a1ac437f70e5795bc50f0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ebbb3b76b109e189479e8ab0ae0a1a1 = L.circleMarker(\\n\",\n       \"                [25.3167, 110.4144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5eb3822a260db10be55df94c6bdd8d94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7edd3589b3de986c219676b61bb86392 = $(`&lt;div id=&quot;html_7edd3589b3de986c219676b61bb86392&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4144             latitude:25.3167             PM2_5:33.86694678             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5eb3822a260db10be55df94c6bdd8d94.setContent(html_7edd3589b3de986c219676b61bb86392);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ebbb3b76b109e189479e8ab0ae0a1a1.bindPopup(popup_5eb3822a260db10be55df94c6bdd8d94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09142c054cb39144815eb1d34cc44780 = L.circleMarker(\\n\",\n       \"                [40.8115, 114.8814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7517ff941193f30052297bfabed67dc3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_076f2ce38edaaadd004a150242c76bd2 = $(`&lt;div id=&quot;html_076f2ce38edaaadd004a150242c76bd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8814             latitude:40.8115             PM2_5:30.67267267             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7517ff941193f30052297bfabed67dc3.setContent(html_076f2ce38edaaadd004a150242c76bd2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09142c054cb39144815eb1d34cc44780.bindPopup(popup_7517ff941193f30052297bfabed67dc3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc7ec70d32c2db048623f8383ab2e410 = L.circleMarker(\\n\",\n       \"                [33.3261, 105.0822],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6d1052b626fe016b260b132cb6b51fd8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce1aeb600d72bc841b94aafaad734181 = $(`&lt;div id=&quot;html_ce1aeb600d72bc841b94aafaad734181&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0822             latitude:33.3261             PM2_5:20.0625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6d1052b626fe016b260b132cb6b51fd8.setContent(html_ce1aeb600d72bc841b94aafaad734181);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc7ec70d32c2db048623f8383ab2e410.bindPopup(popup_6d1052b626fe016b260b132cb6b51fd8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c956ff8075b93ba14ae7ec1d06322122 = L.circleMarker(\\n\",\n       \"                [31.2472, 120.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5f35cc0e937f632d9058ea1b1a1d4bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56196cbe1ac8ac89e973a47cd77795ad = $(`&lt;div id=&quot;html_56196cbe1ac8ac89e973a47cd77795ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.561             latitude:31.2472             PM2_5:40.37883008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5f35cc0e937f632d9058ea1b1a1d4bd.setContent(html_56196cbe1ac8ac89e973a47cd77795ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c956ff8075b93ba14ae7ec1d06322122.bindPopup(popup_e5f35cc0e937f632d9058ea1b1a1d4bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_561847cedb609042bcdc85e779b88c72 = L.circleMarker(\\n\",\n       \"                [41.1442, 123.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7910b862396c26b8c9bd16a5ef874c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26d367a9a0cdd14e69447a26985ecfad = $(`&lt;div id=&quot;html_26d367a9a0cdd14e69447a26985ecfad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0485             latitude:41.1442             PM2_5:33.3189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7910b862396c26b8c9bd16a5ef874c9.setContent(html_26d367a9a0cdd14e69447a26985ecfad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_561847cedb609042bcdc85e779b88c72.bindPopup(popup_e7910b862396c26b8c9bd16a5ef874c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17896ad4b4c87a55ac8070c324767063 = L.circleMarker(\\n\",\n       \"                [33.1842, 106.9893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc5321b2afc6b5b781950c80a7c251a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e60c5ef8f4f12f738691b7bbbe3e3b0 = $(`&lt;div id=&quot;html_1e60c5ef8f4f12f738691b7bbbe3e3b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9893             latitude:33.1842             PM2_5:41.890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc5321b2afc6b5b781950c80a7c251a7.setContent(html_1e60c5ef8f4f12f738691b7bbbe3e3b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17896ad4b4c87a55ac8070c324767063.bindPopup(popup_cc5321b2afc6b5b781950c80a7c251a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de9e0febe72db23cde2dbf6c1b00086e = L.circleMarker(\\n\",\n       \"                [26.8919, 112.6006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12c6df84781ba3aabd1d2fb5e0362f84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e0552d1799d4753d10cabe5e5fc516f = $(`&lt;div id=&quot;html_6e0552d1799d4753d10cabe5e5fc516f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6006             latitude:26.8919             PM2_5:42.72299169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12c6df84781ba3aabd1d2fb5e0362f84.setContent(html_6e0552d1799d4753d10cabe5e5fc516f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de9e0febe72db23cde2dbf6c1b00086e.bindPopup(popup_12c6df84781ba3aabd1d2fb5e0362f84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48acf1d12ea8481bfb30dd9debd0c57a = L.circleMarker(\\n\",\n       \"                [39.643, 118.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f7556a3802bb48ac29c620431de251b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2b43561e8fc535967b70347d5e7c40c = $(`&lt;div id=&quot;html_a2b43561e8fc535967b70347d5e7c40c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.144             latitude:39.643             PM2_5:45.89027778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f7556a3802bb48ac29c620431de251b.setContent(html_a2b43561e8fc535967b70347d5e7c40c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48acf1d12ea8481bfb30dd9debd0c57a.bindPopup(popup_9f7556a3802bb48ac29c620431de251b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddc80b375b4594e4fb4225bb7044e477 = L.circleMarker(\\n\",\n       \"                [31.2703, 120.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28333fd64832c1a4aee7b0850ab59afd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c94fe4243e3ba24d36e98280c0e3f1d1 = $(`&lt;div id=&quot;html_c94fe4243e3ba24d36e98280c0e3f1d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.613             latitude:31.2703             PM2_5:39.79469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28333fd64832c1a4aee7b0850ab59afd.setContent(html_c94fe4243e3ba24d36e98280c0e3f1d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddc80b375b4594e4fb4225bb7044e477.bindPopup(popup_28333fd64832c1a4aee7b0850ab59afd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c469da3784adeff5920821d2b53c6505 = L.circleMarker(\\n\",\n       \"                [36.6377, 117.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63ecf918af88ca64e1435b8a168db5ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2317ab6fb94cfba28857ffba18bc55eb = $(`&lt;div id=&quot;html_2317ab6fb94cfba28857ffba18bc55eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9544             latitude:36.6377             PM2_5:50.94507042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63ecf918af88ca64e1435b8a168db5ee.setContent(html_2317ab6fb94cfba28857ffba18bc55eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c469da3784adeff5920821d2b53c6505.bindPopup(popup_63ecf918af88ca64e1435b8a168db5ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_daeb1fa9a72c3c34458850bb90949cc1 = L.circleMarker(\\n\",\n       \"                [30.4551, 106.6388],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_633d3895d27bf15c1103ce7d3ffe5124 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a56387697f4d64eecda86b61338306a4 = $(`&lt;div id=&quot;html_a56387697f4d64eecda86b61338306a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6388             latitude:30.4551             PM2_5:30.78888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_633d3895d27bf15c1103ce7d3ffe5124.setContent(html_a56387697f4d64eecda86b61338306a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_daeb1fa9a72c3c34458850bb90949cc1.bindPopup(popup_633d3895d27bf15c1103ce7d3ffe5124)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9ace5917e21cb00f5baf6a69749c957 = L.circleMarker(\\n\",\n       \"                [31.8934, 102.2402],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd2c9f7a6a236112d957d95f311801bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cace9b732cf8f194238c99f707c6dc3b = $(`&lt;div id=&quot;html_cace9b732cf8f194238c99f707c6dc3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2402             latitude:31.8934             PM2_5:3.856338028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd2c9f7a6a236112d957d95f311801bb.setContent(html_cace9b732cf8f194238c99f707c6dc3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9ace5917e21cb00f5baf6a69749c957.bindPopup(popup_dd2c9f7a6a236112d957d95f311801bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f9b50eb708120959ecc241c8b7a2ac9 = L.circleMarker(\\n\",\n       \"                [38.8394, 117.457],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7309e2d6702f6bad9c9b9a52c9fccd45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_095cceffc5fef3129843cf22075a50ea = $(`&lt;div id=&quot;html_095cceffc5fef3129843cf22075a50ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.457             latitude:38.8394             PM2_5:48.95238095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7309e2d6702f6bad9c9b9a52c9fccd45.setContent(html_095cceffc5fef3129843cf22075a50ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f9b50eb708120959ecc241c8b7a2ac9.bindPopup(popup_7309e2d6702f6bad9c9b9a52c9fccd45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00890e7ab256798b732a6e3e48720957 = L.circleMarker(\\n\",\n       \"                [32.0144, 118.777],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1aacb13260deac2e3692d1b0d0727709 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e511ee08668c66cf7f0920d37ab4ab20 = $(`&lt;div id=&quot;html_e511ee08668c66cf7f0920d37ab4ab20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.777             latitude:32.0144             PM2_5:39.8255814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1aacb13260deac2e3692d1b0d0727709.setContent(html_e511ee08668c66cf7f0920d37ab4ab20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00890e7ab256798b732a6e3e48720957.bindPopup(popup_1aacb13260deac2e3692d1b0d0727709)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2dbebc6476f567ad1bf0b4b1e520cdd7 = L.circleMarker(\\n\",\n       \"                [27.8336, 113.251],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67886e6efba5ab5d4ab0a41f4b3c8c55 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d91b71bac4b4e11fca2687dd80f1a5e1 = $(`&lt;div id=&quot;html_d91b71bac4b4e11fca2687dd80f1a5e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.251             latitude:27.8336             PM2_5:33.70142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67886e6efba5ab5d4ab0a41f4b3c8c55.setContent(html_d91b71bac4b4e11fca2687dd80f1a5e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2dbebc6476f567ad1bf0b4b1e520cdd7.bindPopup(popup_67886e6efba5ab5d4ab0a41f4b3c8c55)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6289a98bd5c8b8c71bc86f5681737f98 = L.circleMarker(\\n\",\n       \"                [22.8693, 112.844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7176ebae98d6cfd94952e0296fa92d0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bccd95049e1986a53a3b0fa0e6f62c39 = $(`&lt;div id=&quot;html_bccd95049e1986a53a3b0fa0e6f62c39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.844             latitude:22.8693             PM2_5:39.67787115             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7176ebae98d6cfd94952e0296fa92d0d.setContent(html_bccd95049e1986a53a3b0fa0e6f62c39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6289a98bd5c8b8c71bc86f5681737f98.bindPopup(popup_7176ebae98d6cfd94952e0296fa92d0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_735fcd39002573de0119fb7aa74b9205 = L.circleMarker(\\n\",\n       \"                [26.5697, 106.7164],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4036a25ac42107f8b6edb9da86aaaa38 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bcc396b0ccaf1100bc082773f290fec6 = $(`&lt;div id=&quot;html_bcc396b0ccaf1100bc082773f290fec6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7164             latitude:26.5697             PM2_5:32.42655367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4036a25ac42107f8b6edb9da86aaaa38.setContent(html_bcc396b0ccaf1100bc082773f290fec6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_735fcd39002573de0119fb7aa74b9205.bindPopup(popup_4036a25ac42107f8b6edb9da86aaaa38)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77b75eca0867dff0b7773678db23cf6b = L.circleMarker(\\n\",\n       \"                [23.1572, 112.885],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4bedd5d998bfd890fbe34926f3bac3ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9277a6b779b07e97d09876723bf98a13 = $(`&lt;div id=&quot;html_9277a6b779b07e97d09876723bf98a13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.885             latitude:23.1572             PM2_5:38.81534091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4bedd5d998bfd890fbe34926f3bac3ec.setContent(html_9277a6b779b07e97d09876723bf98a13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77b75eca0867dff0b7773678db23cf6b.bindPopup(popup_4bedd5d998bfd890fbe34926f3bac3ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e371ef11c85e4eb7024d6e927a4e854 = L.circleMarker(\\n\",\n       \"                [30.6197, 114.2836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_887006a39afc9bc69d0f0b1209d41657 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_521ffcac192c590c7149f1b995df7683 = $(`&lt;div id=&quot;html_521ffcac192c590c7149f1b995df7683&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2836             latitude:30.6197             PM2_5:48.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_887006a39afc9bc69d0f0b1209d41657.setContent(html_521ffcac192c590c7149f1b995df7683);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e371ef11c85e4eb7024d6e927a4e854.bindPopup(popup_887006a39afc9bc69d0f0b1209d41657)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc9bf942cdfb08333d048ff9b797055b = L.circleMarker(\\n\",\n       \"                [33.6284, 116.9677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cee60c76103405272ff62ea08e1a6d15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71fed1dc24a14e694886208292efa6fe = $(`&lt;div id=&quot;html_71fed1dc24a14e694886208292efa6fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9677             latitude:33.6284             PM2_5:55.42916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cee60c76103405272ff62ea08e1a6d15.setContent(html_71fed1dc24a14e694886208292efa6fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc9bf942cdfb08333d048ff9b797055b.bindPopup(popup_cee60c76103405272ff62ea08e1a6d15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c52a8e13776902fe28070a84fb8c5be2 = L.circleMarker(\\n\",\n       \"                [22.5908, 114.263],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0444b0aa4dba5f987794df3a3aca5525 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f99b20e2dd6f1960674ed117f1517f83 = $(`&lt;div id=&quot;html_f99b20e2dd6f1960674ed117f1517f83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.263             latitude:22.5908             PM2_5:22.57746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0444b0aa4dba5f987794df3a3aca5525.setContent(html_f99b20e2dd6f1960674ed117f1517f83);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c52a8e13776902fe28070a84fb8c5be2.bindPopup(popup_0444b0aa4dba5f987794df3a3aca5525)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff914d8874ac3ddfa67872384d80a127 = L.circleMarker(\\n\",\n       \"                [41.8336, 123.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad7c4a68a879636f37d80acaa11be853 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_735778a2114708b1e328292ddc715788 = $(`&lt;div id=&quot;html_735778a2114708b1e328292ddc715788&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.542             latitude:41.8336             PM2_5:30.66997167             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad7c4a68a879636f37d80acaa11be853.setContent(html_735778a2114708b1e328292ddc715788);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff914d8874ac3ddfa67872384d80a127.bindPopup(popup_ad7c4a68a879636f37d80acaa11be853)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f1c6d406c82ee445d72ac3971793a4f = L.circleMarker(\\n\",\n       \"                [34.3528, 107.3906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4aa0db60ca8fc0b4baeef7df687ce5d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4e6ebac1d448fd411026aa38199aa67 = $(`&lt;div id=&quot;html_e4e6ebac1d448fd411026aa38199aa67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3906             latitude:34.3528             PM2_5:56.48472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4aa0db60ca8fc0b4baeef7df687ce5d2.setContent(html_e4e6ebac1d448fd411026aa38199aa67);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f1c6d406c82ee445d72ac3971793a4f.bindPopup(popup_4aa0db60ca8fc0b4baeef7df687ce5d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59d252ed796a6620cf852c00c6c2edd3 = L.circleMarker(\\n\",\n       \"                [38.817, 106.3394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c60921a8cfd7b90fe1d892763904afee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba1a441e103e12d67e76bb2e953b0881 = $(`&lt;div id=&quot;html_ba1a441e103e12d67e76bb2e953b0881&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3394             latitude:38.817             PM2_5:45.58882521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c60921a8cfd7b90fe1d892763904afee.setContent(html_ba1a441e103e12d67e76bb2e953b0881);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59d252ed796a6620cf852c00c6c2edd3.bindPopup(popup_c60921a8cfd7b90fe1d892763904afee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ea5f86c50c5275b4e6e485227b53811 = L.circleMarker(\\n\",\n       \"                [37.8561, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_617e0fcd6bf3bcef2e863093700f8ab0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca267356775c88bbd87c4336dacc87dc = $(`&lt;div id=&quot;html_ca267356775c88bbd87c4336dacc87dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:37.8561             PM2_5:58.70972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_617e0fcd6bf3bcef2e863093700f8ab0.setContent(html_ca267356775c88bbd87c4336dacc87dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ea5f86c50c5275b4e6e485227b53811.bindPopup(popup_617e0fcd6bf3bcef2e863093700f8ab0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7ec63013681b552b64c54e813a54ec2 = L.circleMarker(\\n\",\n       \"                [28.6459, 121.273],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0960cb4b2374cbd39d0fe62baf4b3cf4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_207634269c2ad37bb63cfade0ca159b2 = $(`&lt;div id=&quot;html_207634269c2ad37bb63cfade0ca159b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.273             latitude:28.6459             PM2_5:28.00724638             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0960cb4b2374cbd39d0fe62baf4b3cf4.setContent(html_207634269c2ad37bb63cfade0ca159b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7ec63013681b552b64c54e813a54ec2.bindPopup(popup_0960cb4b2374cbd39d0fe62baf4b3cf4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31a9b916740713b68dfe97102e01baf2 = L.circleMarker(\\n\",\n       \"                [30.4576, 106.6303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5136e99ae8f68d70abdc0d5aeec376e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f3917c6f70c9a28dce8028ed75fb1c8 = $(`&lt;div id=&quot;html_8f3917c6f70c9a28dce8028ed75fb1c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6303             latitude:30.4576             PM2_5:42.27513966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5136e99ae8f68d70abdc0d5aeec376e0.setContent(html_8f3917c6f70c9a28dce8028ed75fb1c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31a9b916740713b68dfe97102e01baf2.bindPopup(popup_5136e99ae8f68d70abdc0d5aeec376e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3905dbc83559e2b2d44c97ef2a126ebd = L.circleMarker(\\n\",\n       \"                [34.5667, 117.732],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af64db225ab8bbcab5bfbad78508607b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_20c0ba532b56c31e8a4774388340fbdc = $(`&lt;div id=&quot;html_20c0ba532b56c31e8a4774388340fbdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.732             latitude:34.5667             PM2_5:62.16432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af64db225ab8bbcab5bfbad78508607b.setContent(html_20c0ba532b56c31e8a4774388340fbdc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3905dbc83559e2b2d44c97ef2a126ebd.bindPopup(popup_af64db225ab8bbcab5bfbad78508607b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58e27d4064ffdbd71624d16af1e37e4f = L.circleMarker(\\n\",\n       \"                [37.9358, 102.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f834b6b35554235005428af8d6c8ee9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_066bfd4bdb8d977fd5aaab7aa6ff9164 = $(`&lt;div id=&quot;html_066bfd4bdb8d977fd5aaab7aa6ff9164&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6469             latitude:37.9358             PM2_5:36.28194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f834b6b35554235005428af8d6c8ee9.setContent(html_066bfd4bdb8d977fd5aaab7aa6ff9164);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58e27d4064ffdbd71624d16af1e37e4f.bindPopup(popup_7f834b6b35554235005428af8d6c8ee9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37cdfff6d9e4d4f0204068d4669088b3 = L.circleMarker(\\n\",\n       \"                [31.89708, 121.1518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7893301ce7ba8a72f9482180a8068c1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91d1cff85f0d31456a860aa485033be3 = $(`&lt;div id=&quot;html_91d1cff85f0d31456a860aa485033be3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1518             latitude:31.89708             PM2_5:35.28041543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7893301ce7ba8a72f9482180a8068c1d.setContent(html_91d1cff85f0d31456a860aa485033be3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37cdfff6d9e4d4f0204068d4669088b3.bindPopup(popup_7893301ce7ba8a72f9482180a8068c1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e35af1bc06bc573a60026b47d0191099 = L.circleMarker(\\n\",\n       \"                [27.6178, 113.865],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e9f7a9d658d3ecf7084364c19567f09 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02d51271c1bc37aa72c29eb192d946d0 = $(`&lt;div id=&quot;html_02d51271c1bc37aa72c29eb192d946d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.865             latitude:27.6178             PM2_5:43.54583333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e9f7a9d658d3ecf7084364c19567f09.setContent(html_02d51271c1bc37aa72c29eb192d946d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e35af1bc06bc573a60026b47d0191099.bindPopup(popup_0e9f7a9d658d3ecf7084364c19567f09)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40b00ad08a13b839085d57819751ec79 = L.circleMarker(\\n\",\n       \"                [25.0661, 117.0256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7de62a25c8179b1c43f1832103ebeddc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a893de92c4e477a42b68c61a7119420 = $(`&lt;div id=&quot;html_5a893de92c4e477a42b68c61a7119420&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0256             latitude:25.0661             PM2_5:20.88194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7de62a25c8179b1c43f1832103ebeddc.setContent(html_5a893de92c4e477a42b68c61a7119420);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40b00ad08a13b839085d57819751ec79.bindPopup(popup_7de62a25c8179b1c43f1832103ebeddc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_041102573f1e0eb06b11c3d98e09b5e5 = L.circleMarker(\\n\",\n       \"                [37.0967, 114.4821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_911787992e0142f86430a0dc6e73ac9b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f5efabbbfe891744d8b20fcaaf9e68b2 = $(`&lt;div id=&quot;html_f5efabbbfe891744d8b20fcaaf9e68b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4821             latitude:37.0967             PM2_5:74.24929972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_911787992e0142f86430a0dc6e73ac9b.setContent(html_f5efabbbfe891744d8b20fcaaf9e68b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_041102573f1e0eb06b11c3d98e09b5e5.bindPopup(popup_911787992e0142f86430a0dc6e73ac9b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e34281f8ba85bbd920b74906b6ba166a = L.circleMarker(\\n\",\n       \"                [26.5689, 106.6971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d7df464d32502eeba4130136f90c907d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56d3e3c8fac0474267109d9aa8fc1114 = $(`&lt;div id=&quot;html_56d3e3c8fac0474267109d9aa8fc1114&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6971             latitude:26.5689             PM2_5:30.99571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d7df464d32502eeba4130136f90c907d.setContent(html_56d3e3c8fac0474267109d9aa8fc1114);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e34281f8ba85bbd920b74906b6ba166a.bindPopup(popup_d7df464d32502eeba4130136f90c907d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5709d6c2b371d41c1b5048764cf9966b = L.circleMarker(\\n\",\n       \"                [34.5004, 109.5049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f920974eb11fd22f307448d53092cd8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_040afed9186e4a7c98c8b2e91d5a6337 = $(`&lt;div id=&quot;html_040afed9186e4a7c98c8b2e91d5a6337&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5049             latitude:34.5004             PM2_5:72.50142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f920974eb11fd22f307448d53092cd8.setContent(html_040afed9186e4a7c98c8b2e91d5a6337);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5709d6c2b371d41c1b5048764cf9966b.bindPopup(popup_1f920974eb11fd22f307448d53092cd8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47c7b2a9310c3da662d0a9c87cb10aed = L.circleMarker(\\n\",\n       \"                [30.9447, 118.7581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0692f3f214ae80e9a2cb85afc7adaa0c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c4bb359c999067690047a5bc6fbb56a = $(`&lt;div id=&quot;html_2c4bb359c999067690047a5bc6fbb56a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7581             latitude:30.9447             PM2_5:42.49019608             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0692f3f214ae80e9a2cb85afc7adaa0c.setContent(html_2c4bb359c999067690047a5bc6fbb56a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47c7b2a9310c3da662d0a9c87cb10aed.bindPopup(popup_0692f3f214ae80e9a2cb85afc7adaa0c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e314f1ee69d3ae3158bc660c3445299b = L.circleMarker(\\n\",\n       \"                [30.7636, 106.0642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04f4e9024b99bb9f7dc377fbe830dc46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f8dd2289b42fa41ca53113ab631b866 = $(`&lt;div id=&quot;html_0f8dd2289b42fa41ca53113ab631b866&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0642             latitude:30.7636             PM2_5:51.33240997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04f4e9024b99bb9f7dc377fbe830dc46.setContent(html_0f8dd2289b42fa41ca53113ab631b866);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e314f1ee69d3ae3158bc660c3445299b.bindPopup(popup_04f4e9024b99bb9f7dc377fbe830dc46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b18c04663891e553b2be0429a33af3e0 = L.circleMarker(\\n\",\n       \"                [25.2178, 110.2869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd06a1dc03b36ea4d4b8278c796986bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa29c218bf1aee111ee48667456c8201 = $(`&lt;div id=&quot;html_aa29c218bf1aee111ee48667456c8201&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2869             latitude:25.2178             PM2_5:37.9301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd06a1dc03b36ea4d4b8278c796986bd.setContent(html_aa29c218bf1aee111ee48667456c8201);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b18c04663891e553b2be0429a33af3e0.bindPopup(popup_bd06a1dc03b36ea4d4b8278c796986bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8d179b92da394f5e725e50d05ea8535 = L.circleMarker(\\n\",\n       \"                [23.9011, 106.6103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5b0f514d59b73fe35977ed3dbc05d60 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ccd310589cdfab012b5252b8e4d01157 = $(`&lt;div id=&quot;html_ccd310589cdfab012b5252b8e4d01157&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6103             latitude:23.9011             PM2_5:39.07282913             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5b0f514d59b73fe35977ed3dbc05d60.setContent(html_ccd310589cdfab012b5252b8e4d01157);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8d179b92da394f5e725e50d05ea8535.bindPopup(popup_a5b0f514d59b73fe35977ed3dbc05d60)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7194faae0e9f848b669bb8cf9e3565a = L.circleMarker(\\n\",\n       \"                [38.1398, 114.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5af164daa1f005c5424cebf0c59f69ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d32e0c76fc5578f31078d1323c68277 = $(`&lt;div id=&quot;html_0d32e0c76fc5578f31078d1323c68277&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5019             latitude:38.1398             PM2_5:72.54901961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5af164daa1f005c5424cebf0c59f69ac.setContent(html_0d32e0c76fc5578f31078d1323c68277);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7194faae0e9f848b669bb8cf9e3565a.bindPopup(popup_5af164daa1f005c5424cebf0c59f69ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46395c0e0eb6a0cf203b40eba74ffa37 = L.circleMarker(\\n\",\n       \"                [31.2036, 121.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d2512111a0bd5e63c97028129d13574 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ca5594e236c1a30dd555090a67f50d3 = $(`&lt;div id=&quot;html_7ca5594e236c1a30dd555090a67f50d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.478             latitude:31.2036             PM2_5:43.17563739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d2512111a0bd5e63c97028129d13574.setContent(html_7ca5594e236c1a30dd555090a67f50d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46395c0e0eb6a0cf203b40eba74ffa37.bindPopup(popup_7d2512111a0bd5e63c97028129d13574)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1002292a784bbc19d94bd1feb773630c = L.circleMarker(\\n\",\n       \"                [31.882, 120.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f1656fe4d39a60d5d46e9a1dd1b6ba7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b1c2c34f7e308f96bb03791dc01326b = $(`&lt;div id=&quot;html_8b1c2c34f7e308f96bb03791dc01326b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.55             latitude:31.882             PM2_5:44.14265537             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f1656fe4d39a60d5d46e9a1dd1b6ba7.setContent(html_8b1c2c34f7e308f96bb03791dc01326b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1002292a784bbc19d94bd1feb773630c.bindPopup(popup_1f1656fe4d39a60d5d46e9a1dd1b6ba7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ba3981a8c7bef8bda73357257a2c519 = L.circleMarker(\\n\",\n       \"                [40.1461, 124.3933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5931588bf80b40225585ecb7c5067d26 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4cedc257a64c2f540867c68787f7db19 = $(`&lt;div id=&quot;html_4cedc257a64c2f540867c68787f7db19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3933             latitude:40.1461             PM2_5:24.14164306             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5931588bf80b40225585ecb7c5067d26.setContent(html_4cedc257a64c2f540867c68787f7db19);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ba3981a8c7bef8bda73357257a2c519.bindPopup(popup_5931588bf80b40225585ecb7c5067d26)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef431014873b00598d1e1bacd0a524f9 = L.circleMarker(\\n\",\n       \"                [39.6719, 106.8219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a02d6bdf279aeb80cd027824a58ae34b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3ededbff621a83b731a54bf9590b3fd = $(`&lt;div id=&quot;html_a3ededbff621a83b731a54bf9590b3fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8219             latitude:39.6719             PM2_5:43.65340909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a02d6bdf279aeb80cd027824a58ae34b.setContent(html_a3ededbff621a83b731a54bf9590b3fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef431014873b00598d1e1bacd0a524f9.bindPopup(popup_a02d6bdf279aeb80cd027824a58ae34b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e62aa1be0b17449069c02afec648df15 = L.circleMarker(\\n\",\n       \"                [33.575, 119.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4dc43e793dfa351cb574e6c4e92dd38 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b02a57d2445a53b8357bd79d5aabe0d1 = $(`&lt;div id=&quot;html_b02a57d2445a53b8357bd79d5aabe0d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.007             latitude:33.575             PM2_5:45.62465374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4dc43e793dfa351cb574e6c4e92dd38.setContent(html_b02a57d2445a53b8357bd79d5aabe0d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e62aa1be0b17449069c02afec648df15.bindPopup(popup_b4dc43e793dfa351cb574e6c4e92dd38)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_868a39dde5b485ca8f72f7689ea6019b = L.circleMarker(\\n\",\n       \"                [29.5983, 106.296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f90086f58856607001d7f96287116e94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7804c65eb5e4e43d7723b387523bd07c = $(`&lt;div id=&quot;html_7804c65eb5e4e43d7723b387523bd07c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.296             latitude:29.5983             PM2_5:37.21030641             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f90086f58856607001d7f96287116e94.setContent(html_7804c65eb5e4e43d7723b387523bd07c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_868a39dde5b485ca8f72f7689ea6019b.bindPopup(popup_f90086f58856607001d7f96287116e94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_085ba0c7b50d3d998454dc57f1f49df1 = L.circleMarker(\\n\",\n       \"                [43.7256, 126.6772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8808c676f849ba138eeae9c39df2c598 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_624c7db8a19544f5b9b6c332a11e524b = $(`&lt;div id=&quot;html_624c7db8a19544f5b9b6c332a11e524b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6772             latitude:43.7256             PM2_5:29.62780899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8808c676f849ba138eeae9c39df2c598.setContent(html_624c7db8a19544f5b9b6c332a11e524b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_085ba0c7b50d3d998454dc57f1f49df1.bindPopup(popup_8808c676f849ba138eeae9c39df2c598)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a52dc1431fe0dcb0e99d4118725f4cb0 = L.circleMarker(\\n\",\n       \"                [45.6033, 84.8861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_770060397f51d7f66c1462e4363b9972 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59087475b389f7aafaa9d7e81d29d430 = $(`&lt;div id=&quot;html_59087475b389f7aafaa9d7e81d29d430&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8861             latitude:45.6033             PM2_5:24.26825843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_770060397f51d7f66c1462e4363b9972.setContent(html_59087475b389f7aafaa9d7e81d29d430);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a52dc1431fe0dcb0e99d4118725f4cb0.bindPopup(popup_770060397f51d7f66c1462e4363b9972)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c8d4409d32446ac0df5e57dea82d59b = L.circleMarker(\\n\",\n       \"                [30.4519, 114.8858],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f17ffb15c3a117d569c0698a103374b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce554f789ffc493d59fb10895e103865 = $(`&lt;div id=&quot;html_ce554f789ffc493d59fb10895e103865&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8858             latitude:30.4519             PM2_5:45.08988764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f17ffb15c3a117d569c0698a103374b3.setContent(html_ce554f789ffc493d59fb10895e103865);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c8d4409d32446ac0df5e57dea82d59b.bindPopup(popup_f17ffb15c3a117d569c0698a103374b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ecd488ceb9390416e2bb208e09534b37 = L.circleMarker(\\n\",\n       \"                [43.9167, 125.323],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85d8d52cc41a3dc585be1d3645610eca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2fc9ede4db2c4a46bc702316c5e9ba2 = $(`&lt;div id=&quot;html_d2fc9ede4db2c4a46bc702316c5e9ba2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.323             latitude:43.9167             PM2_5:30.47464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85d8d52cc41a3dc585be1d3645610eca.setContent(html_d2fc9ede4db2c4a46bc702316c5e9ba2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ecd488ceb9390416e2bb208e09534b37.bindPopup(popup_85d8d52cc41a3dc585be1d3645610eca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9221ccb5fdd15e94acb55d9901d167c = L.circleMarker(\\n\",\n       \"                [36.1855, 113.0844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6c5931a22f11cc0f55ad36e3a4147185 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c8f3d1f2cde17d9e23c3e642ed5a741d = $(`&lt;div id=&quot;html_c8f3d1f2cde17d9e23c3e642ed5a741d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0844444             latitude:36.1855             PM2_5:72.24509804             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6c5931a22f11cc0f55ad36e3a4147185.setContent(html_c8f3d1f2cde17d9e23c3e642ed5a741d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9221ccb5fdd15e94acb55d9901d167c.bindPopup(popup_6c5931a22f11cc0f55ad36e3a4147185)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b513517635a6b4598cdb8edbf1f1d1f0 = L.circleMarker(\\n\",\n       \"                [35.303, 113.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc5dd419e607da9194d29ff4d6696561 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_588feb1127e059e6096fa5bf6679a76d = $(`&lt;div id=&quot;html_588feb1127e059e6096fa5bf6679a76d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.883             latitude:35.303             PM2_5:53.45658263             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc5dd419e607da9194d29ff4d6696561.setContent(html_588feb1127e059e6096fa5bf6679a76d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b513517635a6b4598cdb8edbf1f1d1f0.bindPopup(popup_fc5dd419e607da9194d29ff4d6696561)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0bb33369be3f22e838d5fea12972afa = L.circleMarker(\\n\",\n       \"                [34.7745, 117.5852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_505e47c3d3f6c736baf2f49533e1abd8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a166799de80e046787c4a56a9ceb65b = $(`&lt;div id=&quot;html_0a166799de80e046787c4a56a9ceb65b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5852             latitude:34.7745             PM2_5:49.32633053             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_505e47c3d3f6c736baf2f49533e1abd8.setContent(html_0a166799de80e046787c4a56a9ceb65b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0bb33369be3f22e838d5fea12972afa.bindPopup(popup_505e47c3d3f6c736baf2f49533e1abd8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8516aa808f3d5eac33e1629e9aa84ef = L.circleMarker(\\n\",\n       \"                [44.561, 129.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0052ca9cf0bcee9ed69295d3ccd40fe6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d7c501050451b8ceb92e27585ca766b = $(`&lt;div id=&quot;html_3d7c501050451b8ceb92e27585ca766b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.61             latitude:44.561             PM2_5:25.8449848             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0052ca9cf0bcee9ed69295d3ccd40fe6.setContent(html_3d7c501050451b8ceb92e27585ca766b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8516aa808f3d5eac33e1629e9aa84ef.bindPopup(popup_0052ca9cf0bcee9ed69295d3ccd40fe6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94f0ea8da8409c288646f2a078e6197f = L.circleMarker(\\n\",\n       \"                [22.3708, 107.3701],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6186226b9bc284009c85e9c11ec66598 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf49ae7d0afa92695b782c4475836550 = $(`&lt;div id=&quot;html_bf49ae7d0afa92695b782c4475836550&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3701             latitude:22.3708             PM2_5:30.14730878             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6186226b9bc284009c85e9c11ec66598.setContent(html_bf49ae7d0afa92695b782c4475836550);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94f0ea8da8409c288646f2a078e6197f.bindPopup(popup_6186226b9bc284009c85e9c11ec66598)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51a959b81b05ea3453443dae906ea314 = L.circleMarker(\\n\",\n       \"                [31.381, 120.999],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_654a6a53be9418ef10cb8c6093d9dcec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3be64db6f50487f4e1c044f21c0c0c72 = $(`&lt;div id=&quot;html_3be64db6f50487f4e1c044f21c0c0c72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.999             latitude:31.381             PM2_5:37.6265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_654a6a53be9418ef10cb8c6093d9dcec.setContent(html_3be64db6f50487f4e1c044f21c0c0c72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51a959b81b05ea3453443dae906ea314.bindPopup(popup_654a6a53be9418ef10cb8c6093d9dcec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f436b56312718c581488de32c3c7fdc = L.circleMarker(\\n\",\n       \"                [27.3125, 105.2864],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3035dfd3ed332cbc79af47590169fea9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d59f77d02c5619c3b6f0c45ae4969d19 = $(`&lt;div id=&quot;html_d59f77d02c5619c3b6f0c45ae4969d19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.2864             latitude:27.3125             PM2_5:31.51949861             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3035dfd3ed332cbc79af47590169fea9.setContent(html_d59f77d02c5619c3b6f0c45ae4969d19);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f436b56312718c581488de32c3c7fdc.bindPopup(popup_3035dfd3ed332cbc79af47590169fea9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a6e988e6f0b590180ed45f120fec871 = L.circleMarker(\\n\",\n       \"                [23.4168, 103.386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c57b6f3d99c2c1be4218e4034b8ec228 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f58b4462c77070769900970d4b9334d9 = $(`&lt;div id=&quot;html_f58b4462c77070769900970d4b9334d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.386             latitude:23.4168             PM2_5:27.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c57b6f3d99c2c1be4218e4034b8ec228.setContent(html_f58b4462c77070769900970d4b9334d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a6e988e6f0b590180ed45f120fec871.bindPopup(popup_c57b6f3d99c2c1be4218e4034b8ec228)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e5b79a12488fe37f6dc148bc9f2fecd = L.circleMarker(\\n\",\n       \"                [41.1556, 122.0247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46ee48f50176f805d2fd5539286a0c15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4bd19f56396f0783a9f1cbb8e8249466 = $(`&lt;div id=&quot;html_4bd19f56396f0783a9f1cbb8e8249466&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0247             latitude:41.1556             PM2_5:32.5377095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46ee48f50176f805d2fd5539286a0c15.setContent(html_4bd19f56396f0783a9f1cbb8e8249466);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e5b79a12488fe37f6dc148bc9f2fecd.bindPopup(popup_46ee48f50176f805d2fd5539286a0c15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c4d45d96fa9187584dd5b5e714985ac = L.circleMarker(\\n\",\n       \"                [37.177, 119.941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb7b140eabb5f7c26e9dcd8e7e64d748 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_800d175801ec45a958346ac6ea7d7212 = $(`&lt;div id=&quot;html_800d175801ec45a958346ac6ea7d7212&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.941             latitude:37.177             PM2_5:28.97706422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb7b140eabb5f7c26e9dcd8e7e64d748.setContent(html_800d175801ec45a958346ac6ea7d7212);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c4d45d96fa9187584dd5b5e714985ac.bindPopup(popup_eb7b140eabb5f7c26e9dcd8e7e64d748)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d432dc5e7beecb8dd8af4fe2d95b3d3 = L.circleMarker(\\n\",\n       \"                [27.8014, 114.3806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37d16a7a5b8dadea35bf7238cd72ace1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03c6f74dd15091598527e161c6fdc50a = $(`&lt;div id=&quot;html_03c6f74dd15091598527e161c6fdc50a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3806             latitude:27.8014             PM2_5:50.74166667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37d16a7a5b8dadea35bf7238cd72ace1.setContent(html_03c6f74dd15091598527e161c6fdc50a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d432dc5e7beecb8dd8af4fe2d95b3d3.bindPopup(popup_37d16a7a5b8dadea35bf7238cd72ace1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d13e7365c6978bc206f7a85ceca667c = L.circleMarker(\\n\",\n       \"                [32.6389, 110.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c516e810d943d339615618e2bcd8cb9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0de1abab59ce8fba4d3f794fc4fa344 = $(`&lt;div id=&quot;html_d0de1abab59ce8fba4d3f794fc4fa344&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.7258             latitude:32.6389             PM2_5:45.01416431             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c516e810d943d339615618e2bcd8cb9.setContent(html_d0de1abab59ce8fba4d3f794fc4fa344);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d13e7365c6978bc206f7a85ceca667c.bindPopup(popup_5c516e810d943d339615618e2bcd8cb9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72090c759669bec671f68aa54a554357 = L.circleMarker(\\n\",\n       \"                [24.428, 98.5842],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8d827eede5462930e267e5c70cafbaf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1a48b7e7d5d380e0260780afd763e81 = $(`&lt;div id=&quot;html_a1a48b7e7d5d380e0260780afd763e81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5842             latitude:24.428             PM2_5:38.13610315             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8d827eede5462930e267e5c70cafbaf.setContent(html_a1a48b7e7d5d380e0260780afd763e81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72090c759669bec671f68aa54a554357.bindPopup(popup_b8d827eede5462930e267e5c70cafbaf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39e5a837b9ff6898e43dcea88df79155 = L.circleMarker(\\n\",\n       \"                [25.8333, 114.9322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2da25fad9c777fb09787fed2340d8ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6beee15cebd5464ac188ff98bc766bbb = $(`&lt;div id=&quot;html_6beee15cebd5464ac188ff98bc766bbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9322             latitude:25.8333             PM2_5:44.84497207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2da25fad9c777fb09787fed2340d8ad.setContent(html_6beee15cebd5464ac188ff98bc766bbb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39e5a837b9ff6898e43dcea88df79155.bindPopup(popup_a2da25fad9c777fb09787fed2340d8ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe7ecdb9a0ae01d7eb51bff10a557db4 = L.circleMarker(\\n\",\n       \"                [33.567, 114.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b561787516882a6ccc209a35e3d33614 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac2d4dfaf39761f72e095cf891a02ff4 = $(`&lt;div id=&quot;html_ac2d4dfaf39761f72e095cf891a02ff4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.056             latitude:33.567             PM2_5:55.5480226             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b561787516882a6ccc209a35e3d33614.setContent(html_ac2d4dfaf39761f72e095cf891a02ff4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe7ecdb9a0ae01d7eb51bff10a557db4.bindPopup(popup_b561787516882a6ccc209a35e3d33614)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6563909a7ad37dd0670f539ef4199bd8 = L.circleMarker(\\n\",\n       \"                [33.0014, 97.0],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b22c993245bbe8b78e103d312a1e8708 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a3c830f791265e611b274b62580cf8c = $(`&lt;div id=&quot;html_1a3c830f791265e611b274b62580cf8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.0             latitude:33.0014             PM2_5:17.88095238             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b22c993245bbe8b78e103d312a1e8708.setContent(html_1a3c830f791265e611b274b62580cf8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6563909a7ad37dd0670f539ef4199bd8.bindPopup(popup_b22c993245bbe8b78e103d312a1e8708)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d53f96e25c718d9a353847bfa437a5d0 = L.circleMarker(\\n\",\n       \"                [26.2378, 117.6028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e4591452e6fe18b0a393bb455cdfbd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc15298de279cd64c95dff0d2461a20b = $(`&lt;div id=&quot;html_cc15298de279cd64c95dff0d2461a20b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6028             latitude:26.2378             PM2_5:24.41620112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e4591452e6fe18b0a393bb455cdfbd5.setContent(html_cc15298de279cd64c95dff0d2461a20b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d53f96e25c718d9a353847bfa437a5d0.bindPopup(popup_7e4591452e6fe18b0a393bb455cdfbd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f56c5b1ab464e5c2092d7483f8f3c513 = L.circleMarker(\\n\",\n       \"                [41.7561, 123.535],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47c376ae0f01dc94cad71d51f4c64a58 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_466047331ed81043c701a42acd53700f = $(`&lt;div id=&quot;html_466047331ed81043c701a42acd53700f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.535             latitude:41.7561             PM2_5:38.46111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47c376ae0f01dc94cad71d51f4c64a58.setContent(html_466047331ed81043c701a42acd53700f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f56c5b1ab464e5c2092d7483f8f3c513.bindPopup(popup_47c376ae0f01dc94cad71d51f4c64a58)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41f5304a65d361868074d1baeebb3db4 = L.circleMarker(\\n\",\n       \"                [25.0836, 102.728],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ebaa147d146380b28a63769520f9a191 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_138a4875c6f0ca7dd7e6d286c755795d = $(`&lt;div id=&quot;html_138a4875c6f0ca7dd7e6d286c755795d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.728             latitude:25.0836             PM2_5:21.87534626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ebaa147d146380b28a63769520f9a191.setContent(html_138a4875c6f0ca7dd7e6d286c755795d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41f5304a65d361868074d1baeebb3db4.bindPopup(popup_ebaa147d146380b28a63769520f9a191)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cae5d098962ef4d564beea89cea395e = L.circleMarker(\\n\",\n       \"                [34.3547, 107.1431],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6cde352eceed2aa1822721f80eed9d0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6151eb71d7f630602851f5142a4aedb = $(`&lt;div id=&quot;html_e6151eb71d7f630602851f5142a4aedb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1431             latitude:34.3547             PM2_5:50.70172911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6cde352eceed2aa1822721f80eed9d0d.setContent(html_e6151eb71d7f630602851f5142a4aedb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cae5d098962ef4d564beea89cea395e.bindPopup(popup_6cde352eceed2aa1822721f80eed9d0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e9974bdf1cd493cb581e83907e4ba1b = L.circleMarker(\\n\",\n       \"                [39.7153, 76.1861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03236f3db6431da5c1a3146482262811 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d295d388ab2a180b9d9bd141f80dafb = $(`&lt;div id=&quot;html_2d295d388ab2a180b9d9bd141f80dafb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:76.1861             latitude:39.7153             PM2_5:63.63700565             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03236f3db6431da5c1a3146482262811.setContent(html_2d295d388ab2a180b9d9bd141f80dafb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e9974bdf1cd493cb581e83907e4ba1b.bindPopup(popup_03236f3db6431da5c1a3146482262811)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c2cc4a9af2b39f5e8ca26b1d7e67c837 = L.circleMarker(\\n\",\n       \"                [24.9617, 118.6108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af28caf336541c5b2048bb1a3c825828 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98f21837605a1b95b5f65ab41b0e0f8c = $(`&lt;div id=&quot;html_98f21837605a1b95b5f65ab41b0e0f8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6108             latitude:24.9617             PM2_5:25.4             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af28caf336541c5b2048bb1a3c825828.setContent(html_98f21837605a1b95b5f65ab41b0e0f8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c2cc4a9af2b39f5e8ca26b1d7e67c837.bindPopup(popup_af28caf336541c5b2048bb1a3c825828)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_064988516be04fb2d93f09c3dd6a57fb = L.circleMarker(\\n\",\n       \"                [36.283, 120.008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e9aaddfec3d9fd3e98fc51d3f0eefa5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c93983dc1bdf45822d9596c692f942bf = $(`&lt;div id=&quot;html_c93983dc1bdf45822d9596c692f942bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.008             latitude:36.283             PM2_5:38.38483146             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e9aaddfec3d9fd3e98fc51d3f0eefa5.setContent(html_c93983dc1bdf45822d9596c692f942bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_064988516be04fb2d93f09c3dd6a57fb.bindPopup(popup_0e9aaddfec3d9fd3e98fc51d3f0eefa5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13d1612248c8c1b30d16d75edce7e9fe = L.circleMarker(\\n\",\n       \"                [22.5811, 113.074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b5c9e86670c94ce2fba9fbc5b87f33b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76dd4c949a8970564ebbbfabd1896a07 = $(`&lt;div id=&quot;html_76dd4c949a8970564ebbbfabd1896a07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.074             latitude:22.5811             PM2_5:35.29722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b5c9e86670c94ce2fba9fbc5b87f33b.setContent(html_76dd4c949a8970564ebbbfabd1896a07);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13d1612248c8c1b30d16d75edce7e9fe.bindPopup(popup_7b5c9e86670c94ce2fba9fbc5b87f33b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ea040411bff736e550cc580214ff10c = L.circleMarker(\\n\",\n       \"                [29.8264, 106.424],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac7f66eeb46cd9c75b19a70b0f92558a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de0e82fab66de26987acded9bbc5a2c7 = $(`&lt;div id=&quot;html_de0e82fab66de26987acded9bbc5a2c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.424             latitude:29.8264             PM2_5:40.68156425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac7f66eeb46cd9c75b19a70b0f92558a.setContent(html_de0e82fab66de26987acded9bbc5a2c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ea040411bff736e550cc580214ff10c.bindPopup(popup_ac7f66eeb46cd9c75b19a70b0f92558a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52fcef37422c376cf7847cda9224e9c6 = L.circleMarker(\\n\",\n       \"                [43.8358, 126.5844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_013e4791538f7d9a10e32df726da5cfa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_321d7b3aff31d81ce6418144d0bbdb38 = $(`&lt;div id=&quot;html_321d7b3aff31d81ce6418144d0bbdb38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5844             latitude:43.8358             PM2_5:31.67275281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_013e4791538f7d9a10e32df726da5cfa.setContent(html_321d7b3aff31d81ce6418144d0bbdb38);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52fcef37422c376cf7847cda9224e9c6.bindPopup(popup_013e4791538f7d9a10e32df726da5cfa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc2dae343197e1c26b00ec7e7612849f = L.circleMarker(\\n\",\n       \"                [29.9919, 120.605],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19bd03bfdfbf0812b889bb6780ccb438 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_151a293580ede25151ccf73d25713f4b = $(`&lt;div id=&quot;html_151a293580ede25151ccf73d25713f4b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.605             latitude:29.9919             PM2_5:42.86938202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19bd03bfdfbf0812b889bb6780ccb438.setContent(html_151a293580ede25151ccf73d25713f4b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc2dae343197e1c26b00ec7e7612849f.bindPopup(popup_19bd03bfdfbf0812b889bb6780ccb438)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_529158100ab70d2891662d0bbfd24ee4 = L.circleMarker(\\n\",\n       \"                [44.0114, 87.2997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a57de4e9060e86734423c1857e4628fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73641c9ed8a4e05061f283e1c64b2427 = $(`&lt;div id=&quot;html_73641c9ed8a4e05061f283e1c64b2427&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2997             latitude:44.0114             PM2_5:73.18696884             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a57de4e9060e86734423c1857e4628fb.setContent(html_73641c9ed8a4e05061f283e1c64b2427);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_529158100ab70d2891662d0bbfd24ee4.bindPopup(popup_a57de4e9060e86734423c1857e4628fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb2b8349fa573ddbd6a7335091dc90fe = L.circleMarker(\\n\",\n       \"                [35.5102, 102.0199],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4461fc97c713b78b99afd547b19bce49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_193e34b07101a4bd689f0db65d42ebab = $(`&lt;div id=&quot;html_193e34b07101a4bd689f0db65d42ebab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.0199             latitude:35.5102             PM2_5:29.07799443             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4461fc97c713b78b99afd547b19bce49.setContent(html_193e34b07101a4bd689f0db65d42ebab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb2b8349fa573ddbd6a7335091dc90fe.bindPopup(popup_4461fc97c713b78b99afd547b19bce49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f908d883a5e3a6fd8a3f9bcf9ad57af0 = L.circleMarker(\\n\",\n       \"                [31.7133, 118.6439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d027a50fd4d36dd57be7313d5bac6d33 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_013a802676cb2c84e075bca9ba579a5a = $(`&lt;div id=&quot;html_013a802676cb2c84e075bca9ba579a5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6439             latitude:31.7133             PM2_5:57.34135977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d027a50fd4d36dd57be7313d5bac6d33.setContent(html_013a802676cb2c84e075bca9ba579a5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f908d883a5e3a6fd8a3f9bcf9ad57af0.bindPopup(popup_d027a50fd4d36dd57be7313d5bac6d33)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_2400ebe368234b1b6649ad37438c3e2b = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_2400ebe368234b1b6649ad37438c3e2b.color = d3.scale.threshold()\\n\",\n       \"              .domain([3.856338028, 4.011243496220441, 4.166148964440882, 4.321054432661323, 4.475959900881763, 4.630865369102205, 4.785770837322645, 4.940676305543086, 5.095581773763527, 5.2504872419839685, 5.405392710204409, 5.5602981784248495, 5.715203646645291, 5.870109114865731, 6.025014583086172, 6.179920051306613, 6.334825519527055, 6.489730987747495, 6.644636455967936, 6.799541924188377, 6.954447392408818, 7.109352860629259, 7.264258328849699, 7.419163797070141, 7.574069265290581, 7.728974733511022, 7.883880201731463, 8.038785669951904, 8.193691138172344, 8.348596606392785, 8.503502074613227, 8.658407542833668, 8.813313011054108, 8.96821847927455, 9.12312394749499, 9.27802941571543, 9.432934883935872, 9.587840352156313, 9.742745820376754, 9.897651288597194, 10.052556756817635, 10.207462225038077, 10.362367693258518, 10.517273161478958, 10.672178629699399, 10.82708409791984, 10.981989566140282, 11.136895034360721, 11.291800502581163, 11.446705970801604, 11.601611439022044, 11.756516907242485, 11.911422375462925, 12.066327843683366, 12.221233311903807, 12.376138780124247, 12.531044248344688, 12.68594971656513, 12.840855184785571, 12.99576065300601, 13.150666121226452, 13.305571589446894, 13.460477057667335, 13.615382525887775, 13.770287994108216, 13.925193462328657, 14.080098930549097, 14.235004398769538, 14.38990986698998, 14.544815335210421, 14.69972080343086, 14.854626271651302, 15.009531739871743, 15.164437208092185, 15.319342676312624, 15.474248144533066, 15.629153612753507, 15.784059080973948, 15.938964549194388, 16.09387001741483, 16.24877548563527, 16.403680953855712, 16.558586422076154, 16.713491890296595, 16.868397358517036, 17.023302826737474, 17.178208294957916, 17.333113763178357, 17.4880192313988, 17.64292469961924, 17.79783016783968, 17.952735636060122, 18.107641104280564, 18.262546572501, 18.417452040721443, 18.572357508941884, 18.727262977162326, 18.882168445382767, 19.03707391360321, 19.19197938182365, 19.346884850044088, 19.50179031826453, 19.65669578648497, 19.811601254705412, 19.96650672292585, 20.12141219114629, 20.276317659366732, 20.431223127587174, 20.586128595807615, 20.741034064028057, 20.895939532248494, 21.050845000468936, 21.205750468689377, 21.36065593690982, 21.51556140513026, 21.6704668733507, 21.825372341571143, 21.98027780979158, 22.135183278012022, 22.290088746232463, 22.444994214452905, 22.599899682673346, 22.754805150893787, 22.90971061911423, 23.06461608733467, 23.219521555555108, 23.37442702377555, 23.52933249199599, 23.684237960216432, 23.839143428436874, 23.994048896657315, 24.148954364877756, 24.303859833098194, 24.458765301318635, 24.613670769539077, 24.768576237759518, 24.92348170597996, 25.0783871742004, 25.233292642420842, 25.388198110641284, 25.54310357886172, 25.698009047082163, 25.852914515302604, 26.007819983523046, 26.162725451743487, 26.31763091996393, 26.47253638818437, 26.627441856404808, 26.78234732462525, 26.93725279284569, 27.092158261066132, 27.247063729286573, 27.401969197507015, 27.556874665727456, 27.711780133947897, 27.866685602168335, 28.021591070388777, 28.176496538609218, 28.33140200682966, 28.4863074750501, 28.641212943270542, 28.796118411490983, 28.95102387971142, 29.105929347931863, 29.260834816152304, 29.415740284372745, 29.570645752593187, 29.725551220813628, 29.88045668903407, 30.03536215725451, 30.19026762547495, 30.34517309369539, 30.50007856191583, 30.654984030136273, 30.809889498356714, 30.964794966577156, 31.119700434797597, 31.274605903018035, 31.429511371238476, 31.584416839458918, 31.73932230767936, 31.8942277758998, 32.04913324412024, 32.20403871234068, 32.358944180561124, 32.513849648781566, 32.66875511700201, 32.82366058522245, 32.97856605344289, 33.13347152166333, 33.28837698988377, 33.443282458104214, 33.59818792632465, 33.75309339454509, 33.90799886276553, 34.06290433098597, 34.217809799206414, 34.372715267426855, 34.5276207356473, 34.68252620386774, 34.83743167208817, 34.992337140308614, 35.147242608529055, 35.302148076749496, 35.45705354496994, 35.61195901319038, 35.76686448141082, 35.92176994963127, 36.0766754178517, 36.231580886072145, 36.386486354292586, 36.54139182251303, 36.69629729073347, 36.85120275895391, 37.00610822717435, 37.16101369539479, 37.315919163615234, 37.470824631835676, 37.62573010005612, 37.78063556827655, 37.93554103649699, 38.090446504717434, 38.245351972937875, 38.40025744115832, 38.55516290937876, 38.7100683775992, 38.86497384581964, 39.01987931404008, 39.174784782260524, 39.329690250480965, 39.48459571870141, 39.63950118692185, 39.79440665514229, 39.94931212336273, 40.104217591583165, 40.259123059803606, 40.41402852802405, 40.56893399624449, 40.72383946446493, 40.87874493268537, 41.03365040090581, 41.188555869126255, 41.343461337346696, 41.49836680556714, 41.65327227378758, 41.80817774200802, 41.96308321022846, 42.1179886784489, 42.272894146669344, 42.42779961488978, 42.58270508311022, 42.73761055133066, 42.8925160195511, 43.047421487771544, 43.202326955991985, 43.35723242421243, 43.51213789243287, 43.66704336065331, 43.82194882887375, 43.97685429709419, 44.131759765314634, 44.286665233535075, 44.441570701755516, 44.59647616997596, 44.75138163819639, 44.90628710641683, 45.061192574637275, 45.216098042857716, 45.37100351107816, 45.5259089792986, 45.68081444751904, 45.83571991573948, 45.99062538395992, 46.145530852180364, 46.300436320400806, 46.45534178862125, 46.61024725684169, 46.76515272506213, 46.92005819328257, 47.074963661503006, 47.22986912972345, 47.38477459794389, 47.53968006616433, 47.69458553438477, 47.84949100260521, 48.004396470825654, 48.159301939046095, 48.31420740726654, 48.46911287548698, 48.62401834370742, 48.77892381192786, 48.9338292801483, 49.08873474836874, 49.243640216589185, 49.39854568480962, 49.55345115303006, 49.7083566212505, 49.86326208947094, 50.018167557691385, 50.173073025911826, 50.32797849413227, 50.48288396235271, 50.63778943057315, 50.79269489879359, 50.94760036701403, 51.102505835234474, 51.257411303454916, 51.41231677167536, 51.5672222398958, 51.72212770811623, 51.877033176336674, 52.031938644557115, 52.18684411277756, 52.341749580998, 52.49665504921844, 52.65156051743888, 52.80646598565932, 52.961371453879764, 53.116276922100205, 53.27118239032065, 53.42608785854109, 53.58099332676153, 53.73589879498197, 53.89080426320241, 54.045709731422846, 54.20061519964329, 54.35552066786373, 54.51042613608417, 54.66533160430461, 54.82023707252505, 54.975142540745495, 55.130048008965936, 55.28495347718638, 55.43985894540682, 55.59476441362726, 55.7496698818477, 55.90457535006814, 56.059480818288584, 56.214386286509026, 56.36929175472946, 56.5241972229499, 56.67910269117034, 56.834008159390784, 56.988913627611225, 57.14381909583167, 57.29872456405211, 57.45363003227255, 57.60853550049299, 57.76344096871343, 57.918346436933874, 58.073251905154315, 58.228157373374756, 58.3830628415952, 58.53796830981564, 58.69287377803607, 58.847779246256515, 59.002684714476956, 59.1575901826974, 59.31249565091784, 59.46740111913828, 59.62230658735872, 59.77721205557916, 59.932117523799604, 60.087022992020046, 60.24192846024049, 60.39683392846093, 60.55173939668137, 60.70664486490181, 60.86155033312225, 61.01645580134269, 61.17136126956313, 61.32626673778357, 61.48117220600401, 61.63607767422445, 61.790983142444894, 61.945888610665335, 62.10079407888578, 62.25569954710622, 62.41060501532666, 62.5655104835471, 62.72041595176754, 62.87532141998798, 63.030226888208425, 63.185132356428866, 63.3400378246493, 63.49494329286974, 63.64984876109018, 63.804754229310625, 63.959659697531066, 64.1145651657515, 64.26947063397195, 64.42437610219238, 64.57928157041283, 64.73418703863327, 64.88909250685371, 65.04399797507415, 65.1989034432946, 65.35380891151503, 65.50871437973548, 65.66361984795591, 65.81852531617635, 65.97343078439678, 66.12833625261723, 66.28324172083767, 66.43814718905811, 66.59305265727855, 66.747958125499, 66.90286359371943, 67.05776906193988, 67.21267453016031, 67.36757999838076, 67.5224854666012, 67.67739093482164, 67.83229640304208, 67.98720187126253, 68.14210733948296, 68.2970128077034, 68.45191827592384, 68.60682374414428, 68.76172921236473, 68.91663468058516, 69.07154014880561, 69.22644561702604, 69.3813510852465, 69.53625655346693, 69.69116202168736, 69.84606748990781, 70.00097295812824, 70.15587842634869, 70.31078389456913, 70.46568936278958, 70.62059483101001, 70.77550029923046, 70.93040576745089, 71.08531123567134, 71.24021670389178, 71.39512217211222, 71.55002764033266, 71.70493310855309, 71.85983857677354, 72.01474404499398, 72.16964951321442, 72.32455498143486, 72.4794604496553, 72.63436591787574, 72.78927138609619, 72.94417685431662, 73.09908232253707, 73.2539877907575, 73.40889325897795, 73.56379872719839, 73.71870419541884, 73.87360966363927, 74.0285151318597, 74.18342060008015, 74.33832606830059, 74.49323153652104, 74.64813700474147, 74.80304247296192, 74.95794794118235, 75.1128534094028, 75.26775887762324, 75.42266434584369, 75.57756981406412, 75.73247528228457, 75.887380750505, 76.04228621872545, 76.19719168694589, 76.35209715516632, 76.50700262338677, 76.6619080916072, 76.81681355982765, 76.97171902804808, 77.12662449626853, 77.28152996448897, 77.43643543270942, 77.59134090092985, 77.7462463691503, 77.90115183737073, 78.05605730559118, 78.21096277381162, 78.36586824203206, 78.5207737102525, 78.67567917847293, 78.83058464669338, 78.98549011491382, 79.14039558313426, 79.2953010513547, 79.45020651957515, 79.60511198779558, 79.76001745601603, 79.91492292423646, 80.06982839245691, 80.22473386067735, 80.3796393288978, 80.53454479711823, 80.68945026533868, 80.84435573355911, 80.99926120177955, 81.15416667])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_2400ebe368234b1b6649ad37438c3e2b.x = d3.scale.linear()\\n\",\n       \"              .domain([3.856338028, 81.15416667])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_2400ebe368234b1b6649ad37438c3e2b.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_2400ebe368234b1b6649ad37438c3e2b.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_2400ebe368234b1b6649ad37438c3e2b.legend.addTo(map_5d80a72486c9e0ddb37bdba91bb4bda6);\\n\",\n       \"\\n\",\n       \"    color_map_2400ebe368234b1b6649ad37438c3e2b.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_2400ebe368234b1b6649ad37438c3e2b.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([3.856338028, &#x27;&#x27;, &#x27;&#x27;, 15.451012324299999, &#x27;&#x27;, &#x27;&#x27;, 27.045686620599998, &#x27;&#x27;, &#x27;&#x27;, 38.6403609169, &#x27;&#x27;, &#x27;&#x27;, 50.2350352132, &#x27;&#x27;, &#x27;&#x27;, 61.8297095095, &#x27;&#x27;, &#x27;&#x27;, 73.42438380579999, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_2400ebe368234b1b6649ad37438c3e2b.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_2400ebe368234b1b6649ad37438c3e2b.g = color_map_2400ebe368234b1b6649ad37438c3e2b.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_2400ebe368234b1b6649ad37438c3e2b.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_2400ebe368234b1b6649ad37438c3e2b.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_2400ebe368234b1b6649ad37438c3e2b.x(color_map_2400ebe368234b1b6649ad37438c3e2b.color.domain()[i - 1]) : color_map_2400ebe368234b1b6649ad37438c3e2b.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_2400ebe368234b1b6649ad37438c3e2b.color.domain().length ? color_map_2400ebe368234b1b6649ad37438c3e2b.x(color_map_2400ebe368234b1b6649ad37438c3e2b.color.domain()[i]) : color_map_2400ebe368234b1b6649ad37438c3e2b.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_2400ebe368234b1b6649ad37438c3e2b.g.call(color_map_2400ebe368234b1b6649ad37438c3e2b.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1d9b775b820>\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.display_dataset(name='valid', y_column='PM2_5', colors=[\\n\",\n    \"                           'blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Test\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"id\": \"1923301AF2954BED8B9E3D2CC43B2AF8\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_0e32c301fb6cacae3376c564c9c475ed {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_0e32c301fb6cacae3376c564c9c475ed&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_0e32c301fb6cacae3376c564c9c475ed = L.map(\\n\",\n       \"                &quot;map_0e32c301fb6cacae3376c564c9c475ed&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_b7f82a655744d2b9144722775c5030ec = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_b7f82a655744d2b9144722775c5030ec.addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b682191373f4127c17cb6d77ed5aa940 = L.circleMarker(\\n\",\n       \"                [36.1942, 117.0881],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ae0be9c177fc7c95bf3a16c087b8fd6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0650063f97dc6bb36cd277b58205a748 = $(`&lt;div id=&quot;html_0650063f97dc6bb36cd277b58205a748&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0881             latitude:36.1942             PM2_5:48.14542936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ae0be9c177fc7c95bf3a16c087b8fd6.setContent(html_0650063f97dc6bb36cd277b58205a748);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b682191373f4127c17cb6d77ed5aa940.bindPopup(popup_8ae0be9c177fc7c95bf3a16c087b8fd6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_863c8a58f142e00e5b424a1353c0fe1f = L.circleMarker(\\n\",\n       \"                [28.56, 112.3439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d25e96bddce9a53ad8414e8f215c1a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f9d137e10b08193cd693f9d5956f2aa = $(`&lt;div id=&quot;html_8f9d137e10b08193cd693f9d5956f2aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3439             latitude:28.56             PM2_5:39.57022472             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d25e96bddce9a53ad8414e8f215c1a6.setContent(html_8f9d137e10b08193cd693f9d5956f2aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_863c8a58f142e00e5b424a1353c0fe1f.bindPopup(popup_3d25e96bddce9a53ad8414e8f215c1a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a4ed5343b4fc5de9d832c93db17154a = L.circleMarker(\\n\",\n       \"                [31.0386, 112.2211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3253f4beb59d8f4c5bd24e630ebc2512 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58de677ff0c830c087a95f1ff22dd60c = $(`&lt;div id=&quot;html_58de677ff0c830c087a95f1ff22dd60c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2211             latitude:31.0386             PM2_5:54.21848739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3253f4beb59d8f4c5bd24e630ebc2512.setContent(html_58de677ff0c830c087a95f1ff22dd60c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a4ed5343b4fc5de9d832c93db17154a.bindPopup(popup_3253f4beb59d8f4c5bd24e630ebc2512)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b05468ae8bbef381ca59d5e1c51dc843 = L.circleMarker(\\n\",\n       \"                [32.1383, 114.0614],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d17cb938c2b9a3b9d1daef3f61f5031d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94155ec25544e43a471e9d87125dc9b4 = $(`&lt;div id=&quot;html_94155ec25544e43a471e9d87125dc9b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0614             latitude:32.1383             PM2_5:51.8125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d17cb938c2b9a3b9d1daef3f61f5031d.setContent(html_94155ec25544e43a471e9d87125dc9b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b05468ae8bbef381ca59d5e1c51dc843.bindPopup(popup_d17cb938c2b9a3b9d1daef3f61f5031d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa1291ddbcdcf3d7989f7e1a0326ee15 = L.circleMarker(\\n\",\n       \"                [36.67, 116.93],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca62888295441d7aa1b4eb2714fa4383 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_922e1111c1955b7e4be484b18c5a5254 = $(`&lt;div id=&quot;html_922e1111c1955b7e4be484b18c5a5254&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.93             latitude:36.67             PM2_5:51.10704225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca62888295441d7aa1b4eb2714fa4383.setContent(html_922e1111c1955b7e4be484b18c5a5254);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa1291ddbcdcf3d7989f7e1a0326ee15.bindPopup(popup_ca62888295441d7aa1b4eb2714fa4383)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a8cfa9620b9e2e479cfff97f637cc04 = L.circleMarker(\\n\",\n       \"                [28.6542, 121.419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_694caa9edc1cd1d390fc9ab28cc2161a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_75d5070173e7de5a4ca401d352831656 = $(`&lt;div id=&quot;html_75d5070173e7de5a4ca401d352831656&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.419             latitude:28.6542             PM2_5:31.10814607             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_694caa9edc1cd1d390fc9ab28cc2161a.setContent(html_75d5070173e7de5a4ca401d352831656);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a8cfa9620b9e2e479cfff97f637cc04.bindPopup(popup_694caa9edc1cd1d390fc9ab28cc2161a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61a42a23173e655ce1f849c7fb669d85 = L.circleMarker(\\n\",\n       \"                [28.2642, 117.0564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9edb141b44e12eec734f4b609d32a9be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9bbcc6c9a077ef56be081e225225b1bf = $(`&lt;div id=&quot;html_9bbcc6c9a077ef56be081e225225b1bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0564             latitude:28.2642             PM2_5:34.52683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9edb141b44e12eec734f4b609d32a9be.setContent(html_9bbcc6c9a077ef56be081e225225b1bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61a42a23173e655ce1f849c7fb669d85.bindPopup(popup_9edb141b44e12eec734f4b609d32a9be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ad369bd3402273117a714aee3d34a0e = L.circleMarker(\\n\",\n       \"                [34.6511, 112.3939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0473778c9f7a973314d29eb35c615671 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e9feb198e14dde0600d2fe3137d9c4c = $(`&lt;div id=&quot;html_5e9feb198e14dde0600d2fe3137d9c4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3939             latitude:34.6511             PM2_5:64.64325843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0473778c9f7a973314d29eb35c615671.setContent(html_5e9feb198e14dde0600d2fe3137d9c4c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ad369bd3402273117a714aee3d34a0e.bindPopup(popup_0473778c9f7a973314d29eb35c615671)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be62eb68b1f63b66ff6e1ca663e0dc0e = L.circleMarker(\\n\",\n       \"                [25.067, 102.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73e5dace66009210af17708e8c4101fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7811f1dacb68beb7be20fcefcb8abbfc = $(`&lt;div id=&quot;html_7811f1dacb68beb7be20fcefcb8abbfc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.681             latitude:25.067             PM2_5:25.84722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73e5dace66009210af17708e8c4101fc.setContent(html_7811f1dacb68beb7be20fcefcb8abbfc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be62eb68b1f63b66ff6e1ca663e0dc0e.bindPopup(popup_73e5dace66009210af17708e8c4101fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb4418b1270795160e58d53b14adff48 = L.circleMarker(\\n\",\n       \"                [23.1331, 113.26],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef9bc3aa3bb2d2d6c3fb403e11f9efe8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbf983135ff6832060657309b6fdefb1 = $(`&lt;div id=&quot;html_dbf983135ff6832060657309b6fdefb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.26             latitude:23.1331             PM2_5:35.90896359             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef9bc3aa3bb2d2d6c3fb403e11f9efe8.setContent(html_dbf983135ff6832060657309b6fdefb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb4418b1270795160e58d53b14adff48.bindPopup(popup_ef9bc3aa3bb2d2d6c3fb403e11f9efe8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44b58dc74b6b49267ec4ace66a20dd67 = L.circleMarker(\\n\",\n       \"                [23.06, 113.7480556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b954e05df430461c98d58f92add43c40 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5244b71d303660270ebba516e2ac5f51 = $(`&lt;div id=&quot;html_5244b71d303660270ebba516e2ac5f51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7480556             latitude:23.06             PM2_5:39.63445378             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b954e05df430461c98d58f92add43c40.setContent(html_5244b71d303660270ebba516e2ac5f51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44b58dc74b6b49267ec4ace66a20dd67.bindPopup(popup_b954e05df430461c98d58f92add43c40)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_beee4e0959b824fa62773217b8e64ce8 = L.circleMarker(\\n\",\n       \"                [32.8928, 115.8275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e510f53b6fd3c98075e4965bbb2e130a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62e9159fcda895c3f0d32cbda43fdea4 = $(`&lt;div id=&quot;html_62e9159fcda895c3f0d32cbda43fdea4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8275             latitude:32.8928             PM2_5:51.21148459             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e510f53b6fd3c98075e4965bbb2e130a.setContent(html_62e9159fcda895c3f0d32cbda43fdea4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_beee4e0959b824fa62773217b8e64ce8.bindPopup(popup_e510f53b6fd3c98075e4965bbb2e130a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a2448e05a1a12e546c2261601ab6790 = L.circleMarker(\\n\",\n       \"                [27.6231, 113.8447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6d0029f6fa5eb30ce0bdb76af51ee98d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbe9af208a161f7ff79081972fbabe7b = $(`&lt;div id=&quot;html_fbe9af208a161f7ff79081972fbabe7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8447             latitude:27.6231             PM2_5:47.67086835             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6d0029f6fa5eb30ce0bdb76af51ee98d.setContent(html_fbe9af208a161f7ff79081972fbabe7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a2448e05a1a12e546c2261601ab6790.bindPopup(popup_6d0029f6fa5eb30ce0bdb76af51ee98d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_786a557349e97fdcea428c5c6eea9b20 = L.circleMarker(\\n\",\n       \"                [36.2403, 120.4001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d920544f826799733f7abac375cbcad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb9fd25327b80f5267f2f38e99fa7ec7 = $(`&lt;div id=&quot;html_bb9fd25327b80f5267f2f38e99fa7ec7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4001             latitude:36.2403             PM2_5:30.67             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d920544f826799733f7abac375cbcad.setContent(html_bb9fd25327b80f5267f2f38e99fa7ec7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_786a557349e97fdcea428c5c6eea9b20.bindPopup(popup_5d920544f826799733f7abac375cbcad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1388c95f5b78dd198b7e2bdddce4af6 = L.circleMarker(\\n\",\n       \"                [31.8531, 106.7594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e017bd85981c00253a819897e86ff499 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7edbd330b2f29a3425821cdaa569cb29 = $(`&lt;div id=&quot;html_7edbd330b2f29a3425821cdaa569cb29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7594             latitude:31.8531             PM2_5:34.7867036             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e017bd85981c00253a819897e86ff499.setContent(html_7edbd330b2f29a3425821cdaa569cb29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1388c95f5b78dd198b7e2bdddce4af6.bindPopup(popup_e017bd85981c00253a819897e86ff499)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_384872b9026758430798346546c5d1fe = L.circleMarker(\\n\",\n       \"                [41.7192, 86.2022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab10c7b79577ae0943460bd5774fe83a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_997dae0d9dd7661f725dd80d19c5e08f = $(`&lt;div id=&quot;html_997dae0d9dd7661f725dd80d19c5e08f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.2022             latitude:41.7192             PM2_5:52.89481268             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab10c7b79577ae0943460bd5774fe83a.setContent(html_997dae0d9dd7661f725dd80d19c5e08f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_384872b9026758430798346546c5d1fe.bindPopup(popup_ab10c7b79577ae0943460bd5774fe83a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ccee6251a8ba41c43a5ba24a0bf2c704 = L.circleMarker(\\n\",\n       \"                [34.2324, 108.94],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ff5bce2c1685a7271589dcc139b0b94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe59d764afb18e2536dca507e8bd5958 = $(`&lt;div id=&quot;html_fe59d764afb18e2536dca507e8bd5958&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.94             latitude:34.2324             PM2_5:66.77361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ff5bce2c1685a7271589dcc139b0b94.setContent(html_fe59d764afb18e2536dca507e8bd5958);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ccee6251a8ba41c43a5ba24a0bf2c704.bindPopup(popup_8ff5bce2c1685a7271589dcc139b0b94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df3f7f39900ffcd61c633360dc65a8ed = L.circleMarker(\\n\",\n       \"                [31.7694, 120.0469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_400ba3b4ca0180c9bb716cc9676db8c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4838d9bb1f92eb79be1c5df04934794 = $(`&lt;div id=&quot;html_a4838d9bb1f92eb79be1c5df04934794&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.0469             latitude:31.7694             PM2_5:46.64772727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_400ba3b4ca0180c9bb716cc9676db8c7.setContent(html_a4838d9bb1f92eb79be1c5df04934794);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df3f7f39900ffcd61c633360dc65a8ed.bindPopup(popup_400ba3b4ca0180c9bb716cc9676db8c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_475731fa5b2ef62ab936d122d8822c23 = L.circleMarker(\\n\",\n       \"                [46.3991, 124.8847],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f82a43ae8bf7dc27d73c737363d9a8e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a000e1f1b64cbf3eddc6fa59b2b9153b = $(`&lt;div id=&quot;html_a000e1f1b64cbf3eddc6fa59b2b9153b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8847             latitude:46.3991             PM2_5:22.25633803             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f82a43ae8bf7dc27d73c737363d9a8e1.setContent(html_a000e1f1b64cbf3eddc6fa59b2b9153b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_475731fa5b2ef62ab936d122d8822c23.bindPopup(popup_f82a43ae8bf7dc27d73c737363d9a8e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2afaeea3fd048eef8f0ea30e0d86efa5 = L.circleMarker(\\n\",\n       \"                [41.8625, 124.0383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc714dcd6cf2ac9b803d3f9d839dc16e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e0c8e1bfdfeaf46d30668ae2a5949ef = $(`&lt;div id=&quot;html_1e0c8e1bfdfeaf46d30668ae2a5949ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.0383             latitude:41.8625             PM2_5:29.60694444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc714dcd6cf2ac9b803d3f9d839dc16e.setContent(html_1e0c8e1bfdfeaf46d30668ae2a5949ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2afaeea3fd048eef8f0ea30e0d86efa5.bindPopup(popup_fc714dcd6cf2ac9b803d3f9d839dc16e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d86e45d2885c7daa2ebedea8a269784 = L.circleMarker(\\n\",\n       \"                [42.0352, 119.2654],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b680151a81e13328a368f5201309a69 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef64c6a10c3539f2763fd736ce9cb82c = $(`&lt;div id=&quot;html_ef64c6a10c3539f2763fd736ce9cb82c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.2654             latitude:42.0352             PM2_5:35.10584958             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b680151a81e13328a368f5201309a69.setContent(html_ef64c6a10c3539f2763fd736ce9cb82c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d86e45d2885c7daa2ebedea8a269784.bindPopup(popup_7b680151a81e13328a368f5201309a69)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee09e4124a6733465bbd32771503d9a9 = L.circleMarker(\\n\",\n       \"                [29.8211, 114.3231],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf6d21c3184ba82c8eb465b051bfcf49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24ef366c9002389ae67dc68788d454df = $(`&lt;div id=&quot;html_24ef366c9002389ae67dc68788d454df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3231             latitude:29.8211             PM2_5:40.85097493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf6d21c3184ba82c8eb465b051bfcf49.setContent(html_24ef366c9002389ae67dc68788d454df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee09e4124a6733465bbd32771503d9a9.bindPopup(popup_bf6d21c3184ba82c8eb465b051bfcf49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01e4d615740c14d8837d380042480ef9 = L.circleMarker(\\n\",\n       \"                [28.7867, 104.6061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d2b654cedba159e5b090d110e0e99e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e758f3d17d321df443038a118709d1a3 = $(`&lt;div id=&quot;html_e758f3d17d321df443038a118709d1a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6061             latitude:28.7867             PM2_5:50.48179272             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d2b654cedba159e5b090d110e0e99e6.setContent(html_e758f3d17d321df443038a118709d1a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01e4d615740c14d8837d380042480ef9.bindPopup(popup_7d2b654cedba159e5b090d110e0e99e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ec04103f99c45f936d11e85a4f21885 = L.circleMarker(\\n\",\n       \"                [45.6289, 122.8444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4cc30f070da9b4f2fc6edca57a8aa7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a9d34fe965a684c6050eeccfc396f59 = $(`&lt;div id=&quot;html_2a9d34fe965a684c6050eeccfc396f59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.8444             latitude:45.6289             PM2_5:27.69308357             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4cc30f070da9b4f2fc6edca57a8aa7e.setContent(html_2a9d34fe965a684c6050eeccfc396f59);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ec04103f99c45f936d11e85a4f21885.bindPopup(popup_a4cc30f070da9b4f2fc6edca57a8aa7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_933f52d139bd1767329a3a566446c9ab = L.circleMarker(\\n\",\n       \"                [40.7866, 111.551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5afdce1231c51d8dd597c5acfa1d901f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17b1ebd6508d8aa0a425022700d4ff41 = $(`&lt;div id=&quot;html_17b1ebd6508d8aa0a425022700d4ff41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.551             latitude:40.7866             PM2_5:47.61559889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5afdce1231c51d8dd597c5acfa1d901f.setContent(html_17b1ebd6508d8aa0a425022700d4ff41);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_933f52d139bd1767329a3a566446c9ab.bindPopup(popup_5afdce1231c51d8dd597c5acfa1d901f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_492f670a049cb3245706cd7b8b0376fd = L.circleMarker(\\n\",\n       \"                [45.7319, 126.685],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b23bc3605b2637857d38d35595b32abd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7061d481ed0395c756fe44e5c89aeada = $(`&lt;div id=&quot;html_7061d481ed0395c756fe44e5c89aeada&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.685             latitude:45.7319             PM2_5:35.66852368             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b23bc3605b2637857d38d35595b32abd.setContent(html_7061d481ed0395c756fe44e5c89aeada);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_492f670a049cb3245706cd7b8b0376fd.bindPopup(popup_b23bc3605b2637857d38d35595b32abd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71924a91e74491db6eb1063d9a4db9e7 = L.circleMarker(\\n\",\n       \"                [35.94, 104.148],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8c87d0678750b989655b3fe68051ca0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f58d3ef7a0885ef97982c86743fe3fb1 = $(`&lt;div id=&quot;html_f58d3ef7a0885ef97982c86743fe3fb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.148             latitude:35.94             PM2_5:27.50283286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8c87d0678750b989655b3fe68051ca0.setContent(html_f58d3ef7a0885ef97982c86743fe3fb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71924a91e74491db6eb1063d9a4db9e7.bindPopup(popup_a8c87d0678750b989655b3fe68051ca0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df4011dc57a73fd4face36c4868db62e = L.circleMarker(\\n\",\n       \"                [34.1781, 117.1694],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a3b9cc31a078cd0e8a72842a35571a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5b8c0fd2725faaae9903592d70d4564 = $(`&lt;div id=&quot;html_a5b8c0fd2725faaae9903592d70d4564&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1694             latitude:34.1781             PM2_5:63.68130312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a3b9cc31a078cd0e8a72842a35571a2.setContent(html_a5b8c0fd2725faaae9903592d70d4564);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df4011dc57a73fd4face36c4868db62e.bindPopup(popup_1a3b9cc31a078cd0e8a72842a35571a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8a94819b4716efd3b5d6d79d9d10b36e = L.circleMarker(\\n\",\n       \"                [23.2536, 116.4019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30c661853a4e44bedde99a9cc3b90f63 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57562349c3faea5b31aeb8cfb8d51d8c = $(`&lt;div id=&quot;html_57562349c3faea5b31aeb8cfb8d51d8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.4019             latitude:23.2536             PM2_5:29.83704735             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30c661853a4e44bedde99a9cc3b90f63.setContent(html_57562349c3faea5b31aeb8cfb8d51d8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8a94819b4716efd3b5d6d79d9d10b36e.bindPopup(popup_30c661853a4e44bedde99a9cc3b90f63)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d1457a4bb9f9db7269dfda0ee30c0ca = L.circleMarker(\\n\",\n       \"                [32.41361, 119.458],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a964d212bcfccb315f3b28dc2f86e2f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46480c5b73771aeec27626e63452ed92 = $(`&lt;div id=&quot;html_46480c5b73771aeec27626e63452ed92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.458             latitude:32.41361             PM2_5:47.77423823             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a964d212bcfccb315f3b28dc2f86e2f3.setContent(html_46480c5b73771aeec27626e63452ed92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d1457a4bb9f9db7269dfda0ee30c0ca.bindPopup(popup_a964d212bcfccb315f3b28dc2f86e2f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7618792e1c405f69611d27f165021d8 = L.circleMarker(\\n\",\n       \"                [26.0753, 119.315],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd645ccf6075be6594304cf1ef57a11e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be2a4df6f72658525a7022413168d097 = $(`&lt;div id=&quot;html_be2a4df6f72658525a7022413168d097&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.315             latitude:26.0753             PM2_5:31.11871508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd645ccf6075be6594304cf1ef57a11e.setContent(html_be2a4df6f72658525a7022413168d097);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7618792e1c405f69611d27f165021d8.bindPopup(popup_bd645ccf6075be6594304cf1ef57a11e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18c65c0bd1b695af4181ddf82baa9811 = L.circleMarker(\\n\",\n       \"                [37.85, 113.5158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eee413ed3f49856ed0f4af198cd41131 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3316a1f342ea60d17ee11c914bb84366 = $(`&lt;div id=&quot;html_3316a1f342ea60d17ee11c914bb84366&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5158             latitude:37.85             PM2_5:48.72804533             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eee413ed3f49856ed0f4af198cd41131.setContent(html_3316a1f342ea60d17ee11c914bb84366);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18c65c0bd1b695af4181ddf82baa9811.bindPopup(popup_eee413ed3f49856ed0f4af198cd41131)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2efe2e73138b045ab3997502dc2bdd4f = L.circleMarker(\\n\",\n       \"                [25.8481, 114.9461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4aa2d8e18867a47a41996e45800622a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97a91671350a8c76b31b0649957848ee = $(`&lt;div id=&quot;html_97a91671350a8c76b31b0649957848ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9461             latitude:25.8481             PM2_5:45.10138889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4aa2d8e18867a47a41996e45800622a9.setContent(html_97a91671350a8c76b31b0649957848ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2efe2e73138b045ab3997502dc2bdd4f.bindPopup(popup_4aa2d8e18867a47a41996e45800622a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbe4f5d17c2fe7eaa6e7c4b8b1b70fe1 = L.circleMarker(\\n\",\n       \"                [38.3344, 109.7414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26bf99b6b2011dc88123eccae98042b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e83fa603450f996fd9a7fb17e7cd785b = $(`&lt;div id=&quot;html_e83fa603450f996fd9a7fb17e7cd785b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7414             latitude:38.3344             PM2_5:28.8960114             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26bf99b6b2011dc88123eccae98042b4.setContent(html_e83fa603450f996fd9a7fb17e7cd785b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbe4f5d17c2fe7eaa6e7c4b8b1b70fe1.bindPopup(popup_26bf99b6b2011dc88123eccae98042b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4ee7457612ae83e3477d040641987e3 = L.circleMarker(\\n\",\n       \"                [31.6842, 120.288],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a42ba311867f3ec6139eef81a8a5519e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c4085e8360f0e3afd77374ccd364efa = $(`&lt;div id=&quot;html_7c4085e8360f0e3afd77374ccd364efa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.288             latitude:31.6842             PM2_5:47.45224719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a42ba311867f3ec6139eef81a8a5519e.setContent(html_7c4085e8360f0e3afd77374ccd364efa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4ee7457612ae83e3477d040641987e3.bindPopup(popup_a42ba311867f3ec6139eef81a8a5519e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_677c08bf294ed8fe674e3fc745e55673 = L.circleMarker(\\n\",\n       \"                [23.4714, 116.7519],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7345705ccf0c9195133e2a8ffab62a00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_652803bae10be2c56ec24d7cad2891a4 = $(`&lt;div id=&quot;html_652803bae10be2c56ec24d7cad2891a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7519             latitude:23.4714             PM2_5:30.35614525             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7345705ccf0c9195133e2a8ffab62a00.setContent(html_652803bae10be2c56ec24d7cad2891a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_677c08bf294ed8fe674e3fc745e55673.bindPopup(popup_7345705ccf0c9195133e2a8ffab62a00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2bd09d07e1237094f6e3a4b6f3f5ce4 = L.circleMarker(\\n\",\n       \"                [45.5422, 126.979],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9f8598e7895c6db63e1a20e9188576e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9a99c71447a0ad3c3631f8ce8d11666 = $(`&lt;div id=&quot;html_a9a99c71447a0ad3c3631f8ce8d11666&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.979             latitude:45.5422             PM2_5:33.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9f8598e7895c6db63e1a20e9188576e.setContent(html_a9a99c71447a0ad3c3631f8ce8d11666);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2bd09d07e1237094f6e3a4b6f3f5ce4.bindPopup(popup_e9f8598e7895c6db63e1a20e9188576e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_015065920d976362b7694e57710af809 = L.circleMarker(\\n\",\n       \"                [36.1912, 113.1569],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c5d061a1cd7f244f39b288bb079d4fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_030fd7d83d5203c1cc9d4cdf362fac83 = $(`&lt;div id=&quot;html_030fd7d83d5203c1cc9d4cdf362fac83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1569             latitude:36.1912             PM2_5:65.63509749             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c5d061a1cd7f244f39b288bb079d4fe.setContent(html_030fd7d83d5203c1cc9d4cdf362fac83);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_015065920d976362b7694e57710af809.bindPopup(popup_2c5d061a1cd7f244f39b288bb079d4fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06fcb8bff51ee47b802299d88cb1b6c0 = L.circleMarker(\\n\",\n       \"                [29.4251, 113.1493],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83f60064ceaec29953680f63fc577bef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_512633fa313b1a4f6a23198b125e66d2 = $(`&lt;div id=&quot;html_512633fa313b1a4f6a23198b125e66d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1493             latitude:29.4251             PM2_5:49.36543909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83f60064ceaec29953680f63fc577bef.setContent(html_512633fa313b1a4f6a23198b125e66d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06fcb8bff51ee47b802299d88cb1b6c0.bindPopup(popup_83f60064ceaec29953680f63fc577bef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_895d9efbd6b5fe453934122b7e1bb0e3 = L.circleMarker(\\n\",\n       \"                [29.3864, 117.3097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a849e42270ee60ac4e85de3a266dd8df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36b1162952ff64b23b761ec24ee809ff = $(`&lt;div id=&quot;html_36b1162952ff64b23b761ec24ee809ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3097             latitude:29.3864             PM2_5:26.33286119             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a849e42270ee60ac4e85de3a266dd8df.setContent(html_36b1162952ff64b23b761ec24ee809ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_895d9efbd6b5fe453934122b7e1bb0e3.bindPopup(popup_a849e42270ee60ac4e85de3a266dd8df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ddbae8a1dbfb8eff393c97a87015f03 = L.circleMarker(\\n\",\n       \"                [27.7044, 111.9892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c39d455e79b972f60666fb904c4594e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7b73809a9864b0b128bab4d992173ae = $(`&lt;div id=&quot;html_d7b73809a9864b0b128bab4d992173ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9892             latitude:27.7044             PM2_5:35.07983193             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c39d455e79b972f60666fb904c4594e7.setContent(html_d7b73809a9864b0b128bab4d992173ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ddbae8a1dbfb8eff393c97a87015f03.bindPopup(popup_c39d455e79b972f60666fb904c4594e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_efc903726058615fc45c7c131fe252e8 = L.circleMarker(\\n\",\n       \"                [34.5814, 105.7281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f4a79322c0ac7c0076f199f6580039ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74c1a4d1fb2dd8fbfa8e1c72d3e7244b = $(`&lt;div id=&quot;html_74c1a4d1fb2dd8fbfa8e1c72d3e7244b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.7281             latitude:34.5814             PM2_5:30.97740113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f4a79322c0ac7c0076f199f6580039ca.setContent(html_74c1a4d1fb2dd8fbfa8e1c72d3e7244b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_efc903726058615fc45c7c131fe252e8.bindPopup(popup_f4a79322c0ac7c0076f199f6580039ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fabc424a72731cff75105ddef64ee5a2 = L.circleMarker(\\n\",\n       \"                [36.11, 114.286],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb35f16770c14ed418bb082f58a154e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91bf783d0d997f2adec6034c20cd3bc6 = $(`&lt;div id=&quot;html_91bf783d0d997f2adec6034c20cd3bc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.286             latitude:36.11             PM2_5:68.70670391             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb35f16770c14ed418bb082f58a154e0.setContent(html_91bf783d0d997f2adec6034c20cd3bc6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fabc424a72731cff75105ddef64ee5a2.bindPopup(popup_eb35f16770c14ed418bb082f58a154e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_051f88438bf32285c3075caa0de00767 = L.circleMarker(\\n\",\n       \"                [26.5939, 104.89],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2440d658a8d117b8fd785df388ace6a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80c4b6fc0d9232908e09f323c5f03816 = $(`&lt;div id=&quot;html_80c4b6fc0d9232908e09f323c5f03816&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.89             latitude:26.5939             PM2_5:39.54929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2440d658a8d117b8fd785df388ace6a1.setContent(html_80c4b6fc0d9232908e09f323c5f03816);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_051f88438bf32285c3075caa0de00767.bindPopup(popup_2440d658a8d117b8fd785df388ace6a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72bb446fcbe0750a065c626bf961d20a = L.circleMarker(\\n\",\n       \"                [31.92, 120.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf2e5746fc463d7bb3b6aeedcfbecb73 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ba7e05e06bccf599db0971235f2d9a8 = $(`&lt;div id=&quot;html_8ba7e05e06bccf599db0971235f2d9a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.268             latitude:31.92             PM2_5:54.32535211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf2e5746fc463d7bb3b6aeedcfbecb73.setContent(html_8ba7e05e06bccf599db0971235f2d9a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72bb446fcbe0750a065c626bf961d20a.bindPopup(popup_cf2e5746fc463d7bb3b6aeedcfbecb73)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8c505b054207564545da68852d84bd0 = L.circleMarker(\\n\",\n       \"                [37.68277778, 112.7194444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6c5e906a90f1794fbd3e2521c4776ce5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce4a952381c759e54e804fe7151a5564 = $(`&lt;div id=&quot;html_ce4a952381c759e54e804fe7151a5564&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7194444             latitude:37.68277778             PM2_5:58.19134078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6c5e906a90f1794fbd3e2521c4776ce5.setContent(html_ce4a952381c759e54e804fe7151a5564);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8c505b054207564545da68852d84bd0.bindPopup(popup_6c5e906a90f1794fbd3e2521c4776ce5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a470027233161fdfb1faf759911aca2 = L.circleMarker(\\n\",\n       \"                [34.4714, 100.2561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9344dfe2bdd4e66cdc8a4a4e7aeda837 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2b9c1c0790c853c1d8bd8fcd020370b = $(`&lt;div id=&quot;html_b2b9c1c0790c853c1d8bd8fcd020370b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2561             latitude:34.4714             PM2_5:27.10110803             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9344dfe2bdd4e66cdc8a4a4e7aeda837.setContent(html_b2b9c1c0790c853c1d8bd8fcd020370b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a470027233161fdfb1faf759911aca2.bindPopup(popup_9344dfe2bdd4e66cdc8a4a4e7aeda837)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ce3f50422194a474fab73ff86333f62 = L.circleMarker(\\n\",\n       \"                [39.1495, 117.3916],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf9a823ee022ee3edcecec5d6c0f2ea7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37eae5946bdd61bd9e2502338b735cef = $(`&lt;div id=&quot;html_37eae5946bdd61bd9e2502338b735cef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3916             latitude:39.1495             PM2_5:51.78892216             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf9a823ee022ee3edcecec5d6c0f2ea7.setContent(html_37eae5946bdd61bd9e2502338b735cef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ce3f50422194a474fab73ff86333f62.bindPopup(popup_cf9a823ee022ee3edcecec5d6c0f2ea7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4fe0d8a17a7087b7fd2b3e3ff3e0bd36 = L.circleMarker(\\n\",\n       \"                [23.1422, 113.235],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e3d68a858583b4ee31f378cfbdf8ae4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5651f8350d675888caba02596a9b55c4 = $(`&lt;div id=&quot;html_5651f8350d675888caba02596a9b55c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.235             latitude:23.1422             PM2_5:38.90947075             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e3d68a858583b4ee31f378cfbdf8ae4.setContent(html_5651f8350d675888caba02596a9b55c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4fe0d8a17a7087b7fd2b3e3ff3e0bd36.bindPopup(popup_7e3d68a858583b4ee31f378cfbdf8ae4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7261c9666106c00f7f9dcc30fa18148 = L.circleMarker(\\n\",\n       \"                [25.2697, 110.2819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a58316fde628468c6c69485019ac2589 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c487b198a017040443ae44f0d62ee5d6 = $(`&lt;div id=&quot;html_c487b198a017040443ae44f0d62ee5d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2819             latitude:25.2697             PM2_5:39.11173184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a58316fde628468c6c69485019ac2589.setContent(html_c487b198a017040443ae44f0d62ee5d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7261c9666106c00f7f9dcc30fa18148.bindPopup(popup_a58316fde628468c6c69485019ac2589)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4c6df340951d898f2c7537dfd0cde49 = L.circleMarker(\\n\",\n       \"                [23.8844, 106.6527],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b68728dc8615bc9882f254fbef1799f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24926762bb88712288375f72a630fefd = $(`&lt;div id=&quot;html_24926762bb88712288375f72a630fefd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6527             latitude:23.8844             PM2_5:41.93296089             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b68728dc8615bc9882f254fbef1799f.setContent(html_24926762bb88712288375f72a630fefd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4c6df340951d898f2c7537dfd0cde49.bindPopup(popup_2b68728dc8615bc9882f254fbef1799f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ebdcb8057e9ebbbf2974dd0738d7a999 = L.circleMarker(\\n\",\n       \"                [21.8586, 111.9786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b07634e5018a05062cec14c14a8abc82 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3fc2e177f9907c4c879c20194d548b12 = $(`&lt;div id=&quot;html_3fc2e177f9907c4c879c20194d548b12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9786             latitude:21.8586             PM2_5:30.71428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b07634e5018a05062cec14c14a8abc82.setContent(html_3fc2e177f9907c4c879c20194d548b12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ebdcb8057e9ebbbf2974dd0738d7a999.bindPopup(popup_b07634e5018a05062cec14c14a8abc82)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b478e874d5626c0166eb44e9bc552c2 = L.circleMarker(\\n\",\n       \"                [40.7514, 120.8392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c21aba5099c0f2be0810534bfb39c8a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68569cfce7327e88baaeaf75205e5f92 = $(`&lt;div id=&quot;html_68569cfce7327e88baaeaf75205e5f92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8392             latitude:40.7514             PM2_5:38.0140056             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c21aba5099c0f2be0810534bfb39c8a9.setContent(html_68569cfce7327e88baaeaf75205e5f92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b478e874d5626c0166eb44e9bc552c2.bindPopup(popup_c21aba5099c0f2be0810534bfb39c8a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_843b30982d3b9e72b681899bd070345f = L.circleMarker(\\n\",\n       \"                [35.7067, 107.6364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d4c63549984e90502e90e4d41e55386 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7614bef74558df1b8d7747db2fa9858 = $(`&lt;div id=&quot;html_a7614bef74558df1b8d7747db2fa9858&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6364             latitude:35.7067             PM2_5:30.4902507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d4c63549984e90502e90e4d41e55386.setContent(html_a7614bef74558df1b8d7747db2fa9858);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_843b30982d3b9e72b681899bd070345f.bindPopup(popup_1d4c63549984e90502e90e4d41e55386)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ce2630d92859616cbd992161e136024 = L.circleMarker(\\n\",\n       \"                [42.8947, 125.1358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6abe4f704a9955680610036eafd61226 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_101ea212de7d28c875cc753e9bd1ae5a = $(`&lt;div id=&quot;html_101ea212de7d28c875cc753e9bd1ae5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1358             latitude:42.8947             PM2_5:33.01549296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6abe4f704a9955680610036eafd61226.setContent(html_101ea212de7d28c875cc753e9bd1ae5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ce2630d92859616cbd992161e136024.bindPopup(popup_6abe4f704a9955680610036eafd61226)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64e4bbf6d5911a8cd264aaa4f459fa1a = L.circleMarker(\\n\",\n       \"                [30.8023, 106.0789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_89063d14020d6167c965ecad989fa5fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d8a7ad98736949bdf0cdcbef809190a = $(`&lt;div id=&quot;html_4d8a7ad98736949bdf0cdcbef809190a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0789             latitude:30.8023             PM2_5:48.08472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_89063d14020d6167c965ecad989fa5fc.setContent(html_4d8a7ad98736949bdf0cdcbef809190a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64e4bbf6d5911a8cd264aaa4f459fa1a.bindPopup(popup_89063d14020d6167c965ecad989fa5fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d777fa9f67cc5a0b5f586acc245dbc2 = L.circleMarker(\\n\",\n       \"                [47.2753, 130.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8d049c48e9733931cf4e710c6cfe5bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69030365504809d7fd9476c8eb522528 = $(`&lt;div id=&quot;html_69030365504809d7fd9476c8eb522528&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.261             latitude:47.2753             PM2_5:23.20251397             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8d049c48e9733931cf4e710c6cfe5bb.setContent(html_69030365504809d7fd9476c8eb522528);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d777fa9f67cc5a0b5f586acc245dbc2.bindPopup(popup_d8d049c48e9733931cf4e710c6cfe5bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed5cb589f9c89c789cf95be919e5dff1 = L.circleMarker(\\n\",\n       \"                [37.5436, 121.3181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_759b49f60943ec2a5984c4f356ccb1f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3306debb4704e27a1b2f6e942c72a67 = $(`&lt;div id=&quot;html_b3306debb4704e27a1b2f6e942c72a67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.3181             latitude:37.5436             PM2_5:26.89346591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_759b49f60943ec2a5984c4f356ccb1f7.setContent(html_b3306debb4704e27a1b2f6e942c72a67);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed5cb589f9c89c789cf95be919e5dff1.bindPopup(popup_759b49f60943ec2a5984c4f356ccb1f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f036a6bcdf657ec5d9b6d7013fd789aa = L.circleMarker(\\n\",\n       \"                [38.8516, 105.724],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d9b536f2b4352d72f2bd37b08fb208b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7766411756165d36ee46e13dfe1e0559 = $(`&lt;div id=&quot;html_7766411756165d36ee46e13dfe1e0559&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.724             latitude:38.8516             PM2_5:29.55477528             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d9b536f2b4352d72f2bd37b08fb208b.setContent(html_7766411756165d36ee46e13dfe1e0559);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f036a6bcdf657ec5d9b6d7013fd789aa.bindPopup(popup_7d9b536f2b4352d72f2bd37b08fb208b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c7ab9ab7826a4073af8711060c8b849 = L.circleMarker(\\n\",\n       \"                [29.4892, 106.634],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef4472adcac20b3a236df02709add806 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_932a8293855b401379d0c62b2275a8c0 = $(`&lt;div id=&quot;html_932a8293855b401379d0c62b2275a8c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.634             latitude:29.4892             PM2_5:39.38022284             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef4472adcac20b3a236df02709add806.setContent(html_932a8293855b401379d0c62b2275a8c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c7ab9ab7826a4073af8711060c8b849.bindPopup(popup_ef4472adcac20b3a236df02709add806)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ec8e28dfaf5bc09018129aa6d888f50 = L.circleMarker(\\n\",\n       \"                [28.9703, 111.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08af12dcb339be49883768a5436b75c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d3d455f5be6739d1eec3caa94abf9f6 = $(`&lt;div id=&quot;html_7d3d455f5be6739d1eec3caa94abf9f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6975             latitude:28.9703             PM2_5:44.52442529             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08af12dcb339be49883768a5436b75c5.setContent(html_7d3d455f5be6739d1eec3caa94abf9f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ec8e28dfaf5bc09018129aa6d888f50.bindPopup(popup_08af12dcb339be49883768a5436b75c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5db1fa257339e6019ca7759d6bc81940 = L.circleMarker(\\n\",\n       \"                [28.9404, 118.871],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef7777f916ee682a13cc3e36f1f5ed59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_514e39c763078bfc60b84e2921cbabfa = $(`&lt;div id=&quot;html_514e39c763078bfc60b84e2921cbabfa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.871             latitude:28.9404             PM2_5:32.40168539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef7777f916ee682a13cc3e36f1f5ed59.setContent(html_514e39c763078bfc60b84e2921cbabfa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5db1fa257339e6019ca7759d6bc81940.bindPopup(popup_ef7777f916ee682a13cc3e36f1f5ed59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d8368911db7ce4c7be437533adc1612 = L.circleMarker(\\n\",\n       \"                [26.9089, 112.5328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5883b1f123e6a036bce33a84a402fcd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86ebc1451285d991459eca604f2cca06 = $(`&lt;div id=&quot;html_86ebc1451285d991459eca604f2cca06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5328             latitude:26.9089             PM2_5:42.46991404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5883b1f123e6a036bce33a84a402fcd.setContent(html_86ebc1451285d991459eca604f2cca06);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d8368911db7ce4c7be437533adc1612.bindPopup(popup_c5883b1f123e6a036bce33a84a402fcd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_625ce34c516e9734f77b2109b99a6881 = L.circleMarker(\\n\",\n       \"                [30.89556, 120.0875],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9caff8fb20b66f14bcfc293a3ad1b6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61a614bad2dd5db71157c0a65e0d65e6 = $(`&lt;div id=&quot;html_61a614bad2dd5db71157c0a65e0d65e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.0875             latitude:30.89556             PM2_5:39.35434174             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9caff8fb20b66f14bcfc293a3ad1b6c.setContent(html_61a614bad2dd5db71157c0a65e0d65e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_625ce34c516e9734f77b2109b99a6881.bindPopup(popup_f9caff8fb20b66f14bcfc293a3ad1b6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8887f2a706cc7c59dbb78d91c69bb46 = L.circleMarker(\\n\",\n       \"                [43.91, 125.287],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0224235b1f61f36fee7c6f174ce7eff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db4da018517a60b057843ef8e4f0210a = $(`&lt;div id=&quot;html_db4da018517a60b057843ef8e4f0210a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.287             latitude:43.91             PM2_5:31.19134078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0224235b1f61f36fee7c6f174ce7eff.setContent(html_db4da018517a60b057843ef8e4f0210a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8887f2a706cc7c59dbb78d91c69bb46.bindPopup(popup_d0224235b1f61f36fee7c6f174ce7eff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0387333a1acc25fc330b9ff966349cb0 = L.circleMarker(\\n\",\n       \"                [39.1292, 106.7096],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13e8bc90ae1834700aac18fc0e0b8aa0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38f528388826ad5365eecf0c16521952 = $(`&lt;div id=&quot;html_38f528388826ad5365eecf0c16521952&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7096             latitude:39.1292             PM2_5:40.22740113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13e8bc90ae1834700aac18fc0e0b8aa0.setContent(html_38f528388826ad5365eecf0c16521952);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0387333a1acc25fc330b9ff966349cb0.bindPopup(popup_13e8bc90ae1834700aac18fc0e0b8aa0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5bf34b59e4bd73957df6f055e18629d6 = L.circleMarker(\\n\",\n       \"                [37.5136, 111.1297],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23562e70412647377ab548236362d620 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ddc9606d9c07758340027cf533f15cca = $(`&lt;div id=&quot;html_ddc9606d9c07758340027cf533f15cca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1297             latitude:37.5136             PM2_5:59.83844011             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23562e70412647377ab548236362d620.setContent(html_ddc9606d9c07758340027cf533f15cca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5bf34b59e4bd73957df6f055e18629d6.bindPopup(popup_23562e70412647377ab548236362d620)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_313f746f9e0e6bbb5a17713ffdb12d0a = L.circleMarker(\\n\",\n       \"                [28.7442, 115.813],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d617cd16978a234320442d167f72add3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_182bf3e4f856dd1d504eb1c9c5220e2b = $(`&lt;div id=&quot;html_182bf3e4f856dd1d504eb1c9c5220e2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.813             latitude:28.7442             PM2_5:28.46468927             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d617cd16978a234320442d167f72add3.setContent(html_182bf3e4f856dd1d504eb1c9c5220e2b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_313f746f9e0e6bbb5a17713ffdb12d0a.bindPopup(popup_d617cd16978a234320442d167f72add3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb6b5fbb083a4ec04dc3cc994fb6606b = L.circleMarker(\\n\",\n       \"                [39.3514, 112.44],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_379421f2f9baa0443b66b4aafc9f640d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b03fc65764bb2262398214101e7cb15 = $(`&lt;div id=&quot;html_0b03fc65764bb2262398214101e7cb15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.44             latitude:39.3514             PM2_5:38.79971989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_379421f2f9baa0443b66b4aafc9f640d.setContent(html_0b03fc65764bb2262398214101e7cb15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb6b5fbb083a4ec04dc3cc994fb6606b.bindPopup(popup_379421f2f9baa0443b66b4aafc9f640d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dd781255e5f25b5376ff7bcf37d1792 = L.circleMarker(\\n\",\n       \"                [31.96, 120.913],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41395e3b802bd5e4978ef6c20914f167 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecbc5f3cf5c4e3fce2c8af4f790ea032 = $(`&lt;div id=&quot;html_ecbc5f3cf5c4e3fce2c8af4f790ea032&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.913             latitude:31.96             PM2_5:38.12824207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41395e3b802bd5e4978ef6c20914f167.setContent(html_ecbc5f3cf5c4e3fce2c8af4f790ea032);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dd781255e5f25b5376ff7bcf37d1792.bindPopup(popup_41395e3b802bd5e4978ef6c20914f167)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09fee981a42f12f90ba4c94b21467d19 = L.circleMarker(\\n\",\n       \"                [28.4622, 117.9511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_acd339b79a63db0c647f8629a4c875c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0546c7c29c4679681c167ba336b2addd = $(`&lt;div id=&quot;html_0546c7c29c4679681c167ba336b2addd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9511             latitude:28.4622             PM2_5:39.12359551             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_acd339b79a63db0c647f8629a4c875c2.setContent(html_0546c7c29c4679681c167ba336b2addd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09fee981a42f12f90ba4c94b21467d19.bindPopup(popup_acd339b79a63db0c647f8629a4c875c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_405bdb071fbb945e4cac33aa88a71fcb = L.circleMarker(\\n\",\n       \"                [41.7511, 86.1461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_752f246174dc78af31708c563a537593 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d87a6b79907d09a71f296e5779f5e6a = $(`&lt;div id=&quot;html_6d87a6b79907d09a71f296e5779f5e6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.1461             latitude:41.7511             PM2_5:53.63764045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_752f246174dc78af31708c563a537593.setContent(html_6d87a6b79907d09a71f296e5779f5e6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_405bdb071fbb945e4cac33aa88a71fcb.bindPopup(popup_752f246174dc78af31708c563a537593)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0eb6236f18335521a9456707162899ea = L.circleMarker(\\n\",\n       \"                [28.6064, 115.9083],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c866325b6ea79a75c50ac0d7ae351af1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43125794ce022e52bbe1f8922fe2a614 = $(`&lt;div id=&quot;html_43125794ce022e52bbe1f8922fe2a614&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9083             latitude:28.6064             PM2_5:29.79859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c866325b6ea79a75c50ac0d7ae351af1.setContent(html_43125794ce022e52bbe1f8922fe2a614);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0eb6236f18335521a9456707162899ea.bindPopup(popup_c866325b6ea79a75c50ac0d7ae351af1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46972d9bb107840fdd4be554dd45a349 = L.circleMarker(\\n\",\n       \"                [36.2403, 120.6659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ee79e510291f7fba0e2d1cee0849ab9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af0f111f390df4735b7fdc22b8fec552 = $(`&lt;div id=&quot;html_af0f111f390df4735b7fdc22b8fec552&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.6659             latitude:36.2403             PM2_5:25.74107143             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ee79e510291f7fba0e2d1cee0849ab9.setContent(html_af0f111f390df4735b7fdc22b8fec552);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46972d9bb107840fdd4be554dd45a349.bindPopup(popup_8ee79e510291f7fba0e2d1cee0849ab9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d24ec47400116022f3b605bf7193ee6 = L.circleMarker(\\n\",\n       \"                [28.6969, 115.973],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a6a612b82794fd9f99d6e53006d4e9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d90881f3e9431362a27f4d43599ed800 = $(`&lt;div id=&quot;html_d90881f3e9431362a27f4d43599ed800&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.973             latitude:28.6969             PM2_5:37.09444444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a6a612b82794fd9f99d6e53006d4e9e.setContent(html_d90881f3e9431362a27f4d43599ed800);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d24ec47400116022f3b605bf7193ee6.bindPopup(popup_4a6a612b82794fd9f99d6e53006d4e9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_854e065dd167e1c62ca298aa3fa16412 = L.circleMarker(\\n\",\n       \"                [41.2553, 123.15],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b12bafd32152a2e5222ba00ae1e50c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a830ff5bc48538b59943b1d4cea2c32 = $(`&lt;div id=&quot;html_0a830ff5bc48538b59943b1d4cea2c32&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.15             latitude:41.2553             PM2_5:28.93661972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b12bafd32152a2e5222ba00ae1e50c2.setContent(html_0a830ff5bc48538b59943b1d4cea2c32);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_854e065dd167e1c62ca298aa3fa16412.bindPopup(popup_0b12bafd32152a2e5222ba00ae1e50c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43111ee67d9228e3d91cd77d4c6f1ed0 = L.circleMarker(\\n\",\n       \"                [41.7347, 123.2444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_786e673929dac0df60333534435f6de1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50847c19b18afc40ef23beb9dc4bf296 = $(`&lt;div id=&quot;html_50847c19b18afc40ef23beb9dc4bf296&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.2444             latitude:41.7347             PM2_5:32.5238764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_786e673929dac0df60333534435f6de1.setContent(html_50847c19b18afc40ef23beb9dc4bf296);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43111ee67d9228e3d91cd77d4c6f1ed0.bindPopup(popup_786e673929dac0df60333534435f6de1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44c5a6cac5f87a20cd1a7204998d7a90 = L.circleMarker(\\n\",\n       \"                [25.8226, 113.0116],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb99074577f81397df43cdbfcb71bb07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18dd907b0db84d1136c65d9431b3c2fb = $(`&lt;div id=&quot;html_18dd907b0db84d1136c65d9431b3c2fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0116             latitude:25.8226             PM2_5:43.44583333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb99074577f81397df43cdbfcb71bb07.setContent(html_18dd907b0db84d1136c65d9431b3c2fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44c5a6cac5f87a20cd1a7204998d7a90.bindPopup(popup_bb99074577f81397df43cdbfcb71bb07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6635cbf488f5f20801c9c4a77be22bc = L.circleMarker(\\n\",\n       \"                [38.01777778, 114.5330556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_850b844da77fdba5d8d80d5a6703604c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb9e2309b2b803d64224513ea01b766d = $(`&lt;div id=&quot;html_cb9e2309b2b803d64224513ea01b766d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5330556             latitude:38.01777778             PM2_5:68.20833333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_850b844da77fdba5d8d80d5a6703604c.setContent(html_cb9e2309b2b803d64224513ea01b766d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6635cbf488f5f20801c9c4a77be22bc.bindPopup(popup_850b844da77fdba5d8d80d5a6703604c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41a6b68715331b61cbc4265859ef8a98 = L.circleMarker(\\n\",\n       \"                [33.9461, 116.7844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b490209f538ecfb3f7afff131988bc8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb5ba4659cb302751f905094c709f400 = $(`&lt;div id=&quot;html_cb5ba4659cb302751f905094c709f400&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7844             latitude:33.9461             PM2_5:55.20448179             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b490209f538ecfb3f7afff131988bc8f.setContent(html_cb5ba4659cb302751f905094c709f400);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41a6b68715331b61cbc4265859ef8a98.bindPopup(popup_b490209f538ecfb3f7afff131988bc8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5f53b178ebded47f52d394311ae5183 = L.circleMarker(\\n\",\n       \"                [26.5017, 101.7453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d06f7fbefa95e1747472b8dd88bd615 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_247a60243084275843c220509cab60f1 = $(`&lt;div id=&quot;html_247a60243084275843c220509cab60f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7453             latitude:26.5017             PM2_5:31.86768802             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d06f7fbefa95e1747472b8dd88bd615.setContent(html_247a60243084275843c220509cab60f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5f53b178ebded47f52d394311ae5183.bindPopup(popup_5d06f7fbefa95e1747472b8dd88bd615)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69ec1346a2743930a8082c26a9a2ad23 = L.circleMarker(\\n\",\n       \"                [37.7394, 112.5583],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e73035ad95234b50ea03af9716fb2c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59d83e7a04266bd12fd76442ac3972de = $(`&lt;div id=&quot;html_59d83e7a04266bd12fd76442ac3972de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5583             latitude:37.7394             PM2_5:58.13936782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e73035ad95234b50ea03af9716fb2c4.setContent(html_59d83e7a04266bd12fd76442ac3972de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69ec1346a2743930a8082c26a9a2ad23.bindPopup(popup_5e73035ad95234b50ea03af9716fb2c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b5a0cade1b572099f8170ff89655834 = L.circleMarker(\\n\",\n       \"                [36.6868, 117.0684],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7978721a5333ce5a7bcedd707625808 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7d34848433fff191d4701572fb4427c = $(`&lt;div id=&quot;html_f7d34848433fff191d4701572fb4427c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0684             latitude:36.6868             PM2_5:56.59705882             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7978721a5333ce5a7bcedd707625808.setContent(html_f7d34848433fff191d4701572fb4427c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b5a0cade1b572099f8170ff89655834.bindPopup(popup_a7978721a5333ce5a7bcedd707625808)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_515d93d5d331303c64777c85a263a644 = L.circleMarker(\\n\",\n       \"                [47.3636, 123.9305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3fe2f9d6f4bf783f55b94d29fbd56c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf705b7c3f60216f75aed8582c93a4ce = $(`&lt;div id=&quot;html_cf705b7c3f60216f75aed8582c93a4ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9305             latitude:47.3636             PM2_5:28.63649025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3fe2f9d6f4bf783f55b94d29fbd56c0.setContent(html_cf705b7c3f60216f75aed8582c93a4ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_515d93d5d331303c64777c85a263a644.bindPopup(popup_f3fe2f9d6f4bf783f55b94d29fbd56c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5064816cc67c120a56227f1a7ad4e498 = L.circleMarker(\\n\",\n       \"                [31.8572, 117.25],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef12dc17608fd775aa7ab18693a35023 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d31a611dfdc8d7dab8a406d107931472 = $(`&lt;div id=&quot;html_d31a611dfdc8d7dab8a406d107931472&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.25             latitude:31.8572             PM2_5:49.77871148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef12dc17608fd775aa7ab18693a35023.setContent(html_d31a611dfdc8d7dab8a406d107931472);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5064816cc67c120a56227f1a7ad4e498.bindPopup(popup_ef12dc17608fd775aa7ab18693a35023)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29920632651a4a3e061b9831ac39d1b4 = L.circleMarker(\\n\",\n       \"                [25.1081, 99.1678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53ee75935465c9dc304ceee5eaf93c06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbe7b5fa25b94b436b12c4dc0aacadab = $(`&lt;div id=&quot;html_fbe7b5fa25b94b436b12c4dc0aacadab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.1678             latitude:25.1081             PM2_5:27.45338983             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53ee75935465c9dc304ceee5eaf93c06.setContent(html_fbe7b5fa25b94b436b12c4dc0aacadab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29920632651a4a3e061b9831ac39d1b4.bindPopup(popup_53ee75935465c9dc304ceee5eaf93c06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b728885441a43efdb4bb4e31806ffe24 = L.circleMarker(\\n\",\n       \"                [40.8062, 111.7277],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2850a1b0a5f29915da5dcfbbb34c8eb8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb4b472edbd4e14ae261c7423dee3831 = $(`&lt;div id=&quot;html_bb4b472edbd4e14ae261c7423dee3831&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7277             latitude:40.8062             PM2_5:31.32590529             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2850a1b0a5f29915da5dcfbbb34c8eb8.setContent(html_bb4b472edbd4e14ae261c7423dee3831);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b728885441a43efdb4bb4e31806ffe24.bindPopup(popup_2850a1b0a5f29915da5dcfbbb34c8eb8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17ea1c382f549ffada9dd6ab3ca3ead2 = L.circleMarker(\\n\",\n       \"                [37.8694, 113.5689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec03f1dae87191455a83341f8c6326d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6d667e00981dc48b761431a359383b2 = $(`&lt;div id=&quot;html_d6d667e00981dc48b761431a359383b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5689             latitude:37.8694             PM2_5:54.83193277             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec03f1dae87191455a83341f8c6326d4.setContent(html_d6d667e00981dc48b761431a359383b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17ea1c382f549ffada9dd6ab3ca3ead2.bindPopup(popup_ec03f1dae87191455a83341f8c6326d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78c7ad367d893a24c1998f3faff11fb5 = L.circleMarker(\\n\",\n       \"                [27.2272, 111.4328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d74a6319616dd9a517aee0b98b5f35b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3117d9ea2f0632e17f7c32152b25e36c = $(`&lt;div id=&quot;html_3117d9ea2f0632e17f7c32152b25e36c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4328             latitude:27.2272             PM2_5:46.85070423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d74a6319616dd9a517aee0b98b5f35b5.setContent(html_3117d9ea2f0632e17f7c32152b25e36c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78c7ad367d893a24c1998f3faff11fb5.bindPopup(popup_d74a6319616dd9a517aee0b98b5f35b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a0712943414ee503d4d82f0d46d49e2 = L.circleMarker(\\n\",\n       \"                [34.7781, 114.3389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_974bf68a978b24aeee28613a30a03ab3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cddf79c5368b025305a24278c703d5c6 = $(`&lt;div id=&quot;html_cddf79c5368b025305a24278c703d5c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3389             latitude:34.7781             PM2_5:58.12853107             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_974bf68a978b24aeee28613a30a03ab3.setContent(html_cddf79c5368b025305a24278c703d5c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a0712943414ee503d4d82f0d46d49e2.bindPopup(popup_974bf68a978b24aeee28613a30a03ab3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9433d5c96cc52a6ab1042665b80ab459 = L.circleMarker(\\n\",\n       \"                [47.3227, 123.9483],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9cb6b9f9d3d860725282a15cadc25d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e59b5d9de2683e385b1b8c078eaa80b0 = $(`&lt;div id=&quot;html_e59b5d9de2683e385b1b8c078eaa80b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9483             latitude:47.3227             PM2_5:29.87815126             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9cb6b9f9d3d860725282a15cadc25d6.setContent(html_e59b5d9de2683e385b1b8c078eaa80b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9433d5c96cc52a6ab1042665b80ab459.bindPopup(popup_c9cb6b9f9d3d860725282a15cadc25d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b347cf258799f38b300beaf745d5ef72 = L.circleMarker(\\n\",\n       \"                [28.3169, 109.7325],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b89e4088254766125f9f6ea31506abc7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dfc043930f43f19070d7d222f5217643 = $(`&lt;div id=&quot;html_dfc043930f43f19070d7d222f5217643&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7325             latitude:28.3169             PM2_5:40.78011204             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b89e4088254766125f9f6ea31506abc7.setContent(html_dfc043930f43f19070d7d222f5217643);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b347cf258799f38b300beaf745d5ef72.bindPopup(popup_b89e4088254766125f9f6ea31506abc7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6bd3eceb675f1749ba85a35aa95323d = L.circleMarker(\\n\",\n       \"                [31.7586, 119.996],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3cfd6ec047325a323ae23826bc99e5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e205963fa6a1924832f8b749becc804 = $(`&lt;div id=&quot;html_0e205963fa6a1924832f8b749becc804&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.996             latitude:31.7586             PM2_5:46.04481793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3cfd6ec047325a323ae23826bc99e5c.setContent(html_0e205963fa6a1924832f8b749becc804);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6bd3eceb675f1749ba85a35aa95323d.bindPopup(popup_e3cfd6ec047325a323ae23826bc99e5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb241d774455608aeeb1039afafca08c = L.circleMarker(\\n\",\n       \"                [29.6475, 91.0874],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df1050f5b04a89eee06e51b42ea961ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc30e1f15ae307a4c84a549fdee29ae0 = $(`&lt;div id=&quot;html_bc30e1f15ae307a4c84a549fdee29ae0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.0874             latitude:29.6475             PM2_5:10.2880117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df1050f5b04a89eee06e51b42ea961ad.setContent(html_bc30e1f15ae307a4c84a549fdee29ae0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb241d774455608aeeb1039afafca08c.bindPopup(popup_df1050f5b04a89eee06e51b42ea961ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d66d263d5fe3f153fc4fd3325e737d6 = L.circleMarker(\\n\",\n       \"                [28.1178, 112.9844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7eb2105a015e2433e0a6aeab79646a7d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8352cc2b4769653ad3aca85d472accc0 = $(`&lt;div id=&quot;html_8352cc2b4769653ad3aca85d472accc0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9844             latitude:28.1178             PM2_5:41.61516854             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7eb2105a015e2433e0a6aeab79646a7d.setContent(html_8352cc2b4769653ad3aca85d472accc0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d66d263d5fe3f153fc4fd3325e737d6.bindPopup(popup_7eb2105a015e2433e0a6aeab79646a7d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_863ec29403c763fddc1320787728e6bd = L.circleMarker(\\n\",\n       \"                [36.10139, 111.505],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b686d15858dde53a8544648f0051ac0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c534dff42f2c116da02a6196bf207f3f = $(`&lt;div id=&quot;html_c534dff42f2c116da02a6196bf207f3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.505             latitude:36.10139             PM2_5:74.34078212             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b686d15858dde53a8544648f0051ac0.setContent(html_c534dff42f2c116da02a6196bf207f3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_863ec29403c763fddc1320787728e6bd.bindPopup(popup_2b686d15858dde53a8544648f0051ac0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dfbe3ac99c12720c573d2d2c86b7aa72 = L.circleMarker(\\n\",\n       \"                [35.5975, 104.6169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb738816593f331230b4345a666a5d37 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92b87e49aae581a89df2d57082c170f5 = $(`&lt;div id=&quot;html_92b87e49aae581a89df2d57082c170f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6169             latitude:35.5975             PM2_5:29.16155989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb738816593f331230b4345a666a5d37.setContent(html_92b87e49aae581a89df2d57082c170f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dfbe3ac99c12720c573d2d2c86b7aa72.bindPopup(popup_eb738816593f331230b4345a666a5d37)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee609e43205e04dd0aea10441e7cd776 = L.circleMarker(\\n\",\n       \"                [34.7975, 114.3733],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37adae80f0dbc6b4756b0c0a76ef0297 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a72ea5a7849efbbf87400cd77df445f8 = $(`&lt;div id=&quot;html_a72ea5a7849efbbf87400cd77df445f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3733             latitude:34.7975             PM2_5:57.65870787             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37adae80f0dbc6b4756b0c0a76ef0297.setContent(html_a72ea5a7849efbbf87400cd77df445f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee609e43205e04dd0aea10441e7cd776.bindPopup(popup_37adae80f0dbc6b4756b0c0a76ef0297)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bdb266d3885271530487c70a785d8df6 = L.circleMarker(\\n\",\n       \"                [36.2092, 117.7181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce06fa0e9e242a4aede8798198958492 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0bb2a4e13ad9dc25a8472cf7f0ea66c6 = $(`&lt;div id=&quot;html_0bb2a4e13ad9dc25a8472cf7f0ea66c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7181             latitude:36.2092             PM2_5:56.48314607             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce06fa0e9e242a4aede8798198958492.setContent(html_0bb2a4e13ad9dc25a8472cf7f0ea66c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bdb266d3885271530487c70a785d8df6.bindPopup(popup_ce06fa0e9e242a4aede8798198958492)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_663db2a3aff84960305c6d163388568b = L.circleMarker(\\n\",\n       \"                [22.7633, 100.98],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1b56b6f7fa92c3d378081b93ce5b753 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36adf375557c2d847f708f8f24524404 = $(`&lt;div id=&quot;html_36adf375557c2d847f708f8f24524404&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.98             latitude:22.7633             PM2_5:18.6408046             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1b56b6f7fa92c3d378081b93ce5b753.setContent(html_36adf375557c2d847f708f8f24524404);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_663db2a3aff84960305c6d163388568b.bindPopup(popup_a1b56b6f7fa92c3d378081b93ce5b753)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b86cbb1f8fc35a2418b5a5510f638d1 = L.circleMarker(\\n\",\n       \"                [24.81805556, 118.1569444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e9dd56a7364514f90b3f250dda9e8dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_277bb746b9be7a7023d5765c66123e98 = $(`&lt;div id=&quot;html_277bb746b9be7a7023d5765c66123e98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1569444             latitude:24.81805556             PM2_5:24.03812317             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e9dd56a7364514f90b3f250dda9e8dd.setContent(html_277bb746b9be7a7023d5765c66123e98);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b86cbb1f8fc35a2418b5a5510f638d1.bindPopup(popup_3e9dd56a7364514f90b3f250dda9e8dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45010a09100430151071ad5434323879 = L.circleMarker(\\n\",\n       \"                [29.8686, 114.3372],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa1530434d14b57049c892a4fbcde8eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_687fcc6f1df01c3a908c84bfd18641bf = $(`&lt;div id=&quot;html_687fcc6f1df01c3a908c84bfd18641bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3372             latitude:29.8686             PM2_5:44.10504202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa1530434d14b57049c892a4fbcde8eb.setContent(html_687fcc6f1df01c3a908c84bfd18641bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45010a09100430151071ad5434323879.bindPopup(popup_fa1530434d14b57049c892a4fbcde8eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a874b8db295f6ebe37bfe8dabaf05bb = L.circleMarker(\\n\",\n       \"                [31.7039, 119.935],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8c24d6dc9fd37df71de75a2e065b1af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f725030192605b9921d0f5907e83d8a0 = $(`&lt;div id=&quot;html_f725030192605b9921d0f5907e83d8a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.935             latitude:31.7039             PM2_5:43.56005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8c24d6dc9fd37df71de75a2e065b1af.setContent(html_f725030192605b9921d0f5907e83d8a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a874b8db295f6ebe37bfe8dabaf05bb.bindPopup(popup_a8c24d6dc9fd37df71de75a2e065b1af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f9db762d900aef5d49dbab66527cb83 = L.circleMarker(\\n\",\n       \"                [29.6816, 115.9872],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2eda9705129e9ad071c2a015f0d78bd2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_647c7db9fd1f0c71a8eb1ca0ad5f2407 = $(`&lt;div id=&quot;html_647c7db9fd1f0c71a8eb1ca0ad5f2407&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9872             latitude:29.6816             PM2_5:44.49293785             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2eda9705129e9ad071c2a015f0d78bd2.setContent(html_647c7db9fd1f0c71a8eb1ca0ad5f2407);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f9db762d900aef5d49dbab66527cb83.bindPopup(popup_2eda9705129e9ad071c2a015f0d78bd2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_642296adbe4c7ce072466a8c8e1a1206 = L.circleMarker(\\n\",\n       \"                [22.7267, 114.24],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_077ef05e26c598a752d141e2720f3188 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_299b10122cd3d3ff160d805a04b4e9d2 = $(`&lt;div id=&quot;html_299b10122cd3d3ff160d805a04b4e9d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.24             latitude:22.7267             PM2_5:26.57660167             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_077ef05e26c598a752d141e2720f3188.setContent(html_299b10122cd3d3ff160d805a04b4e9d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_642296adbe4c7ce072466a8c8e1a1206.bindPopup(popup_077ef05e26c598a752d141e2720f3188)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c256072147e720a7d8154129a38a122 = L.circleMarker(\\n\",\n       \"                [39.5343, 116.7464],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80ebcd2e16b9c0b65dd74967cec1077e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56f5497a8003ab58f1e73f1c0d993c54 = $(`&lt;div id=&quot;html_56f5497a8003ab58f1e73f1c0d993c54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7464             latitude:39.5343             PM2_5:46.71830986             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80ebcd2e16b9c0b65dd74967cec1077e.setContent(html_56f5497a8003ab58f1e73f1c0d993c54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c256072147e720a7d8154129a38a122.bindPopup(popup_80ebcd2e16b9c0b65dd74967cec1077e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42731dee24e756ed0091c4bb6be658e8 = L.circleMarker(\\n\",\n       \"                [34.8019, 113.675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50381240308295c9f70583395652291b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0f950bc0718d081699a8b425234eec7 = $(`&lt;div id=&quot;html_c0f950bc0718d081699a8b425234eec7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.675             latitude:34.8019             PM2_5:66.82162921             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50381240308295c9f70583395652291b.setContent(html_c0f950bc0718d081699a8b425234eec7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42731dee24e756ed0091c4bb6be658e8.bindPopup(popup_50381240308295c9f70583395652291b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f27760dc5b36b4155236bb25fd21d54 = L.circleMarker(\\n\",\n       \"                [29.4892, 106.468],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8798c0347cd338366bc00ebca010118d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f71e30f5ce3f5289a1e46e72c7245e41 = $(`&lt;div id=&quot;html_f71e30f5ce3f5289a1e46e72c7245e41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.468             latitude:29.4892             PM2_5:36.48189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8798c0347cd338366bc00ebca010118d.setContent(html_f71e30f5ce3f5289a1e46e72c7245e41);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f27760dc5b36b4155236bb25fd21d54.bindPopup(popup_8798c0347cd338366bc00ebca010118d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_710e370dd733af98dffc139d38a49a91 = L.circleMarker(\\n\",\n       \"                [40.1438, 116.72],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_888e40b31cc391c871c2fd76763b60f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0815361ae1ac39248b59c9ec2fbebb06 = $(`&lt;div id=&quot;html_0815361ae1ac39248b59c9ec2fbebb06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.72             latitude:40.1438             PM2_5:51.04366197             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_888e40b31cc391c871c2fd76763b60f4.setContent(html_0815361ae1ac39248b59c9ec2fbebb06);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_710e370dd733af98dffc139d38a49a91.bindPopup(popup_888e40b31cc391c871c2fd76763b60f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3d5b2034ad51b80c87813044253a6e6 = L.circleMarker(\\n\",\n       \"                [29.6292, 91.0834],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81e0779009c02d0419b370934ad8736d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2aa73f7838eb6935142ff05f7ef31225 = $(`&lt;div id=&quot;html_2aa73f7838eb6935142ff05f7ef31225&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.0834             latitude:29.6292             PM2_5:11.04373178             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81e0779009c02d0419b370934ad8736d.setContent(html_2aa73f7838eb6935142ff05f7ef31225);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3d5b2034ad51b80c87813044253a6e6.bindPopup(popup_81e0779009c02d0419b370934ad8736d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c05645d13578a117cc4fcbefdac131fb = L.circleMarker(\\n\",\n       \"                [31.87888889, 106.7513889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bafbbbb7eb079654410807eb17cf84d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d7d144695d6b47b53994d184b742745 = $(`&lt;div id=&quot;html_4d7d144695d6b47b53994d184b742745&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7513889             latitude:31.87888889             PM2_5:31.05857143             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bafbbbb7eb079654410807eb17cf84d0.setContent(html_4d7d144695d6b47b53994d184b742745);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c05645d13578a117cc4fcbefdac131fb.bindPopup(popup_bafbbbb7eb079654410807eb17cf84d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff989fbf73167c43a24ede0bb431eb2a = L.circleMarker(\\n\",\n       \"                [31.7712, 116.5661],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d8c9f060b9471e962f0f2458b8c5a3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44def4c67b893fc03eb87c2522446ba7 = $(`&lt;div id=&quot;html_44def4c67b893fc03eb87c2522446ba7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5661             latitude:31.7712             PM2_5:47.88194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d8c9f060b9471e962f0f2458b8c5a3e.setContent(html_44def4c67b893fc03eb87c2522446ba7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff989fbf73167c43a24ede0bb431eb2a.bindPopup(popup_7d8c9f060b9471e962f0f2458b8c5a3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9dac5bfe5672d973181cede609ea581 = L.circleMarker(\\n\",\n       \"                [27.6486, 106.8906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e683ea0473b206ebe483dcab950b484 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6c570198e5d8956c292ea793f5e028e = $(`&lt;div id=&quot;html_d6c570198e5d8956c292ea793f5e028e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8906             latitude:27.6486             PM2_5:24.83472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e683ea0473b206ebe483dcab950b484.setContent(html_d6c570198e5d8956c292ea793f5e028e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9dac5bfe5672d973181cede609ea581.bindPopup(popup_4e683ea0473b206ebe483dcab950b484)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97ec9e437d2a08f85f37be37597d57b8 = L.circleMarker(\\n\",\n       \"                [40.6288, 109.8654],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99fa80cd2a21d7946c27ae892f058bfb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6b61597f2fc2f7aaf1894a37bf80bef = $(`&lt;div id=&quot;html_d6b61597f2fc2f7aaf1894a37bf80bef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8654             latitude:40.6288             PM2_5:45.84322034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99fa80cd2a21d7946c27ae892f058bfb.setContent(html_d6b61597f2fc2f7aaf1894a37bf80bef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97ec9e437d2a08f85f37be37597d57b8.bindPopup(popup_99fa80cd2a21d7946c27ae892f058bfb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_569a6d8d7cbc1e464bd9bfcd0c9a5aa0 = L.circleMarker(\\n\",\n       \"                [43.1594, 124.3711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a30a7ea20d4d2625da85d59e0cfcf86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_34a87ade9b0c9d34bb23b6a301c3395b = $(`&lt;div id=&quot;html_34a87ade9b0c9d34bb23b6a301c3395b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3711             latitude:43.1594             PM2_5:48.26264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a30a7ea20d4d2625da85d59e0cfcf86.setContent(html_34a87ade9b0c9d34bb23b6a301c3395b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_569a6d8d7cbc1e464bd9bfcd0c9a5aa0.bindPopup(popup_4a30a7ea20d4d2625da85d59e0cfcf86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_461fb2658deb04b99c48e8e524ef2b83 = L.circleMarker(\\n\",\n       \"                [28.4586, 119.93],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a25fbb6e5fd115feb17289c90e00302 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_75f44ee62998a4a24daf32cead0a2efe = $(`&lt;div id=&quot;html_75f44ee62998a4a24daf32cead0a2efe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.93             latitude:28.4586             PM2_5:27.13091922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a25fbb6e5fd115feb17289c90e00302.setContent(html_75f44ee62998a4a24daf32cead0a2efe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_461fb2658deb04b99c48e8e524ef2b83.bindPopup(popup_7a25fbb6e5fd115feb17289c90e00302)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f58b82914013cf84b5d59fc0d1f2a64 = L.circleMarker(\\n\",\n       \"                [25.9118, 114.9064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_110a6f33ef40329cf4283cc825698fba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_981752a322ef1bf66c26cbd418868ef6 = $(`&lt;div id=&quot;html_981752a322ef1bf66c26cbd418868ef6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9064             latitude:25.9118             PM2_5:42.14366197             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_110a6f33ef40329cf4283cc825698fba.setContent(html_981752a322ef1bf66c26cbd418868ef6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f58b82914013cf84b5d59fc0d1f2a64.bindPopup(popup_110a6f33ef40329cf4283cc825698fba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6fd3cdeac28674e2e830c6a7c6c4b80 = L.circleMarker(\\n\",\n       \"                [34.3497, 107.2058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a756ecd8ebceb319896ad21b83299ed6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_249b33a23d3855e591595705b35c4198 = $(`&lt;div id=&quot;html_249b33a23d3855e591595705b35c4198&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.2058             latitude:34.3497             PM2_5:49.42896936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a756ecd8ebceb319896ad21b83299ed6.setContent(html_249b33a23d3855e591595705b35c4198);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6fd3cdeac28674e2e830c6a7c6c4b80.bindPopup(popup_a756ecd8ebceb319896ad21b83299ed6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_692e5173f9f0a0aac208b8a9aa97d487 = L.circleMarker(\\n\",\n       \"                [34.2303, 108.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2fbc2649822183280066be6c9eff675 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbc3b322a0cccd556cfe243807c495a1 = $(`&lt;div id=&quot;html_dbc3b322a0cccd556cfe243807c495a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.883             latitude:34.2303             PM2_5:67.22881356             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2fbc2649822183280066be6c9eff675.setContent(html_dbc3b322a0cccd556cfe243807c495a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_692e5173f9f0a0aac208b8a9aa97d487.bindPopup(popup_c2fbc2649822183280066be6c9eff675)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3984276f6425f5fbbda53b1a590f128 = L.circleMarker(\\n\",\n       \"                [29.2313, 91.7608],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47f4e7c5ac53b8a973abc4366f7bb729 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2520e50974b734b9391c70fea5619a9 = $(`&lt;div id=&quot;html_e2520e50974b734b9391c70fea5619a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.7608             latitude:29.2313             PM2_5:8.361031519             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47f4e7c5ac53b8a973abc4366f7bb729.setContent(html_e2520e50974b734b9391c70fea5619a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3984276f6425f5fbbda53b1a590f128.bindPopup(popup_47f4e7c5ac53b8a973abc4366f7bb729)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8639019b8cd77ecbd40f62882649a388 = L.circleMarker(\\n\",\n       \"                [36.6489, 116.943],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3430be33c799b29bf9e659d2341769c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7bfeb971d72890174a4d8e1a1d7de53 = $(`&lt;div id=&quot;html_e7bfeb971d72890174a4d8e1a1d7de53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.943             latitude:36.6489             PM2_5:62.66091954             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3430be33c799b29bf9e659d2341769c.setContent(html_e7bfeb971d72890174a4d8e1a1d7de53);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8639019b8cd77ecbd40f62882649a388.bindPopup(popup_d3430be33c799b29bf9e659d2341769c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75a82e5b00f075eccdf44c1ec9c2392a = L.circleMarker(\\n\",\n       \"                [29.2956, 117.2461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99be6e41ffbdcbacf44e52b7664c3c69 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0e0ff00c77b959d38d9ea1d4763a4e5 = $(`&lt;div id=&quot;html_f0e0ff00c77b959d38d9ea1d4763a4e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2461             latitude:29.2956             PM2_5:34.24792244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99be6e41ffbdcbacf44e52b7664c3c69.setContent(html_f0e0ff00c77b959d38d9ea1d4763a4e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75a82e5b00f075eccdf44c1ec9c2392a.bindPopup(popup_99be6e41ffbdcbacf44e52b7664c3c69)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ac5b83a57b532c8bcb9528c248b8ff3 = L.circleMarker(\\n\",\n       \"                [31.4867, 120.269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3133d8f4ddfcf03b1905191f149197d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a1a40d6c350d087306241175a19c7b5 = $(`&lt;div id=&quot;html_2a1a40d6c350d087306241175a19c7b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.269             latitude:31.4867             PM2_5:39.27620397             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3133d8f4ddfcf03b1905191f149197d.setContent(html_2a1a40d6c350d087306241175a19c7b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ac5b83a57b532c8bcb9528c248b8ff3.bindPopup(popup_f3133d8f4ddfcf03b1905191f149197d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b110141ccd1a52cec09352b19e6210d0 = L.circleMarker(\\n\",\n       \"                [28.4514, 119.914],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51bafa4fc371ebc1462af36bf671a8a8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48575af39d29c204ac07ff733a98c108 = $(`&lt;div id=&quot;html_48575af39d29c204ac07ff733a98c108&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.914             latitude:28.4514             PM2_5:28.95391061             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51bafa4fc371ebc1462af36bf671a8a8.setContent(html_48575af39d29c204ac07ff733a98c108);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b110141ccd1a52cec09352b19e6210d0.bindPopup(popup_51bafa4fc371ebc1462af36bf671a8a8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3272a657e3fde5c5d180a1ac2d0d66c = L.circleMarker(\\n\",\n       \"                [37.4014, 121.5992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab399670cf3eeb5b670222efdcf1deaa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b292f0b5531169e0be1497984bf368f = $(`&lt;div id=&quot;html_3b292f0b5531169e0be1497984bf368f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5992             latitude:37.4014             PM2_5:26.3627451             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab399670cf3eeb5b670222efdcf1deaa.setContent(html_3b292f0b5531169e0be1497984bf368f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3272a657e3fde5c5d180a1ac2d0d66c.bindPopup(popup_ab399670cf3eeb5b670222efdcf1deaa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_02d096277063513d2c5c8ec6925c6493 = L.circleMarker(\\n\",\n       \"                [29.709, 106.452],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f6928ef7203b5af6a579c70d45810e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f45dd0d0b0790dfc69594e702ce0191 = $(`&lt;div id=&quot;html_1f45dd0d0b0790dfc69594e702ce0191&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.452             latitude:29.709             PM2_5:32.58450704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f6928ef7203b5af6a579c70d45810e1.setContent(html_1f45dd0d0b0790dfc69594e702ce0191);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_02d096277063513d2c5c8ec6925c6493.bindPopup(popup_1f6928ef7203b5af6a579c70d45810e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4bf72bb5e102dd65cc77436d39bf0caa = L.circleMarker(\\n\",\n       \"                [43.8711, 87.5525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aba41b02a3155ec2e03b378d47bba574 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c8c28580dd3bf1ce8433bcadb9fd6ac = $(`&lt;div id=&quot;html_2c8c28580dd3bf1ce8433bcadb9fd6ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5525             latitude:43.8711             PM2_5:61.29261364             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aba41b02a3155ec2e03b378d47bba574.setContent(html_2c8c28580dd3bf1ce8433bcadb9fd6ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4bf72bb5e102dd65cc77436d39bf0caa.bindPopup(popup_aba41b02a3155ec2e03b378d47bba574)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67cde038de7d27331cf883ed68d27059 = L.circleMarker(\\n\",\n       \"                [43.6267, 122.2603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca6e294af34a84ffc4cbdeaf1769f741 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c038dae0a27ba254589ceb48231bbcbd = $(`&lt;div id=&quot;html_c038dae0a27ba254589ceb48231bbcbd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2603             latitude:43.6267             PM2_5:21.67696629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca6e294af34a84ffc4cbdeaf1769f741.setContent(html_c038dae0a27ba254589ceb48231bbcbd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67cde038de7d27331cf883ed68d27059.bindPopup(popup_ca6e294af34a84ffc4cbdeaf1769f741)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d283d265d41a3a2063d6b56358000a35 = L.circleMarker(\\n\",\n       \"                [22.75, 114.085],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f6d3dee5d1231ee1ee6ef3596c1bc7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_901d8620ab9aabcec0b25dcffb07b9f1 = $(`&lt;div id=&quot;html_901d8620ab9aabcec0b25dcffb07b9f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.085             latitude:22.75             PM2_5:34.49715909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f6d3dee5d1231ee1ee6ef3596c1bc7e.setContent(html_901d8620ab9aabcec0b25dcffb07b9f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d283d265d41a3a2063d6b56358000a35.bindPopup(popup_6f6d3dee5d1231ee1ee6ef3596c1bc7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1825c0d3408887c63069ffd80102cb63 = L.circleMarker(\\n\",\n       \"                [34.429, 115.6558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c37255b9b84c81ef081a56006f4c4d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78b47566acbb46811affe98b674302d2 = $(`&lt;div id=&quot;html_78b47566acbb46811affe98b674302d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6558             latitude:34.429             PM2_5:55.75             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c37255b9b84c81ef081a56006f4c4d3.setContent(html_78b47566acbb46811affe98b674302d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1825c0d3408887c63069ffd80102cb63.bindPopup(popup_4c37255b9b84c81ef081a56006f4c4d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ddc4f54b3d89af2f9da03c685b757b8 = L.circleMarker(\\n\",\n       \"                [44.5782, 129.6115],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_efdc5c30e7d5e2f81363e1e5b891d475 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48eb7bd42765bb273ab5a571d2a7b80f = $(`&lt;div id=&quot;html_48eb7bd42765bb273ab5a571d2a7b80f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6115             latitude:44.5782             PM2_5:22.02089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_efdc5c30e7d5e2f81363e1e5b891d475.setContent(html_48eb7bd42765bb273ab5a571d2a7b80f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ddc4f54b3d89af2f9da03c685b757b8.bindPopup(popup_efdc5c30e7d5e2f81363e1e5b891d475)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_298c96cec6646364cebaa97aacd97c2a = L.circleMarker(\\n\",\n       \"                [39.9716, 116.473],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88499c44cb344a381dc13509773986fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c86d1a919d1cfb3882f88c0103614106 = $(`&lt;div id=&quot;html_c86d1a919d1cfb3882f88c0103614106&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.473             latitude:39.9716             PM2_5:53.18907563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88499c44cb344a381dc13509773986fc.setContent(html_c86d1a919d1cfb3882f88c0103614106);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_298c96cec6646364cebaa97aacd97c2a.bindPopup(popup_88499c44cb344a381dc13509773986fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2056a4c9ff598bd81fff80a923e08520 = L.circleMarker(\\n\",\n       \"                [38.8416, 115.4612],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fcf5c8fd3456c3fca5a8ac64424d19a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_164cd5c7133140a67340ac4e17e97ea8 = $(`&lt;div id=&quot;html_164cd5c7133140a67340ac4e17e97ea8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.4612             latitude:38.8416             PM2_5:57.22093023             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fcf5c8fd3456c3fca5a8ac64424d19a7.setContent(html_164cd5c7133140a67340ac4e17e97ea8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2056a4c9ff598bd81fff80a923e08520.bindPopup(popup_fcf5c8fd3456c3fca5a8ac64424d19a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3a761a2abe10d9112dc93f29f554198 = L.circleMarker(\\n\",\n       \"                [23.4792, 111.2897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be4a5098b826641fafc2cb27b9e475d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f878cd992a228eab5fa8efb87ef2f59 = $(`&lt;div id=&quot;html_7f878cd992a228eab5fa8efb87ef2f59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2897             latitude:23.4792             PM2_5:35.94598338             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be4a5098b826641fafc2cb27b9e475d7.setContent(html_7f878cd992a228eab5fa8efb87ef2f59);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3a761a2abe10d9112dc93f29f554198.bindPopup(popup_be4a5098b826641fafc2cb27b9e475d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d36ae4f6d2f45ee4602c605e7fd6ec9 = L.circleMarker(\\n\",\n       \"                [30.6414, 114.2131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca5021810e901f67500a085df41a9a64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdf25a361c38bd7dc528e8bed0a5265d = $(`&lt;div id=&quot;html_bdf25a361c38bd7dc528e8bed0a5265d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2131             latitude:30.6414             PM2_5:48.2254902             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca5021810e901f67500a085df41a9a64.setContent(html_bdf25a361c38bd7dc528e8bed0a5265d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d36ae4f6d2f45ee4602c605e7fd6ec9.bindPopup(popup_ca5021810e901f67500a085df41a9a64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89038fdd42e3890e99a0c87c6e233701 = L.circleMarker(\\n\",\n       \"                [37.1013, 79.9117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a438bf82ffbc8f9c1f69e1ba8c54fa8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35700f1be7b926d73e76596dc085862e = $(`&lt;div id=&quot;html_35700f1be7b926d73e76596dc085862e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:79.9117             latitude:37.1013             PM2_5:131.0946328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a438bf82ffbc8f9c1f69e1ba8c54fa8.setContent(html_35700f1be7b926d73e76596dc085862e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89038fdd42e3890e99a0c87c6e233701.bindPopup(popup_7a438bf82ffbc8f9c1f69e1ba8c54fa8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c68cdbe066bf668cb3cc71f5b13ba417 = L.circleMarker(\\n\",\n       \"                [28.76389, 104.6417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01d415a6169e20455831c41138e4c77c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89afbe4a94cbaf4968007b8ca3dc5eef = $(`&lt;div id=&quot;html_89afbe4a94cbaf4968007b8ca3dc5eef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6417             latitude:28.76389             PM2_5:46.44150418             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01d415a6169e20455831c41138e4c77c.setContent(html_89afbe4a94cbaf4968007b8ca3dc5eef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c68cdbe066bf668cb3cc71f5b13ba417.bindPopup(popup_01d415a6169e20455831c41138e4c77c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f05a2966e83bb96372f3eda4a669cdb = L.circleMarker(\\n\",\n       \"                [35.0622, 118.2939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b4be1da355a01cad7c11ca9906d672c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a97a3330af7b7af0709e3f64feae4b79 = $(`&lt;div id=&quot;html_a97a3330af7b7af0709e3f64feae4b79&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2939             latitude:35.0622             PM2_5:41.16340782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b4be1da355a01cad7c11ca9906d672c.setContent(html_a97a3330af7b7af0709e3f64feae4b79);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f05a2966e83bb96372f3eda4a669cdb.bindPopup(popup_3b4be1da355a01cad7c11ca9906d672c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4817b77cd89d046489e09ed123998830 = L.circleMarker(\\n\",\n       \"                [46.7432, 82.9994],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2addcf7d0ebcf385db5605143dc2961c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_616f7bf0147c776c6455f30cf3d08987 = $(`&lt;div id=&quot;html_616f7bf0147c776c6455f30cf3d08987&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.9994             latitude:46.7432             PM2_5:18.03333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2addcf7d0ebcf385db5605143dc2961c.setContent(html_616f7bf0147c776c6455f30cf3d08987);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4817b77cd89d046489e09ed123998830.bindPopup(popup_2addcf7d0ebcf385db5605143dc2961c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_793fc93fcbbc11784c4c37e857be68a3 = L.circleMarker(\\n\",\n       \"                [33.6406, 114.6369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_622d64c05f070234f262be2aaf738169 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e404890440e2d993edf880b70fc58c09 = $(`&lt;div id=&quot;html_e404890440e2d993edf880b70fc58c09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6369             latitude:33.6406             PM2_5:53.37290503             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_622d64c05f070234f262be2aaf738169.setContent(html_e404890440e2d993edf880b70fc58c09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_793fc93fcbbc11784c4c37e857be68a3.bindPopup(popup_622d64c05f070234f262be2aaf738169)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2df5be02df41b0ed258f7657749ec59 = L.circleMarker(\\n\",\n       \"                [36.44, 120.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76f0211e1ab4f96f6130cef997f6ade8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6a14966c8a259da49cebe79bbe2b49c = $(`&lt;div id=&quot;html_e6a14966c8a259da49cebe79bbe2b49c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.61             latitude:36.44             PM2_5:31.77478754             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76f0211e1ab4f96f6130cef997f6ade8.setContent(html_e6a14966c8a259da49cebe79bbe2b49c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2df5be02df41b0ed258f7657749ec59.bindPopup(popup_76f0211e1ab4f96f6130cef997f6ade8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3c79a778df22cc2849b723ab73ac678 = L.circleMarker(\\n\",\n       \"                [31.453, 121.115],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_096138d962f8825820e3ae67abdfc6aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77a2e3fc7e845c7b8aa3abc7d900efb4 = $(`&lt;div id=&quot;html_77a2e3fc7e845c7b8aa3abc7d900efb4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.115             latitude:31.453             PM2_5:37.25837989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_096138d962f8825820e3ae67abdfc6aa.setContent(html_77a2e3fc7e845c7b8aa3abc7d900efb4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3c79a778df22cc2849b723ab73ac678.bindPopup(popup_096138d962f8825820e3ae67abdfc6aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed4211125b63deafeba71e72f8365ef0 = L.circleMarker(\\n\",\n       \"                [28.6839, 115.8886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e58a1c768d0d16ed5aa1d1fa04b4b0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59e1ef2eb03fcf7623a6c8928f9c7373 = $(`&lt;div id=&quot;html_59e1ef2eb03fcf7623a6c8928f9c7373&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8886             latitude:28.6839             PM2_5:31.19067797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e58a1c768d0d16ed5aa1d1fa04b4b0a.setContent(html_59e1ef2eb03fcf7623a6c8928f9c7373);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed4211125b63deafeba71e72f8365ef0.bindPopup(popup_1e58a1c768d0d16ed5aa1d1fa04b4b0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfbd57b5cc43e5d82510bd0c28cdd2ea = L.circleMarker(\\n\",\n       \"                [36.1939, 113.0972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_412e2c4bd9d3f9302671b91e61008f24 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30be48929e4089b7bcc4fdd9bb7d355a = $(`&lt;div id=&quot;html_30be48929e4089b7bcc4fdd9bb7d355a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0972             latitude:36.1939             PM2_5:67.90720222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_412e2c4bd9d3f9302671b91e61008f24.setContent(html_30be48929e4089b7bcc4fdd9bb7d355a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfbd57b5cc43e5d82510bd0c28cdd2ea.bindPopup(popup_412e2c4bd9d3f9302671b91e61008f24)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7aa60a8e1596c503319a7c63dcc16c77 = L.circleMarker(\\n\",\n       \"                [24.3289, 116.1278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a55da6f1d156df139d597f734f7a6020 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7d0131d2168e7d7205d1d50766dbb83 = $(`&lt;div id=&quot;html_c7d0131d2168e7d7205d1d50766dbb83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1278             latitude:24.3289             PM2_5:23.67318436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a55da6f1d156df139d597f734f7a6020.setContent(html_c7d0131d2168e7d7205d1d50766dbb83);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7aa60a8e1596c503319a7c63dcc16c77.bindPopup(popup_a55da6f1d156df139d597f734f7a6020)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_710ecbd5ea45563897e4a263bb3d0795 = L.circleMarker(\\n\",\n       \"                [29.4822, 106.364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16f3c01a62aa2a014fc7d78d7e8670f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9fe1f430de9f264ed1fe0f618733faad = $(`&lt;div id=&quot;html_9fe1f430de9f264ed1fe0f618733faad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.364             latitude:29.4822             PM2_5:41.16714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16f3c01a62aa2a014fc7d78d7e8670f6.setContent(html_9fe1f430de9f264ed1fe0f618733faad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_710ecbd5ea45563897e4a263bb3d0795.bindPopup(popup_16f3c01a62aa2a014fc7d78d7e8670f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94d3fa8f7bbaa5c77530574661dc508d = L.circleMarker(\\n\",\n       \"                [40.7094, 122.2703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_908d63da1986a8cf1948d90e3d4ca8f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2273c5bc08582fa6896b93d47c4ab93b = $(`&lt;div id=&quot;html_2273c5bc08582fa6896b93d47c4ab93b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2703             latitude:40.7094             PM2_5:32.92200557             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_908d63da1986a8cf1948d90e3d4ca8f7.setContent(html_2273c5bc08582fa6896b93d47c4ab93b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94d3fa8f7bbaa5c77530574661dc508d.bindPopup(popup_908d63da1986a8cf1948d90e3d4ca8f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d53f9116368316566b53e36c1696e1a6 = L.circleMarker(\\n\",\n       \"                [30.6133, 105.68],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66602feff9e0ea03dec68a3a24df5fa9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77847466b047dadc611c6f4512254d10 = $(`&lt;div id=&quot;html_77847466b047dadc611c6f4512254d10&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.68             latitude:30.6133             PM2_5:41.39944134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66602feff9e0ea03dec68a3a24df5fa9.setContent(html_77847466b047dadc611c6f4512254d10);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d53f9116368316566b53e36c1696e1a6.bindPopup(popup_66602feff9e0ea03dec68a3a24df5fa9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d3c472daee9a9cf342033f28e8ee269 = L.circleMarker(\\n\",\n       \"                [23.1569, 113.281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a173268660b210111874878130050e10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3419946483fb3d97699cb4820c5f666b = $(`&lt;div id=&quot;html_3419946483fb3d97699cb4820c5f666b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.281             latitude:23.1569             PM2_5:35.75487465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a173268660b210111874878130050e10.setContent(html_3419946483fb3d97699cb4820c5f666b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d3c472daee9a9cf342033f28e8ee269.bindPopup(popup_a173268660b210111874878130050e10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52435e704dc4e53adbc1fee0053475ac = L.circleMarker(\\n\",\n       \"                [32.0005, 120.86],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c7ac762ee900c067b62a041906f67c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9bdcdebe512d8cbccea14c65b6b44100 = $(`&lt;div id=&quot;html_9bdcdebe512d8cbccea14c65b6b44100&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.86             latitude:32.0005             PM2_5:37.98735955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c7ac762ee900c067b62a041906f67c7.setContent(html_9bdcdebe512d8cbccea14c65b6b44100);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52435e704dc4e53adbc1fee0053475ac.bindPopup(popup_4c7ac762ee900c067b62a041906f67c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aee6092c2353578b4a9962bb572d4337 = L.circleMarker(\\n\",\n       \"                [38.0108, 112.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f408933479a02859be67af9277fd2d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13a28fc94276f1615fedd11c30cc14c4 = $(`&lt;div id=&quot;html_13a28fc94276f1615fedd11c30cc14c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.434             latitude:38.0108             PM2_5:50.17329545             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f408933479a02859be67af9277fd2d6.setContent(html_13a28fc94276f1615fedd11c30cc14c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aee6092c2353578b4a9962bb572d4337.bindPopup(popup_5f408933479a02859be67af9277fd2d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ed11cb807f4aa3529358dd3a8c2ee3b = L.circleMarker(\\n\",\n       \"                [29.1128, 119.6533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe9c4954334a83d8c7bc928e78d9a0de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00f62a160f3428e87b466d8816bec0d8 = $(`&lt;div id=&quot;html_00f62a160f3428e87b466d8816bec0d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6533             latitude:29.1128             PM2_5:35.30779944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe9c4954334a83d8c7bc928e78d9a0de.setContent(html_00f62a160f3428e87b466d8816bec0d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ed11cb807f4aa3529358dd3a8c2ee3b.bindPopup(popup_fe9c4954334a83d8c7bc928e78d9a0de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec399ec410d4e62282d0f057018ef779 = L.circleMarker(\\n\",\n       \"                [27.4948, 114.0944],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_342bb5f423441a66e5368bfe5e244ccf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d9b835f058837db44bffa4feb49bd77 = $(`&lt;div id=&quot;html_1d9b835f058837db44bffa4feb49bd77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0944             latitude:27.4948             PM2_5:22.06590258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_342bb5f423441a66e5368bfe5e244ccf.setContent(html_1d9b835f058837db44bffa4feb49bd77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec399ec410d4e62282d0f057018ef779.bindPopup(popup_342bb5f423441a66e5368bfe5e244ccf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14b552b5746e55348ca6877dc21cd9da = L.circleMarker(\\n\",\n       \"                [42.9559, 89.1673],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c3b71fbc0f761cfb7319486ac77e0df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca0f02083393d81983cb7fa6360236a3 = $(`&lt;div id=&quot;html_ca0f02083393d81983cb7fa6360236a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:89.1673             latitude:42.9559             PM2_5:68.71764706             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c3b71fbc0f761cfb7319486ac77e0df.setContent(html_ca0f02083393d81983cb7fa6360236a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14b552b5746e55348ca6877dc21cd9da.bindPopup(popup_9c3b71fbc0f761cfb7319486ac77e0df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8362cef49816652ffffc1953d00a36d2 = L.circleMarker(\\n\",\n       \"                [40.1114, 113.2803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03b273473bebc54e499746ba1a28c115 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7cdf571df8efb742adc7dfb4ddad962 = $(`&lt;div id=&quot;html_b7cdf571df8efb742adc7dfb4ddad962&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2803             latitude:40.1114             PM2_5:39.94444444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03b273473bebc54e499746ba1a28c115.setContent(html_b7cdf571df8efb742adc7dfb4ddad962);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8362cef49816652ffffc1953d00a36d2.bindPopup(popup_03b273473bebc54e499746ba1a28c115)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_526815a7516c69db9b866d056ddbde01 = L.circleMarker(\\n\",\n       \"                [27.8867, 113.095],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_068eceb25ffc81289111614b7eb3a14c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9cda92a831f987fc1534ef22cd80ecb5 = $(`&lt;div id=&quot;html_9cda92a831f987fc1534ef22cd80ecb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.095             latitude:27.8867             PM2_5:42.7122905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_068eceb25ffc81289111614b7eb3a14c.setContent(html_9cda92a831f987fc1534ef22cd80ecb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_526815a7516c69db9b866d056ddbde01.bindPopup(popup_068eceb25ffc81289111614b7eb3a14c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_55a34dcde864d9ac136d444a96dbac3f = L.circleMarker(\\n\",\n       \"                [38.9389, 100.4497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24c5d962a9f9e37c631725c5cab573d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b09b936d29e82d64e79b248ed3d43b39 = $(`&lt;div id=&quot;html_b09b936d29e82d64e79b248ed3d43b39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.4497             latitude:38.9389             PM2_5:27.20277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24c5d962a9f9e37c631725c5cab573d5.setContent(html_b09b936d29e82d64e79b248ed3d43b39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_55a34dcde864d9ac136d444a96dbac3f.bindPopup(popup_24c5d962a9f9e37c631725c5cab573d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9bc8079e8b3f34563fb1d7e150264915 = L.circleMarker(\\n\",\n       \"                [26.8733, 112.6197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5fbf4f4991d1d010be2b83b118b7327 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec04703450faf0bcb4c117ca86e58893 = $(`&lt;div id=&quot;html_ec04703450faf0bcb4c117ca86e58893&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6197             latitude:26.8733             PM2_5:47.85070423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5fbf4f4991d1d010be2b83b118b7327.setContent(html_ec04703450faf0bcb4c117ca86e58893);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9bc8079e8b3f34563fb1d7e150264915.bindPopup(popup_e5fbf4f4991d1d010be2b83b118b7327)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8ea659a68cb9d1fe82b27683f3a87bd = L.circleMarker(\\n\",\n       \"                [44.3075, 86.0697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_551d3de1bfa2bfac1537ad8e99e53a62 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_800b977af3ffe15f7f947280711638f6 = $(`&lt;div id=&quot;html_800b977af3ffe15f7f947280711638f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.0697             latitude:44.3075             PM2_5:63.06545961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_551d3de1bfa2bfac1537ad8e99e53a62.setContent(html_800b977af3ffe15f7f947280711638f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8ea659a68cb9d1fe82b27683f3a87bd.bindPopup(popup_551d3de1bfa2bfac1537ad8e99e53a62)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fb7b03f15d009c1b79c1e126b443063 = L.circleMarker(\\n\",\n       \"                [37.9311, 102.6219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81ae9618bddedeb0df5086f834fa27a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa80ba268c986c44a6f0be19eaba6677 = $(`&lt;div id=&quot;html_aa80ba268c986c44a6f0be19eaba6677&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6219             latitude:37.9311             PM2_5:36.92837079             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81ae9618bddedeb0df5086f834fa27a7.setContent(html_aa80ba268c986c44a6f0be19eaba6677);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fb7b03f15d009c1b79c1e126b443063.bindPopup(popup_81ae9618bddedeb0df5086f834fa27a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fbaf6d5d6e461fb7e5fd57c5b56bd84 = L.circleMarker(\\n\",\n       \"                [28.7994, 115.742],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ccf0b7b974efeba1d976303767383d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e98606c62e5cdbb98ad2fcd102bbbea5 = $(`&lt;div id=&quot;html_e98606c62e5cdbb98ad2fcd102bbbea5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.742             latitude:28.7994             PM2_5:27.25360231             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ccf0b7b974efeba1d976303767383d6.setContent(html_e98606c62e5cdbb98ad2fcd102bbbea5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fbaf6d5d6e461fb7e5fd57c5b56bd84.bindPopup(popup_2ccf0b7b974efeba1d976303767383d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a36c7e7f3029903a5b235954639ca3c = L.circleMarker(\\n\",\n       \"                [35.4894, 112.8664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ba1f9717abea49a2213da18a107815c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_112466bc3c96ddc378bb2f32b30bff71 = $(`&lt;div id=&quot;html_112466bc3c96ddc378bb2f32b30bff71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8664             latitude:35.4894             PM2_5:56.08169014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ba1f9717abea49a2213da18a107815c.setContent(html_112466bc3c96ddc378bb2f32b30bff71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a36c7e7f3029903a5b235954639ca3c.bindPopup(popup_9ba1f9717abea49a2213da18a107815c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a5907954c094fe8c26d704edcf4e97e = L.circleMarker(\\n\",\n       \"                [44.9079, 82.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd546e728a4e22e6f719019500353775 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7c9a03c14ca5bdb36f61a5d00acb0f5 = $(`&lt;div id=&quot;html_e7c9a03c14ca5bdb36f61a5d00acb0f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.0485             latitude:44.9079             PM2_5:20.61699164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd546e728a4e22e6f719019500353775.setContent(html_e7c9a03c14ca5bdb36f61a5d00acb0f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a5907954c094fe8c26d704edcf4e97e.bindPopup(popup_fd546e728a4e22e6f719019500353775)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26021561b4039109265f68049aad1026 = L.circleMarker(\\n\",\n       \"                [40.5546, 110.0377],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c77a98e4480f3142a94b8b3afb8dc1f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e45b231f3215cf7f1ce5ecdab66d7ce = $(`&lt;div id=&quot;html_7e45b231f3215cf7f1ce5ecdab66d7ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0377             latitude:40.5546             PM2_5:42.96829971             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c77a98e4480f3142a94b8b3afb8dc1f2.setContent(html_7e45b231f3215cf7f1ce5ecdab66d7ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26021561b4039109265f68049aad1026.bindPopup(popup_c77a98e4480f3142a94b8b3afb8dc1f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_947b4c3a55e09ed3a1d693931cca061f = L.circleMarker(\\n\",\n       \"                [26.2708, 117.6353],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13de5ba6bd558a166ec008e7ac1a7ca7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01842ad4064b05309eb4a88a7d60bcd8 = $(`&lt;div id=&quot;html_01842ad4064b05309eb4a88a7d60bcd8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6353             latitude:26.2708             PM2_5:26.2752809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13de5ba6bd558a166ec008e7ac1a7ca7.setContent(html_01842ad4064b05309eb4a88a7d60bcd8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_947b4c3a55e09ed3a1d693931cca061f.bindPopup(popup_13de5ba6bd558a166ec008e7ac1a7ca7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87ec5856c9ffb4298229f0b4c51498e9 = L.circleMarker(\\n\",\n       \"                [39.3606, 112.4549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f68297cb15ab6f5dcbfc5fde63e7c872 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b735ec1c7ae807ebbc29f57930594240 = $(`&lt;div id=&quot;html_b735ec1c7ae807ebbc29f57930594240&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4549             latitude:39.3606             PM2_5:36.20538244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f68297cb15ab6f5dcbfc5fde63e7c872.setContent(html_b735ec1c7ae807ebbc29f57930594240);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87ec5856c9ffb4298229f0b4c51498e9.bindPopup(popup_f68297cb15ab6f5dcbfc5fde63e7c872)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94b30d66f8eb79f198f7670a75f1faea = L.circleMarker(\\n\",\n       \"                [23.0528, 112.471],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28802097288852611a363e5265715686 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8fb244693974194ceac1cf53e29a603d = $(`&lt;div id=&quot;html_8fb244693974194ceac1cf53e29a603d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.471             latitude:23.0528             PM2_5:38.88826816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28802097288852611a363e5265715686.setContent(html_8fb244693974194ceac1cf53e29a603d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94b30d66f8eb79f198f7670a75f1faea.bindPopup(popup_28802097288852611a363e5265715686)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b136d4e62c952f267dfc3732181d5ead = L.circleMarker(\\n\",\n       \"                [35.0896, 118.4023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eef1004069928c32aae8efcc372834af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1f2277a9b352241e477fa3d6fb6205a = $(`&lt;div id=&quot;html_c1f2277a9b352241e477fa3d6fb6205a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4023             latitude:35.0896             PM2_5:47.18435754             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eef1004069928c32aae8efcc372834af.setContent(html_c1f2277a9b352241e477fa3d6fb6205a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b136d4e62c952f267dfc3732181d5ead.bindPopup(popup_eef1004069928c32aae8efcc372834af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67141c58cad0031965e58a5ff9d5da33 = L.circleMarker(\\n\",\n       \"                [41.1219, 121.2008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e62eb72e5a0bdc4d5bd99ee1cf59deec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c9ecdf099adea8480369d4a8aaf0a8b = $(`&lt;div id=&quot;html_4c9ecdf099adea8480369d4a8aaf0a8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2008             latitude:41.1219             PM2_5:31.9719888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e62eb72e5a0bdc4d5bd99ee1cf59deec.setContent(html_4c9ecdf099adea8480369d4a8aaf0a8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67141c58cad0031965e58a5ff9d5da33.bindPopup(popup_e62eb72e5a0bdc4d5bd99ee1cf59deec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b158cceade385ad680266dbbd8657376 = L.circleMarker(\\n\",\n       \"                [31.2864, 120.628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9c4196569dc19a384b7a06f18dad486 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6762ac0751f9618830d87595b8e7107d = $(`&lt;div id=&quot;html_6762ac0751f9618830d87595b8e7107d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.628             latitude:31.2864             PM2_5:41.43156425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9c4196569dc19a384b7a06f18dad486.setContent(html_6762ac0751f9618830d87595b8e7107d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b158cceade385ad680266dbbd8657376.bindPopup(popup_d9c4196569dc19a384b7a06f18dad486)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bbc814693eac71d36947601f1fe8e71 = L.circleMarker(\\n\",\n       \"                [27.0983, 115.0075],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_716fe7bd2f5a8c59590b5dc82cac97a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4441625571ea9045aaf2c906c3bd6d55 = $(`&lt;div id=&quot;html_4441625571ea9045aaf2c906c3bd6d55&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0075             latitude:27.0983             PM2_5:52.13370474             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_716fe7bd2f5a8c59590b5dc82cac97a1.setContent(html_4441625571ea9045aaf2c906c3bd6d55);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bbc814693eac71d36947601f1fe8e71.bindPopup(popup_716fe7bd2f5a8c59590b5dc82cac97a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14e0979cc3400946ed4879423b80b36c = L.circleMarker(\\n\",\n       \"                [40.0181, 119.7624],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a1b6b223fabb25a8de41855a7e874fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e16652bd7bd197fd5c500a2274aab116 = $(`&lt;div id=&quot;html_e16652bd7bd197fd5c500a2274aab116&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7624             latitude:40.0181             PM2_5:27.50418994             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a1b6b223fabb25a8de41855a7e874fd.setContent(html_e16652bd7bd197fd5c500a2274aab116);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14e0979cc3400946ed4879423b80b36c.bindPopup(popup_7a1b6b223fabb25a8de41855a7e874fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8bf5f650ba41c76e05331d1b05ed880 = L.circleMarker(\\n\",\n       \"                [21.2567, 110.4558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ac8bf4ee33804eb601a6f1b89940148 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24c652b920734e16c582c6afeabf2534 = $(`&lt;div id=&quot;html_24c652b920734e16c582c6afeabf2534&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4558             latitude:21.2567             PM2_5:25.92837079             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ac8bf4ee33804eb601a6f1b89940148.setContent(html_24c652b920734e16c582c6afeabf2534);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8bf5f650ba41c76e05331d1b05ed880.bindPopup(popup_7ac8bf4ee33804eb601a6f1b89940148)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43c2fd5d788f0932096b99775d5d24cc = L.circleMarker(\\n\",\n       \"                [46.8267, 130.3961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_481a18a0bf284be5c1ffc880d0840dee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b497bb12510743fe1ae9216c8e700e1 = $(`&lt;div id=&quot;html_7b497bb12510743fe1ae9216c8e700e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3961             latitude:46.8267             PM2_5:31.34682081             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_481a18a0bf284be5c1ffc880d0840dee.setContent(html_7b497bb12510743fe1ae9216c8e700e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43c2fd5d788f0932096b99775d5d24cc.bindPopup(popup_481a18a0bf284be5c1ffc880d0840dee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b288a7d2467afe6828865ab3411c50f = L.circleMarker(\\n\",\n       \"                [27.7914, 114.3703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5882b9c8002bb3a3481c97e4ab68a23d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05b7f00aa39ef95531480a840ea0c610 = $(`&lt;div id=&quot;html_05b7f00aa39ef95531480a840ea0c610&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3703             latitude:27.7914             PM2_5:50.81476323             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5882b9c8002bb3a3481c97e4ab68a23d.setContent(html_05b7f00aa39ef95531480a840ea0c610);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b288a7d2467afe6828865ab3411c50f.bindPopup(popup_5882b9c8002bb3a3481c97e4ab68a23d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3a75251dae90e24ab187ab6f6206dcb = L.circleMarker(\\n\",\n       \"                [46.0756, 121.9462],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e362dae62a3c611f2b5022a1312c8e34 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d1c15a645b47e54a3c2292a0fb757b7 = $(`&lt;div id=&quot;html_4d1c15a645b47e54a3c2292a0fb757b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.9462             latitude:46.0756             PM2_5:9.045961003             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e362dae62a3c611f2b5022a1312c8e34.setContent(html_4d1c15a645b47e54a3c2292a0fb757b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3a75251dae90e24ab187ab6f6206dcb.bindPopup(popup_e362dae62a3c611f2b5022a1312c8e34)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef5fb7b9b80850efa6dde03ac279808c = L.circleMarker(\\n\",\n       \"                [24.3694, 102.5778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c25eb9ad6d6b7ac7a27f7c663b409eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76aad4c5e5575547a3156b00d89edc9a = $(`&lt;div id=&quot;html_76aad4c5e5575547a3156b00d89edc9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5778             latitude:24.3694             PM2_5:17.84818942             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c25eb9ad6d6b7ac7a27f7c663b409eb.setContent(html_76aad4c5e5575547a3156b00d89edc9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef5fb7b9b80850efa6dde03ac279808c.bindPopup(popup_9c25eb9ad6d6b7ac7a27f7c663b409eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b864046e363f1a0dac0fdc0d0d482fcd = L.circleMarker(\\n\",\n       \"                [23.1886, 112.863],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9f30b3065349e372774d428db687e60 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3de183bac9d6c354257bdab5c2360957 = $(`&lt;div id=&quot;html_3de183bac9d6c354257bdab5c2360957&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.863             latitude:23.1886             PM2_5:38.29305556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9f30b3065349e372774d428db687e60.setContent(html_3de183bac9d6c354257bdab5c2360957);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b864046e363f1a0dac0fdc0d0d482fcd.bindPopup(popup_f9f30b3065349e372774d428db687e60)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70403c0ae0fd15e367e838fac2af6602 = L.circleMarker(\\n\",\n       \"                [37.9723, 106.196],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4cb04aa963bb7bede93c16d65116dc0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e8289bde980b832fdc7add031cb2a2c = $(`&lt;div id=&quot;html_8e8289bde980b832fdc7add031cb2a2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.196             latitude:37.9723             PM2_5:31.52752294             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4cb04aa963bb7bede93c16d65116dc0d.setContent(html_8e8289bde980b832fdc7add031cb2a2c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70403c0ae0fd15e367e838fac2af6602.bindPopup(popup_4cb04aa963bb7bede93c16d65116dc0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22640f09610b0d096ebd8b342cc8d2bb = L.circleMarker(\\n\",\n       \"                [30.9285, 113.9153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ca55e12dd6d04097f899d046014e480 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed3bd0a4f314010d28e29ad8a09c0084 = $(`&lt;div id=&quot;html_ed3bd0a4f314010d28e29ad8a09c0084&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.9153             latitude:30.9285             PM2_5:42.16432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ca55e12dd6d04097f899d046014e480.setContent(html_ed3bd0a4f314010d28e29ad8a09c0084);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22640f09610b0d096ebd8b342cc8d2bb.bindPopup(popup_4ca55e12dd6d04097f899d046014e480)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c38d57cba58218a86a402b9dd900f0d6 = L.circleMarker(\\n\",\n       \"                [36.61763, 114.5129],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cbdf54194a72e69f74d752f5d41c2ad9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5aa436939a876b27988ceb917df2d03 = $(`&lt;div id=&quot;html_e5aa436939a876b27988ceb917df2d03&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5129             latitude:36.61763             PM2_5:72.55013928             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cbdf54194a72e69f74d752f5d41c2ad9.setContent(html_e5aa436939a876b27988ceb917df2d03);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c38d57cba58218a86a402b9dd900f0d6.bindPopup(popup_cbdf54194a72e69f74d752f5d41c2ad9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b0720646533b5e7ab6434b4118b7c9d = L.circleMarker(\\n\",\n       \"                [36.061, 114.483],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99f100a0a92816ed9c95173a780da8e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4ad333858ace87f858f9ef149e60a49 = $(`&lt;div id=&quot;html_d4ad333858ace87f858f9ef149e60a49&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.483             latitude:36.061             PM2_5:60.56695157             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99f100a0a92816ed9c95173a780da8e4.setContent(html_d4ad333858ace87f858f9ef149e60a49);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b0720646533b5e7ab6434b4118b7c9d.bindPopup(popup_99f100a0a92816ed9c95173a780da8e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2a679f3f2a875a2228eaf61e6b2b7a7 = L.circleMarker(\\n\",\n       \"                [27.3361, 103.7225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2523075e42be3d6691f23cc69ac1122 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8230e83df5765b4e1ecd35b142cfc9e7 = $(`&lt;div id=&quot;html_8230e83df5765b4e1ecd35b142cfc9e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7225             latitude:27.3361             PM2_5:22.50840336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2523075e42be3d6691f23cc69ac1122.setContent(html_8230e83df5765b4e1ecd35b142cfc9e7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2a679f3f2a875a2228eaf61e6b2b7a7.bindPopup(popup_c2523075e42be3d6691f23cc69ac1122)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47b53a54d7fa9c12ace9326cf91cff01 = L.circleMarker(\\n\",\n       \"                [23.5486, 116.3242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74958e1e30870bd272b8e0d93c05a24d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7db4544c60d9987d32bb76bb0333064a = $(`&lt;div id=&quot;html_7db4544c60d9987d32bb76bb0333064a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3242             latitude:23.5486             PM2_5:32.28             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74958e1e30870bd272b8e0d93c05a24d.setContent(html_7db4544c60d9987d32bb76bb0333064a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47b53a54d7fa9c12ace9326cf91cff01.bindPopup(popup_74958e1e30870bd272b8e0d93c05a24d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60778273bf50d10ea880020db43d919d = L.circleMarker(\\n\",\n       \"                [26.585, 101.7169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d43e4fb3e94b36225443d6685f9e7bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c54a65d234298184811ba966f08e43eb = $(`&lt;div id=&quot;html_c54a65d234298184811ba966f08e43eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7169             latitude:26.585             PM2_5:32.77222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d43e4fb3e94b36225443d6685f9e7bd.setContent(html_c54a65d234298184811ba966f08e43eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60778273bf50d10ea880020db43d919d.bindPopup(popup_8d43e4fb3e94b36225443d6685f9e7bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c07f338ec7772a4d58aeae463974d475 = L.circleMarker(\\n\",\n       \"                [28.2558, 109.6414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0068eb76e42bafca35908399e1b61ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_233dfd09548799e97082358938261167 = $(`&lt;div id=&quot;html_233dfd09548799e97082358938261167&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6414             latitude:28.2558             PM2_5:32.74358974             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0068eb76e42bafca35908399e1b61ac.setContent(html_233dfd09548799e97082358938261167);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c07f338ec7772a4d58aeae463974d475.bindPopup(popup_a0068eb76e42bafca35908399e1b61ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7de2e675d5eb9e21a462862a95faaf8d = L.circleMarker(\\n\",\n       \"                [30.7478, 120.726],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bac4213cdf34d698b0560fcd5a0f13de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed6f504b82c69368f57e3b7346233bd4 = $(`&lt;div id=&quot;html_ed6f504b82c69368f57e3b7346233bd4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.726             latitude:30.7478             PM2_5:43.09888579             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bac4213cdf34d698b0560fcd5a0f13de.setContent(html_ed6f504b82c69368f57e3b7346233bd4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7de2e675d5eb9e21a462862a95faaf8d.bindPopup(popup_bac4213cdf34d698b0560fcd5a0f13de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7fa1f001d14faa96b81a5c1fc7ababc = L.circleMarker(\\n\",\n       \"                [39.2133, 117.1837],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0052aa83496f2310dc44ab232c2c8854 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da947c1515f82acf6b8ecaf4a10a35e8 = $(`&lt;div id=&quot;html_da947c1515f82acf6b8ecaf4a10a35e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1837             latitude:39.2133             PM2_5:50.36938202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0052aa83496f2310dc44ab232c2c8854.setContent(html_da947c1515f82acf6b8ecaf4a10a35e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7fa1f001d14faa96b81a5c1fc7ababc.bindPopup(popup_0052aa83496f2310dc44ab232c2c8854)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12d1c853549d929f2b3cd59f19d12cee = L.circleMarker(\\n\",\n       \"                [24.299, 109.4221],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a03b13e976233142bd0ebfb2e3a3a8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8428f2a65949cf0560c17e37bd006add = $(`&lt;div id=&quot;html_8428f2a65949cf0560c17e37bd006add&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4221             latitude:24.299             PM2_5:37.98179272             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a03b13e976233142bd0ebfb2e3a3a8a.setContent(html_8428f2a65949cf0560c17e37bd006add);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12d1c853549d929f2b3cd59f19d12cee.bindPopup(popup_0a03b13e976233142bd0ebfb2e3a3a8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15883c071ea3db3c5833756fdc7cc073 = L.circleMarker(\\n\",\n       \"                [45.6175, 122.8211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2cce02c89b1db36729cc3672aa2725ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bfcb6a9a5259c192cd3ca3185cf4e249 = $(`&lt;div id=&quot;html_bfcb6a9a5259c192cd3ca3185cf4e249&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.8211             latitude:45.6175             PM2_5:18.97067039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2cce02c89b1db36729cc3672aa2725ec.setContent(html_bfcb6a9a5259c192cd3ca3185cf4e249);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15883c071ea3db3c5833756fdc7cc073.bindPopup(popup_2cce02c89b1db36729cc3672aa2725ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e353e63c31191bb3396e5fa564b942c9 = L.circleMarker(\\n\",\n       \"                [41.8469, 123.81],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb47ad599760f80f58f38b6ec82e703e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a78d5a9748004d7f7e7c58e55e6643a1 = $(`&lt;div id=&quot;html_a78d5a9748004d7f7e7c58e55e6643a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.81             latitude:41.8469             PM2_5:40.69088319             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb47ad599760f80f58f38b6ec82e703e.setContent(html_a78d5a9748004d7f7e7c58e55e6643a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e353e63c31191bb3396e5fa564b942c9.bindPopup(popup_fb47ad599760f80f58f38b6ec82e703e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eaa2267a550c4c31b7cbb0a22d5df8ae = L.circleMarker(\\n\",\n       \"                [40.0758, 113.2994],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30421d09af097b8b6c35457ca5a83666 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_34859a8a0514d2e88c47b57e6af85c3a = $(`&lt;div id=&quot;html_34859a8a0514d2e88c47b57e6af85c3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2994             latitude:40.0758             PM2_5:36.50283286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30421d09af097b8b6c35457ca5a83666.setContent(html_34859a8a0514d2e88c47b57e6af85c3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eaa2267a550c4c31b7cbb0a22d5df8ae.bindPopup(popup_30421d09af097b8b6c35457ca5a83666)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab0e2b4dec531571157605a3fa69f3dc = L.circleMarker(\\n\",\n       \"                [40.0844, 113.2711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9304e191017bae526db10de02bae2921 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c47ed00311d8282ed1980645ebdfcf4 = $(`&lt;div id=&quot;html_6c47ed00311d8282ed1980645ebdfcf4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2711             latitude:40.0844             PM2_5:37.62215909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9304e191017bae526db10de02bae2921.setContent(html_6c47ed00311d8282ed1980645ebdfcf4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab0e2b4dec531571157605a3fa69f3dc.bindPopup(popup_9304e191017bae526db10de02bae2921)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c0ad59caa31c57d029c03c3390d7a5b = L.circleMarker(\\n\",\n       \"                [33.9528, 118.293],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04fe59be2bc28cc8e6629a28c333c463 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea657da4f2fa2e0771e8811962602d72 = $(`&lt;div id=&quot;html_ea657da4f2fa2e0771e8811962602d72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.293             latitude:33.9528             PM2_5:55.33664773             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04fe59be2bc28cc8e6629a28c333c463.setContent(html_ea657da4f2fa2e0771e8811962602d72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c0ad59caa31c57d029c03c3390d7a5b.bindPopup(popup_04fe59be2bc28cc8e6629a28c333c463)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b693342fb932f3c56a557d6b876df19 = L.circleMarker(\\n\",\n       \"                [36.0756, 103.712],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ccf012550e1d458a0807b066a2ccd6bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59339f20bd6f773763b82dc60e9f91f3 = $(`&lt;div id=&quot;html_59339f20bd6f773763b82dc60e9f91f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.712             latitude:36.0756             PM2_5:54.81601124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ccf012550e1d458a0807b066a2ccd6bd.setContent(html_59339f20bd6f773763b82dc60e9f91f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b693342fb932f3c56a557d6b876df19.bindPopup(popup_ccf012550e1d458a0807b066a2ccd6bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48a98db315e0558caebd0c802ad66789 = L.circleMarker(\\n\",\n       \"                [30.9075, 113.942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8a14e8e5a0877a7759313ca84064e45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf00efdc2a4b79a4dd6e17bec480715b = $(`&lt;div id=&quot;html_cf00efdc2a4b79a4dd6e17bec480715b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.942             latitude:30.9075             PM2_5:49.76571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8a14e8e5a0877a7759313ca84064e45.setContent(html_cf00efdc2a4b79a4dd6e17bec480715b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48a98db315e0558caebd0c802ad66789.bindPopup(popup_c8a14e8e5a0877a7759313ca84064e45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_564096595bf0393219a41a64a5649f28 = L.circleMarker(\\n\",\n       \"                [47.8515, 88.1267],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e032349a4ed776f5a44281314ffb0bed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a03f2290b775f21dc796b74b13dc61fe = $(`&lt;div id=&quot;html_a03f2290b775f21dc796b74b13dc61fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.1267             latitude:47.8515             PM2_5:12.43539326             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e032349a4ed776f5a44281314ffb0bed.setContent(html_a03f2290b775f21dc796b74b13dc61fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_564096595bf0393219a41a64a5649f28.bindPopup(popup_e032349a4ed776f5a44281314ffb0bed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c4bb5178e29c03ef7c49259f22902e9b = L.circleMarker(\\n\",\n       \"                [23.7106, 113.0208],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29302ff3dab5fc35e0e290a0db17b9cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cdef36256b8673f2f5707690849b30c1 = $(`&lt;div id=&quot;html_cdef36256b8673f2f5707690849b30c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0208             latitude:23.7106             PM2_5:33.74147727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29302ff3dab5fc35e0e290a0db17b9cb.setContent(html_cdef36256b8673f2f5707690849b30c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c4bb5178e29c03ef7c49259f22902e9b.bindPopup(popup_29302ff3dab5fc35e0e290a0db17b9cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e9f5e33d0afe74687cf3eadece7fb15 = L.circleMarker(\\n\",\n       \"                [35.7511, 114.2956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60fbf9111021c1fabc7280aa1822ded7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08ab00240e3e063ec1f3e63c3d27b65b = $(`&lt;div id=&quot;html_08ab00240e3e063ec1f3e63c3d27b65b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2956             latitude:35.7511             PM2_5:56.3356546             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60fbf9111021c1fabc7280aa1822ded7.setContent(html_08ab00240e3e063ec1f3e63c3d27b65b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e9f5e33d0afe74687cf3eadece7fb15.bindPopup(popup_60fbf9111021c1fabc7280aa1822ded7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0bf7c5b7eccf2a5f0ec6ce3d6e707dab = L.circleMarker(\\n\",\n       \"                [25.1328, 99.1711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f541b9b852a788959029ec0ca4071e99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e14d65dc88bf474c0a075274383b338 = $(`&lt;div id=&quot;html_6e14d65dc88bf474c0a075274383b338&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.1711             latitude:25.1328             PM2_5:30.39106145             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f541b9b852a788959029ec0ca4071e99.setContent(html_6e14d65dc88bf474c0a075274383b338);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0bf7c5b7eccf2a5f0ec6ce3d6e707dab.bindPopup(popup_f541b9b852a788959029ec0ca4071e99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3585dc15e0f067609e1abcf7394048ef = L.circleMarker(\\n\",\n       \"                [24.9117, 118.5819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6efbada0b82b5578c570e3ec00f06280 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff4ec3961877c8cd200484724b731291 = $(`&lt;div id=&quot;html_ff4ec3961877c8cd200484724b731291&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5819             latitude:24.9117             PM2_5:24.49861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6efbada0b82b5578c570e3ec00f06280.setContent(html_ff4ec3961877c8cd200484724b731291);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3585dc15e0f067609e1abcf7394048ef.bindPopup(popup_6efbada0b82b5578c570e3ec00f06280)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_53b0a1ee6b47b5b330ad2df220cd660f = L.circleMarker(\\n\",\n       \"                [40.9161, 117.9664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_716f0d1f634ccac69c0ece052cee1cf6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7aa6ec0155b212315e0c885f0d786a4 = $(`&lt;div id=&quot;html_c7aa6ec0155b212315e0c885f0d786a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9664             latitude:40.9161             PM2_5:23.53472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_716f0d1f634ccac69c0ece052cee1cf6.setContent(html_c7aa6ec0155b212315e0c885f0d786a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_53b0a1ee6b47b5b330ad2df220cd660f.bindPopup(popup_716f0d1f634ccac69c0ece052cee1cf6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc43902b67f29a1d688e3b0adcec291c = L.circleMarker(\\n\",\n       \"                [27.9647, 116.385],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8c3f7bfef5fc211c56792cd2dec1863 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3a1d05af1ca9c39c75b1d3631217fe9 = $(`&lt;div id=&quot;html_c3a1d05af1ca9c39c75b1d3631217fe9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.385             latitude:27.9647             PM2_5:37.26330532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8c3f7bfef5fc211c56792cd2dec1863.setContent(html_c3a1d05af1ca9c39c75b1d3631217fe9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc43902b67f29a1d688e3b0adcec291c.bindPopup(popup_f8c3f7bfef5fc211c56792cd2dec1863)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8db25976271dc85ef4b2418ac32e23fe = L.circleMarker(\\n\",\n       \"                [29.3678, 113.1772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf5d90711c9e4ff9b118b71ef78dc1d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dfec1882520257964d5d35be9c4efdbf = $(`&lt;div id=&quot;html_dfec1882520257964d5d35be9c4efdbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1772             latitude:29.3678             PM2_5:43.77106742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf5d90711c9e4ff9b118b71ef78dc1d2.setContent(html_dfec1882520257964d5d35be9c4efdbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8db25976271dc85ef4b2418ac32e23fe.bindPopup(popup_cf5d90711c9e4ff9b118b71ef78dc1d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09a2da9e3f38c560bc7039be32ce53d7 = L.circleMarker(\\n\",\n       \"                [38.8632, 115.493],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc8b363e4e2b19d81666824fd6ce75f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_433fce09b5f4c86cd29fab760499cab5 = $(`&lt;div id=&quot;html_433fce09b5f4c86cd29fab760499cab5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.493             latitude:38.8632             PM2_5:57.32777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc8b363e4e2b19d81666824fd6ce75f5.setContent(html_433fce09b5f4c86cd29fab760499cab5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09a2da9e3f38c560bc7039be32ce53d7.bindPopup(popup_bc8b363e4e2b19d81666824fd6ce75f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3f5f5f12caa980aab751143b1dbcdad = L.circleMarker(\\n\",\n       \"                [19.9507, 110.576],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67faa31896fc524955102f28b42648e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f33a4844cd05e59e3597db00e80f7ce = $(`&lt;div id=&quot;html_2f33a4844cd05e59e3597db00e80f7ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.576             latitude:19.9507             PM2_5:16.45702006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67faa31896fc524955102f28b42648e8.setContent(html_2f33a4844cd05e59e3597db00e80f7ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3f5f5f12caa980aab751143b1dbcdad.bindPopup(popup_67faa31896fc524955102f28b42648e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0478bd59e3748ed72397b2df18fda1ce = L.circleMarker(\\n\",\n       \"                [26.0392, 119.303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39f5374a710a01fb2566c6f68c1d545b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36f3a5ae0b7548fa97ce6588f848a19f = $(`&lt;div id=&quot;html_36f3a5ae0b7548fa97ce6588f848a19f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.303             latitude:26.0392             PM2_5:27.23743017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39f5374a710a01fb2566c6f68c1d545b.setContent(html_36f3a5ae0b7548fa97ce6588f848a19f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0478bd59e3748ed72397b2df18fda1ce.bindPopup(popup_39f5374a710a01fb2566c6f68c1d545b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13bfebfca32177676aad33c383e2de3e = L.circleMarker(\\n\",\n       \"                [39.6295, 118.1997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90c53efb0ddf30585be6a255e96ff6cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89b25e5be902bdcc0a466715e716b9aa = $(`&lt;div id=&quot;html_89b25e5be902bdcc0a466715e716b9aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1997             latitude:39.6295             PM2_5:51.32686981             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90c53efb0ddf30585be6a255e96ff6cd.setContent(html_89b25e5be902bdcc0a466715e716b9aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13bfebfca32177676aad33c383e2de3e.bindPopup(popup_90c53efb0ddf30585be6a255e96ff6cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d24ae9362bfd5f768c6d0abe1114897d = L.circleMarker(\\n\",\n       \"                [30.5489, 117.0486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a063fdf62c4ef6b4c6b10eb7183e2c29 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61dce43d1d9b3b20c550f8987d205439 = $(`&lt;div id=&quot;html_61dce43d1d9b3b20c550f8987d205439&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0486             latitude:30.5489             PM2_5:50.58888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a063fdf62c4ef6b4c6b10eb7183e2c29.setContent(html_61dce43d1d9b3b20c550f8987d205439);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d24ae9362bfd5f768c6d0abe1114897d.bindPopup(popup_a063fdf62c4ef6b4c6b10eb7183e2c29)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_871a636201249aaa9a3fe226faa9a19d = L.circleMarker(\\n\",\n       \"                [30.2043, 114.8949],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7f97c2d0aad16fbc255b98ba0fade50 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b35073a920448787cec95c87e34a06a = $(`&lt;div id=&quot;html_3b35073a920448787cec95c87e34a06a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8949             latitude:30.2043             PM2_5:52.29083095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7f97c2d0aad16fbc255b98ba0fade50.setContent(html_3b35073a920448787cec95c87e34a06a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_871a636201249aaa9a3fe226faa9a19d.bindPopup(popup_a7f97c2d0aad16fbc255b98ba0fade50)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cce142ddfe06300cf9b0a7fecd0ad422 = L.circleMarker(\\n\",\n       \"                [34.5101, 109.5293],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0db7c81516472f98af9ee2b590594038 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0979d4f0c3f660fb05a2631a0ca9c17e = $(`&lt;div id=&quot;html_0979d4f0c3f660fb05a2631a0ca9c17e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5293             latitude:34.5101             PM2_5:60.51585014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0db7c81516472f98af9ee2b590594038.setContent(html_0979d4f0c3f660fb05a2631a0ca9c17e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cce142ddfe06300cf9b0a7fecd0ad422.bindPopup(popup_0db7c81516472f98af9ee2b590594038)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9758c6838cb4d4414cb38a7604847ad4 = L.circleMarker(\\n\",\n       \"                [43.8228, 126.4978],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f54c156a5f6162b0f74c9f378aba20f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6985be137e7f0db1f708e1cdd9293d18 = $(`&lt;div id=&quot;html_6985be137e7f0db1f708e1cdd9293d18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4978             latitude:43.8228             PM2_5:27.61111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f54c156a5f6162b0f74c9f378aba20f9.setContent(html_6985be137e7f0db1f708e1cdd9293d18);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9758c6838cb4d4414cb38a7604847ad4.bindPopup(popup_f54c156a5f6162b0f74c9f378aba20f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.color = d3.scale.threshold()\\n\",\n       \"              .domain([8.361031519, 8.606990639803609, 8.852949760607215, 9.098908881410823, 9.34486800221443, 9.590827123018038, 9.836786243821644, 10.082745364625252, 10.328704485428858, 10.574663606232466, 10.820622727036074, 11.06658184783968, 11.312540968643287, 11.558500089446895, 11.804459210250503, 12.050418331054109, 12.296377451857717, 12.542336572661323, 12.788295693464931, 13.034254814268538, 13.280213935072146, 13.526173055875752, 13.77213217667936, 14.018091297482968, 14.264050418286574, 14.51000953909018, 14.755968659893789, 15.001927780697397, 15.247886901501003, 15.493846022304611, 15.739805143108217, 15.985764263911825, 16.231723384715433, 16.47768250551904, 16.723641626322646, 16.969600747126254, 17.215559867929862, 17.461518988733467, 17.707478109537075, 17.953437230340683, 18.19939635114429, 18.4453554719479, 18.691314592751503, 18.937273713555115, 19.18323283435872, 19.429191955162324, 19.675151075965935, 19.92111019676954, 20.167069317573148, 20.413028438376756, 20.65898755918036, 20.904946679983972, 21.150905800787577, 21.39686492159118, 21.642824042394793, 21.888783163198397, 22.134742284002005, 22.380701404805613, 22.62666052560922, 22.87261964641283, 23.118578767216434, 23.36453788802004, 23.61049700882365, 23.856456129627254, 24.102415250430866, 24.34837437123447, 24.59433349203808, 24.840292612841683, 25.086251733645295, 25.3322108544489, 25.578169975252507, 25.824129096056115, 26.070088216859723, 26.316047337663328, 26.562006458466936, 26.807965579270544, 27.05392470007415, 27.29988382087776, 27.545842941681364, 27.791802062484972, 28.03776118328858, 28.283720304092185, 28.529679424895793, 28.7756385456994, 29.02159766650301, 29.267556787306614, 29.513515908110225, 29.75947502891383, 30.005434149717434, 30.251393270521046, 30.49735239132465, 30.74331151212826, 30.989270632931866, 31.235229753735474, 31.48118887453908, 31.72714799534269, 31.973107116146295, 32.2190662369499, 32.46502535775351, 32.710984478557116, 32.95694359936073, 33.20290272016433, 33.448861840967936, 33.69482096177154, 33.94078008257516, 34.186739203378764, 34.43269832418237, 34.67865744498597, 34.92461656578958, 35.17057568659319, 35.4165348073968, 35.662493928200405, 35.90845304900401, 36.154412169807614, 36.400371290611226, 36.64633041141483, 36.89228953221844, 37.138248653022046, 37.38420777382565, 37.63016689462926, 37.87612601543287, 38.12208513623648, 38.36804425704008, 38.61400337784369, 38.85996249864729, 39.10592161945091, 39.351880740254515, 39.59783986105812, 39.843798981861724, 40.08975810266533, 40.33571722346894, 40.581676344272545, 40.827635465076156, 41.07359458587976, 41.319553706683365, 41.56551282748698, 41.81147194829059, 42.057431069094186, 42.3033901898978, 42.54934931070141, 42.79530843150501, 43.04126755230862, 43.28722667311223, 43.533185793915834, 43.779144914719446, 44.02510403552305, 44.271063156326655, 44.517022277130266, 44.76298139793387, 45.008940518737475, 45.25489963954109, 45.5008587603447, 45.746817881148296, 45.99277700195191, 46.23873612275552, 46.484695243559116, 46.73065436436273, 46.97661348516634, 47.222572605969944, 47.46853172677355, 47.71449084757716, 47.960449968380765, 48.20640908918437, 48.45236820998798, 48.698327330791585, 48.9442864515952, 49.1902455723988, 49.436204693202406, 49.68216381400602, 49.92812293480962, 50.174082055613226, 50.42004117641684, 50.66600029722045, 50.91195941802405, 51.15791853882766, 51.40387765963127, 51.64983678043487, 51.89579590123848, 52.14175502204209, 52.387714142845695, 52.6336732636493, 52.87963238445291, 53.125591505256516, 53.37155062606013, 53.61750974686373, 53.863468867667336, 54.10942798847095, 54.35538710927455, 54.60134623007816, 54.84730535088177, 55.09326447168538, 55.33922359248898, 55.58518271329259, 55.8311418340962, 56.0771009548998, 56.32306007570341, 56.56901919650702, 56.814978317310626, 57.06093743811423, 57.30689655891784, 57.552855679721446, 57.79881480052505, 58.04477392132866, 58.29073304213227, 58.53669216293588, 58.78265128373948, 59.02861040454309, 59.2745695253467, 59.52052864615031, 59.76648776695391, 60.01244688775752, 60.25840600856113, 60.50436512936473, 60.75032425016834, 60.99628337097195, 61.242242491775556, 61.48820161257916, 61.73416073338277, 61.98011985418638, 62.22607897498998, 62.47203809579359, 62.7179972165972, 62.96395633740081, 63.209915458204414, 63.45587457900802, 63.70183369981163, 63.947792820615234, 64.19375194141884, 64.43971106222244, 64.68567018302606, 64.93162930382965, 65.17758842463327, 65.42354754543689, 65.66950666624048, 65.9154657870441, 66.1614249078477, 66.40738402865131, 66.65334314945491, 66.89930227025852, 67.14526139106212, 67.39122051186573, 67.63717963266934, 67.88313875347295, 68.12909787427657, 68.37505699508016, 68.62101611588378, 68.86697523668738, 69.11293435749099, 69.35889347829459, 69.6048525990982, 69.85081171990181, 70.0967708407054, 70.34272996150902, 70.58868908231264, 70.83464820311625, 71.08060732391985, 71.32656644472345, 71.57252556552706, 71.81848468633066, 72.06444380713427, 72.31040292793787, 72.55636204874148, 72.80232116954508, 73.04828029034871, 73.29423941115232, 73.54019853195592, 73.78615765275953, 74.03211677356313, 74.27807589436674, 74.52403501517034, 74.76999413597395, 75.01595325677755, 75.26191237758118, 75.50787149838476, 75.75383061918836, 75.999789739992, 76.2457488607956, 76.4917079815992, 76.73766710240281, 76.98362622320641, 77.22958534401002, 77.47554446481362, 77.72150358561723, 77.96746270642086, 78.21342182722447, 78.45938094802804, 78.70534006883167, 78.95129918963528, 79.19725831043888, 79.44321743124249, 79.68917655204609, 79.9351356728497, 80.1810947936533, 80.4270539144569, 80.67301303526054, 80.91897215606414, 81.16493127686775, 81.41089039767135, 81.65684951847496, 81.90280863927856, 82.14876776008217, 82.39472688088577, 82.6406860016894, 82.88664512249298, 83.13260424329658, 83.37856336410022, 83.62452248490382, 83.87048160570743, 84.11644072651103, 84.36239984731463, 84.60835896811824, 84.85431808892184, 85.10027720972545, 85.34623633052905, 85.59219545133269, 85.83815457213626, 86.0841136929399, 86.3300728137435, 86.5760319345471, 86.82199105535071, 87.06795017615431, 87.31390929695792, 87.55986841776152, 87.80582753856513, 88.05178665936873, 88.29774578017236, 88.54370490097597, 88.78966402177957, 89.03562314258318, 89.28158226338678, 89.52754138419039, 89.77350050499399, 90.0194596257976, 90.2654187466012, 90.5113778674048, 90.75733698820841, 91.00329610901204, 91.24925522981565, 91.49521435061925, 91.74117347142285, 91.98713259222646, 92.23309171303006, 92.47905083383367, 92.72500995463727, 92.9709690754409, 93.21692819624448, 93.46288731704809, 93.70884643785172, 93.95480555865532, 94.20076467945893, 94.44672380026253, 94.69268292106614, 94.93864204186974, 95.18460116267335, 95.43056028347695, 95.67651940428058, 95.92247852508419, 96.16843764588776, 96.4143967666914, 96.660355887495, 96.9063150082986, 97.15227412910221, 97.39823324990581, 97.64419237070942, 97.89015149151302, 98.13611061231663, 98.38206973312026, 98.62802885392387, 98.87398797472747, 99.11994709553107, 99.36590621633468, 99.61186533713828, 99.85782445794189, 100.10378357874549, 100.3497426995491, 100.5957018203527, 100.8416609411563, 101.08762006195991, 101.33357918276354, 101.57953830356715, 101.82549742437075, 102.07145654517436, 102.31741566597796, 102.56337478678157, 102.80933390758517, 103.05529302838877, 103.30125214919241, 103.54721126999598, 103.79317039079959, 104.03912951160322, 104.28508863240683, 104.53104775321043, 104.77700687401403, 105.02296599481764, 105.26892511562124, 105.51488423642485, 105.76084335722845, 106.00680247803209, 106.25276159883569, 106.49872071963927, 106.7446798404429, 106.9906389612465, 107.23659808205011, 107.48255720285371, 107.72851632365732, 107.97447544446092, 108.22043456526453, 108.46639368606813, 108.71235280687176, 108.95831192767537, 109.20427104847897, 109.45023016928258, 109.69618929008618, 109.94214841088979, 110.18810753169339, 110.434066652497, 110.68002577330063, 110.9259848941042, 111.17194401490781, 111.41790313571144, 111.66386225651505, 111.90982137731865, 112.15578049812225, 112.40173961892586, 112.64769873972946, 112.89365786053307, 113.13961698133667, 113.38557610214028, 113.63153522294391, 113.87749434374749, 114.12345346455112, 114.36941258535472, 114.61537170615833, 114.86133082696193, 115.10728994776554, 115.35324906856914, 115.59920818937275, 115.84516731017635, 116.09112643097995, 116.33708555178359, 116.58304467258719, 116.82900379339077, 117.0749629141944, 117.320922034998, 117.56688115580161, 117.81284027660521, 118.05879939740882, 118.30475851821242, 118.55071763901603, 118.79667675981963, 119.04263588062327, 119.28859500142687, 119.53455412223047, 119.78051324303408, 120.02647236383768, 120.27243148464129, 120.51839060544489, 120.7643497262485, 121.01030884705213, 121.2562679678557, 121.50222708865931, 121.74818620946294, 121.99414533026655, 122.24010445107015, 122.48606357187376, 122.73202269267736, 122.97798181348097, 123.22394093428457, 123.46990005508817, 123.71585917589181, 123.96181829669541, 124.20777741749899, 124.45373653830262, 124.69969565910623, 124.94565477990983, 125.19161390071343, 125.43757302151704, 125.68353214232064, 125.92949126312425, 126.17545038392785, 126.42140950473146, 126.66736862553509, 126.9133277463387, 127.1592868671423, 127.4052459879459, 127.65120510874951, 127.89716422955311, 128.14312335035672, 128.38908247116032, 128.63504159196393, 128.88100071276753, 129.12695983357114, 129.37291895437477, 129.61887807517837, 129.86483719598198, 130.11079631678558, 130.3567554375892, 130.6027145583928, 130.8486736791964, 131.0946328])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.x = d3.scale.linear()\\n\",\n       \"              .domain([8.361031519, 131.0946328])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.legend.addTo(map_0e32c301fb6cacae3376c564c9c475ed);\\n\",\n       \"\\n\",\n       \"    color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([8.361031519, &#x27;&#x27;, &#x27;&#x27;, 26.77107171115, &#x27;&#x27;, &#x27;&#x27;, 45.1811119033, &#x27;&#x27;, &#x27;&#x27;, 63.591152095450006, &#x27;&#x27;, &#x27;&#x27;, 82.00119228759999, &#x27;&#x27;, &#x27;&#x27;, 100.41123247975, &#x27;&#x27;, &#x27;&#x27;, 118.8212726719, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.g = color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.x(color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.color.domain()[i - 1]) : color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.color.domain().length ? color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.x(color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.color.domain()[i]) : color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.g.call(color_map_1f3b7511c26fccd0c77dcc5c9d6d18b4.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1d9b775bce0>\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.display_dataset(name='test', y_column='PM2_5', colors=[\\n\",\n    \"                           'blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Estimation\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"id\": \"B83973E2080B4AF19B145B0EFFA0E98C\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_a18f9e2109c3c592e79c3a4b1224d27a {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_a18f9e2109c3c592e79c3a4b1224d27a&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_a18f9e2109c3c592e79c3a4b1224d27a = L.map(\\n\",\n       \"                &quot;map_a18f9e2109c3c592e79c3a4b1224d27a&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.19423395697872, 113.30814319611348],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_385240d51bc71b3763b6027101b2b947 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_385240d51bc71b3763b6027101b2b947.addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30e545a877f67cd039e3e413252b6c3a = L.circleMarker(\\n\",\n       \"                [39.8673, 116.366],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eccd9eaa06794766dc01293e20446410 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4a44104f0ca0deaa1057aaba672c23f = $(`&lt;div id=&quot;html_a4a44104f0ca0deaa1057aaba672c23f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.366             latitude:39.8673             pred_result:52.02571105957031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eccd9eaa06794766dc01293e20446410.setContent(html_a4a44104f0ca0deaa1057aaba672c23f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30e545a877f67cd039e3e413252b6c3a.bindPopup(popup_eccd9eaa06794766dc01293e20446410)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30daba84b8660ff71f89c5d11f5b3005 = L.circleMarker(\\n\",\n       \"                [40.2865, 116.17],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_64af70fb9a76ed2d6d0ee1054a26ebd6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_271432a3ab6f86310a26e69d940e92ed = $(`&lt;div id=&quot;html_271432a3ab6f86310a26e69d940e92ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.17             latitude:40.2865             pred_result:41.10273742675781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_64af70fb9a76ed2d6d0ee1054a26ebd6.setContent(html_271432a3ab6f86310a26e69d940e92ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30daba84b8660ff71f89c5d11f5b3005.bindPopup(popup_64af70fb9a76ed2d6d0ee1054a26ebd6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_702a3f4d3329805b58a3e9fe1622f963 = L.circleMarker(\\n\",\n       \"                [39.9522, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad4b6b9293bcee1bd1ff35452ce11e91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c5f419311dc922542b2046b10af9ee6 = $(`&lt;div id=&quot;html_3c5f419311dc922542b2046b10af9ee6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.9522             pred_result:52.553932189941406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad4b6b9293bcee1bd1ff35452ce11e91.setContent(html_3c5f419311dc922542b2046b10af9ee6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_702a3f4d3329805b58a3e9fe1622f963.bindPopup(popup_ad4b6b9293bcee1bd1ff35452ce11e91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc511dc027a8194efb4bf12da8d44fae = L.circleMarker(\\n\",\n       \"                [39.8745, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7f0f653b4948017a8bf02856956ad01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d67b55b2d129e7c4b61cc4d387eec192 = $(`&lt;div id=&quot;html_d67b55b2d129e7c4b61cc4d387eec192&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.8745             pred_result:51.534027099609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7f0f653b4948017a8bf02856956ad01.setContent(html_d67b55b2d129e7c4b61cc4d387eec192);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc511dc027a8194efb4bf12da8d44fae.bindPopup(popup_a7f0f653b4948017a8bf02856956ad01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e58da06b7ba23f4482ff736f8033adcd = L.circleMarker(\\n\",\n       \"                [39.9716, 116.473],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a39280a317aae90ba618404aff7877f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b82d65a52d0051413ae888565b220464 = $(`&lt;div id=&quot;html_b82d65a52d0051413ae888565b220464&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.473             latitude:39.9716             pred_result:50.61805725097656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a39280a317aae90ba618404aff7877f1.setContent(html_b82d65a52d0051413ae888565b220464);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e58da06b7ba23f4482ff736f8033adcd.bindPopup(popup_a39280a317aae90ba618404aff7877f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45a7172d3bab37fde7002b38bf7f44a2 = L.circleMarker(\\n\",\n       \"                [39.9425, 116.361],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5543b78a3ef8449716f1edd22ea042aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_190a9150382897752947b3801f773115 = $(`&lt;div id=&quot;html_190a9150382897752947b3801f773115&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.361             latitude:39.9425             pred_result:50.25154113769531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5543b78a3ef8449716f1edd22ea042aa.setContent(html_190a9150382897752947b3801f773115);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45a7172d3bab37fde7002b38bf7f44a2.bindPopup(popup_5543b78a3ef8449716f1edd22ea042aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d94d0f8e065e7641b0c08a0e5a8368f0 = L.circleMarker(\\n\",\n       \"                [39.9934, 116.315],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8587a6b23c7748f2595939e14d34750 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8feeb2b224b0ab493c85fefe9161a022 = $(`&lt;div id=&quot;html_8feeb2b224b0ab493c85fefe9161a022&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.315             latitude:39.9934             pred_result:49.76210021972656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8587a6b23c7748f2595939e14d34750.setContent(html_8feeb2b224b0ab493c85fefe9161a022);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d94d0f8e065e7641b0c08a0e5a8368f0.bindPopup(popup_e8587a6b23c7748f2595939e14d34750)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb9370ddb65b72e6dfef87e2b632712e = L.circleMarker(\\n\",\n       \"                [40.1438, 116.72],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2877a679b5f4139acc7547973578e9a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e2203a1d92c8883c3d5284059b97ca5 = $(`&lt;div id=&quot;html_2e2203a1d92c8883c3d5284059b97ca5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.72             latitude:40.1438             pred_result:44.79758071899414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2877a679b5f4139acc7547973578e9a5.setContent(html_2e2203a1d92c8883c3d5284059b97ca5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb9370ddb65b72e6dfef87e2b632712e.bindPopup(popup_2877a679b5f4139acc7547973578e9a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7be38b70f3c813d9f5d7b5a4a62f740c = L.circleMarker(\\n\",\n       \"                [40.3937, 116.644],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83c239ea8a9613d007e7d5c4cb4e5b84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_79a4db97af21d1a8c5c765d4d2a79d8a = $(`&lt;div id=&quot;html_79a4db97af21d1a8c5c765d4d2a79d8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.644             latitude:40.3937             pred_result:39.989158630371094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83c239ea8a9613d007e7d5c4cb4e5b84.setContent(html_79a4db97af21d1a8c5c765d4d2a79d8a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7be38b70f3c813d9f5d7b5a4a62f740c.bindPopup(popup_83c239ea8a9613d007e7d5c4cb4e5b84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ad88d8f7d732598ac65f30e80aab01d = L.circleMarker(\\n\",\n       \"                [40.1952, 116.23],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60d9fbd72db2771ec872147599a96080 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21abf441c7425125e90629482c90dbd7 = $(`&lt;div id=&quot;html_21abf441c7425125e90629482c90dbd7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.23             latitude:40.1952             pred_result:46.79872131347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60d9fbd72db2771ec872147599a96080.setContent(html_21abf441c7425125e90629482c90dbd7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ad88d8f7d732598ac65f30e80aab01d.bindPopup(popup_60d9fbd72db2771ec872147599a96080)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1e7f6a3e967e11bffd2628b375050e4 = L.circleMarker(\\n\",\n       \"                [40.0031, 116.407],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bdbd42a94cef0f986153178d6386ece = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_075445ef0a01e366b88df00e2b27c628 = $(`&lt;div id=&quot;html_075445ef0a01e366b88df00e2b27c628&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.407             latitude:40.0031             pred_result:48.28468322753906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bdbd42a94cef0f986153178d6386ece.setContent(html_075445ef0a01e366b88df00e2b27c628);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1e7f6a3e967e11bffd2628b375050e4.bindPopup(popup_7bdbd42a94cef0f986153178d6386ece)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aedab3b3c5c349cd3fce7a166e09ac58 = L.circleMarker(\\n\",\n       \"                [39.9279, 116.225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f900a17bd234aaa5772942978ab2a9c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea1946330a3f3a429df9db19cfa6a926 = $(`&lt;div id=&quot;html_ea1946330a3f3a429df9db19cfa6a926&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.225             latitude:39.9279             pred_result:48.975059509277344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f900a17bd234aaa5772942978ab2a9c4.setContent(html_ea1946330a3f3a429df9db19cfa6a926);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aedab3b3c5c349cd3fce7a166e09ac58.bindPopup(popup_f900a17bd234aaa5772942978ab2a9c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_159ad8478e9bb34398ac4899259fc566 = L.circleMarker(\\n\",\n       \"                [39.1654, 117.145],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_922912a8cb038d2ec91bed63ae7bc6ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef056a0ea82a150b9d27bd01b6b44a02 = $(`&lt;div id=&quot;html_ef056a0ea82a150b9d27bd01b6b44a02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.145             latitude:39.1654             pred_result:50.10599899291992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_922912a8cb038d2ec91bed63ae7bc6ed.setContent(html_ef056a0ea82a150b9d27bd01b6b44a02);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_159ad8478e9bb34398ac4899259fc566.bindPopup(popup_922912a8cb038d2ec91bed63ae7bc6ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba71034f3ad83e3d71f78040e9a3c2c7 = L.circleMarker(\\n\",\n       \"                [39.1082, 117.237],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8429068aef60116079a4aec833a5ace9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ffe77ee938a8cefa58178cbc50a91b38 = $(`&lt;div id=&quot;html_ffe77ee938a8cefa58178cbc50a91b38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.237             latitude:39.1082             pred_result:50.485076904296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8429068aef60116079a4aec833a5ace9.setContent(html_ffe77ee938a8cefa58178cbc50a91b38);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba71034f3ad83e3d71f78040e9a3c2c7.bindPopup(popup_8429068aef60116079a4aec833a5ace9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5959313a39fa1e1651e28d16dadff7c = L.circleMarker(\\n\",\n       \"                [39.0927, 117.202],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73621adbf38392adff9354794ee5f134 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3fe17a4883447b50effcad123c035d3 = $(`&lt;div id=&quot;html_d3fe17a4883447b50effcad123c035d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.202             latitude:39.0927             pred_result:49.06761169433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73621adbf38392adff9354794ee5f134.setContent(html_d3fe17a4883447b50effcad123c035d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5959313a39fa1e1651e28d16dadff7c.bindPopup(popup_73621adbf38392adff9354794ee5f134)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0afad3ce81f73c5969597063928c72e4 = L.circleMarker(\\n\",\n       \"                [39.2133, 117.1837],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a76c0ff56b38fe0ee0215b192f29e236 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93249d0de2fc7ddc033b4e54c2236a1b = $(`&lt;div id=&quot;html_93249d0de2fc7ddc033b4e54c2236a1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1837             latitude:39.2133             pred_result:51.7050666809082             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a76c0ff56b38fe0ee0215b192f29e236.setContent(html_93249d0de2fc7ddc033b4e54c2236a1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0afad3ce81f73c5969597063928c72e4.bindPopup(popup_a76c0ff56b38fe0ee0215b192f29e236)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff7509cd59fd45b80f3a5024049e10a4 = L.circleMarker(\\n\",\n       \"                [39.0877, 117.307],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56e3cdf7a5e0bf1537e496ff1cc0ee39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2628fe7f8dd00f796a7d77fd43469e63 = $(`&lt;div id=&quot;html_2628fe7f8dd00f796a7d77fd43469e63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.307             latitude:39.0877             pred_result:50.589176177978516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56e3cdf7a5e0bf1537e496ff1cc0ee39.setContent(html_2628fe7f8dd00f796a7d77fd43469e63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff7509cd59fd45b80f3a5024049e10a4.bindPopup(popup_56e3cdf7a5e0bf1537e496ff1cc0ee39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1e23530e2dfbf0f92cba6d31488b604 = L.circleMarker(\\n\",\n       \"                [38.8394, 117.457],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e08378e75b8e637a623cd13e53dfe2ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68d381162c4f0ce70c615385397bb9f0 = $(`&lt;div id=&quot;html_68d381162c4f0ce70c615385397bb9f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.457             latitude:38.8394             pred_result:47.42152404785156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e08378e75b8e637a623cd13e53dfe2ec.setContent(html_68d381162c4f0ce70c615385397bb9f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1e23530e2dfbf0f92cba6d31488b604.bindPopup(popup_e08378e75b8e637a623cd13e53dfe2ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0830e7451d7bad6b31b57a7ffdd6a240 = L.circleMarker(\\n\",\n       \"                [38.9194, 117.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4cc502f6bf87aced9eca66c1545e38ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_88c66619ba77218b4e1f6e31d78e06a1 = $(`&lt;div id=&quot;html_88c66619ba77218b4e1f6e31d78e06a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.157             latitude:38.9194             pred_result:48.84119415283203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4cc502f6bf87aced9eca66c1545e38ae.setContent(html_88c66619ba77218b4e1f6e31d78e06a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0830e7451d7bad6b31b57a7ffdd6a240.bindPopup(popup_4cc502f6bf87aced9eca66c1545e38ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_905d7dda0f91386257e6c733777e6548 = L.circleMarker(\\n\",\n       \"                [38.0513, 114.4548],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a342086cd7babd4bffd984007e6c386a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71e2c561f0d91bd043e614f4ac58add2 = $(`&lt;div id=&quot;html_71e2c561f0d91bd043e614f4ac58add2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4548             latitude:38.0513             pred_result:85.72061157226562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a342086cd7babd4bffd984007e6c386a.setContent(html_71e2c561f0d91bd043e614f4ac58add2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_905d7dda0f91386257e6c733777e6548.bindPopup(popup_a342086cd7babd4bffd984007e6c386a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d002893cfda94c89098e822743c52e03 = L.circleMarker(\\n\",\n       \"                [38.0398, 114.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e5ae38d9d2bc894a5eea9f2fa2c9ec7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49e2ed7501ae75230718149adc891f0e = $(`&lt;div id=&quot;html_49e2ed7501ae75230718149adc891f0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6046             latitude:38.0398             pred_result:84.77189636230469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e5ae38d9d2bc894a5eea9f2fa2c9ec7.setContent(html_49e2ed7501ae75230718149adc891f0e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d002893cfda94c89098e822743c52e03.bindPopup(popup_0e5ae38d9d2bc894a5eea9f2fa2c9ec7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69a4ba8b19505b32c3f7d20e70778203 = L.circleMarker(\\n\",\n       \"                [38.1398, 114.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5117965edd77d941cf78994f3895409 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61fe1f86adce9e83c654094ef24510a4 = $(`&lt;div id=&quot;html_61fe1f86adce9e83c654094ef24510a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5019             latitude:38.1398             pred_result:85.63642883300781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5117965edd77d941cf78994f3895409.setContent(html_61fe1f86adce9e83c654094ef24510a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69a4ba8b19505b32c3f7d20e70778203.bindPopup(popup_b5117965edd77d941cf78994f3895409)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c01c397284f12994bbb7a50e493061a = L.circleMarker(\\n\",\n       \"                [38.00583333, 114.4586111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9879d5b488308b0c593a0d25684f6cba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f4ca11801e967f36e45c130dcc445ac = $(`&lt;div id=&quot;html_4f4ca11801e967f36e45c130dcc445ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4586111             latitude:38.00583333             pred_result:86.20901489257812             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9879d5b488308b0c593a0d25684f6cba.setContent(html_4f4ca11801e967f36e45c130dcc445ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c01c397284f12994bbb7a50e493061a.bindPopup(popup_9879d5b488308b0c593a0d25684f6cba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2cd212fb09c4831363f526ea99df1647 = L.circleMarker(\\n\",\n       \"                [38.01777778, 114.53305559999998],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53bc5641c341d04185f19747508aede0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d6f6cf45bcc0d0382110d5b4a5ff93c = $(`&lt;div id=&quot;html_0d6f6cf45bcc0d0382110d5b4a5ff93c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.53305559999998             latitude:38.01777778             pred_result:85.52349853515625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53bc5641c341d04185f19747508aede0.setContent(html_0d6f6cf45bcc0d0382110d5b4a5ff93c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2cd212fb09c4831363f526ea99df1647.bindPopup(popup_53bc5641c341d04185f19747508aede0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89623bcc70d8841222fa838ff1b6b767 = L.circleMarker(\\n\",\n       \"                [38.0524, 114.5214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_301db6ee9d9a7ec61390cf719dfd255a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_083d64766a07d59657b28c4d5e806cf5 = $(`&lt;div id=&quot;html_083d64766a07d59657b28c4d5e806cf5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5214             latitude:38.0524             pred_result:86.02314758300781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_301db6ee9d9a7ec61390cf719dfd255a.setContent(html_083d64766a07d59657b28c4d5e806cf5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89623bcc70d8841222fa838ff1b6b767.bindPopup(popup_301db6ee9d9a7ec61390cf719dfd255a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06c05e15de99807ef1b7475a7bb9ae9a = L.circleMarker(\\n\",\n       \"                [37.9097, 114.3541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d0162905b6c63c286f272ba03e6ebb7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_949178d7087b85ac75442aa288f44e12 = $(`&lt;div id=&quot;html_949178d7087b85ac75442aa288f44e12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3541             latitude:37.9097             pred_result:83.99750518798828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d0162905b6c63c286f272ba03e6ebb7.setContent(html_949178d7087b85ac75442aa288f44e12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06c05e15de99807ef1b7475a7bb9ae9a.bindPopup(popup_9d0162905b6c63c286f272ba03e6ebb7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33ec2ccb5d15e97da06670ad3f29ffca = L.circleMarker(\\n\",\n       \"                [39.6308, 118.1662],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_acb86601714e45e7495ecc766d0b844e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_321c6f5cddf92e6f3696d28c9c54daa1 = $(`&lt;div id=&quot;html_321c6f5cddf92e6f3696d28c9c54daa1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1662             latitude:39.6308             pred_result:50.9916877746582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_acb86601714e45e7495ecc766d0b844e.setContent(html_321c6f5cddf92e6f3696d28c9c54daa1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33ec2ccb5d15e97da06670ad3f29ffca.bindPopup(popup_acb86601714e45e7495ecc766d0b844e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6971189f7cf8fcfb76c648e2c087172 = L.circleMarker(\\n\",\n       \"                [39.643, 118.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84ee8f64b2972afe62ef868a1268ef4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9b0d823c74f0b9a01413641f3a1ac3a = $(`&lt;div id=&quot;html_e9b0d823c74f0b9a01413641f3a1ac3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.144             latitude:39.643             pred_result:47.282737731933594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84ee8f64b2972afe62ef868a1268ef4f.setContent(html_e9b0d823c74f0b9a01413641f3a1ac3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6971189f7cf8fcfb76c648e2c087172.bindPopup(popup_84ee8f64b2972afe62ef868a1268ef4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc5f9cdcbd59fb3c98ee991202788968 = L.circleMarker(\\n\",\n       \"                [39.6407, 118.1853],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0907785f24ca7a3030248355269bd027 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d4455456054aa184895d7962123312c = $(`&lt;div id=&quot;html_1d4455456054aa184895d7962123312c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1853             latitude:39.6407             pred_result:47.567989349365234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0907785f24ca7a3030248355269bd027.setContent(html_1d4455456054aa184895d7962123312c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc5f9cdcbd59fb3c98ee991202788968.bindPopup(popup_0907785f24ca7a3030248355269bd027)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42b5ce8592a6aa2a61db9840ecd327af = L.circleMarker(\\n\",\n       \"                [39.6679, 118.2185],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb35b6efd3aba897f60e3c9b1ce87253 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebaad305766626c0d44b5d1e6337dce8 = $(`&lt;div id=&quot;html_ebaad305766626c0d44b5d1e6337dce8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2185             latitude:39.6679             pred_result:44.33982467651367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb35b6efd3aba897f60e3c9b1ce87253.setContent(html_ebaad305766626c0d44b5d1e6337dce8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42b5ce8592a6aa2a61db9840ecd327af.bindPopup(popup_eb35b6efd3aba897f60e3c9b1ce87253)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b14dba0e138029364064097ecf117e88 = L.circleMarker(\\n\",\n       \"                [39.65782, 118.1838],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_356a40bdc4a2804bc080a81bb66747a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec5aa22aec765c6c92ef31e238c55d80 = $(`&lt;div id=&quot;html_ec5aa22aec765c6c92ef31e238c55d80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1838             latitude:39.65782             pred_result:47.132720947265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_356a40bdc4a2804bc080a81bb66747a0.setContent(html_ec5aa22aec765c6c92ef31e238c55d80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b14dba0e138029364064097ecf117e88.bindPopup(popup_356a40bdc4a2804bc080a81bb66747a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16e743eaafbf6168813ea54a3584d8eb = L.circleMarker(\\n\",\n       \"                [39.6295, 118.1997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6b4201bc42e74e0b32fb6c64bf1f667 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b11bdc59b35209c8f41b1ffd358237de = $(`&lt;div id=&quot;html_b11bdc59b35209c8f41b1ffd358237de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1997             latitude:39.6295             pred_result:45.52561569213867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6b4201bc42e74e0b32fb6c64bf1f667.setContent(html_b11bdc59b35209c8f41b1ffd358237de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16e743eaafbf6168813ea54a3584d8eb.bindPopup(popup_e6b4201bc42e74e0b32fb6c64bf1f667)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd0f2835dcb4f06730a0d19b1bd67732 = L.circleMarker(\\n\",\n       \"                [39.8283, 119.5259],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e5402229308801be669c81610e6aa03 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0df5a0a3b14a756a96f97f5fc27fbe7 = $(`&lt;div id=&quot;html_e0df5a0a3b14a756a96f97f5fc27fbe7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5259             latitude:39.8283             pred_result:33.646507263183594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e5402229308801be669c81610e6aa03.setContent(html_e0df5a0a3b14a756a96f97f5fc27fbe7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd0f2835dcb4f06730a0d19b1bd67732.bindPopup(popup_9e5402229308801be669c81610e6aa03)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fef10526463efcd9d1f417904b57b3ce = L.circleMarker(\\n\",\n       \"                [40.0181, 119.7624],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11a26c4891ececc0172a0bf1d27c3e27 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b49e55286528f2675e418cd4b9df633 = $(`&lt;div id=&quot;html_5b49e55286528f2675e418cd4b9df633&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7624             latitude:40.0181             pred_result:28.458560943603516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11a26c4891ececc0172a0bf1d27c3e27.setContent(html_5b49e55286528f2675e418cd4b9df633);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fef10526463efcd9d1f417904b57b3ce.bindPopup(popup_11a26c4891ececc0172a0bf1d27c3e27)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ec9d50af973c70bc8d455aa8b780ec8 = L.circleMarker(\\n\",\n       \"                [39.9567, 119.6023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e86026fea26a46fdaac677b9dcc80ba0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6f31b11fe82a0bb6b8cd53a967b2c8f = $(`&lt;div id=&quot;html_c6f31b11fe82a0bb6b8cd53a967b2c8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6023             latitude:39.9567             pred_result:34.28810119628906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e86026fea26a46fdaac677b9dcc80ba0.setContent(html_c6f31b11fe82a0bb6b8cd53a967b2c8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ec9d50af973c70bc8d455aa8b780ec8.bindPopup(popup_e86026fea26a46fdaac677b9dcc80ba0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8c36dbcd549916385b575063455a87f = L.circleMarker(\\n\",\n       \"                [39.9419, 119.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d987e11fbc49044b9c1b99d073a33c79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8364d8a9be802a209a65a0e1b055d883 = $(`&lt;div id=&quot;html_8364d8a9be802a209a65a0e1b055d883&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5369             latitude:39.9419             pred_result:30.56713104248047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d987e11fbc49044b9c1b99d073a33c79.setContent(html_8364d8a9be802a209a65a0e1b055d883);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8c36dbcd549916385b575063455a87f.bindPopup(popup_d987e11fbc49044b9c1b99d073a33c79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd8b28d3922bd1671ed1e5544f1c71b6 = L.circleMarker(\\n\",\n       \"                [36.61763, 114.5129],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b42243032b98be8a15be02e6df24d9bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe2100b2b21b30ae03c2955fd131abd5 = $(`&lt;div id=&quot;html_fe2100b2b21b30ae03c2955fd131abd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5129             latitude:36.61763             pred_result:84.13064575195312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b42243032b98be8a15be02e6df24d9bb.setContent(html_fe2100b2b21b30ae03c2955fd131abd5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd8b28d3922bd1671ed1e5544f1c71b6.bindPopup(popup_b42243032b98be8a15be02e6df24d9bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_515cf115f43eefa6ea15887af247ae64 = L.circleMarker(\\n\",\n       \"                [36.6164, 114.5426],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b3d75ffcbc054d91986d63a6a1e13e85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9b6a267d33c78145f010d7ee16b2de3 = $(`&lt;div id=&quot;html_b9b6a267d33c78145f010d7ee16b2de3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5426             latitude:36.6164             pred_result:82.67044067382812             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b3d75ffcbc054d91986d63a6a1e13e85.setContent(html_b9b6a267d33c78145f010d7ee16b2de3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_515cf115f43eefa6ea15887af247ae64.bindPopup(popup_b3d75ffcbc054d91986d63a6a1e13e85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e0af496c6938f90f41a9ca66495366f = L.circleMarker(\\n\",\n       \"                [36.5776, 114.5035],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04caf5af0bced7b8fa0002a972436d52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a076fd703724353799bfa35d42a4abd5 = $(`&lt;div id=&quot;html_a076fd703724353799bfa35d42a4abd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5035             latitude:36.5776             pred_result:83.41276550292969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04caf5af0bced7b8fa0002a972436d52.setContent(html_a076fd703724353799bfa35d42a4abd5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e0af496c6938f90f41a9ca66495366f.bindPopup(popup_04caf5af0bced7b8fa0002a972436d52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23ceda0ac35c0c603c158d840811a6ff = L.circleMarker(\\n\",\n       \"                [36.61981, 114.4965],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76fd6f33f3d7cae336b088a1c9720e37 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f0541fa5162573a3cf1bd4c5b101d30 = $(`&lt;div id=&quot;html_7f0541fa5162573a3cf1bd4c5b101d30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4965             latitude:36.61981             pred_result:83.93119049072266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76fd6f33f3d7cae336b088a1c9720e37.setContent(html_7f0541fa5162573a3cf1bd4c5b101d30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23ceda0ac35c0c603c158d840811a6ff.bindPopup(popup_76fd6f33f3d7cae336b088a1c9720e37)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d410c9e725b68a51ccb100f758969df = L.circleMarker(\\n\",\n       \"                [38.8632, 115.493],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3459f565f1e74baa8405ae1238494427 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a35454d8f75869103ce868efabb595b9 = $(`&lt;div id=&quot;html_a35454d8f75869103ce868efabb595b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.493             latitude:38.8632             pred_result:67.98307800292969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3459f565f1e74baa8405ae1238494427.setContent(html_a35454d8f75869103ce868efabb595b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d410c9e725b68a51ccb100f758969df.bindPopup(popup_3459f565f1e74baa8405ae1238494427)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72addbeaf047136d896c18dac4e03c51 = L.circleMarker(\\n\",\n       \"                [38.8957, 115.5223],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e30d92575d864090f603964a25c75c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33d2505b72df019c738160f95bf0a725 = $(`&lt;div id=&quot;html_33d2505b72df019c738160f95bf0a725&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.5223             latitude:38.8957             pred_result:67.4658432006836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e30d92575d864090f603964a25c75c9.setContent(html_33d2505b72df019c738160f95bf0a725);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72addbeaf047136d896c18dac4e03c51.bindPopup(popup_9e30d92575d864090f603964a25c75c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b633e14fb25be9c91cd0d9685ba82039 = L.circleMarker(\\n\",\n       \"                [38.9108, 115.4713],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eaaa65f06900e51903c38f3de3db0acb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a6861cd85e11d47afa90bfb31f1d8c1 = $(`&lt;div id=&quot;html_0a6861cd85e11d47afa90bfb31f1d8c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.4713             latitude:38.9108             pred_result:68.03650665283203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eaaa65f06900e51903c38f3de3db0acb.setContent(html_0a6861cd85e11d47afa90bfb31f1d8c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b633e14fb25be9c91cd0d9685ba82039.bindPopup(popup_eaaa65f06900e51903c38f3de3db0acb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19e950aeb8894c9ca8b0910a873da31d = L.circleMarker(\\n\",\n       \"                [38.8416, 115.4612],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39915f2c278b8d8b1abbd361a7e5f066 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_81662cf423f192f3b567ee3ad4f25404 = $(`&lt;div id=&quot;html_81662cf423f192f3b567ee3ad4f25404&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.4612             latitude:38.8416             pred_result:68.72542572021484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39915f2c278b8d8b1abbd361a7e5f066.setContent(html_81662cf423f192f3b567ee3ad4f25404);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19e950aeb8894c9ca8b0910a873da31d.bindPopup(popup_39915f2c278b8d8b1abbd361a7e5f066)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e4a3195df093be3a9830b1bc21845a6 = L.circleMarker(\\n\",\n       \"                [38.8756, 115.442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_438ebac46a6ac3f2e13f14f21ed7b171 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86edaa0c012e6195bf650a061df673ed = $(`&lt;div id=&quot;html_86edaa0c012e6195bf650a061df673ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.442             latitude:38.8756             pred_result:68.77989196777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_438ebac46a6ac3f2e13f14f21ed7b171.setContent(html_86edaa0c012e6195bf650a061df673ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e4a3195df093be3a9830b1bc21845a6.bindPopup(popup_438ebac46a6ac3f2e13f14f21ed7b171)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf41f72917a954f8e7f85160bbc231c7 = L.circleMarker(\\n\",\n       \"                [38.8707, 115.5214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73d0491aeb169bf7e129e294c6e9faf6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9a6ed16c1ed6591427cbd344965e58b = $(`&lt;div id=&quot;html_c9a6ed16c1ed6591427cbd344965e58b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.5214             latitude:38.8707             pred_result:67.5050277709961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73d0491aeb169bf7e129e294c6e9faf6.setContent(html_c9a6ed16c1ed6591427cbd344965e58b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf41f72917a954f8e7f85160bbc231c7.bindPopup(popup_73d0491aeb169bf7e129e294c6e9faf6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_777ddcaa2d9236f48ff4f6aec04a10f6 = L.circleMarker(\\n\",\n       \"                [40.8367, 114.8985],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c873cddf6fa287c53a4fa69d3024f69d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7874c9bb1e46bf4bb0d4a82d18aae0ed = $(`&lt;div id=&quot;html_7874c9bb1e46bf4bb0d4a82d18aae0ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8985             latitude:40.8367             pred_result:36.46134948730469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c873cddf6fa287c53a4fa69d3024f69d.setContent(html_7874c9bb1e46bf4bb0d4a82d18aae0ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_777ddcaa2d9236f48ff4f6aec04a10f6.bindPopup(popup_c873cddf6fa287c53a4fa69d3024f69d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_361a185bba7f1a36f9c447cb0e2bcac2 = L.circleMarker(\\n\",\n       \"                [40.79481, 114.892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a50a664bdf9251a8530428c5c4f26926 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ccba16455b40ae150eca7b03ba2fac5 = $(`&lt;div id=&quot;html_1ccba16455b40ae150eca7b03ba2fac5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.892             latitude:40.79481             pred_result:37.87025451660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a50a664bdf9251a8530428c5c4f26926.setContent(html_1ccba16455b40ae150eca7b03ba2fac5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_361a185bba7f1a36f9c447cb0e2bcac2.bindPopup(popup_a50a664bdf9251a8530428c5c4f26926)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f87c5e281b88982a7711e62ce6774a40 = L.circleMarker(\\n\",\n       \"                [40.7688, 114.9032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9bd1ff6f1547c7ba0920643eef34e4f0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f02744d5bc2a873a770266496bd362ec = $(`&lt;div id=&quot;html_f02744d5bc2a873a770266496bd362ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9032             latitude:40.7688             pred_result:38.54481506347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9bd1ff6f1547c7ba0920643eef34e4f0.setContent(html_f02744d5bc2a873a770266496bd362ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f87c5e281b88982a7711e62ce6774a40.bindPopup(popup_9bd1ff6f1547c7ba0920643eef34e4f0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69fafac089d81f9290623bf5774fc4f9 = L.circleMarker(\\n\",\n       \"                [40.8725, 114.904],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e92ac9f492b55ba6fa06786bddadce9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c06b42e3b67e125f3b4ed33dffb357c6 = $(`&lt;div id=&quot;html_c06b42e3b67e125f3b4ed33dffb357c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.904             latitude:40.8725             pred_result:34.98204803466797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e92ac9f492b55ba6fa06786bddadce9.setContent(html_c06b42e3b67e125f3b4ed33dffb357c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69fafac089d81f9290623bf5774fc4f9.bindPopup(popup_6e92ac9f492b55ba6fa06786bddadce9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33843ff1e59042308fde78d5f8653907 = L.circleMarker(\\n\",\n       \"                [40.9161, 117.9664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed49634a803e77903d8e46d6bccc3a35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_238b846101cdd1faf6b4096951b52055 = $(`&lt;div id=&quot;html_238b846101cdd1faf6b4096951b52055&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9664             latitude:40.9161             pred_result:23.322799682617188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed49634a803e77903d8e46d6bccc3a35.setContent(html_238b846101cdd1faf6b4096951b52055);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33843ff1e59042308fde78d5f8653907.bindPopup(popup_ed49634a803e77903d8e46d6bccc3a35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12f62c0999b19bccc0f67a8e520c6f5f = L.circleMarker(\\n\",\n       \"                [40.9843, 117.9525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1444be69eb022d58f227c0afb9d75ba5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_972af522babdf840eca1ab62d772ec82 = $(`&lt;div id=&quot;html_972af522babdf840eca1ab62d772ec82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9525             latitude:40.9843             pred_result:23.426841735839844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1444be69eb022d58f227c0afb9d75ba5.setContent(html_972af522babdf840eca1ab62d772ec82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12f62c0999b19bccc0f67a8e520c6f5f.bindPopup(popup_1444be69eb022d58f227c0afb9d75ba5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_acb55680db257f809ffe44eb60e039ca = L.circleMarker(\\n\",\n       \"                [40.9359, 117.963],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52bc930d6029caa4fdd1847b58c498a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a6b65ad73394da872295467d7965afc = $(`&lt;div id=&quot;html_7a6b65ad73394da872295467d7965afc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.963             latitude:40.9359             pred_result:29.918615341186523             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52bc930d6029caa4fdd1847b58c498a3.setContent(html_7a6b65ad73394da872295467d7965afc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_acb55680db257f809ffe44eb60e039ca.bindPopup(popup_52bc930d6029caa4fdd1847b58c498a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d320a3496d6dd4b8bd66acbb6738215 = L.circleMarker(\\n\",\n       \"                [40.9733, 117.8184],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c91885a9284e95852effd51f8c963d5e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b118cea37470162f4bd242b5d88c49dd = $(`&lt;div id=&quot;html_b118cea37470162f4bd242b5d88c49dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8184             latitude:40.9733             pred_result:32.959739685058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c91885a9284e95852effd51f8c963d5e.setContent(html_b118cea37470162f4bd242b5d88c49dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d320a3496d6dd4b8bd66acbb6738215.bindPopup(popup_c91885a9284e95852effd51f8c963d5e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b40ebd8d0771f5dfb123a457bb4892a4 = L.circleMarker(\\n\",\n       \"                [41.0112, 117.9384],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_406b7b6603fe7a998dade4ad2af1db34 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7170b3e8b403231de1824fd3d7b34c0 = $(`&lt;div id=&quot;html_a7170b3e8b403231de1824fd3d7b34c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9384             latitude:41.0112             pred_result:23.88228988647461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_406b7b6603fe7a998dade4ad2af1db34.setContent(html_a7170b3e8b403231de1824fd3d7b34c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b40ebd8d0771f5dfb123a457bb4892a4.bindPopup(popup_406b7b6603fe7a998dade4ad2af1db34)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a56cdd57e3dd15c976e85200ad5625e = L.circleMarker(\\n\",\n       \"                [39.5178, 116.6838],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4df58dcbe37dea4b1b208811db13d57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b73fa049fc0225bea6aa93fc7dd2f4de = $(`&lt;div id=&quot;html_b73fa049fc0225bea6aa93fc7dd2f4de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6838             latitude:39.5178             pred_result:52.10423278808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4df58dcbe37dea4b1b208811db13d57.setContent(html_b73fa049fc0225bea6aa93fc7dd2f4de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a56cdd57e3dd15c976e85200ad5625e.bindPopup(popup_b4df58dcbe37dea4b1b208811db13d57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c737e3adb744ada5a202e77860fb9dba = L.circleMarker(\\n\",\n       \"                [39.5747, 116.7729],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab79aa5f74ac47dca419d3a0f1f0982d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_762a567d0616057cb9847cffe02cd7bf = $(`&lt;div id=&quot;html_762a567d0616057cb9847cffe02cd7bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7729             latitude:39.5747             pred_result:51.71124267578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab79aa5f74ac47dca419d3a0f1f0982d.setContent(html_762a567d0616057cb9847cffe02cd7bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c737e3adb744ada5a202e77860fb9dba.bindPopup(popup_ab79aa5f74ac47dca419d3a0f1f0982d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_015bc4bc4c32a1925b1d579e688cfd7c = L.circleMarker(\\n\",\n       \"                [39.5343, 116.7464],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b14ad36ffb34f8b2d2a2c3905f4ace5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5de9029bee5b7c6f0b4e9266a003132a = $(`&lt;div id=&quot;html_5de9029bee5b7c6f0b4e9266a003132a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7464             latitude:39.5343             pred_result:51.3441276550293             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b14ad36ffb34f8b2d2a2c3905f4ace5f.setContent(html_5de9029bee5b7c6f0b4e9266a003132a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_015bc4bc4c32a1925b1d579e688cfd7c.bindPopup(popup_b14ad36ffb34f8b2d2a2c3905f4ace5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_658374c0d25cacc8b5cce2f7a9770867 = L.circleMarker(\\n\",\n       \"                [38.2991, 116.8854],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8bc886f4abb57d739096868d4e9ddf9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb30e9ea9ad810e4f3f0b3ebd9583a3a = $(`&lt;div id=&quot;html_bb30e9ea9ad810e4f3f0b3ebd9583a3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8854             latitude:38.2991             pred_result:52.781307220458984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8bc886f4abb57d739096868d4e9ddf9.setContent(html_bb30e9ea9ad810e4f3f0b3ebd9583a3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_658374c0d25cacc8b5cce2f7a9770867.bindPopup(popup_c8bc886f4abb57d739096868d4e9ddf9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e08f37631d2ed2c420326cd98f4be611 = L.circleMarker(\\n\",\n       \"                [38.3254, 116.8584],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55075364acdd3785876acf5db5034c8c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1bfb5edc2da9cfee295af95b51852b4c = $(`&lt;div id=&quot;html_1bfb5edc2da9cfee295af95b51852b4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8584             latitude:38.3254             pred_result:53.237667083740234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55075364acdd3785876acf5db5034c8c.setContent(html_1bfb5edc2da9cfee295af95b51852b4c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e08f37631d2ed2c420326cd98f4be611.bindPopup(popup_55075364acdd3785876acf5db5034c8c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b948a78e1cda533f14f87f0de467537 = L.circleMarker(\\n\",\n       \"                [38.3228, 116.8709],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16485f6dbb01dcc3b9cd1473187224e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ed2f0c6e2bde00cb8a41b8949d8ee5a = $(`&lt;div id=&quot;html_4ed2f0c6e2bde00cb8a41b8949d8ee5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8709             latitude:38.3228             pred_result:53.26277160644531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16485f6dbb01dcc3b9cd1473187224e2.setContent(html_4ed2f0c6e2bde00cb8a41b8949d8ee5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b948a78e1cda533f14f87f0de467537.bindPopup(popup_16485f6dbb01dcc3b9cd1473187224e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73501d4ef72b29b31ec9bf311df32dc9 = L.circleMarker(\\n\",\n       \"                [37.7575, 115.6951],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_076abc946e6915167142dfdb72d42a2e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44a21e1660658d2dcc80c6755aa5eab1 = $(`&lt;div id=&quot;html_44a21e1660658d2dcc80c6755aa5eab1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6951             latitude:37.7575             pred_result:72.61446380615234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_076abc946e6915167142dfdb72d42a2e.setContent(html_44a21e1660658d2dcc80c6755aa5eab1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73501d4ef72b29b31ec9bf311df32dc9.bindPopup(popup_076abc946e6915167142dfdb72d42a2e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bde01b988150a160d6e1f49a3689de2a = L.circleMarker(\\n\",\n       \"                [37.7379, 115.6426],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbd793699f0a3b1a2dfb48bff4bca771 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f0052256463b5abaa3263f2fdfa7ce5 = $(`&lt;div id=&quot;html_8f0052256463b5abaa3263f2fdfa7ce5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6426             latitude:37.7379             pred_result:73.41748046875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbd793699f0a3b1a2dfb48bff4bca771.setContent(html_8f0052256463b5abaa3263f2fdfa7ce5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bde01b988150a160d6e1f49a3689de2a.bindPopup(popup_bbd793699f0a3b1a2dfb48bff4bca771)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5910d503660fb159eb73b8fc2c58441b = L.circleMarker(\\n\",\n       \"                [37.739, 115.6906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a55644a404d723076cc09a5c5699bc9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17754a546c34abb8c19eb233b0235db1 = $(`&lt;div id=&quot;html_17754a546c34abb8c19eb233b0235db1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6906             latitude:37.739             pred_result:72.67696380615234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a55644a404d723076cc09a5c5699bc9.setContent(html_17754a546c34abb8c19eb233b0235db1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5910d503660fb159eb73b8fc2c58441b.bindPopup(popup_2a55644a404d723076cc09a5c5699bc9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b42eb46486bca9e4324626fad8650e76 = L.circleMarker(\\n\",\n       \"                [37.0967, 114.4821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf04bf9fe5a8de7e7a70b09d15b95bb9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a1b79adc7ed96ef9d96693f65300e56 = $(`&lt;div id=&quot;html_1a1b79adc7ed96ef9d96693f65300e56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4821             latitude:37.0967             pred_result:86.71015930175781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf04bf9fe5a8de7e7a70b09d15b95bb9.setContent(html_1a1b79adc7ed96ef9d96693f65300e56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b42eb46486bca9e4324626fad8650e76.bindPopup(popup_bf04bf9fe5a8de7e7a70b09d15b95bb9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_229f8e9835b3f3be7149473055943c8f = L.circleMarker(\\n\",\n       \"                [37.0533, 114.5261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e17bc982995ff55f8a33cb016272e4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be7b4a5402935feff8513e6e25173c86 = $(`&lt;div id=&quot;html_be7b4a5402935feff8513e6e25173c86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5261             latitude:37.0533             pred_result:87.0177001953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e17bc982995ff55f8a33cb016272e4a.setContent(html_be7b4a5402935feff8513e6e25173c86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_229f8e9835b3f3be7149473055943c8f.bindPopup(popup_8e17bc982995ff55f8a33cb016272e4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9d5c1f2e49465a7fc5a0dfddcbf98d2 = L.circleMarker(\\n\",\n       \"                [37.0964, 114.5331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_580c8d484cf636d498828f233a955c67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bcd3016b3ecd963111ec4a86ae6f81ea = $(`&lt;div id=&quot;html_bcd3016b3ecd963111ec4a86ae6f81ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5331             latitude:37.0964             pred_result:86.77533721923828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_580c8d484cf636d498828f233a955c67.setContent(html_bcd3016b3ecd963111ec4a86ae6f81ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9d5c1f2e49465a7fc5a0dfddcbf98d2.bindPopup(popup_580c8d484cf636d498828f233a955c67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4ba20c890f316d3b97f47e0df8bfd31 = L.circleMarker(\\n\",\n       \"                [37.062, 114.4854],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_450184700220335c037d40109593d5d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_714257e5830c8bb56161f6b93ed1cc5a = $(`&lt;div id=&quot;html_714257e5830c8bb56161f6b93ed1cc5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4854             latitude:37.062             pred_result:87.18622589111328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_450184700220335c037d40109593d5d6.setContent(html_714257e5830c8bb56161f6b93ed1cc5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4ba20c890f316d3b97f47e0df8bfd31.bindPopup(popup_450184700220335c037d40109593d5d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbce7eab4d33f3cce76697dfb5f48639 = L.circleMarker(\\n\",\n       \"                [37.8873, 112.522],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d8272dce6c0c632c9c96e915f360820 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55bc32c2cecf4ade8422e81adb086146 = $(`&lt;div id=&quot;html_55bc32c2cecf4ade8422e81adb086146&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.522             latitude:37.8873             pred_result:82.42124938964844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d8272dce6c0c632c9c96e915f360820.setContent(html_55bc32c2cecf4ade8422e81adb086146);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbce7eab4d33f3cce76697dfb5f48639.bindPopup(popup_9d8272dce6c0c632c9c96e915f360820)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ff215afc00d2c14c1f30266e711586f = L.circleMarker(\\n\",\n       \"                [38.0108, 112.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_389f9752ee2766fa8a152d185e478dd8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_deda13c302f81576c571c98aeaca2031 = $(`&lt;div id=&quot;html_deda13c302f81576c571c98aeaca2031&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.434             latitude:38.0108             pred_result:75.86734771728516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_389f9752ee2766fa8a152d185e478dd8.setContent(html_deda13c302f81576c571c98aeaca2031);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ff215afc00d2c14c1f30266e711586f.bindPopup(popup_389f9752ee2766fa8a152d185e478dd8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b18f7e0f1b88e7251cd5938c9667cc5d = L.circleMarker(\\n\",\n       \"                [37.7124, 112.469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa614d412b3a5cc331b51066b6aa97cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9600973ce12f08cbfdc67da1199bcdfb = $(`&lt;div id=&quot;html_9600973ce12f08cbfdc67da1199bcdfb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.469             latitude:37.7124             pred_result:83.0623779296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa614d412b3a5cc331b51066b6aa97cd.setContent(html_9600973ce12f08cbfdc67da1199bcdfb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b18f7e0f1b88e7251cd5938c9667cc5d.bindPopup(popup_fa614d412b3a5cc331b51066b6aa97cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_172e8a59df34b1a2345a4493d314afb9 = L.circleMarker(\\n\",\n       \"                [37.7394, 112.5583],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3187d012b69794613bd4e01fecbf45bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_450db09a6f402ddc93b42eb04ccbfa85 = $(`&lt;div id=&quot;html_450db09a6f402ddc93b42eb04ccbfa85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5583             latitude:37.7394             pred_result:83.82855224609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3187d012b69794613bd4e01fecbf45bb.setContent(html_450db09a6f402ddc93b42eb04ccbfa85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_172e8a59df34b1a2345a4493d314afb9.bindPopup(popup_3187d012b69794613bd4e01fecbf45bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72f780608a512c13bd5f5eb4c1acc555 = L.circleMarker(\\n\",\n       \"                [37.8692, 112.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49242e01f9f7537a94d188e289e58c17 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30546aa484574235de2c70464d7acb68 = $(`&lt;div id=&quot;html_30546aa484574235de2c70464d7acb68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5369             latitude:37.8692             pred_result:82.82533264160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49242e01f9f7537a94d188e289e58c17.setContent(html_30546aa484574235de2c70464d7acb68);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72f780608a512c13bd5f5eb4c1acc555.bindPopup(popup_49242e01f9f7537a94d188e289e58c17)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d891da3c0fb5bd15664a09282b8e45ed = L.circleMarker(\\n\",\n       \"                [37.8195, 112.57],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa8100529bd2ccbd4731a5cadd978890 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6cac601ddbbf584d7574d0276786dd3 = $(`&lt;div id=&quot;html_f6cac601ddbbf584d7574d0276786dd3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.57             latitude:37.8195             pred_result:83.42161560058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa8100529bd2ccbd4731a5cadd978890.setContent(html_f6cac601ddbbf584d7574d0276786dd3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d891da3c0fb5bd15664a09282b8e45ed.bindPopup(popup_fa8100529bd2ccbd4731a5cadd978890)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_558a8bcd0860d74c1e0bb71beeef633f = L.circleMarker(\\n\",\n       \"                [37.9854, 112.549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f63577671c0ac4f7cd47ad16b69fc8d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ffc8093297571aeab0cb271fac03c5c = $(`&lt;div id=&quot;html_0ffc8093297571aeab0cb271fac03c5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.549             latitude:37.9854             pred_result:81.2067642211914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f63577671c0ac4f7cd47ad16b69fc8d7.setContent(html_0ffc8093297571aeab0cb271fac03c5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_558a8bcd0860d74c1e0bb71beeef633f.bindPopup(popup_f63577671c0ac4f7cd47ad16b69fc8d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ada03e3caaf3f4b8f45c48d322773db6 = L.circleMarker(\\n\",\n       \"                [37.7805, 112.488],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5335da065e53e5657cd23220287f80f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eaa3b9a60d2a328e6bdad3756ff0c1e6 = $(`&lt;div id=&quot;html_eaa3b9a60d2a328e6bdad3756ff0c1e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.488             latitude:37.7805             pred_result:82.35469055175781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5335da065e53e5657cd23220287f80f.setContent(html_eaa3b9a60d2a328e6bdad3756ff0c1e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ada03e3caaf3f4b8f45c48d322773db6.bindPopup(popup_d5335da065e53e5657cd23220287f80f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_365a78917d78674ad2d8c4e1efd8896f = L.circleMarker(\\n\",\n       \"                [40.7579, 111.651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aeea25ad2ceadfebf80aa596e98163a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07afb50629323ec54e8bbecbe7897a1b = $(`&lt;div id=&quot;html_07afb50629323ec54e8bbecbe7897a1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.651             latitude:40.7579             pred_result:44.795860290527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aeea25ad2ceadfebf80aa596e98163a1.setContent(html_07afb50629323ec54e8bbecbe7897a1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_365a78917d78674ad2d8c4e1efd8896f.bindPopup(popup_aeea25ad2ceadfebf80aa596e98163a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47e1d0846e7f6b1e260fd180288cc298 = L.circleMarker(\\n\",\n       \"                [40.8033, 111.658],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f61949578e2892824c11fef559842e5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11261990dabd5a7888d7ac138fa28922 = $(`&lt;div id=&quot;html_11261990dabd5a7888d7ac138fa28922&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.658             latitude:40.8033             pred_result:46.01148223876953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f61949578e2892824c11fef559842e5c.setContent(html_11261990dabd5a7888d7ac138fa28922);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47e1d0846e7f6b1e260fd180288cc298.bindPopup(popup_f61949578e2892824c11fef559842e5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6cca8c66e346fc8f25b042e7322031da = L.circleMarker(\\n\",\n       \"                [40.8452, 111.659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9072bef6453fcca3e33c802a2a406975 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae75e9e9206d9a43df1d5a9bd745af23 = $(`&lt;div id=&quot;html_ae75e9e9206d9a43df1d5a9bd745af23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.659             latitude:40.8452             pred_result:45.05267333984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9072bef6453fcca3e33c802a2a406975.setContent(html_ae75e9e9206d9a43df1d5a9bd745af23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6cca8c66e346fc8f25b042e7322031da.bindPopup(popup_9072bef6453fcca3e33c802a2a406975)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43e5e8ffa9f091a9c02171ebc7a20ece = L.circleMarker(\\n\",\n       \"                [40.8144, 111.608],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e74603a53b11a85aa476f71eb1f3df5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa364f46d990834c997b2153f826b92e = $(`&lt;div id=&quot;html_fa364f46d990834c997b2153f826b92e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.608             latitude:40.8144             pred_result:43.8546142578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e74603a53b11a85aa476f71eb1f3df5d.setContent(html_fa364f46d990834c997b2153f826b92e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43e5e8ffa9f091a9c02171ebc7a20ece.bindPopup(popup_e74603a53b11a85aa476f71eb1f3df5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ae13dc6ce909810c932d443c71f7757 = L.circleMarker(\\n\",\n       \"                [40.8369, 111.751],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba89f9ad496c6eefed3776af1de56960 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e81478c589334fea2c30ba47181f2cb = $(`&lt;div id=&quot;html_8e81478c589334fea2c30ba47181f2cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.751             latitude:40.8369             pred_result:43.792930603027344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba89f9ad496c6eefed3776af1de56960.setContent(html_8e81478c589334fea2c30ba47181f2cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ae13dc6ce909810c932d443c71f7757.bindPopup(popup_ba89f9ad496c6eefed3776af1de56960)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_566a14938512c01c8d076c55d49815a7 = L.circleMarker(\\n\",\n       \"                [40.8062, 111.7277],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6faad6f09a2d1bad5df40bb4c2092167 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e6b975ff9f239bdd5e48d23618abb0f = $(`&lt;div id=&quot;html_7e6b975ff9f239bdd5e48d23618abb0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7277             latitude:40.8062             pred_result:44.15874099731445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6faad6f09a2d1bad5df40bb4c2092167.setContent(html_7e6b975ff9f239bdd5e48d23618abb0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_566a14938512c01c8d076c55d49815a7.bindPopup(popup_6faad6f09a2d1bad5df40bb4c2092167)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3950efbf3372248d81e57d2072d635c9 = L.circleMarker(\\n\",\n       \"                [40.7866, 111.551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57c84293833a44c41ec2c098e864091e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58c76f2b9037c17b43fe058a4ed2d66c = $(`&lt;div id=&quot;html_58c76f2b9037c17b43fe058a4ed2d66c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.551             latitude:40.7866             pred_result:44.41687774658203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57c84293833a44c41ec2c098e864091e.setContent(html_58c76f2b9037c17b43fe058a4ed2d66c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3950efbf3372248d81e57d2072d635c9.bindPopup(popup_57c84293833a44c41ec2c098e864091e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b26876e3ed75f10d91a564c1c42b74c = L.circleMarker(\\n\",\n       \"                [40.7612, 111.717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_660e807f5d19e53f70d2facb47bfe420 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a7fc06d11631f73ce7b9599d4f30a58 = $(`&lt;div id=&quot;html_8a7fc06d11631f73ce7b9599d4f30a58&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.717             latitude:40.7612             pred_result:45.47236251831055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_660e807f5d19e53f70d2facb47bfe420.setContent(html_8a7fc06d11631f73ce7b9599d4f30a58);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b26876e3ed75f10d91a564c1c42b74c.bindPopup(popup_660e807f5d19e53f70d2facb47bfe420)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_197fc33f02f82eb3d0102fadb2a3709a = L.circleMarker(\\n\",\n       \"                [41.9339, 123.6836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af840cbef1640073424d3f749ca66ece = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f5daade5ccae501b9ee80590e376928 = $(`&lt;div id=&quot;html_3f5daade5ccae501b9ee80590e376928&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.6836             latitude:41.9339             pred_result:23.057697296142578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af840cbef1640073424d3f749ca66ece.setContent(html_3f5daade5ccae501b9ee80590e376928);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_197fc33f02f82eb3d0102fadb2a3709a.bindPopup(popup_af840cbef1640073424d3f749ca66ece)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f0e273ca097d31629cad691e12b3d0b = L.circleMarker(\\n\",\n       \"                [41.7561, 123.535],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49af2335e973a504781ad848504a8a32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c6067564973a02becea1dcc69c2cfe5 = $(`&lt;div id=&quot;html_7c6067564973a02becea1dcc69c2cfe5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.535             latitude:41.7561             pred_result:24.09972381591797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49af2335e973a504781ad848504a8a32.setContent(html_7c6067564973a02becea1dcc69c2cfe5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f0e273ca097d31629cad691e12b3d0b.bindPopup(popup_49af2335e973a504781ad848504a8a32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c07f6245fd66b1c1338198268d5051ea = L.circleMarker(\\n\",\n       \"                [41.7089, 123.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4f8e1487a3f4a650365ec968dd1f029 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb8409beb5407fdc8d2961b7f7e4f637 = $(`&lt;div id=&quot;html_bb8409beb5407fdc8d2961b7f7e4f637&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.439             latitude:41.7089             pred_result:32.29710006713867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4f8e1487a3f4a650365ec968dd1f029.setContent(html_bb8409beb5407fdc8d2961b7f7e4f637);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c07f6245fd66b1c1338198268d5051ea.bindPopup(popup_a4f8e1487a3f4a650365ec968dd1f029)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2fe7bbb7c3ab9578ef4e5c3a9eb276e = L.circleMarker(\\n\",\n       \"                [41.8336, 123.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d151ff0ae8567aabe3aaed2bfdc23b92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b51670bb1054ad3adfed4e027f5b5204 = $(`&lt;div id=&quot;html_b51670bb1054ad3adfed4e027f5b5204&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.542             latitude:41.8336             pred_result:23.67438316345215             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d151ff0ae8567aabe3aaed2bfdc23b92.setContent(html_b51670bb1054ad3adfed4e027f5b5204);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2fe7bbb7c3ab9578ef4e5c3a9eb276e.bindPopup(popup_d151ff0ae8567aabe3aaed2bfdc23b92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d633ab0c9be86f882972f98f0383f4a7 = L.circleMarker(\\n\",\n       \"                [41.8472, 123.428],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2cb5f61abb00f36cd09eab6630b6c52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8bab7c0d87a7ee8a6e51d34283c10aa4 = $(`&lt;div id=&quot;html_8bab7c0d87a7ee8a6e51d34283c10aa4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.428             latitude:41.8472             pred_result:23.031173706054688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2cb5f61abb00f36cd09eab6630b6c52.setContent(html_8bab7c0d87a7ee8a6e51d34283c10aa4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d633ab0c9be86f882972f98f0383f4a7.bindPopup(popup_a2cb5f61abb00f36cd09eab6630b6c52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2de9e91ae85eb98c8cd97a445cd91d29 = L.circleMarker(\\n\",\n       \"                [41.765, 123.41],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef5013ec8acfac32642d7e3179cee290 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f25b24fa64bfefc031cdcf9ba3cde73 = $(`&lt;div id=&quot;html_9f25b24fa64bfefc031cdcf9ba3cde73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.41             latitude:41.765             pred_result:30.76764678955078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef5013ec8acfac32642d7e3179cee290.setContent(html_9f25b24fa64bfefc031cdcf9ba3cde73);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2de9e91ae85eb98c8cd97a445cd91d29.bindPopup(popup_ef5013ec8acfac32642d7e3179cee290)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4aac57c8f9d7e92a59f75bf67cc2c3e2 = L.circleMarker(\\n\",\n       \"                [41.7775, 123.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_940e0cfb05dd54bb793a36ab5085dd8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b63174e2f9f0b3d7fb4b1b4a1d35db7 = $(`&lt;div id=&quot;html_7b63174e2f9f0b3d7fb4b1b4a1d35db7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.478             latitude:41.7775             pred_result:29.96859359741211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_940e0cfb05dd54bb793a36ab5085dd8e.setContent(html_7b63174e2f9f0b3d7fb4b1b4a1d35db7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4aac57c8f9d7e92a59f75bf67cc2c3e2.bindPopup(popup_940e0cfb05dd54bb793a36ab5085dd8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3d2c84f0927b3ef8a5ee14aafb34eed = L.circleMarker(\\n\",\n       \"                [41.7972, 123.3997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0fa04a1b0bb7d6ff96182c2001dc5fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de0468c3a747ae51e0c00ba959deb718 = $(`&lt;div id=&quot;html_de0468c3a747ae51e0c00ba959deb718&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.3997             latitude:41.7972             pred_result:28.114601135253906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0fa04a1b0bb7d6ff96182c2001dc5fb.setContent(html_de0468c3a747ae51e0c00ba959deb718);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3d2c84f0927b3ef8a5ee14aafb34eed.bindPopup(popup_b0fa04a1b0bb7d6ff96182c2001dc5fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c62c12f6923d52753fb2145d95ab371a = L.circleMarker(\\n\",\n       \"                [41.9228, 123.3783],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f925a7e36fface784a4f8536ff98fd1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43eb05962c2972e9c6fedc780989434f = $(`&lt;div id=&quot;html_43eb05962c2972e9c6fedc780989434f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.3783             latitude:41.9228             pred_result:24.350860595703125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f925a7e36fface784a4f8536ff98fd1.setContent(html_43eb05962c2972e9c6fedc780989434f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c62c12f6923d52753fb2145d95ab371a.bindPopup(popup_2f925a7e36fface784a4f8536ff98fd1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95929faf2ae14a0baeb13c3be7cd0b10 = L.circleMarker(\\n\",\n       \"                [38.97388889, 121.6119444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d4d339b44f018f168c146588077f575 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe83740b1dfb622118af5ae3b5611e04 = $(`&lt;div id=&quot;html_fe83740b1dfb622118af5ae3b5611e04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6119444             latitude:38.97388889             pred_result:15.149941444396973             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d4d339b44f018f168c146588077f575.setContent(html_fe83740b1dfb622118af5ae3b5611e04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95929faf2ae14a0baeb13c3be7cd0b10.bindPopup(popup_7d4d339b44f018f168c146588077f575)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_427b5ed566382ae6b40d9aa6146cf172 = L.circleMarker(\\n\",\n       \"                [38.95111111, 121.565],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb1a362cae293ff09322f30c4064f867 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7ed74d99d90294855279999b56d10f9 = $(`&lt;div id=&quot;html_b7ed74d99d90294855279999b56d10f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.565             latitude:38.95111111             pred_result:15.73020076751709             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb1a362cae293ff09322f30c4064f867.setContent(html_b7ed74d99d90294855279999b56d10f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_427b5ed566382ae6b40d9aa6146cf172.bindPopup(popup_eb1a362cae293ff09322f30c4064f867)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4c95dd7e796792f556bc81d1c0ace3d = L.circleMarker(\\n\",\n       \"                [38.885, 121.5638889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d0828ffdb9b490ae6ea3a66b10f1cfd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_741c67bc5af4047af88960aee6e6ca2a = $(`&lt;div id=&quot;html_741c67bc5af4047af88960aee6e6ca2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5638889             latitude:38.885             pred_result:21.175655364990234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d0828ffdb9b490ae6ea3a66b10f1cfd.setContent(html_741c67bc5af4047af88960aee6e6ca2a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4c95dd7e796792f556bc81d1c0ace3d.bindPopup(popup_0d0828ffdb9b490ae6ea3a66b10f1cfd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f592ea7244739d11864582853f171f0a = L.circleMarker(\\n\",\n       \"                [38.91194444, 121.6330556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94ea92c698c157dd54eb1afd9a427137 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_87d10ca6c999b153081a5e9a2596baa6 = $(`&lt;div id=&quot;html_87d10ca6c999b153081a5e9a2596baa6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6330556             latitude:38.91194444             pred_result:16.344762802124023             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94ea92c698c157dd54eb1afd9a427137.setContent(html_87d10ca6c999b153081a5e9a2596baa6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f592ea7244739d11864582853f171f0a.bindPopup(popup_94ea92c698c157dd54eb1afd9a427137)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b39bf03d9b6cee0f6587b8d0b9ab619b = L.circleMarker(\\n\",\n       \"                [38.86388889, 121.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd176954652cb54b881d0746220ee4d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c8296053d3b2e887c31a5ffe3f0c6bdd = $(`&lt;div id=&quot;html_c8296053d3b2e887c31a5ffe3f0c6bdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.625             latitude:38.86388889             pred_result:17.335134506225586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd176954652cb54b881d0746220ee4d1.setContent(html_c8296053d3b2e887c31a5ffe3f0c6bdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b39bf03d9b6cee0f6587b8d0b9ab619b.bindPopup(popup_bd176954652cb54b881d0746220ee4d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e291ba8dae3a136f62d445618a3a514e = L.circleMarker(\\n\",\n       \"                [38.85611111, 121.51805559999998],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dcc84127b33af840332f30b60f46ffb0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c36571fd7dcbae7cce1c66f66dfbb1fc = $(`&lt;div id=&quot;html_c36571fd7dcbae7cce1c66f66dfbb1fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.51805559999998             latitude:38.85611111             pred_result:15.369550704956055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dcc84127b33af840332f30b60f46ffb0.setContent(html_c36571fd7dcbae7cce1c66f66dfbb1fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e291ba8dae3a136f62d445618a3a514e.bindPopup(popup_dcc84127b33af840332f30b60f46ffb0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c38c732768d0a695217c8dc981846da1 = L.circleMarker(\\n\",\n       \"                [38.80805556, 121.2588889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5067e341c3a7fd9d2de9e1c539bf1bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1acdaa3c47157af5fd2fff03e2b8f135 = $(`&lt;div id=&quot;html_1acdaa3c47157af5fd2fff03e2b8f135&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2588889             latitude:38.80805556             pred_result:19.58587074279785             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5067e341c3a7fd9d2de9e1c539bf1bb.setContent(html_1acdaa3c47157af5fd2fff03e2b8f135);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c38c732768d0a695217c8dc981846da1.bindPopup(popup_f5067e341c3a7fd9d2de9e1c539bf1bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56c153e418544b8b1b440bdf440daa6d = L.circleMarker(\\n\",\n       \"                [39.0511, 121.7769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ca6a9bee7953d1d78ff56c2dc91756f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1dc43ad5a997d9685bfbe154ac40a153 = $(`&lt;div id=&quot;html_1dc43ad5a997d9685bfbe154ac40a153&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.7769             latitude:39.0511             pred_result:18.58100128173828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ca6a9bee7953d1d78ff56c2dc91756f.setContent(html_1dc43ad5a997d9685bfbe154ac40a153);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56c153e418544b8b1b440bdf440daa6d.bindPopup(popup_6ca6a9bee7953d1d78ff56c2dc91756f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_880d6a4c3550b2f0890c53fca11a0a4b = L.circleMarker(\\n\",\n       \"                [43.9167, 125.323],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7892d02be80a023663acac256f09389 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f2900a90ce15dedbbc7fac99a87e8d0 = $(`&lt;div id=&quot;html_1f2900a90ce15dedbbc7fac99a87e8d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.323             latitude:43.9167             pred_result:16.71133804321289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7892d02be80a023663acac256f09389.setContent(html_1f2900a90ce15dedbbc7fac99a87e8d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_880d6a4c3550b2f0890c53fca11a0a4b.bindPopup(popup_f7892d02be80a023663acac256f09389)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_468cf127e419d042e3bb3b376ef1f8e6 = L.circleMarker(\\n\",\n       \"                [43.91, 125.287],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc23f468a6f35fbcb9c672db089e2764 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_855d06a6f0f7efa2a98f3d0b3ffc43f9 = $(`&lt;div id=&quot;html_855d06a6f0f7efa2a98f3d0b3ffc43f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.287             latitude:43.91             pred_result:20.739967346191406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc23f468a6f35fbcb9c672db089e2764.setContent(html_855d06a6f0f7efa2a98f3d0b3ffc43f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_468cf127e419d042e3bb3b376ef1f8e6.bindPopup(popup_cc23f468a6f35fbcb9c672db089e2764)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c471d5fba58c118fb26930f11d7da386 = L.circleMarker(\\n\",\n       \"                [43.84, 125.2786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96f7858d4de90dfc655153d53ad3447b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6fb416ff4a9ff3432c7e29a0b4e345ba = $(`&lt;div id=&quot;html_6fb416ff4a9ff3432c7e29a0b4e345ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.2786             latitude:43.84             pred_result:20.442617416381836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96f7858d4de90dfc655153d53ad3447b.setContent(html_6fb416ff4a9ff3432c7e29a0b4e345ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c471d5fba58c118fb26930f11d7da386.bindPopup(popup_96f7858d4de90dfc655153d53ad3447b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7be43310e55b4af16006d3870778882f = L.circleMarker(\\n\",\n       \"                [43.8748, 125.3649],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1befc5518ef00013144dfa60a9c5ae2b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d940b55d782f894745c4aa226f3b71c7 = $(`&lt;div id=&quot;html_d940b55d782f894745c4aa226f3b71c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.3649             latitude:43.8748             pred_result:21.888656616210938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1befc5518ef00013144dfa60a9c5ae2b.setContent(html_d940b55d782f894745c4aa226f3b71c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7be43310e55b4af16006d3870778882f.bindPopup(popup_1befc5518ef00013144dfa60a9c5ae2b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_283ccab3bb199d2c28ee4de3bc7071de = L.circleMarker(\\n\",\n       \"                [43.8694, 125.325],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bb7c05ef9641fb9a073d89f4397e2c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0eef14aa92ac2dc1fbe63217758d10d = $(`&lt;div id=&quot;html_c0eef14aa92ac2dc1fbe63217758d10d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.325             latitude:43.8694             pred_result:19.148841857910156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bb7c05ef9641fb9a073d89f4397e2c6.setContent(html_c0eef14aa92ac2dc1fbe63217758d10d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_283ccab3bb199d2c28ee4de3bc7071de.bindPopup(popup_5bb7c05ef9641fb9a073d89f4397e2c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e2d56c3f3b524ee7858cb06f0006430 = L.circleMarker(\\n\",\n       \"                [43.7878, 125.454],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_372cd17433c34e0867e41f1589cb1748 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b5fc696ca7e4d621d27f6d4560c1234 = $(`&lt;div id=&quot;html_3b5fc696ca7e4d621d27f6d4560c1234&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.454             latitude:43.7878             pred_result:16.12580108642578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_372cd17433c34e0867e41f1589cb1748.setContent(html_3b5fc696ca7e4d621d27f6d4560c1234);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e2d56c3f3b524ee7858cb06f0006430.bindPopup(popup_372cd17433c34e0867e41f1589cb1748)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8dec61b14549043bcfe9f5f39bd93075 = L.circleMarker(\\n\",\n       \"                [43.55, 125.633],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90f167a535e4a3efae8c6ab91fd63846 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4020283508b89be4b7832ce762b706ec = $(`&lt;div id=&quot;html_4020283508b89be4b7832ce762b706ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.633             latitude:43.55             pred_result:15.808966636657715             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90f167a535e4a3efae8c6ab91fd63846.setContent(html_4020283508b89be4b7832ce762b706ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8dec61b14549043bcfe9f5f39bd93075.bindPopup(popup_90f167a535e4a3efae8c6ab91fd63846)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af78a25cf853743c7ad49de96cc1b903 = L.circleMarker(\\n\",\n       \"                [43.8667, 125.417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e2d4ab303a7be6e4798ab04076c8fd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d73b959caa6eaa4a23f10365c949b004 = $(`&lt;div id=&quot;html_d73b959caa6eaa4a23f10365c949b004&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.417             latitude:43.8667             pred_result:25.010175704956055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e2d4ab303a7be6e4798ab04076c8fd5.setContent(html_d73b959caa6eaa4a23f10365c949b004);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af78a25cf853743c7ad49de96cc1b903.bindPopup(popup_6e2d4ab303a7be6e4798ab04076c8fd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e15bdae3b21119d7f26336a3dbf6f1f1 = L.circleMarker(\\n\",\n       \"                [43.8167, 125.25],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00dce3b54819301d25c652f2ac7bf1ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21ad5eb861beedff1ef82a5931e205ff = $(`&lt;div id=&quot;html_21ad5eb861beedff1ef82a5931e205ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.25             latitude:43.8167             pred_result:22.51102066040039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00dce3b54819301d25c652f2ac7bf1ce.setContent(html_21ad5eb861beedff1ef82a5931e205ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e15bdae3b21119d7f26336a3dbf6f1f1.bindPopup(popup_00dce3b54819301d25c652f2ac7bf1ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea646f825bc1d7ce7e4fbf549a6807cb = L.circleMarker(\\n\",\n       \"                [43.85, 125.217],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_476c4e09283e0764abc52141d1ce1534 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48a4127df762cf829f8f499d78b82dc9 = $(`&lt;div id=&quot;html_48a4127df762cf829f8f499d78b82dc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.217             latitude:43.85             pred_result:20.71048927307129             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_476c4e09283e0764abc52141d1ce1534.setContent(html_48a4127df762cf829f8f499d78b82dc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea646f825bc1d7ce7e4fbf549a6807cb.bindPopup(popup_476c4e09283e0764abc52141d1ce1534)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d907bc4fa5a5b8517604c6b395bd88f8 = L.circleMarker(\\n\",\n       \"                [45.755, 126.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a51ce5ef54cff1d2c80dd2c293f144d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_509c20f3fff3de15b8a3bcd208819b6b = $(`&lt;div id=&quot;html_509c20f3fff3de15b8a3bcd208819b6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.542             latitude:45.755             pred_result:17.770801544189453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a51ce5ef54cff1d2c80dd2c293f144d.setContent(html_509c20f3fff3de15b8a3bcd208819b6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d907bc4fa5a5b8517604c6b395bd88f8.bindPopup(popup_5a51ce5ef54cff1d2c80dd2c293f144d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2bb28de29afa8d240b56da21253f880b = L.circleMarker(\\n\",\n       \"                [45.8167, 126.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_189d3b53ef51a39f5a9af93228703a12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b42947114e82560bd43e3eee4a2f97b6 = $(`&lt;div id=&quot;html_b42947114e82560bd43e3eee4a2f97b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.561             latitude:45.8167             pred_result:21.852060317993164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_189d3b53ef51a39f5a9af93228703a12.setContent(html_b42947114e82560bd43e3eee4a2f97b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2bb28de29afa8d240b56da21253f880b.bindPopup(popup_189d3b53ef51a39f5a9af93228703a12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd14b0ba0c286fb69fb3a4a63e4caadb = L.circleMarker(\\n\",\n       \"                [45.5422, 126.979],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18ff963598fe2fdfb7e6b7201650d0b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b3ced2fe3a46a9014e28a5876db2c26 = $(`&lt;div id=&quot;html_8b3ced2fe3a46a9014e28a5876db2c26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.979             latitude:45.5422             pred_result:19.998226165771484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18ff963598fe2fdfb7e6b7201650d0b5.setContent(html_8b3ced2fe3a46a9014e28a5876db2c26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd14b0ba0c286fb69fb3a4a63e4caadb.bindPopup(popup_18ff963598fe2fdfb7e6b7201650d0b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb1ddc08d84363b85a33a95743a09c32 = L.circleMarker(\\n\",\n       \"                [45.7733, 126.689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_862b9b351cb8ce38a110a07ace19e75b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0044143ca355b85b43656b2fde53388 = $(`&lt;div id=&quot;html_e0044143ca355b85b43656b2fde53388&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.689             latitude:45.7733             pred_result:19.82754135131836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_862b9b351cb8ce38a110a07ace19e75b.setContent(html_e0044143ca355b85b43656b2fde53388);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb1ddc08d84363b85a33a95743a09c32.bindPopup(popup_862b9b351cb8ce38a110a07ace19e75b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_435737672859e0c7841f7caf7c3743df = L.circleMarker(\\n\",\n       \"                [45.7667, 126.635],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55854cb9f69dd56a584db9edf601a0f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46e99a810ffa01995e86166b50768a8b = $(`&lt;div id=&quot;html_46e99a810ffa01995e86166b50768a8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.635             latitude:45.7667             pred_result:20.03073501586914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55854cb9f69dd56a584db9edf601a0f7.setContent(html_46e99a810ffa01995e86166b50768a8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_435737672859e0c7841f7caf7c3743df.bindPopup(popup_55854cb9f69dd56a584db9edf601a0f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c25ebe602f4dc939015cbb410b42a92e = L.circleMarker(\\n\",\n       \"                [45.7319, 126.685],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5cc40edd76bfce3a90c67b2e7ee36a70 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5aca1761a97f453ffcf8d6db67aa49a = $(`&lt;div id=&quot;html_c5aca1761a97f453ffcf8d6db67aa49a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.685             latitude:45.7319             pred_result:19.893619537353516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5cc40edd76bfce3a90c67b2e7ee36a70.setContent(html_c5aca1761a97f453ffcf8d6db67aa49a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c25ebe602f4dc939015cbb410b42a92e.bindPopup(popup_5cc40edd76bfce3a90c67b2e7ee36a70)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_066a1d2bad32ded8b4ce5cb0872746c1 = L.circleMarker(\\n\",\n       \"                [45.7258, 126.646],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39d150fa9956d3dc989aa4d20dae72d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70389d51195690cf7f3be69feb4cadc3 = $(`&lt;div id=&quot;html_70389d51195690cf7f3be69feb4cadc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.646             latitude:45.7258             pred_result:21.06197738647461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39d150fa9956d3dc989aa4d20dae72d8.setContent(html_70389d51195690cf7f3be69feb4cadc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_066a1d2bad32ded8b4ce5cb0872746c1.bindPopup(popup_39d150fa9956d3dc989aa4d20dae72d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1d91af77edbd63ccd6abb2a5c9a0b27 = L.circleMarker(\\n\",\n       \"                [45.7478, 126.593],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5844941639e4abbbe76cc9622207fd82 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a17021abc62776948fedda379f85e29 = $(`&lt;div id=&quot;html_2a17021abc62776948fedda379f85e29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.593             latitude:45.7478             pred_result:24.71623420715332             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5844941639e4abbbe76cc9622207fd82.setContent(html_2a17021abc62776948fedda379f85e29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1d91af77edbd63ccd6abb2a5c9a0b27.bindPopup(popup_5844941639e4abbbe76cc9622207fd82)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6fb33522ade71eba05fec4c467ed058c = L.circleMarker(\\n\",\n       \"                [45.61, 126.615],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77eda728f4752bb485414572c1952505 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0e9e7a49969152a519875a0f119004b = $(`&lt;div id=&quot;html_c0e9e7a49969152a519875a0f119004b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.615             latitude:45.61             pred_result:21.447301864624023             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77eda728f4752bb485414572c1952505.setContent(html_c0e9e7a49969152a519875a0f119004b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6fb33522ade71eba05fec4c467ed058c.bindPopup(popup_77eda728f4752bb485414572c1952505)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f0c380024278418dd8b79b5b46d6aa9 = L.circleMarker(\\n\",\n       \"                [45.9819, 126.6106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a73306e6e5ba42ab86c4395b0b81aff1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e17f3cd8a81ba62e4526c355708e4bc7 = $(`&lt;div id=&quot;html_e17f3cd8a81ba62e4526c355708e4bc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6106             latitude:45.9819             pred_result:19.10594367980957             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a73306e6e5ba42ab86c4395b0b81aff1.setContent(html_e17f3cd8a81ba62e4526c355708e4bc7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f0c380024278418dd8b79b5b46d6aa9.bindPopup(popup_a73306e6e5ba42ab86c4395b0b81aff1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_023b863e9bcc0ef9cd198fb4aff12ad5 = L.circleMarker(\\n\",\n       \"                [45.6842, 126.6206],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f8f973bfb784bced627e21d5eb12d37 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f5969048b5d81a1fa52caa354b3ca79 = $(`&lt;div id=&quot;html_5f5969048b5d81a1fa52caa354b3ca79&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6206             latitude:45.6842             pred_result:21.941974639892578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f8f973bfb784bced627e21d5eb12d37.setContent(html_5f5969048b5d81a1fa52caa354b3ca79);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_023b863e9bcc0ef9cd198fb4aff12ad5.bindPopup(popup_9f8f973bfb784bced627e21d5eb12d37)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_122a8dba6861b64d9782435b5719b736 = L.circleMarker(\\n\",\n       \"                [31.238000000000003, 121.4],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fa1a2373f14a8a6b1a6eff2b321d838 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3b2415ad53ec933de8231849d1061d1 = $(`&lt;div id=&quot;html_a3b2415ad53ec933de8231849d1061d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.4             latitude:31.238000000000003             pred_result:43.593841552734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fa1a2373f14a8a6b1a6eff2b321d838.setContent(html_a3b2415ad53ec933de8231849d1061d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_122a8dba6861b64d9782435b5719b736.bindPopup(popup_6fa1a2373f14a8a6b1a6eff2b321d838)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41c36506b823b3b88cb18d9272819c1d = L.circleMarker(\\n\",\n       \"                [31.2036, 121.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_787931171173693e0263e35e3c0ee613 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a13a1c75bb90d1f374ee5169c41059ea = $(`&lt;div id=&quot;html_a13a1c75bb90d1f374ee5169c41059ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.478             latitude:31.2036             pred_result:43.0621337890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_787931171173693e0263e35e3c0ee613.setContent(html_a13a1c75bb90d1f374ee5169c41059ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41c36506b823b3b88cb18d9272819c1d.bindPopup(popup_787931171173693e0263e35e3c0ee613)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c2b536879e9db28443ce6d82c67c0b26 = L.circleMarker(\\n\",\n       \"                [31.3008, 121.467],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0b9184a48bc1be7dadd7c02cc1b1e11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1456bf8a4b66d24292a75148edef942 = $(`&lt;div id=&quot;html_a1456bf8a4b66d24292a75148edef942&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.467             latitude:31.3008             pred_result:44.30448532104492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0b9184a48bc1be7dadd7c02cc1b1e11.setContent(html_a1456bf8a4b66d24292a75148edef942);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c2b536879e9db28443ce6d82c67c0b26.bindPopup(popup_c0b9184a48bc1be7dadd7c02cc1b1e11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee00fef5e1d3143c240777a6db169efc = L.circleMarker(\\n\",\n       \"                [31.1654, 121.412],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61a1b72b645093234aa0cf64da4f9ac0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_683184dd19914fc92d8280ff87821c64 = $(`&lt;div id=&quot;html_683184dd19914fc92d8280ff87821c64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.412             latitude:31.1654             pred_result:42.603965759277344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61a1b72b645093234aa0cf64da4f9ac0.setContent(html_683184dd19914fc92d8280ff87821c64);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee00fef5e1d3143c240777a6db169efc.bindPopup(popup_61a1b72b645093234aa0cf64da4f9ac0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a448333a77edd9cb6545207c9659856 = L.circleMarker(\\n\",\n       \"                [31.2659, 121.536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_297bc5a69a40bfb0752f9109d3f083de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30c29ae0a01e3a07a42fd0e4bdf7ee5a = $(`&lt;div id=&quot;html_30c29ae0a01e3a07a42fd0e4bdf7ee5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.536             latitude:31.2659             pred_result:43.316490173339844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_297bc5a69a40bfb0752f9109d3f083de.setContent(html_30c29ae0a01e3a07a42fd0e4bdf7ee5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a448333a77edd9cb6545207c9659856.bindPopup(popup_297bc5a69a40bfb0752f9109d3f083de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbe9741ba6482620931bddfaa153f69a = L.circleMarker(\\n\",\n       \"                [31.0935, 120.978],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c361dc78d2413b715d33aa1afc31b974 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74919c31367cfd792a1b358afcd0457c = $(`&lt;div id=&quot;html_74919c31367cfd792a1b358afcd0457c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.978             latitude:31.0935             pred_result:42.93882751464844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c361dc78d2413b715d33aa1afc31b974.setContent(html_74919c31367cfd792a1b358afcd0457c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbe9741ba6482620931bddfaa153f69a.bindPopup(popup_c361dc78d2413b715d33aa1afc31b974)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1ff5a378dc797dc242fe511295b7c8e = L.circleMarker(\\n\",\n       \"                [31.2261, 121.425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5806b437761ac94f7dec0761e03cef9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4180f98264f88bdd7d606136aef0a21f = $(`&lt;div id=&quot;html_4180f98264f88bdd7d606136aef0a21f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.425             latitude:31.2261             pred_result:44.1922721862793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5806b437761ac94f7dec0761e03cef9f.setContent(html_4180f98264f88bdd7d606136aef0a21f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1ff5a378dc797dc242fe511295b7c8e.bindPopup(popup_5806b437761ac94f7dec0761e03cef9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc30151d229bde770469bd74330ab248 = L.circleMarker(\\n\",\n       \"                [31.1907, 121.703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e57b9753a125464cdd36a981f01f9c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77a3b430db4e764177055d2ab6c341f6 = $(`&lt;div id=&quot;html_77a3b430db4e764177055d2ab6c341f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.703             latitude:31.1907             pred_result:44.59558868408203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e57b9753a125464cdd36a981f01f9c0.setContent(html_77a3b430db4e764177055d2ab6c341f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc30151d229bde770469bd74330ab248.bindPopup(popup_4e57b9753a125464cdd36a981f01f9c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a47fe56ce33448b2e090f18a833f10d7 = L.circleMarker(\\n\",\n       \"                [31.2284, 121.533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09cd1722cec6e5e8a47b8ce8254a1a7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_466651aa16ef6eb040c7f40c04a1db83 = $(`&lt;div id=&quot;html_466651aa16ef6eb040c7f40c04a1db83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.533             latitude:31.2284             pred_result:44.83219528198242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09cd1722cec6e5e8a47b8ce8254a1a7e.setContent(html_466651aa16ef6eb040c7f40c04a1db83);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a47fe56ce33448b2e090f18a833f10d7.bindPopup(popup_09cd1722cec6e5e8a47b8ce8254a1a7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_984a7f6b6a87bdca485bf2d4b6338803 = L.circleMarker(\\n\",\n       \"                [31.2071, 121.577],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdb1fb7cad6d506a83cee6338650fd71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d374842fa91ff7595353e8ecfbb76a47 = $(`&lt;div id=&quot;html_d374842fa91ff7595353e8ecfbb76a47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.577             latitude:31.2071             pred_result:46.04105758666992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdb1fb7cad6d506a83cee6338650fd71.setContent(html_d374842fa91ff7595353e8ecfbb76a47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_984a7f6b6a87bdca485bf2d4b6338803.bindPopup(popup_fdb1fb7cad6d506a83cee6338650fd71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7eaa11dce130762609b80fcfd4b3de2d = L.circleMarker(\\n\",\n       \"                [32.1083, 118.803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73b110ea7ed2bc9f50e34a4b37485fc3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_45d9be44179dd0b7ad36c78c962fdfb8 = $(`&lt;div id=&quot;html_45d9be44179dd0b7ad36c78c962fdfb8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.803             latitude:32.1083             pred_result:43.000858306884766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73b110ea7ed2bc9f50e34a4b37485fc3.setContent(html_45d9be44179dd0b7ad36c78c962fdfb8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7eaa11dce130762609b80fcfd4b3de2d.bindPopup(popup_73b110ea7ed2bc9f50e34a4b37485fc3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c858ddeaddc68ec6a8c70e4e65e51fc = L.circleMarker(\\n\",\n       \"                [32.0572, 118.749],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38c8fc193ef1155522fa607f9f704640 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b00fb75c40c0aee51962338747036ff2 = $(`&lt;div id=&quot;html_b00fb75c40c0aee51962338747036ff2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.749             latitude:32.0572             pred_result:43.1381950378418             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38c8fc193ef1155522fa607f9f704640.setContent(html_b00fb75c40c0aee51962338747036ff2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c858ddeaddc68ec6a8c70e4e65e51fc.bindPopup(popup_38c8fc193ef1155522fa607f9f704640)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e16fcdb23ac0e314573a6b24d59b381 = L.circleMarker(\\n\",\n       \"                [32.0723, 118.778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c735ea6170eedbae978da39bac1c6f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_754b049af8e015ae92fe0c86b8348217 = $(`&lt;div id=&quot;html_754b049af8e015ae92fe0c86b8348217&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.778             latitude:32.0723             pred_result:43.46024703979492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c735ea6170eedbae978da39bac1c6f5.setContent(html_754b049af8e015ae92fe0c86b8348217);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e16fcdb23ac0e314573a6b24d59b381.bindPopup(popup_7c735ea6170eedbae978da39bac1c6f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7fecbc3e6b73209dc2eab68276b78e34 = L.circleMarker(\\n\",\n       \"                [32.0144, 118.777],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f53c50487a4daefdc093354d75aa03b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_382f9669b57560aec8a61eed7ad82acf = $(`&lt;div id=&quot;html_382f9669b57560aec8a61eed7ad82acf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.777             latitude:32.0144             pred_result:44.132659912109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f53c50487a4daefdc093354d75aa03b.setContent(html_382f9669b57560aec8a61eed7ad82acf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7fecbc3e6b73209dc2eab68276b78e34.bindPopup(popup_6f53c50487a4daefdc093354d75aa03b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0dbd3b44ba8ae8bb30c6bce1769e5316 = L.circleMarker(\\n\",\n       \"                [32.0314, 118.803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0aba824e71be239d1ed0990a59816ac6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2476aa8c93ae87e45be0c063f1cba7fa = $(`&lt;div id=&quot;html_2476aa8c93ae87e45be0c063f1cba7fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.803             latitude:32.0314             pred_result:43.595699310302734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0aba824e71be239d1ed0990a59816ac6.setContent(html_2476aa8c93ae87e45be0c063f1cba7fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0dbd3b44ba8ae8bb30c6bce1769e5316.bindPopup(popup_0aba824e71be239d1ed0990a59816ac6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d2ce4c61a96ddbe13c82ad0b5b46630 = L.circleMarker(\\n\",\n       \"                [32.0775, 118.795],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db691d7b88126aa4fb17c24295d24719 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1efcc506d4a75d57b566a7867f3c80f1 = $(`&lt;div id=&quot;html_1efcc506d4a75d57b566a7867f3c80f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.795             latitude:32.0775             pred_result:42.803462982177734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db691d7b88126aa4fb17c24295d24719.setContent(html_1efcc506d4a75d57b566a7867f3c80f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d2ce4c61a96ddbe13c82ad0b5b46630.bindPopup(popup_db691d7b88126aa4fb17c24295d24719)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7809f579e06067e9672812f8957f858 = L.circleMarker(\\n\",\n       \"                [32.0092, 118.737],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3aed7b97acf15ad027eb30bbd9f9677 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00cc37912524e908d236748fe2dfb5cc = $(`&lt;div id=&quot;html_00cc37912524e908d236748fe2dfb5cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.737             latitude:32.0092             pred_result:44.58311080932617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3aed7b97acf15ad027eb30bbd9f9677.setContent(html_00cc37912524e908d236748fe2dfb5cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7809f579e06067e9672812f8957f858.bindPopup(popup_a3aed7b97acf15ad027eb30bbd9f9677)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c58bd5e30989a23d539a3fc186f5468b = L.circleMarker(\\n\",\n       \"                [32.105, 118.907],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f82ea5c2cc5139a1c4dc256efd25ec2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_131da0adda00c1f2c78545155ad8b19f = $(`&lt;div id=&quot;html_131da0adda00c1f2c78545155ad8b19f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.907             latitude:32.105             pred_result:43.28308868408203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f82ea5c2cc5139a1c4dc256efd25ec2f.setContent(html_131da0adda00c1f2c78545155ad8b19f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c58bd5e30989a23d539a3fc186f5468b.bindPopup(popup_f82ea5c2cc5139a1c4dc256efd25ec2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5f976060eee59174cb7fa086ecd9900 = L.circleMarker(\\n\",\n       \"                [31.2472, 120.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26642ff0f5d3e21eb47b24d9fe627109 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_319946fefba08815326b3c0b9139d43d = $(`&lt;div id=&quot;html_319946fefba08815326b3c0b9139d43d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.561             latitude:31.2472             pred_result:45.7750244140625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26642ff0f5d3e21eb47b24d9fe627109.setContent(html_319946fefba08815326b3c0b9139d43d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5f976060eee59174cb7fa086ecd9900.bindPopup(popup_26642ff0f5d3e21eb47b24d9fe627109)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c660fcbee55d7b488b5ce01515336b31 = L.circleMarker(\\n\",\n       \"                [31.2864, 120.628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27228f185db4c99fc993969e12bdc9ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_804faa250762e7f1e65940968a345668 = $(`&lt;div id=&quot;html_804faa250762e7f1e65940968a345668&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.628             latitude:31.2864             pred_result:47.36782455444336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27228f185db4c99fc993969e12bdc9ea.setContent(html_804faa250762e7f1e65940968a345668);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c660fcbee55d7b488b5ce01515336b31.bindPopup(popup_27228f185db4c99fc993969e12bdc9ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_baf1340ae0ef5bad20797282300b533a = L.circleMarker(\\n\",\n       \"                [31.3019, 120.591],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5581206f7fbd2ba198e08e7878fd2489 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c77fbab8caff66712d43e86c62d53de0 = $(`&lt;div id=&quot;html_c77fbab8caff66712d43e86c62d53de0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.591             latitude:31.3019             pred_result:45.109554290771484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5581206f7fbd2ba198e08e7878fd2489.setContent(html_c77fbab8caff66712d43e86c62d53de0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_baf1340ae0ef5bad20797282300b533a.bindPopup(popup_5581206f7fbd2ba198e08e7878fd2489)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97fa4fe9bb449cc2a05ab558df895154 = L.circleMarker(\\n\",\n       \"                [31.3264, 120.596],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4c24a6340b5d178c5618dd6d25349f0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59982f4038a3cb469ad833059c4e588a = $(`&lt;div id=&quot;html_59982f4038a3cb469ad833059c4e588a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.596             latitude:31.3264             pred_result:45.33695602416992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4c24a6340b5d178c5618dd6d25349f0.setContent(html_59982f4038a3cb469ad833059c4e588a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97fa4fe9bb449cc2a05ab558df895154.bindPopup(popup_c4c24a6340b5d178c5618dd6d25349f0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e94456bf488292b836eebbcad57229c = L.circleMarker(\\n\",\n       \"                [31.2703, 120.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_198ee93cdce00f1f16f084427dc14687 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2914aee90c9ac86678628b68183c00d = $(`&lt;div id=&quot;html_d2914aee90c9ac86678628b68183c00d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.613             latitude:31.2703             pred_result:45.91643142700195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_198ee93cdce00f1f16f084427dc14687.setContent(html_d2914aee90c9ac86678628b68183c00d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e94456bf488292b836eebbcad57229c.bindPopup(popup_198ee93cdce00f1f16f084427dc14687)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb36b2d4a13a74bc42353a0c55c8e76b = L.circleMarker(\\n\",\n       \"                [31.2994, 120.543],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_959d714f059c7f536f2f6e313996267c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e070c2d64192918def8f2898284f4849 = $(`&lt;div id=&quot;html_e070c2d64192918def8f2898284f4849&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.543             latitude:31.2994             pred_result:46.53324890136719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_959d714f059c7f536f2f6e313996267c.setContent(html_e070c2d64192918def8f2898284f4849);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb36b2d4a13a74bc42353a0c55c8e76b.bindPopup(popup_959d714f059c7f536f2f6e313996267c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbf1394785bc61d3393da9ff4e27ee6e = L.circleMarker(\\n\",\n       \"                [31.3097, 120.669],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32e7a19e87ccb80351f11304aa63aa9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4d0d146b3e62358137e81d3e26cc925 = $(`&lt;div id=&quot;html_e4d0d146b3e62358137e81d3e26cc925&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.669             latitude:31.3097             pred_result:46.194156646728516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32e7a19e87ccb80351f11304aa63aa9d.setContent(html_e4d0d146b3e62358137e81d3e26cc925);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbf1394785bc61d3393da9ff4e27ee6e.bindPopup(popup_32e7a19e87ccb80351f11304aa63aa9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_99e682c1355861d7c5aaba68042926d6 = L.circleMarker(\\n\",\n       \"                [31.3708, 120.641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cbb2968920f63ee5f6ca8b9d45d3f6cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c29141ccf4a733c3c981abc4384464ca = $(`&lt;div id=&quot;html_c29141ccf4a733c3c981abc4384464ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.641             latitude:31.3708             pred_result:44.17709732055664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cbb2968920f63ee5f6ca8b9d45d3f6cb.setContent(html_c29141ccf4a733c3c981abc4384464ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_99e682c1355861d7c5aaba68042926d6.bindPopup(popup_cbb2968920f63ee5f6ca8b9d45d3f6cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91a2b120a85ca1085e806d590789fb39 = L.circleMarker(\\n\",\n       \"                [31.96, 120.913],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbc02596fb76e85e0c87490ace787688 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c043143c22d1277409a9e6b9ed1de5f = $(`&lt;div id=&quot;html_0c043143c22d1277409a9e6b9ed1de5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.913             latitude:31.96             pred_result:43.28845977783203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbc02596fb76e85e0c87490ace787688.setContent(html_0c043143c22d1277409a9e6b9ed1de5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91a2b120a85ca1085e806d590789fb39.bindPopup(popup_dbc02596fb76e85e0c87490ace787688)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7253f820716547feb3ee4740a2009c40 = L.circleMarker(\\n\",\n       \"                [32.0005, 120.86],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd2a6c92d75a3f9060070f2c2c26888a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65da140f00f655767ffd134110794bdb = $(`&lt;div id=&quot;html_65da140f00f655767ffd134110794bdb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.86             latitude:32.0005             pred_result:43.98422622680664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd2a6c92d75a3f9060070f2c2c26888a.setContent(html_65da140f00f655767ffd134110794bdb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7253f820716547feb3ee4740a2009c40.bindPopup(popup_dd2a6c92d75a3f9060070f2c2c26888a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a40af6fbaea5303e216134dd033b105 = L.circleMarker(\\n\",\n       \"                [32.02, 120.87],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c912ddcd4767974cfe727186e9491fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdbbfd9b9eef825f6b9c48158b1ab1f3 = $(`&lt;div id=&quot;html_bdbbfd9b9eef825f6b9c48158b1ab1f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.87             latitude:32.02             pred_result:42.72282409667969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c912ddcd4767974cfe727186e9491fd.setContent(html_bdbbfd9b9eef825f6b9c48158b1ab1f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a40af6fbaea5303e216134dd033b105.bindPopup(popup_9c912ddcd4767974cfe727186e9491fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbb47c4d13e6c538b1bb273c0fc02bb4 = L.circleMarker(\\n\",\n       \"                [32.0417, 120.81],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_48c0088bbfc174e37b783d69ed6bef2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea8221736d8e90c4d9e6760b6513325c = $(`&lt;div id=&quot;html_ea8221736d8e90c4d9e6760b6513325c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.81             latitude:32.0417             pred_result:44.43398666381836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_48c0088bbfc174e37b783d69ed6bef2d.setContent(html_ea8221736d8e90c4d9e6760b6513325c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbb47c4d13e6c538b1bb273c0fc02bb4.bindPopup(popup_48c0088bbfc174e37b783d69ed6bef2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_626a35d7ca1167fb7b1ee7113541768b = L.circleMarker(\\n\",\n       \"                [34.5885, 119.176],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76bdf0839de31d8e7d7f26e083ecf0f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_183c074810c25267bb2bc3d0531452e3 = $(`&lt;div id=&quot;html_183c074810c25267bb2bc3d0531452e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.176             latitude:34.5885             pred_result:32.69425964355469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76bdf0839de31d8e7d7f26e083ecf0f6.setContent(html_183c074810c25267bb2bc3d0531452e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_626a35d7ca1167fb7b1ee7113541768b.bindPopup(popup_76bdf0839de31d8e7d7f26e083ecf0f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f59ce4e42527fdbe47f5cbd67fb81f5d = L.circleMarker(\\n\",\n       \"                [34.2761, 117.167],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_402c34b08a21dd18da3cc9eeca3c10ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a47893f111f23f3e31013bb607dc5aed = $(`&lt;div id=&quot;html_a47893f111f23f3e31013bb607dc5aed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.167             latitude:34.2761             pred_result:54.919044494628906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_402c34b08a21dd18da3cc9eeca3c10ab.setContent(html_a47893f111f23f3e31013bb607dc5aed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f59ce4e42527fdbe47f5cbd67fb81f5d.bindPopup(popup_402c34b08a21dd18da3cc9eeca3c10ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9553d84ea48e0546f4e9b4640fa8863 = L.circleMarker(\\n\",\n       \"                [34.2417, 117.192],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50c8e0508cae867430a47d24820126d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37672f2456a5d8c82e33378e788e1a57 = $(`&lt;div id=&quot;html_37672f2456a5d8c82e33378e788e1a57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.192             latitude:34.2417             pred_result:56.170772552490234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50c8e0508cae867430a47d24820126d4.setContent(html_37672f2456a5d8c82e33378e788e1a57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9553d84ea48e0546f4e9b4640fa8863.bindPopup(popup_50c8e0508cae867430a47d24820126d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e12da679ea421ec2fa96d3fbf7fa450 = L.circleMarker(\\n\",\n       \"                [34.2153, 117.256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_669f31c0c0fa23e4f5e4619f0078cc6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_582b1dcf905866b5da29e9f6cf7510d2 = $(`&lt;div id=&quot;html_582b1dcf905866b5da29e9f6cf7510d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.256             latitude:34.2153             pred_result:53.22910690307617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_669f31c0c0fa23e4f5e4619f0078cc6c.setContent(html_582b1dcf905866b5da29e9f6cf7510d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e12da679ea421ec2fa96d3fbf7fa450.bindPopup(popup_669f31c0c0fa23e4f5e4619f0078cc6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_846cdd0c717b36fd66931f5bed776bf3 = L.circleMarker(\\n\",\n       \"                [34.2778, 117.2933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44f42d109a5eaf81b563955470a059d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2d3bc0b238cf405ac15a99a0b10e0b4 = $(`&lt;div id=&quot;html_d2d3bc0b238cf405ac15a99a0b10e0b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2933             latitude:34.2778             pred_result:54.44776153564453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44f42d109a5eaf81b563955470a059d3.setContent(html_d2d3bc0b238cf405ac15a99a0b10e0b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_846cdd0c717b36fd66931f5bed776bf3.bindPopup(popup_44f42d109a5eaf81b563955470a059d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30503f05d0bb030286637efe25c58178 = L.circleMarker(\\n\",\n       \"                [32.3878, 119.46],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ed0587191c1f4183b65e6d631a0f58d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ba42d0c1dff1d436d96db32ef471de8 = $(`&lt;div id=&quot;html_9ba42d0c1dff1d436d96db32ef471de8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.46             latitude:32.3878             pred_result:41.916465759277344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ed0587191c1f4183b65e6d631a0f58d.setContent(html_9ba42d0c1dff1d436d96db32ef471de8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30503f05d0bb030286637efe25c58178.bindPopup(popup_5ed0587191c1f4183b65e6d631a0f58d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e6c7952782f2f03bdf74cdce57afda9 = L.circleMarker(\\n\",\n       \"                [32.41, 119.404],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a6c137b488966baa96729e2566891b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6943365915f687859e48d573fa57325 = $(`&lt;div id=&quot;html_c6943365915f687859e48d573fa57325&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.404             latitude:32.41             pred_result:40.46076965332031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a6c137b488966baa96729e2566891b9.setContent(html_c6943365915f687859e48d573fa57325);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e6c7952782f2f03bdf74cdce57afda9.bindPopup(popup_3a6c137b488966baa96729e2566891b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6623d8ce8e45184a9fa3e217ec27d54a = L.circleMarker(\\n\",\n       \"                [32.3761, 119.389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_faf1ac785c4d562a39eaef36d1bcbae0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0ef3b484f9d77dfc6c705318637344e = $(`&lt;div id=&quot;html_d0ef3b484f9d77dfc6c705318637344e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.389             latitude:32.3761             pred_result:41.55516052246094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_faf1ac785c4d562a39eaef36d1bcbae0.setContent(html_d0ef3b484f9d77dfc6c705318637344e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6623d8ce8e45184a9fa3e217ec27d54a.bindPopup(popup_faf1ac785c4d562a39eaef36d1bcbae0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9deb3c5f1727f0ba2cd8ca1ec7c7d744 = L.circleMarker(\\n\",\n       \"                [31.4867, 120.269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f90a09189bc09edc4b07ccb0ae51c52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb603b20a9e2b4bdb2f48e5e7f356e46 = $(`&lt;div id=&quot;html_eb603b20a9e2b4bdb2f48e5e7f356e46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.269             latitude:31.4867             pred_result:45.1697998046875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f90a09189bc09edc4b07ccb0ae51c52.setContent(html_eb603b20a9e2b4bdb2f48e5e7f356e46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9deb3c5f1727f0ba2cd8ca1ec7c7d744.bindPopup(popup_1f90a09189bc09edc4b07ccb0ae51c52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e4ec878e49e6b53036acf434838f115 = L.circleMarker(\\n\",\n       \"                [31.6219, 120.275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd6b386201012ec7a9869ae5876c15e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3eb9e36db3d7fec72c5c49be96fa293e = $(`&lt;div id=&quot;html_3eb9e36db3d7fec72c5c49be96fa293e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.275             latitude:31.6219             pred_result:45.383609771728516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd6b386201012ec7a9869ae5876c15e4.setContent(html_3eb9e36db3d7fec72c5c49be96fa293e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e4ec878e49e6b53036acf434838f115.bindPopup(popup_bd6b386201012ec7a9869ae5876c15e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e7365e41c3df5823d99c48f3b083c99 = L.circleMarker(\\n\",\n       \"                [31.56, 120.294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_330a9f33dcce257aee97b05a530cf1ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c1086b589eea185246146795e650b52 = $(`&lt;div id=&quot;html_3c1086b589eea185246146795e650b52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.294             latitude:31.56             pred_result:45.754478454589844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_330a9f33dcce257aee97b05a530cf1ed.setContent(html_3c1086b589eea185246146795e650b52);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e7365e41c3df5823d99c48f3b083c99.bindPopup(popup_330a9f33dcce257aee97b05a530cf1ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff90cbb175905935beecb26f3a32e871 = L.circleMarker(\\n\",\n       \"                [31.5031, 120.242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_302d785cd3760c4473c468d857d77612 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8643c2005aae59aa71b20d4aa11a8890 = $(`&lt;div id=&quot;html_8643c2005aae59aa71b20d4aa11a8890&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.242             latitude:31.5031             pred_result:46.24523162841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_302d785cd3760c4473c468d857d77612.setContent(html_8643c2005aae59aa71b20d4aa11a8890);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff90cbb175905935beecb26f3a32e871.bindPopup(popup_302d785cd3760c4473c468d857d77612)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de3d6d931c13df34c60caa7dd46317e7 = L.circleMarker(\\n\",\n       \"                [31.5848, 120.354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_397bd1368e580a432b5d6c28f4a2f4c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c51fa70a36e5b5903e29f65a7f01cd3d = $(`&lt;div id=&quot;html_c51fa70a36e5b5903e29f65a7f01cd3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.354             latitude:31.5848             pred_result:44.560611724853516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_397bd1368e580a432b5d6c28f4a2f4c5.setContent(html_c51fa70a36e5b5903e29f65a7f01cd3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de3d6d931c13df34c60caa7dd46317e7.bindPopup(popup_397bd1368e580a432b5d6c28f4a2f4c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_915eb960dc027c5245bc6f3be61d8f0f = L.circleMarker(\\n\",\n       \"                [31.5475, 120.354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6fb3ba7db2c1db6cb403d947dafe70a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_373d276d362173efc6f495b3fe27a2e6 = $(`&lt;div id=&quot;html_373d276d362173efc6f495b3fe27a2e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.354             latitude:31.5475             pred_result:45.49069595336914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6fb3ba7db2c1db6cb403d947dafe70a.setContent(html_373d276d362173efc6f495b3fe27a2e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_915eb960dc027c5245bc6f3be61d8f0f.bindPopup(popup_a6fb3ba7db2c1db6cb403d947dafe70a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c3d3016fcaf2816b9a9f948b46f13e0 = L.circleMarker(\\n\",\n       \"                [31.5631, 120.245],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db0b5fea057250b6ed70ecbbcfb93465 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_644604f18fdd98a9934037afe23d9794 = $(`&lt;div id=&quot;html_644604f18fdd98a9934037afe23d9794&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.245             latitude:31.5631             pred_result:43.263736724853516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db0b5fea057250b6ed70ecbbcfb93465.setContent(html_644604f18fdd98a9934037afe23d9794);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c3d3016fcaf2816b9a9f948b46f13e0.bindPopup(popup_db0b5fea057250b6ed70ecbbcfb93465)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7dc663b222714d46ccc6e0e9162376df = L.circleMarker(\\n\",\n       \"                [31.6842, 120.288],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a22361c2c06bd3b64fe7fb62a44108c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be6cb522b1992296800c63d11c3d6b4c = $(`&lt;div id=&quot;html_be6cb522b1992296800c63d11c3d6b4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.288             latitude:31.6842             pred_result:44.611366271972656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a22361c2c06bd3b64fe7fb62a44108c6.setContent(html_be6cb522b1992296800c63d11c3d6b4c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7dc663b222714d46ccc6e0e9162376df.bindPopup(popup_a22361c2c06bd3b64fe7fb62a44108c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9388601265866e08f3ca779eeec9a1e5 = L.circleMarker(\\n\",\n       \"                [31.7586, 119.996],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eaea54aa61c3e9fd063b95d6714b76c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cada0e3a56546b0c2df5f1a7e97d3614 = $(`&lt;div id=&quot;html_cada0e3a56546b0c2df5f1a7e97d3614&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.996             latitude:31.7586             pred_result:46.24909210205078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eaea54aa61c3e9fd063b95d6714b76c6.setContent(html_cada0e3a56546b0c2df5f1a7e97d3614);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9388601265866e08f3ca779eeec9a1e5.bindPopup(popup_eaea54aa61c3e9fd063b95d6714b76c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37f3fb1532d5662c98fc7f99d993c1cb = L.circleMarker(\\n\",\n       \"                [31.7039, 119.935],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c8a5641f6e5065372533741e8271d15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83ff62391d8936c243a7c10699c7548a = $(`&lt;div id=&quot;html_83ff62391d8936c243a7c10699c7548a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.935             latitude:31.7039             pred_result:45.37627410888672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c8a5641f6e5065372533741e8271d15.setContent(html_83ff62391d8936c243a7c10699c7548a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37f3fb1532d5662c98fc7f99d993c1cb.bindPopup(popup_0c8a5641f6e5065372533741e8271d15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b2303c08d863b949b93e72944d76dce = L.circleMarker(\\n\",\n       \"                [31.9108, 119.905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce792b1a923fa3ed344ceae875fe9047 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2dbce6dca0f5a601cf9637b98a234ab7 = $(`&lt;div id=&quot;html_2dbce6dca0f5a601cf9637b98a234ab7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.905             latitude:31.9108             pred_result:44.75394821166992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce792b1a923fa3ed344ceae875fe9047.setContent(html_2dbce6dca0f5a601cf9637b98a234ab7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b2303c08d863b949b93e72944d76dce.bindPopup(popup_ce792b1a923fa3ed344ceae875fe9047)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f95c645646eb41a128e9c56a2a7ebed = L.circleMarker(\\n\",\n       \"                [32.1883, 119.68],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8dc3fc4bb67abf7caf3f292af97bd285 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26efd4b29aeafcd1536bbb38533acf5f = $(`&lt;div id=&quot;html_26efd4b29aeafcd1536bbb38533acf5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.68             latitude:32.1883             pred_result:42.16152572631836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8dc3fc4bb67abf7caf3f292af97bd285.setContent(html_26efd4b29aeafcd1536bbb38533acf5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f95c645646eb41a128e9c56a2a7ebed.bindPopup(popup_8dc3fc4bb67abf7caf3f292af97bd285)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57761996f33be825b40818f3a5262675 = L.circleMarker(\\n\",\n       \"                [32.215, 119.491],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f052631be2096f07d71e431e58adc302 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6b0baa51595378850f3acce373a0682 = $(`&lt;div id=&quot;html_c6b0baa51595378850f3acce373a0682&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.491             latitude:32.215             pred_result:45.20881652832031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f052631be2096f07d71e431e58adc302.setContent(html_c6b0baa51595378850f3acce373a0682);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57761996f33be825b40818f3a5262675.bindPopup(popup_f052631be2096f07d71e431e58adc302)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ff6c2c53a92924a6f51628bb9df9e21 = L.circleMarker(\\n\",\n       \"                [32.1319, 119.43],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3d4a66c19a1901f97b67e7faa43a0c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdadece1c812f0791be3912a4314d9ba = $(`&lt;div id=&quot;html_bdadece1c812f0791be3912a4314d9ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.43             latitude:32.1319             pred_result:43.007144927978516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3d4a66c19a1901f97b67e7faa43a0c6.setContent(html_bdadece1c812f0791be3912a4314d9ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ff6c2c53a92924a6f51628bb9df9e21.bindPopup(popup_c3d4a66c19a1901f97b67e7faa43a0c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b8c3bf7cc0b2c348b5ffc67af4edccf = L.circleMarker(\\n\",\n       \"                [32.4867, 119.9],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a705b1b1bc528d56e8162776f6ca9302 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f2cdafbc813e2396102aad827c73deb = $(`&lt;div id=&quot;html_4f2cdafbc813e2396102aad827c73deb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9             latitude:32.4867             pred_result:42.953948974609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a705b1b1bc528d56e8162776f6ca9302.setContent(html_4f2cdafbc813e2396102aad827c73deb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b8c3bf7cc0b2c348b5ffc67af4edccf.bindPopup(popup_a705b1b1bc528d56e8162776f6ca9302)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1ddbca67a0a076508ec27fe2fd63043 = L.circleMarker(\\n\",\n       \"                [32.4611, 119.9219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a72719cdd8dd0870e586a510ab364f88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54bce70e6d321020d3a7a415e2b6d39f = $(`&lt;div id=&quot;html_54bce70e6d321020d3a7a415e2b6d39f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9219             latitude:32.4611             pred_result:43.73462677001953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a72719cdd8dd0870e586a510ab364f88.setContent(html_54bce70e6d321020d3a7a415e2b6d39f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1ddbca67a0a076508ec27fe2fd63043.bindPopup(popup_a72719cdd8dd0870e586a510ab364f88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_abd027893bbfd8065cec7cc0339c3c0e = L.circleMarker(\\n\",\n       \"                [32.4639, 119.888],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_414bc5131af0bd67e57f142b403701ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_011b4ec1c03379e6be9f23ae88fecb33 = $(`&lt;div id=&quot;html_011b4ec1c03379e6be9f23ae88fecb33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.888             latitude:32.4639             pred_result:43.582183837890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_414bc5131af0bd67e57f142b403701ed.setContent(html_011b4ec1c03379e6be9f23ae88fecb33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_abd027893bbfd8065cec7cc0339c3c0e.bindPopup(popup_414bc5131af0bd67e57f142b403701ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f279244343a118076a7d40ebb26c0e2 = L.circleMarker(\\n\",\n       \"                [33.5981, 119.036],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb6e61e8a2319d5f46b409f72ec6266d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06554a5605816dfcad3d75646c8a84c1 = $(`&lt;div id=&quot;html_06554a5605816dfcad3d75646c8a84c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.036             latitude:33.5981             pred_result:38.172969818115234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb6e61e8a2319d5f46b409f72ec6266d.setContent(html_06554a5605816dfcad3d75646c8a84c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f279244343a118076a7d40ebb26c0e2.bindPopup(popup_fb6e61e8a2319d5f46b409f72ec6266d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b4855a9a1bc9200e4212db2e8c76141 = L.circleMarker(\\n\",\n       \"                [33.575, 119.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a987b5248fa199a74b035d375eb50217 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3cd8be25c04c22077c02ac7bdbe5598a = $(`&lt;div id=&quot;html_3cd8be25c04c22077c02ac7bdbe5598a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.007             latitude:33.575             pred_result:40.18356704711914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a987b5248fa199a74b035d375eb50217.setContent(html_3cd8be25c04c22077c02ac7bdbe5598a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b4855a9a1bc9200e4212db2e8c76141.bindPopup(popup_a987b5248fa199a74b035d375eb50217)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8bb2883d90a9928001695435a2de1c59 = L.circleMarker(\\n\",\n       \"                [33.6067, 118.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_053fd02c1c5679a1fdf462003e38c8bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e3cff75e47a8f175dc2be5c6e42d18d = $(`&lt;div id=&quot;html_5e3cff75e47a8f175dc2be5c6e42d18d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.989             latitude:33.6067             pred_result:39.56945037841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_053fd02c1c5679a1fdf462003e38c8bc.setContent(html_5e3cff75e47a8f175dc2be5c6e42d18d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8bb2883d90a9928001695435a2de1c59.bindPopup(popup_053fd02c1c5679a1fdf462003e38c8bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3315fe96dffd86024ee5229964979cc1 = L.circleMarker(\\n\",\n       \"                [33.5039, 119.135],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22ee573f24bc74bc8af796c5b49c7c28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_28c73cf090ca863292cc65eee28fdfdd = $(`&lt;div id=&quot;html_28c73cf090ca863292cc65eee28fdfdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.135             latitude:33.5039             pred_result:37.163719177246094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22ee573f24bc74bc8af796c5b49c7c28.setContent(html_28c73cf090ca863292cc65eee28fdfdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3315fe96dffd86024ee5229964979cc1.bindPopup(popup_22ee573f24bc74bc8af796c5b49c7c28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_511da97ac6972de8fd99b7d212b5fc43 = L.circleMarker(\\n\",\n       \"                [33.626999999999995, 119.0122],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_248e0574169a66b1af29c0b743657908 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6cd6e0bd50ba6c179153cfefadd91f9 = $(`&lt;div id=&quot;html_e6cd6e0bd50ba6c179153cfefadd91f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0122             latitude:33.626999999999995             pred_result:38.314735412597656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_248e0574169a66b1af29c0b743657908.setContent(html_e6cd6e0bd50ba6c179153cfefadd91f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_511da97ac6972de8fd99b7d212b5fc43.bindPopup(popup_248e0574169a66b1af29c0b743657908)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63da546c1d3a44982c9cacd52c0484f7 = L.circleMarker(\\n\",\n       \"                [33.4022, 120.118],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afcb7396e41c5c2599184e206bac10de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e252776c340ab866b819376671efd3be = $(`&lt;div id=&quot;html_e252776c340ab866b819376671efd3be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.118             latitude:33.4022             pred_result:35.3842658996582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afcb7396e41c5c2599184e206bac10de.setContent(html_e252776c340ab866b819376671efd3be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63da546c1d3a44982c9cacd52c0484f7.bindPopup(popup_afcb7396e41c5c2599184e206bac10de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86d1f7b592307a47f46da5d3ef338424 = L.circleMarker(\\n\",\n       \"                [33.3942, 120.156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a75de65cc9850f9aaf9f4cc21286f1ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6388364c39123081e397e4c15d375051 = $(`&lt;div id=&quot;html_6388364c39123081e397e4c15d375051&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.156             latitude:33.3942             pred_result:39.40838623046875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a75de65cc9850f9aaf9f4cc21286f1ec.setContent(html_6388364c39123081e397e4c15d375051);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86d1f7b592307a47f46da5d3ef338424.bindPopup(popup_a75de65cc9850f9aaf9f4cc21286f1ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93aa2763486e37821c02bc4a0b4f06ba = L.circleMarker(\\n\",\n       \"                [33.3947, 120.225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cbf6b0991bc6ff2d644d6639d60079bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2f0730a636776600adb99c28c8613d5 = $(`&lt;div id=&quot;html_e2f0730a636776600adb99c28c8613d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.225             latitude:33.3947             pred_result:33.20149612426758             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cbf6b0991bc6ff2d644d6639d60079bc.setContent(html_e2f0730a636776600adb99c28c8613d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93aa2763486e37821c02bc4a0b4f06ba.bindPopup(popup_cbf6b0991bc6ff2d644d6639d60079bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e5d96e92e2152d523975fcdbf834785 = L.circleMarker(\\n\",\n       \"                [33.9528, 118.293],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d65d5ca4139d48b80e096e4ad716b5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8bca72212ba965cb8e51003f54925043 = $(`&lt;div id=&quot;html_8bca72212ba965cb8e51003f54925043&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.293             latitude:33.9528             pred_result:43.38853454589844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d65d5ca4139d48b80e096e4ad716b5a.setContent(html_8bca72212ba965cb8e51003f54925043);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e5d96e92e2152d523975fcdbf834785.bindPopup(popup_1d65d5ca4139d48b80e096e4ad716b5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dbf207b1f3127101dccf745dc8a4f52 = L.circleMarker(\\n\",\n       \"                [33.9506, 118.3214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_450195fa4aefe46916cbd0bdc115055b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1405fca71891ead44f7ba81177bba67a = $(`&lt;div id=&quot;html_1405fca71891ead44f7ba81177bba67a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3214             latitude:33.9506             pred_result:45.35826873779297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_450195fa4aefe46916cbd0bdc115055b.setContent(html_1405fca71891ead44f7ba81177bba67a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dbf207b1f3127101dccf745dc8a4f52.bindPopup(popup_450195fa4aefe46916cbd0bdc115055b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_534632add1d821282cd4eb841742caeb = L.circleMarker(\\n\",\n       \"                [30.21, 120.211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42c9fe650c4532f3c4eb66fd361b55cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e26af0097ef827341a886580ec51815f = $(`&lt;div id=&quot;html_e26af0097ef827341a886580ec51815f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.211             latitude:30.21             pred_result:44.59585952758789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42c9fe650c4532f3c4eb66fd361b55cc.setContent(html_e26af0097ef827341a886580ec51815f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_534632add1d821282cd4eb841742caeb.bindPopup(popup_42c9fe650c4532f3c4eb66fd361b55cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c69aed33a2543063298bcd90b129555f = L.circleMarker(\\n\",\n       \"                [30.2747, 120.063],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a529e50f8fb95c5763377f8302f420e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d074bea0fbceb38d972ebc0adcd42866 = $(`&lt;div id=&quot;html_d074bea0fbceb38d972ebc0adcd42866&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.063             latitude:30.2747             pred_result:44.146636962890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a529e50f8fb95c5763377f8302f420e6.setContent(html_d074bea0fbceb38d972ebc0adcd42866);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c69aed33a2543063298bcd90b129555f.bindPopup(popup_a529e50f8fb95c5763377f8302f420e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7c79fbf5c4c1eb9ea5ce5ad4345b2ac = L.circleMarker(\\n\",\n       \"                [29.635, 119.026],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57e80707c5a51b2c4aa6f483456900ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f770f51cc5d04770fa05c8f8fe67c0d1 = $(`&lt;div id=&quot;html_f770f51cc5d04770fa05c8f8fe67c0d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.026             latitude:29.635             pred_result:42.91632080078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57e80707c5a51b2c4aa6f483456900ca.setContent(html_f770f51cc5d04770fa05c8f8fe67c0d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7c79fbf5c4c1eb9ea5ce5ad4345b2ac.bindPopup(popup_57e80707c5a51b2c4aa6f483456900ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_709f7bf2bad6000e8195c8ac212a05b7 = L.circleMarker(\\n\",\n       \"                [30.3058, 120.348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73592eb0513e08683e89ce119c06233e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89d46875f85f36edda862edc19c0691c = $(`&lt;div id=&quot;html_89d46875f85f36edda862edc19c0691c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.348             latitude:30.3058             pred_result:44.530067443847656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73592eb0513e08683e89ce119c06233e.setContent(html_89d46875f85f36edda862edc19c0691c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_709f7bf2bad6000e8195c8ac212a05b7.bindPopup(popup_73592eb0513e08683e89ce119c06233e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5262097861e55ca8a12b8598515b06d = L.circleMarker(\\n\",\n       \"                [30.2456, 120.127],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9070eac2c50f8b7252dd7e3408cd2a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f96b2904376ddb7d2d9a6abeffede79 = $(`&lt;div id=&quot;html_1f96b2904376ddb7d2d9a6abeffede79&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.127             latitude:30.2456             pred_result:44.608123779296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9070eac2c50f8b7252dd7e3408cd2a0.setContent(html_1f96b2904376ddb7d2d9a6abeffede79);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5262097861e55ca8a12b8598515b06d.bindPopup(popup_c9070eac2c50f8b7252dd7e3408cd2a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d50aec01d09f257604d41e67e973c6c = L.circleMarker(\\n\",\n       \"                [30.2692, 120.19],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_612840abd4d70eb26a3a11a707f65f6a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4d17e112d79b9d5637be8285e5c8c4a = $(`&lt;div id=&quot;html_b4d17e112d79b9d5637be8285e5c8c4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.19             latitude:30.2692             pred_result:44.17429733276367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_612840abd4d70eb26a3a11a707f65f6a.setContent(html_b4d17e112d79b9d5637be8285e5c8c4a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d50aec01d09f257604d41e67e973c6c.bindPopup(popup_612840abd4d70eb26a3a11a707f65f6a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cae8bc715e2afc8616574f7e17d97d19 = L.circleMarker(\\n\",\n       \"                [30.2897, 120.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a293202191ea2d2fdc56eadd832b581 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a5384ec270d4d9d31a762281400a6a4 = $(`&lt;div id=&quot;html_4a5384ec270d4d9d31a762281400a6a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.157             latitude:30.2897             pred_result:45.130889892578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a293202191ea2d2fdc56eadd832b581.setContent(html_4a5384ec270d4d9d31a762281400a6a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cae8bc715e2afc8616574f7e17d97d19.bindPopup(popup_9a293202191ea2d2fdc56eadd832b581)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_093bb9adf321c5363d4bd12497e6cd47 = L.circleMarker(\\n\",\n       \"                [30.3119, 120.12],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffd7a57f4b6624529858990cb802465d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd25a65e8f4df73ec971f93822f6ff81 = $(`&lt;div id=&quot;html_cd25a65e8f4df73ec971f93822f6ff81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.12             latitude:30.3119             pred_result:45.17787551879883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffd7a57f4b6624529858990cb802465d.setContent(html_cd25a65e8f4df73ec971f93822f6ff81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_093bb9adf321c5363d4bd12497e6cd47.bindPopup(popup_ffd7a57f4b6624529858990cb802465d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cab0253b19f88fdfa7f651a052d63893 = L.circleMarker(\\n\",\n       \"                [30.4183, 120.301],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18d78c54f4037aa7e77891cbe5527d04 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02cde8e5a9ffd8e59ea758642dfa3c60 = $(`&lt;div id=&quot;html_02cde8e5a9ffd8e59ea758642dfa3c60&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.301             latitude:30.4183             pred_result:45.852317810058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18d78c54f4037aa7e77891cbe5527d04.setContent(html_02cde8e5a9ffd8e59ea758642dfa3c60);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cab0253b19f88fdfa7f651a052d63893.bindPopup(popup_18d78c54f4037aa7e77891cbe5527d04)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0034af2007d0d39228ccaa3f1b82dac = L.circleMarker(\\n\",\n       \"                [30.1819, 120.27],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fae9163755cfd0eff191acc96705fa97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff4485def507f258778a712f026f58db = $(`&lt;div id=&quot;html_ff4485def507f258778a712f026f58db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.27             latitude:30.1819             pred_result:43.631683349609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fae9163755cfd0eff191acc96705fa97.setContent(html_ff4485def507f258778a712f026f58db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0034af2007d0d39228ccaa3f1b82dac.bindPopup(popup_fae9163755cfd0eff191acc96705fa97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08cb93e58e8b1f302a7bc1ef40397f7d = L.circleMarker(\\n\",\n       \"                [30.1808, 120.088],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b66e7a54f43d2b50f15709935ab6703a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d47fbb455844523e81d80d8241aea149 = $(`&lt;div id=&quot;html_d47fbb455844523e81d80d8241aea149&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.088             latitude:30.1808             pred_result:43.076255798339844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b66e7a54f43d2b50f15709935ab6703a.setContent(html_d47fbb455844523e81d80d8241aea149);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08cb93e58e8b1f302a7bc1ef40397f7d.bindPopup(popup_b66e7a54f43d2b50f15709935ab6703a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7648854e233cd99136fd3c8a830e9892 = L.circleMarker(\\n\",\n       \"                [29.8208, 121.56],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c51ff5db7fd2c6ef0d246ca5b623b9dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c6f62390458b737c7f6a07318d231fe = $(`&lt;div id=&quot;html_2c6f62390458b737c7f6a07318d231fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.56             latitude:29.8208             pred_result:37.98636245727539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c51ff5db7fd2c6ef0d246ca5b623b9dd.setContent(html_2c6f62390458b737c7f6a07318d231fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7648854e233cd99136fd3c8a830e9892.bindPopup(popup_c51ff5db7fd2c6ef0d246ca5b623b9dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d26161dec8c4b72b56b0dbdca6080c0 = L.circleMarker(\\n\",\n       \"                [29.8906, 121.554],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c9fd0e7ae7dd6d7a134944288b3cf18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27e5557ce8926f54525be24e1b06aade = $(`&lt;div id=&quot;html_27e5557ce8926f54525be24e1b06aade&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.554             latitude:29.8906             pred_result:38.793128967285156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c9fd0e7ae7dd6d7a134944288b3cf18.setContent(html_27e5557ce8926f54525be24e1b06aade);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d26161dec8c4b72b56b0dbdca6080c0.bindPopup(popup_9c9fd0e7ae7dd6d7a134944288b3cf18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f7eb8faa273f6dd68fabc2ba45c5d58 = L.circleMarker(\\n\",\n       \"                [29.7736, 121.633],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45cb77f2c0e291baa5f76a29b3d7d48b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bbd21f81c0bb1a4be9830557da11e4c0 = $(`&lt;div id=&quot;html_bbd21f81c0bb1a4be9830557da11e4c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.633             latitude:29.7736             pred_result:37.73386764526367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45cb77f2c0e291baa5f76a29b3d7d48b.setContent(html_bbd21f81c0bb1a4be9830557da11e4c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f7eb8faa273f6dd68fabc2ba45c5d58.bindPopup(popup_45cb77f2c0e291baa5f76a29b3d7d48b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_205b3b27868836139fe4088fd241f6e8 = L.circleMarker(\\n\",\n       \"                [29.8633, 121.586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0792f3aebc2126c2bd442dacbe02b8af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bafc4f11f96e9e40980e183cf5f34ca9 = $(`&lt;div id=&quot;html_bafc4f11f96e9e40980e183cf5f34ca9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.586             latitude:29.8633             pred_result:39.130882263183594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0792f3aebc2126c2bd442dacbe02b8af.setContent(html_bafc4f11f96e9e40980e183cf5f34ca9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_205b3b27868836139fe4088fd241f6e8.bindPopup(popup_0792f3aebc2126c2bd442dacbe02b8af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cfec8481686b28f426ed64f35eb73bef = L.circleMarker(\\n\",\n       \"                [29.8506, 121.524],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2e5bc05a1948d83adc05bbf917619fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c312b46905e2b4f58f105ac3b4058b3d = $(`&lt;div id=&quot;html_c312b46905e2b4f58f105ac3b4058b3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.524             latitude:29.8506             pred_result:38.98408508300781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2e5bc05a1948d83adc05bbf917619fa.setContent(html_c312b46905e2b4f58f105ac3b4058b3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cfec8481686b28f426ed64f35eb73bef.bindPopup(popup_b2e5bc05a1948d83adc05bbf917619fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eba8bd5a827512e6b7de316af6053051 = L.circleMarker(\\n\",\n       \"                [28.0089, 120.634],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04b04f6e02c06b1855699dbabafefa6f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3cbaa65e0e8cdf8808bb0db4a6c1f90 = $(`&lt;div id=&quot;html_c3cbaa65e0e8cdf8808bb0db4a6c1f90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.634             latitude:28.0089             pred_result:35.690887451171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04b04f6e02c06b1855699dbabafefa6f.setContent(html_c3cbaa65e0e8cdf8808bb0db4a6c1f90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eba8bd5a827512e6b7de316af6053051.bindPopup(popup_04b04f6e02c06b1855699dbabafefa6f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6aefd3683c7b433812740b593de4031f = L.circleMarker(\\n\",\n       \"                [27.9939, 120.677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99e0278fe85c392e4290fd5863dd248e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59f198787da45099b0902b35ad81911d = $(`&lt;div id=&quot;html_59f198787da45099b0902b35ad81911d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.677             latitude:27.9939             pred_result:34.746124267578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99e0278fe85c392e4290fd5863dd248e.setContent(html_59f198787da45099b0902b35ad81911d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6aefd3683c7b433812740b593de4031f.bindPopup(popup_99e0278fe85c392e4290fd5863dd248e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9894482424cb02aeee11d4aa55e08f41 = L.circleMarker(\\n\",\n       \"                [27.9747, 120.76],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_637235d9b568de1ffdeaca81567cffcc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66c033e4c02ca4bbaaa738714bb53e3c = $(`&lt;div id=&quot;html_66c033e4c02ca4bbaaa738714bb53e3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.76             latitude:27.9747             pred_result:32.8692626953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_637235d9b568de1ffdeaca81567cffcc.setContent(html_66c033e4c02ca4bbaaa738714bb53e3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9894482424cb02aeee11d4aa55e08f41.bindPopup(popup_637235d9b568de1ffdeaca81567cffcc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27e65abfff7978a6f83441042552fae3 = L.circleMarker(\\n\",\n       \"                [28.0167, 120.671],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90d17894de1bcf15acb77859da572d50 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40bbddb7bbc3c4a1b0d9ae4593f7f67b = $(`&lt;div id=&quot;html_40bbddb7bbc3c4a1b0d9ae4593f7f67b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.671             latitude:28.0167             pred_result:34.38821029663086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90d17894de1bcf15acb77859da572d50.setContent(html_40bbddb7bbc3c4a1b0d9ae4593f7f67b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27e65abfff7978a6f83441042552fae3.bindPopup(popup_90d17894de1bcf15acb77859da572d50)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4acc8a3c1ad2ab3bb1a885d6d2bbd5f8 = L.circleMarker(\\n\",\n       \"                [30.0911, 120.598],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e08718f9cc680a9c273534a9c056ba4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c40d64a3651000bd8d17a28adcc678af = $(`&lt;div id=&quot;html_c40d64a3651000bd8d17a28adcc678af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.598             latitude:30.0911             pred_result:40.93247985839844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e08718f9cc680a9c273534a9c056ba4.setContent(html_c40d64a3651000bd8d17a28adcc678af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4acc8a3c1ad2ab3bb1a885d6d2bbd5f8.bindPopup(popup_7e08718f9cc680a9c273534a9c056ba4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8171df94882ce06d135e3f19f097ab9a = L.circleMarker(\\n\",\n       \"                [29.9919, 120.605],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e539f88be714c54a008a45932c32aaa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c8cb727d1917e29b858757242820ee1 = $(`&lt;div id=&quot;html_9c8cb727d1917e29b858757242820ee1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.605             latitude:29.9919             pred_result:42.19068145751953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e539f88be714c54a008a45932c32aaa.setContent(html_9c8cb727d1917e29b858757242820ee1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8171df94882ce06d135e3f19f097ab9a.bindPopup(popup_1e539f88be714c54a008a45932c32aaa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9124b842c6990065315c92066bbc942c = L.circleMarker(\\n\",\n       \"                [30.8244, 120.07],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6bbd4c42fb944f1ddb1a56300ca59826 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5267f596cd5c857db110fb3d3765be5 = $(`&lt;div id=&quot;html_e5267f596cd5c857db110fb3d3765be5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.07             latitude:30.8244             pred_result:45.91842269897461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6bbd4c42fb944f1ddb1a56300ca59826.setContent(html_e5267f596cd5c857db110fb3d3765be5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9124b842c6990065315c92066bbc942c.bindPopup(popup_6bbd4c42fb944f1ddb1a56300ca59826)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60d64c396a7e2d89b06ce18d415819e9 = L.circleMarker(\\n\",\n       \"                [30.7946, 120.744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc6ae622d1fe8abaa856cf5aebbaccb6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24de0d96e783e2a3d4670441f928f358 = $(`&lt;div id=&quot;html_24de0d96e783e2a3d4670441f928f358&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.744             latitude:30.7946             pred_result:47.054927825927734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc6ae622d1fe8abaa856cf5aebbaccb6.setContent(html_24de0d96e783e2a3d4670441f928f358);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60d64c396a7e2d89b06ce18d415819e9.bindPopup(popup_cc6ae622d1fe8abaa856cf5aebbaccb6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59445597d75bd51d07ecc0a737444ee2 = L.circleMarker(\\n\",\n       \"                [30.7478, 120.726],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55d0a4d9a65d544c33e7eee1054736d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9988f30c7d28da077605909044d1675 = $(`&lt;div id=&quot;html_c9988f30c7d28da077605909044d1675&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.726             latitude:30.7478             pred_result:42.373863220214844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55d0a4d9a65d544c33e7eee1054736d4.setContent(html_c9988f30c7d28da077605909044d1675);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59445597d75bd51d07ecc0a737444ee2.bindPopup(popup_55d0a4d9a65d544c33e7eee1054736d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d11e72ca9be00f3e136c7651d8f90f83 = L.circleMarker(\\n\",\n       \"                [28.6459, 121.273],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c521387be3a039d3cfff762996895a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8bfe134292825576ee6211fa2701cad = $(`&lt;div id=&quot;html_e8bfe134292825576ee6211fa2701cad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.273             latitude:28.6459             pred_result:32.99815368652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c521387be3a039d3cfff762996895a2.setContent(html_e8bfe134292825576ee6211fa2701cad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d11e72ca9be00f3e136c7651d8f90f83.bindPopup(popup_5c521387be3a039d3cfff762996895a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98d42193fa2acfa29444fe084b7360f3 = L.circleMarker(\\n\",\n       \"                [28.6542, 121.419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f062f57aeb671c4284114cd538cfbd2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e45e226d0d112541b8876bb8a7cc63a2 = $(`&lt;div id=&quot;html_e45e226d0d112541b8876bb8a7cc63a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.419             latitude:28.6542             pred_result:31.773595809936523             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f062f57aeb671c4284114cd538cfbd2a.setContent(html_e45e226d0d112541b8876bb8a7cc63a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98d42193fa2acfa29444fe084b7360f3.bindPopup(popup_f062f57aeb671c4284114cd538cfbd2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3050305b01398b58f1a7c4a5c16a4e8a = L.circleMarker(\\n\",\n       \"                [28.5773, 121.377],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27f8403479f7dda780909925653b3c8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89202fb5046cf968d85f4c872320fc21 = $(`&lt;div id=&quot;html_89202fb5046cf968d85f4c872320fc21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.377             latitude:28.5773             pred_result:31.00726318359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27f8403479f7dda780909925653b3c8e.setContent(html_89202fb5046cf968d85f4c872320fc21);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3050305b01398b58f1a7c4a5c16a4e8a.bindPopup(popup_27f8403479f7dda780909925653b3c8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6473b9578bed1c5b0c420457fe2c39e2 = L.circleMarker(\\n\",\n       \"                [29.077, 119.647],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d738f59e705155fba90493e072691a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2139d74ce05ce0d2f9f5e46b69c5b060 = $(`&lt;div id=&quot;html_2139d74ce05ce0d2f9f5e46b69c5b060&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.647             latitude:29.077             pred_result:39.713836669921875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d738f59e705155fba90493e072691a3.setContent(html_2139d74ce05ce0d2f9f5e46b69c5b060);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6473b9578bed1c5b0c420457fe2c39e2.bindPopup(popup_9d738f59e705155fba90493e072691a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f588b8e9cc1e4a8e0f12262059bf9df8 = L.circleMarker(\\n\",\n       \"                [29.1029, 119.686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a85d3d31ab359a1d2e9d8620c787bada = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c95255f1237fc15d2cb3b97441e0eaf = $(`&lt;div id=&quot;html_5c95255f1237fc15d2cb3b97441e0eaf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.686             latitude:29.1029             pred_result:39.48004913330078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a85d3d31ab359a1d2e9d8620c787bada.setContent(html_5c95255f1237fc15d2cb3b97441e0eaf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f588b8e9cc1e4a8e0f12262059bf9df8.bindPopup(popup_a85d3d31ab359a1d2e9d8620c787bada)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa630582037efa1ab9575b0682f908c8 = L.circleMarker(\\n\",\n       \"                [28.9404, 118.871],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_724308782a90016ab5bd9cb803806ede = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ee4a3a74abc4b516607776100f8885b = $(`&lt;div id=&quot;html_5ee4a3a74abc4b516607776100f8885b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.871             latitude:28.9404             pred_result:42.10111999511719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_724308782a90016ab5bd9cb803806ede.setContent(html_5ee4a3a74abc4b516607776100f8885b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa630582037efa1ab9575b0682f908c8.bindPopup(popup_724308782a90016ab5bd9cb803806ede)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78ea3fcd62c8791f42e3e41b6061fbc1 = L.circleMarker(\\n\",\n       \"                [28.9664, 118.871],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32130d579149017f6ab63dbb895670d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_344a25cee5c90b3a5a0f4bf2dfacf2f3 = $(`&lt;div id=&quot;html_344a25cee5c90b3a5a0f4bf2dfacf2f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.871             latitude:28.9664             pred_result:42.53839874267578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32130d579149017f6ab63dbb895670d2.setContent(html_344a25cee5c90b3a5a0f4bf2dfacf2f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78ea3fcd62c8791f42e3e41b6061fbc1.bindPopup(popup_32130d579149017f6ab63dbb895670d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4cc0cd4c5b763fac0c6a8cc8be0e431a = L.circleMarker(\\n\",\n       \"                [28.9745, 118.855],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ae17a677d88a192324bd223c0bd4bc6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eef19beb51aee756f86df1ab35a52fa7 = $(`&lt;div id=&quot;html_eef19beb51aee756f86df1ab35a52fa7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.855             latitude:28.9745             pred_result:43.324493408203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ae17a677d88a192324bd223c0bd4bc6.setContent(html_eef19beb51aee756f86df1ab35a52fa7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4cc0cd4c5b763fac0c6a8cc8be0e431a.bindPopup(popup_3ae17a677d88a192324bd223c0bd4bc6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be2fd737efa19286d76a7108d1afb037 = L.circleMarker(\\n\",\n       \"                [28.4514, 119.914],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2570198c8a7da84e0cba6c1473241ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fce8163ac364eb2e00d32245a345ea2d = $(`&lt;div id=&quot;html_fce8163ac364eb2e00d32245a345ea2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.914             latitude:28.4514             pred_result:33.42402267456055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2570198c8a7da84e0cba6c1473241ff.setContent(html_fce8163ac364eb2e00d32245a345ea2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be2fd737efa19286d76a7108d1afb037.bindPopup(popup_b2570198c8a7da84e0cba6c1473241ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ab325778ab728481f0623b4f6ecbfc1 = L.circleMarker(\\n\",\n       \"                [28.4586, 119.93],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61bec5c5655923c7648a327be7a855cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56ed56c43d6ff4b83b5d1749be8130c6 = $(`&lt;div id=&quot;html_56ed56c43d6ff4b83b5d1749be8130c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.93             latitude:28.4586             pred_result:32.675411224365234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61bec5c5655923c7648a327be7a855cd.setContent(html_56ed56c43d6ff4b83b5d1749be8130c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ab325778ab728481f0623b4f6ecbfc1.bindPopup(popup_61bec5c5655923c7648a327be7a855cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7395be758ced3526054bf7734e1a547 = L.circleMarker(\\n\",\n       \"                [28.4231, 119.879],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4245a6e48112edc85353bc1eb9565f83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f1528ea62b9fa9f442c6a5221d35e1e = $(`&lt;div id=&quot;html_6f1528ea62b9fa9f442c6a5221d35e1e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.879             latitude:28.4231             pred_result:30.44378662109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4245a6e48112edc85353bc1eb9565f83.setContent(html_6f1528ea62b9fa9f442c6a5221d35e1e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7395be758ced3526054bf7734e1a547.bindPopup(popup_4245a6e48112edc85353bc1eb9565f83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1038680db58728f2e70a0bfa2bff4a1b = L.circleMarker(\\n\",\n       \"                [31.7848, 117.196],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1104cccb2e69f64338ae53a8bcd4ecc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18faf935c16bb0dfc7c069cb74965aeb = $(`&lt;div id=&quot;html_18faf935c16bb0dfc7c069cb74965aeb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.196             latitude:31.7848             pred_result:51.446372985839844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1104cccb2e69f64338ae53a8bcd4ecc.setContent(html_18faf935c16bb0dfc7c069cb74965aeb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1038680db58728f2e70a0bfa2bff4a1b.bindPopup(popup_a1104cccb2e69f64338ae53a8bcd4ecc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06756bf799101137afaa3e5500c4a6a5 = L.circleMarker(\\n\",\n       \"                [31.8766, 117.307],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3253c9954c4eff67f876d0acc3103c84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_caed6a9042750a83f8163ecccd15eca9 = $(`&lt;div id=&quot;html_caed6a9042750a83f8163ecccd15eca9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.307             latitude:31.8766             pred_result:47.8248405456543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3253c9954c4eff67f876d0acc3103c84.setContent(html_caed6a9042750a83f8163ecccd15eca9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06756bf799101137afaa3e5500c4a6a5.bindPopup(popup_3253c9954c4eff67f876d0acc3103c84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d55ce31970e42b8329218fca84da0e3 = L.circleMarker(\\n\",\n       \"                [31.8706, 117.259],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94be7ac69d7c3f804d668e86b882a7e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd3a8a1cb6cf66cf138c6b466d27076d = $(`&lt;div id=&quot;html_dd3a8a1cb6cf66cf138c6b466d27076d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.259             latitude:31.8706             pred_result:48.498783111572266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94be7ac69d7c3f804d668e86b882a7e9.setContent(html_dd3a8a1cb6cf66cf138c6b466d27076d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d55ce31970e42b8329218fca84da0e3.bindPopup(popup_94be7ac69d7c3f804d668e86b882a7e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e8ece04d0ea266703a834c924fa98bc = L.circleMarker(\\n\",\n       \"                [31.9051, 117.16],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09f7d68d8c1295e38f5b4226393e89fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57efb37bfd824bd5d5fe18f06dda86b0 = $(`&lt;div id=&quot;html_57efb37bfd824bd5d5fe18f06dda86b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.16             latitude:31.9051             pred_result:48.190303802490234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09f7d68d8c1295e38f5b4226393e89fb.setContent(html_57efb37bfd824bd5d5fe18f06dda86b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e8ece04d0ea266703a834c924fa98bc.bindPopup(popup_09f7d68d8c1295e38f5b4226393e89fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_604a7a45851995e165a5659b3fd937c2 = L.circleMarker(\\n\",\n       \"                [31.8572, 117.25],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfd24158d2f87b663db5c114553df6bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b03f9658ec1b93e6a5a20456d5d0ce40 = $(`&lt;div id=&quot;html_b03f9658ec1b93e6a5a20456d5d0ce40&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.25             latitude:31.8572             pred_result:47.24846649169922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfd24158d2f87b663db5c114553df6bd.setContent(html_b03f9658ec1b93e6a5a20456d5d0ce40);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_604a7a45851995e165a5659b3fd937c2.bindPopup(popup_bfd24158d2f87b663db5c114553df6bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59ac63241f865c85a9115a21e4eea408 = L.circleMarker(\\n\",\n       \"                [31.9438, 117.266],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9402ef22b91890da00698cbd3282fab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee834ef39b78ab47c2843fb4df12e0dc = $(`&lt;div id=&quot;html_ee834ef39b78ab47c2843fb4df12e0dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.266             latitude:31.9438             pred_result:45.858856201171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9402ef22b91890da00698cbd3282fab.setContent(html_ee834ef39b78ab47c2843fb4df12e0dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59ac63241f865c85a9115a21e4eea408.bindPopup(popup_a9402ef22b91890da00698cbd3282fab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_031a7256c3a1657d33c3cc3cc9a492ea = L.circleMarker(\\n\",\n       \"                [31.8585, 117.336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2259120d727a71d71a897972b417e06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d6e08c176de51893be85ed4bd28963f = $(`&lt;div id=&quot;html_9d6e08c176de51893be85ed4bd28963f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.336             latitude:31.8585             pred_result:48.24122619628906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2259120d727a71d71a897972b417e06.setContent(html_9d6e08c176de51893be85ed4bd28963f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_031a7256c3a1657d33c3cc3cc9a492ea.bindPopup(popup_e2259120d727a71d71a897972b417e06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63cba1d7636009eee4aae1cf13d1aa94 = L.circleMarker(\\n\",\n       \"                [31.7956, 117.302],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7af44ac5e8154be316121e7dc8d30323 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e1eee69c3d1d6e42339c3321bb5605c = $(`&lt;div id=&quot;html_2e1eee69c3d1d6e42339c3321bb5605c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.302             latitude:31.7956             pred_result:53.529876708984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7af44ac5e8154be316121e7dc8d30323.setContent(html_2e1eee69c3d1d6e42339c3321bb5605c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63cba1d7636009eee4aae1cf13d1aa94.bindPopup(popup_7af44ac5e8154be316121e7dc8d30323)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87306004a236188c14d5e29f72552617 = L.circleMarker(\\n\",\n       \"                [31.7386, 117.278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03e156d37bdf6b893fff70214a4670c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c3325239d541d2ab9ff971d19ba2f43 = $(`&lt;div id=&quot;html_7c3325239d541d2ab9ff971d19ba2f43&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.278             latitude:31.7386             pred_result:51.18573760986328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03e156d37bdf6b893fff70214a4670c5.setContent(html_7c3325239d541d2ab9ff971d19ba2f43);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87306004a236188c14d5e29f72552617.bindPopup(popup_03e156d37bdf6b893fff70214a4670c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18688fe99a7c2557b244667a08048007 = L.circleMarker(\\n\",\n       \"                [31.8516, 117.124],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82dd85f7f8ff7532f9b4ed5aa874841b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9cc9d21fb2f956d4847839a81a6c4cbe = $(`&lt;div id=&quot;html_9cc9d21fb2f956d4847839a81a6c4cbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.124             latitude:31.8516             pred_result:49.142845153808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82dd85f7f8ff7532f9b4ed5aa874841b.setContent(html_9cc9d21fb2f956d4847839a81a6c4cbe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18688fe99a7c2557b244667a08048007.bindPopup(popup_82dd85f7f8ff7532f9b4ed5aa874841b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa3b1a433ff978657f32f2a87e57de7b = L.circleMarker(\\n\",\n       \"                [26.0542, 119.389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e4779777d72e2ecb9200893d9da646a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3845926f4f1d9c6740d3d0965fade25d = $(`&lt;div id=&quot;html_3845926f4f1d9c6740d3d0965fade25d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.389             latitude:26.0542             pred_result:26.40393829345703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e4779777d72e2ecb9200893d9da646a.setContent(html_3845926f4f1d9c6740d3d0965fade25d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa3b1a433ff978657f32f2a87e57de7b.bindPopup(popup_2e4779777d72e2ecb9200893d9da646a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56915e3fc0f6682dc8cc15222d4e896b = L.circleMarker(\\n\",\n       \"                [26.0392, 119.303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e7626bf1bfbc81be67ddaf3750c44e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_494027334868df90adee86166bb375d7 = $(`&lt;div id=&quot;html_494027334868df90adee86166bb375d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.303             latitude:26.0392             pred_result:26.939903259277344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e7626bf1bfbc81be67ddaf3750c44e7.setContent(html_494027334868df90adee86166bb375d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56915e3fc0f6682dc8cc15222d4e896b.bindPopup(popup_2e7626bf1bfbc81be67ddaf3750c44e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_623c2e934f68c539e7121c3fc3548cb8 = L.circleMarker(\\n\",\n       \"                [26.1092, 119.299],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7509323a1681fced1ecb5700f4c97589 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8439bf94a939c05d859e97d85fd24171 = $(`&lt;div id=&quot;html_8439bf94a939c05d859e97d85fd24171&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.299             latitude:26.1092             pred_result:29.000667572021484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7509323a1681fced1ecb5700f4c97589.setContent(html_8439bf94a939c05d859e97d85fd24171);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_623c2e934f68c539e7121c3fc3548cb8.bindPopup(popup_7509323a1681fced1ecb5700f4c97589)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5284077bb303f4d90556fb83df9b0d8b = L.circleMarker(\\n\",\n       \"                [26.0797, 119.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0b3057c35e3c8e224144b146bc1f255 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67d02c7abac95e70805e096abc2d6fb2 = $(`&lt;div id=&quot;html_67d02c7abac95e70805e096abc2d6fb2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.268             latitude:26.0797             pred_result:28.199691772460938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0b3057c35e3c8e224144b146bc1f255.setContent(html_67d02c7abac95e70805e096abc2d6fb2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5284077bb303f4d90556fb83df9b0d8b.bindPopup(popup_c0b3057c35e3c8e224144b146bc1f255)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d5a594553aed5df8606771b3eb2e2fe6 = L.circleMarker(\\n\",\n       \"                [26.0753, 119.315],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86f6392a5a70ec0bfe91d68dfd6d4997 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61f222a80b663c3a0b0fa60862883db0 = $(`&lt;div id=&quot;html_61f222a80b663c3a0b0fa60862883db0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.315             latitude:26.0753             pred_result:28.35030746459961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86f6392a5a70ec0bfe91d68dfd6d4997.setContent(html_61f222a80b663c3a0b0fa60862883db0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d5a594553aed5df8606771b3eb2e2fe6.bindPopup(popup_86f6392a5a70ec0bfe91d68dfd6d4997)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ba08d0f6f769f996b55509544007318 = L.circleMarker(\\n\",\n       \"                [24.81805556, 118.1569444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68d5718a81e7126064aae7e7303ba1df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c19f09baba6bbf670c672211dc838182 = $(`&lt;div id=&quot;html_c19f09baba6bbf670c672211dc838182&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1569444             latitude:24.81805556             pred_result:26.528766632080078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68d5718a81e7126064aae7e7303ba1df.setContent(html_c19f09baba6bbf670c672211dc838182);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ba08d0f6f769f996b55509544007318.bindPopup(popup_68d5718a81e7126064aae7e7303ba1df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c85073c3a6f24e3868216e4f5a160df2 = L.circleMarker(\\n\",\n       \"                [24.44583333, 118.0636111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65126719b56152613a3d79d92080a803 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e501120ec9a81d7df5743390595cf121 = $(`&lt;div id=&quot;html_e501120ec9a81d7df5743390595cf121&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0636111             latitude:24.44583333             pred_result:27.76105499267578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65126719b56152613a3d79d92080a803.setContent(html_e501120ec9a81d7df5743390595cf121);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c85073c3a6f24e3868216e4f5a160df2.bindPopup(popup_65126719b56152613a3d79d92080a803)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94085f34b613450fb8a8e66f49616613 = L.circleMarker(\\n\",\n       \"                [28.6844, 115.893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4fd7a15f73b86dab020cb2df2f6657cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_424613e2485d2e6ee2c62cc6b6e44fd9 = $(`&lt;div id=&quot;html_424613e2485d2e6ee2c62cc6b6e44fd9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.893             latitude:28.6844             pred_result:59.456787109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4fd7a15f73b86dab020cb2df2f6657cf.setContent(html_424613e2485d2e6ee2c62cc6b6e44fd9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94085f34b613450fb8a8e66f49616613.bindPopup(popup_4fd7a15f73b86dab020cb2df2f6657cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_02fc5ddd2e4cc8c03e1548067803edda = L.circleMarker(\\n\",\n       \"                [28.6839, 115.8886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66823cf6385223ddb29c65b26f8af865 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78af024f7d682d777d3bfd846467a230 = $(`&lt;div id=&quot;html_78af024f7d682d777d3bfd846467a230&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8886             latitude:28.6839             pred_result:59.04242706298828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66823cf6385223ddb29c65b26f8af865.setContent(html_78af024f7d682d777d3bfd846467a230);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_02fc5ddd2e4cc8c03e1548067803edda.bindPopup(popup_66823cf6385223ddb29c65b26f8af865)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d26fe2346339502219ca2596cd4365de = L.circleMarker(\\n\",\n       \"                [28.7442, 115.813],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5edb93526a37838044d1542a00606c2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b90c028e588b6268c2ac0f0c6ad9505d = $(`&lt;div id=&quot;html_b90c028e588b6268c2ac0f0c6ad9505d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.813             latitude:28.7442             pred_result:59.280723571777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5edb93526a37838044d1542a00606c2a.setContent(html_b90c028e588b6268c2ac0f0c6ad9505d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d26fe2346339502219ca2596cd4365de.bindPopup(popup_5edb93526a37838044d1542a00606c2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5efe8eedb54afe9990177c79716ebd3e = L.circleMarker(\\n\",\n       \"                [28.6969, 115.973],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff01193a0d119f1c3a77be16229ab0dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f76b6ae7f2793f27612540a5e1d4848 = $(`&lt;div id=&quot;html_5f76b6ae7f2793f27612540a5e1d4848&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.973             latitude:28.6969             pred_result:59.03070068359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff01193a0d119f1c3a77be16229ab0dc.setContent(html_5f76b6ae7f2793f27612540a5e1d4848);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5efe8eedb54afe9990177c79716ebd3e.bindPopup(popup_ff01193a0d119f1c3a77be16229ab0dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b8f66ecd0685a81cde2ffb0693d3993 = L.circleMarker(\\n\",\n       \"                [28.6869, 115.852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0ba5dfe785fcbe8c14b19b9a0a1b55fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5268f4adc83c28defa0787aa30627537 = $(`&lt;div id=&quot;html_5268f4adc83c28defa0787aa30627537&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.852             latitude:28.6869             pred_result:59.488487243652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0ba5dfe785fcbe8c14b19b9a0a1b55fc.setContent(html_5268f4adc83c28defa0787aa30627537);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b8f66ecd0685a81cde2ffb0693d3993.bindPopup(popup_0ba5dfe785fcbe8c14b19b9a0a1b55fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc0d36cc4cef9519f991e6ebfa73323f = L.circleMarker(\\n\",\n       \"                [28.6425, 115.892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a6a793c114f5265e1de4234daf11717 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c13a3c42b95e9f93e4fe184ca975b91c = $(`&lt;div id=&quot;html_c13a3c42b95e9f93e4fe184ca975b91c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.892             latitude:28.6425             pred_result:58.98963165283203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a6a793c114f5265e1de4234daf11717.setContent(html_c13a3c42b95e9f93e4fe184ca975b91c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc0d36cc4cef9519f991e6ebfa73323f.bindPopup(popup_0a6a793c114f5265e1de4234daf11717)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c57a7a3fbd62e6bf9a3a6c6ce3d4707c = L.circleMarker(\\n\",\n       \"                [28.7994, 115.742],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4b9c533477a744d226855581e417b487 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_239605d592e3de477d90d9ccc2cc0382 = $(`&lt;div id=&quot;html_239605d592e3de477d90d9ccc2cc0382&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.742             latitude:28.7994             pred_result:57.867740631103516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4b9c533477a744d226855581e417b487.setContent(html_239605d592e3de477d90d9ccc2cc0382);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c57a7a3fbd62e6bf9a3a6c6ce3d4707c.bindPopup(popup_4b9c533477a744d226855581e417b487)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67cdec3cabe0d8f74e752db817afaec0 = L.circleMarker(\\n\",\n       \"                [28.6844, 115.931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de0beac4cbe140779b3bfa9cffe5bfa9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1b8dde973abdf1611079db90ab0f6d4 = $(`&lt;div id=&quot;html_e1b8dde973abdf1611079db90ab0f6d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.931             latitude:28.6844             pred_result:59.11040496826172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de0beac4cbe140779b3bfa9cffe5bfa9.setContent(html_e1b8dde973abdf1611079db90ab0f6d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67cdec3cabe0d8f74e752db817afaec0.bindPopup(popup_de0beac4cbe140779b3bfa9cffe5bfa9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63d856b70469a233faaf5d3450e12a74 = L.circleMarker(\\n\",\n       \"                [36.6114, 116.988],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_923a5748bfcc6ab018562711fd9d0e1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba2eb590df55ab7250628a47246ec756 = $(`&lt;div id=&quot;html_ba2eb590df55ab7250628a47246ec756&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.988             latitude:36.6114             pred_result:53.993900299072266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_923a5748bfcc6ab018562711fd9d0e1b.setContent(html_ba2eb590df55ab7250628a47246ec756);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63d856b70469a233faaf5d3450e12a74.bindPopup(popup_923a5748bfcc6ab018562711fd9d0e1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9821167ffa16852f398cb26493acf832 = L.circleMarker(\\n\",\n       \"                [36.67, 116.93],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ef88de943875609f1f996cbab9fa80b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aacf2fb2c57b6155e4cee9148118f119 = $(`&lt;div id=&quot;html_aacf2fb2c57b6155e4cee9148118f119&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.93             latitude:36.67             pred_result:55.56155014038086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ef88de943875609f1f996cbab9fa80b.setContent(html_aacf2fb2c57b6155e4cee9148118f119);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9821167ffa16852f398cb26493acf832.bindPopup(popup_3ef88de943875609f1f996cbab9fa80b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74d45b2d4d1e2d893c28be55c4c30dcb = L.circleMarker(\\n\",\n       \"                [36.6739, 117.114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ef6f903c5861f0fee46df148f50c991 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_496e5573a73ca88841ebcd1200d3b0ac = $(`&lt;div id=&quot;html_496e5573a73ca88841ebcd1200d3b0ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.114             latitude:36.6739             pred_result:52.35846710205078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ef6f903c5861f0fee46df148f50c991.setContent(html_496e5573a73ca88841ebcd1200d3b0ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74d45b2d4d1e2d893c28be55c4c30dcb.bindPopup(popup_9ef6f903c5861f0fee46df148f50c991)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f39b39340144023238315f9bbe38499f = L.circleMarker(\\n\",\n       \"                [36.6872, 116.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ece39f78991b17326b2951fea035eb44 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b939bd7252beaa4a7f8f99bdb007e098 = $(`&lt;div id=&quot;html_b939bd7252beaa4a7f8f99bdb007e098&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.989             latitude:36.6872             pred_result:55.10770797729492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ece39f78991b17326b2951fea035eb44.setContent(html_b939bd7252beaa4a7f8f99bdb007e098);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f39b39340144023238315f9bbe38499f.bindPopup(popup_ece39f78991b17326b2951fea035eb44)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d98abbf465a2b4ea63e71cd2ca9b9811 = L.circleMarker(\\n\",\n       \"                [36.6868, 117.0684],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0b83b8815c2a6c93187243613491330 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6dc31f606d00d8367f51f261bae672e1 = $(`&lt;div id=&quot;html_6dc31f606d00d8367f51f261bae672e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0684             latitude:36.6868             pred_result:53.68585205078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0b83b8815c2a6c93187243613491330.setContent(html_6dc31f606d00d8367f51f261bae672e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d98abbf465a2b4ea63e71cd2ca9b9811.bindPopup(popup_e0b83b8815c2a6c93187243613491330)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b810707a79e7a0a4f1210e2a3afad58 = L.circleMarker(\\n\",\n       \"                [36.6489, 116.943],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d71d445cb90ffe996aecab44f3c22744 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_706098f2e232503c66e5281883c80962 = $(`&lt;div id=&quot;html_706098f2e232503c66e5281883c80962&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.943             latitude:36.6489             pred_result:55.579566955566406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d71d445cb90ffe996aecab44f3c22744.setContent(html_706098f2e232503c66e5281883c80962);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b810707a79e7a0a4f1210e2a3afad58.bindPopup(popup_d71d445cb90ffe996aecab44f3c22744)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_660fae471620bab696025d29b517efd1 = L.circleMarker(\\n\",\n       \"                [36.6622, 117.049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b5f4a36ae5abf881d3131abe07d5a12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72b3f487a9895dd24794eb65dfc8ca78 = $(`&lt;div id=&quot;html_72b3f487a9895dd24794eb65dfc8ca78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.049             latitude:36.6622             pred_result:54.98207473754883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b5f4a36ae5abf881d3131abe07d5a12.setContent(html_72b3f487a9895dd24794eb65dfc8ca78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_660fae471620bab696025d29b517efd1.bindPopup(popup_1b5f4a36ae5abf881d3131abe07d5a12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3fd6a789f3ef2433699b6f2ba63e3ec6 = L.circleMarker(\\n\",\n       \"                [36.5336, 116.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe84349b0178ea0609616df3a22e0589 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_432b5f6cc5ed4ad03be8204223bc294b = $(`&lt;div id=&quot;html_432b5f6cc5ed4ad03be8204223bc294b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.734             latitude:36.5336             pred_result:58.01953887939453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe84349b0178ea0609616df3a22e0589.setContent(html_432b5f6cc5ed4ad03be8204223bc294b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3fd6a789f3ef2433699b6f2ba63e3ec6.bindPopup(popup_fe84349b0178ea0609616df3a22e0589)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0efcda981b79267eae5ce7594b4807d0 = L.circleMarker(\\n\",\n       \"                [36.1851, 120.3905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68eea06601e4690ccec5b4cf6cea31ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13e4d11902c01a459c8ee526d7c2f4ff = $(`&lt;div id=&quot;html_13e4d11902c01a459c8ee526d7c2f4ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.3905             latitude:36.1851             pred_result:16.630889892578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68eea06601e4690ccec5b4cf6cea31ce.setContent(html_13e4d11902c01a459c8ee526d7c2f4ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0efcda981b79267eae5ce7594b4807d0.bindPopup(popup_68eea06601e4690ccec5b4cf6cea31ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63a970689bc9b5747887b7f9fdbc2231 = L.circleMarker(\\n\",\n       \"                [36.3083, 120.1964],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d2eb3107f1a5c0e7043b9c97a9df0bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21d818e27b418f549807ffd3f0235acc = $(`&lt;div id=&quot;html_21d818e27b418f549807ffd3f0235acc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1964             latitude:36.3083             pred_result:13.960992813110352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d2eb3107f1a5c0e7043b9c97a9df0bc.setContent(html_21d818e27b418f549807ffd3f0235acc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63a970689bc9b5747887b7f9fdbc2231.bindPopup(popup_0d2eb3107f1a5c0e7043b9c97a9df0bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_380ed42237b80dae78a002422f300bcd = L.circleMarker(\\n\",\n       \"                [36.2403, 120.4001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2bde93e076a86054b212c47dd68b037b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17839202e172907af8f6d84edef54268 = $(`&lt;div id=&quot;html_17839202e172907af8f6d84edef54268&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4001             latitude:36.2403             pred_result:16.571067810058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2bde93e076a86054b212c47dd68b037b.setContent(html_17839202e172907af8f6d84edef54268);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_380ed42237b80dae78a002422f300bcd.bindPopup(popup_2bde93e076a86054b212c47dd68b037b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca41b1006bff96c4cb2b7766d49b8bad = L.circleMarker(\\n\",\n       \"                [34.7545, 113.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_461c3d35e4c690a24ef400016bc9a6de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5414e397e73c1e2617720b49891767e4 = $(`&lt;div id=&quot;html_5414e397e73c1e2617720b49891767e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.681             latitude:34.7545             pred_result:63.48876953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_461c3d35e4c690a24ef400016bc9a6de.setContent(html_5414e397e73c1e2617720b49891767e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca41b1006bff96c4cb2b7766d49b8bad.bindPopup(popup_461c3d35e4c690a24ef400016bc9a6de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_570b03e972624f1c55bed4728ef6429a = L.circleMarker(\\n\",\n       \"                [34.7745, 113.641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8780c734e234ce3e34aab4e4ee442fed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2d8e7e8ba06537700ef533360adc103 = $(`&lt;div id=&quot;html_d2d8e7e8ba06537700ef533360adc103&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.641             latitude:34.7745             pred_result:64.64789581298828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8780c734e234ce3e34aab4e4ee442fed.setContent(html_d2d8e7e8ba06537700ef533360adc103);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_570b03e972624f1c55bed4728ef6429a.bindPopup(popup_8780c734e234ce3e34aab4e4ee442fed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7611f75b73b22b38dfeca66a4576da39 = L.circleMarker(\\n\",\n       \"                [34.8019, 113.675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5f48d6f126c412a939d5e9a81642790 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_316be2665ae57176fc4a395469218c96 = $(`&lt;div id=&quot;html_316be2665ae57176fc4a395469218c96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.675             latitude:34.8019             pred_result:63.90216827392578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5f48d6f126c412a939d5e9a81642790.setContent(html_316be2665ae57176fc4a395469218c96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7611f75b73b22b38dfeca66a4576da39.bindPopup(popup_e5f48d6f126c412a939d5e9a81642790)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d6fe3f6ac8347a14bf632a34304a821 = L.circleMarker(\\n\",\n       \"                [34.802, 113.564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_93765b354e71e6379606b59df3626d02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_341084b1a8e9f125165a451088740958 = $(`&lt;div id=&quot;html_341084b1a8e9f125165a451088740958&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.564             latitude:34.802             pred_result:64.01850128173828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_93765b354e71e6379606b59df3626d02.setContent(html_341084b1a8e9f125165a451088740958);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d6fe3f6ac8347a14bf632a34304a821.bindPopup(popup_93765b354e71e6379606b59df3626d02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ff176396153b5db900dc9fbf4a2b62c = L.circleMarker(\\n\",\n       \"                [34.7187, 113.727],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bec0d312a56e44f0de0245d262769f1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e505fc99e2196268b6e7817714c803ab = $(`&lt;div id=&quot;html_e505fc99e2196268b6e7817714c803ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.727             latitude:34.7187             pred_result:63.63761901855469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bec0d312a56e44f0de0245d262769f1d.setContent(html_e505fc99e2196268b6e7817714c803ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ff176396153b5db900dc9fbf4a2b62c.bindPopup(popup_bec0d312a56e44f0de0245d262769f1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ede6c6a015be7dd066a4a077d8ef8bf4 = L.circleMarker(\\n\",\n       \"                [34.719, 113.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb7760040683d9c6fbce1ba84aa4bd51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_979ea2a2255e849a2cf13377be606419 = $(`&lt;div id=&quot;html_979ea2a2255e849a2cf13377be606419&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.734             latitude:34.719             pred_result:63.60750198364258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb7760040683d9c6fbce1ba84aa4bd51.setContent(html_979ea2a2255e849a2cf13377be606419);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ede6c6a015be7dd066a4a077d8ef8bf4.bindPopup(popup_bb7760040683d9c6fbce1ba84aa4bd51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f523eb973eb45456aa4e98201d9077c = L.circleMarker(\\n\",\n       \"                [34.7496, 113.5991],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd2acf12348055640a43db8080c44be1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1dfc81d8fa155bfa2eb768cd5a13c246 = $(`&lt;div id=&quot;html_1dfc81d8fa155bfa2eb768cd5a13c246&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5991             latitude:34.7496             pred_result:63.642051696777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd2acf12348055640a43db8080c44be1.setContent(html_1dfc81d8fa155bfa2eb768cd5a13c246);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f523eb973eb45456aa4e98201d9077c.bindPopup(popup_bd2acf12348055640a43db8080c44be1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59b796e639c87ea84330fa85a444f789 = L.circleMarker(\\n\",\n       \"                [34.7538, 113.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a8b61134d7b5f6f4eea5bf4a7b89382 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_294cf955e6e5350efbe7838e765d87ae = $(`&lt;div id=&quot;html_294cf955e6e5350efbe7838e765d87ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6356             latitude:34.7538             pred_result:64.01485443115234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a8b61134d7b5f6f4eea5bf4a7b89382.setContent(html_294cf955e6e5350efbe7838e765d87ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59b796e639c87ea84330fa85a444f789.bindPopup(popup_0a8b61134d7b5f6f4eea5bf4a7b89382)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58ce588de3f71333fe5199b29d8723a3 = L.circleMarker(\\n\",\n       \"                [34.9162, 113.6113],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3bd6c3bcb013fc81357a0ddeccdf5d61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c52261a06de66b335443a1693f430ec = $(`&lt;div id=&quot;html_1c52261a06de66b335443a1693f430ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6113             latitude:34.9162             pred_result:67.80889892578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3bd6c3bcb013fc81357a0ddeccdf5d61.setContent(html_1c52261a06de66b335443a1693f430ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58ce588de3f71333fe5199b29d8723a3.bindPopup(popup_3bd6c3bcb013fc81357a0ddeccdf5d61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60f41b2e1d66073fd73a86ba2a1aae0b = L.circleMarker(\\n\",\n       \"                [30.5719, 114.3672],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22f439487b026e32fb2bfca51fb6871c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4469af5241993b6b1aa2223c3c7e8775 = $(`&lt;div id=&quot;html_4469af5241993b6b1aa2223c3c7e8775&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3672             latitude:30.5719             pred_result:65.54843139648438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22f439487b026e32fb2bfca51fb6871c.setContent(html_4469af5241993b6b1aa2223c3c7e8775);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60f41b2e1d66073fd73a86ba2a1aae0b.bindPopup(popup_22f439487b026e32fb2bfca51fb6871c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12366eca76c5f45ca7ff7e6df696c258 = L.circleMarker(\\n\",\n       \"                [30.5514, 114.2511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_162dfb513ca5adb045cd873fe91ab70c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67645aaffd3552aee9791480e990d8d1 = $(`&lt;div id=&quot;html_67645aaffd3552aee9791480e990d8d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2511             latitude:30.5514             pred_result:64.78080749511719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_162dfb513ca5adb045cd873fe91ab70c.setContent(html_67645aaffd3552aee9791480e990d8d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12366eca76c5f45ca7ff7e6df696c258.bindPopup(popup_162dfb513ca5adb045cd873fe91ab70c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38fcd68273a908c3883aec1cfbef5aab = L.circleMarker(\\n\",\n       \"                [30.6197, 114.2836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e0ed17c665dc4d2c8360f308718c154 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7c4018a0fa6bb8623089963fc463256 = $(`&lt;div id=&quot;html_d7c4018a0fa6bb8623089963fc463256&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2836             latitude:30.6197             pred_result:64.30497741699219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e0ed17c665dc4d2c8360f308718c154.setContent(html_d7c4018a0fa6bb8623089963fc463256);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38fcd68273a908c3883aec1cfbef5aab.bindPopup(popup_1e0ed17c665dc4d2c8360f308718c154)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5c3f54ab6e44bfb7c5b94492452d527 = L.circleMarker(\\n\",\n       \"                [30.5494, 114.3006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d17b5c2260956baaba5eabc6a6dc9fcb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56a5bb42ad0f9411cf6585f862897cbc = $(`&lt;div id=&quot;html_56a5bb42ad0f9411cf6585f862897cbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3006             latitude:30.5494             pred_result:65.3635482788086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d17b5c2260956baaba5eabc6a6dc9fcb.setContent(html_56a5bb42ad0f9411cf6585f862897cbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5c3f54ab6e44bfb7c5b94492452d527.bindPopup(popup_d17b5c2260956baaba5eabc6a6dc9fcb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfa3afb187866780e7453c6bc849dbe5 = L.circleMarker(\\n\",\n       \"                [30.6103, 114.4272],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_abd4facef2879a3c64f4fc6f66c5feb5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_936081450165e085b6a50760e45dd190 = $(`&lt;div id=&quot;html_936081450165e085b6a50760e45dd190&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4272             latitude:30.6103             pred_result:63.90412139892578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_abd4facef2879a3c64f4fc6f66c5feb5.setContent(html_936081450165e085b6a50760e45dd190);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfa3afb187866780e7453c6bc849dbe5.bindPopup(popup_abd4facef2879a3c64f4fc6f66c5feb5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93d4b3319de857f08bea495afa45393d = L.circleMarker(\\n\",\n       \"                [30.4753, 114.1525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b25b78d72630081ad674925a70b9fd7c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23972ead942cdf3b4c32e3066750033a = $(`&lt;div id=&quot;html_23972ead942cdf3b4c32e3066750033a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1525             latitude:30.4753             pred_result:66.24251556396484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b25b78d72630081ad674925a70b9fd7c.setContent(html_23972ead942cdf3b4c32e3066750033a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93d4b3319de857f08bea495afa45393d.bindPopup(popup_b25b78d72630081ad674925a70b9fd7c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7075ada7834ee9e835aeb5ef30b3d813 = L.circleMarker(\\n\",\n       \"                [30.5947, 114.3008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0958edfeb0e39a74938045f22428b557 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_321d4f0b12dddfec5770173966bb8df9 = $(`&lt;div id=&quot;html_321d4f0b12dddfec5770173966bb8df9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3008             latitude:30.5947             pred_result:64.64288330078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0958edfeb0e39a74938045f22428b557.setContent(html_321d4f0b12dddfec5770173966bb8df9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7075ada7834ee9e835aeb5ef30b3d813.bindPopup(popup_0958edfeb0e39a74938045f22428b557)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15f9da6492ea4eedd8b66940e104a0f6 = L.circleMarker(\\n\",\n       \"                [30.4822, 114.3894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4e09b66be51188a806bf2a16cc764cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9820c14348cb5afb575028af3deaa92 = $(`&lt;div id=&quot;html_b9820c14348cb5afb575028af3deaa92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3894             latitude:30.4822             pred_result:66.62477111816406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4e09b66be51188a806bf2a16cc764cc.setContent(html_b9820c14348cb5afb575028af3deaa92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15f9da6492ea4eedd8b66940e104a0f6.bindPopup(popup_d4e09b66be51188a806bf2a16cc764cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2506305c47eae9f94e80bc4f20dda9a9 = L.circleMarker(\\n\",\n       \"                [30.6414, 114.2131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_405f79f13f6466744651d6bb63282672 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52a8292f03f0d009f35452884b791631 = $(`&lt;div id=&quot;html_52a8292f03f0d009f35452884b791631&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2131             latitude:30.6414             pred_result:63.674903869628906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_405f79f13f6466744651d6bb63282672.setContent(html_52a8292f03f0d009f35452884b791631);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2506305c47eae9f94e80bc4f20dda9a9.bindPopup(popup_405f79f13f6466744651d6bb63282672)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0826369774c2ee0554d3515324dae2cc = L.circleMarker(\\n\",\n       \"                [30.2997, 113.8531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_93f6c1d72f94397a62428ecaab441a0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b25722636ff5be177cb97b3c8e379b35 = $(`&lt;div id=&quot;html_b25722636ff5be177cb97b3c8e379b35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8531             latitude:30.2997             pred_result:66.28131103515625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_93f6c1d72f94397a62428ecaab441a0a.setContent(html_b25722636ff5be177cb97b3c8e379b35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0826369774c2ee0554d3515324dae2cc.bindPopup(popup_93f6c1d72f94397a62428ecaab441a0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e95be49d649c11981bb55adb08ee1385 = L.circleMarker(\\n\",\n       \"                [28.2325, 113.0833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82e0b070c27e0a4a2bd26497db2b6a39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b2c9033c540c2f0c2cac476bc9f3a8c = $(`&lt;div id=&quot;html_8b2c9033c540c2f0c2cac476bc9f3a8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0833             latitude:28.2325             pred_result:57.3006591796875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82e0b070c27e0a4a2bd26497db2b6a39.setContent(html_8b2c9033c540c2f0c2cac476bc9f3a8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e95be49d649c11981bb55adb08ee1385.bindPopup(popup_82e0b070c27e0a4a2bd26497db2b6a39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_854499181034dc83d61db204e7f35be7 = L.circleMarker(\\n\",\n       \"                [28.2189, 112.8872],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_621de6966ea24b64061c4a12c05186d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_20bfb209d2e07d0c5ee17ed37606c955 = $(`&lt;div id=&quot;html_20bfb209d2e07d0c5ee17ed37606c955&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8872             latitude:28.2189             pred_result:56.66501235961914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_621de6966ea24b64061c4a12c05186d3.setContent(html_20bfb209d2e07d0c5ee17ed37606c955);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_854499181034dc83d61db204e7f35be7.bindPopup(popup_621de6966ea24b64061c4a12c05186d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54f8c45c93ad39a73f1c30df7d85c471 = L.circleMarker(\\n\",\n       \"                [28.2053, 113.0792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b7d8b9f5ada59d2e5f46280a95cef6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4ae74a145b5e9e013ede91bf426c1dd = $(`&lt;div id=&quot;html_a4ae74a145b5e9e013ede91bf426c1dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0792             latitude:28.2053             pred_result:57.405189514160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b7d8b9f5ada59d2e5f46280a95cef6c.setContent(html_a4ae74a145b5e9e013ede91bf426c1dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54f8c45c93ad39a73f1c30df7d85c471.bindPopup(popup_1b7d8b9f5ada59d2e5f46280a95cef6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6bfeb25be1e6c9671ac2f751fe73a124 = L.circleMarker(\\n\",\n       \"                [28.19, 112.9394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_634457471b79944bf4cf4ef9644cef4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b3810665771c66d85165a29026af8af = $(`&lt;div id=&quot;html_1b3810665771c66d85165a29026af8af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9394             latitude:28.19             pred_result:56.67219161987305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_634457471b79944bf4cf4ef9644cef4b.setContent(html_1b3810665771c66d85165a29026af8af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6bfeb25be1e6c9671ac2f751fe73a124.bindPopup(popup_634457471b79944bf4cf4ef9644cef4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f744b424e2a443c7032a5a66e076ab6 = L.circleMarker(\\n\",\n       \"                [28.1442, 112.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab70ca88b2a6ce0a49e7c2bf64e631b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66156afb61d6c6e021164f890cfa67fa = $(`&lt;div id=&quot;html_66156afb61d6c6e021164f890cfa67fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9956             latitude:28.1442             pred_result:56.7918701171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab70ca88b2a6ce0a49e7c2bf64e631b5.setContent(html_66156afb61d6c6e021164f890cfa67fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f744b424e2a443c7032a5a66e076ab6.bindPopup(popup_ab70ca88b2a6ce0a49e7c2bf64e631b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e95d1f2b739631faf1c1a8ad962240ad = L.circleMarker(\\n\",\n       \"                [28.2597, 112.9792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_491a5499ca540293460e0ca17e36b06b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af38bde4a336617f1a1b0b2f11f518a6 = $(`&lt;div id=&quot;html_af38bde4a336617f1a1b0b2f11f518a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9792             latitude:28.2597             pred_result:57.10801315307617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_491a5499ca540293460e0ca17e36b06b.setContent(html_af38bde4a336617f1a1b0b2f11f518a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e95d1f2b739631faf1c1a8ad962240ad.bindPopup(popup_491a5499ca540293460e0ca17e36b06b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66661be6bfa98612b162e49e6a4d0442 = L.circleMarker(\\n\",\n       \"                [28.1944, 113.0014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0a0d7deb55fec48d06e8c3897ca70d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62c0148f6b542be9833d6cce5b7023cb = $(`&lt;div id=&quot;html_62c0148f6b542be9833d6cce5b7023cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0014             latitude:28.1944             pred_result:57.0980224609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0a0d7deb55fec48d06e8c3897ca70d7.setContent(html_62c0148f6b542be9833d6cce5b7023cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66661be6bfa98612b162e49e6a4d0442.bindPopup(popup_b0a0d7deb55fec48d06e8c3897ca70d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_785201466243fba454599b8c33a911b8 = L.circleMarker(\\n\",\n       \"                [28.1178, 112.9844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_075c34ef2420e821056198cdaa9dacb9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e126b5f83b66064c2eadc24ca2d2d074 = $(`&lt;div id=&quot;html_e126b5f83b66064c2eadc24ca2d2d074&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9844             latitude:28.1178             pred_result:56.31729507446289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_075c34ef2420e821056198cdaa9dacb9.setContent(html_e126b5f83b66064c2eadc24ca2d2d074);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_785201466243fba454599b8c33a911b8.bindPopup(popup_075c34ef2420e821056198cdaa9dacb9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aebde8dc99ae3e1786c6b5d3d6199cf3 = L.circleMarker(\\n\",\n       \"                [28.1308, 112.8908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b9dba85dd6906a0aab3624fd36c5658 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f96135e02a4fb62b789532d892b1769d = $(`&lt;div id=&quot;html_f96135e02a4fb62b789532d892b1769d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8908             latitude:28.1308             pred_result:56.60148239135742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b9dba85dd6906a0aab3624fd36c5658.setContent(html_f96135e02a4fb62b789532d892b1769d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aebde8dc99ae3e1786c6b5d3d6199cf3.bindPopup(popup_7b9dba85dd6906a0aab3624fd36c5658)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_287831e3625127fdeea2e8baf64d14cf = L.circleMarker(\\n\",\n       \"                [28.3586, 112.9958],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29334abf5dc7e6e3cfeba53d347645b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f693da94709643134327eb6ff7d8e124 = $(`&lt;div id=&quot;html_f693da94709643134327eb6ff7d8e124&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9958             latitude:28.3586             pred_result:57.14224624633789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29334abf5dc7e6e3cfeba53d347645b3.setContent(html_f693da94709643134327eb6ff7d8e124);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_287831e3625127fdeea2e8baf64d14cf.bindPopup(popup_29334abf5dc7e6e3cfeba53d347645b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff1f6e9dc55461be8dc6d00918bc231c = L.circleMarker(\\n\",\n       \"                [23.1422, 113.235],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8aba91e0867596c71c116a4344781392 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_415aabb91d8ad8199e5d599d91b4480d = $(`&lt;div id=&quot;html_415aabb91d8ad8199e5d599d91b4480d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.235             latitude:23.1422             pred_result:41.273406982421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8aba91e0867596c71c116a4344781392.setContent(html_415aabb91d8ad8199e5d599d91b4480d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff1f6e9dc55461be8dc6d00918bc231c.bindPopup(popup_8aba91e0867596c71c116a4344781392)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6dae789f8672dbdcfbea6c7f4c00d4ca = L.circleMarker(\\n\",\n       \"                [23.105, 113.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a9dd7c9819ec4c7b414e89fc69f3cfa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_899b5a17f74e10cb3f9259159eea67b6 = $(`&lt;div id=&quot;html_899b5a17f74e10cb3f9259159eea67b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.261             latitude:23.105             pred_result:40.938232421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a9dd7c9819ec4c7b414e89fc69f3cfa.setContent(html_899b5a17f74e10cb3f9259159eea67b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6dae789f8672dbdcfbea6c7f4c00d4ca.bindPopup(popup_4a9dd7c9819ec4c7b414e89fc69f3cfa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_008eb1d273c48ea0acedeb463a8c33ed = L.circleMarker(\\n\",\n       \"                [23.0916, 113.348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab833657ae390a162a1a4045e1586fe1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_324563c3d66e3c1d577eaa870753e5e4 = $(`&lt;div id=&quot;html_324563c3d66e3c1d577eaa870753e5e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.348             latitude:23.0916             pred_result:41.370140075683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab833657ae390a162a1a4045e1586fe1.setContent(html_324563c3d66e3c1d577eaa870753e5e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_008eb1d273c48ea0acedeb463a8c33ed.bindPopup(popup_ab833657ae390a162a1a4045e1586fe1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa14b6019212249cbd09b5b42766d507 = L.circleMarker(\\n\",\n       \"                [23.105, 113.433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa9a706a6db37ba0b5f80bad6692306f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_963e9d3e460a23d0da35f315731a7b2e = $(`&lt;div id=&quot;html_963e9d3e460a23d0da35f315731a7b2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.433             latitude:23.105             pred_result:40.899681091308594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa9a706a6db37ba0b5f80bad6692306f.setContent(html_963e9d3e460a23d0da35f315731a7b2e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa14b6019212249cbd09b5b42766d507.bindPopup(popup_aa9a706a6db37ba0b5f80bad6692306f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4325eb9bb275ae1ff8068e954d49ec28 = L.circleMarker(\\n\",\n       \"                [22.9477, 113.352],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0204c33c57f3e9af60531cb65ed595a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_32ca7c2e9bf6e6ee1d06042b2b20a5fc = $(`&lt;div id=&quot;html_32ca7c2e9bf6e6ee1d06042b2b20a5fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.352             latitude:22.9477             pred_result:40.0294303894043             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0204c33c57f3e9af60531cb65ed595a.setContent(html_32ca7c2e9bf6e6ee1d06042b2b20a5fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4325eb9bb275ae1ff8068e954d49ec28.bindPopup(popup_b0204c33c57f3e9af60531cb65ed595a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03f389f405f477bcc693cd640f46424a = L.circleMarker(\\n\",\n       \"                [23.3917, 113.215],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d21c2f2081e6b0fd1fc0cf7957e23f9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83ca4f134161f6b6289e08a350ce3459 = $(`&lt;div id=&quot;html_83ca4f134161f6b6289e08a350ce3459&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.215             latitude:23.3917             pred_result:41.590789794921875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d21c2f2081e6b0fd1fc0cf7957e23f9d.setContent(html_83ca4f134161f6b6289e08a350ce3459);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03f389f405f477bcc693cd640f46424a.bindPopup(popup_d21c2f2081e6b0fd1fc0cf7957e23f9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ae87487e7c4de06c17a861dc2e1c7a4 = L.circleMarker(\\n\",\n       \"                [23.1331, 113.26],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff91ee638854c1b6b90e0266b7d845d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d24d352994ae6e20879f2b1856e68c27 = $(`&lt;div id=&quot;html_d24d352994ae6e20879f2b1856e68c27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.26             latitude:23.1331             pred_result:42.291690826416016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff91ee638854c1b6b90e0266b7d845d5.setContent(html_d24d352994ae6e20879f2b1856e68c27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ae87487e7c4de06c17a861dc2e1c7a4.bindPopup(popup_ff91ee638854c1b6b90e0266b7d845d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_544afe8a950dd9929140aa3950e089ea = L.circleMarker(\\n\",\n       \"                [23.2783, 113.568],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a7ee8d1d5c355709cdce26d9af2ee00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3825d1be1faaee47c6389d7d0b0f6337 = $(`&lt;div id=&quot;html_3825d1be1faaee47c6389d7d0b0f6337&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.568             latitude:23.2783             pred_result:42.124305725097656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a7ee8d1d5c355709cdce26d9af2ee00.setContent(html_3825d1be1faaee47c6389d7d0b0f6337);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_544afe8a950dd9929140aa3950e089ea.bindPopup(popup_6a7ee8d1d5c355709cdce26d9af2ee00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_205342d330674af473df594070b14eaa = L.circleMarker(\\n\",\n       \"                [23.1569, 113.281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8297e9916ce05efd82a8fc1029c2904d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58e91883ecd510beeec8c0ffa64a5231 = $(`&lt;div id=&quot;html_58e91883ecd510beeec8c0ffa64a5231&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.281             latitude:23.1569             pred_result:40.95064926147461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8297e9916ce05efd82a8fc1029c2904d.setContent(html_58e91883ecd510beeec8c0ffa64a5231);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_205342d330674af473df594070b14eaa.bindPopup(popup_8297e9916ce05efd82a8fc1029c2904d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c155be8db3458123cd412da743e33a5d = L.circleMarker(\\n\",\n       \"                [23.5538, 113.589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b78c16089a3d708e7e5555a4f703d2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed51017214bf7d7ed8e805ffb2e10d1e = $(`&lt;div id=&quot;html_ed51017214bf7d7ed8e805ffb2e10d1e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.589             latitude:23.5538             pred_result:42.61470031738281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b78c16089a3d708e7e5555a4f703d2c.setContent(html_ed51017214bf7d7ed8e805ffb2e10d1e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c155be8db3458123cd412da743e33a5d.bindPopup(popup_7b78c16089a3d708e7e5555a4f703d2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67f938390b423aaf1534bc96ec3eea3c = L.circleMarker(\\n\",\n       \"                [22.5545, 114.1063],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f04fd65486cc01edb37fb403279b516 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4e03d4bf40fca54b72e605b31b3a6ad = $(`&lt;div id=&quot;html_a4e03d4bf40fca54b72e605b31b3a6ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1063             latitude:22.5545             pred_result:30.274913787841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f04fd65486cc01edb37fb403279b516.setContent(html_a4e03d4bf40fca54b72e605b31b3a6ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67f938390b423aaf1534bc96ec3eea3c.bindPopup(popup_2f04fd65486cc01edb37fb403279b516)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_002f87a846a2ec53f7b71301c7693343 = L.circleMarker(\\n\",\n       \"                [22.5625, 114.117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bea6138c8f0829db67d7bb3abd30ddaa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0e6f2a7db7774ad614c88fac9d2af05 = $(`&lt;div id=&quot;html_b0e6f2a7db7774ad614c88fac9d2af05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.117             latitude:22.5625             pred_result:29.854970932006836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bea6138c8f0829db67d7bb3abd30ddaa.setContent(html_b0e6f2a7db7774ad614c88fac9d2af05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_002f87a846a2ec53f7b71301c7693343.bindPopup(popup_bea6138c8f0829db67d7bb3abd30ddaa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc4fcca2f1c967d6cb36a2d2f168a33f = L.circleMarker(\\n\",\n       \"                [22.5908, 114.263],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0dcd3c43775315f883ca887274da0dfe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_754c1827195366649387e596a79cc392 = $(`&lt;div id=&quot;html_754c1827195366649387e596a79cc392&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.263             latitude:22.5908             pred_result:28.742568969726562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0dcd3c43775315f883ca887274da0dfe.setContent(html_754c1827195366649387e596a79cc392);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc4fcca2f1c967d6cb36a2d2f168a33f.bindPopup(popup_0dcd3c43775315f883ca887274da0dfe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c08667f6c934850be110b263fceeb5fb = L.circleMarker(\\n\",\n       \"                [22.7267, 114.24],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f38d144814d36e03ffe522cfb625c37 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43d2e82151299870a912b8d02dadc9d2 = $(`&lt;div id=&quot;html_43d2e82151299870a912b8d02dadc9d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.24             latitude:22.7267             pred_result:31.611530303955078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f38d144814d36e03ffe522cfb625c37.setContent(html_43d2e82151299870a912b8d02dadc9d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c08667f6c934850be110b263fceeb5fb.bindPopup(popup_3f38d144814d36e03ffe522cfb625c37)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_342e1c96204d32ce4aec1573b69878b9 = L.circleMarker(\\n\",\n       \"                [22.5978, 114.297],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1c3a9f8b1076a13b2e015ff75480a25 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fde06ca8fe21c69390a57d82d1a0e0b = $(`&lt;div id=&quot;html_7fde06ca8fe21c69390a57d82d1a0e0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.297             latitude:22.5978             pred_result:28.233705520629883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1c3a9f8b1076a13b2e015ff75480a25.setContent(html_7fde06ca8fe21c69390a57d82d1a0e0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_342e1c96204d32ce4aec1573b69878b9.bindPopup(popup_e1c3a9f8b1076a13b2e015ff75480a25)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2bb03e9bec6f8679c75211824402f5ef = L.circleMarker(\\n\",\n       \"                [22.75, 114.085],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_029f4d14b9271c721c32d43d29addf1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08afad32789ad9e40263dc4c3e8e3492 = $(`&lt;div id=&quot;html_08afad32789ad9e40263dc4c3e8e3492&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.085             latitude:22.75             pred_result:32.6987190246582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_029f4d14b9271c721c32d43d29addf1d.setContent(html_08afad32789ad9e40263dc4c3e8e3492);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2bb03e9bec6f8679c75211824402f5ef.bindPopup(popup_029f4d14b9271c721c32d43d29addf1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bedee6c3cca801c744a40b5697372da5 = L.circleMarker(\\n\",\n       \"                [22.2294, 113.495],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d4717c004be691a5ce76d110d22f22a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf7fea78cb424f566865b4b30bf5e1d6 = $(`&lt;div id=&quot;html_cf7fea78cb424f566865b4b30bf5e1d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.495             latitude:22.2294             pred_result:26.78711700439453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d4717c004be691a5ce76d110d22f22a.setContent(html_cf7fea78cb424f566865b4b30bf5e1d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bedee6c3cca801c744a40b5697372da5.bindPopup(popup_3d4717c004be691a5ce76d110d22f22a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89e258b60dc2384f92a200690942a5bb = L.circleMarker(\\n\",\n       \"                [22.2281, 113.299],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ee7f749b5b75a03b37f1e69e6bc7455 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f09e978b354c373ca774bda693c3b5ab = $(`&lt;div id=&quot;html_f09e978b354c373ca774bda693c3b5ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.299             latitude:22.2281             pred_result:29.404436111450195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ee7f749b5b75a03b37f1e69e6bc7455.setContent(html_f09e978b354c373ca774bda693c3b5ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89e258b60dc2384f92a200690942a5bb.bindPopup(popup_4ee7f749b5b75a03b37f1e69e6bc7455)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c331561aa901b1008be6f3add715cae9 = L.circleMarker(\\n\",\n       \"                [23.0048, 113.134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2cba92774412a92937c25d3b385395b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f3ebddc801458e72a6476be7dfc74e1 = $(`&lt;div id=&quot;html_7f3ebddc801458e72a6476be7dfc74e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.134             latitude:23.0048             pred_result:39.81824493408203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2cba92774412a92937c25d3b385395b.setContent(html_7f3ebddc801458e72a6476be7dfc74e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c331561aa901b1008be6f3add715cae9.bindPopup(popup_e2cba92774412a92937c25d3b385395b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3acf8af8c539d3e7a32201d8e2013d80 = L.circleMarker(\\n\",\n       \"                [23.0395, 113.105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c85a822da8f0cdf5cf4694441424f35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c36ac84be117ab04943ad43d1f29eaf9 = $(`&lt;div id=&quot;html_c36ac84be117ab04943ad43d1f29eaf9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.105             latitude:23.0395             pred_result:40.26280212402344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c85a822da8f0cdf5cf4694441424f35.setContent(html_c36ac84be117ab04943ad43d1f29eaf9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3acf8af8c539d3e7a32201d8e2013d80.bindPopup(popup_1c85a822da8f0cdf5cf4694441424f35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24b95f08cebf26d6c26b37c1500636d7 = L.circleMarker(\\n\",\n       \"                [23.0467, 113.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e792dc9dda7d6268834825b1a512b72c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38d770f64c41ace46a9eb86af1743de2 = $(`&lt;div id=&quot;html_38d770f64c41ace46a9eb86af1743de2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.144             latitude:23.0467             pred_result:40.260284423828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e792dc9dda7d6268834825b1a512b72c.setContent(html_38d770f64c41ace46a9eb86af1743de2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24b95f08cebf26d6c26b37c1500636d7.bindPopup(popup_e792dc9dda7d6268834825b1a512b72c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_092172dae8f76fe3f74e90b9a30941e5 = L.circleMarker(\\n\",\n       \"                [22.8054, 113.292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0aa81be8dfefdab6ca31be6e719b31f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6272518852f9cc7c358235ebcd25b111 = $(`&lt;div id=&quot;html_6272518852f9cc7c358235ebcd25b111&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.292             latitude:22.8054             pred_result:39.443077087402344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0aa81be8dfefdab6ca31be6e719b31f6.setContent(html_6272518852f9cc7c358235ebcd25b111);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_092172dae8f76fe3f74e90b9a30941e5.bindPopup(popup_0aa81be8dfefdab6ca31be6e719b31f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e35e55d22358b6214ca60775d54d5d5 = L.circleMarker(\\n\",\n       \"                [22.7629, 113.257],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74f63e6a77167d9f2e94666c21e33215 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9636cda915c9702853fc36f70fe99c9 = $(`&lt;div id=&quot;html_a9636cda915c9702853fc36f70fe99c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.257             latitude:22.7629             pred_result:38.6353759765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74f63e6a77167d9f2e94666c21e33215.setContent(html_a9636cda915c9702853fc36f70fe99c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e35e55d22358b6214ca60775d54d5d5.bindPopup(popup_74f63e6a77167d9f2e94666c21e33215)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d6e56759c6f274838b4801058e0008ec = L.circleMarker(\\n\",\n       \"                [22.8693, 112.844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d752e5cb157bb7b1dd7af20a63238987 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2b8d843c507eed311c7503fdc1c8fc3 = $(`&lt;div id=&quot;html_c2b8d843c507eed311c7503fdc1c8fc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.844             latitude:22.8693             pred_result:39.94702911376953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d752e5cb157bb7b1dd7af20a63238987.setContent(html_c2b8d843c507eed311c7503fdc1c8fc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d6e56759c6f274838b4801058e0008ec.bindPopup(popup_d752e5cb157bb7b1dd7af20a63238987)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e4bc0fbd08d69aea10ab86bc1dec1d2 = L.circleMarker(\\n\",\n       \"                [23.1572, 112.885],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b515785e953eca02e581fbf460b64145 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a19b376da4c2461b895f645dd79b7213 = $(`&lt;div id=&quot;html_a19b376da4c2461b895f645dd79b7213&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.885             latitude:23.1572             pred_result:42.19615936279297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b515785e953eca02e581fbf460b64145.setContent(html_a19b376da4c2461b895f645dd79b7213);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e4bc0fbd08d69aea10ab86bc1dec1d2.bindPopup(popup_b515785e953eca02e581fbf460b64145)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5bcf0d5be468391c2ba0a600b48606d9 = L.circleMarker(\\n\",\n       \"                [23.1886, 112.863],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_101f5c8dd9bceff7c0f1fa42abf1e75f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa769f1b7cac39b7a3270faea3f46521 = $(`&lt;div id=&quot;html_aa769f1b7cac39b7a3270faea3f46521&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.863             latitude:23.1886             pred_result:43.38078308105469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_101f5c8dd9bceff7c0f1fa42abf1e75f.setContent(html_aa769f1b7cac39b7a3270faea3f46521);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5bcf0d5be468391c2ba0a600b48606d9.bindPopup(popup_101f5c8dd9bceff7c0f1fa42abf1e75f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f3d3b0627bf611fe1e195856fe9d342 = L.circleMarker(\\n\",\n       \"                [22.5211, 113.3769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_450e644237e9e9f9e94efa95bdb8563b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1043e257710863ddf674e7247d0a1a5 = $(`&lt;div id=&quot;html_e1043e257710863ddf674e7247d0a1a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3769             latitude:22.5211             pred_result:33.666107177734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_450e644237e9e9f9e94efa95bdb8563b.setContent(html_e1043e257710863ddf674e7247d0a1a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f3d3b0627bf611fe1e195856fe9d342.bindPopup(popup_450e644237e9e9f9e94efa95bdb8563b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e44b3caf3400e82a8e77ae877eb2dc5 = L.circleMarker(\\n\",\n       \"                [22.5497, 113.3881],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_534e4e0436e030a20f7923123114a24b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4ab8fcb6864342c8904f9842b1a6477 = $(`&lt;div id=&quot;html_d4ab8fcb6864342c8904f9842b1a6477&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3881             latitude:22.5497             pred_result:34.21088790893555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_534e4e0436e030a20f7923123114a24b.setContent(html_d4ab8fcb6864342c8904f9842b1a6477);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e44b3caf3400e82a8e77ae877eb2dc5.bindPopup(popup_534e4e0436e030a20f7923123114a24b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6333bd97e3bd796244f59fcc21648402 = L.circleMarker(\\n\",\n       \"                [22.5111, 113.4075],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad6bcba12ef981a2d8171cdfafc03da7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6f4a681d4787b56278c6aec2bda82be = $(`&lt;div id=&quot;html_e6f4a681d4787b56278c6aec2bda82be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4075             latitude:22.5111             pred_result:33.61076354980469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad6bcba12ef981a2d8171cdfafc03da7.setContent(html_e6f4a681d4787b56278c6aec2bda82be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6333bd97e3bd796244f59fcc21648402.bindPopup(popup_ad6bcba12ef981a2d8171cdfafc03da7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60cbc29b76b4b322ae018460d33cf721 = L.circleMarker(\\n\",\n       \"                [22.4853, 113.4411],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e97522891f14e0d4596c9db92b19cc1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4008eb1aa2f92dde75fc0dd6514080d9 = $(`&lt;div id=&quot;html_4008eb1aa2f92dde75fc0dd6514080d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4411             latitude:22.4853             pred_result:32.593563079833984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e97522891f14e0d4596c9db92b19cc1.setContent(html_4008eb1aa2f92dde75fc0dd6514080d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60cbc29b76b4b322ae018460d33cf721.bindPopup(popup_1e97522891f14e0d4596c9db92b19cc1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dcb570589ad2586473c561abb2c2a855 = L.circleMarker(\\n\",\n       \"                [22.6069, 113.104],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dcf45635f660ba77f1120b8c05a800cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f95e7412ce30a19552804157c62081e = $(`&lt;div id=&quot;html_9f95e7412ce30a19552804157c62081e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.104             latitude:22.6069             pred_result:36.73014831542969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dcf45635f660ba77f1120b8c05a800cb.setContent(html_9f95e7412ce30a19552804157c62081e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dcb570589ad2586473c561abb2c2a855.bindPopup(popup_dcf45635f660ba77f1120b8c05a800cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22d15e0af0346933db8ac9b02b86b32c = L.circleMarker(\\n\",\n       \"                [22.5811, 113.074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60f50a68d184f0ba5b14b540b95e4d1c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f5aaa160aeb9a07b16a65ba1e24d2376 = $(`&lt;div id=&quot;html_f5aaa160aeb9a07b16a65ba1e24d2376&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.074             latitude:22.5811             pred_result:36.93743133544922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60f50a68d184f0ba5b14b540b95e4d1c.setContent(html_f5aaa160aeb9a07b16a65ba1e24d2376);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22d15e0af0346933db8ac9b02b86b32c.bindPopup(popup_60f50a68d184f0ba5b14b540b95e4d1c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a697c1abf411f95b9e8be3c0816d7b40 = L.circleMarker(\\n\",\n       \"                [22.5328, 113.024],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8eb79a382a98ba0da6ddb12efc7a683a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb3640625a3c415cdd906d5e44c554f3 = $(`&lt;div id=&quot;html_bb3640625a3c415cdd906d5e44c554f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.024             latitude:22.5328             pred_result:36.861839294433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8eb79a382a98ba0da6ddb12efc7a683a.setContent(html_bb3640625a3c415cdd906d5e44c554f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a697c1abf411f95b9e8be3c0816d7b40.bindPopup(popup_8eb79a382a98ba0da6ddb12efc7a683a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e9214f963d4bda55d7336ceeda71246 = L.circleMarker(\\n\",\n       \"                [22.5931, 113.0819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15284f58ff99ac9804ab5810140d6e51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4bcc884ee6480e1505bab0976cad8a71 = $(`&lt;div id=&quot;html_4bcc884ee6480e1505bab0976cad8a71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0819             latitude:22.5931             pred_result:38.238380432128906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15284f58ff99ac9804ab5810140d6e51.setContent(html_4bcc884ee6480e1505bab0976cad8a71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e9214f963d4bda55d7336ceeda71246.bindPopup(popup_15284f58ff99ac9804ab5810140d6e51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf47a1943624588decb7c44365acfdbc = L.circleMarker(\\n\",\n       \"                [23.05361111, 113.7819444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88cd0963807f0056abcf9826597b6b1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47ee8a08c7b7ab275bd8a18f8f0a8cdf = $(`&lt;div id=&quot;html_47ee8a08c7b7ab275bd8a18f8f0a8cdf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7819444             latitude:23.05361111             pred_result:40.682857513427734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88cd0963807f0056abcf9826597b6b1d.setContent(html_47ee8a08c7b7ab275bd8a18f8f0a8cdf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf47a1943624588decb7c44365acfdbc.bindPopup(popup_88cd0963807f0056abcf9826597b6b1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2a65430ba1ca77e0653691bbb0c7f1f = L.circleMarker(\\n\",\n       \"                [23.02777778, 113.7461111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc331976073f96f462d82336cca35588 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1698a5c5a0f97c000e8b29b8356b0d20 = $(`&lt;div id=&quot;html_1698a5c5a0f97c000e8b29b8356b0d20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7461111             latitude:23.02777778             pred_result:39.47792053222656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc331976073f96f462d82336cca35588.setContent(html_1698a5c5a0f97c000e8b29b8356b0d20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2a65430ba1ca77e0653691bbb0c7f1f.bindPopup(popup_dc331976073f96f462d82336cca35588)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2b52454929fee5cdf46de6243d98c10 = L.circleMarker(\\n\",\n       \"                [23.06, 113.7480556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98d5b311264e6527410904563dba607b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65c7002893703cff89f1d22a5e81462e = $(`&lt;div id=&quot;html_65c7002893703cff89f1d22a5e81462e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7480556             latitude:23.06             pred_result:39.22698211669922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98d5b311264e6527410904563dba607b.setContent(html_65c7002893703cff89f1d22a5e81462e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2b52454929fee5cdf46de6243d98c10.bindPopup(popup_98d5b311264e6527410904563dba607b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24584a8cce7955d081cb554c42bdf157 = L.circleMarker(\\n\",\n       \"                [23.01277778, 113.79444440000002],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f83aca45c782cd910e4ae546344972af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_336364b602b689e9a7a8cc1c9502c062 = $(`&lt;div id=&quot;html_336364b602b689e9a7a8cc1c9502c062&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.79444440000002             latitude:23.01277778             pred_result:39.16305160522461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f83aca45c782cd910e4ae546344972af.setContent(html_336364b602b689e9a7a8cc1c9502c062);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24584a8cce7955d081cb554c42bdf157.bindPopup(popup_f83aca45c782cd910e4ae546344972af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f8230d4fbbaa615fc76e8d0688f3c4d = L.circleMarker(\\n\",\n       \"                [22.96583333, 113.7383333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac85aa11e9b8423305d9c0243870e6a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ae5b50f7f4f5dccf2f9a37d672e66ed = $(`&lt;div id=&quot;html_0ae5b50f7f4f5dccf2f9a37d672e66ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7383333             latitude:22.96583333             pred_result:40.558631896972656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac85aa11e9b8423305d9c0243870e6a1.setContent(html_0ae5b50f7f4f5dccf2f9a37d672e66ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f8230d4fbbaa615fc76e8d0688f3c4d.bindPopup(popup_ac85aa11e9b8423305d9c0243870e6a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43217cb7c485d78a77bb8f99b9fc0a0f = L.circleMarker(\\n\",\n       \"                [23.0528, 114.4183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37771adbbdfd4ebfd246366c50e5a616 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dcbaff19fdca3581f79547b34107f4e4 = $(`&lt;div id=&quot;html_dcbaff19fdca3581f79547b34107f4e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4183             latitude:23.0528             pred_result:33.66854476928711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37771adbbdfd4ebfd246366c50e5a616.setContent(html_dcbaff19fdca3581f79547b34107f4e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43217cb7c485d78a77bb8f99b9fc0a0f.bindPopup(popup_37771adbbdfd4ebfd246366c50e5a616)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e32a60ddade07244defdcf443a558f05 = L.circleMarker(\\n\",\n       \"                [23.08, 114.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a428aec94e1e9e0e922e2f8c950cc7fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c5bad49157fa6882d5ffa0b4343b5f3 = $(`&lt;div id=&quot;html_3c5bad49157fa6882d5ffa0b4343b5f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4053             latitude:23.08             pred_result:33.823204040527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a428aec94e1e9e0e922e2f8c950cc7fd.setContent(html_3c5bad49157fa6882d5ffa0b4343b5f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e32a60ddade07244defdcf443a558f05.bindPopup(popup_a428aec94e1e9e0e922e2f8c950cc7fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48891990a1f0d4c12a7f8d1a1e90f701 = L.circleMarker(\\n\",\n       \"                [23.1142, 114.4103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e26ddd51b01b7424bfa3b647c70c6d34 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e439530fe41868dad9be2aca64698422 = $(`&lt;div id=&quot;html_e439530fe41868dad9be2aca64698422&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4103             latitude:23.1142             pred_result:34.957862854003906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e26ddd51b01b7424bfa3b647c70c6d34.setContent(html_e439530fe41868dad9be2aca64698422);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48891990a1f0d4c12a7f8d1a1e90f701.bindPopup(popup_e26ddd51b01b7424bfa3b647c70c6d34)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c75accd31e14fdbe54f7b704fe9160e = L.circleMarker(\\n\",\n       \"                [22.8172, 114.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f9d0981dc2deaf2795ab5ce154330c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_234044bcbd6abbb6e69dd73d6096dfa2 = $(`&lt;div id=&quot;html_234044bcbd6abbb6e69dd73d6096dfa2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3244             latitude:22.8172             pred_result:31.5675048828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f9d0981dc2deaf2795ab5ce154330c9.setContent(html_234044bcbd6abbb6e69dd73d6096dfa2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c75accd31e14fdbe54f7b704fe9160e.bindPopup(popup_2f9d0981dc2deaf2795ab5ce154330c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03d58b6be99fc5d80d41a9e028c2b508 = L.circleMarker(\\n\",\n       \"                [22.7422, 114.5317],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7e33d5c66fb5ab2d4404aa9e881c882 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ce00216629fe598f1f746ee1acafd3a = $(`&lt;div id=&quot;html_6ce00216629fe598f1f746ee1acafd3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5317             latitude:22.7422             pred_result:28.093040466308594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7e33d5c66fb5ab2d4404aa9e881c882.setContent(html_6ce00216629fe598f1f746ee1acafd3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03d58b6be99fc5d80d41a9e028c2b508.bindPopup(popup_f7e33d5c66fb5ab2d4404aa9e881c882)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf67cb8141bbfbfe6d193a17d07b715f = L.circleMarker(\\n\",\n       \"                [23.0706, 112.427],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_598995b0c3d8d9b6a54cdc698537a02a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_784c6ccdf66422581bfee4c4c48e731d = $(`&lt;div id=&quot;html_784c6ccdf66422581bfee4c4c48e731d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.427             latitude:23.0706             pred_result:40.27935791015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_598995b0c3d8d9b6a54cdc698537a02a.setContent(html_784c6ccdf66422581bfee4c4c48e731d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf67cb8141bbfbfe6d193a17d07b715f.bindPopup(popup_598995b0c3d8d9b6a54cdc698537a02a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea1990165250250bf2864e48dcddf8ae = L.circleMarker(\\n\",\n       \"                [23.0528, 112.471],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92ccfc8faa790d434120183258e827bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ddb10ca9963588a92266e7858d678f86 = $(`&lt;div id=&quot;html_ddb10ca9963588a92266e7858d678f86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.471             latitude:23.0528             pred_result:40.45067596435547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92ccfc8faa790d434120183258e827bf.setContent(html_ddb10ca9963588a92266e7858d678f86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea1990165250250bf2864e48dcddf8ae.bindPopup(popup_92ccfc8faa790d434120183258e827bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e00fb895b5b2d014990555fd87dee24f = L.circleMarker(\\n\",\n       \"                [23.1617, 112.565],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3593f6c0f97ec40a8be006a444395907 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_993c43788d54aba0de26d72f276380ad = $(`&lt;div id=&quot;html_993c43788d54aba0de26d72f276380ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.565             latitude:23.1617             pred_result:42.141605377197266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3593f6c0f97ec40a8be006a444395907.setContent(html_993c43788d54aba0de26d72f276380ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e00fb895b5b2d014990555fd87dee24f.bindPopup(popup_3593f6c0f97ec40a8be006a444395907)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f25d42e182e9c0f5b399658b02f7d06d = L.circleMarker(\\n\",\n       \"                [23.0786, 112.4722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bf35691f2e3af473f0166fc2ed99ef8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b8b905d58c71fdbecbd052b7595c656 = $(`&lt;div id=&quot;html_8b8b905d58c71fdbecbd052b7595c656&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4722             latitude:23.0786             pred_result:40.8650016784668             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bf35691f2e3af473f0166fc2ed99ef8.setContent(html_8b8b905d58c71fdbecbd052b7595c656);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f25d42e182e9c0f5b399658b02f7d06d.bindPopup(popup_7bf35691f2e3af473f0166fc2ed99ef8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef95c5bb02ab1f0cecb0ea3848efa71b = L.circleMarker(\\n\",\n       \"                [22.7875, 108.301],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbb1dda15c71060e345329ee473e0718 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c67ead45bdc09ef6f0854f9201a1255 = $(`&lt;div id=&quot;html_9c67ead45bdc09ef6f0854f9201a1255&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.301             latitude:22.7875             pred_result:28.49239730834961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbb1dda15c71060e345329ee473e0718.setContent(html_9c67ead45bdc09ef6f0854f9201a1255);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef95c5bb02ab1f0cecb0ea3848efa71b.bindPopup(popup_dbb1dda15c71060e345329ee473e0718)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78f94d4e845ef274649a4218f4daccd8 = L.circleMarker(\\n\",\n       \"                [22.8561, 108.316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3eb9497e3aa39829d134708e0849017c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65f779d1b4da68ad85700465ec750a2b = $(`&lt;div id=&quot;html_65f779d1b4da68ad85700465ec750a2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.316             latitude:22.8561             pred_result:29.32171058654785             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3eb9497e3aa39829d134708e0849017c.setContent(html_65f779d1b4da68ad85700465ec750a2b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78f94d4e845ef274649a4218f4daccd8.bindPopup(popup_3eb9497e3aa39829d134708e0849017c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ae4ea327e918d47fa49a82702ce79aa = L.circleMarker(\\n\",\n       \"                [22.8225, 108.321],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2859124da58f0683bfa89e77f2c7973 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_745315e7b8c3852d1a32a1fc5ea91a7b = $(`&lt;div id=&quot;html_745315e7b8c3852d1a32a1fc5ea91a7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.321             latitude:22.8225             pred_result:28.964162826538086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2859124da58f0683bfa89e77f2c7973.setContent(html_745315e7b8c3852d1a32a1fc5ea91a7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ae4ea327e918d47fa49a82702ce79aa.bindPopup(popup_f2859124da58f0683bfa89e77f2c7973)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_acc671d5508d5f54870809c6ce753706 = L.circleMarker(\\n\",\n       \"                [22.805, 108.383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a00a578fd74b68911bcfe17a6d57077c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2b8384be129e021db13013c243134d0 = $(`&lt;div id=&quot;html_c2b8384be129e021db13013c243134d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.383             latitude:22.805             pred_result:28.827011108398438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a00a578fd74b68911bcfe17a6d57077c.setContent(html_c2b8384be129e021db13013c243134d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_acc671d5508d5f54870809c6ce753706.bindPopup(popup_a00a578fd74b68911bcfe17a6d57077c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e015dcfc2d0a8f00b419bd5b934a422a = L.circleMarker(\\n\",\n       \"                [22.7906, 108.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9783dabc0b20e3e6c5abfbfac1cdbf9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e426175e0075c2e4ea34da8920a7157 = $(`&lt;div id=&quot;html_4e426175e0075c2e4ea34da8920a7157&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.439             latitude:22.7906             pred_result:28.730972290039062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9783dabc0b20e3e6c5abfbfac1cdbf9.setContent(html_4e426175e0075c2e4ea34da8920a7157);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e015dcfc2d0a8f00b419bd5b934a422a.bindPopup(popup_c9783dabc0b20e3e6c5abfbfac1cdbf9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5790ce015fc6976ebdfb730a97ba933 = L.circleMarker(\\n\",\n       \"                [22.8464, 108.239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5b0ac1d3aa4b6707e69fa53a193c8eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_32aa0cc0ca01c1ab9073235cde715b95 = $(`&lt;div id=&quot;html_32aa0cc0ca01c1ab9073235cde715b95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.239             latitude:22.8464             pred_result:28.354307174682617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5b0ac1d3aa4b6707e69fa53a193c8eb.setContent(html_32aa0cc0ca01c1ab9073235cde715b95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5790ce015fc6976ebdfb730a97ba933.bindPopup(popup_b5b0ac1d3aa4b6707e69fa53a193c8eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a83e0283a466e76b0a098e2e5183a3a8 = L.circleMarker(\\n\",\n       \"                [22.735, 108.328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a644d391d263d28f2148ee4938f5be85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_164af5d834c14acd1e7fe83f9920be0e = $(`&lt;div id=&quot;html_164af5d834c14acd1e7fe83f9920be0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.328             latitude:22.735             pred_result:28.0438289642334             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a644d391d263d28f2148ee4938f5be85.setContent(html_164af5d834c14acd1e7fe83f9920be0e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a83e0283a466e76b0a098e2e5183a3a8.bindPopup(popup_a644d391d263d28f2148ee4938f5be85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ff837951e3b5d20aff8003deb7a1c5d = L.circleMarker(\\n\",\n       \"                [22.7833, 108.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e6ca630e946cb09970a0fcdaa700d7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e56a5d51ec49ded9e6a78874f57b733 = $(`&lt;div id=&quot;html_5e56a5d51ec49ded9e6a78874f57b733&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.244             latitude:22.7833             pred_result:28.022628784179688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e6ca630e946cb09970a0fcdaa700d7f.setContent(html_5e56a5d51ec49ded9e6a78874f57b733);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ff837951e3b5d20aff8003deb7a1c5d.bindPopup(popup_8e6ca630e946cb09970a0fcdaa700d7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e74894c9f43d4278df6f38f796cf6a3 = L.circleMarker(\\n\",\n       \"                [19.9507, 110.576],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a4e902b77d5f13a7b5dc1ef1f68be49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2dce61b88c33008242d4ce898edc7eef = $(`&lt;div id=&quot;html_2dce61b88c33008242d4ce898edc7eef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.576             latitude:19.9507             pred_result:9.616623878479004             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a4e902b77d5f13a7b5dc1ef1f68be49.setContent(html_2dce61b88c33008242d4ce898edc7eef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e74894c9f43d4278df6f38f796cf6a3.bindPopup(popup_4a4e902b77d5f13a7b5dc1ef1f68be49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8fd0a70ec2f34f2c12e150e14143fae = L.circleMarker(\\n\",\n       \"                [19.9969, 110.338],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7af7a5c923f54a570fda13bd2153cb9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bcefaec772dc1f74be1a32ef5dd44b20 = $(`&lt;div id=&quot;html_bcefaec772dc1f74be1a32ef5dd44b20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.338             latitude:19.9969             pred_result:10.664328575134277             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7af7a5c923f54a570fda13bd2153cb9.setContent(html_bcefaec772dc1f74be1a32ef5dd44b20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8fd0a70ec2f34f2c12e150e14143fae.bindPopup(popup_e7af7a5c923f54a570fda13bd2153cb9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2dd7f160cae13a289eb5318c4274d56b = L.circleMarker(\\n\",\n       \"                [29.8272, 106.379],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1fbb01a2d9b90b93f438d504b0aeca01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_caa9b283e088af4ec9cdd7372530aac7 = $(`&lt;div id=&quot;html_caa9b283e088af4ec9cdd7372530aac7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.379             latitude:29.8272             pred_result:44.8173828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1fbb01a2d9b90b93f438d504b0aeca01.setContent(html_caa9b283e088af4ec9cdd7372530aac7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2dd7f160cae13a289eb5318c4274d56b.bindPopup(popup_1fbb01a2d9b90b93f438d504b0aeca01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9961db091251bce22eae22e6513a1549 = L.circleMarker(\\n\",\n       \"                [29.8264, 106.424],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a1f01cca739b996b1dc1862b94c1cd1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a57eefd1ce3649594621bf3177f8f495 = $(`&lt;div id=&quot;html_a57eefd1ce3649594621bf3177f8f495&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.424             latitude:29.8264             pred_result:46.469093322753906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a1f01cca739b996b1dc1862b94c1cd1.setContent(html_a57eefd1ce3649594621bf3177f8f495);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9961db091251bce22eae22e6513a1549.bindPopup(popup_4a1f01cca739b996b1dc1862b94c1cd1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c2f898606a5c12624bfbdb68f6960b39 = L.circleMarker(\\n\",\n       \"                [29.7228, 106.626],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e465ef3787b4a796f7bf17438627366 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aff81cd564d56504e2234129f9a6f333 = $(`&lt;div id=&quot;html_aff81cd564d56504e2234129f9a6f333&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.626             latitude:29.7228             pred_result:47.03448486328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e465ef3787b4a796f7bf17438627366.setContent(html_aff81cd564d56504e2234129f9a6f333);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c2f898606a5c12624bfbdb68f6960b39.bindPopup(popup_3e465ef3787b4a796f7bf17438627366)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba7d7a3950d6f8d4c0038a9fd9ab6c74 = L.circleMarker(\\n\",\n       \"                [29.5983, 106.296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab436246f0e84330c45d96c04e93da67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3288580a834149e2c0eb02aa7663081 = $(`&lt;div id=&quot;html_f3288580a834149e2c0eb02aa7663081&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.296             latitude:29.5983             pred_result:45.9149284362793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab436246f0e84330c45d96c04e93da67.setContent(html_f3288580a834149e2c0eb02aa7663081);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba7d7a3950d6f8d4c0038a9fd9ab6c74.bindPopup(popup_ab436246f0e84330c45d96c04e93da67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_984b7fc09953e03378503e8d645bee14 = L.circleMarker(\\n\",\n       \"                [29.5186, 106.54],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9b2993b2eed83e7d45ec3a6bbd66466 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80fedba363c947d45bc541cb81382aca = $(`&lt;div id=&quot;html_80fedba363c947d45bc541cb81382aca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.54             latitude:29.5186             pred_result:47.78310012817383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9b2993b2eed83e7d45ec3a6bbd66466.setContent(html_80fedba363c947d45bc541cb81382aca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_984b7fc09953e03378503e8d645bee14.bindPopup(popup_a9b2993b2eed83e7d45ec3a6bbd66466)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92b6ec78ee8432ecf3526b9a53786d85 = L.circleMarker(\\n\",\n       \"                [29.6219, 106.65],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80ab8a4b0214051dc11b8a7c1c82b14f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_578743a302feccedc9c79c1ca901d543 = $(`&lt;div id=&quot;html_578743a302feccedc9c79c1ca901d543&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.65             latitude:29.6219             pred_result:48.25553512573242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80ab8a4b0214051dc11b8a7c1c82b14f.setContent(html_578743a302feccedc9c79c1ca901d543);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92b6ec78ee8432ecf3526b9a53786d85.bindPopup(popup_80ab8a4b0214051dc11b8a7c1c82b14f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27dbbe829e264099dae07545ef5cf354 = L.circleMarker(\\n\",\n       \"                [29.4892, 106.634],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_814c833f226e02472316a9d82d8d578a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a69ec678c4a10969cba5b2ad93df40cb = $(`&lt;div id=&quot;html_a69ec678c4a10969cba5b2ad93df40cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.634             latitude:29.4892             pred_result:47.35267639160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_814c833f226e02472316a9d82d8d578a.setContent(html_a69ec678c4a10969cba5b2ad93df40cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27dbbe829e264099dae07545ef5cf354.bindPopup(popup_814c833f226e02472316a9d82d8d578a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e491024ebcff6fc1b37e9b68b0e94c8 = L.circleMarker(\\n\",\n       \"                [29.4822, 106.364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6dfbe7ea0d15c6d10e092524033dade0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_538dc6797dc823f0f3dc1eed4edc751d = $(`&lt;div id=&quot;html_538dc6797dc823f0f3dc1eed4edc751d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.364             latitude:29.4822             pred_result:46.10272979736328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6dfbe7ea0d15c6d10e092524033dade0.setContent(html_538dc6797dc823f0f3dc1eed4edc751d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e491024ebcff6fc1b37e9b68b0e94c8.bindPopup(popup_6dfbe7ea0d15c6d10e092524033dade0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7424b975fbcc254a8c8976277e504c2b = L.circleMarker(\\n\",\n       \"                [29.5642, 106.571],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_addb5cce4b6b74d24007d679c4f25943 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3999b8f2be70d0593e50e5dab7e59248 = $(`&lt;div id=&quot;html_3999b8f2be70d0593e50e5dab7e59248&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.571             latitude:29.5642             pred_result:47.652957916259766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_addb5cce4b6b74d24007d679c4f25943.setContent(html_3999b8f2be70d0593e50e5dab7e59248);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7424b975fbcc254a8c8976277e504c2b.bindPopup(popup_addb5cce4b6b74d24007d679c4f25943)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37345dacee5df2f71f701aef10d09f52 = L.circleMarker(\\n\",\n       \"                [29.7125, 106.617],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07690abe46849c4e5f5e9795e9a0993b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0eda72dfecc25516af120d949a58caa6 = $(`&lt;div id=&quot;html_0eda72dfecc25516af120d949a58caa6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.617             latitude:29.7125             pred_result:47.069522857666016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07690abe46849c4e5f5e9795e9a0993b.setContent(html_0eda72dfecc25516af120d949a58caa6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37345dacee5df2f71f701aef10d09f52.bindPopup(popup_07690abe46849c4e5f5e9795e9a0993b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8375a4ce791548746c4d05ab9a19050b = L.circleMarker(\\n\",\n       \"                [29.4892, 106.468],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c91f4831625d306f015c7a96080a48d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_32405ee3cd180f89c25555a7045769e9 = $(`&lt;div id=&quot;html_32405ee3cd180f89c25555a7045769e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.468             latitude:29.4892             pred_result:46.77043151855469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c91f4831625d306f015c7a96080a48d4.setContent(html_32405ee3cd180f89c25555a7045769e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8375a4ce791548746c4d05ab9a19050b.bindPopup(popup_c91f4831625d306f015c7a96080a48d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb883c7ccb3e1cb8c36a1d6f1da59cdd = L.circleMarker(\\n\",\n       \"                [29.6453, 106.562],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c030468ddaa36ef6c757a591c74a018 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9feb8b1a15bc6ccfb87b961931bcc2a6 = $(`&lt;div id=&quot;html_9feb8b1a15bc6ccfb87b961931bcc2a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.562             latitude:29.6453             pred_result:47.06259536743164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c030468ddaa36ef6c757a591c74a018.setContent(html_9feb8b1a15bc6ccfb87b961931bcc2a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb883c7ccb3e1cb8c36a1d6f1da59cdd.bindPopup(popup_0c030468ddaa36ef6c757a591c74a018)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c7e992dff4e29cf8e0c6c6753fd2bc8 = L.circleMarker(\\n\",\n       \"                [29.709, 106.452],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbb1bdb9cb50d059d25e2ec14c34806a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e41cb4b22f3b599d9849d4c79a038a15 = $(`&lt;div id=&quot;html_e41cb4b22f3b599d9849d4c79a038a15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.452             latitude:29.709             pred_result:47.012271881103516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbb1bdb9cb50d059d25e2ec14c34806a.setContent(html_e41cb4b22f3b599d9849d4c79a038a15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c7e992dff4e29cf8e0c6c6753fd2bc8.bindPopup(popup_dbb1bdb9cb50d059d25e2ec14c34806a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ec5bd0c78e161b8f67cb6f6eaf233b3 = L.circleMarker(\\n\",\n       \"                [29.389, 106.513],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46ae9c5f1d0383f430539c57d1701a50 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b902023bb9245776ec98392a09593f26 = $(`&lt;div id=&quot;html_b902023bb9245776ec98392a09593f26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.513             latitude:29.389             pred_result:47.578208923339844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46ae9c5f1d0383f430539c57d1701a50.setContent(html_b902023bb9245776ec98392a09593f26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ec5bd0c78e161b8f67cb6f6eaf233b3.bindPopup(popup_46ae9c5f1d0383f430539c57d1701a50)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9375ff7598a7b15e39fd30638e23a4b = L.circleMarker(\\n\",\n       \"                [30.72358333, 103.97275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_274d4e70ebdd8bfaa64bd5fe3510fade = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_098d45d5c87b45acf28d6236133298cd = $(`&lt;div id=&quot;html_098d45d5c87b45acf28d6236133298cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.97275             latitude:30.72358333             pred_result:56.29094696044922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_274d4e70ebdd8bfaa64bd5fe3510fade.setContent(html_098d45d5c87b45acf28d6236133298cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9375ff7598a7b15e39fd30638e23a4b.bindPopup(popup_274d4e70ebdd8bfaa64bd5fe3510fade)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90490123559dfcb97284c8b11873dbe1 = L.circleMarker(\\n\",\n       \"                [30.6872, 104.176],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01b4b1ae1a0dc39af75832ae921f80ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5aa15304c7d0f6f4df7ed1f53367ea2 = $(`&lt;div id=&quot;html_d5aa15304c7d0f6f4df7ed1f53367ea2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.176             latitude:30.6872             pred_result:56.804080963134766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01b4b1ae1a0dc39af75832ae921f80ee.setContent(html_d5aa15304c7d0f6f4df7ed1f53367ea2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90490123559dfcb97284c8b11873dbe1.bindPopup(popup_01b4b1ae1a0dc39af75832ae921f80ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8faeb6f42cbbbf96e2d5fece2acdfc4e = L.circleMarker(\\n\",\n       \"                [30.5706, 104.079],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_066460c90ea01fa9f6c20938de2fbe5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_838f8a917b75ea57da6ebe95cdbc81ef = $(`&lt;div id=&quot;html_838f8a917b75ea57da6ebe95cdbc81ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.079             latitude:30.5706             pred_result:56.762001037597656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_066460c90ea01fa9f6c20938de2fbe5f.setContent(html_838f8a917b75ea57da6ebe95cdbc81ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8faeb6f42cbbbf96e2d5fece2acdfc4e.bindPopup(popup_066460c90ea01fa9f6c20938de2fbe5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc2be285e4189f407fcfa35916cfde0f = L.circleMarker(\\n\",\n       \"                [30.63, 104.1113889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0356245a69a05662cdabeca14a80078 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b185bbb26bc1bfe2d0609b3c6fe8a97e = $(`&lt;div id=&quot;html_b185bbb26bc1bfe2d0609b3c6fe8a97e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1113889             latitude:30.63             pred_result:56.84844207763672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0356245a69a05662cdabeca14a80078.setContent(html_b185bbb26bc1bfe2d0609b3c6fe8a97e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc2be285e4189f407fcfa35916cfde0f.bindPopup(popup_c0356245a69a05662cdabeca14a80078)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1950bdf135a4a4233b5d7755cb2b0395 = L.circleMarker(\\n\",\n       \"                [30.685, 104.074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7aa0ed6906261435bf673c384a8e45f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a98db804cbcc2c4751b28c16d2492c91 = $(`&lt;div id=&quot;html_a98db804cbcc2c4751b28c16d2492c91&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.074             latitude:30.685             pred_result:56.808128356933594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7aa0ed6906261435bf673c384a8e45f1.setContent(html_a98db804cbcc2c4751b28c16d2492c91);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1950bdf135a4a4233b5d7755cb2b0395.bindPopup(popup_7aa0ed6906261435bf673c384a8e45f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc08e6c5b4541db11b410d6696c41518 = L.circleMarker(\\n\",\n       \"                [30.6578, 104.054],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0f992b40a3c98c52b96b236b1fa403e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_caac11195d221b6e24b943e0051c53db = $(`&lt;div id=&quot;html_caac11195d221b6e24b943e0051c53db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.054             latitude:30.6578             pred_result:56.76169204711914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0f992b40a3c98c52b96b236b1fa403e.setContent(html_caac11195d221b6e24b943e0051c53db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc08e6c5b4541db11b410d6696c41518.bindPopup(popup_c0f992b40a3c98c52b96b236b1fa403e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f68f3d65d16e1b28addf7b75be44fcf9 = L.circleMarker(\\n\",\n       \"                [31.0283, 103.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df80c3f18bc3fc6c7fecd9744a21c74f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_913662344df7fbd7fc79bc8bb9e54379 = $(`&lt;div id=&quot;html_913662344df7fbd7fc79bc8bb9e54379&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.613             latitude:31.0283             pred_result:44.42753601074219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df80c3f18bc3fc6c7fecd9744a21c74f.setContent(html_913662344df7fbd7fc79bc8bb9e54379);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f68f3d65d16e1b28addf7b75be44fcf9.bindPopup(popup_df80c3f18bc3fc6c7fecd9744a21c74f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a86b8d6cdc420392dc713cc903a7f8d1 = L.circleMarker(\\n\",\n       \"                [26.6029, 106.6856],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6da733f2ddc9a41858f083b35b78634c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65feaacfc4b981be20122b3d29a17df3 = $(`&lt;div id=&quot;html_65feaacfc4b981be20122b3d29a17df3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6856             latitude:26.6029             pred_result:34.9346923828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6da733f2ddc9a41858f083b35b78634c.setContent(html_65feaacfc4b981be20122b3d29a17df3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a86b8d6cdc420392dc713cc903a7f8d1.bindPopup(popup_6da733f2ddc9a41858f083b35b78634c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aed863775775382a8d0b4fbc0764cfe9 = L.circleMarker(\\n\",\n       \"                [26.5689, 106.6971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc3c8883ef15c6f8d7a964677836f36d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_64fb0988380818adab7b2cfdb0a60c97 = $(`&lt;div id=&quot;html_64fb0988380818adab7b2cfdb0a60c97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6971             latitude:26.5689             pred_result:35.208980560302734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc3c8883ef15c6f8d7a964677836f36d.setContent(html_64fb0988380818adab7b2cfdb0a60c97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aed863775775382a8d0b4fbc0764cfe9.bindPopup(popup_cc3c8883ef15c6f8d7a964677836f36d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a997c597cb02b0613e50a0b6f7374f94 = L.circleMarker(\\n\",\n       \"                [26.6266, 106.6243],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58265574330c6f68908e1992466f17e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f5798d3b7763aa116ddedb378bf06062 = $(`&lt;div id=&quot;html_f5798d3b7763aa116ddedb378bf06062&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6243             latitude:26.6266             pred_result:34.28474426269531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58265574330c6f68908e1992466f17e6.setContent(html_f5798d3b7763aa116ddedb378bf06062);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a997c597cb02b0613e50a0b6f7374f94.bindPopup(popup_58265574330c6f68908e1992466f17e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e611d8ee0e1f87a57d79ff5ac763d0a = L.circleMarker(\\n\",\n       \"                [26.6343, 106.7487],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e21c15fcc954f7533767bc3ae8f0fbae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a908e0b4ddbaf198b7907914e871d789 = $(`&lt;div id=&quot;html_a908e0b4ddbaf198b7907914e871d789&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7487             latitude:26.6343             pred_result:35.30146789550781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e21c15fcc954f7533767bc3ae8f0fbae.setContent(html_a908e0b4ddbaf198b7907914e871d789);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e611d8ee0e1f87a57d79ff5ac763d0a.bindPopup(popup_e21c15fcc954f7533767bc3ae8f0fbae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a0f71bc18b575a31bb5464b86c04e7b = L.circleMarker(\\n\",\n       \"                [26.4364, 106.6554],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a64547eec2e5088ac1dadf07e87589e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d09b52eda19d9dc2691a22eea04b7ea = $(`&lt;div id=&quot;html_7d09b52eda19d9dc2691a22eea04b7ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6554             latitude:26.4364             pred_result:34.421600341796875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a64547eec2e5088ac1dadf07e87589e1.setContent(html_7d09b52eda19d9dc2691a22eea04b7ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a0f71bc18b575a31bb5464b86c04e7b.bindPopup(popup_a64547eec2e5088ac1dadf07e87589e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6bc3ec68f8c33aa5f7546f44746aaf7 = L.circleMarker(\\n\",\n       \"                [26.5155, 106.6948],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2635651c475ff7f55891911d55f5ada = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69ede06e5c99327cdc5f3f070bd93a5c = $(`&lt;div id=&quot;html_69ede06e5c99327cdc5f3f070bd93a5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6948             latitude:26.5155             pred_result:34.95724105834961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2635651c475ff7f55891911d55f5ada.setContent(html_69ede06e5c99327cdc5f3f070bd93a5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6bc3ec68f8c33aa5f7546f44746aaf7.bindPopup(popup_c2635651c475ff7f55891911d55f5ada)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_687c2dd8046b09d917ab31216932693f = L.circleMarker(\\n\",\n       \"                [26.6009, 106.7105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a89d3fbde5f52a7c5cb3160eea7107ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_134818585c4d2b70740b5401a2f7d6e2 = $(`&lt;div id=&quot;html_134818585c4d2b70740b5401a2f7d6e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7105             latitude:26.6009             pred_result:35.18280029296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a89d3fbde5f52a7c5cb3160eea7107ca.setContent(html_134818585c4d2b70740b5401a2f7d6e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_687c2dd8046b09d917ab31216932693f.bindPopup(popup_a89d3fbde5f52a7c5cb3160eea7107ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62b9846489d71ccc55ac429e28640af0 = L.circleMarker(\\n\",\n       \"                [26.5697, 106.7164],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed2e20f7712fd0d1695b07eaaa42fb2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f1ed381653c48e0e192c6ab5565f223 = $(`&lt;div id=&quot;html_2f1ed381653c48e0e192c6ab5565f223&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7164             latitude:26.5697             pred_result:35.36262512207031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed2e20f7712fd0d1695b07eaaa42fb2f.setContent(html_2f1ed381653c48e0e192c6ab5565f223);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62b9846489d71ccc55ac429e28640af0.bindPopup(popup_ed2e20f7712fd0d1695b07eaaa42fb2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22a1c8909ef192889bc6fc7b1331c28d = L.circleMarker(\\n\",\n       \"                [26.5495, 106.6867],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_255d749daa726cace8435effc175cddf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38216cfb7265dd8b7ebff5b209f66152 = $(`&lt;div id=&quot;html_38216cfb7265dd8b7ebff5b209f66152&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6867             latitude:26.5495             pred_result:35.18033218383789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_255d749daa726cace8435effc175cddf.setContent(html_38216cfb7265dd8b7ebff5b209f66152);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22a1c8909ef192889bc6fc7b1331c28d.bindPopup(popup_255d749daa726cace8435effc175cddf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de45e1de2c508f7c1fbe03c2c9a2b9b9 = L.circleMarker(\\n\",\n       \"                [25.0124, 102.743],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3427135f95e6bff3b017825a3849ba8b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97fd4c003d1b4340e554788aa1141fe7 = $(`&lt;div id=&quot;html_97fd4c003d1b4340e554788aa1141fe7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.743             latitude:25.0124             pred_result:31.834739685058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3427135f95e6bff3b017825a3849ba8b.setContent(html_97fd4c003d1b4340e554788aa1141fe7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de45e1de2c508f7c1fbe03c2c9a2b9b9.bindPopup(popup_3427135f95e6bff3b017825a3849ba8b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82944f60d7a0e4251862db33c795dd62 = L.circleMarker(\\n\",\n       \"                [24.8885, 102.821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e93e83e801c45be2cd172eb7f0b8124 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ebda241175e032145fa32cadab64968 = $(`&lt;div id=&quot;html_0ebda241175e032145fa32cadab64968&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.821             latitude:24.8885             pred_result:28.093053817749023             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e93e83e801c45be2cd172eb7f0b8124.setContent(html_0ebda241175e032145fa32cadab64968);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82944f60d7a0e4251862db33c795dd62.bindPopup(popup_0e93e83e801c45be2cd172eb7f0b8124)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad160fa5b7cd2a22c511672a3b0e2592 = L.circleMarker(\\n\",\n       \"                [24.9624, 102.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80d0d5e82372bc8417d00699e44db1c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a1c05b1fefccc2c08f3dfce2d0ebc92 = $(`&lt;div id=&quot;html_6a1c05b1fefccc2c08f3dfce2d0ebc92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.625             latitude:24.9624             pred_result:31.652233123779297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80d0d5e82372bc8417d00699e44db1c5.setContent(html_6a1c05b1fefccc2c08f3dfce2d0ebc92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad160fa5b7cd2a22c511672a3b0e2592.bindPopup(popup_80d0d5e82372bc8417d00699e44db1c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70821469be6166f9907faecadbd70fb3 = L.circleMarker(\\n\",\n       \"                [25.0836, 102.728],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02288de5525bec59659144b58fa6132b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e70c33ba8d46bec6d7a916263317db3b = $(`&lt;div id=&quot;html_e70c33ba8d46bec6d7a916263317db3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.728             latitude:25.0836             pred_result:34.16080093383789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02288de5525bec59659144b58fa6132b.setContent(html_e70c33ba8d46bec6d7a916263317db3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70821469be6166f9907faecadbd70fb3.bindPopup(popup_02288de5525bec59659144b58fa6132b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e2e22ea4b24a974ac2241073963dc11 = L.circleMarker(\\n\",\n       \"                [25.0405, 102.722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94704e20592323e81b87ce06cd78eb33 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82759cf71a40fec85caa088af16497a1 = $(`&lt;div id=&quot;html_82759cf71a40fec85caa088af16497a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.722             latitude:25.0405             pred_result:33.29669189453125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94704e20592323e81b87ce06cd78eb33.setContent(html_82759cf71a40fec85caa088af16497a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e2e22ea4b24a974ac2241073963dc11.bindPopup(popup_94704e20592323e81b87ce06cd78eb33)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6b8125c501732bae2f715a6de41379a = L.circleMarker(\\n\",\n       \"                [25.067, 102.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_258009daf6ed7a593e3aa7618709c29a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe5d294e85d735839614db4a671b9a3a = $(`&lt;div id=&quot;html_fe5d294e85d735839614db4a671b9a3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.681             latitude:25.067             pred_result:34.142642974853516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_258009daf6ed7a593e3aa7618709c29a.setContent(html_fe5d294e85d735839614db4a671b9a3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6b8125c501732bae2f715a6de41379a.bindPopup(popup_258009daf6ed7a593e3aa7618709c29a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7753096be1238c97bbe98130c684047f = L.circleMarker(\\n\",\n       \"                [25.0359, 102.638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84645ad1338111bd1ed5bc9caca22de7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_075ab656b4122bb2260f69377ae26057 = $(`&lt;div id=&quot;html_075ab656b4122bb2260f69377ae26057&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.638             latitude:25.0359             pred_result:32.80377960205078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84645ad1338111bd1ed5bc9caca22de7.setContent(html_075ab656b4122bb2260f69377ae26057);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7753096be1238c97bbe98130c684047f.bindPopup(popup_84645ad1338111bd1ed5bc9caca22de7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6625d0404a2b46ad962fb5457a67e926 = L.circleMarker(\\n\",\n       \"                [29.6514, 91.1319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf5978e80a1e850ff60a982a5bd90e6b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a8b1d9a1a2ef885dbad5442ff3b6079a = $(`&lt;div id=&quot;html_a8b1d9a1a2ef885dbad5442ff3b6079a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1319             latitude:29.6514             pred_result:14.223579406738281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf5978e80a1e850ff60a982a5bd90e6b.setContent(html_a8b1d9a1a2ef885dbad5442ff3b6079a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6625d0404a2b46ad962fb5457a67e926.bindPopup(popup_cf5978e80a1e850ff60a982a5bd90e6b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd77cb0f4070c4b775abb524ffcb306a = L.circleMarker(\\n\",\n       \"                [29.6747, 91.1221],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c56302c620ca7cd2dc0f6bc1c7305c1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57459737f8a301c04fe1cf06afd14ab8 = $(`&lt;div id=&quot;html_57459737f8a301c04fe1cf06afd14ab8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1221             latitude:29.6747             pred_result:16.73639678955078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c56302c620ca7cd2dc0f6bc1c7305c1d.setContent(html_57459737f8a301c04fe1cf06afd14ab8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd77cb0f4070c4b775abb524ffcb306a.bindPopup(popup_c56302c620ca7cd2dc0f6bc1c7305c1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17fade59e2a50ecf2dcdcbe09303aaae = L.circleMarker(\\n\",\n       \"                [29.6475, 91.0874],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3b274f4ac893f6f8c04c137d1b8cdeb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ffd00d59b82fbf8997d4b326dbf9121 = $(`&lt;div id=&quot;html_5ffd00d59b82fbf8997d4b326dbf9121&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.0874             latitude:29.6475             pred_result:16.478994369506836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3b274f4ac893f6f8c04c137d1b8cdeb.setContent(html_5ffd00d59b82fbf8997d4b326dbf9121);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17fade59e2a50ecf2dcdcbe09303aaae.bindPopup(popup_c3b274f4ac893f6f8c04c137d1b8cdeb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f549053f6a34d058faf5e434625374a3 = L.circleMarker(\\n\",\n       \"                [29.6541, 91.1774],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc9bac7d0788b873bc1992e24536cb3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_788ad669b68388d789d8bab8cb7bacca = $(`&lt;div id=&quot;html_788ad669b68388d789d8bab8cb7bacca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1774             latitude:29.6541             pred_result:14.457655906677246             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc9bac7d0788b873bc1992e24536cb3f.setContent(html_788ad669b68388d789d8bab8cb7bacca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f549053f6a34d058faf5e434625374a3.bindPopup(popup_bc9bac7d0788b873bc1992e24536cb3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21c7efa850cd37dad8fcb4e18b57d40c = L.circleMarker(\\n\",\n       \"                [29.6588, 90.9798],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1aad99559abf2cab66a9ad012620cfe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_207ca569a542e56d81445397f24566d4 = $(`&lt;div id=&quot;html_207ca569a542e56d81445397f24566d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:90.9798             latitude:29.6588             pred_result:11.095306396484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1aad99559abf2cab66a9ad012620cfe.setContent(html_207ca569a542e56d81445397f24566d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21c7efa850cd37dad8fcb4e18b57d40c.bindPopup(popup_b1aad99559abf2cab66a9ad012620cfe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_663ec5f2b07ba66ef3d5e04830a60021 = L.circleMarker(\\n\",\n       \"                [29.6292, 91.0834],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c5ad374953788f3dc4ece06c3cd4c6f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70564b5104d589854b889863ddc55bb3 = $(`&lt;div id=&quot;html_70564b5104d589854b889863ddc55bb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.0834             latitude:29.6292             pred_result:15.797463417053223             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c5ad374953788f3dc4ece06c3cd4c6f.setContent(html_70564b5104d589854b889863ddc55bb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_663ec5f2b07ba66ef3d5e04830a60021.bindPopup(popup_4c5ad374953788f3dc4ece06c3cd4c6f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5e0d7fcdb5e7e641d051ee9210d3d44 = L.circleMarker(\\n\",\n       \"                [34.2749, 108.882],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d68d02941fa189aed94a0aa51cb941b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad04dbe7a84391403725094dd9460343 = $(`&lt;div id=&quot;html_ad04dbe7a84391403725094dd9460343&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.882             latitude:34.2749             pred_result:64.30054473876953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d68d02941fa189aed94a0aa51cb941b.setContent(html_ad04dbe7a84391403725094dd9460343);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5e0d7fcdb5e7e641d051ee9210d3d44.bindPopup(popup_5d68d02941fa189aed94a0aa51cb941b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4da0ad92c6ef20ceb9da5f16f2f4a07f = L.circleMarker(\\n\",\n       \"                [34.2629, 108.993],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_318a15ecef9dd74a2ad73df58a09bbe0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc595805ff92d7ac046d3a6fea53575e = $(`&lt;div id=&quot;html_cc595805ff92d7ac046d3a6fea53575e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.993             latitude:34.2629             pred_result:61.743743896484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_318a15ecef9dd74a2ad73df58a09bbe0.setContent(html_cc595805ff92d7ac046d3a6fea53575e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4da0ad92c6ef20ceb9da5f16f2f4a07f.bindPopup(popup_318a15ecef9dd74a2ad73df58a09bbe0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ace914ef439b6fc811c58b815af29fce = L.circleMarker(\\n\",\n       \"                [34.2572, 109.06],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23bbddaefe5f931b4601866fcf0590fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26730b1cf28d4e219082d5c4a1c1f0f4 = $(`&lt;div id=&quot;html_26730b1cf28d4e219082d5c4a1c1f0f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.06             latitude:34.2572             pred_result:60.07756042480469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23bbddaefe5f931b4601866fcf0590fd.setContent(html_26730b1cf28d4e219082d5c4a1c1f0f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ace914ef439b6fc811c58b815af29fce.bindPopup(popup_23bbddaefe5f931b4601866fcf0590fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_966df78550c13fd059e6967b6fe77e61 = L.circleMarker(\\n\",\n       \"                [34.2324, 108.94],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08f02c5f83813a1d4ab5b3761a409582 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11bc7a1a215a8a2b662b840fd29a388c = $(`&lt;div id=&quot;html_11bc7a1a215a8a2b662b840fd29a388c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.94             latitude:34.2324             pred_result:59.710365295410156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08f02c5f83813a1d4ab5b3761a409582.setContent(html_11bc7a1a215a8a2b662b840fd29a388c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_966df78550c13fd059e6967b6fe77e61.bindPopup(popup_08f02c5f83813a1d4ab5b3761a409582)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d8eae01d0199439f434e82a4c99da443 = L.circleMarker(\\n\",\n       \"                [34.2713, 108.954],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_123d4aae5e234ce9b873fb371512dbcb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9786a599c60118210d78ed9b2ec035b3 = $(`&lt;div id=&quot;html_9786a599c60118210d78ed9b2ec035b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.954             latitude:34.2713             pred_result:62.95571517944336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_123d4aae5e234ce9b873fb371512dbcb.setContent(html_9786a599c60118210d78ed9b2ec035b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d8eae01d0199439f434e82a4c99da443.bindPopup(popup_123d4aae5e234ce9b873fb371512dbcb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56c9217a08619b596fdc0acfc60a7f1d = L.circleMarker(\\n\",\n       \"                [34.2303, 108.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_588e68be767e3702d072a0e71591d578 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a02ad1ccd95d0df2b7a9a30a0a3c19f = $(`&lt;div id=&quot;html_6a02ad1ccd95d0df2b7a9a30a0a3c19f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.883             latitude:34.2303             pred_result:60.107479095458984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_588e68be767e3702d072a0e71591d578.setContent(html_6a02ad1ccd95d0df2b7a9a30a0a3c19f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56c9217a08619b596fdc0acfc60a7f1d.bindPopup(popup_588e68be767e3702d072a0e71591d578)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c90ee293e10fccbf1e65279142b290f = L.circleMarker(\\n\",\n       \"                [34.3474, 108.935],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbba4826f678230f54029219d0969a61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f7247a89719cade6f2870b2f2e030cc = $(`&lt;div id=&quot;html_6f7247a89719cade6f2870b2f2e030cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.935             latitude:34.3474             pred_result:68.97137451171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbba4826f678230f54029219d0969a61.setContent(html_6f7247a89719cade6f2870b2f2e030cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c90ee293e10fccbf1e65279142b290f.bindPopup(popup_dbba4826f678230f54029219d0969a61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_affc6cef15e573cdac03ff20790c186a = L.circleMarker(\\n\",\n       \"                [34.1546, 108.906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6103529cbc7d98439a23e7017ddf778e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40936986219599ae87ec019533213ffb = $(`&lt;div id=&quot;html_40936986219599ae87ec019533213ffb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.906             latitude:34.1546             pred_result:53.93623733520508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6103529cbc7d98439a23e7017ddf778e.setContent(html_40936986219599ae87ec019533213ffb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_affc6cef15e573cdac03ff20790c186a.bindPopup(popup_6103529cbc7d98439a23e7017ddf778e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_911493f304e5f4a6b02cb4974134e65d = L.circleMarker(\\n\",\n       \"                [34.6575, 109.2],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff8370a487c214ebc31032803cb25a36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58e695a10b21c19d6f31f72256433e63 = $(`&lt;div id=&quot;html_58e695a10b21c19d6f31f72256433e63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2             latitude:34.6575             pred_result:73.6604232788086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff8370a487c214ebc31032803cb25a36.setContent(html_58e695a10b21c19d6f31f72256433e63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_911493f304e5f4a6b02cb4974134e65d.bindPopup(popup_ff8370a487c214ebc31032803cb25a36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90c78bd546ce53890dc565d2f0a30c71 = L.circleMarker(\\n\",\n       \"                [34.3731, 109.2186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f979b688043234f382a8d5db3f60ec7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3283713aa3384a4ebd0beeeba3b97acb = $(`&lt;div id=&quot;html_3283713aa3384a4ebd0beeeba3b97acb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2186             latitude:34.3731             pred_result:66.52473449707031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f979b688043234f382a8d5db3f60ec7.setContent(html_3283713aa3384a4ebd0beeeba3b97acb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90c78bd546ce53890dc565d2f0a30c71.bindPopup(popup_8f979b688043234f382a8d5db3f60ec7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f36a5e9369e9795e980ac76f35901397 = L.circleMarker(\\n\",\n       \"                [34.378, 108.869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b88ae57d867007453e3d18d7e09c6e76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a2665afbb25e60db47412a8ffbaa16f = $(`&lt;div id=&quot;html_3a2665afbb25e60db47412a8ffbaa16f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.869             latitude:34.378             pred_result:71.11995697021484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b88ae57d867007453e3d18d7e09c6e76.setContent(html_3a2665afbb25e60db47412a8ffbaa16f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f36a5e9369e9795e980ac76f35901397.bindPopup(popup_b88ae57d867007453e3d18d7e09c6e76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d8d3ce8557c38b22509bb60875757bd = L.circleMarker(\\n\",\n       \"                [34.1978, 108.985],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1cd5b2bf2059c5bcbcaec0cb1f57b81 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_81aeb041f746c0aa1cdc162f8b1d0c16 = $(`&lt;div id=&quot;html_81aeb041f746c0aa1cdc162f8b1d0c16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.985             latitude:34.1978             pred_result:56.01177215576172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1cd5b2bf2059c5bcbcaec0cb1f57b81.setContent(html_81aeb041f746c0aa1cdc162f8b1d0c16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d8d3ce8557c38b22509bb60875757bd.bindPopup(popup_c1cd5b2bf2059c5bcbcaec0cb1f57b81)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5dff6f4923709472f9618bc5a7910aca = L.circleMarker(\\n\",\n       \"                [34.3274, 109.043],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b47b29b1ff2101c93dd7c1e07393a453 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c10974f9bceceeca87dee1f71edd949 = $(`&lt;div id=&quot;html_6c10974f9bceceeca87dee1f71edd949&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.043             latitude:34.3274             pred_result:66.31724548339844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b47b29b1ff2101c93dd7c1e07393a453.setContent(html_6c10974f9bceceeca87dee1f71edd949);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5dff6f4923709472f9618bc5a7910aca.bindPopup(popup_b47b29b1ff2101c93dd7c1e07393a453)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66e80cfa5e203c208a0efb038d9f5f38 = L.circleMarker(\\n\",\n       \"                [36.0756, 103.712],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1ca8bc63f065344562945433e8f2c3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1321beeb8024c02ff7024885b28bf57 = $(`&lt;div id=&quot;html_f1321beeb8024c02ff7024885b28bf57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.712             latitude:36.0756             pred_result:53.87800979614258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1ca8bc63f065344562945433e8f2c3d.setContent(html_f1321beeb8024c02ff7024885b28bf57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66e80cfa5e203c208a0efb038d9f5f38.bindPopup(popup_f1ca8bc63f065344562945433e8f2c3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36a0376f595ba7897480129d9408f444 = L.circleMarker(\\n\",\n       \"                [36.1031, 103.631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_611a1e135c9038006fce1e0bebd5bccb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b5f04f8891d8667ff36c4a8ef50b2cc = $(`&lt;div id=&quot;html_3b5f04f8891d8667ff36c4a8ef50b2cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.631             latitude:36.1031             pred_result:53.3551139831543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_611a1e135c9038006fce1e0bebd5bccb.setContent(html_3b5f04f8891d8667ff36c4a8ef50b2cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36a0376f595ba7897480129d9408f444.bindPopup(popup_611a1e135c9038006fce1e0bebd5bccb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9194307b254fb551f208aa6129bcfe4 = L.circleMarker(\\n\",\n       \"                [35.94, 104.148],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f5352c2978c185422cdc96d244d9c8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a703ad1101b5d611b51bfcb8fa9cba6e = $(`&lt;div id=&quot;html_a703ad1101b5d611b51bfcb8fa9cba6e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.148             latitude:35.94             pred_result:55.22099304199219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f5352c2978c185422cdc96d244d9c8a.setContent(html_a703ad1101b5d611b51bfcb8fa9cba6e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9194307b254fb551f208aa6129bcfe4.bindPopup(popup_3f5352c2978c185422cdc96d244d9c8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_997fe09636858f34f46ad2b892291a6b = L.circleMarker(\\n\",\n       \"                [36.0725, 103.841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f213e378b8a13bc62b0cf6f76a2e997f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5486a2c0ddc035a081f9fd1c32fbcbe1 = $(`&lt;div id=&quot;html_5486a2c0ddc035a081f9fd1c32fbcbe1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.841             latitude:36.0725             pred_result:54.95794677734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f213e378b8a13bc62b0cf6f76a2e997f.setContent(html_5486a2c0ddc035a081f9fd1c32fbcbe1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_997fe09636858f34f46ad2b892291a6b.bindPopup(popup_f213e378b8a13bc62b0cf6f76a2e997f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9dfbbc61ce6f7efd9130c76d1f0058c8 = L.circleMarker(\\n\",\n       \"                [36.0464, 103.831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e002fe68224a4f6be1a381d32e03a6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2d7473b9987f04ecc882a01bf6fc553 = $(`&lt;div id=&quot;html_a2d7473b9987f04ecc882a01bf6fc553&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.831             latitude:36.0464             pred_result:54.3973388671875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e002fe68224a4f6be1a381d32e03a6e.setContent(html_a2d7473b9987f04ecc882a01bf6fc553);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9dfbbc61ce6f7efd9130c76d1f0058c8.bindPopup(popup_1e002fe68224a4f6be1a381d32e03a6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98b4b29f691502568d31db02f8006edb = L.circleMarker(\\n\",\n       \"                [36.6428, 101.748],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac6c078aa372b97a17df35b024bb113b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6939ca8905364cb01d11a68dc49e3cc = $(`&lt;div id=&quot;html_b6939ca8905364cb01d11a68dc49e3cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.748             latitude:36.6428             pred_result:46.654754638671875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac6c078aa372b97a17df35b024bb113b.setContent(html_b6939ca8905364cb01d11a68dc49e3cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98b4b29f691502568d31db02f8006edb.bindPopup(popup_ac6c078aa372b97a17df35b024bb113b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_500fa683611f4b89e2d29aebc9248dce = L.circleMarker(\\n\",\n       \"                [36.5819, 101.834],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d964948243582ea661e48112a5ff297 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b7d6a348e5e65e86564027f06ca32e5 = $(`&lt;div id=&quot;html_2b7d6a348e5e65e86564027f06ca32e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.834             latitude:36.5819             pred_result:47.95609664916992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d964948243582ea661e48112a5ff297.setContent(html_2b7d6a348e5e65e86564027f06ca32e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_500fa683611f4b89e2d29aebc9248dce.bindPopup(popup_0d964948243582ea661e48112a5ff297)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b98e3ffb34b70e67d9a1082c198d36aa = L.circleMarker(\\n\",\n       \"                [38.6016, 105.9512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51d09f74ae4f1569cbc1219e529168d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3952d347fd0a51499bbabb4a0775a3e = $(`&lt;div id=&quot;html_a3952d347fd0a51499bbabb4a0775a3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.9512             latitude:38.6016             pred_result:47.016510009765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51d09f74ae4f1569cbc1219e529168d6.setContent(html_a3952d347fd0a51499bbabb4a0775a3e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b98e3ffb34b70e67d9a1082c198d36aa.bindPopup(popup_51d09f74ae4f1569cbc1219e529168d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af0e0c99242aac32e0a24ff5e5bd4317 = L.circleMarker(\\n\",\n       \"                [38.4975, 106.2328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a344c054332011d46b8f473a6f238e8c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a03fa713c8f612dd68e06ffcfa13e872 = $(`&lt;div id=&quot;html_a03fa713c8f612dd68e06ffcfa13e872&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2328             latitude:38.4975             pred_result:53.6376953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a344c054332011d46b8f473a6f238e8c.setContent(html_a03fa713c8f612dd68e06ffcfa13e872);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af0e0c99242aac32e0a24ff5e5bd4317.bindPopup(popup_a344c054332011d46b8f473a6f238e8c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b996cfaeb78e7e0535dd1030a2e8b0e = L.circleMarker(\\n\",\n       \"                [38.5036, 106.1358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91d51521bfb47643c8e58bd353eff531 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e5866481adcf09fa10503078c40e27f = $(`&lt;div id=&quot;html_8e5866481adcf09fa10503078c40e27f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1358             latitude:38.5036             pred_result:54.20036315917969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91d51521bfb47643c8e58bd353eff531.setContent(html_8e5866481adcf09fa10503078c40e27f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b996cfaeb78e7e0535dd1030a2e8b0e.bindPopup(popup_91d51521bfb47643c8e58bd353eff531)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_305e6d519178ef096b8de54551e6f83a = L.circleMarker(\\n\",\n       \"                [43.8303, 87.5801],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f58331a7bff909b8dfd502bd97cb5de5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0afcb69d21ded4da93080c6ec3c4286a = $(`&lt;div id=&quot;html_0afcb69d21ded4da93080c6ec3c4286a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5801             latitude:43.8303             pred_result:56.40627670288086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f58331a7bff909b8dfd502bd97cb5de5.setContent(html_0afcb69d21ded4da93080c6ec3c4286a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_305e6d519178ef096b8de54551e6f83a.bindPopup(popup_f58331a7bff909b8dfd502bd97cb5de5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aaf8ffe5e46d0a8d938b6c93b8599de3 = L.circleMarker(\\n\",\n       \"                [43.768, 87.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d89c5b5494729f430ec604b84236011 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2132b5d5fec7565beca93684bcded1a = $(`&lt;div id=&quot;html_d2132b5d5fec7565beca93684bcded1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6046             latitude:43.768             pred_result:48.22578811645508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d89c5b5494729f430ec604b84236011.setContent(html_d2132b5d5fec7565beca93684bcded1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aaf8ffe5e46d0a8d938b6c93b8599de3.bindPopup(popup_9d89c5b5494729f430ec604b84236011)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf9a071dad3012c3be4977bd7a1ba5a6 = L.circleMarker(\\n\",\n       \"                [43.9469, 87.4754],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_990f2ee63a6ed9c4e07c24152bd010af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3345a583b8b8ec6133230fd2927944ea = $(`&lt;div id=&quot;html_3345a583b8b8ec6133230fd2927944ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.4754             latitude:43.9469             pred_result:59.09931564331055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_990f2ee63a6ed9c4e07c24152bd010af.setContent(html_3345a583b8b8ec6133230fd2927944ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf9a071dad3012c3be4977bd7a1ba5a6.bindPopup(popup_990f2ee63a6ed9c4e07c24152bd010af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d99ab989158b665300e84eb95b16f5c = L.circleMarker(\\n\",\n       \"                [43.8711, 87.5525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12de0090c5e10aa83413705ecd692d4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be2a0e91e65b6762bb6e908fb0252ffc = $(`&lt;div id=&quot;html_be2a0e91e65b6762bb6e908fb0252ffc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5525             latitude:43.8711             pred_result:59.88572692871094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12de0090c5e10aa83413705ecd692d4a.setContent(html_be2a0e91e65b6762bb6e908fb0252ffc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d99ab989158b665300e84eb95b16f5c.bindPopup(popup_12de0090c5e10aa83413705ecd692d4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98983c729e24a8f5c3c10b3eecaacf72 = L.circleMarker(\\n\",\n       \"                [43.831, 87.6432],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5d8062b21bd4e8cfab7f60b35ba90b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e6d62aad06a95676517a313fed242d0 = $(`&lt;div id=&quot;html_0e6d62aad06a95676517a313fed242d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6432             latitude:43.831             pred_result:56.11975860595703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5d8062b21bd4e8cfab7f60b35ba90b1.setContent(html_0e6d62aad06a95676517a313fed242d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98983c729e24a8f5c3c10b3eecaacf72.bindPopup(popup_e5d8062b21bd4e8cfab7f60b35ba90b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c6c83b1741465dd3672dc2db2430ea5 = L.circleMarker(\\n\",\n       \"                [43.962, 87.6444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39df3dc250a3f828ebd7e17a3cf13a92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_251279fa2b385bd5644a0c920ca9e6d4 = $(`&lt;div id=&quot;html_251279fa2b385bd5644a0c920ca9e6d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6444             latitude:43.962             pred_result:66.70523834228516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39df3dc250a3f828ebd7e17a3cf13a92.setContent(html_251279fa2b385bd5644a0c920ca9e6d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c6c83b1741465dd3672dc2db2430ea5.bindPopup(popup_39df3dc250a3f828ebd7e17a3cf13a92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7c0ea3e8771ebe16553c0b0a1656548 = L.circleMarker(\\n\",\n       \"                [27.8614, 112.9433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b727e9c3f75363bad3fe64c6278e0851 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0df7ba34b3c7b29eeca172a0c7418e1 = $(`&lt;div id=&quot;html_a0df7ba34b3c7b29eeca172a0c7418e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9433             latitude:27.8614             pred_result:56.19275665283203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b727e9c3f75363bad3fe64c6278e0851.setContent(html_a0df7ba34b3c7b29eeca172a0c7418e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7c0ea3e8771ebe16553c0b0a1656548.bindPopup(popup_b727e9c3f75363bad3fe64c6278e0851)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e0bc6b0446155287be98b6bba2d580e = L.circleMarker(\\n\",\n       \"                [27.8403, 112.9118],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2794d59e8141b68e6391d2da628e7983 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_53663edde7d08d05ba12cfedd05f7d1d = $(`&lt;div id=&quot;html_53663edde7d08d05ba12cfedd05f7d1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9118             latitude:27.8403             pred_result:56.138671875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2794d59e8141b68e6391d2da628e7983.setContent(html_53663edde7d08d05ba12cfedd05f7d1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e0bc6b0446155287be98b6bba2d580e.bindPopup(popup_2794d59e8141b68e6391d2da628e7983)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b9055a6d976c297849fafcce0c13186 = L.circleMarker(\\n\",\n       \"                [27.8728, 112.8937],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_230fdf733d098b98c7bcf1a3e1ddf9be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d29a667b2ea43b9983f02c44b55fdb03 = $(`&lt;div id=&quot;html_d29a667b2ea43b9983f02c44b55fdb03&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8937             latitude:27.8728             pred_result:56.166656494140625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_230fdf733d098b98c7bcf1a3e1ddf9be.setContent(html_d29a667b2ea43b9983f02c44b55fdb03);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b9055a6d976c297849fafcce0c13186.bindPopup(popup_230fdf733d098b98c7bcf1a3e1ddf9be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22a0c3dfb6b98479e57e3af2abcd0561 = L.circleMarker(\\n\",\n       \"                [27.8159, 112.9227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9347cc39e9fefadf0ceda055ce8afce2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad9bee44ad9d0958f6a3b79707046433 = $(`&lt;div id=&quot;html_ad9bee44ad9d0958f6a3b79707046433&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9227             latitude:27.8159             pred_result:56.098453521728516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9347cc39e9fefadf0ceda055ce8afce2.setContent(html_ad9bee44ad9d0958f6a3b79707046433);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22a0c3dfb6b98479e57e3af2abcd0561.bindPopup(popup_9347cc39e9fefadf0ceda055ce8afce2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d710d9e2225a6f5d66dcec74bb182528 = L.circleMarker(\\n\",\n       \"                [27.9119, 112.9074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f32f79b9fcc56200751ecfd9bc2a805 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3116eed918dfdec03792d4330eb2a0ec = $(`&lt;div id=&quot;html_3116eed918dfdec03792d4330eb2a0ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9074             latitude:27.9119             pred_result:56.10052490234375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f32f79b9fcc56200751ecfd9bc2a805.setContent(html_3116eed918dfdec03792d4330eb2a0ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d710d9e2225a6f5d66dcec74bb182528.bindPopup(popup_3f32f79b9fcc56200751ecfd9bc2a805)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_590fe4569e310b2bc92f6d98a0b63276 = L.circleMarker(\\n\",\n       \"                [27.8244, 113.135],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad0db53f063add8e88cd53ec5d056230 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c82ee011cf8266de471cedf8ad5795d6 = $(`&lt;div id=&quot;html_c82ee011cf8266de471cedf8ad5795d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.135             latitude:27.8244             pred_result:56.793174743652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad0db53f063add8e88cd53ec5d056230.setContent(html_c82ee011cf8266de471cedf8ad5795d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_590fe4569e310b2bc92f6d98a0b63276.bindPopup(popup_ad0db53f063add8e88cd53ec5d056230)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8b8904c488722a2b3de4d3e8c1576ad = L.circleMarker(\\n\",\n       \"                [27.8867, 113.095],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bbfe0498cb4c1e59096b58dc2491899 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49f5121587e4dc46f18be56a7f29c086 = $(`&lt;div id=&quot;html_49f5121587e4dc46f18be56a7f29c086&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.095             latitude:27.8867             pred_result:56.49020004272461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bbfe0498cb4c1e59096b58dc2491899.setContent(html_49f5121587e4dc46f18be56a7f29c086);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8b8904c488722a2b3de4d3e8c1576ad.bindPopup(popup_0bbfe0498cb4c1e59096b58dc2491899)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d35633c2ac01f54101ad0a8e637297de = L.circleMarker(\\n\",\n       \"                [27.8667, 113.167],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_edcae5495d7d2b65098abc47cbec898a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_970866ddbbcbc7b25609c39f9c7a7ca2 = $(`&lt;div id=&quot;html_970866ddbbcbc7b25609c39f9c7a7ca2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.167             latitude:27.8667             pred_result:56.863136291503906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_edcae5495d7d2b65098abc47cbec898a.setContent(html_970866ddbbcbc7b25609c39f9c7a7ca2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d35633c2ac01f54101ad0a8e637297de.bindPopup(popup_edcae5495d7d2b65098abc47cbec898a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0bdb78b5d12b18c609083d41a90cf7cc = L.circleMarker(\\n\",\n       \"                [27.8381, 113.143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1f4ced675e6734277688064a9cdb282 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78c23de44ea488538f70bcdf942e7851 = $(`&lt;div id=&quot;html_78c23de44ea488538f70bcdf942e7851&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.143             latitude:27.8381             pred_result:56.84199905395508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1f4ced675e6734277688064a9cdb282.setContent(html_78c23de44ea488538f70bcdf942e7851);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0bdb78b5d12b18c609083d41a90cf7cc.bindPopup(popup_c1f4ced675e6734277688064a9cdb282)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9b7f6c5d81bedcd400ced6b0af57cab = L.circleMarker(\\n\",\n       \"                [27.8528, 113.13],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4d1cd6fff0c63a52231ff00a18e36b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b00c7df5daba7731cb5d0c573496c0d = $(`&lt;div id=&quot;html_3b00c7df5daba7731cb5d0c573496c0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.13             latitude:27.8528             pred_result:56.83949661254883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4d1cd6fff0c63a52231ff00a18e36b2.setContent(html_3b00c7df5daba7731cb5d0c573496c0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9b7f6c5d81bedcd400ced6b0af57cab.bindPopup(popup_c4d1cd6fff0c63a52231ff00a18e36b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4872af18e37a54616133b512aca34510 = L.circleMarker(\\n\",\n       \"                [26.3003, 106.805],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0e2b5d55efa4a269f2926870863aa27 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9856f1b4c20d08a14af6d7f779b9e73 = $(`&lt;div id=&quot;html_f9856f1b4c20d08a14af6d7f779b9e73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.805             latitude:26.3003             pred_result:33.02918243408203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0e2b5d55efa4a269f2926870863aa27.setContent(html_f9856f1b4c20d08a14af6d7f779b9e73);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4872af18e37a54616133b512aca34510.bindPopup(popup_b0e2b5d55efa4a269f2926870863aa27)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e0a15937fd57cb72d3178d8b2a52092 = L.circleMarker(\\n\",\n       \"                [27.8336, 113.251],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d828bee7e3f577dc687c83fa3a5b75f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe531f2285fa12b3dbc9971b742063d3 = $(`&lt;div id=&quot;html_fe531f2285fa12b3dbc9971b742063d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.251             latitude:27.8336             pred_result:56.98984909057617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d828bee7e3f577dc687c83fa3a5b75f1.setContent(html_fe531f2285fa12b3dbc9971b742063d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e0a15937fd57cb72d3178d8b2a52092.bindPopup(popup_d828bee7e3f577dc687c83fa3a5b75f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85198e43172a24a276e43b6c3229fc9e = L.circleMarker(\\n\",\n       \"                [27.9153, 113.0048],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8eae2d9a3ac7d72bf0e6f9f5aed8b970 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ae993595351f6ec3164921162e8f803 = $(`&lt;div id=&quot;html_5ae993595351f6ec3164921162e8f803&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0048             latitude:27.9153             pred_result:56.496360778808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8eae2d9a3ac7d72bf0e6f9f5aed8b970.setContent(html_5ae993595351f6ec3164921162e8f803);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85198e43172a24a276e43b6c3229fc9e.bindPopup(popup_8eae2d9a3ac7d72bf0e6f9f5aed8b970)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6eaa7f5864d77b4962fc9e23ac1ec19a = L.circleMarker(\\n\",\n       \"                [27.9164, 112.4876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00173682b5d8243f0e09a1acbcc089b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec8d580b2b6a7993e7086f368a4fb487 = $(`&lt;div id=&quot;html_ec8d580b2b6a7993e7086f368a4fb487&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4876             latitude:27.9164             pred_result:53.414039611816406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00173682b5d8243f0e09a1acbcc089b2.setContent(html_ec8d580b2b6a7993e7086f368a4fb487);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6eaa7f5864d77b4962fc9e23ac1ec19a.bindPopup(popup_00173682b5d8243f0e09a1acbcc089b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_799d71f0de8d4e9ea3fd14c2697d20ac = L.circleMarker(\\n\",\n       \"                [40.6532, 109.8756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24364bad987bd9f9aa751fa658e6a4dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eaf4645278683733fbaf85e8e1d7065b = $(`&lt;div id=&quot;html_eaf4645278683733fbaf85e8e1d7065b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8756             latitude:40.6532             pred_result:47.313621520996094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24364bad987bd9f9aa751fa658e6a4dc.setContent(html_eaf4645278683733fbaf85e8e1d7065b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_799d71f0de8d4e9ea3fd14c2697d20ac.bindPopup(popup_24364bad987bd9f9aa751fa658e6a4dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f78e8f30f1d26a7cde50f2069dee672 = L.circleMarker(\\n\",\n       \"                [40.6575, 109.8104],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_326604a2e27a092fcc2a21f0b6462bc3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed44227c8bc93f5769216acf4acd3c3b = $(`&lt;div id=&quot;html_ed44227c8bc93f5769216acf4acd3c3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8104             latitude:40.6575             pred_result:47.02626037597656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_326604a2e27a092fcc2a21f0b6462bc3.setContent(html_ed44227c8bc93f5769216acf4acd3c3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f78e8f30f1d26a7cde50f2069dee672.bindPopup(popup_326604a2e27a092fcc2a21f0b6462bc3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61884aa23118cdb53b69a9e7f7af4805 = L.circleMarker(\\n\",\n       \"                [40.5905, 110.0067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12dc7415425f09baba01c527f33d2651 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8022e07abe12b65e5f17b8e3b2b43152 = $(`&lt;div id=&quot;html_8022e07abe12b65e5f17b8e3b2b43152&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0067             latitude:40.5905             pred_result:46.886322021484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12dc7415425f09baba01c527f33d2651.setContent(html_8022e07abe12b65e5f17b8e3b2b43152);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61884aa23118cdb53b69a9e7f7af4805.bindPopup(popup_12dc7415425f09baba01c527f33d2651)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5879eb1ee738af58e3eb469dc1e81cff = L.circleMarker(\\n\",\n       \"                [40.6821, 109.8538],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f00b975b1e8fc467c49ae35125a13cb3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69efbbeb2d7432b7533fe98c4808ab40 = $(`&lt;div id=&quot;html_69efbbeb2d7432b7533fe98c4808ab40&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8538             latitude:40.6821             pred_result:45.9644889831543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f00b975b1e8fc467c49ae35125a13cb3.setContent(html_69efbbeb2d7432b7533fe98c4808ab40);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5879eb1ee738af58e3eb469dc1e81cff.bindPopup(popup_f00b975b1e8fc467c49ae35125a13cb3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b46df5b0be16f2a44e5e43ac3e03b36 = L.circleMarker(\\n\",\n       \"                [40.6288, 109.8654],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9cff11b4cc227cdccc68394f106720fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbaf5508205887339250c684cb1d003b = $(`&lt;div id=&quot;html_fbaf5508205887339250c684cb1d003b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8654             latitude:40.6288             pred_result:47.823307037353516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9cff11b4cc227cdccc68394f106720fc.setContent(html_fbaf5508205887339250c684cb1d003b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b46df5b0be16f2a44e5e43ac3e03b36.bindPopup(popup_9cff11b4cc227cdccc68394f106720fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74701c8617c21f236cbd14e73e0cead6 = L.circleMarker(\\n\",\n       \"                [40.5546, 110.0377],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f5ad0698ea24b2e3efe20e13406a3e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80b20a21aee9ed35fb9431635783e4f0 = $(`&lt;div id=&quot;html_80b20a21aee9ed35fb9431635783e4f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0377             latitude:40.5546             pred_result:49.178253173828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f5ad0698ea24b2e3efe20e13406a3e0.setContent(html_80b20a21aee9ed35fb9431635783e4f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74701c8617c21f236cbd14e73e0cead6.bindPopup(popup_4f5ad0698ea24b2e3efe20e13406a3e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_114b773ba09c4049e05065f9f166643c = L.circleMarker(\\n\",\n       \"                [39.8129, 110.0023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79a74330612267291958ef7cbbc697d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_665821e9066ec5b0f08019c0a943f6d9 = $(`&lt;div id=&quot;html_665821e9066ec5b0f08019c0a943f6d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0023             latitude:39.8129             pred_result:43.24634552001953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79a74330612267291958ef7cbbc697d4.setContent(html_665821e9066ec5b0f08019c0a943f6d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_114b773ba09c4049e05065f9f166643c.bindPopup(popup_79a74330612267291958ef7cbbc697d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_53b68c9df82428ea85cee6dedd0cb4a4 = L.circleMarker(\\n\",\n       \"                [39.8261, 109.9486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5285febd1d10d0e52bd9df3aca61b28e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9b3a42955d7ab2107cf3af6144322ec = $(`&lt;div id=&quot;html_f9b3a42955d7ab2107cf3af6144322ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9486             latitude:39.8261             pred_result:43.637245178222656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5285febd1d10d0e52bd9df3aca61b28e.setContent(html_f9b3a42955d7ab2107cf3af6144322ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_53b68c9df82428ea85cee6dedd0cb4a4.bindPopup(popup_5285febd1d10d0e52bd9df3aca61b28e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_562942afe35ba79ca5a063591e30a6c8 = L.circleMarker(\\n\",\n       \"                [39.5986, 109.7736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_101f0d81be10b70cf5d12a961b486c2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96820326b552d432ff6ae69beec41e00 = $(`&lt;div id=&quot;html_96820326b552d432ff6ae69beec41e00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7736             latitude:39.5986             pred_result:45.08628845214844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_101f0d81be10b70cf5d12a961b486c2d.setContent(html_96820326b552d432ff6ae69beec41e00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_562942afe35ba79ca5a063591e30a6c8.bindPopup(popup_101f0d81be10b70cf5d12a961b486c2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1dfea396662ccf276527f074163f440 = L.circleMarker(\\n\",\n       \"                [39.5989, 109.8119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e42b3ca79864683d826c7f1c61774bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10a6ca47d393f81b92a27ee141da8f37 = $(`&lt;div id=&quot;html_10a6ca47d393f81b92a27ee141da8f37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8119             latitude:39.5989             pred_result:45.21281814575195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e42b3ca79864683d826c7f1c61774bd.setContent(html_10a6ca47d393f81b92a27ee141da8f37);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1dfea396662ccf276527f074163f440.bindPopup(popup_8e42b3ca79864683d826c7f1c61774bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7259fb8bf6b17dfd0874cad5f448d61b = L.circleMarker(\\n\",\n       \"                [39.7884, 109.9734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_585667380c0b0b71604d032b66db974a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac670ecfe7d7f2df3e4b57b96867c0ea = $(`&lt;div id=&quot;html_ac670ecfe7d7f2df3e4b57b96867c0ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9734             latitude:39.7884             pred_result:43.09236145019531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_585667380c0b0b71604d032b66db974a.setContent(html_ac670ecfe7d7f2df3e4b57b96867c0ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7259fb8bf6b17dfd0874cad5f448d61b.bindPopup(popup_585667380c0b0b71604d032b66db974a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ae42cedbf12ccde098c005e71580ebe = L.circleMarker(\\n\",\n       \"                [40.6592, 122.2414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5f55f8a491d0ec6e8a40e9ee9a316f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48ecb86462e6c4b6f32d938344759707 = $(`&lt;div id=&quot;html_48ecb86462e6c4b6f32d938344759707&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2414             latitude:40.6592             pred_result:36.06210708618164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5f55f8a491d0ec6e8a40e9ee9a316f8.setContent(html_48ecb86462e6c4b6f32d938344759707);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ae42cedbf12ccde098c005e71580ebe.bindPopup(popup_a5f55f8a491d0ec6e8a40e9ee9a316f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a11312775bf5ede92f0a47b7fd506a88 = L.circleMarker(\\n\",\n       \"                [40.7094, 122.2703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab4b1791c0088f49e4708c86a0c19b04 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4601bbeb3db1166e93b4336754dfa88 = $(`&lt;div id=&quot;html_e4601bbeb3db1166e93b4336754dfa88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2703             latitude:40.7094             pred_result:30.828109741210938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab4b1791c0088f49e4708c86a0c19b04.setContent(html_e4601bbeb3db1166e93b4336754dfa88);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a11312775bf5ede92f0a47b7fd506a88.bindPopup(popup_ab4b1791c0088f49e4708c86a0c19b04)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a43965e0ca8e1ccae63bd07ab05ee97 = L.circleMarker(\\n\",\n       \"                [40.6511, 122.215],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c1d7645fa89459a9ace3212e7159e7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69637b5a500d628560fec40a48ef0687 = $(`&lt;div id=&quot;html_69637b5a500d628560fec40a48ef0687&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.215             latitude:40.6511             pred_result:33.425689697265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c1d7645fa89459a9ace3212e7159e7a.setContent(html_69637b5a500d628560fec40a48ef0687);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a43965e0ca8e1ccae63bd07ab05ee97.bindPopup(popup_0c1d7645fa89459a9ace3212e7159e7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41c5e77e355ee8350f24b015c8091902 = L.circleMarker(\\n\",\n       \"                [40.0625, 124.3303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_973448c5b52a8b9bc1cf9bd5f1c8f579 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b66c36bb311fbecaeed18e8ffaf5e68 = $(`&lt;div id=&quot;html_0b66c36bb311fbecaeed18e8ffaf5e68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3303             latitude:40.0625             pred_result:15.199913024902344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_973448c5b52a8b9bc1cf9bd5f1c8f579.setContent(html_0b66c36bb311fbecaeed18e8ffaf5e68);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41c5e77e355ee8350f24b015c8091902.bindPopup(popup_973448c5b52a8b9bc1cf9bd5f1c8f579)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e146d277247f67da851c07b50e0be55c = L.circleMarker(\\n\",\n       \"                [40.1503, 124.4256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb05bacb7e6909c880b3ff05f406ab02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3fb58fb1280508d163f07b0eddd77a7 = $(`&lt;div id=&quot;html_a3fb58fb1280508d163f07b0eddd77a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.4256             latitude:40.1503             pred_result:17.248327255249023             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb05bacb7e6909c880b3ff05f406ab02.setContent(html_a3fb58fb1280508d163f07b0eddd77a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e146d277247f67da851c07b50e0be55c.bindPopup(popup_fb05bacb7e6909c880b3ff05f406ab02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ad21ce5732ae2452486b13dbc6d78e5 = L.circleMarker(\\n\",\n       \"                [40.1461, 124.3933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffd1c35d13ad04dbd6b21ff6d7da0018 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1328a1cad835677ef5d07aa92a09d911 = $(`&lt;div id=&quot;html_1328a1cad835677ef5d07aa92a09d911&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3933             latitude:40.1461             pred_result:17.931604385375977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffd1c35d13ad04dbd6b21ff6d7da0018.setContent(html_1328a1cad835677ef5d07aa92a09d911);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ad21ce5732ae2452486b13dbc6d78e5.bindPopup(popup_ffd1c35d13ad04dbd6b21ff6d7da0018)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_847602d07094d4975bd1eb12dce6f526 = L.circleMarker(\\n\",\n       \"                [40.1194, 124.3678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0b32a1398f85c07980eaf94b41901d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a984468e020e953050fb2f79a5b31456 = $(`&lt;div id=&quot;html_a984468e020e953050fb2f79a5b31456&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3678             latitude:40.1194             pred_result:14.658855438232422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0b32a1398f85c07980eaf94b41901d0.setContent(html_a984468e020e953050fb2f79a5b31456);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_847602d07094d4975bd1eb12dce6f526.bindPopup(popup_f0b32a1398f85c07980eaf94b41901d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9cd07c46b14b69d8e47fe69eafdb1c06 = L.circleMarker(\\n\",\n       \"                [41.1556, 122.0247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4074f28cf0cd5ca098c7576c83563d5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b8f82d10803727de949745d30e4504b = $(`&lt;div id=&quot;html_3b8f82d10803727de949745d30e4504b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0247             latitude:41.1556             pred_result:23.679807662963867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4074f28cf0cd5ca098c7576c83563d5d.setContent(html_3b8f82d10803727de949745d30e4504b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9cd07c46b14b69d8e47fe69eafdb1c06.bindPopup(popup_4074f28cf0cd5ca098c7576c83563d5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29690365c39d654654be252d94010d79 = L.circleMarker(\\n\",\n       \"                [41.0903, 122.0539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fe0a58364b6322abc0595b9938d3d14 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25b56bb32efeaf438b760cf5934c6404 = $(`&lt;div id=&quot;html_25b56bb32efeaf438b760cf5934c6404&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0539             latitude:41.0903             pred_result:26.73456573486328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fe0a58364b6322abc0595b9938d3d14.setContent(html_25b56bb32efeaf438b760cf5934c6404);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29690365c39d654654be252d94010d79.bindPopup(popup_8fe0a58364b6322abc0595b9938d3d14)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c668680aa2f050e99602b2b90405bee6 = L.circleMarker(\\n\",\n       \"                [41.1042, 121.835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88ce55cc983925b39a33dd6ed6775678 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7421c09e756c29b81d2a6e49f266602 = $(`&lt;div id=&quot;html_c7421c09e756c29b81d2a6e49f266602&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.835             latitude:41.1042             pred_result:28.937440872192383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88ce55cc983925b39a33dd6ed6775678.setContent(html_c7421c09e756c29b81d2a6e49f266602);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c668680aa2f050e99602b2b90405bee6.bindPopup(popup_88ce55cc983925b39a33dd6ed6775678)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a07bb204b46de422f663adebb08dd9c = L.circleMarker(\\n\",\n       \"                [40.7136, 120.9092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae93595f45f49c5f8719fd4e1acda35d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1684772d299ab56ec4f76b9ad879eda = $(`&lt;div id=&quot;html_a1684772d299ab56ec4f76b9ad879eda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.9092             latitude:40.7136             pred_result:35.41563415527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae93595f45f49c5f8719fd4e1acda35d.setContent(html_a1684772d299ab56ec4f76b9ad879eda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a07bb204b46de422f663adebb08dd9c.bindPopup(popup_ae93595f45f49c5f8719fd4e1acda35d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_366c866382097c08b6f3c80be25c7f37 = L.circleMarker(\\n\",\n       \"                [40.7514, 120.8392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb408d7c5f58bb2c6e6032ef6c15940f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55dcde14cb7cd73f2518bfa9112942ab = $(`&lt;div id=&quot;html_55dcde14cb7cd73f2518bfa9112942ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8392             latitude:40.7514             pred_result:27.94146156311035             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb408d7c5f58bb2c6e6032ef6c15940f.setContent(html_55dcde14cb7cd73f2518bfa9112942ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_366c866382097c08b6f3c80be25c7f37.bindPopup(popup_bb408d7c5f58bb2c6e6032ef6c15940f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbe96f98775a4196d5f24fdb4fa3b61c = L.circleMarker(\\n\",\n       \"                [40.715, 120.8478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba8f146690838d6af89477b962357dde = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b87b72cf63fb838e2b1e3fe7ce3eb006 = $(`&lt;div id=&quot;html_b87b72cf63fb838e2b1e3fe7ce3eb006&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8478             latitude:40.715             pred_result:34.42621994018555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba8f146690838d6af89477b962357dde.setContent(html_b87b72cf63fb838e2b1e3fe7ce3eb006);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbe96f98775a4196d5f24fdb4fa3b61c.bindPopup(popup_ba8f146690838d6af89477b962357dde)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5b55e33a6d463b8cff063c6b332d5a5 = L.circleMarker(\\n\",\n       \"                [40.7736, 120.8631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84df9de12ff0a9a80d5c3dbe37050027 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0301ec0c3b834885300bdaa14555a572 = $(`&lt;div id=&quot;html_0301ec0c3b834885300bdaa14555a572&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8631             latitude:40.7736             pred_result:27.486629486083984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84df9de12ff0a9a80d5c3dbe37050027.setContent(html_0301ec0c3b834885300bdaa14555a572);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5b55e33a6d463b8cff063c6b332d5a5.bindPopup(popup_84df9de12ff0a9a80d5c3dbe37050027)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34cea8c7782703bad734fefee4b0df9d = L.circleMarker(\\n\",\n       \"                [24.9117, 118.5819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fddfe726e404ce50be09bec7cdaaac7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62f463abf132138d60745ff874e2d9cd = $(`&lt;div id=&quot;html_62f463abf132138d60745ff874e2d9cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5819             latitude:24.9117             pred_result:26.387409210205078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fddfe726e404ce50be09bec7cdaaac7a.setContent(html_62f463abf132138d60745ff874e2d9cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34cea8c7782703bad734fefee4b0df9d.bindPopup(popup_fddfe726e404ce50be09bec7cdaaac7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1c4bed0f85c8fd2d3733a8e1402b1c8 = L.circleMarker(\\n\",\n       \"                [24.8978, 118.5972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81e2d6d43ad865732aa067f5420994a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7ff6b918930801d4b685ad8ecc79e3f = $(`&lt;div id=&quot;html_e7ff6b918930801d4b685ad8ecc79e3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5972             latitude:24.8978             pred_result:28.38189125061035             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81e2d6d43ad865732aa067f5420994a1.setContent(html_e7ff6b918930801d4b685ad8ecc79e3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1c4bed0f85c8fd2d3733a8e1402b1c8.bindPopup(popup_81e2d6d43ad865732aa067f5420994a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd706972b0fbfec04a734a358ad82e8c = L.circleMarker(\\n\",\n       \"                [24.9617, 118.6108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8911e9fd009dd79ae21aa7ae3626fb13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_164ba9b4f46a5edc0b811db000ccf988 = $(`&lt;div id=&quot;html_164ba9b4f46a5edc0b811db000ccf988&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6108             latitude:24.9617             pred_result:28.61028289794922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8911e9fd009dd79ae21aa7ae3626fb13.setContent(html_164ba9b4f46a5edc0b811db000ccf988);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd706972b0fbfec04a734a358ad82e8c.bindPopup(popup_8911e9fd009dd79ae21aa7ae3626fb13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e0684d2381b4da9057b6ee51e65c8ca = L.circleMarker(\\n\",\n       \"                [36.2289, 117.6789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e9ee7262fcbc0574465b70c4304ac07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ae0ce914cc6024e0be07daecb1d1f61 = $(`&lt;div id=&quot;html_6ae0ce914cc6024e0be07daecb1d1f61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6789             latitude:36.2289             pred_result:44.044761657714844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e9ee7262fcbc0574465b70c4304ac07.setContent(html_6ae0ce914cc6024e0be07daecb1d1f61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e0684d2381b4da9057b6ee51e65c8ca.bindPopup(popup_7e9ee7262fcbc0574465b70c4304ac07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7730c5f619e19ba43d373b87d4003651 = L.circleMarker(\\n\",\n       \"                [35.0573, 118.3418],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bc2fb6f4d4705160a85c5c92e4205cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e355f6b5598613320b94152cff3cb3a = $(`&lt;div id=&quot;html_7e355f6b5598613320b94152cff3cb3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3418             latitude:35.0573             pred_result:38.89384460449219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bc2fb6f4d4705160a85c5c92e4205cc.setContent(html_7e355f6b5598613320b94152cff3cb3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7730c5f619e19ba43d373b87d4003651.bindPopup(popup_8bc2fb6f4d4705160a85c5c92e4205cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a1e8a512e78c5616c307888f883535a = L.circleMarker(\\n\",\n       \"                [35.0622, 118.2939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3448c9f7451272f72f88b2f995136e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_480af9fdd0ac3b48cd78159fe76bfa31 = $(`&lt;div id=&quot;html_480af9fdd0ac3b48cd78159fe76bfa31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2939             latitude:35.0622             pred_result:39.220970153808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3448c9f7451272f72f88b2f995136e1.setContent(html_480af9fdd0ac3b48cd78159fe76bfa31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a1e8a512e78c5616c307888f883535a.bindPopup(popup_f3448c9f7451272f72f88b2f995136e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf10f850643e1512b281c1dd3d6ac7ec = L.circleMarker(\\n\",\n       \"                [34.9817, 118.2764],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d372aed8e732373a2d55c4b509250c99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb7c01ef308866e9aa2a189bea8d0169 = $(`&lt;div id=&quot;html_eb7c01ef308866e9aa2a189bea8d0169&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2764             latitude:34.9817             pred_result:39.61100387573242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d372aed8e732373a2d55c4b509250c99.setContent(html_eb7c01ef308866e9aa2a189bea8d0169);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf10f850643e1512b281c1dd3d6ac7ec.bindPopup(popup_d372aed8e732373a2d55c4b509250c99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4aec877e8a2c68d2723f1a8914e1bd84 = L.circleMarker(\\n\",\n       \"                [35.0896, 118.4023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_210efef86950d18d35119fc8cf897d6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8fc1ed16e33ded63bec21cb41a00c21a = $(`&lt;div id=&quot;html_8fc1ed16e33ded63bec21cb41a00c21a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4023             latitude:35.0896             pred_result:39.143211364746094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_210efef86950d18d35119fc8cf897d6e.setContent(html_8fc1ed16e33ded63bec21cb41a00c21a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4aec877e8a2c68d2723f1a8914e1bd84.bindPopup(popup_210efef86950d18d35119fc8cf897d6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fd42168325c7f6119ccc3795d7997dd = L.circleMarker(\\n\",\n       \"                [37.4664, 116.3061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86db8a63bff6e20d226162fef6c35d8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59a094418f0db15dbdbddef84a3dd2d4 = $(`&lt;div id=&quot;html_59a094418f0db15dbdbddef84a3dd2d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3061             latitude:37.4664             pred_result:64.46063995361328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86db8a63bff6e20d226162fef6c35d8a.setContent(html_59a094418f0db15dbdbddef84a3dd2d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fd42168325c7f6119ccc3795d7997dd.bindPopup(popup_86db8a63bff6e20d226162fef6c35d8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c715dbbc766c1ce70c1ec807dfd88eb = L.circleMarker(\\n\",\n       \"                [36.4372, 115.9848],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f93a1369a78395735df369dab5754910 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee19cb0337ec91d01906967711ac0169 = $(`&lt;div id=&quot;html_ee19cb0337ec91d01906967711ac0169&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9848             latitude:36.4372             pred_result:65.45723724365234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f93a1369a78395735df369dab5754910.setContent(html_ee19cb0337ec91d01906967711ac0169);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c715dbbc766c1ce70c1ec807dfd88eb.bindPopup(popup_f93a1369a78395735df369dab5754910)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0e1870aa7a8e05044aba899171170d4 = L.circleMarker(\\n\",\n       \"                [36.4796, 115.9835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_06d8e5d5bfa3199fb596b5aa139aa50b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d85bd33feab7b7b8b7d93d00df076a19 = $(`&lt;div id=&quot;html_d85bd33feab7b7b8b7d93d00df076a19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9835             latitude:36.4796             pred_result:65.73278045654297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_06d8e5d5bfa3199fb596b5aa139aa50b.setContent(html_d85bd33feab7b7b8b7d93d00df076a19);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0e1870aa7a8e05044aba899171170d4.bindPopup(popup_06d8e5d5bfa3199fb596b5aa139aa50b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b8610f1e26199a108fe66df56bba571 = L.circleMarker(\\n\",\n       \"                [37.3803, 118.0062],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b3e82eea5a483fcc30d856c860f1448 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9857b24baf29666e74101bc79c16de81 = $(`&lt;div id=&quot;html_9857b24baf29666e74101bc79c16de81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0062             latitude:37.3803             pred_result:43.82918930053711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b3e82eea5a483fcc30d856c860f1448.setContent(html_9857b24baf29666e74101bc79c16de81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b8610f1e26199a108fe66df56bba571.bindPopup(popup_8b3e82eea5a483fcc30d856c860f1448)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f67ec8b383036ea04db102049e29440 = L.circleMarker(\\n\",\n       \"                [37.3617, 118.0018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a05620eb8b9ea0b1a173b3ed01f70946 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_506b41a7314675df89f40fda04013cb7 = $(`&lt;div id=&quot;html_506b41a7314675df89f40fda04013cb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0018             latitude:37.3617             pred_result:45.56851577758789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a05620eb8b9ea0b1a173b3ed01f70946.setContent(html_506b41a7314675df89f40fda04013cb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f67ec8b383036ea04db102049e29440.bindPopup(popup_a05620eb8b9ea0b1a173b3ed01f70946)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3171652b63f7949ff46df1a9e6c7e4ec = L.circleMarker(\\n\",\n       \"                [37.393, 117.9776],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e47d835f9a54aa2ae2046d1fa48430db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26c707e0bf19eb3bcd307ace1ae175c9 = $(`&lt;div id=&quot;html_26c707e0bf19eb3bcd307ace1ae175c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9776             latitude:37.393             pred_result:45.5823860168457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e47d835f9a54aa2ae2046d1fa48430db.setContent(html_26c707e0bf19eb3bcd307ace1ae175c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3171652b63f7949ff46df1a9e6c7e4ec.bindPopup(popup_e47d835f9a54aa2ae2046d1fa48430db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f2b2f7962696efc9201f9ab655313aa = L.circleMarker(\\n\",\n       \"                [36.838, 118.0448],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1bd3a67fa08451fbcacc557a5d630fbc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0b409cd5bcbe1740d5915033b469b48 = $(`&lt;div id=&quot;html_e0b409cd5bcbe1740d5915033b469b48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0448             latitude:36.838             pred_result:43.49171829223633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1bd3a67fa08451fbcacc557a5d630fbc.setContent(html_e0b409cd5bcbe1740d5915033b469b48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f2b2f7962696efc9201f9ab655313aa.bindPopup(popup_1bd3a67fa08451fbcacc557a5d630fbc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ab117573fd4f80f89234147aa49c1ca = L.circleMarker(\\n\",\n       \"                [36.497, 117.8477],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b8783672f1a9b60d3ed2d4713988582 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd87eefb7f842ccdf9b3be2346986d8b = $(`&lt;div id=&quot;html_bd87eefb7f842ccdf9b3be2346986d8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8477             latitude:36.497             pred_result:43.851253509521484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b8783672f1a9b60d3ed2d4713988582.setContent(html_bd87eefb7f842ccdf9b3be2346986d8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ab117573fd4f80f89234147aa49c1ca.bindPopup(popup_1b8783672f1a9b60d3ed2d4713988582)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_914d924adbe964cddbe71825f8a327ff = L.circleMarker(\\n\",\n       \"                [36.6377, 117.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c626cb43b89e6b385669739b09d60c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_41de78c9a25838bdc81b064c8d6e5815 = $(`&lt;div id=&quot;html_41de78c9a25838bdc81b064c8d6e5815&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9544             latitude:36.6377             pred_result:42.19832229614258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c626cb43b89e6b385669739b09d60c9.setContent(html_41de78c9a25838bdc81b064c8d6e5815);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_914d924adbe964cddbe71825f8a327ff.bindPopup(popup_1c626cb43b89e6b385669739b09d60c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_418b652584183877cb07b73ca239f38a = L.circleMarker(\\n\",\n       \"                [36.8198, 118.3092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9fbd792886b07a9393351b4fde2345bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e93f0202ba0c525a0b38c70afafc74d5 = $(`&lt;div id=&quot;html_e93f0202ba0c525a0b38c70afafc74d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3092             latitude:36.8198             pred_result:41.139427185058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9fbd792886b07a9393351b4fde2345bc.setContent(html_e93f0202ba0c525a0b38c70afafc74d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_418b652584183877cb07b73ca239f38a.bindPopup(popup_9fbd792886b07a9393351b4fde2345bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3d04a45877277769b48e17eb766817e = L.circleMarker(\\n\",\n       \"                [36.8041, 117.8512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d2f917a1f7442232ec4561f8360dff29 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_220a975fe6c96a7647e65d949d0ca66d = $(`&lt;div id=&quot;html_220a975fe6c96a7647e65d949d0ca66d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8512             latitude:36.8041             pred_result:45.80809020996094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d2f917a1f7442232ec4561f8360dff29.setContent(html_220a975fe6c96a7647e65d949d0ca66d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3d04a45877277769b48e17eb766817e.bindPopup(popup_d2f917a1f7442232ec4561f8360dff29)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64da0d3f94f9eb2f2f69bdbb10714e04 = L.circleMarker(\\n\",\n       \"                [34.864000000000004, 117.5564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec7928f9fa89ae29d3bd78cb58318bd9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb1f13d801c5d3bd472f5daca17d4dee = $(`&lt;div id=&quot;html_eb1f13d801c5d3bd472f5daca17d4dee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5564             latitude:34.864000000000004             pred_result:49.662445068359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec7928f9fa89ae29d3bd78cb58318bd9.setContent(html_eb1f13d801c5d3bd472f5daca17d4dee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64da0d3f94f9eb2f2f69bdbb10714e04.bindPopup(popup_ec7928f9fa89ae29d3bd78cb58318bd9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab90faa5b479b2d56049f621bd30d38b = L.circleMarker(\\n\",\n       \"                [34.7837, 117.2852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b18156131e3134f646fec3d5a4fe941d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6deb6505c43646e43e233c9fc29dd57f = $(`&lt;div id=&quot;html_6deb6505c43646e43e233c9fc29dd57f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2852             latitude:34.7837             pred_result:54.89364242553711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b18156131e3134f646fec3d5a4fe941d.setContent(html_6deb6505c43646e43e233c9fc29dd57f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab90faa5b479b2d56049f621bd30d38b.bindPopup(popup_b18156131e3134f646fec3d5a4fe941d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_045b882c4f212e2d62fee762853430f3 = L.circleMarker(\\n\",\n       \"                [34.7745, 117.5852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b28a70472558e789aeaca9de6396035 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a687263967a353364ae191b9cdebc990 = $(`&lt;div id=&quot;html_a687263967a353364ae191b9cdebc990&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5852             latitude:34.7745             pred_result:48.30241012573242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b28a70472558e789aeaca9de6396035.setContent(html_a687263967a353364ae191b9cdebc990);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_045b882c4f212e2d62fee762853430f3.bindPopup(popup_2b28a70472558e789aeaca9de6396035)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c15128e787373be56b4546d59cec4c3 = L.circleMarker(\\n\",\n       \"                [34.5667, 117.732],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7af15285aa08f632c444aaad5dbd7d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf9374649fac9d67feaf54b00ecde8a1 = $(`&lt;div id=&quot;html_cf9374649fac9d67feaf54b00ecde8a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.732             latitude:34.5667             pred_result:48.86458206176758             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7af15285aa08f632c444aaad5dbd7d5.setContent(html_cf9374649fac9d67feaf54b00ecde8a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c15128e787373be56b4546d59cec4c3.bindPopup(popup_c7af15285aa08f632c444aaad5dbd7d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c959b4c15f11cd589f4b90cc51f79490 = L.circleMarker(\\n\",\n       \"                [35.0992, 117.4518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f69d0592be6f1d20fc09017d62c3d44 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0864eb1a98d1a5d5b257093e3e966a0f = $(`&lt;div id=&quot;html_0864eb1a98d1a5d5b257093e3e966a0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4518             latitude:35.0992             pred_result:51.14876937866211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f69d0592be6f1d20fc09017d62c3d44.setContent(html_0864eb1a98d1a5d5b257093e3e966a0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c959b4c15f11cd589f4b90cc51f79490.bindPopup(popup_8f69d0592be6f1d20fc09017d62c3d44)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df39f720e8ff8a4417f156a1610e43ef = L.circleMarker(\\n\",\n       \"                [37.5639, 121.2514],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f0275b9669cc6de166642a0f8d4f32b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15344e2395936e5eee58a5c9729dd68a = $(`&lt;div id=&quot;html_15344e2395936e5eee58a5c9729dd68a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2514             latitude:37.5639             pred_result:5.912191390991211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f0275b9669cc6de166642a0f8d4f32b.setContent(html_15344e2395936e5eee58a5c9729dd68a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df39f720e8ff8a4417f156a1610e43ef.bindPopup(popup_8f0275b9669cc6de166642a0f8d4f32b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65a1e7f7c21902a1d91dc80624461b67 = L.circleMarker(\\n\",\n       \"                [37.5436, 121.3181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ed967d95c40959989cf889a21b4deaa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c5fce744c288be4162525b0992c4fd1 = $(`&lt;div id=&quot;html_6c5fce744c288be4162525b0992c4fd1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.3181             latitude:37.5436             pred_result:7.196489334106445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ed967d95c40959989cf889a21b4deaa.setContent(html_6c5fce744c288be4162525b0992c4fd1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65a1e7f7c21902a1d91dc80624461b67.bindPopup(popup_3ed967d95c40959989cf889a21b4deaa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce3e7efa657a22714d069bf428328e4e = L.circleMarker(\\n\",\n       \"                [37.4967, 121.2611],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdec2ac7eca73072c44fc724eae9aa4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85cbed012decd9545e71958cde5233c3 = $(`&lt;div id=&quot;html_85cbed012decd9545e71958cde5233c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2611             latitude:37.4967             pred_result:4.043322563171387             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdec2ac7eca73072c44fc724eae9aa4a.setContent(html_85cbed012decd9545e71958cde5233c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce3e7efa657a22714d069bf428328e4e.bindPopup(popup_fdec2ac7eca73072c44fc724eae9aa4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a5ee6c8a4f2ec21ddaa92199a00c5c4 = L.circleMarker(\\n\",\n       \"                [36.7019, 119.12],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43f10155030c731bd666f7cd3fc982fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3c42c2a98046a75390ecf6e27c49dc5 = $(`&lt;div id=&quot;html_b3c42c2a98046a75390ecf6e27c49dc5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.12             latitude:36.7019             pred_result:30.666202545166016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43f10155030c731bd666f7cd3fc982fe.setContent(html_b3c42c2a98046a75390ecf6e27c49dc5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a5ee6c8a4f2ec21ddaa92199a00c5c4.bindPopup(popup_43f10155030c731bd666f7cd3fc982fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54a05cb22c42d8239d12de65b9091ce0 = L.circleMarker(\\n\",\n       \"                [36.7008, 119.1425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_819900ca36e08c0fb93d42a7de57c09c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bcdb136fb5d087c1cd7f61e044cf3766 = $(`&lt;div id=&quot;html_bcdb136fb5d087c1cd7f61e044cf3766&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1425             latitude:36.7008             pred_result:28.504138946533203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_819900ca36e08c0fb93d42a7de57c09c.setContent(html_bcdb136fb5d087c1cd7f61e044cf3766);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54a05cb22c42d8239d12de65b9091ce0.bindPopup(popup_819900ca36e08c0fb93d42a7de57c09c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb1f9d7732b93dede32ee38925295bef = L.circleMarker(\\n\",\n       \"                [36.7731, 119.1939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_95fba65fd45c25e6ba32dbfeb2f36d8b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_534ff50258e37e1429b58548f943cad0 = $(`&lt;div id=&quot;html_534ff50258e37e1429b58548f943cad0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1939             latitude:36.7731             pred_result:28.053279876708984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_95fba65fd45c25e6ba32dbfeb2f36d8b.setContent(html_534ff50258e37e1429b58548f943cad0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb1f9d7732b93dede32ee38925295bef.bindPopup(popup_95fba65fd45c25e6ba32dbfeb2f36d8b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db2647ff312ec4df61976923620e038b = L.circleMarker(\\n\",\n       \"                [35.42800000000001, 116.6305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b52c14087cdb836e9e71d8955076fdb3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee5a3114cf3239c8599377a2f46098c2 = $(`&lt;div id=&quot;html_ee5a3114cf3239c8599377a2f46098c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6305             latitude:35.42800000000001             pred_result:58.1151123046875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b52c14087cdb836e9e71d8955076fdb3.setContent(html_ee5a3114cf3239c8599377a2f46098c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db2647ff312ec4df61976923620e038b.bindPopup(popup_b52c14087cdb836e9e71d8955076fdb3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0ffd6d328de84ea515ca715bee81d57 = L.circleMarker(\\n\",\n       \"                [35.4144, 116.5856],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e997a65590ee6a25988115c26a9138e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40a0025f850fb5b3436c14da260dfce1 = $(`&lt;div id=&quot;html_40a0025f850fb5b3436c14da260dfce1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5856             latitude:35.4144             pred_result:57.42915725708008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e997a65590ee6a25988115c26a9138e6.setContent(html_40a0025f850fb5b3436c14da260dfce1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0ffd6d328de84ea515ca715bee81d57.bindPopup(popup_e997a65590ee6a25988115c26a9138e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61952b4b554ef765d39e545f83b71e46 = L.circleMarker(\\n\",\n       \"                [35.4039, 116.5546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59512765bc4a760d891787a8d7711b3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2ea968a450b414e56c07e44670507a5 = $(`&lt;div id=&quot;html_e2ea968a450b414e56c07e44670507a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5546             latitude:35.4039             pred_result:58.72356033325195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59512765bc4a760d891787a8d7711b3e.setContent(html_e2ea968a450b414e56c07e44670507a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61952b4b554ef765d39e545f83b71e46.bindPopup(popup_59512765bc4a760d891787a8d7711b3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9b09026ee7021b9bb903fc65c67fca9 = L.circleMarker(\\n\",\n       \"                [36.1942, 117.1436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_934151ac83f3fe378af7d2314219bf55 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_050303c85f66eaa7adea3bd3987e4464 = $(`&lt;div id=&quot;html_050303c85f66eaa7adea3bd3987e4464&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1436             latitude:36.1942             pred_result:50.52351379394531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_934151ac83f3fe378af7d2314219bf55.setContent(html_050303c85f66eaa7adea3bd3987e4464);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9b09026ee7021b9bb903fc65c67fca9.bindPopup(popup_934151ac83f3fe378af7d2314219bf55)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4bdbce1d6b9cefb0fecd8bde66d2d53 = L.circleMarker(\\n\",\n       \"                [36.1942, 117.0881],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fbd773d4f0be89bea6c8b95d1628dbc5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d7c73be8c7e6c52aa94151fc0aebc2b = $(`&lt;div id=&quot;html_1d7c73be8c7e6c52aa94151fc0aebc2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0881             latitude:36.1942             pred_result:50.48248291015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fbd773d4f0be89bea6c8b95d1628dbc5.setContent(html_1d7c73be8c7e6c52aa94151fc0aebc2b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4bdbce1d6b9cefb0fecd8bde66d2d53.bindPopup(popup_fbd773d4f0be89bea6c8b95d1628dbc5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4cd08c5a371f91ab31c503881b09601 = L.circleMarker(\\n\",\n       \"                [36.1758, 117.1081],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90fb12d6dd0af83dc8c34dae244652df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8585f37b46ed2e79a7476ce0fd5fa46e = $(`&lt;div id=&quot;html_8585f37b46ed2e79a7476ce0fd5fa46e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1081             latitude:36.1758             pred_result:50.12548065185547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90fb12d6dd0af83dc8c34dae244652df.setContent(html_8585f37b46ed2e79a7476ce0fd5fa46e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4cd08c5a371f91ab31c503881b09601.bindPopup(popup_90fb12d6dd0af83dc8c34dae244652df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74706b374dd6c9bdcc4b58a1458e0a14 = L.circleMarker(\\n\",\n       \"                [35.4178, 119.4641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ad857dfdf8079c78bb2bb5395f026af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbf3d221477cd5ea5da36a21b9d09a01 = $(`&lt;div id=&quot;html_dbf3d221477cd5ea5da36a21b9d09a01&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.4641             latitude:35.4178             pred_result:30.401809692382812             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ad857dfdf8079c78bb2bb5395f026af.setContent(html_dbf3d221477cd5ea5da36a21b9d09a01);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74706b374dd6c9bdcc4b58a1458e0a14.bindPopup(popup_8ad857dfdf8079c78bb2bb5395f026af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4b5b458ed8d14957c13254e708362d3 = L.circleMarker(\\n\",\n       \"                [35.4234, 119.5198],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2354b608bf6fd63c4c22481c42232dee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e454b5217635dcc314b441498ac140e = $(`&lt;div id=&quot;html_4e454b5217635dcc314b441498ac140e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5198             latitude:35.4234             pred_result:28.302711486816406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2354b608bf6fd63c4c22481c42232dee.setContent(html_4e454b5217635dcc314b441498ac140e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4b5b458ed8d14957c13254e708362d3.bindPopup(popup_2354b608bf6fd63c4c22481c42232dee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6eeb2361874aa014491b56d37dae0f44 = L.circleMarker(\\n\",\n       \"                [35.3962, 119.54],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f389ac525e3c4f6f806c409e99ed5f10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5679171524432b57b79708f7626bb0b6 = $(`&lt;div id=&quot;html_5679171524432b57b79708f7626bb0b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.54             latitude:35.3962             pred_result:26.56031036376953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f389ac525e3c4f6f806c409e99ed5f10.setContent(html_5679171524432b57b79708f7626bb0b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6eeb2361874aa014491b56d37dae0f44.bindPopup(popup_f389ac525e3c4f6f806c409e99ed5f10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c7ce3db17c2bf77c7ef66464b20f8f5 = L.circleMarker(\\n\",\n       \"                [37.4294, 122.1206],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8785e7e53865d65ec2caf9077b993d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3c5b21884ac36b0d3fd83cc1d4f55db = $(`&lt;div id=&quot;html_f3c5b21884ac36b0d3fd83cc1d4f55db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.1206             latitude:37.4294             pred_result:0.7670364379882812             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8785e7e53865d65ec2caf9077b993d5.setContent(html_f3c5b21884ac36b0d3fd83cc1d4f55db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c7ce3db17c2bf77c7ef66464b20f8f5.bindPopup(popup_e8785e7e53865d65ec2caf9077b993d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d43bbb5c2a81c25bf36cc91baa0a7330 = L.circleMarker(\\n\",\n       \"                [37.4658, 118.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b703c4e48af52e5299eac8eef8926f02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62a36cd6dfe4cb6fa93ddf07aabcb115 = $(`&lt;div id=&quot;html_62a36cd6dfe4cb6fa93ddf07aabcb115&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5019             latitude:37.4658             pred_result:36.11537170410156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b703c4e48af52e5299eac8eef8926f02.setContent(html_62a36cd6dfe4cb6fa93ddf07aabcb115);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d43bbb5c2a81c25bf36cc91baa0a7330.bindPopup(popup_b703c4e48af52e5299eac8eef8926f02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c4e9445e8a339713f2a49ca02a9ce45 = L.circleMarker(\\n\",\n       \"                [37.4314, 118.6672],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfdc58fe0d16ca839b60e90bc53d9cd7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b98e9d457fca547e7971a0dab4b7627 = $(`&lt;div id=&quot;html_2b98e9d457fca547e7971a0dab4b7627&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6672             latitude:37.4314             pred_result:36.30048370361328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfdc58fe0d16ca839b60e90bc53d9cd7.setContent(html_2b98e9d457fca547e7971a0dab4b7627);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c4e9445e8a339713f2a49ca02a9ce45.bindPopup(popup_dfdc58fe0d16ca839b60e90bc53d9cd7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c6c9c72b9b6a98ad377d333a0a50a3d = L.circleMarker(\\n\",\n       \"                [37.4442, 118.5857],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8097ccd6ef4dfc3d9bd647bf21b9359b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_efece51b288290b147f84c453c5d6418 = $(`&lt;div id=&quot;html_efece51b288290b147f84c453c5d6418&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5857             latitude:37.4442             pred_result:36.818992614746094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8097ccd6ef4dfc3d9bd647bf21b9359b.setContent(html_efece51b288290b147f84c453c5d6418);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c6c9c72b9b6a98ad377d333a0a50a3d.bindPopup(popup_8097ccd6ef4dfc3d9bd647bf21b9359b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62ea76d4d814dbb8bedc39463aac1517 = L.circleMarker(\\n\",\n       \"                [24.769519, 113.586606],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c95e0e3c8fe87867ae36a4e13d31e08 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40b60b341ed8c4035bc46496d728968a = $(`&lt;div id=&quot;html_40b60b341ed8c4035bc46496d728968a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.586606             latitude:24.769519             pred_result:41.938663482666016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c95e0e3c8fe87867ae36a4e13d31e08.setContent(html_40b60b341ed8c4035bc46496d728968a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62ea76d4d814dbb8bedc39463aac1517.bindPopup(popup_9c95e0e3c8fe87867ae36a4e13d31e08)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a5aabf7686b2567975f5e2905f5a3de = L.circleMarker(\\n\",\n       \"                [24.81119444, 113.5593889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a7cb5f06c57a4438c371d9a04cf5d1e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49e4c439a31b586f378a9f42671f1e54 = $(`&lt;div id=&quot;html_49e4c439a31b586f378a9f42671f1e54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5593889             latitude:24.81119444             pred_result:42.09332275390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a7cb5f06c57a4438c371d9a04cf5d1e.setContent(html_49e4c439a31b586f378a9f42671f1e54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a5aabf7686b2567975f5e2905f5a3de.bindPopup(popup_8a7cb5f06c57a4438c371d9a04cf5d1e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a2f4bc3d8587c86cdcdb0554f948409 = L.circleMarker(\\n\",\n       \"                [24.795928, 113.59806100000002],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e5581ef1e8d0d2ca916edce2f557473 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2342924e205556f2c4b33cbd996f4090 = $(`&lt;div id=&quot;html_2342924e205556f2c4b33cbd996f4090&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.59806100000002             latitude:24.795928             pred_result:41.917762756347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e5581ef1e8d0d2ca916edce2f557473.setContent(html_2342924e205556f2c4b33cbd996f4090);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a2f4bc3d8587c86cdcdb0554f948409.bindPopup(popup_1e5581ef1e8d0d2ca916edce2f557473)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a8c46b4755c44c5a977776a30596f10 = L.circleMarker(\\n\",\n       \"                [24.77908333, 113.6734722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fff6649a0098892caefb57c187e2640d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9241f9a3d77dec734399707680c65b85 = $(`&lt;div id=&quot;html_9241f9a3d77dec734399707680c65b85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6734722             latitude:24.77908333             pred_result:40.23542785644531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fff6649a0098892caefb57c187e2640d.setContent(html_9241f9a3d77dec734399707680c65b85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a8c46b4755c44c5a977776a30596f10.bindPopup(popup_fff6649a0098892caefb57c187e2640d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93fddd7ca77dd7dd92c1f08bef089249 = L.circleMarker(\\n\",\n       \"                [24.68636111, 113.59708329999998],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_825f39c63a52e925f9682383ee89ea3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fcba834170eb0cdcc58a314b80298e0a = $(`&lt;div id=&quot;html_fcba834170eb0cdcc58a314b80298e0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.59708329999998             latitude:24.68636111             pred_result:41.743125915527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_825f39c63a52e925f9682383ee89ea3f.setContent(html_fcba834170eb0cdcc58a314b80298e0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93fddd7ca77dd7dd92c1f08bef089249.bindPopup(popup_825f39c63a52e925f9682383ee89ea3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d37b763baf217b14e171f7a12e403e4 = L.circleMarker(\\n\",\n       \"                [23.3667, 116.6794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13f87487251861d9e20c916455c38a42 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_989bf3f3bd3e6aedd8c2f4c8580e428c = $(`&lt;div id=&quot;html_989bf3f3bd3e6aedd8c2f4c8580e428c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6794             latitude:23.3667             pred_result:26.79338836669922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13f87487251861d9e20c916455c38a42.setContent(html_989bf3f3bd3e6aedd8c2f4c8580e428c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d37b763baf217b14e171f7a12e403e4.bindPopup(popup_13f87487251861d9e20c916455c38a42)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c94e39cfc4999871adb77519435b227a = L.circleMarker(\\n\",\n       \"                [23.3633, 116.7244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b529f8eade96b36595d742470f4cbec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a2498531d928c92b54aa9c7a01cb4c2 = $(`&lt;div id=&quot;html_6a2498531d928c92b54aa9c7a01cb4c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7244             latitude:23.3633             pred_result:26.886390686035156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b529f8eade96b36595d742470f4cbec.setContent(html_6a2498531d928c92b54aa9c7a01cb4c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c94e39cfc4999871adb77519435b227a.bindPopup(popup_3b529f8eade96b36595d742470f4cbec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7729d22c66ef6af392640394e998ac1d = L.circleMarker(\\n\",\n       \"                [23.2775, 116.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34995992b78b9bdc1eb8ba0c45ad3c5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b8545f1745a7ae5669c39a734ad95dcc = $(`&lt;div id=&quot;html_b8545f1745a7ae5669c39a734ad95dcc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7258             latitude:23.2775             pred_result:26.739757537841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34995992b78b9bdc1eb8ba0c45ad3c5d.setContent(html_b8545f1745a7ae5669c39a734ad95dcc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7729d22c66ef6af392640394e998ac1d.bindPopup(popup_34995992b78b9bdc1eb8ba0c45ad3c5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12272cb64ebc84fa5fa566c3ac1936c9 = L.circleMarker(\\n\",\n       \"                [23.4714, 116.7519],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f43bd849b272022d19ba913090c95dcc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b91be94e2603ab1e884281cc3b656df3 = $(`&lt;div id=&quot;html_b91be94e2603ab1e884281cc3b656df3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7519             latitude:23.4714             pred_result:27.56732940673828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f43bd849b272022d19ba913090c95dcc.setContent(html_b91be94e2603ab1e884281cc3b656df3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12272cb64ebc84fa5fa566c3ac1936c9.bindPopup(popup_f43bd849b272022d19ba913090c95dcc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a51aa47c74565cf3dcd57584c6fe015d = L.circleMarker(\\n\",\n       \"                [23.2539, 116.6092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1705704bafe35fcb9380990d1262cabb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3494e5569b9b74031a91220d76d7f8c2 = $(`&lt;div id=&quot;html_3494e5569b9b74031a91220d76d7f8c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6092             latitude:23.2539             pred_result:27.64019775390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1705704bafe35fcb9380990d1262cabb.setContent(html_3494e5569b9b74031a91220d76d7f8c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a51aa47c74565cf3dcd57584c6fe015d.bindPopup(popup_1705704bafe35fcb9380990d1262cabb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ad8b808f0183e5fe951c0396afae936 = L.circleMarker(\\n\",\n       \"                [23.2536, 116.4019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_747310305fad1ad19cd52702e487a18b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd42d5bd86e85748eb8b05247b45f5d1 = $(`&lt;div id=&quot;html_bd42d5bd86e85748eb8b05247b45f5d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.4019             latitude:23.2536             pred_result:27.465709686279297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_747310305fad1ad19cd52702e487a18b.setContent(html_bd42d5bd86e85748eb8b05247b45f5d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ad8b808f0183e5fe951c0396afae936.bindPopup(popup_747310305fad1ad19cd52702e487a18b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e8664a583e1b28a43b6cfad7d10eceb = L.circleMarker(\\n\",\n       \"                [21.2706, 110.3539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_679cdf6fee72299883cffe74b5d561eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19a917afd6dc3d182ba89a599ff42475 = $(`&lt;div id=&quot;html_19a917afd6dc3d182ba89a599ff42475&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3539             latitude:21.2706             pred_result:24.269176483154297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_679cdf6fee72299883cffe74b5d561eb.setContent(html_19a917afd6dc3d182ba89a599ff42475);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e8664a583e1b28a43b6cfad7d10eceb.bindPopup(popup_679cdf6fee72299883cffe74b5d561eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e13924b1c955ea195f7b18f0eff628b = L.circleMarker(\\n\",\n       \"                [21.2679, 110.3316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a0666d8d84733dbfb17e4e692986016 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_020153289f1387b7056eff9baa698883 = $(`&lt;div id=&quot;html_020153289f1387b7056eff9baa698883&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3316             latitude:21.2679             pred_result:24.572357177734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a0666d8d84733dbfb17e4e692986016.setContent(html_020153289f1387b7056eff9baa698883);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e13924b1c955ea195f7b18f0eff628b.bindPopup(popup_8a0666d8d84733dbfb17e4e692986016)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e88f70f387196794f88ea39adc7f6d34 = L.circleMarker(\\n\",\n       \"                [21.2567, 110.4558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92af6201b21fc229671b2c396abf3f4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03040ec92ea6033f3353b754bea02932 = $(`&lt;div id=&quot;html_03040ec92ea6033f3353b754bea02932&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4558             latitude:21.2567             pred_result:22.967498779296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92af6201b21fc229671b2c396abf3f4b.setContent(html_03040ec92ea6033f3353b754bea02932);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e88f70f387196794f88ea39adc7f6d34.bindPopup(popup_92af6201b21fc229671b2c396abf3f4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_071431dfc88eb53746f503563365c7e7 = L.circleMarker(\\n\",\n       \"                [21.4689, 111.0286],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a07f8352eb88733fd46c985fe6788264 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4226448374c5462cf6152e52d97cf1af = $(`&lt;div id=&quot;html_4226448374c5462cf6152e52d97cf1af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0286             latitude:21.4689             pred_result:23.942127227783203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a07f8352eb88733fd46c985fe6788264.setContent(html_4226448374c5462cf6152e52d97cf1af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_071431dfc88eb53746f503563365c7e7.bindPopup(popup_a07f8352eb88733fd46c985fe6788264)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48307832819932b67717090e5180dd41 = L.circleMarker(\\n\",\n       \"                [21.6533, 110.9294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd583a1e6887dd0453cacf1964eddac3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d6c10a2a6410c7faac98aa67e4dd807 = $(`&lt;div id=&quot;html_3d6c10a2a6410c7faac98aa67e4dd807&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9294             latitude:21.6533             pred_result:28.120513916015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd583a1e6887dd0453cacf1964eddac3.setContent(html_3d6c10a2a6410c7faac98aa67e4dd807);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48307832819932b67717090e5180dd41.bindPopup(popup_fd583a1e6887dd0453cacf1964eddac3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_333df33037c3c23cd7f0ef9ce9505479 = L.circleMarker(\\n\",\n       \"                [21.6669, 110.9067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d4d44efab79f1a28da3940c9f98675c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50af78e8677aa85fd3eca1b46f6f20dc = $(`&lt;div id=&quot;html_50af78e8677aa85fd3eca1b46f6f20dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9067             latitude:21.6669             pred_result:28.364482879638672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d4d44efab79f1a28da3940c9f98675c.setContent(html_50af78e8677aa85fd3eca1b46f6f20dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_333df33037c3c23cd7f0ef9ce9505479.bindPopup(popup_4d4d44efab79f1a28da3940c9f98675c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f44d0f1c7d7784a44b0325b7a2d877d6 = L.circleMarker(\\n\",\n       \"                [21.6828, 110.8592],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51a6f7fff6253bda80e8b3b3a82db805 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61358f9d1fe991a7d46c1e6e624b3083 = $(`&lt;div id=&quot;html_61358f9d1fe991a7d46c1e6e624b3083&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.8592             latitude:21.6828             pred_result:28.48525047302246             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51a6f7fff6253bda80e8b3b3a82db805.setContent(html_61358f9d1fe991a7d46c1e6e624b3083);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f44d0f1c7d7784a44b0325b7a2d877d6.bindPopup(popup_51a6f7fff6253bda80e8b3b3a82db805)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b6dd60974966284dc9e6135cf085bf9 = L.circleMarker(\\n\",\n       \"                [24.3289, 116.1278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45b810a5fbe8f2cb80ef97f50afe5138 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e21ae16a323c13ff84d7145e6fe1ec1 = $(`&lt;div id=&quot;html_2e21ae16a323c13ff84d7145e6fe1ec1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1278             latitude:24.3289             pred_result:30.27811622619629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45b810a5fbe8f2cb80ef97f50afe5138.setContent(html_2e21ae16a323c13ff84d7145e6fe1ec1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b6dd60974966284dc9e6135cf085bf9.bindPopup(popup_45b810a5fbe8f2cb80ef97f50afe5138)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0feeb82940f82c8428befc9e469a80e9 = L.circleMarker(\\n\",\n       \"                [24.2719, 116.0797],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7ff392363c3467c8d0d4f509b10d0aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3b4ff266ea37a4f282633ba146939d7 = $(`&lt;div id=&quot;html_c3b4ff266ea37a4f282633ba146939d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0797             latitude:24.2719             pred_result:29.967309951782227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7ff392363c3467c8d0d4f509b10d0aa.setContent(html_c3b4ff266ea37a4f282633ba146939d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0feeb82940f82c8428befc9e469a80e9.bindPopup(popup_e7ff392363c3467c8d0d4f509b10d0aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c40fb2ea7637ff7960457a07a6fc9488 = L.circleMarker(\\n\",\n       \"                [24.2654, 116.1248],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01df597f2c67da567e60a1c08b22078d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_835572c51e83f92e07a415670414fca1 = $(`&lt;div id=&quot;html_835572c51e83f92e07a415670414fca1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1248             latitude:24.2654             pred_result:31.253358840942383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01df597f2c67da567e60a1c08b22078d.setContent(html_835572c51e83f92e07a415670414fca1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c40fb2ea7637ff7960457a07a6fc9488.bindPopup(popup_01df597f2c67da567e60a1c08b22078d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80de6ea81acf620c23b84c63cac69e44 = L.circleMarker(\\n\",\n       \"                [23.7569, 114.6778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2039b240ab898eff968f5d56c0de2992 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af4bb86aaf6ecdcb1b5896a3c9b1f033 = $(`&lt;div id=&quot;html_af4bb86aaf6ecdcb1b5896a3c9b1f033&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6778             latitude:23.7569             pred_result:34.40248489379883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2039b240ab898eff968f5d56c0de2992.setContent(html_af4bb86aaf6ecdcb1b5896a3c9b1f033);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80de6ea81acf620c23b84c63cac69e44.bindPopup(popup_2039b240ab898eff968f5d56c0de2992)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef50197241549cb6cd6114b786992579 = L.circleMarker(\\n\",\n       \"                [23.7586, 114.6944],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4a2867e0730a37a74232c4832c28982 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92b1d5ce42c8a23a47922d0edeb751bc = $(`&lt;div id=&quot;html_92b1d5ce42c8a23a47922d0edeb751bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6944             latitude:23.7586             pred_result:34.54190444946289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4a2867e0730a37a74232c4832c28982.setContent(html_92b1d5ce42c8a23a47922d0edeb751bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef50197241549cb6cd6114b786992579.bindPopup(popup_b4a2867e0730a37a74232c4832c28982)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19aef5d1d44ad3788cc3f908b47de8f4 = L.circleMarker(\\n\",\n       \"                [23.7233, 114.6892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c85a92ac55ab62ae2c42236e49b87671 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4da81f885e54b3c3f167b4e1c1262fe7 = $(`&lt;div id=&quot;html_4da81f885e54b3c3f167b4e1c1262fe7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6892             latitude:23.7233             pred_result:34.673301696777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c85a92ac55ab62ae2c42236e49b87671.setContent(html_4da81f885e54b3c3f167b4e1c1262fe7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19aef5d1d44ad3788cc3f908b47de8f4.bindPopup(popup_c85a92ac55ab62ae2c42236e49b87671)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0a85e5f9933fef2213a14d81d51fea3 = L.circleMarker(\\n\",\n       \"                [21.8586, 111.9786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6ecdba4768017aa0c6098d365090611 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d09919738ab14a622ae272884120542c = $(`&lt;div id=&quot;html_d09919738ab14a622ae272884120542c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9786             latitude:21.8586             pred_result:30.329608917236328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6ecdba4768017aa0c6098d365090611.setContent(html_d09919738ab14a622ae272884120542c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0a85e5f9933fef2213a14d81d51fea3.bindPopup(popup_a6ecdba4768017aa0c6098d365090611)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ac38179507dd3ae72a7175f44accc16 = L.circleMarker(\\n\",\n       \"                [21.8536, 111.9508],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80578e137bacc165fcaa9e905ffbb40f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b43fb41722bc5f2a556c0cd1b4d7b5ea = $(`&lt;div id=&quot;html_b43fb41722bc5f2a556c0cd1b4d7b5ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9508             latitude:21.8536             pred_result:30.396160125732422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80578e137bacc165fcaa9e905ffbb40f.setContent(html_b43fb41722bc5f2a556c0cd1b4d7b5ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ac38179507dd3ae72a7175f44accc16.bindPopup(popup_80578e137bacc165fcaa9e905ffbb40f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dacbf41d3d15ba9b2e290cb45ecfe553 = L.circleMarker(\\n\",\n       \"                [21.865, 111.9494],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa2e8699c92a2e1361422a8897f8f82b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7e12a3f1ab9af1bdc12b154b7e1eb4c = $(`&lt;div id=&quot;html_a7e12a3f1ab9af1bdc12b154b7e1eb4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9494             latitude:21.865             pred_result:30.084957122802734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa2e8699c92a2e1361422a8897f8f82b.setContent(html_a7e12a3f1ab9af1bdc12b154b7e1eb4c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dacbf41d3d15ba9b2e290cb45ecfe553.bindPopup(popup_aa2e8699c92a2e1361422a8897f8f82b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39ff9d3c4a61480af2c2bd296c3d9f15 = L.circleMarker(\\n\",\n       \"                [23.6936, 113.0425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_313904d174ed1fccd0828e1b49213054 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc146f949b7d8438c54cef563d66f4dd = $(`&lt;div id=&quot;html_fc146f949b7d8438c54cef563d66f4dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0425             latitude:23.6936             pred_result:41.36410140991211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_313904d174ed1fccd0828e1b49213054.setContent(html_fc146f949b7d8438c54cef563d66f4dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39ff9d3c4a61480af2c2bd296c3d9f15.bindPopup(popup_313904d174ed1fccd0828e1b49213054)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d81e3a3e4aca1097a1f0c2fe424514a = L.circleMarker(\\n\",\n       \"                [23.7106, 113.0208],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22fa0804096d747f6d09c60e8e59cef5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdeca95c50ced0d01d005b4b8aabb03f = $(`&lt;div id=&quot;html_bdeca95c50ced0d01d005b4b8aabb03f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0208             latitude:23.7106             pred_result:42.143577575683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22fa0804096d747f6d09c60e8e59cef5.setContent(html_bdeca95c50ced0d01d005b4b8aabb03f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d81e3a3e4aca1097a1f0c2fe424514a.bindPopup(popup_22fa0804096d747f6d09c60e8e59cef5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c051146d206abf2ce06c33ae474ab799 = L.circleMarker(\\n\",\n       \"                [23.6714, 116.6339],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ed1040e4d5a3c9ea36a0e0173488a7d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4468ac816b5b202bfde2c7f435e43dee = $(`&lt;div id=&quot;html_4468ac816b5b202bfde2c7f435e43dee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6339             latitude:23.6714             pred_result:30.29296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ed1040e4d5a3c9ea36a0e0173488a7d.setContent(html_4468ac816b5b202bfde2c7f435e43dee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c051146d206abf2ce06c33ae474ab799.bindPopup(popup_1ed1040e4d5a3c9ea36a0e0173488a7d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae627001a19a1fd1651afdade4d3f9d8 = L.circleMarker(\\n\",\n       \"                [23.6706, 116.6447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2812aa76799a7deeec9a56d8ee3efb6f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c1b53773ad33735314451d4b0df1949 = $(`&lt;div id=&quot;html_0c1b53773ad33735314451d4b0df1949&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6447             latitude:23.6706             pred_result:28.383407592773438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2812aa76799a7deeec9a56d8ee3efb6f.setContent(html_0c1b53773ad33735314451d4b0df1949);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae627001a19a1fd1651afdade4d3f9d8.bindPopup(popup_2812aa76799a7deeec9a56d8ee3efb6f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_295535604d97c5153414c97fc708c669 = L.circleMarker(\\n\",\n       \"                [23.5353, 116.3697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4ac278a1b776fc897b55725e1e91fe3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e56e2212b126e42b905677eabdb576a = $(`&lt;div id=&quot;html_8e56e2212b126e42b905677eabdb576a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3697             latitude:23.5353             pred_result:28.393402099609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4ac278a1b776fc897b55725e1e91fe3.setContent(html_8e56e2212b126e42b905677eabdb576a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_295535604d97c5153414c97fc708c669.bindPopup(popup_c4ac278a1b776fc897b55725e1e91fe3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b80cde98848770c7865b165af8092fa8 = L.circleMarker(\\n\",\n       \"                [23.5486, 116.3242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80685d2f0af2779142066b9c4ef34a12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3fe7f32aac5da898e9478afe0cfe4aa = $(`&lt;div id=&quot;html_f3fe7f32aac5da898e9478afe0cfe4aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3242             latitude:23.5486             pred_result:29.09850311279297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80685d2f0af2779142066b9c4ef34a12.setContent(html_f3fe7f32aac5da898e9478afe0cfe4aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b80cde98848770c7865b165af8092fa8.bindPopup(popup_80685d2f0af2779142066b9c4ef34a12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6208790340d8cdf7f2fc91f3a68dcb99 = L.circleMarker(\\n\",\n       \"                [23.5739, 116.3594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86bfc4c35fe6c5200d2a8967de4872f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a42071ec2285642ee3c72f1ae4af5037 = $(`&lt;div id=&quot;html_a42071ec2285642ee3c72f1ae4af5037&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3594             latitude:23.5739             pred_result:28.78253173828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86bfc4c35fe6c5200d2a8967de4872f2.setContent(html_a42071ec2285642ee3c72f1ae4af5037);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6208790340d8cdf7f2fc91f3a68dcb99.bindPopup(popup_86bfc4c35fe6c5200d2a8967de4872f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_193fe60781b2e27e8bc32f8afea382cd = L.circleMarker(\\n\",\n       \"                [23.5292, 116.4094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61f0b152882e0c2db57d7d81e79f61b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7a19c588f9567ef53ff204e6b498311 = $(`&lt;div id=&quot;html_b7a19c588f9567ef53ff204e6b498311&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.4094             latitude:23.5292             pred_result:29.62749671936035             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61f0b152882e0c2db57d7d81e79f61b0.setContent(html_b7a19c588f9567ef53ff204e6b498311);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_193fe60781b2e27e8bc32f8afea382cd.bindPopup(popup_61f0b152882e0c2db57d7d81e79f61b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a394177b52801e57b9d9ab186d55f63f = L.circleMarker(\\n\",\n       \"                [22.9169, 112.0392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_62e9d9559193036d8a3c6f5acd6ebc32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_531cdbb144156badb948d27b4f53126f = $(`&lt;div id=&quot;html_531cdbb144156badb948d27b4f53126f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0392             latitude:22.9169             pred_result:36.54182434082031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_62e9d9559193036d8a3c6f5acd6ebc32.setContent(html_531cdbb144156badb948d27b4f53126f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a394177b52801e57b9d9ab186d55f63f.bindPopup(popup_62e9d9559193036d8a3c6f5acd6ebc32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e84c4e4d3338ff29cb208fd5690a124c = L.circleMarker(\\n\",\n       \"                [22.9394, 112.0369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_294a73e58e6a62b02dba997a622dcfb4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25838f114e1c77f213e88e81019a4d27 = $(`&lt;div id=&quot;html_25838f114e1c77f213e88e81019a4d27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0369             latitude:22.9394             pred_result:36.498779296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_294a73e58e6a62b02dba997a622dcfb4.setContent(html_25838f114e1c77f213e88e81019a4d27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e84c4e4d3338ff29cb208fd5690a124c.bindPopup(popup_294a73e58e6a62b02dba997a622dcfb4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de43df8678444f7acff5a478a81777fe = L.circleMarker(\\n\",\n       \"                [22.9539, 112.0539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_909d0dc59eb7283432920e4f70b13bfd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89bb55610bcd0ab37d8a131da0f8d92b = $(`&lt;div id=&quot;html_89bb55610bcd0ab37d8a131da0f8d92b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0539             latitude:22.9539             pred_result:36.5130615234375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_909d0dc59eb7283432920e4f70b13bfd.setContent(html_89bb55610bcd0ab37d8a131da0f8d92b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de43df8678444f7acff5a478a81777fe.bindPopup(popup_909d0dc59eb7283432920e4f70b13bfd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38a917e84d35236e822d604970bc9261 = L.circleMarker(\\n\",\n       \"                [24.3694, 102.5778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f460910d3bfd2238e7be7773dfac7568 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f636f8fce4a06380b386fa61546517a8 = $(`&lt;div id=&quot;html_f636f8fce4a06380b386fa61546517a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5778             latitude:24.3694             pred_result:25.10589027404785             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f460910d3bfd2238e7be7773dfac7568.setContent(html_f636f8fce4a06380b386fa61546517a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38a917e84d35236e822d604970bc9261.bindPopup(popup_f460910d3bfd2238e7be7773dfac7568)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78aa23352d4bfa3996bec1717310bbf9 = L.circleMarker(\\n\",\n       \"                [35.248889, 115.42277],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16987b58ba1083770c046fb3b2d79fec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91332c7f987969e4d16c1b73f034e186 = $(`&lt;div id=&quot;html_91332c7f987969e4d16c1b73f034e186&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.42277             latitude:35.248889             pred_result:63.00010681152344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16987b58ba1083770c046fb3b2d79fec.setContent(html_91332c7f987969e4d16c1b73f034e186);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78aa23352d4bfa3996bec1717310bbf9.bindPopup(popup_16987b58ba1083770c046fb3b2d79fec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8324307bc971b78e67f02ea0bf34c6a8 = L.circleMarker(\\n\",\n       \"                [35.2375, 115.474722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6888b93052559c73996f5cecff30c7fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65360ee8f0bd1b4b97a23e49c824c9b5 = $(`&lt;div id=&quot;html_65360ee8f0bd1b4b97a23e49c824c9b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.474722             latitude:35.2375             pred_result:62.77629089355469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6888b93052559c73996f5cecff30c7fe.setContent(html_65360ee8f0bd1b4b97a23e49c824c9b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8324307bc971b78e67f02ea0bf34c6a8.bindPopup(popup_6888b93052559c73996f5cecff30c7fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65a4ba68ae6c06352d8bf93947e40b1f = L.circleMarker(\\n\",\n       \"                [35.27, 115.455],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b91fd1b66c0eb22c46fa9bc0e92d77c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6895bc2fa48f8b23cd77c18d5895f6e7 = $(`&lt;div id=&quot;html_6895bc2fa48f8b23cd77c18d5895f6e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.455             latitude:35.27             pred_result:62.97273254394531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b91fd1b66c0eb22c46fa9bc0e92d77c.setContent(html_6895bc2fa48f8b23cd77c18d5895f6e7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65a4ba68ae6c06352d8bf93947e40b1f.bindPopup(popup_7b91fd1b66c0eb22c46fa9bc0e92d77c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_decff2d5d3804e97c4f56a061a818d73 = L.circleMarker(\\n\",\n       \"                [40.1097, 113.3819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_babb11492adf7570ea2a70299ad2cd6d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29fd78aab1b805fce3ac50ec43b05339 = $(`&lt;div id=&quot;html_29fd78aab1b805fce3ac50ec43b05339&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3819             latitude:40.1097             pred_result:51.55023193359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_babb11492adf7570ea2a70299ad2cd6d.setContent(html_29fd78aab1b805fce3ac50ec43b05339);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_decff2d5d3804e97c4f56a061a818d73.bindPopup(popup_babb11492adf7570ea2a70299ad2cd6d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb5664eb1a9312a34b82af5ed27ffce6 = L.circleMarker(\\n\",\n       \"                [40.0758, 113.2994],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7fa2e8ec4dd2ad0d25ed67300a0e62da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_158c94ba31e0219725e889cb5c4f0b23 = $(`&lt;div id=&quot;html_158c94ba31e0219725e889cb5c4f0b23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2994             latitude:40.0758             pred_result:52.49636459350586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7fa2e8ec4dd2ad0d25ed67300a0e62da.setContent(html_158c94ba31e0219725e889cb5c4f0b23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb5664eb1a9312a34b82af5ed27ffce6.bindPopup(popup_7fa2e8ec4dd2ad0d25ed67300a0e62da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9663da8cc0c565c1bf25cb13809439cb = L.circleMarker(\\n\",\n       \"                [40.0917, 113.3444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac8d9b8fc8cd14eebb63e49f696d1d78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_625a40f80223409d5e821d12c9ef3eb5 = $(`&lt;div id=&quot;html_625a40f80223409d5e821d12c9ef3eb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3444             latitude:40.0917             pred_result:51.758811950683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac8d9b8fc8cd14eebb63e49f696d1d78.setContent(html_625a40f80223409d5e821d12c9ef3eb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9663da8cc0c565c1bf25cb13809439cb.bindPopup(popup_ac8d9b8fc8cd14eebb63e49f696d1d78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39db04f22af9a327e192772e133a0881 = L.circleMarker(\\n\",\n       \"                [40.1269, 113.2661],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b15db15727c2159dbeeddbb3d301cc8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2d60da456cc8abad2aba5355af71852 = $(`&lt;div id=&quot;html_e2d60da456cc8abad2aba5355af71852&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2661             latitude:40.1269             pred_result:48.799049377441406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b15db15727c2159dbeeddbb3d301cc8.setContent(html_e2d60da456cc8abad2aba5355af71852);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39db04f22af9a327e192772e133a0881.bindPopup(popup_0b15db15727c2159dbeeddbb3d301cc8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6aadf503e7c69132af4176606ce8bb61 = L.circleMarker(\\n\",\n       \"                [40.0844, 113.2711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4614ba9cbb73a4394c183f54f6a78a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d7693781c3265496c976552dc3ba89c = $(`&lt;div id=&quot;html_2d7693781c3265496c976552dc3ba89c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2711             latitude:40.0844             pred_result:50.61104202270508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4614ba9cbb73a4394c183f54f6a78a6.setContent(html_2d7693781c3265496c976552dc3ba89c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6aadf503e7c69132af4176606ce8bb61.bindPopup(popup_d4614ba9cbb73a4394c183f54f6a78a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95e5557f6f778791570b58dfbc3ad09b = L.circleMarker(\\n\",\n       \"                [36.1542, 113.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56d575fb447df60b408d1b1a46aadf9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd117033ea96079a79e5183946099ed6 = $(`&lt;div id=&quot;html_fd117033ea96079a79e5183946099ed6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1097             latitude:36.1542             pred_result:73.90043640136719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56d575fb447df60b408d1b1a46aadf9d.setContent(html_fd117033ea96079a79e5183946099ed6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95e5557f6f778791570b58dfbc3ad09b.bindPopup(popup_56d575fb447df60b408d1b1a46aadf9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01b3d2b7e0f2bf54369f1c5cb6eb69f1 = L.circleMarker(\\n\",\n       \"                [36.1939, 113.0972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd5c138396b7ece136dc97d0ff75b18a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33b3a4338e7390dca72525f2985e2afc = $(`&lt;div id=&quot;html_33b3a4338e7390dca72525f2985e2afc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0972             latitude:36.1939             pred_result:73.96713256835938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd5c138396b7ece136dc97d0ff75b18a.setContent(html_33b3a4338e7390dca72525f2985e2afc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01b3d2b7e0f2bf54369f1c5cb6eb69f1.bindPopup(popup_fd5c138396b7ece136dc97d0ff75b18a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e339441d308a907db5d859972e06964 = L.circleMarker(\\n\",\n       \"                [36.2126, 113.0886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29ff02bab026e8958c5ea35d12b328e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50a0ea259f0a97281e6ebe1333abdfb4 = $(`&lt;div id=&quot;html_50a0ea259f0a97281e6ebe1333abdfb4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0886             latitude:36.2126             pred_result:74.45011138916016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29ff02bab026e8958c5ea35d12b328e5.setContent(html_50a0ea259f0a97281e6ebe1333abdfb4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e339441d308a907db5d859972e06964.bindPopup(popup_29ff02bab026e8958c5ea35d12b328e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc433fe68ce4f60aa6106b02a4503b08 = L.circleMarker(\\n\",\n       \"                [36.1855, 113.0844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04a0c3e2bf1c33e767c2528ec9feb5d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b161cdcd8e67a3c4d04bcb0f6d43fb7b = $(`&lt;div id=&quot;html_b161cdcd8e67a3c4d04bcb0f6d43fb7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0844444             latitude:36.1855             pred_result:74.2933349609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04a0c3e2bf1c33e767c2528ec9feb5d1.setContent(html_b161cdcd8e67a3c4d04bcb0f6d43fb7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc433fe68ce4f60aa6106b02a4503b08.bindPopup(popup_04a0c3e2bf1c33e767c2528ec9feb5d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f4120127e24060814ade0e4d1426d82 = L.circleMarker(\\n\",\n       \"                [36.0783, 111.5531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f184f287354f144f7f7a75aae881a48 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce8baa2b8db2f19781c74d024628f889 = $(`&lt;div id=&quot;html_ce8baa2b8db2f19781c74d024628f889&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5531             latitude:36.0783             pred_result:86.54731750488281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f184f287354f144f7f7a75aae881a48.setContent(html_ce8baa2b8db2f19781c74d024628f889);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f4120127e24060814ade0e4d1426d82.bindPopup(popup_9f184f287354f144f7f7a75aae881a48)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e47cab5a879a3e8fd37b4f89fa9b0c64 = L.circleMarker(\\n\",\n       \"                [36.0714, 111.5028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5c62e345a4683e051cd95ed295dafd2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78bbc5e101f1de15cc8b429d0389e25a = $(`&lt;div id=&quot;html_78bbc5e101f1de15cc8b429d0389e25a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5028             latitude:36.0714             pred_result:84.94673156738281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5c62e345a4683e051cd95ed295dafd2.setContent(html_78bbc5e101f1de15cc8b429d0389e25a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e47cab5a879a3e8fd37b4f89fa9b0c64.bindPopup(popup_e5c62e345a4683e051cd95ed295dafd2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_752454748af9495716b270b08a9a522a = L.circleMarker(\\n\",\n       \"                [36.0822, 111.5169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73ae2be2ce49ae53ae4ef641c4bb9670 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa968a0a0981feb4c898c9c69e7b9f08 = $(`&lt;div id=&quot;html_fa968a0a0981feb4c898c9c69e7b9f08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5169             latitude:36.0822             pred_result:86.37550354003906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73ae2be2ce49ae53ae4ef641c4bb9670.setContent(html_fa968a0a0981feb4c898c9c69e7b9f08);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_752454748af9495716b270b08a9a522a.bindPopup(popup_73ae2be2ce49ae53ae4ef641c4bb9670)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84c05d9825d84b9e7ac75431d4ff36e1 = L.circleMarker(\\n\",\n       \"                [36.0875, 111.5025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a18fa842a38e00a2e963e3c5a28b943d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b2d1fe4450b172a3ba9667664bedfe1 = $(`&lt;div id=&quot;html_4b2d1fe4450b172a3ba9667664bedfe1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5025             latitude:36.0875             pred_result:85.73710632324219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a18fa842a38e00a2e963e3c5a28b943d.setContent(html_4b2d1fe4450b172a3ba9667664bedfe1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84c05d9825d84b9e7ac75431d4ff36e1.bindPopup(popup_a18fa842a38e00a2e963e3c5a28b943d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9a1eb7e9e8ad178d7d9ef4b6c522a48 = L.circleMarker(\\n\",\n       \"                [36.0417, 111.4917],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6dff7908c5036834b7d5f3a5ee19eff2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e26d62598bc90b02fc4720c5a59fc2cc = $(`&lt;div id=&quot;html_e26d62598bc90b02fc4720c5a59fc2cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4917             latitude:36.0417             pred_result:85.09196472167969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6dff7908c5036834b7d5f3a5ee19eff2.setContent(html_e26d62598bc90b02fc4720c5a59fc2cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9a1eb7e9e8ad178d7d9ef4b6c522a48.bindPopup(popup_6dff7908c5036834b7d5f3a5ee19eff2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5385c2c0fae5c74bf4f5d10095befdf4 = L.circleMarker(\\n\",\n       \"                [37.8564, 113.5753],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9c063cc1cd4c30b4432212d7e3ffe26 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1730429b169014fcba8336d17161ba9 = $(`&lt;div id=&quot;html_c1730429b169014fcba8336d17161ba9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5753             latitude:37.8564             pred_result:80.22352600097656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9c063cc1cd4c30b4432212d7e3ffe26.setContent(html_c1730429b169014fcba8336d17161ba9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5385c2c0fae5c74bf4f5d10095befdf4.bindPopup(popup_b9c063cc1cd4c30b4432212d7e3ffe26)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_660793c6838eb67eabfb5f9c11467ce0 = L.circleMarker(\\n\",\n       \"                [37.8792, 113.4922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ed7487e10d87f8be33c8c133bef7ba3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fdc32ef5d730f799d644ea080065e2e2 = $(`&lt;div id=&quot;html_fdc32ef5d730f799d644ea080065e2e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4922             latitude:37.8792             pred_result:78.20691680908203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ed7487e10d87f8be33c8c133bef7ba3.setContent(html_fdc32ef5d730f799d644ea080065e2e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_660793c6838eb67eabfb5f9c11467ce0.bindPopup(popup_9ed7487e10d87f8be33c8c133bef7ba3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd7bd8e3bd0d7bdb0f3be22182705373 = L.circleMarker(\\n\",\n       \"                [37.8561, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b518bebba86480d6b9bef157b517ad55 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5cd51455cf86e8070aa77c225c86b8a6 = $(`&lt;div id=&quot;html_5cd51455cf86e8070aa77c225c86b8a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:37.8561             pred_result:80.36786651611328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b518bebba86480d6b9bef157b517ad55.setContent(html_5cd51455cf86e8070aa77c225c86b8a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd7bd8e3bd0d7bdb0f3be22182705373.bindPopup(popup_b518bebba86480d6b9bef157b517ad55)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_767a3e374dc1dfb24e79d25ec383e201 = L.circleMarker(\\n\",\n       \"                [37.8531, 113.6292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de0bb694464fe2b72c5ebaea1994205d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29a171c1f950fac384c5d1bedfa0be2d = $(`&lt;div id=&quot;html_29a171c1f950fac384c5d1bedfa0be2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6292             latitude:37.8531             pred_result:81.06228637695312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de0bb694464fe2b72c5ebaea1994205d.setContent(html_29a171c1f950fac384c5d1bedfa0be2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_767a3e374dc1dfb24e79d25ec383e201.bindPopup(popup_de0bb694464fe2b72c5ebaea1994205d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68751bda0b15a455586bc3db238cc4a0 = L.circleMarker(\\n\",\n       \"                [37.8694, 113.5689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6c341e5595f05316c2774aa919da334 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4860c7531f7cfbacd5c9493d379fb8f4 = $(`&lt;div id=&quot;html_4860c7531f7cfbacd5c9493d379fb8f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5689             latitude:37.8694             pred_result:80.08162689208984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6c341e5595f05316c2774aa919da334.setContent(html_4860c7531f7cfbacd5c9493d379fb8f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68751bda0b15a455586bc3db238cc4a0.bindPopup(popup_c6c341e5595f05316c2774aa919da334)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_701a025a059b71420d79719761c9cc42 = L.circleMarker(\\n\",\n       \"                [37.85, 113.5158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9f9c13eb17b839a652cdd5351de7b5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a13a5248fd5416d2d3a9bf4628b4f5b2 = $(`&lt;div id=&quot;html_a13a5248fd5416d2d3a9bf4628b4f5b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5158             latitude:37.85             pred_result:77.31151580810547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9f9c13eb17b839a652cdd5351de7b5d.setContent(html_a13a5248fd5416d2d3a9bf4628b4f5b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_701a025a059b71420d79719761c9cc42.bindPopup(popup_b9f9c13eb17b839a652cdd5351de7b5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08c9cffdf0594725ea8e912b9f37a0f5 = L.circleMarker(\\n\",\n       \"                [42.2814, 118.9233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dde0c29cb1e95c461c5d678d9f626367 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17c673f8b688b47b46da52c3adc0af51 = $(`&lt;div id=&quot;html_17c673f8b688b47b46da52c3adc0af51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9233             latitude:42.2814             pred_result:20.934629440307617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dde0c29cb1e95c461c5d678d9f626367.setContent(html_17c673f8b688b47b46da52c3adc0af51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08c9cffdf0594725ea8e912b9f37a0f5.bindPopup(popup_dde0c29cb1e95c461c5d678d9f626367)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a2f2ee4302a641a5fb34bbbb564851c = L.circleMarker(\\n\",\n       \"                [42.2725, 118.9572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f84e9150d9cacc6940240163489aa62 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95ae57e635992ae96b5e687c8ccce006 = $(`&lt;div id=&quot;html_95ae57e635992ae96b5e687c8ccce006&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9572             latitude:42.2725             pred_result:19.141956329345703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f84e9150d9cacc6940240163489aa62.setContent(html_95ae57e635992ae96b5e687c8ccce006);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a2f2ee4302a641a5fb34bbbb564851c.bindPopup(popup_0f84e9150d9cacc6940240163489aa62)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4eaf2a86a66488cb5fb16a5bcd5f2e90 = L.circleMarker(\\n\",\n       \"                [42.2556, 118.8789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8072a0a646b8e86ebf8c7367f574c602 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d9d16e90360db298c91115ee3f1401d = $(`&lt;div id=&quot;html_7d9d16e90360db298c91115ee3f1401d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.8789             latitude:42.2556             pred_result:17.45366668701172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8072a0a646b8e86ebf8c7367f574c602.setContent(html_7d9d16e90360db298c91115ee3f1401d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4eaf2a86a66488cb5fb16a5bcd5f2e90.bindPopup(popup_8072a0a646b8e86ebf8c7367f574c602)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ebbec6c5b138fdda192dcca7b3ee63d0 = L.circleMarker(\\n\",\n       \"                [41.1196, 123.044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f92fa0649d0012eee28f643d34b956c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be0dd4b2c03bbf9ba6964df5bd2715d0 = $(`&lt;div id=&quot;html_be0dd4b2c03bbf9ba6964df5bd2715d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.044             latitude:41.1196             pred_result:19.547653198242188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f92fa0649d0012eee28f643d34b956c.setContent(html_be0dd4b2c03bbf9ba6964df5bd2715d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ebbec6c5b138fdda192dcca7b3ee63d0.bindPopup(popup_6f92fa0649d0012eee28f643d34b956c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59a34b90c26fe5e38d4436ce2d6d9b7f = L.circleMarker(\\n\",\n       \"                [41.0931, 123.011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e9e725e61bf296cfa5cdf25824b9e66 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6046334636fc886eeb3a3b8e37edff09 = $(`&lt;div id=&quot;html_6046334636fc886eeb3a3b8e37edff09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.011             latitude:41.0931             pred_result:22.182817459106445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e9e725e61bf296cfa5cdf25824b9e66.setContent(html_6046334636fc886eeb3a3b8e37edff09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59a34b90c26fe5e38d4436ce2d6d9b7f.bindPopup(popup_2e9e725e61bf296cfa5cdf25824b9e66)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f406ee0a3a824cf8baaecdd7a1cfdb66 = L.circleMarker(\\n\",\n       \"                [41.1442, 123.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_910e892c6a3738916fc0e5f3de8e08e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5bc46e3a0b158c66b8430a532812575 = $(`&lt;div id=&quot;html_d5bc46e3a0b158c66b8430a532812575&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0485             latitude:41.1442             pred_result:24.02237892150879             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_910e892c6a3738916fc0e5f3de8e08e9.setContent(html_d5bc46e3a0b158c66b8430a532812575);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f406ee0a3a824cf8baaecdd7a1cfdb66.bindPopup(popup_910e892c6a3738916fc0e5f3de8e08e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11049a139770c0b1495abc1488f3ca9b = L.circleMarker(\\n\",\n       \"                [41.0971, 122.9642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03b343585e767626cd27b736a1188c94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa0947aeca62a73ccfb4114077dabb6f = $(`&lt;div id=&quot;html_fa0947aeca62a73ccfb4114077dabb6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.9642             latitude:41.0971             pred_result:24.455699920654297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03b343585e767626cd27b736a1188c94.setContent(html_fa0947aeca62a73ccfb4114077dabb6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11049a139770c0b1495abc1488f3ca9b.bindPopup(popup_03b343585e767626cd27b736a1188c94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f235250c664336c97d6a221326d18f8 = L.circleMarker(\\n\",\n       \"                [41.0833, 122.9481],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5a304640a33048a324d9e6452f9685b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7ec145980efc829504c324ab747f389 = $(`&lt;div id=&quot;html_f7ec145980efc829504c324ab747f389&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.9481             latitude:41.0833             pred_result:20.520137786865234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5a304640a33048a324d9e6452f9685b.setContent(html_f7ec145980efc829504c324ab747f389);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f235250c664336c97d6a221326d18f8.bindPopup(popup_c5a304640a33048a324d9e6452f9685b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_915d5b66073f5c210d00582185d47b94 = L.circleMarker(\\n\",\n       \"                [41.0831, 123.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_556b01355c94dd2add3f90f8833519bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eafce588b18e8ef9a4a458ef6faf82fe = $(`&lt;div id=&quot;html_eafce588b18e8ef9a4a458ef6faf82fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0156             latitude:41.0831             pred_result:21.52300262451172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_556b01355c94dd2add3f90f8833519bf.setContent(html_eafce588b18e8ef9a4a458ef6faf82fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_915d5b66073f5c210d00582185d47b94.bindPopup(popup_556b01355c94dd2add3f90f8833519bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24b3c2c35fac9f7981dcdceb09ab270b = L.circleMarker(\\n\",\n       \"                [41.0228, 123.1289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ceb72cbffce37c3b663fe23a619a538 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_923dadf08105ee6b20e0205b17fb1999 = $(`&lt;div id=&quot;html_923dadf08105ee6b20e0205b17fb1999&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1289             latitude:41.0228             pred_result:15.297608375549316             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ceb72cbffce37c3b663fe23a619a538.setContent(html_923dadf08105ee6b20e0205b17fb1999);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24b3c2c35fac9f7981dcdceb09ab270b.bindPopup(popup_5ceb72cbffce37c3b663fe23a619a538)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8d9668c5debb87f6c38e842727e2e95 = L.circleMarker(\\n\",\n       \"                [41.8469, 123.81],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9513f0cf7f790c3c88ff2c411cb4860 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b61be8930056accc5a9722c175acd3ad = $(`&lt;div id=&quot;html_b61be8930056accc5a9722c175acd3ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.81             latitude:41.8469             pred_result:21.920015335083008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9513f0cf7f790c3c88ff2c411cb4860.setContent(html_b61be8930056accc5a9722c175acd3ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8d9668c5debb87f6c38e842727e2e95.bindPopup(popup_e9513f0cf7f790c3c88ff2c411cb4860)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b73320a77fc48d124c2a0bc09168cf53 = L.circleMarker(\\n\",\n       \"                [41.8828, 123.9169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df01b9642348c9fd3e1fbe4227f1fe6f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f319061c88b909786bb868a60060c5c9 = $(`&lt;div id=&quot;html_f319061c88b909786bb868a60060c5c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9169             latitude:41.8828             pred_result:26.76995086669922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df01b9642348c9fd3e1fbe4227f1fe6f.setContent(html_f319061c88b909786bb868a60060c5c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b73320a77fc48d124c2a0bc09168cf53.bindPopup(popup_df01b9642348c9fd3e1fbe4227f1fe6f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afb5d8c0677b3ae5939f8d1bc09f5bfe = L.circleMarker(\\n\",\n       \"                [41.8625, 124.0383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_889e1b099798394cf82eef3cb7f107c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a9d5fdf23d798e33d875d299ace6f1d = $(`&lt;div id=&quot;html_7a9d5fdf23d798e33d875d299ace6f1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.0383             latitude:41.8625             pred_result:18.892335891723633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_889e1b099798394cf82eef3cb7f107c0.setContent(html_7a9d5fdf23d798e33d875d299ace6f1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afb5d8c0677b3ae5939f8d1bc09f5bfe.bindPopup(popup_889e1b099798394cf82eef3cb7f107c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03e47d0a6dc091bc16885579ecbfbea0 = L.circleMarker(\\n\",\n       \"                [41.8594, 123.9],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_092484992086625f5308e17bd2c37fbe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_906b19f3ca17830474d9b12d5448b0a6 = $(`&lt;div id=&quot;html_906b19f3ca17830474d9b12d5448b0a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9             latitude:41.8594             pred_result:25.45132827758789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_092484992086625f5308e17bd2c37fbe.setContent(html_906b19f3ca17830474d9b12d5448b0a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03e47d0a6dc091bc16885579ecbfbea0.bindPopup(popup_092484992086625f5308e17bd2c37fbe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87d16a10eab86f9f434084cc75f7b310 = L.circleMarker(\\n\",\n       \"                [41.8864, 124.0878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e97da9a8dc945a0296edba165f76414c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1dcf466c79b9c5d52cc47ca91541b978 = $(`&lt;div id=&quot;html_1dcf466c79b9c5d52cc47ca91541b978&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.0878             latitude:41.8864             pred_result:15.881721496582031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e97da9a8dc945a0296edba165f76414c.setContent(html_1dcf466c79b9c5d52cc47ca91541b978);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87d16a10eab86f9f434084cc75f7b310.bindPopup(popup_e97da9a8dc945a0296edba165f76414c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83004ab84666a8bed827db5ab7e913e9 = L.circleMarker(\\n\",\n       \"                [41.8417, 123.7117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1205c129ecc92d31794e3683e61f3f94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c240d480e24c521351b34e7ef7783134 = $(`&lt;div id=&quot;html_c240d480e24c521351b34e7ef7783134&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7117             latitude:41.8417             pred_result:21.453163146972656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1205c129ecc92d31794e3683e61f3f94.setContent(html_c240d480e24c521351b34e7ef7783134);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83004ab84666a8bed827db5ab7e913e9.bindPopup(popup_1205c129ecc92d31794e3683e61f3f94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_016aaab4469faf3eb750af03e6cff733 = L.circleMarker(\\n\",\n       \"                [41.3283, 123.8436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45d9f0d5cbbb6e161966f6b0db399e9b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_534561e5dbd636b22866de49612d0d69 = $(`&lt;div id=&quot;html_534561e5dbd636b22866de49612d0d69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8436             latitude:41.3283             pred_result:14.483871459960938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45d9f0d5cbbb6e161966f6b0db399e9b.setContent(html_534561e5dbd636b22866de49612d0d69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_016aaab4469faf3eb750af03e6cff733.bindPopup(popup_45d9f0d5cbbb6e161966f6b0db399e9b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e40d04c67f41bd70c0f5929e8bf9d783 = L.circleMarker(\\n\",\n       \"                [41.3369, 123.7528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3bc7e119d3b8a43b3f7b78c55e5da8b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91692c627979b48d3bc0601d7deb721b = $(`&lt;div id=&quot;html_91692c627979b48d3bc0601d7deb721b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7528             latitude:41.3369             pred_result:15.73183822631836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3bc7e119d3b8a43b3f7b78c55e5da8b5.setContent(html_91692c627979b48d3bc0601d7deb721b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e40d04c67f41bd70c0f5929e8bf9d783.bindPopup(popup_3bc7e119d3b8a43b3f7b78c55e5da8b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c66c8583162bf186ac01788330b55e9b = L.circleMarker(\\n\",\n       \"                [41.3047, 123.7308],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c001fc6990aebef98a8d1f90000303d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4248dea9201ec51dbfbdb0ae4c0e9e27 = $(`&lt;div id=&quot;html_4248dea9201ec51dbfbdb0ae4c0e9e27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7308             latitude:41.3047             pred_result:17.854455947875977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c001fc6990aebef98a8d1f90000303d1.setContent(html_4248dea9201ec51dbfbdb0ae4c0e9e27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c66c8583162bf186ac01788330b55e9b.bindPopup(popup_c001fc6990aebef98a8d1f90000303d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87fe35e125411f6e065e96c1f79fc133 = L.circleMarker(\\n\",\n       \"                [41.2864, 123.7669],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19b98b4d2dfd5c6bc14df14f231d66d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d8c2720d408ec8f022b1f7f8db3da20 = $(`&lt;div id=&quot;html_9d8c2720d408ec8f022b1f7f8db3da20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7669             latitude:41.2864             pred_result:16.634944915771484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19b98b4d2dfd5c6bc14df14f231d66d8.setContent(html_9d8c2720d408ec8f022b1f7f8db3da20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87fe35e125411f6e065e96c1f79fc133.bindPopup(popup_19b98b4d2dfd5c6bc14df14f231d66d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3105885843a49f957dff94179d10abbc = L.circleMarker(\\n\",\n       \"                [41.2692, 123.7989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7444595bd4141a0ab395e0a6fd414e83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4fd171146711b97a80c318085f180e2 = $(`&lt;div id=&quot;html_b4fd171146711b97a80c318085f180e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7989             latitude:41.2692             pred_result:15.720166206359863             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7444595bd4141a0ab395e0a6fd414e83.setContent(html_b4fd171146711b97a80c318085f180e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3105885843a49f957dff94179d10abbc.bindPopup(popup_7444595bd4141a0ab395e0a6fd414e83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4a77322ff49856acc316985efb7f1cd = L.circleMarker(\\n\",\n       \"                [41.3472, 123.8142],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_980df9b4a65fddd83812980a93bc0047 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc568a67325928c3912f3815fe99e76f = $(`&lt;div id=&quot;html_bc568a67325928c3912f3815fe99e76f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8142             latitude:41.3472             pred_result:18.166988372802734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_980df9b4a65fddd83812980a93bc0047.setContent(html_bc568a67325928c3912f3815fe99e76f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4a77322ff49856acc316985efb7f1cd.bindPopup(popup_980df9b4a65fddd83812980a93bc0047)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9631c416070aa6063611304dbee1b4ae = L.circleMarker(\\n\",\n       \"                [41.0781, 121.0986],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0368277b2de755d81414e9afab250bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89a7d322b3ef89287174c12c66264fd1 = $(`&lt;div id=&quot;html_89a7d322b3ef89287174c12c66264fd1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.0986             latitude:41.0781             pred_result:25.137109756469727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0368277b2de755d81414e9afab250bf.setContent(html_89a7d322b3ef89287174c12c66264fd1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9631c416070aa6063611304dbee1b4ae.bindPopup(popup_c0368277b2de755d81414e9afab250bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2568e2aec681dae20b74a06b2a698815 = L.circleMarker(\\n\",\n       \"                [41.1219, 121.2008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df3edcde745aa67fad33e27308cb95c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebbbbbbd29d94e4c545853e96c2694f8 = $(`&lt;div id=&quot;html_ebbbbbbd29d94e4c545853e96c2694f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2008             latitude:41.1219             pred_result:25.967926025390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df3edcde745aa67fad33e27308cb95c9.setContent(html_ebbbbbbd29d94e4c545853e96c2694f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2568e2aec681dae20b74a06b2a698815.bindPopup(popup_df3edcde745aa67fad33e27308cb95c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2da3ba3f4b5293faea4a2bb62238283a = L.circleMarker(\\n\",\n       \"                [41.1222, 121.1178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f4db1fafac7388623bfd7128b225676 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b23e523d962b03c02ec983696f1282b7 = $(`&lt;div id=&quot;html_b23e523d962b03c02ec983696f1282b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1178             latitude:41.1222             pred_result:25.392379760742188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f4db1fafac7388623bfd7128b225676.setContent(html_b23e523d962b03c02ec983696f1282b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2da3ba3f4b5293faea4a2bb62238283a.bindPopup(popup_8f4db1fafac7388623bfd7128b225676)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_662939915fb85a97600c228256fd9e51 = L.circleMarker(\\n\",\n       \"                [41.1386, 121.1303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e687e7b0dc12302c90da71ac1f82ea4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_546783e33ee731d33442c9bf65dff5ba = $(`&lt;div id=&quot;html_546783e33ee731d33442c9bf65dff5ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1303             latitude:41.1386             pred_result:23.252355575561523             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e687e7b0dc12302c90da71ac1f82ea4.setContent(html_546783e33ee731d33442c9bf65dff5ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_662939915fb85a97600c228256fd9e51.bindPopup(popup_8e687e7b0dc12302c90da71ac1f82ea4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a76d5afd2418259ad5e0208e2ade2984 = L.circleMarker(\\n\",\n       \"                [43.8875, 126.555],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_189bec0ae78d734286e38b414160fdcd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04bc7602bac172b66d2c40dde816f26b = $(`&lt;div id=&quot;html_04bc7602bac172b66d2c40dde816f26b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.555             latitude:43.8875             pred_result:14.617424011230469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_189bec0ae78d734286e38b414160fdcd.setContent(html_04bc7602bac172b66d2c40dde816f26b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a76d5afd2418259ad5e0208e2ade2984.bindPopup(popup_189bec0ae78d734286e38b414160fdcd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4bc2eb8dba2525e1b43ad99fd2fcdb1d = L.circleMarker(\\n\",\n       \"                [43.8358, 126.5844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_015fa3dbac516daee4e90648f8a2183e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_583fb94e709a521f0d12c6c8ef068eed = $(`&lt;div id=&quot;html_583fb94e709a521f0d12c6c8ef068eed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5844             latitude:43.8358             pred_result:13.10336971282959             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_015fa3dbac516daee4e90648f8a2183e.setContent(html_583fb94e709a521f0d12c6c8ef068eed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4bc2eb8dba2525e1b43ad99fd2fcdb1d.bindPopup(popup_015fa3dbac516daee4e90648f8a2183e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46a1ac91f4ec60797e0b0fbac69f4dd6 = L.circleMarker(\\n\",\n       \"                [43.8228, 126.4978],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33f7fa519e2183678aa8cd190f4a337f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ea8cb5c488aad998f3f4495518375f1 = $(`&lt;div id=&quot;html_6ea8cb5c488aad998f3f4495518375f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4978             latitude:43.8228             pred_result:11.296195983886719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33f7fa519e2183678aa8cd190f4a337f.setContent(html_6ea8cb5c488aad998f3f4495518375f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46a1ac91f4ec60797e0b0fbac69f4dd6.bindPopup(popup_33f7fa519e2183678aa8cd190f4a337f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6bd18e4aadcd48ba99a1bc741ba3ee1e = L.circleMarker(\\n\",\n       \"                [43.8947, 126.5786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0418c7d1de5aa76eee219f8bbb9d9901 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76a6e70a1b4487082a55b377c48edc5f = $(`&lt;div id=&quot;html_76a6e70a1b4487082a55b377c48edc5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5786             latitude:43.8947             pred_result:12.378534317016602             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0418c7d1de5aa76eee219f8bbb9d9901.setContent(html_76a6e70a1b4487082a55b377c48edc5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6bd18e4aadcd48ba99a1bc741ba3ee1e.bindPopup(popup_0418c7d1de5aa76eee219f8bbb9d9901)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ec73d87b54f236438319dfebdb1578e = L.circleMarker(\\n\",\n       \"                [43.8256, 126.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c60445bbf6c6516e4b0187c29b6e5c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eea18ec303e1f4a29328ffcb820baf54 = $(`&lt;div id=&quot;html_eea18ec303e1f4a29328ffcb820baf54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.55             latitude:43.8256             pred_result:13.40256118774414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c60445bbf6c6516e4b0187c29b6e5c7.setContent(html_eea18ec303e1f4a29328ffcb820baf54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ec73d87b54f236438319dfebdb1578e.bindPopup(popup_3c60445bbf6c6516e4b0187c29b6e5c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_beb0807a380c4e50986c6a84c6d23dd5 = L.circleMarker(\\n\",\n       \"                [43.7256, 126.6772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_605d7fc6c1faef154184e55995a68f8b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_433fea415d3fa0b7152b2ad9f2d38df8 = $(`&lt;div id=&quot;html_433fea415d3fa0b7152b2ad9f2d38df8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6772             latitude:43.7256             pred_result:10.871650695800781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_605d7fc6c1faef154184e55995a68f8b.setContent(html_433fea415d3fa0b7152b2ad9f2d38df8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_beb0807a380c4e50986c6a84c6d23dd5.bindPopup(popup_605d7fc6c1faef154184e55995a68f8b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6909494359874517813ac60304f24ce1 = L.circleMarker(\\n\",\n       \"                [47.3636, 123.9305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d739fc5d81225813b301cae2109f2b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01cc8aa72711e3fd3608788f29c7ce4d = $(`&lt;div id=&quot;html_01cc8aa72711e3fd3608788f29c7ce4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9305             latitude:47.3636             pred_result:21.55084228515625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d739fc5d81225813b301cae2109f2b6.setContent(html_01cc8aa72711e3fd3608788f29c7ce4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6909494359874517813ac60304f24ce1.bindPopup(popup_3d739fc5d81225813b301cae2109f2b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b72f9bec6ecd3de9f5b9c19fe0fc6252 = L.circleMarker(\\n\",\n       \"                [47.3386, 123.9305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1705d2bf352a33dfb384995865fbd150 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c34463988ad4b9e58fae88fc976f8cdc = $(`&lt;div id=&quot;html_c34463988ad4b9e58fae88fc976f8cdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9305             latitude:47.3386             pred_result:22.309955596923828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1705d2bf352a33dfb384995865fbd150.setContent(html_c34463988ad4b9e58fae88fc976f8cdc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b72f9bec6ecd3de9f5b9c19fe0fc6252.bindPopup(popup_1705d2bf352a33dfb384995865fbd150)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b677abafb651783510de2b3147b22ef = L.circleMarker(\\n\",\n       \"                [47.3227, 123.9483],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce9807ba4afeb18e94c93b4d137a0e9b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62af0292b6eae841ade927ca8dabab50 = $(`&lt;div id=&quot;html_62af0292b6eae841ade927ca8dabab50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9483             latitude:47.3227             pred_result:23.376436233520508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce9807ba4afeb18e94c93b4d137a0e9b.setContent(html_62af0292b6eae841ade927ca8dabab50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b677abafb651783510de2b3147b22ef.bindPopup(popup_ce9807ba4afeb18e94c93b4d137a0e9b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6e33bef8080b68ef2a8c91b840a15c6 = L.circleMarker(\\n\",\n       \"                [47.203, 123.6261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ac0cb724e4ba26189571676663b4be7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7db62d15fb939df41ecac3408be28b88 = $(`&lt;div id=&quot;html_7db62d15fb939df41ecac3408be28b88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.6261             latitude:47.203             pred_result:20.89366912841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ac0cb724e4ba26189571676663b4be7.setContent(html_7db62d15fb939df41ecac3408be28b88);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6e33bef8080b68ef2a8c91b840a15c6.bindPopup(popup_2ac0cb724e4ba26189571676663b4be7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70c8d7afacc19bb05a24041859cacbda = L.circleMarker(\\n\",\n       \"                [47.2988, 123.945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bac3d651ac5fbd44c53c77737ff6b5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94d36aa306f9f7b0c1570a49876aa1dd = $(`&lt;div id=&quot;html_94d36aa306f9f7b0c1570a49876aa1dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.945             latitude:47.2988             pred_result:24.055089950561523             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bac3d651ac5fbd44c53c77737ff6b5a.setContent(html_94d36aa306f9f7b0c1570a49876aa1dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70c8d7afacc19bb05a24041859cacbda.bindPopup(popup_8bac3d651ac5fbd44c53c77737ff6b5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3778e90501148f1d171797656ebb1948 = L.circleMarker(\\n\",\n       \"                [44.56100000000001, 129.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe5e7e689a120d613c37f53f40319afc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e3aa1d56ef008e6ffb2c45bc9b28ddf = $(`&lt;div id=&quot;html_4e3aa1d56ef008e6ffb2c45bc9b28ddf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.61             latitude:44.56100000000001             pred_result:10.56041145324707             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe5e7e689a120d613c37f53f40319afc.setContent(html_4e3aa1d56ef008e6ffb2c45bc9b28ddf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3778e90501148f1d171797656ebb1948.bindPopup(popup_fe5e7e689a120d613c37f53f40319afc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_475adf76a069028d7c6a082ac544d6e3 = L.circleMarker(\\n\",\n       \"                [44.5782, 129.6115],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e2d49221d94135833e5ed2344d63736 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13ceb760220a20e410ad68b28975d95c = $(`&lt;div id=&quot;html_13ceb760220a20e410ad68b28975d95c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6115             latitude:44.5782             pred_result:8.932269096374512             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e2d49221d94135833e5ed2344d63736.setContent(html_13ceb760220a20e410ad68b28975d95c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_475adf76a069028d7c6a082ac544d6e3.bindPopup(popup_6e2d49221d94135833e5ed2344d63736)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7dac10cbe67e131352b8813dd4196dfd = L.circleMarker(\\n\",\n       \"                [44.5952, 129.5902],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c53f7ea36fd5d8450549ca6ccd33c6a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85fcf84a19968e95404d115e828575c5 = $(`&lt;div id=&quot;html_85fcf84a19968e95404d115e828575c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.5902             latitude:44.5952             pred_result:8.907154083251953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c53f7ea36fd5d8450549ca6ccd33c6a.setContent(html_85fcf84a19968e95404d115e828575c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7dac10cbe67e131352b8813dd4196dfd.bindPopup(popup_5c53f7ea36fd5d8450549ca6ccd33c6a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc3de1ca3941b250ebcee0972c3430f9 = L.circleMarker(\\n\",\n       \"                [44.6104, 129.6459],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_656b80414401d9e543cf06fd5d3321f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_deefbd73f3346812a61a0a4cb32c0117 = $(`&lt;div id=&quot;html_deefbd73f3346812a61a0a4cb32c0117&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6459             latitude:44.6104             pred_result:9.532312393188477             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_656b80414401d9e543cf06fd5d3321f4.setContent(html_deefbd73f3346812a61a0a4cb32c0117);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc3de1ca3941b250ebcee0972c3430f9.bindPopup(popup_656b80414401d9e543cf06fd5d3321f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_299be481fd54b890021aff1f7a48eec6 = L.circleMarker(\\n\",\n       \"                [44.5462, 129.6386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_523e89fc7346526c073a0b9c5ec932b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_169c68d53243c6bcd1c09a4661d0e82c = $(`&lt;div id=&quot;html_169c68d53243c6bcd1c09a4661d0e82c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6386             latitude:44.5462             pred_result:9.533479690551758             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_523e89fc7346526c073a0b9c5ec932b9.setContent(html_169c68d53243c6bcd1c09a4661d0e82c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_299be481fd54b890021aff1f7a48eec6.bindPopup(popup_523e89fc7346526c073a0b9c5ec932b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f987bd1f7f57b8cae4a41eaf3d1270ed = L.circleMarker(\\n\",\n       \"                [46.0347, 124.8354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b531d4b45164b982e8f4f93ed780e8d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25bb9f6a44bd7de4e931b1f265f5a618 = $(`&lt;div id=&quot;html_25bb9f6a44bd7de4e931b1f265f5a618&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8354             latitude:46.0347             pred_result:14.066194534301758             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b531d4b45164b982e8f4f93ed780e8d8.setContent(html_25bb9f6a44bd7de4e931b1f265f5a618);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f987bd1f7f57b8cae4a41eaf3d1270ed.bindPopup(popup_b531d4b45164b982e8f4f93ed780e8d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f46386cc4972f94737c9f927ba7aeaca = L.circleMarker(\\n\",\n       \"                [46.528, 125.112],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20d32dc9896b3d9d6d14aa02ece18658 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a77ff51fe6c2a4a37bf01e9dbef60211 = $(`&lt;div id=&quot;html_a77ff51fe6c2a4a37bf01e9dbef60211&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.112             latitude:46.528             pred_result:23.837703704833984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20d32dc9896b3d9d6d14aa02ece18658.setContent(html_a77ff51fe6c2a4a37bf01e9dbef60211);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f46386cc4972f94737c9f927ba7aeaca.bindPopup(popup_20d32dc9896b3d9d6d14aa02ece18658)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4db2e7b070fb5f68c436f57f3500b36 = L.circleMarker(\\n\",\n       \"                [46.3991, 124.8847],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7de59b875781a5a1c89917bbc19a7a13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ffe269cbeb0ad88784161404f01b4f20 = $(`&lt;div id=&quot;html_ffe269cbeb0ad88784161404f01b4f20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8847             latitude:46.3991             pred_result:19.17789077758789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7de59b875781a5a1c89917bbc19a7a13.setContent(html_ffe269cbeb0ad88784161404f01b4f20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4db2e7b070fb5f68c436f57f3500b36.bindPopup(popup_7de59b875781a5a1c89917bbc19a7a13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18634e79b0c18501886005fce9b6781f = L.circleMarker(\\n\",\n       \"                [46.5776, 125.1386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66301f4ea3b7db9a83fc6e9644659449 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ffe132d0500a591828477e53615178a = $(`&lt;div id=&quot;html_9ffe132d0500a591828477e53615178a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1386             latitude:46.5776             pred_result:20.339109420776367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66301f4ea3b7db9a83fc6e9644659449.setContent(html_9ffe132d0500a591828477e53615178a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18634e79b0c18501886005fce9b6781f.bindPopup(popup_66301f4ea3b7db9a83fc6e9644659449)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc44fe64b5f8b4364e468d6eacb161b3 = L.circleMarker(\\n\",\n       \"                [46.6219, 124.8648],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff183c5a60706b63c401245156b6b1ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2cc77c4b9d702bd4cee214b51b34b4b0 = $(`&lt;div id=&quot;html_2cc77c4b9d702bd4cee214b51b34b4b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8648             latitude:46.6219             pred_result:22.716629028320312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff183c5a60706b63c401245156b6b1ef.setContent(html_2cc77c4b9d702bd4cee214b51b34b4b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc44fe64b5f8b4364e468d6eacb161b3.bindPopup(popup_ff183c5a60706b63c401245156b6b1ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9797b43a9368f98d24acddfca78a1bb = L.circleMarker(\\n\",\n       \"                [31.3508, 118.3528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eee6c1865bbcd5a2d3f8bbdddc00d5c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22bcd2181a92f206f50a5057d6bf7b57 = $(`&lt;div id=&quot;html_22bcd2181a92f206f50a5057d6bf7b57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3528             latitude:31.3508             pred_result:56.511192321777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eee6c1865bbcd5a2d3f8bbdddc00d5c6.setContent(html_22bcd2181a92f206f50a5057d6bf7b57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9797b43a9368f98d24acddfca78a1bb.bindPopup(popup_eee6c1865bbcd5a2d3f8bbdddc00d5c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5dcc4ba18d46571a0241ab6d80fc886d = L.circleMarker(\\n\",\n       \"                [31.4189, 118.37],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_085ad18aeb21d6d4821ab298f42a886e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eabaa42e0bf1d59509f76344bfc1c0fa = $(`&lt;div id=&quot;html_eabaa42e0bf1d59509f76344bfc1c0fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.37             latitude:31.4189             pred_result:51.481224060058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_085ad18aeb21d6d4821ab298f42a886e.setContent(html_eabaa42e0bf1d59509f76344bfc1c0fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5dcc4ba18d46571a0241ab6d80fc886d.bindPopup(popup_085ad18aeb21d6d4821ab298f42a886e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_975097ffeedece1f3dd53b65d94463dd = L.circleMarker(\\n\",\n       \"                [31.3178, 118.3708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1111c8f8baf8bf1f8da0ec1067607652 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbcaa42c106623314dcbd0a068796e4d = $(`&lt;div id=&quot;html_fbcaa42c106623314dcbd0a068796e4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3708             latitude:31.3178             pred_result:52.77471160888672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1111c8f8baf8bf1f8da0ec1067607652.setContent(html_fbcaa42c106623314dcbd0a068796e4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_975097ffeedece1f3dd53b65d94463dd.bindPopup(popup_1111c8f8baf8bf1f8da0ec1067607652)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbdd65630e323aabb5bdeb869df01d94 = L.circleMarker(\\n\",\n       \"                [31.3839, 118.4022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1e30355b0595f96c8f6bfb6a9b4489e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46397b80f0d2b095b21bee94aa7a65b4 = $(`&lt;div id=&quot;html_46397b80f0d2b095b21bee94aa7a65b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4022             latitude:31.3839             pred_result:51.22932434082031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1e30355b0595f96c8f6bfb6a9b4489e.setContent(html_46397b80f0d2b095b21bee94aa7a65b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbdd65630e323aabb5bdeb869df01d94.bindPopup(popup_f1e30355b0595f96c8f6bfb6a9b4489e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d64fd44d38c80332e4be8629d2da316a = L.circleMarker(\\n\",\n       \"                [31.6861, 118.5058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_737bbe3469d6e95857c424b310ce5136 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_adbc861aaa90dfe331d32e24ea8d51d7 = $(`&lt;div id=&quot;html_adbc861aaa90dfe331d32e24ea8d51d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5058             latitude:31.6861             pred_result:47.209163665771484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_737bbe3469d6e95857c424b310ce5136.setContent(html_adbc861aaa90dfe331d32e24ea8d51d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d64fd44d38c80332e4be8629d2da316a.bindPopup(popup_737bbe3469d6e95857c424b310ce5136)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96ed75a50eaaaf213d25d23f13f4bb63 = L.circleMarker(\\n\",\n       \"                [31.6411, 118.4828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6eccaf224283225b0f604f0371d82bd1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e7ac4a5eebdbbf30dc7d5c09146be3f = $(`&lt;div id=&quot;html_4e7ac4a5eebdbbf30dc7d5c09146be3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4828             latitude:31.6411             pred_result:50.108909606933594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6eccaf224283225b0f604f0371d82bd1.setContent(html_4e7ac4a5eebdbbf30dc7d5c09146be3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96ed75a50eaaaf213d25d23f13f4bb63.bindPopup(popup_6eccaf224283225b0f604f0371d82bd1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4fc5e136f511b5098edfff0f38b6a75c = L.circleMarker(\\n\",\n       \"                [31.7506, 118.5106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1c40a33893fe7371b5f685422f807ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bbb4e0b4eae435f035fed3a2a40725f7 = $(`&lt;div id=&quot;html_bbb4e0b4eae435f035fed3a2a40725f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5106             latitude:31.7506             pred_result:45.92583084106445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1c40a33893fe7371b5f685422f807ba.setContent(html_bbb4e0b4eae435f035fed3a2a40725f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4fc5e136f511b5098edfff0f38b6a75c.bindPopup(popup_f1c40a33893fe7371b5f685422f807ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b4a6408038fe3a1abfe65230f268941 = L.circleMarker(\\n\",\n       \"                [31.6928, 118.48],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_631262a0281329f5f61372ab877159b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b3bc1a2152d8f076f39136493d1d546 = $(`&lt;div id=&quot;html_0b3bc1a2152d8f076f39136493d1d546&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.48             latitude:31.6928             pred_result:48.66923522949219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_631262a0281329f5f61372ab877159b4.setContent(html_0b3bc1a2152d8f076f39136493d1d546);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b4a6408038fe3a1abfe65230f268941.bindPopup(popup_631262a0281329f5f61372ab877159b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b780fecff99d53fcb58e80187524128e = L.circleMarker(\\n\",\n       \"                [31.7133, 118.6439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_488c2e729a2b20b27ff51a4498d1acab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9bf7a074f4c51de09b3dc367fbce92c = $(`&lt;div id=&quot;html_b9bf7a074f4c51de09b3dc367fbce92c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6439             latitude:31.7133             pred_result:47.418235778808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_488c2e729a2b20b27ff51a4498d1acab.setContent(html_b9bf7a074f4c51de09b3dc367fbce92c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b780fecff99d53fcb58e80187524128e.bindPopup(popup_488c2e729a2b20b27ff51a4498d1acab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84dac71e4663134b9abcf91b9bfda6cc = L.circleMarker(\\n\",\n       \"                [29.6816, 115.9872],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3dd415b59727e148aa89bbb9a7f45ecc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b3ddc4ece60011807defe9164831659 = $(`&lt;div id=&quot;html_6b3ddc4ece60011807defe9164831659&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9872             latitude:29.6816             pred_result:48.85935974121094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3dd415b59727e148aa89bbb9a7f45ecc.setContent(html_6b3ddc4ece60011807defe9164831659);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84dac71e4663134b9abcf91b9bfda6cc.bindPopup(popup_3dd415b59727e148aa89bbb9a7f45ecc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84af4bdeb091ab26acc83c3ddcad857d = L.circleMarker(\\n\",\n       \"                [29.7048, 115.9581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52bd97cd97773e0ec941fa8af5615a54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_528a8d25a3ee67c7a0f1bcaf8897dbb4 = $(`&lt;div id=&quot;html_528a8d25a3ee67c7a0f1bcaf8897dbb4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9581             latitude:29.7048             pred_result:48.63917541503906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52bd97cd97773e0ec941fa8af5615a54.setContent(html_528a8d25a3ee67c7a0f1bcaf8897dbb4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84af4bdeb091ab26acc83c3ddcad857d.bindPopup(popup_52bd97cd97773e0ec941fa8af5615a54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_565aae00d26041ae7893aba6a7bc7bb0 = L.circleMarker(\\n\",\n       \"                [29.7292, 115.988],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d721c8c0469c6447ee53c9bcff058433 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9bb65e1bf81bb168bfaeb804cc3e4ce = $(`&lt;div id=&quot;html_b9bb65e1bf81bb168bfaeb804cc3e4ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.988             latitude:29.7292             pred_result:48.816410064697266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d721c8c0469c6447ee53c9bcff058433.setContent(html_b9bb65e1bf81bb168bfaeb804cc3e4ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_565aae00d26041ae7893aba6a7bc7bb0.bindPopup(popup_d721c8c0469c6447ee53c9bcff058433)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b0d92ee87bc092c94207955d5899176 = L.circleMarker(\\n\",\n       \"                [29.6535, 116.0174],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3370587af7b1306afbf72a614e30426c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52221be88bc12d8ef453af7077398901 = $(`&lt;div id=&quot;html_52221be88bc12d8ef453af7077398901&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0174             latitude:29.6535             pred_result:48.455047607421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3370587af7b1306afbf72a614e30426c.setContent(html_52221be88bc12d8ef453af7077398901);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b0d92ee87bc092c94207955d5899176.bindPopup(popup_3370587af7b1306afbf72a614e30426c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1cb38912730da0d3644822dc77bc738 = L.circleMarker(\\n\",\n       \"                [29.6926, 116.0628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1441e4f3bfc8ec9a8497f879528df48f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_738e5a556f08bbf54ea3570902d18d0f = $(`&lt;div id=&quot;html_738e5a556f08bbf54ea3570902d18d0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0628             latitude:29.6926             pred_result:49.871665954589844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1441e4f3bfc8ec9a8497f879528df48f.setContent(html_738e5a556f08bbf54ea3570902d18d0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1cb38912730da0d3644822dc77bc738.bindPopup(popup_1441e4f3bfc8ec9a8497f879528df48f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60ad4acc8ded3a8070b789069d143b24 = L.circleMarker(\\n\",\n       \"                [29.6039, 115.9114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ab5fa23eb18fc7c1740d523b9a77ca2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_45b286456d47a8c2dcb89995ec88b297 = $(`&lt;div id=&quot;html_45b286456d47a8c2dcb89995ec88b297&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9114             latitude:29.6039             pred_result:49.124149322509766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ab5fa23eb18fc7c1740d523b9a77ca2.setContent(html_45b286456d47a8c2dcb89995ec88b297);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60ad4acc8ded3a8070b789069d143b24.bindPopup(popup_4ab5fa23eb18fc7c1740d523b9a77ca2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8d5be2ee1faef16ab0990beb8f34871 = L.circleMarker(\\n\",\n       \"                [29.7534, 116.0726],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cff0ab7170e7970878403f1e3eb110dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4302a531e15486b513dd98be89770a14 = $(`&lt;div id=&quot;html_4302a531e15486b513dd98be89770a14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0726             latitude:29.7534             pred_result:50.198143005371094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cff0ab7170e7970878403f1e3eb110dc.setContent(html_4302a531e15486b513dd98be89770a14);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8d5be2ee1faef16ab0990beb8f34871.bindPopup(popup_cff0ab7170e7970878403f1e3eb110dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1118de4b2b523501c7bc30e23a32d32f = L.circleMarker(\\n\",\n       \"                [29.5867, 115.9936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed80c4bc93f347880935b62baf533285 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f8de3ade12f359ca8899b8fcc3b4f86 = $(`&lt;div id=&quot;html_1f8de3ade12f359ca8899b8fcc3b4f86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9936             latitude:29.5867             pred_result:42.946510314941406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed80c4bc93f347880935b62baf533285.setContent(html_1f8de3ade12f359ca8899b8fcc3b4f86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1118de4b2b523501c7bc30e23a32d32f.bindPopup(popup_ed80c4bc93f347880935b62baf533285)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4a4e681fd3e734ddb907c1a22b6448d = L.circleMarker(\\n\",\n       \"                [34.6692, 112.3628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_553b66191796bdd5f1c9fd8d34d49010 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_036caa8e50f5fc9f321360d7a10dbdaa = $(`&lt;div id=&quot;html_036caa8e50f5fc9f321360d7a10dbdaa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3628             latitude:34.6692             pred_result:65.95620727539062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_553b66191796bdd5f1c9fd8d34d49010.setContent(html_036caa8e50f5fc9f321360d7a10dbdaa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4a4e681fd3e734ddb907c1a22b6448d.bindPopup(popup_553b66191796bdd5f1c9fd8d34d49010)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ab3c913282e147c4c1a9fea708bdf2e = L.circleMarker(\\n\",\n       \"                [34.6511, 112.3939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f0392870718557fe12705240a38562d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b889c3656d5038ef6ccf7e9afa8f8bcd = $(`&lt;div id=&quot;html_b889c3656d5038ef6ccf7e9afa8f8bcd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3939             latitude:34.6511             pred_result:65.83454895019531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f0392870718557fe12705240a38562d.setContent(html_b889c3656d5038ef6ccf7e9afa8f8bcd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ab3c913282e147c4c1a9fea708bdf2e.bindPopup(popup_7f0392870718557fe12705240a38562d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2d2cad40b31c1a80070fef2fd987646 = L.circleMarker(\\n\",\n       \"                [34.6869, 112.4664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1bc916ee38f427adfcd6c50c6b9a47b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9cecbf929f41bea5637859dd75ab7c0a = $(`&lt;div id=&quot;html_9cecbf929f41bea5637859dd75ab7c0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4664             latitude:34.6869             pred_result:66.50753784179688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1bc916ee38f427adfcd6c50c6b9a47b.setContent(html_9cecbf929f41bea5637859dd75ab7c0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2d2cad40b31c1a80070fef2fd987646.bindPopup(popup_e1bc916ee38f427adfcd6c50c6b9a47b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8faa7470625417a826e022437325ad27 = L.circleMarker(\\n\",\n       \"                [34.6869, 112.4831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_012c85d9182abe021f71fe0d10e68485 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23d27a701b09870910ae54a4951243a0 = $(`&lt;div id=&quot;html_23d27a701b09870910ae54a4951243a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4831             latitude:34.6869             pred_result:66.41516876220703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_012c85d9182abe021f71fe0d10e68485.setContent(html_23d27a701b09870910ae54a4951243a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8faa7470625417a826e022437325ad27.bindPopup(popup_012c85d9182abe021f71fe0d10e68485)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6843fc481f3d36a490b7e121a864d905 = L.circleMarker(\\n\",\n       \"                [34.6231, 112.3844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_766964c42b9221936a5817290f221727 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7cbf4791503970cde2aa5ee37cce7db2 = $(`&lt;div id=&quot;html_7cbf4791503970cde2aa5ee37cce7db2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3844             latitude:34.6231             pred_result:65.01895141601562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_766964c42b9221936a5817290f221727.setContent(html_7cbf4791503970cde2aa5ee37cce7db2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6843fc481f3d36a490b7e121a864d905.bindPopup(popup_766964c42b9221936a5817290f221727)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b9696cda2148af401e6abc27b01c1ca = L.circleMarker(\\n\",\n       \"                [34.6258, 112.4275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_319e8a4d5d852ce270c781fafefcadab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9a043e7a659835ca05ed1efc6bdd34a5 = $(`&lt;div id=&quot;html_9a043e7a659835ca05ed1efc6bdd34a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4275             latitude:34.6258             pred_result:65.50485229492188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_319e8a4d5d852ce270c781fafefcadab.setContent(html_9a043e7a659835ca05ed1efc6bdd34a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b9696cda2148af401e6abc27b01c1ca.bindPopup(popup_319e8a4d5d852ce270c781fafefcadab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96fcce094a55c996b55f5b1b8d2e2d9a = L.circleMarker(\\n\",\n       \"                [36.061, 114.483],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3119a822c6fce4d625f98f43062bb8a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55595e57a5abd302e809e9d135c051a2 = $(`&lt;div id=&quot;html_55595e57a5abd302e809e9d135c051a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.483             latitude:36.061             pred_result:76.61083984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3119a822c6fce4d625f98f43062bb8a0.setContent(html_55595e57a5abd302e809e9d135c051a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96fcce094a55c996b55f5b1b8d2e2d9a.bindPopup(popup_3119a822c6fce4d625f98f43062bb8a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df65fc0cfaaefeda8a2e6807c323546c = L.circleMarker(\\n\",\n       \"                [36.086, 114.32],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_801a9468d8067e2fb934d972740a4fa1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_530d5c9b0668a9c4e5317613291b7648 = $(`&lt;div id=&quot;html_530d5c9b0668a9c4e5317613291b7648&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.32             latitude:36.086             pred_result:78.88399505615234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_801a9468d8067e2fb934d972740a4fa1.setContent(html_530d5c9b0668a9c4e5317613291b7648);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df65fc0cfaaefeda8a2e6807c323546c.bindPopup(popup_801a9468d8067e2fb934d972740a4fa1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_748ea9075b413892d400d58ca4bde3bf = L.circleMarker(\\n\",\n       \"                [36.087, 114.358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffa60fff2e326d3d1a1ff60eab086fdc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_557e55d4805ffd45d91d01ae37bf9072 = $(`&lt;div id=&quot;html_557e55d4805ffd45d91d01ae37bf9072&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.358             latitude:36.087             pred_result:78.20979309082031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffa60fff2e326d3d1a1ff60eab086fdc.setContent(html_557e55d4805ffd45d91d01ae37bf9072);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_748ea9075b413892d400d58ca4bde3bf.bindPopup(popup_ffa60fff2e326d3d1a1ff60eab086fdc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_696aebf0f5f79958295b0108a847ee12 = L.circleMarker(\\n\",\n       \"                [36.0883, 114.3931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b4817aab636e81d790f1446bd6698c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c79c033a0006082a5d0290c9d43663c0 = $(`&lt;div id=&quot;html_c79c033a0006082a5d0290c9d43663c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3931             latitude:36.0883             pred_result:78.28289031982422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b4817aab636e81d790f1446bd6698c1.setContent(html_c79c033a0006082a5d0290c9d43663c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_696aebf0f5f79958295b0108a847ee12.bindPopup(popup_1b4817aab636e81d790f1446bd6698c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c96573e6eed48d6a2de2a10eaaed8007 = L.circleMarker(\\n\",\n       \"                [36.11, 114.286],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_323cdfc1931a538892c5a35b4d5b96de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73765877aeac8f2c78150f4e0785e649 = $(`&lt;div id=&quot;html_73765877aeac8f2c78150f4e0785e649&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.286             latitude:36.11             pred_result:79.80677795410156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_323cdfc1931a538892c5a35b4d5b96de.setContent(html_73765877aeac8f2c78150f4e0785e649);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c96573e6eed48d6a2de2a10eaaed8007.bindPopup(popup_323cdfc1931a538892c5a35b4d5b96de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1aeb3693af394c754cff931c9760e705 = L.circleMarker(\\n\",\n       \"                [34.8022, 114.3406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ead8907ad9c79388ceed24cec03716e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ff1398f99c7ac472ff9189673a3aaba = $(`&lt;div id=&quot;html_4ff1398f99c7ac472ff9189673a3aaba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3406             latitude:34.8022             pred_result:61.598915100097656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ead8907ad9c79388ceed24cec03716e.setContent(html_4ff1398f99c7ac472ff9189673a3aaba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1aeb3693af394c754cff931c9760e705.bindPopup(popup_8ead8907ad9c79388ceed24cec03716e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c217301ec9230d9ca0e53162acda2c91 = L.circleMarker(\\n\",\n       \"                [34.7781, 114.3389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63b0a61b7bed43cb242313c7cf7b9070 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b215ae029e78d5719e7c902f910292d1 = $(`&lt;div id=&quot;html_b215ae029e78d5719e7c902f910292d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3389             latitude:34.7781             pred_result:61.40199279785156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63b0a61b7bed43cb242313c7cf7b9070.setContent(html_b215ae029e78d5719e7c902f910292d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c217301ec9230d9ca0e53162acda2c91.bindPopup(popup_63b0a61b7bed43cb242313c7cf7b9070)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f486179f5851d2f8a5542a97a207d622 = L.circleMarker(\\n\",\n       \"                [34.7975, 114.3733],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4359fee18423e94edb4830597fc6d062 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f15c035bb75e1457c68d182cd4fd95f = $(`&lt;div id=&quot;html_5f15c035bb75e1457c68d182cd4fd95f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3733             latitude:34.7975             pred_result:61.710147857666016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4359fee18423e94edb4830597fc6d062.setContent(html_5f15c035bb75e1457c68d182cd4fd95f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f486179f5851d2f8a5542a97a207d622.bindPopup(popup_4359fee18423e94edb4830597fc6d062)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_081dadf87a42866ad7d4a4119c157e97 = L.circleMarker(\\n\",\n       \"                [34.7967, 114.2886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_89393acddf838e85122cdaa85c8920e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1794cd914dfd6648175271c20df6de99 = $(`&lt;div id=&quot;html_1794cd914dfd6648175271c20df6de99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2886             latitude:34.7967             pred_result:62.06529235839844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_89393acddf838e85122cdaa85c8920e5.setContent(html_1794cd914dfd6648175271c20df6de99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_081dadf87a42866ad7d4a4119c157e97.bindPopup(popup_89393acddf838e85122cdaa85c8920e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_798b2842ad5c5ef49a067fec5435aba4 = L.circleMarker(\\n\",\n       \"                [35.235, 113.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69d5781a52fc3cb358894e77d984a841 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8af63692bdaaebca30c26dbc152dc1bc = $(`&lt;div id=&quot;html_8af63692bdaaebca30c26dbc152dc1bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.261             latitude:35.235             pred_result:73.49195861816406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69d5781a52fc3cb358894e77d984a841.setContent(html_8af63692bdaaebca30c26dbc152dc1bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_798b2842ad5c5ef49a067fec5435aba4.bindPopup(popup_69d5781a52fc3cb358894e77d984a841)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b92b73a89e281f1e6e24dc72a22dc6d = L.circleMarker(\\n\",\n       \"                [35.213, 113.227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87121289fa905066b660198e59e45dea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3e831e19d06371b57feb40fb8eec3ab = $(`&lt;div id=&quot;html_d3e831e19d06371b57feb40fb8eec3ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.227             latitude:35.213             pred_result:72.94944763183594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87121289fa905066b660198e59e45dea.setContent(html_d3e831e19d06371b57feb40fb8eec3ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b92b73a89e281f1e6e24dc72a22dc6d.bindPopup(popup_87121289fa905066b660198e59e45dea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a59336cfb79fe479575f6a565f61a123 = L.circleMarker(\\n\",\n       \"                [35.1764, 113.2464],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0358992e9f52d2cff4c5d6f34223b06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76607016667566519c8d901e451e100f = $(`&lt;div id=&quot;html_76607016667566519c8d901e451e100f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2464             latitude:35.1764             pred_result:73.73649597167969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0358992e9f52d2cff4c5d6f34223b06.setContent(html_76607016667566519c8d901e451e100f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a59336cfb79fe479575f6a565f61a123.bindPopup(popup_b0358992e9f52d2cff4c5d6f34223b06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b8970c36eb80abdc13edf333229e1b99 = L.circleMarker(\\n\",\n       \"                [35.259, 113.1992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4748f81368e8bb0e2a14b55a764e5390 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef10555cea918866a036cd4237e23674 = $(`&lt;div id=&quot;html_ef10555cea918866a036cd4237e23674&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1992             latitude:35.259             pred_result:72.29256439208984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4748f81368e8bb0e2a14b55a764e5390.setContent(html_ef10555cea918866a036cd4237e23674);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b8970c36eb80abdc13edf333229e1b99.bindPopup(popup_4748f81368e8bb0e2a14b55a764e5390)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c9c23bb60af60652630191bdb3c06b3 = L.circleMarker(\\n\",\n       \"                [33.7214, 113.3064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00fe4fa335b8f3e7f324aa8d91c5cacd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9a17dfdb3ca3e5bb99affbb9c3fa5770 = $(`&lt;div id=&quot;html_9a17dfdb3ca3e5bb99affbb9c3fa5770&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3064             latitude:33.7214             pred_result:55.21914291381836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00fe4fa335b8f3e7f324aa8d91c5cacd.setContent(html_9a17dfdb3ca3e5bb99affbb9c3fa5770);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c9c23bb60af60652630191bdb3c06b3.bindPopup(popup_00fe4fa335b8f3e7f324aa8d91c5cacd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71244051e701a0de5e91c74a5f8ed4d4 = L.circleMarker(\\n\",\n       \"                [33.739000000000004, 113.292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ae057addef1ed5d69a2eaf89da04f77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60217098dd2032ad005be61f8bc3316c = $(`&lt;div id=&quot;html_60217098dd2032ad005be61f8bc3316c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.292             latitude:33.739000000000004             pred_result:55.22454071044922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ae057addef1ed5d69a2eaf89da04f77.setContent(html_60217098dd2032ad005be61f8bc3316c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71244051e701a0de5e91c74a5f8ed4d4.bindPopup(popup_9ae057addef1ed5d69a2eaf89da04f77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8633e3035e1339cb883a3c483c26044a = L.circleMarker(\\n\",\n       \"                [33.736999999999995, 113.182],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_171c4d1ac4e197750e4fa3ea22a32162 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d64cb0fadb043c14418473adb6935a2d = $(`&lt;div id=&quot;html_d64cb0fadb043c14418473adb6935a2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.182             latitude:33.736999999999995             pred_result:56.05581283569336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_171c4d1ac4e197750e4fa3ea22a32162.setContent(html_d64cb0fadb043c14418473adb6935a2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8633e3035e1339cb883a3c483c26044a.bindPopup(popup_171c4d1ac4e197750e4fa3ea22a32162)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49fbf03d28a4d9683f5d6d3bc668c11d = L.circleMarker(\\n\",\n       \"                [34.7772, 111.1928],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23e0284eb40c6d7a6390cc92934a73ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_101adfc89e49d5659270d323785a92bd = $(`&lt;div id=&quot;html_101adfc89e49d5659270d323785a92bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1928             latitude:34.7772             pred_result:63.88762664794922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23e0284eb40c6d7a6390cc92934a73ad.setContent(html_101adfc89e49d5659270d323785a92bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49fbf03d28a4d9683f5d6d3bc668c11d.bindPopup(popup_23e0284eb40c6d7a6390cc92934a73ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91b33ecac7382fbff0517c07053d2ed3 = L.circleMarker(\\n\",\n       \"                [34.794000000000004, 111.158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_373f471e8797ae3d0cb5a1349bfad9b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_413157c36a289ea5d292ba79c22f4ea3 = $(`&lt;div id=&quot;html_413157c36a289ea5d292ba79c22f4ea3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.158             latitude:34.794000000000004             pred_result:64.85665893554688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_373f471e8797ae3d0cb5a1349bfad9b3.setContent(html_413157c36a289ea5d292ba79c22f4ea3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91b33ecac7382fbff0517c07053d2ed3.bindPopup(popup_373f471e8797ae3d0cb5a1349bfad9b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de23df7bcdeed03502cd0e76e9244fdb = L.circleMarker(\\n\",\n       \"                [34.7997, 111.1489],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb4a5d7a5fd0430873f09df809f27e69 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e19b09f74fb615b286b3b686848276b = $(`&lt;div id=&quot;html_8e19b09f74fb615b286b3b686848276b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1489             latitude:34.7997             pred_result:65.01595306396484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb4a5d7a5fd0430873f09df809f27e69.setContent(html_8e19b09f74fb615b286b3b686848276b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de23df7bcdeed03502cd0e76e9244fdb.bindPopup(popup_fb4a5d7a5fd0430873f09df809f27e69)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d422c137b6acb28276cba138dc8449f = L.circleMarker(\\n\",\n       \"                [30.7157, 111.3009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d336f5d775b33445859b13510f1839a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10f6a9905454db41f5b6b477c5c98a99 = $(`&lt;div id=&quot;html_10f6a9905454db41f5b6b477c5c98a99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3009             latitude:30.7157             pred_result:60.89219665527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d336f5d775b33445859b13510f1839a.setContent(html_10f6a9905454db41f5b6b477c5c98a99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d422c137b6acb28276cba138dc8449f.bindPopup(popup_8d336f5d775b33445859b13510f1839a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18482c9007e748b32bc333e2c78a9437 = L.circleMarker(\\n\",\n       \"                [30.698, 111.2992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96da70a185b74c05418387852e1588e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_967ba63dac077f3dd81d109fbb171d29 = $(`&lt;div id=&quot;html_967ba63dac077f3dd81d109fbb171d29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2992             latitude:30.698             pred_result:61.00703430175781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96da70a185b74c05418387852e1588e7.setContent(html_967ba63dac077f3dd81d109fbb171d29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18482c9007e748b32bc333e2c78a9437.bindPopup(popup_96da70a185b74c05418387852e1588e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_deb401c3d5340451d680990f6f931f50 = L.circleMarker(\\n\",\n       \"                [30.6463, 111.3549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aea524fa6a41b0f2fcb6fbda238c1c09 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ba7f5e52b5d55a2bd777976522c4831 = $(`&lt;div id=&quot;html_3ba7f5e52b5d55a2bd777976522c4831&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3549             latitude:30.6463             pred_result:62.2164306640625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aea524fa6a41b0f2fcb6fbda238c1c09.setContent(html_3ba7f5e52b5d55a2bd777976522c4831);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_deb401c3d5340451d680990f6f931f50.bindPopup(popup_aea524fa6a41b0f2fcb6fbda238c1c09)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a65331c828270969b8935d330db3007 = L.circleMarker(\\n\",\n       \"                [30.696, 111.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f11e9f803aa63c6ff23a2600d291e6a8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33778b6e3c80cac29a5a93b5a56e3e44 = $(`&lt;div id=&quot;html_33778b6e3c80cac29a5a93b5a56e3e44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.268             latitude:30.696             pred_result:60.25479507446289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f11e9f803aa63c6ff23a2600d291e6a8.setContent(html_33778b6e3c80cac29a5a93b5a56e3e44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a65331c828270969b8935d330db3007.bindPopup(popup_f11e9f803aa63c6ff23a2600d291e6a8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ff02f13b7d1cadeeaa6274948138d29 = L.circleMarker(\\n\",\n       \"                [30.7819, 111.3296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_229c94e2391ef2564e24b616f3748ed0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b149cdca793f22fccf9d599c4ee2ba65 = $(`&lt;div id=&quot;html_b149cdca793f22fccf9d599c4ee2ba65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3296             latitude:30.7819             pred_result:61.097694396972656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_229c94e2391ef2564e24b616f3748ed0.setContent(html_b149cdca793f22fccf9d599c4ee2ba65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ff02f13b7d1cadeeaa6274948138d29.bindPopup(popup_229c94e2391ef2564e24b616f3748ed0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbcc4364834b03492f6c627ace68a704 = L.circleMarker(\\n\",\n       \"                [30.3175, 112.2551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2eeae48e5c9b5682079eea9063a84efc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39d2bc43fa3add05de905c3f943f680c = $(`&lt;div id=&quot;html_39d2bc43fa3add05de905c3f943f680c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2551             latitude:30.3175             pred_result:64.86915588378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2eeae48e5c9b5682079eea9063a84efc.setContent(html_39d2bc43fa3add05de905c3f943f680c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbcc4364834b03492f6c627ace68a704.bindPopup(popup_2eeae48e5c9b5682079eea9063a84efc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62d6430ee32dc70ca73f8d4c78d92a84 = L.circleMarker(\\n\",\n       \"                [30.3515, 112.2068],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19ceb04c9619c2d5d76a93691a7df833 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b313439abd2eeab4a412e2fc3e498c3 = $(`&lt;div id=&quot;html_0b313439abd2eeab4a412e2fc3e498c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2068             latitude:30.3515             pred_result:64.50936889648438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19ceb04c9619c2d5d76a93691a7df833.setContent(html_0b313439abd2eeab4a412e2fc3e498c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62d6430ee32dc70ca73f8d4c78d92a84.bindPopup(popup_19ceb04c9619c2d5d76a93691a7df833)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2c22768516257172ed7a66eb89b91b1 = L.circleMarker(\\n\",\n       \"                [30.3055, 112.2887],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a11709cd1b47cbee81b2ba3d9c7acee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3d024b962ece9baaa1af20327b7087e = $(`&lt;div id=&quot;html_e3d024b962ece9baaa1af20327b7087e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2887             latitude:30.3055             pred_result:65.26962280273438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a11709cd1b47cbee81b2ba3d9c7acee.setContent(html_e3d024b962ece9baaa1af20327b7087e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2c22768516257172ed7a66eb89b91b1.bindPopup(popup_9a11709cd1b47cbee81b2ba3d9c7acee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42235ffba9455317e3d743d7d2cdb2b4 = L.circleMarker(\\n\",\n       \"                [29.3578, 113.1094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_980680868199d3197c9cfb940347aafb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a2164cc53906ee7585299ba86108f87 = $(`&lt;div id=&quot;html_8a2164cc53906ee7585299ba86108f87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1094             latitude:29.3578             pred_result:60.938934326171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_980680868199d3197c9cfb940347aafb.setContent(html_8a2164cc53906ee7585299ba86108f87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42235ffba9455317e3d743d7d2cdb2b4.bindPopup(popup_980680868199d3197c9cfb940347aafb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ddbd9221aa7961967c95eb723ee6061 = L.circleMarker(\\n\",\n       \"                [29.4251, 113.1493],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c6d573be6cebc7e23064d802ef64731 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc3ce84f22c5f81b94fb4008833a3df6 = $(`&lt;div id=&quot;html_dc3ce84f22c5f81b94fb4008833a3df6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1493             latitude:29.4251             pred_result:61.097877502441406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c6d573be6cebc7e23064d802ef64731.setContent(html_dc3ce84f22c5f81b94fb4008833a3df6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ddbd9221aa7961967c95eb723ee6061.bindPopup(popup_7c6d573be6cebc7e23064d802ef64731)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a89d01477c0207e7834ab1f12eff6b08 = L.circleMarker(\\n\",\n       \"                [29.3678, 113.1772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_943f35ed4efcf55e89d582325bbe9a3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9887e4c06ba62a6589e3cdd93e9ba192 = $(`&lt;div id=&quot;html_9887e4c06ba62a6589e3cdd93e9ba192&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1772             latitude:29.3678             pred_result:60.76499938964844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_943f35ed4efcf55e89d582325bbe9a3b.setContent(html_9887e4c06ba62a6589e3cdd93e9ba192);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a89d01477c0207e7834ab1f12eff6b08.bindPopup(popup_943f35ed4efcf55e89d582325bbe9a3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7285585fdd813d3a242489279a0ef822 = L.circleMarker(\\n\",\n       \"                [29.4758, 113.2621],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96d6c6955e06738e717f7c1b09d9e934 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_798db58a437a9078b033dc3f1c2b388a = $(`&lt;div id=&quot;html_798db58a437a9078b033dc3f1c2b388a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2621             latitude:29.4758             pred_result:61.417877197265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96d6c6955e06738e717f7c1b09d9e934.setContent(html_798db58a437a9078b033dc3f1c2b388a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7285585fdd813d3a242489279a0ef822.bindPopup(popup_96d6c6955e06738e717f7c1b09d9e934)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3124cc2eefba58f015d19072b57ec63 = L.circleMarker(\\n\",\n       \"                [29.4402, 112.9943],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de6b7520709604d4078ea96c232c876d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb31921b565e79efff166fbe87fba5ff = $(`&lt;div id=&quot;html_bb31921b565e79efff166fbe87fba5ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9943             latitude:29.4402             pred_result:61.493465423583984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de6b7520709604d4078ea96c232c876d.setContent(html_bb31921b565e79efff166fbe87fba5ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3124cc2eefba58f015d19072b57ec63.bindPopup(popup_de6b7520709604d4078ea96c232c876d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd1e8cfb6b4c62a46999a6f20cc745c1 = L.circleMarker(\\n\",\n       \"                [29.355, 113.2117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_333b5958071fd626d758d92fd2ed8184 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bfc7ee3aa33b4b87c955b3ed7e2c2346 = $(`&lt;div id=&quot;html_bfc7ee3aa33b4b87c955b3ed7e2c2346&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2117             latitude:29.355             pred_result:60.487770080566406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_333b5958071fd626d758d92fd2ed8184.setContent(html_bfc7ee3aa33b4b87c955b3ed7e2c2346);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd1e8cfb6b4c62a46999a6f20cc745c1.bindPopup(popup_333b5958071fd626d758d92fd2ed8184)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7794297e189493547b0539fd65d78de6 = L.circleMarker(\\n\",\n       \"                [29.0244, 111.7044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c73a8d968ae09587fbfd8f29cb02e1ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_781c903264f129110db52da3763bfefc = $(`&lt;div id=&quot;html_781c903264f129110db52da3763bfefc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7044             latitude:29.0244             pred_result:56.965789794921875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c73a8d968ae09587fbfd8f29cb02e1ec.setContent(html_781c903264f129110db52da3763bfefc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7794297e189493547b0539fd65d78de6.bindPopup(popup_c73a8d968ae09587fbfd8f29cb02e1ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86292adf9a980f5ca515682bbeef89b6 = L.circleMarker(\\n\",\n       \"                [28.9703, 111.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3dadc7d23cc8f654db9a3a7f1606f197 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25aa464beb47cd98fa39e1a960c65b81 = $(`&lt;div id=&quot;html_25aa464beb47cd98fa39e1a960c65b81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6975             latitude:28.9703             pred_result:56.55297088623047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3dadc7d23cc8f654db9a3a7f1606f197.setContent(html_25aa464beb47cd98fa39e1a960c65b81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86292adf9a980f5ca515682bbeef89b6.bindPopup(popup_3dadc7d23cc8f654db9a3a7f1606f197)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e1d80ebe86ecaacf9361d32e7a5a314 = L.circleMarker(\\n\",\n       \"                [29.0239, 111.6753],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_89dc4e9a919937ee3c00a52efc2e6899 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1727d0c8a17aa41ec01c1b627ee33a1a = $(`&lt;div id=&quot;html_1727d0c8a17aa41ec01c1b627ee33a1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6753             latitude:29.0239             pred_result:56.643463134765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_89dc4e9a919937ee3c00a52efc2e6899.setContent(html_1727d0c8a17aa41ec01c1b627ee33a1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e1d80ebe86ecaacf9361d32e7a5a314.bindPopup(popup_89dc4e9a919937ee3c00a52efc2e6899)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a097da3d25e4acf742e9b7fb0bc673ae = L.circleMarker(\\n\",\n       \"                [29.0381, 111.6794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46b097df1de6d9f2189773c74d8cc7ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dcaf1f7fbb4f2caeb17f2f9ff26e0660 = $(`&lt;div id=&quot;html_dcaf1f7fbb4f2caeb17f2f9ff26e0660&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6794             latitude:29.0381             pred_result:56.87176513671875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46b097df1de6d9f2189773c74d8cc7ea.setContent(html_dcaf1f7fbb4f2caeb17f2f9ff26e0660);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a097da3d25e4acf742e9b7fb0bc673ae.bindPopup(popup_46b097df1de6d9f2189773c74d8cc7ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_945f8efc9228b69141ef7e6298fd290d = L.circleMarker(\\n\",\n       \"                [29.1456, 111.7158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76a4cd63cdb9f005d5e4c36509dbe532 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4dcf39a1c9c79acdaedcc18850731a9f = $(`&lt;div id=&quot;html_4dcf39a1c9c79acdaedcc18850731a9f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7158             latitude:29.1456             pred_result:57.51356506347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76a4cd63cdb9f005d5e4c36509dbe532.setContent(html_4dcf39a1c9c79acdaedcc18850731a9f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_945f8efc9228b69141ef7e6298fd290d.bindPopup(popup_76a4cd63cdb9f005d5e4c36509dbe532)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3011d3f985f2fb18d30d5461aabfbc0 = L.circleMarker(\\n\",\n       \"                [29.1389, 110.48],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eadfe24b1d29fcefeb95c4864d34e7e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dfe3ca1f6edaae321c688628f6c807ad = $(`&lt;div id=&quot;html_dfe3ca1f6edaae321c688628f6c807ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.48             latitude:29.1389             pred_result:52.72234344482422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eadfe24b1d29fcefeb95c4864d34e7e5.setContent(html_dfe3ca1f6edaae321c688628f6c807ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3011d3f985f2fb18d30d5461aabfbc0.bindPopup(popup_eadfe24b1d29fcefeb95c4864d34e7e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40a6724dc58964d21da7af6845c98d2d = L.circleMarker(\\n\",\n       \"                [29.1242, 110.4697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce19eba24d01d8e171edc47f843e2ff0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b8f09ad2c961f9359401e9f5e59d62d = $(`&lt;div id=&quot;html_3b8f09ad2c961f9359401e9f5e59d62d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4697             latitude:29.1242             pred_result:52.846588134765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce19eba24d01d8e171edc47f843e2ff0.setContent(html_3b8f09ad2c961f9359401e9f5e59d62d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40a6724dc58964d21da7af6845c98d2d.bindPopup(popup_ce19eba24d01d8e171edc47f843e2ff0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74fcc7a697662829f750456afdd4218c = L.circleMarker(\\n\",\n       \"                [29.3547, 110.5594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_adb89b2a20c28d46747d7c0f87ef4730 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c4217a715e80f3e5e39d5762c435bf8 = $(`&lt;div id=&quot;html_7c4217a715e80f3e5e39d5762c435bf8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.5594             latitude:29.3547             pred_result:50.46945571899414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_adb89b2a20c28d46747d7c0f87ef4730.setContent(html_7c4217a715e80f3e5e39d5762c435bf8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74fcc7a697662829f750456afdd4218c.bindPopup(popup_adb89b2a20c28d46747d7c0f87ef4730)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e41313801b0dc0d68ed3428fbf0cec49 = L.circleMarker(\\n\",\n       \"                [29.315, 110.4417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b9025c820dced2631883826d845e21a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5faf2774ad7f665abd4641e693194a3a = $(`&lt;div id=&quot;html_5faf2774ad7f665abd4641e693194a3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4417             latitude:29.315             pred_result:48.110008239746094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b9025c820dced2631883826d845e21a.setContent(html_5faf2774ad7f665abd4641e693194a3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e41313801b0dc0d68ed3428fbf0cec49.bindPopup(popup_6b9025c820dced2631883826d845e21a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56496ec7205708f03c8276d2a8cc1cec = L.circleMarker(\\n\",\n       \"                [25.3167, 110.4144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84b84b67a2c336f52fc3fc49b6905849 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65030504ea48f3697fafef7891259487 = $(`&lt;div id=&quot;html_65030504ea48f3697fafef7891259487&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4144             latitude:25.3167             pred_result:40.363067626953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84b84b67a2c336f52fc3fc49b6905849.setContent(html_65030504ea48f3697fafef7891259487);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56496ec7205708f03c8276d2a8cc1cec.bindPopup(popup_84b84b67a2c336f52fc3fc49b6905849)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab59a93cf3cc8ad95da20363518f3bea = L.circleMarker(\\n\",\n       \"                [25.2697, 110.2819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1cabf6cf69b4f9a3581373b2c34feef7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55226d65750774894cee991f32111eb2 = $(`&lt;div id=&quot;html_55226d65750774894cee991f32111eb2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2819             latitude:25.2697             pred_result:41.51039123535156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1cabf6cf69b4f9a3581373b2c34feef7.setContent(html_55226d65750774894cee991f32111eb2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab59a93cf3cc8ad95da20363518f3bea.bindPopup(popup_1cabf6cf69b4f9a3581373b2c34feef7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8454fb016dad512a16aea51183605b8 = L.circleMarker(\\n\",\n       \"                [25.2708, 110.3089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_926f1062bc6e5e054e718c6d544e51f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eab09594fa93c58829d83fd4c82c8942 = $(`&lt;div id=&quot;html_eab09594fa93c58829d83fd4c82c8942&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3089             latitude:25.2708             pred_result:40.907798767089844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_926f1062bc6e5e054e718c6d544e51f9.setContent(html_eab09594fa93c58829d83fd4c82c8942);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8454fb016dad512a16aea51183605b8.bindPopup(popup_926f1062bc6e5e054e718c6d544e51f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b427cfad4e9f3349c48c7d0be0a221fa = L.circleMarker(\\n\",\n       \"                [25.2178, 110.2869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e76c55b262db7dc12007cb21fa0e6579 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46873af99818bd5d3bd2f5107af1eb74 = $(`&lt;div id=&quot;html_46873af99818bd5d3bd2f5107af1eb74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2869             latitude:25.2178             pred_result:40.89543914794922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e76c55b262db7dc12007cb21fa0e6579.setContent(html_46873af99818bd5d3bd2f5107af1eb74);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b427cfad4e9f3349c48c7d0be0a221fa.bindPopup(popup_e76c55b262db7dc12007cb21fa0e6579)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9c037b8c7c256379384b55dca484dbb = L.circleMarker(\\n\",\n       \"                [21.5958, 109.2256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0dff9fc757d954d328ac3a49dc948112 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93f9cd633cf4107814d0b270c52716d3 = $(`&lt;div id=&quot;html_93f9cd633cf4107814d0b270c52716d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2256             latitude:21.5958             pred_result:22.825942993164062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0dff9fc757d954d328ac3a49dc948112.setContent(html_93f9cd633cf4107814d0b270c52716d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9c037b8c7c256379384b55dca484dbb.bindPopup(popup_0dff9fc757d954d328ac3a49dc948112)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0bac67f56f9b697c06f615b72fb692b = L.circleMarker(\\n\",\n       \"                [24.3898, 109.4883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_abca373e5a152a1ec9e112caa134fbd9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c114aadf666a9fc7ce9931c6781983b7 = $(`&lt;div id=&quot;html_c114aadf666a9fc7ce9931c6781983b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4883             latitude:24.3898             pred_result:35.71580505371094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_abca373e5a152a1ec9e112caa134fbd9.setContent(html_c114aadf666a9fc7ce9931c6781983b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0bac67f56f9b697c06f615b72fb692b.bindPopup(popup_abca373e5a152a1ec9e112caa134fbd9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5bd598b550cb8af62b2cc049aac5024e = L.circleMarker(\\n\",\n       \"                [24.3304, 109.4108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61fbce4304df198411bdd30d8dc0b487 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7dd3e6cbfa7f51f2a403ce3bda0ab854 = $(`&lt;div id=&quot;html_7dd3e6cbfa7f51f2a403ce3bda0ab854&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4108             latitude:24.3304             pred_result:36.40026092529297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61fbce4304df198411bdd30d8dc0b487.setContent(html_7dd3e6cbfa7f51f2a403ce3bda0ab854);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5bd598b550cb8af62b2cc049aac5024e.bindPopup(popup_61fbce4304df198411bdd30d8dc0b487)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c1816d20043860d30fffadbdeb423fd = L.circleMarker(\\n\",\n       \"                [24.3406, 109.3886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7842824834f149b4aa146609bff6ec52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e71f6fa0102dd6913013dc4bf5bdaa2 = $(`&lt;div id=&quot;html_4e71f6fa0102dd6913013dc4bf5bdaa2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.3886             latitude:24.3406             pred_result:36.656898498535156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7842824834f149b4aa146609bff6ec52.setContent(html_4e71f6fa0102dd6913013dc4bf5bdaa2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c1816d20043860d30fffadbdeb423fd.bindPopup(popup_7842824834f149b4aa146609bff6ec52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51912c9fbc82774c95bf8748036039ef = L.circleMarker(\\n\",\n       \"                [24.299, 109.4221],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cffebe52a2018b5f40b79f5163c37b82 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54683a88e739651e9aad7795b3f52aa5 = $(`&lt;div id=&quot;html_54683a88e739651e9aad7795b3f52aa5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4221             latitude:24.299             pred_result:36.261749267578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cffebe52a2018b5f40b79f5163c37b82.setContent(html_54683a88e739651e9aad7795b3f52aa5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51912c9fbc82774c95bf8748036039ef.bindPopup(popup_cffebe52a2018b5f40b79f5163c37b82)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3ea263624d5a3143d6093e58ce31d7e = L.circleMarker(\\n\",\n       \"                [24.3663, 109.3957],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e298f592277fde04a318d75ac3bf0909 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cfab4f6707947e34b4d31c28745ecdda = $(`&lt;div id=&quot;html_cfab4f6707947e34b4d31c28745ecdda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.3957             latitude:24.3663             pred_result:36.59395217895508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e298f592277fde04a318d75ac3bf0909.setContent(html_cfab4f6707947e34b4d31c28745ecdda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3ea263624d5a3143d6093e58ce31d7e.bindPopup(popup_e298f592277fde04a318d75ac3bf0909)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5dd27f7b55228e332d5900b0f006f0c4 = L.circleMarker(\\n\",\n       \"                [24.3158, 109.4839],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6c88e14448126231d17dd7e50ab1769b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_665b85fa718563c5cdcdc53a7b75d8b6 = $(`&lt;div id=&quot;html_665b85fa718563c5cdcdc53a7b75d8b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4839             latitude:24.3158             pred_result:36.397193908691406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6c88e14448126231d17dd7e50ab1769b.setContent(html_665b85fa718563c5cdcdc53a7b75d8b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5dd27f7b55228e332d5900b0f006f0c4.bindPopup(popup_6c88e14448126231d17dd7e50ab1769b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce786d45bb7ca714001ade424f26a120 = L.circleMarker(\\n\",\n       \"                [31.4747, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a5dd2ccae6d72779040d6a79825dfc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3945c7c9291bcefbef4ebd6fd3ffb381 = $(`&lt;div id=&quot;html_3945c7c9291bcefbef4ebd6fd3ffb381&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:31.4747             pred_result:54.76815414428711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a5dd2ccae6d72779040d6a79825dfc4.setContent(html_3945c7c9291bcefbef4ebd6fd3ffb381);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce786d45bb7ca714001ade424f26a120.bindPopup(popup_9a5dd2ccae6d72779040d6a79825dfc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21a95fc3f5b76dde0f93984b47d0029d = L.circleMarker(\\n\",\n       \"                [31.4539, 104.7536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f3dd142d5705bcef5e9f976915a50d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2dcefa97ac04951916f778a0c2a86d4 = $(`&lt;div id=&quot;html_e2dcefa97ac04951916f778a0c2a86d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7536             latitude:31.4539             pred_result:54.95126724243164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f3dd142d5705bcef5e9f976915a50d6.setContent(html_e2dcefa97ac04951916f778a0c2a86d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21a95fc3f5b76dde0f93984b47d0029d.bindPopup(popup_7f3dd142d5705bcef5e9f976915a50d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a88a0594a8349101271b3aa0ab50bd00 = L.circleMarker(\\n\",\n       \"                [31.4656, 104.6717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40aca5e73a57a9eefc05c3d186a3527e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_239e3b188fcc4b6c56e7c6287f3c82f5 = $(`&lt;div id=&quot;html_239e3b188fcc4b6c56e7c6287f3c82f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6717             latitude:31.4656             pred_result:54.49674606323242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40aca5e73a57a9eefc05c3d186a3527e.setContent(html_239e3b188fcc4b6c56e7c6287f3c82f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a88a0594a8349101271b3aa0ab50bd00.bindPopup(popup_40aca5e73a57a9eefc05c3d186a3527e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24220ad3640a81d11179e54cf43032d8 = L.circleMarker(\\n\",\n       \"                [31.5072, 104.7283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_923682c617494044a84d2ebc35e0b302 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf9f180e322373fda1ba8ed3b7c22b64 = $(`&lt;div id=&quot;html_cf9f180e322373fda1ba8ed3b7c22b64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7283             latitude:31.5072             pred_result:54.67431640625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_923682c617494044a84d2ebc35e0b302.setContent(html_cf9f180e322373fda1ba8ed3b7c22b64);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24220ad3640a81d11179e54cf43032d8.bindPopup(popup_923682c617494044a84d2ebc35e0b302)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_462ec89b7cb2730adddb412869157fd1 = L.circleMarker(\\n\",\n       \"                [28.8194, 104.5969],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa070fe8af82f5295bcb30cf6da9f79e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_562ee8cd44b7309b526335856e08e657 = $(`&lt;div id=&quot;html_562ee8cd44b7309b526335856e08e657&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.5969             latitude:28.8194             pred_result:52.28778076171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa070fe8af82f5295bcb30cf6da9f79e.setContent(html_562ee8cd44b7309b526335856e08e657);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_462ec89b7cb2730adddb412869157fd1.bindPopup(popup_aa070fe8af82f5295bcb30cf6da9f79e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_932a57600138544feb5d2a1a88eca58d = L.circleMarker(\\n\",\n       \"                [28.76611, 104.6225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bc845b50bdbde03853b17b91f6fb2a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4032eb9828cafddc7c3a62a92d73a009 = $(`&lt;div id=&quot;html_4032eb9828cafddc7c3a62a92d73a009&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6225             latitude:28.76611             pred_result:52.18626403808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bc845b50bdbde03853b17b91f6fb2a3.setContent(html_4032eb9828cafddc7c3a62a92d73a009);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_932a57600138544feb5d2a1a88eca58d.bindPopup(popup_0bc845b50bdbde03853b17b91f6fb2a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7951501df9ea8ee97e1f3dfe4fee60f = L.circleMarker(\\n\",\n       \"                [28.7867, 104.6061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24eb65597af738f31d79ca4ea65212b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4f6e2e142daf3d11f99ebfbf033d339 = $(`&lt;div id=&quot;html_d4f6e2e142daf3d11f99ebfbf033d339&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6061             latitude:28.7867             pred_result:52.30988311767578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24eb65597af738f31d79ca4ea65212b2.setContent(html_d4f6e2e142daf3d11f99ebfbf033d339);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7951501df9ea8ee97e1f3dfe4fee60f.bindPopup(popup_24eb65597af738f31d79ca4ea65212b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8440e0080f8715e41bd70579081903a4 = L.circleMarker(\\n\",\n       \"                [28.763890000000004, 104.6417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9f4ace9b42503ab2238f16c45ba956f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec43c6e6f89052f9a745f1654aa1f1fa = $(`&lt;div id=&quot;html_ec43c6e6f89052f9a745f1654aa1f1fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6417             latitude:28.763890000000004             pred_result:52.08507537841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9f4ace9b42503ab2238f16c45ba956f.setContent(html_ec43c6e6f89052f9a745f1654aa1f1fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8440e0080f8715e41bd70579081903a4.bindPopup(popup_b9f4ace9b42503ab2238f16c45ba956f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba7abf9fc2c99e5dfda6ad98e151ae2e = L.circleMarker(\\n\",\n       \"                [28.71583, 104.5761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fedf3e8e6845a8f6cd239ade3ea9912b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60ebe4644395e73f82e288dce461f8d6 = $(`&lt;div id=&quot;html_60ebe4644395e73f82e288dce461f8d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.5761             latitude:28.71583             pred_result:51.49830627441406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fedf3e8e6845a8f6cd239ade3ea9912b.setContent(html_60ebe4644395e73f82e288dce461f8d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba7abf9fc2c99e5dfda6ad98e151ae2e.bindPopup(popup_fedf3e8e6845a8f6cd239ade3ea9912b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_463fd10f0eacb09f3eb44a21e39790b4 = L.circleMarker(\\n\",\n       \"                [28.7989, 104.6789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fbaee0944ea372447d78131f4d3b9c8c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4babcf10f7c1ca641370720e97085ced = $(`&lt;div id=&quot;html_4babcf10f7c1ca641370720e97085ced&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6789             latitude:28.7989             pred_result:52.1375617980957             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fbaee0944ea372447d78131f4d3b9c8c.setContent(html_4babcf10f7c1ca641370720e97085ced);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_463fd10f0eacb09f3eb44a21e39790b4.bindPopup(popup_fbaee0944ea372447d78131f4d3b9c8c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1755ae56eadb346988d94f8483a295a1 = L.circleMarker(\\n\",\n       \"                [26.57098, 101.68912],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55db766f566d80218ab0a9e12295b501 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3ccc64803dc9171c01efe5522ffb1b9 = $(`&lt;div id=&quot;html_b3ccc64803dc9171c01efe5522ffb1b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.68912             latitude:26.57098             pred_result:30.90633773803711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55db766f566d80218ab0a9e12295b501.setContent(html_b3ccc64803dc9171c01efe5522ffb1b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1755ae56eadb346988d94f8483a295a1.bindPopup(popup_55db766f566d80218ab0a9e12295b501)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c2febb3a56df0705da419db97258430 = L.circleMarker(\\n\",\n       \"                [26.5928, 101.5769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9db1cfe621c45ec23df0266e5dd5823 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fba5a1df2372ed8c6510a9a397f7d6a9 = $(`&lt;div id=&quot;html_fba5a1df2372ed8c6510a9a397f7d6a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.5769             latitude:26.5928             pred_result:30.018070220947266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9db1cfe621c45ec23df0266e5dd5823.setContent(html_fba5a1df2372ed8c6510a9a397f7d6a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c2febb3a56df0705da419db97258430.bindPopup(popup_f9db1cfe621c45ec23df0266e5dd5823)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa323c9fb7092d1687ccb5cedd6a26af = L.circleMarker(\\n\",\n       \"                [26.585, 101.7169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fcf9fb7734756bc2d1347500597be4db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0fe38b2e11b1331cd175a16024cdce31 = $(`&lt;div id=&quot;html_0fe38b2e11b1331cd175a16024cdce31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7169             latitude:26.585             pred_result:31.755887985229492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fcf9fb7734756bc2d1347500597be4db.setContent(html_0fe38b2e11b1331cd175a16024cdce31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa323c9fb7092d1687ccb5cedd6a26af.bindPopup(popup_fcf9fb7734756bc2d1347500597be4db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf0ca1a61497ce6025d5456055da7a9a = L.circleMarker(\\n\",\n       \"                [26.5017, 101.7453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96572ffaec0f0e33d4ded677ddd08e9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_888c063fc9289b58ed367b3b306668ed = $(`&lt;div id=&quot;html_888c063fc9289b58ed367b3b306668ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7453             latitude:26.5017             pred_result:31.788816452026367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96572ffaec0f0e33d4ded677ddd08e9c.setContent(html_888c063fc9289b58ed367b3b306668ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf0ca1a61497ce6025d5456055da7a9a.bindPopup(popup_96572ffaec0f0e33d4ded677ddd08e9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f1a449e78cca5a3189f5073b9a8a9d6 = L.circleMarker(\\n\",\n       \"                [28.9583, 105.4306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_084dbc82752d24bf0685aaaa9ac889c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2da60ea77026d84095cb918c3cbb8130 = $(`&lt;div id=&quot;html_2da60ea77026d84095cb918c3cbb8130&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4306             latitude:28.9583             pred_result:49.10944747924805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_084dbc82752d24bf0685aaaa9ac889c9.setContent(html_2da60ea77026d84095cb918c3cbb8130);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f1a449e78cca5a3189f5073b9a8a9d6.bindPopup(popup_084dbc82752d24bf0685aaaa9ac889c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_649cb946dbc61db5e139427ae2ebd5c4 = L.circleMarker(\\n\",\n       \"                [28.9026, 105.4436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3640d2fb26f16bc875384c8c6915e312 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c33d0930030917ff9deec1ac93c796da = $(`&lt;div id=&quot;html_c33d0930030917ff9deec1ac93c796da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4436             latitude:28.9026             pred_result:49.24217987060547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3640d2fb26f16bc875384c8c6915e312.setContent(html_c33d0930030917ff9deec1ac93c796da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_649cb946dbc61db5e139427ae2ebd5c4.bindPopup(popup_3640d2fb26f16bc875384c8c6915e312)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b7d4896bf99c6f068493d548bc3275b = L.circleMarker(\\n\",\n       \"                [28.8558, 105.4322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3024d6c728db0fc19e0dce85aaca69b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7022628c52998dd7bdb16d039f5a475a = $(`&lt;div id=&quot;html_7022628c52998dd7bdb16d039f5a475a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4322             latitude:28.8558             pred_result:49.08483123779297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3024d6c728db0fc19e0dce85aaca69b7.setContent(html_7022628c52998dd7bdb16d039f5a475a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b7d4896bf99c6f068493d548bc3275b.bindPopup(popup_3024d6c728db0fc19e0dce85aaca69b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d96434e8e201f04815769093d8ce2c3 = L.circleMarker(\\n\",\n       \"                [28.8833, 105.4322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d88354f552549f95138f51bf7f352c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f7284a1fd0395324a297a7a62fffd9e = $(`&lt;div id=&quot;html_2f7284a1fd0395324a297a7a62fffd9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4322             latitude:28.8833             pred_result:49.13562774658203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d88354f552549f95138f51bf7f352c1.setContent(html_2f7284a1fd0395324a297a7a62fffd9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d96434e8e201f04815769093d8ce2c3.bindPopup(popup_3d88354f552549f95138f51bf7f352c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a529cf9fce838e9ef52d30d186619011 = L.circleMarker(\\n\",\n       \"                [29.3628, 104.7547],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c66d686cd0c03e0490ed932f4ee45352 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f5647d31186f85849dbc8ed5e331306 = $(`&lt;div id=&quot;html_5f5647d31186f85849dbc8ed5e331306&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7547             latitude:29.3628             pred_result:52.6197509765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c66d686cd0c03e0490ed932f4ee45352.setContent(html_5f5647d31186f85849dbc8ed5e331306);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a529cf9fce838e9ef52d30d186619011.bindPopup(popup_c66d686cd0c03e0490ed932f4ee45352)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_116291ca8c9b626c07ec2b9d46d6eb43 = L.circleMarker(\\n\",\n       \"                [29.3411, 104.7692],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c87be115c8de85fd10e5f5d89bf20e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17eb4ae955cdae574724074e3156f77f = $(`&lt;div id=&quot;html_17eb4ae955cdae574724074e3156f77f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7692             latitude:29.3411             pred_result:52.50042724609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c87be115c8de85fd10e5f5d89bf20e2.setContent(html_17eb4ae955cdae574724074e3156f77f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_116291ca8c9b626c07ec2b9d46d6eb43.bindPopup(popup_0c87be115c8de85fd10e5f5d89bf20e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6ab7826c2fe682ac7d7319b61c78070 = L.circleMarker(\\n\",\n       \"                [31.1208, 104.4219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0d8601a174bc1640c8d6f5c4c0bbff0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b555640dde3fb488e121ef282c5d714d = $(`&lt;div id=&quot;html_b555640dde3fb488e121ef282c5d714d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.4219             latitude:31.1208             pred_result:55.34663009643555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0d8601a174bc1640c8d6f5c4c0bbff0.setContent(html_b555640dde3fb488e121ef282c5d714d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6ab7826c2fe682ac7d7319b61c78070.bindPopup(popup_f0d8601a174bc1640c8d6f5c4c0bbff0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd30159a3acde33f99efbe76638d278d = L.circleMarker(\\n\",\n       \"                [31.1333, 104.3883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eed62d189c345fcb4e9c214784fcf6c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_265aa05c10471c92787c00cf32ace42a = $(`&lt;div id=&quot;html_265aa05c10471c92787c00cf32ace42a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.3883             latitude:31.1333             pred_result:55.46642303466797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eed62d189c345fcb4e9c214784fcf6c7.setContent(html_265aa05c10471c92787c00cf32ace42a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd30159a3acde33f99efbe76638d278d.bindPopup(popup_eed62d189c345fcb4e9c214784fcf6c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91003f2bbc71dbb01bd28dae8e93d63f = L.circleMarker(\\n\",\n       \"                [31.1167, 104.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15f4d80913a23cafd824ddbf4cb7e199 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b52618961664fb5ab35bf212112fb747 = $(`&lt;div id=&quot;html_b52618961664fb5ab35bf212112fb747&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.4053             latitude:31.1167             pred_result:55.47137451171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15f4d80913a23cafd824ddbf4cb7e199.setContent(html_b52618961664fb5ab35bf212112fb747);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91003f2bbc71dbb01bd28dae8e93d63f.bindPopup(popup_15f4d80913a23cafd824ddbf4cb7e199)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c526a5e86a2cecd972d11cdf4ca769b = L.circleMarker(\\n\",\n       \"                [31.1108, 104.3539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99b884dfc2bb0660929dafb74429d269 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_245ddb93d45770a3379018a53d7c8aeb = $(`&lt;div id=&quot;html_245ddb93d45770a3379018a53d7c8aeb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.3539             latitude:31.1108             pred_result:55.85801315307617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99b884dfc2bb0660929dafb74429d269.setContent(html_245ddb93d45770a3379018a53d7c8aeb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c526a5e86a2cecd972d11cdf4ca769b.bindPopup(popup_99b884dfc2bb0660929dafb74429d269)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_594fb0305973174b6a1131b87aa96a80 = L.circleMarker(\\n\",\n       \"                [30.8064, 106.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f66b09dc72b50b053374060c6a02e80 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66a2619b6187fa313477cd62074ff576 = $(`&lt;div id=&quot;html_66a2619b6187fa313477cd62074ff576&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.056             latitude:30.8064             pred_result:48.44681930541992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f66b09dc72b50b053374060c6a02e80.setContent(html_66a2619b6187fa313477cd62074ff576);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_594fb0305973174b6a1131b87aa96a80.bindPopup(popup_7f66b09dc72b50b053374060c6a02e80)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_166bfdf89dd8214fc9aacdf468faf7ec = L.circleMarker(\\n\",\n       \"                [30.8023, 106.0789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e82fea72424995a667515118f0a72247 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a829c249e96a9d3c02c784a82c2b1884 = $(`&lt;div id=&quot;html_a829c249e96a9d3c02c784a82c2b1884&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0789             latitude:30.8023             pred_result:48.27852249145508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e82fea72424995a667515118f0a72247.setContent(html_a829c249e96a9d3c02c784a82c2b1884);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_166bfdf89dd8214fc9aacdf468faf7ec.bindPopup(popup_e82fea72424995a667515118f0a72247)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be1c3458ec6dd6cc618cdc53f952a619 = L.circleMarker(\\n\",\n       \"                [30.8217, 106.1031],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_408c4c247fe2ef315bc7e92f74dd39c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54c246f2195694eba5c2f3bc6cf3dbdf = $(`&lt;div id=&quot;html_54c246f2195694eba5c2f3bc6cf3dbdf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1031             latitude:30.8217             pred_result:48.03146743774414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_408c4c247fe2ef315bc7e92f74dd39c1.setContent(html_54c246f2195694eba5c2f3bc6cf3dbdf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be1c3458ec6dd6cc618cdc53f952a619.bindPopup(popup_408c4c247fe2ef315bc7e92f74dd39c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e966c045e6bc17f306f7fd877669367d = L.circleMarker(\\n\",\n       \"                [30.7856, 106.1064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e394591e38d7860561c46671d76e6832 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5709f9d59a1e15c856517f109037baf = $(`&lt;div id=&quot;html_b5709f9d59a1e15c856517f109037baf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1064             latitude:30.7856             pred_result:47.37805938720703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e394591e38d7860561c46671d76e6832.setContent(html_b5709f9d59a1e15c856517f109037baf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e966c045e6bc17f306f7fd877669367d.bindPopup(popup_e394591e38d7860561c46671d76e6832)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cad43587bc81a96a90f565f23e7790a1 = L.circleMarker(\\n\",\n       \"                [30.7636, 106.0642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ff76d50e129c8f6b3cbf1f712b39d29 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_792f94f65f4ff983ef16d789ed319b34 = $(`&lt;div id=&quot;html_792f94f65f4ff983ef16d789ed319b34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0642             latitude:30.7636             pred_result:48.28588104248047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ff76d50e129c8f6b3cbf1f712b39d29.setContent(html_792f94f65f4ff983ef16d789ed319b34);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cad43587bc81a96a90f565f23e7790a1.bindPopup(popup_5ff76d50e129c8f6b3cbf1f712b39d29)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0fa69de8ebfbb1c23a4ff995fe0b645 = L.circleMarker(\\n\",\n       \"                [30.8388, 106.1087],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15d585313c0b858b97b614de7490f14b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0bb2bd84826c7a45af28db821e2cab5b = $(`&lt;div id=&quot;html_0bb2bd84826c7a45af28db821e2cab5b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1087             latitude:30.8388             pred_result:48.37846374511719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15d585313c0b858b97b614de7490f14b.setContent(html_0bb2bd84826c7a45af28db821e2cab5b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0fa69de8ebfbb1c23a4ff995fe0b645.bindPopup(popup_15d585313c0b858b97b614de7490f14b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68a95aba52643f8bbecbc427f587ef7b = L.circleMarker(\\n\",\n       \"                [27.6869, 106.9222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0161e04d2f08f7db838b1a1fb6268c40 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7bbf1f51003e992b08def6491a7124ca = $(`&lt;div id=&quot;html_7bbf1f51003e992b08def6491a7124ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9222             latitude:27.6869             pred_result:40.065895080566406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0161e04d2f08f7db838b1a1fb6268c40.setContent(html_7bbf1f51003e992b08def6491a7124ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68a95aba52643f8bbecbc427f587ef7b.bindPopup(popup_0161e04d2f08f7db838b1a1fb6268c40)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fea5c275db54804ec0d859aba49cf85 = L.circleMarker(\\n\",\n       \"                [27.7019, 106.9242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_042ec80380fa7738f61031ad85506659 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b91cdcd451470f2d321a6a4ba1144e7c = $(`&lt;div id=&quot;html_b91cdcd451470f2d321a6a4ba1144e7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9242             latitude:27.7019             pred_result:40.09477233886719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_042ec80380fa7738f61031ad85506659.setContent(html_b91cdcd451470f2d321a6a4ba1144e7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fea5c275db54804ec0d859aba49cf85.bindPopup(popup_042ec80380fa7738f61031ad85506659)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cfc6242b203f5d62ec051ce318ce000f = L.circleMarker(\\n\",\n       \"                [27.6486, 106.8906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b43d6f17e552b5cbb24657b8986eb15f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_890a78833a0b44b2281b0242cdfc1dff = $(`&lt;div id=&quot;html_890a78833a0b44b2281b0242cdfc1dff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8906             latitude:27.6486             pred_result:39.72452163696289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b43d6f17e552b5cbb24657b8986eb15f.setContent(html_890a78833a0b44b2281b0242cdfc1dff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cfc6242b203f5d62ec051ce318ce000f.bindPopup(popup_b43d6f17e552b5cbb24657b8986eb15f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e49ddb605d869bbbef78d7d30e26af91 = L.circleMarker(\\n\",\n       \"                [27.72, 106.9178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d9772678d9f21c39cc695f77ca9538e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c43d6539418479c9f59c0838bcb76b04 = $(`&lt;div id=&quot;html_c43d6539418479c9f59c0838bcb76b04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9178             latitude:27.72             pred_result:40.1761474609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d9772678d9f21c39cc695f77ca9538e.setContent(html_c43d6539418479c9f59c0838bcb76b04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e49ddb605d869bbbef78d7d30e26af91.bindPopup(popup_2d9772678d9f21c39cc695f77ca9538e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c88c83c7ba6075742c382e147438b2b0 = L.circleMarker(\\n\",\n       \"                [25.5035, 103.7897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df03210cbf7adcc086a3d42a4969597b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c1baaa10578c7d544b880a9ce3c7af5 = $(`&lt;div id=&quot;html_2c1baaa10578c7d544b880a9ce3c7af5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7897             latitude:25.5035             pred_result:24.268484115600586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df03210cbf7adcc086a3d42a4969597b.setContent(html_2c1baaa10578c7d544b880a9ce3c7af5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c88c83c7ba6075742c382e147438b2b0.bindPopup(popup_df03210cbf7adcc086a3d42a4969597b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_711540b613f1a9d0f91634d4c2040a16 = L.circleMarker(\\n\",\n       \"                [25.5364, 103.8],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad7b3418efa9a4c6a5ed2661a3b16bde = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbeef374a8ded1d10e65af999f6c7144 = $(`&lt;div id=&quot;html_cbeef374a8ded1d10e65af999f6c7144&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8             latitude:25.5364             pred_result:24.407806396484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad7b3418efa9a4c6a5ed2661a3b16bde.setContent(html_cbeef374a8ded1d10e65af999f6c7144);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_711540b613f1a9d0f91634d4c2040a16.bindPopup(popup_ad7b3418efa9a4c6a5ed2661a3b16bde)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c5095c7bb7e69547814206981e91be7 = L.circleMarker(\\n\",\n       \"                [34.3956, 108.7197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_edd4979a9b941bc3c4109af1936811ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b89df3851c0172ba1bb60d06c5debc24 = $(`&lt;div id=&quot;html_b89df3851c0172ba1bb60d06c5debc24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7197             latitude:34.3956             pred_result:69.80349731445312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_edd4979a9b941bc3c4109af1936811ac.setContent(html_b89df3851c0172ba1bb60d06c5debc24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c5095c7bb7e69547814206981e91be7.bindPopup(popup_edd4979a9b941bc3c4109af1936811ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5976420a1251413268baf611bf28f76a = L.circleMarker(\\n\",\n       \"                [34.3181, 108.6761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6bbee0aca69e735a0fb72018e2224cc0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6408859b8b313d43e70414bb2e8a5f75 = $(`&lt;div id=&quot;html_6408859b8b313d43e70414bb2e8a5f75&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6761             latitude:34.3181             pred_result:66.36238098144531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6bbee0aca69e735a0fb72018e2224cc0.setContent(html_6408859b8b313d43e70414bb2e8a5f75);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5976420a1251413268baf611bf28f76a.bindPopup(popup_6bbee0aca69e735a0fb72018e2224cc0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f07e0d55ff31ec7de1ec500768d68d64 = L.circleMarker(\\n\",\n       \"                [34.3617, 108.7233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_766378bebda49ad4392ecf0aefbac8ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4dd055894d69f82136351d28b07dce8e = $(`&lt;div id=&quot;html_4dd055894d69f82136351d28b07dce8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7233             latitude:34.3617             pred_result:68.7668685913086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_766378bebda49ad4392ecf0aefbac8ab.setContent(html_4dd055894d69f82136351d28b07dce8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f07e0d55ff31ec7de1ec500768d68d64.bindPopup(popup_766378bebda49ad4392ecf0aefbac8ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9843994f984d8dd2d9d0cda3d8f21b4 = L.circleMarker(\\n\",\n       \"                [34.3164, 108.7369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23e164c3ff4342fd19941c5f9ed01eb4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3ac99117838c95d6ef185671b6d0d2f = $(`&lt;div id=&quot;html_a3ac99117838c95d6ef185671b6d0d2f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7369             latitude:34.3164             pred_result:65.45269775390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23e164c3ff4342fd19941c5f9ed01eb4.setContent(html_a3ac99117838c95d6ef185671b6d0d2f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9843994f984d8dd2d9d0cda3d8f21b4.bindPopup(popup_23e164c3ff4342fd19941c5f9ed01eb4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38fe60e2b170a499b5d5848a941d52b3 = L.circleMarker(\\n\",\n       \"                [35.0994, 109.0656],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4daa2babd6a97b9a1a800cbcb30fcad1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26894158470d1ee6990dfd735a34aa21 = $(`&lt;div id=&quot;html_26894158470d1ee6990dfd735a34aa21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0656             latitude:35.0994             pred_result:56.45066833496094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4daa2babd6a97b9a1a800cbcb30fcad1.setContent(html_26894158470d1ee6990dfd735a34aa21);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38fe60e2b170a499b5d5848a941d52b3.bindPopup(popup_4daa2babd6a97b9a1a800cbcb30fcad1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a8b2779a3de6aa3dab0c7714b5bf46b = L.circleMarker(\\n\",\n       \"                [35.0697, 109.0697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_244aa9b7c2bec411940c2d053b54ea39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_923437601053b5fab5bab1c296bbc86e = $(`&lt;div id=&quot;html_923437601053b5fab5bab1c296bbc86e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0697             latitude:35.0697             pred_result:59.12350082397461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_244aa9b7c2bec411940c2d053b54ea39.setContent(html_923437601053b5fab5bab1c296bbc86e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a8b2779a3de6aa3dab0c7714b5bf46b.bindPopup(popup_244aa9b7c2bec411940c2d053b54ea39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e94ca27121f9942c24eadb0ba2bd6591 = L.circleMarker(\\n\",\n       \"                [34.9058, 108.9344],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f22152d6c739972e626623b91110d6a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_584fb48e4bb99e94ce049939c7379d39 = $(`&lt;div id=&quot;html_584fb48e4bb99e94ce049939c7379d39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.9344             latitude:34.9058             pred_result:62.57423782348633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f22152d6c739972e626623b91110d6a6.setContent(html_584fb48e4bb99e94ce049939c7379d39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e94ca27121f9942c24eadb0ba2bd6591.bindPopup(popup_f22152d6c739972e626623b91110d6a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7107b6de0e42429690c852c35da27faf = L.circleMarker(\\n\",\n       \"                [34.8731, 108.9589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e85effb7642263b65d0ed7fb05ae0b27 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50354a4b92e71fac29663226a8119b22 = $(`&lt;div id=&quot;html_50354a4b92e71fac29663226a8119b22&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.9589             latitude:34.8731             pred_result:63.749542236328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e85effb7642263b65d0ed7fb05ae0b27.setContent(html_50354a4b92e71fac29663226a8119b22);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7107b6de0e42429690c852c35da27faf.bindPopup(popup_e85effb7642263b65d0ed7fb05ae0b27)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_700d0031d18916f086e20854e4736866 = L.circleMarker(\\n\",\n       \"                [36.6275, 109.4131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a60ec2dd3caf88164eb5595ae4c85b2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_944e524703649e18d3199704ade64d37 = $(`&lt;div id=&quot;html_944e524703649e18d3199704ade64d37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4131             latitude:36.6275             pred_result:56.22313690185547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a60ec2dd3caf88164eb5595ae4c85b2c.setContent(html_944e524703649e18d3199704ade64d37);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_700d0031d18916f086e20854e4736866.bindPopup(popup_a60ec2dd3caf88164eb5595ae4c85b2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29dd11dd819759aa95030980eee00241 = L.circleMarker(\\n\",\n       \"                [36.6028, 109.4761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8528851950942fb075ac5945c803e72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d44af5c3f5af3e23c68156016c05ee87 = $(`&lt;div id=&quot;html_d44af5c3f5af3e23c68156016c05ee87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4761             latitude:36.6028             pred_result:57.54499816894531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8528851950942fb075ac5945c803e72.setContent(html_d44af5c3f5af3e23c68156016c05ee87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29dd11dd819759aa95030980eee00241.bindPopup(popup_a8528851950942fb075ac5945c803e72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb953e0e8b67147a28017bf3a5045d3a = L.circleMarker(\\n\",\n       \"                [36.5767, 109.4824],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_501250137b945e4e5c0a2bc16a03f6ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0e47f96f8206e932f79532c8bd5c039 = $(`&lt;div id=&quot;html_e0e47f96f8206e932f79532c8bd5c039&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4824             latitude:36.5767             pred_result:59.060386657714844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_501250137b945e4e5c0a2bc16a03f6ba.setContent(html_e0e47f96f8206e932f79532c8bd5c039);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb953e0e8b67147a28017bf3a5045d3a.bindPopup(popup_501250137b945e4e5c0a2bc16a03f6ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1be4459789c7463f7bc66721de02d058 = L.circleMarker(\\n\",\n       \"                [36.6106, 109.5056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e51e6c5573cb395c115677277a5427e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6458aacc3b13d111e91561dfe45ded62 = $(`&lt;div id=&quot;html_6458aacc3b13d111e91561dfe45ded62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5056             latitude:36.6106             pred_result:59.206382751464844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e51e6c5573cb395c115677277a5427e.setContent(html_6458aacc3b13d111e91561dfe45ded62);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1be4459789c7463f7bc66721de02d058.bindPopup(popup_2e51e6c5573cb395c115677277a5427e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21d5dceddb45f5187887a9a970b7ee78 = L.circleMarker(\\n\",\n       \"                [34.3708, 107.1586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53fa4edd912d3982176e721f10e23d03 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1fb4aa94a12c611e0df4d826c6441359 = $(`&lt;div id=&quot;html_1fb4aa94a12c611e0df4d826c6441359&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1586             latitude:34.3708             pred_result:54.325645446777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53fa4edd912d3982176e721f10e23d03.setContent(html_1fb4aa94a12c611e0df4d826c6441359);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21d5dceddb45f5187887a9a970b7ee78.bindPopup(popup_53fa4edd912d3982176e721f10e23d03)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2520db8b26371440d967af537ec31458 = L.circleMarker(\\n\",\n       \"                [34.3017, 107.0708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85634742b1894efc430e74f81dca037b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a6ab77798d061bfc3cbee15865e2b2f = $(`&lt;div id=&quot;html_7a6ab77798d061bfc3cbee15865e2b2f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0708             latitude:34.3017             pred_result:46.04658508300781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85634742b1894efc430e74f81dca037b.setContent(html_7a6ab77798d061bfc3cbee15865e2b2f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2520db8b26371440d967af537ec31458.bindPopup(popup_85634742b1894efc430e74f81dca037b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c75a15257346cabd7a5637bbde61321d = L.circleMarker(\\n\",\n       \"                [34.3672, 107.1906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2cc502d28329bfebde468768692b934a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0de7dc762281939544ec8c7ee5e32cb8 = $(`&lt;div id=&quot;html_0de7dc762281939544ec8c7ee5e32cb8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1906             latitude:34.3672             pred_result:53.697906494140625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2cc502d28329bfebde468768692b934a.setContent(html_0de7dc762281939544ec8c7ee5e32cb8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c75a15257346cabd7a5637bbde61321d.bindPopup(popup_2cc502d28329bfebde468768692b934a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d9ff5c427b54a76c3ef2971a5c1aca9 = L.circleMarker(\\n\",\n       \"                [34.3547, 107.1431],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ccf1de4a225791d345305f930d0c32bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6099ca5ee67b0b00b5cdb54d027aaca7 = $(`&lt;div id=&quot;html_6099ca5ee67b0b00b5cdb54d027aaca7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1431             latitude:34.3547             pred_result:52.57269287109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ccf1de4a225791d345305f930d0c32bc.setContent(html_6099ca5ee67b0b00b5cdb54d027aaca7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d9ff5c427b54a76c3ef2971a5c1aca9.bindPopup(popup_ccf1de4a225791d345305f930d0c32bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adce215303a891dd58e69ba30389630f = L.circleMarker(\\n\",\n       \"                [34.3739, 107.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_880462dc559af7cc5ef3ca7a233ff13b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_336fa837e81f8a9a66e5925fe0b7134d = $(`&lt;div id=&quot;html_336fa837e81f8a9a66e5925fe0b7134d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1186             latitude:34.3739             pred_result:53.714271545410156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_880462dc559af7cc5ef3ca7a233ff13b.setContent(html_336fa837e81f8a9a66e5925fe0b7134d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adce215303a891dd58e69ba30389630f.bindPopup(popup_880462dc559af7cc5ef3ca7a233ff13b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef1696751d4e59bd3e23699c5a534de5 = L.circleMarker(\\n\",\n       \"                [34.3528, 107.3906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0931fcd5325ca1ac523feac9cb4f1bec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0cf6bd90b8bc72304bcf8be056c54b2 = $(`&lt;div id=&quot;html_c0cf6bd90b8bc72304bcf8be056c54b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3906             latitude:34.3528             pred_result:53.00864028930664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0931fcd5325ca1ac523feac9cb4f1bec.setContent(html_c0cf6bd90b8bc72304bcf8be056c54b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef1696751d4e59bd3e23699c5a534de5.bindPopup(popup_0931fcd5325ca1ac523feac9cb4f1bec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01bd442de16ea39ac9acaab440dc2517 = L.circleMarker(\\n\",\n       \"                [34.3497, 107.2058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39f0a186d7555d6da5498a48679e3daf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5cf3e282dc372cee142ded5720223b2b = $(`&lt;div id=&quot;html_5cf3e282dc372cee142ded5720223b2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.2058             latitude:34.3497             pred_result:52.228004455566406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39f0a186d7555d6da5498a48679e3daf.setContent(html_5cf3e282dc372cee142ded5720223b2b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01bd442de16ea39ac9acaab440dc2517.bindPopup(popup_39f0a186d7555d6da5498a48679e3daf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_225554b1376bb670cdc5cb0a078db553 = L.circleMarker(\\n\",\n       \"                [34.3622, 107.2386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4b17a1348046b78198afae2c6b982523 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5fcdd29b025040b8d5ae4d4e1e30f043 = $(`&lt;div id=&quot;html_5fcdd29b025040b8d5ae4d4e1e30f043&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.2386             latitude:34.3622             pred_result:53.34614562988281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4b17a1348046b78198afae2c6b982523.setContent(html_5fcdd29b025040b8d5ae4d4e1e30f043);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_225554b1376bb670cdc5cb0a078db553.bindPopup(popup_4b17a1348046b78198afae2c6b982523)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7235d23f2267f0bafc137458746beb30 = L.circleMarker(\\n\",\n       \"                [34.5101, 109.5293],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb9dde066bf79c6e6772f06ea1d1c80b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa73f3aecceb4b6439bd7861962b71d6 = $(`&lt;div id=&quot;html_fa73f3aecceb4b6439bd7861962b71d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5293             latitude:34.5101             pred_result:68.04405212402344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb9dde066bf79c6e6772f06ea1d1c80b.setContent(html_fa73f3aecceb4b6439bd7861962b71d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7235d23f2267f0bafc137458746beb30.bindPopup(popup_bb9dde066bf79c6e6772f06ea1d1c80b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8bead97ef0c3c1abbb4834bc5e842c2 = L.circleMarker(\\n\",\n       \"                [34.5004, 109.5049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35b3cda3f21a3904a06bc7048ffe237b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecdfddb302c0658de5df443e7d80f7fa = $(`&lt;div id=&quot;html_ecdfddb302c0658de5df443e7d80f7fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5049             latitude:34.5004             pred_result:68.9757080078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35b3cda3f21a3904a06bc7048ffe237b.setContent(html_ecdfddb302c0658de5df443e7d80f7fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8bead97ef0c3c1abbb4834bc5e842c2.bindPopup(popup_35b3cda3f21a3904a06bc7048ffe237b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c8f426c9aaca74c65a22c8327608223 = L.circleMarker(\\n\",\n       \"                [34.493, 109.4636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dedacb15af49050343534d5f1bec719e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0903e92658d5809a550c68e68fae14d = $(`&lt;div id=&quot;html_a0903e92658d5809a550c68e68fae14d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4636             latitude:34.493             pred_result:69.35285186767578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dedacb15af49050343534d5f1bec719e.setContent(html_a0903e92658d5809a550c68e68fae14d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c8f426c9aaca74c65a22c8327608223.bindPopup(popup_dedacb15af49050343534d5f1bec719e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_046f823d030ff42f064058fb5f67f08d = L.circleMarker(\\n\",\n       \"                [34.5021, 109.4266],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f3bc5bb6c6a7dbbcb2ec93d5b23749f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2865c045dd3e0059a5946e0b213b18e3 = $(`&lt;div id=&quot;html_2865c045dd3e0059a5946e0b213b18e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4266             latitude:34.5021             pred_result:70.47157287597656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f3bc5bb6c6a7dbbcb2ec93d5b23749f.setContent(html_2865c045dd3e0059a5946e0b213b18e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_046f823d030ff42f064058fb5f67f08d.bindPopup(popup_2f3bc5bb6c6a7dbbcb2ec93d5b23749f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d271d2103d87bace171d1a448d305d9a = L.circleMarker(\\n\",\n       \"                [38.5247, 102.1878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8cea40e08afec1da223ff8daefb8de2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d2386098887e170f24e0bf9809f4c60 = $(`&lt;div id=&quot;html_7d2386098887e170f24e0bf9809f4c60&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1878             latitude:38.5247             pred_result:39.72054672241211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8cea40e08afec1da223ff8daefb8de2c.setContent(html_7d2386098887e170f24e0bf9809f4c60);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d271d2103d87bace171d1a448d305d9a.bindPopup(popup_8cea40e08afec1da223ff8daefb8de2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a4fdf685796b96de4d6b0ba2b1731fe = L.circleMarker(\\n\",\n       \"                [38.5339, 102.1725],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6fcbc690d33b9cf15c860078a1195d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8176f10c00d2a1325a068b256ca7e8e0 = $(`&lt;div id=&quot;html_8176f10c00d2a1325a068b256ca7e8e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1725             latitude:38.5339             pred_result:39.53980255126953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6fcbc690d33b9cf15c860078a1195d9.setContent(html_8176f10c00d2a1325a068b256ca7e8e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a4fdf685796b96de4d6b0ba2b1731fe.bindPopup(popup_e6fcbc690d33b9cf15c860078a1195d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e3257b5c7eab0b2503c3274473ad637 = L.circleMarker(\\n\",\n       \"                [38.5061, 102.1708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7295e0fa7524c6ef00e4c46d18624de6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_077f1d93495ce1c8fdb64474640972a7 = $(`&lt;div id=&quot;html_077f1d93495ce1c8fdb64474640972a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1708             latitude:38.5061             pred_result:39.77781677246094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7295e0fa7524c6ef00e4c46d18624de6.setContent(html_077f1d93495ce1c8fdb64474640972a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e3257b5c7eab0b2503c3274473ad637.bindPopup(popup_7295e0fa7524c6ef00e4c46d18624de6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40e8d2b03b74fb2dcc4a3cf845ffdc80 = L.circleMarker(\\n\",\n       \"                [39.7711, 98.2908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5a46142ae6bfc01e20371f4e9c8ef7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef891ecd3d4a1822580ab9d8d57d7be7 = $(`&lt;div id=&quot;html_ef891ecd3d4a1822580ab9d8d57d7be7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.2908             latitude:39.7711             pred_result:22.719165802001953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5a46142ae6bfc01e20371f4e9c8ef7a.setContent(html_ef891ecd3d4a1822580ab9d8d57d7be7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40e8d2b03b74fb2dcc4a3cf845ffdc80.bindPopup(popup_c5a46142ae6bfc01e20371f4e9c8ef7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28feea9da1020e4364801cf40b3feaf6 = L.circleMarker(\\n\",\n       \"                [38.817, 106.3394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4463e96beb2199603ee117e9003ed6a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a583c8700964e009345084c64bb3444 = $(`&lt;div id=&quot;html_8a583c8700964e009345084c64bb3444&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3394             latitude:38.817             pred_result:51.78929901123047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4463e96beb2199603ee117e9003ed6a3.setContent(html_8a583c8700964e009345084c64bb3444);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28feea9da1020e4364801cf40b3feaf6.bindPopup(popup_4463e96beb2199603ee117e9003ed6a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e157cc32ff3c9d82b3e7037c0eb18a2 = L.circleMarker(\\n\",\n       \"                [39.0153, 106.3717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c8062fc4ef9491a9d38db7dd48e81e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9cde65ddda6cbf318326bf56c8534c66 = $(`&lt;div id=&quot;html_9cde65ddda6cbf318326bf56c8534c66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3717             latitude:39.0153             pred_result:52.433509826660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c8062fc4ef9491a9d38db7dd48e81e1.setContent(html_9cde65ddda6cbf318326bf56c8534c66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e157cc32ff3c9d82b3e7037c0eb18a2.bindPopup(popup_7c8062fc4ef9491a9d38db7dd48e81e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1410e660880d1c8286b7524010db70bc = L.circleMarker(\\n\",\n       \"                [39.2282, 106.7704],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e3af13fe844353b4d328eaa6fb817b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_525718ac568ac12c53dc81fcebd289a6 = $(`&lt;div id=&quot;html_525718ac568ac12c53dc81fcebd289a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7704             latitude:39.2282             pred_result:53.06068420410156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e3af13fe844353b4d328eaa6fb817b2.setContent(html_525718ac568ac12c53dc81fcebd289a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1410e660880d1c8286b7524010db70bc.bindPopup(popup_3e3af13fe844353b4d328eaa6fb817b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15f39511aad4c56d3013223f2f937472 = L.circleMarker(\\n\",\n       \"                [39.1292, 106.7096],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_455163614116122bffa7e4dd6bf02482 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b8d5d1b0724ac9c904426210448a92a2 = $(`&lt;div id=&quot;html_b8d5d1b0724ac9c904426210448a92a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7096             latitude:39.1292             pred_result:52.52237319946289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_455163614116122bffa7e4dd6bf02482.setContent(html_b8d5d1b0724ac9c904426210448a92a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15f39511aad4c56d3013223f2f937472.bindPopup(popup_455163614116122bffa7e4dd6bf02482)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d5790df1d2ea734f3d44e23790918082 = L.circleMarker(\\n\",\n       \"                [45.6033, 84.8861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_635dee6b8e170c7b86a86b9218f12ebf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d09dde99ca0bf03daca9ffc67d146d56 = $(`&lt;div id=&quot;html_d09dde99ca0bf03daca9ffc67d146d56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8861             latitude:45.6033             pred_result:44.49488830566406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_635dee6b8e170c7b86a86b9218f12ebf.setContent(html_d09dde99ca0bf03daca9ffc67d146d56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d5790df1d2ea734f3d44e23790918082.bindPopup(popup_635dee6b8e170c7b86a86b9218f12ebf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79157309775c381033af7f66ce60776e = L.circleMarker(\\n\",\n       \"                [45.5828, 84.8897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_385de1d5b64b19d8ce30e0819b7f1c3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2cb87c28ce372bd669afb346d6a9ed8f = $(`&lt;div id=&quot;html_2cb87c28ce372bd669afb346d6a9ed8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8897             latitude:45.5828             pred_result:42.84395217895508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_385de1d5b64b19d8ce30e0819b7f1c3a.setContent(html_2cb87c28ce372bd669afb346d6a9ed8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79157309775c381033af7f66ce60776e.bindPopup(popup_385de1d5b64b19d8ce30e0819b7f1c3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76ff26ad8f048f953206ffacceba590c = L.circleMarker(\\n\",\n       \"                [45.6886, 85.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79958aa9eeffcd4ea6ee511934949d85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ad0abd5ccbf60eaf4c07945b5d6a123 = $(`&lt;div id=&quot;html_2ad0abd5ccbf60eaf4c07945b5d6a123&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:85.1186             latitude:45.6886             pred_result:39.44255447387695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79958aa9eeffcd4ea6ee511934949d85.setContent(html_2ad0abd5ccbf60eaf4c07945b5d6a123);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76ff26ad8f048f953206ffacceba590c.bindPopup(popup_79958aa9eeffcd4ea6ee511934949d85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_324ba8131d8715adf9a2c4226df0cfec = L.circleMarker(\\n\",\n       \"                [44.3336, 84.8983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28b0b60a8c0aa0bb454a1f4cac192239 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_376bcb7f269f328f5b39bca5495ab9f9 = $(`&lt;div id=&quot;html_376bcb7f269f328f5b39bca5495ab9f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8983             latitude:44.3336             pred_result:50.92186737060547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28b0b60a8c0aa0bb454a1f4cac192239.setContent(html_376bcb7f269f328f5b39bca5495ab9f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_324ba8131d8715adf9a2c4226df0cfec.bindPopup(popup_28b0b60a8c0aa0bb454a1f4cac192239)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9da9b2d05c39aa6408781c6c42e1458f = L.circleMarker(\\n\",\n       \"                [46.0872, 85.6931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f81b657ad6cf4c72c3a0f145218ea09d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_efb587d16c55a9d933a8d681dfb9c429 = $(`&lt;div id=&quot;html_efb587d16c55a9d933a8d681dfb9c429&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:85.6931             latitude:46.0872             pred_result:42.58991241455078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f81b657ad6cf4c72c3a0f145218ea09d.setContent(html_efb587d16c55a9d933a8d681dfb9c429);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9da9b2d05c39aa6408781c6c42e1458f.bindPopup(popup_f81b657ad6cf4c72c3a0f145218ea09d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c132796f8fdf7d69256c5a81caf51605 = L.circleMarker(\\n\",\n       \"                [41.7511, 86.1461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40bb009dfa5c2662bfaea9f14584022a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d5d87a012e7d4cc19911d527a27cae1 = $(`&lt;div id=&quot;html_1d5d87a012e7d4cc19911d527a27cae1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.1461             latitude:41.7511             pred_result:48.34285354614258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40bb009dfa5c2662bfaea9f14584022a.setContent(html_1d5d87a012e7d4cc19911d527a27cae1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c132796f8fdf7d69256c5a81caf51605.bindPopup(popup_40bb009dfa5c2662bfaea9f14584022a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd9106301639c5be43a27a0b57aeee54 = L.circleMarker(\\n\",\n       \"                [41.7192, 86.2022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc8ff95decc5f271e1feaa2c539149d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f04c9a232e1de78a0a1f1635ec8a7b9 = $(`&lt;div id=&quot;html_1f04c9a232e1de78a0a1f1635ec8a7b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.2022             latitude:41.7192             pred_result:41.3254508972168             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc8ff95decc5f271e1feaa2c539149d9.setContent(html_1f04c9a232e1de78a0a1f1635ec8a7b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd9106301639c5be43a27a0b57aeee54.bindPopup(popup_dc8ff95decc5f271e1feaa2c539149d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_997a52f39fd6cb215d7b176aa76d818a = L.circleMarker(\\n\",\n       \"                [41.7128, 86.2381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1150b6019064e5bad7c1db731e4d244 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f4daf00b3045399109ccee6b026d05b = $(`&lt;div id=&quot;html_5f4daf00b3045399109ccee6b026d05b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.2381             latitude:41.7128             pred_result:41.572052001953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1150b6019064e5bad7c1db731e4d244.setContent(html_5f4daf00b3045399109ccee6b026d05b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_997a52f39fd6cb215d7b176aa76d818a.bindPopup(popup_f1150b6019064e5bad7c1db731e4d244)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de2b2d73c35206edf5543b8fe447502e = L.circleMarker(\\n\",\n       \"                [36.881, 118.746],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1972bf7a5bf59235f9bcf142e46dacb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7cf474a8ddfccaf38406a962dedd36b9 = $(`&lt;div id=&quot;html_7cf474a8ddfccaf38406a962dedd36b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.746             latitude:36.881             pred_result:36.696353912353516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1972bf7a5bf59235f9bcf142e46dacb.setContent(html_7cf474a8ddfccaf38406a962dedd36b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de2b2d73c35206edf5543b8fe447502e.bindPopup(popup_a1972bf7a5bf59235f9bcf142e46dacb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe6b18765217497c32a70c158968e7cf = L.circleMarker(\\n\",\n       \"                [36.864, 118.78],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2422628a40ae7b02894cc4b27598d948 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd9725c9c948322af044ce1de992e416 = $(`&lt;div id=&quot;html_fd9725c9c948322af044ce1de992e416&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.78             latitude:36.864             pred_result:33.515865325927734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2422628a40ae7b02894cc4b27598d948.setContent(html_fd9725c9c948322af044ce1de992e416);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe6b18765217497c32a70c158968e7cf.bindPopup(popup_2422628a40ae7b02894cc4b27598d948)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76121fc39e02fd8b8578999389dd898e = L.circleMarker(\\n\",\n       \"                [36.71, 117.541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f73581a2ff1c29145ca7340349b5c87 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af33440ee01afbcfda6c218ac871058d = $(`&lt;div id=&quot;html_af33440ee01afbcfda6c218ac871058d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.541             latitude:36.71             pred_result:47.174354553222656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f73581a2ff1c29145ca7340349b5c87.setContent(html_af33440ee01afbcfda6c218ac871058d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76121fc39e02fd8b8578999389dd898e.bindPopup(popup_5f73581a2ff1c29145ca7340349b5c87)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e714216849016154df6b99c667ff9df = L.circleMarker(\\n\",\n       \"                [36.44, 120.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c11bc9333ef4e372ea3aa52d11b3387 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26cb498131ad06eb803064081b63a45c = $(`&lt;div id=&quot;html_26cb498131ad06eb803064081b63a45c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.61             latitude:36.44             pred_result:7.858292579650879             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c11bc9333ef4e372ea3aa52d11b3387.setContent(html_26cb498131ad06eb803064081b63a45c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e714216849016154df6b99c667ff9df.bindPopup(popup_3c11bc9333ef4e372ea3aa52d11b3387)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ea317b73b9d0a0384a07f9ac7f0afdd = L.circleMarker(\\n\",\n       \"                [36.39, 120.47],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1acb6bf54c3a1c918c7e1f86c8a9a45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85c7483f913ea92143ea297326cecd48 = $(`&lt;div id=&quot;html_85c7483f913ea92143ea297326cecd48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.47             latitude:36.39             pred_result:10.538833618164062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1acb6bf54c3a1c918c7e1f86c8a9a45.setContent(html_85c7483f913ea92143ea297326cecd48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ea317b73b9d0a0384a07f9ac7f0afdd.bindPopup(popup_a1acb6bf54c3a1c918c7e1f86c8a9a45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d820fe499aafb3e9f11e83996c289c5c = L.circleMarker(\\n\",\n       \"                [36.283, 120.008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb081ae69f4dd84cf2a90bb1d7600047 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_763190d17d2eb95bbb66aa1e922850d3 = $(`&lt;div id=&quot;html_763190d17d2eb95bbb66aa1e922850d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.008             latitude:36.283             pred_result:14.657668113708496             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb081ae69f4dd84cf2a90bb1d7600047.setContent(html_763190d17d2eb95bbb66aa1e922850d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d820fe499aafb3e9f11e83996c289c5c.bindPopup(popup_bb081ae69f4dd84cf2a90bb1d7600047)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc2e9d15754ff4e009aa5504ccd60c0a = L.circleMarker(\\n\",\n       \"                [36.253, 120.014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6228ed464891371daffb14a47c476e57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94f116fc6d012201fe5ad759e7d7517f = $(`&lt;div id=&quot;html_94f116fc6d012201fe5ad759e7d7517f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.014             latitude:36.253             pred_result:19.227407455444336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6228ed464891371daffb14a47c476e57.setContent(html_94f116fc6d012201fe5ad759e7d7517f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc2e9d15754ff4e009aa5504ccd60c0a.bindPopup(popup_6228ed464891371daffb14a47c476e57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2880e81de5cf1ed37c4cef044e4c0233 = L.circleMarker(\\n\",\n       \"                [36.865, 120.537],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13aedd7165a0b6cf8440aacea2f498c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01f62b3c7f796e6bad9de766f8bb1d51 = $(`&lt;div id=&quot;html_01f62b3c7f796e6bad9de766f8bb1d51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.537             latitude:36.865             pred_result:10.324136734008789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13aedd7165a0b6cf8440aacea2f498c1.setContent(html_01f62b3c7f796e6bad9de766f8bb1d51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2880e81de5cf1ed37c4cef044e4c0233.bindPopup(popup_13aedd7165a0b6cf8440aacea2f498c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f84f2b13a4614440d55179c7a2aab4ad = L.circleMarker(\\n\",\n       \"                [36.885, 120.515],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f4d17b82e2a3a8f01b902cd392faff3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3c995802209ebe7efcc5c96bdc6fc8c = $(`&lt;div id=&quot;html_b3c995802209ebe7efcc5c96bdc6fc8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.515             latitude:36.885             pred_result:10.29242992401123             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f4d17b82e2a3a8f01b902cd392faff3.setContent(html_b3c995802209ebe7efcc5c96bdc6fc8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f84f2b13a4614440d55179c7a2aab4ad.bindPopup(popup_2f4d17b82e2a3a8f01b902cd392faff3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74ac45c3466efac3554635619b833ff7 = L.circleMarker(\\n\",\n       \"                [36.792, 119.952],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c942412dbea442befe4b237a1a4e58fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f7d6e6769ca3a57b185a25da214d262 = $(`&lt;div id=&quot;html_8f7d6e6769ca3a57b185a25da214d262&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.952             latitude:36.792             pred_result:12.765053749084473             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c942412dbea442befe4b237a1a4e58fd.setContent(html_8f7d6e6769ca3a57b185a25da214d262);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74ac45c3466efac3554635619b833ff7.bindPopup(popup_c942412dbea442befe4b237a1a4e58fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e37e08a29ad0863f091a04aa24fd305d = L.circleMarker(\\n\",\n       \"                [36.799, 119.976],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7af834cd0892b89f661c8a460fb45cc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_baaba3366e7896c320ccbb07bca41ae9 = $(`&lt;div id=&quot;html_baaba3366e7896c320ccbb07bca41ae9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.976             latitude:36.799             pred_result:10.073136329650879             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7af834cd0892b89f661c8a460fb45cc4.setContent(html_baaba3366e7896c320ccbb07bca41ae9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e37e08a29ad0863f091a04aa24fd305d.bindPopup(popup_7af834cd0892b89f661c8a460fb45cc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2bafe86ff0c9fdbdbf1e7517dc3d037 = L.circleMarker(\\n\",\n       \"                [37.825, 120.747],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc2273896786902a75a956fd4ffa1e0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c08ac53c9f980aba497d82a463c11237 = $(`&lt;div id=&quot;html_c08ac53c9f980aba497d82a463c11237&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.747             latitude:37.825             pred_result:18.144805908203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc2273896786902a75a956fd4ffa1e0f.setContent(html_c08ac53c9f980aba497d82a463c11237);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2bafe86ff0c9fdbdbf1e7517dc3d037.bindPopup(popup_fc2273896786902a75a956fd4ffa1e0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e8c4388528a28277be99ff4f9d8fbf1 = L.circleMarker(\\n\",\n       \"                [37.809, 120.773],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c82f5b7a9d09c89f15cce4ccffc2bcc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e4383e59b2040c4d9c871a2d58778db = $(`&lt;div id=&quot;html_3e4383e59b2040c4d9c871a2d58778db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.773             latitude:37.809             pred_result:15.613045692443848             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c82f5b7a9d09c89f15cce4ccffc2bcc.setContent(html_3e4383e59b2040c4d9c871a2d58778db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e8c4388528a28277be99ff4f9d8fbf1.bindPopup(popup_8c82f5b7a9d09c89f15cce4ccffc2bcc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eee3311b70de3b993b9e492388054577 = L.circleMarker(\\n\",\n       \"                [37.374, 120.399],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65c6e1dfc70cc528e0b2ea68add6d74e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4965ecc1651072c47332cbb5ba48e7bc = $(`&lt;div id=&quot;html_4965ecc1651072c47332cbb5ba48e7bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.399             latitude:37.374             pred_result:16.394084930419922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65c6e1dfc70cc528e0b2ea68add6d74e.setContent(html_4965ecc1651072c47332cbb5ba48e7bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eee3311b70de3b993b9e492388054577.bindPopup(popup_65c6e1dfc70cc528e0b2ea68add6d74e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d08de12206c38f42c3cfe410170c900f = L.circleMarker(\\n\",\n       \"                [37.364, 120.394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e993b6b89173cc80b3a522f28384e2ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c64b9beec32645ce0997d37eff3c05d = $(`&lt;div id=&quot;html_3c64b9beec32645ce0997d37eff3c05d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.394             latitude:37.364             pred_result:13.81985092163086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e993b6b89173cc80b3a522f28384e2ff.setContent(html_3c64b9beec32645ce0997d37eff3c05d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d08de12206c38f42c3cfe410170c900f.bindPopup(popup_e993b6b89173cc80b3a522f28384e2ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4497d93748e00eaccabc0dabf6b4692e = L.circleMarker(\\n\",\n       \"                [37.177, 119.941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_626f88c195b834f3ad93333bef7ac8cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8eba2f4cf5d917c65c94f1dce19cb4ae = $(`&lt;div id=&quot;html_8eba2f4cf5d917c65c94f1dce19cb4ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.941             latitude:37.177             pred_result:18.367103576660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_626f88c195b834f3ad93333bef7ac8cb.setContent(html_8eba2f4cf5d917c65c94f1dce19cb4ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4497d93748e00eaccabc0dabf6b4692e.bindPopup(popup_626f88c195b834f3ad93333bef7ac8cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f62f76a9af0df15684bc3ab6b88473c8 = L.circleMarker(\\n\",\n       \"                [37.18, 119.959],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbc2c852c3bafebcfee6315c11da06b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eeac6045b3e15ecb8772846a266f9db1 = $(`&lt;div id=&quot;html_eeac6045b3e15ecb8772846a266f9db1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.959             latitude:37.18             pred_result:22.43454360961914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbc2c852c3bafebcfee6315c11da06b3.setContent(html_eeac6045b3e15ecb8772846a266f9db1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f62f76a9af0df15684bc3ab6b88473c8.bindPopup(popup_dbc2c852c3bafebcfee6315c11da06b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f747460d9c2ba341af1c38273381f63 = L.circleMarker(\\n\",\n       \"                [37.154, 122.471],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ef501b9840928944c74cacda59bd9e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54f7c4bb572a0e20bfa77d3f20a54d21 = $(`&lt;div id=&quot;html_54f7c4bb572a0e20bfa77d3f20a54d21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.471             latitude:37.154             pred_result:-8.575934410095215             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ef501b9840928944c74cacda59bd9e7.setContent(html_54f7c4bb572a0e20bfa77d3f20a54d21);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f747460d9c2ba341af1c38273381f63.bindPopup(popup_2ef501b9840928944c74cacda59bd9e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7f005015dc05dfa46d022c8d39d847e = L.circleMarker(\\n\",\n       \"                [37.161, 122.41],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0efd5e24d24201fe720c2147eec05f6d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5709111315da523be037f0048aa7cd0 = $(`&lt;div id=&quot;html_a5709111315da523be037f0048aa7cd0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.41             latitude:37.161             pred_result:-2.974485397338867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0efd5e24d24201fe720c2147eec05f6d.setContent(html_a5709111315da523be037f0048aa7cd0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7f005015dc05dfa46d022c8d39d847e.bindPopup(popup_0efd5e24d24201fe720c2147eec05f6d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71ca0378cbfc8694a601a09bb007ac36 = L.circleMarker(\\n\",\n       \"                [37.197, 122.038],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_183c1ea4cfdf0c5fd3034f5b7a3bec46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7502fcd0470392e9fc6dfe67fb790fca = $(`&lt;div id=&quot;html_7502fcd0470392e9fc6dfe67fb790fca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.038             latitude:37.197             pred_result:0.3991584777832031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_183c1ea4cfdf0c5fd3034f5b7a3bec46.setContent(html_7502fcd0470392e9fc6dfe67fb790fca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71ca0378cbfc8694a601a09bb007ac36.bindPopup(popup_183c1ea4cfdf0c5fd3034f5b7a3bec46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d9d7f0b14fc88af253029476dbcd58e = L.circleMarker(\\n\",\n       \"                [37.187, 122.019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bef36883c863e49d4fd9abf83d7f89ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_828b542c46bde7f6c69621a78138d899 = $(`&lt;div id=&quot;html_828b542c46bde7f6c69621a78138d899&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.019             latitude:37.187             pred_result:-0.47613525390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bef36883c863e49d4fd9abf83d7f89ce.setContent(html_828b542c46bde7f6c69621a78138d899);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d9d7f0b14fc88af253029476dbcd58e.bindPopup(popup_bef36883c863e49d4fd9abf83d7f89ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d6a496433fca24ee0c789b0f84063b9f = L.circleMarker(\\n\",\n       \"                [36.913, 121.531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d9716e8f6d73c49b11378e04f641be7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0cecea26fc82c38be719f5715533d6f4 = $(`&lt;div id=&quot;html_0cecea26fc82c38be719f5715533d6f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.531             latitude:36.913             pred_result:0.7335834503173828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d9716e8f6d73c49b11378e04f641be7.setContent(html_0cecea26fc82c38be719f5715533d6f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d6a496433fca24ee0c789b0f84063b9f.bindPopup(popup_8d9716e8f6d73c49b11378e04f641be7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65c39e392a29f82c62dd9ae2d64e700e = L.circleMarker(\\n\",\n       \"                [36.907, 121.544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_064ba3fd5de9a568aa742e7bdd639fb1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0c192a25e6ff5510d4438d087586c7e = $(`&lt;div id=&quot;html_b0c192a25e6ff5510d4438d087586c7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.544             latitude:36.907             pred_result:1.5907783508300781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_064ba3fd5de9a568aa742e7bdd639fb1.setContent(html_b0c192a25e6ff5510d4438d087586c7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65c39e392a29f82c62dd9ae2d64e700e.bindPopup(popup_064ba3fd5de9a568aa742e7bdd639fb1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5474f20baa282f36dcf0421b775327dc = L.circleMarker(\\n\",\n       \"                [31.155, 120.636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8b0d869b1d75f1e351ff16728666f62 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11a73cec1a329527ae25f9c7bafad4e5 = $(`&lt;div id=&quot;html_11a73cec1a329527ae25f9c7bafad4e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.636             latitude:31.155             pred_result:45.03655242919922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8b0d869b1d75f1e351ff16728666f62.setContent(html_11a73cec1a329527ae25f9c7bafad4e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5474f20baa282f36dcf0421b775327dc.bindPopup(popup_c8b0d869b1d75f1e351ff16728666f62)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f6b6799756cfb91631e01b6ec8fa92f = L.circleMarker(\\n\",\n       \"                [31.17, 120.635],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f4a55f7197a3fb65b7377c3620d6dc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b070ca4af0cbcaed6f0facfd4e3385c = $(`&lt;div id=&quot;html_3b070ca4af0cbcaed6f0facfd4e3385c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.635             latitude:31.17             pred_result:44.616703033447266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f4a55f7197a3fb65b7377c3620d6dc4.setContent(html_3b070ca4af0cbcaed6f0facfd4e3385c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f6b6799756cfb91631e01b6ec8fa92f.bindPopup(popup_4f4a55f7197a3fb65b7377c3620d6dc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e07feaac296c5d7e33744af7f60cd8c = L.circleMarker(\\n\",\n       \"                [31.172, 120.658],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87bc2ac438aa2f073afaa6305898390b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3df6edddaa1dbc6fcc42eaf149496b68 = $(`&lt;div id=&quot;html_3df6edddaa1dbc6fcc42eaf149496b68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.658             latitude:31.172             pred_result:43.50920104980469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87bc2ac438aa2f073afaa6305898390b.setContent(html_3df6edddaa1dbc6fcc42eaf149496b68);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e07feaac296c5d7e33744af7f60cd8c.bindPopup(popup_87bc2ac438aa2f073afaa6305898390b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90d35fdc5a4486c91ce29829fcaa2cdf = L.circleMarker(\\n\",\n       \"                [31.388, 120.953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d63c83f8617658236b37cba7a9ad46c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c1665b397f5816b5d082149172afdf0 = $(`&lt;div id=&quot;html_5c1665b397f5816b5d082149172afdf0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.953             latitude:31.388             pred_result:43.47505569458008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d63c83f8617658236b37cba7a9ad46c6.setContent(html_5c1665b397f5816b5d082149172afdf0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90d35fdc5a4486c91ce29829fcaa2cdf.bindPopup(popup_d63c83f8617658236b37cba7a9ad46c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d698271c20051531f9872c0c15ae417 = L.circleMarker(\\n\",\n       \"                [31.381, 120.999],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_256cde5aa365581cd3654b5d56cbf90b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1aa2d3a3b52ae6de218fe94418f27b52 = $(`&lt;div id=&quot;html_1aa2d3a3b52ae6de218fe94418f27b52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.999             latitude:31.381             pred_result:44.75635528564453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_256cde5aa365581cd3654b5d56cbf90b.setContent(html_1aa2d3a3b52ae6de218fe94418f27b52);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d698271c20051531f9872c0c15ae417.bindPopup(popup_256cde5aa365581cd3654b5d56cbf90b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59ac95ff618d18b2ccdbdf081240f727 = L.circleMarker(\\n\",\n       \"                [31.671, 120.721],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5d32b3be75ce01b95d853a43aad31bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c11c5cb5f199edaef51a3cdc0bd3ac5b = $(`&lt;div id=&quot;html_c11c5cb5f199edaef51a3cdc0bd3ac5b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.721             latitude:31.671             pred_result:42.710853576660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5d32b3be75ce01b95d853a43aad31bb.setContent(html_c11c5cb5f199edaef51a3cdc0bd3ac5b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59ac95ff618d18b2ccdbdf081240f727.bindPopup(popup_a5d32b3be75ce01b95d853a43aad31bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d44b0a1801a42a9fad1ad74668c58320 = L.circleMarker(\\n\",\n       \"                [31.656, 120.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_370f4f54ac32475b9954d5faf11320c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef306867d182ccc563ded6c5a76b073b = $(`&lt;div id=&quot;html_ef306867d182ccc563ded6c5a76b073b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.734             latitude:31.656             pred_result:44.07786178588867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_370f4f54ac32475b9954d5faf11320c0.setContent(html_ef306867d182ccc563ded6c5a76b073b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d44b0a1801a42a9fad1ad74668c58320.bindPopup(popup_370f4f54ac32475b9954d5faf11320c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31a0e85d5051f3fd1993b7b622d53090 = L.circleMarker(\\n\",\n       \"                [31.874, 120.526],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30aede6ad0ee740bbfa8f9a18804e164 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f9bed2e349ae67dfde5425530e39e41 = $(`&lt;div id=&quot;html_5f9bed2e349ae67dfde5425530e39e41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.526             latitude:31.874             pred_result:42.7371711730957             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30aede6ad0ee740bbfa8f9a18804e164.setContent(html_5f9bed2e349ae67dfde5425530e39e41);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31a0e85d5051f3fd1993b7b622d53090.bindPopup(popup_30aede6ad0ee740bbfa8f9a18804e164)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2bf5fa5640d1cb2d96e4fad1507b7006 = L.circleMarker(\\n\",\n       \"                [31.882, 120.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2693aa3c38b51b2bbe68a5e7df78895 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da6dbead3456290bb9356ef2d436aa7b = $(`&lt;div id=&quot;html_da6dbead3456290bb9356ef2d436aa7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.55             latitude:31.882             pred_result:43.23273849487305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2693aa3c38b51b2bbe68a5e7df78895.setContent(html_da6dbead3456290bb9356ef2d436aa7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2bf5fa5640d1cb2d96e4fad1507b7006.bindPopup(popup_a2693aa3c38b51b2bbe68a5e7df78895)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_004727ac949a2ed43e0bafe16c65078d = L.circleMarker(\\n\",\n       \"                [31.453000000000007, 121.115],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0ef6effab7331b1a3ed211c53479927c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08d36437e85847b02f7cce2c0ef3f0b8 = $(`&lt;div id=&quot;html_08d36437e85847b02f7cce2c0ef3f0b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.115             latitude:31.453000000000007             pred_result:45.05678176879883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0ef6effab7331b1a3ed211c53479927c.setContent(html_08d36437e85847b02f7cce2c0ef3f0b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_004727ac949a2ed43e0bafe16c65078d.bindPopup(popup_0ef6effab7331b1a3ed211c53479927c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ecfbd261c12ebb56ebf7aa69f299340 = L.circleMarker(\\n\",\n       \"                [31.422, 121.14],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_535e180d471e18cd3df338c78948a4d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e7e5f3cce7f17adbf5ec49c910528be = $(`&lt;div id=&quot;html_4e7e5f3cce7f17adbf5ec49c910528be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.14             latitude:31.422             pred_result:44.507720947265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_535e180d471e18cd3df338c78948a4d1.setContent(html_4e7e5f3cce7f17adbf5ec49c910528be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ecfbd261c12ebb56ebf7aa69f299340.bindPopup(popup_535e180d471e18cd3df338c78948a4d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d6019bb94d1964025fbf92e52349833 = L.circleMarker(\\n\",\n       \"                [31.955, 119.146],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47a9520dc341645cb384965eb6fa3ff7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5121803fda6d30d138a64c96defee81 = $(`&lt;div id=&quot;html_a5121803fda6d30d138a64c96defee81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.146             latitude:31.955             pred_result:44.51817321777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47a9520dc341645cb384965eb6fa3ff7.setContent(html_a5121803fda6d30d138a64c96defee81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d6019bb94d1964025fbf92e52349833.bindPopup(popup_47a9520dc341645cb384965eb6fa3ff7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54610978c2b6d78d52d5eeed48e983e4 = L.circleMarker(\\n\",\n       \"                [31.955, 119.18],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2062fd0f123b9d0de4f68365537c89f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_473de11e914528a6f15f863c4efef884 = $(`&lt;div id=&quot;html_473de11e914528a6f15f863c4efef884&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.18             latitude:31.955             pred_result:43.064544677734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2062fd0f123b9d0de4f68365537c89f4.setContent(html_473de11e914528a6f15f863c4efef884);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54610978c2b6d78d52d5eeed48e983e4.bindPopup(popup_2062fd0f123b9d0de4f68365537c89f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85183b5a88492fb079e73a287929b300 = L.circleMarker(\\n\",\n       \"                [31.92, 120.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83520bf9f9ed0e87e17d4eb4d1cdf8e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b48f00afe1414ebf5044672eb20951ff = $(`&lt;div id=&quot;html_b48f00afe1414ebf5044672eb20951ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.268             latitude:31.92             pred_result:42.555301666259766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83520bf9f9ed0e87e17d4eb4d1cdf8e9.setContent(html_b48f00afe1414ebf5044672eb20951ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85183b5a88492fb079e73a287929b300.bindPopup(popup_83520bf9f9ed0e87e17d4eb4d1cdf8e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc7ac68528872a403c9eb6af0a3545b2 = L.circleMarker(\\n\",\n       \"                [31.909, 120.237],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6382db937f58e1dc88befb27285e08c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d031df9e23ea517e76fc342dc7c47201 = $(`&lt;div id=&quot;html_d031df9e23ea517e76fc342dc7c47201&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.237             latitude:31.909             pred_result:44.50035095214844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6382db937f58e1dc88befb27285e08c0.setContent(html_d031df9e23ea517e76fc342dc7c47201);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc7ac68528872a403c9eb6af0a3545b2.bindPopup(popup_6382db937f58e1dc88befb27285e08c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d80d523ca111666688d314c1b6d95989 = L.circleMarker(\\n\",\n       \"                [31.92, 120.302],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69b5c6a3659a69470250b45fc9bd0147 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_184dac998f8ef96ed246b4a71316bb57 = $(`&lt;div id=&quot;html_184dac998f8ef96ed246b4a71316bb57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.302             latitude:31.92             pred_result:44.129478454589844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69b5c6a3659a69470250b45fc9bd0147.setContent(html_184dac998f8ef96ed246b4a71316bb57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d80d523ca111666688d314c1b6d95989.bindPopup(popup_69b5c6a3659a69470250b45fc9bd0147)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ee02e84ff2282a7339c64d601ab215a = L.circleMarker(\\n\",\n       \"                [31.354, 119.818],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3026125076583cd6baebe80ce0e39a8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05ec0cb2b8e64b91684e18d5503a61fa = $(`&lt;div id=&quot;html_05ec0cb2b8e64b91684e18d5503a61fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.818             latitude:31.354             pred_result:48.77098846435547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3026125076583cd6baebe80ce0e39a8.setContent(html_05ec0cb2b8e64b91684e18d5503a61fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ee02e84ff2282a7339c64d601ab215a.bindPopup(popup_a3026125076583cd6baebe80ce0e39a8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_696f859b6f613628e3086f68d83315f6 = L.circleMarker(\\n\",\n       \"                [31.371, 119.794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_95fa174efeeed20de1ae18ab4c1bdd82 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_322e7edb970ad68d82a73da5b37af89d = $(`&lt;div id=&quot;html_322e7edb970ad68d82a73da5b37af89d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.794             latitude:31.371             pred_result:48.84161376953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_95fa174efeeed20de1ae18ab4c1bdd82.setContent(html_322e7edb970ad68d82a73da5b37af89d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_696f859b6f613628e3086f68d83315f6.bindPopup(popup_95fa174efeeed20de1ae18ab4c1bdd82)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2dbed14cae029e8e45e5684e19577236 = L.circleMarker(\\n\",\n       \"                [31.751, 119.579],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b75cf13ac2146cead036062f34194668 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce403c5d1110da080eb283ab651a62ff = $(`&lt;div id=&quot;html_ce403c5d1110da080eb283ab651a62ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.579             latitude:31.751             pred_result:45.682350158691406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b75cf13ac2146cead036062f34194668.setContent(html_ce403c5d1110da080eb283ab651a62ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2dbed14cae029e8e45e5684e19577236.bindPopup(popup_b75cf13ac2146cead036062f34194668)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed4914cc55dce041c652787d04a9bdb9 = L.circleMarker(\\n\",\n       \"                [31.737, 119.579],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb6083f4e22484624bbb183a20097e32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72c4efb9ee1d630b303187937949911e = $(`&lt;div id=&quot;html_72c4efb9ee1d630b303187937949911e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.579             latitude:31.737             pred_result:48.19149398803711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb6083f4e22484624bbb183a20097e32.setContent(html_72c4efb9ee1d630b303187937949911e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed4914cc55dce041c652787d04a9bdb9.bindPopup(popup_eb6083f4e22484624bbb183a20097e32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96b8630afc026067febe5bd4f25b832f = L.circleMarker(\\n\",\n       \"                [31.4, 119.46],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7eab774918efc420ab757907e05d636 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1758834019b40cb1b92d048a25f8f39 = $(`&lt;div id=&quot;html_e1758834019b40cb1b92d048a25f8f39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.46             latitude:31.4             pred_result:49.377166748046875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7eab774918efc420ab757907e05d636.setContent(html_e1758834019b40cb1b92d048a25f8f39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96b8630afc026067febe5bd4f25b832f.bindPopup(popup_a7eab774918efc420ab757907e05d636)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0538bb1528716c7f5661292b6183f252 = L.circleMarker(\\n\",\n       \"                [31.317, 119.438],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfa73499c83c73e819d5bebd05533eb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd056eb0b068281f98034f75cfc7a75b = $(`&lt;div id=&quot;html_dd056eb0b068281f98034f75cfc7a75b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.438             latitude:31.317             pred_result:51.67240905761719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfa73499c83c73e819d5bebd05533eb2.setContent(html_dd056eb0b068281f98034f75cfc7a75b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0538bb1528716c7f5661292b6183f252.bindPopup(popup_dfa73499c83c73e819d5bebd05533eb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28882ed77d4aaf8eecc7989a71aa677e = L.circleMarker(\\n\",\n       \"                [31.896, 121.173],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24253a57cc76a0490d9e20489b01f978 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e2d47a599788914f449f606df1daa12 = $(`&lt;div id=&quot;html_9e2d47a599788914f449f606df1daa12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.173             latitude:31.896             pred_result:43.7001838684082             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24253a57cc76a0490d9e20489b01f978.setContent(html_9e2d47a599788914f449f606df1daa12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28882ed77d4aaf8eecc7989a71aa677e.bindPopup(popup_24253a57cc76a0490d9e20489b01f978)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfa3a67bb1547db465825fda75e17d4c = L.circleMarker(\\n\",\n       \"                [31.89708, 121.1518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3345dc236189cec7b7ebc222a1653a02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f08325ca80d4f494b90881aeda1340b3 = $(`&lt;div id=&quot;html_f08325ca80d4f494b90881aeda1340b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1518             latitude:31.89708             pred_result:42.21036148071289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3345dc236189cec7b7ebc222a1653a02.setContent(html_f08325ca80d4f494b90881aeda1340b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfa3a67bb1547db465825fda75e17d4c.bindPopup(popup_3345dc236189cec7b7ebc222a1653a02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db4d475d1d6096f7f38bec2081eb1542 = L.circleMarker(\\n\",\n       \"                [30.2366, 119.7183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_637c177f274c87b6976f637a3b9ca7b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bfd51dce617157e4b0e5e82fce983836 = $(`&lt;div id=&quot;html_bfd51dce617157e4b0e5e82fce983836&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7183             latitude:30.2366             pred_result:45.58481216430664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_637c177f274c87b6976f637a3b9ca7b7.setContent(html_bfd51dce617157e4b0e5e82fce983836);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db4d475d1d6096f7f38bec2081eb1542.bindPopup(popup_637c177f274c87b6976f637a3b9ca7b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0179c5f6a43336279980c8b6624f3ce = L.circleMarker(\\n\",\n       \"                [30.2311, 119.6942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_475d280555477aedc5c497fa2d2dfb61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68729e39912594074997a69fbd7c0364 = $(`&lt;div id=&quot;html_68729e39912594074997a69fbd7c0364&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6942             latitude:30.2311             pred_result:46.77730178833008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_475d280555477aedc5c497fa2d2dfb61.setContent(html_68729e39912594074997a69fbd7c0364);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0179c5f6a43336279980c8b6624f3ce.bindPopup(popup_475d280555477aedc5c497fa2d2dfb61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31b2d7deff3d29e797687da4faac64c8 = L.circleMarker(\\n\",\n       \"                [30.049, 119.946],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b6344a91b9a300d26c95b4724f5024d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96b54742e7a774c5bf21061a7ad76e0c = $(`&lt;div id=&quot;html_96b54742e7a774c5bf21061a7ad76e0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.946             latitude:30.049             pred_result:44.971702575683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b6344a91b9a300d26c95b4724f5024d.setContent(html_96b54742e7a774c5bf21061a7ad76e0c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31b2d7deff3d29e797687da4faac64c8.bindPopup(popup_8b6344a91b9a300d26c95b4724f5024d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ad57d3ccaf2b5cd28e1c6ccd52f2f95 = L.circleMarker(\\n\",\n       \"                [29.305, 120.091],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24bbddb828e5185df379526fae0d5407 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b2e4f0313d764165f33825b20058635 = $(`&lt;div id=&quot;html_2b2e4f0313d764165f33825b20058635&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.091             latitude:29.305             pred_result:39.71215057373047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24bbddb828e5185df379526fae0d5407.setContent(html_2b2e4f0313d764165f33825b20058635);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ad57d3ccaf2b5cd28e1c6ccd52f2f95.bindPopup(popup_24bbddb828e5185df379526fae0d5407)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24bd9c98d2706a3beda34cdf43ac0bd5 = L.circleMarker(\\n\",\n       \"                [29.334, 120.04],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7024a024fc5e2a6b57fc2f1c5d9f7ad7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dffcb7d46227a306d9582d6468d25f98 = $(`&lt;div id=&quot;html_dffcb7d46227a306d9582d6468d25f98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.04             latitude:29.334             pred_result:39.72951889038086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7024a024fc5e2a6b57fc2f1c5d9f7ad7.setContent(html_dffcb7d46227a306d9582d6468d25f98);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24bd9c98d2706a3beda34cdf43ac0bd5.bindPopup(popup_7024a024fc5e2a6b57fc2f1c5d9f7ad7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f2e0ec854ea6293594e20bed9f31a1b = L.circleMarker(\\n\",\n       \"                [39.625, 121.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5742637b65c794ee45f704c59e934d77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83a289cb01921a24d9166ad4fd10d6e5 = $(`&lt;div id=&quot;html_83a289cb01921a24d9166ad4fd10d6e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.989             latitude:39.625             pred_result:16.62360382080078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5742637b65c794ee45f704c59e934d77.setContent(html_83a289cb01921a24d9166ad4fd10d6e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f2e0ec854ea6293594e20bed9f31a1b.bindPopup(popup_5742637b65c794ee45f704c59e934d77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a53c82b4c75ba89d4f00905cbf80d0d6 = L.circleMarker(\\n\",\n       \"                [39.617, 122.011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a6c6b5da2b6bf56d6795b0ca37c8ccd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_563eeaede65593a85a1b4e2ae092a928 = $(`&lt;div id=&quot;html_563eeaede65593a85a1b4e2ae092a928&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.011             latitude:39.617             pred_result:17.021587371826172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a6c6b5da2b6bf56d6795b0ca37c8ccd.setContent(html_563eeaede65593a85a1b4e2ae092a928);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a53c82b4c75ba89d4f00905cbf80d0d6.bindPopup(popup_9a6c6b5da2b6bf56d6795b0ca37c8ccd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b39401184b1dd946b263bd76431f007b = L.circleMarker(\\n\",\n       \"                [27.9958, 113.1817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_236127e42211a40d24a3a6b0ad312778 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6971c428c5ac7a2fcbc36df36ae3e076 = $(`&lt;div id=&quot;html_6971c428c5ac7a2fcbc36df36ae3e076&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1817             latitude:27.9958             pred_result:57.38190841674805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_236127e42211a40d24a3a6b0ad312778.setContent(html_6971c428c5ac7a2fcbc36df36ae3e076);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b39401184b1dd946b263bd76431f007b.bindPopup(popup_236127e42211a40d24a3a6b0ad312778)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17aa823579ac3cbfec024917d6e1568f = L.circleMarker(\\n\",\n       \"                [32.1078, 114.1044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e8b712e1204f759a9fd6e0bbff60fc7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a3da55651a90fdcf97b7fb6d2d5f61b = $(`&lt;div id=&quot;html_2a3da55651a90fdcf97b7fb6d2d5f61b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1044             latitude:32.1078             pred_result:49.446231842041016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e8b712e1204f759a9fd6e0bbff60fc7.setContent(html_2a3da55651a90fdcf97b7fb6d2d5f61b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17aa823579ac3cbfec024917d6e1568f.bindPopup(popup_6e8b712e1204f759a9fd6e0bbff60fc7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d5728210f28b7c805cd4e13dbf10dfb = L.circleMarker(\\n\",\n       \"                [32.1403, 114.0122],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a5c394a1580f294e8dcc1dfe25715c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8d88e63af2013d887c42312c52a681a = $(`&lt;div id=&quot;html_d8d88e63af2013d887c42312c52a681a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0122             latitude:32.1403             pred_result:48.367149353027344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a5c394a1580f294e8dcc1dfe25715c5.setContent(html_d8d88e63af2013d887c42312c52a681a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d5728210f28b7c805cd4e13dbf10dfb.bindPopup(popup_2a5c394a1580f294e8dcc1dfe25715c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3578ed69f5ae1284ae13caeb979bc4d5 = L.circleMarker(\\n\",\n       \"                [32.1342, 114.0681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52739ee291aacc4face8ff5c7eb090a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89108a8676a78750567d5fab89cb19f5 = $(`&lt;div id=&quot;html_89108a8676a78750567d5fab89cb19f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0681             latitude:32.1342             pred_result:49.34545135498047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52739ee291aacc4face8ff5c7eb090a6.setContent(html_89108a8676a78750567d5fab89cb19f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3578ed69f5ae1284ae13caeb979bc4d5.bindPopup(popup_52739ee291aacc4face8ff5c7eb090a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47164d0c0508c422cbd6fee1d97dccf7 = L.circleMarker(\\n\",\n       \"                [32.1383, 114.0614],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37444d427a60537a81df6cdde8eebafa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59b224827fdd83b84c4600cf68a0121b = $(`&lt;div id=&quot;html_59b224827fdd83b84c4600cf68a0121b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0614             latitude:32.1383             pred_result:49.161376953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37444d427a60537a81df6cdde8eebafa.setContent(html_59b224827fdd83b84c4600cf68a0121b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47164d0c0508c422cbd6fee1d97dccf7.bindPopup(popup_37444d427a60537a81df6cdde8eebafa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8bc0c50ad2567fe74113b10204910182 = L.circleMarker(\\n\",\n       \"                [33.6128, 114.6613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e507f80154c8eca615218983dff881d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_459ac26b40cb33401450326a4bbc7294 = $(`&lt;div id=&quot;html_459ac26b40cb33401450326a4bbc7294&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6613             latitude:33.6128             pred_result:51.691062927246094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e507f80154c8eca615218983dff881d.setContent(html_459ac26b40cb33401450326a4bbc7294);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8bc0c50ad2567fe74113b10204910182.bindPopup(popup_5e507f80154c8eca615218983dff881d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f10a00ef5b610b57fca6dcc41087592 = L.circleMarker(\\n\",\n       \"                [33.6347, 114.6758],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2741f4d81c5c12a72c26f36804b4f375 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ce7b056c317f8e08f5edf2c6248ad8b = $(`&lt;div id=&quot;html_1ce7b056c317f8e08f5edf2c6248ad8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6758             latitude:33.6347             pred_result:51.78589630126953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2741f4d81c5c12a72c26f36804b4f375.setContent(html_1ce7b056c317f8e08f5edf2c6248ad8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f10a00ef5b610b57fca6dcc41087592.bindPopup(popup_2741f4d81c5c12a72c26f36804b4f375)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_771c431121d2f53971e0d9f7b15b5ee4 = L.circleMarker(\\n\",\n       \"                [33.5979, 114.6546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d9613b1d2bf1e8776571fdc954e27fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e033bf9229ac959561c7eeb4143b8041 = $(`&lt;div id=&quot;html_e033bf9229ac959561c7eeb4143b8041&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6546             latitude:33.5979             pred_result:51.73332977294922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d9613b1d2bf1e8776571fdc954e27fe.setContent(html_e033bf9229ac959561c7eeb4143b8041);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_771c431121d2f53971e0d9f7b15b5ee4.bindPopup(popup_9d9613b1d2bf1e8776571fdc954e27fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8dc08f1eb97310914b0c3a386e62c95 = L.circleMarker(\\n\",\n       \"                [33.6406, 114.6369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d05c419744392c91d917f1198aca5702 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_205dbe2adeca6bf13fbccf22dbeddadd = $(`&lt;div id=&quot;html_205dbe2adeca6bf13fbccf22dbeddadd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6369             latitude:33.6406             pred_result:51.4810791015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d05c419744392c91d917f1198aca5702.setContent(html_205dbe2adeca6bf13fbccf22dbeddadd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8dc08f1eb97310914b0c3a386e62c95.bindPopup(popup_d05c419744392c91d917f1198aca5702)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62febbe41961c0806a490a09a9e06679 = L.circleMarker(\\n\",\n       \"                [24.5157, 117.6569],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d68a752e8499747a1745eedfddb64bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3695dfe4d77d346f910db641f06ff9b = $(`&lt;div id=&quot;html_f3695dfe4d77d346f910db641f06ff9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6569             latitude:24.5157             pred_result:33.156864166259766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d68a752e8499747a1745eedfddb64bc.setContent(html_f3695dfe4d77d346f910db641f06ff9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62febbe41961c0806a490a09a9e06679.bindPopup(popup_5d68a752e8499747a1745eedfddb64bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc24e80ab031ff6fcb23569489a72130 = L.circleMarker(\\n\",\n       \"                [24.4674, 117.6336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7909eb626a9c44dee25254765775971f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8dc8933c6aa9fa8b7af7053f8da8664b = $(`&lt;div id=&quot;html_8dc8933c6aa9fa8b7af7053f8da8664b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6336             latitude:24.4674             pred_result:30.059173583984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7909eb626a9c44dee25254765775971f.setContent(html_8dc8933c6aa9fa8b7af7053f8da8664b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc24e80ab031ff6fcb23569489a72130.bindPopup(popup_7909eb626a9c44dee25254765775971f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f77a8630279c25229fa927e2ed8b84ac = L.circleMarker(\\n\",\n       \"                [35.5051, 112.85],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_962cbe565f76cd857c731106fbaad6f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3c144146cf5666064cdb43035f6ac8e = $(`&lt;div id=&quot;html_e3c144146cf5666064cdb43035f6ac8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.85             latitude:35.5051             pred_result:70.57305908203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_962cbe565f76cd857c731106fbaad6f9.setContent(html_e3c144146cf5666064cdb43035f6ac8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f77a8630279c25229fa927e2ed8b84ac.bindPopup(popup_962cbe565f76cd857c731106fbaad6f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92b5479e330f1877ed492ab12bde3079 = L.circleMarker(\\n\",\n       \"                [35.4934, 112.835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d64e7d31bfeb3de1960c15fe83acc59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5451fe73ede0496babb61648a3a269f2 = $(`&lt;div id=&quot;html_5451fe73ede0496babb61648a3a269f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.835             latitude:35.4934             pred_result:70.41145324707031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d64e7d31bfeb3de1960c15fe83acc59.setContent(html_5451fe73ede0496babb61648a3a269f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92b5479e330f1877ed492ab12bde3079.bindPopup(popup_7d64e7d31bfeb3de1960c15fe83acc59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ec5689b0f173dbc0976b726b495fb1e = L.circleMarker(\\n\",\n       \"                [35.4883, 112.8564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_194ac56bc7c9a804c20fb9d98c924057 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9280c3a1144c3110fa26ae4f466bc66 = $(`&lt;div id=&quot;html_a9280c3a1144c3110fa26ae4f466bc66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8564             latitude:35.4883             pred_result:70.16291046142578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_194ac56bc7c9a804c20fb9d98c924057.setContent(html_a9280c3a1144c3110fa26ae4f466bc66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ec5689b0f173dbc0976b726b495fb1e.bindPopup(popup_194ac56bc7c9a804c20fb9d98c924057)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c59ea75f87d919127b54f156ea72d7c4 = L.circleMarker(\\n\",\n       \"                [35.4894, 112.8664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0254ba7670d942e9f4a70962afe0cd57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9460834c4464df46fc7bffd64b6266f = $(`&lt;div id=&quot;html_e9460834c4464df46fc7bffd64b6266f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8664             latitude:35.4894             pred_result:70.0083236694336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0254ba7670d942e9f4a70962afe0cd57.setContent(html_e9460834c4464df46fc7bffd64b6266f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c59ea75f87d919127b54f156ea72d7c4.bindPopup(popup_0254ba7670d942e9f4a70962afe0cd57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_187246c5a1bf7f9fd49661527938506d = L.circleMarker(\\n\",\n       \"                [35.4813, 112.8252],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_603aa45e142cf6966d4681764e2e5a70 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec14bd724bed8cba73eefdddbf4eb6ad = $(`&lt;div id=&quot;html_ec14bd724bed8cba73eefdddbf4eb6ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8252             latitude:35.4813             pred_result:70.1922607421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_603aa45e142cf6966d4681764e2e5a70.setContent(html_ec14bd724bed8cba73eefdddbf4eb6ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_187246c5a1bf7f9fd49661527938506d.bindPopup(popup_603aa45e142cf6966d4681764e2e5a70)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd9f729061de76542c736162a2c46493 = L.circleMarker(\\n\",\n       \"                [35.546, 112.8453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e41d6eb089ed5b9ce5764a7a561be702 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44aac5859d134fe8a0a2ff1bc7d21bdb = $(`&lt;div id=&quot;html_44aac5859d134fe8a0a2ff1bc7d21bdb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8453             latitude:35.546             pred_result:69.91674041748047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e41d6eb089ed5b9ce5764a7a561be702.setContent(html_44aac5859d134fe8a0a2ff1bc7d21bdb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd9f729061de76542c736162a2c46493.bindPopup(popup_e41d6eb089ed5b9ce5764a7a561be702)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96abd8166b98e7f569c1639d03d9f024 = L.circleMarker(\\n\",\n       \"                [39.3514, 112.44],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e458cfe4f2bec545b76e090bec8d2ca8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_029ba53e591d454fbd464524b35f76eb = $(`&lt;div id=&quot;html_029ba53e591d454fbd464524b35f76eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.44             latitude:39.3514             pred_result:56.98897933959961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e458cfe4f2bec545b76e090bec8d2ca8.setContent(html_029ba53e591d454fbd464524b35f76eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96abd8166b98e7f569c1639d03d9f024.bindPopup(popup_e458cfe4f2bec545b76e090bec8d2ca8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8188e433ac7138bd3aa8762df69044d0 = L.circleMarker(\\n\",\n       \"                [39.3606, 112.4549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a567b909c19b4cfba329e6518dd93e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_718f9428ff38e685ea33a017726f42ff = $(`&lt;div id=&quot;html_718f9428ff38e685ea33a017726f42ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4549             latitude:39.3606             pred_result:56.762596130371094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a567b909c19b4cfba329e6518dd93e6.setContent(html_718f9428ff38e685ea33a017726f42ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8188e433ac7138bd3aa8762df69044d0.bindPopup(popup_7a567b909c19b4cfba329e6518dd93e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06bafdf8b074fd58c21fe9c168df3c4f = L.circleMarker(\\n\",\n       \"                [39.3179, 112.4254],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0ab5e9090008d3724a5b4fa9fc4b46c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c4f94ebdaffa093015da5c4603faefa = $(`&lt;div id=&quot;html_1c4f94ebdaffa093015da5c4603faefa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4254             latitude:39.3179             pred_result:58.45214080810547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0ab5e9090008d3724a5b4fa9fc4b46c4.setContent(html_1c4f94ebdaffa093015da5c4603faefa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06bafdf8b074fd58c21fe9c168df3c4f.bindPopup(popup_0ab5e9090008d3724a5b4fa9fc4b46c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7216496fca6b8990a969d5c8fa3617f = L.circleMarker(\\n\",\n       \"                [39.3265, 112.4078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60bbce061c343b73022ddfe883c37fb8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e84ab8156ee4404c04f58f378a65ce1 = $(`&lt;div id=&quot;html_7e84ab8156ee4404c04f58f378a65ce1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4078             latitude:39.3265             pred_result:56.83473205566406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60bbce061c343b73022ddfe883c37fb8.setContent(html_7e84ab8156ee4404c04f58f378a65ce1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7216496fca6b8990a969d5c8fa3617f.bindPopup(popup_60bbce061c343b73022ddfe883c37fb8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19b79daecf585d867b62184bc66e0031 = L.circleMarker(\\n\",\n       \"                [39.3673, 112.4279],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb5aad63d5a4fb76008d883fd72cc3a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00fb5f2f3bc08c95bf8250375cbd22c9 = $(`&lt;div id=&quot;html_00fb5f2f3bc08c95bf8250375cbd22c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4279             latitude:39.3673             pred_result:55.91779327392578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb5aad63d5a4fb76008d883fd72cc3a2.setContent(html_00fb5f2f3bc08c95bf8250375cbd22c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19b79daecf585d867b62184bc66e0031.bindPopup(popup_cb5aad63d5a4fb76008d883fd72cc3a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d68083d116738dfdc77e838512bbe3e2 = L.circleMarker(\\n\",\n       \"                [37.7019, 112.7549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b463f526782739e004321d52c1a627b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9069e2bed0373e3af85f33ec65dff124 = $(`&lt;div id=&quot;html_9069e2bed0373e3af85f33ec65dff124&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7549             latitude:37.7019             pred_result:81.78413391113281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b463f526782739e004321d52c1a627b1.setContent(html_9069e2bed0373e3af85f33ec65dff124);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d68083d116738dfdc77e838512bbe3e2.bindPopup(popup_b463f526782739e004321d52c1a627b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_973fcacc2c42ff58f0d759f786be3304 = L.circleMarker(\\n\",\n       \"                [37.7111, 112.7306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_120cf88acd10a38ac7a6251ab3b37d6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b9a4e6e1078de5c3874766bb9ef5fc6 = $(`&lt;div id=&quot;html_7b9a4e6e1078de5c3874766bb9ef5fc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7306             latitude:37.7111             pred_result:82.26283264160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_120cf88acd10a38ac7a6251ab3b37d6c.setContent(html_7b9a4e6e1078de5c3874766bb9ef5fc6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_973fcacc2c42ff58f0d759f786be3304.bindPopup(popup_120cf88acd10a38ac7a6251ab3b37d6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da20dd337f427129e2301ad0f4b83df7 = L.circleMarker(\\n\",\n       \"                [37.7087, 112.7105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e0d75155848f94c22a3d08dd06df3db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0ffc19f6929c74643189ebbf4a0817a = $(`&lt;div id=&quot;html_f0ffc19f6929c74643189ebbf4a0817a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7105             latitude:37.7087             pred_result:82.57794189453125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e0d75155848f94c22a3d08dd06df3db.setContent(html_f0ffc19f6929c74643189ebbf4a0817a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da20dd337f427129e2301ad0f4b83df7.bindPopup(popup_6e0d75155848f94c22a3d08dd06df3db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c126f62a1dc5ffd1cbabcb8a183e6260 = L.circleMarker(\\n\",\n       \"                [35.0147, 110.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df91f84cebec3bd0e3d5d00ed46ccc04 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f89a92b17c490f92fbb11d3ac3d20a65 = $(`&lt;div id=&quot;html_f89a92b17c490f92fbb11d3ac3d20a65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9956             latitude:35.0147             pred_result:73.1432113647461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df91f84cebec3bd0e3d5d00ed46ccc04.setContent(html_f89a92b17c490f92fbb11d3ac3d20a65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c126f62a1dc5ffd1cbabcb8a183e6260.bindPopup(popup_df91f84cebec3bd0e3d5d00ed46ccc04)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8e62054bc2626c8cd7dcdd9c950e71c = L.circleMarker(\\n\",\n       \"                [35.0611, 111.0233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75c8c5bce92be3940af64b24fb406f75 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af3f64f7fe3f7d684dfe3e73a4de6cf9 = $(`&lt;div id=&quot;html_af3f64f7fe3f7d684dfe3e73a4de6cf9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0233             latitude:35.0611             pred_result:74.48147583007812             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75c8c5bce92be3940af64b24fb406f75.setContent(html_af3f64f7fe3f7d684dfe3e73a4de6cf9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8e62054bc2626c8cd7dcdd9c950e71c.bindPopup(popup_75c8c5bce92be3940af64b24fb406f75)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1092f67f67deb0ce8fcc6acc661520c = L.circleMarker(\\n\",\n       \"                [35.0308, 110.9678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dda298148113ae5b0043da814ce16e2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2bbd984971d62ce1618f80e25f311db = $(`&lt;div id=&quot;html_b2bbd984971d62ce1618f80e25f311db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9678             latitude:35.0308             pred_result:73.79115295410156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dda298148113ae5b0043da814ce16e2d.setContent(html_b2bbd984971d62ce1618f80e25f311db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1092f67f67deb0ce8fcc6acc661520c.bindPopup(popup_dda298148113ae5b0043da814ce16e2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19c010ddb433225810bfec41ed5f67cd = L.circleMarker(\\n\",\n       \"                [35.1147, 111.0414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f4543e067afe9ff5463a3573abc4023d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_64e831cda682fca6ccf8579788113cf9 = $(`&lt;div id=&quot;html_64e831cda682fca6ccf8579788113cf9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0414             latitude:35.1147             pred_result:75.43083190917969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f4543e067afe9ff5463a3573abc4023d.setContent(html_64e831cda682fca6ccf8579788113cf9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19c010ddb433225810bfec41ed5f67cd.bindPopup(popup_f4543e067afe9ff5463a3573abc4023d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb80ed1bf1a8ca77e7a7cc6cd62b6f7a = L.circleMarker(\\n\",\n       \"                [38.4186, 112.7356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b7d55b5b470ce1c4fc45203e89f7d1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc099c0675a87ef464301449aa0ac4bd = $(`&lt;div id=&quot;html_bc099c0675a87ef464301449aa0ac4bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7356             latitude:38.4186             pred_result:78.5639877319336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b7d55b5b470ce1c4fc45203e89f7d1f.setContent(html_bc099c0675a87ef464301449aa0ac4bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb80ed1bf1a8ca77e7a7cc6cd62b6f7a.bindPopup(popup_7b7d55b5b470ce1c4fc45203e89f7d1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d8ffb1ca9a3d72c59640a4b581cb26f2 = L.circleMarker(\\n\",\n       \"                [38.4519, 112.7383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_347b087c8bd717e8fbe62cc42e1e3726 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9136d6d505bd8b116e4a72df98b93859 = $(`&lt;div id=&quot;html_9136d6d505bd8b116e4a72df98b93859&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7383             latitude:38.4519             pred_result:79.05012512207031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_347b087c8bd717e8fbe62cc42e1e3726.setContent(html_9136d6d505bd8b116e4a72df98b93859);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d8ffb1ca9a3d72c59640a4b581cb26f2.bindPopup(popup_347b087c8bd717e8fbe62cc42e1e3726)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fcf7d3be8725552e0c5c389970311cae = L.circleMarker(\\n\",\n       \"                [38.4928, 112.7003],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6844f593069eef5eb824951c983b787b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_308402b8f2183b79b0afedf6a0d8423d = $(`&lt;div id=&quot;html_308402b8f2183b79b0afedf6a0d8423d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7003             latitude:38.4928             pred_result:77.88665771484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6844f593069eef5eb824951c983b787b.setContent(html_308402b8f2183b79b0afedf6a0d8423d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fcf7d3be8725552e0c5c389970311cae.bindPopup(popup_6844f593069eef5eb824951c983b787b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66f4fb2482a6fecc0e3fbfb99b861254 = L.circleMarker(\\n\",\n       \"                [37.5211, 111.1406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ffde5ded757b65cbc4833bb9da7fff6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5b9b267c1de9d9f4b22383878855b75 = $(`&lt;div id=&quot;html_e5b9b267c1de9d9f4b22383878855b75&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1406             latitude:37.5211             pred_result:68.23991394042969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ffde5ded757b65cbc4833bb9da7fff6.setContent(html_e5b9b267c1de9d9f4b22383878855b75);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66f4fb2482a6fecc0e3fbfb99b861254.bindPopup(popup_8ffde5ded757b65cbc4833bb9da7fff6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15fde17b5110e806d175de10a27f1a31 = L.circleMarker(\\n\",\n       \"                [37.5136, 111.1297],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4e1f871e1fa48aa4a62dd9c0d216840 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6caa739eebe95b3cfec27f2a4d378fb9 = $(`&lt;div id=&quot;html_6caa739eebe95b3cfec27f2a4d378fb9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1297             latitude:37.5136             pred_result:67.89923095703125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4e1f871e1fa48aa4a62dd9c0d216840.setContent(html_6caa739eebe95b3cfec27f2a4d378fb9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15fde17b5110e806d175de10a27f1a31.bindPopup(popup_e4e1f871e1fa48aa4a62dd9c0d216840)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_586d91585e3304fa049616c0ed7af5cb = L.circleMarker(\\n\",\n       \"                [39.6719, 106.8219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4398d41a74ce5c77ee695b0e55b3f8b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba0ea4e9b1fc8dd2900c64e0854d1d66 = $(`&lt;div id=&quot;html_ba0ea4e9b1fc8dd2900c64e0854d1d66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8219             latitude:39.6719             pred_result:51.70575714111328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4398d41a74ce5c77ee695b0e55b3f8b.setContent(html_ba0ea4e9b1fc8dd2900c64e0854d1d66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_586d91585e3304fa049616c0ed7af5cb.bindPopup(popup_a4398d41a74ce5c77ee695b0e55b3f8b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c86f9d5500d525db7a2fc49c06af4ef = L.circleMarker(\\n\",\n       \"                [39.6969, 106.8089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7decb6c68816e4934b9a9c025356416b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d8ec5a32a6d887ac04bf14f2b03831a = $(`&lt;div id=&quot;html_9d8ec5a32a6d887ac04bf14f2b03831a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8089             latitude:39.6969             pred_result:51.31480407714844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7decb6c68816e4934b9a9c025356416b.setContent(html_9d8ec5a32a6d887ac04bf14f2b03831a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c86f9d5500d525db7a2fc49c06af4ef.bindPopup(popup_7decb6c68816e4934b9a9c025356416b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ada39e9b94208b5644dba0a508dc3f02 = L.circleMarker(\\n\",\n       \"                [39.6572, 106.7931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f68315ed6c148f9e40d97a89f6700c69 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc780ea15ad32b4d31d7f6cdeec861f2 = $(`&lt;div id=&quot;html_bc780ea15ad32b4d31d7f6cdeec861f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7931             latitude:39.6572             pred_result:50.97606658935547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f68315ed6c148f9e40d97a89f6700c69.setContent(html_bc780ea15ad32b4d31d7f6cdeec861f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ada39e9b94208b5644dba0a508dc3f02.bindPopup(popup_f68315ed6c148f9e40d97a89f6700c69)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef08e08ae6ca8dedbdcd0fdc15b71460 = L.circleMarker(\\n\",\n       \"                [43.6267, 122.2603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36d65cb73d9bb236f46eeb8be9726a15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5aa17dc16cb26c434d3ce593c52de479 = $(`&lt;div id=&quot;html_5aa17dc16cb26c434d3ce593c52de479&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2603             latitude:43.6267             pred_result:20.027389526367188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36d65cb73d9bb236f46eeb8be9726a15.setContent(html_5aa17dc16cb26c434d3ce593c52de479);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef08e08ae6ca8dedbdcd0fdc15b71460.bindPopup(popup_36d65cb73d9bb236f46eeb8be9726a15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7b9c443e07acff148b13f38216ee1bb = L.circleMarker(\\n\",\n       \"                [43.6156, 122.3039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e7150e07c2b60422b275b8a45797823 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b823bf61aca0249731cd34757e5768dc = $(`&lt;div id=&quot;html_b823bf61aca0249731cd34757e5768dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.3039             latitude:43.6156             pred_result:20.02621078491211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e7150e07c2b60422b275b8a45797823.setContent(html_b823bf61aca0249731cd34757e5768dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7b9c443e07acff148b13f38216ee1bb.bindPopup(popup_4e7150e07c2b60422b275b8a45797823)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6dcca1512053dd8669552ecd2633eacc = L.circleMarker(\\n\",\n       \"                [43.6801, 122.2532],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6cbc54705747bcd7343865a72fe8fc72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1daa0e149b2f5a26966f9e766661e5e8 = $(`&lt;div id=&quot;html_1daa0e149b2f5a26966f9e766661e5e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2532             latitude:43.6801             pred_result:17.77574920654297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6cbc54705747bcd7343865a72fe8fc72.setContent(html_1daa0e149b2f5a26966f9e766661e5e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6dcca1512053dd8669552ecd2633eacc.bindPopup(popup_6cbc54705747bcd7343865a72fe8fc72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_caeb7550d2c7883665c075b770ef9aa7 = L.circleMarker(\\n\",\n       \"                [49.2261, 119.7594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1503d5660a9b2c1a94ce7afafe3e406 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_34cf380dce31f7a72cd4f8c2c4ae335f = $(`&lt;div id=&quot;html_34cf380dce31f7a72cd4f8c2c4ae335f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7594             latitude:49.2261             pred_result:2.6264705657958984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1503d5660a9b2c1a94ce7afafe3e406.setContent(html_34cf380dce31f7a72cd4f8c2c4ae335f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_caeb7550d2c7883665c075b770ef9aa7.bindPopup(popup_b1503d5660a9b2c1a94ce7afafe3e406)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_057f9ba7ee770850b55cd17121e332b4 = L.circleMarker(\\n\",\n       \"                [40.916, 107.5936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_210eef8ca699584766de472cfa909c1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5f6db370f95227d7998e29ab2c7a1ac = $(`&lt;div id=&quot;html_d5f6db370f95227d7998e29ab2c7a1ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5936             latitude:40.916             pred_result:38.61550521850586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_210eef8ca699584766de472cfa909c1a.setContent(html_d5f6db370f95227d7998e29ab2c7a1ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_057f9ba7ee770850b55cd17121e332b4.bindPopup(popup_210eef8ca699584766de472cfa909c1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_549b01de88a78bb0fd25e7c7bb691444 = L.circleMarker(\\n\",\n       \"                [40.7608, 107.4211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c2f0165149fc0d8ea8ed30a8551848a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3a8191d9311e253cbdeb13ad63550e7 = $(`&lt;div id=&quot;html_a3a8191d9311e253cbdeb13ad63550e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4211             latitude:40.7608             pred_result:39.72200012207031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c2f0165149fc0d8ea8ed30a8551848a.setContent(html_a3a8191d9311e253cbdeb13ad63550e7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_549b01de88a78bb0fd25e7c7bb691444.bindPopup(popup_0c2f0165149fc0d8ea8ed30a8551848a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c029706cfc1fdd3e3af615c4452a2435 = L.circleMarker(\\n\",\n       \"                [40.7378, 107.3715],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a19ab0a481e98210947a8adbe8ddd26 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00f3341714520a1be300a091a91a4bed = $(`&lt;div id=&quot;html_00f3341714520a1be300a091a91a4bed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3715             latitude:40.7378             pred_result:39.78752517700195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a19ab0a481e98210947a8adbe8ddd26.setContent(html_00f3341714520a1be300a091a91a4bed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c029706cfc1fdd3e3af615c4452a2435.bindPopup(popup_6a19ab0a481e98210947a8adbe8ddd26)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2035fbd1ab8dcefaa1d9a31ade750570 = L.circleMarker(\\n\",\n       \"                [40.9923, 113.1306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee8e60a40d92fb0beb08c6f521cad1b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12dc21412c7a446d6f31a0115f3d0550 = $(`&lt;div id=&quot;html_12dc21412c7a446d6f31a0115f3d0550&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1306             latitude:40.9923             pred_result:36.53181838989258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee8e60a40d92fb0beb08c6f521cad1b9.setContent(html_12dc21412c7a446d6f31a0115f3d0550);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2035fbd1ab8dcefaa1d9a31ade750570.bindPopup(popup_ee8e60a40d92fb0beb08c6f521cad1b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_698550bf2c2483bcf56d42848521834e = L.circleMarker(\\n\",\n       \"                [46.0703, 122.0506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdb4b14d38637122c63342c09f524269 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07c2b6424969481d72e3a638f923d7fa = $(`&lt;div id=&quot;html_07c2b6424969481d72e3a638f923d7fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0506             latitude:46.0703             pred_result:15.597588539123535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdb4b14d38637122c63342c09f524269.setContent(html_07c2b6424969481d72e3a638f923d7fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_698550bf2c2483bcf56d42848521834e.bindPopup(popup_fdb4b14d38637122c63342c09f524269)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b060e7a0390c78084aca69e9722b1be8 = L.circleMarker(\\n\",\n       \"                [46.0756, 121.9462],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a97308260b3192a9fd466bd08b0bca97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2eebc94236ee7bbefad33472594d7fb1 = $(`&lt;div id=&quot;html_2eebc94236ee7bbefad33472594d7fb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.9462             latitude:46.0756             pred_result:13.923376083374023             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a97308260b3192a9fd466bd08b0bca97.setContent(html_2eebc94236ee7bbefad33472594d7fb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b060e7a0390c78084aca69e9722b1be8.bindPopup(popup_a97308260b3192a9fd466bd08b0bca97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cd4ea7d3e1034c2407a9677d064928c = L.circleMarker(\\n\",\n       \"                [43.9317, 116.1042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e8a7974f6cea19edcdec33c4955d4d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_881bd57f333141b2495f39c804f4e0d1 = $(`&lt;div id=&quot;html_881bd57f333141b2495f39c804f4e0d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1042             latitude:43.9317             pred_result:22.584739685058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e8a7974f6cea19edcdec33c4955d4d6.setContent(html_881bd57f333141b2495f39c804f4e0d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cd4ea7d3e1034c2407a9677d064928c.bindPopup(popup_3e8a7974f6cea19edcdec33c4955d4d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_698e171cd363ed85a244bcebf779605d = L.circleMarker(\\n\",\n       \"                [43.9311, 116.0781],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0dea308efb5157bd1b4fc2fc724da88c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e09ec489dc4cf7c2a837c462cb2ff74 = $(`&lt;div id=&quot;html_4e09ec489dc4cf7c2a837c462cb2ff74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0781             latitude:43.9311             pred_result:23.173017501831055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0dea308efb5157bd1b4fc2fc724da88c.setContent(html_4e09ec489dc4cf7c2a837c462cb2ff74);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_698e171cd363ed85a244bcebf779605d.bindPopup(popup_0dea308efb5157bd1b4fc2fc724da88c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18cc15cd8d562aae2bb22c273ffd4cb5 = L.circleMarker(\\n\",\n       \"                [38.8343, 105.6775],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7299d5a8e6ee0bdfbaa6883c59e85e0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a8ffabd00e206f0a6296bcc3ffc93ce = $(`&lt;div id=&quot;html_0a8ffabd00e206f0a6296bcc3ffc93ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6775             latitude:38.8343             pred_result:49.49078369140625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7299d5a8e6ee0bdfbaa6883c59e85e0f.setContent(html_0a8ffabd00e206f0a6296bcc3ffc93ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18cc15cd8d562aae2bb22c273ffd4cb5.bindPopup(popup_7299d5a8e6ee0bdfbaa6883c59e85e0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_335d606a04483550d96bcd31597d57cb = L.circleMarker(\\n\",\n       \"                [38.843, 105.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4292ad0f56d49e2a367626071dbb4e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a50b431cda4ef442562a472b90478e5 = $(`&lt;div id=&quot;html_2a50b431cda4ef442562a472b90478e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6975             latitude:38.843             pred_result:48.73658752441406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4292ad0f56d49e2a367626071dbb4e0.setContent(html_2a50b431cda4ef442562a472b90478e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_335d606a04483550d96bcd31597d57cb.bindPopup(popup_a4292ad0f56d49e2a367626071dbb4e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3e953247767268d4607d7aac17acf83 = L.circleMarker(\\n\",\n       \"                [38.8516, 105.724],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d759f86ce3ede7d7a2cf8c9820cf55b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cdd041441386d449c30978099ce879e9 = $(`&lt;div id=&quot;html_cdd041441386d449c30978099ce879e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.724             latitude:38.8516             pred_result:47.92436218261719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d759f86ce3ede7d7a2cf8c9820cf55b.setContent(html_cdd041441386d449c30978099ce879e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3e953247767268d4607d7aac17acf83.bindPopup(popup_2d759f86ce3ede7d7a2cf8c9820cf55b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29789d5f1cc25381b5ad7bc3de6a20ec = L.circleMarker(\\n\",\n       \"                [41.9967, 121.6178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_643ad0eeb3b8782ae9dae190d1110d9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21a5aa56bba3565ce0e69f7c6aaf7064 = $(`&lt;div id=&quot;html_21a5aa56bba3565ce0e69f7c6aaf7064&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6178             latitude:41.9967             pred_result:19.646318435668945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_643ad0eeb3b8782ae9dae190d1110d9e.setContent(html_21a5aa56bba3565ce0e69f7c6aaf7064);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29789d5f1cc25381b5ad7bc3de6a20ec.bindPopup(popup_643ad0eeb3b8782ae9dae190d1110d9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_768f269a8f83ed988b9f6bb0eded7c0e = L.circleMarker(\\n\",\n       \"                [42.0186, 121.6561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0661f71a3ed9fdf8783a1ea1d52dadb6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_845e8c9fcdd831876b72623809f8f9c8 = $(`&lt;div id=&quot;html_845e8c9fcdd831876b72623809f8f9c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6561             latitude:42.0186             pred_result:18.96501350402832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0661f71a3ed9fdf8783a1ea1d52dadb6.setContent(html_845e8c9fcdd831876b72623809f8f9c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_768f269a8f83ed988b9f6bb0eded7c0e.bindPopup(popup_0661f71a3ed9fdf8783a1ea1d52dadb6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_373a53807c8916d6f94c4fca13abbaea = L.circleMarker(\\n\",\n       \"                [42.0503, 121.6972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1b55d43385ee7d17e80f497efacb856 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44d3ca7efa3625223db65a9fb73886fb = $(`&lt;div id=&quot;html_44d3ca7efa3625223db65a9fb73886fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6972             latitude:42.0503             pred_result:16.61565399169922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1b55d43385ee7d17e80f497efacb856.setContent(html_44d3ca7efa3625223db65a9fb73886fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_373a53807c8916d6f94c4fca13abbaea.bindPopup(popup_c1b55d43385ee7d17e80f497efacb856)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f4ffb39248db76de53e8d7f69e74554 = L.circleMarker(\\n\",\n       \"                [42.0228, 121.6722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b48a335ecd310ff560e40fc87549e45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e61fd8688d55936f1e46ea31561f3508 = $(`&lt;div id=&quot;html_e61fd8688d55936f1e46ea31561f3508&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6722             latitude:42.0228             pred_result:22.74616241455078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b48a335ecd310ff560e40fc87549e45.setContent(html_e61fd8688d55936f1e46ea31561f3508);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f4ffb39248db76de53e8d7f69e74554.bindPopup(popup_8b48a335ecd310ff560e40fc87549e45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_709cc3546446e89b5c8cc94edc0f0db2 = L.circleMarker(\\n\",\n       \"                [42.0486, 121.6592],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_668e6b9a988f9ede966a7b96cdc46f2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f250b52bd558be9c5b0c32384ff2cf86 = $(`&lt;div id=&quot;html_f250b52bd558be9c5b0c32384ff2cf86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6592             latitude:42.0486             pred_result:15.915470123291016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_668e6b9a988f9ede966a7b96cdc46f2a.setContent(html_f250b52bd558be9c5b0c32384ff2cf86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_709cc3546446e89b5c8cc94edc0f0db2.bindPopup(popup_668e6b9a988f9ede966a7b96cdc46f2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dfac67dd1b81d322eb903cc1dbda4b42 = L.circleMarker(\\n\",\n       \"                [41.1953, 123.2],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_967e90e1f31bb2fc2b4b218cea7023ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90dd07fef8d8c454eeb128529f362210 = $(`&lt;div id=&quot;html_90dd07fef8d8c454eeb128529f362210&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.2             latitude:41.1953             pred_result:23.002899169921875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_967e90e1f31bb2fc2b4b218cea7023ea.setContent(html_90dd07fef8d8c454eeb128529f362210);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dfac67dd1b81d322eb903cc1dbda4b42.bindPopup(popup_967e90e1f31bb2fc2b4b218cea7023ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b1256cac3f302a674513e90d66aff9c = L.circleMarker(\\n\",\n       \"                [41.2553, 123.15],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc25bf0f266834096545b0ba061b0f53 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02ed5c90042899f5212fe2586ff3bd6f = $(`&lt;div id=&quot;html_02ed5c90042899f5212fe2586ff3bd6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.15             latitude:41.2553             pred_result:22.68478775024414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc25bf0f266834096545b0ba061b0f53.setContent(html_02ed5c90042899f5212fe2586ff3bd6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b1256cac3f302a674513e90d66aff9c.bindPopup(popup_dc25bf0f266834096545b0ba061b0f53)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d8604f8e2508c34e25e33cb4344a8c63 = L.circleMarker(\\n\",\n       \"                [41.2736, 123.1761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_750604452e85012ebc7f69f505b03b5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f6da346aaa9b51e318f6823d02056f3 = $(`&lt;div id=&quot;html_7f6da346aaa9b51e318f6823d02056f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1761             latitude:41.2736             pred_result:28.429744720458984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_750604452e85012ebc7f69f505b03b5c.setContent(html_7f6da346aaa9b51e318f6823d02056f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d8604f8e2508c34e25e33cb4344a8c63.bindPopup(popup_750604452e85012ebc7f69f505b03b5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6f2bb68f6659ca22d5abb17fb67e988 = L.circleMarker(\\n\",\n       \"                [41.2894, 123.1417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f65ad1650b8765d7b4f598706772434b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d822728471ed52041fc9a4d34e67cafb = $(`&lt;div id=&quot;html_d822728471ed52041fc9a4d34e67cafb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1417             latitude:41.2894             pred_result:27.47434425354004             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f65ad1650b8765d7b4f598706772434b.setContent(html_d822728471ed52041fc9a4d34e67cafb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6f2bb68f6659ca22d5abb17fb67e988.bindPopup(popup_f65ad1650b8765d7b4f598706772434b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2bde411930fc267eaf96ed3a99c39c7 = L.circleMarker(\\n\",\n       \"                [42.3022, 123.8139],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86880fd607825825655408b61f8207d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1db940476338f37641c64f16d0b0f457 = $(`&lt;div id=&quot;html_1db940476338f37641c64f16d0b0f457&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8139             latitude:42.3022             pred_result:20.33743667602539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86880fd607825825655408b61f8207d9.setContent(html_1db940476338f37641c64f16d0b0f457);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2bde411930fc267eaf96ed3a99c39c7.bindPopup(popup_86880fd607825825655408b61f8207d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afc3a1c4984c4e7fa8d09de85cb56a9e = L.circleMarker(\\n\",\n       \"                [42.2953, 123.8831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_edc11c825b2b53e25e6a6658a10446b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e71ef4becce0944028a4d37ad54f99d = $(`&lt;div id=&quot;html_2e71ef4becce0944028a4d37ad54f99d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8831             latitude:42.2953             pred_result:20.641347885131836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_edc11c825b2b53e25e6a6658a10446b1.setContent(html_2e71ef4becce0944028a4d37ad54f99d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afc3a1c4984c4e7fa8d09de85cb56a9e.bindPopup(popup_edc11c825b2b53e25e6a6658a10446b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce8e2a7e6d955b3cb407c82f0053a646 = L.circleMarker(\\n\",\n       \"                [42.2864, 123.8489],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2720622383d0e0abe99c17139a948e0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89465e42ba9f899464ad00461b7c992e = $(`&lt;div id=&quot;html_89465e42ba9f899464ad00461b7c992e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8489             latitude:42.2864             pred_result:23.204708099365234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2720622383d0e0abe99c17139a948e0b.setContent(html_89465e42ba9f899464ad00461b7c992e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce8e2a7e6d955b3cb407c82f0053a646.bindPopup(popup_2720622383d0e0abe99c17139a948e0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8355d4e5fcd5c287dd94cfde0016966a = L.circleMarker(\\n\",\n       \"                [42.2217, 123.7153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e40d67b45a187526162ceabc44c15021 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_093a6569eb2b8162ab83ca2e1bd31356 = $(`&lt;div id=&quot;html_093a6569eb2b8162ab83ca2e1bd31356&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7153             latitude:42.2217             pred_result:24.37257194519043             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e40d67b45a187526162ceabc44c15021.setContent(html_093a6569eb2b8162ab83ca2e1bd31356);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8355d4e5fcd5c287dd94cfde0016966a.bindPopup(popup_e40d67b45a187526162ceabc44c15021)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2f7244e3b753202bd4d5810012079ca = L.circleMarker(\\n\",\n       \"                [41.5931, 120.4439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6523c549ba2cdb820d603ec64b4cd25b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0409b03d92d5e3c77614f824f65a132 = $(`&lt;div id=&quot;html_a0409b03d92d5e3c77614f824f65a132&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4439             latitude:41.5931             pred_result:24.89861297607422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6523c549ba2cdb820d603ec64b4cd25b.setContent(html_a0409b03d92d5e3c77614f824f65a132);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2f7244e3b753202bd4d5810012079ca.bindPopup(popup_6523c549ba2cdb820d603ec64b4cd25b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d046a188a319117092889dc9ab43dd8b = L.circleMarker(\\n\",\n       \"                [41.5672, 120.4486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19c06bd0f4fb1d7c044aaa47da5eb628 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0777afdccbf4bd9abb39fe9a5297e7a = $(`&lt;div id=&quot;html_b0777afdccbf4bd9abb39fe9a5297e7a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4486             latitude:41.5672             pred_result:21.52433204650879             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19c06bd0f4fb1d7c044aaa47da5eb628.setContent(html_b0777afdccbf4bd9abb39fe9a5297e7a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d046a188a319117092889dc9ab43dd8b.bindPopup(popup_19c06bd0f4fb1d7c044aaa47da5eb628)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_966b27b733856ac60d68c06ad00a5fd7 = L.circleMarker(\\n\",\n       \"                [41.5647, 120.4247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cfbce0812c40df43da05529d86c37843 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_410dd595473a4cc1169ac6f38b06dc4d = $(`&lt;div id=&quot;html_410dd595473a4cc1169ac6f38b06dc4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4247             latitude:41.5647             pred_result:23.324670791625977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cfbce0812c40df43da05529d86c37843.setContent(html_410dd595473a4cc1169ac6f38b06dc4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_966b27b733856ac60d68c06ad00a5fd7.bindPopup(popup_cfbce0812c40df43da05529d86c37843)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca5ddd78ae6f644bead893c7097f205c = L.circleMarker(\\n\",\n       \"                [41.615, 120.3939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8897063500e3228650f5e8bb55556005 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59f99f6619a10dce18214173265efbbf = $(`&lt;div id=&quot;html_59f99f6619a10dce18214173265efbbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.3939             latitude:41.615             pred_result:19.74258041381836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8897063500e3228650f5e8bb55556005.setContent(html_59f99f6619a10dce18214173265efbbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca5ddd78ae6f644bead893c7097f205c.bindPopup(popup_8897063500e3228650f5e8bb55556005)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82f4d079595895846e6d82938dcf650e = L.circleMarker(\\n\",\n       \"                [43.1747, 124.3419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2490e7c67a2b73b502e276103163e2d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_32c6cf7b0315175ac4bbac497522ec9c = $(`&lt;div id=&quot;html_32c6cf7b0315175ac4bbac497522ec9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3419             latitude:43.1747             pred_result:21.99213409423828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2490e7c67a2b73b502e276103163e2d1.setContent(html_32c6cf7b0315175ac4bbac497522ec9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82f4d079595895846e6d82938dcf650e.bindPopup(popup_2490e7c67a2b73b502e276103163e2d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52ba15149c599473fba66e6608c9c91c = L.circleMarker(\\n\",\n       \"                [43.1594, 124.3711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15bc956dee09e24e7058b3c38c1a120c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9dc4591d40d8c8a1e0da4da638d22ce6 = $(`&lt;div id=&quot;html_9dc4591d40d8c8a1e0da4da638d22ce6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3711             latitude:43.1594             pred_result:19.57158088684082             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15bc956dee09e24e7058b3c38c1a120c.setContent(html_9dc4591d40d8c8a1e0da4da638d22ce6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52ba15149c599473fba66e6608c9c91c.bindPopup(popup_15bc956dee09e24e7058b3c38c1a120c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d2b8a87cd6947c762231121e5b02402 = L.circleMarker(\\n\",\n       \"                [43.1847, 124.3897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2bfe76e740c3aaefc9cddbe0c88180b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03901e971125d47bd8906d3f7d997862 = $(`&lt;div id=&quot;html_03901e971125d47bd8906d3f7d997862&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3897             latitude:43.1847             pred_result:15.914412498474121             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2bfe76e740c3aaefc9cddbe0c88180b7.setContent(html_03901e971125d47bd8906d3f7d997862);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d2b8a87cd6947c762231121e5b02402.bindPopup(popup_2bfe76e740c3aaefc9cddbe0c88180b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0dfe9b65f44b611b0e31abe0e4869e13 = L.circleMarker(\\n\",\n       \"                [42.8947, 125.1358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37514cc6124b634cc0e649dfa1f22e3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f374409745881f8ca28e00117cd345a7 = $(`&lt;div id=&quot;html_f374409745881f8ca28e00117cd345a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1358             latitude:42.8947             pred_result:17.885761260986328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37514cc6124b634cc0e649dfa1f22e3b.setContent(html_f374409745881f8ca28e00117cd345a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0dfe9b65f44b611b0e31abe0e4869e13.bindPopup(popup_37514cc6124b634cc0e649dfa1f22e3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e12c3fd39c6033990d7c96708b7342a = L.circleMarker(\\n\",\n       \"                [42.8953, 125.1567],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8060487431147be65d82d3f4c2b20978 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0b7bc999f5b912571ce554e1739d0e5 = $(`&lt;div id=&quot;html_e0b7bc999f5b912571ce554e1739d0e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1567             latitude:42.8953             pred_result:16.25             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8060487431147be65d82d3f4c2b20978.setContent(html_e0b7bc999f5b912571ce554e1739d0e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e12c3fd39c6033990d7c96708b7342a.bindPopup(popup_8060487431147be65d82d3f4c2b20978)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dcaa4650f1d7cf7b9c5413ee1640c8b5 = L.circleMarker(\\n\",\n       \"                [41.7156, 125.9361],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f80589c655087dd93a8f9a9a7109ae1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3bb142d81a6c3a17a079d551049ea7eb = $(`&lt;div id=&quot;html_3bb142d81a6c3a17a079d551049ea7eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.9361             latitude:41.7156             pred_result:8.321296691894531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f80589c655087dd93a8f9a9a7109ae1.setContent(html_3bb142d81a6c3a17a079d551049ea7eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dcaa4650f1d7cf7b9c5413ee1640c8b5.bindPopup(popup_7f80589c655087dd93a8f9a9a7109ae1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b7e37fed4a69acb393a9ea1e7a8269c = L.circleMarker(\\n\",\n       \"                [41.7381, 125.9486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e289f98c04d95c35a79582ee7438d838 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0d3c9a77ecdff34e3e587f5072ec3ad = $(`&lt;div id=&quot;html_a0d3c9a77ecdff34e3e587f5072ec3ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.9486             latitude:41.7381             pred_result:6.983433723449707             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e289f98c04d95c35a79582ee7438d838.setContent(html_a0d3c9a77ecdff34e3e587f5072ec3ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b7e37fed4a69acb393a9ea1e7a8269c.bindPopup(popup_e289f98c04d95c35a79582ee7438d838)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37f8ee85216ddaf6fcd008aff9245146 = L.circleMarker(\\n\",\n       \"                [41.9206, 126.4047],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5f30a9b203a43974099a6e617afbc82 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73d252c0bae218dc7a0108890adabdf3 = $(`&lt;div id=&quot;html_73d252c0bae218dc7a0108890adabdf3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4047             latitude:41.9206             pred_result:8.11243724822998             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5f30a9b203a43974099a6e617afbc82.setContent(html_73d252c0bae218dc7a0108890adabdf3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37f8ee85216ddaf6fcd008aff9245146.bindPopup(popup_a5f30a9b203a43974099a6e617afbc82)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c8305d3a65e1057be69cccee058a868 = L.circleMarker(\\n\",\n       \"                [41.9419, 126.4078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ce1429644556ba76e0e5e0b06fc7ba7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_79ae15229dc5b04e0cbeb2aa94703430 = $(`&lt;div id=&quot;html_79ae15229dc5b04e0cbeb2aa94703430&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4078             latitude:41.9419             pred_result:5.764442443847656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ce1429644556ba76e0e5e0b06fc7ba7.setContent(html_79ae15229dc5b04e0cbeb2aa94703430);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c8305d3a65e1057be69cccee058a868.bindPopup(popup_4ce1429644556ba76e0e5e0b06fc7ba7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1452052a58a957639ba481bf88be878 = L.circleMarker(\\n\",\n       \"                [45.0878, 124.8292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d8c264d5760ced997444b3c89078b64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09b4d72c0dadb4da16fe29a1414a07cd = $(`&lt;div id=&quot;html_09b4d72c0dadb4da16fe29a1414a07cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8292             latitude:45.0878             pred_result:19.34711456298828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d8c264d5760ced997444b3c89078b64.setContent(html_09b4d72c0dadb4da16fe29a1414a07cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1452052a58a957639ba481bf88be878.bindPopup(popup_3d8c264d5760ced997444b3c89078b64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90b2c037a6f243c62b8c5261665c8be6 = L.circleMarker(\\n\",\n       \"                [45.1642, 124.8528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09a97fa0fd6f993b88761d2030ba7b20 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc5b60f531b5b738f26d019b897cecb1 = $(`&lt;div id=&quot;html_dc5b60f531b5b738f26d019b897cecb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8528             latitude:45.1642             pred_result:18.068735122680664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09a97fa0fd6f993b88761d2030ba7b20.setContent(html_dc5b60f531b5b738f26d019b897cecb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90b2c037a6f243c62b8c5261665c8be6.bindPopup(popup_09a97fa0fd6f993b88761d2030ba7b20)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9b44f594b0af1c5edd072cbcbfbf986 = L.circleMarker(\\n\",\n       \"                [45.6289, 122.8444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4fd20afa4159f7aa745456a7d694c7d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_88ac1e2b4727c8b220c252503b5d6ec6 = $(`&lt;div id=&quot;html_88ac1e2b4727c8b220c252503b5d6ec6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.8444             latitude:45.6289             pred_result:20.26058006286621             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4fd20afa4159f7aa745456a7d694c7d6.setContent(html_88ac1e2b4727c8b220c252503b5d6ec6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9b44f594b0af1c5edd072cbcbfbf986.bindPopup(popup_4fd20afa4159f7aa745456a7d694c7d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3099346ad98016aa5fab4c045cb78fd = L.circleMarker(\\n\",\n       \"                [45.6175, 122.8211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41cc98a00c57a9eeece5eaf58428edd8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b75ad24eec2230a34d1041a9d963615 = $(`&lt;div id=&quot;html_2b75ad24eec2230a34d1041a9d963615&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.8211             latitude:45.6175             pred_result:19.632732391357422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41cc98a00c57a9eeece5eaf58428edd8.setContent(html_2b75ad24eec2230a34d1041a9d963615);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3099346ad98016aa5fab4c045cb78fd.bindPopup(popup_41cc98a00c57a9eeece5eaf58428edd8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_313895843815885fc1370c457bd2073b = L.circleMarker(\\n\",\n       \"                [42.8939, 129.4892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8660756286f2e5b3d77a032263a9b4ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f396e6bc2ed4f4107be249260b6b711d = $(`&lt;div id=&quot;html_f396e6bc2ed4f4107be249260b6b711d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.4892             latitude:42.8939             pred_result:10.930960655212402             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8660756286f2e5b3d77a032263a9b4ad.setContent(html_f396e6bc2ed4f4107be249260b6b711d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_313895843815885fc1370c457bd2073b.bindPopup(popup_8660756286f2e5b3d77a032263a9b4ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93fe713bbfdad7cc81fefc6f35b7d1bc = L.circleMarker(\\n\",\n       \"                [42.9061, 129.5042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e4ed8a2129a45acd05e661b73892a39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7da51db81bdf99e2f15496952b027383 = $(`&lt;div id=&quot;html_7da51db81bdf99e2f15496952b027383&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.5042             latitude:42.9061             pred_result:11.029962539672852             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e4ed8a2129a45acd05e661b73892a39.setContent(html_7da51db81bdf99e2f15496952b027383);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93fe713bbfdad7cc81fefc6f35b7d1bc.bindPopup(popup_6e4ed8a2129a45acd05e661b73892a39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_883b403874f38ba9cb4932f30256df55 = L.circleMarker(\\n\",\n       \"                [42.8775, 129.3675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_379a86e5e6170e864e49e43c87892ef7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08673e8d27741f3c564baee8754bd6bd = $(`&lt;div id=&quot;html_08673e8d27741f3c564baee8754bd6bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.3675             latitude:42.8775             pred_result:7.921726226806641             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_379a86e5e6170e864e49e43c87892ef7.setContent(html_08673e8d27741f3c564baee8754bd6bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_883b403874f38ba9cb4932f30256df55.bindPopup(popup_379a86e5e6170e864e49e43c87892ef7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d6dba4bdcbcfe3801fe4d0c1e75576b = L.circleMarker(\\n\",\n       \"                [45.2924, 130.96200000000002],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8f8b349fb544b50329fbdceabe2e921 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe4eee40094141ba9abc210e0e41ef40 = $(`&lt;div id=&quot;html_fe4eee40094141ba9abc210e0e41ef40&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.96200000000002             latitude:45.2924             pred_result:10.490093231201172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8f8b349fb544b50329fbdceabe2e921.setContent(html_fe4eee40094141ba9abc210e0e41ef40);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d6dba4bdcbcfe3801fe4d0c1e75576b.bindPopup(popup_d8f8b349fb544b50329fbdceabe2e921)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8486328024de2756f46b619cbafa60d9 = L.circleMarker(\\n\",\n       \"                [45.305, 130.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4634137644b0aff4da656fca102647e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25cdfd31155441ea5d75b0f0f3eb7028 = $(`&lt;div id=&quot;html_25cdfd31155441ea5d75b0f0f3eb7028&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9817             latitude:45.305             pred_result:9.55911636352539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4634137644b0aff4da656fca102647e.setContent(html_25cdfd31155441ea5d75b0f0f3eb7028);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8486328024de2756f46b619cbafa60d9.bindPopup(popup_e4634137644b0aff4da656fca102647e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce245acc99be06c27713a68a695628ec = L.circleMarker(\\n\",\n       \"                [45.2948, 131.0103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b05d173dcb7eb4223a4fb9db10b7109a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_beeb1c81b4229bfe360291a1a5551286 = $(`&lt;div id=&quot;html_beeb1c81b4229bfe360291a1a5551286&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.0103             latitude:45.2948             pred_result:11.854408264160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b05d173dcb7eb4223a4fb9db10b7109a.setContent(html_beeb1c81b4229bfe360291a1a5551286);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce245acc99be06c27713a68a695628ec.bindPopup(popup_b05d173dcb7eb4223a4fb9db10b7109a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_775ecf4196427bc1de58f66e8794baaf = L.circleMarker(\\n\",\n       \"                [45.2978, 130.9298],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf21d9b40e1f3366d9d36740c7453532 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd0c56b577de3610bafa72fad81904fa = $(`&lt;div id=&quot;html_bd0c56b577de3610bafa72fad81904fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9298             latitude:45.2978             pred_result:11.680118560791016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf21d9b40e1f3366d9d36740c7453532.setContent(html_bd0c56b577de3610bafa72fad81904fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_775ecf4196427bc1de58f66e8794baaf.bindPopup(popup_cf21d9b40e1f3366d9d36740c7453532)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fdc149fb46c4ed06f2c08cece4c755d = L.circleMarker(\\n\",\n       \"                [47.3349, 130.2659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98b1d58798038797130985e1b0824f7d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_420ee4124d438d315cc2e0b509458092 = $(`&lt;div id=&quot;html_420ee4124d438d315cc2e0b509458092&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.2659             latitude:47.3349             pred_result:16.495378494262695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98b1d58798038797130985e1b0824f7d.setContent(html_420ee4124d438d315cc2e0b509458092);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fdc149fb46c4ed06f2c08cece4c755d.bindPopup(popup_98b1d58798038797130985e1b0824f7d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c125e67715ea83706310daff5a7efc12 = L.circleMarker(\\n\",\n       \"                [47.2753, 130.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_282c7eba9a2e6b5d4cedc3bdbf6535de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96a0113e423fba4daec8ff80923747d8 = $(`&lt;div id=&quot;html_96a0113e423fba4daec8ff80923747d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.261             latitude:47.2753             pred_result:16.429777145385742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_282c7eba9a2e6b5d4cedc3bdbf6535de.setContent(html_96a0113e423fba4daec8ff80923747d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c125e67715ea83706310daff5a7efc12.bindPopup(popup_282c7eba9a2e6b5d4cedc3bdbf6535de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dfbb2cb264c91babb65729c9a41b4e9c = L.circleMarker(\\n\",\n       \"                [47.3489, 130.3172],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_773a8c2ea7420d3fadbe5e3c0dcacd9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d2820faa7d219afc0cd7097479178ac = $(`&lt;div id=&quot;html_7d2820faa7d219afc0cd7097479178ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3172             latitude:47.3489             pred_result:14.654348373413086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_773a8c2ea7420d3fadbe5e3c0dcacd9e.setContent(html_7d2820faa7d219afc0cd7097479178ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dfbb2cb264c91babb65729c9a41b4e9c.bindPopup(popup_773a8c2ea7420d3fadbe5e3c0dcacd9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2818bdebd452c82959d7118d3b628636 = L.circleMarker(\\n\",\n       \"                [47.3382, 130.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e38b7630dcc321de9acb445fb43db79b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1deeff04b411e80ef4170158fa5c9014 = $(`&lt;div id=&quot;html_1deeff04b411e80ef4170158fa5c9014&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.1097             latitude:47.3382             pred_result:12.86400032043457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e38b7630dcc321de9acb445fb43db79b.setContent(html_1deeff04b411e80ef4170158fa5c9014);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2818bdebd452c82959d7118d3b628636.bindPopup(popup_e38b7630dcc321de9acb445fb43db79b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82955827877df28fa34395cd5cc50fa7 = L.circleMarker(\\n\",\n       \"                [46.6572, 131.1638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_907543cd4714dba5195319c227112ece = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c646d238468d650f37f312304eac5aec = $(`&lt;div id=&quot;html_c646d238468d650f37f312304eac5aec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1638             latitude:46.6572             pred_result:9.634431838989258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_907543cd4714dba5195319c227112ece.setContent(html_c646d238468d650f37f312304eac5aec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82955827877df28fa34395cd5cc50fa7.bindPopup(popup_907543cd4714dba5195319c227112ece)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56199c083e6c6c53a956876073c3935b = L.circleMarker(\\n\",\n       \"                [46.619, 131.1651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0015e6dc590768c18884b199bb799682 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c4405e3371b86bfd07b514470d1046a = $(`&lt;div id=&quot;html_0c4405e3371b86bfd07b514470d1046a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1651             latitude:46.619             pred_result:16.332447052001953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0015e6dc590768c18884b199bb799682.setContent(html_0c4405e3371b86bfd07b514470d1046a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56199c083e6c6c53a956876073c3935b.bindPopup(popup_0015e6dc590768c18884b199bb799682)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d810b99b6bb0acb908af92a10e86a932 = L.circleMarker(\\n\",\n       \"                [46.6462, 131.1516],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46fc4c016ebaac44e16d96acd1e138b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3607620718bcae36b072e4411b013b65 = $(`&lt;div id=&quot;html_3607620718bcae36b072e4411b013b65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1516             latitude:46.6462             pred_result:11.148090362548828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46fc4c016ebaac44e16d96acd1e138b6.setContent(html_3607620718bcae36b072e4411b013b65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d810b99b6bb0acb908af92a10e86a932.bindPopup(popup_46fc4c016ebaac44e16d96acd1e138b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6166be682f7194ce06b4c4eeb2408b5 = L.circleMarker(\\n\",\n       \"                [46.5888, 131.1572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bca2c356f15db74ee29b31b4a8d19156 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1718ef1523cdf798450352c61ce5b44 = $(`&lt;div id=&quot;html_e1718ef1523cdf798450352c61ce5b44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1572             latitude:46.5888             pred_result:11.443207740783691             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bca2c356f15db74ee29b31b4a8d19156.setContent(html_e1718ef1523cdf798450352c61ce5b44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6166be682f7194ce06b4c4eeb2408b5.bindPopup(popup_bca2c356f15db74ee29b31b4a8d19156)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c734c7cd86c1e8f5fd26074921ea382 = L.circleMarker(\\n\",\n       \"                [47.7222, 128.8736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23af662a6e8b3237c1f29c4b55678ad5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_adeb35eb58325a09bc6b9b49c6b30d36 = $(`&lt;div id=&quot;html_adeb35eb58325a09bc6b9b49c6b30d36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:128.8736             latitude:47.7222             pred_result:8.604256629943848             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23af662a6e8b3237c1f29c4b55678ad5.setContent(html_adeb35eb58325a09bc6b9b49c6b30d36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c734c7cd86c1e8f5fd26074921ea382.bindPopup(popup_23af662a6e8b3237c1f29c4b55678ad5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd1b717b0357cd3ec2b8750ac0cb8056 = L.circleMarker(\\n\",\n       \"                [46.8025, 130.2719],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42f27e6311ffc21f536828d584fab106 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_448c9c8302e116704277c800d053d8b8 = $(`&lt;div id=&quot;html_448c9c8302e116704277c800d053d8b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.2719             latitude:46.8025             pred_result:14.46757698059082             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42f27e6311ffc21f536828d584fab106.setContent(html_448c9c8302e116704277c800d053d8b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd1b717b0357cd3ec2b8750ac0cb8056.bindPopup(popup_42f27e6311ffc21f536828d584fab106)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a93162ee2851c00fe4da208102af7f7 = L.circleMarker(\\n\",\n       \"                [46.7975, 130.3258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b3858ae375a3ad7bde9dad0aa8141b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce5cebb6171dfd2bee98be93c8a9d26a = $(`&lt;div id=&quot;html_ce5cebb6171dfd2bee98be93c8a9d26a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3258             latitude:46.7975             pred_result:12.682297706604004             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b3858ae375a3ad7bde9dad0aa8141b5.setContent(html_ce5cebb6171dfd2bee98be93c8a9d26a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a93162ee2851c00fe4da208102af7f7.bindPopup(popup_1b3858ae375a3ad7bde9dad0aa8141b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85f95acecb2460de15d2f01bd315699e = L.circleMarker(\\n\",\n       \"                [46.8032, 130.3648],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97bc092c9336ecc862ec26cc1ff4a541 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d37f7f28ae694207d9462168b4b5cd7c = $(`&lt;div id=&quot;html_d37f7f28ae694207d9462168b4b5cd7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3648             latitude:46.8032             pred_result:14.601644515991211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97bc092c9336ecc862ec26cc1ff4a541.setContent(html_d37f7f28ae694207d9462168b4b5cd7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85f95acecb2460de15d2f01bd315699e.bindPopup(popup_97bc092c9336ecc862ec26cc1ff4a541)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c492c70aad892ea6a9bc5d9f2b0f8f75 = L.circleMarker(\\n\",\n       \"                [46.7588, 130.3794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb31e9f3b852ca98e731fd110d4c9f9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bee2f5119c895835611f7a51a8ab2459 = $(`&lt;div id=&quot;html_bee2f5119c895835611f7a51a8ab2459&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3794             latitude:46.7588             pred_result:13.18361759185791             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb31e9f3b852ca98e731fd110d4c9f9e.setContent(html_bee2f5119c895835611f7a51a8ab2459);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c492c70aad892ea6a9bc5d9f2b0f8f75.bindPopup(popup_cb31e9f3b852ca98e731fd110d4c9f9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb30e99536d7807306407da2d47c79e8 = L.circleMarker(\\n\",\n       \"                [45.7677, 131.0032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3435184fe9c8acc8a9229080ff3a15bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3651965d6cb663d61a14dbfd0e0f087 = $(`&lt;div id=&quot;html_a3651965d6cb663d61a14dbfd0e0f087&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.0032             latitude:45.7677             pred_result:12.136260986328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3435184fe9c8acc8a9229080ff3a15bb.setContent(html_a3651965d6cb663d61a14dbfd0e0f087);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb30e99536d7807306407da2d47c79e8.bindPopup(popup_3435184fe9c8acc8a9229080ff3a15bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c4fb68f5f18c09e5424c073b07e5300 = L.circleMarker(\\n\",\n       \"                [45.8194, 130.8625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5dd975d0f5e7bb7807396532a0ef3681 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_663baaa18677ac5b7c55bbea48af5095 = $(`&lt;div id=&quot;html_663baaa18677ac5b7c55bbea48af5095&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.8625             latitude:45.8194             pred_result:8.159870147705078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5dd975d0f5e7bb7807396532a0ef3681.setContent(html_663baaa18677ac5b7c55bbea48af5095);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c4fb68f5f18c09e5424c073b07e5300.bindPopup(popup_5dd975d0f5e7bb7807396532a0ef3681)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b80cd85d48d7db1af60f59d7baa8322 = L.circleMarker(\\n\",\n       \"                [45.8309, 130.9467],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41b23394a881352c52d5cc2dcebe2d8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d542be0543f4bca5c4e6de05a23882b = $(`&lt;div id=&quot;html_9d542be0543f4bca5c4e6de05a23882b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9467             latitude:45.8309             pred_result:8.238080978393555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41b23394a881352c52d5cc2dcebe2d8a.setContent(html_9d542be0543f4bca5c4e6de05a23882b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b80cd85d48d7db1af60f59d7baa8322.bindPopup(popup_41b23394a881352c52d5cc2dcebe2d8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75cd64afb71c92e314c76519dc44fb81 = L.circleMarker(\\n\",\n       \"                [46.6384, 126.9934],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ded968ef3d4ed848712111221dfc9857 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d7b83a03b18ddaa83161cefa8bc3dec = $(`&lt;div id=&quot;html_9d7b83a03b18ddaa83161cefa8bc3dec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.9934             latitude:46.6384             pred_result:14.840448379516602             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ded968ef3d4ed848712111221dfc9857.setContent(html_9d7b83a03b18ddaa83161cefa8bc3dec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75cd64afb71c92e314c76519dc44fb81.bindPopup(popup_ded968ef3d4ed848712111221dfc9857)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79fef3dcd1a990d2614ec771fb4b6ff6 = L.circleMarker(\\n\",\n       \"                [46.6527, 126.9636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c03cc9408eb02bf3f60063b68050f9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_edc33179555d497bd69422ced50bc90d = $(`&lt;div id=&quot;html_edc33179555d497bd69422ced50bc90d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.9636             latitude:46.6527             pred_result:17.139673233032227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c03cc9408eb02bf3f60063b68050f9c.setContent(html_edc33179555d497bd69422ced50bc90d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79fef3dcd1a990d2614ec771fb4b6ff6.bindPopup(popup_9c03cc9408eb02bf3f60063b68050f9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b79471fd896e7a6c346cc814fff0829f = L.circleMarker(\\n\",\n       \"                [50.4269, 124.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0cda0774c69116296cbad0f66e0c3063 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b97541583e0842fc362420490447fccf = $(`&lt;div id=&quot;html_b97541583e0842fc362420490447fccf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.1186             latitude:50.4269             pred_result:17.281837463378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0cda0774c69116296cbad0f66e0c3063.setContent(html_b97541583e0842fc362420490447fccf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b79471fd896e7a6c346cc814fff0829f.bindPopup(popup_0cda0774c69116296cbad0f66e0c3063)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd0e9258ce6e26f5f1555ea3210bb59d = L.circleMarker(\\n\",\n       \"                [50.4217, 124.1303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60a914c2036aeed4415fcb14facfb00e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d81dc4aacbd049ba424b985fc9ac737 = $(`&lt;div id=&quot;html_6d81dc4aacbd049ba424b985fc9ac737&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.1303             latitude:50.4217             pred_result:17.862672805786133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60a914c2036aeed4415fcb14facfb00e.setContent(html_6d81dc4aacbd049ba424b985fc9ac737);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd0e9258ce6e26f5f1555ea3210bb59d.bindPopup(popup_60a914c2036aeed4415fcb14facfb00e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24066d03167b4847e6ef7e350f79a3e7 = L.circleMarker(\\n\",\n       \"                [32.939, 117.3961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80b220589d095694379a15c80cb0b012 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b8b195949d3eecce3fc7ceef64672a97 = $(`&lt;div id=&quot;html_b8b195949d3eecce3fc7ceef64672a97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3961             latitude:32.939             pred_result:47.64847946166992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80b220589d095694379a15c80cb0b012.setContent(html_b8b195949d3eecce3fc7ceef64672a97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24066d03167b4847e6ef7e350f79a3e7.bindPopup(popup_80b220589d095694379a15c80cb0b012)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98e5cf8fc780b80c4239bf29f3605ac0 = L.circleMarker(\\n\",\n       \"                [32.9444, 117.3575],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17e091ae1db9c8d0d8f2096d59dc382e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b6cedebe40de236ad4812747c1a07c8 = $(`&lt;div id=&quot;html_6b6cedebe40de236ad4812747c1a07c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3575             latitude:32.9444             pred_result:48.263057708740234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17e091ae1db9c8d0d8f2096d59dc382e.setContent(html_6b6cedebe40de236ad4812747c1a07c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98e5cf8fc780b80c4239bf29f3605ac0.bindPopup(popup_17e091ae1db9c8d0d8f2096d59dc382e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab0e640ec2af960cc5931e2f3a295740 = L.circleMarker(\\n\",\n       \"                [32.935, 117.3086],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_279d943b038cc2d4b95f753541986ee4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7bbea117ed054bf20bb71ffe71caab8 = $(`&lt;div id=&quot;html_b7bbea117ed054bf20bb71ffe71caab8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3086             latitude:32.935             pred_result:48.430965423583984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_279d943b038cc2d4b95f753541986ee4.setContent(html_b7bbea117ed054bf20bb71ffe71caab8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab0e640ec2af960cc5931e2f3a295740.bindPopup(popup_279d943b038cc2d4b95f753541986ee4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a5e8f81e6e913ba0502b2ef94f0110b = L.circleMarker(\\n\",\n       \"                [32.8913, 117.4186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1d9a37c80da69f1ff14c772a816d4be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2d0d29e40fb2d564d295a6200bb62cf = $(`&lt;div id=&quot;html_f2d0d29e40fb2d564d295a6200bb62cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4186             latitude:32.8913             pred_result:47.22172546386719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1d9a37c80da69f1ff14c772a816d4be.setContent(html_f2d0d29e40fb2d564d295a6200bb62cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a5e8f81e6e913ba0502b2ef94f0110b.bindPopup(popup_c1d9a37c80da69f1ff14c772a816d4be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_462197df9b4ac007939b131554f8deec = L.circleMarker(\\n\",\n       \"                [32.9673, 117.3536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0459248dbf911e830916d531358097b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6f7ca0238ce3d131e1edefe99522f9c = $(`&lt;div id=&quot;html_d6f7ca0238ce3d131e1edefe99522f9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3536             latitude:32.9673             pred_result:47.535343170166016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0459248dbf911e830916d531358097b7.setContent(html_d6f7ca0238ce3d131e1edefe99522f9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_462197df9b4ac007939b131554f8deec.bindPopup(popup_0459248dbf911e830916d531358097b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34ce9977780f48be5c59e61002804377 = L.circleMarker(\\n\",\n       \"                [32.8985, 117.3065],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_482c85b082844982c8590c2fe56689d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43c19c5e53f3a3906f9691951587b80b = $(`&lt;div id=&quot;html_43c19c5e53f3a3906f9691951587b80b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3065             latitude:32.8985             pred_result:47.95140838623047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_482c85b082844982c8590c2fe56689d7.setContent(html_43c19c5e53f3a3906f9691951587b80b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34ce9977780f48be5c59e61002804377.bindPopup(popup_482c85b082844982c8590c2fe56689d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e37bcc9ca7ed424d462abb88592ff4ce = L.circleMarker(\\n\",\n       \"                [32.7639, 116.8028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34fe20358b74cf27b8baf3187b2d5fbc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18fcfa5b5b2d9ba41be904f27d9e35df = $(`&lt;div id=&quot;html_18fcfa5b5b2d9ba41be904f27d9e35df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8028             latitude:32.7639             pred_result:49.651336669921875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34fe20358b74cf27b8baf3187b2d5fbc.setContent(html_18fcfa5b5b2d9ba41be904f27d9e35df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e37bcc9ca7ed424d462abb88592ff4ce.bindPopup(popup_34fe20358b74cf27b8baf3187b2d5fbc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9ae2b6712bb94560e2c0ad22bcd7cf7 = L.circleMarker(\\n\",\n       \"                [32.645, 117.0083],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d64b5fdc3403a24864a948b681069a88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f05a308fe7802c887df2ef982e8c8395 = $(`&lt;div id=&quot;html_f05a308fe7802c887df2ef982e8c8395&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0083             latitude:32.645             pred_result:46.87953567504883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d64b5fdc3403a24864a948b681069a88.setContent(html_f05a308fe7802c887df2ef982e8c8395);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9ae2b6712bb94560e2c0ad22bcd7cf7.bindPopup(popup_d64b5fdc3403a24864a948b681069a88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dfb5a1050da09370ac210d03c5cf158c = L.circleMarker(\\n\",\n       \"                [32.6028, 116.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ade1a9294bd7ebf7da44fb202a361fb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f32a7becae2dcb0584e50a092121f15a = $(`&lt;div id=&quot;html_f32a7becae2dcb0584e50a092121f15a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8556             latitude:32.6028             pred_result:46.95488357543945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ade1a9294bd7ebf7da44fb202a361fb2.setContent(html_f32a7becae2dcb0584e50a092121f15a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dfb5a1050da09370ac210d03c5cf158c.bindPopup(popup_ade1a9294bd7ebf7da44fb202a361fb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31c98398a917c40dd79ed244ceb3f893 = L.circleMarker(\\n\",\n       \"                [32.6319, 116.8306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_62fa5cd52e50045e33aa0e0ad1d6e09c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5815d1d61b52b923ad64be7eb3c52003 = $(`&lt;div id=&quot;html_5815d1d61b52b923ad64be7eb3c52003&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8306             latitude:32.6319             pred_result:47.58432388305664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_62fa5cd52e50045e33aa0e0ad1d6e09c.setContent(html_5815d1d61b52b923ad64be7eb3c52003);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31c98398a917c40dd79ed244ceb3f893.bindPopup(popup_62fa5cd52e50045e33aa0e0ad1d6e09c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d304e8f3b382b301fe4143c68747402a = L.circleMarker(\\n\",\n       \"                [32.625, 116.7039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4768e643379b75577cc9bed0cd03bfdc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1050e35768f132d2deb204315576ec6b = $(`&lt;div id=&quot;html_1050e35768f132d2deb204315576ec6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7039             latitude:32.625             pred_result:47.573997497558594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4768e643379b75577cc9bed0cd03bfdc.setContent(html_1050e35768f132d2deb204315576ec6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d304e8f3b382b301fe4143c68747402a.bindPopup(popup_4768e643379b75577cc9bed0cd03bfdc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_329d6b5d19812b92a68c4881ffcf4293 = L.circleMarker(\\n\",\n       \"                [33.975, 116.8008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf38ba458a9943fb98ab93a4b3e71dcf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f961599247ebf898f5205ea61287124 = $(`&lt;div id=&quot;html_0f961599247ebf898f5205ea61287124&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8008             latitude:33.975             pred_result:56.856327056884766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf38ba458a9943fb98ab93a4b3e71dcf.setContent(html_0f961599247ebf898f5205ea61287124);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_329d6b5d19812b92a68c4881ffcf4293.bindPopup(popup_cf38ba458a9943fb98ab93a4b3e71dcf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51e8c7ea78fde27036c51dd9d206a7e9 = L.circleMarker(\\n\",\n       \"                [33.8997, 116.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c98d736dbaaa2fcc191e7c6cdbf0583 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ffd94b6fcb712f5ca7273cc724e2fd33 = $(`&lt;div id=&quot;html_ffd94b6fcb712f5ca7273cc724e2fd33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8067             latitude:33.8997             pred_result:55.872066497802734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c98d736dbaaa2fcc191e7c6cdbf0583.setContent(html_ffd94b6fcb712f5ca7273cc724e2fd33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51e8c7ea78fde27036c51dd9d206a7e9.bindPopup(popup_9c98d736dbaaa2fcc191e7c6cdbf0583)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58fb7297165cdf586d6df99f00ac5724 = L.circleMarker(\\n\",\n       \"                [33.9461, 116.7844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_beb294d64a4840929a2110ec36bd7f1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9000c51f3714e567d2198d6701dd9a32 = $(`&lt;div id=&quot;html_9000c51f3714e567d2198d6701dd9a32&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7844             latitude:33.9461             pred_result:56.46747970581055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_beb294d64a4840929a2110ec36bd7f1a.setContent(html_9000c51f3714e567d2198d6701dd9a32);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58fb7297165cdf586d6df99f00ac5724.bindPopup(popup_beb294d64a4840929a2110ec36bd7f1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6a34704a37e769eb8ef225195c5891e = L.circleMarker(\\n\",\n       \"                [30.9414, 117.8178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbdfbe257d5206791003013b8fee8f92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02114f988f0cedd058a922d3abebcbd8 = $(`&lt;div id=&quot;html_02114f988f0cedd058a922d3abebcbd8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8178             latitude:30.9414             pred_result:59.56488037109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbdfbe257d5206791003013b8fee8f92.setContent(html_02114f988f0cedd058a922d3abebcbd8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6a34704a37e769eb8ef225195c5891e.bindPopup(popup_dbdfbe257d5206791003013b8fee8f92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28f949058ec522cf81f249a4364df875 = L.circleMarker(\\n\",\n       \"                [30.9222, 117.8078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76292a7adb06f67793525ea72de26260 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2bfbee95a02bb6a1936314cd5b4c9a77 = $(`&lt;div id=&quot;html_2bfbee95a02bb6a1936314cd5b4c9a77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8078             latitude:30.9222             pred_result:58.43793487548828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76292a7adb06f67793525ea72de26260.setContent(html_2bfbee95a02bb6a1936314cd5b4c9a77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28f949058ec522cf81f249a4364df875.bindPopup(popup_76292a7adb06f67793525ea72de26260)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c34c7eb38afe6671cb55bf8926d5981 = L.circleMarker(\\n\",\n       \"                [30.9414, 117.7806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_72aecfaf74e5a670f5e16bec7eee6702 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5fd4648b4b083592bc8f53ed1fa130f = $(`&lt;div id=&quot;html_c5fd4648b4b083592bc8f53ed1fa130f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7806             latitude:30.9414             pred_result:59.0941162109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_72aecfaf74e5a670f5e16bec7eee6702.setContent(html_c5fd4648b4b083592bc8f53ed1fa130f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c34c7eb38afe6671cb55bf8926d5981.bindPopup(popup_72aecfaf74e5a670f5e16bec7eee6702)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38b8a309b8365678e132bacedea3ace8 = L.circleMarker(\\n\",\n       \"                [30.8811, 117.7442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2a6c31a19babe3d9b16dd8ae0c75f0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7fa0aade23bb3ecdf0425fd131927a2 = $(`&lt;div id=&quot;html_e7fa0aade23bb3ecdf0425fd131927a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7442             latitude:30.8811             pred_result:58.08527374267578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2a6c31a19babe3d9b16dd8ae0c75f0b.setContent(html_e7fa0aade23bb3ecdf0425fd131927a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38b8a309b8365678e132bacedea3ace8.bindPopup(popup_b2a6c31a19babe3d9b16dd8ae0c75f0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45b3152004643f5b4b5afe083fda421d = L.circleMarker(\\n\",\n       \"                [30.9219, 117.8561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4de33e12c7595ff8b8a506861bcc2b55 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c8a28d9a85cf449d883dbd06918694d = $(`&lt;div id=&quot;html_0c8a28d9a85cf449d883dbd06918694d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8561             latitude:30.9219             pred_result:57.21626663208008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4de33e12c7595ff8b8a506861bcc2b55.setContent(html_0c8a28d9a85cf449d883dbd06918694d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45b3152004643f5b4b5afe083fda421d.bindPopup(popup_4de33e12c7595ff8b8a506861bcc2b55)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dc68d620b2a118f2ba2422b51da5af2 = L.circleMarker(\\n\",\n       \"                [30.9697, 117.8472],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db37221ccd614dd64c012f417daf2360 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5abcafafe3f347dff492cb0d08f3375b = $(`&lt;div id=&quot;html_5abcafafe3f347dff492cb0d08f3375b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8472             latitude:30.9697             pred_result:59.30242919921875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db37221ccd614dd64c012f417daf2360.setContent(html_5abcafafe3f347dff492cb0d08f3375b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dc68d620b2a118f2ba2422b51da5af2.bindPopup(popup_db37221ccd614dd64c012f417daf2360)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a25ffb786b4b810be6900574839547eb = L.circleMarker(\\n\",\n       \"                [30.5103, 117.0549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fa778b7ba2e58a25605bb614d2fe358 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3fd5631784e7fee80bbfa547256c184 = $(`&lt;div id=&quot;html_b3fd5631784e7fee80bbfa547256c184&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0549             latitude:30.5103             pred_result:56.74259948730469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fa778b7ba2e58a25605bb614d2fe358.setContent(html_b3fd5631784e7fee80bbfa547256c184);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a25ffb786b4b810be6900574839547eb.bindPopup(popup_8fa778b7ba2e58a25605bb614d2fe358)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_870bb7ffd8363c293bf52b2af143e461 = L.circleMarker(\\n\",\n       \"                [30.51197222, 117.0331111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_554ca224fb13c2b7a273537d771bfa6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2cf67d7d191ada3b9628a7fa8f698181 = $(`&lt;div id=&quot;html_2cf67d7d191ada3b9628a7fa8f698181&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0331111             latitude:30.51197222             pred_result:56.34199523925781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_554ca224fb13c2b7a273537d771bfa6c.setContent(html_2cf67d7d191ada3b9628a7fa8f698181);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_870bb7ffd8363c293bf52b2af143e461.bindPopup(popup_554ca224fb13c2b7a273537d771bfa6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b734aeedb251d3b1b4f88d9fc8f5ba37 = L.circleMarker(\\n\",\n       \"                [30.5489, 117.0486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5777ffc1b8e4cfc917dae406974ab56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2cc5406d77ea6455a447f816f3a57367 = $(`&lt;div id=&quot;html_2cc5406d77ea6455a447f816f3a57367&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0486             latitude:30.5489             pred_result:57.20970916748047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5777ffc1b8e4cfc917dae406974ab56.setContent(html_2cc5406d77ea6455a447f816f3a57367);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b734aeedb251d3b1b4f88d9fc8f5ba37.bindPopup(popup_b5777ffc1b8e4cfc917dae406974ab56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25c5bac625fa5907c5adfdb87f504da3 = L.circleMarker(\\n\",\n       \"                [30.6145, 116.9894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8326c0f07d58404dd4e5610e99b687b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d4e686f3dba28c49d279b854260927b = $(`&lt;div id=&quot;html_9d4e686f3dba28c49d279b854260927b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9894             latitude:30.6145             pred_result:56.74510192871094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8326c0f07d58404dd4e5610e99b687b3.setContent(html_9d4e686f3dba28c49d279b854260927b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25c5bac625fa5907c5adfdb87f504da3.bindPopup(popup_8326c0f07d58404dd4e5610e99b687b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4beee9a6e8dd6e6d5b10d8e7156b36d9 = L.circleMarker(\\n\",\n       \"                [29.7128, 118.3057],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb30ece4a04ef51c935a1a43d8f33311 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d43c913ec9d38ea9c9b19ba44623e98f = $(`&lt;div id=&quot;html_d43c913ec9d38ea9c9b19ba44623e98f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3057             latitude:29.7128             pred_result:41.73959732055664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb30ece4a04ef51c935a1a43d8f33311.setContent(html_d43c913ec9d38ea9c9b19ba44623e98f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4beee9a6e8dd6e6d5b10d8e7156b36d9.bindPopup(popup_cb30ece4a04ef51c935a1a43d8f33311)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4551715a3f24c83bf6a8ec585bff18df = L.circleMarker(\\n\",\n       \"                [29.7207, 118.3236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e05dea11d7091e43119303598975c2ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e59fa28865356b4be67a47340c5b56a8 = $(`&lt;div id=&quot;html_e59fa28865356b4be67a47340c5b56a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3236             latitude:29.7207             pred_result:41.42486572265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e05dea11d7091e43119303598975c2ca.setContent(html_e59fa28865356b4be67a47340c5b56a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4551715a3f24c83bf6a8ec585bff18df.bindPopup(popup_e05dea11d7091e43119303598975c2ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e41f1b09f2dfcb5e091fb5f1ac5221f = L.circleMarker(\\n\",\n       \"                [30.2756, 118.1371],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e7c7722b303815e53cbea8dae72d1fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9131ec4728b49a159e0227b382da709 = $(`&lt;div id=&quot;html_d9131ec4728b49a159e0227b382da709&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1371             latitude:30.2756             pred_result:38.333641052246094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e7c7722b303815e53cbea8dae72d1fc.setContent(html_d9131ec4728b49a159e0227b382da709);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e41f1b09f2dfcb5e091fb5f1ac5221f.bindPopup(popup_6e7c7722b303815e53cbea8dae72d1fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b23a3b75cd123f8610676e1e0bf2661 = L.circleMarker(\\n\",\n       \"                [32.3153, 118.3094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_14612ed2a792255ea9e229a6078cfa23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6cccf0b452e2c0bea0335a0f3a909b2f = $(`&lt;div id=&quot;html_6cccf0b452e2c0bea0335a0f3a909b2f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3094             latitude:32.3153             pred_result:40.597755432128906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_14612ed2a792255ea9e229a6078cfa23.setContent(html_6cccf0b452e2c0bea0335a0f3a909b2f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b23a3b75cd123f8610676e1e0bf2661.bindPopup(popup_14612ed2a792255ea9e229a6078cfa23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a06a445384d750b572d7db6244655e05 = L.circleMarker(\\n\",\n       \"                [32.2786, 118.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37f87916ba07fdb694a538b4d8ac82e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d59ddde6724c2e2d5a7c5cf354b41daf = $(`&lt;div id=&quot;html_d59ddde6724c2e2d5a7c5cf354b41daf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3244             latitude:32.2786             pred_result:42.778526306152344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37f87916ba07fdb694a538b4d8ac82e9.setContent(html_d59ddde6724c2e2d5a7c5cf354b41daf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a06a445384d750b572d7db6244655e05.bindPopup(popup_37f87916ba07fdb694a538b4d8ac82e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d5affac6b88d86fe52223be13e9fe7ae = L.circleMarker(\\n\",\n       \"                [32.3061, 118.3158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6149a89d2139d374c9ec12cb0042e781 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1fbf7aed62134fadd47d825d36bffafa = $(`&lt;div id=&quot;html_1fbf7aed62134fadd47d825d36bffafa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3158             latitude:32.3061             pred_result:42.56867218017578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6149a89d2139d374c9ec12cb0042e781.setContent(html_1fbf7aed62134fadd47d825d36bffafa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d5affac6b88d86fe52223be13e9fe7ae.bindPopup(popup_6149a89d2139d374c9ec12cb0042e781)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ebb360090e2211ecc56cf6ffef88ddae = L.circleMarker(\\n\",\n       \"                [32.8928, 115.8275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8251bbdf8b9c05bc961ff06e6163c405 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_973e5eb62a30dc5f0646b6cf54b884da = $(`&lt;div id=&quot;html_973e5eb62a30dc5f0646b6cf54b884da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8275             latitude:32.8928             pred_result:53.67182159423828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8251bbdf8b9c05bc961ff06e6163c405.setContent(html_973e5eb62a30dc5f0646b6cf54b884da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ebb360090e2211ecc56cf6ffef88ddae.bindPopup(popup_8251bbdf8b9c05bc961ff06e6163c405)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a45c8e8d87425fb16c9a268e6a35110 = L.circleMarker(\\n\",\n       \"                [32.8603, 115.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55a153064ac2aca5a9442e65d48658fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fca127de4bf45b60a14fdf0349791710 = $(`&lt;div id=&quot;html_fca127de4bf45b60a14fdf0349791710&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8556             latitude:32.8603             pred_result:52.859161376953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55a153064ac2aca5a9442e65d48658fb.setContent(html_fca127de4bf45b60a14fdf0349791710);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a45c8e8d87425fb16c9a268e6a35110.bindPopup(popup_55a153064ac2aca5a9442e65d48658fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_490eae4846f8ad35d427ad961e7f109f = L.circleMarker(\\n\",\n       \"                [33.6481, 116.9765],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9af8522581f52c08ab7b2a027fb8549a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fdd19c13f7c0bb624a4f6563b43c921 = $(`&lt;div id=&quot;html_2fdd19c13f7c0bb624a4f6563b43c921&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9765             latitude:33.6481             pred_result:53.1336555480957             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9af8522581f52c08ab7b2a027fb8549a.setContent(html_2fdd19c13f7c0bb624a4f6563b43c921);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_490eae4846f8ad35d427ad961e7f109f.bindPopup(popup_9af8522581f52c08ab7b2a027fb8549a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50a60e38ff98de32498fbd8f43504a21 = L.circleMarker(\\n\",\n       \"                [33.6284, 116.9677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1443a8bbd7e59f03db329b6f4793464f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_487b99832493ba3b9e6bc2f2c1d471f5 = $(`&lt;div id=&quot;html_487b99832493ba3b9e6bc2f2c1d471f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9677             latitude:33.6284             pred_result:53.37419128417969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1443a8bbd7e59f03db329b6f4793464f.setContent(html_487b99832493ba3b9e6bc2f2c1d471f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50a60e38ff98de32498fbd8f43504a21.bindPopup(popup_1443a8bbd7e59f03db329b6f4793464f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec2a774877067bce6af18d834d81980a = L.circleMarker(\\n\",\n       \"                [33.63063889, 116.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bf8448d2f0cfc670c21763031edce3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7323155af256aece121eba76875c503 = $(`&lt;div id=&quot;html_f7323155af256aece121eba76875c503&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.989             latitude:33.63063889             pred_result:53.14067459106445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bf8448d2f0cfc670c21763031edce3f.setContent(html_f7323155af256aece121eba76875c503);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec2a774877067bce6af18d834d81980a.bindPopup(popup_8bf8448d2f0cfc670c21763031edce3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_125db09602f1f8817619e72265d79d55 = L.circleMarker(\\n\",\n       \"                [31.7371, 116.508],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac6e9d309604bd00f7d9eafabf09d0db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65518d9c13a430916ab204f262a7078c = $(`&lt;div id=&quot;html_65518d9c13a430916ab204f262a7078c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.508             latitude:31.7371             pred_result:53.6668701171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac6e9d309604bd00f7d9eafabf09d0db.setContent(html_65518d9c13a430916ab204f262a7078c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_125db09602f1f8817619e72265d79d55.bindPopup(popup_ac6e9d309604bd00f7d9eafabf09d0db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_beea8f560b34627c6ced119f3cf70422 = L.circleMarker(\\n\",\n       \"                [31.7618, 116.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ab44a1daa39e5d31618b7a65227fbee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_829a8ef50a9f1e5f541325a0d1d8b4ee = $(`&lt;div id=&quot;html_829a8ef50a9f1e5f541325a0d1d8b4ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.478             latitude:31.7618             pred_result:54.605567932128906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ab44a1daa39e5d31618b7a65227fbee.setContent(html_829a8ef50a9f1e5f541325a0d1d8b4ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_beea8f560b34627c6ced119f3cf70422.bindPopup(popup_8ab44a1daa39e5d31618b7a65227fbee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_288788e0c59a3c0fca35c2f34ab61383 = L.circleMarker(\\n\",\n       \"                [31.7797, 116.5068],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c103eada5d3307502f6067f19d811c23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_555871e9f7fee19d433cf5dba5841c43 = $(`&lt;div id=&quot;html_555871e9f7fee19d433cf5dba5841c43&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5068             latitude:31.7797             pred_result:52.18585205078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c103eada5d3307502f6067f19d811c23.setContent(html_555871e9f7fee19d433cf5dba5841c43);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_288788e0c59a3c0fca35c2f34ab61383.bindPopup(popup_c103eada5d3307502f6067f19d811c23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bcf2d062912de3b3cf95c60f5621ed2c = L.circleMarker(\\n\",\n       \"                [31.7712, 116.5661],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6adef8dc31283cb35879ae040a86b42 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83996509cdfa4c9ef61712601a8cc8b9 = $(`&lt;div id=&quot;html_83996509cdfa4c9ef61712601a8cc8b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5661             latitude:31.7712             pred_result:52.56599426269531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6adef8dc31283cb35879ae040a86b42.setContent(html_83996509cdfa4c9ef61712601a8cc8b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bcf2d062912de3b3cf95c60f5621ed2c.bindPopup(popup_d6adef8dc31283cb35879ae040a86b42)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34d4859f27abf6999452dec4ad1d430f = L.circleMarker(\\n\",\n       \"                [33.8399, 115.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47a31018319e174b55ab1684cdf1ecbe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_590f63807d6e3d2438f122be6613f93b = $(`&lt;div id=&quot;html_590f63807d6e3d2438f122be6613f93b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8067             latitude:33.8399             pred_result:57.67981719970703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47a31018319e174b55ab1684cdf1ecbe.setContent(html_590f63807d6e3d2438f122be6613f93b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34d4859f27abf6999452dec4ad1d430f.bindPopup(popup_47a31018319e174b55ab1684cdf1ecbe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b05aacea10d130377a43045f7b95415 = L.circleMarker(\\n\",\n       \"                [33.8561, 115.7831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d271453f8e83c4863c1dfc9ce259b25 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03b393cc2c35567adff7bcb833d1b042 = $(`&lt;div id=&quot;html_03b393cc2c35567adff7bcb833d1b042&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.7831             latitude:33.8561             pred_result:57.30646514892578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d271453f8e83c4863c1dfc9ce259b25.setContent(html_03b393cc2c35567adff7bcb833d1b042);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b05aacea10d130377a43045f7b95415.bindPopup(popup_4d271453f8e83c4863c1dfc9ce259b25)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4cf6c02f7a1b0585732e8decbc7cf835 = L.circleMarker(\\n\",\n       \"                [30.6617, 117.4697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3538829832e9d8723a884ffa26667ca5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b65150d15ee8a1a6d9f9bc8b987f2802 = $(`&lt;div id=&quot;html_b65150d15ee8a1a6d9f9bc8b987f2802&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4697             latitude:30.6617             pred_result:57.366085052490234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3538829832e9d8723a884ffa26667ca5.setContent(html_b65150d15ee8a1a6d9f9bc8b987f2802);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4cf6c02f7a1b0585732e8decbc7cf835.bindPopup(popup_3538829832e9d8723a884ffa26667ca5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e7be3001f92944a56db2ada08cb1618 = L.circleMarker(\\n\",\n       \"                [30.6539, 117.4974],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76b07aa544d83a16ff257d9b90222bb0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d861735ea0f78facfcd5d191258311d8 = $(`&lt;div id=&quot;html_d861735ea0f78facfcd5d191258311d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4974             latitude:30.6539             pred_result:56.229766845703125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76b07aa544d83a16ff257d9b90222bb0.setContent(html_d861735ea0f78facfcd5d191258311d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e7be3001f92944a56db2ada08cb1618.bindPopup(popup_76b07aa544d83a16ff257d9b90222bb0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e05d6b3758cfb54652eccff78cd2495 = L.circleMarker(\\n\",\n       \"                [30.9447, 118.7581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0212c9b2f92ac64e0f4bba8d1de3ee3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c288e838c39bae91cc3957ce4eb020a1 = $(`&lt;div id=&quot;html_c288e838c39bae91cc3957ce4eb020a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7581             latitude:30.9447             pred_result:53.97815704345703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0212c9b2f92ac64e0f4bba8d1de3ee3.setContent(html_c288e838c39bae91cc3957ce4eb020a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e05d6b3758cfb54652eccff78cd2495.bindPopup(popup_f0212c9b2f92ac64e0f4bba8d1de3ee3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_219c56afc7b3678dfbeaa739b9f30f17 = L.circleMarker(\\n\",\n       \"                [30.9742, 118.7386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa6fca9bafc9aba16c5ee2ce2b001120 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e32b6a8cb4b13313eba5947b6117596f = $(`&lt;div id=&quot;html_e32b6a8cb4b13313eba5947b6117596f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7386             latitude:30.9742             pred_result:55.226768493652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa6fca9bafc9aba16c5ee2ce2b001120.setContent(html_e32b6a8cb4b13313eba5947b6117596f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_219c56afc7b3678dfbeaa739b9f30f17.bindPopup(popup_fa6fca9bafc9aba16c5ee2ce2b001120)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45f05f2cc4b63897d1808ae8c85344fa = L.circleMarker(\\n\",\n       \"                [30.9431, 118.7175],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_48bc507f0fc4f718b2df58a43689c154 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e787f8e842641dd5094f971600a28a3 = $(`&lt;div id=&quot;html_2e787f8e842641dd5094f971600a28a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7175             latitude:30.9431             pred_result:55.54848861694336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_48bc507f0fc4f718b2df58a43689c154.setContent(html_2e787f8e842641dd5094f971600a28a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45f05f2cc4b63897d1808ae8c85344fa.bindPopup(popup_48bc507f0fc4f718b2df58a43689c154)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d0fd9697cf8aeded8dd06afe77c003bd = L.circleMarker(\\n\",\n       \"                [25.442, 119.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa88de4ce58a0937e8eeaad93c41f44a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9af45c8dff0a1167f4d0229322ca5c23 = $(`&lt;div id=&quot;html_9af45c8dff0a1167f4d0229322ca5c23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0156             latitude:25.442             pred_result:26.827037811279297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa88de4ce58a0937e8eeaad93c41f44a.setContent(html_9af45c8dff0a1167f4d0229322ca5c23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d0fd9697cf8aeded8dd06afe77c003bd.bindPopup(popup_fa88de4ce58a0937e8eeaad93c41f44a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a909ed0ef9b8e63eb7a7a3a9dc52f47 = L.circleMarker(\\n\",\n       \"                [25.4552, 119.0018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe96c9e486d4fd7d93be2c931dc4c98e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8acd52d664d3dd4bd6a04b435c54264f = $(`&lt;div id=&quot;html_8acd52d664d3dd4bd6a04b435c54264f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0018             latitude:25.4552             pred_result:25.26606559753418             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe96c9e486d4fd7d93be2c931dc4c98e.setContent(html_8acd52d664d3dd4bd6a04b435c54264f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a909ed0ef9b8e63eb7a7a3a9dc52f47.bindPopup(popup_fe96c9e486d4fd7d93be2c931dc4c98e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8c52061e18177870b0332d814d51b75 = L.circleMarker(\\n\",\n       \"                [25.4792, 118.981],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c268da6e8d18ab2fb0018e7aa373a033 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_680bec9c7033349ce876b9ca6e26fa8c = $(`&lt;div id=&quot;html_680bec9c7033349ce876b9ca6e26fa8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.981             latitude:25.4792             pred_result:24.610109329223633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c268da6e8d18ab2fb0018e7aa373a033.setContent(html_680bec9c7033349ce876b9ca6e26fa8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8c52061e18177870b0332d814d51b75.bindPopup(popup_c268da6e8d18ab2fb0018e7aa373a033)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1d46cb213247d0a2372cc2838472f41 = L.circleMarker(\\n\",\n       \"                [26.2625, 117.6211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e75b43eae4ec66e5611811f4feaaef1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89cb11d7d831039a475cfaa580d74ffc = $(`&lt;div id=&quot;html_89cb11d7d831039a475cfaa580d74ffc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6211             latitude:26.2625             pred_result:28.59670639038086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e75b43eae4ec66e5611811f4feaaef1a.setContent(html_89cb11d7d831039a475cfaa580d74ffc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1d46cb213247d0a2372cc2838472f41.bindPopup(popup_e75b43eae4ec66e5611811f4feaaef1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d05fe71a9895b5472087a564f8c7ed3 = L.circleMarker(\\n\",\n       \"                [26.2708, 117.6353],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_090981428dd83727f06ce6f195b215dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82a470251a462cb95c04468b21a1eabd = $(`&lt;div id=&quot;html_82a470251a462cb95c04468b21a1eabd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6353             latitude:26.2708             pred_result:29.319067001342773             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_090981428dd83727f06ce6f195b215dc.setContent(html_82a470251a462cb95c04468b21a1eabd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d05fe71a9895b5472087a564f8c7ed3.bindPopup(popup_090981428dd83727f06ce6f195b215dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5af0dc63db261b266538ace593a03069 = L.circleMarker(\\n\",\n       \"                [26.2378, 117.6028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_010618ef291da272339904a511d580d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c931d936fce1af5560efb2ac3abbb33 = $(`&lt;div id=&quot;html_8c931d936fce1af5560efb2ac3abbb33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6028             latitude:26.2378             pred_result:28.79592514038086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_010618ef291da272339904a511d580d3.setContent(html_8c931d936fce1af5560efb2ac3abbb33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5af0dc63db261b266538ace593a03069.bindPopup(popup_010618ef291da272339904a511d580d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0c9ca19fa0ab531edf4e201c4c8c88a = L.circleMarker(\\n\",\n       \"                [26.3108, 117.7275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_734004828e19e29ed0f098fa1d36512a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03da3806318c119f1442ffb6daeb681a = $(`&lt;div id=&quot;html_03da3806318c119f1442ffb6daeb681a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7275             latitude:26.3108             pred_result:27.41229820251465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_734004828e19e29ed0f098fa1d36512a.setContent(html_03da3806318c119f1442ffb6daeb681a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0c9ca19fa0ab531edf4e201c4c8c88a.bindPopup(popup_734004828e19e29ed0f098fa1d36512a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_050130d22cd77bbf59e8061281a81966 = L.circleMarker(\\n\",\n       \"                [26.6761, 118.0966],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9775ea83e511c4753769da6753348b56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dcf2f8d0a1a0478e24110033af4d09b3 = $(`&lt;div id=&quot;html_dcf2f8d0a1a0478e24110033af4d09b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0966             latitude:26.6761             pred_result:24.748844146728516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9775ea83e511c4753769da6753348b56.setContent(html_dcf2f8d0a1a0478e24110033af4d09b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_050130d22cd77bbf59e8061281a81966.bindPopup(popup_9775ea83e511c4753769da6753348b56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1e48c8fd0b3df2424d26bba2b131e1c = L.circleMarker(\\n\",\n       \"                [26.6383, 118.1694],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ef6a7ed3ea6ad9ef3539ba3e66ea824 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d755806bd30ace9ca3552a60d47627b9 = $(`&lt;div id=&quot;html_d755806bd30ace9ca3552a60d47627b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1694             latitude:26.6383             pred_result:27.637451171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ef6a7ed3ea6ad9ef3539ba3e66ea824.setContent(html_d755806bd30ace9ca3552a60d47627b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1e48c8fd0b3df2424d26bba2b131e1c.bindPopup(popup_4ef6a7ed3ea6ad9ef3539ba3e66ea824)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa5104a3409933a841f17ad897e88cf8 = L.circleMarker(\\n\",\n       \"                [26.6514, 118.1819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cec4fc0d0c570d43d7099d35217f4db4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_268ec3b175ef8dd03649401a0d26e6a3 = $(`&lt;div id=&quot;html_268ec3b175ef8dd03649401a0d26e6a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1819             latitude:26.6514             pred_result:27.068559646606445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cec4fc0d0c570d43d7099d35217f4db4.setContent(html_268ec3b175ef8dd03649401a0d26e6a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa5104a3409933a841f17ad897e88cf8.bindPopup(popup_cec4fc0d0c570d43d7099d35217f4db4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe2868b3555e2453b4c3a05248878960 = L.circleMarker(\\n\",\n       \"                [26.6272, 118.1756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e64bad4a53eaac8899bf16ae80c69b85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43cebb6b8689ccd6d74ed4f23fbd1a0d = $(`&lt;div id=&quot;html_43cebb6b8689ccd6d74ed4f23fbd1a0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1756             latitude:26.6272             pred_result:27.098691940307617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e64bad4a53eaac8899bf16ae80c69b85.setContent(html_43cebb6b8689ccd6d74ed4f23fbd1a0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe2868b3555e2453b4c3a05248878960.bindPopup(popup_e64bad4a53eaac8899bf16ae80c69b85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af9952248d8e0b575e03ee22a2c9d9f5 = L.circleMarker(\\n\",\n       \"                [25.1174, 117.0181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd7e523bd31d5abee96ce8d4a440effb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb03d51baa46adcb61e9894ac0c813c0 = $(`&lt;div id=&quot;html_bb03d51baa46adcb61e9894ac0c813c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0181             latitude:25.1174             pred_result:28.622276306152344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd7e523bd31d5abee96ce8d4a440effb.setContent(html_bb03d51baa46adcb61e9894ac0c813c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af9952248d8e0b575e03ee22a2c9d9f5.bindPopup(popup_dd7e523bd31d5abee96ce8d4a440effb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3afb18898c6f3f5c3bdf740c1aee891 = L.circleMarker(\\n\",\n       \"                [25.1035, 117.0216],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5bbc2303296e29d921028f032497a1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97a5d9bc20859088d3a7f4008aed747c = $(`&lt;div id=&quot;html_97a5d9bc20859088d3a7f4008aed747c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0216             latitude:25.1035             pred_result:28.3413028717041             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5bbc2303296e29d921028f032497a1d.setContent(html_97a5d9bc20859088d3a7f4008aed747c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3afb18898c6f3f5c3bdf740c1aee891.bindPopup(popup_e5bbc2303296e29d921028f032497a1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fd87a72796503aa23dde74c9d7bc6e9 = L.circleMarker(\\n\",\n       \"                [25.0661, 117.0256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9abf8256ae3c4995fb9ea21a5ce0b99f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ef83cc333e92ec383d2e79399c9450e = $(`&lt;div id=&quot;html_6ef83cc333e92ec383d2e79399c9450e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0256             latitude:25.0661             pred_result:26.843658447265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9abf8256ae3c4995fb9ea21a5ce0b99f.setContent(html_6ef83cc333e92ec383d2e79399c9450e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fd87a72796503aa23dde74c9d7bc6e9.bindPopup(popup_9abf8256ae3c4995fb9ea21a5ce0b99f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_949cab0a148aeeca8e4f2662bf6fabe7 = L.circleMarker(\\n\",\n       \"                [25.0311, 117.0151],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e99016a4e2a61fcb56bae29dd0690bb8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_63d80866226652fd56414c57d3583ee1 = $(`&lt;div id=&quot;html_63d80866226652fd56414c57d3583ee1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0151             latitude:25.0311             pred_result:27.94017219543457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e99016a4e2a61fcb56bae29dd0690bb8.setContent(html_63d80866226652fd56414c57d3583ee1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_949cab0a148aeeca8e4f2662bf6fabe7.bindPopup(popup_e99016a4e2a61fcb56bae29dd0690bb8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5cc30ea68627412b8661e8d8798e6cdd = L.circleMarker(\\n\",\n       \"                [26.6946, 119.5001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_968ffaa31cdf6bbd7336f488014ca605 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dae4effc52ff95c4ff3bbaed40793b64 = $(`&lt;div id=&quot;html_dae4effc52ff95c4ff3bbaed40793b64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5001             latitude:26.6946             pred_result:29.547574996948242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_968ffaa31cdf6bbd7336f488014ca605.setContent(html_dae4effc52ff95c4ff3bbaed40793b64);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5cc30ea68627412b8661e8d8798e6cdd.bindPopup(popup_968ffaa31cdf6bbd7336f488014ca605)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3cf8b76e6536f818028b15430d0176c = L.circleMarker(\\n\",\n       \"                [26.6607, 119.5202],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7caf6ae926f5f8505794c3effb190315 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f065a3391635bdc33d2b2ab81706bfbd = $(`&lt;div id=&quot;html_f065a3391635bdc33d2b2ab81706bfbd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5202             latitude:26.6607             pred_result:29.94007110595703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7caf6ae926f5f8505794c3effb190315.setContent(html_f065a3391635bdc33d2b2ab81706bfbd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3cf8b76e6536f818028b15430d0176c.bindPopup(popup_7caf6ae926f5f8505794c3effb190315)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c25f60f1db687baec3b473d37a885c1e = L.circleMarker(\\n\",\n       \"                [26.6611, 119.5392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_418e8c6a3ae60cfa989af11a55161c1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ac71c75c01ca4bb9de4b2722a35aa2c = $(`&lt;div id=&quot;html_9ac71c75c01ca4bb9de4b2722a35aa2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5392             latitude:26.6611             pred_result:31.48177719116211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_418e8c6a3ae60cfa989af11a55161c1f.setContent(html_9ac71c75c01ca4bb9de4b2722a35aa2c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c25f60f1db687baec3b473d37a885c1e.bindPopup(popup_418e8c6a3ae60cfa989af11a55161c1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cd3e166bcbfd501e2b70e46f394338b = L.circleMarker(\\n\",\n       \"                [29.3864, 117.3097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66a0e6ff0f36adb3386f8da91441a6e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1df77a8be6ddf91781047100c8e259a9 = $(`&lt;div id=&quot;html_1df77a8be6ddf91781047100c8e259a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3097             latitude:29.3864             pred_result:52.72705078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66a0e6ff0f36adb3386f8da91441a6e3.setContent(html_1df77a8be6ddf91781047100c8e259a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cd3e166bcbfd501e2b70e46f394338b.bindPopup(popup_66a0e6ff0f36adb3386f8da91441a6e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b94c3345c71cf471f1838939d6eee0e = L.circleMarker(\\n\",\n       \"                [29.2958, 117.2111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4fd41a0511bde492f0ab10228fb2bef8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4023796b12f00afb704cf29f0f55dde = $(`&lt;div id=&quot;html_a4023796b12f00afb704cf29f0f55dde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2111             latitude:29.2958             pred_result:55.53926467895508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4fd41a0511bde492f0ab10228fb2bef8.setContent(html_a4023796b12f00afb704cf29f0f55dde);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b94c3345c71cf471f1838939d6eee0e.bindPopup(popup_4fd41a0511bde492f0ab10228fb2bef8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_800356522aeb47aa401a1bdcf953f82e = L.circleMarker(\\n\",\n       \"                [29.2786, 117.1983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4778773d42f07e215e051a0beec4a3c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b8c562dd253b9a47cd77542f7cd39b4 = $(`&lt;div id=&quot;html_6b8c562dd253b9a47cd77542f7cd39b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1983             latitude:29.2786             pred_result:56.333518981933594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4778773d42f07e215e051a0beec4a3c.setContent(html_6b8c562dd253b9a47cd77542f7cd39b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_800356522aeb47aa401a1bdcf953f82e.bindPopup(popup_c4778773d42f07e215e051a0beec4a3c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63d652980f2fefcdb6a7b71983901b4f = L.circleMarker(\\n\",\n       \"                [29.2647, 117.1558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03b22e4831c1a57f459a7c09ba6a2f20 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b877347bb410fe80ddbdf2bd853f3acc = $(`&lt;div id=&quot;html_b877347bb410fe80ddbdf2bd853f3acc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1558             latitude:29.2647             pred_result:56.53852462768555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03b22e4831c1a57f459a7c09ba6a2f20.setContent(html_b877347bb410fe80ddbdf2bd853f3acc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63d652980f2fefcdb6a7b71983901b4f.bindPopup(popup_03b22e4831c1a57f459a7c09ba6a2f20)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_247e295ab30977d35d8845d98a7741bb = L.circleMarker(\\n\",\n       \"                [29.2956, 117.2461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_180ee5ac4b85021ed2f11daff9d1ead0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9cbdb7a1dcecef45e8c3bf6b7927d7b = $(`&lt;div id=&quot;html_d9cbdb7a1dcecef45e8c3bf6b7927d7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2461             latitude:29.2956             pred_result:58.18701171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_180ee5ac4b85021ed2f11daff9d1ead0.setContent(html_d9cbdb7a1dcecef45e8c3bf6b7927d7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_247e295ab30977d35d8845d98a7741bb.bindPopup(popup_180ee5ac4b85021ed2f11daff9d1ead0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1101c9758feb262425fc4ba868830258 = L.circleMarker(\\n\",\n       \"                [27.4948, 114.0944],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66f0c8f5b83cd52ad15b55d76b15b9e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f43c5c5c61c31158a4c37657349b2a87 = $(`&lt;div id=&quot;html_f43c5c5c61c31158a4c37657349b2a87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0944             latitude:27.4948             pred_result:53.858917236328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66f0c8f5b83cd52ad15b55d76b15b9e6.setContent(html_f43c5c5c61c31158a4c37657349b2a87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1101c9758feb262425fc4ba868830258.bindPopup(popup_66f0c8f5b83cd52ad15b55d76b15b9e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6b2a96953512c8b38191af17f88b15d = L.circleMarker(\\n\",\n       \"                [27.6428, 113.8381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26bb4b6a43bba51623715d745d6d8ba3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1fd856829d423443a0aa97f54f0575e1 = $(`&lt;div id=&quot;html_1fd856829d423443a0aa97f54f0575e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8381             latitude:27.6428             pred_result:57.3026123046875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26bb4b6a43bba51623715d745d6d8ba3.setContent(html_1fd856829d423443a0aa97f54f0575e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6b2a96953512c8b38191af17f88b15d.bindPopup(popup_26bb4b6a43bba51623715d745d6d8ba3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85531d85b6d6bf15678915818fde0f52 = L.circleMarker(\\n\",\n       \"                [27.6231, 113.8447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25cb4ce2f0ed75acee2fd3e511b93755 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9699a27d2dd8584f5b863df137e402f5 = $(`&lt;div id=&quot;html_9699a27d2dd8584f5b863df137e402f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8447             latitude:27.6231             pred_result:57.36079406738281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25cb4ce2f0ed75acee2fd3e511b93755.setContent(html_9699a27d2dd8584f5b863df137e402f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85531d85b6d6bf15678915818fde0f52.bindPopup(popup_25cb4ce2f0ed75acee2fd3e511b93755)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58bc9cc6905cac3a20af863f3bb3750c = L.circleMarker(\\n\",\n       \"                [27.6442, 113.8686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fbbbe4caca3b0bc4ed68afb50638698f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_197fa79100a2b2a136bddc55075a3055 = $(`&lt;div id=&quot;html_197fa79100a2b2a136bddc55075a3055&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8686             latitude:27.6442             pred_result:57.477603912353516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fbbbe4caca3b0bc4ed68afb50638698f.setContent(html_197fa79100a2b2a136bddc55075a3055);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58bc9cc6905cac3a20af863f3bb3750c.bindPopup(popup_fbbbe4caca3b0bc4ed68afb50638698f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_601130a4f8764d89fbb43ff6f07274a7 = L.circleMarker(\\n\",\n       \"                [27.6178, 113.865],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d89faa5f40012793f62cf54d73333075 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6904f731506f959714c5dc2865de39d = $(`&lt;div id=&quot;html_f6904f731506f959714c5dc2865de39d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.865             latitude:27.6178             pred_result:57.43690872192383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d89faa5f40012793f62cf54d73333075.setContent(html_f6904f731506f959714c5dc2865de39d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_601130a4f8764d89fbb43ff6f07274a7.bindPopup(popup_d89faa5f40012793f62cf54d73333075)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13bc1c6a9e2b379668ce08e12d6635fb = L.circleMarker(\\n\",\n       \"                [27.7758, 115.0586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dee80022a90fd836fcf0e70b0c3a2236 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_116b93a9ac8f43dd8eb303db16d599ec = $(`&lt;div id=&quot;html_116b93a9ac8f43dd8eb303db16d599ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0586             latitude:27.7758             pred_result:58.15137481689453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dee80022a90fd836fcf0e70b0c3a2236.setContent(html_116b93a9ac8f43dd8eb303db16d599ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13bc1c6a9e2b379668ce08e12d6635fb.bindPopup(popup_dee80022a90fd836fcf0e70b0c3a2236)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd041e5a105d9da1fe7390590f6d5036 = L.circleMarker(\\n\",\n       \"                [27.8344, 114.9831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78bc1da5fa9cb3a82995efb3646963e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fe6e84a83db6eba27ed9c6809ef0f00 = $(`&lt;div id=&quot;html_7fe6e84a83db6eba27ed9c6809ef0f00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9831             latitude:27.8344             pred_result:58.949668884277344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78bc1da5fa9cb3a82995efb3646963e4.setContent(html_7fe6e84a83db6eba27ed9c6809ef0f00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd041e5a105d9da1fe7390590f6d5036.bindPopup(popup_78bc1da5fa9cb3a82995efb3646963e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd522724ba8c22c7d328b6366e1ce992 = L.circleMarker(\\n\",\n       \"                [27.8328, 114.9289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4bf5497a84de5dd97ff222f2a2cca67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c205a688948c0e57538364f8f5166176 = $(`&lt;div id=&quot;html_c205a688948c0e57538364f8f5166176&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9289             latitude:27.8328             pred_result:59.10501480102539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4bf5497a84de5dd97ff222f2a2cca67.setContent(html_c205a688948c0e57538364f8f5166176);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd522724ba8c22c7d328b6366e1ce992.bindPopup(popup_e4bf5497a84de5dd97ff222f2a2cca67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43399fd4b5ba5144b4ff52323dc33ac1 = L.circleMarker(\\n\",\n       \"                [27.8036, 114.9314],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9d246aa2dbcd8088cc9073985890527 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b04d9daffbb656b2342f4a6e38cc30c = $(`&lt;div id=&quot;html_1b04d9daffbb656b2342f4a6e38cc30c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9314             latitude:27.8036             pred_result:59.01548767089844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9d246aa2dbcd8088cc9073985890527.setContent(html_1b04d9daffbb656b2342f4a6e38cc30c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43399fd4b5ba5144b4ff52323dc33ac1.bindPopup(popup_b9d246aa2dbcd8088cc9073985890527)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_644b59db9d7e8f3b8b4a834d5cb65832 = L.circleMarker(\\n\",\n       \"                [27.8042, 114.9119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81d195a206ea91fd05f2c094f8a10469 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fabce4ef1d36ff5a627b70790aa93d47 = $(`&lt;div id=&quot;html_fabce4ef1d36ff5a627b70790aa93d47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9119             latitude:27.8042             pred_result:58.894287109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81d195a206ea91fd05f2c094f8a10469.setContent(html_fabce4ef1d36ff5a627b70790aa93d47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_644b59db9d7e8f3b8b4a834d5cb65832.bindPopup(popup_81d195a206ea91fd05f2c094f8a10469)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a6176182bc30ce80c0f16d9e95c157b = L.circleMarker(\\n\",\n       \"                [28.095, 116.9622],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58645580c1767cff2dfc1d0ea48dcd8c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c96c91e31e458808b0dfff8f93b23729 = $(`&lt;div id=&quot;html_c96c91e31e458808b0dfff8f93b23729&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9622             latitude:28.095             pred_result:48.65483093261719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58645580c1767cff2dfc1d0ea48dcd8c.setContent(html_c96c91e31e458808b0dfff8f93b23729);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a6176182bc30ce80c0f16d9e95c157b.bindPopup(popup_58645580c1767cff2dfc1d0ea48dcd8c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9334edbc04f513883b5d46df9342387 = L.circleMarker(\\n\",\n       \"                [28.2642, 117.0564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7cba58b37501d686e39624b6b82ac8a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2da6eb9de6958c6616af24ec1dfb4a48 = $(`&lt;div id=&quot;html_2da6eb9de6958c6616af24ec1dfb4a48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0564             latitude:28.2642             pred_result:52.228179931640625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7cba58b37501d686e39624b6b82ac8a7.setContent(html_2da6eb9de6958c6616af24ec1dfb4a48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9334edbc04f513883b5d46df9342387.bindPopup(popup_7cba58b37501d686e39624b6b82ac8a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8be926940b913493880d6f1afa72d6b3 = L.circleMarker(\\n\",\n       \"                [28.2403, 117.0281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9972a7fbbc0aee5eab1b337602aa26fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67bffebe8dba54e581ed22e1cabd6b05 = $(`&lt;div id=&quot;html_67bffebe8dba54e581ed22e1cabd6b05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0281             latitude:28.2403             pred_result:53.6946907043457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9972a7fbbc0aee5eab1b337602aa26fc.setContent(html_67bffebe8dba54e581ed22e1cabd6b05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8be926940b913493880d6f1afa72d6b3.bindPopup(popup_9972a7fbbc0aee5eab1b337602aa26fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3995fd0d2b02381039f75831055dc0f8 = L.circleMarker(\\n\",\n       \"                [28.2264, 117.0222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0d3dd94f6aac3a32f286c7efbfe5741 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ae58a470bd47264779f117af114af4a = $(`&lt;div id=&quot;html_6ae58a470bd47264779f117af114af4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0222             latitude:28.2264             pred_result:54.16740036010742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0d3dd94f6aac3a32f286c7efbfe5741.setContent(html_6ae58a470bd47264779f117af114af4a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3995fd0d2b02381039f75831055dc0f8.bindPopup(popup_d0d3dd94f6aac3a32f286c7efbfe5741)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d775f3e0f5af0a715744d4b5e5d2460 = L.circleMarker(\\n\",\n       \"                [28.2169, 116.9983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_250021422eacc9179f0a9208e241927c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_210c5489e659e01a2f9c628f0573aa68 = $(`&lt;div id=&quot;html_210c5489e659e01a2f9c628f0573aa68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9983             latitude:28.2169             pred_result:54.5294189453125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_250021422eacc9179f0a9208e241927c.setContent(html_210c5489e659e01a2f9c628f0573aa68);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d775f3e0f5af0a715744d4b5e5d2460.bindPopup(popup_250021422eacc9179f0a9208e241927c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d39ac762aadca4adbf663f461ea9cd00 = L.circleMarker(\\n\",\n       \"                [25.9118, 114.9064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f22799762a93fcfe43f962c4c1d99c42 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe1b5f6ba34d063bed56d1aebdc97fb6 = $(`&lt;div id=&quot;html_fe1b5f6ba34d063bed56d1aebdc97fb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9064             latitude:25.9118             pred_result:45.498634338378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f22799762a93fcfe43f962c4c1d99c42.setContent(html_fe1b5f6ba34d063bed56d1aebdc97fb6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d39ac762aadca4adbf663f461ea9cd00.bindPopup(popup_f22799762a93fcfe43f962c4c1d99c42)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d845e4536fa30f081256a53dae44357a = L.circleMarker(\\n\",\n       \"                [25.8664, 114.9367],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e1e88fd8e6cbe249c0ae9878bab1825 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5bf71bcbc933b15fad1f4fd5dc06900 = $(`&lt;div id=&quot;html_c5bf71bcbc933b15fad1f4fd5dc06900&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9367             latitude:25.8664             pred_result:44.99209213256836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e1e88fd8e6cbe249c0ae9878bab1825.setContent(html_c5bf71bcbc933b15fad1f4fd5dc06900);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d845e4536fa30f081256a53dae44357a.bindPopup(popup_3e1e88fd8e6cbe249c0ae9878bab1825)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae89757d919bdbe1a675bf65e7184a1b = L.circleMarker(\\n\",\n       \"                [25.8481, 114.9461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_247edcd949431396b3cdfc108ab24638 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2de241d0463cfde1013057e3620a2620 = $(`&lt;div id=&quot;html_2de241d0463cfde1013057e3620a2620&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9461             latitude:25.8481             pred_result:45.19983673095703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_247edcd949431396b3cdfc108ab24638.setContent(html_2de241d0463cfde1013057e3620a2620);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae89757d919bdbe1a675bf65e7184a1b.bindPopup(popup_247edcd949431396b3cdfc108ab24638)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f894a4b8f4dbd2662f45c13a861e855 = L.circleMarker(\\n\",\n       \"                [25.8333, 114.9322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1da25588ea230b3d74a0afd110ea0510 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1979be4b57261b0986919744a5d67463 = $(`&lt;div id=&quot;html_1979be4b57261b0986919744a5d67463&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9322             latitude:25.8333             pred_result:44.7298583984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1da25588ea230b3d74a0afd110ea0510.setContent(html_1979be4b57261b0986919744a5d67463);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f894a4b8f4dbd2662f45c13a861e855.bindPopup(popup_1da25588ea230b3d74a0afd110ea0510)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb15a37ba764a8a26c270075266e6727 = L.circleMarker(\\n\",\n       \"                [25.8471, 114.8905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e6647533c795901d2072b0f8675e1dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f2bdd8fa5fce0802ffc735ee9c7dcdd = $(`&lt;div id=&quot;html_8f2bdd8fa5fce0802ffc735ee9c7dcdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8905             latitude:25.8471             pred_result:45.03712463378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e6647533c795901d2072b0f8675e1dd.setContent(html_8f2bdd8fa5fce0802ffc735ee9c7dcdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb15a37ba764a8a26c270075266e6727.bindPopup(popup_6e6647533c795901d2072b0f8675e1dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54bb46131e5d7416bd29a1c131c9670c = L.circleMarker(\\n\",\n       \"                [27.0658, 114.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fe767f0f3172d30dc08d15b938570b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6d7b04efde0cab689c34a0328e48d89 = $(`&lt;div id=&quot;html_c6d7b04efde0cab689c34a0328e48d89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9817             latitude:27.0658             pred_result:56.395469665527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fe767f0f3172d30dc08d15b938570b2.setContent(html_c6d7b04efde0cab689c34a0328e48d89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54bb46131e5d7416bd29a1c131c9670c.bindPopup(popup_6fe767f0f3172d30dc08d15b938570b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d83e07e4e6983c7ce4374c37575d0ef = L.circleMarker(\\n\",\n       \"                [27.11, 114.9739],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6afb99bc6993e74c1378fe17d458e344 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99ef8dc6f4f0756b0b44f0f91d81e8d9 = $(`&lt;div id=&quot;html_99ef8dc6f4f0756b0b44f0f91d81e8d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9739             latitude:27.11             pred_result:56.891231536865234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6afb99bc6993e74c1378fe17d458e344.setContent(html_99ef8dc6f4f0756b0b44f0f91d81e8d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d83e07e4e6983c7ce4374c37575d0ef.bindPopup(popup_6afb99bc6993e74c1378fe17d458e344)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f27785f7e4ede0799d2f3c49a5ee57f = L.circleMarker(\\n\",\n       \"                [27.1311, 114.99],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_612239fc0e0ee4ac3a4c11cb795a31b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad4c4246ea9a8ec0ce7d70d66ee25a73 = $(`&lt;div id=&quot;html_ad4c4246ea9a8ec0ce7d70d66ee25a73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.99             latitude:27.1311             pred_result:57.245849609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_612239fc0e0ee4ac3a4c11cb795a31b7.setContent(html_ad4c4246ea9a8ec0ce7d70d66ee25a73);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f27785f7e4ede0799d2f3c49a5ee57f.bindPopup(popup_612239fc0e0ee4ac3a4c11cb795a31b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_564599f1bb4cc768d2be7d04656fae89 = L.circleMarker(\\n\",\n       \"                [27.0983, 115.0075],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_006cf20c51a5b745c163349143eeec11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a36057d3c3173219917985c9391ddfaf = $(`&lt;div id=&quot;html_a36057d3c3173219917985c9391ddfaf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0075             latitude:27.0983             pred_result:56.49008560180664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_006cf20c51a5b745c163349143eeec11.setContent(html_a36057d3c3173219917985c9391ddfaf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_564599f1bb4cc768d2be7d04656fae89.bindPopup(popup_006cf20c51a5b745c163349143eeec11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec53fb9bfa3046685317e40355500b5d = L.circleMarker(\\n\",\n       \"                [27.8036, 114.3442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3520df77ac7a3ae9ac10294d479c4799 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf3312e8f6cb987186d6cbe5d9f07bfd = $(`&lt;div id=&quot;html_cf3312e8f6cb987186d6cbe5d9f07bfd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3442             latitude:27.8036             pred_result:58.344085693359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3520df77ac7a3ae9ac10294d479c4799.setContent(html_cf3312e8f6cb987186d6cbe5d9f07bfd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec53fb9bfa3046685317e40355500b5d.bindPopup(popup_3520df77ac7a3ae9ac10294d479c4799)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf73fdf9ef1fbac62b053b14d540b0e7 = L.circleMarker(\\n\",\n       \"                [27.8014, 114.3806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2562fa80f8a18c933855f5c9776c3815 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08e0c32c16b4f694234d77a1a61da8a0 = $(`&lt;div id=&quot;html_08e0c32c16b4f694234d77a1a61da8a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3806             latitude:27.8014             pred_result:58.63689422607422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2562fa80f8a18c933855f5c9776c3815.setContent(html_08e0c32c16b4f694234d77a1a61da8a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf73fdf9ef1fbac62b053b14d540b0e7.bindPopup(popup_2562fa80f8a18c933855f5c9776c3815)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b99efdaf7a88acbb10f979a80bd8880f = L.circleMarker(\\n\",\n       \"                [27.7842, 114.3953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4235ed7e1e7a35a7f897ef1ffad3bfc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e3c69f3cdefb71b92fb4d4b01382a08 = $(`&lt;div id=&quot;html_1e3c69f3cdefb71b92fb4d4b01382a08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3953             latitude:27.7842             pred_result:58.516357421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4235ed7e1e7a35a7f897ef1ffad3bfc4.setContent(html_1e3c69f3cdefb71b92fb4d4b01382a08);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b99efdaf7a88acbb10f979a80bd8880f.bindPopup(popup_4235ed7e1e7a35a7f897ef1ffad3bfc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_552b76126cbc61ba705704cdad0d8514 = L.circleMarker(\\n\",\n       \"                [27.7914, 114.3703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_878e82513145a1eca8f65d47a42d64a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c921e8de4b113471c81dffc730aaf5d6 = $(`&lt;div id=&quot;html_c921e8de4b113471c81dffc730aaf5d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3703             latitude:27.7914             pred_result:58.65812683105469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_878e82513145a1eca8f65d47a42d64a1.setContent(html_c921e8de4b113471c81dffc730aaf5d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_552b76126cbc61ba705704cdad0d8514.bindPopup(popup_878e82513145a1eca8f65d47a42d64a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d391d534b2d990b59f541152452d4bf1 = L.circleMarker(\\n\",\n       \"                [27.8072, 114.4011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94b4e9a82fd072a1143aadbcdb7f8b4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91f8ffc6bfc07624d127465cd550f106 = $(`&lt;div id=&quot;html_91f8ffc6bfc07624d127465cd550f106&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4011             latitude:27.8072             pred_result:58.979949951171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94b4e9a82fd072a1143aadbcdb7f8b4b.setContent(html_91f8ffc6bfc07624d127465cd550f106);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d391d534b2d990b59f541152452d4bf1.bindPopup(popup_94b4e9a82fd072a1143aadbcdb7f8b4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_647e6dcdfd773c8c5d40c1101aabbf6e = L.circleMarker(\\n\",\n       \"                [28.0797, 116.2239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2ee739b3ed762ddfed99de90a248e13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_815498651166836eea8e2e30a4999441 = $(`&lt;div id=&quot;html_815498651166836eea8e2e30a4999441&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.2239             latitude:28.0797             pred_result:57.49353790283203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2ee739b3ed762ddfed99de90a248e13.setContent(html_815498651166836eea8e2e30a4999441);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_647e6dcdfd773c8c5d40c1101aabbf6e.bindPopup(popup_f2ee739b3ed762ddfed99de90a248e13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba0558d464d96c53fca810e531944859 = L.circleMarker(\\n\",\n       \"                [27.9883, 116.3553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9592e5ab93c3b7c1f37553fe7088b0f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15f413233e1c72dfdc4400165f1559c6 = $(`&lt;div id=&quot;html_15f413233e1c72dfdc4400165f1559c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3553             latitude:27.9883             pred_result:56.998321533203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9592e5ab93c3b7c1f37553fe7088b0f8.setContent(html_15f413233e1c72dfdc4400165f1559c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba0558d464d96c53fca810e531944859.bindPopup(popup_9592e5ab93c3b7c1f37553fe7088b0f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d53137b25f72d629caf34e9172983f5b = L.circleMarker(\\n\",\n       \"                [27.9639, 116.3598],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4dc82cb9edc39807abdc70004ce8576a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6bb2aaf1153088582f55cbf2f952e16 = $(`&lt;div id=&quot;html_c6bb2aaf1153088582f55cbf2f952e16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3598             latitude:27.9639             pred_result:56.64236831665039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4dc82cb9edc39807abdc70004ce8576a.setContent(html_c6bb2aaf1153088582f55cbf2f952e16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d53137b25f72d629caf34e9172983f5b.bindPopup(popup_4dc82cb9edc39807abdc70004ce8576a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff7216806938aea0e61841a784b772df = L.circleMarker(\\n\",\n       \"                [28.0005, 116.3574],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa01b1eacdc7117b530acc5626c7224b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_819f6f30ae7514ec3e516c930abe5097 = $(`&lt;div id=&quot;html_819f6f30ae7514ec3e516c930abe5097&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3574             latitude:28.0005             pred_result:57.039398193359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa01b1eacdc7117b530acc5626c7224b.setContent(html_819f6f30ae7514ec3e516c930abe5097);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff7216806938aea0e61841a784b772df.bindPopup(popup_aa01b1eacdc7117b530acc5626c7224b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0bf60de8927a69af6b7cd9790fefd99 = L.circleMarker(\\n\",\n       \"                [27.9647, 116.385],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f01e293c09d3d142072b156d155ff536 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6930d9d889dfb75c8bea5baf177179a7 = $(`&lt;div id=&quot;html_6930d9d889dfb75c8bea5baf177179a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.385             latitude:27.9647             pred_result:56.43206787109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f01e293c09d3d142072b156d155ff536.setContent(html_6930d9d889dfb75c8bea5baf177179a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0bf60de8927a69af6b7cd9790fefd99.bindPopup(popup_f01e293c09d3d142072b156d155ff536)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a345135a55903964b18a05ff761342d3 = L.circleMarker(\\n\",\n       \"                [28.4569, 118.0058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae87d4bb5db234819d1930cea737b299 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58ed32cb92680e2004211296adc10f7c = $(`&lt;div id=&quot;html_58ed32cb92680e2004211296adc10f7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0058             latitude:28.4569             pred_result:42.3122673034668             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae87d4bb5db234819d1930cea737b299.setContent(html_58ed32cb92680e2004211296adc10f7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a345135a55903964b18a05ff761342d3.bindPopup(popup_ae87d4bb5db234819d1930cea737b299)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47f0b25cf98a42957503f2ccf01e1e81 = L.circleMarker(\\n\",\n       \"                [28.4459, 117.973],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66f182b4b5eac390c3c8c3decad7147a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8251f733f37ea34c5d07d0e431573e81 = $(`&lt;div id=&quot;html_8251f733f37ea34c5d07d0e431573e81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.973             latitude:28.4459             pred_result:43.29395294189453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66f182b4b5eac390c3c8c3decad7147a.setContent(html_8251f733f37ea34c5d07d0e431573e81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47f0b25cf98a42957503f2ccf01e1e81.bindPopup(popup_66f182b4b5eac390c3c8c3decad7147a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f417eed5ddb0f34ec2c9151b5d98f6f9 = L.circleMarker(\\n\",\n       \"                [28.4622, 117.9511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5af7e143428ad4a4414d9be6b0023794 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68a9b43f44ed660bc27410295df5c273 = $(`&lt;div id=&quot;html_68a9b43f44ed660bc27410295df5c273&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9511             latitude:28.4622             pred_result:44.55974578857422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5af7e143428ad4a4414d9be6b0023794.setContent(html_68a9b43f44ed660bc27410295df5c273);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f417eed5ddb0f34ec2c9151b5d98f6f9.bindPopup(popup_5af7e143428ad4a4414d9be6b0023794)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0893da664c39685835838ac48d0f53b6 = L.circleMarker(\\n\",\n       \"                [28.4303, 117.9033],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18e86a9eb36115f97b85eddb441a4fc6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2250dee0e54fe122643de920a1a0650b = $(`&lt;div id=&quot;html_2250dee0e54fe122643de920a1a0650b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9033             latitude:28.4303             pred_result:44.628082275390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18e86a9eb36115f97b85eddb441a4fc6.setContent(html_2250dee0e54fe122643de920a1a0650b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0893da664c39685835838ac48d0f53b6.bindPopup(popup_18e86a9eb36115f97b85eddb441a4fc6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_911ef4f2102ee3380a07980c1a188076 = L.circleMarker(\\n\",\n       \"                [35.9019, 114.17],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be1982a90eb304a517b535da547a14e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_837aaf508f9d62c1035dca2c03c32030 = $(`&lt;div id=&quot;html_837aaf508f9d62c1035dca2c03c32030&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.17             latitude:35.9019             pred_result:76.20921325683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be1982a90eb304a517b535da547a14e8.setContent(html_837aaf508f9d62c1035dca2c03c32030);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_911ef4f2102ee3380a07980c1a188076.bindPopup(popup_be1982a90eb304a517b535da547a14e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2265f71179b9ab99975ba6ce7e93172e = L.circleMarker(\\n\",\n       \"                [35.7511, 114.2956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_946af3cb590eaa5a27acbffc897ca8a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c9f54750271f10218762641cd097cd3 = $(`&lt;div id=&quot;html_8c9f54750271f10218762641cd097cd3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2956             latitude:35.7511             pred_result:73.69136810302734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_946af3cb590eaa5a27acbffc897ca8a7.setContent(html_8c9f54750271f10218762641cd097cd3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2265f71179b9ab99975ba6ce7e93172e.bindPopup(popup_946af3cb590eaa5a27acbffc897ca8a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9431435db6fcedfbd5b22807f3fdb8be = L.circleMarker(\\n\",\n       \"                [35.7306, 114.2878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84efaac632c3d4db0beb0c9cd528354a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7dcf4303cbf5208c562fce05c8bc19ac = $(`&lt;div id=&quot;html_7dcf4303cbf5208c562fce05c8bc19ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2878             latitude:35.7306             pred_result:73.37814331054688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84efaac632c3d4db0beb0c9cd528354a.setContent(html_7dcf4303cbf5208c562fce05c8bc19ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9431435db6fcedfbd5b22807f3fdb8be.bindPopup(popup_84efaac632c3d4db0beb0c9cd528354a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0994931c0f6df5be84d15a65ea516323 = L.circleMarker(\\n\",\n       \"                [35.31, 113.836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_135800195a1b27ab8900637f88a3e0d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d38a34d62d20c69d5bed61bc3088f41 = $(`&lt;div id=&quot;html_1d38a34d62d20c69d5bed61bc3088f41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.836             latitude:35.31             pred_result:71.78684997558594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_135800195a1b27ab8900637f88a3e0d4.setContent(html_1d38a34d62d20c69d5bed61bc3088f41);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0994931c0f6df5be84d15a65ea516323.bindPopup(popup_135800195a1b27ab8900637f88a3e0d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_daad180208ebd9a5ade9f3ac040bccc6 = L.circleMarker(\\n\",\n       \"                [35.272, 113.884],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98aac4dc3d1d670b155bd39af98d0723 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d0f21cc75349d49863132147f369a38 = $(`&lt;div id=&quot;html_9d0f21cc75349d49863132147f369a38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.884             latitude:35.272             pred_result:71.95597076416016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98aac4dc3d1d670b155bd39af98d0723.setContent(html_9d0f21cc75349d49863132147f369a38);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_daad180208ebd9a5ade9f3ac040bccc6.bindPopup(popup_98aac4dc3d1d670b155bd39af98d0723)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e601e5cbd43bb7ef310dfe49d0e1bc75 = L.circleMarker(\\n\",\n       \"                [35.30300000000001, 113.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_145b6badb97a92802de72451ad2880f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a6067f2421519ccc779e013523d3459 = $(`&lt;div id=&quot;html_1a6067f2421519ccc779e013523d3459&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.883             latitude:35.30300000000001             pred_result:72.00250244140625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_145b6badb97a92802de72451ad2880f3.setContent(html_1a6067f2421519ccc779e013523d3459);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e601e5cbd43bb7ef310dfe49d0e1bc75.bindPopup(popup_145b6badb97a92802de72451ad2880f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c83bf90a88891c7b8ff2740936005125 = L.circleMarker(\\n\",\n       \"                [35.76300000000001, 115.031],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbb4a81cfad73200bb794cea24fe808d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b699a821ac572073d923ee9ae29383bd = $(`&lt;div id=&quot;html_b699a821ac572073d923ee9ae29383bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.031             latitude:35.76300000000001             pred_result:68.26175689697266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbb4a81cfad73200bb794cea24fe808d.setContent(html_b699a821ac572073d923ee9ae29383bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c83bf90a88891c7b8ff2740936005125.bindPopup(popup_dbb4a81cfad73200bb794cea24fe808d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cfa5b913e93bc2500a8d03c8ddd09aa = L.circleMarker(\\n\",\n       \"                [35.7672, 115.0628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92a5ec168876060ddd2f28014b37b9d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8bd697080f1ce2a90b67a266c83cc839 = $(`&lt;div id=&quot;html_8bd697080f1ce2a90b67a266c83cc839&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0628             latitude:35.7672             pred_result:67.90017700195312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92a5ec168876060ddd2f28014b37b9d7.setContent(html_8bd697080f1ce2a90b67a266c83cc839);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cfa5b913e93bc2500a8d03c8ddd09aa.bindPopup(popup_92a5ec168876060ddd2f28014b37b9d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9722a8d603e860832b4decd57b6c815d = L.circleMarker(\\n\",\n       \"                [35.767, 115.0772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a36a97ab8622ae68ae866ce2cac8211 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b585fc84f05b96289701fe9c12f6bda3 = $(`&lt;div id=&quot;html_b585fc84f05b96289701fe9c12f6bda3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0772             latitude:35.767             pred_result:67.95166778564453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a36a97ab8622ae68ae866ce2cac8211.setContent(html_b585fc84f05b96289701fe9c12f6bda3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9722a8d603e860832b4decd57b6c815d.bindPopup(popup_2a36a97ab8622ae68ae866ce2cac8211)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d24c24549684e6ed16374bcac0cd5ad4 = L.circleMarker(\\n\",\n       \"                [34.0117, 113.8331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c141e270617994da0b0e1f45f6c51213 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_277e24644e10e5eb3ee0119d6507bf33 = $(`&lt;div id=&quot;html_277e24644e10e5eb3ee0119d6507bf33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8331             latitude:34.0117             pred_result:54.50334930419922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c141e270617994da0b0e1f45f6c51213.setContent(html_277e24644e10e5eb3ee0119d6507bf33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d24c24549684e6ed16374bcac0cd5ad4.bindPopup(popup_c141e270617994da0b0e1f45f6c51213)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7bd22ae805f421092cb4099c9970bb0 = L.circleMarker(\\n\",\n       \"                [33.9953, 113.7906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d6df3fd31dc511c8e44298fa13425c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3caa452ad4348c825ff48c133f17cd8 = $(`&lt;div id=&quot;html_c3caa452ad4348c825ff48c133f17cd8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7906             latitude:33.9953             pred_result:54.30915832519531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d6df3fd31dc511c8e44298fa13425c0.setContent(html_c3caa452ad4348c825ff48c133f17cd8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7bd22ae805f421092cb4099c9970bb0.bindPopup(popup_8d6df3fd31dc511c8e44298fa13425c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7903a7e8e712a3a25d6914cfca7bb0d = L.circleMarker(\\n\",\n       \"                [33.567, 114.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec85117d7028458ee2130e745b24bdb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d85b10b9a852d3ae8e89faeb617bfdd = $(`&lt;div id=&quot;html_6d85b10b9a852d3ae8e89faeb617bfdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.056             latitude:33.567             pred_result:53.57686233520508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec85117d7028458ee2130e745b24bdb2.setContent(html_6d85b10b9a852d3ae8e89faeb617bfdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7903a7e8e712a3a25d6914cfca7bb0d.bindPopup(popup_ec85117d7028458ee2130e745b24bdb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb341fcc5432d0969ffdef4dee39071a = L.circleMarker(\\n\",\n       \"                [33.568000000000005, 114.005],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0525c2f22d750f50cefbaf823f0f1bed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ffdb06be3f39710648292d32ce31f1c = $(`&lt;div id=&quot;html_9ffdb06be3f39710648292d32ce31f1c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.005             latitude:33.568000000000005             pred_result:53.52522277832031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0525c2f22d750f50cefbaf823f0f1bed.setContent(html_9ffdb06be3f39710648292d32ce31f1c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb341fcc5432d0969ffdef4dee39071a.bindPopup(popup_0525c2f22d750f50cefbaf823f0f1bed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f36ad0a6c02ae54ab4bf3f00906ffbc = L.circleMarker(\\n\",\n       \"                [33.581, 114.014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_500044cf7f378a7f3914d1f34f2c3988 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9436e2336d1f5946d52c0a9db933147 = $(`&lt;div id=&quot;html_c9436e2336d1f5946d52c0a9db933147&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.014             latitude:33.581             pred_result:53.42124938964844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_500044cf7f378a7f3914d1f34f2c3988.setContent(html_c9436e2336d1f5946d52c0a9db933147);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f36ad0a6c02ae54ab4bf3f00906ffbc.bindPopup(popup_500044cf7f378a7f3914d1f34f2c3988)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8048a21d6e4b50edbc9f52537752cf1 = L.circleMarker(\\n\",\n       \"                [33.5653, 114.0322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe8e963dda172dca2a0ffa33c39a6751 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_480e379ee797525c7f16a3665d85120d = $(`&lt;div id=&quot;html_480e379ee797525c7f16a3665d85120d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0322             latitude:33.5653             pred_result:53.6112174987793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe8e963dda172dca2a0ffa33c39a6751.setContent(html_480e379ee797525c7f16a3665d85120d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8048a21d6e4b50edbc9f52537752cf1.bindPopup(popup_fe8e963dda172dca2a0ffa33c39a6751)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc34ae939addf3302ae5dbb205803648 = L.circleMarker(\\n\",\n       \"                [32.9917, 112.5192],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1a54755b2d87e6f08cf352b6b9edd61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c258006d3ca7a75c576a8039ed27fbf2 = $(`&lt;div id=&quot;html_c258006d3ca7a75c576a8039ed27fbf2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5192             latitude:32.9917             pred_result:54.87869644165039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1a54755b2d87e6f08cf352b6b9edd61.setContent(html_c258006d3ca7a75c576a8039ed27fbf2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc34ae939addf3302ae5dbb205803648.bindPopup(popup_d1a54755b2d87e6f08cf352b6b9edd61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d45f162e3f407d2a3f542e9ceea65934 = L.circleMarker(\\n\",\n       \"                [33.0122, 112.5224],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a49008cb906eaaf4ef010731b786ff86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_53e566bb44e1a674948d5be1800771ae = $(`&lt;div id=&quot;html_53e566bb44e1a674948d5be1800771ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5224             latitude:33.0122             pred_result:54.606964111328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a49008cb906eaaf4ef010731b786ff86.setContent(html_53e566bb44e1a674948d5be1800771ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d45f162e3f407d2a3f542e9ceea65934.bindPopup(popup_a49008cb906eaaf4ef010731b786ff86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49f526979a4f7173b4cd6889a07a8a8f = L.circleMarker(\\n\",\n       \"                [32.9735, 112.5003],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3942bf79238d06e2e177f87f449b0da9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cbc2a0a99c00909500801013f2d79da = $(`&lt;div id=&quot;html_8cbc2a0a99c00909500801013f2d79da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5003             latitude:32.9735             pred_result:54.93738555908203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3942bf79238d06e2e177f87f449b0da9.setContent(html_8cbc2a0a99c00909500801013f2d79da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49f526979a4f7173b4cd6889a07a8a8f.bindPopup(popup_3942bf79238d06e2e177f87f449b0da9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2109267889d91af89dfad89e277b8a55 = L.circleMarker(\\n\",\n       \"                [33.027, 112.5573],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f9c112cbd0fe84488b99fce3885d7d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f437f78528e6e31aba0c18ea4725608b = $(`&lt;div id=&quot;html_f437f78528e6e31aba0c18ea4725608b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5573             latitude:33.027             pred_result:54.32252883911133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f9c112cbd0fe84488b99fce3885d7d2.setContent(html_f437f78528e6e31aba0c18ea4725608b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2109267889d91af89dfad89e277b8a55.bindPopup(popup_2f9c112cbd0fe84488b99fce3885d7d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b548cf477b573fab7091948984c52334 = L.circleMarker(\\n\",\n       \"                [32.9683, 112.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4b6cb58512ed00fbff72cc0091bca50b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ccf85d39701d3db716c465bfd9cc4bdc = $(`&lt;div id=&quot;html_ccf85d39701d3db716c465bfd9cc4bdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.55             latitude:32.9683             pred_result:54.531219482421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4b6cb58512ed00fbff72cc0091bca50b.setContent(html_ccf85d39701d3db716c465bfd9cc4bdc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b548cf477b573fab7091948984c52334.bindPopup(popup_4b6cb58512ed00fbff72cc0091bca50b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7677e68862dc77202be9b6102a2cb58 = L.circleMarker(\\n\",\n       \"                [34.4286, 115.6697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73b36e4d5161d2ffd05090211aa94f7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbffc046f4401f52650157a6fca78395 = $(`&lt;div id=&quot;html_fbffc046f4401f52650157a6fca78395&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6697             latitude:34.4286             pred_result:58.91678237915039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73b36e4d5161d2ffd05090211aa94f7e.setContent(html_fbffc046f4401f52650157a6fca78395);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7677e68862dc77202be9b6102a2cb58.bindPopup(popup_73b36e4d5161d2ffd05090211aa94f7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8cd9fc1365fe53c3e5c9db9d21d1bcd8 = L.circleMarker(\\n\",\n       \"                [34.429, 115.6558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a71fda3fd00cb76cc82c5cc010808157 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22d04063f7b4fb4d9b40d8a8efbd9fea = $(`&lt;div id=&quot;html_22d04063f7b4fb4d9b40d8a8efbd9fea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6558             latitude:34.429             pred_result:58.505775451660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a71fda3fd00cb76cc82c5cc010808157.setContent(html_22d04063f7b4fb4d9b40d8a8efbd9fea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8cd9fc1365fe53c3e5c9db9d21d1bcd8.bindPopup(popup_a71fda3fd00cb76cc82c5cc010808157)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c0c3e91dc77bacee470ecc243beb3fcd = L.circleMarker(\\n\",\n       \"                [34.407, 115.6386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bc119d29b5828a8f18e9859d1805f40 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa8062954801467702c058a2ed1c0ca5 = $(`&lt;div id=&quot;html_aa8062954801467702c058a2ed1c0ca5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6386             latitude:34.407             pred_result:58.74254608154297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bc119d29b5828a8f18e9859d1805f40.setContent(html_aa8062954801467702c058a2ed1c0ca5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c0c3e91dc77bacee470ecc243beb3fcd.bindPopup(popup_5bc119d29b5828a8f18e9859d1805f40)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_860a7f0daf4f43ff6ff4f34544a72be8 = L.circleMarker(\\n\",\n       \"                [34.402, 115.6578],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f939dcb3dab6ad847c9315236c1b8305 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f49d6fab7b1eaf5759a44580cf6807e5 = $(`&lt;div id=&quot;html_f49d6fab7b1eaf5759a44580cf6807e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6578             latitude:34.402             pred_result:58.88471221923828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f939dcb3dab6ad847c9315236c1b8305.setContent(html_f49d6fab7b1eaf5759a44580cf6807e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_860a7f0daf4f43ff6ff4f34544a72be8.bindPopup(popup_f939dcb3dab6ad847c9315236c1b8305)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0daf6acba61f03ec23ca442a526169c8 = L.circleMarker(\\n\",\n       \"                [32.965, 114.018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6eba509346b5d10d6862b2dd84bf988 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_834b934b233ad00a4f637af2bf210937 = $(`&lt;div id=&quot;html_834b934b233ad00a4f637af2bf210937&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.018             latitude:32.965             pred_result:56.138580322265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6eba509346b5d10d6862b2dd84bf988.setContent(html_834b934b233ad00a4f637af2bf210937);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0daf6acba61f03ec23ca442a526169c8.bindPopup(popup_e6eba509346b5d10d6862b2dd84bf988)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c2f7aa249289072971d12eec26362bd = L.circleMarker(\\n\",\n       \"                [33.0069, 114.0131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bea2096de36939b4114af8202a2d64ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61b01815d91493369dac393d9ceeaada = $(`&lt;div id=&quot;html_61b01815d91493369dac393d9ceeaada&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0131             latitude:33.0069             pred_result:56.59602355957031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bea2096de36939b4114af8202a2d64ad.setContent(html_61b01815d91493369dac393d9ceeaada);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c2f7aa249289072971d12eec26362bd.bindPopup(popup_bea2096de36939b4114af8202a2d64ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ef9aafb834bc2628d9ac5630f3caf65 = L.circleMarker(\\n\",\n       \"                [32.996, 113.996],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cdfd3d313bb15102c680963431fd65c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_590de0f329a0abcf80503352c5761cd9 = $(`&lt;div id=&quot;html_590de0f329a0abcf80503352c5761cd9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.996             latitude:32.996             pred_result:56.94414520263672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cdfd3d313bb15102c680963431fd65c5.setContent(html_590de0f329a0abcf80503352c5761cd9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ef9aafb834bc2628d9ac5630f3caf65.bindPopup(popup_cdfd3d313bb15102c680963431fd65c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07063da78f79e9e676f85bb693325668 = L.circleMarker(\\n\",\n       \"                [30.2352, 115.0625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdf5f5d5fd30aeeffc6a90674dd1ab96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_602ca94f1925c7875faa7de4e6f4b0a0 = $(`&lt;div id=&quot;html_602ca94f1925c7875faa7de4e6f4b0a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0625             latitude:30.2352             pred_result:65.33705139160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdf5f5d5fd30aeeffc6a90674dd1ab96.setContent(html_602ca94f1925c7875faa7de4e6f4b0a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07063da78f79e9e676f85bb693325668.bindPopup(popup_fdf5f5d5fd30aeeffc6a90674dd1ab96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39e6f7cea2090dbdfa5e69d1ee20c82b = L.circleMarker(\\n\",\n       \"                [30.2028, 115.0767],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a94aa6f6df3c81a96d7d5f3869c6091 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1fb2c16e0a049a9ef9b55b3e569629b = $(`&lt;div id=&quot;html_a1fb2c16e0a049a9ef9b55b3e569629b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0767             latitude:30.2028             pred_result:65.13847351074219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a94aa6f6df3c81a96d7d5f3869c6091.setContent(html_a1fb2c16e0a049a9ef9b55b3e569629b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39e6f7cea2090dbdfa5e69d1ee20c82b.bindPopup(popup_2a94aa6f6df3c81a96d7d5f3869c6091)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a49f13750137bd7b4fe5715b0ac80b5e = L.circleMarker(\\n\",\n       \"                [30.1765, 114.9551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e62885103b236d2b04f66b0e7cb50222 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca06e5a73e37ee1247404fa59accadbc = $(`&lt;div id=&quot;html_ca06e5a73e37ee1247404fa59accadbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9551             latitude:30.1765             pred_result:64.94073486328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e62885103b236d2b04f66b0e7cb50222.setContent(html_ca06e5a73e37ee1247404fa59accadbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a49f13750137bd7b4fe5715b0ac80b5e.bindPopup(popup_e62885103b236d2b04f66b0e7cb50222)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41b890642ce37a4354bc876cc01a1473 = L.circleMarker(\\n\",\n       \"                [30.2043, 114.8949],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_337e48ea5568fed7ea7f6d3d85a592a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b1453b474ce9e9c5f534465dd735311 = $(`&lt;div id=&quot;html_6b1453b474ce9e9c5f534465dd735311&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8949             latitude:30.2043             pred_result:64.52812194824219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_337e48ea5568fed7ea7f6d3d85a592a4.setContent(html_6b1453b474ce9e9c5f534465dd735311);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41b890642ce37a4354bc876cc01a1473.bindPopup(popup_337e48ea5568fed7ea7f6d3d85a592a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06bdd6adeb3dc05758126ce77b7ff326 = L.circleMarker(\\n\",\n       \"                [30.2099, 115.0264],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4cf67ed8e613e375d18af7bc444efd06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e350a1958fd8934f5d2baaaae5c7bae1 = $(`&lt;div id=&quot;html_e350a1958fd8934f5d2baaaae5c7bae1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0264             latitude:30.2099             pred_result:65.79206085205078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4cf67ed8e613e375d18af7bc444efd06.setContent(html_e350a1958fd8934f5d2baaaae5c7bae1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06bdd6adeb3dc05758126ce77b7ff326.bindPopup(popup_4cf67ed8e613e375d18af7bc444efd06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7e7b19c9944a018cc2c971a0b186b85 = L.circleMarker(\\n\",\n       \"                [32.395, 111.0419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_046a9f8ec6e1e1379ca870e9369d76f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d934fa9b5ec7141f33c6579cec4c5f84 = $(`&lt;div id=&quot;html_d934fa9b5ec7141f33c6579cec4c5f84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0419             latitude:32.395             pred_result:34.867950439453125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_046a9f8ec6e1e1379ca870e9369d76f5.setContent(html_d934fa9b5ec7141f33c6579cec4c5f84);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7e7b19c9944a018cc2c971a0b186b85.bindPopup(popup_046a9f8ec6e1e1379ca870e9369d76f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8329923f750b46e4c63325599171afe = L.circleMarker(\\n\",\n       \"                [32.6494, 110.78],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_697977e90e3bd52f09ea0786ea6bca1c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a86d3c404c7cb83e874e50e9d543d7e4 = $(`&lt;div id=&quot;html_a86d3c404c7cb83e874e50e9d543d7e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.78             latitude:32.6494             pred_result:39.71776580810547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_697977e90e3bd52f09ea0786ea6bca1c.setContent(html_a86d3c404c7cb83e874e50e9d543d7e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8329923f750b46e4c63325599171afe.bindPopup(popup_697977e90e3bd52f09ea0786ea6bca1c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5391978ee2e5a5a0368e32faad9189f = L.circleMarker(\\n\",\n       \"                [32.6389, 110.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69ed6b12daeef55f9ed9609fead96a72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9553a5f98a973e26276fcce2fd919a9 = $(`&lt;div id=&quot;html_d9553a5f98a973e26276fcce2fd919a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.7258             latitude:32.6389             pred_result:37.80485153198242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69ed6b12daeef55f9ed9609fead96a72.setContent(html_d9553a5f98a973e26276fcce2fd919a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5391978ee2e5a5a0368e32faad9189f.bindPopup(popup_69ed6b12daeef55f9ed9609fead96a72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_774adfc639dea603e72164c1f1b545c1 = L.circleMarker(\\n\",\n       \"                [32.5714, 110.8839],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cfbe9508226948d3412e8879a428f287 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_427a5d9e5fa3bded18ea39c60d75dfdc = $(`&lt;div id=&quot;html_427a5d9e5fa3bded18ea39c60d75dfdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.8839             latitude:32.5714             pred_result:40.931640625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cfbe9508226948d3412e8879a428f287.setContent(html_427a5d9e5fa3bded18ea39c60d75dfdc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_774adfc639dea603e72164c1f1b545c1.bindPopup(popup_cfbe9508226948d3412e8879a428f287)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_316580d9baf4c850ff4e2396b9d3beed = L.circleMarker(\\n\",\n       \"                [32.0197, 112.155],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_222f7aba1d7a950fee71a7ec8a96eead = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9390a563a25d7036a6782d51f5fd853b = $(`&lt;div id=&quot;html_9390a563a25d7036a6782d51f5fd853b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.155             latitude:32.0197             pred_result:50.09260559082031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_222f7aba1d7a950fee71a7ec8a96eead.setContent(html_9390a563a25d7036a6782d51f5fd853b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_316580d9baf4c850ff4e2396b9d3beed.bindPopup(popup_222f7aba1d7a950fee71a7ec8a96eead)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf4d23d1477ed82cc5698120771d3cc0 = L.circleMarker(\\n\",\n       \"                [32.0564, 112.1392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e69449485b67ce0bb57895f57c90a4f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8db6c2da3edd8b7a78f972816333b882 = $(`&lt;div id=&quot;html_8db6c2da3edd8b7a78f972816333b882&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1392             latitude:32.0564             pred_result:50.16427993774414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e69449485b67ce0bb57895f57c90a4f4.setContent(html_8db6c2da3edd8b7a78f972816333b882);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf4d23d1477ed82cc5698120771d3cc0.bindPopup(popup_e69449485b67ce0bb57895f57c90a4f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63d8604ee741d1c4ba82f9ad489ca3bf = L.circleMarker(\\n\",\n       \"                [32.1142, 112.1825],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28cfc6de8a2273b4d5c35445b36a4d91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2120cfee647cd93deb255449cc63a28 = $(`&lt;div id=&quot;html_b2120cfee647cd93deb255449cc63a28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1825             latitude:32.1142             pred_result:50.68901062011719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28cfc6de8a2273b4d5c35445b36a4d91.setContent(html_b2120cfee647cd93deb255449cc63a28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63d8604ee741d1c4ba82f9ad489ca3bf.bindPopup(popup_28cfc6de8a2273b4d5c35445b36a4d91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01d53af1799dd0ea49c574f4260462b6 = L.circleMarker(\\n\",\n       \"                [32.0903, 112.2106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_815d262cd3a163da9ceaa55441222914 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cfbab57ad78270c4b3cf65f6c0e0bace = $(`&lt;div id=&quot;html_cfbab57ad78270c4b3cf65f6c0e0bace&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2106             latitude:32.0903             pred_result:50.99004364013672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_815d262cd3a163da9ceaa55441222914.setContent(html_cfbab57ad78270c4b3cf65f6c0e0bace);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01d53af1799dd0ea49c574f4260462b6.bindPopup(popup_815d262cd3a163da9ceaa55441222914)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00ebd66a7686fd7dc4eb5c5ee2a51006 = L.circleMarker(\\n\",\n       \"                [30.3944, 114.8878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_487bf7ba0d09512c56000eea9c1882d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31848bc8a7214a4773d6d0ba0a303a5a = $(`&lt;div id=&quot;html_31848bc8a7214a4773d6d0ba0a303a5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8878             latitude:30.3944             pred_result:66.5119400024414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_487bf7ba0d09512c56000eea9c1882d9.setContent(html_31848bc8a7214a4773d6d0ba0a303a5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00ebd66a7686fd7dc4eb5c5ee2a51006.bindPopup(popup_487bf7ba0d09512c56000eea9c1882d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c16e6cb535e6349eed158e9e71d3783 = L.circleMarker(\\n\",\n       \"                [30.3714, 114.8989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e923fe25fb9fb5859257f135b7acd70d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6602114ff14d7c2f6d0ed618b75b32d7 = $(`&lt;div id=&quot;html_6602114ff14d7c2f6d0ed618b75b32d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8989             latitude:30.3714             pred_result:65.73429870605469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e923fe25fb9fb5859257f135b7acd70d.setContent(html_6602114ff14d7c2f6d0ed618b75b32d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c16e6cb535e6349eed158e9e71d3783.bindPopup(popup_e923fe25fb9fb5859257f135b7acd70d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44f80d4fcbfec0110113750a006ee43b = L.circleMarker(\\n\",\n       \"                [30.4133, 114.8131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c61816351d4d165ddba917ca8b37d39b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad9dc246d70919686d05d31e187eaf3c = $(`&lt;div id=&quot;html_ad9dc246d70919686d05d31e187eaf3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8131             latitude:30.4133             pred_result:67.04501342773438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c61816351d4d165ddba917ca8b37d39b.setContent(html_ad9dc246d70919686d05d31e187eaf3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44f80d4fcbfec0110113750a006ee43b.bindPopup(popup_c61816351d4d165ddba917ca8b37d39b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8838a13cd0a320bb91db5f1c96e32637 = L.circleMarker(\\n\",\n       \"                [31.0483, 112.2014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33133796b93fb809b703031185d3960f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9abdbf88fb8b420b72acd893c3ac0083 = $(`&lt;div id=&quot;html_9abdbf88fb8b420b72acd893c3ac0083&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2014             latitude:31.0483             pred_result:60.04703903198242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33133796b93fb809b703031185d3960f.setContent(html_9abdbf88fb8b420b72acd893c3ac0083);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8838a13cd0a320bb91db5f1c96e32637.bindPopup(popup_33133796b93fb809b703031185d3960f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e23dcbcc9fd8c2dbc1d06bc0cc82b3b = L.circleMarker(\\n\",\n       \"                [30.9892, 112.1969],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24919d1683d0c6cdfc15b1bc314f1e94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5af1e5705bba591cd1a2c369716c102c = $(`&lt;div id=&quot;html_5af1e5705bba591cd1a2c369716c102c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1969             latitude:30.9892             pred_result:60.26926040649414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24919d1683d0c6cdfc15b1bc314f1e94.setContent(html_5af1e5705bba591cd1a2c369716c102c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e23dcbcc9fd8c2dbc1d06bc0cc82b3b.bindPopup(popup_24919d1683d0c6cdfc15b1bc314f1e94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2dd84da372eb7e4e5e7d92107f49a29d = L.circleMarker(\\n\",\n       \"                [31.0386, 112.2211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9546893721ab6cb30635dbdb479d1f82 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_81a9abf7f5b7e604cf8caba24703c9e3 = $(`&lt;div id=&quot;html_81a9abf7f5b7e604cf8caba24703c9e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2211             latitude:31.0386             pred_result:60.32037353515625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9546893721ab6cb30635dbdb479d1f82.setContent(html_81a9abf7f5b7e604cf8caba24703c9e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2dd84da372eb7e4e5e7d92107f49a29d.bindPopup(popup_9546893721ab6cb30635dbdb479d1f82)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93ec5c4cce1d0174fcbb98f1101f5e55 = L.circleMarker(\\n\",\n       \"                [30.9285, 113.9153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a37752d47e8d0e781a8c28c42969dc93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_937bebd8a05060f3caa60b15abcd527a = $(`&lt;div id=&quot;html_937bebd8a05060f3caa60b15abcd527a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.9153             latitude:30.9285             pred_result:55.69999313354492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a37752d47e8d0e781a8c28c42969dc93.setContent(html_937bebd8a05060f3caa60b15abcd527a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93ec5c4cce1d0174fcbb98f1101f5e55.bindPopup(popup_a37752d47e8d0e781a8c28c42969dc93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eddb8eee5fb98016fb77d3630764b85c = L.circleMarker(\\n\",\n       \"                [30.9075, 113.942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a941bc2a225a6af13a6a495f71aaa04 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c05bb8b845de4413b8389af8eb930386 = $(`&lt;div id=&quot;html_c05bb8b845de4413b8389af8eb930386&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.942             latitude:30.9075             pred_result:56.65622329711914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a941bc2a225a6af13a6a495f71aaa04.setContent(html_c05bb8b845de4413b8389af8eb930386);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eddb8eee5fb98016fb77d3630764b85c.bindPopup(popup_5a941bc2a225a6af13a6a495f71aaa04)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7261834300c103f14ba6eb6a9e9bc4d7 = L.circleMarker(\\n\",\n       \"                [30.4742, 114.9028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a52a2378276180612a76829acc9b3d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8bd1bc86bf5babd0c5d06ff7baf5ceed = $(`&lt;div id=&quot;html_8bd1bc86bf5babd0c5d06ff7baf5ceed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9028             latitude:30.4742             pred_result:66.3597640991211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a52a2378276180612a76829acc9b3d8.setContent(html_8bd1bc86bf5babd0c5d06ff7baf5ceed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7261834300c103f14ba6eb6a9e9bc4d7.bindPopup(popup_7a52a2378276180612a76829acc9b3d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3fd95f12e47d93328b757507eed1cc9 = L.circleMarker(\\n\",\n       \"                [29.8181, 114.3036],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09dbd59dfdcf82ef4c28ce91cdcfb5c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a20c3898ee41619bdf436cd66335e36e = $(`&lt;div id=&quot;html_a20c3898ee41619bdf436cd66335e36e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3036             latitude:29.8181             pred_result:61.368621826171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09dbd59dfdcf82ef4c28ce91cdcfb5c3.setContent(html_a20c3898ee41619bdf436cd66335e36e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3fd95f12e47d93328b757507eed1cc9.bindPopup(popup_09dbd59dfdcf82ef4c28ce91cdcfb5c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5c3e8fa92915629980ec054137fd691 = L.circleMarker(\\n\",\n       \"                [29.8211, 114.3231],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_034db9dbc36e2a77ba810da4d199f4e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e48bf73ad89cd14a85bb41d1cdccad6a = $(`&lt;div id=&quot;html_e48bf73ad89cd14a85bb41d1cdccad6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3231             latitude:29.8211             pred_result:61.24750518798828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_034db9dbc36e2a77ba810da4d199f4e2.setContent(html_e48bf73ad89cd14a85bb41d1cdccad6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5c3e8fa92915629980ec054137fd691.bindPopup(popup_034db9dbc36e2a77ba810da4d199f4e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d6ed375442b8c895dbde6fd21c0bad7 = L.circleMarker(\\n\",\n       \"                [29.8539, 114.2894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5132d4277dbe85ffa0b37f195486679e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d14b2c0438ef0779846391a1f5dceec = $(`&lt;div id=&quot;html_7d14b2c0438ef0779846391a1f5dceec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2894             latitude:29.8539             pred_result:62.761924743652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5132d4277dbe85ffa0b37f195486679e.setContent(html_7d14b2c0438ef0779846391a1f5dceec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d6ed375442b8c895dbde6fd21c0bad7.bindPopup(popup_5132d4277dbe85ffa0b37f195486679e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d956e4f8ae79f8ee00b27a6e3b1cadc9 = L.circleMarker(\\n\",\n       \"                [29.8686, 114.3372],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c4dba287f35e26dd37446dc7a1c750d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1eda043db2c2dc1492f84f3bb7f6055 = $(`&lt;div id=&quot;html_c1eda043db2c2dc1492f84f3bb7f6055&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3372             latitude:29.8686             pred_result:63.03382110595703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c4dba287f35e26dd37446dc7a1c750d.setContent(html_c1eda043db2c2dc1492f84f3bb7f6055);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d956e4f8ae79f8ee00b27a6e3b1cadc9.bindPopup(popup_0c4dba287f35e26dd37446dc7a1c750d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_284414f27a649f7fbc0b6e6eb89e54fe = L.circleMarker(\\n\",\n       \"                [31.7275, 113.3583],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_922e71bf8bee7463bb58608cbd503c00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_34f6f4f14e1f51395f01219a03d28545 = $(`&lt;div id=&quot;html_34f6f4f14e1f51395f01219a03d28545&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3583             latitude:31.7275             pred_result:51.91020584106445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_922e71bf8bee7463bb58608cbd503c00.setContent(html_34f6f4f14e1f51395f01219a03d28545);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_284414f27a649f7fbc0b6e6eb89e54fe.bindPopup(popup_922e71bf8bee7463bb58608cbd503c00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_299eea222567ff07e94ae2a0c4232c99 = L.circleMarker(\\n\",\n       \"                [31.6908, 113.3833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17d65dddc16b48fb78af466d088e11fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb8d9ca2fec2413676ea409794fef9be = $(`&lt;div id=&quot;html_eb8d9ca2fec2413676ea409794fef9be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3833             latitude:31.6908             pred_result:51.204368591308594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17d65dddc16b48fb78af466d088e11fd.setContent(html_eb8d9ca2fec2413676ea409794fef9be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_299eea222567ff07e94ae2a0c4232c99.bindPopup(popup_17d65dddc16b48fb78af466d088e11fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d30835e8daab20e3aee19b168cf7b28b = L.circleMarker(\\n\",\n       \"                [31.7308, 113.3983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9cffda56c3157eac0736dfa0251f9771 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_525f4c911c912d5a6cea54e9956b5aae = $(`&lt;div id=&quot;html_525f4c911c912d5a6cea54e9956b5aae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3983             latitude:31.7308             pred_result:51.49828338623047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9cffda56c3157eac0736dfa0251f9771.setContent(html_525f4c911c912d5a6cea54e9956b5aae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d30835e8daab20e3aee19b168cf7b28b.bindPopup(popup_9cffda56c3157eac0736dfa0251f9771)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3fdce5513c9adfa69ee50064b9bd454d = L.circleMarker(\\n\",\n       \"                [30.2989, 109.5039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b23de65d37a1de04c3bd2806cef7bfa7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_174fb7d57a2b95e4a5029bfb1c8c97f8 = $(`&lt;div id=&quot;html_174fb7d57a2b95e4a5029bfb1c8c97f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5039             latitude:30.2989             pred_result:46.219024658203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b23de65d37a1de04c3bd2806cef7bfa7.setContent(html_174fb7d57a2b95e4a5029bfb1c8c97f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3fdce5513c9adfa69ee50064b9bd454d.bindPopup(popup_b23de65d37a1de04c3bd2806cef7bfa7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bdf1f9a8000e605a7067b4a017ebdc85 = L.circleMarker(\\n\",\n       \"                [30.2819, 109.4689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2bd80787a8a4a5c7d7806e8129ce26d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c08c746000c62615733bb5dbc298fa4 = $(`&lt;div id=&quot;html_0c08c746000c62615733bb5dbc298fa4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4689             latitude:30.2819             pred_result:46.619014739990234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2bd80787a8a4a5c7d7806e8129ce26d.setContent(html_0c08c746000c62615733bb5dbc298fa4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bdf1f9a8000e605a7067b4a017ebdc85.bindPopup(popup_c2bd80787a8a4a5c7d7806e8129ce26d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbfc6aaa8ca5f1e76539d875c9d799e0 = L.circleMarker(\\n\",\n       \"                [26.9089, 112.5328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a051bed9e0cec85d520e14e6d8e238ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_895ec59dac7435ed1fa0ea977ddd517c = $(`&lt;div id=&quot;html_895ec59dac7435ed1fa0ea977ddd517c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5328             latitude:26.9089             pred_result:52.38011169433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a051bed9e0cec85d520e14e6d8e238ba.setContent(html_895ec59dac7435ed1fa0ea977ddd517c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbfc6aaa8ca5f1e76539d875c9d799e0.bindPopup(popup_a051bed9e0cec85d520e14e6d8e238ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc740227983224e84eb0561208b3e2fc = L.circleMarker(\\n\",\n       \"                [26.9258, 112.6194],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f604f1d90ef501680411d2069d8d40ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_16f928d555644e0e32da4bc6ba940fc9 = $(`&lt;div id=&quot;html_16f928d555644e0e32da4bc6ba940fc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6194             latitude:26.9258             pred_result:52.70697784423828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f604f1d90ef501680411d2069d8d40ca.setContent(html_16f928d555644e0e32da4bc6ba940fc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc740227983224e84eb0561208b3e2fc.bindPopup(popup_f604f1d90ef501680411d2069d8d40ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7119e1155bd16d8dea7fad7ec5f788f7 = L.circleMarker(\\n\",\n       \"                [26.8956, 112.6211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0328aad2941318ac61f12cecd9a9c16 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb298b187bec9044a6883610af43c47b = $(`&lt;div id=&quot;html_eb298b187bec9044a6883610af43c47b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6211             latitude:26.8956             pred_result:52.60023880004883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0328aad2941318ac61f12cecd9a9c16.setContent(html_eb298b187bec9044a6883610af43c47b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7119e1155bd16d8dea7fad7ec5f788f7.bindPopup(popup_c0328aad2941318ac61f12cecd9a9c16)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28b7263a0290f07cf1dfbe472c37fdf6 = L.circleMarker(\\n\",\n       \"                [26.8733, 112.6197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9873dcd29b98186a8bc7b797f08ecfd4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb0eee967233e517cf1ba788a3f9929d = $(`&lt;div id=&quot;html_eb0eee967233e517cf1ba788a3f9929d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6197             latitude:26.8733             pred_result:52.44907760620117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9873dcd29b98186a8bc7b797f08ecfd4.setContent(html_eb0eee967233e517cf1ba788a3f9929d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28b7263a0290f07cf1dfbe472c37fdf6.bindPopup(popup_9873dcd29b98186a8bc7b797f08ecfd4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d39f5fe5fd0b83412c2c8f6e9f08ccc = L.circleMarker(\\n\",\n       \"                [26.8919, 112.6006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f69083ff36eec1ccd6a73aaa3675c36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f151dc3cd4a4a5fb02bc7c276cd3bcc = $(`&lt;div id=&quot;html_9f151dc3cd4a4a5fb02bc7c276cd3bcc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6006             latitude:26.8919             pred_result:52.49860382080078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f69083ff36eec1ccd6a73aaa3675c36.setContent(html_9f151dc3cd4a4a5fb02bc7c276cd3bcc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d39f5fe5fd0b83412c2c8f6e9f08ccc.bindPopup(popup_1f69083ff36eec1ccd6a73aaa3675c36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd3ea310a680e7cf5617f1bd5e4355e8 = L.circleMarker(\\n\",\n       \"                [26.9056, 112.5664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b394f5a3b8c798cb458b97b55e333a22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c650203c276ab5d1601176e291fb6ec = $(`&lt;div id=&quot;html_7c650203c276ab5d1601176e291fb6ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5664             latitude:26.9056             pred_result:52.48276901245117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b394f5a3b8c798cb458b97b55e333a22.setContent(html_7c650203c276ab5d1601176e291fb6ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd3ea310a680e7cf5617f1bd5e4355e8.bindPopup(popup_b394f5a3b8c798cb458b97b55e333a22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4766893459ce86b849282dc1bb8dc714 = L.circleMarker(\\n\",\n       \"                [27.3033, 111.5239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ae9ab56f71f16e45f629263e5b0ea46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_181daef406b0b3b1c5022786d4e26e92 = $(`&lt;div id=&quot;html_181daef406b0b3b1c5022786d4e26e92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5239             latitude:27.3033             pred_result:47.94424819946289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ae9ab56f71f16e45f629263e5b0ea46.setContent(html_181daef406b0b3b1c5022786d4e26e92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4766893459ce86b849282dc1bb8dc714.bindPopup(popup_4ae9ab56f71f16e45f629263e5b0ea46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c764617c326034a3b91253846a88301 = L.circleMarker(\\n\",\n       \"                [27.2317, 111.4733],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4284f57d17e0b7ecedb66c0f8eeb2f22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c37750c287e665b13caf8815846d0a64 = $(`&lt;div id=&quot;html_c37750c287e665b13caf8815846d0a64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4733             latitude:27.2317             pred_result:47.311607360839844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4284f57d17e0b7ecedb66c0f8eeb2f22.setContent(html_c37750c287e665b13caf8815846d0a64);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c764617c326034a3b91253846a88301.bindPopup(popup_4284f57d17e0b7ecedb66c0f8eeb2f22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e924efde2d70fcc91afbd222ec343223 = L.circleMarker(\\n\",\n       \"                [27.2582, 111.4908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f36c730d647f63e41c4e17e8b357efd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe3515238ce50e0907f308942b1b083b = $(`&lt;div id=&quot;html_fe3515238ce50e0907f308942b1b083b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4908             latitude:27.2582             pred_result:47.43016815185547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f36c730d647f63e41c4e17e8b357efd.setContent(html_fe3515238ce50e0907f308942b1b083b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e924efde2d70fcc91afbd222ec343223.bindPopup(popup_4f36c730d647f63e41c4e17e8b357efd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39c49ef636420fa6edef7fa0e159dfa8 = L.circleMarker(\\n\",\n       \"                [27.2537, 111.4503],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4eb06e74710b617456ea86137b50b29 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52e032aeb465d9128550051f1a87894c = $(`&lt;div id=&quot;html_52e032aeb465d9128550051f1a87894c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4503             latitude:27.2537             pred_result:47.23760223388672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4eb06e74710b617456ea86137b50b29.setContent(html_52e032aeb465d9128550051f1a87894c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39c49ef636420fa6edef7fa0e159dfa8.bindPopup(popup_c4eb06e74710b617456ea86137b50b29)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5c2ee66d64541e19c18ce94780152ad = L.circleMarker(\\n\",\n       \"                [27.2272, 111.4328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60a85d829d87b2e7001fd38110d05363 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_87bd9b96e0b328adfb3df71b5dc879a6 = $(`&lt;div id=&quot;html_87bd9b96e0b328adfb3df71b5dc879a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4328             latitude:27.2272             pred_result:46.75010681152344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60a85d829d87b2e7001fd38110d05363.setContent(html_87bd9b96e0b328adfb3df71b5dc879a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5c2ee66d64541e19c18ce94780152ad.bindPopup(popup_60a85d829d87b2e7001fd38110d05363)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd2277c8d0ac032e9b292aaae66ad3c2 = L.circleMarker(\\n\",\n       \"                [28.6428, 112.4067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66ca861045288f9060d157d88ef22513 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_206bbe233ca7ac44d0304324ebca67a9 = $(`&lt;div id=&quot;html_206bbe233ca7ac44d0304324ebca67a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4067             latitude:28.6428             pred_result:57.42855453491211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66ca861045288f9060d157d88ef22513.setContent(html_206bbe233ca7ac44d0304324ebca67a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd2277c8d0ac032e9b292aaae66ad3c2.bindPopup(popup_66ca861045288f9060d157d88ef22513)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb7201225f08451f3a0f9ebc565330d2 = L.circleMarker(\\n\",\n       \"                [28.5808, 112.3458],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61c51f44297077fe38936ddd2b52904d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ea6e9b47e8c60b56e6b8f3a6c55d6b4 = $(`&lt;div id=&quot;html_2ea6e9b47e8c60b56e6b8f3a6c55d6b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3458             latitude:28.5808             pred_result:56.60768508911133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61c51f44297077fe38936ddd2b52904d.setContent(html_2ea6e9b47e8c60b56e6b8f3a6c55d6b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb7201225f08451f3a0f9ebc565330d2.bindPopup(popup_61c51f44297077fe38936ddd2b52904d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_488523ca5e0439b58aaab26bf68bcbf9 = L.circleMarker(\\n\",\n       \"                [28.56, 112.3439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1e3d5556e5c2b581d0da7aa0ac8916c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a64c404653121d9ad6d3940d7b40835 = $(`&lt;div id=&quot;html_4a64c404653121d9ad6d3940d7b40835&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3439             latitude:28.56             pred_result:56.53652572631836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1e3d5556e5c2b581d0da7aa0ac8916c.setContent(html_4a64c404653121d9ad6d3940d7b40835);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_488523ca5e0439b58aaab26bf68bcbf9.bindPopup(popup_d1e3d5556e5c2b581d0da7aa0ac8916c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7614bf97fd9ef2ad27a9bb1ef3c6eca3 = L.circleMarker(\\n\",\n       \"                [28.6047, 112.3347],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac7cdfda7d8e1d44caa29f9bf0ad9963 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5baa243678ce9010d737915244ab0d91 = $(`&lt;div id=&quot;html_5baa243678ce9010d737915244ab0d91&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3347             latitude:28.6047             pred_result:56.913848876953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac7cdfda7d8e1d44caa29f9bf0ad9963.setContent(html_5baa243678ce9010d737915244ab0d91);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7614bf97fd9ef2ad27a9bb1ef3c6eca3.bindPopup(popup_ac7cdfda7d8e1d44caa29f9bf0ad9963)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5a3181d2710bc2870ced2e60d19546c = L.circleMarker(\\n\",\n       \"                [28.5819, 112.3744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17de063648dfcc6909c33fb5875b565f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ed2b6faec2236e9af8a86d6be34f456 = $(`&lt;div id=&quot;html_3ed2b6faec2236e9af8a86d6be34f456&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3744             latitude:28.5819             pred_result:56.593353271484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17de063648dfcc6909c33fb5875b565f.setContent(html_3ed2b6faec2236e9af8a86d6be34f456);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5a3181d2710bc2870ced2e60d19546c.bindPopup(popup_17de063648dfcc6909c33fb5875b565f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b8f671fc1bd99f52e0aab51aad07b222 = L.circleMarker(\\n\",\n       \"                [25.9061, 113.0073],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50aa72e3a6d368fc6bcc3f3f3082bf53 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e26fffd9a3bb96221bf4f38af6769fa = $(`&lt;div id=&quot;html_9e26fffd9a3bb96221bf4f38af6769fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0073             latitude:25.9061             pred_result:47.476478576660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50aa72e3a6d368fc6bcc3f3f3082bf53.setContent(html_9e26fffd9a3bb96221bf4f38af6769fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b8f671fc1bd99f52e0aab51aad07b222.bindPopup(popup_50aa72e3a6d368fc6bcc3f3f3082bf53)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c5af169ed91a4478abbf78a151e639d = L.circleMarker(\\n\",\n       \"                [25.8226, 113.0116],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92f2777528ff336775401ec21de9bc6f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c72e56e1f1e9b20fd62078e3541cdf6 = $(`&lt;div id=&quot;html_3c72e56e1f1e9b20fd62078e3541cdf6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0116             latitude:25.8226             pred_result:47.48875427246094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92f2777528ff336775401ec21de9bc6f.setContent(html_3c72e56e1f1e9b20fd62078e3541cdf6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c5af169ed91a4478abbf78a151e639d.bindPopup(popup_92f2777528ff336775401ec21de9bc6f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0725394777e16d133acf91e1ad98db0 = L.circleMarker(\\n\",\n       \"                [25.8179, 113.0119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f826a30d6b81c5f960d9b1489a184693 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70768011e948502bc4bab76c31f479b8 = $(`&lt;div id=&quot;html_70768011e948502bc4bab76c31f479b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0119             latitude:25.8179             pred_result:47.767520904541016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f826a30d6b81c5f960d9b1489a184693.setContent(html_70768011e948502bc4bab76c31f479b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0725394777e16d133acf91e1ad98db0.bindPopup(popup_f826a30d6b81c5f960d9b1489a184693)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ba4090e548a0a09e70f6d7b9c1edd98 = L.circleMarker(\\n\",\n       \"                [25.8071, 113.0383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69ef038011080ecc19d24d7eeba859e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85c60657955ccc516698d3f06c7c5b32 = $(`&lt;div id=&quot;html_85c60657955ccc516698d3f06c7c5b32&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0383             latitude:25.8071             pred_result:46.91786575317383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69ef038011080ecc19d24d7eeba859e7.setContent(html_85c60657955ccc516698d3f06c7c5b32);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ba4090e548a0a09e70f6d7b9c1edd98.bindPopup(popup_69ef038011080ecc19d24d7eeba859e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1af659bcbfd4a497a06fb9ad4daf0c27 = L.circleMarker(\\n\",\n       \"                [25.7759, 113.0348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5dd23d449d6d62a94845e195f2f01d9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4cf2c764532e8d6349cb618e45b3c7cf = $(`&lt;div id=&quot;html_4cf2c764532e8d6349cb618e45b3c7cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0348             latitude:25.7759             pred_result:47.13731384277344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5dd23d449d6d62a94845e195f2f01d9d.setContent(html_4cf2c764532e8d6349cb618e45b3c7cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1af659bcbfd4a497a06fb9ad4daf0c27.bindPopup(popup_5dd23d449d6d62a94845e195f2f01d9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e5596e17e3aafcea23e8ef307d83cdc = L.circleMarker(\\n\",\n       \"                [26.2081, 111.6217],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_495c49fda50c1889a7e7325095d0744e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_844256b048287ba7fc8bf8f0c15979f5 = $(`&lt;div id=&quot;html_844256b048287ba7fc8bf8f0c15979f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6217             latitude:26.2081             pred_result:46.307613372802734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_495c49fda50c1889a7e7325095d0744e.setContent(html_844256b048287ba7fc8bf8f0c15979f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e5596e17e3aafcea23e8ef307d83cdc.bindPopup(popup_495c49fda50c1889a7e7325095d0744e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63a9355191ba463fde8776e1a67cdca7 = L.circleMarker(\\n\",\n       \"                [26.4214, 111.6156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f57f46354786014b8328e1df125a586a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed4c79e35675b358194383d5f31a47f9 = $(`&lt;div id=&quot;html_ed4c79e35675b358194383d5f31a47f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6156             latitude:26.4214             pred_result:46.74116897583008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f57f46354786014b8328e1df125a586a.setContent(html_ed4c79e35675b358194383d5f31a47f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63a9355191ba463fde8776e1a67cdca7.bindPopup(popup_f57f46354786014b8328e1df125a586a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fba47e9cf7c19c552fade7cd66798d8e = L.circleMarker(\\n\",\n       \"                [26.2331, 111.6236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1bd3eb5e4298fd15d86ed92105519cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e94cd10566d27e2cf91b27b4305a6632 = $(`&lt;div id=&quot;html_e94cd10566d27e2cf91b27b4305a6632&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6236             latitude:26.2331             pred_result:46.37599182128906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1bd3eb5e4298fd15d86ed92105519cd.setContent(html_e94cd10566d27e2cf91b27b4305a6632);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fba47e9cf7c19c552fade7cd66798d8e.bindPopup(popup_f1bd3eb5e4298fd15d86ed92105519cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_218caeec10b43dba9293f92f003b972a = L.circleMarker(\\n\",\n       \"                [26.4364, 111.5992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cab65a8ba882f64592a607266aafe440 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fed60e67ac0a8eec74b71ecf3991e0cb = $(`&lt;div id=&quot;html_fed60e67ac0a8eec74b71ecf3991e0cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5992             latitude:26.4364             pred_result:46.72715759277344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cab65a8ba882f64592a607266aafe440.setContent(html_fed60e67ac0a8eec74b71ecf3991e0cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_218caeec10b43dba9293f92f003b972a.bindPopup(popup_cab65a8ba882f64592a607266aafe440)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5973f95a78cbf00463434cdd18a4b7a8 = L.circleMarker(\\n\",\n       \"                [26.4519, 111.5989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94878323ae6495a95a5afae22a6b3865 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae02291b80002a694c3294021f3bf3ff = $(`&lt;div id=&quot;html_ae02291b80002a694c3294021f3bf3ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5989             latitude:26.4519             pred_result:46.816001892089844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94878323ae6495a95a5afae22a6b3865.setContent(html_ae02291b80002a694c3294021f3bf3ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5973f95a78cbf00463434cdd18a4b7a8.bindPopup(popup_94878323ae6495a95a5afae22a6b3865)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8549b231fa91f3920138ff29321cb4ac = L.circleMarker(\\n\",\n       \"                [27.5733, 109.9333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71c6f9cd1e0090ab9eeb0818fe8ec9b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65ede1670cb417053e5570fac6a02e09 = $(`&lt;div id=&quot;html_65ede1670cb417053e5570fac6a02e09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9333             latitude:27.5733             pred_result:49.72150802612305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71c6f9cd1e0090ab9eeb0818fe8ec9b1.setContent(html_65ede1670cb417053e5570fac6a02e09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8549b231fa91f3920138ff29321cb4ac.bindPopup(popup_71c6f9cd1e0090ab9eeb0818fe8ec9b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1650eadd17fb58b7eedc116430ef0aaa = L.circleMarker(\\n\",\n       \"                [27.5444, 109.9453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_920d59fe52a7734d84c7123f3e2383dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f1c643f115e670bfa652bd7451cde7d = $(`&lt;div id=&quot;html_2f1c643f115e670bfa652bd7451cde7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9453             latitude:27.5444             pred_result:49.81903839111328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_920d59fe52a7734d84c7123f3e2383dc.setContent(html_2f1c643f115e670bfa652bd7451cde7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1650eadd17fb58b7eedc116430ef0aaa.bindPopup(popup_920d59fe52a7734d84c7123f3e2383dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ce91e8fb3389785bc554925e6cefe3b = L.circleMarker(\\n\",\n       \"                [27.5342, 109.9792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_107e0078d22c1f9b30cf32d632138dbe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e621f1973a6678285d8220219a460e46 = $(`&lt;div id=&quot;html_e621f1973a6678285d8220219a460e46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9792             latitude:27.5342             pred_result:49.184349060058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_107e0078d22c1f9b30cf32d632138dbe.setContent(html_e621f1973a6678285d8220219a460e46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ce91e8fb3389785bc554925e6cefe3b.bindPopup(popup_107e0078d22c1f9b30cf32d632138dbe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c49131daca0c35b9e87c29d5c25f384b = L.circleMarker(\\n\",\n       \"                [27.5578, 109.9972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fded32911cfd46b28a9f587d41ee0ee9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93afd6805f12d68b43a44583433cae5d = $(`&lt;div id=&quot;html_93afd6805f12d68b43a44583433cae5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9972             latitude:27.5578             pred_result:49.30271911621094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fded32911cfd46b28a9f587d41ee0ee9.setContent(html_93afd6805f12d68b43a44583433cae5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c49131daca0c35b9e87c29d5c25f384b.bindPopup(popup_fded32911cfd46b28a9f587d41ee0ee9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26cbbf9a7dcc760eccfa36cfe0d30764 = L.circleMarker(\\n\",\n       \"                [27.583, 110.0394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16f7a90953f6e7f00545693d355abd3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d495256948957687d022c85404bf14eb = $(`&lt;div id=&quot;html_d495256948957687d022c85404bf14eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0394             latitude:27.583             pred_result:49.185245513916016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16f7a90953f6e7f00545693d355abd3a.setContent(html_d495256948957687d022c85404bf14eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26cbbf9a7dcc760eccfa36cfe0d30764.bindPopup(popup_16f7a90953f6e7f00545693d355abd3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64a7cab5b704cd011ee90e65c1236b37 = L.circleMarker(\\n\",\n       \"                [27.725, 111.9975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d481d9c6923887b58b26f3c1834f22c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9fc2945a4531dbbeb86c7a8920a4527f = $(`&lt;div id=&quot;html_9fc2945a4531dbbeb86c7a8920a4527f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9975             latitude:27.725             pred_result:51.05897521972656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d481d9c6923887b58b26f3c1834f22c.setContent(html_9fc2945a4531dbbeb86c7a8920a4527f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64a7cab5b704cd011ee90e65c1236b37.bindPopup(popup_7d481d9c6923887b58b26f3c1834f22c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00c5d653c3c16f034f5e32b0e81e8222 = L.circleMarker(\\n\",\n       \"                [27.7314, 112.0194],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33d677808a32173df4b5f559c684060a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7d1a20fe0cf4ab0c4cb4f54b3c79566 = $(`&lt;div id=&quot;html_c7d1a20fe0cf4ab0c4cb4f54b3c79566&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0194             latitude:27.7314             pred_result:51.14968490600586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33d677808a32173df4b5f559c684060a.setContent(html_c7d1a20fe0cf4ab0c4cb4f54b3c79566);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00c5d653c3c16f034f5e32b0e81e8222.bindPopup(popup_33d677808a32173df4b5f559c684060a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5497d27cf2b78ce9783168f83b3a7704 = L.circleMarker(\\n\",\n       \"                [27.7569, 111.9561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_89588bcd40a29bf6ad1649ccb2f77285 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8066330e425804ef3a96dfd4ecc6d1f9 = $(`&lt;div id=&quot;html_8066330e425804ef3a96dfd4ecc6d1f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9561             latitude:27.7569             pred_result:51.10051727294922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_89588bcd40a29bf6ad1649ccb2f77285.setContent(html_8066330e425804ef3a96dfd4ecc6d1f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5497d27cf2b78ce9783168f83b3a7704.bindPopup(popup_89588bcd40a29bf6ad1649ccb2f77285)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73dbffd954b467e8d9745de4fb409d76 = L.circleMarker(\\n\",\n       \"                [27.7044, 111.9892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21cfd1c9c8faa1d1f22bfa79b581fabc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_149dfdc76d5fb0d2082f834b955fd302 = $(`&lt;div id=&quot;html_149dfdc76d5fb0d2082f834b955fd302&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9892             latitude:27.7044             pred_result:51.16328048706055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21cfd1c9c8faa1d1f22bfa79b581fabc.setContent(html_149dfdc76d5fb0d2082f834b955fd302);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73dbffd954b467e8d9745de4fb409d76.bindPopup(popup_21cfd1c9c8faa1d1f22bfa79b581fabc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1220787d3b10537f0ca5c3bfc669164 = L.circleMarker(\\n\",\n       \"                [28.2558, 109.6414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08f921e7ef2b107c7bc746e1963b1e5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c235004d0180621e4e3ee8acb983392b = $(`&lt;div id=&quot;html_c235004d0180621e4e3ee8acb983392b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6414             latitude:28.2558             pred_result:53.000728607177734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08f921e7ef2b107c7bc746e1963b1e5c.setContent(html_c235004d0180621e4e3ee8acb983392b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1220787d3b10537f0ca5c3bfc669164.bindPopup(popup_08f921e7ef2b107c7bc746e1963b1e5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_447fd0f8bb0bd8be418c870aceab6b16 = L.circleMarker(\\n\",\n       \"                [28.3169, 109.7325],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7450e1ce6acca505525709b88f0335e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b0dabc78c0d22993cfda153d0e8b8ee = $(`&lt;div id=&quot;html_3b0dabc78c0d22993cfda153d0e8b8ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7325             latitude:28.3169             pred_result:54.33955764770508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7450e1ce6acca505525709b88f0335e7.setContent(html_3b0dabc78c0d22993cfda153d0e8b8ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_447fd0f8bb0bd8be418c870aceab6b16.bindPopup(popup_7450e1ce6acca505525709b88f0335e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7e4bae6dff6469c4df5018bca0b966b = L.circleMarker(\\n\",\n       \"                [28.2675, 109.6958],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1db8aa31398fe69f93f2de261293a3f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_130e5ed527e2b8b89ed96326f75c043a = $(`&lt;div id=&quot;html_130e5ed527e2b8b89ed96326f75c043a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6958             latitude:28.2675             pred_result:54.177703857421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1db8aa31398fe69f93f2de261293a3f3.setContent(html_130e5ed527e2b8b89ed96326f75c043a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7e4bae6dff6469c4df5018bca0b966b.bindPopup(popup_1db8aa31398fe69f93f2de261293a3f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_921430aef0374813cb9b03f9ad8fa3ba = L.circleMarker(\\n\",\n       \"                [23.4792, 111.2897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5b569d565b3d78e3a5ac87730a1cc30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb81c7ee798f5b4d6680941c98d87606 = $(`&lt;div id=&quot;html_bb81c7ee798f5b4d6680941c98d87606&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2897             latitude:23.4792             pred_result:38.1823844909668             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5b569d565b3d78e3a5ac87730a1cc30.setContent(html_bb81c7ee798f5b4d6680941c98d87606);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_921430aef0374813cb9b03f9ad8fa3ba.bindPopup(popup_f5b569d565b3d78e3a5ac87730a1cc30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee3a21328eeacb1f25380e0c4968ef22 = L.circleMarker(\\n\",\n       \"                [23.475, 111.3178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee21a8b60097a573f13cfb18d86e57c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2efabed0b5b15ffa223bcf6daf0a156e = $(`&lt;div id=&quot;html_2efabed0b5b15ffa223bcf6daf0a156e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3178             latitude:23.475             pred_result:37.74473571777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee21a8b60097a573f13cfb18d86e57c4.setContent(html_2efabed0b5b15ffa223bcf6daf0a156e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee3a21328eeacb1f25380e0c4968ef22.bindPopup(popup_ee21a8b60097a573f13cfb18d86e57c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd76bd06c7fa3060fd72cf318627b433 = L.circleMarker(\\n\",\n       \"                [23.415, 111.2353],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae7ae39baa1b3a3988e8908e8f0913b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_828d0f898111fb7168871a37827a5f9a = $(`&lt;div id=&quot;html_828d0f898111fb7168871a37827a5f9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2353             latitude:23.415             pred_result:37.73963165283203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae7ae39baa1b3a3988e8908e8f0913b3.setContent(html_828d0f898111fb7168871a37827a5f9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd76bd06c7fa3060fd72cf318627b433.bindPopup(popup_ae7ae39baa1b3a3988e8908e8f0913b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_063830b78ce6049cbe079b3ad5925331 = L.circleMarker(\\n\",\n       \"                [23.4794, 111.26],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f751675c16d3211daed93e2e14861782 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c12b75280dd5cc9121854ee748d5a857 = $(`&lt;div id=&quot;html_c12b75280dd5cc9121854ee748d5a857&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.26             latitude:23.4794             pred_result:38.060707092285156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f751675c16d3211daed93e2e14861782.setContent(html_c12b75280dd5cc9121854ee748d5a857);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_063830b78ce6049cbe079b3ad5925331.bindPopup(popup_f751675c16d3211daed93e2e14861782)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a341b320175521a66a70b0f9cdf15c2 = L.circleMarker(\\n\",\n       \"                [21.7631, 108.3511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28899ea919dde64afae7256830e4258f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_026ea2c7a592a3c292c8ccbabe780594 = $(`&lt;div id=&quot;html_026ea2c7a592a3c292c8ccbabe780594&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.3511             latitude:21.7631             pred_result:25.97262191772461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28899ea919dde64afae7256830e4258f.setContent(html_026ea2c7a592a3c292c8ccbabe780594);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a341b320175521a66a70b0f9cdf15c2.bindPopup(popup_28899ea919dde64afae7256830e4258f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6923481fb2bc04e9b7056aead012ca60 = L.circleMarker(\\n\",\n       \"                [21.9667, 108.6236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cae0191616f88925065732679fb2b4ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_964c93313fa40fd3ff1c8e76586eb945 = $(`&lt;div id=&quot;html_964c93313fa40fd3ff1c8e76586eb945&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6236             latitude:21.9667             pred_result:25.931652069091797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cae0191616f88925065732679fb2b4ba.setContent(html_964c93313fa40fd3ff1c8e76586eb945);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6923481fb2bc04e9b7056aead012ca60.bindPopup(popup_cae0191616f88925065732679fb2b4ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffe3e0eb95df4ba5c4d2b1011a96b6e4 = L.circleMarker(\\n\",\n       \"                [21.9508, 108.6553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc5b43e1d73bd2996f164eaf275fe1df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8eb260f6ea0634d0927cd973d751af6f = $(`&lt;div id=&quot;html_8eb260f6ea0634d0927cd973d751af6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6553             latitude:21.9508             pred_result:25.58318328857422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc5b43e1d73bd2996f164eaf275fe1df.setContent(html_8eb260f6ea0634d0927cd973d751af6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffe3e0eb95df4ba5c4d2b1011a96b6e4.bindPopup(popup_cc5b43e1d73bd2996f164eaf275fe1df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fe23d525ce5fc26f45e49fd0f904462 = L.circleMarker(\\n\",\n       \"                [23.1478, 109.5681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63aeb5c30e536e271edc8589744776b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df186a324a62acb20d75e15b699daf29 = $(`&lt;div id=&quot;html_df186a324a62acb20d75e15b699daf29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5681             latitude:23.1478             pred_result:31.578460693359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63aeb5c30e536e271edc8589744776b4.setContent(html_df186a324a62acb20d75e15b699daf29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fe23d525ce5fc26f45e49fd0f904462.bindPopup(popup_63aeb5c30e536e271edc8589744776b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0335a6b9ef7e51f43857cd0b0de73739 = L.circleMarker(\\n\",\n       \"                [23.0672, 109.6042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad0c4c6d7af2613db421c54759d10a23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbfde180e92ebc9ff2a4ec396f300e26 = $(`&lt;div id=&quot;html_dbfde180e92ebc9ff2a4ec396f300e26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6042             latitude:23.0672             pred_result:30.554542541503906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad0c4c6d7af2613db421c54759d10a23.setContent(html_dbfde180e92ebc9ff2a4ec396f300e26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0335a6b9ef7e51f43857cd0b0de73739.bindPopup(popup_ad0c4c6d7af2613db421c54759d10a23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de27391ffd7ed2d28febd19257bebb0e = L.circleMarker(\\n\",\n       \"                [23.0944, 109.6014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee77725346d14d0144c996b413d19405 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1bb8b44941b49c9d282681b9d5e60eab = $(`&lt;div id=&quot;html_1bb8b44941b49c9d282681b9d5e60eab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6014             latitude:23.0944             pred_result:30.68622398376465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee77725346d14d0144c996b413d19405.setContent(html_1bb8b44941b49c9d282681b9d5e60eab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de27391ffd7ed2d28febd19257bebb0e.bindPopup(popup_ee77725346d14d0144c996b413d19405)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fff577d6a1392ee7f898c70a220e69e = L.circleMarker(\\n\",\n       \"                [23.1036, 109.5683],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dda2dfc9ad6079fdbb40e1377cb2dd0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c01d9c9201c9732a5afe56c3926b412a = $(`&lt;div id=&quot;html_c01d9c9201c9732a5afe56c3926b412a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5683             latitude:23.1036             pred_result:33.07244873046875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dda2dfc9ad6079fdbb40e1377cb2dd0b.setContent(html_c01d9c9201c9732a5afe56c3926b412a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fff577d6a1392ee7f898c70a220e69e.bindPopup(popup_dda2dfc9ad6079fdbb40e1377cb2dd0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_115ff77f0ce8c00b2721ebb276cf52dd = L.circleMarker(\\n\",\n       \"                [22.7019, 110.1106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e026536c0e72a915443cee18f0917260 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dcd2e8e52112e75c2505d40df1203975 = $(`&lt;div id=&quot;html_dcd2e8e52112e75c2505d40df1203975&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1106             latitude:22.7019             pred_result:33.313873291015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e026536c0e72a915443cee18f0917260.setContent(html_dcd2e8e52112e75c2505d40df1203975);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_115ff77f0ce8c00b2721ebb276cf52dd.bindPopup(popup_e026536c0e72a915443cee18f0917260)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_010245fd5a586d5ea12f062e6664e967 = L.circleMarker(\\n\",\n       \"                [22.6411, 110.1675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_677e0206cdb326ae7c52f2f03051452b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1972b3bbe066bc9d18cda3910cb05fa = $(`&lt;div id=&quot;html_a1972b3bbe066bc9d18cda3910cb05fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1675             latitude:22.6411             pred_result:32.674076080322266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_677e0206cdb326ae7c52f2f03051452b.setContent(html_a1972b3bbe066bc9d18cda3910cb05fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_010245fd5a586d5ea12f062e6664e967.bindPopup(popup_677e0206cdb326ae7c52f2f03051452b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_201bb8937bc6561e5baa99859bc726b7 = L.circleMarker(\\n\",\n       \"                [22.6164, 110.1433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4da6cab02c68ce5781aa37a28d00bc1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_87381d68eb74b84cecdeeb4181ad706a = $(`&lt;div id=&quot;html_87381d68eb74b84cecdeeb4181ad706a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1433             latitude:22.6164             pred_result:32.42124557495117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4da6cab02c68ce5781aa37a28d00bc1.setContent(html_87381d68eb74b84cecdeeb4181ad706a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_201bb8937bc6561e5baa99859bc726b7.bindPopup(popup_e4da6cab02c68ce5781aa37a28d00bc1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_744206c9ba736e1327b2b2d996eb25fe = L.circleMarker(\\n\",\n       \"                [23.9011, 106.6103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54ec118fbb58ba3bbd382a1a18c3ca75 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14a5cb01f840b49195fba0a020b91d20 = $(`&lt;div id=&quot;html_14a5cb01f840b49195fba0a020b91d20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6103             latitude:23.9011             pred_result:33.23169708251953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54ec118fbb58ba3bbd382a1a18c3ca75.setContent(html_14a5cb01f840b49195fba0a020b91d20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_744206c9ba736e1327b2b2d996eb25fe.bindPopup(popup_54ec118fbb58ba3bbd382a1a18c3ca75)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_003a1dff00604064e8165bc7946b5bda = L.circleMarker(\\n\",\n       \"                [23.8844, 106.6527],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_64dfa19a9ebc5c9e4e98699adc96e6b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22c96e04b7d144f1eeeb424d5e07e7bb = $(`&lt;div id=&quot;html_22c96e04b7d144f1eeeb424d5e07e7bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6527             latitude:23.8844             pred_result:34.678016662597656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_64dfa19a9ebc5c9e4e98699adc96e6b3.setContent(html_22c96e04b7d144f1eeeb424d5e07e7bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_003a1dff00604064e8165bc7946b5bda.bindPopup(popup_64dfa19a9ebc5c9e4e98699adc96e6b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48690a09d4df6dbf27e22c0c4c66d21c = L.circleMarker(\\n\",\n       \"                [24.4175, 111.5269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51dbfa2f1fff30425715191fc3c0fecb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6ca95015814f905626599ef539f1e4d = $(`&lt;div id=&quot;html_b6ca95015814f905626599ef539f1e4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5269             latitude:24.4175             pred_result:40.57166290283203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51dbfa2f1fff30425715191fc3c0fecb.setContent(html_b6ca95015814f905626599ef539f1e4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48690a09d4df6dbf27e22c0c4c66d21c.bindPopup(popup_51dbfa2f1fff30425715191fc3c0fecb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f5173fbe54e674c457bfd5cb8438575 = L.circleMarker(\\n\",\n       \"                [24.4072, 111.5622],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09bb93c907ffe2c067f495eb20f6beb7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37a85ebf04dc1f951b4339fc13727279 = $(`&lt;div id=&quot;html_37a85ebf04dc1f951b4339fc13727279&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5622             latitude:24.4072             pred_result:40.148048400878906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09bb93c907ffe2c067f495eb20f6beb7.setContent(html_37a85ebf04dc1f951b4339fc13727279);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f5173fbe54e674c457bfd5cb8438575.bindPopup(popup_09bb93c907ffe2c067f495eb20f6beb7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2336cfa6eaab4b17ee5aadcf7349b05 = L.circleMarker(\\n\",\n       \"                [24.7121, 108.2134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_020f83b02573e7efd6956af02a5f67b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ce145de611eabfd26cd52eedc9336a2 = $(`&lt;div id=&quot;html_4ce145de611eabfd26cd52eedc9336a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.2134             latitude:24.7121             pred_result:34.552513122558594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_020f83b02573e7efd6956af02a5f67b7.setContent(html_4ce145de611eabfd26cd52eedc9336a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2336cfa6eaab4b17ee5aadcf7349b05.bindPopup(popup_020f83b02573e7efd6956af02a5f67b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5141b16314a2e631aaeb81e835fceac7 = L.circleMarker(\\n\",\n       \"                [24.6928, 108.054],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9851a858b2586354e122f9b56103d45a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00fb7bfb5e51b03dd692781466a88d6d = $(`&lt;div id=&quot;html_00fb7bfb5e51b03dd692781466a88d6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.054             latitude:24.6928             pred_result:35.64120101928711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9851a858b2586354e122f9b56103d45a.setContent(html_00fb7bfb5e51b03dd692781466a88d6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5141b16314a2e631aaeb81e835fceac7.bindPopup(popup_9851a858b2586354e122f9b56103d45a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ecfbee83c9ce1f93c10eb709f48336ed = L.circleMarker(\\n\",\n       \"                [24.6967, 108.1009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36a5f6b94376f859357a401061e0bb2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bde8872ddfc215bfc77a7310c56f91aa = $(`&lt;div id=&quot;html_bde8872ddfc215bfc77a7310c56f91aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.1009             latitude:24.6967             pred_result:35.181236267089844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36a5f6b94376f859357a401061e0bb2c.setContent(html_bde8872ddfc215bfc77a7310c56f91aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ecfbee83c9ce1f93c10eb709f48336ed.bindPopup(popup_36a5f6b94376f859357a401061e0bb2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57816dc5a37c652aeaaa424a614a6c32 = L.circleMarker(\\n\",\n       \"                [23.7208, 109.2131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2994e526dff61eb4108d9c026983b84b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8b14be623e96f9cf38c6a4e120c19c5 = $(`&lt;div id=&quot;html_e8b14be623e96f9cf38c6a4e120c19c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2131             latitude:23.7208             pred_result:31.506816864013672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2994e526dff61eb4108d9c026983b84b.setContent(html_e8b14be623e96f9cf38c6a4e120c19c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57816dc5a37c652aeaaa424a614a6c32.bindPopup(popup_2994e526dff61eb4108d9c026983b84b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6865730484c1e0b79316e86fcb9d259 = L.circleMarker(\\n\",\n       \"                [23.7369, 109.2317],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bdf6255edd8b3ea6e6c00e2dcdd0325 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f3ce606fe30dcb1b74aa2463bb0a701 = $(`&lt;div id=&quot;html_4f3ce606fe30dcb1b74aa2463bb0a701&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2317             latitude:23.7369             pred_result:31.616031646728516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bdf6255edd8b3ea6e6c00e2dcdd0325.setContent(html_4f3ce606fe30dcb1b74aa2463bb0a701);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6865730484c1e0b79316e86fcb9d259.bindPopup(popup_8bdf6255edd8b3ea6e6c00e2dcdd0325)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17bd3c59d9f2efdbf9589f0203d61f3f = L.circleMarker(\\n\",\n       \"                [22.4137, 107.3476],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5153c52ac73e290db92c04268a15f40f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_665d00dd08bb063a8bd3451bbcf77575 = $(`&lt;div id=&quot;html_665d00dd08bb063a8bd3451bbcf77575&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3476             latitude:22.4137             pred_result:27.092987060546875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5153c52ac73e290db92c04268a15f40f.setContent(html_665d00dd08bb063a8bd3451bbcf77575);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17bd3c59d9f2efdbf9589f0203d61f3f.bindPopup(popup_5153c52ac73e290db92c04268a15f40f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6ccec2939a0a6078f689c3cac50f5e2 = L.circleMarker(\\n\",\n       \"                [22.3708, 107.3701],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18feba5815150d395dfa35f7f465b04a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2be520cdf49bb9f1c8fc89a7a6ed7e2 = $(`&lt;div id=&quot;html_f2be520cdf49bb9f1c8fc89a7a6ed7e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3701             latitude:22.3708             pred_result:26.940519332885742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18feba5815150d395dfa35f7f465b04a.setContent(html_f2be520cdf49bb9f1c8fc89a7a6ed7e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6ccec2939a0a6078f689c3cac50f5e2.bindPopup(popup_18feba5815150d395dfa35f7f465b04a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a419427d2719fbcccf1f348e0b3a16d0 = L.circleMarker(\\n\",\n       \"                [32.4535, 105.8945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90f18d38d4fadfcc78618a964527d34d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c145980581b9177f8b0ebe060d4e31c4 = $(`&lt;div id=&quot;html_c145980581b9177f8b0ebe060d4e31c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8945             latitude:32.4535             pred_result:46.99038314819336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90f18d38d4fadfcc78618a964527d34d.setContent(html_c145980581b9177f8b0ebe060d4e31c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a419427d2719fbcccf1f348e0b3a16d0.bindPopup(popup_90f18d38d4fadfcc78618a964527d34d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_020bc8eb1cec9b6c415f3382c80e3e2c = L.circleMarker(\\n\",\n       \"                [32.4429, 105.8242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f029b86f8ecf377369d21ad91a7d7b95 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c937f08616cb169617f4b0cb9afab1c1 = $(`&lt;div id=&quot;html_c937f08616cb169617f4b0cb9afab1c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8242             latitude:32.4429             pred_result:47.75794219970703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f029b86f8ecf377369d21ad91a7d7b95.setContent(html_c937f08616cb169617f4b0cb9afab1c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_020bc8eb1cec9b6c415f3382c80e3e2c.bindPopup(popup_f029b86f8ecf377369d21ad91a7d7b95)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5adcf4774feb9c2742fe951f0a7bce36 = L.circleMarker(\\n\",\n       \"                [32.4246, 105.8153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00adbb352d2acbe25aeb93000f8ed704 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae2c204a77ee5e3fee2078aad8f06c15 = $(`&lt;div id=&quot;html_ae2c204a77ee5e3fee2078aad8f06c15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8153             latitude:32.4246             pred_result:47.99485778808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00adbb352d2acbe25aeb93000f8ed704.setContent(html_ae2c204a77ee5e3fee2078aad8f06c15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5adcf4774feb9c2742fe951f0a7bce36.bindPopup(popup_00adbb352d2acbe25aeb93000f8ed704)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dec1c9949f2d5648c733f24e04dfb848 = L.circleMarker(\\n\",\n       \"                [32.4285, 105.8624],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_297b49c8bcec74ffbe5bb22c6d574eb4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02f8ec57eef9caafe980f2981b46a77f = $(`&lt;div id=&quot;html_02f8ec57eef9caafe980f2981b46a77f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8624             latitude:32.4285             pred_result:47.342445373535156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_297b49c8bcec74ffbe5bb22c6d574eb4.setContent(html_02f8ec57eef9caafe980f2981b46a77f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dec1c9949f2d5648c733f24e04dfb848.bindPopup(popup_297b49c8bcec74ffbe5bb22c6d574eb4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc8cea9846634e51859ea63041d3879f = L.circleMarker(\\n\",\n       \"                [30.5797, 105.7519],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f05643d9d15131255739b25a5dd778b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_616562759b17b6b8709201daa5ea13cf = $(`&lt;div id=&quot;html_616562759b17b6b8709201daa5ea13cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.7519             latitude:30.5797             pred_result:47.9548454284668             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f05643d9d15131255739b25a5dd778b.setContent(html_616562759b17b6b8709201daa5ea13cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc8cea9846634e51859ea63041d3879f.bindPopup(popup_2f05643d9d15131255739b25a5dd778b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94aed55690b425afabde4f88ce038cc4 = L.circleMarker(\\n\",\n       \"                [30.6133, 105.68],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d1ffed5721baf81305e5d0145f806e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6090fea094aca01d459274702736280f = $(`&lt;div id=&quot;html_6090fea094aca01d459274702736280f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.68             latitude:30.6133             pred_result:49.13652420043945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d1ffed5721baf81305e5d0145f806e5.setContent(html_6090fea094aca01d459274702736280f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94aed55690b425afabde4f88ce038cc4.bindPopup(popup_9d1ffed5721baf81305e5d0145f806e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d477e6f59898aa2065aeb1f66d7911d = L.circleMarker(\\n\",\n       \"                [30.6347, 105.8161],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c48cda0d20807557ddcb19b9324d1b84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42091640066fbe9d247415b7127c16f7 = $(`&lt;div id=&quot;html_42091640066fbe9d247415b7127c16f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8161             latitude:30.6347             pred_result:47.557373046875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c48cda0d20807557ddcb19b9324d1b84.setContent(html_42091640066fbe9d247415b7127c16f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d477e6f59898aa2065aeb1f66d7911d.bindPopup(popup_c48cda0d20807557ddcb19b9324d1b84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4fb7978b923c28161226bb25b54d73d = L.circleMarker(\\n\",\n       \"                [30.475, 105.5956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c41dca2fddd470e032a4ed8ceee03e72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_defeded4481bcbae45e9aa34ae91b753 = $(`&lt;div id=&quot;html_defeded4481bcbae45e9aa34ae91b753&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.5956             latitude:30.475             pred_result:49.23600387573242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c41dca2fddd470e032a4ed8ceee03e72.setContent(html_defeded4481bcbae45e9aa34ae91b753);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4fb7978b923c28161226bb25b54d73d.bindPopup(popup_c41dca2fddd470e032a4ed8ceee03e72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_faf78169e19b8292c0f67909d94eb8e6 = L.circleMarker(\\n\",\n       \"                [29.5953, 105.0331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b97a8fd34d96e1b141e4dfec0457e7ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15f5cc0b57dc6cdcdf5f3089e3be9720 = $(`&lt;div id=&quot;html_15f5cc0b57dc6cdcdf5f3089e3be9720&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0331             latitude:29.5953             pred_result:51.24702835083008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b97a8fd34d96e1b141e4dfec0457e7ac.setContent(html_15f5cc0b57dc6cdcdf5f3089e3be9720);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_faf78169e19b8292c0f67909d94eb8e6.bindPopup(popup_b97a8fd34d96e1b141e4dfec0457e7ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4000260b07c322e69bc5292cae34b261 = L.circleMarker(\\n\",\n       \"                [29.5947, 105.0717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22a9390f5bb939466c096902f99be760 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cac1ff243f140af1ffdf0599c2290dbc = $(`&lt;div id=&quot;html_cac1ff243f140af1ffdf0599c2290dbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0717             latitude:29.5947             pred_result:50.946285247802734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22a9390f5bb939466c096902f99be760.setContent(html_cac1ff243f140af1ffdf0599c2290dbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4000260b07c322e69bc5292cae34b261.bindPopup(popup_22a9390f5bb939466c096902f99be760)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83a22ec9dd7256ecc585f7afeeeefa5d = L.circleMarker(\\n\",\n       \"                [29.5817, 105.0653],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cdfbfd14f221d9c42261fdc65b7aa48a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6506f4a48b94a9102d2f3c0a87890f6 = $(`&lt;div id=&quot;html_b6506f4a48b94a9102d2f3c0a87890f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0653             latitude:29.5817             pred_result:51.02067565917969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cdfbfd14f221d9c42261fdc65b7aa48a.setContent(html_b6506f4a48b94a9102d2f3c0a87890f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83a22ec9dd7256ecc585f7afeeeefa5d.bindPopup(popup_cdfbfd14f221d9c42261fdc65b7aa48a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f8e3e005a718df36e4092f5cd762155 = L.circleMarker(\\n\",\n       \"                [29.5822, 105.0406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19b8bd88f37d0bcc1e772a696d27d6af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_28f0da02fc9a21d53e71b92481e69311 = $(`&lt;div id=&quot;html_28f0da02fc9a21d53e71b92481e69311&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0406             latitude:29.5822             pred_result:51.14931106567383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19b8bd88f37d0bcc1e772a696d27d6af.setContent(html_28f0da02fc9a21d53e71b92481e69311);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f8e3e005a718df36e4092f5cd762155.bindPopup(popup_19b8bd88f37d0bcc1e772a696d27d6af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c2c8bdb68143e3a0587192db6a64d18 = L.circleMarker(\\n\",\n       \"                [29.5467, 103.7705],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a41a46b0582f4b98e81669323700d0d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29ff2aae2183103db609dde139a0e36e = $(`&lt;div id=&quot;html_29ff2aae2183103db609dde139a0e36e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7705             latitude:29.5467             pred_result:55.23183059692383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a41a46b0582f4b98e81669323700d0d3.setContent(html_29ff2aae2183103db609dde139a0e36e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c2c8bdb68143e3a0587192db6a64d18.bindPopup(popup_a41a46b0582f4b98e81669323700d0d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f3a9a922c8ec5aed1c19bf5ef84c426 = L.circleMarker(\\n\",\n       \"                [29.5844, 103.7627],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c46935043d97e4ba52b4409bb06e7d52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09623bbb6931918a6619016388276135 = $(`&lt;div id=&quot;html_09623bbb6931918a6619016388276135&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7627             latitude:29.5844             pred_result:55.4137077331543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c46935043d97e4ba52b4409bb06e7d52.setContent(html_09623bbb6931918a6619016388276135);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f3a9a922c8ec5aed1c19bf5ef84c426.bindPopup(popup_c46935043d97e4ba52b4409bb06e7d52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06f2980857de4f46d59d152ddbb02bd9 = L.circleMarker(\\n\",\n       \"                [29.6007, 103.7506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1058c20b35bd5290bc390a3c86174e61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_383b6e70be3467b35372b4dbe852c2c4 = $(`&lt;div id=&quot;html_383b6e70be3467b35372b4dbe852c2c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7506             latitude:29.6007             pred_result:55.460044860839844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1058c20b35bd5290bc390a3c86174e61.setContent(html_383b6e70be3467b35372b4dbe852c2c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06f2980857de4f46d59d152ddbb02bd9.bindPopup(popup_1058c20b35bd5290bc390a3c86174e61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_365b613ca96db8318ab7b2dd9c00193c = L.circleMarker(\\n\",\n       \"                [29.5634, 103.757],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5200dd10530809ecd3b01bca4cf1e041 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fde110ab9669ae1726856a435414eae = $(`&lt;div id=&quot;html_2fde110ab9669ae1726856a435414eae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.757             latitude:29.5634             pred_result:55.22410583496094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5200dd10530809ecd3b01bca4cf1e041.setContent(html_2fde110ab9669ae1726856a435414eae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_365b613ca96db8318ab7b2dd9c00193c.bindPopup(popup_5200dd10530809ecd3b01bca4cf1e041)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c71d8d98b81e36a9dd1058012dfde82 = L.circleMarker(\\n\",\n       \"                [30.0506, 103.8986],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db52cf66876e0af9cf9b52740905afdc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31c07a5066499c48ff56195853bbbd7f = $(`&lt;div id=&quot;html_31c07a5066499c48ff56195853bbbd7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8986             latitude:30.0506             pred_result:56.05189514160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db52cf66876e0af9cf9b52740905afdc.setContent(html_31c07a5066499c48ff56195853bbbd7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c71d8d98b81e36a9dd1058012dfde82.bindPopup(popup_db52cf66876e0af9cf9b52740905afdc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60112dfe0c980d15c0402c65f822aeb4 = L.circleMarker(\\n\",\n       \"                [30.0874, 103.8416],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d109ca41c0040cd85bf9f556e8911aaa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e15325838cdaab87b762312cbaaf568 = $(`&lt;div id=&quot;html_1e15325838cdaab87b762312cbaaf568&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8416             latitude:30.0874             pred_result:56.310997009277344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d109ca41c0040cd85bf9f556e8911aaa.setContent(html_1e15325838cdaab87b762312cbaaf568);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60112dfe0c980d15c0402c65f822aeb4.bindPopup(popup_d109ca41c0040cd85bf9f556e8911aaa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7449533945b2d4a7f85e1039553ec8b7 = L.circleMarker(\\n\",\n       \"                [30.0691, 103.8495],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09e208672446f2c99255c6cb5b0b0921 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_473bb8a3479fbb136fabcd9aadb84984 = $(`&lt;div id=&quot;html_473bb8a3479fbb136fabcd9aadb84984&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8495             latitude:30.0691             pred_result:56.348384857177734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09e208672446f2c99255c6cb5b0b0921.setContent(html_473bb8a3479fbb136fabcd9aadb84984);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7449533945b2d4a7f85e1039553ec8b7.bindPopup(popup_09e208672446f2c99255c6cb5b0b0921)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_199bc31a809ea6ee33c620deb8d4a95e = L.circleMarker(\\n\",\n       \"                [30.062, 103.8341],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44984f67735869f9984dfe1e450e18d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55a4beb4fb8b5344c0fa666f5bc60b9c = $(`&lt;div id=&quot;html_55a4beb4fb8b5344c0fa666f5bc60b9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8341             latitude:30.062             pred_result:56.220458984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44984f67735869f9984dfe1e450e18d1.setContent(html_55a4beb4fb8b5344c0fa666f5bc60b9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_199bc31a809ea6ee33c620deb8d4a95e.bindPopup(popup_44984f67735869f9984dfe1e450e18d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77c96ecf6897bf968fe28dcf926b08f2 = L.circleMarker(\\n\",\n       \"                [30.518, 106.631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74affc8101de1cf1c896a9aef97db392 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_552c2184dc70da0514c5b623f36cb565 = $(`&lt;div id=&quot;html_552c2184dc70da0514c5b623f36cb565&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.631             latitude:30.518             pred_result:46.804264068603516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74affc8101de1cf1c896a9aef97db392.setContent(html_552c2184dc70da0514c5b623f36cb565);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77c96ecf6897bf968fe28dcf926b08f2.bindPopup(popup_74affc8101de1cf1c896a9aef97db392)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_347a1122e78f0758b92e34184b9452c6 = L.circleMarker(\\n\",\n       \"                [30.4576, 106.6303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_caeb1ed784d32cc197fa2133d8d9888b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b247b9ecce1bc88af3fde1bb44251c63 = $(`&lt;div id=&quot;html_b247b9ecce1bc88af3fde1bb44251c63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6303             latitude:30.4576             pred_result:47.11387634277344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_caeb1ed784d32cc197fa2133d8d9888b.setContent(html_b247b9ecce1bc88af3fde1bb44251c63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_347a1122e78f0758b92e34184b9452c6.bindPopup(popup_caeb1ed784d32cc197fa2133d8d9888b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46681363d0a86275e979b98cc999f7ec = L.circleMarker(\\n\",\n       \"                [30.4663, 106.6271],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f1b0983026d27a52193169103644328 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ec647a4fbd8ec44bd72302ed141d48f = $(`&lt;div id=&quot;html_1ec647a4fbd8ec44bd72302ed141d48f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6271             latitude:30.4663             pred_result:46.847190856933594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f1b0983026d27a52193169103644328.setContent(html_1ec647a4fbd8ec44bd72302ed141d48f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46681363d0a86275e979b98cc999f7ec.bindPopup(popup_1f1b0983026d27a52193169103644328)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0510a2d47eb384af22d5a3cfd11756b6 = L.circleMarker(\\n\",\n       \"                [30.4551, 106.6388],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2b1424111ec2f48d710f5f8ff49f51d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74ad0d30deda6b4e1c812c2d7fb9bbbe = $(`&lt;div id=&quot;html_74ad0d30deda6b4e1c812c2d7fb9bbbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6388             latitude:30.4551             pred_result:47.330257415771484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2b1424111ec2f48d710f5f8ff49f51d.setContent(html_74ad0d30deda6b4e1c812c2d7fb9bbbe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0510a2d47eb384af22d5a3cfd11756b6.bindPopup(popup_c2b1424111ec2f48d710f5f8ff49f51d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e010706eec2be72a8a19e05e5185f89f = L.circleMarker(\\n\",\n       \"                [31.2797, 107.5272],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd4358e0b2e00636920745cf867de0c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0b387da080782124134369a08c96662 = $(`&lt;div id=&quot;html_b0b387da080782124134369a08c96662&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5272             latitude:31.2797             pred_result:42.43948745727539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd4358e0b2e00636920745cf867de0c6.setContent(html_b0b387da080782124134369a08c96662);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e010706eec2be72a8a19e05e5185f89f.bindPopup(popup_cd4358e0b2e00636920745cf867de0c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18a7843b6d493c7f44226f1ff2cfc887 = L.circleMarker(\\n\",\n       \"                [31.215, 107.525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61e158f6e898f4807d904feb58e54f70 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4a24f87887c2a530bd9c77ebf438f9a = $(`&lt;div id=&quot;html_d4a24f87887c2a530bd9c77ebf438f9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.525             latitude:31.215             pred_result:43.911075592041016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61e158f6e898f4807d904feb58e54f70.setContent(html_d4a24f87887c2a530bd9c77ebf438f9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18a7843b6d493c7f44226f1ff2cfc887.bindPopup(popup_61e158f6e898f4807d904feb58e54f70)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ee71ad670c20f1934c589f302e0c62e = L.circleMarker(\\n\",\n       \"                [31.2108, 107.4967],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19b9874553f8a89b187a7a6e4004e5fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05725ec002161f39c5491fab453d66a7 = $(`&lt;div id=&quot;html_05725ec002161f39c5491fab453d66a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4967             latitude:31.2108             pred_result:44.21952438354492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19b9874553f8a89b187a7a6e4004e5fe.setContent(html_05725ec002161f39c5491fab453d66a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ee71ad670c20f1934c589f302e0c62e.bindPopup(popup_19b9874553f8a89b187a7a6e4004e5fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f66d67d7602b0e514564f12bfd6630fa = L.circleMarker(\\n\",\n       \"                [31.1956, 107.5069],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_072e4fea16cc2d5d31fd61ded8a07775 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db6251752ec2e6c14db2fe0c80e752b4 = $(`&lt;div id=&quot;html_db6251752ec2e6c14db2fe0c80e752b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5069             latitude:31.1956             pred_result:44.56425476074219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_072e4fea16cc2d5d31fd61ded8a07775.setContent(html_db6251752ec2e6c14db2fe0c80e752b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f66d67d7602b0e514564f12bfd6630fa.bindPopup(popup_072e4fea16cc2d5d31fd61ded8a07775)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4234897c4ec951829d4fb32a1a79b32e = L.circleMarker(\\n\",\n       \"                [31.2058, 107.4611],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e781061508794943c1bf3e3a331e0fb9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc60160ea81ecce18022a7e18f0b6efc = $(`&lt;div id=&quot;html_bc60160ea81ecce18022a7e18f0b6efc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4611             latitude:31.2058             pred_result:44.612762451171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e781061508794943c1bf3e3a331e0fb9.setContent(html_bc60160ea81ecce18022a7e18f0b6efc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4234897c4ec951829d4fb32a1a79b32e.bindPopup(popup_e781061508794943c1bf3e3a331e0fb9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ceedff55cdb0d59fa69327ea5223cc0 = L.circleMarker(\\n\",\n       \"                [30.0125, 103.009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de7a7b5c2cbeb90aff05621bc6524bd6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4c57e02cf64e7f7abd1dd54967a769b = $(`&lt;div id=&quot;html_d4c57e02cf64e7f7abd1dd54967a769b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.009             latitude:30.0125             pred_result:46.22669219970703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de7a7b5c2cbeb90aff05621bc6524bd6.setContent(html_d4c57e02cf64e7f7abd1dd54967a769b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ceedff55cdb0d59fa69327ea5223cc0.bindPopup(popup_de7a7b5c2cbeb90aff05621bc6524bd6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fb89fb2df63567786cae23c1d345d4e = L.circleMarker(\\n\",\n       \"                [29.9899, 103.0013],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0baf8fac6f1f17a0a5d029c3791d71f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_32732b92296b902598b164e7ec96f479 = $(`&lt;div id=&quot;html_32732b92296b902598b164e7ec96f479&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0013             latitude:29.9899             pred_result:46.217201232910156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0baf8fac6f1f17a0a5d029c3791d71f9.setContent(html_32732b92296b902598b164e7ec96f479);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fb89fb2df63567786cae23c1d345d4e.bindPopup(popup_0baf8fac6f1f17a0a5d029c3791d71f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_acfbf106eee3ee2cb9bb217b27d1f0b8 = L.circleMarker(\\n\",\n       \"                [29.9834, 103.0109],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02c2757f194a305e2cf7b89e1d36bf33 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a479f1de43edf99ea08adbcf4ede0ca = $(`&lt;div id=&quot;html_5a479f1de43edf99ea08adbcf4ede0ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0109             latitude:29.9834             pred_result:46.45504379272461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02c2757f194a305e2cf7b89e1d36bf33.setContent(html_5a479f1de43edf99ea08adbcf4ede0ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_acfbf106eee3ee2cb9bb217b27d1f0b8.bindPopup(popup_02c2757f194a305e2cf7b89e1d36bf33)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da2b499be93393269ccf2f84f0165cee = L.circleMarker(\\n\",\n       \"                [29.9816, 103.0001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69a69204ce884385710225cd659d0a1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_486aafc8e0175069a819411925bfc718 = $(`&lt;div id=&quot;html_486aafc8e0175069a819411925bfc718&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0001             latitude:29.9816             pred_result:46.09883117675781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69a69204ce884385710225cd659d0a1f.setContent(html_486aafc8e0175069a819411925bfc718);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da2b499be93393269ccf2f84f0165cee.bindPopup(popup_69a69204ce884385710225cd659d0a1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f1462819e965d44c09a2a7ea8bd8fe9 = L.circleMarker(\\n\",\n       \"                [31.8711, 106.7389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0f0505a991da04183e247f9f2380a48 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b68d5d8cfe5ef0f7d00766e899b42b8 = $(`&lt;div id=&quot;html_4b68d5d8cfe5ef0f7d00766e899b42b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7389             latitude:31.8711             pred_result:43.589622497558594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0f0505a991da04183e247f9f2380a48.setContent(html_4b68d5d8cfe5ef0f7d00766e899b42b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f1462819e965d44c09a2a7ea8bd8fe9.bindPopup(popup_a0f0505a991da04183e247f9f2380a48)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a396f363c291f7f211779100558832ee = L.circleMarker(\\n\",\n       \"                [31.8531, 106.7594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98949b8eb0c4422659b4048d1ad91f20 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d395c0c75cc80b58dcb89883c3117cc = $(`&lt;div id=&quot;html_2d395c0c75cc80b58dcb89883c3117cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7594             latitude:31.8531             pred_result:43.642608642578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98949b8eb0c4422659b4048d1ad91f20.setContent(html_2d395c0c75cc80b58dcb89883c3117cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a396f363c291f7f211779100558832ee.bindPopup(popup_98949b8eb0c4422659b4048d1ad91f20)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_982c8823d9298f3d3081f1c700e781de = L.circleMarker(\\n\",\n       \"                [30.1366, 104.6617],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd589194b45a782361232e4968552d7c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8da4f1a600f6cff9882ee89531a1c087 = $(`&lt;div id=&quot;html_8da4f1a600f6cff9882ee89531a1c087&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6617             latitude:30.1366             pred_result:53.64971923828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd589194b45a782361232e4968552d7c.setContent(html_8da4f1a600f6cff9882ee89531a1c087);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_982c8823d9298f3d3081f1c700e781de.bindPopup(popup_fd589194b45a782361232e4968552d7c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9da426b46565484c55a7878567d34417 = L.circleMarker(\\n\",\n       \"                [30.1506, 104.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d117dfd06ab2d1aab56de67e6bc071a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84d6b8224bf302e120582726b1103308 = $(`&lt;div id=&quot;html_84d6b8224bf302e120582726b1103308&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6356             latitude:30.1506             pred_result:53.81232833862305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d117dfd06ab2d1aab56de67e6bc071a0.setContent(html_84d6b8224bf302e120582726b1103308);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9da426b46565484c55a7878567d34417.bindPopup(popup_d117dfd06ab2d1aab56de67e6bc071a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3dcee8e3c48f51c03c7bea7b8c7f9189 = L.circleMarker(\\n\",\n       \"                [30.1377, 104.6289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8f89e77f1eb55589c17dbbf8f1006b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c290a6a691b456ba7b4ee78202ea355 = $(`&lt;div id=&quot;html_8c290a6a691b456ba7b4ee78202ea355&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6289             latitude:30.1377             pred_result:53.83588409423828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8f89e77f1eb55589c17dbbf8f1006b1.setContent(html_8c290a6a691b456ba7b4ee78202ea355);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3dcee8e3c48f51c03c7bea7b8c7f9189.bindPopup(popup_f8f89e77f1eb55589c17dbbf8f1006b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ba3b1fb59fb773812c9835235a399b8 = L.circleMarker(\\n\",\n       \"                [30.1142, 104.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb661783ccdaf320e7dd4c8a8a2705f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe5dbc4424e37b6ba807b57e8d156845 = $(`&lt;div id=&quot;html_fe5dbc4424e37b6ba807b57e8d156845&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6469             latitude:30.1142             pred_result:53.66512680053711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb661783ccdaf320e7dd4c8a8a2705f3.setContent(html_fe5dbc4424e37b6ba807b57e8d156845);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ba3b1fb59fb773812c9835235a399b8.bindPopup(popup_eb661783ccdaf320e7dd4c8a8a2705f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86de343d37e2f452fe68073106bcefe9 = L.circleMarker(\\n\",\n       \"                [30.1259, 104.6294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13f1b5c02dd340cfc93f4d788b8eb769 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4fc773d4547ab5f9caa517e02f97ac3f = $(`&lt;div id=&quot;html_4fc773d4547ab5f9caa517e02f97ac3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6294             latitude:30.1259             pred_result:53.782562255859375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13f1b5c02dd340cfc93f4d788b8eb769.setContent(html_4fc773d4547ab5f9caa517e02f97ac3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86de343d37e2f452fe68073106bcefe9.bindPopup(popup_13f1b5c02dd340cfc93f4d788b8eb769)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1717250cc08233b56bb25c4a4cac2ea4 = L.circleMarker(\\n\",\n       \"                [31.9286, 102.1755],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0da010c95186282462a4857b7d765a02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4902dc1b0975ef2b27e4944182b1ad3 = $(`&lt;div id=&quot;html_c4902dc1b0975ef2b27e4944182b1ad3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1755             latitude:31.9286             pred_result:21.929439544677734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0da010c95186282462a4857b7d765a02.setContent(html_c4902dc1b0975ef2b27e4944182b1ad3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1717250cc08233b56bb25c4a4cac2ea4.bindPopup(popup_0da010c95186282462a4857b7d765a02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1dbcecfe4579a73feefc0a70c08f7501 = L.circleMarker(\\n\",\n       \"                [31.9025, 102.2218],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc914ac711402b709cb2f72f821d6418 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1262fe364008ea00a5329f459d4b0cc0 = $(`&lt;div id=&quot;html_1262fe364008ea00a5329f459d4b0cc0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2218             latitude:31.9025             pred_result:22.078731536865234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc914ac711402b709cb2f72f821d6418.setContent(html_1262fe364008ea00a5329f459d4b0cc0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1dbcecfe4579a73feefc0a70c08f7501.bindPopup(popup_fc914ac711402b709cb2f72f821d6418)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5900bbd6763f4f5ac4e934fb9dba74e7 = L.circleMarker(\\n\",\n       \"                [31.8934, 102.2402],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18a3a63dd9372e0f56c4e67c9757ae4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_458786030d499d215d9e081a5c1d9f70 = $(`&lt;div id=&quot;html_458786030d499d215d9e081a5c1d9f70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2402             latitude:31.8934             pred_result:21.481212615966797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18a3a63dd9372e0f56c4e67c9757ae4a.setContent(html_458786030d499d215d9e081a5c1d9f70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5900bbd6763f4f5ac4e934fb9dba74e7.bindPopup(popup_18a3a63dd9372e0f56c4e67c9757ae4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9ef80dc22c06fd9cbca583feab24fa0 = L.circleMarker(\\n\",\n       \"                [30.0475, 101.9603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c0ceee18fc4b7819df3e9881d500727 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b95d3b9037a347e23bbb9483893cf02 = $(`&lt;div id=&quot;html_0b95d3b9037a347e23bbb9483893cf02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9603             latitude:30.0475             pred_result:20.967411041259766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c0ceee18fc4b7819df3e9881d500727.setContent(html_0b95d3b9037a347e23bbb9483893cf02);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9ef80dc22c06fd9cbca583feab24fa0.bindPopup(popup_4c0ceee18fc4b7819df3e9881d500727)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec35c2ed4b43e97f52bfbf9d5af686da = L.circleMarker(\\n\",\n       \"                [27.8094, 102.3419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80fab0ce5398601cf444585915e52439 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f572a4aae1b934a653042ab33e87d34 = $(`&lt;div id=&quot;html_4f572a4aae1b934a653042ab33e87d34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.3419             latitude:27.8094             pred_result:26.881196975708008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80fab0ce5398601cf444585915e52439.setContent(html_4f572a4aae1b934a653042ab33e87d34);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec35c2ed4b43e97f52bfbf9d5af686da.bindPopup(popup_80fab0ce5398601cf444585915e52439)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c662a9d39a1bace82bd1275c3b4d2f7 = L.circleMarker(\\n\",\n       \"                [27.8408, 102.2714],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_908b0c1c15a27b1444139afbf84a62ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af736bb52863e9467149cee73268e2be = $(`&lt;div id=&quot;html_af736bb52863e9467149cee73268e2be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2714             latitude:27.8408             pred_result:28.583528518676758             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_908b0c1c15a27b1444139afbf84a62ed.setContent(html_af736bb52863e9467149cee73268e2be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c662a9d39a1bace82bd1275c3b4d2f7.bindPopup(popup_908b0c1c15a27b1444139afbf84a62ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31770163f23407074dfcb237fea35081 = L.circleMarker(\\n\",\n       \"                [27.8978, 102.2625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf53232e9979b73da640fb6dd62a743b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff2b169284450dac84d8c413ef3e29d8 = $(`&lt;div id=&quot;html_ff2b169284450dac84d8c413ef3e29d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2625             latitude:27.8978             pred_result:30.419239044189453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf53232e9979b73da640fb6dd62a743b.setContent(html_ff2b169284450dac84d8c413ef3e29d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31770163f23407074dfcb237fea35081.bindPopup(popup_cf53232e9979b73da640fb6dd62a743b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_812aea2389add69f2b0adffe7f6c85f2 = L.circleMarker(\\n\",\n       \"                [27.8847, 102.2689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_195450d46da46490a25af2c85436e699 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49861ae9bb1e2f89772411625195fdd3 = $(`&lt;div id=&quot;html_49861ae9bb1e2f89772411625195fdd3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2689             latitude:27.8847             pred_result:29.782089233398438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_195450d46da46490a25af2c85436e699.setContent(html_49861ae9bb1e2f89772411625195fdd3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_812aea2389add69f2b0adffe7f6c85f2.bindPopup(popup_195450d46da46490a25af2c85436e699)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba85a2d5bde4871ba401e94285692951 = L.circleMarker(\\n\",\n       \"                [27.8953, 102.2311],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fc20b264c6527ea8bed5673f094a243 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e513aa3c068b9ea98820141cb58ad884 = $(`&lt;div id=&quot;html_e513aa3c068b9ea98820141cb58ad884&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2311             latitude:27.8953             pred_result:29.820777893066406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fc20b264c6527ea8bed5673f094a243.setContent(html_e513aa3c068b9ea98820141cb58ad884);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba85a2d5bde4871ba401e94285692951.bindPopup(popup_8fc20b264c6527ea8bed5673f094a243)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb89dd532fa151cad340208eef0cc761 = L.circleMarker(\\n\",\n       \"                [26.5892, 104.8],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f538893057cb9e6c19fe9a219d976bc6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9df9142e0e55c1d7c2ac06f43c30d616 = $(`&lt;div id=&quot;html_9df9142e0e55c1d7c2ac06f43c30d616&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8             latitude:26.5892             pred_result:31.390485763549805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f538893057cb9e6c19fe9a219d976bc6.setContent(html_9df9142e0e55c1d7c2ac06f43c30d616);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb89dd532fa151cad340208eef0cc761.bindPopup(popup_f538893057cb9e6c19fe9a219d976bc6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_baa10990ac4c119702b8f6f1cbb7fe8e = L.circleMarker(\\n\",\n       \"                [26.5917, 104.83],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffa8ee1a54f6ddff6a0c292e84f8e9db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0d2ba17880ad1df232dbc3388333491 = $(`&lt;div id=&quot;html_e0d2ba17880ad1df232dbc3388333491&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.83             latitude:26.5917             pred_result:31.077926635742188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffa8ee1a54f6ddff6a0c292e84f8e9db.setContent(html_e0d2ba17880ad1df232dbc3388333491);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_baa10990ac4c119702b8f6f1cbb7fe8e.bindPopup(popup_ffa8ee1a54f6ddff6a0c292e84f8e9db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6638500c04d11c9ef2cbf01d063a8dd6 = L.circleMarker(\\n\",\n       \"                [26.5939, 104.89],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60de56b56dcfc9330426fcdb22f247f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c70c91268abce6b33018b0e9dd50242c = $(`&lt;div id=&quot;html_c70c91268abce6b33018b0e9dd50242c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.89             latitude:26.5939             pred_result:31.652297973632812             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60de56b56dcfc9330426fcdb22f247f3.setContent(html_c70c91268abce6b33018b0e9dd50242c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6638500c04d11c9ef2cbf01d063a8dd6.bindPopup(popup_60de56b56dcfc9330426fcdb22f247f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ebe243bab9938371832855edae691131 = L.circleMarker(\\n\",\n       \"                [26.5894, 104.8475],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_805ee90482f470a19ec40919095291c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ddea304102074a409b72b7c8a87ad24 = $(`&lt;div id=&quot;html_7ddea304102074a409b72b7c8a87ad24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8475             latitude:26.5894             pred_result:31.879077911376953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_805ee90482f470a19ec40919095291c3.setContent(html_7ddea304102074a409b72b7c8a87ad24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ebe243bab9938371832855edae691131.bindPopup(popup_805ee90482f470a19ec40919095291c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62690f9de3bb816b5f0793fbddb5333d = L.circleMarker(\\n\",\n       \"                [26.5506, 104.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76f3721dcc3ea01a1b7368fc549f0e41 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ee58e32d18ecbecf90d018dddd5b06a = $(`&lt;div id=&quot;html_6ee58e32d18ecbecf90d018dddd5b06a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9544             latitude:26.5506             pred_result:31.66351318359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76f3721dcc3ea01a1b7368fc549f0e41.setContent(html_6ee58e32d18ecbecf90d018dddd5b06a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62690f9de3bb816b5f0793fbddb5333d.bindPopup(popup_76f3721dcc3ea01a1b7368fc549f0e41)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f6e8c3c2bf4700673784907c4a253b4 = L.circleMarker(\\n\",\n       \"                [26.2611, 105.9556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10fdc7e9cd8d3e9353fcc86ae2c53c0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed3f66fbfc95ec8b57569c82492b3a22 = $(`&lt;div id=&quot;html_ed3f66fbfc95ec8b57569c82492b3a22&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.9556             latitude:26.2611             pred_result:30.975759506225586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10fdc7e9cd8d3e9353fcc86ae2c53c0b.setContent(html_ed3f66fbfc95ec8b57569c82492b3a22);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f6e8c3c2bf4700673784907c4a253b4.bindPopup(popup_10fdc7e9cd8d3e9353fcc86ae2c53c0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93e0a9af449c848903417cb522c49146 = L.circleMarker(\\n\",\n       \"                [26.255, 105.9278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4408f48dcd3616442c86be94bd52e36b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7bb1c14b694e7344ba0a1429bfe093c3 = $(`&lt;div id=&quot;html_7bb1c14b694e7344ba0a1429bfe093c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.9278             latitude:26.255             pred_result:31.09259033203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4408f48dcd3616442c86be94bd52e36b.setContent(html_7bb1c14b694e7344ba0a1429bfe093c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93e0a9af449c848903417cb522c49146.bindPopup(popup_4408f48dcd3616442c86be94bd52e36b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3b574a1ef15e89a35a91aaedba35cec = L.circleMarker(\\n\",\n       \"                [26.2358, 105.9394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a588a67ef38499e346b170116a37192d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_499abafd3f1833fc650dea4cb2cdd6f9 = $(`&lt;div id=&quot;html_499abafd3f1833fc650dea4cb2cdd6f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.9394             latitude:26.2358             pred_result:31.50173568725586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a588a67ef38499e346b170116a37192d.setContent(html_499abafd3f1833fc650dea4cb2cdd6f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3b574a1ef15e89a35a91aaedba35cec.bindPopup(popup_a588a67ef38499e346b170116a37192d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ccdd32d094a1ec5d7e7d49f5160acd3d = L.circleMarker(\\n\",\n       \"                [26.2392, 105.8853],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e41e97c639e03f3f214e8913b5bf968 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08433a8a835263452c8fdd62fe7e88fb = $(`&lt;div id=&quot;html_08433a8a835263452c8fdd62fe7e88fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8853             latitude:26.2392             pred_result:30.87779998779297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e41e97c639e03f3f214e8913b5bf968.setContent(html_08433a8a835263452c8fdd62fe7e88fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ccdd32d094a1ec5d7e7d49f5160acd3d.bindPopup(popup_6e41e97c639e03f3f214e8913b5bf968)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c77f0825953873227abc92a0ae1ff4e = L.circleMarker(\\n\",\n       \"                [27.7297, 109.1916],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99e442ebaee491da21ef845f0bbf2672 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad940dbfd8fc9ccf551d222e8955d493 = $(`&lt;div id=&quot;html_ad940dbfd8fc9ccf551d222e8955d493&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.1916             latitude:27.7297             pred_result:47.99038314819336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99e442ebaee491da21ef845f0bbf2672.setContent(html_ad940dbfd8fc9ccf551d222e8955d493);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c77f0825953873227abc92a0ae1ff4e.bindPopup(popup_99e442ebaee491da21ef845f0bbf2672)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18ce0f804ec8fd0d029f01ff8a58acdf = L.circleMarker(\\n\",\n       \"                [27.7231, 109.1794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a627ff2baea096d9b509e764d817f1eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77c4a86de7a35ebb6c488ce9d7dc45c5 = $(`&lt;div id=&quot;html_77c4a86de7a35ebb6c488ce9d7dc45c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.1794             latitude:27.7231             pred_result:48.02063751220703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a627ff2baea096d9b509e764d817f1eb.setContent(html_77c4a86de7a35ebb6c488ce9d7dc45c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18ce0f804ec8fd0d029f01ff8a58acdf.bindPopup(popup_a627ff2baea096d9b509e764d817f1eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_395871e3513c0837712defb95458cdcc = L.circleMarker(\\n\",\n       \"                [27.3125, 105.2864],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae4892a3048c74c7531117a6e7f4df22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c148ddf3a78ee529474e3743016d7b69 = $(`&lt;div id=&quot;html_c148ddf3a78ee529474e3743016d7b69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.2864             latitude:27.3125             pred_result:31.92182159423828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae4892a3048c74c7531117a6e7f4df22.setContent(html_c148ddf3a78ee529474e3743016d7b69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_395871e3513c0837712defb95458cdcc.bindPopup(popup_ae4892a3048c74c7531117a6e7f4df22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0de554cc469d1de8139c2a2a3863dc1 = L.circleMarker(\\n\",\n       \"                [27.2944, 105.31],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eeff14e2ba8f90e1f8ca37a22e1b8ad1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65445be44960d423a4015860cf1bf81c = $(`&lt;div id=&quot;html_65445be44960d423a4015860cf1bf81c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.31             latitude:27.2944             pred_result:32.589881896972656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eeff14e2ba8f90e1f8ca37a22e1b8ad1.setContent(html_65445be44960d423a4015860cf1bf81c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0de554cc469d1de8139c2a2a3863dc1.bindPopup(popup_eeff14e2ba8f90e1f8ca37a22e1b8ad1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2329230f3f0a41f3b31c2ecd6e6c4517 = L.circleMarker(\\n\",\n       \"                [25.0925, 104.9022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f05b0ba3a6aeb31d91b29da87a92f952 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cfabb33a61b9b518f29863d3cd35e6bc = $(`&lt;div id=&quot;html_cfabb33a61b9b518f29863d3cd35e6bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9022             latitude:25.0925             pred_result:27.308181762695312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f05b0ba3a6aeb31d91b29da87a92f952.setContent(html_cfabb33a61b9b518f29863d3cd35e6bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2329230f3f0a41f3b31c2ecd6e6c4517.bindPopup(popup_f05b0ba3a6aeb31d91b29da87a92f952)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d3ce6da6970ee319b114ec99eaf7468 = L.circleMarker(\\n\",\n       \"                [25.0992, 104.8811],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3cfa88c800efebb7e1216811b9ef2267 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dec8d7b5d14d33371bf18721e350b205 = $(`&lt;div id=&quot;html_dec8d7b5d14d33371bf18721e350b205&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8811             latitude:25.0992             pred_result:27.137632369995117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3cfa88c800efebb7e1216811b9ef2267.setContent(html_dec8d7b5d14d33371bf18721e350b205);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d3ce6da6970ee319b114ec99eaf7468.bindPopup(popup_3cfa88c800efebb7e1216811b9ef2267)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ff29715b8ccf87180bac9b958712b8e = L.circleMarker(\\n\",\n       \"                [26.5747, 107.9783],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c27950650a4994c92b352eba805ee419 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cce4c33969fb6459f8e6cd86812e333d = $(`&lt;div id=&quot;html_cce4c33969fb6459f8e6cd86812e333d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.9783             latitude:26.5747             pred_result:43.25505065917969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c27950650a4994c92b352eba805ee419.setContent(html_cce4c33969fb6459f8e6cd86812e333d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ff29715b8ccf87180bac9b958712b8e.bindPopup(popup_c27950650a4994c92b352eba805ee419)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75775c0733bf45d0334609a65fed321c = L.circleMarker(\\n\",\n       \"                [26.2403, 107.5228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6dfeab9d963efbed1f8ed8cb1b058e1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b733eacea6e4cd810e9cfb0437868223 = $(`&lt;div id=&quot;html_b733eacea6e4cd810e9cfb0437868223&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5228             latitude:26.2403             pred_result:38.27695083618164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6dfeab9d963efbed1f8ed8cb1b058e1b.setContent(html_b733eacea6e4cd810e9cfb0437868223);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75775c0733bf45d0334609a65fed321c.bindPopup(popup_6dfeab9d963efbed1f8ed8cb1b058e1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e320753637d242da49d51eff7f62032c = L.circleMarker(\\n\",\n       \"                [25.1081, 99.1678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b01a1aaad99d328896d2ecd5b109140c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_423f2e7511e8e97c701c7de86fdf252d = $(`&lt;div id=&quot;html_423f2e7511e8e97c701c7de86fdf252d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.1678             latitude:25.1081             pred_result:22.659650802612305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b01a1aaad99d328896d2ecd5b109140c.setContent(html_423f2e7511e8e97c701c7de86fdf252d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e320753637d242da49d51eff7f62032c.bindPopup(popup_b01a1aaad99d328896d2ecd5b109140c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fcdde54b516d80a1fdf877611b015e63 = L.circleMarker(\\n\",\n       \"                [25.1328, 99.1711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15649035e4e2a405f6d9d0c438a9de0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_347c5f7ea9310c70cfa5fe29366758cf = $(`&lt;div id=&quot;html_347c5f7ea9310c70cfa5fe29366758cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.1711             latitude:25.1328             pred_result:22.57159423828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15649035e4e2a405f6d9d0c438a9de0b.setContent(html_347c5f7ea9310c70cfa5fe29366758cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fcdde54b516d80a1fdf877611b015e63.bindPopup(popup_15649035e4e2a405f6d9d0c438a9de0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd1a5a48f78529c7ad50446e7a43c032 = L.circleMarker(\\n\",\n       \"                [27.3392, 103.7032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff91dce165a292929a3e026d02a99e4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2da7eeee292ad2a1af337cc111645a4f = $(`&lt;div id=&quot;html_2da7eeee292ad2a1af337cc111645a4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7032             latitude:27.3392             pred_result:32.57953643798828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff91dce165a292929a3e026d02a99e4a.setContent(html_2da7eeee292ad2a1af337cc111645a4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd1a5a48f78529c7ad50446e7a43c032.bindPopup(popup_ff91dce165a292929a3e026d02a99e4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2bdcd2aab08ba58342a0ff8d1ce8f53d = L.circleMarker(\\n\",\n       \"                [27.3361, 103.7225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7fdc8a6cce4cd412c2c3b4ecc6e1b914 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77661177de418b82c59cb4f22ef39d8b = $(`&lt;div id=&quot;html_77661177de418b82c59cb4f22ef39d8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7225             latitude:27.3361             pred_result:32.31414794921875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7fdc8a6cce4cd412c2c3b4ecc6e1b914.setContent(html_77661177de418b82c59cb4f22ef39d8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2bdcd2aab08ba58342a0ff8d1ce8f53d.bindPopup(popup_7fdc8a6cce4cd412c2c3b4ecc6e1b914)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee2e3d225b4dccb8ee25b894d7200c6a = L.circleMarker(\\n\",\n       \"                [26.8576, 100.2143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15a58a371818d28c4813085c1cff6141 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c39676227b8a612dabc3de3bbb08550 = $(`&lt;div id=&quot;html_3c39676227b8a612dabc3de3bbb08550&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2143             latitude:26.8576             pred_result:26.559947967529297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15a58a371818d28c4813085c1cff6141.setContent(html_3c39676227b8a612dabc3de3bbb08550);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee2e3d225b4dccb8ee25b894d7200c6a.bindPopup(popup_15a58a371818d28c4813085c1cff6141)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_537a45b3abf3c2533e3eaaad015828b7 = L.circleMarker(\\n\",\n       \"                [26.8802, 100.2497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5812eb32f436406bfd7b8886935b184 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_420fbd5fc33ccde1900c858c47bfb932 = $(`&lt;div id=&quot;html_420fbd5fc33ccde1900c858c47bfb932&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2497             latitude:26.8802             pred_result:26.590660095214844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5812eb32f436406bfd7b8886935b184.setContent(html_420fbd5fc33ccde1900c858c47bfb932);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_537a45b3abf3c2533e3eaaad015828b7.bindPopup(popup_e5812eb32f436406bfd7b8886935b184)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e66f7c1f10985aab7bb8c9aa3e332d9 = L.circleMarker(\\n\",\n       \"                [26.8906, 100.2203],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb826a0a1a32a08ea6346999a2460cf3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c81ffaec7cee06ad14bc4b17bc7d250 = $(`&lt;div id=&quot;html_1c81ffaec7cee06ad14bc4b17bc7d250&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2203             latitude:26.8906             pred_result:26.50489044189453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb826a0a1a32a08ea6346999a2460cf3.setContent(html_1c81ffaec7cee06ad14bc4b17bc7d250);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e66f7c1f10985aab7bb8c9aa3e332d9.bindPopup(popup_eb826a0a1a32a08ea6346999a2460cf3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0dc5b591c15f8bfce286ba464b59b808 = L.circleMarker(\\n\",\n       \"                [22.7633, 100.98],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6724311f13de68bfeb3e624910d5eed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_262773b5897017259aa9c5384ab25a0e = $(`&lt;div id=&quot;html_262773b5897017259aa9c5384ab25a0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.98             latitude:22.7633             pred_result:29.26303482055664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6724311f13de68bfeb3e624910d5eed.setContent(html_262773b5897017259aa9c5384ab25a0e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0dc5b591c15f8bfce286ba464b59b808.bindPopup(popup_a6724311f13de68bfeb3e624910d5eed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44887b5e09056707a954dad399f17434 = L.circleMarker(\\n\",\n       \"                [22.8322, 100.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e403d35326fa50f2797b969789b650d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a33aebd0fb55b023cff611b797196d8 = $(`&lt;div id=&quot;html_4a33aebd0fb55b023cff611b797196d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.9817             latitude:22.8322             pred_result:30.02482032775879             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e403d35326fa50f2797b969789b650d5.setContent(html_4a33aebd0fb55b023cff611b797196d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44887b5e09056707a954dad399f17434.bindPopup(popup_e403d35326fa50f2797b969789b650d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3aae0724e0df066b5d2d2dfd4159a263 = L.circleMarker(\\n\",\n       \"                [23.8822, 100.0869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33b3adf6c176cee2ee43abc88da42230 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b3a17f15969e4001ca119f12083ba39 = $(`&lt;div id=&quot;html_6b3a17f15969e4001ca119f12083ba39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0869             latitude:23.8822             pred_result:37.44775390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33b3adf6c176cee2ee43abc88da42230.setContent(html_6b3a17f15969e4001ca119f12083ba39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3aae0724e0df066b5d2d2dfd4159a263.bindPopup(popup_33b3adf6c176cee2ee43abc88da42230)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9e78c02ce373464c2baec988866c686 = L.circleMarker(\\n\",\n       \"                [23.8982, 100.0782],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6633d6d3c97c815bf859df10e2302aa5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ae1cc3b53f8b1723af076ba2ffaebc2 = $(`&lt;div id=&quot;html_1ae1cc3b53f8b1723af076ba2ffaebc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0782             latitude:23.8982             pred_result:36.68879699707031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6633d6d3c97c815bf859df10e2302aa5.setContent(html_1ae1cc3b53f8b1723af076ba2ffaebc2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9e78c02ce373464c2baec988866c686.bindPopup(popup_6633d6d3c97c815bf859df10e2302aa5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37797371fe2db990e9091e7995fc1308 = L.circleMarker(\\n\",\n       \"                [25.0441, 101.5482],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55ef50431f2f0891ac3d2eb260f8a2e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2972f9ca092ada683e39907233c09a1 = $(`&lt;div id=&quot;html_b2972f9ca092ada683e39907233c09a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.5482             latitude:25.0441             pred_result:24.636676788330078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55ef50431f2f0891ac3d2eb260f8a2e3.setContent(html_b2972f9ca092ada683e39907233c09a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37797371fe2db990e9091e7995fc1308.bindPopup(popup_55ef50431f2f0891ac3d2eb260f8a2e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95adb26f8b0914fd3b87e8a2c0b0c0a4 = L.circleMarker(\\n\",\n       \"                [25.0492, 101.538],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e617eeac1ab33d3dda499bcb4b0399f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aab3483292c8bff4800fe2f534774805 = $(`&lt;div id=&quot;html_aab3483292c8bff4800fe2f534774805&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.538             latitude:25.0492             pred_result:24.667682647705078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e617eeac1ab33d3dda499bcb4b0399f.setContent(html_aab3483292c8bff4800fe2f534774805);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95adb26f8b0914fd3b87e8a2c0b0c0a4.bindPopup(popup_2e617eeac1ab33d3dda499bcb4b0399f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63b289240171b7bd7c7a181b17452f89 = L.circleMarker(\\n\",\n       \"                [23.3993, 103.3772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e9cb32fdc6c80763980e748540af3b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98bca388c606594bbb0872ae65b9fa66 = $(`&lt;div id=&quot;html_98bca388c606594bbb0872ae65b9fa66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.3772             latitude:23.3993             pred_result:37.67735290527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e9cb32fdc6c80763980e748540af3b2.setContent(html_98bca388c606594bbb0872ae65b9fa66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63b289240171b7bd7c7a181b17452f89.bindPopup(popup_4e9cb32fdc6c80763980e748540af3b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3738466d897b8ccb016bb12063e1d1b = L.circleMarker(\\n\",\n       \"                [23.4168, 103.386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_498fc67b9ae53f75f84b0d2b3fa110d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30dbe93fe1e8bc09d86e0119bcea5b14 = $(`&lt;div id=&quot;html_30dbe93fe1e8bc09d86e0119bcea5b14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.386             latitude:23.4168             pred_result:36.1992073059082             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_498fc67b9ae53f75f84b0d2b3fa110d1.setContent(html_30dbe93fe1e8bc09d86e0119bcea5b14);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3738466d897b8ccb016bb12063e1d1b.bindPopup(popup_498fc67b9ae53f75f84b0d2b3fa110d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a6a98a298da707d5d05ba92de847dc5 = L.circleMarker(\\n\",\n       \"                [23.3594, 104.2533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3040e0b01b09389b278a0007f6f7e56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_732b3c6849542959ad96c115ffb9dc77 = $(`&lt;div id=&quot;html_732b3c6849542959ad96c115ffb9dc77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.2533             latitude:23.3594             pred_result:27.866670608520508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3040e0b01b09389b278a0007f6f7e56.setContent(html_732b3c6849542959ad96c115ffb9dc77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a6a98a298da707d5d05ba92de847dc5.bindPopup(popup_c3040e0b01b09389b278a0007f6f7e56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bae81f9e355077d556806685e9f22b8f = L.circleMarker(\\n\",\n       \"                [23.3892, 104.2319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afb872aa740389f4757cb5163049d9d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b7626c6bb4e6bd8ccb78964f0a5ba3d = $(`&lt;div id=&quot;html_1b7626c6bb4e6bd8ccb78964f0a5ba3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.2319             latitude:23.3892             pred_result:27.28302001953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afb872aa740389f4757cb5163049d9d7.setContent(html_1b7626c6bb4e6bd8ccb78964f0a5ba3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bae81f9e355077d556806685e9f22b8f.bindPopup(popup_afb872aa740389f4757cb5163049d9d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4614154996097ec662028f2e0789bcdb = L.circleMarker(\\n\",\n       \"                [22.0019, 100.7939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47b0691af2c171592a765dada5ce8849 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b312fb4dea4d918128f740d9f44b4786 = $(`&lt;div id=&quot;html_b312fb4dea4d918128f740d9f44b4786&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.7939             latitude:22.0019             pred_result:23.07227325439453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47b0691af2c171592a765dada5ce8849.setContent(html_b312fb4dea4d918128f740d9f44b4786);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4614154996097ec662028f2e0789bcdb.bindPopup(popup_47b0691af2c171592a765dada5ce8849)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_02f24494a618c721ab919591cbc03f50 = L.circleMarker(\\n\",\n       \"                [22.0225, 100.8017],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82e0bfc670e3f472cff75f38a071c63f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70bb22181c10b4779af718181a91f804 = $(`&lt;div id=&quot;html_70bb22181c10b4779af718181a91f804&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.8017             latitude:22.0225             pred_result:22.945877075195312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82e0bfc670e3f472cff75f38a071c63f.setContent(html_70bb22181c10b4779af718181a91f804);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_02f24494a618c721ab919591cbc03f50.bindPopup(popup_82e0bfc670e3f472cff75f38a071c63f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77c833d142f2dc7b838dd51661ff7612 = L.circleMarker(\\n\",\n       \"                [25.7054, 100.1542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70ca17de6cd539f0bae8ebbdc3d90800 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8eb644e8f8b70462f0572497ae8b4454 = $(`&lt;div id=&quot;html_8eb644e8f8b70462f0572497ae8b4454&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.1542             latitude:25.7054             pred_result:24.150657653808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70ca17de6cd539f0bae8ebbdc3d90800.setContent(html_8eb644e8f8b70462f0572497ae8b4454);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77c833d142f2dc7b838dd51661ff7612.bindPopup(popup_70ca17de6cd539f0bae8ebbdc3d90800)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa9472cb8127a07beae7ffe681c0b803 = L.circleMarker(\\n\",\n       \"                [25.5811, 100.2171],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfa2dd9ef4197eff8cd5bf735ab8d30a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d86b141f42a3171fea7ddf67a441a90e = $(`&lt;div id=&quot;html_d86b141f42a3171fea7ddf67a441a90e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2171             latitude:25.5811             pred_result:25.209423065185547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfa2dd9ef4197eff8cd5bf735ab8d30a.setContent(html_d86b141f42a3171fea7ddf67a441a90e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa9472cb8127a07beae7ffe681c0b803.bindPopup(popup_bfa2dd9ef4197eff8cd5bf735ab8d30a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54587975dee6a0918ad47c036415a72b = L.circleMarker(\\n\",\n       \"                [24.428, 98.5842],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_64dbe93e78965e0701f30ad0e6fda004 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed1948073fce09f23498aa93fb75f95a = $(`&lt;div id=&quot;html_ed1948073fce09f23498aa93fb75f95a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5842             latitude:24.428             pred_result:30.641437530517578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_64dbe93e78965e0701f30ad0e6fda004.setContent(html_ed1948073fce09f23498aa93fb75f95a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54587975dee6a0918ad47c036415a72b.bindPopup(popup_64dbe93e78965e0701f30ad0e6fda004)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87ae16874c5c65411d3ee7638d780c30 = L.circleMarker(\\n\",\n       \"                [24.441, 98.578],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd31e3ae84bc232c39211831e88be52c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4f4d4496bae5df60cafa7d126dc2b7c = $(`&lt;div id=&quot;html_a4f4d4496bae5df60cafa7d126dc2b7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.578             latitude:24.441             pred_result:30.37864875793457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd31e3ae84bc232c39211831e88be52c.setContent(html_a4f4d4496bae5df60cafa7d126dc2b7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87ae16874c5c65411d3ee7638d780c30.bindPopup(popup_fd31e3ae84bc232c39211831e88be52c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6aa1d111d5ccebf2a17193b88d9ce04c = L.circleMarker(\\n\",\n       \"                [25.8567, 98.8601],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a4ecb09d3a9f910199db0950eca03c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ad906e86d1347b0ed525edc2e7a2d4d = $(`&lt;div id=&quot;html_6ad906e86d1347b0ed525edc2e7a2d4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.8601             latitude:25.8567             pred_result:26.349870681762695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a4ecb09d3a9f910199db0950eca03c4.setContent(html_6ad906e86d1347b0ed525edc2e7a2d4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6aa1d111d5ccebf2a17193b88d9ce04c.bindPopup(popup_2a4ecb09d3a9f910199db0950eca03c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_388fd1acd66b4ea65da8705bb2c93497 = L.circleMarker(\\n\",\n       \"                [25.8417, 98.8546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_451bf48cb07f870ec1126dacc9eeec1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_34b863df76fbb63f5c6354ef5fb14a50 = $(`&lt;div id=&quot;html_34b863df76fbb63f5c6354ef5fb14a50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.8546             latitude:25.8417             pred_result:26.385112762451172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_451bf48cb07f870ec1126dacc9eeec1d.setContent(html_34b863df76fbb63f5c6354ef5fb14a50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_388fd1acd66b4ea65da8705bb2c93497.bindPopup(popup_451bf48cb07f870ec1126dacc9eeec1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3637dd1f1bb82b9e2a6109a462168a4e = L.circleMarker(\\n\",\n       \"                [27.8136, 99.7064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4f33d6637ac6bc3fbe83b8817122f18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2a39a655b3688d817d9728bffe4a78a = $(`&lt;div id=&quot;html_b2a39a655b3688d817d9728bffe4a78a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.7064             latitude:27.8136             pred_result:17.466041564941406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4f33d6637ac6bc3fbe83b8817122f18.setContent(html_b2a39a655b3688d817d9728bffe4a78a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3637dd1f1bb82b9e2a6109a462168a4e.bindPopup(popup_c4f33d6637ac6bc3fbe83b8817122f18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbf0e95e601f24bb1dc1f6aaf2a81884 = L.circleMarker(\\n\",\n       \"                [27.8317, 99.7056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e24f3848e232ad79c0f4d502109db257 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4bde6f9b0f8cd9aac42979319ca0f7a3 = $(`&lt;div id=&quot;html_4bde6f9b0f8cd9aac42979319ca0f7a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.7056             latitude:27.8317             pred_result:17.107444763183594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e24f3848e232ad79c0f4d502109db257.setContent(html_4bde6f9b0f8cd9aac42979319ca0f7a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbf0e95e601f24bb1dc1f6aaf2a81884.bindPopup(popup_e24f3848e232ad79c0f4d502109db257)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57767f8fd9f0f8717dcb6dbd529459ab = L.circleMarker(\\n\",\n       \"                [31.1278, 97.1804],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94ad1a67ce1c282f2a7440ff93eb0da4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3133faa43fa08190893869ac124bbabe = $(`&lt;div id=&quot;html_3133faa43fa08190893869ac124bbabe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.1804             latitude:31.1278             pred_result:11.968575477600098             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94ad1a67ce1c282f2a7440ff93eb0da4.setContent(html_3133faa43fa08190893869ac124bbabe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57767f8fd9f0f8717dcb6dbd529459ab.bindPopup(popup_94ad1a67ce1c282f2a7440ff93eb0da4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68f0d3cb4f16c1df49cadc9e7b27c1cb = L.circleMarker(\\n\",\n       \"                [29.2313, 91.7608],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a72ac5ad773b9c7a9ac3be1a5ce81ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f86f5769b87944f9d7b5f1d87de7be50 = $(`&lt;div id=&quot;html_f86f5769b87944f9d7b5f1d87de7be50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.7608             latitude:29.2313             pred_result:9.759262084960938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a72ac5ad773b9c7a9ac3be1a5ce81ff.setContent(html_f86f5769b87944f9d7b5f1d87de7be50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68f0d3cb4f16c1df49cadc9e7b27c1cb.bindPopup(popup_7a72ac5ad773b9c7a9ac3be1a5ce81ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c8549099484643d91afdf0acccfa1fa = L.circleMarker(\\n\",\n       \"                [29.261, 91.7706],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e589825d20dc827b102b948de18dcef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa3e0a80cbaab2b155370f241c9e798c = $(`&lt;div id=&quot;html_fa3e0a80cbaab2b155370f241c9e798c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.7706             latitude:29.261             pred_result:9.211714744567871             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e589825d20dc827b102b948de18dcef.setContent(html_fa3e0a80cbaab2b155370f241c9e798c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c8549099484643d91afdf0acccfa1fa.bindPopup(popup_2e589825d20dc827b102b948de18dcef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c17e283927987eb0c4381c336a66be2 = L.circleMarker(\\n\",\n       \"                [29.2718, 88.8876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46368d792717f9fa6d52a255fd1fceba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0484111228461d91e907926f6902d682 = $(`&lt;div id=&quot;html_0484111228461d91e907926f6902d682&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.8876             latitude:29.2718             pred_result:18.45389747619629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46368d792717f9fa6d52a255fd1fceba.setContent(html_0484111228461d91e907926f6902d682);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c17e283927987eb0c4381c336a66be2.bindPopup(popup_46368d792717f9fa6d52a255fd1fceba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc64e41210dae4bccc487127d6f16623 = L.circleMarker(\\n\",\n       \"                [31.4846, 92.0657],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a7fbfdfb3c672496e94c2cff31f691a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0b05b7302a421fa116cf46eebab6ef9 = $(`&lt;div id=&quot;html_b0b05b7302a421fa116cf46eebab6ef9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:92.0657             latitude:31.4846             pred_result:14.211183547973633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a7fbfdfb3c672496e94c2cff31f691a.setContent(html_b0b05b7302a421fa116cf46eebab6ef9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc64e41210dae4bccc487127d6f16623.bindPopup(popup_2a7fbfdfb3c672496e94c2cff31f691a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1672ac4431e33db29f3d032f7d83d8cc = L.circleMarker(\\n\",\n       \"                [32.5, 80.1161],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40043f99e8af20efec30af606b528bc1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13fa56697cf63205665f432da8c36ba5 = $(`&lt;div id=&quot;html_13fa56697cf63205665f432da8c36ba5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.1161             latitude:32.5             pred_result:9.178138732910156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40043f99e8af20efec30af606b528bc1.setContent(html_13fa56697cf63205665f432da8c36ba5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1672ac4431e33db29f3d032f7d83d8cc.bindPopup(popup_40043f99e8af20efec30af606b528bc1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2966d71432b88a346ee94a5495fa7f03 = L.circleMarker(\\n\",\n       \"                [29.6376, 94.3681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_06b46f2baab7429367e17e226c1cb818 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_122277e16bca6dc82c4bfbc19c17f0e2 = $(`&lt;div id=&quot;html_122277e16bca6dc82c4bfbc19c17f0e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:94.3681             latitude:29.6376             pred_result:11.350934982299805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_06b46f2baab7429367e17e226c1cb818.setContent(html_122277e16bca6dc82c4bfbc19c17f0e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2966d71432b88a346ee94a5495fa7f03.bindPopup(popup_06b46f2baab7429367e17e226c1cb818)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b54b1b8283f306a0a2c4e566d20ada96 = L.circleMarker(\\n\",\n       \"                [29.6632, 94.3616],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c191f938b69f16fe3f6ae1a0582f41b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_370d8de51e04eac46918614fc8b46b0a = $(`&lt;div id=&quot;html_370d8de51e04eac46918614fc8b46b0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:94.3616             latitude:29.6632             pred_result:11.070430755615234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c191f938b69f16fe3f6ae1a0582f41b.setContent(html_370d8de51e04eac46918614fc8b46b0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b54b1b8283f306a0a2c4e566d20ada96.bindPopup(popup_7c191f938b69f16fe3f6ae1a0582f41b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c0416e8df63c6aa45e803910634bc7c2 = L.circleMarker(\\n\",\n       \"                [33.1842, 106.9893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36dfa499ede6cd2b1da5e881b493b821 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc93f16bf271ed833481b6357773c3d9 = $(`&lt;div id=&quot;html_dc93f16bf271ed833481b6357773c3d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9893             latitude:33.1842             pred_result:39.38729476928711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36dfa499ede6cd2b1da5e881b493b821.setContent(html_dc93f16bf271ed833481b6357773c3d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c0416e8df63c6aa45e803910634bc7c2.bindPopup(popup_36dfa499ede6cd2b1da5e881b493b821)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_765dd9552158229a479f301f5845ecd3 = L.circleMarker(\\n\",\n       \"                [33.0706, 107.0154],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87d47d029f7a9bd215b97b6a42b3d904 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74be7f7ee0e72c6a9c79a04c5de29f07 = $(`&lt;div id=&quot;html_74be7f7ee0e72c6a9c79a04c5de29f07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0154             latitude:33.0706             pred_result:39.24393081665039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87d47d029f7a9bd215b97b6a42b3d904.setContent(html_74be7f7ee0e72c6a9c79a04c5de29f07);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_765dd9552158229a479f301f5845ecd3.bindPopup(popup_87d47d029f7a9bd215b97b6a42b3d904)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba01ae2248f180592c63ff1082987e12 = L.circleMarker(\\n\",\n       \"                [33.1138, 107.0089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb9c5e230310532973e53b4f619d4375 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ee0f29ba9adcc5ca70e1b5dde805ce5 = $(`&lt;div id=&quot;html_1ee0f29ba9adcc5ca70e1b5dde805ce5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0089             latitude:33.1138             pred_result:39.51596450805664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb9c5e230310532973e53b4f619d4375.setContent(html_1ee0f29ba9adcc5ca70e1b5dde805ce5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba01ae2248f180592c63ff1082987e12.bindPopup(popup_fb9c5e230310532973e53b4f619d4375)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21aff48ba4125fd6433536a61ce1b112 = L.circleMarker(\\n\",\n       \"                [33.0323, 107.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_578d2c0eb145a3b2ca5c7de7b82cba8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a15ab13ea5dfbcd8a84e7868a732ba7 = $(`&lt;div id=&quot;html_0a15ab13ea5dfbcd8a84e7868a732ba7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.007             latitude:33.0323             pred_result:38.77663803100586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_578d2c0eb145a3b2ca5c7de7b82cba8f.setContent(html_0a15ab13ea5dfbcd8a84e7868a732ba7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21aff48ba4125fd6433536a61ce1b112.bindPopup(popup_578d2c0eb145a3b2ca5c7de7b82cba8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef95e4bf1a84e745201560a296fd6b24 = L.circleMarker(\\n\",\n       \"                [38.3344, 109.7414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9db1e4cff2a1d14adc44c7d6f684f9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1bf91341dbba59d7f4d7f416b672ca6 = $(`&lt;div id=&quot;html_a1bf91341dbba59d7f4d7f416b672ca6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7414             latitude:38.3344             pred_result:51.975242614746094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9db1e4cff2a1d14adc44c7d6f684f9f.setContent(html_a1bf91341dbba59d7f4d7f416b672ca6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef95e4bf1a84e745201560a296fd6b24.bindPopup(popup_e9db1e4cff2a1d14adc44c7d6f684f9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab77a353d5ef9f9e7ab68eb43bcec3ff = L.circleMarker(\\n\",\n       \"                [38.2911, 109.7456],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33d99f0fc82cacd1fb910df6fc49fdfa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef94c420514a86138a87e81e25c0f0ac = $(`&lt;div id=&quot;html_ef94c420514a86138a87e81e25c0f0ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7456             latitude:38.2911             pred_result:52.76750183105469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33d99f0fc82cacd1fb910df6fc49fdfa.setContent(html_ef94c420514a86138a87e81e25c0f0ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab77a353d5ef9f9e7ab68eb43bcec3ff.bindPopup(popup_33d99f0fc82cacd1fb910df6fc49fdfa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6915100185f5342b3f8c08b0a26c0712 = L.circleMarker(\\n\",\n       \"                [38.2839, 109.7289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af22c79feae3ab9cc963b718fe6ca774 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02194383760d556229b812eb4953446c = $(`&lt;div id=&quot;html_02194383760d556229b812eb4953446c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7289             latitude:38.2839             pred_result:53.84788513183594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af22c79feae3ab9cc963b718fe6ca774.setContent(html_02194383760d556229b812eb4953446c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6915100185f5342b3f8c08b0a26c0712.bindPopup(popup_af22c79feae3ab9cc963b718fe6ca774)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22ee34c0f7b9b2ece7d08b98ea4f116a = L.circleMarker(\\n\",\n       \"                [38.2478, 109.7336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94dbd8e6f4e7590e8ee1f3a83104929f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3009f4184ea370cc07fec9d88d53ae8e = $(`&lt;div id=&quot;html_3009f4184ea370cc07fec9d88d53ae8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7336             latitude:38.2478             pred_result:53.273536682128906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94dbd8e6f4e7590e8ee1f3a83104929f.setContent(html_3009f4184ea370cc07fec9d88d53ae8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22ee34c0f7b9b2ece7d08b98ea4f116a.bindPopup(popup_94dbd8e6f4e7590e8ee1f3a83104929f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08304c4c966019e289a4178128be6354 = L.circleMarker(\\n\",\n       \"                [32.6778, 109.0311],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55ed2face5ec3394f3b4a5c66fadd460 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aba586d0ac6b25a11dbcc164c0a91cbe = $(`&lt;div id=&quot;html_aba586d0ac6b25a11dbcc164c0a91cbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0311             latitude:32.6778             pred_result:12.029794692993164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55ed2face5ec3394f3b4a5c66fadd460.setContent(html_aba586d0ac6b25a11dbcc164c0a91cbe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08304c4c966019e289a4178128be6354.bindPopup(popup_55ed2face5ec3394f3b4a5c66fadd460)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d19c2936af455934c9e1c4ba2818c1eb = L.circleMarker(\\n\",\n       \"                [32.6939, 109.0281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6747c8b3bff5f5128a43e340b642f4f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6210ea8add2f5abe4a091bc46045c4da = $(`&lt;div id=&quot;html_6210ea8add2f5abe4a091bc46045c4da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0281             latitude:32.6939             pred_result:13.32933235168457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6747c8b3bff5f5128a43e340b642f4f2.setContent(html_6210ea8add2f5abe4a091bc46045c4da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d19c2936af455934c9e1c4ba2818c1eb.bindPopup(popup_6747c8b3bff5f5128a43e340b642f4f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7990fbadee9045f03eab40dd9fb529b0 = L.circleMarker(\\n\",\n       \"                [32.6975, 109.0072],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c65d0adf4951990157f5987e635ad0fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_958931fcd1c10d36ee6f9daf231ae5d6 = $(`&lt;div id=&quot;html_958931fcd1c10d36ee6f9daf231ae5d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0072             latitude:32.6975             pred_result:12.82364273071289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c65d0adf4951990157f5987e635ad0fd.setContent(html_958931fcd1c10d36ee6f9daf231ae5d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7990fbadee9045f03eab40dd9fb529b0.bindPopup(popup_c65d0adf4951990157f5987e635ad0fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fb0f3659c2f04d3c17045c6817159b9 = L.circleMarker(\\n\",\n       \"                [33.8715, 109.9154],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90dc6b5340efd543a8d21688b5fcd9c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d2357c76ef0608894ba0769ee9c33ee = $(`&lt;div id=&quot;html_0d2357c76ef0608894ba0769ee9c33ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9154             latitude:33.8715             pred_result:35.545188903808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90dc6b5340efd543a8d21688b5fcd9c8.setContent(html_0d2357c76ef0608894ba0769ee9c33ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fb0f3659c2f04d3c17045c6817159b9.bindPopup(popup_90dc6b5340efd543a8d21688b5fcd9c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6578895b4fe848ee4936eafdeaba6cb = L.circleMarker(\\n\",\n       \"                [36.5458, 104.1731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0baaa520c37d7213564c76db0dabb5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_940f6bcda31280abdcc56e91e3753594 = $(`&lt;div id=&quot;html_940f6bcda31280abdcc56e91e3753594&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1731             latitude:36.5458             pred_result:53.298133850097656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0baaa520c37d7213564c76db0dabb5a.setContent(html_940f6bcda31280abdcc56e91e3753594);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6578895b4fe848ee4936eafdeaba6cb.bindPopup(popup_b0baaa520c37d7213564c76db0dabb5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0bae99543b416b07dc6307047e6129c4 = L.circleMarker(\\n\",\n       \"                [36.5481, 104.1731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d07431a8b10e31f00c8a5129fc709c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3f0a4ce8db072dbfe78d8f13e3ccdb6 = $(`&lt;div id=&quot;html_e3f0a4ce8db072dbfe78d8f13e3ccdb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1731             latitude:36.5481             pred_result:53.447269439697266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d07431a8b10e31f00c8a5129fc709c6.setContent(html_e3f0a4ce8db072dbfe78d8f13e3ccdb6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0bae99543b416b07dc6307047e6129c4.bindPopup(popup_5d07431a8b10e31f00c8a5129fc709c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95a733632067394e530d87051fac7698 = L.circleMarker(\\n\",\n       \"                [34.3469, 106.005],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d798d826d60f5947717d4ea2d7daa05f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0967234cbf805d99b8918b12422b9284 = $(`&lt;div id=&quot;html_0967234cbf805d99b8918b12422b9284&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.005             latitude:34.3469             pred_result:42.32398223876953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d798d826d60f5947717d4ea2d7daa05f.setContent(html_0967234cbf805d99b8918b12422b9284);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95a733632067394e530d87051fac7698.bindPopup(popup_d798d826d60f5947717d4ea2d7daa05f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a08051b80320c60d6c85f31a5e0e2319 = L.circleMarker(\\n\",\n       \"                [34.5814, 105.7281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5e0dec6bb86ac8c2b63adc3c4292355 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c60f8c939d28536011739c493fb00e9 = $(`&lt;div id=&quot;html_9c60f8c939d28536011739c493fb00e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.7281             latitude:34.5814             pred_result:50.81707000732422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5e0dec6bb86ac8c2b63adc3c4292355.setContent(html_9c60f8c939d28536011739c493fb00e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a08051b80320c60d6c85f31a5e0e2319.bindPopup(popup_f5e0dec6bb86ac8c2b63adc3c4292355)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a85238e9223f25227c99b002b99607fb = L.circleMarker(\\n\",\n       \"                [34.5653, 105.8614],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_372e327dec4839ea58a3e7061e1d609e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27aa800abc8551dd364d8d7da7e5b820 = $(`&lt;div id=&quot;html_27aa800abc8551dd364d8d7da7e5b820&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8614             latitude:34.5653             pred_result:50.642452239990234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_372e327dec4839ea58a3e7061e1d609e.setContent(html_27aa800abc8551dd364d8d7da7e5b820);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a85238e9223f25227c99b002b99607fb.bindPopup(popup_372e327dec4839ea58a3e7061e1d609e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f25c7e022101d11f5ef0cc74cd853163 = L.circleMarker(\\n\",\n       \"                [37.9311, 102.6219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d48ab64bdc803275792ac7ca7cea430 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2cf4652ba85c0b6d1406617969d7b2c = $(`&lt;div id=&quot;html_a2cf4652ba85c0b6d1406617969d7b2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6219             latitude:37.9311             pred_result:47.333980560302734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d48ab64bdc803275792ac7ca7cea430.setContent(html_a2cf4652ba85c0b6d1406617969d7b2c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f25c7e022101d11f5ef0cc74cd853163.bindPopup(popup_7d48ab64bdc803275792ac7ca7cea430)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16a16f6cb3224cdde5087d93b1028d6e = L.circleMarker(\\n\",\n       \"                [37.9358, 102.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb6225ef32e7f8ba2396a979e2f26bec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29e7d6d8b52a0db39aa5a78c7e075f13 = $(`&lt;div id=&quot;html_29e7d6d8b52a0db39aa5a78c7e075f13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6469             latitude:37.9358             pred_result:47.351707458496094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb6225ef32e7f8ba2396a979e2f26bec.setContent(html_29e7d6d8b52a0db39aa5a78c7e075f13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16a16f6cb3224cdde5087d93b1028d6e.bindPopup(popup_cb6225ef32e7f8ba2396a979e2f26bec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0bc618530edf833dc676fe3ee107a3a8 = L.circleMarker(\\n\",\n       \"                [38.9467, 100.4686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_918f80d5616b5d6a173b632dbe29bdee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_816cc12e744bd936484812e2e12bdfbe = $(`&lt;div id=&quot;html_816cc12e744bd936484812e2e12bdfbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.4686             latitude:38.9467             pred_result:32.855079650878906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_918f80d5616b5d6a173b632dbe29bdee.setContent(html_816cc12e744bd936484812e2e12bdfbe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0bc618530edf833dc676fe3ee107a3a8.bindPopup(popup_918f80d5616b5d6a173b632dbe29bdee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24a8cda42384bef97543deb77cae44ab = L.circleMarker(\\n\",\n       \"                [38.9389, 100.4497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70a22c203b2520bbeb1ac5c484373cef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf866b2096edfa08a70ee6a571dba1c9 = $(`&lt;div id=&quot;html_bf866b2096edfa08a70ee6a571dba1c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.4497             latitude:38.9389             pred_result:31.813322067260742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70a22c203b2520bbeb1ac5c484373cef.setContent(html_bf866b2096edfa08a70ee6a571dba1c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24a8cda42384bef97543deb77cae44ab.bindPopup(popup_70a22c203b2520bbeb1ac5c484373cef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8eeb65bf5331aa01ac9791348a626f72 = L.circleMarker(\\n\",\n       \"                [35.5461, 106.6692],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17601ae0e2baf169a7fd12b73973191f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92de2b76e0a1145579e828133dc9344d = $(`&lt;div id=&quot;html_92de2b76e0a1145579e828133dc9344d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6692             latitude:35.5461             pred_result:43.771793365478516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17601ae0e2baf169a7fd12b73973191f.setContent(html_92de2b76e0a1145579e828133dc9344d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8eeb65bf5331aa01ac9791348a626f72.bindPopup(popup_17601ae0e2baf169a7fd12b73973191f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5dd936f2404c275cb620db7b8e8036b6 = L.circleMarker(\\n\",\n       \"                [35.5294, 106.7039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9b253fbf0e53f03d6c57ee7f56bd51a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d223eda8723613ade5d70e7452c21de9 = $(`&lt;div id=&quot;html_d223eda8723613ade5d70e7452c21de9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7039             latitude:35.5294             pred_result:45.15369415283203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9b253fbf0e53f03d6c57ee7f56bd51a.setContent(html_d223eda8723613ade5d70e7452c21de9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5dd936f2404c275cb620db7b8e8036b6.bindPopup(popup_a9b253fbf0e53f03d6c57ee7f56bd51a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fc9a129b113b68c2be6568363a033b5 = L.circleMarker(\\n\",\n       \"                [39.746, 98.509],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee61c1f0b319e1a0dcd11d75cadcdf47 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af8cc527f5c5366dfd4df0f7c120e7be = $(`&lt;div id=&quot;html_af8cc527f5c5366dfd4df0f7c120e7be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.509             latitude:39.746             pred_result:23.202167510986328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee61c1f0b319e1a0dcd11d75cadcdf47.setContent(html_af8cc527f5c5366dfd4df0f7c120e7be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fc9a129b113b68c2be6568363a033b5.bindPopup(popup_ee61c1f0b319e1a0dcd11d75cadcdf47)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc0012b89a03638e4c7995ed09034e6f = L.circleMarker(\\n\",\n       \"                [39.7294, 98.5023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a2358976ec128fab70e30bdd8be3a51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5674b9ede15845e88ced7171530b6d1 = $(`&lt;div id=&quot;html_d5674b9ede15845e88ced7171530b6d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5023             latitude:39.7294             pred_result:23.052322387695312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a2358976ec128fab70e30bdd8be3a51.setContent(html_d5674b9ede15845e88ced7171530b6d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc0012b89a03638e4c7995ed09034e6f.bindPopup(popup_4a2358976ec128fab70e30bdd8be3a51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46baaea9080b34c458a13df87a9d8923 = L.circleMarker(\\n\",\n       \"                [35.7289, 107.6831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfeeecc1d868aaf558387976b5a96835 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06b55cf3a084a8bd141f3fae17678841 = $(`&lt;div id=&quot;html_06b55cf3a084a8bd141f3fae17678841&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6831             latitude:35.7289             pred_result:48.92475509643555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfeeecc1d868aaf558387976b5a96835.setContent(html_06b55cf3a084a8bd141f3fae17678841);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46baaea9080b34c458a13df87a9d8923.bindPopup(popup_dfeeecc1d868aaf558387976b5a96835)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aaa202cccecd440abde168e9cac934c8 = L.circleMarker(\\n\",\n       \"                [35.5236, 107.6406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9aed22c508f886e8e27d88cca15d1000 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38bbdd352e0b5422f6d6d5382532029f = $(`&lt;div id=&quot;html_38bbdd352e0b5422f6d6d5382532029f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6406             latitude:35.5236             pred_result:51.479026794433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9aed22c508f886e8e27d88cca15d1000.setContent(html_38bbdd352e0b5422f6d6d5382532029f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aaa202cccecd440abde168e9cac934c8.bindPopup(popup_9aed22c508f886e8e27d88cca15d1000)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec96f2258ec7ba4cd9e0a66040897fb5 = L.circleMarker(\\n\",\n       \"                [35.7067, 107.6364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55b5b40947732ec4b6360cd069537ca8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b071f22ddada81b6f4e2a05e4c385b3 = $(`&lt;div id=&quot;html_0b071f22ddada81b6f4e2a05e4c385b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6364             latitude:35.7067             pred_result:50.193138122558594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55b5b40947732ec4b6360cd069537ca8.setContent(html_0b071f22ddada81b6f4e2a05e4c385b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec96f2258ec7ba4cd9e0a66040897fb5.bindPopup(popup_55b5b40947732ec4b6360cd069537ca8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ca6d5bb7f6add4a92e6377997bf6077 = L.circleMarker(\\n\",\n       \"                [35.5714, 104.6228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73c1adb727a339cd8e53489558042fd2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe834ae41f83d33db1bf61d8b9cdca4d = $(`&lt;div id=&quot;html_fe834ae41f83d33db1bf61d8b9cdca4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6228             latitude:35.5714             pred_result:50.293357849121094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73c1adb727a339cd8e53489558042fd2.setContent(html_fe834ae41f83d33db1bf61d8b9cdca4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ca6d5bb7f6add4a92e6377997bf6077.bindPopup(popup_73c1adb727a339cd8e53489558042fd2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06cdd327e7020ba18bbd798fff2f7f26 = L.circleMarker(\\n\",\n       \"                [35.5975, 104.6169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6d2fe2d0cb16f050f1a8bbc56395f2f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a266c9b2650c5ad12c89ed9b3304032 = $(`&lt;div id=&quot;html_0a266c9b2650c5ad12c89ed9b3304032&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6169             latitude:35.5975             pred_result:50.51502227783203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6d2fe2d0cb16f050f1a8bbc56395f2f6.setContent(html_0a266c9b2650c5ad12c89ed9b3304032);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06cdd327e7020ba18bbd798fff2f7f26.bindPopup(popup_6d2fe2d0cb16f050f1a8bbc56395f2f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fcf8766e0d987a4d900e2f2ea9493c72 = L.circleMarker(\\n\",\n       \"                [33.3261, 105.0822],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99640ed2e76290ab2cc31c3dce48d23d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a01d6d24c59c6c38848ae668f87be19c = $(`&lt;div id=&quot;html_a01d6d24c59c6c38848ae668f87be19c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0822             latitude:33.3261             pred_result:38.47050094604492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99640ed2e76290ab2cc31c3dce48d23d.setContent(html_a01d6d24c59c6c38848ae668f87be19c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fcf8766e0d987a4d900e2f2ea9493c72.bindPopup(popup_99640ed2e76290ab2cc31c3dce48d23d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8c43b0e0089333ac8ba1fe2b6940d70 = L.circleMarker(\\n\",\n       \"                [35.6039, 103.2139],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdd9a252e1b493d34f5cbc571d569e1c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bad6dc8647a59ea89ae8fa7ab2e01a42 = $(`&lt;div id=&quot;html_bad6dc8647a59ea89ae8fa7ab2e01a42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.2139             latitude:35.6039             pred_result:50.54526901245117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdd9a252e1b493d34f5cbc571d569e1c.setContent(html_bad6dc8647a59ea89ae8fa7ab2e01a42);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8c43b0e0089333ac8ba1fe2b6940d70.bindPopup(popup_fdd9a252e1b493d34f5cbc571d569e1c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eaf9c589dd7424ef34be52de9c119775 = L.circleMarker(\\n\",\n       \"                [35.5997, 103.2064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_defc60c49513f8f03cc3b18d95818c79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3cd3d36c87362cd9bae4cc4d10e349c3 = $(`&lt;div id=&quot;html_3cd3d36c87362cd9bae4cc4d10e349c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.2064             latitude:35.5997             pred_result:50.55530548095703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_defc60c49513f8f03cc3b18d95818c79.setContent(html_3cd3d36c87362cd9bae4cc4d10e349c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eaf9c589dd7424ef34be52de9c119775.bindPopup(popup_defc60c49513f8f03cc3b18d95818c79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a299d5d4bf3042efd659e0fa3425237 = L.circleMarker(\\n\",\n       \"                [35.0003, 102.905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4386bf2e7e3c716171db7a938a6942f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2f8fa82c7258fbc0a0001e46ccc3ce0 = $(`&lt;div id=&quot;html_c2f8fa82c7258fbc0a0001e46ccc3ce0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.905             latitude:35.0003             pred_result:41.685455322265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4386bf2e7e3c716171db7a938a6942f.setContent(html_c2f8fa82c7258fbc0a0001e46ccc3ce0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a299d5d4bf3042efd659e0fa3425237.bindPopup(popup_b4386bf2e7e3c716171db7a938a6942f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5d2984bec58f488244fe44b3bce2a65 = L.circleMarker(\\n\",\n       \"                [36.9639, 100.9048],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81a569954be719ff91a50f23c757384c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d15c7a37ee55daf0e095472c659a0f1 = $(`&lt;div id=&quot;html_9d15c7a37ee55daf0e095472c659a0f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.9048             latitude:36.9639             pred_result:42.31001663208008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81a569954be719ff91a50f23c757384c.setContent(html_9d15c7a37ee55daf0e095472c659a0f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5d2984bec58f488244fe44b3bce2a65.bindPopup(popup_81a569954be719ff91a50f23c757384c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b98d7cc2a16bc16bdd3cb08c285dec07 = L.circleMarker(\\n\",\n       \"                [35.5102, 102.0199],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_593d004c6fb29eef1412fdd74c610158 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_45620a4c981215fb0dea657d2570a20b = $(`&lt;div id=&quot;html_45620a4c981215fb0dea657d2570a20b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.0199             latitude:35.5102             pred_result:45.05231857299805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_593d004c6fb29eef1412fdd74c610158.setContent(html_45620a4c981215fb0dea657d2570a20b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b98d7cc2a16bc16bdd3cb08c285dec07.bindPopup(popup_593d004c6fb29eef1412fdd74c610158)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44608112d69a6038c9dcbfa2da9e2d39 = L.circleMarker(\\n\",\n       \"                [36.2866, 100.6188],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cccb9f7130a2d1ddb121af3aa86feadf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_488349bb1bb93c14e962f0205ae3ffdc = $(`&lt;div id=&quot;html_488349bb1bb93c14e962f0205ae3ffdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.6188             latitude:36.2866             pred_result:42.344627380371094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cccb9f7130a2d1ddb121af3aa86feadf.setContent(html_488349bb1bb93c14e962f0205ae3ffdc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44608112d69a6038c9dcbfa2da9e2d39.bindPopup(popup_cccb9f7130a2d1ddb121af3aa86feadf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c0119f276668afdd8c4894145140b5b = L.circleMarker(\\n\",\n       \"                [34.4714, 100.2561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8dcd0672c0ee1e9c8cf5d1577d8dd853 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d7fb894105080564ac7f652fbd76a8e = $(`&lt;div id=&quot;html_7d7fb894105080564ac7f652fbd76a8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2561             latitude:34.4714             pred_result:25.631702423095703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8dcd0672c0ee1e9c8cf5d1577d8dd853.setContent(html_7d7fb894105080564ac7f652fbd76a8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c0119f276668afdd8c4894145140b5b.bindPopup(popup_8dcd0672c0ee1e9c8cf5d1577d8dd853)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f12354dfa1cfadfb1580922af43497e = L.circleMarker(\\n\",\n       \"                [33.0014, 97.0],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e42b8b711cbc993293a9f85131a3c8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eabbedbff9d7b28f951fae2b98a8d43a = $(`&lt;div id=&quot;html_eabbedbff9d7b28f951fae2b98a8d43a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.0             latitude:33.0014             pred_result:13.79109001159668             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e42b8b711cbc993293a9f85131a3c8f.setContent(html_eabbedbff9d7b28f951fae2b98a8d43a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f12354dfa1cfadfb1580922af43497e.bindPopup(popup_9e42b8b711cbc993293a9f85131a3c8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6fdf48455cc73f4a4088e9c50cdf44e9 = L.circleMarker(\\n\",\n       \"                [37.3753, 97.3731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e63e9dd8e4ba9a5a8e5a6528c1ca790 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5e455a86a2657f04615ef2f33fd2626 = $(`&lt;div id=&quot;html_a5e455a86a2657f04615ef2f33fd2626&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.3731             latitude:37.3753             pred_result:27.5550537109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e63e9dd8e4ba9a5a8e5a6528c1ca790.setContent(html_a5e455a86a2657f04615ef2f33fd2626);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6fdf48455cc73f4a4088e9c50cdf44e9.bindPopup(popup_5e63e9dd8e4ba9a5a8e5a6528c1ca790)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a46c83fbaf21f376ae0831602cefb2b1 = L.circleMarker(\\n\",\n       \"                [37.9648, 106.1532],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9500f50371b0197b5d44263b67793cd7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15ac9ca62d56aeadf110d50e554b5c15 = $(`&lt;div id=&quot;html_15ac9ca62d56aeadf110d50e554b5c15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1532             latitude:37.9648             pred_result:61.61473083496094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9500f50371b0197b5d44263b67793cd7.setContent(html_15ac9ca62d56aeadf110d50e554b5c15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a46c83fbaf21f376ae0831602cefb2b1.bindPopup(popup_9500f50371b0197b5d44263b67793cd7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bee67fd9f3470378a098b778526c2789 = L.circleMarker(\\n\",\n       \"                [37.9844, 106.2025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_069a473b7f1280939ddac17716cf2fc6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_32a35d7cea7eb865ef8f9b9c6d8fa997 = $(`&lt;div id=&quot;html_32a35d7cea7eb865ef8f9b9c6d8fa997&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2025             latitude:37.9844             pred_result:62.0067024230957             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_069a473b7f1280939ddac17716cf2fc6.setContent(html_32a35d7cea7eb865ef8f9b9c6d8fa997);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bee67fd9f3470378a098b778526c2789.bindPopup(popup_069a473b7f1280939ddac17716cf2fc6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67af4e1283d83ef7d4698e559626091f = L.circleMarker(\\n\",\n       \"                [37.9723, 106.196],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17016e85ed1a3a9d394dbc51814289a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a016b6b76edcb1967f16fa510161ff51 = $(`&lt;div id=&quot;html_a016b6b76edcb1967f16fa510161ff51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.196             latitude:37.9723             pred_result:62.06977081298828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17016e85ed1a3a9d394dbc51814289a4.setContent(html_a016b6b76edcb1967f16fa510161ff51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67af4e1283d83ef7d4698e559626091f.bindPopup(popup_17016e85ed1a3a9d394dbc51814289a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_306546644eddd5a24fe51d50ea29e301 = L.circleMarker(\\n\",\n       \"                [37.4514, 105.0197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66bcdedf10b210fa51c7e54d72d52943 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4dd35cb63f8a102e139da61e85b99356 = $(`&lt;div id=&quot;html_4dd35cb63f8a102e139da61e85b99356&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0197             latitude:37.4514             pred_result:57.04521942138672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66bcdedf10b210fa51c7e54d72d52943.setContent(html_4dd35cb63f8a102e139da61e85b99356);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_306546644eddd5a24fe51d50ea29e301.bindPopup(popup_66bcdedf10b210fa51c7e54d72d52943)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_160a0425d271de5feeb76a8f0ad44371 = L.circleMarker(\\n\",\n       \"                [37.0172, 105.18],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db8a0a8f2f38d312987a1c6b3d54e075 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c82f63c246962265207bb91c3ec396dc = $(`&lt;div id=&quot;html_c82f63c246962265207bb91c3ec396dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.18             latitude:37.0172             pred_result:50.85680389404297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db8a0a8f2f38d312987a1c6b3d54e075.setContent(html_c82f63c246962265207bb91c3ec396dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_160a0425d271de5feeb76a8f0ad44371.bindPopup(popup_db8a0a8f2f38d312987a1c6b3d54e075)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39ee0503f1dd30d288a7e0e098fefb84 = L.circleMarker(\\n\",\n       \"                [37.5002, 105.1971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f30e3227d7496fca9fb2c2c66286726 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9918bc3e86ab2b00b54b0de1ae6f08e4 = $(`&lt;div id=&quot;html_9918bc3e86ab2b00b54b0de1ae6f08e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.1971             latitude:37.5002             pred_result:58.60676193237305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f30e3227d7496fca9fb2c2c66286726.setContent(html_9918bc3e86ab2b00b54b0de1ae6f08e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39ee0503f1dd30d288a7e0e098fefb84.bindPopup(popup_2f30e3227d7496fca9fb2c2c66286726)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6428b4306b11c33292307db84ca6a0ee = L.circleMarker(\\n\",\n       \"                [36.1417, 106.2319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af1532bf032cbb7c82b05eb8bed91725 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d907521bcc49f5be2dbc658643961d3b = $(`&lt;div id=&quot;html_d907521bcc49f5be2dbc658643961d3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2319             latitude:36.1417             pred_result:46.11534881591797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af1532bf032cbb7c82b05eb8bed91725.setContent(html_d907521bcc49f5be2dbc658643961d3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6428b4306b11c33292307db84ca6a0ee.bindPopup(popup_af1532bf032cbb7c82b05eb8bed91725)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_611cb340b8d2df4aa821549b99c21e23 = L.circleMarker(\\n\",\n       \"                [36.0022, 106.2792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c58ec70bad3c7a44a2ef4807d8281f4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee56328416151c12abf6dd4fc12c4e50 = $(`&lt;div id=&quot;html_ee56328416151c12abf6dd4fc12c4e50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2792             latitude:36.0022             pred_result:43.11001205444336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c58ec70bad3c7a44a2ef4807d8281f4b.setContent(html_ee56328416151c12abf6dd4fc12c4e50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_611cb340b8d2df4aa821549b99c21e23.bindPopup(popup_c58ec70bad3c7a44a2ef4807d8281f4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ff3597570d016bae9c96daa4c3267ce = L.circleMarker(\\n\",\n       \"                [36.0211, 106.2375],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a16cd0ec4982a01df336aa0e4af7b005 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f8e529837157416f9efac15c3787ee2d = $(`&lt;div id=&quot;html_f8e529837157416f9efac15c3787ee2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2375             latitude:36.0211             pred_result:42.999725341796875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a16cd0ec4982a01df336aa0e4af7b005.setContent(html_f8e529837157416f9efac15c3787ee2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ff3597570d016bae9c96daa4c3267ce.bindPopup(popup_a16cd0ec4982a01df336aa0e4af7b005)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6512ce06f8be3f1cd77ec3316d1ea22 = L.circleMarker(\\n\",\n       \"                [42.9409, 89.191],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0ab641ac63cbb4b72362ff8f17c26488 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8fbceb39b0b2a5a7752d3f48749fd55b = $(`&lt;div id=&quot;html_8fbceb39b0b2a5a7752d3f48749fd55b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:89.191             latitude:42.9409             pred_result:41.903560638427734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0ab641ac63cbb4b72362ff8f17c26488.setContent(html_8fbceb39b0b2a5a7752d3f48749fd55b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6512ce06f8be3f1cd77ec3316d1ea22.bindPopup(popup_0ab641ac63cbb4b72362ff8f17c26488)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d8fa0ab4d872007cc56f613a993cddd = L.circleMarker(\\n\",\n       \"                [42.9559, 89.1673],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6dfa46407d7c7a8cf66a45eb32cca9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8987f39fb42934e6e7a06d7fdf209329 = $(`&lt;div id=&quot;html_8987f39fb42934e6e7a06d7fdf209329&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:89.1673             latitude:42.9559             pred_result:39.28279113769531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6dfa46407d7c7a8cf66a45eb32cca9f.setContent(html_8987f39fb42934e6e7a06d7fdf209329);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d8fa0ab4d872007cc56f613a993cddd.bindPopup(popup_b6dfa46407d7c7a8cf66a45eb32cca9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9377e235f38109d7005a846e8eda743f = L.circleMarker(\\n\",\n       \"                [42.8172, 93.5128],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_587921e6048185aa33f7208e75977611 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_775be533316abbdc044f9a44d36818fe = $(`&lt;div id=&quot;html_775be533316abbdc044f9a44d36818fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:93.5128             latitude:42.8172             pred_result:22.173738479614258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_587921e6048185aa33f7208e75977611.setContent(html_775be533316abbdc044f9a44d36818fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9377e235f38109d7005a846e8eda743f.bindPopup(popup_587921e6048185aa33f7208e75977611)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_211b0b8d90e452d99fd2cf5869b0e887 = L.circleMarker(\\n\",\n       \"                [42.8328, 93.4961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3b2a7e058e3f8d1b67c90debde6110c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd502f3e10976a57549ab6072b503d78 = $(`&lt;div id=&quot;html_dd502f3e10976a57549ab6072b503d78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:93.4961             latitude:42.8328             pred_result:20.036212921142578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3b2a7e058e3f8d1b67c90debde6110c.setContent(html_dd502f3e10976a57549ab6072b503d78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_211b0b8d90e452d99fd2cf5869b0e887.bindPopup(popup_e3b2a7e058e3f8d1b67c90debde6110c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91cf2455482c0e1cd81b325c8c94e39f = L.circleMarker(\\n\",\n       \"                [44.1564, 87.9897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0aebe795a597107542a0d080440b8e16 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae076445e9a2a3eafca56e3d61cdf3e7 = $(`&lt;div id=&quot;html_ae076445e9a2a3eafca56e3d61cdf3e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.9897             latitude:44.1564             pred_result:41.27934646606445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0aebe795a597107542a0d080440b8e16.setContent(html_ae076445e9a2a3eafca56e3d61cdf3e7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91cf2455482c0e1cd81b325c8c94e39f.bindPopup(popup_0aebe795a597107542a0d080440b8e16)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5486f90b697bb440be3457b8e5fd66d = L.circleMarker(\\n\",\n       \"                [44.0114, 87.2997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79a76323151fd869c757cd2af6a2f766 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0a302c83bc4e59b7c87b7739cde0ea0 = $(`&lt;div id=&quot;html_b0a302c83bc4e59b7c87b7739cde0ea0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2997             latitude:44.0114             pred_result:63.296714782714844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79a76323151fd869c757cd2af6a2f766.setContent(html_b0a302c83bc4e59b7c87b7739cde0ea0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5486f90b697bb440be3457b8e5fd66d.bindPopup(popup_79a76323151fd869c757cd2af6a2f766)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c7e3b2d9fc77eeccf0bb174431d3d1c = L.circleMarker(\\n\",\n       \"                [44.0297, 87.2717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f7ca5458cfbe17fe96cb9fbf8c0701d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_696b0633c59db02a6fc74e4944340276 = $(`&lt;div id=&quot;html_696b0633c59db02a6fc74e4944340276&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2717             latitude:44.0297             pred_result:54.194496154785156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f7ca5458cfbe17fe96cb9fbf8c0701d.setContent(html_696b0633c59db02a6fc74e4944340276);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c7e3b2d9fc77eeccf0bb174431d3d1c.bindPopup(popup_8f7ca5458cfbe17fe96cb9fbf8c0701d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82cdf6b3f7a4b1206763db8edbc1fb31 = L.circleMarker(\\n\",\n       \"                [44.9079, 82.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_959052e0e720845690e0b6efdf18fb3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f0ac558fa765f03cafaae2facfc8587 = $(`&lt;div id=&quot;html_8f0ac558fa765f03cafaae2facfc8587&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.0485             latitude:44.9079             pred_result:58.40602111816406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_959052e0e720845690e0b6efdf18fb3f.setContent(html_8f0ac558fa765f03cafaae2facfc8587);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82cdf6b3f7a4b1206763db8edbc1fb31.bindPopup(popup_959052e0e720845690e0b6efdf18fb3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b1837f07366327bc43d38c0d7ac9cb5 = L.circleMarker(\\n\",\n       \"                [44.8969, 82.0806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_774318438591e644c5f244e5ec41e831 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5acff06c6293f6897a61c3595981ecab = $(`&lt;div id=&quot;html_5acff06c6293f6897a61c3595981ecab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.0806             latitude:44.8969             pred_result:67.95757293701172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_774318438591e644c5f244e5ec41e831.setContent(html_5acff06c6293f6897a61c3595981ecab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b1837f07366327bc43d38c0d7ac9cb5.bindPopup(popup_774318438591e644c5f244e5ec41e831)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95b3ed94b7d5e91d12461facc779f6a3 = L.circleMarker(\\n\",\n       \"                [41.1636, 80.2828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58cda687eb2f4e641d2b95b12d089ceb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cb7f454636c1bc6b4fdb38a10b56571 = $(`&lt;div id=&quot;html_8cb7f454636c1bc6b4fdb38a10b56571&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2828             latitude:41.1636             pred_result:64.57630920410156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58cda687eb2f4e641d2b95b12d089ceb.setContent(html_8cb7f454636c1bc6b4fdb38a10b56571);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95b3ed94b7d5e91d12461facc779f6a3.bindPopup(popup_58cda687eb2f4e641d2b95b12d089ceb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c2009d7d8307885052575e19ffa7e38 = L.circleMarker(\\n\",\n       \"                [41.1933, 80.2956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85cefd830f550f88697b01d9b8d39bac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21553f67fa703ef45e342170eb5aced4 = $(`&lt;div id=&quot;html_21553f67fa703ef45e342170eb5aced4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2956             latitude:41.1933             pred_result:64.04610443115234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85cefd830f550f88697b01d9b8d39bac.setContent(html_21553f67fa703ef45e342170eb5aced4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c2009d7d8307885052575e19ffa7e38.bindPopup(popup_85cefd830f550f88697b01d9b8d39bac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e736d9eb94e849a020267c228e1428b5 = L.circleMarker(\\n\",\n       \"                [39.7153, 76.1861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f27ebd7d47e952bb0e67a836f6f53596 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0c093ec90252d777d893c8c660c10d3 = $(`&lt;div id=&quot;html_a0c093ec90252d777d893c8c660c10d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:76.1861             latitude:39.7153             pred_result:111.80522155761719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f27ebd7d47e952bb0e67a836f6f53596.setContent(html_a0c093ec90252d777d893c8c660c10d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e736d9eb94e849a020267c228e1428b5.bindPopup(popup_f27ebd7d47e952bb0e67a836f6f53596)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e22ea1248194485df5553c1d303c9d9 = L.circleMarker(\\n\",\n       \"                [39.5371, 75.9828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69d3e5bbb39c8a193eb2271e15c95c19 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6951c134ee99b981fb0ac2691b280141 = $(`&lt;div id=&quot;html_6951c134ee99b981fb0ac2691b280141&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:75.9828             latitude:39.5371             pred_result:92.244384765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69d3e5bbb39c8a193eb2271e15c95c19.setContent(html_6951c134ee99b981fb0ac2691b280141);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e22ea1248194485df5553c1d303c9d9.bindPopup(popup_69d3e5bbb39c8a193eb2271e15c95c19)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf2973c5d69365eac33421869ebeee88 = L.circleMarker(\\n\",\n       \"                [39.4365, 75.9435],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bef436801efea26d6d6c2dc0b85096e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4a2d0b62eb31e0e69534e3a06aa5ecc = $(`&lt;div id=&quot;html_d4a2d0b62eb31e0e69534e3a06aa5ecc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:75.9435             latitude:39.4365             pred_result:87.28868103027344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bef436801efea26d6d6c2dc0b85096e0.setContent(html_d4a2d0b62eb31e0e69534e3a06aa5ecc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf2973c5d69365eac33421869ebeee88.bindPopup(popup_bef436801efea26d6d6c2dc0b85096e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e13fa1470d8afad1c8816616980e6128 = L.circleMarker(\\n\",\n       \"                [37.1152, 79.9485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86963796ba36897ff17a2688b6e96f2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2af3f1ed5ec80f76e8cd78ab60284c0 = $(`&lt;div id=&quot;html_e2af3f1ed5ec80f76e8cd78ab60284c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:79.9485             latitude:37.1152             pred_result:90.31441497802734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86963796ba36897ff17a2688b6e96f2a.setContent(html_e2af3f1ed5ec80f76e8cd78ab60284c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e13fa1470d8afad1c8816616980e6128.bindPopup(popup_86963796ba36897ff17a2688b6e96f2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5788a4c9d7f1a5c4f4fab4e2af7d25b5 = L.circleMarker(\\n\",\n       \"                [37.1013, 79.9117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82f9f6b5f2472f7bae1a1c6d9d7647f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f37da36e6841500c8f6d010be91142a = $(`&lt;div id=&quot;html_5f37da36e6841500c8f6d010be91142a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:79.9117             latitude:37.1013             pred_result:91.23922729492188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82f9f6b5f2472f7bae1a1c6d9d7647f8.setContent(html_5f37da36e6841500c8f6d010be91142a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5788a4c9d7f1a5c4f4fab4e2af7d25b5.bindPopup(popup_82f9f6b5f2472f7bae1a1c6d9d7647f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c91f4fbd71df7d1d9bf9b286108408f1 = L.circleMarker(\\n\",\n       \"                [43.9404, 81.2815],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dff0aeadcf2cdd3c45aec3444ba931ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b8954eb5d2a71ea344b1f86e40b2dd9 = $(`&lt;div id=&quot;html_4b8954eb5d2a71ea344b1f86e40b2dd9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.2815             latitude:43.9404             pred_result:85.00800323486328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dff0aeadcf2cdd3c45aec3444ba931ff.setContent(html_4b8954eb5d2a71ea344b1f86e40b2dd9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c91f4fbd71df7d1d9bf9b286108408f1.bindPopup(popup_dff0aeadcf2cdd3c45aec3444ba931ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c0349f9c84be11a2b9c14232454ce26 = L.circleMarker(\\n\",\n       \"                [43.895, 81.2867],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d32e2b940864ac24efa97f74e5a7041c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6878ad3e1f773908d4a59dbe73248303 = $(`&lt;div id=&quot;html_6878ad3e1f773908d4a59dbe73248303&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.2867             latitude:43.895             pred_result:79.35567474365234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d32e2b940864ac24efa97f74e5a7041c.setContent(html_6878ad3e1f773908d4a59dbe73248303);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c0349f9c84be11a2b9c14232454ce26.bindPopup(popup_d32e2b940864ac24efa97f74e5a7041c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_463884c3fa6e17118bea639e1440b205 = L.circleMarker(\\n\",\n       \"                [43.941, 81.3364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80574555fbf53f7ea452ecd45a032f7b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6f6faf4c0fa4d9d8dd00d755eb83fac = $(`&lt;div id=&quot;html_d6f6faf4c0fa4d9d8dd00d755eb83fac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.3364             latitude:43.941             pred_result:76.69918823242188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80574555fbf53f7ea452ecd45a032f7b.setContent(html_d6f6faf4c0fa4d9d8dd00d755eb83fac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_463884c3fa6e17118bea639e1440b205.bindPopup(popup_80574555fbf53f7ea452ecd45a032f7b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d30063549df2b70c81de36d670736624 = L.circleMarker(\\n\",\n       \"                [46.7432, 82.9994],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69634f4855b39f88d161dc362cf80784 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7321ecaac7d482fa6ecc14976565cc2 = $(`&lt;div id=&quot;html_f7321ecaac7d482fa6ecc14976565cc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.9994             latitude:46.7432             pred_result:27.348270416259766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69634f4855b39f88d161dc362cf80784.setContent(html_f7321ecaac7d482fa6ecc14976565cc2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d30063549df2b70c81de36d670736624.bindPopup(popup_69634f4855b39f88d161dc362cf80784)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_507ebb72afd3c14e55ba4ca39a7ed49a = L.circleMarker(\\n\",\n       \"                [47.9047, 88.1214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f91cb31e5896d436b9aea56ebaa006c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba3895d8d65d27e27423e9dab7a1de5a = $(`&lt;div id=&quot;html_ba3895d8d65d27e27423e9dab7a1de5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.1214             latitude:47.9047             pred_result:16.819929122924805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f91cb31e5896d436b9aea56ebaa006c.setContent(html_ba3895d8d65d27e27423e9dab7a1de5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_507ebb72afd3c14e55ba4ca39a7ed49a.bindPopup(popup_4f91cb31e5896d436b9aea56ebaa006c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8aafd06468280d7d046bcea0d543f1f7 = L.circleMarker(\\n\",\n       \"                [47.8515, 88.1267],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f359b62adbbb38a0025b544a4af8435 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c144a53e592784b19a5db6207a9cab00 = $(`&lt;div id=&quot;html_c144a53e592784b19a5db6207a9cab00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.1267             latitude:47.8515             pred_result:23.112934112548828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f359b62adbbb38a0025b544a4af8435.setContent(html_c144a53e592784b19a5db6207a9cab00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8aafd06468280d7d046bcea0d543f1f7.bindPopup(popup_8f359b62adbbb38a0025b544a4af8435)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03e66f013ccefb5675dbd8c764f6dd81 = L.circleMarker(\\n\",\n       \"                [44.2967, 86.0497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12319ec58f845388d5eb828956f9ab43 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db456173477c540c61fef552ba289dfb = $(`&lt;div id=&quot;html_db456173477c540c61fef552ba289dfb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.0497             latitude:44.2967             pred_result:62.820640563964844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12319ec58f845388d5eb828956f9ab43.setContent(html_db456173477c540c61fef552ba289dfb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03e66f013ccefb5675dbd8c764f6dd81.bindPopup(popup_12319ec58f845388d5eb828956f9ab43)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a5e4887d0fffc107dd07fd595adcdf3 = L.circleMarker(\\n\",\n       \"                [44.3075, 86.0697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f85fb418b94492cf0dd6a2c863982fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d60149946f9aee0dd465b82a81f73db1 = $(`&lt;div id=&quot;html_d60149946f9aee0dd465b82a81f73db1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.0697             latitude:44.3075             pred_result:62.73753356933594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f85fb418b94492cf0dd6a2c863982fe.setContent(html_d60149946f9aee0dd465b82a81f73db1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a5e4887d0fffc107dd07fd595adcdf3.bindPopup(popup_8f85fb418b94492cf0dd6a2c863982fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3febe998771e26dbf1f7d1b4eea64729 = L.circleMarker(\\n\",\n       \"                [44.1756, 87.5475],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3783fa96f38f67bc1a02a0cbdba7871a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa83512142056669f6dac93507094dc0 = $(`&lt;div id=&quot;html_fa83512142056669f6dac93507094dc0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5475             latitude:44.1756             pred_result:79.8755874633789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3783fa96f38f67bc1a02a0cbdba7871a.setContent(html_fa83512142056669f6dac93507094dc0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3febe998771e26dbf1f7d1b4eea64729.bindPopup(popup_3783fa96f38f67bc1a02a0cbdba7871a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d8567e9de0ca544d38273ae7edcde58 = L.circleMarker(\\n\",\n       \"                [26.567, 101.7227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b3938008d810a0fc3edf27957039766 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_deb342020da8289a015f77ad03bce2c6 = $(`&lt;div id=&quot;html_deb342020da8289a015f77ad03bce2c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7227             latitude:26.567             pred_result:33.9144287109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b3938008d810a0fc3edf27957039766.setContent(html_deb342020da8289a015f77ad03bce2c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d8567e9de0ca544d38273ae7edcde58.bindPopup(popup_5b3938008d810a0fc3edf27957039766)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64d773d779387a0b94a1b4d3cb210ca8 = L.circleMarker(\\n\",\n       \"                [24.5058, 118.0936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_977fddcd43ba5dba268b7af6f4751f54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_683772ed22a6fd95997d545dccd3b707 = $(`&lt;div id=&quot;html_683772ed22a6fd95997d545dccd3b707&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0936             latitude:24.5058             pred_result:28.904067993164062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_977fddcd43ba5dba268b7af6f4751f54.setContent(html_683772ed22a6fd95997d545dccd3b707);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64d773d779387a0b94a1b4d3cb210ca8.bindPopup(popup_977fddcd43ba5dba268b7af6f4751f54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b840e61197cc519cefdc856860d783d = L.circleMarker(\\n\",\n       \"                [36.1912, 113.1569],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9cfb8176d57c5b06458bbf989c9100d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd8e68f5ac21f76d46d304d062d281df = $(`&lt;div id=&quot;html_bd8e68f5ac21f76d46d304d062d281df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1569             latitude:36.1912             pred_result:73.9455337524414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9cfb8176d57c5b06458bbf989c9100d9.setContent(html_bd8e68f5ac21f76d46d304d062d281df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b840e61197cc519cefdc856860d783d.bindPopup(popup_9cfb8176d57c5b06458bbf989c9100d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1014111077e5d143e701ec47da5ec17 = L.circleMarker(\\n\",\n       \"                [23.1323, 113.3208],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fef100c3181d95e93ccf3277ba722afc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d374a7d5f7431f37ce6f9b7c70c9882a = $(`&lt;div id=&quot;html_d374a7d5f7431f37ce6f9b7c70c9882a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3208             latitude:23.1323             pred_result:41.04568862915039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fef100c3181d95e93ccf3277ba722afc.setContent(html_d374a7d5f7431f37ce6f9b7c70c9882a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1014111077e5d143e701ec47da5ec17.bindPopup(popup_fef100c3181d95e93ccf3277ba722afc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8efb26f0f9a5c28c156288417b23d0f = L.circleMarker(\\n\",\n       \"                [39.2474, 117.7918],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_993069a014984babc66754736ff17d57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa190a6d8de238e5618d9f155e9e17ed = $(`&lt;div id=&quot;html_fa190a6d8de238e5618d9f155e9e17ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7918             latitude:39.2474             pred_result:46.185089111328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_993069a014984babc66754736ff17d57.setContent(html_fa190a6d8de238e5618d9f155e9e17ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8efb26f0f9a5c28c156288417b23d0f.bindPopup(popup_993069a014984babc66754736ff17d57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_149fce3fc750c9e8ddb5ff3139cedd69 = L.circleMarker(\\n\",\n       \"                [38.9846, 117.3747],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4da44cb0b374d642dcb3a27830e066f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b64e0da6ac282e0efe47a5e4686714b1 = $(`&lt;div id=&quot;html_b64e0da6ac282e0efe47a5e4686714b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3747             latitude:38.9846             pred_result:46.40108108520508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4da44cb0b374d642dcb3a27830e066f1.setContent(html_b64e0da6ac282e0efe47a5e4686714b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_149fce3fc750c9e8ddb5ff3139cedd69.bindPopup(popup_4da44cb0b374d642dcb3a27830e066f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_050a60554e3ddbd8fed8b39c25b4fc69 = L.circleMarker(\\n\",\n       \"                [39.0845, 117.1589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3d5aa877786940126e4018eba212bc2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5855e35345eb6ef821d0273025c32cc = $(`&lt;div id=&quot;html_e5855e35345eb6ef821d0273025c32cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1589             latitude:39.0845             pred_result:49.16238784790039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3d5aa877786940126e4018eba212bc2.setContent(html_e5855e35345eb6ef821d0273025c32cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_050a60554e3ddbd8fed8b39c25b4fc69.bindPopup(popup_f3d5aa877786940126e4018eba212bc2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e2737a607250c58f99c9a33034bf01d = L.circleMarker(\\n\",\n       \"                [38.03777778, 114.54805559999998],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67f6c73d4cf6f2f9a609b73b4ace2bd7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9966360bc3106230f74ac80d00e00bb5 = $(`&lt;div id=&quot;html_9966360bc3106230f74ac80d00e00bb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.54805559999998             latitude:38.03777778             pred_result:85.63064575195312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67f6c73d4cf6f2f9a609b73b4ace2bd7.setContent(html_9966360bc3106230f74ac80d00e00bb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e2737a607250c58f99c9a33034bf01d.bindPopup(popup_67f6c73d4cf6f2f9a609b73b4ace2bd7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f651ac44873c55edf8d7a6a42bbc2681 = L.circleMarker(\\n\",\n       \"                [37.68277778, 112.7194444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc78130a3d0d86cd54b72d9d841ca97e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f62acfd879125ae65a033e780d3ad91c = $(`&lt;div id=&quot;html_f62acfd879125ae65a033e780d3ad91c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7194444             latitude:37.68277778             pred_result:82.40985107421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc78130a3d0d86cd54b72d9d841ca97e.setContent(html_f62acfd879125ae65a033e780d3ad91c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f651ac44873c55edf8d7a6a42bbc2681.bindPopup(popup_dc78130a3d0d86cd54b72d9d841ca97e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b29981115465aa612d1c9deb8189b54a = L.circleMarker(\\n\",\n       \"                [35.04388889, 111.0522222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d25beea1c0921fc9f00f65b1b37bf600 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92c0d637263281c71af8fc73e3d33f26 = $(`&lt;div id=&quot;html_92c0d637263281c71af8fc73e3d33f26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0522222             latitude:35.04388889             pred_result:72.87705993652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d25beea1c0921fc9f00f65b1b37bf600.setContent(html_92c0d637263281c71af8fc73e3d33f26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b29981115465aa612d1c9deb8189b54a.bindPopup(popup_d25beea1c0921fc9f00f65b1b37bf600)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9a658bd47f3015472afc0f32664831c = L.circleMarker(\\n\",\n       \"                [43.95305556, 126.4738889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c69f8a4c2239fb82c377155344c28537 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_111fbdaa6180a34350b4618a513a6e0b = $(`&lt;div id=&quot;html_111fbdaa6180a34350b4618a513a6e0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4738889             latitude:43.95305556             pred_result:16.193979263305664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c69f8a4c2239fb82c377155344c28537.setContent(html_111fbdaa6180a34350b4618a513a6e0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9a658bd47f3015472afc0f32664831c.bindPopup(popup_c69f8a4c2239fb82c377155344c28537)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68380bcf43ce9cea35e20a9e4f0b2187 = L.circleMarker(\\n\",\n       \"                [32.41361, 119.458],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9408c644cdbce9b01dfa282e79480bce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_63a0c1bf2818c7ed05bbbbeccf407762 = $(`&lt;div id=&quot;html_63a0c1bf2818c7ed05bbbbeccf407762&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.458             latitude:32.41361             pred_result:41.96686553955078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9408c644cdbce9b01dfa282e79480bce.setContent(html_63a0c1bf2818c7ed05bbbbeccf407762);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68380bcf43ce9cea35e20a9e4f0b2187.bindPopup(popup_9408c644cdbce9b01dfa282e79480bce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3cbfde31104e0b3550d12df041eb696b = L.circleMarker(\\n\",\n       \"                [32.18888889, 119.43694440000002],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec32f3fee336f82fff8f7a956619ed85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04f6cc840313dfc55cfe920ed04df59a = $(`&lt;div id=&quot;html_04f6cc840313dfc55cfe920ed04df59a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.43694440000002             latitude:32.18888889             pred_result:42.324462890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec32f3fee336f82fff8f7a956619ed85.setContent(html_04f6cc840313dfc55cfe920ed04df59a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3cbfde31104e0b3550d12df041eb696b.bindPopup(popup_ec32f3fee336f82fff8f7a956619ed85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_767ba390cb46c570d03282dbe7ec484e = L.circleMarker(\\n\",\n       \"                [29.90166667, 121.6147222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81a5739fad48189c938d997c385fe795 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f818eef9aa82dae0b5f98cbbac093e7f = $(`&lt;div id=&quot;html_f818eef9aa82dae0b5f98cbbac093e7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6147222             latitude:29.90166667             pred_result:38.075355529785156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81a5739fad48189c938d997c385fe795.setContent(html_f818eef9aa82dae0b5f98cbbac093e7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_767ba390cb46c570d03282dbe7ec484e.bindPopup(popup_81a5739fad48189c938d997c385fe795)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9b4dcf7a11803b2ec8a8ae0e517e315 = L.circleMarker(\\n\",\n       \"                [30.7525, 120.7844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23404e43b9e77d8336699bbb57247056 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a71fd1653836fbc2a72801ace81e7b4a = $(`&lt;div id=&quot;html_a71fd1653836fbc2a72801ace81e7b4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.7844444             latitude:30.7525             pred_result:42.62328338623047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23404e43b9e77d8336699bbb57247056.setContent(html_a71fd1653836fbc2a72801ace81e7b4a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9b4dcf7a11803b2ec8a8ae0e517e315.bindPopup(popup_23404e43b9e77d8336699bbb57247056)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7d3c00a03d6923ea53689dc3aee1c72 = L.circleMarker(\\n\",\n       \"                [30.89556, 120.0875],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7fec700ca0caa56ce08f0439f8a7201 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d19374d699a0b1330710b44e61201228 = $(`&lt;div id=&quot;html_d19374d699a0b1330710b44e61201228&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.0875             latitude:30.89556             pred_result:48.92036437988281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7fec700ca0caa56ce08f0439f8a7201.setContent(html_d19374d699a0b1330710b44e61201228);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7d3c00a03d6923ea53689dc3aee1c72.bindPopup(popup_c7fec700ca0caa56ce08f0439f8a7201)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe7fb727e80cb97f4da636f39784cbbf = L.circleMarker(\\n\",\n       \"                [32.64600333, 117.04116670000002],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04bfaf964d6ae07d1ae30156af2ab368 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df5f52108575b15913b4671720e48bc9 = $(`&lt;div id=&quot;html_df5f52108575b15913b4671720e48bc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.04116670000002             latitude:32.64600333             pred_result:48.523170471191406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04bfaf964d6ae07d1ae30156af2ab368.setContent(html_df5f52108575b15913b4671720e48bc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe7fb727e80cb97f4da636f39784cbbf.bindPopup(popup_04bfaf964d6ae07d1ae30156af2ab368)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_685259798d757d65b6039c5c16deb3fb = L.circleMarker(\\n\",\n       \"                [32.88922222, 115.7838889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c68990bcf84f917c1c35b558cc9aa070 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c32b25b228cc22e42d00287ddb1dfc5a = $(`&lt;div id=&quot;html_c32b25b228cc22e42d00287ddb1dfc5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.7838889             latitude:32.88922222             pred_result:54.8038330078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c68990bcf84f917c1c35b558cc9aa070.setContent(html_c32b25b228cc22e42d00287ddb1dfc5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_685259798d757d65b6039c5c16deb3fb.bindPopup(popup_c68990bcf84f917c1c35b558cc9aa070)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_669fc775ad383a0c0a75b365207b1d56 = L.circleMarker(\\n\",\n       \"                [36.7339, 119.0841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_efd7fdeeae0cae2bd590ccd14e958e88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f463fcb3c9bb1f7d67a8cb2f7e6c26cf = $(`&lt;div id=&quot;html_f463fcb3c9bb1f7d67a8cb2f7e6c26cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0841             latitude:36.7339             pred_result:33.551517486572266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_efd7fdeeae0cae2bd590ccd14e958e88.setContent(html_f463fcb3c9bb1f7d67a8cb2f7e6c26cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_669fc775ad383a0c0a75b365207b1d56.bindPopup(popup_efd7fdeeae0cae2bd590ccd14e958e88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ff0c16335ab1b4f278b33f78114c969 = L.circleMarker(\\n\",\n       \"                [36.6525, 119.1638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66ae638527575dc07cb4f0a1b7b1b8a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e99e35ddd5b214fe22ca31c63043441 = $(`&lt;div id=&quot;html_6e99e35ddd5b214fe22ca31c63043441&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1638             latitude:36.6525             pred_result:31.48371696472168             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66ae638527575dc07cb4f0a1b7b1b8a2.setContent(html_6e99e35ddd5b214fe22ca31c63043441);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ff0c16335ab1b4f278b33f78114c969.bindPopup(popup_66ae638527575dc07cb4f0a1b7b1b8a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f79da21b2d6e343aa667ac1424403530 = L.circleMarker(\\n\",\n       \"                [36.4343, 116.0072],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f2f2bcd556c1768b7ad5dd0138713b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4686af96a10b27f0d4639f1e3e66b508 = $(`&lt;div id=&quot;html_4686af96a10b27f0d4639f1e3e66b508&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0072             latitude:36.4343             pred_result:65.30638885498047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f2f2bcd556c1768b7ad5dd0138713b6.setContent(html_4686af96a10b27f0d4639f1e3e66b508);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f79da21b2d6e343aa667ac1424403530.bindPopup(popup_5f2f2bcd556c1768b7ad5dd0138713b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_016df2de558cfa6955b96d6f6fc69eae = L.circleMarker(\\n\",\n       \"                [30.65638889, 104.0238889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_004270dac86a8e58187e2092ab7781b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65a261ab3dadf8bb674f5c186310fbff = $(`&lt;div id=&quot;html_65a261ab3dadf8bb674f5c186310fbff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.0238889             latitude:30.65638889             pred_result:56.804115295410156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_004270dac86a8e58187e2092ab7781b1.setContent(html_65a261ab3dadf8bb674f5c186310fbff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_016df2de558cfa6955b96d6f6fc69eae.bindPopup(popup_004270dac86a8e58187e2092ab7781b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54b20dc24f346c0ad0a9db284c604412 = L.circleMarker(\\n\",\n       \"                [26.53111111, 107.89083329999998],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68eb8c7f2e14a9157c428a347f1319a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66f011bcbb6b8cbf6b44fe20fa53e6d8 = $(`&lt;div id=&quot;html_66f011bcbb6b8cbf6b44fe20fa53e6d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.89083329999998             latitude:26.53111111             pred_result:42.914306640625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68eb8c7f2e14a9157c428a347f1319a2.setContent(html_66f011bcbb6b8cbf6b44fe20fa53e6d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54b20dc24f346c0ad0a9db284c604412.bindPopup(popup_68eb8c7f2e14a9157c428a347f1319a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7499c745c7c4459c2ab8d2c612c3b5d2 = L.circleMarker(\\n\",\n       \"                [24.3702, 102.5389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70f33887154a7930cc355dd673293434 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72b865858236e1e7829c4843d4d75431 = $(`&lt;div id=&quot;html_72b865858236e1e7829c4843d4d75431&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5389             latitude:24.3702             pred_result:25.34439468383789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70f33887154a7930cc355dd673293434.setContent(html_72b865858236e1e7829c4843d4d75431);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7499c745c7c4459c2ab8d2c612c3b5d2.bindPopup(popup_70f33887154a7930cc355dd673293434)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8306e2b0f47abce4ac38fa0aa398ad90 = L.circleMarker(\\n\",\n       \"                [24.339, 102.5381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a33b29c5aaf560e743b0e27cc1ee410f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_830ae210346140423d3c2c414f7a98e8 = $(`&lt;div id=&quot;html_830ae210346140423d3c2c414f7a98e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5381             latitude:24.339             pred_result:24.799789428710938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a33b29c5aaf560e743b0e27cc1ee410f.setContent(html_830ae210346140423d3c2c414f7a98e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8306e2b0f47abce4ac38fa0aa398ad90.bindPopup(popup_a33b29c5aaf560e743b0e27cc1ee410f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_266ec661dde8c791386db526d5c6f55e = L.circleMarker(\\n\",\n       \"                [39.79777778, 98.26722222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24a2ef0bedf03ab6af47229eada52e61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82b83bb428cf58d34978fb596acc92d8 = $(`&lt;div id=&quot;html_82b83bb428cf58d34978fb596acc92d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.26722222             latitude:39.79777778             pred_result:25.20339584350586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24a2ef0bedf03ab6af47229eada52e61.setContent(html_82b83bb428cf58d34978fb596acc92d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_266ec661dde8c791386db526d5c6f55e.bindPopup(popup_24a2ef0bedf03ab6af47229eada52e61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa334990d28b29016ec4592ae2343c73 = L.circleMarker(\\n\",\n       \"                [33.38256667, 104.9338889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f5d50ae6166e557fb848b211c3500ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9acdcc9688f10d5b3095d11e0c6a9c6 = $(`&lt;div id=&quot;html_b9acdcc9688f10d5b3095d11e0c6a9c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9338889             latitude:33.38256667             pred_result:39.83443069458008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f5d50ae6166e557fb848b211c3500ac.setContent(html_b9acdcc9688f10d5b3095d11e0c6a9c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa334990d28b29016ec4592ae2343c73.bindPopup(popup_6f5d50ae6166e557fb848b211c3500ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfd32a3afdc5b947166fb29441a9a074 = L.circleMarker(\\n\",\n       \"                [41.7347, 123.2444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9909c26e5c9a1f6d973a4cb3871debf1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c85659de281d43ee1ca99fd06fe846ba = $(`&lt;div id=&quot;html_c85659de281d43ee1ca99fd06fe846ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.2444             latitude:41.7347             pred_result:29.797687530517578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9909c26e5c9a1f6d973a4cb3871debf1.setContent(html_c85659de281d43ee1ca99fd06fe846ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfd32a3afdc5b947166fb29441a9a074.bindPopup(popup_9909c26e5c9a1f6d973a4cb3871debf1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4990a4576fc84f1f9b09f8b7e043d35 = L.circleMarker(\\n\",\n       \"                [41.9086, 123.5953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7358cd902d149f970704082116cea937 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c72df7718dde74ed73b263d266fd451 = $(`&lt;div id=&quot;html_2c72df7718dde74ed73b263d266fd451&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.5953             latitude:41.9086             pred_result:24.325408935546875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7358cd902d149f970704082116cea937.setContent(html_2c72df7718dde74ed73b263d266fd451);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4990a4576fc84f1f9b09f8b7e043d35.bindPopup(popup_7358cd902d149f970704082116cea937)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e9865b675bf5eca4370bbcf3b504c2f = L.circleMarker(\\n\",\n       \"                [30.4865, 106.6351],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_151a086930635cdd596e7421691b702b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0f7b2a3c5d0f960b9f48b08d295e416 = $(`&lt;div id=&quot;html_f0f7b2a3c5d0f960b9f48b08d295e416&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6351             latitude:30.4865             pred_result:47.177520751953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_151a086930635cdd596e7421691b702b.setContent(html_f0f7b2a3c5d0f960b9f48b08d295e416);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e9865b675bf5eca4370bbcf3b504c2f.bindPopup(popup_151a086930635cdd596e7421691b702b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7418e269e52793e5d1938d787117bf3 = L.circleMarker(\\n\",\n       \"                [30.8596, 120.1844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4adb5e0b1c648dab37d4cc267bbe2a1c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a49480a5771ac17088c03f2811f3875 = $(`&lt;div id=&quot;html_4a49480a5771ac17088c03f2811f3875&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1844             latitude:30.8596             pred_result:49.724632263183594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4adb5e0b1c648dab37d4cc267bbe2a1c.setContent(html_4a49480a5771ac17088c03f2811f3875);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7418e269e52793e5d1938d787117bf3.bindPopup(popup_4adb5e0b1c648dab37d4cc267bbe2a1c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_576b0c2f6ae5ca441767636f31c80dce = L.circleMarker(\\n\",\n       \"                [31.87888889, 106.7513889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_14e7704d60ef2ec333fc3679306d2628 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31bdb7cbffd7564a40b104b286696710 = $(`&lt;div id=&quot;html_31bdb7cbffd7564a40b104b286696710&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7513889             latitude:31.87888889             pred_result:42.89351272583008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_14e7704d60ef2ec333fc3679306d2628.setContent(html_31bdb7cbffd7564a40b104b286696710);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_576b0c2f6ae5ca441767636f31c80dce.bindPopup(popup_14e7704d60ef2ec333fc3679306d2628)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da4c34637a9955811fa405f0493a89e5 = L.circleMarker(\\n\",\n       \"                [31.85805556, 106.76194440000002],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60277d40733d59c8980e4954edd61e66 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c25455f7d0fcabcdf9c5c8eeea9892d = $(`&lt;div id=&quot;html_2c25455f7d0fcabcdf9c5c8eeea9892d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.76194440000002             latitude:31.85805556             pred_result:43.343997955322266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60277d40733d59c8980e4954edd61e66.setContent(html_2c25455f7d0fcabcdf9c5c8eeea9892d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da4c34637a9955811fa405f0493a89e5.bindPopup(popup_60277d40733d59c8980e4954edd61e66)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6369eb47ce9570848793035d0327e5f9 = L.circleMarker(\\n\",\n       \"                [30.66, 117.49],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69e2ea0e2110eb2b635837e10d1c6eeb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e87f38bb7d1ee9bbef9b076a30911bdb = $(`&lt;div id=&quot;html_e87f38bb7d1ee9bbef9b076a30911bdb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.49             latitude:30.66             pred_result:54.55366897583008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69e2ea0e2110eb2b635837e10d1c6eeb.setContent(html_e87f38bb7d1ee9bbef9b076a30911bdb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6369eb47ce9570848793035d0327e5f9.bindPopup(popup_69e2ea0e2110eb2b635837e10d1c6eeb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a27bd25e61adb746a9193918592a582 = L.circleMarker(\\n\",\n       \"                [39.5453, 116.7022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dea2c04d983b28a0c4a87cb2c07f9f13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07460b0f9834a72b4c98d319ef4e4dfe = $(`&lt;div id=&quot;html_07460b0f9834a72b4c98d319ef4e4dfe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7022             latitude:39.5453             pred_result:54.28044128417969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dea2c04d983b28a0c4a87cb2c07f9f13.setContent(html_07460b0f9834a72b4c98d319ef4e4dfe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a27bd25e61adb746a9193918592a582.bindPopup(popup_dea2c04d983b28a0c4a87cb2c07f9f13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8bf4330a388a733834af1b1dab698e3c = L.circleMarker(\\n\",\n       \"                [24.506, 117.7116],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7bb7588b6e4fad065db7d7c6c262152 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c78b0283e71e3ab62ff4d73b9f18b2e1 = $(`&lt;div id=&quot;html_c78b0283e71e3ab62ff4d73b9f18b2e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7116             latitude:24.506             pred_result:30.211009979248047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7bb7588b6e4fad065db7d7c6c262152.setContent(html_c78b0283e71e3ab62ff4d73b9f18b2e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8bf4330a388a733834af1b1dab698e3c.bindPopup(popup_c7bb7588b6e4fad065db7d7c6c262152)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b20043268a3b7fc961d51eb75be272c0 = L.circleMarker(\\n\",\n       \"                [30.0033, 120.7789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86dfcc29e1f4adf1d9c09b3c8730f8ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57535fa4dca8cc694522e0acf88f7621 = $(`&lt;div id=&quot;html_57535fa4dca8cc694522e0acf88f7621&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.7789             latitude:30.0033             pred_result:41.20002365112305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86dfcc29e1f4adf1d9c09b3c8730f8ce.setContent(html_57535fa4dca8cc694522e0acf88f7621);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b20043268a3b7fc961d51eb75be272c0.bindPopup(popup_86dfcc29e1f4adf1d9c09b3c8730f8ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2342c0e30e083ca4ff358da9c062148e = L.circleMarker(\\n\",\n       \"                [39.1067, 117.1941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1912308ff4f172a933c412753c8d5bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbc382e9dc6c07342fed026fc9e9f16c = $(`&lt;div id=&quot;html_fbc382e9dc6c07342fed026fc9e9f16c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1941             latitude:39.1067             pred_result:49.66265869140625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1912308ff4f172a933c412753c8d5bc.setContent(html_fbc382e9dc6c07342fed026fc9e9f16c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2342c0e30e083ca4ff358da9c062148e.bindPopup(popup_e1912308ff4f172a933c412753c8d5bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b799ee4c0f84fc21875f4b1419fdd0ce = L.circleMarker(\\n\",\n       \"                [40.1114, 113.2803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c940beb5c62f220e15e7e5787e691ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff099337e7b911287963714000e19b01 = $(`&lt;div id=&quot;html_ff099337e7b911287963714000e19b01&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2803             latitude:40.1114             pred_result:50.19721984863281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c940beb5c62f220e15e7e5787e691ee.setContent(html_ff099337e7b911287963714000e19b01);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b799ee4c0f84fc21875f4b1419fdd0ce.bindPopup(popup_3c940beb5c62f220e15e7e5787e691ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f192865f69f982a6c835256378f9559f = L.circleMarker(\\n\",\n       \"                [38.44139000000001, 106.2275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15a82b8dcf31af46f9923d0e56fa92a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a4321273fa26677dfa8d880fdcba668 = $(`&lt;div id=&quot;html_3a4321273fa26677dfa8d880fdcba668&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2275             latitude:38.44139000000001             pred_result:54.97471618652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15a82b8dcf31af46f9923d0e56fa92a2.setContent(html_3a4321273fa26677dfa8d880fdcba668);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f192865f69f982a6c835256378f9559f.bindPopup(popup_15a82b8dcf31af46f9923d0e56fa92a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bdb6db7ca3f0c7f6d0ccdbb22482726f = L.circleMarker(\\n\",\n       \"                [38.4841, 106.2739],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9255f4d90fe45adc38dd97b114e6edb9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a8f2a10b8bc149a9d5872824895fbce4 = $(`&lt;div id=&quot;html_a8f2a10b8bc149a9d5872824895fbce4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2739             latitude:38.4841             pred_result:54.276817321777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9255f4d90fe45adc38dd97b114e6edb9.setContent(html_a8f2a10b8bc149a9d5872824895fbce4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bdb6db7ca3f0c7f6d0ccdbb22482726f.bindPopup(popup_9255f4d90fe45adc38dd97b114e6edb9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc0de55f5adbe04d1113fd264eb25c3a = L.circleMarker(\\n\",\n       \"                [38.49494, 106.1024],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42f1a4b082b989c60bf9de3c31c2c9ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10142a39cb217872644c6547cae267a5 = $(`&lt;div id=&quot;html_10142a39cb217872644c6547cae267a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1024             latitude:38.49494             pred_result:53.55931854248047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42f1a4b082b989c60bf9de3c31c2c9ca.setContent(html_10142a39cb217872644c6547cae267a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc0de55f5adbe04d1113fd264eb25c3a.bindPopup(popup_42f1a4b082b989c60bf9de3c31c2c9ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c881c3e1a0226a56e741582e2048c540 = L.circleMarker(\\n\",\n       \"                [30.4519, 114.8858],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f083da79a6ae03752080ddd2d668ab5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c698b99bb551321373b8dd2ddd3fc3a3 = $(`&lt;div id=&quot;html_c698b99bb551321373b8dd2ddd3fc3a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8858             latitude:30.4519             pred_result:66.08356475830078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f083da79a6ae03752080ddd2d668ab5f.setContent(html_c698b99bb551321373b8dd2ddd3fc3a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c881c3e1a0226a56e741582e2048c540.bindPopup(popup_f083da79a6ae03752080ddd2d668ab5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b4c1ef0b2dec7ba594a4bbf0bd23df9 = L.circleMarker(\\n\",\n       \"                [29.1128, 119.6533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_764e342932e994665598e7b4f07dcc25 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2fafe30cc53d750413121a4b5d0127d = $(`&lt;div id=&quot;html_e2fafe30cc53d750413121a4b5d0127d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6533             latitude:29.1128             pred_result:38.73957824707031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_764e342932e994665598e7b4f07dcc25.setContent(html_e2fafe30cc53d750413121a4b5d0127d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b4c1ef0b2dec7ba594a4bbf0bd23df9.bindPopup(popup_764e342932e994665598e7b4f07dcc25)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6821bc7fda1f557dc6269585d88ca7f = L.circleMarker(\\n\",\n       \"                [33.965, 118.283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac7f766dcd9a5fceaae741159f6a52ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a67ef0a7c7dff4ebb199527071d3c54 = $(`&lt;div id=&quot;html_7a67ef0a7c7dff4ebb199527071d3c54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.283             latitude:33.965             pred_result:46.1915283203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac7f766dcd9a5fceaae741159f6a52ec.setContent(html_7a67ef0a7c7dff4ebb199527071d3c54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6821bc7fda1f557dc6269585d88ca7f.bindPopup(popup_ac7f766dcd9a5fceaae741159f6a52ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_188e5e4becc211e8a75e5f8c39832394 = L.circleMarker(\\n\",\n       \"                [32.3292, 119.8767],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c69e1cae69f21d1a18a9bf9675570773 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f23700d7c2446adbb08ec8072b286187 = $(`&lt;div id=&quot;html_f23700d7c2446adbb08ec8072b286187&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.8767             latitude:32.3292             pred_result:44.48861312866211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c69e1cae69f21d1a18a9bf9675570773.setContent(html_f23700d7c2446adbb08ec8072b286187);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_188e5e4becc211e8a75e5f8c39832394.bindPopup(popup_c69e1cae69f21d1a18a9bf9675570773)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5244a0df02a52bd4f8ed2ceddc981050 = L.circleMarker(\\n\",\n       \"                [34.6972, 119.3581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df36c5a5c9b9dce192fe0e42cff61eab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9348d01d68d90ec0fc57dd8c12e23c16 = $(`&lt;div id=&quot;html_9348d01d68d90ec0fc57dd8c12e23c16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.3581             latitude:34.6972             pred_result:30.784664154052734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df36c5a5c9b9dce192fe0e42cff61eab.setContent(html_9348d01d68d90ec0fc57dd8c12e23c16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5244a0df02a52bd4f8ed2ceddc981050.bindPopup(popup_df36c5a5c9b9dce192fe0e42cff61eab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ad39ab8c9fc1d34242a737871899aa9 = L.circleMarker(\\n\",\n       \"                [31.8108, 119.9736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70e70ddceb57715236f71f18fad5189c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4989ed8ca83f29acb6155df3308a0ab5 = $(`&lt;div id=&quot;html_4989ed8ca83f29acb6155df3308a0ab5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9736             latitude:31.8108             pred_result:44.04331970214844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70e70ddceb57715236f71f18fad5189c.setContent(html_4989ed8ca83f29acb6155df3308a0ab5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ad39ab8c9fc1d34242a737871899aa9.bindPopup(popup_70e70ddceb57715236f71f18fad5189c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_984426b618ccc0106ab89124b801ba68 = L.circleMarker(\\n\",\n       \"                [31.7694, 120.0469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a63e319bc15d14c5ebd910ac49f611e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e63032f91f5343c90282c91e1b212ba9 = $(`&lt;div id=&quot;html_e63032f91f5343c90282c91e1b212ba9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.0469             latitude:31.7694             pred_result:42.10960006713867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a63e319bc15d14c5ebd910ac49f611e.setContent(html_e63032f91f5343c90282c91e1b212ba9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_984426b618ccc0106ab89124b801ba68.bindPopup(popup_2a63e319bc15d14c5ebd910ac49f611e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f8c9f1883861ebe0bb8bb69e1512e55 = L.circleMarker(\\n\",\n       \"                [33.3681, 120.1631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e98dd95e138c17f33d97b03ae3be33b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2cda05a3bfc13fb9621382f949c68db1 = $(`&lt;div id=&quot;html_2cda05a3bfc13fb9621382f949c68db1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1631             latitude:33.3681             pred_result:34.515342712402344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e98dd95e138c17f33d97b03ae3be33b5.setContent(html_2cda05a3bfc13fb9621382f949c68db1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f8c9f1883861ebe0bb8bb69e1512e55.bindPopup(popup_e98dd95e138c17f33d97b03ae3be33b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5196f542aaad490c0448fc1970bf14b = L.circleMarker(\\n\",\n       \"                [34.29, 117.1814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4dec09450052481a7fdfa222d7255977 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fafb224d1837b0df48b2a9a935b784db = $(`&lt;div id=&quot;html_fafb224d1837b0df48b2a9a935b784db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1814             latitude:34.29             pred_result:55.76237487792969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4dec09450052481a7fdfa222d7255977.setContent(html_fafb224d1837b0df48b2a9a935b784db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5196f542aaad490c0448fc1970bf14b.bindPopup(popup_4dec09450052481a7fdfa222d7255977)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1aaf449554744fa0e1398a6a5b79e1e = L.circleMarker(\\n\",\n       \"                [34.1781, 117.1694],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e733189446a2ab7e8d20c8369ae974d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba6f9ae08f555e41890e78d93336fa64 = $(`&lt;div id=&quot;html_ba6f9ae08f555e41890e78d93336fa64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1694             latitude:34.1781             pred_result:54.52077102661133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e733189446a2ab7e8d20c8369ae974d1.setContent(html_ba6f9ae08f555e41890e78d93336fa64);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1aaf449554744fa0e1398a6a5b79e1e.bindPopup(popup_e733189446a2ab7e8d20c8369ae974d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3efa1f266da38996ed740ac9e4cdf61e = L.circleMarker(\\n\",\n       \"                [34.5911, 119.1478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7dffd6caf8a888160abe040da8b41eb6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca3bd6506f37348afcce106e22e61c5d = $(`&lt;div id=&quot;html_ca3bd6506f37348afcce106e22e61c5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1478             latitude:34.5911             pred_result:33.64832305908203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7dffd6caf8a888160abe040da8b41eb6.setContent(html_ca3bd6506f37348afcce106e22e61c5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3efa1f266da38996ed740ac9e4cdf61e.bindPopup(popup_7dffd6caf8a888160abe040da8b41eb6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b95cd01f336e06678ea3639bdae2b4fb = L.circleMarker(\\n\",\n       \"                [31.7897, 119.8914],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2607dae6a2661f45d84755d31d84fbb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d0d6bcef2e9031dc20b1822410b092b = $(`&lt;div id=&quot;html_0d0d6bcef2e9031dc20b1822410b092b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.8914             latitude:31.7897             pred_result:44.49702072143555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2607dae6a2661f45d84755d31d84fbb.setContent(html_0d0d6bcef2e9031dc20b1822410b092b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b95cd01f336e06678ea3639bdae2b4fb.bindPopup(popup_c2607dae6a2661f45d84755d31d84fbb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_555ef43a3c691a9a4fbfd6f44658324c = L.circleMarker(\\n\",\n       \"                [31.033890000000003, 112.1908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c263ee9eee2dd3fcd29b580856c53b20 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6bc1e54788be5272ee0587441839abe = $(`&lt;div id=&quot;html_b6bc1e54788be5272ee0587441839abe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1908             latitude:31.033890000000003             pred_result:60.09228515625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c263ee9eee2dd3fcd29b580856c53b20.setContent(html_b6bc1e54788be5272ee0587441839abe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_555ef43a3c691a9a4fbfd6f44658324c.bindPopup(popup_c263ee9eee2dd3fcd29b580856c53b20)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11875b18895fb782440962ea5fce9e4d = L.circleMarker(\\n\",\n       \"                [29.53675, 106.4959],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4cd5a7e239cff163d15b95f1fd44730 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb7d7b59e2c7143ad5c96df7d9461936 = $(`&lt;div id=&quot;html_cb7d7b59e2c7143ad5c96df7d9461936&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.4959             latitude:29.53675             pred_result:46.85337448120117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4cd5a7e239cff163d15b95f1fd44730.setContent(html_cb7d7b59e2c7143ad5c96df7d9461936);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11875b18895fb782440962ea5fce9e4d.bindPopup(popup_d4cd5a7e239cff163d15b95f1fd44730)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0903ae43b74630bff8bdbab013493ed5 = L.circleMarker(\\n\",\n       \"                [29.57278, 106.4042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5f55fc6f1d98d29016cdfb97726b2fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c510e98568c86b9cd45801c8e124f0a7 = $(`&lt;div id=&quot;html_c510e98568c86b9cd45801c8e124f0a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.4042             latitude:29.57278             pred_result:45.65007781982422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5f55fc6f1d98d29016cdfb97726b2fe.setContent(html_c510e98568c86b9cd45801c8e124f0a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0903ae43b74630bff8bdbab013493ed5.bindPopup(popup_a5f55fc6f1d98d29016cdfb97726b2fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa63059e23f8ad752ad327404b96ad95 = L.circleMarker(\\n\",\n       \"                [29.41569, 106.5506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab22c42b4a64bd12ca1d680f6497a9e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d196df7d136089c1504129569cc67728 = $(`&lt;div id=&quot;html_d196df7d136089c1504129569cc67728&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.5506             latitude:29.41569             pred_result:47.14021301269531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab22c42b4a64bd12ca1d680f6497a9e9.setContent(html_d196df7d136089c1504129569cc67728);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa63059e23f8ad752ad327404b96ad95.bindPopup(popup_ab22c42b4a64bd12ca1d680f6497a9e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e324609c1530c1d41367176119c18c6a = L.circleMarker(\\n\",\n       \"                [36.10139, 111.505],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_432885c72a8e75d3ae56c248106be8d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab387fda81b7ed074133badff767f6bf = $(`&lt;div id=&quot;html_ab387fda81b7ed074133badff767f6bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.505             latitude:36.10139             pred_result:85.50614929199219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_432885c72a8e75d3ae56c248106be8d9.setContent(html_ab387fda81b7ed074133badff767f6bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e324609c1530c1d41367176119c18c6a.bindPopup(popup_432885c72a8e75d3ae56c248106be8d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_863600f9ca541191fd375940ce31c37b = L.circleMarker(\\n\",\n       \"                [39.16969, 117.2099],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e77a1c2b5fe6ed2ac07a6d4a502a87e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46635c789bea6c433d04a06b384f31ed = $(`&lt;div id=&quot;html_46635c789bea6c433d04a06b384f31ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2099             latitude:39.16969             pred_result:49.318328857421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e77a1c2b5fe6ed2ac07a6d4a502a87e.setContent(html_46635c789bea6c433d04a06b384f31ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_863600f9ca541191fd375940ce31c37b.bindPopup(popup_4e77a1c2b5fe6ed2ac07a6d4a502a87e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d37fbb033287d9128eb0d3f80114c92f = L.circleMarker(\\n\",\n       \"                [35.76806, 115.0061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1fd8a769714f06e0b4af1db7e0ce6c0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86e104af1adf18944dfcd5e6ac01cd5b = $(`&lt;div id=&quot;html_86e104af1adf18944dfcd5e6ac01cd5b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0061             latitude:35.76806             pred_result:68.14287567138672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1fd8a769714f06e0b4af1db7e0ce6c0d.setContent(html_86e104af1adf18944dfcd5e6ac01cd5b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d37fbb033287d9128eb0d3f80114c92f.bindPopup(popup_1fd8a769714f06e0b4af1db7e0ce6c0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45c929b04a74684f008a310bf55e659d = L.circleMarker(\\n\",\n       \"                [34.6686, 112.4433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aeffcc173806a49467644be1dc44cff3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ea118cb9d1c32686b9184ff62dbde66 = $(`&lt;div id=&quot;html_8ea118cb9d1c32686b9184ff62dbde66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4433             latitude:34.6686             pred_result:66.27748107910156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aeffcc173806a49467644be1dc44cff3.setContent(html_8ea118cb9d1c32686b9184ff62dbde66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45c929b04a74684f008a310bf55e659d.bindPopup(popup_aeffcc173806a49467644be1dc44cff3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d75781ada5ce9c8defc9ecf7d3771827 = L.circleMarker(\\n\",\n       \"                [23.63444, 113.0472],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b127eebff9c0036257eaad59fad333e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9656d0f7057cc7610e8d8dc7c63fee7e = $(`&lt;div id=&quot;html_9656d0f7057cc7610e8d8dc7c63fee7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0472             latitude:23.63444             pred_result:42.24991989135742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b127eebff9c0036257eaad59fad333e2.setContent(html_9656d0f7057cc7610e8d8dc7c63fee7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d75781ada5ce9c8defc9ecf7d3771827.bindPopup(popup_b127eebff9c0036257eaad59fad333e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d88b06102bd949aebcc859c91592aa7 = L.circleMarker(\\n\",\n       \"                [23.65889, 116.6183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25913ce6db164acdd623ec07eb68455b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9c0fca3ac7be80d40489423d8b7da3c = $(`&lt;div id=&quot;html_b9c0fca3ac7be80d40489423d8b7da3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6183             latitude:23.65889             pred_result:28.34084129333496             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25913ce6db164acdd623ec07eb68455b.setContent(html_b9c0fca3ac7be80d40489423d8b7da3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d88b06102bd949aebcc859c91592aa7.bindPopup(popup_25913ce6db164acdd623ec07eb68455b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b52d3e0a02488252d3d698843126dec9 = L.circleMarker(\\n\",\n       \"                [29.33972, 104.7228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e07ca99cd693831b71923f379866efa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a57c6a8ede1f7fcde263d7a746c457a0 = $(`&lt;div id=&quot;html_a57c6a8ede1f7fcde263d7a746c457a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7228             latitude:29.33972             pred_result:52.553585052490234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e07ca99cd693831b71923f379866efa.setContent(html_a57c6a8ede1f7fcde263d7a746c457a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b52d3e0a02488252d3d698843126dec9.bindPopup(popup_1e07ca99cd693831b71923f379866efa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b32b8cdcf731d41ee1b4d29c6d27ee4e = L.circleMarker(\\n\",\n       \"                [29.36028, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b3c95d8c2a8bbb6ad5f9a43da68b434 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_beb575657724e02d51057d5a87c53c51 = $(`&lt;div id=&quot;html_beb575657724e02d51057d5a87c53c51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:29.36028             pred_result:52.46461486816406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b3c95d8c2a8bbb6ad5f9a43da68b434.setContent(html_beb575657724e02d51057d5a87c53c51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b32b8cdcf731d41ee1b4d29c6d27ee4e.bindPopup(popup_1b3c95d8c2a8bbb6ad5f9a43da68b434)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61bf675ed1f4e7f5feaa4d981bcfabbe = L.circleMarker(\\n\",\n       \"                [43.4569, 87.4651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e84bf7e0f57c4f909fc20dc49fe72222 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3df3abd9d775aeb3cf3ef94a8943b06 = $(`&lt;div id=&quot;html_d3df3abd9d775aeb3cf3ef94a8943b06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.4651             latitude:43.4569             pred_result:30.497291564941406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e84bf7e0f57c4f909fc20dc49fe72222.setContent(html_d3df3abd9d775aeb3cf3ef94a8943b06);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61bf675ed1f4e7f5feaa4d981bcfabbe.bindPopup(popup_e84bf7e0f57c4f909fc20dc49fe72222)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66db25bb5056aed72a84409516464f56 = L.circleMarker(\\n\",\n       \"                [41.0385, 113.1076],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa89be8149f4b4f95ae19120c04dac06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f2692dafeb621b49aa30f58a01f574b = $(`&lt;div id=&quot;html_5f2692dafeb621b49aa30f58a01f574b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1076             latitude:41.0385             pred_result:36.06824493408203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa89be8149f4b4f95ae19120c04dac06.setContent(html_5f2692dafeb621b49aa30f58a01f574b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66db25bb5056aed72a84409516464f56.bindPopup(popup_fa89be8149f4b4f95ae19120c04dac06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_191f00c77954af2f0cb877281e167efb = L.circleMarker(\\n\",\n       \"                [46.0707, 122.0931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65a3415d2a21b6bd41027a7ed830224b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a854ec6d67eee91aafb1018d2ce0002 = $(`&lt;div id=&quot;html_6a854ec6d67eee91aafb1018d2ce0002&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0931             latitude:46.0707             pred_result:16.707799911499023             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65a3415d2a21b6bd41027a7ed830224b.setContent(html_6a854ec6d67eee91aafb1018d2ce0002);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_191f00c77954af2f0cb877281e167efb.bindPopup(popup_65a3415d2a21b6bd41027a7ed830224b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_183e96b69e73074630502cad4e50da32 = L.circleMarker(\\n\",\n       \"                [37.43445, 118.696],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f86a8f358e12e064ab71495591237a2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fb4486cdc7683a4f34231f6b07314ca = $(`&lt;div id=&quot;html_7fb4486cdc7683a4f34231f6b07314ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.696             latitude:37.43445             pred_result:35.74099349975586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f86a8f358e12e064ab71495591237a2a.setContent(html_7fb4486cdc7683a4f34231f6b07314ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_183e96b69e73074630502cad4e50da32.bindPopup(popup_f86a8f358e12e064ab71495591237a2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ba31d66cba8e4edb1276efc4a7cfbc4 = L.circleMarker(\\n\",\n       \"                [23.3682, 103.3758],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd8636ed29d26cf09c76507479f26df5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9094253d285bbefd1828514193f38341 = $(`&lt;div id=&quot;html_9094253d285bbefd1828514193f38341&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.3758             latitude:23.3682             pred_result:35.31744384765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd8636ed29d26cf09c76507479f26df5.setContent(html_9094253d285bbefd1828514193f38341);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ba31d66cba8e4edb1276efc4a7cfbc4.bindPopup(popup_bd8636ed29d26cf09c76507479f26df5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61e981912f97abc41d2f9737a0a6a8b0 = L.circleMarker(\\n\",\n       \"                [34.7822, 111.19],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fca6aa4b52d81049a81f507f99e7d400 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a2252130cbbd33285c3f94cec806ac8 = $(`&lt;div id=&quot;html_2a2252130cbbd33285c3f94cec806ac8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.19             latitude:34.7822             pred_result:63.98443603515625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fca6aa4b52d81049a81f507f99e7d400.setContent(html_2a2252130cbbd33285c3f94cec806ac8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61e981912f97abc41d2f9737a0a6a8b0.bindPopup(popup_fca6aa4b52d81049a81f507f99e7d400)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd342a99b0f9dd3c216d8cec9bf93a37 = L.circleMarker(\\n\",\n       \"                [28.6064, 115.9083],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e8978e25c43dff75bd95d184a853d83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd6dbff405c04b1735280d5c99ba3340 = $(`&lt;div id=&quot;html_dd6dbff405c04b1735280d5c99ba3340&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9083             latitude:28.6064             pred_result:59.350120544433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e8978e25c43dff75bd95d184a853d83.setContent(html_dd6dbff405c04b1735280d5c99ba3340);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd342a99b0f9dd3c216d8cec9bf93a37.bindPopup(popup_5e8978e25c43dff75bd95d184a853d83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4554200321403e47e1cb3b0cc71dd4d5 = L.circleMarker(\\n\",\n       \"                [26.0931, 119.58],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e8debf78b2709308137448c71d9c9ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_072d3d059bbb1da61539f7d6f4dbdf4a = $(`&lt;div id=&quot;html_072d3d059bbb1da61539f7d6f4dbdf4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.58             latitude:26.0931             pred_result:27.555339813232422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e8debf78b2709308137448c71d9c9ac.setContent(html_072d3d059bbb1da61539f7d6f4dbdf4a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4554200321403e47e1cb3b0cc71dd4d5.bindPopup(popup_1e8debf78b2709308137448c71d9c9ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23b240733f8f22c84800aaeed0885c14 = L.circleMarker(\\n\",\n       \"                [39.1495, 117.3916],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f00d27306759817b62c05eb4fed4554c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_290c78581c5bc6eda45c6dddfdf8b7c9 = $(`&lt;div id=&quot;html_290c78581c5bc6eda45c6dddfdf8b7c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3916             latitude:39.1495             pred_result:49.02222442626953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f00d27306759817b62c05eb4fed4554c.setContent(html_290c78581c5bc6eda45c6dddfdf8b7c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23b240733f8f22c84800aaeed0885c14.bindPopup(popup_f00d27306759817b62c05eb4fed4554c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16bf16fbf3186ccfc9dedf3d6dd3ff6f = L.circleMarker(\\n\",\n       \"                [35.28385, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6f0da85b0e38126dd75e41df3d1881b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_172015ed1fc8ab8d5c4c5f4c24c6708f = $(`&lt;div id=&quot;html_172015ed1fc8ab8d5c4c5f4c24c6708f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:35.28385             pred_result:74.5478515625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6f0da85b0e38126dd75e41df3d1881b.setContent(html_172015ed1fc8ab8d5c4c5f4c24c6708f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16bf16fbf3186ccfc9dedf3d6dd3ff6f.bindPopup(popup_a6f0da85b0e38126dd75e41df3d1881b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3b10164654aa4d53d83b269b4edc589 = L.circleMarker(\\n\",\n       \"                [37.4014, 121.5992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49e30cd69c081b17f986967e830159e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14e931dfef1438c7dffa47ed3d9fe67a = $(`&lt;div id=&quot;html_14e931dfef1438c7dffa47ed3d9fe67a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5992             latitude:37.4014             pred_result:6.935401916503906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49e30cd69c081b17f986967e830159e5.setContent(html_14e931dfef1438c7dffa47ed3d9fe67a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3b10164654aa4d53d83b269b4edc589.bindPopup(popup_49e30cd69c081b17f986967e830159e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_758a9814e5d07afad14e11ae74db5503 = L.circleMarker(\\n\",\n       \"                [42.0352, 119.2654],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57a645539042c480b67a9c07fc95c281 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e2da83a1bd121ff4fb9184ba0cfa6cf = $(`&lt;div id=&quot;html_0e2da83a1bd121ff4fb9184ba0cfa6cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.2654             latitude:42.0352             pred_result:17.144866943359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57a645539042c480b67a9c07fc95c281.setContent(html_0e2da83a1bd121ff4fb9184ba0cfa6cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_758a9814e5d07afad14e11ae74db5503.bindPopup(popup_57a645539042c480b67a9c07fc95c281)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b530b79a4598f0dbc3008cb6e5dc3129 = L.circleMarker(\\n\",\n       \"                [36.2092, 117.7181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15f739375fae32f681993b22277b355e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fd01b39baa6ad466744597fd21061a2 = $(`&lt;div id=&quot;html_2fd01b39baa6ad466744597fd21061a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7181             latitude:36.2092             pred_result:43.81657409667969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15f739375fae32f681993b22277b355e.setContent(html_2fd01b39baa6ad466744597fd21061a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b530b79a4598f0dbc3008cb6e5dc3129.bindPopup(popup_15f739375fae32f681993b22277b355e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a4e75368d2feac3f4fc46633da71075 = L.circleMarker(\\n\",\n       \"                [49.1577, 119.7512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed726661857d24eeb091caa2dc1c667d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a05423ca7d40444a3cbbdaac36b0b113 = $(`&lt;div id=&quot;html_a05423ca7d40444a3cbbdaac36b0b113&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7512             latitude:49.1577             pred_result:3.120217800140381             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed726661857d24eeb091caa2dc1c667d.setContent(html_a05423ca7d40444a3cbbdaac36b0b113);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a4e75368d2feac3f4fc46633da71075.bindPopup(popup_ed726661857d24eeb091caa2dc1c667d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d60a1d11e50146ade52f4a593cd098f = L.circleMarker(\\n\",\n       \"                [36.2211, 117.6983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd253c4e16bd9ed8a2ff2cedc748e6f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_760ba12b7d3cd84f8e197df32dde1ab3 = $(`&lt;div id=&quot;html_760ba12b7d3cd84f8e197df32dde1ab3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6983             latitude:36.2211             pred_result:45.344058990478516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd253c4e16bd9ed8a2ff2cedc748e6f7.setContent(html_760ba12b7d3cd84f8e197df32dde1ab3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d60a1d11e50146ade52f4a593cd098f.bindPopup(popup_fd253c4e16bd9ed8a2ff2cedc748e6f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc03a56cf91b2c934a8f8a92dc896f59 = L.circleMarker(\\n\",\n       \"                [29.9972, 101.9533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0b8f31305bc72198dbc632eaa7e19dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_adb66d72ded55cf026aa7a1b6b62f004 = $(`&lt;div id=&quot;html_adb66d72ded55cf026aa7a1b6b62f004&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9533             latitude:29.9972             pred_result:19.76383399963379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0b8f31305bc72198dbc632eaa7e19dd.setContent(html_adb66d72ded55cf026aa7a1b6b62f004);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc03a56cf91b2c934a8f8a92dc896f59.bindPopup(popup_e0b8f31305bc72198dbc632eaa7e19dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbfcb7086c51f69b467880abf042a2fb = L.circleMarker(\\n\",\n       \"                [37.4372, 116.2714],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d2f6336f352761865e5cd3e79a9ec138 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_801ac917e5fa07d7146a828e77703a1d = $(`&lt;div id=&quot;html_801ac917e5fa07d7146a828e77703a1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.2714             latitude:37.4372             pred_result:65.01286315917969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d2f6336f352761865e5cd3e79a9ec138.setContent(html_801ac917e5fa07d7146a828e77703a1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbfcb7086c51f69b467880abf042a2fb.bindPopup(popup_d2f6336f352761865e5cd3e79a9ec138)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_2048a270de223676087db6a335c86338 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_2048a270de223676087db6a335c86338.color = d3.scale.threshold()\\n\",\n       \"              .domain([-8.575934410095215, -8.33469009399414, -8.09344482421875, -7.852200031280518, -7.610955238342285, -7.369710445404053, -7.12846565246582, -6.887220859527588, -6.6459760665893555, -6.404731750488281, -6.163486480712891, -5.922241687774658, -5.680996894836426, -5.439752101898193, -5.198507308959961, -4.9572625160217285, -4.716017723083496, -4.474772930145264, -4.2335286140441895, -3.992283344268799, -3.7510385513305664, -3.509793758392334, -3.2685489654541016, -3.0273046493530273, -2.786059856414795, -2.5448145866394043, -2.303569793701172, -2.0623250007629395, -1.8210806846618652, -1.5798358917236328, -1.3385906219482422, -1.0973458290100098, -0.8561010360717773, -0.6148567199707031, -0.3736114501953125, -0.13236618041992188, 0.10887718200683594, 0.35012245178222656, 0.5913677215576172, 0.8326120376586914, 1.073857307434082, 1.3151016235351562, 1.5563468933105469, 1.7975921630859375, 2.0388364791870117, 2.2800817489624023, 2.52132511138916, 2.762570381164551, 3.003814697265625, 3.2450599670410156, 3.4863052368164062, 3.7275495529174805, 3.968794822692871, 4.210039138793945, 4.451284408569336, 4.692529678344727, 4.933773040771484, 5.175018310546875, 5.416262626647949, 5.65750789642334, 5.8987531661987305, 6.139997482299805, 6.381242752075195, 6.6224870681762695, 6.86373233795166, 7.104977607727051, 7.346220970153809, 7.587466239929199, 7.82871150970459, 8.069954872131348, 8.311202049255371, 8.552445411682129, 8.793688774108887, 9.03493595123291, 9.276179313659668, 9.517424583435059, 9.75866985321045, 9.99991512298584, 10.241158485412598, 10.482403755187988, 10.723649024963379, 10.964892387390137, 11.206137657165527, 11.447382926940918, 11.688628196716309, 11.929871559143066, 12.17111873626709, 12.412362098693848, 12.653607368469238, 12.894850730895996, 13.13609790802002, 13.377341270446777, 13.618584632873535, 13.859831809997559, 14.101075172424316, 14.342320442199707, 14.583563804626465, 14.824810981750488, 15.066054344177246, 15.307299613952637, 15.548544883728027, 15.789790153503418, 16.03103256225586, 16.27227783203125, 16.51352310180664, 16.75476837158203, 16.996013641357422, 17.237258911132812, 17.478504180908203, 17.719745635986328, 17.960994720458984, 18.20223617553711, 18.4434814453125, 18.68472671508789, 18.92597198486328, 19.167217254638672, 19.408458709716797, 19.649707794189453, 19.890949249267578, 20.13219451904297, 20.37343978881836, 20.61468505859375, 20.85593032836914, 21.09717559814453, 21.338420867919922, 21.579662322998047, 21.820907592773438, 22.062152862548828, 22.30339813232422, 22.54464340209961, 22.785888671875, 23.02713394165039, 23.268375396728516, 23.509620666503906, 23.750865936279297, 23.992111206054688, 24.233356475830078, 24.474597930908203, 24.715843200683594, 24.95709228515625, 25.19833755493164, 25.439579010009766, 25.680824279785156, 25.922069549560547, 26.163311004638672, 26.404560089111328, 26.64580535888672, 26.88705062866211, 27.128292083740234, 27.369537353515625, 27.610782623291016, 27.852027893066406, 28.093273162841797, 28.334518432617188, 28.575763702392578, 28.817005157470703, 29.058250427246094, 29.299495697021484, 29.540740966796875, 29.781986236572266, 30.023231506347656, 30.264476776123047, 30.505718231201172, 30.746963500976562, 30.988208770751953, 31.229454040527344, 31.470699310302734, 31.711944580078125, 31.953189849853516, 32.194435119628906, 32.43567657470703, 32.67692184448242, 32.91817092895508, 33.1594123840332, 33.400657653808594, 33.641902923583984, 33.883148193359375, 34.1243896484375, 34.36563491821289, 34.60688400268555, 34.84812927246094, 35.08937072753906, 35.33061599731445, 35.571861267089844, 35.81310272216797, 36.05434799194336, 36.295597076416016, 36.536842346191406, 36.77808380126953, 37.01932907104492, 37.26057434082031, 37.5018196105957, 37.74306106567383, 37.984310150146484, 38.225555419921875, 38.466796875, 38.70804214477539, 38.94928741455078, 39.19053268432617, 39.43177795410156, 39.67302322387695, 39.914268493652344, 40.155513763427734, 40.39675521850586, 40.63800048828125, 40.87924575805664, 41.12049102783203, 41.36173629760742, 41.60298156738281, 41.8442268371582, 42.08546829223633, 42.32671356201172, 42.56795883178711, 42.809207916259766, 43.05044937133789, 43.29169464111328, 43.53293991088867, 43.7741813659668, 44.01542663574219, 44.256675720214844, 44.497920989990234, 44.73916244506836, 44.98040771484375, 45.22165298461914, 45.462894439697266, 45.704139709472656, 45.94538879394531, 46.1866340637207, 46.42787551879883, 46.66912078857422, 46.91036605834961, 47.151611328125, 47.392852783203125, 47.63410186767578, 47.87534713745117, 48.1165885925293, 48.35783386230469, 48.59907913208008, 48.84032440185547, 49.081565856933594, 49.32281494140625, 49.56406021118164, 49.80530548095703, 50.046546936035156, 50.28779220581055, 50.52903747558594, 50.77028274536133, 51.01152801513672, 51.25277328491211, 51.4940185546875, 51.735260009765625, 51.976505279541016, 52.217750549316406, 52.45899963378906, 52.70024108886719, 52.94148635864258, 53.18273162841797, 53.423973083496094, 53.665218353271484, 53.906463623046875, 54.14771270751953, 54.388954162597656, 54.63019943237305, 54.87144470214844, 55.11268615722656, 55.35393142700195, 55.595176696777344, 55.83642578125, 56.077667236328125, 56.31891632080078, 56.560157775878906, 56.80139923095703, 57.04264831542969, 57.283897399902344, 57.52513122558594, 57.766380310058594, 58.00762176513672, 58.248870849609375, 58.49011993408203, 58.731361389160156, 58.97261047363281, 59.213844299316406, 59.45509338378906, 59.69634246826172, 59.937583923339844, 60.1788330078125, 60.420074462890625, 60.66132354736328, 60.902557373046875, 61.14380645751953, 61.38505554199219, 61.62629699707031, 61.86754608154297, 62.108787536621094, 62.35003662109375, 62.591270446777344, 62.83251953125, 63.073768615722656, 63.31501007080078, 63.55625915527344, 63.79750061035156, 64.03874969482422, 64.27999114990234, 64.52123260498047, 64.76248168945312, 65.00372314453125, 65.2449722290039, 65.48621368408203, 65.72746276855469, 65.96870422363281, 66.20994567871094, 66.4511947631836, 66.69243621826172, 66.93368530273438, 67.1749267578125, 67.41617584228516, 67.65741729736328, 67.8986587524414, 68.13990783691406, 68.38114929199219, 68.62239837646484, 68.86363983154297, 69.10488891601562, 69.34613037109375, 69.58737182617188, 69.82862091064453, 70.06986236572266, 70.31111145019531, 70.55235290527344, 70.7936019897461, 71.03484344482422, 71.27609252929688, 71.517333984375, 71.75857543945312, 71.99982452392578, 72.2410659790039, 72.48231506347656, 72.72356414794922, 72.96480560302734, 73.20604705810547, 73.4472885131836, 73.68853759765625, 73.92977905273438, 74.17102813720703, 74.41227722167969, 74.65351867675781, 74.89476013183594, 75.13600158691406, 75.37725067138672, 75.61849212646484, 75.8597412109375, 76.10099029541016, 76.34223175048828, 76.58348083496094, 76.82471466064453, 77.06596374511719, 77.30720520019531, 77.54845428466797, 77.78970336914062, 78.03094482421875, 78.2721939086914, 78.513427734375, 78.75467681884766, 78.99591827392578, 79.23716735839844, 79.4784164428711, 79.71965789794922, 79.96090698242188, 80.20214080810547, 80.44338989257812, 80.68463134765625, 80.9258804321289, 81.16712951660156, 81.40837097167969, 81.64962005615234, 81.89085388183594, 82.1321029663086, 82.37334442138672, 82.61459350585938, 82.85584259033203, 83.09708404541016, 83.33833312988281, 83.57957458496094, 83.82081604003906, 84.06205749511719, 84.30330657958984, 84.5445556640625, 84.78579711914062, 85.02704620361328, 85.2682876586914, 85.50952911376953, 85.75077819824219, 85.99201965332031, 86.23326873779297, 86.4745101928711, 86.71575927734375, 86.95700073242188, 87.1982421875, 87.43949127197266, 87.68073272705078, 87.92198181152344, 88.16322326660156, 88.40447235107422, 88.64571380615234, 88.886962890625, 89.12820434570312, 89.36944580078125, 89.6106948852539, 89.85193634033203, 90.09318542480469, 90.33442687988281, 90.57567596435547, 90.8169174194336, 91.05815887451172, 91.29940795898438, 91.5406494140625, 91.78189849853516, 92.02313995361328, 92.26438903808594, 92.50563049316406, 92.74687194824219, 92.98812103271484, 93.22936248779297, 93.47061157226562, 93.71185302734375, 93.9531021118164, 94.19435119628906, 94.43558502197266, 94.67683410644531, 94.91807556152344, 95.1593246459961, 95.40056610107422, 95.64181518554688, 95.88306427001953, 96.12429809570312, 96.36554718017578, 96.6067886352539, 96.84803771972656, 97.08928680419922, 97.33052825927734, 97.57177734375, 97.8130111694336, 98.05426025390625, 98.29550170898438, 98.53675079345703, 98.77799987792969, 99.01924133300781, 99.26049041748047, 99.50172424316406, 99.74297332763672, 99.98421478271484, 100.2254638671875, 100.46671295166016, 100.70795440673828, 100.94920349121094, 101.19044494628906, 101.43168640136719, 101.67292785644531, 101.91417694091797, 102.15542602539062, 102.39666748046875, 102.6379165649414, 102.87915802001953, 103.12039947509766, 103.36164093017578, 103.60289001464844, 103.8441390991211, 104.08538055419922, 104.32662963867188, 104.56787109375, 104.80911254882812, 105.05035400390625, 105.2916030883789, 105.53285217285156, 105.77409362792969, 106.01534271240234, 106.25658416748047, 106.4978256225586, 106.73906707763672, 106.98031616210938, 107.22156524658203, 107.46280670166016, 107.70405578613281, 107.94529724121094, 108.1865463256836, 108.42778015136719, 108.66902923583984, 108.9102783203125, 109.15151977539062, 109.39276885986328, 109.6340103149414, 109.87525939941406, 110.11650085449219, 110.35774230957031, 110.59899139404297, 110.8402328491211, 111.08148193359375, 111.32272338867188, 111.56397247314453, 111.80521392822266])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_2048a270de223676087db6a335c86338.x = d3.scale.linear()\\n\",\n       \"              .domain([-8.575934410095215, 111.80521392822266])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_2048a270de223676087db6a335c86338.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_2048a270de223676087db6a335c86338.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_2048a270de223676087db6a335c86338.legend.addTo(map_a18f9e2109c3c592e79c3a4b1224d27a);\\n\",\n       \"\\n\",\n       \"    color_map_2048a270de223676087db6a335c86338.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_2048a270de223676087db6a335c86338.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-8.575934410095215, &#x27;&#x27;, &#x27;&#x27;, 9.48123836517334, &#x27;&#x27;, &#x27;&#x27;, 27.538410186767578, &#x27;&#x27;, &#x27;&#x27;, 45.595584869384766, &#x27;&#x27;, &#x27;&#x27;, 63.65275573730469, &#x27;&#x27;, &#x27;&#x27;, 81.7099380493164, &#x27;&#x27;, &#x27;&#x27;, 99.76710510253906, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_2048a270de223676087db6a335c86338.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_2048a270de223676087db6a335c86338.g = color_map_2048a270de223676087db6a335c86338.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_2048a270de223676087db6a335c86338.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_2048a270de223676087db6a335c86338.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_2048a270de223676087db6a335c86338.x(color_map_2048a270de223676087db6a335c86338.color.domain()[i - 1]) : color_map_2048a270de223676087db6a335c86338.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_2048a270de223676087db6a335c86338.color.domain().length ? color_map_2048a270de223676087db6a335c86338.x(color_map_2048a270de223676087db6a335c86338.color.domain()[i]) : color_map_2048a270de223676087db6a335c86338.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_2048a270de223676087db6a335c86338.g.call(color_map_2048a270de223676087db6a335c86338.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1d9b78571d0>\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.dot_map(data=pred_res, lon_column='lng', lat_column='lat',\\n\",\n    \"                   y_column='pred_result', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"F2095F5901134C388D9549961C57B4A9\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 6.3 Drawing the heat map for the distribution of weights of each variables \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"DEM\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_48cc23e60dd0223153683665fa44b671 {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_48cc23e60dd0223153683665fa44b671&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_48cc23e60dd0223153683665fa44b671 = L.map(\\n\",\n       \"                &quot;map_48cc23e60dd0223153683665fa44b671&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_83ce5f19d3173ab26576e0f42d27d2f0 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_83ce5f19d3173ab26576e0f42d27d2f0.addTo(map_48cc23e60dd0223153683665fa44b671);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_d55ace143f55c39d489fab9863f85351 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_d55ace143f55c39d489fab9863f85351.color = d3.scale.threshold()\\n\",\n       \"              .domain([-40.71818542480469, -40.58467102050781, -40.45115661621094, -40.3176383972168, -40.18412399291992, -40.05060958862305, -39.91709518432617, -39.78357696533203, -39.650062561035156, -39.51654815673828, -39.383033752441406, -39.249515533447266, -39.11600112915039, -38.982486724853516, -38.848968505859375, -38.7154541015625, -38.581939697265625, -38.44842529296875, -38.314910888671875, -38.181392669677734, -38.04787826538086, -37.914363861083984, -37.780845642089844, -37.64733123779297, -37.513816833496094, -37.38030242919922, -37.246788024902344, -37.1132698059082, -36.97975540161133, -36.84624099731445, -36.71272277832031, -36.57920837402344, -36.44569396972656, -36.31217956542969, -36.17866516113281, -36.04514694213867, -35.9116325378418, -35.77811813354492, -35.64460372924805, -35.511085510253906, -35.37757110595703, -35.244056701660156, -35.11054229736328, -34.97702407836914, -34.843509674072266, -34.70999526977539, -34.57647705078125, -34.442962646484375, -34.3094482421875, -34.175933837890625, -34.04241943359375, -33.90890121459961, -33.775386810302734, -33.64187240600586, -33.508358001708984, -33.374839782714844, -33.24132537841797, -33.107810974121094, -32.97429656982422, -32.84077835083008, -32.7072639465332, -32.57374954223633, -32.44023513793945, -32.30671691894531, -32.17320251464844, -32.03968811035156, -31.906171798706055, -31.772655487060547, -31.639141082763672, -31.505626678466797, -31.37211036682129, -31.23859405517578, -31.105079650878906, -30.97156524658203, -30.838048934936523, -30.70453453063965, -30.57101821899414, -30.437503814697266, -30.303987503051758, -30.170473098754883, -30.036956787109375, -29.9034423828125, -29.769927978515625, -29.636411666870117, -29.50289535522461, -29.369380950927734, -29.23586654663086, -29.10235023498535, -28.968833923339844, -28.83531951904297, -28.701805114746094, -28.568286895751953, -28.434772491455078, -28.301258087158203, -28.167743682861328, -28.034225463867188, -27.900711059570312, -27.767196655273438, -27.63368034362793, -27.500164031982422, -27.366649627685547, -27.233135223388672, -27.099618911743164, -26.96610450744629, -26.83258819580078, -26.699073791503906, -26.5655574798584, -26.432043075561523, -26.298526763916016, -26.16501235961914, -26.031497955322266, -25.897981643676758, -25.76446533203125, -25.630950927734375, -25.4974365234375, -25.363920211791992, -25.230403900146484, -25.09688949584961, -24.963375091552734, -24.829858779907227, -24.69634246826172, -24.562828063964844, -24.42931365966797, -24.29579734802246, -24.162282943725586, -24.028764724731445, -23.89525032043457, -23.761735916137695, -23.628219604492188, -23.494705200195312, -23.361190795898438, -23.22767448425293, -23.094158172607422, -22.960643768310547, -22.82712745666504, -22.693613052368164, -22.56009864807129, -22.42658233642578, -22.293067932128906, -22.159549713134766, -22.02603530883789, -21.892520904541016, -21.759004592895508, -21.625490188598633, -21.491975784301758, -21.35845947265625, -21.224943161010742, -21.091428756713867, -20.95791244506836, -20.824398040771484, -20.69088363647461, -20.5573673248291, -20.423852920532227, -20.290334701538086, -20.15682029724121, -20.023305892944336, -19.889789581298828, -19.756275177001953, -19.622760772705078, -19.48924446105957, -19.355730056762695, -19.222213745117188, -19.08869743347168, -18.955183029174805, -18.82166862487793, -18.688152313232422, -18.554637908935547, -18.42112159729004, -18.28760528564453, -18.154090881347656, -18.02057456970215, -17.887060165405273, -17.7535457611084, -17.62002944946289, -17.486515045166016, -17.352998733520508, -17.219482421875, -17.085968017578125, -16.95245361328125, -16.818937301635742, -16.685422897338867, -16.551908493041992, -16.41839027404785, -16.284875869750977, -16.15135955810547, -16.017845153808594, -15.884330749511719, -15.750814437866211, -15.617300033569336, -15.483783721923828, -15.35026741027832, -15.216753005981445, -15.08323860168457, -14.949722290039062, -14.816207885742188, -14.682693481445312, -14.549175262451172, -14.415660858154297, -14.282144546508789, -14.148630142211914, -14.015115737915039, -13.881599426269531, -13.748085021972656, -13.614568710327148, -13.48105239868164, -13.347537994384766, -13.21402359008789, -13.080507278442383, -12.946992874145508, -12.813478469848633, -12.679960250854492, -12.546445846557617, -12.41292953491211, -12.279415130615234, -12.14590072631836, -12.012384414672852, -11.878870010375977, -11.745353698730469, -11.611837387084961, -11.478322982788086, -11.344808578491211, -11.211292266845703, -11.077777862548828, -10.944263458251953, -10.810745239257812, -10.677230834960938, -10.54371452331543, -10.410200119018555, -10.27668571472168, -10.143169403076172, -10.009654998779297, -9.876140594482422, -9.742622375488281, -9.609107971191406, -9.475593566894531, -9.342077255249023, -9.208562850952148, -9.075048446655273, -8.941532135009766, -8.808015823364258, -8.67449951171875, -8.540985107421875, -8.407470703125, -8.273956298828125, -8.14044189453125, -8.00692367553711, -7.873409271240234, -7.739891052246094, -7.606380462646484, -7.472862243652344, -7.339344024658203, -7.205833435058594, -7.072315216064453, -6.938800811767578, -6.805286407470703, -6.671772003173828, -6.5382537841796875, -6.4047393798828125, -6.2712249755859375, -6.137706756591797, -6.0041961669921875, -5.870677947998047, -5.737163543701172, -5.603649139404297, -5.470130920410156, -5.336616516113281, -5.203102111816406, -5.069587707519531, -4.936069488525391, -4.802558898925781, -4.669040679931641, -4.5355224609375, -4.402011871337891, -4.26849365234375, -4.134979248046875, -4.001461029052734, -3.867950439453125, -3.7344322204589844, -3.6009140014648438, -3.4674034118652344, -3.3338851928710938, -3.2003707885742188, -3.0668563842773438, -2.9333419799804688, -2.799823760986328, -2.666309356689453, -2.532794952392578, -2.3992767333984375, -2.265766143798828, -2.1322479248046875, -1.9987335205078125, -1.8652191162109375, -1.7317008972167969, -1.5981864929199219, -1.4646720886230469, -1.3311576843261719, -1.1976394653320312, -1.0641288757324219, -0.9306106567382812, -0.7970924377441406, -0.6635818481445312, -0.5300636291503906, -0.3965492248535156, -0.2630348205566406, -0.12952041625976562, 0.003997802734375, 0.13751602172851562, 0.271026611328125, 0.4045448303222656, 0.5380592346191406, 0.6715736389160156, 0.8050880432128906, 0.9386062622070312, 1.0721206665039062, 1.2056350708007812, 1.3391532897949219, 1.4726638793945312, 1.6061820983886719, 1.7396965026855469, 1.8732109069824219, 2.006725311279297, 2.1402435302734375, 2.2737579345703125, 2.4072723388671875, 2.540790557861328, 2.6743011474609375, 2.807819366455078, 2.941333770751953, 3.074848175048828, 3.2083663940429688, 3.3418807983398438, 3.4753952026367188, 3.6089096069335938, 3.7424278259277344, 3.8759422302246094, 4.009456634521484, 4.142974853515625, 4.2764892578125, 4.410003662109375, 4.54351806640625, 4.677036285400391, 4.810546875, 4.944065093994141, 5.077583312988281, 5.211093902587891, 5.344612121582031, 5.478126525878906, 5.611640930175781, 5.745155334472656, 5.878673553466797, 6.012187957763672, 6.145702362060547, 6.2792205810546875, 6.412731170654297, 6.5462493896484375, 6.6797637939453125, 6.8132781982421875, 6.946796417236328, 7.080310821533203, 7.213825225830078, 7.347339630126953, 7.480857849121094, 7.614368438720703, 7.747886657714844, 7.881404876708984, 8.01491928100586, 8.148433685302734, 8.28194808959961, 8.41546630859375, 8.54897689819336, 8.6824951171875, 8.81601333618164, 8.94952392578125, 9.08304214477539, 9.216556549072266, 9.35007095336914, 9.483585357666016, 9.617103576660156, 9.750617980957031, 9.884132385253906, 10.017650604248047, 10.151161193847656, 10.284679412841797, 10.418193817138672, 10.551708221435547, 10.685226440429688, 10.818740844726562, 10.952255249023438, 11.085769653320312, 11.219287872314453, 11.352798461914062, 11.486316680908203, 11.619834899902344, 11.753349304199219, 11.886863708496094, 12.020378112792969, 12.15389633178711, 12.287406921386719, 12.42092514038086, 12.554443359375, 12.68795394897461, 12.82147216796875, 12.954986572265625, 13.0885009765625, 13.222015380859375, 13.355533599853516, 13.48904800415039, 13.622562408447266, 13.756080627441406, 13.889591217041016, 14.023109436035156, 14.156623840332031, 14.290138244628906, 14.423656463623047, 14.557170867919922, 14.690685272216797, 14.824199676513672, 14.957717895507812, 15.091228485107422, 15.224746704101562, 15.358264923095703, 15.491779327392578, 15.625293731689453, 15.758808135986328, 15.892326354980469, 16.025836944580078, 16.15935516357422, 16.29287338256836, 16.42638397216797, 16.55990219116211, 16.693416595458984, 16.82693099975586, 16.960445404052734, 17.093963623046875, 17.22747802734375, 17.360992431640625, 17.494510650634766, 17.628021240234375, 17.761539459228516, 17.89505386352539, 18.028568267822266, 18.162086486816406, 18.29560089111328, 18.429115295410156, 18.56262969970703, 18.696147918701172, 18.82965850830078, 18.963176727294922, 19.096694946289062, 19.230209350585938, 19.363723754882812, 19.497238159179688, 19.630756378173828, 19.764266967773438, 19.897785186767578, 20.031299591064453, 20.164813995361328, 20.29833221435547, 20.431846618652344, 20.56536102294922, 20.698875427246094, 20.832393646240234, 20.965904235839844, 21.099422454833984, 21.232940673828125, 21.366451263427734, 21.499969482421875, 21.63348388671875, 21.766998291015625, 21.9005126953125, 22.03403091430664, 22.167545318603516, 22.30105972290039, 22.43457794189453, 22.56808853149414, 22.70160675048828, 22.835121154785156, 22.96863555908203, 23.102153778076172, 23.235668182373047, 23.369186401367188, 23.502700805664062, 23.636215209960938, 23.769729614257812, 23.903244018554688, 24.036758422851562, 24.170272827148438, 24.303794860839844, 24.437301635742188, 24.570823669433594, 24.70433807373047, 24.837852478027344, 24.97136688232422, 25.104881286621094, 25.2384033203125, 25.371917724609375, 25.50542449951172, 25.638946533203125, 25.7724609375, 25.905975341796875])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_d55ace143f55c39d489fab9863f85351.x = d3.scale.linear()\\n\",\n       \"              .domain([-40.71818542480469, 25.905975341796875])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_d55ace143f55c39d489fab9863f85351.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_d55ace143f55c39d489fab9863f85351.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_d55ace143f55c39d489fab9863f85351.legend.addTo(map_48cc23e60dd0223153683665fa44b671);\\n\",\n       \"\\n\",\n       \"    color_map_d55ace143f55c39d489fab9863f85351.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_d55ace143f55c39d489fab9863f85351.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-40.71818542480469, &#x27;&#x27;, &#x27;&#x27;, -30.72456169128418, &#x27;&#x27;, &#x27;&#x27;, -20.730937957763672, &#x27;&#x27;, &#x27;&#x27;, -10.737314224243164, &#x27;&#x27;, &#x27;&#x27;, -0.7436904907226562, &#x27;&#x27;, &#x27;&#x27;, 9.249935150146484, &#x27;&#x27;, &#x27;&#x27;, 19.24355697631836, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_d55ace143f55c39d489fab9863f85351.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_d55ace143f55c39d489fab9863f85351.g = color_map_d55ace143f55c39d489fab9863f85351.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_d55ace143f55c39d489fab9863f85351.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_d55ace143f55c39d489fab9863f85351.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_d55ace143f55c39d489fab9863f85351.x(color_map_d55ace143f55c39d489fab9863f85351.color.domain()[i - 1]) : color_map_d55ace143f55c39d489fab9863f85351.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_d55ace143f55c39d489fab9863f85351.color.domain().length ? color_map_d55ace143f55c39d489fab9863f85351.x(color_map_d55ace143f55c39d489fab9863f85351.color.domain()[i]) : color_map_d55ace143f55c39d489fab9863f85351.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_d55ace143f55c39d489fab9863f85351.g.call(color_map_d55ace143f55c39d489fab9863f85351.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_d262d47052491a5d57789334fb1a3279 = L.heatLayer(\\n\",\n       \"                [[28.4303, 117.9033, -19.044294357299805], [31.1654, 121.412, -11.785500526428223], [23.4794, 111.26, -3.2665436267852783], [34.7772, 111.1928, -36.181087493896484], [43.8748, 125.3649, -4.45644998550415], [36.838, 118.0448, -15.279555320739746], [26.5506, 104.9544, -4.185212135314941], [43.9317, 116.1042, -4.724699020385742], [25.0925, 104.9022, -0.5928609371185303], [36.885, 120.515, -8.600464820861816], [41.1386, 121.1303, -9.110100746154785], [25.4552, 119.0018, -4.616034507751465], [50.4217, 124.1303, 5.195731163024902], [33.739, 113.292, -35.17293930053711], [25.8664, 114.9367, -14.699317932128906], [22.8054, 113.292, -0.3309437036514282], [29.8272, 106.379, -21.817272186279297], [32.0314, 118.803, -20.45287322998047], [28.2325, 113.0833, -25.08955192565918], [31.896, 121.173, -12.301915168762207], [35.428, 116.6305, -23.190387725830078], [29.389, 106.513, -20.66844940185547], [33.975, 116.8008, -24.602222442626953], [31.3097, 120.669, -13.884267807006836], [32.625, 116.7039, -28.00844383239746], [39.8261, 109.9486, -20.436084747314453], [37.4664, 116.3061, -23.961273193359375], [40.9923, 113.1306, -16.44508171081543], [39.6407, 118.1853, -9.169189453125], [42.2217, 123.7153, -6.934980392456055], [34.1978, 108.985, -37.86339569091797], [31.3839, 118.4022, -23.33283805847168], [31.03389, 112.1908, -40.60556411743164], [27.6442, 113.8686, -22.496198654174805], [29.3578, 113.1094, -32.06709671020508], [29.5947, 105.0717, -17.007951736450195], [37.7019, 112.7549, -32.77317810058594], [37.0533, 114.5261, -31.42377471923828], [22.2281, 113.299, 1.5775469541549683], [39.7294, 98.5023, -0.6471686959266663], [41.615, 120.3939, -8.561098098754883], [39.3179, 112.4254, -26.518404006958008], [24.9424, 118.6663, -3.7605490684509277], [40.6575, 109.8104, -15.368656158447266], [32.02, 120.87, -12.973493576049805], [28.6844, 115.893, -26.343059539794922], [39.5747, 116.7729, -13.67395305633545], [42.8939, 129.4892, -2.787484884262085], [38.3254, 116.8584, -18.060300827026367], [28.5773, 121.377, -9.166640281677246], [39.0511, 121.7769, -9.285429000854492], [30.6539, 117.4974, -28.48369598388672], [36.2866, 100.6188, -8.875418663024902], [45.9819, 126.6106, -0.7705716490745544], [45.2978, 130.9298, 1.4530527591705322], [23.7569, 114.6778, -3.7436635494232178], [27.9119, 112.9074, -23.723581314086914], [24.8885, 102.821, 1.9470926523208618], [29.5844, 103.7627, -12.492399215698242], [24.769519, 113.586606, -9.740323066711426], [41.5672, 120.4486, -8.619776725769043], [39.7884, 109.9734, -20.706069946289062], [27.8328, 114.9289, -23.00143051147461], [32.3761, 119.389, -17.580265045166016], [25.7054, 100.1542, 2.5528242588043213], [29.3628, 104.7547, -15.002997398376465], [24.3663, 109.3957, -5.3071722984313965], [31.215, 107.525, -29.507469177246094], [35.76806, 115.0061, -29.729984283447266], [26.3003, 106.805, -7.780216217041016], [34.6972, 119.3581, -12.622627258300781], [30.6463, 111.3549, -39.911949157714844], [30.2366, 119.7183, -17.360124588012695], [27.3392, 103.7032, -3.188917875289917], [33.8997, 116.8067, -24.712663650512695], [33.5981, 119.036, -15.782694816589355], [37.0964, 114.5331, -31.374801635742188], [37.7575, 115.6951, -26.47493553161621], [22.5211, 113.3769, 0.684312641620636], [22.6411, 110.1675, 0.5241155028343201], [38.3228, 116.8709, -18.00738525390625], [25.8471, 114.8905, -14.64822769165039], [35.04388889, 111.0522222, -36.4339714050293], [33.9953, 113.7906, -33.58177185058594], [23.7586, 114.6944, -3.7364888191223145], [45.6842, 126.6206, -1.1466344594955444], [38.8957, 115.5223, -22.08602523803711], [40.715, 120.8478, -9.390579223632812], [39.6969, 106.8089, -12.735737800598145], [23.5353, 116.3697, -1.670604944229126], [39.746, 98.509, -0.6392263770103455], [36.7008, 119.1425, -10.443989753723145], [43.8694, 125.325, -4.480798244476318], [42.0228, 121.6722, -8.340986251831055], [23.0672, 109.6042, -0.741210401058197], [30.5947, 114.3008, -36.239139556884766], [23.475, 111.3178, -3.2629566192626953], [27.6869, 106.9222, -14.222136497497559], [34.1546, 108.906, -37.793701171875], [36.8041, 117.8512, -16.33279800415039], [23.0916, 113.348, -1.4435068368911743], [32.6319, 116.8306, -27.589998245239258], [32.4867, 119.9, -15.656018257141113], [30.1366, 104.6617, -17.206615447998047], [24.4072, 111.5622, -7.436448097229004], [31.7618, 116.478, -30.457294464111328], [41.2692, 123.7989, -8.090044021606445], [42.0503, 121.6972, -8.320536613464355], [38.2478, 109.7336, -26.936613082885742], [34.6575, 109.2, -37.74953842163086], [39.79777778, 98.26722222, -0.4770791828632355], [25.5035, 103.7897, 0.36172589659690857], [35.763, 115.031, -29.663848876953125], [39.9425, 116.361, -13.708187103271484], [34.3739, 107.1186, -30.93157386779785], [30.2352, 115.0625, -34.1317024230957], [44.1756, 87.5475, 10.686162948608398], [40.2865, 116.17, -13.017210960388184], [36.1851, 120.3905, -9.077437400817871], [36.0417, 111.4917, -35.49119186401367], [39.0153, 106.3717, -13.950660705566406], [36.6867, 101.524, -9.670581817626953], [35.213, 113.227, -33.28755187988281], [24.506, 117.7116, -3.614912509918213], [47.203, 123.6261, -0.534531831741333], [46.0347, 124.8354, -1.698227882385254], [35.0697, 109.0697, -36.88092041015625], [34.3622, 107.2386, -31.682226181030273], [35.7306, 114.2878, -31.46792984008789], [44.5952, 129.5902, -0.5730924010276794], [23.3667, 116.6794, -1.1158771514892578], [34.7837, 117.2852, -20.75581169128418], [31.155, 120.636, -14.018348693847656], [30.4742, 114.9028, -34.796146392822266], [41.3047, 123.7308, -8.095255851745605], [28.8558, 105.4322, -15.088555335998535], [36.71, 117.541, -18.023855209350586], [32.6494, 110.78, -40.0712890625], [31.8516, 117.124, -28.636674880981445], [30.5797, 105.7519, -21.760194778442383], [38.9467, 100.4686, -3.1898210048675537], [39.617, 122.011, -9.471835136413574], [28.6428, 112.4067, -27.29213523864746], [31.2659, 121.536, -11.543208122253418], [39.5178, 116.6838, -14.180370330810547], [28.7989, 104.6789, -12.226853370666504], [31.5072, 104.7283, -18.71611785888672], [34.6869, 112.4831, -34.64163589477539], [31.388, 120.953, -13.036673545837402], [30.475, 105.5956, -21.106538772583008], [41.3283, 123.8436, -7.9979705810546875], [26.3108, 117.7275, -10.177639961242676], [22.7629, 113.257, -0.18574194610118866], [32.645, 117.0083, -26.95784568786621], [22.8225, 108.321, 1.2200058698654175], [40.3937, 116.644, -11.441636085510254], [46.0872, 85.6931, 15.10964298248291], [30.8596, 120.1844, -15.697495460510254], [31.1333, 104.3883, -17.689855575561523], [27.9939, 120.677, -8.863852500915527], [37.187, 122.019, -8.715607643127441], [29.8633, 121.586, -10.932575225830078], [39.65782, 118.1838, -9.14627742767334], [34.6869, 112.4664, -34.65928649902344], [40.6592, 122.2414, -9.190781593322754], [39.8673, 116.366, -13.982779502868652], [34.493, 109.4636, -37.87351608276367], [40.8144, 111.608, -17.045583724975586], [28.095, 116.9622, -20.69792938232422], [22.9477, 113.352, -0.8601316213607788], [27.5342, 109.9792, -20.269094467163086], [31.874, 120.526, -14.147124290466309], [36.2289, 117.6789, -17.42498016357422], [28.0005, 116.3574, -22.070148468017578], [41.1196, 123.044, -8.602017402648926], [29.6588, 90.9798, 8.221196174621582], [23.0528, 114.4183, -0.856241762638092], [50.4269, 124.1186, 5.200819492340088], [30.6578, 104.054, -16.34351921081543], [31.6928, 118.48, -22.568313598632812], [46.6384, 126.9934, 0.4229905307292938], [27.3033, 111.5239, -20.754480361938477], [31.8711, 106.7389, -25.794925689697266], [37.154, 122.471, -8.883292198181152], [48.4658, 129.4942, 5.029036045074463], [41.0781, 121.0986, -9.154577255249023], [28.1442, 112.9956, -24.681686401367188], [40.7608, 107.4211, -9.654491424560547], [37.4314, 118.6672, -11.39522647857666], [43.8947, 126.5786, -3.823259115219116], [23.63444, 113.0472, -4.008606433868408], [37.4442, 118.5857, -11.716113090515137], [25.8179, 113.0119, -15.291187286376953], [23.105, 113.261, -1.5314916372299194], [32.0417, 120.81, -13.1251859664917], [23.0786, 112.4722, -1.5423516035079956], [31.2071, 121.577, -11.466179847717285], [37.8195, 112.57, -32.57829284667969], [32.0564, 112.1392, -40.677978515625], [38.95111111, 121.565, -9.222535133361816], [43.1747, 124.3419, -5.675746917724609], [29.7534, 116.0726, -31.00019073486328], [39.9279, 116.225, -14.174038887023926], [31.6411, 118.4828, -22.60796546936035], [36.5481, 104.1731, -14.07337760925293], [35.0994, 109.0656, -36.80305862426758], [23.2539, 116.6092, -0.8569361567497253], [31.3708, 120.641, -13.972436904907227], [34.7187, 113.727, -32.89826202392578], [36.497, 117.8477, -16.54717445373535], [27.8094, 102.3419, -1.9361282587051392], [43.8303, 87.5801, 10.322701454162598], [27.6428, 113.8381, -22.496877670288086], [31.5631, 120.245, -15.299897193908691], [29.41569, 106.5506, -20.87215805053711], [32.0197, 112.155, -40.705787658691406], [26.5747, 107.9783, -11.803741455078125], [28.76611, 104.6225, -11.863975524902344], [27.8036, 114.9314, -22.856935501098633], [21.9667, 108.6236, 3.4835357666015625], [29.1456, 111.7158, -30.183609008789062], [24.2654, 116.1248, -4.549847602844238], [49.2261, 119.7594, 1.8561723232269287], [32.8603, 115.8556, -29.939062118530273], [27.9958, 113.1817, -24.037885665893555], [28.6869, 115.852, -26.401735305786133], [30.3055, 112.2887, -38.31249237060547], [46.7588, 130.3794, 3.0783650875091553], [32.965, 114.018, -35.039344787597656], [22.5328, 113.024, 0.5676254630088806], [36.6114, 116.988, -20.94608497619629], [32.996, 113.996, -35.04254913330078], [31.354, 119.818, -16.971885681152344], [38.0513, 114.4548, -29.936662673950195], [42.8775, 129.3675, -2.912940740585327], [26.6946, 119.5001, -7.123612403869629], [33.627, 119.0122, -15.783857345581055], [28.4231, 119.879, -12.472455978393555], [29.635, 119.026, -19.229228973388672], [31.7275, 113.3583, -38.936405181884766], [41.5647, 120.4247, -8.61818790435791], [34.6231, 112.3844, -34.888893127441406], [30.1377, 104.6289, -17.091777801513672], [42.0186, 121.6561, -8.344531059265137], [29.5817, 105.0653, -16.939029693603516], [24.2719, 116.0797, -4.633296012878418], [39.5371, 75.9828, 25.85335922241211], [41.9206, 126.4047, -5.8786301612854], [27.583, 110.0394, -20.52364730834961], [33.4022, 120.118, -13.379755973815918], [26.6343, 106.7487, -8.920276641845703], [35.4234, 119.5198, -11.235672950744629], [28.1308, 112.8908, -24.620281219482422], [24.3406, 109.3886, -5.212060928344727], [21.7631, 108.3511, 4.127180576324463], [27.11, 114.9739, -20.066152572631836], [42.8953, 125.1567, -5.575600624084473], [43.895, 81.2867, 18.9779109954834], [40.7736, 120.8631, -9.361323356628418], [32.935, 117.3086, -25.048816680908203], [40.5905, 110.0067, -16.06949806213379], [29.8208, 121.56, -10.919242858886719], [32.7639, 116.8028, -27.3037052154541], [26.8802, 100.2497, 1.3145943880081177], [30.3714, 114.8989, -34.66318893432617], [29.7228, 106.626, -22.012962341308594], [43.85, 125.217, -4.551310062408447], [21.6828, 110.8592, 3.347869396209717], [33.5979, 114.6546, -31.97921371459961], [29.6007, 103.7506, -12.5132417678833], [47.7222, 128.8736, 3.359722852706909], [24.81119444, 113.5593889, -9.993224143981934], [29.315, 110.4417, -29.79775047302246], [27.7314, 112.0194, -22.575069427490234], [34.9058, 108.9344, -37.02669906616211], [29.5186, 106.54, -21.188369750976562], [40.0031, 116.407, -13.357733726501465], [31.9286, 102.1755, -12.70671272277832], [38.8756, 115.442, -22.56473731994629], [40.7688, 114.9032, -14.225071907043457], [38.0398, 114.6046, -29.604625701904297], [37.8792, 113.4922, -31.924650192260742], [31.0283, 103.613, -15.636610984802246], [31.3508, 118.3528, -23.663318634033203], [32.88922222, 115.7838889, -30.086772918701172], [36.0783, 111.5531, -35.375640869140625], [36.2126, 113.0886, -33.51982498168945], [21.8536, 111.9508, 2.683051109313965], [29.7736, 121.633, -10.743426322937012], [28.3586, 112.9958, -25.73853874206543], [37.4294, 122.1206, -8.773292541503906], [28.71583, 104.5761, -11.447552680969238], [31.5848, 120.354, -14.8998441696167], [31.2108, 107.4967, -29.367612838745117], [26.0797, 119.268, -5.760346412658691], [23.0467, 113.144, -1.3191906213760376], [26.6383, 118.1694, -10.301295280456543], [27.9153, 113.0048, -23.742294311523438], [32.6975, 109.0072, -37.77665328979492], [31.955, 119.146, -19.047073364257812], [33.38256667, 104.9338889, -18.223255157470703], [37.8564, 113.5753, -31.895015716552734], [39.7711, 98.2908, -0.5065644383430481], [30.6145, 116.9894, -30.32013511657715], [43.9469, 87.4754, 10.55398178100586], [39.5453, 116.7022, -14.027299880981445], [30.9219, 117.8561, -26.703893661499023], [34.7745, 113.641, -33.00347137451172], [32.41, 119.404, -17.475631713867188], [22.5111, 113.4075, 0.7228549718856812], [43.6156, 122.3039, -6.014523029327393], [37.7087, 112.7105, -32.77543258666992], [41.3472, 123.8142, -7.994523048400879], [43.831, 87.6432, 10.249922752380371], [22.8322, 100.9817, 5.478511333465576], [23.415, 111.2353, -2.981651544570923], [29.2958, 117.2111, -26.429054260253906], [30.21, 120.211, -15.406375885009766], [27.7019, 106.9242, -14.292773246765137], [30.0506, 103.8986, -14.472678184509277], [46.8032, 130.3648, 3.129363536834717], [33.9592, 118.2442, -17.997888565063477], [26.4519, 111.5989, -17.42012596130371], [31.1907, 121.703, -11.290323257446289], [26.8576, 100.2143, 1.365502119064331], [47.2988, 123.945, -0.21811234951019287], [36.253, 120.014, -9.293198585510254], [32.9917, 112.5192, -38.36109924316406], [34.402, 115.6578, -28.03455352783203], [37.9844, 106.2025, -16.751726150512695], [45.2948, 131.0103, 1.521407127380371], [33.3942, 120.156, -13.311272621154785], [24.3898, 109.4883, -5.48953104019165], [30.9742, 118.7386, -21.622112274169922], [26.6029, 106.6856, -8.63856029510498], [31.2994, 120.543, -14.345243453979492], [30.3515, 112.2068, -38.5797119140625], [30.5706, 104.079, -16.269039154052734], [21.5958, 109.2256, 4.149957180023193], [44.1564, 87.9897, 10.15652084350586], [22.7875, 108.301, 1.348170518875122], [26.2403, 107.5228, -9.331320762634277], [27.5578, 109.9972, -20.380109786987305], [30.4865, 106.6351, -24.361530303955078], [38.4975, 106.2328, -15.147963523864746], [30.9892, 112.1969, -40.55022048950195], [37.7379, 115.6426, -26.790985107421875], [36.1417, 106.2319, -22.236635208129883], [43.4569, 87.4651, 10.117414474487305], [24.3158, 109.4839, -5.230356693267822], [45.8194, 130.8625, 2.1361894607543945], [29.1389, 110.48, -28.754436492919922], [29.90166667, 121.6147222, -10.93431568145752], [34.7997, 111.1489, -36.24531173706055], [26.0931, 119.58, -5.34011697769165], [41.7972, 123.3997, -7.767219543457031], [25.5364, 103.8, 0.2925909459590912], [31.7797, 116.5068, -30.361270904541016], [27.7569, 111.9561, -22.63628387451172], [38.9846, 117.3747, -13.338414192199707], [36.086, 114.32, -31.581789016723633], [39.9934, 116.315, -13.65447998046875], [37.7805, 112.488, -32.665916442871094], [29.7292, 115.988, -31.082195281982422], [27.8317, 99.7056, 0.16674461960792542], [38.91194444, 121.6330556, -9.218341827392578], [43.941, 81.3364, 18.936870574951172], [37.18, 119.959, -8.691357612609863], [35.5294, 106.7039, -25.976972579956055], [33.581, 114.014, -33.84276580810547], [30.7819, 111.3296, -40.41565704345703], [38.5036, 106.1358, -14.858558654785156], [31.751, 119.579, -17.60829734802246], [29.6376, 94.3681, 3.9978225231170654], [38.85611111, 121.5180556, -9.184392929077148], [30.7157, 111.3009, -40.163665771484375], [40.8369, 111.751, -17.064510345458984], [36.4796, 115.9835, -26.303226470947266], [39.2474, 117.7918, -11.04527473449707], [37.825, 120.747, -8.46209716796875], [39.0877, 117.307, -13.281944274902344], [35.0003, 102.905, -13.870039939880371], [31.6219, 120.275, -15.159913063049316], [29.6747, 91.1221, 8.052281379699707], [41.7156, 125.9361, -6.262135982513428], [34.2153, 117.256, -22.03139305114746], [31.1108, 104.3539, -17.567764282226562], [29.8906, 121.554, -11.017348289489746], [30.65638889, 104.0238889, -16.263412475585938], [46.6219, 124.8648, -0.8712558746337891], [32.215, 119.491, -17.43913459777832], [29.9899, 103.0013, -11.538579940795898], [34.0117, 113.8331, -33.45428466796875], [42.8328, 93.4961, 4.693281650543213], [36.5458, 104.1731, -14.075984001159668], [26.6009, 106.7105, -8.695210456848145], [23.0944, 109.6014, -0.8416990041732788], [29.4758, 113.2621, -32.822174072265625], [33.0069, 114.0131, -34.969295501708984], [22.6164, 110.1433, 0.6218175292015076], [41.7381, 125.9486, -6.236947536468506], [37.8692, 112.5369, -32.46341323852539], [32.3292, 119.8767, -15.920697212219238], [35.4039, 116.5546, -23.536775588989258], [29.9816, 103.0001, -11.508406639099121], [39.1654, 117.145, -13.651412010192871], [32.3878, 119.46, -17.319440841674805], [45.7478, 126.593, -1.0740631818771362], [40.1269, 113.2661, -21.79216957092285], [32.4246, 105.8153, -20.7724666595459], [30.6103, 114.4272, -35.985111236572266], [23.02777778, 113.7461111, -1.0380715131759644], [35.9019, 114.17, -31.80449867248535], [38.4841, 106.2739, -15.317166328430176], [36.865, 120.537, -8.611475944519043], [39.2282, 106.7704, -14.324602127075195], [30.8811, 117.7442, -27.30765151977539], [23.2775, 116.7258, -0.8749595284461975], [37.5639, 121.2514, -8.520591735839844], [27.8528, 113.13, -23.479761123657227], [34.5021, 109.4266, -37.86587142944336], [38.6016, 105.9512, -14.042179107666016], [32.8985, 117.3065, -25.162099838256836], [37.1152, 79.9485, 19.80031394958496], [26.567, 101.7227, 0.9999639987945557], [36.799, 119.976, -8.77696418762207], [30.2997, 113.8531, -36.44697189331055], [41.9339, 123.6836, -7.394926071166992], [36.864, 118.78, -11.599967956542969], [42.0486, 121.6592, -8.322999954223633], [41.1042, 121.835, -9.071331024169922], [38.03777778, 114.5480556, -29.76424217224121], [36.0714, 111.5028, -35.44481658935547], [26.5928, 101.5769, 1.0601201057434082], [24.339, 102.5381, 2.5992705821990967], [30.66, 117.49, -28.517885208129883], [19.9969, 110.338, 6.649419784545898], [34.3469, 106.005, -23.852121353149414], [28.2264, 117.0222, -21.3125], [30.0125, 103.009, -11.632684707641602], [38.2991, 116.8854, -18.032819747924805], [26.4364, 111.5992, -17.353384017944336], [23.8822, 100.0869, 4.389031887054443], [26.4214, 111.6156, -17.30193519592285], [23.0395, 113.105, -1.3011850118637085], [29.53675, 106.4959, -21.136526107788086], [32.64600333, 117.0411667, -26.834043502807617], [37.9854, 112.549, -32.11845397949219], [28.0167, 120.671, -8.948216438293457], [33.5653, 114.0322, -33.82396697998047], [30.9414, 117.8178, -26.923818588256836], [27.9747, 120.76, -8.646512985229492], [24.4674, 117.6336, -3.585012197494507], [30.8217, 106.1031, -23.225555419921875], [35.0573, 118.3418, -15.137147903442383], [34.864, 117.5564, -19.13576889038086], [22.0019, 100.7939, 7.336043834686279], [45.305, 130.9817, 1.5094338655471802], [44.2967, 86.0497, 12.592326164245605], [30.2747, 120.063, -16.022680282592773], [26.6761, 118.0966, -10.653977394104004], [37.3803, 118.0062, -14.810861587524414], [36.8198, 118.3092, -13.968521118164062], [31.9108, 119.905, -16.247892379760742], [40.0625, 124.3303, -8.679490089416504], [27.8159, 112.9227, -23.31020736694336], [45.7733, 126.689, -0.9835790991783142], [46.0707, 122.0931, -2.42205810546875], [37.4967, 121.2611, -8.528087615966797], [33.6067, 118.989, -15.921289443969727], [33.6128, 114.6613, -31.937984466552734], [22.6069, 113.104, 0.32903605699539185], [45.7667, 126.635, -1.023881196975708], [24.3304, 109.4108, -5.202208042144775], [41.1933, 80.2956, 19.1122989654541], [30.8064, 106.056, -23.0198974609375], [36.2211, 117.6983, -17.335573196411133], [30.518, 106.631, -24.429336547851562], [32.1883, 119.68, -16.785091400146484], [32.0775, 118.795, -20.43929672241211], [31.6908, 113.3833, -38.89168930053711], [37.374, 120.399, -8.417011260986328], [31.6861, 118.5058, -22.425851821899414], [26.2331, 111.6236, -16.48469352722168], [28.8194, 104.5969, -12.029346466064453], [28.19, 112.9394, -24.874225616455078], [23.3892, 104.2319, 2.901550054550171], [46.6527, 126.9636, 0.425689160823822], [24.441, 98.578, 4.789126396179199], [35.1147, 111.0414, -36.452667236328125], [31.4, 119.46, -18.314363479614258], [42.9061, 129.5042, -2.7594196796417236], [47.9047, 88.1214, 14.801854133605957], [26.6607, 119.5202, -6.978190898895264], [40.8452, 111.659, -16.921791076660156], [29.7048, 115.9581, -31.06283950805664], [46.6462, 131.1516, 3.5974113941192627], [35.5714, 104.6228, -16.34562110900879], [23.1323, 113.3208, -1.6265010833740234], [30.0033, 120.7789, -13.083661079406738], [30.4133, 114.8131, -34.905128479003906], [39.8745, 116.434, -13.738739013671875], [44.0297, 87.2717, 10.869348526000977], [42.2814, 118.9233, -7.498913288116455], [45.2924, 130.962, 1.4744088649749756], [23.5739, 116.3594, -1.7757132053375244], [30.1808, 120.088, -15.858036994934082], [36.6106, 109.5056, -32.53560256958008], [29.6541, 91.1774, 8.001814842224121], [44.5462, 129.6386, -0.5968456268310547], [25.2708, 110.3089, -10.29831600189209], [43.8256, 126.55, -3.922182559967041], [45.755, 126.542, -1.093340516090393], [21.6669, 110.9067, 3.3769068717956543], [34.9162, 113.6113, -32.97905731201172], [25.5811, 100.2171, 2.650217056274414], [29.8539, 114.2894, -34.07318115234375], [26.9056, 112.5664, -19.72274398803711], [47.3382, 130.1097, 3.7010765075683594], [31.4747, 104.7778, -18.88677215576172], [34.6258, 112.4275, -34.82490539550781], [34.3672, 107.1906, -31.384136199951172], [32.18888889, 119.4369444, -17.667585372924805], [24.77908333, 113.6734722, -9.756631851196289], [23.5538, 113.589, -3.447876453399658], [35.4813, 112.8252, -33.61054611206055], [35.235, 113.261, -33.23393630981445], [41.8594, 123.9, -7.35699462890625], [22.7019, 110.1106, 0.3297896683216095], [32.1403, 114.0122, -36.746543884277344], [24.795928, 113.598061, -9.88751220703125], [27.8136, 99.7064, 0.1929740011692047], [36.0822, 111.5169, -35.41632080078125], [37.3617, 118.0018, -14.868611335754395], [40.7579, 111.651, -17.427688598632812], [43.8167, 125.25, -4.569360733032227], [37.43445, 118.696, -11.270633697509766], [28.5808, 112.3458, -26.902414321899414], [26.6514, 118.1819, -10.319555282592773], [46.6572, 131.1638, 3.6243951320648193], [35.4144, 116.5856, -23.393882751464844], [24.68636111, 113.5970833, -9.277753829956055], [23.05361111, 113.7819444, -1.1232197284698486], [31.7506, 118.5106, -22.324705123901367], [30.5719, 114.3672, -36.059844970703125], [29.4402, 112.9943, -32.64701843261719], [35.28385, 113.5922, -32.77266311645508], [30.698, 111.2992, -40.093170166015625], [45.7677, 131.0032, 2.1853742599487305], [45.5828, 84.8897, 15.5222806930542], [38.86388889, 121.625, -9.201826095581055], [35.272, 113.884, -32.34191131591797], [31.0935, 120.978, -12.973663330078125], [34.9817, 118.2764, -15.486978530883789], [34.7967, 114.2886, -31.610267639160156], [30.4183, 120.301, -15.149457931518555], [29.6453, 106.562, -21.625757217407227], [35.546, 112.8453, -33.61478805541992], [41.1953, 123.2, -8.478052139282227], [30.63, 104.1113889, -16.45342445373535], [27.5733, 109.9333, -20.36334800720215], [36.4343, 116.0072, -26.1390323638916], [36.6275, 109.4131, -32.200477600097656], [30.5494, 114.3006, -36.1693115234375], [30.9414, 117.7806, -27.112886428833008], [45.6886, 85.1186, 15.34943675994873], [22.5931, 113.0819, 0.37149226665496826], [27.0658, 114.9817, -19.913331985473633], [27.7231, 109.1794, -19.723587036132812], [24.6928, 108.054, -4.680174350738525], [35.5051, 112.85, -33.59095001220703], [43.962, 87.6444, 10.371495246887207], [23.5292, 116.4094, -1.642945408821106], [22.5978, 114.297, 0.5758969187736511], [22.5545, 114.1063, 0.6884165406227112], [43.8875, 126.555, -3.844665050506592], [41.1222, 121.1178, -9.121553421020508], [27.7297, 109.1916, -19.772220611572266], [27.8344, 114.9831, -22.969539642333984], [37.8531, 113.6292, -31.85041046142578], [22.0225, 100.8017, 7.288095474243164], [40.6511, 122.215, -9.204560279846191], [33.6347, 114.6758, -31.863019943237305], [26.5892, 104.8, -3.909761667251587], [33.3947, 120.225, -13.146442413330078], [29.6926, 116.0628, -30.83827018737793], [38.885, 121.5638889, -9.200922012329102], [39.6572, 106.7931, -12.846461296081543], [41.0903, 122.0539, -9.011480331420898], [41.8864, 124.0878, -7.186466217041016], [31.17, 120.635, -14.021520614624023], [33.8561, 115.7831, -28.20178985595703], [36.913, 121.531, -8.524415016174316], [37.809, 120.773, -8.453934669494629], [23.3993, 103.3772, 3.3079912662506104], [32.9735, 112.5003, -38.430335998535156], [41.7775, 123.478, -7.735001087188721], [29.1242, 110.4697, -28.649702072143555], [26.53111111, 107.8908333, -11.395512580871582], [35.0308, 110.9678, -36.57778549194336], [38.97388889, 121.6119444, -9.235712051391602], [31.2797, 107.5272, -29.584455490112305], [31.0483, 112.2014, -40.60796356201172], [30.2311, 119.6942, -17.451658248901367], [30.2897, 120.157, -15.660982131958008], [36.6622, 117.049, -20.60396957397461], [34.3731, 109.2186, -37.90650177001953], [33.1138, 107.0089, -27.204317092895508], [22.5497, 113.3881, 0.5935599207878113], [26.1092, 119.299, -5.7897725105285645], [38.9108, 115.4713, -22.24324607849121], [28.1944, 113.0014, -24.899940490722656], [25.1174, 117.0181, -6.933014869689941], [35.2375, 115.474722, -28.33574867248535], [31.737, 119.579, -17.620990753173828], [29.57278, 106.4042, -21.019330978393555], [30.2989, 109.5039, -34.069732666015625], [31.7371, 116.508, -30.422163009643555], [25.9061, 113.0073, -15.709067344665527], [34.5911, 119.1478, -13.207547187805176], [37.197, 122.038, -8.719483375549316], [26.5155, 106.6948, -8.324972152709961], [29.305, 120.091, -14.235551834106445], [30.72358333, 103.97275, -16.233381271362305], [31.955, 119.18, -18.911949157714844], [35.6039, 103.2139, -13.806473731994629], [31.5031, 120.242, -15.346860885620117], [38.4519, 112.7383, -30.461645126342773], [37.8873, 112.522, -32.41533279418945], [37.3753, 97.3731, -1.538069725036621], [31.2261, 121.425, -11.762747764587402], [32.0572, 118.749, -20.691753387451172], [29.5867, 115.9936, -30.61377716064453], [33.5039, 119.135, -15.710505485534668], [39.4365, 75.9435, 25.90597152709961], [23.7208, 109.2131, -2.848428726196289], [31.7308, 113.3983, -38.84535598754883], [27.7842, 114.3953, -23.00154685974121], [36.8088, 118.0482, -15.278985977172852], [27.8728, 112.8937, -23.550750732421875], [23.0048, 113.134, -1.1422497034072876], [28.6047, 112.3347, -27.038557052612305], [36.0211, 106.2375, -22.583528518676758], [29.3547, 110.5594, -30.258743286132812], [31.4539, 104.7536, -18.816110610961914], [39.5989, 109.8119, -21.407291412353516], [32.395, 111.0419, -40.71818542480469], [31.172, 120.658, -13.935571670532227], [22.805, 108.383, 1.2207990884780884], [34.3164, 108.7369, -37.600162506103516], [41.9228, 123.3783, -7.627418518066406], [34.794, 111.158, -36.23256301879883], [31.2284, 121.533, -11.547127723693848], [27.8403, 112.9118, -23.413814544677734], [29.2365, 88.8931, 11.493693351745605], [31.317, 119.438, -18.456655502319336], [22.9394, 112.0369, -0.9645118713378906], [25.0405, 102.722, 1.8589677810668945], [34.7822, 111.19, -36.18435287475586], [25.7759, 113.0348, -15.099946975708008], [40.0917, 113.3444, -21.886531829833984], [36.5819, 101.834, -10.404762268066406], [38.4928, 112.7003, -30.293899536132812], [40.916, 107.5936, -9.391785621643066], [34.2629, 108.993, -37.851722717285156], [34.8731, 108.9589, -37.1374626159668], [23.1478, 109.5681, -1.0172348022460938], [31.92, 120.302, -14.85999870300293], [42.2953, 123.8831, -6.730820178985596], [43.6801, 122.2532, -5.9370222091674805], [26.5917, 104.83, -3.990095615386963], [25.4792, 118.981, -4.697155952453613], [28.4459, 117.973, -18.90472412109375], [32.6939, 109.0281, -37.841251373291016], [39.3265, 112.4078, -26.46356201171875], [32.3061, 118.3158, -22.42753791809082], [36.6164, 114.5426, -31.34078025817871], [27.2582, 111.4908, -20.56484603881836], [41.0112, 117.9384, -8.57774543762207], [37.9648, 106.1532, -16.634502410888672], [41.0971, 122.9642, -8.652132987976074], [34.7496, 113.5991, -33.08953094482422], [27.8953, 102.2311, -2.0045933723449707], [29.5634, 103.757, -12.394767761230469], [32.4429, 105.8242, -20.76761245727539], [29.6535, 116.0174, -30.802600860595703], [34.719, 113.734, -32.886436462402344], [47.3349, 130.2659, 3.82352876663208], [46.619, 131.1651, 3.5713741779327393], [34.378, 108.869, -37.72686767578125], [38.8707, 115.5214, -22.221281051635742], [30.7525, 120.7844444, -13.511565208435059], [22.96583333, 113.7383333, -0.7989584803581238], [32.9683, 112.55, -38.36729049682617], [39.8129, 110.0023, -20.63079261779785], [29.2647, 117.1558, -26.54814910888672], [30.5514, 114.2511, -36.27744674682617], [27.8847, 102.2689, -2.0339314937591553], [35.7672, 115.0628, -29.576507568359375], [30.696, 111.268, -40.055973052978516], [41.765, 123.41, -7.798648834228516], [41.8417, 123.7117, -7.511159420013428], [26.5894, 104.8475, -4.026785850524902], [25.0492, 101.538, 2.5080747604370117], [27.9639, 116.3598, -21.848426818847656], [33.6481, 116.9765, -24.5057430267334], [41.0833, 122.9481, -8.668919563293457], [37.4514, 105.0197, -14.479414939880371], [26.8906, 100.2203, 1.3139985799789429], [35.5236, 107.6406, -30.538829803466797], [22.7422, 114.5317, 0.19534125924110413], [35.31, 113.836, -32.40668869018555], [30.3944, 114.8878, -34.72297668457031], [39.0927, 117.202, -13.665067672729492], [32.1078, 114.1044, -36.52180099487305], [35.5461, 106.6692, -25.779027938842773], [37.5211, 111.1406, -32.271080017089844], [40.9843, 117.9525, -8.593900680541992], [33.9506, 118.3214, -17.68547248840332], [32.939, 117.3961, -24.749176025390625], [23.3594, 104.2533, 2.936760425567627], [36.881, 118.746, -11.73615837097168], [36.6872, 116.989, -20.94166374206543], [34.802, 113.564, -33.118465423583984], [24.5058, 118.0936, -3.253967523574829], [43.9311, 116.0781, -4.716010570526123], [34.6692, 112.3628, -34.8234977722168], [36.6428, 101.748, -10.129620552062988], [33.7214, 113.3064, -35.18779373168945], [36.1031, 103.631, -13.850014686584473], [29.5822, 105.0406, -16.855140686035156], [32.8913, 117.4186, -24.813791275024414], [23.3682, 103.3758, 3.3535115718841553], [43.9404, 81.2815, 19.02076530456543], [27.8042, 114.9119, -22.873756408691406], [29.7125, 106.617, -21.96076011657715], [32.0092, 118.737, -20.813106536865234], [28.8833, 105.4322, -15.219718933105469], [35.27, 115.455, -28.395248413085938], [40.7612, 111.717, -17.47708511352539], [42.8172, 93.5128, 4.671019077301025], [40.1952, 116.23, -13.171820640563965], [26.0542, 119.389, -5.50294828414917], [45.1642, 124.8528, -2.7879810333251953], [34.3181, 108.6761, -37.50577926635742], [40.7378, 107.3715, -9.640795707702637], [30.9431, 118.7175, -21.747661590576172], [28.2189, 112.8872, -24.996896743774414], [46.528, 125.112, -0.8807545900344849], [33.8715, 109.9154, -37.7841796875], [40.1503, 124.4256, -8.583049774169922], [32.0903, 112.2106, -40.54603576660156], [42.2556, 118.8789, -7.499233245849609], [39.9567, 119.6023, -8.99711799621582], [22.4853, 113.4411, 0.8096311092376709], [39.5986, 109.7736, -21.313520431518555], [36.5776, 114.5035, -31.40477752685547], [32.4639, 119.888, -15.721769332885742], [39.0845, 117.1589, -13.852954864501953], [25.8567, 98.8601, 2.842625141143799], [22.5625, 114.117, 0.6666699051856995], [34.2713, 108.954, -37.815696716308594], [43.7878, 125.454, -4.5018439292907715], [28.9664, 118.871, -17.895601272583008], [23.1617, 112.565, -1.8947293758392334], [31.8108, 119.9736, -16.086822509765625], [29.261, 91.7706, 7.549919128417969], [28.9583, 105.4306, -15.564098358154297], [33.027, 112.5573, -38.2192497253418], [30.51197222, 117.0331111, -30.193796157836914], [31.9051, 117.16, -28.41470718383789], [27.725, 111.9975, -22.544754028320312], [40.7136, 120.9092, -9.39927864074707], [23.65889, 116.6183, -1.9275062084197998], [26.4364, 106.6554, -7.92406702041626], [31.8706, 117.259, -28.1632022857666], [38.2911, 109.7456, -26.823436737060547], [34.2778, 117.2933, -21.719924926757812], [33.568, 114.005, -33.894264221191406], [38.00583333, 114.4586111, -30.08063507080078], [32.3153, 118.3094, -22.43878746032715], [38.80805556, 121.2588889, -9.075020790100098], [47.7317, 128.9094, 3.399653434753418], [41.5931, 120.4439, -8.59334659576416], [45.8167, 126.561, -1.0020947456359863], [34.6686, 112.4433, -34.71775436401367], [31.8766, 117.307, -27.993377685546875], [28.2053, 113.0792, -24.958513259887695], [34.5653, 105.8614, -23.035362243652344], [42.3022, 123.8139, -6.756557464599609], [26.5495, 106.6867, -8.435999870300293], [23.0706, 112.427, -1.5110551118850708], [34.7538, 113.6356, -33.024234771728516], [29.9834, 103.0109, -11.543519973754883], [21.865, 111.9494, 2.6517302989959717], [30.7856, 106.1064, -23.186481475830078], [28.2169, 116.9983, -21.34282684326172], [39.0631, 121.9769, -9.313772201538086], [39.6679, 118.2185, -9.075634002685547], [32.6778, 109.0311, -37.87738037109375], [28.9745, 118.855, -17.985088348388672], [45.0878, 124.8292, -2.9098222255706787], [31.2058, 107.4611, -29.190948486328125], [41.3369, 123.7528, -8.045916557312012], [35.3962, 119.54, -11.241705894470215], [32.1342, 114.0681, -36.58629608154297], [34.407, 115.6386, -28.092899322509766], [29.334, 120.04, -14.477824211120605], [34.2417, 117.192, -22.266643524169922], [23.105, 113.433, -1.4667775630950928], [26.6266, 106.6243, -8.568400382995605], [37.7124, 112.469, -32.80400466918945], [43.1847, 124.3897, -5.64396858215332], [29.7207, 118.3236, -22.35172462463379], [45.8309, 130.9467, 2.2281713485717773], [31.4656, 104.6717, -18.54831314086914], [30.6617, 117.4697, -28.607271194458008], [39.625, 121.989, -9.474282264709473], [46.5776, 125.1386, -0.785086989402771], [36.0725, 103.841, -14.150588989257812], [25.1035, 117.0216, -6.872762203216553], [49.1577, 119.7512, 1.7347537279129028], [22.8464, 108.239, 1.2131671905517578], [25.0311, 117.0151, -6.598635673522949], [35.4178, 119.4641, -11.335046768188477], [37.5002, 105.1971, -14.828075408935547], [33.63063889, 116.989, -24.49350357055664], [23.1036, 109.5683, -0.852385938167572], [23.7369, 109.2317, -2.9285953044891357], [30.049, 119.946, -16.28173828125], [25.0124, 102.743, 1.8729311227798462], [30.4753, 114.1525, -36.33527755737305], [38.0524, 114.5214, -29.77683448791504], [34.29, 117.1814, -22.206787109375], [30.1142, 104.6469, -17.097257614135742], [29.8506, 121.524, -11.015212059020996], [36.0464, 103.831, -14.164451599121094], [39.6308, 118.1662, -9.225614547729492], [41.0831, 123.0156, -8.640815734863281], [31.9438, 117.266, -27.990001678466797], [29.8181, 114.3036, -33.88924789428711], [41.2894, 123.1417, -8.442770004272461], [35.248889, 115.42277, -28.50632667541504], [42.2864, 123.8489, -6.758971214294434], [27.7758, 115.0586, -22.612977981567383], [38.5339, 102.1725, -6.557862281799316], [35.1764, 113.2464, -33.292396545410156], [33.0706, 107.0154, -27.061403274536133], [34.2911, 117.244, -21.91642951965332], [34.3956, 108.7197, -37.50349807739258], [31.371, 119.794, -17.057594299316406], [34.2749, 108.882, -37.74662399291992], [31.7848, 117.196, -28.522443771362305], [30.0874, 103.8416, -14.386954307556152], [31.1167, 104.4053, -17.74138641357422], [34.2572, 109.06, -37.9002799987793], [37.364, 120.394, -8.420965194702148], [27.8408, 102.2714, -1.9153586626052856], [36.7731, 119.1939, -10.221796989440918], [40.1097, 113.3819, -21.712425231933594], [29.33972, 104.7228, -14.792537689208984], [30.9697, 117.8472, -26.751474380493164], [44.6104, 129.6459, -0.5106896758079529], [29.6039, 115.9114, -30.80774688720703], [36.6525, 119.1638, -10.442811012268066], [31.9025, 102.2218, -12.787013053894043], [34.3274, 109.043, -37.85853576660156], [33.3681, 120.1631, -13.344720840454102], [31.85805556, 106.7619444, -25.92270278930664], [31.1956, 107.5069, -29.396602630615234], [27.2317, 111.4733, -20.45477294921875], [39.16969, 117.2099, -13.393986701965332], [26.2625, 117.6211, -10.258419036865234], [40.9733, 117.8184, -8.632019996643066], [37.4372, 116.2714, -24.18679428100586], [27.8244, 113.135, -23.36336326599121], [31.3178, 118.3708, -23.57495880126953], [25.0992, 104.8811, -0.5696304440498352], [31.4846, 92.0657, 5.192177772521973], [30.1819, 120.27, -15.155786514282227], [22.9169, 112.0392, -0.8782927393913269], [31.909, 120.237, -15.08990478515625], [41.9967, 121.6178, -8.36152172088623], [31.7956, 117.302, -28.156219482421875], [46.7975, 130.3258, 3.0892388820648193], [25.0441, 101.5482, 2.5069100856781006], [29.6514, 91.1319, 8.054509162902832], [31.7897, 119.8914, -16.402259826660156], [36.0022, 106.2792, -22.82842445373535], [29.2718, 88.8876, 11.46299934387207], [36.7019, 119.12, -10.505764961242676], [29.1029, 119.686, -15.125298500061035], [29.6632, 94.3616, 3.988028049468994], [37.7111, 112.7306, -32.767127990722656], [40.8725, 114.904, -13.739105224609375], [31.4189, 118.37, -23.499982833862305], [31.3008, 121.467, -11.681077003479004], [25.8071, 113.0383, -15.246549606323242], [23.3917, 113.215, -2.790865182876587], [21.2706, 110.3539, 4.504408359527588], [32.4611, 119.9219, -15.618402481079102], [30.4663, 106.6271, -24.285184860229492], [30.3058, 120.348, -14.923402786254883], [30.3119, 120.12, -15.819195747375488], [21.4689, 111.0286, 3.8816404342651367], [23.6714, 116.6339, -1.9566988945007324], [31.3264, 120.596, -14.141263961791992], [34.2761, 117.167, -22.304370880126953], [38.49494, 106.1024, -14.79061508178711], [31.7386, 117.278, -28.329904556274414], [36.39, 120.47, -8.897481918334961], [31.671, 120.721, -13.590718269348145], [35.767, 115.0772, -29.53568458557129], [37.062, 114.4854, -31.51118278503418], [34.3474, 108.935, -37.78605270385742], [30.2692, 120.19, -15.519132614135742], [27.2944, 105.31, -7.337608814239502], [32.1319, 119.43, -17.76105308532715], [27.2537, 111.4503, -20.527114868164062], [38.4186, 112.7356, -30.592227935791016], [23.3633, 116.7244, -1.0895557403564453], [28.6844, 115.931, -26.30182647705078], [41.7128, 86.2381, 10.461936950683594], [21.2679, 110.3316, 4.517477035522461], [30.3175, 112.2551, -38.38816833496094], [46.5888, 131.1572, 3.52119779586792], [28.6425, 115.892, -26.133317947387695], [27.72, 106.9178, -14.352542877197266], [41.0931, 123.011, -8.63544750213623], [37.161, 122.41, -8.857259750366211], [46.8025, 130.2719, 3.052128314971924], [30.9222, 117.8078, -26.983633041381836], [36.4372, 115.9848, -26.25505256652832], [40.6821, 109.8538, -15.321252822875977], [39.1082, 117.237, -13.482797622680664], [23.1142, 114.4103, -1.0889337062835693], [32.0878, 118.626, -21.25000762939453], [27.8072, 114.4011, -23.095869064331055], [30.5103, 117.0549, -30.128196716308594], [41.0385, 113.1076, -16.174654006958008], [36.5336, 116.734, -22.415647506713867], [31.5475, 120.354, -14.921622276306152], [27.8978, 102.2625, -2.0616204738616943], [27.1311, 114.99, -20.12088394165039], [25.0359, 102.638, 1.9202295541763306], [28.2597, 112.9792, -25.212636947631836], [41.2864, 123.7669, -8.092081069946289], [47.3489, 130.3172, 3.887077569961548], [36.907, 121.544, -8.525202751159668], [32.5714, 110.8839, -40.30876159667969], [25.8417, 98.8546, 2.861938953399658], [30.2028, 115.0767, -34.034942626953125], [27.8667, 113.167, -23.532609939575195], [34.5885, 119.176, -13.157370567321777], [23.6936, 113.0425, -4.304802894592285], [35.0992, 117.4518, -19.335681915283203], [29.5467, 103.7705, -12.376655578613281], [35.4934, 112.835, -33.60428237915039], [28.2403, 117.0281, -21.3773193359375], [43.95305556, 126.4738889, -3.80896258354187], [28.0089, 120.634, -9.006492614746094], [21.6533, 110.9294, 3.406979560852051], [31.1208, 104.4219, -17.79452133178711], [29.355, 113.2117, -32.0469856262207], [35.7289, 107.6831, -29.878276824951172], [31.3019, 120.591, -14.165700912475586], [34.4286, 115.6697, -27.97498893737793], [30.6347, 105.8161, -22.04378890991211], [24.44583333, 118.0636111, -3.120035171508789], [41.2736, 123.1761, -8.440640449523926], [32.1083, 118.803, -20.360462188720703], [35.0611, 111.0233, -36.484737396240234], [27.8614, 112.9433, -23.5139217376709], [35.4883, 112.8564, -33.576515197753906], [47.3386, 123.9305, -0.15696679055690765], [26.8956, 112.6211, -19.704391479492188], [29.077, 119.647, -15.192034721374512], [37.0172, 105.18, -15.68514347076416], [22.9539, 112.0539, -1.0221613645553589], [30.1259, 104.6294, -17.064105987548828], [26.6611, 119.5392, -6.937259197235107], [24.5157, 117.6569, -3.706561326980591], [36.9639, 100.9048, -8.126423835754395], [40.9359, 117.963, -8.623637199401855], [37.393, 117.9776, -14.941328048706055], [44.8969, 82.0806, 18.667312622070312], [46.0703, 122.0506, -2.4306228160858154], [31.8585, 117.336, -27.933181762695312], [36.5767, 109.4824, -32.6185417175293], [33.721, 113.322, -35.16008758544922], [32.5, 80.1161, 21.544618606567383], [37.739, 115.6906, -26.5468692779541], [36.6028, 109.4761, -32.48588180541992], [27.5444, 109.9453, -20.267982482910156], [21.9508, 108.6553, 3.5091464519500732], [29.3411, 104.7692, -14.961871147155762], [28.0797, 116.2239, -22.792295455932617], [36.61981, 114.4965, -31.448837280273438], [32.0723, 118.778, -20.53042984008789], [28.9026, 105.4436, -15.35006046295166], [26.2081, 111.6217, -16.371084213256836], [42.9409, 89.191, 8.173248291015625], [30.0911, 120.598, -13.80187702178955], [34.3017, 107.0708, -30.660259246826172], [40.8033, 111.658, -17.166048049926758], [33.0122, 112.5224, -38.30881118774414], [26.9258, 112.6194, -19.821008682250977], [28.2675, 109.6958, -22.60563850402832], [31.422, 121.14, -12.530952453613281], [32.105, 118.907, -19.86133575439453], [30.6872, 104.176, -16.715089797973633], [40.8367, 114.8985, -13.917739868164062], [43.55, 125.633, -4.660349369049072], [30.2756, 118.1371, -24.58152961730957], [41.9419, 126.4078, -5.85880708694458], [32.4285, 105.8624, -20.917495727539062], [35.5997, 103.2064, -13.800627708435059], [41.8336, 123.542, -7.631247043609619], [36.1542, 113.1097, -33.47213363647461], [41.1442, 123.0485, -8.581975936889648], [29.2786, 117.1983, -26.40859603881836], [39.643, 118.144, -9.254261016845703], [23.1572, 112.885, -1.837005853652954], [29.6219, 106.65, -21.742895126342773], [41.8472, 123.428, -7.685758590698242], [30.7946, 120.744, -13.65746784210205], [25.0661, 117.0256, -6.719778537750244], [33.0014, 97.0, -2.9493191242218018], [31.89708, 121.1518, -12.350726127624512], [24.428, 98.5842, 4.802879810333252], [39.1067, 117.1941, -13.650391578674316], [40.1461, 124.3933, -8.6034574508667], [30.2456, 120.127, -15.754286766052246], [22.5908, 114.263, 0.5935412645339966], [29.7128, 118.3057, -22.41457748413086], [44.0114, 87.2997, 10.819520950317383], [32.4535, 105.8945, -20.976158142089844], [24.7121, 108.2134, -4.978265762329102], [30.4519, 114.8858, -34.808170318603516], [39.7153, 76.1861, 25.564117431640625], [24.3702, 102.5389, 2.571885108947754], [27.8381, 113.143, -23.41887855529785], [31.7133, 118.6439, -21.64288330078125], [37.9097, 114.3541, -30.53777503967285], [44.3336, 84.8983, 14.142691612243652], [42.2725, 118.9572, -7.515716552734375], [29.36028, 104.7778, -15.073994636535645], [25.442, 119.0156, -4.568570137023926], [31.2036, 121.478, -11.65361499786377], [38.8394, 117.457, -13.442156791687012], [24.4175, 111.5269, -7.4610466957092285], [37.177, 119.941, -8.702665328979492], [30.2819, 109.4689, -33.83944320678711], [38.5061, 102.1708, -6.622668266296387], [39.6719, 106.8219, -12.86480712890625], [43.84, 125.2786, -4.532562732696533], [32.9444, 117.3575, -24.85911750793457], [22.4137, 107.3476, 3.1126348972320557], [36.1855, 113.0844444, -33.517269134521484], [34.5004, 109.5049, -37.872066497802734], [31.56, 120.294, -15.128735542297363], [32.0144, 118.777, -20.605106353759766], [40.8115, 114.8814, -14.07962703704834], [29.9972, 101.9533, -8.700379371643066], [35.5102, 102.0199, -12.188227653503418], [37.8561, 113.5922, -31.87973976135254], [34.3708, 107.1586, -31.182777404785156], [23.4168, 103.386, 3.279954671859741], [37.4489, 116.3189, -23.92340660095215], [35.0147, 110.9956, -36.530460357666016], [29.8264, 106.424, -21.917638778686523], [34.7545, 113.681, -32.946754455566406], [23.6706, 116.6447, -1.949730634689331], [36.3083, 120.1964, -9.066567420959473], [30.8388, 106.1087, -23.270891189575195], [43.8667, 125.417, -4.4404616355896], [27.9883, 116.3553, -22.004772186279297], [39.9419, 119.5369, -8.973198890686035], [33.8399, 115.8067, -28.165435791015625], [30.2099, 115.0264, -34.144439697265625], [33.737, 113.182, -35.36200714111328], [27.9164, 112.4876, -23.579774856567383], [27.8036, 114.3442, -23.09133529663086], [26.57098, 101.68912, 1.018693208694458], [22.2294, 113.495, 1.5822097063064575], [38.44139, 106.2275, -15.310785293579102], [24.6967, 108.1009, -4.761994361877441], [25.0836, 102.728, 1.8126020431518555], [24.9624, 102.625, 2.002570867538452], [31.1278, 97.1804, -2.309523105621338], [38.5247, 102.1878, -6.602248191833496], [31.381, 120.999, -12.915653228759766], [28.4569, 118.0058, -18.8554744720459], [32.1142, 112.1825, -40.54762268066406], [34.3617, 108.7233, -37.54629898071289], [23.8982, 100.0782, 4.37550163269043], [41.1636, 80.2828, 19.125003814697266], [32.6028, 116.8556, -27.59600830078125], [36.1942, 117.1436, -20.13974952697754], [37.0967, 114.4821, -31.490890502929688], [38.817, 106.3394, -14.492963790893555], [32.9673, 117.3536, -24.804359436035156], [30.4576, 106.6303, -24.27157974243164], [30.6197, 114.2836, -36.314605712890625], [41.1556, 122.0247, -8.97936725616455], [38.9194, 117.157, -14.40127182006836], [39.9522, 116.434, -13.462658882141113], [36.087, 114.358, -31.512948989868164], [43.7256, 126.6772, -3.972759246826172], [40.6532, 109.8756, -15.508373260498047], [24.9617, 118.6108, -3.8696630001068115], [36.792, 119.952, -8.805315971374512], [29.5953, 105.0331, -16.876174926757812], [31.2472, 120.561, -14.289253234863281], [30.1506, 104.6356, -17.147624969482422], [33.1842, 106.9893, -27.368804931640625], [36.0875, 111.5025, -35.42594909667969], [31.8934, 102.2402, -12.82068920135498], [24.8978, 118.5972, -3.725864887237549], [22.8561, 108.316, 1.1175082921981812], [27.8336, 113.251, -23.388736724853516], [31.2703, 120.613, -14.09050178527832], [35.303, 113.883, -32.33185958862305], [39.3673, 112.4279, -26.26711082458496], [32.6389, 110.7258, -40.09099197387695], [38.1398, 114.5019, -29.49065589904785], [26.6272, 118.1756, -10.239679336547852], [33.6284, 116.9677, -24.582439422607422], [33.965, 118.283, -17.81195068359375], [36.7339, 119.0841, -10.57346248626709], [37.9358, 102.6469, -8.869093894958496], [41.7089, 123.439, -7.8410844802856445], [22.7906, 108.439, 1.2126761674880981], [43.8358, 126.5844, -3.8912477493286133], [31.882, 120.55, -14.063661575317383], [41.8828, 123.9169, -7.312524318695068], [31.656, 120.734, -13.553210258483887], [34.5667, 117.732, -18.772199630737305], [45.61, 126.615, -1.2530549764633179], [29.5983, 106.296, -20.8072566986084], [45.7258, 126.646, -1.0739880800247192], [33.575, 119.007, -15.947200775146484], [23.08, 114.4053, -0.9589654803276062], [28.5819, 112.3744, -26.921342849731445], [43.9167, 125.323, -4.4329376220703125], [22.5811, 113.074, 0.41131407022476196], [38.843, 105.6975, -12.60546875], [27.6178, 113.865, -22.39642333984375], [30.4551, 106.6388, -24.29002571105957], [23.01277778, 113.7944444, -0.9612389802932739], [30.8244, 120.07, -16.13680076599121], [34.3547, 107.1431, -31.097896575927734], [36.6739, 117.114, -20.247867584228516], [22.8693, 112.844, -0.6658871173858643], [23.7233, 114.6892, -3.5785470008850098], [25.3167, 110.4144, -10.676549911499023], [28.6459, 121.273, -9.505213737487793], [26.8919, 112.6006, -19.68222999572754], [33.0323, 107.007, -26.858583450317383], [30.0475, 101.9603, -8.883352279663086], [30.7636, 106.0642, -22.988937377929688], [35.259, 113.1992, -33.28721237182617], [32.2786, 118.3244, -22.449596405029297], [36.1758, 117.1081, -20.339935302734375], [22.735, 108.328, 1.493393063545227], [22.3708, 107.3701, 3.2049617767333984], [27.3125, 105.2864, -7.336441516876221], [33.567, 114.056, -33.75642395019531], [34.3528, 107.3906, -32.590049743652344], [38.8343, 105.6775, -12.579643249511719], [36.283, 120.008, -9.267081260681152], [34.7745, 117.5852, -19.122461318969727], [23.2783, 113.568, -2.1525192260742188], [33.3261, 105.0822, -18.49544906616211], [36.6377, 117.9544, -15.909955024719238], [26.5689, 106.6971, -8.5376558303833], [43.768, 87.6046, 10.23621654510498], [41.7561, 123.535, -7.722854137420654], [41.0228, 123.1289, -8.634354591369629], [27.8014, 114.3806, -23.075639724731445], [44.561, 129.61, -0.6007336378097534], [29.9919, 120.605, -13.679892539978027], [37.4658, 118.5019, -12.045186042785645], [25.8333, 114.9322, -14.51720142364502], [23.9011, 106.6103, -0.3670576810836792], [38.2839, 109.7289, -26.813331604003906], [45.6033, 84.8861, 15.55061149597168], [30.9447, 118.7581, -21.522809982299805], [25.2178, 110.2869, -10.018033027648926], [26.2378, 117.6028, -10.198318481445312], [22.8172, 114.3244, -0.08109540492296219], [40.1194, 124.3678, -8.631818771362305], [41.9086, 123.5953, -7.492645740509033], [31.238, 121.4, -11.815328598022461], [26.5697, 106.7164, -8.590170860290527], [22.7833, 108.244, 1.4095954895019531], [40.7866, 111.551, -17.142417907714844], [31.7039, 119.935, -16.313167572021484], [45.5422, 126.979, -1.1313393115997314], [19.9507, 110.576, 6.652178764343262], [30.6414, 114.2131, -36.497982025146484], [37.9311, 102.6219, -8.836591720581055], [39.3606, 112.4549, -26.31524085998535], [46.8267, 130.3961, 3.188494920730591], [35.94, 104.148, -14.80873966217041], [29.4892, 106.634, -21.297321319580078], [23.1422, 113.235, -1.6989846229553223], [23.06, 113.7480556, -1.16067636013031], [29.1128, 119.6533, -15.265297889709473], [36.2092, 117.7181, -17.24604606628418], [27.7044, 111.9892, -22.471271514892578], [31.87888889, 106.7513889, -25.85009002685547], [29.2313, 91.7608, 7.5806427001953125], [34.5814, 105.7281, -22.200664520263672], [35.7511, 114.2956, -31.463045120239258], [47.8515, 88.1267, 14.71664047241211], [37.9723, 106.196, -16.763656616210938], [38.8632, 115.493, -22.39309310913086], [23.8844, 106.6527, -0.37818068265914917], [39.1495, 117.3916, -12.754472732543945], [36.2403, 120.6659, -8.961545944213867], [39.1292, 106.7096, -14.496504783630371], [38.01777778, 114.5330556, -29.86925506591797], [32.1383, 114.0614, -36.599517822265625], [31.8572, 117.25, -28.217342376708984], [24.9117, 118.5819, -3.777650833129883], [28.4622, 117.9511, -19.054475784301758], [32.8928, 115.8275, -29.95136260986328], [25.067, 102.681, 1.8607169389724731], [24.3289, 116.1278, -4.821038246154785], [28.6969, 115.973, -26.31585121154785], [28.1178, 112.9844, -24.568336486816406], [44.3075, 86.0697, 12.577939987182617], [28.7867, 104.6061, -11.904683113098145], [38.0108, 112.434, -32.01533126831055], [29.4251, 113.1493, -32.52521896362305], [36.6868, 117.0684, -20.497295379638672], [45.7319, 126.685, -1.0426791906356812], [34.8019, 113.675, -32.93077850341797], [28.4586, 119.93, -12.442275047302246], [21.2567, 110.4558, 4.507807731628418], [30.9285, 113.9153, -37.47513961791992], [32.0005, 120.86, -13.01093864440918], [29.6475, 91.0874, 8.107110977172852], [27.4948, 114.0944, -21.919353485107422], [42.0352, 119.2654, -7.800560474395752], [40.5546, 110.0377, -16.31789779663086], [29.6292, 91.0834, 8.122163772583008], [40.0844, 113.2711, -22.04854965209961], [46.3991, 124.8847, -1.1882175207138062], [27.6231, 113.8447, -22.42054557800293], [27.6486, 106.8906, -13.97366714477539], [31.92, 120.268, -14.972273826599121], [39.2133, 117.1837, -13.350329399108887], [23.4714, 116.7519, -1.3605822324752808], [30.5489, 117.0486, -30.153423309326172], [31.4867, 120.269, -15.258878707885742], [23.1331, 113.26, -1.6513603925704956], [25.8226, 113.0116, -15.313026428222656], [36.61763, 114.5129, -31.405696868896484], [33.9461, 116.7844, -24.72705841064453], [27.7914, 114.3703, -23.03580093383789], [40.0181, 119.7624, -9.070899963378906], [43.8228, 126.4978, -3.953301429748535], [28.2558, 109.6414, -22.497142791748047], [25.9118, 114.9064, -15.002129554748535], [35.4894, 112.8664, -33.564697265625], [34.3497, 107.2058, -31.48941993713379], [34.6511, 112.3939, -34.81892776489258], [28.7442, 115.813, -26.742040634155273], [26.9089, 112.5328, -19.722251892089844], [28.7994, 115.742, -27.11720848083496], [28.9703, 111.6975, -28.97174644470215], [36.1912, 113.1569, -33.41717529296875], [40.9161, 117.9664, -8.63516616821289], [34.7781, 114.3389, -31.487979888916016], [23.2536, 116.4019, -0.9241414070129395], [47.3227, 123.9483, -0.17570272088050842], [36.2403, 120.4001, -9.021210670471191], [27.9647, 116.385, -21.784427642822266], [30.7478, 120.726, -13.708135604858398], [24.81805556, 118.1569444, -4.0074849128723145], [24.299, 109.4221, -5.1078596115112305], [41.8469, 123.81, -7.436854839324951], [29.4822, 106.364, -20.572158813476562], [26.5017, 101.7453, 1.057096242904663], [31.8531, 106.7594, -25.91448974609375], [31.96, 120.913, -12.896251678466797], [29.6816, 115.9872, -30.941158294677734], [28.6839, 115.8886, -26.345516204833984], [26.0753, 119.315, -5.6674885749816895], [42.8947, 125.1358, -5.587530136108398], [39.3514, 112.44, -26.354881286621094], [39.5343, 116.7464, -13.910338401794434], [31.0386, 112.2211, -40.57615661621094], [27.2272, 111.4328, -20.41648292541504], [26.585, 101.7169, 0.9835560321807861], [38.9389, 100.4497, -3.1803030967712402], [45.6175, 122.8211, -2.8246419429779053], [41.7192, 86.2022, 10.510238647460938], [42.9559, 89.1673, 8.202094078063965], [29.3864, 117.3097, -26.380218505859375], [28.56, 112.3439, -26.77944564819336], [44.9079, 82.0485, 18.723913192749023], [44.5782, 129.6115, -0.5779880285263062], [35.5975, 104.6169, -16.29340934753418], [38.8416, 115.4612, -22.65374755859375], [31.453, 121.115, -12.594189643859863], [37.7394, 112.5583, -32.749542236328125], [37.85, 113.5158, -31.959259033203125], [36.061, 114.483, -31.231281280517578], [29.3678, 113.1772, -32.13426208496094], [39.6295, 118.1997, -9.155824661254883], [36.0756, 103.712, -13.980172157287598], [31.7586, 119.996, -16.049896240234375], [35.7067, 107.6364, -29.766611099243164], [27.3361, 103.7225, -3.225674629211426], [23.0528, 112.471, -1.4349356889724731], [22.75, 114.085, 0.09963270276784897], [28.3169, 109.7325, -22.832962036132812], [26.8733, 112.6197, -19.617820739746094], [34.4714, 100.2561, -9.483626365661621], [28.6064, 115.9083, -25.93624496459961], [43.91, 125.287, -4.456667423248291], [28.76389, 104.6417, -11.922119140625], [41.7347, 123.2444, -7.954009532928467], [30.6133, 105.68, -21.582218170166016], [36.1939, 113.0972, -33.50225830078125], [40.1114, 113.2803, -21.866779327392578], [23.7106, 113.0208, -4.394486904144287], [41.7511, 86.1461, 10.596610069274902], [43.1594, 124.3711, -5.679603576660156], [25.8481, 114.9461, -14.58021068572998], [33.6406, 114.6369, -31.96681022644043], [29.4892, 106.468, -20.904075622558594], [23.5486, 116.3242, -1.7181453704833984], [36.11, 114.286, -31.64592170715332], [23.1886, 112.863, -1.9721702337265015], [43.8711, 87.5525, 10.39281177520752], [28.2642, 117.0564, -21.416065216064453], [23.4792, 111.2897, -3.2737889289855957], [45.6289, 122.8444, -2.802539587020874], [47.2753, 130.261, 3.728339910507202], [40.7514, 120.8392, -9.370441436767578], [37.8694, 113.5689, -31.875965118408203], [39.9716, 116.473, -13.282292366027832], [41.8625, 124.0383, -7.2548041343688965], [31.2864, 120.628, -14.032078742980957], [28.4514, 119.914, -12.464441299438477], [36.6489, 116.943, -21.205509185791016], [38.8516, 105.724, -12.64832878112793], [40.0758, 113.2994, -22.05752182006836], [34.7975, 114.3733, -31.392866134643555], [30.9075, 113.942, -37.39731216430664], [28.9404, 118.871, -17.803409576416016], [36.10139, 111.505, -35.40618133544922], [25.1081, 99.1678, 3.4885387420654297], [29.709, 106.452, -21.581907272338867], [36.67, 116.93, -21.27994155883789], [38.3344, 109.7414, -26.67641830444336], [41.1219, 121.2008, -9.133017539978027], [21.8586, 111.9786, 2.666428327560425], [31.6842, 120.288, -15.077587127685547], [40.6288, 109.8654, -15.614742279052734], [36.44, 120.61, -8.866838455200195], [35.0622, 118.2939, -15.346918106079102], [37.1013, 79.9117, 19.862781524658203], [34.5101, 109.5293, -37.86848831176758], [41.2553, 123.15, -8.460221290588379], [47.3636, 123.9305, -0.11425299197435379], [37.4014, 121.5992, -8.656554222106934], [40.8062, 111.7277, -17.221351623535156], [37.5436, 121.3181, -8.536865234375], [28.6542, 121.419, -9.28682804107666], [29.8211, 114.3231, -33.87982940673828], [40.7094, 122.2703, -9.155041694641113], [34.2324, 108.94, -37.81494140625], [33.9528, 118.293, -17.803447723388672], [27.0983, 115.0075, -19.99057388305664], [34.429, 115.6558, -28.019817352294922], [34.2303, 108.883, -37.75624084472656], [25.1328, 99.1711, 3.461637496948242], [46.0756, 121.9462, -2.4426774978637695], [22.7633, 100.98, 5.606882572174072], [23.1569, 113.281, -1.746315836906433], [26.5939, 104.89, -4.142436981201172], [31.7694, 120.0469, -15.857691764831543], [40.1438, 116.72, -12.054980278015137], [25.2697, 110.2819, -10.251296997070312], [34.1781, 117.1694, -22.515077590942383], [37.68277778, 112.7194444, -32.81220245361328], [35.0896, 118.4023, -14.838167190551758], [29.2956, 117.2461, -26.2529296875], [26.0392, 119.303, -5.5851898193359375], [24.3694, 102.5778, 2.5539627075195312], [36.1942, 117.0881, -20.44816780090332], [26.2708, 117.6353, -10.255759239196777], [37.5136, 111.1297, -32.28196334838867], [43.6267, 122.2603, -6.014631271362305], [30.89556, 120.0875, -16.074474334716797], [29.8686, 114.3372, -34.079254150390625], [22.7267, 114.24, 0.1980394423007965], [27.8867, 113.095, -23.620277404785156], [30.8023, 106.0789, -23.103614807128906], [31.7712, 116.5661, -30.233444213867188], [46.7432, 82.9994, 19.354324340820312], [32.41361, 119.458, -17.286174774169922], [30.2043, 114.8949, -34.36863327026367]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#e5f200&quot;, &quot;0.05&quot;: &quot;#e5f200&quot;, &quot;0.1&quot;: &quot;#e5f200&quot;, &quot;0.15&quot;: &quot;#e5f200&quot;, &quot;0.2&quot;: &quot;#e5f200&quot;, &quot;0.25&quot;: &quot;#e5f200&quot;, &quot;0.3&quot;: &quot;#e5f200&quot;, &quot;0.35&quot;: &quot;#e5f200&quot;, &quot;0.4&quot;: &quot;#e5f200&quot;, &quot;0.45&quot;: &quot;#e5f200&quot;, &quot;0.5&quot;: &quot;#e5f200&quot;, &quot;0.55&quot;: &quot;#e5f200&quot;, &quot;0.6&quot;: &quot;#e5f200&quot;, &quot;0.65&quot;: &quot;#e5f200&quot;, &quot;0.7&quot;: &quot;#e5f200&quot;, &quot;0.75&quot;: &quot;#e5f200&quot;, &quot;0.8&quot;: &quot;#e5f200&quot;, &quot;0.85&quot;: &quot;#e5f200&quot;, &quot;0.9&quot;: &quot;#e5f200&quot;, &quot;0.95&quot;: &quot;#e5f200&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_d262d47052491a5d57789334fb1a3279.addTo(map_48cc23e60dd0223153683665fa44b671);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1d9b78118c0>\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('coef_dem', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"AOD\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {\n    \"id\": \"0D0DEF77DE994A8E82B96A6970CD69C0\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_384b47b434b7ae772d54b932b1bfa80d {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_384b47b434b7ae772d54b932b1bfa80d&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_384b47b434b7ae772d54b932b1bfa80d = L.map(\\n\",\n       \"                &quot;map_384b47b434b7ae772d54b932b1bfa80d&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_5dd57c76f80e15313b0d0f30f3c688cf = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_5dd57c76f80e15313b0d0f30f3c688cf.addTo(map_384b47b434b7ae772d54b932b1bfa80d);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_829ab39df20b68451beab5bc9bb003c4 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_829ab39df20b68451beab5bc9bb003c4.color = d3.scale.threshold()\\n\",\n       \"              .domain([-22.483654022216797, -22.023109436035156, -21.562564849853516, -21.102020263671875, -20.641475677490234, -20.180931091308594, -19.720388412475586, -19.259843826293945, -18.799299240112305, -18.338754653930664, -17.878210067749023, -17.417665481567383, -16.957120895385742, -16.496578216552734, -16.036033630371094, -15.575488090515137, -15.114944458007812, -14.654399871826172, -14.193855285644531, -13.73331069946289, -13.27276611328125, -12.812222480773926, -12.351676940917969, -11.891133308410645, -11.430588722229004, -10.97004508972168, -10.509500503540039, -10.048955917358398, -9.588411331176758, -9.127867698669434, -8.667322158813477, -8.206777572631836, -7.746233940124512, -7.285689353942871, -6.825145721435547, -6.364601135253906, -5.904056549072266, -5.443511962890625, -4.982967376708984, -4.522422790527344, -4.061878204345703, -3.6013355255126953, -3.1407909393310547, -2.680246353149414, -2.2196998596191406, -1.7591552734375, -1.2986125946044922, -0.8380680084228516, -0.37752342224121094, 0.08302116394042969, 0.5435638427734375, 1.0041084289550781, 1.4646530151367188, 1.9251995086669922, 2.3857421875, 2.8462867736816406, 3.3068313598632812, 3.767375946044922, 4.22791862487793, 4.68846321105957, 5.149009704589844, 5.609554290771484, 6.070098876953125, 6.530641555786133, 6.991186141967773, 7.451730728149414, 7.912275314331055, 8.372817993164062, 8.833362579345703, 9.293909072875977, 9.754451751708984, 10.214996337890625, 10.675540924072266, 11.136085510253906, 11.596630096435547, 12.057174682617188, 12.517719268798828, 12.978263854980469, 13.43880844116211, 13.899349212646484, 14.35989761352539, 14.820442199707031, 15.280982971191406, 15.741531372070312, 16.202072143554688, 16.662620544433594, 17.12316131591797, 17.58370590209961, 18.044254302978516, 18.50479507446289, 18.965343475341797, 19.425884246826172, 19.886428833007812, 20.346973419189453, 20.807518005371094, 21.26805877685547, 21.728607177734375, 22.189151763916016, 22.649696350097656, 23.110240936279297, 23.570781707763672, 24.031330108642578, 24.491870880126953, 24.952415466308594, 25.412960052490234, 25.873504638671875, 26.33405303955078, 26.794593811035156, 27.255138397216797, 27.715682983398438, 28.176227569580078, 28.63677215576172, 29.09731674194336, 29.557861328125, 30.01840591430664, 30.47895050048828, 30.939491271972656, 31.400039672851562, 31.860580444335938, 32.321128845214844, 32.781673431396484, 33.24221420288086, 33.702762603759766, 34.16330337524414, 34.62385177612305, 35.08439254760742, 35.54493713378906, 36.0054817199707, 36.466026306152344, 36.926570892333984, 37.387115478515625, 37.847660064697266, 38.308204650878906, 38.76874923706055, 39.22929000854492, 39.68983840942383, 40.1503791809082, 40.61092758178711, 41.07147216796875, 41.53201675415039, 41.992557525634766, 42.45310592651367, 42.91364669799805, 43.37419509887695, 43.83473587036133, 44.2952766418457, 44.75582504272461, 45.216373443603516, 45.67691421508789, 46.137454986572266, 46.59800338745117, 47.05854415893555, 47.51909255981445, 47.97964096069336, 48.440181732177734, 48.90072250366211, 49.361270904541016, 49.82181930541992, 50.282352447509766, 50.74290084838867, 51.20344924926758, 51.66399002075195, 52.12453842163086, 52.585079193115234, 53.04561996459961, 53.506168365478516, 53.96671676635742, 54.4272575378418, 54.88779830932617, 55.34834671020508, 55.808895111083984, 56.26943588256836, 56.729976654052734, 57.19052505493164, 57.651065826416016, 58.11161422729492, 58.57216262817383, 59.03269577026367, 59.49324417114258, 59.953792572021484, 60.41434097290039, 60.874874114990234, 61.33542251586914, 61.79597091674805, 62.25651168823242, 62.71706008911133, 63.1776008605957, 63.63814163208008, 64.09869384765625, 64.55923461914062, 65.019775390625, 65.48031616210938, 65.94087219238281, 66.40141296386719, 66.86195373535156, 67.32249450683594, 67.78305053710938, 68.24359130859375, 68.70413208007812, 69.1646728515625, 69.62521362304688, 70.08576965332031, 70.54631042480469, 71.00685119628906, 71.46739196777344, 71.92794799804688, 72.38848876953125, 72.84902954101562, 73.3095703125, 73.77012634277344, 74.23066711425781, 74.69120788574219, 75.15176391601562, 75.61228942871094, 76.07284545898438, 76.53338623046875, 76.99392700195312, 77.45448303222656, 77.91502380371094, 78.37556457519531, 78.83610534667969, 79.29666137695312, 79.7572021484375, 80.21774291992188, 80.67828369140625, 81.13883972167969, 81.59938049316406, 82.05992126464844, 82.52046203613281, 82.98100280761719, 83.44155883789062, 83.902099609375, 84.36264038085938, 84.82318115234375, 85.28373718261719, 85.74427795410156, 86.20481872558594, 86.66535949707031, 87.12591552734375, 87.58645629882812, 88.0469970703125, 88.50753784179688, 88.96807861328125, 89.42863464355469, 89.88917541503906, 90.34971618652344, 90.81025695800781, 91.27081298828125, 91.73135375976562, 92.19189453125, 92.65243530273438, 93.11299133300781, 93.57353210449219, 94.03407287597656, 94.49461364746094, 94.95515441894531, 95.41571044921875, 95.87625122070312, 96.3367919921875, 96.79733276367188, 97.25788879394531, 97.71842956542969, 98.17897033691406, 98.63951110839844, 99.10006713867188, 99.56060791015625, 100.02114868164062, 100.48170471191406, 100.94223022460938, 101.40278625488281, 101.86332702636719, 102.32386779785156, 102.78440856933594, 103.24496459960938, 103.70550537109375, 104.16604614257812, 104.62660217285156, 105.08714294433594, 105.54768371582031, 106.00822448730469, 106.46876525878906, 106.9293212890625, 107.38986206054688, 107.85040283203125, 108.31094360351562, 108.77149963378906, 109.23204040527344, 109.69258117675781, 110.15312194824219, 110.61366271972656, 111.07420349121094, 111.53475952148438, 111.99530029296875, 112.45584106445312, 112.91639709472656, 113.37693786621094, 113.83747863769531, 114.29803466796875, 114.75856018066406, 115.21910095214844, 115.67965698242188, 116.14019775390625, 116.60073852539062, 117.06129455566406, 117.52183532714844, 117.98237609863281, 118.44293212890625, 118.90345764160156, 119.364013671875, 119.82455444335938, 120.28509521484375, 120.74565124511719, 121.20619201660156, 121.66673278808594, 122.12728881835938, 122.58782958984375, 123.04835510253906, 123.5089111328125, 123.96945190429688, 124.42999267578125, 124.89054870605469, 125.35108947753906, 125.81163024902344, 126.27218627929688, 126.73272705078125, 127.19325256347656, 127.65380859375, 128.11434936523438, 128.57489013671875, 129.0354461669922, 129.49598693847656, 129.95652770996094, 130.41708374023438, 130.87762451171875, 131.33816528320312, 131.7987060546875, 132.25924682617188, 132.7198028564453, 133.1803436279297, 133.64088439941406, 134.1014404296875, 134.56198120117188, 135.02252197265625, 135.48306274414062, 135.943603515625, 136.40414428710938, 136.8647003173828, 137.3252410888672, 137.78578186035156, 138.246337890625, 138.70687866210938, 139.16741943359375, 139.6279754638672, 140.0885009765625, 140.54904174804688, 141.0095977783203, 141.4701385498047, 141.93067932128906, 142.3912353515625, 142.85177612304688, 143.3123321533203, 143.7728729248047, 144.2333984375, 144.69395446777344, 145.1544952392578, 145.6150360107422, 146.07559204101562, 146.5361328125, 146.99667358398438, 147.4572296142578, 147.9177703857422, 148.3782958984375, 148.83885192871094, 149.2993927001953, 149.7599334716797, 150.22048950195312, 150.6810302734375, 151.14157104492188, 151.6021270751953, 152.0626678466797, 152.523193359375, 152.98374938964844, 153.4442901611328, 153.9048309326172, 154.36538696289062, 154.825927734375, 155.28648376464844, 155.7470245361328, 156.2075653076172, 156.66810607910156, 157.12864685058594, 157.5891876220703, 158.04974365234375, 158.51028442382812, 158.9708251953125, 159.43138122558594, 159.8919219970703, 160.3524627685547, 160.81300354003906, 161.27354431152344, 161.7340850830078, 162.19464111328125, 162.65518188476562, 163.11572265625, 163.57627868652344, 164.0368194580078, 164.4973602294922, 164.95790100097656, 165.41844177246094, 165.8789825439453, 166.33953857421875, 166.80007934570312, 167.2606201171875, 167.72117614746094, 168.1817169189453, 168.64227294921875, 169.10279846191406, 169.56333923339844, 170.02389526367188, 170.48443603515625, 170.94497680664062, 171.40553283691406, 171.86607360839844, 172.3266143798828, 172.78717041015625, 173.24771118164062, 173.70823669433594, 174.16879272460938, 174.62933349609375, 175.08987426757812, 175.55043029785156, 176.01097106933594, 176.4715118408203, 176.93206787109375, 177.39260864257812, 177.85313415527344, 178.31369018554688, 178.77423095703125, 179.23477172851562, 179.69532775878906, 180.15586853027344, 180.61642456054688, 181.07696533203125, 181.53750610351562, 181.998046875, 182.45858764648438, 182.91912841796875, 183.3796844482422, 183.84022521972656, 184.30076599121094, 184.76132202148438, 185.22186279296875, 185.68240356445312, 186.1429443359375, 186.60348510742188, 187.06402587890625, 187.5245819091797, 187.98512268066406, 188.44566345214844, 188.90621948242188, 189.36676025390625, 189.82730102539062, 190.287841796875, 190.74838256835938, 191.20892333984375, 191.6694793701172, 192.13002014160156, 192.590576171875, 193.05111694335938, 193.51165771484375, 193.9722137451172, 194.4327392578125, 194.89328002929688, 195.3538360595703, 195.8143768310547, 196.27491760253906, 196.7354736328125, 197.19601440429688, 197.65655517578125, 198.1171112060547, 198.57765197753906, 199.03817749023438, 199.4987335205078, 199.9592742919922, 200.41981506347656, 200.88037109375, 201.34091186523438, 201.80145263671875, 202.2620086669922, 202.72254943847656, 203.18307495117188, 203.6436309814453, 204.1041717529297, 204.56472778320312, 205.0252685546875, 205.48580932617188, 205.9463653564453, 206.4069061279297, 206.86744689941406, 207.32798767089844])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_829ab39df20b68451beab5bc9bb003c4.x = d3.scale.linear()\\n\",\n       \"              .domain([-22.483654022216797, 207.32798767089844])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_829ab39df20b68451beab5bc9bb003c4.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_829ab39df20b68451beab5bc9bb003c4.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_829ab39df20b68451beab5bc9bb003c4.legend.addTo(map_384b47b434b7ae772d54b932b1bfa80d);\\n\",\n       \"\\n\",\n       \"    color_map_829ab39df20b68451beab5bc9bb003c4.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_829ab39df20b68451beab5bc9bb003c4.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-22.483654022216797, &#x27;&#x27;, &#x27;&#x27;, 11.988094329833984, &#x27;&#x27;, &#x27;&#x27;, 46.459842681884766, &#x27;&#x27;, &#x27;&#x27;, 80.93157958984375, &#x27;&#x27;, &#x27;&#x27;, 115.40333557128906, &#x27;&#x27;, &#x27;&#x27;, 149.8750762939453, &#x27;&#x27;, &#x27;&#x27;, 184.34681701660156, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_829ab39df20b68451beab5bc9bb003c4.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_829ab39df20b68451beab5bc9bb003c4.g = color_map_829ab39df20b68451beab5bc9bb003c4.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_829ab39df20b68451beab5bc9bb003c4.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_829ab39df20b68451beab5bc9bb003c4.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_829ab39df20b68451beab5bc9bb003c4.x(color_map_829ab39df20b68451beab5bc9bb003c4.color.domain()[i - 1]) : color_map_829ab39df20b68451beab5bc9bb003c4.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_829ab39df20b68451beab5bc9bb003c4.color.domain().length ? color_map_829ab39df20b68451beab5bc9bb003c4.x(color_map_829ab39df20b68451beab5bc9bb003c4.color.domain()[i]) : color_map_829ab39df20b68451beab5bc9bb003c4.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_829ab39df20b68451beab5bc9bb003c4.g.call(color_map_829ab39df20b68451beab5bc9bb003c4.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_7232645615bbf479b86c9c0c4c5db2ee = L.heatLayer(\\n\",\n       \"                [[28.4303, 117.9033, 57.449100494384766], [31.1654, 121.412, 74.51915740966797], [23.4794, 111.26, 44.88897705078125], [34.7772, 111.1928, 7.47938871383667], [43.8748, 125.3649, 74.8712158203125], [36.838, 118.0448, 60.98530578613281], [26.5506, 104.9544, 32.72727966308594], [43.9317, 116.1042, 60.552791595458984], [25.0925, 104.9022, 43.88853454589844], [36.885, 120.515, 120.4697494506836], [41.1386, 121.1303, 98.639892578125], [25.4552, 119.0018, 37.51476287841797], [50.4217, 124.1303, 103.98470306396484], [33.739, 113.292, 0.13288907706737518], [25.8664, 114.9367, 27.25217056274414], [22.8054, 113.292, 58.87335968017578], [29.8272, 106.379, -18.659725189208984], [32.0314, 118.803, 79.05272674560547], [28.2325, 113.0833, -6.339473247528076], [31.896, 121.173, 83.10506439208984], [35.428, 116.6305, 26.04132080078125], [29.389, 106.513, -16.226808547973633], [33.975, 116.8008, 44.46768569946289], [31.3097, 120.669, 77.39826965332031], [32.625, 116.7039, 43.97406768798828], [39.8261, 109.9486, 33.81918716430664], [37.4664, 116.3061, -0.9105547666549683], [40.9923, 113.1306, 31.31136131286621], [39.6407, 118.1853, 83.0713882446289], [42.2217, 123.7153, 84.61800384521484], [34.1978, 108.985, 37.31715393066406], [31.3839, 118.4022, 72.92216491699219], [31.03389, 112.1908, 12.926356315612793], [27.6442, 113.8686, 2.5821566581726074], [29.3578, 113.1094, 1.1197474002838135], [29.5947, 105.0717, -3.2026617527008057], [37.7019, 112.7549, 1.0883373022079468], [37.0533, 114.5261, -17.0634822845459], [22.2281, 113.299, 63.7216911315918], [39.7294, 98.5023, 31.725873947143555], [41.615, 120.3939, 91.66183471679688], [39.3179, 112.4254, 21.617847442626953], [24.9424, 118.6663, 40.24092483520508], [40.6575, 109.8104, 30.292251586914062], [32.02, 120.87, 84.4827651977539], [28.6844, 115.893, 37.392555236816406], [39.5747, 116.7729, 44.529754638671875], [42.8939, 129.4892, 79.04997253417969], [38.3254, 116.8584, 24.953819274902344], [28.5773, 121.377, 45.944007873535156], [39.0511, 121.7769, 116.192138671875], [30.6539, 117.4974, 63.48540496826172], [36.2866, 100.6188, 0.479335218667984], [45.9819, 126.6106, 78.57127380371094], [45.2978, 130.9298, 86.11448669433594], [23.7569, 114.6778, 52.91561508178711], [27.9119, 112.9074, -6.944086074829102], [24.8885, 102.821, 52.1346549987793], [29.5844, 103.7627, 14.347968101501465], [24.769519, 113.586606, 33.832000732421875], [41.5672, 120.4486, 92.34176635742188], [39.7884, 109.9734, 34.17776870727539], [27.8328, 114.9289, 16.495323181152344], [32.3761, 119.389, 85.92587280273438], [25.7054, 100.1542, 55.110504150390625], [29.3628, 104.7547, 3.5702362060546875], [24.3663, 109.3957, 31.368085861206055], [31.215, 107.525, -16.8126220703125], [35.76806, 115.0061, -16.50298309326172], [26.3003, 106.805, 20.640079498291016], [34.6972, 119.3581, 98.21379089355469], [30.6463, 111.3549, 7.5860466957092285], [30.2366, 119.7183, 69.93318939208984], [27.3392, 103.7032, 36.62153625488281], [33.8997, 116.8067, 44.9509391784668], [33.5981, 119.036, 88.01534271240234], [37.0964, 114.5331, -16.766101837158203], [37.7575, 115.6951, -8.495183944702148], [22.5211, 113.3769, 61.619651794433594], [22.6411, 110.1675, 54.07086944580078], [38.3228, 116.8709, 25.306406021118164], [25.8471, 114.8905, 27.005014419555664], [35.04388889, 111.0522222, 10.142094612121582], [33.9953, 113.7906, -2.6904261112213135], [23.7586, 114.6944, 52.91008377075195], [45.6842, 126.6206, 77.32490539550781], [38.8957, 115.5223, 5.581943035125732], [40.715, 120.8478, 102.12947082519531], [39.6969, 106.8089, 14.963260650634766], [23.5353, 116.3697, 52.24613952636719], [39.746, 98.509, 31.76789665222168], [36.7008, 119.1425, 97.0339584350586], [43.8694, 125.325, 74.85475158691406], [42.0228, 121.6722, 88.66686248779297], [23.0672, 109.6042, 48.71982955932617], [30.5947, 114.3008, 19.731393814086914], [23.475, 111.3178, 45.0760612487793], [27.6869, 106.9222, 0.6617932319641113], [34.1546, 108.906, 37.384342193603516], [36.8041, 117.8512, 53.93324661254883], [23.0916, 113.348, 55.94597625732422], [32.6319, 116.8306, 46.097869873046875], [32.4867, 119.9, 88.42272186279297], [30.1366, 104.6617, -1.2105340957641602], [24.4072, 111.5622, 31.051916122436523], [31.7618, 116.478, 44.75790786743164], [41.2692, 123.7989, 94.3172378540039], [42.0503, 121.6972, 88.34178924560547], [38.2478, 109.7336, 41.11396408081055], [34.6575, 109.2, 39.49180221557617], [39.79777778, 98.26722222, 33.11363983154297], [25.5035, 103.7897, 46.790374755859375], [35.763, 115.031, -16.211074829101562], [39.9425, 116.361, 41.172462463378906], [34.3739, 107.1186, 27.990346908569336], [30.2352, 115.0625, 28.63638687133789], [44.1756, 87.5475, 123.7615737915039], [40.2865, 116.17, 43.8049430847168], [36.1851, 120.3905, 118.30231475830078], [36.0417, 111.4917, 8.619956970214844], [39.0153, 106.3717, 9.962733268737793], [36.6867, 101.524, -3.7385363578796387], [35.213, 113.227, -18.399499893188477], [24.506, 117.7116, 44.187191009521484], [47.203, 123.6261, 80.93817138671875], [46.0347, 124.8354, 76.30805969238281], [35.0697, 109.0697, 43.335670471191406], [34.3622, 107.2386, 30.043304443359375], [35.7306, 114.2878, -21.408550262451172], [44.5952, 129.5902, 79.61214447021484], [23.3667, 116.6794, 52.54816818237305], [34.7837, 117.2852, 51.76644515991211], [31.155, 120.636, 75.84905242919922], [30.4742, 114.9028, 26.0006160736084], [41.3047, 123.7308, 94.18880462646484], [28.8558, 105.4322, 0.9362766742706299], [36.71, 117.541, 42.968841552734375], [32.6494, 110.78, 21.810163497924805], [31.8516, 117.124, 53.758689880371094], [30.5797, 105.7519, -16.24043083190918], [38.9467, 100.4686, 17.160730361938477], [39.617, 122.011, 111.94600677490234], [28.6428, 112.4067, -10.561634063720703], [31.2659, 121.536, 75.47039031982422], [39.5178, 116.6838, 41.12110900878906], [28.7989, 104.6789, 11.434837341308594], [31.5072, 104.7283, -3.2660105228424072], [34.6869, 112.4831, -10.154316902160645], [31.388, 120.953, 77.96637725830078], [30.475, 105.5956, -14.40487289428711], [41.3283, 123.8436, 93.59884643554688], [26.3108, 117.7275, 40.700347900390625], [22.7629, 113.257, 59.18507766723633], [32.645, 117.0083, 49.222129821777344], [22.8225, 108.321, 51.355220794677734], [40.3937, 116.644, 55.62670135498047], [46.0872, 85.6931, 149.7249298095703], [30.8596, 120.1844, 74.0557861328125], [31.1333, 104.3883, 0.5401907563209534], [27.9939, 120.677, 42.87269592285156], [37.187, 122.019, 122.88844299316406], [29.8633, 121.586, 59.39717102050781], [39.65782, 118.1838, 83.228515625], [34.6869, 112.4664, -10.019536972045898], [40.6592, 122.2414, 103.26408386230469], [39.8673, 116.366, 39.77265548706055], [34.493, 109.4636, 35.49847412109375], [40.8144, 111.608, 30.980663299560547], [28.095, 116.9622, 48.85005569458008], [22.9477, 113.352, 57.51146697998047], [27.5342, 109.9792, -12.76944637298584], [31.874, 120.526, 83.10992431640625], [36.2289, 117.6789, 51.37840270996094], [28.0005, 116.3574, 39.44533157348633], [41.1196, 123.044, 97.70466613769531], [29.6588, 90.9798, 83.77506256103516], [23.0528, 114.4183, 58.29774856567383], [50.4269, 124.1186, 104.00990295410156], [30.6578, 104.054, 5.04615592956543], [31.6928, 118.48, 74.34144592285156], [46.6384, 126.9934, 82.9961166381836], [27.3033, 111.5239, -9.688100814819336], [31.8711, 106.7389, -16.192895889282227], [37.154, 122.471, 122.40425109863281], [48.4658, 129.4942, 100.84892272949219], [41.0781, 121.0986, 99.25027465820312], [28.1442, 112.9956, -7.033882141113281], [40.7608, 107.4211, 22.878400802612305], [37.4314, 118.6672, 82.7415542602539], [43.8947, 126.5786, 75.86412811279297], [23.63444, 113.0472, 48.45071792602539], [37.4442, 118.5857, 80.07498931884766], [25.8179, 113.0119, 13.104357719421387], [23.105, 113.261, 55.5706901550293], [32.0417, 120.81, 84.71659088134766], [23.0786, 112.4722, 53.70042037963867], [31.2071, 121.577, 74.71382904052734], [37.8195, 112.57, 4.366150856018066], [32.0564, 112.1392, 15.635518074035645], [38.95111111, 121.565, 116.74771881103516], [43.1747, 124.3419, 78.19237518310547], [29.7534, 116.0726, 44.84513473510742], [39.9279, 116.225, 37.7927360534668], [31.6411, 118.4828, 74.2951431274414], [36.5481, 104.1731, -13.99012279510498], [35.0994, 109.0656, 43.544029235839844], [23.2539, 116.6092, 53.29863739013672], [31.3708, 120.641, 78.05134582519531], [34.7187, 113.727, -13.855260848999023], [36.497, 117.8477, 55.19841766357422], [27.8094, 102.3419, 43.77914047241211], [43.8303, 87.5801, 121.4512710571289], [27.6428, 113.8381, 2.25923490524292], [31.5631, 120.245, 80.26050567626953], [29.41569, 106.5506, -16.71954917907715], [32.0197, 112.155, 15.603131294250488], [26.5747, 107.9783, 7.515459060668945], [28.76611, 104.6225, 12.581671714782715], [27.8036, 114.9314, 16.4896297454834], [21.9667, 108.6236, 58.77518081665039], [29.1456, 111.7158, -12.333160400390625], [24.2654, 116.1248, 48.351837158203125], [49.2261, 119.7594, 89.72244262695312], [32.8603, 115.8556, 29.868974685668945], [27.9958, 113.1817, -5.237630367279053], [28.6869, 115.852, 36.67861557006836], [30.3055, 112.2887, 7.102674961090088], [46.7588, 130.3794, 91.8961410522461], [32.965, 114.018, 9.979475021362305], [22.5328, 113.024, 60.70949172973633], [36.6114, 116.988, 24.039003372192383], [32.996, 113.996, 9.602039337158203], [31.354, 119.818, 79.14502716064453], [38.0513, 114.4548, -8.615896224975586], [42.8775, 129.3675, 79.0106201171875], [26.6946, 119.5001, 34.42780303955078], [33.627, 119.0122, 87.74591827392578], [28.4231, 119.879, 50.79766082763672], [29.635, 119.026, 67.49922943115234], [31.7275, 113.3583, 14.319421768188477], [41.5647, 120.4247, 92.3135986328125], [34.6231, 112.3844, -8.569989204406738], [30.1377, 104.6289, -0.7543436288833618], [42.0186, 121.6561, 88.70800018310547], [29.5817, 105.0653, -2.987119197845459], [24.2719, 116.0797, 48.37763214111328], [39.5371, 75.9828, 207.06890869140625], [41.9206, 126.4047, 84.68292999267578], [27.583, 110.0394, -13.255398750305176], [33.4022, 120.118, 97.47179412841797], [26.6343, 106.7487, 16.918222427368164], [35.4234, 119.5198, 103.87129974365234], [28.1308, 112.8908, -7.724402904510498], [24.3406, 109.3886, 31.687152862548828], [21.7631, 108.3511, 60.11550521850586], [27.11, 114.9739, 17.861160278320312], [42.8953, 125.1567, 80.193359375], [43.895, 81.2867, 170.53944396972656], [40.7736, 120.8631, 101.67411041259766], [32.935, 117.3086, 54.51081085205078], [40.5905, 110.0067, 30.38855743408203], [29.8208, 121.56, 58.957725524902344], [32.7639, 116.8028, 45.34531784057617], [26.8802, 100.2497, 52.81474685668945], [30.3714, 114.8989, 26.10475730895996], [29.7228, 106.626, -19.3132266998291], [43.85, 125.217, 74.8252944946289], [21.6828, 110.8592, 63.24397277832031], [33.5979, 114.6546, 8.56827163696289], [29.6007, 103.7506, 14.349591255187988], [47.7222, 128.8736, 94.37602996826172], [24.81119444, 113.5593889, 32.88461685180664], [29.315, 110.4417, -17.264080047607422], [27.7314, 112.0194, -11.297986030578613], [34.9058, 108.9344, 43.15372085571289], [29.5186, 106.54, -17.483007431030273], [40.0031, 116.407, 43.431522369384766], [31.9286, 102.1755, 20.600374221801758], [38.8756, 115.442, 4.403380393981934], [40.7688, 114.9032, 36.78325653076172], [38.0398, 114.6046, -9.262811660766602], [37.8792, 113.4922, -4.561145782470703], [31.0283, 103.613, 9.574121475219727], [31.3508, 118.3528, 72.30755615234375], [32.88922222, 115.7838889, 28.65360450744629], [36.0783, 111.5531, 7.671578884124756], [36.2126, 113.0886, -14.76459789276123], [21.8536, 111.9508, 64.08524322509766], [29.7736, 121.633, 58.17341613769531], [28.3586, 112.9958, -6.9073486328125], [37.4294, 122.1206, 122.76651763916016], [28.71583, 104.5761, 13.846782684326172], [31.5848, 120.354, 80.3182144165039], [31.2108, 107.4967, -17.121932983398438], [26.0797, 119.268, 34.66423416137695], [23.0467, 113.144, 55.814579010009766], [26.6383, 118.1694, 41.43655014038086], [27.9153, 113.0048, -6.2689104080200195], [32.6975, 109.0072, 23.071725845336914], [31.955, 119.146, 81.7865982055664], [33.38256667, 104.9338889, -4.228900909423828], [37.8564, 113.5753, -5.531177997589111], [39.7711, 98.2908, 32.90037536621094], [30.6145, 116.9894, 57.57883834838867], [43.9469, 87.4754, 122.95325469970703], [39.5453, 116.7022, 42.099761962890625], [30.9219, 117.8561, 67.19566345214844], [34.7745, 113.641, -14.623117446899414], [32.41, 119.404, 86.2641372680664], [22.5111, 113.4075, 61.765380859375], [43.6156, 122.3039, 72.51528930664062], [37.7087, 112.7105, 1.6640770435333252], [41.3472, 123.8142, 93.48920440673828], [43.831, 87.6432, 120.96502685546875], [22.8322, 100.9817, 61.83038330078125], [23.415, 111.2353, 45.73984909057617], [29.2958, 117.2111, 60.46662902832031], [30.21, 120.211, 67.6117935180664], [27.7019, 106.9242, 0.4427892863750458], [30.0506, 103.8986, 9.156394958496094], [46.8032, 130.3648, 92.1002197265625], [33.9592, 118.2442, 75.29877471923828], [26.4519, 111.5989, -0.10001372545957565], [31.1907, 121.703, 74.27012634277344], [26.8576, 100.2143, 52.94242477416992], [47.2988, 123.945, 82.03353118896484], [36.253, 120.014, 114.29566192626953], [32.9917, 112.5192, 11.456591606140137], [34.402, 115.6578, 14.70565128326416], [37.9844, 106.2025, 5.175332069396973], [45.2948, 131.0103, 86.34331512451172], [33.3942, 120.156, 97.52967834472656], [24.3898, 109.4883, 30.9449462890625], [30.9742, 118.7386, 75.8647689819336], [26.6029, 106.6856, 17.872314453125], [31.2994, 120.543, 77.46187591552734], [30.3515, 112.2068, 7.382791519165039], [30.5706, 104.079, 4.945289134979248], [21.5958, 109.2256, 61.94157028198242], [44.1564, 87.9897, 120.23060607910156], [22.7875, 108.301, 51.71311569213867], [26.2403, 107.5228, 15.713495254516602], [27.5578, 109.9972, -13.003499031066895], [30.4865, 106.6351, -21.466999053955078], [38.4975, 106.2328, 7.1041083335876465], [30.9892, 112.1969, 12.754573822021484], [37.7379, 115.6426, -9.310386657714844], [36.1417, 106.2319, 9.000967979431152], [43.4569, 87.4651, 120.24176025390625], [24.3158, 109.4839, 31.876876831054688], [45.8194, 130.8625, 88.40998077392578], [29.1389, 110.48, -17.667211532592773], [29.90166667, 121.6147222, 59.77961730957031], [34.7997, 111.1489, 8.248655319213867], [26.0931, 119.58, 33.107398986816406], [41.7972, 123.3997, 89.62834930419922], [25.5364, 103.8, 46.55662155151367], [31.7797, 116.5068, 45.088417053222656], [27.7569, 111.9561, -11.734618186950684], [38.9846, 117.3747, 51.51548385620117], [36.086, 114.32, -22.44989776611328], [39.9934, 116.315, 41.09850311279297], [37.7805, 112.488, 5.024972438812256], [29.7292, 115.988, 43.44282913208008], [27.8317, 99.7056, 51.76069259643555], [38.91194444, 121.6330556, 117.08612060546875], [43.941, 81.3364, 170.34133911132812], [37.18, 119.959, 113.82764434814453], [35.5294, 106.7039, 21.602277755737305], [33.581, 114.014, 4.071821212768555], [30.7819, 111.3296, 9.319781303405762], [38.5036, 106.1358, 6.41767692565918], [31.751, 119.579, 82.12760162353516], [29.6376, 94.3681, 64.7172622680664], [38.85611111, 121.5180556, 117.3355484008789], [30.7157, 111.3009, 8.293824195861816], [40.8369, 111.751, 30.88715362548828], [36.4796, 115.9835, -6.727293968200684], [39.2474, 117.7918, 67.68112182617188], [37.825, 120.747, 118.60586547851562], [39.0877, 117.307, 51.1662712097168], [35.0003, 102.905, -9.521358489990234], [31.6219, 120.275, 80.70375061035156], [29.6747, 91.1221, 82.46060180664062], [41.7156, 125.9361, 86.91117095947266], [34.2153, 117.256, 53.8513298034668], [31.1108, 104.3539, 0.9990311861038208], [29.8906, 121.554, 59.84126281738281], [30.65638889, 104.0238889, 5.419764995574951], [46.6219, 124.8648, 79.39417266845703], [32.215, 119.491, 85.22038269042969], [29.9899, 103.0013, 20.81623077392578], [34.0117, 113.8331, -2.680769920349121], [42.8328, 93.4961, 72.6323013305664], [36.5458, 104.1731, -13.994024276733398], [26.6009, 106.7105, 17.67392921447754], [23.0944, 109.6014, 48.34803009033203], [29.4758, 113.2621, 3.708056688308716], [33.0069, 114.0131, 9.560844421386719], [22.6164, 110.1433, 54.27159881591797], [41.7381, 125.9486, 86.75308990478516], [37.8692, 112.5369, 5.2520036697387695], [32.3292, 119.8767, 87.13961791992188], [35.4039, 116.5546, 24.132400512695312], [29.9816, 103.0001, 20.88241958618164], [39.1654, 117.145, 47.7032585144043], [32.3878, 119.46, 86.36563873291016], [45.7478, 126.593, 77.49784088134766], [40.1269, 113.2661, 24.413578033447266], [32.4246, 105.8153, -9.607715606689453], [30.6103, 114.4272, 20.856557846069336], [23.02777778, 113.7461111, 57.7385139465332], [35.9019, 114.17, -22.39224624633789], [38.4841, 106.2739, 7.358490467071533], [36.865, 120.537, 120.59336853027344], [39.2282, 106.7704, 13.279004096984863], [30.8811, 117.7442, 65.91825866699219], [23.2775, 116.7258, 52.92878723144531], [37.5639, 121.2514, 121.21656036376953], [27.8528, 113.13, -5.087535381317139], [34.5021, 109.4266, 35.99679946899414], [38.6016, 105.9512, 5.4171462059021], [32.8985, 117.3065, 54.47031784057617], [37.1152, 79.9485, 172.1456298828125], [26.567, 101.7227, 50.19036865234375], [36.799, 119.976, 114.63347625732422], [30.2997, 113.8531, 15.797636985778809], [41.9339, 123.6836, 87.66365814208984], [36.864, 118.78, 86.27008819580078], [42.0486, 121.6592, 88.3388442993164], [41.1042, 121.835, 99.25717163085938], [38.03777778, 114.5480556, -9.118924140930176], [36.0714, 111.5028, 8.632190704345703], [26.5928, 101.5769, 50.527923583984375], [24.339, 102.5381, 53.99140167236328], [30.66, 117.49, 63.378013610839844], [19.9969, 110.338, 72.81071472167969], [34.3469, 106.005, 3.9798240661621094], [28.2264, 117.0222, 50.67466354370117], [30.0125, 103.009, 20.58145523071289], [38.2991, 116.8854, 25.408676147460938], [26.4364, 111.5992, 0.07952366769313812], [23.8822, 100.0869, 58.84339904785156], [26.4214, 111.6156, 0.28310948610305786], [23.0395, 113.105, 55.77665710449219], [29.53675, 106.4959, -17.36629295349121], [32.64600333, 117.0411667, 49.83626174926758], [37.9854, 112.549, 6.279476642608643], [28.0167, 120.671, 43.13461685180664], [33.5653, 114.0322, 4.353652477264404], [30.9414, 117.8178, 66.6832275390625], [27.9747, 120.76, 42.35009765625], [24.4674, 117.6336, 44.55272674560547], [30.8217, 106.1031, -19.238109588623047], [35.0573, 118.3418, 77.35396575927734], [34.864, 117.5564, 58.318660736083984], [22.0019, 100.7939, 68.09335327148438], [45.305, 130.9817, 86.30403900146484], [44.2967, 86.0497, 136.08631896972656], [30.2747, 120.063, 68.83898162841797], [26.6761, 118.0966, 41.94144058227539], [37.3803, 118.0062, 59.042442321777344], [36.8198, 118.3092, 70.51713562011719], [31.9108, 119.905, 83.71870422363281], [40.0625, 124.3303, 102.65483856201172], [27.8159, 112.9227, -6.461010456085205], [45.7733, 126.689, 77.76729583740234], [46.0707, 122.0931, 71.79949951171875], [37.4967, 121.2611, 121.41926574707031], [33.6067, 118.989, 87.25365447998047], [33.6128, 114.6613, 8.458017349243164], [22.6069, 113.104, 60.252437591552734], [45.7667, 126.635, 77.64324188232422], [24.3304, 109.4108, 31.78141212463379], [41.1933, 80.2956, 170.179931640625], [30.8064, 106.056, -18.926836013793945], [36.2211, 117.6983, 52.114891052246094], [30.518, 106.631, -21.498687744140625], [32.1883, 119.68, 85.65609741210938], [32.0775, 118.795, 79.14398956298828], [31.6908, 113.3833, 14.421293258666992], [37.374, 120.399, 118.67808532714844], [31.6861, 118.5058, 74.66011810302734], [26.2331, 111.6236, 2.684112787246704], [28.8194, 104.5969, 12.218640327453613], [28.19, 112.9394, -7.484479904174805], [23.3892, 104.2319, 53.58761215209961], [46.6527, 126.9636, 83.02664184570312], [24.441, 98.578, 60.711029052734375], [35.1147, 111.0414, 10.72869873046875], [31.4, 119.46, 79.60546112060547], [42.9061, 129.5042, 79.04104614257812], [47.9047, 88.1214, 146.17459106445312], [26.6607, 119.5202, 34.06073760986328], [40.8452, 111.659, 31.041126251220703], [29.7048, 115.9581, 42.94253158569336], [46.6462, 131.1516, 93.53221893310547], [35.5714, 104.6228, -13.958903312683105], [23.1323, 113.3208, 55.492984771728516], [30.0033, 120.7789, 63.54283142089844], [30.4133, 114.8131, 25.043289184570312], [39.8745, 116.434, 41.56595230102539], [44.0297, 87.2717, 125.04119873046875], [42.2814, 118.9233, 78.76484680175781], [45.2924, 130.962, 86.18632507324219], [23.5739, 116.3594, 52.03654479980469], [30.1808, 120.088, 67.8641128540039], [36.6106, 109.5056, 44.3111457824707], [29.6541, 91.1774, 82.03779602050781], [44.5462, 129.6386, 79.56072998046875], [25.2708, 110.3089, 16.600637435913086], [43.8256, 126.55, 75.95303344726562], [45.755, 126.542, 77.427490234375], [21.6669, 110.9067, 63.45872497558594], [34.9162, 113.6113, -16.234052658081055], [25.5811, 100.2171, 55.239192962646484], [29.8539, 114.2894, 17.73750877380371], [26.9056, 112.5664, -1.9615578651428223], [47.3382, 130.1097, 94.84151458740234], [31.4747, 104.7778, -3.979519844055176], [34.6258, 112.4275, -9.027714729309082], [34.3672, 107.1906, 29.2314395904541], [32.18888889, 119.4369444, 84.76336669921875], [24.77908333, 113.6734722, 34.22669982910156], [23.5538, 113.589, 52.009552001953125], [35.4813, 112.8252, -16.639665603637695], [35.235, 113.261, -18.635229110717773], [41.8594, 123.9, 88.28527069091797], [22.7019, 110.1106, 53.41005325317383], [32.1403, 114.0122, 14.6207914352417], [24.795928, 113.598061, 33.42295455932617], [27.8136, 99.7064, 51.803958892822266], [36.0822, 111.5169, 8.429218292236328], [37.3617, 118.0018, 58.83219528198242], [40.7579, 111.651, 30.696170806884766], [43.8167, 125.25, 74.988525390625], [37.43445, 118.696, 83.6783676147461], [28.5808, 112.3458, -11.078096389770508], [26.6514, 118.1819, 41.4942512512207], [46.6572, 131.1638, 93.62714385986328], [35.4144, 116.5856, 24.90467643737793], [24.68636111, 113.5970833, 35.334781646728516], [23.05361111, 113.7819444, 57.5732536315918], [31.7506, 118.5106, 74.82828521728516], [30.5719, 114.3672, 20.31981658935547], [29.4402, 112.9943, 0.94797283411026], [35.28385, 113.5922, -19.47459602355957], [30.698, 111.2992, 8.033061981201172], [45.7677, 131.0032, 88.58277130126953], [45.5828, 84.8897, 152.48265075683594], [38.86388889, 121.625, 117.39894104003906], [35.272, 113.884, -19.364961624145508], [31.0935, 120.978, 74.7024154663086], [34.9817, 118.2764, 75.99369812011719], [34.7967, 114.2886, -11.85274600982666], [30.4183, 120.301, 69.30904388427734], [29.6453, 106.562, -18.5050106048584], [35.546, 112.8453, -16.630678176879883], [41.1953, 123.2, 96.61578369140625], [30.63, 104.1113889, 4.428536891937256], [27.5733, 109.9333, -13.128145217895508], [36.4343, 116.0072, -5.867621898651123], [36.6275, 109.4131, 44.6300163269043], [30.5494, 114.3006, 19.739469528198242], [30.9414, 117.7806, 66.22122192382812], [45.6886, 85.1186, 151.4457244873047], [22.5931, 113.0819, 60.32223129272461], [27.0658, 114.9817, 18.15570068359375], [27.7231, 109.1794, -13.483309745788574], [24.6928, 108.054, 31.457656860351562], [35.5051, 112.85, -16.825265884399414], [43.962, 87.6444, 121.7231674194336], [23.5292, 116.4094, 52.20166015625], [22.5978, 114.297, 61.348636627197266], [22.5545, 114.1063, 61.830257415771484], [43.8875, 126.555, 75.85523223876953], [41.1222, 121.1178, 98.8008804321289], [27.7297, 109.1916, -13.58432388305664], [27.8344, 114.9831, 17.320087432861328], [37.8531, 113.6292, -6.012206077575684], [22.0225, 100.8017, 67.90544128417969], [40.6511, 122.215, 103.36708068847656], [33.6347, 114.6758, 8.348016738891602], [26.5892, 104.8, 33.527889251708984], [33.3947, 120.225, 97.69986724853516], [29.6926, 116.0628, 44.66581344604492], [38.885, 121.5638889, 117.20437622070312], [39.6572, 106.7931, 14.730361938476562], [41.0903, 122.0539, 99.25668334960938], [41.8864, 124.0878, 87.84626007080078], [31.17, 120.635, 76.0007095336914], [33.8561, 115.7831, 25.008882522583008], [36.913, 121.531, 122.39705657958984], [37.809, 120.773, 118.79370880126953], [23.3993, 103.3772, 54.85646057128906], [32.9735, 112.5003, 11.655531883239746], [41.7775, 123.478, 89.66353607177734], [29.1242, 110.4697, -17.721960067749023], [26.53111111, 107.8908333, 8.797204971313477], [35.0308, 110.9678, 11.892531394958496], [38.97388889, 121.6119444, 116.6343765258789], [31.2797, 107.5272, -16.24043846130371], [31.0483, 112.2014, 12.983474731445312], [30.2311, 119.6942, 69.9697265625], [30.2897, 120.157, 68.59652709960938], [36.6622, 117.049, 25.704463958740234], [34.3731, 109.2186, 37.04909896850586], [33.1138, 107.0089, 6.735275745391846], [22.5497, 113.3881, 61.411293029785156], [26.1092, 119.299, 34.46512222290039], [38.9108, 115.4713, 5.350432395935059], [28.1944, 113.0014, -7.040981292724609], [25.1174, 117.0181, 43.65059280395508], [35.2375, 115.474722, -3.21099853515625], [31.737, 119.579, 82.02887725830078], [29.57278, 106.4042, -17.049625396728516], [30.2989, 109.5039, -11.370354652404785], [31.7371, 116.508, 45.34477233886719], [25.9061, 113.0073, 11.757331848144531], [34.5911, 119.1478, 93.983154296875], [37.197, 122.038, 122.88888549804688], [26.5155, 106.6948, 18.897686004638672], [29.305, 120.091, 59.2634391784668], [30.72358333, 103.97275, 5.922344207763672], [31.955, 119.18, 82.00332641601562], [35.6039, 103.2139, -12.880609512329102], [31.5031, 120.242, 79.75801086425781], [38.4519, 112.7383, 8.989283561706543], [37.8873, 112.522, 5.613972187042236], [37.3753, 97.3731, 29.81422233581543], [31.2261, 121.425, 75.19869995117188], [32.0572, 118.749, 78.51335906982422], [29.5867, 115.9936, 43.43403244018555], [33.5039, 119.135, 89.06273651123047], [39.4365, 75.9435, 207.32798767089844], [23.7208, 109.2131, 40.0512809753418], [31.7308, 113.3983, 14.362055778503418], [27.7842, 114.3953, 8.878334045410156], [36.8088, 118.0482, 61.192176818847656], [27.8728, 112.8937, -6.885376453399658], [23.0048, 113.134, 56.21235656738281], [28.6047, 112.3347, -11.085747718811035], [36.0211, 106.2375, 9.657872200012207], [29.3547, 110.5594, -16.49280548095703], [31.4539, 104.7536, -3.724562168121338], [39.5989, 109.8119, 34.47867965698242], [32.395, 111.0419, 20.090547561645508], [31.172, 120.658, 75.97643280029297], [22.805, 108.383, 51.50065994262695], [34.3164, 108.7369, 39.78982162475586], [41.9228, 123.3783, 88.10953521728516], [34.794, 111.158, 8.089021682739258], [31.2284, 121.533, 75.04657745361328], [27.8403, 112.9118, -6.633703708648682], [29.2365, 88.8931, 104.51422882080078], [31.317, 119.438, 79.01249694824219], [22.9394, 112.0369, 54.12786102294922], [25.0405, 102.722, 51.918094635009766], [34.7822, 111.19, 7.521944522857666], [25.7759, 113.0348, 13.848613739013672], [40.0917, 113.3444, 23.55865478515625], [36.5819, 101.834, -6.028388500213623], [38.4928, 112.7003, 9.860625267028809], [40.916, 107.5936, 24.40979766845703], [34.2629, 108.993, 37.84134292602539], [34.8731, 108.9589, 42.77519989013672], [23.1478, 109.5681, 47.64597702026367], [31.92, 120.302, 83.42952728271484], [42.2953, 123.8831, 83.83543395996094], [43.6801, 122.2532, 72.04310607910156], [26.5917, 104.83, 33.29700469970703], [25.4792, 118.981, 37.4953498840332], [28.4459, 117.973, 57.60127258300781], [32.6939, 109.0281, 23.0949764251709], [39.3265, 112.4078, 21.883024215698242], [32.3061, 118.3158, 72.410400390625], [36.6164, 114.5426, -20.06134796142578], [27.2582, 111.4908, -9.280496597290039], [41.0112, 117.9384, 83.5385971069336], [37.9648, 106.1532, 4.673435211181641], [41.0971, 122.9642, 98.06892395019531], [34.7496, 113.5991, -14.376477241516113], [27.8953, 102.2311, 44.09680938720703], [29.5634, 103.757, 14.6002836227417], [32.4429, 105.8242, -9.517078399658203], [29.6535, 116.0174, 43.909324645996094], [34.719, 113.734, -13.848313331604004], [47.3349, 130.2659, 95.22618865966797], [46.619, 131.1651, 93.42486572265625], [34.378, 108.869, 39.58089065551758], [38.8707, 115.5214, 5.120408535003662], [30.7525, 120.7844444, 71.30549621582031], [22.96583333, 113.7383333, 58.37189865112305], [32.9683, 112.55, 11.473312377929688], [39.8129, 110.0023, 34.145450592041016], [29.2647, 117.1558, 59.6923828125], [30.5514, 114.2511, 19.324092864990234], [27.8847, 102.2689, 43.913612365722656], [35.7672, 115.0628, -15.9182710647583], [30.696, 111.268, 7.826711654663086], [41.765, 123.41, 89.9990463256836], [41.8417, 123.7117, 88.59817504882812], [26.5894, 104.8475, 33.19032669067383], [25.0492, 101.538, 54.092124938964844], [27.9639, 116.3598, 39.3013916015625], [33.6481, 116.9765, 49.03150177001953], [41.0833, 122.9481, 98.22946166992188], [37.4514, 105.0197, -6.739418029785156], [26.8906, 100.2203, 52.849700927734375], [35.5236, 107.6406, 38.595584869384766], [22.7422, 114.5317, 60.18259048461914], [35.31, 113.836, -19.72364044189453], [30.3944, 114.8878, 25.945863723754883], [39.0927, 117.202, 48.16631317138672], [32.1078, 114.1044, 15.17993450164795], [35.5461, 106.6692, 20.801332473754883], [37.5211, 111.1406, 24.632713317871094], [40.9843, 117.9525, 83.77998352050781], [33.9506, 118.3214, 76.73468780517578], [32.939, 117.3961, 56.001583099365234], [23.3594, 104.2533, 53.67015075683594], [36.881, 118.746, 85.15130615234375], [36.6872, 116.989, 23.359582901000977], [34.802, 113.564, -15.010404586791992], [24.5058, 118.0936, 43.438716888427734], [43.9311, 116.0781, 60.47119140625], [34.6692, 112.3628, -8.856374740600586], [36.6428, 101.748, -5.261422634124756], [33.7214, 113.3064, 0.3727585971355438], [36.1031, 103.631, -13.892831802368164], [29.5822, 105.0406, -2.652791976928711], [32.8913, 117.4186, 56.351444244384766], [23.3682, 103.3758, 54.97285079956055], [43.9404, 81.2815, 170.7722625732422], [27.8042, 114.9119, 16.20225715637207], [29.7125, 106.617, -19.217945098876953], [32.0092, 118.737, 78.18689727783203], [28.8833, 105.4322, 0.5657737255096436], [35.27, 115.455, -4.046596527099609], [40.7612, 111.717, 30.6181640625], [42.8172, 93.5128, 72.44979858398438], [40.1952, 116.23, 43.23817443847656], [26.0542, 119.389, 34.08600616455078], [45.1642, 124.8528, 72.75946044921875], [34.3181, 108.6761, 40.09770584106445], [40.7378, 107.3715, 22.561864852905273], [30.9431, 118.7175, 75.6619644165039], [28.2189, 112.8872, -7.873316287994385], [46.528, 125.112, 79.21644592285156], [33.8715, 109.9154, 27.026458740234375], [40.1503, 124.4256, 101.72248840332031], [32.0903, 112.2106, 15.440195083618164], [42.2556, 118.8789, 78.86634063720703], [39.9567, 119.6023, 100.9872055053711], [22.4853, 113.4411, 62.04029846191406], [39.5986, 109.7736, 34.25802993774414], [36.5776, 114.5035, -20.286067962646484], [32.4639, 119.888, 88.23316192626953], [39.0845, 117.1589, 46.77942657470703], [25.8567, 98.8601, 56.675140380859375], [22.5625, 114.117, 61.77695083618164], [34.2713, 108.954, 38.13080596923828], [43.7878, 125.454, 75.28410339355469], [28.9664, 118.871, 61.18088150024414], [23.1617, 112.565, 52.958526611328125], [31.8108, 119.9736, 82.7554702758789], [29.261, 91.7706, 78.42967224121094], [28.9583, 105.4306, -0.4015485346317291], [33.027, 112.5573, 11.070508003234863], [30.51197222, 117.0331111, 58.513267517089844], [31.9051, 117.16, 54.02386474609375], [27.725, 111.9975, -11.35776424407959], [40.7136, 120.9092, 102.27421569824219], [23.65889, 116.6183, 51.01073455810547], [26.4364, 106.6554, 20.226226806640625], [31.8706, 117.259, 55.61516189575195], [38.2911, 109.7456, 40.98833084106445], [34.2778, 117.2933, 54.43258285522461], [33.568, 114.005, 4.19218635559082], [38.00583333, 114.4586111, -9.133794784545898], [32.3153, 118.3094, 72.29853820800781], [38.80805556, 121.2588889, 116.84320068359375], [47.7317, 128.9094, 94.52195739746094], [41.5931, 120.4439, 92.03601837158203], [45.8167, 126.561, 77.73243713378906], [34.6686, 112.4433, -9.648311614990234], [31.8766, 117.307, 56.27943420410156], [28.2053, 113.0792, -6.4234232902526855], [34.5653, 105.8614, 2.2478811740875244], [42.3022, 123.8139, 83.75452423095703], [26.5495, 106.6867, 18.534852981567383], [23.0706, 112.427, 53.66317367553711], [34.7538, 113.6356, -14.390655517578125], [29.9834, 103.0109, 20.73529815673828], [21.865, 111.9494, 63.985809326171875], [30.7856, 106.1064, -19.279422760009766], [28.2169, 116.9983, 50.347328186035156], [39.0631, 121.9769, 116.08869934082031], [39.6679, 118.2185, 84.12602996826172], [32.6778, 109.0311, 22.84109878540039], [28.9745, 118.855, 61.336185455322266], [45.0878, 124.8292, 72.70159912109375], [31.2058, 107.4611, -17.511985778808594], [41.3369, 123.7528, 93.7828369140625], [35.3962, 119.54, 104.1266098022461], [32.1342, 114.0681, 14.897062301635742], [34.407, 115.6386, 14.179588317871094], [29.334, 120.04, 59.789546966552734], [34.2417, 117.192, 52.33277893066406], [23.105, 113.433, 56.059471130371094], [26.6266, 106.6243, 18.136005401611328], [37.7124, 112.469, 4.688292503356934], [43.1847, 124.3897, 78.16920471191406], [29.7207, 118.3236, 70.04956817626953], [45.8309, 130.9467, 88.72158813476562], [31.4656, 104.6717, -2.646737813949585], [30.6617, 117.4697, 63.13203430175781], [39.625, 121.989, 111.89175415039062], [46.5776, 125.1386, 79.56822967529297], [36.0725, 103.841, -14.305039405822754], [25.1035, 117.0216, 43.673282623291016], [49.1577, 119.7512, 89.16709899902344], [22.8464, 108.239, 51.175437927246094], [25.0311, 117.0151, 43.83307647705078], [35.4178, 119.4641, 102.89311218261719], [37.5002, 105.1971, -5.28354549407959], [33.63063889, 116.989, 49.272403717041016], [23.1036, 109.5683, 48.219425201416016], [23.7369, 109.2317, 39.79754638671875], [30.049, 119.946, 67.22576904296875], [25.0124, 102.743, 51.94890213012695], [30.4753, 114.1525, 18.460439682006836], [38.0524, 114.5214, -8.863773345947266], [34.29, 117.1814, 51.908287048339844], [30.1142, 104.6469, -0.8941280841827393], [29.8506, 121.524, 59.44144058227539], [36.0464, 103.831, -14.311724662780762], [39.6308, 118.1662, 82.49690246582031], [41.0831, 123.0156, 98.11333465576172], [31.9438, 117.266, 55.39274978637695], [29.8181, 114.3036, 17.796024322509766], [41.2894, 123.1417, 95.81782531738281], [35.248889, 115.42277, -4.356146812438965], [42.2864, 123.8489, 83.90866088867188], [27.7758, 115.0586, 18.437227249145508], [38.5339, 102.1725, 4.430611610412598], [35.1764, 113.2464, -18.213233947753906], [33.0706, 107.0154, 6.126458644866943], [34.2911, 117.244, 53.29730987548828], [34.3956, 108.7197, 40.500118255615234], [31.371, 119.794, 79.28518676757812], [34.2749, 108.882, 38.567325592041016], [31.7848, 117.196, 55.13763427734375], [30.0874, 103.8416, 9.69438648223877], [31.1167, 104.4053, 0.30316635966300964], [34.2572, 109.06, 37.369163513183594], [37.364, 120.394, 118.68128204345703], [27.8408, 102.2714, 44.07359313964844], [36.7731, 119.1939, 98.29810333251953], [40.1097, 113.3819, 23.63969612121582], [29.33972, 104.7228, 4.271406650543213], [30.9697, 117.8472, 66.97528076171875], [44.6104, 129.6459, 79.77105712890625], [29.6039, 115.9114, 42.0639533996582], [36.6525, 119.1638, 97.64735412597656], [31.9025, 102.2218, 20.504741668701172], [34.3274, 109.043, 38.0692253112793], [33.3681, 120.1631, 97.30364227294922], [31.85805556, 106.7619444, -16.264015197753906], [31.1956, 107.5069, -17.154626846313477], [27.2317, 111.4733, -9.034446716308594], [39.16969, 117.2099, 49.6544303894043], [26.2625, 117.6211, 40.712825775146484], [40.9733, 117.8184, 82.2079849243164], [37.4372, 116.2714, -1.8652122020721436], [27.8244, 113.135, -4.921069145202637], [31.3178, 118.3708, 72.49874114990234], [25.0992, 104.8811, 43.9570198059082], [31.4846, 92.0657, 69.27020263671875], [30.1819, 120.27, 67.08953094482422], [22.9169, 112.0392, 54.371742248535156], [31.909, 120.237, 83.29180145263672], [41.9967, 121.6178, 88.94728088378906], [31.7956, 117.302, 56.60406494140625], [46.7975, 130.3258, 91.95856475830078], [25.0441, 101.5482, 54.087066650390625], [29.6514, 91.1319, 82.44844055175781], [31.7897, 119.8914, 82.67687225341797], [36.0022, 106.2792, 10.589696884155273], [29.2718, 88.8876, 104.41798400878906], [36.7019, 119.12, 96.41866302490234], [29.1029, 119.686, 58.79860305786133], [29.6632, 94.3616, 64.67377471923828], [37.7111, 112.7306, 1.4502315521240234], [40.8725, 114.904, 38.3348274230957], [31.4189, 118.37, 72.5630874633789], [31.3008, 121.467, 75.99295043945312], [25.8071, 113.0383, 13.40185260772705], [23.3917, 113.215, 52.42577362060547], [21.2706, 110.3539, 65.29859161376953], [32.4611, 119.9219, 88.2179183959961], [30.4663, 106.6271, -21.405811309814453], [30.3058, 120.348, 68.00286102294922], [30.3119, 120.12, 68.95465850830078], [21.4689, 111.0286, 65.17566680908203], [23.6714, 116.6339, 50.90394592285156], [31.3264, 120.596, 77.64450073242188], [34.2761, 117.167, 51.6413688659668], [38.49494, 106.1024, 6.134138107299805], [31.7386, 117.278, 56.549434661865234], [36.39, 120.47, 119.52611541748047], [31.671, 120.721, 80.97608947753906], [35.767, 115.0772, -15.763035774230957], [37.062, 114.4854, -16.924121856689453], [34.3474, 108.935, 38.9013786315918], [30.2692, 120.19, 68.26970672607422], [27.2944, 105.31, 23.220033645629883], [32.1319, 119.43, 84.33195495605469], [27.2537, 111.4503, -9.311053276062012], [38.4186, 112.7356, 8.664281845092773], [23.3633, 116.7244, 52.472755432128906], [28.6844, 115.931, 38.052677154541016], [41.7128, 86.2381, 122.64189147949219], [21.2679, 110.3316, 65.27754211425781], [30.3175, 112.2551, 7.121124744415283], [46.5888, 131.1572, 93.23772430419922], [28.6425, 115.892, 37.08488845825195], [27.72, 106.9178, 0.2663130760192871], [41.0931, 123.011, 98.02498626708984], [37.161, 122.41, 122.52018737792969], [46.8025, 130.2719, 91.83436584472656], [30.9222, 117.8078, 66.60852813720703], [36.4372, 115.9848, -6.365028381347656], [40.6821, 109.8538, 30.387453079223633], [39.1082, 117.237, 49.44679260253906], [23.1142, 114.4103, 57.84772872924805], [32.0878, 118.626, 76.94479370117188], [27.8072, 114.4011, 8.917563438415527], [30.5103, 117.0549, 58.789546966552734], [41.0385, 113.1076, 31.416040420532227], [36.5336, 116.734, 15.591339111328125], [31.5475, 120.354, 79.98690795898438], [27.8978, 102.2625, 43.89857864379883], [27.1311, 114.99, 17.994199752807617], [25.0359, 102.638, 52.11952590942383], [28.2597, 112.9792, -7.15262508392334], [41.2864, 123.7669, 94.25405883789062], [47.3489, 130.3172, 95.45343017578125], [36.907, 121.544, 122.4048080444336], [32.5714, 110.8839, 21.24344253540039], [25.8417, 98.8546, 56.717159271240234], [30.2028, 115.0767, 28.91781234741211], [27.8667, 113.167, -4.858445167541504], [34.5885, 119.176, 94.46368408203125], [23.6936, 113.0425, 47.61050796508789], [35.0992, 117.4518, 54.13324737548828], [29.5467, 103.7705, 14.58605670928955], [35.4934, 112.835, -16.707719802856445], [28.2403, 117.0281, 50.86606216430664], [43.95305556, 126.4738889, 75.67655181884766], [28.0089, 120.634, 43.201515197753906], [21.6533, 110.9294, 63.606788635253906], [31.1208, 104.4219, 0.08726919442415237], [29.355, 113.2117, 2.0228445529937744], [35.7289, 107.6831, 38.14605712890625], [31.3019, 120.591, 77.4133529663086], [34.4286, 115.6697, 14.493635177612305], [30.6347, 105.8161, -16.975736618041992], [24.44583333, 118.0636111, 43.80975341796875], [41.2736, 123.1761, 95.90833282470703], [32.1083, 118.803, 79.35228729248047], [35.0611, 111.0233, 10.799437522888184], [27.8614, 112.9433, -6.499861240386963], [35.4883, 112.8564, -16.940675735473633], [47.3386, 123.9305, 82.25286865234375], [26.8956, 112.6211, -1.5943217277526855], [29.077, 119.647, 58.657562255859375], [37.0172, 105.18, -7.028047561645508], [22.9539, 112.0539, 54.004638671875], [30.1259, 104.6294, -0.7053274512290955], [26.6611, 119.5392, 33.960121154785156], [24.5157, 117.6569, 44.25531768798828], [36.9639, 100.9048, 1.2497100830078125], [40.9359, 117.963, 84.03361511230469], [37.393, 117.9776, 58.01933670043945], [44.8969, 82.0806, 169.0507049560547], [46.0703, 122.0506, 71.72576141357422], [31.8585, 117.336, 56.77923583984375], [36.5767, 109.4824, 44.45589065551758], [33.721, 113.322, 0.3822353184223175], [32.5, 80.1161, 180.15257263183594], [37.739, 115.6906, -8.704618453979492], [36.6028, 109.4761, 44.443790435791016], [27.5444, 109.9453, -12.855209350585938], [21.9508, 108.6553, 58.90626907348633], [29.3411, 104.7692, 3.61840558052063], [28.0797, 116.2239, 37.770240783691406], [36.61981, 114.4965, -19.97504997253418], [32.0723, 118.778, 78.91842651367188], [28.9026, 105.4436, 0.16224855184555054], [26.2081, 111.6217, 3.0336921215057373], [42.9409, 89.191, 103.63706970214844], [30.0911, 120.598, 65.0146713256836], [34.3017, 107.0708, 26.42432403564453], [40.8033, 111.658, 30.868915557861328], [33.0122, 112.5224, 11.314416885375977], [26.9258, 112.6194, -1.879921793937683], [28.2675, 109.6958, -18.59431266784668], [31.422, 121.14, 78.11034393310547], [32.105, 118.907, 80.39820861816406], [30.6872, 104.176, 3.5690877437591553], [40.8367, 114.8985, 37.78418731689453], [43.55, 125.633, 76.43966674804688], [30.2756, 118.1371, 70.86602020263672], [41.9419, 126.4078, 84.56290435791016], [32.4285, 105.8624, -9.822171211242676], [35.5997, 103.2064, -12.854476928710938], [41.8336, 123.542, 88.89053344726562], [36.1542, 113.1097, -15.498984336853027], [41.1442, 123.0485, 97.45335388183594], [29.2786, 117.1983, 60.24755859375], [39.643, 118.144, 82.09855651855469], [23.1572, 112.885, 54.01841735839844], [29.6219, 106.65, -18.809314727783203], [41.8472, 123.428, 88.93609619140625], [30.7946, 120.744, 71.84479522705078], [25.0661, 117.0256, 43.74380111694336], [33.0014, 97.0, 38.916351318359375], [31.89708, 121.1518, 83.11992645263672], [24.428, 98.5842, 60.73735427856445], [39.1067, 117.1941, 48.166744232177734], [40.1461, 124.3933, 101.86296844482422], [30.2456, 120.127, 68.30174255371094], [22.5908, 114.263, 61.432796478271484], [29.7128, 118.3057, 69.99930572509766], [44.0114, 87.2997, 124.71322631835938], [32.4535, 105.8945, -9.79555892944336], [24.7121, 108.2134, 30.588207244873047], [30.4519, 114.8858, 25.837757110595703], [39.7153, 76.1861, 205.38926696777344], [24.3702, 102.5389, 53.920528411865234], [27.8381, 113.143, -4.918924331665039], [31.7133, 118.6439, 76.16083526611328], [37.9097, 114.3541, -9.753567695617676], [44.3336, 84.8983, 145.34445190429688], [42.2725, 118.9572, 78.94538116455078], [29.36028, 104.7778, 3.2813501358032227], [25.442, 119.0156, 37.52009582519531], [31.2036, 121.478, 74.8499526977539], [38.8394, 117.457, 51.87995910644531], [24.4175, 111.5269, 30.800548553466797], [37.177, 119.941, 113.54386901855469], [30.2819, 109.4689, -11.918368339538574], [38.5061, 102.1708, 4.218999862670898], [39.6719, 106.8219, 14.939641952514648], [43.84, 125.2786, 74.92466735839844], [32.9444, 117.3575, 55.36790084838867], [22.4137, 107.3476, 54.98149490356445], [36.1855, 113.0844444, -14.956303596496582], [34.5004, 109.5049, 35.060604095458984], [31.56, 120.294, 80.14733123779297], [32.0144, 118.777, 78.6768569946289], [40.8115, 114.8814, 37.32313919067383], [29.9972, 101.9533, 32.30438995361328], [35.5102, 102.0199, -8.357988357543945], [37.8561, 113.5922, -5.674571514129639], [34.3708, 107.1586, 28.68552589416504], [23.4168, 103.386, 54.7977294921875], [37.4489, 116.3189, -0.6784218549728394], [35.0147, 110.9956, 11.25465202331543], [29.8264, 106.424, -18.907150268554688], [34.7545, 113.681, -14.340057373046875], [23.6706, 116.6447, 50.88621520996094], [36.3083, 120.1964, 116.81852722167969], [30.8388, 106.1087, -19.263975143432617], [43.8667, 125.417, 74.94493865966797], [27.9883, 116.3553, 39.3520622253418], [39.9419, 119.5369, 100.56686401367188], [33.8399, 115.8067, 25.51673698425293], [30.2099, 115.0264, 28.193449020385742], [33.737, 113.182, 0.20220285654067993], [27.9164, 112.4876, -9.586031913757324], [27.8036, 114.3442, 8.121899604797363], [26.57098, 101.68912, 50.27662658691406], [22.2294, 113.495, 63.788822174072266], [38.44139, 106.2275, 6.860368728637695], [24.6967, 108.1009, 31.2238712310791], [25.0836, 102.728, 51.78941345214844], [24.9624, 102.625, 52.35181427001953], [31.1278, 97.1804, 47.760093688964844], [38.5247, 102.1878, 4.28300142288208], [31.381, 120.999, 77.83387756347656], [28.4569, 118.0058, 57.713478088378906], [32.1142, 112.1825, 15.511160850524902], [34.3617, 108.7233, 40.22734069824219], [23.8982, 100.0782, 58.81547164916992], [41.1636, 80.2828, 170.2268829345703], [32.6028, 116.8556, 46.583438873291016], [36.1942, 117.1436, 33.45417785644531], [37.0967, 114.4821, -16.664653778076172], [38.817, 106.3394, 9.051057815551758], [32.9673, 117.3536, 55.30093765258789], [30.4576, 106.6303, -21.401968002319336], [30.6197, 114.2836, 19.584041595458984], [41.1556, 122.0247, 98.58804321289062], [38.9194, 117.157, 44.06822967529297], [39.9522, 116.434, 43.1174201965332], [36.087, 114.358, -22.363388061523438], [43.7256, 126.6772, 76.22270965576172], [40.6532, 109.8756, 30.3570613861084], [24.9617, 118.6108, 40.30607223510742], [36.792, 119.952, 114.25389862060547], [29.5953, 105.0331, -2.678194046020508], [31.2472, 120.561, 76.91828155517578], [30.1506, 104.6356, -0.9077584147453308], [33.1842, 106.9893, 7.5758161544799805], [36.0875, 111.5025, 8.767523765563965], [31.8934, 102.2402, 20.4536190032959], [24.8978, 118.5972, 40.571895599365234], [22.8561, 108.316, 51.03916549682617], [27.8336, 113.251, -4.038193702697754], [31.2703, 120.613, 77.06238555908203], [35.303, 113.883, -19.608137130737305], [39.3673, 112.4279, 22.138423919677734], [32.6389, 110.7258, 21.967975616455078], [38.1398, 114.5019, -7.770337104797363], [26.6272, 118.1756, 41.33668518066406], [33.6284, 116.9677, 48.85942840576172], [33.965, 118.283, 76.04844665527344], [36.7339, 119.0841, 95.39932250976562], [37.9358, 102.6469, -2.8865506649017334], [41.7089, 123.439, 90.58198547363281], [22.7906, 108.439, 51.63083267211914], [43.8358, 126.5844, 75.96617126464844], [31.882, 120.55, 83.18803405761719], [41.8828, 123.9169, 88.04485321044922], [31.656, 120.734, 80.82274627685547], [34.5667, 117.732, 64.13031005859375], [45.61, 126.615, 77.05170440673828], [29.5983, 106.296, -16.481504440307617], [45.7258, 126.646, 77.519775390625], [33.575, 119.007, 87.412109375], [23.08, 114.4053, 58.10641098022461], [28.5819, 112.3744, -10.907377243041992], [43.9167, 125.323, 74.67379760742188], [22.5811, 113.074, 60.40908432006836], [38.843, 105.6975, 4.800225734710693], [27.6178, 113.865, 2.665343999862671], [30.4551, 106.6388, -21.427326202392578], [23.01277778, 113.7944444, 58.00666046142578], [30.8244, 120.07, 74.0782699584961], [34.3547, 107.1431, 28.270566940307617], [36.6739, 117.114, 27.830310821533203], [22.8693, 112.844, 56.808658599853516], [23.7233, 114.6892, 53.18671417236328], [25.3167, 110.4144, 15.86568546295166], [28.6459, 121.273, 47.17929458618164], [26.8919, 112.6006, -1.6657395362854004], [33.0323, 107.007, 5.383431434631348], [30.0475, 101.9603, 31.91887092590332], [30.7636, 106.0642, -19.000431060791016], [35.259, 113.1992, -18.551115036010742], [32.2786, 118.3244, 72.55555725097656], [36.1758, 117.1081, 32.46709442138672], [22.735, 108.328, 52.22250747680664], [22.3708, 107.3701, 55.282379150390625], [27.3125, 105.2864, 23.25360679626465], [33.567, 114.056, 4.439457893371582], [34.3528, 107.3906, 32.54241943359375], [38.8343, 105.6775, 4.629788875579834], [36.283, 120.008, 114.29414367675781], [34.7745, 117.5852, 59.5463752746582], [23.2783, 113.568, 54.770103454589844], [33.3261, 105.0822, -4.5164361000061035], [36.6377, 117.9544, 58.36134338378906], [26.5689, 106.6971, 18.196548461914062], [43.768, 87.6046, 120.89996337890625], [41.7561, 123.535, 89.78659057617188], [41.0228, 123.1289, 98.43888854980469], [27.8014, 114.3806, 8.639517784118652], [44.561, 129.61, 79.54777526855469], [29.9919, 120.605, 63.998538970947266], [37.4658, 118.5019, 77.2528076171875], [25.8333, 114.9322, 27.596378326416016], [23.9011, 106.6103, 45.277198791503906], [38.2839, 109.7289, 40.95956039428711], [45.6033, 84.8861, 152.6291961669922], [30.9447, 118.7581, 75.92649841308594], [25.2178, 110.2869, 17.396352767944336], [26.2378, 117.6028, 40.68678665161133], [22.8172, 114.3244, 60.00431442260742], [40.1194, 124.3678, 102.13655090332031], [41.9086, 123.5953, 88.00458526611328], [31.238, 121.4, 75.38214874267578], [26.5697, 106.7164, 18.014842987060547], [22.7833, 108.244, 51.78306579589844], [40.7866, 111.551, 30.943885803222656], [31.7039, 119.935, 81.92256927490234], [45.5422, 126.979, 77.5035629272461], [19.9507, 110.576, 73.32119750976562], [30.6414, 114.2131, 19.040884017944336], [37.9311, 102.6219, -2.801954984664917], [39.3606, 112.4549, 21.80772590637207], [46.8267, 130.3961, 92.31877899169922], [35.94, 104.148, -14.627115249633789], [29.4892, 106.634, -17.767494201660156], [23.1422, 113.235, 55.135841369628906], [23.06, 113.7480556, 57.41978454589844], [29.1128, 119.6533, 59.005985260009766], [36.2092, 117.7181, 52.89952087402344], [27.7044, 111.9892, -11.266518592834473], [31.87888889, 106.7513889, -16.097034454345703], [29.2313, 91.7608, 78.5976791381836], [34.5814, 105.7281, -0.5785489082336426], [35.7511, 114.2956, -21.462846755981445], [47.8515, 88.1267, 145.7258758544922], [37.9723, 106.196, 5.081615447998047], [38.8632, 115.493, 4.6838531494140625], [23.8844, 106.6527, 45.258724212646484], [39.1495, 117.3916, 54.65038299560547], [36.2403, 120.6659, 120.09518432617188], [39.1292, 106.7096, 12.612711906433105], [38.01777778, 114.5330556, -9.280900001525879], [32.1383, 114.0614, 14.848434448242188], [31.8572, 117.25, 55.550193786621094], [24.9117, 118.5819, 40.55397415161133], [28.4622, 117.9511, 57.815460205078125], [32.8928, 115.8275, 29.348709106445312], [25.067, 102.681, 51.941593170166016], [24.3289, 116.1278, 47.97025680541992], [28.6969, 115.973, 38.846797943115234], [28.1178, 112.9844, -7.066776752471924], [44.3075, 86.0697, 135.98880004882812], [28.7867, 104.6061, 12.523721694946289], [38.0108, 112.434, 7.989808082580566], [29.4251, 113.1493, 2.2059848308563232], [36.6868, 117.0684, 26.151071548461914], [45.7319, 126.685, 77.61417388916016], [34.8019, 113.675, -14.886795043945312], [28.4586, 119.93, 50.965152740478516], [21.2567, 110.4558, 65.56102752685547], [30.9285, 113.9153, 17.011585235595703], [32.0005, 120.86, 84.28162384033203], [29.6475, 91.0874, 82.85633850097656], [27.4948, 114.0944, 5.778711795806885], [42.0352, 119.2654, 82.78433227539062], [40.5546, 110.0377, 30.3626708984375], [29.6292, 91.0834, 82.951416015625], [40.0844, 113.2711, 23.79585075378418], [46.3991, 124.8847, 78.19750213623047], [27.6231, 113.8447, 2.4216041564941406], [27.6486, 106.8906, 1.4546234607696533], [31.92, 120.268, 83.40213012695312], [39.2133, 117.1837, 49.62202453613281], [23.4714, 116.7519, 51.81280517578125], [30.5489, 117.0486, 58.568824768066406], [31.4867, 120.269, 79.58056640625], [23.1331, 113.26, 55.302310943603516], [25.8226, 113.0116, 13.03299617767334], [36.61763, 114.5129, -20.021957397460938], [33.9461, 116.7844, 44.23853302001953], [27.7914, 114.3703, 8.514139175415039], [40.0181, 119.7624, 101.88433837890625], [43.8228, 126.4978, 75.91067504882812], [28.2558, 109.6414, -18.53925323486328], [25.9118, 114.9064, 26.4293212890625], [35.4894, 112.8664, -17.03594398498535], [34.3497, 107.2058, 29.352632522583008], [34.6511, 112.3939, -8.976614952087402], [28.7442, 115.813, 36.33756637573242], [26.9089, 112.5328, -2.159179210662842], [28.7994, 115.742, 35.40461730957031], [28.9703, 111.6975, -13.48840618133545], [36.1912, 113.1569, -15.669694900512695], [40.9161, 117.9664, 84.12371826171875], [34.7781, 114.3389, -11.167754173278809], [23.2536, 116.4019, 53.80351638793945], [47.3227, 123.9483, 82.18414306640625], [36.2403, 120.4001, 118.55896759033203], [27.9647, 116.385, 39.697906494140625], [30.7478, 120.726, 71.41810607910156], [24.81805556, 118.1569444, 41.81144332885742], [24.299, 109.4221, 32.148075103759766], [41.8469, 123.81, 88.47034454345703], [29.4822, 106.364, -15.99250316619873], [26.5017, 101.7453, 50.310142517089844], [31.8531, 106.7594, -16.31312370300293], [31.96, 120.913, 83.85371398925781], [29.6816, 115.9872, 43.420833587646484], [28.6839, 115.8886, 37.311031341552734], [26.0753, 119.315, 34.4263916015625], [42.8947, 125.1358, 80.19374084472656], [39.3514, 112.44, 21.847929000854492], [39.5343, 116.7464, 43.070892333984375], [31.0386, 112.2211, 12.948426246643066], [27.2272, 111.4328, -9.062556266784668], [26.585, 101.7169, 50.15447235107422], [38.9389, 100.4497, 17.218847274780273], [45.6175, 122.8211, 71.5955810546875], [41.7192, 86.2022, 122.98057556152344], [42.9559, 89.1673, 103.91015625], [29.3864, 117.3097, 61.98969650268555], [28.56, 112.3439, -11.13637924194336], [44.9079, 82.0485, 169.34738159179688], [44.5782, 129.6115, 79.60332489013672], [35.5975, 104.6169, -13.992837905883789], [38.8416, 115.4612, 3.969517707824707], [31.453, 121.115, 78.49344635009766], [37.7394, 112.5583, 3.792637586593628], [37.85, 113.5158, -5.0870161056518555], [36.061, 114.483, -21.728275299072266], [29.3678, 113.1772, 1.8474838733673096], [39.6295, 118.1997, 83.28972625732422], [36.0756, 103.712, -14.064892768859863], [31.7586, 119.996, 82.29022216796875], [35.7067, 107.6364, 37.672523498535156], [27.3361, 103.7225, 36.49385070800781], [23.0528, 112.471, 53.965965270996094], [22.75, 114.085, 60.609127044677734], [28.3169, 109.7325, -18.872875213623047], [26.8733, 112.6197, -1.4032769203186035], [34.4714, 100.2561, 6.595025062561035], [28.6064, 115.9083, 37.115665435791016], [43.91, 125.287, 74.66173553466797], [28.76389, 104.6417, 12.365884780883789], [41.7347, 123.2444, 90.7395248413086], [30.6133, 105.68, -15.559818267822266], [36.1939, 113.0972, -15.01919174194336], [40.1114, 113.2803, 24.131061553955078], [23.7106, 113.0208, 47.27623748779297], [41.7511, 86.1461, 123.5866928100586], [43.1594, 124.3711, 78.30186462402344], [25.8481, 114.9461, 27.55531120300293], [33.6406, 114.6369, 7.881873607635498], [29.4892, 106.468, -16.801620483398438], [23.5486, 116.3242, 52.26176452636719], [36.11, 114.286, -22.483654022216797], [23.1886, 112.863, 53.63336944580078], [43.8711, 87.5525, 121.90274810791016], [28.2642, 117.0564, 51.38212966918945], [23.4792, 111.2897, 44.955665588378906], [45.6289, 122.8444, 71.64181518554688], [47.2753, 130.261, 94.82333374023438], [40.7514, 120.8392, 101.8047103881836], [37.8694, 113.5689, -5.3333282470703125], [39.9716, 116.473, 44.411712646484375], [41.8625, 124.0383, 88.1241226196289], [31.2864, 120.628, 77.20184326171875], [28.4514, 119.914, 50.95433044433594], [36.6489, 116.943, 22.066381454467773], [38.8516, 105.724, 5.011508941650391], [40.0758, 113.2994, 23.542251586914062], [34.7975, 114.3733, -11.143584251403809], [30.9075, 113.942, 17.181394577026367], [28.9404, 118.871, 60.880271911621094], [36.10139, 111.505, 8.827069282531738], [25.1081, 99.1678, 57.53623962402344], [29.709, 106.452, -18.347219467163086], [36.67, 116.93, 21.401939392089844], [38.3344, 109.7414, 40.776798248291016], [41.1219, 121.2008, 98.90339660644531], [21.8586, 111.9786, 64.1010971069336], [31.6842, 120.288, 81.25145721435547], [40.6288, 109.8654, 30.299888610839844], [36.44, 120.61, 120.41043853759766], [35.0622, 118.2939, 76.16097259521484], [37.1013, 79.9117, 172.48367309570312], [34.5101, 109.5293, 34.83772277832031], [41.2553, 123.15, 96.13892364501953], [47.3636, 123.9305, 82.40449523925781], [37.4014, 121.5992, 122.39740753173828], [40.8062, 111.7277, 30.79094123840332], [37.5436, 121.3181, 121.44353485107422], [28.6542, 121.419, 46.62532043457031], [29.8211, 114.3231, 18.091806411743164], [40.7094, 122.2703, 102.77891540527344], [34.2324, 108.94, 37.881622314453125], [33.9528, 118.293, 76.20621490478516], [27.0983, 115.0075, 18.330120086669922], [34.429, 115.6558, 14.167963027954102], [34.2303, 108.883, 38.181278228759766], [25.1328, 99.1711, 57.48965072631836], [46.0756, 121.9462, 71.59247589111328], [22.7633, 100.98, 62.162967681884766], [23.1569, 113.281, 55.134700775146484], [26.5939, 104.89, 32.8587760925293], [31.7694, 120.0469, 82.30221557617188], [40.1438, 116.72, 53.16669464111328], [25.2697, 110.2819, 16.643600463867188], [34.1781, 117.1694, 52.07698440551758], [37.68277778, 112.7194444, 1.3315961360931396], [35.0896, 118.4023, 78.74650573730469], [29.2956, 117.2461, 60.871620178222656], [26.0392, 119.303, 34.54347610473633], [24.3694, 102.5778, 53.856658935546875], [36.1942, 117.0881, 31.60326385498047], [26.2708, 117.6353, 40.71561813354492], [37.5136, 111.1297, 24.786794662475586], [43.6267, 122.2603, 72.36056518554688], [30.89556, 120.0875, 74.71381378173828], [29.8686, 114.3372, 18.496334075927734], [22.7267, 114.24, 60.679141998291016], [27.8867, 113.095, -5.500122547149658], [30.8023, 106.0789, -19.08506202697754], [31.7712, 116.5661, 46.02674102783203], [46.7432, 82.9994, 172.40872192382812], [32.41361, 119.458, 86.55403137207031], [30.2043, 114.8949, 26.363052368164062]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#0014d7&quot;, &quot;0.05&quot;: &quot;#0014d7&quot;, &quot;0.1&quot;: &quot;#0014d7&quot;, &quot;0.15&quot;: &quot;#0014d7&quot;, &quot;0.2&quot;: &quot;#0014d7&quot;, &quot;0.25&quot;: &quot;#0014d7&quot;, &quot;0.3&quot;: &quot;#0014d7&quot;, &quot;0.35&quot;: &quot;#0014d7&quot;, &quot;0.4&quot;: &quot;#0014d7&quot;, &quot;0.45&quot;: &quot;#0014d7&quot;, &quot;0.5&quot;: &quot;#0028af&quot;, &quot;0.55&quot;: &quot;#0028af&quot;, &quot;0.6&quot;: &quot;#0028af&quot;, &quot;0.65&quot;: &quot;#0028af&quot;, &quot;0.7&quot;: &quot;#0028af&quot;, &quot;0.75&quot;: &quot;#0028af&quot;, &quot;0.8&quot;: &quot;#0028af&quot;, &quot;0.85&quot;: &quot;#0028af&quot;, &quot;0.9&quot;: &quot;#0028af&quot;, &quot;0.95&quot;: &quot;#0028af&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_7232645615bbf479b86c9c0c4c5db2ee.addTo(map_384b47b434b7ae772d54b932b1bfa80d);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1d9b7810e20>\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('coef_aod_sat', colors=[\\n\",\n    \"                         'blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Tp\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {\n    \"id\": \"6D07A57BA2E94E6F9C65D637B3FCD6F2\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_4c97d57db26bb76eb0097a2af94c8ecc {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_4c97d57db26bb76eb0097a2af94c8ecc&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_4c97d57db26bb76eb0097a2af94c8ecc = L.map(\\n\",\n       \"                &quot;map_4c97d57db26bb76eb0097a2af94c8ecc&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_49f4bbec1ebe24ae2372bd2ebc5542b2 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_49f4bbec1ebe24ae2372bd2ebc5542b2.addTo(map_4c97d57db26bb76eb0097a2af94c8ecc);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_2579f36570740ea87df36f19e1e672c1 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_2579f36570740ea87df36f19e1e672c1.color = d3.scale.threshold()\\n\",\n       \"              .domain([-134.84774780273438, -134.53651428222656, -134.22528076171875, -133.91404724121094, -133.60281372070312, -133.2915802001953, -132.9803466796875, -132.66912841796875, -132.35789489746094, -132.04666137695312, -131.7354278564453, -131.4241943359375, -131.1129608154297, -130.80172729492188, -130.49049377441406, -130.17926025390625, -129.86802673339844, -129.55679321289062, -129.2455596923828, -128.93434143066406, -128.62310791015625, -128.31187438964844, -128.00064086914062, -127.68940734863281, -127.378173828125, -127.06694030761719, -126.75570678710938, -126.44447326660156, -126.13323974609375, -125.82201385498047, -125.51078033447266, -125.19954681396484, -124.88831329345703, -124.57707977294922, -124.26585388183594, -123.95462036132812, -123.64338684082031, -123.3321533203125, -123.02091979980469, -122.70968627929688, -122.39845275878906, -122.08722686767578, -121.77599334716797, -121.46475982666016, -121.15352630615234, -120.84229278564453, -120.53105926513672, -120.21983337402344, -119.90859985351562, -119.59736633300781, -119.2861328125, -118.97489929199219, -118.66366577148438, -118.35243225097656, -118.04119873046875, -117.72997283935547, -117.41873931884766, -117.10750579833984, -116.79627227783203, -116.48504638671875, -116.17381286621094, -115.86257934570312, -115.55134582519531, -115.2401123046875, -114.92887878417969, -114.61764526367188, -114.3064193725586, -113.99518585205078, -113.68395233154297, -113.37271881103516, -113.06148529052734, -112.75025177001953, -112.43902587890625, -112.12779235839844, -111.81655883789062, -111.50532531738281, -111.194091796875, -110.88285827636719, -110.57162475585938, -110.26039123535156, -109.94916534423828, -109.63793182373047, -109.32669830322266, -109.01547241210938, -108.70423889160156, -108.39300537109375, -108.08177185058594, -107.77053833007812, -107.45930480957031, -107.1480712890625, -106.83683776855469, -106.5256118774414, -106.2143783569336, -105.90314483642578, -105.59191131591797, -105.28067779541016, -104.96945190429688, -104.65821838378906, -104.34698486328125, -104.03575134277344, -103.72451782226562, -103.41328430175781, -103.10205078125, -102.79081726074219, -102.4795913696289, -102.16835021972656, -101.85712432861328, -101.54589080810547, -101.23465728759766, -100.92343139648438, -100.61219787597656, -100.30096435546875, -99.98973083496094, -99.67849731445312, -99.36726379394531, -99.0560302734375, -98.74479675292969, -98.43356323242188, -98.1223373413086, -97.81110382080078, -97.4998779296875, -97.18864440917969, -96.87741088867188, -96.56617736816406, -96.25494384765625, -95.94371032714844, -95.63247680664062, -95.32124328613281, -95.010009765625, -94.69877624511719, -94.3875503540039, -94.0763168334961, -93.76509094238281, -93.45384979248047, -93.14262390136719, -92.83139038085938, -92.52015686035156, -92.20892333984375, -91.89768981933594, -91.58645629882812, -91.27522277832031, -90.9639892578125, -90.65275573730469, -90.3415298461914, -90.0302963256836, -89.71906280517578, -89.4078369140625, -89.09660339355469, -88.78536987304688, -88.47413635253906, -88.16290283203125, -87.85166931152344, -87.54043579101562, -87.22920227050781, -86.91796875, -86.60674285888672, -86.2955093383789, -85.98428344726562, -85.67304229736328, -85.36181640625, -85.05058288574219, -84.73934936523438, -84.42811584472656, -84.11688232421875, -83.80564880371094, -83.49441528320312, -83.18318939208984, -82.8719482421875, -82.56072235107422, -82.2494888305664, -81.9382553100586, -81.62702941894531, -81.3157958984375, -81.00456237792969, -80.69332885742188, -80.38209533691406, -80.07086181640625, -79.75962829589844, -79.44839477539062, -79.13716125488281, -78.82593536376953, -78.51470184326172, -78.20347595214844, -77.89224243164062, -77.58100891113281, -77.269775390625, -76.95854187011719, -76.64730834960938, -76.33607482910156, -76.02484130859375, -75.71360778808594, -75.40238189697266, -75.09114837646484, -74.7799072265625, -74.46868133544922, -74.1574478149414, -73.84622192382812, -73.53498840332031, -73.2237548828125, -72.91252136230469, -72.60128784179688, -72.29005432128906, -71.97882080078125, -71.66758728027344, -71.35635375976562, -71.04512786865234, -70.73389434814453, -70.42266082763672, -70.11143493652344, -69.80020141601562, -69.48896026611328, -69.177734375, -68.86650085449219, -68.5552749633789, -68.24403381347656, -67.93280029296875, -67.62156677246094, -67.31033325195312, -66.99910736083984, -66.68787384033203, -66.37664031982422, -66.0654067993164, -65.75418090820312, -65.44294738769531, -65.1317138671875, -64.82048034667969, -64.50924682617188, -64.1980209350586, -63.88678741455078, -63.57555389404297, -63.264320373535156, -62.953086853027344, -62.64185333251953, -62.33061981201172, -62.019386291503906, -61.708152770996094, -61.39692687988281, -61.085693359375, -60.77445983886719, -60.463226318359375, -60.152000427246094, -59.84076690673828, -59.52953338623047, -59.218299865722656, -58.907066345214844, -58.59584045410156, -58.28460693359375, -57.97337341308594, -57.662132263183594, -57.35089874267578, -57.0396728515625, -56.72843933105469, -56.417205810546875, -56.10597229003906, -55.79474639892578, -55.48351287841797, -55.172279357910156, -54.861045837402344, -54.54981231689453, -54.23858642578125, -53.92735290527344, -53.616119384765625, -53.30488586425781, -52.99365997314453, -52.68242645263672, -52.371185302734375, -52.05995178222656, -51.74871826171875, -51.43749237060547, -51.126258850097656, -50.815025329589844, -50.50379180908203, -50.19256591796875, -49.88133239746094, -49.570098876953125, -49.25886535644531, -48.9476318359375, -48.63640594482422, -48.325172424316406, -48.013938903808594, -47.70270538330078, -47.3914794921875, -47.080238342285156, -46.769004821777344, -46.45777130126953, -46.14653778076172, -45.83531188964844, -45.524078369140625, -45.21284484863281, -44.901611328125, -44.59037780761719, -44.279151916503906, -43.967918395996094, -43.65668487548828, -43.34545135498047, -43.03422546386719, -42.722991943359375, -42.41175842285156, -42.10052490234375, -41.789283752441406, -41.478057861328125, -41.16682434082031, -40.8555908203125, -40.54435729980469, -40.233131408691406, -39.921897888183594, -39.61066436767578, -39.29943084716797, -38.988197326660156, -38.676971435546875, -38.36573791503906, -38.05450439453125, -37.74327087402344, -37.432044982910156, -37.120811462402344, -36.80957794189453, -36.49833679199219, -36.187103271484375, -35.875877380371094, -35.56464385986328, -35.25341033935547, -34.942176818847656, -34.630943298339844, -34.31971740722656, -34.00848388671875, -33.69725036621094, -33.386016845703125, -33.074790954589844, -32.76355743408203, -32.45232391357422, -32.141090393066406, -31.829856872558594, -31.518630981445312, -31.20738983154297, -30.896156311035156, -30.584922790527344, -30.273696899414062, -29.96246337890625, -29.651229858398438, -29.339996337890625, -29.028762817382812, -28.71753692626953, -28.40630340576172, -28.095069885253906, -27.783836364746094, -27.472610473632812, -27.161376953125, -26.850143432617188, -26.538909912109375, -26.227676391601562, -25.91644287109375, -25.605209350585938, -25.293975830078125, -24.982742309570312, -24.6715087890625, -24.36028289794922, -24.049049377441406, -23.737815856933594, -23.42658233642578, -23.1153564453125, -22.804122924804688, -22.492889404296875, -22.181655883789062, -21.87042236328125, -21.55919647216797, -21.247962951660156, -20.936729431152344, -20.62548828125, -20.31426239013672, -20.003028869628906, -19.691795349121094, -19.38056182861328, -19.06932830810547, -18.758102416992188, -18.446868896484375, -18.135635375976562, -17.82440185546875, -17.51317596435547, -17.201942443847656, -16.890708923339844, -16.57947540283203, -16.26824188232422, -15.957015991210938, -15.645782470703125, -15.334548950195312, -15.023307800292969, -14.712074279785156, -14.400848388671875, -14.089614868164062, -13.77838134765625, -13.467147827148438, -13.155921936035156, -12.844688415527344, -12.533454895019531, -12.222221374511719, -11.910987854003906, -11.599761962890625, -11.288528442382812, -10.977294921875, -10.666061401367188, -10.354835510253906, -10.043601989746094, -9.73236083984375, -9.421127319335938, -9.109893798828125, -8.798667907714844, -8.487434387207031, -8.176200866699219, -7.864967346191406, -7.553741455078125, -7.2425079345703125, -6.9312744140625, -6.6200408935546875, -6.308807373046875, -5.9975738525390625, -5.68634033203125, -5.3751220703125, -5.0638885498046875, -4.752655029296875, -4.44140625, -4.1301727294921875, -3.8189544677734375, -3.507720947265625, -3.1964874267578125, -2.88525390625, -2.57403564453125, -2.2628021240234375, -1.9515533447265625, -1.64031982421875, -1.3290863037109375, -1.017852783203125, -0.7066192626953125, -0.3953857421875, -0.0841522216796875, 0.227081298828125, 0.538299560546875, 0.8495330810546875, 1.1607666015625, 1.4720001220703125, 1.783233642578125, 2.0944671630859375, 2.40570068359375, 2.7169342041015625, 3.028167724609375, 3.339385986328125, 3.6506195068359375, 3.96185302734375, 4.2730865478515625, 4.584320068359375, 4.8955535888671875, 5.206787109375, 5.5180206298828125, 5.829254150390625, 6.140472412109375, 6.4517059326171875, 6.762939453125, 7.0741729736328125, 7.385406494140625, 7.6966400146484375, 8.00787353515625, 8.319107055664062, 8.630355834960938, 8.941574096679688, 9.2528076171875, 9.564041137695312, 9.875274658203125, 10.186508178710938, 10.49774169921875, 10.808975219726562, 11.120208740234375, 11.431442260742188, 11.742660522460938, 12.05389404296875, 12.365127563476562, 12.676361083984375, 12.987594604492188, 13.298828125, 13.610061645507812, 13.921295166015625, 14.232528686523438, 14.543746948242188, 14.85498046875, 15.166213989257812, 15.477447509765625, 15.788681030273438, 16.09991455078125, 16.411148071289062, 16.722381591796875, 17.033615112304688, 17.344833374023438, 17.65606689453125, 17.967300415039062, 18.278533935546875, 18.589767456054688, 18.9010009765625, 19.212249755859375, 19.523483276367188, 19.834716796875, 20.145950317382812, 20.457168579101562])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_2579f36570740ea87df36f19e1e672c1.x = d3.scale.linear()\\n\",\n       \"              .domain([-134.84774780273438, 20.457168579101562])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_2579f36570740ea87df36f19e1e672c1.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_2579f36570740ea87df36f19e1e672c1.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_2579f36570740ea87df36f19e1e672c1.legend.addTo(map_4c97d57db26bb76eb0097a2af94c8ecc);\\n\",\n       \"\\n\",\n       \"    color_map_2579f36570740ea87df36f19e1e672c1.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_2579f36570740ea87df36f19e1e672c1.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-134.84774780273438, &#x27;&#x27;, &#x27;&#x27;, -111.55200958251953, &#x27;&#x27;, &#x27;&#x27;, -88.25627136230469, &#x27;&#x27;, &#x27;&#x27;, -64.96053314208984, &#x27;&#x27;, &#x27;&#x27;, -41.66480255126953, &#x27;&#x27;, &#x27;&#x27;, -18.369064331054688, &#x27;&#x27;, &#x27;&#x27;, 4.9266815185546875, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_2579f36570740ea87df36f19e1e672c1.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_2579f36570740ea87df36f19e1e672c1.g = color_map_2579f36570740ea87df36f19e1e672c1.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_2579f36570740ea87df36f19e1e672c1.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_2579f36570740ea87df36f19e1e672c1.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_2579f36570740ea87df36f19e1e672c1.x(color_map_2579f36570740ea87df36f19e1e672c1.color.domain()[i - 1]) : color_map_2579f36570740ea87df36f19e1e672c1.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_2579f36570740ea87df36f19e1e672c1.color.domain().length ? color_map_2579f36570740ea87df36f19e1e672c1.x(color_map_2579f36570740ea87df36f19e1e672c1.color.domain()[i]) : color_map_2579f36570740ea87df36f19e1e672c1.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_2579f36570740ea87df36f19e1e672c1.g.call(color_map_2579f36570740ea87df36f19e1e672c1.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_5ed985c8741d98fbb0e83b48e839824a = L.heatLayer(\\n\",\n       \"                [[28.4303, 117.9033, -9.318747520446777], [31.1654, 121.412, 14.500407218933105], [23.4794, 111.26, 13.063983917236328], [34.7772, 111.1928, -34.5831184387207], [43.8748, 125.3649, 0.8738745450973511], [36.838, 118.0448, 9.136590957641602], [26.5506, 104.9544, 13.459149360656738], [43.9317, 116.1042, 2.113692283630371], [25.0925, 104.9022, 19.1115665435791], [36.885, 120.515, 13.602526664733887], [41.1386, 121.1303, 9.56802749633789], [25.4552, 119.0018, 6.169365406036377], [50.4217, 124.1303, -51.26609420776367], [33.739, 113.292, -28.41763687133789], [25.8664, 114.9367, 6.822066783905029], [22.8054, 113.292, 4.817009925842285], [29.8272, 106.379, 0.08679340034723282], [32.0314, 118.803, -11.625085830688477], [28.2325, 113.0833, 3.32841157913208], [31.896, 121.173, 12.330568313598633], [35.428, 116.6305, 7.441925525665283], [29.389, 106.513, 2.546320676803589], [33.975, 116.8008, -1.1147640943527222], [31.3097, 120.669, 8.237831115722656], [32.625, 116.7039, -16.142072677612305], [39.8261, 109.9486, -7.149984359741211], [37.4664, 116.3061, -1.2245392799377441], [40.9923, 113.1306, -4.7130045890808105], [39.6407, 118.1853, 4.065314769744873], [42.2217, 123.7153, 11.062292098999023], [34.1978, 108.985, -40.159793853759766], [31.3839, 118.4022, -19.00958824157715], [31.03389, 112.1908, -33.4494514465332], [27.6442, 113.8686, 5.769479274749756], [29.3578, 113.1094, -11.719338417053223], [29.5947, 105.0717, 0.6180423498153687], [37.7019, 112.7549, -19.852943420410156], [37.0533, 114.5261, -14.173701286315918], [22.2281, 113.299, 1.6081725358963013], [39.7294, 98.5023, 7.078928470611572], [41.615, 120.3939, 7.970075607299805], [39.3179, 112.4254, -13.81827163696289], [24.9424, 118.6663, 3.484433650970459], [40.6575, 109.8104, -1.714586853981018], [32.02, 120.87, 9.992040634155273], [28.6844, 115.893, -13.406830787658691], [39.5747, 116.7729, 0.878076434135437], [42.8939, 129.4892, -4.966402530670166], [38.3254, 116.8584, 1.4638032913208008], [28.5773, 121.377, 16.698135375976562], [39.0511, 121.7769, 13.880735397338867], [30.6539, 117.4974, -26.13180923461914], [36.2866, 100.6188, 4.671908855438232], [45.9819, 126.6106, -20.594690322875977], [45.2978, 130.9298, -28.196155548095703], [23.7569, 114.6778, 3.346994161605835], [27.9119, 112.9074, 6.5701003074646], [24.8885, 102.821, 20.354656219482422], [29.5844, 103.7627, 2.1677918434143066], [24.769519, 113.586606, 9.248726844787598], [41.5672, 120.4486, 8.091002464294434], [39.7884, 109.9734, -7.433866500854492], [27.8328, 114.9289, -0.48556002974510193], [32.3761, 119.389, -4.035719871520996], [25.7054, 100.1542, 17.55752182006836], [29.3628, 104.7547, 1.5925359725952148], [24.3663, 109.3957, 17.73527717590332], [31.215, 107.525, -10.828664779663086], [35.76806, 115.0061, -6.732710361480713], [26.3003, 106.805, 13.891268730163574], [34.6972, 119.3581, 7.30881404876709], [30.6463, 111.3549, -28.324880599975586], [30.2366, 119.7183, -1.8759769201278687], [27.3392, 103.7032, 12.3997220993042], [33.8997, 116.8067, -2.05829119682312], [33.5981, 119.036, 0.7475242614746094], [37.0964, 114.5331, -14.202588081359863], [37.7575, 115.6951, -7.115238189697266], [22.5211, 113.3769, 3.0092973709106445], [22.6411, 110.1675, 13.239614486694336], [38.3228, 116.8709, 1.5075045824050903], [25.8471, 114.8905, 6.973208904266357], [35.04388889, 111.0522222, -33.57239532470703], [33.9953, 113.7906, -23.4156494140625], [23.7586, 114.6944, 3.3010525703430176], [45.6842, 126.6206, -18.069345474243164], [38.8957, 115.5223, -5.801514625549316], [40.715, 120.8478, 9.571751594543457], [39.6969, 106.8089, 6.244747638702393], [23.5353, 116.3697, -0.844488263130188], [39.746, 98.509, 7.079243183135986], [36.7008, 119.1425, 9.802440643310547], [43.8694, 125.325, 0.9823148250579834], [42.0228, 121.6722, 9.477718353271484], [23.0672, 109.6042, 15.739399909973145], [30.5947, 114.3008, -27.14855194091797], [23.475, 111.3178, 12.906256675720215], [27.6869, 106.9222, 10.885080337524414], [34.1546, 108.906, -40.16399002075195], [36.8041, 117.8512, 8.793928146362305], [23.0916, 113.348, 5.819540977478027], [32.6319, 116.8306, -15.972041130065918], [32.4867, 119.9, 1.6636371612548828], [30.1366, 104.6617, -1.3234925270080566], [24.4072, 111.5622, 14.601164817810059], [31.7618, 116.478, -22.675884246826172], [41.2692, 123.7989, 13.291892051696777], [42.0503, 121.6972, 9.50054931640625], [38.2478, 109.7336, -12.273224830627441], [34.6575, 109.2, -37.234039306640625], [39.79777778, 98.26722222, 6.2657880783081055], [25.5035, 103.7897, 19.088577270507812], [35.763, 115.031, -6.535163879394531], [39.9425, 116.361, 0.26227664947509766], [34.3739, 107.1186, -23.154788970947266], [30.2352, 115.0625, -24.21837043762207], [44.1756, 87.5475, -58.43682098388672], [40.2865, 116.17, -0.07925643026828766], [36.1851, 120.3905, 12.867483139038086], [36.0417, 111.4917, -27.59898567199707], [39.0153, 106.3717, 5.8978495597839355], [36.6867, 101.524, 7.081874370574951], [35.213, 113.227, -20.73516273498535], [24.506, 117.7116, 2.028440237045288], [47.203, 123.6261, -24.101085662841797], [46.0347, 124.8354, -16.593358993530273], [35.0697, 109.0697, -32.793212890625], [34.3622, 107.2386, -24.672191619873047], [35.7306, 114.2878, -12.271153450012207], [44.5952, 129.5902, -17.986162185668945], [23.3667, 116.6794, -2.065229654312134], [34.7837, 117.2852, 8.252886772155762], [31.155, 120.636, 7.932779312133789], [30.4742, 114.9028, -25.063819885253906], [41.3047, 123.7308, 13.148165702819824], [28.8558, 105.4322, 3.8810884952545166], [36.71, 117.541, 8.365006446838379], [32.6494, 110.78, -40.6029167175293], [31.8516, 117.124, -22.27243995666504], [30.5797, 105.7519, -3.288783550262451], [38.9467, 100.4686, 11.387063026428223], [39.617, 122.011, 12.914969444274902], [28.6428, 112.4067, 1.0022718906402588], [31.2659, 121.536, 15.404163360595703], [39.5178, 116.6838, 0.5512564182281494], [28.7989, 104.6789, 3.716761589050293], [31.5072, 104.7283, -4.8812971115112305], [34.6869, 112.4831, -27.750192642211914], [31.388, 120.953, 10.694754600524902], [30.475, 105.5956, -2.904416561126709], [41.3283, 123.8436, 13.179442405700684], [26.3108, 117.7275, 5.375829219818115], [22.7629, 113.257, 4.740720748901367], [32.645, 117.0083, -15.532443046569824], [22.8225, 108.321, 17.4956111907959], [40.3937, 116.644, 0.9368943572044373], [46.0872, 85.6931, -77.82879638671875], [30.8596, 120.1844, 3.2067337036132812], [31.1333, 104.3883, -3.9584858417510986], [27.9939, 120.677, 14.999672889709473], [37.187, 122.019, 17.46707534790039], [29.8633, 121.586, 16.71725082397461], [39.65782, 118.1838, 4.049654006958008], [34.6869, 112.4664, -27.844295501708984], [40.6592, 122.2414, 11.637862205505371], [39.8673, 116.366, 0.16830816864967346], [34.493, 109.4636, -39.04264450073242], [40.8144, 111.608, -4.413316249847412], [28.095, 116.9622, -9.45715045928955], [22.9477, 113.352, 5.256761074066162], [27.5342, 109.9792, 13.238907814025879], [31.874, 120.526, 7.08839750289917], [36.2289, 117.6789, 10.5150728225708], [28.0005, 116.3574, -7.687991619110107], [41.1196, 123.044, 12.559253692626953], [29.6588, 90.9798, -20.313018798828125], [23.0528, 114.4183, 1.6893855333328247], [50.4269, 124.1186, -51.288936614990234], [30.6578, 104.054, -2.4113080501556396], [31.6928, 118.48, -16.879209518432617], [46.6384, 126.9934, -26.69724464416504], [27.3033, 111.5239, 13.002690315246582], [31.8711, 106.7389, -10.336246490478516], [37.154, 122.471, 18.281639099121094], [48.4658, 129.4942, -47.85856628417969], [41.0781, 121.0986, 9.614795684814453], [28.1442, 112.9956, 4.449398040771484], [40.7608, 107.4211, 8.055368423461914], [37.4314, 118.6672, 8.2406644821167], [43.8947, 126.5786, -1.942848801612854], [23.63444, 113.0472, 8.357549667358398], [37.4442, 118.5857, 8.110279083251953], [25.8179, 113.0119, 13.315196990966797], [23.105, 113.261, 6.132380962371826], [32.0417, 120.81, 9.526311874389648], [23.0786, 112.4722, 8.587018013000488], [31.2071, 121.577, 15.731935501098633], [37.8195, 112.57, -19.9414119720459], [32.0564, 112.1392, -37.17030715942383], [38.95111111, 121.565, 13.753110885620117], [43.1747, 124.3419, 6.579423427581787], [29.7534, 116.0726, -23.54728889465332], [39.9279, 116.225, -0.24528838694095612], [31.6411, 118.4828, -17.104169845581055], [36.5481, 104.1731, 7.280465602874756], [35.0994, 109.0656, -32.45633316040039], [23.2539, 116.6092, -2.3950870037078857], [31.3708, 120.641, 7.962539196014404], [34.7187, 113.727, -19.115947723388672], [36.497, 117.8477, 9.966455459594727], [27.8094, 102.3419, 13.013386726379395], [43.8303, 87.5801, -56.86167526245117], [27.6428, 113.8381, 5.888805866241455], [31.5631, 120.245, 4.189639568328857], [29.41569, 106.5506, 2.4596967697143555], [32.0197, 112.155, -37.08679962158203], [26.5747, 107.9783, 14.675460815429688], [28.76611, 104.6225, 3.8556480407714844], [27.8036, 114.9314, -0.2459011673927307], [21.9667, 108.6236, 14.04909896850586], [29.1456, 111.7158, -3.4070470333099365], [24.2654, 116.1248, 1.316737174987793], [49.2261, 119.7594, -34.96532440185547], [32.8603, 115.8556, -16.568742752075195], [27.9958, 113.1817, 5.179736614227295], [28.6869, 115.852, -13.270923614501953], [30.3055, 112.2887, -25.82012176513672], [46.7588, 130.3794, -37.58354187011719], [32.965, 114.018, -27.51018714904785], [22.5328, 113.024, 4.497642517089844], [36.6114, 116.988, 6.723407745361328], [32.996, 113.996, -27.51513671875], [31.354, 119.818, -0.871346116065979], [38.0513, 114.4548, -14.806571006774902], [42.8775, 129.3675, -4.3293561935424805], [26.6946, 119.5001, 11.89904499053955], [33.627, 119.0122, 0.8856422901153564], [28.4231, 119.879, 9.83599853515625], [29.635, 119.026, -8.485050201416016], [31.7275, 113.3583, -32.94100570678711], [41.5647, 120.4247, 8.0577974319458], [34.6231, 112.3844, -28.75210952758789], [30.1377, 104.6289, -1.3129634857177734], [42.0186, 121.6561, 9.453137397766113], [29.5817, 105.0653, 0.6647515892982483], [24.2719, 116.0797, 1.4021801948547363], [39.5371, 75.9828, -134.48536682128906], [41.9206, 126.4047, 9.39111614227295], [27.583, 110.0394, 13.008644104003906], [33.4022, 120.118, 5.558810710906982], [26.6343, 106.7487, 12.944701194763184], [35.4234, 119.5198, 9.279240608215332], [28.1308, 112.8908, 4.8856987953186035], [24.3406, 109.3886, 17.7338809967041], [21.7631, 108.3511, 13.370668411254883], [27.11, 114.9739, 4.5320892333984375], [42.8953, 125.1567, 6.990808010101318], [43.895, 81.2867, -97.36290740966797], [40.7736, 120.8631, 9.551312446594238], [32.935, 117.3086, -11.454695701599121], [40.5905, 110.0067, -2.568410634994507], [29.8208, 121.56, 16.60716438293457], [32.7639, 116.8028, -14.626725196838379], [26.8802, 100.2497, 15.676865577697754], [30.3714, 114.8989, -24.659725189208984], [29.7228, 106.626, 0.9684045910835266], [43.85, 125.217, 1.3044642210006714], [21.6828, 110.8592, 7.097313404083252], [33.5979, 114.6546, -19.51784324645996], [29.6007, 103.7506, 2.150545835494995], [47.7222, 128.8736, -40.327938079833984], [24.81119444, 113.5593889, 9.425444602966309], [29.315, 110.4417, -0.9734251499176025], [27.7314, 112.0194, 10.010262489318848], [34.9058, 108.9344, -33.74672317504883], [29.5186, 106.54, 1.930461049079895], [40.0031, 116.407, 0.4191473722457886], [31.9286, 102.1755, -0.670485258102417], [38.8756, 115.442, -6.419043064117432], [40.7688, 114.9032, -2.5699448585510254], [38.0398, 114.6046, -14.21340274810791], [37.8792, 113.4922, -17.58745765686035], [31.0283, 103.613, -2.5339879989624023], [31.3508, 118.3528, -19.629682540893555], [32.88922222, 115.7838889, -16.752519607543945], [36.0783, 111.5531, -27.26616668701172], [36.2126, 113.0886, -20.214113235473633], [21.8536, 111.9508, 4.466949462890625], [29.7736, 121.633, 17.023759841918945], [28.3586, 112.9958, 2.3172647953033447], [37.4294, 122.1206, 17.400266647338867], [28.71583, 104.5761, 4.059111595153809], [31.5848, 120.354, 5.3085198402404785], [31.2108, 107.4967, -10.65661907196045], [26.0797, 119.268, 9.749753952026367], [23.0467, 113.144, 6.372877597808838], [26.6383, 118.1694, 6.338108539581299], [27.9153, 113.0048, 6.286439418792725], [32.6975, 109.0072, -36.71005630493164], [31.955, 119.146, -7.791860580444336], [33.38256667, 104.9338889, -5.291062355041504], [37.8564, 113.5753, -17.409748077392578], [39.7711, 98.2908, 6.379159450531006], [30.6145, 116.9894, -26.835886001586914], [43.9469, 87.4754, -57.92207717895508], [39.5453, 116.7022, 0.6374205350875854], [30.9219, 117.8561, -24.34914779663086], [34.7745, 113.641, -19.471494674682617], [32.41, 119.404, -3.813380718231201], [22.5111, 113.4075, 2.8443245887756348], [43.6156, 122.3039, 5.453189373016357], [37.7087, 112.7105, -19.934587478637695], [41.3472, 123.8142, 13.1138277053833], [43.831, 87.6432, -56.50252151489258], [22.8322, 100.9817, 14.998553276062012], [23.415, 111.2353, 12.940729141235352], [29.2958, 117.2111, -22.094938278198242], [30.21, 120.211, 4.361749649047852], [27.7019, 106.9242, 10.841201782226562], [30.0506, 103.8986, 0.06343188136816025], [46.8032, 130.3648, -37.8905029296875], [33.9592, 118.2442, 2.2547061443328857], [26.4519, 111.5989, 15.412059783935547], [31.1907, 121.703, 16.547517776489258], [26.8576, 100.2143, 15.693488121032715], [47.2988, 123.945, -25.369396209716797], [36.253, 120.014, 11.678766250610352], [32.9917, 112.5192, -35.62935256958008], [34.402, 115.6578, -4.4656805992126465], [37.9844, 106.2025, 3.602698564529419], [45.2948, 131.0103, -28.46112060546875], [33.3942, 120.156, 5.770410060882568], [24.3898, 109.4883, 17.663326263427734], [30.9742, 118.7386, -15.978672981262207], [26.6029, 106.6856, 12.942468643188477], [31.2994, 120.543, 7.00132417678833], [30.3515, 112.2068, -26.345611572265625], [30.5706, 104.079, -2.1881396770477295], [21.5958, 109.2256, 10.683524131774902], [44.1564, 87.9897, -55.849212646484375], [22.7875, 108.301, 17.454082489013672], [26.2403, 107.5228, 14.533844947814941], [27.5578, 109.9972, 13.134531021118164], [30.4865, 106.6351, -3.754316806793213], [38.4975, 106.2328, 4.786518096923828], [30.9892, 112.1969, -33.19606018066406], [37.7379, 115.6426, -7.596520900726318], [36.1417, 106.2319, -4.031641483306885], [43.4569, 87.4651, -56.13161849975586], [24.3158, 109.4839, 17.647768020629883], [45.8194, 130.8625, -31.819381713867188], [29.1389, 110.48, 1.0386823415756226], [29.90166667, 121.6147222, 16.84904670715332], [34.7997, 111.1489, -34.632835388183594], [26.0931, 119.58, 10.360206604003906], [41.7972, 123.3997, 11.870119094848633], [25.5364, 103.8, 18.982709884643555], [31.7797, 116.5068, -22.590866088867188], [27.7569, 111.9561, 9.972622871398926], [38.9846, 117.3747, 2.401543378829956], [36.086, 114.32, -12.68830680847168], [39.9934, 116.315, 0.20264692604541779], [37.7805, 112.488, -20.209468841552734], [29.7292, 115.988, -23.210535049438477], [27.8317, 99.7056, 12.112675666809082], [38.91194444, 121.6330556, 13.936186790466309], [43.941, 81.3364, -97.1424560546875], [37.18, 119.959, 11.48690128326416], [35.5294, 106.7039, -10.780406951904297], [33.581, 114.014, -24.193496704101562], [30.7819, 111.3296, -29.95318031311035], [38.5036, 106.1358, 5.338164329528809], [31.751, 119.579, -3.315809965133667], [29.6376, 94.3681, -5.088441848754883], [38.85611111, 121.5180556, 13.854682922363281], [30.7157, 111.3009, -29.047325134277344], [40.8369, 111.751, -4.521189212799072], [36.4796, 115.9835, -0.09746648371219635], [39.2474, 117.7918, 3.544743537902832], [37.825, 120.747, 14.002056121826172], [39.0877, 117.307, 2.1763250827789307], [35.0003, 102.905, 1.0869333744049072], [31.6219, 120.275, 4.548221588134766], [29.6747, 91.1221, -19.284217834472656], [41.7156, 125.9361, 11.128300666809082], [34.2153, 117.256, 3.080930709838867], [31.1108, 104.3539, -3.8750216960906982], [29.8906, 121.554, 16.530290603637695], [30.65638889, 104.0238889, -2.359333038330078], [46.6219, 124.8648, -21.731494903564453], [32.215, 119.491, -3.3858113288879395], [29.9899, 103.0013, 2.469538688659668], [34.0117, 113.8331, -22.982582092285156], [42.8328, 93.4961, -21.96776580810547], [36.5458, 104.1731, 7.270395755767822], [26.6009, 106.7105, 12.97612190246582], [23.0944, 109.6014, 15.799561500549316], [29.4758, 113.2621, -13.93106746673584], [33.0069, 114.0131, -27.346494674682617], [22.6164, 110.1433, 13.22174072265625], [41.7381, 125.9486, 11.017218589782715], [37.8692, 112.5369, -19.8809814453125], [32.3292, 119.8767, 1.1585806608200073], [35.4039, 116.5546, 6.983283042907715], [29.9816, 103.0001, 2.5039284229278564], [39.1654, 117.145, 1.6606148481369019], [32.3878, 119.46, -3.333627223968506], [45.7478, 126.593, -18.561992645263672], [40.1269, 113.2661, -9.914680480957031], [32.4246, 105.8153, -8.132950782775879], [30.6103, 114.4272, -26.798147201538086], [23.02777778, 113.7461111, 4.096673488616943], [35.9019, 114.17, -13.414892196655273], [38.4841, 106.2739, 4.546848297119141], [36.865, 120.537, 13.661445617675781], [39.2282, 106.7704, 4.582793712615967], [30.8811, 117.7442, -24.894906997680664], [23.2775, 116.7258, -2.525451421737671], [37.5639, 121.2514, 15.730175971984863], [27.8528, 113.13, 6.419920444488525], [34.5021, 109.4266, -38.912872314453125], [38.6016, 105.9512, 6.72926664352417], [32.8985, 117.3065, -11.86762523651123], [37.1152, 79.9485, -103.83226776123047], [26.567, 101.7227, 18.10451316833496], [36.799, 119.976, 11.961750984191895], [30.2997, 113.8531, -26.15718650817871], [41.9339, 123.6836, 11.71653938293457], [36.864, 118.78, 9.437047004699707], [42.0486, 121.6592, 9.436922073364258], [41.1042, 121.835, 10.535393714904785], [38.03777778, 114.5480556, -14.48365592956543], [36.0714, 111.5028, -27.45581817626953], [26.5928, 101.5769, 17.997053146362305], [24.339, 102.5381, 20.441333770751953], [30.66, 117.49, -26.142234802246094], [19.9969, 110.338, -3.6746180057525635], [34.3469, 106.005, -9.7619047164917], [28.2264, 117.0222, -11.028114318847656], [30.0125, 103.009, 2.367466449737549], [38.2991, 116.8854, 1.5718510150909424], [26.4364, 111.5992, 15.452353477478027], [23.8822, 100.0869, 16.800180435180664], [26.4214, 111.6156, 15.469372749328613], [23.0395, 113.105, 6.4821696281433105], [29.53675, 106.4959, 1.796942949295044], [32.64600333, 117.0411667, -15.421760559082031], [37.9854, 112.549, -19.44975471496582], [28.0167, 120.671, 14.949213981628418], [33.5653, 114.0322, -24.165891647338867], [30.9414, 117.8178, -24.457263946533203], [27.9747, 120.76, 15.325197219848633], [24.4674, 117.6336, 1.8716939687728882], [30.8217, 106.1031, -4.708304405212402], [35.0573, 118.3418, 9.917071342468262], [34.864, 117.5564, 9.209310531616211], [22.0019, 100.7939, 10.295211791992188], [45.305, 130.9817, -28.431100845336914], [44.2967, 86.0497, -67.76921844482422], [30.2747, 120.063, 2.4039881229400635], [26.6761, 118.0966, 5.749545574188232], [37.3803, 118.0062, 6.820085525512695], [36.8198, 118.3092, 9.409895896911621], [31.9108, 119.905, 0.7932155728340149], [40.0625, 124.3303, 16.319015502929688], [27.8159, 112.9227, 7.237462520599365], [45.7733, 126.689, -19.037641525268555], [46.0707, 122.0931, -13.302583694458008], [37.4967, 121.2611, 15.734546661376953], [33.6067, 118.989, 0.6474134922027588], [33.6128, 114.6613, -19.37542152404785], [22.6069, 113.104, 4.55529260635376], [45.7667, 126.635, -18.83783531188965], [24.3304, 109.4108, 17.713407516479492], [41.1933, 80.2956, -100.03754425048828], [30.8064, 106.056, -4.543417453765869], [36.2211, 117.6983, 10.563043594360352], [30.518, 106.631, -3.934159278869629], [32.1883, 119.68, -1.339849829673767], [32.0775, 118.795, -11.510644912719727], [31.6908, 113.3833, -32.811485290527344], [37.374, 120.399, 12.945446968078613], [31.6861, 118.5058, -16.68114471435547], [26.2331, 111.6236, 15.794962882995605], [28.8194, 104.5969, 3.6397242546081543], [28.19, 112.9394, 4.226776599884033], [23.3892, 104.2319, 20.10447120666504], [46.6527, 126.9636, -26.730518341064453], [24.441, 98.578, 15.079568862915039], [35.1147, 111.0414, -33.254852294921875], [31.4, 119.46, -5.446455955505371], [42.9061, 129.5042, -5.1107587814331055], [47.9047, 88.1214, -74.97509765625], [26.6607, 119.5202, 11.933034896850586], [40.8452, 111.659, -4.3214640617370605], [29.7048, 115.9581, -22.994659423828125], [46.6462, 131.1516, -39.29191589355469], [35.5714, 104.6228, 2.5688257217407227], [23.1323, 113.3208, 6.014401435852051], [30.0033, 120.7789, 10.885405540466309], [30.4133, 114.8131, -25.014904022216797], [39.8745, 116.434, 0.36559054255485535], [44.0297, 87.2717, -59.42940902709961], [42.2814, 118.9233, 5.72800874710083], [45.2924, 130.962, -28.271936416625977], [23.5739, 116.3594, -0.6765103936195374], [30.1808, 120.088, 2.9604437351226807], [36.6106, 109.5056, -21.372833251953125], [29.6541, 91.1774, -18.874486923217773], [44.5462, 129.6386, -17.754087448120117], [25.2708, 110.3089, 16.75785255432129], [43.8256, 126.55, -1.3522932529449463], [45.755, 126.542, -18.49056053161621], [21.6669, 110.9067, 6.856936931610107], [34.9162, 113.6113, -18.98298454284668], [25.5811, 100.2171, 17.75949478149414], [29.8539, 114.2894, -20.862167358398438], [26.9056, 112.5664, 12.874055862426758], [47.3382, 130.1097, -41.100337982177734], [31.4747, 104.7778, -4.893549919128418], [34.6258, 112.4275, -28.460350036621094], [34.3672, 107.1906, -24.06723976135254], [32.18888889, 119.4369444, -4.000936985015869], [24.77908333, 113.6734722, 8.995377540588379], [23.5538, 113.589, 6.379520893096924], [35.4813, 112.8252, -22.415218353271484], [35.235, 113.261, -20.430753707885742], [41.8594, 123.9, 11.903624534606934], [22.7019, 110.1106, 13.591858863830566], [32.1403, 114.0122, -29.6622371673584], [24.795928, 113.598061, 9.271163940429688], [27.8136, 99.7064, 12.169425010681152], [36.0822, 111.5169, -27.374357223510742], [37.3617, 118.0018, 6.858536720275879], [40.7579, 111.651, -4.826437950134277], [43.8167, 125.25, 1.4582655429840088], [37.43445, 118.696, 8.262825012207031], [28.5808, 112.3458, 1.9252989292144775], [26.6514, 118.1819, 6.369585037231445], [46.6572, 131.1638, -39.42262649536133], [35.4144, 116.5856, 7.170632839202881], [24.68636111, 113.5970833, 9.016204833984375], [23.05361111, 113.7819444, 4.084379196166992], [31.7506, 118.5106, -16.329219818115234], [30.5719, 114.3672, -26.81380844116211], [29.4402, 112.9943, -12.598605155944824], [35.28385, 113.5922, -17.848379135131836], [30.698, 111.2992, -28.812192916870117], [45.7677, 131.0032, -31.93257713317871], [45.5828, 84.8897, -79.99606323242188], [38.86388889, 121.625, 14.013113021850586], [35.272, 113.884, -15.59982681274414], [31.0935, 120.978, 11.054694175720215], [34.9817, 118.2764, 9.66115665435791], [34.7967, 114.2886, -13.826955795288086], [30.4183, 120.301, 4.996986389160156], [29.6453, 106.562, 1.2889950275421143], [35.546, 112.8453, -22.18946647644043], [41.1953, 123.2, 12.79455280303955], [30.63, 104.1113889, -2.406336545944214], [27.5733, 109.9333, 13.098963737487793], [36.4343, 116.0072, 0.35250309109687805], [36.6275, 109.4131, -20.75509262084961], [30.5494, 114.3006, -26.91288185119629], [30.9414, 117.7806, -24.596698760986328], [45.6886, 85.1186, -79.18777465820312], [22.5931, 113.0819, 4.569921016693115], [27.0658, 114.9817, 4.670261383056641], [27.7231, 109.1794, 12.678032875061035], [24.6928, 108.054, 17.968381881713867], [35.5051, 112.85, -22.231401443481445], [43.962, 87.6444, -57.009376525878906], [23.5292, 116.4094, -0.9450850486755371], [22.5978, 114.297, 0.43549296259880066], [22.5545, 114.1063, 0.7584554553031921], [43.8875, 126.555, -1.830078125], [41.1222, 121.1178, 9.576663970947266], [27.7297, 109.1916, 12.649944305419922], [27.8344, 114.9831, -0.7711517810821533], [37.8531, 113.6292, -17.2788028717041], [22.0225, 100.8017, 10.433148384094238], [40.6511, 122.215, 11.618097305297852], [33.6347, 114.6758, -19.11630630493164], [26.5892, 104.8, 13.514846801757812], [33.3947, 120.225, 6.247456073760986], [29.6926, 116.0628, -23.168231964111328], [38.885, 121.5638889, 13.876019477844238], [39.6572, 106.7931, 6.163078784942627], [41.0903, 122.0539, 10.863152503967285], [41.8864, 124.0878, 11.8634672164917], [31.17, 120.635, 7.919158458709717], [33.8561, 115.7831, -8.553728103637695], [36.913, 121.531, 16.479022979736328], [37.809, 120.773, 14.10256576538086], [23.3993, 103.3772, 19.802413940429688], [32.9735, 112.5003, -35.751888275146484], [41.7775, 123.478, 11.968093872070312], [29.1242, 110.4697, 1.2405494451522827], [26.53111111, 107.8908333, 14.643424034118652], [35.0308, 110.9678, -33.97602844238281], [38.97388889, 121.6119444, 13.783730506896973], [31.2797, 107.5272, -11.255983352661133], [31.0483, 112.2014, -33.524452209472656], [30.2311, 119.6942, -2.1798148155212402], [30.2897, 120.157, 3.5195770263671875], [36.6622, 117.049, 6.764683723449707], [34.3731, 109.2186, -39.42810821533203], [33.1138, 107.0089, -19.93790054321289], [22.5497, 113.3881, 3.1207735538482666], [26.1092, 119.299, 9.926811218261719], [38.9108, 115.4713, -6.111154079437256], [28.1944, 113.0014, 3.979217529296875], [25.1174, 117.0181, 3.105125665664673], [35.2375, 115.474722, -2.3057947158813477], [31.737, 119.579, -3.3410542011260986], [29.57278, 106.4042, 1.5208609104156494], [30.2989, 109.5039, -12.179841995239258], [31.7371, 116.508, -22.846343994140625], [25.9061, 113.0073, 13.490224838256836], [34.5911, 119.1478, 7.225161552429199], [37.197, 122.038, 17.493070602416992], [26.5155, 106.6948, 13.156952857971191], [29.305, 120.091, 7.230895519256592], [30.72358333, 103.97275, -2.4712767601013184], [31.955, 119.18, -7.4052557945251465], [35.6039, 103.2139, 2.5457651615142822], [31.5031, 120.242, 4.104760646820068], [38.4519, 112.7383, -17.264772415161133], [37.8873, 112.522, -19.85422706604004], [37.3753, 97.3731, 2.6424357891082764], [31.2261, 121.425, 14.57305908203125], [32.0572, 118.749, -12.125042915344238], [29.5867, 115.9936, -22.32467269897461], [33.5039, 119.135, 0.46386951208114624], [39.4365, 75.9435, -134.84774780273438], [23.7208, 109.2131, 17.2651424407959], [31.7308, 113.3983, -32.78599548339844], [27.7842, 114.3953, 2.452690362930298], [36.8088, 118.0482, 9.226981163024902], [27.8728, 112.8937, 6.898299694061279], [23.0048, 113.134, 6.299526691436768], [28.6047, 112.3347, 1.6815602779388428], [36.0211, 106.2375, -4.718698501586914], [29.3547, 110.5594, -1.948063850402832], [31.4539, 104.7536, -4.829382419586182], [39.5989, 109.8119, -7.835999488830566], [32.395, 111.0419, -39.65795135498047], [31.172, 120.658, 8.15102481842041], [22.805, 108.383, 17.35415267944336], [34.3164, 108.7369, -38.40751266479492], [41.9228, 123.3783, 11.591753959655762], [34.794, 111.158, -34.62787628173828], [31.2284, 121.533, 15.396662712097168], [27.8403, 112.9118, 7.089149475097656], [29.2365, 88.8931, -36.8232536315918], [31.317, 119.438, -5.877226829528809], [22.9394, 112.0369, 9.486224174499512], [25.0405, 102.722, 20.182668685913086], [34.7822, 111.19, -34.568668365478516], [25.7759, 113.0348, 13.170914649963379], [40.0917, 113.3444, -9.956805229187012], [36.5819, 101.834, 6.78884744644165], [38.4928, 112.7003, -17.12736701965332], [40.916, 107.5936, 7.907760143280029], [34.2629, 108.993, -39.669189453125], [34.8731, 108.9589, -34.18977737426758], [23.1478, 109.5681, 15.94802188873291], [31.92, 120.302, 5.010749340057373], [42.2953, 123.8831, 10.833600044250488], [43.6801, 122.2532, 5.105663299560547], [26.5917, 104.83, 13.460061073303223], [25.4792, 118.981, 6.3014607429504395], [28.4459, 117.973, -9.009906768798828], [32.6939, 109.0281, -36.784400939941406], [39.3265, 112.4078, -13.763644218444824], [32.3061, 118.3158, -14.329278945922852], [36.6164, 114.5426, -12.912444114685059], [27.2582, 111.4908, 13.215142250061035], [41.0112, 117.9384, 3.9078545570373535], [37.9648, 106.1532, 3.7599105834960938], [41.0971, 122.9642, 12.424463272094727], [34.7496, 113.5991, -19.907684326171875], [27.8953, 102.2311, 12.7422513961792], [29.5634, 103.757, 2.2456116676330566], [32.4429, 105.8242, -8.166634559631348], [29.6535, 116.0174, -22.83025360107422], [34.719, 113.734, -19.05732536315918], [47.3349, 130.2659, -41.575279235839844], [46.619, 131.1651, -39.124176025390625], [34.378, 108.869, -38.40552520751953], [38.8707, 115.5214, -5.873818874359131], [30.7525, 120.7844444, 9.595423698425293], [22.96583333, 113.7383333, 3.8275697231292725], [32.9683, 112.55, -35.540985107421875], [39.8129, 110.0023, -7.3862762451171875], [29.2647, 117.1558, -21.9257755279541], [30.5514, 114.2511, -27.07951545715332], [27.8847, 102.2689, 12.742405891418457], [35.7672, 115.0628, -6.3052496910095215], [30.696, 111.268, -28.657686233520508], [41.765, 123.41, 11.943428039550781], [41.8417, 123.7117, 11.910563468933105], [26.5894, 104.8475, 13.444002151489258], [25.0492, 101.538, 19.622835159301758], [27.9639, 116.3598, -7.300894260406494], [33.6481, 116.9765, -4.365476131439209], [41.0833, 122.9481, 12.403877258300781], [37.4514, 105.0197, 7.864790439605713], [26.8906, 100.2203, 15.609004020690918], [35.5236, 107.6406, -17.886465072631836], [22.7422, 114.5317, 0.44350215792655945], [35.31, 113.836, -15.887490272521973], [30.3944, 114.8878, -24.77942657470703], [39.0927, 117.202, 1.8286696672439575], [32.1078, 114.1044, -29.171518325805664], [35.5461, 106.6692, -10.432051658630371], [37.5211, 111.1406, -21.189382553100586], [40.9843, 117.9525, 3.955077886581421], [33.9506, 118.3214, 2.2750260829925537], [32.939, 117.3961, -11.16160774230957], [23.3594, 104.2533, 20.060077667236328], [36.881, 118.746, 9.39641284942627], [36.6872, 116.989, 6.3035173416137695], [34.802, 113.564, -19.84433364868164], [24.5058, 118.0936, 1.8936816453933716], [43.9311, 116.0781, 2.103175163269043], [34.6692, 112.3628, -28.590341567993164], [36.6428, 101.748, 7.009581565856934], [33.7214, 113.3064, -28.43659210205078], [36.1031, 103.631, 5.0041279792785645], [29.5822, 105.0406, 0.676878809928894], [32.8913, 117.4186, -11.62146282196045], [23.3682, 103.3758, 19.731082916259766], [43.9404, 81.2815, -97.52010345458984], [27.8042, 114.9119, -0.15377037227153778], [29.7125, 106.617, 1.0027557611465454], [32.0092, 118.737, -12.489874839782715], [28.8833, 105.4322, 3.757692337036133], [35.27, 115.455, -2.4757280349731445], [40.7612, 111.717, -4.9063920974731445], [42.8172, 93.5128, -21.80006980895996], [40.1952, 116.23, 0.045234546065330505], [26.0542, 119.389, 9.914054870605469], [45.1642, 124.8528, -9.06628704071045], [34.3181, 108.6761, -38.1322135925293], [40.7378, 107.3715, 8.167757034301758], [30.9431, 118.7175, -16.32649803161621], [28.2189, 112.8872, 4.127564430236816], [46.528, 125.112, -21.49652099609375], [33.8715, 109.9154, -42.1941032409668], [40.1503, 124.4256, 16.24238395690918], [32.0903, 112.2106, -37.04615783691406], [42.2556, 118.8789, 5.692824363708496], [39.9567, 119.6023, 8.37547492980957], [22.4853, 113.4411, 2.5994832515716553], [39.5986, 109.7736, -7.706525802612305], [36.5776, 114.5035, -12.979485511779785], [32.4639, 119.888, 1.499098539352417], [39.0845, 117.1589, 1.6815986633300781], [25.8567, 98.8601, 14.88409423828125], [22.5625, 114.117, 0.7658587098121643], [34.2713, 108.954, -39.476749420166016], [43.7878, 125.454, 1.2580257654190063], [28.9664, 118.871, -5.460628032684326], [23.1617, 112.565, 8.523353576660156], [31.8108, 119.9736, 1.4747475385665894], [29.261, 91.7706, -14.946060180664062], [28.9583, 105.4306, 3.4233148097991943], [33.027, 112.5573, -35.37227249145508], [30.51197222, 117.0331111, -26.946664810180664], [31.9051, 117.16, -21.884389877319336], [27.725, 111.9975, 10.091461181640625], [40.7136, 120.9092, 9.694185256958008], [23.65889, 116.6183, -0.8082115054130554], [26.4364, 106.6554, 13.376798629760742], [31.8706, 117.259, -21.99308204650879], [38.2911, 109.7456, -12.14149284362793], [34.2778, 117.2933, 3.873412609100342], [33.568, 114.005, -24.3347110748291], [38.00583333, 114.4586111, -14.871082305908203], [32.3153, 118.3094, -14.286874771118164], [38.80805556, 121.2588889, 13.611811637878418], [47.7317, 128.9094, -40.49882507324219], [41.5931, 120.4439, 8.059205055236816], [45.8167, 126.561, -19.052051544189453], [34.6686, 112.4433, -28.08554458618164], [31.8766, 117.307, -21.89984893798828], [28.2053, 113.0792, 3.6062498092651367], [34.5653, 105.8614, -7.794839859008789], [42.3022, 123.8139, 10.834815979003906], [26.5495, 106.6867, 13.065261840820312], [23.0706, 112.427, 8.7074556350708], [34.7538, 113.6356, -19.6287784576416], [29.9834, 103.0109, 2.477308750152588], [21.865, 111.9494, 4.551053047180176], [30.7856, 106.1064, -4.552649974822998], [28.2169, 116.9983, -10.929207801818848], [39.0631, 121.9769, 14.112726211547852], [39.6679, 118.2185, 4.141689777374268], [32.6778, 109.0311, -36.639766693115234], [28.9745, 118.855, -5.75347900390625], [45.0878, 124.8292, -8.365796089172363], [31.2058, 107.4611, -10.436959266662598], [41.3369, 123.7528, 13.087642669677734], [35.3962, 119.54, 9.217411994934082], [32.1342, 114.0681, -29.349590301513672], [34.407, 115.6386, -4.5850605964660645], [29.334, 120.04, 6.486917972564697], [34.2417, 117.192, 3.2281274795532227], [23.105, 113.433, 5.598865509033203], [26.6266, 106.6243, 12.812605857849121], [37.7124, 112.469, -20.434146881103516], [43.1847, 124.3897, 6.464085102081299], [29.7207, 118.3236, -17.77715492248535], [45.8309, 130.9467, -32.210662841796875], [31.4656, 104.6717, -4.75640869140625], [30.6617, 117.4697, -26.188552856445312], [39.625, 121.989, 12.873400688171387], [46.5776, 125.1386, -21.933443069458008], [36.0725, 103.841, 4.999406337738037], [25.1035, 117.0216, 3.090435743331909], [49.1577, 119.7512, -34.36098098754883], [22.8464, 108.239, 17.673599243164062], [25.0311, 117.0151, 2.9747602939605713], [35.4178, 119.4641, 9.299378395080566], [37.5002, 105.1971, 7.1321539878845215], [33.63063889, 116.989, -4.516355991363525], [23.1036, 109.5683, 15.877422332763672], [23.7369, 109.2317, 17.26146125793457], [30.049, 119.946, 1.6832456588745117], [25.0124, 102.743, 20.21131706237793], [30.4753, 114.1525, -26.900344848632812], [38.0524, 114.5214, -14.557211875915527], [34.29, 117.1814, 3.745553970336914], [30.1142, 104.6469, -1.2334544658660889], [29.8506, 121.524, 16.39289093017578], [36.0464, 103.831, 4.872973442077637], [39.6308, 118.1662, 4.016917705535889], [41.0831, 123.0156, 12.532299041748047], [31.9438, 117.266, -21.50718879699707], [29.8181, 114.3036, -20.510406494140625], [41.2894, 123.1417, 12.6080904006958], [35.248889, 115.42277, -2.7713539600372314], [42.2864, 123.8489, 10.872536659240723], [27.7758, 115.0586, -0.6406037211418152], [38.5339, 102.1725, 13.186996459960938], [35.1764, 113.2464, -20.69370460510254], [33.0706, 107.0154, -19.880844116210938], [34.2911, 117.244, 3.9068894386291504], [34.3956, 108.7197, -37.60963439941406], [31.371, 119.794, -1.1541117429733276], [34.2749, 108.882, -39.223323822021484], [31.7848, 117.196, -22.616416931152344], [30.0874, 103.8416, 0.080251045525074], [31.1167, 104.4053, -3.9472708702087402], [34.2572, 109.06, -39.92513656616211], [37.364, 120.394, 12.92970085144043], [27.8408, 102.2714, 12.95578384399414], [36.7731, 119.1939, 9.812149047851562], [40.1097, 113.3819, -9.871779441833496], [29.33972, 104.7228, 1.6926323175430298], [30.9697, 117.8472, -24.26082420349121], [44.6104, 129.6459, -18.32028579711914], [29.6039, 115.9114, -22.211483001708984], [36.6525, 119.1638, 9.889702796936035], [31.9025, 102.2218, -0.6709403395652771], [34.3274, 109.043, -39.322505950927734], [33.3681, 120.1631, 5.73834753036499], [31.85805556, 106.7619444, -10.379045486450195], [31.1956, 107.5069, -10.610810279846191], [27.2317, 111.4733, 13.331052780151367], [39.16969, 117.2099, 1.8817652463912964], [26.2625, 117.6211, 5.071756362915039], [40.9733, 117.8184, 3.5403237342834473], [37.4372, 116.2714, -1.4525104761123657], [27.8244, 113.135, 6.609274387359619], [31.3178, 118.3708, -19.574878692626953], [25.0992, 104.8811, 19.116539001464844], [31.4846, 92.0657, -14.96999454498291], [30.1819, 120.27, 5.134669780731201], [22.9169, 112.0392, 9.411992073059082], [31.909, 120.237, 4.381433486938477], [41.9967, 121.6178, 9.409296989440918], [31.7956, 117.302, -22.411317825317383], [46.7975, 130.3258, -37.7210578918457], [25.0441, 101.5482, 19.63469886779785], [29.6514, 91.1319, -19.199953079223633], [31.7897, 119.8914, 0.4998362958431244], [36.0022, 106.2792, -5.111735820770264], [29.2718, 88.8876, -36.821136474609375], [36.7019, 119.12, 9.761630058288574], [29.1029, 119.686, 4.158471584320068], [29.6632, 94.3616, -5.151251316070557], [37.7111, 112.7306, -19.887001037597656], [40.8725, 114.904, -2.2875423431396484], [31.4189, 118.37, -19.182523727416992], [31.3008, 121.467, 14.865303039550781], [25.8071, 113.0383, 13.2203950881958], [23.3917, 113.215, 7.1244072914123535], [21.2706, 110.3539, 5.9390153884887695], [32.4611, 119.9219, 1.8545153141021729], [30.4663, 106.6271, -3.633272886276245], [30.3058, 120.348, 5.717233657836914], [30.3119, 120.12, 3.0129213333129883], [21.4689, 111.0286, 5.306198596954346], [23.6714, 116.6339, -0.7762743830680847], [31.3264, 120.596, 7.525087833404541], [34.2761, 117.167, 3.5548062324523926], [38.49494, 106.1024, 5.494861125946045], [31.7386, 117.278, -22.7763671875], [36.39, 120.47, 13.344930648803711], [31.671, 120.721, 8.79281997680664], [35.767, 115.0772, -6.199409008026123], [37.062, 114.4854, -14.375174522399902], [34.3474, 108.935, -38.88800811767578], [30.2692, 120.19, 3.9730515480041504], [27.2944, 105.31, 10.140191078186035], [32.1319, 119.43, -4.191115379333496], [27.2537, 111.4503, 13.271312713623047], [38.4186, 112.7356, -17.393465042114258], [23.3633, 116.7244, -2.1443591117858887], [28.6844, 115.931, -13.554242134094238], [41.7128, 86.2381, -57.51156997680664], [21.2679, 110.3316, 5.980367183685303], [30.3175, 112.2551, -25.931543350219727], [46.5888, 131.1572, -38.85584259033203], [28.6425, 115.892, -13.002256393432617], [27.72, 106.9178, 10.772059440612793], [41.0931, 123.011, 12.516029357910156], [37.161, 122.41, 18.212398529052734], [46.8025, 130.2719, -37.59017562866211], [30.9222, 117.8078, -24.549243927001953], [36.4372, 115.9848, 0.11914979666471481], [40.6821, 109.8538, -1.6972101926803589], [39.1082, 117.237, 1.9512208700180054], [23.1142, 114.4103, 1.9420758485794067], [32.0878, 118.626, -13.299603462219238], [27.8072, 114.4011, 2.2301244735717773], [30.5103, 117.0549, -26.941614151000977], [41.0385, 113.1076, -4.3325982093811035], [36.5336, 116.734, 5.656832695007324], [31.5475, 120.354, 5.279428482055664], [27.8978, 102.2625, 12.68358325958252], [27.1311, 114.99, 4.374248504638672], [25.0359, 102.638, 20.199329376220703], [28.2597, 112.9792, 3.412874460220337], [41.2864, 123.7669, 13.222959518432617], [47.3489, 130.3172, -41.843143463134766], [36.907, 121.544, 16.5188045501709], [32.5714, 110.8839, -40.37525177001953], [25.8417, 98.8546, 14.88841438293457], [30.2028, 115.0767, -24.091392517089844], [27.8667, 113.167, 6.213616847991943], [34.5885, 119.176, 7.1600117683410645], [23.6936, 113.0425, 8.52881908416748], [35.0992, 117.4518, 10.198443412780762], [29.5467, 103.7705, 2.260172128677368], [35.4934, 112.835, -22.337413787841797], [28.2403, 117.0281, -11.194525718688965], [43.95305556, 126.4738889, -2.1359052658081055], [28.0089, 120.634, 14.819055557250977], [21.6533, 110.9294, 6.705977439880371], [31.1208, 104.4219, -3.966829776763916], [29.355, 113.2117, -12.026436805725098], [35.7289, 107.6831, -16.514263153076172], [31.3019, 120.591, 7.471399784088135], [34.4286, 115.6697, -4.143693923950195], [30.6347, 105.8161, -3.555753707885742], [24.44583333, 118.0636111, 1.6584852933883667], [41.2736, 123.1761, 12.684521675109863], [32.1083, 118.803, -11.272686958312988], [35.0611, 111.0233, -33.57929992675781], [27.8614, 112.9433, 6.851525783538818], [35.4883, 112.8564, -22.22231674194336], [47.3386, 123.9305, -25.656238555908203], [26.8956, 112.6211, 12.798958778381348], [29.077, 119.647, 3.892102003097534], [37.0172, 105.18, 5.360219955444336], [22.9539, 112.0539, 9.485091209411621], [30.1259, 104.6294, -1.269279956817627], [26.6611, 119.5392, 11.998442649841309], [24.5157, 117.6569, 2.0297467708587646], [36.9639, 100.9048, 7.737692356109619], [40.9359, 117.963, 3.9760067462921143], [37.393, 117.9776, 6.715340614318848], [44.8969, 82.0806, -95.0583724975586], [46.0703, 122.0506, -13.263406753540039], [31.8585, 117.336, -21.974281311035156], [36.5767, 109.4824, -21.526823043823242], [33.721, 113.322, -28.341169357299805], [32.5, 80.1161, -111.58897399902344], [37.739, 115.6906, -7.155145168304443], [36.6028, 109.4761, -21.28204917907715], [27.5444, 109.9453, 13.212753295898438], [21.9508, 108.6553, 13.896713256835938], [29.3411, 104.7692, 1.676261305809021], [28.0797, 116.2239, -8.179128646850586], [36.61981, 114.4965, -13.173977851867676], [32.0723, 118.778, -11.728935241699219], [28.9026, 105.4436, 3.684298276901245], [26.2081, 111.6217, 15.814665794372559], [42.9409, 89.191, -45.02656936645508], [30.0911, 120.598, 8.87784481048584], [34.3017, 107.0708, -22.886165618896484], [40.8033, 111.658, -4.559849739074707], [33.0122, 112.5224, -35.56863784790039], [26.9258, 112.6194, 12.703736305236816], [28.2675, 109.6958, 10.350907325744629], [31.422, 121.14, 12.146645545959473], [32.105, 118.907, -10.018336296081543], [30.6872, 104.176, -2.66011905670166], [40.8367, 114.8985, -2.4045519828796387], [43.55, 125.633, 2.373774528503418], [30.2756, 118.1371, -22.555377960205078], [41.9419, 126.4078, 9.291893005371094], [32.4285, 105.8624, -8.293187141418457], [35.5997, 103.2064, 2.5262131690979004], [41.8336, 123.542, 11.856222152709961], [36.1542, 113.1097, -20.073482513427734], [41.1442, 123.0485, 12.549881935119629], [29.2786, 117.1983, -21.966577529907227], [39.643, 118.144, 3.944561243057251], [23.1572, 112.885, 7.50136137008667], [29.6219, 106.65, 1.5228604078292847], [41.8472, 123.428, 11.785589218139648], [30.7946, 120.744, 9.149478912353516], [25.0661, 117.0256, 3.0411834716796875], [33.0014, 97.0, -5.0186543464660645], [31.89708, 121.1518, 12.16360092163086], [24.428, 98.5842, 15.076346397399902], [39.1067, 117.1941, 1.8066643476486206], [40.1461, 124.3933, 16.215017318725586], [30.2456, 120.127, 3.2562687397003174], [22.5908, 114.263, 0.495606929063797], [29.7128, 118.3057, -17.917346954345703], [44.0114, 87.2997, -59.194732666015625], [32.4535, 105.8945, -8.411672592163086], [24.7121, 108.2134, 17.840499877929688], [30.4519, 114.8858, -25.01519012451172], [39.7153, 76.1861, -132.78369140625], [24.3702, 102.5389, 20.443248748779297], [27.8381, 113.143, 6.490656852722168], [31.7133, 118.6439, -15.000653266906738], [37.9097, 114.3541, -15.293272018432617], [44.3336, 84.8983, -74.90422821044922], [42.2725, 118.9572, 5.754936218261719], [29.36028, 104.7778, 1.5972516536712646], [25.442, 119.0156, 6.095109462738037], [31.2036, 121.478, 14.987780570983887], [38.8394, 117.457, 2.778286933898926], [24.4175, 111.5269, 14.7013578414917], [37.177, 119.941, 11.447107315063477], [30.2819, 109.4689, -11.66830062866211], [38.5061, 102.1708, 13.14407730102539], [39.6719, 106.8219, 6.081694602966309], [43.84, 125.2786, 1.256868839263916], [32.9444, 117.3575, -11.208623886108398], [22.4137, 107.3476, 17.953262329101562], [36.1855, 113.0844444, -20.229684829711914], [34.5004, 109.5049, -39.051883697509766], [31.56, 120.294, 4.690834999084473], [32.0144, 118.777, -12.003740310668945], [40.8115, 114.8814, -2.524384021759033], [29.9972, 101.9533, 4.642989635467529], [35.5102, 102.0199, 2.419231414794922], [37.8561, 113.5922, -17.367679595947266], [34.3708, 107.1586, -23.658695220947266], [23.4168, 103.386, 19.8303165435791], [37.4489, 116.3189, -1.0656163692474365], [35.0147, 110.9956, -33.971656799316406], [29.8264, 106.424, 0.09057941287755966], [34.7545, 113.681, -19.303678512573242], [23.6706, 116.6447, -0.7888961434364319], [36.3083, 120.1964, 12.395626068115234], [30.8388, 106.1087, -4.797598838806152], [43.8667, 125.417, 0.8265480399131775], [27.9883, 116.3553, -7.5554656982421875], [39.9419, 119.5369, 8.275684356689453], [33.8399, 115.8067, -8.527658462524414], [30.2099, 115.0264, -24.08688735961914], [33.737, 113.182, -29.1092529296875], [27.9164, 112.4876, 7.5825066566467285], [27.8036, 114.3442, 2.5102787017822266], [26.57098, 101.68912, 18.09031867980957], [22.2294, 113.495, 0.9474207162857056], [38.44139, 106.2275, 4.6463165283203125], [24.6967, 108.1009, 17.938919067382812], [25.0836, 102.728, 20.140045166015625], [24.9624, 102.625, 20.27816390991211], [31.1278, 97.1804, -2.0623886585235596], [38.5247, 102.1878, 13.190969467163086], [31.381, 120.999, 11.059349060058594], [28.4569, 118.0058, -8.895597457885742], [32.1142, 112.1825, -37.135746002197266], [34.3617, 108.7233, -37.94854736328125], [23.8982, 100.0782, 16.812541961669922], [41.1636, 80.2828, -100.11637878417969], [32.6028, 116.8556, -16.255823135375977], [36.1942, 117.1436, 9.187788963317871], [37.0967, 114.4821, -14.439667701721191], [38.817, 106.3394, 5.343752861022949], [32.9673, 117.3536, -10.963955879211426], [30.4576, 106.6303, -3.5847530364990234], [30.6197, 114.2836, -27.335311889648438], [41.1556, 122.0247, 10.738658905029297], [38.9194, 117.157, 1.6766847372055054], [39.9522, 116.434, 0.4341800808906555], [36.087, 114.358, -12.465725898742676], [43.7256, 126.6772, -0.9203907251358032], [40.6532, 109.8756, -1.9009641408920288], [24.9617, 118.6108, 3.6132712364196777], [36.792, 119.952, 11.907150268554688], [29.5953, 105.0331, 0.6375539302825928], [31.2472, 120.561, 7.167586326599121], [30.1506, 104.6356, -1.3642616271972656], [33.1842, 106.9893, -19.890663146972656], [36.0875, 111.5025, -27.392915725708008], [31.8934, 102.2402, -0.6769998073577881], [24.8978, 118.5972, 3.30853533744812], [22.8561, 108.316, 17.56748390197754], [27.8336, 113.251, 6.215853691101074], [31.2703, 120.613, 7.686424255371094], [35.303, 113.883, -15.544689178466797], [39.3673, 112.4279, -13.554957389831543], [32.6389, 110.7258, -40.58207321166992], [38.1398, 114.5019, -14.430195808410645], [26.6272, 118.1756, 6.416131973266602], [33.6284, 116.9677, -4.614894390106201], [33.965, 118.283, 2.363358974456787], [36.7339, 119.0841, 9.65872859954834], [37.9358, 102.6469, 12.41102123260498], [41.7089, 123.439, 12.083839416503906], [22.7906, 108.439, 17.225486755371094], [43.8358, 126.5844, -1.5130599737167358], [31.882, 120.55, 7.308200836181641], [41.8828, 123.9169, 11.852831840515137], [31.656, 120.734, 8.898625373840332], [34.5667, 117.732, 7.407848358154297], [45.61, 126.615, -17.392772674560547], [29.5983, 106.296, 1.311808705329895], [45.7258, 126.646, -18.50745391845703], [33.575, 119.007, 0.468210905790329], [23.08, 114.4053, 1.8301945924758911], [28.5819, 112.3744, 1.8191043138504028], [43.9167, 125.323, 0.6793993711471558], [22.5811, 113.074, 4.540737152099609], [38.843, 105.6975, 8.946125984191895], [27.6178, 113.865, 5.965775966644287], [30.4551, 106.6388, -3.5747616291046143], [23.01277778, 113.7944444, 3.8236260414123535], [30.8244, 120.07, 1.8554198741912842], [34.3547, 107.1431, -23.55758285522461], [36.6739, 117.114, 7.0229411125183105], [22.8693, 112.844, 6.845852375030518], [23.7233, 114.6892, 3.198875665664673], [25.3167, 110.4144, 16.63166046142578], [28.6459, 121.273, 16.307891845703125], [26.8919, 112.6006, 12.850947380065918], [33.0323, 107.007, -19.71977424621582], [30.0475, 101.9603, 4.465240001678467], [30.7636, 106.0642, -4.368228435516357], [35.259, 113.1992, -20.801612854003906], [32.2786, 118.3244, -14.534183502197266], [36.1758, 117.1081, 9.069182395935059], [22.735, 108.328, 17.301637649536133], [22.3708, 107.3701, 17.816442489624023], [27.3125, 105.2864, 10.086155891418457], [33.567, 114.056, -23.991464614868164], [34.3528, 107.3906, -26.51866912841797], [38.8343, 105.6775, 9.0216646194458], [36.283, 120.008, 11.696446418762207], [34.7745, 117.5852, 8.63424301147461], [23.2783, 113.568, 5.687205791473389], [33.3261, 105.0822, -5.478931427001953], [36.6377, 117.9544, 9.613018989562988], [26.5689, 106.6971, 13.033658027648926], [43.768, 87.6046, -56.48162078857422], [41.7561, 123.535, 12.040099143981934], [41.0228, 123.1289, 12.806696891784668], [27.8014, 114.3806, 2.370852470397949], [44.561, 129.61, -17.771883010864258], [29.9919, 120.605, 9.217309951782227], [37.4658, 118.5019, 7.884270191192627], [25.8333, 114.9322, 6.783497333526611], [23.9011, 106.6103, 20.13963508605957], [38.2839, 109.7289, -12.120994567871094], [45.6033, 84.8861, -80.10618591308594], [30.9447, 118.7581, -15.730925559997559], [25.2178, 110.2869, 16.81492042541504], [26.2378, 117.6028, 5.062973976135254], [22.8172, 114.3244, 1.1828794479370117], [40.1194, 124.3678, 16.243497848510742], [41.9086, 123.5953, 11.729519844055176], [31.238, 121.4, 14.375093460083008], [26.5697, 106.7164, 13.053916931152344], [22.7833, 108.244, 17.546100616455078], [40.7866, 111.551, -4.485177040100098], [31.7039, 119.935, 0.8887402415275574], [45.5422, 126.979, -17.784584045410156], [19.9507, 110.576, -4.721930027008057], [30.6414, 114.2131, -27.676435470581055], [37.9311, 102.6219, 12.383028030395508], [39.3606, 112.4549, -13.597733497619629], [46.8267, 130.3961, -38.17782211303711], [35.94, 104.148, 4.616413593292236], [29.4892, 106.634, 2.1943039894104004], [23.1422, 113.235, 6.320041179656982], [23.06, 113.7480556, 4.253124237060547], [29.1128, 119.6533, 3.7069201469421387], [36.2092, 117.7181, 10.622721672058105], [27.7044, 111.9892, 10.232803344726562], [31.87888889, 106.7513889, -10.429627418518066], [29.2313, 91.7608, -14.9695463180542], [34.5814, 105.7281, -6.303023338317871], [35.7511, 114.2956, -12.246255874633789], [47.8515, 88.1267, -74.63429260253906], [37.9723, 106.196, 3.600339889526367], [38.8632, 115.493, -6.100006103515625], [23.8844, 106.6527, 20.129749298095703], [39.1495, 117.3916, 2.5117475986480713], [36.2403, 120.6659, 13.773417472839355], [39.1292, 106.7096, 4.511691570281982], [38.01777778, 114.5330556, -14.584357261657715], [32.1383, 114.0614, -29.384048461914062], [31.8572, 117.25, -22.091154098510742], [24.9117, 118.5819, 3.385620355606079], [28.4622, 117.9511, -9.34387493133545], [32.8928, 115.8275, -16.50016212463379], [25.067, 102.681, 20.172542572021484], [24.3289, 116.1278, 1.443591594696045], [28.6969, 115.973, -13.830657958984375], [28.1178, 112.9844, 4.7110443115234375], [44.3075, 86.0697, -67.69198608398438], [28.7867, 104.6061, 3.772859573364258], [38.0108, 112.434, -19.5189208984375], [29.4251, 113.1493, -12.856858253479004], [36.6868, 117.0684, 6.7288994789123535], [45.7319, 126.685, -18.66544532775879], [34.8019, 113.675, -19.07281494140625], [28.4586, 119.93, 10.045575141906738], [21.2567, 110.4558, 5.552091121673584], [30.9285, 113.9153, -29.86442756652832], [32.0005, 120.86, 9.917927742004395], [29.6475, 91.0874, -19.521211624145508], [27.4948, 114.0944, 5.897337436676025], [42.0352, 119.2654, 6.24744987487793], [40.5546, 110.0377, -2.846698045730591], [29.6292, 91.0834, -19.541183471679688], [40.0844, 113.2711, -10.036799430847168], [46.3991, 124.8847, -19.89687728881836], [27.6231, 113.8447, 6.002311706542969], [27.6486, 106.8906, 10.943657875061035], [31.92, 120.268, 4.689546585083008], [39.2133, 117.1837, 1.8129770755767822], [23.4714, 116.7519, -1.7077279090881348], [30.5489, 117.0486, -26.899789810180664], [31.4867, 120.269, 4.373278617858887], [23.1331, 113.26, 6.2124457359313965], [25.8226, 113.0116, 13.324874877929688], [36.61763, 114.5129, -13.075284957885742], [33.9461, 116.7844, -1.5530014038085938], [27.7914, 114.3703, 2.5024898052215576], [40.0181, 119.7624, 8.563437461853027], [43.8228, 126.4978, -1.2046757936477661], [28.2558, 109.6414, 10.4175386428833], [25.9118, 114.9064, 7.018021106719971], [35.4894, 112.8664, -22.162940979003906], [34.3497, 107.2058, -24.34455108642578], [34.6511, 112.3939, -28.50961685180664], [28.7442, 115.813, -13.680965423583984], [26.9089, 112.5328, 12.927364349365234], [28.7994, 115.742, -13.972060203552246], [28.9703, 111.6975, -0.8556308150291443], [36.1912, 113.1569, -19.807863235473633], [40.9161, 117.9664, 3.976580858230591], [34.7781, 114.3389, -13.45510196685791], [23.2536, 116.4019, -1.9825729131698608], [47.3227, 123.9483, -25.561296463012695], [36.2403, 120.4001, 12.982747077941895], [27.9647, 116.385, -7.344048500061035], [30.7478, 120.726, 9.01972770690918], [24.81805556, 118.1569444, 3.173248291015625], [24.299, 109.4221, 17.693750381469727], [41.8469, 123.81, 11.919377326965332], [29.4822, 106.364, 1.9029262065887451], [26.5017, 101.7453, 18.257661819458008], [31.8531, 106.7594, -10.344614028930664], [31.96, 120.913, 10.325700759887695], [29.6816, 115.9872, -22.923561096191406], [28.6839, 115.8886, -13.385046005249023], [26.0753, 119.315, 9.843523025512695], [42.8947, 125.1358, 7.028754234313965], [39.3514, 112.44, -13.643380165100098], [39.5343, 116.7464, 0.7403694987297058], [31.0386, 112.2211, -33.46391677856445], [27.2272, 111.4328, 13.386087417602539], [26.585, 101.7169, 18.0617733001709], [38.9389, 100.4497, 11.341445922851562], [45.6175, 122.8211, -10.161608695983887], [41.7192, 86.2022, -57.76604461669922], [42.9559, 89.1673, -45.20512771606445], [29.3864, 117.3097, -22.667238235473633], [28.56, 112.3439, 2.171447515487671], [44.9079, 82.0485, -95.30908966064453], [44.5782, 129.6115, -17.921918869018555], [35.5975, 104.6169, 2.676755666732788], [38.8416, 115.4612, -6.385388374328613], [31.453, 121.115, 11.939790725708008], [37.7394, 112.5583, -20.182973861694336], [37.85, 113.5158, -17.568893432617188], [36.061, 114.483, -11.55024242401123], [29.3678, 113.1772, -12.100418090820312], [39.6295, 118.1997, 4.1141839027404785], [36.0756, 103.712, 4.925393581390381], [31.7586, 119.996, 1.662321925163269], [35.7067, 107.6364, -16.35455894470215], [27.3361, 103.7225, 12.37326431274414], [23.0528, 112.471, 8.52690315246582], [22.75, 114.085, 1.6206369400024414], [28.3169, 109.7325, 10.12777042388916], [26.8733, 112.6197, 12.869794845581055], [34.4714, 100.2561, -0.18931029736995697], [28.6064, 115.9083, -12.726985931396484], [43.91, 125.287, 0.7884129285812378], [28.76389, 104.6417, 3.8634824752807617], [41.7347, 123.2444, 11.862344741821289], [30.6133, 105.68, -3.473357915878296], [36.1939, 113.0972, -20.158233642578125], [40.1114, 113.2803, -9.950138092041016], [23.7106, 113.0208, 8.64958667755127], [41.7511, 86.1461, -58.22723388671875], [43.1594, 124.3711, 6.632279396057129], [25.8481, 114.9461, 6.754732131958008], [33.6406, 114.6369, -19.36931610107422], [29.4892, 106.468, 2.016106128692627], [23.5486, 116.3242, -0.7053670883178711], [36.11, 114.286, -12.921142578125], [23.1886, 112.863, 7.668758869171143], [43.8711, 87.5525, -57.178375244140625], [28.2642, 117.0564, -11.466778755187988], [23.4792, 111.2897, 12.989097595214844], [45.6289, 122.8444, -10.277278900146484], [47.2753, 130.261, -41.10409164428711], [40.7514, 120.8392, 9.523058891296387], [37.8694, 113.5689, -17.40770721435547], [39.9716, 116.473, 0.5082595944404602], [41.8625, 124.0383, 11.914262771606445], [31.2864, 120.628, 7.836289405822754], [28.4514, 119.914, 9.96750545501709], [36.6489, 116.943, 6.262340068817139], [38.8516, 105.724, 8.836488723754883], [40.0758, 113.2994, -10.03929328918457], [34.7975, 114.3733, -13.060770988464355], [30.9075, 113.942, -29.719173431396484], [28.9404, 118.871, -5.224419116973877], [36.10139, 111.505, -27.331411361694336], [25.1081, 99.1678, 16.225996017456055], [29.709, 106.452, 0.8272656202316284], [36.67, 116.93, 6.067268371582031], [38.3344, 109.7414, -11.981040954589844], [41.1219, 121.2008, 9.667695999145508], [21.8586, 111.9786, 4.397659778594971], [31.6842, 120.288, 4.724884986877441], [40.6288, 109.8654, -2.0016350746154785], [36.44, 120.61, 13.750870704650879], [35.0622, 118.2939, 10.01756477355957], [37.1013, 79.9117, -104.16720581054688], [34.5101, 109.5293, -39.01758575439453], [41.2553, 123.15, 12.652820587158203], [47.3636, 123.9305, -25.850936889648438], [37.4014, 121.5992, 16.53530502319336], [40.8062, 111.7277, -4.6599440574646], [37.5436, 121.3181, 15.897418022155762], [28.6542, 121.419, 16.77608299255371], [29.8211, 114.3231, -20.57395362854004], [40.7094, 122.2703, 11.600846290588379], [34.2324, 108.94, -39.73244857788086], [33.9528, 118.293, 2.255275249481201], [27.0983, 115.0075, 4.451470851898193], [34.429, 115.6558, -4.2569451332092285], [34.2303, 108.883, -39.551414489746094], [25.1328, 99.1711, 16.209163665771484], [46.0756, 121.9462, -13.209807395935059], [22.7633, 100.98, 14.73244571685791], [23.1569, 113.281, 6.211331844329834], [26.5939, 104.89, 13.360589027404785], [31.7694, 120.0469, 2.261924982070923], [40.1438, 116.72, 0.9550759196281433], [25.2697, 110.2819, 16.782442092895508], [34.1781, 117.1694, 2.4470057487487793], [37.68277778, 112.7194444, -19.971071243286133], [35.0896, 118.4023, 9.968199729919434], [29.2956, 117.2461, -21.994312286376953], [26.0392, 119.303, 9.676013946533203], [24.3694, 102.5778, 20.45716667175293], [36.1942, 117.0881, 8.936651229858398], [26.2708, 117.6353, 5.1069817543029785], [37.5136, 111.1297, -21.20332908630371], [43.6267, 122.2603, 5.404974937438965], [30.89556, 120.0875, 2.0577914714813232], [29.8686, 114.3372, -21.088409423828125], [22.7267, 114.24, 1.12076997756958], [27.8867, 113.095, 6.262970924377441], [30.8023, 106.0789, -4.571518421173096], [31.7712, 116.5661, -22.695650100708008], [46.7432, 82.9994, -96.61624908447266], [32.41361, 119.458, -3.2941012382507324], [30.2043, 114.8949, -23.969139099121094]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#ff5000&quot;, &quot;0.05&quot;: &quot;#ff5000&quot;, &quot;0.1&quot;: &quot;#ff5000&quot;, &quot;0.15&quot;: &quot;#ff5000&quot;, &quot;0.2&quot;: &quot;#ff5000&quot;, &quot;0.25&quot;: &quot;#ff5000&quot;, &quot;0.3&quot;: &quot;#ff5000&quot;, &quot;0.35&quot;: &quot;#ff5000&quot;, &quot;0.4&quot;: &quot;#ff5000&quot;, &quot;0.45&quot;: &quot;#ff5000&quot;, &quot;0.5&quot;: &quot;#ff5000&quot;, &quot;0.55&quot;: &quot;#ff5000&quot;, &quot;0.6&quot;: &quot;#ff5000&quot;, &quot;0.65&quot;: &quot;#ff5000&quot;, &quot;0.7&quot;: &quot;#ff5000&quot;, &quot;0.75&quot;: &quot;#ff5000&quot;, &quot;0.8&quot;: &quot;#ff5000&quot;, &quot;0.85&quot;: &quot;#ff5000&quot;, &quot;0.9&quot;: &quot;#ff5000&quot;, &quot;0.95&quot;: &quot;#ff5000&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_5ed985c8741d98fbb0e83b48e839824a.addTo(map_4c97d57db26bb76eb0097a2af94c8ecc);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1d9b77ca750>\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('coef_tp', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Temperature\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {\n    \"id\": \"FFD27A7258F847C08997ACAE7BF2DA08\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_5185228219a460c8c3b598cf40e028dd {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_5185228219a460c8c3b598cf40e028dd&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_5185228219a460c8c3b598cf40e028dd = L.map(\\n\",\n       \"                &quot;map_5185228219a460c8c3b598cf40e028dd&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_9fa68158604d11447c9381601fcf6da4 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_9fa68158604d11447c9381601fcf6da4.addTo(map_5185228219a460c8c3b598cf40e028dd);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_64ff9c400652af765f0f2e179d424ef3 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_64ff9c400652af765f0f2e179d424ef3.color = d3.scale.threshold()\\n\",\n       \"              .domain([-32.1027717590332, -31.888174057006836, -31.67357635498047, -31.45897674560547, -31.2443790435791, -31.029781341552734, -30.815183639526367, -30.6005859375, -30.385986328125, -30.171388626098633, -29.956790924072266, -29.7421932220459, -29.52759552001953, -29.31299591064453, -29.098398208618164, -28.883800506591797, -28.66920280456543, -28.45460319519043, -28.240005493164062, -28.025407791137695, -27.810810089111328, -27.596210479736328, -27.38161277770996, -27.167015075683594, -26.952417373657227, -26.73781967163086, -26.52322006225586, -26.308622360229492, -26.094024658203125, -25.879426956176758, -25.66482925415039, -25.45022964477539, -25.235631942749023, -25.021034240722656, -24.80643653869629, -24.591838836669922, -24.377239227294922, -24.162641525268555, -23.948043823242188, -23.733444213867188, -23.518848419189453, -23.304248809814453, -23.089651107788086, -22.87505340576172, -22.66045379638672, -22.44585609436035, -22.231258392333984, -22.016658782958984, -21.80206298828125, -21.58746337890625, -21.372867584228516, -21.158267974853516, -20.94367027282715, -20.72907257080078, -20.51447296142578, -20.299877166748047, -20.085277557373047, -19.87067985534668, -19.656082153320312, -19.441482543945312, -19.226884841918945, -19.012287139892578, -18.797687530517578, -18.583091735839844, -18.368492126464844, -18.153894424438477, -17.93929672241211, -17.72469711303711, -17.510101318359375, -17.295501708984375, -17.080904006958008, -16.86630630493164, -16.65170669555664, -16.437108993530273, -16.222511291503906, -16.00791358947754, -15.793315887451172, -15.578718185424805, -15.364118576049805, -15.149520874023438, -14.93492317199707, -14.720325469970703, -14.505725860595703, -14.291128158569336, -14.076530456542969, -13.861932754516602, -13.647333145141602, -13.432735443115234, -13.218137741088867, -13.0035400390625, -12.7889404296875, -12.574344635009766, -12.359745025634766, -12.145147323608398, -11.930547714233398, -11.715951919555664, -11.501354217529297, -11.286754608154297, -11.07215690612793, -10.857559204101562, -10.642961502075195, -10.428361892700195, -10.213766098022461, -9.999166488647461, -9.784568786621094, -9.569969177246094, -9.35537338256836, -9.14077377319336, -8.926176071166992, -8.711576461791992, -8.496980667114258, -8.282381057739258, -8.06778335571289, -7.853183746337891, -7.638587951660156, -7.423988342285156, -7.209390640258789, -6.994792938232422, -6.780195236206055, -6.565595626831055, -6.3509979248046875, -6.13640022277832, -5.921802520751953, -5.707202911376953, -5.492605209350586, -5.278007507324219, -5.063409805297852, -4.848810195922852, -4.634214401245117, -4.41961669921875, -4.20501708984375, -3.990419387817383, -3.7758216857910156, -3.5612239837646484, -3.3466243743896484, -3.1320266723632812, -2.917428970336914, -2.702831268310547, -2.488231658935547, -2.2736358642578125, -2.0590362548828125, -1.8444385528564453, -1.6298389434814453, -1.415243148803711, -1.200643539428711, -0.9860458374023438, -0.7714462280273438, -0.5568504333496094, -0.3422508239746094, -0.1276531219482422, 0.086944580078125, 0.301544189453125, 0.5161399841308594, 0.7307395935058594, 0.9453353881835938, 1.1599388122558594, 1.3745346069335938, 1.5891304016113281, 1.8037300109863281, 2.018329620361328, 2.2329254150390625, 2.4475250244140625, 2.662120819091797, 2.8767166137695312, 3.091320037841797, 3.3059158325195312, 3.5205154418945312, 3.7351112365722656, 3.9497108459472656, 4.164310455322266, 4.37890625, 4.593502044677734, 4.80810546875, 5.022701263427734, 5.237300872802734, 5.451896667480469, 5.666496276855469, 5.881095886230469, 6.095691680908203, 6.3102874755859375, 6.524890899658203, 6.7394866943359375, 6.954082489013672, 7.168682098388672, 7.383281707763672, 7.597881317138672, 7.812477111816406, 8.02707290649414, 8.241676330566406, 8.45627212524414, 8.670867919921875, 8.885467529296875, 9.10006332397461, 9.31466293334961, 9.52926254272461, 9.743858337402344, 9.958457946777344, 10.173057556152344, 10.387653350830078, 10.602252960205078, 10.816848754882812, 11.031448364257812, 11.246047973632812, 11.460643768310547, 11.675239562988281, 11.889842987060547, 12.104438781738281, 12.319038391113281, 12.533634185791016, 12.748233795166016, 12.962833404541016, 13.17742919921875, 13.392024993896484, 13.60662841796875, 13.821224212646484, 14.035820007324219, 14.250419616699219, 14.465019226074219, 14.679618835449219, 14.894214630126953, 15.108810424804688, 15.323413848876953, 15.538009643554688, 15.752605438232422, 15.967205047607422, 16.181800842285156, 16.396404266357422, 16.611000061035156, 16.82559585571289, 17.04019546508789, 17.25479507446289, 17.469390869140625, 17.683990478515625, 17.89858627319336, 18.11318588256836, 18.32778549194336, 18.542381286621094, 18.756980895996094, 18.971580505371094, 19.186176300048828, 19.400775909423828, 19.615371704101562, 19.829971313476562, 20.044570922851562, 20.259166717529297, 20.47376251220703, 20.688365936279297, 20.90296173095703, 21.11756134033203, 21.332157135009766, 21.546756744384766, 21.761356353759766, 21.9759521484375, 22.190547943115234, 22.4051513671875, 22.619747161865234, 22.83434295654297, 23.04894256591797, 23.263538360595703, 23.47814178466797, 23.692737579345703, 23.907333374023438, 24.121932983398438, 24.336532592773438, 24.551128387451172, 24.765727996826172, 24.980323791503906, 25.194923400878906, 25.409523010253906, 25.62411880493164, 25.83871841430664, 26.05331802368164, 26.267913818359375, 26.482513427734375, 26.69710922241211, 26.91170883178711, 27.12630844116211, 27.340904235839844, 27.555500030517578, 27.770103454589844, 27.984699249267578, 28.199298858642578, 28.413894653320312, 28.628494262695312, 28.843093872070312, 29.057689666748047, 29.27228546142578, 29.486888885498047, 29.70148468017578, 29.916080474853516, 30.130680084228516, 30.34527587890625, 30.559879302978516, 30.77447509765625, 30.989070892333984, 31.203670501708984, 31.418270111083984, 31.63286590576172, 31.84746551513672, 32.06206130981445, 32.27666091918945, 32.49126052856445, 32.70586013793945, 32.92045211791992, 33.13505172729492, 33.34965133666992, 33.56425094604492, 33.77885055541992, 33.99344253540039, 34.20804214477539, 34.42264938354492, 34.63724136352539, 34.85184097290039, 35.06643295288086, 35.28103256225586, 35.49563980102539, 35.71023178100586, 35.92483139038086, 36.13943099975586, 36.35402297973633, 36.56862258911133, 36.78322219848633, 36.99782180786133, 37.21242141723633, 37.4270133972168, 37.6416130065918, 37.856204986572266, 38.0708122253418, 38.2854118347168, 38.500003814697266, 38.714603424072266, 38.929203033447266, 39.143802642822266, 39.358402252197266, 39.572994232177734, 39.787593841552734, 40.002193450927734, 40.2167854309082, 40.431392669677734, 40.645992279052734, 40.8605842590332, 41.0751838684082, 41.28977584838867, 41.5043830871582, 41.7189826965332, 41.93357467651367, 42.14817428588867, 42.36277389526367, 42.57737350463867, 42.79197311401367, 43.00656509399414, 43.22116470336914, 43.43576431274414, 43.65035629272461, 43.86496353149414, 44.07955551147461, 44.29415512084961, 44.50875473022461, 44.72334671020508, 44.93795394897461, 45.15255355834961, 45.36714553833008, 45.58174514770508, 45.79633712768555, 46.01093673706055, 46.22554397583008, 46.44013595581055, 46.65473556518555, 46.86933517456055, 47.083927154541016, 47.29853439331055, 47.513126373291016, 47.727725982666016, 47.942325592041016, 48.156917572021484, 48.371517181396484, 48.586124420166016, 48.800716400146484, 49.015316009521484, 49.22990798950195, 49.44450759887695, 49.659114837646484, 49.87370681762695, 50.08830642700195, 50.30289840698242, 50.51749801635742, 50.73209762573242, 50.94669723510742, 51.16129684448242, 51.37589645385742, 51.59048843383789, 51.80508804321289, 52.01968765258789, 52.23428726196289, 52.44888687133789, 52.66347885131836, 52.87807846069336, 53.09267807006836, 53.30727767944336, 53.52187728881836, 53.73646926879883, 53.95106887817383, 54.16566848754883, 54.38026809692383, 54.59486770629883, 54.80946731567383, 55.0240592956543, 55.2386589050293, 55.453250885009766, 55.6678581237793, 55.8824577331543, 56.097049713134766, 56.311649322509766, 56.526248931884766, 56.740848541259766, 56.955448150634766, 57.170040130615234, 57.384639739990234, 57.599239349365234, 57.8138313293457, 58.028438568115234, 58.2430305480957, 58.4576301574707, 58.6722297668457, 58.88682174682617, 59.1014289855957, 59.3160285949707, 59.53062057495117, 59.74522018432617, 59.95981216430664, 60.17441177368164, 60.38901901245117, 60.60361099243164, 60.81821060180664, 61.03281021118164, 61.24740219116211, 61.46200942993164, 61.67660140991211, 61.89120101928711, 62.10580062866211, 62.32039260864258, 62.53499221801758, 62.74959945678711, 62.96419143676758, 63.17879104614258, 63.39338302612305, 63.60798263549805, 63.82258987426758, 64.03718566894531, 64.25178527832031, 64.46636962890625, 64.68096923828125, 64.89558410644531, 65.11016845703125, 65.32476806640625, 65.53936767578125, 65.75396728515625, 65.96856689453125, 66.18316650390625, 66.39776611328125, 66.61236572265625, 66.82695007324219, 67.04154968261719, 67.25616455078125, 67.47074890136719, 67.68534851074219, 67.89994812011719, 68.11454772949219, 68.32914733886719, 68.54374694824219, 68.75834655761719, 68.97294616699219, 69.18753051757812, 69.40213012695312, 69.61672973632812, 69.83132934570312, 70.04592895507812, 70.26052856445312, 70.47512817382812, 70.68972778320312, 70.90432739257812, 71.11892700195312, 71.33351135253906, 71.54811096191406, 71.76271057128906, 71.97731018066406, 72.19190979003906, 72.40650939941406, 72.62110900878906, 72.83570861816406, 73.05029296875, 73.26490783691406, 73.47950744628906, 73.694091796875, 73.90869140625, 74.123291015625, 74.337890625, 74.552490234375, 74.76708984375, 74.981689453125])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_64ff9c400652af765f0f2e179d424ef3.x = d3.scale.linear()\\n\",\n       \"              .domain([-32.1027717590332, 74.981689453125])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_64ff9c400652af765f0f2e179d424ef3.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_64ff9c400652af765f0f2e179d424ef3.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_64ff9c400652af765f0f2e179d424ef3.legend.addTo(map_5185228219a460c8c3b598cf40e028dd);\\n\",\n       \"\\n\",\n       \"    color_map_64ff9c400652af765f0f2e179d424ef3.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_64ff9c400652af765f0f2e179d424ef3.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-32.1027717590332, &#x27;&#x27;, &#x27;&#x27;, -16.040103912353516, &#x27;&#x27;, &#x27;&#x27;, 0.022563934326171875, &#x27;&#x27;, &#x27;&#x27;, 16.085235595703125, &#x27;&#x27;, &#x27;&#x27;, 32.14789962768555, &#x27;&#x27;, &#x27;&#x27;, 48.210567474365234, &#x27;&#x27;, &#x27;&#x27;, 64.27323913574219, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_64ff9c400652af765f0f2e179d424ef3.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_64ff9c400652af765f0f2e179d424ef3.g = color_map_64ff9c400652af765f0f2e179d424ef3.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_64ff9c400652af765f0f2e179d424ef3.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_64ff9c400652af765f0f2e179d424ef3.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_64ff9c400652af765f0f2e179d424ef3.x(color_map_64ff9c400652af765f0f2e179d424ef3.color.domain()[i - 1]) : color_map_64ff9c400652af765f0f2e179d424ef3.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_64ff9c400652af765f0f2e179d424ef3.color.domain().length ? color_map_64ff9c400652af765f0f2e179d424ef3.x(color_map_64ff9c400652af765f0f2e179d424ef3.color.domain()[i]) : color_map_64ff9c400652af765f0f2e179d424ef3.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_64ff9c400652af765f0f2e179d424ef3.g.call(color_map_64ff9c400652af765f0f2e179d424ef3.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_ffbb02559c988325ce7cd5176bdd23c0 = L.heatLayer(\\n\",\n       \"                [[28.4303, 117.9033, 25.538057327270508], [31.1654, 121.412, -1.648620367050171], [23.4794, 111.26, 10.335406303405762], [34.7772, 111.1928, 47.333778381347656], [43.8748, 125.3649, -17.203216552734375], [36.838, 118.0448, -1.1580480337142944], [26.5506, 104.9544, 13.204345703125], [43.9317, 116.1042, -0.5872990489006042], [25.0925, 104.9022, 4.184438228607178], [36.885, 120.515, -20.463979721069336], [41.1386, 121.1303, -20.214969635009766], [25.4552, 119.0018, 16.173437118530273], [50.4217, 124.1303, 18.05132484436035], [33.739, 113.292, 23.549177169799805], [25.8664, 114.9367, 28.918498992919922], [22.8054, 113.292, 9.861099243164062], [29.8272, 106.379, 46.399539947509766], [32.0314, 118.803, 13.127785682678223], [28.2325, 113.0833, 45.903846740722656], [31.896, 121.173, -3.298314094543457], [35.428, 116.6305, 3.7923712730407715], [29.389, 106.513, 43.873783111572266], [33.975, 116.8008, 5.417982578277588], [31.3097, 120.669, 1.7443424463272095], [32.625, 116.7039, 19.69342613220215], [39.8261, 109.9486, 48.03185272216797], [37.4664, 116.3061, 21.23245620727539], [40.9923, 113.1306, 30.36836051940918], [39.6407, 118.1853, -3.1653149127960205], [42.2217, 123.7153, -25.356937408447266], [34.1978, 108.985, 65.2533187866211], [31.3839, 118.4022, 20.229204177856445], [31.03389, 112.1908, 52.24574661254883], [27.6442, 113.8686, 42.58909225463867], [29.3578, 113.1094, 48.87153244018555], [29.5947, 105.0717, 38.63725662231445], [37.7019, 112.7549, 50.249942779541016], [37.0533, 114.5261, 35.32075119018555], [22.2281, 113.299, 9.540501594543457], [39.7294, 98.5023, -6.271413803100586], [41.615, 120.3939, -16.70513343811035], [39.3179, 112.4254, 48.334083557128906], [24.9424, 118.6663, 16.682039260864258], [40.6575, 109.8104, 33.769378662109375], [32.02, 120.87, -2.255030393600464], [28.6844, 115.893, 37.16361999511719], [39.5747, 116.7729, 11.796102523803711], [42.8939, 129.4892, -17.179149627685547], [38.3254, 116.8584, 14.10338306427002], [28.5773, 121.377, 6.751373291015625], [39.0511, 121.7769, -25.471698760986328], [30.6539, 117.4974, 29.867280960083008], [36.2866, 100.6188, 13.77214527130127], [45.9819, 126.6106, -2.4535138607025146], [45.2978, 130.9298, -0.9697094559669495], [23.7569, 114.6778, 14.114653587341309], [27.9119, 112.9074, 45.16788101196289], [24.8885, 102.821, 1.4628933668136597], [29.5844, 103.7627, 30.68648910522461], [24.769519, 113.586606, 20.84686851501465], [41.5672, 120.4486, -16.926584243774414], [39.7884, 109.9734, 48.69816589355469], [27.8328, 114.9289, 40.54139709472656], [32.3761, 119.389, 5.881163597106934], [25.7054, 100.1542, 2.3091278076171875], [29.3628, 104.7547, 34.81254959106445], [24.3663, 109.3957, 11.532598495483398], [31.215, 107.525, 50.99603271484375], [35.76806, 115.0061, 17.96078872680664], [26.3003, 106.805, 18.73031234741211], [34.6972, 119.3581, -9.925239562988281], [30.6463, 111.3549, 54.757171630859375], [30.2366, 119.7183, 12.247699737548828], [27.3392, 103.7032, 13.135549545288086], [33.8997, 116.8067, 5.897668838500977], [33.5981, 119.036, -2.021712064743042], [37.0964, 114.5331, 35.53310012817383], [37.7575, 115.6951, 28.282825469970703], [22.5211, 113.3769, 9.81041145324707], [22.6411, 110.1675, 4.625256538391113], [38.3228, 116.8709, 13.968467712402344], [25.8471, 114.8905, 28.835567474365234], [35.04388889, 111.0522222, 53.05467987060547], [33.9953, 113.7906, 19.19575309753418], [23.7586, 114.6944, 14.132887840270996], [45.6842, 126.6206, -4.192033290863037], [38.8957, 115.5223, 27.585834503173828], [40.715, 120.8478, -19.405166625976562], [39.6969, 106.8089, 30.694923400878906], [23.5353, 116.3697, 16.01725196838379], [39.746, 98.509, -6.275972366333008], [36.7008, 119.1425, -11.053376197814941], [43.8694, 125.325, -17.23158073425293], [42.0228, 121.6722, -21.23188591003418], [23.0672, 109.6042, 5.298547744750977], [30.5947, 114.3008, 43.762962341308594], [23.475, 111.3178, 10.385733604431152], [27.6869, 106.9222, 30.664714813232422], [34.1546, 108.906, 64.80889892578125], [36.8041, 117.8512, 0.4227954149246216], [23.0916, 113.348, 10.631362915039062], [32.6319, 116.8306, 19.255752563476562], [32.4867, 119.9, 1.3224982023239136], [30.1366, 104.6617, 39.276329040527344], [24.4072, 111.5622, 16.33696174621582], [31.7618, 116.478, 29.398578643798828], [41.2692, 123.7989, -28.733644485473633], [42.0503, 121.6972, -21.25301742553711], [38.2478, 109.7336, 66.26887512207031], [34.6575, 109.2, 70.15477752685547], [39.79777778, 98.26722222, -6.476756572723389], [25.5035, 103.7897, 3.8031768798828125], [35.763, 115.031, 17.802173614501953], [39.9425, 116.361, 14.830825805664062], [34.3739, 107.1186, 65.04043579101562], [30.2352, 115.0625, 41.77564239501953], [44.1756, 87.5475, 12.785811424255371], [40.2865, 116.17, 15.638181686401367], [36.1851, 120.3905, -17.935731887817383], [36.0417, 111.4917, 55.45947265625], [39.0153, 106.3717, 35.318119049072266], [36.6867, 101.524, 15.895105361938477], [35.213, 113.227, 25.90248680114746], [24.506, 117.7116, 17.157455444335938], [47.203, 123.6261, 2.3730247020721436], [46.0347, 124.8354, -3.2529025077819824], [35.0697, 109.0697, 74.01344299316406], [34.3622, 107.2386, 65.66572570800781], [35.7306, 114.2878, 22.057538986206055], [44.5952, 129.5902, -7.38756799697876], [23.3667, 116.6794, 16.286348342895508], [34.7837, 117.2852, -1.1128231287002563], [31.155, 120.636, 2.5420565605163574], [30.4742, 114.9028, 41.702247619628906], [41.3047, 123.7308, -28.504863739013672], [28.8558, 105.4322, 34.041603088378906], [36.71, 117.541, 3.0404486656188965], [32.6494, 110.78, 44.92548370361328], [31.8516, 117.124, 27.031198501586914], [30.5797, 105.7519, 46.87775802612305], [38.9467, 100.4686, 0.011294250376522541], [39.617, 122.011, -25.555818557739258], [28.6428, 112.4067, 48.7534065246582], [31.2659, 121.536, -2.492516279220581], [39.5178, 116.6838, 12.979002952575684], [28.7989, 104.6789, 29.213926315307617], [31.5072, 104.7283, 43.3940315246582], [34.6869, 112.4831, 29.229808807373047], [31.388, 120.953, -0.2969144582748413], [30.475, 105.5956, 45.96992874145508], [41.3283, 123.8436, -28.69703483581543], [26.3108, 117.7275, 20.776819229125977], [22.7629, 113.257, 9.743660926818848], [32.645, 117.0083, 18.47063636779785], [22.8225, 108.321, 1.370657205581665], [40.3937, 116.644, 9.767492294311523], [46.0872, 85.6931, 25.428064346313477], [30.8596, 120.1844, 6.623870372772217], [31.1333, 104.3883, 40.97800064086914], [27.9939, 120.677, 10.128114700317383], [37.187, 122.019, -26.537094116210938], [29.8633, 121.586, 2.1266467571258545], [39.65782, 118.1838, -3.2149882316589355], [34.6869, 112.4664, 29.394216537475586], [40.6592, 122.2414, -25.127031326293945], [39.8673, 116.366, 15.096185684204102], [34.493, 109.4636, 66.3309555053711], [40.8144, 111.608, 34.55349349975586], [28.095, 116.9622, 31.230558395385742], [22.9477, 113.352, 10.22973918914795], [27.5342, 109.9792, 40.090721130371094], [31.874, 120.526, 0.27513357996940613], [36.2289, 117.6789, -1.1587154865264893], [28.0005, 116.3574, 35.04167175292969], [41.1196, 123.044, -27.208572387695312], [29.6588, 90.9798, -9.485224723815918], [23.0528, 114.4183, 12.431212425231934], [50.4269, 124.1186, 18.06868553161621], [30.6578, 104.054, 37.97982406616211], [31.6928, 118.48, 18.059371948242188], [46.6384, 126.9934, 1.1750677824020386], [27.3033, 111.5239, 40.65407943725586], [31.8711, 106.7389, 47.939579010009766], [37.154, 122.471, -28.260820388793945], [48.4658, 129.4942, 13.423933982849121], [41.0781, 121.0986, -20.193798065185547], [28.1442, 112.9956, 45.948150634765625], [40.7608, 107.4211, 19.941686630249023], [37.4314, 118.6672, -5.816007614135742], [43.8947, 126.5786, -16.732120513916016], [23.63444, 113.0472, 13.275042533874512], [37.4442, 118.5857, -4.910480499267578], [25.8179, 113.0119, 29.762712478637695], [23.105, 113.261, 10.597984313964844], [32.0417, 120.81, -2.0027430057525635], [23.0786, 112.4722, 9.454638481140137], [31.2071, 121.577, -2.428955316543579], [37.8195, 112.57, 51.39731979370117], [32.0564, 112.1392, 46.47724533081055], [38.95111111, 121.565, -24.800352096557617], [43.1747, 124.3419, -21.14508056640625], [29.7534, 116.0726, 37.98523712158203], [39.9279, 116.225, 16.479236602783203], [31.6411, 118.4828, 18.274404525756836], [36.5481, 104.1731, 32.13631820678711], [35.0994, 109.0656, 74.20933532714844], [23.2539, 116.6092, 16.127906799316406], [31.3708, 120.641, 1.6843055486679077], [34.7187, 113.727, 18.932621002197266], [36.497, 117.8477, -0.8836629986763], [27.8094, 102.3419, 12.512694358825684], [43.8303, 87.5801, 11.43859577178955], [27.6428, 113.8381, 42.60657501220703], [31.5631, 120.245, 3.569389820098877], [29.41569, 106.5506, 44.265235900878906], [32.0197, 112.155, 46.74900817871094], [26.5747, 107.9783, 26.525100708007812], [28.76611, 104.6225, 28.523656845092773], [27.8036, 114.9314, 40.49213409423828], [21.9667, 108.6236, 0.4791170656681061], [29.1456, 111.7158, 51.81420135498047], [24.2654, 116.1248, 16.891891479492188], [49.2261, 119.7594, 10.131550788879395], [32.8603, 115.8556, 19.171913146972656], [27.9958, 113.1817, 45.191810607910156], [28.6869, 115.852, 37.34695053100586], [30.3055, 112.2887, 52.44985580444336], [46.7588, 130.3794, 6.199126720428467], [32.965, 114.018, 27.24033546447754], [22.5328, 113.024, 9.088382720947266], [36.6114, 116.988, 7.832073211669922], [32.996, 113.996, 27.028884887695312], [31.354, 119.818, 7.715263366699219], [38.0513, 114.4548, 39.444366455078125], [42.8775, 129.3675, -17.55632972717285], [26.6946, 119.5001, 15.473052978515625], [33.627, 119.0122, -2.1221776008605957], [28.4231, 119.879, 12.885031700134277], [29.635, 119.026, 18.774507522583008], [31.7275, 113.3583, 43.391727447509766], [41.5647, 120.4247, -16.82852554321289], [34.6231, 112.3844, 29.95342254638672], [30.1377, 104.6289, 39.0568962097168], [42.0186, 121.6561, -21.190149307250977], [29.5817, 105.0653, 38.50640106201172], [24.2719, 116.0797, 16.881315231323242], [39.5371, 75.9828, 60.14073944091797], [41.9206, 126.4047, -27.67131805419922], [27.583, 110.0394, 40.587162017822266], [33.4022, 120.118, -5.85304069519043], [26.6343, 106.7487, 21.319686889648438], [35.4234, 119.5198, -13.014437675476074], [28.1308, 112.8908, 46.04232406616211], [24.3406, 109.3886, 11.372244834899902], [21.7631, 108.3511, -0.0412263385951519], [27.11, 114.9739, 38.355464935302734], [42.8953, 125.1567, -23.222925186157227], [43.895, 81.2867, 36.06387710571289], [40.7736, 120.8631, -19.450298309326172], [32.935, 117.3086, 13.974043846130371], [40.5905, 110.0067, 35.445091247558594], [29.8208, 121.56, 2.376976251602173], [32.7639, 116.8028, 17.65567398071289], [26.8802, 100.2497, 6.056019306182861], [30.3714, 114.8989, 42.02790832519531], [29.7228, 106.626, 46.801151275634766], [43.85, 125.217, -17.33282470703125], [21.6828, 110.8592, 4.706589698791504], [33.5979, 114.6546, 18.06395149230957], [29.6007, 103.7506, 30.748319625854492], [47.7222, 128.8736, 8.688745498657227], [24.81119444, 113.5593889, 21.19120979309082], [29.315, 110.4417, 52.9672966003418], [27.7314, 112.0194, 44.35345458984375], [34.9058, 108.9344, 73.3124771118164], [29.5186, 106.54, 45.03333282470703], [40.0031, 116.407, 14.086536407470703], [31.9286, 102.1755, 32.96749496459961], [38.8756, 115.442, 28.465112686157227], [40.7688, 114.9032, 24.487699508666992], [38.0398, 114.6046, 38.22386932373047], [37.8792, 113.4922, 45.672489166259766], [31.0283, 103.613, 36.658729553222656], [31.3508, 118.3528, 20.84915542602539], [32.88922222, 115.7838889, 19.233003616333008], [36.0783, 111.5531, 54.87788772583008], [36.2126, 113.0886, 38.53411865234375], [21.8536, 111.9508, 6.95164680480957], [29.7736, 121.633, 2.274461030960083], [28.3586, 112.9958, 46.387298583984375], [37.4294, 122.1206, -27.433582305908203], [28.71583, 104.5761, 27.71603012084961], [31.5848, 120.354, 2.719644784927368], [31.2108, 107.4967, 50.96074295043945], [26.0797, 119.268, 15.896360397338867], [23.0467, 113.144, 10.228633880615234], [26.6383, 118.1694, 19.412391662597656], [27.9153, 113.0048, 45.078826904296875], [32.6975, 109.0072, 43.68513488769531], [31.955, 119.146, 10.23851490020752], [33.38256667, 104.9338889, 44.038658142089844], [37.8564, 113.5753, 45.09144592285156], [39.7711, 98.2908, -6.465610980987549], [30.6145, 116.9894, 33.01598358154297], [43.9469, 87.4754, 12.172079086303711], [39.5453, 116.7022, 12.690179824829102], [30.9219, 117.8561, 26.4186954498291], [34.7745, 113.641, 19.642799377441406], [32.41, 119.404, 5.5463337898254395], [22.5111, 113.4075, 9.87243366241455], [43.6156, 122.3039, -16.47052764892578], [37.7087, 112.7105, 50.544837951660156], [41.3472, 123.8142, -28.593931198120117], [43.831, 87.6432, 11.251374244689941], [22.8322, 100.9817, -4.977084636688232], [23.415, 111.2353, 9.975069999694824], [29.2958, 117.2111, 31.837949752807617], [30.21, 120.211, 8.627649307250977], [27.7019, 106.9242, 30.794912338256836], [30.0506, 103.8986, 34.421783447265625], [46.8032, 130.3648, 6.42054557800293], [33.9592, 118.2442, -1.609358310699463], [26.4519, 111.5989, 34.305965423583984], [31.1907, 121.703, -2.8016183376312256], [26.8576, 100.2143, 5.934791564941406], [47.2988, 123.945, 2.9025607109069824], [36.253, 120.014, -16.692543029785156], [32.9917, 112.5192, 34.784122467041016], [34.402, 115.6578, 8.601984024047852], [37.9844, 106.2025, 44.3768196105957], [45.2948, 131.0103, -0.8276121616363525], [33.3942, 120.156, -5.9270195960998535], [24.3898, 109.4883, 11.880548477172852], [30.9742, 118.7386, 18.38166618347168], [26.6029, 106.6856, 20.752492904663086], [31.2994, 120.543, 2.6096866130828857], [30.3515, 112.2068, 52.71183395385742], [30.5706, 104.079, 37.78671646118164], [21.5958, 109.2256, 1.5093345642089844], [44.1564, 87.9897, 11.3956298828125], [22.7875, 108.301, 1.2274398803710938], [26.2403, 107.5228, 21.622844696044922], [27.5578, 109.9972, 40.307945251464844], [30.4865, 106.6351, 49.532325744628906], [38.4975, 106.2328, 39.63273620605469], [30.9892, 112.1969, 52.314064025878906], [37.7379, 115.6426, 28.793109893798828], [36.1417, 106.2319, 57.78266906738281], [43.4569, 87.4651, 10.51982593536377], [24.3158, 109.4839, 11.415419578552246], [45.8194, 130.8625, 1.8116034269332886], [29.1389, 110.48, 52.054569244384766], [29.90166667, 121.6147222, 1.876765489578247], [34.7997, 111.1489, 48.31828689575195], [26.0931, 119.58, 15.7555570602417], [41.7972, 123.3997, -26.436634063720703], [25.5364, 103.8, 3.963871955871582], [31.7797, 116.5068, 29.194612503051758], [27.7569, 111.9561, 44.51778793334961], [38.9846, 117.3747, 7.537230968475342], [36.086, 114.32, 25.898181915283203], [39.9934, 116.315, 15.13493824005127], [37.7805, 112.488, 51.9144401550293], [29.7292, 115.988, 38.32076644897461], [27.8317, 99.7056, 9.524553298950195], [38.91194444, 121.6330556, -25.111434936523438], [43.941, 81.3364, 35.9381217956543], [37.18, 119.959, -17.221179962158203], [35.5294, 106.7039, 65.38094329833984], [33.581, 114.014, 21.24871253967285], [30.7819, 111.3296, 54.602142333984375], [38.5036, 106.1358, 38.63902282714844], [31.751, 119.579, 7.958433151245117], [29.6376, 94.3681, -3.8542728424072266], [38.85611111, 121.5180556, -24.72599220275879], [30.7157, 111.3009, 54.766239166259766], [40.8369, 111.751, 34.178043365478516], [36.4796, 115.9835, 17.849611282348633], [39.2474, 117.7918, 2.199385643005371], [37.825, 120.747, -22.158279418945312], [39.0877, 117.307, 7.922164440155029], [35.0003, 102.905, 31.014347076416016], [31.6219, 120.275, 3.0911812782287598], [29.6747, 91.1221, -9.633411407470703], [41.7156, 125.9361, -28.525768280029297], [34.2153, 117.256, 1.8361468315124512], [31.1108, 104.3539, 40.71464920043945], [29.8906, 121.554, 2.141085147857666], [30.65638889, 104.0238889, 37.8073844909668], [46.6219, 124.8648, -0.1885516494512558], [32.215, 119.491, 6.155381679534912], [29.9899, 103.0013, 29.474964141845703], [34.0117, 113.8331, 18.896089553833008], [42.8328, 93.4961, -4.364452838897705], [36.5458, 104.1731, 32.14608383178711], [26.6009, 106.7105, 20.859107971191406], [23.0944, 109.6014, 5.431493282318115], [29.4758, 113.2621, 48.59409713745117], [33.0069, 114.0131, 26.820310592651367], [22.6164, 110.1433, 4.492465019226074], [41.7381, 125.9486, -28.44437599182129], [37.8692, 112.5369, 51.55056381225586], [32.3292, 119.8767, 2.4112367630004883], [35.4039, 116.5546, 4.276780128479004], [29.9816, 103.0001, 29.424518585205078], [39.1654, 117.145, 9.350393295288086], [32.3878, 119.46, 5.31190299987793], [45.7478, 126.593, -3.8051743507385254], [40.1269, 113.2661, 39.71257781982422], [32.4246, 105.8153, 46.1016960144043], [30.6103, 114.4272, 43.10026931762695], [23.02777778, 113.7461111, 11.02894401550293], [35.9019, 114.17, 24.779129028320312], [38.4841, 106.2739, 40.17280197143555], [36.865, 120.537, -20.495683670043945], [39.2282, 106.7704, 36.397891998291016], [30.8811, 117.7442, 27.447725296020508], [23.2775, 116.7258, 16.289352416992188], [37.5639, 121.2514, -23.802335739135742], [27.8528, 113.13, 44.64420700073242], [34.5021, 109.4266, 66.79248809814453], [38.6016, 105.9512, 35.81303024291992], [32.8985, 117.3065, 14.402206420898438], [37.1152, 79.9485, 37.65324783325195], [26.567, 101.7227, 5.844590187072754], [36.799, 119.976, -17.280569076538086], [30.2997, 113.8531, 46.76096725463867], [41.9339, 123.6836, -26.512603759765625], [36.864, 118.78, -7.6726908683776855], [42.0486, 121.6592, -21.138322830200195], [41.1042, 121.835, -23.032054901123047], [38.03777778, 114.5480556, 38.68447494506836], [36.0714, 111.5028, 55.50455856323242], [26.5928, 101.5769, 5.829064846038818], [24.339, 102.5381, -0.3041914403438568], [30.66, 117.49, 29.91009521484375], [19.9969, 110.338, 7.734883785247803], [34.3469, 106.005, 55.67463302612305], [28.2264, 117.0222, 31.105546951293945], [30.0125, 103.009, 29.628238677978516], [38.2991, 116.8854, 13.849713325500488], [26.4364, 111.5992, 34.19276428222656], [23.8822, 100.0869, -3.285784959793091], [26.4214, 111.6156, 34.0975456237793], [23.0395, 113.105, 10.157379150390625], [29.53675, 106.4959, 44.99414825439453], [32.64600333, 117.0411667, 18.314903259277344], [37.9854, 112.549, 51.331260681152344], [28.0167, 120.671, 10.101637840270996], [33.5653, 114.0322, 21.289098739624023], [30.9414, 117.8178, 26.698820114135742], [27.9747, 120.76, 9.90828800201416], [24.4674, 117.6336, 17.165517807006836], [30.8217, 106.1031, 48.7587776184082], [35.0573, 118.3418, -7.461001396179199], [34.864, 117.5564, -3.0358448028564453], [22.0019, 100.7939, -3.396249532699585], [45.305, 130.9817, -0.8290312886238098], [44.2967, 86.0497, 17.818815231323242], [30.2747, 120.063, 9.509381294250488], [26.6761, 118.0966, 19.889707565307617], [37.3803, 118.0062, 1.1896449327468872], [36.8198, 118.3092, -3.3199265003204346], [31.9108, 119.905, 4.452476501464844], [40.0625, 124.3303, -32.015098571777344], [27.8159, 112.9227, 44.6827507019043], [45.7733, 126.689, -3.5904452800750732], [46.0707, 122.0931, -2.0874693393707275], [37.4967, 121.2611, -23.824066162109375], [33.6067, 118.989, -1.7883524894714355], [33.6128, 114.6613, 17.925270080566406], [22.6069, 113.104, 9.294591903686523], [45.7667, 126.635, -3.6630537509918213], [24.3304, 109.4108, 11.356789588928223], [41.1933, 80.2956, 36.80888366699219], [30.8064, 106.056, 48.63956069946289], [36.2211, 117.6983, -1.3638273477554321], [30.518, 106.631, 49.57069396972656], [32.1883, 119.68, 4.780490398406982], [32.0775, 118.795, 12.924458503723145], [31.6908, 113.3833, 43.53538513183594], [37.374, 120.399, -20.51482582092285], [31.6861, 118.5058, 17.861562728881836], [26.2331, 111.6236, 32.62247848510742], [28.8194, 104.5969, 28.89497947692871], [28.19, 112.9394, 46.113685607910156], [23.3892, 104.2319, -2.5576300621032715], [46.6527, 126.9636, 1.2214447259902954], [24.441, 98.578, -2.4156153202056885], [35.1147, 111.0414, 54.03593444824219], [31.4, 119.46, 10.441482543945312], [42.9061, 129.5042, -17.079084396362305], [47.9047, 88.1214, 26.52487564086914], [26.6607, 119.5202, 15.453057289123535], [40.8452, 111.659, 34.08254623413086], [29.7048, 115.9581, 38.42527770996094], [46.6462, 131.1516, 6.930846691131592], [35.5714, 104.6228, 40.36014175415039], [23.1323, 113.3208, 10.768146514892578], [30.0033, 120.7789, 5.32634162902832], [30.4133, 114.8131, 42.260189056396484], [39.8745, 116.434, 14.333706855773926], [44.0297, 87.2717, 13.099185943603516], [42.2814, 118.9233, -10.602408409118652], [45.2924, 130.962, -0.9365418553352356], [23.5739, 116.3594, 16.044509887695312], [30.1808, 120.088, 9.585582733154297], [36.6106, 109.5056, 74.70353698730469], [29.6541, 91.1774, -9.647536277770996], [44.5462, 129.6386, -7.603611946105957], [25.2708, 110.3089, 21.82892417907715], [43.8256, 126.55, -17.13253402709961], [45.755, 126.542, -3.786353588104248], [21.6669, 110.9067, 4.816696643829346], [34.9162, 113.6113, 20.686161041259766], [25.5811, 100.2171, 1.9618544578552246], [29.8539, 114.2894, 45.236812591552734], [26.9056, 112.5664, 38.09572982788086], [47.3382, 130.1097, 8.642910957336426], [31.4747, 104.7778, 43.658729553222656], [34.6258, 112.4275, 29.50146484375], [34.3672, 107.1906, 65.42493438720703], [32.18888889, 119.4369444, 6.718015670776367], [24.77908333, 113.6734722, 20.913612365722656], [23.5538, 113.589, 12.980339050292969], [35.4813, 112.8252, 32.06719970703125], [35.235, 113.261, 25.79953384399414], [41.8594, 123.9, -27.0651912689209], [22.7019, 110.1106, 4.735282897949219], [32.1403, 114.0122, 36.215702056884766], [24.795928, 113.598061, 21.061466217041016], [27.8136, 99.7064, 9.447911262512207], [36.0822, 111.5169, 55.38164520263672], [37.3617, 118.0018, 1.1928213834762573], [40.7579, 111.651, 35.39949035644531], [43.8167, 125.25, -17.550447463989258], [37.43445, 118.696, -6.124038219451904], [28.5808, 112.3458, 48.592098236083984], [26.6514, 118.1819, 19.377199172973633], [46.6572, 131.1638, 7.014768123626709], [35.4144, 116.5856, 4.0764970779418945], [24.68636111, 113.5970833, 20.20183563232422], [23.05361111, 113.7819444, 11.125190734863281], [31.7506, 118.5106, 17.513113021850586], [30.5719, 114.3672, 43.513275146484375], [29.4402, 112.9943, 49.38750457763672], [35.28385, 113.5922, 23.631322860717773], [30.698, 111.2992, 54.79401397705078], [45.7677, 131.0032, 1.7870570421218872], [45.5828, 84.8897, 26.000919342041016], [38.86388889, 121.625, -25.13355255126953], [35.272, 113.884, 21.411701202392578], [31.0935, 120.978, 0.6249176859855652], [34.9817, 118.2764, -7.010836124420166], [34.7967, 114.2886, 16.10268783569336], [30.4183, 120.301, 7.3054890632629395], [29.6453, 106.562, 46.03926086425781], [35.546, 112.8453, 32.75020980834961], [41.1953, 123.2, -27.502283096313477], [30.63, 104.1113889, 38.170440673828125], [27.5733, 109.9333, 40.272823333740234], [36.4343, 116.0072, 17.235544204711914], [36.6275, 109.4131, 74.981689453125], [30.5494, 114.3006, 43.902549743652344], [30.9414, 117.7806, 27.00251579284668], [45.6886, 85.1186, 25.652639389038086], [22.5931, 113.0819, 9.242015838623047], [27.0658, 114.9817, 38.06067657470703], [27.7231, 109.1794, 39.21914291381836], [24.6928, 108.054, 11.052659034729004], [35.5051, 112.85, 32.108673095703125], [43.962, 87.6444, 11.711877822875977], [23.5292, 116.4094, 16.068634033203125], [22.5978, 114.297, 11.661972045898438], [22.5545, 114.1063, 11.327731132507324], [43.8875, 126.555, -16.784360885620117], [41.1222, 121.1178, -20.195816040039062], [27.7297, 109.1916, 39.30217361450195], [27.8344, 114.9831, 40.36118698120117], [37.8531, 113.6292, 44.729915618896484], [22.0225, 100.8017, -3.461765766143799], [40.6511, 122.215, -25.023263931274414], [33.6347, 114.6758, 17.695789337158203], [26.5892, 104.8, 12.83285140991211], [33.3947, 120.225, -6.175895690917969], [29.6926, 116.0628, 37.97962951660156], [38.885, 121.5638889, -24.874107360839844], [39.6572, 106.7931, 31.087543487548828], [41.0903, 122.0539, -23.956151962280273], [41.8864, 124.0878, -27.158063888549805], [31.17, 120.635, 2.4941823482513428], [33.8561, 115.7831, 9.859200477600098], [36.913, 121.531, -23.994112014770508], [37.809, 120.773, -22.292299270629883], [23.3993, 103.3772, -2.553166151046753], [32.9735, 112.5003, 35.063804626464844], [41.7775, 123.478, -26.681068420410156], [29.1242, 110.4697, 51.958717346191406], [26.53111111, 107.8908333, 25.76649284362793], [35.0308, 110.9678, 54.24055862426758], [38.97388889, 121.6119444, -24.953683853149414], [31.2797, 107.5272, 50.83055114746094], [31.0483, 112.2014, 52.18276596069336], [30.2311, 119.6942, 12.449348449707031], [30.2897, 120.157, 8.780102729797363], [36.6622, 117.049, 7.555287837982178], [34.3731, 109.2186, 66.58831787109375], [33.1138, 107.0089, 45.14910125732422], [22.5497, 113.3881, 9.84521484375], [26.1092, 119.299, 15.866584777832031], [38.9108, 115.4713, 28.04985237121582], [28.1944, 113.0014, 46.02360153198242], [25.1174, 117.0181, 18.645750045776367], [35.2375, 115.474722, 12.166927337646484], [31.737, 119.579, 8.027791976928711], [29.57278, 106.4042, 44.85847854614258], [30.2989, 109.5039, 54.919761657714844], [31.7371, 116.508, 29.538394927978516], [25.9061, 113.0073, 30.53977394104004], [34.5911, 119.1478, -8.775489807128906], [37.197, 122.038, -26.64353370666504], [26.5155, 106.6948, 20.06419563293457], [29.305, 120.091, 11.229599952697754], [30.72358333, 103.97275, 37.72886276245117], [31.955, 119.18, 9.95034122467041], [35.6039, 103.2139, 30.375513076782227], [31.5031, 120.242, 3.8552093505859375], [38.4519, 112.7383, 49.59627151489258], [37.8873, 112.522, 51.61876678466797], [37.3753, 97.3731, -4.860711574554443], [31.2261, 121.425, -1.9189391136169434], [32.0572, 118.749, 13.506718635559082], [29.5867, 115.9936, 38.17415237426758], [33.5039, 119.135, -1.8287856578826904], [39.4365, 75.9435, 60.39534378051758], [23.7208, 109.2131, 7.790566921234131], [31.7308, 113.3983, 43.164764404296875], [27.7842, 114.3953, 42.002872467041016], [36.8088, 118.0482, -1.3029067516326904], [27.8728, 112.8937, 44.98651123046875], [23.0048, 113.134, 10.04841423034668], [28.6047, 112.3347, 48.7009162902832], [36.0211, 106.2375, 58.4773063659668], [29.3547, 110.5594, 53.2477912902832], [31.4539, 104.7536, 43.50944137573242], [39.5989, 109.8119, 51.117774963378906], [32.395, 111.0419, 46.80022430419922], [31.172, 120.658, 2.3390891551971436], [22.805, 108.383, 1.4576246738433838], [34.3164, 108.7369, 67.99530029296875], [41.9228, 123.3783, -26.024049758911133], [34.794, 111.158, 48.10221481323242], [31.2284, 121.533, -2.3430185317993164], [27.8403, 112.9118, 44.81314468383789], [29.2365, 88.8931, -1.939316749572754], [31.317, 119.438, 10.97404956817627], [22.9394, 112.0369, 8.341524124145508], [25.0405, 102.722, 1.8739453554153442], [34.7822, 111.19, 47.43986129760742], [25.7759, 113.0348, 29.40973663330078], [40.0917, 113.3444, 39.57231903076172], [36.5819, 101.834, 17.924898147583008], [38.4928, 112.7003, 49.77049255371094], [40.916, 107.5936, 18.823257446289062], [34.2629, 108.993, 66.34515380859375], [34.8731, 108.9589, 73.01300811767578], [23.1478, 109.5681, 5.634126663208008], [31.92, 120.302, 1.5249029397964478], [42.2953, 123.8831, -25.21218490600586], [43.6801, 122.2532, -15.961701393127441], [26.5917, 104.83, 12.972387313842773], [25.4792, 118.981, 16.181989669799805], [28.4459, 117.973, 25.159164428710938], [32.6939, 109.0281, 43.72480773925781], [39.3265, 112.4078, 48.37761688232422], [32.3061, 118.3158, 15.554638862609863], [36.6164, 114.5426, 30.940446853637695], [27.2582, 111.4908, 40.273921966552734], [41.0112, 117.9384, -3.698774814605713], [37.9648, 106.1532, 44.05499267578125], [41.0971, 122.9642, -27.01409912109375], [34.7496, 113.5991, 19.80585289001465], [27.8953, 102.2311, 12.763525009155273], [29.5634, 103.757, 30.502395629882812], [32.4429, 105.8242, 46.06855773925781], [29.6535, 116.0174, 38.1376953125], [34.719, 113.734, 18.893226623535156], [47.3349, 130.2659, 8.892274856567383], [46.619, 131.1651, 6.807972431182861], [34.378, 108.869, 68.48124694824219], [38.8707, 115.5214, 27.676271438598633], [30.7525, 120.7844444, 2.9062087535858154], [22.96583333, 113.7383333, 10.90847110748291], [32.9683, 112.55, 34.89059066772461], [39.8129, 110.0023, 48.39086151123047], [29.2647, 117.1558, 32.157711029052734], [30.5514, 114.2511, 44.1667594909668], [27.8847, 102.2689, 12.772002220153809], [35.7672, 115.0628, 17.67444610595703], [30.696, 111.268, 54.846214294433594], [41.765, 123.41, -26.547365188598633], [41.8417, 123.7117, -26.912029266357422], [26.5894, 104.8475, 13.027814865112305], [25.0492, 101.538, 1.3449198007583618], [27.9639, 116.3598, 34.983543395996094], [33.6481, 116.9765, 7.327980041503906], [41.0833, 122.9481, -26.990854263305664], [37.4514, 105.0197, 35.607017517089844], [26.8906, 100.2203, 6.071312427520752], [35.5236, 107.6406, 73.10145568847656], [22.7422, 114.5317, 12.15954875946045], [35.31, 113.836, 21.993274688720703], [30.3944, 114.8878, 42.01094055175781], [39.0927, 117.202, 9.00466251373291], [32.1078, 114.1044, 36.01720428466797], [35.5461, 106.6692, 64.9804458618164], [37.5211, 111.1406, 62.48680114746094], [40.9843, 117.9525, -3.786773681640625], [33.9506, 118.3214, -1.843782663345337], [32.939, 117.3961, 13.637176513671875], [23.3594, 104.2533, -2.5881154537200928], [36.881, 118.746, -7.28180456161499], [36.6872, 116.989, 8.429494857788086], [34.802, 113.564, 20.255525588989258], [24.5058, 118.0936, 17.00589370727539], [43.9311, 116.0781, -0.5065719485282898], [34.6692, 112.3628, 30.399477005004883], [36.6428, 101.748, 17.172964096069336], [33.7214, 113.3064, 23.612472534179688], [36.1031, 103.631, 30.599430084228516], [29.5822, 105.0406, 38.366756439208984], [32.8913, 117.4186, 14.10708999633789], [23.3682, 103.3758, -2.6163477897644043], [43.9404, 81.2815, 36.195777893066406], [27.8042, 114.9119, 40.557010650634766], [29.7125, 106.617, 46.70706558227539], [32.0092, 118.737, 13.926288604736328], [28.8833, 105.4322, 34.31486129760742], [35.27, 115.455, 12.477950096130371], [40.7612, 111.717, 35.33069610595703], [42.8172, 93.5128, -4.418981075286865], [40.1952, 116.23, 15.334046363830566], [26.0542, 119.389, 15.851081848144531], [45.1642, 124.8528, -7.9059295654296875], [34.3181, 108.6761, 68.13520812988281], [40.7378, 107.3715, 19.957805633544922], [30.9431, 118.7175, 18.681499481201172], [28.2189, 112.8872, 46.259857177734375], [46.528, 125.112, -0.5691072344779968], [33.8715, 109.9154, 51.75728225708008], [40.1503, 124.4256, -32.1027717590332], [32.0903, 112.2106, 45.862369537353516], [42.2556, 118.8789, -10.39291000366211], [39.9567, 119.6023, -13.120049476623535], [22.4853, 113.4411, 9.943946838378906], [39.5986, 109.7736, 51.004486083984375], [36.5776, 114.5035, 30.773622512817383], [32.4639, 119.888, 1.544019341468811], [39.0845, 117.1589, 9.480733871459961], [25.8567, 98.8601, 1.7530419826507568], [22.5625, 114.117, 11.349023818969727], [34.2713, 108.954, 66.67876434326172], [43.7878, 125.454, -17.753456115722656], [28.9664, 118.871, 20.16752815246582], [23.1617, 112.565, 9.983491897583008], [31.8108, 119.9736, 4.4049072265625], [29.261, 91.7706, -9.346835136413574], [28.9583, 105.4306, 35.032283782958984], [33.027, 112.5573, 34.224308013916016], [30.51197222, 117.0331111, 32.971214294433594], [31.9051, 117.16, 26.486492156982422], [27.725, 111.9975, 44.292327880859375], [40.7136, 120.9092, -19.69610023498535], [23.65889, 116.6183, 16.483549118041992], [26.4364, 106.6554, 19.19952964782715], [31.8706, 117.259, 26.301973342895508], [38.2911, 109.7456, 65.89642333984375], [34.2778, 117.2933, 1.2694385051727295], [33.568, 114.005, 21.40148162841797], [38.00583333, 114.4586111, 39.3599967956543], [32.3153, 118.3094, 15.528887748718262], [38.80805556, 121.2588889, -23.804929733276367], [47.7317, 128.9094, 8.782451629638672], [41.5931, 120.4439, -16.908267974853516], [45.8167, 126.561, -3.420783758163452], [34.6686, 112.4433, 29.529735565185547], [31.8766, 117.307, 26.029434204101562], [28.2053, 113.0792, 45.895877838134766], [34.5653, 105.8614, 55.33872604370117], [42.3022, 123.8139, -25.111522674560547], [26.5495, 106.6867, 20.310789108276367], [23.0706, 112.427, 9.363152503967285], [34.7538, 113.6356, 19.589265823364258], [29.9834, 103.0109, 29.47467613220215], [21.865, 111.9494, 6.937244415283203], [30.7856, 106.1064, 48.74343490600586], [28.2169, 116.9983, 31.239133834838867], [39.0631, 121.9769, -26.268686294555664], [39.6679, 118.2185, -3.5942089557647705], [32.6778, 109.0311, 43.783634185791016], [28.9745, 118.855, 20.293222427368164], [45.0878, 124.8292, -8.41234016418457], [31.2058, 107.4611, 50.9024772644043], [41.3369, 123.7528, -28.476741790771484], [35.3962, 119.54, -13.008018493652344], [32.1342, 114.0681, 35.960853576660156], [34.407, 115.6386, 8.709428787231445], [29.334, 120.04, 11.627514839172363], [34.2417, 117.192, 1.945876955986023], [23.105, 113.433, 10.756397247314453], [26.6266, 106.6243, 20.64071273803711], [37.7124, 112.469, 52.06881332397461], [43.1847, 124.3897, -21.12079620361328], [29.7207, 118.3236, 23.554258346557617], [45.8309, 130.9467, 2.0343778133392334], [31.4656, 104.6717, 43.04743957519531], [30.6617, 117.4697, 30.053876876831055], [39.625, 121.989, -25.458572387695312], [46.5776, 125.1386, -0.3101334571838379], [36.0725, 103.841, 31.945919036865234], [25.1035, 117.0216, 18.603775024414062], [49.1577, 119.7512, 9.799446105957031], [22.8464, 108.239, 1.2575854063034058], [25.0311, 117.0151, 18.43132781982422], [35.4178, 119.4641, -12.83191204071045], [37.5002, 105.1971, 37.08298873901367], [33.63063889, 116.989, 7.442060947418213], [23.1036, 109.5683, 5.40507173538208], [23.7369, 109.2317, 7.9174485206604], [30.049, 119.946, 10.98256778717041], [25.0124, 102.743, 1.8017452955245972], [30.4753, 114.1525, 44.92523193359375], [38.0524, 114.5214, 38.916343688964844], [34.29, 117.1814, 1.6827106475830078], [30.1142, 104.6469, 39.066829681396484], [29.8506, 121.524, 2.4002084732055664], [36.0464, 103.831, 31.99590492248535], [39.6308, 118.1662, -2.924475908279419], [41.0831, 123.0156, -27.19329833984375], [31.9438, 117.266, 25.699193954467773], [29.8181, 114.3036, 45.170406341552734], [41.2894, 123.1417, -27.126394271850586], [35.248889, 115.42277, 12.543558120727539], [42.2864, 123.8489, -25.221240997314453], [27.7758, 115.0586, 40.021156311035156], [38.5339, 102.1725, 8.75931453704834], [35.1764, 113.2464, 25.476531982421875], [33.0706, 107.0154, 44.66593551635742], [34.2911, 117.244, 1.3982831239700317], [34.3956, 108.7197, 69.0613784790039], [31.371, 119.794, 7.845973968505859], [34.2749, 108.882, 67.05379486083984], [31.7848, 117.196, 27.15899085998535], [30.0874, 103.8416, 34.2965087890625], [31.1167, 104.4053, 41.05506896972656], [34.2572, 109.06, 65.883056640625], [37.364, 120.394, -20.483034133911133], [27.8408, 102.2714, 12.564695358276367], [36.7731, 119.1939, -11.425179481506348], [40.1097, 113.3819, 39.26713943481445], [29.33972, 104.7228, 34.396358489990234], [30.9697, 117.8472, 26.382253646850586], [44.6104, 129.6459, -7.191829681396484], [29.6039, 115.9114, 38.54738235473633], [36.6525, 119.1638, -11.211731910705566], [31.9025, 102.2218, 33.08619689941406], [34.3274, 109.043, 67.09973907470703], [33.3681, 120.1631, -5.784445762634277], [31.85805556, 106.7619444, 47.981056213378906], [31.1956, 107.5069, 51.00912857055664], [27.2317, 111.4733, 40.05164337158203], [39.16969, 117.2099, 8.65927791595459], [26.2625, 117.6211, 21.158472061157227], [40.9733, 117.8184, -2.819042921066284], [37.4372, 116.2714, 21.558347702026367], [27.8244, 113.135, 44.507301330566406], [31.3178, 118.3708, 20.812211990356445], [25.0992, 104.8811, 4.157177448272705], [31.4846, 92.0657, -11.866283416748047], [30.1819, 120.27, 8.29468822479248], [22.9169, 112.0392, 8.263961791992188], [31.909, 120.237, 2.012200117111206], [41.9967, 121.6178, -21.112529754638672], [31.7956, 117.302, 26.57875633239746], [46.7975, 130.3258, 6.327981472015381], [25.0441, 101.5482, 1.33578622341156], [29.6514, 91.1319, -9.605944633483887], [31.7897, 119.8914, 5.145611763000488], [36.0022, 106.2792, 59.03030776977539], [29.2718, 88.8876, -2.041842222213745], [36.7019, 119.12, -10.881235122680664], [29.1029, 119.686, 14.392060279846191], [29.6632, 94.3616, -3.9154067039489746], [37.7111, 112.7306, 50.416221618652344], [40.8725, 114.904, 23.718246459960938], [31.4189, 118.37, 20.386022567749023], [31.3008, 121.467, -2.358477830886841], [25.8071, 113.0383, 29.677461624145508], [23.3917, 113.215, 11.910152435302734], [21.2706, 110.3539, 3.77655291557312], [32.4611, 119.9219, 1.3205028772354126], [30.4663, 106.6271, 49.4763069152832], [30.3058, 120.348, 7.3820037841796875], [30.3119, 120.12, 8.980706214904785], [21.4689, 111.0286, 5.130690097808838], [23.6714, 116.6339, 16.50751304626465], [31.3264, 120.596, 2.1475911140441895], [34.2761, 117.167, 1.8362576961517334], [38.49494, 106.1024, 38.39935302734375], [31.7386, 117.278, 27.04111099243164], [36.39, 120.47, -18.79095458984375], [31.671, 120.721, -0.0409519299864769], [35.767, 115.0772, 17.60408592224121], [37.062, 114.4854, 35.670166015625], [34.3474, 108.935, 67.88980102539062], [30.2692, 120.19, 8.602436065673828], [27.2944, 105.31, 19.25632667541504], [32.1319, 119.43, 7.098855495452881], [27.2537, 111.4503, 40.21109390258789], [38.4186, 112.7356, 49.64241409301758], [23.3633, 116.7244, 16.343122482299805], [28.6844, 115.931, 36.999000549316406], [41.7128, 86.2381, 8.69404125213623], [21.2679, 110.3316, 3.7307825088500977], [30.3175, 112.2551, 52.55842971801758], [46.5888, 131.1572, 6.627132892608643], [28.6425, 115.892, 37.17300033569336], [27.72, 106.9178, 30.90583610534668], [41.0931, 123.011, -27.161203384399414], [37.161, 122.41, -28.05910873413086], [46.8025, 130.2719, 6.271578788757324], [30.9222, 117.8078, 26.829273223876953], [36.4372, 115.9848, 17.447755813598633], [40.6821, 109.8538, 33.535606384277344], [39.1082, 117.237, 8.584576606750488], [23.1142, 114.4103, 12.501315116882324], [32.0878, 118.626, 14.524069786071777], [27.8072, 114.4011, 42.03923416137695], [30.5103, 117.0549, 32.86042404174805], [41.0385, 113.1076, 29.817455291748047], [36.5336, 116.734, 10.206116676330566], [31.5475, 120.354, 2.883232355117798], [27.8978, 102.2625, 12.832527160644531], [27.1311, 114.99, 38.444068908691406], [25.0359, 102.638, 1.8460781574249268], [28.2597, 112.9792, 46.14573287963867], [41.2864, 123.7669, -28.62451934814453], [47.3489, 130.3172, 9.049278259277344], [36.907, 121.544, -24.017972946166992], [32.5714, 110.8839, 45.49238586425781], [25.8417, 98.8546, 1.7034331560134888], [30.2028, 115.0767, 41.766353607177734], [27.8667, 113.167, 44.65747833251953], [34.5885, 119.176, -8.879237174987793], [23.6936, 113.0425, 13.634079933166504], [35.0992, 117.4518, -2.7632346153259277], [29.5467, 103.7705, 30.444067001342773], [35.4934, 112.835, 32.11894607543945], [28.2403, 117.0281, 31.092880249023438], [43.95305556, 126.4738889, -16.451059341430664], [28.0089, 120.634, 10.233806610107422], [21.6533, 110.9294, 4.8707194328308105], [31.1208, 104.4219, 41.15944290161133], [29.355, 113.2117, 48.56949234008789], [35.7289, 107.6831, 73.04204559326172], [31.3019, 120.591, 2.2747669219970703], [34.4286, 115.6697, 8.503852844238281], [30.6347, 105.8161, 47.344791412353516], [24.44583333, 118.0636111, 16.99414825439453], [41.2736, 123.1761, -27.255752563476562], [32.1083, 118.803, 12.645977020263672], [35.0611, 111.0233, 53.71828842163086], [27.8614, 112.9433, 44.89736557006836], [35.4883, 112.8564, 31.793119430541992], [47.3386, 123.9305, 3.0908358097076416], [26.8956, 112.6211, 38.02742004394531], [29.077, 119.647, 14.683775901794434], [37.0172, 105.18, 39.81446838378906], [22.9539, 112.0539, 8.415273666381836], [30.1259, 104.6294, 39.00386428833008], [26.6611, 119.5392, 15.415992736816406], [24.5157, 117.6569, 17.16887092590332], [36.9639, 100.9048, 11.759843826293945], [40.9359, 117.963, -3.8326315879821777], [37.393, 117.9776, 1.5057295560836792], [44.8969, 82.0806, 35.129520416259766], [46.0703, 122.0506, -2.0678796768188477], [31.8585, 117.336, 26.013914108276367], [36.5767, 109.4824, 74.85469055175781], [33.721, 113.322, 23.534759521484375], [32.5, 80.1161, 42.5868034362793], [37.739, 115.6906, 28.3012638092041], [36.6028, 109.4761, 74.82805633544922], [27.5444, 109.9453, 40.08756637573242], [21.9508, 108.6553, 0.5434721112251282], [29.3411, 104.7692, 34.714508056640625], [28.0797, 116.2239, 35.801063537597656], [36.61981, 114.4965, 31.32602310180664], [32.0723, 118.778, 13.127043724060059], [28.9026, 105.4436, 34.562068939208984], [26.2081, 111.6217, 32.40537643432617], [42.9409, 89.191, 4.533915996551514], [30.0911, 120.598, 6.300558567047119], [34.3017, 107.0708, 63.892276763916016], [40.8033, 111.658, 34.713768005371094], [33.0122, 112.5224, 34.54821014404297], [26.9258, 112.6194, 38.260292053222656], [28.2675, 109.6958, 44.81395721435547], [31.422, 121.14, -1.3649059534072876], [32.105, 118.907, 11.620685577392578], [30.6872, 104.176, 38.67551040649414], [40.8367, 114.8985, 24.02129554748535], [43.55, 125.633, -19.23818588256836], [30.2756, 118.1371, 24.911890029907227], [41.9419, 126.4078, -27.595083236694336], [32.4285, 105.8624, 46.13857650756836], [35.5997, 103.2064, 30.352006912231445], [41.8336, 123.542, -26.62473487854004], [36.1542, 113.1097, 37.63370132446289], [41.1442, 123.0485, -27.174266815185547], [29.2786, 117.1983, 31.893571853637695], [39.643, 118.144, -2.736048698425293], [23.1572, 112.885, 10.339311599731445], [29.6219, 106.65, 46.1888427734375], [41.8472, 123.428, -26.362831115722656], [30.7946, 120.744, 3.0378963947296143], [25.0661, 117.0256, 18.501523971557617], [33.0014, 97.0, 6.564761161804199], [31.89708, 121.1518, -3.1992006301879883], [24.428, 98.5842, -2.447524309158325], [39.1067, 117.1941, 9.039012908935547], [40.1461, 124.3933, -32.040828704833984], [30.2456, 120.127, 9.126708030700684], [22.5908, 114.263, 11.601888656616211], [29.7128, 118.3057, 23.683883666992188], [44.0114, 87.2997, 12.946736335754395], [32.4535, 105.8945, 46.10779571533203], [24.7121, 108.2134, 11.60263442993164], [30.4519, 114.8858, 41.84183883666992], [39.7153, 76.1861, 58.99924087524414], [24.3702, 102.5389, -0.2039027065038681], [27.8381, 113.143, 44.56020736694336], [31.7133, 118.6439, 16.43545913696289], [37.9097, 114.3541, 39.92433166503906], [44.3336, 84.8983, 21.700183868408203], [42.2725, 118.9572, -10.731684684753418], [29.36028, 104.7778, 34.94191360473633], [25.442, 119.0156, 16.16506576538086], [31.2036, 121.478, -2.0421793460845947], [38.8394, 117.457, 7.067169189453125], [24.4175, 111.5269, 16.372665405273438], [37.177, 119.941, -17.085010528564453], [30.2819, 109.4689, 54.84590530395508], [38.5061, 102.1708, 8.91513729095459], [39.6719, 106.8219, 31.13584327697754], [43.84, 125.2786, -17.409704208374023], [32.9444, 117.3575, 13.713696479797363], [22.4137, 107.3476, -1.5539560317993164], [36.1855, 113.0844444, 38.255367279052734], [34.5004, 109.5049, 66.0462875366211], [31.56, 120.294, 3.233407974243164], [32.0144, 118.777, 13.493696212768555], [40.8115, 114.8814, 24.311038970947266], [29.9972, 101.9533, 25.24783706665039], [35.5102, 102.0199, 24.251821517944336], [37.8561, 113.5922, 44.979286193847656], [34.3708, 107.1586, 65.26131439208984], [23.4168, 103.386, -2.5117294788360596], [37.4489, 116.3189, 20.99471664428711], [35.0147, 110.9956, 53.60867691040039], [29.8264, 106.424, 46.61863327026367], [34.7545, 113.681, 19.313371658325195], [23.6706, 116.6447, 16.512676239013672], [36.3083, 120.1964, -17.61468505859375], [30.8388, 106.1087, 48.780601501464844], [43.8667, 125.417, -17.253759384155273], [27.9883, 116.3553, 35.04062271118164], [39.9419, 119.5369, -12.77008056640625], [33.8399, 115.8067, 9.900115013122559], [30.2099, 115.0264, 41.92641067504883], [33.737, 113.182, 24.145973205566406], [27.9164, 112.4876, 45.357723236083984], [27.8036, 114.3442, 42.1767463684082], [26.57098, 101.68912, 5.821652889251709], [22.2294, 113.495, 9.985739707946777], [38.44139, 106.2275, 40.15150833129883], [24.6967, 108.1009, 11.201106071472168], [25.0836, 102.728, 1.987164855003357], [24.9624, 102.625, 1.6429338455200195], [31.1278, 97.1804, 9.010848999023438], [38.5247, 102.1878, 8.8787841796875], [31.381, 120.999, -0.5105462670326233], [28.4569, 118.0058, 24.980058670043945], [32.1142, 112.1825, 45.74961471557617], [34.3617, 108.7233, 68.62138366699219], [23.8982, 100.0782, -3.2497811317443848], [41.1636, 80.2828, 36.85694885253906], [32.6028, 116.8556, 19.546175003051758], [36.1942, 117.1436, 3.049790859222412], [37.0967, 114.4821, 35.902488708496094], [38.817, 106.3394, 37.25208282470703], [32.9673, 117.3536, 13.45848274230957], [30.4576, 106.6303, 49.469444274902344], [30.6197, 114.2836, 43.7799072265625], [41.1556, 122.0247, -23.755054473876953], [38.9194, 117.157, 9.930553436279297], [39.9522, 116.434, 14.013594627380371], [36.087, 114.358, 25.64086151123047], [43.7256, 126.6772, -17.621623992919922], [40.6532, 109.8756, 34.04833221435547], [24.9617, 118.6108, 16.71100425720215], [36.792, 119.952, -17.125959396362305], [29.5953, 105.0331, 38.41765213012695], [31.2472, 120.561, 2.684483766555786], [30.1506, 104.6356, 39.16343688964844], [33.1842, 106.9893, 45.962860107421875], [36.0875, 111.5025, 55.606014251708984], [31.8934, 102.2402, 33.1375732421875], [24.8978, 118.5972, 16.73961067199707], [22.8561, 108.316, 1.4562548398971558], [27.8336, 113.251, 44.390281677246094], [31.2703, 120.613, 2.25], [35.303, 113.883, 21.62061309814453], [39.3673, 112.4279, 48.03807067871094], [32.6389, 110.7258, 45.081298828125], [38.1398, 114.5019, 39.13100051879883], [26.6272, 118.1756, 19.35234260559082], [33.6284, 116.9677, 7.521671772003174], [33.965, 118.283, -1.8110541105270386], [36.7339, 119.0841, -10.59679126739502], [37.9358, 102.6469, 14.599306106567383], [41.7089, 123.439, -26.758790969848633], [22.7906, 108.439, 1.551128625869751], [43.8358, 126.5844, -17.059349060058594], [31.882, 120.55, 0.0854366347193718], [41.8828, 123.9169, -26.99028778076172], [31.656, 120.734, -0.045798808336257935], [34.5667, 117.732, -2.965125322341919], [45.61, 126.615, -4.662783622741699], [29.5983, 106.296, 44.47829818725586], [45.7258, 126.646, -3.915009021759033], [33.575, 119.007, -1.625833511352539], [23.08, 114.4053, 12.446666717529297], [28.5819, 112.3744, 48.56157302856445], [43.9167, 125.323, -16.929231643676758], [22.5811, 113.074, 9.21757698059082], [38.843, 105.6975, 30.597612380981445], [27.6178, 113.865, 42.466827392578125], [30.4551, 106.6388, 49.487850189208984], [23.01277778, 113.7944444, 11.085429191589355], [30.8244, 120.07, 7.619269847869873], [34.3547, 107.1431, 64.98710632324219], [36.6739, 117.114, 6.953653335571289], [22.8693, 112.844, 9.193331718444824], [23.7233, 114.6892, 14.028474807739258], [25.3167, 110.4144, 22.467777252197266], [28.6459, 121.273, 6.859445571899414], [26.8919, 112.6006, 37.99558639526367], [33.0323, 107.007, 44.278175354003906], [30.0475, 101.9603, 25.56814956665039], [30.7636, 106.0642, 48.628807067871094], [35.259, 113.1992, 26.458457946777344], [32.2786, 118.3244, 15.686131477355957], [36.1758, 117.1081, 3.27036190032959], [22.735, 108.328, 1.1321156024932861], [22.3708, 107.3701, -1.5825737714767456], [27.3125, 105.2864, 19.27161979675293], [33.567, 114.056, 21.16689682006836], [34.3528, 107.3906, 66.45465850830078], [38.8343, 105.6775, 30.474016189575195], [36.283, 120.008, -16.71552085876465], [34.7745, 117.5852, -2.9437713623046875], [23.2783, 113.568, 11.594331741333008], [33.3261, 105.0822, 44.493690490722656], [36.6377, 117.9544, -1.1855134963989258], [26.5689, 106.6971, 20.525127410888672], [43.768, 87.6046, 11.148246765136719], [41.7561, 123.535, -26.855266571044922], [41.0228, 123.1289, -27.63267707824707], [27.8014, 114.3806, 42.07907485961914], [44.561, 129.61, -7.564774513244629], [29.9919, 120.605, 6.4964919090271], [37.4658, 118.5019, -3.929238796234131], [25.8333, 114.9322, 28.622793197631836], [23.9011, 106.6103, 1.897778034210205], [38.2839, 109.7289, 65.95281219482422], [45.6033, 84.8861, 26.087268829345703], [30.9447, 118.7581, 18.292179107666016], [25.2178, 110.2869, 21.312149047851562], [26.2378, 117.6028, 21.13304901123047], [22.8172, 114.3244, 11.92020034790039], [40.1194, 124.3678, -32.0221061706543], [41.9086, 123.5953, -26.460830688476562], [31.238, 121.4, -1.8664597272872925], [26.5697, 106.7164, 20.626476287841797], [22.7833, 108.244, 1.0837863683700562], [40.7866, 111.551, 34.9712028503418], [31.7039, 119.935, 5.205443382263184], [45.5422, 126.979, -4.863104820251465], [19.9507, 110.576, 8.530689239501953], [30.6414, 114.2131, 44.082340240478516], [37.9311, 102.6219, 14.500897407531738], [39.3606, 112.4549, 47.946372985839844], [46.8267, 130.3961, 6.5998358726501465], [35.94, 104.148, 34.650779724121094], [29.4892, 106.634, 45.14720153808594], [23.1422, 113.235, 10.720590591430664], [23.06, 113.7480556, 11.082254409790039], [29.1128, 119.6533, 14.662880897521973], [36.2092, 117.7181, -1.5943043231964111], [27.7044, 111.9892, 44.12625503540039], [31.87888889, 106.7513889, 47.90628433227539], [29.2313, 91.7608, -9.319488525390625], [34.5814, 105.7281, 53.799163818359375], [35.7511, 114.2956, 22.22616195678711], [47.8515, 88.1267, 26.272525787353516], [37.9723, 106.196, 44.41191101074219], [38.8632, 115.493, 27.990100860595703], [23.8844, 106.6527, 1.9027539491653442], [39.1495, 117.3916, 6.7970194816589355], [36.2403, 120.6659, -19.01422691345215], [39.1292, 106.7096, 37.03474044799805], [38.01777778, 114.5330556, 38.78537368774414], [32.1383, 114.0614, 35.95771408081055], [31.8572, 117.25, 26.433330535888672], [24.9117, 118.5819, 16.74700927734375], [28.4622, 117.9511, 25.305335998535156], [32.8928, 115.8275, 18.971811294555664], [25.067, 102.681, 1.9329941272735596], [24.3289, 116.1278, 17.071575164794922], [28.6969, 115.973, 36.820858001708984], [28.1178, 112.9844, 45.900936126708984], [44.3075, 86.0697, 17.792959213256836], [28.7867, 104.6061, 28.626436233520508], [38.0108, 112.434, 51.970436096191406], [29.4251, 113.1493, 48.86446762084961], [36.6868, 117.0684, 7.53983211517334], [45.7319, 126.685, -3.8529796600341797], [34.8019, 113.675, 19.553041458129883], [28.4586, 119.93, 12.593977928161621], [21.2567, 110.4558, 4.007113456726074], [30.9285, 113.9153, 44.698333740234375], [32.0005, 120.86, -2.125056266784668], [29.6475, 91.0874, -9.562313079833984], [27.4948, 114.0944, 41.73952865600586], [42.0352, 119.2654, -11.999184608459473], [40.5546, 110.0377, 36.10618209838867], [29.6292, 91.0834, -9.53062629699707], [40.0844, 113.2711, 39.97203063964844], [46.3991, 124.8847, -1.3307747840881348], [27.6231, 113.8447, 42.50830078125], [27.6486, 106.8906, 30.218246459960938], [31.92, 120.268, 1.7473456859588623], [39.2133, 117.1837, 8.77032470703125], [23.4714, 116.7519, 16.427352905273438], [30.5489, 117.0486, 32.8276481628418], [31.4867, 120.269, 3.727909803390503], [23.1331, 113.26, 10.709260940551758], [25.8226, 113.0116, 29.802656173706055], [36.61763, 114.5129, 31.16811180114746], [33.9461, 116.7844, 5.672861099243164], [27.7914, 114.3703, 42.08314895629883], [40.0181, 119.7624, -13.965706825256348], [43.8228, 126.4978, -17.170848846435547], [28.2558, 109.6414, 44.597721099853516], [25.9118, 114.9064, 29.41590118408203], [35.4894, 112.8664, 31.691354751586914], [34.3497, 107.2058, 65.32609558105469], [34.6511, 112.3939, 29.97661590576172], [28.7442, 115.813, 37.58279800415039], [26.9089, 112.5328, 38.113285064697266], [28.7994, 115.742, 38.00511169433594], [28.9703, 111.6975, 51.122589111328125], [36.1912, 113.1569, 37.607540130615234], [40.9161, 117.9664, -3.8440606594085693], [34.7781, 114.3389, 15.770843505859375], [23.2536, 116.4019, 15.821475982666016], [47.3227, 123.9483, 3.018122673034668], [36.2403, 120.4001, -18.111631393432617], [27.9647, 116.385, 34.831336975097656], [30.7478, 120.726, 3.317737579345703], [24.81805556, 118.1569444, 17.04302978515625], [24.299, 109.4221, 11.19800853729248], [41.8469, 123.81, -27.013397216796875], [29.4822, 106.364, 43.948665618896484], [26.5017, 101.7453, 5.658785820007324], [31.8531, 106.7594, 47.99956512451172], [31.96, 120.913, -2.261739492416382], [29.6816, 115.9872, 38.2889518737793], [28.6839, 115.8886, 37.18332290649414], [26.0753, 119.315, 15.869211196899414], [42.8947, 125.1358, -23.219524383544922], [39.3514, 112.44, 48.07219696044922], [39.5343, 116.7464, 12.243640899658203], [31.0386, 112.2211, 52.143314361572266], [27.2272, 111.4328, 39.986663818359375], [26.585, 101.7169, 5.897998332977295], [38.9389, 100.4497, -0.023069065064191818], [45.6175, 122.8211, -4.4503583908081055], [41.7192, 86.2022, 8.848092079162598], [42.9559, 89.1673, 4.641586780548096], [29.3864, 117.3097, 31.286935806274414], [28.56, 112.3439, 48.5085563659668], [44.9079, 82.0485, 35.302284240722656], [44.5782, 129.6115, -7.455276966094971], [35.5975, 104.6169, 40.205230712890625], [38.8416, 115.4612, 28.384586334228516], [31.453, 121.115, -1.3604427576065063], [37.7394, 112.5583, 51.519256591796875], [37.85, 113.5158, 45.473392486572266], [36.061, 114.483, 24.45028305053711], [29.3678, 113.1772, 48.693660736083984], [39.6295, 118.1997, -3.2737345695495605], [36.0756, 103.712, 31.16809844970703], [31.7586, 119.996, 4.480136871337891], [35.7067, 107.6364, 72.77762603759766], [27.3361, 103.7225, 13.186782836914062], [23.0528, 112.471, 9.337953567504883], [22.75, 114.085, 11.423041343688965], [28.3169, 109.7325, 45.26658630371094], [26.8733, 112.6197, 37.855323791503906], [34.4714, 100.2561, 19.802814483642578], [28.6064, 115.9083, 37.10289001464844], [43.91, 125.287, -16.963733673095703], [28.76389, 104.6417, 28.622169494628906], [41.7347, 123.2444, -26.19903564453125], [30.6133, 105.68, 46.728450775146484], [36.1939, 113.0972, 38.2291259765625], [40.1114, 113.2803, 39.749534606933594], [23.7106, 113.0208, 13.722820281982422], [41.7511, 86.1461, 9.151467323303223], [43.1594, 124.3711, -21.258975982666016], [25.8481, 114.9461, 28.723451614379883], [33.6406, 114.6369, 17.8360595703125], [29.4892, 106.468, 44.50184631347656], [23.5486, 116.3242, 15.965134620666504], [36.11, 114.286, 26.426349639892578], [23.1886, 112.863, 10.433581352233887], [43.8711, 87.5525, 11.664981842041016], [28.2642, 117.0564, 30.949369430541992], [23.4792, 111.2897, 10.372218132019043], [45.6289, 122.8444, -4.409073352813721], [47.2753, 130.261, 8.588647842407227], [40.7514, 120.8392, -19.34824562072754], [37.8694, 113.5689, 45.15285873413086], [39.9716, 116.473, 13.51906681060791], [41.8625, 124.0383, -27.20086669921875], [31.2864, 120.628, 2.0891194343566895], [28.4514, 119.914, 12.681645393371582], [36.6489, 116.943, 8.647464752197266], [38.8516, 105.724, 30.792322158813477], [40.0758, 113.2994, 39.89507293701172], [34.7975, 114.3733, 15.65446949005127], [30.9075, 113.942, 44.632266998291016], [28.9404, 118.871, 20.156898498535156], [36.10139, 111.505, 55.65201950073242], [25.1081, 99.1678, -0.5194101333618164], [29.709, 106.452, 46.036109924316406], [36.67, 116.93, 8.97266674041748], [38.3344, 109.7414, 65.53292083740234], [41.1219, 121.2008, -20.484975814819336], [21.8586, 111.9786, 7.005484580993652], [31.6842, 120.288, 2.7223708629608154], [40.6288, 109.8654, 34.392601013183594], [36.44, 120.61, -19.410476684570312], [35.0622, 118.2939, -7.217615604400635], [37.1013, 79.9117, 37.891475677490234], [34.5101, 109.5293, 65.95035552978516], [41.2553, 123.15, -27.23061180114746], [47.3636, 123.9305, 3.2110402584075928], [37.4014, 121.5992, -24.989089965820312], [40.8062, 111.7277, 34.648590087890625], [37.5436, 121.3181, -24.020788192749023], [28.6542, 121.419, 6.408323287963867], [29.8211, 114.3231, 45.08547592163086], [40.7094, 122.2703, -25.21224021911621], [34.2324, 108.94, 66.07849884033203], [33.9528, 118.293, -1.7542203664779663], [27.0983, 115.0075, 38.22572326660156], [34.429, 115.6558, 8.585672378540039], [34.2303, 108.883, 66.30045318603516], [25.1328, 99.1711, -0.4305137097835541], [46.0756, 121.9462, -2.017115592956543], [22.7633, 100.98, -5.046414852142334], [23.1569, 113.281, 10.832393646240234], [26.5939, 104.89, 13.231518745422363], [31.7694, 120.0469, 4.041779041290283], [40.1438, 116.72, 10.231925010681152], [25.2697, 110.2819, 21.754621505737305], [34.1781, 117.1694, 2.4641189575195312], [37.68277778, 112.7194444, 50.459110260009766], [35.0896, 118.4023, -7.832584857940674], [29.2956, 117.2461, 31.57892417907715], [26.0392, 119.303, 15.90304183959961], [24.3694, 102.5778, -0.1912832111120224], [36.1942, 117.0881, 3.5913729667663574], [26.2708, 117.6353, 21.117433547973633], [37.5136, 111.1297, 62.60371017456055], [43.6267, 122.2603, -16.336156845092773], [30.89556, 120.0875, 7.258134365081787], [29.8686, 114.3372, 45.02567672729492], [22.7267, 114.24, 11.675497055053711], [27.8867, 113.095, 44.84035110473633], [30.8023, 106.0789, 48.69070816040039], [31.7712, 116.5661, 29.16298484802246], [46.7432, 82.9994, 37.5020751953125], [32.41361, 119.458, 5.150533676147461], [30.2043, 114.8949, 42.36783981323242]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#006535&quot;, &quot;0.05&quot;: &quot;#00790d&quot;, &quot;0.1&quot;: &quot;#00790d&quot;, &quot;0.15&quot;: &quot;#00790d&quot;, &quot;0.2&quot;: &quot;#00790d&quot;, &quot;0.25&quot;: &quot;#00790d&quot;, &quot;0.3&quot;: &quot;#00790d&quot;, &quot;0.35&quot;: &quot;#00790d&quot;, &quot;0.4&quot;: &quot;#00790d&quot;, &quot;0.45&quot;: &quot;#00790d&quot;, &quot;0.5&quot;: &quot;#00790d&quot;, &quot;0.55&quot;: &quot;#00790d&quot;, &quot;0.6&quot;: &quot;#00790d&quot;, &quot;0.65&quot;: &quot;#00790d&quot;, &quot;0.7&quot;: &quot;#00790d&quot;, &quot;0.75&quot;: &quot;#00790d&quot;, &quot;0.8&quot;: &quot;#00790d&quot;, &quot;0.85&quot;: &quot;#00790d&quot;, &quot;0.9&quot;: &quot;#00790d&quot;, &quot;0.95&quot;: &quot;#00790d&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_ffbb02559c988325ce7cd5176bdd23c0.addTo(map_5185228219a460c8c3b598cf40e028dd);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1d9b77cb750>\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('coef_t2m', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Wind Speed\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"id\": \"00FC7B8DF942473188D78183A5D9B93E\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_0e4bb0ca538df36474139de27074dd2f {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_0e4bb0ca538df36474139de27074dd2f&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_0e4bb0ca538df36474139de27074dd2f = L.map(\\n\",\n       \"                &quot;map_0e4bb0ca538df36474139de27074dd2f&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_382e4766ad7ede096e94a017885113da = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_382e4766ad7ede096e94a017885113da.addTo(map_0e4bb0ca538df36474139de27074dd2f);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_ad739c590aa71cf0f9d70c3988cfbd2c = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_ad739c590aa71cf0f9d70c3988cfbd2c.color = d3.scale.threshold()\\n\",\n       \"              .domain([-91.09835815429688, -90.87775421142578, -90.65714263916016, -90.43653869628906, -90.21592712402344, -89.99532318115234, -89.77471160888672, -89.55410766601562, -89.33350372314453, -89.1128921508789, -88.89228820800781, -88.67167663574219, -88.4510726928711, -88.23046875, -88.00985717773438, -87.78925323486328, -87.56864166259766, -87.34803771972656, -87.12742614746094, -86.90682220458984, -86.68621826171875, -86.46560668945312, -86.24500274658203, -86.0243911743164, -85.80378723144531, -85.58317565917969, -85.3625717163086, -85.1419677734375, -84.92135620117188, -84.70075225830078, -84.48014068603516, -84.25953674316406, -84.03893280029297, -83.81832122802734, -83.59771728515625, -83.37710571289062, -83.15650177001953, -82.93589782714844, -82.71528625488281, -82.49468231201172, -82.2740707397461, -82.053466796875, -81.83285522460938, -81.61225128173828, -81.39163970947266, -81.17103576660156, -80.95043182373047, -80.72982025146484, -80.50921630859375, -80.28860473632812, -80.06800079345703, -79.84739685058594, -79.62678527832031, -79.40618133544922, -79.1855697631836, -78.9649658203125, -78.74435424804688, -78.52375030517578, -78.30314636230469, -78.08253479003906, -77.86193084716797, -77.64131927490234, -77.42071533203125, -77.20010375976562, -76.97949981689453, -76.75889587402344, -76.53828430175781, -76.31768035888672, -76.0970687866211, -75.87646484375, -75.65585327148438, -75.43524932861328, -75.21464538574219, -74.99403381347656, -74.77342987060547, -74.55282592773438, -74.33221435546875, -74.11160278320312, -73.89099884033203, -73.67039489746094, -73.44978332519531, -73.22917938232422, -73.00857543945312, -72.7879638671875, -72.56735229492188, -72.34674835205078, -72.12614440917969, -71.90553283691406, -71.68492889404297, -71.46432495117188, -71.24371337890625, -71.02310943603516, -70.80250549316406, -70.58189392089844, -70.36128234863281, -70.14067840576172, -69.92007446289062, -69.699462890625, -69.4788589477539, -69.25824737548828, -69.03764343261719, -68.81703186035156, -68.59642791748047, -68.37582397460938, -68.15521240234375, -67.93460845947266, -67.71399688720703, -67.49339294433594, -67.27278137207031, -67.05217742919922, -66.83157348632812, -66.6109619140625, -66.3903579711914, -66.16974639892578, -65.94914245605469, -65.72853088378906, -65.50792694091797, -65.28732299804688, -65.06671142578125, -64.84610748291016, -64.62550354003906, -64.40489196777344, -64.18428802490234, -63.96367645263672, -63.743072509765625, -63.522464752197266, -63.301856994628906, -63.08124923706055, -62.86064147949219, -62.640037536621094, -62.41942596435547, -62.198822021484375, -61.978214263916016, -61.757606506347656, -61.5369987487793, -61.31639099121094, -61.095787048339844, -60.87517547607422, -60.654571533203125, -60.433963775634766, -60.213356018066406, -59.99275207519531, -59.77214050292969, -59.551536560058594, -59.330928802490234, -59.110321044921875, -58.889713287353516, -58.669105529785156, -58.44850158691406, -58.22789001464844, -58.007286071777344, -57.78667449951172, -57.566070556640625, -57.345462799072266, -57.124855041503906, -56.90425109863281, -56.68364334106445, -56.463035583496094, -56.242427825927734, -56.02182388305664, -55.801212310791016, -55.58060836791992, -55.3599967956543, -55.1393928527832, -54.918785095214844, -54.698177337646484, -54.477569580078125, -54.25696563720703, -54.036354064941406, -53.81575012207031, -53.59514236450195, -53.374534606933594, -53.153926849365234, -52.93332290649414, -52.712711334228516, -52.49210739135742, -52.2714958190918, -52.0508918762207, -51.830284118652344, -51.609676361083984, -51.38907241821289, -51.16846466064453, -50.94785690307617, -50.72724914550781, -50.50664520263672, -50.286033630371094, -50.0654296875, -49.844818115234375, -49.62421417236328, -49.40360641479492, -49.18299865722656, -48.9623908996582, -48.74178695678711, -48.521175384521484, -48.30057144165039, -48.07996368408203, -47.85935592651367, -47.63874816894531, -47.41814041137695, -47.197532653808594, -46.9769287109375, -46.756317138671875, -46.53571319580078, -46.31510543823242, -46.09449768066406, -45.87389373779297, -45.65328598022461, -45.43267822265625, -45.21207046508789, -44.9914665222168, -44.77085494995117, -44.55025100708008, -44.32963943481445, -44.10903549194336, -43.888427734375, -43.66781997680664, -43.44721221923828, -43.22660827636719, -43.00599670410156, -42.78539276123047, -42.56478500366211, -42.34417724609375, -42.12356948852539, -41.90296173095703, -41.68235397338867, -41.46175003051758, -41.24113845825195, -41.02053451538086, -40.7999267578125, -40.57931900024414, -40.35871124267578, -40.13810729980469, -39.91749954223633, -39.69689178466797, -39.47628402709961, -39.25567626953125, -39.035072326660156, -38.81446075439453, -38.59385681152344, -38.37324905395508, -38.15264129638672, -37.93203353881836, -37.711429595947266, -37.49081802368164, -37.27021408081055, -37.04960250854492, -36.82899856567383, -36.60839080810547, -36.38778305053711, -36.16717529296875, -35.946571350097656, -35.72595977783203, -35.50535583496094, -35.28474807739258, -35.06414031982422, -34.84353256225586, -34.622928619384766, -34.402320861816406, -34.18171310424805, -33.96110534667969, -33.74049758911133, -33.519893646240234, -33.29928207397461, -33.078678131103516, -32.858070373535156, -32.6374626159668, -32.41685485839844, -32.196250915527344, -31.97563934326172, -31.755035400390625, -31.534423828125, -31.313819885253906, -31.093212127685547, -30.872604370117188, -30.651996612548828, -30.431392669677734, -30.21078109741211, -29.990177154541016, -29.769569396972656, -29.548961639404297, -29.328353881835938, -29.107746124267578, -28.887142181396484, -28.666534423828125, -28.445926666259766, -28.225318908691406, -28.004714965820312, -27.784103393554688, -27.563499450683594, -27.342891693115234, -27.122283935546875, -26.90167236328125, -26.681068420410156, -26.460464477539062, -26.239852905273438, -26.019248962402344, -25.79864501953125, -25.578033447265625, -25.357421875, -25.136817932128906, -24.916213989257812, -24.69561004638672, -24.474990844726562, -24.25438690185547, -24.033782958984375, -23.81317901611328, -23.592567443847656, -23.371963500976562, -23.151351928710938, -22.930747985839844, -22.71014404296875, -22.489532470703125, -22.26892852783203, -22.048316955566406, -21.827713012695312, -21.607101440429688, -21.386497497558594, -21.1658935546875, -20.945289611816406, -20.72467041015625, -20.504066467285156, -20.283462524414062, -20.06285858154297, -19.842247009277344, -19.62163543701172, -19.401031494140625, -19.18042755126953, -18.959815979003906, -18.739212036132812, -18.51860809326172, -18.297996520996094, -18.07738494873047, -17.856781005859375, -17.63617706298828, -17.415573120117188, -17.194969177246094, -16.974349975585938, -16.753746032714844, -16.53314208984375, -16.312538146972656, -16.09192657470703, -15.871315002441406, -15.650711059570312, -15.430107116699219, -15.209495544433594, -14.9888916015625, -14.768287658691406, -14.547676086425781, -14.327064514160156, -14.106460571289062, -13.885856628417969, -13.665252685546875, -13.444633483886719, -13.224029541015625, -13.003425598144531, -12.782821655273438, -12.562210083007812, -12.341606140136719, -12.120994567871094, -11.900390625, -11.679786682128906, -11.459175109863281, -11.238571166992188, -11.017959594726562, -10.797355651855469, -10.576744079589844, -10.35614013671875, -10.135536193847656, -9.914932250976562, -9.694313049316406, -9.473709106445312, -9.253105163574219, -9.032501220703125, -8.8118896484375, -8.591278076171875, -8.370674133300781, -8.150070190429688, -7.9294586181640625, -7.708854675292969, -7.488250732421875, -7.26763916015625, -7.047027587890625, -6.826423645019531, -6.6058197021484375, -6.385215759277344, -6.164604187011719, -5.943992614746094, -5.723388671875, -5.502784729003906, -5.2821807861328125, -5.0615692138671875, -4.8409576416015625, -4.620353698730469, -4.399749755859375, -4.17913818359375, -3.9585342407226562, -3.7379226684570312, -3.5173187255859375, -3.2967071533203125, -3.0761032104492188, -2.855499267578125, -2.6348953247070312, -2.414276123046875, -2.1936721801757812, -1.9730682373046875, -1.7524642944335938, -1.5318527221679688, -1.3112411499023438, -1.09063720703125, -0.8700332641601562, -0.6494293212890625, -0.4288177490234375, -0.20821380615234375, 0.01239776611328125, 0.233001708984375, 0.45361328125, 0.6742172241210938, 0.8948211669921875, 1.1154251098632812, 1.3360443115234375, 1.5566482543945312, 1.777252197265625, 1.9978561401367188, 2.2184677124023438, 2.4390792846679688, 2.6596832275390625, 2.8802871704101562, 3.1008987426757812, 3.321502685546875, 3.5421066284179688, 3.7627182006835938, 3.9833297729492188, 4.2039337158203125, 4.424537658691406, 4.6451416015625, 4.865760803222656, 5.08636474609375, 5.306968688964844, 5.5275726318359375, 5.748176574707031, 5.968788146972656, 6.189399719238281, 6.410003662109375, 6.630607604980469, 6.851219177246094, 7.0718231201171875, 7.2924346923828125, 7.513038635253906, 7.733650207519531, 7.954254150390625, 8.174858093261719, 8.395462036132812, 8.616081237792969, 8.836685180664062, 9.057289123535156, 9.27789306640625, 9.498504638671875, 9.7191162109375, 9.939720153808594, 10.160324096679688, 10.380935668945312, 10.601539611816406, 10.8221435546875, 11.042755126953125, 11.263359069824219, 11.483970642089844, 11.704574584960938, 11.925178527832031, 12.145790100097656, 12.366401672363281, 12.587005615234375, 12.807609558105469, 13.028213500976562, 13.248825073242188, 13.469436645507812, 13.690040588378906, 13.91064453125, 14.131256103515625, 14.351860046386719, 14.572471618652344, 14.793075561523438, 15.013687133789062, 15.234291076660156, 15.45489501953125, 15.675498962402344, 15.8961181640625, 16.116722106933594, 16.337326049804688, 16.55792999267578, 16.778533935546875, 16.99915313720703, 17.219757080078125, 17.44036102294922, 17.660964965820312, 17.881576538085938, 18.10218048095703, 18.322792053222656, 18.54339599609375, 18.764007568359375, 18.98461151123047])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_ad739c590aa71cf0f9d70c3988cfbd2c.x = d3.scale.linear()\\n\",\n       \"              .domain([-91.09835815429688, 18.98461151123047])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_ad739c590aa71cf0f9d70c3988cfbd2c.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_ad739c590aa71cf0f9d70c3988cfbd2c.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_ad739c590aa71cf0f9d70c3988cfbd2c.legend.addTo(map_0e4bb0ca538df36474139de27074dd2f);\\n\",\n       \"\\n\",\n       \"    color_map_ad739c590aa71cf0f9d70c3988cfbd2c.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_ad739c590aa71cf0f9d70c3988cfbd2c.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-91.09835815429688, &#x27;&#x27;, &#x27;&#x27;, -74.5859146118164, &#x27;&#x27;, &#x27;&#x27;, -58.07346725463867, &#x27;&#x27;, &#x27;&#x27;, -41.5610237121582, &#x27;&#x27;, &#x27;&#x27;, -25.04857635498047, &#x27;&#x27;, &#x27;&#x27;, -8.5361328125, &#x27;&#x27;, &#x27;&#x27;, 7.976310729980469, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_ad739c590aa71cf0f9d70c3988cfbd2c.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_ad739c590aa71cf0f9d70c3988cfbd2c.g = color_map_ad739c590aa71cf0f9d70c3988cfbd2c.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_ad739c590aa71cf0f9d70c3988cfbd2c.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_ad739c590aa71cf0f9d70c3988cfbd2c.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_ad739c590aa71cf0f9d70c3988cfbd2c.x(color_map_ad739c590aa71cf0f9d70c3988cfbd2c.color.domain()[i - 1]) : color_map_ad739c590aa71cf0f9d70c3988cfbd2c.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_ad739c590aa71cf0f9d70c3988cfbd2c.color.domain().length ? color_map_ad739c590aa71cf0f9d70c3988cfbd2c.x(color_map_ad739c590aa71cf0f9d70c3988cfbd2c.color.domain()[i]) : color_map_ad739c590aa71cf0f9d70c3988cfbd2c.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_ad739c590aa71cf0f9d70c3988cfbd2c.g.call(color_map_ad739c590aa71cf0f9d70c3988cfbd2c.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_05f5af4f9860b8f896b74535ac8b8317 = L.heatLayer(\\n\",\n       \"                [[28.4303, 117.9033, 2.018855094909668], [31.1654, 121.412, 9.380899429321289], [23.4794, 111.26, 0.17168733477592468], [34.7772, 111.1928, -5.4377336502075195], [43.8748, 125.3649, 6.441563129425049], [36.838, 118.0448, 6.155850887298584], [26.5506, 104.9544, 2.258963108062744], [43.9317, 116.1042, 2.9344980716705322], [25.0925, 104.9022, 2.0507354736328125], [36.885, 120.515, 15.540597915649414], [41.1386, 121.1303, 14.335925102233887], [25.4552, 119.0018, 0.5976908206939697], [50.4217, 124.1303, -28.85128402709961], [33.739, 113.292, 1.652802586555481], [25.8664, 114.9367, 3.153701066970825], [22.8054, 113.292, -4.5973801612854], [29.8272, 106.379, 0.39216968417167664], [32.0314, 118.803, 3.9685940742492676], [28.2325, 113.0833, -2.2508413791656494], [31.896, 121.173, 9.617703437805176], [35.428, 116.6305, 5.546187400817871], [29.389, 106.513, 0.03071938268840313], [33.975, 116.8008, 9.1521635055542], [31.3097, 120.669, 7.511033058166504], [32.625, 116.7039, 7.317210674285889], [39.8261, 109.9486, 0.695022463798523], [37.4664, 116.3061, -3.1013669967651367], [40.9923, 113.1306, -1.9964402914047241], [39.6407, 118.1853, 9.3093843460083], [42.2217, 123.7153, 13.396496772766113], [34.1978, 108.985, -5.187302589416504], [31.3839, 118.4022, 2.851623296737671], [31.03389, 112.1908, -3.767368793487549], [27.6442, 113.8686, -0.40138691663742065], [29.3578, 113.1094, -3.5159378051757812], [29.5947, 105.0717, 2.1442878246307373], [37.7019, 112.7549, -8.281315803527832], [37.0533, 114.5261, -6.9290924072265625], [22.2281, 113.299, -6.954417705535889], [39.7294, 98.5023, -6.064513206481934], [41.615, 120.3939, 13.109431266784668], [39.3179, 112.4254, -4.907771110534668], [24.9424, 118.6663, -1.358827829360962], [40.6575, 109.8104, -0.09366471320390701], [32.02, 120.87, 8.932825088500977], [28.6844, 115.893, -0.22558917105197906], [39.5747, 116.7729, 2.1686220169067383], [42.8939, 129.4892, 6.1212263107299805], [38.3254, 116.8584, -0.25226855278015137], [28.5773, 121.377, 7.565116882324219], [39.0511, 121.7769, 17.358625411987305], [30.6539, 117.4974, 2.580004930496216], [36.2866, 100.6188, 8.509944915771484], [45.9819, 126.6106, -5.536602973937988], [45.2978, 130.9298, -6.280377388000488], [23.7569, 114.6778, -2.513087749481201], [27.9119, 112.9074, -1.4594528675079346], [24.8885, 102.821, 1.5548702478408813], [29.5844, 103.7627, 5.072904586791992], [24.769519, 113.586606, 3.0346288681030273], [41.5672, 120.4486, 13.210955619812012], [39.7884, 109.9734, 0.672073483467102], [27.8328, 114.9289, -0.43421950936317444], [32.3761, 119.389, 5.431523323059082], [25.7054, 100.1542, 1.5001497268676758], [29.3628, 104.7547, 2.690002202987671], [24.3663, 109.3957, 2.942711591720581], [31.215, 107.525, -1.3808873891830444], [35.76806, 115.0061, -1.057249665260315], [26.3003, 106.805, 2.3989837169647217], [34.6972, 119.3581, 10.372841835021973], [30.6463, 111.3549, -4.935503005981445], [30.2366, 119.7183, 4.560107231140137], [27.3392, 103.7032, 3.024942398071289], [33.8997, 116.8067, 9.114310264587402], [33.5981, 119.036, 7.8260722160339355], [37.0964, 114.5331, -6.973762512207031], [37.7575, 115.6951, -5.029662132263184], [22.5211, 113.3769, -5.812806606292725], [22.6411, 110.1675, -1.900971531867981], [38.3228, 116.8709, -0.1889910101890564], [25.8471, 114.8905, 3.1832706928253174], [35.04388889, 111.0522222, -6.407066345214844], [33.9953, 113.7906, 2.0334184169769287], [23.7586, 114.6944, -2.5239176750183105], [45.6842, 126.6206, -3.87957763671875], [38.8957, 115.5223, -4.037225246429443], [40.715, 120.8478, 14.46120548248291], [39.6969, 106.8089, 5.556540489196777], [23.5353, 116.3697, -5.034548282623291], [39.746, 98.509, -6.091053009033203], [36.7008, 119.1425, 10.817453384399414], [43.8694, 125.325, 6.479939937591553], [42.0228, 121.6722, 13.483159065246582], [23.0672, 109.6042, -0.14426276087760925], [30.5947, 114.3008, -0.9671163558959961], [23.475, 111.3178, 0.11180487275123596], [27.6869, 106.9222, 1.4441393613815308], [34.1546, 108.906, -4.9813947677612305], [36.8041, 117.8512, 5.298415184020996], [23.0916, 113.348, -3.6536972522735596], [32.6319, 116.8306, 7.3324875831604], [32.4867, 119.9, 6.798160552978516], [30.1366, 104.6617, 3.7839155197143555], [24.4072, 111.5622, 3.311483860015869], [31.7618, 116.478, 4.9818034172058105], [41.2692, 123.7989, 15.462035179138184], [42.0503, 121.6972, 13.462392807006836], [38.2478, 109.7336, 1.0897676944732666], [34.6575, 109.2, -5.818765163421631], [39.79777778, 98.26722222, -6.823387622833252], [25.5035, 103.7897, 2.2477171421051025], [35.763, 115.031, -0.9814730286598206], [39.9425, 116.361, 1.1806694269180298], [34.3739, 107.1186, 3.6686596870422363], [30.2352, 115.0625, -0.15331140160560608], [44.1756, 87.5475, -53.0960578918457], [40.2865, 116.17, 1.010324478149414], [36.1851, 120.3905, 14.41561222076416], [36.0417, 111.4917, -7.823992729187012], [39.0153, 106.3717, 7.973140716552734], [36.6867, 101.524, 9.46727466583252], [35.213, 113.227, -2.8644185066223145], [24.506, 117.7116, -2.0135366916656494], [47.203, 123.6261, -11.840784072875977], [46.0347, 124.8354, -5.216165065765381], [35.0697, 109.0697, -4.473464012145996], [34.3622, 107.2386, 2.745264768600464], [35.7306, 114.2878, -2.7191827297210693], [44.5952, 129.5902, -0.8767532110214233], [23.3667, 116.6794, -6.393196105957031], [34.7837, 117.2852, 9.039706230163574], [31.155, 120.636, 7.277098178863525], [30.4742, 114.9028, -0.005963336210697889], [41.3047, 123.7308, 15.375631332397461], [28.8558, 105.4322, 1.1244500875473022], [36.71, 117.541, 4.157894134521484], [32.6494, 110.78, -0.6993104815483093], [31.8516, 117.124, 5.221608638763428], [30.5797, 105.7519, 2.6609318256378174], [38.9467, 100.4686, 1.1947981119155884], [39.617, 122.011, 16.66702651977539], [28.6428, 112.4067, -3.3845036029815674], [31.2659, 121.536, 9.740561485290527], [39.5178, 116.6838, 1.554276466369629], [28.7989, 104.6789, 2.4182095527648926], [31.5072, 104.7283, 7.100338935852051], [34.6869, 112.4831, -2.2155556678771973], [31.388, 120.953, 8.391266822814941], [30.475, 105.5956, 2.6852610111236572], [41.3283, 123.8436, 15.354140281677246], [26.3108, 117.7275, 4.206295013427734], [22.7629, 113.257, -4.710780620574951], [32.645, 117.0083, 7.281280040740967], [22.8225, 108.321, -0.6233646273612976], [40.3937, 116.644, 3.2977566719055176], [46.0872, 85.6931, -64.22113800048828], [30.8596, 120.1844, 5.907364368438721], [31.1333, 104.3883, 6.464993476867676], [27.9939, 120.677, 7.131363868713379], [37.187, 122.019, 18.846664428710938], [29.8633, 121.586, 8.25969409942627], [39.65782, 118.1838, 9.329495429992676], [34.6869, 112.4664, -2.2532119750976562], [40.6592, 122.2414, 15.43406867980957], [39.8673, 116.366, 0.9867655634880066], [34.493, 109.4636, -5.951494216918945], [40.8144, 111.608, -1.976162314414978], [28.095, 116.9622, 1.0175665616989136], [22.9477, 113.352, -4.152307033538818], [27.5342, 109.9792, -0.3076074421405792], [31.874, 120.526, 7.753241539001465], [36.2289, 117.6789, 6.160777568817139], [28.0005, 116.3574, 0.2962317168712616], [41.1196, 123.044, 15.366156578063965], [29.6588, 90.9798, -17.232080459594727], [23.0528, 114.4183, -5.13276481628418], [50.4269, 124.1186, -28.87751579284668], [30.6578, 104.054, 6.007822036743164], [31.6928, 118.48, 3.347820997238159], [46.6384, 126.9934, -9.454046249389648], [27.3033, 111.5239, 0.3645956218242645], [31.8711, 106.7389, 2.165036201477051], [37.154, 122.471, 18.9846134185791], [48.4658, 129.4942, -20.804340362548828], [41.0781, 121.0986, 14.379359245300293], [28.1442, 112.9956, -2.06781268119812], [40.7608, 107.4211, 2.16196608543396], [37.4314, 118.6672, 9.093234062194824], [43.8947, 126.5786, 5.422600269317627], [23.63444, 113.0472, -1.0956779718399048], [37.4442, 118.5857, 8.689773559570312], [25.8179, 113.0119, 3.7997989654541016], [23.105, 113.261, -3.5057077407836914], [32.0417, 120.81, 8.789341926574707], [23.0786, 112.4722, -2.6265900135040283], [31.2071, 121.577, 9.766145706176758], [37.8195, 112.57, -8.18192195892334], [32.0564, 112.1392, -1.5251281261444092], [38.95111111, 121.565, 17.28618049621582], [43.1747, 124.3419, 9.831439018249512], [29.7534, 116.0726, 0.6586373448371887], [39.9279, 116.225, 0.4620773494243622], [31.6411, 118.4828, 3.2434136867523193], [36.5481, 104.1731, 15.061407089233398], [35.0994, 109.0656, -4.356610298156738], [23.2539, 116.6092, -6.841308116912842], [31.3708, 120.641, 7.483638286590576], [34.7187, 113.727, 0.4129634499549866], [36.497, 117.8477, 6.007238864898682], [27.8094, 102.3419, 5.766127586364746], [43.8303, 87.5801, -52.001556396484375], [27.6428, 113.8381, -0.39601242542266846], [31.5631, 120.245, 6.633748531341553], [29.41569, 106.5506, -0.0225837342441082], [32.0197, 112.155, -1.61493718624115], [26.5747, 107.9783, 2.590954303741455], [28.76611, 104.6225, 2.503430128097534], [27.8036, 114.9314, -0.3757384717464447], [21.9667, 108.6236, -3.396759271621704], [29.1456, 111.7158, -4.348578453063965], [24.2654, 116.1248, -1.8274271488189697], [49.2261, 119.7594, -23.010412216186523], [32.8603, 115.8556, 6.88299036026001], [27.9958, 113.1817, -1.6250349283218384], [28.6869, 115.852, -0.2558548152446747], [30.3055, 112.2887, -4.356794834136963], [46.7588, 130.3794, -12.753912925720215], [32.965, 114.018, 2.8328890800476074], [22.5328, 113.024, -5.282905578613281], [36.6114, 116.988, 2.259188175201416], [32.996, 113.996, 2.77091646194458], [31.354, 119.818, 5.44420862197876], [38.0513, 114.4548, -7.338056564331055], [42.8775, 129.3675, 6.330057621002197], [26.6946, 119.5001, 5.141110420227051], [33.627, 119.0122, 7.884536266326904], [28.4231, 119.879, 6.1161603927612305], [29.635, 119.026, 3.060422658920288], [31.7275, 113.3583, -0.7043063044548035], [41.5647, 120.4247, 13.190380096435547], [34.6231, 112.3844, -2.1772022247314453], [30.1377, 104.6289, 3.857093572616577], [42.0186, 121.6561, 13.479873657226562], [29.5817, 105.0653, 2.148369550704956], [24.2719, 116.0797, -1.7598992586135864], [39.5371, 75.9828, -90.95972442626953], [41.9206, 126.4047, 12.05351734161377], [27.583, 110.0394, -0.4359127879142761], [33.4022, 120.118, 9.121549606323242], [26.6343, 106.7487, 2.1800005435943604], [35.4234, 119.5198, 11.326441764831543], [28.1308, 112.8908, -2.0720314979553223], [24.3406, 109.3886, 2.890108346939087], [21.7631, 108.3511, -4.023728370666504], [27.11, 114.9739, 1.1293199062347412], [42.8953, 125.1567, 10.281408309936523], [43.895, 81.2867, -74.13674926757812], [40.7736, 120.8631, 14.414884567260742], [32.935, 117.3086, 7.673987865447998], [40.5905, 110.0067, -0.15155164897441864], [29.8208, 121.56, 8.193204879760742], [32.7639, 116.8028, 7.591483116149902], [26.8802, 100.2497, 4.15692138671875], [30.3714, 114.8989, -0.19416458904743195], [29.7228, 106.626, -0.06997931748628616], [43.85, 125.217, 6.599307537078857], [21.6828, 110.8592, -6.066684246063232], [33.5979, 114.6546, 3.8226444721221924], [29.6007, 103.7506, 5.121944904327393], [47.7222, 128.8736, -16.312721252441406], [24.81119444, 113.5593889, 3.199044942855835], [29.315, 110.4417, -4.167093753814697], [27.7314, 112.0194, -0.7958827614784241], [34.9058, 108.9344, -4.551430702209473], [29.5186, 106.54, -0.021198414266109467], [40.0031, 116.407, 1.5149915218353271], [31.9286, 102.1755, 13.768837928771973], [38.8756, 115.442, -4.250368118286133], [40.7688, 114.9032, -1.6066962480545044], [38.0398, 114.6046, -7.236727237701416], [37.8792, 113.4922, -7.99451208114624], [31.0283, 103.613, 8.06093978881836], [31.3508, 118.3528, 2.8333523273468018], [32.88922222, 115.7838889, 6.748769760131836], [36.0783, 111.5531, -7.871513843536377], [36.2126, 113.0886, -7.106749057769775], [21.8536, 111.9508, -6.598793029785156], [29.7736, 121.633, 8.218997955322266], [28.3586, 112.9958, -2.60847806930542], [37.4294, 122.1206, 18.884490966796875], [28.71583, 104.5761, 2.5593247413635254], [31.5848, 120.354, 6.922402858734131], [31.2108, 107.4967, -1.2957481145858765], [26.0797, 119.268, 3.212812662124634], [23.0467, 113.144, -3.5368080139160156], [26.6383, 118.1694, 4.70945930480957], [27.9153, 113.0048, -1.4506781101226807], [32.6975, 109.0072, -0.8112758994102478], [31.955, 119.146, 4.229787349700928], [33.38256667, 104.9338889, 14.996724128723145], [37.8564, 113.5753, -7.943376064300537], [39.7711, 98.2908, -6.702277183532715], [30.6145, 116.9894, 2.6511294841766357], [43.9469, 87.4754, -52.6690559387207], [39.5453, 116.7022, 1.7268238067626953], [30.9219, 117.8561, 2.71108078956604], [34.7745, 113.641, -0.002988990629091859], [32.41, 119.404, 5.515830993652344], [22.5111, 113.4075, -5.892963886260986], [43.6156, 122.3039, 9.00105094909668], [37.7087, 112.7105, -8.270172119140625], [41.3472, 123.8142, 15.30923080444336], [43.831, 87.6432, -51.800926208496094], [22.8322, 100.9817, -4.4279351234436035], [23.415, 111.2353, -0.03717232868075371], [29.2958, 117.2111, 1.045002818107605], [30.21, 120.211, 5.808188438415527], [27.7019, 106.9242, 1.4154162406921387], [30.0506, 103.8986, 5.3667192459106445], [46.8032, 130.3648, -12.95495319366455], [33.9592, 118.2442, 8.838095664978027], [26.4519, 111.5989, 2.6354196071624756], [31.1907, 121.703, 9.9357271194458], [26.8576, 100.2143, 4.0718913078308105], [47.2988, 123.945, -12.391284942626953], [36.253, 120.014, 13.294233322143555], [32.9917, 112.5192, 1.2540016174316406], [34.402, 115.6578, 6.038961410522461], [37.9844, 106.2025, 10.569385528564453], [45.2948, 131.0103, -6.385566234588623], [33.3942, 120.156, 9.176189422607422], [24.3898, 109.4883, 3.0297279357910156], [30.9742, 118.7386, 2.418076276779175], [26.6029, 106.6856, 2.1889052391052246], [31.2994, 120.543, 7.1313276290893555], [30.3515, 112.2068, -4.426286220550537], [30.5706, 104.079, 5.7729058265686035], [21.5958, 109.2256, -5.044211387634277], [44.1564, 87.9897, -51.63475799560547], [22.7875, 108.301, -0.7167770862579346], [26.2403, 107.5228, 2.7715561389923096], [27.5578, 109.9972, -0.3690018653869629], [30.4865, 106.6351, 0.5483056902885437], [38.4975, 106.2328, 9.505669593811035], [30.9892, 112.1969, -3.8286938667297363], [37.7379, 115.6426, -5.195531845092773], [36.1417, 106.2319, 11.114843368530273], [43.4569, 87.4651, -51.342918395996094], [24.3158, 109.4839, 2.8828957080841064], [45.8194, 130.8625, -8.762306213378906], [29.1389, 110.48, -3.784569025039673], [29.90166667, 121.6147222, 8.324785232543945], [34.7997, 111.1489, -5.577723979949951], [26.0931, 119.58, 2.9116296768188477], [41.7972, 123.3997, 14.42101001739502], [25.5364, 103.8, 2.2629520893096924], [31.7797, 116.5068, 5.046715259552002], [27.7569, 111.9561, -0.8731851577758789], [38.9846, 117.3747, 3.8799843788146973], [36.086, 114.32, -4.253557205200195], [39.9934, 116.315, 1.0987780094146729], [37.7805, 112.488, -8.15600872039795], [29.7292, 115.988, 0.5478965640068054], [27.8317, 99.7056, 6.294180870056152], [38.91194444, 121.6330556, 17.40911865234375], [43.941, 81.3364, -74.03453826904297], [37.18, 119.959, 13.845443725585938], [35.5294, 106.7039, 8.130120277404785], [33.581, 114.014, 2.540506601333618], [30.7819, 111.3296, -4.847482681274414], [38.5036, 106.1358, 9.64306926727295], [31.751, 119.579, 5.263232231140137], [29.6376, 94.3681, -3.0002267360687256], [38.85611111, 121.5180556, 17.36919403076172], [30.7157, 111.3009, -4.921102046966553], [40.8369, 111.751, -2.074385166168213], [36.4796, 115.9835, -1.451828956604004], [39.2474, 117.7918, 6.678316593170166], [37.825, 120.747, 16.602989196777344], [39.0877, 117.307, 3.74776554107666], [35.0003, 102.905, 15.047550201416016], [31.6219, 120.275, 6.764193058013916], [29.6747, 91.1221, -16.40578269958496], [41.7156, 125.9361, 13.15183162689209], [34.2153, 117.256, 9.361594200134277], [31.1108, 104.3539, 6.481053829193115], [29.8906, 121.554, 8.253477096557617], [30.65638889, 104.0238889, 6.071516990661621], [46.6219, 124.8648, -8.637829780578613], [32.215, 119.491, 5.5042009353637695], [29.9899, 103.0013, 7.895082473754883], [34.0117, 113.8331, 2.093355655670166], [42.8328, 93.4961, -28.9558162689209], [36.5458, 104.1731, 15.064598083496094], [26.6009, 106.7105, 2.195127248764038], [23.0944, 109.6014, -0.06282896548509598], [29.4758, 113.2621, -3.3759071826934814], [33.0069, 114.0131, 2.79875111579895], [22.6164, 110.1433, -1.9642763137817383], [41.7381, 125.9486, 13.07418155670166], [37.8692, 112.5369, -8.141039848327637], [32.3292, 119.8767, 6.597133159637451], [35.4039, 116.5546, 5.366194248199463], [29.9816, 103.0001, 7.8843913078308105], [39.1654, 117.145, 3.049697160720825], [32.3878, 119.46, 5.626665115356445], [45.7478, 126.593, -4.2242889404296875], [40.1269, 113.2661, -3.8997809886932373], [32.4246, 105.8153, 8.481685638427734], [30.6103, 114.4272, -0.6519935131072998], [23.02777778, 113.7461111, -4.363428115844727], [35.9019, 114.17, -3.828425884246826], [38.4841, 106.2739, 9.468865394592285], [36.865, 120.537, 15.596534729003906], [39.2282, 106.7704, 6.8685832023620605], [30.8811, 117.7442, 2.7336950302124023], [23.2775, 116.7258, -6.928459167480469], [37.5639, 121.2514, 17.7644100189209], [27.8528, 113.13, -1.2381665706634521], [34.5021, 109.4266, -5.969285488128662], [38.6016, 105.9512, 9.678977012634277], [32.8985, 117.3065, 7.596726417541504], [37.1152, 79.9485, -73.80714416503906], [26.567, 101.7227, 3.9638824462890625], [36.799, 119.976, 13.778840065002441], [30.2997, 113.8531, -2.233531951904297], [41.9339, 123.6836, 14.137619972229004], [36.864, 118.78, 9.363269805908203], [42.0486, 121.6592, 13.444720268249512], [41.1042, 121.835, 14.68548583984375], [38.03777778, 114.5480556, -7.284616470336914], [36.0714, 111.5028, -7.8503618240356445], [26.5928, 101.5769, 4.005588054656982], [24.339, 102.5381, 0.5776073932647705], [30.66, 117.49, 2.591465711593628], [19.9969, 110.338, -11.942023277282715], [34.3469, 106.005, 11.621946334838867], [28.2264, 117.0222, 0.9000937342643738], [30.0125, 103.009, 7.910192966461182], [38.2991, 116.8854, -0.13897836208343506], [26.4364, 111.5992, 2.6771175861358643], [23.8822, 100.0869, -2.2278621196746826], [26.4214, 111.6156, 2.7199912071228027], [23.0395, 113.105, -3.5095021724700928], [29.53675, 106.4959, 0.025999534875154495], [32.64600333, 117.0411667, 7.26253604888916], [37.9854, 112.549, -8.03420352935791], [28.0167, 120.671, 7.1355438232421875], [33.5653, 114.0322, 2.574059247970581], [30.9414, 117.8178, 2.766045093536377], [27.9747, 120.76, 7.166101455688477], [24.4674, 117.6336, -2.113316774368286], [30.8217, 106.1031, 2.3757829666137695], [35.0573, 118.3418, 9.95013427734375], [34.864, 117.5564, 9.213478088378906], [22.0019, 100.7939, -7.4899001121521], [45.305, 130.9817, -6.392302513122559], [44.2967, 86.0497, -58.22978973388672], [30.2747, 120.063, 5.435349941253662], [26.6761, 118.0966, 4.7207770347595215], [37.3803, 118.0062, 5.441910743713379], [36.8198, 118.3092, 7.386562347412109], [31.9108, 119.905, 6.269200325012207], [40.0625, 124.3303, 17.512813568115234], [27.8159, 112.9227, -1.163416862487793], [45.7733, 126.689, -4.422728061676025], [46.0707, 122.0931, -5.184763431549072], [37.4967, 121.2611, 17.793458938598633], [33.6067, 118.989, 7.836927890777588], [33.6128, 114.6613, 3.8255579471588135], [22.6069, 113.104, -5.107334613800049], [45.7667, 126.635, -4.354182720184326], [24.3304, 109.4108, 2.879929542541504], [41.1933, 80.2956, -74.4587173461914], [30.8064, 106.056, 2.498487949371338], [36.2211, 117.6983, 6.25660514831543], [30.518, 106.631, 0.5728552341461182], [32.1883, 119.68, 5.965636730194092], [32.0775, 118.795, 4.052911281585693], [31.6908, 113.3833, -0.7561834454536438], [37.374, 120.399, 15.41074275970459], [31.6861, 118.5058, 3.3100409507751465], [26.2331, 111.6236, 3.1668944358825684], [28.8194, 104.5969, 2.5991406440734863], [28.19, 112.9394, -2.19944429397583], [23.3892, 104.2319, -0.33307963609695435], [46.6527, 126.9636, -9.517101287841797], [24.441, 98.578, -3.3186731338500977], [35.1147, 111.0414, -6.577447414398193], [31.4, 119.46, 4.421747207641602], [42.9061, 129.5042, 6.05974006652832], [47.9047, 88.1214, -63.225341796875], [26.6607, 119.5202, 5.079360008239746], [40.8452, 111.659, -2.0248630046844482], [29.7048, 115.9581, 0.49140653014183044], [46.6462, 131.1516, -13.217226028442383], [35.5714, 104.6228, 15.774727821350098], [23.1323, 113.3208, -3.4784154891967773], [30.0033, 120.7789, 7.076762676239014], [30.4133, 114.8131, -0.282713383436203], [39.8745, 116.434, 1.3289166688919067], [44.0297, 87.2717, -53.56093215942383], [42.2814, 118.9233, 11.053168296813965], [45.2924, 130.962, -6.302003860473633], [23.5739, 116.3594, -4.826160430908203], [30.1808, 120.088, 5.505858421325684], [36.6106, 109.5056, -1.073272466659546], [29.6541, 91.1774, -16.14644432067871], [44.5462, 129.6386, -0.6826536655426025], [25.2708, 110.3089, 4.11792516708374], [43.8256, 126.55, 5.750422477722168], [45.755, 126.542, -4.2370805740356445], [21.6669, 110.9067, -6.18427848815918], [34.9162, 113.6113, -0.6695751547813416], [25.5811, 100.2171, 1.2535696029663086], [29.8539, 114.2894, -1.8202273845672607], [26.9056, 112.5664, 1.7917957305908203], [47.3382, 130.1097, -15.390581130981445], [31.4747, 104.7778, 6.904179096221924], [34.6258, 112.4275, -2.0849733352661133], [34.3672, 107.1906, 3.112473487854004], [32.18888889, 119.4369444, 5.3165740966796875], [24.77908333, 113.6734722, 2.9732086658477783], [23.5538, 113.589, -2.0928640365600586], [35.4813, 112.8252, -5.139388561248779], [35.235, 113.261, -2.885359287261963], [41.8594, 123.9, 14.24278736114502], [22.7019, 110.1106, -1.6451410055160522], [32.1403, 114.0122, 1.550872564315796], [24.795928, 113.598061, 3.10986328125], [27.8136, 99.7064, 6.24628210067749], [36.0822, 111.5169, -7.864406108856201], [37.3617, 118.0018, 5.4145402908325195], [40.7579, 111.651, -1.9755440950393677], [43.8167, 125.25, 6.716584205627441], [37.43445, 118.696, 9.236446380615234], [28.5808, 112.3458, -3.2583425045013428], [26.6514, 118.1819, 4.7299089431762695], [46.6572, 131.1638, -13.288887023925781], [35.4144, 116.5856, 5.437686443328857], [24.68636111, 113.5970833, 2.735595941543579], [23.05361111, 113.7819444, -4.300477981567383], [31.7506, 118.5106, 3.4259092807769775], [30.5719, 114.3672, -0.8521602153778076], [29.4402, 112.9943, -3.658291816711426], [35.28385, 113.5922, -2.330660581588745], [30.698, 111.2992, -4.933496475219727], [45.7677, 131.0032, -8.709354400634766], [45.5828, 84.8897, -65.26612854003906], [38.86388889, 121.625, 17.466075897216797], [35.272, 113.884, -1.618817687034607], [31.0935, 120.978, 8.206452369689941], [34.9817, 118.2764, 9.961849212646484], [34.7967, 114.2886, 1.218644142150879], [30.4183, 120.301, 6.047318458557129], [29.6453, 106.562, -0.03072676993906498], [35.546, 112.8453, -5.3818511962890625], [41.1953, 123.2, 15.333887100219727], [30.63, 104.1113889, 5.8266730308532715], [27.5733, 109.9333, -0.40288570523262024], [36.4343, 116.0072, -1.179007887840271], [36.6275, 109.4131, -0.6130755543708801], [30.5494, 114.3006, -1.0405274629592896], [30.9414, 117.7806, 2.7946395874023438], [45.6886, 85.1186, -64.84030151367188], [22.5931, 113.0819, -5.132396697998047], [27.0658, 114.9817, 1.2155715227127075], [27.7231, 109.1794, -0.4741853177547455], [24.6928, 108.054, 2.9607479572296143], [35.5051, 112.85, -5.187470436096191], [43.962, 87.6444, -52.16936492919922], [23.5292, 116.4094, -5.127975940704346], [22.5978, 114.297, -6.704048156738281], [22.5545, 114.1063, -6.622776985168457], [43.8875, 126.555, 5.47692346572876], [41.1222, 121.1178, 14.344869613647461], [27.7297, 109.1916, -0.4990848898887634], [27.8344, 114.9831, -0.4114826023578644], [37.8531, 113.6292, -7.905630111694336], [22.0225, 100.8017, -7.40354585647583], [40.6511, 122.215, 15.432676315307617], [33.6347, 114.6758, 3.8478286266326904], [26.5892, 104.8, 2.2871220111846924], [33.3947, 120.225, 9.336227416992188], [29.6926, 116.0628, 0.5819391012191772], [38.885, 121.5638889, 17.377490997314453], [39.6572, 106.7931, 5.681713581085205], [41.0903, 122.0539, 14.798059463500977], [41.8864, 124.0878, 14.09766674041748], [31.17, 120.635, 7.28575325012207], [33.8561, 115.7831, 7.0533447265625], [36.913, 121.531, 18.26303482055664], [37.809, 120.773, 16.67162322998047], [23.3993, 103.3772, -0.5651886463165283], [32.9735, 112.5003, 1.1980632543563843], [41.7775, 123.478, 14.470015525817871], [29.1242, 110.4697, -3.7478370666503906], [26.53111111, 107.8908333, 2.720139980316162], [35.0308, 110.9678, -6.462438106536865], [38.97388889, 121.6119444, 17.3006534576416], [31.2797, 107.5272, -1.3547520637512207], [31.0483, 112.2014, -3.7332990169525146], [30.2311, 119.6942, 4.493324279785156], [30.2897, 120.157, 5.672251224517822], [36.6622, 117.049, 2.2970070838928223], [34.3731, 109.2186, -5.688621520996094], [33.1138, 107.0089, 5.617392539978027], [22.5497, 113.3881, -5.71061372756958], [26.1092, 119.299, 3.314981698989868], [38.9108, 115.4713, -4.136486053466797], [28.1944, 113.0014, -2.1848762035369873], [25.1174, 117.0181, 0.7554084658622742], [35.2375, 115.474722, 1.652539849281311], [31.737, 119.579, 5.24514102935791], [29.57278, 106.4042, 0.16266587376594543], [30.2989, 109.5039, -5.015303134918213], [31.7371, 116.508, 4.9181365966796875], [25.9061, 113.0073, 3.77181339263916], [34.5911, 119.1478, 10.030550003051758], [37.197, 122.038, 18.860681533813477], [26.5155, 106.6948, 2.2494943141937256], [29.305, 120.091, 5.818339824676514], [30.72358333, 103.97275, 6.332404136657715], [31.955, 119.18, 4.300205707550049], [35.6039, 103.2139, 14.56075382232666], [31.5031, 120.242, 6.564358234405518], [38.4519, 112.7383, -7.22217321395874], [37.8873, 112.522, -8.119708061218262], [37.3753, 97.3731, -2.6800708770751953], [31.2261, 121.425, 9.468125343322754], [32.0572, 118.749, 4.000094413757324], [29.5867, 115.9936, 0.40766915678977966], [33.5039, 119.135, 7.650471210479736], [39.4365, 75.9435, -91.09835815429688], [23.7208, 109.2131, 1.5379678010940552], [31.7308, 113.3983, -0.6324256658554077], [27.7842, 114.3953, -0.5890910625457764], [36.8088, 118.0482, 6.216078758239746], [27.8728, 112.8937, -1.3399003744125366], [23.0048, 113.134, -3.654707193374634], [28.6047, 112.3347, -3.305783271789551], [36.0211, 106.2375, 10.95655632019043], [29.3547, 110.5594, -4.36515998840332], [31.4539, 104.7536, 6.871926307678223], [39.5989, 109.8119, 1.144510269165039], [32.395, 111.0419, -1.4499926567077637], [31.172, 120.658, 7.35615348815918], [22.805, 108.383, -0.6788478493690491], [34.3164, 108.7369, -4.9988932609558105], [41.9228, 123.3783, 14.174964904785156], [34.794, 111.158, -5.544554233551025], [31.2284, 121.533, 9.696430206298828], [27.8403, 112.9118, -1.2392436265945435], [29.2365, 88.8931, -28.806629180908203], [31.317, 119.438, 4.257081985473633], [22.9394, 112.0369, -2.587628126144409], [25.0405, 102.722, 1.7162467241287231], [34.7822, 111.19, -5.461420059204102], [25.7759, 113.0348, 3.810992479324341], [40.0917, 113.3444, -3.956098794937134], [36.5819, 101.834, 10.326927185058594], [38.4928, 112.7003, -7.089102268218994], [40.916, 107.5936, 1.5738722085952759], [34.2629, 108.993, -5.345005989074707], [34.8731, 108.9589, -4.734071731567383], [23.1478, 109.5681, 0.08545003831386566], [31.92, 120.302, 7.1979851722717285], [42.2953, 123.8831, 13.139354705810547], [43.6801, 122.2532, 8.717280387878418], [26.5917, 104.83, 2.277437448501587], [25.4792, 118.981, 0.7521554827690125], [28.4459, 117.973, 2.1335391998291016], [32.6939, 109.0281, -0.8280044794082642], [39.3265, 112.4078, -4.874547004699707], [32.3061, 118.3158, 4.8567304611206055], [36.6164, 114.5426, -5.852795600891113], [27.2582, 111.4908, 0.4759240746498108], [41.0112, 117.9384, 9.516084671020508], [37.9648, 106.1532, 10.693758010864258], [41.0971, 122.9642, 15.360790252685547], [34.7496, 113.5991, 0.023579051718115807], [27.8953, 102.2311, 6.090076446533203], [29.5634, 103.757, 5.056069374084473], [32.4429, 105.8242, 8.531396865844727], [29.6535, 116.0174, 0.4957672655582428], [34.719, 113.734, 0.4248022437095642], [47.3349, 130.2659, -15.542101860046387], [46.619, 131.1651, -13.104031562805176], [34.378, 108.869, -5.311769008636475], [38.8707, 115.5214, -4.071395397186279], [30.7525, 120.7844444, 7.393908500671387], [22.96583333, 113.7383333, -4.576805114746094], [32.9683, 112.55, 1.2466866970062256], [39.8129, 110.0023, 0.6019891500473022], [29.2647, 117.1558, 0.9722932577133179], [30.5514, 114.2511, -1.1504478454589844], [27.8847, 102.2689, 6.013609409332275], [35.7672, 115.0628, -0.9332573413848877], [30.696, 111.268, -4.950165748596191], [41.765, 123.41, 14.482195854187012], [41.8417, 123.7117, 14.355806350708008], [26.5894, 104.8475, 2.2730605602264404], [25.0492, 101.538, 1.1411712169647217], [27.9639, 116.3598, 0.37986910343170166], [33.6481, 116.9765, 8.980823516845703], [41.0833, 122.9481, 15.372566223144531], [37.4514, 105.0197, 13.391305923461914], [26.8906, 100.2203, 4.162858486175537], [35.5236, 107.6406, 3.5737218856811523], [22.7422, 114.5317, -6.4005584716796875], [35.31, 113.836, -1.8877533674240112], [30.3944, 114.8878, -0.1756630539894104], [39.0927, 117.202, 3.175990581512451], [32.1078, 114.1044, 1.6811398267745972], [35.5461, 106.6692, 8.322746276855469], [37.5211, 111.1406, -5.729564189910889], [40.9843, 117.9525, 9.560871124267578], [33.9506, 118.3214, 8.791454315185547], [32.939, 117.3961, 7.6111249923706055], [23.3594, 104.2533, -0.3763427436351776], [36.881, 118.746, 9.197884559631348], [36.6872, 116.989, 1.9728749990463257], [34.802, 113.564, -0.29530420899391174], [24.5058, 118.0936, -2.56252384185791], [43.9311, 116.0781, 2.8922088146209717], [34.6692, 112.3628, -2.4228415489196777], [36.6428, 101.748, 10.006890296936035], [33.7214, 113.3064, 1.662179708480835], [36.1031, 103.631, 14.737665176391602], [29.5822, 105.0406, 2.2058639526367188], [32.8913, 117.4186, 7.4813666343688965], [23.3682, 103.3758, -0.630194902420044], [43.9404, 81.2815, -74.24423217773438], [27.8042, 114.9119, -0.3861246705055237], [29.7125, 106.617, -0.06489875912666321], [32.0092, 118.737, 3.904151201248169], [28.8833, 105.4322, 1.1348496675491333], [35.27, 115.455, 1.4681849479675293], [40.7612, 111.717, -2.0179479122161865], [42.8172, 93.5128, -28.843385696411133], [40.1952, 116.23, 1.1035006046295166], [26.0542, 119.389, 2.9721951484680176], [45.1642, 124.8528, -0.020855383947491646], [34.3181, 108.6761, -4.871316432952881], [40.7378, 107.3715, 2.274567127227783], [30.9431, 118.7175, 2.370087146759033], [28.2189, 112.8872, -2.2902331352233887], [46.528, 125.112, -8.163054466247559], [33.8715, 109.9154, -3.2767422199249268], [40.1503, 124.4256, 17.410526275634766], [32.0903, 112.2106, -1.3324384689331055], [42.2556, 118.8789, 11.032358169555664], [39.9567, 119.6023, 13.409329414367676], [22.4853, 113.4411, -6.036600112915039], [39.5986, 109.7736, 1.2191818952560425], [36.5776, 114.5035, -5.781228542327881], [32.4639, 119.888, 6.751145839691162], [39.0845, 117.1589, 2.91060471534729], [25.8567, 98.8601, 0.40197139978408813], [22.5625, 114.117, -6.603424072265625], [34.2713, 108.954, -5.313846111297607], [43.7878, 125.454, 6.728057861328125], [28.9664, 118.871, 3.3951961994171143], [23.1617, 112.565, -2.4494175910949707], [31.8108, 119.9736, 6.3358917236328125], [29.261, 91.7706, -14.0283203125], [28.9583, 105.4306, 1.1687326431274414], [33.027, 112.5573, 1.3645870685577393], [30.51197222, 117.0331111, 2.4916937351226807], [31.9051, 117.16, 5.353964328765869], [27.725, 111.9975, -0.7740448713302612], [40.7136, 120.9092, 14.524344444274902], [23.65889, 116.6183, -4.821420669555664], [26.4364, 106.6554, 2.293116807937622], [31.8706, 117.259, 5.1927900314331055], [38.2911, 109.7456, 1.0855417251586914], [34.2778, 117.2933, 9.376550674438477], [33.568, 114.005, 2.536872148513794], [38.00583333, 114.4586111, -7.354310035705566], [32.3153, 118.3094, 4.893898963928223], [38.80805556, 121.2588889, 17.08304214477539], [47.7317, 128.9094, -16.387529373168945], [41.5931, 120.4439, 13.178969383239746], [45.8167, 126.561, -4.589757919311523], [34.6686, 112.4433, -2.2272002696990967], [31.8766, 117.307, 5.1732330322265625], [28.2053, 113.0792, -2.1804072856903076], [34.5653, 105.8614, 12.387499809265137], [42.3022, 123.8139, 13.151556015014648], [26.5495, 106.6867, 2.2250449657440186], [23.0706, 112.427, -2.5984387397766113], [34.7538, 113.6356, 0.08142509311437607], [29.9834, 103.0109, 7.852664947509766], [21.865, 111.9494, -6.546069145202637], [30.7856, 106.1064, 2.311497211456299], [28.2169, 116.9983, 0.8783110976219177], [39.0631, 121.9769, 17.45880699157715], [39.6679, 118.2185, 9.494853019714355], [32.6778, 109.0311, -0.8544347882270813], [28.9745, 118.855, 3.352694034576416], [45.0878, 124.8292, 0.40403488278388977], [31.2058, 107.4611, -1.18736732006073], [41.3369, 123.7528, 15.316250801086426], [35.3962, 119.54, 11.338329315185547], [32.1342, 114.0681, 1.6618553400039673], [34.407, 115.6386, 5.9536051750183105], [29.334, 120.04, 5.704197883605957], [34.2417, 117.192, 9.365349769592285], [23.105, 113.433, -3.6974594593048096], [26.6266, 106.6243, 2.1609225273132324], [37.7124, 112.469, -8.165478706359863], [43.1847, 124.3897, 9.755749702453613], [29.7207, 118.3236, 1.8894038200378418], [45.8309, 130.9467, -8.938097953796387], [31.4656, 104.6717, 7.045771598815918], [30.6617, 117.4697, 2.605471134185791], [39.625, 121.989, 16.646419525146484], [46.5776, 125.1386, -8.458107948303223], [36.0725, 103.841, 15.134627342224121], [25.1035, 117.0216, 0.7049586176872253], [49.1577, 119.7512, -22.650175094604492], [22.8464, 108.239, -0.5611382126808167], [25.0311, 117.0151, 0.4564429223537445], [35.4178, 119.4641, 11.262524604797363], [37.5002, 105.1971, 13.190406799316406], [33.63063889, 116.989, 8.964359283447266], [23.1036, 109.5683, -0.02774820290505886], [23.7369, 109.2317, 1.576278567314148], [30.049, 119.946, 5.1936516761779785], [25.0124, 102.743, 1.686286211013794], [30.4753, 114.1525, -1.4630813598632812], [38.0524, 114.5214, -7.294023036956787], [34.29, 117.1814, 9.37301254272461], [30.1142, 104.6469, 3.784414291381836], [29.8506, 121.524, 8.184110641479492], [36.0464, 103.831, 15.140853881835938], [39.6308, 118.1662, 9.209592819213867], [41.0831, 123.0156, 15.405978202819824], [31.9438, 117.266, 5.364422798156738], [29.8181, 114.3036, -1.807704210281372], [41.2894, 123.1417, 15.17667007446289], [35.248889, 115.42277, 1.4566978216171265], [42.2864, 123.8489, 13.179448127746582], [27.7758, 115.0586, -0.2658531367778778], [38.5339, 102.1725, 6.0081329345703125], [35.1764, 113.2464, -2.639726161956787], [33.0706, 107.0154, 5.551999092102051], [34.2911, 117.244, 9.376379013061523], [34.3956, 108.7197, -4.982970714569092], [31.371, 119.794, 5.396223545074463], [34.2749, 108.882, -5.2201128005981445], [31.7848, 117.196, 4.9850687980651855], [30.0874, 103.8416, 5.547741889953613], [31.1167, 104.4053, 6.38226842880249], [34.2572, 109.06, -5.394046306610107], [37.364, 120.394, 15.387237548828125], [27.8408, 102.2714, 5.929905414581299], [36.7731, 119.1939, 11.034680366516113], [40.1097, 113.3819, -3.9002137184143066], [29.33972, 104.7228, 2.7411556243896484], [30.9697, 117.8472, 2.789459466934204], [44.6104, 129.6459, -1.0382663011550903], [29.6039, 115.9114, 0.3480969965457916], [36.6525, 119.1638, 10.86719799041748], [31.9025, 102.2218, 13.636211395263672], [34.3274, 109.043, -5.516434192657471], [33.3681, 120.1631, 9.128159523010254], [31.85805556, 106.7619444, 2.0409226417541504], [31.1956, 107.5069, -1.3310155868530273], [27.2317, 111.4733, 0.5408323407173157], [39.16969, 117.2099, 3.421066999435425], [26.2625, 117.6211, 4.085602760314941], [40.9733, 117.8184, 9.146956443786621], [37.4372, 116.2714, -3.212118148803711], [27.8244, 113.135, -1.1525474786758423], [31.3178, 118.3708, 2.7721574306488037], [25.0992, 104.8811, 2.050100326538086], [31.4846, 92.0657, -9.711349487304688], [30.1819, 120.27, 5.955216884613037], [22.9169, 112.0392, -2.6659748554229736], [31.909, 120.237, 7.010702133178711], [41.9967, 121.6178, 13.477904319763184], [31.7956, 117.302, 4.951077461242676], [46.7975, 130.3258, -12.882184028625488], [25.0441, 101.5482, 1.1399190425872803], [29.6514, 91.1319, -16.4033260345459], [31.7897, 119.8914, 6.128255844116211], [36.0022, 106.2792, 10.740171432495117], [29.2718, 88.8876, -28.772470474243164], [36.7019, 119.12, 10.73500919342041], [29.1029, 119.686, 5.155391216278076], [29.6632, 94.3616, -2.979559898376465], [37.7111, 112.7306, -8.273247718811035], [40.8725, 114.904, -1.4276913404464722], [31.4189, 118.37, 2.9352428913116455], [31.3008, 121.467, 9.63160514831543], [25.8071, 113.0383, 3.7992234230041504], [23.3917, 113.215, -2.340066432952881], [21.2706, 110.3539, -7.208232402801514], [32.4611, 119.9219, 6.822413921356201], [30.4663, 106.6271, 0.5521895885467529], [30.3058, 120.348, 6.162875175476074], [30.3119, 120.12, 5.577805995941162], [21.4689, 111.0286, -7.117782115936279], [23.6714, 116.6339, -4.782885551452637], [31.3264, 120.596, 7.308734893798828], [34.2761, 117.167, 9.369821548461914], [38.49494, 106.1024, 9.71591567993164], [31.7386, 117.278, 4.809006690979004], [36.39, 120.47, 14.913708686828613], [31.671, 120.721, 8.066180229187012], [35.767, 115.0772, -0.9029130339622498], [37.062, 114.4854, -6.978126049041748], [34.3474, 108.935, -5.407192707061768], [30.2692, 120.19, 5.756319046020508], [27.2944, 105.31, 1.90665864944458], [32.1319, 119.43, 5.23913049697876], [27.2537, 111.4503, 0.4751972556114197], [38.4186, 112.7356, -7.305965900421143], [23.3633, 116.7244, -6.483200550079346], [28.6844, 115.931, -0.19862742722034454], [41.7128, 86.2381, -50.920555114746094], [21.2679, 110.3316, -7.194533348083496], [30.3175, 112.2551, -4.386145114898682], [46.5888, 131.1572, -12.944622993469238], [28.6425, 115.892, -0.22516170144081116], [27.72, 106.9178, 1.3884499073028564], [41.0931, 123.011, 15.389311790466309], [37.161, 122.41, 18.970062255859375], [46.8025, 130.2719, -12.845403671264648], [30.9222, 117.8078, 2.7437744140625], [36.4372, 115.9848, -1.2784291505813599], [40.6821, 109.8538, -0.19417646527290344], [39.1082, 117.237, 3.412268877029419], [23.1142, 114.4103, -4.88432502746582], [32.0878, 118.626, 4.054388523101807], [27.8072, 114.4011, -0.6354491114616394], [30.5103, 117.0549, 2.490873098373413], [41.0385, 113.1076, -1.9299306869506836], [36.5336, 116.734, 1.4984838962554932], [31.5475, 120.354, 6.880345344543457], [27.8978, 102.2625, 6.046381950378418], [27.1311, 114.99, 1.0903273820877075], [25.0359, 102.638, 1.6882379055023193], [28.2597, 112.9792, -2.367255687713623], [41.2864, 123.7669, 15.421436309814453], [47.3489, 130.3172, -15.671978950500488], [36.907, 121.544, 18.28651237487793], [32.5714, 110.8839, -0.8977081775665283], [25.8417, 98.8546, 0.35405296087265015], [30.2028, 115.0767, -0.17075613141059875], [27.8667, 113.167, -1.2700988054275513], [34.5885, 119.176, 10.03831672668457], [23.6936, 113.0425, -0.8226719498634338], [35.0992, 117.4518, 8.780400276184082], [29.5467, 103.7705, 5.004209041595459], [35.4934, 112.835, -5.171386241912842], [28.2403, 117.0281, 0.8879791498184204], [43.95305556, 126.4738889, 5.251917362213135], [28.0089, 120.634, 7.1073455810546875], [21.6533, 110.9294, -6.264690399169922], [31.1208, 104.4219, 6.364398002624512], [29.355, 113.2117, -3.4120137691497803], [35.7289, 107.6831, 4.020752429962158], [31.3019, 120.591, 7.271368026733398], [34.4286, 115.6697, 6.019772052764893], [30.6347, 105.8161, 2.720299005508423], [24.44583333, 118.0636111, -2.8211114406585693], [41.2736, 123.1761, 15.21677303314209], [32.1083, 118.803, 4.116584777832031], [35.0611, 111.0233, -6.482664108276367], [27.8614, 112.9433, -1.303092360496521], [35.4883, 112.8564, -5.0951128005981445], [47.3386, 123.9305, -12.615614891052246], [26.8956, 112.6211, 1.841771125793457], [29.077, 119.647, 5.093733310699463], [37.0172, 105.18, 14.075081825256348], [22.9539, 112.0539, -2.5567314624786377], [30.1259, 104.6294, 3.839003324508667], [26.6611, 119.5392, 5.078103065490723], [24.5157, 117.6569, -1.9212309122085571], [36.9639, 100.9048, 7.5217437744140625], [40.9359, 117.963, 9.587163925170898], [37.393, 117.9776, 5.275618553161621], [44.8969, 82.0806, -73.28649139404297], [46.0703, 122.0506, -5.186356067657471], [31.8585, 117.336, 5.107861042022705], [36.5767, 109.4824, -1.0765929222106934], [33.721, 113.322, 1.6756471395492554], [32.5, 80.1161, -74.90803527832031], [37.739, 115.6906, -5.048860549926758], [36.6028, 109.4761, -0.9643489122390747], [27.5444, 109.9453, -0.33059027791023254], [21.9508, 108.6553, -3.464292287826538], [29.3411, 104.7692, 2.641674041748047], [28.0797, 116.2239, 0.006586334202438593], [36.61981, 114.4965, -5.945691108703613], [32.0723, 118.778, 4.03822660446167], [28.9026, 105.4436, 1.1266857385635376], [26.2081, 111.6217, 3.2142159938812256], [42.9409, 89.191, -43.569454193115234], [30.0911, 120.598, 6.749813079833984], [34.3017, 107.0708, 4.008563041687012], [40.8033, 111.658, -2.0038936138153076], [33.0122, 112.5224, 1.2965492010116577], [26.9258, 112.6194, 1.7568721771240234], [28.2675, 109.6958, -1.5709879398345947], [31.422, 121.14, 8.947795867919922], [32.105, 118.907, 4.165567398071289], [30.6872, 104.176, 5.81516695022583], [40.8367, 114.8985, -1.4973204135894775], [43.55, 125.633, 7.462757587432861], [30.2756, 118.1371, 1.9809842109680176], [41.9419, 126.4078, 11.987737655639648], [32.4285, 105.8624, 8.299222946166992], [35.5997, 103.2064, 14.555548667907715], [41.8336, 123.542, 14.371169090270996], [36.1542, 113.1097, -6.919901371002197], [41.1442, 123.0485, 15.332117080688477], [29.2786, 117.1983, 1.0206600427627563], [39.643, 118.144, 9.13003158569336], [23.1572, 112.885, -2.8601632118225098], [29.6219, 106.65, -0.15279844403266907], [41.8472, 123.428, 14.329240798950195], [30.7946, 120.744, 7.296855449676514], [25.0661, 117.0256, 0.5724130272865295], [33.0014, 97.0, 7.173598289489746], [31.89708, 121.1518, 9.563037872314453], [24.428, 98.5842, -3.337111473083496], [39.1067, 117.1941, 3.168954372406006], [40.1461, 124.3933, 17.410852432250977], [30.2456, 120.127, 5.596333026885986], [22.5908, 114.263, -6.686828136444092], [29.7128, 118.3057, 1.8810678720474243], [44.0114, 87.2997, -53.418678283691406], [32.4535, 105.8945, 8.282241821289062], [24.7121, 108.2134, 3.0338945388793945], [30.4519, 114.8858, -0.07733365148305893], [39.7153, 76.1861, -90.19145202636719], [24.3702, 102.5389, 0.6287478804588318], [27.8381, 113.143, -1.1915799379348755], [31.7133, 118.6439, 3.348034620285034], [37.9097, 114.3541, -7.4353108406066895], [44.3336, 84.8983, -62.051658630371094], [42.2725, 118.9572, 11.09096622467041], [29.36028, 104.7778, 2.6379454135894775], [25.442, 119.0156, 0.5076661109924316], [31.2036, 121.478, 9.554011344909668], [38.8394, 117.457, 4.013577938079834], [24.4175, 111.5269, 3.349327325820923], [37.177, 119.941, 13.789576530456543], [30.2819, 109.4689, -4.985007286071777], [38.5061, 102.1708, 6.089301109313965], [39.6719, 106.8219, 5.607461929321289], [43.84, 125.2786, 6.614665985107422], [32.9444, 117.3575, 7.662108421325684], [22.4137, 107.3476, -1.821417212486267], [36.1855, 113.0844444, -7.042196750640869], [34.5004, 109.5049, -5.9604058265686035], [31.56, 120.294, 6.744034767150879], [32.0144, 118.777, 3.9282736778259277], [40.8115, 114.8814, -1.5614680051803589], [29.9972, 101.9533, 10.593680381774902], [35.5102, 102.0199, 12.722356796264648], [37.8561, 113.5922, -7.931546211242676], [34.3708, 107.1586, 3.360016345977783], [23.4168, 103.386, -0.5346817970275879], [37.4489, 116.3189, -3.022663116455078], [35.0147, 110.9956, -6.386353492736816], [29.8264, 106.424, 0.3237147331237793], [34.7545, 113.681, 0.16841664910316467], [23.6706, 116.6447, -4.803481101989746], [36.3083, 120.1964, 13.952363967895508], [30.8388, 106.1087, 2.3850109577178955], [43.8667, 125.417, 6.445621967315674], [27.9883, 116.3553, 0.3193264305591583], [39.9419, 119.5369, 13.285316467285156], [33.8399, 115.8067, 7.115588188171387], [30.2099, 115.0264, -0.24091817438602448], [33.737, 113.182, 1.5527081489562988], [27.9164, 112.4876, -1.4613746404647827], [27.8036, 114.3442, -0.6601903438568115], [26.57098, 101.68912, 3.9664361476898193], [22.2294, 113.495, -7.208755970001221], [38.44139, 106.2275, 9.641536712646484], [24.6967, 108.1009, 2.981945276260376], [25.0836, 102.728, 1.7741018533706665], [24.9624, 102.625, 1.5889825820922852], [31.1278, 97.1804, 8.915665626525879], [38.5247, 102.1878, 6.066667079925537], [31.381, 120.999, 8.51074504852295], [28.4569, 118.0058, 2.1837034225463867], [32.1142, 112.1825, -1.2947105169296265], [34.3617, 108.7233, -4.993785858154297], [23.8982, 100.0782, -2.2031259536743164], [41.1636, 80.2828, -74.4892807006836], [32.6028, 116.8556, 7.264247894287109], [36.1942, 117.1436, 4.32607889175415], [37.0967, 114.4821, -7.020617485046387], [38.817, 106.3394, 8.543996810913086], [32.9673, 117.3536, 7.713062763214111], [30.4576, 106.6303, 0.5406746864318848], [30.6197, 114.2836, -0.9683330655097961], [41.1556, 122.0247, 14.69509506225586], [38.9194, 117.157, 2.4692680835723877], [39.9522, 116.434, 1.5196484327316284], [36.087, 114.358, -4.150904655456543], [43.7256, 126.6772, 6.056387901306152], [40.6532, 109.8756, -0.1524261236190796], [24.9617, 118.6108, -1.1779202222824097], [36.792, 119.952, 13.7008695602417], [29.5953, 105.0331, 2.23409366607666], [31.2472, 120.561, 7.132417678833008], [30.1506, 104.6356, 3.8615763187408447], [33.1842, 106.9893, 5.745239734649658], [36.0875, 111.5025, -7.857943534851074], [31.8934, 102.2402, 13.585285186767578], [24.8978, 118.5972, -1.4525012969970703], [22.8561, 108.316, -0.5398544669151306], [27.8336, 113.251, -1.1500135660171509], [31.2703, 120.613, 7.305810451507568], [35.303, 113.883, -1.7561581134796143], [39.3673, 112.4279, -4.8107428550720215], [32.6389, 110.7258, -0.7648756504058838], [38.1398, 114.5019, -7.2409796714782715], [26.6272, 118.1756, 4.699521064758301], [33.6284, 116.9677, 8.960412979125977], [33.965, 118.283, 8.829541206359863], [36.7339, 119.0841, 10.62024974822998], [37.9358, 102.6469, 8.717252731323242], [41.7089, 123.439, 14.58829116821289], [22.7906, 108.439, -0.7249457240104675], [43.8358, 126.5844, 5.673147201538086], [31.882, 120.55, 7.823634624481201], [41.8828, 123.9169, 14.178187370300293], [31.656, 120.734, 8.087876319885254], [34.5667, 117.732, 9.518731117248535], [45.61, 126.615, -3.4564857482910156], [29.5983, 106.296, 0.31264641880989075], [45.7258, 126.646, -4.130079746246338], [33.575, 119.007, 7.770619869232178], [23.08, 114.4053, -5.015815734863281], [28.5819, 112.3744, -3.2619616985321045], [43.9167, 125.323, 6.293590545654297], [22.5811, 113.074, -5.16798734664917], [38.843, 105.6975, 9.287834167480469], [27.6178, 113.865, -0.3236919045448303], [30.4551, 106.6388, 0.5222963690757751], [23.01277778, 113.7944444, -4.480660438537598], [30.8244, 120.07, 5.605327129364014], [34.3547, 107.1431, 3.465850591659546], [36.6739, 117.114, 2.4932548999786377], [22.8693, 112.844, -3.7337005138397217], [23.7233, 114.6892, -2.673679828643799], [25.3167, 110.4144, 4.069248199462891], [28.6459, 121.273, 7.5200114250183105], [26.8919, 112.6006, 1.8440814018249512], [33.0323, 107.007, 5.5021491050720215], [30.0475, 101.9603, 10.669779777526855], [30.7636, 106.0642, 2.4101312160491943], [35.259, 113.1992, -3.159107208251953], [32.2786, 118.3244, 4.758230209350586], [36.1758, 117.1081, 4.2831950187683105], [22.735, 108.328, -0.8629580736160278], [22.3708, 107.3701, -1.9343502521514893], [27.3125, 105.2864, 1.9063541889190674], [33.567, 114.056, 2.604956865310669], [34.3528, 107.3906, 1.6416513919830322], [38.8343, 105.6775, 9.330404281616211], [36.283, 120.008, 13.308061599731445], [34.7745, 117.5852, 9.338048934936523], [23.2783, 113.568, -3.2184791564941406], [33.3261, 105.0822, 14.587165832519531], [36.6377, 117.9544, 6.078805446624756], [26.5689, 106.6971, 2.214048385620117], [43.768, 87.6046, -51.747352600097656], [41.7561, 123.535, 14.518571853637695], [41.0228, 123.1289, 15.549480438232422], [27.8014, 114.3806, -0.6342096924781799], [44.561, 129.61, -0.720578134059906], [29.9919, 120.605, 6.7530107498168945], [37.4658, 118.5019, 8.249980926513672], [25.8333, 114.9322, 3.168227195739746], [23.9011, 106.6103, 1.2569770812988281], [38.2839, 109.7289, 1.1301441192626953], [45.6033, 84.8861, -65.33191680908203], [30.9447, 118.7581, 2.4105098247528076], [25.2178, 110.2869, 4.180087566375732], [26.2378, 117.6028, 4.03443717956543], [22.8172, 114.3244, -5.886412143707275], [40.1194, 124.3678, 17.443031311035156], [41.9086, 123.5953, 14.207906723022461], [31.238, 121.4, 9.429255485534668], [26.5697, 106.7164, 2.2172892093658447], [22.7833, 108.244, -0.7227603197097778], [40.7866, 111.551, -1.920709490776062], [31.7039, 119.935, 6.119842529296875], [45.5422, 126.979, -3.302874803543091], [19.9507, 110.576, -12.345065116882324], [30.6414, 114.2131, -1.095747709274292], [37.9311, 102.6219, 8.677803039550781], [39.3606, 112.4549, -4.846868515014648], [46.8267, 130.3961, -13.106758117675781], [35.94, 104.148, 15.628745079040527], [29.4892, 106.634, -0.1335161179304123], [23.1422, 113.235, -3.342104911804199], [23.06, 113.7480556, -4.2336554527282715], [29.1128, 119.6533, 5.080080032348633], [36.2092, 117.7181, 6.366603851318359], [27.7044, 111.9892, -0.7077381014823914], [31.87888889, 106.7513889, 2.1269683837890625], [29.2313, 91.7608, -14.144207000732422], [34.5814, 105.7281, 13.164464950561523], [35.7511, 114.2956, -2.7925021648406982], [47.8515, 88.1267, -63.02395248413086], [37.9723, 106.196, 10.602544784545898], [38.8632, 115.493, -4.146445274353027], [23.8844, 106.6527, 1.2418715953826904], [39.1495, 117.3916, 4.383638858795166], [36.2403, 120.6659, 15.34037971496582], [39.1292, 106.7096, 7.202287673950195], [38.01777778, 114.5330556, -7.303874969482422], [32.1383, 114.0614, 1.6565839052200317], [31.8572, 117.25, 5.159868240356445], [24.9117, 118.5819, -1.362249732017517], [28.4622, 117.9511, 2.0722320079803467], [32.8928, 115.8275, 6.846158981323242], [25.067, 102.681, 1.7448318004608154], [24.3289, 116.1278, -1.5842927694320679], [28.6969, 115.973, -0.16875691711902618], [28.1178, 112.9844, -2.0064845085144043], [44.3075, 86.0697, -58.1937141418457], [28.7867, 104.6061, 2.5531299114227295], [38.0108, 112.434, -7.929709434509277], [29.4251, 113.1493, -3.485891342163086], [36.6868, 117.0684, 2.2771177291870117], [45.7319, 126.685, -4.188460350036621], [34.8019, 113.675, -0.06397957354784012], [28.4586, 119.93, 6.138598918914795], [21.2567, 110.4558, -7.368398189544678], [30.9285, 113.9153, -1.1875370740890503], [32.0005, 120.86, 8.883832931518555], [29.6475, 91.0874, -16.659860610961914], [27.4948, 114.0944, 0.09193761646747589], [42.0352, 119.2654, 11.57773494720459], [40.5546, 110.0377, -0.10492498427629471], [29.6292, 91.0834, -16.72369956970215], [40.0844, 113.2711, -3.9963490962982178], [46.3991, 124.8847, -7.348160266876221], [27.6231, 113.8447, -0.3383132815361023], [27.6486, 106.8906, 1.5332111120224], [31.92, 120.268, 7.105673789978027], [39.2133, 117.1837, 3.39154314994812], [23.4714, 116.7519, -5.983065605163574], [30.5489, 117.0486, 2.5510008335113525], [31.4867, 120.269, 6.609497547149658], [23.1331, 113.26, -3.404975652694702], [25.8226, 113.0116, 3.7981772422790527], [36.61763, 114.5129, -5.9102277755737305], [33.9461, 116.7844, 9.126016616821289], [27.7914, 114.3703, -0.6181098818778992], [40.0181, 119.7624, 13.678860664367676], [43.8228, 126.4978, 5.811237335205078], [28.2558, 109.6414, -1.5542265176773071], [25.9118, 114.9064, 3.1550614833831787], [35.4894, 112.8664, -5.075411319732666], [34.3497, 107.2058, 2.9841408729553223], [34.6511, 112.3939, -2.2712719440460205], [28.7442, 115.813, -0.2707471251487732], [26.9089, 112.5328, 1.769336462020874], [28.7994, 115.742, -0.29939472675323486], [28.9703, 111.6975, -3.9855234622955322], [36.1912, 113.1569, -6.944460868835449], [40.9161, 117.9664, 9.593379974365234], [34.7781, 114.3389, 1.408945918083191], [23.2536, 116.4019, -6.49898099899292], [47.3227, 123.9483, -12.526350975036621], [36.2403, 120.4001, 14.509733200073242], [27.9647, 116.385, 0.41810429096221924], [30.7478, 120.726, 7.2265472412109375], [24.81805556, 118.1569444, -1.109669804573059], [24.299, 109.4221, 2.8232760429382324], [41.8469, 123.81, 14.309375762939453], [29.4822, 106.364, 0.14918367564678192], [26.5017, 101.7453, 3.8389179706573486], [31.8531, 106.7594, 2.042206287384033], [31.96, 120.913, 8.982118606567383], [29.6816, 115.9872, 0.4971843659877777], [28.6839, 115.8886, -0.2289062738418579], [26.0753, 119.315, 3.1539599895477295], [42.8947, 125.1358, 10.303165435791016], [39.3514, 112.44, -4.852783203125], [39.5343, 116.7464, 1.9221285581588745], [31.0386, 112.2211, -3.726166248321533], [27.2272, 111.4328, 0.5403984785079956], [26.585, 101.7169, 3.9990434646606445], [38.9389, 100.4497, 1.1751320362091064], [45.6175, 122.8211, -2.4582571983337402], [41.7192, 86.2022, -51.07310104370117], [42.9559, 89.1673, -43.70413589477539], [29.3864, 117.3097, 1.2004470825195312], [28.56, 112.3439, -3.216264486312866], [44.9079, 82.0485, -73.42811584472656], [44.5782, 129.6115, -0.8151934742927551], [35.5975, 104.6169, 15.786571502685547], [38.8416, 115.4612, -4.248165130615234], [31.453, 121.115, 8.913613319396973], [37.7394, 112.5583, -8.206217765808105], [37.85, 113.5158, -7.982372283935547], [36.061, 114.483, -3.6914069652557373], [29.3678, 113.1772, -3.450045347213745], [39.6295, 118.1997, 9.355483055114746], [36.0756, 103.712, 14.897793769836426], [31.7586, 119.996, 6.3214921951293945], [35.7067, 107.6364, 4.160739898681641], [27.3361, 103.7225, 2.9983553886413574], [23.0528, 112.471, -2.708617687225342], [22.75, 114.085, -5.8178606033325195], [28.3169, 109.7325, -1.6272114515304565], [26.8733, 112.6197, 1.903562068939209], [34.4714, 100.2561, 12.533020973205566], [28.6064, 115.9083, -0.2113562673330307], [43.91, 125.287, 6.3338704109191895], [28.76389, 104.6417, 2.463505506515503], [41.7347, 123.2444, 14.493727684020996], [30.6133, 105.68, 2.8397340774536133], [36.1939, 113.0972, -7.044567108154297], [40.1114, 113.2803, -3.9317626953125], [23.7106, 113.0208, -0.7214860916137695], [41.7511, 86.1461, -51.359745025634766], [43.1594, 124.3711, 9.872442245483398], [25.8481, 114.9461, 3.1557223796844482], [33.6406, 114.6369, 3.7425730228424072], [29.4892, 106.468, 0.06338876485824585], [23.5486, 116.3242, -4.897702693939209], [36.11, 114.286, -4.457762241363525], [23.1886, 112.863, -2.7198398113250732], [43.8711, 87.5525, -52.205238342285156], [28.2642, 117.0564, 0.8928670883178711], [23.4792, 111.2897, 0.1484200358390808], [45.6289, 122.8444, -2.519836664199829], [47.2753, 130.261, -15.221867561340332], [40.7514, 120.8392, 14.413318634033203], [37.8694, 113.5689, -7.946167945861816], [39.9716, 116.473, 1.7239456176757812], [41.8625, 124.0383, 14.178168296813965], [31.2864, 120.628, 7.364885330200195], [28.4514, 119.914, 6.129908084869385], [36.6489, 116.943, 1.9388917684555054], [38.8516, 105.724, 9.239957809448242], [40.0758, 113.2994, -4.007063388824463], [34.7975, 114.3733, 1.3983039855957031], [30.9075, 113.942, -1.1775121688842773], [28.9404, 118.871, 3.4221129417419434], [36.10139, 111.505, -7.864801406860352], [25.1081, 99.1678, -1.0014879703521729], [29.709, 106.452, 0.1690812110900879], [36.67, 116.93, 1.8059390783309937], [38.3344, 109.7414, 1.1229252815246582], [41.1219, 121.2008, 14.406464576721191], [21.8586, 111.9786, -6.614191055297852], [31.6842, 120.288, 6.866073131561279], [40.6288, 109.8654, -0.08625536412000656], [36.44, 120.61, 15.387702941894531], [35.0622, 118.2939, 9.908742904663086], [37.1013, 79.9117, -73.96671295166016], [34.5101, 109.5293, -5.974450588226318], [41.2553, 123.15, 15.227375984191895], [47.3636, 123.9305, -12.756555557250977], [37.4014, 121.5992, 18.392122268676758], [40.8062, 111.7277, -2.0463006496429443], [37.5436, 121.3181, 17.901329040527344], [28.6542, 121.419, 7.618135452270508], [29.8211, 114.3231, -1.7692338228225708], [40.7094, 122.2703, 15.387060165405273], [34.2324, 108.94, -5.213205814361572], [33.9528, 118.293, 8.803950309753418], [27.0983, 115.0075, 1.1474441289901733], [34.429, 115.6558, 5.965460300445557], [34.2303, 108.883, -5.130330562591553], [25.1328, 99.1711, -0.9384742975234985], [46.0756, 121.9462, -5.2160515785217285], [22.7633, 100.98, -4.631722450256348], [23.1569, 113.281, -3.343902826309204], [26.5939, 104.89, 2.2591686248779297], [31.7694, 120.0469, 6.443479061126709], [40.1438, 116.72, 3.0812106132507324], [25.2697, 110.2819, 4.118901252746582], [34.1781, 117.1694, 9.348079681396484], [37.68277778, 112.7194444, -8.280450820922852], [35.0896, 118.4023, 9.966806411743164], [29.2956, 117.2461, 1.082509994506836], [26.0392, 119.303, 3.0003085136413574], [24.3694, 102.5778, 0.645219624042511], [36.1942, 117.0881, 4.149597644805908], [26.2708, 117.6353, 4.104859828948975], [37.5136, 111.1297, -5.7006683349609375], [43.6267, 122.2603, 8.958645820617676], [30.89556, 120.0875, 5.700096607208252], [29.8686, 114.3372, -1.7195254564285278], [22.7267, 114.24, -6.101376533508301], [27.8867, 113.095, -1.3460404872894287], [30.8023, 106.0789, 2.421314001083374], [31.7712, 116.5661, 5.035981178283691], [46.7432, 82.9994, -74.76038360595703], [32.41361, 119.458, 5.656241416931152], [30.2043, 114.8949, -0.45049306750297546]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#ff7900&quot;, &quot;0.05&quot;: &quot;#ff7900&quot;, &quot;0.1&quot;: &quot;#ff7900&quot;, &quot;0.15&quot;: &quot;#ff7900&quot;, &quot;0.2&quot;: &quot;#ff7900&quot;, &quot;0.25&quot;: &quot;#ff7900&quot;, &quot;0.3&quot;: &quot;#ff7900&quot;, &quot;0.35&quot;: &quot;#ff7900&quot;, &quot;0.4&quot;: &quot;#ff7900&quot;, &quot;0.45&quot;: &quot;#ff7900&quot;, &quot;0.5&quot;: &quot;#ff7900&quot;, &quot;0.55&quot;: &quot;#ff7900&quot;, &quot;0.6&quot;: &quot;#ff7900&quot;, &quot;0.65&quot;: &quot;#ff7900&quot;, &quot;0.7&quot;: &quot;#ff7900&quot;, &quot;0.75&quot;: &quot;#ff7900&quot;, &quot;0.8&quot;: &quot;#ff7900&quot;, &quot;0.85&quot;: &quot;#ff7900&quot;, &quot;0.9&quot;: &quot;#ff7900&quot;, &quot;0.95&quot;: &quot;#ff7900&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_05f5af4f9860b8f896b74535ac8b8317.addTo(map_0e4bb0ca538df36474139de27074dd2f);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1d9b77cbc50>\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('coef_w10', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Wind Direction\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"id\": \"56318144E3FF452CACC9D0F49D4D5974\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_230f89f36e3ff111c74ac3d63b01b5a0 {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_230f89f36e3ff111c74ac3d63b01b5a0&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_230f89f36e3ff111c74ac3d63b01b5a0 = L.map(\\n\",\n       \"                &quot;map_230f89f36e3ff111c74ac3d63b01b5a0&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_f1f7d840768154544108339871795541 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_f1f7d840768154544108339871795541.addTo(map_230f89f36e3ff111c74ac3d63b01b5a0);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_256dfa70ad95c02d76980652a73e84da = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_256dfa70ad95c02d76980652a73e84da.color = d3.scale.threshold()\\n\",\n       \"              .domain([-1.9315698146820068, -1.9281266927719116, -1.9246834516525269, -1.9212403297424316, -1.9177970886230469, -1.9143539667129517, -1.9109108448028564, -1.9074676036834717, -1.9040244817733765, -1.9005813598632812, -1.8971381187438965, -1.8936949968338013, -1.8902517557144165, -1.8868086338043213, -1.883365511894226, -1.8799222707748413, -1.876479148864746, -1.8730359077453613, -1.8695927858352661, -1.866149663925171, -1.8627064228057861, -1.859263300895691, -1.8558201789855957, -1.852376937866211, -1.8489338159561157, -1.845490574836731, -1.8420474529266357, -1.8386043310165405, -1.8351610898971558, -1.8317179679870605, -1.8282747268676758, -1.8248316049575806, -1.8213884830474854, -1.8179452419281006, -1.8145021200180054, -1.8110588788986206, -1.8076157569885254, -1.8041726350784302, -1.8007293939590454, -1.7972862720489502, -1.7938430309295654, -1.7903999090194702, -1.786956787109375, -1.7835135459899902, -1.780070424079895, -1.7766273021697998, -1.773184061050415, -1.7697409391403198, -1.766297698020935, -1.7628545761108398, -1.7594114542007446, -1.7559682130813599, -1.7525250911712646, -1.7490818500518799, -1.7456387281417847, -1.7421956062316895, -1.7387523651123047, -1.7353092432022095, -1.7318661212921143, -1.7284228801727295, -1.7249797582626343, -1.7215365171432495, -1.7180933952331543, -1.714650273323059, -1.7112070322036743, -1.707763910293579, -1.7043206691741943, -1.7008775472640991, -1.697434425354004, -1.6939911842346191, -1.690548062324524, -1.6871049404144287, -1.683661699295044, -1.6802185773849487, -1.676775336265564, -1.6733322143554688, -1.669888973236084, -1.6664458513259888, -1.6630027294158936, -1.6595594882965088, -1.6561163663864136, -1.6526732444763184, -1.6492300033569336, -1.6457868814468384, -1.6423437595367432, -1.6389005184173584, -1.6354573965072632, -1.6320141553878784, -1.6285710334777832, -1.6251277923583984, -1.6216846704483032, -1.618241548538208, -1.6147983074188232, -1.611355185508728, -1.6079120635986328, -1.604468822479248, -1.6010257005691528, -1.597582459449768, -1.5941393375396729, -1.5906962156295776, -1.5872529745101929, -1.5838098526000977, -1.580366611480713, -1.5769234895706177, -1.5734803676605225, -1.5700371265411377, -1.5665940046310425, -1.5631508827209473, -1.5597076416015625, -1.5562645196914673, -1.5528212785720825, -1.5493781566619873, -1.5459349155426025, -1.5424917936325073, -1.539048671722412, -1.5356054306030273, -1.5321623086929321, -1.528719186782837, -1.5252759456634521, -1.521832823753357, -1.5183897018432617, -1.514946460723877, -1.5115033388137817, -1.508060097694397, -1.5046169757843018, -1.501173734664917, -1.4977306127548218, -1.4942874908447266, -1.4908442497253418, -1.4874011278152466, -1.4839580059051514, -1.4805147647857666, -1.4770716428756714, -1.4736285209655762, -1.4701852798461914, -1.4667421579360962, -1.4632989168167114, -1.4598557949066162, -1.4564125537872314, -1.4529694318771362, -1.449526309967041, -1.4460830688476562, -1.442639946937561, -1.4391968250274658, -1.435753583908081, -1.4323104619979858, -1.4288673400878906, -1.4254240989685059, -1.421980857849121, -1.4185378551483154, -1.4150946140289307, -1.411651372909546, -1.4082082509994507, -1.4047651290893555, -1.4013218879699707, -1.3978787660598755, -1.3944356441497803, -1.3909924030303955, -1.3875492811203003, -1.384106159210205, -1.3806629180908203, -1.377219796180725, -1.3737766742706299, -1.3703334331512451, -1.36689031124115, -1.3634471893310547, -1.36000394821167, -1.3565607070922852, -1.35311758518219, -1.3496744632720947, -1.34623122215271, -1.3427879810333252, -1.3393449783325195, -1.3359017372131348, -1.33245849609375, -1.3290153741836548, -1.3255722522735596, -1.3221290111541748, -1.3186858892440796, -1.3152427673339844, -1.3117995262145996, -1.3083564043045044, -1.3049132823944092, -1.3014700412750244, -1.2980269193649292, -1.294583797454834, -1.2911405563354492, -1.287697434425354, -1.2842543125152588, -1.280811071395874, -1.2773678302764893, -1.2739248275756836, -1.2704815864562988, -1.267038345336914, -1.2635951042175293, -1.2601521015167236, -1.2567088603973389, -1.253265619277954, -1.2498226165771484, -1.2463793754577637, -1.242936134338379, -1.2394930124282837, -1.2360498905181885, -1.2326066493988037, -1.2291635274887085, -1.2257204055786133, -1.2222771644592285, -1.2188340425491333, -1.215390920639038, -1.2119476795196533, -1.208504557609558, -1.205061435699463, -1.2016181945800781, -1.198175072669983, -1.1947319507598877, -1.191288709640503, -1.1878454685211182, -1.1844024658203125, -1.1809592247009277, -1.177515983581543, -1.1740727424621582, -1.1706297397613525, -1.1671864986419678, -1.163743257522583, -1.1603001356124878, -1.1568570137023926, -1.1534137725830078, -1.1499706506729126, -1.1465275287628174, -1.1430842876434326, -1.1396411657333374, -1.1361980438232422, -1.1327548027038574, -1.1293116807937622, -1.125868558883667, -1.1224253177642822, -1.118982195854187, -1.1155390739440918, -1.112095832824707, -1.1086525917053223, -1.1052095890045166, -1.1017663478851318, -1.098323106765747, -1.0948801040649414, -1.0914368629455566, -1.0879936218261719, -1.084550380706787, -1.0811073780059814, -1.0776641368865967, -1.074220895767212, -1.0707777738571167, -1.0673346519470215, -1.0638914108276367, -1.0604482889175415, -1.0570051670074463, -1.0535619258880615, -1.0501188039779663, -1.046675682067871, -1.0432324409484863, -1.0397893190383911, -1.036346197128296, -1.0329029560089111, -1.029459834098816, -1.0260167121887207, -1.022573471069336, -1.0191302299499512, -1.0156872272491455, -1.0122439861297607, -1.008800745010376, -1.0053575038909912, -1.0019145011901855, -0.9984712600708008, -0.9950280785560608, -0.9915848970413208, -0.9881417751312256, -0.9846985936164856, -0.9812554121017456, -0.9778122901916504, -0.9743691086769104, -0.9709259271621704, -0.9674827456474304, -0.9640396237373352, -0.9605964422225952, -0.9571532607078552, -0.9537100791931152, -0.95026695728302, -0.94682377576828, -0.94338059425354, -0.9399374127388, -0.9364942908287048, -0.9330511093139648, -0.9296079874038696, -0.9261647462844849, -0.9227216243743896, -0.9192785024642944, -0.9158352613449097, -0.9123920202255249, -0.9089488983154297, -0.9055057764053345, -0.9020625352859497, -0.8986194133758545, -0.8951761722564697, -0.8917330503463745, -0.8882899284362793, -0.8848466873168945, -0.8814035654067993, -0.8779604434967041, -0.8745172023773193, -0.8710740804672241, -0.8676309585571289, -0.8641877174377441, -0.8607445955276489, -0.8573013544082642, -0.853858232498169, -0.8504151105880737, -0.846971869468689, -0.8435287475585938, -0.8400856256484985, -0.8366423845291138, -0.8331992626190186, -0.8297560214996338, -0.8263128995895386, -0.8228697776794434, -0.8194265365600586, -0.8159834146499634, -0.8125402927398682, -0.8090970516204834, -0.8056539297103882, -0.802210807800293, -0.7987675666809082, -0.795324444770813, -0.7918812036514282, -0.788438081741333, -0.7849948406219482, -0.7815515995025635, -0.7781084775924683, -0.774665355682373, -0.7712221145629883, -0.7677789926528931, -0.7643357515335083, -0.7608926296234131, -0.7574495077133179, -0.7540062665939331, -0.7505631446838379, -0.7471200227737427, -0.7436767816543579, -0.7402336597442627, -0.7367905378341675, -0.7333472967147827, -0.7299041748046875, -0.7264609336853027, -0.7230178117752075, -0.7195746898651123, -0.7161314487457275, -0.7126883268356323, -0.7092452049255371, -0.7058019638061523, -0.7023588418960571, -0.6989157199859619, -0.6954724788665771, -0.6920293569564819, -0.6885861158370972, -0.685142993927002, -0.6816998720169067, -0.678256630897522, -0.6748135089874268, -0.6713703870773315, -0.6679271459579468, -0.6644840240478516, -0.6610407829284668, -0.6575976610183716, -0.6541545391082764, -0.6507112979888916, -0.6472681760787964, -0.6438250541687012, -0.6403818130493164, -0.6369386911392212, -0.633495569229126, -0.6300523281097412, -0.626609206199646, -0.6231659650802612, -0.619722843170166, -0.6162797212600708, -0.612836480140686, -0.6093932390213013, -0.605950117111206, -0.6025068759918213, -0.5990637540817261, -0.5956205129623413, -0.5921773910522461, -0.5887342691421509, -0.5852910280227661, -0.5818479061126709, -0.5784047842025757, -0.5749615430831909, -0.5715184211730957, -0.5680752992630005, -0.5646320581436157, -0.5611889362335205, -0.5577456951141357, -0.5543025732040405, -0.5508594512939453, -0.5474162101745605, -0.5439730882644653, -0.5405299663543701, -0.5370867252349854, -0.5336436033248901, -0.5302004814147949, -0.5267572402954102, -0.5233141183853149, -0.5198708772659302, -0.516427755355835, -0.5129846334457397, -0.509541392326355, -0.5060982704162598, -0.5026551485061646, -0.4992119073867798, -0.49576878547668457, -0.4923255443572998, -0.4888824224472046, -0.4854393005371094, -0.4819960594177246, -0.4785529375076294, -0.4751098155975342, -0.4716665744781494, -0.4682234525680542, -0.464780330657959, -0.4613370895385742, -0.457893967628479, -0.45445072650909424, -0.451007604598999, -0.4475644826889038, -0.44412124156951904, -0.44067811965942383, -0.4372349977493286, -0.43379175662994385, -0.4303485155105591, -0.42690539360046387, -0.4234621524810791, -0.4200190305709839, -0.4165757894515991, -0.4131326675415039, -0.4096895456314087, -0.4062463045120239, -0.4028031826019287, -0.3993600606918335, -0.39591681957244873, -0.3924736976623535, -0.38903045654296875, -0.38558733463287354, -0.3821442127227783, -0.37870097160339355, -0.37525784969329834, -0.3718147277832031, -0.36837148666381836, -0.36492836475372314, -0.36148524284362793, -0.35804200172424316, -0.35459887981414795, -0.3511556386947632, -0.34771251678466797, -0.34426939487457275, -0.340826153755188, -0.3373830318450928, -0.33393990993499756, -0.3304966688156128, -0.3270535469055176, -0.32361042499542236, -0.3201671838760376, -0.3167240619659424, -0.3132808208465576, -0.3098376989364624, -0.3063945770263672, -0.3029513359069824, -0.2995082139968872, -0.296065092086792, -0.2926218509674072, -0.289178729057312, -0.28573548793792725, -0.28229236602783203, -0.2788492441177368, -0.27540600299835205, -0.27196288108825684, -0.2685197591781616, -0.26507651805877686, -0.26163339614868164, -0.2581902742385864, -0.2547469139099121, -0.2513037919998169, -0.24786055088043213, -0.24441742897033691, -0.2409743070602417, -0.23753106594085693, -0.23408794403076172, -0.2306448221206665, -0.22720158100128174, -0.22375845909118652, -0.22031521797180176, -0.21687209606170654, -0.21342897415161133])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_256dfa70ad95c02d76980652a73e84da.x = d3.scale.linear()\\n\",\n       \"              .domain([-1.9315698146820068, -0.21342897415161133])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_256dfa70ad95c02d76980652a73e84da.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_256dfa70ad95c02d76980652a73e84da.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_256dfa70ad95c02d76980652a73e84da.legend.addTo(map_230f89f36e3ff111c74ac3d63b01b5a0);\\n\",\n       \"\\n\",\n       \"    color_map_256dfa70ad95c02d76980652a73e84da.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_256dfa70ad95c02d76980652a73e84da.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-1.9315698146820068, &#x27;&#x27;, &#x27;&#x27;, -1.6738486289978027, &#x27;&#x27;, &#x27;&#x27;, -1.4161275625228882, &#x27;&#x27;, &#x27;&#x27;, -1.1584064960479736, &#x27;&#x27;, &#x27;&#x27;, -0.9006853103637695, &#x27;&#x27;, &#x27;&#x27;, -0.642964243888855, &#x27;&#x27;, &#x27;&#x27;, -0.3852430582046509, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_256dfa70ad95c02d76980652a73e84da.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_256dfa70ad95c02d76980652a73e84da.g = color_map_256dfa70ad95c02d76980652a73e84da.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_256dfa70ad95c02d76980652a73e84da.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_256dfa70ad95c02d76980652a73e84da.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_256dfa70ad95c02d76980652a73e84da.x(color_map_256dfa70ad95c02d76980652a73e84da.color.domain()[i - 1]) : color_map_256dfa70ad95c02d76980652a73e84da.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_256dfa70ad95c02d76980652a73e84da.color.domain().length ? color_map_256dfa70ad95c02d76980652a73e84da.x(color_map_256dfa70ad95c02d76980652a73e84da.color.domain()[i]) : color_map_256dfa70ad95c02d76980652a73e84da.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_256dfa70ad95c02d76980652a73e84da.g.call(color_map_256dfa70ad95c02d76980652a73e84da.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_ada1a726f11add9bc206a0938d3af2e9 = L.heatLayer(\\n\",\n       \"                [[28.4303, 117.9033, -0.4935379922389984], [31.1654, 121.412, -0.3820783197879791], [23.4794, 111.26, -0.4572628140449524], [34.7772, 111.1928, -0.9677769541740417], [43.8748, 125.3649, -0.8187731504440308], [36.838, 118.0448, -0.42409592866897583], [26.5506, 104.9544, -0.5606063008308411], [43.9317, 116.1042, -0.2840977609157562], [25.0925, 104.9022, -0.5122291445732117], [36.885, 120.515, -0.26966938376426697], [41.1386, 121.1303, -0.4364328384399414], [25.4552, 119.0018, -0.35921141505241394], [50.4217, 124.1303, -1.3235877752304077], [33.739, 113.292, -0.8451119065284729], [25.8664, 114.9367, -0.5414063930511475], [22.8054, 113.292, -0.40272626280784607], [29.8272, 106.379, -0.7681377530097961], [32.0314, 118.803, -0.44828468561172485], [28.2325, 113.0833, -0.7018067836761475], [31.896, 121.173, -0.382090300321579], [35.428, 116.6305, -0.6311240196228027], [29.389, 106.513, -0.7425093650817871], [33.975, 116.8008, -0.6237350702285767], [31.3097, 120.669, -0.3940677344799042], [32.625, 116.7039, -0.6458339095115662], [39.8261, 109.9486, -0.4647095799446106], [37.4664, 116.3061, -0.6149332523345947], [40.9923, 113.1306, -0.35213935375213623], [39.6407, 118.1853, -0.22186943888664246], [42.2217, 123.7153, -0.6324665546417236], [34.1978, 108.985, -0.9761192798614502], [31.3839, 118.4022, -0.5185890793800354], [31.03389, 112.1908, -0.911469042301178], [27.6442, 113.8686, -0.663497269153595], [29.3578, 113.1094, -0.7865391969680786], [29.5947, 105.0717, -0.7658689618110657], [37.7019, 112.7549, -0.8710696697235107], [37.0533, 114.5261, -0.8773278594017029], [22.2281, 113.299, -0.4026324450969696], [39.7294, 98.5023, -0.36749154329299927], [41.615, 120.3939, -0.4077048897743225], [39.3179, 112.4254, -0.6260009407997131], [24.9424, 118.6663, -0.37778669595718384], [40.6575, 109.8104, -0.38610878586769104], [32.02, 120.87, -0.3840411603450775], [28.6844, 115.893, -0.66713547706604], [39.5747, 116.7729, -0.2684144675731659], [42.8939, 129.4892, -1.003438949584961], [38.3254, 116.8584, -0.41547486186027527], [28.5773, 121.377, -0.3724077343940735], [39.0511, 121.7769, -0.3865620493888855], [30.6539, 117.4974, -0.6509469151496887], [36.2866, 100.6188, -0.5297806859016418], [45.9819, 126.6106, -1.033044695854187], [45.2978, 130.9298, -1.2316464185714722], [23.7569, 114.6778, -0.4132471978664398], [27.9119, 112.9074, -0.6881955862045288], [24.8885, 102.821, -0.5162941217422485], [29.5844, 103.7627, -0.7553800344467163], [24.769519, 113.586606, -0.4980621933937073], [41.5672, 120.4486, -0.4094610810279846], [39.7884, 109.9734, -0.46877822279930115], [27.8328, 114.9289, -0.6548717617988586], [32.3761, 119.389, -0.3929530680179596], [25.7054, 100.1542, -0.5135148763656616], [29.3628, 104.7547, -0.7524750232696533], [24.3663, 109.3957, -0.48474597930908203], [31.215, 107.525, -0.854620635509491], [35.76806, 115.0061, -0.8311428427696228], [26.3003, 106.805, -0.5528236031532288], [34.6972, 119.3581, -0.3281519114971161], [30.6463, 111.3549, -0.9188972115516663], [30.2366, 119.7183, -0.42589014768600464], [27.3392, 103.7032, -0.5807957649230957], [33.8997, 116.8067, -0.6228816509246826], [33.5981, 119.036, -0.36906784772872925], [37.0964, 114.5331, -0.8751950860023499], [37.7575, 115.6951, -0.6851069927215576], [22.5211, 113.3769, -0.3974303901195526], [22.6411, 110.1675, -0.438161164522171], [38.3228, 116.8709, -0.4143733084201813], [25.8471, 114.8905, -0.5413601398468018], [35.04388889, 111.0522222, -0.9759545922279358], [33.9953, 113.7906, -0.833139181137085], [23.7586, 114.6944, -0.41299259662628174], [45.6842, 126.6206, -1.010209560394287], [38.8957, 115.5223, -0.5046786069869995], [40.715, 120.8478, -0.39757442474365234], [39.6969, 106.8089, -0.4157194197177887], [23.5353, 116.3697, -0.39832866191864014], [39.746, 98.509, -0.36750325560569763], [36.7008, 119.1425, -0.3042147159576416], [43.8694, 125.325, -0.8162333965301514], [42.0228, 121.6722, -0.5090889930725098], [23.0672, 109.6042, -0.4525354206562042], [30.5947, 114.3008, -0.8042972087860107], [23.475, 111.3178, -0.4568111300468445], [27.6869, 106.9222, -0.6192646026611328], [34.1546, 108.906, -0.9741923213005066], [36.8041, 117.8512, -0.4519779086112976], [23.0916, 113.348, -0.41192376613616943], [32.6319, 116.8306, -0.6367433667182922], [32.4867, 119.9, -0.37733587622642517], [30.1366, 104.6617, -0.7978231310844421], [24.4072, 111.5622, -0.48317044973373413], [31.7618, 116.478, -0.6875990033149719], [41.2692, 123.7989, -0.6016100645065308], [42.0503, 121.6972, -0.5117127299308777], [38.2478, 109.7336, -0.609345018863678], [34.6575, 109.2, -0.9662015438079834], [39.79777778, 98.26722222, -0.37246331572532654], [25.5035, 103.7897, -0.5220581293106079], [35.763, 115.031, -0.8292278051376343], [39.9425, 116.361, -0.258325457572937], [34.3739, 107.1186, -0.8164825439453125], [30.2352, 115.0625, -0.7672415971755981], [44.1756, 87.5475, -1.071791410446167], [40.2865, 116.17, -0.24447284638881683], [36.1851, 120.3905, -0.2743447422981262], [36.0417, 111.4917, -0.9522456526756287], [39.0153, 106.3717, -0.4559776484966278], [36.6867, 101.524, -0.5364522337913513], [35.213, 113.227, -0.912718653678894], [24.506, 117.7116, -0.3843761086463928], [47.203, 123.6261, -0.9821566939353943], [46.0347, 124.8354, -0.9440271854400635], [35.0697, 109.0697, -0.9328688383102417], [34.3622, 107.2386, -0.8319613337516785], [35.7306, 114.2878, -0.8740900158882141], [44.5952, 129.5902, -1.1030235290527344], [23.3667, 116.6794, -0.4089219868183136], [34.7837, 117.2852, -0.5558533072471619], [31.155, 120.636, -0.3954230546951294], [30.4742, 114.9028, -0.7759960889816284], [41.3047, 123.7308, -0.5993222594261169], [28.8558, 105.4322, -0.7136402130126953], [36.71, 117.541, -0.4921402037143707], [32.6494, 110.78, -0.8806926608085632], [31.8516, 117.124, -0.6514545679092407], [30.5797, 105.7519, -0.8021834492683411], [38.9467, 100.4686, -0.3794417977333069], [39.617, 122.011, -0.41709068417549133], [28.6428, 112.4067, -0.7447631359100342], [31.2659, 121.536, -0.38230425119400024], [39.5178, 116.6838, -0.27971726655960083], [28.7989, 104.6789, -0.7116164565086365], [31.5072, 104.7283, -0.8114951848983765], [34.6869, 112.4831, -0.9255185723304749], [31.388, 120.953, -0.38841259479522705], [30.475, 105.5956, -0.8031514883041382], [41.3283, 123.8436, -0.606258749961853], [26.3108, 117.7275, -0.4011327028274536], [22.7629, 113.257, -0.40215665102005005], [32.645, 117.0083, -0.6222909688949585], [22.8225, 108.321, -0.4594643712043762], [40.3937, 116.644, -0.2134290337562561], [46.0872, 85.6931, -1.3333728313446045], [30.8596, 120.1844, -0.4052084684371948], [31.1333, 104.3883, -0.8179453611373901], [27.9939, 120.677, -0.34381967782974243], [37.187, 122.019, -0.3437870740890503], [29.8633, 121.586, -0.38339996337890625], [39.65782, 118.1838, -0.2211822122335434], [34.6869, 112.4664, -0.9261235594749451], [40.6592, 122.2414, -0.48153916001319885], [39.8673, 116.366, -0.2654404640197754], [34.493, 109.4636, -0.9752650856971741], [40.8144, 111.608, -0.39228835701942444], [28.095, 116.9622, -0.550414502620697], [22.9477, 113.352, -0.40621525049209595], [27.5342, 109.9792, -0.6733643412590027], [31.874, 120.526, -0.38833481073379517], [36.2289, 117.6789, -0.4829420745372772], [28.0005, 116.3574, -0.6026161909103394], [41.1196, 123.044, -0.5532134771347046], [29.6588, 90.9798, -0.5099984407424927], [23.0528, 114.4183, -0.39950984716415405], [50.4269, 124.1186, -1.3236671686172485], [30.6578, 104.054, -0.8100871443748474], [31.6928, 118.48, -0.4984091520309448], [46.6384, 126.9934, -1.1050630807876587], [27.3033, 111.5239, -0.6622723937034607], [31.8711, 106.7389, -0.8199610710144043], [37.154, 122.471, -0.3706497251987457], [48.4658, 129.4942, -1.394345760345459], [41.0781, 121.0986, -0.43136370182037354], [28.1442, 112.9956, -0.6982113718986511], [40.7608, 107.4211, -0.34035012125968933], [37.4314, 118.6672, -0.31726717948913574], [43.8947, 126.5786, -0.887017011642456], [23.63444, 113.0472, -0.4483797550201416], [37.4442, 118.5857, -0.32366079092025757], [25.8179, 113.0119, -0.565605640411377], [23.105, 113.261, -0.41481149196624756], [32.0417, 120.81, -0.3843402862548828], [23.0786, 112.4722, -0.426779180765152], [31.2071, 121.577, -0.38265323638916016], [37.8195, 112.57, -0.8588016033172607], [32.0564, 112.1392, -0.9005221724510193], [38.95111111, 121.565, -0.3708723485469818], [43.1747, 124.3419, -0.7201327085494995], [29.7534, 116.0726, -0.714504063129425], [39.9279, 116.225, -0.26927420496940613], [31.6411, 118.4828, -0.4999011754989624], [36.5481, 104.1731, -0.5509815216064453], [35.0994, 109.0656, -0.9298074841499329], [23.2539, 116.6092, -0.4109755754470825], [31.3708, 120.641, -0.39400041103363037], [34.7187, 113.727, -0.8742900490760803], [36.497, 117.8477, -0.46150723099708557], [27.8094, 102.3419, -0.5753955841064453], [43.8303, 87.5801, -1.04574716091156], [27.6428, 113.8381, -0.6637526750564575], [31.5631, 120.245, -0.39442989230155945], [29.41569, 106.5506, -0.7455822825431824], [32.0197, 112.155, -0.9012435674667358], [26.5747, 107.9783, -0.5630334615707397], [28.76611, 104.6225, -0.7084745764732361], [27.8036, 114.9314, -0.6535840034484863], [21.9667, 108.6236, -0.4536709487438202], [29.1456, 111.7158, -0.798153817653656], [24.2654, 116.1248, -0.40489885210990906], [49.2261, 119.7594, -1.0227725505828857], [32.8603, 115.8556, -0.6944723129272461], [27.9958, 113.1817, -0.6890441179275513], [28.6869, 115.852, -0.6690536141395569], [30.3055, 112.2887, -0.8801717758178711], [46.7588, 130.3794, -1.3043196201324463], [32.965, 114.018, -0.7980878353118896], [22.5328, 113.024, -0.4005362391471863], [36.6114, 116.988, -0.5610229969024658], [32.996, 113.996, -0.7992598414421082], [31.354, 119.818, -0.4077128767967224], [38.0513, 114.4548, -0.8013213872909546], [42.8775, 129.3675, -0.9949892163276672], [26.6946, 119.5001, -0.3310137689113617], [33.627, 119.0122, -0.3703492283821106], [28.4231, 119.879, -0.36524471640586853], [29.635, 119.026, -0.45900648832321167], [31.7275, 113.3583, -0.8633614778518677], [41.5647, 120.4247, -0.40767738223075867], [34.6231, 112.3844, -0.9266655445098877], [30.1377, 104.6289, -0.7978363633155823], [42.0186, 121.6561, -0.5078708529472351], [29.5817, 105.0653, -0.7651579976081848], [24.2719, 116.0797, -0.4060462415218353], [39.5371, 75.9828, -1.9280675649642944], [41.9206, 126.4047, -0.78453528881073], [27.583, 110.0394, -0.6764296293258667], [33.4022, 120.118, -0.3473420739173889], [26.6343, 106.7487, -0.5645259022712708], [35.4234, 119.5198, -0.3137619197368622], [28.1308, 112.8908, -0.698726236820221], [24.3406, 109.3886, -0.48398730158805847], [21.7631, 108.3511, -0.4576699137687683], [27.11, 114.9739, -0.6252968907356262], [42.8953, 125.1567, -0.7558968663215637], [43.895, 81.2867, -1.5448460578918457], [40.7736, 120.8631, -0.40136513113975525], [32.935, 117.3086, -0.586566150188446], [40.5905, 110.0067, -0.3933739960193634], [29.8208, 121.56, -0.3824601173400879], [32.7639, 116.8028, -0.6365731358528137], [26.8802, 100.2497, -0.5199241638183594], [30.3714, 114.8989, -0.774895966053009], [29.7228, 106.626, -0.7654441595077515], [43.85, 125.217, -0.8090677857398987], [21.6828, 110.8592, -0.4285833537578583], [33.5979, 114.6546, -0.7716060876846313], [29.6007, 103.7506, -0.7560993432998657], [47.7222, 128.8736, -1.2973504066467285], [24.81119444, 113.5593889, -0.5002734065055847], [29.315, 110.4417, -0.8179261088371277], [27.7314, 112.0194, -0.6812100410461426], [34.9058, 108.9344, -0.938902735710144], [29.5186, 106.54, -0.7524162530899048], [40.0031, 116.407, -0.2509254217147827], [31.9286, 102.1755, -0.7528111338615417], [38.8756, 115.442, -0.5194540619850159], [40.7688, 114.9032, -0.28555774688720703], [38.0398, 114.6046, -0.7929156422615051], [37.8792, 113.4922, -0.8513600826263428], [31.0283, 103.613, -0.8051037788391113], [31.3508, 118.3528, -0.526033878326416], [32.88922222, 115.7838889, -0.6986448168754578], [36.0783, 111.5531, -0.9510241150856018], [36.2126, 113.0886, -0.9353792071342468], [21.8536, 111.9508, -0.414828896522522], [29.7736, 121.633, -0.3838507831096649], [28.3586, 112.9958, -0.7111544013023376], [37.4294, 122.1206, -0.3538796901702881], [28.71583, 104.5761, -0.7038720846176147], [31.5848, 120.354, -0.3934529423713684], [31.2108, 107.4967, -0.8536085486412048], [26.0797, 119.268, -0.3412514925003052], [23.0467, 113.144, -0.4144364893436432], [26.6383, 118.1694, -0.3809184432029724], [27.9153, 113.0048, -0.6873692274093628], [32.6975, 109.0072, -0.8738232851028442], [31.955, 119.146, -0.4210282862186432], [33.38256667, 104.9338889, -0.6851201057434082], [37.8564, 113.5753, -0.8522900938987732], [39.7711, 98.2908, -0.37177717685699463], [30.6145, 116.9894, -0.6957478523254395], [43.9469, 87.4754, -1.0610847473144531], [39.5453, 116.7022, -0.2759974002838135], [30.9219, 117.8561, -0.6028422713279724], [34.7745, 113.641, -0.8819673657417297], [32.41, 119.404, -0.3910379409790039], [22.5111, 113.4075, -0.3974369168281555], [43.6156, 122.3039, -0.6197533011436462], [37.7087, 112.7105, -0.8701455593109131], [41.3472, 123.8142, -0.6054163575172424], [43.831, 87.6432, -1.0413380861282349], [22.8322, 100.9817, -0.47936439514160156], [23.415, 111.2353, -0.4548167884349823], [29.2958, 117.2111, -0.6233527064323425], [30.21, 120.211, -0.40236711502075195], [27.7019, 106.9242, -0.6203028559684753], [30.0506, 103.8986, -0.784486711025238], [46.8032, 130.3648, -1.306872010231018], [33.9592, 118.2442, -0.4454643130302429], [26.4519, 111.5989, -0.6080578565597534], [31.1907, 121.703, -0.3852769434452057], [26.8576, 100.2143, -0.5188501477241516], [47.2988, 123.945, -1.0059959888458252], [36.253, 120.014, -0.27825841307640076], [32.9917, 112.5192, -0.8563840985298157], [34.402, 115.6578, -0.7251615524291992], [37.9844, 106.2025, -0.5226898789405823], [45.2948, 131.0103, -1.2363367080688477], [33.3942, 120.156, -0.3484400510787964], [24.3898, 109.4883, -0.4853563606739044], [30.9742, 118.7386, -0.4885864555835724], [26.6029, 106.6856, -0.5637112259864807], [31.2994, 120.543, -0.3958379030227661], [30.3515, 112.2068, -0.8856410384178162], [30.5706, 104.079, -0.8087958693504333], [21.5958, 109.2256, -0.4505648910999298], [44.1564, 87.9897, -1.0395512580871582], [22.7875, 108.301, -0.4589730203151703], [26.2403, 107.5228, -0.550713837146759], [27.5578, 109.9972, -0.6748163104057312], [30.4865, 106.6351, -0.805336058139801], [38.4975, 106.2328, -0.48817846179008484], [30.9892, 112.1969, -0.9110134840011597], [37.7379, 115.6426, -0.695988118648529], [36.1417, 106.2319, -0.6372972130775452], [43.4569, 87.4651, -1.0292284488677979], [24.3158, 109.4839, -0.48320654034614563], [45.8194, 130.8625, -1.2640620470046997], [29.1389, 110.48, -0.8027721643447876], [29.90166667, 121.6147222, -0.3843514621257782], [34.7997, 111.1489, -0.9697964191436768], [26.0931, 119.58, -0.34189674258232117], [41.7972, 123.3997, -0.5991650819778442], [25.5364, 103.8, -0.5232412815093994], [31.7797, 116.5068, -0.6858654022216797], [27.7569, 111.9561, -0.6824989914894104], [38.9846, 117.3747, -0.285915344953537], [36.086, 114.32, -0.8786824941635132], [39.9934, 116.315, -0.256614089012146], [37.7805, 112.488, -0.8609977960586548], [29.7292, 115.988, -0.716299295425415], [27.8317, 99.7056, -0.5302802324295044], [38.91194444, 121.6330556, -0.3734320104122162], [43.941, 81.3364, -1.5427931547164917], [37.18, 119.959, -0.2578484117984772], [35.5294, 106.7039, -0.688795804977417], [33.581, 114.014, -0.807620108127594], [30.7819, 111.3296, -0.9242147207260132], [38.5036, 106.1358, -0.4865340292453766], [31.751, 119.579, -0.40468084812164307], [29.6376, 94.3681, -0.46517857909202576], [38.85611111, 121.5180556, -0.3643976151943207], [30.7157, 111.3009, -0.9224914908409119], [40.8369, 111.751, -0.3917670249938965], [36.4796, 115.9835, -0.717985212802887], [39.2474, 117.7918, -0.24480554461479187], [37.825, 120.747, -0.2861223518848419], [39.0877, 117.307, -0.28055042028427124], [35.0003, 102.905, -0.6165819764137268], [31.6219, 120.275, -0.3929190933704376], [29.6747, 91.1221, -0.5043525695800781], [41.7156, 125.9361, -0.7473201155662537], [34.2153, 117.256, -0.5657209157943726], [31.1108, 104.3539, -0.8177611827850342], [29.8906, 121.554, -0.3827499747276306], [30.65638889, 104.0238889, -0.809502124786377], [46.6219, 124.8648, -0.9942072629928589], [32.215, 119.491, -0.3944121301174164], [29.9899, 103.0013, -0.7544363141059875], [34.0117, 113.8331, -0.8314506411552429], [42.8328, 93.4961, -0.6117590665817261], [36.5458, 104.1731, -0.5510672926902771], [26.6009, 106.7105, -0.5635823607444763], [23.0944, 109.6014, -0.45311570167541504], [29.4758, 113.2621, -0.7914480566978455], [33.0069, 114.0131, -0.7984063029289246], [22.6164, 110.1433, -0.4379250109195709], [41.7381, 125.9486, -0.7491481304168701], [37.8692, 112.5369, -0.853592038154602], [32.3292, 119.8767, -0.38201507925987244], [35.4039, 116.5546, -0.6406022310256958], [29.9816, 103.0001, -0.7538887858390808], [39.1654, 117.145, -0.28297656774520874], [32.3878, 119.46, -0.38999229669570923], [45.7478, 126.593, -1.0135815143585205], [40.1269, 113.2661, -0.4769062399864197], [32.4246, 105.8153, -0.7426477670669556], [30.6103, 114.4272, -0.7977501153945923], [23.02777778, 113.7461111, -0.40081676840782166], [35.9019, 114.17, -0.8835403323173523], [38.4841, 106.2739, -0.48980221152305603], [36.865, 120.537, -0.2708902657032013], [39.2282, 106.7704, -0.44748833775520325], [30.8811, 117.7442, -0.6178969144821167], [23.2775, 116.7258, -0.41222113370895386], [37.5639, 121.2514, -0.30686208605766296], [27.8528, 113.13, -0.6831775903701782], [34.5021, 109.4266, -0.9748157858848572], [38.6016, 105.9512, -0.47725358605384827], [32.8985, 117.3065, -0.5884383320808411], [37.1152, 79.9485, -1.527754306793213], [26.567, 101.7227, -0.5330756902694702], [36.799, 119.976, -0.2625586986541748], [30.2997, 113.8531, -0.8216074705123901], [41.9339, 123.6836, -0.6193987131118774], [36.864, 118.78, -0.32832232117652893], [42.0486, 121.6592, -0.5091298222541809], [41.1042, 121.835, -0.4803024232387543], [38.03777778, 114.5480556, -0.7976381778717041], [36.0714, 111.5028, -0.9507216811180115], [26.5928, 101.5769, -0.5321235060691833], [24.339, 102.5381, -0.5037485957145691], [30.66, 117.49, -0.6517377495765686], [19.9969, 110.338, -0.493668794631958], [34.3469, 106.005, -0.6939566731452942], [28.2264, 117.0222, -0.5561708807945251], [30.0125, 103.009, -0.7561187148094177], [38.2991, 116.8854, -0.41626882553100586], [26.4364, 111.5992, -0.6068518161773682], [23.8822, 100.0869, -0.4880264699459076], [26.4214, 111.6156, -0.6058064103126526], [23.0395, 113.105, -0.4149465560913086], [29.53675, 106.4959, -0.7528514266014099], [32.64600333, 117.0411667, -0.6193956136703491], [37.9854, 112.549, -0.8394891023635864], [28.0167, 120.671, -0.34465697407722473], [33.5653, 114.0322, -0.8061038851737976], [30.9414, 117.8178, -0.6076244711875916], [27.9747, 120.76, -0.3444385230541229], [24.4674, 117.6336, -0.3853178024291992], [30.8217, 106.1031, -0.8081412315368652], [35.0573, 118.3418, -0.40430545806884766], [34.864, 117.5564, -0.5135599374771118], [22.0019, 100.7939, -0.492328941822052], [45.305, 130.9817, -1.2353116273880005], [44.2967, 86.0497, -1.185450553894043], [30.2747, 120.063, -0.40843862295150757], [26.6761, 118.0966, -0.3854385018348694], [37.3803, 118.0062, -0.39129987359046936], [36.8198, 118.3092, -0.3894312083721161], [31.9108, 119.905, -0.39235296845436096], [40.0625, 124.3303, -0.572287380695343], [27.8159, 112.9227, -0.6833528280258179], [45.7733, 126.689, -1.0207445621490479], [46.0707, 122.0931, -0.8110710978507996], [37.4967, 121.2611, -0.30642420053482056], [33.6067, 118.989, -0.37256231904029846], [33.6128, 114.6613, -0.7716163396835327], [22.6069, 113.104, -0.40073341131210327], [45.7667, 126.635, -1.0173137187957764], [24.3304, 109.4108, -0.48368436098098755], [41.1933, 80.2956, -1.5369834899902344], [30.8064, 106.056, -0.8072510957717896], [36.2211, 117.6983, -0.4807317554950714], [30.518, 106.631, -0.806350827217102], [32.1883, 119.68, -0.3897622525691986], [32.0775, 118.795, -0.4473325312137604], [31.6908, 113.3833, -0.8621350526809692], [37.374, 120.399, -0.26264357566833496], [31.6861, 118.5058, -0.4952293634414673], [26.2331, 111.6236, -0.5904955863952637], [28.8194, 104.5969, -0.7125062346458435], [28.19, 112.9394, -0.701428234577179], [23.3892, 104.2319, -0.48189792037010193], [46.6527, 126.9636, -1.1046335697174072], [24.441, 98.578, -0.49428698420524597], [35.1147, 111.0414, -0.9768330454826355], [31.4, 119.46, -0.4203747510910034], [42.9061, 129.5042, -1.005026936531067], [47.9047, 88.1214, -1.3274842500686646], [26.6607, 119.5202, -0.3307824432849884], [40.8452, 111.659, -0.3903213143348694], [29.7048, 115.9581, -0.7162386178970337], [46.6462, 131.1516, -1.3415523767471313], [35.5714, 104.6228, -0.5893070101737976], [23.1323, 113.3208, -0.41478729248046875], [30.0033, 120.7789, -0.38787901401519775], [30.4133, 114.8131, -0.779173731803894], [39.8745, 116.434, -0.26030823588371277], [44.0297, 87.2717, -1.0812193155288696], [42.2814, 118.9233, -0.3301057815551758], [45.2924, 130.962, -1.233235478401184], [23.5739, 116.3594, -0.3969111144542694], [30.1808, 120.088, -0.40689072012901306], [36.6106, 109.5056, -0.7890032529830933], [29.6541, 91.1774, -0.5025990009307861], [44.5462, 129.6386, -1.1028133630752563], [25.2708, 110.3089, -0.5175222158432007], [43.8256, 126.55, -0.8813337087631226], [45.755, 126.542, -1.0113543272018433], [21.6669, 110.9067, -0.42848122119903564], [34.9162, 113.6113, -0.8880335092544556], [25.5811, 100.2171, -0.5139244794845581], [29.8539, 114.2894, -0.780413806438446], [26.9056, 112.5664, -0.6386185884475708], [47.3382, 130.1097, -1.3346586227416992], [31.4747, 104.7778, -0.8125013113021851], [34.6258, 112.4275, -0.9252012372016907], [34.3672, 107.1906, -0.8258087635040283], [32.18888889, 119.4369444, -0.397433340549469], [24.77908333, 113.6734722, -0.4978332221508026], [23.5538, 113.589, -0.4326359033584595], [35.4813, 112.8252, -0.9367671012878418], [35.235, 113.261, -0.9119430184364319], [41.8594, 123.9, -0.629330039024353], [22.7019, 110.1106, -0.44011518359184265], [32.1403, 114.0122, -0.8194793462753296], [24.795928, 113.598061, -0.499237596988678], [27.8136, 99.7064, -0.5299374461174011], [36.0822, 111.5169, -0.9503199458122253], [37.3617, 118.0018, -0.3932968080043793], [40.7579, 111.651, -0.39707180857658386], [43.8167, 125.25, -0.809054434299469], [37.43445, 118.696, -0.3146462142467499], [28.5808, 112.3458, -0.7409340739250183], [26.6514, 118.1819, -0.3803526759147644], [46.6572, 131.1638, -1.343115210533142], [35.4144, 116.5856, -0.6366742253303528], [24.68636111, 113.5970833, -0.4941606819629669], [23.05361111, 113.7819444, -0.40097784996032715], [31.7506, 118.5106, -0.49216488003730774], [30.5719, 114.3672, -0.8003638982772827], [29.4402, 112.9943, -0.7966213226318359], [35.28385, 113.5922, -0.8984441757202148], [30.698, 111.2992, -0.921830952167511], [45.7677, 131.0032, -1.2688584327697754], [45.5828, 84.8897, -1.3527867794036865], [38.86388889, 121.625, -0.37114015221595764], [35.272, 113.884, -0.8831822276115417], [31.0935, 120.978, -0.38822582364082336], [34.9817, 118.2764, -0.4139779508113861], [34.7967, 114.2886, -0.838309109210968], [30.4183, 120.301, -0.4002276659011841], [29.6453, 106.562, -0.7603740096092224], [35.546, 112.8453, -0.9372882843017578], [41.1953, 123.2, -0.5658146739006042], [30.63, 104.1113889, -0.8106021285057068], [27.5733, 109.9333, -0.6754526495933533], [36.4343, 116.0072, -0.7149158120155334], [36.6275, 109.4131, -0.7791045904159546], [30.5494, 114.3006, -0.8034767508506775], [30.9414, 117.7806, -0.612248420715332], [45.6886, 85.1186, -1.3443222045898438], [22.5931, 113.0819, -0.400834858417511], [27.0658, 114.9817, -0.623156726360321], [27.7231, 109.1794, -0.6754332780838013], [24.6928, 108.054, -0.4968961775302887], [35.5051, 112.85, -0.9364258050918579], [43.962, 87.6444, -1.0501376390457153], [23.5292, 116.4094, -0.3992632329463959], [22.5978, 114.297, -0.40176331996917725], [22.5545, 114.1063, -0.4017103910446167], [43.8875, 126.555, -0.8852784037590027], [41.1222, 121.1178, -0.4347972571849823], [27.7297, 109.1916, -0.6761084198951721], [27.8344, 114.9831, -0.6536450386047363], [37.8531, 113.6292, -0.8518179059028625], [22.0225, 100.8017, -0.49182307720184326], [40.6511, 122.215, -0.47961339354515076], [33.6347, 114.6758, -0.7713559865951538], [26.5892, 104.8, -0.5612106919288635], [33.3947, 120.225, -0.3494125306606293], [29.6926, 116.0628, -0.7122105360031128], [38.885, 121.5638889, -0.36831024289131165], [39.6572, 106.7931, -0.4183417856693268], [41.0903, 122.0539, -0.4922984540462494], [41.8864, 124.0878, -0.6413490176200867], [31.17, 120.635, -0.3953712582588196], [33.8561, 115.7831, -0.7057132720947266], [36.913, 121.531, -0.3146398663520813], [37.809, 120.773, -0.2870653569698334], [23.3993, 103.3772, -0.48352569341659546], [32.9735, 112.5003, -0.8573926687240601], [41.7775, 123.478, -0.6025922298431396], [29.1242, 110.4697, -0.8014749884605408], [26.53111111, 107.8908333, -0.5591345429420471], [35.0308, 110.9678, -0.9767929911613464], [38.97388889, 121.6119444, -0.3744858503341675], [31.2797, 107.5272, -0.8551596403121948], [31.0483, 112.2014, -0.911280632019043], [30.2311, 119.6942, -0.4272114932537079], [30.2897, 120.157, -0.40485885739326477], [36.6622, 117.049, -0.5508314967155457], [34.3731, 109.2186, -0.9758158326148987], [33.1138, 107.0089, -0.7765657305717468], [22.5497, 113.3881, -0.39726200699806213], [26.1092, 119.299, -0.3404810428619385], [38.9108, 115.4713, -0.5089100003242493], [28.1944, 113.0014, -0.7008507251739502], [25.1174, 117.0181, -0.40360400080680847], [35.2375, 115.474722, -0.7722452282905579], [31.737, 119.579, -0.4050700068473816], [29.57278, 106.4042, -0.7528735995292664], [30.2989, 109.5039, -0.8812333941459656], [31.7371, 116.508, -0.6874516606330872], [25.9061, 113.0073, -0.5708072781562805], [34.5911, 119.1478, -0.33748409152030945], [37.197, 122.038, -0.3450612425804138], [26.5155, 106.6948, -0.5610291361808777], [29.305, 120.091, -0.38947391510009766], [30.72358333, 103.97275, -0.809728741645813], [31.955, 119.18, -0.41872942447662354], [35.6039, 103.2139, -0.5938981771469116], [31.5031, 120.242, -0.3956518769264221], [38.4519, 112.7383, -0.7752693891525269], [37.8873, 112.522, -0.8513669967651367], [37.3753, 97.3731, -0.4061115086078644], [31.2261, 121.425, -0.38193976879119873], [32.0572, 118.749, -0.45298829674720764], [29.5867, 115.9936, -0.7097876667976379], [33.5039, 119.135, -0.36353418231010437], [39.4365, 75.9435, -1.9315698146820068], [23.7208, 109.2131, -0.4699573218822479], [31.7308, 113.3983, -0.8613230586051941], [27.7842, 114.3953, -0.6617457270622253], [36.8088, 118.0482, -0.4248029887676239], [27.8728, 112.8937, -0.6862861514091492], [23.0048, 113.134, -0.4124099612236023], [28.6047, 112.3347, -0.7430323958396912], [36.0211, 106.2375, -0.6443254947662354], [29.3547, 110.5594, -0.8211170434951782], [31.4539, 104.7536, -0.8134378790855408], [39.5989, 109.8119, -0.4828481674194336], [32.395, 111.0419, -0.8942090272903442], [31.172, 120.658, -0.39498576521873474], [22.805, 108.383, -0.4587734043598175], [34.3164, 108.7369, -0.966215193271637], [41.9228, 123.3783, -0.6020916104316711], [34.794, 111.158, -0.9693462252616882], [31.2284, 121.533, -0.38239628076553345], [27.8403, 112.9118, -0.6846007704734802], [29.2365, 88.8931, -0.6451621055603027], [31.317, 119.438, -0.42419126629829407], [22.9394, 112.0369, -0.42576438188552856], [25.0405, 102.722, -0.5189899206161499], [34.7822, 111.19, -0.9680501222610474], [25.7759, 113.0348, -0.5631774067878723], [40.0917, 113.3444, -0.47946828603744507], [36.5819, 101.834, -0.548282265663147], [38.4928, 112.7003, -0.7680396437644958], [40.916, 107.5936, -0.33130908012390137], [34.2629, 108.993, -0.9753897190093994], [34.8731, 108.9589, -0.9432442784309387], [23.1478, 109.5681, -0.4544893205165863], [31.92, 120.302, -0.38777562975883484], [42.2953, 123.8831, -0.6457873582839966], [43.6801, 122.2532, -0.6214450597763062], [26.5917, 104.83, -0.5614838600158691], [25.4792, 118.981, -0.35797080397605896], [28.4459, 117.973, -0.48867926001548767], [32.6939, 109.0281, -0.8741176128387451], [39.3265, 112.4078, -0.6238560676574707], [32.3061, 118.3158, -0.4931383728981018], [36.6164, 114.5426, -0.8793557286262512], [27.2582, 111.4908, -0.6598795056343079], [41.0112, 117.9384, -0.22368302941322327], [37.9648, 106.1532, -0.522622287273407], [41.0971, 122.9642, -0.54749995470047], [34.7496, 113.5991, -0.8835638165473938], [27.8953, 102.2311, -0.5767427682876587], [29.5634, 103.757, -0.7537043690681458], [32.4429, 105.8242, -0.7415629029273987], [29.6535, 116.0174, -0.7120259404182434], [34.719, 113.734, -0.873866617679596], [47.3349, 130.2659, -1.343273639678955], [46.619, 131.1651, -1.3403067588806152], [34.378, 108.869, -0.9685972929000854], [38.8707, 115.5214, -0.5094226002693176], [30.7525, 120.7844444, -0.3920096158981323], [22.96583333, 113.7383333, -0.3994717597961426], [32.9683, 112.55, -0.8564598560333252], [39.8129, 110.0023, -0.4670051038265228], [29.2647, 117.1558, -0.6276031136512756], [30.5514, 114.2511, -0.8063564896583557], [27.8847, 102.2689, -0.5773364901542664], [35.7672, 115.0628, -0.8271020650863647], [30.696, 111.268, -0.9221222996711731], [41.765, 123.41, -0.5986244678497314], [41.8417, 123.7117, -0.617392897605896], [26.5894, 104.8475, -0.5614984631538391], [25.0492, 101.538, -0.517390787601471], [27.9639, 116.3598, -0.6000320315361023], [33.6481, 116.9765, -0.6035133004188538], [41.0833, 122.9481, -0.5458875894546509], [37.4514, 105.0197, -0.5210462808609009], [26.8906, 100.2203, -0.5196572542190552], [35.5236, 107.6406, -0.7663035988807678], [22.7422, 114.5317, -0.3993372917175293], [35.31, 113.836, -0.8871706128120422], [30.3944, 114.8878, -0.7757406234741211], [39.0927, 117.202, -0.28622499108314514], [32.1078, 114.1044, -0.8138300776481628], [35.5461, 106.6692, -0.686601996421814], [37.5211, 111.1406, -0.8172515630722046], [40.9843, 117.9525, -0.22321054339408875], [33.9506, 118.3214, -0.43723630905151367], [32.939, 117.3961, -0.5794987678527832], [23.3594, 104.2533, -0.4815231263637543], [36.881, 118.746, -0.3311021625995636], [36.6872, 116.989, -0.5588779449462891], [34.802, 113.564, -0.887580931186676], [24.5058, 118.0936, -0.3887495696544647], [43.9311, 116.0781, -0.2832333743572235], [34.6692, 112.3628, -0.9291878938674927], [36.6428, 101.748, -0.5435060858726501], [33.7214, 113.3064, -0.8439393639564514], [36.1031, 103.631, -0.5750205516815186], [29.5822, 105.0406, -0.7653574347496033], [32.8913, 117.4186, -0.5798794627189636], [23.3682, 103.3758, -0.4831092357635498], [43.9404, 81.2815, -1.5474954843521118], [27.8042, 114.9119, -0.6540619730949402], [29.7125, 106.617, -0.7647354006767273], [32.0092, 118.737, -0.45624759793281555], [28.8833, 105.4322, -0.7155787944793701], [35.27, 115.455, -0.7754301428794861], [40.7612, 111.717, -0.3973163664340973], [42.8172, 93.5128, -0.6100688576698303], [40.1952, 116.23, -0.24708814918994904], [26.0542, 119.389, -0.34143030643463135], [45.1642, 124.8528, -0.8786554336547852], [34.3181, 108.6761, -0.963670551776886], [40.7378, 107.3715, -0.34131675958633423], [30.9431, 118.7175, -0.4915520250797272], [28.2189, 112.8872, -0.7038983106613159], [46.528, 125.112, -0.9989942312240601], [33.8715, 109.9154, -0.9473345279693604], [40.1503, 124.4256, -0.5828757882118225], [32.0903, 112.2106, -0.8980396389961243], [42.2556, 118.8789, -0.3259948492050171], [39.9567, 119.6023, -0.287183552980423], [22.4853, 113.4411, -0.3976588249206543], [39.5986, 109.7736, -0.4822712540626526], [36.5776, 114.5035, -0.8811340928077698], [32.4639, 119.888, -0.3781476318836212], [39.0845, 117.1589, -0.2894808053970337], [25.8567, 98.8601, -0.49900299310684204], [22.5625, 114.117, -0.4015609622001648], [34.2713, 108.954, -0.9746108651161194], [43.7878, 125.454, -0.818978488445282], [28.9664, 118.871, -0.4394201338291168], [23.1617, 112.565, -0.42978811264038086], [31.8108, 119.9736, -0.3935304582118988], [29.261, 91.7706, -0.48890218138694763], [28.9583, 105.4306, -0.7208802700042725], [33.027, 112.5573, -0.8543758988380432], [30.51197222, 117.0331111, -0.6931576728820801], [31.9051, 117.16, -0.6457892060279846], [27.725, 111.9975, -0.6810634136199951], [40.7136, 120.9092, -0.401750773191452], [23.65889, 116.6183, -0.398471474647522], [26.4364, 106.6554, -0.5579544305801392], [31.8706, 117.259, -0.6393213272094727], [38.2911, 109.7456, -0.6055323481559753], [34.2778, 117.2933, -0.5598670244216919], [33.568, 114.005, -0.807668149471283], [38.00583333, 114.4586111, -0.8077266216278076], [32.3153, 118.3094, -0.4938024878501892], [38.80805556, 121.2588889, -0.3479093313217163], [47.7317, 128.9094, -1.3000808954238892], [41.5931, 120.4439, -0.4102826416492462], [45.8167, 126.561, -1.0172854661941528], [34.6686, 112.4433, -0.9262562394142151], [31.8766, 117.307, -0.6349061131477356], [28.2053, 113.0792, -0.7003976106643677], [34.5653, 105.8614, -0.6746591329574585], [42.3022, 123.8139, -0.6417528986930847], [26.5495, 106.6867, -0.5621293783187866], [23.0706, 112.427, -0.42695245146751404], [34.7538, 113.6356, -0.8815314769744873], [29.9834, 103.0109, -0.7544834613800049], [21.865, 111.9494, -0.4146021604537964], [30.7856, 106.1064, -0.8076357841491699], [28.2169, 116.9983, -0.5575395822525024], [39.0631, 121.9769, -0.39799997210502625], [39.6679, 118.2185, -0.2207472026348114], [32.6778, 109.0311, -0.8745720386505127], [28.9745, 118.855, -0.44074538350105286], [45.0878, 124.8292, -0.8721460103988647], [31.2058, 107.4611, -0.8524349331855774], [41.3369, 123.7528, -0.6017531156539917], [35.3962, 119.54, -0.3139544725418091], [32.1342, 114.0681, -0.8156898617744446], [34.407, 115.6386, -0.7267147302627563], [29.334, 120.04, -0.39277082681655884], [34.2417, 117.192, -0.5739942193031311], [23.105, 113.433, -0.41055548191070557], [26.6266, 106.6243, -0.5645940899848938], [37.7124, 112.469, -0.866524338722229], [43.1847, 124.3897, -0.7237282991409302], [29.7207, 118.3236, -0.5232000350952148], [45.8309, 130.9467, -1.2698951959609985], [31.4656, 104.6717, -0.8133100271224976], [30.6617, 117.4697, -0.6539181470870972], [39.625, 121.989, -0.4161619544029236], [46.5776, 125.1386, -1.0044758319854736], [36.0725, 103.841, -0.57298743724823], [25.1035, 117.0216, -0.4032283425331116], [49.1577, 119.7512, -1.0145753622055054], [22.8464, 108.239, -0.46029117703437805], [25.0311, 117.0151, -0.4018973708152771], [35.4178, 119.4641, -0.3148886263370514], [37.5002, 105.1971, -0.5218455195426941], [33.63063889, 116.989, -0.6021637320518494], [23.1036, 109.5683, -0.45360997319221497], [23.7369, 109.2317, -0.4701470136642456], [30.049, 119.946, -0.4122009575366974], [25.0124, 102.743, -0.5185097455978394], [30.4753, 114.1525, -0.8112058043479919], [38.0524, 114.5214, -0.7970849275588989], [34.29, 117.1814, -0.5747902393341064], [30.1142, 104.6469, -0.7967610955238342], [29.8506, 121.524, -0.38175255060195923], [36.0464, 103.831, -0.5739675164222717], [39.6308, 118.1662, -0.22240488231182098], [41.0831, 123.0156, -0.549782931804657], [31.9438, 117.266, -0.6351176500320435], [29.8181, 114.3036, -0.7779784798622131], [41.2894, 123.1417, -0.5661954283714294], [35.248889, 115.42277, -0.7773404121398926], [42.2864, 123.8489, -0.6432400941848755], [27.7758, 115.0586, -0.6488035321235657], [38.5339, 102.1725, -0.431076318025589], [35.1764, 113.2464, -0.9109811782836914], [33.0706, 107.0154, -0.7751662731170654], [34.2911, 117.244, -0.5662806034088135], [34.3956, 108.7197, -0.9614837169647217], [31.371, 119.794, -0.4080544710159302], [34.2749, 108.882, -0.9728156924247742], [31.7848, 117.196, -0.6485161185264587], [30.0874, 103.8416, -0.7850472331047058], [31.1167, 104.4053, -0.8182618021965027], [34.2572, 109.06, -0.9764211773872375], [37.364, 120.394, -0.2624075412750244], [27.8408, 102.2714, -0.5749750733375549], [36.7731, 119.1939, -0.29787150025367737], [40.1097, 113.3819, -0.4748592674732208], [29.33972, 104.7228, -0.7509495615959167], [30.9697, 117.8472, -0.6032055020332336], [44.6104, 129.6459, -1.1070802211761475], [29.6039, 115.9114, -0.7135245203971863], [36.6525, 119.1638, -0.30477267503738403], [31.9025, 102.2218, -0.755152702331543], [34.3274, 109.043, -0.974999725818634], [33.3681, 120.1631, -0.3495606780052185], [31.85805556, 106.7619444, -0.8214209675788879], [31.1956, 107.5069, -0.8538038730621338], [27.2317, 111.4733, -0.6584821939468384], [39.16969, 117.2099, -0.2788695991039276], [26.2625, 117.6211, -0.4062653183937073], [40.9733, 117.8184, -0.21686939895153046], [37.4372, 116.2714, -0.6234275698661804], [27.8244, 113.135, -0.6817407608032227], [31.3178, 118.3708, -0.5245571136474609], [25.0992, 104.8811, -0.5124289393424988], [31.4846, 92.0657, -0.4649720788002014], [30.1819, 120.27, -0.40015220642089844], [22.9169, 112.0392, -0.42485857009887695], [31.909, 120.237, -0.3880635201931], [41.9967, 121.6178, -0.5047031044960022], [31.7956, 117.302, -0.6387333869934082], [46.7975, 130.3258, -1.3041694164276123], [25.0441, 101.5482, -0.517345130443573], [29.6514, 91.1319, -0.5043970346450806], [31.7897, 119.8914, -0.39551839232444763], [36.0022, 106.2792, -0.6473593711853027], [29.2718, 88.8876, -0.6442859172821045], [36.7019, 119.12, -0.30561062693595886], [29.1029, 119.686, -0.4011111557483673], [29.6632, 94.3616, -0.4647461473941803], [37.7111, 112.7306, -0.8701672554016113], [40.8725, 114.904, -0.274443119764328], [31.4189, 118.37, -0.5217664837837219], [31.3008, 121.467, -0.3819018006324768], [25.8071, 113.0383, -0.5649751424789429], [23.3917, 113.215, -0.43101000785827637], [21.2706, 110.3539, -0.44003698229789734], [32.4611, 119.9219, -0.3777162730693817], [30.4663, 106.6271, -0.8045058846473694], [30.3058, 120.348, -0.3987060785293579], [30.3119, 120.12, -0.40643805265426636], [21.4689, 111.0286, -0.4314502775669098], [23.6714, 116.6339, -0.39828434586524963], [31.3264, 120.596, -0.3949246406555176], [34.2761, 117.167, -0.5769360661506653], [38.49494, 106.1024, -0.4866082966327667], [31.7386, 117.278, -0.6430327296257019], [36.39, 120.47, -0.2738671600818634], [31.671, 120.721, -0.38960421085357666], [35.767, 115.0772, -0.8260278701782227], [37.062, 114.4854, -0.8791043162345886], [34.3474, 108.935, -0.9720075130462646], [30.2692, 120.19, -0.40345409512519836], [27.2944, 105.31, -0.5941392183303833], [32.1319, 119.43, -0.39939817786216736], [27.2537, 111.4503, -0.6597539782524109], [38.4186, 112.7356, -0.7802098989486694], [23.3633, 116.7244, -0.4098116457462311], [28.6844, 115.931, -0.6655174493789673], [41.7128, 86.2381, -1.0203111171722412], [21.2679, 110.3316, -0.44022664427757263], [30.3175, 112.2551, -0.8819516897201538], [46.5888, 131.1572, -1.3375366926193237], [28.6425, 115.892, -0.6649553775787354], [27.72, 106.9178, -0.6212760806083679], [41.0931, 123.011, -0.5500207543373108], [37.161, 122.41, -0.366973340511322], [46.8025, 130.2719, -1.301410436630249], [30.9222, 117.8078, -0.6092954874038696], [36.4372, 115.9848, -0.7181512713432312], [40.6821, 109.8538, -0.3852292001247406], [39.1082, 117.237, -0.2827709913253784], [23.1142, 114.4103, -0.40029090642929077], [32.0878, 118.626, -0.464593768119812], [27.8072, 114.4011, -0.6625441908836365], [30.5103, 117.0549, -0.6916159391403198], [41.0385, 113.1076, -0.3473372459411621], [36.5336, 116.734, -0.6012281179428101], [31.5475, 120.354, -0.3941117227077484], [27.8978, 102.2625, -0.5778728127479553], [27.1311, 114.99, -0.6256795525550842], [25.0359, 102.638, -0.5193023085594177], [28.2597, 112.9792, -0.7050424814224243], [41.2864, 123.7669, -0.6005589365959167], [47.3489, 130.3172, -1.3473259210586548], [36.907, 121.544, -0.315263032913208], [32.5714, 110.8839, -0.8839970827102661], [25.8417, 98.8546, -0.49898654222488403], [30.2028, 115.0767, -0.7656958103179932], [27.8667, 113.167, -0.683366060256958], [34.5885, 119.176, -0.3360200524330139], [23.6936, 113.0425, -0.4520883858203888], [35.0992, 117.4518, -0.5240357518196106], [29.5467, 103.7705, -0.7529811859130859], [35.4934, 112.835, -0.9366664886474609], [28.2403, 117.0281, -0.5567947626113892], [43.95305556, 126.4738889, -0.8848748803138733], [28.0089, 120.634, -0.344341516494751], [21.6533, 110.9294, -0.4285576641559601], [31.1208, 104.4219, -0.8183698654174805], [29.355, 113.2117, -0.7836165428161621], [35.7289, 107.6831, -0.7477271556854248], [31.3019, 120.591, -0.39518916606903076], [34.4286, 115.6697, -0.7248165607452393], [30.6347, 105.8161, -0.80146324634552], [24.44583333, 118.0636111, -0.3906479775905609], [41.2736, 123.1761, -0.5675039291381836], [32.1083, 118.803, -0.44519826769828796], [35.0611, 111.0233, -0.976452112197876], [27.8614, 112.9433, -0.6855363249778748], [35.4883, 112.8564, -0.9359432458877563], [47.3386, 123.9305, -1.008787989616394], [26.8956, 112.6211, -0.6379811763763428], [29.077, 119.647, -0.40196463465690613], [37.0172, 105.18, -0.5413607358932495], [22.9539, 112.0539, -0.42614391446113586], [30.1259, 104.6294, -0.7972894906997681], [26.6611, 119.5392, -0.3305940628051758], [24.5157, 117.6569, -0.38434547185897827], [36.9639, 100.9048, -0.5051751136779785], [40.9359, 117.963, -0.22200405597686768], [37.393, 117.9776, -0.3935421109199524], [44.8969, 82.0806, -1.530862808227539], [46.0703, 122.0506, -0.8088757991790771], [31.8585, 117.336, -0.6331386566162109], [36.5767, 109.4824, -0.791586697101593], [33.721, 113.322, -0.843321681022644], [32.5, 80.1161, -1.5658750534057617], [37.739, 115.6906, -0.6880009174346924], [36.6028, 109.4761, -0.7875156402587891], [27.5444, 109.9453, -0.6738203763961792], [21.9508, 108.6553, -0.45339906215667725], [29.3411, 104.7692, -0.7509793639183044], [28.0797, 116.2239, -0.6169017553329468], [36.61981, 114.4965, -0.882544994354248], [32.0723, 118.778, -0.44932815432548523], [28.9026, 105.4436, -0.7168468236923218], [26.2081, 111.6217, -0.5883020162582397], [42.9409, 89.191, -0.876634418964386], [30.0911, 120.598, -0.39164799451828003], [34.3017, 107.0708, -0.8120931386947632], [40.8033, 111.658, -0.3935575783252716], [33.0122, 112.5224, -0.8556299805641174], [26.9258, 112.6194, -0.6397575736045837], [28.2675, 109.6958, -0.7217734456062317], [31.422, 121.14, -0.3848985433578491], [32.105, 118.907, -0.4346870481967926], [30.6872, 104.176, -0.8126742839813232], [40.8367, 114.8985, -0.2785755693912506], [43.55, 125.633, -0.8174610137939453], [30.2756, 118.1371, -0.5619035959243774], [41.9419, 126.4078, -0.7856398224830627], [32.4285, 105.8624, -0.7435433864593506], [35.5997, 103.2064, -0.594069242477417], [41.8336, 123.542, -0.6075563430786133], [36.1542, 113.1097, -0.9348934292793274], [41.1442, 123.0485, -0.5546650290489197], [29.2786, 117.1983, -0.6235467791557312], [39.643, 118.144, -0.22205205261707306], [23.1572, 112.885, -0.42482298612594604], [29.6219, 106.65, -0.7605675458908081], [41.8472, 123.428, -0.6022579073905945], [30.7946, 120.744, -0.3931947350502014], [25.0661, 117.0256, -0.4023667871952057], [33.0014, 97.0, -0.49531492590904236], [31.89708, 121.1518, -0.3823024332523346], [24.428, 98.5842, -0.49419301748275757], [39.1067, 117.1941, -0.2854051887989044], [40.1461, 124.3933, -0.580604612827301], [30.2456, 120.127, -0.40575703978538513], [22.5908, 114.263, -0.4017558991909027], [29.7128, 118.3057, -0.5245328545570374], [44.0114, 87.2997, -1.0779809951782227], [32.4535, 105.8945, -0.7425639629364014], [24.7121, 108.2134, -0.49656081199645996], [30.4519, 114.8858, -0.776598334312439], [39.7153, 76.1861, -1.9082905054092407], [24.3702, 102.5389, -0.5045392513275146], [27.8381, 113.143, -0.6822918057441711], [31.7133, 118.6439, -0.4778265655040741], [37.9097, 114.3541, -0.8237522840499878], [44.3336, 84.8983, -1.2721014022827148], [42.2725, 118.9572, -0.3319911062717438], [29.36028, 104.7778, -0.7522706985473633], [25.442, 119.0156, -0.35995906591415405], [31.2036, 121.478, -0.38220763206481934], [38.8394, 117.457, -0.2949533462524414], [24.4175, 111.5269, -0.48336946964263916], [37.177, 119.941, -0.2580036520957947], [30.2819, 109.4689, -0.8788003921508789], [38.5061, 102.1708, -0.4328867197036743], [39.6719, 106.8219, -0.41770994663238525], [43.84, 125.2786, -0.8119683861732483], [32.9444, 117.3575, -0.5823640823364258], [22.4137, 107.3476, -0.4641973078250885], [36.1855, 113.0844444, -0.9356465935707092], [34.5004, 109.5049, -0.9753821492195129], [31.56, 120.294, -0.3939696252346039], [32.0144, 118.777, -0.4517439007759094], [40.8115, 114.8814, -0.28240665793418884], [29.9972, 101.9533, -0.7056126594543457], [35.5102, 102.0199, -0.5879356265068054], [37.8561, 113.5922, -0.8520824909210205], [34.3708, 107.1586, -0.8216457962989807], [23.4168, 103.386, -0.48383888602256775], [37.4489, 116.3189, -0.6145029664039612], [35.0147, 110.9956, -0.9764270782470703], [29.8264, 106.424, -0.7686702609062195], [34.7545, 113.681, -0.8788259029388428], [23.6706, 116.6447, -0.39849117398262024], [36.3083, 120.1964, -0.27258095145225525], [30.8388, 106.1087, -0.8084677457809448], [43.8667, 125.417, -0.8211840987205505], [27.9883, 116.3553, -0.6020488142967224], [39.9419, 119.5369, -0.28304630517959595], [33.8399, 115.8067, -0.7042436003684998], [30.2099, 115.0264, -0.7675586938858032], [33.737, 113.182, -0.8487938642501831], [27.9164, 112.4876, -0.6897082924842834], [27.8036, 114.3442, -0.663223385810852], [26.57098, 101.68912, -0.532838761806488], [22.2294, 113.495, -0.40451595187187195], [38.44139, 106.2275, -0.4919029176235199], [24.6967, 108.1009, -0.4967464804649353], [25.0836, 102.728, -0.5194804072380066], [24.9624, 102.625, -0.5182456374168396], [31.1278, 97.1804, -0.5259676575660706], [38.5247, 102.1878, -0.43186384439468384], [31.381, 120.999, -0.3875887095928192], [28.4569, 118.0058, -0.48658743500709534], [32.1142, 112.1825, -0.8979024291038513], [34.3617, 108.7233, -0.9634981155395508], [23.8982, 100.0782, -0.48823291063308716], [41.1636, 80.2828, -1.5375200510025024], [32.6028, 116.8556, -0.6356021761894226], [36.1942, 117.1436, -0.5502931475639343], [37.0967, 114.4821, -0.8778151869773865], [38.817, 106.3394, -0.4685956835746765], [32.9673, 117.3536, -0.581588625907898], [30.4576, 106.6303, -0.8042244911193848], [30.6197, 114.2836, -0.8057307004928589], [41.1556, 122.0247, -0.4937070906162262], [38.9194, 117.157, -0.30607688426971436], [39.9522, 116.434, -0.25357136130332947], [36.087, 114.358, -0.8766088485717773], [43.7256, 126.6772, -0.8825495839118958], [40.6532, 109.8756, -0.38740992546081543], [24.9617, 118.6108, -0.37638232111930847], [36.792, 119.952, -0.26319020986557007], [29.5953, 105.0331, -0.7661731243133545], [31.2472, 120.561, -0.39603227376937866], [30.1506, 104.6356, -0.7984406352043152], [33.1842, 106.9893, -0.7777134776115417], [36.0875, 111.5025, -0.9497941136360168], [31.8934, 102.2402, -0.7560412287712097], [24.8978, 118.5972, -0.37873950600624084], [22.8561, 108.316, -0.4600776731967926], [27.8336, 113.251, -0.6806525588035583], [31.2703, 120.613, -0.3951432406902313], [35.303, 113.883, -0.884371817111969], [39.3673, 112.4279, -0.6168485283851624], [32.6389, 110.7258, -0.8813976049423218], [38.1398, 114.5019, -0.783858060836792], [26.6272, 118.1756, -0.3804565668106079], [33.6284, 116.9677, -0.6044469475746155], [33.965, 118.283, -0.4409489035606384], [36.7339, 119.0841, -0.3066934645175934], [37.9358, 102.6469, -0.4783512353897095], [41.7089, 123.439, -0.5981526374816895], [22.7906, 108.439, -0.4581220746040344], [43.8358, 126.5844, -0.883869469165802], [31.882, 120.55, -0.3881968855857849], [41.8828, 123.9169, -0.63124680519104], [31.656, 120.734, -0.38971924781799316], [34.5667, 117.732, -0.4907718300819397], [45.61, 126.615, -1.0041977167129517], [29.5983, 106.296, -0.7523638010025024], [45.7258, 126.646, -1.0147701501846313], [33.575, 119.007, -0.37177416682243347], [23.08, 114.4053, -0.3997621536254883], [28.5819, 112.3744, -0.7405310869216919], [43.9167, 125.323, -0.8187745213508606], [22.5811, 113.074, -0.400706946849823], [38.843, 105.6975, -0.4565642178058624], [27.6178, 113.865, -0.6623556017875671], [30.4551, 106.6388, -0.8042290806770325], [23.01277778, 113.7944444, -0.3998248875141144], [30.8244, 120.07, -0.4092114269733429], [34.3547, 107.1431, -0.8202580213546753], [36.6739, 117.114, -0.5414156913757324], [22.8693, 112.844, -0.41191136837005615], [23.7233, 114.6892, -0.4118257462978363], [25.3167, 110.4144, -0.5219215750694275], [28.6459, 121.273, -0.37108272314071655], [26.8919, 112.6006, -0.6377841234207153], [33.0323, 107.007, -0.7728655338287354], [30.0475, 101.9603, -0.7090561389923096], [30.7636, 106.0642, -0.8066946268081665], [35.259, 113.1992, -0.9155578017234802], [32.2786, 118.3244, -0.49290746450424194], [36.1758, 117.1081, -0.5562782287597656], [22.735, 108.328, -0.4579349756240845], [22.3708, 107.3701, -0.4639013707637787], [27.3125, 105.2864, -0.5950798988342285], [33.567, 114.056, -0.8048949837684631], [34.3528, 107.3906, -0.8504345417022705], [38.8343, 105.6775, -0.4567468762397766], [36.283, 120.008, -0.2775465250015259], [34.7745, 117.5852, -0.5099515318870544], [23.2783, 113.568, -0.41611629724502563], [33.3261, 105.0822, -0.6886686086654663], [36.6377, 117.9544, -0.444140762090683], [26.5689, 106.6971, -0.5626729726791382], [43.768, 87.6046, -1.0398178100585938], [41.7561, 123.535, -0.6047618985176086], [41.0228, 123.1289, -0.5528258681297302], [27.8014, 114.3806, -0.662618100643158], [44.561, 129.61, -1.1020843982696533], [29.9919, 120.605, -0.3903321325778961], [37.4658, 118.5019, -0.32953596115112305], [25.8333, 114.9322, -0.5390976071357727], [23.9011, 106.6103, -0.48301079869270325], [38.2839, 109.7289, -0.605705738067627], [45.6033, 84.8861, -1.3544336557388306], [30.9447, 118.7581, -0.48765435814857483], [25.2178, 110.2869, -0.5138972997665405], [26.2378, 117.6028, -0.40652263164520264], [22.8172, 114.3244, -0.3987632095813751], [40.1194, 124.3678, -0.5775765180587769], [41.9086, 123.5953, -0.6132823824882507], [31.238, 121.4, -0.3818143606185913], [26.5697, 106.7164, -0.5626422166824341], [22.7833, 108.244, -0.45916038751602173], [40.7866, 111.551, -0.3939920663833618], [31.7039, 119.935, -0.3968033492565155], [45.5422, 126.979, -1.0188450813293457], [19.9507, 110.576, -0.49752306938171387], [30.6414, 114.2131, -0.8098604679107666], [37.9311, 102.6219, -0.4783625304698944], [39.3606, 112.4549, -0.6188862919807434], [46.8267, 130.3961, -1.3104819059371948], [35.94, 104.148, -0.5745251774787903], [29.4892, 106.634, -0.7520456910133362], [23.1422, 113.235, -0.41742998361587524], [23.06, 113.7480556, -0.4017829895019531], [29.1128, 119.6533, -0.4031699299812317], [36.2092, 117.7181, -0.4785289466381073], [27.7044, 111.9892, -0.680305540561676], [31.87888889, 106.7513889, -0.820372462272644], [29.2313, 91.7608, -0.48954588174819946], [34.5814, 105.7281, -0.663044273853302], [35.7511, 114.2956, -0.8740431070327759], [47.8515, 88.1267, -1.3224157094955444], [37.9723, 106.196, -0.5232086181640625], [38.8632, 115.493, -0.5147199034690857], [23.8844, 106.6527, -0.4826591908931732], [39.1495, 117.3916, -0.2697349190711975], [36.2403, 120.6659, -0.2814800441265106], [39.1292, 106.7096, -0.45327702164649963], [38.01777778, 114.5330556, -0.8016948699951172], [32.1383, 114.0614, -0.8160523772239685], [31.8572, 117.25, -0.6406945586204529], [24.9117, 118.5819, -0.37802472710609436], [28.4622, 117.9511, -0.4917732775211334], [32.8928, 115.8275, -0.6962928175926208], [25.067, 102.681, -0.5195459127426147], [24.3289, 116.1278, -0.40672293305397034], [28.6969, 115.973, -0.6642760634422302], [28.1178, 112.9844, -0.6969096064567566], [44.3075, 86.0697, -1.184706211090088], [28.7867, 104.6061, -0.709969699382782], [38.0108, 112.434, -0.8330343961715698], [29.4251, 113.1493, -0.7909308075904846], [36.6868, 117.0684, -0.5474685430526733], [45.7319, 126.685, -1.017357349395752], [34.8019, 113.675, -0.8809436559677124], [28.4586, 119.93, -0.3655666708946228], [21.2567, 110.4558, -0.4394327700138092], [30.9285, 113.9153, -0.8291510939598083], [32.0005, 120.86, -0.3843578100204468], [29.6475, 91.0874, -0.5061831474304199], [27.4948, 114.0944, -0.6561327576637268], [42.0352, 119.2654, -0.3445311188697815], [40.5546, 110.0377, -0.3961276710033417], [29.6292, 91.0834, -0.5066714286804199], [40.0844, 113.2711, -0.48375216126441956], [46.3991, 124.8847, -0.9766498804092407], [27.6231, 113.8447, -0.6628004908561707], [27.6486, 106.8906, -0.6158623695373535], [31.92, 120.268, -0.3878096342086792], [39.2133, 117.1837, -0.27633777260780334], [23.4714, 116.7519, -0.40678054094314575], [30.5489, 117.0486, -0.6920929551124573], [31.4867, 120.269, -0.39568713307380676], [23.1331, 113.26, -0.4163399934768677], [25.8226, 113.0116, -0.5658773183822632], [36.61763, 114.5129, -0.8814888000488281], [33.9461, 116.7844, -0.6255896091461182], [27.7914, 114.3703, -0.6623826622962952], [40.0181, 119.7624, -0.2985965609550476], [43.8228, 126.4978, -0.878226637840271], [28.2558, 109.6414, -0.7207082509994507], [25.9118, 114.9064, -0.5457596778869629], [35.4894, 112.8664, -0.9356580376625061], [34.3497, 107.2058, -0.8283087015151978], [34.6511, 112.3939, -0.9273925423622131], [28.7442, 115.813, -0.6735681295394897], [26.9089, 112.5328, -0.6388298273086548], [28.7994, 115.742, -0.6793172359466553], [28.9703, 111.6975, -0.7819846868515015], [36.1912, 113.1569, -0.9329914450645447], [40.9161, 117.9664, -0.22155721485614777], [34.7781, 114.3389, -0.833549439907074], [23.2536, 116.4019, -0.4074694514274597], [47.3227, 123.9483, -1.008246898651123], [36.2403, 120.4001, -0.27378979325294495], [27.9647, 116.385, -0.5976964235305786], [30.7478, 120.726, -0.393442302942276], [24.81805556, 118.1569444, -0.3769850730895996], [24.299, 109.4221, -0.48275822401046753], [41.8469, 123.81, -0.6234649419784546], [29.4822, 106.364, -0.7465354204177856], [26.5017, 101.7453, -0.5329190492630005], [31.8531, 106.7594, -0.8214231133460999], [31.96, 120.913, -0.38423871994018555], [29.6816, 115.9872, -0.7142578363418579], [28.6839, 115.8886, -0.6673001646995544], [26.0753, 119.315, -0.3409403860569], [42.8947, 125.1358, -0.7546061277389526], [39.3514, 112.44, -0.6201719045639038], [39.5343, 116.7464, -0.27414876222610474], [31.0386, 112.2211, -0.9107139706611633], [27.2272, 111.4328, -0.6583500504493713], [26.585, 101.7169, -0.5331257581710815], [38.9389, 100.4497, -0.37960049510002136], [45.6175, 122.8211, -0.8070685267448425], [41.7192, 86.2022, -1.0235854387283325], [42.9559, 89.1673, -0.8792938590049744], [29.3864, 117.3097, -0.6184716820716858], [28.56, 112.3439, -0.7393001914024353], [44.9079, 82.0485, -1.5341335535049438], [44.5782, 129.6115, -1.1032049655914307], [35.5975, 104.6169, -0.5882588028907776], [38.8416, 115.4612, -0.523081362247467], [31.453, 121.115, -0.3852803409099579], [37.7394, 112.5583, -0.8657615184783936], [37.85, 113.5158, -0.8535740375518799], [36.061, 114.483, -0.8696565628051758], [29.3678, 113.1772, -0.7855180501937866], [39.6295, 118.1997, -0.22222736477851868], [36.0756, 103.712, -0.5748685598373413], [31.7586, 119.996, -0.39434632658958435], [35.7067, 107.6364, -0.7456880211830139], [27.3361, 103.7225, -0.5810479521751404], [23.0528, 112.471, -0.4255738854408264], [22.75, 114.085, -0.39821600914001465], [28.3169, 109.7325, -0.7258061766624451], [26.8733, 112.6197, -0.636688768863678], [34.4714, 100.2561, -0.5763189196586609], [28.6064, 115.9083, -0.6623491644859314], [43.91, 125.287, -0.816382646560669], [28.76389, 104.6417, -0.7084802389144897], [41.7347, 123.2444, -0.5885875225067139], [30.6133, 105.68, -0.8041102290153503], [36.1939, 113.0972, -0.9351563453674316], [40.1114, 113.2803, -0.4789009094238281], [23.7106, 113.0208, -0.4534401297569275], [41.7511, 86.1461, -1.0298104286193848], [43.1594, 124.3711, -0.7211776375770569], [25.8481, 114.9461, -0.5397265553474426], [33.6406, 114.6369, -0.7738996744155884], [29.4892, 106.468, -0.7490088939666748], [23.5486, 116.3242, -0.3970552086830139], [36.11, 114.286, -0.8808382153511047], [23.1886, 112.863, -0.42681750655174255], [43.8711, 87.5525, -1.05044424533844], [28.2642, 117.0564, -0.5560736656188965], [23.4792, 111.2897, -0.4571145176887512], [45.6289, 122.8444, -0.8092784285545349], [47.2753, 130.261, -1.338210940361023], [40.7514, 120.8392, -0.3986884653568268], [37.8694, 113.5689, -0.8512511253356934], [39.9716, 116.473, -0.2503046691417694], [41.8625, 124.0383, -0.6375423073768616], [31.2864, 120.628, -0.3948202133178711], [28.4514, 119.914, -0.36558136343955994], [36.6489, 116.943, -0.5666629672050476], [38.8516, 105.724, -0.45651739835739136], [40.0758, 113.2994, -0.4840133488178253], [34.7975, 114.3733, -0.8319563865661621], [30.9075, 113.942, -0.8274490833282471], [28.9404, 118.871, -0.4381445646286011], [36.10139, 111.505, -0.9490246176719666], [25.1081, 99.1678, -0.4995667338371277], [29.709, 106.452, -0.7615140676498413], [36.67, 116.93, -0.5680509805679321], [38.3344, 109.7414, -0.601546049118042], [41.1219, 121.2008, -0.44039201736450195], [21.8586, 111.9786, -0.41448748111724854], [31.6842, 120.288, -0.3918890655040741], [40.6288, 109.8654, -0.3887919783592224], [36.44, 120.61, -0.27837470173835754], [35.0622, 118.2939, -0.4104432463645935], [37.1013, 79.9117, -1.5313018560409546], [34.5101, 109.5293, -0.9753562211990356], [41.2553, 123.15, -0.5653716921806335], [47.3636, 123.9305, -1.0109716653823853], [37.4014, 121.5992, -0.32469290494918823], [40.8062, 111.7277, -0.3939373791217804], [37.5436, 121.3181, -0.3104906976222992], [28.6542, 121.419, -0.37419572472572327], [29.8211, 114.3231, -0.7774482369422913], [40.7094, 122.2703, -0.48582953214645386], [34.2324, 108.94, -0.9748662114143372], [33.9528, 118.293, -0.44027402997016907], [27.0983, 115.0075, -0.6238095760345459], [34.429, 115.6558, -0.7258816361427307], [34.2303, 108.883, -0.9737018346786499], [25.1328, 99.1711, -0.499772846698761], [46.0756, 121.9462, -0.8037576079368591], [22.7633, 100.98, -0.47881630063056946], [23.1569, 113.281, -0.41705837845802307], [26.5939, 104.89, -0.5619288682937622], [31.7694, 120.0469, -0.3930513262748718], [40.1438, 116.72, -0.22811000049114227], [25.2697, 110.2819, -0.5171007513999939], [34.1781, 117.1694, -0.5780526399612427], [37.68277778, 112.7194444, -0.8722215890884399], [35.0896, 118.4023, -0.39599040150642395], [29.2956, 117.2461, -0.618910014629364], [26.0392, 119.303, -0.3417655825614929], [24.3694, 102.5778, -0.5045633316040039], [36.1942, 117.0881, -0.5588801503181458], [26.2708, 117.6353, -0.405632883310318], [37.5136, 111.1297, -0.8172854781150818], [43.6267, 122.2603, -0.6179776191711426], [30.89556, 120.0875, -0.4082115590572357], [29.8686, 114.3372, -0.7794078588485718], [22.7267, 114.24, -0.39890047907829285], [27.8867, 113.095, -0.6851584911346436], [30.8023, 106.0789, -0.8075110912322998], [31.7712, 116.5661, -0.6840977072715759], [46.7432, 82.9994, -1.5764751434326172], [32.41361, 119.458, -0.3890104591846466], [30.2043, 114.8949, -0.7717185020446777]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#ff0000&quot;, &quot;0.05&quot;: &quot;#ff0000&quot;, &quot;0.1&quot;: &quot;#ff0000&quot;, &quot;0.15&quot;: &quot;#ff0000&quot;, &quot;0.2&quot;: &quot;#ff0000&quot;, &quot;0.25&quot;: &quot;#ff0000&quot;, &quot;0.3&quot;: &quot;#ff0000&quot;, &quot;0.35&quot;: &quot;#ff0000&quot;, &quot;0.4&quot;: &quot;#ff0000&quot;, &quot;0.45&quot;: &quot;#ff0000&quot;, &quot;0.5&quot;: &quot;#ff0000&quot;, &quot;0.55&quot;: &quot;#ff0000&quot;, &quot;0.6&quot;: &quot;#ff0000&quot;, &quot;0.65&quot;: &quot;#ff0000&quot;, &quot;0.7&quot;: &quot;#ff0000&quot;, &quot;0.75&quot;: &quot;#ff0000&quot;, &quot;0.8&quot;: &quot;#ff0000&quot;, &quot;0.85&quot;: &quot;#ff0000&quot;, &quot;0.9&quot;: &quot;#ff0000&quot;, &quot;0.95&quot;: &quot;#ff0000&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_ada1a726f11add9bc206a0938d3af2e9.addTo(map_230f89f36e3ff111c74ac3d63b01b5a0);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1d9a9f16950>\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('coef_d10', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Bias\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"id\": \"16F4FFBA617D46598A7569CCAEDC4F8E\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_1a0f015539afba18db32d45c6be5cf31 {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_1a0f015539afba18db32d45c6be5cf31&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_1a0f015539afba18db32d45c6be5cf31 = L.map(\\n\",\n       \"                &quot;map_1a0f015539afba18db32d45c6be5cf31&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_f187a9656e7c9bf593c44214433bd590 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_f187a9656e7c9bf593c44214433bd590.addTo(map_1a0f015539afba18db32d45c6be5cf31);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_d662c22e9cabc52d90147d1c35d5d190 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_d662c22e9cabc52d90147d1c35d5d190.color = d3.scale.threshold()\\n\",\n       \"              .domain([-33.50180435180664, -33.29212188720703, -33.08243942260742, -32.87275695800781, -32.66307830810547, -32.45339584350586, -32.24371337890625, -32.03403091430664, -31.82434844970703, -31.614667892456055, -31.404985427856445, -31.195302963256836, -30.98562240600586, -30.77593994140625, -30.56625747680664, -30.35657501220703, -30.146894454956055, -29.937211990356445, -29.727529525756836, -29.51784896850586, -29.30816650390625, -29.09848403930664, -28.88880157470703, -28.679121017456055, -28.469438552856445, -28.259756088256836, -28.05007553100586, -27.84039306640625, -27.63071060180664, -27.42102813720703, -27.211347579956055, -27.001665115356445, -26.791982650756836, -26.58230209350586, -26.37261962890625, -26.16293716430664, -25.95325469970703, -25.743574142456055, -25.533891677856445, -25.32421112060547, -25.11452865600586, -24.90484619140625, -24.69516372680664, -24.48548126220703, -24.275800704956055, -24.066118240356445, -23.85643768310547, -23.64675521850586, -23.43707275390625, -23.22739028930664, -23.01770782470703, -22.808027267456055, -22.598344802856445, -22.38866424560547, -22.17898178100586, -21.96929931640625, -21.75961685180664, -21.54993438720703, -21.340253829956055, -21.130571365356445, -20.92089080810547, -20.71120834350586, -20.50152587890625, -20.29184341430664, -20.08216094970703, -19.872480392456055, -19.662797927856445, -19.45311737060547, -19.24343490600586, -19.03375244140625, -18.82406997680664, -18.61438751220703, -18.404706954956055, -18.195024490356445, -17.98534393310547, -17.77566146850586, -17.56597900390625, -17.356298446655273, -17.146615982055664, -16.936933517456055, -16.727251052856445, -16.51757049560547, -16.30788803100586, -16.09820556640625, -15.888525009155273, -15.678842544555664, -15.469160079956055, -15.259477615356445, -15.049797058105469, -14.84011459350586, -14.63043212890625, -14.420751571655273, -14.211069107055664, -14.001386642456055, -13.791704177856445, -13.582023620605469, -13.372343063354492, -13.16265869140625, -12.952978134155273, -12.743295669555664, -12.533613204956055, -12.323930740356445, -12.114250183105469, -11.904569625854492, -11.69488525390625, -11.485204696655273, -11.275522232055664, -11.065839767456055, -10.856157302856445, -10.646476745605469, -10.436796188354492, -10.22711181640625, -10.017431259155273, -9.807748794555664, -9.598066329956055, -9.388383865356445, -9.178703308105469, -8.969022750854492, -8.75933837890625, -8.549657821655273, -8.339975357055664, -8.130292892456055, -7.920612335205078, -7.710929870605469, -7.501249313354492, -7.29156494140625, -7.081884384155273, -6.872201919555664, -6.662519454956055, -6.452838897705078, -6.243156433105469, -6.033475875854492, -5.82379150390625, -5.614110946655273, -5.404428482055664, -5.194746017456055, -4.985065460205078, -4.775382995605469, -4.565702438354492, -4.35601806640625, -4.146337509155273, -3.936656951904297, -3.7269725799560547, -3.517292022705078, -3.3076095581054688, -3.097929000854492, -2.88824462890625, -2.6785640716552734, -2.468883514404297, -2.2591991424560547, -2.049518585205078, -1.8398361206054688, -1.6301555633544922, -1.42047119140625, -1.2107925415039062, -1.0011100769042969, -0.7914276123046875, -0.5817451477050781, -0.37206268310546875, -0.16238021850585938, 0.04730224609375, 0.25698089599609375, 0.4666633605957031, 0.6763458251953125, 0.8860282897949219, 1.0957107543945312, 1.3053932189941406, 1.5150718688964844, 1.7247543334960938, 1.9344406127929688, 2.1441192626953125, 2.353801727294922, 2.5634841918945312, 2.773162841796875, 2.98284912109375, 3.1925277709960938, 3.402210235595703, 3.6118927001953125, 3.821575164794922, 4.031257629394531, 4.240940093994141, 4.450618743896484, 4.660301208496094, 4.869987487792969, 5.0796661376953125, 5.289348602294922, 5.499031066894531, 5.708709716796875, 5.91839599609375, 6.128074645996094, 6.337757110595703, 6.5474395751953125, 6.757118225097656, 6.966804504394531, 7.176486968994141, 7.386165618896484, 7.595848083496094, 7.805534362792969, 8.015213012695312, 8.224895477294922, 8.434577941894531, 8.644256591796875, 8.85394287109375, 9.063621520996094, 9.273303985595703, 9.482986450195312, 9.692665100097656, 9.902351379394531, 10.11203384399414, 10.321712493896484, 10.531394958496094, 10.741081237792969, 10.950759887695312, 11.160442352294922, 11.370124816894531, 11.579803466796875, 11.78948974609375, 11.999168395996094, 12.208850860595703, 12.418533325195312, 12.628211975097656, 12.837898254394531, 13.04758071899414, 13.257259368896484, 13.466941833496094, 13.676624298095703, 13.886306762695312, 14.095989227294922, 14.305671691894531, 14.515350341796875, 14.72503662109375, 14.934715270996094, 15.144397735595703, 15.354080200195312, 15.563758850097656, 15.773445129394531, 15.98312759399414, 16.192806243896484, 16.402488708496094, 16.612171173095703, 16.821853637695312, 17.031536102294922, 17.24121856689453, 17.450897216796875, 17.660579681396484, 17.870262145996094, 18.079944610595703, 18.289627075195312, 18.499305725097656, 18.70899200439453, 18.91867446899414, 19.128353118896484, 19.338035583496094, 19.547718048095703, 19.757400512695312, 19.967082977294922, 20.17676544189453, 20.386444091796875, 20.596126556396484, 20.805809020996094, 21.015491485595703, 21.225173950195312, 21.434852600097656, 21.644535064697266, 21.85422134399414, 22.063899993896484, 22.273582458496094, 22.483264923095703, 22.692947387695312, 22.902629852294922, 23.11231231689453, 23.321990966796875, 23.531673431396484, 23.741355895996094, 23.951038360595703, 24.160720825195312, 24.370399475097656, 24.580081939697266, 24.78976821899414, 24.999446868896484, 25.209129333496094, 25.418811798095703, 25.628490447998047, 25.838176727294922, 26.04785919189453, 26.257537841796875, 26.467220306396484, 26.676902770996094, 26.886585235595703, 27.096267700195312, 27.305946350097656, 27.515628814697266, 27.72531509399414, 27.934993743896484, 28.144676208496094, 28.354358673095703, 28.564037322998047, 28.773723602294922, 28.98340606689453, 29.193084716796875, 29.402767181396484, 29.612445831298828, 29.822132110595703, 30.031814575195312, 30.241493225097656, 30.451175689697266, 30.66086196899414, 30.870540618896484, 31.080219268798828, 31.289905548095703, 31.499584197998047, 31.709270477294922, 31.918949127197266, 32.12863540649414, 32.338314056396484, 32.54800033569336, 32.7576789855957, 32.96735763549805, 33.17704391479492, 33.386722564697266, 33.59640884399414, 33.806087493896484, 34.01576614379883, 34.2254524230957, 34.43513107299805, 34.64481735229492, 34.854496002197266, 35.06418228149414, 35.273860931396484, 35.48353958129883, 35.6932258605957, 35.90290451049805, 36.11259078979492, 36.3222770690918, 36.53194808959961, 36.741634368896484, 36.95131301879883, 37.1609992980957, 37.37068557739258, 37.58035659790039, 37.790042877197266, 37.99972152709961, 38.209407806396484, 38.41909408569336, 38.6287727355957, 38.83845138549805, 39.04813003540039, 39.257816314697266, 39.46750259399414, 39.677181243896484, 39.88685989379883, 40.0965461730957, 40.30622482299805, 40.51591110229492, 40.725589752197266, 40.93527603149414, 41.144954681396484, 41.35463333129883, 41.5643196105957, 41.77399826049805, 41.98368453979492, 42.1933708190918, 42.40304183959961, 42.612728118896484, 42.82240676879883, 43.0320930480957, 43.24177932739258, 43.45145034790039, 43.661136627197266, 43.87081527709961, 44.080501556396484, 44.29018783569336, 44.4998664855957, 44.70954513549805, 44.91922378540039, 45.128910064697266, 45.33859634399414, 45.548274993896484, 45.75795364379883, 45.96763229370117, 46.17731857299805, 46.38700485229492, 46.596683502197266, 46.80636978149414, 47.01604080200195, 47.22572708129883, 47.4354133605957, 47.64509201049805, 47.85477828979492, 48.0644645690918, 48.27413558959961, 48.483821868896484, 48.69350051879883, 48.9031867980957, 49.11287307739258, 49.32254409790039, 49.532230377197266, 49.74190902709961, 49.951595306396484, 50.16128158569336, 50.3709602355957, 50.58063888549805, 50.79031753540039, 51.000003814697266, 51.20969009399414, 51.419368743896484, 51.62904739379883, 51.83872604370117, 52.04841232299805, 52.25809860229492, 52.467777252197266, 52.67746353149414, 52.88713455200195, 53.09682083129883, 53.3065071105957, 53.51618576049805, 53.72587203979492, 53.935550689697266, 54.14522933959961, 54.354915618896484, 54.56459426879883, 54.7742805480957, 54.98396682739258, 55.19363784790039, 55.403324127197266, 55.61300277709961, 55.822689056396484, 56.03237533569336, 56.2420539855957, 56.45173263549805, 56.66141128540039, 56.871097564697266, 57.08078384399414, 57.290462493896484, 57.50014114379883, 57.70981979370117, 57.91950607299805, 58.12919235229492, 58.338871002197266, 58.54855728149414, 58.75822830200195, 58.96791458129883, 59.1776008605957, 59.38727951049805, 59.59696578979492, 59.806644439697266, 60.01632308959961, 60.226009368896484, 60.43568801879883, 60.6453742980957, 60.85505294799805, 61.06473159790039, 61.274417877197266, 61.48409652709961, 61.693782806396484, 61.90346145629883, 62.1131477355957, 62.32282638549805, 62.53250503540039, 62.742191314697266, 62.95187759399414, 63.161556243896484, 63.37123489379883, 63.58091354370117, 63.79059982299805, 64.00028991699219, 64.2099609375, 64.41964721679688, 64.62931823730469, 64.83900451660156, 65.04869079589844, 65.25837707519531, 65.46806335449219, 65.677734375, 65.88742065429688, 66.09710693359375, 66.30677795410156, 66.51646423339844, 66.72615051269531, 66.93582153320312, 67.1455078125, 67.35519409179688, 67.56488037109375, 67.77455139160156, 67.98423767089844, 68.19392395019531, 68.40359497070312, 68.61328125, 68.82296752929688, 69.03265380859375, 69.24232482910156, 69.45201110839844, 69.66169738769531, 69.87136840820312, 70.0810546875, 70.29074096679688, 70.50041198730469, 70.71009826660156, 70.91978454589844, 71.12947082519531])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_d662c22e9cabc52d90147d1c35d5d190.x = d3.scale.linear()\\n\",\n       \"              .domain([-33.50180435180664, 71.12947082519531])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_d662c22e9cabc52d90147d1c35d5d190.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_d662c22e9cabc52d90147d1c35d5d190.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_d662c22e9cabc52d90147d1c35d5d190.legend.addTo(map_1a0f015539afba18db32d45c6be5cf31);\\n\",\n       \"\\n\",\n       \"    color_map_d662c22e9cabc52d90147d1c35d5d190.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_d662c22e9cabc52d90147d1c35d5d190.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-33.50180435180664, &#x27;&#x27;, &#x27;&#x27;, -17.807113647460938, &#x27;&#x27;, &#x27;&#x27;, -2.112424850463867, &#x27;&#x27;, &#x27;&#x27;, 13.582267761230469, &#x27;&#x27;, &#x27;&#x27;, 29.276954650878906, &#x27;&#x27;, &#x27;&#x27;, 44.97165298461914, &#x27;&#x27;, &#x27;&#x27;, 60.66633987426758, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_d662c22e9cabc52d90147d1c35d5d190.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_d662c22e9cabc52d90147d1c35d5d190.g = color_map_d662c22e9cabc52d90147d1c35d5d190.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_d662c22e9cabc52d90147d1c35d5d190.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_d662c22e9cabc52d90147d1c35d5d190.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_d662c22e9cabc52d90147d1c35d5d190.x(color_map_d662c22e9cabc52d90147d1c35d5d190.color.domain()[i - 1]) : color_map_d662c22e9cabc52d90147d1c35d5d190.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_d662c22e9cabc52d90147d1c35d5d190.color.domain().length ? color_map_d662c22e9cabc52d90147d1c35d5d190.x(color_map_d662c22e9cabc52d90147d1c35d5d190.color.domain()[i]) : color_map_d662c22e9cabc52d90147d1c35d5d190.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_d662c22e9cabc52d90147d1c35d5d190.g.call(color_map_d662c22e9cabc52d90147d1c35d5d190.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_e625c8998062a234c7a1cc4d0d85f80c = L.heatLayer(\\n\",\n       \"                [[28.4303, 117.9033, -8.134465217590332], [31.1654, 121.412, -13.788239479064941], [23.4794, 111.26, -4.352175712585449], [34.7772, 111.1928, 46.69724655151367], [43.8748, 125.3649, 0.932069718837738], [36.838, 118.0448, 8.201484680175781], [26.5506, 104.9544, 1.1237341165542603], [43.9317, 116.1042, 1.574562430381775], [25.0925, 104.9022, -2.7028346061706543], [36.885, 120.515, -31.04191780090332], [41.1386, 121.1303, -16.421606063842773], [25.4552, 119.0018, -3.099247694015503], [50.4217, 124.1303, 14.515111923217773], [33.739, 113.292, 53.895259857177734], [25.8664, 114.9367, -1.9753457307815552], [22.8054, 113.292, -5.627747535705566], [29.8272, 106.379, 20.58519172668457], [32.0314, 118.803, -11.167556762695312], [28.2325, 113.0833, 14.793895721435547], [31.896, 121.173, -17.078174591064453], [35.428, 116.6305, 33.463504791259766], [29.389, 106.513, 18.846843719482422], [33.975, 116.8008, 20.754425048828125], [31.3097, 120.669, -14.375234603881836], [32.625, 116.7039, 16.245586395263672], [39.8261, 109.9486, 11.343505859375], [37.4664, 116.3061, 47.3274040222168], [40.9923, 113.1306, 17.77884864807129], [39.6407, 118.1853, -12.286761283874512], [42.2217, 123.7153, -6.927071571350098], [34.1978, 108.985, 21.64436912536621], [31.3839, 118.4022, -6.665099143981934], [31.03389, 112.1908, 28.2423095703125], [27.6442, 113.8686, 8.927838325500488], [29.3578, 113.1094, 20.44679832458496], [29.5947, 105.0717, 17.13047218322754], [37.7019, 112.7549, 52.1578483581543], [37.0533, 114.5261, 66.80006408691406], [22.2281, 113.299, -5.253478050231934], [39.7294, 98.5023, 27.816978454589844], [41.615, 120.3939, -13.66578483581543], [39.3179, 112.4254, 30.078136444091797], [24.9424, 118.6663, -2.2956178188323975], [40.6575, 109.8104, 16.894289016723633], [32.02, 120.87, -17.408300399780273], [28.6844, 115.893, 3.517951011657715], [39.5747, 116.7729, 9.245711326599121], [42.8939, 129.4892, 1.3664071559906006], [38.3254, 116.8584, 26.176380157470703], [28.5773, 121.377, -4.953758239746094], [39.0511, 121.7769, -26.67289161682129], [30.6539, 117.4974, 0.48060160875320435], [36.2866, 100.6188, 37.6668701171875], [45.9819, 126.6106, 8.190417289733887], [45.2978, 130.9298, 7.3601789474487305], [23.7569, 114.6778, -5.4885687828063965], [27.9119, 112.9074, 13.120558738708496], [24.8885, 102.821, -4.461609840393066], [29.5844, 103.7627, 13.880976676940918], [24.769519, 113.586606, -2.9814860820770264], [41.5672, 120.4486, -13.97069263458252], [39.7884, 109.9734, 11.01863956451416], [27.8328, 114.9289, 5.541530132293701], [32.3761, 119.389, -15.773585319519043], [25.7054, 100.1542, -2.9897987842559814], [29.3628, 104.7547, 15.450719833374023], [24.3663, 109.3957, -1.781409502029419], [31.215, 107.525, 26.510417938232422], [35.76806, 115.0061, 65.3038101196289], [26.3003, 106.805, 2.375129222869873], [34.6972, 119.3581, -17.659997940063477], [30.6463, 111.3549, 26.58487319946289], [30.2366, 119.7183, -10.455445289611816], [27.3392, 103.7032, 1.7261954545974731], [33.8997, 116.8067, 20.36503791809082], [33.5981, 119.036, -13.330167770385742], [37.0964, 114.5331, 66.48797607421875], [37.7575, 115.6951, 54.33114242553711], [22.5211, 113.3769, -5.632343769073486], [22.6411, 110.1675, -5.112764358520508], [38.3228, 116.8709, 25.960464477539062], [25.8471, 114.8905, -1.8637465238571167], [35.04388889, 111.0522222, 43.80559539794922], [33.9953, 113.7906, 56.628536224365234], [23.7586, 114.6944, -5.475987911224365], [45.6842, 126.6206, 7.50130558013916], [38.8957, 115.5223, 39.251808166503906], [40.715, 120.8478, -18.784564971923828], [39.6969, 106.8089, 21.038869857788086], [23.5353, 116.3697, -3.7315945625305176], [39.746, 98.509, 27.799829483032227], [36.7008, 119.1425, -15.121525764465332], [43.8694, 125.325, 0.887125551700592], [42.0228, 121.6722, -10.172086715698242], [23.0672, 109.6042, -4.815254211425781], [30.5947, 114.3008, 23.464229583740234], [23.475, 111.3178, -4.369011878967285], [27.6869, 106.9222, 9.49692153930664], [34.1546, 108.906, 21.64344024658203], [36.8041, 117.8512, 12.95090389251709], [23.0916, 113.348, -5.4488205909729], [32.6319, 116.8306, 14.805683135986328], [32.4867, 119.9, -17.77589225769043], [30.1366, 104.6617, 18.175539016723633], [24.4072, 111.5622, -2.360438585281372], [31.7618, 116.478, 12.484726905822754], [41.2692, 123.7989, -11.901342391967773], [42.0503, 121.6972, -9.984813690185547], [38.2478, 109.7336, 1.2894935607910156], [34.6575, 109.2, 17.82008934020996], [39.79777778, 98.26722222, 27.79831314086914], [25.5035, 103.7897, -3.0865533351898193], [35.763, 115.031, 65.02375793457031], [39.9425, 116.361, 9.773366928100586], [34.3739, 107.1186, 11.47972297668457], [30.2352, 115.0625, 16.546646118164062], [44.1756, 87.5475, 31.286148071289062], [40.2865, 116.17, 7.333378791809082], [36.1851, 120.3905, -30.33909797668457], [36.0417, 111.4917, 46.518287658691406], [39.0153, 106.3717, 21.451072692871094], [36.6867, 101.524, 38.48943328857422], [35.213, 113.227, 68.33403015136719], [24.506, 117.7116, -3.2963619232177734], [47.203, 123.6261, 10.77680778503418], [46.0347, 124.8354, 8.161232948303223], [35.0697, 109.0697, 10.85237979888916], [34.3622, 107.2386, 11.560480117797852], [35.7306, 114.2878, 70.17842102050781], [44.5952, 129.5902, 5.865075588226318], [23.3667, 116.6794, -2.8348917961120605], [34.7837, 117.2852, 15.3272066116333], [31.155, 120.636, -13.69971752166748], [30.4742, 114.9028, 19.143463134765625], [41.3047, 123.7308, -11.838438987731934], [28.8558, 105.4322, 13.998165130615234], [36.71, 117.541, 20.08549690246582], [32.6494, 110.78, 30.181013107299805], [31.8516, 117.124, 7.00261926651001], [30.5797, 105.7519, 21.21082305908203], [38.9467, 100.4686, 29.807018280029297], [39.617, 122.011, -23.513233184814453], [28.6428, 112.4067, 18.002376556396484], [31.2659, 121.536, -14.310385704040527], [39.5178, 116.6838, 11.475442886352539], [28.7989, 104.6789, 12.298246383666992], [31.5072, 104.7283, 18.456104278564453], [34.6869, 112.4831, 61.55023956298828], [31.388, 120.953, -14.742389678955078], [30.475, 105.5956, 20.697263717651367], [41.3283, 123.8436, -11.490283012390137], [26.3108, 117.7275, -8.12049388885498], [22.7629, 113.257, -5.6263957023620605], [32.645, 117.0083, 12.621392250061035], [22.8225, 108.321, -4.522192001342773], [40.3937, 116.644, 0.885888397693634], [46.0872, 85.6931, 29.40452766418457], [30.8596, 120.1844, -12.38987922668457], [31.1333, 104.3883, 18.373252868652344], [27.9939, 120.677, -5.299245834350586], [37.187, 122.019, -33.00425338745117], [29.8633, 121.586, -8.464218139648438], [39.65782, 118.1838, -12.388134002685547], [34.6869, 112.4664, 61.42936325073242], [40.6592, 122.2414, -17.699979782104492], [39.8673, 116.366, 10.864908218383789], [34.493, 109.4636, 22.511037826538086], [40.8144, 111.608, 18.51667594909668], [28.095, 116.9622, -5.424753189086914], [22.9477, 113.352, -5.534358024597168], [27.5342, 109.9792, 13.830673217773438], [31.874, 120.526, -16.567241668701172], [36.2289, 117.6789, 15.159793853759766], [28.0005, 116.3574, -1.95864737033844], [41.1196, 123.044, -13.95750617980957], [29.6588, 90.9798, 17.305843353271484], [23.0528, 114.4183, -5.26133394241333], [50.4269, 124.1186, 14.521944999694824], [30.6578, 104.054, 17.632736206054688], [31.6928, 118.48, -7.64512825012207], [46.6384, 126.9934, 9.42278003692627], [27.3033, 111.5239, 12.370074272155762], [31.8711, 106.7389, 24.86906623840332], [37.154, 122.471, -32.22811508178711], [48.4658, 129.4942, 11.173137664794922], [41.0781, 121.0986, -16.789403915405273], [28.1442, 112.9956, 14.361777305603027], [40.7608, 107.4211, 20.358606338500977], [37.4314, 118.6672, -7.23005485534668], [43.8947, 126.5786, 1.9237980842590332], [23.63444, 113.0472, -4.969623565673828], [37.4442, 118.5857, -5.624829292297363], [25.8179, 113.0119, 2.4875946044921875], [23.105, 113.261, -5.4354119300842285], [32.0417, 120.81, -17.47796630859375], [23.0786, 112.4722, -5.283528804779053], [31.2071, 121.577, -14.05053424835205], [37.8195, 112.57, 49.23849105834961], [32.0564, 112.1392, 32.29643249511719], [38.95111111, 121.565, -27.255807876586914], [43.1747, 124.3419, -2.6556413173675537], [29.7534, 116.0726, 6.852813720703125], [39.9279, 116.225, 11.8163423538208], [31.6411, 118.4828, -7.63031005859375], [36.5481, 104.1731, 33.62889099121094], [35.0994, 109.0656, 10.388971328735352], [23.2539, 116.6092, -2.7110519409179688], [31.3708, 120.641, -14.609834671020508], [34.7187, 113.727, 65.14703369140625], [36.497, 117.8477, 12.351304054260254], [27.8094, 102.3419, -0.6214069128036499], [43.8303, 87.5801, 31.53646469116211], [27.6428, 113.8381, 9.040907859802246], [31.5631, 120.245, -15.13122272491455], [29.41569, 106.5506, 19.069664001464844], [32.0197, 112.155, 32.10513687133789], [26.5747, 107.9783, 4.7436981201171875], [28.76611, 104.6225, 12.025620460510254], [27.8036, 114.9314, 5.381470680236816], [21.9667, 108.6236, -4.534832000732422], [29.1456, 111.7158, 21.100080490112305], [24.2654, 116.1248, -4.668624401092529], [49.2261, 119.7594, 14.421903610229492], [32.8603, 115.8556, 27.80931854248047], [27.9958, 113.1817, 13.039878845214844], [28.6869, 115.852, 3.7880749702453613], [30.3055, 112.2887, 26.050081253051758], [46.7588, 130.3794, 9.25283145904541], [32.965, 114.018, 42.38169860839844], [22.5328, 113.024, -5.617597579956055], [36.6114, 116.988, 32.576175689697266], [32.996, 113.996, 42.83647918701172], [31.354, 119.818, -14.029953956604004], [38.0513, 114.4548, 57.78168487548828], [42.8775, 129.3675, 1.1788054704666138], [26.6946, 119.5001, -4.827599048614502], [33.627, 119.0122, -13.044733047485352], [28.4231, 119.879, -7.863805294036865], [29.635, 119.026, -9.538280487060547], [31.7275, 113.3583, 32.1048583984375], [41.5647, 120.4247, -13.992199897766113], [34.6231, 112.3844, 60.25518798828125], [30.1377, 104.6289, 18.124614715576172], [42.0186, 121.6561, -10.209311485290527], [29.5817, 105.0653, 17.057329177856445], [24.2719, 116.0797, -4.721601486206055], [39.5371, 75.9828, 29.475204467773438], [41.9206, 126.4047, -5.3531084060668945], [27.583, 110.0394, 14.088202476501465], [33.4022, 120.118, -21.23029899597168], [26.6343, 106.7487, 3.555060386657715], [35.4234, 119.5198, -19.942964553833008], [28.1308, 112.8908, 14.44031047821045], [24.3406, 109.3886, -1.8401834964752197], [21.7631, 108.3511, -4.0694966316223145], [27.11, 114.9739, 1.9474414587020874], [42.8953, 125.1567, -3.174717426300049], [43.895, 81.2867, 29.876493453979492], [40.7736, 120.8631, -18.490222930908203], [32.935, 117.3086, 9.73218822479248], [40.5905, 110.0067, 16.722139358520508], [29.8208, 121.56, -8.344525337219238], [32.7639, 116.8028, 15.961377143859863], [26.8802, 100.2497, -2.9516355991363525], [30.3714, 114.8989, 18.515975952148438], [29.7228, 106.626, 20.425811767578125], [43.85, 125.217, 0.7489140033721924], [21.6828, 110.8592, -4.914889812469482], [33.5979, 114.6546, 46.423030853271484], [29.6007, 103.7506, 13.90053939819336], [47.7222, 128.8736, 10.493355751037598], [24.81119444, 113.5593889, -2.8020923137664795], [29.315, 110.4417, 21.638065338134766], [27.7314, 112.0194, 13.604598045349121], [34.9058, 108.9344, 11.750395774841309], [29.5186, 106.54, 19.482364654541016], [40.0031, 116.407, 8.316911697387695], [31.9286, 102.1755, 12.420743942260742], [38.8756, 115.442, 40.52434539794922], [40.7688, 114.9032, 11.475866317749023], [38.0398, 114.6046, 58.00402069091797], [37.8792, 113.4922, 56.210941314697266], [31.0283, 103.613, 16.694786071777344], [31.3508, 118.3528, -6.162051200866699], [32.88922222, 115.7838889, 28.81795310974121], [36.0783, 111.5531, 47.43894577026367], [36.2126, 113.0886, 66.5451431274414], [21.8536, 111.9508, -5.286722183227539], [29.7736, 121.633, -8.07421588897705], [28.3586, 112.9958, 15.72790241241455], [37.4294, 122.1206, -32.35561752319336], [28.71583, 104.5761, 11.663488388061523], [31.5848, 120.354, -15.271596908569336], [31.2108, 107.4967, 26.52461814880371], [26.0797, 119.268, -4.096126079559326], [23.0467, 113.144, -5.4323906898498535], [26.6383, 118.1694, -8.370226860046387], [27.9153, 113.0048, 12.948457717895508], [32.6975, 109.0072, 26.546262741088867], [31.955, 119.146, -13.49770736694336], [33.38256667, 104.9338889, 17.344636917114258], [37.8564, 113.5753, 56.97507095336914], [39.7711, 98.2908, 27.816919326782227], [30.6145, 116.9894, 4.086904525756836], [43.9469, 87.4754, 31.442859649658203], [39.5453, 116.7022, 10.79004192352295], [30.9219, 117.8561, -1.9666779041290283], [34.7745, 113.641, 65.74314880371094], [32.41, 119.404, -15.919037818908691], [22.5111, 113.4075, -5.629507064819336], [43.6156, 122.3039, -1.0370677709579468], [37.7087, 112.7105, 51.655540466308594], [41.3472, 123.8142, -11.434261322021484], [43.831, 87.6432, 31.541112899780273], [22.8322, 100.9817, -0.5476225018501282], [23.415, 111.2353, -4.4781389236450195], [29.2958, 117.2111, -2.563997983932495], [30.21, 120.211, -10.49826431274414], [27.7019, 106.9242, 9.597429275512695], [30.0506, 103.8986, 16.070924758911133], [46.8032, 130.3648, 9.308277130126953], [33.9592, 118.2442, -2.6197893619537354], [26.4519, 111.5989, 7.181903839111328], [31.1907, 121.703, -13.913628578186035], [26.8576, 100.2143, -2.9422695636749268], [47.2988, 123.945, 10.824434280395508], [36.253, 120.014, -26.95752716064453], [32.9917, 112.5192, 41.2981071472168], [34.402, 115.6578, 43.163291931152344], [37.9844, 106.2025, 19.938913345336914], [45.2948, 131.0103, 7.359542369842529], [33.3942, 120.156, -21.3286190032959], [24.3898, 109.4883, -1.7344101667404175], [30.9742, 118.7386, -9.519630432128906], [26.6029, 106.6856, 3.3959999084472656], [31.2994, 120.543, -14.25241756439209], [30.3515, 112.2068, 26.17074203491211], [30.5706, 104.079, 17.616125106811523], [21.5958, 109.2256, -4.260288715362549], [44.1564, 87.9897, 31.342479705810547], [22.7875, 108.301, -4.55223274230957], [26.2403, 107.5228, 2.7736339569091797], [27.5578, 109.9972, 13.955878257751465], [30.4865, 106.6351, 23.513248443603516], [38.4975, 106.2328, 21.177780151367188], [30.9892, 112.1969, 28.151304244995117], [37.7379, 115.6426, 55.21249008178711], [36.1417, 106.2319, 13.198929786682129], [43.4569, 87.4651, 31.7720947265625], [24.3158, 109.4839, -1.8970788717269897], [45.8194, 130.8625, 8.028400421142578], [29.1389, 110.48, 20.788570404052734], [29.90166667, 121.6147222, -8.56702709197998], [34.7997, 111.1489, 45.98432922363281], [26.0931, 119.58, -3.278982400894165], [41.7972, 123.3997, -9.630160331726074], [25.5364, 103.8, -2.9937310218811035], [31.7797, 116.5068, 12.328503608703613], [27.7569, 111.9561, 13.804375648498535], [38.9846, 117.3747, 7.011744499206543], [36.086, 114.32, 70.91134643554688], [39.9934, 116.315, 9.631187438964844], [37.7805, 112.488, 48.67010498046875], [29.7292, 115.988, 7.318429946899414], [27.8317, 99.7056, -1.7123528718948364], [38.91194444, 121.6330556, -27.434812545776367], [43.941, 81.3364, 29.868141174316406], [37.18, 119.959, -26.555927276611328], [35.5294, 106.7039, 6.614512920379639], [33.581, 114.014, 49.9401969909668], [30.7819, 111.3296, 26.89528465270996], [38.5036, 106.1358, 21.733745574951172], [31.751, 119.579, -14.931131362915039], [29.6376, 94.3681, 11.063581466674805], [38.85611111, 121.5180556, -27.72394371032715], [30.7157, 111.3009, 26.725887298583984], [40.8369, 111.751, 18.758493423461914], [36.4796, 115.9835, 54.46587371826172], [39.2474, 117.7918, -3.2726824283599854], [37.825, 120.747, -29.895870208740234], [39.0877, 117.307, 6.895113468170166], [35.0003, 102.905, 33.70360565185547], [31.6219, 120.275, -15.341254234313965], [29.6747, 91.1221, 17.177478790283203], [41.7156, 125.9361, -7.06852388381958], [34.2153, 117.256, 13.604814529418945], [31.1108, 104.3539, 18.316730499267578], [29.8906, 121.554, -8.614538192749023], [30.65638889, 104.0238889, 17.565629959106445], [46.6219, 124.8648, 9.53020191192627], [32.215, 119.491, -15.854517936706543], [29.9899, 103.0013, 11.974029541015625], [34.0117, 113.8331, 56.64405059814453], [42.8328, 93.4961, 30.30344009399414], [36.5458, 104.1731, 33.6280517578125], [26.6009, 106.7105, 3.405601739883423], [23.0944, 109.6014, -4.770785808563232], [29.4758, 113.2621, 20.71989631652832], [33.0069, 114.0131, 42.92524719238281], [22.6164, 110.1433, -5.090899467468262], [41.7381, 125.9486, -6.955270767211914], [37.8692, 112.5369, 48.43223190307617], [32.3292, 119.8767, -17.3106746673584], [35.4039, 116.5546, 34.847679138183594], [29.9816, 103.0001, 11.937034606933594], [39.1654, 117.145, 8.744698524475098], [32.3878, 119.46, -16.11899757385254], [45.7478, 126.593, 7.65435791015625], [40.1269, 113.2661, 25.023038864135742], [32.4246, 105.8153, 18.55588150024414], [30.6103, 114.4272, 22.927947998046875], [23.02777778, 113.7461111, -5.570867538452148], [35.9019, 114.17, 71.12947082519531], [38.4841, 106.2739, 20.896718978881836], [36.865, 120.537, -31.173538208007812], [39.2282, 106.7704, 19.9918212890625], [30.8811, 117.7442, -1.0717506408691406], [23.2775, 116.7258, -2.538729190826416], [37.5639, 121.2514, -31.972490310668945], [27.8528, 113.13, 12.316706657409668], [34.5021, 109.4266, 21.977888107299805], [38.6016, 105.9512, 22.928815841674805], [32.8985, 117.3065, 9.63152027130127], [37.1152, 79.9485, 30.54216766357422], [26.567, 101.7227, -3.715245485305786], [36.799, 119.976, -27.042810440063477], [30.2997, 113.8531, 23.435352325439453], [41.9339, 123.6836, -8.507946968078613], [36.864, 118.78, -8.366775512695312], [42.0486, 121.6592, -10.023271560668945], [41.1042, 121.835, -15.77995491027832], [38.03777778, 114.5480556, 58.04307556152344], [36.0714, 111.5028, 46.51540756225586], [26.5928, 101.5769, -3.7472310066223145], [24.339, 102.5381, -4.128863334655762], [30.66, 117.49, 0.5547930002212524], [19.9969, 110.338, -1.9929291009902954], [34.3469, 106.005, 15.987101554870605], [28.2264, 117.0222, -5.280058860778809], [30.0125, 103.009, 12.0992431640625], [38.2991, 116.8854, 25.996381759643555], [26.4364, 111.5992, 7.073080539703369], [23.8822, 100.0869, -0.9691986441612244], [26.4214, 111.6156, 6.9653520584106445], [23.0395, 113.105, -5.431249141693115], [29.53675, 106.4959, 19.469377517700195], [32.64600333, 117.0411667, 12.1777925491333], [37.9854, 112.549, 47.37731170654297], [28.0167, 120.671, -5.351802825927734], [33.5653, 114.0322, 49.6632194519043], [30.9414, 117.8178, -1.5966322422027588], [27.9747, 120.76, -5.1047515869140625], [24.4674, 117.6336, -3.3460144996643066], [30.8217, 106.1031, 22.523683547973633], [35.0573, 118.3418, -2.8223583698272705], [34.864, 117.5564, 10.4790678024292], [22.0019, 100.7939, -0.18836942315101624], [45.305, 130.9817, 7.371424674987793], [44.2967, 86.0497, 31.0576171875], [30.2747, 120.063, -10.634866714477539], [26.6761, 118.0966, -8.586075782775879], [37.3803, 118.0062, 8.058760643005371], [36.8198, 118.3092, 1.8702056407928467], [31.9108, 119.905, -16.105581283569336], [40.0625, 124.3303, -17.053951263427734], [27.8159, 112.9227, 12.557658195495605], [45.7733, 126.689, 7.7333831787109375], [46.0707, 122.0931, 8.578286170959473], [37.4967, 121.2611, -32.11482620239258], [33.6067, 118.989, -12.769475936889648], [33.6128, 114.6613, 46.55514144897461], [22.6069, 113.104, -5.622292518615723], [45.7667, 126.635, 7.707535266876221], [24.3304, 109.4108, -1.861914038658142], [41.1933, 80.2956, 30.8171329498291], [30.8064, 106.056, 22.28957748413086], [36.2211, 117.6983, 14.69301700592041], [30.518, 106.631, 23.624465942382812], [32.1883, 119.68, -16.414331436157227], [32.0775, 118.795, -11.1375093460083], [31.6908, 113.3833, 31.83110237121582], [37.374, 120.399, -29.606708526611328], [31.6861, 118.5058, -7.91604471206665], [26.2331, 111.6236, 5.74000883102417], [28.8194, 104.5969, 12.282158851623535], [28.19, 112.9394, 14.748287200927734], [23.3892, 104.2319, -3.388620615005493], [46.6527, 126.9636, 9.445317268371582], [24.441, 98.578, 0.05962120741605759], [35.1147, 111.0414, 43.31486511230469], [31.4, 119.46, -13.411556243896484], [42.9061, 129.5042, 1.4192273616790771], [47.9047, 88.1214, 28.02007484436035], [26.6607, 119.5202, -4.680063247680664], [40.8452, 111.659, 18.59124755859375], [29.7048, 115.9581, 7.409127712249756], [46.6462, 131.1516, 9.068763732910156], [35.5714, 104.6228, 29.914886474609375], [23.1323, 113.3208, -5.455817699432373], [30.0033, 120.7789, -9.70018482208252], [30.4133, 114.8131, 19.342193603515625], [39.8745, 116.434, 9.79605484008789], [44.0297, 87.2717, 31.35703468322754], [42.2814, 118.9233, -8.974615097045898], [45.2924, 130.962, 7.354907989501953], [23.5739, 116.3594, -3.832968235015869], [30.1808, 120.088, -10.434725761413574], [36.6106, 109.5056, 1.889960527420044], [29.6541, 91.1774, 17.082035064697266], [44.5462, 129.6386, 5.779216766357422], [25.2708, 110.3089, 0.8663908839225769], [43.8256, 126.55, 1.6325006484985352], [45.755, 126.542, 7.6621928215026855], [21.6669, 110.9067, -4.913379192352295], [34.9162, 113.6113, 66.78958892822266], [25.5811, 100.2171, -3.007587432861328], [29.8539, 114.2894, 18.853893280029297], [26.9056, 112.5664, 9.02452564239502], [47.3382, 130.1097, 9.90069580078125], [31.4747, 104.7778, 18.60763168334961], [34.6258, 112.4275, 60.643150329589844], [34.3672, 107.1906, 11.52215576171875], [32.18888889, 119.4369444, -15.541230201721191], [24.77908333, 113.6734722, -3.08076810836792], [23.5538, 113.589, -5.540580749511719], [35.4813, 112.8252, 67.29256439208984], [35.235, 113.261, 68.5147933959961], [41.8594, 123.9, -8.7080717086792], [22.7019, 110.1106, -5.133153438568115], [32.1403, 114.0122, 34.06272888183594], [24.795928, 113.598061, -2.9136078357696533], [27.8136, 99.7064, -1.7326512336730957], [36.0822, 111.5169, 46.71624755859375], [37.3617, 118.0018, 8.254514694213867], [40.7579, 111.651, 18.626523971557617], [43.8167, 125.25, 0.6332670450210571], [37.43445, 118.696, -7.811767101287842], [28.5808, 112.3458, 17.695520401000977], [26.6514, 118.1819, -8.381172180175781], [46.6572, 131.1638, 9.082252502441406], [35.4144, 116.5856, 34.28945541381836], [24.68636111, 113.5970833, -3.2264575958251953], [23.05361111, 113.7819444, -5.569070816040039], [31.7506, 118.5106, -8.01632308959961], [30.5719, 114.3672, 22.997262954711914], [29.4402, 112.9943, 21.076587677001953], [35.28385, 113.5922, 68.97930908203125], [30.698, 111.2992, 26.682273864746094], [45.7677, 131.0032, 7.968213081359863], [45.5828, 84.8897, 29.659273147583008], [38.86388889, 121.625, -27.668785095214844], [35.272, 113.884, 68.6341781616211], [31.0935, 120.978, -13.464754104614258], [34.9817, 118.2764, -1.9556838274002075], [34.7967, 114.2886, 62.85470962524414], [30.4183, 120.301, -11.020064353942871], [29.6453, 106.562, 20.026123046875], [35.546, 112.8453, 67.33045959472656], [41.1953, 123.2, -13.30188274383545], [30.63, 104.1113889, 17.732315063476562], [27.5733, 109.9333, 14.051862716674805], [36.4343, 116.0072, 53.80850601196289], [36.6275, 109.4131, 0.714205801486969], [30.5494, 114.3006, 23.175559997558594], [30.9414, 117.7806, -1.282151699066162], [45.6886, 85.1186, 29.635086059570312], [22.5931, 113.0819, -5.617316246032715], [27.0658, 114.9817, 1.7938705682754517], [27.7231, 109.1794, 14.659411430358887], [24.6928, 108.054, -1.7552011013031006], [35.5051, 112.85, 67.45622253417969], [43.962, 87.6444, 31.44993019104004], [23.5292, 116.4094, -3.6522421836853027], [22.5978, 114.297, -5.0110764503479], [22.5545, 114.1063, -5.2104597091674805], [43.8875, 126.555, 1.875211238861084], [41.1222, 121.1178, -16.523759841918945], [27.7297, 109.1916, 14.714757919311523], [27.8344, 114.9831, 5.283755302429199], [37.8531, 113.6292, 57.335975646972656], [22.0225, 100.8017, -0.1916186660528183], [40.6511, 122.215, -17.794574737548828], [33.6347, 114.6758, 46.71078109741211], [26.5892, 104.8, 1.072232961654663], [33.3947, 120.225, -21.536399841308594], [29.6926, 116.0628, 6.642692565917969], [38.885, 121.5638889, -27.583648681640625], [39.6572, 106.7931, 21.020742416381836], [41.0903, 122.0539, -15.51284122467041], [41.8864, 124.0878, -8.387163162231445], [31.17, 120.635, -13.759551048278809], [33.8561, 115.7831, 36.02385711669922], [36.913, 121.531, -33.47489929199219], [37.809, 120.773, -30.016748428344727], [23.3993, 103.3772, -3.3533170223236084], [32.9735, 112.5003, 41.041831970214844], [41.7775, 123.478, -9.618875503540039], [29.1242, 110.4697, 20.71623992919922], [26.53111111, 107.8908333, 4.338205814361572], [35.0308, 110.9678, 42.312782287597656], [38.97388889, 121.6119444, -27.131811141967773], [31.2797, 107.5272, 26.523948669433594], [31.0483, 112.2014, 28.2834415435791], [30.2311, 119.6942, -10.422202110290527], [30.2897, 120.157, -10.686118125915527], [36.6622, 117.049, 31.366313934326172], [34.3731, 109.2186, 21.348787307739258], [33.1138, 107.0089, 20.589391708374023], [22.5497, 113.3881, -5.649271488189697], [26.1092, 119.299, -4.08146333694458], [38.9108, 115.4713, 39.550540924072266], [28.1944, 113.0014, 14.687627792358398], [25.1174, 117.0181, -5.449988842010498], [35.2375, 115.474722, 54.936588287353516], [31.737, 119.579, -14.88945198059082], [29.57278, 106.4042, 19.434328079223633], [30.2989, 109.5039, 25.36188507080078], [31.7371, 116.508, 12.079261779785156], [25.9061, 113.0073, 2.88643479347229], [34.5911, 119.1478, -15.18615436553955], [37.197, 122.038, -32.96512222290039], [26.5155, 106.6948, 3.080874443054199], [29.305, 120.091, -9.227211952209473], [30.72358333, 103.97275, 17.503150939941406], [31.955, 119.18, -13.691633224487305], [35.6039, 103.2139, 36.54255676269531], [31.5031, 120.242, -14.917561531066895], [38.4519, 112.7383, 43.823856353759766], [37.8873, 112.522, 48.09502410888672], [37.3753, 97.3731, 29.83066749572754], [31.2261, 121.425, -14.074978828430176], [32.0572, 118.749, -10.669174194335938], [29.5867, 115.9936, 6.634150981903076], [33.5039, 119.135, -14.439003944396973], [39.4365, 75.9435, 29.502033233642578], [23.7208, 109.2131, -3.3826863765716553], [31.7308, 113.3983, 32.101139068603516], [27.7842, 114.3953, 7.624431610107422], [36.8088, 118.0482, 8.110129356384277], [27.8728, 112.8937, 12.926472663879395], [23.0048, 113.134, -5.4462714195251465], [28.6047, 112.3347, 17.83863639831543], [36.0211, 106.2375, 12.81081771850586], [29.3547, 110.5594, 21.82048225402832], [31.4539, 104.7536, 18.600645065307617], [39.5989, 109.8119, 9.621867179870605], [32.395, 111.0419, 30.098844528198242], [31.172, 120.658, -13.779641151428223], [22.805, 108.383, -4.549563407897949], [34.3164, 108.7369, 18.39219856262207], [41.9228, 123.3783, -8.877422332763672], [34.794, 111.158, 46.132957458496094], [31.2284, 121.533, -14.138891220092773], [27.8403, 112.9118, 12.712067604064941], [29.2365, 88.8931, 17.677942276000977], [31.317, 119.438, -13.066679000854492], [22.9394, 112.0369, -5.316566467285156], [25.0405, 102.722, -4.4462666511535645], [34.7822, 111.19, 46.65263748168945], [25.7759, 113.0348, 2.2712559700012207], [40.0917, 113.3444, 25.65998649597168], [36.5819, 101.834, 38.980960845947266], [38.4928, 112.7003, 42.8897590637207], [40.916, 107.5936, 20.112455368041992], [34.2629, 108.993, 20.82503318786621], [34.8731, 108.9589, 12.471888542175293], [23.1478, 109.5681, -4.673381328582764], [31.92, 120.302, -16.452678680419922], [42.2953, 123.8831, -6.405303001403809], [43.6801, 122.2532, -0.7488422989845276], [26.5917, 104.83, 1.110382318496704], [25.4792, 118.981, -3.2373156547546387], [28.4459, 117.973, -8.217450141906738], [32.6939, 109.0281, 26.575878143310547], [39.3265, 112.4078, 29.790082931518555], [32.3061, 118.3158, -5.6642279624938965], [36.6164, 114.5426, 69.21900939941406], [27.2582, 111.4908, 12.135276794433594], [41.0112, 117.9384, -13.48324203491211], [37.9648, 106.1532, 20.257328033447266], [41.0971, 122.9642, -14.19676399230957], [34.7496, 113.5991, 65.59367370605469], [27.8953, 102.2311, -0.6495208740234375], [29.5634, 103.757, 13.770297050476074], [32.4429, 105.8242, 18.513132095336914], [29.6535, 116.0174, 6.769018650054932], [34.719, 113.734, 65.13603973388672], [47.3349, 130.2659, 9.879867553710938], [46.619, 131.1651, 9.034637451171875], [34.378, 108.869, 18.516456604003906], [38.8707, 115.5214, 39.71034240722656], [30.7525, 120.7844444, -12.02315616607666], [22.96583333, 113.7383333, -5.599609851837158], [32.9683, 112.55, 41.147850036621094], [39.8129, 110.0023, 11.207204818725586], [29.2647, 117.1558, -2.256793737411499], [30.5514, 114.2511, 23.404083251953125], [27.8847, 102.2689, -0.5738525986671448], [35.7672, 115.0628, 64.73943328857422], [30.696, 111.268, 26.662031173706055], [41.765, 123.41, -9.813651084899902], [41.8417, 123.7117, -8.968510627746582], [26.5894, 104.8475, 1.1225244998931885], [25.0492, 101.538, -4.062377452850342], [27.9639, 116.3598, -2.180422067642212], [33.6481, 116.9765, 16.65085792541504], [41.0833, 122.9481, -14.292900085449219], [37.4514, 105.0197, 28.072246551513672], [26.8906, 100.2203, -2.9209184646606445], [35.5236, 107.6406, -0.0450756661593914], [22.7422, 114.5317, -4.940203666687012], [35.31, 113.836, 68.96913146972656], [30.3944, 114.8878, 18.732769012451172], [39.0927, 117.202, 8.697783470153809], [32.1078, 114.1044, 33.43179702758789], [35.5461, 106.6692, 7.012645721435547], [37.5211, 111.1406, 27.081378936767578], [40.9843, 117.9525, -13.587109565734863], [33.9506, 118.3214, -3.7377352714538574], [32.939, 117.3961, 8.619630813598633], [23.3594, 104.2533, -3.377457618713379], [36.881, 118.746, -7.683935165405273], [36.6872, 116.989, 32.885398864746094], [34.802, 113.564, 66.03807830810547], [24.5058, 118.0936, -2.5201003551483154], [43.9311, 116.0781, 1.6109015941619873], [34.6692, 112.3628, 60.444313049316406], [36.6428, 101.748, 38.810855865478516], [33.7214, 113.3064, 53.653709411621094], [36.1031, 103.631, 35.835723876953125], [29.5822, 105.0406, 17.003643035888672], [32.8913, 117.4186, 8.185319900512695], [23.3682, 103.3758, -3.320007801055908], [43.9404, 81.2815, 29.8458309173584], [27.8042, 114.9119, 5.47664737701416], [29.7125, 106.617, 20.376535415649414], [32.0092, 118.737, -10.498302459716797], [28.8833, 105.4322, 14.15091323852539], [35.27, 115.455, 55.52223587036133], [40.7612, 111.717, 18.743988037109375], [42.8172, 93.5128, 30.281723022460938], [40.1952, 116.23, 7.875095844268799], [26.0542, 119.389, -3.7477176189422607], [45.1642, 124.8528, 5.649107456207275], [34.3181, 108.6761, 17.958850860595703], [40.7378, 107.3715, 20.450172424316406], [30.9431, 118.7175, -9.353486061096191], [28.2189, 112.8872, 15.008718490600586], [46.528, 125.112, 9.343432426452637], [33.8715, 109.9154, 31.015972137451172], [40.1503, 124.4256, -16.424808502197266], [32.0903, 112.2106, 32.71751403808594], [42.2556, 118.8789, -9.111502647399902], [39.9567, 119.6023, -20.839374542236328], [22.4853, 113.4411, -5.627025604248047], [39.5986, 109.7736, 9.675862312316895], [36.5776, 114.5035, 69.4117660522461], [32.4639, 119.888, -17.69395637512207], [39.0845, 117.1589, 9.566293716430664], [25.8567, 98.8601, -1.1206574440002441], [22.5625, 114.117, -5.212316989898682], [34.2713, 108.954, 20.43388557434082], [43.7878, 125.454, 0.6474555134773254], [28.9664, 118.871, -9.179993629455566], [23.1617, 112.565, -5.209555625915527], [31.8108, 119.9736, -15.819570541381836], [29.261, 91.7706, 15.900650024414062], [28.9583, 105.4306, 14.564268112182617], [33.027, 112.5573, 41.79644012451172], [30.51197222, 117.0331111, 3.471726417541504], [31.9051, 117.16, 6.8602423667907715], [27.725, 111.9975, 13.616278648376465], [40.7136, 120.9092, -18.76418113708496], [23.65889, 116.6183, -3.575775623321533], [26.4364, 106.6554, 2.7365338802337646], [31.8706, 117.259, 5.780009746551514], [38.2911, 109.7456, 1.4764623641967773], [34.2778, 117.2933, 13.168365478515625], [33.568, 114.005, 49.800872802734375], [38.00583333, 114.4586111, 58.35062026977539], [32.3153, 118.3094, -5.568084716796875], [38.80805556, 121.2588889, -27.731828689575195], [47.7317, 128.9094, 10.496785163879395], [41.5931, 120.4439, -13.800835609436035], [45.8167, 126.561, 7.800181865692139], [34.6686, 112.4433, 61.123252868652344], [31.8766, 117.307, 5.353147506713867], [28.2053, 113.0792, 14.631648063659668], [34.5653, 105.8614, 16.810787200927734], [42.3022, 123.8139, -6.409730911254883], [26.5495, 106.6867, 3.2051689624786377], [23.0706, 112.427, -5.278812885284424], [34.7538, 113.6356, 65.58767700195312], [29.9834, 103.0109, 12.003668785095215], [21.865, 111.9494, -5.296676158905029], [30.7856, 106.1064, 22.48008918762207], [28.2169, 116.9983, -5.189739227294922], [39.0631, 121.9769, -26.374956130981445], [39.6679, 118.2185, -12.868566513061523], [32.6778, 109.0311, 26.609539031982422], [28.9745, 118.855, -9.181588172912598], [45.0878, 124.8292, 5.373665809631348], [31.2058, 107.4611, 26.55373764038086], [41.3369, 123.7528, -11.609575271606445], [35.3962, 119.54, -20.1695499420166], [32.1342, 114.0681, 33.8018913269043], [34.407, 115.6386, 43.52824783325195], [29.334, 120.04, -9.343347549438477], [34.2417, 117.192, 14.794127464294434], [23.105, 113.433, -5.466658115386963], [26.6266, 106.6243, 3.4412648677825928], [37.7124, 112.469, 48.995506286621094], [43.1847, 124.3897, -2.583733558654785], [29.7207, 118.3236, -8.178406715393066], [45.8309, 130.9467, 8.045487403869629], [31.4656, 104.6717, 18.42851448059082], [30.6617, 117.4697, 0.714187741279602], [39.625, 121.989, -23.50144386291504], [46.5776, 125.1386, 9.417529106140137], [36.0725, 103.841, 34.9522819519043], [25.1035, 117.0216, -5.411287307739258], [49.1577, 119.7512, 14.354007720947266], [22.8464, 108.239, -4.476524353027344], [25.0311, 117.0151, -5.239864826202393], [35.4178, 119.4641, -19.29257583618164], [37.5002, 105.1971, 26.90055274963379], [33.63063889, 116.989, 16.408323287963867], [23.1036, 109.5683, -4.744585990905762], [23.7369, 109.2317, -3.3376259803771973], [30.049, 119.946, -10.20126724243164], [25.0124, 102.743, -4.44872522354126], [30.4753, 114.1525, 23.375497817993164], [38.0524, 114.5214, 57.838497161865234], [34.29, 117.1814, 15.136802673339844], [30.1142, 104.6469, 18.098085403442383], [29.8506, 121.524, -8.505720138549805], [36.0464, 103.831, 34.9759407043457], [39.6308, 118.1662, -11.97242259979248], [41.0831, 123.0156, -14.195175170898438], [31.9438, 117.266, 6.010733127593994], [29.8181, 114.3036, 18.53728485107422], [41.2894, 123.1417, -12.914712905883789], [35.248889, 115.42277, 55.790260314941406], [42.2864, 123.8489, -6.466119289398193], [27.7758, 115.0586, 4.56866455078125], [38.5339, 102.1725, 33.241939544677734], [35.1764, 113.2464, 68.14956665039062], [33.0706, 107.0154, 20.727075576782227], [34.2911, 117.244, 14.05756950378418], [34.3956, 108.7197, 17.208683013916016], [31.371, 119.794, -14.049015045166016], [34.2749, 108.882, 19.88015365600586], [31.7848, 117.196, 6.065235614776611], [30.0874, 103.8416, 15.975404739379883], [31.1167, 104.4053, 18.4238338470459], [34.2572, 109.06, 21.39729118347168], [37.364, 120.394, -29.601947784423828], [27.8408, 102.2714, -0.7239634394645691], [36.7731, 119.1939, -16.007789611816406], [40.1097, 113.3819, 25.46955680847168], [29.33972, 104.7228, 15.285852432250977], [30.9697, 117.8472, -1.8127894401550293], [44.6104, 129.6459, 5.9281325340271], [29.6039, 115.9114, 7.2663893699646], [36.6525, 119.1638, -15.512962341308594], [31.9025, 102.2218, 12.417141914367676], [34.3274, 109.043, 20.371267318725586], [33.3681, 120.1631, -21.255712509155273], [31.85805556, 106.7619444, 25.006311416625977], [31.1956, 107.5069, 26.517845153808594], [27.2317, 111.4733, 11.998861312866211], [39.16969, 117.2099, 7.549495220184326], [26.2625, 117.6211, -8.088687896728516], [40.9733, 117.8184, -12.842937469482422], [37.4372, 116.2714, 48.198951721191406], [27.8244, 113.135, 12.140198707580566], [31.3178, 118.3708, -6.347386837005615], [25.0992, 104.8811, -2.70448899269104], [31.4846, 92.0657, 20.343080520629883], [30.1819, 120.27, -10.431987762451172], [22.9169, 112.0392, -5.331501483917236], [31.909, 120.237, -16.327552795410156], [41.9967, 121.6178, -10.366475105285645], [31.7956, 117.302, 5.1029863357543945], [46.7975, 130.3258, 9.305025100708008], [25.0441, 101.5482, -4.067618370056152], [29.6514, 91.1319, 17.127613067626953], [31.7897, 119.8914, -15.671775817871094], [36.0022, 106.2792, 12.291714668273926], [29.2718, 88.8876, 17.75562858581543], [36.7019, 119.12, -14.715185165405273], [29.1029, 119.686, -9.327252388000488], [29.6632, 94.3616, 11.130342483520508], [37.7111, 112.7306, 51.8415641784668], [40.8725, 114.904, 10.338630676269531], [31.4189, 118.37, -6.338878154754639], [31.3008, 121.467, -14.438824653625488], [25.8071, 113.0383, 2.404761791229248], [23.3917, 113.215, -5.404660701751709], [21.2706, 110.3539, -3.9886255264282227], [32.4611, 119.9219, -17.748640060424805], [30.4663, 106.6271, 23.414159774780273], [30.3058, 120.348, -10.722517013549805], [30.3119, 120.12, -10.72742748260498], [21.4689, 111.0286, -4.6939592361450195], [23.6714, 116.6339, -3.5708394050598145], [31.3264, 120.596, -14.389371871948242], [34.2761, 117.167, 15.340445518493652], [38.49494, 106.1024, 21.90995979309082], [31.7386, 117.278, 5.116418361663818], [36.39, 120.47, -31.051328659057617], [31.671, 120.721, -15.911357879638672], [35.767, 115.0772, 64.58964538574219], [37.062, 114.4854, 66.74895477294922], [34.3474, 108.935, 19.352703094482422], [30.2692, 120.19, -10.646026611328125], [27.2944, 105.31, 4.679311275482178], [32.1319, 119.43, -15.383013725280762], [27.2537, 111.4503, 12.132688522338867], [38.4186, 112.7356, 44.218135833740234], [23.3633, 116.7244, -2.7591006755828857], [28.6844, 115.931, 3.283491849899292], [41.7128, 86.2381, 32.389434814453125], [21.2679, 110.3316, -3.9737091064453125], [30.3175, 112.2551, 26.07455825805664], [46.5888, 131.1572, 8.99691390991211], [28.6425, 115.892, 3.347895622253418], [27.72, 106.9178, 9.697511672973633], [41.0931, 123.011, -14.148858070373535], [37.161, 122.41, -32.36317825317383], [46.8025, 130.2719, 9.316084861755371], [30.9222, 117.8078, -1.5395948886871338], [36.4372, 115.9848, 54.24015426635742], [40.6821, 109.8538, 16.976640701293945], [39.1082, 117.237, 7.870742321014404], [23.1142, 114.4103, -5.304167747497559], [32.0878, 118.626, -9.402626991271973], [27.8072, 114.4011, 7.7388153076171875], [30.5103, 117.0549, 3.312547445297241], [41.0385, 113.1076, 17.6503963470459], [36.5336, 116.734, 38.351966857910156], [31.5475, 120.354, -15.131205558776855], [27.8978, 102.2625, -0.5472970008850098], [27.1311, 114.99, 1.921079158782959], [25.0359, 102.638, -4.4812912940979], [28.2597, 112.9792, 15.152678489685059], [41.2864, 123.7669, -11.870354652404785], [47.3489, 130.3172, 9.888839721679688], [36.907, 121.544, -33.50180435180664], [32.5714, 110.8839, 30.225841522216797], [25.8417, 98.8546, -1.107882022857666], [30.2028, 115.0767, 16.23512840270996], [27.8667, 113.167, 12.314484596252441], [34.5885, 119.176, -15.486417770385742], [23.6936, 113.0425, -4.8726091384887695], [35.0992, 117.4518, 13.581218719482422], [29.5467, 103.7705, 13.754779815673828], [35.4934, 112.835, 67.35694122314453], [28.2403, 117.0281, -5.2644805908203125], [43.95305556, 126.4738889, 2.0720207691192627], [28.0089, 120.634, -5.4161601066589355], [21.6533, 110.9294, -4.904657363891602], [31.1208, 104.4219, 18.45182991027832], [29.355, 113.2117, 20.235788345336914], [35.7289, 107.6831, -0.8158894777297974], [31.3019, 120.591, -14.286209106445312], [34.4286, 115.6697, 43.2699089050293], [30.6347, 105.8161, 21.404510498046875], [24.44583333, 118.0636111, -2.447484254837036], [41.2736, 123.1761, -12.948019027709961], [32.1083, 118.803, -11.241250991821289], [35.0611, 111.0233, 43.21592330932617], [27.8614, 112.9433, 12.766712188720703], [35.4883, 112.8564, 67.53509521484375], [47.3386, 123.9305, 10.889617919921875], [26.8956, 112.6211, 8.887870788574219], [29.077, 119.647, -9.298604011535645], [37.0172, 105.18, 26.67043113708496], [22.9539, 112.0539, -5.306149482727051], [30.1259, 104.6294, 18.097501754760742], [26.6611, 119.5392, -4.631404399871826], [24.5157, 117.6569, -3.3737142086029053], [36.9639, 100.9048, 37.02864074707031], [40.9359, 117.963, -13.68049430847168], [37.393, 117.9776, 8.68549633026123], [44.8969, 82.0806, 29.463315963745117], [46.0703, 122.0506, 8.583972930908203], [31.8585, 117.336, 5.009364604949951], [36.5767, 109.4824, 1.7727092504501343], [33.721, 113.322, 53.64558792114258], [32.5, 80.1161, 29.204038619995117], [37.739, 115.6906, 54.57392501831055], [36.6028, 109.4761, 1.560896396636963], [27.5444, 109.9453, 13.891785621643066], [21.9508, 108.6553, -4.533105850219727], [29.3411, 104.7692, 15.365644454956055], [28.0797, 116.2239, -0.6720647811889648], [36.61981, 114.4965, 69.25482940673828], [32.0723, 118.778, -10.966218948364258], [28.9026, 105.4436, 14.281643867492676], [26.2081, 111.6217, 5.594701766967773], [42.9409, 89.191, 31.7113094329834], [30.0911, 120.598, -10.078375816345215], [34.3017, 107.0708, 12.26856517791748], [40.8033, 111.658, 18.613645553588867], [33.0122, 112.5224, 41.52655792236328], [26.9258, 112.6194, 9.028120994567871], [28.2675, 109.6958, 17.346494674682617], [31.422, 121.14, -14.92516040802002], [32.105, 118.907, -12.142932891845703], [30.6872, 104.176, 17.913728713989258], [40.8367, 114.8985, 10.749345779418945], [43.55, 125.633, -0.09702398627996445], [30.2756, 118.1371, -5.735199451446533], [41.9419, 126.4078, -5.264592170715332], [32.4285, 105.8624, 18.726276397705078], [35.5997, 103.2064, 36.55223083496094], [41.8336, 123.542, -9.21098804473877], [36.1542, 113.1097, 67.03474426269531], [41.1442, 123.0485, -13.818599700927734], [29.2786, 117.1983, -2.5369110107421875], [39.643, 118.144, -11.775148391723633], [23.1572, 112.885, -5.355713844299316], [29.6219, 106.65, 20.08847999572754], [41.8472, 123.428, -9.27225112915039], [30.7946, 120.744, -12.169575691223145], [25.0661, 117.0256, -5.313473701477051], [33.0014, 97.0, 17.17319679260254], [31.89708, 121.1518, -17.06361961364746], [24.428, 98.5842, 0.06419903039932251], [39.1067, 117.1941, 8.651795387268066], [40.1461, 124.3933, -16.514806747436523], [30.2456, 120.127, -10.576397895812988], [22.5908, 114.263, -5.047407627105713], [29.7128, 118.3057, -8.127942085266113], [44.0114, 87.2997, 31.373926162719727], [32.4535, 105.8945, 18.750139236450195], [24.7121, 108.2134, -1.6049245595932007], [30.4519, 114.8858, 19.116310119628906], [39.7153, 76.1861, 29.44921112060547], [24.3702, 102.5389, -4.162055015563965], [27.8381, 113.143, 12.199158668518066], [31.7133, 118.6439, -9.24124813079834], [37.9097, 114.3541, 59.299739837646484], [44.3336, 84.8983, 30.76150131225586], [42.2725, 118.9572, -9.030186653137207], [29.36028, 104.7778, 15.47481632232666], [25.442, 119.0156, -3.013775587081909], [31.2036, 121.478, -13.995119094848633], [38.8394, 117.457, 7.2416276931762695], [24.4175, 111.5269, -2.321629047393799], [37.177, 119.941, -26.377626419067383], [30.2819, 109.4689, 25.314725875854492], [38.5061, 102.1708, 33.33964157104492], [39.6719, 106.8219, 20.933502197265625], [43.84, 125.2786, 0.7426942586898804], [32.9444, 117.3575, 9.116659164428711], [22.4137, 107.3476, -3.9581470489501953], [36.1855, 113.0844444, 66.67302703857422], [34.5004, 109.5049, 22.920928955078125], [31.56, 120.294, -15.130792617797852], [32.0144, 118.777, -10.893983840942383], [40.8115, 114.8814, 11.119582176208496], [29.9972, 101.9533, 6.71830415725708], [35.5102, 102.0199, 37.89624786376953], [37.8561, 113.5922, 57.08137893676758], [34.3708, 107.1586, 11.49619197845459], [23.4168, 103.386, -3.370342254638672], [37.4489, 116.3189, 47.196266174316406], [35.0147, 110.9956, 42.88001251220703], [29.8264, 106.424, 20.6446475982666], [34.7545, 113.681, 65.52940368652344], [23.6706, 116.6447, -3.54785418510437], [36.3083, 120.1964, -28.90774154663086], [30.8388, 106.1087, 22.575895309448242], [43.8667, 125.417, 0.9328420162200928], [27.9883, 116.3553, -2.0115184783935547], [39.9419, 119.5369, -20.71533966064453], [33.8399, 115.8067, 35.59463119506836], [30.2099, 115.0264, 16.623477935791016], [33.737, 113.182, 53.81985855102539], [27.9164, 112.4876, 13.874927520751953], [27.8036, 114.3442, 7.967741966247559], [26.57098, 101.68912, -3.72174334526062], [22.2294, 113.495, -5.112495422363281], [38.44139, 106.2275, 21.084659576416016], [24.6967, 108.1009, -1.7181780338287354], [25.0836, 102.728, -4.424059867858887], [24.9624, 102.625, -4.509191513061523], [31.1278, 97.1804, 8.993494987487793], [38.5247, 102.1878, 33.28068923950195], [31.381, 120.999, -14.711942672729492], [28.4569, 118.0058, -8.25497055053711], [32.1142, 112.1825, 32.792110443115234], [34.3617, 108.7233, 17.698394775390625], [23.8982, 100.0782, -0.9799731373786926], [41.1636, 80.2828, 30.821855545043945], [32.6028, 116.8556, 14.338825225830078], [36.1942, 117.1436, 27.156858444213867], [37.0967, 114.4821, 66.49745178222656], [38.817, 106.3394, 21.19876480102539], [32.9673, 117.3536, 9.25106143951416], [30.4576, 106.6303, 23.387081146240234], [30.6197, 114.2836, 23.697078704833984], [41.1556, 122.0247, -15.156096458435059], [38.9194, 117.157, 11.812525749206543], [39.9522, 116.434, 8.655426979064941], [36.087, 114.358, 70.80387878417969], [43.7256, 126.6772, 1.366166114807129], [40.6532, 109.8756, 16.89517593383789], [24.9617, 118.6108, -2.4943923950195312], [36.792, 119.952, -26.78792381286621], [29.5953, 105.0331, 17.045827865600586], [31.2472, 120.561, -14.040943145751953], [30.1506, 104.6356, 18.166053771972656], [33.1842, 106.9893, 20.304546356201172], [36.0875, 111.5025, 46.38532257080078], [31.8934, 102.2402, 12.421809196472168], [24.8978, 118.5972, -2.3361306190490723], [22.8561, 108.316, -4.488750457763672], [27.8336, 113.251, 11.9215087890625], [31.2703, 120.613, -14.1653470993042], [35.303, 113.883, 68.83850860595703], [39.3673, 112.4279, 29.499929428100586], [32.6389, 110.7258, 29.9473934173584], [38.1398, 114.5019, 56.64958190917969], [26.6272, 118.1756, -8.33199405670166], [33.6284, 116.9677, 16.742053985595703], [33.965, 118.283, -3.18172287940979], [36.7339, 119.0841, -14.063429832458496], [37.9358, 102.6469, 35.57222366333008], [41.7089, 123.439, -10.104482650756836], [22.7906, 108.439, -4.583197116851807], [43.8358, 126.5844, 1.7022569179534912], [31.882, 120.55, -16.615375518798828], [41.8828, 123.9169, -8.575783729553223], [31.656, 120.734, -15.865120887756348], [34.5667, 117.732, 6.116929054260254], [45.61, 126.615, 7.3143439292907715], [29.5983, 106.296, 19.377016067504883], [45.7258, 126.646, 7.610320568084717], [33.575, 119.007, -12.986701965332031], [23.08, 114.4053, -5.292107105255127], [28.5819, 112.3744, 17.681440353393555], [43.9167, 125.323, 1.07454252243042], [22.5811, 113.074, -5.617249011993408], [38.843, 105.6975, 24.721923828125], [27.6178, 113.865, 8.803629875183105], [30.4551, 106.6388, 23.39702033996582], [23.01277778, 113.7944444, -5.570217609405518], [30.8244, 120.07, -12.223930358886719], [34.3547, 107.1431, 11.681044578552246], [36.6739, 117.114, 29.9180850982666], [22.8693, 112.844, -5.470152854919434], [23.7233, 114.6892, -5.449002742767334], [25.3167, 110.4144, 1.1341229677200317], [28.6459, 121.273, -5.374499797821045], [26.8919, 112.6006, 8.905991554260254], [33.0323, 107.007, 20.879867553710938], [30.0475, 101.9603, 6.920754909515381], [30.7636, 106.0642, 22.25596046447754], [35.259, 113.1992, 68.5122299194336], [32.2786, 118.3244, -5.784882068634033], [36.1758, 117.1081, 27.87954330444336], [22.735, 108.328, -4.606473922729492], [22.3708, 107.3701, -3.9620697498321533], [27.3125, 105.2864, 4.730510234832764], [33.567, 114.056, 49.59181594848633], [34.3528, 107.3906, 11.626669883728027], [38.8343, 105.6775, 24.830297470092773], [36.283, 120.008, -26.938440322875977], [34.7745, 117.5852, 9.561266899108887], [23.2783, 113.568, -5.56124210357666], [33.3261, 105.0822, 16.900217056274414], [36.6377, 117.9544, 10.208322525024414], [26.5689, 106.6971, 3.2815685272216797], [43.768, 87.6046, 31.580530166625977], [41.7561, 123.535, -9.662306785583496], [41.0228, 123.1289, -14.337604522705078], [27.8014, 114.3806, 7.793100833892822], [44.561, 129.61, 5.797830581665039], [29.9919, 120.605, -9.812768936157227], [37.4658, 118.5019, -3.9402854442596436], [25.8333, 114.9322, -2.054424524307251], [23.9011, 106.6103, -3.3866658210754395], [38.2839, 109.7289, 1.4100664854049683], [45.6033, 84.8861, 29.639596939086914], [30.9447, 118.7581, -9.647135734558105], [25.2178, 110.2869, 0.590861976146698], [26.2378, 117.6028, -8.026491165161133], [22.8172, 114.3244, -5.235086441040039], [40.1194, 124.3678, -16.699649810791016], [41.9086, 123.5953, -8.734000205993652], [31.238, 121.4, -14.11932373046875], [26.5697, 106.7164, 3.297542095184326], [22.7833, 108.244, -4.538061141967773], [40.7866, 111.551, 18.427242279052734], [31.7039, 119.935, -15.401180267333984], [45.5422, 126.979, 7.226466655731201], [19.9507, 110.576, -1.9557965993881226], [30.6414, 114.2131, 24.11747169494629], [37.9311, 102.6219, 35.5904655456543], [39.3606, 112.4549, 29.840057373046875], [46.8267, 130.3961, 9.333739280700684], [35.94, 104.148, 33.26054763793945], [29.4892, 106.634, 19.5379638671875], [23.1422, 113.235, -5.437978744506836], [23.06, 113.7480556, -5.564387798309326], [29.1128, 119.6533, -9.355440139770508], [36.2092, 117.7181, 14.197436332702637], [27.7044, 111.9892, 13.55156421661377], [31.87888889, 106.7513889, 24.919490814208984], [29.2313, 91.7608, 15.863351821899414], [34.5814, 105.7281, 17.967885971069336], [35.7511, 114.2956, 70.21739196777344], [47.8515, 88.1267, 28.0703182220459], [37.9723, 106.196, 19.954730987548828], [38.8632, 115.493, 40.17691421508789], [23.8844, 106.6527, -3.3860321044921875], [39.1495, 117.3916, 4.580528259277344], [36.2403, 120.6659, -31.976964950561523], [39.1292, 106.7096, 20.03251075744629], [38.01777778, 114.5330556, 58.281646728515625], [32.1383, 114.0614, 33.86388397216797], [31.8572, 117.25, 5.818212032318115], [24.9117, 118.5819, -2.416581392288208], [28.4622, 117.9511, -8.178244590759277], [32.8928, 115.8275, 28.36703109741211], [25.067, 102.681, -4.454333305358887], [24.3289, 116.1278, -4.746094703674316], [28.6969, 115.973, 3.0830068588256836], [28.1178, 112.9844, 14.205589294433594], [44.3075, 86.0697, 31.05282211303711], [28.7867, 104.6061, 12.11406421661377], [38.0108, 112.434, 45.77079391479492], [29.4251, 113.1493, 20.69403076171875], [36.6868, 117.0684, 31.019548416137695], [45.7319, 126.685, 7.6332783699035645], [34.8019, 113.675, 65.90320587158203], [28.4586, 119.93, -7.823795795440674], [21.2567, 110.4558, -4.002987861633301], [30.9285, 113.9153, 26.74791717529297], [32.0005, 120.86, -17.322267532348633], [29.6475, 91.0874, 17.17071533203125], [27.4948, 114.0944, 7.251058101654053], [42.0352, 119.2654, -10.638585090637207], [40.5546, 110.0377, 16.616451263427734], [29.6292, 91.0834, 17.144868850708008], [40.0844, 113.2711, 25.631467819213867], [46.3991, 124.8847, 9.061774253845215], [27.6231, 113.8447, 8.911189079284668], [27.6486, 106.8906, 9.195401191711426], [31.92, 120.268, -16.4039249420166], [39.2133, 117.1837, 7.429107189178467], [23.4714, 116.7519, -2.938626527786255], [30.5489, 117.0486, 3.4802675247192383], [31.4867, 120.269, -14.867634773254395], [23.1331, 113.26, -5.441449165344238], [25.8226, 113.0116, 2.508814573287964], [36.61763, 114.5129, 69.25593566894531], [33.9461, 116.7844, 20.93933868408203], [27.7914, 114.3703, 7.7764763832092285], [40.0181, 119.7624, -21.04545783996582], [43.8228, 126.4978, 1.5764983892440796], [28.2558, 109.6414, 17.345727920532227], [25.9118, 114.9064, -1.75180983543396], [35.4894, 112.8664, 67.61032104492188], [34.3497, 107.2058, 11.711033821105957], [34.6511, 112.3939, 60.56797409057617], [28.7442, 115.813, 4.267387390136719], [26.9089, 112.5328, 9.096872329711914], [28.7994, 115.742, 4.932241439819336], [28.9703, 111.6975, 20.166156768798828], [36.1912, 113.1569, 67.15362548828125], [40.9161, 117.9664, -13.710142135620117], [34.7781, 114.3389, 62.27482986450195], [23.2536, 116.4019, -3.099297523498535], [47.3227, 123.9483, 10.859994888305664], [36.2403, 120.4001, -30.480146408081055], [27.9647, 116.385, -2.3555796146392822], [30.7478, 120.726, -12.011510848999023], [24.81805556, 118.1569444, -3.158323287963867], [24.299, 109.4221, -1.9313260316848755], [41.8469, 123.81, -8.85027027130127], [29.4822, 106.364, 18.96262550354004], [26.5017, 101.7453, -3.7872304916381836], [31.8531, 106.7594, 25.001937866210938], [31.96, 120.913, -17.17720603942871], [29.6816, 115.9872, 7.098047256469727], [28.6839, 115.8886, 3.543616771697998], [26.0753, 119.315, -3.9812519550323486], [42.8947, 125.1358, -3.1948537826538086], [39.3514, 112.44, 29.809398651123047], [39.5343, 116.7464, 10.265227317810059], [31.0386, 112.2211, 28.280277252197266], [27.2272, 111.4328, 11.996637344360352], [26.585, 101.7169, -3.6959259510040283], [38.9389, 100.4497, 29.815616607666016], [45.6175, 122.8211, 6.720089435577393], [41.7192, 86.2022, 32.38193893432617], [42.9559, 89.1673, 31.711124420166016], [29.3864, 117.3097, -2.9608798027038574], [28.56, 112.3439, 17.582164764404297], [44.9079, 82.0485, 29.44468116760254], [44.5782, 129.6115, 5.837480068206787], [35.5975, 104.6169, 30.003374099731445], [38.8416, 115.4612, 40.926387786865234], [31.453, 121.115, -15.063197135925293], [37.7394, 112.5583, 49.78120422363281], [37.85, 113.5158, 56.65746307373047], [36.061, 114.483, 70.22008514404297], [29.3678, 113.1772, 20.36147117614746], [39.6295, 118.1997, -12.389932632446289], [36.0756, 103.712, 35.502464294433594], [31.7586, 119.996, -15.65079402923584], [35.7067, 107.6364, -0.6061587333679199], [27.3361, 103.7225, 1.7569636106491089], [23.0528, 112.471, -5.291764736175537], [22.75, 114.085, -5.460312843322754], [28.3169, 109.7325, 17.497264862060547], [26.8733, 112.6197, 8.793007850646973], [34.4714, 100.2561, 28.829587936401367], [28.6064, 115.9083, 3.1040995121002197], [43.91, 125.287, 1.0287563800811768], [28.76389, 104.6417, 12.044646263122559], [41.7347, 123.2444, -10.248519897460938], [30.6133, 105.68, 21.086225509643555], [36.1939, 113.0972, 66.71583557128906], [40.1114, 113.2803, 25.26753807067871], [23.7106, 113.0208, -4.828774452209473], [41.7511, 86.1461, 32.361690521240234], [43.1594, 124.3711, -2.6983389854431152], [25.8481, 114.9461, -2.055819511413574], [33.6406, 114.6369, 47.083492279052734], [29.4892, 106.468, 19.197818756103516], [23.5486, 116.3242, -3.8379533290863037], [36.11, 114.286, 70.96621704101562], [23.1886, 112.863, -5.330199241638184], [43.8711, 87.5525, 31.50592613220215], [28.2642, 117.0564, -5.334515571594238], [23.4792, 111.2897, -4.3569207191467285], [45.6289, 122.8444, 6.770373821258545], [47.2753, 130.261, 9.813211441040039], [40.7514, 120.8392, -18.60694694519043], [37.8694, 113.5689, 56.80392837524414], [39.9716, 116.473, 7.894271373748779], [41.8625, 124.0383, -8.556550979614258], [31.2864, 120.628, -14.24169921875], [28.4514, 119.914, -7.844658851623535], [36.6489, 116.943, 33.82752990722656], [38.8516, 105.724, 24.574705123901367], [40.0758, 113.2994, 25.80513572692871], [34.7975, 114.3733, 62.19374465942383], [30.9075, 113.942, 26.56525230407715], [28.9404, 118.871, -9.162908554077148], [36.10139, 111.505, 46.329856872558594], [25.1081, 99.1678, -1.1079145669937134], [29.709, 106.452, 20.13544464111328], [36.67, 116.93, 34.228309631347656], [38.3344, 109.7414, 1.6399930715560913], [41.1219, 121.2008, -16.476409912109375], [21.8586, 111.9786, -5.289041519165039], [31.6842, 120.288, -15.58044719696045], [40.6288, 109.8654, 16.814992904663086], [36.44, 120.61, -31.797212600708008], [35.0622, 118.2939, -2.0078327655792236], [37.1013, 79.9117, 30.526119232177734], [34.5101, 109.5293, 23.106388092041016], [41.2553, 123.15, -13.075632095336914], [47.3636, 123.9305, 10.927665710449219], [37.4014, 121.5992, -32.73379135131836], [40.8062, 111.7277, 18.735198974609375], [37.5436, 121.3181, -32.1326904296875], [28.6542, 121.419, -5.0574164390563965], [29.8211, 114.3231, 18.442184448242188], [40.7094, 122.2703, -17.361846923828125], [34.2324, 108.94, 20.85283660888672], [33.9528, 118.293, -3.322031021118164], [27.0983, 115.0075, 1.7369414567947388], [34.429, 115.6558, 43.4998893737793], [34.2303, 108.883, 20.469236373901367], [25.1328, 99.1711, -1.134517788887024], [46.0756, 121.9462, 8.6041841506958], [22.7633, 100.98, -0.47237735986709595], [23.1569, 113.281, -5.455478668212891], [26.5939, 104.89, 1.1797003746032715], [31.7694, 120.0469, -15.732146263122559], [40.1438, 116.72, 2.7473909854888916], [25.2697, 110.2819, 0.8523631691932678], [34.1781, 117.1694, 14.974560737609863], [37.68277778, 112.7194444, 51.95955276489258], [35.0896, 118.4023, -3.7312960624694824], [29.2956, 117.2461, -2.852567672729492], [26.0392, 119.303, -3.9424898624420166], [24.3694, 102.5778, -4.172304153442383], [36.1942, 117.0881, 28.428035736083984], [26.2708, 117.6353, -8.099324226379395], [37.5136, 111.1297, 26.888227462768555], [43.6267, 122.2603, -0.9845325946807861], [30.89556, 120.0875, -12.51534366607666], [29.8686, 114.3372, 18.661113739013672], [22.7267, 114.24, -5.300195693969727], [27.8867, 113.095, 12.595975875854492], [30.8023, 106.0789, 22.384904861450195], [31.7712, 116.5661, 11.742889404296875], [46.7432, 82.9994, 28.276714324951172], [32.41361, 119.458, -16.167367935180664], [30.2043, 114.8949, 17.482786178588867]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#00790d&quot;, &quot;0.05&quot;: &quot;#00790d&quot;, &quot;0.1&quot;: &quot;#00790d&quot;, &quot;0.15&quot;: &quot;#00790d&quot;, &quot;0.2&quot;: &quot;#00790d&quot;, &quot;0.25&quot;: &quot;#00790d&quot;, &quot;0.3&quot;: &quot;#00790d&quot;, &quot;0.35&quot;: &quot;#00790d&quot;, &quot;0.4&quot;: &quot;#00790d&quot;, &quot;0.45&quot;: &quot;#00790d&quot;, &quot;0.5&quot;: &quot;#00790d&quot;, &quot;0.55&quot;: &quot;#00790d&quot;, &quot;0.6&quot;: &quot;#00790d&quot;, &quot;0.65&quot;: &quot;#00790d&quot;, &quot;0.7&quot;: &quot;#00790d&quot;, &quot;0.75&quot;: &quot;#00790d&quot;, &quot;0.8&quot;: &quot;#00790d&quot;, &quot;0.85&quot;: &quot;#00790d&quot;, &quot;0.9&quot;: &quot;#00790d&quot;, &quot;0.95&quot;: &quot;#00790d&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_e625c8998062a234c7a1cc4d0d85f80c.addTo(map_1a0f015539afba18db32d45c6be5cf31);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1db1dbac150>\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('bias', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"490C9E4D01E24E818DEDC3F001EF6984\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 7 Results Comparison\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"02C7D625B6CE4D6484C5580974B551C2\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"True data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {\n    \"id\": \"EC3B7BAFEA5048E885794D7948650D88\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_18e5d0728ef32a3258a79ef171fd9ebe {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_18e5d0728ef32a3258a79ef171fd9ebe&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_18e5d0728ef32a3258a79ef171fd9ebe = L.map(\\n\",\n       \"                &quot;map_18e5d0728ef32a3258a79ef171fd9ebe&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_eaae2200a5de105f54096f099c5afabb = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_eaae2200a5de105f54096f099c5afabb.addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c36cd9a2b68cc5ee088b411bead98906 = L.circleMarker(\\n\",\n       \"                [30.8388, 106.1087],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78abd3a55dbef151e4c65ad6c0714af9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_506a7571cc0b540a8ae585dd3149682d = $(`&lt;div id=&quot;html_506a7571cc0b540a8ae585dd3149682d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1087             latitude:30.8388             PM2_5:42.04634831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78abd3a55dbef151e4c65ad6c0714af9.setContent(html_506a7571cc0b540a8ae585dd3149682d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c36cd9a2b68cc5ee088b411bead98906.bindPopup(popup_78abd3a55dbef151e4c65ad6c0714af9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4680689810642226b7bd9c43db0d3fe = L.circleMarker(\\n\",\n       \"                [36.1758, 117.1081],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33e7aa6674363e6984160f00211675d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_467ced6cd63ec061b021ecf6a7f3a49a = $(`&lt;div id=&quot;html_467ced6cd63ec061b021ecf6a7f3a49a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1081             latitude:36.1758             PM2_5:49.33147632             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33e7aa6674363e6984160f00211675d7.setContent(html_467ced6cd63ec061b021ecf6a7f3a49a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4680689810642226b7bd9c43db0d3fe.bindPopup(popup_33e7aa6674363e6984160f00211675d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff2f6d5a7360741c3761591eda6a073a = L.circleMarker(\\n\",\n       \"                [39.1067, 117.1941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f96130d5824bd60cf3819d24a02f757 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5dd8a3b8fd09c699b84eb83faca7fac = $(`&lt;div id=&quot;html_a5dd8a3b8fd09c699b84eb83faca7fac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1941             latitude:39.1067             PM2_5:47.90083799             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f96130d5824bd60cf3819d24a02f757.setContent(html_a5dd8a3b8fd09c699b84eb83faca7fac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff2f6d5a7360741c3761591eda6a073a.bindPopup(popup_5f96130d5824bd60cf3819d24a02f757)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06388cc81d92028ab28715a4c9779d9e = L.circleMarker(\\n\",\n       \"                [32.1142, 112.1825],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_314c5b45c76c49212278d32c74aa32e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51094ef216a5ad04b3802f98e974f09b = $(`&lt;div id=&quot;html_51094ef216a5ad04b3802f98e974f09b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1825             latitude:32.1142             PM2_5:62.29295775             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_314c5b45c76c49212278d32c74aa32e2.setContent(html_51094ef216a5ad04b3802f98e974f09b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06388cc81d92028ab28715a4c9779d9e.bindPopup(popup_314c5b45c76c49212278d32c74aa32e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e0c5caeffdb55ddf8ef6359a06ad035 = L.circleMarker(\\n\",\n       \"                [36.792, 119.952],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9deeb25ad40f21fd2e3755d82bd02d35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_878c82fec5492a905f6f2727a586b6bc = $(`&lt;div id=&quot;html_878c82fec5492a905f6f2727a586b6bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.952             latitude:36.792             PM2_5:32.28248588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9deeb25ad40f21fd2e3755d82bd02d35.setContent(html_878c82fec5492a905f6f2727a586b6bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e0c5caeffdb55ddf8ef6359a06ad035.bindPopup(popup_9deeb25ad40f21fd2e3755d82bd02d35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1efe7b2fb63fa3d0b210f8f4d4507263 = L.circleMarker(\\n\",\n       \"                [40.6532, 109.8756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3027ef99117699c272b06e5e280d754d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1678c7273163c6bccccaa842891f9d44 = $(`&lt;div id=&quot;html_1678c7273163c6bccccaa842891f9d44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8756             latitude:40.6532             PM2_5:45.81005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3027ef99117699c272b06e5e280d754d.setContent(html_1678c7273163c6bccccaa842891f9d44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1efe7b2fb63fa3d0b210f8f4d4507263.bindPopup(popup_3027ef99117699c272b06e5e280d754d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9cea40d7ef94ac196b9cf4a530ead4d7 = L.circleMarker(\\n\",\n       \"                [36.0875, 111.5025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f25c7fd847d60db26e1c47769df23a8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9ea766c9b9fad132c4cbb2585db48e8 = $(`&lt;div id=&quot;html_d9ea766c9b9fad132c4cbb2585db48e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5025             latitude:36.0875             PM2_5:81.15416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f25c7fd847d60db26e1c47769df23a8.setContent(html_d9ea766c9b9fad132c4cbb2585db48e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9cea40d7ef94ac196b9cf4a530ead4d7.bindPopup(popup_5f25c7fd847d60db26e1c47769df23a8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c5dd61c176d958cec14b6eed1df6c48 = L.circleMarker(\\n\",\n       \"                [38.8343, 105.6775],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5fe96a60e983c11af42bdc4ca8fee512 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_439e2ea6942d057007f3182d8b06d183 = $(`&lt;div id=&quot;html_439e2ea6942d057007f3182d8b06d183&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6775             latitude:38.8343             PM2_5:29.56703911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5fe96a60e983c11af42bdc4ca8fee512.setContent(html_439e2ea6942d057007f3182d8b06d183);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c5dd61c176d958cec14b6eed1df6c48.bindPopup(popup_5fe96a60e983c11af42bdc4ca8fee512)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb65258b0da337dd15afa1979078923d = L.circleMarker(\\n\",\n       \"                [22.7906, 108.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73dc7fc67acdcf2e1cfdbf2f2e537d1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e70a8c404026f9b2169cb356e74810fd = $(`&lt;div id=&quot;html_e70a8c404026f9b2169cb356e74810fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.439             latitude:22.7906             PM2_5:33.82303371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73dc7fc67acdcf2e1cfdbf2f2e537d1f.setContent(html_e70a8c404026f9b2169cb356e74810fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb65258b0da337dd15afa1979078923d.bindPopup(popup_73dc7fc67acdcf2e1cfdbf2f2e537d1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b5683c9f9c9fe60fa7360bc51b7a590e = L.circleMarker(\\n\",\n       \"                [37.4489, 116.3189],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f143959b459ad8aec4a513167843237 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2274f83bcb5eb6cba64925e9bb2314cb = $(`&lt;div id=&quot;html_2274f83bcb5eb6cba64925e9bb2314cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3189             latitude:37.4489             PM2_5:57.425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f143959b459ad8aec4a513167843237.setContent(html_2274f83bcb5eb6cba64925e9bb2314cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b5683c9f9c9fe60fa7360bc51b7a590e.bindPopup(popup_3f143959b459ad8aec4a513167843237)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa133dd5b0603d5539707b334b95aa93 = L.circleMarker(\\n\",\n       \"                [38.44139, 106.2275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec1abab34757e3cbeda7a0fea0c30927 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d546a0a85bfed4d8485a2ac7a0f326a = $(`&lt;div id=&quot;html_2d546a0a85bfed4d8485a2ac7a0f326a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2275             latitude:38.44139             PM2_5:34.7254902             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec1abab34757e3cbeda7a0fea0c30927.setContent(html_2d546a0a85bfed4d8485a2ac7a0f326a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa133dd5b0603d5539707b334b95aa93.bindPopup(popup_ec1abab34757e3cbeda7a0fea0c30927)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b752294577063a4d29605c1da434a78 = L.circleMarker(\\n\",\n       \"                [23.01277778, 113.7944444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_64264e9c70864eea9355b280d52661ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7900fd9a6c38d589b894c2ffb8992a46 = $(`&lt;div id=&quot;html_7900fd9a6c38d589b894c2ffb8992a46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7944444             latitude:23.01277778             PM2_5:33.54142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_64264e9c70864eea9355b280d52661ee.setContent(html_7900fd9a6c38d589b894c2ffb8992a46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b752294577063a4d29605c1da434a78.bindPopup(popup_64264e9c70864eea9355b280d52661ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_544ce30e3568048e566f09b5f813e7f6 = L.circleMarker(\\n\",\n       \"                [42.2725, 118.9572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d899d2ffa3cbdd53554f155e99de06e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4d2e9cf18a9deb61e67904fe6778176 = $(`&lt;div id=&quot;html_b4d2e9cf18a9deb61e67904fe6778176&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9572             latitude:42.2725             PM2_5:25.29608939             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d899d2ffa3cbdd53554f155e99de06e.setContent(html_b4d2e9cf18a9deb61e67904fe6778176);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_544ce30e3568048e566f09b5f813e7f6.bindPopup(popup_0d899d2ffa3cbdd53554f155e99de06e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f22e17897527aa814ec0807743001f5c = L.circleMarker(\\n\",\n       \"                [34.7545, 113.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c73a6a61a2d86857fecd20ca25b8f6f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97a64165e26e5f0999921924688a44de = $(`&lt;div id=&quot;html_97a64165e26e5f0999921924688a44de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.681             latitude:34.7545             PM2_5:65.23728814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c73a6a61a2d86857fecd20ca25b8f6f.setContent(html_97a64165e26e5f0999921924688a44de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f22e17897527aa814ec0807743001f5c.bindPopup(popup_2c73a6a61a2d86857fecd20ca25b8f6f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13be224f888f9cb2f28a1e0d4c4cfd13 = L.circleMarker(\\n\",\n       \"                [31.1278, 97.1804],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb7156fdbf966471c7ed796dacbd110b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b322664721165de28e5749cf2341232 = $(`&lt;div id=&quot;html_8b322664721165de28e5749cf2341232&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.1804             latitude:31.1278             PM2_5:19.72532895             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb7156fdbf966471c7ed796dacbd110b.setContent(html_8b322664721165de28e5749cf2341232);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13be224f888f9cb2f28a1e0d4c4cfd13.bindPopup(popup_fb7156fdbf966471c7ed796dacbd110b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d97375f7c348cde50c9975e7bd624253 = L.circleMarker(\\n\",\n       \"                [44.3336, 84.8983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4fb09d6b0ae9cdcc4013434f82ddb5ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51af5032ea4eb3340970d4037d9af1f5 = $(`&lt;div id=&quot;html_51af5032ea4eb3340970d4037d9af1f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8983             latitude:44.3336             PM2_5:34.77683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4fb09d6b0ae9cdcc4013434f82ddb5ec.setContent(html_51af5032ea4eb3340970d4037d9af1f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d97375f7c348cde50c9975e7bd624253.bindPopup(popup_4fb09d6b0ae9cdcc4013434f82ddb5ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f980f9e05536a8ef53b821bff8b9f426 = L.circleMarker(\\n\",\n       \"                [36.6739, 117.114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3b7c44da1c39f37cee7c01d168446c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7821fb86ac08224f4a24636f5b5591a = $(`&lt;div id=&quot;html_d7821fb86ac08224f4a24636f5b5591a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.114             latitude:36.6739             PM2_5:50.28088235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3b7c44da1c39f37cee7c01d168446c8.setContent(html_d7821fb86ac08224f4a24636f5b5591a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f980f9e05536a8ef53b821bff8b9f426.bindPopup(popup_e3b7c44da1c39f37cee7c01d168446c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75bfd8ea11e03e7fa17e2288db885e38 = L.circleMarker(\\n\",\n       \"                [33.965, 118.283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51a26f7b30313405660645c4e4327ce7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11482945822ce63be08cc7c0343711e8 = $(`&lt;div id=&quot;html_11482945822ce63be08cc7c0343711e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.283             latitude:33.965             PM2_5:55.98459384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51a26f7b30313405660645c4e4327ce7.setContent(html_11482945822ce63be08cc7c0343711e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75bfd8ea11e03e7fa17e2288db885e38.bindPopup(popup_51a26f7b30313405660645c4e4327ce7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee17735bec7729c285031effe81ecbb6 = L.circleMarker(\\n\",\n       \"                [35.259, 113.1992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c7b07be519bf670042b2885967eff21 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2de85322cef24c9e6f2c1ac39a5218f2 = $(`&lt;div id=&quot;html_2de85322cef24c9e6f2c1ac39a5218f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1992             latitude:35.259             PM2_5:66.3319209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c7b07be519bf670042b2885967eff21.setContent(html_2de85322cef24c9e6f2c1ac39a5218f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee17735bec7729c285031effe81ecbb6.bindPopup(popup_1c7b07be519bf670042b2885967eff21)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c6de9c6ce08f295760cd809223d1525 = L.circleMarker(\\n\",\n       \"                [31.56, 120.294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_753ec68a0888a0cac3845d37b599e4ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fa6b36ea293288a3fc96a7ebff970b2 = $(`&lt;div id=&quot;html_7fa6b36ea293288a3fc96a7ebff970b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.294             latitude:31.56             PM2_5:43.77966102             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_753ec68a0888a0cac3845d37b599e4ee.setContent(html_7fa6b36ea293288a3fc96a7ebff970b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c6de9c6ce08f295760cd809223d1525.bindPopup(popup_753ec68a0888a0cac3845d37b599e4ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_511581292d7cdfd3f721a24d3b76cb7c = L.circleMarker(\\n\",\n       \"                [24.3702, 102.5389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15ca14c868d6bca205602a913854b599 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_effc64251fe7f5d6fc7270981c51bc26 = $(`&lt;div id=&quot;html_effc64251fe7f5d6fc7270981c51bc26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5389             latitude:24.3702             PM2_5:29.84240688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15ca14c868d6bca205602a913854b599.setContent(html_effc64251fe7f5d6fc7270981c51bc26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_511581292d7cdfd3f721a24d3b76cb7c.bindPopup(popup_15ca14c868d6bca205602a913854b599)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40c12b4d68d4253699af5e4500867968 = L.circleMarker(\\n\",\n       \"                [41.7089, 123.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56043fc9c6495c9e62cabb5e9da08b12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37b37f7f82a85d1dfb2a55303479224e = $(`&lt;div id=&quot;html_37b37f7f82a85d1dfb2a55303479224e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.439             latitude:41.7089             PM2_5:36.12638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56043fc9c6495c9e62cabb5e9da08b12.setContent(html_37b37f7f82a85d1dfb2a55303479224e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40c12b4d68d4253699af5e4500867968.bindPopup(popup_56043fc9c6495c9e62cabb5e9da08b12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fecee1eb4c5bbac8f20b9417a48fc73 = L.circleMarker(\\n\",\n       \"                [30.2819, 109.4689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c26f2c7223c6725126f2cd8a350b368 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3da396092309fd05cb752c6c98b2f47 = $(`&lt;div id=&quot;html_c3da396092309fd05cb752c6c98b2f47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4689             latitude:30.2819             PM2_5:41.53792135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c26f2c7223c6725126f2cd8a350b368.setContent(html_c3da396092309fd05cb752c6c98b2f47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fecee1eb4c5bbac8f20b9417a48fc73.bindPopup(popup_0c26f2c7223c6725126f2cd8a350b368)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bb9dc23277033da28b7532085130e9b = L.circleMarker(\\n\",\n       \"                [28.5819, 112.3744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51863bc1fde470a84fc7400dc151e99c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2315e4a656bd13a1623849f51155bc28 = $(`&lt;div id=&quot;html_2315e4a656bd13a1623849f51155bc28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3744             latitude:28.5819             PM2_5:32.59357542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51863bc1fde470a84fc7400dc151e99c.setContent(html_2315e4a656bd13a1623849f51155bc28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bb9dc23277033da28b7532085130e9b.bindPopup(popup_51863bc1fde470a84fc7400dc151e99c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb13f43cae54487ca21562c9ae9d5239 = L.circleMarker(\\n\",\n       \"                [24.7121, 108.2134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_767106e6843836ad03a4e5ceca9f3061 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_234d549d343dcbd3ee114796aab6aa8e = $(`&lt;div id=&quot;html_234d549d343dcbd3ee114796aab6aa8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.2134             latitude:24.7121             PM2_5:28.12883436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_767106e6843836ad03a4e5ceca9f3061.setContent(html_234d549d343dcbd3ee114796aab6aa8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb13f43cae54487ca21562c9ae9d5239.bindPopup(popup_767106e6843836ad03a4e5ceca9f3061)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fa2e351aa9a0f218e20b6c9708f0947 = L.circleMarker(\\n\",\n       \"                [43.768, 87.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74e5ea230b08b32f1b8c914b5bd987be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d423f77056043dc790fc7d43f68928f9 = $(`&lt;div id=&quot;html_d423f77056043dc790fc7d43f68928f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6046             latitude:43.768             PM2_5:53.62608696             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74e5ea230b08b32f1b8c914b5bd987be.setContent(html_d423f77056043dc790fc7d43f68928f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fa2e351aa9a0f218e20b6c9708f0947.bindPopup(popup_74e5ea230b08b32f1b8c914b5bd987be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83d321d79af583b2ec21faa16b83a913 = L.circleMarker(\\n\",\n       \"                [32.9444, 117.3575],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47a367dbc17721b323e156ceaf0d6158 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7740810ca2eb9dbba15661045300ba5 = $(`&lt;div id=&quot;html_b7740810ca2eb9dbba15661045300ba5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3575             latitude:32.9444             PM2_5:63.05042017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47a367dbc17721b323e156ceaf0d6158.setContent(html_b7740810ca2eb9dbba15661045300ba5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83d321d79af583b2ec21faa16b83a913.bindPopup(popup_47a367dbc17721b323e156ceaf0d6158)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08123734423fb25fa72d255e4d2d53ca = L.circleMarker(\\n\",\n       \"                [23.08, 114.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b2193de4d58e0c21262aadffc337fd8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_940ba4bf64ebd1dbb09b300a2695bead = $(`&lt;div id=&quot;html_940ba4bf64ebd1dbb09b300a2695bead&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4053             latitude:23.08             PM2_5:28.84733894             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b2193de4d58e0c21262aadffc337fd8.setContent(html_940ba4bf64ebd1dbb09b300a2695bead);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08123734423fb25fa72d255e4d2d53ca.bindPopup(popup_8b2193de4d58e0c21262aadffc337fd8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00326266fc22fbd34999a2ae2ffc7b9e = L.circleMarker(\\n\",\n       \"                [23.2783, 113.568],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b030a98218734a5a86d903f9a1ed3a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca73e304e52248fd219ce952a38f3f7b = $(`&lt;div id=&quot;html_ca73e304e52248fd219ce952a38f3f7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.568             latitude:23.2783             PM2_5:28.38128492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b030a98218734a5a86d903f9a1ed3a7.setContent(html_ca73e304e52248fd219ce952a38f3f7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00326266fc22fbd34999a2ae2ffc7b9e.bindPopup(popup_5b030a98218734a5a86d903f9a1ed3a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62b35771867bf077e9ed998bbc38b563 = L.circleMarker(\\n\",\n       \"                [24.9624, 102.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_363c358ecadb6bd19600e13548914fee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12a051b7770235b8bc757d2d94c6664f = $(`&lt;div id=&quot;html_12a051b7770235b8bc757d2d94c6664f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.625             latitude:24.9624             PM2_5:26.83903134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_363c358ecadb6bd19600e13548914fee.setContent(html_12a051b7770235b8bc757d2d94c6664f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62b35771867bf077e9ed998bbc38b563.bindPopup(popup_363c358ecadb6bd19600e13548914fee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc9da8b68288ea7a4c6325d67960ede5 = L.circleMarker(\\n\",\n       \"                [32.6028, 116.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73cf812b74a5a21c44f566c10cc6fd63 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_821c765ef952cf1b790c05cee6effc3b = $(`&lt;div id=&quot;html_821c765ef952cf1b790c05cee6effc3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8556             latitude:32.6028             PM2_5:56.07520891             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73cf812b74a5a21c44f566c10cc6fd63.setContent(html_821c765ef952cf1b790c05cee6effc3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc9da8b68288ea7a4c6325d67960ede5.bindPopup(popup_73cf812b74a5a21c44f566c10cc6fd63)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9d5df638a8a9ec356d0148e29f9c15a = L.circleMarker(\\n\",\n       \"                [34.3708, 107.1586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_959a00988b142817ca95e76440ffbad9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3415a49d41aae4ef76a57d62c0259f57 = $(`&lt;div id=&quot;html_3415a49d41aae4ef76a57d62c0259f57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1586             latitude:34.3708             PM2_5:43.64899713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_959a00988b142817ca95e76440ffbad9.setContent(html_3415a49d41aae4ef76a57d62c0259f57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9d5df638a8a9ec356d0148e29f9c15a.bindPopup(popup_959a00988b142817ca95e76440ffbad9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2954c529d14ea640eee4be9bf5b8ae04 = L.circleMarker(\\n\",\n       \"                [45.61, 126.615],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30b27e62b0407f1c82d02a9ad8e66cc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c56405a3d11808e8d348147037ca2d96 = $(`&lt;div id=&quot;html_c56405a3d11808e8d348147037ca2d96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.615             latitude:45.61             PM2_5:34.97091413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30b27e62b0407f1c82d02a9ad8e66cc4.setContent(html_c56405a3d11808e8d348147037ca2d96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2954c529d14ea640eee4be9bf5b8ae04.bindPopup(popup_30b27e62b0407f1c82d02a9ad8e66cc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_500c57fb628e91589222891aeced3e74 = L.circleMarker(\\n\",\n       \"                [40.1194, 124.3678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_700863f7b13a654473b9c55680d752ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57fe427067ec38504a436cbf30cb17a3 = $(`&lt;div id=&quot;html_57fe427067ec38504a436cbf30cb17a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3678             latitude:40.1194             PM2_5:22.3557423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_700863f7b13a654473b9c55680d752ba.setContent(html_57fe427067ec38504a436cbf30cb17a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_500c57fb628e91589222891aeced3e74.bindPopup(popup_700863f7b13a654473b9c55680d752ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15be199738d5bf18b7ddaa325b6a8190 = L.circleMarker(\\n\",\n       \"                [41.0228, 123.1289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_650ca679fa3bf465604764cc3fcd7ec8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51657b660f9e849dbd1489fc6d8327ae = $(`&lt;div id=&quot;html_51657b660f9e849dbd1489fc6d8327ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1289             latitude:41.0228             PM2_5:27.61384615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_650ca679fa3bf465604764cc3fcd7ec8.setContent(html_51657b660f9e849dbd1489fc6d8327ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15be199738d5bf18b7ddaa325b6a8190.bindPopup(popup_650ca679fa3bf465604764cc3fcd7ec8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d9a44e87a23d8253ba68242023cd70d = L.circleMarker(\\n\",\n       \"                [31.238, 121.4],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ba54be2ace083a70bc745958775f238 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2b45d87d29354db73f7e0b93d2bfd85 = $(`&lt;div id=&quot;html_e2b45d87d29354db73f7e0b93d2bfd85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.4             latitude:31.238             PM2_5:40.8079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ba54be2ace083a70bc745958775f238.setContent(html_e2b45d87d29354db73f7e0b93d2bfd85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d9a44e87a23d8253ba68242023cd70d.bindPopup(popup_1ba54be2ace083a70bc745958775f238)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5308084ec87778219c2f7a06fb939a9e = L.circleMarker(\\n\",\n       \"                [30.2456, 120.127],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_baf42ad9b5a9433ec2ed55246cdb0b19 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9297bb14eb703eedc8bd2ebd77ac2757 = $(`&lt;div id=&quot;html_9297bb14eb703eedc8bd2ebd77ac2757&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.127             latitude:30.2456             PM2_5:39.34916201             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_baf42ad9b5a9433ec2ed55246cdb0b19.setContent(html_9297bb14eb703eedc8bd2ebd77ac2757);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5308084ec87778219c2f7a06fb939a9e.bindPopup(popup_baf42ad9b5a9433ec2ed55246cdb0b19)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae0f7ab3873d2b205509de887b2bdbb9 = L.circleMarker(\\n\",\n       \"                [38.5061, 102.1708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31585abf3e8a432e2f165a3811229148 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78019f98c04d3673dec4d3e5043cacda = $(`&lt;div id=&quot;html_78019f98c04d3673dec4d3e5043cacda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1708             latitude:38.5061             PM2_5:24.38687151             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31585abf3e8a432e2f165a3811229148.setContent(html_78019f98c04d3673dec4d3e5043cacda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae0f7ab3873d2b205509de887b2bdbb9.bindPopup(popup_31585abf3e8a432e2f165a3811229148)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a79591a602dd4094bebe91908e125e0 = L.circleMarker(\\n\",\n       \"                [36.7339, 119.0841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3bf01941069b327ef39f6fe81937984 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a3001d04bfd3ee4ff04b6abae1553b7 = $(`&lt;div id=&quot;html_2a3001d04bfd3ee4ff04b6abae1553b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0841             latitude:36.7339             PM2_5:55.09861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3bf01941069b327ef39f6fe81937984.setContent(html_2a3001d04bfd3ee4ff04b6abae1553b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a79591a602dd4094bebe91908e125e0.bindPopup(popup_a3bf01941069b327ef39f6fe81937984)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f17a8f670f151c92d1dd3038300b8b6f = L.circleMarker(\\n\",\n       \"                [32.2786, 118.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d7dc4c09a37673265197fc5f5af004cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0c70b523c8b77af1a8c7140ec793f81 = $(`&lt;div id=&quot;html_e0c70b523c8b77af1a8c7140ec793f81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3244             latitude:32.2786             PM2_5:52.09888579             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d7dc4c09a37673265197fc5f5af004cb.setContent(html_e0c70b523c8b77af1a8c7140ec793f81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f17a8f670f151c92d1dd3038300b8b6f.bindPopup(popup_d7dc4c09a37673265197fc5f5af004cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a760fe098248bd0f984502d1f5ab0423 = L.circleMarker(\\n\",\n       \"                [33.8399, 115.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44faa2a5e12ef95edd2f57d8299bd827 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_002bacbd5dbf245c68de0d1e95a1743c = $(`&lt;div id=&quot;html_002bacbd5dbf245c68de0d1e95a1743c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8067             latitude:33.8399             PM2_5:53.26123596             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44faa2a5e12ef95edd2f57d8299bd827.setContent(html_002bacbd5dbf245c68de0d1e95a1743c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a760fe098248bd0f984502d1f5ab0423.bindPopup(popup_44faa2a5e12ef95edd2f57d8299bd827)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e981c5e41bef5f7c639634ce7c2d3d3 = L.circleMarker(\\n\",\n       \"                [30.0475, 101.9603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de72def61b5796a1380c2cf3e4a2fcf5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e0a8a21150600f1f7bea308ec40d89f = $(`&lt;div id=&quot;html_2e0a8a21150600f1f7bea308ec40d89f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9603             latitude:30.0475             PM2_5:15.21648045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de72def61b5796a1380c2cf3e4a2fcf5.setContent(html_2e0a8a21150600f1f7bea308ec40d89f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e981c5e41bef5f7c639634ce7c2d3d3.bindPopup(popup_de72def61b5796a1380c2cf3e4a2fcf5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71b82b9ea1811fe74221386f5824d1d0 = L.circleMarker(\\n\",\n       \"                [37.9097, 114.3541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2306e471bce3244a3536ea47b80784d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f62eb256af4baca1662ac2e094247e57 = $(`&lt;div id=&quot;html_f62eb256af4baca1662ac2e094247e57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3541             latitude:37.9097             PM2_5:52.41044776             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2306e471bce3244a3536ea47b80784d.setContent(html_f62eb256af4baca1662ac2e094247e57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71b82b9ea1811fe74221386f5824d1d0.bindPopup(popup_a2306e471bce3244a3536ea47b80784d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66798f66d23c00f1022acbda8d2efaa6 = L.circleMarker(\\n\",\n       \"                [24.6967, 108.1009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_889450548d7bd5f15cd855a38e5d4a46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d175677260239547b72972faa6f032b3 = $(`&lt;div id=&quot;html_d175677260239547b72972faa6f032b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.1009             latitude:24.6967             PM2_5:32.43905817             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_889450548d7bd5f15cd855a38e5d4a46.setContent(html_d175677260239547b72972faa6f032b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66798f66d23c00f1022acbda8d2efaa6.bindPopup(popup_889450548d7bd5f15cd855a38e5d4a46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88325119393abaff29c4ecc042fdbdcf = L.circleMarker(\\n\",\n       \"                [23.6706, 116.6447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9fb8bf70e86eca9318cd036595adca2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9cd437822f92577aca8d804b52a3604e = $(`&lt;div id=&quot;html_9cd437822f92577aca8d804b52a3604e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6447             latitude:23.6706             PM2_5:26.14225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9fb8bf70e86eca9318cd036595adca2.setContent(html_9cd437822f92577aca8d804b52a3604e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88325119393abaff29c4ecc042fdbdcf.bindPopup(popup_d9fb8bf70e86eca9318cd036595adca2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_499291b687eddd4626a4f3ec591a4846 = L.circleMarker(\\n\",\n       \"                [33.0323, 107.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82cb8170d352f4b45200fcb37a823109 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c7e3eb2bb7756ef204bc3d53ec3ae7b = $(`&lt;div id=&quot;html_0c7e3eb2bb7756ef204bc3d53ec3ae7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.007             latitude:33.0323             PM2_5:47.88611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82cb8170d352f4b45200fcb37a823109.setContent(html_0c7e3eb2bb7756ef204bc3d53ec3ae7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_499291b687eddd4626a4f3ec591a4846.bindPopup(popup_82cb8170d352f4b45200fcb37a823109)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f64bd73b1032963e0f8ff82d1e53dfbe = L.circleMarker(\\n\",\n       \"                [25.442, 119.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7f8bf6e6acd2383a51e9e66900d5e9a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c65c0b076f413e8fdf603ddda114ba5 = $(`&lt;div id=&quot;html_6c65c0b076f413e8fdf603ddda114ba5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0156             latitude:25.442             PM2_5:28.97338936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7f8bf6e6acd2383a51e9e66900d5e9a.setContent(html_6c65c0b076f413e8fdf603ddda114ba5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f64bd73b1032963e0f8ff82d1e53dfbe.bindPopup(popup_c7f8bf6e6acd2383a51e9e66900d5e9a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad225b3b03ad62adbd2925f1cb3e80f0 = L.circleMarker(\\n\",\n       \"                [38.5247, 102.1878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75d554894740e371fe733931eaa11a23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da6b3f62816e35f25bcf89d9d66e33d0 = $(`&lt;div id=&quot;html_da6b3f62816e35f25bcf89d9d66e33d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1878             latitude:38.5247             PM2_5:33.28028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75d554894740e371fe733931eaa11a23.setContent(html_da6b3f62816e35f25bcf89d9d66e33d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad225b3b03ad62adbd2925f1cb3e80f0.bindPopup(popup_75d554894740e371fe733931eaa11a23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47a34fc3f36151e8072d72ceb67f7524 = L.circleMarker(\\n\",\n       \"                [22.8561, 108.316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_240212802ada3fc13d687e4e2d1387ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9901b8f168ed66f3440113ce01594b1 = $(`&lt;div id=&quot;html_d9901b8f168ed66f3440113ce01594b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.316             latitude:22.8561             PM2_5:33.86731844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_240212802ada3fc13d687e4e2d1387ad.setContent(html_d9901b8f168ed66f3440113ce01594b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47a34fc3f36151e8072d72ceb67f7524.bindPopup(popup_240212802ada3fc13d687e4e2d1387ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10cab7be45fb18d089d051ad83ad20c3 = L.circleMarker(\\n\",\n       \"                [31.656, 120.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f47e7f42e64aff59b7d96b32974038ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b24907e0dbea2b0c860c4d645ffd806d = $(`&lt;div id=&quot;html_b24907e0dbea2b0c860c4d645ffd806d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.734             latitude:31.656             PM2_5:43.63128492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f47e7f42e64aff59b7d96b32974038ef.setContent(html_b24907e0dbea2b0c860c4d645ffd806d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10cab7be45fb18d089d051ad83ad20c3.bindPopup(popup_f47e7f42e64aff59b7d96b32974038ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b8ab01ba451f7018d0797f6c4b82aeb = L.circleMarker(\\n\",\n       \"                [29.36028, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_790c2e532c041555572e036d832b6646 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac3ef64f220c43d5e1f20e924996febe = $(`&lt;div id=&quot;html_ac3ef64f220c43d5e1f20e924996febe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:29.36028             PM2_5:54.58543417             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_790c2e532c041555572e036d832b6646.setContent(html_ac3ef64f220c43d5e1f20e924996febe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b8ab01ba451f7018d0797f6c4b82aeb.bindPopup(popup_790c2e532c041555572e036d832b6646)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11ca102958a09dad96d0309fc7582898 = L.circleMarker(\\n\",\n       \"                [22.7833, 108.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_507110aba29d873a98f92bc21d93e2fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5f3a838adff82216e2da4b82e696132 = $(`&lt;div id=&quot;html_e5f3a838adff82216e2da4b82e696132&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.244             latitude:22.7833             PM2_5:36.84195402             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_507110aba29d873a98f92bc21d93e2fa.setContent(html_e5f3a838adff82216e2da4b82e696132);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11ca102958a09dad96d0309fc7582898.bindPopup(popup_507110aba29d873a98f92bc21d93e2fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8df6ea1782c32f1eb9c7f500bb8e3f6c = L.circleMarker(\\n\",\n       \"                [36.3083, 120.1964],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04d97188838fb4749569103bee248c2b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ec4baebce60f3621bb5d020ad0c8f56 = $(`&lt;div id=&quot;html_7ec4baebce60f3621bb5d020ad0c8f56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1964             latitude:36.3083             PM2_5:41.015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04d97188838fb4749569103bee248c2b.setContent(html_7ec4baebce60f3621bb5d020ad0c8f56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8df6ea1782c32f1eb9c7f500bb8e3f6c.bindPopup(popup_04d97188838fb4749569103bee248c2b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12c0235c472fd3a91f33a5de75107dff = L.circleMarker(\\n\",\n       \"                [41.8828, 123.9169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6bb4fc54c4d8fb27fe5500dbf18a493c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e38884f845c412addcd592cd9fda735 = $(`&lt;div id=&quot;html_4e38884f845c412addcd592cd9fda735&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9169             latitude:41.8828             PM2_5:34.99301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6bb4fc54c4d8fb27fe5500dbf18a493c.setContent(html_4e38884f845c412addcd592cd9fda735);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12c0235c472fd3a91f33a5de75107dff.bindPopup(popup_6bb4fc54c4d8fb27fe5500dbf18a493c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d53e682cc9a526fa09e1c87cc7195711 = L.circleMarker(\\n\",\n       \"                [41.8472, 123.428],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c47c7e02535591d782c003e904fcc16 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_692326edb01e4bd7724ed53c64ded9c0 = $(`&lt;div id=&quot;html_692326edb01e4bd7724ed53c64ded9c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.428             latitude:41.8472             PM2_5:31.03651685             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c47c7e02535591d782c003e904fcc16.setContent(html_692326edb01e4bd7724ed53c64ded9c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d53e682cc9a526fa09e1c87cc7195711.bindPopup(popup_2c47c7e02535591d782c003e904fcc16)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27d0cbebe40de6ec61655ab47a482246 = L.circleMarker(\\n\",\n       \"                [27.8381, 113.143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed790c284dc3d3411fa595844b0b58ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_909eabecd32621ea3f31288a245beb39 = $(`&lt;div id=&quot;html_909eabecd32621ea3f31288a245beb39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.143             latitude:27.8381             PM2_5:41.82670455             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed790c284dc3d3411fa595844b0b58ec.setContent(html_909eabecd32621ea3f31288a245beb39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27d0cbebe40de6ec61655ab47a482246.bindPopup(popup_ed790c284dc3d3411fa595844b0b58ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4854e24ff670b30f0f206d5440e67f57 = L.circleMarker(\\n\",\n       \"                [43.8667, 125.417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_585f5cb33e6b3ca5a80f58b207cd8928 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd4427bd0eb453d09f407d3656d66812 = $(`&lt;div id=&quot;html_dd4427bd0eb453d09f407d3656d66812&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.417             latitude:43.8667             PM2_5:34.31728045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_585f5cb33e6b3ca5a80f58b207cd8928.setContent(html_dd4427bd0eb453d09f407d3656d66812);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4854e24ff670b30f0f206d5440e67f57.bindPopup(popup_585f5cb33e6b3ca5a80f58b207cd8928)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_02601714031f536e3f746d5931f65a3f = L.circleMarker(\\n\",\n       \"                [45.7258, 126.646],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b375889076a4cec06da5ea2a44ba0cc5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a56382af3abc4ae03c8600fa478b64ec = $(`&lt;div id=&quot;html_a56382af3abc4ae03c8600fa478b64ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.646             latitude:45.7258             PM2_5:37.67694805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b375889076a4cec06da5ea2a44ba0cc5.setContent(html_a56382af3abc4ae03c8600fa478b64ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_02601714031f536e3f746d5931f65a3f.bindPopup(popup_b375889076a4cec06da5ea2a44ba0cc5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59d22f502b6badeace9b1bed89f36101 = L.circleMarker(\\n\",\n       \"                [26.6272, 118.1756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f5a1ecae7649e9d5ff695a9a10e5c8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5faaa2e71f5bfd99ca4dcd0540eceb3 = $(`&lt;div id=&quot;html_e5faaa2e71f5bfd99ca4dcd0540eceb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1756             latitude:26.6272             PM2_5:22.71927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f5a1ecae7649e9d5ff695a9a10e5c8e.setContent(html_e5faaa2e71f5bfd99ca4dcd0540eceb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59d22f502b6badeace9b1bed89f36101.bindPopup(popup_0f5a1ecae7649e9d5ff695a9a10e5c8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1873b8c1fc03bdeb14fe7481268cdb14 = L.circleMarker(\\n\",\n       \"                [27.9883, 116.3553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d27ae39a568277aa602feb53e5da192d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_28363aa3005745f28ceaba865f70dcbe = $(`&lt;div id=&quot;html_28363aa3005745f28ceaba865f70dcbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3553             latitude:27.9883             PM2_5:44.83333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d27ae39a568277aa602feb53e5da192d.setContent(html_28363aa3005745f28ceaba865f70dcbe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1873b8c1fc03bdeb14fe7481268cdb14.bindPopup(popup_d27ae39a568277aa602feb53e5da192d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6354da7982e383902d32ecaf44cee46 = L.circleMarker(\\n\",\n       \"                [39.9522, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea45b0c04484cf1ce76cde7db62e759c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5aed2609c5a213812ab3855a57a25616 = $(`&lt;div id=&quot;html_5aed2609c5a213812ab3855a57a25616&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.9522             PM2_5:54.89859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea45b0c04484cf1ce76cde7db62e759c.setContent(html_5aed2609c5a213812ab3855a57a25616);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6354da7982e383902d32ecaf44cee46.bindPopup(popup_ea45b0c04484cf1ce76cde7db62e759c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b32642d6d133a40b1af673195b788adf = L.circleMarker(\\n\",\n       \"                [38.843, 105.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74e28ff3b9b291b04e23a15f2f6e7ec5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cec4f2a0ec110221c8d8504202e42e6b = $(`&lt;div id=&quot;html_cec4f2a0ec110221c8d8504202e42e6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6975             latitude:38.843             PM2_5:33.15181058             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74e28ff3b9b291b04e23a15f2f6e7ec5.setContent(html_cec4f2a0ec110221c8d8504202e42e6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b32642d6d133a40b1af673195b788adf.bindPopup(popup_74e28ff3b9b291b04e23a15f2f6e7ec5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00c2f7ad7a3d7550a34b75ee0fdee399 = L.circleMarker(\\n\",\n       \"                [22.8172, 114.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26c0b2d09065e759fbbddc3c0ba7d144 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df9bb8db265463c58b21e9c3dfb267ee = $(`&lt;div id=&quot;html_df9bb8db265463c58b21e9c3dfb267ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3244             latitude:22.8172             PM2_5:24.58848315             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26c0b2d09065e759fbbddc3c0ba7d144.setContent(html_df9bb8db265463c58b21e9c3dfb267ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00c2f7ad7a3d7550a34b75ee0fdee399.bindPopup(popup_26c0b2d09065e759fbbddc3c0ba7d144)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cec2c48fe591155934a7fe5a97bce1c8 = L.circleMarker(\\n\",\n       \"                [39.9419, 119.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0211c890a9ef1ea696581bdb1adfa413 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee1f6487e200e3c5a91ce965a5fb0a7e = $(`&lt;div id=&quot;html_ee1f6487e200e3c5a91ce965a5fb0a7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5369             latitude:39.9419             PM2_5:36.63826816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0211c890a9ef1ea696581bdb1adfa413.setContent(html_ee1f6487e200e3c5a91ce965a5fb0a7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cec2c48fe591155934a7fe5a97bce1c8.bindPopup(popup_0211c890a9ef1ea696581bdb1adfa413)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1c6c3869e525d8866486f54983683d8 = L.circleMarker(\\n\",\n       \"                [24.4175, 111.5269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79399e0934f5241644f36a70b76fc2c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31509c2289a86d7fa72e4f6e719701ce = $(`&lt;div id=&quot;html_31509c2289a86d7fa72e4f6e719701ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5269             latitude:24.4175             PM2_5:44.24504249             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79399e0934f5241644f36a70b76fc2c6.setContent(html_31509c2289a86d7fa72e4f6e719701ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1c6c3869e525d8866486f54983683d8.bindPopup(popup_79399e0934f5241644f36a70b76fc2c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec242cb104746d46eac7e9dcfd98aaf4 = L.circleMarker(\\n\",\n       \"                [29.7128, 118.3057],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8b595a12e6127451c7766da0d265822 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b5f4dda95dec5599dfe3ad0b93b4401 = $(`&lt;div id=&quot;html_4b5f4dda95dec5599dfe3ad0b93b4401&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3057             latitude:29.7128             PM2_5:26.5280112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8b595a12e6127451c7766da0d265822.setContent(html_4b5f4dda95dec5599dfe3ad0b93b4401);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec242cb104746d46eac7e9dcfd98aaf4.bindPopup(popup_c8b595a12e6127451c7766da0d265822)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5e985068e7a624f0b6f38c47118b9da = L.circleMarker(\\n\",\n       \"                [26.57098, 101.68912],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd09e76cdc8531f72d47f7178c94607f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7390c44d65034970459b3938a5928179 = $(`&lt;div id=&quot;html_7390c44d65034970459b3938a5928179&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.68912             latitude:26.57098             PM2_5:34.35014006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd09e76cdc8531f72d47f7178c94607f.setContent(html_7390c44d65034970459b3938a5928179);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5e985068e7a624f0b6f38c47118b9da.bindPopup(popup_dd09e76cdc8531f72d47f7178c94607f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_816a2b23f4631ef7cf8ab26d03a50d8e = L.circleMarker(\\n\",\n       \"                [36.087, 114.358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9c7069692c20f30c40697e68810db1e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9436b7293f0f2772ac11b090723d7fe = $(`&lt;div id=&quot;html_f9436b7293f0f2772ac11b090723d7fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.358             latitude:36.087             PM2_5:68.93837535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9c7069692c20f30c40697e68810db1e.setContent(html_f9436b7293f0f2772ac11b090723d7fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_816a2b23f4631ef7cf8ab26d03a50d8e.bindPopup(popup_d9c7069692c20f30c40697e68810db1e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5510f373c6841532f07d53a94dba7fef = L.circleMarker(\\n\",\n       \"                [39.3673, 112.4279],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65c930f52471cd2385ad84dacf8aacb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2957b0bcc89fa9767076bebf868d4275 = $(`&lt;div id=&quot;html_2957b0bcc89fa9767076bebf868d4275&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4279             latitude:39.3673             PM2_5:35.7987988             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65c930f52471cd2385ad84dacf8aacb2.setContent(html_2957b0bcc89fa9767076bebf868d4275);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5510f373c6841532f07d53a94dba7fef.bindPopup(popup_65c930f52471cd2385ad84dacf8aacb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_02d2883f285bfcbde572cdbfa61719eb = L.circleMarker(\\n\",\n       \"                [37.4658, 118.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6950c293697483a7e1331247dbee504c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ceaab8af95abe50b64c81777833c8374 = $(`&lt;div id=&quot;html_ceaab8af95abe50b64c81777833c8374&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5019             latitude:37.4658             PM2_5:50.71587744             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6950c293697483a7e1331247dbee504c.setContent(html_ceaab8af95abe50b64c81777833c8374);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_02d2883f285bfcbde572cdbfa61719eb.bindPopup(popup_6950c293697483a7e1331247dbee504c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36105543336d5798220cc335e51f7e42 = L.circleMarker(\\n\",\n       \"                [23.7233, 114.6892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1dbd7b42f329a3a8940cb6b32b66a39b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_627ab641269a82072f1595983a181c16 = $(`&lt;div id=&quot;html_627ab641269a82072f1595983a181c16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6892             latitude:23.7233             PM2_5:26.02240896             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1dbd7b42f329a3a8940cb6b32b66a39b.setContent(html_627ab641269a82072f1595983a181c16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36105543336d5798220cc335e51f7e42.bindPopup(popup_1dbd7b42f329a3a8940cb6b32b66a39b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0093876f7e77ecfdd0d1bdf51dc9df2 = L.circleMarker(\\n\",\n       \"                [28.4569, 118.0058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ea4aefc28ff6b08d40432773fdc68bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e3afc9fc0ed969a5022488a6677f516 = $(`&lt;div id=&quot;html_9e3afc9fc0ed969a5022488a6677f516&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0058             latitude:28.4569             PM2_5:36.31908832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ea4aefc28ff6b08d40432773fdc68bd.setContent(html_9e3afc9fc0ed969a5022488a6677f516);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0093876f7e77ecfdd0d1bdf51dc9df2.bindPopup(popup_3ea4aefc28ff6b08d40432773fdc68bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f4b00dac64868794fa514a4e0885c45 = L.circleMarker(\\n\",\n       \"                [30.2099, 115.0264],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1015d7dca2485bf3bebcf576b82afdf0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d883526478a478a3fae1df99fe0900e1 = $(`&lt;div id=&quot;html_d883526478a478a3fae1df99fe0900e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0264             latitude:30.2099             PM2_5:54.80532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1015d7dca2485bf3bebcf576b82afdf0.setContent(html_d883526478a478a3fae1df99fe0900e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f4b00dac64868794fa514a4e0885c45.bindPopup(popup_1015d7dca2485bf3bebcf576b82afdf0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fa6dc51198816978ed22c59227248ab = L.circleMarker(\\n\",\n       \"                [33.737, 113.182],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49c6fb379afebf3762c4a3575672087b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01bcab6119875c3f0bb7c0faee4c9f66 = $(`&lt;div id=&quot;html_01bcab6119875c3f0bb7c0faee4c9f66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.182             latitude:33.737             PM2_5:60.34225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49c6fb379afebf3762c4a3575672087b.setContent(html_01bcab6119875c3f0bb7c0faee4c9f66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fa6dc51198816978ed22c59227248ab.bindPopup(popup_49c6fb379afebf3762c4a3575672087b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e1f173a7616629f73bf7ab747ca928c = L.circleMarker(\\n\",\n       \"                [22.735, 108.328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_931f3540b2428c4512b2d7f17babe765 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_122b08705991a5b7ee5a9165d0836e69 = $(`&lt;div id=&quot;html_122b08705991a5b7ee5a9165d0836e69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.328             latitude:22.735             PM2_5:34.70655271             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_931f3540b2428c4512b2d7f17babe765.setContent(html_122b08705991a5b7ee5a9165d0836e69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e1f173a7616629f73bf7ab747ca928c.bindPopup(popup_931f3540b2428c4512b2d7f17babe765)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11a471155327e0a655e804979e8ebd00 = L.circleMarker(\\n\",\n       \"                [35.0147, 110.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5897b6a8a34973aab2fa9f95844ea336 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_934ff52797c5604f0069f0b8148ff321 = $(`&lt;div id=&quot;html_934ff52797c5604f0069f0b8148ff321&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9956             latitude:35.0147             PM2_5:73.66899441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5897b6a8a34973aab2fa9f95844ea336.setContent(html_934ff52797c5604f0069f0b8148ff321);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11a471155327e0a655e804979e8ebd00.bindPopup(popup_5897b6a8a34973aab2fa9f95844ea336)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb3e54dc350a26fd723b2ca2884fa75d = L.circleMarker(\\n\",\n       \"                [38.9194, 117.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b787944c9a05e62506bf98f78bf814ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92d9368f078e68deaace8c443a430892 = $(`&lt;div id=&quot;html_92d9368f078e68deaace8c443a430892&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.157             latitude:38.9194             PM2_5:57.08866279             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b787944c9a05e62506bf98f78bf814ac.setContent(html_92d9368f078e68deaace8c443a430892);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb3e54dc350a26fd723b2ca2884fa75d.bindPopup(popup_b787944c9a05e62506bf98f78bf814ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de5ff874b85b65e3f41b659075b0a208 = L.circleMarker(\\n\",\n       \"                [27.8036, 114.3442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e27b0a56ead51b0423fefa6466efa65e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0fbd9f2dcf73cbfebb03c40a2179c9f = $(`&lt;div id=&quot;html_b0fbd9f2dcf73cbfebb03c40a2179c9f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3442             latitude:27.8036             PM2_5:49.8198324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e27b0a56ead51b0423fefa6466efa65e.setContent(html_b0fbd9f2dcf73cbfebb03c40a2179c9f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de5ff874b85b65e3f41b659075b0a208.bindPopup(popup_e27b0a56ead51b0423fefa6466efa65e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86c9887fe1db575f59ab736ec6d117b9 = L.circleMarker(\\n\",\n       \"                [23.8982, 100.0782],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c57b998ce1e21fa05d016eec2d550069 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bbebb0c72cf70e953b56594f8745b3ec = $(`&lt;div id=&quot;html_bbebb0c72cf70e953b56594f8745b3ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0782             latitude:23.8982             PM2_5:26.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c57b998ce1e21fa05d016eec2d550069.setContent(html_bbebb0c72cf70e953b56594f8745b3ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86c9887fe1db575f59ab736ec6d117b9.bindPopup(popup_c57b998ce1e21fa05d016eec2d550069)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fec3a873e71e4b437f34764cc539c3e = L.circleMarker(\\n\",\n       \"                [30.8244, 120.07],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29a65dc06ce09419b1735aea6c3b325e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fe524893a983eec85ae15a9510d1243 = $(`&lt;div id=&quot;html_2fe524893a983eec85ae15a9510d1243&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.07             latitude:30.8244             PM2_5:38.02668539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29a65dc06ce09419b1735aea6c3b325e.setContent(html_2fe524893a983eec85ae15a9510d1243);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fec3a873e71e4b437f34764cc539c3e.bindPopup(popup_29a65dc06ce09419b1735aea6c3b325e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4447a6ab1fdf028df6ab17a57789293f = L.circleMarker(\\n\",\n       \"                [22.2294, 113.495],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70e6139f9d1599f4ebbfdcde5d2a8331 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7379d33bca3c656867ae4b35569a3789 = $(`&lt;div id=&quot;html_7379d33bca3c656867ae4b35569a3789&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.495             latitude:22.2294             PM2_5:28.53813559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70e6139f9d1599f4ebbfdcde5d2a8331.setContent(html_7379d33bca3c656867ae4b35569a3789);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4447a6ab1fdf028df6ab17a57789293f.bindPopup(popup_70e6139f9d1599f4ebbfdcde5d2a8331)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a41014c33de6294a5ccd6c7027625c53 = L.circleMarker(\\n\",\n       \"                [22.4137, 107.3476],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce6717df89263d90a59e5eb546d901d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73c555fe3ac5d497ed78f749612f07fa = $(`&lt;div id=&quot;html_73c555fe3ac5d497ed78f749612f07fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3476             latitude:22.4137             PM2_5:28.27130682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce6717df89263d90a59e5eb546d901d4.setContent(html_73c555fe3ac5d497ed78f749612f07fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a41014c33de6294a5ccd6c7027625c53.bindPopup(popup_ce6717df89263d90a59e5eb546d901d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_542ccf8187b0b4e1ca48ee6af4b58af7 = L.circleMarker(\\n\",\n       \"                [36.1942, 117.1436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de8f0474699875b23b44f351fe7f8471 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e085dbd4f98c266ed7ac187944ed9121 = $(`&lt;div id=&quot;html_e085dbd4f98c266ed7ac187944ed9121&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1436             latitude:36.1942             PM2_5:50.27793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de8f0474699875b23b44f351fe7f8471.setContent(html_e085dbd4f98c266ed7ac187944ed9121);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_542ccf8187b0b4e1ca48ee6af4b58af7.bindPopup(popup_de8f0474699875b23b44f351fe7f8471)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7310e42418b34a3bcbc6d5b0bb46d432 = L.circleMarker(\\n\",\n       \"                [30.7946, 120.744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2787706ef8f34fdef2406067f6d08ba0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0bfdbb0be4b81328d6e2dce246857f3a = $(`&lt;div id=&quot;html_0bfdbb0be4b81328d6e2dce246857f3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.744             latitude:30.7946             PM2_5:41.25             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2787706ef8f34fdef2406067f6d08ba0.setContent(html_0bfdbb0be4b81328d6e2dce246857f3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7310e42418b34a3bcbc6d5b0bb46d432.bindPopup(popup_2787706ef8f34fdef2406067f6d08ba0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc1430440251418028158e91f410fe60 = L.circleMarker(\\n\",\n       \"                [38.2839, 109.7289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3658b112b2e4cfaa43475ce1475b59e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d81a48f48cad6328f1d8441e37770e0 = $(`&lt;div id=&quot;html_0d81a48f48cad6328f1d8441e37770e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7289             latitude:38.2839             PM2_5:30.51983003             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3658b112b2e4cfaa43475ce1475b59e.setContent(html_0d81a48f48cad6328f1d8441e37770e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc1430440251418028158e91f410fe60.bindPopup(popup_a3658b112b2e4cfaa43475ce1475b59e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8bdc472219e10e3a075762c6707a4f31 = L.circleMarker(\\n\",\n       \"                [29.5953, 105.0331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c48482b328f6342ab8956eb91c3fdf58 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6101f77b1cf62469cf5bf31d6a2295d3 = $(`&lt;div id=&quot;html_6101f77b1cf62469cf5bf31d6a2295d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0331             latitude:29.5953             PM2_5:34.3258427             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c48482b328f6342ab8956eb91c3fdf58.setContent(html_6101f77b1cf62469cf5bf31d6a2295d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8bdc472219e10e3a075762c6707a4f31.bindPopup(popup_c48482b328f6342ab8956eb91c3fdf58)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21230af79409ddfc8f06afd1f32f3988 = L.circleMarker(\\n\",\n       \"                [32.9673, 117.3536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c096723aedcb2f0fa6576d3dd9f82e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9fc21155b80b14e3efbe7d9b85882b0c = $(`&lt;div id=&quot;html_9fc21155b80b14e3efbe7d9b85882b0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3536             latitude:32.9673             PM2_5:49.43333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c096723aedcb2f0fa6576d3dd9f82e5.setContent(html_9fc21155b80b14e3efbe7d9b85882b0c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21230af79409ddfc8f06afd1f32f3988.bindPopup(popup_2c096723aedcb2f0fa6576d3dd9f82e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8de34a67417fa00ee675864809c2c50e = L.circleMarker(\\n\",\n       \"                [27.9164, 112.4876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba37115136412475817a866356e8051e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17f131a6583cd25a0315284acfb34408 = $(`&lt;div id=&quot;html_17f131a6583cd25a0315284acfb34408&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4876             latitude:27.9164             PM2_5:41.67039106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba37115136412475817a866356e8051e.setContent(html_17f131a6583cd25a0315284acfb34408);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8de34a67417fa00ee675864809c2c50e.bindPopup(popup_ba37115136412475817a866356e8051e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6a2e8057e16928701b091782ea3b201 = L.circleMarker(\\n\",\n       \"                [29.9972, 101.9533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17bc5ed7f71a2fd51e607d56f0d8a084 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9eb267068dcf4f6172cce3ff7c22359 = $(`&lt;div id=&quot;html_f9eb267068dcf4f6172cce3ff7c22359&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9533             latitude:29.9972             PM2_5:18.25892857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17bc5ed7f71a2fd51e607d56f0d8a084.setContent(html_f9eb267068dcf4f6172cce3ff7c22359);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6a2e8057e16928701b091782ea3b201.bindPopup(popup_17bc5ed7f71a2fd51e607d56f0d8a084)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5319c1bb3f1d58bc1a5f92d8b294346 = L.circleMarker(\\n\",\n       \"                [30.1506, 104.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a62b7f83a02eb999d4efcaf1f683f1e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_700584b9a16c95e5c80669ebbe1dbd4d = $(`&lt;div id=&quot;html_700584b9a16c95e5c80669ebbe1dbd4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6356             latitude:30.1506             PM2_5:37.29501385             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a62b7f83a02eb999d4efcaf1f683f1e1.setContent(html_700584b9a16c95e5c80669ebbe1dbd4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5319c1bb3f1d58bc1a5f92d8b294346.bindPopup(popup_a62b7f83a02eb999d4efcaf1f683f1e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61e704091a3c2e63dc3f48536e7ab1bf = L.circleMarker(\\n\",\n       \"                [43.84, 125.2786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d9305f5d7e9ebf41a2b7df591f91391 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_295464b8404a445c9cbbb352cf405b89 = $(`&lt;div id=&quot;html_295464b8404a445c9cbbb352cf405b89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.2786             latitude:43.84             PM2_5:32.66760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d9305f5d7e9ebf41a2b7df591f91391.setContent(html_295464b8404a445c9cbbb352cf405b89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61e704091a3c2e63dc3f48536e7ab1bf.bindPopup(popup_9d9305f5d7e9ebf41a2b7df591f91391)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ddb31d81619751e9ecb6ca8bccb3401 = L.circleMarker(\\n\",\n       \"                [36.1542, 113.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e66fe16e1daa44b3921e07e05755b2fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67e6b772f1114525feb75d54025b7ce4 = $(`&lt;div id=&quot;html_67e6b772f1114525feb75d54025b7ce4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1097             latitude:36.1542             PM2_5:67.22486034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e66fe16e1daa44b3921e07e05755b2fd.setContent(html_67e6b772f1114525feb75d54025b7ce4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ddb31d81619751e9ecb6ca8bccb3401.bindPopup(popup_e66fe16e1daa44b3921e07e05755b2fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70ba9c721d065ad6ee13bb0287c5e8b9 = L.circleMarker(\\n\",\n       \"                [32.4535, 105.8945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2067b073c6ede79e8ec0542e63eadd14 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_544a29c2a401af9dd302bf12116668b1 = $(`&lt;div id=&quot;html_544a29c2a401af9dd302bf12116668b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8945             latitude:32.4535             PM2_5:21.4622905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2067b073c6ede79e8ec0542e63eadd14.setContent(html_544a29c2a401af9dd302bf12116668b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70ba9c721d065ad6ee13bb0287c5e8b9.bindPopup(popup_2067b073c6ede79e8ec0542e63eadd14)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee33bd34a918d085f2a0276b99945279 = L.circleMarker(\\n\",\n       \"                [24.8978, 118.5972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84c092c095d22aeffcc9b5651a835a92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d72053f086ed1718ebc7131f6861a78 = $(`&lt;div id=&quot;html_5d72053f086ed1718ebc7131f6861a78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5972             latitude:24.8978             PM2_5:26.7605042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84c092c095d22aeffcc9b5651a835a92.setContent(html_5d72053f086ed1718ebc7131f6861a78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee33bd34a918d085f2a0276b99945279.bindPopup(popup_84c092c095d22aeffcc9b5651a835a92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7682764db7b18ea8088a79df1f5b0198 = L.circleMarker(\\n\",\n       \"                [29.6219, 106.65],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07d9f66715bae091837c8a857ae782ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4428a939c5ccf3bda439e6a73ff2bfd = $(`&lt;div id=&quot;html_f4428a939c5ccf3bda439e6a73ff2bfd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.65             latitude:29.6219             PM2_5:29.91086351             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07d9f66715bae091837c8a857ae782ff.setContent(html_f4428a939c5ccf3bda439e6a73ff2bfd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7682764db7b18ea8088a79df1f5b0198.bindPopup(popup_07d9f66715bae091837c8a857ae782ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba8bcbe07a15c0da1ceafb64f6cc27e1 = L.circleMarker(\\n\",\n       \"                [41.1636, 80.2828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a407c91a725d49689649c4ee7a183b86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10accaba607b8a859b245bdac218f842 = $(`&lt;div id=&quot;html_10accaba607b8a859b245bdac218f842&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2828             latitude:41.1636             PM2_5:69.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a407c91a725d49689649c4ee7a183b86.setContent(html_10accaba607b8a859b245bdac218f842);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba8bcbe07a15c0da1ceafb64f6cc27e1.bindPopup(popup_a407c91a725d49689649c4ee7a183b86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff05b86199dbadfad1021f5f30b52f27 = L.circleMarker(\\n\",\n       \"                [34.3617, 108.7233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58fa1c717c045d33ef8f06399ab5806d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1977e6f4434f9035aabe8bb62792cd6e = $(`&lt;div id=&quot;html_1977e6f4434f9035aabe8bb62792cd6e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7233             latitude:34.3617             PM2_5:67.50702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58fa1c717c045d33ef8f06399ab5806d.setContent(html_1977e6f4434f9035aabe8bb62792cd6e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff05b86199dbadfad1021f5f30b52f27.bindPopup(popup_58fa1c717c045d33ef8f06399ab5806d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2291bb13bf4c2eb45211005121dfcdff = L.circleMarker(\\n\",\n       \"                [41.9086, 123.5953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4925153278002c9fdf11e219325d2ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c59622ea23a370276b97b48c88b4f22a = $(`&lt;div id=&quot;html_c59622ea23a370276b97b48c88b4f22a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.5953             latitude:41.9086             PM2_5:30.00423729             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4925153278002c9fdf11e219325d2ab.setContent(html_c59622ea23a370276b97b48c88b4f22a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2291bb13bf4c2eb45211005121dfcdff.bindPopup(popup_d4925153278002c9fdf11e219325d2ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70712e1c5cd9f5c894020578c1cd2978 = L.circleMarker(\\n\",\n       \"                [29.2786, 117.1983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eeeb89865bbd3f26696cd76d64a9f869 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f63a938183abb889f04fa69d7a62e2b9 = $(`&lt;div id=&quot;html_f63a938183abb889f04fa69d7a62e2b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1983             latitude:29.2786             PM2_5:31.27871148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eeeb89865bbd3f26696cd76d64a9f869.setContent(html_f63a938183abb889f04fa69d7a62e2b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70712e1c5cd9f5c894020578c1cd2978.bindPopup(popup_eeeb89865bbd3f26696cd76d64a9f869)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4238a9e98e353fdf950cf3f36668f86d = L.circleMarker(\\n\",\n       \"                [25.3167, 110.4144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0a74292526fb3e6b64a32bd6f15e53c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6ab291831ef806fac157f6cf1445b5d = $(`&lt;div id=&quot;html_b6ab291831ef806fac157f6cf1445b5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4144             latitude:25.3167             PM2_5:33.86694678             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0a74292526fb3e6b64a32bd6f15e53c.setContent(html_b6ab291831ef806fac157f6cf1445b5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4238a9e98e353fdf950cf3f36668f86d.bindPopup(popup_c0a74292526fb3e6b64a32bd6f15e53c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60f48f6f2766f91ccb122f7839afabbb = L.circleMarker(\\n\",\n       \"                [40.8115, 114.8814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a31af6d96c58b671610afb1c59f35f87 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_179afbaaf107adfff17307c7343b67ce = $(`&lt;div id=&quot;html_179afbaaf107adfff17307c7343b67ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8814             latitude:40.8115             PM2_5:30.67267267             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a31af6d96c58b671610afb1c59f35f87.setContent(html_179afbaaf107adfff17307c7343b67ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60f48f6f2766f91ccb122f7839afabbb.bindPopup(popup_a31af6d96c58b671610afb1c59f35f87)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71bb530b91f7f085a932be87b1917d04 = L.circleMarker(\\n\",\n       \"                [33.3261, 105.0822],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a34b7b9397349e45a9214a0ac1ba8b71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5bb484e27ae1f1169dd6cf06a99781ec = $(`&lt;div id=&quot;html_5bb484e27ae1f1169dd6cf06a99781ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0822             latitude:33.3261             PM2_5:20.0625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a34b7b9397349e45a9214a0ac1ba8b71.setContent(html_5bb484e27ae1f1169dd6cf06a99781ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71bb530b91f7f085a932be87b1917d04.bindPopup(popup_a34b7b9397349e45a9214a0ac1ba8b71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01834268ffd7712546b1106aea3685a7 = L.circleMarker(\\n\",\n       \"                [31.2472, 120.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f396269f6d2adee857f96066aea47b46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_808ee4e181b62e46d8216f13d62b46c2 = $(`&lt;div id=&quot;html_808ee4e181b62e46d8216f13d62b46c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.561             latitude:31.2472             PM2_5:40.37883008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f396269f6d2adee857f96066aea47b46.setContent(html_808ee4e181b62e46d8216f13d62b46c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01834268ffd7712546b1106aea3685a7.bindPopup(popup_f396269f6d2adee857f96066aea47b46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b88d84f767952ddcca4cc59ad659c670 = L.circleMarker(\\n\",\n       \"                [41.1442, 123.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b0cbbb30b3e8d44a8a27d90ff2dd430 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0e224172381b704f5a930e67ffad660 = $(`&lt;div id=&quot;html_d0e224172381b704f5a930e67ffad660&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0485             latitude:41.1442             PM2_5:33.3189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b0cbbb30b3e8d44a8a27d90ff2dd430.setContent(html_d0e224172381b704f5a930e67ffad660);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b88d84f767952ddcca4cc59ad659c670.bindPopup(popup_2b0cbbb30b3e8d44a8a27d90ff2dd430)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76e653177490d0d3b21d547513870fa8 = L.circleMarker(\\n\",\n       \"                [33.1842, 106.9893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7e66cda3c51cc0286f53d79e0242fbc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5f80fb6d1f03469dc390505ebf943d2 = $(`&lt;div id=&quot;html_e5f80fb6d1f03469dc390505ebf943d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9893             latitude:33.1842             PM2_5:41.890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7e66cda3c51cc0286f53d79e0242fbc.setContent(html_e5f80fb6d1f03469dc390505ebf943d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76e653177490d0d3b21d547513870fa8.bindPopup(popup_e7e66cda3c51cc0286f53d79e0242fbc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e698ae957e35b10c0627eefef05b5186 = L.circleMarker(\\n\",\n       \"                [26.8919, 112.6006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1532b378c7e493192b7b7153a46679f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f8c2d4fee7f7d401d103f781e71c3cfc = $(`&lt;div id=&quot;html_f8c2d4fee7f7d401d103f781e71c3cfc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6006             latitude:26.8919             PM2_5:42.72299169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1532b378c7e493192b7b7153a46679f2.setContent(html_f8c2d4fee7f7d401d103f781e71c3cfc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e698ae957e35b10c0627eefef05b5186.bindPopup(popup_1532b378c7e493192b7b7153a46679f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8681b91628a3c9f11211680c24c3aaf5 = L.circleMarker(\\n\",\n       \"                [39.643, 118.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8c868f1b3a5d8782426dde6aff98b49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_588bccb355114cace4294816ed00f415 = $(`&lt;div id=&quot;html_588bccb355114cace4294816ed00f415&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.144             latitude:39.643             PM2_5:45.89027778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8c868f1b3a5d8782426dde6aff98b49.setContent(html_588bccb355114cace4294816ed00f415);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8681b91628a3c9f11211680c24c3aaf5.bindPopup(popup_e8c868f1b3a5d8782426dde6aff98b49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14dc11bb8af94680e854fe5bda231e06 = L.circleMarker(\\n\",\n       \"                [31.2703, 120.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f91e9d9eaf92433cacaff19de25309b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_920835b1ea758bd8b0966fde1d4f9412 = $(`&lt;div id=&quot;html_920835b1ea758bd8b0966fde1d4f9412&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.613             latitude:31.2703             PM2_5:39.79469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f91e9d9eaf92433cacaff19de25309b7.setContent(html_920835b1ea758bd8b0966fde1d4f9412);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14dc11bb8af94680e854fe5bda231e06.bindPopup(popup_f91e9d9eaf92433cacaff19de25309b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46bea92fafb8ceb1db3da83d99bb6388 = L.circleMarker(\\n\",\n       \"                [36.6377, 117.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b03866c578018aa4a3b75717d928c1cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9a9df0ff35f3a4263ba3271f81e9462 = $(`&lt;div id=&quot;html_d9a9df0ff35f3a4263ba3271f81e9462&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9544             latitude:36.6377             PM2_5:50.94507042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b03866c578018aa4a3b75717d928c1cf.setContent(html_d9a9df0ff35f3a4263ba3271f81e9462);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46bea92fafb8ceb1db3da83d99bb6388.bindPopup(popup_b03866c578018aa4a3b75717d928c1cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb4d76bca9f7141d2ff3c2df2ea2bf7d = L.circleMarker(\\n\",\n       \"                [30.4551, 106.6388],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57cbf57a9c7430061cc40eae3f9d6cce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_becd44ab74aefb7bc3ccfdceacda39e6 = $(`&lt;div id=&quot;html_becd44ab74aefb7bc3ccfdceacda39e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6388             latitude:30.4551             PM2_5:30.78888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57cbf57a9c7430061cc40eae3f9d6cce.setContent(html_becd44ab74aefb7bc3ccfdceacda39e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb4d76bca9f7141d2ff3c2df2ea2bf7d.bindPopup(popup_57cbf57a9c7430061cc40eae3f9d6cce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a78e8131ebdf66963ba34d1596beafb = L.circleMarker(\\n\",\n       \"                [31.8934, 102.2402],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07f5bf8931f79939962ada321e2fc142 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dcd6e647f1467dbc8727d6900f516caa = $(`&lt;div id=&quot;html_dcd6e647f1467dbc8727d6900f516caa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2402             latitude:31.8934             PM2_5:3.856338028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07f5bf8931f79939962ada321e2fc142.setContent(html_dcd6e647f1467dbc8727d6900f516caa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a78e8131ebdf66963ba34d1596beafb.bindPopup(popup_07f5bf8931f79939962ada321e2fc142)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3dda564f6dc3a416523f33b1019341f8 = L.circleMarker(\\n\",\n       \"                [38.8394, 117.457],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eaa4b090493d41cac98e9191c54aea9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86092128c65e84c16a65ef6fe5869d61 = $(`&lt;div id=&quot;html_86092128c65e84c16a65ef6fe5869d61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.457             latitude:38.8394             PM2_5:48.95238095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eaa4b090493d41cac98e9191c54aea9c.setContent(html_86092128c65e84c16a65ef6fe5869d61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3dda564f6dc3a416523f33b1019341f8.bindPopup(popup_eaa4b090493d41cac98e9191c54aea9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a6c25f1fc34293dd73d23ce5367d1e4 = L.circleMarker(\\n\",\n       \"                [32.0144, 118.777],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_959fd1f1396b457c73415fff4a0686fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3254d2ab29da972ee36301366bcebaf0 = $(`&lt;div id=&quot;html_3254d2ab29da972ee36301366bcebaf0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.777             latitude:32.0144             PM2_5:39.8255814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_959fd1f1396b457c73415fff4a0686fe.setContent(html_3254d2ab29da972ee36301366bcebaf0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a6c25f1fc34293dd73d23ce5367d1e4.bindPopup(popup_959fd1f1396b457c73415fff4a0686fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_456dd659bae62dc05db2a03e73abdab8 = L.circleMarker(\\n\",\n       \"                [27.8336, 113.251],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53b19a4926f048de8436bf4a7433b12e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b93f201077abad04db01e0ce9854360 = $(`&lt;div id=&quot;html_6b93f201077abad04db01e0ce9854360&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.251             latitude:27.8336             PM2_5:33.70142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53b19a4926f048de8436bf4a7433b12e.setContent(html_6b93f201077abad04db01e0ce9854360);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_456dd659bae62dc05db2a03e73abdab8.bindPopup(popup_53b19a4926f048de8436bf4a7433b12e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c89f13238ae855702bbec26aa9d206c2 = L.circleMarker(\\n\",\n       \"                [22.8693, 112.844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8366c69b1999357e6d61c55fdd93776 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54222b5d8a319651cdf4dbb3abcb323f = $(`&lt;div id=&quot;html_54222b5d8a319651cdf4dbb3abcb323f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.844             latitude:22.8693             PM2_5:39.67787115             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8366c69b1999357e6d61c55fdd93776.setContent(html_54222b5d8a319651cdf4dbb3abcb323f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c89f13238ae855702bbec26aa9d206c2.bindPopup(popup_d8366c69b1999357e6d61c55fdd93776)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_351736612173e6b66dfe476a8c406aea = L.circleMarker(\\n\",\n       \"                [26.5697, 106.7164],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2cc0c6e61cbda6d9b4f1e60c64340d4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2012effca44c5b4dd74ab91ac22757e0 = $(`&lt;div id=&quot;html_2012effca44c5b4dd74ab91ac22757e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7164             latitude:26.5697             PM2_5:32.42655367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2cc0c6e61cbda6d9b4f1e60c64340d4c.setContent(html_2012effca44c5b4dd74ab91ac22757e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_351736612173e6b66dfe476a8c406aea.bindPopup(popup_2cc0c6e61cbda6d9b4f1e60c64340d4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00d99870e5961b15785f7449b3370050 = L.circleMarker(\\n\",\n       \"                [23.1572, 112.885],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_324145a81a59ec12c10e1d52d3845097 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_452dceffcc48ef53c5158be924e7a7b1 = $(`&lt;div id=&quot;html_452dceffcc48ef53c5158be924e7a7b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.885             latitude:23.1572             PM2_5:38.81534091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_324145a81a59ec12c10e1d52d3845097.setContent(html_452dceffcc48ef53c5158be924e7a7b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00d99870e5961b15785f7449b3370050.bindPopup(popup_324145a81a59ec12c10e1d52d3845097)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_04445e2b9d8f382ab7b9199bc2001cfd = L.circleMarker(\\n\",\n       \"                [30.6197, 114.2836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_682ff19b8acec4e8475826b15c9c547d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1262038d9843f8c5a55be95b1fb62186 = $(`&lt;div id=&quot;html_1262038d9843f8c5a55be95b1fb62186&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2836             latitude:30.6197             PM2_5:48.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_682ff19b8acec4e8475826b15c9c547d.setContent(html_1262038d9843f8c5a55be95b1fb62186);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_04445e2b9d8f382ab7b9199bc2001cfd.bindPopup(popup_682ff19b8acec4e8475826b15c9c547d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ff69393fb04e24acee56667dc5dc56a = L.circleMarker(\\n\",\n       \"                [33.6284, 116.9677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df06fceeaa2c9e230239db0b7d9b994d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dcf5ec084f61f0506b0b66893df1d7e6 = $(`&lt;div id=&quot;html_dcf5ec084f61f0506b0b66893df1d7e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9677             latitude:33.6284             PM2_5:55.42916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df06fceeaa2c9e230239db0b7d9b994d.setContent(html_dcf5ec084f61f0506b0b66893df1d7e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ff69393fb04e24acee56667dc5dc56a.bindPopup(popup_df06fceeaa2c9e230239db0b7d9b994d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0aa9987ffe2345c92ec8f7ca6e48d6f9 = L.circleMarker(\\n\",\n       \"                [22.5908, 114.263],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7afbe57b6b874357b8988170a1e838d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23d4dea3749a7ff290e4267a8925c4cf = $(`&lt;div id=&quot;html_23d4dea3749a7ff290e4267a8925c4cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.263             latitude:22.5908             PM2_5:22.57746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7afbe57b6b874357b8988170a1e838d6.setContent(html_23d4dea3749a7ff290e4267a8925c4cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0aa9987ffe2345c92ec8f7ca6e48d6f9.bindPopup(popup_7afbe57b6b874357b8988170a1e838d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e43a48e095ab9c35a865178b93a7628f = L.circleMarker(\\n\",\n       \"                [41.8336, 123.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa090661da94d8c077092e33c8b7aa30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_432980b58f47a78abb21521d2755bc89 = $(`&lt;div id=&quot;html_432980b58f47a78abb21521d2755bc89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.542             latitude:41.8336             PM2_5:30.66997167             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa090661da94d8c077092e33c8b7aa30.setContent(html_432980b58f47a78abb21521d2755bc89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e43a48e095ab9c35a865178b93a7628f.bindPopup(popup_aa090661da94d8c077092e33c8b7aa30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94658c26d7919265b294d73b05681933 = L.circleMarker(\\n\",\n       \"                [34.3528, 107.3906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b427af369ef4c06f60823bc1078d6ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4940d7084f61a4f66b93b159dfd71cf6 = $(`&lt;div id=&quot;html_4940d7084f61a4f66b93b159dfd71cf6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3906             latitude:34.3528             PM2_5:56.48472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b427af369ef4c06f60823bc1078d6ec.setContent(html_4940d7084f61a4f66b93b159dfd71cf6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94658c26d7919265b294d73b05681933.bindPopup(popup_2b427af369ef4c06f60823bc1078d6ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_173d07f2de455f1b751b6e397bcff5b2 = L.circleMarker(\\n\",\n       \"                [38.817, 106.3394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6cdcdcbd87f02a4735405de1e82ee4e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b7a67b45cabf6fb9a5a3c811d008582 = $(`&lt;div id=&quot;html_2b7a67b45cabf6fb9a5a3c811d008582&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3394             latitude:38.817             PM2_5:45.58882521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6cdcdcbd87f02a4735405de1e82ee4e.setContent(html_2b7a67b45cabf6fb9a5a3c811d008582);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_173d07f2de455f1b751b6e397bcff5b2.bindPopup(popup_d6cdcdcbd87f02a4735405de1e82ee4e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_32beea3ad31aa04c505671c607d1967e = L.circleMarker(\\n\",\n       \"                [37.8561, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad8130396368bd76de9d360618f818e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4cd3480d680154e38ef71f30b349a49c = $(`&lt;div id=&quot;html_4cd3480d680154e38ef71f30b349a49c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:37.8561             PM2_5:58.70972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad8130396368bd76de9d360618f818e6.setContent(html_4cd3480d680154e38ef71f30b349a49c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_32beea3ad31aa04c505671c607d1967e.bindPopup(popup_ad8130396368bd76de9d360618f818e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d202d9dec8abbfb2665c7c4b2f82135 = L.circleMarker(\\n\",\n       \"                [28.6459, 121.273],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_807ce22e37c3970c1352362f9087ad78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7596eddf5fafa31f22c86eb4cb775c0d = $(`&lt;div id=&quot;html_7596eddf5fafa31f22c86eb4cb775c0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.273             latitude:28.6459             PM2_5:28.00724638             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_807ce22e37c3970c1352362f9087ad78.setContent(html_7596eddf5fafa31f22c86eb4cb775c0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d202d9dec8abbfb2665c7c4b2f82135.bindPopup(popup_807ce22e37c3970c1352362f9087ad78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a3648017c988127a758af7bb77bc7d8 = L.circleMarker(\\n\",\n       \"                [30.4576, 106.6303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c316e593d098a142cc4a644c3d6f8e49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50dc4191ff768bda747295e9e525a218 = $(`&lt;div id=&quot;html_50dc4191ff768bda747295e9e525a218&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6303             latitude:30.4576             PM2_5:42.27513966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c316e593d098a142cc4a644c3d6f8e49.setContent(html_50dc4191ff768bda747295e9e525a218);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a3648017c988127a758af7bb77bc7d8.bindPopup(popup_c316e593d098a142cc4a644c3d6f8e49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7da554c6f98cd57eeec6c2aef77ebad3 = L.circleMarker(\\n\",\n       \"                [34.5667, 117.732],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61661abcb00d8b4120b1fbeceabf3a83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e326390e8104798c273866b066e773f = $(`&lt;div id=&quot;html_8e326390e8104798c273866b066e773f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.732             latitude:34.5667             PM2_5:62.16432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61661abcb00d8b4120b1fbeceabf3a83.setContent(html_8e326390e8104798c273866b066e773f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7da554c6f98cd57eeec6c2aef77ebad3.bindPopup(popup_61661abcb00d8b4120b1fbeceabf3a83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_819dc846bb7f866031b5828e8da63168 = L.circleMarker(\\n\",\n       \"                [37.9358, 102.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a388542919d6e2b77760e9728e340d1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4165c73aec3e07b557393573c9c1b71 = $(`&lt;div id=&quot;html_f4165c73aec3e07b557393573c9c1b71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6469             latitude:37.9358             PM2_5:36.28194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a388542919d6e2b77760e9728e340d1d.setContent(html_f4165c73aec3e07b557393573c9c1b71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_819dc846bb7f866031b5828e8da63168.bindPopup(popup_a388542919d6e2b77760e9728e340d1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_887f0528104d93c0ca33484915f55245 = L.circleMarker(\\n\",\n       \"                [31.89708, 121.1518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b78618cb64f4e7788f5cf8897e988695 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_864cc36e1354977e0420dcc9b97a0a23 = $(`&lt;div id=&quot;html_864cc36e1354977e0420dcc9b97a0a23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1518             latitude:31.89708             PM2_5:35.28041543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b78618cb64f4e7788f5cf8897e988695.setContent(html_864cc36e1354977e0420dcc9b97a0a23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_887f0528104d93c0ca33484915f55245.bindPopup(popup_b78618cb64f4e7788f5cf8897e988695)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_671701f6ee67698121de62f884e99afb = L.circleMarker(\\n\",\n       \"                [27.6178, 113.865],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_acd3e3caa271bb8a29df1b080f789efb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7e59f8f386809d4bb1504d9bf29518f = $(`&lt;div id=&quot;html_e7e59f8f386809d4bb1504d9bf29518f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.865             latitude:27.6178             PM2_5:43.54583333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_acd3e3caa271bb8a29df1b080f789efb.setContent(html_e7e59f8f386809d4bb1504d9bf29518f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_671701f6ee67698121de62f884e99afb.bindPopup(popup_acd3e3caa271bb8a29df1b080f789efb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce81949f5e6664bbe976a4c09cc8493d = L.circleMarker(\\n\",\n       \"                [25.0661, 117.0256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c39bbc60abcdc2d7814b6b882771639 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33ca0e0b30d6de7a98512d85d4e81433 = $(`&lt;div id=&quot;html_33ca0e0b30d6de7a98512d85d4e81433&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0256             latitude:25.0661             PM2_5:20.88194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c39bbc60abcdc2d7814b6b882771639.setContent(html_33ca0e0b30d6de7a98512d85d4e81433);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce81949f5e6664bbe976a4c09cc8493d.bindPopup(popup_3c39bbc60abcdc2d7814b6b882771639)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6948450123d96bf1b318ec7a53a1cadf = L.circleMarker(\\n\",\n       \"                [37.0967, 114.4821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84e2bc29952712147ee92bbdabb51eda = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e70e5ab22949eff736e8a98bf0b5f9b = $(`&lt;div id=&quot;html_4e70e5ab22949eff736e8a98bf0b5f9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4821             latitude:37.0967             PM2_5:74.24929972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84e2bc29952712147ee92bbdabb51eda.setContent(html_4e70e5ab22949eff736e8a98bf0b5f9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6948450123d96bf1b318ec7a53a1cadf.bindPopup(popup_84e2bc29952712147ee92bbdabb51eda)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dcc85dd5a34a45c5f2953c27ce83ba3c = L.circleMarker(\\n\",\n       \"                [26.5689, 106.6971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca1be91f7da0aa34a3a8899a98d85fbf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7f1e863899be8b3a5e52a95392bc488 = $(`&lt;div id=&quot;html_d7f1e863899be8b3a5e52a95392bc488&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6971             latitude:26.5689             PM2_5:30.99571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca1be91f7da0aa34a3a8899a98d85fbf.setContent(html_d7f1e863899be8b3a5e52a95392bc488);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dcc85dd5a34a45c5f2953c27ce83ba3c.bindPopup(popup_ca1be91f7da0aa34a3a8899a98d85fbf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46edca3b41f986af91eda333f5245b5c = L.circleMarker(\\n\",\n       \"                [34.5004, 109.5049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76d75b80ba623d4b2d9d2bf8ac2aa4f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a05be1ef762cb59f344388114f5c9f51 = $(`&lt;div id=&quot;html_a05be1ef762cb59f344388114f5c9f51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5049             latitude:34.5004             PM2_5:72.50142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76d75b80ba623d4b2d9d2bf8ac2aa4f4.setContent(html_a05be1ef762cb59f344388114f5c9f51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46edca3b41f986af91eda333f5245b5c.bindPopup(popup_76d75b80ba623d4b2d9d2bf8ac2aa4f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_489c75400bf2ed27b0c384f90f3998d3 = L.circleMarker(\\n\",\n       \"                [30.9447, 118.7581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20d012c65f1b8f9d1ba01523d3acaa3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0450f8b0a906a5d140f8c82af37fbdd = $(`&lt;div id=&quot;html_b0450f8b0a906a5d140f8c82af37fbdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7581             latitude:30.9447             PM2_5:42.49019608             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20d012c65f1b8f9d1ba01523d3acaa3f.setContent(html_b0450f8b0a906a5d140f8c82af37fbdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_489c75400bf2ed27b0c384f90f3998d3.bindPopup(popup_20d012c65f1b8f9d1ba01523d3acaa3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf1884fed6589775b15c01620114f453 = L.circleMarker(\\n\",\n       \"                [30.7636, 106.0642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff48cf928b5b5728d0f8c312f29d2f1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f52a7e449089a9f74bb800b6f0368c0a = $(`&lt;div id=&quot;html_f52a7e449089a9f74bb800b6f0368c0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0642             latitude:30.7636             PM2_5:51.33240997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff48cf928b5b5728d0f8c312f29d2f1f.setContent(html_f52a7e449089a9f74bb800b6f0368c0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf1884fed6589775b15c01620114f453.bindPopup(popup_ff48cf928b5b5728d0f8c312f29d2f1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b44da737379474ef0212706ac122753d = L.circleMarker(\\n\",\n       \"                [25.2178, 110.2869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3637e32544fe9811b234cc56e45c8022 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dccc584675f5e6e2877855d0b8a7f621 = $(`&lt;div id=&quot;html_dccc584675f5e6e2877855d0b8a7f621&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2869             latitude:25.2178             PM2_5:37.9301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3637e32544fe9811b234cc56e45c8022.setContent(html_dccc584675f5e6e2877855d0b8a7f621);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b44da737379474ef0212706ac122753d.bindPopup(popup_3637e32544fe9811b234cc56e45c8022)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce117b41ea787bc5f74321a7ae14b34c = L.circleMarker(\\n\",\n       \"                [23.9011, 106.6103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91236a9a0135a2d4d57732a2346434e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ddbb6f143c0604f97e4c77f2bcf5f60c = $(`&lt;div id=&quot;html_ddbb6f143c0604f97e4c77f2bcf5f60c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6103             latitude:23.9011             PM2_5:39.07282913             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91236a9a0135a2d4d57732a2346434e2.setContent(html_ddbb6f143c0604f97e4c77f2bcf5f60c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce117b41ea787bc5f74321a7ae14b34c.bindPopup(popup_91236a9a0135a2d4d57732a2346434e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9acfe9e58325023362d9e904f760761 = L.circleMarker(\\n\",\n       \"                [38.1398, 114.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d2e13856e8dec6c483f9289c3c519b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e8481b1194c5288aa992acc75c0d1b2 = $(`&lt;div id=&quot;html_6e8481b1194c5288aa992acc75c0d1b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5019             latitude:38.1398             PM2_5:72.54901961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d2e13856e8dec6c483f9289c3c519b7.setContent(html_6e8481b1194c5288aa992acc75c0d1b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9acfe9e58325023362d9e904f760761.bindPopup(popup_3d2e13856e8dec6c483f9289c3c519b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25cf6c475eeee129fae61301ec9114ba = L.circleMarker(\\n\",\n       \"                [31.2036, 121.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d67ed25a3c815e2433b1b30b5c55b04b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a4fee405b9977a4c1260c8e3d6ddb54 = $(`&lt;div id=&quot;html_3a4fee405b9977a4c1260c8e3d6ddb54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.478             latitude:31.2036             PM2_5:43.17563739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d67ed25a3c815e2433b1b30b5c55b04b.setContent(html_3a4fee405b9977a4c1260c8e3d6ddb54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25cf6c475eeee129fae61301ec9114ba.bindPopup(popup_d67ed25a3c815e2433b1b30b5c55b04b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4733c7ad86bbc846d8237d0fb1f2f104 = L.circleMarker(\\n\",\n       \"                [31.882, 120.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afd783a18447596a481a711943f05db2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef95abf6093211b89bea3c47c88adbab = $(`&lt;div id=&quot;html_ef95abf6093211b89bea3c47c88adbab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.55             latitude:31.882             PM2_5:44.14265537             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afd783a18447596a481a711943f05db2.setContent(html_ef95abf6093211b89bea3c47c88adbab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4733c7ad86bbc846d8237d0fb1f2f104.bindPopup(popup_afd783a18447596a481a711943f05db2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd6237e3dcf6a3b2d0564d660cb69f9d = L.circleMarker(\\n\",\n       \"                [40.1461, 124.3933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd6041681b5ec19c744c0ca1cb54c267 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca4ae5ba487487e0de662a471955a3eb = $(`&lt;div id=&quot;html_ca4ae5ba487487e0de662a471955a3eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3933             latitude:40.1461             PM2_5:24.14164306             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd6041681b5ec19c744c0ca1cb54c267.setContent(html_ca4ae5ba487487e0de662a471955a3eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd6237e3dcf6a3b2d0564d660cb69f9d.bindPopup(popup_cd6041681b5ec19c744c0ca1cb54c267)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f294ec53f396b7eacbb7f9a2e92d520 = L.circleMarker(\\n\",\n       \"                [39.6719, 106.8219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0fd590cb8afddd6baefb973e77684358 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6182dcdc40e464d84f219d27b620d0f = $(`&lt;div id=&quot;html_f6182dcdc40e464d84f219d27b620d0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8219             latitude:39.6719             PM2_5:43.65340909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0fd590cb8afddd6baefb973e77684358.setContent(html_f6182dcdc40e464d84f219d27b620d0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f294ec53f396b7eacbb7f9a2e92d520.bindPopup(popup_0fd590cb8afddd6baefb973e77684358)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4cf6d3898b7cbcd275d1453b2ad7a9b7 = L.circleMarker(\\n\",\n       \"                [33.575, 119.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f3b0e9ec6e0f5e0802f415afe3957f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_342618127a4a9917fd8ca8286ebdd95d = $(`&lt;div id=&quot;html_342618127a4a9917fd8ca8286ebdd95d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.007             latitude:33.575             PM2_5:45.62465374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f3b0e9ec6e0f5e0802f415afe3957f4.setContent(html_342618127a4a9917fd8ca8286ebdd95d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4cf6d3898b7cbcd275d1453b2ad7a9b7.bindPopup(popup_8f3b0e9ec6e0f5e0802f415afe3957f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_074042aa95c3bdaf83ac9eb3a9c23fd8 = L.circleMarker(\\n\",\n       \"                [29.5983, 106.296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b4469502b8e5507faf8c00b203d3514 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57a97aba99ee41e30bead49c2d05e7a2 = $(`&lt;div id=&quot;html_57a97aba99ee41e30bead49c2d05e7a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.296             latitude:29.5983             PM2_5:37.21030641             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b4469502b8e5507faf8c00b203d3514.setContent(html_57a97aba99ee41e30bead49c2d05e7a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_074042aa95c3bdaf83ac9eb3a9c23fd8.bindPopup(popup_7b4469502b8e5507faf8c00b203d3514)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b371e830e848c478b6da06b6e8bde6c7 = L.circleMarker(\\n\",\n       \"                [43.7256, 126.6772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f61318d06653b87071df64f735fb06d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4909cc6d56b9cdd10ca689e63592f125 = $(`&lt;div id=&quot;html_4909cc6d56b9cdd10ca689e63592f125&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6772             latitude:43.7256             PM2_5:29.62780899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f61318d06653b87071df64f735fb06d.setContent(html_4909cc6d56b9cdd10ca689e63592f125);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b371e830e848c478b6da06b6e8bde6c7.bindPopup(popup_5f61318d06653b87071df64f735fb06d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16c39688f7d7aa499af27a66262ccf41 = L.circleMarker(\\n\",\n       \"                [45.6033, 84.8861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3125e4807773a28f9ec4349eda83aa5b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e7732313d006f07d8f19f14feef5cde = $(`&lt;div id=&quot;html_3e7732313d006f07d8f19f14feef5cde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8861             latitude:45.6033             PM2_5:24.26825843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3125e4807773a28f9ec4349eda83aa5b.setContent(html_3e7732313d006f07d8f19f14feef5cde);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16c39688f7d7aa499af27a66262ccf41.bindPopup(popup_3125e4807773a28f9ec4349eda83aa5b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_009982d8faf2f57d2889b20a9ec23c8f = L.circleMarker(\\n\",\n       \"                [30.4519, 114.8858],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8aa94c0adeaa2daa682063c241fe203d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b4526caa5b20349dac75042adedc36a = $(`&lt;div id=&quot;html_0b4526caa5b20349dac75042adedc36a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8858             latitude:30.4519             PM2_5:45.08988764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8aa94c0adeaa2daa682063c241fe203d.setContent(html_0b4526caa5b20349dac75042adedc36a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_009982d8faf2f57d2889b20a9ec23c8f.bindPopup(popup_8aa94c0adeaa2daa682063c241fe203d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5d35361fd7e58c08df8d39a672323d9 = L.circleMarker(\\n\",\n       \"                [43.9167, 125.323],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f59b64cf0ad67883666c0a0a2588104b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08be86b6cd770ee80281c458afd012a3 = $(`&lt;div id=&quot;html_08be86b6cd770ee80281c458afd012a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.323             latitude:43.9167             PM2_5:30.47464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f59b64cf0ad67883666c0a0a2588104b.setContent(html_08be86b6cd770ee80281c458afd012a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5d35361fd7e58c08df8d39a672323d9.bindPopup(popup_f59b64cf0ad67883666c0a0a2588104b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfa02b7c9f89288881ec2ee8e98ebc82 = L.circleMarker(\\n\",\n       \"                [36.1855, 113.0844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_353aaec5dfe7a61600877513a30e5729 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91cee7121f00902b899283750a700184 = $(`&lt;div id=&quot;html_91cee7121f00902b899283750a700184&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0844444             latitude:36.1855             PM2_5:72.24509804             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_353aaec5dfe7a61600877513a30e5729.setContent(html_91cee7121f00902b899283750a700184);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfa02b7c9f89288881ec2ee8e98ebc82.bindPopup(popup_353aaec5dfe7a61600877513a30e5729)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf27dd98e1ec6ff82bb7e13a7be0220b = L.circleMarker(\\n\",\n       \"                [35.303, 113.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_288f52106af10ccad5d29fcb69f0bac2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5aaf45a3f70be09e539e2b5262d34c96 = $(`&lt;div id=&quot;html_5aaf45a3f70be09e539e2b5262d34c96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.883             latitude:35.303             PM2_5:53.45658263             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_288f52106af10ccad5d29fcb69f0bac2.setContent(html_5aaf45a3f70be09e539e2b5262d34c96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf27dd98e1ec6ff82bb7e13a7be0220b.bindPopup(popup_288f52106af10ccad5d29fcb69f0bac2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9a6c139c4f6134ebb07b2a662c01fc8 = L.circleMarker(\\n\",\n       \"                [34.7745, 117.5852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cccce0437485a5fc3e4b879b41ab54c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_913cba9e2781242a437583b3bba16e4b = $(`&lt;div id=&quot;html_913cba9e2781242a437583b3bba16e4b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5852             latitude:34.7745             PM2_5:49.32633053             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cccce0437485a5fc3e4b879b41ab54c8.setContent(html_913cba9e2781242a437583b3bba16e4b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9a6c139c4f6134ebb07b2a662c01fc8.bindPopup(popup_cccce0437485a5fc3e4b879b41ab54c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec7338b6fe645964fd123d4eaaaa987d = L.circleMarker(\\n\",\n       \"                [44.561, 129.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46097658367f5329268621b8604d5deb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1232432271ceb278c155f226b541e6c1 = $(`&lt;div id=&quot;html_1232432271ceb278c155f226b541e6c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.61             latitude:44.561             PM2_5:25.8449848             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46097658367f5329268621b8604d5deb.setContent(html_1232432271ceb278c155f226b541e6c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec7338b6fe645964fd123d4eaaaa987d.bindPopup(popup_46097658367f5329268621b8604d5deb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d7a308090cdd6a38d475bdcfeef3025 = L.circleMarker(\\n\",\n       \"                [22.3708, 107.3701],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b963ce877d8db0ef21eba7b72cf0efb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a970cb3ecbd81e1af0b90031458f7c3b = $(`&lt;div id=&quot;html_a970cb3ecbd81e1af0b90031458f7c3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3701             latitude:22.3708             PM2_5:30.14730878             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b963ce877d8db0ef21eba7b72cf0efb.setContent(html_a970cb3ecbd81e1af0b90031458f7c3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d7a308090cdd6a38d475bdcfeef3025.bindPopup(popup_7b963ce877d8db0ef21eba7b72cf0efb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b091ebc310a5d52ecb3dccd9619e5d01 = L.circleMarker(\\n\",\n       \"                [31.381, 120.999],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb15866c0c5d4842fae59d211fd101ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebe80837d63cf77575ead59cb5d8a8b1 = $(`&lt;div id=&quot;html_ebe80837d63cf77575ead59cb5d8a8b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.999             latitude:31.381             PM2_5:37.6265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb15866c0c5d4842fae59d211fd101ab.setContent(html_ebe80837d63cf77575ead59cb5d8a8b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b091ebc310a5d52ecb3dccd9619e5d01.bindPopup(popup_bb15866c0c5d4842fae59d211fd101ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8d01c7c6836ec1db98f7d497e6de3dd = L.circleMarker(\\n\",\n       \"                [27.3125, 105.2864],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bdc8a907ade6e68530b40d10913deb3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e782f3e0de3a3f09976c003f32d31214 = $(`&lt;div id=&quot;html_e782f3e0de3a3f09976c003f32d31214&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.2864             latitude:27.3125             PM2_5:31.51949861             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bdc8a907ade6e68530b40d10913deb3.setContent(html_e782f3e0de3a3f09976c003f32d31214);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8d01c7c6836ec1db98f7d497e6de3dd.bindPopup(popup_7bdc8a907ade6e68530b40d10913deb3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_154f328282766679989b578b0aa5a237 = L.circleMarker(\\n\",\n       \"                [23.4168, 103.386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22dea9cdb65057328136b7a6fbdc551d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9176746de34bf9a024849c5f2801bdc0 = $(`&lt;div id=&quot;html_9176746de34bf9a024849c5f2801bdc0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.386             latitude:23.4168             PM2_5:27.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22dea9cdb65057328136b7a6fbdc551d.setContent(html_9176746de34bf9a024849c5f2801bdc0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_154f328282766679989b578b0aa5a237.bindPopup(popup_22dea9cdb65057328136b7a6fbdc551d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17b8b9bef3b572b81f6e87ad59b46d3f = L.circleMarker(\\n\",\n       \"                [41.1556, 122.0247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_873768a6dc815ea315e2872cfc6da2e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33910aeedf54208db64b162918294b5e = $(`&lt;div id=&quot;html_33910aeedf54208db64b162918294b5e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0247             latitude:41.1556             PM2_5:32.5377095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_873768a6dc815ea315e2872cfc6da2e8.setContent(html_33910aeedf54208db64b162918294b5e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17b8b9bef3b572b81f6e87ad59b46d3f.bindPopup(popup_873768a6dc815ea315e2872cfc6da2e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a2bb811094cec88d2a05ec1ebddb38c = L.circleMarker(\\n\",\n       \"                [37.177, 119.941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_151c7acab951360eb6f687323980a648 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_611649c33c71d0fada8bc7a94bcf0006 = $(`&lt;div id=&quot;html_611649c33c71d0fada8bc7a94bcf0006&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.941             latitude:37.177             PM2_5:28.97706422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_151c7acab951360eb6f687323980a648.setContent(html_611649c33c71d0fada8bc7a94bcf0006);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a2bb811094cec88d2a05ec1ebddb38c.bindPopup(popup_151c7acab951360eb6f687323980a648)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01db1a9e8fb58351fa29f02b6354ac2a = L.circleMarker(\\n\",\n       \"                [27.8014, 114.3806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de9c2debf7cf51620de6c82477848a32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3237ca336e8e84d43069dd887a35d127 = $(`&lt;div id=&quot;html_3237ca336e8e84d43069dd887a35d127&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3806             latitude:27.8014             PM2_5:50.74166667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de9c2debf7cf51620de6c82477848a32.setContent(html_3237ca336e8e84d43069dd887a35d127);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01db1a9e8fb58351fa29f02b6354ac2a.bindPopup(popup_de9c2debf7cf51620de6c82477848a32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_587f77c519236c027e7512fd1250d81c = L.circleMarker(\\n\",\n       \"                [32.6389, 110.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1d3078c6e4dce638a34069e3142793e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86929f2e2a0c1ec4e4cdec09b3220d96 = $(`&lt;div id=&quot;html_86929f2e2a0c1ec4e4cdec09b3220d96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.7258             latitude:32.6389             PM2_5:45.01416431             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1d3078c6e4dce638a34069e3142793e.setContent(html_86929f2e2a0c1ec4e4cdec09b3220d96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_587f77c519236c027e7512fd1250d81c.bindPopup(popup_f1d3078c6e4dce638a34069e3142793e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae7953c6d9bcc248b8ac34a04a3aa4fe = L.circleMarker(\\n\",\n       \"                [24.428, 98.5842],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29a382a7bad606640f6596df37433cca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ccd9500d1c93cf62f0debd2bc2ed42ab = $(`&lt;div id=&quot;html_ccd9500d1c93cf62f0debd2bc2ed42ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5842             latitude:24.428             PM2_5:38.13610315             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29a382a7bad606640f6596df37433cca.setContent(html_ccd9500d1c93cf62f0debd2bc2ed42ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae7953c6d9bcc248b8ac34a04a3aa4fe.bindPopup(popup_29a382a7bad606640f6596df37433cca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ab5196ef7bb81a17e9a602589e5438e = L.circleMarker(\\n\",\n       \"                [25.8333, 114.9322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f12bf9d39a7212d9b0e8e0cd0966e66c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9daaa6c4e40eae41fe8fab7e657a37a6 = $(`&lt;div id=&quot;html_9daaa6c4e40eae41fe8fab7e657a37a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9322             latitude:25.8333             PM2_5:44.84497207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f12bf9d39a7212d9b0e8e0cd0966e66c.setContent(html_9daaa6c4e40eae41fe8fab7e657a37a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ab5196ef7bb81a17e9a602589e5438e.bindPopup(popup_f12bf9d39a7212d9b0e8e0cd0966e66c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6bb8c4af05e3c0ba324905a6d4190337 = L.circleMarker(\\n\",\n       \"                [33.567, 114.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3632d64208da8d4fc843986662193fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_255505b9fa07be04a56f185e548a98b3 = $(`&lt;div id=&quot;html_255505b9fa07be04a56f185e548a98b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.056             latitude:33.567             PM2_5:55.5480226             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3632d64208da8d4fc843986662193fa.setContent(html_255505b9fa07be04a56f185e548a98b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6bb8c4af05e3c0ba324905a6d4190337.bindPopup(popup_d3632d64208da8d4fc843986662193fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8bfe7ee424047259c4bd9856ddfc5bf = L.circleMarker(\\n\",\n       \"                [33.0014, 97.0],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd5afca8198749aa21267f1820e8c1b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_911767e0cd49d8cf4aa3813b49dbfc0f = $(`&lt;div id=&quot;html_911767e0cd49d8cf4aa3813b49dbfc0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.0             latitude:33.0014             PM2_5:17.88095238             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd5afca8198749aa21267f1820e8c1b8.setContent(html_911767e0cd49d8cf4aa3813b49dbfc0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8bfe7ee424047259c4bd9856ddfc5bf.bindPopup(popup_fd5afca8198749aa21267f1820e8c1b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a9eef2988a7db8010ed6d9dd46d9e6e = L.circleMarker(\\n\",\n       \"                [26.2378, 117.6028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb2a065c7454ce4a0ab13af00b0a2d9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15c950d2e1ea550e04fad2895b80920f = $(`&lt;div id=&quot;html_15c950d2e1ea550e04fad2895b80920f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6028             latitude:26.2378             PM2_5:24.41620112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb2a065c7454ce4a0ab13af00b0a2d9d.setContent(html_15c950d2e1ea550e04fad2895b80920f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a9eef2988a7db8010ed6d9dd46d9e6e.bindPopup(popup_eb2a065c7454ce4a0ab13af00b0a2d9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f612c4fd832775f497f453c507b6359b = L.circleMarker(\\n\",\n       \"                [41.7561, 123.535],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d6764e4b20984274eca104323fae959 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_703a167f82e3c7c0ef06e77ea694b03c = $(`&lt;div id=&quot;html_703a167f82e3c7c0ef06e77ea694b03c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.535             latitude:41.7561             PM2_5:38.46111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d6764e4b20984274eca104323fae959.setContent(html_703a167f82e3c7c0ef06e77ea694b03c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f612c4fd832775f497f453c507b6359b.bindPopup(popup_1d6764e4b20984274eca104323fae959)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d5c5702a91c58ca75632fed92a92e86 = L.circleMarker(\\n\",\n       \"                [25.0836, 102.728],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee9ba7df0825f4b3a8d4c87a8f8aa886 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dade92139a5195a28ef2f36ad98c941c = $(`&lt;div id=&quot;html_dade92139a5195a28ef2f36ad98c941c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.728             latitude:25.0836             PM2_5:21.87534626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee9ba7df0825f4b3a8d4c87a8f8aa886.setContent(html_dade92139a5195a28ef2f36ad98c941c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d5c5702a91c58ca75632fed92a92e86.bindPopup(popup_ee9ba7df0825f4b3a8d4c87a8f8aa886)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ab1cb02472bad1515aff79b955f0348 = L.circleMarker(\\n\",\n       \"                [34.3547, 107.1431],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4bf726ec12deda53d46dc67cdb4320f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff4671f326c843a97f521427fcd27321 = $(`&lt;div id=&quot;html_ff4671f326c843a97f521427fcd27321&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1431             latitude:34.3547             PM2_5:50.70172911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4bf726ec12deda53d46dc67cdb4320f3.setContent(html_ff4671f326c843a97f521427fcd27321);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ab1cb02472bad1515aff79b955f0348.bindPopup(popup_4bf726ec12deda53d46dc67cdb4320f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3dd15775c2096adf277828e0f859fedc = L.circleMarker(\\n\",\n       \"                [39.7153, 76.1861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_48b20357208ba91672c19cd1fecb7044 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31f79a914ee3de95d2ed0d6a2a56b617 = $(`&lt;div id=&quot;html_31f79a914ee3de95d2ed0d6a2a56b617&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:76.1861             latitude:39.7153             PM2_5:63.63700565             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_48b20357208ba91672c19cd1fecb7044.setContent(html_31f79a914ee3de95d2ed0d6a2a56b617);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3dd15775c2096adf277828e0f859fedc.bindPopup(popup_48b20357208ba91672c19cd1fecb7044)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9a45e76f2587d129325b2ed9d0281d0 = L.circleMarker(\\n\",\n       \"                [24.9617, 118.6108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_465fe24c4ad36d7359efc2abe0be5a2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37692777cffad37df348348ff16a4364 = $(`&lt;div id=&quot;html_37692777cffad37df348348ff16a4364&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6108             latitude:24.9617             PM2_5:25.4             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_465fe24c4ad36d7359efc2abe0be5a2d.setContent(html_37692777cffad37df348348ff16a4364);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9a45e76f2587d129325b2ed9d0281d0.bindPopup(popup_465fe24c4ad36d7359efc2abe0be5a2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9122ab61fda6cd5f4897334381809232 = L.circleMarker(\\n\",\n       \"                [36.283, 120.008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b8c03bcfc082ed6d4544a0987dfe1b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95c3fc556fb5213d755d58df042a4cfa = $(`&lt;div id=&quot;html_95c3fc556fb5213d755d58df042a4cfa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.008             latitude:36.283             PM2_5:38.38483146             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b8c03bcfc082ed6d4544a0987dfe1b0.setContent(html_95c3fc556fb5213d755d58df042a4cfa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9122ab61fda6cd5f4897334381809232.bindPopup(popup_7b8c03bcfc082ed6d4544a0987dfe1b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7408cc5f40178761ef21d382d0f70c00 = L.circleMarker(\\n\",\n       \"                [22.5811, 113.074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a7c60f9fb771115509b48609e9ec1d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30313794f8fc4938575a0f3d8106463d = $(`&lt;div id=&quot;html_30313794f8fc4938575a0f3d8106463d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.074             latitude:22.5811             PM2_5:35.29722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a7c60f9fb771115509b48609e9ec1d0.setContent(html_30313794f8fc4938575a0f3d8106463d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7408cc5f40178761ef21d382d0f70c00.bindPopup(popup_0a7c60f9fb771115509b48609e9ec1d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5bf66b9f37918e653c6e9d8f185ca19 = L.circleMarker(\\n\",\n       \"                [29.8264, 106.424],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eeb58c43bf7b03876f1db5176fa2c855 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1166a7879dc0fc060b3c74920b8e86dc = $(`&lt;div id=&quot;html_1166a7879dc0fc060b3c74920b8e86dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.424             latitude:29.8264             PM2_5:40.68156425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eeb58c43bf7b03876f1db5176fa2c855.setContent(html_1166a7879dc0fc060b3c74920b8e86dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5bf66b9f37918e653c6e9d8f185ca19.bindPopup(popup_eeb58c43bf7b03876f1db5176fa2c855)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56f5ee0d2a0571bc7d56f72b164e0256 = L.circleMarker(\\n\",\n       \"                [43.8358, 126.5844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c00fa33e70dc0f326938ede374469cd1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e24c83547092a10b4cec138b9067014 = $(`&lt;div id=&quot;html_4e24c83547092a10b4cec138b9067014&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5844             latitude:43.8358             PM2_5:31.67275281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c00fa33e70dc0f326938ede374469cd1.setContent(html_4e24c83547092a10b4cec138b9067014);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56f5ee0d2a0571bc7d56f72b164e0256.bindPopup(popup_c00fa33e70dc0f326938ede374469cd1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96d8a51ed8f09e74e973dfe26d0d2957 = L.circleMarker(\\n\",\n       \"                [29.9919, 120.605],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eaa40b7a12254d4b1cc520a1cd478c89 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9148158c52f26ef5d109d351866f88a = $(`&lt;div id=&quot;html_c9148158c52f26ef5d109d351866f88a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.605             latitude:29.9919             PM2_5:42.86938202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eaa40b7a12254d4b1cc520a1cd478c89.setContent(html_c9148158c52f26ef5d109d351866f88a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96d8a51ed8f09e74e973dfe26d0d2957.bindPopup(popup_eaa40b7a12254d4b1cc520a1cd478c89)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07b64aad68c767d60e781283243e507d = L.circleMarker(\\n\",\n       \"                [44.0114, 87.2997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75901b7b462c5e261e116d6813c270d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dfa456c727c39cd18966e4b94094f32f = $(`&lt;div id=&quot;html_dfa456c727c39cd18966e4b94094f32f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2997             latitude:44.0114             PM2_5:73.18696884             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75901b7b462c5e261e116d6813c270d1.setContent(html_dfa456c727c39cd18966e4b94094f32f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07b64aad68c767d60e781283243e507d.bindPopup(popup_75901b7b462c5e261e116d6813c270d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71ecb55e58e9cad2d9c579a7993c64cc = L.circleMarker(\\n\",\n       \"                [35.5102, 102.0199],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0237ad1ad9bcac57b2f63c95f36eb3cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a819123b28b360263177160a66d399a7 = $(`&lt;div id=&quot;html_a819123b28b360263177160a66d399a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.0199             latitude:35.5102             PM2_5:29.07799443             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0237ad1ad9bcac57b2f63c95f36eb3cd.setContent(html_a819123b28b360263177160a66d399a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71ecb55e58e9cad2d9c579a7993c64cc.bindPopup(popup_0237ad1ad9bcac57b2f63c95f36eb3cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fdd9a7b2e23640e54a159fd8764aef9 = L.circleMarker(\\n\",\n       \"                [31.7133, 118.6439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23ec335d5c6e83e9aa933b5db08c4766 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b639fa6e7eab835c6b07dbc5f225955 = $(`&lt;div id=&quot;html_5b639fa6e7eab835c6b07dbc5f225955&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6439             latitude:31.7133             PM2_5:57.34135977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23ec335d5c6e83e9aa933b5db08c4766.setContent(html_5b639fa6e7eab835c6b07dbc5f225955);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fdd9a7b2e23640e54a159fd8764aef9.bindPopup(popup_23ec335d5c6e83e9aa933b5db08c4766)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_b37148b9adc7f71b52cfc739e945ffec = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_b37148b9adc7f71b52cfc739e945ffec.color = d3.scale.threshold()\\n\",\n       \"              .domain([3.856338028, 4.011243496220441, 4.166148964440882, 4.321054432661323, 4.475959900881763, 4.630865369102205, 4.785770837322645, 4.940676305543086, 5.095581773763527, 5.2504872419839685, 5.405392710204409, 5.5602981784248495, 5.715203646645291, 5.870109114865731, 6.025014583086172, 6.179920051306613, 6.334825519527055, 6.489730987747495, 6.644636455967936, 6.799541924188377, 6.954447392408818, 7.109352860629259, 7.264258328849699, 7.419163797070141, 7.574069265290581, 7.728974733511022, 7.883880201731463, 8.038785669951904, 8.193691138172344, 8.348596606392785, 8.503502074613227, 8.658407542833668, 8.813313011054108, 8.96821847927455, 9.12312394749499, 9.27802941571543, 9.432934883935872, 9.587840352156313, 9.742745820376754, 9.897651288597194, 10.052556756817635, 10.207462225038077, 10.362367693258518, 10.517273161478958, 10.672178629699399, 10.82708409791984, 10.981989566140282, 11.136895034360721, 11.291800502581163, 11.446705970801604, 11.601611439022044, 11.756516907242485, 11.911422375462925, 12.066327843683366, 12.221233311903807, 12.376138780124247, 12.531044248344688, 12.68594971656513, 12.840855184785571, 12.99576065300601, 13.150666121226452, 13.305571589446894, 13.460477057667335, 13.615382525887775, 13.770287994108216, 13.925193462328657, 14.080098930549097, 14.235004398769538, 14.38990986698998, 14.544815335210421, 14.69972080343086, 14.854626271651302, 15.009531739871743, 15.164437208092185, 15.319342676312624, 15.474248144533066, 15.629153612753507, 15.784059080973948, 15.938964549194388, 16.09387001741483, 16.24877548563527, 16.403680953855712, 16.558586422076154, 16.713491890296595, 16.868397358517036, 17.023302826737474, 17.178208294957916, 17.333113763178357, 17.4880192313988, 17.64292469961924, 17.79783016783968, 17.952735636060122, 18.107641104280564, 18.262546572501, 18.417452040721443, 18.572357508941884, 18.727262977162326, 18.882168445382767, 19.03707391360321, 19.19197938182365, 19.346884850044088, 19.50179031826453, 19.65669578648497, 19.811601254705412, 19.96650672292585, 20.12141219114629, 20.276317659366732, 20.431223127587174, 20.586128595807615, 20.741034064028057, 20.895939532248494, 21.050845000468936, 21.205750468689377, 21.36065593690982, 21.51556140513026, 21.6704668733507, 21.825372341571143, 21.98027780979158, 22.135183278012022, 22.290088746232463, 22.444994214452905, 22.599899682673346, 22.754805150893787, 22.90971061911423, 23.06461608733467, 23.219521555555108, 23.37442702377555, 23.52933249199599, 23.684237960216432, 23.839143428436874, 23.994048896657315, 24.148954364877756, 24.303859833098194, 24.458765301318635, 24.613670769539077, 24.768576237759518, 24.92348170597996, 25.0783871742004, 25.233292642420842, 25.388198110641284, 25.54310357886172, 25.698009047082163, 25.852914515302604, 26.007819983523046, 26.162725451743487, 26.31763091996393, 26.47253638818437, 26.627441856404808, 26.78234732462525, 26.93725279284569, 27.092158261066132, 27.247063729286573, 27.401969197507015, 27.556874665727456, 27.711780133947897, 27.866685602168335, 28.021591070388777, 28.176496538609218, 28.33140200682966, 28.4863074750501, 28.641212943270542, 28.796118411490983, 28.95102387971142, 29.105929347931863, 29.260834816152304, 29.415740284372745, 29.570645752593187, 29.725551220813628, 29.88045668903407, 30.03536215725451, 30.19026762547495, 30.34517309369539, 30.50007856191583, 30.654984030136273, 30.809889498356714, 30.964794966577156, 31.119700434797597, 31.274605903018035, 31.429511371238476, 31.584416839458918, 31.73932230767936, 31.8942277758998, 32.04913324412024, 32.20403871234068, 32.358944180561124, 32.513849648781566, 32.66875511700201, 32.82366058522245, 32.97856605344289, 33.13347152166333, 33.28837698988377, 33.443282458104214, 33.59818792632465, 33.75309339454509, 33.90799886276553, 34.06290433098597, 34.217809799206414, 34.372715267426855, 34.5276207356473, 34.68252620386774, 34.83743167208817, 34.992337140308614, 35.147242608529055, 35.302148076749496, 35.45705354496994, 35.61195901319038, 35.76686448141082, 35.92176994963127, 36.0766754178517, 36.231580886072145, 36.386486354292586, 36.54139182251303, 36.69629729073347, 36.85120275895391, 37.00610822717435, 37.16101369539479, 37.315919163615234, 37.470824631835676, 37.62573010005612, 37.78063556827655, 37.93554103649699, 38.090446504717434, 38.245351972937875, 38.40025744115832, 38.55516290937876, 38.7100683775992, 38.86497384581964, 39.01987931404008, 39.174784782260524, 39.329690250480965, 39.48459571870141, 39.63950118692185, 39.79440665514229, 39.94931212336273, 40.104217591583165, 40.259123059803606, 40.41402852802405, 40.56893399624449, 40.72383946446493, 40.87874493268537, 41.03365040090581, 41.188555869126255, 41.343461337346696, 41.49836680556714, 41.65327227378758, 41.80817774200802, 41.96308321022846, 42.1179886784489, 42.272894146669344, 42.42779961488978, 42.58270508311022, 42.73761055133066, 42.8925160195511, 43.047421487771544, 43.202326955991985, 43.35723242421243, 43.51213789243287, 43.66704336065331, 43.82194882887375, 43.97685429709419, 44.131759765314634, 44.286665233535075, 44.441570701755516, 44.59647616997596, 44.75138163819639, 44.90628710641683, 45.061192574637275, 45.216098042857716, 45.37100351107816, 45.5259089792986, 45.68081444751904, 45.83571991573948, 45.99062538395992, 46.145530852180364, 46.300436320400806, 46.45534178862125, 46.61024725684169, 46.76515272506213, 46.92005819328257, 47.074963661503006, 47.22986912972345, 47.38477459794389, 47.53968006616433, 47.69458553438477, 47.84949100260521, 48.004396470825654, 48.159301939046095, 48.31420740726654, 48.46911287548698, 48.62401834370742, 48.77892381192786, 48.9338292801483, 49.08873474836874, 49.243640216589185, 49.39854568480962, 49.55345115303006, 49.7083566212505, 49.86326208947094, 50.018167557691385, 50.173073025911826, 50.32797849413227, 50.48288396235271, 50.63778943057315, 50.79269489879359, 50.94760036701403, 51.102505835234474, 51.257411303454916, 51.41231677167536, 51.5672222398958, 51.72212770811623, 51.877033176336674, 52.031938644557115, 52.18684411277756, 52.341749580998, 52.49665504921844, 52.65156051743888, 52.80646598565932, 52.961371453879764, 53.116276922100205, 53.27118239032065, 53.42608785854109, 53.58099332676153, 53.73589879498197, 53.89080426320241, 54.045709731422846, 54.20061519964329, 54.35552066786373, 54.51042613608417, 54.66533160430461, 54.82023707252505, 54.975142540745495, 55.130048008965936, 55.28495347718638, 55.43985894540682, 55.59476441362726, 55.7496698818477, 55.90457535006814, 56.059480818288584, 56.214386286509026, 56.36929175472946, 56.5241972229499, 56.67910269117034, 56.834008159390784, 56.988913627611225, 57.14381909583167, 57.29872456405211, 57.45363003227255, 57.60853550049299, 57.76344096871343, 57.918346436933874, 58.073251905154315, 58.228157373374756, 58.3830628415952, 58.53796830981564, 58.69287377803607, 58.847779246256515, 59.002684714476956, 59.1575901826974, 59.31249565091784, 59.46740111913828, 59.62230658735872, 59.77721205557916, 59.932117523799604, 60.087022992020046, 60.24192846024049, 60.39683392846093, 60.55173939668137, 60.70664486490181, 60.86155033312225, 61.01645580134269, 61.17136126956313, 61.32626673778357, 61.48117220600401, 61.63607767422445, 61.790983142444894, 61.945888610665335, 62.10079407888578, 62.25569954710622, 62.41060501532666, 62.5655104835471, 62.72041595176754, 62.87532141998798, 63.030226888208425, 63.185132356428866, 63.3400378246493, 63.49494329286974, 63.64984876109018, 63.804754229310625, 63.959659697531066, 64.1145651657515, 64.26947063397195, 64.42437610219238, 64.57928157041283, 64.73418703863327, 64.88909250685371, 65.04399797507415, 65.1989034432946, 65.35380891151503, 65.50871437973548, 65.66361984795591, 65.81852531617635, 65.97343078439678, 66.12833625261723, 66.28324172083767, 66.43814718905811, 66.59305265727855, 66.747958125499, 66.90286359371943, 67.05776906193988, 67.21267453016031, 67.36757999838076, 67.5224854666012, 67.67739093482164, 67.83229640304208, 67.98720187126253, 68.14210733948296, 68.2970128077034, 68.45191827592384, 68.60682374414428, 68.76172921236473, 68.91663468058516, 69.07154014880561, 69.22644561702604, 69.3813510852465, 69.53625655346693, 69.69116202168736, 69.84606748990781, 70.00097295812824, 70.15587842634869, 70.31078389456913, 70.46568936278958, 70.62059483101001, 70.77550029923046, 70.93040576745089, 71.08531123567134, 71.24021670389178, 71.39512217211222, 71.55002764033266, 71.70493310855309, 71.85983857677354, 72.01474404499398, 72.16964951321442, 72.32455498143486, 72.4794604496553, 72.63436591787574, 72.78927138609619, 72.94417685431662, 73.09908232253707, 73.2539877907575, 73.40889325897795, 73.56379872719839, 73.71870419541884, 73.87360966363927, 74.0285151318597, 74.18342060008015, 74.33832606830059, 74.49323153652104, 74.64813700474147, 74.80304247296192, 74.95794794118235, 75.1128534094028, 75.26775887762324, 75.42266434584369, 75.57756981406412, 75.73247528228457, 75.887380750505, 76.04228621872545, 76.19719168694589, 76.35209715516632, 76.50700262338677, 76.6619080916072, 76.81681355982765, 76.97171902804808, 77.12662449626853, 77.28152996448897, 77.43643543270942, 77.59134090092985, 77.7462463691503, 77.90115183737073, 78.05605730559118, 78.21096277381162, 78.36586824203206, 78.5207737102525, 78.67567917847293, 78.83058464669338, 78.98549011491382, 79.14039558313426, 79.2953010513547, 79.45020651957515, 79.60511198779558, 79.76001745601603, 79.91492292423646, 80.06982839245691, 80.22473386067735, 80.3796393288978, 80.53454479711823, 80.68945026533868, 80.84435573355911, 80.99926120177955, 81.15416667])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_b37148b9adc7f71b52cfc739e945ffec.x = d3.scale.linear()\\n\",\n       \"              .domain([3.856338028, 81.15416667])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_b37148b9adc7f71b52cfc739e945ffec.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_b37148b9adc7f71b52cfc739e945ffec.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_b37148b9adc7f71b52cfc739e945ffec.legend.addTo(map_18e5d0728ef32a3258a79ef171fd9ebe);\\n\",\n       \"\\n\",\n       \"    color_map_b37148b9adc7f71b52cfc739e945ffec.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_b37148b9adc7f71b52cfc739e945ffec.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([3.856338028, &#x27;&#x27;, &#x27;&#x27;, 15.451012324299999, &#x27;&#x27;, &#x27;&#x27;, 27.045686620599998, &#x27;&#x27;, &#x27;&#x27;, 38.6403609169, &#x27;&#x27;, &#x27;&#x27;, 50.2350352132, &#x27;&#x27;, &#x27;&#x27;, 61.8297095095, &#x27;&#x27;, &#x27;&#x27;, 73.42438380579999, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_b37148b9adc7f71b52cfc739e945ffec.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_b37148b9adc7f71b52cfc739e945ffec.g = color_map_b37148b9adc7f71b52cfc739e945ffec.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_b37148b9adc7f71b52cfc739e945ffec.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_b37148b9adc7f71b52cfc739e945ffec.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_b37148b9adc7f71b52cfc739e945ffec.x(color_map_b37148b9adc7f71b52cfc739e945ffec.color.domain()[i - 1]) : color_map_b37148b9adc7f71b52cfc739e945ffec.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_b37148b9adc7f71b52cfc739e945ffec.color.domain().length ? color_map_b37148b9adc7f71b52cfc739e945ffec.x(color_map_b37148b9adc7f71b52cfc739e945ffec.color.domain()[i]) : color_map_b37148b9adc7f71b52cfc739e945ffec.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_b37148b9adc7f71b52cfc739e945ffec.g.call(color_map_b37148b9adc7f71b52cfc739e945ffec.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1db1dbac250>\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.display_dataset(name='valid', y_column='PM2_5', colors=[\\n\",\n    \"                           'blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"E378483E2F1E4709AC9385F59C214BE5\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"Estimated Data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {\n    \"id\": \"3658C459578C4B8AA4E2AB30DE319BDD\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_f84db0a1e012e93574f45c9e92b6c046 {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_f84db0a1e012e93574f45c9e92b6c046&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_f84db0a1e012e93574f45c9e92b6c046 = L.map(\\n\",\n       \"                &quot;map_f84db0a1e012e93574f45c9e92b6c046&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [32.8265380322905, 112.76822016089383],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_61c04151d82b4e9285df36be7c570e74 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_61c04151d82b4e9285df36be7c570e74.addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9e39cdd8a8cf4f3d05fe0d6a2c3ec98 = L.circleMarker(\\n\",\n       \"                [30.8388, 106.1087],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18fc56455651f1c3a22c3d16698156d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_185d63f9a3663790a9a820d2c580d45b = $(`&lt;div id=&quot;html_185d63f9a3663790a9a820d2c580d45b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1087             latitude:30.8388             pred_result:67.49626159667969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18fc56455651f1c3a22c3d16698156d4.setContent(html_185d63f9a3663790a9a820d2c580d45b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9e39cdd8a8cf4f3d05fe0d6a2c3ec98.bindPopup(popup_18fc56455651f1c3a22c3d16698156d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24da2899fbb88f6495de020044aea957 = L.circleMarker(\\n\",\n       \"                [36.1758, 117.1081],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47387fe7de4955d776702a0aab8efd20 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_508f8cd35cf0790968026f4fff32c888 = $(`&lt;div id=&quot;html_508f8cd35cf0790968026f4fff32c888&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1081             latitude:36.1758             pred_result:60.13373947143555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47387fe7de4955d776702a0aab8efd20.setContent(html_508f8cd35cf0790968026f4fff32c888);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24da2899fbb88f6495de020044aea957.bindPopup(popup_47387fe7de4955d776702a0aab8efd20)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b7aaec9695ad6d67288a6f8df78f4b6 = L.circleMarker(\\n\",\n       \"                [39.1067, 117.1941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2094c3356b226b437f6a477f34f9eae1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e14c83dade3afc78959ab33dea700a8b = $(`&lt;div id=&quot;html_e14c83dade3afc78959ab33dea700a8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1941             latitude:39.1067             pred_result:64.58076477050781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2094c3356b226b437f6a477f34f9eae1.setContent(html_e14c83dade3afc78959ab33dea700a8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b7aaec9695ad6d67288a6f8df78f4b6.bindPopup(popup_2094c3356b226b437f6a477f34f9eae1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f703378c77122617955649d1bfa6c8b = L.circleMarker(\\n\",\n       \"                [32.1142, 112.1825],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef9c2abc549a02bec3bef579dc74dc6a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f2206311e3aa1516237cd277f5406e4 = $(`&lt;div id=&quot;html_4f2206311e3aa1516237cd277f5406e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1825             latitude:32.1142             pred_result:59.158782958984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef9c2abc549a02bec3bef579dc74dc6a.setContent(html_4f2206311e3aa1516237cd277f5406e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f703378c77122617955649d1bfa6c8b.bindPopup(popup_ef9c2abc549a02bec3bef579dc74dc6a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7fb064f305a1b2b2e9519114029ec145 = L.circleMarker(\\n\",\n       \"                [36.792, 119.952],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_374b05503a11890b693ec6f1a7f9b8fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c788c5e965bfaa55d0168d702b409f0 = $(`&lt;div id=&quot;html_6c788c5e965bfaa55d0168d702b409f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.952             latitude:36.792             pred_result:59.92605209350586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_374b05503a11890b693ec6f1a7f9b8fe.setContent(html_6c788c5e965bfaa55d0168d702b409f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7fb064f305a1b2b2e9519114029ec145.bindPopup(popup_374b05503a11890b693ec6f1a7f9b8fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7dd958af6a1f56b5852bc1ca7b614284 = L.circleMarker(\\n\",\n       \"                [40.6532, 109.8756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5632683d2c61c3009c1c91bf915abcf7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7043700e9f873515d3565aedf08a909 = $(`&lt;div id=&quot;html_c7043700e9f873515d3565aedf08a909&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8756             latitude:40.6532             pred_result:43.33061981201172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5632683d2c61c3009c1c91bf915abcf7.setContent(html_c7043700e9f873515d3565aedf08a909);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7dd958af6a1f56b5852bc1ca7b614284.bindPopup(popup_5632683d2c61c3009c1c91bf915abcf7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_abac3bac89c5435f404e3d3394190ac0 = L.circleMarker(\\n\",\n       \"                [36.0875, 111.5025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bec4ee1eb04ab0dbd34d41170443a7b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f41ee943be6c92c2ea4def2ad6a47508 = $(`&lt;div id=&quot;html_f41ee943be6c92c2ea4def2ad6a47508&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5025             latitude:36.0875             pred_result:57.140167236328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bec4ee1eb04ab0dbd34d41170443a7b.setContent(html_f41ee943be6c92c2ea4def2ad6a47508);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_abac3bac89c5435f404e3d3394190ac0.bindPopup(popup_8bec4ee1eb04ab0dbd34d41170443a7b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22f0369829c441694b9d3b0eca6bfc1d = L.circleMarker(\\n\",\n       \"                [38.8343, 105.6775],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42b753f824f983b965d8c908e6cabd77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_136769faa19158ea7e6955485cc0c451 = $(`&lt;div id=&quot;html_136769faa19158ea7e6955485cc0c451&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6775             latitude:38.8343             pred_result:43.859989166259766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42b753f824f983b965d8c908e6cabd77.setContent(html_136769faa19158ea7e6955485cc0c451);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22f0369829c441694b9d3b0eca6bfc1d.bindPopup(popup_42b753f824f983b965d8c908e6cabd77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7d9e240b49e21abd77ee2b779f8d228 = L.circleMarker(\\n\",\n       \"                [22.7906, 108.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36130540a04925364487ac5aea71843b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4de378c83889f627483965d24e3b643 = $(`&lt;div id=&quot;html_b4de378c83889f627483965d24e3b643&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.439             latitude:22.7906             pred_result:54.85635757446289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36130540a04925364487ac5aea71843b.setContent(html_b4de378c83889f627483965d24e3b643);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7d9e240b49e21abd77ee2b779f8d228.bindPopup(popup_36130540a04925364487ac5aea71843b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a10fe0be2b697f3a5b1f19a0d843053 = L.circleMarker(\\n\",\n       \"                [37.4489, 116.3189],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e55a62d4be79b6724206a3b176484589 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50b78a5ee91548af8fcdff63534dfb98 = $(`&lt;div id=&quot;html_50b78a5ee91548af8fcdff63534dfb98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3189             latitude:37.4489             pred_result:65.75389099121094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e55a62d4be79b6724206a3b176484589.setContent(html_50b78a5ee91548af8fcdff63534dfb98);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a10fe0be2b697f3a5b1f19a0d843053.bindPopup(popup_e55a62d4be79b6724206a3b176484589)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8fe55e1e7c60a6cb5fbf9bca5a5dbdfb = L.circleMarker(\\n\",\n       \"                [38.44139, 106.2275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45fbb0ea86d2cfc716ad5001c891786c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ad8f78cb0570a8d16055d642f27e1f6 = $(`&lt;div id=&quot;html_0ad8f78cb0570a8d16055d642f27e1f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2275             latitude:38.44139             pred_result:51.77779769897461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45fbb0ea86d2cfc716ad5001c891786c.setContent(html_0ad8f78cb0570a8d16055d642f27e1f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8fe55e1e7c60a6cb5fbf9bca5a5dbdfb.bindPopup(popup_45fbb0ea86d2cfc716ad5001c891786c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac490154be8cc0f806b86a561dcd45a5 = L.circleMarker(\\n\",\n       \"                [23.01277778, 113.7944444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94d9a2a1161710602250a78bea8d03f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0548aa65093b7dde435a94c49c1fb12b = $(`&lt;div id=&quot;html_0548aa65093b7dde435a94c49c1fb12b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7944444             latitude:23.01277778             pred_result:52.73288345336914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94d9a2a1161710602250a78bea8d03f3.setContent(html_0548aa65093b7dde435a94c49c1fb12b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac490154be8cc0f806b86a561dcd45a5.bindPopup(popup_94d9a2a1161710602250a78bea8d03f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91dfdbd4c2bc1e2a14db4bb83524e5da = L.circleMarker(\\n\",\n       \"                [42.2725, 118.9572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f3affa0cafbe192a56de93d45fadb97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad54eb9d2fe8a524a5c99c075c705b61 = $(`&lt;div id=&quot;html_ad54eb9d2fe8a524a5c99c075c705b61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9572             latitude:42.2725             pred_result:39.54619598388672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f3affa0cafbe192a56de93d45fadb97.setContent(html_ad54eb9d2fe8a524a5c99c075c705b61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91dfdbd4c2bc1e2a14db4bb83524e5da.bindPopup(popup_0f3affa0cafbe192a56de93d45fadb97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3453c50648beb8c8388c96e4e2efe7da = L.circleMarker(\\n\",\n       \"                [34.7545, 113.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_feca97c601df6cd95cf667463837631d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fa35fc872cf8b49768e42e61a8628ce = $(`&lt;div id=&quot;html_7fa35fc872cf8b49768e42e61a8628ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.681             latitude:34.7545             pred_result:68.23188781738281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_feca97c601df6cd95cf667463837631d.setContent(html_7fa35fc872cf8b49768e42e61a8628ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3453c50648beb8c8388c96e4e2efe7da.bindPopup(popup_feca97c601df6cd95cf667463837631d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d4f8d4ef680604180696b6024352177 = L.circleMarker(\\n\",\n       \"                [31.1278, 97.1804],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ae6d252a4e6bbb393b25e83cf1c36b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_707eb553f0c821e87f024b003eba9d5b = $(`&lt;div id=&quot;html_707eb553f0c821e87f024b003eba9d5b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.1804             latitude:31.1278             pred_result:-11.921180725097656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ae6d252a4e6bbb393b25e83cf1c36b5.setContent(html_707eb553f0c821e87f024b003eba9d5b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d4f8d4ef680604180696b6024352177.bindPopup(popup_8ae6d252a4e6bbb393b25e83cf1c36b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc00e445ecc07ecd71e28646d8180c9e = L.circleMarker(\\n\",\n       \"                [44.3336, 84.8983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a5f8ffb03829b7c187ec1dae4c9c60b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d89c0cca416267e4c0041c65162a379 = $(`&lt;div id=&quot;html_3d89c0cca416267e4c0041c65162a379&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8983             latitude:44.3336             pred_result:39.22495651245117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a5f8ffb03829b7c187ec1dae4c9c60b.setContent(html_3d89c0cca416267e4c0041c65162a379);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc00e445ecc07ecd71e28646d8180c9e.bindPopup(popup_5a5f8ffb03829b7c187ec1dae4c9c60b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca8bcada89c25379b71e1476b3527ae0 = L.circleMarker(\\n\",\n       \"                [36.6739, 117.114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5100a1ad13853f9c31c0e4b80e6038ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e41649e562c532c87a1323c9e2f0ab42 = $(`&lt;div id=&quot;html_e41649e562c532c87a1323c9e2f0ab42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.114             latitude:36.6739             pred_result:60.749752044677734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5100a1ad13853f9c31c0e4b80e6038ac.setContent(html_e41649e562c532c87a1323c9e2f0ab42);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca8bcada89c25379b71e1476b3527ae0.bindPopup(popup_5100a1ad13853f9c31c0e4b80e6038ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03ba26708aeb5e7c4b2145879f9c1ff3 = L.circleMarker(\\n\",\n       \"                [33.965, 118.283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d4a6500e30d6b51977af40557e2e3d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e86eea00f59cddda9ede9df540b1320 = $(`&lt;div id=&quot;html_3e86eea00f59cddda9ede9df540b1320&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.283             latitude:33.965             pred_result:53.712745666503906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d4a6500e30d6b51977af40557e2e3d4.setContent(html_3e86eea00f59cddda9ede9df540b1320);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03ba26708aeb5e7c4b2145879f9c1ff3.bindPopup(popup_5d4a6500e30d6b51977af40557e2e3d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4057f217eafd728741a32db72a0d8414 = L.circleMarker(\\n\",\n       \"                [35.259, 113.1992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58cd06b3d7d39af819341b65ab0ea5bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9ab054e77384fe58bb1cd2d3c57ebdf = $(`&lt;div id=&quot;html_e9ab054e77384fe58bb1cd2d3c57ebdf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1992             latitude:35.259             pred_result:63.4488525390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58cd06b3d7d39af819341b65ab0ea5bd.setContent(html_e9ab054e77384fe58bb1cd2d3c57ebdf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4057f217eafd728741a32db72a0d8414.bindPopup(popup_58cd06b3d7d39af819341b65ab0ea5bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_149087927f59008ca4ddca0d54d99b1c = L.circleMarker(\\n\",\n       \"                [31.56, 120.294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23b370f413c5d4086a7830083000318a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7d13914c8bc04a587154416d08b3504 = $(`&lt;div id=&quot;html_d7d13914c8bc04a587154416d08b3504&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.294             latitude:31.56             pred_result:57.81140899658203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23b370f413c5d4086a7830083000318a.setContent(html_d7d13914c8bc04a587154416d08b3504);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_149087927f59008ca4ddca0d54d99b1c.bindPopup(popup_23b370f413c5d4086a7830083000318a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01f2d3e349f565a7042f88ec301b4572 = L.circleMarker(\\n\",\n       \"                [24.3702, 102.5389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f28ef406387eb6bc4cdd224ae87cd394 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f5a00c240cb6c5d18e2046873f2d854 = $(`&lt;div id=&quot;html_5f5a00c240cb6c5d18e2046873f2d854&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5389             latitude:24.3702             pred_result:27.28213119506836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f28ef406387eb6bc4cdd224ae87cd394.setContent(html_5f5a00c240cb6c5d18e2046873f2d854);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01f2d3e349f565a7042f88ec301b4572.bindPopup(popup_f28ef406387eb6bc4cdd224ae87cd394)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e197e5c90306f31abb79bf9f12e95c48 = L.circleMarker(\\n\",\n       \"                [41.7089, 123.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22cbf70d277d30c57495ecefd9f0c095 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d99f89889d69f9dfddc7ac0d5736ca48 = $(`&lt;div id=&quot;html_d99f89889d69f9dfddc7ac0d5736ca48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.439             latitude:41.7089             pred_result:42.79013442993164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22cbf70d277d30c57495ecefd9f0c095.setContent(html_d99f89889d69f9dfddc7ac0d5736ca48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e197e5c90306f31abb79bf9f12e95c48.bindPopup(popup_22cbf70d277d30c57495ecefd9f0c095)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c61a1acf3ff678f85c336a94a54b052 = L.circleMarker(\\n\",\n       \"                [30.2819, 109.4689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca3bddd1a1cebab51447ce5acc4e7264 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_333338d3d6f3300ce06717690a1a2cdb = $(`&lt;div id=&quot;html_333338d3d6f3300ce06717690a1a2cdb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4689             latitude:30.2819             pred_result:33.20985412597656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca3bddd1a1cebab51447ce5acc4e7264.setContent(html_333338d3d6f3300ce06717690a1a2cdb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c61a1acf3ff678f85c336a94a54b052.bindPopup(popup_ca3bddd1a1cebab51447ce5acc4e7264)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9bab1b10d5008e3395b050b47698aa8 = L.circleMarker(\\n\",\n       \"                [28.5819, 112.3744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a59ec332cf2f58bb8e377c811972de88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f0776ebeac922d9602944c888fd4efe = $(`&lt;div id=&quot;html_0f0776ebeac922d9602944c888fd4efe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3744             latitude:28.5819             pred_result:53.277835845947266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a59ec332cf2f58bb8e377c811972de88.setContent(html_0f0776ebeac922d9602944c888fd4efe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9bab1b10d5008e3395b050b47698aa8.bindPopup(popup_a59ec332cf2f58bb8e377c811972de88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ec62fe5645173dbcedc92e0367440c9 = L.circleMarker(\\n\",\n       \"                [24.7121, 108.2134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6ecf5bd19e92e15ef111f95fa43d232 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4f99cdabf74f2f9599b75278197c06c = $(`&lt;div id=&quot;html_e4f99cdabf74f2f9599b75278197c06c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.2134             latitude:24.7121             pred_result:39.79628372192383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6ecf5bd19e92e15ef111f95fa43d232.setContent(html_e4f99cdabf74f2f9599b75278197c06c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ec62fe5645173dbcedc92e0367440c9.bindPopup(popup_e6ecf5bd19e92e15ef111f95fa43d232)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b8a8316131de11b24595667f1cb927b5 = L.circleMarker(\\n\",\n       \"                [43.768, 87.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f263110cbbb65751fdb75c3128958fee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_863e9ddc7d1a3b515ef074d3383abcdc = $(`&lt;div id=&quot;html_863e9ddc7d1a3b515ef074d3383abcdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6046             latitude:43.768             pred_result:42.65945816040039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f263110cbbb65751fdb75c3128958fee.setContent(html_863e9ddc7d1a3b515ef074d3383abcdc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b8a8316131de11b24595667f1cb927b5.bindPopup(popup_f263110cbbb65751fdb75c3128958fee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f720c8dea23071e45c3c6c875c60fabe = L.circleMarker(\\n\",\n       \"                [32.9444, 117.3575],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13d5b00f0c4a34f7b0c459a7aeb8fd0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e22aa3293539e053893f3c6bab23963d = $(`&lt;div id=&quot;html_e22aa3293539e053893f3c6bab23963d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3575             latitude:32.9444             pred_result:48.83472442626953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13d5b00f0c4a34f7b0c459a7aeb8fd0f.setContent(html_e22aa3293539e053893f3c6bab23963d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f720c8dea23071e45c3c6c875c60fabe.bindPopup(popup_13d5b00f0c4a34f7b0c459a7aeb8fd0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0edb406f89d4cabc534864fe94cca27a = L.circleMarker(\\n\",\n       \"                [23.08, 114.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e19c9cc5c941502586974e17e1d364c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0528137edb7c921d07ce7764a56658a = $(`&lt;div id=&quot;html_d0528137edb7c921d07ce7764a56658a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4053             latitude:23.08             pred_result:52.48227310180664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e19c9cc5c941502586974e17e1d364c.setContent(html_d0528137edb7c921d07ce7764a56658a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0edb406f89d4cabc534864fe94cca27a.bindPopup(popup_2e19c9cc5c941502586974e17e1d364c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b33953f005006694eaa2d0e80caff104 = L.circleMarker(\\n\",\n       \"                [23.2783, 113.568],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_367c4f59e52d4a6f5e7359bbce578bb8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4755f1e0b6dbdfe5caa0d95a45a4bde0 = $(`&lt;div id=&quot;html_4755f1e0b6dbdfe5caa0d95a45a4bde0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.568             latitude:23.2783             pred_result:48.82125473022461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_367c4f59e52d4a6f5e7359bbce578bb8.setContent(html_4755f1e0b6dbdfe5caa0d95a45a4bde0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b33953f005006694eaa2d0e80caff104.bindPopup(popup_367c4f59e52d4a6f5e7359bbce578bb8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da2a867e102305cff2a842d27246a8a0 = L.circleMarker(\\n\",\n       \"                [24.9624, 102.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0883204758257e815df1825ceaa57e36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10c53be2e225878cc1eccca9d2868c2e = $(`&lt;div id=&quot;html_10c53be2e225878cc1eccca9d2868c2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.625             latitude:24.9624             pred_result:10.568138122558594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0883204758257e815df1825ceaa57e36.setContent(html_10c53be2e225878cc1eccca9d2868c2e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da2a867e102305cff2a842d27246a8a0.bindPopup(popup_0883204758257e815df1825ceaa57e36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cff19938670b12c470aac6bfefbd73c = L.circleMarker(\\n\",\n       \"                [32.6028, 116.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07c086a58bc3d4788b549c976868dca9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b42188437700777e0a311876329bb60d = $(`&lt;div id=&quot;html_b42188437700777e0a311876329bb60d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8556             latitude:32.6028             pred_result:50.4157600402832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07c086a58bc3d4788b549c976868dca9.setContent(html_b42188437700777e0a311876329bb60d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cff19938670b12c470aac6bfefbd73c.bindPopup(popup_07c086a58bc3d4788b549c976868dca9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e189bf86adfe4651787ab90ef4d372c3 = L.circleMarker(\\n\",\n       \"                [34.3708, 107.1586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7caa7cc5701f8f772cb8bb140eb0c3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_839e00f3a2e8ac28bf4c90d43c63a08e = $(`&lt;div id=&quot;html_839e00f3a2e8ac28bf4c90d43c63a08e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1586             latitude:34.3708             pred_result:46.0474853515625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7caa7cc5701f8f772cb8bb140eb0c3f.setContent(html_839e00f3a2e8ac28bf4c90d43c63a08e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e189bf86adfe4651787ab90ef4d372c3.bindPopup(popup_b7caa7cc5701f8f772cb8bb140eb0c3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8a55ddf80bd661589cd6baf5c67718aa = L.circleMarker(\\n\",\n       \"                [45.61, 126.615],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_923cda2c8c3554011ab5fc249ddc76d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5dec98261af8b328f60b0699dd6ae5f7 = $(`&lt;div id=&quot;html_5dec98261af8b328f60b0699dd6ae5f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.615             latitude:45.61             pred_result:31.800508499145508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_923cda2c8c3554011ab5fc249ddc76d0.setContent(html_5dec98261af8b328f60b0699dd6ae5f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8a55ddf80bd661589cd6baf5c67718aa.bindPopup(popup_923cda2c8c3554011ab5fc249ddc76d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_593b2e95d48e52d5d2385b381736a683 = L.circleMarker(\\n\",\n       \"                [40.1194, 124.3678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fddb3a2f3602b0e89dfcb7eeb832ce5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a95de03c9d2abdd5571e7d29f522ebbe = $(`&lt;div id=&quot;html_a95de03c9d2abdd5571e7d29f522ebbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3678             latitude:40.1194             pred_result:42.994319915771484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fddb3a2f3602b0e89dfcb7eeb832ce5a.setContent(html_a95de03c9d2abdd5571e7d29f522ebbe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_593b2e95d48e52d5d2385b381736a683.bindPopup(popup_fddb3a2f3602b0e89dfcb7eeb832ce5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbe43ad6c07b2a50ac8257d8beb8fdaa = L.circleMarker(\\n\",\n       \"                [41.0228, 123.1289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27c0d7dbd598689f7df46a8f5ae60e86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb1a1c24bef4bf25bec6a46c1f920302 = $(`&lt;div id=&quot;html_eb1a1c24bef4bf25bec6a46c1f920302&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1289             latitude:41.0228             pred_result:40.786476135253906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27c0d7dbd598689f7df46a8f5ae60e86.setContent(html_eb1a1c24bef4bf25bec6a46c1f920302);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbe43ad6c07b2a50ac8257d8beb8fdaa.bindPopup(popup_27c0d7dbd598689f7df46a8f5ae60e86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbdd163e1eefc7e9c2b2aa9e2e742fe9 = L.circleMarker(\\n\",\n       \"                [31.238, 121.4],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7e51ddd940504a59aec00c5ff5c0c65 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e91887dd129f662eb48818f6352eb721 = $(`&lt;div id=&quot;html_e91887dd129f662eb48818f6352eb721&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.4             latitude:31.238             pred_result:53.64372253417969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7e51ddd940504a59aec00c5ff5c0c65.setContent(html_e91887dd129f662eb48818f6352eb721);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbdd163e1eefc7e9c2b2aa9e2e742fe9.bindPopup(popup_b7e51ddd940504a59aec00c5ff5c0c65)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea2722dd89ce69e8fb23ff24e843f9f9 = L.circleMarker(\\n\",\n       \"                [30.2456, 120.127],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_980c5133ba75f7a9eaf2eaefc98ff6bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_563a32619c32cb516a47bec177b1ff46 = $(`&lt;div id=&quot;html_563a32619c32cb516a47bec177b1ff46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.127             latitude:30.2456             pred_result:46.282405853271484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_980c5133ba75f7a9eaf2eaefc98ff6bc.setContent(html_563a32619c32cb516a47bec177b1ff46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea2722dd89ce69e8fb23ff24e843f9f9.bindPopup(popup_980c5133ba75f7a9eaf2eaefc98ff6bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_128be52a2ae5895214ecfd0bb8e7922e = L.circleMarker(\\n\",\n       \"                [38.5061, 102.1708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86d0881fb802e24ad30b4ce5830070c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_515e5454cd71dcca0c65d41980b962bb = $(`&lt;div id=&quot;html_515e5454cd71dcca0c65d41980b962bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1708             latitude:38.5061             pred_result:44.478370666503906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86d0881fb802e24ad30b4ce5830070c2.setContent(html_515e5454cd71dcca0c65d41980b962bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_128be52a2ae5895214ecfd0bb8e7922e.bindPopup(popup_86d0881fb802e24ad30b4ce5830070c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e30e3cf0583c78fb23fce9f018cd8bd6 = L.circleMarker(\\n\",\n       \"                [36.7339, 119.0841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb11016268f03257d2cbb7439f87ea3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d330c4dd17fcbcf9f7c1ced123c4e45 = $(`&lt;div id=&quot;html_6d330c4dd17fcbcf9f7c1ced123c4e45&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0841             latitude:36.7339             pred_result:65.28494262695312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb11016268f03257d2cbb7439f87ea3d.setContent(html_6d330c4dd17fcbcf9f7c1ced123c4e45);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e30e3cf0583c78fb23fce9f018cd8bd6.bindPopup(popup_cb11016268f03257d2cbb7439f87ea3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e502d6bb468208327e8cf049b8deb7c = L.circleMarker(\\n\",\n       \"                [32.2786, 118.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eefdc6797d1604a123f627ab1c24b617 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86c4280068508933cdbc995bd0a2b12c = $(`&lt;div id=&quot;html_86c4280068508933cdbc995bd0a2b12c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3244             latitude:32.2786             pred_result:44.3732795715332             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eefdc6797d1604a123f627ab1c24b617.setContent(html_86c4280068508933cdbc995bd0a2b12c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e502d6bb468208327e8cf049b8deb7c.bindPopup(popup_eefdc6797d1604a123f627ab1c24b617)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_854bf082d89d9a524626c98d99e5ef93 = L.circleMarker(\\n\",\n       \"                [33.8399, 115.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d2d00a73f3bbf3f23d215e9396aadc9b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c468563c03d167f01f26af015188511 = $(`&lt;div id=&quot;html_3c468563c03d167f01f26af015188511&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8067             latitude:33.8399             pred_result:56.87907028198242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d2d00a73f3bbf3f23d215e9396aadc9b.setContent(html_3c468563c03d167f01f26af015188511);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_854bf082d89d9a524626c98d99e5ef93.bindPopup(popup_d2d00a73f3bbf3f23d215e9396aadc9b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74beada0f6a04f05bbcde4c4302993ff = L.circleMarker(\\n\",\n       \"                [30.0475, 101.9603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db0197d7e0b1d758033b48bfbdb40983 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d32aef9adf474a03d03eabd5d8f5df9a = $(`&lt;div id=&quot;html_d32aef9adf474a03d03eabd5d8f5df9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9603             latitude:30.0475             pred_result:-31.09759521484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db0197d7e0b1d758033b48bfbdb40983.setContent(html_d32aef9adf474a03d03eabd5d8f5df9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74beada0f6a04f05bbcde4c4302993ff.bindPopup(popup_db0197d7e0b1d758033b48bfbdb40983)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_180b5ea7a621e156672efa95fc289b5f = L.circleMarker(\\n\",\n       \"                [37.9097, 114.3541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_987229b64792a03f1d1a704ea058265f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8102e59d7fcb93eeed0e360b553001ee = $(`&lt;div id=&quot;html_8102e59d7fcb93eeed0e360b553001ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3541             latitude:37.9097             pred_result:55.74197006225586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_987229b64792a03f1d1a704ea058265f.setContent(html_8102e59d7fcb93eeed0e360b553001ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_180b5ea7a621e156672efa95fc289b5f.bindPopup(popup_987229b64792a03f1d1a704ea058265f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9fa3368d3cf9391dc8baad9014a9ce5 = L.circleMarker(\\n\",\n       \"                [24.6967, 108.1009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3492e170ffa2c393fee9a4a112a947b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42f2e371fa52b20a124cbae5f675d79b = $(`&lt;div id=&quot;html_42f2e371fa52b20a124cbae5f675d79b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.1009             latitude:24.6967             pred_result:35.77688217163086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3492e170ffa2c393fee9a4a112a947b9.setContent(html_42f2e371fa52b20a124cbae5f675d79b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9fa3368d3cf9391dc8baad9014a9ce5.bindPopup(popup_3492e170ffa2c393fee9a4a112a947b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a809edab66a12c2c021391de15e82332 = L.circleMarker(\\n\",\n       \"                [23.6706, 116.6447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34aa52f0f538ebdd7898029376b3e39e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6e4aa6c3e15ee7cf33f6b152e9138c9 = $(`&lt;div id=&quot;html_e6e4aa6c3e15ee7cf33f6b152e9138c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6447             latitude:23.6706             pred_result:55.805667877197266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34aa52f0f538ebdd7898029376b3e39e.setContent(html_e6e4aa6c3e15ee7cf33f6b152e9138c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a809edab66a12c2c021391de15e82332.bindPopup(popup_34aa52f0f538ebdd7898029376b3e39e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_439df15a191c47464859a7d44efc23f3 = L.circleMarker(\\n\",\n       \"                [33.0323, 107.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf77036a748731e1a5f5f091b9217b94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8bd91cb877028ddca2a43f503c0fa460 = $(`&lt;div id=&quot;html_8bd91cb877028ddca2a43f503c0fa460&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.007             latitude:33.0323             pred_result:48.62491226196289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf77036a748731e1a5f5f091b9217b94.setContent(html_8bd91cb877028ddca2a43f503c0fa460);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_439df15a191c47464859a7d44efc23f3.bindPopup(popup_bf77036a748731e1a5f5f091b9217b94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b2bd15c2199421e888877567c1195bd = L.circleMarker(\\n\",\n       \"                [25.442, 119.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38243971283687008d9087909fc50843 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b806c2698d3fef9a7e3203c6ab537a78 = $(`&lt;div id=&quot;html_b806c2698d3fef9a7e3203c6ab537a78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0156             latitude:25.442             pred_result:57.02972412109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38243971283687008d9087909fc50843.setContent(html_b806c2698d3fef9a7e3203c6ab537a78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b2bd15c2199421e888877567c1195bd.bindPopup(popup_38243971283687008d9087909fc50843)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e34b96965679c8a418d8c1d645212960 = L.circleMarker(\\n\",\n       \"                [38.5247, 102.1878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb48a430eb7e2402acc3b0c0366a7329 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_936c66834ad1832c7572e536cfe8c969 = $(`&lt;div id=&quot;html_936c66834ad1832c7572e536cfe8c969&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1878             latitude:38.5247             pred_result:45.71628952026367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb48a430eb7e2402acc3b0c0366a7329.setContent(html_936c66834ad1832c7572e536cfe8c969);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e34b96965679c8a418d8c1d645212960.bindPopup(popup_cb48a430eb7e2402acc3b0c0366a7329)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_760c2673e948f080be0962c14b48f530 = L.circleMarker(\\n\",\n       \"                [22.8561, 108.316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13620b509617cc788b16478e4748e684 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec7023fca1b659b3f619b680b77d5270 = $(`&lt;div id=&quot;html_ec7023fca1b659b3f619b680b77d5270&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.316             latitude:22.8561             pred_result:55.470985412597656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13620b509617cc788b16478e4748e684.setContent(html_ec7023fca1b659b3f619b680b77d5270);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_760c2673e948f080be0962c14b48f530.bindPopup(popup_13620b509617cc788b16478e4748e684)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2ac58f1e120f8eb42287ef00da89e76 = L.circleMarker(\\n\",\n       \"                [31.656, 120.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4705975e72143c04e3cf21dc4c65aef0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2b224c8a44c63b9b54d69a1b665503a = $(`&lt;div id=&quot;html_d2b224c8a44c63b9b54d69a1b665503a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.734             latitude:31.656             pred_result:52.49001693725586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4705975e72143c04e3cf21dc4c65aef0.setContent(html_d2b224c8a44c63b9b54d69a1b665503a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2ac58f1e120f8eb42287ef00da89e76.bindPopup(popup_4705975e72143c04e3cf21dc4c65aef0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67e58e0ab2376b873eff95257a8bdd8f = L.circleMarker(\\n\",\n       \"                [29.36028, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8d85ee5deda0894c7c2b8648bac2798 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbd412d75834189fa120d82254bb6196 = $(`&lt;div id=&quot;html_dbd412d75834189fa120d82254bb6196&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:29.36028             pred_result:76.47590637207031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8d85ee5deda0894c7c2b8648bac2798.setContent(html_dbd412d75834189fa120d82254bb6196);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67e58e0ab2376b873eff95257a8bdd8f.bindPopup(popup_d8d85ee5deda0894c7c2b8648bac2798)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5cfb5762d856eb4fb18b5429bd0da471 = L.circleMarker(\\n\",\n       \"                [22.7833, 108.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_788c51de1770c96a829433d4c191cd2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_522bc76775cf0734006361ca3e17ebdc = $(`&lt;div id=&quot;html_522bc76775cf0734006361ca3e17ebdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.244             latitude:22.7833             pred_result:55.49070739746094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_788c51de1770c96a829433d4c191cd2c.setContent(html_522bc76775cf0734006361ca3e17ebdc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5cfb5762d856eb4fb18b5429bd0da471.bindPopup(popup_788c51de1770c96a829433d4c191cd2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31cb26b5cc785bef616109540e2d8ddc = L.circleMarker(\\n\",\n       \"                [36.3083, 120.1964],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7fca9f013775f641ca56613b22dbd34a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8583f9b6435658b95de09ca7d4f73c13 = $(`&lt;div id=&quot;html_8583f9b6435658b95de09ca7d4f73c13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1964             latitude:36.3083             pred_result:61.1229362487793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7fca9f013775f641ca56613b22dbd34a.setContent(html_8583f9b6435658b95de09ca7d4f73c13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31cb26b5cc785bef616109540e2d8ddc.bindPopup(popup_7fca9f013775f641ca56613b22dbd34a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06d313e622200f4c4c2ab63859f62231 = L.circleMarker(\\n\",\n       \"                [41.8828, 123.9169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59f638e141fe8249e22928ef2037880d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e2dfef593a4c8c997809b6ef61ebf2a = $(`&lt;div id=&quot;html_2e2dfef593a4c8c997809b6ef61ebf2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9169             latitude:41.8828             pred_result:39.48897933959961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59f638e141fe8249e22928ef2037880d.setContent(html_2e2dfef593a4c8c997809b6ef61ebf2a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06d313e622200f4c4c2ab63859f62231.bindPopup(popup_59f638e141fe8249e22928ef2037880d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98ef5b386dba2ed56973c1b086474867 = L.circleMarker(\\n\",\n       \"                [41.8472, 123.428],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5ff74d6af3d277f3c9b0423d2ea97b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db777f71fa2ded9ef3d39d73eca8a02b = $(`&lt;div id=&quot;html_db777f71fa2ded9ef3d39d73eca8a02b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.428             latitude:41.8472             pred_result:43.071983337402344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5ff74d6af3d277f3c9b0423d2ea97b6.setContent(html_db777f71fa2ded9ef3d39d73eca8a02b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98ef5b386dba2ed56973c1b086474867.bindPopup(popup_f5ff74d6af3d277f3c9b0423d2ea97b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86d9689ad1874084caf8441b7f845357 = L.circleMarker(\\n\",\n       \"                [27.8381, 113.143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4bc4e55d0b15e12036c7e9ab6880eb3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a964f223a5166ab60f93dc88e46d799e = $(`&lt;div id=&quot;html_a964f223a5166ab60f93dc88e46d799e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.143             latitude:27.8381             pred_result:48.93569564819336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4bc4e55d0b15e12036c7e9ab6880eb3.setContent(html_a964f223a5166ab60f93dc88e46d799e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86d9689ad1874084caf8441b7f845357.bindPopup(popup_e4bc4e55d0b15e12036c7e9ab6880eb3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a6515a6caa63646d2722287ac0a6208 = L.circleMarker(\\n\",\n       \"                [43.8667, 125.417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec423acb6a418b0ef9811fc8a0edb891 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3c6e117c16a6b651d178c56f267605e = $(`&lt;div id=&quot;html_f3c6e117c16a6b651d178c56f267605e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.417             latitude:43.8667             pred_result:30.79562759399414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec423acb6a418b0ef9811fc8a0edb891.setContent(html_f3c6e117c16a6b651d178c56f267605e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a6515a6caa63646d2722287ac0a6208.bindPopup(popup_ec423acb6a418b0ef9811fc8a0edb891)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4289d37460e98325b0b4a1d9b71af9bc = L.circleMarker(\\n\",\n       \"                [45.7258, 126.646],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_574cff29bc247137fc5d59eaf110f01a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad2fa3963a4dc6f8eaaad04595afdcd1 = $(`&lt;div id=&quot;html_ad2fa3963a4dc6f8eaaad04595afdcd1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.646             latitude:45.7258             pred_result:32.33015823364258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_574cff29bc247137fc5d59eaf110f01a.setContent(html_ad2fa3963a4dc6f8eaaad04595afdcd1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4289d37460e98325b0b4a1d9b71af9bc.bindPopup(popup_574cff29bc247137fc5d59eaf110f01a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62fc303c4bdf7047f12eb6db0aa09886 = L.circleMarker(\\n\",\n       \"                [26.6272, 118.1756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90c4a8f4654c957532ddcf9c99e0aa01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_346c02c19e816cd1382c706b34480e99 = $(`&lt;div id=&quot;html_346c02c19e816cd1382c706b34480e99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1756             latitude:26.6272             pred_result:54.62244415283203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90c4a8f4654c957532ddcf9c99e0aa01.setContent(html_346c02c19e816cd1382c706b34480e99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62fc303c4bdf7047f12eb6db0aa09886.bindPopup(popup_90c4a8f4654c957532ddcf9c99e0aa01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8dbaf1bdc83623afe577129e098db118 = L.circleMarker(\\n\",\n       \"                [27.9883, 116.3553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2236f2256ce2b11d7a9a3f9e5952e83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce25ff0edb417ebe2aa1af624dc5753f = $(`&lt;div id=&quot;html_ce25ff0edb417ebe2aa1af624dc5753f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3553             latitude:27.9883             pred_result:56.7304801940918             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2236f2256ce2b11d7a9a3f9e5952e83.setContent(html_ce25ff0edb417ebe2aa1af624dc5753f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8dbaf1bdc83623afe577129e098db118.bindPopup(popup_e2236f2256ce2b11d7a9a3f9e5952e83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50fcfe4d3cb1fec2277e7ff577a63522 = L.circleMarker(\\n\",\n       \"                [39.9522, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a37637acb27b21bff7c4dc85e1dd0cd9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dfcde4b154d20c812605b9ea31995473 = $(`&lt;div id=&quot;html_dfcde4b154d20c812605b9ea31995473&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.9522             pred_result:59.271461486816406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a37637acb27b21bff7c4dc85e1dd0cd9.setContent(html_dfcde4b154d20c812605b9ea31995473);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50fcfe4d3cb1fec2277e7ff577a63522.bindPopup(popup_a37637acb27b21bff7c4dc85e1dd0cd9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4bd2873b052562a88b3a20165eb8acff = L.circleMarker(\\n\",\n       \"                [38.843, 105.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_815e89eb25bc52ef0ddc4c67142a9e7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_831f2e2c1832f3b33d8d2e1a9112097e = $(`&lt;div id=&quot;html_831f2e2c1832f3b33d8d2e1a9112097e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6975             latitude:38.843             pred_result:41.90381622314453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_815e89eb25bc52ef0ddc4c67142a9e7f.setContent(html_831f2e2c1832f3b33d8d2e1a9112097e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4bd2873b052562a88b3a20165eb8acff.bindPopup(popup_815e89eb25bc52ef0ddc4c67142a9e7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f39f0951d1a13914f1d5385ef6367de0 = L.circleMarker(\\n\",\n       \"                [22.8172, 114.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eee250fe546476a14b8e6d8a7f282417 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95306efb8970c4484bb939cbad1e9a4f = $(`&lt;div id=&quot;html_95306efb8970c4484bb939cbad1e9a4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3244             latitude:22.8172             pred_result:51.37911605834961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eee250fe546476a14b8e6d8a7f282417.setContent(html_95306efb8970c4484bb939cbad1e9a4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f39f0951d1a13914f1d5385ef6367de0.bindPopup(popup_eee250fe546476a14b8e6d8a7f282417)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26f78092aa90a16d5dd46578a109f39e = L.circleMarker(\\n\",\n       \"                [39.9419, 119.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47f60b9bc3416756bb7eaf012041515d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0314d839ca2d1a21d2dcacc520570e6 = $(`&lt;div id=&quot;html_f0314d839ca2d1a21d2dcacc520570e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5369             latitude:39.9419             pred_result:57.6440315246582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47f60b9bc3416756bb7eaf012041515d.setContent(html_f0314d839ca2d1a21d2dcacc520570e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26f78092aa90a16d5dd46578a109f39e.bindPopup(popup_47f60b9bc3416756bb7eaf012041515d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73115af8885600fbb0e545440eff8866 = L.circleMarker(\\n\",\n       \"                [24.4175, 111.5269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3880ddf175f5d310e0089ca4986d7df0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_721288a2bf62b5eb52372a543d91ac17 = $(`&lt;div id=&quot;html_721288a2bf62b5eb52372a543d91ac17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5269             latitude:24.4175             pred_result:51.00055694580078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3880ddf175f5d310e0089ca4986d7df0.setContent(html_721288a2bf62b5eb52372a543d91ac17);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73115af8885600fbb0e545440eff8866.bindPopup(popup_3880ddf175f5d310e0089ca4986d7df0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d9f6c90439d75f2dcb2dd786536c31b = L.circleMarker(\\n\",\n       \"                [29.7128, 118.3057],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c713719b8fd5324b6dd7ad4029e94775 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b37fab4dac18e6b6fffc8cae3c0e0ca1 = $(`&lt;div id=&quot;html_b37fab4dac18e6b6fffc8cae3c0e0ca1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3057             latitude:29.7128             pred_result:33.48529052734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c713719b8fd5324b6dd7ad4029e94775.setContent(html_b37fab4dac18e6b6fffc8cae3c0e0ca1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d9f6c90439d75f2dcb2dd786536c31b.bindPopup(popup_c713719b8fd5324b6dd7ad4029e94775)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24dc1e1e21434b8d26480d2eb8872dd4 = L.circleMarker(\\n\",\n       \"                [26.57098, 101.68912],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b209ea38836be7579537f8fb06b074d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2ebb3fada65aab1cd22658baa9ab0af = $(`&lt;div id=&quot;html_e2ebb3fada65aab1cd22658baa9ab0af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.68912             latitude:26.57098             pred_result:46.266178131103516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b209ea38836be7579537f8fb06b074d5.setContent(html_e2ebb3fada65aab1cd22658baa9ab0af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24dc1e1e21434b8d26480d2eb8872dd4.bindPopup(popup_b209ea38836be7579537f8fb06b074d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ffb33c59883d7fe6e2ca8b76ed058ea = L.circleMarker(\\n\",\n       \"                [36.087, 114.358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3594dafb914e5575e235baa8f6a61ca3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c1466bc9baf840ffaec631ebae3c55b = $(`&lt;div id=&quot;html_3c1466bc9baf840ffaec631ebae3c55b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.358             latitude:36.087             pred_result:72.2036361694336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3594dafb914e5575e235baa8f6a61ca3.setContent(html_3c1466bc9baf840ffaec631ebae3c55b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ffb33c59883d7fe6e2ca8b76ed058ea.bindPopup(popup_3594dafb914e5575e235baa8f6a61ca3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d5d2343c554a86bb4cc61cc804efbe4a = L.circleMarker(\\n\",\n       \"                [39.3673, 112.4279],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6024bae896e4e9ab8db7b624595fb4ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9c4ee29533a294deaf58644bbabb9da = $(`&lt;div id=&quot;html_c9c4ee29533a294deaf58644bbabb9da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4279             latitude:39.3673             pred_result:27.50454330444336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6024bae896e4e9ab8db7b624595fb4ec.setContent(html_c9c4ee29533a294deaf58644bbabb9da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d5d2343c554a86bb4cc61cc804efbe4a.bindPopup(popup_6024bae896e4e9ab8db7b624595fb4ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4fb880f0828f2aa0abb295b14d6f3df = L.circleMarker(\\n\",\n       \"                [37.4658, 118.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b87913ed6bfcff1b4789f94da543b9b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e0890e455c4b09636270b1c676d1bb7 = $(`&lt;div id=&quot;html_8e0890e455c4b09636270b1c676d1bb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5019             latitude:37.4658             pred_result:65.6648178100586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b87913ed6bfcff1b4789f94da543b9b.setContent(html_8e0890e455c4b09636270b1c676d1bb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4fb880f0828f2aa0abb295b14d6f3df.bindPopup(popup_7b87913ed6bfcff1b4789f94da543b9b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8d9945868ccbb33999395e49b82ceb5 = L.circleMarker(\\n\",\n       \"                [23.7233, 114.6892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_325caa7414325902ff6c7676ba82a4ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c628941dd427094ce1f7629e528e353 = $(`&lt;div id=&quot;html_0c628941dd427094ce1f7629e528e353&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6892             latitude:23.7233             pred_result:57.0715446472168             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_325caa7414325902ff6c7676ba82a4ac.setContent(html_0c628941dd427094ce1f7629e528e353);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8d9945868ccbb33999395e49b82ceb5.bindPopup(popup_325caa7414325902ff6c7676ba82a4ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92ae8f698175d8d3b616c060ed17e824 = L.circleMarker(\\n\",\n       \"                [28.4569, 118.0058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4688240c8f3ecc7ecf5a938c7372f81 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9df675bb2f5914a10a7410187c0c7fc = $(`&lt;div id=&quot;html_e9df675bb2f5914a10a7410187c0c7fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0058             latitude:28.4569             pred_result:49.77301025390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4688240c8f3ecc7ecf5a938c7372f81.setContent(html_e9df675bb2f5914a10a7410187c0c7fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92ae8f698175d8d3b616c060ed17e824.bindPopup(popup_b4688240c8f3ecc7ecf5a938c7372f81)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d693457c4a0fa4566c27ffbb3d2b30a = L.circleMarker(\\n\",\n       \"                [30.2099, 115.0264],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b4792b65a40cf919dc4523a8f230d78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89aae93c7dd33cceab3574d910c22423 = $(`&lt;div id=&quot;html_89aae93c7dd33cceab3574d910c22423&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0264             latitude:30.2099             pred_result:49.619075775146484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b4792b65a40cf919dc4523a8f230d78.setContent(html_89aae93c7dd33cceab3574d910c22423);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d693457c4a0fa4566c27ffbb3d2b30a.bindPopup(popup_1b4792b65a40cf919dc4523a8f230d78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48aa83da3d6b97a34741bddeac5d63dc = L.circleMarker(\\n\",\n       \"                [33.737, 113.182],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8bc4beb7dda5e7219a7a4e42157be20 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ccfd0f6150540f4dbb2cde198ba144b = $(`&lt;div id=&quot;html_4ccfd0f6150540f4dbb2cde198ba144b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.182             latitude:33.737             pred_result:64.30071258544922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8bc4beb7dda5e7219a7a4e42157be20.setContent(html_4ccfd0f6150540f4dbb2cde198ba144b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48aa83da3d6b97a34741bddeac5d63dc.bindPopup(popup_e8bc4beb7dda5e7219a7a4e42157be20)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_55f8b2eeec070310096432145ba91929 = L.circleMarker(\\n\",\n       \"                [22.735, 108.328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f70da63a1ea29e8e770ad1ffd82a5da8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5bd14428933f00a05a4b717cceb96b29 = $(`&lt;div id=&quot;html_5bd14428933f00a05a4b717cceb96b29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.328             latitude:22.735             pred_result:55.05829620361328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f70da63a1ea29e8e770ad1ffd82a5da8.setContent(html_5bd14428933f00a05a4b717cceb96b29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_55f8b2eeec070310096432145ba91929.bindPopup(popup_f70da63a1ea29e8e770ad1ffd82a5da8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66a25dfcbdb2f57e8381cf88553c14f2 = L.circleMarker(\\n\",\n       \"                [35.0147, 110.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ae76bbe686d6d45682847676c2bb20c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f5e7c13a9a2ff8672f1e479c3397186 = $(`&lt;div id=&quot;html_6f5e7c13a9a2ff8672f1e479c3397186&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9956             latitude:35.0147             pred_result:60.1685905456543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ae76bbe686d6d45682847676c2bb20c.setContent(html_6f5e7c13a9a2ff8672f1e479c3397186);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66a25dfcbdb2f57e8381cf88553c14f2.bindPopup(popup_1ae76bbe686d6d45682847676c2bb20c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5415e266df4f84e9ecb2c1769b067cec = L.circleMarker(\\n\",\n       \"                [38.9194, 117.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef55eceac30f7efada4652b15571630e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4e7a2796c547cbec9d742a11c3f73d3 = $(`&lt;div id=&quot;html_c4e7a2796c547cbec9d742a11c3f73d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.157             latitude:38.9194             pred_result:63.89474868774414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef55eceac30f7efada4652b15571630e.setContent(html_c4e7a2796c547cbec9d742a11c3f73d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5415e266df4f84e9ecb2c1769b067cec.bindPopup(popup_ef55eceac30f7efada4652b15571630e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a23e5488896df2d6f15f079acb32ccd7 = L.circleMarker(\\n\",\n       \"                [27.8036, 114.3442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42e1a3f9d5b9c19c63a561b9802ace1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c29b4d7b69be269581d047c2a0d62bb3 = $(`&lt;div id=&quot;html_c29b4d7b69be269581d047c2a0d62bb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3442             latitude:27.8036             pred_result:32.24494552612305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42e1a3f9d5b9c19c63a561b9802ace1f.setContent(html_c29b4d7b69be269581d047c2a0d62bb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a23e5488896df2d6f15f079acb32ccd7.bindPopup(popup_42e1a3f9d5b9c19c63a561b9802ace1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d80beae890b827a917d8f77f0330fef8 = L.circleMarker(\\n\",\n       \"                [23.8982, 100.0782],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c3cb88a3c69ca206a6ba1d73ceaacab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d42f8228f99c58f6bd475b2902a65aa = $(`&lt;div id=&quot;html_0d42f8228f99c58f6bd475b2902a65aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0782             latitude:23.8982             pred_result:7.9728546142578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c3cb88a3c69ca206a6ba1d73ceaacab.setContent(html_0d42f8228f99c58f6bd475b2902a65aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d80beae890b827a917d8f77f0330fef8.bindPopup(popup_3c3cb88a3c69ca206a6ba1d73ceaacab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a26771c7af57648723bf86d1525c9d91 = L.circleMarker(\\n\",\n       \"                [30.8244, 120.07],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a4a12e3576d949504b3b3b8ba04e014 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d26ac2272770293f53cf9dbb2497cd7 = $(`&lt;div id=&quot;html_6d26ac2272770293f53cf9dbb2497cd7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.07             latitude:30.8244             pred_result:50.303810119628906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a4a12e3576d949504b3b3b8ba04e014.setContent(html_6d26ac2272770293f53cf9dbb2497cd7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a26771c7af57648723bf86d1525c9d91.bindPopup(popup_8a4a12e3576d949504b3b3b8ba04e014)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_489da7b2bc838ba8db68c27f598f570b = L.circleMarker(\\n\",\n       \"                [22.2294, 113.495],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4ad8a048003d3b2e284e8aa7632a450 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed606c3b7df8610a4aab1b4e166f4650 = $(`&lt;div id=&quot;html_ed606c3b7df8610a4aab1b4e166f4650&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.495             latitude:22.2294             pred_result:61.9867057800293             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4ad8a048003d3b2e284e8aa7632a450.setContent(html_ed606c3b7df8610a4aab1b4e166f4650);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_489da7b2bc838ba8db68c27f598f570b.bindPopup(popup_a4ad8a048003d3b2e284e8aa7632a450)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fb076acb647720079df2311b7c9944b = L.circleMarker(\\n\",\n       \"                [22.4137, 107.3476],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f36ae62194c7c8bdf36694c4538bc6fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3352080b5a2f56f9032bf92f37840488 = $(`&lt;div id=&quot;html_3352080b5a2f56f9032bf92f37840488&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3476             latitude:22.4137             pred_result:56.0566291809082             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f36ae62194c7c8bdf36694c4538bc6fd.setContent(html_3352080b5a2f56f9032bf92f37840488);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fb076acb647720079df2311b7c9944b.bindPopup(popup_f36ae62194c7c8bdf36694c4538bc6fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a044facfeed88c00df414bbe4513ef2 = L.circleMarker(\\n\",\n       \"                [36.1942, 117.1436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f09069058ee6dd45613d5c7de2d4bdd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fea0c30a3b22f4c36e64c5081ac1feb5 = $(`&lt;div id=&quot;html_fea0c30a3b22f4c36e64c5081ac1feb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1436             latitude:36.1942             pred_result:59.45224380493164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f09069058ee6dd45613d5c7de2d4bdd.setContent(html_fea0c30a3b22f4c36e64c5081ac1feb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a044facfeed88c00df414bbe4513ef2.bindPopup(popup_8f09069058ee6dd45613d5c7de2d4bdd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b132e2ba6a601c36d64decb5e2d7c0b = L.circleMarker(\\n\",\n       \"                [30.7946, 120.744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_214bbe1b90f5e40e58d3678732eb7776 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_356d08553f09ecd6a139d6854e17452c = $(`&lt;div id=&quot;html_356d08553f09ecd6a139d6854e17452c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.744             latitude:30.7946             pred_result:52.70561599731445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_214bbe1b90f5e40e58d3678732eb7776.setContent(html_356d08553f09ecd6a139d6854e17452c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b132e2ba6a601c36d64decb5e2d7c0b.bindPopup(popup_214bbe1b90f5e40e58d3678732eb7776)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7af14a10141f740dd420efedf8f36036 = L.circleMarker(\\n\",\n       \"                [38.2839, 109.7289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9956dcd44d354e6482bc070926d01690 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02207b5449f86d3e266db8f813319cb1 = $(`&lt;div id=&quot;html_02207b5449f86d3e266db8f813319cb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7289             latitude:38.2839             pred_result:43.44171142578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9956dcd44d354e6482bc070926d01690.setContent(html_02207b5449f86d3e266db8f813319cb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7af14a10141f740dd420efedf8f36036.bindPopup(popup_9956dcd44d354e6482bc070926d01690)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6511bf45ae3050ef764c2fa163e06d2 = L.circleMarker(\\n\",\n       \"                [29.5953, 105.0331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bafef5025e921687a652e7c4cb173f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba169fc05334586ee6f7ddeb0f862f0a = $(`&lt;div id=&quot;html_ba169fc05334586ee6f7ddeb0f862f0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0331             latitude:29.5953             pred_result:75.62370300292969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bafef5025e921687a652e7c4cb173f1.setContent(html_ba169fc05334586ee6f7ddeb0f862f0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6511bf45ae3050ef764c2fa163e06d2.bindPopup(popup_5bafef5025e921687a652e7c4cb173f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e380b011c714f263fcee38c8d2dbf905 = L.circleMarker(\\n\",\n       \"                [32.9673, 117.3536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f45f7abe287d6e85406941b462b7100a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_258da0fac9176c27a8369ce4ea71245e = $(`&lt;div id=&quot;html_258da0fac9176c27a8369ce4ea71245e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3536             latitude:32.9673             pred_result:49.07829284667969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f45f7abe287d6e85406941b462b7100a.setContent(html_258da0fac9176c27a8369ce4ea71245e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e380b011c714f263fcee38c8d2dbf905.bindPopup(popup_f45f7abe287d6e85406941b462b7100a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de95b91bbbc1e2079d070cbb604b7d15 = L.circleMarker(\\n\",\n       \"                [27.9164, 112.4876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5cc125da26c34a3580e12f356f8ed4c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dcbb3aa8bcbfe3f321b0dc8de7636d04 = $(`&lt;div id=&quot;html_dcbb3aa8bcbfe3f321b0dc8de7636d04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4876             latitude:27.9164             pred_result:54.4439582824707             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5cc125da26c34a3580e12f356f8ed4c3.setContent(html_dcbb3aa8bcbfe3f321b0dc8de7636d04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de95b91bbbc1e2079d070cbb604b7d15.bindPopup(popup_5cc125da26c34a3580e12f356f8ed4c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6437600124c9baa6d6da9d75bbddfd48 = L.circleMarker(\\n\",\n       \"                [29.9972, 101.9533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac362ddc5496b5e95f1ef718de71b3a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10113f8920f92889db8dbcb405e95c99 = $(`&lt;div id=&quot;html_10113f8920f92889db8dbcb405e95c99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9533             latitude:29.9972             pred_result:-37.23832702636719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac362ddc5496b5e95f1ef718de71b3a6.setContent(html_10113f8920f92889db8dbcb405e95c99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6437600124c9baa6d6da9d75bbddfd48.bindPopup(popup_ac362ddc5496b5e95f1ef718de71b3a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6ccb86411abe98e6cca0f141751c41c = L.circleMarker(\\n\",\n       \"                [30.1506, 104.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58cbdbff893eae7047d3021f425e119c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9873e6da143eb55aaf8b2c4b33c534b4 = $(`&lt;div id=&quot;html_9873e6da143eb55aaf8b2c4b33c534b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6356             latitude:30.1506             pred_result:76.01170349121094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58cbdbff893eae7047d3021f425e119c.setContent(html_9873e6da143eb55aaf8b2c4b33c534b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6ccb86411abe98e6cca0f141751c41c.bindPopup(popup_58cbdbff893eae7047d3021f425e119c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab56436646ebe37d24fb0dc6ad01febc = L.circleMarker(\\n\",\n       \"                [43.84, 125.2786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9e415c83a76567e6e46deb66cf32fc2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_379c36d0035f2137e001c5d085622123 = $(`&lt;div id=&quot;html_379c36d0035f2137e001c5d085622123&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.2786             latitude:43.84             pred_result:31.547679901123047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9e415c83a76567e6e46deb66cf32fc2.setContent(html_379c36d0035f2137e001c5d085622123);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab56436646ebe37d24fb0dc6ad01febc.bindPopup(popup_a9e415c83a76567e6e46deb66cf32fc2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eaf391ee3a519c250b80307d247d7410 = L.circleMarker(\\n\",\n       \"                [36.1542, 113.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af6049050039a58c9e8a70ad2ec30add = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6272dc19e632898b26bd3d4b020ee97 = $(`&lt;div id=&quot;html_b6272dc19e632898b26bd3d4b020ee97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1097             latitude:36.1542             pred_result:40.39609909057617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af6049050039a58c9e8a70ad2ec30add.setContent(html_b6272dc19e632898b26bd3d4b020ee97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eaf391ee3a519c250b80307d247d7410.bindPopup(popup_af6049050039a58c9e8a70ad2ec30add)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be1b56c03e4ec3abc2ac012a2ed652d4 = L.circleMarker(\\n\",\n       \"                [32.4535, 105.8945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26c8ec7ba3cb9cab266ff501bd2d2420 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5416ff1b433430a846ae0e8fc66ef500 = $(`&lt;div id=&quot;html_5416ff1b433430a846ae0e8fc66ef500&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8945             latitude:32.4535             pred_result:53.36091995239258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26c8ec7ba3cb9cab266ff501bd2d2420.setContent(html_5416ff1b433430a846ae0e8fc66ef500);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be1b56c03e4ec3abc2ac012a2ed652d4.bindPopup(popup_26c8ec7ba3cb9cab266ff501bd2d2420)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82f04b3ffd1eea3524c25121fc50a0bd = L.circleMarker(\\n\",\n       \"                [24.8978, 118.5972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1848089be988b8245da1a2586994a667 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5219c782d05ce8b38286743ba61e18f1 = $(`&lt;div id=&quot;html_5219c782d05ce8b38286743ba61e18f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5972             latitude:24.8978             pred_result:61.87108612060547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1848089be988b8245da1a2586994a667.setContent(html_5219c782d05ce8b38286743ba61e18f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82f04b3ffd1eea3524c25121fc50a0bd.bindPopup(popup_1848089be988b8245da1a2586994a667)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffcadf77f035c509943c3d6f46cccd83 = L.circleMarker(\\n\",\n       \"                [29.6219, 106.65],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d50f2a3fd9123a7655f26226aae9f26b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0cacc39e829d51a639c98fb7c5c3e8e = $(`&lt;div id=&quot;html_b0cacc39e829d51a639c98fb7c5c3e8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.65             latitude:29.6219             pred_result:71.19503784179688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d50f2a3fd9123a7655f26226aae9f26b.setContent(html_b0cacc39e829d51a639c98fb7c5c3e8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffcadf77f035c509943c3d6f46cccd83.bindPopup(popup_d50f2a3fd9123a7655f26226aae9f26b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77618961869614971f41d6d3c6d344a5 = L.circleMarker(\\n\",\n       \"                [41.1636, 80.2828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_035b411202089502d36ea154fa30ab9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b36fb010aaf50992a9021fb055daaf3 = $(`&lt;div id=&quot;html_2b36fb010aaf50992a9021fb055daaf3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2828             latitude:41.1636             pred_result:55.57877731323242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_035b411202089502d36ea154fa30ab9d.setContent(html_2b36fb010aaf50992a9021fb055daaf3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77618961869614971f41d6d3c6d344a5.bindPopup(popup_035b411202089502d36ea154fa30ab9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_674856f7c987d182fa99ec42cdbeb68d = L.circleMarker(\\n\",\n       \"                [34.3617, 108.7233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20a3071250dde69a963f3feb980b9a4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_082c2dd506a369e12abe6b4a90f0e61a = $(`&lt;div id=&quot;html_082c2dd506a369e12abe6b4a90f0e61a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7233             latitude:34.3617             pred_result:58.13752746582031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20a3071250dde69a963f3feb980b9a4b.setContent(html_082c2dd506a369e12abe6b4a90f0e61a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_674856f7c987d182fa99ec42cdbeb68d.bindPopup(popup_20a3071250dde69a963f3feb980b9a4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73bcc0f692af9e491917d9f3ee6ae133 = L.circleMarker(\\n\",\n       \"                [41.9086, 123.5953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eeafac9082f76edd465246145ec4fca8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a73f6ed46e81ebec860f8e82115b4def = $(`&lt;div id=&quot;html_a73f6ed46e81ebec860f8e82115b4def&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.5953             latitude:41.9086             pred_result:41.23661804199219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eeafac9082f76edd465246145ec4fca8.setContent(html_a73f6ed46e81ebec860f8e82115b4def);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73bcc0f692af9e491917d9f3ee6ae133.bindPopup(popup_eeafac9082f76edd465246145ec4fca8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a780ad9cf66b009e31383dcfbb9ef5b0 = L.circleMarker(\\n\",\n       \"                [29.2786, 117.1983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_93347d7cfd19e02b894cdb27c2d74bd6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb88e5a7a625f28f301a0fb2d1119c1a = $(`&lt;div id=&quot;html_cb88e5a7a625f28f301a0fb2d1119c1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1983             latitude:29.2786             pred_result:41.439598083496094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_93347d7cfd19e02b894cdb27c2d74bd6.setContent(html_cb88e5a7a625f28f301a0fb2d1119c1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a780ad9cf66b009e31383dcfbb9ef5b0.bindPopup(popup_93347d7cfd19e02b894cdb27c2d74bd6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd68f3db50f60cc86c7790c415e406af = L.circleMarker(\\n\",\n       \"                [25.3167, 110.4144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_742e5448de621824e0ef85bda6fc969b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb4bd7f6b8577260eba0ec6aeeac0edd = $(`&lt;div id=&quot;html_eb4bd7f6b8577260eba0ec6aeeac0edd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4144             latitude:25.3167             pred_result:47.84389877319336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_742e5448de621824e0ef85bda6fc969b.setContent(html_eb4bd7f6b8577260eba0ec6aeeac0edd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd68f3db50f60cc86c7790c415e406af.bindPopup(popup_742e5448de621824e0ef85bda6fc969b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_670ff4dce1458dc391cadcfac3100148 = L.circleMarker(\\n\",\n       \"                [40.8115, 114.8814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_491cf07b340a4edda0652a27c92600c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aba69c5434465ea149cd5e34c7fccdfa = $(`&lt;div id=&quot;html_aba69c5434465ea149cd5e34c7fccdfa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8814             latitude:40.8115             pred_result:34.57954406738281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_491cf07b340a4edda0652a27c92600c1.setContent(html_aba69c5434465ea149cd5e34c7fccdfa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_670ff4dce1458dc391cadcfac3100148.bindPopup(popup_491cf07b340a4edda0652a27c92600c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57d7e69217f748080cb1fd3d4b3c1b4e = L.circleMarker(\\n\",\n       \"                [33.3261, 105.0822],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_997f7923eb7987ee4c842b014c7df8e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8eddef8467b2e659e2a41846a9eaa851 = $(`&lt;div id=&quot;html_8eddef8467b2e659e2a41846a9eaa851&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0822             latitude:33.3261             pred_result:29.919830322265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_997f7923eb7987ee4c842b014c7df8e4.setContent(html_8eddef8467b2e659e2a41846a9eaa851);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57d7e69217f748080cb1fd3d4b3c1b4e.bindPopup(popup_997f7923eb7987ee4c842b014c7df8e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1742bc4fb6cea2fb479e369b16d0aefa = L.circleMarker(\\n\",\n       \"                [31.2472, 120.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8a3caca6f5c5596b91c395aa64cc0f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d918efd46f4082b28c22fa246d03cc5 = $(`&lt;div id=&quot;html_4d918efd46f4082b28c22fa246d03cc5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.561             latitude:31.2472             pred_result:58.582122802734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8a3caca6f5c5596b91c395aa64cc0f1.setContent(html_4d918efd46f4082b28c22fa246d03cc5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1742bc4fb6cea2fb479e369b16d0aefa.bindPopup(popup_a8a3caca6f5c5596b91c395aa64cc0f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d511d64f0391d5c63b02db1a519eed81 = L.circleMarker(\\n\",\n       \"                [41.1442, 123.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73b5f073171a1e1386722cbef8e75280 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72684e153e105375249038f841d9212c = $(`&lt;div id=&quot;html_72684e153e105375249038f841d9212c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0485             latitude:41.1442             pred_result:45.15071105957031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73b5f073171a1e1386722cbef8e75280.setContent(html_72684e153e105375249038f841d9212c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d511d64f0391d5c63b02db1a519eed81.bindPopup(popup_73b5f073171a1e1386722cbef8e75280)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f0d7790a7b4a43773d06b56bd251883 = L.circleMarker(\\n\",\n       \"                [33.1842, 106.9893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_95a4883af1abc175a4a1a763fe3bbd66 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_685671f5e41496da63deb3a9e3008eae = $(`&lt;div id=&quot;html_685671f5e41496da63deb3a9e3008eae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9893             latitude:33.1842             pred_result:41.9581298828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_95a4883af1abc175a4a1a763fe3bbd66.setContent(html_685671f5e41496da63deb3a9e3008eae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f0d7790a7b4a43773d06b56bd251883.bindPopup(popup_95a4883af1abc175a4a1a763fe3bbd66)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b92d486ba73c4d8855c001a72984a7d = L.circleMarker(\\n\",\n       \"                [26.8919, 112.6006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c58ac226862286dd11f5cf3e09218d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74fa9701ce8dc60d26c795ce5dc0f700 = $(`&lt;div id=&quot;html_74fa9701ce8dc60d26c795ce5dc0f700&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6006             latitude:26.8919             pred_result:56.44190979003906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c58ac226862286dd11f5cf3e09218d6.setContent(html_74fa9701ce8dc60d26c795ce5dc0f700);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b92d486ba73c4d8855c001a72984a7d.bindPopup(popup_8c58ac226862286dd11f5cf3e09218d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_569c8467406568ea0be3be48cd9e765e = L.circleMarker(\\n\",\n       \"                [39.643, 118.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fafea23c69fb6c9ca9c0e41a75f2c5e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d763301f4edd971cdf831d6a004cbf36 = $(`&lt;div id=&quot;html_d763301f4edd971cdf831d6a004cbf36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.144             latitude:39.643             pred_result:61.00209426879883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fafea23c69fb6c9ca9c0e41a75f2c5e.setContent(html_d763301f4edd971cdf831d6a004cbf36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_569c8467406568ea0be3be48cd9e765e.bindPopup(popup_8fafea23c69fb6c9ca9c0e41a75f2c5e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adfef497da4eedbd8a1e44c1ef04d4ec = L.circleMarker(\\n\",\n       \"                [31.2703, 120.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2a2ad8f5f5dee0fa6c90b2e814d7437 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1cd6ec3c0d9376aa1d50880977f58929 = $(`&lt;div id=&quot;html_1cd6ec3c0d9376aa1d50880977f58929&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.613             latitude:31.2703             pred_result:58.60430145263672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2a2ad8f5f5dee0fa6c90b2e814d7437.setContent(html_1cd6ec3c0d9376aa1d50880977f58929);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adfef497da4eedbd8a1e44c1ef04d4ec.bindPopup(popup_b2a2ad8f5f5dee0fa6c90b2e814d7437)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7bff136a2da71ebc3d968bb134d19e2 = L.circleMarker(\\n\",\n       \"                [36.6377, 117.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3516c2b5a52ffe25efae09ab18bb54c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b90e51c33642f51cdf6ed6b37548fe96 = $(`&lt;div id=&quot;html_b90e51c33642f51cdf6ed6b37548fe96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9544             latitude:36.6377             pred_result:58.40874481201172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3516c2b5a52ffe25efae09ab18bb54c.setContent(html_b90e51c33642f51cdf6ed6b37548fe96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7bff136a2da71ebc3d968bb134d19e2.bindPopup(popup_f3516c2b5a52ffe25efae09ab18bb54c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_766533e4f082f05bfb2e5de6cabd7e6a = L.circleMarker(\\n\",\n       \"                [30.4551, 106.6388],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ddb899f42e9628af52d28fcfc8dbd56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0bfa05be0d967bcc2d739f113b1a4bb = $(`&lt;div id=&quot;html_d0bfa05be0d967bcc2d739f113b1a4bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6388             latitude:30.4551             pred_result:65.43902587890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ddb899f42e9628af52d28fcfc8dbd56.setContent(html_d0bfa05be0d967bcc2d739f113b1a4bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_766533e4f082f05bfb2e5de6cabd7e6a.bindPopup(popup_5ddb899f42e9628af52d28fcfc8dbd56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2adf5afa9132d990ec7b0424c7d33736 = L.circleMarker(\\n\",\n       \"                [31.8934, 102.2402],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_133086835814cf36a5d0da9c4350b0ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_271b7773d51d391354892306369f12e5 = $(`&lt;div id=&quot;html_271b7773d51d391354892306369f12e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2402             latitude:31.8934             pred_result:-17.912120819091797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_133086835814cf36a5d0da9c4350b0ef.setContent(html_271b7773d51d391354892306369f12e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2adf5afa9132d990ec7b0424c7d33736.bindPopup(popup_133086835814cf36a5d0da9c4350b0ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d7f2faba9f8616fab8ef9fa8e100628 = L.circleMarker(\\n\",\n       \"                [38.8394, 117.457],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d273fae7bbd0f711f26282b351a2f764 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14368cf80cb1010d15520d76c3ee833c = $(`&lt;div id=&quot;html_14368cf80cb1010d15520d76c3ee833c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.457             latitude:38.8394             pred_result:64.87806701660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d273fae7bbd0f711f26282b351a2f764.setContent(html_14368cf80cb1010d15520d76c3ee833c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d7f2faba9f8616fab8ef9fa8e100628.bindPopup(popup_d273fae7bbd0f711f26282b351a2f764)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9aa52d829f53e7d600b4338f3e46d420 = L.circleMarker(\\n\",\n       \"                [32.0144, 118.777],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e03d298cdf02e92e1cfa5a5874627a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b36e75a3d1e93121d3ac9941c2ddef70 = $(`&lt;div id=&quot;html_b36e75a3d1e93121d3ac9941c2ddef70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.777             latitude:32.0144             pred_result:46.81578826904297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e03d298cdf02e92e1cfa5a5874627a2.setContent(html_b36e75a3d1e93121d3ac9941c2ddef70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9aa52d829f53e7d600b4338f3e46d420.bindPopup(popup_3e03d298cdf02e92e1cfa5a5874627a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88aaefe724bc706fe9b46e6ca0413180 = L.circleMarker(\\n\",\n       \"                [27.8336, 113.251],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b346c7e4308210b8ab6251139ab570d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43397f57b4fd37482de4d1c27d4de950 = $(`&lt;div id=&quot;html_43397f57b4fd37482de4d1c27d4de950&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.251             latitude:27.8336             pred_result:45.5484619140625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b346c7e4308210b8ab6251139ab570d.setContent(html_43397f57b4fd37482de4d1c27d4de950);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88aaefe724bc706fe9b46e6ca0413180.bindPopup(popup_8b346c7e4308210b8ab6251139ab570d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8767e3da1f5a5c3ea94464df3a40cee = L.circleMarker(\\n\",\n       \"                [22.8693, 112.844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15fa97133246f888a2ae0aab08b7a733 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6e05515f525418070e8a8af5b14eacb = $(`&lt;div id=&quot;html_d6e05515f525418070e8a8af5b14eacb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.844             latitude:22.8693             pred_result:54.118412017822266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15fa97133246f888a2ae0aab08b7a733.setContent(html_d6e05515f525418070e8a8af5b14eacb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8767e3da1f5a5c3ea94464df3a40cee.bindPopup(popup_15fa97133246f888a2ae0aab08b7a733)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43f1e4c44fc550cd09cfcf2d8f5ba5b0 = L.circleMarker(\\n\",\n       \"                [26.5697, 106.7164],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42acb5de3d8f226006574651ba092ebb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e42e68a0b9306345f9c73633afb6155d = $(`&lt;div id=&quot;html_e42e68a0b9306345f9c73633afb6155d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7164             latitude:26.5697             pred_result:36.29497528076172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42acb5de3d8f226006574651ba092ebb.setContent(html_e42e68a0b9306345f9c73633afb6155d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43f1e4c44fc550cd09cfcf2d8f5ba5b0.bindPopup(popup_42acb5de3d8f226006574651ba092ebb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dab0c197ef6a6ce596b5c0da50846c57 = L.circleMarker(\\n\",\n       \"                [23.1572, 112.885],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b94d2b74c84b70cf16d69aaa99c43cfc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7ad2432c91ed6926fa06316ce5b2a1d = $(`&lt;div id=&quot;html_a7ad2432c91ed6926fa06316ce5b2a1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.885             latitude:23.1572             pred_result:53.3078498840332             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b94d2b74c84b70cf16d69aaa99c43cfc.setContent(html_a7ad2432c91ed6926fa06316ce5b2a1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dab0c197ef6a6ce596b5c0da50846c57.bindPopup(popup_b94d2b74c84b70cf16d69aaa99c43cfc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c91e8d376a39ac9630b0fb19229d762d = L.circleMarker(\\n\",\n       \"                [30.6197, 114.2836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_404482364b460b5876564d79731b26e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fccad886ae0330fc907fb67df674782 = $(`&lt;div id=&quot;html_2fccad886ae0330fc907fb67df674782&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2836             latitude:30.6197             pred_result:49.189971923828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_404482364b460b5876564d79731b26e9.setContent(html_2fccad886ae0330fc907fb67df674782);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c91e8d376a39ac9630b0fb19229d762d.bindPopup(popup_404482364b460b5876564d79731b26e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9fec5c5c7729c5fc2b03ac8b967c409 = L.circleMarker(\\n\",\n       \"                [33.6284, 116.9677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5dd1f06714ed6663f011478951e743e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e51a36e75d898f27b9f30ea6bab18fc3 = $(`&lt;div id=&quot;html_e51a36e75d898f27b9f30ea6bab18fc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9677             latitude:33.6284             pred_result:49.698848724365234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5dd1f06714ed6663f011478951e743e6.setContent(html_e51a36e75d898f27b9f30ea6bab18fc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9fec5c5c7729c5fc2b03ac8b967c409.bindPopup(popup_5dd1f06714ed6663f011478951e743e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13476cb9dd47c8708a9f8ce434ff770f = L.circleMarker(\\n\",\n       \"                [22.5908, 114.263],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_571d1c719f765eef11fa418daf5b12c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_882c02778d4af3f0552b33e6aa720c4a = $(`&lt;div id=&quot;html_882c02778d4af3f0552b33e6aa720c4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.263             latitude:22.5908             pred_result:54.92636489868164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_571d1c719f765eef11fa418daf5b12c9.setContent(html_882c02778d4af3f0552b33e6aa720c4a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13476cb9dd47c8708a9f8ce434ff770f.bindPopup(popup_571d1c719f765eef11fa418daf5b12c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_321308ed4ed28200184ddda36ca59fd5 = L.circleMarker(\\n\",\n       \"                [41.8336, 123.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c4aa40b1d768c4fcc10d9c9363e78c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03a0b42c72f1d0f0d1690258e805938d = $(`&lt;div id=&quot;html_03a0b42c72f1d0f0d1690258e805938d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.542             latitude:41.8336             pred_result:41.85012435913086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c4aa40b1d768c4fcc10d9c9363e78c3.setContent(html_03a0b42c72f1d0f0d1690258e805938d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_321308ed4ed28200184ddda36ca59fd5.bindPopup(popup_0c4aa40b1d768c4fcc10d9c9363e78c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_102f254741625838fbf4845ad6c9df87 = L.circleMarker(\\n\",\n       \"                [34.3528, 107.3906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6630971d329740eff04f3750fdbbb003 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7dd4dd20de955839bf53f39f1d89caaa = $(`&lt;div id=&quot;html_7dd4dd20de955839bf53f39f1d89caaa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3906             latitude:34.3528             pred_result:45.215576171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6630971d329740eff04f3750fdbbb003.setContent(html_7dd4dd20de955839bf53f39f1d89caaa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_102f254741625838fbf4845ad6c9df87.bindPopup(popup_6630971d329740eff04f3750fdbbb003)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_449f7bae30f62d582e1ad32bdd803d92 = L.circleMarker(\\n\",\n       \"                [38.817, 106.3394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_630ecd0708dc9c2af059beef5e1cb843 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee416d757f105694b8128edffae49a2f = $(`&lt;div id=&quot;html_ee416d757f105694b8128edffae49a2f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3394             latitude:38.817             pred_result:50.291038513183594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_630ecd0708dc9c2af059beef5e1cb843.setContent(html_ee416d757f105694b8128edffae49a2f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_449f7bae30f62d582e1ad32bdd803d92.bindPopup(popup_630ecd0708dc9c2af059beef5e1cb843)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2988d40e79430402181f7d032d9f7c18 = L.circleMarker(\\n\",\n       \"                [37.8561, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ae1ea6209babea78f2a48206aa6cc16 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cfb1346ce206d64b654b88eb2d12f4e = $(`&lt;div id=&quot;html_8cfb1346ce206d64b654b88eb2d12f4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:37.8561             pred_result:41.533111572265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ae1ea6209babea78f2a48206aa6cc16.setContent(html_8cfb1346ce206d64b654b88eb2d12f4e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2988d40e79430402181f7d032d9f7c18.bindPopup(popup_7ae1ea6209babea78f2a48206aa6cc16)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_847486501588208190f922ee82c76947 = L.circleMarker(\\n\",\n       \"                [28.6459, 121.273],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6452be840e10c769c813a86d497c7ed1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06a4f41291f9c69d050a22b6e1ea72ad = $(`&lt;div id=&quot;html_06a4f41291f9c69d050a22b6e1ea72ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.273             latitude:28.6459             pred_result:45.59209060668945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6452be840e10c769c813a86d497c7ed1.setContent(html_06a4f41291f9c69d050a22b6e1ea72ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_847486501588208190f922ee82c76947.bindPopup(popup_6452be840e10c769c813a86d497c7ed1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23ae94f76d2a362820d0676d1a92bdfe = L.circleMarker(\\n\",\n       \"                [30.4576, 106.6303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f8cfb986703eb11dbf7cd6c1c6bc9e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8851ef8f34f85d74572ef4a518c83a0a = $(`&lt;div id=&quot;html_8851ef8f34f85d74572ef4a518c83a0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6303             latitude:30.4576             pred_result:65.45555114746094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f8cfb986703eb11dbf7cd6c1c6bc9e9.setContent(html_8851ef8f34f85d74572ef4a518c83a0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23ae94f76d2a362820d0676d1a92bdfe.bindPopup(popup_0f8cfb986703eb11dbf7cd6c1c6bc9e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9089bdddce664cfd41a02fbe56b3276 = L.circleMarker(\\n\",\n       \"                [34.5667, 117.732],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a850b5d648bc5591d9a477d176b53d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30e470af918cce3c52b77e4f238adc2c = $(`&lt;div id=&quot;html_30e470af918cce3c52b77e4f238adc2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.732             latitude:34.5667             pred_result:55.980918884277344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a850b5d648bc5591d9a477d176b53d1.setContent(html_30e470af918cce3c52b77e4f238adc2c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9089bdddce664cfd41a02fbe56b3276.bindPopup(popup_7a850b5d648bc5591d9a477d176b53d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_32f8462a484c058094c7560686926e5c = L.circleMarker(\\n\",\n       \"                [37.9358, 102.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c6e75670bf3da437f722e7236cb301a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_16f21d752c37d1d40f518ea145165a11 = $(`&lt;div id=&quot;html_16f21d752c37d1d40f518ea145165a11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6469             latitude:37.9358             pred_result:39.11247253417969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c6e75670bf3da437f722e7236cb301a.setContent(html_16f21d752c37d1d40f518ea145165a11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_32f8462a484c058094c7560686926e5c.bindPopup(popup_8c6e75670bf3da437f722e7236cb301a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7b36d6b06dedd97ccf66f7061db730b = L.circleMarker(\\n\",\n       \"                [31.89708, 121.1518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73ec9dfcdaafbd9880d978d73245f327 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d609e5c05bafcbc63e4b67cb14bf250a = $(`&lt;div id=&quot;html_d609e5c05bafcbc63e4b67cb14bf250a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1518             latitude:31.89708             pred_result:52.940467834472656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73ec9dfcdaafbd9880d978d73245f327.setContent(html_d609e5c05bafcbc63e4b67cb14bf250a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7b36d6b06dedd97ccf66f7061db730b.bindPopup(popup_73ec9dfcdaafbd9880d978d73245f327)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a20e8fe11a3a19fbe49fea3f3608b9c = L.circleMarker(\\n\",\n       \"                [27.6178, 113.865],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e79a65649fb2044b591c6c3f23e7cd07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fee145dbbbcd9741d23b4c06c27d9c82 = $(`&lt;div id=&quot;html_fee145dbbbcd9741d23b4c06c27d9c82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.865             latitude:27.6178             pred_result:40.449703216552734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e79a65649fb2044b591c6c3f23e7cd07.setContent(html_fee145dbbbcd9741d23b4c06c27d9c82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a20e8fe11a3a19fbe49fea3f3608b9c.bindPopup(popup_e79a65649fb2044b591c6c3f23e7cd07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_043e43d68a5da10f16fee9bab69a72a8 = L.circleMarker(\\n\",\n       \"                [25.0661, 117.0256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6516ededa3c4dc90d404fd398cbf583 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77b43458015c92fe4f34fcf35faecf95 = $(`&lt;div id=&quot;html_77b43458015c92fe4f34fcf35faecf95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0256             latitude:25.0661             pred_result:46.973655700683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6516ededa3c4dc90d404fd398cbf583.setContent(html_77b43458015c92fe4f34fcf35faecf95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_043e43d68a5da10f16fee9bab69a72a8.bindPopup(popup_d6516ededa3c4dc90d404fd398cbf583)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c21a7379dc94fe64d25609d1da700a91 = L.circleMarker(\\n\",\n       \"                [37.0967, 114.4821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c919fd67c4b64bef674ffcb4a38ea931 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_692b76a1f9607025eb3eab2b9d338c8f = $(`&lt;div id=&quot;html_692b76a1f9607025eb3eab2b9d338c8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4821             latitude:37.0967             pred_result:67.01548767089844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c919fd67c4b64bef674ffcb4a38ea931.setContent(html_692b76a1f9607025eb3eab2b9d338c8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c21a7379dc94fe64d25609d1da700a91.bindPopup(popup_c919fd67c4b64bef674ffcb4a38ea931)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9c366ec0a58af6b38cf5af53a5fdfb2 = L.circleMarker(\\n\",\n       \"                [26.5689, 106.6971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43c414ae91f50e8d393c0edf807926f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c3161f42a071e908646ef503f88d23f = $(`&lt;div id=&quot;html_3c3161f42a071e908646ef503f88d23f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6971             latitude:26.5689             pred_result:36.194061279296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43c414ae91f50e8d393c0edf807926f1.setContent(html_3c3161f42a071e908646ef503f88d23f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9c366ec0a58af6b38cf5af53a5fdfb2.bindPopup(popup_43c414ae91f50e8d393c0edf807926f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_362127dd48c59f5de423f3474560ed33 = L.circleMarker(\\n\",\n       \"                [34.5004, 109.5049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b553c0e68cf342c9f464eebe3b45e11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6d35455f5bc3f90f6ba7e98386be15e = $(`&lt;div id=&quot;html_e6d35455f5bc3f90f6ba7e98386be15e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5049             latitude:34.5004             pred_result:57.55829620361328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b553c0e68cf342c9f464eebe3b45e11.setContent(html_e6d35455f5bc3f90f6ba7e98386be15e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_362127dd48c59f5de423f3474560ed33.bindPopup(popup_6b553c0e68cf342c9f464eebe3b45e11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_016cd1292c3acdc8875cd7c64dbe0e21 = L.circleMarker(\\n\",\n       \"                [30.9447, 118.7581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6663f92b4cdbbb6d48f4ce37ff4e457f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b883240b0218effebc2fac777d3b871 = $(`&lt;div id=&quot;html_2b883240b0218effebc2fac777d3b871&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7581             latitude:30.9447             pred_result:51.61431121826172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6663f92b4cdbbb6d48f4ce37ff4e457f.setContent(html_2b883240b0218effebc2fac777d3b871);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_016cd1292c3acdc8875cd7c64dbe0e21.bindPopup(popup_6663f92b4cdbbb6d48f4ce37ff4e457f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_357438ea096dcfa4ef20c46c59c11214 = L.circleMarker(\\n\",\n       \"                [30.7636, 106.0642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_498d9357c034b4ff7c967343454a9921 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be7e15c6b357323ae2a9b73ed022ade6 = $(`&lt;div id=&quot;html_be7e15c6b357323ae2a9b73ed022ade6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0642             latitude:30.7636             pred_result:68.35292053222656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_498d9357c034b4ff7c967343454a9921.setContent(html_be7e15c6b357323ae2a9b73ed022ade6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_357438ea096dcfa4ef20c46c59c11214.bindPopup(popup_498d9357c034b4ff7c967343454a9921)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9bdca36da0e19d5cfae5c5939247dcc = L.circleMarker(\\n\",\n       \"                [25.2178, 110.2869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e056e10e0e089427782824857f24ca9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b92158be95cae8e6262e2b23aea5e513 = $(`&lt;div id=&quot;html_b92158be95cae8e6262e2b23aea5e513&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2869             latitude:25.2178             pred_result:45.11709213256836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e056e10e0e089427782824857f24ca9f.setContent(html_b92158be95cae8e6262e2b23aea5e513);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9bdca36da0e19d5cfae5c5939247dcc.bindPopup(popup_e056e10e0e089427782824857f24ca9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f2401ddaa76385727a5afbdbd02404e = L.circleMarker(\\n\",\n       \"                [23.9011, 106.6103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_082ccf10a5972425e4ad9d1a1635e6e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15ef33edd60312257aa98774e7678d66 = $(`&lt;div id=&quot;html_15ef33edd60312257aa98774e7678d66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6103             latitude:23.9011             pred_result:53.43679428100586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_082ccf10a5972425e4ad9d1a1635e6e1.setContent(html_15ef33edd60312257aa98774e7678d66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f2401ddaa76385727a5afbdbd02404e.bindPopup(popup_082ccf10a5972425e4ad9d1a1635e6e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76884472ac780a16e1b5a920509d0608 = L.circleMarker(\\n\",\n       \"                [38.1398, 114.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d35399fdc057fc93bd2c4118d089c07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40a202c4dfee445216c0c5ba064dc19d = $(`&lt;div id=&quot;html_40a202c4dfee445216c0c5ba064dc19d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5019             latitude:38.1398             pred_result:62.43418884277344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d35399fdc057fc93bd2c4118d089c07.setContent(html_40a202c4dfee445216c0c5ba064dc19d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76884472ac780a16e1b5a920509d0608.bindPopup(popup_8d35399fdc057fc93bd2c4118d089c07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ed9a38c953e52bcc5c67cd21fe9d2fa = L.circleMarker(\\n\",\n       \"                [31.2036, 121.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3cc37d517616b91fc726dc375d4d602f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f067f6b4585cbd4874c2df4c7baa200 = $(`&lt;div id=&quot;html_1f067f6b4585cbd4874c2df4c7baa200&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.478             latitude:31.2036             pred_result:53.38300704956055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3cc37d517616b91fc726dc375d4d602f.setContent(html_1f067f6b4585cbd4874c2df4c7baa200);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ed9a38c953e52bcc5c67cd21fe9d2fa.bindPopup(popup_3cc37d517616b91fc726dc375d4d602f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b79f64b0da12b998c39da8f27a1cbc12 = L.circleMarker(\\n\",\n       \"                [31.882, 120.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c5094f38b825d5e8e8c07e0ff5395e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eba51e0059d6805ff5fd7cc39f0b3fe2 = $(`&lt;div id=&quot;html_eba51e0059d6805ff5fd7cc39f0b3fe2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.55             latitude:31.882             pred_result:52.9677848815918             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c5094f38b825d5e8e8c07e0ff5395e9.setContent(html_eba51e0059d6805ff5fd7cc39f0b3fe2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b79f64b0da12b998c39da8f27a1cbc12.bindPopup(popup_0c5094f38b825d5e8e8c07e0ff5395e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6764226b88e028c085fa4f53b9f459ec = L.circleMarker(\\n\",\n       \"                [40.1461, 124.3933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d9c2ba063781d8a1f68f1c4866e3c13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da3de853bc20b732a713098b051ee531 = $(`&lt;div id=&quot;html_da3de853bc20b732a713098b051ee531&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3933             latitude:40.1461             pred_result:42.82515335083008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d9c2ba063781d8a1f68f1c4866e3c13.setContent(html_da3de853bc20b732a713098b051ee531);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6764226b88e028c085fa4f53b9f459ec.bindPopup(popup_7d9c2ba063781d8a1f68f1c4866e3c13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93e8fe006d92b651e162d6f5d18b7b07 = L.circleMarker(\\n\",\n       \"                [39.6719, 106.8219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_544375906a2d7e4486c044526b25b44e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51576c9912e5bb04355ba8c157642f77 = $(`&lt;div id=&quot;html_51576c9912e5bb04355ba8c157642f77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8219             latitude:39.6719             pred_result:54.48501968383789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_544375906a2d7e4486c044526b25b44e.setContent(html_51576c9912e5bb04355ba8c157642f77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93e8fe006d92b651e162d6f5d18b7b07.bindPopup(popup_544375906a2d7e4486c044526b25b44e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2db97dee60f876d353249bc34952cc4e = L.circleMarker(\\n\",\n       \"                [33.575, 119.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c6988128b26566dd4fdebb15575ccea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b1aeaea15ea32b1b6bf32382800a774 = $(`&lt;div id=&quot;html_6b1aeaea15ea32b1b6bf32382800a774&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.007             latitude:33.575             pred_result:55.15989303588867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c6988128b26566dd4fdebb15575ccea.setContent(html_6b1aeaea15ea32b1b6bf32382800a774);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2db97dee60f876d353249bc34952cc4e.bindPopup(popup_4c6988128b26566dd4fdebb15575ccea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94ac1531c41c1d16ee887ca5b9e4d8bd = L.circleMarker(\\n\",\n       \"                [29.5983, 106.296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_820ceba95919ed128eef7e3aabbc72dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6fe7f0afd4280b8625ea4eee7540edb = $(`&lt;div id=&quot;html_f6fe7f0afd4280b8625ea4eee7540edb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.296             latitude:29.5983             pred_result:69.794921875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_820ceba95919ed128eef7e3aabbc72dd.setContent(html_f6fe7f0afd4280b8625ea4eee7540edb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94ac1531c41c1d16ee887ca5b9e4d8bd.bindPopup(popup_820ceba95919ed128eef7e3aabbc72dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bca8b10ae1432dd2b2c43e65f9a69da4 = L.circleMarker(\\n\",\n       \"                [43.7256, 126.6772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ba701c78e4e6aebff2d8f517eec1a96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97b035af4142cadaceb6733f977c4cee = $(`&lt;div id=&quot;html_97b035af4142cadaceb6733f977c4cee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6772             latitude:43.7256             pred_result:22.26202392578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ba701c78e4e6aebff2d8f517eec1a96.setContent(html_97b035af4142cadaceb6733f977c4cee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bca8b10ae1432dd2b2c43e65f9a69da4.bindPopup(popup_9ba701c78e4e6aebff2d8f517eec1a96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24b2c61fe4e876bf417dc84da305d53b = L.circleMarker(\\n\",\n       \"                [45.6033, 84.8861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99e70802f220b078f3679776b929d011 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc2fa0d97a69dca7445150283d04952b = $(`&lt;div id=&quot;html_dc2fa0d97a69dca7445150283d04952b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8861             latitude:45.6033             pred_result:61.741268157958984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99e70802f220b078f3679776b929d011.setContent(html_dc2fa0d97a69dca7445150283d04952b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24b2c61fe4e876bf417dc84da305d53b.bindPopup(popup_99e70802f220b078f3679776b929d011)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6414c58797ca27a3296ed0097547e42 = L.circleMarker(\\n\",\n       \"                [30.4519, 114.8858],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b5147a874c4633bc47dcfa72fc481d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abaaa6a67e319de8cbd49655527c0916 = $(`&lt;div id=&quot;html_abaaa6a67e319de8cbd49655527c0916&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8858             latitude:30.4519             pred_result:50.22079086303711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b5147a874c4633bc47dcfa72fc481d8.setContent(html_abaaa6a67e319de8cbd49655527c0916);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6414c58797ca27a3296ed0097547e42.bindPopup(popup_9b5147a874c4633bc47dcfa72fc481d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_405b401bb615ba21e9c5d0457a0cf5cc = L.circleMarker(\\n\",\n       \"                [43.9167, 125.323],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80789d4d376b6ba083330d4ee9923e32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_631b4d23910b316063f75d4841a44e0b = $(`&lt;div id=&quot;html_631b4d23910b316063f75d4841a44e0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.323             latitude:43.9167             pred_result:31.43006134033203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80789d4d376b6ba083330d4ee9923e32.setContent(html_631b4d23910b316063f75d4841a44e0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_405b401bb615ba21e9c5d0457a0cf5cc.bindPopup(popup_80789d4d376b6ba083330d4ee9923e32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e639092a91e9421adc0f3faa79f44c38 = L.circleMarker(\\n\",\n       \"                [36.1855, 113.0844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef808a58deadcfb8e01c88121c828d84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9c4a464f3297ec276706477317e8880 = $(`&lt;div id=&quot;html_b9c4a464f3297ec276706477317e8880&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0844444             latitude:36.1855             pred_result:40.81219482421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef808a58deadcfb8e01c88121c828d84.setContent(html_b9c4a464f3297ec276706477317e8880);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e639092a91e9421adc0f3faa79f44c38.bindPopup(popup_ef808a58deadcfb8e01c88121c828d84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fdafa04f8725162637cd75e652c95e8a = L.circleMarker(\\n\",\n       \"                [35.303, 113.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b4c728df287a93b8ba1411736a57620 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_422a614697ee502b6a2b4ca8b28f6cb2 = $(`&lt;div id=&quot;html_422a614697ee502b6a2b4ca8b28f6cb2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.883             latitude:35.303             pred_result:69.8442611694336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b4c728df287a93b8ba1411736a57620.setContent(html_422a614697ee502b6a2b4ca8b28f6cb2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fdafa04f8725162637cd75e652c95e8a.bindPopup(popup_6b4c728df287a93b8ba1411736a57620)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac95d52b59822e8cebee9f2797ac1125 = L.circleMarker(\\n\",\n       \"                [34.7745, 117.5852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c4d9ae34ff6fa1e38062c3067d96ade = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f107c8c9742817fe5e3336f87695e437 = $(`&lt;div id=&quot;html_f107c8c9742817fe5e3336f87695e437&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5852             latitude:34.7745             pred_result:57.80011749267578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c4d9ae34ff6fa1e38062c3067d96ade.setContent(html_f107c8c9742817fe5e3336f87695e437);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac95d52b59822e8cebee9f2797ac1125.bindPopup(popup_3c4d9ae34ff6fa1e38062c3067d96ade)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7820a08405455c31e06e9f4bea81c98b = L.circleMarker(\\n\",\n       \"                [44.561, 129.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf8a84bd35e5a7f670151190e6ce9795 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33d2806a0f37b0021f83884a87a8d601 = $(`&lt;div id=&quot;html_33d2806a0f37b0021f83884a87a8d601&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.61             latitude:44.561             pred_result:27.70075798034668             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf8a84bd35e5a7f670151190e6ce9795.setContent(html_33d2806a0f37b0021f83884a87a8d601);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7820a08405455c31e06e9f4bea81c98b.bindPopup(popup_cf8a84bd35e5a7f670151190e6ce9795)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a305aba16e79ee568e771a04b133baa6 = L.circleMarker(\\n\",\n       \"                [22.3708, 107.3701],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35c270fb2830067b0949d409421720f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14e944112c10991afc2d8deaf9f61ad5 = $(`&lt;div id=&quot;html_14e944112c10991afc2d8deaf9f61ad5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3701             latitude:22.3708             pred_result:56.083309173583984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35c270fb2830067b0949d409421720f3.setContent(html_14e944112c10991afc2d8deaf9f61ad5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a305aba16e79ee568e771a04b133baa6.bindPopup(popup_35c270fb2830067b0949d409421720f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c283c119a8da717a14d395468c238fd = L.circleMarker(\\n\",\n       \"                [31.381, 120.999],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6497c28bce959852fc6fa91246f2a0f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_523726d5df54be72f0ff262fa920f99a = $(`&lt;div id=&quot;html_523726d5df54be72f0ff262fa920f99a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.999             latitude:31.381             pred_result:56.69873809814453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6497c28bce959852fc6fa91246f2a0f3.setContent(html_523726d5df54be72f0ff262fa920f99a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c283c119a8da717a14d395468c238fd.bindPopup(popup_6497c28bce959852fc6fa91246f2a0f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87ce2ceb5c4e4d9973af9b5533f46b4a = L.circleMarker(\\n\",\n       \"                [27.3125, 105.2864],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7e2e7c63662a9224f9c65f0ff1beeca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf4942269d1372d6d3dc3c1c64a72345 = $(`&lt;div id=&quot;html_bf4942269d1372d6d3dc3c1c64a72345&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.2864             latitude:27.3125             pred_result:24.874305725097656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7e2e7c63662a9224f9c65f0ff1beeca.setContent(html_bf4942269d1372d6d3dc3c1c64a72345);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87ce2ceb5c4e4d9973af9b5533f46b4a.bindPopup(popup_f7e2e7c63662a9224f9c65f0ff1beeca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57309982313835bf540b95448f11c66e = L.circleMarker(\\n\",\n       \"                [23.4168, 103.386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_491db8194684820713c866b3d36117d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff9d68903630727977b9ee53bf950485 = $(`&lt;div id=&quot;html_ff9d68903630727977b9ee53bf950485&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.386             latitude:23.4168             pred_result:25.637725830078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_491db8194684820713c866b3d36117d0.setContent(html_ff9d68903630727977b9ee53bf950485);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57309982313835bf540b95448f11c66e.bindPopup(popup_491db8194684820713c866b3d36117d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a5ada05a1d4402a926cfd261f361972 = L.circleMarker(\\n\",\n       \"                [41.1556, 122.0247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7360f57501e563db53e576487f63c2a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_724f0005032c97c7216d48321e307090 = $(`&lt;div id=&quot;html_724f0005032c97c7216d48321e307090&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0247             latitude:41.1556             pred_result:50.679195404052734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7360f57501e563db53e576487f63c2a2.setContent(html_724f0005032c97c7216d48321e307090);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a5ada05a1d4402a926cfd261f361972.bindPopup(popup_7360f57501e563db53e576487f63c2a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4f098532fc05f0105f0ec81f21ef046 = L.circleMarker(\\n\",\n       \"                [37.177, 119.941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0866e49a3973841751d85d1f2336e17 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b2b2e1df65776008ee1efc0976e965c = $(`&lt;div id=&quot;html_8b2b2e1df65776008ee1efc0976e965c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.941             latitude:37.177             pred_result:63.4593620300293             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0866e49a3973841751d85d1f2336e17.setContent(html_8b2b2e1df65776008ee1efc0976e965c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4f098532fc05f0105f0ec81f21ef046.bindPopup(popup_d0866e49a3973841751d85d1f2336e17)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b9e0706715462002b9a9f8b00d2ac6e = L.circleMarker(\\n\",\n       \"                [27.8014, 114.3806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01173149af34eab1676e6acfd93641de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c78ed54a3ed0c51b7517b78956335562 = $(`&lt;div id=&quot;html_c78ed54a3ed0c51b7517b78956335562&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3806             latitude:27.8014             pred_result:32.15903091430664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01173149af34eab1676e6acfd93641de.setContent(html_c78ed54a3ed0c51b7517b78956335562);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b9e0706715462002b9a9f8b00d2ac6e.bindPopup(popup_01173149af34eab1676e6acfd93641de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab459b61eaa476d251452807800f068e = L.circleMarker(\\n\",\n       \"                [32.6389, 110.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd8e3367eb9b75aa93818f95c0e97624 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66cca3c73bbf457c9e3c5f34161c6c20 = $(`&lt;div id=&quot;html_66cca3c73bbf457c9e3c5f34161c6c20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.7258             latitude:32.6389             pred_result:51.21171569824219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd8e3367eb9b75aa93818f95c0e97624.setContent(html_66cca3c73bbf457c9e3c5f34161c6c20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab459b61eaa476d251452807800f068e.bindPopup(popup_dd8e3367eb9b75aa93818f95c0e97624)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a0178ddaa0c319f5c6aade089440b37 = L.circleMarker(\\n\",\n       \"                [24.428, 98.5842],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e2d8b3d71c88dd61ff334244c68ecaf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52149ac3357e58580c05391554ba6cb1 = $(`&lt;div id=&quot;html_52149ac3357e58580c05391554ba6cb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5842             latitude:24.428             pred_result:24.733360290527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e2d8b3d71c88dd61ff334244c68ecaf.setContent(html_52149ac3357e58580c05391554ba6cb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a0178ddaa0c319f5c6aade089440b37.bindPopup(popup_2e2d8b3d71c88dd61ff334244c68ecaf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14dbeb56d40833d38cdd0eac06cccc58 = L.circleMarker(\\n\",\n       \"                [25.8333, 114.9322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be43467f6245f89ed8242b4f8a18aad0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5a5a35e9c1cc7f4ca7f0ebd06e0aebc = $(`&lt;div id=&quot;html_a5a5a35e9c1cc7f4ca7f0ebd06e0aebc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9322             latitude:25.8333             pred_result:61.70798110961914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be43467f6245f89ed8242b4f8a18aad0.setContent(html_a5a5a35e9c1cc7f4ca7f0ebd06e0aebc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14dbeb56d40833d38cdd0eac06cccc58.bindPopup(popup_be43467f6245f89ed8242b4f8a18aad0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9269f9c2f08b10f3813eda2729693540 = L.circleMarker(\\n\",\n       \"                [33.567, 114.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b098a6dadc9b59645f6c05301655c4fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_28aa34a4c25a880c40cbb968d28e52b6 = $(`&lt;div id=&quot;html_28aa34a4c25a880c40cbb968d28e52b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.056             latitude:33.567             pred_result:60.85844802856445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b098a6dadc9b59645f6c05301655c4fc.setContent(html_28aa34a4c25a880c40cbb968d28e52b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9269f9c2f08b10f3813eda2729693540.bindPopup(popup_b098a6dadc9b59645f6c05301655c4fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba9ea62e16f2e3710b50b2c853d897e4 = L.circleMarker(\\n\",\n       \"                [33.0014, 97.0],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f6103dc24ec054ee0b9badae579a41a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6608c5b8a87775a2a5dd2e02445f3aa0 = $(`&lt;div id=&quot;html_6608c5b8a87775a2a5dd2e02445f3aa0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.0             latitude:33.0014             pred_result:-35.55229187011719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f6103dc24ec054ee0b9badae579a41a.setContent(html_6608c5b8a87775a2a5dd2e02445f3aa0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba9ea62e16f2e3710b50b2c853d897e4.bindPopup(popup_9f6103dc24ec054ee0b9badae579a41a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a25cfeb89a0b2c81f663be9a770e401b = L.circleMarker(\\n\",\n       \"                [26.2378, 117.6028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fae58fff67df0747226e672183d2bab7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e643e977dbf22ff09f6502a35fdea6c4 = $(`&lt;div id=&quot;html_e643e977dbf22ff09f6502a35fdea6c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6028             latitude:26.2378             pred_result:52.93667984008789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fae58fff67df0747226e672183d2bab7.setContent(html_e643e977dbf22ff09f6502a35fdea6c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a25cfeb89a0b2c81f663be9a770e401b.bindPopup(popup_fae58fff67df0747226e672183d2bab7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_005613df08be964f32945ab91a5db13c = L.circleMarker(\\n\",\n       \"                [41.7561, 123.535],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f01c7956b18748bfb560f33d9eefb0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_907fd7bcf82a0ed2a351ae3fb28bfc35 = $(`&lt;div id=&quot;html_907fd7bcf82a0ed2a351ae3fb28bfc35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.535             latitude:41.7561             pred_result:41.95183181762695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f01c7956b18748bfb560f33d9eefb0b.setContent(html_907fd7bcf82a0ed2a351ae3fb28bfc35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_005613df08be964f32945ab91a5db13c.bindPopup(popup_1f01c7956b18748bfb560f33d9eefb0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19fcecd26715682260c93754954ae6bf = L.circleMarker(\\n\",\n       \"                [25.0836, 102.728],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6993cfe3db31e822dcfbacb6f556ee68 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbaf4596ee9bcbe5e4cd070d09772509 = $(`&lt;div id=&quot;html_cbaf4596ee9bcbe5e4cd070d09772509&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.728             latitude:25.0836             pred_result:9.566688537597656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6993cfe3db31e822dcfbacb6f556ee68.setContent(html_cbaf4596ee9bcbe5e4cd070d09772509);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19fcecd26715682260c93754954ae6bf.bindPopup(popup_6993cfe3db31e822dcfbacb6f556ee68)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c4b969699f08032ac4ce3e48ebcca6d1 = L.circleMarker(\\n\",\n       \"                [34.3547, 107.1431],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b06db73b17fd492e478f73c8b3ba1d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_779c9213be11c1fe7144daac1f802b11 = $(`&lt;div id=&quot;html_779c9213be11c1fe7144daac1f802b11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1431             latitude:34.3547             pred_result:43.94306564331055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b06db73b17fd492e478f73c8b3ba1d9.setContent(html_779c9213be11c1fe7144daac1f802b11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c4b969699f08032ac4ce3e48ebcca6d1.bindPopup(popup_0b06db73b17fd492e478f73c8b3ba1d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19dd8d0fcfb74cb4f558cd684ddc82ee = L.circleMarker(\\n\",\n       \"                [39.7153, 76.1861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9849f68a22e23b68e8a4547336b829b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73041e64c82c6c28b3ea7bf312760dad = $(`&lt;div id=&quot;html_73041e64c82c6c28b3ea7bf312760dad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:76.1861             latitude:39.7153             pred_result:63.50935363769531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9849f68a22e23b68e8a4547336b829b7.setContent(html_73041e64c82c6c28b3ea7bf312760dad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19dd8d0fcfb74cb4f558cd684ddc82ee.bindPopup(popup_9849f68a22e23b68e8a4547336b829b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4a278daefda12b0ebbb059599ab61c7 = L.circleMarker(\\n\",\n       \"                [24.9617, 118.6108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee09077e19aa32709659e0be8ed4152a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c7628fd5216514a3c37b51f0f5482c5 = $(`&lt;div id=&quot;html_4c7628fd5216514a3c37b51f0f5482c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6108             latitude:24.9617             pred_result:58.29017639160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee09077e19aa32709659e0be8ed4152a.setContent(html_4c7628fd5216514a3c37b51f0f5482c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4a278daefda12b0ebbb059599ab61c7.bindPopup(popup_ee09077e19aa32709659e0be8ed4152a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa8c5ffad5fe81847c63a30ea1327ab6 = L.circleMarker(\\n\",\n       \"                [36.283, 120.008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a041a77fe1cc10e60648b30ae6e3860c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2782e70f1cb519ae32de07439b55020b = $(`&lt;div id=&quot;html_2782e70f1cb519ae32de07439b55020b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.008             latitude:36.283             pred_result:61.149051666259766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a041a77fe1cc10e60648b30ae6e3860c.setContent(html_2782e70f1cb519ae32de07439b55020b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa8c5ffad5fe81847c63a30ea1327ab6.bindPopup(popup_a041a77fe1cc10e60648b30ae6e3860c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45f7a7340d52a6701dcca15c329434a4 = L.circleMarker(\\n\",\n       \"                [22.5811, 113.074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96e24bde47ed86451db128fbd6356275 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dccb9d2c91eb1586f148940470e36cf9 = $(`&lt;div id=&quot;html_dccb9d2c91eb1586f148940470e36cf9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.074             latitude:22.5811             pred_result:49.16590118408203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96e24bde47ed86451db128fbd6356275.setContent(html_dccb9d2c91eb1586f148940470e36cf9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45f7a7340d52a6701dcca15c329434a4.bindPopup(popup_96e24bde47ed86451db128fbd6356275)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b650f603b7a611708b1c94de9242176 = L.circleMarker(\\n\",\n       \"                [29.8264, 106.424],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5decb6e23b7fa081afd35ea79c08aa02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8baac57060e04a7cb7587ce90dc06520 = $(`&lt;div id=&quot;html_8baac57060e04a7cb7587ce90dc06520&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.424             latitude:29.8264             pred_result:69.33349609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5decb6e23b7fa081afd35ea79c08aa02.setContent(html_8baac57060e04a7cb7587ce90dc06520);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b650f603b7a611708b1c94de9242176.bindPopup(popup_5decb6e23b7fa081afd35ea79c08aa02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c96ddf521d6fde6649dd3eab930fe432 = L.circleMarker(\\n\",\n       \"                [43.8358, 126.5844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea01eec3fe6c54af504d0adc1f40bee7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44f53a12b8ed03925e312a9a64b56118 = $(`&lt;div id=&quot;html_44f53a12b8ed03925e312a9a64b56118&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5844             latitude:43.8358             pred_result:23.694202423095703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea01eec3fe6c54af504d0adc1f40bee7.setContent(html_44f53a12b8ed03925e312a9a64b56118);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c96ddf521d6fde6649dd3eab930fe432.bindPopup(popup_ea01eec3fe6c54af504d0adc1f40bee7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a005e5ab110b9fd8763705d268822715 = L.circleMarker(\\n\",\n       \"                [29.9919, 120.605],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e52a43329bd795bacff461ef9fc0142 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_805a3efeac337888250f24136b689383 = $(`&lt;div id=&quot;html_805a3efeac337888250f24136b689383&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.605             latitude:29.9919             pred_result:48.11296844482422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e52a43329bd795bacff461ef9fc0142.setContent(html_805a3efeac337888250f24136b689383);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a005e5ab110b9fd8763705d268822715.bindPopup(popup_0e52a43329bd795bacff461ef9fc0142)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_229298bae685f6e23e79951ea04070af = L.circleMarker(\\n\",\n       \"                [44.0114, 87.2997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6a1f7c12e3213a1a0d0eeb7c0f87a22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f5746c7c3c57e829e1ca71e6cabff80 = $(`&lt;div id=&quot;html_9f5746c7c3c57e829e1ca71e6cabff80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2997             latitude:44.0114             pred_result:58.12718200683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6a1f7c12e3213a1a0d0eeb7c0f87a22.setContent(html_9f5746c7c3c57e829e1ca71e6cabff80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_229298bae685f6e23e79951ea04070af.bindPopup(popup_b6a1f7c12e3213a1a0d0eeb7c0f87a22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf9d561e6a97f0516c0ea1e05547c407 = L.circleMarker(\\n\",\n       \"                [35.5102, 102.0199],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa5ffb5730b7aa18ba218f5dca01b002 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46762c0072f5bcdfa5166980a43fbba8 = $(`&lt;div id=&quot;html_46762c0072f5bcdfa5166980a43fbba8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.0199             latitude:35.5102             pred_result:-9.154464721679688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa5ffb5730b7aa18ba218f5dca01b002.setContent(html_46762c0072f5bcdfa5166980a43fbba8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf9d561e6a97f0516c0ea1e05547c407.bindPopup(popup_aa5ffb5730b7aa18ba218f5dca01b002)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f02dfadde49e1ff18114e811de299759 = L.circleMarker(\\n\",\n       \"                [31.7133, 118.6439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ddc4d95034451fe4ed2b12ef9f034351 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51f1f9d70f3193efdd61dd9daa4ef5d0 = $(`&lt;div id=&quot;html_51f1f9d70f3193efdd61dd9daa4ef5d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6439             latitude:31.7133             pred_result:49.80084991455078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ddc4d95034451fe4ed2b12ef9f034351.setContent(html_51f1f9d70f3193efdd61dd9daa4ef5d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f02dfadde49e1ff18114e811de299759.bindPopup(popup_ddc4d95034451fe4ed2b12ef9f034351)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_3aa7de69644c02251ceb9492aabbe712 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_3aa7de69644c02251ceb9492aabbe712.color = d3.scale.threshold()\\n\",\n       \"              .domain([4.0, 4.154308617234469, 4.3086172344689375, 4.462925851703407, 4.617234468937876, 4.771543086172345, 4.925851703406813, 5.080160320641283, 5.234468937875752, 5.38877755511022, 5.543086172344689, 5.697394789579159, 5.851703406813627, 6.006012024048096, 6.160320641282565, 6.314629258517034, 6.468937875751503, 6.623246492985972, 6.77755511022044, 6.93186372745491, 7.086172344689379, 7.240480961923847, 7.394789579158317, 7.5490981963927855, 7.703406813627255, 7.857715430861724, 8.012024048096192, 8.16633266533066, 8.32064128256513, 8.474949899799599, 8.629258517034067, 8.783567134268537, 8.937875751503006, 9.092184368737474, 9.246492985971944, 9.400801603206414, 9.55511022044088, 9.70941883767535, 9.86372745490982, 10.018036072144287, 10.172344689378757, 10.326653306613228, 10.480961923847694, 10.635270541082164, 10.789579158316634, 10.943887775551103, 11.098196392785571, 11.252505010020041, 11.40681362725451, 11.561122244488978, 11.715430861723448, 11.869739478957916, 12.024048096192384, 12.178356713426854, 12.332665330661323, 12.486973947895791, 12.641282565130261, 12.79559118236473, 12.949899799599198, 13.104208416833668, 13.258517034068136, 13.412825651302605, 13.567134268537075, 13.721442885771543, 13.875751503006011, 14.030060120240481, 14.18436873747495, 14.338677354709418, 14.492985971943888, 14.647294589178356, 14.801603206412826, 14.955911823647295, 15.110220440881763, 15.264529058116233, 15.418837675350701, 15.57314629258517, 15.72745490981964, 15.881763527054108, 16.036072144288575, 16.190380761523045, 16.344689378757515, 16.498997995991985, 16.653306613226455, 16.80761523046092, 16.961923847695388, 17.11623246492986, 17.27054108216433, 17.4248496993988, 17.57915831663327, 17.733466933867735, 17.887775551102205, 18.04208416833667, 18.196392785571142, 18.350701402805612, 18.505010020040082, 18.65931863727455, 18.81362725450902, 18.967935871743485, 19.122244488977955, 19.276553106212425, 19.430861723446895, 19.585170340681362, 19.739478957915832, 19.8937875751503, 20.04809619238477, 20.20240480961924, 20.35671342685371, 20.511022044088175, 20.665330661322646, 20.819639278557116, 20.973947895791582, 21.128256513026052, 21.282565130260522, 21.43687374749499, 21.59118236472946, 21.74549098196393, 21.899799599198396, 22.054108216432866, 22.208416833667336, 22.362725450901802, 22.517034068136272, 22.671342685370742, 22.82565130260521, 22.97995991983968, 23.13426853707415, 23.288577154308616, 23.442885771543086, 23.597194388777556, 23.751503006012022, 23.905811623246493, 24.060120240480963, 24.21442885771543, 24.3687374749499, 24.52304609218437, 24.677354709418836, 24.831663326653306, 24.985971943887776, 25.140280561122246, 25.294589178356713, 25.448897795591183, 25.603206412825653, 25.75751503006012, 25.91182364729459, 26.06613226452906, 26.220440881763526, 26.374749498997996, 26.529058116232466, 26.683366733466933, 26.837675350701403, 26.991983967935873, 27.14629258517034, 27.30060120240481, 27.45490981963928, 27.609218436873746, 27.763527054108216, 27.917835671342687, 28.072144288577153, 28.226452905811623, 28.380761523046093, 28.53507014028056, 28.68937875751503, 28.8436873747495, 28.997995991983966, 29.152304609218437, 29.306613226452907, 29.460921843687373, 29.615230460921843, 29.769539078156313, 29.92384769539078, 30.07815631262525, 30.23246492985972, 30.386773547094187, 30.541082164328657, 30.695390781563127, 30.849699398797597, 31.004008016032063, 31.158316633266534, 31.312625250501004, 31.46693386773547, 31.62124248496994, 31.77555110220441, 31.929859719438877, 32.08416833667334, 32.23847695390782, 32.392785571142284, 32.547094188376754, 32.701402805611224, 32.85571142284569, 33.010020040080164, 33.16432865731463, 33.3186372745491, 33.47294589178357, 33.62725450901804, 33.78156312625251, 33.93587174348697, 34.09018036072145, 34.24448897795591, 34.39879759519038, 34.55310621242485, 34.707414829659314, 34.86172344689379, 35.016032064128254, 35.170340681362724, 35.324649298597194, 35.478957915831664, 35.633266533066134, 35.7875751503006, 35.941883767535074, 36.09619238476954, 36.25050100200401, 36.40480961923848, 36.55911823647295, 36.71342685370742, 36.86773547094188, 37.02204408817635, 37.17635270541082, 37.33066132264529, 37.48496993987976, 37.63927855711423, 37.793587174348694, 37.947895791583164, 38.102204408817634, 38.256513026052104, 38.410821643286575, 38.565130260521045, 38.71943887775551, 38.87374749498998, 39.02805611222445, 39.18236472945892, 39.33667334669339, 39.49098196392786, 39.64529058116233, 39.79959919839679, 39.95390781563126, 40.10821643286573, 40.2625250501002, 40.41683366733467, 40.57114228456914, 40.725450901803605, 40.879759519038075, 41.034068136272545, 41.188376753507015, 41.342685370741485, 41.496993987975955, 41.65130260521042, 41.80561122244489, 41.95991983967936, 42.11422845691383, 42.2685370741483, 42.42284569138277, 42.57715430861723, 42.7314629258517, 42.88577154308617, 43.04008016032064, 43.19438877755511, 43.34869739478958, 43.503006012024045, 43.657314629258515, 43.811623246492985, 43.965931863727455, 44.120240480961925, 44.274549098196395, 44.42885771543086, 44.58316633266533, 44.7374749498998, 44.89178356713427, 45.04609218436874, 45.20040080160321, 45.35470941883767, 45.50901803607214, 45.66332665330661, 45.81763527054108, 45.97194388777555, 46.12625250501002, 46.28056112224449, 46.434869739478955, 46.589178356713425, 46.743486973947896, 46.897795591182366, 47.052104208416836, 47.206412825651306, 47.36072144288577, 47.51503006012024, 47.66933867735471, 47.82364729458918, 47.97795591182365, 48.13226452905812, 48.28657314629258, 48.44088176352705, 48.59519038076152, 48.74949899799599, 48.90380761523046, 49.05811623246493, 49.212424849699396, 49.366733466933866, 49.521042084168336, 49.675350701402806, 49.829659318637276, 49.983967935871746, 50.13827655310621, 50.29258517034068, 50.44689378757515, 50.60120240480962, 50.75551102204409, 50.90981963927856, 51.06412825651302, 51.21843687374749, 51.37274549098196, 51.52705410821643, 51.6813627254509, 51.83567134268537, 51.98997995991984, 52.144288577154306, 52.298597194388776, 52.452905811623246, 52.607214428857716, 52.76152304609219, 52.91583166332666, 53.07014028056112, 53.22444889779559, 53.37875751503006, 53.53306613226453, 53.687374749499, 53.84168336673347, 53.99599198396793, 54.1503006012024, 54.30460921843687, 54.45891783567134, 54.61322645290581, 54.76753507014028, 54.921843687374746, 55.07615230460922, 55.23046092184369, 55.38476953907816, 55.53907815631263, 55.6933867735471, 55.84769539078156, 56.00200400801603, 56.1563126252505, 56.31062124248497, 56.46492985971944, 56.61923847695391, 56.77354709418837, 56.92785571142284, 57.08216432865731, 57.236472945891784, 57.390781563126254, 57.545090180360724, 57.699398797595194, 57.85370741482966, 58.00801603206413, 58.1623246492986, 58.31663326653307, 58.47094188376754, 58.62525050100201, 58.77955911823647, 58.93386773547094, 59.08817635270541, 59.24248496993988, 59.39679358717435, 59.55110220440882, 59.705410821643284, 59.859719438877754, 60.014028056112224, 60.168336673346694, 60.322645290581164, 60.476953907815634, 60.6312625250501, 60.78557114228457, 60.93987975951904, 61.09418837675351, 61.24849699398798, 61.40280561122245, 61.55711422845691, 61.71142284569138, 61.86573146292585, 62.02004008016032, 62.17434869739479, 62.32865731462926, 62.482965931863724, 62.637274549098194, 62.791583166332664, 62.945891783567134, 63.100200400801604, 63.254509018036075, 63.408817635270545, 63.56312625250501, 63.71743486973948, 63.87174348697395, 64.02605210420842, 64.1803607214429, 64.33466933867736, 64.48897795591182, 64.6432865731463, 64.79759519038076, 64.95190380761522, 65.1062124248497, 65.26052104208418, 65.41482965931863, 65.5691382765531, 65.72344689378758, 65.87775551102204, 66.03206412825651, 66.18637274549098, 66.34068136272545, 66.49498997995991, 66.64929859719439, 66.80360721442887, 66.95791583166333, 67.11222444889779, 67.26653306613227, 67.42084168336673, 67.5751503006012, 67.72945891783567, 67.88376753507015, 68.03807615230461, 68.19238476953907, 68.34669338677355, 68.50100200400801, 68.65531062124248, 68.80961923847696, 68.96392785571142, 69.1182364729459, 69.27254509018036, 69.42685370741484, 69.5811623246493, 69.73547094188376, 69.88977955911824, 70.0440881763527, 70.19839679358718, 70.35270541082164, 70.50701402805612, 70.66132264529058, 70.81563126252505, 70.96993987975952, 71.12424849699399, 71.27855711422846, 71.43286573146293, 71.58717434869739, 71.74148296593187, 71.89579158316633, 72.0501002004008, 72.20440881763527, 72.35871743486975, 72.51302605210421, 72.66733466933867, 72.82164328657315, 72.97595190380761, 73.13026052104209, 73.28456913827655, 73.43887775551102, 73.59318637274549, 73.74749498997996, 73.90180360721443, 74.0561122244489, 74.21042084168337, 74.36472945891784, 74.5190380761523, 74.67334669338678, 74.82765531062124, 74.98196392785572, 75.13627254509018, 75.29058116232466, 75.44488977955912, 75.59919839679358, 75.75350701402806, 75.90781563126252, 76.062124248497, 76.21643286573146, 76.37074148296593, 76.5250501002004, 76.67935871743487, 76.83366733466934, 76.9879759519038, 77.14228456913828, 77.29659318637275, 77.45090180360721, 77.60521042084169, 77.75951903807615, 77.91382765531063, 78.06813627254509, 78.22244488977955, 78.37675350701403, 78.53106212424849, 78.68537074148297, 78.83967935871743, 78.99398797595191, 79.14829659318637, 79.30260521042084, 79.45691382765531, 79.61122244488978, 79.76553106212425, 79.91983967935872, 80.07414829659318, 80.22845691382766, 80.38276553106212, 80.5370741482966, 80.69138276553106, 80.84569138276554, 81.0])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_3aa7de69644c02251ceb9492aabbe712.x = d3.scale.linear()\\n\",\n       \"              .domain([4.0, 81.0])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_3aa7de69644c02251ceb9492aabbe712.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_3aa7de69644c02251ceb9492aabbe712.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_3aa7de69644c02251ceb9492aabbe712.legend.addTo(map_f84db0a1e012e93574f45c9e92b6c046);\\n\",\n       \"\\n\",\n       \"    color_map_3aa7de69644c02251ceb9492aabbe712.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_3aa7de69644c02251ceb9492aabbe712.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([4.0, &#x27;&#x27;, &#x27;&#x27;, 15.55, &#x27;&#x27;, &#x27;&#x27;, 27.1, &#x27;&#x27;, &#x27;&#x27;, 38.65, &#x27;&#x27;, &#x27;&#x27;, 50.2, &#x27;&#x27;, &#x27;&#x27;, 61.75, &#x27;&#x27;, &#x27;&#x27;, 73.3, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_3aa7de69644c02251ceb9492aabbe712.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_3aa7de69644c02251ceb9492aabbe712.g = color_map_3aa7de69644c02251ceb9492aabbe712.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_3aa7de69644c02251ceb9492aabbe712.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_3aa7de69644c02251ceb9492aabbe712.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_3aa7de69644c02251ceb9492aabbe712.x(color_map_3aa7de69644c02251ceb9492aabbe712.color.domain()[i - 1]) : color_map_3aa7de69644c02251ceb9492aabbe712.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_3aa7de69644c02251ceb9492aabbe712.color.domain().length ? color_map_3aa7de69644c02251ceb9492aabbe712.x(color_map_3aa7de69644c02251ceb9492aabbe712.color.domain()[i]) : color_map_3aa7de69644c02251ceb9492aabbe712.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_3aa7de69644c02251ceb9492aabbe712.g.call(color_map_3aa7de69644c02251ceb9492aabbe712.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x1db1dbac650>\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"valid_pred_dst = datasets.init_predict_dataset(data=val_dataset.dataframe,\\n\",\n    \"                                               train_dataset=train_dataset,\\n\",\n    \"                                               x_column=[\\n\",\n    \"                                                   'dem', 'w10', 'd10', 't2m', 'aod_sat', 'tp'],\\n\",\n    \"                                               spatial_column=['lng', 'lat'])\\n\",\n    \"valid_pred_res = gnnwr.predict(valid_pred_dst)\\n\",\n    \"visualizer.dot_map(data=valid_pred_res, lon_column='lng', lat_column='lat',\\n\",\n    \"                   y_column='pred_result', colors=['blue', 'green', 'yellow', 'red'], vmin=4, vmax=81)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"GNNWR\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.13.7\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 1\n}\n"
  },
  {
    "path": "demo/demo_gnnwr_zh_CN.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 中国PM2.5浓度空间分布估算  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 1 项目介绍\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.1 项目背景\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"07F60126A6AC44478EC9751ADCA2B877\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"\\n\",\n    \"\\n\",\n    \"中国作为世界上最大的发展中国家，伴随着工业化和城市化的不断推进，空气质量问题日益严重。生态环境部发布的《2017 中国生态环境状况公报》指出，全国 338 个地级及以上城市中 239 个城市的环境空气质量超标，占比超过 70%。空气质量问题已严重影响人们的日常出行与身体健康，制约着经济的可持续发展，成为了公众及政府部门的关注热点。  \\n\",\n    \"\\n\",\n    \"PM2.5是指在空气动力学领域中直径不大于2.5微米的可吸入颗粒物，是空气质量评价的主要指标之一。全面掌握PM2.5浓度的空间分布规律，表征大气污染的空间过程和环境行为，对于支撑大气污染监测预警与综合治理、保护人类健康与社会可持续发展，具有重大的现实意义和指导价值。截至2017 年底，中国环境监测总站已建成超过 400 个地面空气质量监测站点，并对外发布包括PM2.5在内的每小时空气质量监测数据，提供了高精度、高可靠的实时监测结果。然而，由于地面监测站点空间分布不均、覆盖程度不高，现有研究难以对其监测数据进行有效地时空分析与深度挖掘。与地面监测不同，基于卫星的遥感观测可获取高覆盖的大气环境空间数据集，例如大气气溶胶光学厚度（Aerosol Optical Depth，AOD）数据。大量研究表明，AOD 与 PM2.5浓度具有较强的相关性。研究PM2.5浓度与基于遥感反演的AOD等相关因子之间的空间回归关系，能为获得整个研究区域的PM2.5浓度分布提供有效解决方案。  \\n\",\n    \"\\n\",\n    \"![总体内容图](https://pub.mdpi-res.com/remotesensing/remotesensing-13-01979/article_deploy/html/images/remotesensing-13-01979-ag.png?1621475926)  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.2 数据说明  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"D05AAC185E3D49EC8ABB64A3E23EB1BD\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"许多研究表明融合气象条件、地表高程等因子能进一步提高 PM2.5 空间估算精度。本案例在选取AOD数据作为辅助因子的基础上，进一步增加了温度（TEMP）、降水量（TP）、风速（WS）、风向（WD）等气象因子以及地表高程（DEM）因子作为模型的自变量输入，研究时间尺度为 2017 年平均，具体内容如下：  \\n\",\n    \"\\n\",\n    \"（1）PM2.5 监测站点数据。2017 年 1 月 1 日至2017 年 12 月 31 日的每小时 PM2.5浓度观测值来自中国环境监测总站。PM2.5浓度采用锥形元件振荡微量天平或β衰减法测量，校准和质量控制符合国家标准 GB3095-2012。PM2.5数据按照年尺度进行平均。  \\n\",\n    \"\\n\",\n    \"![图片](https://www.mdpi.com/remotesensing/remotesensing-13-01979/article_deploy/html/images/remotesensing-13-01979-g001.png)  \\n\",\n    \"\\n\",\n    \"（2）气溶胶数据。气溶胶（AOD）数据来自LAADS网站，包括Terra 和 Aqua 两种采用暗像元法反演的 3 km 分辨率气溶胶数据产品（MOD04_3K 和 MYD04_3k），以及采用深蓝算法反演的 10 km 分 辨 率 气 溶 胶 数 据 产 品（MOD04_L2 和MYD04_L2）。在文章中，3 km分辨率AOD产品是PM2.5估算的主要数据来源。当3 km分辨率数据缺失时，则尽可能采用 10 km分辨率数据进行重采样替代。为保证 AOD 数据的可靠性，本文将一年中AOD数值缺失天数超过20%的区域进行剔除，即采用无值表示。  \\n\",\n    \"\\n\",\n    \"\\n\",\n    \" \\n\",\n    \"（3）DEM数据。DEM数据来自NOAA的ETO-PO1全球地表高程模型，分辨率为1弧分。  \\n\",\n    \"\\n\",\n    \"（4）温度、降水量、风速、风向数据。来自于EC-MWF全球气候再分析模式ERA5的数据产品，提供0.5度分辨率的小时级格网数据。  \\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.3 模型介绍\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"86D4493F77124498975E055E70A236E9\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"基于GWR的地理加权思想，吴森森将OLR 和神经网络模型结合提出了一种地理神经网络加权回归（Geographically Neural Network Weight-ed Regression，GNNWR）模型。该模型通过利用神经网络的学习能力，能够处理回归关系的空间异质性和复杂非线性特征，比OLR、GWR等模型具有更好的拟合精度和更优的预测性能。本案例旨在建立一种基于GNNWR的PM2.5浓度空间估算模型，实现PM2.5回归关系中空间异质与非线性特征的精准拟合，进而获得中国高精度、高合理性的 PM2.5浓度空间分布。  \\n\",\n    \"\\n\",\n    \"基于类似于 GWR 的地理加权思想，GNNWR模型认为回归关系的空间差异性可视为空间非平稳性在不同位置对“OLR 回归关系”的波动水平变化。因此，在本案例PM2.5浓度空间估算实验中，GNNWR模型结构定义如下：  \\n\",\n    \" \\n\",\n    \"![GNNWR模型结构定义](https://mydde.deep-time.org/s3/static-files/upload/upload/1694059648746_1.png)  \\n\",\n    \"\\n\",\n    \"式中：$(u_i，v_i)$是第i个样本点的空间坐标，$β =(β_0，β_1，\\\\cdots ，β_6)$是OLR模型的回归系数，反映了整个区域PM2.5回归关系的平均水平。OLR系数的估计矩阵表示如下：  \\n\",\n    \"\\n\",\n    \"![OLR系数的估计矩阵表](https://mydde.deep-time.org/s3/static-files/upload/upload/1694059665465_2.png)  \\n\",\n    \"\\n\",\n    \"其中：  \\n\",\n    \"\\n\",\n    \"![OLR系数的估计矩阵表](https://mydde.deep-time.org/s3/static-files/upload/upload/1694059673642_3.png)  \\n\",\n    \"\\n\",\n    \"![基于GNNWR的PM2.5浓度空间估算模型定义](https://mydde.deep-time.org/s3/static-files/upload/upload/1694003342595_1.png)  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.4 参考文献\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"杜震洪,吴森森,王中一,等.基于地理神经网络加权回归的中国PM2.5浓度空间分布估算方法[J].地球信息科学学报,2020,22(1):122-135. [ Du Z H, Wu S S, Wang Z Y, et al. Estimating ground-level PM2.5 concentrations across China using geographically neural network weighted regression[J]. Journal of Geo-information Science,2020,22(1):122-135. ] \\n\",\n    \"\\n\",\n    \"[DOI:10.12082/dqxxkx.2020.190533](https://www.researching.cn/ArticlePdf/m40005/2020/22/1/01000122.pdf)  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.5 主要内容\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"E3BFF987D9404CCF8E3C5C639A47034A\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"\\n\",\n    \"1. 模型训练  \\n\",\n    \"2. 模型保存、加载与可视化  \\n\",\n    \"3. 模型预测  \\n\",\n    \"\\n\",\n    \"![模型示意图](https://www.mdpi.com/remotesensing/remotesensing-13-01979/article_deploy/html/images/remotesensing-13-01979-g002.png)  \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"33DD2DA7E0C244B3B610181368A805CE\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 2 准备工作\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"A0798D319B524FC48F524866D805C37A\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"安装与导入必要的库\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"id\": \"D0BC6C42245D4720B21C5B166B6D8CEF\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from gnnwr import models, datasets, utils\\n\",\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import folium\\n\",\n    \"import torch.nn as nn\\n\",\n    \"from sklearn.metrics import r2_score as r2\\n\",\n    \"import matplotlib.pyplot as plt\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"53E5F38F7AB3444EBDADA824C49964C0\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 3 模型训练\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"A52C0D05A5A14FA7A67DD5F3879E91DA\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.1 导入训练数据\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"id\": \"C9E0CFB808FD4B9F86CD6B58F373E68C\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>station_id</th>\\n\",\n       \"      <th>lng</th>\\n\",\n       \"      <th>lat</th>\\n\",\n       \"      <th>date</th>\\n\",\n       \"      <th>PM2_5</th>\\n\",\n       \"      <th>row_index</th>\\n\",\n       \"      <th>col_index</th>\\n\",\n       \"      <th>proj_x</th>\\n\",\n       \"      <th>proj_y</th>\\n\",\n       \"      <th>dem</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>t2m</th>\\n\",\n       \"      <th>sp</th>\\n\",\n       \"      <th>tp</th>\\n\",\n       \"      <th>blh</th>\\n\",\n       \"      <th>e</th>\\n\",\n       \"      <th>r</th>\\n\",\n       \"      <th>u10</th>\\n\",\n       \"      <th>v10</th>\\n\",\n       \"      <th>aod_sat</th>\\n\",\n       \"      <th>ndvi</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1001A</td>\\n\",\n       \"      <td>116.366</td>\\n\",\n       \"      <td>39.8673</td>\\n\",\n       \"      <td>20170601</td>\\n\",\n       \"      <td>54.733894</td>\\n\",\n       \"      <td>2201</td>\\n\",\n       \"      <td>6867</td>\\n\",\n       \"      <td>1650847.552</td>\\n\",\n       \"      <td>1370268.366</td>\\n\",\n       \"      <td>46</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>284.561066</td>\\n\",\n       \"      <td>100809.27340</td>\\n\",\n       \"      <td>0.001006</td>\\n\",\n       \"      <td>134.995636</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>46.315975</td>\\n\",\n       \"      <td>0.425366</td>\\n\",\n       \"      <td>0.170262</td>\\n\",\n       \"      <td>0.870967</td>\\n\",\n       \"      <td>2401</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>1002A</td>\\n\",\n       \"      <td>116.170</td>\\n\",\n       \"      <td>40.2865</td>\\n\",\n       \"      <td>20170601</td>\\n\",\n       \"      <td>48.080737</td>\\n\",\n       \"      <td>2134</td>\\n\",\n       \"      <td>6835</td>\\n\",\n       \"      <td>1625003.973</td>\\n\",\n       \"      <td>1416959.964</td>\\n\",\n       \"      <td>420</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>282.907684</td>\\n\",\n       \"      <td>97125.08594</td>\\n\",\n       \"      <td>0.001044</td>\\n\",\n       \"      <td>157.775970</td>\\n\",\n       \"      <td>-0.000006</td>\\n\",\n       \"      <td>53.605503</td>\\n\",\n       \"      <td>0.211734</td>\\n\",\n       \"      <td>-0.676848</td>\\n\",\n       \"      <td>0.712080</td>\\n\",\n       \"      <td>5255</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>1003A</td>\\n\",\n       \"      <td>116.434</td>\\n\",\n       \"      <td>39.9522</td>\\n\",\n       \"      <td>20170601</td>\\n\",\n       \"      <td>54.898592</td>\\n\",\n       \"      <td>2188</td>\\n\",\n       \"      <td>6877</td>\\n\",\n       \"      <td>1653776.710</td>\\n\",\n       \"      <td>1381524.305</td>\\n\",\n       \"      <td>48</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>284.492249</td>\\n\",\n       \"      <td>100830.96880</td>\\n\",\n       \"      <td>0.001002</td>\\n\",\n       \"      <td>129.971298</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>45.537464</td>\\n\",\n       \"      <td>0.266666</td>\\n\",\n       \"      <td>0.069172</td>\\n\",\n       \"      <td>0.875811</td>\\n\",\n       \"      <td>2609</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>1004A</td>\\n\",\n       \"      <td>116.434</td>\\n\",\n       \"      <td>39.8745</td>\\n\",\n       \"      <td>20170601</td>\\n\",\n       \"      <td>52.266382</td>\\n\",\n       \"      <td>2200</td>\\n\",\n       \"      <td>6877</td>\\n\",\n       \"      <td>1655828.045</td>\\n\",\n       \"      <td>1372270.098</td>\\n\",\n       \"      <td>45</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>284.636200</td>\\n\",\n       \"      <td>100936.80470</td>\\n\",\n       \"      <td>0.001010</td>\\n\",\n       \"      <td>138.793961</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>45.387913</td>\\n\",\n       \"      <td>0.299403</td>\\n\",\n       \"      <td>0.227950</td>\\n\",\n       \"      <td>0.869679</td>\\n\",\n       \"      <td>2420</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>1005A</td>\\n\",\n       \"      <td>116.473</td>\\n\",\n       \"      <td>39.9716</td>\\n\",\n       \"      <td>20170601</td>\\n\",\n       \"      <td>53.189076</td>\\n\",\n       \"      <td>2185</td>\\n\",\n       \"      <td>6884</td>\\n\",\n       \"      <td>1656224.681</td>\\n\",\n       \"      <td>1384491.842</td>\\n\",\n       \"      <td>40</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>284.506561</td>\\n\",\n       \"      <td>100880.17970</td>\\n\",\n       \"      <td>0.001019</td>\\n\",\n       \"      <td>130.520599</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>44.790119</td>\\n\",\n       \"      <td>0.169121</td>\\n\",\n       \"      <td>0.079546</td>\\n\",\n       \"      <td>0.873232</td>\\n\",\n       \"      <td>3296</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 22 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"  station_id      lng      lat      date      PM2_5  row_index  col_index  \\\\\\n\",\n       \"0      1001A  116.366  39.8673  20170601  54.733894       2201       6867   \\n\",\n       \"1      1002A  116.170  40.2865  20170601  48.080737       2134       6835   \\n\",\n       \"2      1003A  116.434  39.9522  20170601  54.898592       2188       6877   \\n\",\n       \"3      1004A  116.434  39.8745  20170601  52.266382       2200       6877   \\n\",\n       \"4      1005A  116.473  39.9716  20170601  53.189076       2185       6884   \\n\",\n       \"\\n\",\n       \"        proj_x       proj_y  dem  ...         t2m            sp        tp  \\\\\\n\",\n       \"0  1650847.552  1370268.366   46  ...  284.561066  100809.27340  0.001006   \\n\",\n       \"1  1625003.973  1416959.964  420  ...  282.907684   97125.08594  0.001044   \\n\",\n       \"2  1653776.710  1381524.305   48  ...  284.492249  100830.96880  0.001002   \\n\",\n       \"3  1655828.045  1372270.098   45  ...  284.636200  100936.80470  0.001010   \\n\",\n       \"4  1656224.681  1384491.842   40  ...  284.506561  100880.17970  0.001019   \\n\",\n       \"\\n\",\n       \"          blh         e          r       u10       v10   aod_sat  ndvi  \\n\",\n       \"0  134.995636 -0.000007  46.315975  0.425366  0.170262  0.870967  2401  \\n\",\n       \"1  157.775970 -0.000006  53.605503  0.211734 -0.676848  0.712080  5255  \\n\",\n       \"2  129.971298 -0.000007  45.537464  0.266666  0.069172  0.875811  2609  \\n\",\n       \"3  138.793961 -0.000007  45.387913  0.299403  0.227950  0.869679  2420  \\n\",\n       \"4  130.520599 -0.000007  44.790119  0.169121  0.079546  0.873232  3296  \\n\",\n       \"\\n\",\n       \"[5 rows x 22 columns]\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"data = pd.read_csv('../data/pm25_data.csv')\\n\",\n    \"data.head(5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"3504795E356E4437816E76D12CAC0991\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.2 划分数据集\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"id\": \"40BD347213E44C4E80325892E5B48A17\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"train_dataset, val_dataset, test_dataset = datasets.init_dataset(data=data,\\n\",\n    \"                                                                 test_ratio=0.15,\\n\",\n    \"                                                                 valid_ratio=0.15,\\n\",\n    \"                                                                 x_column=[\\n\",\n    \"                                                                     'dem', 'w10', 'd10', 't2m', 'aod_sat', 'tp'],\\n\",\n    \"                                                                 y_column=[\\n\",\n    \"                                                                     'PM2_5'],\\n\",\n    \"                                                                 spatial_column=[\\n\",\n    \"                                                                     'proj_x', 'proj_y'],\\n\",\n    \"                                                                 sample_seed=23,\\n\",\n    \"                                                                 batch_size=64)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"5CC697DE031B42ADB899D9B2D91E5C4C\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.3 初始化GNNWR模型\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"id\": \"06A2E9226CD346EA865E297EC5C250A9\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Add Graph Successfully\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"gnnwr = models.GNNWR(train_dataset=train_dataset,\\n\",\n    \"                     valid_dataset=val_dataset,\\n\",\n    \"                     test_dataset=test_dataset,\\n\",\n    \"                     dense_layers=[512, 256, 128],\\n\",\n    \"                     start_lr=0.2,\\n\",\n    \"                     optimizer=\\\"Adadelta\\\",\\n\",\n    \"                     activate_func=nn.PReLU(init=0.1),\\n\",\n    \"                     model_name=\\\"GNNWR_PM25\\\",\\n\",\n    \"                     write_path=\\\"../demo_result/gnnwr/runs/\\\",\\n\",\n    \"                     model_save_path=\\\"../demo_result/gnnwr/models/\\\",\\n\",\n    \"                     log_path=\\\"../demo_result/gnnwr/logs/\\\",\\n\",\n    \"                     )\\n\",\n    \"gnnwr.add_graph()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"771126F1DC394DA3A41FA3D80164ED2B\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.4 模型训练\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"id\": \"392C030FC48D40698859C4A8A60E82AB\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"  0%|          | 0/200 [00:00<?, ?it/s]\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \" 84%|████████▍ | 169/200 [00:25<00:04,  6.50it/s, Train Loss=52.647901, Train R2=0.738589, Train AIC=6916.417, Valid Loss=54.8, Valid R2=0.71, Best Valid R2=0.763, Learning Rate=0.2]       \\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Training stop! Model has not been improved for over 50 epochs.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"gnnwr.run(max_epoch=200, early_stop=50)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"10FD366C72BC4023BADF205C76A1B5E4\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.5 模型评价与结果分析\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"BD45531797814F92BBFE8C1F81A8790D\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"输出模型训练结果\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"hide_input\": false,\n    \"id\": \"C3F2344514A7404C9B82AF1199B8AB86\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------Model Information-----------------\\n\",\n      \"Model Name:           | GNNWR_PM25\\n\",\n      \"independent variable: | ['dem', 'w10', 'd10', 't2m', 'aod_sat', 'tp']\\n\",\n      \"dependent variable:   | ['PM2_5']\\n\",\n      \"\\n\",\n      \"OLS coefficients: \\n\",\n      \"x0: 4.84385\\n\",\n      \"x1: -8.85402\\n\",\n      \"x2: 0.17612\\n\",\n      \"x3: 18.69575\\n\",\n      \"x4: 35.19490\\n\",\n      \"x5: -23.06419\\n\",\n      \"Intercept: 22.06353\\n\",\n      \"\\n\",\n      \"--------------------Result Information----------------\\n\",\n      \"Test Loss: |                  55.22187\\n\",\n      \"Test R2  : |                   0.74461\\n\",\n      \"Train R2 : |                   0.80714\\n\",\n      \"Valid R2 : |                   0.76311\\n\",\n      \"RMSE: |                        7.43114\\n\",\n      \"AIC:  |                     1451.93323\\n\",\n      \"AICc: |                     1453.84448\\n\",\n      \"F1:   |                        0.23711\\n\",\n      \"F2:   |                       -0.72962\\n\",\n      \"f3_param_0: |                  1.42917\\n\",\n      \"f3_param_1: |                  4.78019\\n\",\n      \"f3_param_2: |                  0.37658\\n\",\n      \"f3_param_3: |                 39.44110\\n\",\n      \"f3_param_4: |                 86.51201\\n\",\n      \"f3_param_5: |                103.20709\\n\",\n      \"f3_param_6: |                 73.79106\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(gnnwr.result())\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"5527C08955E146FBAC4836BF7A049F1B\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"保存模型训练结果\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"id\": \"EC21C530B5B3495D89A5CC748F5E4838\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>coef_dem</th>\\n\",\n       \"      <th>coef_w10</th>\\n\",\n       \"      <th>coef_d10</th>\\n\",\n       \"      <th>coef_t2m</th>\\n\",\n       \"      <th>coef_aod_sat</th>\\n\",\n       \"      <th>coef_tp</th>\\n\",\n       \"      <th>bias</th>\\n\",\n       \"      <th>Pred_PM2_5</th>\\n\",\n       \"      <th>id</th>\\n\",\n       \"      <th>dataset_belong</th>\\n\",\n       \"      <th>denormalized_pred_result</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>531</th>\\n\",\n       \"      <td>-10.893063</td>\\n\",\n       \"      <td>4.096037</td>\\n\",\n       \"      <td>-0.003328</td>\\n\",\n       \"      <td>-1.765743</td>\\n\",\n       \"      <td>41.089787</td>\\n\",\n       \"      <td>-7.629800</td>\\n\",\n       \"      <td>19.063868</td>\\n\",\n       \"      <td>49.644890</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>49.644890</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>379</th>\\n\",\n       \"      <td>-9.656964</td>\\n\",\n       \"      <td>4.086252</td>\\n\",\n       \"      <td>0.033160</td>\\n\",\n       \"      <td>-0.900789</td>\\n\",\n       \"      <td>47.584103</td>\\n\",\n       \"      <td>-8.441919</td>\\n\",\n       \"      <td>13.565129</td>\\n\",\n       \"      <td>41.671104</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>41.671104</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1040</th>\\n\",\n       \"      <td>-10.417168</td>\\n\",\n       \"      <td>4.591239</td>\\n\",\n       \"      <td>0.012491</td>\\n\",\n       \"      <td>-2.157663</td>\\n\",\n       \"      <td>43.862026</td>\\n\",\n       \"      <td>-7.417325</td>\\n\",\n       \"      <td>16.746428</td>\\n\",\n       \"      <td>49.435081</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>valid</td>\\n\",\n       \"      <td>49.435081</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>196</th>\\n\",\n       \"      <td>-10.715937</td>\\n\",\n       \"      <td>4.418194</td>\\n\",\n       \"      <td>0.002839</td>\\n\",\n       \"      <td>-2.133457</td>\\n\",\n       \"      <td>42.231022</td>\\n\",\n       \"      <td>-7.392918</td>\\n\",\n       \"      <td>18.149910</td>\\n\",\n       \"      <td>49.385357</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>49.385357</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1287</th>\\n\",\n       \"      <td>-10.265275</td>\\n\",\n       \"      <td>4.798204</td>\\n\",\n       \"      <td>0.017749</td>\\n\",\n       \"      <td>-2.383999</td>\\n\",\n       \"      <td>44.890312</td>\\n\",\n       \"      <td>-7.306716</td>\\n\",\n       \"      <td>15.950782</td>\\n\",\n       \"      <td>49.135624</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>49.135624</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1344</th>\\n\",\n       \"      <td>-13.435968</td>\\n\",\n       \"      <td>6.010466</td>\\n\",\n       \"      <td>-0.145383</td>\\n\",\n       \"      <td>-10.621261</td>\\n\",\n       \"      <td>30.257774</td>\\n\",\n       \"      <td>-3.181989</td>\\n\",\n       \"      <td>36.003269</td>\\n\",\n       \"      <td>51.314999</td>\\n\",\n       \"      <td>1403</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>51.314999</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>206</th>\\n\",\n       \"      <td>-4.853177</td>\\n\",\n       \"      <td>-16.747314</td>\\n\",\n       \"      <td>-0.207562</td>\\n\",\n       \"      <td>3.499334</td>\\n\",\n       \"      <td>95.402153</td>\\n\",\n       \"      <td>-44.009678</td>\\n\",\n       \"      <td>12.909039</td>\\n\",\n       \"      <td>11.087503</td>\\n\",\n       \"      <td>1404</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>11.087503</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>603</th>\\n\",\n       \"      <td>-13.478974</td>\\n\",\n       \"      <td>5.909607</td>\\n\",\n       \"      <td>-0.147648</td>\\n\",\n       \"      <td>-10.473284</td>\\n\",\n       \"      <td>29.851978</td>\\n\",\n       \"      <td>-3.293999</td>\\n\",\n       \"      <td>36.334076</td>\\n\",\n       \"      <td>51.367783</td>\\n\",\n       \"      <td>1405</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>51.367783</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1103</th>\\n\",\n       \"      <td>-2.944024</td>\\n\",\n       \"      <td>3.325724</td>\\n\",\n       \"      <td>-0.164338</td>\\n\",\n       \"      <td>14.885031</td>\\n\",\n       \"      <td>41.954769</td>\\n\",\n       \"      <td>-5.542052</td>\\n\",\n       \"      <td>10.858345</td>\\n\",\n       \"      <td>13.371025</td>\\n\",\n       \"      <td>1406</td>\\n\",\n       \"      <td>valid</td>\\n\",\n       \"      <td>13.371025</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>761</th>\\n\",\n       \"      <td>-16.286539</td>\\n\",\n       \"      <td>-2.168099</td>\\n\",\n       \"      <td>-0.289321</td>\\n\",\n       \"      <td>2.158984</td>\\n\",\n       \"      <td>4.141737</td>\\n\",\n       \"      <td>-12.117188</td>\\n\",\n       \"      <td>55.579510</td>\\n\",\n       \"      <td>56.383018</td>\\n\",\n       \"      <td>1407</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>56.383018</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>1408 rows × 11 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"       coef_dem   coef_w10  coef_d10   coef_t2m  coef_aod_sat    coef_tp  \\\\\\n\",\n       \"531  -10.893063   4.096037 -0.003328  -1.765743     41.089787  -7.629800   \\n\",\n       \"379   -9.656964   4.086252  0.033160  -0.900789     47.584103  -8.441919   \\n\",\n       \"1040 -10.417168   4.591239  0.012491  -2.157663     43.862026  -7.417325   \\n\",\n       \"196  -10.715937   4.418194  0.002839  -2.133457     42.231022  -7.392918   \\n\",\n       \"1287 -10.265275   4.798204  0.017749  -2.383999     44.890312  -7.306716   \\n\",\n       \"...         ...        ...       ...        ...           ...        ...   \\n\",\n       \"1344 -13.435968   6.010466 -0.145383 -10.621261     30.257774  -3.181989   \\n\",\n       \"206   -4.853177 -16.747314 -0.207562   3.499334     95.402153 -44.009678   \\n\",\n       \"603  -13.478974   5.909607 -0.147648 -10.473284     29.851978  -3.293999   \\n\",\n       \"1103  -2.944024   3.325724 -0.164338  14.885031     41.954769  -5.542052   \\n\",\n       \"761  -16.286539  -2.168099 -0.289321   2.158984      4.141737 -12.117188   \\n\",\n       \"\\n\",\n       \"           bias  Pred_PM2_5    id dataset_belong  denormalized_pred_result  \\n\",\n       \"531   19.063868   49.644890     0          train                 49.644890  \\n\",\n       \"379   13.565129   41.671104     1          train                 41.671104  \\n\",\n       \"1040  16.746428   49.435081     2          valid                 49.435081  \\n\",\n       \"196   18.149910   49.385357     3          train                 49.385357  \\n\",\n       \"1287  15.950782   49.135624     4           test                 49.135624  \\n\",\n       \"...         ...         ...   ...            ...                       ...  \\n\",\n       \"1344  36.003269   51.314999  1403           test                 51.314999  \\n\",\n       \"206   12.909039   11.087503  1404          train                 11.087503  \\n\",\n       \"603   36.334076   51.367783  1405          train                 51.367783  \\n\",\n       \"1103  10.858345   13.371025  1406          valid                 13.371025  \\n\",\n       \"761   55.579510   56.383018  1407          train                 56.383018  \\n\",\n       \"\\n\",\n       \"[1408 rows x 11 columns]\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"gnnwr.reg_result('../demo_result/gnnwr/gnnwr_result.csv').sort_values(by='id')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"0D039711996848DE9217140B02C5E10E\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 4 保存与加载\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"96488D5CBDC9485CAC078B712F4EB2BA\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 4.1 保存数据集\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"id\": \"EEEC216859F14662AC92DB11004828F9\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# 保存数据集到指定路径\\n\",\n    \"train_dataset.save('../demo_result/gnnwr/dataset/train_dataset/', exist_ok=True)\\n\",\n    \"val_dataset.save('../demo_result/gnnwr/dataset/val_dataset/', exist_ok=True)\\n\",\n    \"test_dataset.save('../demo_result/gnnwr/dataset/test_dataset/', exist_ok=True)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"0EF15A835A134240AB32C6826816A446\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 4.2 加载数据集\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"id\": \"B8B0450836D34F17B770C4236A32A2EF\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"train_dataset_load = datasets.load_dataset(\\n\",\n    \"    '../demo_result/gnnwr/dataset/train_dataset/')\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"val_dataset_load = datasets.load_dataset(\\n\",\n    \"    '../demo_result/gnnwr/dataset/val_dataset/')\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"test_dataset_load = datasets.load_dataset(\\n\",\n    \"    '../demo_result/gnnwr/dataset/test_dataset/')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"85C871CF435D44299507646EEEF29DD9\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 4.3 加载模型\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"475BB7B168104D958937E7DFD35D9ABF\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"初始化模型\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {\n    \"id\": \"E87800E3AB6041898E808E402C8F06A1\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"gnnwr_load = models.GNNWR(train_dataset=train_dataset_load,\\n\",\n    \"                          valid_dataset=val_dataset_load,\\n\",\n    \"                          test_dataset=test_dataset_load,\\n\",\n    \"                          dense_layers=[512, 256, 128],\\n\",\n    \"                          start_lr=0.2,\\n\",\n    \"                          optimizer=\\\"Adadelta\\\",\\n\",\n    \"                          activate_func=nn.PReLU(init=0.1),\\n\",\n    \"                          model_name=\\\"GNNWR_PM25\\\",\\n\",\n    \"                          model_save_path=\\\"../demo_result/gnnwr/models/\\\",\\n\",\n    \"                          log_path=\\\"../demo_result/gnnwr/logs/\\\",\\n\",\n    \"                          write_path=\\\"../demo_result/gnnwr/writes/\\\"\\n\",\n    \"                          )\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"35B7929FA9D543598710B7CA6B1FD517\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"加载参数\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"3289C4F9F06E4C8490C3481938DED86A\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------Model Information-----------------\\n\",\n      \"Model Name:           | GNNWR_PM25\\n\",\n      \"independent variable: | ['dem', 'w10', 'd10', 't2m', 'aod_sat', 'tp']\\n\",\n      \"dependent variable:   | ['PM2_5']\\n\",\n      \"\\n\",\n      \"OLS coefficients: \\n\",\n      \"x0: 4.84385\\n\",\n      \"x1: -8.85402\\n\",\n      \"x2: 0.17612\\n\",\n      \"x3: 18.69575\\n\",\n      \"x4: 35.19490\\n\",\n      \"x5: -23.06419\\n\",\n      \"Intercept: 22.06353\\n\",\n      \"\\n\",\n      \"--------------------Result Information----------------\\n\",\n      \"Test Loss: |                  55.22187\\n\",\n      \"Test R2  : |                   0.74461\\n\",\n      \"Train R2 : |                   0.80714\\n\",\n      \"Valid R2 : |                   0.76311\\n\",\n      \"RMSE: |                        7.43114\\n\",\n      \"AIC:  |                     1451.93323\\n\",\n      \"AICc: |                     1453.84460\\n\",\n      \"F1:   |                        0.23711\\n\",\n      \"F2:   |                       -0.72962\\n\",\n      \"f3_param_0: |                  1.42901\\n\",\n      \"f3_param_1: |                  4.78043\\n\",\n      \"f3_param_2: |                  0.37661\\n\",\n      \"f3_param_3: |                 39.44105\\n\",\n      \"f3_param_4: |                 86.51155\\n\",\n      \"f3_param_5: |                103.20736\\n\",\n      \"f3_param_6: |                 73.79527\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"gnnwr_load.load_model('../demo_result/gnnwr/models/GNNWR_PM25.pkl')\\n\",\n    \"print(gnnwr_load.result())\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"D8AF221F731440B59F0B0ED68D973250\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 5 模型预测\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"F86C3BA9A4E747ED821487D5FA3FA489\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 5.1 导入预测数据\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"id\": \"D6E5AE8DB59B46BE88857DD639425FC6\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"pred_data = pd.read_csv('../data/pm25_predict_data.csv')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"91CA814D3C014609894F6494EDAE9412\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 5.2 初始化预测数据集\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"id\": \"F3B99F1FEAC84FD8984410F90EA322EC\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"pred_dataset = datasets.init_predict_dataset(data=pred_data, train_dataset=train_dataset, x_column=[\\n\",\n    \"                                             'dem', 'w10', 'd10', 't2m', 'aod_sat', 'tp'],\\n\",\n    \"                                             spatial_column=['proj_x', 'proj_y'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"D9F130BCAFB84C43B55BE8C048C602E0\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 5.3 模型预测\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {\n    \"id\": \"3488FBA395284C42B7315AAF110560DD\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>station_id</th>\\n\",\n       \"      <th>lng</th>\\n\",\n       \"      <th>lat</th>\\n\",\n       \"      <th>date</th>\\n\",\n       \"      <th>PM2.5</th>\\n\",\n       \"      <th>row_index</th>\\n\",\n       \"      <th>col_index</th>\\n\",\n       \"      <th>proj_x</th>\\n\",\n       \"      <th>proj_y</th>\\n\",\n       \"      <th>dem</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>tp</th>\\n\",\n       \"      <th>blh</th>\\n\",\n       \"      <th>e</th>\\n\",\n       \"      <th>r</th>\\n\",\n       \"      <th>u10</th>\\n\",\n       \"      <th>v10</th>\\n\",\n       \"      <th>aod_sat</th>\\n\",\n       \"      <th>ndvi</th>\\n\",\n       \"      <th>pred_result</th>\\n\",\n       \"      <th>denormalized_pred_result</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1001A</td>\\n\",\n       \"      <td>116.366</td>\\n\",\n       \"      <td>39.8673</td>\\n\",\n       \"      <td>20170930</td>\\n\",\n       \"      <td>56.357143</td>\\n\",\n       \"      <td>2201.0</td>\\n\",\n       \"      <td>6867.0</td>\\n\",\n       \"      <td>1.650848e+06</td>\\n\",\n       \"      <td>1.370268e+06</td>\\n\",\n       \"      <td>46</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.000051</td>\\n\",\n       \"      <td>64.583054</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>52.682091</td>\\n\",\n       \"      <td>0.384257</td>\\n\",\n       \"      <td>0.784808</td>\\n\",\n       \"      <td>0.762762</td>\\n\",\n       \"      <td>3443</td>\\n\",\n       \"      <td>47.053974</td>\\n\",\n       \"      <td>47.053974</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>1002A</td>\\n\",\n       \"      <td>116.170</td>\\n\",\n       \"      <td>40.2865</td>\\n\",\n       \"      <td>20170930</td>\\n\",\n       \"      <td>47.148148</td>\\n\",\n       \"      <td>2134.0</td>\\n\",\n       \"      <td>6835.0</td>\\n\",\n       \"      <td>1.625004e+06</td>\\n\",\n       \"      <td>1.416960e+06</td>\\n\",\n       \"      <td>420</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.000304</td>\\n\",\n       \"      <td>40.621140</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>62.529091</td>\\n\",\n       \"      <td>-0.156175</td>\\n\",\n       \"      <td>-0.537717</td>\\n\",\n       \"      <td>0.574785</td>\\n\",\n       \"      <td>7810</td>\\n\",\n       \"      <td>36.364796</td>\\n\",\n       \"      <td>36.364796</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>1003A</td>\\n\",\n       \"      <td>116.434</td>\\n\",\n       \"      <td>39.9522</td>\\n\",\n       \"      <td>20170930</td>\\n\",\n       \"      <td>53.857143</td>\\n\",\n       \"      <td>2188.0</td>\\n\",\n       \"      <td>6877.0</td>\\n\",\n       \"      <td>1.653777e+06</td>\\n\",\n       \"      <td>1.381524e+06</td>\\n\",\n       \"      <td>48</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.000058</td>\\n\",\n       \"      <td>60.242908</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>52.126640</td>\\n\",\n       \"      <td>0.093867</td>\\n\",\n       \"      <td>0.617515</td>\\n\",\n       \"      <td>0.796827</td>\\n\",\n       \"      <td>3328</td>\\n\",\n       \"      <td>47.568508</td>\\n\",\n       \"      <td>47.568508</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>1004A</td>\\n\",\n       \"      <td>116.434</td>\\n\",\n       \"      <td>39.8745</td>\\n\",\n       \"      <td>20170930</td>\\n\",\n       \"      <td>46.333333</td>\\n\",\n       \"      <td>2200.0</td>\\n\",\n       \"      <td>6877.0</td>\\n\",\n       \"      <td>1.655828e+06</td>\\n\",\n       \"      <td>1.372270e+06</td>\\n\",\n       \"      <td>45</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.000047</td>\\n\",\n       \"      <td>69.535637</td>\\n\",\n       \"      <td>-0.000008</td>\\n\",\n       \"      <td>51.301529</td>\\n\",\n       \"      <td>0.197439</td>\\n\",\n       \"      <td>0.893495</td>\\n\",\n       \"      <td>0.758839</td>\\n\",\n       \"      <td>4535</td>\\n\",\n       \"      <td>46.595520</td>\\n\",\n       \"      <td>46.595520</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>1005A</td>\\n\",\n       \"      <td>116.473</td>\\n\",\n       \"      <td>39.9716</td>\\n\",\n       \"      <td>20170930</td>\\n\",\n       \"      <td>52.203704</td>\\n\",\n       \"      <td>2185.0</td>\\n\",\n       \"      <td>6884.0</td>\\n\",\n       \"      <td>1.656225e+06</td>\\n\",\n       \"      <td>1.384492e+06</td>\\n\",\n       \"      <td>40</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.000059</td>\\n\",\n       \"      <td>62.281456</td>\\n\",\n       \"      <td>-0.000007</td>\\n\",\n       \"      <td>51.071964</td>\\n\",\n       \"      <td>-0.060543</td>\\n\",\n       \"      <td>0.634863</td>\\n\",\n       \"      <td>0.760148</td>\\n\",\n       \"      <td>3901</td>\\n\",\n       \"      <td>45.791042</td>\\n\",\n       \"      <td>45.791042</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 24 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"  station_id      lng      lat      date      PM2.5  row_index  col_index  \\\\\\n\",\n       \"0      1001A  116.366  39.8673  20170930  56.357143     2201.0     6867.0   \\n\",\n       \"1      1002A  116.170  40.2865  20170930  47.148148     2134.0     6835.0   \\n\",\n       \"2      1003A  116.434  39.9522  20170930  53.857143     2188.0     6877.0   \\n\",\n       \"3      1004A  116.434  39.8745  20170930  46.333333     2200.0     6877.0   \\n\",\n       \"4      1005A  116.473  39.9716  20170930  52.203704     2185.0     6884.0   \\n\",\n       \"\\n\",\n       \"         proj_x        proj_y  dem  ...        tp        blh         e  \\\\\\n\",\n       \"0  1.650848e+06  1.370268e+06   46  ...  0.000051  64.583054 -0.000007   \\n\",\n       \"1  1.625004e+06  1.416960e+06  420  ...  0.000304  40.621140 -0.000007   \\n\",\n       \"2  1.653777e+06  1.381524e+06   48  ...  0.000058  60.242908 -0.000007   \\n\",\n       \"3  1.655828e+06  1.372270e+06   45  ...  0.000047  69.535637 -0.000008   \\n\",\n       \"4  1.656225e+06  1.384492e+06   40  ...  0.000059  62.281456 -0.000007   \\n\",\n       \"\\n\",\n       \"           r       u10       v10   aod_sat  ndvi  pred_result  \\\\\\n\",\n       \"0  52.682091  0.384257  0.784808  0.762762  3443    47.053974   \\n\",\n       \"1  62.529091 -0.156175 -0.537717  0.574785  7810    36.364796   \\n\",\n       \"2  52.126640  0.093867  0.617515  0.796827  3328    47.568508   \\n\",\n       \"3  51.301529  0.197439  0.893495  0.758839  4535    46.595520   \\n\",\n       \"4  51.071964 -0.060543  0.634863  0.760148  3901    45.791042   \\n\",\n       \"\\n\",\n       \"   denormalized_pred_result  \\n\",\n       \"0                 47.053974  \\n\",\n       \"1                 36.364796  \\n\",\n       \"2                 47.568508  \\n\",\n       \"3                 46.595520  \\n\",\n       \"4                 45.791042  \\n\",\n       \"\\n\",\n       \"[5 rows x 24 columns]\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pred_res = gnnwr_load.predict(pred_dataset)\\n\",\n    \"pred_res.head(5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"C9421D7C42A14CF99F37CD7A513225E6\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 6 数据可视化\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 6.1 可视化模块介绍\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"3C8394F94AC34D5A881B81968522EAD9\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"**初始化（utils.Visualize）**\\n\",\n    \"\\n\",\n    \"params：  \\n\",\n    \"- data：GNNWR或其派生模型的实例（必需）  \\n\",\n    \"- lon_lat_columns：数据集中经纬度字段，缺省则将spatial_columns的前两个作为经纬度  \\n\",\n    \"\\n\",\n    \"```python\\n\",\n    \"visualizer = utils.Visualize(data = gnnwr, lon_lat_columns = ['lon','lat'])  \\n\",\n    \"```\\n\",\n    \"\\n\",\n    \"**数据集可视化（display_dataset）**\\n\",\n    \"\\n\",\n    \"params：  \\n\",\n    \"- name：选择展示的数据集，可选值为'all'，'train'，'valid'，'test'，分别代表全集、训练集、验证集、测试集，默认为'all'  \\n\",\n    \"- y_column：选择度量的字段，默认为数据集y_colums的第一个  \\n\",\n    \"- colors：传入颜色数组以自定义色带，默认为黄->红色带  \\n\",\n    \"- steps：传入一个正整数，设置色带分级数量，默认为20  \\n\",\n    \"- vmin：设置色带的最小值，默认为度量数据的最小值  \\n\",\n    \"- vmax：设置色带的最大值，默认为度量数据的最大值  \\n\",\n    \"\\n\",\n    \"```python\\n\",\n    \"visualizer.display_dataset(name='train',y_columns='PM2_5',colors=['blue','green','yellow','red'],steps=50,vmin=0,vmax=100)  \\n\",\n    \"```\\n\",\n    \"\\n\",\n    \"**权重可视化（weights_heatmap）**\\n\",\n    \"\\n\",\n    \"params：  \\n\",\n    \"- data_column：选择权重字段（必需）  \\n\",\n    \"- colors：传入颜色数组以自定义色带，默认为黄->红色带  \\n\",\n    \"- steps：传入一个正整数，设置色带分级数量，默认为20  \\n\",\n    \"- vmin：设置色带的最小值，默认为度量数据的最小值  \\n\",\n    \"- vmax：设置色带的最大值，默认为度量数据的最大值 \\n\",\n    \"\\n\",\n    \"```python\\n\",\n    \"visualizer.weights_heatmap(data_column='weight_dem',colors=['blue','green','yellow','red'],steps=50,vmin=0,vmax=100)  \\n\",\n    \"```\\n\",\n    \"\\n\",\n    \"**自定点数据可视化（dot_map）**\\n\",\n    \"\\n\",\n    \"params:  \\n\",\n    \"data：传入用于可视化的DataFrame（必需）  \\n\",\n    \"lon_column：经度字段（必需）  \\n\",\n    \"lat_column：纬度字段（必需)  \\n\",\n    \"y_column：度量值字段（必需）  \\n\",\n    \"zoom：地图初始缩放等级，默认为4  \\n\",\n    \"colors：传入颜色数组以自定义色带，默认为黄->红色带  \\n\",\n    \"steps：传入一个正整数，设置色带分级数量，默认为20  \\n\",\n    \"vmin：设置色带的最小值，默认为度量数据的最小值  \\n\",\n    \"vmax：设置色带的最大值，默认为度量数据的最大值  \\n\",\n    \"\\n\",\n    \"```python\\n\",\n    \"visualizer.dot_map(data=df, lon_column='lon', lat_column='lat', y_column='res', zoom=1, colors=['blue','green','yellow','red'], steps=50, vmin=0, vmax=100)  \\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {\n    \"id\": \"B6761633E26143F7BFB37242F112873B\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"visualizer = utils.Visualize(data=gnnwr, lon_lat_columns=['lng', 'lat'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"FBA4F74AF8504C5099D45C5689AA04DE\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 6.2 绘制数据集分布  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"全集\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {\n    \"id\": \"D51E06156EEF40CC9064FC0D98F42347\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_4dfcda3a930e153eda75eb6045f8b695 {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_4dfcda3a930e153eda75eb6045f8b695&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_4dfcda3a930e153eda75eb6045f8b695 = L.map(\\n\",\n       \"                &quot;map_4dfcda3a930e153eda75eb6045f8b695&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_0368f023f056ad323be053a852fe64eb = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_0368f023f056ad323be053a852fe64eb.addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dfa360d32d72a0a07ee55b15d50f30cf = L.circleMarker(\\n\",\n       \"                [30.8217, 106.1031],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_729f626e18cd72749873acaa99a1913b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23ba6db2b74011899d62353373381690 = $(`&lt;div id=&quot;html_23ba6db2b74011899d62353373381690&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1031             latitude:30.8217             PM2_5:47.4255618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_729f626e18cd72749873acaa99a1913b.setContent(html_23ba6db2b74011899d62353373381690);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dfa360d32d72a0a07ee55b15d50f30cf.bindPopup(popup_729f626e18cd72749873acaa99a1913b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd4568c67d8ba4a461c49bc0c0e75f8a = L.circleMarker(\\n\",\n       \"                [29.5186, 106.54],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b772cf22fbc612baa83df6035caeff0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c75a5650f5452c7d0ab0cc1e6f0f192a = $(`&lt;div id=&quot;html_c75a5650f5452c7d0ab0cc1e6f0f192a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.54             latitude:29.5186             PM2_5:41.60526316             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b772cf22fbc612baa83df6035caeff0.setContent(html_c75a5650f5452c7d0ab0cc1e6f0f192a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd4568c67d8ba4a461c49bc0c0e75f8a.bindPopup(popup_6b772cf22fbc612baa83df6035caeff0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9c21ae70f8f57aaeb9c8f696d251da3 = L.circleMarker(\\n\",\n       \"                [31.7371, 116.508],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc05c9995d3c20e7fd52672448efb4d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6297ee0fd27eed2bde913a696d05a51a = $(`&lt;div id=&quot;html_6297ee0fd27eed2bde913a696d05a51a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.508             latitude:31.7371             PM2_5:44.06005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc05c9995d3c20e7fd52672448efb4d5.setContent(html_6297ee0fd27eed2bde913a696d05a51a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9c21ae70f8f57aaeb9c8f696d251da3.bindPopup(popup_fc05c9995d3c20e7fd52672448efb4d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_413d5002ba5329e2d2ec2a5acbab7546 = L.circleMarker(\\n\",\n       \"                [34.6869, 112.4664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e602323ac0bbda28088ea83b6acd2876 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3511e831044fec74d79083d3c334d121 = $(`&lt;div id=&quot;html_3511e831044fec74d79083d3c334d121&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4664             latitude:34.6869             PM2_5:59.93661972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e602323ac0bbda28088ea83b6acd2876.setContent(html_3511e831044fec74d79083d3c334d121);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_413d5002ba5329e2d2ec2a5acbab7546.bindPopup(popup_e602323ac0bbda28088ea83b6acd2876)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d20e6ef0200f9d05b2fe738e7969f201 = L.circleMarker(\\n\",\n       \"                [31.1208, 104.4219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_275f1a7d3c0e4b46a8ecad265f2cb8d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b2e7a6fc4b6c8ef237f6e38c0b0d0cf = $(`&lt;div id=&quot;html_7b2e7a6fc4b6c8ef237f6e38c0b0d0cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.4219             latitude:31.1208             PM2_5:42.56741573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_275f1a7d3c0e4b46a8ecad265f2cb8d6.setContent(html_7b2e7a6fc4b6c8ef237f6e38c0b0d0cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d20e6ef0200f9d05b2fe738e7969f201.bindPopup(popup_275f1a7d3c0e4b46a8ecad265f2cb8d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_231238fac9625603107dfe6773c809ef = L.circleMarker(\\n\",\n       \"                [33.5653, 114.0322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d49b745209ba8cc39fcfce7220e149ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af28f53a4c8d704eb2cf4a87dcbfa1c0 = $(`&lt;div id=&quot;html_af28f53a4c8d704eb2cf4a87dcbfa1c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0322             latitude:33.5653             PM2_5:55.8189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d49b745209ba8cc39fcfce7220e149ca.setContent(html_af28f53a4c8d704eb2cf4a87dcbfa1c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_231238fac9625603107dfe6773c809ef.bindPopup(popup_d49b745209ba8cc39fcfce7220e149ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a67daf370be914d032e717c732339103 = L.circleMarker(\\n\",\n       \"                [32.02, 120.87],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6e9549cbc6db58289e7a42f509fdaba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3c3937f88355190d5722e94bae5871e = $(`&lt;div id=&quot;html_b3c3937f88355190d5722e94bae5871e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.87             latitude:32.02             PM2_5:34.07799443             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6e9549cbc6db58289e7a42f509fdaba.setContent(html_b3c3937f88355190d5722e94bae5871e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a67daf370be914d032e717c732339103.bindPopup(popup_b6e9549cbc6db58289e7a42f509fdaba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ded5580ba4a367fd8af773d0ca04343 = L.circleMarker(\\n\",\n       \"                [32.6975, 109.0072],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83b4135a252aadc9019e0561807da05e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbff59ee47e37f433bd519f02420550f = $(`&lt;div id=&quot;html_fbff59ee47e37f433bd519f02420550f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0072             latitude:32.6975             PM2_5:42.6755618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83b4135a252aadc9019e0561807da05e.setContent(html_fbff59ee47e37f433bd519f02420550f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ded5580ba4a367fd8af773d0ca04343.bindPopup(popup_83b4135a252aadc9019e0561807da05e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f255b9630628097051774b7f544d87e8 = L.circleMarker(\\n\",\n       \"                [40.715, 120.8478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b253ca3f65e25dde05755e73fbdf631 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30f6fc2f78a2b0d0614dab084b32c347 = $(`&lt;div id=&quot;html_30f6fc2f78a2b0d0614dab084b32c347&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8478             latitude:40.715             PM2_5:32.58615819             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b253ca3f65e25dde05755e73fbdf631.setContent(html_30f6fc2f78a2b0d0614dab084b32c347);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f255b9630628097051774b7f544d87e8.bindPopup(popup_7b253ca3f65e25dde05755e73fbdf631)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9a67dcac9c8d362cee3d135ec982d1c = L.circleMarker(\\n\",\n       \"                [33.5039, 119.135],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d823694b9d16a59dcf363dc72628504 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f88e92f66941fc32ea40779adaa4be3 = $(`&lt;div id=&quot;html_2f88e92f66941fc32ea40779adaa4be3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.135             latitude:33.5039             PM2_5:45.50277008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d823694b9d16a59dcf363dc72628504.setContent(html_2f88e92f66941fc32ea40779adaa4be3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9a67dcac9c8d362cee3d135ec982d1c.bindPopup(popup_8d823694b9d16a59dcf363dc72628504)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c2defdd7962ce89e3ab71074b1db380a = L.circleMarker(\\n\",\n       \"                [28.0089, 120.634],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6cbdc7c3659400994c882d787ddc6b18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cec4df8e4a9b86ae3a7bdd23da74cb7 = $(`&lt;div id=&quot;html_8cec4df8e4a9b86ae3a7bdd23da74cb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.634             latitude:28.0089             PM2_5:34.10277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6cbdc7c3659400994c882d787ddc6b18.setContent(html_8cec4df8e4a9b86ae3a7bdd23da74cb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c2defdd7962ce89e3ab71074b1db380a.bindPopup(popup_6cbdc7c3659400994c882d787ddc6b18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9550ed2d2327d16dc3d820adc656c2f = L.circleMarker(\\n\",\n       \"                [45.8194, 130.8625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db0745123c75d351ea74d174ec5f7ed9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38a041111a7da13d2212901114cb0799 = $(`&lt;div id=&quot;html_38a041111a7da13d2212901114cb0799&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.8625             latitude:45.8194             PM2_5:28.55477528             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db0745123c75d351ea74d174ec5f7ed9.setContent(html_38a041111a7da13d2212901114cb0799);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9550ed2d2327d16dc3d820adc656c2f.bindPopup(popup_db0745123c75d351ea74d174ec5f7ed9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1194b5f21b3a4da8e496ead14025ddb2 = L.circleMarker(\\n\",\n       \"                [29.8539, 114.2894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_885f66e59a8a4c0e91a412bf1101519c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd09de09b53ddfd00b5a61f8730285b2 = $(`&lt;div id=&quot;html_cd09de09b53ddfd00b5a61f8730285b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2894             latitude:29.8539             PM2_5:36.90972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_885f66e59a8a4c0e91a412bf1101519c.setContent(html_cd09de09b53ddfd00b5a61f8730285b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1194b5f21b3a4da8e496ead14025ddb2.bindPopup(popup_885f66e59a8a4c0e91a412bf1101519c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_211d4794a4eae758955fcdf28a88e820 = L.circleMarker(\\n\",\n       \"                [31.7308, 113.3983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0538da10597f06bb089fe5137421360b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4afc02666df254aa88807f05e3a0b114 = $(`&lt;div id=&quot;html_4afc02666df254aa88807f05e3a0b114&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3983             latitude:31.7308             PM2_5:48.91364903             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0538da10597f06bb089fe5137421360b.setContent(html_4afc02666df254aa88807f05e3a0b114);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_211d4794a4eae758955fcdf28a88e820.bindPopup(popup_0538da10597f06bb089fe5137421360b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ddb08883f00435ad5825c01416f3bab = L.circleMarker(\\n\",\n       \"                [27.8328, 114.9289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ac8c6b600337f6165cd3a40b6326aec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f88d36abcfc28417a4e3fca531886e4 = $(`&lt;div id=&quot;html_7f88d36abcfc28417a4e3fca531886e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9289             latitude:27.8328             PM2_5:48.87916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ac8c6b600337f6165cd3a40b6326aec.setContent(html_7f88d36abcfc28417a4e3fca531886e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ddb08883f00435ad5825c01416f3bab.bindPopup(popup_4ac8c6b600337f6165cd3a40b6326aec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_866577b1d8364ca850ef7d24251e790c = L.circleMarker(\\n\",\n       \"                [36.2866, 100.6188],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_917c9a11aebfd775a186dab62fbf5d8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4f7f43c059a696331dc2ee47a702666 = $(`&lt;div id=&quot;html_c4f7f43c059a696331dc2ee47a702666&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.6188             latitude:36.2866             PM2_5:22.37640449             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_917c9a11aebfd775a186dab62fbf5d8a.setContent(html_c4f7f43c059a696331dc2ee47a702666);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_866577b1d8364ca850ef7d24251e790c.bindPopup(popup_917c9a11aebfd775a186dab62fbf5d8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28d74a5aac081b40ea4391bbe96f73f5 = L.circleMarker(\\n\",\n       \"                [40.1952, 116.23],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33c13a94b45e167602979b8548174ae7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ec749528fe72449bfa9e7ff2af8a409 = $(`&lt;div id=&quot;html_3ec749528fe72449bfa9e7ff2af8a409&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.23             latitude:40.1952             PM2_5:48.23876404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33c13a94b45e167602979b8548174ae7.setContent(html_3ec749528fe72449bfa9e7ff2af8a409);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28d74a5aac081b40ea4391bbe96f73f5.bindPopup(popup_33c13a94b45e167602979b8548174ae7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27e90cc9f9d4870ddbc17e34767f27ba = L.circleMarker(\\n\",\n       \"                [21.9508, 108.6553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_449b7a623446e4d85825243fc51d4395 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_baf159137fa1e1848db1e8afe578327b = $(`&lt;div id=&quot;html_baf159137fa1e1848db1e8afe578327b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6553             latitude:21.9508             PM2_5:31.75706215             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_449b7a623446e4d85825243fc51d4395.setContent(html_baf159137fa1e1848db1e8afe578327b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27e90cc9f9d4870ddbc17e34767f27ba.bindPopup(popup_449b7a623446e4d85825243fc51d4395)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67b2c77e5d71534e6e335b973aaf0fc1 = L.circleMarker(\\n\",\n       \"                [31.85805556, 106.7619444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a57f9a2cfe45dc730b925b03f1348dc9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65b27a743d7c3b28134d78a0fd339d57 = $(`&lt;div id=&quot;html_65b27a743d7c3b28134d78a0fd339d57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7619444             latitude:31.85805556             PM2_5:21.37042254             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a57f9a2cfe45dc730b925b03f1348dc9.setContent(html_65b27a743d7c3b28134d78a0fd339d57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67b2c77e5d71534e6e335b973aaf0fc1.bindPopup(popup_a57f9a2cfe45dc730b925b03f1348dc9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc29d4339e2cb349d8a4963776f25e38 = L.circleMarker(\\n\",\n       \"                [45.8309, 130.9467],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_945f2ddff2e9dac4513f9cd30a8e5c57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb1aa19bbf17d6381e1d425451e206cc = $(`&lt;div id=&quot;html_cb1aa19bbf17d6381e1d425451e206cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9467             latitude:45.8309             PM2_5:29.78267045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_945f2ddff2e9dac4513f9cd30a8e5c57.setContent(html_cb1aa19bbf17d6381e1d425451e206cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc29d4339e2cb349d8a4963776f25e38.bindPopup(popup_945f2ddff2e9dac4513f9cd30a8e5c57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12320dffe9fd0a4316dbcb4831b3349b = L.circleMarker(\\n\",\n       \"                [36.0417, 111.4917],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b816225df3e6e119cb723733e85dad6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_566ce2bafde1c507700e1ca4f611ad56 = $(`&lt;div id=&quot;html_566ce2bafde1c507700e1ca4f611ad56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4917             latitude:36.0417             PM2_5:72.86685552             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b816225df3e6e119cb723733e85dad6.setContent(html_566ce2bafde1c507700e1ca4f611ad56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12320dffe9fd0a4316dbcb4831b3349b.bindPopup(popup_9b816225df3e6e119cb723733e85dad6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c41ba22e707bd4e5eb5394d7f58557d0 = L.circleMarker(\\n\",\n       \"                [39.2282, 106.7704],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba4349eac87ad390eb620ea5a7c822df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0aaf0d714e14fb43c71dd00e2e7a878b = $(`&lt;div id=&quot;html_0aaf0d714e14fb43c71dd00e2e7a878b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7704             latitude:39.2282             PM2_5:42.43454039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba4349eac87ad390eb620ea5a7c822df.setContent(html_0aaf0d714e14fb43c71dd00e2e7a878b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c41ba22e707bd4e5eb5394d7f58557d0.bindPopup(popup_ba4349eac87ad390eb620ea5a7c822df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1668a9495b89484287f0ad3db839c702 = L.circleMarker(\\n\",\n       \"                [37.18, 119.959],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97f2cd95bbb40c1e4b081621da0d9e10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1350f9c53151672e0b0aabcf722776ed = $(`&lt;div id=&quot;html_1350f9c53151672e0b0aabcf722776ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.959             latitude:37.18             PM2_5:36.77761628             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97f2cd95bbb40c1e4b081621da0d9e10.setContent(html_1350f9c53151672e0b0aabcf722776ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1668a9495b89484287f0ad3db839c702.bindPopup(popup_97f2cd95bbb40c1e4b081621da0d9e10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a27c5cec78c734d6b94e8cb104383895 = L.circleMarker(\\n\",\n       \"                [34.6575, 109.2],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_841de7f72be29ad181535fae25ff0568 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_429575afe924e8966a5e94e61e0abf90 = $(`&lt;div id=&quot;html_429575afe924e8966a5e94e61e0abf90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2             latitude:34.6575             PM2_5:67.91428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_841de7f72be29ad181535fae25ff0568.setContent(html_429575afe924e8966a5e94e61e0abf90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a27c5cec78c734d6b94e8cb104383895.bindPopup(popup_841de7f72be29ad181535fae25ff0568)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_949128b762680312516e02a28aaeb379 = L.circleMarker(\\n\",\n       \"                [30.5494, 114.3006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e792eb730dc31bb41f137b4fdc91f55d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7752e103bb0cca06a551a373ecf08789 = $(`&lt;div id=&quot;html_7752e103bb0cca06a551a373ecf08789&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3006             latitude:30.5494             PM2_5:44.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e792eb730dc31bb41f137b4fdc91f55d.setContent(html_7752e103bb0cca06a551a373ecf08789);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_949128b762680312516e02a28aaeb379.bindPopup(popup_e792eb730dc31bb41f137b4fdc91f55d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a37bf98e902f2e91b6c08dab784a6dc9 = L.circleMarker(\\n\",\n       \"                [25.1035, 117.0216],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d463edf48a166444c37cf14558965f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39d298b95a87a89af1f0fa4edb623b3d = $(`&lt;div id=&quot;html_39d298b95a87a89af1f0fa4edb623b3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0216             latitude:25.1035             PM2_5:24.6232493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d463edf48a166444c37cf14558965f2.setContent(html_39d298b95a87a89af1f0fa4edb623b3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a37bf98e902f2e91b6c08dab784a6dc9.bindPopup(popup_2d463edf48a166444c37cf14558965f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3a362ebb9d826fe41dca9e2091e2830 = L.circleMarker(\\n\",\n       \"                [32.8603, 115.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f2717934db5cc8f1db3a9362fbef5f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e50f5015893404ed9ac4a53141176e0 = $(`&lt;div id=&quot;html_5e50f5015893404ed9ac4a53141176e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8556             latitude:32.8603             PM2_5:54.9719888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f2717934db5cc8f1db3a9362fbef5f1.setContent(html_5e50f5015893404ed9ac4a53141176e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3a362ebb9d826fe41dca9e2091e2830.bindPopup(popup_2f2717934db5cc8f1db3a9362fbef5f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_edbff40e106d1d1f2fe4e4354d4044c4 = L.circleMarker(\\n\",\n       \"                [36.1851, 120.3905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87c37cfe50c23152fbed8c01ed00df84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_348146140eec0d732455f385e4aec036 = $(`&lt;div id=&quot;html_348146140eec0d732455f385e4aec036&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.3905             latitude:36.1851             PM2_5:42.19219653             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87c37cfe50c23152fbed8c01ed00df84.setContent(html_348146140eec0d732455f385e4aec036);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_edbff40e106d1d1f2fe4e4354d4044c4.bindPopup(popup_87c37cfe50c23152fbed8c01ed00df84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc122e02673c77319b105f98494f0a7e = L.circleMarker(\\n\",\n       \"                [39.6308, 118.1662],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1cac3dadc77482419cfb86f4df8b4904 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_45862b490846c337c609e637badee041 = $(`&lt;div id=&quot;html_45862b490846c337c609e637badee041&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1662             latitude:39.6308             PM2_5:47.58448753             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1cac3dadc77482419cfb86f4df8b4904.setContent(html_45862b490846c337c609e637badee041);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc122e02673c77319b105f98494f0a7e.bindPopup(popup_1cac3dadc77482419cfb86f4df8b4904)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_036a6d984236d047256e4e33df0d3f89 = L.circleMarker(\\n\",\n       \"                [24.9424, 118.6663],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a782e23bbb50f254eee41d1ea5ffca86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ab5c9d3c44e6aee2b17055b8e4073ed = $(`&lt;div id=&quot;html_0ab5c9d3c44e6aee2b17055b8e4073ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6663             latitude:24.9424             PM2_5:26.91374269             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a782e23bbb50f254eee41d1ea5ffca86.setContent(html_0ab5c9d3c44e6aee2b17055b8e4073ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_036a6d984236d047256e4e33df0d3f89.bindPopup(popup_a782e23bbb50f254eee41d1ea5ffca86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23966f27f22504846464e771b7b26422 = L.circleMarker(\\n\",\n       \"                [43.7878, 125.454],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3fac721ca229135decee4951add4233a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbd5ce4338d41be4a3fffd2da2089123 = $(`&lt;div id=&quot;html_cbd5ce4338d41be4a3fffd2da2089123&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.454             latitude:43.7878             PM2_5:22.37073864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3fac721ca229135decee4951add4233a.setContent(html_cbd5ce4338d41be4a3fffd2da2089123);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23966f27f22504846464e771b7b26422.bindPopup(popup_3fac721ca229135decee4951add4233a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14cca0cb66a5673ba1eb78f1ca104e97 = L.circleMarker(\\n\",\n       \"                [29.8181, 114.3036],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71ed4ff10f04b45e478d723df8ec6e65 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_089994d861802a06fcd620c722033458 = $(`&lt;div id=&quot;html_089994d861802a06fcd620c722033458&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3036             latitude:29.8181             PM2_5:41.71910112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71ed4ff10f04b45e478d723df8ec6e65.setContent(html_089994d861802a06fcd620c722033458);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14cca0cb66a5673ba1eb78f1ca104e97.bindPopup(popup_71ed4ff10f04b45e478d723df8ec6e65)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d367d86d9fc67b618aacf85f772b5ba9 = L.circleMarker(\\n\",\n       \"                [24.3158, 109.4839],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3c679926e446a6735b5339c8bc8dbc6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84c60ec8a5261c09dceb9ec01fc2a372 = $(`&lt;div id=&quot;html_84c60ec8a5261c09dceb9ec01fc2a372&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4839             latitude:24.3158             PM2_5:34.85854342             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3c679926e446a6735b5339c8bc8dbc6.setContent(html_84c60ec8a5261c09dceb9ec01fc2a372);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d367d86d9fc67b618aacf85f772b5ba9.bindPopup(popup_f3c679926e446a6735b5339c8bc8dbc6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8087fd34a96f7356378fbe4e144eb4bc = L.circleMarker(\\n\",\n       \"                [26.567, 101.7227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dcc2d6135c6701794ad28898e103fde8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1202e1ca7faa0e3c12cc35a681184bc8 = $(`&lt;div id=&quot;html_1202e1ca7faa0e3c12cc35a681184bc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7227             latitude:26.567             PM2_5:25.5362117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dcc2d6135c6701794ad28898e103fde8.setContent(html_1202e1ca7faa0e3c12cc35a681184bc8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8087fd34a96f7356378fbe4e144eb4bc.bindPopup(popup_dcc2d6135c6701794ad28898e103fde8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_447fd0eab48e26c35f9f67183e4fc7e0 = L.circleMarker(\\n\",\n       \"                [32.0092, 118.737],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77010e7eb755a5e1b9ab7da235d63263 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_491eac8a0d2060e5b7e6b8cd5a524c7e = $(`&lt;div id=&quot;html_491eac8a0d2060e5b7e6b8cd5a524c7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.737             latitude:32.0092             PM2_5:46.43521127             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77010e7eb755a5e1b9ab7da235d63263.setContent(html_491eac8a0d2060e5b7e6b8cd5a524c7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_447fd0eab48e26c35f9f67183e4fc7e0.bindPopup(popup_77010e7eb755a5e1b9ab7da235d63263)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a2ec6952c6b3773c036b91bde2651ec = L.circleMarker(\\n\",\n       \"                [34.9162, 113.6113],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_62637678773334d85f3d0b14f3bc442c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03ee532049b0f88bdfc512fd2770f8d6 = $(`&lt;div id=&quot;html_03ee532049b0f88bdfc512fd2770f8d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6113             latitude:34.9162             PM2_5:59.82294618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_62637678773334d85f3d0b14f3bc442c.setContent(html_03ee532049b0f88bdfc512fd2770f8d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a2ec6952c6b3773c036b91bde2651ec.bindPopup(popup_62637678773334d85f3d0b14f3bc442c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffc97a4791ec226d30951f707bac98db = L.circleMarker(\\n\",\n       \"                [34.719, 113.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b312cc62acc046f68a9281ff85c079b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e259dc1e5d75fc599f44f33301a3e530 = $(`&lt;div id=&quot;html_e259dc1e5d75fc599f44f33301a3e530&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.734             latitude:34.719             PM2_5:62.79378531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b312cc62acc046f68a9281ff85c079b.setContent(html_e259dc1e5d75fc599f44f33301a3e530);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffc97a4791ec226d30951f707bac98db.bindPopup(popup_7b312cc62acc046f68a9281ff85c079b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78f5b7c5fd15e5e1b2d4422fe60d9723 = L.circleMarker(\\n\",\n       \"                [29.3578, 113.1094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a210f492dd50f1b2203aba55c7c56cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47e591b487a8da4a9ce292f1da88451d = $(`&lt;div id=&quot;html_47e591b487a8da4a9ce292f1da88451d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1094             latitude:29.3578             PM2_5:52.86376404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a210f492dd50f1b2203aba55c7c56cc.setContent(html_47e591b487a8da4a9ce292f1da88451d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78f5b7c5fd15e5e1b2d4422fe60d9723.bindPopup(popup_4a210f492dd50f1b2203aba55c7c56cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1490745f8b4b779f8bd4d1ac4d79955 = L.circleMarker(\\n\",\n       \"                [22.9394, 112.0369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f16930768389236761131427ae7a576 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1a3705f0199e4b734f6d1e73e79d014 = $(`&lt;div id=&quot;html_b1a3705f0199e4b734f6d1e73e79d014&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0369             latitude:22.9394             PM2_5:34.66527778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f16930768389236761131427ae7a576.setContent(html_b1a3705f0199e4b734f6d1e73e79d014);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1490745f8b4b779f8bd4d1ac4d79955.bindPopup(popup_5f16930768389236761131427ae7a576)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b6ef113e99fba58687f03999aa8fb2f = L.circleMarker(\\n\",\n       \"                [27.8614, 112.9433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d308465e3b3b94181c4744c2f13dcab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e30f5594acb800310caeea5850942414 = $(`&lt;div id=&quot;html_e30f5594acb800310caeea5850942414&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9433             latitude:27.8614             PM2_5:42.59331476             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d308465e3b3b94181c4744c2f13dcab.setContent(html_e30f5594acb800310caeea5850942414);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b6ef113e99fba58687f03999aa8fb2f.bindPopup(popup_1d308465e3b3b94181c4744c2f13dcab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8490d7271ae281fbc4f10d437e254892 = L.circleMarker(\\n\",\n       \"                [23.1478, 109.5681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bbfa5b0621b0b67ff5dce0d0d78bcfa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bed36e4db1b6e0b44f5a2bbd0b10f7ec = $(`&lt;div id=&quot;html_bed36e4db1b6e0b44f5a2bbd0b10f7ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5681             latitude:23.1478             PM2_5:38.18571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bbfa5b0621b0b67ff5dce0d0d78bcfa.setContent(html_bed36e4db1b6e0b44f5a2bbd0b10f7ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8490d7271ae281fbc4f10d437e254892.bindPopup(popup_0bbfa5b0621b0b67ff5dce0d0d78bcfa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52a0f3d567fda0ba1603784b0fc2984c = L.circleMarker(\\n\",\n       \"                [39.8261, 109.9486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_454f3da3010fa413504637ba28514223 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ffd90f4fd8be734d9fff150614ee3964 = $(`&lt;div id=&quot;html_ffd90f4fd8be734d9fff150614ee3964&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9486             latitude:39.8261             PM2_5:28.75915493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_454f3da3010fa413504637ba28514223.setContent(html_ffd90f4fd8be734d9fff150614ee3964);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52a0f3d567fda0ba1603784b0fc2984c.bindPopup(popup_454f3da3010fa413504637ba28514223)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f79c38345128e67823a91cf5a9c234c0 = L.circleMarker(\\n\",\n       \"                [27.7569, 111.9561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87fe186098cf589673b3503823bcc007 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c060b05155c67cdb8a21562e8fe5d38f = $(`&lt;div id=&quot;html_c060b05155c67cdb8a21562e8fe5d38f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9561             latitude:27.7569             PM2_5:35.39577465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87fe186098cf589673b3503823bcc007.setContent(html_c060b05155c67cdb8a21562e8fe5d38f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f79c38345128e67823a91cf5a9c234c0.bindPopup(popup_87fe186098cf589673b3503823bcc007)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_665c652923713c3e84afe2cfca11b686 = L.circleMarker(\\n\",\n       \"                [26.5155, 106.6948],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba69a2d907c96415588a888f9a80ec31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c392285547f3e9523e08f858097d141a = $(`&lt;div id=&quot;html_c392285547f3e9523e08f858097d141a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6948             latitude:26.5155             PM2_5:35.31601124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba69a2d907c96415588a888f9a80ec31.setContent(html_c392285547f3e9523e08f858097d141a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_665c652923713c3e84afe2cfca11b686.bindPopup(popup_ba69a2d907c96415588a888f9a80ec31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03c081b577c3ebedca490b6c027fc349 = L.circleMarker(\\n\",\n       \"                [30.6103, 114.4272],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea6223cb632b29d667b1a884c594531f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6beb1922a63ecf2c8a3a62a8dd6d293b = $(`&lt;div id=&quot;html_6beb1922a63ecf2c8a3a62a8dd6d293b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4272             latitude:30.6103             PM2_5:57.25492958             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea6223cb632b29d667b1a884c594531f.setContent(html_6beb1922a63ecf2c8a3a62a8dd6d293b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03c081b577c3ebedca490b6c027fc349.bindPopup(popup_ea6223cb632b29d667b1a884c594531f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f15200046ef239dcaa054925f1b13c42 = L.circleMarker(\\n\",\n       \"                [43.1747, 124.3419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fbc50acf2997498017ae329d345ffc25 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5485190f205e547f5afed25d5541fd86 = $(`&lt;div id=&quot;html_5485190f205e547f5afed25d5541fd86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3419             latitude:43.1747             PM2_5:44.17746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fbc50acf2997498017ae329d345ffc25.setContent(html_5485190f205e547f5afed25d5541fd86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f15200046ef239dcaa054925f1b13c42.bindPopup(popup_fbc50acf2997498017ae329d345ffc25)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_363df7eb924a7ca883aaa036986456b1 = L.circleMarker(\\n\",\n       \"                [30.7856, 106.1064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37b8450fb35d62f4ceec8f15db042ac5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a277bc2b37434011f172eb039f8f415 = $(`&lt;div id=&quot;html_5a277bc2b37434011f172eb039f8f415&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1064             latitude:30.7856             PM2_5:49.45391061             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37b8450fb35d62f4ceec8f15db042ac5.setContent(html_5a277bc2b37434011f172eb039f8f415);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_363df7eb924a7ca883aaa036986456b1.bindPopup(popup_37b8450fb35d62f4ceec8f15db042ac5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4799c9b42f39dee7144ad281ae060fb = L.circleMarker(\\n\",\n       \"                [27.6869, 106.9222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd14f382cbeb9411fa498845a8d6d9ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74013ce1b2027e2b9fd8dcdabd37c7df = $(`&lt;div id=&quot;html_74013ce1b2027e2b9fd8dcdabd37c7df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9222             latitude:27.6869             PM2_5:30.9275766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd14f382cbeb9411fa498845a8d6d9ea.setContent(html_74013ce1b2027e2b9fd8dcdabd37c7df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4799c9b42f39dee7144ad281ae060fb.bindPopup(popup_fd14f382cbeb9411fa498845a8d6d9ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d8584a0ccfb2ee57b7013971709d119 = L.circleMarker(\\n\",\n       \"                [32.105, 118.907],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_153d6cb30896d80373a2cd5a2fd5abd2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_deaf810cde9abe9efd063619aa4841ee = $(`&lt;div id=&quot;html_deaf810cde9abe9efd063619aa4841ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.907             latitude:32.105             PM2_5:37.08189655             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_153d6cb30896d80373a2cd5a2fd5abd2.setContent(html_deaf810cde9abe9efd063619aa4841ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d8584a0ccfb2ee57b7013971709d119.bindPopup(popup_153d6cb30896d80373a2cd5a2fd5abd2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03a5d523a84953b556ae26a1ba22c0e6 = L.circleMarker(\\n\",\n       \"                [26.5495, 106.6867],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81c185f4ea7e815b3839176e751e925a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c33ea17c29b4f6c1648ff031b43d83e = $(`&lt;div id=&quot;html_3c33ea17c29b4f6c1648ff031b43d83e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6867             latitude:26.5495             PM2_5:26.4756447             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81c185f4ea7e815b3839176e751e925a.setContent(html_3c33ea17c29b4f6c1648ff031b43d83e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03a5d523a84953b556ae26a1ba22c0e6.bindPopup(popup_81c185f4ea7e815b3839176e751e925a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eae1f0f14737117ad187494f7aabb253 = L.circleMarker(\\n\",\n       \"                [39.4365, 75.9435],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7be4ebf0701620b200382a8319229e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a75d9aff62872b1fbb78cc5bf5278763 = $(`&lt;div id=&quot;html_a75d9aff62872b1fbb78cc5bf5278763&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:75.9435             latitude:39.4365             PM2_5:133.8005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7be4ebf0701620b200382a8319229e7.setContent(html_a75d9aff62872b1fbb78cc5bf5278763);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eae1f0f14737117ad187494f7aabb253.bindPopup(popup_f7be4ebf0701620b200382a8319229e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fdd25ec9789c391f69a31044660cc0f = L.circleMarker(\\n\",\n       \"                [24.5157, 117.6569],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef538b83f290a615338d3f0eedc67f61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_479e0aa107488ccd02cd364e168b8548 = $(`&lt;div id=&quot;html_479e0aa107488ccd02cd364e168b8548&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6569             latitude:24.5157             PM2_5:27.33613445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef538b83f290a615338d3f0eedc67f61.setContent(html_479e0aa107488ccd02cd364e168b8548);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fdd25ec9789c391f69a31044660cc0f.bindPopup(popup_ef538b83f290a615338d3f0eedc67f61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_602f1197b62619db645143992929e61f = L.circleMarker(\\n\",\n       \"                [47.7317, 128.9094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b00e602a279bf56801a591555338435f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85071c9611cb350941f1278bcd23e26f = $(`&lt;div id=&quot;html_85071c9611cb350941f1278bcd23e26f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:128.9094             latitude:47.7317             PM2_5:18.82248521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b00e602a279bf56801a591555338435f.setContent(html_85071c9611cb350941f1278bcd23e26f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_602f1197b62619db645143992929e61f.bindPopup(popup_b00e602a279bf56801a591555338435f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e3f1d0fe0ca56afbe08a8796235098d = L.circleMarker(\\n\",\n       \"                [47.9047, 88.1214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e52e5bb4a6a9480cdcc436dfc1413231 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_995f74dde2fa901ccf67b02572f99028 = $(`&lt;div id=&quot;html_995f74dde2fa901ccf67b02572f99028&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.1214             latitude:47.9047             PM2_5:9.540785498             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e52e5bb4a6a9480cdcc436dfc1413231.setContent(html_995f74dde2fa901ccf67b02572f99028);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e3f1d0fe0ca56afbe08a8796235098d.bindPopup(popup_e52e5bb4a6a9480cdcc436dfc1413231)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92bdbe63fad9f0c84d9a808bf44c816d = L.circleMarker(\\n\",\n       \"                [31.9438, 117.266],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10aff2ef4457d697d3b10ea92575a549 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91ca302e15606d478d5e7f28714496bf = $(`&lt;div id=&quot;html_91ca302e15606d478d5e7f28714496bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.266             latitude:31.9438             PM2_5:52.0210084             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10aff2ef4457d697d3b10ea92575a549.setContent(html_91ca302e15606d478d5e7f28714496bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92bdbe63fad9f0c84d9a808bf44c816d.bindPopup(popup_10aff2ef4457d697d3b10ea92575a549)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa07ae58028a2665a1cc5f1139aea650 = L.circleMarker(\\n\",\n       \"                [41.1386, 121.1303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2ce7bb2c1b642aae47d4ec06ec4a967 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0397ec118796d6308eb4b5add8f86e5 = $(`&lt;div id=&quot;html_f0397ec118796d6308eb4b5add8f86e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1303             latitude:41.1386             PM2_5:33.10893855             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2ce7bb2c1b642aae47d4ec06ec4a967.setContent(html_f0397ec118796d6308eb4b5add8f86e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa07ae58028a2665a1cc5f1139aea650.bindPopup(popup_a2ce7bb2c1b642aae47d4ec06ec4a967)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6801f635dfb522652805b156229d04a = L.circleMarker(\\n\",\n       \"                [29.1456, 111.7158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eabbd4645c055a67e9da3425a4c1136f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a095d6d5c766094bcfa8d8d1dbad4742 = $(`&lt;div id=&quot;html_a095d6d5c766094bcfa8d8d1dbad4742&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7158             latitude:29.1456             PM2_5:34.8832853             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eabbd4645c055a67e9da3425a4c1136f.setContent(html_a095d6d5c766094bcfa8d8d1dbad4742);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6801f635dfb522652805b156229d04a.bindPopup(popup_eabbd4645c055a67e9da3425a4c1136f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_224bcd9253446c84a1c2a6fd41afc507 = L.circleMarker(\\n\",\n       \"                [38.95111111, 121.565],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_593b1835f2eb034700a43cbe8ea8027e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29cbfe3e420a81d8a567a39e18e06313 = $(`&lt;div id=&quot;html_29cbfe3e420a81d8a567a39e18e06313&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.565             latitude:38.95111111             PM2_5:28.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_593b1835f2eb034700a43cbe8ea8027e.setContent(html_29cbfe3e420a81d8a567a39e18e06313);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_224bcd9253446c84a1c2a6fd41afc507.bindPopup(popup_593b1835f2eb034700a43cbe8ea8027e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68d71b725057cf1de0f65d94fec40720 = L.circleMarker(\\n\",\n       \"                [37.3617, 118.0018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5330d965fd58de6bb743daf2433a25ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e511954c865530f0d1a9c2e9576d579 = $(`&lt;div id=&quot;html_7e511954c865530f0d1a9c2e9576d579&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0018             latitude:37.3617             PM2_5:54.07541899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5330d965fd58de6bb743daf2433a25ee.setContent(html_7e511954c865530f0d1a9c2e9576d579);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68d71b725057cf1de0f65d94fec40720.bindPopup(popup_5330d965fd58de6bb743daf2433a25ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a6b6b3e4a0a0a10a2e84721eec1b3a0 = L.circleMarker(\\n\",\n       \"                [29.5634, 103.757],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76eef95badf9547b40e46a11a0ada20a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a7bc79d0e5989b940ab2929c171cb98 = $(`&lt;div id=&quot;html_5a7bc79d0e5989b940ab2929c171cb98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.757             latitude:29.5634             PM2_5:52.01133144             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76eef95badf9547b40e46a11a0ada20a.setContent(html_5a7bc79d0e5989b940ab2929c171cb98);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a6b6b3e4a0a0a10a2e84721eec1b3a0.bindPopup(popup_76eef95badf9547b40e46a11a0ada20a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_238443b1c7e9e0769f64a62615ada913 = L.circleMarker(\\n\",\n       \"                [25.8664, 114.9367],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_62b35adf26025bbf6dc3184859c10769 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6840ce21fdb640c024690a6b4fa6af1 = $(`&lt;div id=&quot;html_f6840ce21fdb640c024690a6b4fa6af1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9367             latitude:25.8664             PM2_5:47.77146814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_62b35adf26025bbf6dc3184859c10769.setContent(html_f6840ce21fdb640c024690a6b4fa6af1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_238443b1c7e9e0769f64a62615ada913.bindPopup(popup_62b35adf26025bbf6dc3184859c10769)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ab42c7edeb29493d19f54a3d567d9f1 = L.circleMarker(\\n\",\n       \"                [41.9419, 126.4078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5d60a211e2f1d09f7450e6b66ef15f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8303eb152379ca0aa8d4a31bacec4ef4 = $(`&lt;div id=&quot;html_8303eb152379ca0aa8d4a31bacec4ef4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4078             latitude:41.9419             PM2_5:32.37709497             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5d60a211e2f1d09f7450e6b66ef15f9.setContent(html_8303eb152379ca0aa8d4a31bacec4ef4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ab42c7edeb29493d19f54a3d567d9f1.bindPopup(popup_c5d60a211e2f1d09f7450e6b66ef15f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69bffd93e2822c69a8ddb82ae4c9b3b1 = L.circleMarker(\\n\",\n       \"                [29.8208, 121.56],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cab6703ad06f6b856b3205f9d011222d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_323e90db752f932b1c1b9aa031bc5085 = $(`&lt;div id=&quot;html_323e90db752f932b1c1b9aa031bc5085&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.56             latitude:29.8208             PM2_5:36.98472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cab6703ad06f6b856b3205f9d011222d.setContent(html_323e90db752f932b1c1b9aa031bc5085);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69bffd93e2822c69a8ddb82ae4c9b3b1.bindPopup(popup_cab6703ad06f6b856b3205f9d011222d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddd3f88beda3ac981c781ffda055b14e = L.circleMarker(\\n\",\n       \"                [37.7019, 112.7549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5263421990715e5b1d8bdecbe24e7c23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2285381013c2793c221142661edd3a37 = $(`&lt;div id=&quot;html_2285381013c2793c221142661edd3a37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7549             latitude:37.7019             PM2_5:59.83055556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5263421990715e5b1d8bdecbe24e7c23.setContent(html_2285381013c2793c221142661edd3a37);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddd3f88beda3ac981c781ffda055b14e.bindPopup(popup_5263421990715e5b1d8bdecbe24e7c23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b24ca781ef60906526c71cf30953dcf = L.circleMarker(\\n\",\n       \"                [31.1108, 104.3539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26183582281b2acd59f4522a9642ef95 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aacf73b3d4500c7b7be709fbc2474cf7 = $(`&lt;div id=&quot;html_aacf73b3d4500c7b7be709fbc2474cf7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.3539             latitude:31.1108             PM2_5:63.7266289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26183582281b2acd59f4522a9642ef95.setContent(html_aacf73b3d4500c7b7be709fbc2474cf7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b24ca781ef60906526c71cf30953dcf.bindPopup(popup_26183582281b2acd59f4522a9642ef95)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e47101db49f73f4175dc54383b38233 = L.circleMarker(\\n\",\n       \"                [36.253, 120.014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad201c7c237263a953c0ec65adeff0ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3ec76fe3af4b6b7dcd78aea64166864 = $(`&lt;div id=&quot;html_a3ec76fe3af4b6b7dcd78aea64166864&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.014             latitude:36.253             PM2_5:33.08732394             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad201c7c237263a953c0ec65adeff0ed.setContent(html_a3ec76fe3af4b6b7dcd78aea64166864);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e47101db49f73f4175dc54383b38233.bindPopup(popup_ad201c7c237263a953c0ec65adeff0ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30ed2690acc9879399c41b7779a8f02d = L.circleMarker(\\n\",\n       \"                [23.3682, 103.3758],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33ee6230b90b74df58acebbefa6ef246 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7b9f70a98ab097fd71ef04a4ddec71c = $(`&lt;div id=&quot;html_b7b9f70a98ab097fd71ef04a4ddec71c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.3758             latitude:23.3682             PM2_5:30.92655367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33ee6230b90b74df58acebbefa6ef246.setContent(html_b7b9f70a98ab097fd71ef04a4ddec71c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30ed2690acc9879399c41b7779a8f02d.bindPopup(popup_33ee6230b90b74df58acebbefa6ef246)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c0172c50ec65aa4f6e74e58574e9467 = L.circleMarker(\\n\",\n       \"                [41.0931, 123.011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f94a64ae84deae612d47d42d0116707e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4afdc6628ec42f0e8532e7ae535ae11 = $(`&lt;div id=&quot;html_d4afdc6628ec42f0e8532e7ae535ae11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.011             latitude:41.0931             PM2_5:28.875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f94a64ae84deae612d47d42d0116707e.setContent(html_d4afdc6628ec42f0e8532e7ae535ae11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c0172c50ec65aa4f6e74e58574e9467.bindPopup(popup_f94a64ae84deae612d47d42d0116707e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab374e6c42d1179b3f044b08bb948ecb = L.circleMarker(\\n\",\n       \"                [31.7956, 117.302],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63fecf81abae6e3560de91277804322c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6d76526794f324e0edf1f7f4c3cac07 = $(`&lt;div id=&quot;html_d6d76526794f324e0edf1f7f4c3cac07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.302             latitude:31.7956             PM2_5:51.98022599             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63fecf81abae6e3560de91277804322c.setContent(html_d6d76526794f324e0edf1f7f4c3cac07);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab374e6c42d1179b3f044b08bb948ecb.bindPopup(popup_63fecf81abae6e3560de91277804322c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3353753bc7aa07ea33ecdce38c0109af = L.circleMarker(\\n\",\n       \"                [22.5111, 113.4075],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b58a21bf83fb9a1b2d995f4a95601539 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5dd61932cd9090ea05808443afc61c9 = $(`&lt;div id=&quot;html_b5dd61932cd9090ea05808443afc61c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4075             latitude:22.5111             PM2_5:29.46927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b58a21bf83fb9a1b2d995f4a95601539.setContent(html_b5dd61932cd9090ea05808443afc61c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3353753bc7aa07ea33ecdce38c0109af.bindPopup(popup_b58a21bf83fb9a1b2d995f4a95601539)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64b8558ad9655a7ffe44266673880107 = L.circleMarker(\\n\",\n       \"                [29.6541, 91.1774],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1e741dd6c3749e6be45770ae9c89125 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd8704b5aee766ccbc24b1e746679d8a = $(`&lt;div id=&quot;html_cd8704b5aee766ccbc24b1e746679d8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1774             latitude:29.6541             PM2_5:13.734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1e741dd6c3749e6be45770ae9c89125.setContent(html_cd8704b5aee766ccbc24b1e746679d8a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64b8558ad9655a7ffe44266673880107.bindPopup(popup_e1e741dd6c3749e6be45770ae9c89125)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8eeec3d6d5b678236b3b515b32f60980 = L.circleMarker(\\n\",\n       \"                [26.6761, 118.0966],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_477efb895dc6739a67c3eeb70d962ba8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b76d17f175673e08e5c0428c6c6cb5d = $(`&lt;div id=&quot;html_0b76d17f175673e08e5c0428c6c6cb5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0966             latitude:26.6761             PM2_5:19.22050562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_477efb895dc6739a67c3eeb70d962ba8.setContent(html_0b76d17f175673e08e5c0428c6c6cb5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8eeec3d6d5b678236b3b515b32f60980.bindPopup(popup_477efb895dc6739a67c3eeb70d962ba8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b66182d0fc985f30a7db9da5fffbc358 = L.circleMarker(\\n\",\n       \"                [35.4883, 112.8564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5167bfecd9aef6ea5ac86c7222e94c8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4393af132fd6f06cda4fb4c556ff8c9 = $(`&lt;div id=&quot;html_b4393af132fd6f06cda4fb4c556ff8c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8564             latitude:35.4883             PM2_5:59.66573816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5167bfecd9aef6ea5ac86c7222e94c8f.setContent(html_b4393af132fd6f06cda4fb4c556ff8c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b66182d0fc985f30a7db9da5fffbc358.bindPopup(popup_5167bfecd9aef6ea5ac86c7222e94c8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76964e2780edc83225bb4aba2c7387f3 = L.circleMarker(\\n\",\n       \"                [37.187, 122.019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6c8f8ecc36a617df54fe79223ba8ed4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58e8e22cf9626130c94e561c00cc66c3 = $(`&lt;div id=&quot;html_58e8e22cf9626130c94e561c00cc66c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.019             latitude:37.187             PM2_5:19.37711864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6c8f8ecc36a617df54fe79223ba8ed4.setContent(html_58e8e22cf9626130c94e561c00cc66c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76964e2780edc83225bb4aba2c7387f3.bindPopup(popup_d6c8f8ecc36a617df54fe79223ba8ed4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7bf4190534b91a8aa64bd3faa58606bf = L.circleMarker(\\n\",\n       \"                [34.493, 109.4636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_328cc2847020c616e62f49495b845c3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_285b9bb93f01e1d5417badfc49beac92 = $(`&lt;div id=&quot;html_285b9bb93f01e1d5417badfc49beac92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4636             latitude:34.493             PM2_5:70.88997214             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_328cc2847020c616e62f49495b845c3a.setContent(html_285b9bb93f01e1d5417badfc49beac92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7bf4190534b91a8aa64bd3faa58606bf.bindPopup(popup_328cc2847020c616e62f49495b845c3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40f6c5b44bf9e44750c064daa3480726 = L.circleMarker(\\n\",\n       \"                [39.7884, 109.9734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28e777236e0557c495afe0ccc346ccb0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_194808b415be29616f9b09f677643576 = $(`&lt;div id=&quot;html_194808b415be29616f9b09f677643576&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9734             latitude:39.7884             PM2_5:24.92339833             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28e777236e0557c495afe0ccc346ccb0.setContent(html_194808b415be29616f9b09f677643576);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40f6c5b44bf9e44750c064daa3480726.bindPopup(popup_28e777236e0557c495afe0ccc346ccb0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f05ea4b8c434cd5c84797612380d34b = L.circleMarker(\\n\",\n       \"                [30.1808, 120.088],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b45d3d80326614f293872bc2360e4ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c7169af01db1338bc852f6c257333a6 = $(`&lt;div id=&quot;html_8c7169af01db1338bc852f6c257333a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.088             latitude:30.1808             PM2_5:34.76264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b45d3d80326614f293872bc2360e4ca.setContent(html_8c7169af01db1338bc852f6c257333a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f05ea4b8c434cd5c84797612380d34b.bindPopup(popup_8b45d3d80326614f293872bc2360e4ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f73f9dc60fc9e4337aa0ee8391dcc6e = L.circleMarker(\\n\",\n       \"                [35.76806, 115.0061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c47934c8aac0367bd6f397c0960e8e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_baa0ae7c2e5659a95efea7ece481a3c6 = $(`&lt;div id=&quot;html_baa0ae7c2e5659a95efea7ece481a3c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0061             latitude:35.76806             PM2_5:62.33002833             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c47934c8aac0367bd6f397c0960e8e3.setContent(html_baa0ae7c2e5659a95efea7ece481a3c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f73f9dc60fc9e4337aa0ee8391dcc6e.bindPopup(popup_0c47934c8aac0367bd6f397c0960e8e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2241afa9f68e1eae242853ec0ba6aa36 = L.circleMarker(\\n\",\n       \"                [28.76611, 104.6225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90d44fc53bd50b0b66672fa13f921d2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ccb30acb79efc7b4d03bb8fa4bcc3c6 = $(`&lt;div id=&quot;html_1ccb30acb79efc7b4d03bb8fa4bcc3c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6225             latitude:28.76611             PM2_5:47.41504178             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90d44fc53bd50b0b66672fa13f921d2a.setContent(html_1ccb30acb79efc7b4d03bb8fa4bcc3c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2241afa9f68e1eae242853ec0ba6aa36.bindPopup(popup_90d44fc53bd50b0b66672fa13f921d2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a96283e589c8eeef8e2b1c41de6f97e0 = L.circleMarker(\\n\",\n       \"                [22.6411, 110.1675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b378e020e48039618aad0cdf61c99cec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d582a3ee134456cbbb0eaf7de6481511 = $(`&lt;div id=&quot;html_d582a3ee134456cbbb0eaf7de6481511&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1675             latitude:22.6411             PM2_5:38.76056338             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b378e020e48039618aad0cdf61c99cec.setContent(html_d582a3ee134456cbbb0eaf7de6481511);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a96283e589c8eeef8e2b1c41de6f97e0.bindPopup(popup_b378e020e48039618aad0cdf61c99cec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12d94853cfd9e8c924db1fd94f5c6139 = L.circleMarker(\\n\",\n       \"                [26.6029, 106.6856],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2915e89559116b38e99fe536e5851dba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_703b02602d02bc16fa5252933c84058e = $(`&lt;div id=&quot;html_703b02602d02bc16fa5252933c84058e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6856             latitude:26.6029             PM2_5:30.36070381             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2915e89559116b38e99fe536e5851dba.setContent(html_703b02602d02bc16fa5252933c84058e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12d94853cfd9e8c924db1fd94f5c6139.bindPopup(popup_2915e89559116b38e99fe536e5851dba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c859115afcafc902d731675f99d74bf = L.circleMarker(\\n\",\n       \"                [29.7125, 106.617],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6779a4712b93b5411936302e37669036 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3069a1775384d21f3bf55b93b654576 = $(`&lt;div id=&quot;html_a3069a1775384d21f3bf55b93b654576&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.617             latitude:29.7125             PM2_5:36.10724234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6779a4712b93b5411936302e37669036.setContent(html_a3069a1775384d21f3bf55b93b654576);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c859115afcafc902d731675f99d74bf.bindPopup(popup_6779a4712b93b5411936302e37669036)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9bc57e0b7311e89f5c98b6831c374b23 = L.circleMarker(\\n\",\n       \"                [27.9939, 120.677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2bfe88a23195b6e50f8c913fbee2661a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9c4ffc431449d4270e19bcf42dfce12 = $(`&lt;div id=&quot;html_e9c4ffc431449d4270e19bcf42dfce12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.677             latitude:27.9939             PM2_5:32.07605634             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2bfe88a23195b6e50f8c913fbee2661a.setContent(html_e9c4ffc431449d4270e19bcf42dfce12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9bc57e0b7311e89f5c98b6831c374b23.bindPopup(popup_2bfe88a23195b6e50f8c913fbee2661a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6535c7da05e34207a50c5d3095433955 = L.circleMarker(\\n\",\n       \"                [36.864, 118.78],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba73ccb6fd89f08568212830d975f32b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8ff3cbd1f31b0195093ce3a4c3b1b7d = $(`&lt;div id=&quot;html_d8ff3cbd1f31b0195093ce3a4c3b1b7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.78             latitude:36.864             PM2_5:52.04333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba73ccb6fd89f08568212830d975f32b.setContent(html_d8ff3cbd1f31b0195093ce3a4c3b1b7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6535c7da05e34207a50c5d3095433955.bindPopup(popup_ba73ccb6fd89f08568212830d975f32b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4006ed1463f28931902b31ee853ca0d6 = L.circleMarker(\\n\",\n       \"                [39.3179, 112.4254],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3098c68b865f881ecd22a4dde2ffc6b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_133e78c468e0819f2e2ba62b002faabb = $(`&lt;div id=&quot;html_133e78c468e0819f2e2ba62b002faabb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4254             latitude:39.3179             PM2_5:46.64705882             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3098c68b865f881ecd22a4dde2ffc6b4.setContent(html_133e78c468e0819f2e2ba62b002faabb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4006ed1463f28931902b31ee853ca0d6.bindPopup(popup_3098c68b865f881ecd22a4dde2ffc6b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_443b8f01b242990ea9b3553a775dfce0 = L.circleMarker(\\n\",\n       \"                [27.8344, 114.9831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f9c1977076f74de0452b4fc08392163 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_87d0e7ca6c2e8ffb095601cb9f25e834 = $(`&lt;div id=&quot;html_87d0e7ca6c2e8ffb095601cb9f25e834&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9831             latitude:27.8344             PM2_5:41.76601671             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f9c1977076f74de0452b4fc08392163.setContent(html_87d0e7ca6c2e8ffb095601cb9f25e834);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_443b8f01b242990ea9b3553a775dfce0.bindPopup(popup_6f9c1977076f74de0452b4fc08392163)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7689576dc4e19a46c8b84f6ac7ee5697 = L.circleMarker(\\n\",\n       \"                [45.8167, 126.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c8a8430e5f04787a6e1c202e9c5a462 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df3bb5dbdbce41ed6f6a38f25e45ef76 = $(`&lt;div id=&quot;html_df3bb5dbdbce41ed6f6a38f25e45ef76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.561             latitude:45.8167             PM2_5:27.96121884             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c8a8430e5f04787a6e1c202e9c5a462.setContent(html_df3bb5dbdbce41ed6f6a38f25e45ef76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7689576dc4e19a46c8b84f6ac7ee5697.bindPopup(popup_4c8a8430e5f04787a6e1c202e9c5a462)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a422acb92f47c0e212fec0b7ddd6464 = L.circleMarker(\\n\",\n       \"                [21.6533, 110.9294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5ef58b543060e6ef8742ae3f7258736 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b158fc9cbc4c39e62c0594670513992f = $(`&lt;div id=&quot;html_b158fc9cbc4c39e62c0594670513992f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9294             latitude:21.6533             PM2_5:25.79741379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5ef58b543060e6ef8742ae3f7258736.setContent(html_b158fc9cbc4c39e62c0594670513992f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a422acb92f47c0e212fec0b7ddd6464.bindPopup(popup_c5ef58b543060e6ef8742ae3f7258736)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b1f08fa20d97163d77df98380fa9352 = L.circleMarker(\\n\",\n       \"                [36.0725, 103.841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc9227e050b99128b4a340b0ce69cbfe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a67fc98bdd17649f172c966918c265f = $(`&lt;div id=&quot;html_8a67fc98bdd17649f172c966918c265f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.841             latitude:36.0725             PM2_5:48.85734463             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc9227e050b99128b4a340b0ce69cbfe.setContent(html_8a67fc98bdd17649f172c966918c265f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b1f08fa20d97163d77df98380fa9352.bindPopup(popup_bc9227e050b99128b4a340b0ce69cbfe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_499f1fb75d31cc0b40011beca59c3099 = L.circleMarker(\\n\",\n       \"                [36.39, 120.47],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2fecd6fd598cb19362c3dd25c6848c1e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60b6f0b9f1178c3e38b5f2157514b392 = $(`&lt;div id=&quot;html_60b6f0b9f1178c3e38b5f2157514b392&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.47             latitude:36.39             PM2_5:28.07303371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2fecd6fd598cb19362c3dd25c6848c1e.setContent(html_60b6f0b9f1178c3e38b5f2157514b392);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_499f1fb75d31cc0b40011beca59c3099.bindPopup(popup_2fecd6fd598cb19362c3dd25c6848c1e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b2445441ebdf91f92459570d27d8f4c = L.circleMarker(\\n\",\n       \"                [46.0872, 85.6931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c39fb5f9c39679012b69f414e6be83cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aba0bbc27c442b5e141cd5da8759550f = $(`&lt;div id=&quot;html_aba0bbc27c442b5e141cd5da8759550f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:85.6931             latitude:46.0872             PM2_5:28.31534091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c39fb5f9c39679012b69f414e6be83cb.setContent(html_aba0bbc27c442b5e141cd5da8759550f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b2445441ebdf91f92459570d27d8f4c.bindPopup(popup_c39fb5f9c39679012b69f414e6be83cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b5d2de47b66bca74c6db1f70c95f7e9 = L.circleMarker(\\n\",\n       \"                [36.799, 119.976],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0a96dcd402655185bc7030c6ff6ca3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4a8891513344634c45ef14e17adb6ac = $(`&lt;div id=&quot;html_f4a8891513344634c45ef14e17adb6ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.976             latitude:36.799             PM2_5:34.60057471             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0a96dcd402655185bc7030c6ff6ca3e.setContent(html_f4a8891513344634c45ef14e17adb6ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b5d2de47b66bca74c6db1f70c95f7e9.bindPopup(popup_a0a96dcd402655185bc7030c6ff6ca3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_332cd4c4394aa977f84c6bb309f59c70 = L.circleMarker(\\n\",\n       \"                [35.272, 113.884],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2593e61a5f20e2574352af72282edbb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02be25546919d010f34426433a4807b0 = $(`&lt;div id=&quot;html_02be25546919d010f34426433a4807b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.884             latitude:35.272             PM2_5:61.12534819             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2593e61a5f20e2574352af72282edbb.setContent(html_02be25546919d010f34426433a4807b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_332cd4c4394aa977f84c6bb309f59c70.bindPopup(popup_b2593e61a5f20e2574352af72282edbb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e79396a3a09cede3fdf1cbdd36dd02b = L.circleMarker(\\n\",\n       \"                [29.90166667, 121.6147222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf41731cc06149355d4251252b6d74cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8eb2b91d71d1e39845e79ed4061857b = $(`&lt;div id=&quot;html_e8eb2b91d71d1e39845e79ed4061857b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6147222             latitude:29.90166667             PM2_5:33.82777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf41731cc06149355d4251252b6d74cd.setContent(html_e8eb2b91d71d1e39845e79ed4061857b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e79396a3a09cede3fdf1cbdd36dd02b.bindPopup(popup_cf41731cc06149355d4251252b6d74cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54681dda0406254d85267a365f6a7a22 = L.circleMarker(\\n\",\n       \"                [33.8561, 115.7831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47cb9842b1414f10dcf9941028b8c110 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af1a04793ab1f0c2ede43fe5ebe46624 = $(`&lt;div id=&quot;html_af1a04793ab1f0c2ede43fe5ebe46624&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.7831             latitude:33.8561             PM2_5:51.48280802             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47cb9842b1414f10dcf9941028b8c110.setContent(html_af1a04793ab1f0c2ede43fe5ebe46624);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54681dda0406254d85267a365f6a7a22.bindPopup(popup_47cb9842b1414f10dcf9941028b8c110)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8a70ee95b76faecd9b65c9b9957a8eb = L.circleMarker(\\n\",\n       \"                [43.9404, 81.2815],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6481e192137a74d950acdc2347fd622b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ea38b5861af904ef57c38d24e1d73c6 = $(`&lt;div id=&quot;html_1ea38b5861af904ef57c38d24e1d73c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.2815             latitude:43.9404             PM2_5:48.26760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6481e192137a74d950acdc2347fd622b.setContent(html_1ea38b5861af904ef57c38d24e1d73c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8a70ee95b76faecd9b65c9b9957a8eb.bindPopup(popup_6481e192137a74d950acdc2347fd622b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c4d54dfbeaae9deceff0de53d13fd64 = L.circleMarker(\\n\",\n       \"                [34.3181, 108.6761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54e949b50fa7e0e6924a1af3b222bd79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee6b408c420235bab06ecf553e18f457 = $(`&lt;div id=&quot;html_ee6b408c420235bab06ecf553e18f457&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6761             latitude:34.3181             PM2_5:64.58591549             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54e949b50fa7e0e6924a1af3b222bd79.setContent(html_ee6b408c420235bab06ecf553e18f457);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c4d54dfbeaae9deceff0de53d13fd64.bindPopup(popup_54e949b50fa7e0e6924a1af3b222bd79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21eab6d3461bbd799d0ff69e60988bf2 = L.circleMarker(\\n\",\n       \"                [30.7525, 120.7844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b8245b8f74b2d76675fcc5ca6aab95e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e710ce89eccac25bb87a839ec171e5c7 = $(`&lt;div id=&quot;html_e710ce89eccac25bb87a839ec171e5c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.7844444             latitude:30.7525             PM2_5:40.42222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b8245b8f74b2d76675fcc5ca6aab95e.setContent(html_e710ce89eccac25bb87a839ec171e5c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21eab6d3461bbd799d0ff69e60988bf2.bindPopup(popup_1b8245b8f74b2d76675fcc5ca6aab95e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70374fcb20a331595cac213628b501a1 = L.circleMarker(\\n\",\n       \"                [31.7848, 117.196],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83033687f527d8385b6a4290636b09af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d77c264fe86b5f34b039b650894b0a3a = $(`&lt;div id=&quot;html_d77c264fe86b5f34b039b650894b0a3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.196             latitude:31.7848             PM2_5:48.77949438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83033687f527d8385b6a4290636b09af.setContent(html_d77c264fe86b5f34b039b650894b0a3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70374fcb20a331595cac213628b501a1.bindPopup(popup_83033687f527d8385b6a4290636b09af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b78bafd8fb8a50bf679bfe7c5c61e6f = L.circleMarker(\\n\",\n       \"                [38.00583333, 114.4586111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_514a91ae77984ca55d2667ab7b5f1fbc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69cf9e8d6d0c0bec19b4e2b6cc17c1dd = $(`&lt;div id=&quot;html_69cf9e8d6d0c0bec19b4e2b6cc17c1dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4586111             latitude:38.00583333             PM2_5:64.80532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_514a91ae77984ca55d2667ab7b5f1fbc.setContent(html_69cf9e8d6d0c0bec19b4e2b6cc17c1dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b78bafd8fb8a50bf679bfe7c5c61e6f.bindPopup(popup_514a91ae77984ca55d2667ab7b5f1fbc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af51b8fcdadec0db28a3b8918a84063c = L.circleMarker(\\n\",\n       \"                [30.6872, 104.176],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_abec2a92ee7e4763924a5e1842482ee2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b7d411ae164167cbb36ac6eb9af3415 = $(`&lt;div id=&quot;html_4b7d411ae164167cbb36ac6eb9af3415&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.176             latitude:30.6872             PM2_5:55.30532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_abec2a92ee7e4763924a5e1842482ee2.setContent(html_4b7d411ae164167cbb36ac6eb9af3415);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af51b8fcdadec0db28a3b8918a84063c.bindPopup(popup_abec2a92ee7e4763924a5e1842482ee2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83e7a89693cdabd730230149364d1c93 = L.circleMarker(\\n\",\n       \"                [34.29, 117.1814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f976fd44765eb1a55c7a06fabfe1bf2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7730db6eda42b52f6621e5dbf13dc708 = $(`&lt;div id=&quot;html_7730db6eda42b52f6621e5dbf13dc708&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1814             latitude:34.29             PM2_5:63.42997199             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f976fd44765eb1a55c7a06fabfe1bf2d.setContent(html_7730db6eda42b52f6621e5dbf13dc708);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83e7a89693cdabd730230149364d1c93.bindPopup(popup_f976fd44765eb1a55c7a06fabfe1bf2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a2d212d12ba8db015d0a6a4ec2cbf6a = L.circleMarker(\\n\",\n       \"                [45.5828, 84.8897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e27da63a2b9904c343a5e3618ae3e74f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52fb7384b54f0463e73a23dc2ca1c40b = $(`&lt;div id=&quot;html_52fb7384b54f0463e73a23dc2ca1c40b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8897             latitude:45.5828             PM2_5:21.96296296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e27da63a2b9904c343a5e3618ae3e74f.setContent(html_52fb7384b54f0463e73a23dc2ca1c40b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a2d212d12ba8db015d0a6a4ec2cbf6a.bindPopup(popup_e27da63a2b9904c343a5e3618ae3e74f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aca0c4c1bbed4179ddd750a2b141ec89 = L.circleMarker(\\n\",\n       \"                [30.7157, 111.3009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e803867260230ffff01f890cc73b931 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_34f7ca67fc02e3039f1fb1e434102418 = $(`&lt;div id=&quot;html_34f7ca67fc02e3039f1fb1e434102418&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3009             latitude:30.7157             PM2_5:54.33893557             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e803867260230ffff01f890cc73b931.setContent(html_34f7ca67fc02e3039f1fb1e434102418);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aca0c4c1bbed4179ddd750a2b141ec89.bindPopup(popup_1e803867260230ffff01f890cc73b931)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0711aa4ada33b64b8d3e6567dd51acb = L.circleMarker(\\n\",\n       \"                [30.1366, 104.6617],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87406e7aad4a5f0149bf98a5f3498823 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_81df844481aca938f287583776415a13 = $(`&lt;div id=&quot;html_81df844481aca938f287583776415a13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6617             latitude:30.1366             PM2_5:33.4432133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87406e7aad4a5f0149bf98a5f3498823.setContent(html_81df844481aca938f287583776415a13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0711aa4ada33b64b8d3e6567dd51acb.bindPopup(popup_87406e7aad4a5f0149bf98a5f3498823)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f86c1b8dfe2b17277af14b2ab2f22b39 = L.circleMarker(\\n\",\n       \"                [42.8775, 129.3675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_256de128618a12e17d723c6f71339bf8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbad81e7be03c6552f460dc2baad7168 = $(`&lt;div id=&quot;html_cbad81e7be03c6552f460dc2baad7168&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.3675             latitude:42.8775             PM2_5:16.46751412             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_256de128618a12e17d723c6f71339bf8.setContent(html_cbad81e7be03c6552f460dc2baad7168);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f86c1b8dfe2b17277af14b2ab2f22b39.bindPopup(popup_256de128618a12e17d723c6f71339bf8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06bac4b2521eef5a8aaf7b417d11a746 = L.circleMarker(\\n\",\n       \"                [34.7496, 113.5991],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aeaa598b3de50f07aa120a2b0d2edd7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93247d9c6cc61235d17025cd7a1ae94f = $(`&lt;div id=&quot;html_93247d9c6cc61235d17025cd7a1ae94f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5991             latitude:34.7496             PM2_5:64.34520124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aeaa598b3de50f07aa120a2b0d2edd7a.setContent(html_93247d9c6cc61235d17025cd7a1ae94f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06bac4b2521eef5a8aaf7b417d11a746.bindPopup(popup_aeaa598b3de50f07aa120a2b0d2edd7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74af696fe227524dc0fcde8e6cf331c0 = L.circleMarker(\\n\",\n       \"                [29.261, 91.7706],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c388567f50356272977cb0e738ea93ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_633aa9b191801a43a62699bfdf88f5eb = $(`&lt;div id=&quot;html_633aa9b191801a43a62699bfdf88f5eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.7706             latitude:29.261             PM2_5:7.943313953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c388567f50356272977cb0e738ea93ae.setContent(html_633aa9b191801a43a62699bfdf88f5eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74af696fe227524dc0fcde8e6cf331c0.bindPopup(popup_c388567f50356272977cb0e738ea93ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9c1f380d0c19b06ff2313e7d748784b = L.circleMarker(\\n\",\n       \"                [34.7967, 114.2886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90f94b2a5411f655e29156c745c4089d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c50da50d552d6ad8bf6c5b411c393e1c = $(`&lt;div id=&quot;html_c50da50d552d6ad8bf6c5b411c393e1c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2886             latitude:34.7967             PM2_5:58.68994413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90f94b2a5411f655e29156c745c4089d.setContent(html_c50da50d552d6ad8bf6c5b411c393e1c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9c1f380d0c19b06ff2313e7d748784b.bindPopup(popup_90f94b2a5411f655e29156c745c4089d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6674c43b22a4ee3024a168322fd25e37 = L.circleMarker(\\n\",\n       \"                [32.18888889, 119.4369444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d94adfd634a10eae07dee74927a5368 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0b6e78659339663801eb71a7e66c653 = $(`&lt;div id=&quot;html_c0b6e78659339663801eb71a7e66c653&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.4369444             latitude:32.18888889             PM2_5:49.86908078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d94adfd634a10eae07dee74927a5368.setContent(html_c0b6e78659339663801eb71a7e66c653);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6674c43b22a4ee3024a168322fd25e37.bindPopup(popup_7d94adfd634a10eae07dee74927a5368)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffa6aa77971effc411ca27e86b2edd04 = L.circleMarker(\\n\",\n       \"                [29.6747, 91.1221],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52b92a1032f50e8bd604db3adabe2acb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_515d46ed672428ebe3a690896b7d3769 = $(`&lt;div id=&quot;html_515d46ed672428ebe3a690896b7d3769&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1221             latitude:29.6747             PM2_5:15.42241379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52b92a1032f50e8bd604db3adabe2acb.setContent(html_515d46ed672428ebe3a690896b7d3769);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffa6aa77971effc411ca27e86b2edd04.bindPopup(popup_52b92a1032f50e8bd604db3adabe2acb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3dc47baee2410f6092148a4eb15b8f2 = L.circleMarker(\\n\",\n       \"                [22.0019, 100.7939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7e21efa4893e12066c96b1c398d72c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_134a1ffa923ff700c05ba8fcb7ff88ee = $(`&lt;div id=&quot;html_134a1ffa923ff700c05ba8fcb7ff88ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.7939             latitude:22.0019             PM2_5:25.28366762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7e21efa4893e12066c96b1c398d72c0.setContent(html_134a1ffa923ff700c05ba8fcb7ff88ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3dc47baee2410f6092148a4eb15b8f2.bindPopup(popup_e7e21efa4893e12066c96b1c398d72c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_768f7cc0120a235f2f5cc420eaf82542 = L.circleMarker(\\n\",\n       \"                [34.7822, 111.19],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_affc392fc2c27a9626a99741421b5394 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_251823c29e0aab17ab6bca520fa3da06 = $(`&lt;div id=&quot;html_251823c29e0aab17ab6bca520fa3da06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.19             latitude:34.7822             PM2_5:56.6448468             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_affc392fc2c27a9626a99741421b5394.setContent(html_251823c29e0aab17ab6bca520fa3da06);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_768f7cc0120a235f2f5cc420eaf82542.bindPopup(popup_affc392fc2c27a9626a99741421b5394)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d40137164a1e3cad3cddbb6122671b6 = L.circleMarker(\\n\",\n       \"                [26.8576, 100.2143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_728f9a930435ec3c6dfd931c0c331ec7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3ea26dd86828da4bafc5e17319f6fb7 = $(`&lt;div id=&quot;html_c3ea26dd86828da4bafc5e17319f6fb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2143             latitude:26.8576             PM2_5:19.28389831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_728f9a930435ec3c6dfd931c0c331ec7.setContent(html_c3ea26dd86828da4bafc5e17319f6fb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d40137164a1e3cad3cddbb6122671b6.bindPopup(popup_728f9a930435ec3c6dfd931c0c331ec7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7777651d99c3db79144ffc9b546c3b23 = L.circleMarker(\\n\",\n       \"                [36.61981, 114.4965],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab87849049ed29b8921be53da9ac26ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7083e8bc990c7cfddd405e89177a8eec = $(`&lt;div id=&quot;html_7083e8bc990c7cfddd405e89177a8eec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4965             latitude:36.61981             PM2_5:70.51810585             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab87849049ed29b8921be53da9ac26ff.setContent(html_7083e8bc990c7cfddd405e89177a8eec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7777651d99c3db79144ffc9b546c3b23.bindPopup(popup_ab87849049ed29b8921be53da9ac26ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_02d96bf2457bec9c24da9e97910a6bce = L.circleMarker(\\n\",\n       \"                [32.3292, 119.8767],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_378d7b2250933208d2fac5e7bd30d9a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c177e70452067fc13c9ac486a9b55c8f = $(`&lt;div id=&quot;html_c177e70452067fc13c9ac486a9b55c8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.8767             latitude:32.3292             PM2_5:46.44334278             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_378d7b2250933208d2fac5e7bd30d9a5.setContent(html_c177e70452067fc13c9ac486a9b55c8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_02d96bf2457bec9c24da9e97910a6bce.bindPopup(popup_378d7b2250933208d2fac5e7bd30d9a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b8702b53b0453c9d59b458354b42e02 = L.circleMarker(\\n\",\n       \"                [34.2778, 117.2933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00c2659bff2870f6a4726e4742cd61ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11b1a85b5e89a6c6351301039e416b91 = $(`&lt;div id=&quot;html_11b1a85b5e89a6c6351301039e416b91&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2933             latitude:34.2778             PM2_5:67.94117647             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00c2659bff2870f6a4726e4742cd61ea.setContent(html_11b1a85b5e89a6c6351301039e416b91);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b8702b53b0453c9d59b458354b42e02.bindPopup(popup_00c2659bff2870f6a4726e4742cd61ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63d5c8783f09a3da5176fcb3f614aa7b = L.circleMarker(\\n\",\n       \"                [37.3803, 118.0062],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a04e5a8354484fc7a242a1fbcc7bdf84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f488f0bf8d4a53922ff1a25ee384a4cf = $(`&lt;div id=&quot;html_f488f0bf8d4a53922ff1a25ee384a4cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0062             latitude:37.3803             PM2_5:57.56779661             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a04e5a8354484fc7a242a1fbcc7bdf84.setContent(html_f488f0bf8d4a53922ff1a25ee384a4cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63d5c8783f09a3da5176fcb3f614aa7b.bindPopup(popup_a04e5a8354484fc7a242a1fbcc7bdf84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37598ec5245181ef6a654f93b32fff49 = L.circleMarker(\\n\",\n       \"                [29.8272, 106.379],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b1353f5a7d0d1b242d747888bd6b120 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9d3d9b60c35975cff7b6fe7068b98b3 = $(`&lt;div id=&quot;html_d9d3d9b60c35975cff7b6fe7068b98b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.379             latitude:29.8272             PM2_5:31.79189944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b1353f5a7d0d1b242d747888bd6b120.setContent(html_d9d3d9b60c35975cff7b6fe7068b98b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37598ec5245181ef6a654f93b32fff49.bindPopup(popup_3b1353f5a7d0d1b242d747888bd6b120)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ca0ba035730bc5e53bc1f3c0beca43b = L.circleMarker(\\n\",\n       \"                [28.6425, 115.892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4023baeb2501d5af04dc052cdee62ee6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dac22c8f96c688fc7b2894736d578fc3 = $(`&lt;div id=&quot;html_dac22c8f96c688fc7b2894736d578fc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.892             latitude:28.6425             PM2_5:36.65598886             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4023baeb2501d5af04dc052cdee62ee6.setContent(html_dac22c8f96c688fc7b2894736d578fc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ca0ba035730bc5e53bc1f3c0beca43b.bindPopup(popup_4023baeb2501d5af04dc052cdee62ee6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17ce024a9f8099acb60e1f3b9b25b0cc = L.circleMarker(\\n\",\n       \"                [39.0511, 121.7769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_836137afaea5768d9f554c4487f76c70 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02940fbe31160ec0e6f64cb03010e17d = $(`&lt;div id=&quot;html_02940fbe31160ec0e6f64cb03010e17d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.7769             latitude:39.0511             PM2_5:29.50833333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_836137afaea5768d9f554c4487f76c70.setContent(html_02940fbe31160ec0e6f64cb03010e17d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17ce024a9f8099acb60e1f3b9b25b0cc.bindPopup(popup_836137afaea5768d9f554c4487f76c70)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c64250897b5cf68b826a85a793c7018a = L.circleMarker(\\n\",\n       \"                [39.3265, 112.4078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f54d2e8d5c18fa8e4a8f9c2d1e76873 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc1a733481c53e7a7b4b58754275ad76 = $(`&lt;div id=&quot;html_fc1a733481c53e7a7b4b58754275ad76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4078             latitude:39.3265             PM2_5:48.93417367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f54d2e8d5c18fa8e4a8f9c2d1e76873.setContent(html_fc1a733481c53e7a7b4b58754275ad76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c64250897b5cf68b826a85a793c7018a.bindPopup(popup_2f54d2e8d5c18fa8e4a8f9c2d1e76873)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_419abb006ce782273aa10612501e0d0a = L.circleMarker(\\n\",\n       \"                [37.7575, 115.6951],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a6ea5493fc32c63b426843c9b2d71b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18cc186e8ed22244bfd8a30eeae8bcad = $(`&lt;div id=&quot;html_18cc186e8ed22244bfd8a30eeae8bcad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6951             latitude:37.7575             PM2_5:58.14285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a6ea5493fc32c63b426843c9b2d71b9.setContent(html_18cc186e8ed22244bfd8a30eeae8bcad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_419abb006ce782273aa10612501e0d0a.bindPopup(popup_7a6ea5493fc32c63b426843c9b2d71b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4b6543720920c2cdaeee09c99159148 = L.circleMarker(\\n\",\n       \"                [42.2814, 118.9233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87b4b3a24870c43dd477b6bab807a70e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a031eb4d9e5917b1dce8726e313ba146 = $(`&lt;div id=&quot;html_a031eb4d9e5917b1dce8726e313ba146&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9233             latitude:42.2814             PM2_5:24.72268908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87b4b3a24870c43dd477b6bab807a70e.setContent(html_a031eb4d9e5917b1dce8726e313ba146);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4b6543720920c2cdaeee09c99159148.bindPopup(popup_87b4b3a24870c43dd477b6bab807a70e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fc268dbfc06a5e9ec902d7d65ada748 = L.circleMarker(\\n\",\n       \"                [33.027, 112.5573],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8db473a6d6bf0b91cad486e82f5b71ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_863560dd1434bdb8108ef11e03d817ea = $(`&lt;div id=&quot;html_863560dd1434bdb8108ef11e03d817ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5573             latitude:33.027             PM2_5:60.09610028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8db473a6d6bf0b91cad486e82f5b71ee.setContent(html_863560dd1434bdb8108ef11e03d817ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fc268dbfc06a5e9ec902d7d65ada748.bindPopup(popup_8db473a6d6bf0b91cad486e82f5b71ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9156981125a95749a81fae81a1205dd6 = L.circleMarker(\\n\",\n       \"                [35.3962, 119.54],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc550ff8915175a5884310d59ba91c6d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7b2b62f4e0458611adeddf7e5b51281 = $(`&lt;div id=&quot;html_f7b2b62f4e0458611adeddf7e5b51281&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.54             latitude:35.3962             PM2_5:42.57464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc550ff8915175a5884310d59ba91c6d.setContent(html_f7b2b62f4e0458611adeddf7e5b51281);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9156981125a95749a81fae81a1205dd6.bindPopup(popup_bc550ff8915175a5884310d59ba91c6d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c39b498ec7e7f42cc708a817c4553eb0 = L.circleMarker(\\n\",\n       \"                [21.5958, 109.2256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbcff04cd44c377ceba2803b567cdbbd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07cb71af719e30676a03a22bc38607ba = $(`&lt;div id=&quot;html_07cb71af719e30676a03a22bc38607ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2256             latitude:21.5958             PM2_5:34.31700288             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbcff04cd44c377ceba2803b567cdbbd.setContent(html_07cb71af719e30676a03a22bc38607ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c39b498ec7e7f42cc708a817c4553eb0.bindPopup(popup_bbcff04cd44c377ceba2803b567cdbbd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82dafdac12b1d29a1055383400e99b6a = L.circleMarker(\\n\",\n       \"                [35.31, 113.836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5fd4d501e37171bb4801ce16087d804f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c762702091cd9460166b8a2eade2782 = $(`&lt;div id=&quot;html_9c762702091cd9460166b8a2eade2782&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.836             latitude:35.31             PM2_5:57.52793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5fd4d501e37171bb4801ce16087d804f.setContent(html_9c762702091cd9460166b8a2eade2782);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82dafdac12b1d29a1055383400e99b6a.bindPopup(popup_5fd4d501e37171bb4801ce16087d804f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28a5d110abee8f87911a55545975a00d = L.circleMarker(\\n\",\n       \"                [43.55, 125.633],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8dfff38e9d427d253879b0b69233e54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9fec5c9e98eb199511ece2c5e9d71614 = $(`&lt;div id=&quot;html_9fec5c9e98eb199511ece2c5e9d71614&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.633             latitude:43.55             PM2_5:26.19602273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8dfff38e9d427d253879b0b69233e54.setContent(html_9fec5c9e98eb199511ece2c5e9d71614);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28a5d110abee8f87911a55545975a00d.bindPopup(popup_b8dfff38e9d427d253879b0b69233e54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59457031906fedc8cb221c5da8af6388 = L.circleMarker(\\n\",\n       \"                [28.6844, 115.931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04bacf95f869e47f6bfd07e2373c2b4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4fdfbdf9f0ad86337509966afd33be4 = $(`&lt;div id=&quot;html_f4fdfbdf9f0ad86337509966afd33be4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.931             latitude:28.6844             PM2_5:35.57244318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04bacf95f869e47f6bfd07e2373c2b4f.setContent(html_f4fdfbdf9f0ad86337509966afd33be4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59457031906fedc8cb221c5da8af6388.bindPopup(popup_04bacf95f869e47f6bfd07e2373c2b4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58f39ae28ef69e2f93b9cc99b83f7250 = L.circleMarker(\\n\",\n       \"                [35.4813, 112.8252],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9c315966ffe8d105f492499516972e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67ac27b4233109817a86d732068bbb97 = $(`&lt;div id=&quot;html_67ac27b4233109817a86d732068bbb97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8252             latitude:35.4813             PM2_5:60.03361345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9c315966ffe8d105f492499516972e8.setContent(html_67ac27b4233109817a86d732068bbb97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58f39ae28ef69e2f93b9cc99b83f7250.bindPopup(popup_b9c315966ffe8d105f492499516972e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9007fa1ffbfd3c35bae3a6df34c4962b = L.circleMarker(\\n\",\n       \"                [30.2897, 120.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_818db48b4f9855f6b6442cae32339481 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4fa69ffb6693c250c45272ca4eb8652e = $(`&lt;div id=&quot;html_4fa69ffb6693c250c45272ca4eb8652e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.157             latitude:30.2897             PM2_5:50.10972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_818db48b4f9855f6b6442cae32339481.setContent(html_4fa69ffb6693c250c45272ca4eb8652e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9007fa1ffbfd3c35bae3a6df34c4962b.bindPopup(popup_818db48b4f9855f6b6442cae32339481)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ea7d1b6aece5ba5f3656bd0bb17c82a = L.circleMarker(\\n\",\n       \"                [30.049, 119.946],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28bb4c6d9b53338de1ff2e0444ac0f3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07e4f58dcaaf89947e2584288eaa5b2b = $(`&lt;div id=&quot;html_07e4f58dcaaf89947e2584288eaa5b2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.946             latitude:30.049             PM2_5:31.72916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28bb4c6d9b53338de1ff2e0444ac0f3e.setContent(html_07e4f58dcaaf89947e2584288eaa5b2b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ea7d1b6aece5ba5f3656bd0bb17c82a.bindPopup(popup_28bb4c6d9b53338de1ff2e0444ac0f3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3000a0966b0f4ce0f4453043fdd38cce = L.circleMarker(\\n\",\n       \"                [32.0878, 118.626],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60c31862b5f90b4a1848c698d099567d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6550d5fa4166acf0fa4033126256466 = $(`&lt;div id=&quot;html_e6550d5fa4166acf0fa4033126256466&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.626             latitude:32.0878             PM2_5:38.83383686             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60c31862b5f90b4a1848c698d099567d.setContent(html_e6550d5fa4166acf0fa4033126256466);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3000a0966b0f4ce0f4453043fdd38cce.bindPopup(popup_60c31862b5f90b4a1848c698d099567d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50fdcb3696935f28d68d92aa04dcfcf3 = L.circleMarker(\\n\",\n       \"                [36.6164, 114.5426],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d887a7754f472b1e087965819e875fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9db1fe4324d170ba49849f3ecadab75d = $(`&lt;div id=&quot;html_9db1fe4324d170ba49849f3ecadab75d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5426             latitude:36.6164             PM2_5:75.5491573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d887a7754f472b1e087965819e875fa.setContent(html_9db1fe4324d170ba49849f3ecadab75d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50fdcb3696935f28d68d92aa04dcfcf3.bindPopup(popup_2d887a7754f472b1e087965819e875fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a21c24224c88da2459caeb3860e7d138 = L.circleMarker(\\n\",\n       \"                [46.8025, 130.2719],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9ea25d7ae78be28377fdc2917a68d75 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abf691ff1a123119e5a49d3bc3365ea2 = $(`&lt;div id=&quot;html_abf691ff1a123119e5a49d3bc3365ea2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.2719             latitude:46.8025             PM2_5:28.64647887             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9ea25d7ae78be28377fdc2917a68d75.setContent(html_abf691ff1a123119e5a49d3bc3365ea2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a21c24224c88da2459caeb3860e7d138.bindPopup(popup_b9ea25d7ae78be28377fdc2917a68d75)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6226525d27f4e5aaaa7836ec05ef45a8 = L.circleMarker(\\n\",\n       \"                [23.6714, 116.6339],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc79ef979f7509f7bcb8eebe61f474f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1eff666e024073275e4881ee00c2e546 = $(`&lt;div id=&quot;html_1eff666e024073275e4881ee00c2e546&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6339             latitude:23.6714             PM2_5:29.08888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc79ef979f7509f7bcb8eebe61f474f1.setContent(html_1eff666e024073275e4881ee00c2e546);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6226525d27f4e5aaaa7836ec05ef45a8.bindPopup(popup_cc79ef979f7509f7bcb8eebe61f474f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8fbe87235ecc20f58a396b8a2f6fea68 = L.circleMarker(\\n\",\n       \"                [41.1933, 80.2956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9b8c5db70826b4a65e28de27823c768 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d1b0fa25beff2d2480622940d60c99f = $(`&lt;div id=&quot;html_5d1b0fa25beff2d2480622940d60c99f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2956             latitude:41.1933             PM2_5:69.5377095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9b8c5db70826b4a65e28de27823c768.setContent(html_5d1b0fa25beff2d2480622940d60c99f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8fbe87235ecc20f58a396b8a2f6fea68.bindPopup(popup_a9b8c5db70826b4a65e28de27823c768)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_671ba76416d85c26531ce1b227237d21 = L.circleMarker(\\n\",\n       \"                [38.9467, 100.4686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9bb9ee93923d58e7ead516e840826532 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8bb10d3b293eb0d4b4f769003cb949b1 = $(`&lt;div id=&quot;html_8bb10d3b293eb0d4b4f769003cb949b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.4686             latitude:38.9467             PM2_5:19.8             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9bb9ee93923d58e7ead516e840826532.setContent(html_8bb10d3b293eb0d4b4f769003cb949b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_671ba76416d85c26531ce1b227237d21.bindPopup(popup_9bb9ee93923d58e7ead516e840826532)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4b87a58cf3b3e503a564e7679acb118 = L.circleMarker(\\n\",\n       \"                [22.6069, 113.104],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_341238109d7014e47155e7e406aa90a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7680079042f760ab7274ce7c614957e2 = $(`&lt;div id=&quot;html_7680079042f760ab7274ce7c614957e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.104             latitude:22.6069             PM2_5:37.28011204             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_341238109d7014e47155e7e406aa90a3.setContent(html_7680079042f760ab7274ce7c614957e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4b87a58cf3b3e503a564e7679acb118.bindPopup(popup_341238109d7014e47155e7e406aa90a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ad9f2384e48cbc4f154a199b59dd78f = L.circleMarker(\\n\",\n       \"                [30.2028, 115.0767],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6c1aa0d070ec2d3b798af48944d9e885 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd1022a0a1448bb298e1794fb528a5d1 = $(`&lt;div id=&quot;html_cd1022a0a1448bb298e1794fb528a5d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0767             latitude:30.2028             PM2_5:54.00704225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6c1aa0d070ec2d3b798af48944d9e885.setContent(html_cd1022a0a1448bb298e1794fb528a5d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ad9f2384e48cbc4f154a199b59dd78f.bindPopup(popup_6c1aa0d070ec2d3b798af48944d9e885)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa3944fe711578af3b93e01d639ab9cd = L.circleMarker(\\n\",\n       \"                [40.7608, 107.4211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb584ec2c8b73977ec22928efc4d7ea4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24aeb691ba9653e7531cfe74ccbb3963 = $(`&lt;div id=&quot;html_24aeb691ba9653e7531cfe74ccbb3963&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4211             latitude:40.7608             PM2_5:25.21610169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb584ec2c8b73977ec22928efc4d7ea4.setContent(html_24aeb691ba9653e7531cfe74ccbb3963);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa3944fe711578af3b93e01d639ab9cd.bindPopup(popup_fb584ec2c8b73977ec22928efc4d7ea4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a612cd80bad08ee57f1ca4f778f9c146 = L.circleMarker(\\n\",\n       \"                [41.7128, 86.2381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96e32ecc44ae5b7505a1ac816feb9c45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1d568c57720b93a8a5d7cdb098653ab = $(`&lt;div id=&quot;html_a1d568c57720b93a8a5d7cdb098653ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.2381             latitude:41.7128             PM2_5:41.54929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96e32ecc44ae5b7505a1ac816feb9c45.setContent(html_a1d568c57720b93a8a5d7cdb098653ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a612cd80bad08ee57f1ca4f778f9c146.bindPopup(popup_96e32ecc44ae5b7505a1ac816feb9c45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88cd73df7726586e2fca5d9e94aa4661 = L.circleMarker(\\n\",\n       \"                [43.8256, 126.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_381bb5835e80266e495df04b79afbf18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0b251cdf2c9d5b36af26eb01c7397a5 = $(`&lt;div id=&quot;html_b0b251cdf2c9d5b36af26eb01c7397a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.55             latitude:43.8256             PM2_5:32.43871866             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_381bb5835e80266e495df04b79afbf18.setContent(html_b0b251cdf2c9d5b36af26eb01c7397a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88cd73df7726586e2fca5d9e94aa4661.bindPopup(popup_381bb5835e80266e495df04b79afbf18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_277569992bc32e021cf028773a951b6a = L.circleMarker(\\n\",\n       \"                [31.2994, 120.543],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57405332c1076fd96a5fd0d138b0a812 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d898878657d4d09921b074b2e3cb2404 = $(`&lt;div id=&quot;html_d898878657d4d09921b074b2e3cb2404&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.543             latitude:31.2994             PM2_5:40.22777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57405332c1076fd96a5fd0d138b0a812.setContent(html_d898878657d4d09921b074b2e3cb2404);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_277569992bc32e021cf028773a951b6a.bindPopup(popup_57405332c1076fd96a5fd0d138b0a812)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3f64e81c78cc556d2b2693efe867d95 = L.circleMarker(\\n\",\n       \"                [26.2331, 111.6236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77b1e8e28d8c0ad8f8722f17ac313bdb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db367c3a28427355019fd46a2a6118e8 = $(`&lt;div id=&quot;html_db367c3a28427355019fd46a2a6118e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6236             latitude:26.2331             PM2_5:39.27011494             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77b1e8e28d8c0ad8f8722f17ac313bdb.setContent(html_db367c3a28427355019fd46a2a6118e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3f64e81c78cc556d2b2693efe867d95.bindPopup(popup_77b1e8e28d8c0ad8f8722f17ac313bdb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8198e43af2b16dd5d87a3d96a1b9c89c = L.circleMarker(\\n\",\n       \"                [24.506, 117.7116],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9cf86d00b81fc701707454c3d3b4fe0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_123bcafcf6351dad162eab913d1bc4ff = $(`&lt;div id=&quot;html_123bcafcf6351dad162eab913d1bc4ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7116             latitude:24.506             PM2_5:32.09052925             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9cf86d00b81fc701707454c3d3b4fe0b.setContent(html_123bcafcf6351dad162eab913d1bc4ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8198e43af2b16dd5d87a3d96a1b9c89c.bindPopup(popup_9cf86d00b81fc701707454c3d3b4fe0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6347288e47fa353917f22da9f433d8c = L.circleMarker(\\n\",\n       \"                [26.0931, 119.58],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38a5c13c0a5477356956ad764469a50c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c26bfc9972b4432f04c475da8e3b63b = $(`&lt;div id=&quot;html_5c26bfc9972b4432f04c475da8e3b63b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.58             latitude:26.0931             PM2_5:24.6103352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38a5c13c0a5477356956ad764469a50c.setContent(html_5c26bfc9972b4432f04c475da8e3b63b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6347288e47fa353917f22da9f433d8c.bindPopup(popup_38a5c13c0a5477356956ad764469a50c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2aef548af75d1fb8e027f3354fbc74f5 = L.circleMarker(\\n\",\n       \"                [23.0048, 113.134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_227d9289988dad5f33f080ad7a578b22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a28724b0597345700dbe38cdeb37bc0 = $(`&lt;div id=&quot;html_3a28724b0597345700dbe38cdeb37bc0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.134             latitude:23.0048             PM2_5:35.82152975             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_227d9289988dad5f33f080ad7a578b22.setContent(html_3a28724b0597345700dbe38cdeb37bc0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2aef548af75d1fb8e027f3354fbc74f5.bindPopup(popup_227d9289988dad5f33f080ad7a578b22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7297a0b58de5c4fd8883f54833882fdc = L.circleMarker(\\n\",\n       \"                [26.2403, 107.5228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ddc03759243125434440386cef40460 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be5f8f49cbd0d84a3888e9e30206699a = $(`&lt;div id=&quot;html_be5f8f49cbd0d84a3888e9e30206699a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5228             latitude:26.2403             PM2_5:23.11350575             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ddc03759243125434440386cef40460.setContent(html_be5f8f49cbd0d84a3888e9e30206699a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7297a0b58de5c4fd8883f54833882fdc.bindPopup(popup_6ddc03759243125434440386cef40460)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10977f9be4e4639e29e02592cbffe8a8 = L.circleMarker(\\n\",\n       \"                [38.2911, 109.7456],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec36a9b9cd40bae0bacb89e49c1a8f98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c161416ef744fc8a3bdd59210dbb1321 = $(`&lt;div id=&quot;html_c161416ef744fc8a3bdd59210dbb1321&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7456             latitude:38.2911             PM2_5:29.62570621             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec36a9b9cd40bae0bacb89e49c1a8f98.setContent(html_c161416ef744fc8a3bdd59210dbb1321);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10977f9be4e4639e29e02592cbffe8a8.bindPopup(popup_ec36a9b9cd40bae0bacb89e49c1a8f98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97f423ebc350599669b3b43ee5c126e0 = L.circleMarker(\\n\",\n       \"                [46.6384, 126.9934],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd593bb520c696271bfd772cee6f6c58 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3322df620c18e024b80e488dd6b81d29 = $(`&lt;div id=&quot;html_3322df620c18e024b80e488dd6b81d29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.9934             latitude:46.6384             PM2_5:29.89728097             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd593bb520c696271bfd772cee6f6c58.setContent(html_3322df620c18e024b80e488dd6b81d29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97f423ebc350599669b3b43ee5c126e0.bindPopup(popup_cd593bb520c696271bfd772cee6f6c58)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3efc2d01f973f1c31868010a77cefa7 = L.circleMarker(\\n\",\n       \"                [28.1944, 113.0014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1a1b483eb3f01378f81bfc37bb84946 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54d46aa8fd36620f19fb8df213386773 = $(`&lt;div id=&quot;html_54d46aa8fd36620f19fb8df213386773&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0014             latitude:28.1944             PM2_5:52.33757062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1a1b483eb3f01378f81bfc37bb84946.setContent(html_54d46aa8fd36620f19fb8df213386773);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3efc2d01f973f1c31868010a77cefa7.bindPopup(popup_b1a1b483eb3f01378f81bfc37bb84946)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_759d66b8befb1595bd92f02da9109a39 = L.circleMarker(\\n\",\n       \"                [33.0706, 107.0154],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_180167f5d0acd29a917a1c249fc4a17b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2649080879faaa23abb4f72b8cc3cacd = $(`&lt;div id=&quot;html_2649080879faaa23abb4f72b8cc3cacd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0154             latitude:33.0706             PM2_5:47.69553073             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_180167f5d0acd29a917a1c249fc4a17b.setContent(html_2649080879faaa23abb4f72b8cc3cacd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_759d66b8befb1595bd92f02da9109a39.bindPopup(popup_180167f5d0acd29a917a1c249fc4a17b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb990f8a1249a35545a6e1beddfb43a8 = L.circleMarker(\\n\",\n       \"                [28.2403, 117.0281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a119b925331c8d9ec90f00e4db1b94cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be4a8c645531aeaed1d870557134890a = $(`&lt;div id=&quot;html_be4a8c645531aeaed1d870557134890a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0281             latitude:28.2403             PM2_5:34.53501401             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a119b925331c8d9ec90f00e4db1b94cb.setContent(html_be4a8c645531aeaed1d870557134890a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb990f8a1249a35545a6e1beddfb43a8.bindPopup(popup_a119b925331c8d9ec90f00e4db1b94cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c89b62b89c0687d517f0325a2ffd8014 = L.circleMarker(\\n\",\n       \"                [27.8036, 114.9314],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8194f8585bd4f1e4fd67e8ae4066460f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd10e11450b858d8b8add622d2f6b588 = $(`&lt;div id=&quot;html_cd10e11450b858d8b8add622d2f6b588&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9314             latitude:27.8036             PM2_5:42.52089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8194f8585bd4f1e4fd67e8ae4066460f.setContent(html_cd10e11450b858d8b8add622d2f6b588);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c89b62b89c0687d517f0325a2ffd8014.bindPopup(popup_8194f8585bd4f1e4fd67e8ae4066460f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb5e520a68a2943e38a6b33858c636d8 = L.circleMarker(\\n\",\n       \"                [27.7314, 112.0194],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d2a7ce38d60dca9aae793a118520c6a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac972b9f9527416261b09a4cadd74162 = $(`&lt;div id=&quot;html_ac972b9f9527416261b09a4cadd74162&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0194             latitude:27.7314             PM2_5:31.31779661             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d2a7ce38d60dca9aae793a118520c6a5.setContent(html_ac972b9f9527416261b09a4cadd74162);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb5e520a68a2943e38a6b33858c636d8.bindPopup(popup_d2a7ce38d60dca9aae793a118520c6a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b6880c017cb55e90a49fbb6e74f74e7 = L.circleMarker(\\n\",\n       \"                [39.0845, 117.1589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9c88531cf8c93574a50311f0faeb9ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e833c1442516f753c16ed1e442f18ff8 = $(`&lt;div id=&quot;html_e833c1442516f753c16ed1e442f18ff8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1589             latitude:39.0845             PM2_5:50.49011299             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9c88531cf8c93574a50311f0faeb9ae.setContent(html_e833c1442516f753c16ed1e442f18ff8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b6880c017cb55e90a49fbb6e74f74e7.bindPopup(popup_e9c88531cf8c93574a50311f0faeb9ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb0ae766d62b55da389607c29c7b0493 = L.circleMarker(\\n\",\n       \"                [31.354, 119.818],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9bdecd246551da742003e10f951ca66 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_41da409a410972e3e6e6be579f57b601 = $(`&lt;div id=&quot;html_41da409a410972e3e6e6be579f57b601&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.818             latitude:31.354             PM2_5:47.49582173             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9bdecd246551da742003e10f951ca66.setContent(html_41da409a410972e3e6e6be579f57b601);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb0ae766d62b55da389607c29c7b0493.bindPopup(popup_e9bdecd246551da742003e10f951ca66)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1f3199c0fb5e4a6888caf857c75a508 = L.circleMarker(\\n\",\n       \"                [33.9506, 118.3214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffe178eabfdad248bee783b1e6f8e517 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c887ae5166a791c2cefbc89bf0efe6f = $(`&lt;div id=&quot;html_1c887ae5166a791c2cefbc89bf0efe6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3214             latitude:33.9506             PM2_5:54.23463687             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffe178eabfdad248bee783b1e6f8e517.setContent(html_1c887ae5166a791c2cefbc89bf0efe6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1f3199c0fb5e4a6888caf857c75a508.bindPopup(popup_ffe178eabfdad248bee783b1e6f8e517)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_899548f21e82233033b2e47619f2ee74 = L.circleMarker(\\n\",\n       \"                [35.0003, 102.905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9882bc00c4e9f4213c27c838dcab182c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b3c1336f2dbbb3cf5bf0112b0528984 = $(`&lt;div id=&quot;html_6b3c1336f2dbbb3cf5bf0112b0528984&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.905             latitude:35.0003             PM2_5:27.56901408             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9882bc00c4e9f4213c27c838dcab182c.setContent(html_6b3c1336f2dbbb3cf5bf0112b0528984);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_899548f21e82233033b2e47619f2ee74.bindPopup(popup_9882bc00c4e9f4213c27c838dcab182c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67c4d9100bb7ef03dca8e560e5e004df = L.circleMarker(\\n\",\n       \"                [31.2071, 121.577],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb79d9b1353863247ad1233f08327f2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c09c4df1d5251d745d06fa8f03944d6 = $(`&lt;div id=&quot;html_3c09c4df1d5251d745d06fa8f03944d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.577             latitude:31.2071             PM2_5:40.78472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb79d9b1353863247ad1233f08327f2f.setContent(html_3c09c4df1d5251d745d06fa8f03944d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67c4d9100bb7ef03dca8e560e5e004df.bindPopup(popup_fb79d9b1353863247ad1233f08327f2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac1770f2231191bb7c7c49cc6546c14d = L.circleMarker(\\n\",\n       \"                [32.0197, 112.155],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28898b2aa795073ce92e025163693fc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c4d9c05234a27f193b11967c572769c = $(`&lt;div id=&quot;html_1c4d9c05234a27f193b11967c572769c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.155             latitude:32.0197             PM2_5:64.06741573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28898b2aa795073ce92e025163693fc4.setContent(html_1c4d9c05234a27f193b11967c572769c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac1770f2231191bb7c7c49cc6546c14d.bindPopup(popup_28898b2aa795073ce92e025163693fc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb9c9dda54e26e4289b3009f88dfd042 = L.circleMarker(\\n\",\n       \"                [37.364, 120.394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_62943c4261141b0d7f5648dfc346321b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0083709b8fbba50813bb5a79cf12ae68 = $(`&lt;div id=&quot;html_0083709b8fbba50813bb5a79cf12ae68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.394             latitude:37.364             PM2_5:30.69662921             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_62943c4261141b0d7f5648dfc346321b.setContent(html_0083709b8fbba50813bb5a79cf12ae68);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb9c9dda54e26e4289b3009f88dfd042.bindPopup(popup_62943c4261141b0d7f5648dfc346321b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b839213ff0f1f037f75cc94e5de1cd27 = L.circleMarker(\\n\",\n       \"                [31.5072, 104.7283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bce6950b0db20e5426c9c7182e409852 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_696551fb87f1724bd014684132b41b8d = $(`&lt;div id=&quot;html_696551fb87f1724bd014684132b41b8d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7283             latitude:31.5072             PM2_5:50.53472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bce6950b0db20e5426c9c7182e409852.setContent(html_696551fb87f1724bd014684132b41b8d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b839213ff0f1f037f75cc94e5de1cd27.bindPopup(popup_bce6950b0db20e5426c9c7182e409852)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3d9feb3b1ad2a78150b0843899dcabb = L.circleMarker(\\n\",\n       \"                [36.8041, 117.8512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6e9eca3b9766b1b33e1ee6510a4b527 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ef6e268de352344cc7f7d6b590c4ab8 = $(`&lt;div id=&quot;html_2ef6e268de352344cc7f7d6b590c4ab8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8512             latitude:36.8041             PM2_5:56.51267606             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6e9eca3b9766b1b33e1ee6510a4b527.setContent(html_2ef6e268de352344cc7f7d6b590c4ab8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3d9feb3b1ad2a78150b0843899dcabb.bindPopup(popup_a6e9eca3b9766b1b33e1ee6510a4b527)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f46c829644437c0402ad440f813810e = L.circleMarker(\\n\",\n       \"                [36.913, 121.531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf9f302797832f1e762e543e8ba99f99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3243253bf3b1bcdc3f23e4ba2516c208 = $(`&lt;div id=&quot;html_3243253bf3b1bcdc3f23e4ba2516c208&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.531             latitude:36.913             PM2_5:20.8988604             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf9f302797832f1e762e543e8ba99f99.setContent(html_3243253bf3b1bcdc3f23e4ba2516c208);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f46c829644437c0402ad440f813810e.bindPopup(popup_bf9f302797832f1e762e543e8ba99f99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cac74f14cf218162e55020392189488a = L.circleMarker(\\n\",\n       \"                [34.5885, 119.176],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2432e5c6e1c408667c12b5686057c921 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7e1f4048d185716aaff8bb57c935f19 = $(`&lt;div id=&quot;html_f7e1f4048d185716aaff8bb57c935f19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.176             latitude:34.5885             PM2_5:42.12256267             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2432e5c6e1c408667c12b5686057c921.setContent(html_f7e1f4048d185716aaff8bb57c935f19);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cac74f14cf218162e55020392189488a.bindPopup(popup_2432e5c6e1c408667c12b5686057c921)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06bb95c863cad829ffd315deeb14e864 = L.circleMarker(\\n\",\n       \"                [34.7745, 113.641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1816197e3efee95e7bf82823cd25535e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_776d72de98b9fdc86dc80185aeabe091 = $(`&lt;div id=&quot;html_776d72de98b9fdc86dc80185aeabe091&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.641             latitude:34.7745             PM2_5:63.62078652             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1816197e3efee95e7bf82823cd25535e.setContent(html_776d72de98b9fdc86dc80185aeabe091);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06bb95c863cad829ffd315deeb14e864.bindPopup(popup_1816197e3efee95e7bf82823cd25535e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ebf4dc0f58946b43350c6e1341c9071 = L.circleMarker(\\n\",\n       \"                [24.77908333, 113.6734722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12106dba7ebca52028c34731fbf554db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ea82b30c5299fd7932df92c1661cca6 = $(`&lt;div id=&quot;html_3ea82b30c5299fd7932df92c1661cca6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6734722             latitude:24.77908333             PM2_5:34.24229692             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12106dba7ebca52028c34731fbf554db.setContent(html_3ea82b30c5299fd7932df92c1661cca6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ebf4dc0f58946b43350c6e1341c9071.bindPopup(popup_12106dba7ebca52028c34731fbf554db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cddfc2119c18ae9802dccc32ec7ee6f1 = L.circleMarker(\\n\",\n       \"                [34.9817, 118.2764],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7270c5fa27ce35f7e1df47b58579395 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a358a1ba1e892d74458015d35e9eb884 = $(`&lt;div id=&quot;html_a358a1ba1e892d74458015d35e9eb884&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2764             latitude:34.9817             PM2_5:46.4432133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7270c5fa27ce35f7e1df47b58579395.setContent(html_a358a1ba1e892d74458015d35e9eb884);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cddfc2119c18ae9802dccc32ec7ee6f1.bindPopup(popup_b7270c5fa27ce35f7e1df47b58579395)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d7eef231851d5e335d4def5499a625d = L.circleMarker(\\n\",\n       \"                [37.8792, 113.4922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa1ef96eab542ffc8fb16c62a8c670d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7384583863ec069d4500feb69e74a90 = $(`&lt;div id=&quot;html_d7384583863ec069d4500feb69e74a90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4922             latitude:37.8792             PM2_5:50.03267045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa1ef96eab542ffc8fb16c62a8c670d5.setContent(html_d7384583863ec069d4500feb69e74a90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d7eef231851d5e335d4def5499a625d.bindPopup(popup_aa1ef96eab542ffc8fb16c62a8c670d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a83db9e5ebcb782dbce19a15e223c637 = L.circleMarker(\\n\",\n       \"                [22.5497, 113.3881],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9c9ebd8cbc50aaa15235f1d39f2cbff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22ce160321ca27fb09048f69727de0ad = $(`&lt;div id=&quot;html_22ce160321ca27fb09048f69727de0ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3881             latitude:22.5497             PM2_5:33.25770308             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9c9ebd8cbc50aaa15235f1d39f2cbff.setContent(html_22ce160321ca27fb09048f69727de0ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a83db9e5ebcb782dbce19a15e223c637.bindPopup(popup_e9c9ebd8cbc50aaa15235f1d39f2cbff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c4433833f89b1302627e6ce3471eed1 = L.circleMarker(\\n\",\n       \"                [22.7629, 113.257],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b08ec17754027770fb62053b0b810ba3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b745310b2408c169af6a275895684fc9 = $(`&lt;div id=&quot;html_b745310b2408c169af6a275895684fc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.257             latitude:22.7629             PM2_5:34.17746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b08ec17754027770fb62053b0b810ba3.setContent(html_b745310b2408c169af6a275895684fc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c4433833f89b1302627e6ce3471eed1.bindPopup(popup_b08ec17754027770fb62053b0b810ba3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea485e5e1763994a9a48544e32c6c7cb = L.circleMarker(\\n\",\n       \"                [40.8367, 114.8985],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03afdd3f22e92cea7aaff17c4f8314e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4880508bedb48f921accf2f56d628044 = $(`&lt;div id=&quot;html_4880508bedb48f921accf2f56d628044&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8985             latitude:40.8367             PM2_5:26.28910615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03afdd3f22e92cea7aaff17c4f8314e1.setContent(html_4880508bedb48f921accf2f56d628044);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea485e5e1763994a9a48544e32c6c7cb.bindPopup(popup_03afdd3f22e92cea7aaff17c4f8314e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_839e7e9802c0e130f5c3d8f87b03d3e5 = L.circleMarker(\\n\",\n       \"                [23.5353, 116.3697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f532f8595d0c4f2eca70477b6597036 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c188ea5dcb19bed34b4d9e0ff2ec376d = $(`&lt;div id=&quot;html_c188ea5dcb19bed34b4d9e0ff2ec376d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3697             latitude:23.5353             PM2_5:30.43258427             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f532f8595d0c4f2eca70477b6597036.setContent(html_c188ea5dcb19bed34b4d9e0ff2ec376d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_839e7e9802c0e130f5c3d8f87b03d3e5.bindPopup(popup_3f532f8595d0c4f2eca70477b6597036)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36d31670058f50e616cc668e401f74f9 = L.circleMarker(\\n\",\n       \"                [35.0308, 110.9678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b74bfefd167f4696d1cdc307a1d35e7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22c2fba76ee29d8e64b4e8d88951c8f8 = $(`&lt;div id=&quot;html_22c2fba76ee29d8e64b4e8d88951c8f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9678             latitude:35.0308             PM2_5:72.14185393             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b74bfefd167f4696d1cdc307a1d35e7a.setContent(html_22c2fba76ee29d8e64b4e8d88951c8f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36d31670058f50e616cc668e401f74f9.bindPopup(popup_b74bfefd167f4696d1cdc307a1d35e7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92442c87baa873607899d17ff71457b2 = L.circleMarker(\\n\",\n       \"                [25.0492, 101.538],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a33c3eb5c1c89f3223f12eeb31c508f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_796b200d9a4677e32efcf5422cd50d38 = $(`&lt;div id=&quot;html_796b200d9a4677e32efcf5422cd50d38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.538             latitude:25.0492             PM2_5:21.25348189             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a33c3eb5c1c89f3223f12eeb31c508f3.setContent(html_796b200d9a4677e32efcf5422cd50d38);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92442c87baa873607899d17ff71457b2.bindPopup(popup_a33c3eb5c1c89f3223f12eeb31c508f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9d88b3b51f834504be7b6d4aa8ca44a = L.circleMarker(\\n\",\n       \"                [27.9747, 120.76],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6c1492f632e0c5466105316dece5ca3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96482a2ad50fcbc5d5454b1f4dd6dbe1 = $(`&lt;div id=&quot;html_96482a2ad50fcbc5d5454b1f4dd6dbe1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.76             latitude:27.9747             PM2_5:30.625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6c1492f632e0c5466105316dece5ca3.setContent(html_96482a2ad50fcbc5d5454b1f4dd6dbe1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9d88b3b51f834504be7b6d4aa8ca44a.bindPopup(popup_b6c1492f632e0c5466105316dece5ca3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4fd58ba52de68331fcfa6dd94ae9921c = L.circleMarker(\\n\",\n       \"                [24.6928, 108.054],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_592844bacff4391fc8bc3a0ff42ef51c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d934458d0ef657351d992d96abad3ad = $(`&lt;div id=&quot;html_1d934458d0ef657351d992d96abad3ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.054             latitude:24.6928             PM2_5:30.28151261             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_592844bacff4391fc8bc3a0ff42ef51c.setContent(html_1d934458d0ef657351d992d96abad3ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4fd58ba52de68331fcfa6dd94ae9921c.bindPopup(popup_592844bacff4391fc8bc3a0ff42ef51c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57ed6911b5f5420c997bcfe6b041c426 = L.circleMarker(\\n\",\n       \"                [39.0153, 106.3717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c79858b01fcd323dddab1445efe907a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da0510e2ca8ebc9caf803db2fd396e93 = $(`&lt;div id=&quot;html_da0510e2ca8ebc9caf803db2fd396e93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3717             latitude:39.0153             PM2_5:49.59103641             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c79858b01fcd323dddab1445efe907a3.setContent(html_da0510e2ca8ebc9caf803db2fd396e93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57ed6911b5f5420c997bcfe6b041c426.bindPopup(popup_c79858b01fcd323dddab1445efe907a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b8ec247d73a31dd3dd9c1079295d02e = L.circleMarker(\\n\",\n       \"                [43.941, 81.3364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87e99f8798fa69933b0d6480f7d15891 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2c886709cc052e4bd456d9f99566ae2 = $(`&lt;div id=&quot;html_d2c886709cc052e4bd456d9f99566ae2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.3364             latitude:43.941             PM2_5:54.96022727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87e99f8798fa69933b0d6480f7d15891.setContent(html_d2c886709cc052e4bd456d9f99566ae2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b8ec247d73a31dd3dd9c1079295d02e.bindPopup(popup_87e99f8798fa69933b0d6480f7d15891)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2eeb098af44c1d96fa604a55878ec229 = L.circleMarker(\\n\",\n       \"                [39.746, 98.509],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_adc25b0188ef64a677b6a4670c1718a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ff943479ffe60a6ea9f221b3f9cd630 = $(`&lt;div id=&quot;html_8ff943479ffe60a6ea9f221b3f9cd630&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.509             latitude:39.746             PM2_5:32.68854749             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_adc25b0188ef64a677b6a4670c1718a0.setContent(html_8ff943479ffe60a6ea9f221b3f9cd630);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2eeb098af44c1d96fa604a55878ec229.bindPopup(popup_adc25b0188ef64a677b6a4670c1718a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42fb44452d8267fb8a8dcb85670a4a3d = L.circleMarker(\\n\",\n       \"                [25.8417, 98.8546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4bebd15689f9414f7968fa8d2924aa2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9347004f43ed953e3fe35513f1953663 = $(`&lt;div id=&quot;html_9347004f43ed953e3fe35513f1953663&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.8546             latitude:25.8417             PM2_5:15.54347826             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4bebd15689f9414f7968fa8d2924aa2a.setContent(html_9347004f43ed953e3fe35513f1953663);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42fb44452d8267fb8a8dcb85670a4a3d.bindPopup(popup_4bebd15689f9414f7968fa8d2924aa2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2881297a3f3d8dab1f412ef8ef28bb8b = L.circleMarker(\\n\",\n       \"                [29.6376, 94.3681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_960d6142c2d3f403cdb76542c4f2d03e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_87681e32961e99944e3b10cf60ac6902 = $(`&lt;div id=&quot;html_87681e32961e99944e3b10cf60ac6902&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:94.3681             latitude:29.6376             PM2_5:9.39017341             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_960d6142c2d3f403cdb76542c4f2d03e.setContent(html_87681e32961e99944e3b10cf60ac6902);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2881297a3f3d8dab1f412ef8ef28bb8b.bindPopup(popup_960d6142c2d3f403cdb76542c4f2d03e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b50a68ca613765054808fb072ac4510 = L.circleMarker(\\n\",\n       \"                [29.4402, 112.9943],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d630f99bb208c6cdb337c22b79b3359 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bee8a937a2ed5ea7bd69e257085aa5a0 = $(`&lt;div id=&quot;html_bee8a937a2ed5ea7bd69e257085aa5a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9943             latitude:29.4402             PM2_5:47.75             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d630f99bb208c6cdb337c22b79b3359.setContent(html_bee8a937a2ed5ea7bd69e257085aa5a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b50a68ca613765054808fb072ac4510.bindPopup(popup_3d630f99bb208c6cdb337c22b79b3359)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25dc048d82bf188edd78c5da4f1b0689 = L.circleMarker(\\n\",\n       \"                [34.2629, 108.993],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5783352734414c657ef731f654843a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_848144519454092aa11db65e19d7f75b = $(`&lt;div id=&quot;html_848144519454092aa11db65e19d7f75b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.993             latitude:34.2629             PM2_5:62.91193182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5783352734414c657ef731f654843a3.setContent(html_848144519454092aa11db65e19d7f75b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25dc048d82bf188edd78c5da4f1b0689.bindPopup(popup_a5783352734414c657ef731f654843a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2187c7530ea1fe1318fb9e974680e0bd = L.circleMarker(\\n\",\n       \"                [41.5931, 120.4439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf36334998d05cb1ba15fc5404f46573 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac44f097b5ba61ff92911832a83e0ff8 = $(`&lt;div id=&quot;html_ac44f097b5ba61ff92911832a83e0ff8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4439             latitude:41.5931             PM2_5:27.10888252             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf36334998d05cb1ba15fc5404f46573.setContent(html_ac44f097b5ba61ff92911832a83e0ff8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2187c7530ea1fe1318fb9e974680e0bd.bindPopup(popup_bf36334998d05cb1ba15fc5404f46573)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f93f056238811804ea69bdc3a3d9352 = L.circleMarker(\\n\",\n       \"                [34.794, 111.158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_137620f5e5610f288105b0787c1bee52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_931d11d372aa30f53b6e4ae9099fa3ef = $(`&lt;div id=&quot;html_931d11d372aa30f53b6e4ae9099fa3ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.158             latitude:34.794             PM2_5:58.11898017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_137620f5e5610f288105b0787c1bee52.setContent(html_931d11d372aa30f53b6e4ae9099fa3ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f93f056238811804ea69bdc3a3d9352.bindPopup(popup_137620f5e5610f288105b0787c1bee52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d134dca06112fa5e0da83d56c8edd781 = L.circleMarker(\\n\",\n       \"                [46.5888, 131.1572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_abe6667ea5000733d08a8ea618163a21 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1365226750bedc210cd264f2549b315a = $(`&lt;div id=&quot;html_1365226750bedc210cd264f2549b315a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1572             latitude:46.5888             PM2_5:31.57807808             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_abe6667ea5000733d08a8ea618163a21.setContent(html_1365226750bedc210cd264f2549b315a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d134dca06112fa5e0da83d56c8edd781.bindPopup(popup_abe6667ea5000733d08a8ea618163a21)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16fe1dad48155e099cc4f736142d9431 = L.circleMarker(\\n\",\n       \"                [31.5475, 120.354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6cec199464944885bcb1f8f4bf750b9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62cb8e65eaafccf7a301f2bc14cb4efc = $(`&lt;div id=&quot;html_62cb8e65eaafccf7a301f2bc14cb4efc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.354             latitude:31.5475             PM2_5:42.00139665             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6cec199464944885bcb1f8f4bf750b9d.setContent(html_62cb8e65eaafccf7a301f2bc14cb4efc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16fe1dad48155e099cc4f736142d9431.bindPopup(popup_6cec199464944885bcb1f8f4bf750b9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd8a5e9cadde257f2607fc7d9c9394cb = L.circleMarker(\\n\",\n       \"                [39.8673, 116.366],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33ab88b406ebe557e56a658f99d10390 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_786abb5489700f874d9281e8fbb72b5d = $(`&lt;div id=&quot;html_786abb5489700f874d9281e8fbb72b5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.366             latitude:39.8673             PM2_5:54.73389356             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33ab88b406ebe557e56a658f99d10390.setContent(html_786abb5489700f874d9281e8fbb72b5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd8a5e9cadde257f2607fc7d9c9394cb.bindPopup(popup_33ab88b406ebe557e56a658f99d10390)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bcd265f9c87ee3a060f2471e786c0a30 = L.circleMarker(\\n\",\n       \"                [29.9834, 103.0109],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78d553a171086d0bb21db34ed9e29fd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c3e9cef0c033ec11d6e66ee1b32ce09 = $(`&lt;div id=&quot;html_9c3e9cef0c033ec11d6e66ee1b32ce09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0109             latitude:29.9834             PM2_5:42.66619318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78d553a171086d0bb21db34ed9e29fd5.setContent(html_9c3e9cef0c033ec11d6e66ee1b32ce09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bcd265f9c87ee3a060f2471e786c0a30.bindPopup(popup_78d553a171086d0bb21db34ed9e29fd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a470d28efc671ea8685f404881da827 = L.circleMarker(\\n\",\n       \"                [29.6453, 106.562],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_174a9fb80593e8061c61b1640e85d523 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_959fa625202b3a01b06238ede68b4654 = $(`&lt;div id=&quot;html_959fa625202b3a01b06238ede68b4654&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.562             latitude:29.6453             PM2_5:35.45125348             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_174a9fb80593e8061c61b1640e85d523.setContent(html_959fa625202b3a01b06238ede68b4654);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a470d28efc671ea8685f404881da827.bindPopup(popup_174a9fb80593e8061c61b1640e85d523)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f13764102c49a477328c0389f2b1561 = L.circleMarker(\\n\",\n       \"                [39.16969, 117.2099],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c12aeeaa464ed3ff7e5bf756f667964f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99cd788271c878f9702dc851a2fe7946 = $(`&lt;div id=&quot;html_99cd788271c878f9702dc851a2fe7946&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2099             latitude:39.16969             PM2_5:47.05177515             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c12aeeaa464ed3ff7e5bf756f667964f.setContent(html_99cd788271c878f9702dc851a2fe7946);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f13764102c49a477328c0389f2b1561.bindPopup(popup_c12aeeaa464ed3ff7e5bf756f667964f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23a5f8fe0a6780637a325d256cd018e8 = L.circleMarker(\\n\",\n       \"                [41.3047, 123.7308],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ed1f8dc95acbadb7b5eb0094301f346 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6f9a3cb8f5061b75d027ca6441455b0 = $(`&lt;div id=&quot;html_f6f9a3cb8f5061b75d027ca6441455b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7308             latitude:41.3047             PM2_5:28.61699164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ed1f8dc95acbadb7b5eb0094301f346.setContent(html_f6f9a3cb8f5061b75d027ca6441455b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23a5f8fe0a6780637a325d256cd018e8.bindPopup(popup_6ed1f8dc95acbadb7b5eb0094301f346)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08e4bb9be82885ed6785ff3ac94e7fee = L.circleMarker(\\n\",\n       \"                [28.4231, 119.879],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_513fb55ddda7581130e7cd4477ee897b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a55ed9b9521d7751715623a06a1660d9 = $(`&lt;div id=&quot;html_a55ed9b9521d7751715623a06a1660d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.879             latitude:28.4231             PM2_5:30.35369318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_513fb55ddda7581130e7cd4477ee897b.setContent(html_a55ed9b9521d7751715623a06a1660d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08e4bb9be82885ed6785ff3ac94e7fee.bindPopup(popup_513fb55ddda7581130e7cd4477ee897b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_addf1fdd2a0405bb0e613d61535494c5 = L.circleMarker(\\n\",\n       \"                [38.91194444, 121.6330556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a046b1994418bba1681455abeac0441d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65c67d850037bcaf250376a880311396 = $(`&lt;div id=&quot;html_65c67d850037bcaf250376a880311396&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6330556             latitude:38.91194444             PM2_5:30.51815642             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a046b1994418bba1681455abeac0441d.setContent(html_65c67d850037bcaf250376a880311396);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_addf1fdd2a0405bb0e613d61535494c5.bindPopup(popup_a046b1994418bba1681455abeac0441d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c746578b3d976522eda54f0fc2e079a = L.circleMarker(\\n\",\n       \"                [30.3944, 114.8878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f5fefeb6b481c7a2b3390005e2faae4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e81ab097d4309fe4644a4d0f9a3429ea = $(`&lt;div id=&quot;html_e81ab097d4309fe4644a4d0f9a3429ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8878             latitude:30.3944             PM2_5:50.14027778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f5fefeb6b481c7a2b3390005e2faae4.setContent(html_e81ab097d4309fe4644a4d0f9a3429ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c746578b3d976522eda54f0fc2e079a.bindPopup(popup_9f5fefeb6b481c7a2b3390005e2faae4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd5a6656cfe5897dba19e456cefa088a = L.circleMarker(\\n\",\n       \"                [40.7378, 107.3715],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_95280850d832b9af81cfcafe0ddc573b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58267ba0a3b83c053f1f9e9fb54ea9ea = $(`&lt;div id=&quot;html_58267ba0a3b83c053f1f9e9fb54ea9ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3715             latitude:40.7378             PM2_5:27.96590909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_95280850d832b9af81cfcafe0ddc573b.setContent(html_58267ba0a3b83c053f1f9e9fb54ea9ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd5a6656cfe5897dba19e456cefa088a.bindPopup(popup_95280850d832b9af81cfcafe0ddc573b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_982c73e88039d3ed7a273762e34987aa = L.circleMarker(\\n\",\n       \"                [22.9477, 113.352],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba421468e72362cda6574d873ef565da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c7b4e66d3792050b29bcd02f74a4a3a = $(`&lt;div id=&quot;html_1c7b4e66d3792050b29bcd02f74a4a3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.352             latitude:22.9477             PM2_5:36.97331461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba421468e72362cda6574d873ef565da.setContent(html_1c7b4e66d3792050b29bcd02f74a4a3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_982c73e88039d3ed7a273762e34987aa.bindPopup(popup_ba421468e72362cda6574d873ef565da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_144b2d6ea7264df5fcf8f836d80eb701 = L.circleMarker(\\n\",\n       \"                [38.4841, 106.2739],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e67b8aa376a2e9352b63fdee10126364 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ceb35c2ad4f6a962b67495a801d107f = $(`&lt;div id=&quot;html_5ceb35c2ad4f6a962b67495a801d107f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2739             latitude:38.4841             PM2_5:46.99579832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e67b8aa376a2e9352b63fdee10126364.setContent(html_5ceb35c2ad4f6a962b67495a801d107f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_144b2d6ea7264df5fcf8f836d80eb701.bindPopup(popup_e67b8aa376a2e9352b63fdee10126364)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_478285bd5a97c41bf43ceb217eb72ee8 = L.circleMarker(\\n\",\n       \"                [29.355, 113.2117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ff7b8e44ad9c57e9b66547821c35192 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ceacf251a508f1503472c8a3896d0172 = $(`&lt;div id=&quot;html_ceacf251a508f1503472c8a3896d0172&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2117             latitude:29.355             PM2_5:43.30473373             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ff7b8e44ad9c57e9b66547821c35192.setContent(html_ceacf251a508f1503472c8a3896d0172);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_478285bd5a97c41bf43ceb217eb72ee8.bindPopup(popup_3ff7b8e44ad9c57e9b66547821c35192)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9041c2f6a32695c8a7fb9e34b565f60 = L.circleMarker(\\n\",\n       \"                [28.8833, 105.4322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a3e80340692b9530224865f877bb9df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76c77b9d0261978e98ec86637f0f3e34 = $(`&lt;div id=&quot;html_76c77b9d0261978e98ec86637f0f3e34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4322             latitude:28.8833             PM2_5:37.04353933             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a3e80340692b9530224865f877bb9df.setContent(html_76c77b9d0261978e98ec86637f0f3e34);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9041c2f6a32695c8a7fb9e34b565f60.bindPopup(popup_4a3e80340692b9530224865f877bb9df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddc7a4e24e5d0656ca5774322f6f83ae = L.circleMarker(\\n\",\n       \"                [22.4853, 113.4411],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81237db5e3d7ed1f5a1234f24187d23e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54b7cd79afe32d13fec1b76b93909d9f = $(`&lt;div id=&quot;html_54b7cd79afe32d13fec1b76b93909d9f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4411             latitude:22.4853             PM2_5:37.20505618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81237db5e3d7ed1f5a1234f24187d23e.setContent(html_54b7cd79afe32d13fec1b76b93909d9f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddc7a4e24e5d0656ca5774322f6f83ae.bindPopup(popup_81237db5e3d7ed1f5a1234f24187d23e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbfb75af775f227ab114bb037c9d105c = L.circleMarker(\\n\",\n       \"                [41.1042, 121.835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0e3ee70320e18be54a0595fc3472dd6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_751ecfb0e81a40bc8d120cb0e16fe6c0 = $(`&lt;div id=&quot;html_751ecfb0e81a40bc8d120cb0e16fe6c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.835             latitude:41.1042             PM2_5:29.90948276             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0e3ee70320e18be54a0595fc3472dd6.setContent(html_751ecfb0e81a40bc8d120cb0e16fe6c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbfb75af775f227ab114bb037c9d105c.bindPopup(popup_d0e3ee70320e18be54a0595fc3472dd6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a50cbb8ca1dd3485d93aaed4c330a0e = L.circleMarker(\\n\",\n       \"                [35.7289, 107.6831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a0a671b7eb1f66a6343c0fa2c8bac3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_352880153aea9ff023108f82942b4f5b = $(`&lt;div id=&quot;html_352880153aea9ff023108f82942b4f5b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6831             latitude:35.7289             PM2_5:28.02793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a0a671b7eb1f66a6343c0fa2c8bac3f.setContent(html_352880153aea9ff023108f82942b4f5b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a50cbb8ca1dd3485d93aaed4c330a0e.bindPopup(popup_3a0a671b7eb1f66a6343c0fa2c8bac3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_585c5cb472be4d770f0bb16305097bd8 = L.circleMarker(\\n\",\n       \"                [31.92, 120.302],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ebf69639414c7abb581448d76aced60 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c44a9aeb9441c90705e523a4baab5f5 = $(`&lt;div id=&quot;html_2c44a9aeb9441c90705e523a4baab5f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.302             latitude:31.92             PM2_5:56.37743733             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ebf69639414c7abb581448d76aced60.setContent(html_2c44a9aeb9441c90705e523a4baab5f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_585c5cb472be4d770f0bb16305097bd8.bindPopup(popup_7ebf69639414c7abb581448d76aced60)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11851a851d28ef0a26d02edf5ccafd5b = L.circleMarker(\\n\",\n       \"                [45.7478, 126.593],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_954afb896083c8d4cdf1ac30cd13c82c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_151d0fd6c63f7ba43e3578473d57b5ee = $(`&lt;div id=&quot;html_151d0fd6c63f7ba43e3578473d57b5ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.593             latitude:45.7478             PM2_5:37.80972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_954afb896083c8d4cdf1ac30cd13c82c.setContent(html_151d0fd6c63f7ba43e3578473d57b5ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11851a851d28ef0a26d02edf5ccafd5b.bindPopup(popup_954afb896083c8d4cdf1ac30cd13c82c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12d886d36315fce33775c844768aca19 = L.circleMarker(\\n\",\n       \"                [29.7048, 115.9581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbfb933e79c4498950083cd09a5ca606 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b34dd6db0e1dff42c55500841d6cc4b = $(`&lt;div id=&quot;html_1b34dd6db0e1dff42c55500841d6cc4b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9581             latitude:29.7048             PM2_5:43.60306407             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbfb933e79c4498950083cd09a5ca606.setContent(html_1b34dd6db0e1dff42c55500841d6cc4b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12d886d36315fce33775c844768aca19.bindPopup(popup_bbfb933e79c4498950083cd09a5ca606)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_217a8cd4385f82bbd8e8af9f3dc091a9 = L.circleMarker(\\n\",\n       \"                [38.4186, 112.7356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe18db4b9b83319cc586b78546dd8fb4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04635b05b1f887d5a816b2be12a5a007 = $(`&lt;div id=&quot;html_04635b05b1f887d5a816b2be12a5a007&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7356             latitude:38.4186             PM2_5:59.60806916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe18db4b9b83319cc586b78546dd8fb4.setContent(html_04635b05b1f887d5a816b2be12a5a007);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_217a8cd4385f82bbd8e8af9f3dc091a9.bindPopup(popup_fe18db4b9b83319cc586b78546dd8fb4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_568ff538d7cbf32eac9583da0585730d = L.circleMarker(\\n\",\n       \"                [39.0631, 121.9769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f995cdca03297c7f84b142b6022addab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f9ec6c6fe5aaad8f4d0d65c8f142075 = $(`&lt;div id=&quot;html_0f9ec6c6fe5aaad8f4d0d65c8f142075&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.9769             latitude:39.0631             PM2_5:25.05477528             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f995cdca03297c7f84b142b6022addab.setContent(html_0f9ec6c6fe5aaad8f4d0d65c8f142075);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_568ff538d7cbf32eac9583da0585730d.bindPopup(popup_f995cdca03297c7f84b142b6022addab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab4798f477f09b7865f908e35b9b1b4c = L.circleMarker(\\n\",\n       \"                [32.395, 111.0419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a241010f496d8a2e53f75df0528dbe4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8b047d7a7c2f3dc47e4349ad40594c2 = $(`&lt;div id=&quot;html_d8b047d7a7c2f3dc47e4349ad40594c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0419             latitude:32.395             PM2_5:29.91477273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a241010f496d8a2e53f75df0528dbe4.setContent(html_d8b047d7a7c2f3dc47e4349ad40594c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab4798f477f09b7865f908e35b9b1b4c.bindPopup(popup_3a241010f496d8a2e53f75df0528dbe4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_814d78e4da17870ec9932af27990d283 = L.circleMarker(\\n\",\n       \"                [31.5848, 120.354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_833512f1f4a58bde26c9eacf387cab52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a72f97511301573e1957af59b9f8a8ed = $(`&lt;div id=&quot;html_a72f97511301573e1957af59b9f8a8ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.354             latitude:31.5848             PM2_5:47.23011364             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_833512f1f4a58bde26c9eacf387cab52.setContent(html_a72f97511301573e1957af59b9f8a8ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_814d78e4da17870ec9932af27990d283.bindPopup(popup_833512f1f4a58bde26c9eacf387cab52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11c04187e026c2944be524ef670ff213 = L.circleMarker(\\n\",\n       \"                [26.6611, 119.5392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e78961c4a2ad6b7814e1a12cc0f4365 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7bc802848286d7a1608ecd925da4294b = $(`&lt;div id=&quot;html_7bc802848286d7a1608ecd925da4294b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5392             latitude:26.6611             PM2_5:26.51523546             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e78961c4a2ad6b7814e1a12cc0f4365.setContent(html_7bc802848286d7a1608ecd925da4294b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11c04187e026c2944be524ef670ff213.bindPopup(popup_2e78961c4a2ad6b7814e1a12cc0f4365)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a6be51db2558dad0e5904a3468488d1 = L.circleMarker(\\n\",\n       \"                [37.4294, 122.1206],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f48c327774b2710c6e65818ea8a0a1d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a22afef37a6f0aed549b2b8045da041a = $(`&lt;div id=&quot;html_a22afef37a6f0aed549b2b8045da041a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.1206             latitude:37.4294             PM2_5:27.61864407             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f48c327774b2710c6e65818ea8a0a1d4.setContent(html_a22afef37a6f0aed549b2b8045da041a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a6be51db2558dad0e5904a3468488d1.bindPopup(popup_f48c327774b2710c6e65818ea8a0a1d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b1c9254d4c9b386633d63a2c47a4f32 = L.circleMarker(\\n\",\n       \"                [41.7381, 125.9486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_007e64a169de32be35138f34a0d14862 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37acbd3be4c126cfde39709a78390ed5 = $(`&lt;div id=&quot;html_37acbd3be4c126cfde39709a78390ed5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.9486             latitude:41.7381             PM2_5:30.97625698             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_007e64a169de32be35138f34a0d14862.setContent(html_37acbd3be4c126cfde39709a78390ed5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b1c9254d4c9b386633d63a2c47a4f32.bindPopup(popup_007e64a169de32be35138f34a0d14862)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b68fc340ffb8a639eebaa40c8d97ef89 = L.circleMarker(\\n\",\n       \"                [35.5294, 106.7039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c882bcb796161b208d134a8cd86d365 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5aa1a65ca777d586cfe2b5e61ffef6a0 = $(`&lt;div id=&quot;html_5aa1a65ca777d586cfe2b5e61ffef6a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7039             latitude:35.5294             PM2_5:29.01532033             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c882bcb796161b208d134a8cd86d365.setContent(html_5aa1a65ca777d586cfe2b5e61ffef6a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b68fc340ffb8a639eebaa40c8d97ef89.bindPopup(popup_0c882bcb796161b208d134a8cd86d365)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b099ad4ff346feb15c3c95365841219 = L.circleMarker(\\n\",\n       \"                [27.8408, 102.2714],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_677c405acc319aa21964db3ac9eed290 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc322caf47f64f72723d40669fd6a765 = $(`&lt;div id=&quot;html_dc322caf47f64f72723d40669fd6a765&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2714             latitude:27.8408             PM2_5:20.54329609             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_677c405acc319aa21964db3ac9eed290.setContent(html_dc322caf47f64f72723d40669fd6a765);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b099ad4ff346feb15c3c95365841219.bindPopup(popup_677c405acc319aa21964db3ac9eed290)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12af77e1ef8eda829c090dc6381ccf2c = L.circleMarker(\\n\",\n       \"                [36.6867, 101.524],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8f2b8932c9490c07a5064a35dd6d802 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c58bdc05100fcf47c11aa70f25e8c01 = $(`&lt;div id=&quot;html_6c58bdc05100fcf47c11aa70f25e8c01&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.524             latitude:36.6867             PM2_5:52.19736842             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8f2b8932c9490c07a5064a35dd6d802.setContent(html_6c58bdc05100fcf47c11aa70f25e8c01);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12af77e1ef8eda829c090dc6381ccf2c.bindPopup(popup_c8f2b8932c9490c07a5064a35dd6d802)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_246bf6d841bf85e55f42f8671bea0457 = L.circleMarker(\\n\",\n       \"                [32.8985, 117.3065],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85136754d3dcbaed892793e623bd656a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19f19410d7f9c6acc602acbfea2e0844 = $(`&lt;div id=&quot;html_19f19410d7f9c6acc602acbfea2e0844&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3065             latitude:32.8985             PM2_5:46.36619718             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85136754d3dcbaed892793e623bd656a.setContent(html_19f19410d7f9c6acc602acbfea2e0844);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_246bf6d841bf85e55f42f8671bea0457.bindPopup(popup_85136754d3dcbaed892793e623bd656a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_558da7e8bcbd1a2eaad507f15e7e24c2 = L.circleMarker(\\n\",\n       \"                [31.3708, 120.641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47f037a4ad06806679943367e1c1778d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af267d37c9827a55941f3b2ce8700217 = $(`&lt;div id=&quot;html_af267d37c9827a55941f3b2ce8700217&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.641             latitude:31.3708             PM2_5:39.74515235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47f037a4ad06806679943367e1c1778d.setContent(html_af267d37c9827a55941f3b2ce8700217);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_558da7e8bcbd1a2eaad507f15e7e24c2.bindPopup(popup_47f037a4ad06806679943367e1c1778d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6edfcb32ca2491e6e6e65d3842c44fca = L.circleMarker(\\n\",\n       \"                [34.7187, 113.727],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bd70d3159b4740761f797e681c94e11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14e7766665107a312348c0eb38f751c1 = $(`&lt;div id=&quot;html_14e7766665107a312348c0eb38f751c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.727             latitude:34.7187             PM2_5:65.41432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bd70d3159b4740761f797e681c94e11.setContent(html_14e7766665107a312348c0eb38f751c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6edfcb32ca2491e6e6e65d3842c44fca.bindPopup(popup_0bd70d3159b4740761f797e681c94e11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf5c528667e0ac8ad97311327dcd6040 = L.circleMarker(\\n\",\n       \"                [32.0903, 112.2106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_892a0fafcfa15251c5ca6864e05b643b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7205d2ad5773a52a9cd48864d301cbd9 = $(`&lt;div id=&quot;html_7205d2ad5773a52a9cd48864d301cbd9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2106             latitude:32.0903             PM2_5:71.5252809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_892a0fafcfa15251c5ca6864e05b643b.setContent(html_7205d2ad5773a52a9cd48864d301cbd9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf5c528667e0ac8ad97311327dcd6040.bindPopup(popup_892a0fafcfa15251c5ca6864e05b643b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b592148ed1f602f96e7a964423ffa770 = L.circleMarker(\\n\",\n       \"                [34.7997, 111.1489],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f675d988f26ac80e2979c8819d729fd0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de4b6d18bce25f572ee82f30333c0cba = $(`&lt;div id=&quot;html_de4b6d18bce25f572ee82f30333c0cba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1489             latitude:34.7997             PM2_5:54.08100559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f675d988f26ac80e2979c8819d729fd0.setContent(html_de4b6d18bce25f572ee82f30333c0cba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b592148ed1f602f96e7a964423ffa770.bindPopup(popup_f675d988f26ac80e2979c8819d729fd0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_596499ccd837b289090656f7f2ace35a = L.circleMarker(\\n\",\n       \"                [33.6481, 116.9765],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cbe39f860398e4c6b9e94f44a7c1c8d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a60436b25a966d9dbff3f800486307b9 = $(`&lt;div id=&quot;html_a60436b25a966d9dbff3f800486307b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9765             latitude:33.6481             PM2_5:55.37114846             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cbe39f860398e4c6b9e94f44a7c1c8d9.setContent(html_a60436b25a966d9dbff3f800486307b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_596499ccd837b289090656f7f2ace35a.bindPopup(popup_cbe39f860398e4c6b9e94f44a7c1c8d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0aeca342031ac814036136dc2949b31 = L.circleMarker(\\n\",\n       \"                [27.2317, 111.4733],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02935f19f2189d68626d46c81c0d7eb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d72a01953ac80e7bd4381d517868fe66 = $(`&lt;div id=&quot;html_d72a01953ac80e7bd4381d517868fe66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4733             latitude:27.2317             PM2_5:51.66572238             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02935f19f2189d68626d46c81c0d7eb2.setContent(html_d72a01953ac80e7bd4381d517868fe66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0aeca342031ac814036136dc2949b31.bindPopup(popup_02935f19f2189d68626d46c81c0d7eb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d31f983c0f2e37f382d53bf4f024f19 = L.circleMarker(\\n\",\n       \"                [38.4519, 112.7383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11070a70034a6623ce18e90c225a7ad4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66fcb645166f4b04c3a38e6913702cbf = $(`&lt;div id=&quot;html_66fcb645166f4b04c3a38e6913702cbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7383             latitude:38.4519             PM2_5:53.09014085             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11070a70034a6623ce18e90c225a7ad4.setContent(html_66fcb645166f4b04c3a38e6913702cbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d31f983c0f2e37f382d53bf4f024f19.bindPopup(popup_11070a70034a6623ce18e90c225a7ad4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8211a38575c042c40f731de5b0e78d66 = L.circleMarker(\\n\",\n       \"                [39.5989, 109.8119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67c84e89b1f097f5b5ecd3b86f4cc695 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec51d8e7514dd551ce6d8a5a9e238347 = $(`&lt;div id=&quot;html_ec51d8e7514dd551ce6d8a5a9e238347&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8119             latitude:39.5989             PM2_5:28.25633803             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67c84e89b1f097f5b5ecd3b86f4cc695.setContent(html_ec51d8e7514dd551ce6d8a5a9e238347);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8211a38575c042c40f731de5b0e78d66.bindPopup(popup_67c84e89b1f097f5b5ecd3b86f4cc695)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62791c8e790c6db54338fc2b86472e08 = L.circleMarker(\\n\",\n       \"                [31.6219, 120.275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82af2849ab02bd6bf3037183f2562982 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb73d484d340ae2a4efe5066c4d4dd99 = $(`&lt;div id=&quot;html_bb73d484d340ae2a4efe5066c4d4dd99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.275             latitude:31.6219             PM2_5:42.90625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82af2849ab02bd6bf3037183f2562982.setContent(html_bb73d484d340ae2a4efe5066c4d4dd99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62791c8e790c6db54338fc2b86472e08.bindPopup(popup_82af2849ab02bd6bf3037183f2562982)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75a9d9357712dc8ecd04da293db268a0 = L.circleMarker(\\n\",\n       \"                [26.2625, 117.6211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46ff8275ac136ddc170a2e18feea0a51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c859a50d80cb7af675f6de91a2cac401 = $(`&lt;div id=&quot;html_c859a50d80cb7af675f6de91a2cac401&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6211             latitude:26.2625             PM2_5:27.27222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46ff8275ac136ddc170a2e18feea0a51.setContent(html_c859a50d80cb7af675f6de91a2cac401);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75a9d9357712dc8ecd04da293db268a0.bindPopup(popup_46ff8275ac136ddc170a2e18feea0a51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_934813aec99e61995f49ccfb4cd0445a = L.circleMarker(\\n\",\n       \"                [42.3022, 123.8139],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb0a7e95064e1ee76b3a277696c99ebd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43e1bf18aaf382875f05766237507ab0 = $(`&lt;div id=&quot;html_43e1bf18aaf382875f05766237507ab0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8139             latitude:42.3022             PM2_5:27.88053097             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb0a7e95064e1ee76b3a277696c99ebd.setContent(html_43e1bf18aaf382875f05766237507ab0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_934813aec99e61995f49ccfb4cd0445a.bindPopup(popup_bb0a7e95064e1ee76b3a277696c99ebd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a1363d701a0bf117c82eb7d7fc39f0c = L.circleMarker(\\n\",\n       \"                [32.9683, 112.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a6a54f01d260dc7c86fa4eda03ddb92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3678d88d84b4157fb35f49ef32c98eb = $(`&lt;div id=&quot;html_a3678d88d84b4157fb35f49ef32c98eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.55             latitude:32.9683             PM2_5:55.1075419             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a6a54f01d260dc7c86fa4eda03ddb92.setContent(html_a3678d88d84b4157fb35f49ef32c98eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a1363d701a0bf117c82eb7d7fc39f0c.bindPopup(popup_5a6a54f01d260dc7c86fa4eda03ddb92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d6324a238ab40a639ac48224147d3eb7 = L.circleMarker(\\n\",\n       \"                [41.5672, 120.4486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59440487d311d0122f4200129065588c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05d9343bb933e89620dacaeba96a054e = $(`&lt;div id=&quot;html_05d9343bb933e89620dacaeba96a054e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4486             latitude:41.5672             PM2_5:25.5915493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59440487d311d0122f4200129065588c.setContent(html_05d9343bb933e89620dacaeba96a054e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d6324a238ab40a639ac48224147d3eb7.bindPopup(popup_59440487d311d0122f4200129065588c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_317823314f0813db59ecf76a8fa5d252 = L.circleMarker(\\n\",\n       \"                [31.2261, 121.425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57e40564280d3e7852ad977c6ee10119 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52e0d29b2e1729688c6c66ac77a64791 = $(`&lt;div id=&quot;html_52e0d29b2e1729688c6c66ac77a64791&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.425             latitude:31.2261             PM2_5:41.84261838             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57e40564280d3e7852ad977c6ee10119.setContent(html_52e0d29b2e1729688c6c66ac77a64791);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_317823314f0813db59ecf76a8fa5d252.bindPopup(popup_57e40564280d3e7852ad977c6ee10119)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad01f3a57996faa9549aaf9ac6be5d3f = L.circleMarker(\\n\",\n       \"                [27.5578, 109.9972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_827915b60f3fb8406e5d44463bc12edb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7eaf8b6c6ef29aa7cb43680fbbdcb0d = $(`&lt;div id=&quot;html_a7eaf8b6c6ef29aa7cb43680fbbdcb0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9972             latitude:27.5578             PM2_5:42.84463277             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_827915b60f3fb8406e5d44463bc12edb.setContent(html_a7eaf8b6c6ef29aa7cb43680fbbdcb0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad01f3a57996faa9549aaf9ac6be5d3f.bindPopup(popup_827915b60f3fb8406e5d44463bc12edb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7fe71efaeaba6a75fbce3258fbfd1ebb = L.circleMarker(\\n\",\n       \"                [37.0172, 105.18],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86019e7c26847845273041a93ac8701b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00836444f9c5200ea0c41ee50505e137 = $(`&lt;div id=&quot;html_00836444f9c5200ea0c41ee50505e137&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.18             latitude:37.0172             PM2_5:35.66201117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86019e7c26847845273041a93ac8701b.setContent(html_00836444f9c5200ea0c41ee50505e137);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7fe71efaeaba6a75fbce3258fbfd1ebb.bindPopup(popup_86019e7c26847845273041a93ac8701b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26dd80053829a305f1f820a316211368 = L.circleMarker(\\n\",\n       \"                [36.497, 117.8477],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c0f44fe47a5e051675bc2c24127ab4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f30d6f452d34254622f23e0c616345cb = $(`&lt;div id=&quot;html_f30d6f452d34254622f23e0c616345cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8477             latitude:36.497             PM2_5:53.86827195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c0f44fe47a5e051675bc2c24127ab4f.setContent(html_f30d6f452d34254622f23e0c616345cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26dd80053829a305f1f820a316211368.bindPopup(popup_1c0f44fe47a5e051675bc2c24127ab4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be0ead7b31291a30bd67a0d2f3a30e59 = L.circleMarker(\\n\",\n       \"                [29.334, 120.04],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c8c5fec6ac883fed62b681a5b9a131f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c37c88ff1af34ffa8b0e2acab6cab787 = $(`&lt;div id=&quot;html_c37c88ff1af34ffa8b0e2acab6cab787&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.04             latitude:29.334             PM2_5:33.41340782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c8c5fec6ac883fed62b681a5b9a131f.setContent(html_c37c88ff1af34ffa8b0e2acab6cab787);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be0ead7b31291a30bd67a0d2f3a30e59.bindPopup(popup_9c8c5fec6ac883fed62b681a5b9a131f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ebe50672038be39ba4be92cbfddea46 = L.circleMarker(\\n\",\n       \"                [32.6939, 109.0281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2821eaa3dbaee042bb15fa07049d734f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_041b1187e2955b89279b923de73726d6 = $(`&lt;div id=&quot;html_041b1187e2955b89279b923de73726d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0281             latitude:32.6939             PM2_5:42.38169014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2821eaa3dbaee042bb15fa07049d734f.setContent(html_041b1187e2955b89279b923de73726d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ebe50672038be39ba4be92cbfddea46.bindPopup(popup_2821eaa3dbaee042bb15fa07049d734f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67ad7e3350382491b307edbfdf8255ab = L.circleMarker(\\n\",\n       \"                [36.5481, 104.1731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a993455198ff7ba72277cd6e3afca6f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6aae4c7a8681244bbf46de852701edc = $(`&lt;div id=&quot;html_f6aae4c7a8681244bbf46de852701edc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1731             latitude:36.5481             PM2_5:30.22922636             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a993455198ff7ba72277cd6e3afca6f4.setContent(html_f6aae4c7a8681244bbf46de852701edc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67ad7e3350382491b307edbfdf8255ab.bindPopup(popup_a993455198ff7ba72277cd6e3afca6f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78f7a0455302e6de5983c27f3c821d15 = L.circleMarker(\\n\",\n       \"                [31.671, 120.721],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65759986e7ab735407009913c99b80f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_524cecd71ce9fc3b83fd976e945dffbf = $(`&lt;div id=&quot;html_524cecd71ce9fc3b83fd976e945dffbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.721             latitude:31.671             PM2_5:43.43968254             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65759986e7ab735407009913c99b80f2.setContent(html_524cecd71ce9fc3b83fd976e945dffbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78f7a0455302e6de5983c27f3c821d15.bindPopup(popup_65759986e7ab735407009913c99b80f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_caff0bbb88e940fdb7357bcff5f1fa71 = L.circleMarker(\\n\",\n       \"                [26.5506, 104.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55b5f0b12d2a94c48471333ef03c34b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6fbf29731ba925a38bc962b3db36dca = $(`&lt;div id=&quot;html_f6fbf29731ba925a38bc962b3db36dca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9544             latitude:26.5506             PM2_5:39.40833333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55b5f0b12d2a94c48471333ef03c34b3.setContent(html_f6fbf29731ba925a38bc962b3db36dca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_caff0bbb88e940fdb7357bcff5f1fa71.bindPopup(popup_55b5f0b12d2a94c48471333ef03c34b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cd91098ea4bedb507209d61f694e57e = L.circleMarker(\\n\",\n       \"                [40.8033, 111.658],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46a6280e8b0bb3aa8858baf58af1cb8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f96d5fa4e6909007f94eea64115910e3 = $(`&lt;div id=&quot;html_f96d5fa4e6909007f94eea64115910e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.658             latitude:40.8033             PM2_5:36.70612813             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46a6280e8b0bb3aa8858baf58af1cb8f.setContent(html_f96d5fa4e6909007f94eea64115910e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cd91098ea4bedb507209d61f694e57e.bindPopup(popup_46a6280e8b0bb3aa8858baf58af1cb8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0825860d248c90fb2aa26e9e29b37423 = L.circleMarker(\\n\",\n       \"                [46.619, 131.1651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a16e8f0d1203b2876bef6d38e1bff1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e76f42a7854f8734e7567fff99aa684f = $(`&lt;div id=&quot;html_e76f42a7854f8734e7567fff99aa684f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1651             latitude:46.619             PM2_5:26.38235294             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a16e8f0d1203b2876bef6d38e1bff1f.setContent(html_e76f42a7854f8734e7567fff99aa684f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0825860d248c90fb2aa26e9e29b37423.bindPopup(popup_7a16e8f0d1203b2876bef6d38e1bff1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48f276e2e92453716e11d82cee024206 = L.circleMarker(\\n\",\n       \"                [27.8136, 99.7064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f08efd257105981381e11b17e9f882d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_206fb2b3d7cd09c738cd2a2fadf44f26 = $(`&lt;div id=&quot;html_206fb2b3d7cd09c738cd2a2fadf44f26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.7064             latitude:27.8136             PM2_5:12.44481605             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f08efd257105981381e11b17e9f882d1.setContent(html_206fb2b3d7cd09c738cd2a2fadf44f26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48f276e2e92453716e11d82cee024206.bindPopup(popup_f08efd257105981381e11b17e9f882d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5732d07b4ba2d7b565f1baa788b20016 = L.circleMarker(\\n\",\n       \"                [28.2325, 113.0833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1b4f33a0b7ccf2a5e363a482a43b737 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e3d2700980a3f18f156b439772aaabc = $(`&lt;div id=&quot;html_2e3d2700980a3f18f156b439772aaabc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0833             latitude:28.2325             PM2_5:45.18472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1b4f33a0b7ccf2a5e363a482a43b737.setContent(html_2e3d2700980a3f18f156b439772aaabc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5732d07b4ba2d7b565f1baa788b20016.bindPopup(popup_d1b4f33a0b7ccf2a5e363a482a43b737)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc5eeacd2790e8f29695113e59da683d = L.circleMarker(\\n\",\n       \"                [39.8745, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f38d74df79c325ba682ccbb0dfef8ed7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b7374241bc9f2f14f67bf5344216ce7 = $(`&lt;div id=&quot;html_2b7374241bc9f2f14f67bf5344216ce7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.8745             PM2_5:52.26638177             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f38d74df79c325ba682ccbb0dfef8ed7.setContent(html_2b7374241bc9f2f14f67bf5344216ce7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc5eeacd2790e8f29695113e59da683d.bindPopup(popup_f38d74df79c325ba682ccbb0dfef8ed7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fc902985fa0de989bcd4a127b27495d = L.circleMarker(\\n\",\n       \"                [27.2582, 111.4908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_946c680379500a64c78fbe849680eb7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2417200b67c180bf83b4e9ecb022104 = $(`&lt;div id=&quot;html_a2417200b67c180bf83b4e9ecb022104&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4908             latitude:27.2582             PM2_5:49.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_946c680379500a64c78fbe849680eb7e.setContent(html_a2417200b67c180bf83b4e9ecb022104);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fc902985fa0de989bcd4a127b27495d.bindPopup(popup_946c680379500a64c78fbe849680eb7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab23a84d11254a47ebcbe9969d7f6fc0 = L.circleMarker(\\n\",\n       \"                [35.6039, 103.2139],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6acb76f8e1c3a20a947ad11a3bebbcd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_157de86039b8483930d2b3dd569f64c8 = $(`&lt;div id=&quot;html_157de86039b8483930d2b3dd569f64c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.2139             latitude:35.6039             PM2_5:35.40756303             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6acb76f8e1c3a20a947ad11a3bebbcd.setContent(html_157de86039b8483930d2b3dd569f64c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab23a84d11254a47ebcbe9969d7f6fc0.bindPopup(popup_e6acb76f8e1c3a20a947ad11a3bebbcd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_696bc1bfb27120418856d1bae98b2b17 = L.circleMarker(\\n\",\n       \"                [33.1138, 107.0089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ca5580291069fe0c8766976145af776 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83f9d18d4318e18da0ea09b3aa063afe = $(`&lt;div id=&quot;html_83f9d18d4318e18da0ea09b3aa063afe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0089             latitude:33.1138             PM2_5:45.40730337             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ca5580291069fe0c8766976145af776.setContent(html_83f9d18d4318e18da0ea09b3aa063afe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_696bc1bfb27120418856d1bae98b2b17.bindPopup(popup_9ca5580291069fe0c8766976145af776)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2606d2ad5d1731f736c522ecc75235a7 = L.circleMarker(\\n\",\n       \"                [31.8711, 106.7389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08571b06ebf64deb07a26eab116d17a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85da12d47ad580e3a1bb30d2b2b59992 = $(`&lt;div id=&quot;html_85da12d47ad580e3a1bb30d2b2b59992&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7389             latitude:31.8711             PM2_5:32.18662953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08571b06ebf64deb07a26eab116d17a2.setContent(html_85da12d47ad580e3a1bb30d2b2b59992);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2606d2ad5d1731f736c522ecc75235a7.bindPopup(popup_08571b06ebf64deb07a26eab116d17a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28c0ec0a0df171e3a6dfc7f355f4cfe7 = L.circleMarker(\\n\",\n       \"                [43.8875, 126.555],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b316fab128da9158cd6397b85564dde2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4df498708beb1e075f1b679b8f40674 = $(`&lt;div id=&quot;html_e4df498708beb1e075f1b679b8f40674&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.555             latitude:43.8875             PM2_5:31.1800554             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b316fab128da9158cd6397b85564dde2.setContent(html_e4df498708beb1e075f1b679b8f40674);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28c0ec0a0df171e3a6dfc7f355f4cfe7.bindPopup(popup_b316fab128da9158cd6397b85564dde2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40774ecc71f4bf2e370c09f201cb4ecd = L.circleMarker(\\n\",\n       \"                [23.02777778, 113.7461111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3150f2620b4f5dacd15eb69e1be18f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4f218665f746d65f26087afae3eae58 = $(`&lt;div id=&quot;html_f4f218665f746d65f26087afae3eae58&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7461111             latitude:23.02777778             PM2_5:36.35734463             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3150f2620b4f5dacd15eb69e1be18f5.setContent(html_f4f218665f746d65f26087afae3eae58);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40774ecc71f4bf2e370c09f201cb4ecd.bindPopup(popup_a3150f2620b4f5dacd15eb69e1be18f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d00d001cbab77c3bb94638717c4acd12 = L.circleMarker(\\n\",\n       \"                [35.5997, 103.2064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb3ef4bad85fc5887acfd6760a8f6cf8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2e953f6f69496eb37c086bf7adf4135 = $(`&lt;div id=&quot;html_e2e953f6f69496eb37c086bf7adf4135&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.2064             latitude:35.5997             PM2_5:30.64345404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb3ef4bad85fc5887acfd6760a8f6cf8.setContent(html_e2e953f6f69496eb37c086bf7adf4135);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d00d001cbab77c3bb94638717c4acd12.bindPopup(popup_fb3ef4bad85fc5887acfd6760a8f6cf8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a26beca19f90865f2da65bc48376265f = L.circleMarker(\\n\",\n       \"                [28.8194, 104.5969],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7aedcf1ac54e3329a738a10365fc3c45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ccf66f0068443a632d8c040e1fb1badf = $(`&lt;div id=&quot;html_ccf66f0068443a632d8c040e1fb1badf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.5969             latitude:28.8194             PM2_5:49.5720339             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7aedcf1ac54e3329a738a10365fc3c45.setContent(html_ccf66f0068443a632d8c040e1fb1badf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a26beca19f90865f2da65bc48376265f.bindPopup(popup_7aedcf1ac54e3329a738a10365fc3c45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82acf0e653e607c8d7a1d55a0a0c3435 = L.circleMarker(\\n\",\n       \"                [32.939, 117.3961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a4fc274be70ad77692c82d28e85744f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68b6ef303b9865c0bdfc40860fb09667 = $(`&lt;div id=&quot;html_68b6ef303b9865c0bdfc40860fb09667&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3961             latitude:32.939             PM2_5:64.66016713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a4fc274be70ad77692c82d28e85744f.setContent(html_68b6ef303b9865c0bdfc40860fb09667);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82acf0e653e607c8d7a1d55a0a0c3435.bindPopup(popup_4a4fc274be70ad77692c82d28e85744f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f665787ff204375fc3e6d86c19dc8ab = L.circleMarker(\\n\",\n       \"                [34.2761, 117.167],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca25581fa24ffb69cb079ac2a09153a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afc9707d2931d6a3601e709a33e68990 = $(`&lt;div id=&quot;html_afc9707d2931d6a3601e709a33e68990&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.167             latitude:34.2761             PM2_5:66.15223464             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca25581fa24ffb69cb079ac2a09153a9.setContent(html_afc9707d2931d6a3601e709a33e68990);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f665787ff204375fc3e6d86c19dc8ab.bindPopup(popup_ca25581fa24ffb69cb079ac2a09153a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c60fca0ca72b91bd42362bce0bba8f3c = L.circleMarker(\\n\",\n       \"                [36.6428, 101.748],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82473997c29789c7e9fc353c8e3b77b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39abd0f4df1cfd9050f89970b6ba2f19 = $(`&lt;div id=&quot;html_39abd0f4df1cfd9050f89970b6ba2f19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.748             latitude:36.6428             PM2_5:57.3005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82473997c29789c7e9fc353c8e3b77b6.setContent(html_39abd0f4df1cfd9050f89970b6ba2f19);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c60fca0ca72b91bd42362bce0bba8f3c.bindPopup(popup_82473997c29789c7e9fc353c8e3b77b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b6ff9e47e835f12f5bbf0450e35c174 = L.circleMarker(\\n\",\n       \"                [27.8159, 112.9227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d8be997cd20a5a279c72e1425548642 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4fb8b481037e297130a77552d6a2cbde = $(`&lt;div id=&quot;html_4fb8b481037e297130a77552d6a2cbde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9227             latitude:27.8159             PM2_5:45.07222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d8be997cd20a5a279c72e1425548642.setContent(html_4fb8b481037e297130a77552d6a2cbde);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b6ff9e47e835f12f5bbf0450e35c174.bindPopup(popup_0d8be997cd20a5a279c72e1425548642)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e85f886b250d61e936dbb5e5fb1bc736 = L.circleMarker(\\n\",\n       \"                [30.3119, 120.12],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91092e1bff8a87c687d8f3a539adc888 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b1678d430edb7366d1e76c7cbbaac97 = $(`&lt;div id=&quot;html_6b1678d430edb7366d1e76c7cbbaac97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.12             latitude:30.3119             PM2_5:42.92936288             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91092e1bff8a87c687d8f3a539adc888.setContent(html_6b1678d430edb7366d1e76c7cbbaac97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e85f886b250d61e936dbb5e5fb1bc736.bindPopup(popup_91092e1bff8a87c687d8f3a539adc888)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d24e8ac19b9adcec7a4aad24babf04e = L.circleMarker(\\n\",\n       \"                [29.7736, 121.633],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a64a3963dc6d53b3cbafb2a2c3ab5dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_287c7891a874f3af7320ee54f65e0b84 = $(`&lt;div id=&quot;html_287c7891a874f3af7320ee54f65e0b84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.633             latitude:29.7736             PM2_5:33.41340782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a64a3963dc6d53b3cbafb2a2c3ab5dd.setContent(html_287c7891a874f3af7320ee54f65e0b84);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d24e8ac19b9adcec7a4aad24babf04e.bindPopup(popup_7a64a3963dc6d53b3cbafb2a2c3ab5dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4089a835f09cfed56f5e05bd4d826bd5 = L.circleMarker(\\n\",\n       \"                [34.5911, 119.1478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4dae63d0dcf0ed2c18fd5925f0b7aa7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fdeea67cc2e73191ab1c19a55be182be = $(`&lt;div id=&quot;html_fdeea67cc2e73191ab1c19a55be182be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1478             latitude:34.5911             PM2_5:43.48860399             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4dae63d0dcf0ed2c18fd5925f0b7aa7e.setContent(html_fdeea67cc2e73191ab1c19a55be182be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4089a835f09cfed56f5e05bd4d826bd5.bindPopup(popup_4dae63d0dcf0ed2c18fd5925f0b7aa7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5fc75ae49209c08ee3bdf4ebf553b3b = L.circleMarker(\\n\",\n       \"                [31.155, 120.636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c43fa0859b6aeb155441ed0290eded5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_078a02e553be4364e8b47f985dc0a0d2 = $(`&lt;div id=&quot;html_078a02e553be4364e8b47f985dc0a0d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.636             latitude:31.155             PM2_5:39.32271468             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c43fa0859b6aeb155441ed0290eded5.setContent(html_078a02e553be4364e8b47f985dc0a0d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5fc75ae49209c08ee3bdf4ebf553b3b.bindPopup(popup_9c43fa0859b6aeb155441ed0290eded5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c804a93402fe52993edf0b0b83cd6a3 = L.circleMarker(\\n\",\n       \"                [35.2375, 115.474722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_120f9212b002cf35195418172d2c27c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2cc85cbf22fdd576888959201273a963 = $(`&lt;div id=&quot;html_2cc85cbf22fdd576888959201273a963&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.474722             latitude:35.2375             PM2_5:57.86516854             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_120f9212b002cf35195418172d2c27c8.setContent(html_2cc85cbf22fdd576888959201273a963);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c804a93402fe52993edf0b0b83cd6a3.bindPopup(popup_120f9212b002cf35195418172d2c27c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3c0066462d6cfc98247ce7451f7f02a = L.circleMarker(\\n\",\n       \"                [30.518, 106.631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bba041abec4ece22b8ab5b8562bc4895 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9fba3abab6ec2df21200a0b9fb249679 = $(`&lt;div id=&quot;html_9fba3abab6ec2df21200a0b9fb249679&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.631             latitude:30.518             PM2_5:32.56446991             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bba041abec4ece22b8ab5b8562bc4895.setContent(html_9fba3abab6ec2df21200a0b9fb249679);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3c0066462d6cfc98247ce7451f7f02a.bindPopup(popup_bba041abec4ece22b8ab5b8562bc4895)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_faa7a8edde698738135a5f463bc95543 = L.circleMarker(\\n\",\n       \"                [31.1333, 104.3883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2c6917286de16feb222dd5f6407e656 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e6fc8c6854234b066049f9d24909586 = $(`&lt;div id=&quot;html_0e6fc8c6854234b066049f9d24909586&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.3883             latitude:31.1333             PM2_5:44.57222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2c6917286de16feb222dd5f6407e656.setContent(html_0e6fc8c6854234b066049f9d24909586);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_faa7a8edde698738135a5f463bc95543.bindPopup(popup_a2c6917286de16feb222dd5f6407e656)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_247c1bb2d1d274054dd038b30aab9d73 = L.circleMarker(\\n\",\n       \"                [32.0417, 120.81],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2920adc3b7d45df5028b505b282eb72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1bcdbf53f7a0c775b019997c7f81e5a = $(`&lt;div id=&quot;html_a1bcdbf53f7a0c775b019997c7f81e5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.81             latitude:32.0417             PM2_5:36.4957265             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2920adc3b7d45df5028b505b282eb72.setContent(html_a1bcdbf53f7a0c775b019997c7f81e5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_247c1bb2d1d274054dd038b30aab9d73.bindPopup(popup_c2920adc3b7d45df5028b505b282eb72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_225643ea7a05f6836ef6efdd595e01a3 = L.circleMarker(\\n\",\n       \"                [36.5776, 114.5035],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b370460f5dc9b12f0512c75e27cb9df0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72d19c6eb427b3e1acc029a319842993 = $(`&lt;div id=&quot;html_72d19c6eb427b3e1acc029a319842993&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5035             latitude:36.5776             PM2_5:73.41736695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b370460f5dc9b12f0512c75e27cb9df0.setContent(html_72d19c6eb427b3e1acc029a319842993);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_225643ea7a05f6836ef6efdd595e01a3.bindPopup(popup_b370460f5dc9b12f0512c75e27cb9df0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_686da533f99cc4179e32a407d23c6939 = L.circleMarker(\\n\",\n       \"                [45.7677, 131.0032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98bdd45327730f1c7e396af283ffd9ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cddf65a510d91a99cef1c354eff1fab3 = $(`&lt;div id=&quot;html_cddf65a510d91a99cef1c354eff1fab3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.0032             latitude:45.7677             PM2_5:36.55084746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98bdd45327730f1c7e396af283ffd9ac.setContent(html_cddf65a510d91a99cef1c354eff1fab3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_686da533f99cc4179e32a407d23c6939.bindPopup(popup_98bdd45327730f1c7e396af283ffd9ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c332665cd4d081496dea132b91729c9 = L.circleMarker(\\n\",\n       \"                [30.2692, 120.19],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a429d9be0be8bef460c8ba7f1d72e040 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62f534a22e813b61b1436a0b174fd4cc = $(`&lt;div id=&quot;html_62f534a22e813b61b1436a0b174fd4cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.19             latitude:30.2692             PM2_5:42.02361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a429d9be0be8bef460c8ba7f1d72e040.setContent(html_62f534a22e813b61b1436a0b174fd4cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c332665cd4d081496dea132b91729c9.bindPopup(popup_a429d9be0be8bef460c8ba7f1d72e040)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e93b144fc07d1ab4b387e8c0fd035c9b = L.circleMarker(\\n\",\n       \"                [37.8692, 112.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b32caae28469f3c4399c3d902c30c911 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78f4197253d24e68938050609618a102 = $(`&lt;div id=&quot;html_78f4197253d24e68938050609618a102&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5369             latitude:37.8692             PM2_5:65.43201133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b32caae28469f3c4399c3d902c30c911.setContent(html_78f4197253d24e68938050609618a102);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e93b144fc07d1ab4b387e8c0fd035c9b.bindPopup(popup_b32caae28469f3c4399c3d902c30c911)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_092e4586e86e2ae20458d82802ee4a39 = L.circleMarker(\\n\",\n       \"                [31.4189, 118.37],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d64749f8d839ff238dfa00ebc5c43a7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0536c2324a81fb42e701b90784d91d01 = $(`&lt;div id=&quot;html_0536c2324a81fb42e701b90784d91d01&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.37             latitude:31.4189             PM2_5:49.21848739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d64749f8d839ff238dfa00ebc5c43a7e.setContent(html_0536c2324a81fb42e701b90784d91d01);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_092e4586e86e2ae20458d82802ee4a39.bindPopup(popup_d64749f8d839ff238dfa00ebc5c43a7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4c236a46afa2165e08bdb035db397e1 = L.circleMarker(\\n\",\n       \"                [31.7797, 116.5068],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2df94bc9ff9825d0f5aa04b67315c3ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de603903a339130e4bbaf359c5540727 = $(`&lt;div id=&quot;html_de603903a339130e4bbaf359c5540727&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5068             latitude:31.7797             PM2_5:41.27668539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2df94bc9ff9825d0f5aa04b67315c3ab.setContent(html_de603903a339130e4bbaf359c5540727);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4c236a46afa2165e08bdb035db397e1.bindPopup(popup_2df94bc9ff9825d0f5aa04b67315c3ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51ffafbbb7beaeda454cfdd335a1e3fa = L.circleMarker(\\n\",\n       \"                [23.0944, 109.6014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c40d875e92d229566a75c86c4d0ec3e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_63035eb172254cb092a2a26c1f194f1c = $(`&lt;div id=&quot;html_63035eb172254cb092a2a26c1f194f1c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6014             latitude:23.0944             PM2_5:37.92877095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c40d875e92d229566a75c86c4d0ec3e1.setContent(html_63035eb172254cb092a2a26c1f194f1c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51ffafbbb7beaeda454cfdd335a1e3fa.bindPopup(popup_c40d875e92d229566a75c86c4d0ec3e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b8cda7c09919df064a50095a3a90543e = L.circleMarker(\\n\",\n       \"                [47.3382, 130.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f41eefff8b4f09bbfbaf97c5deb7d0a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a2cd01c6886a8b515d636e00f0472e8 = $(`&lt;div id=&quot;html_1a2cd01c6886a8b515d636e00f0472e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.1097             latitude:47.3382             PM2_5:17.86571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f41eefff8b4f09bbfbaf97c5deb7d0a3.setContent(html_1a2cd01c6886a8b515d636e00f0472e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b8cda7c09919df064a50095a3a90543e.bindPopup(popup_f41eefff8b4f09bbfbaf97c5deb7d0a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c40fd182f6421521e09ad1293737b5e8 = L.circleMarker(\\n\",\n       \"                [32.4285, 105.8624],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3b3bbe08149cfc4ce6a217676823541 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_339fcfe4df65ba354fc4d7ca97d07064 = $(`&lt;div id=&quot;html_339fcfe4df65ba354fc4d7ca97d07064&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8624             latitude:32.4285             PM2_5:25.26044568             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3b3bbe08149cfc4ce6a217676823541.setContent(html_339fcfe4df65ba354fc4d7ca97d07064);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c40fd182f6421521e09ad1293737b5e8.bindPopup(popup_a3b3bbe08149cfc4ce6a217676823541)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0982e66cf590217cf3839772f93ad1d7 = L.circleMarker(\\n\",\n       \"                [31.9025, 102.2218],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e60b80c14bff523c0b4bc01dad62381 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36c26f4e8755c7df92c1d2f346099668 = $(`&lt;div id=&quot;html_36c26f4e8755c7df92c1d2f346099668&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2218             latitude:31.9025             PM2_5:10.50840336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e60b80c14bff523c0b4bc01dad62381.setContent(html_36c26f4e8755c7df92c1d2f346099668);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0982e66cf590217cf3839772f93ad1d7.bindPopup(popup_4e60b80c14bff523c0b4bc01dad62381)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a8dd32fc2c5c4bd9fd306052cf4e67b = L.circleMarker(\\n\",\n       \"                [27.7019, 106.9242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf4676d11975be9710406ea35d5ae11d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4cc8019ea10d6757e3d34eb967fa12b = $(`&lt;div id=&quot;html_f4cc8019ea10d6757e3d34eb967fa12b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9242             latitude:27.7019             PM2_5:27.95238095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf4676d11975be9710406ea35d5ae11d.setContent(html_f4cc8019ea10d6757e3d34eb967fa12b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a8dd32fc2c5c4bd9fd306052cf4e67b.bindPopup(popup_bf4676d11975be9710406ea35d5ae11d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d34f440ffe725dc47cf3b11dce84f838 = L.circleMarker(\\n\",\n       \"                [22.7422, 114.5317],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf434d16224adb2780f9d1fcf34ea669 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59f22e7f812ef9b5423705328c2e1706 = $(`&lt;div id=&quot;html_59f22e7f812ef9b5423705328c2e1706&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5317             latitude:22.7422             PM2_5:29.73285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf434d16224adb2780f9d1fcf34ea669.setContent(html_59f22e7f812ef9b5423705328c2e1706);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d34f440ffe725dc47cf3b11dce84f838.bindPopup(popup_bf434d16224adb2780f9d1fcf34ea669)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0bee419b16ec7b00a93d8f21be534efb = L.circleMarker(\\n\",\n       \"                [29.5467, 103.7705],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0acac97ad0d0bab03b4eccfa26ecb74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecbebe99e4a206d467ad0f0b7a1aebc6 = $(`&lt;div id=&quot;html_ecbebe99e4a206d467ad0f0b7a1aebc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7705             latitude:29.5467             PM2_5:48.10252809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0acac97ad0d0bab03b4eccfa26ecb74.setContent(html_ecbebe99e4a206d467ad0f0b7a1aebc6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0bee419b16ec7b00a93d8f21be534efb.bindPopup(popup_f0acac97ad0d0bab03b4eccfa26ecb74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64bc66e452941f48466be4891c19f669 = L.circleMarker(\\n\",\n       \"                [23.0672, 109.6042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97f5cc037745ac0ca9ada9f289331c8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7ee27fd9adc4cccaafde4116ee6da46 = $(`&lt;div id=&quot;html_a7ee27fd9adc4cccaafde4116ee6da46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6042             latitude:23.0672             PM2_5:37.3603352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97f5cc037745ac0ca9ada9f289331c8e.setContent(html_a7ee27fd9adc4cccaafde4116ee6da46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64bc66e452941f48466be4891c19f669.bindPopup(popup_97f5cc037745ac0ca9ada9f289331c8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e49d08538dc76ce11e3082ab646d2abf = L.circleMarker(\\n\",\n       \"                [33.6347, 114.6758],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_334f796302ea694e3a054c9a329fcd01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a202160e14dc78109d1986d8ffa1b2b3 = $(`&lt;div id=&quot;html_a202160e14dc78109d1986d8ffa1b2b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6758             latitude:33.6347             PM2_5:49.04929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_334f796302ea694e3a054c9a329fcd01.setContent(html_a202160e14dc78109d1986d8ffa1b2b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e49d08538dc76ce11e3082ab646d2abf.bindPopup(popup_334f796302ea694e3a054c9a329fcd01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00b64276cc2d4b5cfd5929209968f777 = L.circleMarker(\\n\",\n       \"                [41.0831, 123.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac1cfc5f1e5722a500578072ac4fad11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_857e0ae61fb97e217932a70f93401db5 = $(`&lt;div id=&quot;html_857e0ae61fb97e217932a70f93401db5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0156             latitude:41.0831             PM2_5:32.32402235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac1cfc5f1e5722a500578072ac4fad11.setContent(html_857e0ae61fb97e217932a70f93401db5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00b64276cc2d4b5cfd5929209968f777.bindPopup(popup_ac1cfc5f1e5722a500578072ac4fad11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66726f41f40f5994f3d75f01c41f4720 = L.circleMarker(\\n\",\n       \"                [42.2217, 123.7153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2cace1fd59e1d557be729d73dd58afa9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff4ab53a3249ed3ca4a3f4c838651c04 = $(`&lt;div id=&quot;html_ff4ab53a3249ed3ca4a3f4c838651c04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7153             latitude:42.2217             PM2_5:31.41666667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2cace1fd59e1d557be729d73dd58afa9.setContent(html_ff4ab53a3249ed3ca4a3f4c838651c04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66726f41f40f5994f3d75f01c41f4720.bindPopup(popup_2cace1fd59e1d557be729d73dd58afa9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b7fcac7a14aff7a953702d02ca61fa3 = L.circleMarker(\\n\",\n       \"                [29.6632, 94.3616],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28cb19817290827e1b752c3114a61c97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8258ccfd4d4de67ae2c6bbe421154ef8 = $(`&lt;div id=&quot;html_8258ccfd4d4de67ae2c6bbe421154ef8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:94.3616             latitude:29.6632             PM2_5:7.451977401             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28cb19817290827e1b752c3114a61c97.setContent(html_8258ccfd4d4de67ae2c6bbe421154ef8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b7fcac7a14aff7a953702d02ca61fa3.bindPopup(popup_28cb19817290827e1b752c3114a61c97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0303dc937009684d42029543feb37750 = L.circleMarker(\\n\",\n       \"                [30.9414, 117.7806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67d8aff43fcd268e2cf44184b5dfe2ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_472275c79dd032506468582c3dcf393e = $(`&lt;div id=&quot;html_472275c79dd032506468582c3dcf393e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7806             latitude:30.9414             PM2_5:50.90972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67d8aff43fcd268e2cf44184b5dfe2ca.setContent(html_472275c79dd032506468582c3dcf393e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0303dc937009684d42029543feb37750.bindPopup(popup_67d8aff43fcd268e2cf44184b5dfe2ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b54912b54b4da44e62aaf341bbee5e2 = L.circleMarker(\\n\",\n       \"                [28.2169, 116.9983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c9bc61d55ab7852418acc32fcece1e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df494e58af32582c824906a7cd7bf7d1 = $(`&lt;div id=&quot;html_df494e58af32582c824906a7cd7bf7d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9983             latitude:28.2169             PM2_5:34.9039548             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c9bc61d55ab7852418acc32fcece1e1.setContent(html_df494e58af32582c824906a7cd7bf7d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b54912b54b4da44e62aaf341bbee5e2.bindPopup(popup_0c9bc61d55ab7852418acc32fcece1e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f12dca3802094c192da1ad946a2736fd = L.circleMarker(\\n\",\n       \"                [33.9592, 118.2442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4228d730611b201999e883afa0369439 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3df096c27d3810906f5305723fb9d96e = $(`&lt;div id=&quot;html_3df096c27d3810906f5305723fb9d96e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2442             latitude:33.9592             PM2_5:56.46619217             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4228d730611b201999e883afa0369439.setContent(html_3df096c27d3810906f5305723fb9d96e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f12dca3802094c192da1ad946a2736fd.bindPopup(popup_4228d730611b201999e883afa0369439)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7cf81db63f26b7ca1c363bc6edbd15a0 = L.circleMarker(\\n\",\n       \"                [24.5058, 118.0936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7cf91729dbcd14ec943be9d4124d7a89 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0742b2e34057f6a67b63ca1cdb94d8f0 = $(`&lt;div id=&quot;html_0742b2e34057f6a67b63ca1cdb94d8f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0936             latitude:24.5058             PM2_5:25.02367688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7cf91729dbcd14ec943be9d4124d7a89.setContent(html_0742b2e34057f6a67b63ca1cdb94d8f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7cf81db63f26b7ca1c363bc6edbd15a0.bindPopup(popup_7cf91729dbcd14ec943be9d4124d7a89)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a00dcca9b97c9c8bdeb4df5ac36c7100 = L.circleMarker(\\n\",\n       \"                [32.215, 119.491],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3698aca7a5ac6ca98bef20b337351fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de276efa4dc860fead740833175ec6a9 = $(`&lt;div id=&quot;html_de276efa4dc860fead740833175ec6a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.491             latitude:32.215             PM2_5:46.08888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3698aca7a5ac6ca98bef20b337351fb.setContent(html_de276efa4dc860fead740833175ec6a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a00dcca9b97c9c8bdeb4df5ac36c7100.bindPopup(popup_c3698aca7a5ac6ca98bef20b337351fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16741d5781741ab89c82042c27a9432e = L.circleMarker(\\n\",\n       \"                [45.0878, 124.8292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a969d1d3bf2e13daced481ef642a0f6d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_188dac91066969db16f0391e8254d9fb = $(`&lt;div id=&quot;html_188dac91066969db16f0391e8254d9fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8292             latitude:45.0878             PM2_5:27.28830084             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a969d1d3bf2e13daced481ef642a0f6d.setContent(html_188dac91066969db16f0391e8254d9fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16741d5781741ab89c82042c27a9432e.bindPopup(popup_a969d1d3bf2e13daced481ef642a0f6d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a1b043cc653697219c4c457f559903b = L.circleMarker(\\n\",\n       \"                [23.7586, 114.6944],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9d3c5ec1b24597af64a09346bd851d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7aacb8557d1d1ac99660ddd219690d0f = $(`&lt;div id=&quot;html_7aacb8557d1d1ac99660ddd219690d0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6944             latitude:23.7586             PM2_5:29.19382022             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9d3c5ec1b24597af64a09346bd851d0.setContent(html_7aacb8557d1d1ac99660ddd219690d0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a1b043cc653697219c4c457f559903b.bindPopup(popup_c9d3c5ec1b24597af64a09346bd851d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca4c145ccdd340ce8fb3a802ac19e81e = L.circleMarker(\\n\",\n       \"                [27.9958, 113.1817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78600a1e4ed37c18d80f2a2fe083c4dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6cb4db307b59e284c9ae3b0b7a4314ed = $(`&lt;div id=&quot;html_6cb4db307b59e284c9ae3b0b7a4314ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1817             latitude:27.9958             PM2_5:39.6686747             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78600a1e4ed37c18d80f2a2fe083c4dd.setContent(html_6cb4db307b59e284c9ae3b0b7a4314ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca4c145ccdd340ce8fb3a802ac19e81e.bindPopup(popup_78600a1e4ed37c18d80f2a2fe083c4dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cefdf64517e26330e5084e864cd4d7a = L.circleMarker(\\n\",\n       \"                [42.2864, 123.8489],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27f4cb62bf88dbbff48f43a7662ae8de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95d750a8a28eb58855e3b683a51347f2 = $(`&lt;div id=&quot;html_95d750a8a28eb58855e3b683a51347f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8489             latitude:42.2864             PM2_5:32.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27f4cb62bf88dbbff48f43a7662ae8de.setContent(html_95d750a8a28eb58855e3b683a51347f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cefdf64517e26330e5084e864cd4d7a.bindPopup(popup_27f4cb62bf88dbbff48f43a7662ae8de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23eaaa1a5f7fe9d4d8f7f9461762ce08 = L.circleMarker(\\n\",\n       \"                [36.1031, 103.631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9dc50bfb19ce400ef3ff434faff4627a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d16cf3374a4c3358929587a6a7abcb3 = $(`&lt;div id=&quot;html_8d16cf3374a4c3358929587a6a7abcb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.631             latitude:36.1031             PM2_5:61.04073034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9dc50bfb19ce400ef3ff434faff4627a.setContent(html_8d16cf3374a4c3358929587a6a7abcb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23eaaa1a5f7fe9d4d8f7f9461762ce08.bindPopup(popup_9dc50bfb19ce400ef3ff434faff4627a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b51af7cf985dfe2e3af35c4042b9b72 = L.circleMarker(\\n\",\n       \"                [30.9414, 117.8178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57d0d49531253ce1019952a3bb998c85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fef7824c24d393b099469c3c35b71bf1 = $(`&lt;div id=&quot;html_fef7824c24d393b099469c3c35b71bf1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8178             latitude:30.9414             PM2_5:52.25837989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57d0d49531253ce1019952a3bb998c85.setContent(html_fef7824c24d393b099469c3c35b71bf1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b51af7cf985dfe2e3af35c4042b9b72.bindPopup(popup_57d0d49531253ce1019952a3bb998c85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c64a2d0dc9caad5460480222a680e76d = L.circleMarker(\\n\",\n       \"                [43.8303, 87.5801],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff05b0f178e32f7ff5462a2c9f2908d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_531de4a0d8ae5ef790d6fbb5dcd66abc = $(`&lt;div id=&quot;html_531de4a0d8ae5ef790d6fbb5dcd66abc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5801             latitude:43.8303             PM2_5:54.90373563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff05b0f178e32f7ff5462a2c9f2908d5.setContent(html_531de4a0d8ae5ef790d6fbb5dcd66abc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c64a2d0dc9caad5460480222a680e76d.bindPopup(popup_ff05b0f178e32f7ff5462a2c9f2908d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77f46274f8b0c30546e835f2fc750d91 = L.circleMarker(\\n\",\n       \"                [30.0033, 120.7789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_503c5f56adfe83e4e9704aea42f3555c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_606da5d847956625bf015d61ff851c0b = $(`&lt;div id=&quot;html_606da5d847956625bf015d61ff851c0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.7789             latitude:30.0033             PM2_5:43.33379888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_503c5f56adfe83e4e9704aea42f3555c.setContent(html_606da5d847956625bf015d61ff851c0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77f46274f8b0c30546e835f2fc750d91.bindPopup(popup_503c5f56adfe83e4e9704aea42f3555c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41f5becd6fb9b2f5e9108fcaf60da78d = L.circleMarker(\\n\",\n       \"                [37.0964, 114.5331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_020eae38eee876e99c49c033779d5ef4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ea7fdad9c17f637047d6685325add40 = $(`&lt;div id=&quot;html_0ea7fdad9c17f637047d6685325add40&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5331             latitude:37.0964             PM2_5:77.58595989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_020eae38eee876e99c49c033779d5ef4.setContent(html_0ea7fdad9c17f637047d6685325add40);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41f5becd6fb9b2f5e9108fcaf60da78d.bindPopup(popup_020eae38eee876e99c49c033779d5ef4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f42caf8d0e16424539d7c048051fb17b = L.circleMarker(\\n\",\n       \"                [40.8144, 111.608],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9f8b50ff4d6d9c22d04bab2c6b57d5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11c68a5c7fb10373573f9bf3d4d1b255 = $(`&lt;div id=&quot;html_11c68a5c7fb10373573f9bf3d4d1b255&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.608             latitude:40.8144             PM2_5:45.11331445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9f8b50ff4d6d9c22d04bab2c6b57d5c.setContent(html_11c68a5c7fb10373573f9bf3d4d1b255);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f42caf8d0e16424539d7c048051fb17b.bindPopup(popup_f9f8b50ff4d6d9c22d04bab2c6b57d5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c542aa95c6e7cce5de61d2ce884a2872 = L.circleMarker(\\n\",\n       \"                [38.885, 121.5638889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a92977fbb8b52cca18c87b1db6cc1c6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9cfa846fdd83758dcec4d9024a4f740f = $(`&lt;div id=&quot;html_9cfa846fdd83758dcec4d9024a4f740f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5638889             latitude:38.885             PM2_5:28.35180055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a92977fbb8b52cca18c87b1db6cc1c6c.setContent(html_9cfa846fdd83758dcec4d9024a4f740f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c542aa95c6e7cce5de61d2ce884a2872.bindPopup(popup_a92977fbb8b52cca18c87b1db6cc1c6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffb70ed32970b40b665b251efc5c6cf9 = L.circleMarker(\\n\",\n       \"                [29.3547, 110.5594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c6781570034cd22fe3a8812829017b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51c26e8fe896110192b68378affe6949 = $(`&lt;div id=&quot;html_51c26e8fe896110192b68378affe6949&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.5594             latitude:29.3547             PM2_5:28.22005571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c6781570034cd22fe3a8812829017b9.setContent(html_51c26e8fe896110192b68378affe6949);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffb70ed32970b40b665b251efc5c6cf9.bindPopup(popup_2c6781570034cd22fe3a8812829017b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05847a759848662bed980e319a0290d9 = L.circleMarker(\\n\",\n       \"                [41.2864, 123.7669],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c40f2a008c5155d4ac3e930d6049d11e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5480fc62588d98bf9f4761daf6964832 = $(`&lt;div id=&quot;html_5480fc62588d98bf9f4761daf6964832&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7669             latitude:41.2864             PM2_5:26.47777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c40f2a008c5155d4ac3e930d6049d11e.setContent(html_5480fc62588d98bf9f4761daf6964832);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05847a759848662bed980e319a0290d9.bindPopup(popup_c40f2a008c5155d4ac3e930d6049d11e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97b868e6e2156b1234e4d0cc8509a28a = L.circleMarker(\\n\",\n       \"                [26.5894, 104.8475],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ec5741dfb4bf0501edf129eea812bfb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21f139694272be1510c0dbcf4359b306 = $(`&lt;div id=&quot;html_21f139694272be1510c0dbcf4359b306&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8475             latitude:26.5894             PM2_5:30.62569832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ec5741dfb4bf0501edf129eea812bfb.setContent(html_21f139694272be1510c0dbcf4359b306);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97b868e6e2156b1234e4d0cc8509a28a.bindPopup(popup_1ec5741dfb4bf0501edf129eea812bfb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3b8e49c06afb70b8ffe559869405518 = L.circleMarker(\\n\",\n       \"                [34.402, 115.6578],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a961d5f59bde87a837889cdf64939761 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7caf655e4f272549a10c452d9d45d4cf = $(`&lt;div id=&quot;html_7caf655e4f272549a10c452d9d45d4cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6578             latitude:34.402             PM2_5:56.04761905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a961d5f59bde87a837889cdf64939761.setContent(html_7caf655e4f272549a10c452d9d45d4cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3b8e49c06afb70b8ffe559869405518.bindPopup(popup_a961d5f59bde87a837889cdf64939761)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d657a00adadab522c19e5a2e277bcf3b = L.circleMarker(\\n\",\n       \"                [31.3097, 120.669],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46e202aa9954fac913125726a9514073 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b48a45e93e686dcc64cc0e788a6d0830 = $(`&lt;div id=&quot;html_b48a45e93e686dcc64cc0e788a6d0830&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.669             latitude:31.3097             PM2_5:39.40363128             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46e202aa9954fac913125726a9514073.setContent(html_b48a45e93e686dcc64cc0e788a6d0830);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d657a00adadab522c19e5a2e277bcf3b.bindPopup(popup_46e202aa9954fac913125726a9514073)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee7b914c4f329081091dba2d459eff75 = L.circleMarker(\\n\",\n       \"                [31.7506, 118.5106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b72a244102365f68f226a3cb79f8be81 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f7b7bcc316b92d98071ed48045e61c4 = $(`&lt;div id=&quot;html_2f7b7bcc316b92d98071ed48045e61c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5106             latitude:31.7506             PM2_5:49.01256983             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b72a244102365f68f226a3cb79f8be81.setContent(html_2f7b7bcc316b92d98071ed48045e61c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee7b914c4f329081091dba2d459eff75.bindPopup(popup_b72a244102365f68f226a3cb79f8be81)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b6aab2525dc1dbd95625a0a2f311c8b = L.circleMarker(\\n\",\n       \"                [26.1092, 119.299],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_866239b24c8d6d47dd6551a7b637982a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_938e381b90f662306b3a6015e44eb839 = $(`&lt;div id=&quot;html_938e381b90f662306b3a6015e44eb839&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.299             latitude:26.1092             PM2_5:26.66615854             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_866239b24c8d6d47dd6551a7b637982a.setContent(html_938e381b90f662306b3a6015e44eb839);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b6aab2525dc1dbd95625a0a2f311c8b.bindPopup(popup_866239b24c8d6d47dd6551a7b637982a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60e15448ef95b270ed30968407f611f5 = L.circleMarker(\\n\",\n       \"                [34.2749, 108.882],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4444e244ae5216b935616f7cd048d819 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a707e1b56c8b559f8acbe9598a50f3ec = $(`&lt;div id=&quot;html_a707e1b56c8b559f8acbe9598a50f3ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.882             latitude:34.2749             PM2_5:66.98873239             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4444e244ae5216b935616f7cd048d819.setContent(html_a707e1b56c8b559f8acbe9598a50f3ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60e15448ef95b270ed30968407f611f5.bindPopup(popup_4444e244ae5216b935616f7cd048d819)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47a029daab87de0cac7f7158bf9f3dc3 = L.circleMarker(\\n\",\n       \"                [41.9339, 123.6836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2db678dd2e0591310bbd239e2ef3dbec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df5a87b60d40da77e3afdd8aaca59dd3 = $(`&lt;div id=&quot;html_df5a87b60d40da77e3afdd8aaca59dd3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.6836             latitude:41.9339             PM2_5:26.52638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2db678dd2e0591310bbd239e2ef3dbec.setContent(html_df5a87b60d40da77e3afdd8aaca59dd3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47a029daab87de0cac7f7158bf9f3dc3.bindPopup(popup_2db678dd2e0591310bbd239e2ef3dbec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afef8f2a0e18a427d2bd8feffeabbec6 = L.circleMarker(\\n\",\n       \"                [30.3515, 112.2068],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e1dea55bc8307acf878a9b22d694088 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de043781e9cbfb79f3e2309d4bcfbb2f = $(`&lt;div id=&quot;html_de043781e9cbfb79f3e2309d4bcfbb2f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2068             latitude:30.3515             PM2_5:51.6056338             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e1dea55bc8307acf878a9b22d694088.setContent(html_de043781e9cbfb79f3e2309d4bcfbb2f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afef8f2a0e18a427d2bd8feffeabbec6.bindPopup(popup_1e1dea55bc8307acf878a9b22d694088)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f8538895c7e8bcc4db32d4917972acb = L.circleMarker(\\n\",\n       \"                [42.0503, 121.6972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d234476fd09b8cf406a10c852f4be5c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5148a3501a9727be8f7a9df72a83988 = $(`&lt;div id=&quot;html_b5148a3501a9727be8f7a9df72a83988&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6972             latitude:42.0503             PM2_5:24.87606838             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d234476fd09b8cf406a10c852f4be5c9.setContent(html_b5148a3501a9727be8f7a9df72a83988);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f8538895c7e8bcc4db32d4917972acb.bindPopup(popup_d234476fd09b8cf406a10c852f4be5c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a6c5570579d80337ab9fbbc93fa249b = L.circleMarker(\\n\",\n       \"                [34.2153, 117.256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34ec06a12cf804d1414d97978db7962e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_599825fbed7dc4eb3ec5bd7db0593cb2 = $(`&lt;div id=&quot;html_599825fbed7dc4eb3ec5bd7db0593cb2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.256             latitude:34.2153             PM2_5:58.55555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34ec06a12cf804d1414d97978db7962e.setContent(html_599825fbed7dc4eb3ec5bd7db0593cb2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a6c5570579d80337ab9fbbc93fa249b.bindPopup(popup_34ec06a12cf804d1414d97978db7962e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46b60e05f60e5adfab3ce0c60a1c9388 = L.circleMarker(\\n\",\n       \"                [43.8947, 126.5786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4d105b7afa454d27312246825811905 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad5da05213b0dc93db61e8e86a73c70f = $(`&lt;div id=&quot;html_ad5da05213b0dc93db61e8e86a73c70f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5786             latitude:43.8947             PM2_5:28.36768802             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4d105b7afa454d27312246825811905.setContent(html_ad5da05213b0dc93db61e8e86a73c70f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46b60e05f60e5adfab3ce0c60a1c9388.bindPopup(popup_e4d105b7afa454d27312246825811905)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45d87af9b3b11917b7662337d4694ca1 = L.circleMarker(\\n\",\n       \"                [31.9051, 117.16],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_496a8ec9adc22675fd815f4d5cbb1733 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bcb6b60f962636ecaba2ca74d3237922 = $(`&lt;div id=&quot;html_bcb6b60f962636ecaba2ca74d3237922&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.16             latitude:31.9051             PM2_5:47.26264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_496a8ec9adc22675fd815f4d5cbb1733.setContent(html_bcb6b60f962636ecaba2ca74d3237922);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45d87af9b3b11917b7662337d4694ca1.bindPopup(popup_496a8ec9adc22675fd815f4d5cbb1733)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09af6c5694b6087c56dde8b43a065f65 = L.circleMarker(\\n\",\n       \"                [38.0513, 114.4548],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20607d0320cfe4980956f6268b53b1a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9516f71e01d0f43f99bd94e3fee57198 = $(`&lt;div id=&quot;html_9516f71e01d0f43f99bd94e3fee57198&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4548             latitude:38.0513             PM2_5:68.18472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20607d0320cfe4980956f6268b53b1a7.setContent(html_9516f71e01d0f43f99bd94e3fee57198);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09af6c5694b6087c56dde8b43a065f65.bindPopup(popup_20607d0320cfe4980956f6268b53b1a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e0b64ef717ed6157ca82b90039fd23e = L.circleMarker(\\n\",\n       \"                [37.9648, 106.1532],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a43de2559b6e22c112bb13bc976ed75 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e119eb1b969a5d0b5c97dec1e2b33eb = $(`&lt;div id=&quot;html_6e119eb1b969a5d0b5c97dec1e2b33eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1532             latitude:37.9648             PM2_5:36.54507042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a43de2559b6e22c112bb13bc976ed75.setContent(html_6e119eb1b969a5d0b5c97dec1e2b33eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e0b64ef717ed6157ca82b90039fd23e.bindPopup(popup_4a43de2559b6e22c112bb13bc976ed75)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_731e76b24b1c916bf78b2cbc98a1944d = L.circleMarker(\\n\",\n       \"                [45.2978, 130.9298],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37f1fe87436088b4bdbeaff7d557eec7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f543d5d792ecf1b78445d146a0d0ec7 = $(`&lt;div id=&quot;html_4f543d5d792ecf1b78445d146a0d0ec7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9298             latitude:45.2978             PM2_5:22.03703704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37f1fe87436088b4bdbeaff7d557eec7.setContent(html_4f543d5d792ecf1b78445d146a0d0ec7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_731e76b24b1c916bf78b2cbc98a1944d.bindPopup(popup_37f1fe87436088b4bdbeaff7d557eec7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41a9d6d8436356dba709cd88cf9eb040 = L.circleMarker(\\n\",\n       \"                [31.2284, 121.533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8d3cbe66ddd93712424f404e8dfc88d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a58e2cf47d309c022221308adee44e1 = $(`&lt;div id=&quot;html_8a58e2cf47d309c022221308adee44e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.533             latitude:31.2284             PM2_5:39.66384181             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8d3cbe66ddd93712424f404e8dfc88d.setContent(html_8a58e2cf47d309c022221308adee44e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41a9d6d8436356dba709cd88cf9eb040.bindPopup(popup_c8d3cbe66ddd93712424f404e8dfc88d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_766f92226abe6da8e86f36f2e0e442d4 = L.circleMarker(\\n\",\n       \"                [39.6407, 118.1853],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7011c55f61c25dcb3d3a60aee4169126 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31ca96c2247571a1b8d2924f516a9856 = $(`&lt;div id=&quot;html_31ca96c2247571a1b8d2924f516a9856&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1853             latitude:39.6407             PM2_5:50.95949721             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7011c55f61c25dcb3d3a60aee4169126.setContent(html_31ca96c2247571a1b8d2924f516a9856);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_766f92226abe6da8e86f36f2e0e442d4.bindPopup(popup_7011c55f61c25dcb3d3a60aee4169126)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82b4c60d183a4b540cb1562baa60f8fe = L.circleMarker(\\n\",\n       \"                [30.3055, 112.2887],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31b3c16af7dbb397f92154be589acea1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_488758d7956e22ed9361d0c16302cb0e = $(`&lt;div id=&quot;html_488758d7956e22ed9361d0c16302cb0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2887             latitude:30.3055             PM2_5:55.24782609             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31b3c16af7dbb397f92154be589acea1.setContent(html_488758d7956e22ed9361d0c16302cb0e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82b4c60d183a4b540cb1562baa60f8fe.bindPopup(popup_31b3c16af7dbb397f92154be589acea1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69438cda84997ca2b9a65198c50767fa = L.circleMarker(\\n\",\n       \"                [35.7672, 115.0628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94790861e4c075a1734376cbc23ae4b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d714c5897e2dfb5a505a2145f49836c3 = $(`&lt;div id=&quot;html_d714c5897e2dfb5a505a2145f49836c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0628             latitude:35.7672             PM2_5:57.94301994             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94790861e4c075a1734376cbc23ae4b4.setContent(html_d714c5897e2dfb5a505a2145f49836c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69438cda84997ca2b9a65198c50767fa.bindPopup(popup_94790861e4c075a1734376cbc23ae4b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7efff7c40ed2460703fc420df597fd6 = L.circleMarker(\\n\",\n       \"                [30.9222, 117.8078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5056af0427fed80be0b5749b112c44c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7cc5ed33947fab6324801aa8c6558bc9 = $(`&lt;div id=&quot;html_7cc5ed33947fab6324801aa8c6558bc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8078             latitude:30.9222             PM2_5:57.00139276             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5056af0427fed80be0b5749b112c44c9.setContent(html_7cc5ed33947fab6324801aa8c6558bc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7efff7c40ed2460703fc420df597fd6.bindPopup(popup_5056af0427fed80be0b5749b112c44c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d669342870935cadd6279104fb85fd2 = L.circleMarker(\\n\",\n       \"                [31.4656, 104.6717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b605ab221131256f821d077978f6210a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ceffe41f7242755c2cf6d9654b5f452c = $(`&lt;div id=&quot;html_ceffe41f7242755c2cf6d9654b5f452c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6717             latitude:31.4656             PM2_5:48.23743017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b605ab221131256f821d077978f6210a.setContent(html_ceffe41f7242755c2cf6d9654b5f452c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d669342870935cadd6279104fb85fd2.bindPopup(popup_b605ab221131256f821d077978f6210a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_404a1defc001a03a3a709e01c54fc043 = L.circleMarker(\\n\",\n       \"                [47.3489, 130.3172],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22e5f983372c1268550bbeaa9439b0b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d038522b269928772a4fbb13056d79d0 = $(`&lt;div id=&quot;html_d038522b269928772a4fbb13056d79d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3172             latitude:47.3489             PM2_5:18.87857143             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22e5f983372c1268550bbeaa9439b0b0.setContent(html_d038522b269928772a4fbb13056d79d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_404a1defc001a03a3a709e01c54fc043.bindPopup(popup_22e5f983372c1268550bbeaa9439b0b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1a38042f7d612c34ad507a74856c5e6 = L.circleMarker(\\n\",\n       \"                [32.3153, 118.3094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7f7abd63c00523811ca74955048d454 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93d7a3b0fb5e2fbf50aff4947ff5cc93 = $(`&lt;div id=&quot;html_93d7a3b0fb5e2fbf50aff4947ff5cc93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3094             latitude:32.3153             PM2_5:50.79166667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7f7abd63c00523811ca74955048d454.setContent(html_93d7a3b0fb5e2fbf50aff4947ff5cc93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1a38042f7d612c34ad507a74856c5e6.bindPopup(popup_c7f7abd63c00523811ca74955048d454)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15cf1b205d003f602a2fcf33db524b0d = L.circleMarker(\\n\",\n       \"                [29.7534, 116.0726],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d122b07e204436568557e597706eb1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d710b3a6ac88b767dbad397ee721cefb = $(`&lt;div id=&quot;html_d710b3a6ac88b767dbad397ee721cefb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0726             latitude:29.7534             PM2_5:44.47493036             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d122b07e204436568557e597706eb1d.setContent(html_d710b3a6ac88b767dbad397ee721cefb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15cf1b205d003f602a2fcf33db524b0d.bindPopup(popup_1d122b07e204436568557e597706eb1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50447ec5e40710e59d0f41ca2ad25989 = L.circleMarker(\\n\",\n       \"                [35.0611, 111.0233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bdb561bd5bb168da0ef61c7d1f9fceac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19bc7f0f3b30175e4c01bdccdcc83203 = $(`&lt;div id=&quot;html_19bc7f0f3b30175e4c01bdccdcc83203&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0233             latitude:35.0611             PM2_5:63.99438202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bdb561bd5bb168da0ef61c7d1f9fceac.setContent(html_19bc7f0f3b30175e4c01bdccdcc83203);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50447ec5e40710e59d0f41ca2ad25989.bindPopup(popup_bdb561bd5bb168da0ef61c7d1f9fceac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d6394b3f1ff8daaf0e24f7472916cbaf = L.circleMarker(\\n\",\n       \"                [30.4753, 114.1525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_851c37b76be7cfb336fcd961f3300234 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_151b4ba5fa8b1890d3fea4c7abcd31a5 = $(`&lt;div id=&quot;html_151b4ba5fa8b1890d3fea4c7abcd31a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1525             latitude:30.4753             PM2_5:47.02089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_851c37b76be7cfb336fcd961f3300234.setContent(html_151b4ba5fa8b1890d3fea4c7abcd31a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d6394b3f1ff8daaf0e24f7472916cbaf.bindPopup(popup_851c37b76be7cfb336fcd961f3300234)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00244e624b172d8e3da43e1c441cf15c = L.circleMarker(\\n\",\n       \"                [29.305, 120.091],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6bdc05d3fd09a303210b3a9146d56d1e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0515fd5fc1482926fbb172cb1ea03783 = $(`&lt;div id=&quot;html_0515fd5fc1482926fbb172cb1ea03783&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.091             latitude:29.305             PM2_5:32.27683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6bdc05d3fd09a303210b3a9146d56d1e.setContent(html_0515fd5fc1482926fbb172cb1ea03783);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00244e624b172d8e3da43e1c441cf15c.bindPopup(popup_6bdc05d3fd09a303210b3a9146d56d1e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9ce950ce8e17b9a7e3a4527fb2ec036 = L.circleMarker(\\n\",\n       \"                [29.5844, 103.7627],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f302d4c2ebecce98d2e60bdce8c8920c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26d1f1c1cb3c1cf618f801dd967e1e12 = $(`&lt;div id=&quot;html_26d1f1c1cb3c1cf618f801dd967e1e12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7627             latitude:29.5844             PM2_5:48.26880223             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f302d4c2ebecce98d2e60bdce8c8920c.setContent(html_26d1f1c1cb3c1cf618f801dd967e1e12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9ce950ce8e17b9a7e3a4527fb2ec036.bindPopup(popup_f302d4c2ebecce98d2e60bdce8c8920c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8765605fbacdf959809271055c3a0fe1 = L.circleMarker(\\n\",\n       \"                [40.9733, 117.8184],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2690bd3161580f7a7eca43a60d35a554 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0df7510a8042f3fd047cdc58ae42cd78 = $(`&lt;div id=&quot;html_0df7510a8042f3fd047cdc58ae42cd78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8184             latitude:40.9733             PM2_5:26.00983146             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2690bd3161580f7a7eca43a60d35a554.setContent(html_0df7510a8042f3fd047cdc58ae42cd78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8765605fbacdf959809271055c3a0fe1.bindPopup(popup_2690bd3161580f7a7eca43a60d35a554)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3052446c8b667d162710f61116c38c6a = L.circleMarker(\\n\",\n       \"                [31.3508, 118.3528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dea54663b202c12ae69d6389e63d5e63 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f7673c6e384465af946b6ae84a8d4ae = $(`&lt;div id=&quot;html_1f7673c6e384465af946b6ae84a8d4ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3528             latitude:31.3508             PM2_5:46.87988827             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dea54663b202c12ae69d6389e63d5e63.setContent(html_1f7673c6e384465af946b6ae84a8d4ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3052446c8b667d162710f61116c38c6a.bindPopup(popup_dea54663b202c12ae69d6389e63d5e63)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c8edef9e7e48d63b97e202fecf7d91b = L.circleMarker(\\n\",\n       \"                [30.6617, 117.4697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8250ab99f80ddce410e87e978231b841 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b38245dafc773ab55960d252d48b74c = $(`&lt;div id=&quot;html_5b38245dafc773ab55960d252d48b74c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4697             latitude:30.6617             PM2_5:48.46561605             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8250ab99f80ddce410e87e978231b841.setContent(html_5b38245dafc773ab55960d252d48b74c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c8edef9e7e48d63b97e202fecf7d91b.bindPopup(popup_8250ab99f80ddce410e87e978231b841)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c43d3fda511a797c3a0cb335b5e77edc = L.circleMarker(\\n\",\n       \"                [35.5461, 106.6692],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c804bdac498d861cd53ab54a7b2e890b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f4c513792a10e509825e4f03fb494dd = $(`&lt;div id=&quot;html_5f4c513792a10e509825e4f03fb494dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6692             latitude:35.5461             PM2_5:25.28169014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c804bdac498d861cd53ab54a7b2e890b.setContent(html_5f4c513792a10e509825e4f03fb494dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c43d3fda511a797c3a0cb335b5e77edc.bindPopup(popup_c804bdac498d861cd53ab54a7b2e890b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b792aa9dc14cd8b848f2f2f8dcb8cd68 = L.circleMarker(\\n\",\n       \"                [27.1311, 114.99],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_104e7110678b27868cf13edcc38feaab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_014a96d23ba5e4ee67fe0ecd4c4f0cbc = $(`&lt;div id=&quot;html_014a96d23ba5e4ee67fe0ecd4c4f0cbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.99             latitude:27.1311             PM2_5:51.25626741             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_104e7110678b27868cf13edcc38feaab.setContent(html_014a96d23ba5e4ee67fe0ecd4c4f0cbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b792aa9dc14cd8b848f2f2f8dcb8cd68.bindPopup(popup_104e7110678b27868cf13edcc38feaab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ded9b1b489b7bfedb6af19bbba0c9f4 = L.circleMarker(\\n\",\n       \"                [33.5979, 114.6546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47d3504c0d50f359ba3ff4543ec24ae3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0799fda643b2c3c3ce37c4ab64d2c25 = $(`&lt;div id=&quot;html_f0799fda643b2c3c3ce37c4ab64d2c25&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6546             latitude:33.5979             PM2_5:50.46760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47d3504c0d50f359ba3ff4543ec24ae3.setContent(html_f0799fda643b2c3c3ce37c4ab64d2c25);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ded9b1b489b7bfedb6af19bbba0c9f4.bindPopup(popup_47d3504c0d50f359ba3ff4543ec24ae3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42c92df51b534aa4fa81dc389495d9f5 = L.circleMarker(\\n\",\n       \"                [27.725, 111.9975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74371a057a51dc504ef275f02c397f00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69e711e62bab32ff433acbe55721c0ff = $(`&lt;div id=&quot;html_69e711e62bab32ff433acbe55721c0ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9975             latitude:27.725             PM2_5:26.00668896             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74371a057a51dc504ef275f02c397f00.setContent(html_69e711e62bab32ff433acbe55721c0ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42c92df51b534aa4fa81dc389495d9f5.bindPopup(popup_74371a057a51dc504ef275f02c397f00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d88eadb6a7a4d502195fccabe7ba0e6d = L.circleMarker(\\n\",\n       \"                [27.8728, 112.8937],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9053bed5b6293bb6071ea3c88980d489 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a93baa3fae0e2037298f182be37e5aa1 = $(`&lt;div id=&quot;html_a93baa3fae0e2037298f182be37e5aa1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8937             latitude:27.8728             PM2_5:45.97638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9053bed5b6293bb6071ea3c88980d489.setContent(html_a93baa3fae0e2037298f182be37e5aa1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d88eadb6a7a4d502195fccabe7ba0e6d.bindPopup(popup_9053bed5b6293bb6071ea3c88980d489)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81e0fb590bba0353af6ec45417469071 = L.circleMarker(\\n\",\n       \"                [30.0125, 103.009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c514c3401c60f79557a54fd9ac9fb892 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a54850a314af62e1ee4a3f5f3a4d1506 = $(`&lt;div id=&quot;html_a54850a314af62e1ee4a3f5f3a4d1506&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.009             latitude:30.0125             PM2_5:50.64428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c514c3401c60f79557a54fd9ac9fb892.setContent(html_a54850a314af62e1ee4a3f5f3a4d1506);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81e0fb590bba0353af6ec45417469071.bindPopup(popup_c514c3401c60f79557a54fd9ac9fb892)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c52515a8aacf5f16c85ae19106bc3289 = L.circleMarker(\\n\",\n       \"                [27.8042, 114.9119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_929ba7aba2a01b7f2540b4e7cb61eda5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e43dc531d89bfc9d3985fdf15827a01f = $(`&lt;div id=&quot;html_e43dc531d89bfc9d3985fdf15827a01f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9119             latitude:27.8042             PM2_5:46.45056497             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_929ba7aba2a01b7f2540b4e7cb61eda5.setContent(html_e43dc531d89bfc9d3985fdf15827a01f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c52515a8aacf5f16c85ae19106bc3289.bindPopup(popup_929ba7aba2a01b7f2540b4e7cb61eda5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3904d7a38fae03865035bc6e82dba4db = L.circleMarker(\\n\",\n       \"                [40.1503, 124.4256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b7480b80304391f78ea0e6b760903ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76365c573e4f8ef61f0400a4e3049b88 = $(`&lt;div id=&quot;html_76365c573e4f8ef61f0400a4e3049b88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.4256             latitude:40.1503             PM2_5:21.48735955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b7480b80304391f78ea0e6b760903ed.setContent(html_76365c573e4f8ef61f0400a4e3049b88);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3904d7a38fae03865035bc6e82dba4db.bindPopup(popup_9b7480b80304391f78ea0e6b760903ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ee7d33deb2d3274a361e40e2f9d1098 = L.circleMarker(\\n\",\n       \"                [30.4865, 106.6351],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96a4183e05fb9b02d61d0120df7bdabb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39434927fde3a20438a5a0bd47a60415 = $(`&lt;div id=&quot;html_39434927fde3a20438a5a0bd47a60415&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6351             latitude:30.4865             PM2_5:37.19359331             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96a4183e05fb9b02d61d0120df7bdabb.setContent(html_39434927fde3a20438a5a0bd47a60415);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ee7d33deb2d3274a361e40e2f9d1098.bindPopup(popup_96a4183e05fb9b02d61d0120df7bdabb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5c39953dadc78591176757af046c132 = L.circleMarker(\\n\",\n       \"                [30.698, 111.2992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9f393a7801adfe7c9f8c5077cbff193 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6fe914f843171b3e281e57d8faf109a = $(`&lt;div id=&quot;html_f6fe914f843171b3e281e57d8faf109a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2992             latitude:30.698             PM2_5:59.28888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9f393a7801adfe7c9f8c5077cbff193.setContent(html_f6fe914f843171b3e281e57d8faf109a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5c39953dadc78591176757af046c132.bindPopup(popup_f9f393a7801adfe7c9f8c5077cbff193)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce6ec26aec8bd96f9698858746081184 = L.circleMarker(\\n\",\n       \"                [35.546, 112.8453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90cd870eeb94f49b3f7727b8e1361ef3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7045ac688b5443ed67e9377145d45ce = $(`&lt;div id=&quot;html_a7045ac688b5443ed67e9377145d45ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8453             latitude:35.546             PM2_5:54.41501416             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90cd870eeb94f49b3f7727b8e1361ef3.setContent(html_a7045ac688b5443ed67e9377145d45ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce6ec26aec8bd96f9698858746081184.bindPopup(popup_90cd870eeb94f49b3f7727b8e1361ef3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a54a9d043ab55096096a85c636646a5b = L.circleMarker(\\n\",\n       \"                [34.2713, 108.954],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd06b0dab9edeb6becbf937243aa65a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1df48f95fdce8f16af62307d0d8f05b6 = $(`&lt;div id=&quot;html_1df48f95fdce8f16af62307d0d8f05b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.954             latitude:34.2713             PM2_5:69.81284916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd06b0dab9edeb6becbf937243aa65a4.setContent(html_1df48f95fdce8f16af62307d0d8f05b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a54a9d043ab55096096a85c636646a5b.bindPopup(popup_cd06b0dab9edeb6becbf937243aa65a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_911a1fad72f49312f5daa06196238ac8 = L.circleMarker(\\n\",\n       \"                [39.6679, 118.2185],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c36a6d9c3d0042ac1c610c5afa2170b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c61e48c0e9dab8f4a8f0864995336c50 = $(`&lt;div id=&quot;html_c61e48c0e9dab8f4a8f0864995336c50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2185             latitude:39.6679             PM2_5:49.28212291             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c36a6d9c3d0042ac1c610c5afa2170b.setContent(html_c61e48c0e9dab8f4a8f0864995336c50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_911a1fad72f49312f5daa06196238ac8.bindPopup(popup_8c36a6d9c3d0042ac1c610c5afa2170b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4809bc4fb9bebb218e3ff5a177db1f7 = L.circleMarker(\\n\",\n       \"                [32.1078, 114.1044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69ad5220367be87438d4a8e8266aa9f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6481b81040bb316f26aa16b28c1b80ce = $(`&lt;div id=&quot;html_6481b81040bb316f26aa16b28c1b80ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1044             latitude:32.1078             PM2_5:50.29519774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69ad5220367be87438d4a8e8266aa9f6.setContent(html_6481b81040bb316f26aa16b28c1b80ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4809bc4fb9bebb218e3ff5a177db1f7.bindPopup(popup_69ad5220367be87438d4a8e8266aa9f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_974ecd9dc316226957695f87efddc4fc = L.circleMarker(\\n\",\n       \"                [45.7733, 126.689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32e934bdac050bd3c4f0e15963f638d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9f0f809cb98f88251a92aa2eb712edc = $(`&lt;div id=&quot;html_d9f0f809cb98f88251a92aa2eb712edc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.689             latitude:45.7733             PM2_5:34.81805556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32e934bdac050bd3c4f0e15963f638d4.setContent(html_d9f0f809cb98f88251a92aa2eb712edc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_974ecd9dc316226957695f87efddc4fc.bindPopup(popup_32e934bdac050bd3c4f0e15963f638d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_407d3dfe13623cdabfaceae2934f15e5 = L.circleMarker(\\n\",\n       \"                [23.0528, 114.4183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_227327a2ecbb965a364a9c24cf65c00b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be00173614de84e291a12cf3a050831a = $(`&lt;div id=&quot;html_be00173614de84e291a12cf3a050831a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4183             latitude:23.0528             PM2_5:27.9902507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_227327a2ecbb965a364a9c24cf65c00b.setContent(html_be00173614de84e291a12cf3a050831a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_407d3dfe13623cdabfaceae2934f15e5.bindPopup(popup_227327a2ecbb965a364a9c24cf65c00b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e90c0800ad990c259fbe6d9f0bae25c9 = L.circleMarker(\\n\",\n       \"                [37.809, 120.773],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7084a586d3596684329276d0055007b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_765eb719e00d9d7c10b3d7441d45fa08 = $(`&lt;div id=&quot;html_765eb719e00d9d7c10b3d7441d45fa08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.773             latitude:37.809             PM2_5:28.17908309             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7084a586d3596684329276d0055007b3.setContent(html_765eb719e00d9d7c10b3d7441d45fa08);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e90c0800ad990c259fbe6d9f0bae25c9.bindPopup(popup_7084a586d3596684329276d0055007b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba9936c8a38e90a4b90f3dcd456f9fe5 = L.circleMarker(\\n\",\n       \"                [33.6128, 114.6613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_531ffb15a1b29aaa2a06958346984a25 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbdbf537daee06341d051a906b928cc8 = $(`&lt;div id=&quot;html_dbdbf537daee06341d051a906b928cc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6613             latitude:33.6128             PM2_5:51.95903955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_531ffb15a1b29aaa2a06958346984a25.setContent(html_dbdbf537daee06341d051a906b928cc8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba9936c8a38e90a4b90f3dcd456f9fe5.bindPopup(popup_531ffb15a1b29aaa2a06958346984a25)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9848f57c303e13331fa075ecab597f85 = L.circleMarker(\\n\",\n       \"                [41.0112, 117.9384],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b908186761d9dd2ea1a997267b579fde = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9089f04f40c18d8f1b23ed736cead80f = $(`&lt;div id=&quot;html_9089f04f40c18d8f1b23ed736cead80f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9384             latitude:41.0112             PM2_5:27.04519774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b908186761d9dd2ea1a997267b579fde.setContent(html_9089f04f40c18d8f1b23ed736cead80f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9848f57c303e13331fa075ecab597f85.bindPopup(popup_b908186761d9dd2ea1a997267b579fde)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4732155454b93f80004b34650ef5fce3 = L.circleMarker(\\n\",\n       \"                [40.8452, 111.659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bae483c9da090d1748061ceabd08a15d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e502b34a84edbbcfea1265f561912871 = $(`&lt;div id=&quot;html_e502b34a84edbbcfea1265f561912871&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.659             latitude:40.8452             PM2_5:36.20612813             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bae483c9da090d1748061ceabd08a15d.setContent(html_e502b34a84edbbcfea1265f561912871);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4732155454b93f80004b34650ef5fce3.bindPopup(popup_bae483c9da090d1748061ceabd08a15d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_398814a2e3fd6e9e982ed91ff2337ac6 = L.circleMarker(\\n\",\n       \"                [34.2572, 109.06],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a062342dffbb60e5865c23a795920e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9afaaa6dd2d35f8e89dd48b63b5dcbf6 = $(`&lt;div id=&quot;html_9afaaa6dd2d35f8e89dd48b63b5dcbf6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.06             latitude:34.2572             PM2_5:67.61647727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a062342dffbb60e5865c23a795920e8.setContent(html_9afaaa6dd2d35f8e89dd48b63b5dcbf6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_398814a2e3fd6e9e982ed91ff2337ac6.bindPopup(popup_9a062342dffbb60e5865c23a795920e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d5b19e3f61667f6947241939e0fd9f3 = L.circleMarker(\\n\",\n       \"                [38.03777778, 114.5480556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e355ed841a602503b27fa6d4d2819df7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91211aacc28bc841474114c5c423b924 = $(`&lt;div id=&quot;html_91211aacc28bc841474114c5c423b924&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5480556             latitude:38.03777778             PM2_5:68.15266106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e355ed841a602503b27fa6d4d2819df7.setContent(html_91211aacc28bc841474114c5c423b924);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d5b19e3f61667f6947241939e0fd9f3.bindPopup(popup_e355ed841a602503b27fa6d4d2819df7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_367050f638fdf7ac822b1a3a2db4cdbe = L.circleMarker(\\n\",\n       \"                [26.2081, 111.6217],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1419c4bf1e081c5f608293439c1454b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77a929a04d1d9a5056210f61440a7032 = $(`&lt;div id=&quot;html_77a929a04d1d9a5056210f61440a7032&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6217             latitude:26.2081             PM2_5:37.14595376             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1419c4bf1e081c5f608293439c1454b6.setContent(html_77a929a04d1d9a5056210f61440a7032);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_367050f638fdf7ac822b1a3a2db4cdbe.bindPopup(popup_1419c4bf1e081c5f608293439c1454b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b481b3577e2ea9bd4f799f5478a6ac5d = L.circleMarker(\\n\",\n       \"                [22.8322, 100.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5cabd81ee0289d1a507f08e27cf3f9b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6fda82ca18638a6e3becc20b969d28c = $(`&lt;div id=&quot;html_d6fda82ca18638a6e3becc20b969d28c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.9817             latitude:22.8322             PM2_5:19.05694444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5cabd81ee0289d1a507f08e27cf3f9b.setContent(html_d6fda82ca18638a6e3becc20b969d28c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b481b3577e2ea9bd4f799f5478a6ac5d.bindPopup(popup_e5cabd81ee0289d1a507f08e27cf3f9b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3585e237263d5c57ef373988cec92b03 = L.circleMarker(\\n\",\n       \"                [27.3033, 111.5239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13873b00c294d8d65f0a3ba9a60b7611 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c69b900d7eb37da284581ac0e540cfdd = $(`&lt;div id=&quot;html_c69b900d7eb37da284581ac0e540cfdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5239             latitude:27.3033             PM2_5:42.53539823             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13873b00c294d8d65f0a3ba9a60b7611.setContent(html_c69b900d7eb37da284581ac0e540cfdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3585e237263d5c57ef373988cec92b03.bindPopup(popup_13873b00c294d8d65f0a3ba9a60b7611)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48c3bb140d0b0b1f52be9b184f13987c = L.circleMarker(\\n\",\n       \"                [30.5947, 114.3008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86b4b2492d4d160ccf84c24fa79a290f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_603e592dd20c4d8003ae833e3bd9430c = $(`&lt;div id=&quot;html_603e592dd20c4d8003ae833e3bd9430c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3008             latitude:30.5947             PM2_5:45.17222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86b4b2492d4d160ccf84c24fa79a290f.setContent(html_603e592dd20c4d8003ae833e3bd9430c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48c3bb140d0b0b1f52be9b184f13987c.bindPopup(popup_86b4b2492d4d160ccf84c24fa79a290f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_950c81d59b391fbc9677d9c74e52336e = L.circleMarker(\\n\",\n       \"                [30.2997, 113.8531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd45d3e7c71d5242ec91901127b39e86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_268293824a7c2c850373d221c0d0a218 = $(`&lt;div id=&quot;html_268293824a7c2c850373d221c0d0a218&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8531             latitude:30.2997             PM2_5:43.25073314             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd45d3e7c71d5242ec91901127b39e86.setContent(html_268293824a7c2c850373d221c0d0a218);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_950c81d59b391fbc9677d9c74e52336e.bindPopup(popup_cd45d3e7c71d5242ec91901127b39e86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4051bb592d4c230dc1f682007753e76d = L.circleMarker(\\n\",\n       \"                [27.7297, 109.1916],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7cbf223efe905c5fd4f1fb334a26727d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2411098919a97bdfb2be8a03695eca5d = $(`&lt;div id=&quot;html_2411098919a97bdfb2be8a03695eca5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.1916             latitude:27.7297             PM2_5:23.85416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7cbf223efe905c5fd4f1fb334a26727d.setContent(html_2411098919a97bdfb2be8a03695eca5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4051bb592d4c230dc1f682007753e76d.bindPopup(popup_7cbf223efe905c5fd4f1fb334a26727d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1cd2f829485efb94e9bc2080a6db27e = L.circleMarker(\\n\",\n       \"                [30.2366, 119.7183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa3bf6b5c87eafc0c8d2388191e3453c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3e1cb32b88062e05fc0e2c1e72577c1 = $(`&lt;div id=&quot;html_e3e1cb32b88062e05fc0e2c1e72577c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7183             latitude:30.2366             PM2_5:32.08100559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa3bf6b5c87eafc0c8d2388191e3453c.setContent(html_e3e1cb32b88062e05fc0e2c1e72577c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1cd2f829485efb94e9bc2080a6db27e.bindPopup(popup_fa3bf6b5c87eafc0c8d2388191e3453c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a135683feedb1acfabf914ef7c2cdb4 = L.circleMarker(\\n\",\n       \"                [36.2289, 117.6789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f91deace0d6e53563ca27c672f46fb7d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc9b55dec1ea66976a3ac46940c77c0b = $(`&lt;div id=&quot;html_fc9b55dec1ea66976a3ac46940c77c0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6789             latitude:36.2289             PM2_5:49.29411765             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f91deace0d6e53563ca27c672f46fb7d.setContent(html_fc9b55dec1ea66976a3ac46940c77c0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a135683feedb1acfabf914ef7c2cdb4.bindPopup(popup_f91deace0d6e53563ca27c672f46fb7d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_32642be96320736ce90670c6997b757e = L.circleMarker(\\n\",\n       \"                [38.80805556, 121.2588889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ad631e7b338dca3fa309c06d068f376 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b68e46f8df156431e3e05051a3c4a2c = $(`&lt;div id=&quot;html_5b68e46f8df156431e3e05051a3c4a2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2588889             latitude:38.80805556             PM2_5:26.59773371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ad631e7b338dca3fa309c06d068f376.setContent(html_5b68e46f8df156431e3e05051a3c4a2c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_32642be96320736ce90670c6997b757e.bindPopup(popup_9ad631e7b338dca3fa309c06d068f376)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bf6fc0afa944455a1c897c9081aae9f = L.circleMarker(\\n\",\n       \"                [39.0927, 117.202],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9235ee27a59495ff679a6348aab61985 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37ae3c9cf44f88678cfa3d61c326c37c = $(`&lt;div id=&quot;html_37ae3c9cf44f88678cfa3d61c326c37c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.202             latitude:39.0927             PM2_5:50.48033708             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9235ee27a59495ff679a6348aab61985.setContent(html_37ae3c9cf44f88678cfa3d61c326c37c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bf6fc0afa944455a1c897c9081aae9f.bindPopup(popup_9235ee27a59495ff679a6348aab61985)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b2b6db2bbd58b0edb486ff895e4d1a4 = L.circleMarker(\\n\",\n       \"                [30.21, 120.211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_354dd354f84ac5f6f237d29875bb7d72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_920320116c8910116e2afbc6bde2786b = $(`&lt;div id=&quot;html_920320116c8910116e2afbc6bde2786b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.211             latitude:30.21             PM2_5:38.86072423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_354dd354f84ac5f6f237d29875bb7d72.setContent(html_920320116c8910116e2afbc6bde2786b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b2b6db2bbd58b0edb486ff895e4d1a4.bindPopup(popup_354dd354f84ac5f6f237d29875bb7d72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a94b19f63ddba468f2ff73a0bd5d97a7 = L.circleMarker(\\n\",\n       \"                [33.4022, 120.118],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc71e03b82398a0bdd021d0ee0e71dc5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_656d3ed77cdebe7fa5e7bc4c7d772fd9 = $(`&lt;div id=&quot;html_656d3ed77cdebe7fa5e7bc4c7d772fd9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.118             latitude:33.4022             PM2_5:41.83611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc71e03b82398a0bdd021d0ee0e71dc5.setContent(html_656d3ed77cdebe7fa5e7bc4c7d772fd9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a94b19f63ddba468f2ff73a0bd5d97a7.bindPopup(popup_dc71e03b82398a0bdd021d0ee0e71dc5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98ecc16c8f65d655717425e088f20e27 = L.circleMarker(\\n\",\n       \"                [31.737, 119.579],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4c671db194c254cbd3f87b6b6f321d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d90801a06424d816903fbb62af2faa3b = $(`&lt;div id=&quot;html_d90801a06424d816903fbb62af2faa3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.579             latitude:31.737             PM2_5:43.87361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4c671db194c254cbd3f87b6b6f321d8.setContent(html_d90801a06424d816903fbb62af2faa3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98ecc16c8f65d655717425e088f20e27.bindPopup(popup_c4c671db194c254cbd3f87b6b6f321d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5c6b71adc29dff203b1548ffc4f903e = L.circleMarker(\\n\",\n       \"                [38.0524, 114.5214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9459f64d3dd512a8628117ba4c8ce087 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4faafd058ebf3a6cd0d9f9d3adab6bdd = $(`&lt;div id=&quot;html_4faafd058ebf3a6cd0d9f9d3adab6bdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5214             latitude:38.0524             PM2_5:75.23955432             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9459f64d3dd512a8628117ba4c8ce087.setContent(html_4faafd058ebf3a6cd0d9f9d3adab6bdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5c6b71adc29dff203b1548ffc4f903e.bindPopup(popup_9459f64d3dd512a8628117ba4c8ce087)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8c9228f9b4d27e57f80d7b26758e666 = L.circleMarker(\\n\",\n       \"                [39.6969, 106.8089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66cd9ddae6e3b0cf28189063a863d0e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31d7221351e76e79808996c58d8ea26a = $(`&lt;div id=&quot;html_31d7221351e76e79808996c58d8ea26a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8089             latitude:39.6969             PM2_5:36.94972067             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66cd9ddae6e3b0cf28189063a863d0e5.setContent(html_31d7221351e76e79808996c58d8ea26a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8c9228f9b4d27e57f80d7b26758e666.bindPopup(popup_66cd9ddae6e3b0cf28189063a863d0e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c99db96ad6b0ec90814bff958cc9201 = L.circleMarker(\\n\",\n       \"                [29.2365, 88.8931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa9f3921fe6d4c36c14662235708acf7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5fa000ea87872bea310ce26dbc97559c = $(`&lt;div id=&quot;html_5fa000ea87872bea310ce26dbc97559c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.8931             latitude:29.2365             PM2_5:7.04398827             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa9f3921fe6d4c36c14662235708acf7.setContent(html_5fa000ea87872bea310ce26dbc97559c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c99db96ad6b0ec90814bff958cc9201.bindPopup(popup_aa9f3921fe6d4c36c14662235708acf7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc9ec008cfeb648dcc86c4aacafbc28c = L.circleMarker(\\n\",\n       \"                [30.696, 111.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df234c1b69401413ef37e12d166c2cd7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03bedb5c3197610119198ef2b071a064 = $(`&lt;div id=&quot;html_03bedb5c3197610119198ef2b071a064&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.268             latitude:30.696             PM2_5:53.72980501             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df234c1b69401413ef37e12d166c2cd7.setContent(html_03bedb5c3197610119198ef2b071a064);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc9ec008cfeb648dcc86c4aacafbc28c.bindPopup(popup_df234c1b69401413ef37e12d166c2cd7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e209aa7ea34047f254da1d3f305244e = L.circleMarker(\\n\",\n       \"                [27.5342, 109.9792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1b0fca1b88b9088424d86ce50164c12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0847c47ae1c880b77d9dc4ff67c3ed30 = $(`&lt;div id=&quot;html_0847c47ae1c880b77d9dc4ff67c3ed30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9792             latitude:27.5342             PM2_5:39.37083333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1b0fca1b88b9088424d86ce50164c12.setContent(html_0847c47ae1c880b77d9dc4ff67c3ed30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e209aa7ea34047f254da1d3f305244e.bindPopup(popup_c1b0fca1b88b9088424d86ce50164c12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_deeaa6bb835e156dfd68e62854b82f7d = L.circleMarker(\\n\",\n       \"                [34.7538, 113.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e36065b839ee4e6b93656046ef2a842 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aae16de8dcf2b7b2f52220694d6830b1 = $(`&lt;div id=&quot;html_aae16de8dcf2b7b2f52220694d6830b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6356             latitude:34.7538             PM2_5:63.08240223             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e36065b839ee4e6b93656046ef2a842.setContent(html_aae16de8dcf2b7b2f52220694d6830b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_deeaa6bb835e156dfd68e62854b82f7d.bindPopup(popup_1e36065b839ee4e6b93656046ef2a842)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_281b71eb8a90ca5b2c20e74b28f848c9 = L.circleMarker(\\n\",\n       \"                [27.8847, 102.2689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67a4e5854185dcb79c14b59892c729ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce7505da50a304eccd43e5039c48a963 = $(`&lt;div id=&quot;html_ce7505da50a304eccd43e5039c48a963&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2689             latitude:27.8847             PM2_5:22.76470588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67a4e5854185dcb79c14b59892c729ee.setContent(html_ce7505da50a304eccd43e5039c48a963);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_281b71eb8a90ca5b2c20e74b28f848c9.bindPopup(popup_67a4e5854185dcb79c14b59892c729ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44796376d09847bab7f13bea2f4a5e62 = L.circleMarker(\\n\",\n       \"                [28.2264, 117.0222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f6fe603ed36d4d8591454766fe8091d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1bda16745a63643c455ecb71f7656e0 = $(`&lt;div id=&quot;html_b1bda16745a63643c455ecb71f7656e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0222             latitude:28.2264             PM2_5:34.38687151             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f6fe603ed36d4d8591454766fe8091d.setContent(html_b1bda16745a63643c455ecb71f7656e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44796376d09847bab7f13bea2f4a5e62.bindPopup(popup_9f6fe603ed36d4d8591454766fe8091d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f728fbb0fed16c514f838917bc75c14 = L.circleMarker(\\n\",\n       \"                [25.8071, 113.0383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cdd429524e746a44409068759a2d2f22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98008d302fcd07a8ff33e2a3fa6fce7c = $(`&lt;div id=&quot;html_98008d302fcd07a8ff33e2a3fa6fce7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0383             latitude:25.8071             PM2_5:32.6800554             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cdd429524e746a44409068759a2d2f22.setContent(html_98008d302fcd07a8ff33e2a3fa6fce7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f728fbb0fed16c514f838917bc75c14.bindPopup(popup_cdd429524e746a44409068759a2d2f22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_133ce754cb53db42a934a431395b00d0 = L.circleMarker(\\n\",\n       \"                [34.3672, 107.1906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1282986b2dc968ea0c4c250187fecf95 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_013ba439833ef4f16fcfbc950821b588 = $(`&lt;div id=&quot;html_013ba439833ef4f16fcfbc950821b588&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1906             latitude:34.3672             PM2_5:50.35434174             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1282986b2dc968ea0c4c250187fecf95.setContent(html_013ba439833ef4f16fcfbc950821b588);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_133ce754cb53db42a934a431395b00d0.bindPopup(popup_1282986b2dc968ea0c4c250187fecf95)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d17c919948fcac783e6c48bebed0b048 = L.circleMarker(\\n\",\n       \"                [37.161, 122.41],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ac85041171f6d9102b677b846d59f65 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f4734346fa193c6eaa85d3a6757dcc1 = $(`&lt;div id=&quot;html_1f4734346fa193c6eaa85d3a6757dcc1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.41             latitude:37.161             PM2_5:18.70396601             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ac85041171f6d9102b677b846d59f65.setContent(html_1f4734346fa193c6eaa85d3a6757dcc1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d17c919948fcac783e6c48bebed0b048.bindPopup(popup_5ac85041171f6d9102b677b846d59f65)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f40c5b84ff1493e872730e0c629f7009 = L.circleMarker(\\n\",\n       \"                [38.97388889, 121.6119444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3ddd219771cd986033c5a191ce2753c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dde23318a9e4787c6c75cc0f8fb7a9a0 = $(`&lt;div id=&quot;html_dde23318a9e4787c6c75cc0f8fb7a9a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6119444             latitude:38.97388889             PM2_5:30.28830084             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3ddd219771cd986033c5a191ce2753c.setContent(html_dde23318a9e4787c6c75cc0f8fb7a9a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f40c5b84ff1493e872730e0c629f7009.bindPopup(popup_c3ddd219771cd986033c5a191ce2753c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2152336c082492c39fd87c05dc53ca13 = L.circleMarker(\\n\",\n       \"                [26.0542, 119.389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0a297b7a4b036612d37f246426e290f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c3ac4488321778a49fd1c02e3b00e33 = $(`&lt;div id=&quot;html_2c3ac4488321778a49fd1c02e3b00e33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.389             latitude:26.0542             PM2_5:24.21186441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0a297b7a4b036612d37f246426e290f.setContent(html_2c3ac4488321778a49fd1c02e3b00e33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2152336c082492c39fd87c05dc53ca13.bindPopup(popup_a0a297b7a4b036612d37f246426e290f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_653036da551425759b0ddb346595f627 = L.circleMarker(\\n\",\n       \"                [36.5458, 104.1731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7cd203ead5c9aa0c4c583fceaa0f56ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_608ca535249fc73453044e37a647eb28 = $(`&lt;div id=&quot;html_608ca535249fc73453044e37a647eb28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1731             latitude:36.5458             PM2_5:42.94827586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7cd203ead5c9aa0c4c583fceaa0f56ed.setContent(html_608ca535249fc73453044e37a647eb28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_653036da551425759b0ddb346595f627.bindPopup(popup_7cd203ead5c9aa0c4c583fceaa0f56ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48d1b0525ed004b48b33a6a7c3f4a20a = L.circleMarker(\\n\",\n       \"                [21.6828, 110.8592],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b43c615d04f450db1e2b2872c2e2130 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d357aff5d943febf9b8e52a32aceef31 = $(`&lt;div id=&quot;html_d357aff5d943febf9b8e52a32aceef31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.8592             latitude:21.6828             PM2_5:29.20142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b43c615d04f450db1e2b2872c2e2130.setContent(html_d357aff5d943febf9b8e52a32aceef31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48d1b0525ed004b48b33a6a7c3f4a20a.bindPopup(popup_9b43c615d04f450db1e2b2872c2e2130)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84b89e2d95c5edd095ea3f4140f1b1f7 = L.circleMarker(\\n\",\n       \"                [27.5444, 109.9453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c8422689a533a400f0c587b93c27d6a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f89c572c364dc8aa94b13acfafdd245 = $(`&lt;div id=&quot;html_5f89c572c364dc8aa94b13acfafdd245&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9453             latitude:27.5444             PM2_5:36.36023055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c8422689a533a400f0c587b93c27d6a.setContent(html_5f89c572c364dc8aa94b13acfafdd245);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84b89e2d95c5edd095ea3f4140f1b1f7.bindPopup(popup_3c8422689a533a400f0c587b93c27d6a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8767cadb8b6ca602ff0218e9b00108fb = L.circleMarker(\\n\",\n       \"                [30.2989, 109.5039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6e42c075cbf7ad3f49aa04a900c01a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60daae99968c94f7b4c1bff908a8366f = $(`&lt;div id=&quot;html_60daae99968c94f7b4c1bff908a8366f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5039             latitude:30.2989             PM2_5:41.26966292             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6e42c075cbf7ad3f49aa04a900c01a2.setContent(html_60daae99968c94f7b4c1bff908a8366f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8767cadb8b6ca602ff0218e9b00108fb.bindPopup(popup_c6e42c075cbf7ad3f49aa04a900c01a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_daacf4890f37a2e8ce51f5e00ade5f24 = L.circleMarker(\\n\",\n       \"                [25.8567, 98.8601],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f745b16b09d828f5e34cb48cc8c058f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab77802fec45a1706038da848bf04bac = $(`&lt;div id=&quot;html_ab77802fec45a1706038da848bf04bac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.8601             latitude:25.8567             PM2_5:19.85755814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f745b16b09d828f5e34cb48cc8c058f4.setContent(html_ab77802fec45a1706038da848bf04bac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_daacf4890f37a2e8ce51f5e00ade5f24.bindPopup(popup_f745b16b09d828f5e34cb48cc8c058f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f96c30ee88e9b5793d4369f267da28d9 = L.circleMarker(\\n\",\n       \"                [21.9667, 108.6236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a0b20da587c7ac5791cd42d19de5d28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09534c0c2c7a075c755d88344dfb148f = $(`&lt;div id=&quot;html_09534c0c2c7a075c755d88344dfb148f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6236             latitude:21.9667             PM2_5:28.71488764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a0b20da587c7ac5791cd42d19de5d28.setContent(html_09534c0c2c7a075c755d88344dfb148f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f96c30ee88e9b5793d4369f267da28d9.bindPopup(popup_3a0b20da587c7ac5791cd42d19de5d28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5eb80586e0de531edf4f26ac51daeb85 = L.circleMarker(\\n\",\n       \"                [31.6908, 113.3833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74bff70554e33857209a60919ed0377b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57ce2e555c389b2ff5bf01549c251746 = $(`&lt;div id=&quot;html_57ce2e555c389b2ff5bf01549c251746&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3833             latitude:31.6908             PM2_5:49.01955307             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74bff70554e33857209a60919ed0377b.setContent(html_57ce2e555c389b2ff5bf01549c251746);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5eb80586e0de531edf4f26ac51daeb85.bindPopup(popup_74bff70554e33857209a60919ed0377b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b90e4f1e4b366400facd05d8621e1736 = L.circleMarker(\\n\",\n       \"                [38.6016, 105.9512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0fd6e8e332027a1f4da5fb2f658117fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61356de7869906a801ddf9cba79c8393 = $(`&lt;div id=&quot;html_61356de7869906a801ddf9cba79c8393&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.9512             latitude:38.6016             PM2_5:32.96111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0fd6e8e332027a1f4da5fb2f658117fd.setContent(html_61356de7869906a801ddf9cba79c8393);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b90e4f1e4b366400facd05d8621e1736.bindPopup(popup_0fd6e8e332027a1f4da5fb2f658117fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77e210a02dda018aff95811255707b40 = L.circleMarker(\\n\",\n       \"                [25.5364, 103.8],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_215b7eaef4b4dff7ca5a7a32779f097d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ead0c735b85f7933c9cf85ffa415263 = $(`&lt;div id=&quot;html_1ead0c735b85f7933c9cf85ffa415263&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8             latitude:25.5364             PM2_5:34.69859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_215b7eaef4b4dff7ca5a7a32779f097d.setContent(html_1ead0c735b85f7933c9cf85ffa415263);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77e210a02dda018aff95811255707b40.bindPopup(popup_215b7eaef4b4dff7ca5a7a32779f097d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a7d93e7d35472d2214b173274acc999 = L.circleMarker(\\n\",\n       \"                [42.0486, 121.6592],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a3e67be3c5ac0b13e475d94e9154bc7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82928f3c75c7d64d9821970824b52ae5 = $(`&lt;div id=&quot;html_82928f3c75c7d64d9821970824b52ae5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6592             latitude:42.0486             PM2_5:23.12188366             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a3e67be3c5ac0b13e475d94e9154bc7.setContent(html_82928f3c75c7d64d9821970824b52ae5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a7d93e7d35472d2214b173274acc999.bindPopup(popup_2a3e67be3c5ac0b13e475d94e9154bc7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85c4deecc1787571417a3bc57689d5cc = L.circleMarker(\\n\",\n       \"                [23.1036, 109.5683],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8dfcc9761402b957e9e3097b6b3702e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17066004df60a55c221c415d7fd215f5 = $(`&lt;div id=&quot;html_17066004df60a55c221c415d7fd215f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5683             latitude:23.1036             PM2_5:34.63714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8dfcc9761402b957e9e3097b6b3702e5.setContent(html_17066004df60a55c221c415d7fd215f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85c4deecc1787571417a3bc57689d5cc.bindPopup(popup_8dfcc9761402b957e9e3097b6b3702e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b7d8ce65b0008d9ce7ccbfc87b4ccaa = L.circleMarker(\\n\",\n       \"                [30.5514, 114.2511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e44135045b781e63a8dbe895f77df4ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c699f60b4925a977cbb9de9de2c1bb85 = $(`&lt;div id=&quot;html_c699f60b4925a977cbb9de9de2c1bb85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2511             latitude:30.5514             PM2_5:43.4494382             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e44135045b781e63a8dbe895f77df4ce.setContent(html_c699f60b4925a977cbb9de9de2c1bb85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b7d8ce65b0008d9ce7ccbfc87b4ccaa.bindPopup(popup_e44135045b781e63a8dbe895f77df4ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3511bbf84010de149a5981be64c764cd = L.circleMarker(\\n\",\n       \"                [31.8108, 119.9736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84d7ce0f1c9a1379b1cf952f6cc180e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2c92f641857adb34a9d987e5eeed220 = $(`&lt;div id=&quot;html_e2c92f641857adb34a9d987e5eeed220&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9736             latitude:31.8108             PM2_5:42.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84d7ce0f1c9a1379b1cf952f6cc180e1.setContent(html_e2c92f641857adb34a9d987e5eeed220);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3511bbf84010de149a5981be64c764cd.bindPopup(popup_84d7ce0f1c9a1379b1cf952f6cc180e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1ad43143afe3b9ac6bf763f5c0aad7d = L.circleMarker(\\n\",\n       \"                [43.9311, 116.0781],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1491b7c015e64d5af9eacf653eca74a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1215a79dce11c8efecf2df3b671037a5 = $(`&lt;div id=&quot;html_1215a79dce11c8efecf2df3b671037a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0781             latitude:43.9311             PM2_5:17.65738162             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1491b7c015e64d5af9eacf653eca74a2.setContent(html_1215a79dce11c8efecf2df3b671037a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1ad43143afe3b9ac6bf763f5c0aad7d.bindPopup(popup_1491b7c015e64d5af9eacf653eca74a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5d5fc2f658e295fcb9c70574366314f = L.circleMarker(\\n\",\n       \"                [23.0786, 112.4722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8056bb1609814572f3d83d9427045c27 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3e0d300acd2e2a3b86edeeed9e41cc4 = $(`&lt;div id=&quot;html_a3e0d300acd2e2a3b86edeeed9e41cc4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4722             latitude:23.0786             PM2_5:38.267507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8056bb1609814572f3d83d9427045c27.setContent(html_a3e0d300acd2e2a3b86edeeed9e41cc4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5d5fc2f658e295fcb9c70574366314f.bindPopup(popup_8056bb1609814572f3d83d9427045c27)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_588e7559db3f58e588fa11f7c22100e0 = L.circleMarker(\\n\",\n       \"                [36.4372, 115.9848],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f87d8fd0f75f37bfdca916dddabcdf6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97b464136d5c43832958259c72870dd5 = $(`&lt;div id=&quot;html_97b464136d5c43832958259c72870dd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9848             latitude:36.4372             PM2_5:59.31179775             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f87d8fd0f75f37bfdca916dddabcdf6.setContent(html_97b464136d5c43832958259c72870dd5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_588e7559db3f58e588fa11f7c22100e0.bindPopup(popup_4f87d8fd0f75f37bfdca916dddabcdf6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c7bd8e00528b0c68dabeb4cfdec1561 = L.circleMarker(\\n\",\n       \"                [34.3164, 108.7369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28906138fc66d9606d2c93c0605c0ff6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06622253ff0004863059282f86200fc9 = $(`&lt;div id=&quot;html_06622253ff0004863059282f86200fc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7369             latitude:34.3164             PM2_5:66.23809524             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28906138fc66d9606d2c93c0605c0ff6.setContent(html_06622253ff0004863059282f86200fc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c7bd8e00528b0c68dabeb4cfdec1561.bindPopup(popup_28906138fc66d9606d2c93c0605c0ff6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_317c210384d8ee427ebde404b9c3b147 = L.circleMarker(\\n\",\n       \"                [26.8802, 100.2497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e590b580e161b80e98ce5bc36fc30bdc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7e45ddc6bbea1e6b945e9df211ad9e5 = $(`&lt;div id=&quot;html_a7e45ddc6bbea1e6b945e9df211ad9e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2497             latitude:26.8802             PM2_5:14.76734104             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e590b580e161b80e98ce5bc36fc30bdc.setContent(html_a7e45ddc6bbea1e6b945e9df211ad9e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_317c210384d8ee427ebde404b9c3b147.bindPopup(popup_e590b580e161b80e98ce5bc36fc30bdc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d80d6be0f260e74fbbe871c3b598c09 = L.circleMarker(\\n\",\n       \"                [23.415, 111.2353],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30d55b45db42be7ae4290eef509d6970 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e199115aa7ed475da63d32744d827abe = $(`&lt;div id=&quot;html_e199115aa7ed475da63d32744d827abe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2353             latitude:23.415             PM2_5:48.28028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30d55b45db42be7ae4290eef509d6970.setContent(html_e199115aa7ed475da63d32744d827abe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d80d6be0f260e74fbbe871c3b598c09.bindPopup(popup_30d55b45db42be7ae4290eef509d6970)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_591c871892df5f236a732838dbf23e39 = L.circleMarker(\\n\",\n       \"                [39.5371, 75.9828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70546ff73a2437729ceb9f72a7716f0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_902dfa9067ea1f88c99723df68d733dc = $(`&lt;div id=&quot;html_902dfa9067ea1f88c99723df68d733dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:75.9828             latitude:39.5371             PM2_5:98.80446927             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70546ff73a2437729ceb9f72a7716f0f.setContent(html_902dfa9067ea1f88c99723df68d733dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_591c871892df5f236a732838dbf23e39.bindPopup(popup_70546ff73a2437729ceb9f72a7716f0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b566848f37bf3aa8e975c688219095b1 = L.circleMarker(\\n\",\n       \"                [39.9934, 116.315],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0149a1b0d16a29bb6168b34fe9e2262f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c77ae6d05e44f675d4f67fbcef465621 = $(`&lt;div id=&quot;html_c77ae6d05e44f675d4f67fbcef465621&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.315             latitude:39.9934             PM2_5:50.41736695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0149a1b0d16a29bb6168b34fe9e2262f.setContent(html_c77ae6d05e44f675d4f67fbcef465621);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b566848f37bf3aa8e975c688219095b1.bindPopup(popup_0149a1b0d16a29bb6168b34fe9e2262f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a1edae2e42ea79ad128fa1d416b3783 = L.circleMarker(\\n\",\n       \"                [32.3761, 119.389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_93842aedbe42ababf438209a4d3ea2b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c84850e9abe99efcf1af62a2efe1f4b9 = $(`&lt;div id=&quot;html_c84850e9abe99efcf1af62a2efe1f4b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.389             latitude:32.3761             PM2_5:46.29279279             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_93842aedbe42ababf438209a4d3ea2b2.setContent(html_c84850e9abe99efcf1af62a2efe1f4b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a1edae2e42ea79ad128fa1d416b3783.bindPopup(popup_93842aedbe42ababf438209a4d3ea2b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ed2ae4c684d640f0c277dcb8f137f27 = L.circleMarker(\\n\",\n       \"                [32.64600333, 117.0411667],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0b2fc6ec48e9dc13ec479f1a4415413 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4564097c96c5d3c013344ddeedb2cf09 = $(`&lt;div id=&quot;html_4564097c96c5d3c013344ddeedb2cf09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0411667             latitude:32.64600333             PM2_5:56.67590028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0b2fc6ec48e9dc13ec479f1a4415413.setContent(html_4564097c96c5d3c013344ddeedb2cf09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ed2ae4c684d640f0c277dcb8f137f27.bindPopup(popup_c0b2fc6ec48e9dc13ec479f1a4415413)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10a6b101fd86986d909b866de26d87a2 = L.circleMarker(\\n\",\n       \"                [44.5462, 129.6386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a67644d8dff62213ab48a1f5dd7afcc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1682f898a46d8d89bd6e2db7497d68f0 = $(`&lt;div id=&quot;html_1682f898a46d8d89bd6e2db7497d68f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6386             latitude:44.5462             PM2_5:19.77793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a67644d8dff62213ab48a1f5dd7afcc.setContent(html_1682f898a46d8d89bd6e2db7497d68f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10a6b101fd86986d909b866de26d87a2.bindPopup(popup_6a67644d8dff62213ab48a1f5dd7afcc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3a734996b8d54f391120e11fd35988c = L.circleMarker(\\n\",\n       \"                [33.739, 113.292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3308007eb3f4aa948f7c8dfaa4a21f4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_816b67a14570be47f65b967bad9e4424 = $(`&lt;div id=&quot;html_816b67a14570be47f65b967bad9e4424&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.292             latitude:33.739             PM2_5:60.00560224             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3308007eb3f4aa948f7c8dfaa4a21f4f.setContent(html_816b67a14570be47f65b967bad9e4424);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3a734996b8d54f391120e11fd35988c.bindPopup(popup_3308007eb3f4aa948f7c8dfaa4a21f4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ad6e7966c43c2f5c74d24b912e771ba = L.circleMarker(\\n\",\n       \"                [27.72, 106.9178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b070f5f056c30258d385b86d5fbb9096 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a72a4d85961cfc85c71d45cd576bd24 = $(`&lt;div id=&quot;html_0a72a4d85961cfc85c71d45cd576bd24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9178             latitude:27.72             PM2_5:29.96944444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b070f5f056c30258d385b86d5fbb9096.setContent(html_0a72a4d85961cfc85c71d45cd576bd24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ad6e7966c43c2f5c74d24b912e771ba.bindPopup(popup_b070f5f056c30258d385b86d5fbb9096)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14ad4f0e9f3e438fc9cf1b1810632e53 = L.circleMarker(\\n\",\n       \"                [31.4, 119.46],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a37902ec5ba6deedb3592fd6ef714d4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4570580e6562b78829d627c65cf44b8a = $(`&lt;div id=&quot;html_4570580e6562b78829d627c65cf44b8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.46             latitude:31.4             PM2_5:41.13091922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a37902ec5ba6deedb3592fd6ef714d4c.setContent(html_4570580e6562b78829d627c65cf44b8a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14ad4f0e9f3e438fc9cf1b1810632e53.bindPopup(popup_a37902ec5ba6deedb3592fd6ef714d4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d15563c118993b525612af0c2dd9bc5 = L.circleMarker(\\n\",\n       \"                [25.0992, 104.8811],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74bf5b1d1336265419e38dd18860763c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_369f2d25522436c901a695501ff6f903 = $(`&lt;div id=&quot;html_369f2d25522436c901a695501ff6f903&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8811             latitude:25.0992             PM2_5:15.26544944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74bf5b1d1336265419e38dd18860763c.setContent(html_369f2d25522436c901a695501ff6f903);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d15563c118993b525612af0c2dd9bc5.bindPopup(popup_74bf5b1d1336265419e38dd18860763c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c05a13a3c5e6bbda1f5c2f5a471b9c5 = L.circleMarker(\\n\",\n       \"                [46.0707, 122.0931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d00f7e5d9578827459e7b432959ba7eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6febf090cc8ca5b47ff738eeda49f6f = $(`&lt;div id=&quot;html_f6febf090cc8ca5b47ff738eeda49f6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0931             latitude:46.0707             PM2_5:14.30087209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d00f7e5d9578827459e7b432959ba7eb.setContent(html_f6febf090cc8ca5b47ff738eeda49f6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c05a13a3c5e6bbda1f5c2f5a471b9c5.bindPopup(popup_d00f7e5d9578827459e7b432959ba7eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc47e70605b020fb653a03d86327b07e = L.circleMarker(\\n\",\n       \"                [21.2679, 110.3316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff3e02ed74bc80d125d4ad6076914ca1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e01897f53df4d9974a86eedf85109238 = $(`&lt;div id=&quot;html_e01897f53df4d9974a86eedf85109238&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3316             latitude:21.2679             PM2_5:25.9859944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff3e02ed74bc80d125d4ad6076914ca1.setContent(html_e01897f53df4d9974a86eedf85109238);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc47e70605b020fb653a03d86327b07e.bindPopup(popup_ff3e02ed74bc80d125d4ad6076914ca1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca3bc0c115837b2c04c4ac8418d9e976 = L.circleMarker(\\n\",\n       \"                [25.5811, 100.2171],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e200783ce696ce4853fa049709d721b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e340c563f08185bdef036fa5eaf3c8d9 = $(`&lt;div id=&quot;html_e340c563f08185bdef036fa5eaf3c8d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2171             latitude:25.5811             PM2_5:15.15915493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e200783ce696ce4853fa049709d721b.setContent(html_e340c563f08185bdef036fa5eaf3c8d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca3bc0c115837b2c04c4ac8418d9e976.bindPopup(popup_3e200783ce696ce4853fa049709d721b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19e8ad2328802414a8b826b6dd3b797d = L.circleMarker(\\n\",\n       \"                [29.8633, 121.586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f31f69f26bc4adb87c1651f5479d0f5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c15cebe4d5d633a69830f0ac320d6a5 = $(`&lt;div id=&quot;html_3c15cebe4d5d633a69830f0ac320d6a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.586             latitude:29.8633             PM2_5:34.40027701             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f31f69f26bc4adb87c1651f5479d0f5d.setContent(html_3c15cebe4d5d633a69830f0ac320d6a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19e8ad2328802414a8b826b6dd3b797d.bindPopup(popup_f31f69f26bc4adb87c1651f5479d0f5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aba5922d5f5603228f003dd830eab754 = L.circleMarker(\\n\",\n       \"                [43.962, 87.6444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c35c5f105f939e25c909cb1d17d7c83f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_916cd80f9398a6127ab8c5298a63185e = $(`&lt;div id=&quot;html_916cd80f9398a6127ab8c5298a63185e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6444             latitude:43.962             PM2_5:64.43895349             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c35c5f105f939e25c909cb1d17d7c83f.setContent(html_916cd80f9398a6127ab8c5298a63185e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aba5922d5f5603228f003dd830eab754.bindPopup(popup_c35c5f105f939e25c909cb1d17d7c83f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_971be7f78aaa549cfefb6ff9ae7f2ade = L.circleMarker(\\n\",\n       \"                [28.9583, 105.4306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_644f54943765c12b64d53b4bdd96d4c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4dddad06c36787108562270db60302c = $(`&lt;div id=&quot;html_b4dddad06c36787108562270db60302c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4306             latitude:28.9583             PM2_5:39.22050562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_644f54943765c12b64d53b4bdd96d4c9.setContent(html_b4dddad06c36787108562270db60302c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_971be7f78aaa549cfefb6ff9ae7f2ade.bindPopup(popup_644f54943765c12b64d53b4bdd96d4c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74b6f7a249ffb2bc13be6f8e85e4db6f = L.circleMarker(\\n\",\n       \"                [28.2597, 112.9792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54661da09577ee47f4b8d619d51f7c92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8df5924ded8b86b5a87fe420c95b8104 = $(`&lt;div id=&quot;html_8df5924ded8b86b5a87fe420c95b8104&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9792             latitude:28.2597             PM2_5:46.94182825             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54661da09577ee47f4b8d619d51f7c92.setContent(html_8df5924ded8b86b5a87fe420c95b8104);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74b6f7a249ffb2bc13be6f8e85e4db6f.bindPopup(popup_54661da09577ee47f4b8d619d51f7c92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57cdec08b83895e0d72b767295e8a3d9 = L.circleMarker(\\n\",\n       \"                [22.8054, 113.292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d784167f0ed7c88b97737d26170dde0e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7e35538e16b289d4f87b94f775f1f62 = $(`&lt;div id=&quot;html_d7e35538e16b289d4f87b94f775f1f62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.292             latitude:22.8054             PM2_5:28.99439776             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d784167f0ed7c88b97737d26170dde0e.setContent(html_d7e35538e16b289d4f87b94f775f1f62);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57cdec08b83895e0d72b767295e8a3d9.bindPopup(popup_d784167f0ed7c88b97737d26170dde0e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b757886de7bdb620a5481ad6b53c5655 = L.circleMarker(\\n\",\n       \"                [45.7667, 126.635],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e30afed9c4d738ce093afa13e79ec189 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca3284dcd5b4c4baa93549f93911aa2a = $(`&lt;div id=&quot;html_ca3284dcd5b4c4baa93549f93911aa2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.635             latitude:45.7667             PM2_5:32.13547486             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e30afed9c4d738ce093afa13e79ec189.setContent(html_ca3284dcd5b4c4baa93549f93911aa2a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b757886de7bdb620a5481ad6b53c5655.bindPopup(popup_e30afed9c4d738ce093afa13e79ec189)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_506d1b4ce1dd85979d8ee257be81e44a = L.circleMarker(\\n\",\n       \"                [22.5625, 114.117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6e9f895739aa0691953a044b348a7ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f516334dcf96af0cd28af2394e13f1b0 = $(`&lt;div id=&quot;html_f516334dcf96af0cd28af2394e13f1b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.117             latitude:22.5625             PM2_5:28.08798883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6e9f895739aa0691953a044b348a7ef.setContent(html_f516334dcf96af0cd28af2394e13f1b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_506d1b4ce1dd85979d8ee257be81e44a.bindPopup(popup_a6e9f895739aa0691953a044b348a7ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d8d416c1b71283a760716d09b0af8b8a = L.circleMarker(\\n\",\n       \"                [33.9953, 113.7906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee67e6467c3e6895adcd1627a521ea5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e58fc2cb4f3796497f43e82e5db6e085 = $(`&lt;div id=&quot;html_e58fc2cb4f3796497f43e82e5db6e085&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7906             latitude:33.9953             PM2_5:52.43435754             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee67e6467c3e6895adcd1627a521ea5a.setContent(html_e58fc2cb4f3796497f43e82e5db6e085);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d8d416c1b71283a760716d09b0af8b8a.bindPopup(popup_ee67e6467c3e6895adcd1627a521ea5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7858917642e55364490efe2a9b1e0075 = L.circleMarker(\\n\",\n       \"                [30.0911, 120.598],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a52aeec00a6e81c447433233f3822699 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ce806437174aba8a3cd7a9e53812ced = $(`&lt;div id=&quot;html_3ce806437174aba8a3cd7a9e53812ced&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.598             latitude:30.0911             PM2_5:42.53221289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a52aeec00a6e81c447433233f3822699.setContent(html_3ce806437174aba8a3cd7a9e53812ced);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7858917642e55364490efe2a9b1e0075.bindPopup(popup_a52aeec00a6e81c447433233f3822699)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b1a4ed5465eaa4d2fc4f8d7a77cbe83 = L.circleMarker(\\n\",\n       \"                [33.0122, 112.5224],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cdc8e6e0f99a3a78376e87522972c823 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b8697e31ff217551eb07b8dc474cd573 = $(`&lt;div id=&quot;html_b8697e31ff217551eb07b8dc474cd573&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5224             latitude:33.0122             PM2_5:56.43732591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cdc8e6e0f99a3a78376e87522972c823.setContent(html_b8697e31ff217551eb07b8dc474cd573);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b1a4ed5465eaa4d2fc4f8d7a77cbe83.bindPopup(popup_cdc8e6e0f99a3a78376e87522972c823)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7150274ceac175fbb19ae8e85639ecc1 = L.circleMarker(\\n\",\n       \"                [34.6692, 112.3628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7926fd13672e2b64f89bf0f8ccdbbd1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54c5cc1b2e489b04db67857e8a629973 = $(`&lt;div id=&quot;html_54c5cc1b2e489b04db67857e8a629973&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3628             latitude:34.6692             PM2_5:60.93277311             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7926fd13672e2b64f89bf0f8ccdbbd1a.setContent(html_54c5cc1b2e489b04db67857e8a629973);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7150274ceac175fbb19ae8e85639ecc1.bindPopup(popup_7926fd13672e2b64f89bf0f8ccdbbd1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6600504d327d24aaae1a818f50494992 = L.circleMarker(\\n\",\n       \"                [27.8953, 102.2311],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f08f0dc35933493a6a8f764ee77d6350 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee29d8601656967a80adf24434cab6c3 = $(`&lt;div id=&quot;html_ee29d8601656967a80adf24434cab6c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2311             latitude:27.8953             PM2_5:24.98459384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f08f0dc35933493a6a8f764ee77d6350.setContent(html_ee29d8601656967a80adf24434cab6c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6600504d327d24aaae1a818f50494992.bindPopup(popup_f08f0dc35933493a6a8f764ee77d6350)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_abd64c8fa63a0dc766adb5c0810df0c1 = L.circleMarker(\\n\",\n       \"                [30.3714, 114.8989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5205ab237387f7e04e52e14befbed94b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de2b6972a992cd50a2ef5140936bb82b = $(`&lt;div id=&quot;html_de2b6972a992cd50a2ef5140936bb82b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8989             latitude:30.3714             PM2_5:57.2733711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5205ab237387f7e04e52e14befbed94b.setContent(html_de2b6972a992cd50a2ef5140936bb82b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_abd64c8fa63a0dc766adb5c0810df0c1.bindPopup(popup_5205ab237387f7e04e52e14befbed94b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_edea18032421079186dc315522c28767 = L.circleMarker(\\n\",\n       \"                [36.881, 118.746],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b0d5dea176084b3e075624299b3f2d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0fae307f154838bf8bf048781b1e61d9 = $(`&lt;div id=&quot;html_0fae307f154838bf8bf048781b1e61d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.746             latitude:36.881             PM2_5:52.24558824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b0d5dea176084b3e075624299b3f2d5.setContent(html_0fae307f154838bf8bf048781b1e61d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_edea18032421079186dc315522c28767.bindPopup(popup_8b0d5dea176084b3e075624299b3f2d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77d266a88cfaba3580726d6950e58e7e = L.circleMarker(\\n\",\n       \"                [28.3586, 112.9958],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e26ec501ab7199b321c53c17c94b3cdd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bed73156ba82064d3cb97e6603b6ca80 = $(`&lt;div id=&quot;html_bed73156ba82064d3cb97e6603b6ca80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9958             latitude:28.3586             PM2_5:47.99858757             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e26ec501ab7199b321c53c17c94b3cdd.setContent(html_bed73156ba82064d3cb97e6603b6ca80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77d266a88cfaba3580726d6950e58e7e.bindPopup(popup_e26ec501ab7199b321c53c17c94b3cdd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f35d9b36b0b05d89523cb7fac6cdc00 = L.circleMarker(\\n\",\n       \"                [21.865, 111.9494],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67dc9088d050a65ed817bf08bca84f1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a11773e55f677c259eeab12ffbe6d673 = $(`&lt;div id=&quot;html_a11773e55f677c259eeab12ffbe6d673&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9494             latitude:21.865             PM2_5:26.47058824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67dc9088d050a65ed817bf08bca84f1b.setContent(html_a11773e55f677c259eeab12ffbe6d673);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f35d9b36b0b05d89523cb7fac6cdc00.bindPopup(popup_67dc9088d050a65ed817bf08bca84f1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_55c239c96b17987df21d56e7a74cc35d = L.circleMarker(\\n\",\n       \"                [37.739, 115.6906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_06634dc58c386cedc1399c3396eb614b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d452b80d37ceeef5252102a78caec534 = $(`&lt;div id=&quot;html_d452b80d37ceeef5252102a78caec534&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6906             latitude:37.739             PM2_5:61.18333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_06634dc58c386cedc1399c3396eb614b.setContent(html_d452b80d37ceeef5252102a78caec534);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_55c239c96b17987df21d56e7a74cc35d.bindPopup(popup_06634dc58c386cedc1399c3396eb614b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed2d044bf69c4b48f6ce35054e051a2e = L.circleMarker(\\n\",\n       \"                [41.3283, 123.8436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86bb434f6511a4df8badb890df432930 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94fa23df943471622fec92ba3714dcf2 = $(`&lt;div id=&quot;html_94fa23df943471622fec92ba3714dcf2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8436             latitude:41.3283             PM2_5:26.20416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86bb434f6511a4df8badb890df432930.setContent(html_94fa23df943471622fec92ba3714dcf2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed2d044bf69c4b48f6ce35054e051a2e.bindPopup(popup_86bb434f6511a4df8badb890df432930)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce0a56f1c7719e09f1ce80fbf872416b = L.circleMarker(\\n\",\n       \"                [25.8179, 113.0119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42b50f4be61e288704f698bc1c72e031 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6951b4a10215223e06b4ffe2e179785c = $(`&lt;div id=&quot;html_6951b4a10215223e06b4ffe2e179785c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0119             latitude:25.8179             PM2_5:37.42577031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42b50f4be61e288704f698bc1c72e031.setContent(html_6951b4a10215223e06b4ffe2e179785c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce0a56f1c7719e09f1ce80fbf872416b.bindPopup(popup_42b50f4be61e288704f698bc1c72e031)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b087095dd6c811a9a17987be21fd7324 = L.circleMarker(\\n\",\n       \"                [41.2894, 123.1417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf3e568147f97b4c3f2097aaade3a065 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9b126a1a969a7f46fc42fbc8afb5ac7 = $(`&lt;div id=&quot;html_e9b126a1a969a7f46fc42fbc8afb5ac7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1417             latitude:41.2894             PM2_5:33.12921348             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf3e568147f97b4c3f2097aaade3a065.setContent(html_e9b126a1a969a7f46fc42fbc8afb5ac7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b087095dd6c811a9a17987be21fd7324.bindPopup(popup_cf3e568147f97b4c3f2097aaade3a065)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6629568fcaa6031eedb4633402750188 = L.circleMarker(\\n\",\n       \"                [43.4569, 87.4651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fa9868224ae8c8618bdae53515a0e85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_032e9c595d13273cecb8ff675a9ae916 = $(`&lt;div id=&quot;html_032e9c595d13273cecb8ff675a9ae916&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.4651             latitude:43.4569             PM2_5:18.97464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fa9868224ae8c8618bdae53515a0e85.setContent(html_032e9c595d13273cecb8ff675a9ae916);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6629568fcaa6031eedb4633402750188.bindPopup(popup_6fa9868224ae8c8618bdae53515a0e85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a19a8a574a88a72e9e335c2c14d91906 = L.circleMarker(\\n\",\n       \"                [30.72358333, 103.97275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2b8617effa0bafd46a9c0149a069e77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a08e24d60040bac526aa700ca8a8f61 = $(`&lt;div id=&quot;html_4a08e24d60040bac526aa700ca8a8f61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.97275             latitude:30.72358333             PM2_5:55.87465181             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2b8617effa0bafd46a9c0149a069e77.setContent(html_4a08e24d60040bac526aa700ca8a8f61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a19a8a574a88a72e9e335c2c14d91906.bindPopup(popup_a2b8617effa0bafd46a9c0149a069e77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e45217ecd809d09c903aad664f1bb268 = L.circleMarker(\\n\",\n       \"                [28.2675, 109.6958],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5fd216a6aeac98a6d2a5d4b0f32393c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f8d72feb94c7bbe75780af766dfdbcd = $(`&lt;div id=&quot;html_0f8d72feb94c7bbe75780af766dfdbcd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6958             latitude:28.2675             PM2_5:45.76388889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5fd216a6aeac98a6d2a5d4b0f32393c.setContent(html_0f8d72feb94c7bbe75780af766dfdbcd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e45217ecd809d09c903aad664f1bb268.bindPopup(popup_b5fd216a6aeac98a6d2a5d4b0f32393c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33953dcb644eacb6cd8e049ade2be1a1 = L.circleMarker(\\n\",\n       \"                [37.9844, 106.2025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f650fdae96234adf757b8da0b14ce256 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_210682762382f75fddbb37ad1bc842c9 = $(`&lt;div id=&quot;html_210682762382f75fddbb37ad1bc842c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2025             latitude:37.9844             PM2_5:35.49438202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f650fdae96234adf757b8da0b14ce256.setContent(html_210682762382f75fddbb37ad1bc842c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33953dcb644eacb6cd8e049ade2be1a1.bindPopup(popup_f650fdae96234adf757b8da0b14ce256)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87e743d586e1d32ce8e97d2d292d4a84 = L.circleMarker(\\n\",\n       \"                [36.8198, 118.3092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_698efaf110f2632c9d853c4e8c1ef632 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_221a2638ef6878fe3ff741d1721191fd = $(`&lt;div id=&quot;html_221a2638ef6878fe3ff741d1721191fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3092             latitude:36.8198             PM2_5:58.88951841             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_698efaf110f2632c9d853c4e8c1ef632.setContent(html_221a2638ef6878fe3ff741d1721191fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87e743d586e1d32ce8e97d2d292d4a84.bindPopup(popup_698efaf110f2632c9d853c4e8c1ef632)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57f7ea18677f460e9cdc3bd93a9ef85b = L.circleMarker(\\n\",\n       \"                [29.3628, 104.7547],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7a3c83fb1075278e6ae4c4d1c97ea3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ec911b37857558ded6a2dbe514d263a = $(`&lt;div id=&quot;html_7ec911b37857558ded6a2dbe514d263a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7547             latitude:29.3628             PM2_5:74.37711864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7a3c83fb1075278e6ae4c4d1c97ea3e.setContent(html_7ec911b37857558ded6a2dbe514d263a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57f7ea18677f460e9cdc3bd93a9ef85b.bindPopup(popup_c7a3c83fb1075278e6ae4c4d1c97ea3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96edf30c1b8a1e5fd0227fa458c30df8 = L.circleMarker(\\n\",\n       \"                [26.5917, 104.83],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1464a8b6d05e0dffa88cb140e01db41 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b583b8fd985d79576402c4da01fd5bfe = $(`&lt;div id=&quot;html_b583b8fd985d79576402c4da01fd5bfe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.83             latitude:26.5917             PM2_5:40.890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1464a8b6d05e0dffa88cb140e01db41.setContent(html_b583b8fd985d79576402c4da01fd5bfe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96edf30c1b8a1e5fd0227fa458c30df8.bindPopup(popup_b1464a8b6d05e0dffa88cb140e01db41)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf44c8add529702c4ad2dcaf7f7edf70 = L.circleMarker(\\n\",\n       \"                [38.4975, 106.2328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a38ec654e4ed8e3cb923f9bc9507b5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff6ffb5a4645d40308d2ece742fae76b = $(`&lt;div id=&quot;html_ff6ffb5a4645d40308d2ece742fae76b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2328             latitude:38.4975             PM2_5:44.18994413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a38ec654e4ed8e3cb923f9bc9507b5f.setContent(html_ff6ffb5a4645d40308d2ece742fae76b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf44c8add529702c4ad2dcaf7f7edf70.bindPopup(popup_4a38ec654e4ed8e3cb923f9bc9507b5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2829e9bbe9d96526b26d8f78da51c61d = L.circleMarker(\\n\",\n       \"                [22.8225, 108.321],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_06e4178d6f39555b7378739befadd902 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bbd4591389fb9ef97dd5f5a428e397e6 = $(`&lt;div id=&quot;html_bbd4591389fb9ef97dd5f5a428e397e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.321             latitude:22.8225             PM2_5:33.82062147             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_06e4178d6f39555b7378739befadd902.setContent(html_bbd4591389fb9ef97dd5f5a428e397e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2829e9bbe9d96526b26d8f78da51c61d.bindPopup(popup_06e4178d6f39555b7378739befadd902)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2908e9f207a42aafdc804706c18777b5 = L.circleMarker(\\n\",\n       \"                [30.6539, 117.4974],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27f898d7fb4143b7f67100f6142cab84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7132c7832c9e2b24575d0a3a01f144b = $(`&lt;div id=&quot;html_f7132c7832c9e2b24575d0a3a01f144b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4974             latitude:30.6539             PM2_5:57.20555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27f898d7fb4143b7f67100f6142cab84.setContent(html_f7132c7832c9e2b24575d0a3a01f144b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2908e9f207a42aafdc804706c18777b5.bindPopup(popup_27f898d7fb4143b7f67100f6142cab84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20f8fc0113d199f1af729a343b64e606 = L.circleMarker(\\n\",\n       \"                [32.935, 117.3086],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff0176c52d8d42a7526ce9629d83ebe5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e96a609ea1f908e1bdb51bbcb1e8fd31 = $(`&lt;div id=&quot;html_e96a609ea1f908e1bdb51bbcb1e8fd31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3086             latitude:32.935             PM2_5:54.68539326             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff0176c52d8d42a7526ce9629d83ebe5.setContent(html_e96a609ea1f908e1bdb51bbcb1e8fd31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20f8fc0113d199f1af729a343b64e606.bindPopup(popup_ff0176c52d8d42a7526ce9629d83ebe5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed7099c7d3741ffe55e3772a3ab6aa53 = L.circleMarker(\\n\",\n       \"                [35.4234, 119.5198],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e07112189915121c9a37d63a1c581d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f18f44982be1e0bf2c349a85aec0fb7 = $(`&lt;div id=&quot;html_9f18f44982be1e0bf2c349a85aec0fb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5198             latitude:35.4234             PM2_5:41.30501393             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e07112189915121c9a37d63a1c581d6.setContent(html_9f18f44982be1e0bf2c349a85aec0fb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed7099c7d3741ffe55e3772a3ab6aa53.bindPopup(popup_4e07112189915121c9a37d63a1c581d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73e60b2f95676e63e3bbb249ceb60d27 = L.circleMarker(\\n\",\n       \"                [24.769519, 113.586606],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e194df1716e9c332b2f7d1ed4ddaea94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b02a3b1ba047fc739483ced2bfe0748 = $(`&lt;div id=&quot;html_8b02a3b1ba047fc739483ced2bfe0748&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.586606             latitude:24.769519             PM2_5:36.18194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e194df1716e9c332b2f7d1ed4ddaea94.setContent(html_8b02a3b1ba047fc739483ced2bfe0748);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73e60b2f95676e63e3bbb249ceb60d27.bindPopup(popup_e194df1716e9c332b2f7d1ed4ddaea94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b515807b875074ae2a2915cd2b32673 = L.circleMarker(\\n\",\n       \"                [30.2352, 115.0625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66d07b005e3b9fac9578a9d39577d41d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d234cba905fa5a1e846c96c72a0e4bc = $(`&lt;div id=&quot;html_9d234cba905fa5a1e846c96c72a0e4bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0625             latitude:30.2352             PM2_5:47.3969697             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66d07b005e3b9fac9578a9d39577d41d.setContent(html_9d234cba905fa5a1e846c96c72a0e4bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b515807b875074ae2a2915cd2b32673.bindPopup(popup_66d07b005e3b9fac9578a9d39577d41d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f9063589a3d606755fe301e133f3dad = L.circleMarker(\\n\",\n       \"                [41.9228, 123.3783],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d83d33515814ad70eef4c8288701691 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c48fce14cb29ba0c19b38d50bf6524da = $(`&lt;div id=&quot;html_c48fce14cb29ba0c19b38d50bf6524da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.3783             latitude:41.9228             PM2_5:34.71727019             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d83d33515814ad70eef4c8288701691.setContent(html_c48fce14cb29ba0c19b38d50bf6524da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f9063589a3d606755fe301e133f3dad.bindPopup(popup_4d83d33515814ad70eef4c8288701691)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be98c0e32c1ac64317dd16d4843dae36 = L.circleMarker(\\n\",\n       \"                [33.3947, 120.225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59c30771a652d5fb2d8f2f664593e160 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_532070a64de7999f529f34519b8ddae3 = $(`&lt;div id=&quot;html_532070a64de7999f529f34519b8ddae3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.225             latitude:33.3947             PM2_5:35.74438202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59c30771a652d5fb2d8f2f664593e160.setContent(html_532070a64de7999f529f34519b8ddae3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be98c0e32c1ac64317dd16d4843dae36.bindPopup(popup_59c30771a652d5fb2d8f2f664593e160)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6126782c2d62a0cba9e6bd3116cc2f1b = L.circleMarker(\\n\",\n       \"                [22.96583333, 113.7383333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a3ac3a07cc3d8d5f5afaef780af093c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1495b80eeb556150e6febb81d20d79c0 = $(`&lt;div id=&quot;html_1495b80eeb556150e6febb81d20d79c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7383333             latitude:22.96583333             PM2_5:35.75761773             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a3ac3a07cc3d8d5f5afaef780af093c.setContent(html_1495b80eeb556150e6febb81d20d79c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6126782c2d62a0cba9e6bd3116cc2f1b.bindPopup(popup_4a3ac3a07cc3d8d5f5afaef780af093c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9faaf986da4a912fa8132575654ce7b0 = L.circleMarker(\\n\",\n       \"                [31.8706, 117.259],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6e66c24fc123f0d18cc8543d5a414c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1aae895e0248122c7eeba1a8bbf7a42 = $(`&lt;div id=&quot;html_c1aae895e0248122c7eeba1a8bbf7a42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.259             latitude:31.8706             PM2_5:46.20473538             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6e66c24fc123f0d18cc8543d5a414c9.setContent(html_c1aae895e0248122c7eeba1a8bbf7a42);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9faaf986da4a912fa8132575654ce7b0.bindPopup(popup_c6e66c24fc123f0d18cc8543d5a414c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98e7b698b38cfb03f51421e84938c493 = L.circleMarker(\\n\",\n       \"                [31.03389, 112.1908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0845b69abdcecd19c4bf8449769b2457 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_795655d1f837003f3e9a1d0865368465 = $(`&lt;div id=&quot;html_795655d1f837003f3e9a1d0865368465&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1908             latitude:31.03389             PM2_5:50.85154062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0845b69abdcecd19c4bf8449769b2457.setContent(html_795655d1f837003f3e9a1d0865368465);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98e7b698b38cfb03f51421e84938c493.bindPopup(popup_0845b69abdcecd19c4bf8449769b2457)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f990b4c130b51430a7eaffb1d82a6e8 = L.circleMarker(\\n\",\n       \"                [31.371, 119.794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfe2e38da03156019ba256f48fdd16e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e86ba26073430bb7556b018dbb968e2 = $(`&lt;div id=&quot;html_1e86ba26073430bb7556b018dbb968e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.794             latitude:31.371             PM2_5:48.33333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfe2e38da03156019ba256f48fdd16e3.setContent(html_1e86ba26073430bb7556b018dbb968e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f990b4c130b51430a7eaffb1d82a6e8.bindPopup(popup_bfe2e38da03156019ba256f48fdd16e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a72a7e476d714f9d60bf6a80e9056d64 = L.circleMarker(\\n\",\n       \"                [36.2211, 117.6983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b13bf56bc2233e03095a27f792c0ec5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d25a5d60a5a783debc7ba33061a9946d = $(`&lt;div id=&quot;html_d25a5d60a5a783debc7ba33061a9946d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6983             latitude:36.2211             PM2_5:54.98994253             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b13bf56bc2233e03095a27f792c0ec5.setContent(html_d25a5d60a5a783debc7ba33061a9946d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a72a7e476d714f9d60bf6a80e9056d64.bindPopup(popup_2b13bf56bc2233e03095a27f792c0ec5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f503e37728803fecfa69407333f97611 = L.circleMarker(\\n\",\n       \"                [30.9219, 117.8561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd4b3e60d43b72e6ffb7783e4a006877 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecf8c35db3048ab7454118602e78b41d = $(`&lt;div id=&quot;html_ecf8c35db3048ab7454118602e78b41d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8561             latitude:30.9219             PM2_5:50.87396122             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd4b3e60d43b72e6ffb7783e4a006877.setContent(html_ecf8c35db3048ab7454118602e78b41d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f503e37728803fecfa69407333f97611.bindPopup(popup_bd4b3e60d43b72e6ffb7783e4a006877)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_481114a51cee337ce86052d5bf6f8232 = L.circleMarker(\\n\",\n       \"                [32.0723, 118.778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c687c80ef3b35878dc6f32f2209b6734 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a117f1cd32f95c8ae73908408a605a2e = $(`&lt;div id=&quot;html_a117f1cd32f95c8ae73908408a605a2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.778             latitude:32.0723             PM2_5:42.57244318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c687c80ef3b35878dc6f32f2209b6734.setContent(html_a117f1cd32f95c8ae73908408a605a2e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_481114a51cee337ce86052d5bf6f8232.bindPopup(popup_c687c80ef3b35878dc6f32f2209b6734)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a6d31addc5623b447e5cd2b5824edfc = L.circleMarker(\\n\",\n       \"                [42.2953, 123.8831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee7161dc5d0b009bbc169427623a9b86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23f74d7974f01067318fe61328a20ff6 = $(`&lt;div id=&quot;html_23f74d7974f01067318fe61328a20ff6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8831             latitude:42.2953             PM2_5:30.840625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee7161dc5d0b009bbc169427623a9b86.setContent(html_23f74d7974f01067318fe61328a20ff6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a6d31addc5623b447e5cd2b5824edfc.bindPopup(popup_ee7161dc5d0b009bbc169427623a9b86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67cdaab5d60e85e2f2a7c1fa6288c1f7 = L.circleMarker(\\n\",\n       \"                [34.2911, 117.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98aa89a7319eb769582227a451d75ed5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b33ba30fa0aab3b1d500ebd309571b99 = $(`&lt;div id=&quot;html_b33ba30fa0aab3b1d500ebd309571b99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.244             latitude:34.2911             PM2_5:66.16428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98aa89a7319eb769582227a451d75ed5.setContent(html_b33ba30fa0aab3b1d500ebd309571b99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67cdaab5d60e85e2f2a7c1fa6288c1f7.bindPopup(popup_98aa89a7319eb769582227a451d75ed5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8252711423de573341467db86208d5f0 = L.circleMarker(\\n\",\n       \"                [36.0714, 111.5028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_abf18816750d5356ef2d7396e1e95906 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b6dbaa00c30864882da49a12cf5b2d4 = $(`&lt;div id=&quot;html_1b6dbaa00c30864882da49a12cf5b2d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5028             latitude:36.0714             PM2_5:76.35933148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_abf18816750d5356ef2d7396e1e95906.setContent(html_1b6dbaa00c30864882da49a12cf5b2d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8252711423de573341467db86208d5f0.bindPopup(popup_abf18816750d5356ef2d7396e1e95906)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3521c1e93ff425a4eeb692711296765 = L.circleMarker(\\n\",\n       \"                [30.0506, 103.8986],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b3743f3c461f66cf031cd189e7d26a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_342dd5aebce94101eaf0500698fbe011 = $(`&lt;div id=&quot;html_342dd5aebce94101eaf0500698fbe011&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8986             latitude:30.0506             PM2_5:35.75             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b3743f3c461f66cf031cd189e7d26a6.setContent(html_342dd5aebce94101eaf0500698fbe011);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3521c1e93ff425a4eeb692711296765.bindPopup(popup_9b3743f3c461f66cf031cd189e7d26a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2a911a0b9d22d022d8545730428090a = L.circleMarker(\\n\",\n       \"                [31.1167, 104.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2ad259f8a797862d254de14d57a5e4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d09221b13d8edd1ed23526ec269a0f9 = $(`&lt;div id=&quot;html_3d09221b13d8edd1ed23526ec269a0f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.4053             latitude:31.1167             PM2_5:49.15927978             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2ad259f8a797862d254de14d57a5e4c.setContent(html_3d09221b13d8edd1ed23526ec269a0f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2a911a0b9d22d022d8545730428090a.bindPopup(popup_c2ad259f8a797862d254de14d57a5e4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06db6d74c713a8fc1ac233bf8545102a = L.circleMarker(\\n\",\n       \"                [22.8464, 108.239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c62dc8be25601f55f525c41feb1cd9cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9dc3e5cde6de58b63aeb7fa0072c0ae = $(`&lt;div id=&quot;html_e9dc3e5cde6de58b63aeb7fa0072c0ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.239             latitude:22.8464             PM2_5:32.19683908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c62dc8be25601f55f525c41feb1cd9cf.setContent(html_e9dc3e5cde6de58b63aeb7fa0072c0ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06db6d74c713a8fc1ac233bf8545102a.bindPopup(popup_c62dc8be25601f55f525c41feb1cd9cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d0e441640ab00b1a94a681ea22c838f = L.circleMarker(\\n\",\n       \"                [33.0069, 114.0131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5354395f205b6d1870ec6a649d594a5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37c499d5974fa4c32f1dcf3cda15b0d9 = $(`&lt;div id=&quot;html_37c499d5974fa4c32f1dcf3cda15b0d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0131             latitude:33.0069             PM2_5:55.45224719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5354395f205b6d1870ec6a649d594a5c.setContent(html_37c499d5974fa4c32f1dcf3cda15b0d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d0e441640ab00b1a94a681ea22c838f.bindPopup(popup_5354395f205b6d1870ec6a649d594a5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1292d0d9caa093749ce860f493c836d9 = L.circleMarker(\\n\",\n       \"                [46.8032, 130.3648],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e4f6974ee9d84e490b5966c6bedf1fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d812a7aa8a163fff7127b2163e7f2962 = $(`&lt;div id=&quot;html_d812a7aa8a163fff7127b2163e7f2962&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3648             latitude:46.8032             PM2_5:23.81714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e4f6974ee9d84e490b5966c6bedf1fd.setContent(html_d812a7aa8a163fff7127b2163e7f2962);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1292d0d9caa093749ce860f493c836d9.bindPopup(popup_4e4f6974ee9d84e490b5966c6bedf1fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56b9b43402918df14ec7a017dcea7388 = L.circleMarker(\\n\",\n       \"                [30.8064, 106.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27a58f382231bcfae1780aef87a2553b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f48b1a1afd7db7ff17ddd2268c01c81 = $(`&lt;div id=&quot;html_0f48b1a1afd7db7ff17ddd2268c01c81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.056             latitude:30.8064             PM2_5:41.3079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27a58f382231bcfae1780aef87a2553b.setContent(html_0f48b1a1afd7db7ff17ddd2268c01c81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56b9b43402918df14ec7a017dcea7388.bindPopup(popup_27a58f382231bcfae1780aef87a2553b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec5f6083711a6a40cdc458b60e7c3849 = L.circleMarker(\\n\",\n       \"                [45.6886, 85.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7367266e6f6431d79084123616b60529 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55ba463d8baf29b90c8855b7cd9e4951 = $(`&lt;div id=&quot;html_55ba463d8baf29b90c8855b7cd9e4951&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:85.1186             latitude:45.6886             PM2_5:33.96398892             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7367266e6f6431d79084123616b60529.setContent(html_55ba463d8baf29b90c8855b7cd9e4951);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec5f6083711a6a40cdc458b60e7c3849.bindPopup(popup_7367266e6f6431d79084123616b60529)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8103867bb9320b4d0137766f96b0f70e = L.circleMarker(\\n\",\n       \"                [32.4639, 119.888],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73e9160b4943c66fc5d87b49a4748105 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1568120c82fe60540628ed91db2d4de7 = $(`&lt;div id=&quot;html_1568120c82fe60540628ed91db2d4de7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.888             latitude:32.4639             PM2_5:55.42896936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73e9160b4943c66fc5d87b49a4748105.setContent(html_1568120c82fe60540628ed91db2d4de7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8103867bb9320b4d0137766f96b0f70e.bindPopup(popup_73e9160b4943c66fc5d87b49a4748105)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8d39aab6d8d305596f1673cdb1975d5 = L.circleMarker(\\n\",\n       \"                [27.9119, 112.9074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e12556925c5b936c0b540d41daa6118 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46bfc66bfa6ab7de39e69fcbdfc4b535 = $(`&lt;div id=&quot;html_46bfc66bfa6ab7de39e69fcbdfc4b535&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9074             latitude:27.9119             PM2_5:47.09887006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e12556925c5b936c0b540d41daa6118.setContent(html_46bfc66bfa6ab7de39e69fcbdfc4b535);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8d39aab6d8d305596f1673cdb1975d5.bindPopup(popup_5e12556925c5b936c0b540d41daa6118)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2e32f9ab26e4445defa502295a8613c = L.circleMarker(\\n\",\n       \"                [31.7275, 113.3583],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0eebf5e0544baecfa663b5d0ad2bff62 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_799b8b56113958427caee5cb1fda516d = $(`&lt;div id=&quot;html_799b8b56113958427caee5cb1fda516d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3583             latitude:31.7275             PM2_5:50.34453782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0eebf5e0544baecfa663b5d0ad2bff62.setContent(html_799b8b56113958427caee5cb1fda516d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2e32f9ab26e4445defa502295a8613c.bindPopup(popup_0eebf5e0544baecfa663b5d0ad2bff62)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1166cd84c764daeeeea13201c19764f = L.circleMarker(\\n\",\n       \"                [25.7054, 100.1542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d7e707caa263d4888ab0cae829f00a6f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9b9f839f2787bf21824a02ab7e86deb5 = $(`&lt;div id=&quot;html_9b9f839f2787bf21824a02ab7e86deb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.1542             latitude:25.7054             PM2_5:21.56703911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d7e707caa263d4888ab0cae829f00a6f.setContent(html_9b9f839f2787bf21824a02ab7e86deb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1166cd84c764daeeeea13201c19764f.bindPopup(popup_d7e707caa263d4888ab0cae829f00a6f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9042a53d0000ffedb4cee3d1ba4ea198 = L.circleMarker(\\n\",\n       \"                [36.838, 118.0448],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90c0e00cba16e5d9bae35a34314d5611 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e0774a35c3ff567928e075c749a13c6 = $(`&lt;div id=&quot;html_9e0774a35c3ff567928e075c749a13c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0448             latitude:36.838             PM2_5:53.40947075             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90c0e00cba16e5d9bae35a34314d5611.setContent(html_9e0774a35c3ff567928e075c749a13c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9042a53d0000ffedb4cee3d1ba4ea198.bindPopup(popup_90c0e00cba16e5d9bae35a34314d5611)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d0d4c8d16ecb034cb0b197bb2d691b7c = L.circleMarker(\\n\",\n       \"                [25.7759, 113.0348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6ceac96e5aa5b79915147082d1cfac0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_632e0337ca65c2c16422a3f53c57c2d1 = $(`&lt;div id=&quot;html_632e0337ca65c2c16422a3f53c57c2d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0348             latitude:25.7759             PM2_5:36.1680791             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6ceac96e5aa5b79915147082d1cfac0.setContent(html_632e0337ca65c2c16422a3f53c57c2d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d0d4c8d16ecb034cb0b197bb2d691b7c.bindPopup(popup_f6ceac96e5aa5b79915147082d1cfac0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29ee3f3a80966e33a5784cc01ff5e8ec = L.circleMarker(\\n\",\n       \"                [37.7805, 112.488],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_546331ae5b9f6daa267c4eefe416078b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d3c0c7665d7030db6b953d907f507cb = $(`&lt;div id=&quot;html_2d3c0c7665d7030db6b953d907f507cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.488             latitude:37.7805             PM2_5:67.54843305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_546331ae5b9f6daa267c4eefe416078b.setContent(html_2d3c0c7665d7030db6b953d907f507cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29ee3f3a80966e33a5784cc01ff5e8ec.bindPopup(popup_546331ae5b9f6daa267c4eefe416078b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7858803762355267c35d9233aa337d5 = L.circleMarker(\\n\",\n       \"                [31.0483, 112.2014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_874f0a2e76cdba49b554925261b51f2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae365cf5cf01bf48e01044ac9005e5c3 = $(`&lt;div id=&quot;html_ae365cf5cf01bf48e01044ac9005e5c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2014             latitude:31.0483             PM2_5:56.0724234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_874f0a2e76cdba49b554925261b51f2a.setContent(html_ae365cf5cf01bf48e01044ac9005e5c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7858803762355267c35d9233aa337d5.bindPopup(popup_874f0a2e76cdba49b554925261b51f2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20cc87eda551d44149e4874dc518b80c = L.circleMarker(\\n\",\n       \"                [26.4214, 111.6156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e1c5e05da04bdad484ada0a8404b9d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b317603ac93a64090d9c6b51a73a832 = $(`&lt;div id=&quot;html_3b317603ac93a64090d9c6b51a73a832&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6156             latitude:26.4214             PM2_5:44.47167139             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e1c5e05da04bdad484ada0a8404b9d7.setContent(html_3b317603ac93a64090d9c6b51a73a832);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20cc87eda551d44149e4874dc518b80c.bindPopup(popup_0e1c5e05da04bdad484ada0a8404b9d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7dc0b0e8e564b2ddc36a9d43ed40ca84 = L.circleMarker(\\n\",\n       \"                [38.3228, 116.8709],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7222507b4ed541d2d7ef98c736f6067 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_162afca293d7396eef944359b8f3a08b = $(`&lt;div id=&quot;html_162afca293d7396eef944359b8f3a08b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8709             latitude:38.3228             PM2_5:54.73184358             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7222507b4ed541d2d7ef98c736f6067.setContent(html_162afca293d7396eef944359b8f3a08b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7dc0b0e8e564b2ddc36a9d43ed40ca84.bindPopup(popup_b7222507b4ed541d2d7ef98c736f6067)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac3883a0c6e07432cb02c92187030bd8 = L.circleMarker(\\n\",\n       \"                [23.5739, 116.3594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc062f9e636d2ee3ab79b6c6beab0751 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb39c077a993e8055cdf36854a12b794 = $(`&lt;div id=&quot;html_cb39c077a993e8055cdf36854a12b794&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3594             latitude:23.5739             PM2_5:28.48587571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc062f9e636d2ee3ab79b6c6beab0751.setContent(html_cb39c077a993e8055cdf36854a12b794);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac3883a0c6e07432cb02c92187030bd8.bindPopup(popup_cc062f9e636d2ee3ab79b6c6beab0751)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca32a277d791a1bb89565cf7c16db7fc = L.circleMarker(\\n\",\n       \"                [25.2708, 110.3089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61a63268c0b440d5256ce9e011e6ca77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39218bec7575edb68a8bd389e66e532e = $(`&lt;div id=&quot;html_39218bec7575edb68a8bd389e66e532e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3089             latitude:25.2708             PM2_5:42.62952646             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61a63268c0b440d5256ce9e011e6ca77.setContent(html_39218bec7575edb68a8bd389e66e532e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca32a277d791a1bb89565cf7c16db7fc.bindPopup(popup_61a63268c0b440d5256ce9e011e6ca77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc144ede70d2cc4b8fcf836e8203280a = L.circleMarker(\\n\",\n       \"                [30.4183, 120.301],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_edd3aa275bd5d74d83b700a536960027 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1529729f5bed88a8d4f75f7fb01ceec = $(`&lt;div id=&quot;html_d1529729f5bed88a8d4f75f7fb01ceec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.301             latitude:30.4183             PM2_5:38.71666667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_edd3aa275bd5d74d83b700a536960027.setContent(html_d1529729f5bed88a8d4f75f7fb01ceec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc144ede70d2cc4b8fcf836e8203280a.bindPopup(popup_edd3aa275bd5d74d83b700a536960027)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_515bca0373dcf2dd4b71b03102fbe4dc = L.circleMarker(\\n\",\n       \"                [31.1956, 107.5069],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a73936b5906fa1edf839707a7fb0afe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7789bcb0a43551eccf38d1b874a4dec4 = $(`&lt;div id=&quot;html_7789bcb0a43551eccf38d1b874a4dec4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5069             latitude:31.1956             PM2_5:49.24373259             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a73936b5906fa1edf839707a7fb0afe.setContent(html_7789bcb0a43551eccf38d1b874a4dec4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_515bca0373dcf2dd4b71b03102fbe4dc.bindPopup(popup_9a73936b5906fa1edf839707a7fb0afe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_962f04f8083e91fc0c0be7a217f058bd = L.circleMarker(\\n\",\n       \"                [31.4747, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d5dd013b71e4164357429d88da05ef6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f71c9e705174cb05b1414e83dd009b3d = $(`&lt;div id=&quot;html_f71c9e705174cb05b1414e83dd009b3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:31.4747             PM2_5:44.43398876             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d5dd013b71e4164357429d88da05ef6.setContent(html_f71c9e705174cb05b1414e83dd009b3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_962f04f8083e91fc0c0be7a217f058bd.bindPopup(popup_1d5dd013b71e4164357429d88da05ef6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c4e1a535d6380eabf417910db0990a3d = L.circleMarker(\\n\",\n       \"                [37.5002, 105.1971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f4590647181beca39b6881e0fdf9ede0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_788c6198058cb50ac6bb90a3e83a5db3 = $(`&lt;div id=&quot;html_788c6198058cb50ac6bb90a3e83a5db3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.1971             latitude:37.5002             PM2_5:38.00702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f4590647181beca39b6881e0fdf9ede0.setContent(html_788c6198058cb50ac6bb90a3e83a5db3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c4e1a535d6380eabf417910db0990a3d.bindPopup(popup_f4590647181beca39b6881e0fdf9ede0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b268912e95450b76427538a5f5f5fc41 = L.circleMarker(\\n\",\n       \"                [36.7731, 119.1939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e35f7ea2c2a99a31e92204f0fde45c2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2d86149d1fdad1b33736eb4252a81db = $(`&lt;div id=&quot;html_a2d86149d1fdad1b33736eb4252a81db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1939             latitude:36.7731             PM2_5:44.57843137             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e35f7ea2c2a99a31e92204f0fde45c2c.setContent(html_a2d86149d1fdad1b33736eb4252a81db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b268912e95450b76427538a5f5f5fc41.bindPopup(popup_e35f7ea2c2a99a31e92204f0fde45c2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6ed8178c7ce6a8759b4568c193fa1b5 = L.circleMarker(\\n\",\n       \"                [39.5747, 116.7729],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc550a438b414b29d52e9faf0091dc02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5979bddef2d3d6f9b7b563b73800b192 = $(`&lt;div id=&quot;html_5979bddef2d3d6f9b7b563b73800b192&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7729             latitude:39.5747             PM2_5:42.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc550a438b414b29d52e9faf0091dc02.setContent(html_5979bddef2d3d6f9b7b563b73800b192);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6ed8178c7ce6a8759b4568c193fa1b5.bindPopup(popup_bc550a438b414b29d52e9faf0091dc02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6369125646cbe70196f8643b609d1433 = L.circleMarker(\\n\",\n       \"                [35.4178, 119.4641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2129bb0941e94193d4c4b0932cd349db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a345441461510ed1a723741bb230f9c = $(`&lt;div id=&quot;html_1a345441461510ed1a723741bb230f9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.4641             latitude:35.4178             PM2_5:41.96218487             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2129bb0941e94193d4c4b0932cd349db.setContent(html_1a345441461510ed1a723741bb230f9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6369125646cbe70196f8643b609d1433.bindPopup(popup_2129bb0941e94193d4c4b0932cd349db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9566fa3d3bb5906533f50e2e12457eb3 = L.circleMarker(\\n\",\n       \"                [29.9816, 103.0001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f44d4a6a69b55bff2595e96d738be0e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49e0c986dbaaa42ab42ed77ed96775a6 = $(`&lt;div id=&quot;html_49e0c986dbaaa42ab42ed77ed96775a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0001             latitude:29.9816             PM2_5:48.52539683             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f44d4a6a69b55bff2595e96d738be0e4.setContent(html_49e0c986dbaaa42ab42ed77ed96775a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9566fa3d3bb5906533f50e2e12457eb3.bindPopup(popup_f44d4a6a69b55bff2595e96d738be0e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4911a64838581e4bef5710a4e09139c6 = L.circleMarker(\\n\",\n       \"                [42.8953, 125.1567],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b8dcb03175c9754fae99e7f03626207 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c3798a0d2ff4a6dff68029858e6f5b1 = $(`&lt;div id=&quot;html_2c3798a0d2ff4a6dff68029858e6f5b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1567             latitude:42.8953             PM2_5:33.06657224             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b8dcb03175c9754fae99e7f03626207.setContent(html_2c3798a0d2ff4a6dff68029858e6f5b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4911a64838581e4bef5710a4e09139c6.bindPopup(popup_9b8dcb03175c9754fae99e7f03626207)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c773be9fd7d48e63f31f75a7bf2f131 = L.circleMarker(\\n\",\n       \"                [45.2924, 130.962],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba180f596dc93f4b514445d319d8e449 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d712a5edcc173d88dfd9623cfb0edc3b = $(`&lt;div id=&quot;html_d712a5edcc173d88dfd9623cfb0edc3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.962             latitude:45.2924             PM2_5:22.86111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba180f596dc93f4b514445d319d8e449.setContent(html_d712a5edcc173d88dfd9623cfb0edc3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c773be9fd7d48e63f31f75a7bf2f131.bindPopup(popup_ba180f596dc93f4b514445d319d8e449)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1d351378b4e84b78c65fa484d05b31d = L.circleMarker(\\n\",\n       \"                [35.0992, 117.4518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2676b905a51ac71c750eea4fc296c2e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43464402ac7815188051c71532953b95 = $(`&lt;div id=&quot;html_43464402ac7815188051c71532953b95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4518             latitude:35.0992             PM2_5:49.70762712             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2676b905a51ac71c750eea4fc296c2e5.setContent(html_43464402ac7815188051c71532953b95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1d351378b4e84b78c65fa484d05b31d.bindPopup(popup_2676b905a51ac71c750eea4fc296c2e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eeb2087100de2cb7fd9bcf53b3564c77 = L.circleMarker(\\n\",\n       \"                [23.5538, 113.589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_143ed2d0517d5edd523a68964e6e30a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_481d10520ab5baef6c30058b42f5baef = $(`&lt;div id=&quot;html_481d10520ab5baef6c30058b42f5baef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.589             latitude:23.5538             PM2_5:33.23537604             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_143ed2d0517d5edd523a68964e6e30a9.setContent(html_481d10520ab5baef6c30058b42f5baef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eeb2087100de2cb7fd9bcf53b3564c77.bindPopup(popup_143ed2d0517d5edd523a68964e6e30a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9bd7a19f5515a92fd207d92409555f54 = L.circleMarker(\\n\",\n       \"                [24.441, 98.578],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_95a545bd207e07c769a5c04022737e12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_81e995b73c5318200e29a9a48e3944f9 = $(`&lt;div id=&quot;html_81e995b73c5318200e29a9a48e3944f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.578             latitude:24.441             PM2_5:42.49019608             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_95a545bd207e07c769a5c04022737e12.setContent(html_81e995b73c5318200e29a9a48e3944f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9bd7a19f5515a92fd207d92409555f54.bindPopup(popup_95a545bd207e07c769a5c04022737e12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c1fafb9a25cf38cdd12b4318beb5618 = L.circleMarker(\\n\",\n       \"                [39.1082, 117.237],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84428744707050cf695a1903a5157738 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff6859404bde6059899ded1532712dca = $(`&lt;div id=&quot;html_ff6859404bde6059899ded1532712dca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.237             latitude:39.1082             PM2_5:53.32777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84428744707050cf695a1903a5157738.setContent(html_ff6859404bde6059899ded1532712dca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c1fafb9a25cf38cdd12b4318beb5618.bindPopup(popup_84428744707050cf695a1903a5157738)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f64e094cca37520dc684da7c50d13d6 = L.circleMarker(\\n\",\n       \"                [25.4552, 119.0018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a3de25084a0acf81c66bdc42867009a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35dae06209b7ea72fb569fb8a3d1b3d7 = $(`&lt;div id=&quot;html_35dae06209b7ea72fb569fb8a3d1b3d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0018             latitude:25.4552             PM2_5:31.57983193             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a3de25084a0acf81c66bdc42867009a.setContent(html_35dae06209b7ea72fb569fb8a3d1b3d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f64e094cca37520dc684da7c50d13d6.bindPopup(popup_0a3de25084a0acf81c66bdc42867009a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee86199bb63b4d0d4932eccd4e7ca369 = L.circleMarker(\\n\",\n       \"                [31.317, 119.438],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac200343a21885be95ce11a4b1e1b666 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_660bc2ea600f46917e86280e8926a70c = $(`&lt;div id=&quot;html_660bc2ea600f46917e86280e8926a70c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.438             latitude:31.317             PM2_5:41.8005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac200343a21885be95ce11a4b1e1b666.setContent(html_660bc2ea600f46917e86280e8926a70c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee86199bb63b4d0d4932eccd4e7ca369.bindPopup(popup_ac200343a21885be95ce11a4b1e1b666)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d192943d114498a0c358f373b09d625 = L.circleMarker(\\n\",\n       \"                [47.7222, 128.8736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40c16899a7eec67f50efe44899a329fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f1d390a8b03316fe214f308ba3ba435 = $(`&lt;div id=&quot;html_5f1d390a8b03316fe214f308ba3ba435&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:128.8736             latitude:47.7222             PM2_5:17.74193548             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40c16899a7eec67f50efe44899a329fb.setContent(html_5f1d390a8b03316fe214f308ba3ba435);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d192943d114498a0c358f373b09d625.bindPopup(popup_40c16899a7eec67f50efe44899a329fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de02097b4a3a84d757553f12d9c344c7 = L.circleMarker(\\n\",\n       \"                [38.86388889, 121.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a695807502d31f3b13f1cb01c72747bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83335df2a4bab41e934cea62cfc952af = $(`&lt;div id=&quot;html_83335df2a4bab41e934cea62cfc952af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.625             latitude:38.86388889             PM2_5:25.54366197             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a695807502d31f3b13f1cb01c72747bd.setContent(html_83335df2a4bab41e934cea62cfc952af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de02097b4a3a84d757553f12d9c344c7.bindPopup(popup_a695807502d31f3b13f1cb01c72747bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3682e0c978ceec855cc5cabcdf5ecea = L.circleMarker(\\n\",\n       \"                [40.8369, 111.751],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc7c23fd401698f333d118432afa200b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_469719604f056ff923a00f204fd64841 = $(`&lt;div id=&quot;html_469719604f056ff923a00f204fd64841&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.751             latitude:40.8369             PM2_5:38.55774648             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc7c23fd401698f333d118432afa200b.setContent(html_469719604f056ff923a00f204fd64841);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3682e0c978ceec855cc5cabcdf5ecea.bindPopup(popup_cc7c23fd401698f333d118432afa200b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9609db41084a70ae4bdc8005a6a8ae96 = L.circleMarker(\\n\",\n       \"                [31.3019, 120.591],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79f2640cd79374cb894e7035c714102f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89a26ef42af5d465869793b96e38f5a7 = $(`&lt;div id=&quot;html_89a26ef42af5d465869793b96e38f5a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.591             latitude:31.3019             PM2_5:45.21527778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79f2640cd79374cb894e7035c714102f.setContent(html_89a26ef42af5d465869793b96e38f5a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9609db41084a70ae4bdc8005a6a8ae96.bindPopup(popup_79f2640cd79374cb894e7035c714102f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3474da603c06fb6fb12b60e066932c9d = L.circleMarker(\\n\",\n       \"                [46.6527, 126.9636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f18995376a3416fc4693eb495419140 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee7cae12848d53aeabbff00af9fd2554 = $(`&lt;div id=&quot;html_ee7cae12848d53aeabbff00af9fd2554&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.9636             latitude:46.6527             PM2_5:30.71186441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f18995376a3416fc4693eb495419140.setContent(html_ee7cae12848d53aeabbff00af9fd2554);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3474da603c06fb6fb12b60e066932c9d.bindPopup(popup_7f18995376a3416fc4693eb495419140)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16342aa857f259a154e1862b86ca92dc = L.circleMarker(\\n\",\n       \"                [29.389, 106.513],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f769fa5bf792483253c93f88145e0644 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_977745a2104e5da1d4290bb675f59da0 = $(`&lt;div id=&quot;html_977745a2104e5da1d4290bb675f59da0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.513             latitude:29.389             PM2_5:38.69390582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f769fa5bf792483253c93f88145e0644.setContent(html_977745a2104e5da1d4290bb675f59da0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16342aa857f259a154e1862b86ca92dc.bindPopup(popup_f769fa5bf792483253c93f88145e0644)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d711857a65945f78b0c354f3d9aa748 = L.circleMarker(\\n\",\n       \"                [31.9286, 102.1755],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9c17a71b40bfb5056d42bd7238052ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f9c53f70cadf2384076cecbee3c9e5f = $(`&lt;div id=&quot;html_6f9c53f70cadf2384076cecbee3c9e5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1755             latitude:31.9286             PM2_5:4.474930362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9c17a71b40bfb5056d42bd7238052ce.setContent(html_6f9c53f70cadf2384076cecbee3c9e5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d711857a65945f78b0c354f3d9aa748.bindPopup(popup_f9c17a71b40bfb5056d42bd7238052ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_601479710b7a3fe775915296b072cab7 = L.circleMarker(\\n\",\n       \"                [40.2865, 116.17],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3350f2f0dcd309644a1090b1db1ba315 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c8438fd06e581331c4f64e5fa556235 = $(`&lt;div id=&quot;html_1c8438fd06e581331c4f64e5fa556235&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.17             latitude:40.2865             PM2_5:48.08073654             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3350f2f0dcd309644a1090b1db1ba315.setContent(html_1c8438fd06e581331c4f64e5fa556235);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_601479710b7a3fe775915296b072cab7.bindPopup(popup_3350f2f0dcd309644a1090b1db1ba315)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b11c4e923af99d38c0336858d8c3f017 = L.circleMarker(\\n\",\n       \"                [32.6494, 110.78],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d79b18fac1132cd52b1da549dff3fab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_316160e64e10aaea79aa45e3c7df6735 = $(`&lt;div id=&quot;html_316160e64e10aaea79aa45e3c7df6735&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.78             latitude:32.6494             PM2_5:48.53703704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d79b18fac1132cd52b1da549dff3fab.setContent(html_316160e64e10aaea79aa45e3c7df6735);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b11c4e923af99d38c0336858d8c3f017.bindPopup(popup_2d79b18fac1132cd52b1da549dff3fab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b71ba5d3a28517e0f8210a851487faec = L.circleMarker(\\n\",\n       \"                [39.7294, 98.5023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_021924817ab08c51637cebfa10cd85da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69435a449102850014b204ce742e0bda = $(`&lt;div id=&quot;html_69435a449102850014b204ce742e0bda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5023             latitude:39.7294             PM2_5:34.2994429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_021924817ab08c51637cebfa10cd85da.setContent(html_69435a449102850014b204ce742e0bda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b71ba5d3a28517e0f8210a851487faec.bindPopup(popup_021924817ab08c51637cebfa10cd85da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00f7787e472a9e7f1fa4b56a1cae9001 = L.circleMarker(\\n\",\n       \"                [27.2944, 105.31],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e5491b832fbd2b197e9d02e947f9964 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d3acdc00ec88c91e8fccad42085945c = $(`&lt;div id=&quot;html_8d3acdc00ec88c91e8fccad42085945c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.31             latitude:27.2944             PM2_5:31.77094972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e5491b832fbd2b197e9d02e947f9964.setContent(html_8d3acdc00ec88c91e8fccad42085945c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00f7787e472a9e7f1fa4b56a1cae9001.bindPopup(popup_3e5491b832fbd2b197e9d02e947f9964)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e520b926de60b6a918848891e138a70 = L.circleMarker(\\n\",\n       \"                [21.2706, 110.3539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_324c5fa3748f7c1d6bdf8982c61e2434 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0b77e9dbba456bee2dafaa3929f47ca = $(`&lt;div id=&quot;html_d0b77e9dbba456bee2dafaa3929f47ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3539             latitude:21.2706             PM2_5:25.63165266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_324c5fa3748f7c1d6bdf8982c61e2434.setContent(html_d0b77e9dbba456bee2dafaa3929f47ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e520b926de60b6a918848891e138a70.bindPopup(popup_324c5fa3748f7c1d6bdf8982c61e2434)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3359e3cdaec67c707b54321123685728 = L.circleMarker(\\n\",\n       \"                [23.5292, 116.4094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10acd28643237971fdceeb32b4450725 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7db7df602c642bba875dcf270425aed = $(`&lt;div id=&quot;html_e7db7df602c642bba875dcf270425aed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.4094             latitude:23.5292             PM2_5:32.23882682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10acd28643237971fdceeb32b4450725.setContent(html_e7db7df602c642bba875dcf270425aed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3359e3cdaec67c707b54321123685728.bindPopup(popup_10acd28643237971fdceeb32b4450725)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b091117fe43cd106b62b334e458d178 = L.circleMarker(\\n\",\n       \"                [42.8939, 129.4892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02ad02bff3b1a56a954a69d5da056a49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf3c82aa797816042e119ce7b9e162c6 = $(`&lt;div id=&quot;html_cf3c82aa797816042e119ce7b9e162c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.4892             latitude:42.8939             PM2_5:17.38028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02ad02bff3b1a56a954a69d5da056a49.setContent(html_cf3c82aa797816042e119ce7b9e162c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b091117fe43cd106b62b334e458d178.bindPopup(popup_02ad02bff3b1a56a954a69d5da056a49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b0b6b746b621fc1f2d94f2e639024a3 = L.circleMarker(\\n\",\n       \"                [40.9843, 117.9525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_210fd0e707b012d852074fd7591ba5ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebc2749334c4593a96e680da82961a8e = $(`&lt;div id=&quot;html_ebc2749334c4593a96e680da82961a8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9525             latitude:40.9843             PM2_5:23.03760446             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_210fd0e707b012d852074fd7591ba5ae.setContent(html_ebc2749334c4593a96e680da82961a8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b0b6b746b621fc1f2d94f2e639024a3.bindPopup(popup_210fd0e707b012d852074fd7591ba5ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d0080e4787953007c0f34c79ec5142a = L.circleMarker(\\n\",\n       \"                [32.5, 80.1161],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7353c4a7a06bb357e51f848fdfcd7cf2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a337b5b43ccefb2877fded0587f5ae83 = $(`&lt;div id=&quot;html_a337b5b43ccefb2877fded0587f5ae83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.1161             latitude:32.5             PM2_5:16.11726384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7353c4a7a06bb357e51f848fdfcd7cf2.setContent(html_a337b5b43ccefb2877fded0587f5ae83);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d0080e4787953007c0f34c79ec5142a.bindPopup(popup_7353c4a7a06bb357e51f848fdfcd7cf2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf8a276ae14c3b52fe6ac8b7c808fa3b = L.circleMarker(\\n\",\n       \"                [34.1978, 108.985],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1f61da9eb3fc0bf9f5891bcfaf5080e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf99dff23cfe0a8c7968672db826b50b = $(`&lt;div id=&quot;html_cf99dff23cfe0a8c7968672db826b50b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.985             latitude:34.1978             PM2_5:65.46175637             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1f61da9eb3fc0bf9f5891bcfaf5080e.setContent(html_cf99dff23cfe0a8c7968672db826b50b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf8a276ae14c3b52fe6ac8b7c808fa3b.bindPopup(popup_b1f61da9eb3fc0bf9f5891bcfaf5080e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05f95d7af33c56cc4e714a1f6a919589 = L.circleMarker(\\n\",\n       \"                [36.7019, 119.12],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45bcf6720304606aa46d4bd5d374f124 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b4c425bd74dee3821c451ebda038a85 = $(`&lt;div id=&quot;html_3b4c425bd74dee3821c451ebda038a85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.12             latitude:36.7019             PM2_5:46.91504178             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45bcf6720304606aa46d4bd5d374f124.setContent(html_3b4c425bd74dee3821c451ebda038a85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05f95d7af33c56cc4e714a1f6a919589.bindPopup(popup_45bcf6720304606aa46d4bd5d374f124)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_32f91f1f0e28b3b09464ddd5716adc13 = L.circleMarker(\\n\",\n       \"                [43.8748, 125.3649],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a717ac777c9605f65e4e42f920dcbc0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9726affd0dc9e5db6b43a61852727c5e = $(`&lt;div id=&quot;html_9726affd0dc9e5db6b43a61852727c5e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.3649             latitude:43.8748             PM2_5:29.41114458             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a717ac777c9605f65e4e42f920dcbc0d.setContent(html_9726affd0dc9e5db6b43a61852727c5e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_32f91f1f0e28b3b09464ddd5716adc13.bindPopup(popup_a717ac777c9605f65e4e42f920dcbc0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eddfcc28ed6b8490450702980a02cedf = L.circleMarker(\\n\",\n       \"                [43.6156, 122.3039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28e365094d6bc0d9513b94398222db78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a0cef0d0e6663f7b91ec3359b012001 = $(`&lt;div id=&quot;html_5a0cef0d0e6663f7b91ec3359b012001&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.3039             latitude:43.6156             PM2_5:22.00710227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28e365094d6bc0d9513b94398222db78.setContent(html_5a0cef0d0e6663f7b91ec3359b012001);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eddfcc28ed6b8490450702980a02cedf.bindPopup(popup_28e365094d6bc0d9513b94398222db78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e92819e8e32478a897925f6c05950901 = L.circleMarker(\\n\",\n       \"                [36.5819, 101.834],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ec20937b1e5253f4c90c447de12ee0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0cbe823d36ae3b5ef2256169cf6f8e6 = $(`&lt;div id=&quot;html_e0cbe823d36ae3b5ef2256169cf6f8e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.834             latitude:36.5819             PM2_5:64.51694915             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ec20937b1e5253f4c90c447de12ee0a.setContent(html_e0cbe823d36ae3b5ef2256169cf6f8e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e92819e8e32478a897925f6c05950901.bindPopup(popup_4ec20937b1e5253f4c90c447de12ee0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5aca8c38ee4bb87380d4b6fe916cde8d = L.circleMarker(\\n\",\n       \"                [37.43445, 118.696],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6359a64863ffaf73e37bde61254fbe18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b92ad1df4344ec2466f8f105519ba01b = $(`&lt;div id=&quot;html_b92ad1df4344ec2466f8f105519ba01b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.696             latitude:37.43445             PM2_5:50.83479532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6359a64863ffaf73e37bde61254fbe18.setContent(html_b92ad1df4344ec2466f8f105519ba01b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5aca8c38ee4bb87380d4b6fe916cde8d.bindPopup(popup_6359a64863ffaf73e37bde61254fbe18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c13f739e4fa7225b64429a873a6995a2 = L.circleMarker(\\n\",\n       \"                [29.5822, 105.0406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7620ffe1f59f0bd5cf741918aed18a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7107ee59f2b732fc7ed2f55634a1e43e = $(`&lt;div id=&quot;html_7107ee59f2b732fc7ed2f55634a1e43e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0406             latitude:29.5822             PM2_5:34.67746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7620ffe1f59f0bd5cf741918aed18a1.setContent(html_7107ee59f2b732fc7ed2f55634a1e43e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c13f739e4fa7225b64429a873a6995a2.bindPopup(popup_e7620ffe1f59f0bd5cf741918aed18a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c80b2954ff83021270a6e5677a91b809 = L.circleMarker(\\n\",\n       \"                [25.0311, 117.0151],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19a4510f8acc08269e9c9c0ebefc1e89 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a744b91bfea9cfed208dbf6bc68de379 = $(`&lt;div id=&quot;html_a744b91bfea9cfed208dbf6bc68de379&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0151             latitude:25.0311             PM2_5:21.51805556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19a4510f8acc08269e9c9c0ebefc1e89.setContent(html_a744b91bfea9cfed208dbf6bc68de379);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c80b2954ff83021270a6e5677a91b809.bindPopup(popup_19a4510f8acc08269e9c9c0ebefc1e89)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73327f2afd7566541b0bbaa172c7aa83 = L.circleMarker(\\n\",\n       \"                [34.3739, 107.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d11e404752f977d846a181f119e8a880 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a46669cef4cbabfd6893d2057c61eb8f = $(`&lt;div id=&quot;html_a46669cef4cbabfd6893d2057c61eb8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1186             latitude:34.3739             PM2_5:48.6103352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d11e404752f977d846a181f119e8a880.setContent(html_a46669cef4cbabfd6893d2057c61eb8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73327f2afd7566541b0bbaa172c7aa83.bindPopup(popup_d11e404752f977d846a181f119e8a880)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e6e38890580694dc75f141bb4680f5a = L.circleMarker(\\n\",\n       \"                [37.4514, 105.0197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19507e915d84dab0b6a8e4ad83e5b9c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f34ccfdf1d1433e57d3ce9af8b1c3dc = $(`&lt;div id=&quot;html_9f34ccfdf1d1433e57d3ce9af8b1c3dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0197             latitude:37.4514             PM2_5:32.86182336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19507e915d84dab0b6a8e4ad83e5b9c9.setContent(html_9f34ccfdf1d1433e57d3ce9af8b1c3dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e6e38890580694dc75f141bb4680f5a.bindPopup(popup_19507e915d84dab0b6a8e4ad83e5b9c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75e5c28160de295d1e8d1eaf4949a727 = L.circleMarker(\\n\",\n       \"                [36.6525, 119.1638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_142fd5d9d277b5dc026c22c1d516fcb0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_16137330c40629c5fce68262bb9b5e26 = $(`&lt;div id=&quot;html_16137330c40629c5fce68262bb9b5e26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1638             latitude:36.6525             PM2_5:45.55665722             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_142fd5d9d277b5dc026c22c1d516fcb0.setContent(html_16137330c40629c5fce68262bb9b5e26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75e5c28160de295d1e8d1eaf4949a727.bindPopup(popup_142fd5d9d277b5dc026c22c1d516fcb0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1055987a412212d2c8c00599794d24e = L.circleMarker(\\n\",\n       \"                [31.3839, 118.4022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_930d4b57fe6c9dda98f6f525f72f4927 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a4aeebc102f71e81ac8cf502c4428ad = $(`&lt;div id=&quot;html_6a4aeebc102f71e81ac8cf502c4428ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4022             latitude:31.3839             PM2_5:48.11772853             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_930d4b57fe6c9dda98f6f525f72f4927.setContent(html_6a4aeebc102f71e81ac8cf502c4428ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1055987a412212d2c8c00599794d24e.bindPopup(popup_930d4b57fe6c9dda98f6f525f72f4927)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af0127aa18de8947f62e2f6baeacbd25 = L.circleMarker(\\n\",\n       \"                [34.5021, 109.4266],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0001df50ab11a3f38bc3937cc5ecb9c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74c675ea8dbefb45f09b9309f8b42278 = $(`&lt;div id=&quot;html_74c675ea8dbefb45f09b9309f8b42278&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4266             latitude:34.5021             PM2_5:61.24373259             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0001df50ab11a3f38bc3937cc5ecb9c0.setContent(html_74c675ea8dbefb45f09b9309f8b42278);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af0127aa18de8947f62e2f6baeacbd25.bindPopup(popup_0001df50ab11a3f38bc3937cc5ecb9c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f66928d23a52952016b16a57914de69 = L.circleMarker(\\n\",\n       \"                [31.7386, 117.278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f4293e4e24229138bb274730a93d5db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd30e6ced63aca8a707d24937242aa54 = $(`&lt;div id=&quot;html_dd30e6ced63aca8a707d24937242aa54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.278             latitude:31.7386             PM2_5:49.27824859             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f4293e4e24229138bb274730a93d5db.setContent(html_dd30e6ced63aca8a707d24937242aa54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f66928d23a52952016b16a57914de69.bindPopup(popup_5f4293e4e24229138bb274730a93d5db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9c38362fdf7fe3fedd1dddd37932b16 = L.circleMarker(\\n\",\n       \"                [26.9258, 112.6194],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac1852af27888f9b928a37c911fdd0e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69b7177ef21dc0107ede92eec55b03f1 = $(`&lt;div id=&quot;html_69b7177ef21dc0107ede92eec55b03f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6194             latitude:26.9258             PM2_5:41.8531856             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac1852af27888f9b928a37c911fdd0e1.setContent(html_69b7177ef21dc0107ede92eec55b03f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9c38362fdf7fe3fedd1dddd37932b16.bindPopup(popup_ac1852af27888f9b928a37c911fdd0e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7bc116353b951ae60a6e6a434354b4f = L.circleMarker(\\n\",\n       \"                [36.0464, 103.831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba0613135b5159d5d6bf4cbe4e234787 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7bff7a7f9e13127459387bea533410ee = $(`&lt;div id=&quot;html_7bff7a7f9e13127459387bea533410ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.831             latitude:36.0464             PM2_5:55.54131054             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba0613135b5159d5d6bf4cbe4e234787.setContent(html_7bff7a7f9e13127459387bea533410ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7bc116353b951ae60a6e6a434354b4f.bindPopup(popup_ba0613135b5159d5d6bf4cbe4e234787)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ceb89f17d0f77395d55bc4d3964dae8f = L.circleMarker(\\n\",\n       \"                [26.6607, 119.5202],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_987c76d98d3b2bf275c6f225b39ba19f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0dc49821ce09b1bba540e6943094e647 = $(`&lt;div id=&quot;html_0dc49821ce09b1bba540e6943094e647&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5202             latitude:26.6607             PM2_5:32.12569832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_987c76d98d3b2bf275c6f225b39ba19f.setContent(html_0dc49821ce09b1bba540e6943094e647);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ceb89f17d0f77395d55bc4d3964dae8f.bindPopup(popup_987c76d98d3b2bf275c6f225b39ba19f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc3c8d782495687d44430984dc02376a = L.circleMarker(\\n\",\n       \"                [27.8403, 112.9118],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27942343a61b9c7ddaa35462e504c01c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e83ca90746281f295b4cc94eb726e7d = $(`&lt;div id=&quot;html_8e83ca90746281f295b4cc94eb726e7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9118             latitude:27.8403             PM2_5:48.11731844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27942343a61b9c7ddaa35462e504c01c.setContent(html_8e83ca90746281f295b4cc94eb726e7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc3c8d782495687d44430984dc02376a.bindPopup(popup_27942343a61b9c7ddaa35462e504c01c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1a2ee7ffe3c76df97a90f17f618d5c7 = L.circleMarker(\\n\",\n       \"                [35.7306, 114.2878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c4bfcfc4f5574f6c33db1fceb204af9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_962fdf25d60a227cc0e5231c917cd070 = $(`&lt;div id=&quot;html_962fdf25d60a227cc0e5231c917cd070&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2878             latitude:35.7306             PM2_5:52.82686981             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c4bfcfc4f5574f6c33db1fceb204af9.setContent(html_962fdf25d60a227cc0e5231c917cd070);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1a2ee7ffe3c76df97a90f17f618d5c7.bindPopup(popup_2c4bfcfc4f5574f6c33db1fceb204af9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0eec9b9dd8e24a80e66a787a102dd5e6 = L.circleMarker(\\n\",\n       \"                [34.6258, 112.4275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_816e7f1dad75acd744dee07a2141cdbd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9eb7fced9a5ded8e07bf7f53219c3776 = $(`&lt;div id=&quot;html_9eb7fced9a5ded8e07bf7f53219c3776&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4275             latitude:34.6258             PM2_5:63.49719888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_816e7f1dad75acd744dee07a2141cdbd.setContent(html_9eb7fced9a5ded8e07bf7f53219c3776);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0eec9b9dd8e24a80e66a787a102dd5e6.bindPopup(popup_816e7f1dad75acd744dee07a2141cdbd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e5a93c554e3893f09e465b29e7dd75a = L.circleMarker(\\n\",\n       \"                [35.767, 115.0772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e900004877fc87f290e250cf6fc2f16 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cdded257e4b0c140448e767bf33c1751 = $(`&lt;div id=&quot;html_cdded257e4b0c140448e767bf33c1751&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0772             latitude:35.767             PM2_5:57.44803371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e900004877fc87f290e250cf6fc2f16.setContent(html_cdded257e4b0c140448e767bf33c1751);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e5a93c554e3893f09e465b29e7dd75a.bindPopup(popup_4e900004877fc87f290e250cf6fc2f16)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39badd50d3c7e1444b9087faa382a7ca = L.circleMarker(\\n\",\n       \"                [22.5545, 114.1063],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4c2ea22597b6cf46d26190ace613e94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b49c2f681c933c56ab89f39d51ffffe = $(`&lt;div id=&quot;html_4b49c2f681c933c56ab89f39d51ffffe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1063             latitude:22.5545             PM2_5:27.20926966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4c2ea22597b6cf46d26190ace613e94.setContent(html_4b49c2f681c933c56ab89f39d51ffffe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39badd50d3c7e1444b9087faa382a7ca.bindPopup(popup_d4c2ea22597b6cf46d26190ace613e94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_618e06336873964804e000b67f5f4ea8 = L.circleMarker(\\n\",\n       \"                [32.9917, 112.5192],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67b8f1cde6bcabaec49572ca431e65ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1d412a40dd11317448ac56ac6414c9d = $(`&lt;div id=&quot;html_c1d412a40dd11317448ac56ac6414c9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5192             latitude:32.9917             PM2_5:62.29189944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67b8f1cde6bcabaec49572ca431e65ce.setContent(html_c1d412a40dd11317448ac56ac6414c9d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_618e06336873964804e000b67f5f4ea8.bindPopup(popup_67b8f1cde6bcabaec49572ca431e65ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b4f658eb85562eea4d88420c2897a24 = L.circleMarker(\\n\",\n       \"                [23.3993, 103.3772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0ef389bf27db506a0c249e8420608ed3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_129fb2f287004bc74a8d1f88e4ff7709 = $(`&lt;div id=&quot;html_129fb2f287004bc74a8d1f88e4ff7709&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.3772             latitude:23.3993             PM2_5:26.65198864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0ef389bf27db506a0c249e8420608ed3.setContent(html_129fb2f287004bc74a8d1f88e4ff7709);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b4f658eb85562eea4d88420c2897a24.bindPopup(popup_0ef389bf27db506a0c249e8420608ed3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_112085badde3f8802d5e0b58a1e5b47d = L.circleMarker(\\n\",\n       \"                [23.2775, 116.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_718d3c94eb9763a85ab2ba315b5f2929 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da84d07b2803a1ed782f227493e33b12 = $(`&lt;div id=&quot;html_da84d07b2803a1ed782f227493e33b12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7258             latitude:23.2775             PM2_5:21.45567867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_718d3c94eb9763a85ab2ba315b5f2929.setContent(html_da84d07b2803a1ed782f227493e33b12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_112085badde3f8802d5e0b58a1e5b47d.bindPopup(popup_718d3c94eb9763a85ab2ba315b5f2929)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d17ad9badef6a114a85b6e56f7fa5c1 = L.circleMarker(\\n\",\n       \"                [39.8129, 110.0023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eebc9e5d89e7d7a570a10b015e114f04 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59d3537f51a66e1deb20e16dd6aa780f = $(`&lt;div id=&quot;html_59d3537f51a66e1deb20e16dd6aa780f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0023             latitude:39.8129             PM2_5:27.22957746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eebc9e5d89e7d7a570a10b015e114f04.setContent(html_59d3537f51a66e1deb20e16dd6aa780f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d17ad9badef6a114a85b6e56f7fa5c1.bindPopup(popup_eebc9e5d89e7d7a570a10b015e114f04)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_371651421b352466cd3115bf9d0982fa = L.circleMarker(\\n\",\n       \"                [23.0916, 113.348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_972650c18df40236d93842b955e4b445 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3e567db81d5049ba6785c5c6b8424d3 = $(`&lt;div id=&quot;html_a3e567db81d5049ba6785c5c6b8424d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.348             latitude:23.0916             PM2_5:31.47632312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_972650c18df40236d93842b955e4b445.setContent(html_a3e567db81d5049ba6785c5c6b8424d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_371651421b352466cd3115bf9d0982fa.bindPopup(popup_972650c18df40236d93842b955e4b445)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ca090000df9ad96050eac4876ed83f2 = L.circleMarker(\\n\",\n       \"                [24.8885, 102.821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b39ea6f674997ed7bed39d1025345a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a88daae9e313af71eaf291a681fad334 = $(`&lt;div id=&quot;html_a88daae9e313af71eaf291a681fad334&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.821             latitude:24.8885             PM2_5:22.06388889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b39ea6f674997ed7bed39d1025345a4.setContent(html_a88daae9e313af71eaf291a681fad334);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ca090000df9ad96050eac4876ed83f2.bindPopup(popup_6b39ea6f674997ed7bed39d1025345a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6eb7dc45e75126b538ad60e4966c931 = L.circleMarker(\\n\",\n       \"                [47.203, 123.6261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0255b157645fb7554955636eb64daf0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a239f63672edf88afcea17af10e84d77 = $(`&lt;div id=&quot;html_a239f63672edf88afcea17af10e84d77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.6261             latitude:47.203             PM2_5:26.81497175             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0255b157645fb7554955636eb64daf0.setContent(html_a239f63672edf88afcea17af10e84d77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6eb7dc45e75126b538ad60e4966c931.bindPopup(popup_a0255b157645fb7554955636eb64daf0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a369f3599b16e5bcf887c7e0718129ac = L.circleMarker(\\n\",\n       \"                [34.3731, 109.2186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d7bb49832f791522a954aecbaefcdade = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a35020cfec8953634389b52659c279a9 = $(`&lt;div id=&quot;html_a35020cfec8953634389b52659c279a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2186             latitude:34.3731             PM2_5:59.05270655             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d7bb49832f791522a954aecbaefcdade.setContent(html_a35020cfec8953634389b52659c279a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a369f3599b16e5bcf887c7e0718129ac.bindPopup(popup_d7bb49832f791522a954aecbaefcdade)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe88fe48774b96284986d49ce7226db0 = L.circleMarker(\\n\",\n       \"                [40.5905, 110.0067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3567e240ef2f6328d973538f86560823 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6eddc0b406a829c74cebd670b06f076f = $(`&lt;div id=&quot;html_6eddc0b406a829c74cebd670b06f076f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0067             latitude:40.5905             PM2_5:45.84818942             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3567e240ef2f6328d973538f86560823.setContent(html_6eddc0b406a829c74cebd670b06f076f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe88fe48774b96284986d49ce7226db0.bindPopup(popup_3567e240ef2f6328d973538f86560823)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca00e068e8854942f80303bfa3a7def6 = L.circleMarker(\\n\",\n       \"                [37.3753, 97.3731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35fff9511e2e0157f1648c4a05dd08bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6da94a2351b708e77c068d5f1d20004c = $(`&lt;div id=&quot;html_6da94a2351b708e77c068d5f1d20004c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.3731             latitude:37.3753             PM2_5:28.27777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35fff9511e2e0157f1648c4a05dd08bc.setContent(html_6da94a2351b708e77c068d5f1d20004c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca00e068e8854942f80303bfa3a7def6.bindPopup(popup_35fff9511e2e0157f1648c4a05dd08bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ada8e3641045b0620d0d8493ec49681b = L.circleMarker(\\n\",\n       \"                [28.6047, 112.3347],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df060a74f11b05edd8a40816bb115efe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c572b9b8826102fc112aea3541a4c33 = $(`&lt;div id=&quot;html_1c572b9b8826102fc112aea3541a4c33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3347             latitude:28.6047             PM2_5:29.37283237             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df060a74f11b05edd8a40816bb115efe.setContent(html_1c572b9b8826102fc112aea3541a4c33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ada8e3641045b0620d0d8493ec49681b.bindPopup(popup_df060a74f11b05edd8a40816bb115efe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_125addf4ce8fd2331f6213e964ec84ab = L.circleMarker(\\n\",\n       \"                [31.0935, 120.978],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83125b2102936f57ef072c014b8c81da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d2645017828b4fb3152153ea4e441b8 = $(`&lt;div id=&quot;html_0d2645017828b4fb3152153ea4e441b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.978             latitude:31.0935             PM2_5:48.90921788             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83125b2102936f57ef072c014b8c81da.setContent(html_0d2645017828b4fb3152153ea4e441b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_125addf4ce8fd2331f6213e964ec84ab.bindPopup(popup_83125b2102936f57ef072c014b8c81da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a6a0d4979e1296b426ecc7502e5f851 = L.circleMarker(\\n\",\n       \"                [38.49494, 106.1024],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8105169d5be3d93fd9c5a169696a804d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b57877ba6c6f43c0c82810033ed0156 = $(`&lt;div id=&quot;html_2b57877ba6c6f43c0c82810033ed0156&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1024             latitude:38.49494             PM2_5:53.02661064             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8105169d5be3d93fd9c5a169696a804d.setContent(html_2b57877ba6c6f43c0c82810033ed0156);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a6a0d4979e1296b426ecc7502e5f851.bindPopup(popup_8105169d5be3d93fd9c5a169696a804d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4cb9c6724586c60ba00978acae8e0311 = L.circleMarker(\\n\",\n       \"                [37.062, 114.4854],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bee2a6bf675204147d16eaef6e99c70 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9b55da3d1ecaf61ff6c7ba929af1df6 = $(`&lt;div id=&quot;html_a9b55da3d1ecaf61ff6c7ba929af1df6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4854             latitude:37.062             PM2_5:68.37955182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bee2a6bf675204147d16eaef6e99c70.setContent(html_a9b55da3d1ecaf61ff6c7ba929af1df6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4cb9c6724586c60ba00978acae8e0311.bindPopup(popup_5bee2a6bf675204147d16eaef6e99c70)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22af5f33523c178962060ccc729feeb0 = L.circleMarker(\\n\",\n       \"                [36.6114, 116.988],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1aca284cf5577e35004e4158f63508a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8986c06fdec4ab4acd7fe9974c7b0a8f = $(`&lt;div id=&quot;html_8986c06fdec4ab4acd7fe9974c7b0a8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.988             latitude:36.6114             PM2_5:53.2592068             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1aca284cf5577e35004e4158f63508a6.setContent(html_8986c06fdec4ab4acd7fe9974c7b0a8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22af5f33523c178962060ccc729feeb0.bindPopup(popup_1aca284cf5577e35004e4158f63508a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90c9779ba859bbdb184d51b0ad7cff3d = L.circleMarker(\\n\",\n       \"                [36.865, 120.537],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f82af9fc13a34309960e47589b2956a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10b66ace172155a2a495305fd47688de = $(`&lt;div id=&quot;html_10b66ace172155a2a495305fd47688de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.537             latitude:36.865             PM2_5:33.85582822             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f82af9fc13a34309960e47589b2956a7.setContent(html_10b66ace172155a2a495305fd47688de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90c9779ba859bbdb184d51b0ad7cff3d.bindPopup(popup_f82af9fc13a34309960e47589b2956a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf1718c82b9c49dad5f71809ef7710fe = L.circleMarker(\\n\",\n       \"                [44.5952, 129.5902],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0f14824c2734a84cabb7545522e1836 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d37646db01a44589516ecc295aabac3 = $(`&lt;div id=&quot;html_7d37646db01a44589516ecc295aabac3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.5902             latitude:44.5952             PM2_5:22.29411765             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0f14824c2734a84cabb7545522e1836.setContent(html_7d37646db01a44589516ecc295aabac3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf1718c82b9c49dad5f71809ef7710fe.bindPopup(popup_d0f14824c2734a84cabb7545522e1836)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c2e10f1baf852ad5749272d92b4c320 = L.circleMarker(\\n\",\n       \"                [29.1389, 110.48],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f9dddbf6d6ed3db4f3f7e38f67cc0f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_195df0f9bb027082796395cd116c3a6b = $(`&lt;div id=&quot;html_195df0f9bb027082796395cd116c3a6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.48             latitude:29.1389             PM2_5:45.04469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f9dddbf6d6ed3db4f3f7e38f67cc0f7.setContent(html_195df0f9bb027082796395cd116c3a6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c2e10f1baf852ad5749272d92b4c320.bindPopup(popup_3f9dddbf6d6ed3db4f3f7e38f67cc0f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aadb81f6927b30ea3894bd0f31210fd1 = L.circleMarker(\\n\",\n       \"                [27.7231, 109.1794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff64965501369b25e3f5a7256771ab2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_561e0e489cbecd38a3d21d6e4e5431d9 = $(`&lt;div id=&quot;html_561e0e489cbecd38a3d21d6e4e5431d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.1794             latitude:27.7231             PM2_5:29.31284916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff64965501369b25e3f5a7256771ab2d.setContent(html_561e0e489cbecd38a3d21d6e4e5431d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aadb81f6927b30ea3894bd0f31210fd1.bindPopup(popup_ff64965501369b25e3f5a7256771ab2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7da61be4e1efb3fc563b407f979b89bb = L.circleMarker(\\n\",\n       \"                [25.0925, 104.9022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac3a8f91db2f010f2abb88ef15c49d77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_048cacb200bd46bbdec92821ca9514ad = $(`&lt;div id=&quot;html_048cacb200bd46bbdec92821ca9514ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9022             latitude:25.0925             PM2_5:16.9625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac3a8f91db2f010f2abb88ef15c49d77.setContent(html_048cacb200bd46bbdec92821ca9514ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7da61be4e1efb3fc563b407f979b89bb.bindPopup(popup_ac3a8f91db2f010f2abb88ef15c49d77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_205d00d58568bdf2ed759f0164bbcd5b = L.circleMarker(\\n\",\n       \"                [29.5817, 105.0653],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85679fdbc7ef30b006963753a57fd46a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3256bda652447f2a83c3c373b53bc1f8 = $(`&lt;div id=&quot;html_3256bda652447f2a83c3c373b53bc1f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0653             latitude:29.5817             PM2_5:37.25698324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85679fdbc7ef30b006963753a57fd46a.setContent(html_3256bda652447f2a83c3c373b53bc1f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_205d00d58568bdf2ed759f0164bbcd5b.bindPopup(popup_85679fdbc7ef30b006963753a57fd46a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0cdf1e0fbb3bce13a86f219d318cf954 = L.circleMarker(\\n\",\n       \"                [26.3003, 106.805],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c68dea37abc09e96a4ab00fee5c37d0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83ef8597791e6fc9061b8180d895f34e = $(`&lt;div id=&quot;html_83ef8597791e6fc9061b8180d895f34e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.805             latitude:26.3003             PM2_5:34.97844828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c68dea37abc09e96a4ab00fee5c37d0f.setContent(html_83ef8597791e6fc9061b8180d895f34e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0cdf1e0fbb3bce13a86f219d318cf954.bindPopup(popup_c68dea37abc09e96a4ab00fee5c37d0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_225207cf33fb4046554ab13bb9f38ff6 = L.circleMarker(\\n\",\n       \"                [31.8766, 117.307],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_055a68ddf722e8e978145ea966e2758a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27a818a0022fd824fd06499acb331a8c = $(`&lt;div id=&quot;html_27a818a0022fd824fd06499acb331a8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.307             latitude:31.8766             PM2_5:51.31754875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_055a68ddf722e8e978145ea966e2758a.setContent(html_27a818a0022fd824fd06499acb331a8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_225207cf33fb4046554ab13bb9f38ff6.bindPopup(popup_055a68ddf722e8e978145ea966e2758a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ba161fbece7283f26030dfcc85cb9d6 = L.circleMarker(\\n\",\n       \"                [42.8328, 93.4961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_489e9500aba0efc53579aab0af2ab27d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b33109048da8c807514f1716fe0bdf8 = $(`&lt;div id=&quot;html_6b33109048da8c807514f1716fe0bdf8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:93.4961             latitude:42.8328             PM2_5:32.6103352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_489e9500aba0efc53579aab0af2ab27d.setContent(html_6b33109048da8c807514f1716fe0bdf8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ba161fbece7283f26030dfcc85cb9d6.bindPopup(popup_489e9500aba0efc53579aab0af2ab27d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_341776127756fe6f13a4beb2b9a6ad3e = L.circleMarker(\\n\",\n       \"                [23.475, 111.3178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84c97f1eea02cc401a22f499d15f227d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78e68e6689df2c7f5894703dae59048f = $(`&lt;div id=&quot;html_78e68e6689df2c7f5894703dae59048f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3178             latitude:23.475             PM2_5:36.53910615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84c97f1eea02cc401a22f499d15f227d.setContent(html_78e68e6689df2c7f5894703dae59048f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_341776127756fe6f13a4beb2b9a6ad3e.bindPopup(popup_84c97f1eea02cc401a22f499d15f227d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e21d7e8a22b59612577c9203e66e213 = L.circleMarker(\\n\",\n       \"                [36.8088, 118.0482],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9976dd19e9b279627a122d1bced771a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7142cf54386d410ec27bb99adb96773 = $(`&lt;div id=&quot;html_d7142cf54386d410ec27bb99adb96773&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0482             latitude:36.8088             PM2_5:53.3245614             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9976dd19e9b279627a122d1bced771a3.setContent(html_d7142cf54386d410ec27bb99adb96773);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e21d7e8a22b59612577c9203e66e213.bindPopup(popup_9976dd19e9b279627a122d1bced771a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8388b5a2e115b5a601e48d5818023cb3 = L.circleMarker(\\n\",\n       \"                [23.105, 113.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cdec578551af7610fdd991bd5e72c136 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12e6b651248bc19a0fb37a30ef65b333 = $(`&lt;div id=&quot;html_12e6b651248bc19a0fb37a30ef65b333&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.261             latitude:23.105             PM2_5:35.15502793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cdec578551af7610fdd991bd5e72c136.setContent(html_12e6b651248bc19a0fb37a30ef65b333);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8388b5a2e115b5a601e48d5818023cb3.bindPopup(popup_cdec578551af7610fdd991bd5e72c136)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0638169e693fd9483d3408c6515ffee = L.circleMarker(\\n\",\n       \"                [26.8956, 112.6211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b5ffdd9d09a02c43763dd1822b8c514 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40b7e5579fed2b94273056321f646687 = $(`&lt;div id=&quot;html_40b7e5579fed2b94273056321f646687&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6211             latitude:26.8956             PM2_5:41.88227147             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b5ffdd9d09a02c43763dd1822b8c514.setContent(html_40b7e5579fed2b94273056321f646687);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0638169e693fd9483d3408c6515ffee.bindPopup(popup_2b5ffdd9d09a02c43763dd1822b8c514)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c18c2aae984ba105c6cc646971174c03 = L.circleMarker(\\n\",\n       \"                [28.19, 112.9394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0561e671db03544ff923fdd2c9b63110 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4441d8ff4902de7df401aa40ec8af8f8 = $(`&lt;div id=&quot;html_4441d8ff4902de7df401aa40ec8af8f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9394             latitude:28.19             PM2_5:52.06601124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0561e671db03544ff923fdd2c9b63110.setContent(html_4441d8ff4902de7df401aa40ec8af8f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c18c2aae984ba105c6cc646971174c03.bindPopup(popup_0561e671db03544ff923fdd2c9b63110)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4850688b7db8c77e25852d6572b6ae0e = L.circleMarker(\\n\",\n       \"                [47.2988, 123.945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9988f51e50c341ed582a5a05a86f1b6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5ac7da72133faffe4cecfa1fd2606f6 = $(`&lt;div id=&quot;html_b5ac7da72133faffe4cecfa1fd2606f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.945             latitude:47.2988             PM2_5:34.6183844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9988f51e50c341ed582a5a05a86f1b6c.setContent(html_b5ac7da72133faffe4cecfa1fd2606f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4850688b7db8c77e25852d6572b6ae0e.bindPopup(popup_9988f51e50c341ed582a5a05a86f1b6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1b03bf3b77af6335d3cd12fa8df6dd8 = L.circleMarker(\\n\",\n       \"                [29.6535, 116.0174],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a82d9b44c68df606d99811b5e54f772f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_516edafd29412d148d55adec13498ebe = $(`&lt;div id=&quot;html_516edafd29412d148d55adec13498ebe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0174             latitude:29.6535             PM2_5:37.94428969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a82d9b44c68df606d99811b5e54f772f.setContent(html_516edafd29412d148d55adec13498ebe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1b03bf3b77af6335d3cd12fa8df6dd8.bindPopup(popup_a82d9b44c68df606d99811b5e54f772f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8534f17d2ad8de0db76bef3fdad4d960 = L.circleMarker(\\n\",\n       \"                [30.9697, 117.8472],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40746b6bf5cf575bfa78ec82d3735f18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9dc1ae551ad1c952242022960d26c6f = $(`&lt;div id=&quot;html_a9dc1ae551ad1c952242022960d26c6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8472             latitude:30.9697             PM2_5:53.95621469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40746b6bf5cf575bfa78ec82d3735f18.setContent(html_a9dc1ae551ad1c952242022960d26c6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8534f17d2ad8de0db76bef3fdad4d960.bindPopup(popup_40746b6bf5cf575bfa78ec82d3735f18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c165b196d3e22aebefbf7a4dc2b18681 = L.circleMarker(\\n\",\n       \"                [34.3622, 107.2386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17a93ca5b8116378fcc73ef4f0a7abc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f875a1f24d02b4cdea75614638df67a = $(`&lt;div id=&quot;html_1f875a1f24d02b4cdea75614638df67a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.2386             latitude:34.3622             PM2_5:50.03760446             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17a93ca5b8116378fcc73ef4f0a7abc4.setContent(html_1f875a1f24d02b4cdea75614638df67a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c165b196d3e22aebefbf7a4dc2b18681.bindPopup(popup_17a93ca5b8116378fcc73ef4f0a7abc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_53b74bbf86b2c6ce61fdbc8afc08ef71 = L.circleMarker(\\n\",\n       \"                [30.2747, 120.063],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e017f7981cdfcbdc45295a8cd4035ec0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab6b3bd3c07fffd18433f7e0f426bebe = $(`&lt;div id=&quot;html_ab6b3bd3c07fffd18433f7e0f426bebe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.063             latitude:30.2747             PM2_5:37.63788301             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e017f7981cdfcbdc45295a8cd4035ec0.setContent(html_ab6b3bd3c07fffd18433f7e0f426bebe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_53b74bbf86b2c6ce61fdbc8afc08ef71.bindPopup(popup_e017f7981cdfcbdc45295a8cd4035ec0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_590c62280a23ca9dc98d4dd803ff5f9b = L.circleMarker(\\n\",\n       \"                [30.2756, 118.1371],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4491b0de724e7802f899669712edc982 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9cb84335ab8ead25f6f154c21771cdb = $(`&lt;div id=&quot;html_f9cb84335ab8ead25f6f154c21771cdb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1371             latitude:30.2756             PM2_5:23.8575419             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4491b0de724e7802f899669712edc982.setContent(html_f9cb84335ab8ead25f6f154c21771cdb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_590c62280a23ca9dc98d4dd803ff5f9b.bindPopup(popup_4491b0de724e7802f899669712edc982)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bffe6d2e6805eb09d2cbecdc98c1b45b = L.circleMarker(\\n\",\n       \"                [33.627, 119.0122],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e063b6ec0de07805c9830b8030fef6c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ceed60216437279bfc302940b01a4bb8 = $(`&lt;div id=&quot;html_ceed60216437279bfc302940b01a4bb8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0122             latitude:33.627             PM2_5:49.44707521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e063b6ec0de07805c9830b8030fef6c3.setContent(html_ceed60216437279bfc302940b01a4bb8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bffe6d2e6805eb09d2cbecdc98c1b45b.bindPopup(popup_e063b6ec0de07805c9830b8030fef6c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7c6e58798001d49ceda6d34b9c2309d = L.circleMarker(\\n\",\n       \"                [23.1617, 112.565],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f353c98ab0f402165568247af808d22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98b09ba3bdc87033d523c4d5579e45d3 = $(`&lt;div id=&quot;html_98b09ba3bdc87033d523c4d5579e45d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.565             latitude:23.1617             PM2_5:39.39495798             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f353c98ab0f402165568247af808d22.setContent(html_98b09ba3bdc87033d523c4d5579e45d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7c6e58798001d49ceda6d34b9c2309d.bindPopup(popup_0f353c98ab0f402165568247af808d22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96fc3730cc7046752d306f90270adbaa = L.circleMarker(\\n\",\n       \"                [37.374, 120.399],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc521386acb927d10385072f211a1d74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6fd7599834064832ee213143f9fe7f80 = $(`&lt;div id=&quot;html_6fd7599834064832ee213143f9fe7f80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.399             latitude:37.374             PM2_5:28.94929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc521386acb927d10385072f211a1d74.setContent(html_6fd7599834064832ee213143f9fe7f80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96fc3730cc7046752d306f90270adbaa.bindPopup(popup_dc521386acb927d10385072f211a1d74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0da8caf21790e3f7afbe62ce9c17ca9 = L.circleMarker(\\n\",\n       \"                [40.1097, 113.3819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc17f94c432b857d39d45965f0c3658d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86e81d54b1a7ffa97c25a66a7cef41d3 = $(`&lt;div id=&quot;html_86e81d54b1a7ffa97c25a66a7cef41d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3819             latitude:40.1097             PM2_5:39.15384615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc17f94c432b857d39d45965f0c3658d.setContent(html_86e81d54b1a7ffa97c25a66a7cef41d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0da8caf21790e3f7afbe62ce9c17ca9.bindPopup(popup_fc17f94c432b857d39d45965f0c3658d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ca8d7be3c87a7e1b3172699f8f07822 = L.circleMarker(\\n\",\n       \"                [43.6801, 122.2532],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05c0bd2fcd66655b4060aba1c3693f53 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_63ea58697a05a6d36e78b8b4a8592b62 = $(`&lt;div id=&quot;html_63ea58697a05a6d36e78b8b4a8592b62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2532             latitude:43.6801             PM2_5:20.17887324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05c0bd2fcd66655b4060aba1c3693f53.setContent(html_63ea58697a05a6d36e78b8b4a8592b62);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ca8d7be3c87a7e1b3172699f8f07822.bindPopup(popup_05c0bd2fcd66655b4060aba1c3693f53)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3b4bd8b2996b4a039f6af2793bc2240 = L.circleMarker(\\n\",\n       \"                [28.6428, 112.4067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_451fd4fe7b0eca3765bbf6173f4c21f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cad7e15e996fde244140e25bf0322cbc = $(`&lt;div id=&quot;html_cad7e15e996fde244140e25bf0322cbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4067             latitude:28.6428             PM2_5:41.83333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_451fd4fe7b0eca3765bbf6173f4c21f2.setContent(html_cad7e15e996fde244140e25bf0322cbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3b4bd8b2996b4a039f6af2793bc2240.bindPopup(popup_451fd4fe7b0eca3765bbf6173f4c21f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15ff8edf57f5c2f81a15a1990d7ab23c = L.circleMarker(\\n\",\n       \"                [27.8528, 113.13],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc361c821fcf33b19a763f473887d870 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b67725421768d56117097b8a81cd9d7 = $(`&lt;div id=&quot;html_5b67725421768d56117097b8a81cd9d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.13             latitude:27.8528             PM2_5:43.01404494             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc361c821fcf33b19a763f473887d870.setContent(html_5b67725421768d56117097b8a81cd9d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15ff8edf57f5c2f81a15a1990d7ab23c.bindPopup(popup_fc361c821fcf33b19a763f473887d870)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbf2896b887bc21ddf3ff3ef635404c1 = L.circleMarker(\\n\",\n       \"                [34.5653, 105.8614],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1811e8cb923df836ab6f5252613a224a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6f28f90044fa8391d20e96585f2c9a1 = $(`&lt;div id=&quot;html_d6f28f90044fa8391d20e96585f2c9a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8614             latitude:34.5653             PM2_5:34.33286119             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1811e8cb923df836ab6f5252613a224a.setContent(html_d6f28f90044fa8391d20e96585f2c9a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbf2896b887bc21ddf3ff3ef635404c1.bindPopup(popup_1811e8cb923df836ab6f5252613a224a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57a3febcebeb4e15108ecb727e1b7416 = L.circleMarker(\\n\",\n       \"                [44.1564, 87.9897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ddf96d5f3540a7264887e2c405d2f861 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df69a951f003244ff1c5ff9d3887db46 = $(`&lt;div id=&quot;html_df69a951f003244ff1c5ff9d3887db46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.9897             latitude:44.1564             PM2_5:10.12539185             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ddf96d5f3540a7264887e2c405d2f861.setContent(html_df69a951f003244ff1c5ff9d3887db46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57a3febcebeb4e15108ecb727e1b7416.bindPopup(popup_ddf96d5f3540a7264887e2c405d2f861)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_009b2f305a362951cb3f51a2294abc7c = L.circleMarker(\\n\",\n       \"                [28.5808, 112.3458],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad34e4e12dec79f4359a0c331f24a740 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df37f2163e346611831d8d2133421174 = $(`&lt;div id=&quot;html_df37f2163e346611831d8d2133421174&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3458             latitude:28.5808             PM2_5:44.30736544             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad34e4e12dec79f4359a0c331f24a740.setContent(html_df37f2163e346611831d8d2133421174);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_009b2f305a362951cb3f51a2294abc7c.bindPopup(popup_ad34e4e12dec79f4359a0c331f24a740)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3175c0195c9d9ec22a29105abe3a3d11 = L.circleMarker(\\n\",\n       \"                [23.3667, 116.6794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_14cb1be6758c7162e9e259b7ceef8f2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11991cc589ca85459378aa294ac5849a = $(`&lt;div id=&quot;html_11991cc589ca85459378aa294ac5849a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6794             latitude:23.3667             PM2_5:24.04929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_14cb1be6758c7162e9e259b7ceef8f2f.setContent(html_11991cc589ca85459378aa294ac5849a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3175c0195c9d9ec22a29105abe3a3d11.bindPopup(popup_14cb1be6758c7162e9e259b7ceef8f2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05d08b25af4ea10b0f3271286121fd8e = L.circleMarker(\\n\",\n       \"                [34.2417, 117.192],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f68911f53333249649bd2783b7f748d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e2c32496db6b12074721a83bd6dafda = $(`&lt;div id=&quot;html_4e2c32496db6b12074721a83bd6dafda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.192             latitude:34.2417             PM2_5:62.62464986             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f68911f53333249649bd2783b7f748d7.setContent(html_4e2c32496db6b12074721a83bd6dafda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05d08b25af4ea10b0f3271286121fd8e.bindPopup(popup_f68911f53333249649bd2783b7f748d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05533ec1e3de8d4265f69928005bfc1b = L.circleMarker(\\n\",\n       \"                [37.9854, 112.549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a2c6f6681919cc16f1bbc45272bdb71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0db8a562026e90b0c8615a42a5502fd6 = $(`&lt;div id=&quot;html_0db8a562026e90b0c8615a42a5502fd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.549             latitude:37.9854             PM2_5:57.60422535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a2c6f6681919cc16f1bbc45272bdb71.setContent(html_0db8a562026e90b0c8615a42a5502fd6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05533ec1e3de8d4265f69928005bfc1b.bindPopup(popup_9a2c6f6681919cc16f1bbc45272bdb71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_217ffc02888c444ab09b639b54e94f95 = L.circleMarker(\\n\",\n       \"                [28.2053, 113.0792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4b093f0d7e8da3be5effc55aa5f859db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f38bc6b61052cb232a23b3fb52c5162a = $(`&lt;div id=&quot;html_f38bc6b61052cb232a23b3fb52c5162a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0792             latitude:28.2053             PM2_5:48.97075209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4b093f0d7e8da3be5effc55aa5f859db.setContent(html_f38bc6b61052cb232a23b3fb52c5162a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_217ffc02888c444ab09b639b54e94f95.bindPopup(popup_4b093f0d7e8da3be5effc55aa5f859db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b68b70d85c523d6b776596d55246a476 = L.circleMarker(\\n\",\n       \"                [25.8471, 114.8905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eaa3a25c467605470dd73835158c2047 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ddb6ba70ea37e21b978a53135973fec = $(`&lt;div id=&quot;html_5ddb6ba70ea37e21b978a53135973fec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8905             latitude:25.8471             PM2_5:45.81320225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eaa3a25c467605470dd73835158c2047.setContent(html_5ddb6ba70ea37e21b978a53135973fec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b68b70d85c523d6b776596d55246a476.bindPopup(popup_eaa3a25c467605470dd73835158c2047)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4a1f4f8f18f5e0adb11544096ae48e3 = L.circleMarker(\\n\",\n       \"                [23.3594, 104.2533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c17e03664d1b5523445d8ab0bbd6d141 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3bcff812e74fddb246d7aa11f374452b = $(`&lt;div id=&quot;html_3bcff812e74fddb246d7aa11f374452b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.2533             latitude:23.3594             PM2_5:18.79008746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c17e03664d1b5523445d8ab0bbd6d141.setContent(html_3bcff812e74fddb246d7aa11f374452b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4a1f4f8f18f5e0adb11544096ae48e3.bindPopup(popup_c17e03664d1b5523445d8ab0bbd6d141)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1298d45d0bc639dc55002190ea0c5904 = L.circleMarker(\\n\",\n       \"                [32.0572, 118.749],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fae9c7f89f7809927ef649c78f88347c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_efdf286f86caaba81d703b65a1ea68c5 = $(`&lt;div id=&quot;html_efdf286f86caaba81d703b65a1ea68c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.749             latitude:32.0572             PM2_5:39.61416185             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fae9c7f89f7809927ef649c78f88347c.setContent(html_efdf286f86caaba81d703b65a1ea68c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1298d45d0bc639dc55002190ea0c5904.bindPopup(popup_fae9c7f89f7809927ef649c78f88347c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b0d112684c39096bbd6d896243477eb = L.circleMarker(\\n\",\n       \"                [30.1259, 104.6294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_152b675bf32633cb27d119ed4fa7c2b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08651a63b01804ca68fb9f2b1bbb5194 = $(`&lt;div id=&quot;html_08651a63b01804ca68fb9f2b1bbb5194&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6294             latitude:30.1259             PM2_5:38.15571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_152b675bf32633cb27d119ed4fa7c2b8.setContent(html_08651a63b01804ca68fb9f2b1bbb5194);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b0d112684c39096bbd6d896243477eb.bindPopup(popup_152b675bf32633cb27d119ed4fa7c2b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2280890b6ebea1864f9d8f9fa75bd86 = L.circleMarker(\\n\",\n       \"                [25.4792, 118.981],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf620739f56e83a460962473f5feeff4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62b7ff7e9c5d50ea23598d84b0e5ade3 = $(`&lt;div id=&quot;html_62b7ff7e9c5d50ea23598d84b0e5ade3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.981             latitude:25.4792             PM2_5:28.92458101             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf620739f56e83a460962473f5feeff4.setContent(html_62b7ff7e9c5d50ea23598d84b0e5ade3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2280890b6ebea1864f9d8f9fa75bd86.bindPopup(popup_bf620739f56e83a460962473f5feeff4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e64f11668559c31bb91a4d0f8cf32561 = L.circleMarker(\\n\",\n       \"                [34.3474, 108.935],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5c08092630b47b925364d71ec9cf95c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2da1ab02730a6dd60f285cd29409b76 = $(`&lt;div id=&quot;html_c2da1ab02730a6dd60f285cd29409b76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.935             latitude:34.3474             PM2_5:65.3767313             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5c08092630b47b925364d71ec9cf95c.setContent(html_c2da1ab02730a6dd60f285cd29409b76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e64f11668559c31bb91a4d0f8cf32561.bindPopup(popup_c5c08092630b47b925364d71ec9cf95c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_427310bbcac84337a016a70092344f18 = L.circleMarker(\\n\",\n       \"                [34.7772, 111.1928],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fed96b26e3b349c0ce6f3fe0a7a691d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c914922fc4fb1a60a6c17c443e6764c0 = $(`&lt;div id=&quot;html_c914922fc4fb1a60a6c17c443e6764c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1928             latitude:34.7772             PM2_5:55.32022472             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fed96b26e3b349c0ce6f3fe0a7a691d4.setContent(html_c914922fc4fb1a60a6c17c443e6764c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_427310bbcac84337a016a70092344f18.bindPopup(popup_fed96b26e3b349c0ce6f3fe0a7a691d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89d694b970bac7aaa19035286eac0ab8 = L.circleMarker(\\n\",\n       \"                [34.9058, 108.9344],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb20dc60e036876b79c61ecd693039c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2d5cc384175a05097a613aae3ed4bf5 = $(`&lt;div id=&quot;html_b2d5cc384175a05097a613aae3ed4bf5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.9344             latitude:34.9058             PM2_5:49.65266106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb20dc60e036876b79c61ecd693039c5.setContent(html_b2d5cc384175a05097a613aae3ed4bf5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89d694b970bac7aaa19035286eac0ab8.bindPopup(popup_cb20dc60e036876b79c61ecd693039c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8605aa5303d09408810f74ab8a66060 = L.circleMarker(\\n\",\n       \"                [37.7124, 112.469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3e3b58f91431857cfb21570ca0ae221 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0dc10b8ca236429ac625151fb59af7c = $(`&lt;div id=&quot;html_f0dc10b8ca236429ac625151fb59af7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.469             latitude:37.7124             PM2_5:76.31481481             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3e3b58f91431857cfb21570ca0ae221.setContent(html_f0dc10b8ca236429ac625151fb59af7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8605aa5303d09408810f74ab8a66060.bindPopup(popup_c3e3b58f91431857cfb21570ca0ae221)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8eec5f9d03d2457fe736805e328b2cfc = L.circleMarker(\\n\",\n       \"                [23.4794, 111.26],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5beb3be7d9c43a00d4de52e05fb76b79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48175f088011dccd2818e53815c85380 = $(`&lt;div id=&quot;html_48175f088011dccd2818e53815c85380&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.26             latitude:23.4794             PM2_5:40.91876751             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5beb3be7d9c43a00d4de52e05fb76b79.setContent(html_48175f088011dccd2818e53815c85380);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8eec5f9d03d2457fe736805e328b2cfc.bindPopup(popup_5beb3be7d9c43a00d4de52e05fb76b79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24771eccd4574410b794db63a4a44639 = L.circleMarker(\\n\",\n       \"                [28.7989, 104.6789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67ec1998873e0060745848be513a2400 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_685303a53ad3381f1a59834c4893b834 = $(`&lt;div id=&quot;html_685303a53ad3381f1a59834c4893b834&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6789             latitude:28.7989             PM2_5:54.35955056             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67ec1998873e0060745848be513a2400.setContent(html_685303a53ad3381f1a59834c4893b834);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24771eccd4574410b794db63a4a44639.bindPopup(popup_67ec1998873e0060745848be513a2400)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f2e4fee82ca5ccfecd31894e1832438 = L.circleMarker(\\n\",\n       \"                [40.9359, 117.963],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cfed26bda8ea924a66b70c844558733b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a63b1edab50054724464cba81e9c7346 = $(`&lt;div id=&quot;html_a63b1edab50054724464cba81e9c7346&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.963             latitude:40.9359             PM2_5:32.35972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cfed26bda8ea924a66b70c844558733b.setContent(html_a63b1edab50054724464cba81e9c7346);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f2e4fee82ca5ccfecd31894e1832438.bindPopup(popup_cfed26bda8ea924a66b70c844558733b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e66875b47e822d909353b662b0d0da6e = L.circleMarker(\\n\",\n       \"                [30.6578, 104.054],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f28fcb17e2229e36eddc739490626e4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f770268a3b4203e35b7f70e65164b00 = $(`&lt;div id=&quot;html_5f770268a3b4203e35b7f70e65164b00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.054             latitude:30.6578             PM2_5:56.91292135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f28fcb17e2229e36eddc739490626e4a.setContent(html_5f770268a3b4203e35b7f70e65164b00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e66875b47e822d909353b662b0d0da6e.bindPopup(popup_f28fcb17e2229e36eddc739490626e4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4793b338bee4638c5030aeaa983cef1e = L.circleMarker(\\n\",\n       \"                [48.4658, 129.4942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27fd9c1b6d56b5b49be7f37cd367886a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_507cb0e6ea610e6c1e169028df7e18bd = $(`&lt;div id=&quot;html_507cb0e6ea610e6c1e169028df7e18bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.4942             latitude:48.4658             PM2_5:14.43993994             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27fd9c1b6d56b5b49be7f37cd367886a.setContent(html_507cb0e6ea610e6c1e169028df7e18bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4793b338bee4638c5030aeaa983cef1e.bindPopup(popup_27fd9c1b6d56b5b49be7f37cd367886a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d40f5127251ed968b22affdc80ce5aa2 = L.circleMarker(\\n\",\n       \"                [33.3681, 120.1631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5947024872df63d65965c8a3f818241c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7a87dbc23c719546dd11f75acd32eb1 = $(`&lt;div id=&quot;html_c7a87dbc23c719546dd11f75acd32eb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1631             latitude:33.3681             PM2_5:40.77653631             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5947024872df63d65965c8a3f818241c.setContent(html_c7a87dbc23c719546dd11f75acd32eb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d40f5127251ed968b22affdc80ce5aa2.bindPopup(popup_5947024872df63d65965c8a3f818241c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98d352e2a6d31e555eee50327ae60d33 = L.circleMarker(\\n\",\n       \"                [30.65638889, 104.0238889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce8989a7250c44424980b57e1025ed49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25cb317aa419fae36d8ad5101c228251 = $(`&lt;div id=&quot;html_25cb317aa419fae36d8ad5101c228251&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.0238889             latitude:30.65638889             PM2_5:56.7150838             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce8989a7250c44424980b57e1025ed49.setContent(html_25cb317aa419fae36d8ad5101c228251);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98d352e2a6d31e555eee50327ae60d33.bindPopup(popup_ce8989a7250c44424980b57e1025ed49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c553a194cfe49f20f1e5aa8a0d07d12c = L.circleMarker(\\n\",\n       \"                [26.5928, 101.5769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5eb34fdd030ef69e7c98b89a5f83fce7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d72c1f88be350bbeea2406b61c3e7d17 = $(`&lt;div id=&quot;html_d72c1f88be350bbeea2406b61c3e7d17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.5769             latitude:26.5928             PM2_5:36.39972145             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5eb34fdd030ef69e7c98b89a5f83fce7.setContent(html_d72c1f88be350bbeea2406b61c3e7d17);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c553a194cfe49f20f1e5aa8a0d07d12c.bindPopup(popup_5eb34fdd030ef69e7c98b89a5f83fce7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5db2829d244c897f062c4036552e442c = L.circleMarker(\\n\",\n       \"                [32.645, 117.0083],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_724fad5820c2e2096f596413fd073b36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_273b94598b4923e4ba62bd59efd294c4 = $(`&lt;div id=&quot;html_273b94598b4923e4ba62bd59efd294c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0083             latitude:32.645             PM2_5:60.11376404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_724fad5820c2e2096f596413fd073b36.setContent(html_273b94598b4923e4ba62bd59efd294c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5db2829d244c897f062c4036552e442c.bindPopup(popup_724fad5820c2e2096f596413fd073b36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb7a11eef1e0c5c94a6f83ed0954e03c = L.circleMarker(\\n\",\n       \"                [41.8864, 124.0878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6600e8b9b7a14f1613c13803c6e493ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc60e6549bc01f96172116629750d8f7 = $(`&lt;div id=&quot;html_bc60e6549bc01f96172116629750d8f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.0878             latitude:41.8864             PM2_5:24.38515406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6600e8b9b7a14f1613c13803c6e493ea.setContent(html_bc60e6549bc01f96172116629750d8f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb7a11eef1e0c5c94a6f83ed0954e03c.bindPopup(popup_6600e8b9b7a14f1613c13803c6e493ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbd58f43be4871fa10cc600af7567425 = L.circleMarker(\\n\",\n       \"                [50.4269, 124.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7237c0051a74d3e7cafcf1dffc01d738 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33b8ba4a7a724aae3ac18ac08ff860c6 = $(`&lt;div id=&quot;html_33b8ba4a7a724aae3ac18ac08ff860c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.1186             latitude:50.4269             PM2_5:16.56714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7237c0051a74d3e7cafcf1dffc01d738.setContent(html_33b8ba4a7a724aae3ac18ac08ff860c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbd58f43be4871fa10cc600af7567425.bindPopup(popup_7237c0051a74d3e7cafcf1dffc01d738)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9f71d2c71c84eba633d1e1a8d723a24 = L.circleMarker(\\n\",\n       \"                [23.7569, 114.6778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21f877dacfa971e929d80e3e8a585874 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70b10aa8a4d86040a3cb95cf4292bba3 = $(`&lt;div id=&quot;html_70b10aa8a4d86040a3cb95cf4292bba3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6778             latitude:23.7569             PM2_5:27.04225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21f877dacfa971e929d80e3e8a585874.setContent(html_70b10aa8a4d86040a3cb95cf4292bba3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9f71d2c71c84eba633d1e1a8d723a24.bindPopup(popup_21f877dacfa971e929d80e3e8a585874)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4be5b388723e4141bde94629d2f2da98 = L.circleMarker(\\n\",\n       \"                [33.975, 116.8008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c3f1f04484b86c8c741131f21755f54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e1b24271813a7444c3f80c161a482bd = $(`&lt;div id=&quot;html_9e1b24271813a7444c3f80c161a482bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8008             latitude:33.975             PM2_5:53.05138889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c3f1f04484b86c8c741131f21755f54.setContent(html_9e1b24271813a7444c3f80c161a482bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4be5b388723e4141bde94629d2f2da98.bindPopup(popup_9c3f1f04484b86c8c741131f21755f54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46bd6d5a7426f251edbd8b4d69f40e48 = L.circleMarker(\\n\",\n       \"                [31.955, 119.146],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_14f5ce22ad43fc59a3907b99743603b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e803af8b75fe28dd8ea22d2e8ee0f476 = $(`&lt;div id=&quot;html_e803af8b75fe28dd8ea22d2e8ee0f476&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.146             latitude:31.955             PM2_5:48.35190616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_14f5ce22ad43fc59a3907b99743603b7.setContent(html_e803af8b75fe28dd8ea22d2e8ee0f476);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46bd6d5a7426f251edbd8b4d69f40e48.bindPopup(popup_14f5ce22ad43fc59a3907b99743603b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2a405a5e7b66cc334040e8e742da811 = L.circleMarker(\\n\",\n       \"                [32.0314, 118.803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e7d649e7f24f0418f06e8c123edfbb7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_620ab4dae0422bdeee57e7a5b73a95ae = $(`&lt;div id=&quot;html_620ab4dae0422bdeee57e7a5b73a95ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.803             latitude:32.0314             PM2_5:47.42318436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e7d649e7f24f0418f06e8c123edfbb7.setContent(html_620ab4dae0422bdeee57e7a5b73a95ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2a405a5e7b66cc334040e8e742da811.bindPopup(popup_2e7d649e7f24f0418f06e8c123edfbb7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d04e801a6959813e22bd53f35c4b6404 = L.circleMarker(\\n\",\n       \"                [29.8906, 121.554],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c67addd70edfa39d08e390179635b01d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6dd53de31d69772874e4bda4d21236f = $(`&lt;div id=&quot;html_d6dd53de31d69772874e4bda4d21236f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.554             latitude:29.8906             PM2_5:36.43098592             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c67addd70edfa39d08e390179635b01d.setContent(html_d6dd53de31d69772874e4bda4d21236f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d04e801a6959813e22bd53f35c4b6404.bindPopup(popup_c67addd70edfa39d08e390179635b01d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_53516d3275ff5761b76f7b732052155d = L.circleMarker(\\n\",\n       \"                [31.955, 119.18],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ef67e87915798369ad880ac1e49f305 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33e3d71437c084fa1a677c9d23ff4e2d = $(`&lt;div id=&quot;html_33e3d71437c084fa1a677c9d23ff4e2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.18             latitude:31.955             PM2_5:40.82033426             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ef67e87915798369ad880ac1e49f305.setContent(html_33e3d71437c084fa1a677c9d23ff4e2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_53516d3275ff5761b76f7b732052155d.bindPopup(popup_9ef67e87915798369ad880ac1e49f305)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9bd868e5d0ca47d568b54ef9849c337c = L.circleMarker(\\n\",\n       \"                [34.7837, 117.2852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d303ea0ee4adfea4a697e0a6dea0a22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_257f0850488f3103475479aedfb0c3bd = $(`&lt;div id=&quot;html_257f0850488f3103475479aedfb0c3bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2852             latitude:34.7837             PM2_5:60.64944134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d303ea0ee4adfea4a697e0a6dea0a22.setContent(html_257f0850488f3103475479aedfb0c3bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9bd868e5d0ca47d568b54ef9849c337c.bindPopup(popup_9d303ea0ee4adfea4a697e0a6dea0a22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16f63fe7c614a5dd1ef86e7e2eb0b19e = L.circleMarker(\\n\",\n       \"                [32.4867, 119.9],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55dfd40fa8c5cfce793d10a8554bc053 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03bfa7d02de9f18bb11ef0a824c2eccd = $(`&lt;div id=&quot;html_03bfa7d02de9f18bb11ef0a824c2eccd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9             latitude:32.4867             PM2_5:45.3875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55dfd40fa8c5cfce793d10a8554bc053.setContent(html_03bfa7d02de9f18bb11ef0a824c2eccd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16f63fe7c614a5dd1ef86e7e2eb0b19e.bindPopup(popup_55dfd40fa8c5cfce793d10a8554bc053)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f75beda2a6b211a662a3a8f473bde5a = L.circleMarker(\\n\",\n       \"                [32.88922222, 115.7838889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bda34dd1358293d9f7abf2083d8072f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b67d85d1e385e72d40682668b8f45d7 = $(`&lt;div id=&quot;html_0b67d85d1e385e72d40682668b8f45d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.7838889             latitude:32.88922222             PM2_5:52.57485876             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bda34dd1358293d9f7abf2083d8072f.setContent(html_0b67d85d1e385e72d40682668b8f45d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f75beda2a6b211a662a3a8f473bde5a.bindPopup(popup_8bda34dd1358293d9f7abf2083d8072f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4052dc48be0215538bf2b34ffae68e06 = L.circleMarker(\\n\",\n       \"                [29.33972, 104.7228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0bb55ce0e5583569af3964e6b579e30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0758c4ac517f4321d700e4830d655260 = $(`&lt;div id=&quot;html_0758c4ac517f4321d700e4830d655260&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7228             latitude:29.33972             PM2_5:66.02941176             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0bb55ce0e5583569af3964e6b579e30.setContent(html_0758c4ac517f4321d700e4830d655260);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4052dc48be0215538bf2b34ffae68e06.bindPopup(popup_a0bb55ce0e5583569af3964e6b579e30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5095bda802ef6cc63e5a13c0bb561f67 = L.circleMarker(\\n\",\n       \"                [28.095, 116.9622],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d223c1f67a407f26c27a6b310bf6bbe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_594d8dd7ddb2f3d45de76d9a42f1f3d2 = $(`&lt;div id=&quot;html_594d8dd7ddb2f3d45de76d9a42f1f3d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9622             latitude:28.095             PM2_5:29.73167155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d223c1f67a407f26c27a6b310bf6bbe.setContent(html_594d8dd7ddb2f3d45de76d9a42f1f3d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5095bda802ef6cc63e5a13c0bb561f67.bindPopup(popup_4d223c1f67a407f26c27a6b310bf6bbe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6a28f95d6e1223903d28a554528c1f9 = L.circleMarker(\\n\",\n       \"                [42.2556, 118.8789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a793a86ba2c3b30da6e205c19e50fe9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0a70120bb72d40c3210b27293e71e44 = $(`&lt;div id=&quot;html_c0a70120bb72d40c3210b27293e71e44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.8789             latitude:42.2556             PM2_5:23.22576177             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a793a86ba2c3b30da6e205c19e50fe9.setContent(html_c0a70120bb72d40c3210b27293e71e44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6a28f95d6e1223903d28a554528c1f9.bindPopup(popup_2a793a86ba2c3b30da6e205c19e50fe9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4bbba90f3610b15bda60b79589b74a65 = L.circleMarker(\\n\",\n       \"                [41.7156, 125.9361],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53851617e12c9fa3c673808705197b10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e606491f4f1ff16473e2e7870947c08 = $(`&lt;div id=&quot;html_4e606491f4f1ff16473e2e7870947c08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.9361             latitude:41.7156             PM2_5:31.46935933             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53851617e12c9fa3c673808705197b10.setContent(html_4e606491f4f1ff16473e2e7870947c08);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4bbba90f3610b15bda60b79589b74a65.bindPopup(popup_53851617e12c9fa3c673808705197b10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_789d8c49822e14fda1d2a3a67b438007 = L.circleMarker(\\n\",\n       \"                [28.9026, 105.4436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_baa1ff9dfd95f9d3cb927d4202d886ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a29d0e5a647ed6eae550ee9684000c86 = $(`&lt;div id=&quot;html_a29d0e5a647ed6eae550ee9684000c86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4436             latitude:28.9026             PM2_5:45.04634831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_baa1ff9dfd95f9d3cb927d4202d886ff.setContent(html_a29d0e5a647ed6eae550ee9684000c86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_789d8c49822e14fda1d2a3a67b438007.bindPopup(popup_baa1ff9dfd95f9d3cb927d4202d886ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5eef2a893f8e8649af838558e75f8ae1 = L.circleMarker(\\n\",\n       \"                [30.9892, 112.1969],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2b8226ad1abf6aa2df128f1d2859a65 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_16ccf5d8c0096ee20bb38144a99ab671 = $(`&lt;div id=&quot;html_16ccf5d8c0096ee20bb38144a99ab671&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1969             latitude:30.9892             PM2_5:50.80113636             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2b8226ad1abf6aa2df128f1d2859a65.setContent(html_16ccf5d8c0096ee20bb38144a99ab671);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5eef2a893f8e8649af838558e75f8ae1.bindPopup(popup_f2b8226ad1abf6aa2df128f1d2859a65)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00542999674ee9baab1c65208f0691a7 = L.circleMarker(\\n\",\n       \"                [30.3175, 112.2551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3acb67285dbf1e0e66199fd566b68793 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f47ac709e86d1873a9573a82c34b785f = $(`&lt;div id=&quot;html_f47ac709e86d1873a9573a82c34b785f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2551             latitude:30.3175             PM2_5:53.66573816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3acb67285dbf1e0e66199fd566b68793.setContent(html_f47ac709e86d1873a9573a82c34b785f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00542999674ee9baab1c65208f0691a7.bindPopup(popup_3acb67285dbf1e0e66199fd566b68793)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c167fa170cf1de4de9191392c453b834 = L.circleMarker(\\n\",\n       \"                [31.3008, 121.467],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25dbb47aeeb7da0ff88b38268ecb6505 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9f0b68bffd4213cd47d45c785eea0da = $(`&lt;div id=&quot;html_d9f0b68bffd4213cd47d45c785eea0da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.467             latitude:31.3008             PM2_5:38.97262248             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25dbb47aeeb7da0ff88b38268ecb6505.setContent(html_d9f0b68bffd4213cd47d45c785eea0da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c167fa170cf1de4de9191392c453b834.bindPopup(popup_25dbb47aeeb7da0ff88b38268ecb6505)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea7706273daa0c76873e6aeb0ddd5891 = L.circleMarker(\\n\",\n       \"                [37.0533, 114.5261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3682925acf4b590d0c8cea0f3485ac63 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1c73e113757a56d0943aeb23453a162 = $(`&lt;div id=&quot;html_c1c73e113757a56d0943aeb23453a162&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5261             latitude:37.0533             PM2_5:69.78910615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3682925acf4b590d0c8cea0f3485ac63.setContent(html_c1c73e113757a56d0943aeb23453a162);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea7706273daa0c76873e6aeb0ddd5891.bindPopup(popup_3682925acf4b590d0c8cea0f3485ac63)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd6aac4f63b7b7cb010e09bcef2c34f5 = L.circleMarker(\\n\",\n       \"                [38.3254, 116.8584],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9fb32b876bc8db9d729012e0d4a20533 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6d88fca73f4d86fb3d7b72657b80e0b = $(`&lt;div id=&quot;html_a6d88fca73f4d86fb3d7b72657b80e0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8584             latitude:38.3254             PM2_5:47.80055402             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9fb32b876bc8db9d729012e0d4a20533.setContent(html_a6d88fca73f4d86fb3d7b72657b80e0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd6aac4f63b7b7cb010e09bcef2c34f5.bindPopup(popup_9fb32b876bc8db9d729012e0d4a20533)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f091a3fda6d730d6c9595c4130550db2 = L.circleMarker(\\n\",\n       \"                [35.213, 113.227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dafd9f0309f5f4f0c3539c2b2b0b40de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0738966e25a4f2951a4dc54004b1bac1 = $(`&lt;div id=&quot;html_0738966e25a4f2951a4dc54004b1bac1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.227             latitude:35.213             PM2_5:66.43888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dafd9f0309f5f4f0c3539c2b2b0b40de.setContent(html_0738966e25a4f2951a4dc54004b1bac1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f091a3fda6d730d6c9595c4130550db2.bindPopup(popup_dafd9f0309f5f4f0c3539c2b2b0b40de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b560d3d6bc065441c7ac2ecc81bac87a = L.circleMarker(\\n\",\n       \"                [33.8715, 109.9154],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4242e4a104b281c3601800d6beaa2b1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f0741fafcceb3b893c7f86232036e3a = $(`&lt;div id=&quot;html_0f0741fafcceb3b893c7f86232036e3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9154             latitude:33.8715             PM2_5:33.87955182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4242e4a104b281c3601800d6beaa2b1f.setContent(html_0f0741fafcceb3b893c7f86232036e3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b560d3d6bc065441c7ac2ecc81bac87a.bindPopup(popup_4242e4a104b281c3601800d6beaa2b1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cceb65bc91df47703f351830aa0e3480 = L.circleMarker(\\n\",\n       \"                [30.5706, 104.079],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31bd4e136235973830d8d3505b43e83d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3733d896b7dfb4064316b753229c8c9d = $(`&lt;div id=&quot;html_3733d896b7dfb4064316b753229c8c9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.079             latitude:30.5706             PM2_5:54.24512535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31bd4e136235973830d8d3505b43e83d.setContent(html_3733d896b7dfb4064316b753229c8c9d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cceb65bc91df47703f351830aa0e3480.bindPopup(popup_31bd4e136235973830d8d3505b43e83d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0c5ab5fc9d5711fae1898d33f8f1088 = L.circleMarker(\\n\",\n       \"                [32.5714, 110.8839],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_940ee8a04b7701d82f1b380c7deaeda7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18f37d66a5f1caff831c7fc7384ec13b = $(`&lt;div id=&quot;html_18f37d66a5f1caff831c7fc7384ec13b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.8839             latitude:32.5714             PM2_5:48.0027933             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_940ee8a04b7701d82f1b380c7deaeda7.setContent(html_18f37d66a5f1caff831c7fc7384ec13b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0c5ab5fc9d5711fae1898d33f8f1088.bindPopup(popup_940ee8a04b7701d82f1b380c7deaeda7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a42941802035845046872b2336a793cb = L.circleMarker(\\n\",\n       \"                [37.4664, 116.3061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_efe1bd29a39bad1778a9b27a2e5235fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d13ca92036bb098f96fcff80e4160c66 = $(`&lt;div id=&quot;html_d13ca92036bb098f96fcff80e4160c66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3061             latitude:37.4664             PM2_5:54.98997135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_efe1bd29a39bad1778a9b27a2e5235fc.setContent(html_d13ca92036bb098f96fcff80e4160c66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a42941802035845046872b2336a793cb.bindPopup(popup_efe1bd29a39bad1778a9b27a2e5235fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2bf9d89a774f1865a0f172fd0762adab = L.circleMarker(\\n\",\n       \"                [25.0405, 102.722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49d7b92add66d58a12f18d8299da8cdc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_374c0b0d8f1a5817d89e3d665dc0c08b = $(`&lt;div id=&quot;html_374c0b0d8f1a5817d89e3d665dc0c08b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.722             latitude:25.0405             PM2_5:33.50415512             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49d7b92add66d58a12f18d8299da8cdc.setContent(html_374c0b0d8f1a5817d89e3d665dc0c08b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2bf9d89a774f1865a0f172fd0762adab.bindPopup(popup_49d7b92add66d58a12f18d8299da8cdc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1f9251436cbc06396e361d0b9aebe70 = L.circleMarker(\\n\",\n       \"                [36.9639, 100.9048],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f595fb036e60f514f51009996ddc928 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f591ee8c573f7a7844e393907009ed4b = $(`&lt;div id=&quot;html_f591ee8c573f7a7844e393907009ed4b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.9048             latitude:36.9639             PM2_5:26.02222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f595fb036e60f514f51009996ddc928.setContent(html_f591ee8c573f7a7844e393907009ed4b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1f9251436cbc06396e361d0b9aebe70.bindPopup(popup_9f595fb036e60f514f51009996ddc928)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25443a86a04a15972fa049759ee9bfc1 = L.circleMarker(\\n\",\n       \"                [27.9639, 116.3598],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_989805a00eb180c20fbc391bc403bb83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_687ae4d10f35d89443f6e0a6d8f3148b = $(`&lt;div id=&quot;html_687ae4d10f35d89443f6e0a6d8f3148b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3598             latitude:27.9639             PM2_5:40.7367688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_989805a00eb180c20fbc391bc403bb83.setContent(html_687ae4d10f35d89443f6e0a6d8f3148b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25443a86a04a15972fa049759ee9bfc1.bindPopup(popup_989805a00eb180c20fbc391bc403bb83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c20eba28d8918bf000efd12f67bf44a = L.circleMarker(\\n\",\n       \"                [40.8725, 114.904],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e71643dfb1480ee7be451739a1d1272 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_744aa0c1ec71130dea83584e8f440044 = $(`&lt;div id=&quot;html_744aa0c1ec71130dea83584e8f440044&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.904             latitude:40.8725             PM2_5:29.97752809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e71643dfb1480ee7be451739a1d1272.setContent(html_744aa0c1ec71130dea83584e8f440044);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c20eba28d8918bf000efd12f67bf44a.bindPopup(popup_0e71643dfb1480ee7be451739a1d1272)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a9e656c7eb0e3781a2bd291db9fa12a = L.circleMarker(\\n\",\n       \"                [30.4742, 114.9028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a95c3285e62fcd35e7e106ede23b62ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af924ebcacceb89cc458438abc0bd0bc = $(`&lt;div id=&quot;html_af924ebcacceb89cc458438abc0bd0bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9028             latitude:30.4742             PM2_5:45.7019774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a95c3285e62fcd35e7e106ede23b62ea.setContent(html_af924ebcacceb89cc458438abc0bd0bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a9e656c7eb0e3781a2bd291db9fa12a.bindPopup(popup_a95c3285e62fcd35e7e106ede23b62ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e67673d05fb1a19a5acde9262373fa87 = L.circleMarker(\\n\",\n       \"                [41.0833, 122.9481],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_200ddbefff16de58d7b8a2c9b64140f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a262586b74f8486e30dbf7331efdcc47 = $(`&lt;div id=&quot;html_a262586b74f8486e30dbf7331efdcc47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.9481             latitude:41.0833             PM2_5:33.61173184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_200ddbefff16de58d7b8a2c9b64140f4.setContent(html_a262586b74f8486e30dbf7331efdcc47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e67673d05fb1a19a5acde9262373fa87.bindPopup(popup_200ddbefff16de58d7b8a2c9b64140f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c471a7ffd99a849e672df2588f318f59 = L.circleMarker(\\n\",\n       \"                [35.5051, 112.85],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfabbfc657be843214d13be179c068b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f45f22ced6cfc3cb4fcf96cf174328f1 = $(`&lt;div id=&quot;html_f45f22ced6cfc3cb4fcf96cf174328f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.85             latitude:35.5051             PM2_5:58.35552408             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfabbfc657be843214d13be179c068b7.setContent(html_f45f22ced6cfc3cb4fcf96cf174328f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c471a7ffd99a849e672df2588f318f59.bindPopup(popup_bfabbfc657be843214d13be179c068b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_55ca041d4791b5d1b45f4ac5b7b4410b = L.circleMarker(\\n\",\n       \"                [32.6778, 109.0311],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b85d1890f0ab3ee062ea0a8344b9c8b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd33d437d3a6e8d93849d9111115c613 = $(`&lt;div id=&quot;html_cd33d437d3a6e8d93849d9111115c613&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0311             latitude:32.6778             PM2_5:38.88285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b85d1890f0ab3ee062ea0a8344b9c8b.setContent(html_cd33d437d3a6e8d93849d9111115c613);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_55ca041d4791b5d1b45f4ac5b7b4410b.bindPopup(popup_9b85d1890f0ab3ee062ea0a8344b9c8b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3fdeae8789fd4088f39e4dcbaab906c3 = L.circleMarker(\\n\",\n       \"                [29.6926, 116.0628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_514f8dcbad719de2c7b2d380a75ad22c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3d7e5742619fd7d3e6889e0aa0f14a9 = $(`&lt;div id=&quot;html_f3d7e5742619fd7d3e6889e0aa0f14a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0628             latitude:29.6926             PM2_5:42.53107345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_514f8dcbad719de2c7b2d380a75ad22c.setContent(html_f3d7e5742619fd7d3e6889e0aa0f14a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3fdeae8789fd4088f39e4dcbaab906c3.bindPopup(popup_514f8dcbad719de2c7b2d380a75ad22c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8714880a1d8c94711085b166f9fce562 = L.circleMarker(\\n\",\n       \"                [28.0167, 120.671],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c0d991f755e0f1ec9a4a040b66c62ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3eee09bbd1a7db9f2efca222e0ad1f11 = $(`&lt;div id=&quot;html_3eee09bbd1a7db9f2efca222e0ad1f11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.671             latitude:28.0167             PM2_5:37.0042735             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c0d991f755e0f1ec9a4a040b66c62ca.setContent(html_3eee09bbd1a7db9f2efca222e0ad1f11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8714880a1d8c94711085b166f9fce562.bindPopup(popup_0c0d991f755e0f1ec9a4a040b66c62ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3238265196223c32d4dd8b2cb642ff44 = L.circleMarker(\\n\",\n       \"                [43.831, 87.6432],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f0bee4c256e895452b9f140796c4109 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_591d9560932c17854b57c30c10c2b77b = $(`&lt;div id=&quot;html_591d9560932c17854b57c30c10c2b77b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6432             latitude:43.831             PM2_5:57.57374631             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f0bee4c256e895452b9f140796c4109.setContent(html_591d9560932c17854b57c30c10c2b77b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3238265196223c32d4dd8b2cb642ff44.bindPopup(popup_7f0bee4c256e895452b9f140796c4109)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bda765d470a76299d7af29af0eedec60 = L.circleMarker(\\n\",\n       \"                [24.81119444, 113.5593889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be8f581daf46464a7ba272e70452caf0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71a8dc6503bad1f49cdb90f31cca8eb3 = $(`&lt;div id=&quot;html_71a8dc6503bad1f49cdb90f31cca8eb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5593889             latitude:24.81119444             PM2_5:36.51396648             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be8f581daf46464a7ba272e70452caf0.setContent(html_71a8dc6503bad1f49cdb90f31cca8eb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bda765d470a76299d7af29af0eedec60.bindPopup(popup_be8f581daf46464a7ba272e70452caf0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_423eb25bfea2c62d56204082c1c8a855 = L.circleMarker(\\n\",\n       \"                [36.6622, 117.049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6aa438f891df4d412e7fb7f52b95029 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f73a0ca27d665842c12a863733293e2 = $(`&lt;div id=&quot;html_5f73a0ca27d665842c12a863733293e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.049             latitude:36.6622             PM2_5:60.01311953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6aa438f891df4d412e7fb7f52b95029.setContent(html_5f73a0ca27d665842c12a863733293e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_423eb25bfea2c62d56204082c1c8a855.bindPopup(popup_d6aa438f891df4d412e7fb7f52b95029)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af0a0ce56a660421cbddc5ef2373fac2 = L.circleMarker(\\n\",\n       \"                [45.1642, 124.8528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7310c2afc4cfa382f03f36c26f4ae428 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e074eed8000a8ec630df2c5514a577a = $(`&lt;div id=&quot;html_8e074eed8000a8ec630df2c5514a577a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8528             latitude:45.1642             PM2_5:29.24404762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7310c2afc4cfa382f03f36c26f4ae428.setContent(html_8e074eed8000a8ec630df2c5514a577a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af0a0ce56a660421cbddc5ef2373fac2.bindPopup(popup_7310c2afc4cfa382f03f36c26f4ae428)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dae779dfc897837d92c25e55a5b79ade = L.circleMarker(\\n\",\n       \"                [32.8913, 117.4186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b90cb571a1e045cef239cccb25f340e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb0f3096a0c4bd1bd61af29da94ba2ea = $(`&lt;div id=&quot;html_eb0f3096a0c4bd1bd61af29da94ba2ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4186             latitude:32.8913             PM2_5:42.02521008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b90cb571a1e045cef239cccb25f340e3.setContent(html_eb0f3096a0c4bd1bd61af29da94ba2ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dae779dfc897837d92c25e55a5b79ade.bindPopup(popup_b90cb571a1e045cef239cccb25f340e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_603f4c77e5cc867c53137f12d05de958 = L.circleMarker(\\n\",\n       \"                [41.7972, 123.3997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afd4ac460c86a6d6e76cdda4d74df3b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ba72a7a76efc51f6e312072882f6e20 = $(`&lt;div id=&quot;html_6ba72a7a76efc51f6e312072882f6e20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.3997             latitude:41.7972             PM2_5:38.97206704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afd4ac460c86a6d6e76cdda4d74df3b8.setContent(html_6ba72a7a76efc51f6e312072882f6e20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_603f4c77e5cc867c53137f12d05de958.bindPopup(popup_afd4ac460c86a6d6e76cdda4d74df3b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d075d9c42d236d0182de62f8158fc8d = L.circleMarker(\\n\",\n       \"                [38.9846, 117.3747],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bff896060158920c4e6f4da44c38791a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4bd4d90166360357f8c8ba108f36cbf = $(`&lt;div id=&quot;html_d4bd4d90166360357f8c8ba108f36cbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3747             latitude:38.9846             PM2_5:51.10339943             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bff896060158920c4e6f4da44c38791a.setContent(html_d4bd4d90166360357f8c8ba108f36cbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d075d9c42d236d0182de62f8158fc8d.bindPopup(popup_bff896060158920c4e6f4da44c38791a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7b559ce2ac85bd7bdd33ffcf22a71e2 = L.circleMarker(\\n\",\n       \"                [26.53111111, 107.8908333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dafdc86d05957db988f567a43aeb3837 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c87054af77a9a1888cbabef51284885 = $(`&lt;div id=&quot;html_9c87054af77a9a1888cbabef51284885&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.8908333             latitude:26.53111111             PM2_5:30.87146893             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dafdc86d05957db988f567a43aeb3837.setContent(html_9c87054af77a9a1888cbabef51284885);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7b559ce2ac85bd7bdd33ffcf22a71e2.bindPopup(popup_dafdc86d05957db988f567a43aeb3837)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c4f0c609e897c51555c20b1b2777c45 = L.circleMarker(\\n\",\n       \"                [26.5892, 104.8],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b7cd4feb5c40b01de752dcbacf5c3e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7de780eba4073de98c39a841955a5e42 = $(`&lt;div id=&quot;html_7de780eba4073de98c39a841955a5e42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8             latitude:26.5892             PM2_5:39.79665738             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b7cd4feb5c40b01de752dcbacf5c3e9.setContent(html_7de780eba4073de98c39a841955a5e42);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c4f0c609e897c51555c20b1b2777c45.bindPopup(popup_2b7cd4feb5c40b01de752dcbacf5c3e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e04741e67052e2c6aab29e0e22e9fee = L.circleMarker(\\n\",\n       \"                [22.5978, 114.297],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8aee95d03db2b94b34d8d3b2546fe878 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0e5249350f6cef714917a839f815a17 = $(`&lt;div id=&quot;html_e0e5249350f6cef714917a839f815a17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.297             latitude:22.5978             PM2_5:26.13927577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8aee95d03db2b94b34d8d3b2546fe878.setContent(html_e0e5249350f6cef714917a839f815a17);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e04741e67052e2c6aab29e0e22e9fee.bindPopup(popup_8aee95d03db2b94b34d8d3b2546fe878)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d7a4f8fd0dcc522ceee09b389660a57 = L.circleMarker(\\n\",\n       \"                [35.235, 113.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c95db5229d09b1c43dfb9566370e29ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d758af9b92e87be6d78e5b6c07fb3710 = $(`&lt;div id=&quot;html_d758af9b92e87be6d78e5b6c07fb3710&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.261             latitude:35.235             PM2_5:66.46751412             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c95db5229d09b1c43dfb9566370e29ef.setContent(html_d758af9b92e87be6d78e5b6c07fb3710);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d7a4f8fd0dcc522ceee09b389660a57.bindPopup(popup_c95db5229d09b1c43dfb9566370e29ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c67d41e073a382efccfd412ef7c4bd2 = L.circleMarker(\\n\",\n       \"                [30.4663, 106.6271],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc2da903e1b68591962d303ff86befaf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47dc2c5d36b92dfb740305ee3b72de25 = $(`&lt;div id=&quot;html_47dc2c5d36b92dfb740305ee3b72de25&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6271             latitude:30.4663             PM2_5:43.66944444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc2da903e1b68591962d303ff86befaf.setContent(html_47dc2c5d36b92dfb740305ee3b72de25);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c67d41e073a382efccfd412ef7c4bd2.bindPopup(popup_dc2da903e1b68591962d303ff86befaf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d288f2de082ed2a97ad286935a7ff7b = L.circleMarker(\\n\",\n       \"                [39.65782, 118.1838],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c938d0ed4616d6bd743260794a5cd46b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a99ac8c4b02ed30df013c86a233606d2 = $(`&lt;div id=&quot;html_a99ac8c4b02ed30df013c86a233606d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1838             latitude:39.65782             PM2_5:55.8933518             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c938d0ed4616d6bd743260794a5cd46b.setContent(html_a99ac8c4b02ed30df013c86a233606d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d288f2de082ed2a97ad286935a7ff7b.bindPopup(popup_c938d0ed4616d6bd743260794a5cd46b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0a5b136a81ddb4eb925c67e47c52ca1 = L.circleMarker(\\n\",\n       \"                [49.2261, 119.7594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9fde972e690afafece09fca81368144 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0586af508d712fe1e7d0b1ba3f2d88d = $(`&lt;div id=&quot;html_e0586af508d712fe1e7d0b1ba3f2d88d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7594             latitude:49.2261             PM2_5:15.27361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9fde972e690afafece09fca81368144.setContent(html_e0586af508d712fe1e7d0b1ba3f2d88d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0a5b136a81ddb4eb925c67e47c52ca1.bindPopup(popup_b9fde972e690afafece09fca81368144)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c333ea882af9430ca837333fdd34b7fd = L.circleMarker(\\n\",\n       \"                [23.3633, 116.7244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6adbc9a31c604f1d7e97f2e66daa1985 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e6ee5bee73896fd2a190b7a146f8d38 = $(`&lt;div id=&quot;html_7e6ee5bee73896fd2a190b7a146f8d38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7244             latitude:23.3633             PM2_5:19.99022346             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6adbc9a31c604f1d7e97f2e66daa1985.setContent(html_7e6ee5bee73896fd2a190b7a146f8d38);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c333ea882af9430ca837333fdd34b7fd.bindPopup(popup_6adbc9a31c604f1d7e97f2e66daa1985)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_183e99058cbed270ae2fc898255fb818 = L.circleMarker(\\n\",\n       \"                [35.248889, 115.42277],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15b3d57942e070e9421eb3608082d801 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07c15e1b539945356c65539fc6e4d535 = $(`&lt;div id=&quot;html_07c15e1b539945356c65539fc6e4d535&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.42277             latitude:35.248889             PM2_5:58.11235955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15b3d57942e070e9421eb3608082d801.setContent(html_07c15e1b539945356c65539fc6e4d535);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_183e99058cbed270ae2fc898255fb818.bindPopup(popup_15b3d57942e070e9421eb3608082d801)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d4d7fab153d0edacecae4dd98092e65 = L.circleMarker(\\n\",\n       \"                [45.305, 130.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d597a663408ef7e8990afc02c1d417b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4257c0569fa590e61e4ceac11ec84a49 = $(`&lt;div id=&quot;html_4257c0569fa590e61e4ceac11ec84a49&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9817             latitude:45.305             PM2_5:30.75431034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d597a663408ef7e8990afc02c1d417b3.setContent(html_4257c0569fa590e61e4ceac11ec84a49);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d4d7fab153d0edacecae4dd98092e65.bindPopup(popup_d597a663408ef7e8990afc02c1d417b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ce80f71af25fd99592922339ae40745 = L.circleMarker(\\n\",\n       \"                [31.5031, 120.242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54b6f4f9580a6f49ff6f1ea9fdbd21d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_056a4e81feeddd820b03f8390b38af82 = $(`&lt;div id=&quot;html_056a4e81feeddd820b03f8390b38af82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.242             latitude:31.5031             PM2_5:45.41292135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54b6f4f9580a6f49ff6f1ea9fdbd21d1.setContent(html_056a4e81feeddd820b03f8390b38af82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ce80f71af25fd99592922339ae40745.bindPopup(popup_54b6f4f9580a6f49ff6f1ea9fdbd21d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb6eefc42bbd3cb859042069cd058ee0 = L.circleMarker(\\n\",\n       \"                [47.3349, 130.2659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24269201970ef14d20d1235ad3a6cd07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c55a2e0c5b33603c8721982f968ade7f = $(`&lt;div id=&quot;html_c55a2e0c5b33603c8721982f968ade7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.2659             latitude:47.3349             PM2_5:25.09206799             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24269201970ef14d20d1235ad3a6cd07.setContent(html_c55a2e0c5b33603c8721982f968ade7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb6eefc42bbd3cb859042069cd058ee0.bindPopup(popup_24269201970ef14d20d1235ad3a6cd07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_873f3c5d1e87fce7f25d3d71c7ef4abd = L.circleMarker(\\n\",\n       \"                [27.6428, 113.8381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47a344a0d518f1c5a3236b4e5f6de77a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6591fc17046ca5c54356681958392a91 = $(`&lt;div id=&quot;html_6591fc17046ca5c54356681958392a91&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8381             latitude:27.6428             PM2_5:47.81111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47a344a0d518f1c5a3236b4e5f6de77a.setContent(html_6591fc17046ca5c54356681958392a91);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_873f3c5d1e87fce7f25d3d71c7ef4abd.bindPopup(popup_47a344a0d518f1c5a3236b4e5f6de77a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d902b3ad81ad7fcc925847e74f06ab8 = L.circleMarker(\\n\",\n       \"                [29.635, 119.026],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11ef5f417f76869228b307600a8cdf78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43c6b16d947dd55eb4e3f59cd7ac77df = $(`&lt;div id=&quot;html_43c6b16d947dd55eb4e3f59cd7ac77df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.026             latitude:29.635             PM2_5:27.02982955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11ef5f417f76869228b307600a8cdf78.setContent(html_43c6b16d947dd55eb4e3f59cd7ac77df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d902b3ad81ad7fcc925847e74f06ab8.bindPopup(popup_11ef5f417f76869228b307600a8cdf78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a10840a95944d7f457d2d93d66af67be = L.circleMarker(\\n\",\n       \"                [41.5647, 120.4247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3728e3f4acf245db42fdddbb9b9bd87d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_362a1474a218ed39d493b963d18d1f51 = $(`&lt;div id=&quot;html_362a1474a218ed39d493b963d18d1f51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4247             latitude:41.5647             PM2_5:24.74857955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3728e3f4acf245db42fdddbb9b9bd87d.setContent(html_362a1474a218ed39d493b963d18d1f51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a10840a95944d7f457d2d93d66af67be.bindPopup(popup_3728e3f4acf245db42fdddbb9b9bd87d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf34065860b260e75577f9a197b56ec2 = L.circleMarker(\\n\",\n       \"                [28.5773, 121.377],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4201347b71e5a02bf95a34c225b23b9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6278255a2207c7a65a6ba4e981ea79b6 = $(`&lt;div id=&quot;html_6278255a2207c7a65a6ba4e981ea79b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.377             latitude:28.5773             PM2_5:31.56478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4201347b71e5a02bf95a34c225b23b9c.setContent(html_6278255a2207c7a65a6ba4e981ea79b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf34065860b260e75577f9a197b56ec2.bindPopup(popup_4201347b71e5a02bf95a34c225b23b9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_194f040d12db5570ba15e38acaefcf0d = L.circleMarker(\\n\",\n       \"                [46.7975, 130.3258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68dcacdb4d3233269a9ac9d93c1ed9cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7445a1012fdfc241456df16c7a21bac = $(`&lt;div id=&quot;html_b7445a1012fdfc241456df16c7a21bac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3258             latitude:46.7975             PM2_5:32.52089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68dcacdb4d3233269a9ac9d93c1ed9cf.setContent(html_b7445a1012fdfc241456df16c7a21bac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_194f040d12db5570ba15e38acaefcf0d.bindPopup(popup_68dcacdb4d3233269a9ac9d93c1ed9cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba95db2ef0306a37947398d31376ff0a = L.circleMarker(\\n\",\n       \"                [31.388, 120.953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c81f47ecb7b5b758f60ced1533b1856 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7114d0281abe3cec6d6612b01c9eda5f = $(`&lt;div id=&quot;html_7114d0281abe3cec6d6612b01c9eda5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.953             latitude:31.388             PM2_5:37.71892655             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c81f47ecb7b5b758f60ced1533b1856.setContent(html_7114d0281abe3cec6d6612b01c9eda5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba95db2ef0306a37947398d31376ff0a.bindPopup(popup_3c81f47ecb7b5b758f60ced1533b1856)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50e0dacc8079e9ec77ae1a5d7195221d = L.circleMarker(\\n\",\n       \"                [41.615, 120.3939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34c4e1379cbc445d45e4660bcc307e3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_835b29c8d226b9ada32c776be74800ec = $(`&lt;div id=&quot;html_835b29c8d226b9ada32c776be74800ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.3939             latitude:41.615             PM2_5:24.47443182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34c4e1379cbc445d45e4660bcc307e3b.setContent(html_835b29c8d226b9ada32c776be74800ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50e0dacc8079e9ec77ae1a5d7195221d.bindPopup(popup_34c4e1379cbc445d45e4660bcc307e3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86cc82434fcd765ad59b5bd5aea49b5f = L.circleMarker(\\n\",\n       \"                [36.5767, 109.4824],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99a2bc898f39c5d73c2c2d0d948e92fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e31f66e72c915ae277c63b2ecf86c78 = $(`&lt;div id=&quot;html_5e31f66e72c915ae277c63b2ecf86c78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4824             latitude:36.5767             PM2_5:30.72346369             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99a2bc898f39c5d73c2c2d0d948e92fb.setContent(html_5e31f66e72c915ae277c63b2ecf86c78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86cc82434fcd765ad59b5bd5aea49b5f.bindPopup(popup_99a2bc898f39c5d73c2c2d0d948e92fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e903bdce4075db1fe0506592a954a18c = L.circleMarker(\\n\",\n       \"                [32.7639, 116.8028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b3714c0504aaceb242c85641929001bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0095c3d096b5f1eaf42b702b7a0557ed = $(`&lt;div id=&quot;html_0095c3d096b5f1eaf42b702b7a0557ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8028             latitude:32.7639             PM2_5:56.22284123             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b3714c0504aaceb242c85641929001bc.setContent(html_0095c3d096b5f1eaf42b702b7a0557ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e903bdce4075db1fe0506592a954a18c.bindPopup(popup_b3714c0504aaceb242c85641929001bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3fa10e347e9974db122277b92fd9fb0 = L.circleMarker(\\n\",\n       \"                [23.7208, 109.2131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d82a207bdbc9c32af312faa039874124 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_775037f51d7d8f3126ca6bdbedee16b5 = $(`&lt;div id=&quot;html_775037f51d7d8f3126ca6bdbedee16b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2131             latitude:23.7208             PM2_5:38.19806094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d82a207bdbc9c32af312faa039874124.setContent(html_775037f51d7d8f3126ca6bdbedee16b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3fa10e347e9974db122277b92fd9fb0.bindPopup(popup_d82a207bdbc9c32af312faa039874124)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34a36cace367bfc658a4bd6a23510c12 = L.circleMarker(\\n\",\n       \"                [35.4144, 116.5856],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0dcb36a4c865d70989622e365b32085 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e59f1c98c4ba2cc5e7570fbc594c4bb3 = $(`&lt;div id=&quot;html_e59f1c98c4ba2cc5e7570fbc594c4bb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5856             latitude:35.4144             PM2_5:52.05196629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0dcb36a4c865d70989622e365b32085.setContent(html_e59f1c98c4ba2cc5e7570fbc594c4bb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34a36cace367bfc658a4bd6a23510c12.bindPopup(popup_a0dcb36a4c865d70989622e365b32085)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d8ed549fd86b0b65d6e976d90c15cf5 = L.circleMarker(\\n\",\n       \"                [50.4217, 124.1303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_891a0ae80d00310db3d673df9a225766 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98891adc66d2791843275b7cb02b31b7 = $(`&lt;div id=&quot;html_98891adc66d2791843275b7cb02b31b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.1303             latitude:50.4217             PM2_5:13.39714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_891a0ae80d00310db3d673df9a225766.setContent(html_98891adc66d2791843275b7cb02b31b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d8ed549fd86b0b65d6e976d90c15cf5.bindPopup(popup_891a0ae80d00310db3d673df9a225766)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_631667dbdbfaaa6f9cf91000970c5dfe = L.circleMarker(\\n\",\n       \"                [38.4928, 112.7003],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c284dead8a3d9a9f1fddc36b9ca9a544 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dff43adcb2b75d30ebb272c5638bb700 = $(`&lt;div id=&quot;html_dff43adcb2b75d30ebb272c5638bb700&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7003             latitude:38.4928             PM2_5:49.83427762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c284dead8a3d9a9f1fddc36b9ca9a544.setContent(html_dff43adcb2b75d30ebb272c5638bb700);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_631667dbdbfaaa6f9cf91000970c5dfe.bindPopup(popup_c284dead8a3d9a9f1fddc36b9ca9a544)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_baa91e898a25a19b8a0da7e16b90d4b9 = L.circleMarker(\\n\",\n       \"                [25.0124, 102.743],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff25f2cb88ce80cd914fe4e3dd38f33b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca030c73c7fb022edb73c93eb94fc0e4 = $(`&lt;div id=&quot;html_ca030c73c7fb022edb73c93eb94fc0e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.743             latitude:25.0124             PM2_5:30.86350975             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff25f2cb88ce80cd914fe4e3dd38f33b.setContent(html_ca030c73c7fb022edb73c93eb94fc0e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_baa91e898a25a19b8a0da7e16b90d4b9.bindPopup(popup_ff25f2cb88ce80cd914fe4e3dd38f33b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23875095bc8bde357c215c3c9fa256e4 = L.circleMarker(\\n\",\n       \"                [35.9019, 114.17],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7005a4d82a4ef611a125576a2f1ad122 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0dbe4647bedebc5bd6694f089e01cfd = $(`&lt;div id=&quot;html_a0dbe4647bedebc5bd6694f089e01cfd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.17             latitude:35.9019             PM2_5:56.75702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7005a4d82a4ef611a125576a2f1ad122.setContent(html_a0dbe4647bedebc5bd6694f089e01cfd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23875095bc8bde357c215c3c9fa256e4.bindPopup(popup_7005a4d82a4ef611a125576a2f1ad122)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da8f3650b49b21831a1b76019060694f = L.circleMarker(\\n\",\n       \"                [21.4689, 111.0286],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d3c54626848df43206ac30078c6056d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8dc8b1427d425b2fc46687f0fa1f6f81 = $(`&lt;div id=&quot;html_8dc8b1427d425b2fc46687f0fa1f6f81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0286             latitude:21.4689             PM2_5:20.53975535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d3c54626848df43206ac30078c6056d.setContent(html_8dc8b1427d425b2fc46687f0fa1f6f81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da8f3650b49b21831a1b76019060694f.bindPopup(popup_8d3c54626848df43206ac30078c6056d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45cf9e205af6c95ca0ac5c663540358a = L.circleMarker(\\n\",\n       \"                [32.41, 119.404],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9db2fc62ef87d8d1d2c0a023d6882001 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_263f8bf67557f8d58ae6d65b4874c280 = $(`&lt;div id=&quot;html_263f8bf67557f8d58ae6d65b4874c280&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.404             latitude:32.41             PM2_5:43.72058824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9db2fc62ef87d8d1d2c0a023d6882001.setContent(html_263f8bf67557f8d58ae6d65b4874c280);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45cf9e205af6c95ca0ac5c663540358a.bindPopup(popup_9db2fc62ef87d8d1d2c0a023d6882001)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b4e51f514178b0d6dd2e1af5a563d08 = L.circleMarker(\\n\",\n       \"                [32.0564, 112.1392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_243bbab83fe6838fb8cc6bd2f8aa8243 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44d700d2d731517097de2041507255c5 = $(`&lt;div id=&quot;html_44d700d2d731517097de2041507255c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1392             latitude:32.0564             PM2_5:60.23389356             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_243bbab83fe6838fb8cc6bd2f8aa8243.setContent(html_44d700d2d731517097de2041507255c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b4e51f514178b0d6dd2e1af5a563d08.bindPopup(popup_243bbab83fe6838fb8cc6bd2f8aa8243)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ca5bd3fa8d14377a80cf1962fb55fba = L.circleMarker(\\n\",\n       \"                [33.63063889, 116.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bcfb95f15a6f1e5e774125658232107c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ab0d6deb77e7c8781ba90c690871a70 = $(`&lt;div id=&quot;html_9ab0d6deb77e7c8781ba90c690871a70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.989             latitude:33.63063889             PM2_5:60.00277008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bcfb95f15a6f1e5e774125658232107c.setContent(html_9ab0d6deb77e7c8781ba90c690871a70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ca5bd3fa8d14377a80cf1962fb55fba.bindPopup(popup_bcfb95f15a6f1e5e774125658232107c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2a40c503674118ffe9895769a4af073 = L.circleMarker(\\n\",\n       \"                [41.8417, 123.7117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bcb58b2e34d1f162fe0feff063b00983 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23235ab61ec7bc1cfc5446ac3e3fe220 = $(`&lt;div id=&quot;html_23235ab61ec7bc1cfc5446ac3e3fe220&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7117             latitude:41.8417             PM2_5:31.18296089             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bcb58b2e34d1f162fe0feff063b00983.setContent(html_23235ab61ec7bc1cfc5446ac3e3fe220);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2a40c503674118ffe9895769a4af073.bindPopup(popup_bcb58b2e34d1f162fe0feff063b00983)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2578b1af523878e23d978560b4078c2 = L.circleMarker(\\n\",\n       \"                [24.2654, 116.1248],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a233264ca1dc968da4a9ef01fb62a31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d21540720d5500eac3d491b5575fd064 = $(`&lt;div id=&quot;html_d21540720d5500eac3d491b5575fd064&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1248             latitude:24.2654             PM2_5:28.63611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a233264ca1dc968da4a9ef01fb62a31.setContent(html_d21540720d5500eac3d491b5575fd064);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2578b1af523878e23d978560b4078c2.bindPopup(popup_8a233264ca1dc968da4a9ef01fb62a31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_04da3e77d3885ac65fa8edb6a5de1814 = L.circleMarker(\\n\",\n       \"                [24.3898, 109.4883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4fcc1a1cdc544767351ed422b06814a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6a1695c708a9ce431b579758816f8c6 = $(`&lt;div id=&quot;html_f6a1695c708a9ce431b579758816f8c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4883             latitude:24.3898             PM2_5:38.23142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4fcc1a1cdc544767351ed422b06814a.setContent(html_f6a1695c708a9ce431b579758816f8c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_04da3e77d3885ac65fa8edb6a5de1814.bindPopup(popup_a4fcc1a1cdc544767351ed422b06814a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb5993ae1d4086e0902ba827e24c955a = L.circleMarker(\\n\",\n       \"                [29.41569, 106.5506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2d8434120f3cdab43ac8a3ecc8705d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_629f10efeefd09ef231e64ab07fc4b75 = $(`&lt;div id=&quot;html_629f10efeefd09ef231e64ab07fc4b75&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.5506             latitude:29.41569             PM2_5:31.64325843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2d8434120f3cdab43ac8a3ecc8705d8.setContent(html_629f10efeefd09ef231e64ab07fc4b75);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb5993ae1d4086e0902ba827e24c955a.bindPopup(popup_f2d8434120f3cdab43ac8a3ecc8705d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1087e97c68e5f57063941fa094e52fb2 = L.circleMarker(\\n\",\n       \"                [40.0625, 124.3303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d10cb730edefc5e1797334c2842cac6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eba02abc7b69ed7a97ab6c403dabda34 = $(`&lt;div id=&quot;html_eba02abc7b69ed7a97ab6c403dabda34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3303             latitude:40.0625             PM2_5:23.85451977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d10cb730edefc5e1797334c2842cac6.setContent(html_eba02abc7b69ed7a97ab6c403dabda34);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1087e97c68e5f57063941fa094e52fb2.bindPopup(popup_0d10cb730edefc5e1797334c2842cac6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bcf7d4851142e4e93b23b9e2d3bdec25 = L.circleMarker(\\n\",\n       \"                [32.3878, 119.46],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_802519b9015781d91ff3d7621204079f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85a454e45661ce8658d8136fac98d9c7 = $(`&lt;div id=&quot;html_85a454e45661ce8658d8136fac98d9c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.46             latitude:32.3878             PM2_5:47.79369628             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_802519b9015781d91ff3d7621204079f.setContent(html_85a454e45661ce8658d8136fac98d9c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bcf7d4851142e4e93b23b9e2d3bdec25.bindPopup(popup_802519b9015781d91ff3d7621204079f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1adabe7da2ea70d5f60184e2f3f9fc87 = L.circleMarker(\\n\",\n       \"                [39.5986, 109.7736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f01ad88672ebaee47bf9b7f8c843fdd7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c996e992a47961f3880c0cc54b0a4eb = $(`&lt;div id=&quot;html_9c996e992a47961f3880c0cc54b0a4eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7736             latitude:39.5986             PM2_5:19.47191011             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f01ad88672ebaee47bf9b7f8c843fdd7.setContent(html_9c996e992a47961f3880c0cc54b0a4eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1adabe7da2ea70d5f60184e2f3f9fc87.bindPopup(popup_f01ad88672ebaee47bf9b7f8c843fdd7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1943bca81f8ff1c91aed2b5f24fff70 = L.circleMarker(\\n\",\n       \"                [29.2958, 117.2111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9dff10254288c38943ccdf1ef35bf55 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_deb60974c090119dda15dd3f78e2ef2c = $(`&lt;div id=&quot;html_deb60974c090119dda15dd3f78e2ef2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2111             latitude:29.2958             PM2_5:34.08831909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9dff10254288c38943ccdf1ef35bf55.setContent(html_deb60974c090119dda15dd3f78e2ef2c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1943bca81f8ff1c91aed2b5f24fff70.bindPopup(popup_d9dff10254288c38943ccdf1ef35bf55)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b477cbf0b0590cc63b50dc434ac4111 = L.circleMarker(\\n\",\n       \"                [29.6007, 103.7506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e640c0f85b48acf38f273c51b2ac06b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5252b962d5e0071b2b918b213918c6d = $(`&lt;div id=&quot;html_c5252b962d5e0071b2b918b213918c6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7506             latitude:29.6007             PM2_5:49.0491573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e640c0f85b48acf38f273c51b2ac06b6.setContent(html_c5252b962d5e0071b2b918b213918c6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b477cbf0b0590cc63b50dc434ac4111.bindPopup(popup_e640c0f85b48acf38f273c51b2ac06b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49e6c380312d670c1d12820680fb173a = L.circleMarker(\\n\",\n       \"                [33.581, 114.014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae81a94934a8a18b595565e6d84360e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2dba08129e07d663051fe1ef436834df = $(`&lt;div id=&quot;html_2dba08129e07d663051fe1ef436834df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.014             latitude:33.581             PM2_5:57.82033426             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae81a94934a8a18b595565e6d84360e7.setContent(html_2dba08129e07d663051fe1ef436834df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49e6c380312d670c1d12820680fb173a.bindPopup(popup_ae81a94934a8a18b595565e6d84360e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fa3658523129f50163442b10ebb8c8b = L.circleMarker(\\n\",\n       \"                [33.38256667, 104.9338889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_997fc202c922d245f32c1c9fb009af33 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_490d2f33d4ce88cefae3c41931f52510 = $(`&lt;div id=&quot;html_490d2f33d4ce88cefae3c41931f52510&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9338889             latitude:33.38256667             PM2_5:22.50144092             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_997fc202c922d245f32c1c9fb009af33.setContent(html_490d2f33d4ce88cefae3c41931f52510);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fa3658523129f50163442b10ebb8c8b.bindPopup(popup_997fc202c922d245f32c1c9fb009af33)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0db7d2581553e183499dcbbbdf1780a3 = L.circleMarker(\\n\",\n       \"                [26.9056, 112.5664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84532d5c8a470cd902f2a2345995d261 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e1271c1c8b82a0ad9c99f4a1e9426ce = $(`&lt;div id=&quot;html_6e1271c1c8b82a0ad9c99f4a1e9426ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5664             latitude:26.9056             PM2_5:43.28072626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84532d5c8a470cd902f2a2345995d261.setContent(html_6e1271c1c8b82a0ad9c99f4a1e9426ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0db7d2581553e183499dcbbbdf1780a3.bindPopup(popup_84532d5c8a470cd902f2a2345995d261)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad818a8866ac2371a9a19ca23c894f03 = L.circleMarker(\\n\",\n       \"                [34.864, 117.5564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5e5b19984c832ee3cca4b5c4b78c394 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb38b97cd4deffca59098903672e4f95 = $(`&lt;div id=&quot;html_bb38b97cd4deffca59098903672e4f95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5564             latitude:34.864             PM2_5:51.03221289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5e5b19984c832ee3cca4b5c4b78c394.setContent(html_bb38b97cd4deffca59098903672e4f95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad818a8866ac2371a9a19ca23c894f03.bindPopup(popup_e5e5b19984c832ee3cca4b5c4b78c394)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20d3641cc13ea89c3c993b65bc486517 = L.circleMarker(\\n\",\n       \"                [31.896, 121.173],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81899a5fc38bbc5f6225c3397b73b1ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_453ecff282506cadb264fe982c44c14f = $(`&lt;div id=&quot;html_453ecff282506cadb264fe982c44c14f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.173             latitude:31.896             PM2_5:35.22303207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81899a5fc38bbc5f6225c3397b73b1ae.setContent(html_453ecff282506cadb264fe982c44c14f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20d3641cc13ea89c3c993b65bc486517.bindPopup(popup_81899a5fc38bbc5f6225c3397b73b1ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_562f101deb96caf2f3a668dc952d3eed = L.circleMarker(\\n\",\n       \"                [22.0225, 100.8017],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11437d9e0e16bf5a9339f1730add03e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9ca50c92057bc954ba8e37a0c895223 = $(`&lt;div id=&quot;html_f9ca50c92057bc954ba8e37a0c895223&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.8017             latitude:22.0225             PM2_5:16.5130814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11437d9e0e16bf5a9339f1730add03e1.setContent(html_f9ca50c92057bc954ba8e37a0c895223);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_562f101deb96caf2f3a668dc952d3eed.bindPopup(popup_11437d9e0e16bf5a9339f1730add03e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c27a78fba89ba2f7fdc56bd8236bb964 = L.circleMarker(\\n\",\n       \"                [30.8811, 117.7442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_119da08eaff265145bf237a9b321f9b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62261031102fb7dcb1cf82d39f78dc69 = $(`&lt;div id=&quot;html_62261031102fb7dcb1cf82d39f78dc69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7442             latitude:30.8811             PM2_5:54.68333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_119da08eaff265145bf237a9b321f9b8.setContent(html_62261031102fb7dcb1cf82d39f78dc69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c27a78fba89ba2f7fdc56bd8236bb964.bindPopup(popup_119da08eaff265145bf237a9b321f9b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d682ffd85391e95af605049412f4f4d8 = L.circleMarker(\\n\",\n       \"                [28.9745, 118.855],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdd018a814f057e863afed72434d5155 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c28589a478e8ba19793e541a9b01edf = $(`&lt;div id=&quot;html_1c28589a478e8ba19793e541a9b01edf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.855             latitude:28.9745             PM2_5:35.13927577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdd018a814f057e863afed72434d5155.setContent(html_1c28589a478e8ba19793e541a9b01edf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d682ffd85391e95af605049412f4f4d8.bindPopup(popup_fdd018a814f057e863afed72434d5155)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69d19054a6a19da8d1a576b1895409c2 = L.circleMarker(\\n\",\n       \"                [24.4674, 117.6336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_833a990a882ca23dd61719346cc1e91e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93f1441e9f7887e9e97a8b681ccbe496 = $(`&lt;div id=&quot;html_93f1441e9f7887e9e97a8b681ccbe496&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6336             latitude:24.4674             PM2_5:27.59357542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_833a990a882ca23dd61719346cc1e91e.setContent(html_93f1441e9f7887e9e97a8b681ccbe496);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69d19054a6a19da8d1a576b1895409c2.bindPopup(popup_833a990a882ca23dd61719346cc1e91e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20021910b99424f908d866671a46ef08 = L.circleMarker(\\n\",\n       \"                [38.2478, 109.7336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03c4d0bacd937dd73f894083297fe32f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1d0f7972814c4aec712bc069d4f5a5b = $(`&lt;div id=&quot;html_c1d0f7972814c4aec712bc069d4f5a5b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7336             latitude:38.2478             PM2_5:31.4501385             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03c4d0bacd937dd73f894083297fe32f.setContent(html_c1d0f7972814c4aec712bc069d4f5a5b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20021910b99424f908d866671a46ef08.bindPopup(popup_03c4d0bacd937dd73f894083297fe32f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8bf49051dc8210e5808c534b8c6029af = L.circleMarker(\\n\",\n       \"                [37.4442, 118.5857],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1644c0945f34035cc4fe5f8179067a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4eda184378e92fdf171546fc91ce3802 = $(`&lt;div id=&quot;html_4eda184378e92fdf171546fc91ce3802&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5857             latitude:37.4442             PM2_5:50.74328358             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1644c0945f34035cc4fe5f8179067a2.setContent(html_4eda184378e92fdf171546fc91ce3802);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8bf49051dc8210e5808c534b8c6029af.bindPopup(popup_a1644c0945f34035cc4fe5f8179067a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8df4d976bc2b70aa5ff2dc26c753848e = L.circleMarker(\\n\",\n       \"                [39.79777778, 98.26722222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d8cbb5ca4fff31438292644b380dde0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa596d024ad6fa572f0f710be310266f = $(`&lt;div id=&quot;html_fa596d024ad6fa572f0f710be310266f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.26722222             latitude:39.79777778             PM2_5:28.45014245             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d8cbb5ca4fff31438292644b380dde0.setContent(html_fa596d024ad6fa572f0f710be310266f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8df4d976bc2b70aa5ff2dc26c753848e.bindPopup(popup_7d8cbb5ca4fff31438292644b380dde0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3212c9224e45a8375ded058d272d5f0 = L.circleMarker(\\n\",\n       \"                [33.7214, 113.3064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_def1a5726bb9d777a7b074f42ec2c4e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0b80926fc8f048d48f60f43173d69d1 = $(`&lt;div id=&quot;html_b0b80926fc8f048d48f60f43173d69d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3064             latitude:33.7214             PM2_5:58.5933908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_def1a5726bb9d777a7b074f42ec2c4e9.setContent(html_b0b80926fc8f048d48f60f43173d69d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3212c9224e45a8375ded058d272d5f0.bindPopup(popup_def1a5726bb9d777a7b074f42ec2c4e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b01e10e0deb8294063fe9e63fa3017d = L.circleMarker(\\n\",\n       \"                [30.5719, 114.3672],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_262b244b7c59a0dc3c4c5af48923654f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea49bf57cee1b5b3d6426f14d0d1fc6a = $(`&lt;div id=&quot;html_ea49bf57cee1b5b3d6426f14d0d1fc6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3672             latitude:30.5719             PM2_5:48.38636364             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_262b244b7c59a0dc3c4c5af48923654f.setContent(html_ea49bf57cee1b5b3d6426f14d0d1fc6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b01e10e0deb8294063fe9e63fa3017d.bindPopup(popup_262b244b7c59a0dc3c4c5af48923654f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6756493da9aa0aec23b0165484b6529 = L.circleMarker(\\n\",\n       \"                [31.7897, 119.8914],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a2028e32db48cb7f1373afb58234e07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d40eeba2f2d569a042b3f5d9eb0f6c03 = $(`&lt;div id=&quot;html_d40eeba2f2d569a042b3f5d9eb0f6c03&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.8914             latitude:31.7897             PM2_5:45.79469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a2028e32db48cb7f1373afb58234e07.setContent(html_d40eeba2f2d569a042b3f5d9eb0f6c03);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6756493da9aa0aec23b0165484b6529.bindPopup(popup_0a2028e32db48cb7f1373afb58234e07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_300986f9020329bbd75128dd2abe5815 = L.circleMarker(\\n\",\n       \"                [39.625, 121.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ee2ee9727a29fbdbe1e9ea6d1f25bba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70145ed45e6871ce36f6997fc19f704a = $(`&lt;div id=&quot;html_70145ed45e6871ce36f6997fc19f704a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.989             latitude:39.625             PM2_5:30.40555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ee2ee9727a29fbdbe1e9ea6d1f25bba.setContent(html_70145ed45e6871ce36f6997fc19f704a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_300986f9020329bbd75128dd2abe5815.bindPopup(popup_3ee2ee9727a29fbdbe1e9ea6d1f25bba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3a892fc3b8a4e0a2bdcbb50d1125565 = L.circleMarker(\\n\",\n       \"                [31.215, 107.525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ffc161706299574da27e087c2c194e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0d0e67809ad83f88aae24d1e472c720 = $(`&lt;div id=&quot;html_a0d0e67809ad83f88aae24d1e472c720&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.525             latitude:31.215             PM2_5:46.16016713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ffc161706299574da27e087c2c194e1.setContent(html_a0d0e67809ad83f88aae24d1e472c720);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3a892fc3b8a4e0a2bdcbb50d1125565.bindPopup(popup_8ffc161706299574da27e087c2c194e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3657eadcebd2423b410b30f6c9c2cd96 = L.circleMarker(\\n\",\n       \"                [36.0822, 111.5169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_011c73bddb3e79cea736f0a65cc6bc17 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f608b0d6431a839db0a367758e2eff46 = $(`&lt;div id=&quot;html_f608b0d6431a839db0a367758e2eff46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5169             latitude:36.0822             PM2_5:78.88718663             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_011c73bddb3e79cea736f0a65cc6bc17.setContent(html_f608b0d6431a839db0a367758e2eff46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3657eadcebd2423b410b30f6c9c2cd96.bindPopup(popup_011c73bddb3e79cea736f0a65cc6bc17)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f098541120891a1eab82ad46595ef40f = L.circleMarker(\\n\",\n       \"                [29.2718, 88.8876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78d48e252ed57313d8391b10413b5290 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca4c67e465a4610fd586588e1ca5418b = $(`&lt;div id=&quot;html_ca4c67e465a4610fd586588e1ca5418b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.8876             latitude:29.2718             PM2_5:13.47058824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78d48e252ed57313d8391b10413b5290.setContent(html_ca4c67e465a4610fd586588e1ca5418b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f098541120891a1eab82ad46595ef40f.bindPopup(popup_78d48e252ed57313d8391b10413b5290)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c4964adbc064fde8dcf25a45fee5ff7f = L.circleMarker(\\n\",\n       \"                [32.996, 113.996],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65e4f18a14465a8f78d04bb0f47ec3fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d85d17d9e278b300fe7882a435f3a6dc = $(`&lt;div id=&quot;html_d85d17d9e278b300fe7882a435f3a6dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.996             latitude:32.996             PM2_5:53.78888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65e4f18a14465a8f78d04bb0f47ec3fb.setContent(html_d85d17d9e278b300fe7882a435f3a6dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c4964adbc064fde8dcf25a45fee5ff7f.bindPopup(popup_65e4f18a14465a8f78d04bb0f47ec3fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc52776f2621ab9eeb23c8919aef11ed = L.circleMarker(\\n\",\n       \"                [24.4072, 111.5622],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a8cdceb99aca4446ae5930131c6cb10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_636c42ff2fdcc5f6ccf6c99a8bf71994 = $(`&lt;div id=&quot;html_636c42ff2fdcc5f6ccf6c99a8bf71994&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5622             latitude:24.4072             PM2_5:38.43194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a8cdceb99aca4446ae5930131c6cb10.setContent(html_636c42ff2fdcc5f6ccf6c99a8bf71994);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc52776f2621ab9eeb23c8919aef11ed.bindPopup(popup_6a8cdceb99aca4446ae5930131c6cb10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f8151faad6189e2881e9e6cf43154de = L.circleMarker(\\n\",\n       \"                [30.8596, 120.1844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c17d75e4ee9f2bfcb0b507cc0fe07436 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de2885d2a7952107d3b8761e1f201a38 = $(`&lt;div id=&quot;html_de2885d2a7952107d3b8761e1f201a38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1844             latitude:30.8596             PM2_5:41.06022409             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c17d75e4ee9f2bfcb0b507cc0fe07436.setContent(html_de2885d2a7952107d3b8761e1f201a38);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f8151faad6189e2881e9e6cf43154de.bindPopup(popup_c17d75e4ee9f2bfcb0b507cc0fe07436)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f32e44111b5965d7031d2fc77800509d = L.circleMarker(\\n\",\n       \"                [40.6575, 109.8104],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0094a7d876321a895e71616105f8bfa1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a8ea824ea02c9547230dc0bb3e27196 = $(`&lt;div id=&quot;html_5a8ea824ea02c9547230dc0bb3e27196&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8104             latitude:40.6575             PM2_5:40.33005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0094a7d876321a895e71616105f8bfa1.setContent(html_5a8ea824ea02c9547230dc0bb3e27196);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f32e44111b5965d7031d2fc77800509d.bindPopup(popup_0094a7d876321a895e71616105f8bfa1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a50c86c98bbfd512dd6a526ba38132e = L.circleMarker(\\n\",\n       \"                [38.5339, 102.1725],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca626320a74ec372b75fb3b838ccd8b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4dda2ab22ca62f1e8d6f02481bfff20f = $(`&lt;div id=&quot;html_4dda2ab22ca62f1e8d6f02481bfff20f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1725             latitude:38.5339             PM2_5:28.71587744             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca626320a74ec372b75fb3b838ccd8b6.setContent(html_4dda2ab22ca62f1e8d6f02481bfff20f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a50c86c98bbfd512dd6a526ba38132e.bindPopup(popup_ca626320a74ec372b75fb3b838ccd8b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69bb2e275a54a8937526bf5c9863dfb5 = L.circleMarker(\\n\",\n       \"                [28.0005, 116.3574],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e5955fb258aa5125be60f4b22036e85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13d3140a58e2cce090c48241e73309cb = $(`&lt;div id=&quot;html_13d3140a58e2cce090c48241e73309cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3574             latitude:28.0005             PM2_5:44.09887006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e5955fb258aa5125be60f4b22036e85.setContent(html_13d3140a58e2cce090c48241e73309cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69bb2e275a54a8937526bf5c9863dfb5.bindPopup(popup_8e5955fb258aa5125be60f4b22036e85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44ac899f635345dcaa82ed4216c721e6 = L.circleMarker(\\n\",\n       \"                [37.5639, 121.2514],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a12997ba9a4a6c84ac776de564177c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7adb6d527af69da4eb6122ff64e6ed42 = $(`&lt;div id=&quot;html_7adb6d527af69da4eb6122ff64e6ed42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2514             latitude:37.5639             PM2_5:29.87078652             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a12997ba9a4a6c84ac776de564177c7.setContent(html_7adb6d527af69da4eb6122ff64e6ed42);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44ac899f635345dcaa82ed4216c721e6.bindPopup(popup_2a12997ba9a4a6c84ac776de564177c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_574adccab1b3785e66b50c173bd69888 = L.circleMarker(\\n\",\n       \"                [39.0877, 117.307],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ccaa9a322f53d4aa42fda78c3c3bb26c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3b75b2787bce33b6b232be2ffca80b8 = $(`&lt;div id=&quot;html_a3b75b2787bce33b6b232be2ffca80b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.307             latitude:39.0877             PM2_5:50.33704735             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ccaa9a322f53d4aa42fda78c3c3bb26c.setContent(html_a3b75b2787bce33b6b232be2ffca80b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_574adccab1b3785e66b50c173bd69888.bindPopup(popup_ccaa9a322f53d4aa42fda78c3c3bb26c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e69f95b366e07c5da59de18d5b6b5d2f = L.circleMarker(\\n\",\n       \"                [29.6588, 90.9798],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0150a902e3240d8a6d86bda7cb9e94e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44223e58fbda387c9ff00d28c1279b1a = $(`&lt;div id=&quot;html_44223e58fbda387c9ff00d28c1279b1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:90.9798             latitude:29.6588             PM2_5:31.98979592             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0150a902e3240d8a6d86bda7cb9e94e.setContent(html_44223e58fbda387c9ff00d28c1279b1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e69f95b366e07c5da59de18d5b6b5d2f.bindPopup(popup_f0150a902e3240d8a6d86bda7cb9e94e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4395d5dfc8586fd78e655b9cb4f95897 = L.circleMarker(\\n\",\n       \"                [19.9969, 110.338],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_291387f4be5af41b6664ae736740eb7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3fc2691b035ea834dcbfabaffa847142 = $(`&lt;div id=&quot;html_3fc2691b035ea834dcbfabaffa847142&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.338             latitude:19.9969             PM2_5:18.88642659             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_291387f4be5af41b6664ae736740eb7f.setContent(html_3fc2691b035ea834dcbfabaffa847142);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4395d5dfc8586fd78e655b9cb4f95897.bindPopup(popup_291387f4be5af41b6664ae736740eb7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ff52320c21da008655318201c68befd = L.circleMarker(\\n\",\n       \"                [27.8094, 102.3419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0278dda49d7d74cce88d97bbb7eded66 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd8d4193d2f7ad3292cbcf222113fae8 = $(`&lt;div id=&quot;html_bd8d4193d2f7ad3292cbcf222113fae8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.3419             latitude:27.8094             PM2_5:19.32142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0278dda49d7d74cce88d97bbb7eded66.setContent(html_bd8d4193d2f7ad3292cbcf222113fae8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ff52320c21da008655318201c68befd.bindPopup(popup_0278dda49d7d74cce88d97bbb7eded66)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9f5346b8f6d74d81dd1bf5134008565 = L.circleMarker(\\n\",\n       \"                [40.7736, 120.8631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdf0640e89171277157f9e311177d9ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f875212a52699e8ef430a48cf8bf338f = $(`&lt;div id=&quot;html_f875212a52699e8ef430a48cf8bf338f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8631             latitude:40.7736             PM2_5:32.87222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdf0640e89171277157f9e311177d9ae.setContent(html_f875212a52699e8ef430a48cf8bf338f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9f5346b8f6d74d81dd1bf5134008565.bindPopup(popup_fdf0640e89171277157f9e311177d9ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33bf5482b39f26c7ed2dff8321ae1fcc = L.circleMarker(\\n\",\n       \"                [41.0903, 122.0539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6191ae9793dc90c9d7e2813afac1909a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89878c9e30711ce470ccfe7490be04ab = $(`&lt;div id=&quot;html_89878c9e30711ce470ccfe7490be04ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0539             latitude:41.0903             PM2_5:31.2005571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6191ae9793dc90c9d7e2813afac1909a.setContent(html_89878c9e30711ce470ccfe7490be04ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33bf5482b39f26c7ed2dff8321ae1fcc.bindPopup(popup_6191ae9793dc90c9d7e2813afac1909a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50ce950de381bbbc28fbf256c81e92bc = L.circleMarker(\\n\",\n       \"                [36.086, 114.32],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2dc95aaafa6f653c54bbc19bea7e75ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7c1157ab4fc02401adc22b888c8cdde = $(`&lt;div id=&quot;html_b7c1157ab4fc02401adc22b888c8cdde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.32             latitude:36.086             PM2_5:72.47486034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2dc95aaafa6f653c54bbc19bea7e75ed.setContent(html_b7c1157ab4fc02401adc22b888c8cdde);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50ce950de381bbbc28fbf256c81e92bc.bindPopup(popup_2dc95aaafa6f653c54bbc19bea7e75ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b4cd47b6134dcdec225bfebe21470e2 = L.circleMarker(\\n\",\n       \"                [29.2647, 117.1558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a75f6f598789ea4b01ce2bcf7d84ac30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4c04c2048e9ad24a1902839a50f9581 = $(`&lt;div id=&quot;html_c4c04c2048e9ad24a1902839a50f9581&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1558             latitude:29.2647             PM2_5:32.66713483             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a75f6f598789ea4b01ce2bcf7d84ac30.setContent(html_c4c04c2048e9ad24a1902839a50f9581);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b4cd47b6134dcdec225bfebe21470e2.bindPopup(popup_a75f6f598789ea4b01ce2bcf7d84ac30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1eb92ef4ed2995d4c9711676522a8e84 = L.circleMarker(\\n\",\n       \"                [21.6669, 110.9067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8acdf788b568dce6749e169ae40f49d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dfacc4fea5d3491ca8c2a108e972e58f = $(`&lt;div id=&quot;html_dfacc4fea5d3491ca8c2a108e972e58f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9067             latitude:21.6669             PM2_5:30.53888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8acdf788b568dce6749e169ae40f49d.setContent(html_dfacc4fea5d3491ca8c2a108e972e58f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1eb92ef4ed2995d4c9711676522a8e84.bindPopup(popup_b8acdf788b568dce6749e169ae40f49d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4122403c4d6f653de0b54d6af702de7 = L.circleMarker(\\n\",\n       \"                [23.0467, 113.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd0b294246d1b7cdeb0b18e8da4e5732 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6fff7408caafc9916636827f15330ec = $(`&lt;div id=&quot;html_b6fff7408caafc9916636827f15330ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.144             latitude:23.0467             PM2_5:35.05211268             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd0b294246d1b7cdeb0b18e8da4e5732.setContent(html_b6fff7408caafc9916636827f15330ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4122403c4d6f653de0b54d6af702de7.bindPopup(popup_fd0b294246d1b7cdeb0b18e8da4e5732)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c82692fd8426526f8847043bf2bdb56 = L.circleMarker(\\n\",\n       \"                [41.7775, 123.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd8c25e1f71b162926e3d7915eb5166b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ebed069c45439bdff178ab0f7900828 = $(`&lt;div id=&quot;html_4ebed069c45439bdff178ab0f7900828&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.478             latitude:41.7775             PM2_5:34.99164345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd8c25e1f71b162926e3d7915eb5166b.setContent(html_4ebed069c45439bdff178ab0f7900828);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c82692fd8426526f8847043bf2bdb56.bindPopup(popup_dd8c25e1f71b162926e3d7915eb5166b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48ae57f3de52ae74361c3d069e36ba90 = L.circleMarker(\\n\",\n       \"                [37.5211, 111.1406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7faf4df4ff60af48c36980481d42084d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eaa3949e49a6e6634fabb33cc4dd9e3a = $(`&lt;div id=&quot;html_eaa3949e49a6e6634fabb33cc4dd9e3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1406             latitude:37.5211             PM2_5:61.23537604             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7faf4df4ff60af48c36980481d42084d.setContent(html_eaa3949e49a6e6634fabb33cc4dd9e3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48ae57f3de52ae74361c3d069e36ba90.bindPopup(popup_7faf4df4ff60af48c36980481d42084d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d6dde709c71fb58c565d60957edd6f2 = L.circleMarker(\\n\",\n       \"                [35.28385, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35292ab7413f737de353bab86fc06cc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_432e0ebbd601db88009e8ff90f4a0725 = $(`&lt;div id=&quot;html_432e0ebbd601db88009e8ff90f4a0725&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:35.28385             PM2_5:53.94444444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35292ab7413f737de353bab86fc06cc4.setContent(html_432e0ebbd601db88009e8ff90f4a0725);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d6dde709c71fb58c565d60957edd6f2.bindPopup(popup_35292ab7413f737de353bab86fc06cc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57851c31a68256faf3cea41fdf5e8b0d = L.circleMarker(\\n\",\n       \"                [26.6343, 106.7487],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3887c7716264e72807aed3c286725de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0b9d5d0cd8765758c91501aaa5ab14e = $(`&lt;div id=&quot;html_f0b9d5d0cd8765758c91501aaa5ab14e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7487             latitude:26.6343             PM2_5:36.45365169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3887c7716264e72807aed3c286725de.setContent(html_f0b9d5d0cd8765758c91501aaa5ab14e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57851c31a68256faf3cea41fdf5e8b0d.bindPopup(popup_f3887c7716264e72807aed3c286725de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae9b2498eda8be55cdad3e18d5ff3110 = L.circleMarker(\\n\",\n       \"                [39.5453, 116.7022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a6c5e143556ceeda0787bf4c9c9c16c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c5d44634cbeefb68f806b583c4ec4df = $(`&lt;div id=&quot;html_4c5d44634cbeefb68f806b583c4ec4df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7022             latitude:39.5453             PM2_5:42.37047354             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a6c5e143556ceeda0787bf4c9c9c16c.setContent(html_4c5d44634cbeefb68f806b583c4ec4df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae9b2498eda8be55cdad3e18d5ff3110.bindPopup(popup_6a6c5e143556ceeda0787bf4c9c9c16c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ddeb3af14bf568d3ca318dcf8492cbf = L.circleMarker(\\n\",\n       \"                [36.6028, 109.4761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e85b3b8496844f59471e3932a8b45a12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e98bfb80148a58e550c94b132f152d24 = $(`&lt;div id=&quot;html_e98bfb80148a58e550c94b132f152d24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4761             latitude:36.6028             PM2_5:26.54378531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e85b3b8496844f59471e3932a8b45a12.setContent(html_e98bfb80148a58e550c94b132f152d24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ddeb3af14bf568d3ca318dcf8492cbf.bindPopup(popup_e85b3b8496844f59471e3932a8b45a12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b230695399f7594f3e03a7c167b2bf3b = L.circleMarker(\\n\",\n       \"                [23.0706, 112.427],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34805f881dacb713a34400f78f62326a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb26d2016b52393515892a9f756e0a3c = $(`&lt;div id=&quot;html_bb26d2016b52393515892a9f756e0a3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.427             latitude:23.0706             PM2_5:39.67086835             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34805f881dacb713a34400f78f62326a.setContent(html_bb26d2016b52393515892a9f756e0a3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b230695399f7594f3e03a7c167b2bf3b.bindPopup(popup_34805f881dacb713a34400f78f62326a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d602ad608a559188b30b399e202462fd = L.circleMarker(\\n\",\n       \"                [31.8516, 117.124],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c5e1550856368e9a31cfc0149675613 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6bb9a5f84fd388d869b439af7b66d2f7 = $(`&lt;div id=&quot;html_6bb9a5f84fd388d869b439af7b66d2f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.124             latitude:31.8516             PM2_5:46.00277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c5e1550856368e9a31cfc0149675613.setContent(html_6bb9a5f84fd388d869b439af7b66d2f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d602ad608a559188b30b399e202462fd.bindPopup(popup_1c5e1550856368e9a31cfc0149675613)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b91876978c5f0a83fbcd8afa08f743b5 = L.circleMarker(\\n\",\n       \"                [22.5211, 113.3769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e45c4abb3efa84b99f71cddeec6961e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_801fc57cba3cdb71ceff69b0e383b8a5 = $(`&lt;div id=&quot;html_801fc57cba3cdb71ceff69b0e383b8a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3769             latitude:22.5211             PM2_5:35.20786517             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e45c4abb3efa84b99f71cddeec6961e.setContent(html_801fc57cba3cdb71ceff69b0e383b8a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b91876978c5f0a83fbcd8afa08f743b5.bindPopup(popup_3e45c4abb3efa84b99f71cddeec6961e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_347b80b61ea92b4c9df37ab4181e8dbe = L.circleMarker(\\n\",\n       \"                [33.3942, 120.156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_347dec144d613cd2faeba83c40191ade = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76a545e2fbf89c7ff597ee0e007e5b63 = $(`&lt;div id=&quot;html_76a545e2fbf89c7ff597ee0e007e5b63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.156             latitude:33.3942             PM2_5:40.27158774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_347dec144d613cd2faeba83c40191ade.setContent(html_76a545e2fbf89c7ff597ee0e007e5b63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_347b80b61ea92b4c9df37ab4181e8dbe.bindPopup(popup_347dec144d613cd2faeba83c40191ade)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d896574ec8abdaccbb18676f0a905825 = L.circleMarker(\\n\",\n       \"                [39.5178, 116.6838],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34096e13d6eb5bae95c48cb4c77c1a4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09bd1d5d7d3bdfca28df52ff34ab9591 = $(`&lt;div id=&quot;html_09bd1d5d7d3bdfca28df52ff34ab9591&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6838             latitude:39.5178             PM2_5:45.49159664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34096e13d6eb5bae95c48cb4c77c1a4f.setContent(html_09bd1d5d7d3bdfca28df52ff34ab9591);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d896574ec8abdaccbb18676f0a905825.bindPopup(popup_34096e13d6eb5bae95c48cb4c77c1a4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39ddbc37690df46122ce795c5aceac42 = L.circleMarker(\\n\",\n       \"                [37.1152, 79.9485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7fa2c989916c74711f4ca03060be455f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2dae96b0bcb79c20689d4d5bb39bc70 = $(`&lt;div id=&quot;html_a2dae96b0bcb79c20689d4d5bb39bc70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:79.9485             latitude:37.1152             PM2_5:103.977591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7fa2c989916c74711f4ca03060be455f.setContent(html_a2dae96b0bcb79c20689d4d5bb39bc70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39ddbc37690df46122ce795c5aceac42.bindPopup(popup_7fa2c989916c74711f4ca03060be455f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5bef72c35e01cbba526d8b46807e365 = L.circleMarker(\\n\",\n       \"                [30.5797, 105.7519],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce1c7948e210f20cde9c6de71cb2f91b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4bede3a17a9eb5875c4ef60edf3e87f5 = $(`&lt;div id=&quot;html_4bede3a17a9eb5875c4ef60edf3e87f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.7519             latitude:30.5797             PM2_5:43.79275362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce1c7948e210f20cde9c6de71cb2f91b.setContent(html_4bede3a17a9eb5875c4ef60edf3e87f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5bef72c35e01cbba526d8b46807e365.bindPopup(popup_ce1c7948e210f20cde9c6de71cb2f91b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc0976b328341d75bf5654f47d0a5707 = L.circleMarker(\\n\",\n       \"                [45.6842, 126.6206],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d44a829347007c46976f9ff8a6c81f28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef2bfcfae2724a0d7cae27b7bc3bb84f = $(`&lt;div id=&quot;html_ef2bfcfae2724a0d7cae27b7bc3bb84f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6206             latitude:45.6842             PM2_5:34.80031447             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d44a829347007c46976f9ff8a6c81f28.setContent(html_ef2bfcfae2724a0d7cae27b7bc3bb84f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc0976b328341d75bf5654f47d0a5707.bindPopup(popup_d44a829347007c46976f9ff8a6c81f28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ede62911b1f2b1fe0d315d86312b98f = L.circleMarker(\\n\",\n       \"                [30.9742, 118.7386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eda03a1b9f99ff1ebe83820dd1495f5b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d6e551cb30f8cee72bc462cffb84df3 = $(`&lt;div id=&quot;html_1d6e551cb30f8cee72bc462cffb84df3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7386             latitude:30.9742             PM2_5:41.79551821             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eda03a1b9f99ff1ebe83820dd1495f5b.setContent(html_1d6e551cb30f8cee72bc462cffb84df3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ede62911b1f2b1fe0d315d86312b98f.bindPopup(popup_eda03a1b9f99ff1ebe83820dd1495f5b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b12a7bc32717d024861ab020644bd1a = L.circleMarker(\\n\",\n       \"                [28.8558, 105.4322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_775953084e11debe6aa61f9604b54f69 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7f3a8806911d72de4babe545187d803 = $(`&lt;div id=&quot;html_a7f3a8806911d72de4babe545187d803&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4322             latitude:28.8558             PM2_5:41.88997214             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_775953084e11debe6aa61f9604b54f69.setContent(html_a7f3a8806911d72de4babe545187d803);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b12a7bc32717d024861ab020644bd1a.bindPopup(popup_775953084e11debe6aa61f9604b54f69)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2dbd177af3aba10f9be51de1d3f794d = L.circleMarker(\\n\",\n       \"                [36.6275, 109.4131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a40fce9b89d256a8766246162a4be513 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cabad6e52d9b6103c3393d1be6b9d3ee = $(`&lt;div id=&quot;html_cabad6e52d9b6103c3393d1be6b9d3ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4131             latitude:36.6275             PM2_5:29.30351906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a40fce9b89d256a8766246162a4be513.setContent(html_cabad6e52d9b6103c3393d1be6b9d3ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2dbd177af3aba10f9be51de1d3f794d.bindPopup(popup_a40fce9b89d256a8766246162a4be513)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47dd64818ac57b72cfe38bb4ef067906 = L.circleMarker(\\n\",\n       \"                [29.7292, 115.988],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21da2cb4477fd5b3039bc0611dde3818 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_335ce72be610d24a143975b687ea94b7 = $(`&lt;div id=&quot;html_335ce72be610d24a143975b687ea94b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.988             latitude:29.7292             PM2_5:44.39612188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21da2cb4477fd5b3039bc0611dde3818.setContent(html_335ce72be610d24a143975b687ea94b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47dd64818ac57b72cfe38bb4ef067906.bindPopup(popup_21da2cb4477fd5b3039bc0611dde3818)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fddb4e1f24df093f7cddae8e93b9b4a = L.circleMarker(\\n\",\n       \"                [22.5931, 113.0819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c522a07a6e9e800c582438d19563474e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46082ea6cb0ff7bd688018f20df812ad = $(`&lt;div id=&quot;html_46082ea6cb0ff7bd688018f20df812ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0819             latitude:22.5931             PM2_5:35.44289694             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c522a07a6e9e800c582438d19563474e.setContent(html_46082ea6cb0ff7bd688018f20df812ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fddb4e1f24df093f7cddae8e93b9b4a.bindPopup(popup_c522a07a6e9e800c582438d19563474e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7468842936aa032ef7a033bb9c279243 = L.circleMarker(\\n\",\n       \"                [30.475, 105.5956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d729b3038a458bf1d2b050bede792c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f0d4b380ba301210145fc8002d028e3 = $(`&lt;div id=&quot;html_5f0d4b380ba301210145fc8002d028e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.5956             latitude:30.475             PM2_5:38.00277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d729b3038a458bf1d2b050bede792c3.setContent(html_5f0d4b380ba301210145fc8002d028e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7468842936aa032ef7a033bb9c279243.bindPopup(popup_0d729b3038a458bf1d2b050bede792c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_635166551d0ca63a2555acdd4a5c6807 = L.circleMarker(\\n\",\n       \"                [40.7688, 114.9032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4351e4171b75b7bc87fec48fab217f0e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d73702dffa2109d654f9a32c71ba67b6 = $(`&lt;div id=&quot;html_d73702dffa2109d654f9a32c71ba67b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9032             latitude:40.7688             PM2_5:29.62188366             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4351e4171b75b7bc87fec48fab217f0e.setContent(html_d73702dffa2109d654f9a32c71ba67b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_635166551d0ca63a2555acdd4a5c6807.bindPopup(popup_4351e4171b75b7bc87fec48fab217f0e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f60a619b349e25dd278d302bd0e1cb9c = L.circleMarker(\\n\",\n       \"                [41.0971, 122.9642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5adb383a5e47b4071b02b6ed3e9fc98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d447c1bd38d1350fd20bf5679fc6192 = $(`&lt;div id=&quot;html_0d447c1bd38d1350fd20bf5679fc6192&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.9642             latitude:41.0971             PM2_5:35.54178273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5adb383a5e47b4071b02b6ed3e9fc98.setContent(html_0d447c1bd38d1350fd20bf5679fc6192);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f60a619b349e25dd278d302bd0e1cb9c.bindPopup(popup_a5adb383a5e47b4071b02b6ed3e9fc98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_257768dc9017bfdf13fcfa13d67b26cc = L.circleMarker(\\n\",\n       \"                [41.9206, 126.4047],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b21d03a12ab07590dc36524de4cde6ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be56cf1ab17841b67b7209b086242c28 = $(`&lt;div id=&quot;html_be56cf1ab17841b67b7209b086242c28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4047             latitude:41.9206             PM2_5:37.63445378             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b21d03a12ab07590dc36524de4cde6ef.setContent(html_be56cf1ab17841b67b7209b086242c28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_257768dc9017bfdf13fcfa13d67b26cc.bindPopup(popup_b21d03a12ab07590dc36524de4cde6ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b72e2d977acfc67c2a0d8a0356cc990d = L.circleMarker(\\n\",\n       \"                [35.5236, 107.6406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8196f56152f87c7c17994f402c8fc420 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d158465be6f96a8214c3496a162ac928 = $(`&lt;div id=&quot;html_d158465be6f96a8214c3496a162ac928&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6406             latitude:35.5236             PM2_5:34.47075209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8196f56152f87c7c17994f402c8fc420.setContent(html_d158465be6f96a8214c3496a162ac928);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b72e2d977acfc67c2a0d8a0356cc990d.bindPopup(popup_8196f56152f87c7c17994f402c8fc420)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc1f4b9f86d260b1105a5ddb3fc5e50b = L.circleMarker(\\n\",\n       \"                [31.4539, 104.7536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5848655440ee4733a7d1a1ee696f28af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_34ce7a74b236c27747deef99c0960b95 = $(`&lt;div id=&quot;html_34ce7a74b236c27747deef99c0960b95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7536             latitude:31.4539             PM2_5:50.954039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5848655440ee4733a7d1a1ee696f28af.setContent(html_34ce7a74b236c27747deef99c0960b95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc1f4b9f86d260b1105a5ddb3fc5e50b.bindPopup(popup_5848655440ee4733a7d1a1ee696f28af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3126292d629a6cab8f046b88f0b2837 = L.circleMarker(\\n\",\n       \"                [40.6592, 122.2414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5d2d0abcd2f0865c5cd64b3fde37079 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d231f111d4ed9e1d8aaf2aa026b9b3de = $(`&lt;div id=&quot;html_d231f111d4ed9e1d8aaf2aa026b9b3de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2414             latitude:40.6592             PM2_5:31.50138504             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5d2d0abcd2f0865c5cd64b3fde37079.setContent(html_d231f111d4ed9e1d8aaf2aa026b9b3de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3126292d629a6cab8f046b88f0b2837.bindPopup(popup_b5d2d0abcd2f0865c5cd64b3fde37079)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca63d0a8c88d44e387e850d18828bc94 = L.circleMarker(\\n\",\n       \"                [26.5747, 107.9783],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d642d83202a7af81b121a804cfe868b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e852c7659cf05445d4beda44cf414243 = $(`&lt;div id=&quot;html_e852c7659cf05445d4beda44cf414243&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.9783             latitude:26.5747             PM2_5:35.51815642             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d642d83202a7af81b121a804cfe868b5.setContent(html_e852c7659cf05445d4beda44cf414243);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca63d0a8c88d44e387e850d18828bc94.bindPopup(popup_d642d83202a7af81b121a804cfe868b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5aab72051f97a1f52027f950bb4416b3 = L.circleMarker(\\n\",\n       \"                [33.568, 114.005],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5bfd723b9db7827f707f4e20bd14e6d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90487ebfaff91d19d7a9bc3ef637920a = $(`&lt;div id=&quot;html_90487ebfaff91d19d7a9bc3ef637920a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.005             latitude:33.568             PM2_5:57.45111732             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5bfd723b9db7827f707f4e20bd14e6d.setContent(html_90487ebfaff91d19d7a9bc3ef637920a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5aab72051f97a1f52027f950bb4416b3.bindPopup(popup_f5bfd723b9db7827f707f4e20bd14e6d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05ba28703a16dbca8c502aac7646d8c9 = L.circleMarker(\\n\",\n       \"                [27.583, 110.0394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9da01d7b6dc0305ed08b4c848625a7cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6fc4e83211b48fb3e36a7b1d4bb3d65e = $(`&lt;div id=&quot;html_6fc4e83211b48fb3e36a7b1d4bb3d65e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0394             latitude:27.583             PM2_5:43.59749304             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9da01d7b6dc0305ed08b4c848625a7cf.setContent(html_6fc4e83211b48fb3e36a7b1d4bb3d65e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05ba28703a16dbca8c502aac7646d8c9.bindPopup(popup_9da01d7b6dc0305ed08b4c848625a7cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_316501ab1b3cb1e507417a18148b179d = L.circleMarker(\\n\",\n       \"                [43.8694, 125.325],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99d5dd866f13067563e251c8e0e0faa7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff3abf1177efa25cbac028ec4a6e6a6a = $(`&lt;div id=&quot;html_ff3abf1177efa25cbac028ec4a6e6a6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.325             latitude:43.8694             PM2_5:31.45596591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99d5dd866f13067563e251c8e0e0faa7.setContent(html_ff3abf1177efa25cbac028ec4a6e6a6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_316501ab1b3cb1e507417a18148b179d.bindPopup(popup_99d5dd866f13067563e251c8e0e0faa7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3102e28e787d0bfe9f4bc4954637490 = L.circleMarker(\\n\",\n       \"                [36.5336, 116.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10ba077c0d3d412505ad3eedbef9fb8d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f868a3f2c362219871bb01f618799de = $(`&lt;div id=&quot;html_2f868a3f2c362219871bb01f618799de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.734             latitude:36.5336             PM2_5:58.35446686             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10ba077c0d3d412505ad3eedbef9fb8d.setContent(html_2f868a3f2c362219871bb01f618799de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3102e28e787d0bfe9f4bc4954637490.bindPopup(popup_10ba077c0d3d412505ad3eedbef9fb8d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8a7f8fef8085609582d704a60b1c150 = L.circleMarker(\\n\",\n       \"                [35.4039, 116.5546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c442144ecd1a6954146591a838395ee8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1430efd1a9b2a6b8676fe87443bea3a7 = $(`&lt;div id=&quot;html_1430efd1a9b2a6b8676fe87443bea3a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5546             latitude:35.4039             PM2_5:45.83753501             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c442144ecd1a6954146591a838395ee8.setContent(html_1430efd1a9b2a6b8676fe87443bea3a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8a7f8fef8085609582d704a60b1c150.bindPopup(popup_c442144ecd1a6954146591a838395ee8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbd49f7087ba648df75ee23a9f2e9403 = L.circleMarker(\\n\",\n       \"                [34.0117, 113.8331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1cd81130e3ed124b242741b18246c461 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b607ea888ad05e5ebaed999c9cd71335 = $(`&lt;div id=&quot;html_b607ea888ad05e5ebaed999c9cd71335&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8331             latitude:34.0117             PM2_5:56.1302521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1cd81130e3ed124b242741b18246c461.setContent(html_b607ea888ad05e5ebaed999c9cd71335);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbd49f7087ba648df75ee23a9f2e9403.bindPopup(popup_1cd81130e3ed124b242741b18246c461)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81f950ed5c47ebb3b39c78cb074ef887 = L.circleMarker(\\n\",\n       \"                [28.9664, 118.871],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b2f77808932f2d701ec4cab68a002c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38b0f14d1e38130d44258cdea5b4eaab = $(`&lt;div id=&quot;html_38b0f14d1e38130d44258cdea5b4eaab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.871             latitude:28.9664             PM2_5:34.66526611             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b2f77808932f2d701ec4cab68a002c5.setContent(html_38b0f14d1e38130d44258cdea5b4eaab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81f950ed5c47ebb3b39c78cb074ef887.bindPopup(popup_0b2f77808932f2d701ec4cab68a002c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ce77e6e7ce5a148bcf469615ea64ed4 = L.circleMarker(\\n\",\n       \"                [24.68636111, 113.5970833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29af05e3d4a8f29137bdc116c36d2f07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4699bba179950e1c6630a6570424d7f0 = $(`&lt;div id=&quot;html_4699bba179950e1c6630a6570424d7f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5970833             latitude:24.68636111             PM2_5:38.7745098             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29af05e3d4a8f29137bdc116c36d2f07.setContent(html_4699bba179950e1c6630a6570424d7f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ce77e6e7ce5a148bcf469615ea64ed4.bindPopup(popup_29af05e3d4a8f29137bdc116c36d2f07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05788c3f6cd7fc3074e3ed2c1870831e = L.circleMarker(\\n\",\n       \"                [37.393, 117.9776],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5feb0a9b0e2adb3dd3ea7e71f17ca56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d76e742dcee055f555c34c6f7ae3185a = $(`&lt;div id=&quot;html_d76e742dcee055f555c34c6f7ae3185a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9776             latitude:37.393             PM2_5:53.84180791             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5feb0a9b0e2adb3dd3ea7e71f17ca56.setContent(html_d76e742dcee055f555c34c6f7ae3185a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05788c3f6cd7fc3074e3ed2c1870831e.bindPopup(popup_a5feb0a9b0e2adb3dd3ea7e71f17ca56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1400ea3ea32dffcd4ab51ffddbca42a9 = L.circleMarker(\\n\",\n       \"                [37.8531, 113.6292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b42ffd46b9d69275d4bfe9dfd4b2ba2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee3e8900d2468aa03094702d38cd8c23 = $(`&lt;div id=&quot;html_ee3e8900d2468aa03094702d38cd8c23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6292             latitude:37.8531             PM2_5:53.93452381             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b42ffd46b9d69275d4bfe9dfd4b2ba2.setContent(html_ee3e8900d2468aa03094702d38cd8c23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1400ea3ea32dffcd4ab51ffddbca42a9.bindPopup(popup_3b42ffd46b9d69275d4bfe9dfd4b2ba2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eaf4e29fe3712ce7b8e111c0011b96cd = L.circleMarker(\\n\",\n       \"                [41.3369, 123.7528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6d9b8cbaab2b7aeb9b6f1fca119ab7c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4cb4f369c26adddc2eccc37f4e31b448 = $(`&lt;div id=&quot;html_4cb4f369c26adddc2eccc37f4e31b448&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7528             latitude:41.3369             PM2_5:27.14763231             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6d9b8cbaab2b7aeb9b6f1fca119ab7c.setContent(html_4cb4f369c26adddc2eccc37f4e31b448);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eaf4e29fe3712ce7b8e111c0011b96cd.bindPopup(popup_d6d9b8cbaab2b7aeb9b6f1fca119ab7c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c185a0f5d5b31d2aff29ee418d272a4 = L.circleMarker(\\n\",\n       \"                [30.2311, 119.6942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bdd3787bd76906122322ebbcfa2477ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c99aaa73d1c05efc0c76375991334d5 = $(`&lt;div id=&quot;html_4c99aaa73d1c05efc0c76375991334d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6942             latitude:30.2311             PM2_5:36.65868263             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bdd3787bd76906122322ebbcfa2477ec.setContent(html_4c99aaa73d1c05efc0c76375991334d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c185a0f5d5b31d2aff29ee418d272a4.bindPopup(popup_bdd3787bd76906122322ebbcfa2477ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_229a207fce4e3972fccd60a63db132e9 = L.circleMarker(\\n\",\n       \"                [31.8585, 117.336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58ff30a67a4299df4e1dc7eb915c6706 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_246412c14d3ac9984f0b8d9a05b1e6d3 = $(`&lt;div id=&quot;html_246412c14d3ac9984f0b8d9a05b1e6d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.336             latitude:31.8585             PM2_5:51.78089888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58ff30a67a4299df4e1dc7eb915c6706.setContent(html_246412c14d3ac9984f0b8d9a05b1e6d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_229a207fce4e3972fccd60a63db132e9.bindPopup(popup_58ff30a67a4299df4e1dc7eb915c6706)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0528821ceea752b02357b361a0d787fa = L.circleMarker(\\n\",\n       \"                [26.6266, 106.6243],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55b4d48c184bf9ff7e10b034e258a378 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c91236e70c8dd04fca2276643e259b01 = $(`&lt;div id=&quot;html_c91236e70c8dd04fca2276643e259b01&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6243             latitude:26.6266             PM2_5:29.28045326             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55b4d48c184bf9ff7e10b034e258a378.setContent(html_c91236e70c8dd04fca2276643e259b01);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0528821ceea752b02357b361a0d787fa.bindPopup(popup_55b4d48c184bf9ff7e10b034e258a378)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_615498668ef13e047070e60a1bf58cff = L.circleMarker(\\n\",\n       \"                [38.85611111, 121.5180556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74ff39b207bdfa42a05ea101a67436bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18b0379d06ededaddc04d5efcf25e420 = $(`&lt;div id=&quot;html_18b0379d06ededaddc04d5efcf25e420&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5180556             latitude:38.85611111             PM2_5:26.56786704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74ff39b207bdfa42a05ea101a67436bb.setContent(html_18b0379d06ededaddc04d5efcf25e420);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_615498668ef13e047070e60a1bf58cff.bindPopup(popup_74ff39b207bdfa42a05ea101a67436bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2c2e0c99b8bee67465e142f3a901384 = L.circleMarker(\\n\",\n       \"                [46.0703, 122.0506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb7e3a56c5a29117a71978454a21ba30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7bbb205bac8fd4f05daec8c0dc9ebc75 = $(`&lt;div id=&quot;html_7bbb205bac8fd4f05daec8c0dc9ebc75&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0506             latitude:46.0703             PM2_5:10.9972067             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb7e3a56c5a29117a71978454a21ba30.setContent(html_7bbb205bac8fd4f05daec8c0dc9ebc75);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2c2e0c99b8bee67465e142f3a901384.bindPopup(popup_eb7e3a56c5a29117a71978454a21ba30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_422563d905f3e6ea4f2449dc3ef09e15 = L.circleMarker(\\n\",\n       \"                [22.2281, 113.299],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a4b4cb4ee067d4018a6ffb7a9e6f553 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0a2c3d9a1f468a5a2ee22796d27709f = $(`&lt;div id=&quot;html_b0a2c3d9a1f468a5a2ee22796d27709f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.299             latitude:22.2281             PM2_5:30.13276836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a4b4cb4ee067d4018a6ffb7a9e6f553.setContent(html_b0a2c3d9a1f468a5a2ee22796d27709f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_422563d905f3e6ea4f2449dc3ef09e15.bindPopup(popup_3a4b4cb4ee067d4018a6ffb7a9e6f553)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f7b6766ab69731199bd9d5747d92f79 = L.circleMarker(\\n\",\n       \"                [30.51197222, 117.0331111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f007e3ff1d6bd2c7cf0ceeed1ef5249c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_473b5bb17c2bfff236a08964ed43431a = $(`&lt;div id=&quot;html_473b5bb17c2bfff236a08964ed43431a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0331111             latitude:30.51197222             PM2_5:50.17827298             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f007e3ff1d6bd2c7cf0ceeed1ef5249c.setContent(html_473b5bb17c2bfff236a08964ed43431a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f7b6766ab69731199bd9d5747d92f79.bindPopup(popup_f007e3ff1d6bd2c7cf0ceeed1ef5249c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16177c568029ba72728e49a88d649da6 = L.circleMarker(\\n\",\n       \"                [38.9108, 115.4713],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c51c39ccc82eabc2304a7e463e1ee77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_847f134a8cc6947139656a82207e1882 = $(`&lt;div id=&quot;html_847f134a8cc6947139656a82207e1882&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.4713             latitude:38.9108             PM2_5:58.6801676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c51c39ccc82eabc2304a7e463e1ee77.setContent(html_847f134a8cc6947139656a82207e1882);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16177c568029ba72728e49a88d649da6.bindPopup(popup_4c51c39ccc82eabc2304a7e463e1ee77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5d0cca5777fa477e22077d3838ab3a5 = L.circleMarker(\\n\",\n       \"                [32.4429, 105.8242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3de13068a5f1a1db6a812f24ae0b078b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df34586910fef5eb32dd666fa75cc19e = $(`&lt;div id=&quot;html_df34586910fef5eb32dd666fa75cc19e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8242             latitude:32.4429             PM2_5:25.40529248             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3de13068a5f1a1db6a812f24ae0b078b.setContent(html_df34586910fef5eb32dd666fa75cc19e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5d0cca5777fa477e22077d3838ab3a5.bindPopup(popup_3de13068a5f1a1db6a812f24ae0b078b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3194320a3fc4290933b6da8282efc464 = L.circleMarker(\\n\",\n       \"                [29.7207, 118.3236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81c32c27745b42367381e3fa6eb8ff76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_463b22dca7bf530010b63b2dc5b34b72 = $(`&lt;div id=&quot;html_463b22dca7bf530010b63b2dc5b34b72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3236             latitude:29.7207             PM2_5:23.60451977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81c32c27745b42367381e3fa6eb8ff76.setContent(html_463b22dca7bf530010b63b2dc5b34b72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3194320a3fc4290933b6da8282efc464.bindPopup(popup_81c32c27745b42367381e3fa6eb8ff76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07ee36f7365349c4ffdb5546e7820ce8 = L.circleMarker(\\n\",\n       \"                [26.4364, 111.5992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de88bade5bab762983ab64e44aaf3e52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12b6fa45f80ef0d6a17413a6157cc98d = $(`&lt;div id=&quot;html_12b6fa45f80ef0d6a17413a6157cc98d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5992             latitude:26.4364             PM2_5:38.71856287             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de88bade5bab762983ab64e44aaf3e52.setContent(html_12b6fa45f80ef0d6a17413a6157cc98d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07ee36f7365349c4ffdb5546e7820ce8.bindPopup(popup_de88bade5bab762983ab64e44aaf3e52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b314759e2f0349a83f7c8cb11e66c498 = L.circleMarker(\\n\",\n       \"                [31.6928, 118.48],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_036d50c03122a3ad376990da7da2ebb8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d58eaba0f8fbe3927fe19c5a3a383438 = $(`&lt;div id=&quot;html_d58eaba0f8fbe3927fe19c5a3a383438&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.48             latitude:31.6928             PM2_5:42.37571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_036d50c03122a3ad376990da7da2ebb8.setContent(html_d58eaba0f8fbe3927fe19c5a3a383438);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b314759e2f0349a83f7c8cb11e66c498.bindPopup(popup_036d50c03122a3ad376990da7da2ebb8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a17440e4d5355b9924632f39044a647 = L.circleMarker(\\n\",\n       \"                [39.9567, 119.6023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a81ce6e926fe722f8584d19ceb20723 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a77435711c3a1dd443d9dc1ef6e67c9 = $(`&lt;div id=&quot;html_3a77435711c3a1dd443d9dc1ef6e67c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6023             latitude:39.9567             PM2_5:38.59305556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a81ce6e926fe722f8584d19ceb20723.setContent(html_3a77435711c3a1dd443d9dc1ef6e67c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a17440e4d5355b9924632f39044a647.bindPopup(popup_7a81ce6e926fe722f8584d19ceb20723)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48f0b88a5c8d0dedbaab803d4b6ff5c6 = L.circleMarker(\\n\",\n       \"                [40.6511, 122.215],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4842df8481fdc72b8fd3834945482ef0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11c03603d5ee1d4c45eedbe172966a6c = $(`&lt;div id=&quot;html_11c03603d5ee1d4c45eedbe172966a6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.215             latitude:40.6511             PM2_5:28.33286908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4842df8481fdc72b8fd3834945482ef0.setContent(html_11c03603d5ee1d4c45eedbe172966a6c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48f0b88a5c8d0dedbaab803d4b6ff5c6.bindPopup(popup_4842df8481fdc72b8fd3834945482ef0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_884619399a5595acab0fb11f96a1c50a = L.circleMarker(\\n\",\n       \"                [24.44583333, 118.0636111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_703b7f30970bf1c3005ab8ec5936cc26 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9202d7ce3223f679bbfbfbd93221ae2 = $(`&lt;div id=&quot;html_f9202d7ce3223f679bbfbfbd93221ae2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0636111             latitude:24.44583333             PM2_5:28.7359736             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_703b7f30970bf1c3005ab8ec5936cc26.setContent(html_f9202d7ce3223f679bbfbfbd93221ae2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_884619399a5595acab0fb11f96a1c50a.bindPopup(popup_703b7f30970bf1c3005ab8ec5936cc26)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b621cc06643ea2a4e52633211d53f392 = L.circleMarker(\\n\",\n       \"                [45.755, 126.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd99be6448b2605c65dfe3cbc749d0cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4904c547162f47b7e2d1e462853fca9 = $(`&lt;div id=&quot;html_a4904c547162f47b7e2d1e462853fca9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.542             latitude:45.755             PM2_5:32.56527778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd99be6448b2605c65dfe3cbc749d0cb.setContent(html_a4904c547162f47b7e2d1e462853fca9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b621cc06643ea2a4e52633211d53f392.bindPopup(popup_cd99be6448b2605c65dfe3cbc749d0cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3d4b4ba7b1ac8d91d41989a011c73a7 = L.circleMarker(\\n\",\n       \"                [31.1907, 121.703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db2fd5d38021fa17e9fcc0f18c6913d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b97d859ed5c06d9a1329b8354b4a83a = $(`&lt;div id=&quot;html_8b97d859ed5c06d9a1329b8354b4a83a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.703             latitude:31.1907             PM2_5:36.71126761             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db2fd5d38021fa17e9fcc0f18c6913d6.setContent(html_8b97d859ed5c06d9a1329b8354b4a83a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3d4b4ba7b1ac8d91d41989a011c73a7.bindPopup(popup_db2fd5d38021fa17e9fcc0f18c6913d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fe16d307549f0a4cc3e3a5900575bff = L.circleMarker(\\n\",\n       \"                [23.63444, 113.0472],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3af17c980b1067e698e32fc60722e485 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f808ecc725cde9df930b75dc18f533c = $(`&lt;div id=&quot;html_3f808ecc725cde9df930b75dc18f533c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0472             latitude:23.63444             PM2_5:34.71169916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3af17c980b1067e698e32fc60722e485.setContent(html_3f808ecc725cde9df930b75dc18f533c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fe16d307549f0a4cc3e3a5900575bff.bindPopup(popup_3af17c980b1067e698e32fc60722e485)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b8ac053bde260561e75e94d04c8e2e39 = L.circleMarker(\\n\",\n       \"                [34.3274, 109.043],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba195cdb9263277e9086b32d7709e14b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18ef9cb5f8a301e2aa267294be3feb6b = $(`&lt;div id=&quot;html_18ef9cb5f8a301e2aa267294be3feb6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.043             latitude:34.3274             PM2_5:65.58142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba195cdb9263277e9086b32d7709e14b.setContent(html_18ef9cb5f8a301e2aa267294be3feb6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b8ac053bde260561e75e94d04c8e2e39.bindPopup(popup_ba195cdb9263277e9086b32d7709e14b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa677bdb97bc5d80cef025c2162c51ad = L.circleMarker(\\n\",\n       \"                [37.8873, 112.522],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9f3faee8c39dc91284ac22edc09eb66 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38678c653337c206a8a21fbb11109f7c = $(`&lt;div id=&quot;html_38678c653337c206a8a21fbb11109f7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.522             latitude:37.8873             PM2_5:63.20200573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9f3faee8c39dc91284ac22edc09eb66.setContent(html_38678c653337c206a8a21fbb11109f7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa677bdb97bc5d80cef025c2162c51ad.bindPopup(popup_a9f3faee8c39dc91284ac22edc09eb66)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f56b6862f458ae532b1753577845b1f1 = L.circleMarker(\\n\",\n       \"                [30.66, 117.49],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad67015d1060934ecbe78a9cd99d555e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5d025883f48ed9a2afb92bdad9cbccc = $(`&lt;div id=&quot;html_c5d025883f48ed9a2afb92bdad9cbccc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.49             latitude:30.66             PM2_5:55.51436782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad67015d1060934ecbe78a9cd99d555e.setContent(html_c5d025883f48ed9a2afb92bdad9cbccc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f56b6862f458ae532b1753577845b1f1.bindPopup(popup_ad67015d1060934ecbe78a9cd99d555e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddefb350523a87996bfa21cc8ee3ea55 = L.circleMarker(\\n\",\n       \"                [31.4846, 92.0657],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7acde5738798092b6f199fe433f9b73 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c907e93624898aa3c0471f022e6760dc = $(`&lt;div id=&quot;html_c907e93624898aa3c0471f022e6760dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:92.0657             latitude:31.4846             PM2_5:44.10614525             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7acde5738798092b6f199fe433f9b73.setContent(html_c907e93624898aa3c0471f022e6760dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddefb350523a87996bfa21cc8ee3ea55.bindPopup(popup_b7acde5738798092b6f199fe433f9b73)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb8139785dddc8e96b8248b159cb272d = L.circleMarker(\\n\",\n       \"                [46.528, 125.112],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_48d7f5989a48cc4fc8e6bac1399a7cf1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef4014c17f76495658ff84c472d05ebb = $(`&lt;div id=&quot;html_ef4014c17f76495658ff84c472d05ebb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.112             latitude:46.528             PM2_5:25.71428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_48d7f5989a48cc4fc8e6bac1399a7cf1.setContent(html_ef4014c17f76495658ff84c472d05ebb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb8139785dddc8e96b8248b159cb272d.bindPopup(popup_48d7f5989a48cc4fc8e6bac1399a7cf1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75622cd5550daf11af5aa74109351a5d = L.circleMarker(\\n\",\n       \"                [35.5714, 104.6228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6414bb1225747f4e51f7e012f2b6711a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8119adaf1be2f5ea85c0588a7954fa2e = $(`&lt;div id=&quot;html_8119adaf1be2f5ea85c0588a7954fa2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6228             latitude:35.5714             PM2_5:27.74789916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6414bb1225747f4e51f7e012f2b6711a.setContent(html_8119adaf1be2f5ea85c0588a7954fa2e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75622cd5550daf11af5aa74109351a5d.bindPopup(popup_6414bb1225747f4e51f7e012f2b6711a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_410808a67fa4f27b9b29a7af729cfe38 = L.circleMarker(\\n\",\n       \"                [26.6946, 119.5001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d410bdac8b512403f5838198d5ca496 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c2dccf6425188112da95d84ffd7ffc9 = $(`&lt;div id=&quot;html_6c2dccf6425188112da95d84ffd7ffc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5001             latitude:26.6946             PM2_5:30.51558074             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d410bdac8b512403f5838198d5ca496.setContent(html_6c2dccf6425188112da95d84ffd7ffc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_410808a67fa4f27b9b29a7af729cfe38.bindPopup(popup_9d410bdac8b512403f5838198d5ca496)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d5ea250a6f334747873253de0223172 = L.circleMarker(\\n\",\n       \"                [31.2058, 107.4611],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_64689e6df14203af72e77008007ec70b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d29d800771c00305932b32569e55c92d = $(`&lt;div id=&quot;html_d29d800771c00305932b32569e55c92d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4611             latitude:31.2058             PM2_5:57.28272981             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_64689e6df14203af72e77008007ec70b.setContent(html_d29d800771c00305932b32569e55c92d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d5ea250a6f334747873253de0223172.bindPopup(popup_64689e6df14203af72e77008007ec70b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ac3846f8324f7fd4083441ee2ffc194 = L.circleMarker(\\n\",\n       \"                [37.7111, 112.7306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96954fbde71c0e6c2d2da267ea03420a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de0b6130bfce577379c83810b65bfc7f = $(`&lt;div id=&quot;html_de0b6130bfce577379c83810b65bfc7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7306             latitude:37.7111             PM2_5:57.2367688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96954fbde71c0e6c2d2da267ea03420a.setContent(html_de0b6130bfce577379c83810b65bfc7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ac3846f8324f7fd4083441ee2ffc194.bindPopup(popup_96954fbde71c0e6c2d2da267ea03420a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a12eb572eaa2fbfdd81bd4c6d2d064d2 = L.circleMarker(\\n\",\n       \"                [36.7008, 119.1425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4048a709d39827b9f16ed5ab4b3a446c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b875a5c224d814964b1788b9f0944d16 = $(`&lt;div id=&quot;html_b875a5c224d814964b1788b9f0944d16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1425             latitude:36.7008             PM2_5:47.30812325             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4048a709d39827b9f16ed5ab4b3a446c.setContent(html_b875a5c224d814964b1788b9f0944d16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a12eb572eaa2fbfdd81bd4c6d2d064d2.bindPopup(popup_4048a709d39827b9f16ed5ab4b3a446c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81789825ff4dca926ef5c3dbede520da = L.circleMarker(\\n\",\n       \"                [41.2692, 123.7989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9dbd070df1e97f4e49f8860b7f8783ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c82bab87f3b9fd0a0364f11fcca51a9 = $(`&lt;div id=&quot;html_8c82bab87f3b9fd0a0364f11fcca51a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7989             latitude:41.2692             PM2_5:27.25905292             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9dbd070df1e97f4e49f8860b7f8783ac.setContent(html_8c82bab87f3b9fd0a0364f11fcca51a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81789825ff4dca926ef5c3dbede520da.bindPopup(popup_9dbd070df1e97f4e49f8860b7f8783ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b1c0a8b9af9dbca041418a7e64850da = L.circleMarker(\\n\",\n       \"                [35.4934, 112.835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_174fa241dcedef61e23033d23ccecaed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f13000633446cc2a1ed82be163058b25 = $(`&lt;div id=&quot;html_f13000633446cc2a1ed82be163058b25&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.835             latitude:35.4934             PM2_5:59.60277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_174fa241dcedef61e23033d23ccecaed.setContent(html_f13000633446cc2a1ed82be163058b25);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b1c0a8b9af9dbca041418a7e64850da.bindPopup(popup_174fa241dcedef61e23033d23ccecaed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c679d13299e058f5912fb35d725a7d3 = L.circleMarker(\\n\",\n       \"                [39.2474, 117.7918],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_559c97c5cd401588b2d2e78cbdeb1e51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0e4beb894312d1ace4821cffff921fb = $(`&lt;div id=&quot;html_a0e4beb894312d1ace4821cffff921fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7918             latitude:39.2474             PM2_5:53.30225989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_559c97c5cd401588b2d2e78cbdeb1e51.setContent(html_a0e4beb894312d1ace4821cffff921fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c679d13299e058f5912fb35d725a7d3.bindPopup(popup_559c97c5cd401588b2d2e78cbdeb1e51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cea1eecc67d94a4fb018103a1acb8e1f = L.circleMarker(\\n\",\n       \"                [44.8969, 82.0806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a5a358a78720804500cf4e1c17fc4cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3bb317246f25044c265bee37b5dbe88d = $(`&lt;div id=&quot;html_3bb317246f25044c265bee37b5dbe88d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.0806             latitude:44.8969             PM2_5:34.93175487             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a5a358a78720804500cf4e1c17fc4cc.setContent(html_3bb317246f25044c265bee37b5dbe88d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cea1eecc67d94a4fb018103a1acb8e1f.bindPopup(popup_3a5a358a78720804500cf4e1c17fc4cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c16c20e15ccb9e1bda1c1daf02c7a8cc = L.circleMarker(\\n\",\n       \"                [37.154, 122.471],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d11bc220e29476f01c0fade9a1aff652 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_771b854b80c48ae187452c1c72f27476 = $(`&lt;div id=&quot;html_771b854b80c48ae187452c1c72f27476&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.471             latitude:37.154             PM2_5:20.93626062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d11bc220e29476f01c0fade9a1aff652.setContent(html_771b854b80c48ae187452c1c72f27476);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c16c20e15ccb9e1bda1c1daf02c7a8cc.bindPopup(popup_d11bc220e29476f01c0fade9a1aff652)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f792419a279dc8959eb9ab4ef39e4013 = L.circleMarker(\\n\",\n       \"                [40.7612, 111.717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4254b992f9170bb64888d263ab1dbc7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c748413b52fd036d95510c18ac361b3 = $(`&lt;div id=&quot;html_2c748413b52fd036d95510c18ac361b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.717             latitude:40.7612             PM2_5:35.41242938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4254b992f9170bb64888d263ab1dbc7a.setContent(html_2c748413b52fd036d95510c18ac361b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f792419a279dc8959eb9ab4ef39e4013.bindPopup(popup_4254b992f9170bb64888d263ab1dbc7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adb748df33a68e9c1bd42abaca20ea5b = L.circleMarker(\\n\",\n       \"                [40.0917, 113.3444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dcf39d18a9f99c2ca6605496946cfefe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b8f0fdaedbcfcc54614454222d063b3 = $(`&lt;div id=&quot;html_1b8f0fdaedbcfcc54614454222d063b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3444             latitude:40.0917             PM2_5:36.00139665             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dcf39d18a9f99c2ca6605496946cfefe.setContent(html_1b8f0fdaedbcfcc54614454222d063b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adb748df33a68e9c1bd42abaca20ea5b.bindPopup(popup_dcf39d18a9f99c2ca6605496946cfefe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a6336ae6731c3859bc3db02fbfecba8 = L.circleMarker(\\n\",\n       \"                [21.8536, 111.9508],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_500584bc2b0a7839f16b91585de487c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_28eb6be7ecb3c63fc7d0ab0a196cc42f = $(`&lt;div id=&quot;html_28eb6be7ecb3c63fc7d0ab0a196cc42f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9508             latitude:21.8536             PM2_5:31.69088319             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_500584bc2b0a7839f16b91585de487c2.setContent(html_28eb6be7ecb3c63fc7d0ab0a196cc42f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a6336ae6731c3859bc3db02fbfecba8.bindPopup(popup_500584bc2b0a7839f16b91585de487c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef7326788b277771019dedd864b93e20 = L.circleMarker(\\n\",\n       \"                [42.0228, 121.6722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ee968432ab1664ae512357ada5d3080 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f29172c7660d8b879b8cfbde87ff31f7 = $(`&lt;div id=&quot;html_f29172c7660d8b879b8cfbde87ff31f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6722             latitude:42.0228             PM2_5:28.55070423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ee968432ab1664ae512357ada5d3080.setContent(html_f29172c7660d8b879b8cfbde87ff31f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef7326788b277771019dedd864b93e20.bindPopup(popup_4ee968432ab1664ae512357ada5d3080)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c30bca7965fd634ef911c6e9e35974c0 = L.circleMarker(\\n\",\n       \"                [36.6872, 116.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40905a7919c8482e37ee3b63867521e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9af45bf3d4e6879668c42efec7f2edc = $(`&lt;div id=&quot;html_a9af45bf3d4e6879668c42efec7f2edc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.989             latitude:36.6872             PM2_5:52.91253644             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40905a7919c8482e37ee3b63867521e6.setContent(html_a9af45bf3d4e6879668c42efec7f2edc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c30bca7965fd634ef911c6e9e35974c0.bindPopup(popup_40905a7919c8482e37ee3b63867521e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_caa69a1059a31d101030c6615fc5c073 = L.circleMarker(\\n\",\n       \"                [31.9108, 119.905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1fda00f237f6cbc1ce8681c2d1cfbd7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eca88763c395e0da8998eb776a447e52 = $(`&lt;div id=&quot;html_eca88763c395e0da8998eb776a447e52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.905             latitude:31.9108             PM2_5:48.17130919             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1fda00f237f6cbc1ce8681c2d1cfbd7a.setContent(html_eca88763c395e0da8998eb776a447e52);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_caa69a1059a31d101030c6615fc5c073.bindPopup(popup_1fda00f237f6cbc1ce8681c2d1cfbd7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54da025af7dc200dd3779bf7a7782d78 = L.circleMarker(\\n\",\n       \"                [44.2967, 86.0497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bf2d61cafc7e910918f57e2b7a169ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec330755d3800ee1b38d182938430021 = $(`&lt;div id=&quot;html_ec330755d3800ee1b38d182938430021&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.0497             latitude:44.2967             PM2_5:59.0518732             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bf2d61cafc7e910918f57e2b7a169ae.setContent(html_ec330755d3800ee1b38d182938430021);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54da025af7dc200dd3779bf7a7782d78.bindPopup(popup_5bf2d61cafc7e910918f57e2b7a169ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77d5273db68b7ca9edee9bc28c45dc31 = L.circleMarker(\\n\",\n       \"                [37.7379, 115.6426],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb997445b3ebb582461f37704f4f9baf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cab64969eeb1d553bf01376ee60efb28 = $(`&lt;div id=&quot;html_cab64969eeb1d553bf01376ee60efb28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6426             latitude:37.7379             PM2_5:63.57938719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb997445b3ebb582461f37704f4f9baf.setContent(html_cab64969eeb1d553bf01376ee60efb28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77d5273db68b7ca9edee9bc28c45dc31.bindPopup(popup_fb997445b3ebb582461f37704f4f9baf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af0fdb4b9bf6f8b0d411bd6687f05004 = L.circleMarker(\\n\",\n       \"                [22.7019, 110.1106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bdcb303794468880a03986c1995ddee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3653756798465ec77cdc765607d35231 = $(`&lt;div id=&quot;html_3653756798465ec77cdc765607d35231&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1106             latitude:22.7019             PM2_5:33.85714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bdcb303794468880a03986c1995ddee.setContent(html_3653756798465ec77cdc765607d35231);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af0fdb4b9bf6f8b0d411bd6687f05004.bindPopup(popup_0bdcb303794468880a03986c1995ddee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47bf7f6717fa7e3d385494df6b7ac891 = L.circleMarker(\\n\",\n       \"                [37.4967, 121.2611],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd2650e3d86033225628de08548e934b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f8ba95f3773e299086afce915d3d0207 = $(`&lt;div id=&quot;html_f8ba95f3773e299086afce915d3d0207&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2611             latitude:37.4967             PM2_5:30.04441261             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd2650e3d86033225628de08548e934b.setContent(html_f8ba95f3773e299086afce915d3d0207);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47bf7f6717fa7e3d385494df6b7ac891.bindPopup(popup_cd2650e3d86033225628de08548e934b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_644a4a912b87502ab9b56b33337b81f2 = L.circleMarker(\\n\",\n       \"                [26.8906, 100.2203],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21bf6994214bcda225f50280801d2bb4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84fa874ef992a6d9f374c1dfa413a5b3 = $(`&lt;div id=&quot;html_84fa874ef992a6d9f374c1dfa413a5b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2203             latitude:26.8906             PM2_5:12.86505682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21bf6994214bcda225f50280801d2bb4.setContent(html_84fa874ef992a6d9f374c1dfa413a5b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_644a4a912b87502ab9b56b33337b81f2.bindPopup(popup_21bf6994214bcda225f50280801d2bb4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_99fa92373b53d8add4f0c7c6501cc487 = L.circleMarker(\\n\",\n       \"                [28.4303, 117.9033],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f691c0528582543dacccfd273c275da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee41ea5970913264aa88fec5d0af1691 = $(`&lt;div id=&quot;html_ee41ea5970913264aa88fec5d0af1691&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9033             latitude:28.4303             PM2_5:43.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f691c0528582543dacccfd273c275da.setContent(html_ee41ea5970913264aa88fec5d0af1691);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_99fa92373b53d8add4f0c7c6501cc487.bindPopup(popup_4f691c0528582543dacccfd273c275da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1ea5f997cac0de4c930b4dbece66760 = L.circleMarker(\\n\",\n       \"                [33.8997, 116.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2be19faf84e06a958cce54d2da6f201e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1adff6e7eac0231830eb98b959da3e5 = $(`&lt;div id=&quot;html_c1adff6e7eac0231830eb98b959da3e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8067             latitude:33.8997             PM2_5:59.70949721             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2be19faf84e06a958cce54d2da6f201e.setContent(html_c1adff6e7eac0231830eb98b959da3e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1ea5f997cac0de4c930b4dbece66760.bindPopup(popup_2be19faf84e06a958cce54d2da6f201e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98ab97fa14df055eb3e1b75688c3b3c7 = L.circleMarker(\\n\",\n       \"                [27.9153, 113.0048],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f45a125316025c26a9fba405c8e4ee0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_263a2a61b13bd146e67dacc703990063 = $(`&lt;div id=&quot;html_263a2a61b13bd146e67dacc703990063&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0048             latitude:27.9153             PM2_5:42.26977401             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f45a125316025c26a9fba405c8e4ee0.setContent(html_263a2a61b13bd146e67dacc703990063);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98ab97fa14df055eb3e1b75688c3b3c7.bindPopup(popup_0f45a125316025c26a9fba405c8e4ee0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a28d1ae998fd5bbeb9016a21c218e80a = L.circleMarker(\\n\",\n       \"                [42.8172, 93.5128],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_beb1f4d6c1632fc8fbd72606bd61b864 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce46e59d67424fd438295cb845c0b4d3 = $(`&lt;div id=&quot;html_ce46e59d67424fd438295cb845c0b4d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:93.5128             latitude:42.8172             PM2_5:29.67156863             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_beb1f4d6c1632fc8fbd72606bd61b864.setContent(html_ce46e59d67424fd438295cb845c0b4d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a28d1ae998fd5bbeb9016a21c218e80a.bindPopup(popup_beb1f4d6c1632fc8fbd72606bd61b864)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8dc67276ae96c633f92dec3063ff23f = L.circleMarker(\\n\",\n       \"                [27.11, 114.9739],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ddab0ee0464c5ebb48c2a7b8dff78ec9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_53411ed938bbc21566d6ec026e4b7b69 = $(`&lt;div id=&quot;html_53411ed938bbc21566d6ec026e4b7b69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9739             latitude:27.11             PM2_5:50.92039106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ddab0ee0464c5ebb48c2a7b8dff78ec9.setContent(html_53411ed938bbc21566d6ec026e4b7b69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8dc67276ae96c633f92dec3063ff23f.bindPopup(popup_ddab0ee0464c5ebb48c2a7b8dff78ec9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97f9b0123bc87f2927b83274c8c141d6 = L.circleMarker(\\n\",\n       \"                [32.4246, 105.8153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bc46031b527026911192f8d88efe208 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fcaa22d3638ae8339e68e8ddfdb6c911 = $(`&lt;div id=&quot;html_fcaa22d3638ae8339e68e8ddfdb6c911&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8153             latitude:32.4246             PM2_5:25.12222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bc46031b527026911192f8d88efe208.setContent(html_fcaa22d3638ae8339e68e8ddfdb6c911);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97f9b0123bc87f2927b83274c8c141d6.bindPopup(popup_7bc46031b527026911192f8d88efe208)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4d1c15c8e9f631c63314cb9aca78a4a = L.circleMarker(\\n\",\n       \"                [30.1377, 104.6289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ec000beb465427e9c4ab4e3a72b2690 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3be51e0f2a7cd7a166897ed527adc9d2 = $(`&lt;div id=&quot;html_3be51e0f2a7cd7a166897ed527adc9d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6289             latitude:30.1377             PM2_5:37.58725762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ec000beb465427e9c4ab4e3a72b2690.setContent(html_3be51e0f2a7cd7a166897ed527adc9d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4d1c15c8e9f631c63314cb9aca78a4a.bindPopup(popup_9ec000beb465427e9c4ab4e3a72b2690)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_814b767b99549ee7172f09e20be29d15 = L.circleMarker(\\n\",\n       \"                [31.751, 119.579],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3fc34a3a99b68d5e62502a3b8bd3014 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb42bd198188ad126cf4634eeb27bc8e = $(`&lt;div id=&quot;html_eb42bd198188ad126cf4634eeb27bc8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.579             latitude:31.751             PM2_5:40.41620112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3fc34a3a99b68d5e62502a3b8bd3014.setContent(html_eb42bd198188ad126cf4634eeb27bc8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_814b767b99549ee7172f09e20be29d15.bindPopup(popup_d3fc34a3a99b68d5e62502a3b8bd3014)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb90fbc51e4904ffe6357a2c30cfc686 = L.circleMarker(\\n\",\n       \"                [38.8707, 115.5214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bccb550d9bb458fddf28537c6be2b574 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de185822ce715dbc7771d875e66508d0 = $(`&lt;div id=&quot;html_de185822ce715dbc7771d875e66508d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.5214             latitude:38.8707             PM2_5:55.75207756             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bccb550d9bb458fddf28537c6be2b574.setContent(html_de185822ce715dbc7771d875e66508d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb90fbc51e4904ffe6357a2c30cfc686.bindPopup(popup_bccb550d9bb458fddf28537c6be2b574)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_593971e3101c1ce75254cb6dbecef555 = L.circleMarker(\\n\",\n       \"                [43.95305556, 126.4738889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1477f811d25ddebbec8b8927179a7473 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b7f66649f8dbf39da625dfa02fa76de = $(`&lt;div id=&quot;html_5b7f66649f8dbf39da625dfa02fa76de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4738889             latitude:43.95305556             PM2_5:32.6299435             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1477f811d25ddebbec8b8927179a7473.setContent(html_5b7f66649f8dbf39da625dfa02fa76de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_593971e3101c1ce75254cb6dbecef555.bindPopup(popup_1477f811d25ddebbec8b8927179a7473)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b086cb5cd05d6ddfcb394fafd95ffc62 = L.circleMarker(\\n\",\n       \"                [41.0385, 113.1076],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71031f0386bcebf2aee3bd806860b51e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a560f9c0c860666f354c77a0162aaa4c = $(`&lt;div id=&quot;html_a560f9c0c860666f354c77a0162aaa4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1076             latitude:41.0385             PM2_5:21.04899135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71031f0386bcebf2aee3bd806860b51e.setContent(html_a560f9c0c860666f354c77a0162aaa4c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b086cb5cd05d6ddfcb394fafd95ffc62.bindPopup(popup_71031f0386bcebf2aee3bd806860b51e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba94bab38193507039e5bc533aa11e26 = L.circleMarker(\\n\",\n       \"                [45.9819, 126.6106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eecf93a18d0254de5425403d83fa475d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a8b702aa5cffeb641443bf3de07331c7 = $(`&lt;div id=&quot;html_a8b702aa5cffeb641443bf3de07331c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6106             latitude:45.9819             PM2_5:34.13841808             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eecf93a18d0254de5425403d83fa475d.setContent(html_a8b702aa5cffeb641443bf3de07331c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba94bab38193507039e5bc533aa11e26.bindPopup(popup_eecf93a18d0254de5425403d83fa475d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17098bd83de84d85514442f99f4fae33 = L.circleMarker(\\n\",\n       \"                [27.8244, 113.135],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f3b7549c67c12e99592eb06096aadf5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_866583515983328396586fb100199a88 = $(`&lt;div id=&quot;html_866583515983328396586fb100199a88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.135             latitude:27.8244             PM2_5:41.64623955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f3b7549c67c12e99592eb06096aadf5.setContent(html_866583515983328396586fb100199a88);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17098bd83de84d85514442f99f4fae33.bindPopup(popup_3f3b7549c67c12e99592eb06096aadf5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_608335b1b173bab3929e8a1ab1d13b85 = L.circleMarker(\\n\",\n       \"                [33.6067, 118.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb17f7fd0ef7b0822ae6d9a018a818d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1915bb73e6b4ef8de9d3df8a4a267e82 = $(`&lt;div id=&quot;html_1915bb73e6b4ef8de9d3df8a4a267e82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.989             latitude:33.6067             PM2_5:49.74859551             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb17f7fd0ef7b0822ae6d9a018a818d9.setContent(html_1915bb73e6b4ef8de9d3df8a4a267e82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_608335b1b173bab3929e8a1ab1d13b85.bindPopup(popup_fb17f7fd0ef7b0822ae6d9a018a818d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7435bd7fde98f6bbe3a44fb652f8f6cb = L.circleMarker(\\n\",\n       \"                [35.763, 115.031],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86ca20e07159f5ee39c5ba3192ad3650 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f97569062f31503dabbbfa89893b5669 = $(`&lt;div id=&quot;html_f97569062f31503dabbbfa89893b5669&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.031             latitude:35.763             PM2_5:59.26740947             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86ca20e07159f5ee39c5ba3192ad3650.setContent(html_f97569062f31503dabbbfa89893b5669);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7435bd7fde98f6bbe3a44fb652f8f6cb.bindPopup(popup_86ca20e07159f5ee39c5ba3192ad3650)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9c03431f36838f1dc5f5401a0ec9dbc = L.circleMarker(\\n\",\n       \"                [46.7588, 130.3794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83f12330e69ee3a61f5684dde546c127 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3cdc5e679b42fccca8ca7a5ccf8b1c6c = $(`&lt;div id=&quot;html_3cdc5e679b42fccca8ca7a5ccf8b1c6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3794             latitude:46.7588             PM2_5:31.27683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83f12330e69ee3a61f5684dde546c127.setContent(html_3cdc5e679b42fccca8ca7a5ccf8b1c6c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9c03431f36838f1dc5f5401a0ec9dbc.bindPopup(popup_83f12330e69ee3a61f5684dde546c127)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ad9f0a029245d64efb4efc547eaca82 = L.circleMarker(\\n\",\n       \"                [23.3892, 104.2319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afd60afc296846a5979f641d9cfb56f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c71ea47eb9b060bfe4688b5813afe0c = $(`&lt;div id=&quot;html_1c71ea47eb9b060bfe4688b5813afe0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.2319             latitude:23.3892             PM2_5:19.89655172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afd60afc296846a5979f641d9cfb56f6.setContent(html_1c71ea47eb9b060bfe4688b5813afe0c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ad9f0a029245d64efb4efc547eaca82.bindPopup(popup_afd60afc296846a5979f641d9cfb56f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fb6d5f91ccfc445982bcd3295c8907f = L.circleMarker(\\n\",\n       \"                [30.1142, 104.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_021a707f9c9be4a7c8907a4ddc5bfb13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_371457cc889a046db5c2a44241219c0d = $(`&lt;div id=&quot;html_371457cc889a046db5c2a44241219c0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6469             latitude:30.1142             PM2_5:39.93888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_021a707f9c9be4a7c8907a4ddc5bfb13.setContent(html_371457cc889a046db5c2a44241219c0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fb6d5f91ccfc445982bcd3295c8907f.bindPopup(popup_021a707f9c9be4a7c8907a4ddc5bfb13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab20167b633298345cb53e39636b7958 = L.circleMarker(\\n\",\n       \"                [41.9967, 121.6178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_784b3527036129aacc31a76f23a76d0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c2f5ce1fb1887cb9243e1ab41172f00 = $(`&lt;div id=&quot;html_8c2f5ce1fb1887cb9243e1ab41172f00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6178             latitude:41.9967             PM2_5:23.90422535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_784b3527036129aacc31a76f23a76d0d.setContent(html_8c2f5ce1fb1887cb9243e1ab41172f00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab20167b633298345cb53e39636b7958.bindPopup(popup_784b3527036129aacc31a76f23a76d0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c4bef27f6a703ba6a27bd76f298411a = L.circleMarker(\\n\",\n       \"                [22.805, 108.383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_001571648ac1de05e04220c83ac1e428 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_621d276d130da2d34752f3a8e7e79fba = $(`&lt;div id=&quot;html_621d276d130da2d34752f3a8e7e79fba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.383             latitude:22.805             PM2_5:32.59722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_001571648ac1de05e04220c83ac1e428.setContent(html_621d276d130da2d34752f3a8e7e79fba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c4bef27f6a703ba6a27bd76f298411a.bindPopup(popup_001571648ac1de05e04220c83ac1e428)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_209ec02e09563f0ac8ac74122c12d365 = L.circleMarker(\\n\",\n       \"                [28.4459, 117.973],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_556b933b105eaa56548a4d9c616b56b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_546d8f06af36080ae71bfaf5c3acfbb6 = $(`&lt;div id=&quot;html_546d8f06af36080ae71bfaf5c3acfbb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.973             latitude:28.4459             PM2_5:38.90642458             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_556b933b105eaa56548a4d9c616b56b3.setContent(html_546d8f06af36080ae71bfaf5c3acfbb6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_209ec02e09563f0ac8ac74122c12d365.bindPopup(popup_556b933b105eaa56548a4d9c616b56b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_518da34e35c878e6c8bc1fcb5710b561 = L.circleMarker(\\n\",\n       \"                [39.6572, 106.7931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_289a1938c58207c98f86cca3f77c8c30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dcb77dcdc5cb7de3ee348af4511c75b8 = $(`&lt;div id=&quot;html_dcb77dcdc5cb7de3ee348af4511c75b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7931             latitude:39.6572             PM2_5:38.36629526             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_289a1938c58207c98f86cca3f77c8c30.setContent(html_dcb77dcdc5cb7de3ee348af4511c75b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_518da34e35c878e6c8bc1fcb5710b561.bindPopup(popup_289a1938c58207c98f86cca3f77c8c30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b9c5093988fea3d3bb0f468bf1cf30c = L.circleMarker(\\n\",\n       \"                [31.17, 120.635],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d35a012e10f5a97d0a21759bf41297d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f45abcf2f3c6eb40f5acb9fca6230c8 = $(`&lt;div id=&quot;html_6f45abcf2f3c6eb40f5acb9fca6230c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.635             latitude:31.17             PM2_5:41.06571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d35a012e10f5a97d0a21759bf41297d1.setContent(html_6f45abcf2f3c6eb40f5acb9fca6230c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b9c5093988fea3d3bb0f468bf1cf30c.bindPopup(popup_d35a012e10f5a97d0a21759bf41297d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a03d79697cb7f8b1c6aededb3424ca2 = L.circleMarker(\\n\",\n       \"                [27.8072, 114.4011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23f4fcaada89d01cfdb036e1eec5ecae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_001d6fb3fbd35252235e1ab3eb1aa1a7 = $(`&lt;div id=&quot;html_001d6fb3fbd35252235e1ab3eb1aa1a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4011             latitude:27.8072             PM2_5:51.75623269             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23f4fcaada89d01cfdb036e1eec5ecae.setContent(html_001d6fb3fbd35252235e1ab3eb1aa1a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a03d79697cb7f8b1c6aededb3424ca2.bindPopup(popup_23f4fcaada89d01cfdb036e1eec5ecae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8716bc04ad95185c226a11be697bc132 = L.circleMarker(\\n\",\n       \"                [24.339, 102.5381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42e06b1167c87300eded7dee03364842 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c993d195157f6b05da315247236fcfe = $(`&lt;div id=&quot;html_7c993d195157f6b05da315247236fcfe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5381             latitude:24.339             PM2_5:22.35252809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42e06b1167c87300eded7dee03364842.setContent(html_7c993d195157f6b05da315247236fcfe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8716bc04ad95185c226a11be697bc132.bindPopup(popup_42e06b1167c87300eded7dee03364842)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93aecb4af558950d9cf2fab5266f4e8b = L.circleMarker(\\n\",\n       \"                [35.0697, 109.0697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59e369d58c2a43052b63e2a93182b880 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c4eea963ee2b5e77dbaf5899438a7a1 = $(`&lt;div id=&quot;html_4c4eea963ee2b5e77dbaf5899438a7a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0697             latitude:35.0697             PM2_5:43.21111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59e369d58c2a43052b63e2a93182b880.setContent(html_4c4eea963ee2b5e77dbaf5899438a7a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93aecb4af558950d9cf2fab5266f4e8b.bindPopup(popup_59e369d58c2a43052b63e2a93182b880)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d8ea3de2fb09a9922c58687d6ba01020 = L.circleMarker(\\n\",\n       \"                [26.4519, 111.5989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91fade5494f0729647462354a6752c0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b3824ea40ecc88e5c85912caa238e6e = $(`&lt;div id=&quot;html_3b3824ea40ecc88e5c85912caa238e6e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5989             latitude:26.4519             PM2_5:38.40285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91fade5494f0729647462354a6752c0b.setContent(html_3b3824ea40ecc88e5c85912caa238e6e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d8ea3de2fb09a9922c58687d6ba01020.bindPopup(popup_91fade5494f0729647462354a6752c0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_32670c47547c7d374b0e766a9f4baefa = L.circleMarker(\\n\",\n       \"                [31.2659, 121.536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40924f5fea65cb4b0ca76db6e86040d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9eb922e2194bc0640cbfcf5eb35a50d5 = $(`&lt;div id=&quot;html_9eb922e2194bc0640cbfcf5eb35a50d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.536             latitude:31.2659             PM2_5:40.78813559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40924f5fea65cb4b0ca76db6e86040d4.setContent(html_9eb922e2194bc0640cbfcf5eb35a50d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_32670c47547c7d374b0e766a9f4baefa.bindPopup(popup_40924f5fea65cb4b0ca76db6e86040d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4da64505657718409d90b7394a81a95f = L.circleMarker(\\n\",\n       \"                [29.53675, 106.4959],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f2546b9a95cc6eae12266ddfde6c390 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_169158fd841de1c76196c69379d35977 = $(`&lt;div id=&quot;html_169158fd841de1c76196c69379d35977&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.4959             latitude:29.53675             PM2_5:37.87465181             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f2546b9a95cc6eae12266ddfde6c390.setContent(html_169158fd841de1c76196c69379d35977);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4da64505657718409d90b7394a81a95f.bindPopup(popup_7f2546b9a95cc6eae12266ddfde6c390)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c6a9de506b5fd0d9bf765bfbf2cbd15 = L.circleMarker(\\n\",\n       \"                [30.6145, 116.9894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_721093819ed2fdb86a1efb78b35d486a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_266e45ea36a3796c7238fb86455a861f = $(`&lt;div id=&quot;html_266e45ea36a3796c7238fb86455a861f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9894             latitude:30.6145             PM2_5:57.02957746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_721093819ed2fdb86a1efb78b35d486a.setContent(html_266e45ea36a3796c7238fb86455a861f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c6a9de506b5fd0d9bf765bfbf2cbd15.bindPopup(popup_721093819ed2fdb86a1efb78b35d486a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_899219feffa440278056a81e45f2a1ec = L.circleMarker(\\n\",\n       \"                [23.3917, 113.215],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b3a31bf642593edd56604cc6e2310a29 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22da65e6e2263c5799d17906b91128aa = $(`&lt;div id=&quot;html_22da65e6e2263c5799d17906b91128aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.215             latitude:23.3917             PM2_5:31.49579832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b3a31bf642593edd56604cc6e2310a29.setContent(html_22da65e6e2263c5799d17906b91128aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_899219feffa440278056a81e45f2a1ec.bindPopup(popup_b3a31bf642593edd56604cc6e2310a29)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d4086a59c66f2bd2ce11858be471555 = L.circleMarker(\\n\",\n       \"                [30.6463, 111.3549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b64727660cf488f436be1c00182aac51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9adb65db5c3d527c083dfa9883ec1c3f = $(`&lt;div id=&quot;html_9adb65db5c3d527c083dfa9883ec1c3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3549             latitude:30.6463             PM2_5:54.88450704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b64727660cf488f436be1c00182aac51.setContent(html_9adb65db5c3d527c083dfa9883ec1c3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d4086a59c66f2bd2ce11858be471555.bindPopup(popup_b64727660cf488f436be1c00182aac51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bb3499328212fed4a5f6fa682fe6477 = L.circleMarker(\\n\",\n       \"                [29.9899, 103.0013],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8353ff5c7ed606be25029d505dc82e5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6834c7f54de3daa68619ac6f0c7acc8 = $(`&lt;div id=&quot;html_f6834c7f54de3daa68619ac6f0c7acc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0013             latitude:29.9899             PM2_5:48.85180055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8353ff5c7ed606be25029d505dc82e5a.setContent(html_f6834c7f54de3daa68619ac6f0c7acc8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bb3499328212fed4a5f6fa682fe6477.bindPopup(popup_8353ff5c7ed606be25029d505dc82e5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1981c65bcd701b7f3117cd1e083d378a = L.circleMarker(\\n\",\n       \"                [41.3472, 123.8142],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0bec0b75f9720563344a1067ce537ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc6ebfd5460625cb2d31f8204a3ac4d3 = $(`&lt;div id=&quot;html_bc6ebfd5460625cb2d31f8204a3ac4d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8142             latitude:41.3472             PM2_5:30.93201133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0bec0b75f9720563344a1067ce537ef.setContent(html_bc6ebfd5460625cb2d31f8204a3ac4d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1981c65bcd701b7f3117cd1e083d378a.bindPopup(popup_e0bec0b75f9720563344a1067ce537ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44cdd0f7987cd1dd063e60b7ac0e6208 = L.circleMarker(\\n\",\n       \"                [47.3386, 123.9305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_521b8cdb09f02e3390cb2cbc0ce80cc0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e156bd3aa58435baa3155af05b21cdf6 = $(`&lt;div id=&quot;html_e156bd3aa58435baa3155af05b21cdf6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9305             latitude:47.3386             PM2_5:24.86428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_521b8cdb09f02e3390cb2cbc0ce80cc0.setContent(html_e156bd3aa58435baa3155af05b21cdf6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44cdd0f7987cd1dd063e60b7ac0e6208.bindPopup(popup_521b8cdb09f02e3390cb2cbc0ce80cc0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_703f0d88e75d273f0cf90db43f798f05 = L.circleMarker(\\n\",\n       \"                [27.8667, 113.167],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de920092ba7c64411a10ff77d1d4fdb9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df012dce375ac770b4f5f9f60b1ba8cc = $(`&lt;div id=&quot;html_df012dce375ac770b4f5f9f60b1ba8cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.167             latitude:27.8667             PM2_5:38.5579096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de920092ba7c64411a10ff77d1d4fdb9.setContent(html_df012dce375ac770b4f5f9f60b1ba8cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_703f0d88e75d273f0cf90db43f798f05.bindPopup(popup_de920092ba7c64411a10ff77d1d4fdb9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f75249e3147e151e22c7a6b995fd97af = L.circleMarker(\\n\",\n       \"                [40.916, 107.5936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cdb4dab3c703f3a373f257c8866e4bf6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e03ee90589c19157c2eb529268b9d03d = $(`&lt;div id=&quot;html_e03ee90589c19157c2eb529268b9d03d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5936             latitude:40.916             PM2_5:28.17335244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cdb4dab3c703f3a373f257c8866e4bf6.setContent(html_e03ee90589c19157c2eb529268b9d03d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f75249e3147e151e22c7a6b995fd97af.bindPopup(popup_cdb4dab3c703f3a373f257c8866e4bf6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a744406b2c47f6ec107e5cb8f362f911 = L.circleMarker(\\n\",\n       \"                [37.7087, 112.7105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c54e518fda2a52430630f095dbe47804 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbe2dd456c17eef4e460ee0596a87144 = $(`&lt;div id=&quot;html_cbe2dd456c17eef4e460ee0596a87144&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7105             latitude:37.7087             PM2_5:62.86173184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c54e518fda2a52430630f095dbe47804.setContent(html_cbe2dd456c17eef4e460ee0596a87144);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a744406b2c47f6ec107e5cb8f362f911.bindPopup(popup_c54e518fda2a52430630f095dbe47804)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_468ff742dd475afcb1c2e55e02bd733b = L.circleMarker(\\n\",\n       \"                [24.3663, 109.3957],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d56d530999ac21ef646edee22852bd5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8f29f266b56685db7bcd5fb6142bfcd = $(`&lt;div id=&quot;html_d8f29f266b56685db7bcd5fb6142bfcd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.3957             latitude:24.3663             PM2_5:50.98333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d56d530999ac21ef646edee22852bd5f.setContent(html_d8f29f266b56685db7bcd5fb6142bfcd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_468ff742dd475afcb1c2e55e02bd733b.bindPopup(popup_d56d530999ac21ef646edee22852bd5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61070c1887274548ea320e392924696b = L.circleMarker(\\n\",\n       \"                [26.4364, 106.6554],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ea92e0ebf9566e17de175d0281b815c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_109e9ade170a5ae965ae4e6a61b0e589 = $(`&lt;div id=&quot;html_109e9ade170a5ae965ae4e6a61b0e589&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6554             latitude:26.4364             PM2_5:30.33479532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ea92e0ebf9566e17de175d0281b815c.setContent(html_109e9ade170a5ae965ae4e6a61b0e589);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61070c1887274548ea320e392924696b.bindPopup(popup_9ea92e0ebf9566e17de175d0281b815c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9561d1bb593520dbe6df20b597846d7f = L.circleMarker(\\n\",\n       \"                [26.6009, 106.7105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6c05172dd753bb8749cf4e8abb08d6fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c2b24e086523e101877021adf50096f = $(`&lt;div id=&quot;html_4c2b24e086523e101877021adf50096f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7105             latitude:26.6009             PM2_5:37.39915966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6c05172dd753bb8749cf4e8abb08d6fc.setContent(html_4c2b24e086523e101877021adf50096f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9561d1bb593520dbe6df20b597846d7f.bindPopup(popup_6c05172dd753bb8749cf4e8abb08d6fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3ecbb94fe06e1ed996bffb184f9831a = L.circleMarker(\\n\",\n       \"                [31.5631, 120.245],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_573cf378bbe23bd20c9a4ed049f2eff1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc276bed102b0d07f8270eb392acef6d = $(`&lt;div id=&quot;html_dc276bed102b0d07f8270eb392acef6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.245             latitude:31.5631             PM2_5:46.98314607             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_573cf378bbe23bd20c9a4ed049f2eff1.setContent(html_dc276bed102b0d07f8270eb392acef6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3ecbb94fe06e1ed996bffb184f9831a.bindPopup(popup_573cf378bbe23bd20c9a4ed049f2eff1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_556a83b1b674d1a632843b9bf22df5b3 = L.circleMarker(\\n\",\n       \"                [37.4372, 116.2714],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e9312f4ac1d622649299e1116b46303 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a01099578bdd274bbd7cac7f861a2027 = $(`&lt;div id=&quot;html_a01099578bdd274bbd7cac7f861a2027&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.2714             latitude:37.4372             PM2_5:52.45266272             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e9312f4ac1d622649299e1116b46303.setContent(html_a01099578bdd274bbd7cac7f861a2027);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_556a83b1b674d1a632843b9bf22df5b3.bindPopup(popup_5e9312f4ac1d622649299e1116b46303)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a968ff6ab1f3b7391b42974088faae4 = L.circleMarker(\\n\",\n       \"                [35.27, 115.455],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fbe3ebc2d7ab51320696f3064abe75a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7d32c585431586a7bd65931fdf1b740 = $(`&lt;div id=&quot;html_e7d32c585431586a7bd65931fdf1b740&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.455             latitude:35.27             PM2_5:62.4789916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fbe3ebc2d7ab51320696f3064abe75a.setContent(html_e7d32c585431586a7bd65931fdf1b740);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a968ff6ab1f3b7391b42974088faae4.bindPopup(popup_6fbe3ebc2d7ab51320696f3064abe75a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d54f4206a9e37b926583b7cc81c9a07 = L.circleMarker(\\n\",\n       \"                [35.428, 116.6305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70556d02c101954105e55bdf04e0b38a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea3476bf15356ddb2494fe7015ff1b62 = $(`&lt;div id=&quot;html_ea3476bf15356ddb2494fe7015ff1b62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6305             latitude:35.428             PM2_5:49.96927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70556d02c101954105e55bdf04e0b38a.setContent(html_ea3476bf15356ddb2494fe7015ff1b62);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d54f4206a9e37b926583b7cc81c9a07.bindPopup(popup_70556d02c101954105e55bdf04e0b38a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29834d512ba7f70a016a31d105f8476f = L.circleMarker(\\n\",\n       \"                [38.0398, 114.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6d59221b9b998d912ed80eedb080e715 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24a43a8cbed89e787df1d762c19413ee = $(`&lt;div id=&quot;html_24a43a8cbed89e787df1d762c19413ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6046             latitude:38.0398             PM2_5:72.15181058             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6d59221b9b998d912ed80eedb080e715.setContent(html_24a43a8cbed89e787df1d762c19413ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29834d512ba7f70a016a31d105f8476f.bindPopup(popup_6d59221b9b998d912ed80eedb080e715)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_135ceb8258cb958c21b9c50f8ce3dcc8 = L.circleMarker(\\n\",\n       \"                [23.1142, 114.4103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad4671e51d228d7adf616de253be6cdb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4be9968442e1426d268555c883790528 = $(`&lt;div id=&quot;html_4be9968442e1426d268555c883790528&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4103             latitude:23.1142             PM2_5:28.22727273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad4671e51d228d7adf616de253be6cdb.setContent(html_4be9968442e1426d268555c883790528);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_135ceb8258cb958c21b9c50f8ce3dcc8.bindPopup(popup_ad4671e51d228d7adf616de253be6cdb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd09781e4af2e3852829cca488bf42dd = L.circleMarker(\\n\",\n       \"                [22.6164, 110.1433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2f530045c3cae43486496742bd4985e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76474af69892c4bfd12265f3156c8678 = $(`&lt;div id=&quot;html_76474af69892c4bfd12265f3156c8678&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1433             latitude:22.6164             PM2_5:34.49011299             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2f530045c3cae43486496742bd4985e.setContent(html_76474af69892c4bfd12265f3156c8678);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd09781e4af2e3852829cca488bf42dd.bindPopup(popup_f2f530045c3cae43486496742bd4985e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7bffae028aa2d1cf29d5b07b10d4f974 = L.circleMarker(\\n\",\n       \"                [29.57278, 106.4042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf528ba71f2145e2955b54463ee2702a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_982cdd7398dc53ab5b696bfd4f057074 = $(`&lt;div id=&quot;html_982cdd7398dc53ab5b696bfd4f057074&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.4042             latitude:29.57278             PM2_5:40.69553073             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf528ba71f2145e2955b54463ee2702a.setContent(html_982cdd7398dc53ab5b696bfd4f057074);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7bffae028aa2d1cf29d5b07b10d4f974.bindPopup(popup_cf528ba71f2145e2955b54463ee2702a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3279742461fd8a32a36cfbfb4e969103 = L.circleMarker(\\n\",\n       \"                [24.2719, 116.0797],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce2fd50f01ca816a9a091773a7aeba3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f12e92c85e28a75c4f8fd879336cacd8 = $(`&lt;div id=&quot;html_f12e92c85e28a75c4f8fd879336cacd8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0797             latitude:24.2719             PM2_5:25.39915966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce2fd50f01ca816a9a091773a7aeba3a.setContent(html_f12e92c85e28a75c4f8fd879336cacd8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3279742461fd8a32a36cfbfb4e969103.bindPopup(popup_ce2fd50f01ca816a9a091773a7aeba3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d452057a836992b3ff72ddbc6d2715f2 = L.circleMarker(\\n\",\n       \"                [36.1417, 106.2319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59da1c29a97e990286d5854ff95e4d4d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d433011db428f434122f441ec873941 = $(`&lt;div id=&quot;html_7d433011db428f434122f441ec873941&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2319             latitude:36.1417             PM2_5:27.15616046             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59da1c29a97e990286d5854ff95e4d4d.setContent(html_7d433011db428f434122f441ec873941);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d452057a836992b3ff72ddbc6d2715f2.bindPopup(popup_59da1c29a97e990286d5854ff95e4d4d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f886bff6f5268a0b59056ef04f05ef74 = L.circleMarker(\\n\",\n       \"                [29.1029, 119.686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3c6433b3ad7e897db11d64b8ea3daab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f424d1e7791e5553b1c36ecb0506f036 = $(`&lt;div id=&quot;html_f424d1e7791e5553b1c36ecb0506f036&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.686             latitude:29.1029             PM2_5:34.52506964             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3c6433b3ad7e897db11d64b8ea3daab.setContent(html_f424d1e7791e5553b1c36ecb0506f036);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f886bff6f5268a0b59056ef04f05ef74.bindPopup(popup_a3c6433b3ad7e897db11d64b8ea3daab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88491e70f50e69622b10c3d1bb5d6864 = L.circleMarker(\\n\",\n       \"                [30.1819, 120.27],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf6218b14e39d3a6eba89dff89c89112 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8123e4d84c12c6e9f4adf8742eb9f3c6 = $(`&lt;div id=&quot;html_8123e4d84c12c6e9f4adf8742eb9f3c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.27             latitude:30.1819             PM2_5:43.43521127             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf6218b14e39d3a6eba89dff89c89112.setContent(html_8123e4d84c12c6e9f4adf8742eb9f3c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88491e70f50e69622b10c3d1bb5d6864.bindPopup(popup_bf6218b14e39d3a6eba89dff89c89112)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_475600c7a7b191a297dc12e2ab2d3840 = L.circleMarker(\\n\",\n       \"                [30.4133, 114.8131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c657799c22ecb9f37c45a19ef1822df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f57e16b1ecb56caf004d370f656aeca = $(`&lt;div id=&quot;html_4f57e16b1ecb56caf004d370f656aeca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8131             latitude:30.4133             PM2_5:49.26478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c657799c22ecb9f37c45a19ef1822df.setContent(html_4f57e16b1ecb56caf004d370f656aeca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_475600c7a7b191a297dc12e2ab2d3840.bindPopup(popup_1c657799c22ecb9f37c45a19ef1822df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41c37e837e61f0494311331db6a39844 = L.circleMarker(\\n\",\n       \"                [39.9279, 116.225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50e12b40a37c39df3820c9620a82338e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42009f987d19a733e944f702c2be7451 = $(`&lt;div id=&quot;html_42009f987d19a733e944f702c2be7451&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.225             latitude:39.9279             PM2_5:56.0694051             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50e12b40a37c39df3820c9620a82338e.setContent(html_42009f987d19a733e944f702c2be7451);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41c37e837e61f0494311331db6a39844.bindPopup(popup_50e12b40a37c39df3820c9620a82338e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a24bc8076cf7f4041df27289e3cf4fee = L.circleMarker(\\n\",\n       \"                [42.9409, 89.191],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f18d17f444ef6070482f36f36a394b60 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f4dd7d21f5f140ef83b1b6b314b0134 = $(`&lt;div id=&quot;html_8f4dd7d21f5f140ef83b1b6b314b0134&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:89.191             latitude:42.9409             PM2_5:53.92087542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f18d17f444ef6070482f36f36a394b60.setContent(html_8f4dd7d21f5f140ef83b1b6b314b0134);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a24bc8076cf7f4041df27289e3cf4fee.bindPopup(popup_f18d17f444ef6070482f36f36a394b60)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46dcbf02c129661417efb6363e3daff0 = L.circleMarker(\\n\",\n       \"                [29.1242, 110.4697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a632f4d73046be5b32242dd2ef9f4ce6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_760a0187461a297a48ccba9356bb01da = $(`&lt;div id=&quot;html_760a0187461a297a48ccba9356bb01da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4697             latitude:29.1242             PM2_5:40.49860724             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a632f4d73046be5b32242dd2ef9f4ce6.setContent(html_760a0187461a297a48ccba9356bb01da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46dcbf02c129661417efb6363e3daff0.bindPopup(popup_a632f4d73046be5b32242dd2ef9f4ce6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97c431440b5099ba25394d5ddd0a2e70 = L.circleMarker(\\n\",\n       \"                [24.3406, 109.3886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9ac022609f161337ce2bc44b5973c17 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2d645729dc4ca7bd97860deef687d21 = $(`&lt;div id=&quot;html_d2d645729dc4ca7bd97860deef687d21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.3886             latitude:24.3406             PM2_5:40.90250696             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9ac022609f161337ce2bc44b5973c17.setContent(html_d2d645729dc4ca7bd97860deef687d21);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97c431440b5099ba25394d5ddd0a2e70.bindPopup(popup_d9ac022609f161337ce2bc44b5973c17)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88e5f31a7fd2abeacc3ad823b8fda8ea = L.circleMarker(\\n\",\n       \"                [29.7228, 106.626],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c3a09f4667bf7e7bb869f89adb561d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30188c4cebf51d5de4bef9e8fab201ff = $(`&lt;div id=&quot;html_30188c4cebf51d5de4bef9e8fab201ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.626             latitude:29.7228             PM2_5:37.63407821             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c3a09f4667bf7e7bb869f89adb561d2.setContent(html_30188c4cebf51d5de4bef9e8fab201ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88e5f31a7fd2abeacc3ad823b8fda8ea.bindPopup(popup_2c3a09f4667bf7e7bb869f89adb561d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb62f032d805538df3823e08a1cd1ac4 = L.circleMarker(\\n\",\n       \"                [22.7875, 108.301],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7713afd4a288b1c2febeadbc9cd259cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6510e2d85ccddf5b5c693142b5e112bd = $(`&lt;div id=&quot;html_6510e2d85ccddf5b5c693142b5e112bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.301             latitude:22.7875             PM2_5:35.12253521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7713afd4a288b1c2febeadbc9cd259cc.setContent(html_6510e2d85ccddf5b5c693142b5e112bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb62f032d805538df3823e08a1cd1ac4.bindPopup(popup_7713afd4a288b1c2febeadbc9cd259cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23ea34ca9de7097a6883c0043cf45695 = L.circleMarker(\\n\",\n       \"                [31.1654, 121.412],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_426fb6d8490641f75a0ec86a8d095a57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee7903e16fbbbaff23a910f6b0098286 = $(`&lt;div id=&quot;html_ee7903e16fbbbaff23a910f6b0098286&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.412             latitude:31.1654             PM2_5:41.32285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_426fb6d8490641f75a0ec86a8d095a57.setContent(html_ee7903e16fbbbaff23a910f6b0098286);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23ea34ca9de7097a6883c0043cf45695.bindPopup(popup_426fb6d8490641f75a0ec86a8d095a57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ccd8b035a5c8a4e0a28695796f74c18 = L.circleMarker(\\n\",\n       \"                [33.5981, 119.036],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e338c52e234ecf5e151d57e640136419 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1dd7ab1f2fd19ff3e59e672d3c0f6498 = $(`&lt;div id=&quot;html_1dd7ab1f2fd19ff3e59e672d3c0f6498&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.036             latitude:33.5981             PM2_5:43.71126761             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e338c52e234ecf5e151d57e640136419.setContent(html_1dd7ab1f2fd19ff3e59e672d3c0f6498);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ccd8b035a5c8a4e0a28695796f74c18.bindPopup(popup_e338c52e234ecf5e151d57e640136419)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05bc17a5152966913a2e283f63540150 = L.circleMarker(\\n\",\n       \"                [30.5103, 117.0549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e87d32b37f6fa8f4323e70f6e3489f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ceb5b131a3d5239cabb458a356787ba = $(`&lt;div id=&quot;html_4ceb5b131a3d5239cabb458a356787ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0549             latitude:30.5103             PM2_5:46.05865922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e87d32b37f6fa8f4323e70f6e3489f4.setContent(html_4ceb5b131a3d5239cabb458a356787ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05bc17a5152966913a2e283f63540150.bindPopup(popup_2e87d32b37f6fa8f4323e70f6e3489f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63394580858afe4d05442de774d1cc2b = L.circleMarker(\\n\",\n       \"                [32.1319, 119.43],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59555fc19f6a170fbc7f2c5d552f799d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31fc7f3bda558f5cf018d4ceb1601ddd = $(`&lt;div id=&quot;html_31fc7f3bda558f5cf018d4ceb1601ddd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.43             latitude:32.1319             PM2_5:53.00555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59555fc19f6a170fbc7f2c5d552f799d.setContent(html_31fc7f3bda558f5cf018d4ceb1601ddd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63394580858afe4d05442de774d1cc2b.bindPopup(popup_59555fc19f6a170fbc7f2c5d552f799d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_644b838ebf80f2c45b6d966a0b499fb2 = L.circleMarker(\\n\",\n       \"                [44.0297, 87.2717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10527310c6d5fc59c75340005266810a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f146e80c9ed078256de04e4ca634eda0 = $(`&lt;div id=&quot;html_f146e80c9ed078256de04e4ca634eda0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2717             latitude:44.0297             PM2_5:52.32122905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10527310c6d5fc59c75340005266810a.setContent(html_f146e80c9ed078256de04e4ca634eda0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_644b838ebf80f2c45b6d966a0b499fb2.bindPopup(popup_10527310c6d5fc59c75340005266810a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc0b86130161dcd1df4e172299c55d83 = L.circleMarker(\\n\",\n       \"                [30.9431, 118.7175],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32cddef7670a5f68207790588ae24a23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92c333873f9bf86c55397878e2be1351 = $(`&lt;div id=&quot;html_92c333873f9bf86c55397878e2be1351&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7175             latitude:30.9431             PM2_5:41.53221289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32cddef7670a5f68207790588ae24a23.setContent(html_92c333873f9bf86c55397878e2be1351);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc0b86130161dcd1df4e172299c55d83.bindPopup(popup_32cddef7670a5f68207790588ae24a23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75c21014d2746fecae1b68e96d072233 = L.circleMarker(\\n\",\n       \"                [41.765, 123.41],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_888ad35e5b7c26733b33a426d34d38b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_891b78a6a6cc51bf77b33d791eae187a = $(`&lt;div id=&quot;html_891b78a6a6cc51bf77b33d791eae187a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.41             latitude:41.765             PM2_5:38.61699164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_888ad35e5b7c26733b33a426d34d38b8.setContent(html_891b78a6a6cc51bf77b33d791eae187a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75c21014d2746fecae1b68e96d072233.bindPopup(popup_888ad35e5b7c26733b33a426d34d38b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58d1d82c643c5c3fafe9f66a37f22046 = L.circleMarker(\\n\",\n       \"                [32.3061, 118.3158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee81311fb13ec2e6c5c36f277854f6d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_703aef4e8edda38aefb2f84c0d10a5f7 = $(`&lt;div id=&quot;html_703aef4e8edda38aefb2f84c0d10a5f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3158             latitude:32.3061             PM2_5:51.82492997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee81311fb13ec2e6c5c36f277854f6d4.setContent(html_703aef4e8edda38aefb2f84c0d10a5f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58d1d82c643c5c3fafe9f66a37f22046.bindPopup(popup_ee81311fb13ec2e6c5c36f277854f6d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5b7b6a37ad05acb799fdbc48ae1c65f = L.circleMarker(\\n\",\n       \"                [28.71583, 104.5761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef284fcb90f4d5b6d708b9147364b3d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f74929b751e09574bfd38f3aeb14d99 = $(`&lt;div id=&quot;html_3f74929b751e09574bfd38f3aeb14d99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.5761             latitude:28.71583             PM2_5:57.30277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef284fcb90f4d5b6d708b9147364b3d3.setContent(html_3f74929b751e09574bfd38f3aeb14d99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5b7b6a37ad05acb799fdbc48ae1c65f.bindPopup(popup_ef284fcb90f4d5b6d708b9147364b3d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_835999152dab193f93f1d18879576743 = L.circleMarker(\\n\",\n       \"                [27.3392, 103.7032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f1f8393a96e2e49b1e73d9ce55fd1b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14aa9fdda081b3127548173fb028089a = $(`&lt;div id=&quot;html_14aa9fdda081b3127548173fb028089a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7032             latitude:27.3392             PM2_5:26.85310734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f1f8393a96e2e49b1e73d9ce55fd1b6.setContent(html_14aa9fdda081b3127548173fb028089a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_835999152dab193f93f1d18879576743.bindPopup(popup_2f1f8393a96e2e49b1e73d9ce55fd1b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_442c70fbc1709b8c430c311e52095b44 = L.circleMarker(\\n\",\n       \"                [30.6347, 105.8161],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66658a94b5a92e83d4a6c6360f5097ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2edcc26f46fc302502e5875298f0e9c = $(`&lt;div id=&quot;html_d2edcc26f46fc302502e5875298f0e9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8161             latitude:30.6347             PM2_5:35.92634561             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66658a94b5a92e83d4a6c6360f5097ef.setContent(html_d2edcc26f46fc302502e5875298f0e9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_442c70fbc1709b8c430c311e52095b44.bindPopup(popup_66658a94b5a92e83d4a6c6360f5097ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5969304116d3ebf407aa26c1c1c5abba = L.circleMarker(\\n\",\n       \"                [23.105, 113.433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5f941c729c2fefe1264bae93dd50b6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cd45909fb759708cce601e36d95ef68 = $(`&lt;div id=&quot;html_8cd45909fb759708cce601e36d95ef68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.433             latitude:23.105             PM2_5:34.26330532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5f941c729c2fefe1264bae93dd50b6c.setContent(html_8cd45909fb759708cce601e36d95ef68);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5969304116d3ebf407aa26c1c1c5abba.bindPopup(popup_d5f941c729c2fefe1264bae93dd50b6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_409fe5e54956234f47eb0e9e88d9b900 = L.circleMarker(\\n\",\n       \"                [28.1308, 112.8908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec70dc46da5fc36c2552bd6ac25896d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc6f76ac037b13f75263698df4cdaf6f = $(`&lt;div id=&quot;html_bc6f76ac037b13f75263698df4cdaf6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8908             latitude:28.1308             PM2_5:43.11408451             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec70dc46da5fc36c2552bd6ac25896d6.setContent(html_bc6f76ac037b13f75263698df4cdaf6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_409fe5e54956234f47eb0e9e88d9b900.bindPopup(popup_ec70dc46da5fc36c2552bd6ac25896d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_833942e74631e057081782636e26057b = L.circleMarker(\\n\",\n       \"                [41.0781, 121.0986],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e2cf16a456ce89e054e9fb6df07cb2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96f3bcf84ffe0623d458762622ce8083 = $(`&lt;div id=&quot;html_96f3bcf84ffe0623d458762622ce8083&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.0986             latitude:41.0781             PM2_5:28.91643454             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e2cf16a456ce89e054e9fb6df07cb2a.setContent(html_96f3bcf84ffe0623d458762622ce8083);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_833942e74631e057081782636e26057b.bindPopup(popup_5e2cf16a456ce89e054e9fb6df07cb2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e50dc56ac7ad392ece211515fd9b1f4 = L.circleMarker(\\n\",\n       \"                [25.1174, 117.0181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f98dc8d484de219328d70e6bfa1cbe0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f55460eaa3389a2d91a2471bbc157ff0 = $(`&lt;div id=&quot;html_f55460eaa3389a2d91a2471bbc157ff0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0181             latitude:25.1174             PM2_5:23.24930362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f98dc8d484de219328d70e6bfa1cbe0.setContent(html_f55460eaa3389a2d91a2471bbc157ff0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e50dc56ac7ad392ece211515fd9b1f4.bindPopup(popup_9f98dc8d484de219328d70e6bfa1cbe0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d3bbb633d9bc26ea28109eb2bcdf3f1 = L.circleMarker(\\n\",\n       \"                [34.6972, 119.3581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_693c9e4da2ce40679f39c8043bf53eb6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc6f3ecbe52433ae13b9a4b9e827ff1b = $(`&lt;div id=&quot;html_fc6f3ecbe52433ae13b9a4b9e827ff1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.3581             latitude:34.6972             PM2_5:39.00854701             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_693c9e4da2ce40679f39c8043bf53eb6.setContent(html_fc6f3ecbe52433ae13b9a4b9e827ff1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d3bbb633d9bc26ea28109eb2bcdf3f1.bindPopup(popup_693c9e4da2ce40679f39c8043bf53eb6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48095e649d772b48d2d023e5e15b3425 = L.circleMarker(\\n\",\n       \"                [34.6869, 112.4831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0cb64e260e0d1c64f097f05185bfabc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91697b8ac06dc5fca62d2f46da94f892 = $(`&lt;div id=&quot;html_91697b8ac06dc5fca62d2f46da94f892&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4831             latitude:34.6869             PM2_5:60.01825843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0cb64e260e0d1c64f097f05185bfabc.setContent(html_91697b8ac06dc5fca62d2f46da94f892);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48095e649d772b48d2d023e5e15b3425.bindPopup(popup_f0cb64e260e0d1c64f097f05185bfabc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5df59b6f7db15a99e847bf7decb662c5 = L.circleMarker(\\n\",\n       \"                [34.6231, 112.3844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bbe5ff21b154f9e10254842156b0f01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1efff0c6f9a1923cfb10e5650d6cae5 = $(`&lt;div id=&quot;html_f1efff0c6f9a1923cfb10e5650d6cae5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3844             latitude:34.6231             PM2_5:61.63098592             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bbe5ff21b154f9e10254842156b0f01.setContent(html_f1efff0c6f9a1923cfb10e5650d6cae5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5df59b6f7db15a99e847bf7decb662c5.bindPopup(popup_5bbe5ff21b154f9e10254842156b0f01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7807280b10f0efa080df5a5bec03487d = L.circleMarker(\\n\",\n       \"                [37.4314, 118.6672],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d174fabb6653a36523905fce45632285 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27e0feb0e0fb7d27c8486980a4d13f95 = $(`&lt;div id=&quot;html_27e0feb0e0fb7d27c8486980a4d13f95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6672             latitude:37.4314             PM2_5:46.0             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d174fabb6653a36523905fce45632285.setContent(html_27e0feb0e0fb7d27c8486980a4d13f95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7807280b10f0efa080df5a5bec03487d.bindPopup(popup_d174fabb6653a36523905fce45632285)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ecfa7fc2502e3a6236782d8270464ed = L.circleMarker(\\n\",\n       \"                [35.04388889, 111.0522222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9672e318a1a05772e82a246aeefef2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1db5faeef070fb2afe81e710f3e8751 = $(`&lt;div id=&quot;html_b1db5faeef070fb2afe81e710f3e8751&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0522222             latitude:35.04388889             PM2_5:72.68296089             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9672e318a1a05772e82a246aeefef2d.setContent(html_b1db5faeef070fb2afe81e710f3e8751);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ecfa7fc2502e3a6236782d8270464ed.bindPopup(popup_c9672e318a1a05772e82a246aeefef2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f99e36e0f0c1c8204d714e09fa6529cd = L.circleMarker(\\n\",\n       \"                [38.2991, 116.8854],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4dc13593bb32354ef3fe14a49a1cd945 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a585d5c0f8ca4f70a3d82a3e055b788 = $(`&lt;div id=&quot;html_4a585d5c0f8ca4f70a3d82a3e055b788&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8854             latitude:38.2991             PM2_5:49.09749304             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4dc13593bb32354ef3fe14a49a1cd945.setContent(html_4a585d5c0f8ca4f70a3d82a3e055b788);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f99e36e0f0c1c8204d714e09fa6529cd.bindPopup(popup_4dc13593bb32354ef3fe14a49a1cd945)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a96302add9380f3240172baf49f80a5a = L.circleMarker(\\n\",\n       \"                [21.7631, 108.3511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b9591c07cd5a8743e5ca97911b88fc8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f73bba31ae900d451fe2887ead94605 = $(`&lt;div id=&quot;html_2f73bba31ae900d451fe2887ead94605&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.3511             latitude:21.7631             PM2_5:31.28212291             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b9591c07cd5a8743e5ca97911b88fc8.setContent(html_2f73bba31ae900d451fe2887ead94605);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a96302add9380f3240172baf49f80a5a.bindPopup(popup_7b9591c07cd5a8743e5ca97911b88fc8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d781860a5e7f3989c6c8bd281edaf103 = L.circleMarker(\\n\",\n       \"                [36.4343, 116.0072],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a84f17bc49f6b6ccdbc5e7cb02e3f94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db6851a5f8e642f0062111605a407b2e = $(`&lt;div id=&quot;html_db6851a5f8e642f0062111605a407b2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0072             latitude:36.4343             PM2_5:61.4815864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a84f17bc49f6b6ccdbc5e7cb02e3f94.setContent(html_db6851a5f8e642f0062111605a407b2e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d781860a5e7f3989c6c8bd281edaf103.bindPopup(popup_9a84f17bc49f6b6ccdbc5e7cb02e3f94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec926dc4acb950cd36a197954b1c8589 = L.circleMarker(\\n\",\n       \"                [34.3956, 108.7197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8d2798d62d8e86936a902debf49d94b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c56e072c0e641251f655d9c56d0f726 = $(`&lt;div id=&quot;html_1c56e072c0e641251f655d9c56d0f726&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7197             latitude:34.3956             PM2_5:60.59470752             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8d2798d62d8e86936a902debf49d94b.setContent(html_1c56e072c0e641251f655d9c56d0f726);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec926dc4acb950cd36a197954b1c8589.bindPopup(popup_e8d2798d62d8e86936a902debf49d94b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8dfdfcf99d4604fc8777c385a503519 = L.circleMarker(\\n\",\n       \"                [26.6514, 118.1819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8ced88a685db293d50faf3d581f52c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30ea6f8dc71fa8ef6306e9a7746d5d59 = $(`&lt;div id=&quot;html_30ea6f8dc71fa8ef6306e9a7746d5d59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1819             latitude:26.6514             PM2_5:22.86312849             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8ced88a685db293d50faf3d581f52c7.setContent(html_30ea6f8dc71fa8ef6306e9a7746d5d59);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8dfdfcf99d4604fc8777c385a503519.bindPopup(popup_c8ced88a685db293d50faf3d581f52c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ed574f3a5d855a7c7b75a9774f30bed = L.circleMarker(\\n\",\n       \"                [22.5328, 113.024],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8622fc54eb5bff55953b88cd7de4f795 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb4759ec1322caf2bfedab7c85d3dfff = $(`&lt;div id=&quot;html_eb4759ec1322caf2bfedab7c85d3dfff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.024             latitude:22.5328             PM2_5:36.91903409             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8622fc54eb5bff55953b88cd7de4f795.setContent(html_eb4759ec1322caf2bfedab7c85d3dfff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ed574f3a5d855a7c7b75a9774f30bed.bindPopup(popup_8622fc54eb5bff55953b88cd7de4f795)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9aa00ce4a59e962a4aab845fbd347877 = L.circleMarker(\\n\",\n       \"                [36.885, 120.515],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96cd93c91ac923bea39da8e4d4d485c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4c7bc2e9e2edecbe2329b95d8b6364f = $(`&lt;div id=&quot;html_f4c7bc2e9e2edecbe2329b95d8b6364f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.515             latitude:36.885             PM2_5:39.55890805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96cd93c91ac923bea39da8e4d4d485c4.setContent(html_f4c7bc2e9e2edecbe2329b95d8b6364f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9aa00ce4a59e962a4aab845fbd347877.bindPopup(popup_96cd93c91ac923bea39da8e4d4d485c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49cb3d77d6d6b3c260189389cb8b7777 = L.circleMarker(\\n\",\n       \"                [29.5947, 105.0717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e019aefdc4a1fda4d2f94d5835fd4065 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d885514f7b5b4697579f99645a2ad94 = $(`&lt;div id=&quot;html_8d885514f7b5b4697579f99645a2ad94&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0717             latitude:29.5947             PM2_5:34.1028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e019aefdc4a1fda4d2f94d5835fd4065.setContent(html_8d885514f7b5b4697579f99645a2ad94);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49cb3d77d6d6b3c260189389cb8b7777.bindPopup(popup_e019aefdc4a1fda4d2f94d5835fd4065)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db24eb102e4366d2eacdd9c6e7fcad6e = L.circleMarker(\\n\",\n       \"                [45.2948, 131.0103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ada66184ed2a725d66a9638e50e4c2d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a690e8365989f5d90fed37e98b5d383 = $(`&lt;div id=&quot;html_0a690e8365989f5d90fed37e98b5d383&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.0103             latitude:45.2948             PM2_5:25.48174157             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ada66184ed2a725d66a9638e50e4c2d7.setContent(html_0a690e8365989f5d90fed37e98b5d383);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db24eb102e4366d2eacdd9c6e7fcad6e.bindPopup(popup_ada66184ed2a725d66a9638e50e4c2d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44cce32cdc12db895e1b3e56ee7e8376 = L.circleMarker(\\n\",\n       \"                [49.1577, 119.7512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33efb3258a16b510d762c884c7cefb4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_702598589b495d0527c7e7be742a1082 = $(`&lt;div id=&quot;html_702598589b495d0527c7e7be742a1082&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7512             latitude:49.1577             PM2_5:10.28151261             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33efb3258a16b510d762c884c7cefb4a.setContent(html_702598589b495d0527c7e7be742a1082);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44cce32cdc12db895e1b3e56ee7e8376.bindPopup(popup_33efb3258a16b510d762c884c7cefb4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f5f81196084268cb2b806da040e602b = L.circleMarker(\\n\",\n       \"                [41.1953, 123.2],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_653a315b0c1e2e589b98897daba956ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a47301d6d67053ec77c23d657608e87 = $(`&lt;div id=&quot;html_2a47301d6d67053ec77c23d657608e87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.2             latitude:41.1953             PM2_5:26.80898876             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_653a315b0c1e2e589b98897daba956ea.setContent(html_2a47301d6d67053ec77c23d657608e87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f5f81196084268cb2b806da040e602b.bindPopup(popup_653a315b0c1e2e589b98897daba956ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fd214042939eec21736f7373041251c = L.circleMarker(\\n\",\n       \"                [37.197, 122.038],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_315824e33187eac2525535052414012c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6eca85008f54a798f595bfb77b693bac = $(`&lt;div id=&quot;html_6eca85008f54a798f595bfb77b693bac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.038             latitude:37.197             PM2_5:22.64730878             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_315824e33187eac2525535052414012c.setContent(html_6eca85008f54a798f595bfb77b693bac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fd214042939eec21736f7373041251c.bindPopup(popup_315824e33187eac2525535052414012c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2ef24659b4137d70a10ccfe8f998440 = L.circleMarker(\\n\",\n       \"                [29.077, 119.647],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86209e44d953b7c9176fa6e73226e222 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_232262dd334d12b99cbef095a50438e4 = $(`&lt;div id=&quot;html_232262dd334d12b99cbef095a50438e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.647             latitude:29.077             PM2_5:37.48739496             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86209e44d953b7c9176fa6e73226e222.setContent(html_232262dd334d12b99cbef095a50438e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2ef24659b4137d70a10ccfe8f998440.bindPopup(popup_86209e44d953b7c9176fa6e73226e222)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5cc4aa9d8575046e17bcc86b11461943 = L.circleMarker(\\n\",\n       \"                [40.1269, 113.2661],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ddd55c9eb4e1bace31038e9df2b8e486 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d28e9fda5d7b8b7f37e7806ebd93aace = $(`&lt;div id=&quot;html_d28e9fda5d7b8b7f37e7806ebd93aace&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2661             latitude:40.1269             PM2_5:42.12784091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ddd55c9eb4e1bace31038e9df2b8e486.setContent(html_d28e9fda5d7b8b7f37e7806ebd93aace);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5cc4aa9d8575046e17bcc86b11461943.bindPopup(popup_ddd55c9eb4e1bace31038e9df2b8e486)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f69f45bc633015ba26144273e0f43c19 = L.circleMarker(\\n\",\n       \"                [39.7711, 98.2908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c446d6a229ef20b464fc2c9fd9497070 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3ed2b6e7ac3b89979a2ea77796a21e3 = $(`&lt;div id=&quot;html_b3ed2b6e7ac3b89979a2ea77796a21e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.2908             latitude:39.7711             PM2_5:30.22005571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c446d6a229ef20b464fc2c9fd9497070.setContent(html_b3ed2b6e7ac3b89979a2ea77796a21e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f69f45bc633015ba26144273e0f43c19.bindPopup(popup_c446d6a229ef20b464fc2c9fd9497070)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7fc4aa6f6861d278f5cfb255059377c = L.circleMarker(\\n\",\n       \"                [31.6861, 118.5058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a83220d46ddfe5da262e61c160734a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80eb92c519963a78fa21269c327cc0ed = $(`&lt;div id=&quot;html_80eb92c519963a78fa21269c327cc0ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5058             latitude:31.6861             PM2_5:45.78672316             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a83220d46ddfe5da262e61c160734a5.setContent(html_80eb92c519963a78fa21269c327cc0ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7fc4aa6f6861d278f5cfb255059377c.bindPopup(popup_0a83220d46ddfe5da262e61c160734a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7b02fd9450821e6b5171a3f96fc4879 = L.circleMarker(\\n\",\n       \"                [34.3469, 106.005],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27c642783ac6458250b103f3db38d9e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c5adb39702cda6a74b17ba27c237d5c = $(`&lt;div id=&quot;html_9c5adb39702cda6a74b17ba27c237d5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.005             latitude:34.3469             PM2_5:21.88243626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27c642783ac6458250b103f3db38d9e9.setContent(html_9c5adb39702cda6a74b17ba27c237d5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7b02fd9450821e6b5171a3f96fc4879.bindPopup(popup_27c642783ac6458250b103f3db38d9e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b75e243c5d26bd280ed1622b756ea162 = L.circleMarker(\\n\",\n       \"                [31.2797, 107.5272],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6d3386799b26dd73b4f4102563851b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d64bc190b781c293cc55f5aa984e7cb4 = $(`&lt;div id=&quot;html_d64bc190b781c293cc55f5aa984e7cb4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5272             latitude:31.2797             PM2_5:42.31320225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6d3386799b26dd73b4f4102563851b1.setContent(html_d64bc190b781c293cc55f5aa984e7cb4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b75e243c5d26bd280ed1622b756ea162.bindPopup(popup_b6d3386799b26dd73b4f4102563851b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a65809d23d311994c6d4157cf3b7605 = L.circleMarker(\\n\",\n       \"                [34.407, 115.6386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9cb2f55ddec56abfb0fda981826993e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3e18542c8f0c7c63eb95745869048fb = $(`&lt;div id=&quot;html_f3e18542c8f0c7c63eb95745869048fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6386             latitude:34.407             PM2_5:54.83519553             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9cb2f55ddec56abfb0fda981826993e.setContent(html_f3e18542c8f0c7c63eb95745869048fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a65809d23d311994c6d4157cf3b7605.bindPopup(popup_e9cb2f55ddec56abfb0fda981826993e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61d011290b7f4477a52608a0d0fc443a = L.circleMarker(\\n\",\n       \"                [31.0283, 103.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b017d21fe6e6a7761e4760ec898e01d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a613309427bd7272b6681d40bb7581e = $(`&lt;div id=&quot;html_4a613309427bd7272b6681d40bb7581e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.613             latitude:31.0283             PM2_5:38.79661017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b017d21fe6e6a7761e4760ec898e01d1.setContent(html_4a613309427bd7272b6681d40bb7581e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61d011290b7f4477a52608a0d0fc443a.bindPopup(popup_b017d21fe6e6a7761e4760ec898e01d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16c57dd875de0c720a2ea7a8fc794969 = L.circleMarker(\\n\",\n       \"                [43.85, 125.217],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a195d7802a4dee8eb2d6cc9aa1450af7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad4613a8f1b40a1e090186c4023df722 = $(`&lt;div id=&quot;html_ad4613a8f1b40a1e090186c4023df722&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.217             latitude:43.85             PM2_5:27.01971831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a195d7802a4dee8eb2d6cc9aa1450af7.setContent(html_ad4613a8f1b40a1e090186c4023df722);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16c57dd875de0c720a2ea7a8fc794969.bindPopup(popup_a195d7802a4dee8eb2d6cc9aa1450af7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b74087d8f70a8b72837d0480cecf7d2 = L.circleMarker(\\n\",\n       \"                [30.0874, 103.8416],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ea86bede370b715f06edad491739f42 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f437450a0c98aad3a107abb1f3fb450 = $(`&lt;div id=&quot;html_1f437450a0c98aad3a107abb1f3fb450&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8416             latitude:30.0874             PM2_5:43.24930362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ea86bede370b715f06edad491739f42.setContent(html_1f437450a0c98aad3a107abb1f3fb450);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b74087d8f70a8b72837d0480cecf7d2.bindPopup(popup_2ea86bede370b715f06edad491739f42)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae395e2f19dcf988df609fd4b7724a22 = L.circleMarker(\\n\",\n       \"                [34.8731, 108.9589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74e183ed98818e96444edde04cee4f61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_853b4d92fa432b105802266aab8a9850 = $(`&lt;div id=&quot;html_853b4d92fa432b105802266aab8a9850&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.9589             latitude:34.8731             PM2_5:51.80346821             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74e183ed98818e96444edde04cee4f61.setContent(html_853b4d92fa432b105802266aab8a9850);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae395e2f19dcf988df609fd4b7724a22.bindPopup(popup_74e183ed98818e96444edde04cee4f61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf7652fbb907709f28b8190ad1321aa1 = L.circleMarker(\\n\",\n       \"                [46.5776, 125.1386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc7935bd571256e4b667b446d79f2df6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30d56a9f3de627a557a37328b53e46cf = $(`&lt;div id=&quot;html_30d56a9f3de627a557a37328b53e46cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1386             latitude:46.5776             PM2_5:32.70612813             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc7935bd571256e4b667b446d79f2df6.setContent(html_30d56a9f3de627a557a37328b53e46cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf7652fbb907709f28b8190ad1321aa1.bindPopup(popup_dc7935bd571256e4b667b446d79f2df6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33d754ff5e00cc7e4d457a48d6d2dd20 = L.circleMarker(\\n\",\n       \"                [32.1403, 114.0122],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2dcb2068b208bb05e0db3fc6df854209 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f08b30ca8eba8b185d4daec84158d04c = $(`&lt;div id=&quot;html_f08b30ca8eba8b185d4daec84158d04c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0122             latitude:32.1403             PM2_5:44.81843575             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2dcb2068b208bb05e0db3fc6df854209.setContent(html_f08b30ca8eba8b185d4daec84158d04c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33d754ff5e00cc7e4d457a48d6d2dd20.bindPopup(popup_2dcb2068b208bb05e0db3fc6df854209)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_324060215d877d4629b247d8e5aaf5eb = L.circleMarker(\\n\",\n       \"                [25.0441, 101.5482],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_135dbffb5034fe9b120242228f4416f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8bbdd80e0cd5953fe4d8ff7b024bc997 = $(`&lt;div id=&quot;html_8bbdd80e0cd5953fe4d8ff7b024bc997&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.5482             latitude:25.0441             PM2_5:15.67688022             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_135dbffb5034fe9b120242228f4416f8.setContent(html_8bbdd80e0cd5953fe4d8ff7b024bc997);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_324060215d877d4629b247d8e5aaf5eb.bindPopup(popup_135dbffb5034fe9b120242228f4416f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4aaf572086327a98b9991dbe3ac49764 = L.circleMarker(\\n\",\n       \"                [30.63, 104.1113889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_691dac4a6a6c27f17b17315203f8004b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c954b35e2025ea50589a1bdec7171f2 = $(`&lt;div id=&quot;html_9c954b35e2025ea50589a1bdec7171f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1113889             latitude:30.63             PM2_5:52.46787709             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_691dac4a6a6c27f17b17315203f8004b.setContent(html_9c954b35e2025ea50589a1bdec7171f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4aaf572086327a98b9991dbe3ac49764.bindPopup(popup_691dac4a6a6c27f17b17315203f8004b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33ad3a9c44428d7747c41c02889b7101 = L.circleMarker(\\n\",\n       \"                [33.721, 113.322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e96ccc957c93ce88bdcb876c571beed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ede218b231018ef04ebd0d2a42587ed = $(`&lt;div id=&quot;html_0ede218b231018ef04ebd0d2a42587ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.322             latitude:33.721             PM2_5:62.36805556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e96ccc957c93ce88bdcb876c571beed.setContent(html_0ede218b231018ef04ebd0d2a42587ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33ad3a9c44428d7747c41c02889b7101.bindPopup(popup_7e96ccc957c93ce88bdcb876c571beed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2aa25a45374fd17b3ce0863044532ae = L.circleMarker(\\n\",\n       \"                [23.05361111, 113.7819444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03bbec986b6d8ed2174b78e3b2b2f2d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6818a5c01eace4436b1063876a2ce4ee = $(`&lt;div id=&quot;html_6818a5c01eace4436b1063876a2ce4ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7819444             latitude:23.05361111             PM2_5:37.732493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03bbec986b6d8ed2174b78e3b2b2f2d5.setContent(html_6818a5c01eace4436b1063876a2ce4ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2aa25a45374fd17b3ce0863044532ae.bindPopup(popup_03bbec986b6d8ed2174b78e3b2b2f2d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae343a7b91317255406950080af7b3ef = L.circleMarker(\\n\",\n       \"                [35.1147, 111.0414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4e62b09ba9f50c51b85c57e2b532b36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6df8147c25a74373f8ac9359d94099f6 = $(`&lt;div id=&quot;html_6df8147c25a74373f8ac9359d94099f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0414             latitude:35.1147             PM2_5:57.46648045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4e62b09ba9f50c51b85c57e2b532b36.setContent(html_6df8147c25a74373f8ac9359d94099f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae343a7b91317255406950080af7b3ef.bindPopup(popup_d4e62b09ba9f50c51b85c57e2b532b36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a13307ecf4e4c6d08d00ea96e26f1fc = L.circleMarker(\\n\",\n       \"                [38.5036, 106.1358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3bae078efcb83cf3284e801ca216d9fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_961c1f0549a56f9ff05702ee25b31ef3 = $(`&lt;div id=&quot;html_961c1f0549a56f9ff05702ee25b31ef3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1358             latitude:38.5036             PM2_5:34.52222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3bae078efcb83cf3284e801ca216d9fa.setContent(html_961c1f0549a56f9ff05702ee25b31ef3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a13307ecf4e4c6d08d00ea96e26f1fc.bindPopup(popup_3bae078efcb83cf3284e801ca216d9fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eaef8ee72804add899f79fcce1bb2101 = L.circleMarker(\\n\",\n       \"                [36.4796, 115.9835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7e31460e678fd28304adf50e93f91ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef5ec4673dd81cf18a2e3ad625b03bf7 = $(`&lt;div id=&quot;html_ef5ec4673dd81cf18a2e3ad625b03bf7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9835             latitude:36.4796             PM2_5:57.26740947             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7e31460e678fd28304adf50e93f91ad.setContent(html_ef5ec4673dd81cf18a2e3ad625b03bf7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eaef8ee72804add899f79fcce1bb2101.bindPopup(popup_e7e31460e678fd28304adf50e93f91ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_888afef1b9696b644851a7c578d27a28 = L.circleMarker(\\n\",\n       \"                [44.1756, 87.5475],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c2fecfa037dafd6ab71de263a439078 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f04873932cf4909730893c45335fe6fb = $(`&lt;div id=&quot;html_f04873932cf4909730893c45335fe6fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5475             latitude:44.1756             PM2_5:61.95505618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c2fecfa037dafd6ab71de263a439078.setContent(html_f04873932cf4909730893c45335fe6fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_888afef1b9696b644851a7c578d27a28.bindPopup(popup_1c2fecfa037dafd6ab71de263a439078)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_413d02cfdd6d9ea3bf515f514575aef1 = L.circleMarker(\\n\",\n       \"                [30.3058, 120.348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f547af478075ec73b7df02a674abdbc7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2bb2931df7e928cbbcea527e63e2ace = $(`&lt;div id=&quot;html_b2bb2931df7e928cbbcea527e63e2ace&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.348             latitude:30.3058             PM2_5:46.53047091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f547af478075ec73b7df02a674abdbc7.setContent(html_b2bb2931df7e928cbbcea527e63e2ace);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_413d02cfdd6d9ea3bf515f514575aef1.bindPopup(popup_f547af478075ec73b7df02a674abdbc7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68f52aae94dbafd6db21d653a1a17e2c = L.circleMarker(\\n\",\n       \"                [29.6039, 115.9114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e4983d59d284e66c2553cdda0ad4c56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51d62464dcdfdbed5f0021ee0d016d25 = $(`&lt;div id=&quot;html_51d62464dcdfdbed5f0021ee0d016d25&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9114             latitude:29.6039             PM2_5:43.8487395             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e4983d59d284e66c2553cdda0ad4c56.setContent(html_51d62464dcdfdbed5f0021ee0d016d25);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68f52aae94dbafd6db21d653a1a17e2c.bindPopup(popup_6e4983d59d284e66c2553cdda0ad4c56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d25e579bc875df080225dfa6236cd2c3 = L.circleMarker(\\n\",\n       \"                [27.5733, 109.9333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1dbe056ddad849e0e3da954b96ca4c7d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cf279a2b788120eb51e0d5e3b10fa72 = $(`&lt;div id=&quot;html_8cf279a2b788120eb51e0d5e3b10fa72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9333             latitude:27.5733             PM2_5:42.20140845             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1dbe056ddad849e0e3da954b96ca4c7d.setContent(html_8cf279a2b788120eb51e0d5e3b10fa72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d25e579bc875df080225dfa6236cd2c3.bindPopup(popup_1dbe056ddad849e0e3da954b96ca4c7d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2913b3b466b5f04130c32571c101d245 = L.circleMarker(\\n\",\n       \"                [28.2189, 112.8872],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c8cb93974d24e2ff20932f47f70d635 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_654a8e58b4864571c6fb85b8c8297a02 = $(`&lt;div id=&quot;html_654a8e58b4864571c6fb85b8c8297a02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8872             latitude:28.2189             PM2_5:46.02374302             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c8cb93974d24e2ff20932f47f70d635.setContent(html_654a8e58b4864571c6fb85b8c8297a02);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2913b3b466b5f04130c32571c101d245.bindPopup(popup_0c8cb93974d24e2ff20932f47f70d635)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d657a9d9c439f0330369bab74e2333a0 = L.circleMarker(\\n\",\n       \"                [27.7758, 115.0586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a08bcf6a9f62a919ec94afa2498aaf35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca1478cde03844ed5aec31b5364dbcf8 = $(`&lt;div id=&quot;html_ca1478cde03844ed5aec31b5364dbcf8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0586             latitude:27.7758             PM2_5:43.86864407             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a08bcf6a9f62a919ec94afa2498aaf35.setContent(html_ca1478cde03844ed5aec31b5364dbcf8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d657a9d9c439f0330369bab74e2333a0.bindPopup(popup_a08bcf6a9f62a919ec94afa2498aaf35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_196933d733401ceb79a8405ff17ba9c4 = L.circleMarker(\\n\",\n       \"                [24.3304, 109.4108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a61a17786247e2284707d7c3dacd7fb1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a24a413cadc456f8cc8d7d20eb1a58c1 = $(`&lt;div id=&quot;html_a24a413cadc456f8cc8d7d20eb1a58c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4108             latitude:24.3304             PM2_5:44.54661017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a61a17786247e2284707d7c3dacd7fb1.setContent(html_a24a413cadc456f8cc8d7d20eb1a58c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_196933d733401ceb79a8405ff17ba9c4.bindPopup(popup_a61a17786247e2284707d7c3dacd7fb1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d98f80396917578aee15e74abdd92a16 = L.circleMarker(\\n\",\n       \"                [24.795928, 113.598061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6517c7636a2303ab65bc8d0f62d4eace = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5e386c76f9a02b1d70f254ca1250f67 = $(`&lt;div id=&quot;html_b5e386c76f9a02b1d70f254ca1250f67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.598061             latitude:24.795928             PM2_5:31.37429379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6517c7636a2303ab65bc8d0f62d4eace.setContent(html_b5e386c76f9a02b1d70f254ca1250f67);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d98f80396917578aee15e74abdd92a16.bindPopup(popup_6517c7636a2303ab65bc8d0f62d4eace)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_915b48171c7c65a68434e0f254d8a58b = L.circleMarker(\\n\",\n       \"                [36.71, 117.541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7af02382559b8dd764656c6c24e75b30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f68ef81ef92fc40fb00cc91675971c9 = $(`&lt;div id=&quot;html_8f68ef81ef92fc40fb00cc91675971c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.541             latitude:36.71             PM2_5:54.36             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7af02382559b8dd764656c6c24e75b30.setContent(html_8f68ef81ef92fc40fb00cc91675971c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_915b48171c7c65a68434e0f254d8a58b.bindPopup(popup_7af02382559b8dd764656c6c24e75b30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05c50d8661c9312b6e961906d7275c7a = L.circleMarker(\\n\",\n       \"                [43.9317, 116.1042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3000836455933e32a9f9cc6beebd9ffc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80aeba3e41c7c124b2e295d7b52af237 = $(`&lt;div id=&quot;html_80aeba3e41c7c124b2e295d7b52af237&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1042             latitude:43.9317             PM2_5:15.73460411             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3000836455933e32a9f9cc6beebd9ffc.setContent(html_80aeba3e41c7c124b2e295d7b52af237);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05c50d8661c9312b6e961906d7275c7a.bindPopup(popup_3000836455933e32a9f9cc6beebd9ffc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03bb88348de26807b1e77846312a88ef = L.circleMarker(\\n\",\n       \"                [23.2539, 116.6092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a402f332037da2e0d76a077b036be893 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7605146cfd1837a002c5b693eec9278 = $(`&lt;div id=&quot;html_c7605146cfd1837a002c5b693eec9278&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6092             latitude:23.2539             PM2_5:24.50423729             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a402f332037da2e0d76a077b036be893.setContent(html_c7605146cfd1837a002c5b693eec9278);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03bb88348de26807b1e77846312a88ef.bindPopup(popup_a402f332037da2e0d76a077b036be893)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6dce48bb9acba6ee110818fc7391a56c = L.circleMarker(\\n\",\n       \"                [29.3411, 104.7692],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_077176b439d31785fdf10f41225718f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed82e4d547796a958439b44174cb5a82 = $(`&lt;div id=&quot;html_ed82e4d547796a958439b44174cb5a82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7692             latitude:29.3411             PM2_5:64.99164345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_077176b439d31785fdf10f41225718f8.setContent(html_ed82e4d547796a958439b44174cb5a82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6dce48bb9acba6ee110818fc7391a56c.bindPopup(popup_077176b439d31785fdf10f41225718f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc307da4c34b7da9b02bd6bb7f7fc4a3 = L.circleMarker(\\n\",\n       \"                [39.9425, 116.361],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9a9d44528dd8996fe67984fcbf07d07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e3b3e9b18f837d8a57dbba74c466cc1 = $(`&lt;div id=&quot;html_3e3b3e9b18f837d8a57dbba74c466cc1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.361             latitude:39.9425             PM2_5:53.87780899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9a9d44528dd8996fe67984fcbf07d07.setContent(html_3e3b3e9b18f837d8a57dbba74c466cc1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc307da4c34b7da9b02bd6bb7f7fc4a3.bindPopup(popup_e9a9d44528dd8996fe67984fcbf07d07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bead9642012066c5ef930062c143ed6a = L.circleMarker(\\n\",\n       \"                [32.625, 116.7039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22a44253780bb8ae4a5fd526127dcdb5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_888f37e260d60b32f34bfb75264541aa = $(`&lt;div id=&quot;html_888f37e260d60b32f34bfb75264541aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7039             latitude:32.625             PM2_5:58.06582633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22a44253780bb8ae4a5fd526127dcdb5.setContent(html_888f37e260d60b32f34bfb75264541aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bead9642012066c5ef930062c143ed6a.bindPopup(popup_22a44253780bb8ae4a5fd526127dcdb5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eac44970c63fe6ab2d6b4934ea1357bc = L.circleMarker(\\n\",\n       \"                [41.2736, 123.1761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a97f31b891dc6d51a70f20fb9cfbf85f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb3a811561743e549ed0292ff207aa9c = $(`&lt;div id=&quot;html_fb3a811561743e549ed0292ff207aa9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1761             latitude:41.2736             PM2_5:31.98467967             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a97f31b891dc6d51a70f20fb9cfbf85f.setContent(html_fb3a811561743e549ed0292ff207aa9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eac44970c63fe6ab2d6b4934ea1357bc.bindPopup(popup_a97f31b891dc6d51a70f20fb9cfbf85f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40f8c8150bb780c9d8c3780c932ca48f = L.circleMarker(\\n\",\n       \"                [34.1546, 108.906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2524e1156c95c9450bc5cf3875a177e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ecc8c59174410a91a6dff25c984fd6d = $(`&lt;div id=&quot;html_4ecc8c59174410a91a6dff25c984fd6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.906             latitude:34.1546             PM2_5:63.16142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2524e1156c95c9450bc5cf3875a177e7.setContent(html_4ecc8c59174410a91a6dff25c984fd6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40f8c8150bb780c9d8c3780c932ca48f.bindPopup(popup_2524e1156c95c9450bc5cf3875a177e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_954eb27ca15e73085b945bb6d38db6db = L.circleMarker(\\n\",\n       \"                [28.0797, 116.2239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc5c6082f76d4dbfc67f104802196724 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8c4d9e31a78c28589367297312db266 = $(`&lt;div id=&quot;html_d8c4d9e31a78c28589367297312db266&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.2239             latitude:28.0797             PM2_5:43.84861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc5c6082f76d4dbfc67f104802196724.setContent(html_d8c4d9e31a78c28589367297312db266);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_954eb27ca15e73085b945bb6d38db6db.bindPopup(popup_bc5c6082f76d4dbfc67f104802196724)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eabf57942fd180d733f55da0f466ddda = L.circleMarker(\\n\",\n       \"                [34.4286, 115.6697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea33fccbb58b623a47df93526c8f0c2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74f2e87a048870303c262cc5f1659f8f = $(`&lt;div id=&quot;html_74f2e87a048870303c262cc5f1659f8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6697             latitude:34.4286             PM2_5:58.56478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea33fccbb58b623a47df93526c8f0c2f.setContent(html_74f2e87a048870303c262cc5f1659f8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eabf57942fd180d733f55da0f466ddda.bindPopup(popup_ea33fccbb58b623a47df93526c8f0c2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f229f37b35f7d64d3af7503b025dea5 = L.circleMarker(\\n\",\n       \"                [31.7618, 116.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa6f4fdd624e88b09b9218affb0cfcc6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da83c4a691d0e803cef372a1e91fa906 = $(`&lt;div id=&quot;html_da83c4a691d0e803cef372a1e91fa906&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.478             latitude:31.7618             PM2_5:41.19722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa6f4fdd624e88b09b9218affb0cfcc6.setContent(html_da83c4a691d0e803cef372a1e91fa906);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f229f37b35f7d64d3af7503b025dea5.bindPopup(popup_aa6f4fdd624e88b09b9218affb0cfcc6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_138091c0bae236ed5faefce4eb434189 = L.circleMarker(\\n\",\n       \"                [39.1654, 117.145],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3932e2d8c6aec1429dadcb87bda45f7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9804c9e685ac3a8b9bd289ca8dc13350 = $(`&lt;div id=&quot;html_9804c9e685ac3a8b9bd289ca8dc13350&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.145             latitude:39.1654             PM2_5:50.42458101             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3932e2d8c6aec1429dadcb87bda45f7f.setContent(html_9804c9e685ac3a8b9bd289ca8dc13350);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_138091c0bae236ed5faefce4eb434189.bindPopup(popup_3932e2d8c6aec1429dadcb87bda45f7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df5d4ee4cd2c9237feb528c752047a49 = L.circleMarker(\\n\",\n       \"                [46.0347, 124.8354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_baf25d3f85e910c6397a7005713d1c1c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7aecdcc41ccc008dff16633746f8164a = $(`&lt;div id=&quot;html_7aecdcc41ccc008dff16633746f8164a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8354             latitude:46.0347             PM2_5:29.63342697             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_baf25d3f85e910c6397a7005713d1c1c.setContent(html_7aecdcc41ccc008dff16633746f8164a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df5d4ee4cd2c9237feb528c752047a49.bindPopup(popup_baf25d3f85e910c6397a7005713d1c1c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52cf793a649fe65d7e66cd6bc8ba85f5 = L.circleMarker(\\n\",\n       \"                [32.1342, 114.0681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7bee31a598e1c322229214664fd0165 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7bbce763464908b8c5ed1c1a57849fba = $(`&lt;div id=&quot;html_7bbce763464908b8c5ed1c1a57849fba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0681             latitude:32.1342             PM2_5:48.12083333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7bee31a598e1c322229214664fd0165.setContent(html_7bbce763464908b8c5ed1c1a57849fba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52cf793a649fe65d7e66cd6bc8ba85f5.bindPopup(popup_b7bee31a598e1c322229214664fd0165)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b4637c2212474f361209c428f1ca37b = L.circleMarker(\\n\",\n       \"                [31.422, 121.14],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8475f7a19443b68a7992e085d0439314 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a95a80ed80c344d6ee5ea0b3c663026b = $(`&lt;div id=&quot;html_a95a80ed80c344d6ee5ea0b3c663026b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.14             latitude:31.422             PM2_5:36.98680352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8475f7a19443b68a7992e085d0439314.setContent(html_a95a80ed80c344d6ee5ea0b3c663026b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b4637c2212474f361209c428f1ca37b.bindPopup(popup_8475f7a19443b68a7992e085d0439314)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cfe29c74035b2b66801980404c1821f2 = L.circleMarker(\\n\",\n       \"                [43.9469, 87.4754],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5c775680b31d8720ba12247975a7c6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_371586d43d9f4b1065844cd7da83db23 = $(`&lt;div id=&quot;html_371586d43d9f4b1065844cd7da83db23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.4754             latitude:43.9469             PM2_5:77.70943953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5c775680b31d8720ba12247975a7c6e.setContent(html_371586d43d9f4b1065844cd7da83db23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cfe29c74035b2b66801980404c1821f2.bindPopup(popup_f5c775680b31d8720ba12247975a7c6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_532926b924993157683729cc94d668c0 = L.circleMarker(\\n\",\n       \"                [32.9735, 112.5003],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d01c8f946ba133ee7dedb36afbbde5c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9a334c0a548c1274cf176f714d7122f9 = $(`&lt;div id=&quot;html_9a334c0a548c1274cf176f714d7122f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5003             latitude:32.9735             PM2_5:56.01264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d01c8f946ba133ee7dedb36afbbde5c1.setContent(html_9a334c0a548c1274cf176f714d7122f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_532926b924993157683729cc94d668c0.bindPopup(popup_d01c8f946ba133ee7dedb36afbbde5c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91fe20ed3bd2029b527378b64b8e38c1 = L.circleMarker(\\n\",\n       \"                [31.909, 120.237],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20b0843ffb62b12eabebe6f68b6016b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4deb6f1fcbb18299eb7de4086f265534 = $(`&lt;div id=&quot;html_4deb6f1fcbb18299eb7de4086f265534&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.237             latitude:31.909             PM2_5:53.80617978             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20b0843ffb62b12eabebe6f68b6016b8.setContent(html_4deb6f1fcbb18299eb7de4086f265534);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91fe20ed3bd2029b527378b64b8e38c1.bindPopup(popup_20b0843ffb62b12eabebe6f68b6016b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_548dbebeb9318bfd51849e3dc3a4e244 = L.circleMarker(\\n\",\n       \"                [38.8756, 115.442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c408386cee7f3c4c3d7dd2f254658e2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90ad34221be5983a78d09b8c530a5fb6 = $(`&lt;div id=&quot;html_90ad34221be5983a78d09b8c530a5fb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.442             latitude:38.8756             PM2_5:50.77170868             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c408386cee7f3c4c3d7dd2f254658e2a.setContent(html_90ad34221be5983a78d09b8c530a5fb6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_548dbebeb9318bfd51849e3dc3a4e244.bindPopup(popup_c408386cee7f3c4c3d7dd2f254658e2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e2b8ac6fad61e54152a2129cbc9b92a = L.circleMarker(\\n\",\n       \"                [44.6104, 129.6459],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_975df81d80c2d25bf9d8617aa14f321a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_750e1d26724c8a179c2ec98c0af9349c = $(`&lt;div id=&quot;html_750e1d26724c8a179c2ec98c0af9349c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6459             latitude:44.6104             PM2_5:26.84033613             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_975df81d80c2d25bf9d8617aa14f321a.setContent(html_750e1d26724c8a179c2ec98c0af9349c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e2b8ac6fad61e54152a2129cbc9b92a.bindPopup(popup_975df81d80c2d25bf9d8617aa14f321a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b83be0ad33d40b4699def038ba2c621f = L.circleMarker(\\n\",\n       \"                [31.6411, 118.4828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8cc5468ec45187e769d82ea17d2c374 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1de49b6fd3515ce950b8401782e46b7a = $(`&lt;div id=&quot;html_1de49b6fd3515ce950b8401782e46b7a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4828             latitude:31.6411             PM2_5:43.52653631             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8cc5468ec45187e769d82ea17d2c374.setContent(html_1de49b6fd3515ce950b8401782e46b7a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b83be0ad33d40b4699def038ba2c621f.bindPopup(popup_d8cc5468ec45187e769d82ea17d2c374)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c335ac155f6150ca365dbe20e591aa02 = L.circleMarker(\\n\",\n       \"                [32.965, 114.018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ca4ed4ec9affd36d786ce296b21e820 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3cbcd152d1e53236e2f3b2f038f64ee = $(`&lt;div id=&quot;html_e3cbcd152d1e53236e2f3b2f038f64ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.018             latitude:32.965             PM2_5:53.2740113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ca4ed4ec9affd36d786ce296b21e820.setContent(html_e3cbcd152d1e53236e2f3b2f038f64ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c335ac155f6150ca365dbe20e591aa02.bindPopup(popup_8ca4ed4ec9affd36d786ce296b21e820)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f8ca939052d2e0eee56ed90a30b8d93 = L.circleMarker(\\n\",\n       \"                [32.4611, 119.9219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7848eb2360899834987061ae50a4245 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae0c4e03c12058058be27eb35563b50a = $(`&lt;div id=&quot;html_ae0c4e03c12058058be27eb35563b50a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9219             latitude:32.4611             PM2_5:46.7261236             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7848eb2360899834987061ae50a4245.setContent(html_ae0c4e03c12058058be27eb35563b50a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f8ca939052d2e0eee56ed90a30b8d93.bindPopup(popup_b7848eb2360899834987061ae50a4245)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c439860728d28e56a8262a2315cfa89e = L.circleMarker(\\n\",\n       \"                [36.0022, 106.2792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87dbf06e3ed09c381e2b18a78c9cd23f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da35b17227877e983ea7461c40015b0d = $(`&lt;div id=&quot;html_da35b17227877e983ea7461c40015b0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2792             latitude:36.0022             PM2_5:24.97771588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87dbf06e3ed09c381e2b18a78c9cd23f.setContent(html_da35b17227877e983ea7461c40015b0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c439860728d28e56a8262a2315cfa89e.bindPopup(popup_87dbf06e3ed09c381e2b18a78c9cd23f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f775ce329966651358d740085697f559 = L.circleMarker(\\n\",\n       \"                [40.3937, 116.644],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da60b056ee7d7424c2dcbb3fc0e4f528 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9a8b615329a4be9b61fd58d9211398a6 = $(`&lt;div id=&quot;html_9a8b615329a4be9b61fd58d9211398a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.644             latitude:40.3937             PM2_5:46.92151163             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da60b056ee7d7424c2dcbb3fc0e4f528.setContent(html_9a8b615329a4be9b61fd58d9211398a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f775ce329966651358d740085697f559.bindPopup(popup_da60b056ee7d7424c2dcbb3fc0e4f528)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49eb1b3e738126877a20274cadba129d = L.circleMarker(\\n\",\n       \"                [32.1883, 119.68],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07eca88635fa894b6b74e02f4ede198b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f86092808a600c67df0e42d32d861993 = $(`&lt;div id=&quot;html_f86092808a600c67df0e42d32d861993&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.68             latitude:32.1883             PM2_5:51.92178771             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07eca88635fa894b6b74e02f4ede198b.setContent(html_f86092808a600c67df0e42d32d861993);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49eb1b3e738126877a20274cadba129d.bindPopup(popup_07eca88635fa894b6b74e02f4ede198b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_848146f36f5719d82630fbaa37b3ba64 = L.circleMarker(\\n\",\n       \"                [27.6442, 113.8686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e74492c12071997a08db74280d17959d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fba5808859761926b33fb669aa5742ee = $(`&lt;div id=&quot;html_fba5808859761926b33fb669aa5742ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8686             latitude:27.6442             PM2_5:43.725             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e74492c12071997a08db74280d17959d.setContent(html_fba5808859761926b33fb669aa5742ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_848146f36f5719d82630fbaa37b3ba64.bindPopup(popup_e74492c12071997a08db74280d17959d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_513247571d8288aa1260205aeabd0d3b = L.circleMarker(\\n\",\n       \"                [27.7842, 114.3953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d65f00c61b2e066b848c3c783cbfe587 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_53ae3b5bff52652f3b5c4cd72bdc7baf = $(`&lt;div id=&quot;html_53ae3b5bff52652f3b5c4cd72bdc7baf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3953             latitude:27.7842             PM2_5:48.19777159             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d65f00c61b2e066b848c3c783cbfe587.setContent(html_53ae3b5bff52652f3b5c4cd72bdc7baf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_513247571d8288aa1260205aeabd0d3b.bindPopup(popup_d65f00c61b2e066b848c3c783cbfe587)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e37f461a5a740d1d6de6008caa3a7f71 = L.circleMarker(\\n\",\n       \"                [27.8317, 99.7056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfca356b2a62b55880403597b3d158b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98dfa0d00790356d348cebe36f3e079b = $(`&lt;div id=&quot;html_98dfa0d00790356d348cebe36f3e079b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.7056             latitude:27.8317             PM2_5:12.73638968             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfca356b2a62b55880403597b3d158b1.setContent(html_98dfa0d00790356d348cebe36f3e079b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e37f461a5a740d1d6de6008caa3a7f71.bindPopup(popup_dfca356b2a62b55880403597b3d158b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30b15d7bb59cd56f5c223ad0f15750c5 = L.circleMarker(\\n\",\n       \"                [41.1222, 121.1178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a12e702bf979f24f9df5508c3f0f1fc2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86bff805c0e010e8cb9df828c80333f1 = $(`&lt;div id=&quot;html_86bff805c0e010e8cb9df828c80333f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1178             latitude:41.1222             PM2_5:34.33379888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a12e702bf979f24f9df5508c3f0f1fc2.setContent(html_86bff805c0e010e8cb9df828c80333f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30b15d7bb59cd56f5c223ad0f15750c5.bindPopup(popup_a12e702bf979f24f9df5508c3f0f1fc2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe752f8e5c383e5b7b65da09ec3b2713 = L.circleMarker(\\n\",\n       \"                [29.6514, 91.1319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68a7fe86207d91792e0be80d72daa7c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee9e500362701d681409beceb0d2091a = $(`&lt;div id=&quot;html_ee9e500362701d681409beceb0d2091a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1319             latitude:29.6514             PM2_5:19.38243626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68a7fe86207d91792e0be80d72daa7c6.setContent(html_ee9e500362701d681409beceb0d2091a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe752f8e5c383e5b7b65da09ec3b2713.bindPopup(popup_68a7fe86207d91792e0be80d72daa7c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b62325b1a33b498d9098ff7be00f866 = L.circleMarker(\\n\",\n       \"                [23.65889, 116.6183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84da66fde336659b08295f26329d5701 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ec3ab20468e324383c751a851073704 = $(`&lt;div id=&quot;html_1ec3ab20468e324383c751a851073704&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6183             latitude:23.65889             PM2_5:30.49442897             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84da66fde336659b08295f26329d5701.setContent(html_1ec3ab20468e324383c751a851073704);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b62325b1a33b498d9098ff7be00f866.bindPopup(popup_84da66fde336659b08295f26329d5701)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36ef851649133be6070e9639179dfc52 = L.circleMarker(\\n\",\n       \"                [31.3178, 118.3708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_550fe6deca89a99fe89f8aae1821c166 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9b8c72b28069cae0f31bd5165b1f008a = $(`&lt;div id=&quot;html_9b8c72b28069cae0f31bd5165b1f008a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3708             latitude:31.3178             PM2_5:55.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_550fe6deca89a99fe89f8aae1821c166.setContent(html_9b8c72b28069cae0f31bd5165b1f008a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36ef851649133be6070e9639179dfc52.bindPopup(popup_550fe6deca89a99fe89f8aae1821c166)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8f75506f6f742ecac652b9f41576c7f = L.circleMarker(\\n\",\n       \"                [40.0031, 116.407],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_479d84b703346f5d5330eb7d7093fd56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_199899cf1213ae3f49dac817bc8f6cdc = $(`&lt;div id=&quot;html_199899cf1213ae3f49dac817bc8f6cdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.407             latitude:40.0031             PM2_5:51.25069638             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_479d84b703346f5d5330eb7d7093fd56.setContent(html_199899cf1213ae3f49dac817bc8f6cdc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8f75506f6f742ecac652b9f41576c7f.bindPopup(popup_479d84b703346f5d5330eb7d7093fd56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4ce8960daf02db16d4dd9b0e111f333 = L.circleMarker(\\n\",\n       \"                [28.6869, 115.852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f69d25fb5137c0d02d7820e3a027dc1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a75ef914020bd1613b1ee80b1364760 = $(`&lt;div id=&quot;html_5a75ef914020bd1613b1ee80b1364760&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.852             latitude:28.6869             PM2_5:34.8837535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f69d25fb5137c0d02d7820e3a027dc1d.setContent(html_5a75ef914020bd1613b1ee80b1364760);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4ce8960daf02db16d4dd9b0e111f333.bindPopup(popup_f69d25fb5137c0d02d7820e3a027dc1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b5b9da5b519172f30fef5798cce4c71 = L.circleMarker(\\n\",\n       \"                [27.2537, 111.4503],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a6bae40b15eb7695c90558ff30e6dc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43b1f1178437ee169a198f7f895da4f0 = $(`&lt;div id=&quot;html_43b1f1178437ee169a198f7f895da4f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4503             latitude:27.2537             PM2_5:49.32869081             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a6bae40b15eb7695c90558ff30e6dc4.setContent(html_43b1f1178437ee169a198f7f895da4f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b5b9da5b519172f30fef5798cce4c71.bindPopup(popup_2a6bae40b15eb7695c90558ff30e6dc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fdd719083063d0fc830f91038cfc59a3 = L.circleMarker(\\n\",\n       \"                [22.9539, 112.0539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4fda492c5afadc62d50ffe26629feba6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ef1192feeef425d91249f70105bffbd = $(`&lt;div id=&quot;html_8ef1192feeef425d91249f70105bffbd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0539             latitude:22.9539             PM2_5:31.77562327             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4fda492c5afadc62d50ffe26629feba6.setContent(html_8ef1192feeef425d91249f70105bffbd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fdd719083063d0fc830f91038cfc59a3.bindPopup(popup_4fda492c5afadc62d50ffe26629feba6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58ccebbc2a4b0e5143ea133d54f7a2b7 = L.circleMarker(\\n\",\n       \"                [41.1196, 123.044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d192ef3108c0fef44cbbec4a7b0cf135 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e52efd5272ba0f836cb6066e85eff1f9 = $(`&lt;div id=&quot;html_e52efd5272ba0f836cb6066e85eff1f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.044             latitude:41.1196             PM2_5:33.3767313             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d192ef3108c0fef44cbbec4a7b0cf135.setContent(html_e52efd5272ba0f836cb6066e85eff1f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58ccebbc2a4b0e5143ea133d54f7a2b7.bindPopup(popup_d192ef3108c0fef44cbbec4a7b0cf135)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d1326ff5fbb94e72f2cd2cb9f683ff4 = L.circleMarker(\\n\",\n       \"                [28.1442, 112.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5296df120100a74e52108dd2f1aa7c9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0642f4672314a5f850303cb1670b000c = $(`&lt;div id=&quot;html_0642f4672314a5f850303cb1670b000c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9956             latitude:28.1442             PM2_5:44.35195531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5296df120100a74e52108dd2f1aa7c9d.setContent(html_0642f4672314a5f850303cb1670b000c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d1326ff5fbb94e72f2cd2cb9f683ff4.bindPopup(popup_5296df120100a74e52108dd2f1aa7c9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_383aeb6e7d1d2bcdd24ac464ae68d4ad = L.circleMarker(\\n\",\n       \"                [36.6106, 109.5056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a6ddc64213bf5336c42142cb9af48de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c8dc446ed474a2749e8269e52eaa645 = $(`&lt;div id=&quot;html_7c8dc446ed474a2749e8269e52eaa645&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5056             latitude:36.6106             PM2_5:38.42792793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a6ddc64213bf5336c42142cb9af48de.setContent(html_7c8dc446ed474a2749e8269e52eaa645);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_383aeb6e7d1d2bcdd24ac464ae68d4ad.bindPopup(popup_6a6ddc64213bf5336c42142cb9af48de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54afb2d26d09d8a615df64aaac91d77f = L.circleMarker(\\n\",\n       \"                [28.6844, 115.893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7c2b8211b1d4bea66b86c2b545dc340 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_87dde9ee8777f8cc13a8d1072e54f662 = $(`&lt;div id=&quot;html_87dde9ee8777f8cc13a8d1072e54f662&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.893             latitude:28.6844             PM2_5:36.59401709             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7c2b8211b1d4bea66b86c2b545dc340.setContent(html_87dde9ee8777f8cc13a8d1072e54f662);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54afb2d26d09d8a615df64aaac91d77f.bindPopup(popup_b7c2b8211b1d4bea66b86c2b545dc340)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9347c64943020fb99fd11a7a7e669967 = L.circleMarker(\\n\",\n       \"                [46.6219, 124.8648],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c901cd052de974918555b08f0f51a952 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b01de6357fb07e8c93f23bd769d2acb3 = $(`&lt;div id=&quot;html_b01de6357fb07e8c93f23bd769d2acb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8648             latitude:46.6219             PM2_5:21.60504202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c901cd052de974918555b08f0f51a952.setContent(html_b01de6357fb07e8c93f23bd769d2acb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9347c64943020fb99fd11a7a7e669967.bindPopup(popup_c901cd052de974918555b08f0f51a952)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54c770118e31da7ef87e073ef0223178 = L.circleMarker(\\n\",\n       \"                [42.0186, 121.6561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_575c3a7e1d23a4a6db65be61a165ff48 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_913a613a50bdf3652f2fa46acf00c716 = $(`&lt;div id=&quot;html_913a613a50bdf3652f2fa46acf00c716&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6561             latitude:42.0186             PM2_5:25.61772853             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_575c3a7e1d23a4a6db65be61a165ff48.setContent(html_913a613a50bdf3652f2fa46acf00c716);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54c770118e31da7ef87e073ef0223178.bindPopup(popup_575c3a7e1d23a4a6db65be61a165ff48)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81c992b012c7c3bdc6e7db81111751dc = L.circleMarker(\\n\",\n       \"                [36.0783, 111.5531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_584407cd83a4b3ad872327b16c886f98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33980326aeaad600090007089af65dd0 = $(`&lt;div id=&quot;html_33980326aeaad600090007089af65dd0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5531             latitude:36.0783             PM2_5:69.44428969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_584407cd83a4b3ad872327b16c886f98.setContent(html_33980326aeaad600090007089af65dd0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81c992b012c7c3bdc6e7db81111751dc.bindPopup(popup_584407cd83a4b3ad872327b16c886f98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4631881e2b467d26f9d8faf172f684ad = L.circleMarker(\\n\",\n       \"                [26.6383, 118.1694],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_536489fa1ff21d000589ad24db53c390 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c069c987a512943fc5e831e8683ed610 = $(`&lt;div id=&quot;html_c069c987a512943fc5e831e8683ed610&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1694             latitude:26.6383             PM2_5:22.0             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_536489fa1ff21d000589ad24db53c390.setContent(html_c069c987a512943fc5e831e8683ed610);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4631881e2b467d26f9d8faf172f684ad.bindPopup(popup_536489fa1ff21d000589ad24db53c390)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_048117cadbd490b8944f0602e5a4390c = L.circleMarker(\\n\",\n       \"                [36.2126, 113.0886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f48f69a64ab250dd14326878a49491d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86c120480fb780e09a24cb83282a8c9b = $(`&lt;div id=&quot;html_86c120480fb780e09a24cb83282a8c9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0886             latitude:36.2126             PM2_5:68.68767507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f48f69a64ab250dd14326878a49491d1.setContent(html_86c120480fb780e09a24cb83282a8c9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_048117cadbd490b8944f0602e5a4390c.bindPopup(popup_f48f69a64ab250dd14326878a49491d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82026779f61d04da602e1d60204d889e = L.circleMarker(\\n\",\n       \"                [40.7579, 111.651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9cb69259724e928708a632cae0247e97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3488d28bf7568df2575625951120140 = $(`&lt;div id=&quot;html_f3488d28bf7568df2575625951120140&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.651             latitude:40.7579             PM2_5:34.55742297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9cb69259724e928708a632cae0247e97.setContent(html_f3488d28bf7568df2575625951120140);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82026779f61d04da602e1d60204d889e.bindPopup(popup_9cb69259724e928708a632cae0247e97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffeba7157ff8c9e08b4769f7443aa564 = L.circleMarker(\\n\",\n       \"                [25.9061, 113.0073],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d533d98d23a36848686021423416ada = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d680da07283c0d362257223ab9e5efb1 = $(`&lt;div id=&quot;html_d680da07283c0d362257223ab9e5efb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0073             latitude:25.9061             PM2_5:34.37464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d533d98d23a36848686021423416ada.setContent(html_d680da07283c0d362257223ab9e5efb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffeba7157ff8c9e08b4769f7443aa564.bindPopup(popup_0d533d98d23a36848686021423416ada)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93ca116a60e714ebaf1bfe3acbae7c69 = L.circleMarker(\\n\",\n       \"                [23.0395, 113.105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbc95c51b66fbd528348d45d8a647a1e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08f6112b4615dbab1b362254bdac937c = $(`&lt;div id=&quot;html_08f6112b4615dbab1b362254bdac937c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.105             latitude:23.0395             PM2_5:39.28969359             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbc95c51b66fbd528348d45d8a647a1e.setContent(html_08f6112b4615dbab1b362254bdac937c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93ca116a60e714ebaf1bfe3acbae7c69.bindPopup(popup_dbc95c51b66fbd528348d45d8a647a1e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_662a0ea86c9a4d0bee057c0093fd0984 = L.circleMarker(\\n\",\n       \"                [31.2108, 107.4967],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45866d214cca16db0c7c5931cea4bf8d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c0c7348d94ba9895b9704c81927e1ca = $(`&lt;div id=&quot;html_8c0c7348d94ba9895b9704c81927e1ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4967             latitude:31.2108             PM2_5:48.13509749             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45866d214cca16db0c7c5931cea4bf8d.setContent(html_8c0c7348d94ba9895b9704c81927e1ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_662a0ea86c9a4d0bee057c0093fd0984.bindPopup(popup_45866d214cca16db0c7c5931cea4bf8d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d676b9e10825c7a45912432b067b6a1 = L.circleMarker(\\n\",\n       \"                [38.8957, 115.5223],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ce827859ee584509e456a3eaf78f9d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b682e4a2c440ac851c441b85be58756 = $(`&lt;div id=&quot;html_7b682e4a2c440ac851c441b85be58756&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.5223             latitude:38.8957             PM2_5:56.74789916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ce827859ee584509e456a3eaf78f9d2.setContent(html_7b682e4a2c440ac851c441b85be58756);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d676b9e10825c7a45912432b067b6a1.bindPopup(popup_1ce827859ee584509e456a3eaf78f9d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38876610ff777a8d7395b0e74ea3e515 = L.circleMarker(\\n\",\n       \"                [39.617, 122.011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b839c865266f1799459a955f3771770f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d51cc8c546db631d39a59e89605484a8 = $(`&lt;div id=&quot;html_d51cc8c546db631d39a59e89605484a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.011             latitude:39.617             PM2_5:32.03191489             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b839c865266f1799459a955f3771770f.setContent(html_d51cc8c546db631d39a59e89605484a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38876610ff777a8d7395b0e74ea3e515.bindPopup(popup_b839c865266f1799459a955f3771770f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf4de77c2b1a61b5f1d7c7a1d5eb38c2 = L.circleMarker(\\n\",\n       \"                [36.907, 121.544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94c16ceae0c442cf7f1e3c797eeb5a0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78187ae3f671a5f4bbcf5675ce605524 = $(`&lt;div id=&quot;html_78187ae3f671a5f4bbcf5675ce605524&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.544             latitude:36.907             PM2_5:18.6504298             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94c16ceae0c442cf7f1e3c797eeb5a0a.setContent(html_78187ae3f671a5f4bbcf5675ce605524);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf4de77c2b1a61b5f1d7c7a1d5eb38c2.bindPopup(popup_94c16ceae0c442cf7f1e3c797eeb5a0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1edd40b72f390f7202caea6c31481146 = L.circleMarker(\\n\",\n       \"                [34.6686, 112.4433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8ed452b65365d17c8e5570efa6bbd90 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5e365571b7cc1019685df5c861bbfd9 = $(`&lt;div id=&quot;html_b5e365571b7cc1019685df5c861bbfd9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4433             latitude:34.6686             PM2_5:60.85352113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8ed452b65365d17c8e5570efa6bbd90.setContent(html_b5e365571b7cc1019685df5c861bbfd9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1edd40b72f390f7202caea6c31481146.bindPopup(popup_d8ed452b65365d17c8e5570efa6bbd90)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af49fb4f92c8db06f1cb40909350920e = L.circleMarker(\\n\",\n       \"                [31.172, 120.658],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_469ed8dd6713625dac1e7c90b6c6eb7d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a2c3b56879c4a6669792840e5142c3a = $(`&lt;div id=&quot;html_3a2c3b56879c4a6669792840e5142c3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.658             latitude:31.172             PM2_5:40.59217877             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_469ed8dd6713625dac1e7c90b6c6eb7d.setContent(html_3a2c3b56879c4a6669792840e5142c3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af49fb4f92c8db06f1cb40909350920e.bindPopup(popup_469ed8dd6713625dac1e7c90b6c6eb7d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_071ddd412da826c382ef4ce548e565ca = L.circleMarker(\\n\",\n       \"                [26.3108, 117.7275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9d4963125f7c6e83b1766eaef20529f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d77560a939bc61bc1c7230cc8b271a2 = $(`&lt;div id=&quot;html_6d77560a939bc61bc1c7230cc8b271a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7275             latitude:26.3108             PM2_5:26.40668524             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9d4963125f7c6e83b1766eaef20529f.setContent(html_6d77560a939bc61bc1c7230cc8b271a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_071ddd412da826c382ef4ce548e565ca.bindPopup(popup_b9d4963125f7c6e83b1766eaef20529f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b39cb2b405b46401b31de895137e5a87 = L.circleMarker(\\n\",\n       \"                [34.378, 108.869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77dd7634d8b5a9ea8988aa6be4a4a537 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90aa50e043f41cff599787597a67873a = $(`&lt;div id=&quot;html_90aa50e043f41cff599787597a67873a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.869             latitude:34.378             PM2_5:62.61024845             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77dd7634d8b5a9ea8988aa6be4a4a537.setContent(html_90aa50e043f41cff599787597a67873a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b39cb2b405b46401b31de895137e5a87.bindPopup(popup_77dd7634d8b5a9ea8988aa6be4a4a537)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f826e759d107102545ceeac99f1a1e59 = L.circleMarker(\\n\",\n       \"                [29.8506, 121.524],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8affd0c9129bfd98480fbba792434037 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bcd59bef68181c450e4609d0cde9413e = $(`&lt;div id=&quot;html_bcd59bef68181c450e4609d0cde9413e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.524             latitude:29.8506             PM2_5:31.24792244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8affd0c9129bfd98480fbba792434037.setContent(html_bcd59bef68181c450e4609d0cde9413e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f826e759d107102545ceeac99f1a1e59.bindPopup(popup_8affd0c9129bfd98480fbba792434037)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82c4c4c0405aefae80021b3e76b2125d = L.circleMarker(\\n\",\n       \"                [43.895, 81.2867],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3acec4e3e92fc762cf9332fdc95898b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1dad4862544d0b03bb9f10588b5a809f = $(`&lt;div id=&quot;html_1dad4862544d0b03bb9f10588b5a809f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.2867             latitude:43.895             PM2_5:59.07703081             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3acec4e3e92fc762cf9332fdc95898b9.setContent(html_1dad4862544d0b03bb9f10588b5a809f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82c4c4c0405aefae80021b3e76b2125d.bindPopup(popup_3acec4e3e92fc762cf9332fdc95898b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d48c5dbbe16fcdda99ee4074d27ccb24 = L.circleMarker(\\n\",\n       \"                [34.802, 113.564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23760300270b9ac9daf2154c1a8843b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8142e4a34df272e8f473fce855609ecf = $(`&lt;div id=&quot;html_8142e4a34df272e8f473fce855609ecf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.564             latitude:34.802             PM2_5:62.60085227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23760300270b9ac9daf2154c1a8843b0.setContent(html_8142e4a34df272e8f473fce855609ecf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d48c5dbbe16fcdda99ee4074d27ccb24.bindPopup(popup_23760300270b9ac9daf2154c1a8843b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0013d8ed7a89b5b1dd0a6695037d372 = L.circleMarker(\\n\",\n       \"                [29.315, 110.4417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2eacf45234176f6c5ef6e2e87109786 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c071044988265dc04843df91517dcc9a = $(`&lt;div id=&quot;html_c071044988265dc04843df91517dcc9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4417             latitude:29.315             PM2_5:28.36478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2eacf45234176f6c5ef6e2e87109786.setContent(html_c071044988265dc04843df91517dcc9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0013d8ed7a89b5b1dd0a6695037d372.bindPopup(popup_b2eacf45234176f6c5ef6e2e87109786)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8079f3dc1d354fc6ac0df9c65dc815db = L.circleMarker(\\n\",\n       \"                [46.6572, 131.1638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d87b6af6b40ca8bab125a80a479f1f0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b32f71b01966102e45e9845db600f7d = $(`&lt;div id=&quot;html_1b32f71b01966102e45e9845db600f7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1638             latitude:46.6572             PM2_5:28.1755618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d87b6af6b40ca8bab125a80a479f1f0d.setContent(html_1b32f71b01966102e45e9845db600f7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8079f3dc1d354fc6ac0df9c65dc815db.bindPopup(popup_d87b6af6b40ca8bab125a80a479f1f0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_025e0ee4e40b4bebe33f959fdc96394b = L.circleMarker(\\n\",\n       \"                [27.0658, 114.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c53ef9a243edb5987aea36b87123eaed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bff373577627da14a607c251c20229da = $(`&lt;div id=&quot;html_bff373577627da14a607c251c20229da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9817             latitude:27.0658             PM2_5:51.02148997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c53ef9a243edb5987aea36b87123eaed.setContent(html_bff373577627da14a607c251c20229da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_025e0ee4e40b4bebe33f959fdc96394b.bindPopup(popup_c53ef9a243edb5987aea36b87123eaed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_714bcfa91549a69c7b8275b63f3302a7 = L.circleMarker(\\n\",\n       \"                [22.9169, 112.0392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4951fbff70a29cc8808a4e514d613084 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1fff2003310bdb8de3e345daed47417 = $(`&lt;div id=&quot;html_c1fff2003310bdb8de3e345daed47417&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0392             latitude:22.9169             PM2_5:32.90555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4951fbff70a29cc8808a4e514d613084.setContent(html_c1fff2003310bdb8de3e345daed47417);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_714bcfa91549a69c7b8275b63f3302a7.bindPopup(popup_4951fbff70a29cc8808a4e514d613084)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce52e2a6c9d59f251c7b549f71655afa = L.circleMarker(\\n\",\n       \"                [23.7369, 109.2317],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b30a42ca5442f8303ca7f57605894241 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9f663af4244dcbedf1f67908d8fde5a = $(`&lt;div id=&quot;html_c9f663af4244dcbedf1f67908d8fde5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2317             latitude:23.7369             PM2_5:41.42577031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b30a42ca5442f8303ca7f57605894241.setContent(html_c9f663af4244dcbedf1f67908d8fde5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce52e2a6c9d59f251c7b549f71655afa.bindPopup(popup_b30a42ca5442f8303ca7f57605894241)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f7c56461c1a440203891104d527de3d = L.circleMarker(\\n\",\n       \"                [32.6319, 116.8306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77cf4feac9436cc21d328f6ff15226f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecba515c52df5123d05ae4154d14d40d = $(`&lt;div id=&quot;html_ecba515c52df5123d05ae4154d14d40d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8306             latitude:32.6319             PM2_5:54.37900875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77cf4feac9436cc21d328f6ff15226f2.setContent(html_ecba515c52df5123d05ae4154d14d40d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f7c56461c1a440203891104d527de3d.bindPopup(popup_77cf4feac9436cc21d328f6ff15226f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43faa3697bc99a1bc886c3b86bf2a6ea = L.circleMarker(\\n\",\n       \"                [42.9061, 129.5042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_748c3b5a8f234971f4e5c67dcbf7de3c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be132c8c250d7f744cefb59e288f62f6 = $(`&lt;div id=&quot;html_be132c8c250d7f744cefb59e288f62f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.5042             latitude:42.9061             PM2_5:20.3913649             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_748c3b5a8f234971f4e5c67dcbf7de3c.setContent(html_be132c8c250d7f744cefb59e288f62f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43faa3697bc99a1bc886c3b86bf2a6ea.bindPopup(popup_748c3b5a8f234971f4e5c67dcbf7de3c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f17a6866694748bdd17f4f94771f588 = L.circleMarker(\\n\",\n       \"                [41.8594, 123.9],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46448427f456924c7d05c12f5b91849b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2caff0dd79cff4b4d8ede657e66edd53 = $(`&lt;div id=&quot;html_2caff0dd79cff4b4d8ede657e66edd53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9             latitude:41.8594             PM2_5:36.30779944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46448427f456924c7d05c12f5b91849b.setContent(html_2caff0dd79cff4b4d8ede657e66edd53);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f17a6866694748bdd17f4f94771f588.bindPopup(popup_46448427f456924c7d05c12f5b91849b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc4e355cce9d8d1ecd291411eb23c239 = L.circleMarker(\\n\",\n       \"                [29.5867, 115.9936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc74309af3b5808e9e5de11445f5a53d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eda32ba77f31b43ee26c70e436f1da22 = $(`&lt;div id=&quot;html_eda32ba77f31b43ee26c70e436f1da22&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9936             latitude:29.5867             PM2_5:21.53521127             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc74309af3b5808e9e5de11445f5a53d.setContent(html_eda32ba77f31b43ee26c70e436f1da22);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc4e355cce9d8d1ecd291411eb23c239.bindPopup(popup_cc74309af3b5808e9e5de11445f5a53d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d36c2a45fa021dbf6856b733f161c7ff = L.circleMarker(\\n\",\n       \"                [36.0211, 106.2375],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36232a59cdcb3848c1ea1df9732ec475 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_637c9d546779bf1333443d1a87a84701 = $(`&lt;div id=&quot;html_637c9d546779bf1333443d1a87a84701&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2375             latitude:36.0211             PM2_5:24.23455056             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36232a59cdcb3848c1ea1df9732ec475.setContent(html_637c9d546779bf1333443d1a87a84701);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d36c2a45fa021dbf6856b733f161c7ff.bindPopup(popup_36232a59cdcb3848c1ea1df9732ec475)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70bffd3568d75efe45dfe595a0919079 = L.circleMarker(\\n\",\n       \"                [43.1847, 124.3897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba095a9802f8c135435a22e441dad88c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fe0a0efbd14985671e51fc175741787 = $(`&lt;div id=&quot;html_2fe0a0efbd14985671e51fc175741787&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3897             latitude:43.1847             PM2_5:31.2745098             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba095a9802f8c135435a22e441dad88c.setContent(html_2fe0a0efbd14985671e51fc175741787);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70bffd3568d75efe45dfe595a0919079.bindPopup(popup_ba095a9802f8c135435a22e441dad88c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6252179b916fe159efd47d05b40ce1a6 = L.circleMarker(\\n\",\n       \"                [35.1764, 113.2464],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_573e53dcdfb1422d1473ad39c19e2e6b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49d6bf1e7ada527e2442c8a74003ae81 = $(`&lt;div id=&quot;html_49d6bf1e7ada527e2442c8a74003ae81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2464             latitude:35.1764             PM2_5:67.43117978             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_573e53dcdfb1422d1473ad39c19e2e6b.setContent(html_49d6bf1e7ada527e2442c8a74003ae81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6252179b916fe159efd47d05b40ce1a6.bindPopup(popup_573e53dcdfb1422d1473ad39c19e2e6b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a29970208bbd79059326fe7deac91f9 = L.circleMarker(\\n\",\n       \"                [35.0994, 109.0656],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0d3d106fe4eb8b186d371c3949ed04e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7758bf48fa1ec3841816ea5525a72ea9 = $(`&lt;div id=&quot;html_7758bf48fa1ec3841816ea5525a72ea9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0656             latitude:35.0994             PM2_5:35.85632184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0d3d106fe4eb8b186d371c3949ed04e.setContent(html_7758bf48fa1ec3841816ea5525a72ea9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a29970208bbd79059326fe7deac91f9.bindPopup(popup_d0d3d106fe4eb8b186d371c3949ed04e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec045aaa49e11186f89b88bed36a22c9 = L.circleMarker(\\n\",\n       \"                [30.7819, 111.3296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0541f75344e9fe9580c1a32b2460c3d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1580fd6a433e39be48caa252a127ce41 = $(`&lt;div id=&quot;html_1580fd6a433e39be48caa252a127ce41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3296             latitude:30.7819             PM2_5:52.59556787             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0541f75344e9fe9580c1a32b2460c3d8.setContent(html_1580fd6a433e39be48caa252a127ce41);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec045aaa49e11186f89b88bed36a22c9.bindPopup(popup_0541f75344e9fe9580c1a32b2460c3d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0026f2531c7a44a7c226189d3c9a0ecc = L.circleMarker(\\n\",\n       \"                [25.5035, 103.7897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80ac4b4086764b1bd286ae57aee90f50 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82cac4f95e60e904ed514e978e5e7b89 = $(`&lt;div id=&quot;html_82cac4f95e60e904ed514e978e5e7b89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7897             latitude:25.5035             PM2_5:35.22957746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80ac4b4086764b1bd286ae57aee90f50.setContent(html_82cac4f95e60e904ed514e978e5e7b89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0026f2531c7a44a7c226189d3c9a0ecc.bindPopup(popup_80ac4b4086764b1bd286ae57aee90f50)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb7d9f8d31b6671f8cd208faae7bf739 = L.circleMarker(\\n\",\n       \"                [37.8195, 112.57],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8816e0883a3b9c851b119c3f808ceea1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12d07f67cafc517ad018f62e190768a5 = $(`&lt;div id=&quot;html_12d07f67cafc517ad018f62e190768a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.57             latitude:37.8195             PM2_5:62.8782235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8816e0883a3b9c851b119c3f808ceea1.setContent(html_12d07f67cafc517ad018f62e190768a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb7d9f8d31b6671f8cd208faae7bf739.bindPopup(popup_8816e0883a3b9c851b119c3f808ceea1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_449116c1d5fb15130cf2746c9f71deae = L.circleMarker(\\n\",\n       \"                [32.1083, 118.803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ebfbbdf53353bbccc6b1905c500d77c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a171fc49db86d1763aa565218a9cc381 = $(`&lt;div id=&quot;html_a171fc49db86d1763aa565218a9cc381&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.803             latitude:32.1083             PM2_5:43.03641457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ebfbbdf53353bbccc6b1905c500d77c.setContent(html_a171fc49db86d1763aa565218a9cc381);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_449116c1d5fb15130cf2746c9f71deae.bindPopup(popup_6ebfbbdf53353bbccc6b1905c500d77c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68ef056644f627b42ac5145188f82c62 = L.circleMarker(\\n\",\n       \"                [23.8822, 100.0869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4196e9d0dbb45c6c1238c1e87335a90b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9da8283f7b581dc377a2d7a6ab1d4a6 = $(`&lt;div id=&quot;html_e9da8283f7b581dc377a2d7a6ab1d4a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0869             latitude:23.8822             PM2_5:26.72285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4196e9d0dbb45c6c1238c1e87335a90b.setContent(html_e9da8283f7b581dc377a2d7a6ab1d4a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68ef056644f627b42ac5145188f82c62.bindPopup(popup_4196e9d0dbb45c6c1238c1e87335a90b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d66a66489cfb6f9ed240aa7942f2e765 = L.circleMarker(\\n\",\n       \"                [27.8978, 102.2625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49599843428d2598766f026ee0dc6baf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f3162cb50ee1b13644685368792c1fc = $(`&lt;div id=&quot;html_9f3162cb50ee1b13644685368792c1fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2625             latitude:27.8978             PM2_5:21.25218659             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49599843428d2598766f026ee0dc6baf.setContent(html_9f3162cb50ee1b13644685368792c1fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d66a66489cfb6f9ed240aa7942f2e765.bindPopup(popup_49599843428d2598766f026ee0dc6baf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22aebe66de4e49ba817e17105fe38745 = L.circleMarker(\\n\",\n       \"                [37.825, 120.747],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e88ce688ce3960c803e41e281bb49b76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4fa27a904a5aacb0400202cdcc63b9d8 = $(`&lt;div id=&quot;html_4fa27a904a5aacb0400202cdcc63b9d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.747             latitude:37.825             PM2_5:31.43079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e88ce688ce3960c803e41e281bb49b76.setContent(html_4fa27a904a5aacb0400202cdcc63b9d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22aebe66de4e49ba817e17105fe38745.bindPopup(popup_e88ce688ce3960c803e41e281bb49b76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff2de55393c1420bda13e8e1abf8e31f = L.circleMarker(\\n\",\n       \"                [43.8167, 125.25],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b7cd0eb39f793fe358c08029c82cd43 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a493711d1806d32038a3782c322549b = $(`&lt;div id=&quot;html_5a493711d1806d32038a3782c322549b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.25             latitude:43.8167             PM2_5:26.91520468             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b7cd0eb39f793fe358c08029c82cd43.setContent(html_5a493711d1806d32038a3782c322549b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff2de55393c1420bda13e8e1abf8e31f.bindPopup(popup_7b7cd0eb39f793fe358c08029c82cd43)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c2db1df2a11c7c47d70935acf36ed14 = L.circleMarker(\\n\",\n       \"                [37.8564, 113.5753],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbc87532052fb5689b6d5facedc7c0f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f5f0fa14eca90cb983e15b5f76cad14 = $(`&lt;div id=&quot;html_9f5f0fa14eca90cb983e15b5f76cad14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5753             latitude:37.8564             PM2_5:55.25140449             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbc87532052fb5689b6d5facedc7c0f6.setContent(html_9f5f0fa14eca90cb983e15b5f76cad14);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c2db1df2a11c7c47d70935acf36ed14.bindPopup(popup_dbc87532052fb5689b6d5facedc7c0f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_489a4d76c066fcd0b7880e150b0b287a = L.circleMarker(\\n\",\n       \"                [25.0359, 102.638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f506acdc3875742ca5ae533ae2c57f87 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5df41df315c49399094c319c668ba3da = $(`&lt;div id=&quot;html_5df41df315c49399094c319c668ba3da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.638             latitude:25.0359             PM2_5:31.47645429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f506acdc3875742ca5ae533ae2c57f87.setContent(html_5df41df315c49399094c319c668ba3da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_489a4d76c066fcd0b7880e150b0b287a.bindPopup(popup_f506acdc3875742ca5ae533ae2c57f87)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ac5dad2f7d87682c8356794710439f3 = L.circleMarker(\\n\",\n       \"                [23.1323, 113.3208],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b907a712b8d465b85cc04efa367b51fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_efa6fe543a439de48dce98db99eed651 = $(`&lt;div id=&quot;html_efa6fe543a439de48dce98db99eed651&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3208             latitude:23.1323             PM2_5:35.87222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b907a712b8d465b85cc04efa367b51fb.setContent(html_efa6fe543a439de48dce98db99eed651);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ac5dad2f7d87682c8356794710439f3.bindPopup(popup_b907a712b8d465b85cc04efa367b51fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10b88b429fa63500f5bbf73b8bcefa9e = L.circleMarker(\\n\",\n       \"                [40.7136, 120.9092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94b68d2ce0e9a35b46b285771c77d5bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_838fa258f941dfd13fa754a86547440d = $(`&lt;div id=&quot;html_838fa258f941dfd13fa754a86547440d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.9092             latitude:40.7136             PM2_5:38.91316527             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94b68d2ce0e9a35b46b285771c77d5bc.setContent(html_838fa258f941dfd13fa754a86547440d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10b88b429fa63500f5bbf73b8bcefa9e.bindPopup(popup_94b68d2ce0e9a35b46b285771c77d5bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_534844922082f82bd7c128ab8590b26e = L.circleMarker(\\n\",\n       \"                [40.9923, 113.1306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbe8b2d2db0f251a98c680aa5c7a4757 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7c227b57c03da5ac6e2c16298daaf1f = $(`&lt;div id=&quot;html_c7c227b57c03da5ac6e2c16298daaf1f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1306             latitude:40.9923             PM2_5:19.8487395             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbe8b2d2db0f251a98c680aa5c7a4757.setContent(html_c7c227b57c03da5ac6e2c16298daaf1f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_534844922082f82bd7c128ab8590b26e.bindPopup(popup_bbe8b2d2db0f251a98c680aa5c7a4757)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af12852ec1ee56a9150784437457ac1f = L.circleMarker(\\n\",\n       \"                [31.874, 120.526],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b179d2d5857d79449f970a8de80054ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55fa9fb51c94432527521e2a5e27c217 = $(`&lt;div id=&quot;html_55fa9fb51c94432527521e2a5e27c217&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.526             latitude:31.874             PM2_5:37.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b179d2d5857d79449f970a8de80054ec.setContent(html_55fa9fb51c94432527521e2a5e27c217);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af12852ec1ee56a9150784437457ac1f.bindPopup(popup_b179d2d5857d79449f970a8de80054ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4a605cf0d67a291aec7d094e6611dc1 = L.circleMarker(\\n\",\n       \"                [26.0797, 119.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6f85174332a31e0ed7cf98a1a13fa98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_845ff723a4c3cc719250897b3c8726cc = $(`&lt;div id=&quot;html_845ff723a4c3cc719250897b3c8726cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.268             latitude:26.0797             PM2_5:25.44662921             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6f85174332a31e0ed7cf98a1a13fa98.setContent(html_845ff723a4c3cc719250897b3c8726cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4a605cf0d67a291aec7d094e6611dc1.bindPopup(popup_a6f85174332a31e0ed7cf98a1a13fa98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b34b4c195bc4caf4e95c23468da6b68 = L.circleMarker(\\n\",\n       \"                [31.3264, 120.596],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_739de1c73ae3eb242bf0fe20d5c1fffb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dedcfa92cf15461ced682f3bf0044c25 = $(`&lt;div id=&quot;html_dedcfa92cf15461ced682f3bf0044c25&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.596             latitude:31.3264             PM2_5:43.19230769             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_739de1c73ae3eb242bf0fe20d5c1fffb.setContent(html_dedcfa92cf15461ced682f3bf0044c25);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b34b4c195bc4caf4e95c23468da6b68.bindPopup(popup_739de1c73ae3eb242bf0fe20d5c1fffb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2417e8c1c299320009199bc69d880e7c = L.circleMarker(\\n\",\n       \"                [34.3017, 107.0708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2587cf62aa63576539c74fc4fac8717 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d97673b3d3ba87e595cf079fbd563744 = $(`&lt;div id=&quot;html_d97673b3d3ba87e595cf079fbd563744&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0708             latitude:34.3017             PM2_5:44.9301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2587cf62aa63576539c74fc4fac8717.setContent(html_d97673b3d3ba87e595cf079fbd563744);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2417e8c1c299320009199bc69d880e7c.bindPopup(popup_c2587cf62aa63576539c74fc4fac8717)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad7b8d62634fa2a1ca11df1dd9e971d7 = L.circleMarker(\\n\",\n       \"                [32.0775, 118.795],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfb0d95e2cf72d724dd2e28c0123d30a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f37a5671d924fda84efb47adbf79141 = $(`&lt;div id=&quot;html_7f37a5671d924fda84efb47adbf79141&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.795             latitude:32.0775             PM2_5:48.81395349             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfb0d95e2cf72d724dd2e28c0123d30a.setContent(html_7f37a5671d924fda84efb47adbf79141);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad7b8d62634fa2a1ca11df1dd9e971d7.bindPopup(popup_bfb0d95e2cf72d724dd2e28c0123d30a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6641c7e499d763f1bb28e21f8a4b4fb = L.circleMarker(\\n\",\n       \"                [46.6462, 131.1516],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f70fa84e453e6b5ee4900cd657c6eb4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a8b5df0279c29f0e2324715db094c3e = $(`&lt;div id=&quot;html_7a8b5df0279c29f0e2324715db094c3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1516             latitude:46.6462             PM2_5:32.94225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f70fa84e453e6b5ee4900cd657c6eb4b.setContent(html_7a8b5df0279c29f0e2324715db094c3e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6641c7e499d763f1bb28e21f8a4b4fb.bindPopup(popup_f70fa84e453e6b5ee4900cd657c6eb4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b17380cdc3173f8dc0c5a5979cb15669 = L.circleMarker(\\n\",\n       \"                [35.0573, 118.3418],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2fa3690ffe3c12a3bf85f0793598fa2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe0a6131809ce25eb321cb6d2acc2bee = $(`&lt;div id=&quot;html_fe0a6131809ce25eb321cb6d2acc2bee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3418             latitude:35.0573             PM2_5:39.93871866             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2fa3690ffe3c12a3bf85f0793598fa2.setContent(html_fe0a6131809ce25eb321cb6d2acc2bee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b17380cdc3173f8dc0c5a5979cb15669.bindPopup(popup_a2fa3690ffe3c12a3bf85f0793598fa2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9daa157b22e74d029fb69a58f3a0e9ad = L.circleMarker(\\n\",\n       \"                [23.6936, 113.0425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0df0124102094ef86c1a7cf8c56790f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b96a3175ca67abf74dbcd99fdf82866b = $(`&lt;div id=&quot;html_b96a3175ca67abf74dbcd99fdf82866b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0425             latitude:23.6936             PM2_5:32.96374622             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0df0124102094ef86c1a7cf8c56790f8.setContent(html_b96a3175ca67abf74dbcd99fdf82866b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9daa157b22e74d029fb69a58f3a0e9ad.bindPopup(popup_0df0124102094ef86c1a7cf8c56790f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cce5c5e01074298133d308af37528fbc = L.circleMarker(\\n\",\n       \"                [29.4758, 113.2621],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_343c090959effa7d02028c8c63a82a0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8102d880752eb1d433ccdf0f7356eca = $(`&lt;div id=&quot;html_d8102d880752eb1d433ccdf0f7356eca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2621             latitude:29.4758             PM2_5:48.03179191             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_343c090959effa7d02028c8c63a82a0d.setContent(html_d8102d880752eb1d433ccdf0f7356eca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cce5c5e01074298133d308af37528fbc.bindPopup(popup_343c090959effa7d02028c8c63a82a0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5efdac09318d7c18a2cbbd4a2fdca24 = L.circleMarker(\\n\",\n       \"                [40.6821, 109.8538],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc2fb859440855c10e06d8cf0b1b019d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3aac656ac556c65d1d3c685be84366b6 = $(`&lt;div id=&quot;html_3aac656ac556c65d1d3c685be84366b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8538             latitude:40.6821             PM2_5:44.97777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc2fb859440855c10e06d8cf0b1b019d.setContent(html_3aac656ac556c65d1d3c685be84366b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5efdac09318d7c18a2cbbd4a2fdca24.bindPopup(popup_bc2fb859440855c10e06d8cf0b1b019d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_031945357894b80fcc282cb1426e3aab = L.circleMarker(\\n\",\n       \"                [30.8388, 106.1087],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c891003fe54a9756393b9dc6a54c7f51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ee79adb397f5aad8e2edf8bbdd7b781 = $(`&lt;div id=&quot;html_6ee79adb397f5aad8e2edf8bbdd7b781&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1087             latitude:30.8388             PM2_5:42.04634831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c891003fe54a9756393b9dc6a54c7f51.setContent(html_6ee79adb397f5aad8e2edf8bbdd7b781);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_031945357894b80fcc282cb1426e3aab.bindPopup(popup_c891003fe54a9756393b9dc6a54c7f51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b668898fa2aa6ab6907eba5090225a23 = L.circleMarker(\\n\",\n       \"                [36.1758, 117.1081],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_395020fba0fa8dbc8da0684d1831110c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b520ad1931af6498cb8fccbd55c7c5d = $(`&lt;div id=&quot;html_5b520ad1931af6498cb8fccbd55c7c5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1081             latitude:36.1758             PM2_5:49.33147632             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_395020fba0fa8dbc8da0684d1831110c.setContent(html_5b520ad1931af6498cb8fccbd55c7c5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b668898fa2aa6ab6907eba5090225a23.bindPopup(popup_395020fba0fa8dbc8da0684d1831110c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f606e367b71b2207a58997d4621c140 = L.circleMarker(\\n\",\n       \"                [39.1067, 117.1941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c546917555a8ccc365724e793923eae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_994f9f083e26f66da649101278f8a5bf = $(`&lt;div id=&quot;html_994f9f083e26f66da649101278f8a5bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1941             latitude:39.1067             PM2_5:47.90083799             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c546917555a8ccc365724e793923eae.setContent(html_994f9f083e26f66da649101278f8a5bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f606e367b71b2207a58997d4621c140.bindPopup(popup_4c546917555a8ccc365724e793923eae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df0986aeca01721bc4778f45fa78de2c = L.circleMarker(\\n\",\n       \"                [32.1142, 112.1825],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_556dc6cc41a2f328a0b92b8e57415d57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecea72ff580b1fe06d33c2cf5114f3bc = $(`&lt;div id=&quot;html_ecea72ff580b1fe06d33c2cf5114f3bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1825             latitude:32.1142             PM2_5:62.29295775             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_556dc6cc41a2f328a0b92b8e57415d57.setContent(html_ecea72ff580b1fe06d33c2cf5114f3bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df0986aeca01721bc4778f45fa78de2c.bindPopup(popup_556dc6cc41a2f328a0b92b8e57415d57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d0418e142ea0e64e618a891c0b505289 = L.circleMarker(\\n\",\n       \"                [36.792, 119.952],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f27b2e3ce8ddbefc99eaf6cd91832fff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_185990d6337bb1eefd2950436950faea = $(`&lt;div id=&quot;html_185990d6337bb1eefd2950436950faea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.952             latitude:36.792             PM2_5:32.28248588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f27b2e3ce8ddbefc99eaf6cd91832fff.setContent(html_185990d6337bb1eefd2950436950faea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d0418e142ea0e64e618a891c0b505289.bindPopup(popup_f27b2e3ce8ddbefc99eaf6cd91832fff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ac0e54de9b6fab1ee5422b20753c1ff = L.circleMarker(\\n\",\n       \"                [40.6532, 109.8756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbf1add022466c6dbcbaeba457ecfc23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9b1a1dfef2b7b2a92b59b1ecd64a708 = $(`&lt;div id=&quot;html_a9b1a1dfef2b7b2a92b59b1ecd64a708&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8756             latitude:40.6532             PM2_5:45.81005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbf1add022466c6dbcbaeba457ecfc23.setContent(html_a9b1a1dfef2b7b2a92b59b1ecd64a708);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ac0e54de9b6fab1ee5422b20753c1ff.bindPopup(popup_dbf1add022466c6dbcbaeba457ecfc23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9f187aefdac067c984a372800c6b9d9 = L.circleMarker(\\n\",\n       \"                [36.0875, 111.5025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66f9ae047df377e811782c172aab50ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15eba4a122b4d53b154f438e6c764060 = $(`&lt;div id=&quot;html_15eba4a122b4d53b154f438e6c764060&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5025             latitude:36.0875             PM2_5:81.15416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66f9ae047df377e811782c172aab50ba.setContent(html_15eba4a122b4d53b154f438e6c764060);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9f187aefdac067c984a372800c6b9d9.bindPopup(popup_66f9ae047df377e811782c172aab50ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4cafaf68172650f5d3ee504a5bedf191 = L.circleMarker(\\n\",\n       \"                [38.8343, 105.6775],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe15c8186da8e92ee1bee7ec69405673 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5dde8f11b4c1289324bb0715ec121e8 = $(`&lt;div id=&quot;html_b5dde8f11b4c1289324bb0715ec121e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6775             latitude:38.8343             PM2_5:29.56703911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe15c8186da8e92ee1bee7ec69405673.setContent(html_b5dde8f11b4c1289324bb0715ec121e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4cafaf68172650f5d3ee504a5bedf191.bindPopup(popup_fe15c8186da8e92ee1bee7ec69405673)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8af0e182bb684ac6d1c2cb51210349f5 = L.circleMarker(\\n\",\n       \"                [22.7906, 108.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd3e1186f55fa4ecbed4c86cc6b37d0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4cd5edc35d2c53fdcedabc4638003e63 = $(`&lt;div id=&quot;html_4cd5edc35d2c53fdcedabc4638003e63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.439             latitude:22.7906             PM2_5:33.82303371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd3e1186f55fa4ecbed4c86cc6b37d0d.setContent(html_4cd5edc35d2c53fdcedabc4638003e63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8af0e182bb684ac6d1c2cb51210349f5.bindPopup(popup_fd3e1186f55fa4ecbed4c86cc6b37d0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_776a3fca600cf7c6754a529e69b80d1d = L.circleMarker(\\n\",\n       \"                [37.4489, 116.3189],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0da192a2e7a90af4fd71e5783637527 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0aa56879b7f98d54008745e43a78c763 = $(`&lt;div id=&quot;html_0aa56879b7f98d54008745e43a78c763&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3189             latitude:37.4489             PM2_5:57.425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0da192a2e7a90af4fd71e5783637527.setContent(html_0aa56879b7f98d54008745e43a78c763);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_776a3fca600cf7c6754a529e69b80d1d.bindPopup(popup_e0da192a2e7a90af4fd71e5783637527)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21c354abcb2ed9c0809e871e8e53c7a4 = L.circleMarker(\\n\",\n       \"                [38.44139, 106.2275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d7d41b977d86e988b332be370a48477 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b04eaba1e1fb81260ad89d532f4ca2a9 = $(`&lt;div id=&quot;html_b04eaba1e1fb81260ad89d532f4ca2a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2275             latitude:38.44139             PM2_5:34.7254902             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d7d41b977d86e988b332be370a48477.setContent(html_b04eaba1e1fb81260ad89d532f4ca2a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21c354abcb2ed9c0809e871e8e53c7a4.bindPopup(popup_2d7d41b977d86e988b332be370a48477)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e24bf724341f1037501d2d78213ae347 = L.circleMarker(\\n\",\n       \"                [23.01277778, 113.7944444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd0e961ead34f5eda4329df45de88178 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07db2ecb22b154ab55b77768c18b2ced = $(`&lt;div id=&quot;html_07db2ecb22b154ab55b77768c18b2ced&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7944444             latitude:23.01277778             PM2_5:33.54142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd0e961ead34f5eda4329df45de88178.setContent(html_07db2ecb22b154ab55b77768c18b2ced);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e24bf724341f1037501d2d78213ae347.bindPopup(popup_fd0e961ead34f5eda4329df45de88178)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8a6bcfb2606fa446e8d65de155a2bc78 = L.circleMarker(\\n\",\n       \"                [42.2725, 118.9572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8332ed7f1a396e5e6d2cfffe8f820b0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_274380de7f2e0cab9d30b8a3eb1fcbd7 = $(`&lt;div id=&quot;html_274380de7f2e0cab9d30b8a3eb1fcbd7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9572             latitude:42.2725             PM2_5:25.29608939             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8332ed7f1a396e5e6d2cfffe8f820b0d.setContent(html_274380de7f2e0cab9d30b8a3eb1fcbd7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8a6bcfb2606fa446e8d65de155a2bc78.bindPopup(popup_8332ed7f1a396e5e6d2cfffe8f820b0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c43a5029b9164042af97eb90602eec82 = L.circleMarker(\\n\",\n       \"                [34.7545, 113.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_028a3ba38fab4dd4ff16db6c131d964f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9b9d9f66504531229503e0cd7655deb = $(`&lt;div id=&quot;html_b9b9d9f66504531229503e0cd7655deb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.681             latitude:34.7545             PM2_5:65.23728814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_028a3ba38fab4dd4ff16db6c131d964f.setContent(html_b9b9d9f66504531229503e0cd7655deb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c43a5029b9164042af97eb90602eec82.bindPopup(popup_028a3ba38fab4dd4ff16db6c131d964f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3401ca0193287a62a72a803abd9b3546 = L.circleMarker(\\n\",\n       \"                [31.1278, 97.1804],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81237c070ae16c81832084cb749c3484 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_687e50076f26a6ac1f624f0d828c20f6 = $(`&lt;div id=&quot;html_687e50076f26a6ac1f624f0d828c20f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.1804             latitude:31.1278             PM2_5:19.72532895             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81237c070ae16c81832084cb749c3484.setContent(html_687e50076f26a6ac1f624f0d828c20f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3401ca0193287a62a72a803abd9b3546.bindPopup(popup_81237c070ae16c81832084cb749c3484)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e962baf74ae55c9bf87d6fc50e08d73d = L.circleMarker(\\n\",\n       \"                [44.3336, 84.8983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d822afbe2e056b5ee9b425ea1f707406 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1dab0ba2b5c88c78a72ab0fd1455fbd = $(`&lt;div id=&quot;html_f1dab0ba2b5c88c78a72ab0fd1455fbd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8983             latitude:44.3336             PM2_5:34.77683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d822afbe2e056b5ee9b425ea1f707406.setContent(html_f1dab0ba2b5c88c78a72ab0fd1455fbd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e962baf74ae55c9bf87d6fc50e08d73d.bindPopup(popup_d822afbe2e056b5ee9b425ea1f707406)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ee3ede6c1121e3f0e680a56f0127480 = L.circleMarker(\\n\",\n       \"                [36.6739, 117.114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d2b7cef11734d70f39c57a404a1a595 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ffad75bc4847a09402cff0648a72b973 = $(`&lt;div id=&quot;html_ffad75bc4847a09402cff0648a72b973&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.114             latitude:36.6739             PM2_5:50.28088235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d2b7cef11734d70f39c57a404a1a595.setContent(html_ffad75bc4847a09402cff0648a72b973);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ee3ede6c1121e3f0e680a56f0127480.bindPopup(popup_9d2b7cef11734d70f39c57a404a1a595)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d718d00d679c62598e0e034ef40ffe05 = L.circleMarker(\\n\",\n       \"                [33.965, 118.283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d83ecc63f60ca871faa13e2cb7ea31f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67a97db60fe030cbed333aeefa9a19d0 = $(`&lt;div id=&quot;html_67a97db60fe030cbed333aeefa9a19d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.283             latitude:33.965             PM2_5:55.98459384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d83ecc63f60ca871faa13e2cb7ea31f5.setContent(html_67a97db60fe030cbed333aeefa9a19d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d718d00d679c62598e0e034ef40ffe05.bindPopup(popup_d83ecc63f60ca871faa13e2cb7ea31f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bcc42c72c7def548df3af304a21781e5 = L.circleMarker(\\n\",\n       \"                [35.259, 113.1992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b50320f19fa26baf621ac29bd96e4432 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67c3068ce2ada7c94beba3ce4bae4ae6 = $(`&lt;div id=&quot;html_67c3068ce2ada7c94beba3ce4bae4ae6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1992             latitude:35.259             PM2_5:66.3319209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b50320f19fa26baf621ac29bd96e4432.setContent(html_67c3068ce2ada7c94beba3ce4bae4ae6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bcc42c72c7def548df3af304a21781e5.bindPopup(popup_b50320f19fa26baf621ac29bd96e4432)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da1c687bb0c1fb675f673da896c3a633 = L.circleMarker(\\n\",\n       \"                [31.56, 120.294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fe068c509b9ca15b6d9fbea3ef3e268 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f9730af6baacd60ddad6e95f5b032a8 = $(`&lt;div id=&quot;html_1f9730af6baacd60ddad6e95f5b032a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.294             latitude:31.56             PM2_5:43.77966102             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fe068c509b9ca15b6d9fbea3ef3e268.setContent(html_1f9730af6baacd60ddad6e95f5b032a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da1c687bb0c1fb675f673da896c3a633.bindPopup(popup_6fe068c509b9ca15b6d9fbea3ef3e268)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f67cfae701820077d0a8508947222473 = L.circleMarker(\\n\",\n       \"                [24.3702, 102.5389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c3c3f3a82b6e91d3320b059a4dba72c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3b15f8627ee00688423ba40130a6d58 = $(`&lt;div id=&quot;html_f3b15f8627ee00688423ba40130a6d58&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5389             latitude:24.3702             PM2_5:29.84240688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c3c3f3a82b6e91d3320b059a4dba72c.setContent(html_f3b15f8627ee00688423ba40130a6d58);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f67cfae701820077d0a8508947222473.bindPopup(popup_9c3c3f3a82b6e91d3320b059a4dba72c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0aeb2b0b9abafa717cb46e1729cefafa = L.circleMarker(\\n\",\n       \"                [41.7089, 123.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af8e5133bc0fa355d624636f01f91edf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd986a404c274209aeb5fa4903a84af1 = $(`&lt;div id=&quot;html_cd986a404c274209aeb5fa4903a84af1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.439             latitude:41.7089             PM2_5:36.12638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af8e5133bc0fa355d624636f01f91edf.setContent(html_cd986a404c274209aeb5fa4903a84af1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0aeb2b0b9abafa717cb46e1729cefafa.bindPopup(popup_af8e5133bc0fa355d624636f01f91edf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e53a6fbcbbdc5b6556bc84c734f20e46 = L.circleMarker(\\n\",\n       \"                [30.2819, 109.4689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb49cc7df4b879b6a53b25d6ebfb3e8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_097364301c5b767ca1a5e5375ade91b0 = $(`&lt;div id=&quot;html_097364301c5b767ca1a5e5375ade91b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4689             latitude:30.2819             PM2_5:41.53792135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb49cc7df4b879b6a53b25d6ebfb3e8a.setContent(html_097364301c5b767ca1a5e5375ade91b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e53a6fbcbbdc5b6556bc84c734f20e46.bindPopup(popup_bb49cc7df4b879b6a53b25d6ebfb3e8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0adb59d1e325cce22d55141fc97626c6 = L.circleMarker(\\n\",\n       \"                [28.5819, 112.3744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d3f9626a8a453f310af23c48d822b82 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc4fdf9e8855380ea64f75c495724946 = $(`&lt;div id=&quot;html_fc4fdf9e8855380ea64f75c495724946&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3744             latitude:28.5819             PM2_5:32.59357542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d3f9626a8a453f310af23c48d822b82.setContent(html_fc4fdf9e8855380ea64f75c495724946);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0adb59d1e325cce22d55141fc97626c6.bindPopup(popup_5d3f9626a8a453f310af23c48d822b82)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87b97830c9ba034a66e851f2f93d0673 = L.circleMarker(\\n\",\n       \"                [24.7121, 108.2134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_920eeb23f01b39c9233dda65d5b53561 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_607584d68c6639c04925ce91be0de3df = $(`&lt;div id=&quot;html_607584d68c6639c04925ce91be0de3df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.2134             latitude:24.7121             PM2_5:28.12883436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_920eeb23f01b39c9233dda65d5b53561.setContent(html_607584d68c6639c04925ce91be0de3df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87b97830c9ba034a66e851f2f93d0673.bindPopup(popup_920eeb23f01b39c9233dda65d5b53561)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76ea6b848038ecca3647fe5878b04f33 = L.circleMarker(\\n\",\n       \"                [43.768, 87.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2013426befff9f9736a1803b44a2e19 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c26eb68f5c9e8a21cfd512c5ed382184 = $(`&lt;div id=&quot;html_c26eb68f5c9e8a21cfd512c5ed382184&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6046             latitude:43.768             PM2_5:53.62608696             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2013426befff9f9736a1803b44a2e19.setContent(html_c26eb68f5c9e8a21cfd512c5ed382184);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76ea6b848038ecca3647fe5878b04f33.bindPopup(popup_f2013426befff9f9736a1803b44a2e19)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03f1e8f31aacae0d3c4b10a6cd951313 = L.circleMarker(\\n\",\n       \"                [32.9444, 117.3575],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a604fd57b166505535bfb3b358c19279 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2d7586da88b1a6b8aa0d6fb1cdb7946 = $(`&lt;div id=&quot;html_a2d7586da88b1a6b8aa0d6fb1cdb7946&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3575             latitude:32.9444             PM2_5:63.05042017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a604fd57b166505535bfb3b358c19279.setContent(html_a2d7586da88b1a6b8aa0d6fb1cdb7946);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03f1e8f31aacae0d3c4b10a6cd951313.bindPopup(popup_a604fd57b166505535bfb3b358c19279)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fcb5b817461b37f8c268af379e4284d4 = L.circleMarker(\\n\",\n       \"                [23.08, 114.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e65c74f54eeca55e6ac7b3f6edce1d3c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b658c26b32e1da4e8432a0ad79a4ca76 = $(`&lt;div id=&quot;html_b658c26b32e1da4e8432a0ad79a4ca76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4053             latitude:23.08             PM2_5:28.84733894             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e65c74f54eeca55e6ac7b3f6edce1d3c.setContent(html_b658c26b32e1da4e8432a0ad79a4ca76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fcb5b817461b37f8c268af379e4284d4.bindPopup(popup_e65c74f54eeca55e6ac7b3f6edce1d3c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_53d8cc67d0244a747caa0a239431e802 = L.circleMarker(\\n\",\n       \"                [23.2783, 113.568],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d15f219664efa5c7baeef39fc4f01d91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ea18a8741b8326f91af921465a307a7 = $(`&lt;div id=&quot;html_0ea18a8741b8326f91af921465a307a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.568             latitude:23.2783             PM2_5:28.38128492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d15f219664efa5c7baeef39fc4f01d91.setContent(html_0ea18a8741b8326f91af921465a307a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_53d8cc67d0244a747caa0a239431e802.bindPopup(popup_d15f219664efa5c7baeef39fc4f01d91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96120875c335fcd0f07e5a8070611f9d = L.circleMarker(\\n\",\n       \"                [24.9624, 102.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f1942e35135f99678443bcb59de26be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc9b540ef2a43d669a5ca6f3408f2ca3 = $(`&lt;div id=&quot;html_dc9b540ef2a43d669a5ca6f3408f2ca3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.625             latitude:24.9624             PM2_5:26.83903134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f1942e35135f99678443bcb59de26be.setContent(html_dc9b540ef2a43d669a5ca6f3408f2ca3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96120875c335fcd0f07e5a8070611f9d.bindPopup(popup_7f1942e35135f99678443bcb59de26be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50a0096f3374fde0c31654d61c90e25a = L.circleMarker(\\n\",\n       \"                [32.6028, 116.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f50b4a90c6199ae2c65723d30e4ffde = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7d9eb4ae2944f4907086d5798b2c04c = $(`&lt;div id=&quot;html_d7d9eb4ae2944f4907086d5798b2c04c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8556             latitude:32.6028             PM2_5:56.07520891             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f50b4a90c6199ae2c65723d30e4ffde.setContent(html_d7d9eb4ae2944f4907086d5798b2c04c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50a0096f3374fde0c31654d61c90e25a.bindPopup(popup_2f50b4a90c6199ae2c65723d30e4ffde)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d75b3decc3bf79b2c10f592e0898d059 = L.circleMarker(\\n\",\n       \"                [34.3708, 107.1586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2a1bcaf156c3044ec68138b1da67f62 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_071d4b676b07f5cfcdb4c2ab9a87fb7a = $(`&lt;div id=&quot;html_071d4b676b07f5cfcdb4c2ab9a87fb7a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1586             latitude:34.3708             PM2_5:43.64899713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2a1bcaf156c3044ec68138b1da67f62.setContent(html_071d4b676b07f5cfcdb4c2ab9a87fb7a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d75b3decc3bf79b2c10f592e0898d059.bindPopup(popup_c2a1bcaf156c3044ec68138b1da67f62)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1b99a195c2cc3184d9f6d14beeec16d = L.circleMarker(\\n\",\n       \"                [45.61, 126.615],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d91c2085f8864afe9604cc7205cdab45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3f4af900eef0308eddff45fe64a079f = $(`&lt;div id=&quot;html_f3f4af900eef0308eddff45fe64a079f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.615             latitude:45.61             PM2_5:34.97091413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d91c2085f8864afe9604cc7205cdab45.setContent(html_f3f4af900eef0308eddff45fe64a079f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1b99a195c2cc3184d9f6d14beeec16d.bindPopup(popup_d91c2085f8864afe9604cc7205cdab45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6f5d0f7c15d86e5be8de9bf422726aa = L.circleMarker(\\n\",\n       \"                [40.1194, 124.3678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0c928363ec0b4046ed7f2b3ff01c5cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_185fa183f0e4b944024a9eafa9afbe46 = $(`&lt;div id=&quot;html_185fa183f0e4b944024a9eafa9afbe46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3678             latitude:40.1194             PM2_5:22.3557423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0c928363ec0b4046ed7f2b3ff01c5cd.setContent(html_185fa183f0e4b944024a9eafa9afbe46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6f5d0f7c15d86e5be8de9bf422726aa.bindPopup(popup_c0c928363ec0b4046ed7f2b3ff01c5cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa8be5710c6cbdefbad0b192e3cd5ae9 = L.circleMarker(\\n\",\n       \"                [41.0228, 123.1289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d0e04d7745c25f0ef0f0de30bc9734b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f5a8a647a5b5daa598275ccc29aa13e6 = $(`&lt;div id=&quot;html_f5a8a647a5b5daa598275ccc29aa13e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1289             latitude:41.0228             PM2_5:27.61384615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d0e04d7745c25f0ef0f0de30bc9734b.setContent(html_f5a8a647a5b5daa598275ccc29aa13e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa8be5710c6cbdefbad0b192e3cd5ae9.bindPopup(popup_8d0e04d7745c25f0ef0f0de30bc9734b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9a9e4d509b60026e222f1e758aca3ca = L.circleMarker(\\n\",\n       \"                [31.238, 121.4],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_95a3d95a0e6e66c475e95f00ad72aca5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02d4df006da91ed2f45228efd757a74d = $(`&lt;div id=&quot;html_02d4df006da91ed2f45228efd757a74d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.4             latitude:31.238             PM2_5:40.8079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_95a3d95a0e6e66c475e95f00ad72aca5.setContent(html_02d4df006da91ed2f45228efd757a74d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9a9e4d509b60026e222f1e758aca3ca.bindPopup(popup_95a3d95a0e6e66c475e95f00ad72aca5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d74bbf818b27f270b3332f5c70c4476 = L.circleMarker(\\n\",\n       \"                [30.2456, 120.127],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54452ddd383f5a0fa7ff8e6596fd455d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6501b9b579de9975a0fec233b7cc6145 = $(`&lt;div id=&quot;html_6501b9b579de9975a0fec233b7cc6145&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.127             latitude:30.2456             PM2_5:39.34916201             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54452ddd383f5a0fa7ff8e6596fd455d.setContent(html_6501b9b579de9975a0fec233b7cc6145);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d74bbf818b27f270b3332f5c70c4476.bindPopup(popup_54452ddd383f5a0fa7ff8e6596fd455d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24b79cabf5fd2268c52639b45109c5d8 = L.circleMarker(\\n\",\n       \"                [38.5061, 102.1708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0cc321fa8b220555c8c38812a21b5e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94721693b589bd340c6cbdc4e41f0b5a = $(`&lt;div id=&quot;html_94721693b589bd340c6cbdc4e41f0b5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1708             latitude:38.5061             PM2_5:24.38687151             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0cc321fa8b220555c8c38812a21b5e5.setContent(html_94721693b589bd340c6cbdc4e41f0b5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24b79cabf5fd2268c52639b45109c5d8.bindPopup(popup_f0cc321fa8b220555c8c38812a21b5e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a88c1b42dd8c05e38b1bacf4f4854f8d = L.circleMarker(\\n\",\n       \"                [36.7339, 119.0841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26bd92811e0ef5295cf385067526b64b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_446c839b0e38a79caaa8eb4603d71fe9 = $(`&lt;div id=&quot;html_446c839b0e38a79caaa8eb4603d71fe9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0841             latitude:36.7339             PM2_5:55.09861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26bd92811e0ef5295cf385067526b64b.setContent(html_446c839b0e38a79caaa8eb4603d71fe9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a88c1b42dd8c05e38b1bacf4f4854f8d.bindPopup(popup_26bd92811e0ef5295cf385067526b64b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ea089faad5e6b09322a62f29ceb4a9a = L.circleMarker(\\n\",\n       \"                [32.2786, 118.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21272079709f0795a227cdd0ca00c85d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ede4ee90f665b5cd3aa7a96d7d40c0a0 = $(`&lt;div id=&quot;html_ede4ee90f665b5cd3aa7a96d7d40c0a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3244             latitude:32.2786             PM2_5:52.09888579             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21272079709f0795a227cdd0ca00c85d.setContent(html_ede4ee90f665b5cd3aa7a96d7d40c0a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ea089faad5e6b09322a62f29ceb4a9a.bindPopup(popup_21272079709f0795a227cdd0ca00c85d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_521be1bb92fa7dc6bee8a16077e8a940 = L.circleMarker(\\n\",\n       \"                [33.8399, 115.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_371be1f05b8a1676d2bf957309671357 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24e03d49f7f44bf14261c46152f8009e = $(`&lt;div id=&quot;html_24e03d49f7f44bf14261c46152f8009e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8067             latitude:33.8399             PM2_5:53.26123596             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_371be1f05b8a1676d2bf957309671357.setContent(html_24e03d49f7f44bf14261c46152f8009e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_521be1bb92fa7dc6bee8a16077e8a940.bindPopup(popup_371be1f05b8a1676d2bf957309671357)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00f7c0532d9719dc77c5ffe54e8e4906 = L.circleMarker(\\n\",\n       \"                [30.0475, 101.9603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_039ccc8e1d2d39e4d5df6a5be4f35d5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18b28605bea10932da8b9609d5f616e1 = $(`&lt;div id=&quot;html_18b28605bea10932da8b9609d5f616e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9603             latitude:30.0475             PM2_5:15.21648045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_039ccc8e1d2d39e4d5df6a5be4f35d5a.setContent(html_18b28605bea10932da8b9609d5f616e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00f7c0532d9719dc77c5ffe54e8e4906.bindPopup(popup_039ccc8e1d2d39e4d5df6a5be4f35d5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a8250fe64d846e0fcd05a0f5f516c55 = L.circleMarker(\\n\",\n       \"                [37.9097, 114.3541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da40b3a5e9a6ece50fca7e7d7e7742f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b8b4a1eaa0044962a2af8c5ab13bb6a6 = $(`&lt;div id=&quot;html_b8b4a1eaa0044962a2af8c5ab13bb6a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3541             latitude:37.9097             PM2_5:52.41044776             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da40b3a5e9a6ece50fca7e7d7e7742f8.setContent(html_b8b4a1eaa0044962a2af8c5ab13bb6a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a8250fe64d846e0fcd05a0f5f516c55.bindPopup(popup_da40b3a5e9a6ece50fca7e7d7e7742f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_780cbe5b0ddb17582d83acd319ad5d49 = L.circleMarker(\\n\",\n       \"                [24.6967, 108.1009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5de38131822af272dbd0fb8992cd8e0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_34665b0328a12b4075ddf1ed024fe8a3 = $(`&lt;div id=&quot;html_34665b0328a12b4075ddf1ed024fe8a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.1009             latitude:24.6967             PM2_5:32.43905817             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5de38131822af272dbd0fb8992cd8e0a.setContent(html_34665b0328a12b4075ddf1ed024fe8a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_780cbe5b0ddb17582d83acd319ad5d49.bindPopup(popup_5de38131822af272dbd0fb8992cd8e0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_994948bd7c0c881f7c6714fc2bef37c9 = L.circleMarker(\\n\",\n       \"                [23.6706, 116.6447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4146c9b4c8831dced7b06055aec4056 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c5ef528f4c0fed1ac3e5bb2658e0242 = $(`&lt;div id=&quot;html_7c5ef528f4c0fed1ac3e5bb2658e0242&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6447             latitude:23.6706             PM2_5:26.14225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4146c9b4c8831dced7b06055aec4056.setContent(html_7c5ef528f4c0fed1ac3e5bb2658e0242);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_994948bd7c0c881f7c6714fc2bef37c9.bindPopup(popup_a4146c9b4c8831dced7b06055aec4056)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5a3e5130fe8e6d6af426d0f68f96ffd = L.circleMarker(\\n\",\n       \"                [33.0323, 107.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e85657389e51ae5ccaf664e807ce1f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c913fc5c0a6fe461c748e8a9e85ff0fe = $(`&lt;div id=&quot;html_c913fc5c0a6fe461c748e8a9e85ff0fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.007             latitude:33.0323             PM2_5:47.88611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e85657389e51ae5ccaf664e807ce1f2.setContent(html_c913fc5c0a6fe461c748e8a9e85ff0fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5a3e5130fe8e6d6af426d0f68f96ffd.bindPopup(popup_1e85657389e51ae5ccaf664e807ce1f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f216564adeda88aa1a46d7cba3f34238 = L.circleMarker(\\n\",\n       \"                [25.442, 119.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e876d44dc586fe2bd53afc512529ec9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2dce23d3cae9d385a8452afbb92c2804 = $(`&lt;div id=&quot;html_2dce23d3cae9d385a8452afbb92c2804&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0156             latitude:25.442             PM2_5:28.97338936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e876d44dc586fe2bd53afc512529ec9f.setContent(html_2dce23d3cae9d385a8452afbb92c2804);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f216564adeda88aa1a46d7cba3f34238.bindPopup(popup_e876d44dc586fe2bd53afc512529ec9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3301492639987016203996d1e8a6cbf4 = L.circleMarker(\\n\",\n       \"                [38.5247, 102.1878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2fb592af4b49d79064b0ffa8642e881 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d751774edd8878ffe457b9b110367776 = $(`&lt;div id=&quot;html_d751774edd8878ffe457b9b110367776&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1878             latitude:38.5247             PM2_5:33.28028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2fb592af4b49d79064b0ffa8642e881.setContent(html_d751774edd8878ffe457b9b110367776);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3301492639987016203996d1e8a6cbf4.bindPopup(popup_c2fb592af4b49d79064b0ffa8642e881)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5bdefb59a3ec964885d1e51655104c7 = L.circleMarker(\\n\",\n       \"                [22.8561, 108.316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83d395bf33ff59e424815081b188d79d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_408f2e0d8753304dbb08ce2be273270b = $(`&lt;div id=&quot;html_408f2e0d8753304dbb08ce2be273270b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.316             latitude:22.8561             PM2_5:33.86731844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83d395bf33ff59e424815081b188d79d.setContent(html_408f2e0d8753304dbb08ce2be273270b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5bdefb59a3ec964885d1e51655104c7.bindPopup(popup_83d395bf33ff59e424815081b188d79d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49e81ddc5b9c19c502fc3622bf45d6e4 = L.circleMarker(\\n\",\n       \"                [31.656, 120.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_099ab7394d8e2f1bf4a717ef4649bf66 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a99b5447fe7cd299d96a8e36c077ff87 = $(`&lt;div id=&quot;html_a99b5447fe7cd299d96a8e36c077ff87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.734             latitude:31.656             PM2_5:43.63128492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_099ab7394d8e2f1bf4a717ef4649bf66.setContent(html_a99b5447fe7cd299d96a8e36c077ff87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49e81ddc5b9c19c502fc3622bf45d6e4.bindPopup(popup_099ab7394d8e2f1bf4a717ef4649bf66)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6dda959e938de74d6bed16f3510f0d8f = L.circleMarker(\\n\",\n       \"                [29.36028, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69b2d724ec45ddbf70e2d5bd3f347c02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b78c18b40bb70cec0e72c4f4089d28b = $(`&lt;div id=&quot;html_5b78c18b40bb70cec0e72c4f4089d28b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:29.36028             PM2_5:54.58543417             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69b2d724ec45ddbf70e2d5bd3f347c02.setContent(html_5b78c18b40bb70cec0e72c4f4089d28b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6dda959e938de74d6bed16f3510f0d8f.bindPopup(popup_69b2d724ec45ddbf70e2d5bd3f347c02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f05e19c98373520b4e4cc8eb10143a48 = L.circleMarker(\\n\",\n       \"                [22.7833, 108.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a66106bc7cbd9184cadce48851ce563 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc04c1f99e508c32cb6304260bd495a6 = $(`&lt;div id=&quot;html_bc04c1f99e508c32cb6304260bd495a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.244             latitude:22.7833             PM2_5:36.84195402             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a66106bc7cbd9184cadce48851ce563.setContent(html_bc04c1f99e508c32cb6304260bd495a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f05e19c98373520b4e4cc8eb10143a48.bindPopup(popup_5a66106bc7cbd9184cadce48851ce563)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96a82d4f9e398f1c4866f42052d100e2 = L.circleMarker(\\n\",\n       \"                [36.3083, 120.1964],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84e2bc714f418ac6ae0326a03fba46f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1bf08accff49b08ba43e8755c48bff2c = $(`&lt;div id=&quot;html_1bf08accff49b08ba43e8755c48bff2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1964             latitude:36.3083             PM2_5:41.015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84e2bc714f418ac6ae0326a03fba46f7.setContent(html_1bf08accff49b08ba43e8755c48bff2c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96a82d4f9e398f1c4866f42052d100e2.bindPopup(popup_84e2bc714f418ac6ae0326a03fba46f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a74c792463b18b8489d850e81924bf59 = L.circleMarker(\\n\",\n       \"                [41.8828, 123.9169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b8cf619542cd1ab054b88af96743060 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55df10071fc97a07ecbeb11caec35aa2 = $(`&lt;div id=&quot;html_55df10071fc97a07ecbeb11caec35aa2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9169             latitude:41.8828             PM2_5:34.99301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b8cf619542cd1ab054b88af96743060.setContent(html_55df10071fc97a07ecbeb11caec35aa2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a74c792463b18b8489d850e81924bf59.bindPopup(popup_9b8cf619542cd1ab054b88af96743060)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a2c7fe6bbfcedd857deb7ea31759d9f = L.circleMarker(\\n\",\n       \"                [41.8472, 123.428],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f157c4cf76844f85b49d5d1602e0e5e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_380b903ac6abec2ebc244ccdbe4855e3 = $(`&lt;div id=&quot;html_380b903ac6abec2ebc244ccdbe4855e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.428             latitude:41.8472             PM2_5:31.03651685             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f157c4cf76844f85b49d5d1602e0e5e9.setContent(html_380b903ac6abec2ebc244ccdbe4855e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a2c7fe6bbfcedd857deb7ea31759d9f.bindPopup(popup_f157c4cf76844f85b49d5d1602e0e5e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef33c0df2b5020a5075b7096066132ac = L.circleMarker(\\n\",\n       \"                [27.8381, 113.143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0a27357bc3f98e6705ed18a8bdb6963 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8550d3034de19ad3de8a443d05b91b84 = $(`&lt;div id=&quot;html_8550d3034de19ad3de8a443d05b91b84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.143             latitude:27.8381             PM2_5:41.82670455             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0a27357bc3f98e6705ed18a8bdb6963.setContent(html_8550d3034de19ad3de8a443d05b91b84);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef33c0df2b5020a5075b7096066132ac.bindPopup(popup_b0a27357bc3f98e6705ed18a8bdb6963)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d975ab96901d4bdebcff82019d28fe9 = L.circleMarker(\\n\",\n       \"                [43.8667, 125.417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12589ccf565d95428054a9649d3a947d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9108ddbd7f31f4cc40002746766520d = $(`&lt;div id=&quot;html_b9108ddbd7f31f4cc40002746766520d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.417             latitude:43.8667             PM2_5:34.31728045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12589ccf565d95428054a9649d3a947d.setContent(html_b9108ddbd7f31f4cc40002746766520d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d975ab96901d4bdebcff82019d28fe9.bindPopup(popup_12589ccf565d95428054a9649d3a947d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49b9d798eed42a88e861feb0c59bee8a = L.circleMarker(\\n\",\n       \"                [45.7258, 126.646],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e77b932c091235f9b82e8048c32fa749 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e3924576415f205f1294ab9c4a86aec = $(`&lt;div id=&quot;html_8e3924576415f205f1294ab9c4a86aec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.646             latitude:45.7258             PM2_5:37.67694805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e77b932c091235f9b82e8048c32fa749.setContent(html_8e3924576415f205f1294ab9c4a86aec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49b9d798eed42a88e861feb0c59bee8a.bindPopup(popup_e77b932c091235f9b82e8048c32fa749)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9207ba749eb95b861f9ecc57253859e5 = L.circleMarker(\\n\",\n       \"                [26.6272, 118.1756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30b88522aae80a9f967e783843f281c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dedf5143910cde1cbc9feb52d3382a93 = $(`&lt;div id=&quot;html_dedf5143910cde1cbc9feb52d3382a93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1756             latitude:26.6272             PM2_5:22.71927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30b88522aae80a9f967e783843f281c1.setContent(html_dedf5143910cde1cbc9feb52d3382a93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9207ba749eb95b861f9ecc57253859e5.bindPopup(popup_30b88522aae80a9f967e783843f281c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1906dafd5fbf29822a16a90504621620 = L.circleMarker(\\n\",\n       \"                [27.9883, 116.3553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7bc3b95c96ab85893901e6ee4786ecf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0405e9e9376f68b8b20808bbfeee1cf = $(`&lt;div id=&quot;html_a0405e9e9376f68b8b20808bbfeee1cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3553             latitude:27.9883             PM2_5:44.83333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7bc3b95c96ab85893901e6ee4786ecf.setContent(html_a0405e9e9376f68b8b20808bbfeee1cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1906dafd5fbf29822a16a90504621620.bindPopup(popup_c7bc3b95c96ab85893901e6ee4786ecf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09932fca89a79507ede26f384a46e176 = L.circleMarker(\\n\",\n       \"                [39.9522, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98215637db23ec8b71e762d0d66d8e30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_824e06cecb63e8ff5386528b57f4d851 = $(`&lt;div id=&quot;html_824e06cecb63e8ff5386528b57f4d851&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.9522             PM2_5:54.89859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98215637db23ec8b71e762d0d66d8e30.setContent(html_824e06cecb63e8ff5386528b57f4d851);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09932fca89a79507ede26f384a46e176.bindPopup(popup_98215637db23ec8b71e762d0d66d8e30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_915b32ab702e71c585dbf118d428f33d = L.circleMarker(\\n\",\n       \"                [38.843, 105.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f145e7c9484621640fb3bce6a7b51bfa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7caccd0890ec394a146c48916a297f65 = $(`&lt;div id=&quot;html_7caccd0890ec394a146c48916a297f65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6975             latitude:38.843             PM2_5:33.15181058             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f145e7c9484621640fb3bce6a7b51bfa.setContent(html_7caccd0890ec394a146c48916a297f65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_915b32ab702e71c585dbf118d428f33d.bindPopup(popup_f145e7c9484621640fb3bce6a7b51bfa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_298d16ee884e9c13fe5abb6e98a491bf = L.circleMarker(\\n\",\n       \"                [22.8172, 114.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1587ef1cf9efea3b98ce4e732b2b6b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a37bec25942924947e776508ba99334d = $(`&lt;div id=&quot;html_a37bec25942924947e776508ba99334d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3244             latitude:22.8172             PM2_5:24.58848315             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1587ef1cf9efea3b98ce4e732b2b6b3.setContent(html_a37bec25942924947e776508ba99334d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_298d16ee884e9c13fe5abb6e98a491bf.bindPopup(popup_c1587ef1cf9efea3b98ce4e732b2b6b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe3f626e8664a9104b6930a242c7aebe = L.circleMarker(\\n\",\n       \"                [39.9419, 119.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f4aaf3d028fbeaca17e899412c861eb3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ee40aa361005b63ecb832825d43c41e = $(`&lt;div id=&quot;html_0ee40aa361005b63ecb832825d43c41e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5369             latitude:39.9419             PM2_5:36.63826816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f4aaf3d028fbeaca17e899412c861eb3.setContent(html_0ee40aa361005b63ecb832825d43c41e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe3f626e8664a9104b6930a242c7aebe.bindPopup(popup_f4aaf3d028fbeaca17e899412c861eb3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85c9b0a89f67506fadbdf6e6d1379644 = L.circleMarker(\\n\",\n       \"                [24.4175, 111.5269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0e0d01b4036e747e9178025e6bf7482 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9a8c57ad1cee9ab6833a06321ca80db = $(`&lt;div id=&quot;html_c9a8c57ad1cee9ab6833a06321ca80db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5269             latitude:24.4175             PM2_5:44.24504249             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0e0d01b4036e747e9178025e6bf7482.setContent(html_c9a8c57ad1cee9ab6833a06321ca80db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85c9b0a89f67506fadbdf6e6d1379644.bindPopup(popup_f0e0d01b4036e747e9178025e6bf7482)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ad3e099d9e9f70c7181089e4fd55b14 = L.circleMarker(\\n\",\n       \"                [29.7128, 118.3057],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f03e6a3485408507f10c4211d803d4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ceaa4f42b4f547075754f895b221fe39 = $(`&lt;div id=&quot;html_ceaa4f42b4f547075754f895b221fe39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3057             latitude:29.7128             PM2_5:26.5280112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f03e6a3485408507f10c4211d803d4a.setContent(html_ceaa4f42b4f547075754f895b221fe39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ad3e099d9e9f70c7181089e4fd55b14.bindPopup(popup_4f03e6a3485408507f10c4211d803d4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5596315391178576c23f8d05d7f92c9d = L.circleMarker(\\n\",\n       \"                [26.57098, 101.68912],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88c6e64013e08bcfd4548994aaecdf62 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6f52905f90672d04a7c5fd269b66a9a = $(`&lt;div id=&quot;html_f6f52905f90672d04a7c5fd269b66a9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.68912             latitude:26.57098             PM2_5:34.35014006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88c6e64013e08bcfd4548994aaecdf62.setContent(html_f6f52905f90672d04a7c5fd269b66a9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5596315391178576c23f8d05d7f92c9d.bindPopup(popup_88c6e64013e08bcfd4548994aaecdf62)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a18ccbf6189149a12d84d68c8b219a79 = L.circleMarker(\\n\",\n       \"                [36.087, 114.358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d07d9b8918fcf631b4997d5c4ac196f0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b0fd1527fa17e398c3dd92bc99982f5 = $(`&lt;div id=&quot;html_4b0fd1527fa17e398c3dd92bc99982f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.358             latitude:36.087             PM2_5:68.93837535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d07d9b8918fcf631b4997d5c4ac196f0.setContent(html_4b0fd1527fa17e398c3dd92bc99982f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a18ccbf6189149a12d84d68c8b219a79.bindPopup(popup_d07d9b8918fcf631b4997d5c4ac196f0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8af83b6ab387ac0e0941f36cb3599c4d = L.circleMarker(\\n\",\n       \"                [39.3673, 112.4279],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7b4d2fb720be5334c6665cfec08c48c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd63c51503d6f7ba67430cfd5525b2df = $(`&lt;div id=&quot;html_dd63c51503d6f7ba67430cfd5525b2df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4279             latitude:39.3673             PM2_5:35.7987988             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7b4d2fb720be5334c6665cfec08c48c.setContent(html_dd63c51503d6f7ba67430cfd5525b2df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8af83b6ab387ac0e0941f36cb3599c4d.bindPopup(popup_c7b4d2fb720be5334c6665cfec08c48c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc31f1e339780df04f27e9a1f249c58d = L.circleMarker(\\n\",\n       \"                [37.4658, 118.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c1df85e269f3a30685a12487f910fe7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0182a626e2f07131b5c0dc58d0418f33 = $(`&lt;div id=&quot;html_0182a626e2f07131b5c0dc58d0418f33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5019             latitude:37.4658             PM2_5:50.71587744             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c1df85e269f3a30685a12487f910fe7.setContent(html_0182a626e2f07131b5c0dc58d0418f33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc31f1e339780df04f27e9a1f249c58d.bindPopup(popup_1c1df85e269f3a30685a12487f910fe7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22cdc9fdee927fe1548b991b1271bf1c = L.circleMarker(\\n\",\n       \"                [23.7233, 114.6892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3cc81897325834e1e75616af6423ffd1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd962ad42c07b3ade5d0d9a9e8d7af4b = $(`&lt;div id=&quot;html_bd962ad42c07b3ade5d0d9a9e8d7af4b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6892             latitude:23.7233             PM2_5:26.02240896             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3cc81897325834e1e75616af6423ffd1.setContent(html_bd962ad42c07b3ade5d0d9a9e8d7af4b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22cdc9fdee927fe1548b991b1271bf1c.bindPopup(popup_3cc81897325834e1e75616af6423ffd1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4aaf3da70d9737724d4c81a9406709ea = L.circleMarker(\\n\",\n       \"                [28.4569, 118.0058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cff78399f823ffae15a87aaea643d2a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_63948a0609bfe59cdda830e16a9b862e = $(`&lt;div id=&quot;html_63948a0609bfe59cdda830e16a9b862e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0058             latitude:28.4569             PM2_5:36.31908832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cff78399f823ffae15a87aaea643d2a4.setContent(html_63948a0609bfe59cdda830e16a9b862e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4aaf3da70d9737724d4c81a9406709ea.bindPopup(popup_cff78399f823ffae15a87aaea643d2a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_feee9e62745a11f58acbebecd9d76dd5 = L.circleMarker(\\n\",\n       \"                [30.2099, 115.0264],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f23179b9efc1cb0c66c834bb7907e07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6fc1cbf9e6f99912c36b052cba3db16 = $(`&lt;div id=&quot;html_d6fc1cbf9e6f99912c36b052cba3db16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0264             latitude:30.2099             PM2_5:54.80532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f23179b9efc1cb0c66c834bb7907e07.setContent(html_d6fc1cbf9e6f99912c36b052cba3db16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_feee9e62745a11f58acbebecd9d76dd5.bindPopup(popup_7f23179b9efc1cb0c66c834bb7907e07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bec3faffa35f13ca2440fb9e61991a16 = L.circleMarker(\\n\",\n       \"                [33.737, 113.182],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_715fc9ea1994a74664c50b93179373ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1ceed9fbe4a1c80df77e0e321f5de15 = $(`&lt;div id=&quot;html_b1ceed9fbe4a1c80df77e0e321f5de15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.182             latitude:33.737             PM2_5:60.34225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_715fc9ea1994a74664c50b93179373ad.setContent(html_b1ceed9fbe4a1c80df77e0e321f5de15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bec3faffa35f13ca2440fb9e61991a16.bindPopup(popup_715fc9ea1994a74664c50b93179373ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3a1f1d531228a3857d0559e261507b6 = L.circleMarker(\\n\",\n       \"                [22.735, 108.328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_455d7133d1fbe986854deb04673dd5a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5dc96d72525920ef069af8b0a9c44c1e = $(`&lt;div id=&quot;html_5dc96d72525920ef069af8b0a9c44c1e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.328             latitude:22.735             PM2_5:34.70655271             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_455d7133d1fbe986854deb04673dd5a0.setContent(html_5dc96d72525920ef069af8b0a9c44c1e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3a1f1d531228a3857d0559e261507b6.bindPopup(popup_455d7133d1fbe986854deb04673dd5a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4684388ceda665c8d08240bfcf3f0e25 = L.circleMarker(\\n\",\n       \"                [35.0147, 110.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef0150acd88eb239c9fd9eeb889d1227 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc6960c91c49f1bac890e8c9939a4727 = $(`&lt;div id=&quot;html_dc6960c91c49f1bac890e8c9939a4727&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9956             latitude:35.0147             PM2_5:73.66899441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef0150acd88eb239c9fd9eeb889d1227.setContent(html_dc6960c91c49f1bac890e8c9939a4727);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4684388ceda665c8d08240bfcf3f0e25.bindPopup(popup_ef0150acd88eb239c9fd9eeb889d1227)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_99e3e6a871d8ea98c35e2bb4f0b1fccd = L.circleMarker(\\n\",\n       \"                [38.9194, 117.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d984a6087e63d1662e1e5c93132a0692 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0a748a091bbac199e81c8d77a112b8b = $(`&lt;div id=&quot;html_d0a748a091bbac199e81c8d77a112b8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.157             latitude:38.9194             PM2_5:57.08866279             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d984a6087e63d1662e1e5c93132a0692.setContent(html_d0a748a091bbac199e81c8d77a112b8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_99e3e6a871d8ea98c35e2bb4f0b1fccd.bindPopup(popup_d984a6087e63d1662e1e5c93132a0692)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d04dc2360ed294451db4897237ba7d10 = L.circleMarker(\\n\",\n       \"                [27.8036, 114.3442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00f62585df1ab7eaba7d35333f7aa519 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3cdf235f93586e3ed00494f9cfe66aa9 = $(`&lt;div id=&quot;html_3cdf235f93586e3ed00494f9cfe66aa9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3442             latitude:27.8036             PM2_5:49.8198324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00f62585df1ab7eaba7d35333f7aa519.setContent(html_3cdf235f93586e3ed00494f9cfe66aa9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d04dc2360ed294451db4897237ba7d10.bindPopup(popup_00f62585df1ab7eaba7d35333f7aa519)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b38f25bfa8cf19e2931aed9f22d84c4 = L.circleMarker(\\n\",\n       \"                [23.8982, 100.0782],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a228cde45f25c62946e8b5243ef0c59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8276b8811cb239025ba291a934a8f6cc = $(`&lt;div id=&quot;html_8276b8811cb239025ba291a934a8f6cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0782             latitude:23.8982             PM2_5:26.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a228cde45f25c62946e8b5243ef0c59.setContent(html_8276b8811cb239025ba291a934a8f6cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b38f25bfa8cf19e2931aed9f22d84c4.bindPopup(popup_7a228cde45f25c62946e8b5243ef0c59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2943ad47e2893f1d3435ff77030397d3 = L.circleMarker(\\n\",\n       \"                [30.8244, 120.07],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69973b03c58a5c0905dfa9bb1af4bda1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f75d1bc40819c483d7183b39cfb6b7f = $(`&lt;div id=&quot;html_2f75d1bc40819c483d7183b39cfb6b7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.07             latitude:30.8244             PM2_5:38.02668539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69973b03c58a5c0905dfa9bb1af4bda1.setContent(html_2f75d1bc40819c483d7183b39cfb6b7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2943ad47e2893f1d3435ff77030397d3.bindPopup(popup_69973b03c58a5c0905dfa9bb1af4bda1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe6573aba3593b1117d183e2e8d41d0e = L.circleMarker(\\n\",\n       \"                [22.2294, 113.495],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c425bf6b7bdd2cb390c04848f475b92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_791f309b6f3725930e4f22439239581c = $(`&lt;div id=&quot;html_791f309b6f3725930e4f22439239581c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.495             latitude:22.2294             PM2_5:28.53813559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c425bf6b7bdd2cb390c04848f475b92.setContent(html_791f309b6f3725930e4f22439239581c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe6573aba3593b1117d183e2e8d41d0e.bindPopup(popup_5c425bf6b7bdd2cb390c04848f475b92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e2cd685731b975b7c8e4c4ea2b43bf4 = L.circleMarker(\\n\",\n       \"                [22.4137, 107.3476],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7357d9dcfe7971b5028cabc68ec5e9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bec15e932098a22f4e67623968382486 = $(`&lt;div id=&quot;html_bec15e932098a22f4e67623968382486&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3476             latitude:22.4137             PM2_5:28.27130682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7357d9dcfe7971b5028cabc68ec5e9f.setContent(html_bec15e932098a22f4e67623968382486);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e2cd685731b975b7c8e4c4ea2b43bf4.bindPopup(popup_c7357d9dcfe7971b5028cabc68ec5e9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c8136668aae04782e55099a582a5239 = L.circleMarker(\\n\",\n       \"                [36.1942, 117.1436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a385d5a9e38ccb3124c4143d6ab1d7c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b295a2d70630c277367a70d03174844 = $(`&lt;div id=&quot;html_4b295a2d70630c277367a70d03174844&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1436             latitude:36.1942             PM2_5:50.27793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a385d5a9e38ccb3124c4143d6ab1d7c.setContent(html_4b295a2d70630c277367a70d03174844);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c8136668aae04782e55099a582a5239.bindPopup(popup_5a385d5a9e38ccb3124c4143d6ab1d7c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f57f5608763f2883dcafc885421d4c01 = L.circleMarker(\\n\",\n       \"                [30.7946, 120.744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_efa318728267e93e9344b28df6d11675 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f2ace4f08008529d02f4adf99d7c185 = $(`&lt;div id=&quot;html_5f2ace4f08008529d02f4adf99d7c185&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.744             latitude:30.7946             PM2_5:41.25             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_efa318728267e93e9344b28df6d11675.setContent(html_5f2ace4f08008529d02f4adf99d7c185);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f57f5608763f2883dcafc885421d4c01.bindPopup(popup_efa318728267e93e9344b28df6d11675)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f89b2abf6c86bae19ea7e3fb92c443f = L.circleMarker(\\n\",\n       \"                [38.2839, 109.7289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d4b2c18612df34b0fee5231443af7a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f38f5327168989942cf74aa0f8350bc = $(`&lt;div id=&quot;html_3f38f5327168989942cf74aa0f8350bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7289             latitude:38.2839             PM2_5:30.51983003             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d4b2c18612df34b0fee5231443af7a0.setContent(html_3f38f5327168989942cf74aa0f8350bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f89b2abf6c86bae19ea7e3fb92c443f.bindPopup(popup_5d4b2c18612df34b0fee5231443af7a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f41c86f87158c2461a33a774e08fb8b = L.circleMarker(\\n\",\n       \"                [29.5953, 105.0331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a0487b4e6cd12d5fb6416c309437579 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f24c3ba26d769619be9b1e85492924e = $(`&lt;div id=&quot;html_9f24c3ba26d769619be9b1e85492924e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0331             latitude:29.5953             PM2_5:34.3258427             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a0487b4e6cd12d5fb6416c309437579.setContent(html_9f24c3ba26d769619be9b1e85492924e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f41c86f87158c2461a33a774e08fb8b.bindPopup(popup_2a0487b4e6cd12d5fb6416c309437579)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47c70f6ed7a86896d3aaa86970428813 = L.circleMarker(\\n\",\n       \"                [32.9673, 117.3536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a94e9deb5c64041b52c62dfdfd3c14ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e50287fba890fcdfb0fc99d223dcd3ec = $(`&lt;div id=&quot;html_e50287fba890fcdfb0fc99d223dcd3ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3536             latitude:32.9673             PM2_5:49.43333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a94e9deb5c64041b52c62dfdfd3c14ab.setContent(html_e50287fba890fcdfb0fc99d223dcd3ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47c70f6ed7a86896d3aaa86970428813.bindPopup(popup_a94e9deb5c64041b52c62dfdfd3c14ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d654b77e0127f2dd7458537fed68c7bb = L.circleMarker(\\n\",\n       \"                [27.9164, 112.4876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_929e849398491a2261de270586e837cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9bbef21665b374bcd3541efb0aababa = $(`&lt;div id=&quot;html_c9bbef21665b374bcd3541efb0aababa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4876             latitude:27.9164             PM2_5:41.67039106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_929e849398491a2261de270586e837cf.setContent(html_c9bbef21665b374bcd3541efb0aababa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d654b77e0127f2dd7458537fed68c7bb.bindPopup(popup_929e849398491a2261de270586e837cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82b9907b02bd8f73afef731c56bd9264 = L.circleMarker(\\n\",\n       \"                [29.9972, 101.9533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8697240b817b188095bd253c6e748336 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a44f805f7bbd8ee49ac107e80b2b2cee = $(`&lt;div id=&quot;html_a44f805f7bbd8ee49ac107e80b2b2cee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9533             latitude:29.9972             PM2_5:18.25892857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8697240b817b188095bd253c6e748336.setContent(html_a44f805f7bbd8ee49ac107e80b2b2cee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82b9907b02bd8f73afef731c56bd9264.bindPopup(popup_8697240b817b188095bd253c6e748336)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_927c33c6125e51828fed2d0bd46eabb9 = L.circleMarker(\\n\",\n       \"                [30.1506, 104.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d012955e42b87ad9468f1c4b06e29ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e5b5769d313baa7661fa965e315fe2a = $(`&lt;div id=&quot;html_7e5b5769d313baa7661fa965e315fe2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6356             latitude:30.1506             PM2_5:37.29501385             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d012955e42b87ad9468f1c4b06e29ee.setContent(html_7e5b5769d313baa7661fa965e315fe2a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_927c33c6125e51828fed2d0bd46eabb9.bindPopup(popup_7d012955e42b87ad9468f1c4b06e29ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf623362036c60aa097cbbf4728b16cd = L.circleMarker(\\n\",\n       \"                [43.84, 125.2786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9e14be8f99ed56c3dd75afcc1b783a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_889f893d80f98ea1bce3c61470ec55c5 = $(`&lt;div id=&quot;html_889f893d80f98ea1bce3c61470ec55c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.2786             latitude:43.84             PM2_5:32.66760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9e14be8f99ed56c3dd75afcc1b783a0.setContent(html_889f893d80f98ea1bce3c61470ec55c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf623362036c60aa097cbbf4728b16cd.bindPopup(popup_b9e14be8f99ed56c3dd75afcc1b783a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9580029708119bece619af0919276a23 = L.circleMarker(\\n\",\n       \"                [36.1542, 113.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_577d5e20b39baf8222fff986c23478f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24deb1f1836d1d9d0980b2afe57abd94 = $(`&lt;div id=&quot;html_24deb1f1836d1d9d0980b2afe57abd94&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1097             latitude:36.1542             PM2_5:67.22486034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_577d5e20b39baf8222fff986c23478f4.setContent(html_24deb1f1836d1d9d0980b2afe57abd94);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9580029708119bece619af0919276a23.bindPopup(popup_577d5e20b39baf8222fff986c23478f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fa93e13478865ccf07d91f134f1ac4e = L.circleMarker(\\n\",\n       \"                [32.4535, 105.8945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9931492177b07e12fd533085f3769b8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6fdc25590925582500fa27dfa92cf4b3 = $(`&lt;div id=&quot;html_6fdc25590925582500fa27dfa92cf4b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8945             latitude:32.4535             PM2_5:21.4622905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9931492177b07e12fd533085f3769b8a.setContent(html_6fdc25590925582500fa27dfa92cf4b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fa93e13478865ccf07d91f134f1ac4e.bindPopup(popup_9931492177b07e12fd533085f3769b8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9ed854d7d7a2a1a87960e4bbdf57902 = L.circleMarker(\\n\",\n       \"                [24.8978, 118.5972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6296cc88980252aa81a2b1799c6ad524 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a06021137d679229836e56c759a4f02 = $(`&lt;div id=&quot;html_3a06021137d679229836e56c759a4f02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5972             latitude:24.8978             PM2_5:26.7605042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6296cc88980252aa81a2b1799c6ad524.setContent(html_3a06021137d679229836e56c759a4f02);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9ed854d7d7a2a1a87960e4bbdf57902.bindPopup(popup_6296cc88980252aa81a2b1799c6ad524)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_029ca2a7ad07eaf837f05fcfc9605574 = L.circleMarker(\\n\",\n       \"                [29.6219, 106.65],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1f889a9e2b3ad3b4505afa29f96991f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1da0b3797949b90c82544f9d7bd29996 = $(`&lt;div id=&quot;html_1da0b3797949b90c82544f9d7bd29996&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.65             latitude:29.6219             PM2_5:29.91086351             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1f889a9e2b3ad3b4505afa29f96991f.setContent(html_1da0b3797949b90c82544f9d7bd29996);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_029ca2a7ad07eaf837f05fcfc9605574.bindPopup(popup_c1f889a9e2b3ad3b4505afa29f96991f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31b261afd0f0874e59284055416f5cd0 = L.circleMarker(\\n\",\n       \"                [41.1636, 80.2828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff9b6d5f3a1b384b84de40bc2ceb9232 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3aaaa32129c86b92cb72f19d508685f3 = $(`&lt;div id=&quot;html_3aaaa32129c86b92cb72f19d508685f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2828             latitude:41.1636             PM2_5:69.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff9b6d5f3a1b384b84de40bc2ceb9232.setContent(html_3aaaa32129c86b92cb72f19d508685f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31b261afd0f0874e59284055416f5cd0.bindPopup(popup_ff9b6d5f3a1b384b84de40bc2ceb9232)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f2396dd116556c8484b1d6141f8a709 = L.circleMarker(\\n\",\n       \"                [34.3617, 108.7233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ace6929160a0de14282dd58aee25d52a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9de53e06cca5c5ea86fc3eb1095c3aa4 = $(`&lt;div id=&quot;html_9de53e06cca5c5ea86fc3eb1095c3aa4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7233             latitude:34.3617             PM2_5:67.50702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ace6929160a0de14282dd58aee25d52a.setContent(html_9de53e06cca5c5ea86fc3eb1095c3aa4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f2396dd116556c8484b1d6141f8a709.bindPopup(popup_ace6929160a0de14282dd58aee25d52a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ecd2a3311938641a9419df606c257dba = L.circleMarker(\\n\",\n       \"                [41.9086, 123.5953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e937a2c2db388a3c3bd50e5255e6c0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_75fe913f8aebfcec4d77da66610bef95 = $(`&lt;div id=&quot;html_75fe913f8aebfcec4d77da66610bef95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.5953             latitude:41.9086             PM2_5:30.00423729             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e937a2c2db388a3c3bd50e5255e6c0d.setContent(html_75fe913f8aebfcec4d77da66610bef95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ecd2a3311938641a9419df606c257dba.bindPopup(popup_3e937a2c2db388a3c3bd50e5255e6c0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95404441d5511c8ddca5667ea0a35f85 = L.circleMarker(\\n\",\n       \"                [29.2786, 117.1983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4d65a5980051a7de20b74d2a1be0774 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_171b117de5fc2d283275cea8c2cb2c90 = $(`&lt;div id=&quot;html_171b117de5fc2d283275cea8c2cb2c90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1983             latitude:29.2786             PM2_5:31.27871148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4d65a5980051a7de20b74d2a1be0774.setContent(html_171b117de5fc2d283275cea8c2cb2c90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95404441d5511c8ddca5667ea0a35f85.bindPopup(popup_e4d65a5980051a7de20b74d2a1be0774)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbb9e385090fba87323cf21485dbb315 = L.circleMarker(\\n\",\n       \"                [25.3167, 110.4144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91b63b472311e1e5d90617c1ab409f03 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86e6674551e92815bf33c88e08c62e68 = $(`&lt;div id=&quot;html_86e6674551e92815bf33c88e08c62e68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4144             latitude:25.3167             PM2_5:33.86694678             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91b63b472311e1e5d90617c1ab409f03.setContent(html_86e6674551e92815bf33c88e08c62e68);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbb9e385090fba87323cf21485dbb315.bindPopup(popup_91b63b472311e1e5d90617c1ab409f03)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5d2e3b8aae3556bf5d10d3bcb2c2be3 = L.circleMarker(\\n\",\n       \"                [40.8115, 114.8814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_825fd4ca662712c047ea6002aaa57d06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02aef7b00488276cd095a92832f85eeb = $(`&lt;div id=&quot;html_02aef7b00488276cd095a92832f85eeb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8814             latitude:40.8115             PM2_5:30.67267267             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_825fd4ca662712c047ea6002aaa57d06.setContent(html_02aef7b00488276cd095a92832f85eeb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5d2e3b8aae3556bf5d10d3bcb2c2be3.bindPopup(popup_825fd4ca662712c047ea6002aaa57d06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d89f256ef59e67816067958fa6d0ff26 = L.circleMarker(\\n\",\n       \"                [33.3261, 105.0822],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d440fe87507b5f36fa6add27c092411e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa4f1bd625a928f60f24c7fe216dfae2 = $(`&lt;div id=&quot;html_fa4f1bd625a928f60f24c7fe216dfae2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0822             latitude:33.3261             PM2_5:20.0625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d440fe87507b5f36fa6add27c092411e.setContent(html_fa4f1bd625a928f60f24c7fe216dfae2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d89f256ef59e67816067958fa6d0ff26.bindPopup(popup_d440fe87507b5f36fa6add27c092411e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_043d9ce53844d1ea8756c90855da5676 = L.circleMarker(\\n\",\n       \"                [31.2472, 120.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66f53583545919ffef60eedc18f316c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5738f86f30ac011961b834e87d21632e = $(`&lt;div id=&quot;html_5738f86f30ac011961b834e87d21632e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.561             latitude:31.2472             PM2_5:40.37883008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66f53583545919ffef60eedc18f316c0.setContent(html_5738f86f30ac011961b834e87d21632e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_043d9ce53844d1ea8756c90855da5676.bindPopup(popup_66f53583545919ffef60eedc18f316c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab318491986aab49e9ee4cabad83aa49 = L.circleMarker(\\n\",\n       \"                [41.1442, 123.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_300efae4843d6faf80c5aae1a07b63b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a8d1013d8e4379b51c67c362317edf5f = $(`&lt;div id=&quot;html_a8d1013d8e4379b51c67c362317edf5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0485             latitude:41.1442             PM2_5:33.3189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_300efae4843d6faf80c5aae1a07b63b4.setContent(html_a8d1013d8e4379b51c67c362317edf5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab318491986aab49e9ee4cabad83aa49.bindPopup(popup_300efae4843d6faf80c5aae1a07b63b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_986d500acb349298a5e9071f0171df66 = L.circleMarker(\\n\",\n       \"                [33.1842, 106.9893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6e12163f1b41b3ae384a60f083c6ebc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a72fba9fa903f473d5b344de2190969 = $(`&lt;div id=&quot;html_0a72fba9fa903f473d5b344de2190969&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9893             latitude:33.1842             PM2_5:41.890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6e12163f1b41b3ae384a60f083c6ebc.setContent(html_0a72fba9fa903f473d5b344de2190969);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_986d500acb349298a5e9071f0171df66.bindPopup(popup_b6e12163f1b41b3ae384a60f083c6ebc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f62ae2af1174bef8d2081845eb0bdded = L.circleMarker(\\n\",\n       \"                [26.8919, 112.6006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17d1f6a9970de57ed7f7a9d4fcad3400 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4eb00ea6972c6d4204270bd66462b175 = $(`&lt;div id=&quot;html_4eb00ea6972c6d4204270bd66462b175&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6006             latitude:26.8919             PM2_5:42.72299169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17d1f6a9970de57ed7f7a9d4fcad3400.setContent(html_4eb00ea6972c6d4204270bd66462b175);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f62ae2af1174bef8d2081845eb0bdded.bindPopup(popup_17d1f6a9970de57ed7f7a9d4fcad3400)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05e8a95196535a852305076be836f266 = L.circleMarker(\\n\",\n       \"                [39.643, 118.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9534410c92c423d1a820fab6c51dc09d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d79f1949d80b642fe35800bb908a08e6 = $(`&lt;div id=&quot;html_d79f1949d80b642fe35800bb908a08e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.144             latitude:39.643             PM2_5:45.89027778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9534410c92c423d1a820fab6c51dc09d.setContent(html_d79f1949d80b642fe35800bb908a08e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05e8a95196535a852305076be836f266.bindPopup(popup_9534410c92c423d1a820fab6c51dc09d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d7af14dd10332e13be56d8cb09015f9 = L.circleMarker(\\n\",\n       \"                [31.2703, 120.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b790a39510cf8300e92d928911355c18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d04a4af2fb69ca037635f64d2ea66243 = $(`&lt;div id=&quot;html_d04a4af2fb69ca037635f64d2ea66243&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.613             latitude:31.2703             PM2_5:39.79469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b790a39510cf8300e92d928911355c18.setContent(html_d04a4af2fb69ca037635f64d2ea66243);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d7af14dd10332e13be56d8cb09015f9.bindPopup(popup_b790a39510cf8300e92d928911355c18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a89bfaed62196fe6916d6ca99e8ccca4 = L.circleMarker(\\n\",\n       \"                [36.6377, 117.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0912ad50f06fb05a2b87c8034d5a2a84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1073c50b92fbd2b9c9bf7cfe862aa733 = $(`&lt;div id=&quot;html_1073c50b92fbd2b9c9bf7cfe862aa733&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9544             latitude:36.6377             PM2_5:50.94507042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0912ad50f06fb05a2b87c8034d5a2a84.setContent(html_1073c50b92fbd2b9c9bf7cfe862aa733);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a89bfaed62196fe6916d6ca99e8ccca4.bindPopup(popup_0912ad50f06fb05a2b87c8034d5a2a84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c0a8fbef7502735c23a5f6a61cdf6f59 = L.circleMarker(\\n\",\n       \"                [30.4551, 106.6388],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32a57f0fac4155391a8ac764c10a1a6d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d53f93e22a1e17725bb2b56d333a677 = $(`&lt;div id=&quot;html_1d53f93e22a1e17725bb2b56d333a677&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6388             latitude:30.4551             PM2_5:30.78888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32a57f0fac4155391a8ac764c10a1a6d.setContent(html_1d53f93e22a1e17725bb2b56d333a677);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c0a8fbef7502735c23a5f6a61cdf6f59.bindPopup(popup_32a57f0fac4155391a8ac764c10a1a6d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3737736d905103dc6bc5ac07063cd1d8 = L.circleMarker(\\n\",\n       \"                [31.8934, 102.2402],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab6c5a1387c0313ac2a39ef4e897a041 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d515fec9f48774b702d7f20c33d8395d = $(`&lt;div id=&quot;html_d515fec9f48774b702d7f20c33d8395d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2402             latitude:31.8934             PM2_5:3.856338028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab6c5a1387c0313ac2a39ef4e897a041.setContent(html_d515fec9f48774b702d7f20c33d8395d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3737736d905103dc6bc5ac07063cd1d8.bindPopup(popup_ab6c5a1387c0313ac2a39ef4e897a041)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96268d01d0c3f125204d6bf3ff7cb346 = L.circleMarker(\\n\",\n       \"                [38.8394, 117.457],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1689ec6854a9ffd7f0fda0361a765971 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de55ee8c5cbe7b4e1c4f512370e4f4a7 = $(`&lt;div id=&quot;html_de55ee8c5cbe7b4e1c4f512370e4f4a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.457             latitude:38.8394             PM2_5:48.95238095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1689ec6854a9ffd7f0fda0361a765971.setContent(html_de55ee8c5cbe7b4e1c4f512370e4f4a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96268d01d0c3f125204d6bf3ff7cb346.bindPopup(popup_1689ec6854a9ffd7f0fda0361a765971)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adda2a9b63e5eb8579fb55671eaa2ae8 = L.circleMarker(\\n\",\n       \"                [32.0144, 118.777],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d983a80199711abe802cbff9b4f7f919 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df123c9dac0c8156319b3018c9e78d14 = $(`&lt;div id=&quot;html_df123c9dac0c8156319b3018c9e78d14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.777             latitude:32.0144             PM2_5:39.8255814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d983a80199711abe802cbff9b4f7f919.setContent(html_df123c9dac0c8156319b3018c9e78d14);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adda2a9b63e5eb8579fb55671eaa2ae8.bindPopup(popup_d983a80199711abe802cbff9b4f7f919)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12bb0448fa9c8c5867f52d657ad42fe2 = L.circleMarker(\\n\",\n       \"                [27.8336, 113.251],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_baef435843a5542eb48317439ba042c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a073f573bf89b7eece2de26ba49d386 = $(`&lt;div id=&quot;html_5a073f573bf89b7eece2de26ba49d386&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.251             latitude:27.8336             PM2_5:33.70142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_baef435843a5542eb48317439ba042c7.setContent(html_5a073f573bf89b7eece2de26ba49d386);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12bb0448fa9c8c5867f52d657ad42fe2.bindPopup(popup_baef435843a5542eb48317439ba042c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b11fe43ee282821a134f5ede875e0c6f = L.circleMarker(\\n\",\n       \"                [22.8693, 112.844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3452637d50225b5765547e1c2733e480 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2716deae46aa109b09dac9191b4e110e = $(`&lt;div id=&quot;html_2716deae46aa109b09dac9191b4e110e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.844             latitude:22.8693             PM2_5:39.67787115             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3452637d50225b5765547e1c2733e480.setContent(html_2716deae46aa109b09dac9191b4e110e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b11fe43ee282821a134f5ede875e0c6f.bindPopup(popup_3452637d50225b5765547e1c2733e480)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b449f53506ca38b23583a84db20bba10 = L.circleMarker(\\n\",\n       \"                [26.5697, 106.7164],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_425de0d9f0b827420a4712d881423276 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b71c6724b1b792fdef5a97e745a97ce = $(`&lt;div id=&quot;html_4b71c6724b1b792fdef5a97e745a97ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7164             latitude:26.5697             PM2_5:32.42655367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_425de0d9f0b827420a4712d881423276.setContent(html_4b71c6724b1b792fdef5a97e745a97ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b449f53506ca38b23583a84db20bba10.bindPopup(popup_425de0d9f0b827420a4712d881423276)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd7376f602790d00ed66aaf0c345e6c7 = L.circleMarker(\\n\",\n       \"                [23.1572, 112.885],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a2f16f7702e874346c7db26ea7f58d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_915588e27b211a21a93afd5ee4639350 = $(`&lt;div id=&quot;html_915588e27b211a21a93afd5ee4639350&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.885             latitude:23.1572             PM2_5:38.81534091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a2f16f7702e874346c7db26ea7f58d3.setContent(html_915588e27b211a21a93afd5ee4639350);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd7376f602790d00ed66aaf0c345e6c7.bindPopup(popup_2a2f16f7702e874346c7db26ea7f58d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_04886261a5017ddde573b6f6147cf433 = L.circleMarker(\\n\",\n       \"                [30.6197, 114.2836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3fdc76d6db8a734a6c64bd81c5d96b9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca4f2288779cc27a18e45f3ee4633e0e = $(`&lt;div id=&quot;html_ca4f2288779cc27a18e45f3ee4633e0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2836             latitude:30.6197             PM2_5:48.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3fdc76d6db8a734a6c64bd81c5d96b9d.setContent(html_ca4f2288779cc27a18e45f3ee4633e0e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_04886261a5017ddde573b6f6147cf433.bindPopup(popup_3fdc76d6db8a734a6c64bd81c5d96b9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5ec16ff628f854c863afc4614290b6a = L.circleMarker(\\n\",\n       \"                [33.6284, 116.9677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e6fce7285cd7a3e4bb31c059f23f123 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f347839f6f011f1d5396b93a24f4979 = $(`&lt;div id=&quot;html_0f347839f6f011f1d5396b93a24f4979&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9677             latitude:33.6284             PM2_5:55.42916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e6fce7285cd7a3e4bb31c059f23f123.setContent(html_0f347839f6f011f1d5396b93a24f4979);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5ec16ff628f854c863afc4614290b6a.bindPopup(popup_4e6fce7285cd7a3e4bb31c059f23f123)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_449415ad6dd1894ffbb9110b9c8942d6 = L.circleMarker(\\n\",\n       \"                [22.5908, 114.263],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b83c517cebea8fd8dc94186b46491833 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da2a01ca2c4148c71719995688c8dc21 = $(`&lt;div id=&quot;html_da2a01ca2c4148c71719995688c8dc21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.263             latitude:22.5908             PM2_5:22.57746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b83c517cebea8fd8dc94186b46491833.setContent(html_da2a01ca2c4148c71719995688c8dc21);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_449415ad6dd1894ffbb9110b9c8942d6.bindPopup(popup_b83c517cebea8fd8dc94186b46491833)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d609e2bdfc54930c342544d3df499d5 = L.circleMarker(\\n\",\n       \"                [41.8336, 123.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce816a0f97425b9ea2dd8603ff2073e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abbc4c96ae1f5d990b55c6e13d18fc33 = $(`&lt;div id=&quot;html_abbc4c96ae1f5d990b55c6e13d18fc33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.542             latitude:41.8336             PM2_5:30.66997167             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce816a0f97425b9ea2dd8603ff2073e8.setContent(html_abbc4c96ae1f5d990b55c6e13d18fc33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d609e2bdfc54930c342544d3df499d5.bindPopup(popup_ce816a0f97425b9ea2dd8603ff2073e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12d9b18d55dc20f952f511a694017bf2 = L.circleMarker(\\n\",\n       \"                [34.3528, 107.3906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa00b30527927ca5c6fa1615287228d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf16512f41fb10d2137aac6127109df3 = $(`&lt;div id=&quot;html_bf16512f41fb10d2137aac6127109df3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3906             latitude:34.3528             PM2_5:56.48472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa00b30527927ca5c6fa1615287228d7.setContent(html_bf16512f41fb10d2137aac6127109df3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12d9b18d55dc20f952f511a694017bf2.bindPopup(popup_fa00b30527927ca5c6fa1615287228d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50a32afd08e7c3cdf99f807468b84bf2 = L.circleMarker(\\n\",\n       \"                [38.817, 106.3394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4654cb30a008467f269b718c17f71dc9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc1882ed80c99b3ee2e04a1ac7ce46ad = $(`&lt;div id=&quot;html_fc1882ed80c99b3ee2e04a1ac7ce46ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3394             latitude:38.817             PM2_5:45.58882521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4654cb30a008467f269b718c17f71dc9.setContent(html_fc1882ed80c99b3ee2e04a1ac7ce46ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50a32afd08e7c3cdf99f807468b84bf2.bindPopup(popup_4654cb30a008467f269b718c17f71dc9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39a00b9395cfe8172a4c87dbea043d21 = L.circleMarker(\\n\",\n       \"                [37.8561, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11b92f5b2d804bf2e9174695d49af5e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ecdba5328598cb5b9bc8ea6bcbff4c7 = $(`&lt;div id=&quot;html_7ecdba5328598cb5b9bc8ea6bcbff4c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:37.8561             PM2_5:58.70972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11b92f5b2d804bf2e9174695d49af5e4.setContent(html_7ecdba5328598cb5b9bc8ea6bcbff4c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39a00b9395cfe8172a4c87dbea043d21.bindPopup(popup_11b92f5b2d804bf2e9174695d49af5e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58215fec24297a296c37e6ced91b60d5 = L.circleMarker(\\n\",\n       \"                [28.6459, 121.273],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e47d7616ebf5ec829e7cf25457a592db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb01d6cd222376fad0eeefd5be6693e3 = $(`&lt;div id=&quot;html_eb01d6cd222376fad0eeefd5be6693e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.273             latitude:28.6459             PM2_5:28.00724638             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e47d7616ebf5ec829e7cf25457a592db.setContent(html_eb01d6cd222376fad0eeefd5be6693e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58215fec24297a296c37e6ced91b60d5.bindPopup(popup_e47d7616ebf5ec829e7cf25457a592db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d56dc82652e1c7f05090b956b6700505 = L.circleMarker(\\n\",\n       \"                [30.4576, 106.6303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7294926ddec1acec18c40afd11ebd602 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4327bd0169a0846c5391e55ef0afcd29 = $(`&lt;div id=&quot;html_4327bd0169a0846c5391e55ef0afcd29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6303             latitude:30.4576             PM2_5:42.27513966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7294926ddec1acec18c40afd11ebd602.setContent(html_4327bd0169a0846c5391e55ef0afcd29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d56dc82652e1c7f05090b956b6700505.bindPopup(popup_7294926ddec1acec18c40afd11ebd602)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be7131a7eb2ebce409b50939f76a86a5 = L.circleMarker(\\n\",\n       \"                [34.5667, 117.732],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e070783bba856a163b471c5f4fe0b51f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8fbea5d23ec08dc9fb1e82349dcfcb7f = $(`&lt;div id=&quot;html_8fbea5d23ec08dc9fb1e82349dcfcb7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.732             latitude:34.5667             PM2_5:62.16432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e070783bba856a163b471c5f4fe0b51f.setContent(html_8fbea5d23ec08dc9fb1e82349dcfcb7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be7131a7eb2ebce409b50939f76a86a5.bindPopup(popup_e070783bba856a163b471c5f4fe0b51f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78b06b0b7c12d9314e1f3e537449a8ea = L.circleMarker(\\n\",\n       \"                [37.9358, 102.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24b1389da2e3455d5ec6476df860807a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbddcd7f8b4f2ad4f3fdd4aff637e1f2 = $(`&lt;div id=&quot;html_cbddcd7f8b4f2ad4f3fdd4aff637e1f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6469             latitude:37.9358             PM2_5:36.28194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24b1389da2e3455d5ec6476df860807a.setContent(html_cbddcd7f8b4f2ad4f3fdd4aff637e1f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78b06b0b7c12d9314e1f3e537449a8ea.bindPopup(popup_24b1389da2e3455d5ec6476df860807a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44f04a067a269a1ba3bcdbc786ecda33 = L.circleMarker(\\n\",\n       \"                [31.89708, 121.1518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd0e89f4bb72836dd70bd84da35536e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c55d3a597c111829fe316bc7a284f83 = $(`&lt;div id=&quot;html_1c55d3a597c111829fe316bc7a284f83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1518             latitude:31.89708             PM2_5:35.28041543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd0e89f4bb72836dd70bd84da35536e8.setContent(html_1c55d3a597c111829fe316bc7a284f83);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44f04a067a269a1ba3bcdbc786ecda33.bindPopup(popup_dd0e89f4bb72836dd70bd84da35536e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a469aef3c30cd6db7f90bb43b82dea23 = L.circleMarker(\\n\",\n       \"                [27.6178, 113.865],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25b59d314043b8131df1f9ef9bc5569a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fcbb7b0c58b469f8db1913fb3f81bd5 = $(`&lt;div id=&quot;html_7fcbb7b0c58b469f8db1913fb3f81bd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.865             latitude:27.6178             PM2_5:43.54583333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25b59d314043b8131df1f9ef9bc5569a.setContent(html_7fcbb7b0c58b469f8db1913fb3f81bd5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a469aef3c30cd6db7f90bb43b82dea23.bindPopup(popup_25b59d314043b8131df1f9ef9bc5569a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6674c90fe532682c0e65291b8b18a8d = L.circleMarker(\\n\",\n       \"                [25.0661, 117.0256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99b28383e50db9c29f094216910d0c8c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23fe1b61d9d2efc108bcf0bfc4d1a45f = $(`&lt;div id=&quot;html_23fe1b61d9d2efc108bcf0bfc4d1a45f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0256             latitude:25.0661             PM2_5:20.88194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99b28383e50db9c29f094216910d0c8c.setContent(html_23fe1b61d9d2efc108bcf0bfc4d1a45f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6674c90fe532682c0e65291b8b18a8d.bindPopup(popup_99b28383e50db9c29f094216910d0c8c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00aa56c7b1c7c5c2ee5b8ce83f4fd953 = L.circleMarker(\\n\",\n       \"                [37.0967, 114.4821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ffe76ccba10374b0bd51610c4181afc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b9cf4d4233c6d9df14cd8512fb0115b = $(`&lt;div id=&quot;html_0b9cf4d4233c6d9df14cd8512fb0115b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4821             latitude:37.0967             PM2_5:74.24929972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ffe76ccba10374b0bd51610c4181afc.setContent(html_0b9cf4d4233c6d9df14cd8512fb0115b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00aa56c7b1c7c5c2ee5b8ce83f4fd953.bindPopup(popup_2ffe76ccba10374b0bd51610c4181afc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2dd05880422e819b7d857af9d0eec902 = L.circleMarker(\\n\",\n       \"                [26.5689, 106.6971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5fb0e00e345ea418f4c04e6500097f8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_589212a1603a8448c6522bcbffcc3e87 = $(`&lt;div id=&quot;html_589212a1603a8448c6522bcbffcc3e87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6971             latitude:26.5689             PM2_5:30.99571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5fb0e00e345ea418f4c04e6500097f8e.setContent(html_589212a1603a8448c6522bcbffcc3e87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2dd05880422e819b7d857af9d0eec902.bindPopup(popup_5fb0e00e345ea418f4c04e6500097f8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97570a552df53d53bc04dcb5e2560873 = L.circleMarker(\\n\",\n       \"                [34.5004, 109.5049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a925c34312ac0a90bb056addb5b3b80c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8782426f2ec4dcb396289d68118d3a95 = $(`&lt;div id=&quot;html_8782426f2ec4dcb396289d68118d3a95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5049             latitude:34.5004             PM2_5:72.50142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a925c34312ac0a90bb056addb5b3b80c.setContent(html_8782426f2ec4dcb396289d68118d3a95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97570a552df53d53bc04dcb5e2560873.bindPopup(popup_a925c34312ac0a90bb056addb5b3b80c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33f984a0f6a91c0b0af51dbd20605339 = L.circleMarker(\\n\",\n       \"                [30.9447, 118.7581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88b600a37b06fa926692450de76b8d03 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9db674a2a24b19aa2f5b39b85490449a = $(`&lt;div id=&quot;html_9db674a2a24b19aa2f5b39b85490449a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7581             latitude:30.9447             PM2_5:42.49019608             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88b600a37b06fa926692450de76b8d03.setContent(html_9db674a2a24b19aa2f5b39b85490449a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33f984a0f6a91c0b0af51dbd20605339.bindPopup(popup_88b600a37b06fa926692450de76b8d03)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e59af374d9f6044322ff356d0d6a17d = L.circleMarker(\\n\",\n       \"                [30.7636, 106.0642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af1f7c0497fd7c9b579dd3a95ddc2514 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77daa45e2c8cbb223e01e8cda58692a4 = $(`&lt;div id=&quot;html_77daa45e2c8cbb223e01e8cda58692a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0642             latitude:30.7636             PM2_5:51.33240997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af1f7c0497fd7c9b579dd3a95ddc2514.setContent(html_77daa45e2c8cbb223e01e8cda58692a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e59af374d9f6044322ff356d0d6a17d.bindPopup(popup_af1f7c0497fd7c9b579dd3a95ddc2514)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_327d84e70326750e6a69f560e8410e03 = L.circleMarker(\\n\",\n       \"                [25.2178, 110.2869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2fc5d549ce6865b566bb6d6532e27287 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98350f25a6c139c9a55a239a4d20f5e1 = $(`&lt;div id=&quot;html_98350f25a6c139c9a55a239a4d20f5e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2869             latitude:25.2178             PM2_5:37.9301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2fc5d549ce6865b566bb6d6532e27287.setContent(html_98350f25a6c139c9a55a239a4d20f5e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_327d84e70326750e6a69f560e8410e03.bindPopup(popup_2fc5d549ce6865b566bb6d6532e27287)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54cdee8dd99999bc0aa74c11d594c2d8 = L.circleMarker(\\n\",\n       \"                [23.9011, 106.6103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f24ae1c1f97306f6d908706d97053fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9313b79b001e96c2138a38404cea8f2 = $(`&lt;div id=&quot;html_c9313b79b001e96c2138a38404cea8f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6103             latitude:23.9011             PM2_5:39.07282913             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f24ae1c1f97306f6d908706d97053fa.setContent(html_c9313b79b001e96c2138a38404cea8f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54cdee8dd99999bc0aa74c11d594c2d8.bindPopup(popup_5f24ae1c1f97306f6d908706d97053fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7604256928b1bdf89b514f55cf7d050c = L.circleMarker(\\n\",\n       \"                [38.1398, 114.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1cc093fdc6ee05477d37961e0f593cbc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_887ae7dcc1cde7becd66738ff3a8afe9 = $(`&lt;div id=&quot;html_887ae7dcc1cde7becd66738ff3a8afe9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5019             latitude:38.1398             PM2_5:72.54901961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1cc093fdc6ee05477d37961e0f593cbc.setContent(html_887ae7dcc1cde7becd66738ff3a8afe9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7604256928b1bdf89b514f55cf7d050c.bindPopup(popup_1cc093fdc6ee05477d37961e0f593cbc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87d209bde03a6ae313323060c3af23f2 = L.circleMarker(\\n\",\n       \"                [31.2036, 121.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_572fc4b44f085470b2ec45a1770b33cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_174a7f09b830133ad1b3696d5bf45046 = $(`&lt;div id=&quot;html_174a7f09b830133ad1b3696d5bf45046&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.478             latitude:31.2036             PM2_5:43.17563739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_572fc4b44f085470b2ec45a1770b33cd.setContent(html_174a7f09b830133ad1b3696d5bf45046);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87d209bde03a6ae313323060c3af23f2.bindPopup(popup_572fc4b44f085470b2ec45a1770b33cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9562aa55a698c8fa9e49799a0e05fc61 = L.circleMarker(\\n\",\n       \"                [31.882, 120.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2bac3ac99a30374885e5cb566ac330d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1f35e7c2d361542cabe7119e96d0ad9 = $(`&lt;div id=&quot;html_f1f35e7c2d361542cabe7119e96d0ad9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.55             latitude:31.882             PM2_5:44.14265537             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2bac3ac99a30374885e5cb566ac330d.setContent(html_f1f35e7c2d361542cabe7119e96d0ad9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9562aa55a698c8fa9e49799a0e05fc61.bindPopup(popup_b2bac3ac99a30374885e5cb566ac330d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_870cbcad6335b2d6bfb491000a312622 = L.circleMarker(\\n\",\n       \"                [40.1461, 124.3933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49ec2015d4ac14ee9777f083787a499a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61e28a9f3110baf010d53c80cfef1a32 = $(`&lt;div id=&quot;html_61e28a9f3110baf010d53c80cfef1a32&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3933             latitude:40.1461             PM2_5:24.14164306             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49ec2015d4ac14ee9777f083787a499a.setContent(html_61e28a9f3110baf010d53c80cfef1a32);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_870cbcad6335b2d6bfb491000a312622.bindPopup(popup_49ec2015d4ac14ee9777f083787a499a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c2baaf216b49b8f119926da6590063f = L.circleMarker(\\n\",\n       \"                [39.6719, 106.8219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfdb31e9f4f50a91e338d12f1e1e92fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af09a5f7f68299466c0625cedbadd68e = $(`&lt;div id=&quot;html_af09a5f7f68299466c0625cedbadd68e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8219             latitude:39.6719             PM2_5:43.65340909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfdb31e9f4f50a91e338d12f1e1e92fd.setContent(html_af09a5f7f68299466c0625cedbadd68e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c2baaf216b49b8f119926da6590063f.bindPopup(popup_bfdb31e9f4f50a91e338d12f1e1e92fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed58883fc1553ca21f20908a47a3e27b = L.circleMarker(\\n\",\n       \"                [33.575, 119.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd03294c2d7fe91f82a0817087ec4f4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_855c095c8faf4155f30423ba0a4438b8 = $(`&lt;div id=&quot;html_855c095c8faf4155f30423ba0a4438b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.007             latitude:33.575             PM2_5:45.62465374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd03294c2d7fe91f82a0817087ec4f4b.setContent(html_855c095c8faf4155f30423ba0a4438b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed58883fc1553ca21f20908a47a3e27b.bindPopup(popup_fd03294c2d7fe91f82a0817087ec4f4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24cb78376d4aabe8568c9599198bc8c0 = L.circleMarker(\\n\",\n       \"                [29.5983, 106.296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42a90aaea77bbb8ca7a150e34e96951d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e00ef6873de3b346f47d0de4a97bf80 = $(`&lt;div id=&quot;html_2e00ef6873de3b346f47d0de4a97bf80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.296             latitude:29.5983             PM2_5:37.21030641             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42a90aaea77bbb8ca7a150e34e96951d.setContent(html_2e00ef6873de3b346f47d0de4a97bf80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24cb78376d4aabe8568c9599198bc8c0.bindPopup(popup_42a90aaea77bbb8ca7a150e34e96951d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f071370dadf5945249f03f1b8dec6ca = L.circleMarker(\\n\",\n       \"                [43.7256, 126.6772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4aa29e0a4262c8c6e899a89c0430380 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d28c4a5f461d17715912c634cafd2536 = $(`&lt;div id=&quot;html_d28c4a5f461d17715912c634cafd2536&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6772             latitude:43.7256             PM2_5:29.62780899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4aa29e0a4262c8c6e899a89c0430380.setContent(html_d28c4a5f461d17715912c634cafd2536);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f071370dadf5945249f03f1b8dec6ca.bindPopup(popup_e4aa29e0a4262c8c6e899a89c0430380)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7bb26bf0fbb306b1a07af6d3d7b1953 = L.circleMarker(\\n\",\n       \"                [45.6033, 84.8861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43c3cfc1d57114a907cdbaca035f890c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80f82d8c0c9e8d68d15b701fffde477d = $(`&lt;div id=&quot;html_80f82d8c0c9e8d68d15b701fffde477d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8861             latitude:45.6033             PM2_5:24.26825843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43c3cfc1d57114a907cdbaca035f890c.setContent(html_80f82d8c0c9e8d68d15b701fffde477d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7bb26bf0fbb306b1a07af6d3d7b1953.bindPopup(popup_43c3cfc1d57114a907cdbaca035f890c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_814b1ccdeeaec723cac4b0aa3e1a6618 = L.circleMarker(\\n\",\n       \"                [30.4519, 114.8858],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f0221a666750a45ab9d805448d7609a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_868624b225847a859ed78ae20cd95328 = $(`&lt;div id=&quot;html_868624b225847a859ed78ae20cd95328&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8858             latitude:30.4519             PM2_5:45.08988764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f0221a666750a45ab9d805448d7609a.setContent(html_868624b225847a859ed78ae20cd95328);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_814b1ccdeeaec723cac4b0aa3e1a6618.bindPopup(popup_3f0221a666750a45ab9d805448d7609a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae2d89bedafcb2ecf8ca01c08686412f = L.circleMarker(\\n\",\n       \"                [43.9167, 125.323],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25f292ea5b8c02b475fce11f8a3b2b75 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e7afef28224a409e7028f1ed3adb6af = $(`&lt;div id=&quot;html_3e7afef28224a409e7028f1ed3adb6af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.323             latitude:43.9167             PM2_5:30.47464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25f292ea5b8c02b475fce11f8a3b2b75.setContent(html_3e7afef28224a409e7028f1ed3adb6af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae2d89bedafcb2ecf8ca01c08686412f.bindPopup(popup_25f292ea5b8c02b475fce11f8a3b2b75)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3cd44e6c068168b5f78be8e081085a17 = L.circleMarker(\\n\",\n       \"                [36.1855, 113.0844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_910096e91680c06c7f74501d8f0b1a6f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84452573b4bcb658df3e95d3faee99a6 = $(`&lt;div id=&quot;html_84452573b4bcb658df3e95d3faee99a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0844444             latitude:36.1855             PM2_5:72.24509804             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_910096e91680c06c7f74501d8f0b1a6f.setContent(html_84452573b4bcb658df3e95d3faee99a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3cd44e6c068168b5f78be8e081085a17.bindPopup(popup_910096e91680c06c7f74501d8f0b1a6f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a71928dab9683dc088f70088613e8ce = L.circleMarker(\\n\",\n       \"                [35.303, 113.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0219b7400b58003ddb2f7df4c8cf992c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d73ee1fb1f6c1cbdedea38e152abcea3 = $(`&lt;div id=&quot;html_d73ee1fb1f6c1cbdedea38e152abcea3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.883             latitude:35.303             PM2_5:53.45658263             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0219b7400b58003ddb2f7df4c8cf992c.setContent(html_d73ee1fb1f6c1cbdedea38e152abcea3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a71928dab9683dc088f70088613e8ce.bindPopup(popup_0219b7400b58003ddb2f7df4c8cf992c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b6a0e6f89e267feb6a0941c6781a828 = L.circleMarker(\\n\",\n       \"                [34.7745, 117.5852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6b40586883ae03632182eda2d991eb8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f443da4ac6caaf2dba462116f484bb7 = $(`&lt;div id=&quot;html_0f443da4ac6caaf2dba462116f484bb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5852             latitude:34.7745             PM2_5:49.32633053             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6b40586883ae03632182eda2d991eb8.setContent(html_0f443da4ac6caaf2dba462116f484bb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b6a0e6f89e267feb6a0941c6781a828.bindPopup(popup_b6b40586883ae03632182eda2d991eb8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62c44a1d85e2b8a15f5d642b0d21394d = L.circleMarker(\\n\",\n       \"                [44.561, 129.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1fa664633103b9ae2cc1542196fe0d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1c20edf65a06c4258bb7e4fca209c24 = $(`&lt;div id=&quot;html_d1c20edf65a06c4258bb7e4fca209c24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.61             latitude:44.561             PM2_5:25.8449848             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1fa664633103b9ae2cc1542196fe0d1.setContent(html_d1c20edf65a06c4258bb7e4fca209c24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62c44a1d85e2b8a15f5d642b0d21394d.bindPopup(popup_b1fa664633103b9ae2cc1542196fe0d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d186b3cc51fad7cddd6694d81321cc4 = L.circleMarker(\\n\",\n       \"                [22.3708, 107.3701],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3936bce171bfa4c7fb53e8947f5dae42 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4069bfcd9d260c0264beffd9ecddc55e = $(`&lt;div id=&quot;html_4069bfcd9d260c0264beffd9ecddc55e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3701             latitude:22.3708             PM2_5:30.14730878             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3936bce171bfa4c7fb53e8947f5dae42.setContent(html_4069bfcd9d260c0264beffd9ecddc55e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d186b3cc51fad7cddd6694d81321cc4.bindPopup(popup_3936bce171bfa4c7fb53e8947f5dae42)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbb987a48eb3e8b262d5e71878eef52d = L.circleMarker(\\n\",\n       \"                [31.381, 120.999],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41f63466e09f3546b6b7dd59a2e92d00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef76ce9fbc224ca55591524bd964d253 = $(`&lt;div id=&quot;html_ef76ce9fbc224ca55591524bd964d253&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.999             latitude:31.381             PM2_5:37.6265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41f63466e09f3546b6b7dd59a2e92d00.setContent(html_ef76ce9fbc224ca55591524bd964d253);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbb987a48eb3e8b262d5e71878eef52d.bindPopup(popup_41f63466e09f3546b6b7dd59a2e92d00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_121febab5145c2e9500c88233c89f343 = L.circleMarker(\\n\",\n       \"                [27.3125, 105.2864],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd76f6542ff65b54c48b4fef90f29eab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e9aafa514b6149a064c4eef99bd9c70 = $(`&lt;div id=&quot;html_7e9aafa514b6149a064c4eef99bd9c70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.2864             latitude:27.3125             PM2_5:31.51949861             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd76f6542ff65b54c48b4fef90f29eab.setContent(html_7e9aafa514b6149a064c4eef99bd9c70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_121febab5145c2e9500c88233c89f343.bindPopup(popup_cd76f6542ff65b54c48b4fef90f29eab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13cfd10ad8e0dbce5e5d0886261557f1 = L.circleMarker(\\n\",\n       \"                [23.4168, 103.386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c0620d7675c8fb9377cf8411ab9492b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48d8c472dba9972e795b6966db90ee24 = $(`&lt;div id=&quot;html_48d8c472dba9972e795b6966db90ee24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.386             latitude:23.4168             PM2_5:27.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c0620d7675c8fb9377cf8411ab9492b.setContent(html_48d8c472dba9972e795b6966db90ee24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13cfd10ad8e0dbce5e5d0886261557f1.bindPopup(popup_4c0620d7675c8fb9377cf8411ab9492b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3be7aeaba043a8ee1e84ab8e83cfb4b1 = L.circleMarker(\\n\",\n       \"                [41.1556, 122.0247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7299fca24ffb63616adac777897f1322 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59960f5c31ef125614eddc4ffd5fa346 = $(`&lt;div id=&quot;html_59960f5c31ef125614eddc4ffd5fa346&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0247             latitude:41.1556             PM2_5:32.5377095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7299fca24ffb63616adac777897f1322.setContent(html_59960f5c31ef125614eddc4ffd5fa346);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3be7aeaba043a8ee1e84ab8e83cfb4b1.bindPopup(popup_7299fca24ffb63616adac777897f1322)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0aa1533086714cd0e34fadaa2d4a75a7 = L.circleMarker(\\n\",\n       \"                [37.177, 119.941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b1c5282a17fca6db717eebb4ca8f5e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d98d234b5c5b3e334d7ef5038c2f31e = $(`&lt;div id=&quot;html_4d98d234b5c5b3e334d7ef5038c2f31e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.941             latitude:37.177             PM2_5:28.97706422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b1c5282a17fca6db717eebb4ca8f5e5.setContent(html_4d98d234b5c5b3e334d7ef5038c2f31e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0aa1533086714cd0e34fadaa2d4a75a7.bindPopup(popup_1b1c5282a17fca6db717eebb4ca8f5e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4540f76f8f6f3d2972827aab63d0326d = L.circleMarker(\\n\",\n       \"                [27.8014, 114.3806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e544ac4c4a62585f6ef0de9c6aef09e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e3835917a6327028ede7b0f377f959a = $(`&lt;div id=&quot;html_9e3835917a6327028ede7b0f377f959a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3806             latitude:27.8014             PM2_5:50.74166667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e544ac4c4a62585f6ef0de9c6aef09e.setContent(html_9e3835917a6327028ede7b0f377f959a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4540f76f8f6f3d2972827aab63d0326d.bindPopup(popup_1e544ac4c4a62585f6ef0de9c6aef09e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c39a87be7b68c5bd4c47033da469280 = L.circleMarker(\\n\",\n       \"                [32.6389, 110.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_636a8bca6300155d2d918399f8d58b9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5cf0eaf5ce7340f16aff664270d2de07 = $(`&lt;div id=&quot;html_5cf0eaf5ce7340f16aff664270d2de07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.7258             latitude:32.6389             PM2_5:45.01416431             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_636a8bca6300155d2d918399f8d58b9d.setContent(html_5cf0eaf5ce7340f16aff664270d2de07);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c39a87be7b68c5bd4c47033da469280.bindPopup(popup_636a8bca6300155d2d918399f8d58b9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b06391c7de1eb62b30b1134da20d250e = L.circleMarker(\\n\",\n       \"                [24.428, 98.5842],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d545f980933228b0c70273233db105b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d3b5cc5bbec17b9d79a6a3c00587cd5 = $(`&lt;div id=&quot;html_7d3b5cc5bbec17b9d79a6a3c00587cd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5842             latitude:24.428             PM2_5:38.13610315             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d545f980933228b0c70273233db105b9.setContent(html_7d3b5cc5bbec17b9d79a6a3c00587cd5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b06391c7de1eb62b30b1134da20d250e.bindPopup(popup_d545f980933228b0c70273233db105b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9fe0e86f32c3b17b466cc61ac35fd2a = L.circleMarker(\\n\",\n       \"                [25.8333, 114.9322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2e14f27899dada265d7bd45841f66a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f19d1df0d65bbf9703ed49acefd324aa = $(`&lt;div id=&quot;html_f19d1df0d65bbf9703ed49acefd324aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9322             latitude:25.8333             PM2_5:44.84497207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2e14f27899dada265d7bd45841f66a3.setContent(html_f19d1df0d65bbf9703ed49acefd324aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9fe0e86f32c3b17b466cc61ac35fd2a.bindPopup(popup_b2e14f27899dada265d7bd45841f66a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5be8ca8d47cdf7bd3c0ce8ed66cd902 = L.circleMarker(\\n\",\n       \"                [33.567, 114.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f09c230c8ca8d764d3d082d950ad6dc2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3875486257b09c3e0e019fa9280947db = $(`&lt;div id=&quot;html_3875486257b09c3e0e019fa9280947db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.056             latitude:33.567             PM2_5:55.5480226             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f09c230c8ca8d764d3d082d950ad6dc2.setContent(html_3875486257b09c3e0e019fa9280947db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5be8ca8d47cdf7bd3c0ce8ed66cd902.bindPopup(popup_f09c230c8ca8d764d3d082d950ad6dc2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e89698ee7625a541c7d488a2a53cdef = L.circleMarker(\\n\",\n       \"                [33.0014, 97.0],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2569ca4f780e62c9a487529f3b1213ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9484470a09290f59d798c50c4b5fae6d = $(`&lt;div id=&quot;html_9484470a09290f59d798c50c4b5fae6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.0             latitude:33.0014             PM2_5:17.88095238             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2569ca4f780e62c9a487529f3b1213ce.setContent(html_9484470a09290f59d798c50c4b5fae6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e89698ee7625a541c7d488a2a53cdef.bindPopup(popup_2569ca4f780e62c9a487529f3b1213ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d196ba068883c8c8a9644f9c88fc9a05 = L.circleMarker(\\n\",\n       \"                [26.2378, 117.6028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a772ecf58af842d12216e2f306f383f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8dab90da136064b2723298ce5d6789b9 = $(`&lt;div id=&quot;html_8dab90da136064b2723298ce5d6789b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6028             latitude:26.2378             PM2_5:24.41620112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a772ecf58af842d12216e2f306f383f.setContent(html_8dab90da136064b2723298ce5d6789b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d196ba068883c8c8a9644f9c88fc9a05.bindPopup(popup_8a772ecf58af842d12216e2f306f383f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_995615ab2e250534395cc0faec3764e7 = L.circleMarker(\\n\",\n       \"                [41.7561, 123.535],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92936cbd8a3e48f5a29c599e2c7ffbad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5878f066c28b9c2e94fe3d5bbfa80b12 = $(`&lt;div id=&quot;html_5878f066c28b9c2e94fe3d5bbfa80b12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.535             latitude:41.7561             PM2_5:38.46111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92936cbd8a3e48f5a29c599e2c7ffbad.setContent(html_5878f066c28b9c2e94fe3d5bbfa80b12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_995615ab2e250534395cc0faec3764e7.bindPopup(popup_92936cbd8a3e48f5a29c599e2c7ffbad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_004e251d56c69ed5a661772a05cca40d = L.circleMarker(\\n\",\n       \"                [25.0836, 102.728],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6add121886be48de079400a095355f0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_240035fcd6bafe5ea54b000a25e4b699 = $(`&lt;div id=&quot;html_240035fcd6bafe5ea54b000a25e4b699&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.728             latitude:25.0836             PM2_5:21.87534626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6add121886be48de079400a095355f0d.setContent(html_240035fcd6bafe5ea54b000a25e4b699);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_004e251d56c69ed5a661772a05cca40d.bindPopup(popup_6add121886be48de079400a095355f0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83b420bbddc830a6507a00a535100a34 = L.circleMarker(\\n\",\n       \"                [34.3547, 107.1431],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_167a2f6067688b2b6ac96e5b1a520221 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_53f46c35aeb2f08a6e9f564137077eb3 = $(`&lt;div id=&quot;html_53f46c35aeb2f08a6e9f564137077eb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1431             latitude:34.3547             PM2_5:50.70172911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_167a2f6067688b2b6ac96e5b1a520221.setContent(html_53f46c35aeb2f08a6e9f564137077eb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83b420bbddc830a6507a00a535100a34.bindPopup(popup_167a2f6067688b2b6ac96e5b1a520221)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fca6ce7ad7cf87d6765f43a4ac4b300 = L.circleMarker(\\n\",\n       \"                [39.7153, 76.1861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f504f4b8d334a3007d4e3dd360e9d7ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_588ac9ee2e3f273fcd2703ccda48d82c = $(`&lt;div id=&quot;html_588ac9ee2e3f273fcd2703ccda48d82c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:76.1861             latitude:39.7153             PM2_5:63.63700565             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f504f4b8d334a3007d4e3dd360e9d7ea.setContent(html_588ac9ee2e3f273fcd2703ccda48d82c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fca6ce7ad7cf87d6765f43a4ac4b300.bindPopup(popup_f504f4b8d334a3007d4e3dd360e9d7ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e543842fe6f8becdac206e15f8f1820f = L.circleMarker(\\n\",\n       \"                [24.9617, 118.6108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe355b910c45afe74b7e5e6e603c0993 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ffbacb8d5dfd97123df53dd13a1b8a76 = $(`&lt;div id=&quot;html_ffbacb8d5dfd97123df53dd13a1b8a76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6108             latitude:24.9617             PM2_5:25.4             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe355b910c45afe74b7e5e6e603c0993.setContent(html_ffbacb8d5dfd97123df53dd13a1b8a76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e543842fe6f8becdac206e15f8f1820f.bindPopup(popup_fe355b910c45afe74b7e5e6e603c0993)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed0fb3659048eee9c08bd119713a448b = L.circleMarker(\\n\",\n       \"                [36.283, 120.008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7396165c0407206c609454f33dbfaa8c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f29ada9b8c9b6836a440f276ece2492b = $(`&lt;div id=&quot;html_f29ada9b8c9b6836a440f276ece2492b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.008             latitude:36.283             PM2_5:38.38483146             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7396165c0407206c609454f33dbfaa8c.setContent(html_f29ada9b8c9b6836a440f276ece2492b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed0fb3659048eee9c08bd119713a448b.bindPopup(popup_7396165c0407206c609454f33dbfaa8c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_225acc1d1b48b264c2b6a669601bff12 = L.circleMarker(\\n\",\n       \"                [22.5811, 113.074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07bc419a7a405d6460dc1db418a0d855 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c418f55eb2215a41e1cf3c5b71cd827 = $(`&lt;div id=&quot;html_9c418f55eb2215a41e1cf3c5b71cd827&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.074             latitude:22.5811             PM2_5:35.29722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07bc419a7a405d6460dc1db418a0d855.setContent(html_9c418f55eb2215a41e1cf3c5b71cd827);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_225acc1d1b48b264c2b6a669601bff12.bindPopup(popup_07bc419a7a405d6460dc1db418a0d855)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44ff3ad9b0ff6d007027d91bb96dba9d = L.circleMarker(\\n\",\n       \"                [29.8264, 106.424],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_791f45fa10bcfd6de8b2c34c2c2daa33 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_040c4ae91b1abc16fde0f7c4df9bf0fc = $(`&lt;div id=&quot;html_040c4ae91b1abc16fde0f7c4df9bf0fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.424             latitude:29.8264             PM2_5:40.68156425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_791f45fa10bcfd6de8b2c34c2c2daa33.setContent(html_040c4ae91b1abc16fde0f7c4df9bf0fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44ff3ad9b0ff6d007027d91bb96dba9d.bindPopup(popup_791f45fa10bcfd6de8b2c34c2c2daa33)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e477ac4854de9466446872998c77004 = L.circleMarker(\\n\",\n       \"                [43.8358, 126.5844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88527c61a93b89c23732311c0b28726d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ddb05b7504543261bac9da6094757f99 = $(`&lt;div id=&quot;html_ddb05b7504543261bac9da6094757f99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5844             latitude:43.8358             PM2_5:31.67275281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88527c61a93b89c23732311c0b28726d.setContent(html_ddb05b7504543261bac9da6094757f99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e477ac4854de9466446872998c77004.bindPopup(popup_88527c61a93b89c23732311c0b28726d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24f4e679f0e1db63cad655ac53ea2259 = L.circleMarker(\\n\",\n       \"                [29.9919, 120.605],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4dd9f0df89fa8f7fa5d7883877de246 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b3540e7a00d0aebcc8d23ed36bf50ea = $(`&lt;div id=&quot;html_1b3540e7a00d0aebcc8d23ed36bf50ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.605             latitude:29.9919             PM2_5:42.86938202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4dd9f0df89fa8f7fa5d7883877de246.setContent(html_1b3540e7a00d0aebcc8d23ed36bf50ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24f4e679f0e1db63cad655ac53ea2259.bindPopup(popup_e4dd9f0df89fa8f7fa5d7883877de246)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76c258e2c412274298ee2ed08c70651a = L.circleMarker(\\n\",\n       \"                [44.0114, 87.2997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6539c9d50b8690ac8153dd3d4eba510b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee208c632c4e046470a5f702264028c4 = $(`&lt;div id=&quot;html_ee208c632c4e046470a5f702264028c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2997             latitude:44.0114             PM2_5:73.18696884             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6539c9d50b8690ac8153dd3d4eba510b.setContent(html_ee208c632c4e046470a5f702264028c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76c258e2c412274298ee2ed08c70651a.bindPopup(popup_6539c9d50b8690ac8153dd3d4eba510b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3d3d7d98fd8d4067227ea6f81c2956a = L.circleMarker(\\n\",\n       \"                [35.5102, 102.0199],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc13eb0c66b3e6340f2159e2e953f698 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5442cd1fbf718ebd5b35e71fd0e0b89 = $(`&lt;div id=&quot;html_c5442cd1fbf718ebd5b35e71fd0e0b89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.0199             latitude:35.5102             PM2_5:29.07799443             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc13eb0c66b3e6340f2159e2e953f698.setContent(html_c5442cd1fbf718ebd5b35e71fd0e0b89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3d3d7d98fd8d4067227ea6f81c2956a.bindPopup(popup_bc13eb0c66b3e6340f2159e2e953f698)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2435d4ede272b03b1fa21491bd3a1a0d = L.circleMarker(\\n\",\n       \"                [31.7133, 118.6439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af1a2c9c06da9e8071e564be1ee14437 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a123f62e16debbd02795286629ed4e4 = $(`&lt;div id=&quot;html_7a123f62e16debbd02795286629ed4e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6439             latitude:31.7133             PM2_5:57.34135977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af1a2c9c06da9e8071e564be1ee14437.setContent(html_7a123f62e16debbd02795286629ed4e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2435d4ede272b03b1fa21491bd3a1a0d.bindPopup(popup_af1a2c9c06da9e8071e564be1ee14437)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d268a189b17a7977b40c58506a5e5eb = L.circleMarker(\\n\",\n       \"                [36.1942, 117.0881],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69f7df712c2473117606f78670ff69c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0ed6b98b71bcf74a092f97cb47cd17a = $(`&lt;div id=&quot;html_b0ed6b98b71bcf74a092f97cb47cd17a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0881             latitude:36.1942             PM2_5:48.14542936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69f7df712c2473117606f78670ff69c1.setContent(html_b0ed6b98b71bcf74a092f97cb47cd17a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d268a189b17a7977b40c58506a5e5eb.bindPopup(popup_69f7df712c2473117606f78670ff69c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77b879775cdc5789f331d5a94bcf4a61 = L.circleMarker(\\n\",\n       \"                [28.56, 112.3439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9f73ed7258faaec756dd023e7859771 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bef60ae3ed677c6c9c5629f6b0bdc560 = $(`&lt;div id=&quot;html_bef60ae3ed677c6c9c5629f6b0bdc560&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3439             latitude:28.56             PM2_5:39.57022472             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9f73ed7258faaec756dd023e7859771.setContent(html_bef60ae3ed677c6c9c5629f6b0bdc560);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77b879775cdc5789f331d5a94bcf4a61.bindPopup(popup_a9f73ed7258faaec756dd023e7859771)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5f3656b913f782e36692d728ed8fd74 = L.circleMarker(\\n\",\n       \"                [31.0386, 112.2211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91fd084434db48f117ad549481311e9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39eef6332fabc1f63632d69336969756 = $(`&lt;div id=&quot;html_39eef6332fabc1f63632d69336969756&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2211             latitude:31.0386             PM2_5:54.21848739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91fd084434db48f117ad549481311e9d.setContent(html_39eef6332fabc1f63632d69336969756);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5f3656b913f782e36692d728ed8fd74.bindPopup(popup_91fd084434db48f117ad549481311e9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c84c26fcd24ab01dd97cb9b4b0c1715 = L.circleMarker(\\n\",\n       \"                [32.1383, 114.0614],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b039d3936d18ac3e7772ce6d5a8bee1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21cb7e68843d654783380153e28990b5 = $(`&lt;div id=&quot;html_21cb7e68843d654783380153e28990b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0614             latitude:32.1383             PM2_5:51.8125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b039d3936d18ac3e7772ce6d5a8bee1a.setContent(html_21cb7e68843d654783380153e28990b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c84c26fcd24ab01dd97cb9b4b0c1715.bindPopup(popup_b039d3936d18ac3e7772ce6d5a8bee1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a35f34ffcc190f7b20a8a6f0633e03b = L.circleMarker(\\n\",\n       \"                [36.67, 116.93],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_526ec88715abf9b2ae78ffe7df55c496 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85c73ce733354cba3c28696c46f7115a = $(`&lt;div id=&quot;html_85c73ce733354cba3c28696c46f7115a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.93             latitude:36.67             PM2_5:51.10704225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_526ec88715abf9b2ae78ffe7df55c496.setContent(html_85c73ce733354cba3c28696c46f7115a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a35f34ffcc190f7b20a8a6f0633e03b.bindPopup(popup_526ec88715abf9b2ae78ffe7df55c496)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddcf8d9c73634d9c923b652fcf4a3a54 = L.circleMarker(\\n\",\n       \"                [28.6542, 121.419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d65254193e826da45fda81afe04e250 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4f75204ddf647737a5aae69313ea636 = $(`&lt;div id=&quot;html_a4f75204ddf647737a5aae69313ea636&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.419             latitude:28.6542             PM2_5:31.10814607             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d65254193e826da45fda81afe04e250.setContent(html_a4f75204ddf647737a5aae69313ea636);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddcf8d9c73634d9c923b652fcf4a3a54.bindPopup(popup_9d65254193e826da45fda81afe04e250)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_733d992e55196d902bc8790e8631c68a = L.circleMarker(\\n\",\n       \"                [28.2642, 117.0564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b84de93ec0d237b7c7b7e40cb1b726cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98097ffbca43efec951154918e8ef3b9 = $(`&lt;div id=&quot;html_98097ffbca43efec951154918e8ef3b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0564             latitude:28.2642             PM2_5:34.52683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b84de93ec0d237b7c7b7e40cb1b726cd.setContent(html_98097ffbca43efec951154918e8ef3b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_733d992e55196d902bc8790e8631c68a.bindPopup(popup_b84de93ec0d237b7c7b7e40cb1b726cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd3dc4c59abaaa53e58cd975da027555 = L.circleMarker(\\n\",\n       \"                [34.6511, 112.3939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e14c03efe51f0913b5a869f3ac7f861a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc7591a6e998957459f8079f6d0c7101 = $(`&lt;div id=&quot;html_dc7591a6e998957459f8079f6d0c7101&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3939             latitude:34.6511             PM2_5:64.64325843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e14c03efe51f0913b5a869f3ac7f861a.setContent(html_dc7591a6e998957459f8079f6d0c7101);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd3dc4c59abaaa53e58cd975da027555.bindPopup(popup_e14c03efe51f0913b5a869f3ac7f861a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_04c48349b72132c061ca2f2d0afb93a9 = L.circleMarker(\\n\",\n       \"                [25.067, 102.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_058eb1e1df7f6b8b7979a35ddaa87f30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bac0695d3eb5e29040923c675f67252f = $(`&lt;div id=&quot;html_bac0695d3eb5e29040923c675f67252f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.681             latitude:25.067             PM2_5:25.84722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_058eb1e1df7f6b8b7979a35ddaa87f30.setContent(html_bac0695d3eb5e29040923c675f67252f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_04c48349b72132c061ca2f2d0afb93a9.bindPopup(popup_058eb1e1df7f6b8b7979a35ddaa87f30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f756524c72bb8e76c8b85946ea35b1d = L.circleMarker(\\n\",\n       \"                [23.1331, 113.26],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0743206910960fe146c6e06e25b02af8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2200baa0d0c55cb88dc8fb2fc8cdeda8 = $(`&lt;div id=&quot;html_2200baa0d0c55cb88dc8fb2fc8cdeda8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.26             latitude:23.1331             PM2_5:35.90896359             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0743206910960fe146c6e06e25b02af8.setContent(html_2200baa0d0c55cb88dc8fb2fc8cdeda8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f756524c72bb8e76c8b85946ea35b1d.bindPopup(popup_0743206910960fe146c6e06e25b02af8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6c2f14e67bd91ce979bd5e93530e219 = L.circleMarker(\\n\",\n       \"                [23.06, 113.7480556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7d0f10d3416d854e173b77d4417b079 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4280a7f2fa019b0acf8dd00e69e140b = $(`&lt;div id=&quot;html_f4280a7f2fa019b0acf8dd00e69e140b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7480556             latitude:23.06             PM2_5:39.63445378             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7d0f10d3416d854e173b77d4417b079.setContent(html_f4280a7f2fa019b0acf8dd00e69e140b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6c2f14e67bd91ce979bd5e93530e219.bindPopup(popup_f7d0f10d3416d854e173b77d4417b079)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2957505365f86b0c0f467adfd7f82d8 = L.circleMarker(\\n\",\n       \"                [32.8928, 115.8275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4a2670bf560c096343708ebd3148440 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6da09b13b676f397ea5dfce81fdec85 = $(`&lt;div id=&quot;html_c6da09b13b676f397ea5dfce81fdec85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8275             latitude:32.8928             PM2_5:51.21148459             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4a2670bf560c096343708ebd3148440.setContent(html_c6da09b13b676f397ea5dfce81fdec85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2957505365f86b0c0f467adfd7f82d8.bindPopup(popup_d4a2670bf560c096343708ebd3148440)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dd7bccf5657f7b2e7e6a37e7072cf91 = L.circleMarker(\\n\",\n       \"                [27.6231, 113.8447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8255ea8f92021aeacf7d82b09548964 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9c319bb7158596b430f638a30530621 = $(`&lt;div id=&quot;html_d9c319bb7158596b430f638a30530621&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8447             latitude:27.6231             PM2_5:47.67086835             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8255ea8f92021aeacf7d82b09548964.setContent(html_d9c319bb7158596b430f638a30530621);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dd7bccf5657f7b2e7e6a37e7072cf91.bindPopup(popup_c8255ea8f92021aeacf7d82b09548964)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47592e78e3d0c45b37a28da15153d4f3 = L.circleMarker(\\n\",\n       \"                [36.2403, 120.4001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92acf6cb721b36680b9308fab3932dea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02b9659781706bdc9e402551518c4dfd = $(`&lt;div id=&quot;html_02b9659781706bdc9e402551518c4dfd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4001             latitude:36.2403             PM2_5:30.67             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92acf6cb721b36680b9308fab3932dea.setContent(html_02b9659781706bdc9e402551518c4dfd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47592e78e3d0c45b37a28da15153d4f3.bindPopup(popup_92acf6cb721b36680b9308fab3932dea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be62586c2cf58fce748c618a3012fd8c = L.circleMarker(\\n\",\n       \"                [31.8531, 106.7594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e77385726ad06b936fe650ca6c46aa7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89acf9a1ae60cd1e8933d1319d99dc9e = $(`&lt;div id=&quot;html_89acf9a1ae60cd1e8933d1319d99dc9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7594             latitude:31.8531             PM2_5:34.7867036             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e77385726ad06b936fe650ca6c46aa7f.setContent(html_89acf9a1ae60cd1e8933d1319d99dc9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be62586c2cf58fce748c618a3012fd8c.bindPopup(popup_e77385726ad06b936fe650ca6c46aa7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b2cbbbb2ff31d69df83bacb89981bde = L.circleMarker(\\n\",\n       \"                [41.7192, 86.2022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ecd704d2adcb3288faefbc1f46894b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33f83c3bb77a445505cea75cf9af7f5a = $(`&lt;div id=&quot;html_33f83c3bb77a445505cea75cf9af7f5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.2022             latitude:41.7192             PM2_5:52.89481268             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ecd704d2adcb3288faefbc1f46894b6.setContent(html_33f83c3bb77a445505cea75cf9af7f5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b2cbbbb2ff31d69df83bacb89981bde.bindPopup(popup_2ecd704d2adcb3288faefbc1f46894b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28ee9bd91f6e5115f179f824c1a7d31f = L.circleMarker(\\n\",\n       \"                [34.2324, 108.94],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a20d897074c40ec55a94b907522f2528 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce8264a590399aca687d58db236aa059 = $(`&lt;div id=&quot;html_ce8264a590399aca687d58db236aa059&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.94             latitude:34.2324             PM2_5:66.77361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a20d897074c40ec55a94b907522f2528.setContent(html_ce8264a590399aca687d58db236aa059);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28ee9bd91f6e5115f179f824c1a7d31f.bindPopup(popup_a20d897074c40ec55a94b907522f2528)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15322a8c13d96c6b87a94cc020e8be03 = L.circleMarker(\\n\",\n       \"                [31.7694, 120.0469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8456485f53aec6c6ea1965034c421650 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d8a94185b0b25d09a811ec8c8046edc = $(`&lt;div id=&quot;html_3d8a94185b0b25d09a811ec8c8046edc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.0469             latitude:31.7694             PM2_5:46.64772727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8456485f53aec6c6ea1965034c421650.setContent(html_3d8a94185b0b25d09a811ec8c8046edc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15322a8c13d96c6b87a94cc020e8be03.bindPopup(popup_8456485f53aec6c6ea1965034c421650)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_450ace4b352535713cee83ccbf104804 = L.circleMarker(\\n\",\n       \"                [46.3991, 124.8847],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e03a23a5720d2339c4b660fdc910461 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0da1f891200acc65ae27185b53028859 = $(`&lt;div id=&quot;html_0da1f891200acc65ae27185b53028859&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8847             latitude:46.3991             PM2_5:22.25633803             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e03a23a5720d2339c4b660fdc910461.setContent(html_0da1f891200acc65ae27185b53028859);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_450ace4b352535713cee83ccbf104804.bindPopup(popup_6e03a23a5720d2339c4b660fdc910461)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03ef129ef170f091d6518854f8073770 = L.circleMarker(\\n\",\n       \"                [41.8625, 124.0383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30485f3822c3708d34415e07e40ae650 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc79a674f6b379afc8f537dfae948e9c = $(`&lt;div id=&quot;html_dc79a674f6b379afc8f537dfae948e9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.0383             latitude:41.8625             PM2_5:29.60694444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30485f3822c3708d34415e07e40ae650.setContent(html_dc79a674f6b379afc8f537dfae948e9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03ef129ef170f091d6518854f8073770.bindPopup(popup_30485f3822c3708d34415e07e40ae650)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47d6fcaaec3cd570dd0bc4f9c4b300d7 = L.circleMarker(\\n\",\n       \"                [42.0352, 119.2654],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1bd3a053d15316a7f39a7cb8b788118b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c44b06500a54565bee7865bfcf53edef = $(`&lt;div id=&quot;html_c44b06500a54565bee7865bfcf53edef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.2654             latitude:42.0352             PM2_5:35.10584958             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1bd3a053d15316a7f39a7cb8b788118b.setContent(html_c44b06500a54565bee7865bfcf53edef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47d6fcaaec3cd570dd0bc4f9c4b300d7.bindPopup(popup_1bd3a053d15316a7f39a7cb8b788118b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afb985d6fef1617f22fdd622f52f865c = L.circleMarker(\\n\",\n       \"                [29.8211, 114.3231],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9aaf699fb4d40c82ef877e963015bf8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d670f829622b9fa18110b7ea18a6f87c = $(`&lt;div id=&quot;html_d670f829622b9fa18110b7ea18a6f87c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3231             latitude:29.8211             PM2_5:40.85097493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9aaf699fb4d40c82ef877e963015bf8.setContent(html_d670f829622b9fa18110b7ea18a6f87c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afb985d6fef1617f22fdd622f52f865c.bindPopup(popup_a9aaf699fb4d40c82ef877e963015bf8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22c5b887b9df3cb8068fd2ce86e0d37f = L.circleMarker(\\n\",\n       \"                [28.7867, 104.6061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb75e360368c54a3a25781af241a8e8d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d3abd7ca887496cda5a04d75e0df6e6 = $(`&lt;div id=&quot;html_9d3abd7ca887496cda5a04d75e0df6e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6061             latitude:28.7867             PM2_5:50.48179272             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb75e360368c54a3a25781af241a8e8d.setContent(html_9d3abd7ca887496cda5a04d75e0df6e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22c5b887b9df3cb8068fd2ce86e0d37f.bindPopup(popup_bb75e360368c54a3a25781af241a8e8d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d921a511959379f960e01571c1f4e73 = L.circleMarker(\\n\",\n       \"                [45.6289, 122.8444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26eb15f2de6c10835ca6157c8e826e98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e0513aa0a03ebaee3496cb38ce77431 = $(`&lt;div id=&quot;html_9e0513aa0a03ebaee3496cb38ce77431&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.8444             latitude:45.6289             PM2_5:27.69308357             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26eb15f2de6c10835ca6157c8e826e98.setContent(html_9e0513aa0a03ebaee3496cb38ce77431);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d921a511959379f960e01571c1f4e73.bindPopup(popup_26eb15f2de6c10835ca6157c8e826e98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be55ddf69a182df99fb3964f6a950844 = L.circleMarker(\\n\",\n       \"                [40.7866, 111.551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_14bcbbbcd399e780a2610ce69debfc81 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4dc59da465988165bf7be3d7f2878556 = $(`&lt;div id=&quot;html_4dc59da465988165bf7be3d7f2878556&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.551             latitude:40.7866             PM2_5:47.61559889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_14bcbbbcd399e780a2610ce69debfc81.setContent(html_4dc59da465988165bf7be3d7f2878556);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be55ddf69a182df99fb3964f6a950844.bindPopup(popup_14bcbbbcd399e780a2610ce69debfc81)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_178508d8e6b84d501b6a7d1d7124d678 = L.circleMarker(\\n\",\n       \"                [45.7319, 126.685],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74196e209536882d6f1c7e9738cb99c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f0dbdd62bec77bb1b35a9e7d66ff416 = $(`&lt;div id=&quot;html_9f0dbdd62bec77bb1b35a9e7d66ff416&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.685             latitude:45.7319             PM2_5:35.66852368             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74196e209536882d6f1c7e9738cb99c2.setContent(html_9f0dbdd62bec77bb1b35a9e7d66ff416);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_178508d8e6b84d501b6a7d1d7124d678.bindPopup(popup_74196e209536882d6f1c7e9738cb99c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_176a72aca39de8aff2c0089e35100566 = L.circleMarker(\\n\",\n       \"                [35.94, 104.148],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92ccfbfe8179b4db3fa457f28c8856b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cce998749dc52fab5e20dc28c4035b0a = $(`&lt;div id=&quot;html_cce998749dc52fab5e20dc28c4035b0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.148             latitude:35.94             PM2_5:27.50283286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92ccfbfe8179b4db3fa457f28c8856b2.setContent(html_cce998749dc52fab5e20dc28c4035b0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_176a72aca39de8aff2c0089e35100566.bindPopup(popup_92ccfbfe8179b4db3fa457f28c8856b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c38fb55b064ede81ef39e27ed2ee2af = L.circleMarker(\\n\",\n       \"                [34.1781, 117.1694],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c339d9fcebddc00e1ced81cc1501e12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cea83d03072b304d6bc20dbce52cf9b7 = $(`&lt;div id=&quot;html_cea83d03072b304d6bc20dbce52cf9b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1694             latitude:34.1781             PM2_5:63.68130312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c339d9fcebddc00e1ced81cc1501e12.setContent(html_cea83d03072b304d6bc20dbce52cf9b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c38fb55b064ede81ef39e27ed2ee2af.bindPopup(popup_4c339d9fcebddc00e1ced81cc1501e12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ed2cbb562526ba13d00e6d1509fbeb6 = L.circleMarker(\\n\",\n       \"                [23.2536, 116.4019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09f09ccecc5e7dfc8dc892192a89002a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c450aa02a4327b622b44332323d9df67 = $(`&lt;div id=&quot;html_c450aa02a4327b622b44332323d9df67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.4019             latitude:23.2536             PM2_5:29.83704735             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09f09ccecc5e7dfc8dc892192a89002a.setContent(html_c450aa02a4327b622b44332323d9df67);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ed2cbb562526ba13d00e6d1509fbeb6.bindPopup(popup_09f09ccecc5e7dfc8dc892192a89002a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c2fdfb324e8fe99eaaddf5477d2ff8e1 = L.circleMarker(\\n\",\n       \"                [32.41361, 119.458],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5922e93adec58db99bc7d24ff55d4ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f36b0a7547a2a9636b430d8af5350e9 = $(`&lt;div id=&quot;html_8f36b0a7547a2a9636b430d8af5350e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.458             latitude:32.41361             PM2_5:47.77423823             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5922e93adec58db99bc7d24ff55d4ab.setContent(html_8f36b0a7547a2a9636b430d8af5350e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c2fdfb324e8fe99eaaddf5477d2ff8e1.bindPopup(popup_b5922e93adec58db99bc7d24ff55d4ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb4a70f448393a4e597350b52331379a = L.circleMarker(\\n\",\n       \"                [26.0753, 119.315],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a63311640ecb1ccdc348e045dbfdd4d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f2e570a463056cdbe99c5f1ce71494b = $(`&lt;div id=&quot;html_2f2e570a463056cdbe99c5f1ce71494b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.315             latitude:26.0753             PM2_5:31.11871508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a63311640ecb1ccdc348e045dbfdd4d3.setContent(html_2f2e570a463056cdbe99c5f1ce71494b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb4a70f448393a4e597350b52331379a.bindPopup(popup_a63311640ecb1ccdc348e045dbfdd4d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4701566fdcdf65004bf05c40a7d6e12d = L.circleMarker(\\n\",\n       \"                [37.85, 113.5158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ec123091974aff0f7990f2d0bb9b1b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95bf2165e8ff54954346babed64fddff = $(`&lt;div id=&quot;html_95bf2165e8ff54954346babed64fddff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5158             latitude:37.85             PM2_5:48.72804533             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ec123091974aff0f7990f2d0bb9b1b3.setContent(html_95bf2165e8ff54954346babed64fddff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4701566fdcdf65004bf05c40a7d6e12d.bindPopup(popup_2ec123091974aff0f7990f2d0bb9b1b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b9f750240bdc048fa1a6b03eacbee6d = L.circleMarker(\\n\",\n       \"                [25.8481, 114.9461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ee7934deaa3338e9df09062afc36bc2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b7cf1d6bae3f14264d2d6a95c3886a6 = $(`&lt;div id=&quot;html_1b7cf1d6bae3f14264d2d6a95c3886a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9461             latitude:25.8481             PM2_5:45.10138889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ee7934deaa3338e9df09062afc36bc2.setContent(html_1b7cf1d6bae3f14264d2d6a95c3886a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b9f750240bdc048fa1a6b03eacbee6d.bindPopup(popup_8ee7934deaa3338e9df09062afc36bc2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b92e87f1eec2fbd784a56cd3d2391346 = L.circleMarker(\\n\",\n       \"                [38.3344, 109.7414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57fbfa035768d2b3c7282e4a1d56d047 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22c6860f491987f9c23390db1b595dfa = $(`&lt;div id=&quot;html_22c6860f491987f9c23390db1b595dfa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7414             latitude:38.3344             PM2_5:28.8960114             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57fbfa035768d2b3c7282e4a1d56d047.setContent(html_22c6860f491987f9c23390db1b595dfa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b92e87f1eec2fbd784a56cd3d2391346.bindPopup(popup_57fbfa035768d2b3c7282e4a1d56d047)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e2ea29df284ebeb1f7a8cbda6c887ee = L.circleMarker(\\n\",\n       \"                [31.6842, 120.288],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bc20a2b064edcac4f928d8690f0e6fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72733f101ae9eb46fa79da244890705f = $(`&lt;div id=&quot;html_72733f101ae9eb46fa79da244890705f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.288             latitude:31.6842             PM2_5:47.45224719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bc20a2b064edcac4f928d8690f0e6fc.setContent(html_72733f101ae9eb46fa79da244890705f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e2ea29df284ebeb1f7a8cbda6c887ee.bindPopup(popup_5bc20a2b064edcac4f928d8690f0e6fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f4ef5aa997aeadf1b6d4596fdf0a8a4 = L.circleMarker(\\n\",\n       \"                [23.4714, 116.7519],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31c414e725678e2930595228c8384016 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b433140b9e510f55e52d1396f32ff8a4 = $(`&lt;div id=&quot;html_b433140b9e510f55e52d1396f32ff8a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7519             latitude:23.4714             PM2_5:30.35614525             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31c414e725678e2930595228c8384016.setContent(html_b433140b9e510f55e52d1396f32ff8a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f4ef5aa997aeadf1b6d4596fdf0a8a4.bindPopup(popup_31c414e725678e2930595228c8384016)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70cbf8c195f316ff288d159cfba82fc9 = L.circleMarker(\\n\",\n       \"                [45.5422, 126.979],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b669883e6bfcf7b680fba04a1d06900 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_838e5c594e8ce04197b6fa27b6595521 = $(`&lt;div id=&quot;html_838e5c594e8ce04197b6fa27b6595521&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.979             latitude:45.5422             PM2_5:33.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b669883e6bfcf7b680fba04a1d06900.setContent(html_838e5c594e8ce04197b6fa27b6595521);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70cbf8c195f316ff288d159cfba82fc9.bindPopup(popup_1b669883e6bfcf7b680fba04a1d06900)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f1a65c7ab48875fd53957d25e603260 = L.circleMarker(\\n\",\n       \"                [36.1912, 113.1569],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff4f1571a2503081daec06fafbc17f21 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_efad277fb896b6dfbb204e34f2251b70 = $(`&lt;div id=&quot;html_efad277fb896b6dfbb204e34f2251b70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1569             latitude:36.1912             PM2_5:65.63509749             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff4f1571a2503081daec06fafbc17f21.setContent(html_efad277fb896b6dfbb204e34f2251b70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f1a65c7ab48875fd53957d25e603260.bindPopup(popup_ff4f1571a2503081daec06fafbc17f21)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03b7f1a24dc206e4b5de4b51cfceca5e = L.circleMarker(\\n\",\n       \"                [29.4251, 113.1493],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee2cc1207bb9d80b5914445156a89fd1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee206d5c1aa9f1007be34ef9270e2427 = $(`&lt;div id=&quot;html_ee206d5c1aa9f1007be34ef9270e2427&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1493             latitude:29.4251             PM2_5:49.36543909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee2cc1207bb9d80b5914445156a89fd1.setContent(html_ee206d5c1aa9f1007be34ef9270e2427);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03b7f1a24dc206e4b5de4b51cfceca5e.bindPopup(popup_ee2cc1207bb9d80b5914445156a89fd1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e9513ea295c17f820472c2c981155a9 = L.circleMarker(\\n\",\n       \"                [29.3864, 117.3097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cdc95fc66350ca1fcbbc224696199359 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bacf9acd98657139762ab5e2d70049f4 = $(`&lt;div id=&quot;html_bacf9acd98657139762ab5e2d70049f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3097             latitude:29.3864             PM2_5:26.33286119             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cdc95fc66350ca1fcbbc224696199359.setContent(html_bacf9acd98657139762ab5e2d70049f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e9513ea295c17f820472c2c981155a9.bindPopup(popup_cdc95fc66350ca1fcbbc224696199359)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c2cd33812d4b41b0b0baae8d0bd369aa = L.circleMarker(\\n\",\n       \"                [27.7044, 111.9892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3bef01847ef80b41324b35abe5020ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc70a97947835ef7e33a97aea5169082 = $(`&lt;div id=&quot;html_dc70a97947835ef7e33a97aea5169082&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9892             latitude:27.7044             PM2_5:35.07983193             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3bef01847ef80b41324b35abe5020ab.setContent(html_dc70a97947835ef7e33a97aea5169082);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c2cd33812d4b41b0b0baae8d0bd369aa.bindPopup(popup_a3bef01847ef80b41324b35abe5020ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2c8f649acf1f7b4f6ea3b48c456024d = L.circleMarker(\\n\",\n       \"                [34.5814, 105.7281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55ed9c63f11306b5f8d6135ed01b27e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b18f7c30e2b7761a462905e55473e1b = $(`&lt;div id=&quot;html_4b18f7c30e2b7761a462905e55473e1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.7281             latitude:34.5814             PM2_5:30.97740113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55ed9c63f11306b5f8d6135ed01b27e5.setContent(html_4b18f7c30e2b7761a462905e55473e1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2c8f649acf1f7b4f6ea3b48c456024d.bindPopup(popup_55ed9c63f11306b5f8d6135ed01b27e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_495692967ba7ddee74d9d42c13d57451 = L.circleMarker(\\n\",\n       \"                [36.11, 114.286],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86f5fbccda9681369988c90a71065ca3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac834b887f32c93c7fdefc09cd148ac1 = $(`&lt;div id=&quot;html_ac834b887f32c93c7fdefc09cd148ac1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.286             latitude:36.11             PM2_5:68.70670391             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86f5fbccda9681369988c90a71065ca3.setContent(html_ac834b887f32c93c7fdefc09cd148ac1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_495692967ba7ddee74d9d42c13d57451.bindPopup(popup_86f5fbccda9681369988c90a71065ca3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e21e1cbae591bfb68e1aca738d87e31 = L.circleMarker(\\n\",\n       \"                [26.5939, 104.89],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16dd9c75c9c7b7182c53f2bccbb44670 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_367bbf7ae7e32b2812e7c463a6c71886 = $(`&lt;div id=&quot;html_367bbf7ae7e32b2812e7c463a6c71886&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.89             latitude:26.5939             PM2_5:39.54929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16dd9c75c9c7b7182c53f2bccbb44670.setContent(html_367bbf7ae7e32b2812e7c463a6c71886);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e21e1cbae591bfb68e1aca738d87e31.bindPopup(popup_16dd9c75c9c7b7182c53f2bccbb44670)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c0305f558b76483e5ba5427b91acc7dc = L.circleMarker(\\n\",\n       \"                [31.92, 120.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_846ca441b87b55af6e450fd9b2aa032d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8faa21d8e9108eb12cec53e98fa3bec4 = $(`&lt;div id=&quot;html_8faa21d8e9108eb12cec53e98fa3bec4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.268             latitude:31.92             PM2_5:54.32535211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_846ca441b87b55af6e450fd9b2aa032d.setContent(html_8faa21d8e9108eb12cec53e98fa3bec4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c0305f558b76483e5ba5427b91acc7dc.bindPopup(popup_846ca441b87b55af6e450fd9b2aa032d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ee9f098c79850d7c1ea7f89b8c2b573 = L.circleMarker(\\n\",\n       \"                [37.68277778, 112.7194444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c40d92545e5fc70ef8bf90f10bf2d972 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c96b75be5bdc807ecc81e7d9cd31865 = $(`&lt;div id=&quot;html_3c96b75be5bdc807ecc81e7d9cd31865&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7194444             latitude:37.68277778             PM2_5:58.19134078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c40d92545e5fc70ef8bf90f10bf2d972.setContent(html_3c96b75be5bdc807ecc81e7d9cd31865);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ee9f098c79850d7c1ea7f89b8c2b573.bindPopup(popup_c40d92545e5fc70ef8bf90f10bf2d972)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_541d56281fa23f27c18268b6130be047 = L.circleMarker(\\n\",\n       \"                [34.4714, 100.2561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51bad461a7c2aeaa447fc891a75ed8d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_516c308d264e5320472dc0478074fa43 = $(`&lt;div id=&quot;html_516c308d264e5320472dc0478074fa43&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2561             latitude:34.4714             PM2_5:27.10110803             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51bad461a7c2aeaa447fc891a75ed8d0.setContent(html_516c308d264e5320472dc0478074fa43);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_541d56281fa23f27c18268b6130be047.bindPopup(popup_51bad461a7c2aeaa447fc891a75ed8d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ecb1835ee80af7934aa72d6daec625fd = L.circleMarker(\\n\",\n       \"                [39.1495, 117.3916],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_441c06dfc242d88bcdfe2872dff8cfc3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_032e03de54bf8a305c036e9e02eae416 = $(`&lt;div id=&quot;html_032e03de54bf8a305c036e9e02eae416&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3916             latitude:39.1495             PM2_5:51.78892216             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_441c06dfc242d88bcdfe2872dff8cfc3.setContent(html_032e03de54bf8a305c036e9e02eae416);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ecb1835ee80af7934aa72d6daec625fd.bindPopup(popup_441c06dfc242d88bcdfe2872dff8cfc3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9ff4b065a53918f0193030bfa0674e4 = L.circleMarker(\\n\",\n       \"                [23.1422, 113.235],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f4427bfcb5e1be88fe37dad0075ec42e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a677f0110e69f315c38b37fbe7a88ab0 = $(`&lt;div id=&quot;html_a677f0110e69f315c38b37fbe7a88ab0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.235             latitude:23.1422             PM2_5:38.90947075             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f4427bfcb5e1be88fe37dad0075ec42e.setContent(html_a677f0110e69f315c38b37fbe7a88ab0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9ff4b065a53918f0193030bfa0674e4.bindPopup(popup_f4427bfcb5e1be88fe37dad0075ec42e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33b5ff930dcecedc3413deb4986f989e = L.circleMarker(\\n\",\n       \"                [25.2697, 110.2819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0ca1671d5604e3fac06d72f16b87026f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8abb0f00dd642c5c843bdb3b5f8b20da = $(`&lt;div id=&quot;html_8abb0f00dd642c5c843bdb3b5f8b20da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2819             latitude:25.2697             PM2_5:39.11173184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0ca1671d5604e3fac06d72f16b87026f.setContent(html_8abb0f00dd642c5c843bdb3b5f8b20da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33b5ff930dcecedc3413deb4986f989e.bindPopup(popup_0ca1671d5604e3fac06d72f16b87026f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9378b5279d9fdb3dc1a2973c1fb85f8a = L.circleMarker(\\n\",\n       \"                [23.8844, 106.6527],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e88baef071883619668f21fc324c5418 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd5c2df37959b9712dec57e91eabd08b = $(`&lt;div id=&quot;html_fd5c2df37959b9712dec57e91eabd08b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6527             latitude:23.8844             PM2_5:41.93296089             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e88baef071883619668f21fc324c5418.setContent(html_fd5c2df37959b9712dec57e91eabd08b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9378b5279d9fdb3dc1a2973c1fb85f8a.bindPopup(popup_e88baef071883619668f21fc324c5418)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_519383db8b4c4148e754e99c69c6f726 = L.circleMarker(\\n\",\n       \"                [21.8586, 111.9786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10ababd6e6905cdc425b9419bdfd3dad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9a83e55090d99018f4f5bf47eee9e76 = $(`&lt;div id=&quot;html_e9a83e55090d99018f4f5bf47eee9e76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9786             latitude:21.8586             PM2_5:30.71428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10ababd6e6905cdc425b9419bdfd3dad.setContent(html_e9a83e55090d99018f4f5bf47eee9e76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_519383db8b4c4148e754e99c69c6f726.bindPopup(popup_10ababd6e6905cdc425b9419bdfd3dad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f17d407ac30069585198b92a2598e106 = L.circleMarker(\\n\",\n       \"                [40.7514, 120.8392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76b2b1b9399601b3861ed9a3515e72f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4348e133735337611971bef9be340744 = $(`&lt;div id=&quot;html_4348e133735337611971bef9be340744&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8392             latitude:40.7514             PM2_5:38.0140056             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76b2b1b9399601b3861ed9a3515e72f2.setContent(html_4348e133735337611971bef9be340744);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f17d407ac30069585198b92a2598e106.bindPopup(popup_76b2b1b9399601b3861ed9a3515e72f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bbe043e4e363af7f2bf4e5f1d4ec6b8c = L.circleMarker(\\n\",\n       \"                [35.7067, 107.6364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b51f47ad618210b39b4cc21bc843284a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1bac74c561a21c424fabc4ec42381689 = $(`&lt;div id=&quot;html_1bac74c561a21c424fabc4ec42381689&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6364             latitude:35.7067             PM2_5:30.4902507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b51f47ad618210b39b4cc21bc843284a.setContent(html_1bac74c561a21c424fabc4ec42381689);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bbe043e4e363af7f2bf4e5f1d4ec6b8c.bindPopup(popup_b51f47ad618210b39b4cc21bc843284a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b84100662d958e4b3ff5fd154a3747d = L.circleMarker(\\n\",\n       \"                [42.8947, 125.1358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a076273d08e8ef4b993e82fba9a9401 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fcb76d42b82c3b5c7c15cf2365adb71 = $(`&lt;div id=&quot;html_7fcb76d42b82c3b5c7c15cf2365adb71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1358             latitude:42.8947             PM2_5:33.01549296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a076273d08e8ef4b993e82fba9a9401.setContent(html_7fcb76d42b82c3b5c7c15cf2365adb71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b84100662d958e4b3ff5fd154a3747d.bindPopup(popup_2a076273d08e8ef4b993e82fba9a9401)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7afc7a32496a06304345716fd2368bfb = L.circleMarker(\\n\",\n       \"                [30.8023, 106.0789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_987030f333e7c71ac8daf7fe61bd2227 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5fce9ebd7481107f3fb0a13638f359b = $(`&lt;div id=&quot;html_b5fce9ebd7481107f3fb0a13638f359b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0789             latitude:30.8023             PM2_5:48.08472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_987030f333e7c71ac8daf7fe61bd2227.setContent(html_b5fce9ebd7481107f3fb0a13638f359b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7afc7a32496a06304345716fd2368bfb.bindPopup(popup_987030f333e7c71ac8daf7fe61bd2227)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad8b0b93606b80d921f838dc9b24b218 = L.circleMarker(\\n\",\n       \"                [47.2753, 130.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0fa12faec66b8f11e0ef5aa5854b753 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_feada3185a0eca079ad6891826f260e8 = $(`&lt;div id=&quot;html_feada3185a0eca079ad6891826f260e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.261             latitude:47.2753             PM2_5:23.20251397             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0fa12faec66b8f11e0ef5aa5854b753.setContent(html_feada3185a0eca079ad6891826f260e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad8b0b93606b80d921f838dc9b24b218.bindPopup(popup_e0fa12faec66b8f11e0ef5aa5854b753)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e286e0cbe414f91453f70f1a4af74c8b = L.circleMarker(\\n\",\n       \"                [37.5436, 121.3181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_747c65b1a4474e791a19ff772bdca49e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc13e9411c9dbc9ddb57b2cb6c9712a5 = $(`&lt;div id=&quot;html_bc13e9411c9dbc9ddb57b2cb6c9712a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.3181             latitude:37.5436             PM2_5:26.89346591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_747c65b1a4474e791a19ff772bdca49e.setContent(html_bc13e9411c9dbc9ddb57b2cb6c9712a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e286e0cbe414f91453f70f1a4af74c8b.bindPopup(popup_747c65b1a4474e791a19ff772bdca49e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_206414a76ebaa165d3435c68c2136392 = L.circleMarker(\\n\",\n       \"                [38.8516, 105.724],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2791e3090dd5d232fe1e226c7cbb6a81 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e0b6f4beb447e2696b89451e205e566 = $(`&lt;div id=&quot;html_7e0b6f4beb447e2696b89451e205e566&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.724             latitude:38.8516             PM2_5:29.55477528             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2791e3090dd5d232fe1e226c7cbb6a81.setContent(html_7e0b6f4beb447e2696b89451e205e566);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_206414a76ebaa165d3435c68c2136392.bindPopup(popup_2791e3090dd5d232fe1e226c7cbb6a81)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2959556a9ea8b0a78e18731c41f828a6 = L.circleMarker(\\n\",\n       \"                [29.4892, 106.634],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be621575618557bc1dbcc5cfbf50d220 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a0671fe98e23b39857082c5e89911c7 = $(`&lt;div id=&quot;html_6a0671fe98e23b39857082c5e89911c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.634             latitude:29.4892             PM2_5:39.38022284             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be621575618557bc1dbcc5cfbf50d220.setContent(html_6a0671fe98e23b39857082c5e89911c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2959556a9ea8b0a78e18731c41f828a6.bindPopup(popup_be621575618557bc1dbcc5cfbf50d220)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d659276b960dcb05af20c6d4a6744518 = L.circleMarker(\\n\",\n       \"                [28.9703, 111.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9122b6e9355584020b4b7ab852827942 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2172ff765b85dfa27965bed72a0bfca8 = $(`&lt;div id=&quot;html_2172ff765b85dfa27965bed72a0bfca8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6975             latitude:28.9703             PM2_5:44.52442529             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9122b6e9355584020b4b7ab852827942.setContent(html_2172ff765b85dfa27965bed72a0bfca8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d659276b960dcb05af20c6d4a6744518.bindPopup(popup_9122b6e9355584020b4b7ab852827942)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cab90d8f1e6f825c17b5aeab540e329b = L.circleMarker(\\n\",\n       \"                [28.9404, 118.871],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bb4983074e5debc8ab7ee2ed8b4af28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc92de2c403cb4d4a93c4513e23f52b4 = $(`&lt;div id=&quot;html_dc92de2c403cb4d4a93c4513e23f52b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.871             latitude:28.9404             PM2_5:32.40168539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bb4983074e5debc8ab7ee2ed8b4af28.setContent(html_dc92de2c403cb4d4a93c4513e23f52b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cab90d8f1e6f825c17b5aeab540e329b.bindPopup(popup_8bb4983074e5debc8ab7ee2ed8b4af28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71395588ad5f3df46ff6fae32c83f2f7 = L.circleMarker(\\n\",\n       \"                [26.9089, 112.5328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5490187a8ba7fcba3d4b5ab5d9aa270 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86693ba0b350a68d85910652bdd8361c = $(`&lt;div id=&quot;html_86693ba0b350a68d85910652bdd8361c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5328             latitude:26.9089             PM2_5:42.46991404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5490187a8ba7fcba3d4b5ab5d9aa270.setContent(html_86693ba0b350a68d85910652bdd8361c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71395588ad5f3df46ff6fae32c83f2f7.bindPopup(popup_f5490187a8ba7fcba3d4b5ab5d9aa270)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a83ad83f7bb324ebab34298a8193818f = L.circleMarker(\\n\",\n       \"                [30.89556, 120.0875],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77fd7750e98ece7956ce1615251a4752 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecce0b9ed743d1e2ff44ed12878c14d8 = $(`&lt;div id=&quot;html_ecce0b9ed743d1e2ff44ed12878c14d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.0875             latitude:30.89556             PM2_5:39.35434174             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77fd7750e98ece7956ce1615251a4752.setContent(html_ecce0b9ed743d1e2ff44ed12878c14d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a83ad83f7bb324ebab34298a8193818f.bindPopup(popup_77fd7750e98ece7956ce1615251a4752)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36101a11101e26e5d06cfdd8bc8aa0d7 = L.circleMarker(\\n\",\n       \"                [43.91, 125.287],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8b0a48c3c083ad9d3bacd3fcf9d9ea6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_583195053ff3eb2e7ea028a1a1f6cd33 = $(`&lt;div id=&quot;html_583195053ff3eb2e7ea028a1a1f6cd33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.287             latitude:43.91             PM2_5:31.19134078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8b0a48c3c083ad9d3bacd3fcf9d9ea6.setContent(html_583195053ff3eb2e7ea028a1a1f6cd33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36101a11101e26e5d06cfdd8bc8aa0d7.bindPopup(popup_a8b0a48c3c083ad9d3bacd3fcf9d9ea6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_470b34e5440b7d804a4f85597b9c754b = L.circleMarker(\\n\",\n       \"                [39.1292, 106.7096],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd40a51158cc63faafa1131591d36a7d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f4e6c088a7a73d29c0d3c527f21e1ff = $(`&lt;div id=&quot;html_9f4e6c088a7a73d29c0d3c527f21e1ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7096             latitude:39.1292             PM2_5:40.22740113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd40a51158cc63faafa1131591d36a7d.setContent(html_9f4e6c088a7a73d29c0d3c527f21e1ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_470b34e5440b7d804a4f85597b9c754b.bindPopup(popup_bd40a51158cc63faafa1131591d36a7d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfa45c09fa12023cf94b2f26bbf71beb = L.circleMarker(\\n\",\n       \"                [37.5136, 111.1297],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25c2c099c55fc0c7e509450e7f2d2669 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_facad65ec2d67937f5277e4c37521541 = $(`&lt;div id=&quot;html_facad65ec2d67937f5277e4c37521541&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1297             latitude:37.5136             PM2_5:59.83844011             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25c2c099c55fc0c7e509450e7f2d2669.setContent(html_facad65ec2d67937f5277e4c37521541);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfa45c09fa12023cf94b2f26bbf71beb.bindPopup(popup_25c2c099c55fc0c7e509450e7f2d2669)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d26253809a878fa08a885af7fce386ae = L.circleMarker(\\n\",\n       \"                [28.7442, 115.813],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_022c3716785d73bb7fed1ba5e9be69ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_657559ce618870659684dff99db8c296 = $(`&lt;div id=&quot;html_657559ce618870659684dff99db8c296&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.813             latitude:28.7442             PM2_5:28.46468927             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_022c3716785d73bb7fed1ba5e9be69ea.setContent(html_657559ce618870659684dff99db8c296);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d26253809a878fa08a885af7fce386ae.bindPopup(popup_022c3716785d73bb7fed1ba5e9be69ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e9cfc51aac6f69bc8deb27c729c7f8d = L.circleMarker(\\n\",\n       \"                [39.3514, 112.44],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_418f7b161601a9723edabab29072bd9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af514147147ff4ba6184a1ca85b3480b = $(`&lt;div id=&quot;html_af514147147ff4ba6184a1ca85b3480b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.44             latitude:39.3514             PM2_5:38.79971989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_418f7b161601a9723edabab29072bd9e.setContent(html_af514147147ff4ba6184a1ca85b3480b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e9cfc51aac6f69bc8deb27c729c7f8d.bindPopup(popup_418f7b161601a9723edabab29072bd9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e27b0efb9a2bab2888aba4769ca60a31 = L.circleMarker(\\n\",\n       \"                [31.96, 120.913],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d7203d8e38758d07fc00dff6be12c745 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4db2ae34895a2400123fa3818a642261 = $(`&lt;div id=&quot;html_4db2ae34895a2400123fa3818a642261&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.913             latitude:31.96             PM2_5:38.12824207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d7203d8e38758d07fc00dff6be12c745.setContent(html_4db2ae34895a2400123fa3818a642261);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e27b0efb9a2bab2888aba4769ca60a31.bindPopup(popup_d7203d8e38758d07fc00dff6be12c745)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38c64ab8b74e5edfde80e4f31a40f04f = L.circleMarker(\\n\",\n       \"                [28.4622, 117.9511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2242a628780d0c71cb06c17c7d4ebe8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e2d7459f9714c978c4e6c45e9010753 = $(`&lt;div id=&quot;html_7e2d7459f9714c978c4e6c45e9010753&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9511             latitude:28.4622             PM2_5:39.12359551             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2242a628780d0c71cb06c17c7d4ebe8.setContent(html_7e2d7459f9714c978c4e6c45e9010753);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38c64ab8b74e5edfde80e4f31a40f04f.bindPopup(popup_c2242a628780d0c71cb06c17c7d4ebe8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1bc52d582d2ee717ee378bcc880286a = L.circleMarker(\\n\",\n       \"                [41.7511, 86.1461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47b605909a01d1098d88ae1e1fcffd54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae4e2ec66e4825ef84ede2aeffe68f11 = $(`&lt;div id=&quot;html_ae4e2ec66e4825ef84ede2aeffe68f11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.1461             latitude:41.7511             PM2_5:53.63764045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47b605909a01d1098d88ae1e1fcffd54.setContent(html_ae4e2ec66e4825ef84ede2aeffe68f11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1bc52d582d2ee717ee378bcc880286a.bindPopup(popup_47b605909a01d1098d88ae1e1fcffd54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8288dd597fee86e38fc896c9ff76b851 = L.circleMarker(\\n\",\n       \"                [28.6064, 115.9083],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb4990f06c30c3620b11a72e2caa0044 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30fb0e67f11aa5c4b9ad5cfbbb3abd97 = $(`&lt;div id=&quot;html_30fb0e67f11aa5c4b9ad5cfbbb3abd97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9083             latitude:28.6064             PM2_5:29.79859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb4990f06c30c3620b11a72e2caa0044.setContent(html_30fb0e67f11aa5c4b9ad5cfbbb3abd97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8288dd597fee86e38fc896c9ff76b851.bindPopup(popup_cb4990f06c30c3620b11a72e2caa0044)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9dc60831565d510c4fe56271b7662a33 = L.circleMarker(\\n\",\n       \"                [36.2403, 120.6659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_537492ad1c520f32c7c54a9ee7724ad2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46aaaea4732dde64aeb0f7d967d0eaec = $(`&lt;div id=&quot;html_46aaaea4732dde64aeb0f7d967d0eaec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.6659             latitude:36.2403             PM2_5:25.74107143             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_537492ad1c520f32c7c54a9ee7724ad2.setContent(html_46aaaea4732dde64aeb0f7d967d0eaec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9dc60831565d510c4fe56271b7662a33.bindPopup(popup_537492ad1c520f32c7c54a9ee7724ad2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e5b712c50c40eaac397ea640180572a = L.circleMarker(\\n\",\n       \"                [28.6969, 115.973],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9b3688b64b407bc5972d23e9a14e7a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d68fda923c7eb244f9c3c4aca39e26a = $(`&lt;div id=&quot;html_1d68fda923c7eb244f9c3c4aca39e26a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.973             latitude:28.6969             PM2_5:37.09444444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9b3688b64b407bc5972d23e9a14e7a6.setContent(html_1d68fda923c7eb244f9c3c4aca39e26a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e5b712c50c40eaac397ea640180572a.bindPopup(popup_c9b3688b64b407bc5972d23e9a14e7a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6804e792ec5518ffb9f424375042f16b = L.circleMarker(\\n\",\n       \"                [41.2553, 123.15],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_168cae942f47c292875f3e510b931fbe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d73934d5d00beef5033b6af48197c04 = $(`&lt;div id=&quot;html_6d73934d5d00beef5033b6af48197c04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.15             latitude:41.2553             PM2_5:28.93661972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_168cae942f47c292875f3e510b931fbe.setContent(html_6d73934d5d00beef5033b6af48197c04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6804e792ec5518ffb9f424375042f16b.bindPopup(popup_168cae942f47c292875f3e510b931fbe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b3eca0bbee77cf39cb7f9d71b1748a0 = L.circleMarker(\\n\",\n       \"                [41.7347, 123.2444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbb4873eee4713c307e0fcea049c8d8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0308f22b325133bfd74452bc612c4f9f = $(`&lt;div id=&quot;html_0308f22b325133bfd74452bc612c4f9f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.2444             latitude:41.7347             PM2_5:32.5238764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbb4873eee4713c307e0fcea049c8d8a.setContent(html_0308f22b325133bfd74452bc612c4f9f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b3eca0bbee77cf39cb7f9d71b1748a0.bindPopup(popup_dbb4873eee4713c307e0fcea049c8d8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de74dbf1dc22aac7ef145b5df1831e3d = L.circleMarker(\\n\",\n       \"                [25.8226, 113.0116],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37856fc9c3dc2dda4bb5bb3c392037b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c34f689b46b7f9035f581a593aa70b4 = $(`&lt;div id=&quot;html_2c34f689b46b7f9035f581a593aa70b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0116             latitude:25.8226             PM2_5:43.44583333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37856fc9c3dc2dda4bb5bb3c392037b9.setContent(html_2c34f689b46b7f9035f581a593aa70b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de74dbf1dc22aac7ef145b5df1831e3d.bindPopup(popup_37856fc9c3dc2dda4bb5bb3c392037b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a82212278617be88b730c4b23a36822a = L.circleMarker(\\n\",\n       \"                [38.01777778, 114.5330556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f4ae558c9098e1bec3071147ec20f522 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42a85acf499499de29dfc25cc7636698 = $(`&lt;div id=&quot;html_42a85acf499499de29dfc25cc7636698&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5330556             latitude:38.01777778             PM2_5:68.20833333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f4ae558c9098e1bec3071147ec20f522.setContent(html_42a85acf499499de29dfc25cc7636698);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a82212278617be88b730c4b23a36822a.bindPopup(popup_f4ae558c9098e1bec3071147ec20f522)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05b1e2ae8b044ad8f1f9483344e3db41 = L.circleMarker(\\n\",\n       \"                [33.9461, 116.7844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec5587700a6bdc8a4fd50735c580cf96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e49211a9462bd79a49b51d478ab7d5b8 = $(`&lt;div id=&quot;html_e49211a9462bd79a49b51d478ab7d5b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7844             latitude:33.9461             PM2_5:55.20448179             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec5587700a6bdc8a4fd50735c580cf96.setContent(html_e49211a9462bd79a49b51d478ab7d5b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05b1e2ae8b044ad8f1f9483344e3db41.bindPopup(popup_ec5587700a6bdc8a4fd50735c580cf96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64a92c87f2d85e709227c18af4a36ca6 = L.circleMarker(\\n\",\n       \"                [26.5017, 101.7453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf8aab637f8c8dba08be9b22a0140855 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e944c363fb7323bc7c3a91b848698ae6 = $(`&lt;div id=&quot;html_e944c363fb7323bc7c3a91b848698ae6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7453             latitude:26.5017             PM2_5:31.86768802             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf8aab637f8c8dba08be9b22a0140855.setContent(html_e944c363fb7323bc7c3a91b848698ae6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64a92c87f2d85e709227c18af4a36ca6.bindPopup(popup_cf8aab637f8c8dba08be9b22a0140855)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46441631a76efc47676c5ff51be06291 = L.circleMarker(\\n\",\n       \"                [37.7394, 112.5583],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3302291a0ed7075abc434584f546c279 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6aae2e3450975f5bc83f20af1eb5395b = $(`&lt;div id=&quot;html_6aae2e3450975f5bc83f20af1eb5395b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5583             latitude:37.7394             PM2_5:58.13936782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3302291a0ed7075abc434584f546c279.setContent(html_6aae2e3450975f5bc83f20af1eb5395b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46441631a76efc47676c5ff51be06291.bindPopup(popup_3302291a0ed7075abc434584f546c279)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a10851388bb66b6813238896ddb8feb = L.circleMarker(\\n\",\n       \"                [36.6868, 117.0684],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76968df5b440e594d6235d2c2ffba79f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9519b7be465f26d5296b8e25ee919481 = $(`&lt;div id=&quot;html_9519b7be465f26d5296b8e25ee919481&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0684             latitude:36.6868             PM2_5:56.59705882             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76968df5b440e594d6235d2c2ffba79f.setContent(html_9519b7be465f26d5296b8e25ee919481);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a10851388bb66b6813238896ddb8feb.bindPopup(popup_76968df5b440e594d6235d2c2ffba79f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e46b9ca2d7614b950e687273f30511e4 = L.circleMarker(\\n\",\n       \"                [47.3636, 123.9305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87f7dc242af64b0458a7176c1c068845 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9cf1bd47928c6b43a89657fcd2dfca1 = $(`&lt;div id=&quot;html_b9cf1bd47928c6b43a89657fcd2dfca1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9305             latitude:47.3636             PM2_5:28.63649025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87f7dc242af64b0458a7176c1c068845.setContent(html_b9cf1bd47928c6b43a89657fcd2dfca1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e46b9ca2d7614b950e687273f30511e4.bindPopup(popup_87f7dc242af64b0458a7176c1c068845)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4a4d048e06e475df72ac01bd03dd5d4 = L.circleMarker(\\n\",\n       \"                [31.8572, 117.25],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8c54eb2ce6c3844b026a0830952699f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a29f71335eab0470a5be4981772b9c3 = $(`&lt;div id=&quot;html_6a29f71335eab0470a5be4981772b9c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.25             latitude:31.8572             PM2_5:49.77871148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8c54eb2ce6c3844b026a0830952699f.setContent(html_6a29f71335eab0470a5be4981772b9c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4a4d048e06e475df72ac01bd03dd5d4.bindPopup(popup_a8c54eb2ce6c3844b026a0830952699f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_756ca0906fe51bc218dae2b50ab4341d = L.circleMarker(\\n\",\n       \"                [25.1081, 99.1678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_232cab0ccf2b1fdcf03a7f0827eecf8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df7de205e78119b4f590b41816d15891 = $(`&lt;div id=&quot;html_df7de205e78119b4f590b41816d15891&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.1678             latitude:25.1081             PM2_5:27.45338983             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_232cab0ccf2b1fdcf03a7f0827eecf8a.setContent(html_df7de205e78119b4f590b41816d15891);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_756ca0906fe51bc218dae2b50ab4341d.bindPopup(popup_232cab0ccf2b1fdcf03a7f0827eecf8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f24a729a6b2f6420824875bd666dff0f = L.circleMarker(\\n\",\n       \"                [40.8062, 111.7277],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b38ed9fa68d596e77a7c559171481b1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0dca1b51a745e16886cae17113e0acc5 = $(`&lt;div id=&quot;html_0dca1b51a745e16886cae17113e0acc5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7277             latitude:40.8062             PM2_5:31.32590529             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b38ed9fa68d596e77a7c559171481b1b.setContent(html_0dca1b51a745e16886cae17113e0acc5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f24a729a6b2f6420824875bd666dff0f.bindPopup(popup_b38ed9fa68d596e77a7c559171481b1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8a74b74898dba3ada57dc2dfd3bbb96d = L.circleMarker(\\n\",\n       \"                [37.8694, 113.5689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d052442c7c9ecf7a67bd550a4f40b28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7f020e66fcc2683af04684c10f65772 = $(`&lt;div id=&quot;html_c7f020e66fcc2683af04684c10f65772&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5689             latitude:37.8694             PM2_5:54.83193277             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d052442c7c9ecf7a67bd550a4f40b28.setContent(html_c7f020e66fcc2683af04684c10f65772);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8a74b74898dba3ada57dc2dfd3bbb96d.bindPopup(popup_1d052442c7c9ecf7a67bd550a4f40b28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_909aed77dee70557d568d6f45a83997d = L.circleMarker(\\n\",\n       \"                [27.2272, 111.4328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9b2385ed7a0aa7eaefd2913e4655b15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_715311c95c19e8e1f6e9d7463a990323 = $(`&lt;div id=&quot;html_715311c95c19e8e1f6e9d7463a990323&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4328             latitude:27.2272             PM2_5:46.85070423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9b2385ed7a0aa7eaefd2913e4655b15.setContent(html_715311c95c19e8e1f6e9d7463a990323);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_909aed77dee70557d568d6f45a83997d.bindPopup(popup_f9b2385ed7a0aa7eaefd2913e4655b15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f1cf4b42249a62a40851691853a3379 = L.circleMarker(\\n\",\n       \"                [34.7781, 114.3389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_302545bb7434ca77871d2a48b8e15a61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5b7162393ec55882cd615bd60d119c9 = $(`&lt;div id=&quot;html_b5b7162393ec55882cd615bd60d119c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3389             latitude:34.7781             PM2_5:58.12853107             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_302545bb7434ca77871d2a48b8e15a61.setContent(html_b5b7162393ec55882cd615bd60d119c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f1cf4b42249a62a40851691853a3379.bindPopup(popup_302545bb7434ca77871d2a48b8e15a61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14f432ef3dcf62e7ab17b4e7c5817186 = L.circleMarker(\\n\",\n       \"                [47.3227, 123.9483],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1845f43776dfb81b57dd0fd4e49a3305 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d18cc36536497136c348016591ec9f77 = $(`&lt;div id=&quot;html_d18cc36536497136c348016591ec9f77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9483             latitude:47.3227             PM2_5:29.87815126             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1845f43776dfb81b57dd0fd4e49a3305.setContent(html_d18cc36536497136c348016591ec9f77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14f432ef3dcf62e7ab17b4e7c5817186.bindPopup(popup_1845f43776dfb81b57dd0fd4e49a3305)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b93ed24b3d2aee1d61053752e9a621ec = L.circleMarker(\\n\",\n       \"                [28.3169, 109.7325],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d07b3b698389b289b8b7e8f56f37d214 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f281745847d9cf24d38304f45cd3883 = $(`&lt;div id=&quot;html_2f281745847d9cf24d38304f45cd3883&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7325             latitude:28.3169             PM2_5:40.78011204             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d07b3b698389b289b8b7e8f56f37d214.setContent(html_2f281745847d9cf24d38304f45cd3883);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b93ed24b3d2aee1d61053752e9a621ec.bindPopup(popup_d07b3b698389b289b8b7e8f56f37d214)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8dc867f3190de4fee9c19b57cdae2a33 = L.circleMarker(\\n\",\n       \"                [31.7586, 119.996],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1547b11b1100207d842cf78209a75b39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6cc2d8db065d2657d888611ba99cb755 = $(`&lt;div id=&quot;html_6cc2d8db065d2657d888611ba99cb755&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.996             latitude:31.7586             PM2_5:46.04481793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1547b11b1100207d842cf78209a75b39.setContent(html_6cc2d8db065d2657d888611ba99cb755);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8dc867f3190de4fee9c19b57cdae2a33.bindPopup(popup_1547b11b1100207d842cf78209a75b39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec3ffdcc1bc0cc96e5122bf62821f4cc = L.circleMarker(\\n\",\n       \"                [29.6475, 91.0874],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f43bed0e23418370c937afa6c0c83f3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d70bd5af278a3b00c8f2c0470e11ef3 = $(`&lt;div id=&quot;html_6d70bd5af278a3b00c8f2c0470e11ef3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.0874             latitude:29.6475             PM2_5:10.2880117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f43bed0e23418370c937afa6c0c83f3d.setContent(html_6d70bd5af278a3b00c8f2c0470e11ef3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec3ffdcc1bc0cc96e5122bf62821f4cc.bindPopup(popup_f43bed0e23418370c937afa6c0c83f3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9cde8887c7dccd187c5d7ae7a97b9be2 = L.circleMarker(\\n\",\n       \"                [28.1178, 112.9844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5daa3658dca13c0f1fd4474d9cf3699d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46755abeb1faefe47429375b97ccf314 = $(`&lt;div id=&quot;html_46755abeb1faefe47429375b97ccf314&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9844             latitude:28.1178             PM2_5:41.61516854             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5daa3658dca13c0f1fd4474d9cf3699d.setContent(html_46755abeb1faefe47429375b97ccf314);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9cde8887c7dccd187c5d7ae7a97b9be2.bindPopup(popup_5daa3658dca13c0f1fd4474d9cf3699d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee8258355951794438f3d8fce3137d04 = L.circleMarker(\\n\",\n       \"                [36.10139, 111.505],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f79252cb9a155503c1aac30039fd126 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1478833214ec46bc86e69563bc6a69a6 = $(`&lt;div id=&quot;html_1478833214ec46bc86e69563bc6a69a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.505             latitude:36.10139             PM2_5:74.34078212             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f79252cb9a155503c1aac30039fd126.setContent(html_1478833214ec46bc86e69563bc6a69a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee8258355951794438f3d8fce3137d04.bindPopup(popup_1f79252cb9a155503c1aac30039fd126)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6caa9a09b258a387367449f102af8b1f = L.circleMarker(\\n\",\n       \"                [35.5975, 104.6169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09984c02efff2294f04c6f0b80ecd734 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38e723a40159071deb62b0de873a082b = $(`&lt;div id=&quot;html_38e723a40159071deb62b0de873a082b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6169             latitude:35.5975             PM2_5:29.16155989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09984c02efff2294f04c6f0b80ecd734.setContent(html_38e723a40159071deb62b0de873a082b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6caa9a09b258a387367449f102af8b1f.bindPopup(popup_09984c02efff2294f04c6f0b80ecd734)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e8794455e0bb6b733411c3977e3c951 = L.circleMarker(\\n\",\n       \"                [34.7975, 114.3733],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f293a3a6f3479f79404f921ebcf9edcf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac9e79a3cec2b09f43b4b7615590771d = $(`&lt;div id=&quot;html_ac9e79a3cec2b09f43b4b7615590771d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3733             latitude:34.7975             PM2_5:57.65870787             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f293a3a6f3479f79404f921ebcf9edcf.setContent(html_ac9e79a3cec2b09f43b4b7615590771d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e8794455e0bb6b733411c3977e3c951.bindPopup(popup_f293a3a6f3479f79404f921ebcf9edcf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ab8741cbca28b324570efc23a8ae201 = L.circleMarker(\\n\",\n       \"                [36.2092, 117.7181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afc8699dad591b08513b856d7108c2ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_093f27704ebfe76eecc1a4c8f020ccd9 = $(`&lt;div id=&quot;html_093f27704ebfe76eecc1a4c8f020ccd9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7181             latitude:36.2092             PM2_5:56.48314607             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afc8699dad591b08513b856d7108c2ca.setContent(html_093f27704ebfe76eecc1a4c8f020ccd9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ab8741cbca28b324570efc23a8ae201.bindPopup(popup_afc8699dad591b08513b856d7108c2ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37d7d9c2c30ed078ca8fb73d54f3d811 = L.circleMarker(\\n\",\n       \"                [22.7633, 100.98],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4b19023c9b02e88f4bb276bf91b3ca1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15a6f47620b0cca33a3ba5e2fd6fb2fe = $(`&lt;div id=&quot;html_15a6f47620b0cca33a3ba5e2fd6fb2fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.98             latitude:22.7633             PM2_5:18.6408046             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4b19023c9b02e88f4bb276bf91b3ca1.setContent(html_15a6f47620b0cca33a3ba5e2fd6fb2fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37d7d9c2c30ed078ca8fb73d54f3d811.bindPopup(popup_a4b19023c9b02e88f4bb276bf91b3ca1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1e8fa46f481300a179bafd7af121f45 = L.circleMarker(\\n\",\n       \"                [24.81805556, 118.1569444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd2928c5af1cea6f56b06e94a5dbb9bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4728090ce68ebf34f64bdb805aab84c8 = $(`&lt;div id=&quot;html_4728090ce68ebf34f64bdb805aab84c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1569444             latitude:24.81805556             PM2_5:24.03812317             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd2928c5af1cea6f56b06e94a5dbb9bc.setContent(html_4728090ce68ebf34f64bdb805aab84c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1e8fa46f481300a179bafd7af121f45.bindPopup(popup_dd2928c5af1cea6f56b06e94a5dbb9bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60a3b0f02f8f69a3eab6c702c98af8db = L.circleMarker(\\n\",\n       \"                [29.8686, 114.3372],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1227627763e7eb353e2586be7ecd9f03 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1bffe5bf4e8861ec5a1caa4eb3826055 = $(`&lt;div id=&quot;html_1bffe5bf4e8861ec5a1caa4eb3826055&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3372             latitude:29.8686             PM2_5:44.10504202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1227627763e7eb353e2586be7ecd9f03.setContent(html_1bffe5bf4e8861ec5a1caa4eb3826055);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60a3b0f02f8f69a3eab6c702c98af8db.bindPopup(popup_1227627763e7eb353e2586be7ecd9f03)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b79fe8c567fa8de68325ca48391ae4f4 = L.circleMarker(\\n\",\n       \"                [31.7039, 119.935],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40d01182096e4a602708ae3491bcd329 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49f7e0f03d68e2b220d1d0f541037e80 = $(`&lt;div id=&quot;html_49f7e0f03d68e2b220d1d0f541037e80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.935             latitude:31.7039             PM2_5:43.56005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40d01182096e4a602708ae3491bcd329.setContent(html_49f7e0f03d68e2b220d1d0f541037e80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b79fe8c567fa8de68325ca48391ae4f4.bindPopup(popup_40d01182096e4a602708ae3491bcd329)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64c1232feb279d011ce2957d595888c7 = L.circleMarker(\\n\",\n       \"                [29.6816, 115.9872],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8b1189662fc9b2f581acb3cf1a31b8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e9bdbc08f8e8ab3097efdd9b3ad2fb5 = $(`&lt;div id=&quot;html_5e9bdbc08f8e8ab3097efdd9b3ad2fb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9872             latitude:29.6816             PM2_5:44.49293785             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8b1189662fc9b2f581acb3cf1a31b8e.setContent(html_5e9bdbc08f8e8ab3097efdd9b3ad2fb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64c1232feb279d011ce2957d595888c7.bindPopup(popup_a8b1189662fc9b2f581acb3cf1a31b8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07b4f880d1a71dfff4384bb31fe9bbb8 = L.circleMarker(\\n\",\n       \"                [22.7267, 114.24],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a838c03eb7f30df73a1c324f89ba6734 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60cf1157d6e008527cccbf01f9a02e47 = $(`&lt;div id=&quot;html_60cf1157d6e008527cccbf01f9a02e47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.24             latitude:22.7267             PM2_5:26.57660167             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a838c03eb7f30df73a1c324f89ba6734.setContent(html_60cf1157d6e008527cccbf01f9a02e47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07b4f880d1a71dfff4384bb31fe9bbb8.bindPopup(popup_a838c03eb7f30df73a1c324f89ba6734)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5837a7aac0ac7489d92365c2ba33c7f0 = L.circleMarker(\\n\",\n       \"                [39.5343, 116.7464],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_731fdd96b91daa7f1e80048f5731e029 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_625b6d9139efb72295f88da28356e0cf = $(`&lt;div id=&quot;html_625b6d9139efb72295f88da28356e0cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7464             latitude:39.5343             PM2_5:46.71830986             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_731fdd96b91daa7f1e80048f5731e029.setContent(html_625b6d9139efb72295f88da28356e0cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5837a7aac0ac7489d92365c2ba33c7f0.bindPopup(popup_731fdd96b91daa7f1e80048f5731e029)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c250b16a1808da24c8b92be808942a17 = L.circleMarker(\\n\",\n       \"                [34.8019, 113.675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e88c05952a496e90faec6eb3b9444f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3adce2b4a3aa7baebc183f37bb2a9f93 = $(`&lt;div id=&quot;html_3adce2b4a3aa7baebc183f37bb2a9f93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.675             latitude:34.8019             PM2_5:66.82162921             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e88c05952a496e90faec6eb3b9444f9.setContent(html_3adce2b4a3aa7baebc183f37bb2a9f93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c250b16a1808da24c8b92be808942a17.bindPopup(popup_0e88c05952a496e90faec6eb3b9444f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f887fef8fffe0a32475b3c0d26ee2885 = L.circleMarker(\\n\",\n       \"                [29.4892, 106.468],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0502278a6b25fb358135b1a0ae0edc46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0cacc6b5361e2519697f1ad35cd082f6 = $(`&lt;div id=&quot;html_0cacc6b5361e2519697f1ad35cd082f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.468             latitude:29.4892             PM2_5:36.48189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0502278a6b25fb358135b1a0ae0edc46.setContent(html_0cacc6b5361e2519697f1ad35cd082f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f887fef8fffe0a32475b3c0d26ee2885.bindPopup(popup_0502278a6b25fb358135b1a0ae0edc46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb7fc21becd8aa64da60fecd30ef6b1d = L.circleMarker(\\n\",\n       \"                [40.1438, 116.72],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_610029eed54bd52100b9227bf5903f72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d83b9ea0075019987105076d582cf50 = $(`&lt;div id=&quot;html_2d83b9ea0075019987105076d582cf50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.72             latitude:40.1438             PM2_5:51.04366197             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_610029eed54bd52100b9227bf5903f72.setContent(html_2d83b9ea0075019987105076d582cf50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb7fc21becd8aa64da60fecd30ef6b1d.bindPopup(popup_610029eed54bd52100b9227bf5903f72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66017c1c2f13a0665789ad1302742f49 = L.circleMarker(\\n\",\n       \"                [29.6292, 91.0834],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a4893792fe5b8807440650f2e753c63 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd7d6c5789574944f6fb9a34aae5afc5 = $(`&lt;div id=&quot;html_cd7d6c5789574944f6fb9a34aae5afc5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.0834             latitude:29.6292             PM2_5:11.04373178             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a4893792fe5b8807440650f2e753c63.setContent(html_cd7d6c5789574944f6fb9a34aae5afc5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66017c1c2f13a0665789ad1302742f49.bindPopup(popup_3a4893792fe5b8807440650f2e753c63)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_568d897aa6a4863612e14ab167a8b2c0 = L.circleMarker(\\n\",\n       \"                [31.87888889, 106.7513889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36164996ee7100aa6fe19625ff6c2724 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72dea27ecfbe6653965372dde88160b4 = $(`&lt;div id=&quot;html_72dea27ecfbe6653965372dde88160b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7513889             latitude:31.87888889             PM2_5:31.05857143             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36164996ee7100aa6fe19625ff6c2724.setContent(html_72dea27ecfbe6653965372dde88160b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_568d897aa6a4863612e14ab167a8b2c0.bindPopup(popup_36164996ee7100aa6fe19625ff6c2724)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96d45da717ae3627997e3ed31ace722e = L.circleMarker(\\n\",\n       \"                [31.7712, 116.5661],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffdb9975368211fc29fa8febe465dfa9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e901635da917cf7231a6d4d452bb2fd = $(`&lt;div id=&quot;html_8e901635da917cf7231a6d4d452bb2fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5661             latitude:31.7712             PM2_5:47.88194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffdb9975368211fc29fa8febe465dfa9.setContent(html_8e901635da917cf7231a6d4d452bb2fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96d45da717ae3627997e3ed31ace722e.bindPopup(popup_ffdb9975368211fc29fa8febe465dfa9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d95aceecd8ae29082243b3f5dec2f962 = L.circleMarker(\\n\",\n       \"                [27.6486, 106.8906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51aec507b96d1da213b5a319456ef15e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fe23ff4e22fb7c4eb8539d0efe35a9a = $(`&lt;div id=&quot;html_7fe23ff4e22fb7c4eb8539d0efe35a9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8906             latitude:27.6486             PM2_5:24.83472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51aec507b96d1da213b5a319456ef15e.setContent(html_7fe23ff4e22fb7c4eb8539d0efe35a9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d95aceecd8ae29082243b3f5dec2f962.bindPopup(popup_51aec507b96d1da213b5a319456ef15e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94a8200aadb6d6d4c3dd5d3531d0c139 = L.circleMarker(\\n\",\n       \"                [40.6288, 109.8654],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6c760d993be5129f55360e0cc3940785 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6d26816a01e23bdd0369ee823024bf4 = $(`&lt;div id=&quot;html_a6d26816a01e23bdd0369ee823024bf4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8654             latitude:40.6288             PM2_5:45.84322034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6c760d993be5129f55360e0cc3940785.setContent(html_a6d26816a01e23bdd0369ee823024bf4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94a8200aadb6d6d4c3dd5d3531d0c139.bindPopup(popup_6c760d993be5129f55360e0cc3940785)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c4f93f55864ff3b14907910f6d336e8 = L.circleMarker(\\n\",\n       \"                [43.1594, 124.3711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_603b343d729edde552daffc894d83376 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82b1b62e9a2993853779308eb8b78c89 = $(`&lt;div id=&quot;html_82b1b62e9a2993853779308eb8b78c89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3711             latitude:43.1594             PM2_5:48.26264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_603b343d729edde552daffc894d83376.setContent(html_82b1b62e9a2993853779308eb8b78c89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c4f93f55864ff3b14907910f6d336e8.bindPopup(popup_603b343d729edde552daffc894d83376)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb9b0908e2db127a9c91394bf587b4bf = L.circleMarker(\\n\",\n       \"                [28.4586, 119.93],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_573b3c0089b1a4ab9f8f7aca62378ce0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_751fd0d4f64b9fd8ff8f23032a2ee26f = $(`&lt;div id=&quot;html_751fd0d4f64b9fd8ff8f23032a2ee26f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.93             latitude:28.4586             PM2_5:27.13091922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_573b3c0089b1a4ab9f8f7aca62378ce0.setContent(html_751fd0d4f64b9fd8ff8f23032a2ee26f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb9b0908e2db127a9c91394bf587b4bf.bindPopup(popup_573b3c0089b1a4ab9f8f7aca62378ce0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1745795ee12ef0e134543052e589af4 = L.circleMarker(\\n\",\n       \"                [25.9118, 114.9064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b54fe93b025d10033b0304f14a5198f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de3f4ae400fd6cad35b57ad17d31bd66 = $(`&lt;div id=&quot;html_de3f4ae400fd6cad35b57ad17d31bd66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9064             latitude:25.9118             PM2_5:42.14366197             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b54fe93b025d10033b0304f14a5198f8.setContent(html_de3f4ae400fd6cad35b57ad17d31bd66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1745795ee12ef0e134543052e589af4.bindPopup(popup_b54fe93b025d10033b0304f14a5198f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6802d4ada59f09a43aa137af38ab21a = L.circleMarker(\\n\",\n       \"                [34.3497, 107.2058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cee8c9d663a65ad87709605a5f6f0d52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_247ae8a3259e1a4bc0c5dc370221cf6e = $(`&lt;div id=&quot;html_247ae8a3259e1a4bc0c5dc370221cf6e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.2058             latitude:34.3497             PM2_5:49.42896936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cee8c9d663a65ad87709605a5f6f0d52.setContent(html_247ae8a3259e1a4bc0c5dc370221cf6e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6802d4ada59f09a43aa137af38ab21a.bindPopup(popup_cee8c9d663a65ad87709605a5f6f0d52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03cbe6a4fa700bb88646aa79e342cde7 = L.circleMarker(\\n\",\n       \"                [34.2303, 108.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d32508f19c139459f9c29a51a8a54ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef35175e56830bfd5a7960cdfe26a706 = $(`&lt;div id=&quot;html_ef35175e56830bfd5a7960cdfe26a706&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.883             latitude:34.2303             PM2_5:67.22881356             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d32508f19c139459f9c29a51a8a54ac.setContent(html_ef35175e56830bfd5a7960cdfe26a706);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03cbe6a4fa700bb88646aa79e342cde7.bindPopup(popup_5d32508f19c139459f9c29a51a8a54ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3aa487e8584640e2a9aaddbc4d32bae = L.circleMarker(\\n\",\n       \"                [29.2313, 91.7608],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a13c3ce8352e955f601c3b4cc79756dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e42fcd9d46975fe5e51aab8d69f5f14d = $(`&lt;div id=&quot;html_e42fcd9d46975fe5e51aab8d69f5f14d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.7608             latitude:29.2313             PM2_5:8.361031519             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a13c3ce8352e955f601c3b4cc79756dc.setContent(html_e42fcd9d46975fe5e51aab8d69f5f14d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3aa487e8584640e2a9aaddbc4d32bae.bindPopup(popup_a13c3ce8352e955f601c3b4cc79756dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12ef5cebf0411e786598f6ea0947ecc3 = L.circleMarker(\\n\",\n       \"                [36.6489, 116.943],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_89f8da9b22cd179a63352d6317d17a46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4682e6d23c74080142b24cbe5ac79a4d = $(`&lt;div id=&quot;html_4682e6d23c74080142b24cbe5ac79a4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.943             latitude:36.6489             PM2_5:62.66091954             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_89f8da9b22cd179a63352d6317d17a46.setContent(html_4682e6d23c74080142b24cbe5ac79a4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12ef5cebf0411e786598f6ea0947ecc3.bindPopup(popup_89f8da9b22cd179a63352d6317d17a46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_444aada9d7937b04dc8a2756fb974d9b = L.circleMarker(\\n\",\n       \"                [29.2956, 117.2461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2110369c37a8bec9339a84d7644fe54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_710b8f10e4e4e195745bea094ab8b4b0 = $(`&lt;div id=&quot;html_710b8f10e4e4e195745bea094ab8b4b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2461             latitude:29.2956             PM2_5:34.24792244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2110369c37a8bec9339a84d7644fe54.setContent(html_710b8f10e4e4e195745bea094ab8b4b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_444aada9d7937b04dc8a2756fb974d9b.bindPopup(popup_b2110369c37a8bec9339a84d7644fe54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_349f0899acf7b9fda81a5895628bb50e = L.circleMarker(\\n\",\n       \"                [31.4867, 120.269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e4599ffaa4f53100ef1d47421c688ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b21e6d74b6ebba81774cbe4f2d326ff = $(`&lt;div id=&quot;html_0b21e6d74b6ebba81774cbe4f2d326ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.269             latitude:31.4867             PM2_5:39.27620397             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e4599ffaa4f53100ef1d47421c688ab.setContent(html_0b21e6d74b6ebba81774cbe4f2d326ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_349f0899acf7b9fda81a5895628bb50e.bindPopup(popup_7e4599ffaa4f53100ef1d47421c688ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4fb4fa982e5e164b37f08d67feb3e1b3 = L.circleMarker(\\n\",\n       \"                [28.4514, 119.914],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9f5c64d7701f6bd59ad85c31b094ebf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73d8346f7a90fde1228fb7a2dbe98055 = $(`&lt;div id=&quot;html_73d8346f7a90fde1228fb7a2dbe98055&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.914             latitude:28.4514             PM2_5:28.95391061             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9f5c64d7701f6bd59ad85c31b094ebf.setContent(html_73d8346f7a90fde1228fb7a2dbe98055);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4fb4fa982e5e164b37f08d67feb3e1b3.bindPopup(popup_b9f5c64d7701f6bd59ad85c31b094ebf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48388943f6b8e0b4dfdb72643b3af392 = L.circleMarker(\\n\",\n       \"                [37.4014, 121.5992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37ba1c7e7ba3a1ef86a5c9dec9e50553 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80635290c73545ff2bd6218cccd9558a = $(`&lt;div id=&quot;html_80635290c73545ff2bd6218cccd9558a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5992             latitude:37.4014             PM2_5:26.3627451             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37ba1c7e7ba3a1ef86a5c9dec9e50553.setContent(html_80635290c73545ff2bd6218cccd9558a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48388943f6b8e0b4dfdb72643b3af392.bindPopup(popup_37ba1c7e7ba3a1ef86a5c9dec9e50553)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ec1f92b88e7f8af0bdeaf3ec1bae99d = L.circleMarker(\\n\",\n       \"                [29.709, 106.452],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fca2a66228308f5a6041c6cf81f7bc67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2744fab042bdca477e8b823878e3fb37 = $(`&lt;div id=&quot;html_2744fab042bdca477e8b823878e3fb37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.452             latitude:29.709             PM2_5:32.58450704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fca2a66228308f5a6041c6cf81f7bc67.setContent(html_2744fab042bdca477e8b823878e3fb37);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ec1f92b88e7f8af0bdeaf3ec1bae99d.bindPopup(popup_fca2a66228308f5a6041c6cf81f7bc67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e596f1d5230b2175c6fa5d37a08d13a = L.circleMarker(\\n\",\n       \"                [43.8711, 87.5525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ecb49c1489c50a7633c7ffe1c6ce3b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4be19928bbc65a0847b11570577e6158 = $(`&lt;div id=&quot;html_4be19928bbc65a0847b11570577e6158&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5525             latitude:43.8711             PM2_5:61.29261364             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ecb49c1489c50a7633c7ffe1c6ce3b2.setContent(html_4be19928bbc65a0847b11570577e6158);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e596f1d5230b2175c6fa5d37a08d13a.bindPopup(popup_4ecb49c1489c50a7633c7ffe1c6ce3b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79fc07070d7cd293a7c2e842bbaca9ac = L.circleMarker(\\n\",\n       \"                [43.6267, 122.2603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73d8aa7a0f4b6b215f853693ecab1788 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1f14cfbca0856f341c783814117a018 = $(`&lt;div id=&quot;html_e1f14cfbca0856f341c783814117a018&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2603             latitude:43.6267             PM2_5:21.67696629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73d8aa7a0f4b6b215f853693ecab1788.setContent(html_e1f14cfbca0856f341c783814117a018);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79fc07070d7cd293a7c2e842bbaca9ac.bindPopup(popup_73d8aa7a0f4b6b215f853693ecab1788)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05dfd4b398572d47a9b19ff8fb8fcf25 = L.circleMarker(\\n\",\n       \"                [22.75, 114.085],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43d6166cb8703d84f7577e30c4e3e729 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_209dd4af377d02e8dfe42684d0a4b9a1 = $(`&lt;div id=&quot;html_209dd4af377d02e8dfe42684d0a4b9a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.085             latitude:22.75             PM2_5:34.49715909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43d6166cb8703d84f7577e30c4e3e729.setContent(html_209dd4af377d02e8dfe42684d0a4b9a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05dfd4b398572d47a9b19ff8fb8fcf25.bindPopup(popup_43d6166cb8703d84f7577e30c4e3e729)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_298d748c0909309de715a310988b3bee = L.circleMarker(\\n\",\n       \"                [34.429, 115.6558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79b19bc3df218bc806d1b46a9c87a84b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8079ae09c0ab908f82c89943b89ed60d = $(`&lt;div id=&quot;html_8079ae09c0ab908f82c89943b89ed60d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6558             latitude:34.429             PM2_5:55.75             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79b19bc3df218bc806d1b46a9c87a84b.setContent(html_8079ae09c0ab908f82c89943b89ed60d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_298d748c0909309de715a310988b3bee.bindPopup(popup_79b19bc3df218bc806d1b46a9c87a84b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d083995b66189cbdd3b87f4319f21ad0 = L.circleMarker(\\n\",\n       \"                [44.5782, 129.6115],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7cf2a130aab310bcfff502142b5c7376 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61a86dcde8f1e1ba1dddfd2c0bc7d63b = $(`&lt;div id=&quot;html_61a86dcde8f1e1ba1dddfd2c0bc7d63b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6115             latitude:44.5782             PM2_5:22.02089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7cf2a130aab310bcfff502142b5c7376.setContent(html_61a86dcde8f1e1ba1dddfd2c0bc7d63b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d083995b66189cbdd3b87f4319f21ad0.bindPopup(popup_7cf2a130aab310bcfff502142b5c7376)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f8763d5fa6ff373f9785ddab8cd1a45 = L.circleMarker(\\n\",\n       \"                [39.9716, 116.473],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f56f5b456d9049b984c6b876b92e0bdb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a18f0619b89325cfd84e151675f9e5f6 = $(`&lt;div id=&quot;html_a18f0619b89325cfd84e151675f9e5f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.473             latitude:39.9716             PM2_5:53.18907563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f56f5b456d9049b984c6b876b92e0bdb.setContent(html_a18f0619b89325cfd84e151675f9e5f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f8763d5fa6ff373f9785ddab8cd1a45.bindPopup(popup_f56f5b456d9049b984c6b876b92e0bdb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d4478a5dd8ece323424d2da35b6c9796 = L.circleMarker(\\n\",\n       \"                [38.8416, 115.4612],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db7080631218b8ce26eaf8c22fbece49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0436a199980322440058852d2c4e0b0 = $(`&lt;div id=&quot;html_f0436a199980322440058852d2c4e0b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.4612             latitude:38.8416             PM2_5:57.22093023             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db7080631218b8ce26eaf8c22fbece49.setContent(html_f0436a199980322440058852d2c4e0b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d4478a5dd8ece323424d2da35b6c9796.bindPopup(popup_db7080631218b8ce26eaf8c22fbece49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07e4e2e15ebe63569b6142123a4c9986 = L.circleMarker(\\n\",\n       \"                [23.4792, 111.2897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9548b4e74739804a547689f5aad71f06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1526058db22e457dac620e5ff368e4a7 = $(`&lt;div id=&quot;html_1526058db22e457dac620e5ff368e4a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2897             latitude:23.4792             PM2_5:35.94598338             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9548b4e74739804a547689f5aad71f06.setContent(html_1526058db22e457dac620e5ff368e4a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07e4e2e15ebe63569b6142123a4c9986.bindPopup(popup_9548b4e74739804a547689f5aad71f06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e202d7c63ba5333fd3847dd16fe17375 = L.circleMarker(\\n\",\n       \"                [30.6414, 114.2131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d64f14bb96208ff5e46079725ccbca99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70c5860fd1642328442822a1ad4d3d0e = $(`&lt;div id=&quot;html_70c5860fd1642328442822a1ad4d3d0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2131             latitude:30.6414             PM2_5:48.2254902             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d64f14bb96208ff5e46079725ccbca99.setContent(html_70c5860fd1642328442822a1ad4d3d0e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e202d7c63ba5333fd3847dd16fe17375.bindPopup(popup_d64f14bb96208ff5e46079725ccbca99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c631a4749cfb2c3f4605759b95a49bf0 = L.circleMarker(\\n\",\n       \"                [37.1013, 79.9117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82f3b9ee1401d6995ad21cfed4fe79b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c672d48d880d61207f3c8e0f7d780932 = $(`&lt;div id=&quot;html_c672d48d880d61207f3c8e0f7d780932&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:79.9117             latitude:37.1013             PM2_5:131.0946328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82f3b9ee1401d6995ad21cfed4fe79b1.setContent(html_c672d48d880d61207f3c8e0f7d780932);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c631a4749cfb2c3f4605759b95a49bf0.bindPopup(popup_82f3b9ee1401d6995ad21cfed4fe79b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25c9a60423ab04925389a7547919a361 = L.circleMarker(\\n\",\n       \"                [28.76389, 104.6417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d951103d46cd3cb6654e1bda34710568 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8aeb5b023f830322beba2d458ebaec7 = $(`&lt;div id=&quot;html_d8aeb5b023f830322beba2d458ebaec7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6417             latitude:28.76389             PM2_5:46.44150418             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d951103d46cd3cb6654e1bda34710568.setContent(html_d8aeb5b023f830322beba2d458ebaec7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25c9a60423ab04925389a7547919a361.bindPopup(popup_d951103d46cd3cb6654e1bda34710568)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87ad7f1c70650087d5387716f8a1bce7 = L.circleMarker(\\n\",\n       \"                [35.0622, 118.2939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9626315ea8b23ac8ca07289d183f22d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26fbfd08f5ef9d7a1336278aebc3c0be = $(`&lt;div id=&quot;html_26fbfd08f5ef9d7a1336278aebc3c0be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2939             latitude:35.0622             PM2_5:41.16340782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9626315ea8b23ac8ca07289d183f22d3.setContent(html_26fbfd08f5ef9d7a1336278aebc3c0be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87ad7f1c70650087d5387716f8a1bce7.bindPopup(popup_9626315ea8b23ac8ca07289d183f22d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb3ef3019ab87ae084c9f288c6085415 = L.circleMarker(\\n\",\n       \"                [46.7432, 82.9994],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef2642f282220ebe8e742cc371cc1f9b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_494fec544e2795552156ce7e16113960 = $(`&lt;div id=&quot;html_494fec544e2795552156ce7e16113960&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.9994             latitude:46.7432             PM2_5:18.03333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef2642f282220ebe8e742cc371cc1f9b.setContent(html_494fec544e2795552156ce7e16113960);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb3ef3019ab87ae084c9f288c6085415.bindPopup(popup_ef2642f282220ebe8e742cc371cc1f9b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10c71249a4c96b2ab671b2b9cebe77ee = L.circleMarker(\\n\",\n       \"                [33.6406, 114.6369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_851945bfe33c2462249126a5efb33a20 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_81d52d337bed9bfa8d75d13daf8a3e36 = $(`&lt;div id=&quot;html_81d52d337bed9bfa8d75d13daf8a3e36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6369             latitude:33.6406             PM2_5:53.37290503             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_851945bfe33c2462249126a5efb33a20.setContent(html_81d52d337bed9bfa8d75d13daf8a3e36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10c71249a4c96b2ab671b2b9cebe77ee.bindPopup(popup_851945bfe33c2462249126a5efb33a20)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_638b1f18d34017f83abb2e7c9fe5098e = L.circleMarker(\\n\",\n       \"                [36.44, 120.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dcde88382e1394f9ce87af3c4a74b591 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef59916a6d7529c1caa94b8c5cce3cf6 = $(`&lt;div id=&quot;html_ef59916a6d7529c1caa94b8c5cce3cf6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.61             latitude:36.44             PM2_5:31.77478754             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dcde88382e1394f9ce87af3c4a74b591.setContent(html_ef59916a6d7529c1caa94b8c5cce3cf6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_638b1f18d34017f83abb2e7c9fe5098e.bindPopup(popup_dcde88382e1394f9ce87af3c4a74b591)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e69244f2fcc0da26a5c1825f37d7cfe2 = L.circleMarker(\\n\",\n       \"                [31.453, 121.115],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98dba828249b4715526b4d4b3f40100f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb13c98dc8e8e7e900d04329de650c8e = $(`&lt;div id=&quot;html_eb13c98dc8e8e7e900d04329de650c8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.115             latitude:31.453             PM2_5:37.25837989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98dba828249b4715526b4d4b3f40100f.setContent(html_eb13c98dc8e8e7e900d04329de650c8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e69244f2fcc0da26a5c1825f37d7cfe2.bindPopup(popup_98dba828249b4715526b4d4b3f40100f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab5e6ee06ba15e562228006bf12a5a5e = L.circleMarker(\\n\",\n       \"                [28.6839, 115.8886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce92decb950d6818af1f02256af4b5a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_edf980e43b96b247122ab18fbc2b147e = $(`&lt;div id=&quot;html_edf980e43b96b247122ab18fbc2b147e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8886             latitude:28.6839             PM2_5:31.19067797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce92decb950d6818af1f02256af4b5a0.setContent(html_edf980e43b96b247122ab18fbc2b147e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab5e6ee06ba15e562228006bf12a5a5e.bindPopup(popup_ce92decb950d6818af1f02256af4b5a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dfb473408c0644369df0ef0b9583ca4 = L.circleMarker(\\n\",\n       \"                [36.1939, 113.0972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e6730762412a4573ddf5230e0f92e72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe8cfc77096cd4b627df71abced60f35 = $(`&lt;div id=&quot;html_fe8cfc77096cd4b627df71abced60f35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0972             latitude:36.1939             PM2_5:67.90720222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e6730762412a4573ddf5230e0f92e72.setContent(html_fe8cfc77096cd4b627df71abced60f35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dfb473408c0644369df0ef0b9583ca4.bindPopup(popup_9e6730762412a4573ddf5230e0f92e72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d94ba38b7d565cc0b21c360693f8b5c3 = L.circleMarker(\\n\",\n       \"                [24.3289, 116.1278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_016c51cf7ee8ed42f5edfe440527d37e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e33e2c5291745ada0744d60ddf4ef259 = $(`&lt;div id=&quot;html_e33e2c5291745ada0744d60ddf4ef259&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1278             latitude:24.3289             PM2_5:23.67318436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_016c51cf7ee8ed42f5edfe440527d37e.setContent(html_e33e2c5291745ada0744d60ddf4ef259);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d94ba38b7d565cc0b21c360693f8b5c3.bindPopup(popup_016c51cf7ee8ed42f5edfe440527d37e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e006da50c972931135700b8eb307895 = L.circleMarker(\\n\",\n       \"                [29.4822, 106.364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55522f2e14bd289d7b0e92ef488b14a8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84dd5f1169e1db46e09720b30a1caabc = $(`&lt;div id=&quot;html_84dd5f1169e1db46e09720b30a1caabc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.364             latitude:29.4822             PM2_5:41.16714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55522f2e14bd289d7b0e92ef488b14a8.setContent(html_84dd5f1169e1db46e09720b30a1caabc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e006da50c972931135700b8eb307895.bindPopup(popup_55522f2e14bd289d7b0e92ef488b14a8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16b2e0027d6d7ae4df7ad03fb2d47eb5 = L.circleMarker(\\n\",\n       \"                [40.7094, 122.2703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_773af951f20252c68aec7dcb7f694c95 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5dde7edadadc54ed6f82f5d59b4b3d86 = $(`&lt;div id=&quot;html_5dde7edadadc54ed6f82f5d59b4b3d86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2703             latitude:40.7094             PM2_5:32.92200557             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_773af951f20252c68aec7dcb7f694c95.setContent(html_5dde7edadadc54ed6f82f5d59b4b3d86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16b2e0027d6d7ae4df7ad03fb2d47eb5.bindPopup(popup_773af951f20252c68aec7dcb7f694c95)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ab8e87f13d082e084bef1e8755a411b = L.circleMarker(\\n\",\n       \"                [30.6133, 105.68],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09f8fc287f48776a5a8049658cbc4ad2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d485be7210e5c4bfa9822d758fc49a5 = $(`&lt;div id=&quot;html_6d485be7210e5c4bfa9822d758fc49a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.68             latitude:30.6133             PM2_5:41.39944134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09f8fc287f48776a5a8049658cbc4ad2.setContent(html_6d485be7210e5c4bfa9822d758fc49a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ab8e87f13d082e084bef1e8755a411b.bindPopup(popup_09f8fc287f48776a5a8049658cbc4ad2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f6a88f846d00e93185215988cbfe5ce = L.circleMarker(\\n\",\n       \"                [23.1569, 113.281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_991d91c49d3688136a8a40a388c1f2bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dec984271c33c0095abd2a4cf364692c = $(`&lt;div id=&quot;html_dec984271c33c0095abd2a4cf364692c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.281             latitude:23.1569             PM2_5:35.75487465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_991d91c49d3688136a8a40a388c1f2bc.setContent(html_dec984271c33c0095abd2a4cf364692c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f6a88f846d00e93185215988cbfe5ce.bindPopup(popup_991d91c49d3688136a8a40a388c1f2bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b890584a43090dd741be418649fc03e = L.circleMarker(\\n\",\n       \"                [32.0005, 120.86],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9646fb115d058b3930cadc131d593097 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a51ab21f75117f622204a4f232f69c84 = $(`&lt;div id=&quot;html_a51ab21f75117f622204a4f232f69c84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.86             latitude:32.0005             PM2_5:37.98735955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9646fb115d058b3930cadc131d593097.setContent(html_a51ab21f75117f622204a4f232f69c84);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b890584a43090dd741be418649fc03e.bindPopup(popup_9646fb115d058b3930cadc131d593097)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_554070540edfa5154fe42e0d503a1df5 = L.circleMarker(\\n\",\n       \"                [38.0108, 112.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf76b5e2129cbbc4cc3c66ba15c3dd71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f4557c41389e1a137f66fe58ec1e118 = $(`&lt;div id=&quot;html_5f4557c41389e1a137f66fe58ec1e118&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.434             latitude:38.0108             PM2_5:50.17329545             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf76b5e2129cbbc4cc3c66ba15c3dd71.setContent(html_5f4557c41389e1a137f66fe58ec1e118);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_554070540edfa5154fe42e0d503a1df5.bindPopup(popup_bf76b5e2129cbbc4cc3c66ba15c3dd71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26858667b0ea5be678f6af916aea23a4 = L.circleMarker(\\n\",\n       \"                [29.1128, 119.6533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29fb99b138f6707111a359734f538f70 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b94f5bb17c3bdbcab4e7a57cf33f547 = $(`&lt;div id=&quot;html_7b94f5bb17c3bdbcab4e7a57cf33f547&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6533             latitude:29.1128             PM2_5:35.30779944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29fb99b138f6707111a359734f538f70.setContent(html_7b94f5bb17c3bdbcab4e7a57cf33f547);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26858667b0ea5be678f6af916aea23a4.bindPopup(popup_29fb99b138f6707111a359734f538f70)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0cde30d7782b77448aeb675ce4c250ec = L.circleMarker(\\n\",\n       \"                [27.4948, 114.0944],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6562673738c3edc85f984f8ccbe9e49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4dc0af734cc2d0c4a650b8911695efb6 = $(`&lt;div id=&quot;html_4dc0af734cc2d0c4a650b8911695efb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0944             latitude:27.4948             PM2_5:22.06590258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6562673738c3edc85f984f8ccbe9e49.setContent(html_4dc0af734cc2d0c4a650b8911695efb6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0cde30d7782b77448aeb675ce4c250ec.bindPopup(popup_c6562673738c3edc85f984f8ccbe9e49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_084dcecd4e248f4e6c120b896cf8615f = L.circleMarker(\\n\",\n       \"                [42.9559, 89.1673],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db25eb16448d2c70927a3b64e077bd3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c741c34bd028d710cf535b7bfc91563 = $(`&lt;div id=&quot;html_1c741c34bd028d710cf535b7bfc91563&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:89.1673             latitude:42.9559             PM2_5:68.71764706             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db25eb16448d2c70927a3b64e077bd3a.setContent(html_1c741c34bd028d710cf535b7bfc91563);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_084dcecd4e248f4e6c120b896cf8615f.bindPopup(popup_db25eb16448d2c70927a3b64e077bd3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9964b8cb9bfc105f95e66649f160e13f = L.circleMarker(\\n\",\n       \"                [40.1114, 113.2803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba63e4f4dff999577bd4c21fc7982540 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2db53db7d837cdbf0455fbaaef5f6da2 = $(`&lt;div id=&quot;html_2db53db7d837cdbf0455fbaaef5f6da2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2803             latitude:40.1114             PM2_5:39.94444444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba63e4f4dff999577bd4c21fc7982540.setContent(html_2db53db7d837cdbf0455fbaaef5f6da2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9964b8cb9bfc105f95e66649f160e13f.bindPopup(popup_ba63e4f4dff999577bd4c21fc7982540)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f31f64d3432e486df546df66e37669b9 = L.circleMarker(\\n\",\n       \"                [27.8867, 113.095],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49da9192b8269f49255aa524e02777f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_437286a93a0b1605c78601c47d85f4cc = $(`&lt;div id=&quot;html_437286a93a0b1605c78601c47d85f4cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.095             latitude:27.8867             PM2_5:42.7122905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49da9192b8269f49255aa524e02777f4.setContent(html_437286a93a0b1605c78601c47d85f4cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f31f64d3432e486df546df66e37669b9.bindPopup(popup_49da9192b8269f49255aa524e02777f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_396c7aac23947bfa0853daf0c5dff9d7 = L.circleMarker(\\n\",\n       \"                [38.9389, 100.4497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1866e2cd5678412dba188764b218a98f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e049cec72ee35399d9d967d1656d12db = $(`&lt;div id=&quot;html_e049cec72ee35399d9d967d1656d12db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.4497             latitude:38.9389             PM2_5:27.20277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1866e2cd5678412dba188764b218a98f.setContent(html_e049cec72ee35399d9d967d1656d12db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_396c7aac23947bfa0853daf0c5dff9d7.bindPopup(popup_1866e2cd5678412dba188764b218a98f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b08d7b134bc5d946305bbd9681f85d99 = L.circleMarker(\\n\",\n       \"                [26.8733, 112.6197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c6767bceb40e61203d38156b93df0e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95e5a1bbbc2555b30b8bc06e135e8cb6 = $(`&lt;div id=&quot;html_95e5a1bbbc2555b30b8bc06e135e8cb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6197             latitude:26.8733             PM2_5:47.85070423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c6767bceb40e61203d38156b93df0e5.setContent(html_95e5a1bbbc2555b30b8bc06e135e8cb6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b08d7b134bc5d946305bbd9681f85d99.bindPopup(popup_4c6767bceb40e61203d38156b93df0e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f86cb1f998bd94ec10c2da583ae21750 = L.circleMarker(\\n\",\n       \"                [44.3075, 86.0697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f9dd31e200430ed0906912d5762b8c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2c38e370002c6519b9ab62fc889038d = $(`&lt;div id=&quot;html_b2c38e370002c6519b9ab62fc889038d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.0697             latitude:44.3075             PM2_5:63.06545961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f9dd31e200430ed0906912d5762b8c9.setContent(html_b2c38e370002c6519b9ab62fc889038d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f86cb1f998bd94ec10c2da583ae21750.bindPopup(popup_8f9dd31e200430ed0906912d5762b8c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34de277873aa273c6754276ce07b6e39 = L.circleMarker(\\n\",\n       \"                [37.9311, 102.6219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c6f42e588cd2a0668e57b9eac6a799c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc775ea9ceadce53978e4819b9d9f6f2 = $(`&lt;div id=&quot;html_fc775ea9ceadce53978e4819b9d9f6f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6219             latitude:37.9311             PM2_5:36.92837079             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c6f42e588cd2a0668e57b9eac6a799c.setContent(html_fc775ea9ceadce53978e4819b9d9f6f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34de277873aa273c6754276ce07b6e39.bindPopup(popup_0c6f42e588cd2a0668e57b9eac6a799c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f8ac5fa5148aabc999faa078192122f = L.circleMarker(\\n\",\n       \"                [28.7994, 115.742],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98c0ff8adffac1e4a296230e2165a1dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12af28a35fa5c3457229235b26237d02 = $(`&lt;div id=&quot;html_12af28a35fa5c3457229235b26237d02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.742             latitude:28.7994             PM2_5:27.25360231             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98c0ff8adffac1e4a296230e2165a1dc.setContent(html_12af28a35fa5c3457229235b26237d02);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f8ac5fa5148aabc999faa078192122f.bindPopup(popup_98c0ff8adffac1e4a296230e2165a1dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0144b95fdcc706257e0660991b8106b6 = L.circleMarker(\\n\",\n       \"                [35.4894, 112.8664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e07c4d7f861a78e1196197475bd30f0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cee0241132f4a42126c9709e04c8cefa = $(`&lt;div id=&quot;html_cee0241132f4a42126c9709e04c8cefa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8664             latitude:35.4894             PM2_5:56.08169014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e07c4d7f861a78e1196197475bd30f0.setContent(html_cee0241132f4a42126c9709e04c8cefa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0144b95fdcc706257e0660991b8106b6.bindPopup(popup_8e07c4d7f861a78e1196197475bd30f0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85094120058c45f699a9631f0db73a74 = L.circleMarker(\\n\",\n       \"                [44.9079, 82.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20cb8133e9b165d702f5a35a232ba1e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7a9e1390bc17c3e83282a0f544ce394 = $(`&lt;div id=&quot;html_c7a9e1390bc17c3e83282a0f544ce394&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.0485             latitude:44.9079             PM2_5:20.61699164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20cb8133e9b165d702f5a35a232ba1e6.setContent(html_c7a9e1390bc17c3e83282a0f544ce394);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85094120058c45f699a9631f0db73a74.bindPopup(popup_20cb8133e9b165d702f5a35a232ba1e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc352bf8a14beab1a2176148def505ed = L.circleMarker(\\n\",\n       \"                [40.5546, 110.0377],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8d3e48420637b8537ad070b3ad06411 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd2279b189d92458460c1c8557616d77 = $(`&lt;div id=&quot;html_dd2279b189d92458460c1c8557616d77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0377             latitude:40.5546             PM2_5:42.96829971             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8d3e48420637b8537ad070b3ad06411.setContent(html_dd2279b189d92458460c1c8557616d77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc352bf8a14beab1a2176148def505ed.bindPopup(popup_f8d3e48420637b8537ad070b3ad06411)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5a8d2b4f241f4150f0b8560dc45ea90 = L.circleMarker(\\n\",\n       \"                [26.2708, 117.6353],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7f6a35db6d5b5d983aa760753dc05cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b574ab10639cde9df0a9c7a913f0ee5 = $(`&lt;div id=&quot;html_5b574ab10639cde9df0a9c7a913f0ee5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6353             latitude:26.2708             PM2_5:26.2752809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7f6a35db6d5b5d983aa760753dc05cd.setContent(html_5b574ab10639cde9df0a9c7a913f0ee5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5a8d2b4f241f4150f0b8560dc45ea90.bindPopup(popup_b7f6a35db6d5b5d983aa760753dc05cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a536f8e38b27dc5af3c58792ffd5dd8f = L.circleMarker(\\n\",\n       \"                [39.3606, 112.4549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e67bdb6371e9157b265e6f13950840b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c8e958fd51c833eabee5b9612dcc81b0 = $(`&lt;div id=&quot;html_c8e958fd51c833eabee5b9612dcc81b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4549             latitude:39.3606             PM2_5:36.20538244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e67bdb6371e9157b265e6f13950840b0.setContent(html_c8e958fd51c833eabee5b9612dcc81b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a536f8e38b27dc5af3c58792ffd5dd8f.bindPopup(popup_e67bdb6371e9157b265e6f13950840b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae6ab4a64809c190a77b610b4f78746f = L.circleMarker(\\n\",\n       \"                [23.0528, 112.471],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1452a933f905e65f53e385d500d007b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed8d6ad4afc03dfcb2a6d88e6c5b8929 = $(`&lt;div id=&quot;html_ed8d6ad4afc03dfcb2a6d88e6c5b8929&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.471             latitude:23.0528             PM2_5:38.88826816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1452a933f905e65f53e385d500d007b.setContent(html_ed8d6ad4afc03dfcb2a6d88e6c5b8929);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae6ab4a64809c190a77b610b4f78746f.bindPopup(popup_e1452a933f905e65f53e385d500d007b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86ae875a26f513b1218f756d94442314 = L.circleMarker(\\n\",\n       \"                [35.0896, 118.4023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_536eaa277a1bd83af6d1144c53b6393a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99147dc87b8541e9cf15fe9cdc5f23fc = $(`&lt;div id=&quot;html_99147dc87b8541e9cf15fe9cdc5f23fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4023             latitude:35.0896             PM2_5:47.18435754             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_536eaa277a1bd83af6d1144c53b6393a.setContent(html_99147dc87b8541e9cf15fe9cdc5f23fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86ae875a26f513b1218f756d94442314.bindPopup(popup_536eaa277a1bd83af6d1144c53b6393a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7cf62a7625a97d6e9a20581cc78f8ad = L.circleMarker(\\n\",\n       \"                [41.1219, 121.2008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24a9563e9adecb4cdb3d177bd5581349 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa370e7d5ff273a771f93ab6fd9b2e29 = $(`&lt;div id=&quot;html_aa370e7d5ff273a771f93ab6fd9b2e29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2008             latitude:41.1219             PM2_5:31.9719888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24a9563e9adecb4cdb3d177bd5581349.setContent(html_aa370e7d5ff273a771f93ab6fd9b2e29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7cf62a7625a97d6e9a20581cc78f8ad.bindPopup(popup_24a9563e9adecb4cdb3d177bd5581349)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b3d35c592ca4ddfcb389ad951e3c3d7 = L.circleMarker(\\n\",\n       \"                [31.2864, 120.628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d9d7989b8a7eed887931a3dfb374c76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02657459941e9ded0ff578ce028aa215 = $(`&lt;div id=&quot;html_02657459941e9ded0ff578ce028aa215&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.628             latitude:31.2864             PM2_5:41.43156425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d9d7989b8a7eed887931a3dfb374c76.setContent(html_02657459941e9ded0ff578ce028aa215);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b3d35c592ca4ddfcb389ad951e3c3d7.bindPopup(popup_0d9d7989b8a7eed887931a3dfb374c76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_142208607ad072763ae423a2ca738cd9 = L.circleMarker(\\n\",\n       \"                [27.0983, 115.0075],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b34d7ae4905948c68b031a839e25acca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eddba95d414601e795b5683f4c125e23 = $(`&lt;div id=&quot;html_eddba95d414601e795b5683f4c125e23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0075             latitude:27.0983             PM2_5:52.13370474             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b34d7ae4905948c68b031a839e25acca.setContent(html_eddba95d414601e795b5683f4c125e23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_142208607ad072763ae423a2ca738cd9.bindPopup(popup_b34d7ae4905948c68b031a839e25acca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_509099b6991a3e714551e696c98e6095 = L.circleMarker(\\n\",\n       \"                [40.0181, 119.7624],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e0175a7e02869bb053775f1f5d26e0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_862166acfa97e539c13246da40659286 = $(`&lt;div id=&quot;html_862166acfa97e539c13246da40659286&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7624             latitude:40.0181             PM2_5:27.50418994             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e0175a7e02869bb053775f1f5d26e0f.setContent(html_862166acfa97e539c13246da40659286);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_509099b6991a3e714551e696c98e6095.bindPopup(popup_2e0175a7e02869bb053775f1f5d26e0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c8d46950fd01427bf94f33bade6509a = L.circleMarker(\\n\",\n       \"                [21.2567, 110.4558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86e7b6ded200f29546245fc24eed81d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0b85d7a1a490ce77565405a30854bed = $(`&lt;div id=&quot;html_d0b85d7a1a490ce77565405a30854bed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4558             latitude:21.2567             PM2_5:25.92837079             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86e7b6ded200f29546245fc24eed81d7.setContent(html_d0b85d7a1a490ce77565405a30854bed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c8d46950fd01427bf94f33bade6509a.bindPopup(popup_86e7b6ded200f29546245fc24eed81d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f51498c38f31af596c464ce61d49822 = L.circleMarker(\\n\",\n       \"                [46.8267, 130.3961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58746279e754f95527d4219dd01f34ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8bebafaf42258433c9784a92382dff1 = $(`&lt;div id=&quot;html_e8bebafaf42258433c9784a92382dff1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3961             latitude:46.8267             PM2_5:31.34682081             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58746279e754f95527d4219dd01f34ce.setContent(html_e8bebafaf42258433c9784a92382dff1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f51498c38f31af596c464ce61d49822.bindPopup(popup_58746279e754f95527d4219dd01f34ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16c2791ab50c32b09a342e7b1fd41d09 = L.circleMarker(\\n\",\n       \"                [27.7914, 114.3703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2efc524ec3e253b7a0ceb58aa67462d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_88ae46ef1e06e6e3fe908de14ddf8814 = $(`&lt;div id=&quot;html_88ae46ef1e06e6e3fe908de14ddf8814&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3703             latitude:27.7914             PM2_5:50.81476323             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2efc524ec3e253b7a0ceb58aa67462d0.setContent(html_88ae46ef1e06e6e3fe908de14ddf8814);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16c2791ab50c32b09a342e7b1fd41d09.bindPopup(popup_2efc524ec3e253b7a0ceb58aa67462d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b935b8682f8d6771933e1067e73bc2a3 = L.circleMarker(\\n\",\n       \"                [46.0756, 121.9462],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b820b2e87af4840d44244326d32eb9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_34ace5dabd3deafefaeb2733db1e1891 = $(`&lt;div id=&quot;html_34ace5dabd3deafefaeb2733db1e1891&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.9462             latitude:46.0756             PM2_5:9.045961003             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b820b2e87af4840d44244326d32eb9e.setContent(html_34ace5dabd3deafefaeb2733db1e1891);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b935b8682f8d6771933e1067e73bc2a3.bindPopup(popup_8b820b2e87af4840d44244326d32eb9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_352345ce72d30d8e53bc9c951e50d380 = L.circleMarker(\\n\",\n       \"                [24.3694, 102.5778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_489f6ce3b328029b9d09effe43e65eed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_365c8b2f8bd44cf58dcf4feef6bc17c5 = $(`&lt;div id=&quot;html_365c8b2f8bd44cf58dcf4feef6bc17c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5778             latitude:24.3694             PM2_5:17.84818942             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_489f6ce3b328029b9d09effe43e65eed.setContent(html_365c8b2f8bd44cf58dcf4feef6bc17c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_352345ce72d30d8e53bc9c951e50d380.bindPopup(popup_489f6ce3b328029b9d09effe43e65eed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f845402cad4d4d3cfddc1a4a852929dc = L.circleMarker(\\n\",\n       \"                [23.1886, 112.863],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5dcdb9dbc28da922a6f93364ecc4f13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c90de52b29734fb06746ac1abd72915 = $(`&lt;div id=&quot;html_3c90de52b29734fb06746ac1abd72915&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.863             latitude:23.1886             PM2_5:38.29305556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5dcdb9dbc28da922a6f93364ecc4f13.setContent(html_3c90de52b29734fb06746ac1abd72915);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f845402cad4d4d3cfddc1a4a852929dc.bindPopup(popup_a5dcdb9dbc28da922a6f93364ecc4f13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5bb62813725dc6a62582413cb5ae82f = L.circleMarker(\\n\",\n       \"                [37.9723, 106.196],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0044f270358f33deead66fd595e14c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d418e8ff98a6fe9f4b09862debb65667 = $(`&lt;div id=&quot;html_d418e8ff98a6fe9f4b09862debb65667&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.196             latitude:37.9723             PM2_5:31.52752294             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0044f270358f33deead66fd595e14c0.setContent(html_d418e8ff98a6fe9f4b09862debb65667);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5bb62813725dc6a62582413cb5ae82f.bindPopup(popup_f0044f270358f33deead66fd595e14c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b779a1f240c96a5177bf0af6dab154d = L.circleMarker(\\n\",\n       \"                [30.9285, 113.9153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c04956a2eac45c498522d7296511e749 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2da6697880745409a32aeb65e72273b1 = $(`&lt;div id=&quot;html_2da6697880745409a32aeb65e72273b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.9153             latitude:30.9285             PM2_5:42.16432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c04956a2eac45c498522d7296511e749.setContent(html_2da6697880745409a32aeb65e72273b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b779a1f240c96a5177bf0af6dab154d.bindPopup(popup_c04956a2eac45c498522d7296511e749)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b72be88dea8b8f1a35588da88c37996e = L.circleMarker(\\n\",\n       \"                [36.61763, 114.5129],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5bd8e90478918666f5a745dda663603 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0dc57d5ea39edd6f3226c56e12dc90ff = $(`&lt;div id=&quot;html_0dc57d5ea39edd6f3226c56e12dc90ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5129             latitude:36.61763             PM2_5:72.55013928             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5bd8e90478918666f5a745dda663603.setContent(html_0dc57d5ea39edd6f3226c56e12dc90ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b72be88dea8b8f1a35588da88c37996e.bindPopup(popup_b5bd8e90478918666f5a745dda663603)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed1755807e64b12e2e15a4bf7b7710e8 = L.circleMarker(\\n\",\n       \"                [36.061, 114.483],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0998df28925030c4e24af7bff8dd3415 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df187d269a152979667bb404aa600df6 = $(`&lt;div id=&quot;html_df187d269a152979667bb404aa600df6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.483             latitude:36.061             PM2_5:60.56695157             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0998df28925030c4e24af7bff8dd3415.setContent(html_df187d269a152979667bb404aa600df6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed1755807e64b12e2e15a4bf7b7710e8.bindPopup(popup_0998df28925030c4e24af7bff8dd3415)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fcade0da7336fefb35a66e692f89a58 = L.circleMarker(\\n\",\n       \"                [27.3361, 103.7225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ed51f6a1f6994a0ac321b605574c6c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0802463aa16dda106ac3080c10fe741 = $(`&lt;div id=&quot;html_e0802463aa16dda106ac3080c10fe741&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7225             latitude:27.3361             PM2_5:22.50840336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ed51f6a1f6994a0ac321b605574c6c6.setContent(html_e0802463aa16dda106ac3080c10fe741);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fcade0da7336fefb35a66e692f89a58.bindPopup(popup_5ed51f6a1f6994a0ac321b605574c6c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6e47c924b048870792c3745bb82b796 = L.circleMarker(\\n\",\n       \"                [23.5486, 116.3242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f6c755924b0561ed8284da2580221d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5b5d781f9c4387ca939dce4a7a9fd40 = $(`&lt;div id=&quot;html_b5b5d781f9c4387ca939dce4a7a9fd40&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3242             latitude:23.5486             PM2_5:32.28             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f6c755924b0561ed8284da2580221d5.setContent(html_b5b5d781f9c4387ca939dce4a7a9fd40);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6e47c924b048870792c3745bb82b796.bindPopup(popup_4f6c755924b0561ed8284da2580221d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f015fb2e982504a459cc78819aeb4677 = L.circleMarker(\\n\",\n       \"                [26.585, 101.7169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21a2219fa3e3f5393c25242a62f06db1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1389af5d90facb7947263340f0e89bfe = $(`&lt;div id=&quot;html_1389af5d90facb7947263340f0e89bfe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7169             latitude:26.585             PM2_5:32.77222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21a2219fa3e3f5393c25242a62f06db1.setContent(html_1389af5d90facb7947263340f0e89bfe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f015fb2e982504a459cc78819aeb4677.bindPopup(popup_21a2219fa3e3f5393c25242a62f06db1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdbcca060c79c085c393d002f34a769b = L.circleMarker(\\n\",\n       \"                [28.2558, 109.6414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10d9b234200666895a729f8c8c166b4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac34018d1420e1c8c1116c5c5896bbfb = $(`&lt;div id=&quot;html_ac34018d1420e1c8c1116c5c5896bbfb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6414             latitude:28.2558             PM2_5:32.74358974             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10d9b234200666895a729f8c8c166b4b.setContent(html_ac34018d1420e1c8c1116c5c5896bbfb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdbcca060c79c085c393d002f34a769b.bindPopup(popup_10d9b234200666895a729f8c8c166b4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d82be06518edc68764d1497919f68507 = L.circleMarker(\\n\",\n       \"                [30.7478, 120.726],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b38c5abf9f8ea38af572f8758afc9da7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a8deff0adb81a99e01ad1345adb76a5c = $(`&lt;div id=&quot;html_a8deff0adb81a99e01ad1345adb76a5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.726             latitude:30.7478             PM2_5:43.09888579             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b38c5abf9f8ea38af572f8758afc9da7.setContent(html_a8deff0adb81a99e01ad1345adb76a5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d82be06518edc68764d1497919f68507.bindPopup(popup_b38c5abf9f8ea38af572f8758afc9da7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1424e7023c910f7844e804a5c318b7ca = L.circleMarker(\\n\",\n       \"                [39.2133, 117.1837],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e227f2dac27a0dd0973c35507bb6645a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5668090863cd0d8b1e2cd540a08cea2 = $(`&lt;div id=&quot;html_e5668090863cd0d8b1e2cd540a08cea2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1837             latitude:39.2133             PM2_5:50.36938202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e227f2dac27a0dd0973c35507bb6645a.setContent(html_e5668090863cd0d8b1e2cd540a08cea2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1424e7023c910f7844e804a5c318b7ca.bindPopup(popup_e227f2dac27a0dd0973c35507bb6645a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61e3448f4f29e95ffc59845d68a54dff = L.circleMarker(\\n\",\n       \"                [24.299, 109.4221],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0edfb98bd15899591e039529bff29369 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9923cb6a707c10f8184d4734db3ed478 = $(`&lt;div id=&quot;html_9923cb6a707c10f8184d4734db3ed478&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4221             latitude:24.299             PM2_5:37.98179272             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0edfb98bd15899591e039529bff29369.setContent(html_9923cb6a707c10f8184d4734db3ed478);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61e3448f4f29e95ffc59845d68a54dff.bindPopup(popup_0edfb98bd15899591e039529bff29369)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51497603daee76a16e7a838407df5ef9 = L.circleMarker(\\n\",\n       \"                [45.6175, 122.8211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1879ddffa668e4a23f863fca9f0a26a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92e1b829277636e5545ac218edef80fd = $(`&lt;div id=&quot;html_92e1b829277636e5545ac218edef80fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.8211             latitude:45.6175             PM2_5:18.97067039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1879ddffa668e4a23f863fca9f0a26a.setContent(html_92e1b829277636e5545ac218edef80fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51497603daee76a16e7a838407df5ef9.bindPopup(popup_c1879ddffa668e4a23f863fca9f0a26a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_35bab718698c878a6c56c2400eb54669 = L.circleMarker(\\n\",\n       \"                [41.8469, 123.81],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97ed261911ed4118d49bd3fac8ef8728 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_074feefa2921423e406a2b87549905c3 = $(`&lt;div id=&quot;html_074feefa2921423e406a2b87549905c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.81             latitude:41.8469             PM2_5:40.69088319             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97ed261911ed4118d49bd3fac8ef8728.setContent(html_074feefa2921423e406a2b87549905c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_35bab718698c878a6c56c2400eb54669.bindPopup(popup_97ed261911ed4118d49bd3fac8ef8728)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ba3540487999545461c1f6db702e3e8 = L.circleMarker(\\n\",\n       \"                [40.0758, 113.2994],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7556257d2b7d2ea7c896f2deff4c3607 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3dced200fbb575829ea7942a5f87262 = $(`&lt;div id=&quot;html_b3dced200fbb575829ea7942a5f87262&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2994             latitude:40.0758             PM2_5:36.50283286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7556257d2b7d2ea7c896f2deff4c3607.setContent(html_b3dced200fbb575829ea7942a5f87262);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ba3540487999545461c1f6db702e3e8.bindPopup(popup_7556257d2b7d2ea7c896f2deff4c3607)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e475b5f10434351d796506ee85376810 = L.circleMarker(\\n\",\n       \"                [40.0844, 113.2711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2761e671f7702a0a7e592cd5b089c7b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89a63b3f4dfb7dcdb828aab40bf198d3 = $(`&lt;div id=&quot;html_89a63b3f4dfb7dcdb828aab40bf198d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2711             latitude:40.0844             PM2_5:37.62215909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2761e671f7702a0a7e592cd5b089c7b2.setContent(html_89a63b3f4dfb7dcdb828aab40bf198d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e475b5f10434351d796506ee85376810.bindPopup(popup_2761e671f7702a0a7e592cd5b089c7b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_856a367d5241d828761bfd24a7c7fab0 = L.circleMarker(\\n\",\n       \"                [33.9528, 118.293],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c107edf638462c3b76940fe9174fbfce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b97aa76beff853c1f65cfe0b91e4b8e9 = $(`&lt;div id=&quot;html_b97aa76beff853c1f65cfe0b91e4b8e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.293             latitude:33.9528             PM2_5:55.33664773             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c107edf638462c3b76940fe9174fbfce.setContent(html_b97aa76beff853c1f65cfe0b91e4b8e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_856a367d5241d828761bfd24a7c7fab0.bindPopup(popup_c107edf638462c3b76940fe9174fbfce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b572ac0b78b5ffe43a8c7724a268f2ed = L.circleMarker(\\n\",\n       \"                [36.0756, 103.712],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b8367fc74a7eecc8fcec8387a5bfadd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9df7eadda34b838a1b3ee4706d0082b = $(`&lt;div id=&quot;html_a9df7eadda34b838a1b3ee4706d0082b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.712             latitude:36.0756             PM2_5:54.81601124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b8367fc74a7eecc8fcec8387a5bfadd.setContent(html_a9df7eadda34b838a1b3ee4706d0082b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b572ac0b78b5ffe43a8c7724a268f2ed.bindPopup(popup_0b8367fc74a7eecc8fcec8387a5bfadd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ffeced42e5940f7ed29520950308126 = L.circleMarker(\\n\",\n       \"                [30.9075, 113.942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d1e1e0c95b46bbd53b2fc736b864393 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_605a99c2feb1c4e6cef5e11b173e0901 = $(`&lt;div id=&quot;html_605a99c2feb1c4e6cef5e11b173e0901&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.942             latitude:30.9075             PM2_5:49.76571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d1e1e0c95b46bbd53b2fc736b864393.setContent(html_605a99c2feb1c4e6cef5e11b173e0901);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ffeced42e5940f7ed29520950308126.bindPopup(popup_1d1e1e0c95b46bbd53b2fc736b864393)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bcad7f88516825dcd9d8c0e267c7810a = L.circleMarker(\\n\",\n       \"                [47.8515, 88.1267],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e236e5675b78580bd620a78f0d206f01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4535be44929b1214794c694ff0ad0bdb = $(`&lt;div id=&quot;html_4535be44929b1214794c694ff0ad0bdb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.1267             latitude:47.8515             PM2_5:12.43539326             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e236e5675b78580bd620a78f0d206f01.setContent(html_4535be44929b1214794c694ff0ad0bdb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bcad7f88516825dcd9d8c0e267c7810a.bindPopup(popup_e236e5675b78580bd620a78f0d206f01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e465edc72225dfb30f257973dbb9cb84 = L.circleMarker(\\n\",\n       \"                [23.7106, 113.0208],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f621b913411a6ae0023daad80a7e5c83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd4b4e1ca5aa6ab3ac05c82a950cbc54 = $(`&lt;div id=&quot;html_dd4b4e1ca5aa6ab3ac05c82a950cbc54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0208             latitude:23.7106             PM2_5:33.74147727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f621b913411a6ae0023daad80a7e5c83.setContent(html_dd4b4e1ca5aa6ab3ac05c82a950cbc54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e465edc72225dfb30f257973dbb9cb84.bindPopup(popup_f621b913411a6ae0023daad80a7e5c83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17ca9212aed9315f716f39c3cf60cd98 = L.circleMarker(\\n\",\n       \"                [35.7511, 114.2956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fbceec649711190389ddf3d2e1388c0d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9096498846493bff904f0fe27228ebe7 = $(`&lt;div id=&quot;html_9096498846493bff904f0fe27228ebe7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2956             latitude:35.7511             PM2_5:56.3356546             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fbceec649711190389ddf3d2e1388c0d.setContent(html_9096498846493bff904f0fe27228ebe7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17ca9212aed9315f716f39c3cf60cd98.bindPopup(popup_fbceec649711190389ddf3d2e1388c0d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa7cb73bff8c9e29838f8898c87915d4 = L.circleMarker(\\n\",\n       \"                [25.1328, 99.1711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f980edf9a491323bc2b4e338ce35f1ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29951d11e74da5d0545ae85c12135e0a = $(`&lt;div id=&quot;html_29951d11e74da5d0545ae85c12135e0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.1711             latitude:25.1328             PM2_5:30.39106145             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f980edf9a491323bc2b4e338ce35f1ae.setContent(html_29951d11e74da5d0545ae85c12135e0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa7cb73bff8c9e29838f8898c87915d4.bindPopup(popup_f980edf9a491323bc2b4e338ce35f1ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_842141262ac76656d3d063f547f547be = L.circleMarker(\\n\",\n       \"                [24.9117, 118.5819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_900a0050ef1400eeb658bf399e5cbdd4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06e9925d970c3bbabb773f079a6d8db0 = $(`&lt;div id=&quot;html_06e9925d970c3bbabb773f079a6d8db0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5819             latitude:24.9117             PM2_5:24.49861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_900a0050ef1400eeb658bf399e5cbdd4.setContent(html_06e9925d970c3bbabb773f079a6d8db0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_842141262ac76656d3d063f547f547be.bindPopup(popup_900a0050ef1400eeb658bf399e5cbdd4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_205c9270458e98bf82bb9d6b316dcbe0 = L.circleMarker(\\n\",\n       \"                [40.9161, 117.9664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_143c43d7d88b3cf240b0333968cf7de9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a0f2e8d7f4b33edc9f0aef0767f1252 = $(`&lt;div id=&quot;html_2a0f2e8d7f4b33edc9f0aef0767f1252&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9664             latitude:40.9161             PM2_5:23.53472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_143c43d7d88b3cf240b0333968cf7de9.setContent(html_2a0f2e8d7f4b33edc9f0aef0767f1252);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_205c9270458e98bf82bb9d6b316dcbe0.bindPopup(popup_143c43d7d88b3cf240b0333968cf7de9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9e42e42dfb956fe2b75b44fd4924be4 = L.circleMarker(\\n\",\n       \"                [27.9647, 116.385],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c0d3321bc67f75ea282b8599b53af11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99fa98a87442a44339d71c98621c2c1a = $(`&lt;div id=&quot;html_99fa98a87442a44339d71c98621c2c1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.385             latitude:27.9647             PM2_5:37.26330532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c0d3321bc67f75ea282b8599b53af11.setContent(html_99fa98a87442a44339d71c98621c2c1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9e42e42dfb956fe2b75b44fd4924be4.bindPopup(popup_1c0d3321bc67f75ea282b8599b53af11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a856c0c0e9177058cdf42c01e1214c0a = L.circleMarker(\\n\",\n       \"                [29.3678, 113.1772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84b862d1c88ab3f6f161145fcdabd94c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_407cd2a26eb28b84823ec75dc535163a = $(`&lt;div id=&quot;html_407cd2a26eb28b84823ec75dc535163a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1772             latitude:29.3678             PM2_5:43.77106742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84b862d1c88ab3f6f161145fcdabd94c.setContent(html_407cd2a26eb28b84823ec75dc535163a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a856c0c0e9177058cdf42c01e1214c0a.bindPopup(popup_84b862d1c88ab3f6f161145fcdabd94c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93ecbe23aa30ff0b3ab0601f3da8f896 = L.circleMarker(\\n\",\n       \"                [38.8632, 115.493],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02b65a66246338b0768af52db4025fad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42bba3486c6cbff9dc7c37df98c5cea0 = $(`&lt;div id=&quot;html_42bba3486c6cbff9dc7c37df98c5cea0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.493             latitude:38.8632             PM2_5:57.32777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02b65a66246338b0768af52db4025fad.setContent(html_42bba3486c6cbff9dc7c37df98c5cea0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93ecbe23aa30ff0b3ab0601f3da8f896.bindPopup(popup_02b65a66246338b0768af52db4025fad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d6902ab8fb7283e4794e0e4b5171d230 = L.circleMarker(\\n\",\n       \"                [19.9507, 110.576],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b8e7d40a80d3a852c7e406f6d0bd990 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ac1172237a91034a2ef0bccc275ae1e = $(`&lt;div id=&quot;html_0ac1172237a91034a2ef0bccc275ae1e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.576             latitude:19.9507             PM2_5:16.45702006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b8e7d40a80d3a852c7e406f6d0bd990.setContent(html_0ac1172237a91034a2ef0bccc275ae1e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d6902ab8fb7283e4794e0e4b5171d230.bindPopup(popup_3b8e7d40a80d3a852c7e406f6d0bd990)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_266620f32a0d7223206913160f90d956 = L.circleMarker(\\n\",\n       \"                [26.0392, 119.303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35936ae60ae244eca008b8843bb9d63b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da6ae221edbd15196354bac4f9bfc9c0 = $(`&lt;div id=&quot;html_da6ae221edbd15196354bac4f9bfc9c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.303             latitude:26.0392             PM2_5:27.23743017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35936ae60ae244eca008b8843bb9d63b.setContent(html_da6ae221edbd15196354bac4f9bfc9c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_266620f32a0d7223206913160f90d956.bindPopup(popup_35936ae60ae244eca008b8843bb9d63b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b56b7ac913390d6dc51b7a0a5b311b8f = L.circleMarker(\\n\",\n       \"                [39.6295, 118.1997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d530b9bd6ebe781d6e24c0e741666b67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31124ab5e99f3437331d83b4375e7c11 = $(`&lt;div id=&quot;html_31124ab5e99f3437331d83b4375e7c11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1997             latitude:39.6295             PM2_5:51.32686981             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d530b9bd6ebe781d6e24c0e741666b67.setContent(html_31124ab5e99f3437331d83b4375e7c11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b56b7ac913390d6dc51b7a0a5b311b8f.bindPopup(popup_d530b9bd6ebe781d6e24c0e741666b67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f0a616102894ebffa2cb5a18336e628 = L.circleMarker(\\n\",\n       \"                [30.5489, 117.0486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_173f80915b547df8dd4f4e266630f276 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c636af3e3843ffff5411b7d4903eced7 = $(`&lt;div id=&quot;html_c636af3e3843ffff5411b7d4903eced7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0486             latitude:30.5489             PM2_5:50.58888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_173f80915b547df8dd4f4e266630f276.setContent(html_c636af3e3843ffff5411b7d4903eced7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f0a616102894ebffa2cb5a18336e628.bindPopup(popup_173f80915b547df8dd4f4e266630f276)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fda6676c328e1e985bc6cc1aa273c2ce = L.circleMarker(\\n\",\n       \"                [30.2043, 114.8949],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e77aaa4e65157ad31d14520d8c83355 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c584e35fb7c248c3d2d3fd681faddbf6 = $(`&lt;div id=&quot;html_c584e35fb7c248c3d2d3fd681faddbf6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8949             latitude:30.2043             PM2_5:52.29083095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e77aaa4e65157ad31d14520d8c83355.setContent(html_c584e35fb7c248c3d2d3fd681faddbf6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fda6676c328e1e985bc6cc1aa273c2ce.bindPopup(popup_3e77aaa4e65157ad31d14520d8c83355)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2295b30041f30f84a7d4e56388368564 = L.circleMarker(\\n\",\n       \"                [34.5101, 109.5293],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2791bb43b778e743beeff99aecaf5ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_161262053f2be7a986039f0f2e66bd47 = $(`&lt;div id=&quot;html_161262053f2be7a986039f0f2e66bd47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5293             latitude:34.5101             PM2_5:60.51585014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2791bb43b778e743beeff99aecaf5ae.setContent(html_161262053f2be7a986039f0f2e66bd47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2295b30041f30f84a7d4e56388368564.bindPopup(popup_f2791bb43b778e743beeff99aecaf5ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0bac15f0d48e3c070afeaa43be5d257 = L.circleMarker(\\n\",\n       \"                [43.8228, 126.4978],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96d6d8b5b2db865e72e3c8ca7e64c366 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_455e4817879ac7e70b07f127e517c9fe = $(`&lt;div id=&quot;html_455e4817879ac7e70b07f127e517c9fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4978             latitude:43.8228             PM2_5:27.61111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96d6d8b5b2db865e72e3c8ca7e64c366.setContent(html_455e4817879ac7e70b07f127e517c9fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0bac15f0d48e3c070afeaa43be5d257.bindPopup(popup_96d6d8b5b2db865e72e3c8ca7e64c366)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_9b52ef934135a5185b901f1dd59713ae = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_9b52ef934135a5185b901f1dd59713ae.color = d3.scale.threshold()\\n\",\n       \"              .domain([3.856338028, 4.116747294076152, 4.377156560152304, 4.637565826228457, 4.897975092304609, 5.158384358380761, 5.418793624456914, 5.679202890533066, 5.939612156609218, 6.200021422685371, 6.460430688761523, 6.720839954837675, 6.981249220913828, 7.24165848698998, 7.502067753066132, 7.762477019142285, 8.022886285218437, 8.28329555129459, 8.543704817370742, 8.804114083446894, 9.064523349523046, 9.324932615599199, 9.585341881675351, 9.845751147751503, 10.106160413827654, 10.366569679903806, 10.626978945979959, 10.887388212056111, 11.147797478132263, 11.408206744208416, 11.668616010284568, 11.92902527636072, 12.189434542436873, 12.449843808513023, 12.710253074589177, 12.97066234066533, 13.231071606741482, 13.491480872817633, 13.751890138893787, 14.012299404969939, 14.272708671046091, 14.533117937122242, 14.793527203198396, 15.053936469274548, 15.3143457353507, 15.574755001426851, 15.835164267503005, 16.09557353357916, 16.355982799655308, 16.61639206573146, 16.876801331807613, 17.13721059788377, 17.397619863959918, 17.65802913003607, 17.918438396112222, 18.178847662188378, 18.439256928264527, 18.69966619434068, 18.96007546041683, 19.220484726492987, 19.480893992569136, 19.74130325864529, 20.00171252472144, 20.262121790797593, 20.522531056873746, 20.782940322949898, 21.043349589026047, 21.303758855102203, 21.564168121178355, 21.824577387254507, 22.08498665333066, 22.345395919406812, 22.605805185482964, 22.866214451559117, 23.126623717635265, 23.38703298371142, 23.647442249787574, 23.907851515863726, 24.16826078193988, 24.42867004801603, 24.689079314092183, 24.94948858016833, 25.209897846244484, 25.47030711232064, 25.730716378396792, 25.99112564447294, 26.251534910549097, 26.51194417662525, 26.7723534427014, 27.03276270877755, 27.293171974853703, 27.55358124092986, 27.81399050700601, 28.07439977308216, 28.334809039158316, 28.595218305234468, 28.855627571310617, 29.11603683738677, 29.37644610346292, 29.636855369539077, 29.897264635615226, 30.15767390169138, 30.418083167767534, 30.678492433843687, 30.938901699919835, 31.199310965995988, 31.45972023207214, 31.720129498148296, 31.980538764224445, 32.2409480303006, 32.50135729637675, 32.761766562452905, 33.02217582852906, 33.28258509460521, 33.54299436068136, 33.803403626757515, 34.06381289283367, 34.32422215890982, 34.58463142498597, 34.845040691062124, 35.105449957138276, 35.36585922321443, 35.62626848929058, 35.88667775536673, 36.147087021442886, 36.40749628751904, 36.66790555359519, 36.92831481967134, 37.188724085747495, 37.44913335182365, 37.7095426178998, 37.96995188397595, 38.2303611500521, 38.49077041612826, 38.75117968220441, 39.01158894828056, 39.271998214356714, 39.532407480432866, 39.79281674650902, 40.05322601258517, 40.31363527866132, 40.574044544737475, 40.83445381081363, 41.09486307688978, 41.35527234296593, 41.615681609042085, 41.87609087511824, 42.13650014119438, 42.396909407270535, 42.657318673346694, 42.917727939422846, 43.178137205499, 43.43854647157515, 43.6989557376513, 43.959365003727456, 44.2197742698036, 44.48018353587976, 44.74059280195591, 45.001002068032065, 45.26141133410822, 45.52182060018437, 45.78222986626052, 46.04263913233667, 46.30304839841282, 46.56345766448897, 46.82386693056513, 47.084276196641284, 47.344685462717436, 47.60509472879359, 47.86550399486974, 48.125913260945886, 48.38632252702204, 48.6467317930982, 48.90714105917435, 49.1675503252505, 49.427959591326655, 49.68836885740281, 49.94877812347895, 50.209187389555105, 50.46959665563126, 50.73000592170741, 50.99041518778357, 51.25082445385972, 51.51123371993587, 51.771642986012026, 52.03205225208817, 52.29246151816432, 52.552870784240476, 52.813280050316635, 53.07368931639279, 53.33409858246894, 53.59450784854509, 53.85491711462124, 54.11532638069739, 54.37573564677354, 54.636144912849694, 54.89655417892585, 55.156963445002006, 55.41737271107816, 55.67778197715431, 55.938191243230456, 56.19860050930661, 56.45900977538276, 56.71941904145891, 56.97982830753507, 57.240237573611225, 57.50064683968738, 57.76105610576352, 58.021465371839675, 58.28187463791583, 58.54228390399198, 58.80269317006813, 59.063102436144284, 59.32351170222044, 59.583920968296596, 59.84433023437274, 60.10473950044889, 60.365148766525046, 60.6255580326012, 60.88596729867735, 61.14637656475351, 61.40678583082966, 61.66719509690581, 61.92760436298196, 62.18801362905811, 62.448422895134264, 62.70883216121042, 62.96924142728657, 63.22965069336272, 63.49005995943888, 63.750469225515026, 64.01087849159117, 64.27128775766732, 64.53169702374348, 64.79210628981963, 65.05251555589578, 65.31292482197195, 65.57333408804809, 65.83374335412424, 66.09415262020039, 66.35456188627654, 66.6149711523527, 66.87538041842885, 67.135789684505, 67.39619895058115, 67.6566082166573, 67.91701748273346, 68.17742674880961, 68.43783601488576, 68.69824528096191, 68.95865454703807, 69.21906381311422, 69.47947307919037, 69.73988234526652, 70.00029161134267, 70.26070087741883, 70.52111014349498, 70.78151940957113, 71.04192867564728, 71.30233794172344, 71.56274720779959, 71.82315647387574, 72.0835657399519, 72.34397500602803, 72.60438427210418, 72.86479353818035, 73.1252028042565, 73.38561207033266, 73.64602133640881, 73.90643060248496, 74.16683986856111, 74.42724913463726, 74.68765840071342, 74.94806766678957, 75.20847693286572, 75.46888619894187, 75.72929546501803, 75.98970473109418, 76.25011399717033, 76.51052326324647, 76.77093252932264, 77.03134179539879, 77.29175106147494, 77.55216032755109, 77.81256959362725, 78.0729788597034, 78.33338812577955, 78.5937973918557, 78.85420665793185, 79.114615924008, 79.37502519008416, 79.63543445616031, 79.89584372223646, 80.15625298831262, 80.41666225438875, 80.6770715204649, 80.93748078654106, 81.19789005261723, 81.45829931869338, 81.71870858476953, 81.97911785084568, 82.23952711692183, 82.49993638299799, 82.76034564907414, 83.02075491515029, 83.28116418122644, 83.5415734473026, 83.80198271337875, 84.0623919794549, 84.32280124553104, 84.58321051160719, 84.84361977768334, 85.10402904375951, 85.36443830983566, 85.62484757591182, 85.88525684198797, 86.14566610806412, 86.40607537414027, 86.66648464021642, 86.92689390629258, 87.18730317236873, 87.44771243844488, 87.70812170452103, 87.96853097059719, 88.22894023667332, 88.48934950274948, 88.74975876882563, 89.01016803490178, 89.27057730097793, 89.5309865670541, 89.79139583313025, 90.0518050992064, 90.31221436528256, 90.57262363135871, 90.83303289743486, 91.09344216351101, 91.35385142958717, 91.61426069566332, 91.87466996173947, 92.13507922781561, 92.39548849389176, 92.65589775996791, 92.91630702604407, 93.17671629212022, 93.43712555819639, 93.69753482427254, 93.95794409034869, 94.21835335642484, 94.478762622501, 94.73917188857715, 94.9995811546533, 95.25999042072945, 95.5203996868056, 95.78080895288176, 96.0412182189579, 96.30162748503405, 96.5620367511102, 96.82244601718635, 97.0828552832625, 97.34326454933866, 97.60367381541481, 97.86408308149097, 98.12449234756713, 98.38490161364328, 98.64531087971943, 98.90572014579558, 99.16612941187174, 99.42653867794789, 99.68694794402404, 99.94735721010018, 100.20776647617633, 100.46817574225248, 100.72858500832864, 100.98899427440479, 101.24940354048094, 101.5098128065571, 101.77022207263326, 102.03063133870941, 102.29104060478556, 102.55144987086172, 102.81185913693787, 103.07226840301402, 103.33267766909017, 103.59308693516633, 103.85349620124246, 104.11390546731862, 104.37431473339477, 104.63472399947092, 104.89513326554707, 105.15554253162323, 105.41595179769938, 105.67636106377553, 105.93677032985168, 106.19717959592785, 106.457588862004, 106.71799812808015, 106.9784073941563, 107.23881666023246, 107.49922592630861, 107.75963519238475, 108.0200444584609, 108.28045372453705, 108.5408629906132, 108.80127225668936, 109.06168152276551, 109.32209078884166, 109.58250005491782, 109.84290932099397, 110.10331858707013, 110.36372785314629, 110.62413711922244, 110.88454638529859, 111.14495565137474, 111.4053649174509, 111.66577418352703, 111.92618344960319, 112.18659271567934, 112.44700198175549, 112.70741124783164, 112.9678205139078, 113.22822977998395, 113.4886390460601, 113.74904831213625, 114.0094575782124, 114.26986684428856, 114.53027611036472, 114.79068537644088, 115.05109464251703, 115.31150390859318, 115.57191317466932, 115.83232244074547, 116.09273170682162, 116.35314097289778, 116.61355023897393, 116.87395950505008, 117.13436877112623, 117.39477803720239, 117.65518730327854, 117.91559656935469, 118.17600583543084, 118.43641510150701, 118.69682436758316, 118.95723363365931, 119.21764289973547, 119.4780521658116, 119.73846143188776, 119.99887069796391, 120.25927996404006, 120.51968923011621, 120.78009849619237, 121.04050776226852, 121.30091702834467, 121.56132629442082, 121.82173556049698, 122.08214482657313, 122.34255409264928, 122.60296335872543, 122.8633726248016, 123.12378189087775, 123.38419115695389, 123.64460042303004, 123.9050096891062, 124.16541895518235, 124.4258282212585, 124.68623748733465, 124.9466467534108, 125.20705601948696, 125.46746528556311, 125.72787455163926, 125.98828381771541, 126.24869308379157, 126.50910234986772, 126.76951161594388, 127.02992088202004, 127.29033014809617, 127.55073941417233, 127.81114868024848, 128.07155794632465, 128.3319672124008, 128.59237647847695, 128.8527857445531, 129.11319501062925, 129.3736042767054, 129.63401354278156, 129.8944228088577, 130.15483207493386, 130.41524134101002, 130.67565060708617, 130.93605987316232, 131.19646913923847, 131.45687840531463, 131.71728767139078, 131.97769693746693, 132.23810620354308, 132.49851546961924, 132.7589247356954, 133.01933400177154, 133.2797432678477, 133.54015253392384, 133.8005618])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_9b52ef934135a5185b901f1dd59713ae.x = d3.scale.linear()\\n\",\n       \"              .domain([3.856338028, 133.8005618])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_9b52ef934135a5185b901f1dd59713ae.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_9b52ef934135a5185b901f1dd59713ae.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_9b52ef934135a5185b901f1dd59713ae.legend.addTo(map_4dfcda3a930e153eda75eb6045f8b695);\\n\",\n       \"\\n\",\n       \"    color_map_9b52ef934135a5185b901f1dd59713ae.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_9b52ef934135a5185b901f1dd59713ae.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([3.856338028, &#x27;&#x27;, &#x27;&#x27;, 23.347971593799997, &#x27;&#x27;, &#x27;&#x27;, 42.8396051596, &#x27;&#x27;, &#x27;&#x27;, 62.3312387254, &#x27;&#x27;, &#x27;&#x27;, 81.82287229119999, &#x27;&#x27;, &#x27;&#x27;, 101.31450585699999, &#x27;&#x27;, &#x27;&#x27;, 120.80613942279999, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_9b52ef934135a5185b901f1dd59713ae.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_9b52ef934135a5185b901f1dd59713ae.g = color_map_9b52ef934135a5185b901f1dd59713ae.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_9b52ef934135a5185b901f1dd59713ae.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_9b52ef934135a5185b901f1dd59713ae.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_9b52ef934135a5185b901f1dd59713ae.x(color_map_9b52ef934135a5185b901f1dd59713ae.color.domain()[i - 1]) : color_map_9b52ef934135a5185b901f1dd59713ae.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_9b52ef934135a5185b901f1dd59713ae.color.domain().length ? color_map_9b52ef934135a5185b901f1dd59713ae.x(color_map_9b52ef934135a5185b901f1dd59713ae.color.domain()[i]) : color_map_9b52ef934135a5185b901f1dd59713ae.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_9b52ef934135a5185b901f1dd59713ae.g.call(color_map_9b52ef934135a5185b901f1dd59713ae.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13a5584e210>\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.display_dataset(name='all', y_column='PM2_5', colors=[\\n\",\n    \"                           'blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"训练集\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"id\": \"980C5D44EA7A4E0D85AA3AAB6D802234\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_39bb1a6ed84fc6b9900a2c213cb9b0ef {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_39bb1a6ed84fc6b9900a2c213cb9b0ef&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_39bb1a6ed84fc6b9900a2c213cb9b0ef = L.map(\\n\",\n       \"                &quot;map_39bb1a6ed84fc6b9900a2c213cb9b0ef&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_99b641f6b924cf48580018917110b6a2 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_99b641f6b924cf48580018917110b6a2.addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0001dcbb6d3c70a3e65de904c32d14b = L.circleMarker(\\n\",\n       \"                [30.8217, 106.1031],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03eebcd39a1b5718f57acce76bb2a121 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09e868cf9b78fca8b92c4048093bfb6c = $(`&lt;div id=&quot;html_09e868cf9b78fca8b92c4048093bfb6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1031             latitude:30.8217             PM2_5:47.4255618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03eebcd39a1b5718f57acce76bb2a121.setContent(html_09e868cf9b78fca8b92c4048093bfb6c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0001dcbb6d3c70a3e65de904c32d14b.bindPopup(popup_03eebcd39a1b5718f57acce76bb2a121)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fdf06b06d0338d8c8479fb894d18f8c5 = L.circleMarker(\\n\",\n       \"                [29.5186, 106.54],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7e4e859ca28af13b27bb7f2cc805b4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b21dd0ffb9777df83b81a85c4ad619c = $(`&lt;div id=&quot;html_0b21dd0ffb9777df83b81a85c4ad619c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.54             latitude:29.5186             PM2_5:41.60526316             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7e4e859ca28af13b27bb7f2cc805b4a.setContent(html_0b21dd0ffb9777df83b81a85c4ad619c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fdf06b06d0338d8c8479fb894d18f8c5.bindPopup(popup_b7e4e859ca28af13b27bb7f2cc805b4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa7f756c52b0eb3dba0a48708d5e0d3f = L.circleMarker(\\n\",\n       \"                [31.7371, 116.508],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1da65aa3ba45c68fb5871ef457096044 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ce73fa152c228be3d244059af132bcd = $(`&lt;div id=&quot;html_6ce73fa152c228be3d244059af132bcd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.508             latitude:31.7371             PM2_5:44.06005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1da65aa3ba45c68fb5871ef457096044.setContent(html_6ce73fa152c228be3d244059af132bcd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa7f756c52b0eb3dba0a48708d5e0d3f.bindPopup(popup_1da65aa3ba45c68fb5871ef457096044)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a05e2e0a9a64eec18264c0dc450eb2a = L.circleMarker(\\n\",\n       \"                [34.6869, 112.4664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d690665c9599bf67b6ce66a725ad8e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71f43b9e88767cf9e2a832b0d77dbf90 = $(`&lt;div id=&quot;html_71f43b9e88767cf9e2a832b0d77dbf90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4664             latitude:34.6869             PM2_5:59.93661972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d690665c9599bf67b6ce66a725ad8e9.setContent(html_71f43b9e88767cf9e2a832b0d77dbf90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a05e2e0a9a64eec18264c0dc450eb2a.bindPopup(popup_9d690665c9599bf67b6ce66a725ad8e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adb92135fcff8c105b9458cdc53712c2 = L.circleMarker(\\n\",\n       \"                [31.1208, 104.4219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae329509e2568e5cffd4259469662b57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3355ffba5bf53bf44673e352fda7d59c = $(`&lt;div id=&quot;html_3355ffba5bf53bf44673e352fda7d59c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.4219             latitude:31.1208             PM2_5:42.56741573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae329509e2568e5cffd4259469662b57.setContent(html_3355ffba5bf53bf44673e352fda7d59c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adb92135fcff8c105b9458cdc53712c2.bindPopup(popup_ae329509e2568e5cffd4259469662b57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_212ed423d631a8454ca0ad0412045627 = L.circleMarker(\\n\",\n       \"                [33.5653, 114.0322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08e0279436eb1a9d91895aef04555907 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c4d008349c28fc2956ac2ff93b2629d = $(`&lt;div id=&quot;html_5c4d008349c28fc2956ac2ff93b2629d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0322             latitude:33.5653             PM2_5:55.8189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08e0279436eb1a9d91895aef04555907.setContent(html_5c4d008349c28fc2956ac2ff93b2629d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_212ed423d631a8454ca0ad0412045627.bindPopup(popup_08e0279436eb1a9d91895aef04555907)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_55144611ae34fdcd521949259b46b964 = L.circleMarker(\\n\",\n       \"                [32.02, 120.87],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0269ff4332d4b3cbaebc0e4b6a19d191 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b71b25e52b1c3426e6ce6841438e3aac = $(`&lt;div id=&quot;html_b71b25e52b1c3426e6ce6841438e3aac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.87             latitude:32.02             PM2_5:34.07799443             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0269ff4332d4b3cbaebc0e4b6a19d191.setContent(html_b71b25e52b1c3426e6ce6841438e3aac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_55144611ae34fdcd521949259b46b964.bindPopup(popup_0269ff4332d4b3cbaebc0e4b6a19d191)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5b6a74137f266667a7c28bf1feb6e98 = L.circleMarker(\\n\",\n       \"                [32.6975, 109.0072],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50062d5b5cf1c901fa2ca8e817085b7c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b158c6ce984497707b107fc4e3cf109 = $(`&lt;div id=&quot;html_3b158c6ce984497707b107fc4e3cf109&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0072             latitude:32.6975             PM2_5:42.6755618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50062d5b5cf1c901fa2ca8e817085b7c.setContent(html_3b158c6ce984497707b107fc4e3cf109);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5b6a74137f266667a7c28bf1feb6e98.bindPopup(popup_50062d5b5cf1c901fa2ca8e817085b7c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb23deea285e6ee26d3eedbf18e4441c = L.circleMarker(\\n\",\n       \"                [40.715, 120.8478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_802bcf659bbc987c83584fd543dd4d62 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7785071e4e5bd3070eef257873f75eb = $(`&lt;div id=&quot;html_a7785071e4e5bd3070eef257873f75eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8478             latitude:40.715             PM2_5:32.58615819             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_802bcf659bbc987c83584fd543dd4d62.setContent(html_a7785071e4e5bd3070eef257873f75eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb23deea285e6ee26d3eedbf18e4441c.bindPopup(popup_802bcf659bbc987c83584fd543dd4d62)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5009b0b41bfd06bc6a5f4f6563c5bc41 = L.circleMarker(\\n\",\n       \"                [33.5039, 119.135],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25ca9309c18636c9e7308986264170b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ed82796a0b1dc0dd1b2da33226a587d = $(`&lt;div id=&quot;html_0ed82796a0b1dc0dd1b2da33226a587d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.135             latitude:33.5039             PM2_5:45.50277008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25ca9309c18636c9e7308986264170b8.setContent(html_0ed82796a0b1dc0dd1b2da33226a587d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5009b0b41bfd06bc6a5f4f6563c5bc41.bindPopup(popup_25ca9309c18636c9e7308986264170b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_978660a1c0a8d6fde2cca8cb3b7ada59 = L.circleMarker(\\n\",\n       \"                [28.0089, 120.634],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f4d899944de10839f76814876c08f7d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_994996632532e1ba4cae298d81079432 = $(`&lt;div id=&quot;html_994996632532e1ba4cae298d81079432&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.634             latitude:28.0089             PM2_5:34.10277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f4d899944de10839f76814876c08f7d4.setContent(html_994996632532e1ba4cae298d81079432);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_978660a1c0a8d6fde2cca8cb3b7ada59.bindPopup(popup_f4d899944de10839f76814876c08f7d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e80a4c899fae77419813101aa2de38e = L.circleMarker(\\n\",\n       \"                [45.8194, 130.8625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc86a554fecb743bfe51171feba40b1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b82cc68f2b484d3320ffdb1cfb8acf1 = $(`&lt;div id=&quot;html_0b82cc68f2b484d3320ffdb1cfb8acf1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.8625             latitude:45.8194             PM2_5:28.55477528             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc86a554fecb743bfe51171feba40b1a.setContent(html_0b82cc68f2b484d3320ffdb1cfb8acf1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e80a4c899fae77419813101aa2de38e.bindPopup(popup_dc86a554fecb743bfe51171feba40b1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2eb77ce8cc346b3884d64f3234fa51d = L.circleMarker(\\n\",\n       \"                [29.8539, 114.2894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5cec7e6ac57796f39dbb2ce43eda1c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52cdae3efb1927cc402c7d4675e6da1a = $(`&lt;div id=&quot;html_52cdae3efb1927cc402c7d4675e6da1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2894             latitude:29.8539             PM2_5:36.90972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5cec7e6ac57796f39dbb2ce43eda1c6.setContent(html_52cdae3efb1927cc402c7d4675e6da1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2eb77ce8cc346b3884d64f3234fa51d.bindPopup(popup_a5cec7e6ac57796f39dbb2ce43eda1c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a77616d2c63cdea07160ca033ab61cb = L.circleMarker(\\n\",\n       \"                [31.7308, 113.3983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea4f024a365205334522036e88645818 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ac3475c93d7fba6c6fe5a39143e6e7b = $(`&lt;div id=&quot;html_7ac3475c93d7fba6c6fe5a39143e6e7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3983             latitude:31.7308             PM2_5:48.91364903             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea4f024a365205334522036e88645818.setContent(html_7ac3475c93d7fba6c6fe5a39143e6e7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a77616d2c63cdea07160ca033ab61cb.bindPopup(popup_ea4f024a365205334522036e88645818)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d82ae088dea282689b94c80f349c345 = L.circleMarker(\\n\",\n       \"                [27.8328, 114.9289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb4cf50797fedef396b5ec03a01408f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_41cf59a81907317ba7c48540ef08c68e = $(`&lt;div id=&quot;html_41cf59a81907317ba7c48540ef08c68e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9289             latitude:27.8328             PM2_5:48.87916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb4cf50797fedef396b5ec03a01408f1.setContent(html_41cf59a81907317ba7c48540ef08c68e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d82ae088dea282689b94c80f349c345.bindPopup(popup_fb4cf50797fedef396b5ec03a01408f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83d374ea6d214290ef516c5e3674158c = L.circleMarker(\\n\",\n       \"                [36.2866, 100.6188],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e2afc2921ed42b137dd819690cfccc8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0f6f4d7b4b78d02fcf1772bcff4ab97 = $(`&lt;div id=&quot;html_b0f6f4d7b4b78d02fcf1772bcff4ab97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.6188             latitude:36.2866             PM2_5:22.37640449             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e2afc2921ed42b137dd819690cfccc8.setContent(html_b0f6f4d7b4b78d02fcf1772bcff4ab97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83d374ea6d214290ef516c5e3674158c.bindPopup(popup_1e2afc2921ed42b137dd819690cfccc8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31809e24c04ab77110cf14f7c7b81b57 = L.circleMarker(\\n\",\n       \"                [40.1952, 116.23],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9abd33958c89c0a8570a4e78b0425f12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a75ab46c525fd92e263b86b7cd61bb88 = $(`&lt;div id=&quot;html_a75ab46c525fd92e263b86b7cd61bb88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.23             latitude:40.1952             PM2_5:48.23876404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9abd33958c89c0a8570a4e78b0425f12.setContent(html_a75ab46c525fd92e263b86b7cd61bb88);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31809e24c04ab77110cf14f7c7b81b57.bindPopup(popup_9abd33958c89c0a8570a4e78b0425f12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3ebbe6b374056940cbc61465c448b23 = L.circleMarker(\\n\",\n       \"                [21.9508, 108.6553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5c285d4e96939202f1c1b6f9fafc686 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f48a8e2cfd53bcfeffb3dc7ba219fdd1 = $(`&lt;div id=&quot;html_f48a8e2cfd53bcfeffb3dc7ba219fdd1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6553             latitude:21.9508             PM2_5:31.75706215             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5c285d4e96939202f1c1b6f9fafc686.setContent(html_f48a8e2cfd53bcfeffb3dc7ba219fdd1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3ebbe6b374056940cbc61465c448b23.bindPopup(popup_c5c285d4e96939202f1c1b6f9fafc686)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2968e8e375fb671c28161739ce08ac11 = L.circleMarker(\\n\",\n       \"                [31.85805556, 106.7619444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fbbc6a934c3710ff2c60f189e092f48c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ddd0835068c04a7e916464ea867d48d = $(`&lt;div id=&quot;html_5ddd0835068c04a7e916464ea867d48d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7619444             latitude:31.85805556             PM2_5:21.37042254             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fbbc6a934c3710ff2c60f189e092f48c.setContent(html_5ddd0835068c04a7e916464ea867d48d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2968e8e375fb671c28161739ce08ac11.bindPopup(popup_fbbc6a934c3710ff2c60f189e092f48c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a8146dca438a0e18a46f98babc61e7c = L.circleMarker(\\n\",\n       \"                [45.8309, 130.9467],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a141c2b6d64ab2236b2290631acb5e2e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27f860f0fe8e3454668145a21e73f1de = $(`&lt;div id=&quot;html_27f860f0fe8e3454668145a21e73f1de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9467             latitude:45.8309             PM2_5:29.78267045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a141c2b6d64ab2236b2290631acb5e2e.setContent(html_27f860f0fe8e3454668145a21e73f1de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a8146dca438a0e18a46f98babc61e7c.bindPopup(popup_a141c2b6d64ab2236b2290631acb5e2e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9be85e5cd78e4856c9807fe6fde2a0d2 = L.circleMarker(\\n\",\n       \"                [36.0417, 111.4917],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21ba6538e2f31c15d5242e4251ddf013 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f894dd4ab2a5c9fa8a09f0060e7b5da2 = $(`&lt;div id=&quot;html_f894dd4ab2a5c9fa8a09f0060e7b5da2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4917             latitude:36.0417             PM2_5:72.86685552             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21ba6538e2f31c15d5242e4251ddf013.setContent(html_f894dd4ab2a5c9fa8a09f0060e7b5da2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9be85e5cd78e4856c9807fe6fde2a0d2.bindPopup(popup_21ba6538e2f31c15d5242e4251ddf013)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43b75d4b428cecc3f238ff04ab6a6e03 = L.circleMarker(\\n\",\n       \"                [39.2282, 106.7704],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe1e758b6742ef8f9ffec9fdc4ac8c5b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0914a9cfac2a89d72edb59401417b56 = $(`&lt;div id=&quot;html_f0914a9cfac2a89d72edb59401417b56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7704             latitude:39.2282             PM2_5:42.43454039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe1e758b6742ef8f9ffec9fdc4ac8c5b.setContent(html_f0914a9cfac2a89d72edb59401417b56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43b75d4b428cecc3f238ff04ab6a6e03.bindPopup(popup_fe1e758b6742ef8f9ffec9fdc4ac8c5b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cedd4c28da865072136035824c74c401 = L.circleMarker(\\n\",\n       \"                [37.18, 119.959],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2dd4e64588246d5e2b31bc0caab765a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5fe867148c9090cb7e5c9097c1d2372a = $(`&lt;div id=&quot;html_5fe867148c9090cb7e5c9097c1d2372a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.959             latitude:37.18             PM2_5:36.77761628             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2dd4e64588246d5e2b31bc0caab765a.setContent(html_5fe867148c9090cb7e5c9097c1d2372a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cedd4c28da865072136035824c74c401.bindPopup(popup_a2dd4e64588246d5e2b31bc0caab765a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_773286321233bc3e2b1111713d20c94a = L.circleMarker(\\n\",\n       \"                [34.6575, 109.2],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d242ba6d9e3d3381ee8e071fccf7a164 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ee30abbdcca40031cd9b36dacc21f95 = $(`&lt;div id=&quot;html_8ee30abbdcca40031cd9b36dacc21f95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2             latitude:34.6575             PM2_5:67.91428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d242ba6d9e3d3381ee8e071fccf7a164.setContent(html_8ee30abbdcca40031cd9b36dacc21f95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_773286321233bc3e2b1111713d20c94a.bindPopup(popup_d242ba6d9e3d3381ee8e071fccf7a164)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d63789436d8855c2345e79011aa91a67 = L.circleMarker(\\n\",\n       \"                [30.5494, 114.3006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4282e8c40f377a77df137afcfc61c0ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35d743757ba87ccc825420f03ea9d7ab = $(`&lt;div id=&quot;html_35d743757ba87ccc825420f03ea9d7ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3006             latitude:30.5494             PM2_5:44.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4282e8c40f377a77df137afcfc61c0ca.setContent(html_35d743757ba87ccc825420f03ea9d7ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d63789436d8855c2345e79011aa91a67.bindPopup(popup_4282e8c40f377a77df137afcfc61c0ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_192e2b6258c72dd941fc93aebd45d44c = L.circleMarker(\\n\",\n       \"                [25.1035, 117.0216],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ba67ec7c023fb841e81653339f94cd2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4f6d4e58a9b03f2a3dd577ca9cf4473 = $(`&lt;div id=&quot;html_f4f6d4e58a9b03f2a3dd577ca9cf4473&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0216             latitude:25.1035             PM2_5:24.6232493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ba67ec7c023fb841e81653339f94cd2.setContent(html_f4f6d4e58a9b03f2a3dd577ca9cf4473);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_192e2b6258c72dd941fc93aebd45d44c.bindPopup(popup_9ba67ec7c023fb841e81653339f94cd2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa844bd8ac870abc1e690a570addd2b1 = L.circleMarker(\\n\",\n       \"                [32.8603, 115.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f12135b99b356ed5718a820aa27cbf0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2adeba66277e67ef3be236d171306f3 = $(`&lt;div id=&quot;html_c2adeba66277e67ef3be236d171306f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8556             latitude:32.8603             PM2_5:54.9719888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f12135b99b356ed5718a820aa27cbf0.setContent(html_c2adeba66277e67ef3be236d171306f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa844bd8ac870abc1e690a570addd2b1.bindPopup(popup_8f12135b99b356ed5718a820aa27cbf0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bdbf83ae67a1ac4e478a2f029bbc83ac = L.circleMarker(\\n\",\n       \"                [36.1851, 120.3905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d40f8bd0aaff66f915adbb9f1db7255d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06faac0951063c8b801071886d3bfa79 = $(`&lt;div id=&quot;html_06faac0951063c8b801071886d3bfa79&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.3905             latitude:36.1851             PM2_5:42.19219653             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d40f8bd0aaff66f915adbb9f1db7255d.setContent(html_06faac0951063c8b801071886d3bfa79);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bdbf83ae67a1ac4e478a2f029bbc83ac.bindPopup(popup_d40f8bd0aaff66f915adbb9f1db7255d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_977a403f99f0782f52fb637a485246c3 = L.circleMarker(\\n\",\n       \"                [39.6308, 118.1662],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c48a7b05f11509c4259d7bc142f9b03 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e4b44984dcc23aa67cb20391e5c6ee8 = $(`&lt;div id=&quot;html_1e4b44984dcc23aa67cb20391e5c6ee8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1662             latitude:39.6308             PM2_5:47.58448753             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c48a7b05f11509c4259d7bc142f9b03.setContent(html_1e4b44984dcc23aa67cb20391e5c6ee8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_977a403f99f0782f52fb637a485246c3.bindPopup(popup_9c48a7b05f11509c4259d7bc142f9b03)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1680c545dd7e427c70236bf7558ae176 = L.circleMarker(\\n\",\n       \"                [24.9424, 118.6663],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a75000fd4147e80f01b59ef5563b4d5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_492e15f13be9eb7ece06c7a08a237cea = $(`&lt;div id=&quot;html_492e15f13be9eb7ece06c7a08a237cea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6663             latitude:24.9424             PM2_5:26.91374269             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a75000fd4147e80f01b59ef5563b4d5c.setContent(html_492e15f13be9eb7ece06c7a08a237cea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1680c545dd7e427c70236bf7558ae176.bindPopup(popup_a75000fd4147e80f01b59ef5563b4d5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_debad2a7dc8afaa3c08f906b825b8644 = L.circleMarker(\\n\",\n       \"                [43.7878, 125.454],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed3e4a75c27cbe9711518a7188f6bda2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8638841e7fe736c029385ae5cae32922 = $(`&lt;div id=&quot;html_8638841e7fe736c029385ae5cae32922&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.454             latitude:43.7878             PM2_5:22.37073864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed3e4a75c27cbe9711518a7188f6bda2.setContent(html_8638841e7fe736c029385ae5cae32922);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_debad2a7dc8afaa3c08f906b825b8644.bindPopup(popup_ed3e4a75c27cbe9711518a7188f6bda2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e6fe238d7c1e447bc65a5866e063fd7 = L.circleMarker(\\n\",\n       \"                [29.8181, 114.3036],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7c63300334d660f6023545f6d340d86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd84fbdb02dc8dc08f070741c4987f66 = $(`&lt;div id=&quot;html_dd84fbdb02dc8dc08f070741c4987f66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3036             latitude:29.8181             PM2_5:41.71910112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7c63300334d660f6023545f6d340d86.setContent(html_dd84fbdb02dc8dc08f070741c4987f66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e6fe238d7c1e447bc65a5866e063fd7.bindPopup(popup_f7c63300334d660f6023545f6d340d86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb863cb91c7b274f1d8c5ddecf63c8f0 = L.circleMarker(\\n\",\n       \"                [24.3158, 109.4839],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b636ff8bf764eb1d36088483b1614f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15b16ff641a579dfed32736b24b0db86 = $(`&lt;div id=&quot;html_15b16ff641a579dfed32736b24b0db86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4839             latitude:24.3158             PM2_5:34.85854342             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b636ff8bf764eb1d36088483b1614f2.setContent(html_15b16ff641a579dfed32736b24b0db86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb863cb91c7b274f1d8c5ddecf63c8f0.bindPopup(popup_5b636ff8bf764eb1d36088483b1614f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d59cdfaf131dd739a080983410f5641 = L.circleMarker(\\n\",\n       \"                [26.567, 101.7227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_481231ee86618aa78b8ed7ef825cfa59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_466c91e739c4f1a81376cba991e902d1 = $(`&lt;div id=&quot;html_466c91e739c4f1a81376cba991e902d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7227             latitude:26.567             PM2_5:25.5362117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_481231ee86618aa78b8ed7ef825cfa59.setContent(html_466c91e739c4f1a81376cba991e902d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d59cdfaf131dd739a080983410f5641.bindPopup(popup_481231ee86618aa78b8ed7ef825cfa59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ebe9e19190fefbe6ab31190389d81cf2 = L.circleMarker(\\n\",\n       \"                [32.0092, 118.737],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f94e0c966863dd16b734117561cf7fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7dfad636cfc63c0ffee7fdfff939562 = $(`&lt;div id=&quot;html_c7dfad636cfc63c0ffee7fdfff939562&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.737             latitude:32.0092             PM2_5:46.43521127             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f94e0c966863dd16b734117561cf7fb.setContent(html_c7dfad636cfc63c0ffee7fdfff939562);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ebe9e19190fefbe6ab31190389d81cf2.bindPopup(popup_4f94e0c966863dd16b734117561cf7fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef4ecf686089950e19f3b294b36c7aca = L.circleMarker(\\n\",\n       \"                [34.9162, 113.6113],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee29378121a02a65386c87972d20a752 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84d96673e5d7276c387df27fb5ada441 = $(`&lt;div id=&quot;html_84d96673e5d7276c387df27fb5ada441&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6113             latitude:34.9162             PM2_5:59.82294618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee29378121a02a65386c87972d20a752.setContent(html_84d96673e5d7276c387df27fb5ada441);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef4ecf686089950e19f3b294b36c7aca.bindPopup(popup_ee29378121a02a65386c87972d20a752)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_540ee03e9cbecca6a8c1ba48d60f4d56 = L.circleMarker(\\n\",\n       \"                [34.719, 113.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54b83f2099f02b4e4f7fd54eee8d24da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ded529cd0694e26fcd83f976ab690cc = $(`&lt;div id=&quot;html_1ded529cd0694e26fcd83f976ab690cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.734             latitude:34.719             PM2_5:62.79378531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54b83f2099f02b4e4f7fd54eee8d24da.setContent(html_1ded529cd0694e26fcd83f976ab690cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_540ee03e9cbecca6a8c1ba48d60f4d56.bindPopup(popup_54b83f2099f02b4e4f7fd54eee8d24da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_684f6a33b3cd817693246d9fd9c3b66b = L.circleMarker(\\n\",\n       \"                [29.3578, 113.1094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c72009940f6875910b05715b54d7c4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11183f4e3d12832a4136aa9d4ede7dc4 = $(`&lt;div id=&quot;html_11183f4e3d12832a4136aa9d4ede7dc4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1094             latitude:29.3578             PM2_5:52.86376404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c72009940f6875910b05715b54d7c4f.setContent(html_11183f4e3d12832a4136aa9d4ede7dc4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_684f6a33b3cd817693246d9fd9c3b66b.bindPopup(popup_8c72009940f6875910b05715b54d7c4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c2c71634e9577f4f7764b491462cb7e = L.circleMarker(\\n\",\n       \"                [22.9394, 112.0369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_467dcd9f0d8cde386b1d68562655e270 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_53abecfb35be7e253c1b1c44650c0cc7 = $(`&lt;div id=&quot;html_53abecfb35be7e253c1b1c44650c0cc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0369             latitude:22.9394             PM2_5:34.66527778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_467dcd9f0d8cde386b1d68562655e270.setContent(html_53abecfb35be7e253c1b1c44650c0cc7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c2c71634e9577f4f7764b491462cb7e.bindPopup(popup_467dcd9f0d8cde386b1d68562655e270)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3c5b161c2496f491f3d65291a82ef5e = L.circleMarker(\\n\",\n       \"                [27.8614, 112.9433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab028d32d23d4437376572f7c587024f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_827fd3f768d3be55b39b39bdd39f1244 = $(`&lt;div id=&quot;html_827fd3f768d3be55b39b39bdd39f1244&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9433             latitude:27.8614             PM2_5:42.59331476             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab028d32d23d4437376572f7c587024f.setContent(html_827fd3f768d3be55b39b39bdd39f1244);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3c5b161c2496f491f3d65291a82ef5e.bindPopup(popup_ab028d32d23d4437376572f7c587024f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dfe5adac69ba3c61cd379db44e6732aa = L.circleMarker(\\n\",\n       \"                [23.1478, 109.5681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ce711779692d9fcf44076aca4d106b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9c9e8be36d64c0500057ab0e609b5c5 = $(`&lt;div id=&quot;html_b9c9e8be36d64c0500057ab0e609b5c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5681             latitude:23.1478             PM2_5:38.18571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ce711779692d9fcf44076aca4d106b1.setContent(html_b9c9e8be36d64c0500057ab0e609b5c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dfe5adac69ba3c61cd379db44e6732aa.bindPopup(popup_4ce711779692d9fcf44076aca4d106b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2827485c002366e3ad7f326f9ce7f02c = L.circleMarker(\\n\",\n       \"                [39.8261, 109.9486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_317050235d353f54d66815be0d703fcc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3712f65f9eb7e7b867ecbd2b7960552 = $(`&lt;div id=&quot;html_e3712f65f9eb7e7b867ecbd2b7960552&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9486             latitude:39.8261             PM2_5:28.75915493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_317050235d353f54d66815be0d703fcc.setContent(html_e3712f65f9eb7e7b867ecbd2b7960552);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2827485c002366e3ad7f326f9ce7f02c.bindPopup(popup_317050235d353f54d66815be0d703fcc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d8c562649faca1420db635f67415a23d = L.circleMarker(\\n\",\n       \"                [27.7569, 111.9561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2cc160072365f4242ed04ad2fe1a2681 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26a81ae375efa576cb01c8a7f53aeb89 = $(`&lt;div id=&quot;html_26a81ae375efa576cb01c8a7f53aeb89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9561             latitude:27.7569             PM2_5:35.39577465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2cc160072365f4242ed04ad2fe1a2681.setContent(html_26a81ae375efa576cb01c8a7f53aeb89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d8c562649faca1420db635f67415a23d.bindPopup(popup_2cc160072365f4242ed04ad2fe1a2681)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09c5a551c7ab4cab5665b74c4038e174 = L.circleMarker(\\n\",\n       \"                [26.5155, 106.6948],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d8248e828c20bac82904d75947705ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05bd5f0c66ff9bd3e170b86ef3659527 = $(`&lt;div id=&quot;html_05bd5f0c66ff9bd3e170b86ef3659527&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6948             latitude:26.5155             PM2_5:35.31601124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d8248e828c20bac82904d75947705ab.setContent(html_05bd5f0c66ff9bd3e170b86ef3659527);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09c5a551c7ab4cab5665b74c4038e174.bindPopup(popup_8d8248e828c20bac82904d75947705ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b57ba50a93262e14072fe12e9d4d90f3 = L.circleMarker(\\n\",\n       \"                [30.6103, 114.4272],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aedfd7653451744aadb4abb38af4096e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e735e9496a768cfd916df92e0d7b8b43 = $(`&lt;div id=&quot;html_e735e9496a768cfd916df92e0d7b8b43&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4272             latitude:30.6103             PM2_5:57.25492958             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aedfd7653451744aadb4abb38af4096e.setContent(html_e735e9496a768cfd916df92e0d7b8b43);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b57ba50a93262e14072fe12e9d4d90f3.bindPopup(popup_aedfd7653451744aadb4abb38af4096e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de06d7a9870d05eb67374f8df23a8f59 = L.circleMarker(\\n\",\n       \"                [43.1747, 124.3419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c14f48350a4d9439401b95e571d71566 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ae4fb4ca1963265c6081b0c5235b467 = $(`&lt;div id=&quot;html_6ae4fb4ca1963265c6081b0c5235b467&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3419             latitude:43.1747             PM2_5:44.17746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c14f48350a4d9439401b95e571d71566.setContent(html_6ae4fb4ca1963265c6081b0c5235b467);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de06d7a9870d05eb67374f8df23a8f59.bindPopup(popup_c14f48350a4d9439401b95e571d71566)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_377e4fe0ab5e8a04e7e5267b6045e944 = L.circleMarker(\\n\",\n       \"                [30.7856, 106.1064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9eee9fb22e4f41e6f561965f63dbe899 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_965dd3d81df05b8f41a21ae3076c5255 = $(`&lt;div id=&quot;html_965dd3d81df05b8f41a21ae3076c5255&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1064             latitude:30.7856             PM2_5:49.45391061             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9eee9fb22e4f41e6f561965f63dbe899.setContent(html_965dd3d81df05b8f41a21ae3076c5255);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_377e4fe0ab5e8a04e7e5267b6045e944.bindPopup(popup_9eee9fb22e4f41e6f561965f63dbe899)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_118d71dbfeaaa5efe55c91c6fe12f12d = L.circleMarker(\\n\",\n       \"                [27.6869, 106.9222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96f78ddcee46584e42167bce7028f938 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70fcf9218c2667877aa8e5dc2bea834b = $(`&lt;div id=&quot;html_70fcf9218c2667877aa8e5dc2bea834b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9222             latitude:27.6869             PM2_5:30.9275766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96f78ddcee46584e42167bce7028f938.setContent(html_70fcf9218c2667877aa8e5dc2bea834b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_118d71dbfeaaa5efe55c91c6fe12f12d.bindPopup(popup_96f78ddcee46584e42167bce7028f938)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a403a26768e23fca551e871d67228e6 = L.circleMarker(\\n\",\n       \"                [32.105, 118.907],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5064a47f6f1785bc4191ddcac48a2220 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_543de176d641dac50114490ec18192ca = $(`&lt;div id=&quot;html_543de176d641dac50114490ec18192ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.907             latitude:32.105             PM2_5:37.08189655             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5064a47f6f1785bc4191ddcac48a2220.setContent(html_543de176d641dac50114490ec18192ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a403a26768e23fca551e871d67228e6.bindPopup(popup_5064a47f6f1785bc4191ddcac48a2220)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_32cc6e4fae47ae41263760b5fe0529cb = L.circleMarker(\\n\",\n       \"                [26.5495, 106.6867],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6eca81f7ad75477b3cee63252a947780 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92007fb4a8218ad3502de783367b544a = $(`&lt;div id=&quot;html_92007fb4a8218ad3502de783367b544a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6867             latitude:26.5495             PM2_5:26.4756447             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6eca81f7ad75477b3cee63252a947780.setContent(html_92007fb4a8218ad3502de783367b544a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_32cc6e4fae47ae41263760b5fe0529cb.bindPopup(popup_6eca81f7ad75477b3cee63252a947780)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80190e62d63268cb07cbf4a1906d870f = L.circleMarker(\\n\",\n       \"                [39.4365, 75.9435],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2850d6e0ed027169640dc69cd127eaf7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c83897cf30ef7b748a4072f64139ca6f = $(`&lt;div id=&quot;html_c83897cf30ef7b748a4072f64139ca6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:75.9435             latitude:39.4365             PM2_5:133.8005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2850d6e0ed027169640dc69cd127eaf7.setContent(html_c83897cf30ef7b748a4072f64139ca6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80190e62d63268cb07cbf4a1906d870f.bindPopup(popup_2850d6e0ed027169640dc69cd127eaf7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0243900a20f813b3deac3c42c7b7030 = L.circleMarker(\\n\",\n       \"                [24.5157, 117.6569],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_540d87a32308a1c3768c6c9c04949c65 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d797448a30fb31e6c7966f25941fa64 = $(`&lt;div id=&quot;html_9d797448a30fb31e6c7966f25941fa64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6569             latitude:24.5157             PM2_5:27.33613445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_540d87a32308a1c3768c6c9c04949c65.setContent(html_9d797448a30fb31e6c7966f25941fa64);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0243900a20f813b3deac3c42c7b7030.bindPopup(popup_540d87a32308a1c3768c6c9c04949c65)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b3a319a53fb064651622074031bcd5b = L.circleMarker(\\n\",\n       \"                [47.7317, 128.9094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aac8521919c2f9615125d7b539d08af9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4c3c54e273d048eff81dbb59c38365b = $(`&lt;div id=&quot;html_a4c3c54e273d048eff81dbb59c38365b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:128.9094             latitude:47.7317             PM2_5:18.82248521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aac8521919c2f9615125d7b539d08af9.setContent(html_a4c3c54e273d048eff81dbb59c38365b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b3a319a53fb064651622074031bcd5b.bindPopup(popup_aac8521919c2f9615125d7b539d08af9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c31ee1f4412f1ae2b57333638029f07 = L.circleMarker(\\n\",\n       \"                [47.9047, 88.1214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a1df0e966e41bc5b245af57d474687b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a9ef6ec1a4e5101cef6076704174fa0 = $(`&lt;div id=&quot;html_4a9ef6ec1a4e5101cef6076704174fa0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.1214             latitude:47.9047             PM2_5:9.540785498             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a1df0e966e41bc5b245af57d474687b.setContent(html_4a9ef6ec1a4e5101cef6076704174fa0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c31ee1f4412f1ae2b57333638029f07.bindPopup(popup_6a1df0e966e41bc5b245af57d474687b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd9f6ba873c6ea7097319731d17783d8 = L.circleMarker(\\n\",\n       \"                [31.9438, 117.266],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c767c5110415bb4b0b9e3601d544ec83 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7977446cdd752b8a8732c2871a868859 = $(`&lt;div id=&quot;html_7977446cdd752b8a8732c2871a868859&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.266             latitude:31.9438             PM2_5:52.0210084             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c767c5110415bb4b0b9e3601d544ec83.setContent(html_7977446cdd752b8a8732c2871a868859);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd9f6ba873c6ea7097319731d17783d8.bindPopup(popup_c767c5110415bb4b0b9e3601d544ec83)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb77860a8fab55d71b608f3056b7e5e3 = L.circleMarker(\\n\",\n       \"                [41.1386, 121.1303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d756679547dfaf65ed6e38fb6ea546df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31be308cd37326042a98406aedae77c5 = $(`&lt;div id=&quot;html_31be308cd37326042a98406aedae77c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1303             latitude:41.1386             PM2_5:33.10893855             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d756679547dfaf65ed6e38fb6ea546df.setContent(html_31be308cd37326042a98406aedae77c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb77860a8fab55d71b608f3056b7e5e3.bindPopup(popup_d756679547dfaf65ed6e38fb6ea546df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0da8ba48844a81c38f6f12e572abbd1 = L.circleMarker(\\n\",\n       \"                [29.1456, 111.7158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b15cadcad759b8a74ff0afb39f243d43 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_938ac5a4a5b3db832a42548749e53f7c = $(`&lt;div id=&quot;html_938ac5a4a5b3db832a42548749e53f7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7158             latitude:29.1456             PM2_5:34.8832853             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b15cadcad759b8a74ff0afb39f243d43.setContent(html_938ac5a4a5b3db832a42548749e53f7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0da8ba48844a81c38f6f12e572abbd1.bindPopup(popup_b15cadcad759b8a74ff0afb39f243d43)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67bc825f7ea5a4c0f720f674e41f99a4 = L.circleMarker(\\n\",\n       \"                [38.95111111, 121.565],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33a4a70cce630b381fbbc1b204f6eaad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_182ac43aca5e76cd99f521e90fb197e4 = $(`&lt;div id=&quot;html_182ac43aca5e76cd99f521e90fb197e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.565             latitude:38.95111111             PM2_5:28.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33a4a70cce630b381fbbc1b204f6eaad.setContent(html_182ac43aca5e76cd99f521e90fb197e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67bc825f7ea5a4c0f720f674e41f99a4.bindPopup(popup_33a4a70cce630b381fbbc1b204f6eaad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf793c4c88b4de5fd9fb660fea68c19a = L.circleMarker(\\n\",\n       \"                [37.3617, 118.0018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c72a2a770941fe2d214ec647ee7dee5b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_952aeb17bee8276e02fa59f770f90c47 = $(`&lt;div id=&quot;html_952aeb17bee8276e02fa59f770f90c47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0018             latitude:37.3617             PM2_5:54.07541899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c72a2a770941fe2d214ec647ee7dee5b.setContent(html_952aeb17bee8276e02fa59f770f90c47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf793c4c88b4de5fd9fb660fea68c19a.bindPopup(popup_c72a2a770941fe2d214ec647ee7dee5b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b660f1c3c4edde07fa4eb45dc6d9120b = L.circleMarker(\\n\",\n       \"                [29.5634, 103.757],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a20db93c1578adf5437697b2872d4dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b3a222b6c5ebad8e779e490ceaadb8b = $(`&lt;div id=&quot;html_0b3a222b6c5ebad8e779e490ceaadb8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.757             latitude:29.5634             PM2_5:52.01133144             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a20db93c1578adf5437697b2872d4dd.setContent(html_0b3a222b6c5ebad8e779e490ceaadb8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b660f1c3c4edde07fa4eb45dc6d9120b.bindPopup(popup_4a20db93c1578adf5437697b2872d4dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5cf36c70a27a42babaea670131d7035c = L.circleMarker(\\n\",\n       \"                [25.8664, 114.9367],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5cde813ec98986c6da6dd0dc9c94b092 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1532e6e5f38f8a4d858a8d878ca52c40 = $(`&lt;div id=&quot;html_1532e6e5f38f8a4d858a8d878ca52c40&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9367             latitude:25.8664             PM2_5:47.77146814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5cde813ec98986c6da6dd0dc9c94b092.setContent(html_1532e6e5f38f8a4d858a8d878ca52c40);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5cf36c70a27a42babaea670131d7035c.bindPopup(popup_5cde813ec98986c6da6dd0dc9c94b092)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2af3babc4818b2c514669ad56ff6783c = L.circleMarker(\\n\",\n       \"                [41.9419, 126.4078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4ebf0584e5f4a6f67d9a1cab82352fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c756503c7cc25d531f4b98afe10592b7 = $(`&lt;div id=&quot;html_c756503c7cc25d531f4b98afe10592b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4078             latitude:41.9419             PM2_5:32.37709497             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4ebf0584e5f4a6f67d9a1cab82352fc.setContent(html_c756503c7cc25d531f4b98afe10592b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2af3babc4818b2c514669ad56ff6783c.bindPopup(popup_c4ebf0584e5f4a6f67d9a1cab82352fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d513eac47dd70833c6e50ba3faea7f1c = L.circleMarker(\\n\",\n       \"                [29.8208, 121.56],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43ae7f1dfde1781dca483478886532d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98a3f4778344c15f4b09416452cc2a5f = $(`&lt;div id=&quot;html_98a3f4778344c15f4b09416452cc2a5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.56             latitude:29.8208             PM2_5:36.98472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43ae7f1dfde1781dca483478886532d8.setContent(html_98a3f4778344c15f4b09416452cc2a5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d513eac47dd70833c6e50ba3faea7f1c.bindPopup(popup_43ae7f1dfde1781dca483478886532d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7394ae6d114497874511366fdf8227a3 = L.circleMarker(\\n\",\n       \"                [37.7019, 112.7549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bcba853b693e4a2978ebb4f3b7e7df1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5fef08d503d4b210ba50cdb372230f16 = $(`&lt;div id=&quot;html_5fef08d503d4b210ba50cdb372230f16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7549             latitude:37.7019             PM2_5:59.83055556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bcba853b693e4a2978ebb4f3b7e7df1.setContent(html_5fef08d503d4b210ba50cdb372230f16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7394ae6d114497874511366fdf8227a3.bindPopup(popup_8bcba853b693e4a2978ebb4f3b7e7df1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2a60db62ff78b7880b55dc4cb134591 = L.circleMarker(\\n\",\n       \"                [31.1108, 104.3539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ad98a699e6d2b39724125471bb7c8f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c96dc902c9b876dbcd8508ab41ddbd0 = $(`&lt;div id=&quot;html_6c96dc902c9b876dbcd8508ab41ddbd0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.3539             latitude:31.1108             PM2_5:63.7266289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ad98a699e6d2b39724125471bb7c8f9.setContent(html_6c96dc902c9b876dbcd8508ab41ddbd0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2a60db62ff78b7880b55dc4cb134591.bindPopup(popup_5ad98a699e6d2b39724125471bb7c8f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f6929ab02ab7f59c56fcb7a8b5fe3df = L.circleMarker(\\n\",\n       \"                [36.253, 120.014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02cd9c65806560cb1266f67d7c653245 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35b7573510836bf2fe94579112fc4b23 = $(`&lt;div id=&quot;html_35b7573510836bf2fe94579112fc4b23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.014             latitude:36.253             PM2_5:33.08732394             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02cd9c65806560cb1266f67d7c653245.setContent(html_35b7573510836bf2fe94579112fc4b23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f6929ab02ab7f59c56fcb7a8b5fe3df.bindPopup(popup_02cd9c65806560cb1266f67d7c653245)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f544ae99b5d8d7ebb3098364e672e975 = L.circleMarker(\\n\",\n       \"                [23.3682, 103.3758],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a94d503bc805a0d4f9e828062902c4a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_009066c7658378ccd3da3e95451b1c79 = $(`&lt;div id=&quot;html_009066c7658378ccd3da3e95451b1c79&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.3758             latitude:23.3682             PM2_5:30.92655367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a94d503bc805a0d4f9e828062902c4a9.setContent(html_009066c7658378ccd3da3e95451b1c79);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f544ae99b5d8d7ebb3098364e672e975.bindPopup(popup_a94d503bc805a0d4f9e828062902c4a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5ce5683363a05df90e764742f895ab2 = L.circleMarker(\\n\",\n       \"                [41.0931, 123.011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_95722531eecceecb29ff58b69a831aa7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df79dc92893c49c93f609395722ee760 = $(`&lt;div id=&quot;html_df79dc92893c49c93f609395722ee760&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.011             latitude:41.0931             PM2_5:28.875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_95722531eecceecb29ff58b69a831aa7.setContent(html_df79dc92893c49c93f609395722ee760);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5ce5683363a05df90e764742f895ab2.bindPopup(popup_95722531eecceecb29ff58b69a831aa7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43c7ed2759197a4dce3bc93d14dbb06d = L.circleMarker(\\n\",\n       \"                [31.7956, 117.302],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6535f8a501694f6127fe2c9663496ee8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85b6d19d04d25f395b5b3d4fff36128f = $(`&lt;div id=&quot;html_85b6d19d04d25f395b5b3d4fff36128f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.302             latitude:31.7956             PM2_5:51.98022599             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6535f8a501694f6127fe2c9663496ee8.setContent(html_85b6d19d04d25f395b5b3d4fff36128f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43c7ed2759197a4dce3bc93d14dbb06d.bindPopup(popup_6535f8a501694f6127fe2c9663496ee8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79e41254b133582823e10609d2a69403 = L.circleMarker(\\n\",\n       \"                [22.5111, 113.4075],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a22954bc554a28e88786fa21c4ce270 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94d56b8378982b34dc47943e45703784 = $(`&lt;div id=&quot;html_94d56b8378982b34dc47943e45703784&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4075             latitude:22.5111             PM2_5:29.46927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a22954bc554a28e88786fa21c4ce270.setContent(html_94d56b8378982b34dc47943e45703784);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79e41254b133582823e10609d2a69403.bindPopup(popup_1a22954bc554a28e88786fa21c4ce270)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_819a2f1a2c5d425e8aa78e45acf0806a = L.circleMarker(\\n\",\n       \"                [29.6541, 91.1774],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45183b4ceab36c3cb00c52ab5c90eaac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6e56123f59ecb7d6dec997367c4b19f = $(`&lt;div id=&quot;html_a6e56123f59ecb7d6dec997367c4b19f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1774             latitude:29.6541             PM2_5:13.734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45183b4ceab36c3cb00c52ab5c90eaac.setContent(html_a6e56123f59ecb7d6dec997367c4b19f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_819a2f1a2c5d425e8aa78e45acf0806a.bindPopup(popup_45183b4ceab36c3cb00c52ab5c90eaac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b3d9ff145516f30080330d195624ab1 = L.circleMarker(\\n\",\n       \"                [26.6761, 118.0966],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7a45bf5eb5cb21600f9f0a785cf2b96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d11d7806527e71d687d7a19ad7d375d1 = $(`&lt;div id=&quot;html_d11d7806527e71d687d7a19ad7d375d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0966             latitude:26.6761             PM2_5:19.22050562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7a45bf5eb5cb21600f9f0a785cf2b96.setContent(html_d11d7806527e71d687d7a19ad7d375d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b3d9ff145516f30080330d195624ab1.bindPopup(popup_b7a45bf5eb5cb21600f9f0a785cf2b96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ac431f71ff8a4ff6951c26c8608cef6 = L.circleMarker(\\n\",\n       \"                [35.4883, 112.8564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5edfe6843c3b608f10f1bd1632dd3b78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd248ec5166930687c37048ef6bf95cb = $(`&lt;div id=&quot;html_cd248ec5166930687c37048ef6bf95cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8564             latitude:35.4883             PM2_5:59.66573816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5edfe6843c3b608f10f1bd1632dd3b78.setContent(html_cd248ec5166930687c37048ef6bf95cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ac431f71ff8a4ff6951c26c8608cef6.bindPopup(popup_5edfe6843c3b608f10f1bd1632dd3b78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f27c61053e9151bb367ec6aa636dd64 = L.circleMarker(\\n\",\n       \"                [37.187, 122.019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08b7baf71680560fbb923e8e20788f96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5802104fa992c8e6bbefc7ddf65adcc0 = $(`&lt;div id=&quot;html_5802104fa992c8e6bbefc7ddf65adcc0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.019             latitude:37.187             PM2_5:19.37711864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08b7baf71680560fbb923e8e20788f96.setContent(html_5802104fa992c8e6bbefc7ddf65adcc0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f27c61053e9151bb367ec6aa636dd64.bindPopup(popup_08b7baf71680560fbb923e8e20788f96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9774a72d9e892b2863276277ab4b929d = L.circleMarker(\\n\",\n       \"                [34.493, 109.4636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_edf4959ecca39b7613c8145a58bb7f7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b311667b761fe3d57ca722df0603a22f = $(`&lt;div id=&quot;html_b311667b761fe3d57ca722df0603a22f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4636             latitude:34.493             PM2_5:70.88997214             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_edf4959ecca39b7613c8145a58bb7f7f.setContent(html_b311667b761fe3d57ca722df0603a22f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9774a72d9e892b2863276277ab4b929d.bindPopup(popup_edf4959ecca39b7613c8145a58bb7f7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81a4281e651d79a48035efaab3242a0d = L.circleMarker(\\n\",\n       \"                [39.7884, 109.9734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45da9961549533aef520efb54d37db54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_975ff88f3fb96e244d53ef77c315b8d4 = $(`&lt;div id=&quot;html_975ff88f3fb96e244d53ef77c315b8d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9734             latitude:39.7884             PM2_5:24.92339833             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45da9961549533aef520efb54d37db54.setContent(html_975ff88f3fb96e244d53ef77c315b8d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81a4281e651d79a48035efaab3242a0d.bindPopup(popup_45da9961549533aef520efb54d37db54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72f42177203ba5b884491cc68ae4118c = L.circleMarker(\\n\",\n       \"                [30.1808, 120.088],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66b6dadd8a6510cdda47c2ebe58d5c4d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5370411e27d388556661fea598508630 = $(`&lt;div id=&quot;html_5370411e27d388556661fea598508630&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.088             latitude:30.1808             PM2_5:34.76264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66b6dadd8a6510cdda47c2ebe58d5c4d.setContent(html_5370411e27d388556661fea598508630);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72f42177203ba5b884491cc68ae4118c.bindPopup(popup_66b6dadd8a6510cdda47c2ebe58d5c4d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffd6cc847ca8ca8afe7119441f9c3dc5 = L.circleMarker(\\n\",\n       \"                [35.76806, 115.0061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3aa2dd23e15b595266ee9049030ef712 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6454d57d0bf264f6e16be04d4377f5f0 = $(`&lt;div id=&quot;html_6454d57d0bf264f6e16be04d4377f5f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0061             latitude:35.76806             PM2_5:62.33002833             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3aa2dd23e15b595266ee9049030ef712.setContent(html_6454d57d0bf264f6e16be04d4377f5f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffd6cc847ca8ca8afe7119441f9c3dc5.bindPopup(popup_3aa2dd23e15b595266ee9049030ef712)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09a5f41f5bc7e1088287e45ea807ffaa = L.circleMarker(\\n\",\n       \"                [28.76611, 104.6225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30be43ee17436ec8e85417bb2284f0bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d16a4cf69227ff96e57b55d2e8c93eb7 = $(`&lt;div id=&quot;html_d16a4cf69227ff96e57b55d2e8c93eb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6225             latitude:28.76611             PM2_5:47.41504178             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30be43ee17436ec8e85417bb2284f0bf.setContent(html_d16a4cf69227ff96e57b55d2e8c93eb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09a5f41f5bc7e1088287e45ea807ffaa.bindPopup(popup_30be43ee17436ec8e85417bb2284f0bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_786412265ae67995955dbe40abb10f97 = L.circleMarker(\\n\",\n       \"                [22.6411, 110.1675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_082700ef3beeac437b7fa887879b6558 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1fb192df07d33172a30643e4af3eddc7 = $(`&lt;div id=&quot;html_1fb192df07d33172a30643e4af3eddc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1675             latitude:22.6411             PM2_5:38.76056338             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_082700ef3beeac437b7fa887879b6558.setContent(html_1fb192df07d33172a30643e4af3eddc7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_786412265ae67995955dbe40abb10f97.bindPopup(popup_082700ef3beeac437b7fa887879b6558)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8cd550122cb4e3c8343fb367e2a33bc = L.circleMarker(\\n\",\n       \"                [26.6029, 106.6856],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_516509950784b8aec6c5bb42431fc14d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3738954347daf74be830592de33e30c8 = $(`&lt;div id=&quot;html_3738954347daf74be830592de33e30c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6856             latitude:26.6029             PM2_5:30.36070381             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_516509950784b8aec6c5bb42431fc14d.setContent(html_3738954347daf74be830592de33e30c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8cd550122cb4e3c8343fb367e2a33bc.bindPopup(popup_516509950784b8aec6c5bb42431fc14d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef2e96d91467755d6ae123282e700361 = L.circleMarker(\\n\",\n       \"                [29.7125, 106.617],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f662ad38313e142293b05a145ac06129 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbbaf58e4658c06596c4cbd9968c12eb = $(`&lt;div id=&quot;html_cbbaf58e4658c06596c4cbd9968c12eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.617             latitude:29.7125             PM2_5:36.10724234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f662ad38313e142293b05a145ac06129.setContent(html_cbbaf58e4658c06596c4cbd9968c12eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef2e96d91467755d6ae123282e700361.bindPopup(popup_f662ad38313e142293b05a145ac06129)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74319eca077efe9057859568f4cdf88f = L.circleMarker(\\n\",\n       \"                [27.9939, 120.677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9cc649bf3df5ca12983bd62618cd5a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b8d952b36df608663ef59322d1c1eccb = $(`&lt;div id=&quot;html_b8d952b36df608663ef59322d1c1eccb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.677             latitude:27.9939             PM2_5:32.07605634             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9cc649bf3df5ca12983bd62618cd5a1.setContent(html_b8d952b36df608663ef59322d1c1eccb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74319eca077efe9057859568f4cdf88f.bindPopup(popup_e9cc649bf3df5ca12983bd62618cd5a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0535d30c1e1263755ad7f09b21c9f4fa = L.circleMarker(\\n\",\n       \"                [36.864, 118.78],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96d7047f8b707b75d38a1b769baf5347 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c79eaea2a69fa250ce6291e0ced9fd4 = $(`&lt;div id=&quot;html_9c79eaea2a69fa250ce6291e0ced9fd4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.78             latitude:36.864             PM2_5:52.04333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96d7047f8b707b75d38a1b769baf5347.setContent(html_9c79eaea2a69fa250ce6291e0ced9fd4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0535d30c1e1263755ad7f09b21c9f4fa.bindPopup(popup_96d7047f8b707b75d38a1b769baf5347)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37be1c5a8296ef4476ecba7acab5f390 = L.circleMarker(\\n\",\n       \"                [39.3179, 112.4254],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81a5267b7aded8c59f4cd41b08601068 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f37ee588b00385e2d4330e39ae28cad3 = $(`&lt;div id=&quot;html_f37ee588b00385e2d4330e39ae28cad3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4254             latitude:39.3179             PM2_5:46.64705882             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81a5267b7aded8c59f4cd41b08601068.setContent(html_f37ee588b00385e2d4330e39ae28cad3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37be1c5a8296ef4476ecba7acab5f390.bindPopup(popup_81a5267b7aded8c59f4cd41b08601068)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f781025801b0c23fbab2a2b331da31d = L.circleMarker(\\n\",\n       \"                [27.8344, 114.9831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a2a571907b9961fb392e1c425379c12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77b560fda15f49c9f3b29c95f5576f08 = $(`&lt;div id=&quot;html_77b560fda15f49c9f3b29c95f5576f08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9831             latitude:27.8344             PM2_5:41.76601671             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a2a571907b9961fb392e1c425379c12.setContent(html_77b560fda15f49c9f3b29c95f5576f08);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f781025801b0c23fbab2a2b331da31d.bindPopup(popup_7a2a571907b9961fb392e1c425379c12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a70cbf113afbb92be4c63c95660c7a06 = L.circleMarker(\\n\",\n       \"                [45.8167, 126.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ff2181f9316bf5c9f5eafb935b9ed1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24ea6f7a4a92ab1eda15f82c17dd6e1b = $(`&lt;div id=&quot;html_24ea6f7a4a92ab1eda15f82c17dd6e1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.561             latitude:45.8167             PM2_5:27.96121884             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ff2181f9316bf5c9f5eafb935b9ed1b.setContent(html_24ea6f7a4a92ab1eda15f82c17dd6e1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a70cbf113afbb92be4c63c95660c7a06.bindPopup(popup_1ff2181f9316bf5c9f5eafb935b9ed1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f31d4e367dbc76b9fb62df6224327cb = L.circleMarker(\\n\",\n       \"                [21.6533, 110.9294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_14ff951579f83a6a5a68575105d1635f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2709dd97feb23cdb85cb1c68569b593 = $(`&lt;div id=&quot;html_f2709dd97feb23cdb85cb1c68569b593&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9294             latitude:21.6533             PM2_5:25.79741379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_14ff951579f83a6a5a68575105d1635f.setContent(html_f2709dd97feb23cdb85cb1c68569b593);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f31d4e367dbc76b9fb62df6224327cb.bindPopup(popup_14ff951579f83a6a5a68575105d1635f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d313e58e31d709cb204b1f0ea0a798c = L.circleMarker(\\n\",\n       \"                [36.0725, 103.841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8759e44e5c61e115190ffdfcba997b2b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f05cada536e22baaaf22d20970de4e53 = $(`&lt;div id=&quot;html_f05cada536e22baaaf22d20970de4e53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.841             latitude:36.0725             PM2_5:48.85734463             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8759e44e5c61e115190ffdfcba997b2b.setContent(html_f05cada536e22baaaf22d20970de4e53);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d313e58e31d709cb204b1f0ea0a798c.bindPopup(popup_8759e44e5c61e115190ffdfcba997b2b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69c6a1fc22d58e2c0871e55f64e0bbb5 = L.circleMarker(\\n\",\n       \"                [36.39, 120.47],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5daeaf4920f23101c7ab6d0b9fe00379 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_741e14a587f51635ee97dcb8b109c6a4 = $(`&lt;div id=&quot;html_741e14a587f51635ee97dcb8b109c6a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.47             latitude:36.39             PM2_5:28.07303371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5daeaf4920f23101c7ab6d0b9fe00379.setContent(html_741e14a587f51635ee97dcb8b109c6a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69c6a1fc22d58e2c0871e55f64e0bbb5.bindPopup(popup_5daeaf4920f23101c7ab6d0b9fe00379)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d86075f941eaabd95a59379c6dcfe8e9 = L.circleMarker(\\n\",\n       \"                [46.0872, 85.6931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_784f667878268e3b15f5bd3fa2cf7cbe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b746b01a8b8138fdfdcda8e587ec2c0 = $(`&lt;div id=&quot;html_0b746b01a8b8138fdfdcda8e587ec2c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:85.6931             latitude:46.0872             PM2_5:28.31534091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_784f667878268e3b15f5bd3fa2cf7cbe.setContent(html_0b746b01a8b8138fdfdcda8e587ec2c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d86075f941eaabd95a59379c6dcfe8e9.bindPopup(popup_784f667878268e3b15f5bd3fa2cf7cbe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afb643f457c90e5307c382ea18cdc907 = L.circleMarker(\\n\",\n       \"                [36.799, 119.976],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1619f4d260390f1f5489c1a528c07638 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_79a2cc62409a4a7952a29bcff893db72 = $(`&lt;div id=&quot;html_79a2cc62409a4a7952a29bcff893db72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.976             latitude:36.799             PM2_5:34.60057471             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1619f4d260390f1f5489c1a528c07638.setContent(html_79a2cc62409a4a7952a29bcff893db72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afb643f457c90e5307c382ea18cdc907.bindPopup(popup_1619f4d260390f1f5489c1a528c07638)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_851df2fe606afd71596e8559ee74da39 = L.circleMarker(\\n\",\n       \"                [35.272, 113.884],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bcc51cdb4c3d8430aa2bc95d89a86cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5572ff329f6f10c51f5667037537c3a = $(`&lt;div id=&quot;html_d5572ff329f6f10c51f5667037537c3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.884             latitude:35.272             PM2_5:61.12534819             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bcc51cdb4c3d8430aa2bc95d89a86cc.setContent(html_d5572ff329f6f10c51f5667037537c3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_851df2fe606afd71596e8559ee74da39.bindPopup(popup_7bcc51cdb4c3d8430aa2bc95d89a86cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6fa3ef0af4a32cf5faa77fc7d821c77a = L.circleMarker(\\n\",\n       \"                [29.90166667, 121.6147222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49e84209fa8f4fdf2a14e0743f14e587 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f84b3cd29e7ee562fd12e5100502d40d = $(`&lt;div id=&quot;html_f84b3cd29e7ee562fd12e5100502d40d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6147222             latitude:29.90166667             PM2_5:33.82777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49e84209fa8f4fdf2a14e0743f14e587.setContent(html_f84b3cd29e7ee562fd12e5100502d40d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6fa3ef0af4a32cf5faa77fc7d821c77a.bindPopup(popup_49e84209fa8f4fdf2a14e0743f14e587)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68dee77b570a8ae24e0e3ca0b8da0309 = L.circleMarker(\\n\",\n       \"                [33.8561, 115.7831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42b05647b59e310810e3c659cc8552f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7f6ec05b79360ab69c81e5023a19656 = $(`&lt;div id=&quot;html_f7f6ec05b79360ab69c81e5023a19656&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.7831             latitude:33.8561             PM2_5:51.48280802             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42b05647b59e310810e3c659cc8552f2.setContent(html_f7f6ec05b79360ab69c81e5023a19656);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68dee77b570a8ae24e0e3ca0b8da0309.bindPopup(popup_42b05647b59e310810e3c659cc8552f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a2bc1425a62d35d52b8a036a8500a26 = L.circleMarker(\\n\",\n       \"                [43.9404, 81.2815],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c9f7b28946076fd91fb565f92f35d80 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_825093f8092cb1d7a05fe1988737723a = $(`&lt;div id=&quot;html_825093f8092cb1d7a05fe1988737723a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.2815             latitude:43.9404             PM2_5:48.26760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c9f7b28946076fd91fb565f92f35d80.setContent(html_825093f8092cb1d7a05fe1988737723a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a2bc1425a62d35d52b8a036a8500a26.bindPopup(popup_5c9f7b28946076fd91fb565f92f35d80)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_375cd75c0c0ed6b6b141e7e119ff7489 = L.circleMarker(\\n\",\n       \"                [34.3181, 108.6761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f57440c90be0eea7aa1946102ef57b96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6950470f4460043eb3a410c2cc326ecb = $(`&lt;div id=&quot;html_6950470f4460043eb3a410c2cc326ecb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6761             latitude:34.3181             PM2_5:64.58591549             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f57440c90be0eea7aa1946102ef57b96.setContent(html_6950470f4460043eb3a410c2cc326ecb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_375cd75c0c0ed6b6b141e7e119ff7489.bindPopup(popup_f57440c90be0eea7aa1946102ef57b96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d324d25699916bc6d2a7a54b9ea281c = L.circleMarker(\\n\",\n       \"                [30.7525, 120.7844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffdeef5932872397a8dd18e06cc281ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0411b386d1c9e05a9326db0766753dd4 = $(`&lt;div id=&quot;html_0411b386d1c9e05a9326db0766753dd4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.7844444             latitude:30.7525             PM2_5:40.42222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffdeef5932872397a8dd18e06cc281ed.setContent(html_0411b386d1c9e05a9326db0766753dd4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d324d25699916bc6d2a7a54b9ea281c.bindPopup(popup_ffdeef5932872397a8dd18e06cc281ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f865032dbd752a5d5831dde2998f3ada = L.circleMarker(\\n\",\n       \"                [31.7848, 117.196],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82eb0675f1d0520b75d770e77ebbe260 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9698addb18c61db2a042456bfd7877bc = $(`&lt;div id=&quot;html_9698addb18c61db2a042456bfd7877bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.196             latitude:31.7848             PM2_5:48.77949438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82eb0675f1d0520b75d770e77ebbe260.setContent(html_9698addb18c61db2a042456bfd7877bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f865032dbd752a5d5831dde2998f3ada.bindPopup(popup_82eb0675f1d0520b75d770e77ebbe260)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8a637437ab82156bf3c0290e018e0f47 = L.circleMarker(\\n\",\n       \"                [38.00583333, 114.4586111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c15c0f3e4b62b7b81ea74928ceaf21c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_478b56b56e10bf10bad83175378aeae6 = $(`&lt;div id=&quot;html_478b56b56e10bf10bad83175378aeae6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4586111             latitude:38.00583333             PM2_5:64.80532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c15c0f3e4b62b7b81ea74928ceaf21c0.setContent(html_478b56b56e10bf10bad83175378aeae6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8a637437ab82156bf3c0290e018e0f47.bindPopup(popup_c15c0f3e4b62b7b81ea74928ceaf21c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec8af561bf19ee9dca03e03a8d6313d6 = L.circleMarker(\\n\",\n       \"                [30.6872, 104.176],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9084c8264ddfe1023e4d17420982d9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe9a20fb1edbd373ffff2a441e79f4ff = $(`&lt;div id=&quot;html_fe9a20fb1edbd373ffff2a441e79f4ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.176             latitude:30.6872             PM2_5:55.30532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9084c8264ddfe1023e4d17420982d9c.setContent(html_fe9a20fb1edbd373ffff2a441e79f4ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec8af561bf19ee9dca03e03a8d6313d6.bindPopup(popup_f9084c8264ddfe1023e4d17420982d9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e20267b0fc2694841df7cad183d948b1 = L.circleMarker(\\n\",\n       \"                [34.29, 117.1814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba1118a8c8b0cbf904f36cfa587abd3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_759a7665f368c7a0a8bb4fe4d3e2262b = $(`&lt;div id=&quot;html_759a7665f368c7a0a8bb4fe4d3e2262b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1814             latitude:34.29             PM2_5:63.42997199             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba1118a8c8b0cbf904f36cfa587abd3a.setContent(html_759a7665f368c7a0a8bb4fe4d3e2262b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e20267b0fc2694841df7cad183d948b1.bindPopup(popup_ba1118a8c8b0cbf904f36cfa587abd3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a64b36b7b9a629d36020c4be6b6ea949 = L.circleMarker(\\n\",\n       \"                [45.5828, 84.8897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54d8ee40e448b4cad353b161a114716f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f6b698882d2331922dfdfeaf33acab4 = $(`&lt;div id=&quot;html_3f6b698882d2331922dfdfeaf33acab4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8897             latitude:45.5828             PM2_5:21.96296296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54d8ee40e448b4cad353b161a114716f.setContent(html_3f6b698882d2331922dfdfeaf33acab4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a64b36b7b9a629d36020c4be6b6ea949.bindPopup(popup_54d8ee40e448b4cad353b161a114716f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e869bb395b357f507e3a85789ce3d7d = L.circleMarker(\\n\",\n       \"                [30.7157, 111.3009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d73790311ed137ca195a6eb4331c2d30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9a1e0b3b2f5cf84c112632c28b7a2b76 = $(`&lt;div id=&quot;html_9a1e0b3b2f5cf84c112632c28b7a2b76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3009             latitude:30.7157             PM2_5:54.33893557             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d73790311ed137ca195a6eb4331c2d30.setContent(html_9a1e0b3b2f5cf84c112632c28b7a2b76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e869bb395b357f507e3a85789ce3d7d.bindPopup(popup_d73790311ed137ca195a6eb4331c2d30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_236a465d06fe8f183fe89b1b952b2b58 = L.circleMarker(\\n\",\n       \"                [30.1366, 104.6617],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82b202e9a34977d872583f916d554b91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36bf4d59d5d4f3abc33cde2d82786fd3 = $(`&lt;div id=&quot;html_36bf4d59d5d4f3abc33cde2d82786fd3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6617             latitude:30.1366             PM2_5:33.4432133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82b202e9a34977d872583f916d554b91.setContent(html_36bf4d59d5d4f3abc33cde2d82786fd3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_236a465d06fe8f183fe89b1b952b2b58.bindPopup(popup_82b202e9a34977d872583f916d554b91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48b1706ab176a4997a2236ca0febc08c = L.circleMarker(\\n\",\n       \"                [42.8775, 129.3675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49ecc63de2c5c738267acb747d014b4d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a739c6e52607513eb6c77d5c3451de9b = $(`&lt;div id=&quot;html_a739c6e52607513eb6c77d5c3451de9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.3675             latitude:42.8775             PM2_5:16.46751412             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49ecc63de2c5c738267acb747d014b4d.setContent(html_a739c6e52607513eb6c77d5c3451de9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48b1706ab176a4997a2236ca0febc08c.bindPopup(popup_49ecc63de2c5c738267acb747d014b4d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9895aaa15c1b1b49277257ed3d2e73c1 = L.circleMarker(\\n\",\n       \"                [34.7496, 113.5991],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6acaf7ac31cb6ac4e8a8f428873e6855 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af557359303a07b2d3439b5cc74f8e30 = $(`&lt;div id=&quot;html_af557359303a07b2d3439b5cc74f8e30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5991             latitude:34.7496             PM2_5:64.34520124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6acaf7ac31cb6ac4e8a8f428873e6855.setContent(html_af557359303a07b2d3439b5cc74f8e30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9895aaa15c1b1b49277257ed3d2e73c1.bindPopup(popup_6acaf7ac31cb6ac4e8a8f428873e6855)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b973ecc9d65d16712d490e09ef56fed5 = L.circleMarker(\\n\",\n       \"                [29.261, 91.7706],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4dca5decbbf7f8387076260eca4669e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_acf4076b09f9705c37cff529b869b9d1 = $(`&lt;div id=&quot;html_acf4076b09f9705c37cff529b869b9d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.7706             latitude:29.261             PM2_5:7.943313953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4dca5decbbf7f8387076260eca4669e.setContent(html_acf4076b09f9705c37cff529b869b9d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b973ecc9d65d16712d490e09ef56fed5.bindPopup(popup_d4dca5decbbf7f8387076260eca4669e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6261825fa0eebc73af92ebba36221ced = L.circleMarker(\\n\",\n       \"                [34.7967, 114.2886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_537fbbc2090ea3d0ebcb01343bb8a2f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c175f2121e51da7e1f9f8cd171f91c3 = $(`&lt;div id=&quot;html_9c175f2121e51da7e1f9f8cd171f91c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2886             latitude:34.7967             PM2_5:58.68994413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_537fbbc2090ea3d0ebcb01343bb8a2f9.setContent(html_9c175f2121e51da7e1f9f8cd171f91c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6261825fa0eebc73af92ebba36221ced.bindPopup(popup_537fbbc2090ea3d0ebcb01343bb8a2f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4568c30ea15ea63efc57f9f5dbe0603b = L.circleMarker(\\n\",\n       \"                [32.18888889, 119.4369444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96918e6786f792633ab6ef49f8588c4d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc863f6dd613e0040bcb5934816c2327 = $(`&lt;div id=&quot;html_bc863f6dd613e0040bcb5934816c2327&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.4369444             latitude:32.18888889             PM2_5:49.86908078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96918e6786f792633ab6ef49f8588c4d.setContent(html_bc863f6dd613e0040bcb5934816c2327);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4568c30ea15ea63efc57f9f5dbe0603b.bindPopup(popup_96918e6786f792633ab6ef49f8588c4d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f32f97502a92132aa0f8142230fd0204 = L.circleMarker(\\n\",\n       \"                [29.6747, 91.1221],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a85e10d7c686a0d0e973717ee69d74e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e6f34d0f60874d1624c92bc6e2b2b34 = $(`&lt;div id=&quot;html_1e6f34d0f60874d1624c92bc6e2b2b34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1221             latitude:29.6747             PM2_5:15.42241379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a85e10d7c686a0d0e973717ee69d74e.setContent(html_1e6f34d0f60874d1624c92bc6e2b2b34);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f32f97502a92132aa0f8142230fd0204.bindPopup(popup_6a85e10d7c686a0d0e973717ee69d74e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e45139220ac506bce0faca5e731a5a87 = L.circleMarker(\\n\",\n       \"                [22.0019, 100.7939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_537d847b321f73ec1299e5b87e7ca529 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c7e1d4ac88a36f483c3dc11ccdb92f93 = $(`&lt;div id=&quot;html_c7e1d4ac88a36f483c3dc11ccdb92f93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.7939             latitude:22.0019             PM2_5:25.28366762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_537d847b321f73ec1299e5b87e7ca529.setContent(html_c7e1d4ac88a36f483c3dc11ccdb92f93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e45139220ac506bce0faca5e731a5a87.bindPopup(popup_537d847b321f73ec1299e5b87e7ca529)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06f53dd1a8092d60b0aeccbbb8a16123 = L.circleMarker(\\n\",\n       \"                [34.7822, 111.19],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a23123818372a5dbcbc59a85a46a0b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1589507b2de3157df082027c76590edc = $(`&lt;div id=&quot;html_1589507b2de3157df082027c76590edc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.19             latitude:34.7822             PM2_5:56.6448468             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a23123818372a5dbcbc59a85a46a0b3.setContent(html_1589507b2de3157df082027c76590edc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06f53dd1a8092d60b0aeccbbb8a16123.bindPopup(popup_6a23123818372a5dbcbc59a85a46a0b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa66441a46742825bf107af2bcba1267 = L.circleMarker(\\n\",\n       \"                [26.8576, 100.2143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25ddec07c6b6873c3005bf4f5f988d1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e655de1263807282a0fe7c03f066a8c = $(`&lt;div id=&quot;html_7e655de1263807282a0fe7c03f066a8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2143             latitude:26.8576             PM2_5:19.28389831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25ddec07c6b6873c3005bf4f5f988d1d.setContent(html_7e655de1263807282a0fe7c03f066a8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa66441a46742825bf107af2bcba1267.bindPopup(popup_25ddec07c6b6873c3005bf4f5f988d1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_923d43a9c8affd03dad8d268a5df90b4 = L.circleMarker(\\n\",\n       \"                [36.61981, 114.4965],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbadceb2b3eb8974bb350e2f6ba9883b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_242672c1bce0908dcd8c2c8f3a144365 = $(`&lt;div id=&quot;html_242672c1bce0908dcd8c2c8f3a144365&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4965             latitude:36.61981             PM2_5:70.51810585             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbadceb2b3eb8974bb350e2f6ba9883b.setContent(html_242672c1bce0908dcd8c2c8f3a144365);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_923d43a9c8affd03dad8d268a5df90b4.bindPopup(popup_dbadceb2b3eb8974bb350e2f6ba9883b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4009744de837e0cbd41d12e0b9b97a59 = L.circleMarker(\\n\",\n       \"                [32.3292, 119.8767],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_222937c87ed2313f50489f299f314f9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5efc5ac483a2e8be9790c1529968382c = $(`&lt;div id=&quot;html_5efc5ac483a2e8be9790c1529968382c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.8767             latitude:32.3292             PM2_5:46.44334278             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_222937c87ed2313f50489f299f314f9c.setContent(html_5efc5ac483a2e8be9790c1529968382c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4009744de837e0cbd41d12e0b9b97a59.bindPopup(popup_222937c87ed2313f50489f299f314f9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08883033c60fde097b83dfc31e92658f = L.circleMarker(\\n\",\n       \"                [34.2778, 117.2933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_600634c0fe8da1409c33da4bf745e254 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42898006fc9a5fec72120707e622f568 = $(`&lt;div id=&quot;html_42898006fc9a5fec72120707e622f568&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2933             latitude:34.2778             PM2_5:67.94117647             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_600634c0fe8da1409c33da4bf745e254.setContent(html_42898006fc9a5fec72120707e622f568);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08883033c60fde097b83dfc31e92658f.bindPopup(popup_600634c0fe8da1409c33da4bf745e254)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d2f919d1235f45fc0889a2e76f02648 = L.circleMarker(\\n\",\n       \"                [37.3803, 118.0062],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52f39a41ec5162f2727c4ef8eb4b226b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3069931b20036fab54ec66b6b333947 = $(`&lt;div id=&quot;html_a3069931b20036fab54ec66b6b333947&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0062             latitude:37.3803             PM2_5:57.56779661             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52f39a41ec5162f2727c4ef8eb4b226b.setContent(html_a3069931b20036fab54ec66b6b333947);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d2f919d1235f45fc0889a2e76f02648.bindPopup(popup_52f39a41ec5162f2727c4ef8eb4b226b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92d857b56a734c5418fe89c6389db586 = L.circleMarker(\\n\",\n       \"                [29.8272, 106.379],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a75c12a98696646487efa9358fb756b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3333f03f6fb5ef7cf1bd393c720fd107 = $(`&lt;div id=&quot;html_3333f03f6fb5ef7cf1bd393c720fd107&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.379             latitude:29.8272             PM2_5:31.79189944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a75c12a98696646487efa9358fb756b.setContent(html_3333f03f6fb5ef7cf1bd393c720fd107);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92d857b56a734c5418fe89c6389db586.bindPopup(popup_9a75c12a98696646487efa9358fb756b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9937623f09bc4834c41d9fb360a09f61 = L.circleMarker(\\n\",\n       \"                [28.6425, 115.892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b19247cbbd277f6eab7b5d39ae86a4a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ceba60a5131900d592877d8e496d179e = $(`&lt;div id=&quot;html_ceba60a5131900d592877d8e496d179e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.892             latitude:28.6425             PM2_5:36.65598886             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b19247cbbd277f6eab7b5d39ae86a4a4.setContent(html_ceba60a5131900d592877d8e496d179e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9937623f09bc4834c41d9fb360a09f61.bindPopup(popup_b19247cbbd277f6eab7b5d39ae86a4a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c235840bfde2dd58748078552012139 = L.circleMarker(\\n\",\n       \"                [39.0511, 121.7769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c9e2d0b13cd105005e722572fce3a5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a01907772aeeda20da9ba108cac06bc = $(`&lt;div id=&quot;html_4a01907772aeeda20da9ba108cac06bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.7769             latitude:39.0511             PM2_5:29.50833333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c9e2d0b13cd105005e722572fce3a5a.setContent(html_4a01907772aeeda20da9ba108cac06bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c235840bfde2dd58748078552012139.bindPopup(popup_1c9e2d0b13cd105005e722572fce3a5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d70d1d19844f310902e11e3788ccf533 = L.circleMarker(\\n\",\n       \"                [39.3265, 112.4078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbc509bfead56028767bf26d1999280d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_757505ed1e7d69e1e5741bdaf6bee55f = $(`&lt;div id=&quot;html_757505ed1e7d69e1e5741bdaf6bee55f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4078             latitude:39.3265             PM2_5:48.93417367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbc509bfead56028767bf26d1999280d.setContent(html_757505ed1e7d69e1e5741bdaf6bee55f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d70d1d19844f310902e11e3788ccf533.bindPopup(popup_bbc509bfead56028767bf26d1999280d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67c6509fb21a4c05cd38fa2fb5883c4b = L.circleMarker(\\n\",\n       \"                [37.7575, 115.6951],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9ad7971868d95e7d0145c0fd478343a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59a31a2e668a904a563cb5b4c57e2cbb = $(`&lt;div id=&quot;html_59a31a2e668a904a563cb5b4c57e2cbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6951             latitude:37.7575             PM2_5:58.14285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9ad7971868d95e7d0145c0fd478343a.setContent(html_59a31a2e668a904a563cb5b4c57e2cbb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67c6509fb21a4c05cd38fa2fb5883c4b.bindPopup(popup_e9ad7971868d95e7d0145c0fd478343a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60c00f54d46e1241cc7bdc2345b74b45 = L.circleMarker(\\n\",\n       \"                [42.2814, 118.9233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af7ba7be1d7707342179adb4f1d1a7ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90145d238b3c08adcab4511885ec6338 = $(`&lt;div id=&quot;html_90145d238b3c08adcab4511885ec6338&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9233             latitude:42.2814             PM2_5:24.72268908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af7ba7be1d7707342179adb4f1d1a7ca.setContent(html_90145d238b3c08adcab4511885ec6338);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60c00f54d46e1241cc7bdc2345b74b45.bindPopup(popup_af7ba7be1d7707342179adb4f1d1a7ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cdb0749c5af00af3d62e4d818f9a409 = L.circleMarker(\\n\",\n       \"                [33.027, 112.5573],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f363a859151856593da4914ac5771b52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d41aa1ab989efc9a15dd45d936d737fa = $(`&lt;div id=&quot;html_d41aa1ab989efc9a15dd45d936d737fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5573             latitude:33.027             PM2_5:60.09610028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f363a859151856593da4914ac5771b52.setContent(html_d41aa1ab989efc9a15dd45d936d737fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cdb0749c5af00af3d62e4d818f9a409.bindPopup(popup_f363a859151856593da4914ac5771b52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1865b512b670d2ef247337853572849a = L.circleMarker(\\n\",\n       \"                [35.3962, 119.54],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0ca07d61733439d6131a49341454b65 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bba4c06b23fa5bbc19e4baeb5667c1ed = $(`&lt;div id=&quot;html_bba4c06b23fa5bbc19e4baeb5667c1ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.54             latitude:35.3962             PM2_5:42.57464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0ca07d61733439d6131a49341454b65.setContent(html_bba4c06b23fa5bbc19e4baeb5667c1ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1865b512b670d2ef247337853572849a.bindPopup(popup_b0ca07d61733439d6131a49341454b65)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_054fafed2794c7c9c3c375cdfcde6c45 = L.circleMarker(\\n\",\n       \"                [21.5958, 109.2256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b8b1b7a28bf0caa13ebdc3d9b8d3ed8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_41fa1db61b3ad97402d3a988064f5122 = $(`&lt;div id=&quot;html_41fa1db61b3ad97402d3a988064f5122&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2256             latitude:21.5958             PM2_5:34.31700288             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b8b1b7a28bf0caa13ebdc3d9b8d3ed8.setContent(html_41fa1db61b3ad97402d3a988064f5122);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_054fafed2794c7c9c3c375cdfcde6c45.bindPopup(popup_3b8b1b7a28bf0caa13ebdc3d9b8d3ed8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19195610b65a8a59b392ed0b991af405 = L.circleMarker(\\n\",\n       \"                [35.31, 113.836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02e69080f50cc7f35bc32bcd5f8b20bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d061570fab71d3f3d10bfe99f255ebb = $(`&lt;div id=&quot;html_0d061570fab71d3f3d10bfe99f255ebb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.836             latitude:35.31             PM2_5:57.52793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02e69080f50cc7f35bc32bcd5f8b20bc.setContent(html_0d061570fab71d3f3d10bfe99f255ebb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19195610b65a8a59b392ed0b991af405.bindPopup(popup_02e69080f50cc7f35bc32bcd5f8b20bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dda02242019ba10aca54f05679ab7b48 = L.circleMarker(\\n\",\n       \"                [43.55, 125.633],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd3b087d910554c45b169c1052012b59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1129f74a080e6155fe4ec0651a6e298 = $(`&lt;div id=&quot;html_c1129f74a080e6155fe4ec0651a6e298&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.633             latitude:43.55             PM2_5:26.19602273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd3b087d910554c45b169c1052012b59.setContent(html_c1129f74a080e6155fe4ec0651a6e298);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dda02242019ba10aca54f05679ab7b48.bindPopup(popup_dd3b087d910554c45b169c1052012b59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bbc8ed15ef9ada2a227a4326b56edd4f = L.circleMarker(\\n\",\n       \"                [28.6844, 115.931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0e5b5079a143948c45366b1ae6989f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b877f241fc0fba9b8fad5232b280902f = $(`&lt;div id=&quot;html_b877f241fc0fba9b8fad5232b280902f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.931             latitude:28.6844             PM2_5:35.57244318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0e5b5079a143948c45366b1ae6989f5.setContent(html_b877f241fc0fba9b8fad5232b280902f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bbc8ed15ef9ada2a227a4326b56edd4f.bindPopup(popup_d0e5b5079a143948c45366b1ae6989f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_960281e20e3c97bec8327514a9a85304 = L.circleMarker(\\n\",\n       \"                [35.4813, 112.8252],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25da3a0d4ef0dbbd0ce752dc572df177 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a11133ad88b3a73e54bc2c29fbf1b962 = $(`&lt;div id=&quot;html_a11133ad88b3a73e54bc2c29fbf1b962&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8252             latitude:35.4813             PM2_5:60.03361345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25da3a0d4ef0dbbd0ce752dc572df177.setContent(html_a11133ad88b3a73e54bc2c29fbf1b962);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_960281e20e3c97bec8327514a9a85304.bindPopup(popup_25da3a0d4ef0dbbd0ce752dc572df177)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6bd9339e9615a6d93f4b644e2657e114 = L.circleMarker(\\n\",\n       \"                [30.2897, 120.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0a982a91cb918899ba8844d8a6ab220 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e260fc29df032d0852092104051549b = $(`&lt;div id=&quot;html_6e260fc29df032d0852092104051549b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.157             latitude:30.2897             PM2_5:50.10972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0a982a91cb918899ba8844d8a6ab220.setContent(html_6e260fc29df032d0852092104051549b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6bd9339e9615a6d93f4b644e2657e114.bindPopup(popup_b0a982a91cb918899ba8844d8a6ab220)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7dfb4ed2c0c36ea44213adbc55a99d88 = L.circleMarker(\\n\",\n       \"                [30.049, 119.946],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_162f5ac13ba65f6b8db6eb293057df5e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_514feb337a628febeeb282f27f7c0925 = $(`&lt;div id=&quot;html_514feb337a628febeeb282f27f7c0925&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.946             latitude:30.049             PM2_5:31.72916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_162f5ac13ba65f6b8db6eb293057df5e.setContent(html_514feb337a628febeeb282f27f7c0925);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7dfb4ed2c0c36ea44213adbc55a99d88.bindPopup(popup_162f5ac13ba65f6b8db6eb293057df5e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23fd6bc03a1ac36de3d15261366f4429 = L.circleMarker(\\n\",\n       \"                [32.0878, 118.626],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8424790ab58dc8f11ee8361d5752f8b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b99fe603d22709a6a7422881e89d01fc = $(`&lt;div id=&quot;html_b99fe603d22709a6a7422881e89d01fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.626             latitude:32.0878             PM2_5:38.83383686             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8424790ab58dc8f11ee8361d5752f8b9.setContent(html_b99fe603d22709a6a7422881e89d01fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23fd6bc03a1ac36de3d15261366f4429.bindPopup(popup_8424790ab58dc8f11ee8361d5752f8b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_256eec2b0109be6673cc7bcaeae42020 = L.circleMarker(\\n\",\n       \"                [36.6164, 114.5426],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_481f1a87047f7425cb6455cbdfdaad2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a56ad776edd6751a9101312a92e68823 = $(`&lt;div id=&quot;html_a56ad776edd6751a9101312a92e68823&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5426             latitude:36.6164             PM2_5:75.5491573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_481f1a87047f7425cb6455cbdfdaad2f.setContent(html_a56ad776edd6751a9101312a92e68823);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_256eec2b0109be6673cc7bcaeae42020.bindPopup(popup_481f1a87047f7425cb6455cbdfdaad2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec4af7acf48ff1368434b902b08e2297 = L.circleMarker(\\n\",\n       \"                [46.8025, 130.2719],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee139b2b31b929e6b4eced9aa57c47aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19e3c0b1ed0036d254d027f58f9c7506 = $(`&lt;div id=&quot;html_19e3c0b1ed0036d254d027f58f9c7506&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.2719             latitude:46.8025             PM2_5:28.64647887             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee139b2b31b929e6b4eced9aa57c47aa.setContent(html_19e3c0b1ed0036d254d027f58f9c7506);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec4af7acf48ff1368434b902b08e2297.bindPopup(popup_ee139b2b31b929e6b4eced9aa57c47aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7896e784ef1ef6d40d5998a2221e802d = L.circleMarker(\\n\",\n       \"                [23.6714, 116.6339],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44642fe63d197e7a8c3ebf287821aaf2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_098fae0cffb26b1a07e4bf77fa8bb5e6 = $(`&lt;div id=&quot;html_098fae0cffb26b1a07e4bf77fa8bb5e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6339             latitude:23.6714             PM2_5:29.08888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44642fe63d197e7a8c3ebf287821aaf2.setContent(html_098fae0cffb26b1a07e4bf77fa8bb5e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7896e784ef1ef6d40d5998a2221e802d.bindPopup(popup_44642fe63d197e7a8c3ebf287821aaf2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d7c74979c7de98e774d18b4a5240e83 = L.circleMarker(\\n\",\n       \"                [41.1933, 80.2956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_674fbf9ba22d11bb6e89ed642fc59e30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c093dea260707bae88193ef8e25b9d0 = $(`&lt;div id=&quot;html_3c093dea260707bae88193ef8e25b9d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2956             latitude:41.1933             PM2_5:69.5377095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_674fbf9ba22d11bb6e89ed642fc59e30.setContent(html_3c093dea260707bae88193ef8e25b9d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d7c74979c7de98e774d18b4a5240e83.bindPopup(popup_674fbf9ba22d11bb6e89ed642fc59e30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18e3534055a7c8eb90d874a39a6aa0fc = L.circleMarker(\\n\",\n       \"                [38.9467, 100.4686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82b509360125aa4d6a936b8b0fd757e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_250be4206ff33b5136308a44d9100e9a = $(`&lt;div id=&quot;html_250be4206ff33b5136308a44d9100e9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.4686             latitude:38.9467             PM2_5:19.8             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82b509360125aa4d6a936b8b0fd757e7.setContent(html_250be4206ff33b5136308a44d9100e9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18e3534055a7c8eb90d874a39a6aa0fc.bindPopup(popup_82b509360125aa4d6a936b8b0fd757e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f32f6bd3b8ee84430fe4f3afd40df1e = L.circleMarker(\\n\",\n       \"                [22.6069, 113.104],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e1754402da896d4b69d924ca1e1d4ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6ee84032ab26faa83c566e09d7efba7 = $(`&lt;div id=&quot;html_f6ee84032ab26faa83c566e09d7efba7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.104             latitude:22.6069             PM2_5:37.28011204             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e1754402da896d4b69d924ca1e1d4ea.setContent(html_f6ee84032ab26faa83c566e09d7efba7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f32f6bd3b8ee84430fe4f3afd40df1e.bindPopup(popup_2e1754402da896d4b69d924ca1e1d4ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b9726def53e0694bcdb16efa1031afe = L.circleMarker(\\n\",\n       \"                [30.2028, 115.0767],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3519fa04a9833975cc94d50d5a59f675 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb5f587f1b0e150b96c047b98b5d0403 = $(`&lt;div id=&quot;html_cb5f587f1b0e150b96c047b98b5d0403&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0767             latitude:30.2028             PM2_5:54.00704225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3519fa04a9833975cc94d50d5a59f675.setContent(html_cb5f587f1b0e150b96c047b98b5d0403);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b9726def53e0694bcdb16efa1031afe.bindPopup(popup_3519fa04a9833975cc94d50d5a59f675)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15659441dae060466bb643b27cf95600 = L.circleMarker(\\n\",\n       \"                [40.7608, 107.4211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5d48bd24bd791b4fbc823c764b0e740 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9cd49648272726704dd4caad7040860a = $(`&lt;div id=&quot;html_9cd49648272726704dd4caad7040860a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4211             latitude:40.7608             PM2_5:25.21610169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5d48bd24bd791b4fbc823c764b0e740.setContent(html_9cd49648272726704dd4caad7040860a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15659441dae060466bb643b27cf95600.bindPopup(popup_e5d48bd24bd791b4fbc823c764b0e740)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00a7ea2f3c232bf0c250f6ae601f4486 = L.circleMarker(\\n\",\n       \"                [41.7128, 86.2381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2158fd534a7c4246511d41a6f084af73 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_113458371232e376fc3f7f96bae5dc11 = $(`&lt;div id=&quot;html_113458371232e376fc3f7f96bae5dc11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.2381             latitude:41.7128             PM2_5:41.54929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2158fd534a7c4246511d41a6f084af73.setContent(html_113458371232e376fc3f7f96bae5dc11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00a7ea2f3c232bf0c250f6ae601f4486.bindPopup(popup_2158fd534a7c4246511d41a6f084af73)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80fdd038f55a4594ee9a2ca2e74b37d5 = L.circleMarker(\\n\",\n       \"                [43.8256, 126.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5cc3515e9133dc01e13088c7672bb4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0cab87f1092d3e01bf1a0a6e4fe5ee36 = $(`&lt;div id=&quot;html_0cab87f1092d3e01bf1a0a6e4fe5ee36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.55             latitude:43.8256             PM2_5:32.43871866             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5cc3515e9133dc01e13088c7672bb4c.setContent(html_0cab87f1092d3e01bf1a0a6e4fe5ee36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80fdd038f55a4594ee9a2ca2e74b37d5.bindPopup(popup_a5cc3515e9133dc01e13088c7672bb4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_766133cfdd71ead308c8e4e4a5861b0a = L.circleMarker(\\n\",\n       \"                [31.2994, 120.543],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_72ca69055cefd4b19b1db65a4b9acd30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5efeabeaf03c6d7b4611d538bfbe70bb = $(`&lt;div id=&quot;html_5efeabeaf03c6d7b4611d538bfbe70bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.543             latitude:31.2994             PM2_5:40.22777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_72ca69055cefd4b19b1db65a4b9acd30.setContent(html_5efeabeaf03c6d7b4611d538bfbe70bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_766133cfdd71ead308c8e4e4a5861b0a.bindPopup(popup_72ca69055cefd4b19b1db65a4b9acd30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1317a12f6e2717d9811b8d54a92cbae = L.circleMarker(\\n\",\n       \"                [26.2331, 111.6236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c860dd6d95190749da5a2b01868dc161 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78b0bff97f2096a7e15edf15c2c0ac5c = $(`&lt;div id=&quot;html_78b0bff97f2096a7e15edf15c2c0ac5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6236             latitude:26.2331             PM2_5:39.27011494             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c860dd6d95190749da5a2b01868dc161.setContent(html_78b0bff97f2096a7e15edf15c2c0ac5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1317a12f6e2717d9811b8d54a92cbae.bindPopup(popup_c860dd6d95190749da5a2b01868dc161)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_978565257febd81cd89fd82a5f51618e = L.circleMarker(\\n\",\n       \"                [24.506, 117.7116],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffb67b77182ea97567cd79a13e831c37 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c8ac9f4be44add3355397815887c4738 = $(`&lt;div id=&quot;html_c8ac9f4be44add3355397815887c4738&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7116             latitude:24.506             PM2_5:32.09052925             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffb67b77182ea97567cd79a13e831c37.setContent(html_c8ac9f4be44add3355397815887c4738);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_978565257febd81cd89fd82a5f51618e.bindPopup(popup_ffb67b77182ea97567cd79a13e831c37)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b7519642dbd0a1716fcc0336df03cc7 = L.circleMarker(\\n\",\n       \"                [26.0931, 119.58],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a282dbee2f0dd173662b25b160830f28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e9952464110fd3601b6f8439bb989ca = $(`&lt;div id=&quot;html_3e9952464110fd3601b6f8439bb989ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.58             latitude:26.0931             PM2_5:24.6103352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a282dbee2f0dd173662b25b160830f28.setContent(html_3e9952464110fd3601b6f8439bb989ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b7519642dbd0a1716fcc0336df03cc7.bindPopup(popup_a282dbee2f0dd173662b25b160830f28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a13a0d40651fde70a3000e6e0aba7ac = L.circleMarker(\\n\",\n       \"                [23.0048, 113.134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d2e471dec29fc3d5ac2bfd562fe42e94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c9f2d362c3b4247c6e87a44960f32ce = $(`&lt;div id=&quot;html_9c9f2d362c3b4247c6e87a44960f32ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.134             latitude:23.0048             PM2_5:35.82152975             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d2e471dec29fc3d5ac2bfd562fe42e94.setContent(html_9c9f2d362c3b4247c6e87a44960f32ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a13a0d40651fde70a3000e6e0aba7ac.bindPopup(popup_d2e471dec29fc3d5ac2bfd562fe42e94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eca089680d41043aa8de66c1691141b4 = L.circleMarker(\\n\",\n       \"                [26.2403, 107.5228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_568797e6d72fca832261bf9612c8b234 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf31c6742f70f746da7d2f0d93927925 = $(`&lt;div id=&quot;html_bf31c6742f70f746da7d2f0d93927925&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5228             latitude:26.2403             PM2_5:23.11350575             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_568797e6d72fca832261bf9612c8b234.setContent(html_bf31c6742f70f746da7d2f0d93927925);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eca089680d41043aa8de66c1691141b4.bindPopup(popup_568797e6d72fca832261bf9612c8b234)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54f624f56a288c94acdf6354aa3cec65 = L.circleMarker(\\n\",\n       \"                [38.2911, 109.7456],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d5c968b389d59c7b0dc62e46a1a7336 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48fb624bffba28b0e9912e86785d7a29 = $(`&lt;div id=&quot;html_48fb624bffba28b0e9912e86785d7a29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7456             latitude:38.2911             PM2_5:29.62570621             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d5c968b389d59c7b0dc62e46a1a7336.setContent(html_48fb624bffba28b0e9912e86785d7a29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54f624f56a288c94acdf6354aa3cec65.bindPopup(popup_3d5c968b389d59c7b0dc62e46a1a7336)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d706b0636830d493acf44fe65fbf0ab = L.circleMarker(\\n\",\n       \"                [46.6384, 126.9934],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56ac9c921868c56db01dc16940018a56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6522c7a93a1db75760e6a7791c0fc79d = $(`&lt;div id=&quot;html_6522c7a93a1db75760e6a7791c0fc79d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.9934             latitude:46.6384             PM2_5:29.89728097             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56ac9c921868c56db01dc16940018a56.setContent(html_6522c7a93a1db75760e6a7791c0fc79d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d706b0636830d493acf44fe65fbf0ab.bindPopup(popup_56ac9c921868c56db01dc16940018a56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be1082503f0d6b1305be5fabf5c2a042 = L.circleMarker(\\n\",\n       \"                [28.1944, 113.0014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7ea801f9e3ebec19b13d35939599dfd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a37ccdb6659e8818874e6bae154a0d0d = $(`&lt;div id=&quot;html_a37ccdb6659e8818874e6bae154a0d0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0014             latitude:28.1944             PM2_5:52.33757062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7ea801f9e3ebec19b13d35939599dfd.setContent(html_a37ccdb6659e8818874e6bae154a0d0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be1082503f0d6b1305be5fabf5c2a042.bindPopup(popup_a7ea801f9e3ebec19b13d35939599dfd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fc4563512624d5281dd7e0e9e94def8 = L.circleMarker(\\n\",\n       \"                [33.0706, 107.0154],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6ac1bef9e1f107ee9adf1d4ee2a03d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed56fcf6cec0f0715ba1fea9a8b46da3 = $(`&lt;div id=&quot;html_ed56fcf6cec0f0715ba1fea9a8b46da3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0154             latitude:33.0706             PM2_5:47.69553073             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6ac1bef9e1f107ee9adf1d4ee2a03d5.setContent(html_ed56fcf6cec0f0715ba1fea9a8b46da3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fc4563512624d5281dd7e0e9e94def8.bindPopup(popup_a6ac1bef9e1f107ee9adf1d4ee2a03d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a69967e9ce681a85a147aec0b87f7568 = L.circleMarker(\\n\",\n       \"                [28.2403, 117.0281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a43e258677be70f7958afb89669875c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ccb2ea87f833fb5d9ca48391c068944 = $(`&lt;div id=&quot;html_2ccb2ea87f833fb5d9ca48391c068944&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0281             latitude:28.2403             PM2_5:34.53501401             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a43e258677be70f7958afb89669875c9.setContent(html_2ccb2ea87f833fb5d9ca48391c068944);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a69967e9ce681a85a147aec0b87f7568.bindPopup(popup_a43e258677be70f7958afb89669875c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be1aee1bc75a06f8cf675ca19c27cc5c = L.circleMarker(\\n\",\n       \"                [27.8036, 114.9314],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3cc2b7fc409480d68e3da41a399f4f96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8b7bc308c605bbb4c800a8acebb3a01 = $(`&lt;div id=&quot;html_e8b7bc308c605bbb4c800a8acebb3a01&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9314             latitude:27.8036             PM2_5:42.52089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3cc2b7fc409480d68e3da41a399f4f96.setContent(html_e8b7bc308c605bbb4c800a8acebb3a01);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be1aee1bc75a06f8cf675ca19c27cc5c.bindPopup(popup_3cc2b7fc409480d68e3da41a399f4f96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f914b3cb6fa46b85c66a9e84d14c5602 = L.circleMarker(\\n\",\n       \"                [27.7314, 112.0194],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3de616c3561bd58866b4af67773eb4d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_87c8dd2e72e1d3eef7f52ad2f09a8e10 = $(`&lt;div id=&quot;html_87c8dd2e72e1d3eef7f52ad2f09a8e10&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0194             latitude:27.7314             PM2_5:31.31779661             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3de616c3561bd58866b4af67773eb4d.setContent(html_87c8dd2e72e1d3eef7f52ad2f09a8e10);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f914b3cb6fa46b85c66a9e84d14c5602.bindPopup(popup_a3de616c3561bd58866b4af67773eb4d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afa0be12babb484a3a40d632e07f3ed7 = L.circleMarker(\\n\",\n       \"                [39.0845, 117.1589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80f566bd3bbc6abf7ffcba2af0935338 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55423506be06227c9c922ad5b5beb85a = $(`&lt;div id=&quot;html_55423506be06227c9c922ad5b5beb85a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1589             latitude:39.0845             PM2_5:50.49011299             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80f566bd3bbc6abf7ffcba2af0935338.setContent(html_55423506be06227c9c922ad5b5beb85a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afa0be12babb484a3a40d632e07f3ed7.bindPopup(popup_80f566bd3bbc6abf7ffcba2af0935338)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f532c65e8d6d18c91356e621c47e9dc4 = L.circleMarker(\\n\",\n       \"                [31.354, 119.818],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f82eb282da66e13689277ade62ced42b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3aa0ba4f0cc3ae4168431e221ca604e = $(`&lt;div id=&quot;html_d3aa0ba4f0cc3ae4168431e221ca604e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.818             latitude:31.354             PM2_5:47.49582173             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f82eb282da66e13689277ade62ced42b.setContent(html_d3aa0ba4f0cc3ae4168431e221ca604e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f532c65e8d6d18c91356e621c47e9dc4.bindPopup(popup_f82eb282da66e13689277ade62ced42b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d929981f3c79600addbbb9bc867a888d = L.circleMarker(\\n\",\n       \"                [33.9506, 118.3214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33aea697ed2cf21d5b5acd41624e77c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1eb04f5335162a1061a81b16e208ec6 = $(`&lt;div id=&quot;html_c1eb04f5335162a1061a81b16e208ec6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3214             latitude:33.9506             PM2_5:54.23463687             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33aea697ed2cf21d5b5acd41624e77c1.setContent(html_c1eb04f5335162a1061a81b16e208ec6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d929981f3c79600addbbb9bc867a888d.bindPopup(popup_33aea697ed2cf21d5b5acd41624e77c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e1d05849eeadd5edf01b6de3019388d = L.circleMarker(\\n\",\n       \"                [35.0003, 102.905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60c061ec4e2074106d8e9c833f76849d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_707b1bc92592ee42a0b14ce2a600b032 = $(`&lt;div id=&quot;html_707b1bc92592ee42a0b14ce2a600b032&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.905             latitude:35.0003             PM2_5:27.56901408             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60c061ec4e2074106d8e9c833f76849d.setContent(html_707b1bc92592ee42a0b14ce2a600b032);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e1d05849eeadd5edf01b6de3019388d.bindPopup(popup_60c061ec4e2074106d8e9c833f76849d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4894b22730a9d2a3c4332d8001332085 = L.circleMarker(\\n\",\n       \"                [31.2071, 121.577],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1a9de0809d4c722bfe8b8534aff7e40 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6177a367daa2c70852405da020926d2 = $(`&lt;div id=&quot;html_b6177a367daa2c70852405da020926d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.577             latitude:31.2071             PM2_5:40.78472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1a9de0809d4c722bfe8b8534aff7e40.setContent(html_b6177a367daa2c70852405da020926d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4894b22730a9d2a3c4332d8001332085.bindPopup(popup_a1a9de0809d4c722bfe8b8534aff7e40)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15cfa3597ee4d6956c382cbda9e5dee0 = L.circleMarker(\\n\",\n       \"                [32.0197, 112.155],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1770f376f608b106fa3050d080ddad5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a9a7369c175e2840ee67619fe584653 = $(`&lt;div id=&quot;html_0a9a7369c175e2840ee67619fe584653&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.155             latitude:32.0197             PM2_5:64.06741573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1770f376f608b106fa3050d080ddad5.setContent(html_0a9a7369c175e2840ee67619fe584653);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15cfa3597ee4d6956c382cbda9e5dee0.bindPopup(popup_f1770f376f608b106fa3050d080ddad5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_079cbc5ca23922856c7c8e6cd143863f = L.circleMarker(\\n\",\n       \"                [37.364, 120.394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffd1e2ff672f59fdd976ad3778d1d2d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4fad7fbedea3785bbb3f7fdf98b7840 = $(`&lt;div id=&quot;html_b4fad7fbedea3785bbb3f7fdf98b7840&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.394             latitude:37.364             PM2_5:30.69662921             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffd1e2ff672f59fdd976ad3778d1d2d4.setContent(html_b4fad7fbedea3785bbb3f7fdf98b7840);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_079cbc5ca23922856c7c8e6cd143863f.bindPopup(popup_ffd1e2ff672f59fdd976ad3778d1d2d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_302e7e4eb2a2de16e7f9d275f21caf4c = L.circleMarker(\\n\",\n       \"                [31.5072, 104.7283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e420c4fc5eba17f553e88f0f3ae49801 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b60cdcb8d92830e8cce59b4f7932c9f3 = $(`&lt;div id=&quot;html_b60cdcb8d92830e8cce59b4f7932c9f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7283             latitude:31.5072             PM2_5:50.53472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e420c4fc5eba17f553e88f0f3ae49801.setContent(html_b60cdcb8d92830e8cce59b4f7932c9f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_302e7e4eb2a2de16e7f9d275f21caf4c.bindPopup(popup_e420c4fc5eba17f553e88f0f3ae49801)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4cf93585a2af800956bd56ce535d97ff = L.circleMarker(\\n\",\n       \"                [36.8041, 117.8512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67648b002b8ac15008a1c0602438d19b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c153dc2b20f2d008a796200ccf83cef3 = $(`&lt;div id=&quot;html_c153dc2b20f2d008a796200ccf83cef3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8512             latitude:36.8041             PM2_5:56.51267606             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67648b002b8ac15008a1c0602438d19b.setContent(html_c153dc2b20f2d008a796200ccf83cef3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4cf93585a2af800956bd56ce535d97ff.bindPopup(popup_67648b002b8ac15008a1c0602438d19b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11de23cbb77eb56c3d69c3a83e4a0e5e = L.circleMarker(\\n\",\n       \"                [36.913, 121.531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2adb0bd20ab81084f22a442f8f81f03c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a30afc098876f791e25bfa5649872f2a = $(`&lt;div id=&quot;html_a30afc098876f791e25bfa5649872f2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.531             latitude:36.913             PM2_5:20.8988604             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2adb0bd20ab81084f22a442f8f81f03c.setContent(html_a30afc098876f791e25bfa5649872f2a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11de23cbb77eb56c3d69c3a83e4a0e5e.bindPopup(popup_2adb0bd20ab81084f22a442f8f81f03c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ceb9db389cd1f92a8ec3f22f2b56ba8 = L.circleMarker(\\n\",\n       \"                [34.5885, 119.176],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4bd4b5e9997ae50a9146f5ba35affb32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6322fb41182c5f5f5b74de6bda89cb6 = $(`&lt;div id=&quot;html_a6322fb41182c5f5f5b74de6bda89cb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.176             latitude:34.5885             PM2_5:42.12256267             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4bd4b5e9997ae50a9146f5ba35affb32.setContent(html_a6322fb41182c5f5f5b74de6bda89cb6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ceb9db389cd1f92a8ec3f22f2b56ba8.bindPopup(popup_4bd4b5e9997ae50a9146f5ba35affb32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adcf2cf241739ae3e3e45b490a7a610d = L.circleMarker(\\n\",\n       \"                [34.7745, 113.641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7fd58bf96238e0033c8461431f969e15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed285ee1d1a91c3e42de5c0ec43599d5 = $(`&lt;div id=&quot;html_ed285ee1d1a91c3e42de5c0ec43599d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.641             latitude:34.7745             PM2_5:63.62078652             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7fd58bf96238e0033c8461431f969e15.setContent(html_ed285ee1d1a91c3e42de5c0ec43599d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adcf2cf241739ae3e3e45b490a7a610d.bindPopup(popup_7fd58bf96238e0033c8461431f969e15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a88dd16c40b09f208f1132c1d1e4b3e8 = L.circleMarker(\\n\",\n       \"                [24.77908333, 113.6734722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69b900ff8bbb71bd47cc443e1a0f5d8d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4cc3f46cd3e57d7bd20d4e3e4bfc58a1 = $(`&lt;div id=&quot;html_4cc3f46cd3e57d7bd20d4e3e4bfc58a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6734722             latitude:24.77908333             PM2_5:34.24229692             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69b900ff8bbb71bd47cc443e1a0f5d8d.setContent(html_4cc3f46cd3e57d7bd20d4e3e4bfc58a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a88dd16c40b09f208f1132c1d1e4b3e8.bindPopup(popup_69b900ff8bbb71bd47cc443e1a0f5d8d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_483bcdee66c97418614872ff3dbd63c4 = L.circleMarker(\\n\",\n       \"                [34.9817, 118.2764],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0590762547863daeb7e2f87aa11fcc2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b44ea1c3dfa86268cfdf61f3518e6ce = $(`&lt;div id=&quot;html_6b44ea1c3dfa86268cfdf61f3518e6ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2764             latitude:34.9817             PM2_5:46.4432133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0590762547863daeb7e2f87aa11fcc2c.setContent(html_6b44ea1c3dfa86268cfdf61f3518e6ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_483bcdee66c97418614872ff3dbd63c4.bindPopup(popup_0590762547863daeb7e2f87aa11fcc2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa3ba1705326c3fef6c6ceab121c8856 = L.circleMarker(\\n\",\n       \"                [37.8792, 113.4922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6d2ca1dd19e54b1abfc1bb02bf963a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58c85b0efd83a208aead3ef79384ef71 = $(`&lt;div id=&quot;html_58c85b0efd83a208aead3ef79384ef71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4922             latitude:37.8792             PM2_5:50.03267045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6d2ca1dd19e54b1abfc1bb02bf963a6.setContent(html_58c85b0efd83a208aead3ef79384ef71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa3ba1705326c3fef6c6ceab121c8856.bindPopup(popup_b6d2ca1dd19e54b1abfc1bb02bf963a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6103d9f5701f9caff18c1423624c4994 = L.circleMarker(\\n\",\n       \"                [22.5497, 113.3881],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a30c84d19a347260f79a17b104050d80 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2804ad6cfa90e6a6355bac7032a44477 = $(`&lt;div id=&quot;html_2804ad6cfa90e6a6355bac7032a44477&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3881             latitude:22.5497             PM2_5:33.25770308             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a30c84d19a347260f79a17b104050d80.setContent(html_2804ad6cfa90e6a6355bac7032a44477);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6103d9f5701f9caff18c1423624c4994.bindPopup(popup_a30c84d19a347260f79a17b104050d80)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fd6dcc6667d4d2e35f05f535888e828 = L.circleMarker(\\n\",\n       \"                [22.7629, 113.257],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2645de13da5c258eb40082a2983e06f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cae67f7e4cd235e76144a81b6f7868d1 = $(`&lt;div id=&quot;html_cae67f7e4cd235e76144a81b6f7868d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.257             latitude:22.7629             PM2_5:34.17746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2645de13da5c258eb40082a2983e06f7.setContent(html_cae67f7e4cd235e76144a81b6f7868d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fd6dcc6667d4d2e35f05f535888e828.bindPopup(popup_2645de13da5c258eb40082a2983e06f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ed088505926a9025a2d88635d3e7329 = L.circleMarker(\\n\",\n       \"                [40.8367, 114.8985],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_417ae342f052b832b3a895ecf5a9a3aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08db410f704697d67d2b65cc91e43c11 = $(`&lt;div id=&quot;html_08db410f704697d67d2b65cc91e43c11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8985             latitude:40.8367             PM2_5:26.28910615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_417ae342f052b832b3a895ecf5a9a3aa.setContent(html_08db410f704697d67d2b65cc91e43c11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ed088505926a9025a2d88635d3e7329.bindPopup(popup_417ae342f052b832b3a895ecf5a9a3aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bc7cb53e34a2608d8a0a7a328cdec9a = L.circleMarker(\\n\",\n       \"                [23.5353, 116.3697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af1a1130a665e0c0e7aefbed8c26303a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e70c1091f910e7fc9a23646c8d68fa9c = $(`&lt;div id=&quot;html_e70c1091f910e7fc9a23646c8d68fa9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3697             latitude:23.5353             PM2_5:30.43258427             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af1a1130a665e0c0e7aefbed8c26303a.setContent(html_e70c1091f910e7fc9a23646c8d68fa9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bc7cb53e34a2608d8a0a7a328cdec9a.bindPopup(popup_af1a1130a665e0c0e7aefbed8c26303a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c61f382401b5a6faacc98ec5f39abb88 = L.circleMarker(\\n\",\n       \"                [35.0308, 110.9678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9119553ab72c74bce56e111bd6fea657 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ddd10607f8e0d2195260e4304a579412 = $(`&lt;div id=&quot;html_ddd10607f8e0d2195260e4304a579412&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9678             latitude:35.0308             PM2_5:72.14185393             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9119553ab72c74bce56e111bd6fea657.setContent(html_ddd10607f8e0d2195260e4304a579412);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c61f382401b5a6faacc98ec5f39abb88.bindPopup(popup_9119553ab72c74bce56e111bd6fea657)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5944babeee9c6a3d8ffe91e8ec291dff = L.circleMarker(\\n\",\n       \"                [25.0492, 101.538],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18bab25fb71b3dfb6d318a513013ba67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_908b02aef56360032d7ed80491345a64 = $(`&lt;div id=&quot;html_908b02aef56360032d7ed80491345a64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.538             latitude:25.0492             PM2_5:21.25348189             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18bab25fb71b3dfb6d318a513013ba67.setContent(html_908b02aef56360032d7ed80491345a64);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5944babeee9c6a3d8ffe91e8ec291dff.bindPopup(popup_18bab25fb71b3dfb6d318a513013ba67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64a1c214fb6913c5bc12095ec9787b16 = L.circleMarker(\\n\",\n       \"                [27.9747, 120.76],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88089c814e5d751559c98718c875d490 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ffb60b5a46f2993760bba15473cbd6c = $(`&lt;div id=&quot;html_7ffb60b5a46f2993760bba15473cbd6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.76             latitude:27.9747             PM2_5:30.625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88089c814e5d751559c98718c875d490.setContent(html_7ffb60b5a46f2993760bba15473cbd6c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64a1c214fb6913c5bc12095ec9787b16.bindPopup(popup_88089c814e5d751559c98718c875d490)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_249d5ec3ba295714086cca78899b577f = L.circleMarker(\\n\",\n       \"                [24.6928, 108.054],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d67101e8bd99953b3a2af5427b14fa7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a788c4f0895bfac5a579420615add2a = $(`&lt;div id=&quot;html_2a788c4f0895bfac5a579420615add2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.054             latitude:24.6928             PM2_5:30.28151261             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d67101e8bd99953b3a2af5427b14fa7.setContent(html_2a788c4f0895bfac5a579420615add2a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_249d5ec3ba295714086cca78899b577f.bindPopup(popup_7d67101e8bd99953b3a2af5427b14fa7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba6e9aac09df9ec29aa6ae96e02fe2c5 = L.circleMarker(\\n\",\n       \"                [39.0153, 106.3717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_254e3d1ad13c7625ed41b752711e2c4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a10750c1fe05033c8684f94cac4c89d = $(`&lt;div id=&quot;html_8a10750c1fe05033c8684f94cac4c89d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3717             latitude:39.0153             PM2_5:49.59103641             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_254e3d1ad13c7625ed41b752711e2c4f.setContent(html_8a10750c1fe05033c8684f94cac4c89d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba6e9aac09df9ec29aa6ae96e02fe2c5.bindPopup(popup_254e3d1ad13c7625ed41b752711e2c4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d5c921440f3d383dce4e313cd181f56 = L.circleMarker(\\n\",\n       \"                [43.941, 81.3364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19850e579a8d08149b6d0a8a70216a0e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad9980101c9a3fac422742a0068d95b5 = $(`&lt;div id=&quot;html_ad9980101c9a3fac422742a0068d95b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.3364             latitude:43.941             PM2_5:54.96022727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19850e579a8d08149b6d0a8a70216a0e.setContent(html_ad9980101c9a3fac422742a0068d95b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d5c921440f3d383dce4e313cd181f56.bindPopup(popup_19850e579a8d08149b6d0a8a70216a0e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f94884c661b8362b6102ff75cae7ad6 = L.circleMarker(\\n\",\n       \"                [39.746, 98.509],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2231a78d454fda17e1884fa4269ef7be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42aede42bc246c4eaa30bb4b97d45fc1 = $(`&lt;div id=&quot;html_42aede42bc246c4eaa30bb4b97d45fc1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.509             latitude:39.746             PM2_5:32.68854749             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2231a78d454fda17e1884fa4269ef7be.setContent(html_42aede42bc246c4eaa30bb4b97d45fc1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f94884c661b8362b6102ff75cae7ad6.bindPopup(popup_2231a78d454fda17e1884fa4269ef7be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c4b6a119d8abc3f4b9d9679e10a4f1ed = L.circleMarker(\\n\",\n       \"                [25.8417, 98.8546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47c0febd8902528a2030cad77bf8cdfb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35b9bc3279924b6db27cba0ba4b93d1e = $(`&lt;div id=&quot;html_35b9bc3279924b6db27cba0ba4b93d1e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.8546             latitude:25.8417             PM2_5:15.54347826             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47c0febd8902528a2030cad77bf8cdfb.setContent(html_35b9bc3279924b6db27cba0ba4b93d1e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c4b6a119d8abc3f4b9d9679e10a4f1ed.bindPopup(popup_47c0febd8902528a2030cad77bf8cdfb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8e282d1d9dbb73d27da0b432377119b = L.circleMarker(\\n\",\n       \"                [29.6376, 94.3681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7deb5eadb9bfa142478cf618a6002ced = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_653dfe83a87dc02f744867f1a90802e0 = $(`&lt;div id=&quot;html_653dfe83a87dc02f744867f1a90802e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:94.3681             latitude:29.6376             PM2_5:9.39017341             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7deb5eadb9bfa142478cf618a6002ced.setContent(html_653dfe83a87dc02f744867f1a90802e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8e282d1d9dbb73d27da0b432377119b.bindPopup(popup_7deb5eadb9bfa142478cf618a6002ced)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2e447eac4f70454ad62af535b92c241 = L.circleMarker(\\n\",\n       \"                [29.4402, 112.9943],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6fe981d54bdf481f8caa1cb77d10b9a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afd1c68b1953d36456656b26d5e38a51 = $(`&lt;div id=&quot;html_afd1c68b1953d36456656b26d5e38a51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9943             latitude:29.4402             PM2_5:47.75             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6fe981d54bdf481f8caa1cb77d10b9a.setContent(html_afd1c68b1953d36456656b26d5e38a51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2e447eac4f70454ad62af535b92c241.bindPopup(popup_f6fe981d54bdf481f8caa1cb77d10b9a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b4d633f8a6742eeb0bbc4cd37f932fd = L.circleMarker(\\n\",\n       \"                [34.2629, 108.993],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_680f8199f7813ef4eacc3bdc854ceb73 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9ddb814d4ddb6dca4448d167a51c498 = $(`&lt;div id=&quot;html_a9ddb814d4ddb6dca4448d167a51c498&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.993             latitude:34.2629             PM2_5:62.91193182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_680f8199f7813ef4eacc3bdc854ceb73.setContent(html_a9ddb814d4ddb6dca4448d167a51c498);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b4d633f8a6742eeb0bbc4cd37f932fd.bindPopup(popup_680f8199f7813ef4eacc3bdc854ceb73)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2586e8939f96b8c404e0544dd7343e1f = L.circleMarker(\\n\",\n       \"                [41.5931, 120.4439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5b918abb848ac992169bb47e2cbd553 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4cf23675a83ec92d935018bbf8f1575 = $(`&lt;div id=&quot;html_a4cf23675a83ec92d935018bbf8f1575&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4439             latitude:41.5931             PM2_5:27.10888252             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5b918abb848ac992169bb47e2cbd553.setContent(html_a4cf23675a83ec92d935018bbf8f1575);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2586e8939f96b8c404e0544dd7343e1f.bindPopup(popup_b5b918abb848ac992169bb47e2cbd553)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d64e847b5c738e5e2bf7f6572fb55032 = L.circleMarker(\\n\",\n       \"                [34.794, 111.158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87154891f73e7dbe39b567c59d92538e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc667b4abbb47ec7c59b2f119e528df5 = $(`&lt;div id=&quot;html_dc667b4abbb47ec7c59b2f119e528df5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.158             latitude:34.794             PM2_5:58.11898017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87154891f73e7dbe39b567c59d92538e.setContent(html_dc667b4abbb47ec7c59b2f119e528df5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d64e847b5c738e5e2bf7f6572fb55032.bindPopup(popup_87154891f73e7dbe39b567c59d92538e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71884153499b644787558e38d56abe2a = L.circleMarker(\\n\",\n       \"                [46.5888, 131.1572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0eb0c273fe5cbbdbea248aeb33542742 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e99f4213854125646595366d61f9d08a = $(`&lt;div id=&quot;html_e99f4213854125646595366d61f9d08a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1572             latitude:46.5888             PM2_5:31.57807808             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0eb0c273fe5cbbdbea248aeb33542742.setContent(html_e99f4213854125646595366d61f9d08a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71884153499b644787558e38d56abe2a.bindPopup(popup_0eb0c273fe5cbbdbea248aeb33542742)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_064f2e11260f1b274789004f18e4da32 = L.circleMarker(\\n\",\n       \"                [31.5475, 120.354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6c6e87b9b9cd08d47ce6e923babdcb1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31f84f955523500a19e479a0f4fc5ba9 = $(`&lt;div id=&quot;html_31f84f955523500a19e479a0f4fc5ba9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.354             latitude:31.5475             PM2_5:42.00139665             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6c6e87b9b9cd08d47ce6e923babdcb1b.setContent(html_31f84f955523500a19e479a0f4fc5ba9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_064f2e11260f1b274789004f18e4da32.bindPopup(popup_6c6e87b9b9cd08d47ce6e923babdcb1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e43945c0b607095f8428da889ef359ac = L.circleMarker(\\n\",\n       \"                [39.8673, 116.366],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bb18a353278867f00fd21074e465901 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec2438739b9a07341ba045a3f94d6238 = $(`&lt;div id=&quot;html_ec2438739b9a07341ba045a3f94d6238&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.366             latitude:39.8673             PM2_5:54.73389356             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bb18a353278867f00fd21074e465901.setContent(html_ec2438739b9a07341ba045a3f94d6238);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e43945c0b607095f8428da889ef359ac.bindPopup(popup_5bb18a353278867f00fd21074e465901)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f34045edbe2bf191c473cae29e9301f = L.circleMarker(\\n\",\n       \"                [29.9834, 103.0109],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3dcb8d6deeb532f29a36b116f8a599e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea008cdc04a1dd9ae537a4c270a05d6a = $(`&lt;div id=&quot;html_ea008cdc04a1dd9ae537a4c270a05d6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0109             latitude:29.9834             PM2_5:42.66619318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3dcb8d6deeb532f29a36b116f8a599e2.setContent(html_ea008cdc04a1dd9ae537a4c270a05d6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f34045edbe2bf191c473cae29e9301f.bindPopup(popup_3dcb8d6deeb532f29a36b116f8a599e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d68a52dfe18fa581508da347038ecee3 = L.circleMarker(\\n\",\n       \"                [29.6453, 106.562],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a01ae82479e32016ef63cbc46f16109 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a8a72cb4e8e48b1286a90041d2278d4 = $(`&lt;div id=&quot;html_7a8a72cb4e8e48b1286a90041d2278d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.562             latitude:29.6453             PM2_5:35.45125348             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a01ae82479e32016ef63cbc46f16109.setContent(html_7a8a72cb4e8e48b1286a90041d2278d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d68a52dfe18fa581508da347038ecee3.bindPopup(popup_5a01ae82479e32016ef63cbc46f16109)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d7a0d0ad8fbd618a004ba4ab5ab9b13 = L.circleMarker(\\n\",\n       \"                [39.16969, 117.2099],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21d0ba722d568f6c03dcab3c589897a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c94a6df5260ce06b1a24fc00d1b98da = $(`&lt;div id=&quot;html_6c94a6df5260ce06b1a24fc00d1b98da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2099             latitude:39.16969             PM2_5:47.05177515             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21d0ba722d568f6c03dcab3c589897a6.setContent(html_6c94a6df5260ce06b1a24fc00d1b98da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d7a0d0ad8fbd618a004ba4ab5ab9b13.bindPopup(popup_21d0ba722d568f6c03dcab3c589897a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27cd2ae2b4fef61d8f1ddebd4ee63d90 = L.circleMarker(\\n\",\n       \"                [41.3047, 123.7308],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f1536a24a05f9120f0e69c595fd0ac8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6fb189ec380cc5f5108133d0f85696c8 = $(`&lt;div id=&quot;html_6fb189ec380cc5f5108133d0f85696c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7308             latitude:41.3047             PM2_5:28.61699164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f1536a24a05f9120f0e69c595fd0ac8.setContent(html_6fb189ec380cc5f5108133d0f85696c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27cd2ae2b4fef61d8f1ddebd4ee63d90.bindPopup(popup_7f1536a24a05f9120f0e69c595fd0ac8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22ee5d505d9d8fd7006c589eed4305b4 = L.circleMarker(\\n\",\n       \"                [28.4231, 119.879],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_710b9ee7b5107144442976d70e50124f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0345568c4da33e952ba66359f88c8c9d = $(`&lt;div id=&quot;html_0345568c4da33e952ba66359f88c8c9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.879             latitude:28.4231             PM2_5:30.35369318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_710b9ee7b5107144442976d70e50124f.setContent(html_0345568c4da33e952ba66359f88c8c9d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22ee5d505d9d8fd7006c589eed4305b4.bindPopup(popup_710b9ee7b5107144442976d70e50124f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fe48e7978037ed02cfbb563159e93d0 = L.circleMarker(\\n\",\n       \"                [38.91194444, 121.6330556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2604444024d7591765b909372ba96328 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_20f9502a98c36f8184baa70779e56977 = $(`&lt;div id=&quot;html_20f9502a98c36f8184baa70779e56977&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6330556             latitude:38.91194444             PM2_5:30.51815642             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2604444024d7591765b909372ba96328.setContent(html_20f9502a98c36f8184baa70779e56977);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fe48e7978037ed02cfbb563159e93d0.bindPopup(popup_2604444024d7591765b909372ba96328)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc0261175daf8c92fff29fbdd9b79271 = L.circleMarker(\\n\",\n       \"                [30.3944, 114.8878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a26b9fb99c8a368cf337b5c0de4f76f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72457a2febac03ca8913651496f4e60d = $(`&lt;div id=&quot;html_72457a2febac03ca8913651496f4e60d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8878             latitude:30.3944             PM2_5:50.14027778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a26b9fb99c8a368cf337b5c0de4f76f.setContent(html_72457a2febac03ca8913651496f4e60d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc0261175daf8c92fff29fbdd9b79271.bindPopup(popup_8a26b9fb99c8a368cf337b5c0de4f76f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92d9832fa4dd947d45df6cb8ee578961 = L.circleMarker(\\n\",\n       \"                [40.7378, 107.3715],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_123a4ced1f8427f0fea28fc3fc19975a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab039860f7f58c035e0e3a299478782b = $(`&lt;div id=&quot;html_ab039860f7f58c035e0e3a299478782b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3715             latitude:40.7378             PM2_5:27.96590909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_123a4ced1f8427f0fea28fc3fc19975a.setContent(html_ab039860f7f58c035e0e3a299478782b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92d9832fa4dd947d45df6cb8ee578961.bindPopup(popup_123a4ced1f8427f0fea28fc3fc19975a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ff6c3a4e1f6e4591bbc2627d836f1d4 = L.circleMarker(\\n\",\n       \"                [22.9477, 113.352],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3603bd04a28b9863dc4764b8caffe31b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9039b8f8a5edf6aaab4b69002fd6ffd0 = $(`&lt;div id=&quot;html_9039b8f8a5edf6aaab4b69002fd6ffd0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.352             latitude:22.9477             PM2_5:36.97331461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3603bd04a28b9863dc4764b8caffe31b.setContent(html_9039b8f8a5edf6aaab4b69002fd6ffd0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ff6c3a4e1f6e4591bbc2627d836f1d4.bindPopup(popup_3603bd04a28b9863dc4764b8caffe31b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03de037c616e1b8dbe84d4e619b4bedb = L.circleMarker(\\n\",\n       \"                [38.4841, 106.2739],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e54da85517a467d0800b6ebe8bc55a7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_553af09f56e92c8ecd814459dad0ac3e = $(`&lt;div id=&quot;html_553af09f56e92c8ecd814459dad0ac3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2739             latitude:38.4841             PM2_5:46.99579832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e54da85517a467d0800b6ebe8bc55a7f.setContent(html_553af09f56e92c8ecd814459dad0ac3e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03de037c616e1b8dbe84d4e619b4bedb.bindPopup(popup_e54da85517a467d0800b6ebe8bc55a7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfdb6ec0bc58b7f90793734c1a6f65e9 = L.circleMarker(\\n\",\n       \"                [29.355, 113.2117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed94a6cc14955ef2e4876e0a4871e28a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04563e4f7826ea0251480af7ecf469aa = $(`&lt;div id=&quot;html_04563e4f7826ea0251480af7ecf469aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2117             latitude:29.355             PM2_5:43.30473373             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed94a6cc14955ef2e4876e0a4871e28a.setContent(html_04563e4f7826ea0251480af7ecf469aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfdb6ec0bc58b7f90793734c1a6f65e9.bindPopup(popup_ed94a6cc14955ef2e4876e0a4871e28a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e763e78b0c9ace223441c10efa0f188f = L.circleMarker(\\n\",\n       \"                [28.8833, 105.4322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc7a0b2a2582fa24ad131461e9db5163 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12151533ed2c83f321d74e4d2fda29f3 = $(`&lt;div id=&quot;html_12151533ed2c83f321d74e4d2fda29f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4322             latitude:28.8833             PM2_5:37.04353933             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc7a0b2a2582fa24ad131461e9db5163.setContent(html_12151533ed2c83f321d74e4d2fda29f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e763e78b0c9ace223441c10efa0f188f.bindPopup(popup_cc7a0b2a2582fa24ad131461e9db5163)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc84c4e492e05fa7f0bed21975f5b41d = L.circleMarker(\\n\",\n       \"                [22.4853, 113.4411],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a364be5efed332b98de33889982033a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d49e2e255558c7829752d2545d206e6a = $(`&lt;div id=&quot;html_d49e2e255558c7829752d2545d206e6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4411             latitude:22.4853             PM2_5:37.20505618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a364be5efed332b98de33889982033a3.setContent(html_d49e2e255558c7829752d2545d206e6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc84c4e492e05fa7f0bed21975f5b41d.bindPopup(popup_a364be5efed332b98de33889982033a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19655f7b169e566867b73f8dbd6e3f7b = L.circleMarker(\\n\",\n       \"                [41.1042, 121.835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47e9d1a275dd903faa6162113bf0de6a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91f8c081dc0a5ca1c6a0830606d8dc04 = $(`&lt;div id=&quot;html_91f8c081dc0a5ca1c6a0830606d8dc04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.835             latitude:41.1042             PM2_5:29.90948276             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47e9d1a275dd903faa6162113bf0de6a.setContent(html_91f8c081dc0a5ca1c6a0830606d8dc04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19655f7b169e566867b73f8dbd6e3f7b.bindPopup(popup_47e9d1a275dd903faa6162113bf0de6a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13ba9e127d19af1d468b3698880915c6 = L.circleMarker(\\n\",\n       \"                [35.7289, 107.6831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86542d2bf096ae83139f85622dd59d5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9c48f1a903c003063bf4376140c2c27 = $(`&lt;div id=&quot;html_c9c48f1a903c003063bf4376140c2c27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6831             latitude:35.7289             PM2_5:28.02793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86542d2bf096ae83139f85622dd59d5f.setContent(html_c9c48f1a903c003063bf4376140c2c27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13ba9e127d19af1d468b3698880915c6.bindPopup(popup_86542d2bf096ae83139f85622dd59d5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0d773ae18a87abe87645f9f46243366 = L.circleMarker(\\n\",\n       \"                [31.92, 120.302],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2c9ef45f81f7b1651ebef1925db1121 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9db3266c7b202892c2839a3c86cf8e1 = $(`&lt;div id=&quot;html_c9db3266c7b202892c2839a3c86cf8e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.302             latitude:31.92             PM2_5:56.37743733             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2c9ef45f81f7b1651ebef1925db1121.setContent(html_c9db3266c7b202892c2839a3c86cf8e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0d773ae18a87abe87645f9f46243366.bindPopup(popup_c2c9ef45f81f7b1651ebef1925db1121)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8be8cd3873d8a606629f5e62f72bd97f = L.circleMarker(\\n\",\n       \"                [45.7478, 126.593],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_976fd2d119546d05afffb088c88703c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7d4b2e486acf0b1f8154c2a87eaa76b = $(`&lt;div id=&quot;html_e7d4b2e486acf0b1f8154c2a87eaa76b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.593             latitude:45.7478             PM2_5:37.80972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_976fd2d119546d05afffb088c88703c6.setContent(html_e7d4b2e486acf0b1f8154c2a87eaa76b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8be8cd3873d8a606629f5e62f72bd97f.bindPopup(popup_976fd2d119546d05afffb088c88703c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f6b519afe381aea44f500a4674dd457 = L.circleMarker(\\n\",\n       \"                [29.7048, 115.9581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_767f1a262c3192118899800252071abb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5c6f16930a8c9bec792efbd0100032b = $(`&lt;div id=&quot;html_c5c6f16930a8c9bec792efbd0100032b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9581             latitude:29.7048             PM2_5:43.60306407             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_767f1a262c3192118899800252071abb.setContent(html_c5c6f16930a8c9bec792efbd0100032b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f6b519afe381aea44f500a4674dd457.bindPopup(popup_767f1a262c3192118899800252071abb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eadd9720b7e8863b4004c7a719079e16 = L.circleMarker(\\n\",\n       \"                [38.4186, 112.7356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f7e7c7c1953206d1f9b18473995b03d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65795b2056a1b844df45c3dd3f7ee328 = $(`&lt;div id=&quot;html_65795b2056a1b844df45c3dd3f7ee328&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7356             latitude:38.4186             PM2_5:59.60806916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f7e7c7c1953206d1f9b18473995b03d.setContent(html_65795b2056a1b844df45c3dd3f7ee328);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eadd9720b7e8863b4004c7a719079e16.bindPopup(popup_3f7e7c7c1953206d1f9b18473995b03d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4bb1c73f3efe05ca4e9e382a43b97b49 = L.circleMarker(\\n\",\n       \"                [39.0631, 121.9769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_797862355543756730dd65b4d0cb6dad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da0a6a2addeb945696b287e62c6d7657 = $(`&lt;div id=&quot;html_da0a6a2addeb945696b287e62c6d7657&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.9769             latitude:39.0631             PM2_5:25.05477528             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_797862355543756730dd65b4d0cb6dad.setContent(html_da0a6a2addeb945696b287e62c6d7657);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4bb1c73f3efe05ca4e9e382a43b97b49.bindPopup(popup_797862355543756730dd65b4d0cb6dad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f2abd15a2a5997d9328815952e7184f = L.circleMarker(\\n\",\n       \"                [32.395, 111.0419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53a45f5488e8fb82d250fcbdb9e48636 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db732e7760f181bef399be23fbc893bb = $(`&lt;div id=&quot;html_db732e7760f181bef399be23fbc893bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0419             latitude:32.395             PM2_5:29.91477273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53a45f5488e8fb82d250fcbdb9e48636.setContent(html_db732e7760f181bef399be23fbc893bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f2abd15a2a5997d9328815952e7184f.bindPopup(popup_53a45f5488e8fb82d250fcbdb9e48636)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66d4a985869f4cd59fcd2ad41f04c01a = L.circleMarker(\\n\",\n       \"                [31.5848, 120.354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2c110b09a504b6c3df02fc05f49aed8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8239c30dcc0c3cd527874bd2e975fb2d = $(`&lt;div id=&quot;html_8239c30dcc0c3cd527874bd2e975fb2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.354             latitude:31.5848             PM2_5:47.23011364             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2c110b09a504b6c3df02fc05f49aed8.setContent(html_8239c30dcc0c3cd527874bd2e975fb2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66d4a985869f4cd59fcd2ad41f04c01a.bindPopup(popup_e2c110b09a504b6c3df02fc05f49aed8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b27f07fce0bff3de552e67335c90a1c = L.circleMarker(\\n\",\n       \"                [26.6611, 119.5392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca4db22070c5a9ef9f7fadd2591e3189 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9aa7082a48ec9b1417dbdf46fe6cc3ff = $(`&lt;div id=&quot;html_9aa7082a48ec9b1417dbdf46fe6cc3ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5392             latitude:26.6611             PM2_5:26.51523546             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca4db22070c5a9ef9f7fadd2591e3189.setContent(html_9aa7082a48ec9b1417dbdf46fe6cc3ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b27f07fce0bff3de552e67335c90a1c.bindPopup(popup_ca4db22070c5a9ef9f7fadd2591e3189)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c226c8a31dfdd26b0ba6bfb0ed75d307 = L.circleMarker(\\n\",\n       \"                [37.4294, 122.1206],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d40b103bfa4d3535e6bd3c6eb3b9bdac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_825e27f2454d116df85b50d9052b1fb6 = $(`&lt;div id=&quot;html_825e27f2454d116df85b50d9052b1fb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.1206             latitude:37.4294             PM2_5:27.61864407             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d40b103bfa4d3535e6bd3c6eb3b9bdac.setContent(html_825e27f2454d116df85b50d9052b1fb6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c226c8a31dfdd26b0ba6bfb0ed75d307.bindPopup(popup_d40b103bfa4d3535e6bd3c6eb3b9bdac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b701fa36a0cd0aa20456d262572cbd45 = L.circleMarker(\\n\",\n       \"                [41.7381, 125.9486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9f6893f303007622d255c37936ed0df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3237dd581e5b6ec39eca2b14fbb891f0 = $(`&lt;div id=&quot;html_3237dd581e5b6ec39eca2b14fbb891f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.9486             latitude:41.7381             PM2_5:30.97625698             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9f6893f303007622d255c37936ed0df.setContent(html_3237dd581e5b6ec39eca2b14fbb891f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b701fa36a0cd0aa20456d262572cbd45.bindPopup(popup_c9f6893f303007622d255c37936ed0df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7a901e99b386318d42a54a8151b1b63 = L.circleMarker(\\n\",\n       \"                [35.5294, 106.7039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a36725650eb051d64defe99814db918 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ed5ad07327b703d783d70b834abeecc = $(`&lt;div id=&quot;html_4ed5ad07327b703d783d70b834abeecc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7039             latitude:35.5294             PM2_5:29.01532033             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a36725650eb051d64defe99814db918.setContent(html_4ed5ad07327b703d783d70b834abeecc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7a901e99b386318d42a54a8151b1b63.bindPopup(popup_5a36725650eb051d64defe99814db918)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_02fcec980d0fb71eaa656ef86e57afa4 = L.circleMarker(\\n\",\n       \"                [27.8408, 102.2714],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_905007e2ca3fe12fdf3b52ccb1e04676 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_775e483cda103289fcad3301dd58a5ba = $(`&lt;div id=&quot;html_775e483cda103289fcad3301dd58a5ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2714             latitude:27.8408             PM2_5:20.54329609             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_905007e2ca3fe12fdf3b52ccb1e04676.setContent(html_775e483cda103289fcad3301dd58a5ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_02fcec980d0fb71eaa656ef86e57afa4.bindPopup(popup_905007e2ca3fe12fdf3b52ccb1e04676)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1588e889f444ce281c29b19543e8995 = L.circleMarker(\\n\",\n       \"                [36.6867, 101.524],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bc126e0de349bff9d21ec062e472591 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4518edfdd414fa2c5cfb27fa3fa0bd0d = $(`&lt;div id=&quot;html_4518edfdd414fa2c5cfb27fa3fa0bd0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.524             latitude:36.6867             PM2_5:52.19736842             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bc126e0de349bff9d21ec062e472591.setContent(html_4518edfdd414fa2c5cfb27fa3fa0bd0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1588e889f444ce281c29b19543e8995.bindPopup(popup_5bc126e0de349bff9d21ec062e472591)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fae4a10be34f8290ec146bb0ca8d0be = L.circleMarker(\\n\",\n       \"                [32.8985, 117.3065],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_746fe791c08be6f709acdb56510db4ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eed8e46997ffc1078f3c70f87d7b3bff = $(`&lt;div id=&quot;html_eed8e46997ffc1078f3c70f87d7b3bff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3065             latitude:32.8985             PM2_5:46.36619718             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_746fe791c08be6f709acdb56510db4ed.setContent(html_eed8e46997ffc1078f3c70f87d7b3bff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fae4a10be34f8290ec146bb0ca8d0be.bindPopup(popup_746fe791c08be6f709acdb56510db4ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aabb29a3a499967a13f277e677e979e0 = L.circleMarker(\\n\",\n       \"                [31.3708, 120.641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db02cb53a0d33e3ddceb06edd79bc645 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e7bdd8c98cbd88fa0a26f368b7a7292 = $(`&lt;div id=&quot;html_7e7bdd8c98cbd88fa0a26f368b7a7292&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.641             latitude:31.3708             PM2_5:39.74515235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db02cb53a0d33e3ddceb06edd79bc645.setContent(html_7e7bdd8c98cbd88fa0a26f368b7a7292);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aabb29a3a499967a13f277e677e979e0.bindPopup(popup_db02cb53a0d33e3ddceb06edd79bc645)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8efa8ac049c60febc07ff5ee17c1ea44 = L.circleMarker(\\n\",\n       \"                [34.7187, 113.727],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f957d149300d64377708921c6dc250ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_909a4af5eb9dc9f657259f4616da357a = $(`&lt;div id=&quot;html_909a4af5eb9dc9f657259f4616da357a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.727             latitude:34.7187             PM2_5:65.41432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f957d149300d64377708921c6dc250ea.setContent(html_909a4af5eb9dc9f657259f4616da357a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8efa8ac049c60febc07ff5ee17c1ea44.bindPopup(popup_f957d149300d64377708921c6dc250ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_55753a938e05841ca4090f4830f652eb = L.circleMarker(\\n\",\n       \"                [32.0903, 112.2106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39ae46f5047b0cb93a11c780f01b0448 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61d653ab60dc2306d7ac7bb7980f8cc3 = $(`&lt;div id=&quot;html_61d653ab60dc2306d7ac7bb7980f8cc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2106             latitude:32.0903             PM2_5:71.5252809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39ae46f5047b0cb93a11c780f01b0448.setContent(html_61d653ab60dc2306d7ac7bb7980f8cc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_55753a938e05841ca4090f4830f652eb.bindPopup(popup_39ae46f5047b0cb93a11c780f01b0448)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76ffe86d67f1b6bde5eb8afc123738b7 = L.circleMarker(\\n\",\n       \"                [34.7997, 111.1489],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41ba033a41ef330d016612deed4deedd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94c1dc16b0f8ad8fe5de65bc745f97a1 = $(`&lt;div id=&quot;html_94c1dc16b0f8ad8fe5de65bc745f97a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1489             latitude:34.7997             PM2_5:54.08100559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41ba033a41ef330d016612deed4deedd.setContent(html_94c1dc16b0f8ad8fe5de65bc745f97a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76ffe86d67f1b6bde5eb8afc123738b7.bindPopup(popup_41ba033a41ef330d016612deed4deedd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_185c5d91ffe80467d100f0f1f3bcaa92 = L.circleMarker(\\n\",\n       \"                [33.6481, 116.9765],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9ac368761ef9733331a81e5f5fee983 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afa0a15db678add8756be18d8196e316 = $(`&lt;div id=&quot;html_afa0a15db678add8756be18d8196e316&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9765             latitude:33.6481             PM2_5:55.37114846             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9ac368761ef9733331a81e5f5fee983.setContent(html_afa0a15db678add8756be18d8196e316);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_185c5d91ffe80467d100f0f1f3bcaa92.bindPopup(popup_c9ac368761ef9733331a81e5f5fee983)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7185f124c40840d9aae997921657441 = L.circleMarker(\\n\",\n       \"                [27.2317, 111.4733],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7df5d3e7d3bd22aec18dcfa6e3cee050 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c82c7db98163751a280108abca55b3fc = $(`&lt;div id=&quot;html_c82c7db98163751a280108abca55b3fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4733             latitude:27.2317             PM2_5:51.66572238             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7df5d3e7d3bd22aec18dcfa6e3cee050.setContent(html_c82c7db98163751a280108abca55b3fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7185f124c40840d9aae997921657441.bindPopup(popup_7df5d3e7d3bd22aec18dcfa6e3cee050)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31ad9a3d4441a5c342dd7ec2988e970c = L.circleMarker(\\n\",\n       \"                [38.4519, 112.7383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e110099a1a20d47a7d46a63e513f4c79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_114caf0158bccf3461ba424507edd594 = $(`&lt;div id=&quot;html_114caf0158bccf3461ba424507edd594&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7383             latitude:38.4519             PM2_5:53.09014085             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e110099a1a20d47a7d46a63e513f4c79.setContent(html_114caf0158bccf3461ba424507edd594);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31ad9a3d4441a5c342dd7ec2988e970c.bindPopup(popup_e110099a1a20d47a7d46a63e513f4c79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_627c6362224ad3fcf1cc066fb5a4ffde = L.circleMarker(\\n\",\n       \"                [39.5989, 109.8119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbf9657e66057e10ee624e093f980fa5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37d58eac7e234d67e6e90b5e4e2bb65e = $(`&lt;div id=&quot;html_37d58eac7e234d67e6e90b5e4e2bb65e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8119             latitude:39.5989             PM2_5:28.25633803             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbf9657e66057e10ee624e093f980fa5.setContent(html_37d58eac7e234d67e6e90b5e4e2bb65e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_627c6362224ad3fcf1cc066fb5a4ffde.bindPopup(popup_bbf9657e66057e10ee624e093f980fa5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e944880a2718d52cd4115b712360850 = L.circleMarker(\\n\",\n       \"                [31.6219, 120.275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6dc2a831a36897e532614a15938667e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56788962eb19313aea6aae6b114b5a5c = $(`&lt;div id=&quot;html_56788962eb19313aea6aae6b114b5a5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.275             latitude:31.6219             PM2_5:42.90625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6dc2a831a36897e532614a15938667e.setContent(html_56788962eb19313aea6aae6b114b5a5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e944880a2718d52cd4115b712360850.bindPopup(popup_f6dc2a831a36897e532614a15938667e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddbbe482c002fb5d763c471491e69a50 = L.circleMarker(\\n\",\n       \"                [26.2625, 117.6211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44efd4dfb74384a2d79dc4e0a478d752 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b2137bd095e10004a36686ee81ed401 = $(`&lt;div id=&quot;html_1b2137bd095e10004a36686ee81ed401&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6211             latitude:26.2625             PM2_5:27.27222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44efd4dfb74384a2d79dc4e0a478d752.setContent(html_1b2137bd095e10004a36686ee81ed401);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddbbe482c002fb5d763c471491e69a50.bindPopup(popup_44efd4dfb74384a2d79dc4e0a478d752)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ff8b46539b1abd6a924cdc42dfe686d = L.circleMarker(\\n\",\n       \"                [42.3022, 123.8139],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e0c187baa8a052645a3ca2f67d38ed6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7241acfd8869efda4bd940a4cea715d2 = $(`&lt;div id=&quot;html_7241acfd8869efda4bd940a4cea715d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8139             latitude:42.3022             PM2_5:27.88053097             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e0c187baa8a052645a3ca2f67d38ed6.setContent(html_7241acfd8869efda4bd940a4cea715d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ff8b46539b1abd6a924cdc42dfe686d.bindPopup(popup_4e0c187baa8a052645a3ca2f67d38ed6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f1342088f247faccb567ac8a090d709 = L.circleMarker(\\n\",\n       \"                [32.9683, 112.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91e6c7b3a83f1c75544ce1e4231a32e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dadd0f0dc0f95392044108231e65af30 = $(`&lt;div id=&quot;html_dadd0f0dc0f95392044108231e65af30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.55             latitude:32.9683             PM2_5:55.1075419             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91e6c7b3a83f1c75544ce1e4231a32e7.setContent(html_dadd0f0dc0f95392044108231e65af30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f1342088f247faccb567ac8a090d709.bindPopup(popup_91e6c7b3a83f1c75544ce1e4231a32e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66e7360491ef1ccbedb783da5cdef45a = L.circleMarker(\\n\",\n       \"                [41.5672, 120.4486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d72cf454d49253a7c41c55d5ed931d0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e05714251483fe1b14ac310521a795d9 = $(`&lt;div id=&quot;html_e05714251483fe1b14ac310521a795d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4486             latitude:41.5672             PM2_5:25.5915493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d72cf454d49253a7c41c55d5ed931d0f.setContent(html_e05714251483fe1b14ac310521a795d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66e7360491ef1ccbedb783da5cdef45a.bindPopup(popup_d72cf454d49253a7c41c55d5ed931d0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65c7c02afb6f94e0972718e54834d74c = L.circleMarker(\\n\",\n       \"                [31.2261, 121.425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cbe5cf196f1f4fec206e5eeb7e5118c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e606dcb5c677afabab966cd1db56c48 = $(`&lt;div id=&quot;html_5e606dcb5c677afabab966cd1db56c48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.425             latitude:31.2261             PM2_5:41.84261838             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cbe5cf196f1f4fec206e5eeb7e5118c9.setContent(html_5e606dcb5c677afabab966cd1db56c48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65c7c02afb6f94e0972718e54834d74c.bindPopup(popup_cbe5cf196f1f4fec206e5eeb7e5118c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84cea124f07de42679273f9d72f8d0e4 = L.circleMarker(\\n\",\n       \"                [27.5578, 109.9972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27a657ed4cab6cd28bc16c9dbf4fe6b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e5aaa07fa874051a75293812b4c925f = $(`&lt;div id=&quot;html_3e5aaa07fa874051a75293812b4c925f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9972             latitude:27.5578             PM2_5:42.84463277             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27a657ed4cab6cd28bc16c9dbf4fe6b5.setContent(html_3e5aaa07fa874051a75293812b4c925f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84cea124f07de42679273f9d72f8d0e4.bindPopup(popup_27a657ed4cab6cd28bc16c9dbf4fe6b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31a1bf8001cb3c8927925766cd560d7e = L.circleMarker(\\n\",\n       \"                [37.0172, 105.18],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55ad2507287761baae44853e64d55b9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c905423bacbe8237a3a43a578d047b93 = $(`&lt;div id=&quot;html_c905423bacbe8237a3a43a578d047b93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.18             latitude:37.0172             PM2_5:35.66201117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55ad2507287761baae44853e64d55b9e.setContent(html_c905423bacbe8237a3a43a578d047b93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31a1bf8001cb3c8927925766cd560d7e.bindPopup(popup_55ad2507287761baae44853e64d55b9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ccd81bcbaa13b0c8e4cde2d12f4639a8 = L.circleMarker(\\n\",\n       \"                [36.497, 117.8477],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ecb9ee96e6a70055fb6f6a602bf7182 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96e1f8a19d7e7dbbd5022659f255fe30 = $(`&lt;div id=&quot;html_96e1f8a19d7e7dbbd5022659f255fe30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8477             latitude:36.497             PM2_5:53.86827195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ecb9ee96e6a70055fb6f6a602bf7182.setContent(html_96e1f8a19d7e7dbbd5022659f255fe30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ccd81bcbaa13b0c8e4cde2d12f4639a8.bindPopup(popup_7ecb9ee96e6a70055fb6f6a602bf7182)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eee63fc51cc9a027a273466cbb3ed5e6 = L.circleMarker(\\n\",\n       \"                [29.334, 120.04],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_444ef683cb4b0b90fd552ba134ea959e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5cd744af36771f8857f4ea7336b5f714 = $(`&lt;div id=&quot;html_5cd744af36771f8857f4ea7336b5f714&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.04             latitude:29.334             PM2_5:33.41340782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_444ef683cb4b0b90fd552ba134ea959e.setContent(html_5cd744af36771f8857f4ea7336b5f714);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eee63fc51cc9a027a273466cbb3ed5e6.bindPopup(popup_444ef683cb4b0b90fd552ba134ea959e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdb3def7b65e1c0a7e1840467085db45 = L.circleMarker(\\n\",\n       \"                [32.6939, 109.0281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6dd0f7f38315d4bb54cad1fd70f6ea8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a91ba6c28045b5825d80927bfb77ed22 = $(`&lt;div id=&quot;html_a91ba6c28045b5825d80927bfb77ed22&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0281             latitude:32.6939             PM2_5:42.38169014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6dd0f7f38315d4bb54cad1fd70f6ea8.setContent(html_a91ba6c28045b5825d80927bfb77ed22);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdb3def7b65e1c0a7e1840467085db45.bindPopup(popup_b6dd0f7f38315d4bb54cad1fd70f6ea8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fc2079ac766e9ead4415bb886ff323a = L.circleMarker(\\n\",\n       \"                [36.5481, 104.1731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94a634e99976b1b3f684a1bc33567f16 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19dc389d6248d4e2a82376b2a6797849 = $(`&lt;div id=&quot;html_19dc389d6248d4e2a82376b2a6797849&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1731             latitude:36.5481             PM2_5:30.22922636             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94a634e99976b1b3f684a1bc33567f16.setContent(html_19dc389d6248d4e2a82376b2a6797849);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fc2079ac766e9ead4415bb886ff323a.bindPopup(popup_94a634e99976b1b3f684a1bc33567f16)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7536c07b1cb64ae4dff31a906d32cb3a = L.circleMarker(\\n\",\n       \"                [31.671, 120.721],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74a71201703c4c803084b01a28e65bb4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_75908f2e2895597cb6c98fec7badf5ec = $(`&lt;div id=&quot;html_75908f2e2895597cb6c98fec7badf5ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.721             latitude:31.671             PM2_5:43.43968254             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74a71201703c4c803084b01a28e65bb4.setContent(html_75908f2e2895597cb6c98fec7badf5ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7536c07b1cb64ae4dff31a906d32cb3a.bindPopup(popup_74a71201703c4c803084b01a28e65bb4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d9863cbfd9080c2badd9ce23bfe54df = L.circleMarker(\\n\",\n       \"                [26.5506, 104.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43ce6c9699ecfa9d42a007fc8e3a7355 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58e4a99f329f375e5f06e8618ab59d69 = $(`&lt;div id=&quot;html_58e4a99f329f375e5f06e8618ab59d69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9544             latitude:26.5506             PM2_5:39.40833333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43ce6c9699ecfa9d42a007fc8e3a7355.setContent(html_58e4a99f329f375e5f06e8618ab59d69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d9863cbfd9080c2badd9ce23bfe54df.bindPopup(popup_43ce6c9699ecfa9d42a007fc8e3a7355)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddb35b335164076daef774f8621e5bbd = L.circleMarker(\\n\",\n       \"                [40.8033, 111.658],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17f7b1c78d5c9698674aca32bcbcee7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d945bc28b8fbfcfabd810d04ab5398f = $(`&lt;div id=&quot;html_1d945bc28b8fbfcfabd810d04ab5398f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.658             latitude:40.8033             PM2_5:36.70612813             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17f7b1c78d5c9698674aca32bcbcee7a.setContent(html_1d945bc28b8fbfcfabd810d04ab5398f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddb35b335164076daef774f8621e5bbd.bindPopup(popup_17f7b1c78d5c9698674aca32bcbcee7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c6ff314b5a51558b633fcc0d8b545ce = L.circleMarker(\\n\",\n       \"                [46.619, 131.1651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_506618045a02a49b35ea8119e3e723c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d57b7777c1ee46a86ce0462b72a8e29 = $(`&lt;div id=&quot;html_4d57b7777c1ee46a86ce0462b72a8e29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1651             latitude:46.619             PM2_5:26.38235294             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_506618045a02a49b35ea8119e3e723c8.setContent(html_4d57b7777c1ee46a86ce0462b72a8e29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c6ff314b5a51558b633fcc0d8b545ce.bindPopup(popup_506618045a02a49b35ea8119e3e723c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05dda695751073156f62e45c05e0c384 = L.circleMarker(\\n\",\n       \"                [27.8136, 99.7064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbd3a5ec160e5cbc9b9cfd763d3a6c44 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9e1f733c5c32ebe676e52fa41ea00f7 = $(`&lt;div id=&quot;html_d9e1f733c5c32ebe676e52fa41ea00f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.7064             latitude:27.8136             PM2_5:12.44481605             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbd3a5ec160e5cbc9b9cfd763d3a6c44.setContent(html_d9e1f733c5c32ebe676e52fa41ea00f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05dda695751073156f62e45c05e0c384.bindPopup(popup_bbd3a5ec160e5cbc9b9cfd763d3a6c44)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e469bbefddeeb037e3b4965b0229dda6 = L.circleMarker(\\n\",\n       \"                [28.2325, 113.0833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36b718cd2cbe0f3cbd505600fac873c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57ce6cc9486660e60c5fb6da4ebc94ae = $(`&lt;div id=&quot;html_57ce6cc9486660e60c5fb6da4ebc94ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0833             latitude:28.2325             PM2_5:45.18472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36b718cd2cbe0f3cbd505600fac873c6.setContent(html_57ce6cc9486660e60c5fb6da4ebc94ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e469bbefddeeb037e3b4965b0229dda6.bindPopup(popup_36b718cd2cbe0f3cbd505600fac873c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3623d80a33503eabfd48cae0af8cbc6c = L.circleMarker(\\n\",\n       \"                [39.8745, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_432b6d63448ec07dc1ec3bd5bf1b2cf2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9a828a1aa462e90f939070aa5e19ed99 = $(`&lt;div id=&quot;html_9a828a1aa462e90f939070aa5e19ed99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.8745             PM2_5:52.26638177             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_432b6d63448ec07dc1ec3bd5bf1b2cf2.setContent(html_9a828a1aa462e90f939070aa5e19ed99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3623d80a33503eabfd48cae0af8cbc6c.bindPopup(popup_432b6d63448ec07dc1ec3bd5bf1b2cf2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5483e7ad2a251abbfcf177ca6e266927 = L.circleMarker(\\n\",\n       \"                [27.2582, 111.4908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ac8cbe612e259cea60226b9d911f4cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b97a7ede0a470a3b6abfd55a91d61f73 = $(`&lt;div id=&quot;html_b97a7ede0a470a3b6abfd55a91d61f73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4908             latitude:27.2582             PM2_5:49.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ac8cbe612e259cea60226b9d911f4cd.setContent(html_b97a7ede0a470a3b6abfd55a91d61f73);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5483e7ad2a251abbfcf177ca6e266927.bindPopup(popup_1ac8cbe612e259cea60226b9d911f4cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a6d9a225fef7cef48078d0215b257e9 = L.circleMarker(\\n\",\n       \"                [35.6039, 103.2139],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd65184e2f280a47ac35ca55a4a70b4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_173536d701dcd569bf6a0c4478a671d6 = $(`&lt;div id=&quot;html_173536d701dcd569bf6a0c4478a671d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.2139             latitude:35.6039             PM2_5:35.40756303             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd65184e2f280a47ac35ca55a4a70b4a.setContent(html_173536d701dcd569bf6a0c4478a671d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a6d9a225fef7cef48078d0215b257e9.bindPopup(popup_dd65184e2f280a47ac35ca55a4a70b4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a5859735fe2d8a91612b117a7deab35 = L.circleMarker(\\n\",\n       \"                [33.1138, 107.0089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37292658ecab3236386ee91a4434ef2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6e47233b53a2220428ada8ede27c74b = $(`&lt;div id=&quot;html_d6e47233b53a2220428ada8ede27c74b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0089             latitude:33.1138             PM2_5:45.40730337             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37292658ecab3236386ee91a4434ef2f.setContent(html_d6e47233b53a2220428ada8ede27c74b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a5859735fe2d8a91612b117a7deab35.bindPopup(popup_37292658ecab3236386ee91a4434ef2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb84ed20d8cc664787645924bb6135f0 = L.circleMarker(\\n\",\n       \"                [31.8711, 106.7389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91399df8307aabf142d8cafb1060dd1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb53cf30beb986edc23a958c7393f95f = $(`&lt;div id=&quot;html_eb53cf30beb986edc23a958c7393f95f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7389             latitude:31.8711             PM2_5:32.18662953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91399df8307aabf142d8cafb1060dd1a.setContent(html_eb53cf30beb986edc23a958c7393f95f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb84ed20d8cc664787645924bb6135f0.bindPopup(popup_91399df8307aabf142d8cafb1060dd1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e66bfb7e43f8876b4ccb08f55e7bed6c = L.circleMarker(\\n\",\n       \"                [43.8875, 126.555],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_563a5cacc1f08118165c00532f938258 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_429c1fde6f47444fee96111018a45bf4 = $(`&lt;div id=&quot;html_429c1fde6f47444fee96111018a45bf4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.555             latitude:43.8875             PM2_5:31.1800554             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_563a5cacc1f08118165c00532f938258.setContent(html_429c1fde6f47444fee96111018a45bf4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e66bfb7e43f8876b4ccb08f55e7bed6c.bindPopup(popup_563a5cacc1f08118165c00532f938258)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0160c2d55623ff174a609d1d15c9df7a = L.circleMarker(\\n\",\n       \"                [23.02777778, 113.7461111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9268d88737468f8bee19171c7a184b5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_707469886413d209b4ca67f69b440201 = $(`&lt;div id=&quot;html_707469886413d209b4ca67f69b440201&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7461111             latitude:23.02777778             PM2_5:36.35734463             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9268d88737468f8bee19171c7a184b5d.setContent(html_707469886413d209b4ca67f69b440201);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0160c2d55623ff174a609d1d15c9df7a.bindPopup(popup_9268d88737468f8bee19171c7a184b5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e049a0d7e280820ecf744566a2a55638 = L.circleMarker(\\n\",\n       \"                [35.5997, 103.2064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be56fa637def0981beb73fe1550f7a84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1819d2b720e9bec0e680109f72ee81e8 = $(`&lt;div id=&quot;html_1819d2b720e9bec0e680109f72ee81e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.2064             latitude:35.5997             PM2_5:30.64345404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be56fa637def0981beb73fe1550f7a84.setContent(html_1819d2b720e9bec0e680109f72ee81e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e049a0d7e280820ecf744566a2a55638.bindPopup(popup_be56fa637def0981beb73fe1550f7a84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae6fcf3ed8470bb7d41f7ab57649bde4 = L.circleMarker(\\n\",\n       \"                [28.8194, 104.5969],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0cfee54c4a343974c0fa94e9562884d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85a96add8e91cb6583f9fee05e4e35ad = $(`&lt;div id=&quot;html_85a96add8e91cb6583f9fee05e4e35ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.5969             latitude:28.8194             PM2_5:49.5720339             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0cfee54c4a343974c0fa94e9562884d2.setContent(html_85a96add8e91cb6583f9fee05e4e35ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae6fcf3ed8470bb7d41f7ab57649bde4.bindPopup(popup_0cfee54c4a343974c0fa94e9562884d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12028448aa90bcff9134367136157ff4 = L.circleMarker(\\n\",\n       \"                [32.939, 117.3961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d794aba552bd8c1e851fb6ec46287530 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19ba865b5209f846e433814cd15fe95f = $(`&lt;div id=&quot;html_19ba865b5209f846e433814cd15fe95f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3961             latitude:32.939             PM2_5:64.66016713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d794aba552bd8c1e851fb6ec46287530.setContent(html_19ba865b5209f846e433814cd15fe95f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12028448aa90bcff9134367136157ff4.bindPopup(popup_d794aba552bd8c1e851fb6ec46287530)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1a3cde474327d56b622095a5f83d5ef = L.circleMarker(\\n\",\n       \"                [34.2761, 117.167],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4edc896b0da7d967271efaebb0474ef5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e485d3c643bbaaa6d4bfca0dafb8c4e3 = $(`&lt;div id=&quot;html_e485d3c643bbaaa6d4bfca0dafb8c4e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.167             latitude:34.2761             PM2_5:66.15223464             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4edc896b0da7d967271efaebb0474ef5.setContent(html_e485d3c643bbaaa6d4bfca0dafb8c4e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1a3cde474327d56b622095a5f83d5ef.bindPopup(popup_4edc896b0da7d967271efaebb0474ef5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ab8f1ab53f9850746e20276a3c17fbd = L.circleMarker(\\n\",\n       \"                [36.6428, 101.748],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7fad8e5933a4049bee8710f434c14ce1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8059618fa60cac08a3f30b07bcbf86c7 = $(`&lt;div id=&quot;html_8059618fa60cac08a3f30b07bcbf86c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.748             latitude:36.6428             PM2_5:57.3005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7fad8e5933a4049bee8710f434c14ce1.setContent(html_8059618fa60cac08a3f30b07bcbf86c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ab8f1ab53f9850746e20276a3c17fbd.bindPopup(popup_7fad8e5933a4049bee8710f434c14ce1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b81a78439da10a96b6706b23ffc17ce9 = L.circleMarker(\\n\",\n       \"                [27.8159, 112.9227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_06d5e2161c7267d84214784d4a604c6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ebf4f4d1ec479f82c6b74f917001f4f = $(`&lt;div id=&quot;html_6ebf4f4d1ec479f82c6b74f917001f4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9227             latitude:27.8159             PM2_5:45.07222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_06d5e2161c7267d84214784d4a604c6e.setContent(html_6ebf4f4d1ec479f82c6b74f917001f4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b81a78439da10a96b6706b23ffc17ce9.bindPopup(popup_06d5e2161c7267d84214784d4a604c6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e23bf87f906e34b10ea7bbb0b391a77 = L.circleMarker(\\n\",\n       \"                [30.3119, 120.12],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da8a6a7e3edb500d6e0674c0da671db1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b06be6ca036f43c95071d6fc325cc4e = $(`&lt;div id=&quot;html_5b06be6ca036f43c95071d6fc325cc4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.12             latitude:30.3119             PM2_5:42.92936288             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da8a6a7e3edb500d6e0674c0da671db1.setContent(html_5b06be6ca036f43c95071d6fc325cc4e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e23bf87f906e34b10ea7bbb0b391a77.bindPopup(popup_da8a6a7e3edb500d6e0674c0da671db1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34b1ec49683aeb64e962d01fd14cb3ad = L.circleMarker(\\n\",\n       \"                [29.7736, 121.633],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_530c93f1f721ace0ff20f882d4828a7a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3d3a450420e0de00999cf399222e956 = $(`&lt;div id=&quot;html_d3d3a450420e0de00999cf399222e956&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.633             latitude:29.7736             PM2_5:33.41340782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_530c93f1f721ace0ff20f882d4828a7a.setContent(html_d3d3a450420e0de00999cf399222e956);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34b1ec49683aeb64e962d01fd14cb3ad.bindPopup(popup_530c93f1f721ace0ff20f882d4828a7a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffd09964ac6e0b64505ac002bb4a59c7 = L.circleMarker(\\n\",\n       \"                [34.5911, 119.1478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9884fbc2e4b819065f52a167041335a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bca713409d28c888898cbd1390535f66 = $(`&lt;div id=&quot;html_bca713409d28c888898cbd1390535f66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1478             latitude:34.5911             PM2_5:43.48860399             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9884fbc2e4b819065f52a167041335a.setContent(html_bca713409d28c888898cbd1390535f66);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffd09964ac6e0b64505ac002bb4a59c7.bindPopup(popup_b9884fbc2e4b819065f52a167041335a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9bc68529335bad04598df81523b50e30 = L.circleMarker(\\n\",\n       \"                [31.155, 120.636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_959428a07a4ce9a45e6c4976f3a5f1bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92d5b1e4d2d965b165d95fbc79a15226 = $(`&lt;div id=&quot;html_92d5b1e4d2d965b165d95fbc79a15226&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.636             latitude:31.155             PM2_5:39.32271468             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_959428a07a4ce9a45e6c4976f3a5f1bf.setContent(html_92d5b1e4d2d965b165d95fbc79a15226);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9bc68529335bad04598df81523b50e30.bindPopup(popup_959428a07a4ce9a45e6c4976f3a5f1bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b412bae4f7e58a794f7d4547f821e28 = L.circleMarker(\\n\",\n       \"                [35.2375, 115.474722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2595751ccd8e4ec28110ec08fcf71dd7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_948132f0c18299664917f30f03d453da = $(`&lt;div id=&quot;html_948132f0c18299664917f30f03d453da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.474722             latitude:35.2375             PM2_5:57.86516854             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2595751ccd8e4ec28110ec08fcf71dd7.setContent(html_948132f0c18299664917f30f03d453da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b412bae4f7e58a794f7d4547f821e28.bindPopup(popup_2595751ccd8e4ec28110ec08fcf71dd7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38e989477320cefb96aa2c97e2fe5836 = L.circleMarker(\\n\",\n       \"                [30.518, 106.631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4b20b06aff24c9d86da61c1cd0af13b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48157f1758b194647f0044b6529af880 = $(`&lt;div id=&quot;html_48157f1758b194647f0044b6529af880&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.631             latitude:30.518             PM2_5:32.56446991             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4b20b06aff24c9d86da61c1cd0af13b.setContent(html_48157f1758b194647f0044b6529af880);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38e989477320cefb96aa2c97e2fe5836.bindPopup(popup_b4b20b06aff24c9d86da61c1cd0af13b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c0ba0285353a729056d36ebcc9c5dd34 = L.circleMarker(\\n\",\n       \"                [31.1333, 104.3883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca045849d72e30da087ea331311bde09 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d6d5fa9274b709a290d59745afc3ab5 = $(`&lt;div id=&quot;html_4d6d5fa9274b709a290d59745afc3ab5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.3883             latitude:31.1333             PM2_5:44.57222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca045849d72e30da087ea331311bde09.setContent(html_4d6d5fa9274b709a290d59745afc3ab5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c0ba0285353a729056d36ebcc9c5dd34.bindPopup(popup_ca045849d72e30da087ea331311bde09)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0820ccb11623ff11fd8ada865004723f = L.circleMarker(\\n\",\n       \"                [32.0417, 120.81],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea1fd85d71d5b12e39f1d410ebdbbed2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6efe5d4fdb74fa9e37eb3a6ba320ba6 = $(`&lt;div id=&quot;html_a6efe5d4fdb74fa9e37eb3a6ba320ba6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.81             latitude:32.0417             PM2_5:36.4957265             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea1fd85d71d5b12e39f1d410ebdbbed2.setContent(html_a6efe5d4fdb74fa9e37eb3a6ba320ba6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0820ccb11623ff11fd8ada865004723f.bindPopup(popup_ea1fd85d71d5b12e39f1d410ebdbbed2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_946fb87ba93c91d604c119ca68c8d830 = L.circleMarker(\\n\",\n       \"                [36.5776, 114.5035],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7344b07cfca76300f1093c3a9e4afbc7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e30cc862d70771e80d72e9665929928 = $(`&lt;div id=&quot;html_6e30cc862d70771e80d72e9665929928&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5035             latitude:36.5776             PM2_5:73.41736695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7344b07cfca76300f1093c3a9e4afbc7.setContent(html_6e30cc862d70771e80d72e9665929928);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_946fb87ba93c91d604c119ca68c8d830.bindPopup(popup_7344b07cfca76300f1093c3a9e4afbc7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f397783c138b1bb08b07b00ca644c2a = L.circleMarker(\\n\",\n       \"                [45.7677, 131.0032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c91ddb526d5ec7a4cbca625995284aec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60e6a78906705463f9a226f766dd93e3 = $(`&lt;div id=&quot;html_60e6a78906705463f9a226f766dd93e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.0032             latitude:45.7677             PM2_5:36.55084746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c91ddb526d5ec7a4cbca625995284aec.setContent(html_60e6a78906705463f9a226f766dd93e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f397783c138b1bb08b07b00ca644c2a.bindPopup(popup_c91ddb526d5ec7a4cbca625995284aec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57ab32ad96d50764bdbcc3f9c0cda4e4 = L.circleMarker(\\n\",\n       \"                [30.2692, 120.19],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eed61d3ed6ae4b1c7bbe61fab6e98096 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0e93ed9d07be758cabc3ae29b4ce6b9 = $(`&lt;div id=&quot;html_b0e93ed9d07be758cabc3ae29b4ce6b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.19             latitude:30.2692             PM2_5:42.02361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eed61d3ed6ae4b1c7bbe61fab6e98096.setContent(html_b0e93ed9d07be758cabc3ae29b4ce6b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57ab32ad96d50764bdbcc3f9c0cda4e4.bindPopup(popup_eed61d3ed6ae4b1c7bbe61fab6e98096)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc88bfe5d99846246742ee721388f55a = L.circleMarker(\\n\",\n       \"                [37.8692, 112.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c74f67c401fae257ae0137bb4fc9ef4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7eb4e014d9872cd50c92186898aeb485 = $(`&lt;div id=&quot;html_7eb4e014d9872cd50c92186898aeb485&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5369             latitude:37.8692             PM2_5:65.43201133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c74f67c401fae257ae0137bb4fc9ef4.setContent(html_7eb4e014d9872cd50c92186898aeb485);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc88bfe5d99846246742ee721388f55a.bindPopup(popup_8c74f67c401fae257ae0137bb4fc9ef4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bca1a7bc7a2b1b92aa80868269f36046 = L.circleMarker(\\n\",\n       \"                [31.4189, 118.37],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac4cc9607815d6fe1bb3e7a0c835311d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17d7e8272fd6408d1d2761b182e40326 = $(`&lt;div id=&quot;html_17d7e8272fd6408d1d2761b182e40326&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.37             latitude:31.4189             PM2_5:49.21848739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac4cc9607815d6fe1bb3e7a0c835311d.setContent(html_17d7e8272fd6408d1d2761b182e40326);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bca1a7bc7a2b1b92aa80868269f36046.bindPopup(popup_ac4cc9607815d6fe1bb3e7a0c835311d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dc93d88a089728abe75850a11b20c62 = L.circleMarker(\\n\",\n       \"                [31.7797, 116.5068],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aca6df586b788d986e85951bd9f449f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fff38001396f12bf33502703a28e2a14 = $(`&lt;div id=&quot;html_fff38001396f12bf33502703a28e2a14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5068             latitude:31.7797             PM2_5:41.27668539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aca6df586b788d986e85951bd9f449f1.setContent(html_fff38001396f12bf33502703a28e2a14);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dc93d88a089728abe75850a11b20c62.bindPopup(popup_aca6df586b788d986e85951bd9f449f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b684243b42816fdd5dafab596fec09b = L.circleMarker(\\n\",\n       \"                [23.0944, 109.6014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_927f11116c85639d6677c91d35214bd9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f170ce60425fb47e63e35d031df449ce = $(`&lt;div id=&quot;html_f170ce60425fb47e63e35d031df449ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6014             latitude:23.0944             PM2_5:37.92877095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_927f11116c85639d6677c91d35214bd9.setContent(html_f170ce60425fb47e63e35d031df449ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b684243b42816fdd5dafab596fec09b.bindPopup(popup_927f11116c85639d6677c91d35214bd9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66235f94fcbd9c33ec1150bbbe269d9b = L.circleMarker(\\n\",\n       \"                [47.3382, 130.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9d4b74368d70b6f7de53427dec5512a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09d85866c261ad0cd4decab85c39e94c = $(`&lt;div id=&quot;html_09d85866c261ad0cd4decab85c39e94c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.1097             latitude:47.3382             PM2_5:17.86571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9d4b74368d70b6f7de53427dec5512a.setContent(html_09d85866c261ad0cd4decab85c39e94c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66235f94fcbd9c33ec1150bbbe269d9b.bindPopup(popup_c9d4b74368d70b6f7de53427dec5512a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ffd1729f9aed0fb8b55e7056aa7cd2d = L.circleMarker(\\n\",\n       \"                [32.4285, 105.8624],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_587c4f68d6016fd45f9bf3d828ba0303 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f290de43eb8dd3c7ad3906bae022e336 = $(`&lt;div id=&quot;html_f290de43eb8dd3c7ad3906bae022e336&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8624             latitude:32.4285             PM2_5:25.26044568             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_587c4f68d6016fd45f9bf3d828ba0303.setContent(html_f290de43eb8dd3c7ad3906bae022e336);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ffd1729f9aed0fb8b55e7056aa7cd2d.bindPopup(popup_587c4f68d6016fd45f9bf3d828ba0303)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8cf9ca442afe44abbfa13267f7e5643 = L.circleMarker(\\n\",\n       \"                [31.9025, 102.2218],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_952b0960ab3ca157f9ba3290f9aca688 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71b1014a33c0e77b56457d82b9da6c9c = $(`&lt;div id=&quot;html_71b1014a33c0e77b56457d82b9da6c9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2218             latitude:31.9025             PM2_5:10.50840336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_952b0960ab3ca157f9ba3290f9aca688.setContent(html_71b1014a33c0e77b56457d82b9da6c9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8cf9ca442afe44abbfa13267f7e5643.bindPopup(popup_952b0960ab3ca157f9ba3290f9aca688)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b675736fb82515608e44f05893ab2ecb = L.circleMarker(\\n\",\n       \"                [27.7019, 106.9242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_155ea5b060f22b5adc3c0d4a416a3a10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1abfe6e4df966fcad7e558410d6359a = $(`&lt;div id=&quot;html_b1abfe6e4df966fcad7e558410d6359a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9242             latitude:27.7019             PM2_5:27.95238095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_155ea5b060f22b5adc3c0d4a416a3a10.setContent(html_b1abfe6e4df966fcad7e558410d6359a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b675736fb82515608e44f05893ab2ecb.bindPopup(popup_155ea5b060f22b5adc3c0d4a416a3a10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09a4d498ac40427623c8aa6b9800fda7 = L.circleMarker(\\n\",\n       \"                [22.7422, 114.5317],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2ed1063c2c1860d8baa15b4da6b80fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d31a6e53d4e683be16b4874f35979c06 = $(`&lt;div id=&quot;html_d31a6e53d4e683be16b4874f35979c06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5317             latitude:22.7422             PM2_5:29.73285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2ed1063c2c1860d8baa15b4da6b80fb.setContent(html_d31a6e53d4e683be16b4874f35979c06);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09a4d498ac40427623c8aa6b9800fda7.bindPopup(popup_b2ed1063c2c1860d8baa15b4da6b80fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b535071450aaf9d76df6308be9fc6e4 = L.circleMarker(\\n\",\n       \"                [29.5467, 103.7705],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1baa1485d8c353339c6bd27d90675ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afa624deee0ad8cc4bcb9a3c8915fbd6 = $(`&lt;div id=&quot;html_afa624deee0ad8cc4bcb9a3c8915fbd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7705             latitude:29.5467             PM2_5:48.10252809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1baa1485d8c353339c6bd27d90675ba.setContent(html_afa624deee0ad8cc4bcb9a3c8915fbd6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b535071450aaf9d76df6308be9fc6e4.bindPopup(popup_b1baa1485d8c353339c6bd27d90675ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24fd9278f343236bfe7e80f929141aa6 = L.circleMarker(\\n\",\n       \"                [23.0672, 109.6042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8214c0401d2604275d16bd8adc32156 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49ac14ec3989c16344c7d1d04c8a5b16 = $(`&lt;div id=&quot;html_49ac14ec3989c16344c7d1d04c8a5b16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6042             latitude:23.0672             PM2_5:37.3603352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8214c0401d2604275d16bd8adc32156.setContent(html_49ac14ec3989c16344c7d1d04c8a5b16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24fd9278f343236bfe7e80f929141aa6.bindPopup(popup_e8214c0401d2604275d16bd8adc32156)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7cf5f44858c0a9802d4860313ced68ff = L.circleMarker(\\n\",\n       \"                [33.6347, 114.6758],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1880e09fa181aa1ef046fe174398fd9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86719e4202e14d30f5f2e7315a1c3431 = $(`&lt;div id=&quot;html_86719e4202e14d30f5f2e7315a1c3431&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6758             latitude:33.6347             PM2_5:49.04929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1880e09fa181aa1ef046fe174398fd9.setContent(html_86719e4202e14d30f5f2e7315a1c3431);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7cf5f44858c0a9802d4860313ced68ff.bindPopup(popup_a1880e09fa181aa1ef046fe174398fd9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29a5a4473787c6b4f0fa977a9379b71d = L.circleMarker(\\n\",\n       \"                [41.0831, 123.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7659c2e282832cf4686827b433ad9397 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_872e307b26b6750f21e3fd23bfebacda = $(`&lt;div id=&quot;html_872e307b26b6750f21e3fd23bfebacda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0156             latitude:41.0831             PM2_5:32.32402235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7659c2e282832cf4686827b433ad9397.setContent(html_872e307b26b6750f21e3fd23bfebacda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29a5a4473787c6b4f0fa977a9379b71d.bindPopup(popup_7659c2e282832cf4686827b433ad9397)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_922c677d0527febaab1729b42c1920e1 = L.circleMarker(\\n\",\n       \"                [42.2217, 123.7153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57e1a7e3b1f62492534e6b0571fe4476 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_63c41cd6b3fd7b3c7cc7e3fc799da960 = $(`&lt;div id=&quot;html_63c41cd6b3fd7b3c7cc7e3fc799da960&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7153             latitude:42.2217             PM2_5:31.41666667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57e1a7e3b1f62492534e6b0571fe4476.setContent(html_63c41cd6b3fd7b3c7cc7e3fc799da960);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_922c677d0527febaab1729b42c1920e1.bindPopup(popup_57e1a7e3b1f62492534e6b0571fe4476)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98e13278f30a56f643043489a35480ca = L.circleMarker(\\n\",\n       \"                [29.6632, 94.3616],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf270f33a53a13f3dfaf92ca89eb038f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0734877427324f59036e3ca4e0f65daa = $(`&lt;div id=&quot;html_0734877427324f59036e3ca4e0f65daa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:94.3616             latitude:29.6632             PM2_5:7.451977401             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf270f33a53a13f3dfaf92ca89eb038f.setContent(html_0734877427324f59036e3ca4e0f65daa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98e13278f30a56f643043489a35480ca.bindPopup(popup_bf270f33a53a13f3dfaf92ca89eb038f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e9bda69c167e757ed1f96daa308b144 = L.circleMarker(\\n\",\n       \"                [30.9414, 117.7806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84c6c667ef285943ea6826b87fe16c0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57dcaac3fe0b1cfa0a9377b31cbd6152 = $(`&lt;div id=&quot;html_57dcaac3fe0b1cfa0a9377b31cbd6152&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7806             latitude:30.9414             PM2_5:50.90972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84c6c667ef285943ea6826b87fe16c0a.setContent(html_57dcaac3fe0b1cfa0a9377b31cbd6152);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e9bda69c167e757ed1f96daa308b144.bindPopup(popup_84c6c667ef285943ea6826b87fe16c0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_779bf29ac2ba924262150b824f3fd398 = L.circleMarker(\\n\",\n       \"                [28.2169, 116.9983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be960dc88e51fd361ce627db0d1e36db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2791e4164ac5276d9a6d975b58d5fe81 = $(`&lt;div id=&quot;html_2791e4164ac5276d9a6d975b58d5fe81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9983             latitude:28.2169             PM2_5:34.9039548             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be960dc88e51fd361ce627db0d1e36db.setContent(html_2791e4164ac5276d9a6d975b58d5fe81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_779bf29ac2ba924262150b824f3fd398.bindPopup(popup_be960dc88e51fd361ce627db0d1e36db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14e9fbaa5e1a8f2fbb87334b084b27bc = L.circleMarker(\\n\",\n       \"                [33.9592, 118.2442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9ea48edb84f58915c3019b865b6c499 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_edef7651fe8880a54e34b911719c52d9 = $(`&lt;div id=&quot;html_edef7651fe8880a54e34b911719c52d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2442             latitude:33.9592             PM2_5:56.46619217             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9ea48edb84f58915c3019b865b6c499.setContent(html_edef7651fe8880a54e34b911719c52d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14e9fbaa5e1a8f2fbb87334b084b27bc.bindPopup(popup_e9ea48edb84f58915c3019b865b6c499)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89200f42c415fa7c668007301392b66c = L.circleMarker(\\n\",\n       \"                [24.5058, 118.0936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fbf8b167b410cf1db7a063b216b46d00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d3a1064c3d740c38e1d8e50b61d578d = $(`&lt;div id=&quot;html_9d3a1064c3d740c38e1d8e50b61d578d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0936             latitude:24.5058             PM2_5:25.02367688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fbf8b167b410cf1db7a063b216b46d00.setContent(html_9d3a1064c3d740c38e1d8e50b61d578d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89200f42c415fa7c668007301392b66c.bindPopup(popup_fbf8b167b410cf1db7a063b216b46d00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4479c32c56b7dd0bf9b6f0327f1fe1d2 = L.circleMarker(\\n\",\n       \"                [32.215, 119.491],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9025734b82d070f860bf34b8e37b3d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4292b441d1ff5116db0813c5685c34a = $(`&lt;div id=&quot;html_f4292b441d1ff5116db0813c5685c34a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.491             latitude:32.215             PM2_5:46.08888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9025734b82d070f860bf34b8e37b3d0.setContent(html_f4292b441d1ff5116db0813c5685c34a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4479c32c56b7dd0bf9b6f0327f1fe1d2.bindPopup(popup_f9025734b82d070f860bf34b8e37b3d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75a712fdd736a4aac424acc44dd32b42 = L.circleMarker(\\n\",\n       \"                [45.0878, 124.8292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32031dc1e5de5d256368d9ce120933f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0fa5674f835262283562894818da689 = $(`&lt;div id=&quot;html_c0fa5674f835262283562894818da689&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8292             latitude:45.0878             PM2_5:27.28830084             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32031dc1e5de5d256368d9ce120933f1.setContent(html_c0fa5674f835262283562894818da689);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75a712fdd736a4aac424acc44dd32b42.bindPopup(popup_32031dc1e5de5d256368d9ce120933f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c45c16c8b6cf5cc13d565152d24643a9 = L.circleMarker(\\n\",\n       \"                [23.7586, 114.6944],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_687b33b85edef1682691cf674244b347 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4894dfa648dfc78d4d6b4dc3225dbff = $(`&lt;div id=&quot;html_f4894dfa648dfc78d4d6b4dc3225dbff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6944             latitude:23.7586             PM2_5:29.19382022             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_687b33b85edef1682691cf674244b347.setContent(html_f4894dfa648dfc78d4d6b4dc3225dbff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c45c16c8b6cf5cc13d565152d24643a9.bindPopup(popup_687b33b85edef1682691cf674244b347)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8d885a9a8b92adaa3c53a32237d108d = L.circleMarker(\\n\",\n       \"                [27.9958, 113.1817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9ff8bd3467cf5d6763fc97b9ecddc5e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce4ff80cbe94bef177148f654a7e83ff = $(`&lt;div id=&quot;html_ce4ff80cbe94bef177148f654a7e83ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1817             latitude:27.9958             PM2_5:39.6686747             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9ff8bd3467cf5d6763fc97b9ecddc5e.setContent(html_ce4ff80cbe94bef177148f654a7e83ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8d885a9a8b92adaa3c53a32237d108d.bindPopup(popup_f9ff8bd3467cf5d6763fc97b9ecddc5e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dba1393f31871720e29e527dba66f8fc = L.circleMarker(\\n\",\n       \"                [42.2864, 123.8489],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9b05c35d89416347b92c02aa7762bfc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_855efc34c111a692b997f89cab6b4b06 = $(`&lt;div id=&quot;html_855efc34c111a692b997f89cab6b4b06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8489             latitude:42.2864             PM2_5:32.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9b05c35d89416347b92c02aa7762bfc.setContent(html_855efc34c111a692b997f89cab6b4b06);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dba1393f31871720e29e527dba66f8fc.bindPopup(popup_c9b05c35d89416347b92c02aa7762bfc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_658da72d93c190e8687e4a41713b8a5b = L.circleMarker(\\n\",\n       \"                [36.1031, 103.631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d344edc16f949a2989d9bef1cf72f285 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2754601be23b88a4031a1c95db9694f9 = $(`&lt;div id=&quot;html_2754601be23b88a4031a1c95db9694f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.631             latitude:36.1031             PM2_5:61.04073034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d344edc16f949a2989d9bef1cf72f285.setContent(html_2754601be23b88a4031a1c95db9694f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_658da72d93c190e8687e4a41713b8a5b.bindPopup(popup_d344edc16f949a2989d9bef1cf72f285)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca7d1ee0f7dd33228561e1356c065967 = L.circleMarker(\\n\",\n       \"                [30.9414, 117.8178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4deef77aef27d2733ee0abb402e2599d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f03aea6283ca37a5e75c6550ca8b40fe = $(`&lt;div id=&quot;html_f03aea6283ca37a5e75c6550ca8b40fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8178             latitude:30.9414             PM2_5:52.25837989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4deef77aef27d2733ee0abb402e2599d.setContent(html_f03aea6283ca37a5e75c6550ca8b40fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca7d1ee0f7dd33228561e1356c065967.bindPopup(popup_4deef77aef27d2733ee0abb402e2599d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d8870a452a6a23bc86a4dd700570fd59 = L.circleMarker(\\n\",\n       \"                [43.8303, 87.5801],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1e769b8c42ec8571139267483fb3fb5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47f56b3700fa52213aa548afa23abd9e = $(`&lt;div id=&quot;html_47f56b3700fa52213aa548afa23abd9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5801             latitude:43.8303             PM2_5:54.90373563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1e769b8c42ec8571139267483fb3fb5.setContent(html_47f56b3700fa52213aa548afa23abd9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d8870a452a6a23bc86a4dd700570fd59.bindPopup(popup_d1e769b8c42ec8571139267483fb3fb5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18000cc246aa670b1b49512fc37ef869 = L.circleMarker(\\n\",\n       \"                [30.0033, 120.7789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b214d8102a6b4d364ff712c1f71b3385 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6461ff2a449eb2a3575be8d78602df3 = $(`&lt;div id=&quot;html_b6461ff2a449eb2a3575be8d78602df3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.7789             latitude:30.0033             PM2_5:43.33379888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b214d8102a6b4d364ff712c1f71b3385.setContent(html_b6461ff2a449eb2a3575be8d78602df3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18000cc246aa670b1b49512fc37ef869.bindPopup(popup_b214d8102a6b4d364ff712c1f71b3385)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a39b22b230ccf27313f66e8306451ad = L.circleMarker(\\n\",\n       \"                [37.0964, 114.5331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e68413ac27f31bb8e4edc11a735541a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f782fc01c12b9dcdeb8349495cf1dc8 = $(`&lt;div id=&quot;html_2f782fc01c12b9dcdeb8349495cf1dc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5331             latitude:37.0964             PM2_5:77.58595989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e68413ac27f31bb8e4edc11a735541a.setContent(html_2f782fc01c12b9dcdeb8349495cf1dc8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a39b22b230ccf27313f66e8306451ad.bindPopup(popup_9e68413ac27f31bb8e4edc11a735541a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00466a81234cd06d48e18a687dd0f840 = L.circleMarker(\\n\",\n       \"                [40.8144, 111.608],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be4a78c4cd53ae4600d75ba210a4396d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4f45cdbbfac9c7390110598c2cb31d3 = $(`&lt;div id=&quot;html_c4f45cdbbfac9c7390110598c2cb31d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.608             latitude:40.8144             PM2_5:45.11331445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be4a78c4cd53ae4600d75ba210a4396d.setContent(html_c4f45cdbbfac9c7390110598c2cb31d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00466a81234cd06d48e18a687dd0f840.bindPopup(popup_be4a78c4cd53ae4600d75ba210a4396d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa21240b5e9afecb4c111466ad468a29 = L.circleMarker(\\n\",\n       \"                [38.885, 121.5638889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_187cdc7db9d58ab89a63ea3d9b54673d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9a34b01eb983396b9a799e8dbf9c8c0 = $(`&lt;div id=&quot;html_e9a34b01eb983396b9a799e8dbf9c8c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5638889             latitude:38.885             PM2_5:28.35180055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_187cdc7db9d58ab89a63ea3d9b54673d.setContent(html_e9a34b01eb983396b9a799e8dbf9c8c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa21240b5e9afecb4c111466ad468a29.bindPopup(popup_187cdc7db9d58ab89a63ea3d9b54673d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70538923081f37ccaafb75653a848dde = L.circleMarker(\\n\",\n       \"                [29.3547, 110.5594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba4f38ad5ddf07942b29585e90693184 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af6e26535e4089f103b6962a1e8b0c98 = $(`&lt;div id=&quot;html_af6e26535e4089f103b6962a1e8b0c98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.5594             latitude:29.3547             PM2_5:28.22005571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba4f38ad5ddf07942b29585e90693184.setContent(html_af6e26535e4089f103b6962a1e8b0c98);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70538923081f37ccaafb75653a848dde.bindPopup(popup_ba4f38ad5ddf07942b29585e90693184)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c0206287a079e1e09fb20580011abff = L.circleMarker(\\n\",\n       \"                [41.2864, 123.7669],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c277c714b6bc4372b5954dc1b9f56be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_166bce2ebccbf9d5e34758423be87bd8 = $(`&lt;div id=&quot;html_166bce2ebccbf9d5e34758423be87bd8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7669             latitude:41.2864             PM2_5:26.47777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c277c714b6bc4372b5954dc1b9f56be.setContent(html_166bce2ebccbf9d5e34758423be87bd8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c0206287a079e1e09fb20580011abff.bindPopup(popup_3c277c714b6bc4372b5954dc1b9f56be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d6132fbb7b677df82468dd8b876b9ed = L.circleMarker(\\n\",\n       \"                [26.5894, 104.8475],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f839ef0226eb7cbf3c275397650fd305 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1ecaf1aedb72500e8d457adfd4af43c = $(`&lt;div id=&quot;html_c1ecaf1aedb72500e8d457adfd4af43c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8475             latitude:26.5894             PM2_5:30.62569832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f839ef0226eb7cbf3c275397650fd305.setContent(html_c1ecaf1aedb72500e8d457adfd4af43c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d6132fbb7b677df82468dd8b876b9ed.bindPopup(popup_f839ef0226eb7cbf3c275397650fd305)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca36642511535ac15d2c325a31d1903d = L.circleMarker(\\n\",\n       \"                [34.402, 115.6578],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21530e16dffb17d2722fac25b8127f67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f1969a0a8ce5ff426536a06bfedfb1e = $(`&lt;div id=&quot;html_3f1969a0a8ce5ff426536a06bfedfb1e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6578             latitude:34.402             PM2_5:56.04761905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21530e16dffb17d2722fac25b8127f67.setContent(html_3f1969a0a8ce5ff426536a06bfedfb1e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca36642511535ac15d2c325a31d1903d.bindPopup(popup_21530e16dffb17d2722fac25b8127f67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_53d98b7936efb03941f85d879a2a2ec2 = L.circleMarker(\\n\",\n       \"                [31.3097, 120.669],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a92467dc22b2521e68f2baa598c155f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02c19aefca7a827a140eb9909c026e9f = $(`&lt;div id=&quot;html_02c19aefca7a827a140eb9909c026e9f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.669             latitude:31.3097             PM2_5:39.40363128             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a92467dc22b2521e68f2baa598c155f5.setContent(html_02c19aefca7a827a140eb9909c026e9f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_53d98b7936efb03941f85d879a2a2ec2.bindPopup(popup_a92467dc22b2521e68f2baa598c155f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0253774a134eab27c543de31513c98fb = L.circleMarker(\\n\",\n       \"                [31.7506, 118.5106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a96d14e429efabc180df8df135b79f06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65d6a96b36d7a7a536de1af30a31705e = $(`&lt;div id=&quot;html_65d6a96b36d7a7a536de1af30a31705e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5106             latitude:31.7506             PM2_5:49.01256983             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a96d14e429efabc180df8df135b79f06.setContent(html_65d6a96b36d7a7a536de1af30a31705e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0253774a134eab27c543de31513c98fb.bindPopup(popup_a96d14e429efabc180df8df135b79f06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c9d1fb884047b40e95bd3c9bf549a25 = L.circleMarker(\\n\",\n       \"                [26.1092, 119.299],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75fc65c03ee79715a8eb353eeddbf971 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4254f19f22d5f277c6f5ffb81b7cfbcd = $(`&lt;div id=&quot;html_4254f19f22d5f277c6f5ffb81b7cfbcd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.299             latitude:26.1092             PM2_5:26.66615854             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75fc65c03ee79715a8eb353eeddbf971.setContent(html_4254f19f22d5f277c6f5ffb81b7cfbcd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c9d1fb884047b40e95bd3c9bf549a25.bindPopup(popup_75fc65c03ee79715a8eb353eeddbf971)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_443db925dd9f542a22f584635b1864c7 = L.circleMarker(\\n\",\n       \"                [34.2749, 108.882],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9eb649e56075b7100df68dbf103b9c16 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df12798784b78433ff8118c77c8a93c4 = $(`&lt;div id=&quot;html_df12798784b78433ff8118c77c8a93c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.882             latitude:34.2749             PM2_5:66.98873239             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9eb649e56075b7100df68dbf103b9c16.setContent(html_df12798784b78433ff8118c77c8a93c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_443db925dd9f542a22f584635b1864c7.bindPopup(popup_9eb649e56075b7100df68dbf103b9c16)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1409746325210caba4a7f6b327db883e = L.circleMarker(\\n\",\n       \"                [41.9339, 123.6836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_355738f59f247c1656d1bb96a8359702 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f871d7c0f2f96703d511b81534c66e6 = $(`&lt;div id=&quot;html_6f871d7c0f2f96703d511b81534c66e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.6836             latitude:41.9339             PM2_5:26.52638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_355738f59f247c1656d1bb96a8359702.setContent(html_6f871d7c0f2f96703d511b81534c66e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1409746325210caba4a7f6b327db883e.bindPopup(popup_355738f59f247c1656d1bb96a8359702)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f5051eecf22be1a894705a6c920ae9d = L.circleMarker(\\n\",\n       \"                [30.3515, 112.2068],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0473d1c115f71c7123ec945a05e7805e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8c20447885e0e2c918a815b5e4948d6 = $(`&lt;div id=&quot;html_e8c20447885e0e2c918a815b5e4948d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2068             latitude:30.3515             PM2_5:51.6056338             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0473d1c115f71c7123ec945a05e7805e.setContent(html_e8c20447885e0e2c918a815b5e4948d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f5051eecf22be1a894705a6c920ae9d.bindPopup(popup_0473d1c115f71c7123ec945a05e7805e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d28b9f5a6904a6816e4fe3a7bf08364 = L.circleMarker(\\n\",\n       \"                [42.0503, 121.6972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b23ee01e007015367419e2de7fd2fad5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8148a5446812f67862edff0cfb4554df = $(`&lt;div id=&quot;html_8148a5446812f67862edff0cfb4554df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6972             latitude:42.0503             PM2_5:24.87606838             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b23ee01e007015367419e2de7fd2fad5.setContent(html_8148a5446812f67862edff0cfb4554df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d28b9f5a6904a6816e4fe3a7bf08364.bindPopup(popup_b23ee01e007015367419e2de7fd2fad5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6dfe1cb4996034b0372c6538a411416 = L.circleMarker(\\n\",\n       \"                [34.2153, 117.256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0837a31af5aa12ad7cee1a1bd64e8ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9918ff69cd97d6948b286fde4728ad03 = $(`&lt;div id=&quot;html_9918ff69cd97d6948b286fde4728ad03&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.256             latitude:34.2153             PM2_5:58.55555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0837a31af5aa12ad7cee1a1bd64e8ae.setContent(html_9918ff69cd97d6948b286fde4728ad03);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6dfe1cb4996034b0372c6538a411416.bindPopup(popup_a0837a31af5aa12ad7cee1a1bd64e8ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac8209521f587ccf8d788c5efb3dcf84 = L.circleMarker(\\n\",\n       \"                [43.8947, 126.5786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b03e65fd568c4e279da786cb0eab04b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36984e93a657548648e3d2a01cfbf111 = $(`&lt;div id=&quot;html_36984e93a657548648e3d2a01cfbf111&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5786             latitude:43.8947             PM2_5:28.36768802             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b03e65fd568c4e279da786cb0eab04b8.setContent(html_36984e93a657548648e3d2a01cfbf111);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac8209521f587ccf8d788c5efb3dcf84.bindPopup(popup_b03e65fd568c4e279da786cb0eab04b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8c625e2f9caa38372c1a9a8e952a5f1 = L.circleMarker(\\n\",\n       \"                [31.9051, 117.16],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9feed08b2bbb05a2acb5c66c65dda78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a58674127b0beaf819e953c25c30790b = $(`&lt;div id=&quot;html_a58674127b0beaf819e953c25c30790b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.16             latitude:31.9051             PM2_5:47.26264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9feed08b2bbb05a2acb5c66c65dda78.setContent(html_a58674127b0beaf819e953c25c30790b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8c625e2f9caa38372c1a9a8e952a5f1.bindPopup(popup_a9feed08b2bbb05a2acb5c66c65dda78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_985016dd89367e0886c2add925c8dcba = L.circleMarker(\\n\",\n       \"                [38.0513, 114.4548],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_769223164307e923e806fb1c3008ea7c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5fcfecf20458006be580a494d49a64dd = $(`&lt;div id=&quot;html_5fcfecf20458006be580a494d49a64dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4548             latitude:38.0513             PM2_5:68.18472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_769223164307e923e806fb1c3008ea7c.setContent(html_5fcfecf20458006be580a494d49a64dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_985016dd89367e0886c2add925c8dcba.bindPopup(popup_769223164307e923e806fb1c3008ea7c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2b654748f372cef613427057ea4f00e = L.circleMarker(\\n\",\n       \"                [37.9648, 106.1532],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea2c0e3859f8c264dcd666fd7168555f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8040ab502e1b030211a792ea6859917f = $(`&lt;div id=&quot;html_8040ab502e1b030211a792ea6859917f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1532             latitude:37.9648             PM2_5:36.54507042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea2c0e3859f8c264dcd666fd7168555f.setContent(html_8040ab502e1b030211a792ea6859917f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2b654748f372cef613427057ea4f00e.bindPopup(popup_ea2c0e3859f8c264dcd666fd7168555f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ee5386933df2738a15f68742cbaf67b = L.circleMarker(\\n\",\n       \"                [45.2978, 130.9298],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_960aac0f7f7160882961d1d85d9de34b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b191ca864455388c1372c7a4f0a42ffa = $(`&lt;div id=&quot;html_b191ca864455388c1372c7a4f0a42ffa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9298             latitude:45.2978             PM2_5:22.03703704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_960aac0f7f7160882961d1d85d9de34b.setContent(html_b191ca864455388c1372c7a4f0a42ffa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ee5386933df2738a15f68742cbaf67b.bindPopup(popup_960aac0f7f7160882961d1d85d9de34b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b3e4076ed19fce3e1f1c9b25192fcc3 = L.circleMarker(\\n\",\n       \"                [31.2284, 121.533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c56b8fff30526d4a9a322573b6e98550 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7ca9bccb633fbd429b81b159a93d367 = $(`&lt;div id=&quot;html_d7ca9bccb633fbd429b81b159a93d367&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.533             latitude:31.2284             PM2_5:39.66384181             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c56b8fff30526d4a9a322573b6e98550.setContent(html_d7ca9bccb633fbd429b81b159a93d367);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b3e4076ed19fce3e1f1c9b25192fcc3.bindPopup(popup_c56b8fff30526d4a9a322573b6e98550)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70295603c599e0edc562f0aa9fe09989 = L.circleMarker(\\n\",\n       \"                [39.6407, 118.1853],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5e37c4ab06bb9b438bc401d1ab2b8e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d02640fb22450498a8b90d428c2b765 = $(`&lt;div id=&quot;html_4d02640fb22450498a8b90d428c2b765&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1853             latitude:39.6407             PM2_5:50.95949721             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5e37c4ab06bb9b438bc401d1ab2b8e7.setContent(html_4d02640fb22450498a8b90d428c2b765);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70295603c599e0edc562f0aa9fe09989.bindPopup(popup_a5e37c4ab06bb9b438bc401d1ab2b8e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72f22779caa1caf8b51b3b10c2d2473e = L.circleMarker(\\n\",\n       \"                [30.3055, 112.2887],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de5ea14dc221d33b8be0f74ca6719381 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c18466991dfce1fbda88294faca0576 = $(`&lt;div id=&quot;html_1c18466991dfce1fbda88294faca0576&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2887             latitude:30.3055             PM2_5:55.24782609             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de5ea14dc221d33b8be0f74ca6719381.setContent(html_1c18466991dfce1fbda88294faca0576);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72f22779caa1caf8b51b3b10c2d2473e.bindPopup(popup_de5ea14dc221d33b8be0f74ca6719381)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_095809c3eefbe05ee4a681a60ef80692 = L.circleMarker(\\n\",\n       \"                [35.7672, 115.0628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ab0be67279fa937367c056bf657a84f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43c11fd2266bc656069c2de6d35c1779 = $(`&lt;div id=&quot;html_43c11fd2266bc656069c2de6d35c1779&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0628             latitude:35.7672             PM2_5:57.94301994             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ab0be67279fa937367c056bf657a84f.setContent(html_43c11fd2266bc656069c2de6d35c1779);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_095809c3eefbe05ee4a681a60ef80692.bindPopup(popup_5ab0be67279fa937367c056bf657a84f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0885df0d73164055fa8126be68e6f512 = L.circleMarker(\\n\",\n       \"                [30.9222, 117.8078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad846d6627bbd905ab14363532e9c48b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0adb9695ad515dcc55b16392196b832 = $(`&lt;div id=&quot;html_d0adb9695ad515dcc55b16392196b832&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8078             latitude:30.9222             PM2_5:57.00139276             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad846d6627bbd905ab14363532e9c48b.setContent(html_d0adb9695ad515dcc55b16392196b832);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0885df0d73164055fa8126be68e6f512.bindPopup(popup_ad846d6627bbd905ab14363532e9c48b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82a6e02a132ae8c6ee300cb95e44b3d0 = L.circleMarker(\\n\",\n       \"                [31.4656, 104.6717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15d7c61da1e586642b291fa9867d690e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab0050af045be017c1f7b29d4bd8238d = $(`&lt;div id=&quot;html_ab0050af045be017c1f7b29d4bd8238d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6717             latitude:31.4656             PM2_5:48.23743017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15d7c61da1e586642b291fa9867d690e.setContent(html_ab0050af045be017c1f7b29d4bd8238d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82a6e02a132ae8c6ee300cb95e44b3d0.bindPopup(popup_15d7c61da1e586642b291fa9867d690e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7a06b82e72e89593e595fbaa5d36659 = L.circleMarker(\\n\",\n       \"                [47.3489, 130.3172],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2973a25a14fc42984acc23a037313649 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5877d4409218f1682487f5054238860d = $(`&lt;div id=&quot;html_5877d4409218f1682487f5054238860d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3172             latitude:47.3489             PM2_5:18.87857143             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2973a25a14fc42984acc23a037313649.setContent(html_5877d4409218f1682487f5054238860d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7a06b82e72e89593e595fbaa5d36659.bindPopup(popup_2973a25a14fc42984acc23a037313649)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a25d5c321259b1d0e37d3a0c606ee63f = L.circleMarker(\\n\",\n       \"                [32.3153, 118.3094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a25a52be61c00b61c992070ae9572d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f8507f0509b5061602b4f7caa5fe33d = $(`&lt;div id=&quot;html_1f8507f0509b5061602b4f7caa5fe33d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3094             latitude:32.3153             PM2_5:50.79166667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a25a52be61c00b61c992070ae9572d1.setContent(html_1f8507f0509b5061602b4f7caa5fe33d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a25d5c321259b1d0e37d3a0c606ee63f.bindPopup(popup_7a25a52be61c00b61c992070ae9572d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a992e9428887703e251ff479cef4928 = L.circleMarker(\\n\",\n       \"                [29.7534, 116.0726],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_108c2d7d3b946c6b7d143c4e580932d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e98ed48b9deb260eb8ed5e518b753d9 = $(`&lt;div id=&quot;html_7e98ed48b9deb260eb8ed5e518b753d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0726             latitude:29.7534             PM2_5:44.47493036             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_108c2d7d3b946c6b7d143c4e580932d1.setContent(html_7e98ed48b9deb260eb8ed5e518b753d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a992e9428887703e251ff479cef4928.bindPopup(popup_108c2d7d3b946c6b7d143c4e580932d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3398b7e0895142a457ba931190a7d3a = L.circleMarker(\\n\",\n       \"                [35.0611, 111.0233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe4f2bb80951ced17d70277ef00920cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_711c7b42cc4e66bd5556ae3ba7624cdd = $(`&lt;div id=&quot;html_711c7b42cc4e66bd5556ae3ba7624cdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0233             latitude:35.0611             PM2_5:63.99438202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe4f2bb80951ced17d70277ef00920cf.setContent(html_711c7b42cc4e66bd5556ae3ba7624cdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3398b7e0895142a457ba931190a7d3a.bindPopup(popup_fe4f2bb80951ced17d70277ef00920cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_639f08dab07dfda933dddadfcc33ffd0 = L.circleMarker(\\n\",\n       \"                [30.4753, 114.1525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43ed504e35e6989d1a50b54a11f66732 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66969950090c8a38ff47eed0a2f22b76 = $(`&lt;div id=&quot;html_66969950090c8a38ff47eed0a2f22b76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1525             latitude:30.4753             PM2_5:47.02089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43ed504e35e6989d1a50b54a11f66732.setContent(html_66969950090c8a38ff47eed0a2f22b76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_639f08dab07dfda933dddadfcc33ffd0.bindPopup(popup_43ed504e35e6989d1a50b54a11f66732)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4bbe5eb5a0a6e41cc75e04b6bee7a1c4 = L.circleMarker(\\n\",\n       \"                [29.305, 120.091],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad288780c7b02c33530bfd228523ca01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08b38898412736677139ed991e46c0d8 = $(`&lt;div id=&quot;html_08b38898412736677139ed991e46c0d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.091             latitude:29.305             PM2_5:32.27683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad288780c7b02c33530bfd228523ca01.setContent(html_08b38898412736677139ed991e46c0d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4bbe5eb5a0a6e41cc75e04b6bee7a1c4.bindPopup(popup_ad288780c7b02c33530bfd228523ca01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9b851688ed34a6f58853862092df5bc = L.circleMarker(\\n\",\n       \"                [29.5844, 103.7627],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2739f00479c2a62f467dbad0991c108 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a3ed799883a22d505d59d7b22f46f1f = $(`&lt;div id=&quot;html_3a3ed799883a22d505d59d7b22f46f1f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7627             latitude:29.5844             PM2_5:48.26880223             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2739f00479c2a62f467dbad0991c108.setContent(html_3a3ed799883a22d505d59d7b22f46f1f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9b851688ed34a6f58853862092df5bc.bindPopup(popup_b2739f00479c2a62f467dbad0991c108)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_482cfb5386c215e9ad99d4c22249f5b7 = L.circleMarker(\\n\",\n       \"                [40.9733, 117.8184],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58d2ccd0e6ad12964795dd5bdbed3897 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db22e001421357834b33b685a7b758ce = $(`&lt;div id=&quot;html_db22e001421357834b33b685a7b758ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8184             latitude:40.9733             PM2_5:26.00983146             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58d2ccd0e6ad12964795dd5bdbed3897.setContent(html_db22e001421357834b33b685a7b758ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_482cfb5386c215e9ad99d4c22249f5b7.bindPopup(popup_58d2ccd0e6ad12964795dd5bdbed3897)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb80f637faa0c57880bd868c55881502 = L.circleMarker(\\n\",\n       \"                [31.3508, 118.3528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5b4d810f93ea12f16e4273c5e569a14 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ceb9ff984adf6ffcdf13a6b0b2f433e = $(`&lt;div id=&quot;html_9ceb9ff984adf6ffcdf13a6b0b2f433e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3528             latitude:31.3508             PM2_5:46.87988827             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5b4d810f93ea12f16e4273c5e569a14.setContent(html_9ceb9ff984adf6ffcdf13a6b0b2f433e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb80f637faa0c57880bd868c55881502.bindPopup(popup_a5b4d810f93ea12f16e4273c5e569a14)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5cb7ec168a3e5eae36ae7abbcdd3e2c2 = L.circleMarker(\\n\",\n       \"                [30.6617, 117.4697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fa1a31a8988d420c548cdfdfb7aef8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47ba2ca72ee98abebf4e7a7debc32c63 = $(`&lt;div id=&quot;html_47ba2ca72ee98abebf4e7a7debc32c63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4697             latitude:30.6617             PM2_5:48.46561605             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fa1a31a8988d420c548cdfdfb7aef8e.setContent(html_47ba2ca72ee98abebf4e7a7debc32c63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5cb7ec168a3e5eae36ae7abbcdd3e2c2.bindPopup(popup_6fa1a31a8988d420c548cdfdfb7aef8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b03df88d072605ed75dce4badad487e9 = L.circleMarker(\\n\",\n       \"                [35.5461, 106.6692],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66fc7e6ca215d4c14373e18f2ebf92ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11d0ca56df19496187726bf4865e3cee = $(`&lt;div id=&quot;html_11d0ca56df19496187726bf4865e3cee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6692             latitude:35.5461             PM2_5:25.28169014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66fc7e6ca215d4c14373e18f2ebf92ec.setContent(html_11d0ca56df19496187726bf4865e3cee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b03df88d072605ed75dce4badad487e9.bindPopup(popup_66fc7e6ca215d4c14373e18f2ebf92ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a1b9f717b50f68f262b50e1e5f77068 = L.circleMarker(\\n\",\n       \"                [27.1311, 114.99],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ca0cb8f35e4d631920b203b46a3d005 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ee9e84c190713098376210b8cbe500c = $(`&lt;div id=&quot;html_8ee9e84c190713098376210b8cbe500c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.99             latitude:27.1311             PM2_5:51.25626741             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ca0cb8f35e4d631920b203b46a3d005.setContent(html_8ee9e84c190713098376210b8cbe500c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a1b9f717b50f68f262b50e1e5f77068.bindPopup(popup_8ca0cb8f35e4d631920b203b46a3d005)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8be75f0d19a75870d9f4c9da04d12386 = L.circleMarker(\\n\",\n       \"                [33.5979, 114.6546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd67f53f8153c45a9317288974987e94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_befbcbbc7063170bf1ed5bf5a28aeebf = $(`&lt;div id=&quot;html_befbcbbc7063170bf1ed5bf5a28aeebf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6546             latitude:33.5979             PM2_5:50.46760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd67f53f8153c45a9317288974987e94.setContent(html_befbcbbc7063170bf1ed5bf5a28aeebf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8be75f0d19a75870d9f4c9da04d12386.bindPopup(popup_dd67f53f8153c45a9317288974987e94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4edf790a1e1628821cfc478cb0285c5e = L.circleMarker(\\n\",\n       \"                [27.725, 111.9975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0101db382ff860804d455416a8162de1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f831bfef715f93e0d9f3f32d1c165acb = $(`&lt;div id=&quot;html_f831bfef715f93e0d9f3f32d1c165acb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9975             latitude:27.725             PM2_5:26.00668896             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0101db382ff860804d455416a8162de1.setContent(html_f831bfef715f93e0d9f3f32d1c165acb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4edf790a1e1628821cfc478cb0285c5e.bindPopup(popup_0101db382ff860804d455416a8162de1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab80eae5e404503846baed58fd8cae34 = L.circleMarker(\\n\",\n       \"                [27.8728, 112.8937],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_607246a6515610acaddc0e97ff5067c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e73807e155d79dac711755c04cee3c1 = $(`&lt;div id=&quot;html_9e73807e155d79dac711755c04cee3c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8937             latitude:27.8728             PM2_5:45.97638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_607246a6515610acaddc0e97ff5067c4.setContent(html_9e73807e155d79dac711755c04cee3c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab80eae5e404503846baed58fd8cae34.bindPopup(popup_607246a6515610acaddc0e97ff5067c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba9bc226eea313b8ba3ba8d56190b2f6 = L.circleMarker(\\n\",\n       \"                [30.0125, 103.009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ff31840d84f9754c3caace22ba229c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5019a970b2d40c1fa97ba0ad416d3fa8 = $(`&lt;div id=&quot;html_5019a970b2d40c1fa97ba0ad416d3fa8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.009             latitude:30.0125             PM2_5:50.64428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ff31840d84f9754c3caace22ba229c0.setContent(html_5019a970b2d40c1fa97ba0ad416d3fa8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba9bc226eea313b8ba3ba8d56190b2f6.bindPopup(popup_5ff31840d84f9754c3caace22ba229c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc624a2321ec931cb374c703a99e59dc = L.circleMarker(\\n\",\n       \"                [27.8042, 114.9119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03619479cf6b367e90c42c87e37fc2d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e05af77de673e2f708b2e0beacce440 = $(`&lt;div id=&quot;html_6e05af77de673e2f708b2e0beacce440&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9119             latitude:27.8042             PM2_5:46.45056497             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03619479cf6b367e90c42c87e37fc2d1.setContent(html_6e05af77de673e2f708b2e0beacce440);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc624a2321ec931cb374c703a99e59dc.bindPopup(popup_03619479cf6b367e90c42c87e37fc2d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3633e79bb66e0a42ad4c737c8706269d = L.circleMarker(\\n\",\n       \"                [40.1503, 124.4256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c745d906a6f4e31cef2a85e0d0f65329 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2226183478c932997aade61eda46e5d = $(`&lt;div id=&quot;html_e2226183478c932997aade61eda46e5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.4256             latitude:40.1503             PM2_5:21.48735955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c745d906a6f4e31cef2a85e0d0f65329.setContent(html_e2226183478c932997aade61eda46e5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3633e79bb66e0a42ad4c737c8706269d.bindPopup(popup_c745d906a6f4e31cef2a85e0d0f65329)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58a8cc07011cbe6ad3d299590b94e5da = L.circleMarker(\\n\",\n       \"                [30.4865, 106.6351],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ba94b0c5eb703c846343805aae2564f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4b22f4087e82cec0cebd1c06e28293a = $(`&lt;div id=&quot;html_c4b22f4087e82cec0cebd1c06e28293a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6351             latitude:30.4865             PM2_5:37.19359331             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ba94b0c5eb703c846343805aae2564f.setContent(html_c4b22f4087e82cec0cebd1c06e28293a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58a8cc07011cbe6ad3d299590b94e5da.bindPopup(popup_1ba94b0c5eb703c846343805aae2564f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_031fe18d4e3765ec580c45d92f490aa9 = L.circleMarker(\\n\",\n       \"                [30.698, 111.2992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_93e201b8069a707c9d406deff209b5de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb2a91187863cff1aa21fa012f67610b = $(`&lt;div id=&quot;html_bb2a91187863cff1aa21fa012f67610b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2992             latitude:30.698             PM2_5:59.28888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_93e201b8069a707c9d406deff209b5de.setContent(html_bb2a91187863cff1aa21fa012f67610b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_031fe18d4e3765ec580c45d92f490aa9.bindPopup(popup_93e201b8069a707c9d406deff209b5de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1e6d099366be2d7d66d61201f514f55 = L.circleMarker(\\n\",\n       \"                [35.546, 112.8453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5037f0375c460162f2b4e8748b437895 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_138f653a7d88e5cdd9b4560707113c14 = $(`&lt;div id=&quot;html_138f653a7d88e5cdd9b4560707113c14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8453             latitude:35.546             PM2_5:54.41501416             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5037f0375c460162f2b4e8748b437895.setContent(html_138f653a7d88e5cdd9b4560707113c14);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1e6d099366be2d7d66d61201f514f55.bindPopup(popup_5037f0375c460162f2b4e8748b437895)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65d09b3fee3d0f1ba8e560cbb070e944 = L.circleMarker(\\n\",\n       \"                [34.2713, 108.954],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c53db47d87993d8d31276b0f2dc1cc68 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7cd7fb3e8bbdb5e71a9439ec3e09421 = $(`&lt;div id=&quot;html_e7cd7fb3e8bbdb5e71a9439ec3e09421&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.954             latitude:34.2713             PM2_5:69.81284916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c53db47d87993d8d31276b0f2dc1cc68.setContent(html_e7cd7fb3e8bbdb5e71a9439ec3e09421);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65d09b3fee3d0f1ba8e560cbb070e944.bindPopup(popup_c53db47d87993d8d31276b0f2dc1cc68)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46d758b9ef2fcee88869614bae9aa46f = L.circleMarker(\\n\",\n       \"                [39.6679, 118.2185],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86b77c0bcc4ee58cef8fd734fc04b904 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_236f99b1595110e6ec6b42422e04e655 = $(`&lt;div id=&quot;html_236f99b1595110e6ec6b42422e04e655&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2185             latitude:39.6679             PM2_5:49.28212291             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86b77c0bcc4ee58cef8fd734fc04b904.setContent(html_236f99b1595110e6ec6b42422e04e655);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46d758b9ef2fcee88869614bae9aa46f.bindPopup(popup_86b77c0bcc4ee58cef8fd734fc04b904)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9f89da2e8dc572b35aca8c48b7677c1 = L.circleMarker(\\n\",\n       \"                [32.1078, 114.1044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad2692e26e42dc4516ab7ef6c53b9416 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9a115aad3d3719d862ba297b0a01d95e = $(`&lt;div id=&quot;html_9a115aad3d3719d862ba297b0a01d95e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1044             latitude:32.1078             PM2_5:50.29519774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad2692e26e42dc4516ab7ef6c53b9416.setContent(html_9a115aad3d3719d862ba297b0a01d95e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9f89da2e8dc572b35aca8c48b7677c1.bindPopup(popup_ad2692e26e42dc4516ab7ef6c53b9416)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93f161a9fe77428816ed2c6e1b601acc = L.circleMarker(\\n\",\n       \"                [45.7733, 126.689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21a8f01f98335d35226540ce382be2d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69aa19de7fedbcb9790c300ff0e003b2 = $(`&lt;div id=&quot;html_69aa19de7fedbcb9790c300ff0e003b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.689             latitude:45.7733             PM2_5:34.81805556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21a8f01f98335d35226540ce382be2d5.setContent(html_69aa19de7fedbcb9790c300ff0e003b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93f161a9fe77428816ed2c6e1b601acc.bindPopup(popup_21a8f01f98335d35226540ce382be2d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07d853f6e3f274ba103d2ec65617fd38 = L.circleMarker(\\n\",\n       \"                [23.0528, 114.4183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_484bc3afc0e11a3940cc6887cec6bb58 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38df1b24d8abbf93aecca019a491dd60 = $(`&lt;div id=&quot;html_38df1b24d8abbf93aecca019a491dd60&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4183             latitude:23.0528             PM2_5:27.9902507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_484bc3afc0e11a3940cc6887cec6bb58.setContent(html_38df1b24d8abbf93aecca019a491dd60);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07d853f6e3f274ba103d2ec65617fd38.bindPopup(popup_484bc3afc0e11a3940cc6887cec6bb58)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_712fb48af98f934af3e8092b2f2c18ea = L.circleMarker(\\n\",\n       \"                [37.809, 120.773],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0142bbadbae9235bac6388374dd4a69 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f815b36f7adf241338d5c65dc8ac6357 = $(`&lt;div id=&quot;html_f815b36f7adf241338d5c65dc8ac6357&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.773             latitude:37.809             PM2_5:28.17908309             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0142bbadbae9235bac6388374dd4a69.setContent(html_f815b36f7adf241338d5c65dc8ac6357);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_712fb48af98f934af3e8092b2f2c18ea.bindPopup(popup_a0142bbadbae9235bac6388374dd4a69)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fc582e3a5f6f1999248e40b40a6b2c1 = L.circleMarker(\\n\",\n       \"                [33.6128, 114.6613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41a39922f2b9e7166b6d8d360f4fb141 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ff9fa2ccd3b9c0b05d54337773b5524 = $(`&lt;div id=&quot;html_2ff9fa2ccd3b9c0b05d54337773b5524&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6613             latitude:33.6128             PM2_5:51.95903955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41a39922f2b9e7166b6d8d360f4fb141.setContent(html_2ff9fa2ccd3b9c0b05d54337773b5524);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fc582e3a5f6f1999248e40b40a6b2c1.bindPopup(popup_41a39922f2b9e7166b6d8d360f4fb141)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd3cade0a98bfc2313aff516ea690f4d = L.circleMarker(\\n\",\n       \"                [41.0112, 117.9384],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10fe9d96c1f0ae13788b113fdacf1c1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_16f43bd491d033f911cd5a5d25944eb4 = $(`&lt;div id=&quot;html_16f43bd491d033f911cd5a5d25944eb4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9384             latitude:41.0112             PM2_5:27.04519774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10fe9d96c1f0ae13788b113fdacf1c1d.setContent(html_16f43bd491d033f911cd5a5d25944eb4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd3cade0a98bfc2313aff516ea690f4d.bindPopup(popup_10fe9d96c1f0ae13788b113fdacf1c1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dedf45b4c9d7782fd676edf5443fe117 = L.circleMarker(\\n\",\n       \"                [40.8452, 111.659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bdf02ea5d8035724a60158cfa09f2be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_848e8c31c75209be2ff9e560f83662ae = $(`&lt;div id=&quot;html_848e8c31c75209be2ff9e560f83662ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.659             latitude:40.8452             PM2_5:36.20612813             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bdf02ea5d8035724a60158cfa09f2be.setContent(html_848e8c31c75209be2ff9e560f83662ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dedf45b4c9d7782fd676edf5443fe117.bindPopup(popup_8bdf02ea5d8035724a60158cfa09f2be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_304aff838fe971b4c6bd62040a0af36a = L.circleMarker(\\n\",\n       \"                [34.2572, 109.06],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9888dcee7f5ea5ca5c812c549902786a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96b17d55d3c74496e0ebb62f78994d35 = $(`&lt;div id=&quot;html_96b17d55d3c74496e0ebb62f78994d35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.06             latitude:34.2572             PM2_5:67.61647727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9888dcee7f5ea5ca5c812c549902786a.setContent(html_96b17d55d3c74496e0ebb62f78994d35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_304aff838fe971b4c6bd62040a0af36a.bindPopup(popup_9888dcee7f5ea5ca5c812c549902786a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0342e42ca7254fc203fa3641c9c2a819 = L.circleMarker(\\n\",\n       \"                [38.03777778, 114.5480556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_298d9d2a13ab989a7bb8e3bb003e24e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee98f86a599bcaf9a655ee7a642dcd2d = $(`&lt;div id=&quot;html_ee98f86a599bcaf9a655ee7a642dcd2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5480556             latitude:38.03777778             PM2_5:68.15266106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_298d9d2a13ab989a7bb8e3bb003e24e8.setContent(html_ee98f86a599bcaf9a655ee7a642dcd2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0342e42ca7254fc203fa3641c9c2a819.bindPopup(popup_298d9d2a13ab989a7bb8e3bb003e24e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c634455731987285ec539e34cb2d21cc = L.circleMarker(\\n\",\n       \"                [26.2081, 111.6217],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a944f28a360b3dc0b2634482047dfd27 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6797556bc882f583c835c67e9ca25324 = $(`&lt;div id=&quot;html_6797556bc882f583c835c67e9ca25324&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6217             latitude:26.2081             PM2_5:37.14595376             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a944f28a360b3dc0b2634482047dfd27.setContent(html_6797556bc882f583c835c67e9ca25324);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c634455731987285ec539e34cb2d21cc.bindPopup(popup_a944f28a360b3dc0b2634482047dfd27)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e567856400739f4b5d4ea4a0a6224c5a = L.circleMarker(\\n\",\n       \"                [22.8322, 100.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0950bb22900994423518c0fc216d855c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_293056c9ec0e4f3b62112db273460ed0 = $(`&lt;div id=&quot;html_293056c9ec0e4f3b62112db273460ed0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.9817             latitude:22.8322             PM2_5:19.05694444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0950bb22900994423518c0fc216d855c.setContent(html_293056c9ec0e4f3b62112db273460ed0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e567856400739f4b5d4ea4a0a6224c5a.bindPopup(popup_0950bb22900994423518c0fc216d855c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7aabcfd854c43996edb85d979c996920 = L.circleMarker(\\n\",\n       \"                [27.3033, 111.5239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_659de038d780e6e4417e01bf17a618f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33ce8d00475e875afcadcd416253548e = $(`&lt;div id=&quot;html_33ce8d00475e875afcadcd416253548e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5239             latitude:27.3033             PM2_5:42.53539823             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_659de038d780e6e4417e01bf17a618f8.setContent(html_33ce8d00475e875afcadcd416253548e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7aabcfd854c43996edb85d979c996920.bindPopup(popup_659de038d780e6e4417e01bf17a618f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1cd36d051d85e2352124e56157762d4 = L.circleMarker(\\n\",\n       \"                [30.5947, 114.3008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab7b9c77c04c0921ae308518002382bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f72a51739218bdaf2d94c49a854ad1c0 = $(`&lt;div id=&quot;html_f72a51739218bdaf2d94c49a854ad1c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3008             latitude:30.5947             PM2_5:45.17222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab7b9c77c04c0921ae308518002382bb.setContent(html_f72a51739218bdaf2d94c49a854ad1c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1cd36d051d85e2352124e56157762d4.bindPopup(popup_ab7b9c77c04c0921ae308518002382bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e859fabd1859ae50493a231059dbc13f = L.circleMarker(\\n\",\n       \"                [30.2997, 113.8531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d7cfcd8f22fc75eed89dca7c3143a29 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37fb1093502fe84518bf09561cbcf0fd = $(`&lt;div id=&quot;html_37fb1093502fe84518bf09561cbcf0fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8531             latitude:30.2997             PM2_5:43.25073314             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d7cfcd8f22fc75eed89dca7c3143a29.setContent(html_37fb1093502fe84518bf09561cbcf0fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e859fabd1859ae50493a231059dbc13f.bindPopup(popup_4d7cfcd8f22fc75eed89dca7c3143a29)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed265441c373af0fb6c16c512180ff3c = L.circleMarker(\\n\",\n       \"                [27.7297, 109.1916],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb99e82721c424e25e362621803fd61a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ce6e73c4efd8731516a834c2a362201 = $(`&lt;div id=&quot;html_3ce6e73c4efd8731516a834c2a362201&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.1916             latitude:27.7297             PM2_5:23.85416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb99e82721c424e25e362621803fd61a.setContent(html_3ce6e73c4efd8731516a834c2a362201);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed265441c373af0fb6c16c512180ff3c.bindPopup(popup_bb99e82721c424e25e362621803fd61a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5581a635e8cf3907013f4d8191384ea8 = L.circleMarker(\\n\",\n       \"                [30.2366, 119.7183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e411032e8aa0598ef812f1d68dd8126 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebe5bc0c344155a4d428400716569326 = $(`&lt;div id=&quot;html_ebe5bc0c344155a4d428400716569326&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7183             latitude:30.2366             PM2_5:32.08100559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e411032e8aa0598ef812f1d68dd8126.setContent(html_ebe5bc0c344155a4d428400716569326);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5581a635e8cf3907013f4d8191384ea8.bindPopup(popup_5e411032e8aa0598ef812f1d68dd8126)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e24e847514a5ce5b2bcb6901eae8200 = L.circleMarker(\\n\",\n       \"                [36.2289, 117.6789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65a4dd55643c1f1c88f75fa814490aae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35d1608c94c8a92653d794455915ba89 = $(`&lt;div id=&quot;html_35d1608c94c8a92653d794455915ba89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6789             latitude:36.2289             PM2_5:49.29411765             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65a4dd55643c1f1c88f75fa814490aae.setContent(html_35d1608c94c8a92653d794455915ba89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e24e847514a5ce5b2bcb6901eae8200.bindPopup(popup_65a4dd55643c1f1c88f75fa814490aae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b19e6ec65ace7b2fb6430478b5943745 = L.circleMarker(\\n\",\n       \"                [38.80805556, 121.2588889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7c893b94b57007819e4a18c396619f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b3c0248b40ef3e17026b88409b338a5 = $(`&lt;div id=&quot;html_3b3c0248b40ef3e17026b88409b338a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2588889             latitude:38.80805556             PM2_5:26.59773371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7c893b94b57007819e4a18c396619f1.setContent(html_3b3c0248b40ef3e17026b88409b338a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b19e6ec65ace7b2fb6430478b5943745.bindPopup(popup_c7c893b94b57007819e4a18c396619f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a72ebf4c8f55364576c75ca841b48899 = L.circleMarker(\\n\",\n       \"                [39.0927, 117.202],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33132fcc079be2143e7ddfe91538b1f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b8d0e81def703bbdaa73a54528fd2ea = $(`&lt;div id=&quot;html_8b8d0e81def703bbdaa73a54528fd2ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.202             latitude:39.0927             PM2_5:50.48033708             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33132fcc079be2143e7ddfe91538b1f3.setContent(html_8b8d0e81def703bbdaa73a54528fd2ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a72ebf4c8f55364576c75ca841b48899.bindPopup(popup_33132fcc079be2143e7ddfe91538b1f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f1480b09c8c7de13de9fc7bee0df670 = L.circleMarker(\\n\",\n       \"                [30.21, 120.211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97014c84e6c47f5087b6ce0ec6b26af9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c4a491014f79f9ada121dcf6e158267 = $(`&lt;div id=&quot;html_6c4a491014f79f9ada121dcf6e158267&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.211             latitude:30.21             PM2_5:38.86072423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97014c84e6c47f5087b6ce0ec6b26af9.setContent(html_6c4a491014f79f9ada121dcf6e158267);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f1480b09c8c7de13de9fc7bee0df670.bindPopup(popup_97014c84e6c47f5087b6ce0ec6b26af9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca8a0c30e5f62d673c122a51dcbf5741 = L.circleMarker(\\n\",\n       \"                [33.4022, 120.118],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_700d30b58ec4357f7ce3df46531e0e47 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96519127a06dc63a2c232ff71023bb40 = $(`&lt;div id=&quot;html_96519127a06dc63a2c232ff71023bb40&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.118             latitude:33.4022             PM2_5:41.83611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_700d30b58ec4357f7ce3df46531e0e47.setContent(html_96519127a06dc63a2c232ff71023bb40);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca8a0c30e5f62d673c122a51dcbf5741.bindPopup(popup_700d30b58ec4357f7ce3df46531e0e47)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eff565c1059fc5cf572fc845d4133e67 = L.circleMarker(\\n\",\n       \"                [31.737, 119.579],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_632cbd59afee84d204892ac2bbd122b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13e21fff7f7584f275238882b02ca7d6 = $(`&lt;div id=&quot;html_13e21fff7f7584f275238882b02ca7d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.579             latitude:31.737             PM2_5:43.87361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_632cbd59afee84d204892ac2bbd122b7.setContent(html_13e21fff7f7584f275238882b02ca7d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eff565c1059fc5cf572fc845d4133e67.bindPopup(popup_632cbd59afee84d204892ac2bbd122b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_048ed54ba3d4d803bd9c7e589b0484eb = L.circleMarker(\\n\",\n       \"                [38.0524, 114.5214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_def4f9784a81f61c4d5f345ddb8173a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d24c14fe56669aad4bb4e395f9bc39a = $(`&lt;div id=&quot;html_6d24c14fe56669aad4bb4e395f9bc39a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5214             latitude:38.0524             PM2_5:75.23955432             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_def4f9784a81f61c4d5f345ddb8173a6.setContent(html_6d24c14fe56669aad4bb4e395f9bc39a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_048ed54ba3d4d803bd9c7e589b0484eb.bindPopup(popup_def4f9784a81f61c4d5f345ddb8173a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86891d48723ddd17c7c0ac52d831e6fd = L.circleMarker(\\n\",\n       \"                [39.6969, 106.8089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b14450e30f8f7fd95b82b19aaeb28dd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e97950ec82699389213d982d326dcbf = $(`&lt;div id=&quot;html_1e97950ec82699389213d982d326dcbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8089             latitude:39.6969             PM2_5:36.94972067             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b14450e30f8f7fd95b82b19aaeb28dd5.setContent(html_1e97950ec82699389213d982d326dcbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86891d48723ddd17c7c0ac52d831e6fd.bindPopup(popup_b14450e30f8f7fd95b82b19aaeb28dd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df4da1509a352382dd04c29511179236 = L.circleMarker(\\n\",\n       \"                [29.2365, 88.8931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7ebe3d12900a0628efcca5d85ba1b63 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2bc520c7867e4363e4b2e5a17aba920a = $(`&lt;div id=&quot;html_2bc520c7867e4363e4b2e5a17aba920a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.8931             latitude:29.2365             PM2_5:7.04398827             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7ebe3d12900a0628efcca5d85ba1b63.setContent(html_2bc520c7867e4363e4b2e5a17aba920a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df4da1509a352382dd04c29511179236.bindPopup(popup_f7ebe3d12900a0628efcca5d85ba1b63)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8da602e1783477c8b6a76b02edb99bde = L.circleMarker(\\n\",\n       \"                [30.696, 111.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a90caf75c52b281bcb76a0e9b7c2a23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_873795ddcb8bbb185a0f9c67a6fdc651 = $(`&lt;div id=&quot;html_873795ddcb8bbb185a0f9c67a6fdc651&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.268             latitude:30.696             PM2_5:53.72980501             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a90caf75c52b281bcb76a0e9b7c2a23.setContent(html_873795ddcb8bbb185a0f9c67a6fdc651);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8da602e1783477c8b6a76b02edb99bde.bindPopup(popup_1a90caf75c52b281bcb76a0e9b7c2a23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7714da4fa8969971b18ad05b4496327 = L.circleMarker(\\n\",\n       \"                [27.5342, 109.9792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7075b64e822118da7bde99421b1ba63e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca0c9ea9d1e05b37a3a8a608b64ed159 = $(`&lt;div id=&quot;html_ca0c9ea9d1e05b37a3a8a608b64ed159&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9792             latitude:27.5342             PM2_5:39.37083333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7075b64e822118da7bde99421b1ba63e.setContent(html_ca0c9ea9d1e05b37a3a8a608b64ed159);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7714da4fa8969971b18ad05b4496327.bindPopup(popup_7075b64e822118da7bde99421b1ba63e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_316c22b9929e3628a5e703acf0b110f0 = L.circleMarker(\\n\",\n       \"                [34.7538, 113.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b37e84649e7b6b959b2044c9bfc454e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e945e84ef7242b5732f3c5736901bdee = $(`&lt;div id=&quot;html_e945e84ef7242b5732f3c5736901bdee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6356             latitude:34.7538             PM2_5:63.08240223             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b37e84649e7b6b959b2044c9bfc454e0.setContent(html_e945e84ef7242b5732f3c5736901bdee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_316c22b9929e3628a5e703acf0b110f0.bindPopup(popup_b37e84649e7b6b959b2044c9bfc454e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ffc793944f5bea57151001198208210 = L.circleMarker(\\n\",\n       \"                [27.8847, 102.2689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ccda4febfe52b425dae50d8f504a2927 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc0d81c7763eec433ddc921e1a9b1933 = $(`&lt;div id=&quot;html_dc0d81c7763eec433ddc921e1a9b1933&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2689             latitude:27.8847             PM2_5:22.76470588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ccda4febfe52b425dae50d8f504a2927.setContent(html_dc0d81c7763eec433ddc921e1a9b1933);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ffc793944f5bea57151001198208210.bindPopup(popup_ccda4febfe52b425dae50d8f504a2927)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44d77b84c2105ee0d4fd2076fca9f9d1 = L.circleMarker(\\n\",\n       \"                [28.2264, 117.0222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e6159733c9718eb71539a0f1f1755b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0143e0bd5d1e1f6450a1285df3a0db0b = $(`&lt;div id=&quot;html_0143e0bd5d1e1f6450a1285df3a0db0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0222             latitude:28.2264             PM2_5:34.38687151             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e6159733c9718eb71539a0f1f1755b1.setContent(html_0143e0bd5d1e1f6450a1285df3a0db0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44d77b84c2105ee0d4fd2076fca9f9d1.bindPopup(popup_7e6159733c9718eb71539a0f1f1755b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_807ae4a6e0c53661ba74c701fc6e9ab5 = L.circleMarker(\\n\",\n       \"                [25.8071, 113.0383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bacffa5f71e0e38aa1ea6485cd9e7360 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5fe5ee2046912615a0379606c469ce09 = $(`&lt;div id=&quot;html_5fe5ee2046912615a0379606c469ce09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0383             latitude:25.8071             PM2_5:32.6800554             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bacffa5f71e0e38aa1ea6485cd9e7360.setContent(html_5fe5ee2046912615a0379606c469ce09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_807ae4a6e0c53661ba74c701fc6e9ab5.bindPopup(popup_bacffa5f71e0e38aa1ea6485cd9e7360)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cac70e01c76b7fec44988ada1962c9e8 = L.circleMarker(\\n\",\n       \"                [34.3672, 107.1906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4272dff7429c1dc70818a6a7f3893e81 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_441eb8dd8a47c8a1eb750c45e7ad6b32 = $(`&lt;div id=&quot;html_441eb8dd8a47c8a1eb750c45e7ad6b32&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1906             latitude:34.3672             PM2_5:50.35434174             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4272dff7429c1dc70818a6a7f3893e81.setContent(html_441eb8dd8a47c8a1eb750c45e7ad6b32);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cac70e01c76b7fec44988ada1962c9e8.bindPopup(popup_4272dff7429c1dc70818a6a7f3893e81)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_651f5fc13cf8e76e65606d9cbc0c44f5 = L.circleMarker(\\n\",\n       \"                [37.161, 122.41],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c824258401e56fff85751e9364880a56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b41e7c68b3e348665c4b9e139e402da = $(`&lt;div id=&quot;html_2b41e7c68b3e348665c4b9e139e402da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.41             latitude:37.161             PM2_5:18.70396601             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c824258401e56fff85751e9364880a56.setContent(html_2b41e7c68b3e348665c4b9e139e402da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_651f5fc13cf8e76e65606d9cbc0c44f5.bindPopup(popup_c824258401e56fff85751e9364880a56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7077c6d2304ce8ceb09127626be05803 = L.circleMarker(\\n\",\n       \"                [38.97388889, 121.6119444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00f3d80c37e90486d928a27c2bd89777 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71eef0c55659df718f496e450350ac88 = $(`&lt;div id=&quot;html_71eef0c55659df718f496e450350ac88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6119444             latitude:38.97388889             PM2_5:30.28830084             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00f3d80c37e90486d928a27c2bd89777.setContent(html_71eef0c55659df718f496e450350ac88);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7077c6d2304ce8ceb09127626be05803.bindPopup(popup_00f3d80c37e90486d928a27c2bd89777)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e24916b75aaf51f91c9f32e0e71e7af = L.circleMarker(\\n\",\n       \"                [26.0542, 119.389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f64ce2c97e0572f2e16e46717b3fbff0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be32bc76e91960afa39bf59a3cfd16a8 = $(`&lt;div id=&quot;html_be32bc76e91960afa39bf59a3cfd16a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.389             latitude:26.0542             PM2_5:24.21186441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f64ce2c97e0572f2e16e46717b3fbff0.setContent(html_be32bc76e91960afa39bf59a3cfd16a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e24916b75aaf51f91c9f32e0e71e7af.bindPopup(popup_f64ce2c97e0572f2e16e46717b3fbff0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3aaa57624ac6a642f295f63f73f4ae0 = L.circleMarker(\\n\",\n       \"                [36.5458, 104.1731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_689245528b0ca724acfbeb96092dbf1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dcd38daf5670a6b88696fd6ad639e42b = $(`&lt;div id=&quot;html_dcd38daf5670a6b88696fd6ad639e42b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1731             latitude:36.5458             PM2_5:42.94827586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_689245528b0ca724acfbeb96092dbf1a.setContent(html_dcd38daf5670a6b88696fd6ad639e42b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3aaa57624ac6a642f295f63f73f4ae0.bindPopup(popup_689245528b0ca724acfbeb96092dbf1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0cd43b476c502937f55358e7bdf3a1fe = L.circleMarker(\\n\",\n       \"                [21.6828, 110.8592],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0696f98e5b275a49ceccb07650b18c6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e131066695a7c3d3cfbb6fec0fba39b9 = $(`&lt;div id=&quot;html_e131066695a7c3d3cfbb6fec0fba39b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.8592             latitude:21.6828             PM2_5:29.20142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0696f98e5b275a49ceccb07650b18c6e.setContent(html_e131066695a7c3d3cfbb6fec0fba39b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0cd43b476c502937f55358e7bdf3a1fe.bindPopup(popup_0696f98e5b275a49ceccb07650b18c6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6bdeb74e9ed136c3f04319f135070cce = L.circleMarker(\\n\",\n       \"                [27.5444, 109.9453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb991481398ef6f076c8bf3a867a3f52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66b71e665200d38334514f1ca4998d15 = $(`&lt;div id=&quot;html_66b71e665200d38334514f1ca4998d15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9453             latitude:27.5444             PM2_5:36.36023055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb991481398ef6f076c8bf3a867a3f52.setContent(html_66b71e665200d38334514f1ca4998d15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6bdeb74e9ed136c3f04319f135070cce.bindPopup(popup_fb991481398ef6f076c8bf3a867a3f52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d6a722ec6832b063fd545f89df0a6877 = L.circleMarker(\\n\",\n       \"                [30.2989, 109.5039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ca1ecb1af8063def481834090f0d6ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9dfdea326325b6d8e23eab51fac7b778 = $(`&lt;div id=&quot;html_9dfdea326325b6d8e23eab51fac7b778&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5039             latitude:30.2989             PM2_5:41.26966292             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ca1ecb1af8063def481834090f0d6ec.setContent(html_9dfdea326325b6d8e23eab51fac7b778);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d6a722ec6832b063fd545f89df0a6877.bindPopup(popup_9ca1ecb1af8063def481834090f0d6ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6318a091737b4eb2f543f4590083d80d = L.circleMarker(\\n\",\n       \"                [25.8567, 98.8601],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f011037e419863f338a680d18770272e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ae35dce225962f978c3b73bac4f4dc3 = $(`&lt;div id=&quot;html_6ae35dce225962f978c3b73bac4f4dc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.8601             latitude:25.8567             PM2_5:19.85755814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f011037e419863f338a680d18770272e.setContent(html_6ae35dce225962f978c3b73bac4f4dc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6318a091737b4eb2f543f4590083d80d.bindPopup(popup_f011037e419863f338a680d18770272e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd53c4319dd8acc3f6e5f41571ccb997 = L.circleMarker(\\n\",\n       \"                [21.9667, 108.6236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e05459ff1e5ec02b2ca47ccbc58acf1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_939358e3c24f7ebba7349a985fb7089c = $(`&lt;div id=&quot;html_939358e3c24f7ebba7349a985fb7089c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6236             latitude:21.9667             PM2_5:28.71488764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e05459ff1e5ec02b2ca47ccbc58acf1.setContent(html_939358e3c24f7ebba7349a985fb7089c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd53c4319dd8acc3f6e5f41571ccb997.bindPopup(popup_1e05459ff1e5ec02b2ca47ccbc58acf1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9cbf412bba1f12c1c10b5bf4c33421c2 = L.circleMarker(\\n\",\n       \"                [31.6908, 113.3833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ba0cd66a34c87ed1a486d495d8ec47e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e09d38ca3894a7f9e072758c3623fe18 = $(`&lt;div id=&quot;html_e09d38ca3894a7f9e072758c3623fe18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3833             latitude:31.6908             PM2_5:49.01955307             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ba0cd66a34c87ed1a486d495d8ec47e.setContent(html_e09d38ca3894a7f9e072758c3623fe18);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9cbf412bba1f12c1c10b5bf4c33421c2.bindPopup(popup_7ba0cd66a34c87ed1a486d495d8ec47e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f5ecc6d94d0437eb6782c3d4883a8a6 = L.circleMarker(\\n\",\n       \"                [38.6016, 105.9512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f6410ed2e5e1c520950f6255cffb98d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4717a962b87af7bcf8cef0de6a26dc15 = $(`&lt;div id=&quot;html_4717a962b87af7bcf8cef0de6a26dc15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.9512             latitude:38.6016             PM2_5:32.96111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f6410ed2e5e1c520950f6255cffb98d.setContent(html_4717a962b87af7bcf8cef0de6a26dc15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f5ecc6d94d0437eb6782c3d4883a8a6.bindPopup(popup_8f6410ed2e5e1c520950f6255cffb98d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0938388a681569f9975ea28d6538096c = L.circleMarker(\\n\",\n       \"                [25.5364, 103.8],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9c71015013daf2a983905e2bbae4252 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb3123013d784c2e582fd06c12b7fd25 = $(`&lt;div id=&quot;html_bb3123013d784c2e582fd06c12b7fd25&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8             latitude:25.5364             PM2_5:34.69859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9c71015013daf2a983905e2bbae4252.setContent(html_bb3123013d784c2e582fd06c12b7fd25);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0938388a681569f9975ea28d6538096c.bindPopup(popup_d9c71015013daf2a983905e2bbae4252)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ee2bf8cb694386ac58263f9be59d076 = L.circleMarker(\\n\",\n       \"                [42.0486, 121.6592],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fa5b5fb94a3d5a4f99d79d38ebc3d88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30570945be8bd28b51b36d39ee03bc60 = $(`&lt;div id=&quot;html_30570945be8bd28b51b36d39ee03bc60&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6592             latitude:42.0486             PM2_5:23.12188366             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fa5b5fb94a3d5a4f99d79d38ebc3d88.setContent(html_30570945be8bd28b51b36d39ee03bc60);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ee2bf8cb694386ac58263f9be59d076.bindPopup(popup_6fa5b5fb94a3d5a4f99d79d38ebc3d88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bcda5727f2d0189ff94a0a57efe0cca2 = L.circleMarker(\\n\",\n       \"                [23.1036, 109.5683],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc94cd5e85dce43beddae69d8649da66 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d232f7bf6b165fd51184501d0e79964b = $(`&lt;div id=&quot;html_d232f7bf6b165fd51184501d0e79964b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5683             latitude:23.1036             PM2_5:34.63714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc94cd5e85dce43beddae69d8649da66.setContent(html_d232f7bf6b165fd51184501d0e79964b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bcda5727f2d0189ff94a0a57efe0cca2.bindPopup(popup_cc94cd5e85dce43beddae69d8649da66)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_557a0dd78d426e612d1cb42e962753f2 = L.circleMarker(\\n\",\n       \"                [30.5514, 114.2511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc79547369718e95449c73ef89ead59b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7eeea78b782fc51916b55817051a30f5 = $(`&lt;div id=&quot;html_7eeea78b782fc51916b55817051a30f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2511             latitude:30.5514             PM2_5:43.4494382             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc79547369718e95449c73ef89ead59b.setContent(html_7eeea78b782fc51916b55817051a30f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_557a0dd78d426e612d1cb42e962753f2.bindPopup(popup_cc79547369718e95449c73ef89ead59b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00570c7d905f06eafece811f25257a9b = L.circleMarker(\\n\",\n       \"                [31.8108, 119.9736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d5c5cb0dd3f9378bfed6566defaaca9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca7dfebecb79792068fbcac155bf8c00 = $(`&lt;div id=&quot;html_ca7dfebecb79792068fbcac155bf8c00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9736             latitude:31.8108             PM2_5:42.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d5c5cb0dd3f9378bfed6566defaaca9.setContent(html_ca7dfebecb79792068fbcac155bf8c00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00570c7d905f06eafece811f25257a9b.bindPopup(popup_1d5c5cb0dd3f9378bfed6566defaaca9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc1bbfe60de9cc7916e1c40b024d0c04 = L.circleMarker(\\n\",\n       \"                [43.9311, 116.0781],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5fae40f380daf205d831a02e55f94454 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0966dd782ac0791889439360f581cca = $(`&lt;div id=&quot;html_d0966dd782ac0791889439360f581cca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0781             latitude:43.9311             PM2_5:17.65738162             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5fae40f380daf205d831a02e55f94454.setContent(html_d0966dd782ac0791889439360f581cca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc1bbfe60de9cc7916e1c40b024d0c04.bindPopup(popup_5fae40f380daf205d831a02e55f94454)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_419299a268e90fcd602f4312d0cb0a78 = L.circleMarker(\\n\",\n       \"                [23.0786, 112.4722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39c63707d714ebb1ba5f876714ff68b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_074260090a292b058eb5cc3efb19779e = $(`&lt;div id=&quot;html_074260090a292b058eb5cc3efb19779e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4722             latitude:23.0786             PM2_5:38.267507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39c63707d714ebb1ba5f876714ff68b4.setContent(html_074260090a292b058eb5cc3efb19779e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_419299a268e90fcd602f4312d0cb0a78.bindPopup(popup_39c63707d714ebb1ba5f876714ff68b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb288d0e0102beaed7e4f887c2e8d5da = L.circleMarker(\\n\",\n       \"                [36.4372, 115.9848],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53f27c72d961b8af97d4e10c94308d48 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0691e0c72b48203fae43a11090c7325 = $(`&lt;div id=&quot;html_e0691e0c72b48203fae43a11090c7325&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9848             latitude:36.4372             PM2_5:59.31179775             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53f27c72d961b8af97d4e10c94308d48.setContent(html_e0691e0c72b48203fae43a11090c7325);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb288d0e0102beaed7e4f887c2e8d5da.bindPopup(popup_53f27c72d961b8af97d4e10c94308d48)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d2089dcc63d82da9a0e8fc16256fb4b = L.circleMarker(\\n\",\n       \"                [34.3164, 108.7369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5109190574010de403f879c13c7bb52b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a190904c45475c79e2dfeabed715f46 = $(`&lt;div id=&quot;html_4a190904c45475c79e2dfeabed715f46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7369             latitude:34.3164             PM2_5:66.23809524             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5109190574010de403f879c13c7bb52b.setContent(html_4a190904c45475c79e2dfeabed715f46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d2089dcc63d82da9a0e8fc16256fb4b.bindPopup(popup_5109190574010de403f879c13c7bb52b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4aac387b1182e7cd5acbc73ac145551d = L.circleMarker(\\n\",\n       \"                [26.8802, 100.2497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82786e21e284c9849c22acc0820571ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23c9ec9c71bcdc8e2de11f07e57e0e6d = $(`&lt;div id=&quot;html_23c9ec9c71bcdc8e2de11f07e57e0e6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2497             latitude:26.8802             PM2_5:14.76734104             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82786e21e284c9849c22acc0820571ad.setContent(html_23c9ec9c71bcdc8e2de11f07e57e0e6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4aac387b1182e7cd5acbc73ac145551d.bindPopup(popup_82786e21e284c9849c22acc0820571ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_882538b818e00e783d915a5e7dcc523f = L.circleMarker(\\n\",\n       \"                [23.415, 111.2353],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74206ad2dbdbe4056e6132bbd1cec573 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0eed7363a8ad52af06790375d1342564 = $(`&lt;div id=&quot;html_0eed7363a8ad52af06790375d1342564&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2353             latitude:23.415             PM2_5:48.28028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74206ad2dbdbe4056e6132bbd1cec573.setContent(html_0eed7363a8ad52af06790375d1342564);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_882538b818e00e783d915a5e7dcc523f.bindPopup(popup_74206ad2dbdbe4056e6132bbd1cec573)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71745af653d8511484d1b3fe8ccd25cb = L.circleMarker(\\n\",\n       \"                [39.5371, 75.9828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f3bb4706f95dd08a7abb66bd9444f1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54793cdd565ea456f29641ace327742e = $(`&lt;div id=&quot;html_54793cdd565ea456f29641ace327742e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:75.9828             latitude:39.5371             PM2_5:98.80446927             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f3bb4706f95dd08a7abb66bd9444f1a.setContent(html_54793cdd565ea456f29641ace327742e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71745af653d8511484d1b3fe8ccd25cb.bindPopup(popup_2f3bb4706f95dd08a7abb66bd9444f1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f1e0855a9a5603db0ecfbaa67241a99 = L.circleMarker(\\n\",\n       \"                [39.9934, 116.315],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9749ffca6ca0afcad7d0459c261837b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b48c829827129e5f675560c5b0a3eb8 = $(`&lt;div id=&quot;html_8b48c829827129e5f675560c5b0a3eb8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.315             latitude:39.9934             PM2_5:50.41736695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9749ffca6ca0afcad7d0459c261837b4.setContent(html_8b48c829827129e5f675560c5b0a3eb8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f1e0855a9a5603db0ecfbaa67241a99.bindPopup(popup_9749ffca6ca0afcad7d0459c261837b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_692f66bb15d26640a65a59b480ce6f6a = L.circleMarker(\\n\",\n       \"                [32.3761, 119.389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ef74917e2a446d8a0484bb228c29299 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c01a11da4e56e71a9e7b25eb3c618992 = $(`&lt;div id=&quot;html_c01a11da4e56e71a9e7b25eb3c618992&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.389             latitude:32.3761             PM2_5:46.29279279             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ef74917e2a446d8a0484bb228c29299.setContent(html_c01a11da4e56e71a9e7b25eb3c618992);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_692f66bb15d26640a65a59b480ce6f6a.bindPopup(popup_8ef74917e2a446d8a0484bb228c29299)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74498404a7291dc8e77aea6612943ea1 = L.circleMarker(\\n\",\n       \"                [32.64600333, 117.0411667],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11d97846f2ff023eaea2d8787f20fd69 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47f7842232553ae9ca5f5ce4047ca708 = $(`&lt;div id=&quot;html_47f7842232553ae9ca5f5ce4047ca708&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0411667             latitude:32.64600333             PM2_5:56.67590028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11d97846f2ff023eaea2d8787f20fd69.setContent(html_47f7842232553ae9ca5f5ce4047ca708);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74498404a7291dc8e77aea6612943ea1.bindPopup(popup_11d97846f2ff023eaea2d8787f20fd69)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3bc1e1ef32616fd5f85ad143b17a580 = L.circleMarker(\\n\",\n       \"                [44.5462, 129.6386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b2048329a85a58650d7b6ff122892b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3249bdc1b14932a54b0f1e7d8734969f = $(`&lt;div id=&quot;html_3249bdc1b14932a54b0f1e7d8734969f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6386             latitude:44.5462             PM2_5:19.77793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b2048329a85a58650d7b6ff122892b0.setContent(html_3249bdc1b14932a54b0f1e7d8734969f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3bc1e1ef32616fd5f85ad143b17a580.bindPopup(popup_3b2048329a85a58650d7b6ff122892b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e34ec7d523b057af23f8c66df3b9daa = L.circleMarker(\\n\",\n       \"                [33.739, 113.292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4403af0cc255ef3d2673f75b3768bac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_063b47f8ef7ee3919e6472844ab5d782 = $(`&lt;div id=&quot;html_063b47f8ef7ee3919e6472844ab5d782&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.292             latitude:33.739             PM2_5:60.00560224             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4403af0cc255ef3d2673f75b3768bac.setContent(html_063b47f8ef7ee3919e6472844ab5d782);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e34ec7d523b057af23f8c66df3b9daa.bindPopup(popup_e4403af0cc255ef3d2673f75b3768bac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce545df2bf21f4f146a55c4400abb4fe = L.circleMarker(\\n\",\n       \"                [27.72, 106.9178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f833610e8fe6f0fac5d7f8080b166f6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d381ffd26f3f28b59caf2ff35e9dcb21 = $(`&lt;div id=&quot;html_d381ffd26f3f28b59caf2ff35e9dcb21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9178             latitude:27.72             PM2_5:29.96944444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f833610e8fe6f0fac5d7f8080b166f6e.setContent(html_d381ffd26f3f28b59caf2ff35e9dcb21);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce545df2bf21f4f146a55c4400abb4fe.bindPopup(popup_f833610e8fe6f0fac5d7f8080b166f6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7633129f848e88996f43833106a13653 = L.circleMarker(\\n\",\n       \"                [31.4, 119.46],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18a409fb6d86722829380be9addde1ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_694aadea9131ff7290af799d8b2ef93f = $(`&lt;div id=&quot;html_694aadea9131ff7290af799d8b2ef93f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.46             latitude:31.4             PM2_5:41.13091922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18a409fb6d86722829380be9addde1ac.setContent(html_694aadea9131ff7290af799d8b2ef93f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7633129f848e88996f43833106a13653.bindPopup(popup_18a409fb6d86722829380be9addde1ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c9b4035a094dd0b62e9ae0707813939 = L.circleMarker(\\n\",\n       \"                [25.0992, 104.8811],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_beb1ac84d46f378c5e3db41759ab44e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ecb90337d759ead643317988ce48d0e = $(`&lt;div id=&quot;html_2ecb90337d759ead643317988ce48d0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8811             latitude:25.0992             PM2_5:15.26544944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_beb1ac84d46f378c5e3db41759ab44e3.setContent(html_2ecb90337d759ead643317988ce48d0e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c9b4035a094dd0b62e9ae0707813939.bindPopup(popup_beb1ac84d46f378c5e3db41759ab44e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87b9cf0d8d4650ff3ff0cd426fe1fc74 = L.circleMarker(\\n\",\n       \"                [46.0707, 122.0931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e9fc04eaab47e4726ffcc740cfaf9b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d72584a62cff6ab397e1029839410fc4 = $(`&lt;div id=&quot;html_d72584a62cff6ab397e1029839410fc4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0931             latitude:46.0707             PM2_5:14.30087209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e9fc04eaab47e4726ffcc740cfaf9b0.setContent(html_d72584a62cff6ab397e1029839410fc4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87b9cf0d8d4650ff3ff0cd426fe1fc74.bindPopup(popup_9e9fc04eaab47e4726ffcc740cfaf9b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74cbfbe2c5bf92dcd1d21e56914d648c = L.circleMarker(\\n\",\n       \"                [21.2679, 110.3316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65092e2d05113879a4160fb7b2c76427 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d08eb70ec1871526a1830140987f0c44 = $(`&lt;div id=&quot;html_d08eb70ec1871526a1830140987f0c44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3316             latitude:21.2679             PM2_5:25.9859944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65092e2d05113879a4160fb7b2c76427.setContent(html_d08eb70ec1871526a1830140987f0c44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74cbfbe2c5bf92dcd1d21e56914d648c.bindPopup(popup_65092e2d05113879a4160fb7b2c76427)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e764514934441650b1366c02d4419b1 = L.circleMarker(\\n\",\n       \"                [25.5811, 100.2171],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3960a8f6a67c4ba476e5b10d0cfcde64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e500cbf0409b8318343a4bf258bbb33 = $(`&lt;div id=&quot;html_6e500cbf0409b8318343a4bf258bbb33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2171             latitude:25.5811             PM2_5:15.15915493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3960a8f6a67c4ba476e5b10d0cfcde64.setContent(html_6e500cbf0409b8318343a4bf258bbb33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e764514934441650b1366c02d4419b1.bindPopup(popup_3960a8f6a67c4ba476e5b10d0cfcde64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_278842b79ec2d025ff3da52a1a63b43e = L.circleMarker(\\n\",\n       \"                [29.8633, 121.586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_371a6ec86dbcf8aa3b9d5dc8cc2900fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6597f5e036fd4aef29f5aa91ce470a31 = $(`&lt;div id=&quot;html_6597f5e036fd4aef29f5aa91ce470a31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.586             latitude:29.8633             PM2_5:34.40027701             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_371a6ec86dbcf8aa3b9d5dc8cc2900fe.setContent(html_6597f5e036fd4aef29f5aa91ce470a31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_278842b79ec2d025ff3da52a1a63b43e.bindPopup(popup_371a6ec86dbcf8aa3b9d5dc8cc2900fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9016af0261867f4425194f78abc25e8c = L.circleMarker(\\n\",\n       \"                [43.962, 87.6444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba2808faa7f968cfe3cf38ae516ec7cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1dbdfe66b6a42350700a429d159d4198 = $(`&lt;div id=&quot;html_1dbdfe66b6a42350700a429d159d4198&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6444             latitude:43.962             PM2_5:64.43895349             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba2808faa7f968cfe3cf38ae516ec7cd.setContent(html_1dbdfe66b6a42350700a429d159d4198);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9016af0261867f4425194f78abc25e8c.bindPopup(popup_ba2808faa7f968cfe3cf38ae516ec7cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85d9eed0e2947c049694ce12bb1e9c50 = L.circleMarker(\\n\",\n       \"                [28.9583, 105.4306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_742d61db3f0f11e4d70a27cd6f941ca6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f6e643b98ca0edec653e6cb321e6492 = $(`&lt;div id=&quot;html_0f6e643b98ca0edec653e6cb321e6492&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4306             latitude:28.9583             PM2_5:39.22050562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_742d61db3f0f11e4d70a27cd6f941ca6.setContent(html_0f6e643b98ca0edec653e6cb321e6492);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85d9eed0e2947c049694ce12bb1e9c50.bindPopup(popup_742d61db3f0f11e4d70a27cd6f941ca6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d05d803083ab758b189826c481ea8fba = L.circleMarker(\\n\",\n       \"                [28.2597, 112.9792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cec8f1d750304c2c97ace71c1ef72f98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9749bc3887d5177705a6f522dda4f63 = $(`&lt;div id=&quot;html_c9749bc3887d5177705a6f522dda4f63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9792             latitude:28.2597             PM2_5:46.94182825             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cec8f1d750304c2c97ace71c1ef72f98.setContent(html_c9749bc3887d5177705a6f522dda4f63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d05d803083ab758b189826c481ea8fba.bindPopup(popup_cec8f1d750304c2c97ace71c1ef72f98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0c6828117cd60409261453502e31901 = L.circleMarker(\\n\",\n       \"                [22.8054, 113.292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_982480283bec713e38e95eed23890eaf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a61059a6b782dde16f30e335b7471cf = $(`&lt;div id=&quot;html_5a61059a6b782dde16f30e335b7471cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.292             latitude:22.8054             PM2_5:28.99439776             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_982480283bec713e38e95eed23890eaf.setContent(html_5a61059a6b782dde16f30e335b7471cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0c6828117cd60409261453502e31901.bindPopup(popup_982480283bec713e38e95eed23890eaf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6abc6ee9966d60d90df2195b04bd688 = L.circleMarker(\\n\",\n       \"                [45.7667, 126.635],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6dd253729c8a8bbd607fae5880bb5623 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08be359784b92ca6e97e38eb69654fe0 = $(`&lt;div id=&quot;html_08be359784b92ca6e97e38eb69654fe0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.635             latitude:45.7667             PM2_5:32.13547486             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6dd253729c8a8bbd607fae5880bb5623.setContent(html_08be359784b92ca6e97e38eb69654fe0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6abc6ee9966d60d90df2195b04bd688.bindPopup(popup_6dd253729c8a8bbd607fae5880bb5623)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c4c0603a48d1ed15578fafd9a917b3f = L.circleMarker(\\n\",\n       \"                [22.5625, 114.117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40d7856eefa9e78b1095b013e05c01c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13d216594dc7c4e9903025c6921467fa = $(`&lt;div id=&quot;html_13d216594dc7c4e9903025c6921467fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.117             latitude:22.5625             PM2_5:28.08798883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40d7856eefa9e78b1095b013e05c01c4.setContent(html_13d216594dc7c4e9903025c6921467fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c4c0603a48d1ed15578fafd9a917b3f.bindPopup(popup_40d7856eefa9e78b1095b013e05c01c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_715bdcbfb212c1ba771bf8fa2ad274d9 = L.circleMarker(\\n\",\n       \"                [33.9953, 113.7906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f819c74e89df386bf6126f8469aa2c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_283f2752c1ae3f7698d45b3efe18bb0f = $(`&lt;div id=&quot;html_283f2752c1ae3f7698d45b3efe18bb0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7906             latitude:33.9953             PM2_5:52.43435754             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f819c74e89df386bf6126f8469aa2c7.setContent(html_283f2752c1ae3f7698d45b3efe18bb0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_715bdcbfb212c1ba771bf8fa2ad274d9.bindPopup(popup_8f819c74e89df386bf6126f8469aa2c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b26540d0761cf3f9e6a47b83375eba73 = L.circleMarker(\\n\",\n       \"                [30.0911, 120.598],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_89463bf7c6b483f3156d40f3d8b2fb24 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a80c707724b3e5758eb187325213f9c5 = $(`&lt;div id=&quot;html_a80c707724b3e5758eb187325213f9c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.598             latitude:30.0911             PM2_5:42.53221289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_89463bf7c6b483f3156d40f3d8b2fb24.setContent(html_a80c707724b3e5758eb187325213f9c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b26540d0761cf3f9e6a47b83375eba73.bindPopup(popup_89463bf7c6b483f3156d40f3d8b2fb24)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb53d4db2209ad190dc5683c25fa2caa = L.circleMarker(\\n\",\n       \"                [33.0122, 112.5224],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16250424a5fb1ead8e15ebfc564c7ee9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7e12936fb4861a49bcd8ee5676b5728 = $(`&lt;div id=&quot;html_f7e12936fb4861a49bcd8ee5676b5728&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5224             latitude:33.0122             PM2_5:56.43732591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16250424a5fb1ead8e15ebfc564c7ee9.setContent(html_f7e12936fb4861a49bcd8ee5676b5728);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb53d4db2209ad190dc5683c25fa2caa.bindPopup(popup_16250424a5fb1ead8e15ebfc564c7ee9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67a07d88c9e4f9f88b518c1ae2121b4b = L.circleMarker(\\n\",\n       \"                [34.6692, 112.3628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_091a4eb4478943ac50e44118d555f73a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca548ff898d37a16a857912998cb1a3a = $(`&lt;div id=&quot;html_ca548ff898d37a16a857912998cb1a3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3628             latitude:34.6692             PM2_5:60.93277311             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_091a4eb4478943ac50e44118d555f73a.setContent(html_ca548ff898d37a16a857912998cb1a3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67a07d88c9e4f9f88b518c1ae2121b4b.bindPopup(popup_091a4eb4478943ac50e44118d555f73a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11ec093240687713405b3b2897cc8e82 = L.circleMarker(\\n\",\n       \"                [27.8953, 102.2311],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c771b8f95fee9000f10c06fa2c8c100c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de270b7b370e3f00099c72d5a4943d77 = $(`&lt;div id=&quot;html_de270b7b370e3f00099c72d5a4943d77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2311             latitude:27.8953             PM2_5:24.98459384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c771b8f95fee9000f10c06fa2c8c100c.setContent(html_de270b7b370e3f00099c72d5a4943d77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11ec093240687713405b3b2897cc8e82.bindPopup(popup_c771b8f95fee9000f10c06fa2c8c100c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a295a87d5a3f1594bc457ec6853be6c7 = L.circleMarker(\\n\",\n       \"                [30.3714, 114.8989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24a6ae6afc7104aad33071b6448b949b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebb502cdf2eb508a33abc4c94641be29 = $(`&lt;div id=&quot;html_ebb502cdf2eb508a33abc4c94641be29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8989             latitude:30.3714             PM2_5:57.2733711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24a6ae6afc7104aad33071b6448b949b.setContent(html_ebb502cdf2eb508a33abc4c94641be29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a295a87d5a3f1594bc457ec6853be6c7.bindPopup(popup_24a6ae6afc7104aad33071b6448b949b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b90e5630481789ccc9120fa0ca95073 = L.circleMarker(\\n\",\n       \"                [36.881, 118.746],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63e05b4e617f0add28d01965732ddd17 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48dbac454504979e13b5c6c5f2fa7627 = $(`&lt;div id=&quot;html_48dbac454504979e13b5c6c5f2fa7627&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.746             latitude:36.881             PM2_5:52.24558824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63e05b4e617f0add28d01965732ddd17.setContent(html_48dbac454504979e13b5c6c5f2fa7627);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b90e5630481789ccc9120fa0ca95073.bindPopup(popup_63e05b4e617f0add28d01965732ddd17)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5faf93077d9883c6d964d370ec6abac0 = L.circleMarker(\\n\",\n       \"                [28.3586, 112.9958],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c7f8d96ade700790606734e2ca0d828 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8de1577359e0b164755e8c027f7f305c = $(`&lt;div id=&quot;html_8de1577359e0b164755e8c027f7f305c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9958             latitude:28.3586             PM2_5:47.99858757             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c7f8d96ade700790606734e2ca0d828.setContent(html_8de1577359e0b164755e8c027f7f305c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5faf93077d9883c6d964d370ec6abac0.bindPopup(popup_5c7f8d96ade700790606734e2ca0d828)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01efa8cac7fcdfb41165b43eaa6f47ab = L.circleMarker(\\n\",\n       \"                [21.865, 111.9494],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8f79b2a539efeb90ab4415b09013d3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de64014c5d0b64c4ca4f85f6ee4879c9 = $(`&lt;div id=&quot;html_de64014c5d0b64c4ca4f85f6ee4879c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9494             latitude:21.865             PM2_5:26.47058824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8f79b2a539efeb90ab4415b09013d3b.setContent(html_de64014c5d0b64c4ca4f85f6ee4879c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01efa8cac7fcdfb41165b43eaa6f47ab.bindPopup(popup_c8f79b2a539efeb90ab4415b09013d3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c42e69ed0a344a60610bb3781e924379 = L.circleMarker(\\n\",\n       \"                [37.739, 115.6906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0d7da9db2567855f3681fbe26a53c71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5ebbe4c0dd24158d3597f3e0fe1b5a0 = $(`&lt;div id=&quot;html_c5ebbe4c0dd24158d3597f3e0fe1b5a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6906             latitude:37.739             PM2_5:61.18333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0d7da9db2567855f3681fbe26a53c71.setContent(html_c5ebbe4c0dd24158d3597f3e0fe1b5a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c42e69ed0a344a60610bb3781e924379.bindPopup(popup_d0d7da9db2567855f3681fbe26a53c71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91e7d936a35b7e5d26286e0b3e0c8eeb = L.circleMarker(\\n\",\n       \"                [41.3283, 123.8436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4fa001da5f5a20601415db08249ab583 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a6b1176ba42e07005c3e94f9686e986 = $(`&lt;div id=&quot;html_4a6b1176ba42e07005c3e94f9686e986&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8436             latitude:41.3283             PM2_5:26.20416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4fa001da5f5a20601415db08249ab583.setContent(html_4a6b1176ba42e07005c3e94f9686e986);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91e7d936a35b7e5d26286e0b3e0c8eeb.bindPopup(popup_4fa001da5f5a20601415db08249ab583)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51c41117c3ce23e3ca0702f7fe053931 = L.circleMarker(\\n\",\n       \"                [25.8179, 113.0119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e77402a48359dc1c75fd0b8a6b6cc361 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b62bbd291c1cc3ca41302ca2073875d = $(`&lt;div id=&quot;html_8b62bbd291c1cc3ca41302ca2073875d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0119             latitude:25.8179             PM2_5:37.42577031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e77402a48359dc1c75fd0b8a6b6cc361.setContent(html_8b62bbd291c1cc3ca41302ca2073875d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51c41117c3ce23e3ca0702f7fe053931.bindPopup(popup_e77402a48359dc1c75fd0b8a6b6cc361)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_838c68537293177e91c2aadd1376e307 = L.circleMarker(\\n\",\n       \"                [41.2894, 123.1417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98ade53a3e3d2536db2714963b64b8f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96397742d29e5befb1273d0c68da850d = $(`&lt;div id=&quot;html_96397742d29e5befb1273d0c68da850d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1417             latitude:41.2894             PM2_5:33.12921348             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98ade53a3e3d2536db2714963b64b8f8.setContent(html_96397742d29e5befb1273d0c68da850d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_838c68537293177e91c2aadd1376e307.bindPopup(popup_98ade53a3e3d2536db2714963b64b8f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f10a6822edb09a8659b5e2c61a9251a = L.circleMarker(\\n\",\n       \"                [43.4569, 87.4651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c113c8672e361f0c4afc330991d81255 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56b0d147600b8b41150aff8a422db862 = $(`&lt;div id=&quot;html_56b0d147600b8b41150aff8a422db862&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.4651             latitude:43.4569             PM2_5:18.97464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c113c8672e361f0c4afc330991d81255.setContent(html_56b0d147600b8b41150aff8a422db862);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f10a6822edb09a8659b5e2c61a9251a.bindPopup(popup_c113c8672e361f0c4afc330991d81255)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c48b3e391c994f5aeec46733dce71b80 = L.circleMarker(\\n\",\n       \"                [30.72358333, 103.97275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33c28a2b84fe2462e292078a7a8ce55b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5fcc67a94f9840e04404d040bd42a37 = $(`&lt;div id=&quot;html_e5fcc67a94f9840e04404d040bd42a37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.97275             latitude:30.72358333             PM2_5:55.87465181             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33c28a2b84fe2462e292078a7a8ce55b.setContent(html_e5fcc67a94f9840e04404d040bd42a37);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c48b3e391c994f5aeec46733dce71b80.bindPopup(popup_33c28a2b84fe2462e292078a7a8ce55b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74b86fae8cbaa4a6d1d49995dc6e9e1e = L.circleMarker(\\n\",\n       \"                [28.2675, 109.6958],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9871c03d704d9d219ac5ce61ec1ad0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e726abb418792d811a1f96bfd7954c3f = $(`&lt;div id=&quot;html_e726abb418792d811a1f96bfd7954c3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6958             latitude:28.2675             PM2_5:45.76388889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9871c03d704d9d219ac5ce61ec1ad0f.setContent(html_e726abb418792d811a1f96bfd7954c3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74b86fae8cbaa4a6d1d49995dc6e9e1e.bindPopup(popup_b9871c03d704d9d219ac5ce61ec1ad0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bdda7308f1221903c47def33355a62da = L.circleMarker(\\n\",\n       \"                [37.9844, 106.2025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02e30448b56f920a294ac15325daf770 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ef1c4e12d71293baddda70375b36ba8 = $(`&lt;div id=&quot;html_7ef1c4e12d71293baddda70375b36ba8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2025             latitude:37.9844             PM2_5:35.49438202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02e30448b56f920a294ac15325daf770.setContent(html_7ef1c4e12d71293baddda70375b36ba8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bdda7308f1221903c47def33355a62da.bindPopup(popup_02e30448b56f920a294ac15325daf770)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7173ade70e5788ed4477aba58d8d7ff = L.circleMarker(\\n\",\n       \"                [36.8198, 118.3092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2dcad86f43f0c65db2c40a6be336d626 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d95cb82e8aa0527cc49dabb28001727 = $(`&lt;div id=&quot;html_4d95cb82e8aa0527cc49dabb28001727&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3092             latitude:36.8198             PM2_5:58.88951841             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2dcad86f43f0c65db2c40a6be336d626.setContent(html_4d95cb82e8aa0527cc49dabb28001727);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7173ade70e5788ed4477aba58d8d7ff.bindPopup(popup_2dcad86f43f0c65db2c40a6be336d626)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a106f965730da4f28eef0f244ee8e594 = L.circleMarker(\\n\",\n       \"                [29.3628, 104.7547],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49d5f9456a5a41616d3d49392f728ff0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85fe11d25687e16e1c13f928b4011460 = $(`&lt;div id=&quot;html_85fe11d25687e16e1c13f928b4011460&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7547             latitude:29.3628             PM2_5:74.37711864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49d5f9456a5a41616d3d49392f728ff0.setContent(html_85fe11d25687e16e1c13f928b4011460);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a106f965730da4f28eef0f244ee8e594.bindPopup(popup_49d5f9456a5a41616d3d49392f728ff0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83f0f69b9241d74056447969a90b4cf7 = L.circleMarker(\\n\",\n       \"                [26.5917, 104.83],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f25d6aa1c9fdb70411b20e17720c830 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c98a2174677e2fc83c922ea8e7ebf8b6 = $(`&lt;div id=&quot;html_c98a2174677e2fc83c922ea8e7ebf8b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.83             latitude:26.5917             PM2_5:40.890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f25d6aa1c9fdb70411b20e17720c830.setContent(html_c98a2174677e2fc83c922ea8e7ebf8b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83f0f69b9241d74056447969a90b4cf7.bindPopup(popup_3f25d6aa1c9fdb70411b20e17720c830)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58d91e55b141b16d6c150290198744cd = L.circleMarker(\\n\",\n       \"                [38.4975, 106.2328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd04510a708c31db611d096462034edd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ac8bff3835403285c8fcca600b00fbd = $(`&lt;div id=&quot;html_4ac8bff3835403285c8fcca600b00fbd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2328             latitude:38.4975             PM2_5:44.18994413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd04510a708c31db611d096462034edd.setContent(html_4ac8bff3835403285c8fcca600b00fbd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58d91e55b141b16d6c150290198744cd.bindPopup(popup_fd04510a708c31db611d096462034edd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1ab024a0344bc1e3ea358c6fa2933e0 = L.circleMarker(\\n\",\n       \"                [22.8225, 108.321],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb1137294bb5da0e18ff3c1bd71aa00d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21c44da2ef4a5f0403234df25ae21286 = $(`&lt;div id=&quot;html_21c44da2ef4a5f0403234df25ae21286&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.321             latitude:22.8225             PM2_5:33.82062147             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb1137294bb5da0e18ff3c1bd71aa00d.setContent(html_21c44da2ef4a5f0403234df25ae21286);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1ab024a0344bc1e3ea358c6fa2933e0.bindPopup(popup_cb1137294bb5da0e18ff3c1bd71aa00d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21cc1238bb3c54425f040424709167a0 = L.circleMarker(\\n\",\n       \"                [30.6539, 117.4974],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57b916b5153c17307963c2686bbacca4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48c93e40dca8c230c8fe4d246162ddff = $(`&lt;div id=&quot;html_48c93e40dca8c230c8fe4d246162ddff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4974             latitude:30.6539             PM2_5:57.20555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57b916b5153c17307963c2686bbacca4.setContent(html_48c93e40dca8c230c8fe4d246162ddff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21cc1238bb3c54425f040424709167a0.bindPopup(popup_57b916b5153c17307963c2686bbacca4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_582cb6dcb9ace0d49e1cc3efb372065b = L.circleMarker(\\n\",\n       \"                [32.935, 117.3086],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f018c40a2f403d186788b53b85cc5f9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_53c5d5c9b90372615a00c2308f196f48 = $(`&lt;div id=&quot;html_53c5d5c9b90372615a00c2308f196f48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3086             latitude:32.935             PM2_5:54.68539326             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f018c40a2f403d186788b53b85cc5f9f.setContent(html_53c5d5c9b90372615a00c2308f196f48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_582cb6dcb9ace0d49e1cc3efb372065b.bindPopup(popup_f018c40a2f403d186788b53b85cc5f9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ca9334f51dbec2cccdc5b50970055e3 = L.circleMarker(\\n\",\n       \"                [35.4234, 119.5198],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d6af07f759d24f59f9704a75aaa5e4e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1b071ed234c4afb9aa55edffe43ff1b = $(`&lt;div id=&quot;html_c1b071ed234c4afb9aa55edffe43ff1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5198             latitude:35.4234             PM2_5:41.30501393             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d6af07f759d24f59f9704a75aaa5e4e.setContent(html_c1b071ed234c4afb9aa55edffe43ff1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ca9334f51dbec2cccdc5b50970055e3.bindPopup(popup_4d6af07f759d24f59f9704a75aaa5e4e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75dc00d775f7e90330a89115689ceedb = L.circleMarker(\\n\",\n       \"                [24.769519, 113.586606],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6b04e256c851c9c366377d6ab4524ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66cf4babfc3a50bb84dde2d2b82967ca = $(`&lt;div id=&quot;html_66cf4babfc3a50bb84dde2d2b82967ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.586606             latitude:24.769519             PM2_5:36.18194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6b04e256c851c9c366377d6ab4524ae.setContent(html_66cf4babfc3a50bb84dde2d2b82967ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75dc00d775f7e90330a89115689ceedb.bindPopup(popup_c6b04e256c851c9c366377d6ab4524ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_311a989849ad97dc90c19080a162ce05 = L.circleMarker(\\n\",\n       \"                [30.2352, 115.0625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2f454e7b6b382503a27ce37f81c7ccd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef71cc9baad0d655e69faf94897b65fc = $(`&lt;div id=&quot;html_ef71cc9baad0d655e69faf94897b65fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0625             latitude:30.2352             PM2_5:47.3969697             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2f454e7b6b382503a27ce37f81c7ccd.setContent(html_ef71cc9baad0d655e69faf94897b65fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_311a989849ad97dc90c19080a162ce05.bindPopup(popup_e2f454e7b6b382503a27ce37f81c7ccd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24fe85364d2ea09f1683ba01b93ac94e = L.circleMarker(\\n\",\n       \"                [41.9228, 123.3783],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d61074a9af11c9cde85ea8fa16bb103a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b395829f70965ec2762c1a20b14a98c = $(`&lt;div id=&quot;html_7b395829f70965ec2762c1a20b14a98c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.3783             latitude:41.9228             PM2_5:34.71727019             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d61074a9af11c9cde85ea8fa16bb103a.setContent(html_7b395829f70965ec2762c1a20b14a98c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24fe85364d2ea09f1683ba01b93ac94e.bindPopup(popup_d61074a9af11c9cde85ea8fa16bb103a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e04f743e4996e3715fcc5819b199e486 = L.circleMarker(\\n\",\n       \"                [33.3947, 120.225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0dce7df02640a113217544c580be1bff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76533d8d3ceed1a9ad99dbf57512e4e8 = $(`&lt;div id=&quot;html_76533d8d3ceed1a9ad99dbf57512e4e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.225             latitude:33.3947             PM2_5:35.74438202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0dce7df02640a113217544c580be1bff.setContent(html_76533d8d3ceed1a9ad99dbf57512e4e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e04f743e4996e3715fcc5819b199e486.bindPopup(popup_0dce7df02640a113217544c580be1bff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f51ae9e4ca4d07da54201d4e4d7e0ff = L.circleMarker(\\n\",\n       \"                [22.96583333, 113.7383333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4faf973c04ec3a5a0e89f8777bd9542e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50b34d25e23be0fa986656cf08df3d50 = $(`&lt;div id=&quot;html_50b34d25e23be0fa986656cf08df3d50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7383333             latitude:22.96583333             PM2_5:35.75761773             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4faf973c04ec3a5a0e89f8777bd9542e.setContent(html_50b34d25e23be0fa986656cf08df3d50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f51ae9e4ca4d07da54201d4e4d7e0ff.bindPopup(popup_4faf973c04ec3a5a0e89f8777bd9542e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2e6b25dc724b2ac641fca28434a43bf = L.circleMarker(\\n\",\n       \"                [31.8706, 117.259],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd5a10868e1e49269a5e1fecaa00b306 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86937d0f9cda8f521d9534a1beb841e3 = $(`&lt;div id=&quot;html_86937d0f9cda8f521d9534a1beb841e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.259             latitude:31.8706             PM2_5:46.20473538             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd5a10868e1e49269a5e1fecaa00b306.setContent(html_86937d0f9cda8f521d9534a1beb841e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2e6b25dc724b2ac641fca28434a43bf.bindPopup(popup_bd5a10868e1e49269a5e1fecaa00b306)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d7b9eb425c791c175c6a0efec5b9380 = L.circleMarker(\\n\",\n       \"                [31.03389, 112.1908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc432721090209744bdc3ed797f15d0c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_527a11905c71fab6edc55d07ef634204 = $(`&lt;div id=&quot;html_527a11905c71fab6edc55d07ef634204&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1908             latitude:31.03389             PM2_5:50.85154062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc432721090209744bdc3ed797f15d0c.setContent(html_527a11905c71fab6edc55d07ef634204);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d7b9eb425c791c175c6a0efec5b9380.bindPopup(popup_dc432721090209744bdc3ed797f15d0c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88d74973cd6663272d232dce91f20ad4 = L.circleMarker(\\n\",\n       \"                [31.371, 119.794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b0978f8d4d8923e8009336330f1984c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_714cb2e783674661df50dadec403adbd = $(`&lt;div id=&quot;html_714cb2e783674661df50dadec403adbd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.794             latitude:31.371             PM2_5:48.33333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b0978f8d4d8923e8009336330f1984c.setContent(html_714cb2e783674661df50dadec403adbd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88d74973cd6663272d232dce91f20ad4.bindPopup(popup_5b0978f8d4d8923e8009336330f1984c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4413832f74fad7dab10bb440833e6e7f = L.circleMarker(\\n\",\n       \"                [36.2211, 117.6983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2d50f2d98a46c0a913302e488787eb0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb0fdea8919333b0168b44ea7b23eecb = $(`&lt;div id=&quot;html_cb0fdea8919333b0168b44ea7b23eecb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6983             latitude:36.2211             PM2_5:54.98994253             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2d50f2d98a46c0a913302e488787eb0.setContent(html_cb0fdea8919333b0168b44ea7b23eecb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4413832f74fad7dab10bb440833e6e7f.bindPopup(popup_b2d50f2d98a46c0a913302e488787eb0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b8339995ab8fe2b629c970d34bf94215 = L.circleMarker(\\n\",\n       \"                [30.9219, 117.8561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f58ac4d950a2ff94885157d29f2a48c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b44ca28eaba1d81555942826d6adece5 = $(`&lt;div id=&quot;html_b44ca28eaba1d81555942826d6adece5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8561             latitude:30.9219             PM2_5:50.87396122             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f58ac4d950a2ff94885157d29f2a48c2.setContent(html_b44ca28eaba1d81555942826d6adece5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b8339995ab8fe2b629c970d34bf94215.bindPopup(popup_f58ac4d950a2ff94885157d29f2a48c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7cf9143ee2f9f223343f9922e0219b2c = L.circleMarker(\\n\",\n       \"                [32.0723, 118.778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac849c7c449c2bbb0ed90b1f1bfd86a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6517c60fda038503da6bcc7e1499407 = $(`&lt;div id=&quot;html_d6517c60fda038503da6bcc7e1499407&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.778             latitude:32.0723             PM2_5:42.57244318             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac849c7c449c2bbb0ed90b1f1bfd86a4.setContent(html_d6517c60fda038503da6bcc7e1499407);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7cf9143ee2f9f223343f9922e0219b2c.bindPopup(popup_ac849c7c449c2bbb0ed90b1f1bfd86a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d0d1d1a996eaec2718c5982c0f0f97d = L.circleMarker(\\n\",\n       \"                [42.2953, 123.8831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3a1ee67414e49a8fbe21d7f213c2205 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ab1b364f3743ddb25fe92b946d5e5a9 = $(`&lt;div id=&quot;html_6ab1b364f3743ddb25fe92b946d5e5a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8831             latitude:42.2953             PM2_5:30.840625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3a1ee67414e49a8fbe21d7f213c2205.setContent(html_6ab1b364f3743ddb25fe92b946d5e5a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d0d1d1a996eaec2718c5982c0f0f97d.bindPopup(popup_e3a1ee67414e49a8fbe21d7f213c2205)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2818860c1c65d74832294eac0872ffb = L.circleMarker(\\n\",\n       \"                [34.2911, 117.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bb0d816a3ecb1b19b325bea2269d38b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a53d2c7056dd0723cee27c186a62b35 = $(`&lt;div id=&quot;html_1a53d2c7056dd0723cee27c186a62b35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.244             latitude:34.2911             PM2_5:66.16428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bb0d816a3ecb1b19b325bea2269d38b.setContent(html_1a53d2c7056dd0723cee27c186a62b35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2818860c1c65d74832294eac0872ffb.bindPopup(popup_7bb0d816a3ecb1b19b325bea2269d38b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38ca11089e563ef59200c3025daa68ec = L.circleMarker(\\n\",\n       \"                [36.0714, 111.5028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d83ad226675a2c519bd9e52a2bff21f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_370f28fc11bf6f034cc20e9f7dd66993 = $(`&lt;div id=&quot;html_370f28fc11bf6f034cc20e9f7dd66993&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5028             latitude:36.0714             PM2_5:76.35933148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d83ad226675a2c519bd9e52a2bff21f.setContent(html_370f28fc11bf6f034cc20e9f7dd66993);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38ca11089e563ef59200c3025daa68ec.bindPopup(popup_3d83ad226675a2c519bd9e52a2bff21f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac5c980e71802d86b2bfdee2ea98de1e = L.circleMarker(\\n\",\n       \"                [30.0506, 103.8986],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39be3b9d483d2b36b5112f16800719b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_295aee46c2d57d96f5e3a7b92742f84e = $(`&lt;div id=&quot;html_295aee46c2d57d96f5e3a7b92742f84e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8986             latitude:30.0506             PM2_5:35.75             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39be3b9d483d2b36b5112f16800719b5.setContent(html_295aee46c2d57d96f5e3a7b92742f84e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac5c980e71802d86b2bfdee2ea98de1e.bindPopup(popup_39be3b9d483d2b36b5112f16800719b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18ac0d899fa177fb251abf7744bee1a8 = L.circleMarker(\\n\",\n       \"                [31.1167, 104.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee2c4d2ef03f823de17ffe82e5aca36a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc53f773a09dc84bf0a0bbcf9d6aab8e = $(`&lt;div id=&quot;html_fc53f773a09dc84bf0a0bbcf9d6aab8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.4053             latitude:31.1167             PM2_5:49.15927978             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee2c4d2ef03f823de17ffe82e5aca36a.setContent(html_fc53f773a09dc84bf0a0bbcf9d6aab8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18ac0d899fa177fb251abf7744bee1a8.bindPopup(popup_ee2c4d2ef03f823de17ffe82e5aca36a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab3eb648ebe460c8320fc7b6293a8773 = L.circleMarker(\\n\",\n       \"                [22.8464, 108.239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a348692e9ab615f76cce2a7d32b0c8c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f16006d72faae2b76fdfc1e782313fc = $(`&lt;div id=&quot;html_5f16006d72faae2b76fdfc1e782313fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.239             latitude:22.8464             PM2_5:32.19683908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a348692e9ab615f76cce2a7d32b0c8c.setContent(html_5f16006d72faae2b76fdfc1e782313fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab3eb648ebe460c8320fc7b6293a8773.bindPopup(popup_7a348692e9ab615f76cce2a7d32b0c8c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f617c21b31f5e6c96eb125b6b3961d2 = L.circleMarker(\\n\",\n       \"                [33.0069, 114.0131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ae132fdeee1144cbdef0276471c3794 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c825b3fed0d8520d65bfccf4ecf1cd2 = $(`&lt;div id=&quot;html_0c825b3fed0d8520d65bfccf4ecf1cd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0131             latitude:33.0069             PM2_5:55.45224719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ae132fdeee1144cbdef0276471c3794.setContent(html_0c825b3fed0d8520d65bfccf4ecf1cd2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f617c21b31f5e6c96eb125b6b3961d2.bindPopup(popup_4ae132fdeee1144cbdef0276471c3794)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b47bd817c14fe0747ded2b67ef3ccb1e = L.circleMarker(\\n\",\n       \"                [46.8032, 130.3648],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f766b99168be29edb3de8e7b286942b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d0ae04c1941ab695912a11b944c23f1 = $(`&lt;div id=&quot;html_4d0ae04c1941ab695912a11b944c23f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3648             latitude:46.8032             PM2_5:23.81714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f766b99168be29edb3de8e7b286942b8.setContent(html_4d0ae04c1941ab695912a11b944c23f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b47bd817c14fe0747ded2b67ef3ccb1e.bindPopup(popup_f766b99168be29edb3de8e7b286942b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8a8b6bde946771ad455a21ce263a644f = L.circleMarker(\\n\",\n       \"                [30.8064, 106.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1cea97a3e05d43694cab56269b3ee6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1831d11aa0c8683172dfe6c61f08aaae = $(`&lt;div id=&quot;html_1831d11aa0c8683172dfe6c61f08aaae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.056             latitude:30.8064             PM2_5:41.3079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1cea97a3e05d43694cab56269b3ee6e.setContent(html_1831d11aa0c8683172dfe6c61f08aaae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8a8b6bde946771ad455a21ce263a644f.bindPopup(popup_f1cea97a3e05d43694cab56269b3ee6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ac2fd715fb9de1d20e344bc7109dc7f = L.circleMarker(\\n\",\n       \"                [45.6886, 85.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0d0d20309932473884a97e012acb89f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f88fcb400c1c7354c9c3b157a81b1a5 = $(`&lt;div id=&quot;html_3f88fcb400c1c7354c9c3b157a81b1a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:85.1186             latitude:45.6886             PM2_5:33.96398892             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0d0d20309932473884a97e012acb89f.setContent(html_3f88fcb400c1c7354c9c3b157a81b1a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ac2fd715fb9de1d20e344bc7109dc7f.bindPopup(popup_e0d0d20309932473884a97e012acb89f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9836f7811c1c90b84b9d78a925d1004d = L.circleMarker(\\n\",\n       \"                [32.4639, 119.888],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_903061d3cb961efc139c4909c7fa0d31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe517ae20f758fd8120fccb34cb7a85c = $(`&lt;div id=&quot;html_fe517ae20f758fd8120fccb34cb7a85c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.888             latitude:32.4639             PM2_5:55.42896936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_903061d3cb961efc139c4909c7fa0d31.setContent(html_fe517ae20f758fd8120fccb34cb7a85c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9836f7811c1c90b84b9d78a925d1004d.bindPopup(popup_903061d3cb961efc139c4909c7fa0d31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_304f1480d525c337279329ff3f28dde1 = L.circleMarker(\\n\",\n       \"                [27.9119, 112.9074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46413559050776ea5dfaa9bb9ff0b760 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a8f6f9c4543b0e681f2bb6f5a6836fd = $(`&lt;div id=&quot;html_7a8f6f9c4543b0e681f2bb6f5a6836fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9074             latitude:27.9119             PM2_5:47.09887006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46413559050776ea5dfaa9bb9ff0b760.setContent(html_7a8f6f9c4543b0e681f2bb6f5a6836fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_304f1480d525c337279329ff3f28dde1.bindPopup(popup_46413559050776ea5dfaa9bb9ff0b760)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f0d92dd7a89caf688e949b6d2ed6a1f = L.circleMarker(\\n\",\n       \"                [31.7275, 113.3583],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9eafa84b9dc0bad758848cbb425f435a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e83268e964449446a804cf367f9c931 = $(`&lt;div id=&quot;html_6e83268e964449446a804cf367f9c931&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3583             latitude:31.7275             PM2_5:50.34453782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9eafa84b9dc0bad758848cbb425f435a.setContent(html_6e83268e964449446a804cf367f9c931);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f0d92dd7a89caf688e949b6d2ed6a1f.bindPopup(popup_9eafa84b9dc0bad758848cbb425f435a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff9e67cf7640451be8e867e4914d8052 = L.circleMarker(\\n\",\n       \"                [25.7054, 100.1542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9321451e7882fc77749d867ab6dc2fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90b0f4d9dee2c8f037f9b68e30d7cbbd = $(`&lt;div id=&quot;html_90b0f4d9dee2c8f037f9b68e30d7cbbd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.1542             latitude:25.7054             PM2_5:21.56703911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9321451e7882fc77749d867ab6dc2fa.setContent(html_90b0f4d9dee2c8f037f9b68e30d7cbbd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff9e67cf7640451be8e867e4914d8052.bindPopup(popup_d9321451e7882fc77749d867ab6dc2fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae55fbddb5e0db852b3df1c3c7271c42 = L.circleMarker(\\n\",\n       \"                [36.838, 118.0448],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_efd7b7e37d04f4bf5937618b7af66173 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eba512e665b7e8c097f1df44164fc4ac = $(`&lt;div id=&quot;html_eba512e665b7e8c097f1df44164fc4ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0448             latitude:36.838             PM2_5:53.40947075             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_efd7b7e37d04f4bf5937618b7af66173.setContent(html_eba512e665b7e8c097f1df44164fc4ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae55fbddb5e0db852b3df1c3c7271c42.bindPopup(popup_efd7b7e37d04f4bf5937618b7af66173)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5dcb479459a7e360bd76041b71a7b857 = L.circleMarker(\\n\",\n       \"                [25.7759, 113.0348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d8b02efb9e7f67894f902e9583378e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12fd28537ea327a5a6dc1a94a99960a3 = $(`&lt;div id=&quot;html_12fd28537ea327a5a6dc1a94a99960a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0348             latitude:25.7759             PM2_5:36.1680791             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d8b02efb9e7f67894f902e9583378e6.setContent(html_12fd28537ea327a5a6dc1a94a99960a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5dcb479459a7e360bd76041b71a7b857.bindPopup(popup_2d8b02efb9e7f67894f902e9583378e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9dbb3d342b32d7037de00d332a751716 = L.circleMarker(\\n\",\n       \"                [37.7805, 112.488],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b63ff27650622ddda30d57f331e01a14 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c45555782c051950599c86568baed1e = $(`&lt;div id=&quot;html_2c45555782c051950599c86568baed1e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.488             latitude:37.7805             PM2_5:67.54843305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b63ff27650622ddda30d57f331e01a14.setContent(html_2c45555782c051950599c86568baed1e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9dbb3d342b32d7037de00d332a751716.bindPopup(popup_b63ff27650622ddda30d57f331e01a14)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60d26f3fb343699d3dd6448cdf4d94f9 = L.circleMarker(\\n\",\n       \"                [31.0483, 112.2014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_842534834a124f6296e2c9d22bfabb02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84a7e39f156f5be720aaf6f597a4f4db = $(`&lt;div id=&quot;html_84a7e39f156f5be720aaf6f597a4f4db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2014             latitude:31.0483             PM2_5:56.0724234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_842534834a124f6296e2c9d22bfabb02.setContent(html_84a7e39f156f5be720aaf6f597a4f4db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60d26f3fb343699d3dd6448cdf4d94f9.bindPopup(popup_842534834a124f6296e2c9d22bfabb02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_596bfabe14ec54e9313112d8fe324dd5 = L.circleMarker(\\n\",\n       \"                [26.4214, 111.6156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97a3cb7bd18aa76301237b8353a9a78f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1582e0781535fe41986388254363c9c = $(`&lt;div id=&quot;html_b1582e0781535fe41986388254363c9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6156             latitude:26.4214             PM2_5:44.47167139             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97a3cb7bd18aa76301237b8353a9a78f.setContent(html_b1582e0781535fe41986388254363c9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_596bfabe14ec54e9313112d8fe324dd5.bindPopup(popup_97a3cb7bd18aa76301237b8353a9a78f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff975f2284ac31c38cf45b60e76ce620 = L.circleMarker(\\n\",\n       \"                [38.3228, 116.8709],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a21f7a27f9a515b06a5491b5a1ec6102 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fcb0a7c15b1ac568730a04b72ba4a0ee = $(`&lt;div id=&quot;html_fcb0a7c15b1ac568730a04b72ba4a0ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8709             latitude:38.3228             PM2_5:54.73184358             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a21f7a27f9a515b06a5491b5a1ec6102.setContent(html_fcb0a7c15b1ac568730a04b72ba4a0ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff975f2284ac31c38cf45b60e76ce620.bindPopup(popup_a21f7a27f9a515b06a5491b5a1ec6102)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e7f7210cefd320904095b046c30d1e6 = L.circleMarker(\\n\",\n       \"                [23.5739, 116.3594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88dd96a7286eb10f784f0fd47c808457 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ea81877b0c3b8a89dcb72a75b4e3bcb = $(`&lt;div id=&quot;html_9ea81877b0c3b8a89dcb72a75b4e3bcb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3594             latitude:23.5739             PM2_5:28.48587571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88dd96a7286eb10f784f0fd47c808457.setContent(html_9ea81877b0c3b8a89dcb72a75b4e3bcb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e7f7210cefd320904095b046c30d1e6.bindPopup(popup_88dd96a7286eb10f784f0fd47c808457)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fbdb5d5db0a9ddcbecb3fae88fbf9be = L.circleMarker(\\n\",\n       \"                [25.2708, 110.3089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7cc2a9de630705a5740908ae5a06d7a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1aa10d8c5428936ccee1d8cacdab5c2 = $(`&lt;div id=&quot;html_f1aa10d8c5428936ccee1d8cacdab5c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3089             latitude:25.2708             PM2_5:42.62952646             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7cc2a9de630705a5740908ae5a06d7a0.setContent(html_f1aa10d8c5428936ccee1d8cacdab5c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fbdb5d5db0a9ddcbecb3fae88fbf9be.bindPopup(popup_7cc2a9de630705a5740908ae5a06d7a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4f556702b20b3abda7333cffac3ce21 = L.circleMarker(\\n\",\n       \"                [30.4183, 120.301],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30bed10e30d7cdf4505494a55f1cb2a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9b0cb1f3e86d2cf38e307a02bbc23090 = $(`&lt;div id=&quot;html_9b0cb1f3e86d2cf38e307a02bbc23090&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.301             latitude:30.4183             PM2_5:38.71666667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30bed10e30d7cdf4505494a55f1cb2a7.setContent(html_9b0cb1f3e86d2cf38e307a02bbc23090);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4f556702b20b3abda7333cffac3ce21.bindPopup(popup_30bed10e30d7cdf4505494a55f1cb2a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93e389dd4e64693c477ca24d419b5e57 = L.circleMarker(\\n\",\n       \"                [31.1956, 107.5069],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2141f9f291ab4395193948d5ce3d29af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d174f3c7619845f1754a5597222ca583 = $(`&lt;div id=&quot;html_d174f3c7619845f1754a5597222ca583&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5069             latitude:31.1956             PM2_5:49.24373259             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2141f9f291ab4395193948d5ce3d29af.setContent(html_d174f3c7619845f1754a5597222ca583);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93e389dd4e64693c477ca24d419b5e57.bindPopup(popup_2141f9f291ab4395193948d5ce3d29af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8a18f18e53a34955bfa8b03042b9a05e = L.circleMarker(\\n\",\n       \"                [31.4747, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d02690aab8be9e1e5e451b9d83ccddcd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e45f0fbe60fd91d3c2c73638348e977 = $(`&lt;div id=&quot;html_0e45f0fbe60fd91d3c2c73638348e977&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:31.4747             PM2_5:44.43398876             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d02690aab8be9e1e5e451b9d83ccddcd.setContent(html_0e45f0fbe60fd91d3c2c73638348e977);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8a18f18e53a34955bfa8b03042b9a05e.bindPopup(popup_d02690aab8be9e1e5e451b9d83ccddcd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0dcc7fac8c1eeb3bb6124be685630779 = L.circleMarker(\\n\",\n       \"                [37.5002, 105.1971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6daab062b80b4196a13e98dc7ebd3002 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19badfd5ca1725dac1484f8b97c737b8 = $(`&lt;div id=&quot;html_19badfd5ca1725dac1484f8b97c737b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.1971             latitude:37.5002             PM2_5:38.00702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6daab062b80b4196a13e98dc7ebd3002.setContent(html_19badfd5ca1725dac1484f8b97c737b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0dcc7fac8c1eeb3bb6124be685630779.bindPopup(popup_6daab062b80b4196a13e98dc7ebd3002)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6dea1bcdb4966e99cabe9c02e352fb2 = L.circleMarker(\\n\",\n       \"                [36.7731, 119.1939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11088d0aa1d5e6d88b1d8d5f28e7598c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_131edcefd5f24ae0ef3b961f4500b1c3 = $(`&lt;div id=&quot;html_131edcefd5f24ae0ef3b961f4500b1c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1939             latitude:36.7731             PM2_5:44.57843137             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11088d0aa1d5e6d88b1d8d5f28e7598c.setContent(html_131edcefd5f24ae0ef3b961f4500b1c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6dea1bcdb4966e99cabe9c02e352fb2.bindPopup(popup_11088d0aa1d5e6d88b1d8d5f28e7598c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1df66323b79909d841c72ba7b3964b1 = L.circleMarker(\\n\",\n       \"                [39.5747, 116.7729],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2179b125e06c26a6cda44d565a16174 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4eca17e0e7c8eadef2eaf708ef50f491 = $(`&lt;div id=&quot;html_4eca17e0e7c8eadef2eaf708ef50f491&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7729             latitude:39.5747             PM2_5:42.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2179b125e06c26a6cda44d565a16174.setContent(html_4eca17e0e7c8eadef2eaf708ef50f491);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1df66323b79909d841c72ba7b3964b1.bindPopup(popup_c2179b125e06c26a6cda44d565a16174)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34ae9dc9bb09306269b072d483c201e9 = L.circleMarker(\\n\",\n       \"                [35.4178, 119.4641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6c5cd3233505683abe12dcd2b6496ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70cedf54a180caf41df80b3d662e8888 = $(`&lt;div id=&quot;html_70cedf54a180caf41df80b3d662e8888&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.4641             latitude:35.4178             PM2_5:41.96218487             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6c5cd3233505683abe12dcd2b6496ef.setContent(html_70cedf54a180caf41df80b3d662e8888);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34ae9dc9bb09306269b072d483c201e9.bindPopup(popup_e6c5cd3233505683abe12dcd2b6496ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86b0a7783f6c66b8c396371907f3765b = L.circleMarker(\\n\",\n       \"                [29.9816, 103.0001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26716066e7af1421b2b3cccf1eb723e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3edb072e3f43b8fcc831ef4e0ffadf6d = $(`&lt;div id=&quot;html_3edb072e3f43b8fcc831ef4e0ffadf6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0001             latitude:29.9816             PM2_5:48.52539683             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26716066e7af1421b2b3cccf1eb723e1.setContent(html_3edb072e3f43b8fcc831ef4e0ffadf6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86b0a7783f6c66b8c396371907f3765b.bindPopup(popup_26716066e7af1421b2b3cccf1eb723e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4e1f11e9e09c50f8d5f17a5daf586e3 = L.circleMarker(\\n\",\n       \"                [42.8953, 125.1567],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_851098701a60208c62d9d4cb4fd538c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc89d77a1362a74bf1648a8afd8cf044 = $(`&lt;div id=&quot;html_fc89d77a1362a74bf1648a8afd8cf044&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1567             latitude:42.8953             PM2_5:33.06657224             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_851098701a60208c62d9d4cb4fd538c8.setContent(html_fc89d77a1362a74bf1648a8afd8cf044);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4e1f11e9e09c50f8d5f17a5daf586e3.bindPopup(popup_851098701a60208c62d9d4cb4fd538c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0e6def5a010d9f9def5ba7bc7f7f395 = L.circleMarker(\\n\",\n       \"                [45.2924, 130.962],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8a77253ddea8be08cd39854ce9cd84a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb91548b55e86594ff19b4e1d2be93e1 = $(`&lt;div id=&quot;html_cb91548b55e86594ff19b4e1d2be93e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.962             latitude:45.2924             PM2_5:22.86111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8a77253ddea8be08cd39854ce9cd84a.setContent(html_cb91548b55e86594ff19b4e1d2be93e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0e6def5a010d9f9def5ba7bc7f7f395.bindPopup(popup_e8a77253ddea8be08cd39854ce9cd84a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54e75d518b0b51a53a91896d4887792f = L.circleMarker(\\n\",\n       \"                [35.0992, 117.4518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80af3102d26fcb20f83de266917dba58 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b327d5b82b3ee23c0ffc61c2aa6c3eff = $(`&lt;div id=&quot;html_b327d5b82b3ee23c0ffc61c2aa6c3eff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4518             latitude:35.0992             PM2_5:49.70762712             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80af3102d26fcb20f83de266917dba58.setContent(html_b327d5b82b3ee23c0ffc61c2aa6c3eff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54e75d518b0b51a53a91896d4887792f.bindPopup(popup_80af3102d26fcb20f83de266917dba58)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fcf3e1931b8800f53784c39b5faa617e = L.circleMarker(\\n\",\n       \"                [23.5538, 113.589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1171bf16b99463b3199035aec67278d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_879e4770d1a2441285dedae3a35c6273 = $(`&lt;div id=&quot;html_879e4770d1a2441285dedae3a35c6273&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.589             latitude:23.5538             PM2_5:33.23537604             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1171bf16b99463b3199035aec67278d0.setContent(html_879e4770d1a2441285dedae3a35c6273);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fcf3e1931b8800f53784c39b5faa617e.bindPopup(popup_1171bf16b99463b3199035aec67278d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e729cf83c1d295e1745f04463cca353 = L.circleMarker(\\n\",\n       \"                [24.441, 98.578],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7fc6416f9135ad287870909a244fa24 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26c000cf5f2cc1c0556884a3cad07f50 = $(`&lt;div id=&quot;html_26c000cf5f2cc1c0556884a3cad07f50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.578             latitude:24.441             PM2_5:42.49019608             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7fc6416f9135ad287870909a244fa24.setContent(html_26c000cf5f2cc1c0556884a3cad07f50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e729cf83c1d295e1745f04463cca353.bindPopup(popup_a7fc6416f9135ad287870909a244fa24)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89bdaf50345fd529d1bcd25eecc0f992 = L.circleMarker(\\n\",\n       \"                [39.1082, 117.237],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d831e6f6ac7a9015c59494997d0d239e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_519b7f4ab3012283070a6300c75a7b21 = $(`&lt;div id=&quot;html_519b7f4ab3012283070a6300c75a7b21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.237             latitude:39.1082             PM2_5:53.32777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d831e6f6ac7a9015c59494997d0d239e.setContent(html_519b7f4ab3012283070a6300c75a7b21);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89bdaf50345fd529d1bcd25eecc0f992.bindPopup(popup_d831e6f6ac7a9015c59494997d0d239e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cc4f5009d60e128416757002b02497b = L.circleMarker(\\n\",\n       \"                [25.4552, 119.0018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e735e6354195c5847cc4f7ac3dfcc48 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa6b9fc22899f63cb57a3f71df8c7ac2 = $(`&lt;div id=&quot;html_aa6b9fc22899f63cb57a3f71df8c7ac2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0018             latitude:25.4552             PM2_5:31.57983193             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e735e6354195c5847cc4f7ac3dfcc48.setContent(html_aa6b9fc22899f63cb57a3f71df8c7ac2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cc4f5009d60e128416757002b02497b.bindPopup(popup_5e735e6354195c5847cc4f7ac3dfcc48)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ebd6bf84925562a149005c2e4c6fac3 = L.circleMarker(\\n\",\n       \"                [31.317, 119.438],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2160435d15595ae0a0b698663e838698 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db1be6a7a1cef3cb2d1b301969c0ef60 = $(`&lt;div id=&quot;html_db1be6a7a1cef3cb2d1b301969c0ef60&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.438             latitude:31.317             PM2_5:41.8005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2160435d15595ae0a0b698663e838698.setContent(html_db1be6a7a1cef3cb2d1b301969c0ef60);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ebd6bf84925562a149005c2e4c6fac3.bindPopup(popup_2160435d15595ae0a0b698663e838698)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a91e5106fcf101e94aca3f597123e696 = L.circleMarker(\\n\",\n       \"                [47.7222, 128.8736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f35b9caccc9cc340234687458757ff97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70b20aaa37fb45303c8ae6e11712f7d4 = $(`&lt;div id=&quot;html_70b20aaa37fb45303c8ae6e11712f7d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:128.8736             latitude:47.7222             PM2_5:17.74193548             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f35b9caccc9cc340234687458757ff97.setContent(html_70b20aaa37fb45303c8ae6e11712f7d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a91e5106fcf101e94aca3f597123e696.bindPopup(popup_f35b9caccc9cc340234687458757ff97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d62d2bccd1359ab1d7b05d3fdb55ce0d = L.circleMarker(\\n\",\n       \"                [38.86388889, 121.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6dd6ed6c005d3d208e4eebc7da6d49e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_963b4c7944ca9eb30b712d964503637a = $(`&lt;div id=&quot;html_963b4c7944ca9eb30b712d964503637a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.625             latitude:38.86388889             PM2_5:25.54366197             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6dd6ed6c005d3d208e4eebc7da6d49e1.setContent(html_963b4c7944ca9eb30b712d964503637a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d62d2bccd1359ab1d7b05d3fdb55ce0d.bindPopup(popup_6dd6ed6c005d3d208e4eebc7da6d49e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81e84573eb33b7e0b43c7e031d34dc97 = L.circleMarker(\\n\",\n       \"                [40.8369, 111.751],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_715a76174bd0ae073137371fb423ede3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6805defb946f2344faa01c68f48415bc = $(`&lt;div id=&quot;html_6805defb946f2344faa01c68f48415bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.751             latitude:40.8369             PM2_5:38.55774648             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_715a76174bd0ae073137371fb423ede3.setContent(html_6805defb946f2344faa01c68f48415bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81e84573eb33b7e0b43c7e031d34dc97.bindPopup(popup_715a76174bd0ae073137371fb423ede3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74d75870bb28ef4b181a27055f52937c = L.circleMarker(\\n\",\n       \"                [31.3019, 120.591],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ab93fbbac2e3227e84d88d49b292ced = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f217506473be6a2cd47dc32c7a6facd6 = $(`&lt;div id=&quot;html_f217506473be6a2cd47dc32c7a6facd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.591             latitude:31.3019             PM2_5:45.21527778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ab93fbbac2e3227e84d88d49b292ced.setContent(html_f217506473be6a2cd47dc32c7a6facd6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74d75870bb28ef4b181a27055f52937c.bindPopup(popup_1ab93fbbac2e3227e84d88d49b292ced)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83e7615f348883e0827da41e9af2d842 = L.circleMarker(\\n\",\n       \"                [46.6527, 126.9636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01d4bc415ed273aa46bd2247f40deb0c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0666e00e02e849c63ec002497e3a413 = $(`&lt;div id=&quot;html_b0666e00e02e849c63ec002497e3a413&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.9636             latitude:46.6527             PM2_5:30.71186441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01d4bc415ed273aa46bd2247f40deb0c.setContent(html_b0666e00e02e849c63ec002497e3a413);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83e7615f348883e0827da41e9af2d842.bindPopup(popup_01d4bc415ed273aa46bd2247f40deb0c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8779e84464758c531a324a5f14052488 = L.circleMarker(\\n\",\n       \"                [29.389, 106.513],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10c5853f6dde6e30441fc1a7eed51c30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_407549d7d6663403f7584bf573c6c156 = $(`&lt;div id=&quot;html_407549d7d6663403f7584bf573c6c156&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.513             latitude:29.389             PM2_5:38.69390582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10c5853f6dde6e30441fc1a7eed51c30.setContent(html_407549d7d6663403f7584bf573c6c156);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8779e84464758c531a324a5f14052488.bindPopup(popup_10c5853f6dde6e30441fc1a7eed51c30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92018513a2183f15969f1e366a41e073 = L.circleMarker(\\n\",\n       \"                [31.9286, 102.1755],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3625ccefeaa31aefcb125d9cc5e75f78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce9ef7a31f06abe776580be7f51fec2a = $(`&lt;div id=&quot;html_ce9ef7a31f06abe776580be7f51fec2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1755             latitude:31.9286             PM2_5:4.474930362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3625ccefeaa31aefcb125d9cc5e75f78.setContent(html_ce9ef7a31f06abe776580be7f51fec2a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92018513a2183f15969f1e366a41e073.bindPopup(popup_3625ccefeaa31aefcb125d9cc5e75f78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c22b75400a3b592106d28271c0358de = L.circleMarker(\\n\",\n       \"                [40.2865, 116.17],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24710dcadc518ad6e14a0e4e2b987d06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0184dfa8c557c119b7f04ff50f427873 = $(`&lt;div id=&quot;html_0184dfa8c557c119b7f04ff50f427873&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.17             latitude:40.2865             PM2_5:48.08073654             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24710dcadc518ad6e14a0e4e2b987d06.setContent(html_0184dfa8c557c119b7f04ff50f427873);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c22b75400a3b592106d28271c0358de.bindPopup(popup_24710dcadc518ad6e14a0e4e2b987d06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6fa699e15c0c3b9ff8abf6861067aa04 = L.circleMarker(\\n\",\n       \"                [32.6494, 110.78],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ab15563cde6c87e41e29278a8895df3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b95c06e3eb312ae3f8974db8e9ee619 = $(`&lt;div id=&quot;html_2b95c06e3eb312ae3f8974db8e9ee619&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.78             latitude:32.6494             PM2_5:48.53703704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ab15563cde6c87e41e29278a8895df3.setContent(html_2b95c06e3eb312ae3f8974db8e9ee619);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6fa699e15c0c3b9ff8abf6861067aa04.bindPopup(popup_1ab15563cde6c87e41e29278a8895df3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e93043cbaf2bbd6ea1dc9f955b248e99 = L.circleMarker(\\n\",\n       \"                [39.7294, 98.5023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1a2aff5894d4053fe44b0556347a9dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b2000195c451eba0bd80fb4c406b74c = $(`&lt;div id=&quot;html_8b2000195c451eba0bd80fb4c406b74c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5023             latitude:39.7294             PM2_5:34.2994429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1a2aff5894d4053fe44b0556347a9dd.setContent(html_8b2000195c451eba0bd80fb4c406b74c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e93043cbaf2bbd6ea1dc9f955b248e99.bindPopup(popup_d1a2aff5894d4053fe44b0556347a9dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a99ef4082823070ae9dfff1009ea0dac = L.circleMarker(\\n\",\n       \"                [27.2944, 105.31],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b84e5961e62289ef7863ae4ac8072c8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7fd3d5f6a135d6fc69ae11b93b466b4 = $(`&lt;div id=&quot;html_d7fd3d5f6a135d6fc69ae11b93b466b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.31             latitude:27.2944             PM2_5:31.77094972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b84e5961e62289ef7863ae4ac8072c8a.setContent(html_d7fd3d5f6a135d6fc69ae11b93b466b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a99ef4082823070ae9dfff1009ea0dac.bindPopup(popup_b84e5961e62289ef7863ae4ac8072c8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df7d61849cd430d8820e8b145a86f5c3 = L.circleMarker(\\n\",\n       \"                [21.2706, 110.3539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b809bd3b425a4473dee7314a645a26a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cdce0cc471cc85ca605dcae64800173f = $(`&lt;div id=&quot;html_cdce0cc471cc85ca605dcae64800173f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3539             latitude:21.2706             PM2_5:25.63165266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b809bd3b425a4473dee7314a645a26a7.setContent(html_cdce0cc471cc85ca605dcae64800173f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df7d61849cd430d8820e8b145a86f5c3.bindPopup(popup_b809bd3b425a4473dee7314a645a26a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9aacfb3b7671570d8f0bbba48724416e = L.circleMarker(\\n\",\n       \"                [23.5292, 116.4094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c41416894db7417c169b1951d211d54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d99ec94a38360896d8ed1edebad9d9b = $(`&lt;div id=&quot;html_6d99ec94a38360896d8ed1edebad9d9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.4094             latitude:23.5292             PM2_5:32.23882682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c41416894db7417c169b1951d211d54.setContent(html_6d99ec94a38360896d8ed1edebad9d9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9aacfb3b7671570d8f0bbba48724416e.bindPopup(popup_8c41416894db7417c169b1951d211d54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48f2a7df941adb4c31b4c700cbd1c0f3 = L.circleMarker(\\n\",\n       \"                [42.8939, 129.4892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09d691ea57dfb9f0fec12b7777b5c250 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cec5ada9919306bc06bca6f485173099 = $(`&lt;div id=&quot;html_cec5ada9919306bc06bca6f485173099&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.4892             latitude:42.8939             PM2_5:17.38028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09d691ea57dfb9f0fec12b7777b5c250.setContent(html_cec5ada9919306bc06bca6f485173099);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48f2a7df941adb4c31b4c700cbd1c0f3.bindPopup(popup_09d691ea57dfb9f0fec12b7777b5c250)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_903dc83ce5d4fd604c1723e706283363 = L.circleMarker(\\n\",\n       \"                [40.9843, 117.9525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2dc56a69d51faafd710be750b62772ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a3d428eb42d1c9271867a41bc7d0e9f = $(`&lt;div id=&quot;html_6a3d428eb42d1c9271867a41bc7d0e9f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9525             latitude:40.9843             PM2_5:23.03760446             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2dc56a69d51faafd710be750b62772ed.setContent(html_6a3d428eb42d1c9271867a41bc7d0e9f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_903dc83ce5d4fd604c1723e706283363.bindPopup(popup_2dc56a69d51faafd710be750b62772ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8fa4d654e4e245f959358767063007bb = L.circleMarker(\\n\",\n       \"                [32.5, 80.1161],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ebc466d0cdd50ad3426219952a67311 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3835dced0c7a265f4b4a1024dcdf270 = $(`&lt;div id=&quot;html_e3835dced0c7a265f4b4a1024dcdf270&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.1161             latitude:32.5             PM2_5:16.11726384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ebc466d0cdd50ad3426219952a67311.setContent(html_e3835dced0c7a265f4b4a1024dcdf270);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8fa4d654e4e245f959358767063007bb.bindPopup(popup_9ebc466d0cdd50ad3426219952a67311)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1440753b0731a348bb9e533fdf7ed00f = L.circleMarker(\\n\",\n       \"                [34.1978, 108.985],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0662b1451ddc76513cc1671a5558367 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1cf9ae6861557bef4409089bcc96307 = $(`&lt;div id=&quot;html_c1cf9ae6861557bef4409089bcc96307&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.985             latitude:34.1978             PM2_5:65.46175637             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0662b1451ddc76513cc1671a5558367.setContent(html_c1cf9ae6861557bef4409089bcc96307);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1440753b0731a348bb9e533fdf7ed00f.bindPopup(popup_f0662b1451ddc76513cc1671a5558367)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4e7720885ff2a0b5f50d327867f5e9a = L.circleMarker(\\n\",\n       \"                [36.7019, 119.12],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74f0d20943a155e9fc1c9800dd47a6fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_810b1384fae30a2f1b0f66c664c16dbe = $(`&lt;div id=&quot;html_810b1384fae30a2f1b0f66c664c16dbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.12             latitude:36.7019             PM2_5:46.91504178             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74f0d20943a155e9fc1c9800dd47a6fc.setContent(html_810b1384fae30a2f1b0f66c664c16dbe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4e7720885ff2a0b5f50d327867f5e9a.bindPopup(popup_74f0d20943a155e9fc1c9800dd47a6fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30ae24e7be1b7ef8461180d33049fe2f = L.circleMarker(\\n\",\n       \"                [43.8748, 125.3649],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_969290f0180aff6ee5257679c8940327 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39a10b554983e0a20268c4124ee86abc = $(`&lt;div id=&quot;html_39a10b554983e0a20268c4124ee86abc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.3649             latitude:43.8748             PM2_5:29.41114458             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_969290f0180aff6ee5257679c8940327.setContent(html_39a10b554983e0a20268c4124ee86abc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30ae24e7be1b7ef8461180d33049fe2f.bindPopup(popup_969290f0180aff6ee5257679c8940327)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_352d90e76f5a0d8a50e2d3bedf7e9ad8 = L.circleMarker(\\n\",\n       \"                [43.6156, 122.3039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e0933fd9cab0d9db4617653b419e5ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05486809cae95fe9eca84ec4cacc7b29 = $(`&lt;div id=&quot;html_05486809cae95fe9eca84ec4cacc7b29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.3039             latitude:43.6156             PM2_5:22.00710227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e0933fd9cab0d9db4617653b419e5ca.setContent(html_05486809cae95fe9eca84ec4cacc7b29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_352d90e76f5a0d8a50e2d3bedf7e9ad8.bindPopup(popup_9e0933fd9cab0d9db4617653b419e5ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4f19406182359c1f2ff8de7ce887024 = L.circleMarker(\\n\",\n       \"                [36.5819, 101.834],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_041583024c326bf32c781732ccaaacf5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0834b57d723dfe0658fcca0ec6bb2223 = $(`&lt;div id=&quot;html_0834b57d723dfe0658fcca0ec6bb2223&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.834             latitude:36.5819             PM2_5:64.51694915             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_041583024c326bf32c781732ccaaacf5.setContent(html_0834b57d723dfe0658fcca0ec6bb2223);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4f19406182359c1f2ff8de7ce887024.bindPopup(popup_041583024c326bf32c781732ccaaacf5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb1c49696e9ceb50487cb5e079e2bb30 = L.circleMarker(\\n\",\n       \"                [37.43445, 118.696],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ff637060f1204c063ae9fff0b5dbc6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b0e6d85c170f890deeaaef8d0a34885 = $(`&lt;div id=&quot;html_8b0e6d85c170f890deeaaef8d0a34885&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.696             latitude:37.43445             PM2_5:50.83479532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ff637060f1204c063ae9fff0b5dbc6e.setContent(html_8b0e6d85c170f890deeaaef8d0a34885);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb1c49696e9ceb50487cb5e079e2bb30.bindPopup(popup_5ff637060f1204c063ae9fff0b5dbc6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ecefb3b9fe79ecae362f18738ec7d890 = L.circleMarker(\\n\",\n       \"                [29.5822, 105.0406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3502578ca9562200bf216ac7010567b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2658608cce224f293f59d7f31aa90a0a = $(`&lt;div id=&quot;html_2658608cce224f293f59d7f31aa90a0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0406             latitude:29.5822             PM2_5:34.67746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3502578ca9562200bf216ac7010567b6.setContent(html_2658608cce224f293f59d7f31aa90a0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ecefb3b9fe79ecae362f18738ec7d890.bindPopup(popup_3502578ca9562200bf216ac7010567b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb12628a17e4c5893229bda69f24aea1 = L.circleMarker(\\n\",\n       \"                [25.0311, 117.0151],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0b1814c79c74f060b25233d6f5a25d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7fed88c422169e145e97a2c99fe010e = $(`&lt;div id=&quot;html_f7fed88c422169e145e97a2c99fe010e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0151             latitude:25.0311             PM2_5:21.51805556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0b1814c79c74f060b25233d6f5a25d4.setContent(html_f7fed88c422169e145e97a2c99fe010e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb12628a17e4c5893229bda69f24aea1.bindPopup(popup_c0b1814c79c74f060b25233d6f5a25d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8a00b985ef54c2a3427661d121729b8 = L.circleMarker(\\n\",\n       \"                [34.3739, 107.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_730857325c610da29fa341748c3d148b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_990223bba800208b7826fea2db889f03 = $(`&lt;div id=&quot;html_990223bba800208b7826fea2db889f03&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1186             latitude:34.3739             PM2_5:48.6103352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_730857325c610da29fa341748c3d148b.setContent(html_990223bba800208b7826fea2db889f03);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8a00b985ef54c2a3427661d121729b8.bindPopup(popup_730857325c610da29fa341748c3d148b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ed40956fa059bf5f395a4872a6768c4 = L.circleMarker(\\n\",\n       \"                [37.4514, 105.0197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d831b1a68476ddb052fd9c2224c85b52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06900263976cfe70525876bc1ebbdd00 = $(`&lt;div id=&quot;html_06900263976cfe70525876bc1ebbdd00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0197             latitude:37.4514             PM2_5:32.86182336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d831b1a68476ddb052fd9c2224c85b52.setContent(html_06900263976cfe70525876bc1ebbdd00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ed40956fa059bf5f395a4872a6768c4.bindPopup(popup_d831b1a68476ddb052fd9c2224c85b52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71cf922d0388bb6736e6176aede9cb1f = L.circleMarker(\\n\",\n       \"                [36.6525, 119.1638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fed22362ef96fb22adb9063ab1c3927e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5c3c89f759ebfd6287a0785aac4a01c = $(`&lt;div id=&quot;html_d5c3c89f759ebfd6287a0785aac4a01c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1638             latitude:36.6525             PM2_5:45.55665722             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fed22362ef96fb22adb9063ab1c3927e.setContent(html_d5c3c89f759ebfd6287a0785aac4a01c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71cf922d0388bb6736e6176aede9cb1f.bindPopup(popup_fed22362ef96fb22adb9063ab1c3927e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74bf9f515dc1eb2ecac72f04ff04acbd = L.circleMarker(\\n\",\n       \"                [31.3839, 118.4022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f31bce665dc22d23d211d78eb68efac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36a5140d2c8a77d5c3bac555435ea1fd = $(`&lt;div id=&quot;html_36a5140d2c8a77d5c3bac555435ea1fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4022             latitude:31.3839             PM2_5:48.11772853             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f31bce665dc22d23d211d78eb68efac.setContent(html_36a5140d2c8a77d5c3bac555435ea1fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74bf9f515dc1eb2ecac72f04ff04acbd.bindPopup(popup_5f31bce665dc22d23d211d78eb68efac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bbfe72ed7ebfd775780dfae55d49da85 = L.circleMarker(\\n\",\n       \"                [34.5021, 109.4266],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c65fd44cbe8041243cc3599a0192d72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_acd7f915ed398268db4bd60b47ed84b9 = $(`&lt;div id=&quot;html_acd7f915ed398268db4bd60b47ed84b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4266             latitude:34.5021             PM2_5:61.24373259             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c65fd44cbe8041243cc3599a0192d72.setContent(html_acd7f915ed398268db4bd60b47ed84b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bbfe72ed7ebfd775780dfae55d49da85.bindPopup(popup_3c65fd44cbe8041243cc3599a0192d72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4cec922a0c98468a97440504db616d82 = L.circleMarker(\\n\",\n       \"                [31.7386, 117.278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4250edee554d27e712812940931d07ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab3bf17b14f64bf2bfaa12bd31ff4138 = $(`&lt;div id=&quot;html_ab3bf17b14f64bf2bfaa12bd31ff4138&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.278             latitude:31.7386             PM2_5:49.27824859             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4250edee554d27e712812940931d07ff.setContent(html_ab3bf17b14f64bf2bfaa12bd31ff4138);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4cec922a0c98468a97440504db616d82.bindPopup(popup_4250edee554d27e712812940931d07ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7fa723c41082130d9d395ac04f233550 = L.circleMarker(\\n\",\n       \"                [26.9258, 112.6194],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db01725935282c3705e9f71fe357b24c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47418a7b1a165c2cbf4448b30be6368b = $(`&lt;div id=&quot;html_47418a7b1a165c2cbf4448b30be6368b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6194             latitude:26.9258             PM2_5:41.8531856             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db01725935282c3705e9f71fe357b24c.setContent(html_47418a7b1a165c2cbf4448b30be6368b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7fa723c41082130d9d395ac04f233550.bindPopup(popup_db01725935282c3705e9f71fe357b24c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2776cf808620e748bf5d64305f26483 = L.circleMarker(\\n\",\n       \"                [36.0464, 103.831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be396a858ae1872db5e957e85e6a34b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56c52d7eabdf21a15f8fe4acc908a26b = $(`&lt;div id=&quot;html_56c52d7eabdf21a15f8fe4acc908a26b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.831             latitude:36.0464             PM2_5:55.54131054             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be396a858ae1872db5e957e85e6a34b3.setContent(html_56c52d7eabdf21a15f8fe4acc908a26b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2776cf808620e748bf5d64305f26483.bindPopup(popup_be396a858ae1872db5e957e85e6a34b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee1976ab5c03fcf17fc2c894ef9232bf = L.circleMarker(\\n\",\n       \"                [26.6607, 119.5202],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c239559cf46c88c59383b589f6c7dce5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af872599eed708def42d0cdbe5f293ce = $(`&lt;div id=&quot;html_af872599eed708def42d0cdbe5f293ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5202             latitude:26.6607             PM2_5:32.12569832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c239559cf46c88c59383b589f6c7dce5.setContent(html_af872599eed708def42d0cdbe5f293ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee1976ab5c03fcf17fc2c894ef9232bf.bindPopup(popup_c239559cf46c88c59383b589f6c7dce5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f00f9236e947b5544c6c6eb482273e12 = L.circleMarker(\\n\",\n       \"                [27.8403, 112.9118],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_488cc8e91462e795ad34bb7e437e83da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec68b4a82edba4c7558a86c725726659 = $(`&lt;div id=&quot;html_ec68b4a82edba4c7558a86c725726659&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9118             latitude:27.8403             PM2_5:48.11731844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_488cc8e91462e795ad34bb7e437e83da.setContent(html_ec68b4a82edba4c7558a86c725726659);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f00f9236e947b5544c6c6eb482273e12.bindPopup(popup_488cc8e91462e795ad34bb7e437e83da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be0e96ce2da472dd4c9dfe8d75733893 = L.circleMarker(\\n\",\n       \"                [35.7306, 114.2878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_874fbeee776bbb4647e72833e41727c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c8a6dab9807848038f2ba65436de0ea = $(`&lt;div id=&quot;html_8c8a6dab9807848038f2ba65436de0ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2878             latitude:35.7306             PM2_5:52.82686981             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_874fbeee776bbb4647e72833e41727c6.setContent(html_8c8a6dab9807848038f2ba65436de0ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be0e96ce2da472dd4c9dfe8d75733893.bindPopup(popup_874fbeee776bbb4647e72833e41727c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ebbc2419d0c24c18bdfe9f862f72c6ab = L.circleMarker(\\n\",\n       \"                [34.6258, 112.4275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56f4174091c200177e306c4edb6523bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c7ff0c35dc897c7c0330b9ab8c3099b = $(`&lt;div id=&quot;html_3c7ff0c35dc897c7c0330b9ab8c3099b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4275             latitude:34.6258             PM2_5:63.49719888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56f4174091c200177e306c4edb6523bc.setContent(html_3c7ff0c35dc897c7c0330b9ab8c3099b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ebbc2419d0c24c18bdfe9f862f72c6ab.bindPopup(popup_56f4174091c200177e306c4edb6523bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_383e91807c7d98a769c1ca99839c6248 = L.circleMarker(\\n\",\n       \"                [35.767, 115.0772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a01504d3e9dcb051bbe41f473ad69a4e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_add9fe97dfd98dfa363ec8bd4f69e120 = $(`&lt;div id=&quot;html_add9fe97dfd98dfa363ec8bd4f69e120&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0772             latitude:35.767             PM2_5:57.44803371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a01504d3e9dcb051bbe41f473ad69a4e.setContent(html_add9fe97dfd98dfa363ec8bd4f69e120);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_383e91807c7d98a769c1ca99839c6248.bindPopup(popup_a01504d3e9dcb051bbe41f473ad69a4e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a394216198c3743a22e75da07d4f2c75 = L.circleMarker(\\n\",\n       \"                [22.5545, 114.1063],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef9c8bf332c715500d2268c384be5700 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_32cb1bd3bf8a29f1c29333ca137a86e2 = $(`&lt;div id=&quot;html_32cb1bd3bf8a29f1c29333ca137a86e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1063             latitude:22.5545             PM2_5:27.20926966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef9c8bf332c715500d2268c384be5700.setContent(html_32cb1bd3bf8a29f1c29333ca137a86e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a394216198c3743a22e75da07d4f2c75.bindPopup(popup_ef9c8bf332c715500d2268c384be5700)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5909a1a55069cbea2fa444c93f5b16d2 = L.circleMarker(\\n\",\n       \"                [32.9917, 112.5192],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_317067e29e727dfb11560e40f5ebe0e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e7d78e46261431607bc03f43ef3b3c4 = $(`&lt;div id=&quot;html_9e7d78e46261431607bc03f43ef3b3c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5192             latitude:32.9917             PM2_5:62.29189944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_317067e29e727dfb11560e40f5ebe0e4.setContent(html_9e7d78e46261431607bc03f43ef3b3c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5909a1a55069cbea2fa444c93f5b16d2.bindPopup(popup_317067e29e727dfb11560e40f5ebe0e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7dfedbe69cc65e65a9b5bd0857a7aef6 = L.circleMarker(\\n\",\n       \"                [23.3993, 103.3772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c9848ff1a28d837030ecaccdeb23e28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d533ab1de6d5571305ad525731b9fdb = $(`&lt;div id=&quot;html_6d533ab1de6d5571305ad525731b9fdb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.3772             latitude:23.3993             PM2_5:26.65198864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c9848ff1a28d837030ecaccdeb23e28.setContent(html_6d533ab1de6d5571305ad525731b9fdb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7dfedbe69cc65e65a9b5bd0857a7aef6.bindPopup(popup_0c9848ff1a28d837030ecaccdeb23e28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8821869ad82291597f856570eb237c3a = L.circleMarker(\\n\",\n       \"                [23.2775, 116.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63d9b0bbbc3532d0c4efcf9a7ec6b31c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca7707717be9f687c4d59c1b63de722b = $(`&lt;div id=&quot;html_ca7707717be9f687c4d59c1b63de722b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7258             latitude:23.2775             PM2_5:21.45567867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63d9b0bbbc3532d0c4efcf9a7ec6b31c.setContent(html_ca7707717be9f687c4d59c1b63de722b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8821869ad82291597f856570eb237c3a.bindPopup(popup_63d9b0bbbc3532d0c4efcf9a7ec6b31c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a5dcb7f83470c3bb881cb6f5faf2ee8 = L.circleMarker(\\n\",\n       \"                [39.8129, 110.0023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce05121bf69e8cd4731260ebd357b2d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6195968c410ad8e328ff60ad1c38b46e = $(`&lt;div id=&quot;html_6195968c410ad8e328ff60ad1c38b46e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0023             latitude:39.8129             PM2_5:27.22957746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce05121bf69e8cd4731260ebd357b2d5.setContent(html_6195968c410ad8e328ff60ad1c38b46e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a5dcb7f83470c3bb881cb6f5faf2ee8.bindPopup(popup_ce05121bf69e8cd4731260ebd357b2d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88245ba2da0cdbf7177176fe77d334d5 = L.circleMarker(\\n\",\n       \"                [23.0916, 113.348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6583434533cf54ff348e2fe2699accf1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c455853f9a1abf394e43f6dcce846c4f = $(`&lt;div id=&quot;html_c455853f9a1abf394e43f6dcce846c4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.348             latitude:23.0916             PM2_5:31.47632312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6583434533cf54ff348e2fe2699accf1.setContent(html_c455853f9a1abf394e43f6dcce846c4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88245ba2da0cdbf7177176fe77d334d5.bindPopup(popup_6583434533cf54ff348e2fe2699accf1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1404cbb38a05557d81036df58261b70 = L.circleMarker(\\n\",\n       \"                [24.8885, 102.821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6165f4e68c7b668c0e5ef2cff84ccc5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76eaa41083f8e93728d398cea927c83d = $(`&lt;div id=&quot;html_76eaa41083f8e93728d398cea927c83d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.821             latitude:24.8885             PM2_5:22.06388889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6165f4e68c7b668c0e5ef2cff84ccc5f.setContent(html_76eaa41083f8e93728d398cea927c83d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1404cbb38a05557d81036df58261b70.bindPopup(popup_6165f4e68c7b668c0e5ef2cff84ccc5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63808c011c97fdfdf422bf34aa37eb33 = L.circleMarker(\\n\",\n       \"                [47.203, 123.6261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_023e5f52289eb2f5bdaa203a699d73d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_954d2b375172dedbcae79f8b09627dda = $(`&lt;div id=&quot;html_954d2b375172dedbcae79f8b09627dda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.6261             latitude:47.203             PM2_5:26.81497175             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_023e5f52289eb2f5bdaa203a699d73d9.setContent(html_954d2b375172dedbcae79f8b09627dda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63808c011c97fdfdf422bf34aa37eb33.bindPopup(popup_023e5f52289eb2f5bdaa203a699d73d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7521e0f19e766adc21063b712bee7526 = L.circleMarker(\\n\",\n       \"                [34.3731, 109.2186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35d85fa56c99ed4ffb5594dd4c36b227 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c24fed1b4f38fe937e8e3cf1d2ff0a8 = $(`&lt;div id=&quot;html_2c24fed1b4f38fe937e8e3cf1d2ff0a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2186             latitude:34.3731             PM2_5:59.05270655             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35d85fa56c99ed4ffb5594dd4c36b227.setContent(html_2c24fed1b4f38fe937e8e3cf1d2ff0a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7521e0f19e766adc21063b712bee7526.bindPopup(popup_35d85fa56c99ed4ffb5594dd4c36b227)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b9f898f369f9ef6cb961ca966f9c58c = L.circleMarker(\\n\",\n       \"                [40.5905, 110.0067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db38664c0e11cefdf76ba07e5ab35bdf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fff375a48006ea9efaa001b489514f99 = $(`&lt;div id=&quot;html_fff375a48006ea9efaa001b489514f99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0067             latitude:40.5905             PM2_5:45.84818942             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db38664c0e11cefdf76ba07e5ab35bdf.setContent(html_fff375a48006ea9efaa001b489514f99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b9f898f369f9ef6cb961ca966f9c58c.bindPopup(popup_db38664c0e11cefdf76ba07e5ab35bdf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d0fe2cb36ddfed2924a69d3754e5b49 = L.circleMarker(\\n\",\n       \"                [37.3753, 97.3731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9fe8b006565cc809912706d5f561667 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a0484ed96da00dcdf7ebab1338a400f = $(`&lt;div id=&quot;html_6a0484ed96da00dcdf7ebab1338a400f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.3731             latitude:37.3753             PM2_5:28.27777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9fe8b006565cc809912706d5f561667.setContent(html_6a0484ed96da00dcdf7ebab1338a400f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d0fe2cb36ddfed2924a69d3754e5b49.bindPopup(popup_f9fe8b006565cc809912706d5f561667)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8357c78f88ca3a0be425c8bbefab1f94 = L.circleMarker(\\n\",\n       \"                [28.6047, 112.3347],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf9bb702eab177a77bce757dbb6df932 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0dc6fb1b6f3728f060ea7ab22dbfd7d6 = $(`&lt;div id=&quot;html_0dc6fb1b6f3728f060ea7ab22dbfd7d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3347             latitude:28.6047             PM2_5:29.37283237             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf9bb702eab177a77bce757dbb6df932.setContent(html_0dc6fb1b6f3728f060ea7ab22dbfd7d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8357c78f88ca3a0be425c8bbefab1f94.bindPopup(popup_cf9bb702eab177a77bce757dbb6df932)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_297551a0ce3183bc6d84b307347961a0 = L.circleMarker(\\n\",\n       \"                [31.0935, 120.978],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_460fa193c5b09e68aa22f7898326c552 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea627e64717f5ad51402fce499e5f626 = $(`&lt;div id=&quot;html_ea627e64717f5ad51402fce499e5f626&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.978             latitude:31.0935             PM2_5:48.90921788             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_460fa193c5b09e68aa22f7898326c552.setContent(html_ea627e64717f5ad51402fce499e5f626);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_297551a0ce3183bc6d84b307347961a0.bindPopup(popup_460fa193c5b09e68aa22f7898326c552)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_254b3cab6c9f1b986269cf94acdf0d3c = L.circleMarker(\\n\",\n       \"                [38.49494, 106.1024],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_600d737fbd8bddcd47483bac223def97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b1726a1bf77b58155801d5ef848ab8e = $(`&lt;div id=&quot;html_3b1726a1bf77b58155801d5ef848ab8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1024             latitude:38.49494             PM2_5:53.02661064             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_600d737fbd8bddcd47483bac223def97.setContent(html_3b1726a1bf77b58155801d5ef848ab8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_254b3cab6c9f1b986269cf94acdf0d3c.bindPopup(popup_600d737fbd8bddcd47483bac223def97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_844137582d2294672dbfb1ab0d013df5 = L.circleMarker(\\n\",\n       \"                [37.062, 114.4854],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf1541989710b1a721b00bfdd6f5629a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_edfc1e04138dfbfd871a365d9ae59310 = $(`&lt;div id=&quot;html_edfc1e04138dfbfd871a365d9ae59310&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4854             latitude:37.062             PM2_5:68.37955182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf1541989710b1a721b00bfdd6f5629a.setContent(html_edfc1e04138dfbfd871a365d9ae59310);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_844137582d2294672dbfb1ab0d013df5.bindPopup(popup_bf1541989710b1a721b00bfdd6f5629a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_393cd9040b02ebf81b54abd8b332e908 = L.circleMarker(\\n\",\n       \"                [36.6114, 116.988],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3eedc9a58223dcaccd840479d695c709 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d9bf94b91a8b5a5ae93929ec474631a = $(`&lt;div id=&quot;html_5d9bf94b91a8b5a5ae93929ec474631a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.988             latitude:36.6114             PM2_5:53.2592068             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3eedc9a58223dcaccd840479d695c709.setContent(html_5d9bf94b91a8b5a5ae93929ec474631a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_393cd9040b02ebf81b54abd8b332e908.bindPopup(popup_3eedc9a58223dcaccd840479d695c709)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7181bc953f7ca36ddd87aa73d9dab4b = L.circleMarker(\\n\",\n       \"                [36.865, 120.537],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_430e44f9a4c59957f5165d0cfca84b86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54a394b89819a49f6afea8f48ef76321 = $(`&lt;div id=&quot;html_54a394b89819a49f6afea8f48ef76321&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.537             latitude:36.865             PM2_5:33.85582822             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_430e44f9a4c59957f5165d0cfca84b86.setContent(html_54a394b89819a49f6afea8f48ef76321);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7181bc953f7ca36ddd87aa73d9dab4b.bindPopup(popup_430e44f9a4c59957f5165d0cfca84b86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a737e4a71f1d5e6f78d7aa0f02a602d9 = L.circleMarker(\\n\",\n       \"                [44.5952, 129.5902],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0b532f3b14d2b12c0ba3ebbcf9c20e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fc051c8532225b94dc6e97d70516757 = $(`&lt;div id=&quot;html_2fc051c8532225b94dc6e97d70516757&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.5902             latitude:44.5952             PM2_5:22.29411765             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0b532f3b14d2b12c0ba3ebbcf9c20e3.setContent(html_2fc051c8532225b94dc6e97d70516757);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a737e4a71f1d5e6f78d7aa0f02a602d9.bindPopup(popup_f0b532f3b14d2b12c0ba3ebbcf9c20e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1938f9b372422dcf7bd70690583cc3c9 = L.circleMarker(\\n\",\n       \"                [29.1389, 110.48],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ebcefb0f749e8b936e0c4c4f000b6e5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a720745c24bb000ac3d3019450e6f6bb = $(`&lt;div id=&quot;html_a720745c24bb000ac3d3019450e6f6bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.48             latitude:29.1389             PM2_5:45.04469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ebcefb0f749e8b936e0c4c4f000b6e5a.setContent(html_a720745c24bb000ac3d3019450e6f6bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1938f9b372422dcf7bd70690583cc3c9.bindPopup(popup_ebcefb0f749e8b936e0c4c4f000b6e5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4323a3809ce24a68a08794801d3271ac = L.circleMarker(\\n\",\n       \"                [27.7231, 109.1794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08fa377b42467d3c6eb92a38ac0723e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_662d10d71a9fa11f1137cf761d8b5547 = $(`&lt;div id=&quot;html_662d10d71a9fa11f1137cf761d8b5547&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.1794             latitude:27.7231             PM2_5:29.31284916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08fa377b42467d3c6eb92a38ac0723e5.setContent(html_662d10d71a9fa11f1137cf761d8b5547);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4323a3809ce24a68a08794801d3271ac.bindPopup(popup_08fa377b42467d3c6eb92a38ac0723e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83936afe48b9d51eba770bddec9e5930 = L.circleMarker(\\n\",\n       \"                [25.0925, 104.9022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_175c6a5ed4c3c1532b2df1905ef58ddd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a0d1a8b9eeb3389d5ab2be512e10c69 = $(`&lt;div id=&quot;html_0a0d1a8b9eeb3389d5ab2be512e10c69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9022             latitude:25.0925             PM2_5:16.9625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_175c6a5ed4c3c1532b2df1905ef58ddd.setContent(html_0a0d1a8b9eeb3389d5ab2be512e10c69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83936afe48b9d51eba770bddec9e5930.bindPopup(popup_175c6a5ed4c3c1532b2df1905ef58ddd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_472b3cf7c966af346880be7d3e5bc944 = L.circleMarker(\\n\",\n       \"                [29.5817, 105.0653],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79f30a7570f2840e7935b1326da4e9a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fae9a83e2d3f2cbef3c9c4bf90f7221d = $(`&lt;div id=&quot;html_fae9a83e2d3f2cbef3c9c4bf90f7221d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0653             latitude:29.5817             PM2_5:37.25698324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79f30a7570f2840e7935b1326da4e9a2.setContent(html_fae9a83e2d3f2cbef3c9c4bf90f7221d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_472b3cf7c966af346880be7d3e5bc944.bindPopup(popup_79f30a7570f2840e7935b1326da4e9a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f557e85f9dd1cb2770838aa16795056 = L.circleMarker(\\n\",\n       \"                [26.3003, 106.805],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea9a80faf8b8335c573086edfcd8b9d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7417bb74ec9986f198ad7ab61d160095 = $(`&lt;div id=&quot;html_7417bb74ec9986f198ad7ab61d160095&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.805             latitude:26.3003             PM2_5:34.97844828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea9a80faf8b8335c573086edfcd8b9d8.setContent(html_7417bb74ec9986f198ad7ab61d160095);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f557e85f9dd1cb2770838aa16795056.bindPopup(popup_ea9a80faf8b8335c573086edfcd8b9d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adfa6ce6cf8117f1352bdbd1a75ca916 = L.circleMarker(\\n\",\n       \"                [31.8766, 117.307],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af07b0b612d2edea4f7f450aa9147f0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a76a025b1fb6065e76b70ed65e3b3686 = $(`&lt;div id=&quot;html_a76a025b1fb6065e76b70ed65e3b3686&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.307             latitude:31.8766             PM2_5:51.31754875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af07b0b612d2edea4f7f450aa9147f0f.setContent(html_a76a025b1fb6065e76b70ed65e3b3686);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adfa6ce6cf8117f1352bdbd1a75ca916.bindPopup(popup_af07b0b612d2edea4f7f450aa9147f0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1121855b2b8f66601ba38dde2d665fab = L.circleMarker(\\n\",\n       \"                [42.8328, 93.4961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7d42232a5e7880de5821660aece7bf5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42a027d83007b157b7116ec2caf320aa = $(`&lt;div id=&quot;html_42a027d83007b157b7116ec2caf320aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:93.4961             latitude:42.8328             PM2_5:32.6103352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7d42232a5e7880de5821660aece7bf5.setContent(html_42a027d83007b157b7116ec2caf320aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1121855b2b8f66601ba38dde2d665fab.bindPopup(popup_c7d42232a5e7880de5821660aece7bf5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab628fc7d7e6cc3d61b22ed44317d4a3 = L.circleMarker(\\n\",\n       \"                [23.475, 111.3178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3fc644c19f474db954f0af4c0e4d3f91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3bbfa825039d26739aa15d83afbb6e4 = $(`&lt;div id=&quot;html_c3bbfa825039d26739aa15d83afbb6e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3178             latitude:23.475             PM2_5:36.53910615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3fc644c19f474db954f0af4c0e4d3f91.setContent(html_c3bbfa825039d26739aa15d83afbb6e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab628fc7d7e6cc3d61b22ed44317d4a3.bindPopup(popup_3fc644c19f474db954f0af4c0e4d3f91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d58c28874eb947e96160186f38c36459 = L.circleMarker(\\n\",\n       \"                [36.8088, 118.0482],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d29e2b9eb2754140a47cd8107a7dc39a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_441097fe8909d69e14743cfc7faa2900 = $(`&lt;div id=&quot;html_441097fe8909d69e14743cfc7faa2900&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0482             latitude:36.8088             PM2_5:53.3245614             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d29e2b9eb2754140a47cd8107a7dc39a.setContent(html_441097fe8909d69e14743cfc7faa2900);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d58c28874eb947e96160186f38c36459.bindPopup(popup_d29e2b9eb2754140a47cd8107a7dc39a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_382c5beb0d228178f1a484b0877c5168 = L.circleMarker(\\n\",\n       \"                [23.105, 113.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a03398f68f27944bb2ecec2c926c502d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c2a80f9466da22dedf30fa27798c1e3 = $(`&lt;div id=&quot;html_8c2a80f9466da22dedf30fa27798c1e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.261             latitude:23.105             PM2_5:35.15502793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a03398f68f27944bb2ecec2c926c502d.setContent(html_8c2a80f9466da22dedf30fa27798c1e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_382c5beb0d228178f1a484b0877c5168.bindPopup(popup_a03398f68f27944bb2ecec2c926c502d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e48940c262837c2862b9f8b9d2d0a72 = L.circleMarker(\\n\",\n       \"                [26.8956, 112.6211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2bb87590aa432eb7430b8ed926625c2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_564e49bd3e4643c9fbbe7c65158a8b6a = $(`&lt;div id=&quot;html_564e49bd3e4643c9fbbe7c65158a8b6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6211             latitude:26.8956             PM2_5:41.88227147             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2bb87590aa432eb7430b8ed926625c2a.setContent(html_564e49bd3e4643c9fbbe7c65158a8b6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e48940c262837c2862b9f8b9d2d0a72.bindPopup(popup_2bb87590aa432eb7430b8ed926625c2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a8a814dda6219ce2f32580c1564e85e = L.circleMarker(\\n\",\n       \"                [28.19, 112.9394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bdc2804ab5574247d6934c419639dfc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6ed570cde58f8751983de186107754a = $(`&lt;div id=&quot;html_f6ed570cde58f8751983de186107754a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9394             latitude:28.19             PM2_5:52.06601124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bdc2804ab5574247d6934c419639dfc.setContent(html_f6ed570cde58f8751983de186107754a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a8a814dda6219ce2f32580c1564e85e.bindPopup(popup_7bdc2804ab5574247d6934c419639dfc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92bb256868cf8cc7e5ef9bc80b1b2e30 = L.circleMarker(\\n\",\n       \"                [47.2988, 123.945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_380dd16b296bb8ad0a0ee9175b51688a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9568c18750f96cc48f81b888794174c = $(`&lt;div id=&quot;html_f9568c18750f96cc48f81b888794174c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.945             latitude:47.2988             PM2_5:34.6183844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_380dd16b296bb8ad0a0ee9175b51688a.setContent(html_f9568c18750f96cc48f81b888794174c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92bb256868cf8cc7e5ef9bc80b1b2e30.bindPopup(popup_380dd16b296bb8ad0a0ee9175b51688a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc4fdf6ca5bd72935258cefc265b071c = L.circleMarker(\\n\",\n       \"                [29.6535, 116.0174],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a32eb69d77aba9d84493d3bdefa6b225 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c7c6318b2e7467ddc7a9241862f8c48 = $(`&lt;div id=&quot;html_1c7c6318b2e7467ddc7a9241862f8c48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0174             latitude:29.6535             PM2_5:37.94428969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a32eb69d77aba9d84493d3bdefa6b225.setContent(html_1c7c6318b2e7467ddc7a9241862f8c48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc4fdf6ca5bd72935258cefc265b071c.bindPopup(popup_a32eb69d77aba9d84493d3bdefa6b225)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69430674646ed3f73a6dc67bc1cff9e9 = L.circleMarker(\\n\",\n       \"                [30.9697, 117.8472],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8391f51e97b1c713ae484d61bfc281e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cce923c0628dbddaeefcf30b937912b2 = $(`&lt;div id=&quot;html_cce923c0628dbddaeefcf30b937912b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8472             latitude:30.9697             PM2_5:53.95621469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8391f51e97b1c713ae484d61bfc281e.setContent(html_cce923c0628dbddaeefcf30b937912b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69430674646ed3f73a6dc67bc1cff9e9.bindPopup(popup_d8391f51e97b1c713ae484d61bfc281e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e870375ea4eb6f1aab301adbfb2af095 = L.circleMarker(\\n\",\n       \"                [34.3622, 107.2386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c74e46c2fe9061feb742def763d611c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d956c74410fbbf9087fafd228c9fad7 = $(`&lt;div id=&quot;html_7d956c74410fbbf9087fafd228c9fad7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.2386             latitude:34.3622             PM2_5:50.03760446             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c74e46c2fe9061feb742def763d611c.setContent(html_7d956c74410fbbf9087fafd228c9fad7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e870375ea4eb6f1aab301adbfb2af095.bindPopup(popup_8c74e46c2fe9061feb742def763d611c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6b3ea3801d4d53a33baf854c0051cbb = L.circleMarker(\\n\",\n       \"                [30.2747, 120.063],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f49b63bb40604e736f188c1cb2240c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f77a64681089d9574581c88ed1ed844a = $(`&lt;div id=&quot;html_f77a64681089d9574581c88ed1ed844a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.063             latitude:30.2747             PM2_5:37.63788301             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f49b63bb40604e736f188c1cb2240c2.setContent(html_f77a64681089d9574581c88ed1ed844a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6b3ea3801d4d53a33baf854c0051cbb.bindPopup(popup_3f49b63bb40604e736f188c1cb2240c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ba952e9aaa538c41fdc9cacf182f799 = L.circleMarker(\\n\",\n       \"                [30.2756, 118.1371],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec0f17441bd29c7b6c5b5ef28b724193 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ff3f749702061c5b5b785975feb3807 = $(`&lt;div id=&quot;html_8ff3f749702061c5b5b785975feb3807&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1371             latitude:30.2756             PM2_5:23.8575419             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec0f17441bd29c7b6c5b5ef28b724193.setContent(html_8ff3f749702061c5b5b785975feb3807);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ba952e9aaa538c41fdc9cacf182f799.bindPopup(popup_ec0f17441bd29c7b6c5b5ef28b724193)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0bae54513524fb3c40ef6f4f8dc961f5 = L.circleMarker(\\n\",\n       \"                [33.627, 119.0122],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff0a7464894907f8097bf6d4fcf891c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17a1f1821841bab687cca0639951bbcf = $(`&lt;div id=&quot;html_17a1f1821841bab687cca0639951bbcf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0122             latitude:33.627             PM2_5:49.44707521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff0a7464894907f8097bf6d4fcf891c8.setContent(html_17a1f1821841bab687cca0639951bbcf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0bae54513524fb3c40ef6f4f8dc961f5.bindPopup(popup_ff0a7464894907f8097bf6d4fcf891c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1aa827a13994795b8c036a39614774f0 = L.circleMarker(\\n\",\n       \"                [23.1617, 112.565],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bc30fcac8d13d7bc21883972d762b64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0e643252bb5edc7d269a9696e11e188 = $(`&lt;div id=&quot;html_c0e643252bb5edc7d269a9696e11e188&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.565             latitude:23.1617             PM2_5:39.39495798             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bc30fcac8d13d7bc21883972d762b64.setContent(html_c0e643252bb5edc7d269a9696e11e188);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1aa827a13994795b8c036a39614774f0.bindPopup(popup_0bc30fcac8d13d7bc21883972d762b64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f4d023a82c39f146043590d5fb4326c = L.circleMarker(\\n\",\n       \"                [37.374, 120.399],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0b87c5e17687bb91affb3f8c1a50ad4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46c6613a87159df62c1d1a90742d8aef = $(`&lt;div id=&quot;html_46c6613a87159df62c1d1a90742d8aef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.399             latitude:37.374             PM2_5:28.94929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0b87c5e17687bb91affb3f8c1a50ad4.setContent(html_46c6613a87159df62c1d1a90742d8aef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f4d023a82c39f146043590d5fb4326c.bindPopup(popup_e0b87c5e17687bb91affb3f8c1a50ad4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f78a2a1c4a3bdb9d1a4ed37485f9dcca = L.circleMarker(\\n\",\n       \"                [40.1097, 113.3819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05ce84a75f83461f32458b9694f48e3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b15a2267a7e740371aab3c65ae6149c = $(`&lt;div id=&quot;html_5b15a2267a7e740371aab3c65ae6149c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3819             latitude:40.1097             PM2_5:39.15384615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05ce84a75f83461f32458b9694f48e3b.setContent(html_5b15a2267a7e740371aab3c65ae6149c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f78a2a1c4a3bdb9d1a4ed37485f9dcca.bindPopup(popup_05ce84a75f83461f32458b9694f48e3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92ea197154943ca3c34201e51edc1caa = L.circleMarker(\\n\",\n       \"                [43.6801, 122.2532],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24354bf4a26de1ef89fcd0ca0fed7a27 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96fd009baa3e0a389c779ec34a74e43a = $(`&lt;div id=&quot;html_96fd009baa3e0a389c779ec34a74e43a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2532             latitude:43.6801             PM2_5:20.17887324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24354bf4a26de1ef89fcd0ca0fed7a27.setContent(html_96fd009baa3e0a389c779ec34a74e43a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92ea197154943ca3c34201e51edc1caa.bindPopup(popup_24354bf4a26de1ef89fcd0ca0fed7a27)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d9e761ce950e65408accbc9d385571f = L.circleMarker(\\n\",\n       \"                [28.6428, 112.4067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e4ce376a1417fcd1bc9ecc486b28563 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fcd9793cbe3bd6bbec59e71515ef40f8 = $(`&lt;div id=&quot;html_fcd9793cbe3bd6bbec59e71515ef40f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4067             latitude:28.6428             PM2_5:41.83333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e4ce376a1417fcd1bc9ecc486b28563.setContent(html_fcd9793cbe3bd6bbec59e71515ef40f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d9e761ce950e65408accbc9d385571f.bindPopup(popup_7e4ce376a1417fcd1bc9ecc486b28563)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56e74c8a5ea981d95bbfc1578612371e = L.circleMarker(\\n\",\n       \"                [27.8528, 113.13],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab6f98f2a71b52bccb590ddd91efb0de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_75c2c54440394896b997335d107360c6 = $(`&lt;div id=&quot;html_75c2c54440394896b997335d107360c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.13             latitude:27.8528             PM2_5:43.01404494             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab6f98f2a71b52bccb590ddd91efb0de.setContent(html_75c2c54440394896b997335d107360c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56e74c8a5ea981d95bbfc1578612371e.bindPopup(popup_ab6f98f2a71b52bccb590ddd91efb0de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50fff7ea541094deb5e016cf7ec0c468 = L.circleMarker(\\n\",\n       \"                [34.5653, 105.8614],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7692b0801967c072ac1f956e9f44175d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06839751d9170e48b3ecd4f3e83b4a8f = $(`&lt;div id=&quot;html_06839751d9170e48b3ecd4f3e83b4a8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8614             latitude:34.5653             PM2_5:34.33286119             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7692b0801967c072ac1f956e9f44175d.setContent(html_06839751d9170e48b3ecd4f3e83b4a8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50fff7ea541094deb5e016cf7ec0c468.bindPopup(popup_7692b0801967c072ac1f956e9f44175d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_223b2d590555756de6def28eb7ec4f0a = L.circleMarker(\\n\",\n       \"                [44.1564, 87.9897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c44ab4b842d2fb6a43710beab6f159f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e798bd0c9d717d44abd315ed1bbea701 = $(`&lt;div id=&quot;html_e798bd0c9d717d44abd315ed1bbea701&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.9897             latitude:44.1564             PM2_5:10.12539185             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c44ab4b842d2fb6a43710beab6f159f.setContent(html_e798bd0c9d717d44abd315ed1bbea701);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_223b2d590555756de6def28eb7ec4f0a.bindPopup(popup_3c44ab4b842d2fb6a43710beab6f159f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_880f8628a399c6601035a8c23e699e65 = L.circleMarker(\\n\",\n       \"                [28.5808, 112.3458],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b396d39411500bbf8b08c9d6bb2c507 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51d62eabcb40da50221e0280312ac8f8 = $(`&lt;div id=&quot;html_51d62eabcb40da50221e0280312ac8f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3458             latitude:28.5808             PM2_5:44.30736544             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b396d39411500bbf8b08c9d6bb2c507.setContent(html_51d62eabcb40da50221e0280312ac8f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_880f8628a399c6601035a8c23e699e65.bindPopup(popup_8b396d39411500bbf8b08c9d6bb2c507)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8eb00e60e3e9371155e55adc966b337 = L.circleMarker(\\n\",\n       \"                [23.3667, 116.6794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6f02027e9f509bae250a908ea0fad43 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71c38aee9c75a484a89d2fa9dcfb0a82 = $(`&lt;div id=&quot;html_71c38aee9c75a484a89d2fa9dcfb0a82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6794             latitude:23.3667             PM2_5:24.04929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6f02027e9f509bae250a908ea0fad43.setContent(html_71c38aee9c75a484a89d2fa9dcfb0a82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8eb00e60e3e9371155e55adc966b337.bindPopup(popup_a6f02027e9f509bae250a908ea0fad43)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c4f45b9812cac15f8b58bf67afd647d = L.circleMarker(\\n\",\n       \"                [34.2417, 117.192],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c05450ef0fc2ea5700d9a7f02f933e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e54251ddf24ec494a8d64bacbc1394b3 = $(`&lt;div id=&quot;html_e54251ddf24ec494a8d64bacbc1394b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.192             latitude:34.2417             PM2_5:62.62464986             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c05450ef0fc2ea5700d9a7f02f933e9.setContent(html_e54251ddf24ec494a8d64bacbc1394b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c4f45b9812cac15f8b58bf67afd647d.bindPopup(popup_2c05450ef0fc2ea5700d9a7f02f933e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_175d5566764ba52734785383c1703f9c = L.circleMarker(\\n\",\n       \"                [37.9854, 112.549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e36406bc464e7bcf86271621fc0f0fce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_debcc66da3ddcd1dd04e1e5a2d73703d = $(`&lt;div id=&quot;html_debcc66da3ddcd1dd04e1e5a2d73703d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.549             latitude:37.9854             PM2_5:57.60422535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e36406bc464e7bcf86271621fc0f0fce.setContent(html_debcc66da3ddcd1dd04e1e5a2d73703d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_175d5566764ba52734785383c1703f9c.bindPopup(popup_e36406bc464e7bcf86271621fc0f0fce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db2feaa376f37665e7d8a2644a3f8cbb = L.circleMarker(\\n\",\n       \"                [28.2053, 113.0792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d2342efc755eaf190ea2b90258a2dd6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c62c89f54e94ebf82f9375f3057a6b67 = $(`&lt;div id=&quot;html_c62c89f54e94ebf82f9375f3057a6b67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0792             latitude:28.2053             PM2_5:48.97075209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d2342efc755eaf190ea2b90258a2dd6.setContent(html_c62c89f54e94ebf82f9375f3057a6b67);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db2feaa376f37665e7d8a2644a3f8cbb.bindPopup(popup_8d2342efc755eaf190ea2b90258a2dd6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3c6b1e82a1b3866524f957db064e42a = L.circleMarker(\\n\",\n       \"                [25.8471, 114.8905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43a3e20a0786ed82211314eb1a9aa47a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07863614405140aa564ca083fa4f6a48 = $(`&lt;div id=&quot;html_07863614405140aa564ca083fa4f6a48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8905             latitude:25.8471             PM2_5:45.81320225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43a3e20a0786ed82211314eb1a9aa47a.setContent(html_07863614405140aa564ca083fa4f6a48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3c6b1e82a1b3866524f957db064e42a.bindPopup(popup_43a3e20a0786ed82211314eb1a9aa47a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6031d3c17637b02d5e2f21423667eca4 = L.circleMarker(\\n\",\n       \"                [23.3594, 104.2533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8baa57ae9d4e04904e90d9ed688a74c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c66508177d76a04ccd404fd5e4240047 = $(`&lt;div id=&quot;html_c66508177d76a04ccd404fd5e4240047&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.2533             latitude:23.3594             PM2_5:18.79008746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8baa57ae9d4e04904e90d9ed688a74c9.setContent(html_c66508177d76a04ccd404fd5e4240047);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6031d3c17637b02d5e2f21423667eca4.bindPopup(popup_8baa57ae9d4e04904e90d9ed688a74c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c9c1294d84e2b08da425026cea990e2 = L.circleMarker(\\n\",\n       \"                [32.0572, 118.749],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c16144e22520f4a6fa8cd6bddfef93a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5cb7ed42fdd74aa45d738e4d188a47a = $(`&lt;div id=&quot;html_a5cb7ed42fdd74aa45d738e4d188a47a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.749             latitude:32.0572             PM2_5:39.61416185             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c16144e22520f4a6fa8cd6bddfef93a7.setContent(html_a5cb7ed42fdd74aa45d738e4d188a47a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c9c1294d84e2b08da425026cea990e2.bindPopup(popup_c16144e22520f4a6fa8cd6bddfef93a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3eedd9eff24b57e1932b9a5d31a644f = L.circleMarker(\\n\",\n       \"                [30.1259, 104.6294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de6534885298a114cb2e14f57a6a222e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_63ab833dc8591bde018c385b1ab3f5c7 = $(`&lt;div id=&quot;html_63ab833dc8591bde018c385b1ab3f5c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6294             latitude:30.1259             PM2_5:38.15571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de6534885298a114cb2e14f57a6a222e.setContent(html_63ab833dc8591bde018c385b1ab3f5c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3eedd9eff24b57e1932b9a5d31a644f.bindPopup(popup_de6534885298a114cb2e14f57a6a222e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49b58ef8f6833d7e298520ea4266b884 = L.circleMarker(\\n\",\n       \"                [25.4792, 118.981],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29f6d026b82d2f7605a4c0936d75c435 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4dce42129ba0832ad0f01f6d9de02fea = $(`&lt;div id=&quot;html_4dce42129ba0832ad0f01f6d9de02fea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.981             latitude:25.4792             PM2_5:28.92458101             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29f6d026b82d2f7605a4c0936d75c435.setContent(html_4dce42129ba0832ad0f01f6d9de02fea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49b58ef8f6833d7e298520ea4266b884.bindPopup(popup_29f6d026b82d2f7605a4c0936d75c435)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_531f9113375282f2069accff3fb8e167 = L.circleMarker(\\n\",\n       \"                [34.3474, 108.935],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74b37e3760ff74b734093eca61548bf1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31c416ebb6845b5a7a7def7337ad9033 = $(`&lt;div id=&quot;html_31c416ebb6845b5a7a7def7337ad9033&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.935             latitude:34.3474             PM2_5:65.3767313             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74b37e3760ff74b734093eca61548bf1.setContent(html_31c416ebb6845b5a7a7def7337ad9033);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_531f9113375282f2069accff3fb8e167.bindPopup(popup_74b37e3760ff74b734093eca61548bf1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e903a78aa5e8c0557541b2583eed2ebc = L.circleMarker(\\n\",\n       \"                [34.7772, 111.1928],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8479e4aecaf98e99189cbbd9657af82b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26608a5e2bc63d4e93b3f2ed1fcdb9ba = $(`&lt;div id=&quot;html_26608a5e2bc63d4e93b3f2ed1fcdb9ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1928             latitude:34.7772             PM2_5:55.32022472             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8479e4aecaf98e99189cbbd9657af82b.setContent(html_26608a5e2bc63d4e93b3f2ed1fcdb9ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e903a78aa5e8c0557541b2583eed2ebc.bindPopup(popup_8479e4aecaf98e99189cbbd9657af82b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_deaeb7c87817b006f3dc9d7b6aa36334 = L.circleMarker(\\n\",\n       \"                [34.9058, 108.9344],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfce9ed0013937e75a27b75117116a7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_64fb0e3ffeabcbd8779ed9e3b62cd9b5 = $(`&lt;div id=&quot;html_64fb0e3ffeabcbd8779ed9e3b62cd9b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.9344             latitude:34.9058             PM2_5:49.65266106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfce9ed0013937e75a27b75117116a7e.setContent(html_64fb0e3ffeabcbd8779ed9e3b62cd9b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_deaeb7c87817b006f3dc9d7b6aa36334.bindPopup(popup_dfce9ed0013937e75a27b75117116a7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb1f595d248df51d9b3864457b10271a = L.circleMarker(\\n\",\n       \"                [37.7124, 112.469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db1d3e2ebf859ae2a1a0abb2682773ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6aa573771e3f42ceda5e7e00aa2a41aa = $(`&lt;div id=&quot;html_6aa573771e3f42ceda5e7e00aa2a41aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.469             latitude:37.7124             PM2_5:76.31481481             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db1d3e2ebf859ae2a1a0abb2682773ec.setContent(html_6aa573771e3f42ceda5e7e00aa2a41aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb1f595d248df51d9b3864457b10271a.bindPopup(popup_db1d3e2ebf859ae2a1a0abb2682773ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d8a479b9aeaabe9faf927920346936be = L.circleMarker(\\n\",\n       \"                [23.4794, 111.26],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28facccd5a16ef0bfa5fb60a7d7ec611 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c8607eba85c905541515e0ac66fbaec = $(`&lt;div id=&quot;html_8c8607eba85c905541515e0ac66fbaec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.26             latitude:23.4794             PM2_5:40.91876751             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28facccd5a16ef0bfa5fb60a7d7ec611.setContent(html_8c8607eba85c905541515e0ac66fbaec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d8a479b9aeaabe9faf927920346936be.bindPopup(popup_28facccd5a16ef0bfa5fb60a7d7ec611)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6307735d7b5afc6b603d5c83e58720d = L.circleMarker(\\n\",\n       \"                [28.7989, 104.6789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5fda477f308be4cf5341a29fd25cb0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b0e411b6a5f91e0da70f0c190b96be7 = $(`&lt;div id=&quot;html_4b0e411b6a5f91e0da70f0c190b96be7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6789             latitude:28.7989             PM2_5:54.35955056             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5fda477f308be4cf5341a29fd25cb0b.setContent(html_4b0e411b6a5f91e0da70f0c190b96be7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6307735d7b5afc6b603d5c83e58720d.bindPopup(popup_d5fda477f308be4cf5341a29fd25cb0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d37104386b58ea21bdbf02a9667822d1 = L.circleMarker(\\n\",\n       \"                [40.9359, 117.963],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f02b54461cf0ac73aac88934966869b6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2874d6532f8370c94387e8fd31214ab0 = $(`&lt;div id=&quot;html_2874d6532f8370c94387e8fd31214ab0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.963             latitude:40.9359             PM2_5:32.35972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f02b54461cf0ac73aac88934966869b6.setContent(html_2874d6532f8370c94387e8fd31214ab0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d37104386b58ea21bdbf02a9667822d1.bindPopup(popup_f02b54461cf0ac73aac88934966869b6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0deb63dd0235da68fc408e85c382b784 = L.circleMarker(\\n\",\n       \"                [30.6578, 104.054],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c355c8acf89282e3b60faf157c159ab6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b35f5c1910b7fbebcf540a2cb403835 = $(`&lt;div id=&quot;html_3b35f5c1910b7fbebcf540a2cb403835&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.054             latitude:30.6578             PM2_5:56.91292135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c355c8acf89282e3b60faf157c159ab6.setContent(html_3b35f5c1910b7fbebcf540a2cb403835);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0deb63dd0235da68fc408e85c382b784.bindPopup(popup_c355c8acf89282e3b60faf157c159ab6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a48fed0aa9e62c1c8905b8be1bb20156 = L.circleMarker(\\n\",\n       \"                [48.4658, 129.4942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d30456d167e770774159b2494a9df94b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24b3bff9b139e16ceac8c2cdae68534d = $(`&lt;div id=&quot;html_24b3bff9b139e16ceac8c2cdae68534d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.4942             latitude:48.4658             PM2_5:14.43993994             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d30456d167e770774159b2494a9df94b.setContent(html_24b3bff9b139e16ceac8c2cdae68534d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a48fed0aa9e62c1c8905b8be1bb20156.bindPopup(popup_d30456d167e770774159b2494a9df94b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2e03970de21f233b6bbb3d2ce7c4cfd = L.circleMarker(\\n\",\n       \"                [33.3681, 120.1631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_247378487f7c7499ffb75109bf209a42 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72d387b96cf54692ebcd1b31939a2bac = $(`&lt;div id=&quot;html_72d387b96cf54692ebcd1b31939a2bac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1631             latitude:33.3681             PM2_5:40.77653631             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_247378487f7c7499ffb75109bf209a42.setContent(html_72d387b96cf54692ebcd1b31939a2bac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2e03970de21f233b6bbb3d2ce7c4cfd.bindPopup(popup_247378487f7c7499ffb75109bf209a42)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0e56f31c73295bdc26b71b4e7ec69a5 = L.circleMarker(\\n\",\n       \"                [30.65638889, 104.0238889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc5523e97fb56b5041871385a466a3fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff5cfc9210817a428c9d39f18bddefbd = $(`&lt;div id=&quot;html_ff5cfc9210817a428c9d39f18bddefbd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.0238889             latitude:30.65638889             PM2_5:56.7150838             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc5523e97fb56b5041871385a466a3fd.setContent(html_ff5cfc9210817a428c9d39f18bddefbd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0e56f31c73295bdc26b71b4e7ec69a5.bindPopup(popup_fc5523e97fb56b5041871385a466a3fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9bc0cff9488263a0a9ad973d4c556779 = L.circleMarker(\\n\",\n       \"                [26.5928, 101.5769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b1b89fcfeaa3d015935c7f47fc530e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4dc90338f533a91bd8947c3ca54d8d49 = $(`&lt;div id=&quot;html_4dc90338f533a91bd8947c3ca54d8d49&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.5769             latitude:26.5928             PM2_5:36.39972145             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b1b89fcfeaa3d015935c7f47fc530e5.setContent(html_4dc90338f533a91bd8947c3ca54d8d49);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9bc0cff9488263a0a9ad973d4c556779.bindPopup(popup_2b1b89fcfeaa3d015935c7f47fc530e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_922b447b1b58bcba8279dfed62b07fe6 = L.circleMarker(\\n\",\n       \"                [32.645, 117.0083],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ccf091c6f6d6df5e5e1c158ea407abc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a8a1ae131fc0166722172d8f2b7a40a = $(`&lt;div id=&quot;html_6a8a1ae131fc0166722172d8f2b7a40a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0083             latitude:32.645             PM2_5:60.11376404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ccf091c6f6d6df5e5e1c158ea407abc.setContent(html_6a8a1ae131fc0166722172d8f2b7a40a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_922b447b1b58bcba8279dfed62b07fe6.bindPopup(popup_3ccf091c6f6d6df5e5e1c158ea407abc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b2fd603501e5088f8b35c15d12f94e6 = L.circleMarker(\\n\",\n       \"                [41.8864, 124.0878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9121960829b044ba20d061b4f1027fd8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5087bb409b52bfcbc880c144730c9be2 = $(`&lt;div id=&quot;html_5087bb409b52bfcbc880c144730c9be2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.0878             latitude:41.8864             PM2_5:24.38515406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9121960829b044ba20d061b4f1027fd8.setContent(html_5087bb409b52bfcbc880c144730c9be2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b2fd603501e5088f8b35c15d12f94e6.bindPopup(popup_9121960829b044ba20d061b4f1027fd8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9665485ac3b77f903c69251ce90aa47 = L.circleMarker(\\n\",\n       \"                [50.4269, 124.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6c6047a30977e9cecb1107a3e312158 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_388aafb50576ddbc16d995149aee80c8 = $(`&lt;div id=&quot;html_388aafb50576ddbc16d995149aee80c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.1186             latitude:50.4269             PM2_5:16.56714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6c6047a30977e9cecb1107a3e312158.setContent(html_388aafb50576ddbc16d995149aee80c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9665485ac3b77f903c69251ce90aa47.bindPopup(popup_e6c6047a30977e9cecb1107a3e312158)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13277052f716f2a54abe58ce5521f4a1 = L.circleMarker(\\n\",\n       \"                [23.7569, 114.6778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_288e04f7ff20951d908d8ace8ad56164 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9aeb427f364d04c68f932041aaea4e15 = $(`&lt;div id=&quot;html_9aeb427f364d04c68f932041aaea4e15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6778             latitude:23.7569             PM2_5:27.04225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_288e04f7ff20951d908d8ace8ad56164.setContent(html_9aeb427f364d04c68f932041aaea4e15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13277052f716f2a54abe58ce5521f4a1.bindPopup(popup_288e04f7ff20951d908d8ace8ad56164)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94e231baaeb9462548e5a4cd68db7b0c = L.circleMarker(\\n\",\n       \"                [33.975, 116.8008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a391231f68a9287e0a7787c6cfcee18c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03f53ab2a3b2b8c4a738598b88ed4da9 = $(`&lt;div id=&quot;html_03f53ab2a3b2b8c4a738598b88ed4da9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8008             latitude:33.975             PM2_5:53.05138889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a391231f68a9287e0a7787c6cfcee18c.setContent(html_03f53ab2a3b2b8c4a738598b88ed4da9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94e231baaeb9462548e5a4cd68db7b0c.bindPopup(popup_a391231f68a9287e0a7787c6cfcee18c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4afe2613c35ee4d5ca5eb5eab4d3a3c9 = L.circleMarker(\\n\",\n       \"                [31.955, 119.146],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90afb0c802e0e8cbc0a85780f68151ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39d2b763a82820a8bd21b6f735ea379c = $(`&lt;div id=&quot;html_39d2b763a82820a8bd21b6f735ea379c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.146             latitude:31.955             PM2_5:48.35190616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90afb0c802e0e8cbc0a85780f68151ea.setContent(html_39d2b763a82820a8bd21b6f735ea379c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4afe2613c35ee4d5ca5eb5eab4d3a3c9.bindPopup(popup_90afb0c802e0e8cbc0a85780f68151ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98164d6fdc0b40fbfaec2c55720262b8 = L.circleMarker(\\n\",\n       \"                [32.0314, 118.803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63aeb66683e69f500eee39fc1ae6ab4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_803dc940cb3be911cbd3133f007b6eac = $(`&lt;div id=&quot;html_803dc940cb3be911cbd3133f007b6eac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.803             latitude:32.0314             PM2_5:47.42318436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63aeb66683e69f500eee39fc1ae6ab4c.setContent(html_803dc940cb3be911cbd3133f007b6eac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98164d6fdc0b40fbfaec2c55720262b8.bindPopup(popup_63aeb66683e69f500eee39fc1ae6ab4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0fbc495bca1c059d6216575a6ad1e85 = L.circleMarker(\\n\",\n       \"                [29.8906, 121.554],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4984f642c0b4c414e6c77aee3cb9c02b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf60561faa866233104c57ddb9e54bfd = $(`&lt;div id=&quot;html_cf60561faa866233104c57ddb9e54bfd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.554             latitude:29.8906             PM2_5:36.43098592             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4984f642c0b4c414e6c77aee3cb9c02b.setContent(html_cf60561faa866233104c57ddb9e54bfd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0fbc495bca1c059d6216575a6ad1e85.bindPopup(popup_4984f642c0b4c414e6c77aee3cb9c02b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d1ac078aec3a1aff86d73bfac3fa638 = L.circleMarker(\\n\",\n       \"                [31.955, 119.18],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ac8cfa4476b629cf26ec0c13ab3995d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93dd140d145c6b6f3882d8a3cbae4b2d = $(`&lt;div id=&quot;html_93dd140d145c6b6f3882d8a3cbae4b2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.18             latitude:31.955             PM2_5:40.82033426             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ac8cfa4476b629cf26ec0c13ab3995d.setContent(html_93dd140d145c6b6f3882d8a3cbae4b2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d1ac078aec3a1aff86d73bfac3fa638.bindPopup(popup_7ac8cfa4476b629cf26ec0c13ab3995d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e60d74b6925599223b948cffe2a87b2 = L.circleMarker(\\n\",\n       \"                [34.7837, 117.2852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7aa5a47a92c7776eadd84ccdafbd454 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cdfdaca40c21f9923af94d319e3d8f2a = $(`&lt;div id=&quot;html_cdfdaca40c21f9923af94d319e3d8f2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2852             latitude:34.7837             PM2_5:60.64944134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7aa5a47a92c7776eadd84ccdafbd454.setContent(html_cdfdaca40c21f9923af94d319e3d8f2a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e60d74b6925599223b948cffe2a87b2.bindPopup(popup_b7aa5a47a92c7776eadd84ccdafbd454)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef5a107eef08be4b0ac31ae054e80495 = L.circleMarker(\\n\",\n       \"                [32.4867, 119.9],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac68b18996e6fbff11271ebc69006b01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a00979c190a6d1d81b678d408884667 = $(`&lt;div id=&quot;html_7a00979c190a6d1d81b678d408884667&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9             latitude:32.4867             PM2_5:45.3875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac68b18996e6fbff11271ebc69006b01.setContent(html_7a00979c190a6d1d81b678d408884667);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef5a107eef08be4b0ac31ae054e80495.bindPopup(popup_ac68b18996e6fbff11271ebc69006b01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83dbf7e90f654399f0ee66d75fb966e4 = L.circleMarker(\\n\",\n       \"                [32.88922222, 115.7838889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ff5806a8c65a110e2491256cf183c9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_746824459b597a4549a56ffb7b04c372 = $(`&lt;div id=&quot;html_746824459b597a4549a56ffb7b04c372&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.7838889             latitude:32.88922222             PM2_5:52.57485876             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ff5806a8c65a110e2491256cf183c9f.setContent(html_746824459b597a4549a56ffb7b04c372);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83dbf7e90f654399f0ee66d75fb966e4.bindPopup(popup_1ff5806a8c65a110e2491256cf183c9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c867d216cdd0b43b19f29a88b75adbbd = L.circleMarker(\\n\",\n       \"                [29.33972, 104.7228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da4fe051408e34429e76fe7dd1ca5ead = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db517436556a6e350f387cfb77ef6d7a = $(`&lt;div id=&quot;html_db517436556a6e350f387cfb77ef6d7a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7228             latitude:29.33972             PM2_5:66.02941176             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da4fe051408e34429e76fe7dd1ca5ead.setContent(html_db517436556a6e350f387cfb77ef6d7a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c867d216cdd0b43b19f29a88b75adbbd.bindPopup(popup_da4fe051408e34429e76fe7dd1ca5ead)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d35be2410b272863d4552af4726fc652 = L.circleMarker(\\n\",\n       \"                [28.095, 116.9622],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e29679ef9522528253112b644026c09e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e50098c02d40a59f634d6d1d71d9104 = $(`&lt;div id=&quot;html_2e50098c02d40a59f634d6d1d71d9104&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9622             latitude:28.095             PM2_5:29.73167155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e29679ef9522528253112b644026c09e.setContent(html_2e50098c02d40a59f634d6d1d71d9104);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d35be2410b272863d4552af4726fc652.bindPopup(popup_e29679ef9522528253112b644026c09e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1900ca2e8e0fc4a4eec8beb544dbd37 = L.circleMarker(\\n\",\n       \"                [42.2556, 118.8789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2069d37fad422d09f48247675c599c50 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_940ea8e1b29779abcf53ebc1dfb4257c = $(`&lt;div id=&quot;html_940ea8e1b29779abcf53ebc1dfb4257c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.8789             latitude:42.2556             PM2_5:23.22576177             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2069d37fad422d09f48247675c599c50.setContent(html_940ea8e1b29779abcf53ebc1dfb4257c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1900ca2e8e0fc4a4eec8beb544dbd37.bindPopup(popup_2069d37fad422d09f48247675c599c50)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e4c8f860df91c545b4cca111cb42906 = L.circleMarker(\\n\",\n       \"                [41.7156, 125.9361],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b1e82ecefb1a6698d3cbb92c80a115c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aabd01a4247c1c968799f5ef8dc7ac05 = $(`&lt;div id=&quot;html_aabd01a4247c1c968799f5ef8dc7ac05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.9361             latitude:41.7156             PM2_5:31.46935933             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b1e82ecefb1a6698d3cbb92c80a115c.setContent(html_aabd01a4247c1c968799f5ef8dc7ac05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e4c8f860df91c545b4cca111cb42906.bindPopup(popup_5b1e82ecefb1a6698d3cbb92c80a115c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05eb6f5d8e40c3fefc2b4058e37d46df = L.circleMarker(\\n\",\n       \"                [28.9026, 105.4436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c49bcd3d3c9e29c421546a28e7554d22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8607e928a0aa7135abca197c3816237d = $(`&lt;div id=&quot;html_8607e928a0aa7135abca197c3816237d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4436             latitude:28.9026             PM2_5:45.04634831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c49bcd3d3c9e29c421546a28e7554d22.setContent(html_8607e928a0aa7135abca197c3816237d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05eb6f5d8e40c3fefc2b4058e37d46df.bindPopup(popup_c49bcd3d3c9e29c421546a28e7554d22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a37c582d43190ffedcb95a73f2c76b82 = L.circleMarker(\\n\",\n       \"                [30.9892, 112.1969],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f9b2037fc21409cc64313ac730c6074 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4fb1f3b366aeb1f239fcfbb1d540cdec = $(`&lt;div id=&quot;html_4fb1f3b366aeb1f239fcfbb1d540cdec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1969             latitude:30.9892             PM2_5:50.80113636             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f9b2037fc21409cc64313ac730c6074.setContent(html_4fb1f3b366aeb1f239fcfbb1d540cdec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a37c582d43190ffedcb95a73f2c76b82.bindPopup(popup_1f9b2037fc21409cc64313ac730c6074)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca0289cf12673c4a665f5fa3ef3796a1 = L.circleMarker(\\n\",\n       \"                [30.3175, 112.2551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0a115d0f064cf65543010379331025d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0060ba4dee6b92a9c01858b55401706e = $(`&lt;div id=&quot;html_0060ba4dee6b92a9c01858b55401706e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2551             latitude:30.3175             PM2_5:53.66573816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0a115d0f064cf65543010379331025d.setContent(html_0060ba4dee6b92a9c01858b55401706e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca0289cf12673c4a665f5fa3ef3796a1.bindPopup(popup_f0a115d0f064cf65543010379331025d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75ca916357f968ac95e5c5b84a31be8a = L.circleMarker(\\n\",\n       \"                [31.3008, 121.467],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0deac327cca3b5f3bf1e4c9100db3628 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bcab766103e0229ec842f0108b7e6cff = $(`&lt;div id=&quot;html_bcab766103e0229ec842f0108b7e6cff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.467             latitude:31.3008             PM2_5:38.97262248             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0deac327cca3b5f3bf1e4c9100db3628.setContent(html_bcab766103e0229ec842f0108b7e6cff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75ca916357f968ac95e5c5b84a31be8a.bindPopup(popup_0deac327cca3b5f3bf1e4c9100db3628)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ef3a61762523052eb497ef1232bc723 = L.circleMarker(\\n\",\n       \"                [37.0533, 114.5261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d59a848c941f5d026c1366ff3e52db67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90535221285d34bcd876c7da52fe917b = $(`&lt;div id=&quot;html_90535221285d34bcd876c7da52fe917b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5261             latitude:37.0533             PM2_5:69.78910615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d59a848c941f5d026c1366ff3e52db67.setContent(html_90535221285d34bcd876c7da52fe917b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ef3a61762523052eb497ef1232bc723.bindPopup(popup_d59a848c941f5d026c1366ff3e52db67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e02c18b43b0c1f4ba8d9a25423450fd0 = L.circleMarker(\\n\",\n       \"                [38.3254, 116.8584],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_080092b908f52b26a15c66fc5fa52fcf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9853606cb901f3914fac64445cede18f = $(`&lt;div id=&quot;html_9853606cb901f3914fac64445cede18f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8584             latitude:38.3254             PM2_5:47.80055402             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_080092b908f52b26a15c66fc5fa52fcf.setContent(html_9853606cb901f3914fac64445cede18f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e02c18b43b0c1f4ba8d9a25423450fd0.bindPopup(popup_080092b908f52b26a15c66fc5fa52fcf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d349ac830b0400f605e48a70df6c504 = L.circleMarker(\\n\",\n       \"                [35.213, 113.227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3af6f3c254ed0309099d930a12d13fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_344572f33f46264ba9b47a6b91619043 = $(`&lt;div id=&quot;html_344572f33f46264ba9b47a6b91619043&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.227             latitude:35.213             PM2_5:66.43888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3af6f3c254ed0309099d930a12d13fa.setContent(html_344572f33f46264ba9b47a6b91619043);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d349ac830b0400f605e48a70df6c504.bindPopup(popup_d3af6f3c254ed0309099d930a12d13fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0b5ae33f9d5745ad94ef2eca736cdc8 = L.circleMarker(\\n\",\n       \"                [33.8715, 109.9154],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d119a54f04bbbb12760c1d105bdd9b74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4625996b5b5ea75bb9c1d3af77152af = $(`&lt;div id=&quot;html_f4625996b5b5ea75bb9c1d3af77152af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9154             latitude:33.8715             PM2_5:33.87955182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d119a54f04bbbb12760c1d105bdd9b74.setContent(html_f4625996b5b5ea75bb9c1d3af77152af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0b5ae33f9d5745ad94ef2eca736cdc8.bindPopup(popup_d119a54f04bbbb12760c1d105bdd9b74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb6df4acf86dd54f84d05308ac26d28c = L.circleMarker(\\n\",\n       \"                [30.5706, 104.079],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57f377b347942bf6daf8c8c4f3ff9ba8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6036ff66b6d0b4c5a4789059e2b8f34e = $(`&lt;div id=&quot;html_6036ff66b6d0b4c5a4789059e2b8f34e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.079             latitude:30.5706             PM2_5:54.24512535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57f377b347942bf6daf8c8c4f3ff9ba8.setContent(html_6036ff66b6d0b4c5a4789059e2b8f34e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb6df4acf86dd54f84d05308ac26d28c.bindPopup(popup_57f377b347942bf6daf8c8c4f3ff9ba8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0085fc7ae197ca3ad2ca6b2e6d88d95f = L.circleMarker(\\n\",\n       \"                [32.5714, 110.8839],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_758f18e56dd78fcf901bc9bda8bcb0f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e0e629c9cad5d9530dc4c5daa769885 = $(`&lt;div id=&quot;html_5e0e629c9cad5d9530dc4c5daa769885&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.8839             latitude:32.5714             PM2_5:48.0027933             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_758f18e56dd78fcf901bc9bda8bcb0f4.setContent(html_5e0e629c9cad5d9530dc4c5daa769885);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0085fc7ae197ca3ad2ca6b2e6d88d95f.bindPopup(popup_758f18e56dd78fcf901bc9bda8bcb0f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a9bb8503d4c136319fc2b499e54bacb = L.circleMarker(\\n\",\n       \"                [37.4664, 116.3061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98e57cf137bfad7cba343842cb5d308c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd06d4fd2280606ff5ac8f74ad752f5f = $(`&lt;div id=&quot;html_dd06d4fd2280606ff5ac8f74ad752f5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3061             latitude:37.4664             PM2_5:54.98997135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98e57cf137bfad7cba343842cb5d308c.setContent(html_dd06d4fd2280606ff5ac8f74ad752f5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a9bb8503d4c136319fc2b499e54bacb.bindPopup(popup_98e57cf137bfad7cba343842cb5d308c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c601d6433f86fdc2333421a239e488ab = L.circleMarker(\\n\",\n       \"                [25.0405, 102.722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e6f9aa52bfc2984c2fef1ae54066e36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a3a6899ee15f79265196dfa8257e698 = $(`&lt;div id=&quot;html_5a3a6899ee15f79265196dfa8257e698&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.722             latitude:25.0405             PM2_5:33.50415512             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e6f9aa52bfc2984c2fef1ae54066e36.setContent(html_5a3a6899ee15f79265196dfa8257e698);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c601d6433f86fdc2333421a239e488ab.bindPopup(popup_4e6f9aa52bfc2984c2fef1ae54066e36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8ee0117c76c656d5d1ea4c32a8040ec = L.circleMarker(\\n\",\n       \"                [36.9639, 100.9048],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db8d7cef228a457ebc116268473b147d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf5fbe22e9c7d885e96d1412a7330111 = $(`&lt;div id=&quot;html_bf5fbe22e9c7d885e96d1412a7330111&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.9048             latitude:36.9639             PM2_5:26.02222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db8d7cef228a457ebc116268473b147d.setContent(html_bf5fbe22e9c7d885e96d1412a7330111);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8ee0117c76c656d5d1ea4c32a8040ec.bindPopup(popup_db8d7cef228a457ebc116268473b147d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3da40a233fee19166a431a1b7a208418 = L.circleMarker(\\n\",\n       \"                [27.9639, 116.3598],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_007e22ec17bf5957fbcb0a184df00f4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bde4cfc561c97b98b0492ec499420760 = $(`&lt;div id=&quot;html_bde4cfc561c97b98b0492ec499420760&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3598             latitude:27.9639             PM2_5:40.7367688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_007e22ec17bf5957fbcb0a184df00f4c.setContent(html_bde4cfc561c97b98b0492ec499420760);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3da40a233fee19166a431a1b7a208418.bindPopup(popup_007e22ec17bf5957fbcb0a184df00f4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3233c1c8f53497c57c363496bfab9df = L.circleMarker(\\n\",\n       \"                [40.8725, 114.904],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe3b1ca6f47dd4a3927a19e6fce027e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdd4e0e9df7813066e83d3c2b2d15d71 = $(`&lt;div id=&quot;html_bdd4e0e9df7813066e83d3c2b2d15d71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.904             latitude:40.8725             PM2_5:29.97752809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe3b1ca6f47dd4a3927a19e6fce027e8.setContent(html_bdd4e0e9df7813066e83d3c2b2d15d71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3233c1c8f53497c57c363496bfab9df.bindPopup(popup_fe3b1ca6f47dd4a3927a19e6fce027e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9adceabe8540df7fc55306fe485fde39 = L.circleMarker(\\n\",\n       \"                [30.4742, 114.9028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b00c68df3557c334e07a7bdfac681c23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c9da082800ad933fe8100a1691792d0 = $(`&lt;div id=&quot;html_5c9da082800ad933fe8100a1691792d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9028             latitude:30.4742             PM2_5:45.7019774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b00c68df3557c334e07a7bdfac681c23.setContent(html_5c9da082800ad933fe8100a1691792d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9adceabe8540df7fc55306fe485fde39.bindPopup(popup_b00c68df3557c334e07a7bdfac681c23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_775d33345bfbaeb27ebfb54612255f2a = L.circleMarker(\\n\",\n       \"                [41.0833, 122.9481],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10db40bb3942fcb214a768ffbdabb515 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5335e0257cc9c4284c1ebc26106977f = $(`&lt;div id=&quot;html_b5335e0257cc9c4284c1ebc26106977f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.9481             latitude:41.0833             PM2_5:33.61173184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10db40bb3942fcb214a768ffbdabb515.setContent(html_b5335e0257cc9c4284c1ebc26106977f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_775d33345bfbaeb27ebfb54612255f2a.bindPopup(popup_10db40bb3942fcb214a768ffbdabb515)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9a499f51c764802ec28a6d45f581056 = L.circleMarker(\\n\",\n       \"                [35.5051, 112.85],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc2c13fe62c7e632b6c28505ec117c2e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42acad2092c030ac8ae11f19142a41f0 = $(`&lt;div id=&quot;html_42acad2092c030ac8ae11f19142a41f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.85             latitude:35.5051             PM2_5:58.35552408             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc2c13fe62c7e632b6c28505ec117c2e.setContent(html_42acad2092c030ac8ae11f19142a41f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9a499f51c764802ec28a6d45f581056.bindPopup(popup_bc2c13fe62c7e632b6c28505ec117c2e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_011f37d84a24e2d985d828e0c8abad97 = L.circleMarker(\\n\",\n       \"                [32.6778, 109.0311],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f4c84a83a6349e135a0377052d38a9ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbb0d5df905fd029ba4d1c905205ecb3 = $(`&lt;div id=&quot;html_cbb0d5df905fd029ba4d1c905205ecb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0311             latitude:32.6778             PM2_5:38.88285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f4c84a83a6349e135a0377052d38a9ae.setContent(html_cbb0d5df905fd029ba4d1c905205ecb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_011f37d84a24e2d985d828e0c8abad97.bindPopup(popup_f4c84a83a6349e135a0377052d38a9ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2165d19f8c09872a73bc20ec300f38a = L.circleMarker(\\n\",\n       \"                [29.6926, 116.0628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e2049dc294a6725244221bb9392566e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b99770769e4d7247102f509af3e1159 = $(`&lt;div id=&quot;html_8b99770769e4d7247102f509af3e1159&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0628             latitude:29.6926             PM2_5:42.53107345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e2049dc294a6725244221bb9392566e.setContent(html_8b99770769e4d7247102f509af3e1159);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2165d19f8c09872a73bc20ec300f38a.bindPopup(popup_3e2049dc294a6725244221bb9392566e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c087933a762018ff7f654bd1d23ada62 = L.circleMarker(\\n\",\n       \"                [28.0167, 120.671],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_268b554bb8aa5bf667272e9aed130088 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9197ffef4bfc06ac831af824ee0972a = $(`&lt;div id=&quot;html_b9197ffef4bfc06ac831af824ee0972a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.671             latitude:28.0167             PM2_5:37.0042735             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_268b554bb8aa5bf667272e9aed130088.setContent(html_b9197ffef4bfc06ac831af824ee0972a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c087933a762018ff7f654bd1d23ada62.bindPopup(popup_268b554bb8aa5bf667272e9aed130088)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c14e5bb24d8fa6a259d84b3d98990c5 = L.circleMarker(\\n\",\n       \"                [43.831, 87.6432],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1898c6c3bc2730dad66300984d29e9cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06f31462ae5e9397afc745acbfdf2cc7 = $(`&lt;div id=&quot;html_06f31462ae5e9397afc745acbfdf2cc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6432             latitude:43.831             PM2_5:57.57374631             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1898c6c3bc2730dad66300984d29e9cb.setContent(html_06f31462ae5e9397afc745acbfdf2cc7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c14e5bb24d8fa6a259d84b3d98990c5.bindPopup(popup_1898c6c3bc2730dad66300984d29e9cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c68b38975a5a8c3d6f2adef893fea909 = L.circleMarker(\\n\",\n       \"                [24.81119444, 113.5593889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b06e08748277501a7e9001f603296260 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fec7da75e3a2fd8617d2222695b161c6 = $(`&lt;div id=&quot;html_fec7da75e3a2fd8617d2222695b161c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5593889             latitude:24.81119444             PM2_5:36.51396648             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b06e08748277501a7e9001f603296260.setContent(html_fec7da75e3a2fd8617d2222695b161c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c68b38975a5a8c3d6f2adef893fea909.bindPopup(popup_b06e08748277501a7e9001f603296260)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96520b12b500cebdd60bedc2ca205ddb = L.circleMarker(\\n\",\n       \"                [36.6622, 117.049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e14fc2f3c2ba23d19b0731662ccb490 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b99bb2818d098e2dcb2831a7f27a46d9 = $(`&lt;div id=&quot;html_b99bb2818d098e2dcb2831a7f27a46d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.049             latitude:36.6622             PM2_5:60.01311953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e14fc2f3c2ba23d19b0731662ccb490.setContent(html_b99bb2818d098e2dcb2831a7f27a46d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96520b12b500cebdd60bedc2ca205ddb.bindPopup(popup_0e14fc2f3c2ba23d19b0731662ccb490)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8fdd314288d3ea90022385de30320355 = L.circleMarker(\\n\",\n       \"                [45.1642, 124.8528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba62cd63057ce48da7f419b2baa3f26d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e00ec5518faef93ff344508f8aa681d = $(`&lt;div id=&quot;html_6e00ec5518faef93ff344508f8aa681d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8528             latitude:45.1642             PM2_5:29.24404762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba62cd63057ce48da7f419b2baa3f26d.setContent(html_6e00ec5518faef93ff344508f8aa681d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8fdd314288d3ea90022385de30320355.bindPopup(popup_ba62cd63057ce48da7f419b2baa3f26d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03c6a00329964bdc1c610aa8eae2457c = L.circleMarker(\\n\",\n       \"                [32.8913, 117.4186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ecb36403a873300529557f44bcfc4aa6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_528a8c164969118759795d68a80abbe8 = $(`&lt;div id=&quot;html_528a8c164969118759795d68a80abbe8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4186             latitude:32.8913             PM2_5:42.02521008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ecb36403a873300529557f44bcfc4aa6.setContent(html_528a8c164969118759795d68a80abbe8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03c6a00329964bdc1c610aa8eae2457c.bindPopup(popup_ecb36403a873300529557f44bcfc4aa6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90148011ca329a4020794860914f8db9 = L.circleMarker(\\n\",\n       \"                [41.7972, 123.3997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2364b835a1232eb75c15bd6c54e4555a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_16d295ce70166fff01d3a708646fb8f2 = $(`&lt;div id=&quot;html_16d295ce70166fff01d3a708646fb8f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.3997             latitude:41.7972             PM2_5:38.97206704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2364b835a1232eb75c15bd6c54e4555a.setContent(html_16d295ce70166fff01d3a708646fb8f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90148011ca329a4020794860914f8db9.bindPopup(popup_2364b835a1232eb75c15bd6c54e4555a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7125ca5c12dd2012b16224c8977a9af6 = L.circleMarker(\\n\",\n       \"                [38.9846, 117.3747],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a7402e20c70202a2f50e01e4ce12542 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ac6623103ed1740c0cfaec9673e5a9b = $(`&lt;div id=&quot;html_2ac6623103ed1740c0cfaec9673e5a9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3747             latitude:38.9846             PM2_5:51.10339943             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a7402e20c70202a2f50e01e4ce12542.setContent(html_2ac6623103ed1740c0cfaec9673e5a9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7125ca5c12dd2012b16224c8977a9af6.bindPopup(popup_2a7402e20c70202a2f50e01e4ce12542)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17e4fc22dcd0105890e8645669b2084b = L.circleMarker(\\n\",\n       \"                [26.53111111, 107.8908333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_750f027eb7da3a31a37ecc324b3c4e3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6f349f7ef583683c1719750a27a67b7 = $(`&lt;div id=&quot;html_d6f349f7ef583683c1719750a27a67b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.8908333             latitude:26.53111111             PM2_5:30.87146893             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_750f027eb7da3a31a37ecc324b3c4e3d.setContent(html_d6f349f7ef583683c1719750a27a67b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17e4fc22dcd0105890e8645669b2084b.bindPopup(popup_750f027eb7da3a31a37ecc324b3c4e3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5e4a9594823c6c443b56bb78497f729 = L.circleMarker(\\n\",\n       \"                [26.5892, 104.8],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6379d7904acbfb9991e9215939f8ce6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9fb20d745517412817611e9648785da = $(`&lt;div id=&quot;html_a9fb20d745517412817611e9648785da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8             latitude:26.5892             PM2_5:39.79665738             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6379d7904acbfb9991e9215939f8ce6.setContent(html_a9fb20d745517412817611e9648785da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5e4a9594823c6c443b56bb78497f729.bindPopup(popup_d6379d7904acbfb9991e9215939f8ce6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a34f174e6a44f5187f722686625ffe9 = L.circleMarker(\\n\",\n       \"                [22.5978, 114.297],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c54c2f9b4ff94595b7ff89ffbe6cae98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c07a14c835effc172973d9d482da2e3 = $(`&lt;div id=&quot;html_4c07a14c835effc172973d9d482da2e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.297             latitude:22.5978             PM2_5:26.13927577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c54c2f9b4ff94595b7ff89ffbe6cae98.setContent(html_4c07a14c835effc172973d9d482da2e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a34f174e6a44f5187f722686625ffe9.bindPopup(popup_c54c2f9b4ff94595b7ff89ffbe6cae98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd2de8cfefdba40829c423a5224e043a = L.circleMarker(\\n\",\n       \"                [35.235, 113.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2092c653c1add583f8d44739fcd6ab61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4fe6e968a5fb700a9234e4018ece6c20 = $(`&lt;div id=&quot;html_4fe6e968a5fb700a9234e4018ece6c20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.261             latitude:35.235             PM2_5:66.46751412             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2092c653c1add583f8d44739fcd6ab61.setContent(html_4fe6e968a5fb700a9234e4018ece6c20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd2de8cfefdba40829c423a5224e043a.bindPopup(popup_2092c653c1add583f8d44739fcd6ab61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_275f00fd94f2193904aa5f297159038d = L.circleMarker(\\n\",\n       \"                [30.4663, 106.6271],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_324f82cfda2d608f4e5210c2ff678658 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90c3168dc1e8f7cd0f79256e876be9e2 = $(`&lt;div id=&quot;html_90c3168dc1e8f7cd0f79256e876be9e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6271             latitude:30.4663             PM2_5:43.66944444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_324f82cfda2d608f4e5210c2ff678658.setContent(html_90c3168dc1e8f7cd0f79256e876be9e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_275f00fd94f2193904aa5f297159038d.bindPopup(popup_324f82cfda2d608f4e5210c2ff678658)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6cd94b065e4759ead35dadbdff97d2a0 = L.circleMarker(\\n\",\n       \"                [39.65782, 118.1838],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d680c592686e190224563de5b755ba07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_793c3669de8c1b26cff3b7a057fbeb7b = $(`&lt;div id=&quot;html_793c3669de8c1b26cff3b7a057fbeb7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1838             latitude:39.65782             PM2_5:55.8933518             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d680c592686e190224563de5b755ba07.setContent(html_793c3669de8c1b26cff3b7a057fbeb7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6cd94b065e4759ead35dadbdff97d2a0.bindPopup(popup_d680c592686e190224563de5b755ba07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ad7a8dbb3ccd36aa2a40c80090f6c10 = L.circleMarker(\\n\",\n       \"                [49.2261, 119.7594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7fd354e1ed66463ce6771f33167fd75f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3802d7cc8bf3039ee914ed5e01ad3d0 = $(`&lt;div id=&quot;html_a3802d7cc8bf3039ee914ed5e01ad3d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7594             latitude:49.2261             PM2_5:15.27361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7fd354e1ed66463ce6771f33167fd75f.setContent(html_a3802d7cc8bf3039ee914ed5e01ad3d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ad7a8dbb3ccd36aa2a40c80090f6c10.bindPopup(popup_7fd354e1ed66463ce6771f33167fd75f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a95029ac7214f7040af434d3f6619466 = L.circleMarker(\\n\",\n       \"                [23.3633, 116.7244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49b551633fc6165241211a2da6120d1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1171e545d60375e2564f210b74f75e19 = $(`&lt;div id=&quot;html_1171e545d60375e2564f210b74f75e19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7244             latitude:23.3633             PM2_5:19.99022346             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49b551633fc6165241211a2da6120d1d.setContent(html_1171e545d60375e2564f210b74f75e19);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a95029ac7214f7040af434d3f6619466.bindPopup(popup_49b551633fc6165241211a2da6120d1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_465ba4f1246b7e709d0ccbf3b551a2b9 = L.circleMarker(\\n\",\n       \"                [35.248889, 115.42277],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_189a5dd58855732ae2c94b8e3a8aeb41 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6010d4510995978da2a690043d13506a = $(`&lt;div id=&quot;html_6010d4510995978da2a690043d13506a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.42277             latitude:35.248889             PM2_5:58.11235955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_189a5dd58855732ae2c94b8e3a8aeb41.setContent(html_6010d4510995978da2a690043d13506a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_465ba4f1246b7e709d0ccbf3b551a2b9.bindPopup(popup_189a5dd58855732ae2c94b8e3a8aeb41)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a2b001c72261b05781e66e806617541 = L.circleMarker(\\n\",\n       \"                [45.305, 130.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b7284b93293a00a40ca4347ed04d3f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57dc293e119e9264bb9c0f621875ac99 = $(`&lt;div id=&quot;html_57dc293e119e9264bb9c0f621875ac99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9817             latitude:45.305             PM2_5:30.75431034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b7284b93293a00a40ca4347ed04d3f4.setContent(html_57dc293e119e9264bb9c0f621875ac99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a2b001c72261b05781e66e806617541.bindPopup(popup_1b7284b93293a00a40ca4347ed04d3f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48e4aa3caf2e6a51a04d019a7364eb9f = L.circleMarker(\\n\",\n       \"                [31.5031, 120.242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0653ccbf99486ac2cafe2bb9d0e50262 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d365759f978f12e28ed34a3a84f39317 = $(`&lt;div id=&quot;html_d365759f978f12e28ed34a3a84f39317&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.242             latitude:31.5031             PM2_5:45.41292135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0653ccbf99486ac2cafe2bb9d0e50262.setContent(html_d365759f978f12e28ed34a3a84f39317);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48e4aa3caf2e6a51a04d019a7364eb9f.bindPopup(popup_0653ccbf99486ac2cafe2bb9d0e50262)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c4fb5130767c7cc237b34cc023118ab1 = L.circleMarker(\\n\",\n       \"                [47.3349, 130.2659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_791076b5d185dc950a5f3bfedcb7ac02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c8f29926cef3a65a91830e779abe383 = $(`&lt;div id=&quot;html_2c8f29926cef3a65a91830e779abe383&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.2659             latitude:47.3349             PM2_5:25.09206799             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_791076b5d185dc950a5f3bfedcb7ac02.setContent(html_2c8f29926cef3a65a91830e779abe383);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c4fb5130767c7cc237b34cc023118ab1.bindPopup(popup_791076b5d185dc950a5f3bfedcb7ac02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d76408bbc638e4b64872d52cd61642c8 = L.circleMarker(\\n\",\n       \"                [27.6428, 113.8381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3abdb999addeb525b6274c6dc8588c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a447ce8b3027f7a92edb46bf791b8277 = $(`&lt;div id=&quot;html_a447ce8b3027f7a92edb46bf791b8277&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8381             latitude:27.6428             PM2_5:47.81111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3abdb999addeb525b6274c6dc8588c9.setContent(html_a447ce8b3027f7a92edb46bf791b8277);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d76408bbc638e4b64872d52cd61642c8.bindPopup(popup_a3abdb999addeb525b6274c6dc8588c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7966375daa2f618a43f5d7f561e35f84 = L.circleMarker(\\n\",\n       \"                [29.635, 119.026],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f65eff49dfcf47be66d958ebeea4a444 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f11d706709f00b35bf23b9a6d3a9fa45 = $(`&lt;div id=&quot;html_f11d706709f00b35bf23b9a6d3a9fa45&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.026             latitude:29.635             PM2_5:27.02982955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f65eff49dfcf47be66d958ebeea4a444.setContent(html_f11d706709f00b35bf23b9a6d3a9fa45);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7966375daa2f618a43f5d7f561e35f84.bindPopup(popup_f65eff49dfcf47be66d958ebeea4a444)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f9cd6ba100ffdcc2e51ce244b36a90b = L.circleMarker(\\n\",\n       \"                [41.5647, 120.4247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f946d7d19910166ff134b077fdcc26c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c86b2f8f892ae4a92023c3cf12726a72 = $(`&lt;div id=&quot;html_c86b2f8f892ae4a92023c3cf12726a72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4247             latitude:41.5647             PM2_5:24.74857955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f946d7d19910166ff134b077fdcc26c.setContent(html_c86b2f8f892ae4a92023c3cf12726a72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f9cd6ba100ffdcc2e51ce244b36a90b.bindPopup(popup_8f946d7d19910166ff134b077fdcc26c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6dae8b39158b3f6a594688d007ea821 = L.circleMarker(\\n\",\n       \"                [28.5773, 121.377],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3c3e3a589db35f7c2f722306f84e442 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff17a3b0cae4d506f146c3bc46ffc611 = $(`&lt;div id=&quot;html_ff17a3b0cae4d506f146c3bc46ffc611&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.377             latitude:28.5773             PM2_5:31.56478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3c3e3a589db35f7c2f722306f84e442.setContent(html_ff17a3b0cae4d506f146c3bc46ffc611);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6dae8b39158b3f6a594688d007ea821.bindPopup(popup_a3c3e3a589db35f7c2f722306f84e442)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2df364609f9c62d96741dca5b3a1e809 = L.circleMarker(\\n\",\n       \"                [46.7975, 130.3258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa5eae121198e84a85c829270f3c7975 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_351a82859b5e103bb0405956f49836bd = $(`&lt;div id=&quot;html_351a82859b5e103bb0405956f49836bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3258             latitude:46.7975             PM2_5:32.52089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa5eae121198e84a85c829270f3c7975.setContent(html_351a82859b5e103bb0405956f49836bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2df364609f9c62d96741dca5b3a1e809.bindPopup(popup_aa5eae121198e84a85c829270f3c7975)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_471945e8feff2383c937d85a3604a228 = L.circleMarker(\\n\",\n       \"                [31.388, 120.953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88b0f370be1779d301207f62d9cc59a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9c65c96d81877e265da8b9db3f1c0e4 = $(`&lt;div id=&quot;html_d9c65c96d81877e265da8b9db3f1c0e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.953             latitude:31.388             PM2_5:37.71892655             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88b0f370be1779d301207f62d9cc59a4.setContent(html_d9c65c96d81877e265da8b9db3f1c0e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_471945e8feff2383c937d85a3604a228.bindPopup(popup_88b0f370be1779d301207f62d9cc59a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc350afc28ecbae65e6b16c4f78d3ed0 = L.circleMarker(\\n\",\n       \"                [41.615, 120.3939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8e11b06f893656157accb12a4b379fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3cea1d7846f1cd4b9153acd8bdf5cb2e = $(`&lt;div id=&quot;html_3cea1d7846f1cd4b9153acd8bdf5cb2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.3939             latitude:41.615             PM2_5:24.47443182             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8e11b06f893656157accb12a4b379fd.setContent(html_3cea1d7846f1cd4b9153acd8bdf5cb2e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc350afc28ecbae65e6b16c4f78d3ed0.bindPopup(popup_d8e11b06f893656157accb12a4b379fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dce2d42e7522f75c47f959c69f08e6d9 = L.circleMarker(\\n\",\n       \"                [36.5767, 109.4824],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d4b57f9c0ce5393265a0b42c5120c7d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d8279340fc07857f310352110b1e396 = $(`&lt;div id=&quot;html_8d8279340fc07857f310352110b1e396&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4824             latitude:36.5767             PM2_5:30.72346369             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d4b57f9c0ce5393265a0b42c5120c7d.setContent(html_8d8279340fc07857f310352110b1e396);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dce2d42e7522f75c47f959c69f08e6d9.bindPopup(popup_9d4b57f9c0ce5393265a0b42c5120c7d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d38dec88de1e2b540d71edaf0d5bd62 = L.circleMarker(\\n\",\n       \"                [32.7639, 116.8028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c6c2f8618d92e5aa8c4b99952d9a77a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f309020c8924617e4a85e8218cd9775 = $(`&lt;div id=&quot;html_3f309020c8924617e4a85e8218cd9775&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8028             latitude:32.7639             PM2_5:56.22284123             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c6c2f8618d92e5aa8c4b99952d9a77a.setContent(html_3f309020c8924617e4a85e8218cd9775);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d38dec88de1e2b540d71edaf0d5bd62.bindPopup(popup_3c6c2f8618d92e5aa8c4b99952d9a77a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bca83979c0dd67f11048f4efac3710a = L.circleMarker(\\n\",\n       \"                [23.7208, 109.2131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_955a904438bef3f51e83e9540488818f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad29badbe2b6570beef0d419dae46478 = $(`&lt;div id=&quot;html_ad29badbe2b6570beef0d419dae46478&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2131             latitude:23.7208             PM2_5:38.19806094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_955a904438bef3f51e83e9540488818f.setContent(html_ad29badbe2b6570beef0d419dae46478);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bca83979c0dd67f11048f4efac3710a.bindPopup(popup_955a904438bef3f51e83e9540488818f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3e1a1440c7e353f6f02c36807a50968 = L.circleMarker(\\n\",\n       \"                [35.4144, 116.5856],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c61e8ddbdbc5d6073c466035974b723a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ef0e2787912b5de702f88227d6ebb34 = $(`&lt;div id=&quot;html_5ef0e2787912b5de702f88227d6ebb34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5856             latitude:35.4144             PM2_5:52.05196629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c61e8ddbdbc5d6073c466035974b723a.setContent(html_5ef0e2787912b5de702f88227d6ebb34);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3e1a1440c7e353f6f02c36807a50968.bindPopup(popup_c61e8ddbdbc5d6073c466035974b723a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37ecbc5dbb35938e2040ecd178eb249b = L.circleMarker(\\n\",\n       \"                [50.4217, 124.1303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af657f94b63b9135d76736a7648ba123 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0364281a9707421c80ba562d6659691 = $(`&lt;div id=&quot;html_c0364281a9707421c80ba562d6659691&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.1303             latitude:50.4217             PM2_5:13.39714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af657f94b63b9135d76736a7648ba123.setContent(html_c0364281a9707421c80ba562d6659691);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37ecbc5dbb35938e2040ecd178eb249b.bindPopup(popup_af657f94b63b9135d76736a7648ba123)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1447d9f4b5b28e69be1c7123045d1354 = L.circleMarker(\\n\",\n       \"                [38.4928, 112.7003],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b6ae3a23700f724b4d8750006bbc288 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_53a57eb888b33c3ecd334782d4a88b43 = $(`&lt;div id=&quot;html_53a57eb888b33c3ecd334782d4a88b43&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7003             latitude:38.4928             PM2_5:49.83427762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b6ae3a23700f724b4d8750006bbc288.setContent(html_53a57eb888b33c3ecd334782d4a88b43);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1447d9f4b5b28e69be1c7123045d1354.bindPopup(popup_8b6ae3a23700f724b4d8750006bbc288)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb9a28719ffad5d611b524f359f0059e = L.circleMarker(\\n\",\n       \"                [25.0124, 102.743],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6cc5df0c0f4e7e6788583ea719838353 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d216156d5a79abe1e1fa8f3d17d149ba = $(`&lt;div id=&quot;html_d216156d5a79abe1e1fa8f3d17d149ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.743             latitude:25.0124             PM2_5:30.86350975             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6cc5df0c0f4e7e6788583ea719838353.setContent(html_d216156d5a79abe1e1fa8f3d17d149ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb9a28719ffad5d611b524f359f0059e.bindPopup(popup_6cc5df0c0f4e7e6788583ea719838353)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c81b15b57d2e1f0df9432dcb1b32b55b = L.circleMarker(\\n\",\n       \"                [35.9019, 114.17],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_497c8a1473b684eab44aada1b36a2ec1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a616ff2acc7c5b0875e7b1094761956 = $(`&lt;div id=&quot;html_3a616ff2acc7c5b0875e7b1094761956&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.17             latitude:35.9019             PM2_5:56.75702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_497c8a1473b684eab44aada1b36a2ec1.setContent(html_3a616ff2acc7c5b0875e7b1094761956);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c81b15b57d2e1f0df9432dcb1b32b55b.bindPopup(popup_497c8a1473b684eab44aada1b36a2ec1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d5dc03ddc16f64840677c89a6be9cae = L.circleMarker(\\n\",\n       \"                [21.4689, 111.0286],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_72c617028a56dcc6ebf9b473c992cd75 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1208d6c0683efa432a166f8aa8cc5644 = $(`&lt;div id=&quot;html_1208d6c0683efa432a166f8aa8cc5644&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0286             latitude:21.4689             PM2_5:20.53975535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_72c617028a56dcc6ebf9b473c992cd75.setContent(html_1208d6c0683efa432a166f8aa8cc5644);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d5dc03ddc16f64840677c89a6be9cae.bindPopup(popup_72c617028a56dcc6ebf9b473c992cd75)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c159c524f73d5347c6dceb0743d565d = L.circleMarker(\\n\",\n       \"                [32.41, 119.404],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35d65eff7f6bf09a8d8cdcef604edba6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ec8288f938193f2d2c8f17e03ac08f1 = $(`&lt;div id=&quot;html_1ec8288f938193f2d2c8f17e03ac08f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.404             latitude:32.41             PM2_5:43.72058824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35d65eff7f6bf09a8d8cdcef604edba6.setContent(html_1ec8288f938193f2d2c8f17e03ac08f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c159c524f73d5347c6dceb0743d565d.bindPopup(popup_35d65eff7f6bf09a8d8cdcef604edba6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48ccea1d3286891d44e7dd0827081ba2 = L.circleMarker(\\n\",\n       \"                [32.0564, 112.1392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7629e8f6873ed4b25dbaa9f441d2a50a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e6f50b190efd171db9a4b3df65c8018 = $(`&lt;div id=&quot;html_4e6f50b190efd171db9a4b3df65c8018&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1392             latitude:32.0564             PM2_5:60.23389356             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7629e8f6873ed4b25dbaa9f441d2a50a.setContent(html_4e6f50b190efd171db9a4b3df65c8018);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48ccea1d3286891d44e7dd0827081ba2.bindPopup(popup_7629e8f6873ed4b25dbaa9f441d2a50a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3d22aecc2bcbf5eb4ee032ea103ed79 = L.circleMarker(\\n\",\n       \"                [33.63063889, 116.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1235195d3923f82a2b841ce974c17ca1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_274c48a1bda2f7fce0bfd89833714d48 = $(`&lt;div id=&quot;html_274c48a1bda2f7fce0bfd89833714d48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.989             latitude:33.63063889             PM2_5:60.00277008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1235195d3923f82a2b841ce974c17ca1.setContent(html_274c48a1bda2f7fce0bfd89833714d48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3d22aecc2bcbf5eb4ee032ea103ed79.bindPopup(popup_1235195d3923f82a2b841ce974c17ca1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e892d9b091c501a329ad809ce24ae58 = L.circleMarker(\\n\",\n       \"                [41.8417, 123.7117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13770db389ed2d535a25c5feb846d2de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec7f37e4f324ecec94febc9c26bc19ba = $(`&lt;div id=&quot;html_ec7f37e4f324ecec94febc9c26bc19ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7117             latitude:41.8417             PM2_5:31.18296089             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13770db389ed2d535a25c5feb846d2de.setContent(html_ec7f37e4f324ecec94febc9c26bc19ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e892d9b091c501a329ad809ce24ae58.bindPopup(popup_13770db389ed2d535a25c5feb846d2de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a76fa49728d7deef577486d03e46fa9 = L.circleMarker(\\n\",\n       \"                [24.2654, 116.1248],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da9f20af53fcb65e32c325927098138e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f4d8f806acd23b3bd70f4079b49f30f = $(`&lt;div id=&quot;html_9f4d8f806acd23b3bd70f4079b49f30f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1248             latitude:24.2654             PM2_5:28.63611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da9f20af53fcb65e32c325927098138e.setContent(html_9f4d8f806acd23b3bd70f4079b49f30f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a76fa49728d7deef577486d03e46fa9.bindPopup(popup_da9f20af53fcb65e32c325927098138e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_437c4f63fc6da0265c754b6f932bc1b5 = L.circleMarker(\\n\",\n       \"                [24.3898, 109.4883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_178b924047922db62b5d3dbb4a851ac3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d393b203153306fea5a8e4025a1da31 = $(`&lt;div id=&quot;html_8d393b203153306fea5a8e4025a1da31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4883             latitude:24.3898             PM2_5:38.23142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_178b924047922db62b5d3dbb4a851ac3.setContent(html_8d393b203153306fea5a8e4025a1da31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_437c4f63fc6da0265c754b6f932bc1b5.bindPopup(popup_178b924047922db62b5d3dbb4a851ac3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31d634616d2d55ad0652f1bfa5a457e1 = L.circleMarker(\\n\",\n       \"                [29.41569, 106.5506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49cab7196b0e56c7221c05427cc7c0eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a09f91e6962c8cd6e76f6811b8a3d302 = $(`&lt;div id=&quot;html_a09f91e6962c8cd6e76f6811b8a3d302&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.5506             latitude:29.41569             PM2_5:31.64325843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49cab7196b0e56c7221c05427cc7c0eb.setContent(html_a09f91e6962c8cd6e76f6811b8a3d302);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31d634616d2d55ad0652f1bfa5a457e1.bindPopup(popup_49cab7196b0e56c7221c05427cc7c0eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fab90ef3f6477200a51392a935bb5d82 = L.circleMarker(\\n\",\n       \"                [40.0625, 124.3303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f01273bf4386276bc024e668c50f1e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3b959572685b4f71d97a241db6316b2 = $(`&lt;div id=&quot;html_b3b959572685b4f71d97a241db6316b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3303             latitude:40.0625             PM2_5:23.85451977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f01273bf4386276bc024e668c50f1e3.setContent(html_b3b959572685b4f71d97a241db6316b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fab90ef3f6477200a51392a935bb5d82.bindPopup(popup_9f01273bf4386276bc024e668c50f1e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfb4548679d838996b328351c4b6c89b = L.circleMarker(\\n\",\n       \"                [32.3878, 119.46],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d462af25ac6a71a411a2417d15caa021 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f9393f77651c9143ab3a95a00a8ddc9 = $(`&lt;div id=&quot;html_0f9393f77651c9143ab3a95a00a8ddc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.46             latitude:32.3878             PM2_5:47.79369628             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d462af25ac6a71a411a2417d15caa021.setContent(html_0f9393f77651c9143ab3a95a00a8ddc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfb4548679d838996b328351c4b6c89b.bindPopup(popup_d462af25ac6a71a411a2417d15caa021)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_baad288d40279d74150087e1d485530b = L.circleMarker(\\n\",\n       \"                [39.5986, 109.7736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02d043bab78979c3ef14428e5b72fc02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d0ef8558e37b1324f75244c56ce5822 = $(`&lt;div id=&quot;html_0d0ef8558e37b1324f75244c56ce5822&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7736             latitude:39.5986             PM2_5:19.47191011             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02d043bab78979c3ef14428e5b72fc02.setContent(html_0d0ef8558e37b1324f75244c56ce5822);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_baad288d40279d74150087e1d485530b.bindPopup(popup_02d043bab78979c3ef14428e5b72fc02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f120274682d6368f385a1aa7f17cbd75 = L.circleMarker(\\n\",\n       \"                [29.2958, 117.2111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2076db7f31a7361a9bf3716c97f25d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc7ba83cbf7662c584d2883d9cbfc63e = $(`&lt;div id=&quot;html_bc7ba83cbf7662c584d2883d9cbfc63e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2111             latitude:29.2958             PM2_5:34.08831909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2076db7f31a7361a9bf3716c97f25d9.setContent(html_bc7ba83cbf7662c584d2883d9cbfc63e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f120274682d6368f385a1aa7f17cbd75.bindPopup(popup_a2076db7f31a7361a9bf3716c97f25d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11b3644fc09a090f93d6286aab0b2aec = L.circleMarker(\\n\",\n       \"                [29.6007, 103.7506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2cfb2e919f4650512d2f131cebd79ca2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b75a5a8a99c5e1ce2cc31d515d4a164f = $(`&lt;div id=&quot;html_b75a5a8a99c5e1ce2cc31d515d4a164f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7506             latitude:29.6007             PM2_5:49.0491573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2cfb2e919f4650512d2f131cebd79ca2.setContent(html_b75a5a8a99c5e1ce2cc31d515d4a164f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11b3644fc09a090f93d6286aab0b2aec.bindPopup(popup_2cfb2e919f4650512d2f131cebd79ca2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2135d5cc94f94ac5acf041d1580c5013 = L.circleMarker(\\n\",\n       \"                [33.581, 114.014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bb406d3dfa85da04d94a690287db34c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ed0296a7088a6049747baf9d15904f1 = $(`&lt;div id=&quot;html_1ed0296a7088a6049747baf9d15904f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.014             latitude:33.581             PM2_5:57.82033426             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bb406d3dfa85da04d94a690287db34c.setContent(html_1ed0296a7088a6049747baf9d15904f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2135d5cc94f94ac5acf041d1580c5013.bindPopup(popup_5bb406d3dfa85da04d94a690287db34c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59fa7c0b8391fc3ba638c56697323d00 = L.circleMarker(\\n\",\n       \"                [33.38256667, 104.9338889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c023d74a5c76390fb06ba1c8b9edbec9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_072760c36e98b38161db74379c2aa8b3 = $(`&lt;div id=&quot;html_072760c36e98b38161db74379c2aa8b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9338889             latitude:33.38256667             PM2_5:22.50144092             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c023d74a5c76390fb06ba1c8b9edbec9.setContent(html_072760c36e98b38161db74379c2aa8b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59fa7c0b8391fc3ba638c56697323d00.bindPopup(popup_c023d74a5c76390fb06ba1c8b9edbec9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d0f133e3a1b25ee2ed8d3c15023c660c = L.circleMarker(\\n\",\n       \"                [26.9056, 112.5664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6fe33b0a8ae08df365ef67321970c73 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f47a4c60e1c24521e3ebbb7879fd196 = $(`&lt;div id=&quot;html_5f47a4c60e1c24521e3ebbb7879fd196&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5664             latitude:26.9056             PM2_5:43.28072626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6fe33b0a8ae08df365ef67321970c73.setContent(html_5f47a4c60e1c24521e3ebbb7879fd196);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d0f133e3a1b25ee2ed8d3c15023c660c.bindPopup(popup_b6fe33b0a8ae08df365ef67321970c73)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6f2aba5ae5e474294d85e614ea594be = L.circleMarker(\\n\",\n       \"                [34.864, 117.5564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db6a3a285536e2638bc44a840a4c4d96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f8368139ddd4dda6ba8ca5757f847efe = $(`&lt;div id=&quot;html_f8368139ddd4dda6ba8ca5757f847efe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5564             latitude:34.864             PM2_5:51.03221289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db6a3a285536e2638bc44a840a4c4d96.setContent(html_f8368139ddd4dda6ba8ca5757f847efe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6f2aba5ae5e474294d85e614ea594be.bindPopup(popup_db6a3a285536e2638bc44a840a4c4d96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9c176596c0603440aa8f118ccef6e0b = L.circleMarker(\\n\",\n       \"                [31.896, 121.173],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5fc5997a4cc30c4d91e6abf12d44ce52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_251212c8718ea53ad82988bcd72fd01c = $(`&lt;div id=&quot;html_251212c8718ea53ad82988bcd72fd01c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.173             latitude:31.896             PM2_5:35.22303207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5fc5997a4cc30c4d91e6abf12d44ce52.setContent(html_251212c8718ea53ad82988bcd72fd01c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9c176596c0603440aa8f118ccef6e0b.bindPopup(popup_5fc5997a4cc30c4d91e6abf12d44ce52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_875b1372521c979ec1f11f413228dab9 = L.circleMarker(\\n\",\n       \"                [22.0225, 100.8017],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4be3472f3d29582f799ab95b16a2cd89 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e98bb361f1b5bb27e171f4819cf6d732 = $(`&lt;div id=&quot;html_e98bb361f1b5bb27e171f4819cf6d732&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.8017             latitude:22.0225             PM2_5:16.5130814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4be3472f3d29582f799ab95b16a2cd89.setContent(html_e98bb361f1b5bb27e171f4819cf6d732);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_875b1372521c979ec1f11f413228dab9.bindPopup(popup_4be3472f3d29582f799ab95b16a2cd89)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_797868d60f954c295827474a1ac313e2 = L.circleMarker(\\n\",\n       \"                [30.8811, 117.7442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8df52312bc91054759d6c8503cbf7f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_192fba5711d55f96bd4f1f849a1c7cdb = $(`&lt;div id=&quot;html_192fba5711d55f96bd4f1f849a1c7cdb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7442             latitude:30.8811             PM2_5:54.68333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8df52312bc91054759d6c8503cbf7f7.setContent(html_192fba5711d55f96bd4f1f849a1c7cdb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_797868d60f954c295827474a1ac313e2.bindPopup(popup_a8df52312bc91054759d6c8503cbf7f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3fccc7b13ccded17ac678c1fbe4c9afd = L.circleMarker(\\n\",\n       \"                [28.9745, 118.855],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6651f5b47477be31aec58dbf43fe72b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c1c79e0d934ae29d39a13eae9cdaf8e = $(`&lt;div id=&quot;html_1c1c79e0d934ae29d39a13eae9cdaf8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.855             latitude:28.9745             PM2_5:35.13927577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6651f5b47477be31aec58dbf43fe72b3.setContent(html_1c1c79e0d934ae29d39a13eae9cdaf8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3fccc7b13ccded17ac678c1fbe4c9afd.bindPopup(popup_6651f5b47477be31aec58dbf43fe72b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6ba6b105f325ca458d2dd8432745f80 = L.circleMarker(\\n\",\n       \"                [24.4674, 117.6336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b3ee49cdfb00fe485825930f245caf6a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3de29963a5a09361d3e68c1f44b8989 = $(`&lt;div id=&quot;html_e3de29963a5a09361d3e68c1f44b8989&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6336             latitude:24.4674             PM2_5:27.59357542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b3ee49cdfb00fe485825930f245caf6a.setContent(html_e3de29963a5a09361d3e68c1f44b8989);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6ba6b105f325ca458d2dd8432745f80.bindPopup(popup_b3ee49cdfb00fe485825930f245caf6a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5060ffbffe0b7a4c8da6127a1ab5893a = L.circleMarker(\\n\",\n       \"                [38.2478, 109.7336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2df1239d828e9e50d1f10fc4f4f8ca38 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9dac02c331e070c1bc6d0adf4154ee5 = $(`&lt;div id=&quot;html_d9dac02c331e070c1bc6d0adf4154ee5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7336             latitude:38.2478             PM2_5:31.4501385             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2df1239d828e9e50d1f10fc4f4f8ca38.setContent(html_d9dac02c331e070c1bc6d0adf4154ee5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5060ffbffe0b7a4c8da6127a1ab5893a.bindPopup(popup_2df1239d828e9e50d1f10fc4f4f8ca38)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3df6a57c8904dc82ff8918650b58676d = L.circleMarker(\\n\",\n       \"                [37.4442, 118.5857],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0fea4d20ce85da78d7aad469d78f2961 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_074e02a1a488bc7ce339439a4155f92c = $(`&lt;div id=&quot;html_074e02a1a488bc7ce339439a4155f92c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5857             latitude:37.4442             PM2_5:50.74328358             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0fea4d20ce85da78d7aad469d78f2961.setContent(html_074e02a1a488bc7ce339439a4155f92c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3df6a57c8904dc82ff8918650b58676d.bindPopup(popup_0fea4d20ce85da78d7aad469d78f2961)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9464964e5b6bcca9f4452b331d0dd568 = L.circleMarker(\\n\",\n       \"                [39.79777778, 98.26722222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d64148c5572f7922e466b2ace67bd081 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7844342b7748d7bbeab41320bb012a73 = $(`&lt;div id=&quot;html_7844342b7748d7bbeab41320bb012a73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.26722222             latitude:39.79777778             PM2_5:28.45014245             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d64148c5572f7922e466b2ace67bd081.setContent(html_7844342b7748d7bbeab41320bb012a73);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9464964e5b6bcca9f4452b331d0dd568.bindPopup(popup_d64148c5572f7922e466b2ace67bd081)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83a768940abebb22902075b74bd01451 = L.circleMarker(\\n\",\n       \"                [33.7214, 113.3064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87d472a8a133e90ad863f41966b38448 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2eaecaf1ae01b58370449a5d10b7b967 = $(`&lt;div id=&quot;html_2eaecaf1ae01b58370449a5d10b7b967&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3064             latitude:33.7214             PM2_5:58.5933908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87d472a8a133e90ad863f41966b38448.setContent(html_2eaecaf1ae01b58370449a5d10b7b967);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83a768940abebb22902075b74bd01451.bindPopup(popup_87d472a8a133e90ad863f41966b38448)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0196c082d85b4638aaa286a7614ec26a = L.circleMarker(\\n\",\n       \"                [30.5719, 114.3672],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96a3902659625ca0b7833d3fc0ef0552 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba6d99b1110d42bbd1819f888a3a6a31 = $(`&lt;div id=&quot;html_ba6d99b1110d42bbd1819f888a3a6a31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3672             latitude:30.5719             PM2_5:48.38636364             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96a3902659625ca0b7833d3fc0ef0552.setContent(html_ba6d99b1110d42bbd1819f888a3a6a31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0196c082d85b4638aaa286a7614ec26a.bindPopup(popup_96a3902659625ca0b7833d3fc0ef0552)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e684704675fed5b085b853dad76406e8 = L.circleMarker(\\n\",\n       \"                [31.7897, 119.8914],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8aba79cd535538c213ac3410b25413b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3427cf4b1b8b12224bc094f53ede6de = $(`&lt;div id=&quot;html_c3427cf4b1b8b12224bc094f53ede6de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.8914             latitude:31.7897             PM2_5:45.79469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8aba79cd535538c213ac3410b25413b1.setContent(html_c3427cf4b1b8b12224bc094f53ede6de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e684704675fed5b085b853dad76406e8.bindPopup(popup_8aba79cd535538c213ac3410b25413b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f31667f71a7d14b18f9e6937ab77bdee = L.circleMarker(\\n\",\n       \"                [39.625, 121.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d455ac3144235e7502314eeedf7dd51a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3868d3df5411875b8a13f46596cebb18 = $(`&lt;div id=&quot;html_3868d3df5411875b8a13f46596cebb18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.989             latitude:39.625             PM2_5:30.40555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d455ac3144235e7502314eeedf7dd51a.setContent(html_3868d3df5411875b8a13f46596cebb18);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f31667f71a7d14b18f9e6937ab77bdee.bindPopup(popup_d455ac3144235e7502314eeedf7dd51a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10ca3147e08d1ca5d8e912b0da7f5d15 = L.circleMarker(\\n\",\n       \"                [31.215, 107.525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b2782675962138350d3985511e282ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c1693e8476aca8e2ee97c6151434c05 = $(`&lt;div id=&quot;html_1c1693e8476aca8e2ee97c6151434c05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.525             latitude:31.215             PM2_5:46.16016713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b2782675962138350d3985511e282ae.setContent(html_1c1693e8476aca8e2ee97c6151434c05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10ca3147e08d1ca5d8e912b0da7f5d15.bindPopup(popup_7b2782675962138350d3985511e282ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ca44d4e2a120abc9955ecfdde45a60f = L.circleMarker(\\n\",\n       \"                [36.0822, 111.5169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61ae6b90ae9de0c482ef588f0e492280 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17b7085da69781cc4bf63287864f5c17 = $(`&lt;div id=&quot;html_17b7085da69781cc4bf63287864f5c17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5169             latitude:36.0822             PM2_5:78.88718663             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61ae6b90ae9de0c482ef588f0e492280.setContent(html_17b7085da69781cc4bf63287864f5c17);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ca44d4e2a120abc9955ecfdde45a60f.bindPopup(popup_61ae6b90ae9de0c482ef588f0e492280)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a30847067571073a32a106e7a878786 = L.circleMarker(\\n\",\n       \"                [29.2718, 88.8876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3640c25ad387d8b0254632104cefb4b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ef973990725b3e33d5e6b110576bac5 = $(`&lt;div id=&quot;html_2ef973990725b3e33d5e6b110576bac5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.8876             latitude:29.2718             PM2_5:13.47058824             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3640c25ad387d8b0254632104cefb4b7.setContent(html_2ef973990725b3e33d5e6b110576bac5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a30847067571073a32a106e7a878786.bindPopup(popup_3640c25ad387d8b0254632104cefb4b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a4592262b6176f765417bd0790a2014 = L.circleMarker(\\n\",\n       \"                [32.996, 113.996],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bcd85472e527d0121f2577f5fb4f8522 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_116b9969b2c779c6e6c80253246ded9e = $(`&lt;div id=&quot;html_116b9969b2c779c6e6c80253246ded9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.996             latitude:32.996             PM2_5:53.78888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bcd85472e527d0121f2577f5fb4f8522.setContent(html_116b9969b2c779c6e6c80253246ded9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a4592262b6176f765417bd0790a2014.bindPopup(popup_bcd85472e527d0121f2577f5fb4f8522)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3e37e3b5f5aac9f628339ef8cad6d5b = L.circleMarker(\\n\",\n       \"                [24.4072, 111.5622],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f777a7eb696b16c2647400cb97af56e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38530533178dc0d8f0a66420f9d32aff = $(`&lt;div id=&quot;html_38530533178dc0d8f0a66420f9d32aff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5622             latitude:24.4072             PM2_5:38.43194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f777a7eb696b16c2647400cb97af56e9.setContent(html_38530533178dc0d8f0a66420f9d32aff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3e37e3b5f5aac9f628339ef8cad6d5b.bindPopup(popup_f777a7eb696b16c2647400cb97af56e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c3231906090c7939e0a02f4ce80f99c = L.circleMarker(\\n\",\n       \"                [30.8596, 120.1844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94fa18b1ce224dc5da16d44c92a7fc1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b02d5ecafa9f384ee9875489bde4a5ad = $(`&lt;div id=&quot;html_b02d5ecafa9f384ee9875489bde4a5ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1844             latitude:30.8596             PM2_5:41.06022409             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94fa18b1ce224dc5da16d44c92a7fc1d.setContent(html_b02d5ecafa9f384ee9875489bde4a5ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c3231906090c7939e0a02f4ce80f99c.bindPopup(popup_94fa18b1ce224dc5da16d44c92a7fc1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79cc2983e2a0a076cc6bd576c672f15e = L.circleMarker(\\n\",\n       \"                [40.6575, 109.8104],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb9c1b6ae1dd5a07d9ed3985f41e4823 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9f177fdd8fff86ddd435a1a12e6a8b0 = $(`&lt;div id=&quot;html_f9f177fdd8fff86ddd435a1a12e6a8b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8104             latitude:40.6575             PM2_5:40.33005618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb9c1b6ae1dd5a07d9ed3985f41e4823.setContent(html_f9f177fdd8fff86ddd435a1a12e6a8b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79cc2983e2a0a076cc6bd576c672f15e.bindPopup(popup_cb9c1b6ae1dd5a07d9ed3985f41e4823)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1c54b3f12c01a86472c6c52fdb6297f = L.circleMarker(\\n\",\n       \"                [38.5339, 102.1725],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0ca85c8eeb2b958ca63c7d41c29d67c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1053703fc6dcdfd1cc5d1b47ace9458b = $(`&lt;div id=&quot;html_1053703fc6dcdfd1cc5d1b47ace9458b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1725             latitude:38.5339             PM2_5:28.71587744             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0ca85c8eeb2b958ca63c7d41c29d67c.setContent(html_1053703fc6dcdfd1cc5d1b47ace9458b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1c54b3f12c01a86472c6c52fdb6297f.bindPopup(popup_e0ca85c8eeb2b958ca63c7d41c29d67c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9bcf8dad080db17df0379ec6c61d5c52 = L.circleMarker(\\n\",\n       \"                [28.0005, 116.3574],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ced7a03c68d79971df0aff9a24ec50d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12aa2042b491683627c25fe7d553d1ff = $(`&lt;div id=&quot;html_12aa2042b491683627c25fe7d553d1ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3574             latitude:28.0005             PM2_5:44.09887006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ced7a03c68d79971df0aff9a24ec50d2.setContent(html_12aa2042b491683627c25fe7d553d1ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9bcf8dad080db17df0379ec6c61d5c52.bindPopup(popup_ced7a03c68d79971df0aff9a24ec50d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f543c6a5a388d58aad9af62c79404446 = L.circleMarker(\\n\",\n       \"                [37.5639, 121.2514],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_234be9b4b359ad7a9c393478641a496e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebb0f84642ee4badd919c329964c268d = $(`&lt;div id=&quot;html_ebb0f84642ee4badd919c329964c268d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2514             latitude:37.5639             PM2_5:29.87078652             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_234be9b4b359ad7a9c393478641a496e.setContent(html_ebb0f84642ee4badd919c329964c268d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f543c6a5a388d58aad9af62c79404446.bindPopup(popup_234be9b4b359ad7a9c393478641a496e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fc04883deb6adda8b49d55cdc81c323 = L.circleMarker(\\n\",\n       \"                [39.0877, 117.307],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d68ffaf4dab9e8ec578022ad161575bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aafe3a4c34785cee5c5bf8af6f070bb7 = $(`&lt;div id=&quot;html_aafe3a4c34785cee5c5bf8af6f070bb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.307             latitude:39.0877             PM2_5:50.33704735             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d68ffaf4dab9e8ec578022ad161575bd.setContent(html_aafe3a4c34785cee5c5bf8af6f070bb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fc04883deb6adda8b49d55cdc81c323.bindPopup(popup_d68ffaf4dab9e8ec578022ad161575bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_290c21d34f5c3d3894a84f8f73393898 = L.circleMarker(\\n\",\n       \"                [29.6588, 90.9798],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb68c5efe05d54bd0248f071f533f2a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe36244e681d77f426ba0ca885abda6e = $(`&lt;div id=&quot;html_fe36244e681d77f426ba0ca885abda6e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:90.9798             latitude:29.6588             PM2_5:31.98979592             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb68c5efe05d54bd0248f071f533f2a9.setContent(html_fe36244e681d77f426ba0ca885abda6e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_290c21d34f5c3d3894a84f8f73393898.bindPopup(popup_fb68c5efe05d54bd0248f071f533f2a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3275bc7e87056bf1581363f276f68b0 = L.circleMarker(\\n\",\n       \"                [19.9969, 110.338],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c997a7e21e24e8a88991ba3e221543ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2753b3830c65b5737f58e54f490a0e4d = $(`&lt;div id=&quot;html_2753b3830c65b5737f58e54f490a0e4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.338             latitude:19.9969             PM2_5:18.88642659             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c997a7e21e24e8a88991ba3e221543ee.setContent(html_2753b3830c65b5737f58e54f490a0e4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3275bc7e87056bf1581363f276f68b0.bindPopup(popup_c997a7e21e24e8a88991ba3e221543ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6ecf152fb06e25f889011b39839ee52 = L.circleMarker(\\n\",\n       \"                [27.8094, 102.3419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3a4210e44857abb79033cfa4fd5a7c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51ce50100ab1852a3e02d3db5057145a = $(`&lt;div id=&quot;html_51ce50100ab1852a3e02d3db5057145a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.3419             latitude:27.8094             PM2_5:19.32142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3a4210e44857abb79033cfa4fd5a7c9.setContent(html_51ce50100ab1852a3e02d3db5057145a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6ecf152fb06e25f889011b39839ee52.bindPopup(popup_a3a4210e44857abb79033cfa4fd5a7c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_212ce772379eededa28702d9cf8489d3 = L.circleMarker(\\n\",\n       \"                [40.7736, 120.8631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5d8b3cfa3c1d8057da4c5fa37bafb8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58e0e7baed520586f0803210c679d25c = $(`&lt;div id=&quot;html_58e0e7baed520586f0803210c679d25c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8631             latitude:40.7736             PM2_5:32.87222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5d8b3cfa3c1d8057da4c5fa37bafb8a.setContent(html_58e0e7baed520586f0803210c679d25c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_212ce772379eededa28702d9cf8489d3.bindPopup(popup_e5d8b3cfa3c1d8057da4c5fa37bafb8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa31a1ae8187d931f17e26ef0acaf049 = L.circleMarker(\\n\",\n       \"                [41.0903, 122.0539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_971c53784b761769cd69283a33250506 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a70882643936a301ca162925ad9e0cb3 = $(`&lt;div id=&quot;html_a70882643936a301ca162925ad9e0cb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0539             latitude:41.0903             PM2_5:31.2005571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_971c53784b761769cd69283a33250506.setContent(html_a70882643936a301ca162925ad9e0cb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa31a1ae8187d931f17e26ef0acaf049.bindPopup(popup_971c53784b761769cd69283a33250506)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67dd1be4c58989dea3575c1dfbac2b88 = L.circleMarker(\\n\",\n       \"                [36.086, 114.32],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_735960f31a6d01e361394bff7a461c33 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f6f6dacdb373ef70c78484d282f0d3a = $(`&lt;div id=&quot;html_4f6f6dacdb373ef70c78484d282f0d3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.32             latitude:36.086             PM2_5:72.47486034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_735960f31a6d01e361394bff7a461c33.setContent(html_4f6f6dacdb373ef70c78484d282f0d3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67dd1be4c58989dea3575c1dfbac2b88.bindPopup(popup_735960f31a6d01e361394bff7a461c33)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd86251a337a61cf010ba91d93154cf5 = L.circleMarker(\\n\",\n       \"                [29.2647, 117.1558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b85d2edd9dc2211ed0af3651f9203d68 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f7e01d7a7db81f55f14965b292aad54 = $(`&lt;div id=&quot;html_3f7e01d7a7db81f55f14965b292aad54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1558             latitude:29.2647             PM2_5:32.66713483             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b85d2edd9dc2211ed0af3651f9203d68.setContent(html_3f7e01d7a7db81f55f14965b292aad54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd86251a337a61cf010ba91d93154cf5.bindPopup(popup_b85d2edd9dc2211ed0af3651f9203d68)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5a1efe486e5ce86ca0041bb92d9cd9b = L.circleMarker(\\n\",\n       \"                [21.6669, 110.9067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3507a6cc447a0330bb0086716e807b91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6844b2cc3da785c5f5a26a071b448dbe = $(`&lt;div id=&quot;html_6844b2cc3da785c5f5a26a071b448dbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9067             latitude:21.6669             PM2_5:30.53888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3507a6cc447a0330bb0086716e807b91.setContent(html_6844b2cc3da785c5f5a26a071b448dbe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5a1efe486e5ce86ca0041bb92d9cd9b.bindPopup(popup_3507a6cc447a0330bb0086716e807b91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e57137514b777327e35f718ba70736de = L.circleMarker(\\n\",\n       \"                [23.0467, 113.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c5a64f4cbc64c1056deff70944ef606 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0edf4e85ef38560966468a5c177d56ca = $(`&lt;div id=&quot;html_0edf4e85ef38560966468a5c177d56ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.144             latitude:23.0467             PM2_5:35.05211268             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c5a64f4cbc64c1056deff70944ef606.setContent(html_0edf4e85ef38560966468a5c177d56ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e57137514b777327e35f718ba70736de.bindPopup(popup_8c5a64f4cbc64c1056deff70944ef606)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b4265ee1dd645aee017856ff6890950 = L.circleMarker(\\n\",\n       \"                [41.7775, 123.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0124cfff83458b063473a2ab6e8b72d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a01d151ddf36eca6830e8e362de0630a = $(`&lt;div id=&quot;html_a01d151ddf36eca6830e8e362de0630a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.478             latitude:41.7775             PM2_5:34.99164345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0124cfff83458b063473a2ab6e8b72d.setContent(html_a01d151ddf36eca6830e8e362de0630a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b4265ee1dd645aee017856ff6890950.bindPopup(popup_c0124cfff83458b063473a2ab6e8b72d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_760b437794f0c4c5a806258aa33adfcd = L.circleMarker(\\n\",\n       \"                [37.5211, 111.1406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d28048850e05b6c968ad79a11453ba68 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78fd930de3135b78455edfb95a5a23bd = $(`&lt;div id=&quot;html_78fd930de3135b78455edfb95a5a23bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1406             latitude:37.5211             PM2_5:61.23537604             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d28048850e05b6c968ad79a11453ba68.setContent(html_78fd930de3135b78455edfb95a5a23bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_760b437794f0c4c5a806258aa33adfcd.bindPopup(popup_d28048850e05b6c968ad79a11453ba68)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2945f4c7e8efd7a7399dd9cfaad759d5 = L.circleMarker(\\n\",\n       \"                [35.28385, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd5e6f3b50a437f7ec4df33154f558cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d76d003301d53088a093b5509d5cd86b = $(`&lt;div id=&quot;html_d76d003301d53088a093b5509d5cd86b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:35.28385             PM2_5:53.94444444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd5e6f3b50a437f7ec4df33154f558cf.setContent(html_d76d003301d53088a093b5509d5cd86b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2945f4c7e8efd7a7399dd9cfaad759d5.bindPopup(popup_dd5e6f3b50a437f7ec4df33154f558cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14683daccffb88f33b9554e0f5a525cb = L.circleMarker(\\n\",\n       \"                [26.6343, 106.7487],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04f04fb01819c54b0a314ab67ec7de74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03f967480725e4aff3bcf257e843726b = $(`&lt;div id=&quot;html_03f967480725e4aff3bcf257e843726b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7487             latitude:26.6343             PM2_5:36.45365169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04f04fb01819c54b0a314ab67ec7de74.setContent(html_03f967480725e4aff3bcf257e843726b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14683daccffb88f33b9554e0f5a525cb.bindPopup(popup_04f04fb01819c54b0a314ab67ec7de74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2f8e149b108f7ca115f1eee6f43fa66 = L.circleMarker(\\n\",\n       \"                [39.5453, 116.7022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f546866f10acc45512cf3ea33dcdfa57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_258f5bf961bd1d2ce6d3e9d6a0370d0d = $(`&lt;div id=&quot;html_258f5bf961bd1d2ce6d3e9d6a0370d0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7022             latitude:39.5453             PM2_5:42.37047354             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f546866f10acc45512cf3ea33dcdfa57.setContent(html_258f5bf961bd1d2ce6d3e9d6a0370d0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2f8e149b108f7ca115f1eee6f43fa66.bindPopup(popup_f546866f10acc45512cf3ea33dcdfa57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d8439654625a6b0ab2a9712652d714b = L.circleMarker(\\n\",\n       \"                [36.6028, 109.4761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5656036d0cb4516316e4934ec1b03eb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f5cac22a0bb6a5ea303d9c903cfe3df = $(`&lt;div id=&quot;html_3f5cac22a0bb6a5ea303d9c903cfe3df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4761             latitude:36.6028             PM2_5:26.54378531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5656036d0cb4516316e4934ec1b03eb2.setContent(html_3f5cac22a0bb6a5ea303d9c903cfe3df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d8439654625a6b0ab2a9712652d714b.bindPopup(popup_5656036d0cb4516316e4934ec1b03eb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c475a0c9dff767dbc1b02a37ef8851c = L.circleMarker(\\n\",\n       \"                [23.0706, 112.427],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7714d7d95c08c60e82e911dcd757b9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_616a382eae2bbbcc29cf534bd0912c0c = $(`&lt;div id=&quot;html_616a382eae2bbbcc29cf534bd0912c0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.427             latitude:23.0706             PM2_5:39.67086835             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7714d7d95c08c60e82e911dcd757b9f.setContent(html_616a382eae2bbbcc29cf534bd0912c0c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c475a0c9dff767dbc1b02a37ef8851c.bindPopup(popup_e7714d7d95c08c60e82e911dcd757b9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbaed0c0aeb306830e37f6e97aea3d9c = L.circleMarker(\\n\",\n       \"                [31.8516, 117.124],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ff32b9cece6d3462d9dc8c656679490 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fefc2367aa058dc045d4e327866be2c0 = $(`&lt;div id=&quot;html_fefc2367aa058dc045d4e327866be2c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.124             latitude:31.8516             PM2_5:46.00277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ff32b9cece6d3462d9dc8c656679490.setContent(html_fefc2367aa058dc045d4e327866be2c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbaed0c0aeb306830e37f6e97aea3d9c.bindPopup(popup_1ff32b9cece6d3462d9dc8c656679490)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c72476a942e46af32ed177eb38eac79 = L.circleMarker(\\n\",\n       \"                [22.5211, 113.3769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5fea2b1d911e5a3dae95de9103453b17 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_63e3136a7378b272d44a8a4a70fd1e74 = $(`&lt;div id=&quot;html_63e3136a7378b272d44a8a4a70fd1e74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3769             latitude:22.5211             PM2_5:35.20786517             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5fea2b1d911e5a3dae95de9103453b17.setContent(html_63e3136a7378b272d44a8a4a70fd1e74);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c72476a942e46af32ed177eb38eac79.bindPopup(popup_5fea2b1d911e5a3dae95de9103453b17)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56b77866b26da00d7776f6296025d0cc = L.circleMarker(\\n\",\n       \"                [33.3942, 120.156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d88440ff53d3443111e46e378f95f00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bec2af6d993d5025ead9918aa176ce08 = $(`&lt;div id=&quot;html_bec2af6d993d5025ead9918aa176ce08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.156             latitude:33.3942             PM2_5:40.27158774             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d88440ff53d3443111e46e378f95f00.setContent(html_bec2af6d993d5025ead9918aa176ce08);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56b77866b26da00d7776f6296025d0cc.bindPopup(popup_0d88440ff53d3443111e46e378f95f00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a69eacd3923d55c934fe9c70108590b = L.circleMarker(\\n\",\n       \"                [39.5178, 116.6838],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d74ca08e1c549c325da5f54ae0809da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66c6a696e69d8e04f94cff7fcf317210 = $(`&lt;div id=&quot;html_66c6a696e69d8e04f94cff7fcf317210&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6838             latitude:39.5178             PM2_5:45.49159664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d74ca08e1c549c325da5f54ae0809da.setContent(html_66c6a696e69d8e04f94cff7fcf317210);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a69eacd3923d55c934fe9c70108590b.bindPopup(popup_4d74ca08e1c549c325da5f54ae0809da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d039fb542e5f878218e7618bb455fe2e = L.circleMarker(\\n\",\n       \"                [37.1152, 79.9485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b064df3928412ebbe31be1c9252ca218 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9551ebf5957c66511cb933a1e4ff31e = $(`&lt;div id=&quot;html_c9551ebf5957c66511cb933a1e4ff31e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:79.9485             latitude:37.1152             PM2_5:103.977591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b064df3928412ebbe31be1c9252ca218.setContent(html_c9551ebf5957c66511cb933a1e4ff31e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d039fb542e5f878218e7618bb455fe2e.bindPopup(popup_b064df3928412ebbe31be1c9252ca218)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_330f70579148a62af4da11a9731fd812 = L.circleMarker(\\n\",\n       \"                [30.5797, 105.7519],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ebb483b8d45b0dc43a3041b090396427 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dab34fb47625afb7076e65d780ceb131 = $(`&lt;div id=&quot;html_dab34fb47625afb7076e65d780ceb131&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.7519             latitude:30.5797             PM2_5:43.79275362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ebb483b8d45b0dc43a3041b090396427.setContent(html_dab34fb47625afb7076e65d780ceb131);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_330f70579148a62af4da11a9731fd812.bindPopup(popup_ebb483b8d45b0dc43a3041b090396427)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_688cdce3ef9f0c913b42313ba6745252 = L.circleMarker(\\n\",\n       \"                [45.6842, 126.6206],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10332d6751f096b0c6692b7b1f6f8137 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3cf818a9355396f2119ffda6846dea6 = $(`&lt;div id=&quot;html_b3cf818a9355396f2119ffda6846dea6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6206             latitude:45.6842             PM2_5:34.80031447             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10332d6751f096b0c6692b7b1f6f8137.setContent(html_b3cf818a9355396f2119ffda6846dea6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_688cdce3ef9f0c913b42313ba6745252.bindPopup(popup_10332d6751f096b0c6692b7b1f6f8137)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74f307c138c4c450ab062d106e8ef053 = L.circleMarker(\\n\",\n       \"                [30.9742, 118.7386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45f0aa448aa5a34c5fd47aee5f06b216 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d84eedb3802aba661326430a3e5759e = $(`&lt;div id=&quot;html_9d84eedb3802aba661326430a3e5759e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7386             latitude:30.9742             PM2_5:41.79551821             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45f0aa448aa5a34c5fd47aee5f06b216.setContent(html_9d84eedb3802aba661326430a3e5759e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74f307c138c4c450ab062d106e8ef053.bindPopup(popup_45f0aa448aa5a34c5fd47aee5f06b216)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e83ed7d15b3c1210d6163651b72359d2 = L.circleMarker(\\n\",\n       \"                [28.8558, 105.4322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_347c3516b64eb61b2c9c4e5914a88311 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9517b9976725b53e757fea8905d9afc6 = $(`&lt;div id=&quot;html_9517b9976725b53e757fea8905d9afc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4322             latitude:28.8558             PM2_5:41.88997214             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_347c3516b64eb61b2c9c4e5914a88311.setContent(html_9517b9976725b53e757fea8905d9afc6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e83ed7d15b3c1210d6163651b72359d2.bindPopup(popup_347c3516b64eb61b2c9c4e5914a88311)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_768e9c15991599dbca72287620ae6b53 = L.circleMarker(\\n\",\n       \"                [36.6275, 109.4131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ced8fdfb909bdbe69c0708d16efaf30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31577d969e0f95faeebafbe494acc151 = $(`&lt;div id=&quot;html_31577d969e0f95faeebafbe494acc151&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4131             latitude:36.6275             PM2_5:29.30351906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ced8fdfb909bdbe69c0708d16efaf30.setContent(html_31577d969e0f95faeebafbe494acc151);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_768e9c15991599dbca72287620ae6b53.bindPopup(popup_9ced8fdfb909bdbe69c0708d16efaf30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd3e54e47e236f61fc56dc44e067b4e0 = L.circleMarker(\\n\",\n       \"                [29.7292, 115.988],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea44e2b103a3d9ddc0ef9a016164857b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62548be2dc37626091e6989dfb45cd9a = $(`&lt;div id=&quot;html_62548be2dc37626091e6989dfb45cd9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.988             latitude:29.7292             PM2_5:44.39612188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea44e2b103a3d9ddc0ef9a016164857b.setContent(html_62548be2dc37626091e6989dfb45cd9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd3e54e47e236f61fc56dc44e067b4e0.bindPopup(popup_ea44e2b103a3d9ddc0ef9a016164857b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d5bccb1e0172849d3175b8f85cb6439f = L.circleMarker(\\n\",\n       \"                [22.5931, 113.0819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f22c54c85dc080a40c167bc02162525 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df2d0068530f472175a523cb91c5e825 = $(`&lt;div id=&quot;html_df2d0068530f472175a523cb91c5e825&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0819             latitude:22.5931             PM2_5:35.44289694             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f22c54c85dc080a40c167bc02162525.setContent(html_df2d0068530f472175a523cb91c5e825);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d5bccb1e0172849d3175b8f85cb6439f.bindPopup(popup_3f22c54c85dc080a40c167bc02162525)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8bc6a98774fc165e57f6e3c2b4477b6b = L.circleMarker(\\n\",\n       \"                [30.475, 105.5956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ddc5ea7a20765e366d0519fd3c2b6b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_233194045abcd135ac3aaec763f43079 = $(`&lt;div id=&quot;html_233194045abcd135ac3aaec763f43079&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.5956             latitude:30.475             PM2_5:38.00277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ddc5ea7a20765e366d0519fd3c2b6b8.setContent(html_233194045abcd135ac3aaec763f43079);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8bc6a98774fc165e57f6e3c2b4477b6b.bindPopup(popup_5ddc5ea7a20765e366d0519fd3c2b6b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fa9dc7417068aedb0a54d81c9ffa5ab = L.circleMarker(\\n\",\n       \"                [40.7688, 114.9032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08e473d1e6e31c60e85dfd9e40fa2b07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b073a1ef81cba71180cbdbacd23dde85 = $(`&lt;div id=&quot;html_b073a1ef81cba71180cbdbacd23dde85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9032             latitude:40.7688             PM2_5:29.62188366             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08e473d1e6e31c60e85dfd9e40fa2b07.setContent(html_b073a1ef81cba71180cbdbacd23dde85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fa9dc7417068aedb0a54d81c9ffa5ab.bindPopup(popup_08e473d1e6e31c60e85dfd9e40fa2b07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef5205b1ed9a6b1b227c797788ed9c1d = L.circleMarker(\\n\",\n       \"                [41.0971, 122.9642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51497e72effb3d208145b4d1fc4caa0c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ed1b26a165610a5d25c430c24327179 = $(`&lt;div id=&quot;html_0ed1b26a165610a5d25c430c24327179&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.9642             latitude:41.0971             PM2_5:35.54178273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51497e72effb3d208145b4d1fc4caa0c.setContent(html_0ed1b26a165610a5d25c430c24327179);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef5205b1ed9a6b1b227c797788ed9c1d.bindPopup(popup_51497e72effb3d208145b4d1fc4caa0c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef2738e1f7fc059445641ddfbfe8a0d2 = L.circleMarker(\\n\",\n       \"                [41.9206, 126.4047],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7429e318d132891f67863d34dd5e013d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7938244409429e9c4e4c64343c1aa549 = $(`&lt;div id=&quot;html_7938244409429e9c4e4c64343c1aa549&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4047             latitude:41.9206             PM2_5:37.63445378             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7429e318d132891f67863d34dd5e013d.setContent(html_7938244409429e9c4e4c64343c1aa549);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef2738e1f7fc059445641ddfbfe8a0d2.bindPopup(popup_7429e318d132891f67863d34dd5e013d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31f0eb629fbef5854df26a85ba14d3f1 = L.circleMarker(\\n\",\n       \"                [35.5236, 107.6406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed757cb3eeb8042f37007136fa537a58 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42982075d67016a455fe0dee56728509 = $(`&lt;div id=&quot;html_42982075d67016a455fe0dee56728509&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6406             latitude:35.5236             PM2_5:34.47075209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed757cb3eeb8042f37007136fa537a58.setContent(html_42982075d67016a455fe0dee56728509);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31f0eb629fbef5854df26a85ba14d3f1.bindPopup(popup_ed757cb3eeb8042f37007136fa537a58)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c9ffcfbfb13cacae4324ae060543848 = L.circleMarker(\\n\",\n       \"                [31.4539, 104.7536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6d1ff585f4a0d0404b8f5570f106e0d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1efedc5f10573a6f826e2fc30d88fa23 = $(`&lt;div id=&quot;html_1efedc5f10573a6f826e2fc30d88fa23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7536             latitude:31.4539             PM2_5:50.954039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6d1ff585f4a0d0404b8f5570f106e0d4.setContent(html_1efedc5f10573a6f826e2fc30d88fa23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c9ffcfbfb13cacae4324ae060543848.bindPopup(popup_6d1ff585f4a0d0404b8f5570f106e0d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b13839c1495391ae04d8447aedac15b = L.circleMarker(\\n\",\n       \"                [40.6592, 122.2414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25c64de2231dd287349e7d57202b24b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23d885b3b733584d533d8d47e0b33c99 = $(`&lt;div id=&quot;html_23d885b3b733584d533d8d47e0b33c99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2414             latitude:40.6592             PM2_5:31.50138504             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25c64de2231dd287349e7d57202b24b5.setContent(html_23d885b3b733584d533d8d47e0b33c99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b13839c1495391ae04d8447aedac15b.bindPopup(popup_25c64de2231dd287349e7d57202b24b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b88fb02c20954e4c6b820dde8e31ab54 = L.circleMarker(\\n\",\n       \"                [26.5747, 107.9783],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_852e675b6fc132b71d8dea01ed1b6a53 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9de0ecd46fe40d96249448937aeb3bf2 = $(`&lt;div id=&quot;html_9de0ecd46fe40d96249448937aeb3bf2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.9783             latitude:26.5747             PM2_5:35.51815642             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_852e675b6fc132b71d8dea01ed1b6a53.setContent(html_9de0ecd46fe40d96249448937aeb3bf2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b88fb02c20954e4c6b820dde8e31ab54.bindPopup(popup_852e675b6fc132b71d8dea01ed1b6a53)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc2a9b58c0349289830ea7dc8dffc392 = L.circleMarker(\\n\",\n       \"                [33.568, 114.005],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8cd05ccd2c6b40c5952dd7bbef9ffe5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f2d38915cb5ade7b9cdeebf98f75597 = $(`&lt;div id=&quot;html_0f2d38915cb5ade7b9cdeebf98f75597&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.005             latitude:33.568             PM2_5:57.45111732             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8cd05ccd2c6b40c5952dd7bbef9ffe5c.setContent(html_0f2d38915cb5ade7b9cdeebf98f75597);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc2a9b58c0349289830ea7dc8dffc392.bindPopup(popup_8cd05ccd2c6b40c5952dd7bbef9ffe5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6df934eacb9ce6242e6e3e225485b16b = L.circleMarker(\\n\",\n       \"                [27.583, 110.0394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a5958938389e77e5ac12bb078721221 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84557c11ba9623baff618944d45a96a3 = $(`&lt;div id=&quot;html_84557c11ba9623baff618944d45a96a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0394             latitude:27.583             PM2_5:43.59749304             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a5958938389e77e5ac12bb078721221.setContent(html_84557c11ba9623baff618944d45a96a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6df934eacb9ce6242e6e3e225485b16b.bindPopup(popup_2a5958938389e77e5ac12bb078721221)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca32c575ba7a5c76c290d64600523302 = L.circleMarker(\\n\",\n       \"                [43.8694, 125.325],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e49431add0d1c35823e14f4c60afbdc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e27ee28440b055e4e4e764097bfb125d = $(`&lt;div id=&quot;html_e27ee28440b055e4e4e764097bfb125d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.325             latitude:43.8694             PM2_5:31.45596591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e49431add0d1c35823e14f4c60afbdc.setContent(html_e27ee28440b055e4e4e764097bfb125d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca32c575ba7a5c76c290d64600523302.bindPopup(popup_8e49431add0d1c35823e14f4c60afbdc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37581771c895c4d19ba50886da05a9a0 = L.circleMarker(\\n\",\n       \"                [36.5336, 116.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27e9621bcd761d3bef9865080c5e14ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c5842452a81fdc4e5d30e14feac12e3 = $(`&lt;div id=&quot;html_1c5842452a81fdc4e5d30e14feac12e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.734             latitude:36.5336             PM2_5:58.35446686             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27e9621bcd761d3bef9865080c5e14ef.setContent(html_1c5842452a81fdc4e5d30e14feac12e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37581771c895c4d19ba50886da05a9a0.bindPopup(popup_27e9621bcd761d3bef9865080c5e14ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8f259ac0d91b072b7e3bc2d1913ef4f = L.circleMarker(\\n\",\n       \"                [35.4039, 116.5546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6d9941c520cc0f30a5fc330d99695bb6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95744ab34ee41f317be3f2c51758aae2 = $(`&lt;div id=&quot;html_95744ab34ee41f317be3f2c51758aae2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5546             latitude:35.4039             PM2_5:45.83753501             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6d9941c520cc0f30a5fc330d99695bb6.setContent(html_95744ab34ee41f317be3f2c51758aae2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8f259ac0d91b072b7e3bc2d1913ef4f.bindPopup(popup_6d9941c520cc0f30a5fc330d99695bb6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85ea2eb9f1d574cb4eb01eb912b4a89a = L.circleMarker(\\n\",\n       \"                [34.0117, 113.8331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df976702be11ddbaee49e97d5b5c9b3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb738a9ea858f43c566b751063e9f316 = $(`&lt;div id=&quot;html_cb738a9ea858f43c566b751063e9f316&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8331             latitude:34.0117             PM2_5:56.1302521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df976702be11ddbaee49e97d5b5c9b3a.setContent(html_cb738a9ea858f43c566b751063e9f316);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85ea2eb9f1d574cb4eb01eb912b4a89a.bindPopup(popup_df976702be11ddbaee49e97d5b5c9b3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91900623a968b52dc83cd5156d878bf6 = L.circleMarker(\\n\",\n       \"                [28.9664, 118.871],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdad8b230a3b92400acfaa9d787e369f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1a38de952dea501323fc0a5677921db = $(`&lt;div id=&quot;html_f1a38de952dea501323fc0a5677921db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.871             latitude:28.9664             PM2_5:34.66526611             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdad8b230a3b92400acfaa9d787e369f.setContent(html_f1a38de952dea501323fc0a5677921db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91900623a968b52dc83cd5156d878bf6.bindPopup(popup_fdad8b230a3b92400acfaa9d787e369f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d118ec1674146bd076fb6897aec8eac6 = L.circleMarker(\\n\",\n       \"                [24.68636111, 113.5970833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d848fef99fbb8d8afac232954ba1430e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b27f35594d43b4dad8e5e9c728a2200f = $(`&lt;div id=&quot;html_b27f35594d43b4dad8e5e9c728a2200f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5970833             latitude:24.68636111             PM2_5:38.7745098             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d848fef99fbb8d8afac232954ba1430e.setContent(html_b27f35594d43b4dad8e5e9c728a2200f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d118ec1674146bd076fb6897aec8eac6.bindPopup(popup_d848fef99fbb8d8afac232954ba1430e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fd23b338291abbeb81f267451871d7a = L.circleMarker(\\n\",\n       \"                [37.393, 117.9776],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e399acda4f8a89a71a5e05937a06b20e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d9f89648b52281176d7f8e2fbffe07e = $(`&lt;div id=&quot;html_4d9f89648b52281176d7f8e2fbffe07e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9776             latitude:37.393             PM2_5:53.84180791             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e399acda4f8a89a71a5e05937a06b20e.setContent(html_4d9f89648b52281176d7f8e2fbffe07e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fd23b338291abbeb81f267451871d7a.bindPopup(popup_e399acda4f8a89a71a5e05937a06b20e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6fb65b2bf45848627b153c7c7264d4e1 = L.circleMarker(\\n\",\n       \"                [37.8531, 113.6292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c7c716592250b3cfb3450f1edcbb109 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb16888dd3c7f8427ef8258cd8aac68c = $(`&lt;div id=&quot;html_bb16888dd3c7f8427ef8258cd8aac68c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6292             latitude:37.8531             PM2_5:53.93452381             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c7c716592250b3cfb3450f1edcbb109.setContent(html_bb16888dd3c7f8427ef8258cd8aac68c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6fb65b2bf45848627b153c7c7264d4e1.bindPopup(popup_9c7c716592250b3cfb3450f1edcbb109)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cd95209d2cea8fb9a8eba5402d6bea5 = L.circleMarker(\\n\",\n       \"                [41.3369, 123.7528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09fce03b214b35bc771c032de0c82d86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e42958eb5f2edc4e27542509b78fe48 = $(`&lt;div id=&quot;html_5e42958eb5f2edc4e27542509b78fe48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7528             latitude:41.3369             PM2_5:27.14763231             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09fce03b214b35bc771c032de0c82d86.setContent(html_5e42958eb5f2edc4e27542509b78fe48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cd95209d2cea8fb9a8eba5402d6bea5.bindPopup(popup_09fce03b214b35bc771c032de0c82d86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54dcd19f4920eaafde735925c4458870 = L.circleMarker(\\n\",\n       \"                [30.2311, 119.6942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9cd5dc43c02edd976a76f65397e8545 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d88c1148c90c42ad9dfcc43e5633c832 = $(`&lt;div id=&quot;html_d88c1148c90c42ad9dfcc43e5633c832&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6942             latitude:30.2311             PM2_5:36.65868263             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9cd5dc43c02edd976a76f65397e8545.setContent(html_d88c1148c90c42ad9dfcc43e5633c832);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54dcd19f4920eaafde735925c4458870.bindPopup(popup_f9cd5dc43c02edd976a76f65397e8545)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_176339f00a58ae89c2b9934cfb230bf6 = L.circleMarker(\\n\",\n       \"                [31.8585, 117.336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0137865dc35592657ecee821502dc05b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d10ebe0743765a572e54b94cd589798 = $(`&lt;div id=&quot;html_1d10ebe0743765a572e54b94cd589798&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.336             latitude:31.8585             PM2_5:51.78089888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0137865dc35592657ecee821502dc05b.setContent(html_1d10ebe0743765a572e54b94cd589798);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_176339f00a58ae89c2b9934cfb230bf6.bindPopup(popup_0137865dc35592657ecee821502dc05b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_553d1a953e1fbcb3b20455f7cebb9d7f = L.circleMarker(\\n\",\n       \"                [26.6266, 106.6243],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b37a046b203b3f09ba8c3f197535f170 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35976d69621ba2232731aa85ac9e2f93 = $(`&lt;div id=&quot;html_35976d69621ba2232731aa85ac9e2f93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6243             latitude:26.6266             PM2_5:29.28045326             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b37a046b203b3f09ba8c3f197535f170.setContent(html_35976d69621ba2232731aa85ac9e2f93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_553d1a953e1fbcb3b20455f7cebb9d7f.bindPopup(popup_b37a046b203b3f09ba8c3f197535f170)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19e1ef58d7687d81637f9e1e6ba3abef = L.circleMarker(\\n\",\n       \"                [38.85611111, 121.5180556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4578a9dfeda914767423c3539c6d9526 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39970d5ac52f3cfdf9775c83642c3885 = $(`&lt;div id=&quot;html_39970d5ac52f3cfdf9775c83642c3885&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5180556             latitude:38.85611111             PM2_5:26.56786704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4578a9dfeda914767423c3539c6d9526.setContent(html_39970d5ac52f3cfdf9775c83642c3885);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19e1ef58d7687d81637f9e1e6ba3abef.bindPopup(popup_4578a9dfeda914767423c3539c6d9526)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4f8db1a946d02b849af32388b0ec2ad = L.circleMarker(\\n\",\n       \"                [46.0703, 122.0506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15990f1595d38927e2ec5e32eae737e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22ad2c2fea4bb08786671a6e242afcfc = $(`&lt;div id=&quot;html_22ad2c2fea4bb08786671a6e242afcfc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0506             latitude:46.0703             PM2_5:10.9972067             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15990f1595d38927e2ec5e32eae737e7.setContent(html_22ad2c2fea4bb08786671a6e242afcfc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4f8db1a946d02b849af32388b0ec2ad.bindPopup(popup_15990f1595d38927e2ec5e32eae737e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ebad33b85310d2b6cbacc3583633fe3d = L.circleMarker(\\n\",\n       \"                [22.2281, 113.299],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75851824c2a6b5ee3dd5bf99299c6d6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_acfe12c8e7f008bc7dbb0c4492fb3a46 = $(`&lt;div id=&quot;html_acfe12c8e7f008bc7dbb0c4492fb3a46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.299             latitude:22.2281             PM2_5:30.13276836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75851824c2a6b5ee3dd5bf99299c6d6e.setContent(html_acfe12c8e7f008bc7dbb0c4492fb3a46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ebad33b85310d2b6cbacc3583633fe3d.bindPopup(popup_75851824c2a6b5ee3dd5bf99299c6d6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b53482e7874373661c750c1401f9f9a1 = L.circleMarker(\\n\",\n       \"                [30.51197222, 117.0331111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8083dc88c05e4a3acf818e36cb05715 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c8bfdf7262020d870ebf42055d54b39 = $(`&lt;div id=&quot;html_6c8bfdf7262020d870ebf42055d54b39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0331111             latitude:30.51197222             PM2_5:50.17827298             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8083dc88c05e4a3acf818e36cb05715.setContent(html_6c8bfdf7262020d870ebf42055d54b39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b53482e7874373661c750c1401f9f9a1.bindPopup(popup_c8083dc88c05e4a3acf818e36cb05715)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ae07f2c529b86337e24318352156a26 = L.circleMarker(\\n\",\n       \"                [38.9108, 115.4713],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0abcd91ddeb43ca0d9d03d5e31c59b5b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26e064a72bca2cdb30fad160b2e1d9a6 = $(`&lt;div id=&quot;html_26e064a72bca2cdb30fad160b2e1d9a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.4713             latitude:38.9108             PM2_5:58.6801676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0abcd91ddeb43ca0d9d03d5e31c59b5b.setContent(html_26e064a72bca2cdb30fad160b2e1d9a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ae07f2c529b86337e24318352156a26.bindPopup(popup_0abcd91ddeb43ca0d9d03d5e31c59b5b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8c908c9b4ac8b4e240bd2a18743424e = L.circleMarker(\\n\",\n       \"                [32.4429, 105.8242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e45a83e81b668f6e0f2c6c3b60c81391 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee97e4612f5b8907972a7c456b60c43f = $(`&lt;div id=&quot;html_ee97e4612f5b8907972a7c456b60c43f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8242             latitude:32.4429             PM2_5:25.40529248             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e45a83e81b668f6e0f2c6c3b60c81391.setContent(html_ee97e4612f5b8907972a7c456b60c43f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8c908c9b4ac8b4e240bd2a18743424e.bindPopup(popup_e45a83e81b668f6e0f2c6c3b60c81391)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1217a857b9afe6e6e85ea020caaf0dac = L.circleMarker(\\n\",\n       \"                [29.7207, 118.3236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f116aa846c174a27b39e481ba590aa3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7313d24eee5265376418a3982f3765c4 = $(`&lt;div id=&quot;html_7313d24eee5265376418a3982f3765c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3236             latitude:29.7207             PM2_5:23.60451977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f116aa846c174a27b39e481ba590aa3.setContent(html_7313d24eee5265376418a3982f3765c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1217a857b9afe6e6e85ea020caaf0dac.bindPopup(popup_9f116aa846c174a27b39e481ba590aa3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34376c091a845c8ba3c737e8f07eff7d = L.circleMarker(\\n\",\n       \"                [26.4364, 111.5992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19d975792147db4a29eba8db73d039f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc742cf7a1df50c1f6587a601b21f7a7 = $(`&lt;div id=&quot;html_cc742cf7a1df50c1f6587a601b21f7a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5992             latitude:26.4364             PM2_5:38.71856287             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19d975792147db4a29eba8db73d039f8.setContent(html_cc742cf7a1df50c1f6587a601b21f7a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34376c091a845c8ba3c737e8f07eff7d.bindPopup(popup_19d975792147db4a29eba8db73d039f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dea5299c57e4c6e825defd7a8006b145 = L.circleMarker(\\n\",\n       \"                [31.6928, 118.48],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24d12e57eb519c94e8888b7d0fb73199 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50e111fd8d52542ef5790471263ac5a1 = $(`&lt;div id=&quot;html_50e111fd8d52542ef5790471263ac5a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.48             latitude:31.6928             PM2_5:42.37571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24d12e57eb519c94e8888b7d0fb73199.setContent(html_50e111fd8d52542ef5790471263ac5a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dea5299c57e4c6e825defd7a8006b145.bindPopup(popup_24d12e57eb519c94e8888b7d0fb73199)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_623286af01e244b7a57004ed68dd407a = L.circleMarker(\\n\",\n       \"                [39.9567, 119.6023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_099cccc53d67aa4ee1f391509f06208b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d9c041781db32f3d3b26e69c6c595b4 = $(`&lt;div id=&quot;html_3d9c041781db32f3d3b26e69c6c595b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6023             latitude:39.9567             PM2_5:38.59305556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_099cccc53d67aa4ee1f391509f06208b.setContent(html_3d9c041781db32f3d3b26e69c6c595b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_623286af01e244b7a57004ed68dd407a.bindPopup(popup_099cccc53d67aa4ee1f391509f06208b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21e6474612f71e0adc61e10dcbbb2e4f = L.circleMarker(\\n\",\n       \"                [40.6511, 122.215],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67ed892999c1840014e9a5294aec66a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5cb13d8de62e48353a393c0976e47735 = $(`&lt;div id=&quot;html_5cb13d8de62e48353a393c0976e47735&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.215             latitude:40.6511             PM2_5:28.33286908             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67ed892999c1840014e9a5294aec66a6.setContent(html_5cb13d8de62e48353a393c0976e47735);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21e6474612f71e0adc61e10dcbbb2e4f.bindPopup(popup_67ed892999c1840014e9a5294aec66a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47fd3b6f09fd4fc0c76cead6be2bbb71 = L.circleMarker(\\n\",\n       \"                [24.44583333, 118.0636111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_986fb315ec597266975e867b97aab043 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdb653b5020313a66a62a90b201a07f4 = $(`&lt;div id=&quot;html_bdb653b5020313a66a62a90b201a07f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0636111             latitude:24.44583333             PM2_5:28.7359736             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_986fb315ec597266975e867b97aab043.setContent(html_bdb653b5020313a66a62a90b201a07f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47fd3b6f09fd4fc0c76cead6be2bbb71.bindPopup(popup_986fb315ec597266975e867b97aab043)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e5eba0886ed23712e4261457dd36d9f = L.circleMarker(\\n\",\n       \"                [45.755, 126.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ef27eed9a8ec690849b4a1890d596f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba6c9cee32397d995ba3ea389bafcd24 = $(`&lt;div id=&quot;html_ba6c9cee32397d995ba3ea389bafcd24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.542             latitude:45.755             PM2_5:32.56527778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ef27eed9a8ec690849b4a1890d596f3.setContent(html_ba6c9cee32397d995ba3ea389bafcd24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e5eba0886ed23712e4261457dd36d9f.bindPopup(popup_2ef27eed9a8ec690849b4a1890d596f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc4be986970d5c3efe6232923e07d9b3 = L.circleMarker(\\n\",\n       \"                [31.1907, 121.703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_311e89e936a30be660f1c2104104592b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2938e46d28bb1ef2aaaee2296202b22b = $(`&lt;div id=&quot;html_2938e46d28bb1ef2aaaee2296202b22b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.703             latitude:31.1907             PM2_5:36.71126761             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_311e89e936a30be660f1c2104104592b.setContent(html_2938e46d28bb1ef2aaaee2296202b22b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc4be986970d5c3efe6232923e07d9b3.bindPopup(popup_311e89e936a30be660f1c2104104592b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1dac7fc68a52303f3355fb11d2b1c813 = L.circleMarker(\\n\",\n       \"                [23.63444, 113.0472],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78a5b5c8bffb4cd73b3249cb3a306d6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee5ed148101fc72a41597ac8e7629d69 = $(`&lt;div id=&quot;html_ee5ed148101fc72a41597ac8e7629d69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0472             latitude:23.63444             PM2_5:34.71169916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78a5b5c8bffb4cd73b3249cb3a306d6c.setContent(html_ee5ed148101fc72a41597ac8e7629d69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1dac7fc68a52303f3355fb11d2b1c813.bindPopup(popup_78a5b5c8bffb4cd73b3249cb3a306d6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c7185af9c81eba036fe786799340be7 = L.circleMarker(\\n\",\n       \"                [34.3274, 109.043],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73d30d16d2840198030e0f554e176ad0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0211b38c9e4dfbd1c5b2541aa8ad6713 = $(`&lt;div id=&quot;html_0211b38c9e4dfbd1c5b2541aa8ad6713&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.043             latitude:34.3274             PM2_5:65.58142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73d30d16d2840198030e0f554e176ad0.setContent(html_0211b38c9e4dfbd1c5b2541aa8ad6713);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c7185af9c81eba036fe786799340be7.bindPopup(popup_73d30d16d2840198030e0f554e176ad0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86045fe548575dbdb471bbdfb62d03ae = L.circleMarker(\\n\",\n       \"                [37.8873, 112.522],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_767a96bc505d1a763c63dac4f4dfc980 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6f24f0af96ad03ce7ae6e661b85ac26 = $(`&lt;div id=&quot;html_f6f24f0af96ad03ce7ae6e661b85ac26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.522             latitude:37.8873             PM2_5:63.20200573             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_767a96bc505d1a763c63dac4f4dfc980.setContent(html_f6f24f0af96ad03ce7ae6e661b85ac26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86045fe548575dbdb471bbdfb62d03ae.bindPopup(popup_767a96bc505d1a763c63dac4f4dfc980)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6819633f397a8af03b7f6bd3afefde03 = L.circleMarker(\\n\",\n       \"                [30.66, 117.49],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc7282fe0f7f29cf73bf026b73367f6b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57abf4d116a193da27930607f87a9f56 = $(`&lt;div id=&quot;html_57abf4d116a193da27930607f87a9f56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.49             latitude:30.66             PM2_5:55.51436782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc7282fe0f7f29cf73bf026b73367f6b.setContent(html_57abf4d116a193da27930607f87a9f56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6819633f397a8af03b7f6bd3afefde03.bindPopup(popup_bc7282fe0f7f29cf73bf026b73367f6b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10221cd6850f47c79711297efd9c227b = L.circleMarker(\\n\",\n       \"                [31.4846, 92.0657],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_473e2b7091fb5f59da929ef6955dfd7b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_edae4002f7a029e13560c688bbfd8e35 = $(`&lt;div id=&quot;html_edae4002f7a029e13560c688bbfd8e35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:92.0657             latitude:31.4846             PM2_5:44.10614525             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_473e2b7091fb5f59da929ef6955dfd7b.setContent(html_edae4002f7a029e13560c688bbfd8e35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10221cd6850f47c79711297efd9c227b.bindPopup(popup_473e2b7091fb5f59da929ef6955dfd7b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22d688f0da9c0ad912829cc2acf446d2 = L.circleMarker(\\n\",\n       \"                [46.528, 125.112],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4b2cdb8d6b85f27a4bd9cd7e37daf49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97e38962ba9b88bc38a1f10a5777d7c3 = $(`&lt;div id=&quot;html_97e38962ba9b88bc38a1f10a5777d7c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.112             latitude:46.528             PM2_5:25.71428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4b2cdb8d6b85f27a4bd9cd7e37daf49.setContent(html_97e38962ba9b88bc38a1f10a5777d7c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22d688f0da9c0ad912829cc2acf446d2.bindPopup(popup_c4b2cdb8d6b85f27a4bd9cd7e37daf49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8fcd42af3b1b6ce0a3078746e24cd8ca = L.circleMarker(\\n\",\n       \"                [35.5714, 104.6228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8ee5b34c9d1bc2be11175e4d532c585 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed4b359d29511666410b71a12dbcba43 = $(`&lt;div id=&quot;html_ed4b359d29511666410b71a12dbcba43&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6228             latitude:35.5714             PM2_5:27.74789916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8ee5b34c9d1bc2be11175e4d532c585.setContent(html_ed4b359d29511666410b71a12dbcba43);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8fcd42af3b1b6ce0a3078746e24cd8ca.bindPopup(popup_d8ee5b34c9d1bc2be11175e4d532c585)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd1e52367e7066d303fa7ceaf712c343 = L.circleMarker(\\n\",\n       \"                [26.6946, 119.5001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_93a1a84575acb86f4f7ebf36ca0b6752 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3a07f4940a3bd3ba58d2b2113f408f9 = $(`&lt;div id=&quot;html_a3a07f4940a3bd3ba58d2b2113f408f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5001             latitude:26.6946             PM2_5:30.51558074             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_93a1a84575acb86f4f7ebf36ca0b6752.setContent(html_a3a07f4940a3bd3ba58d2b2113f408f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd1e52367e7066d303fa7ceaf712c343.bindPopup(popup_93a1a84575acb86f4f7ebf36ca0b6752)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6fadb3a10fc0d0466a5af1a48f281e67 = L.circleMarker(\\n\",\n       \"                [31.2058, 107.4611],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c9553a17afa4e04f397d577c60750e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36273d06759eeb280488da95b16d54fa = $(`&lt;div id=&quot;html_36273d06759eeb280488da95b16d54fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4611             latitude:31.2058             PM2_5:57.28272981             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c9553a17afa4e04f397d577c60750e7.setContent(html_36273d06759eeb280488da95b16d54fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6fadb3a10fc0d0466a5af1a48f281e67.bindPopup(popup_2c9553a17afa4e04f397d577c60750e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_005e8a9232b52a2d37755a197260d8f1 = L.circleMarker(\\n\",\n       \"                [37.7111, 112.7306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d401730d18dd750d68dddad0aa58424d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72714fd8ecb6470ca32bdc3b897d5e63 = $(`&lt;div id=&quot;html_72714fd8ecb6470ca32bdc3b897d5e63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7306             latitude:37.7111             PM2_5:57.2367688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d401730d18dd750d68dddad0aa58424d.setContent(html_72714fd8ecb6470ca32bdc3b897d5e63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_005e8a9232b52a2d37755a197260d8f1.bindPopup(popup_d401730d18dd750d68dddad0aa58424d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b8cf29eb97cdfb8db9b58dd33077324 = L.circleMarker(\\n\",\n       \"                [36.7008, 119.1425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_853b1ffcfc7dd7820745ce4c8aebaa3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96892ed3bb558f07f00de2233a5070ec = $(`&lt;div id=&quot;html_96892ed3bb558f07f00de2233a5070ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1425             latitude:36.7008             PM2_5:47.30812325             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_853b1ffcfc7dd7820745ce4c8aebaa3e.setContent(html_96892ed3bb558f07f00de2233a5070ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b8cf29eb97cdfb8db9b58dd33077324.bindPopup(popup_853b1ffcfc7dd7820745ce4c8aebaa3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a8161fd9e24cf658a34ae0795559203 = L.circleMarker(\\n\",\n       \"                [41.2692, 123.7989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed896413025c99a0641291ddfc5f885b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aae36161cf91bbe5866ebde31b230683 = $(`&lt;div id=&quot;html_aae36161cf91bbe5866ebde31b230683&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7989             latitude:41.2692             PM2_5:27.25905292             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed896413025c99a0641291ddfc5f885b.setContent(html_aae36161cf91bbe5866ebde31b230683);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a8161fd9e24cf658a34ae0795559203.bindPopup(popup_ed896413025c99a0641291ddfc5f885b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f7070e8c069e16a2083a9d5ceb7b473 = L.circleMarker(\\n\",\n       \"                [35.4934, 112.835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16f0873c02d1c2d2be7c056a4fbf9069 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14046aa71239bd9fd95affed3b984d35 = $(`&lt;div id=&quot;html_14046aa71239bd9fd95affed3b984d35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.835             latitude:35.4934             PM2_5:59.60277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16f0873c02d1c2d2be7c056a4fbf9069.setContent(html_14046aa71239bd9fd95affed3b984d35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f7070e8c069e16a2083a9d5ceb7b473.bindPopup(popup_16f0873c02d1c2d2be7c056a4fbf9069)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_319f7e34b3eb1a5e7d5393cd34acc7eb = L.circleMarker(\\n\",\n       \"                [39.2474, 117.7918],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fef8780cb455e2650e6fc110ee85c653 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a64da6154ff3ae3f53bfa16ba9443bd1 = $(`&lt;div id=&quot;html_a64da6154ff3ae3f53bfa16ba9443bd1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7918             latitude:39.2474             PM2_5:53.30225989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fef8780cb455e2650e6fc110ee85c653.setContent(html_a64da6154ff3ae3f53bfa16ba9443bd1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_319f7e34b3eb1a5e7d5393cd34acc7eb.bindPopup(popup_fef8780cb455e2650e6fc110ee85c653)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eaa86ae9155a4d6d8b5239dbdd578530 = L.circleMarker(\\n\",\n       \"                [44.8969, 82.0806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47e8d85ab1f0b834be00d45bde85c539 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18c4ade47d2ba397b3d797fec57389dc = $(`&lt;div id=&quot;html_18c4ade47d2ba397b3d797fec57389dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.0806             latitude:44.8969             PM2_5:34.93175487             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47e8d85ab1f0b834be00d45bde85c539.setContent(html_18c4ade47d2ba397b3d797fec57389dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eaa86ae9155a4d6d8b5239dbdd578530.bindPopup(popup_47e8d85ab1f0b834be00d45bde85c539)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3875d1323fdef5e5e03612328a665bc2 = L.circleMarker(\\n\",\n       \"                [37.154, 122.471],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57ff7b72dc4266ef5126dcb24fb0e86b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f12a2854db9b34baaacc9197cc1d8a4d = $(`&lt;div id=&quot;html_f12a2854db9b34baaacc9197cc1d8a4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.471             latitude:37.154             PM2_5:20.93626062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57ff7b72dc4266ef5126dcb24fb0e86b.setContent(html_f12a2854db9b34baaacc9197cc1d8a4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3875d1323fdef5e5e03612328a665bc2.bindPopup(popup_57ff7b72dc4266ef5126dcb24fb0e86b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b412bc21130bf1bb767b99de480509a = L.circleMarker(\\n\",\n       \"                [40.7612, 111.717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bcf9569dd8a156f4bdd3936d6d41ac0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_623c18f7edde77211251312d7483cc20 = $(`&lt;div id=&quot;html_623c18f7edde77211251312d7483cc20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.717             latitude:40.7612             PM2_5:35.41242938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bcf9569dd8a156f4bdd3936d6d41ac0.setContent(html_623c18f7edde77211251312d7483cc20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b412bc21130bf1bb767b99de480509a.bindPopup(popup_7bcf9569dd8a156f4bdd3936d6d41ac0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83d934bef55baccde695026249b17328 = L.circleMarker(\\n\",\n       \"                [40.0917, 113.3444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0b4cc3d107c0cff3543c276b798d0b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb53329cba2194cab6099289826cb172 = $(`&lt;div id=&quot;html_fb53329cba2194cab6099289826cb172&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3444             latitude:40.0917             PM2_5:36.00139665             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0b4cc3d107c0cff3543c276b798d0b3.setContent(html_fb53329cba2194cab6099289826cb172);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83d934bef55baccde695026249b17328.bindPopup(popup_e0b4cc3d107c0cff3543c276b798d0b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77e5e72a30000a9227909711e9cfbdfc = L.circleMarker(\\n\",\n       \"                [21.8536, 111.9508],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f230b63921de7683f2d16d22b5eb8a56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d163d2853758ea74896a8978e1888d9 = $(`&lt;div id=&quot;html_2d163d2853758ea74896a8978e1888d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9508             latitude:21.8536             PM2_5:31.69088319             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f230b63921de7683f2d16d22b5eb8a56.setContent(html_2d163d2853758ea74896a8978e1888d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77e5e72a30000a9227909711e9cfbdfc.bindPopup(popup_f230b63921de7683f2d16d22b5eb8a56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84a6d01f30abd7cdfea286b587c6b6dc = L.circleMarker(\\n\",\n       \"                [42.0228, 121.6722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a1e2f90506ca36486d8717aafdc323e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69ba7951ae6c9d1f94568ac28a4ef7cc = $(`&lt;div id=&quot;html_69ba7951ae6c9d1f94568ac28a4ef7cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6722             latitude:42.0228             PM2_5:28.55070423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a1e2f90506ca36486d8717aafdc323e.setContent(html_69ba7951ae6c9d1f94568ac28a4ef7cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84a6d01f30abd7cdfea286b587c6b6dc.bindPopup(popup_9a1e2f90506ca36486d8717aafdc323e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df2afa63a11679bc67453f5c0bc58054 = L.circleMarker(\\n\",\n       \"                [36.6872, 116.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1750a71b4a03c733ca8bec63e9d2d076 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b7ed30ded3e5004ab4453e50ad8cb5f = $(`&lt;div id=&quot;html_5b7ed30ded3e5004ab4453e50ad8cb5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.989             latitude:36.6872             PM2_5:52.91253644             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1750a71b4a03c733ca8bec63e9d2d076.setContent(html_5b7ed30ded3e5004ab4453e50ad8cb5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df2afa63a11679bc67453f5c0bc58054.bindPopup(popup_1750a71b4a03c733ca8bec63e9d2d076)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6806f3fb6ebd8f32520f578a809b1135 = L.circleMarker(\\n\",\n       \"                [31.9108, 119.905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce2b783c27449b968a88d2ec7a833335 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_64b2705fea770901161e3a908300f19a = $(`&lt;div id=&quot;html_64b2705fea770901161e3a908300f19a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.905             latitude:31.9108             PM2_5:48.17130919             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce2b783c27449b968a88d2ec7a833335.setContent(html_64b2705fea770901161e3a908300f19a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6806f3fb6ebd8f32520f578a809b1135.bindPopup(popup_ce2b783c27449b968a88d2ec7a833335)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b812b993f912b44b3cbe9603f1ce80c8 = L.circleMarker(\\n\",\n       \"                [44.2967, 86.0497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1410675d6914760ebd9b502bf29fdd9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f998c8c89a4090e404520123e41f312d = $(`&lt;div id=&quot;html_f998c8c89a4090e404520123e41f312d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.0497             latitude:44.2967             PM2_5:59.0518732             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1410675d6914760ebd9b502bf29fdd9.setContent(html_f998c8c89a4090e404520123e41f312d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b812b993f912b44b3cbe9603f1ce80c8.bindPopup(popup_b1410675d6914760ebd9b502bf29fdd9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_540cd9a0962799045e17ac26ecd23244 = L.circleMarker(\\n\",\n       \"                [37.7379, 115.6426],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a592a5e84977a39392ba4b9f6af10e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ec12b6619a21f49a9db2b5b63563464 = $(`&lt;div id=&quot;html_1ec12b6619a21f49a9db2b5b63563464&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6426             latitude:37.7379             PM2_5:63.57938719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a592a5e84977a39392ba4b9f6af10e8.setContent(html_1ec12b6619a21f49a9db2b5b63563464);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_540cd9a0962799045e17ac26ecd23244.bindPopup(popup_9a592a5e84977a39392ba4b9f6af10e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85d0d0246a6e9d099fe45898c4d80350 = L.circleMarker(\\n\",\n       \"                [22.7019, 110.1106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08b196f977d6f1d78fae351cbd347828 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecba9d46763b40284edcc21c3f9cdded = $(`&lt;div id=&quot;html_ecba9d46763b40284edcc21c3f9cdded&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1106             latitude:22.7019             PM2_5:33.85714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08b196f977d6f1d78fae351cbd347828.setContent(html_ecba9d46763b40284edcc21c3f9cdded);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85d0d0246a6e9d099fe45898c4d80350.bindPopup(popup_08b196f977d6f1d78fae351cbd347828)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a90129b405b87f139c047d7bedd161a = L.circleMarker(\\n\",\n       \"                [37.4967, 121.2611],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f62018102fc8021c4dcf56b7c62ed458 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e423d97efad3beec7da70e01cfb5416e = $(`&lt;div id=&quot;html_e423d97efad3beec7da70e01cfb5416e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2611             latitude:37.4967             PM2_5:30.04441261             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f62018102fc8021c4dcf56b7c62ed458.setContent(html_e423d97efad3beec7da70e01cfb5416e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a90129b405b87f139c047d7bedd161a.bindPopup(popup_f62018102fc8021c4dcf56b7c62ed458)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87eb99f75f83e5d3951a206e3b3529e1 = L.circleMarker(\\n\",\n       \"                [26.8906, 100.2203],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4b16f5e21c59f37f0aeb443f9c0adfb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d5d242c29d1a652393be6ea6db71755 = $(`&lt;div id=&quot;html_6d5d242c29d1a652393be6ea6db71755&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2203             latitude:26.8906             PM2_5:12.86505682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4b16f5e21c59f37f0aeb443f9c0adfb2.setContent(html_6d5d242c29d1a652393be6ea6db71755);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87eb99f75f83e5d3951a206e3b3529e1.bindPopup(popup_4b16f5e21c59f37f0aeb443f9c0adfb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30f237585d0dab68c7da984ad8828c6e = L.circleMarker(\\n\",\n       \"                [28.4303, 117.9033],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ac7f17712fe71055f3e5960523a6f5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_663d4f603098e7a1ff8a5ecbc966ddc8 = $(`&lt;div id=&quot;html_663d4f603098e7a1ff8a5ecbc966ddc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9033             latitude:28.4303             PM2_5:43.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ac7f17712fe71055f3e5960523a6f5d.setContent(html_663d4f603098e7a1ff8a5ecbc966ddc8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30f237585d0dab68c7da984ad8828c6e.bindPopup(popup_4ac7f17712fe71055f3e5960523a6f5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_276d46c183642e6c907323ed1a793570 = L.circleMarker(\\n\",\n       \"                [33.8997, 116.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4668c4de0e1f515f62408e2946e89ce3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ba0f0c4d9f67782af7c0d81e0311263 = $(`&lt;div id=&quot;html_0ba0f0c4d9f67782af7c0d81e0311263&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8067             latitude:33.8997             PM2_5:59.70949721             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4668c4de0e1f515f62408e2946e89ce3.setContent(html_0ba0f0c4d9f67782af7c0d81e0311263);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_276d46c183642e6c907323ed1a793570.bindPopup(popup_4668c4de0e1f515f62408e2946e89ce3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69ed281ff8e061ffa0a43b8eaa6758ed = L.circleMarker(\\n\",\n       \"                [27.9153, 113.0048],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56b432a561cff5295ae1234b3ef2b7e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3066ac42da020f215d2fc9960d6d94ff = $(`&lt;div id=&quot;html_3066ac42da020f215d2fc9960d6d94ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0048             latitude:27.9153             PM2_5:42.26977401             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56b432a561cff5295ae1234b3ef2b7e3.setContent(html_3066ac42da020f215d2fc9960d6d94ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69ed281ff8e061ffa0a43b8eaa6758ed.bindPopup(popup_56b432a561cff5295ae1234b3ef2b7e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e136332935950fc0fdb20cf15cd7a9c6 = L.circleMarker(\\n\",\n       \"                [42.8172, 93.5128],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c142aff173bf78690ff3eea51591085a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86d43cfa9e5b8094541e59407c363239 = $(`&lt;div id=&quot;html_86d43cfa9e5b8094541e59407c363239&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:93.5128             latitude:42.8172             PM2_5:29.67156863             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c142aff173bf78690ff3eea51591085a.setContent(html_86d43cfa9e5b8094541e59407c363239);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e136332935950fc0fdb20cf15cd7a9c6.bindPopup(popup_c142aff173bf78690ff3eea51591085a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c4d49413dd72e7ab6f76ab387c3701d6 = L.circleMarker(\\n\",\n       \"                [27.11, 114.9739],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8adc31821d333ab13eb5df530a795457 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f95814e7b01cfc2d3537584bd83c185c = $(`&lt;div id=&quot;html_f95814e7b01cfc2d3537584bd83c185c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9739             latitude:27.11             PM2_5:50.92039106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8adc31821d333ab13eb5df530a795457.setContent(html_f95814e7b01cfc2d3537584bd83c185c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c4d49413dd72e7ab6f76ab387c3701d6.bindPopup(popup_8adc31821d333ab13eb5df530a795457)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d0769db01605472f2f465ab86b67903b = L.circleMarker(\\n\",\n       \"                [32.4246, 105.8153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d329e24479d727dc2c231ea293b5f923 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb04fa749a7ac0340b432b3f05c1ab46 = $(`&lt;div id=&quot;html_eb04fa749a7ac0340b432b3f05c1ab46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8153             latitude:32.4246             PM2_5:25.12222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d329e24479d727dc2c231ea293b5f923.setContent(html_eb04fa749a7ac0340b432b3f05c1ab46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d0769db01605472f2f465ab86b67903b.bindPopup(popup_d329e24479d727dc2c231ea293b5f923)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1854ca50a81f1635995595397e701e67 = L.circleMarker(\\n\",\n       \"                [30.1377, 104.6289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1231cd3dedf92d6228537135ed023bd2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e26bc36c74850332754352626ff02d0a = $(`&lt;div id=&quot;html_e26bc36c74850332754352626ff02d0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6289             latitude:30.1377             PM2_5:37.58725762             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1231cd3dedf92d6228537135ed023bd2.setContent(html_e26bc36c74850332754352626ff02d0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1854ca50a81f1635995595397e701e67.bindPopup(popup_1231cd3dedf92d6228537135ed023bd2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_454c18b2b37ab838822b8c9928128a12 = L.circleMarker(\\n\",\n       \"                [31.751, 119.579],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_14d09b4291375e88804d852d1d6d47a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3680a65027a7d659ac70880835500dba = $(`&lt;div id=&quot;html_3680a65027a7d659ac70880835500dba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.579             latitude:31.751             PM2_5:40.41620112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_14d09b4291375e88804d852d1d6d47a6.setContent(html_3680a65027a7d659ac70880835500dba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_454c18b2b37ab838822b8c9928128a12.bindPopup(popup_14d09b4291375e88804d852d1d6d47a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c605e91926e6eb8fa84bad9dc7126322 = L.circleMarker(\\n\",\n       \"                [38.8707, 115.5214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6253821d5e6ebd9be22a3a8ecea0534 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ee40f2c00a14263572dbc497a806692 = $(`&lt;div id=&quot;html_6ee40f2c00a14263572dbc497a806692&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.5214             latitude:38.8707             PM2_5:55.75207756             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6253821d5e6ebd9be22a3a8ecea0534.setContent(html_6ee40f2c00a14263572dbc497a806692);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c605e91926e6eb8fa84bad9dc7126322.bindPopup(popup_e6253821d5e6ebd9be22a3a8ecea0534)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d066397a6fccd0bb26b4fd17f779b1d0 = L.circleMarker(\\n\",\n       \"                [43.95305556, 126.4738889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d086ad54fb4d7707292cbe3153b423b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30c15a3ae503b1b449fc8a2d7593e827 = $(`&lt;div id=&quot;html_30c15a3ae503b1b449fc8a2d7593e827&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4738889             latitude:43.95305556             PM2_5:32.6299435             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d086ad54fb4d7707292cbe3153b423b1.setContent(html_30c15a3ae503b1b449fc8a2d7593e827);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d066397a6fccd0bb26b4fd17f779b1d0.bindPopup(popup_d086ad54fb4d7707292cbe3153b423b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74277b93bde2793b454d7a9a3376d676 = L.circleMarker(\\n\",\n       \"                [41.0385, 113.1076],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77a70d356f709a850a55241749db3ca7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8fe4275c848047107f76c7b26fa4374 = $(`&lt;div id=&quot;html_e8fe4275c848047107f76c7b26fa4374&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1076             latitude:41.0385             PM2_5:21.04899135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77a70d356f709a850a55241749db3ca7.setContent(html_e8fe4275c848047107f76c7b26fa4374);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74277b93bde2793b454d7a9a3376d676.bindPopup(popup_77a70d356f709a850a55241749db3ca7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9319d3e9239e51c894d7295f73c585ff = L.circleMarker(\\n\",\n       \"                [45.9819, 126.6106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67b5a21bb8d9686e966c5e9f749bea5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89fddfedbbda2b7251bd3001e043d748 = $(`&lt;div id=&quot;html_89fddfedbbda2b7251bd3001e043d748&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6106             latitude:45.9819             PM2_5:34.13841808             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67b5a21bb8d9686e966c5e9f749bea5f.setContent(html_89fddfedbbda2b7251bd3001e043d748);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9319d3e9239e51c894d7295f73c585ff.bindPopup(popup_67b5a21bb8d9686e966c5e9f749bea5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7a8cf695fdac8e75869e1c21c931a07 = L.circleMarker(\\n\",\n       \"                [27.8244, 113.135],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32c72ae2c73b1c708f85e10cb2d00d33 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7df74e56097c31e13de342ba4f34025d = $(`&lt;div id=&quot;html_7df74e56097c31e13de342ba4f34025d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.135             latitude:27.8244             PM2_5:41.64623955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32c72ae2c73b1c708f85e10cb2d00d33.setContent(html_7df74e56097c31e13de342ba4f34025d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7a8cf695fdac8e75869e1c21c931a07.bindPopup(popup_32c72ae2c73b1c708f85e10cb2d00d33)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12028acb79b43bf9f714725d075b8b6a = L.circleMarker(\\n\",\n       \"                [33.6067, 118.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c397d73b18ddea40410368bbf585c921 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_408dee6f19fdccd2266dd0054a98b792 = $(`&lt;div id=&quot;html_408dee6f19fdccd2266dd0054a98b792&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.989             latitude:33.6067             PM2_5:49.74859551             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c397d73b18ddea40410368bbf585c921.setContent(html_408dee6f19fdccd2266dd0054a98b792);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12028acb79b43bf9f714725d075b8b6a.bindPopup(popup_c397d73b18ddea40410368bbf585c921)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb3b80d6aef6ca99627c2479afcfdd83 = L.circleMarker(\\n\",\n       \"                [35.763, 115.031],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5be744058d0140af010ea600a1ff90ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf70f96b9f819eabe62ad991a610b62d = $(`&lt;div id=&quot;html_bf70f96b9f819eabe62ad991a610b62d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.031             latitude:35.763             PM2_5:59.26740947             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5be744058d0140af010ea600a1ff90ab.setContent(html_bf70f96b9f819eabe62ad991a610b62d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb3b80d6aef6ca99627c2479afcfdd83.bindPopup(popup_5be744058d0140af010ea600a1ff90ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8395bf9568562e2b23f6d0d3b2a52766 = L.circleMarker(\\n\",\n       \"                [46.7588, 130.3794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a00827b9cc55d139763615e1d315785 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1e51281bd7ef87fd4c885598f763ca0 = $(`&lt;div id=&quot;html_c1e51281bd7ef87fd4c885598f763ca0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3794             latitude:46.7588             PM2_5:31.27683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a00827b9cc55d139763615e1d315785.setContent(html_c1e51281bd7ef87fd4c885598f763ca0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8395bf9568562e2b23f6d0d3b2a52766.bindPopup(popup_8a00827b9cc55d139763615e1d315785)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08470a88836e7c013721835eeb1db584 = L.circleMarker(\\n\",\n       \"                [23.3892, 104.2319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ce7817a7f8ba3f7469ea6bed7d7fa9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b20a5e3bbbf445c529b5432f33b9628f = $(`&lt;div id=&quot;html_b20a5e3bbbf445c529b5432f33b9628f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.2319             latitude:23.3892             PM2_5:19.89655172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ce7817a7f8ba3f7469ea6bed7d7fa9e.setContent(html_b20a5e3bbbf445c529b5432f33b9628f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08470a88836e7c013721835eeb1db584.bindPopup(popup_1ce7817a7f8ba3f7469ea6bed7d7fa9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd0a4c467abfe3d521cf87382fb20c1f = L.circleMarker(\\n\",\n       \"                [30.1142, 104.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0db453261c1fce3c88bbbe38c8e67f1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2aa6d085a2ff6d07411b85d90292c085 = $(`&lt;div id=&quot;html_2aa6d085a2ff6d07411b85d90292c085&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6469             latitude:30.1142             PM2_5:39.93888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0db453261c1fce3c88bbbe38c8e67f1b.setContent(html_2aa6d085a2ff6d07411b85d90292c085);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd0a4c467abfe3d521cf87382fb20c1f.bindPopup(popup_0db453261c1fce3c88bbbe38c8e67f1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47f20f235ff8934ad41f775fae69d478 = L.circleMarker(\\n\",\n       \"                [41.9967, 121.6178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22b197289c02758ea0ccc963cb3b5077 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d25871b08870719e8f6c53971176ad26 = $(`&lt;div id=&quot;html_d25871b08870719e8f6c53971176ad26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6178             latitude:41.9967             PM2_5:23.90422535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22b197289c02758ea0ccc963cb3b5077.setContent(html_d25871b08870719e8f6c53971176ad26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47f20f235ff8934ad41f775fae69d478.bindPopup(popup_22b197289c02758ea0ccc963cb3b5077)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67b6bf3fd2c62e2e334572b438b3a656 = L.circleMarker(\\n\",\n       \"                [22.805, 108.383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d670f4f97ff5eedf690dcee3d929eb48 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3be54428ae1818dae6a7b7063e98596d = $(`&lt;div id=&quot;html_3be54428ae1818dae6a7b7063e98596d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.383             latitude:22.805             PM2_5:32.59722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d670f4f97ff5eedf690dcee3d929eb48.setContent(html_3be54428ae1818dae6a7b7063e98596d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67b6bf3fd2c62e2e334572b438b3a656.bindPopup(popup_d670f4f97ff5eedf690dcee3d929eb48)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f6ee06813231b8fc7d1d3d50adedd50 = L.circleMarker(\\n\",\n       \"                [28.4459, 117.973],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54aef0d8fd7e2933c4fd5c6ad8ac9db3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1554b9cd3d77dac237227afa13e5b94 = $(`&lt;div id=&quot;html_f1554b9cd3d77dac237227afa13e5b94&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.973             latitude:28.4459             PM2_5:38.90642458             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54aef0d8fd7e2933c4fd5c6ad8ac9db3.setContent(html_f1554b9cd3d77dac237227afa13e5b94);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f6ee06813231b8fc7d1d3d50adedd50.bindPopup(popup_54aef0d8fd7e2933c4fd5c6ad8ac9db3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_592c1a65a2033c48cfcd5c7aab33aefa = L.circleMarker(\\n\",\n       \"                [39.6572, 106.7931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0866f6988244798a404282452cdd17ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72e71642d488e91d80d124f235467b2b = $(`&lt;div id=&quot;html_72e71642d488e91d80d124f235467b2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7931             latitude:39.6572             PM2_5:38.36629526             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0866f6988244798a404282452cdd17ce.setContent(html_72e71642d488e91d80d124f235467b2b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_592c1a65a2033c48cfcd5c7aab33aefa.bindPopup(popup_0866f6988244798a404282452cdd17ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc49677792e66909380b4f69113f43e3 = L.circleMarker(\\n\",\n       \"                [31.17, 120.635],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78a0292406392fb6b2b8c1fab9c35539 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df7ee6db5651dd6bed77c68f6ab67aab = $(`&lt;div id=&quot;html_df7ee6db5651dd6bed77c68f6ab67aab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.635             latitude:31.17             PM2_5:41.06571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78a0292406392fb6b2b8c1fab9c35539.setContent(html_df7ee6db5651dd6bed77c68f6ab67aab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc49677792e66909380b4f69113f43e3.bindPopup(popup_78a0292406392fb6b2b8c1fab9c35539)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83a5e1ad0a0361a779f7c874abfd83c3 = L.circleMarker(\\n\",\n       \"                [27.8072, 114.4011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae85bd00135823fee71d921084ec07cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42314ac35cb8a822f6217dec50400a82 = $(`&lt;div id=&quot;html_42314ac35cb8a822f6217dec50400a82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4011             latitude:27.8072             PM2_5:51.75623269             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae85bd00135823fee71d921084ec07cc.setContent(html_42314ac35cb8a822f6217dec50400a82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83a5e1ad0a0361a779f7c874abfd83c3.bindPopup(popup_ae85bd00135823fee71d921084ec07cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2048d339d8543b9b46de0f7b0d10eaa = L.circleMarker(\\n\",\n       \"                [24.339, 102.5381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68e99f3c33733eaf6bbc270f6b4f9770 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a939442ad7416734512d3267f88368ff = $(`&lt;div id=&quot;html_a939442ad7416734512d3267f88368ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5381             latitude:24.339             PM2_5:22.35252809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68e99f3c33733eaf6bbc270f6b4f9770.setContent(html_a939442ad7416734512d3267f88368ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2048d339d8543b9b46de0f7b0d10eaa.bindPopup(popup_68e99f3c33733eaf6bbc270f6b4f9770)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96035047d1f764182b8606b7f6f614be = L.circleMarker(\\n\",\n       \"                [35.0697, 109.0697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa0d36d72607cd6352b8f7c65e2dd992 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c05992cb619d583e2c53d7f97f35aee2 = $(`&lt;div id=&quot;html_c05992cb619d583e2c53d7f97f35aee2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0697             latitude:35.0697             PM2_5:43.21111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa0d36d72607cd6352b8f7c65e2dd992.setContent(html_c05992cb619d583e2c53d7f97f35aee2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96035047d1f764182b8606b7f6f614be.bindPopup(popup_aa0d36d72607cd6352b8f7c65e2dd992)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6748ad1cfd16198cda0df7e07daf7770 = L.circleMarker(\\n\",\n       \"                [26.4519, 111.5989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a04f8cf164da1bfc1ed128a25a64eb76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a3aa73ebe27f136ec985353ada2822c = $(`&lt;div id=&quot;html_4a3aa73ebe27f136ec985353ada2822c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5989             latitude:26.4519             PM2_5:38.40285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a04f8cf164da1bfc1ed128a25a64eb76.setContent(html_4a3aa73ebe27f136ec985353ada2822c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6748ad1cfd16198cda0df7e07daf7770.bindPopup(popup_a04f8cf164da1bfc1ed128a25a64eb76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e557b18a71847c450f116bfa78f4966f = L.circleMarker(\\n\",\n       \"                [31.2659, 121.536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d656cf76492d5ae290f5a8039340afd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a781f5895e08a7e9b48a110fdc889423 = $(`&lt;div id=&quot;html_a781f5895e08a7e9b48a110fdc889423&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.536             latitude:31.2659             PM2_5:40.78813559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d656cf76492d5ae290f5a8039340afd.setContent(html_a781f5895e08a7e9b48a110fdc889423);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e557b18a71847c450f116bfa78f4966f.bindPopup(popup_8d656cf76492d5ae290f5a8039340afd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3fe8609c5c9225886ef27ab47201a7f9 = L.circleMarker(\\n\",\n       \"                [29.53675, 106.4959],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42f9f2114050846198db962abb62eb65 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a244c2e7034d4061c41d582cd4aa495f = $(`&lt;div id=&quot;html_a244c2e7034d4061c41d582cd4aa495f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.4959             latitude:29.53675             PM2_5:37.87465181             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42f9f2114050846198db962abb62eb65.setContent(html_a244c2e7034d4061c41d582cd4aa495f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3fe8609c5c9225886ef27ab47201a7f9.bindPopup(popup_42f9f2114050846198db962abb62eb65)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_833473d3c8fda71e6a08a45bc14516b6 = L.circleMarker(\\n\",\n       \"                [30.6145, 116.9894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe34eb498a1800feac10df4214860c47 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06cd2caeaaf2623ab90fc8e029871ad6 = $(`&lt;div id=&quot;html_06cd2caeaaf2623ab90fc8e029871ad6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9894             latitude:30.6145             PM2_5:57.02957746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe34eb498a1800feac10df4214860c47.setContent(html_06cd2caeaaf2623ab90fc8e029871ad6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_833473d3c8fda71e6a08a45bc14516b6.bindPopup(popup_fe34eb498a1800feac10df4214860c47)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3275d5cb7264e6ec451bf387e7408293 = L.circleMarker(\\n\",\n       \"                [23.3917, 113.215],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d97581f6fbe944858b45e6dcd69b0c9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9789b2963f46a9328464744096378946 = $(`&lt;div id=&quot;html_9789b2963f46a9328464744096378946&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.215             latitude:23.3917             PM2_5:31.49579832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d97581f6fbe944858b45e6dcd69b0c9d.setContent(html_9789b2963f46a9328464744096378946);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3275d5cb7264e6ec451bf387e7408293.bindPopup(popup_d97581f6fbe944858b45e6dcd69b0c9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da4f0d066629701f6b472ed9c6aab418 = L.circleMarker(\\n\",\n       \"                [30.6463, 111.3549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d334320607af8d899cd9760f80a602de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_384c8ac1be96878b592d28b6e2fffa6b = $(`&lt;div id=&quot;html_384c8ac1be96878b592d28b6e2fffa6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3549             latitude:30.6463             PM2_5:54.88450704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d334320607af8d899cd9760f80a602de.setContent(html_384c8ac1be96878b592d28b6e2fffa6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da4f0d066629701f6b472ed9c6aab418.bindPopup(popup_d334320607af8d899cd9760f80a602de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ceee67f4f832f7900d42945894a35355 = L.circleMarker(\\n\",\n       \"                [29.9899, 103.0013],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ee24f094028fe1efaf009af8356df77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_faa662d0b6bb8acf5af11c3f92843b04 = $(`&lt;div id=&quot;html_faa662d0b6bb8acf5af11c3f92843b04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0013             latitude:29.9899             PM2_5:48.85180055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ee24f094028fe1efaf009af8356df77.setContent(html_faa662d0b6bb8acf5af11c3f92843b04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ceee67f4f832f7900d42945894a35355.bindPopup(popup_6ee24f094028fe1efaf009af8356df77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ecf86ae2d2615d5cbb6c7170700be237 = L.circleMarker(\\n\",\n       \"                [41.3472, 123.8142],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4cff503b354a9ca253d08756df535203 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_018c401d0d0fff00b5d5a4b35497fc40 = $(`&lt;div id=&quot;html_018c401d0d0fff00b5d5a4b35497fc40&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8142             latitude:41.3472             PM2_5:30.93201133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4cff503b354a9ca253d08756df535203.setContent(html_018c401d0d0fff00b5d5a4b35497fc40);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ecf86ae2d2615d5cbb6c7170700be237.bindPopup(popup_4cff503b354a9ca253d08756df535203)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c705ef9708ce9072bf1f98d5a57f27f = L.circleMarker(\\n\",\n       \"                [47.3386, 123.9305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03d05efcdd19be81ca8f9695e75bbed7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02c9353895e3ba7a7962213854e34547 = $(`&lt;div id=&quot;html_02c9353895e3ba7a7962213854e34547&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9305             latitude:47.3386             PM2_5:24.86428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03d05efcdd19be81ca8f9695e75bbed7.setContent(html_02c9353895e3ba7a7962213854e34547);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c705ef9708ce9072bf1f98d5a57f27f.bindPopup(popup_03d05efcdd19be81ca8f9695e75bbed7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbc14b4172c8b0865dd86b4ff4f0aae1 = L.circleMarker(\\n\",\n       \"                [27.8667, 113.167],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8136f5cdb22cb40b5db644f7f1a9a6f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9b7e1d5aa8d3a0e60dd550e6dc2542a = $(`&lt;div id=&quot;html_a9b7e1d5aa8d3a0e60dd550e6dc2542a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.167             latitude:27.8667             PM2_5:38.5579096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8136f5cdb22cb40b5db644f7f1a9a6f1.setContent(html_a9b7e1d5aa8d3a0e60dd550e6dc2542a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbc14b4172c8b0865dd86b4ff4f0aae1.bindPopup(popup_8136f5cdb22cb40b5db644f7f1a9a6f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71d722a62ad2343d87da79c5bdfeee1f = L.circleMarker(\\n\",\n       \"                [40.916, 107.5936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aeb76bf8639f78d5a7631487a2a77227 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_32466d64105249e93e8e9eb0ec4769ca = $(`&lt;div id=&quot;html_32466d64105249e93e8e9eb0ec4769ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5936             latitude:40.916             PM2_5:28.17335244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aeb76bf8639f78d5a7631487a2a77227.setContent(html_32466d64105249e93e8e9eb0ec4769ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71d722a62ad2343d87da79c5bdfeee1f.bindPopup(popup_aeb76bf8639f78d5a7631487a2a77227)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e8d0b7bb02e0aab500097aa7bae348d = L.circleMarker(\\n\",\n       \"                [37.7087, 112.7105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5e962c334fa9e2d47e00839d1037984 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05c88761b1d483d5ac7c3a82791e2621 = $(`&lt;div id=&quot;html_05c88761b1d483d5ac7c3a82791e2621&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7105             latitude:37.7087             PM2_5:62.86173184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5e962c334fa9e2d47e00839d1037984.setContent(html_05c88761b1d483d5ac7c3a82791e2621);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e8d0b7bb02e0aab500097aa7bae348d.bindPopup(popup_d5e962c334fa9e2d47e00839d1037984)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77d68e57864130143959976cf0e4b1e6 = L.circleMarker(\\n\",\n       \"                [24.3663, 109.3957],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad478c3421447c061bdf590ee367d38b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f3bdaeeedb1839ec2e049757cb91882 = $(`&lt;div id=&quot;html_3f3bdaeeedb1839ec2e049757cb91882&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.3957             latitude:24.3663             PM2_5:50.98333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad478c3421447c061bdf590ee367d38b.setContent(html_3f3bdaeeedb1839ec2e049757cb91882);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77d68e57864130143959976cf0e4b1e6.bindPopup(popup_ad478c3421447c061bdf590ee367d38b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4132d67f57904edd9aaff59569ac9b11 = L.circleMarker(\\n\",\n       \"                [26.4364, 106.6554],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fcabc2696c792523b5b45ebf2962a84a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a412563772e3abed14ac7600538c780 = $(`&lt;div id=&quot;html_3a412563772e3abed14ac7600538c780&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6554             latitude:26.4364             PM2_5:30.33479532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fcabc2696c792523b5b45ebf2962a84a.setContent(html_3a412563772e3abed14ac7600538c780);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4132d67f57904edd9aaff59569ac9b11.bindPopup(popup_fcabc2696c792523b5b45ebf2962a84a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3486b3c2ab533621fbd5576be1143dc = L.circleMarker(\\n\",\n       \"                [26.6009, 106.7105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1573b919aa74449888897d4257becbc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93f43d90572b75256f0d89bf1f3f36c8 = $(`&lt;div id=&quot;html_93f43d90572b75256f0d89bf1f3f36c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7105             latitude:26.6009             PM2_5:37.39915966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1573b919aa74449888897d4257becbc.setContent(html_93f43d90572b75256f0d89bf1f3f36c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3486b3c2ab533621fbd5576be1143dc.bindPopup(popup_f1573b919aa74449888897d4257becbc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38afc9dbef0b653e3e3270f330b51754 = L.circleMarker(\\n\",\n       \"                [31.5631, 120.245],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9902939bc5bf3de670455dbe98624ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_682ba2d237561d62a1a134d8fdcd76f6 = $(`&lt;div id=&quot;html_682ba2d237561d62a1a134d8fdcd76f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.245             latitude:31.5631             PM2_5:46.98314607             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9902939bc5bf3de670455dbe98624ce.setContent(html_682ba2d237561d62a1a134d8fdcd76f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38afc9dbef0b653e3e3270f330b51754.bindPopup(popup_a9902939bc5bf3de670455dbe98624ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b00b983f76bcdfbb4b90f42e97ca74f9 = L.circleMarker(\\n\",\n       \"                [37.4372, 116.2714],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69e89e1bce7195166a32bc5cb8cedb29 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92b6864e43322d21b070806861ff8ddd = $(`&lt;div id=&quot;html_92b6864e43322d21b070806861ff8ddd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.2714             latitude:37.4372             PM2_5:52.45266272             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69e89e1bce7195166a32bc5cb8cedb29.setContent(html_92b6864e43322d21b070806861ff8ddd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b00b983f76bcdfbb4b90f42e97ca74f9.bindPopup(popup_69e89e1bce7195166a32bc5cb8cedb29)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_857e9225b77930196c13edab411b1dff = L.circleMarker(\\n\",\n       \"                [35.27, 115.455],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_faf79b969e3ab37411908d9078639f4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7cf8bb5ccacdfce326525c717a4d5545 = $(`&lt;div id=&quot;html_7cf8bb5ccacdfce326525c717a4d5545&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.455             latitude:35.27             PM2_5:62.4789916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_faf79b969e3ab37411908d9078639f4a.setContent(html_7cf8bb5ccacdfce326525c717a4d5545);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_857e9225b77930196c13edab411b1dff.bindPopup(popup_faf79b969e3ab37411908d9078639f4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b839680a9f250db75a7d5ee75c48cf3d = L.circleMarker(\\n\",\n       \"                [35.428, 116.6305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_649f72aa4d6ac27938208b04713ad49f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62d9a3daffaabb93e7280fe403313690 = $(`&lt;div id=&quot;html_62d9a3daffaabb93e7280fe403313690&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6305             latitude:35.428             PM2_5:49.96927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_649f72aa4d6ac27938208b04713ad49f.setContent(html_62d9a3daffaabb93e7280fe403313690);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b839680a9f250db75a7d5ee75c48cf3d.bindPopup(popup_649f72aa4d6ac27938208b04713ad49f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68aa8894384d6d5ed81ed32b0454f396 = L.circleMarker(\\n\",\n       \"                [38.0398, 114.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ad175566dab5f0af6a0bb85a2c17796 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b65f166ef2fb53ca743f77069540b9b = $(`&lt;div id=&quot;html_7b65f166ef2fb53ca743f77069540b9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6046             latitude:38.0398             PM2_5:72.15181058             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ad175566dab5f0af6a0bb85a2c17796.setContent(html_7b65f166ef2fb53ca743f77069540b9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68aa8894384d6d5ed81ed32b0454f396.bindPopup(popup_6ad175566dab5f0af6a0bb85a2c17796)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_052925488ce1822f6010137acb3f0906 = L.circleMarker(\\n\",\n       \"                [23.1142, 114.4103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0fc0e3774ea6e29ca7be0f7fea3f2c22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50148cf9c3185ef1e63ab14432c554b4 = $(`&lt;div id=&quot;html_50148cf9c3185ef1e63ab14432c554b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4103             latitude:23.1142             PM2_5:28.22727273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0fc0e3774ea6e29ca7be0f7fea3f2c22.setContent(html_50148cf9c3185ef1e63ab14432c554b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_052925488ce1822f6010137acb3f0906.bindPopup(popup_0fc0e3774ea6e29ca7be0f7fea3f2c22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c05442fc1432e611f0ba932b72119c1f = L.circleMarker(\\n\",\n       \"                [22.6164, 110.1433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afae3e9814db13991f176b673e0027d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2bff588031fe914093c11bdb071da9ff = $(`&lt;div id=&quot;html_2bff588031fe914093c11bdb071da9ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1433             latitude:22.6164             PM2_5:34.49011299             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afae3e9814db13991f176b673e0027d1.setContent(html_2bff588031fe914093c11bdb071da9ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c05442fc1432e611f0ba932b72119c1f.bindPopup(popup_afae3e9814db13991f176b673e0027d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd5f87bfafb010914e3dd50f31c28069 = L.circleMarker(\\n\",\n       \"                [29.57278, 106.4042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_845f1026ec3b35c9cb70da496425ed8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4b71dba402b1059b9ecdf728544070aa = $(`&lt;div id=&quot;html_4b71dba402b1059b9ecdf728544070aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.4042             latitude:29.57278             PM2_5:40.69553073             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_845f1026ec3b35c9cb70da496425ed8f.setContent(html_4b71dba402b1059b9ecdf728544070aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd5f87bfafb010914e3dd50f31c28069.bindPopup(popup_845f1026ec3b35c9cb70da496425ed8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50d2f54efa2f8642b9d9c436da8ea972 = L.circleMarker(\\n\",\n       \"                [24.2719, 116.0797],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46eafb509f939478451706f388f30132 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5a817800abc07f09e0f16941395ddad = $(`&lt;div id=&quot;html_d5a817800abc07f09e0f16941395ddad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0797             latitude:24.2719             PM2_5:25.39915966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46eafb509f939478451706f388f30132.setContent(html_d5a817800abc07f09e0f16941395ddad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50d2f54efa2f8642b9d9c436da8ea972.bindPopup(popup_46eafb509f939478451706f388f30132)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bda0d5f4fd92005bea1d92a1dfb0a42c = L.circleMarker(\\n\",\n       \"                [36.1417, 106.2319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d995a4960a1ba0afdf3eecb7c73b18a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f35be6b085e27dbcb2cfb4309feab7ac = $(`&lt;div id=&quot;html_f35be6b085e27dbcb2cfb4309feab7ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2319             latitude:36.1417             PM2_5:27.15616046             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d995a4960a1ba0afdf3eecb7c73b18a.setContent(html_f35be6b085e27dbcb2cfb4309feab7ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bda0d5f4fd92005bea1d92a1dfb0a42c.bindPopup(popup_3d995a4960a1ba0afdf3eecb7c73b18a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e67f73936b09123bdf442a0d2d36da6c = L.circleMarker(\\n\",\n       \"                [29.1029, 119.686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb89f81b83fbce68cfebef44e385054e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99f784cadfc1f64f3684d3c050817093 = $(`&lt;div id=&quot;html_99f784cadfc1f64f3684d3c050817093&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.686             latitude:29.1029             PM2_5:34.52506964             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb89f81b83fbce68cfebef44e385054e.setContent(html_99f784cadfc1f64f3684d3c050817093);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e67f73936b09123bdf442a0d2d36da6c.bindPopup(popup_bb89f81b83fbce68cfebef44e385054e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_332120859091067d2103eabb237de294 = L.circleMarker(\\n\",\n       \"                [30.1819, 120.27],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97c94aa7b661bc6602e78a1c575fc967 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2657d6ca9ae78f04d884c3d5c5ffcdaa = $(`&lt;div id=&quot;html_2657d6ca9ae78f04d884c3d5c5ffcdaa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.27             latitude:30.1819             PM2_5:43.43521127             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97c94aa7b661bc6602e78a1c575fc967.setContent(html_2657d6ca9ae78f04d884c3d5c5ffcdaa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_332120859091067d2103eabb237de294.bindPopup(popup_97c94aa7b661bc6602e78a1c575fc967)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_020cfff2fbefe6a20400d59e295c0460 = L.circleMarker(\\n\",\n       \"                [30.4133, 114.8131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3511300814f91b864d2980181e0ecc1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68e6ba91f1af4492d96a6200aa76e3e4 = $(`&lt;div id=&quot;html_68e6ba91f1af4492d96a6200aa76e3e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8131             latitude:30.4133             PM2_5:49.26478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3511300814f91b864d2980181e0ecc1d.setContent(html_68e6ba91f1af4492d96a6200aa76e3e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_020cfff2fbefe6a20400d59e295c0460.bindPopup(popup_3511300814f91b864d2980181e0ecc1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6aa564cc8e9580509892ac5c6c25a3e = L.circleMarker(\\n\",\n       \"                [39.9279, 116.225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ab20b0aba858e72d7fb213a656e4938 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_057beba0d8d8ef28d51bb7b6786593ce = $(`&lt;div id=&quot;html_057beba0d8d8ef28d51bb7b6786593ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.225             latitude:39.9279             PM2_5:56.0694051             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ab20b0aba858e72d7fb213a656e4938.setContent(html_057beba0d8d8ef28d51bb7b6786593ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6aa564cc8e9580509892ac5c6c25a3e.bindPopup(popup_2ab20b0aba858e72d7fb213a656e4938)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92a0ee822096e4d5e1b1cf88fc3dccb2 = L.circleMarker(\\n\",\n       \"                [42.9409, 89.191],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e972ad3bcfa331fa5b11ebc323a6cfd6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df4e8899efe8a5b260682adb06c20e46 = $(`&lt;div id=&quot;html_df4e8899efe8a5b260682adb06c20e46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:89.191             latitude:42.9409             PM2_5:53.92087542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e972ad3bcfa331fa5b11ebc323a6cfd6.setContent(html_df4e8899efe8a5b260682adb06c20e46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92a0ee822096e4d5e1b1cf88fc3dccb2.bindPopup(popup_e972ad3bcfa331fa5b11ebc323a6cfd6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_648138f704c75810f5daa3c4bb3de213 = L.circleMarker(\\n\",\n       \"                [29.1242, 110.4697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_870445d53b4e49cd595c653b6dcc70a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_121fb32b62f8a82fe6188bd3dac615ac = $(`&lt;div id=&quot;html_121fb32b62f8a82fe6188bd3dac615ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4697             latitude:29.1242             PM2_5:40.49860724             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_870445d53b4e49cd595c653b6dcc70a1.setContent(html_121fb32b62f8a82fe6188bd3dac615ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_648138f704c75810f5daa3c4bb3de213.bindPopup(popup_870445d53b4e49cd595c653b6dcc70a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb00362d4bcfc2331b8cb968e86f4b61 = L.circleMarker(\\n\",\n       \"                [24.3406, 109.3886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57d26c42876e852cd8b29e2064a03443 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a09128bc39874a1404f34d0458a53db3 = $(`&lt;div id=&quot;html_a09128bc39874a1404f34d0458a53db3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.3886             latitude:24.3406             PM2_5:40.90250696             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57d26c42876e852cd8b29e2064a03443.setContent(html_a09128bc39874a1404f34d0458a53db3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb00362d4bcfc2331b8cb968e86f4b61.bindPopup(popup_57d26c42876e852cd8b29e2064a03443)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80b06a48716997961b6d09ab9e0c4343 = L.circleMarker(\\n\",\n       \"                [29.7228, 106.626],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a08cc38524aab42d9c36234f91b38ce3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e00fe1dd5b40fedaad011db7f6212f6 = $(`&lt;div id=&quot;html_9e00fe1dd5b40fedaad011db7f6212f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.626             latitude:29.7228             PM2_5:37.63407821             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a08cc38524aab42d9c36234f91b38ce3.setContent(html_9e00fe1dd5b40fedaad011db7f6212f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80b06a48716997961b6d09ab9e0c4343.bindPopup(popup_a08cc38524aab42d9c36234f91b38ce3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01190494dd4e61959fb074ff9cabe618 = L.circleMarker(\\n\",\n       \"                [22.7875, 108.301],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bcfded3a640caf4e8e5757112c40de3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a89be1dadfdf43274a70ac37ab72ea4b = $(`&lt;div id=&quot;html_a89be1dadfdf43274a70ac37ab72ea4b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.301             latitude:22.7875             PM2_5:35.12253521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bcfded3a640caf4e8e5757112c40de3e.setContent(html_a89be1dadfdf43274a70ac37ab72ea4b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01190494dd4e61959fb074ff9cabe618.bindPopup(popup_bcfded3a640caf4e8e5757112c40de3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_737db356b5503b73a80bf73d6f7a37af = L.circleMarker(\\n\",\n       \"                [31.1654, 121.412],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63b294b4b74455d23115e6b89bfd64a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ddf69cb1f14efd1f573ab0e857562896 = $(`&lt;div id=&quot;html_ddf69cb1f14efd1f573ab0e857562896&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.412             latitude:31.1654             PM2_5:41.32285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63b294b4b74455d23115e6b89bfd64a1.setContent(html_ddf69cb1f14efd1f573ab0e857562896);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_737db356b5503b73a80bf73d6f7a37af.bindPopup(popup_63b294b4b74455d23115e6b89bfd64a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a6fce199c2c74eef4442406b22fad10 = L.circleMarker(\\n\",\n       \"                [33.5981, 119.036],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_623ee0bef81333743c6bf73b9b81fb0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d199b75db2c0deeca3ccb6f7158cb0e8 = $(`&lt;div id=&quot;html_d199b75db2c0deeca3ccb6f7158cb0e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.036             latitude:33.5981             PM2_5:43.71126761             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_623ee0bef81333743c6bf73b9b81fb0a.setContent(html_d199b75db2c0deeca3ccb6f7158cb0e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a6fce199c2c74eef4442406b22fad10.bindPopup(popup_623ee0bef81333743c6bf73b9b81fb0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6856bfa05befb361eb7aa13fd61ba5f0 = L.circleMarker(\\n\",\n       \"                [30.5103, 117.0549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_682908a8a1e75b903cd59c60faadb13c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_232a3b3fd9495de26589b8afc4712d4e = $(`&lt;div id=&quot;html_232a3b3fd9495de26589b8afc4712d4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0549             latitude:30.5103             PM2_5:46.05865922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_682908a8a1e75b903cd59c60faadb13c.setContent(html_232a3b3fd9495de26589b8afc4712d4e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6856bfa05befb361eb7aa13fd61ba5f0.bindPopup(popup_682908a8a1e75b903cd59c60faadb13c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cacd2b59eb7db91ba1ef0ce70945678 = L.circleMarker(\\n\",\n       \"                [32.1319, 119.43],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0a1f5d215f6ec4c92c9e15f18fc343e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17011abc37acc4a36f4ae730cb97796e = $(`&lt;div id=&quot;html_17011abc37acc4a36f4ae730cb97796e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.43             latitude:32.1319             PM2_5:53.00555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0a1f5d215f6ec4c92c9e15f18fc343e.setContent(html_17011abc37acc4a36f4ae730cb97796e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cacd2b59eb7db91ba1ef0ce70945678.bindPopup(popup_e0a1f5d215f6ec4c92c9e15f18fc343e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83343ac96b9e2d28c2079dad4c2d1710 = L.circleMarker(\\n\",\n       \"                [44.0297, 87.2717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d0e8a5cb0fc6f943a6aabcefe44d828 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3692eae92b85f7fded1b8d807d371ba = $(`&lt;div id=&quot;html_e3692eae92b85f7fded1b8d807d371ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2717             latitude:44.0297             PM2_5:52.32122905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d0e8a5cb0fc6f943a6aabcefe44d828.setContent(html_e3692eae92b85f7fded1b8d807d371ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83343ac96b9e2d28c2079dad4c2d1710.bindPopup(popup_4d0e8a5cb0fc6f943a6aabcefe44d828)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f609900b2f77d9773b048f820360ba40 = L.circleMarker(\\n\",\n       \"                [30.9431, 118.7175],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f3eea5d087f9dc51a8a13b37688b55f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6049b01f9b9cf917504031aa441d46d = $(`&lt;div id=&quot;html_e6049b01f9b9cf917504031aa441d46d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7175             latitude:30.9431             PM2_5:41.53221289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f3eea5d087f9dc51a8a13b37688b55f.setContent(html_e6049b01f9b9cf917504031aa441d46d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f609900b2f77d9773b048f820360ba40.bindPopup(popup_9f3eea5d087f9dc51a8a13b37688b55f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa587db7f78cd4142b7c2f039351b261 = L.circleMarker(\\n\",\n       \"                [41.765, 123.41],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88c4dc29f745278dd1ccd2eea647f6c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0099539b563987a8e790df2653c452b = $(`&lt;div id=&quot;html_c0099539b563987a8e790df2653c452b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.41             latitude:41.765             PM2_5:38.61699164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88c4dc29f745278dd1ccd2eea647f6c9.setContent(html_c0099539b563987a8e790df2653c452b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa587db7f78cd4142b7c2f039351b261.bindPopup(popup_88c4dc29f745278dd1ccd2eea647f6c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1049374803d201f987fbf0033a87a6d5 = L.circleMarker(\\n\",\n       \"                [32.3061, 118.3158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f5d5ea013ec33c303974559ac51f39d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ad9da11ed8586528769a1cbae5b349a = $(`&lt;div id=&quot;html_6ad9da11ed8586528769a1cbae5b349a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3158             latitude:32.3061             PM2_5:51.82492997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f5d5ea013ec33c303974559ac51f39d.setContent(html_6ad9da11ed8586528769a1cbae5b349a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1049374803d201f987fbf0033a87a6d5.bindPopup(popup_5f5d5ea013ec33c303974559ac51f39d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71e0e63a32d3302215c8145942bf2990 = L.circleMarker(\\n\",\n       \"                [28.71583, 104.5761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_081949029411ede0795daabdd697bb97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4c64ab66386de0eb62a367706943e19 = $(`&lt;div id=&quot;html_f4c64ab66386de0eb62a367706943e19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.5761             latitude:28.71583             PM2_5:57.30277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_081949029411ede0795daabdd697bb97.setContent(html_f4c64ab66386de0eb62a367706943e19);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71e0e63a32d3302215c8145942bf2990.bindPopup(popup_081949029411ede0795daabdd697bb97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50be327b9e27f1b990745afc9510e0d4 = L.circleMarker(\\n\",\n       \"                [27.3392, 103.7032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_489b4b4ea7bae07f6feb8821ce12d48f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb87cda41692de8965ba50b97f4be97e = $(`&lt;div id=&quot;html_fb87cda41692de8965ba50b97f4be97e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7032             latitude:27.3392             PM2_5:26.85310734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_489b4b4ea7bae07f6feb8821ce12d48f.setContent(html_fb87cda41692de8965ba50b97f4be97e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50be327b9e27f1b990745afc9510e0d4.bindPopup(popup_489b4b4ea7bae07f6feb8821ce12d48f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84dee9a71d8c63a16add31542ce1741b = L.circleMarker(\\n\",\n       \"                [30.6347, 105.8161],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a2fe1e26a14bfdcde84edff83012bad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d94f4d91fcb34ddbb91f87a55ff5c8f = $(`&lt;div id=&quot;html_9d94f4d91fcb34ddbb91f87a55ff5c8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8161             latitude:30.6347             PM2_5:35.92634561             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a2fe1e26a14bfdcde84edff83012bad.setContent(html_9d94f4d91fcb34ddbb91f87a55ff5c8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84dee9a71d8c63a16add31542ce1741b.bindPopup(popup_4a2fe1e26a14bfdcde84edff83012bad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed9b94e48f17483828ae6aaf36475995 = L.circleMarker(\\n\",\n       \"                [23.105, 113.433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a057b1791b56665738afc3b2d14bc4ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8fc70fd538ec256a689403502c10b81b = $(`&lt;div id=&quot;html_8fc70fd538ec256a689403502c10b81b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.433             latitude:23.105             PM2_5:34.26330532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a057b1791b56665738afc3b2d14bc4ce.setContent(html_8fc70fd538ec256a689403502c10b81b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed9b94e48f17483828ae6aaf36475995.bindPopup(popup_a057b1791b56665738afc3b2d14bc4ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_99cb649c5da913c0333fd4fdf14e0b09 = L.circleMarker(\\n\",\n       \"                [28.1308, 112.8908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b33ec8049d2553c25b5c45edbf91a024 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_633987ef647a66f7eca377d3b8440b29 = $(`&lt;div id=&quot;html_633987ef647a66f7eca377d3b8440b29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8908             latitude:28.1308             PM2_5:43.11408451             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b33ec8049d2553c25b5c45edbf91a024.setContent(html_633987ef647a66f7eca377d3b8440b29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_99cb649c5da913c0333fd4fdf14e0b09.bindPopup(popup_b33ec8049d2553c25b5c45edbf91a024)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82297a29bdaaefe4e15269497756a6da = L.circleMarker(\\n\",\n       \"                [41.0781, 121.0986],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c50c7b457335d4aacab7a89d41dcc2ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1e000c758cae2cd10dc44ca113da556 = $(`&lt;div id=&quot;html_f1e000c758cae2cd10dc44ca113da556&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.0986             latitude:41.0781             PM2_5:28.91643454             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c50c7b457335d4aacab7a89d41dcc2ac.setContent(html_f1e000c758cae2cd10dc44ca113da556);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82297a29bdaaefe4e15269497756a6da.bindPopup(popup_c50c7b457335d4aacab7a89d41dcc2ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d429a78f2686e08c6c1ffb0eaeb9e725 = L.circleMarker(\\n\",\n       \"                [25.1174, 117.0181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81a7ea24e98935cae659e6b5bb00841a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_468d9e713458b0f1b748e1a2c01777a5 = $(`&lt;div id=&quot;html_468d9e713458b0f1b748e1a2c01777a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0181             latitude:25.1174             PM2_5:23.24930362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81a7ea24e98935cae659e6b5bb00841a.setContent(html_468d9e713458b0f1b748e1a2c01777a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d429a78f2686e08c6c1ffb0eaeb9e725.bindPopup(popup_81a7ea24e98935cae659e6b5bb00841a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a72863adf3bc34fff3c761e9b1d6d5ef = L.circleMarker(\\n\",\n       \"                [34.6972, 119.3581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61a8097bb8d744ed890f40c9b5540c1c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6111d45beb26112cf00eb1fc5734e93f = $(`&lt;div id=&quot;html_6111d45beb26112cf00eb1fc5734e93f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.3581             latitude:34.6972             PM2_5:39.00854701             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61a8097bb8d744ed890f40c9b5540c1c.setContent(html_6111d45beb26112cf00eb1fc5734e93f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a72863adf3bc34fff3c761e9b1d6d5ef.bindPopup(popup_61a8097bb8d744ed890f40c9b5540c1c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f264ed117e1a7ba931bb31d5aed9eabf = L.circleMarker(\\n\",\n       \"                [34.6869, 112.4831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7861e36af924449804f80eda8242ed92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6bbb393ce2d304fe6c0cd8e2d661df93 = $(`&lt;div id=&quot;html_6bbb393ce2d304fe6c0cd8e2d661df93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4831             latitude:34.6869             PM2_5:60.01825843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7861e36af924449804f80eda8242ed92.setContent(html_6bbb393ce2d304fe6c0cd8e2d661df93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f264ed117e1a7ba931bb31d5aed9eabf.bindPopup(popup_7861e36af924449804f80eda8242ed92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25ee52773adaa2d5810633494e8526f6 = L.circleMarker(\\n\",\n       \"                [34.6231, 112.3844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6d7d9906ee57e390d227ef33e82b4fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85998e01227a119f4c5157d5d1bcff18 = $(`&lt;div id=&quot;html_85998e01227a119f4c5157d5d1bcff18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3844             latitude:34.6231             PM2_5:61.63098592             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6d7d9906ee57e390d227ef33e82b4fc.setContent(html_85998e01227a119f4c5157d5d1bcff18);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25ee52773adaa2d5810633494e8526f6.bindPopup(popup_b6d7d9906ee57e390d227ef33e82b4fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_518736565a30197afb3b830aaee5bb75 = L.circleMarker(\\n\",\n       \"                [37.4314, 118.6672],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_72abd6e1e717baf4ca0e9facc1019fc3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d26a51e9a5eaad7f18a9072adf76a12 = $(`&lt;div id=&quot;html_3d26a51e9a5eaad7f18a9072adf76a12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6672             latitude:37.4314             PM2_5:46.0             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_72abd6e1e717baf4ca0e9facc1019fc3.setContent(html_3d26a51e9a5eaad7f18a9072adf76a12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_518736565a30197afb3b830aaee5bb75.bindPopup(popup_72abd6e1e717baf4ca0e9facc1019fc3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be86482117f32c56bf721276fb97df11 = L.circleMarker(\\n\",\n       \"                [35.04388889, 111.0522222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eef7e758a9bc792bf4aff93eed7e0f3c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_367a9dc420d360b2a61fa7af6755c02d = $(`&lt;div id=&quot;html_367a9dc420d360b2a61fa7af6755c02d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0522222             latitude:35.04388889             PM2_5:72.68296089             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eef7e758a9bc792bf4aff93eed7e0f3c.setContent(html_367a9dc420d360b2a61fa7af6755c02d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be86482117f32c56bf721276fb97df11.bindPopup(popup_eef7e758a9bc792bf4aff93eed7e0f3c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2af319dadf47163e81ebd25488883b3f = L.circleMarker(\\n\",\n       \"                [38.2991, 116.8854],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7dd25e6eb27b212f12cdff3f0ff3339b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c0d9d2bdf66e7dbdc332bc5d447721d = $(`&lt;div id=&quot;html_2c0d9d2bdf66e7dbdc332bc5d447721d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8854             latitude:38.2991             PM2_5:49.09749304             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7dd25e6eb27b212f12cdff3f0ff3339b.setContent(html_2c0d9d2bdf66e7dbdc332bc5d447721d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2af319dadf47163e81ebd25488883b3f.bindPopup(popup_7dd25e6eb27b212f12cdff3f0ff3339b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae579771a3cf7de7ed6812a82e7ff0e0 = L.circleMarker(\\n\",\n       \"                [21.7631, 108.3511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87baf1ad80dc303d202f51be2ca57ba4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4ceb7572a37e40ca01fa4da0a1a8bad = $(`&lt;div id=&quot;html_d4ceb7572a37e40ca01fa4da0a1a8bad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.3511             latitude:21.7631             PM2_5:31.28212291             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87baf1ad80dc303d202f51be2ca57ba4.setContent(html_d4ceb7572a37e40ca01fa4da0a1a8bad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae579771a3cf7de7ed6812a82e7ff0e0.bindPopup(popup_87baf1ad80dc303d202f51be2ca57ba4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_428b20ec8d97cd509491137fda37e6e6 = L.circleMarker(\\n\",\n       \"                [36.4343, 116.0072],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad010ab200638ca68d61de4ec7d98ecc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7c8f2c939d86c3b0acaeade54a586d6 = $(`&lt;div id=&quot;html_e7c8f2c939d86c3b0acaeade54a586d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0072             latitude:36.4343             PM2_5:61.4815864             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad010ab200638ca68d61de4ec7d98ecc.setContent(html_e7c8f2c939d86c3b0acaeade54a586d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_428b20ec8d97cd509491137fda37e6e6.bindPopup(popup_ad010ab200638ca68d61de4ec7d98ecc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b414406613da6642b8406947148f3729 = L.circleMarker(\\n\",\n       \"                [34.3956, 108.7197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a54ab20b9850408860723d9a9776e0e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c6aaa77a9dec5289694597827754b4a = $(`&lt;div id=&quot;html_1c6aaa77a9dec5289694597827754b4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7197             latitude:34.3956             PM2_5:60.59470752             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a54ab20b9850408860723d9a9776e0e.setContent(html_1c6aaa77a9dec5289694597827754b4a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b414406613da6642b8406947148f3729.bindPopup(popup_8a54ab20b9850408860723d9a9776e0e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d167eb6f53c0d641b88a5504eea3211e = L.circleMarker(\\n\",\n       \"                [26.6514, 118.1819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5aa46fbad2bdc5ab749e0db33a0ff27d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9bd7a7551584e0c35a140facfcc70f30 = $(`&lt;div id=&quot;html_9bd7a7551584e0c35a140facfcc70f30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1819             latitude:26.6514             PM2_5:22.86312849             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5aa46fbad2bdc5ab749e0db33a0ff27d.setContent(html_9bd7a7551584e0c35a140facfcc70f30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d167eb6f53c0d641b88a5504eea3211e.bindPopup(popup_5aa46fbad2bdc5ab749e0db33a0ff27d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e210873a86dbdc182f790129c451de24 = L.circleMarker(\\n\",\n       \"                [22.5328, 113.024],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a0ab258c27d4dbab6e09b1f54dc2ffb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f6cf0a53907b1d39e35547dbcc798ef = $(`&lt;div id=&quot;html_5f6cf0a53907b1d39e35547dbcc798ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.024             latitude:22.5328             PM2_5:36.91903409             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a0ab258c27d4dbab6e09b1f54dc2ffb.setContent(html_5f6cf0a53907b1d39e35547dbcc798ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e210873a86dbdc182f790129c451de24.bindPopup(popup_3a0ab258c27d4dbab6e09b1f54dc2ffb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9187d29306bbbe075f9ef6112ab4801e = L.circleMarker(\\n\",\n       \"                [36.885, 120.515],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_044fba530c3fe5fe4963e0d0b6e1ad8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7cf2bcbb6d8b20bc9d03992bd1a47579 = $(`&lt;div id=&quot;html_7cf2bcbb6d8b20bc9d03992bd1a47579&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.515             latitude:36.885             PM2_5:39.55890805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_044fba530c3fe5fe4963e0d0b6e1ad8f.setContent(html_7cf2bcbb6d8b20bc9d03992bd1a47579);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9187d29306bbbe075f9ef6112ab4801e.bindPopup(popup_044fba530c3fe5fe4963e0d0b6e1ad8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c190deff7eb2baf1705a8ebd8577086 = L.circleMarker(\\n\",\n       \"                [29.5947, 105.0717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d8d0a5233ced2ffa92f20bda0f6c000 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7638eb01a0ce67542574dbdcd49008f4 = $(`&lt;div id=&quot;html_7638eb01a0ce67542574dbdcd49008f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0717             latitude:29.5947             PM2_5:34.1028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d8d0a5233ced2ffa92f20bda0f6c000.setContent(html_7638eb01a0ce67542574dbdcd49008f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c190deff7eb2baf1705a8ebd8577086.bindPopup(popup_5d8d0a5233ced2ffa92f20bda0f6c000)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd9fb45fa21d66b9bbfd2c2ec5fec590 = L.circleMarker(\\n\",\n       \"                [45.2948, 131.0103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e77e9f793b0c6dfc6cf54fc346569ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_700b7e96ebe3e6e1c34e48fea68003fb = $(`&lt;div id=&quot;html_700b7e96ebe3e6e1c34e48fea68003fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.0103             latitude:45.2948             PM2_5:25.48174157             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e77e9f793b0c6dfc6cf54fc346569ba.setContent(html_700b7e96ebe3e6e1c34e48fea68003fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd9fb45fa21d66b9bbfd2c2ec5fec590.bindPopup(popup_3e77e9f793b0c6dfc6cf54fc346569ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_473f49ce48553351647b5bbfa6923fa3 = L.circleMarker(\\n\",\n       \"                [49.1577, 119.7512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb9144bd779c904560166890a2570153 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d031c15dc177e84f4396e1c51338c06c = $(`&lt;div id=&quot;html_d031c15dc177e84f4396e1c51338c06c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7512             latitude:49.1577             PM2_5:10.28151261             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb9144bd779c904560166890a2570153.setContent(html_d031c15dc177e84f4396e1c51338c06c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_473f49ce48553351647b5bbfa6923fa3.bindPopup(popup_cb9144bd779c904560166890a2570153)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b53503e2462d07a5bc8c67baaeb8264a = L.circleMarker(\\n\",\n       \"                [41.1953, 123.2],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fecb2dd5a5bdbb0b66c700fb8a40a22c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92cc5cc8ac130c8133d282978c2f443a = $(`&lt;div id=&quot;html_92cc5cc8ac130c8133d282978c2f443a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.2             latitude:41.1953             PM2_5:26.80898876             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fecb2dd5a5bdbb0b66c700fb8a40a22c.setContent(html_92cc5cc8ac130c8133d282978c2f443a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b53503e2462d07a5bc8c67baaeb8264a.bindPopup(popup_fecb2dd5a5bdbb0b66c700fb8a40a22c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43b648982cda6265eb1309f426c23627 = L.circleMarker(\\n\",\n       \"                [37.197, 122.038],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29ea8414193fa12f72798337a65407cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c68ac6980c86b7fc2587f1b61ccd3ff9 = $(`&lt;div id=&quot;html_c68ac6980c86b7fc2587f1b61ccd3ff9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.038             latitude:37.197             PM2_5:22.64730878             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29ea8414193fa12f72798337a65407cb.setContent(html_c68ac6980c86b7fc2587f1b61ccd3ff9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43b648982cda6265eb1309f426c23627.bindPopup(popup_29ea8414193fa12f72798337a65407cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84a65d83cb84b8e3cfb77a16702bc9d2 = L.circleMarker(\\n\",\n       \"                [29.077, 119.647],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04279a445f299f0fcc341f7bb1653a3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40bd77a3f98c6083b339bd341d489ba9 = $(`&lt;div id=&quot;html_40bd77a3f98c6083b339bd341d489ba9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.647             latitude:29.077             PM2_5:37.48739496             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04279a445f299f0fcc341f7bb1653a3d.setContent(html_40bd77a3f98c6083b339bd341d489ba9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84a65d83cb84b8e3cfb77a16702bc9d2.bindPopup(popup_04279a445f299f0fcc341f7bb1653a3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26ae9e394029199f3d519f01f6aff2cc = L.circleMarker(\\n\",\n       \"                [40.1269, 113.2661],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f1ca54f7936c6e158c29919697e5469 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4fb5a5987cd84f26b1697eea92680195 = $(`&lt;div id=&quot;html_4fb5a5987cd84f26b1697eea92680195&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2661             latitude:40.1269             PM2_5:42.12784091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f1ca54f7936c6e158c29919697e5469.setContent(html_4fb5a5987cd84f26b1697eea92680195);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26ae9e394029199f3d519f01f6aff2cc.bindPopup(popup_6f1ca54f7936c6e158c29919697e5469)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2bcc485e6595418d630e12fd176ce2b8 = L.circleMarker(\\n\",\n       \"                [39.7711, 98.2908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aae1ba34f42cf0262850e7adf19d762f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6991cdf70bf65b6986d6865f602cb92 = $(`&lt;div id=&quot;html_a6991cdf70bf65b6986d6865f602cb92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.2908             latitude:39.7711             PM2_5:30.22005571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aae1ba34f42cf0262850e7adf19d762f.setContent(html_a6991cdf70bf65b6986d6865f602cb92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2bcc485e6595418d630e12fd176ce2b8.bindPopup(popup_aae1ba34f42cf0262850e7adf19d762f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eaee72a95883329827919e2187027df3 = L.circleMarker(\\n\",\n       \"                [31.6861, 118.5058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b0eabcd42d1aea4ffec4d039e1ef1ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b70f4b9a0e0b41aabc295045c92cf78 = $(`&lt;div id=&quot;html_7b70f4b9a0e0b41aabc295045c92cf78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5058             latitude:31.6861             PM2_5:45.78672316             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b0eabcd42d1aea4ffec4d039e1ef1ee.setContent(html_7b70f4b9a0e0b41aabc295045c92cf78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eaee72a95883329827919e2187027df3.bindPopup(popup_8b0eabcd42d1aea4ffec4d039e1ef1ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a341fd72f675ebc9924c7b5ab0a830d0 = L.circleMarker(\\n\",\n       \"                [34.3469, 106.005],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_128c8fb56ed97afcfb445e73d404769d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad73a259d0770621eca659e755459ac2 = $(`&lt;div id=&quot;html_ad73a259d0770621eca659e755459ac2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.005             latitude:34.3469             PM2_5:21.88243626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_128c8fb56ed97afcfb445e73d404769d.setContent(html_ad73a259d0770621eca659e755459ac2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a341fd72f675ebc9924c7b5ab0a830d0.bindPopup(popup_128c8fb56ed97afcfb445e73d404769d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a7c5a91495b450383079902b5239b61 = L.circleMarker(\\n\",\n       \"                [31.2797, 107.5272],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de85a8c18d91c88bec1c3013ab6fe865 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d575f3f9b7c3eb26b4966c982a70ae78 = $(`&lt;div id=&quot;html_d575f3f9b7c3eb26b4966c982a70ae78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5272             latitude:31.2797             PM2_5:42.31320225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de85a8c18d91c88bec1c3013ab6fe865.setContent(html_d575f3f9b7c3eb26b4966c982a70ae78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a7c5a91495b450383079902b5239b61.bindPopup(popup_de85a8c18d91c88bec1c3013ab6fe865)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51be78b1be22e0ea56df933831665c08 = L.circleMarker(\\n\",\n       \"                [34.407, 115.6386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc8f0c7a66fab482130810766bd727bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6bda658ef512ab320ac301814170bf24 = $(`&lt;div id=&quot;html_6bda658ef512ab320ac301814170bf24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6386             latitude:34.407             PM2_5:54.83519553             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc8f0c7a66fab482130810766bd727bd.setContent(html_6bda658ef512ab320ac301814170bf24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51be78b1be22e0ea56df933831665c08.bindPopup(popup_fc8f0c7a66fab482130810766bd727bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba9e9ce5ccfad7816ff6a93afd2fd773 = L.circleMarker(\\n\",\n       \"                [31.0283, 103.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19d95e372d9f85339c0eff371c18284e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84e87bd418690715b801e98da74360b8 = $(`&lt;div id=&quot;html_84e87bd418690715b801e98da74360b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.613             latitude:31.0283             PM2_5:38.79661017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19d95e372d9f85339c0eff371c18284e.setContent(html_84e87bd418690715b801e98da74360b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba9e9ce5ccfad7816ff6a93afd2fd773.bindPopup(popup_19d95e372d9f85339c0eff371c18284e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22ea612e83a7bf25ba33052c9549a73a = L.circleMarker(\\n\",\n       \"                [43.85, 125.217],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e81789137a6d58ab384cf806ae12df9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0cb93e21ff72d58d7040f4e7df3f246d = $(`&lt;div id=&quot;html_0cb93e21ff72d58d7040f4e7df3f246d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.217             latitude:43.85             PM2_5:27.01971831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e81789137a6d58ab384cf806ae12df9f.setContent(html_0cb93e21ff72d58d7040f4e7df3f246d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22ea612e83a7bf25ba33052c9549a73a.bindPopup(popup_e81789137a6d58ab384cf806ae12df9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9995631c6dd110ef9395b43efea7b17 = L.circleMarker(\\n\",\n       \"                [30.0874, 103.8416],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d21db01a378ba501172fcc674a7795df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca73ee1e60596ccf951f372ce77271c4 = $(`&lt;div id=&quot;html_ca73ee1e60596ccf951f372ce77271c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8416             latitude:30.0874             PM2_5:43.24930362             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d21db01a378ba501172fcc674a7795df.setContent(html_ca73ee1e60596ccf951f372ce77271c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9995631c6dd110ef9395b43efea7b17.bindPopup(popup_d21db01a378ba501172fcc674a7795df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90e374cca7f61cea51b190b55786edd3 = L.circleMarker(\\n\",\n       \"                [34.8731, 108.9589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23595c1691df80ff1313f60d77b79500 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c24d940f13834162ef26d9839668c70e = $(`&lt;div id=&quot;html_c24d940f13834162ef26d9839668c70e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.9589             latitude:34.8731             PM2_5:51.80346821             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23595c1691df80ff1313f60d77b79500.setContent(html_c24d940f13834162ef26d9839668c70e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90e374cca7f61cea51b190b55786edd3.bindPopup(popup_23595c1691df80ff1313f60d77b79500)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa7a231ef5df58b79e02470f2e0caaa7 = L.circleMarker(\\n\",\n       \"                [46.5776, 125.1386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34bc4b7b97a24ecf9f7110a39f18a04d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f15c18ebeb44bee244cd718a8e4b2d6 = $(`&lt;div id=&quot;html_1f15c18ebeb44bee244cd718a8e4b2d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1386             latitude:46.5776             PM2_5:32.70612813             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34bc4b7b97a24ecf9f7110a39f18a04d.setContent(html_1f15c18ebeb44bee244cd718a8e4b2d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa7a231ef5df58b79e02470f2e0caaa7.bindPopup(popup_34bc4b7b97a24ecf9f7110a39f18a04d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c1923ca3db0c9f5aec518e32fc9015b = L.circleMarker(\\n\",\n       \"                [32.1403, 114.0122],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8cde10c170ee6accdac75caea1c2c147 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9388884cbc1644682f1da52478fe6917 = $(`&lt;div id=&quot;html_9388884cbc1644682f1da52478fe6917&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0122             latitude:32.1403             PM2_5:44.81843575             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8cde10c170ee6accdac75caea1c2c147.setContent(html_9388884cbc1644682f1da52478fe6917);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c1923ca3db0c9f5aec518e32fc9015b.bindPopup(popup_8cde10c170ee6accdac75caea1c2c147)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e392a8a617bf7aacb4cdda8f2ff8217 = L.circleMarker(\\n\",\n       \"                [25.0441, 101.5482],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b87e85c5749cd09ffe812f065cfc041 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d48a0bf78f7c546f564d6e8d1691caa5 = $(`&lt;div id=&quot;html_d48a0bf78f7c546f564d6e8d1691caa5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.5482             latitude:25.0441             PM2_5:15.67688022             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b87e85c5749cd09ffe812f065cfc041.setContent(html_d48a0bf78f7c546f564d6e8d1691caa5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e392a8a617bf7aacb4cdda8f2ff8217.bindPopup(popup_2b87e85c5749cd09ffe812f065cfc041)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c5de1022db498a7cca4e2e5d89feffc = L.circleMarker(\\n\",\n       \"                [30.63, 104.1113889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e169a1bcbcda76bdb82bbfa82345bc75 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f03930600304a58da95da1f8d0088a3f = $(`&lt;div id=&quot;html_f03930600304a58da95da1f8d0088a3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1113889             latitude:30.63             PM2_5:52.46787709             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e169a1bcbcda76bdb82bbfa82345bc75.setContent(html_f03930600304a58da95da1f8d0088a3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c5de1022db498a7cca4e2e5d89feffc.bindPopup(popup_e169a1bcbcda76bdb82bbfa82345bc75)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c87871bd92b0b637bb5e7fbdb679286 = L.circleMarker(\\n\",\n       \"                [33.721, 113.322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4d849456c0c9ea8ea5a11866d5c3a51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_035f925e0a436f9d02183263a03be5f7 = $(`&lt;div id=&quot;html_035f925e0a436f9d02183263a03be5f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.322             latitude:33.721             PM2_5:62.36805556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4d849456c0c9ea8ea5a11866d5c3a51.setContent(html_035f925e0a436f9d02183263a03be5f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c87871bd92b0b637bb5e7fbdb679286.bindPopup(popup_d4d849456c0c9ea8ea5a11866d5c3a51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e950d1de604b5ed478462061de5443e2 = L.circleMarker(\\n\",\n       \"                [23.05361111, 113.7819444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b8babccdee39154bdf2d6b1849335f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72ab63fa4beaf61b2110d6f8f1a3bfa5 = $(`&lt;div id=&quot;html_72ab63fa4beaf61b2110d6f8f1a3bfa5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7819444             latitude:23.05361111             PM2_5:37.732493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b8babccdee39154bdf2d6b1849335f8.setContent(html_72ab63fa4beaf61b2110d6f8f1a3bfa5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e950d1de604b5ed478462061de5443e2.bindPopup(popup_9b8babccdee39154bdf2d6b1849335f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b3ecf950ec64ac37e2f48bd39070707 = L.circleMarker(\\n\",\n       \"                [35.1147, 111.0414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41333232a31032efa1fa5bebd8662249 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5a8eb426cc658e91306fe4a4ff64344 = $(`&lt;div id=&quot;html_b5a8eb426cc658e91306fe4a4ff64344&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0414             latitude:35.1147             PM2_5:57.46648045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41333232a31032efa1fa5bebd8662249.setContent(html_b5a8eb426cc658e91306fe4a4ff64344);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b3ecf950ec64ac37e2f48bd39070707.bindPopup(popup_41333232a31032efa1fa5bebd8662249)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31f32ac065e16979e9ff134297cbce52 = L.circleMarker(\\n\",\n       \"                [38.5036, 106.1358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_534c065bba341559bcbd1be4d21a9a12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dcd911a2d5bd920ebf3f915c6d50b6cc = $(`&lt;div id=&quot;html_dcd911a2d5bd920ebf3f915c6d50b6cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1358             latitude:38.5036             PM2_5:34.52222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_534c065bba341559bcbd1be4d21a9a12.setContent(html_dcd911a2d5bd920ebf3f915c6d50b6cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31f32ac065e16979e9ff134297cbce52.bindPopup(popup_534c065bba341559bcbd1be4d21a9a12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d06477cc4b0a1e030bbfaad97dbe6e9 = L.circleMarker(\\n\",\n       \"                [36.4796, 115.9835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59eda9ec4075dee0fcde1df64fa6431c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fddad9df939f25400ddb8aa8aea0cbf7 = $(`&lt;div id=&quot;html_fddad9df939f25400ddb8aa8aea0cbf7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9835             latitude:36.4796             PM2_5:57.26740947             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59eda9ec4075dee0fcde1df64fa6431c.setContent(html_fddad9df939f25400ddb8aa8aea0cbf7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d06477cc4b0a1e030bbfaad97dbe6e9.bindPopup(popup_59eda9ec4075dee0fcde1df64fa6431c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_caad2d34a267baddd3809ecc4db351a9 = L.circleMarker(\\n\",\n       \"                [44.1756, 87.5475],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0fbd3a958057d8d9e12df09ff035cd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_316c8acc1ca8ef2be4fbc46ac86fdf08 = $(`&lt;div id=&quot;html_316c8acc1ca8ef2be4fbc46ac86fdf08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5475             latitude:44.1756             PM2_5:61.95505618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0fbd3a958057d8d9e12df09ff035cd5.setContent(html_316c8acc1ca8ef2be4fbc46ac86fdf08);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_caad2d34a267baddd3809ecc4db351a9.bindPopup(popup_b0fbd3a958057d8d9e12df09ff035cd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a92016c3ff3c22c8bb5e05930fad819 = L.circleMarker(\\n\",\n       \"                [30.3058, 120.348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10522086051aa990360c5fa372bcabdd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a10d6df82118c67fdd06149a290b6b9 = $(`&lt;div id=&quot;html_2a10d6df82118c67fdd06149a290b6b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.348             latitude:30.3058             PM2_5:46.53047091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10522086051aa990360c5fa372bcabdd.setContent(html_2a10d6df82118c67fdd06149a290b6b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a92016c3ff3c22c8bb5e05930fad819.bindPopup(popup_10522086051aa990360c5fa372bcabdd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ebd4638589559259a70ab1a8c327a340 = L.circleMarker(\\n\",\n       \"                [29.6039, 115.9114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f373fc525be8c827766853c9153b51a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_903982682da577e4d3d4c1fefa616d30 = $(`&lt;div id=&quot;html_903982682da577e4d3d4c1fefa616d30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9114             latitude:29.6039             PM2_5:43.8487395             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f373fc525be8c827766853c9153b51a6.setContent(html_903982682da577e4d3d4c1fefa616d30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ebd4638589559259a70ab1a8c327a340.bindPopup(popup_f373fc525be8c827766853c9153b51a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8125b26aedb7b38910fe138f6a5c548 = L.circleMarker(\\n\",\n       \"                [27.5733, 109.9333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f11e455e04da02b94a29897de4b7b78a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62d742be737a987537f04781324384ce = $(`&lt;div id=&quot;html_62d742be737a987537f04781324384ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9333             latitude:27.5733             PM2_5:42.20140845             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f11e455e04da02b94a29897de4b7b78a.setContent(html_62d742be737a987537f04781324384ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8125b26aedb7b38910fe138f6a5c548.bindPopup(popup_f11e455e04da02b94a29897de4b7b78a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_176193b8e1a62bbc39ea25e17414a130 = L.circleMarker(\\n\",\n       \"                [28.2189, 112.8872],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f3c94ba37f1db8ab3dcd5ac2af637a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7541800d02870ec125ec597a79df4530 = $(`&lt;div id=&quot;html_7541800d02870ec125ec597a79df4530&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8872             latitude:28.2189             PM2_5:46.02374302             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f3c94ba37f1db8ab3dcd5ac2af637a7.setContent(html_7541800d02870ec125ec597a79df4530);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_176193b8e1a62bbc39ea25e17414a130.bindPopup(popup_8f3c94ba37f1db8ab3dcd5ac2af637a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afa62473cc741b4bb8cd480877732c3f = L.circleMarker(\\n\",\n       \"                [27.7758, 115.0586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dae3e4b07c8cc970b1ea06d6f65eadea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3775b69da5b3c0f5589e840ddb3fda44 = $(`&lt;div id=&quot;html_3775b69da5b3c0f5589e840ddb3fda44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0586             latitude:27.7758             PM2_5:43.86864407             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dae3e4b07c8cc970b1ea06d6f65eadea.setContent(html_3775b69da5b3c0f5589e840ddb3fda44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afa62473cc741b4bb8cd480877732c3f.bindPopup(popup_dae3e4b07c8cc970b1ea06d6f65eadea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bdc93ccdfc9da856f22bc16d65ae593 = L.circleMarker(\\n\",\n       \"                [24.3304, 109.4108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3adcbe48c0a7d7acaf2aee241c871d79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5aeb9351e3c6b527e895127f3d2d983e = $(`&lt;div id=&quot;html_5aeb9351e3c6b527e895127f3d2d983e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4108             latitude:24.3304             PM2_5:44.54661017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3adcbe48c0a7d7acaf2aee241c871d79.setContent(html_5aeb9351e3c6b527e895127f3d2d983e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bdc93ccdfc9da856f22bc16d65ae593.bindPopup(popup_3adcbe48c0a7d7acaf2aee241c871d79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ebe7e63cb6908e468a3010a66c099b19 = L.circleMarker(\\n\",\n       \"                [24.795928, 113.598061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5cbc65a8e6baa982fbbabb990248f63f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_345a28a821fc4c0a16f8e56b9e2e2d17 = $(`&lt;div id=&quot;html_345a28a821fc4c0a16f8e56b9e2e2d17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.598061             latitude:24.795928             PM2_5:31.37429379             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5cbc65a8e6baa982fbbabb990248f63f.setContent(html_345a28a821fc4c0a16f8e56b9e2e2d17);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ebe7e63cb6908e468a3010a66c099b19.bindPopup(popup_5cbc65a8e6baa982fbbabb990248f63f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91258cc4f8e78b61da0102173c25e983 = L.circleMarker(\\n\",\n       \"                [36.71, 117.541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_817be5c3d690af72ee376193ae661aab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ffc97dc34e3ddf1131db3d6c2e56b598 = $(`&lt;div id=&quot;html_ffc97dc34e3ddf1131db3d6c2e56b598&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.541             latitude:36.71             PM2_5:54.36             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_817be5c3d690af72ee376193ae661aab.setContent(html_ffc97dc34e3ddf1131db3d6c2e56b598);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91258cc4f8e78b61da0102173c25e983.bindPopup(popup_817be5c3d690af72ee376193ae661aab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c637eab47ad3b2935a2e206dc5f6ce2e = L.circleMarker(\\n\",\n       \"                [43.9317, 116.1042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f307f2cee69e3d4af966806bc634b996 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1811d3c6ca366532c79133b327f1eb91 = $(`&lt;div id=&quot;html_1811d3c6ca366532c79133b327f1eb91&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1042             latitude:43.9317             PM2_5:15.73460411             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f307f2cee69e3d4af966806bc634b996.setContent(html_1811d3c6ca366532c79133b327f1eb91);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c637eab47ad3b2935a2e206dc5f6ce2e.bindPopup(popup_f307f2cee69e3d4af966806bc634b996)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_485493bf7337e6c1a54696d7c77f95f7 = L.circleMarker(\\n\",\n       \"                [23.2539, 116.6092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7ba9a3566a49ef16c96b13748580bf3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1e1c9afabe7fab0a098dbdba8ea2bae = $(`&lt;div id=&quot;html_e1e1c9afabe7fab0a098dbdba8ea2bae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6092             latitude:23.2539             PM2_5:24.50423729             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7ba9a3566a49ef16c96b13748580bf3.setContent(html_e1e1c9afabe7fab0a098dbdba8ea2bae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_485493bf7337e6c1a54696d7c77f95f7.bindPopup(popup_f7ba9a3566a49ef16c96b13748580bf3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9dce07d7f367e94b03b6cd1257dfbc8 = L.circleMarker(\\n\",\n       \"                [29.3411, 104.7692],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80e205da5f5ab7c1cc30ad60e9417f2b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b551c7f9c007a558f748a4e3d2665676 = $(`&lt;div id=&quot;html_b551c7f9c007a558f748a4e3d2665676&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7692             latitude:29.3411             PM2_5:64.99164345             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80e205da5f5ab7c1cc30ad60e9417f2b.setContent(html_b551c7f9c007a558f748a4e3d2665676);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9dce07d7f367e94b03b6cd1257dfbc8.bindPopup(popup_80e205da5f5ab7c1cc30ad60e9417f2b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_32d3ff53a82ac0368a9e595f204eea4a = L.circleMarker(\\n\",\n       \"                [39.9425, 116.361],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd2700e22cb832eabc340000a4fa7f0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3042fb9d6e569b3b3e167d29e6ffac87 = $(`&lt;div id=&quot;html_3042fb9d6e569b3b3e167d29e6ffac87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.361             latitude:39.9425             PM2_5:53.87780899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd2700e22cb832eabc340000a4fa7f0b.setContent(html_3042fb9d6e569b3b3e167d29e6ffac87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_32d3ff53a82ac0368a9e595f204eea4a.bindPopup(popup_cd2700e22cb832eabc340000a4fa7f0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0384f6b4f36fbb145e2492a4b2c71c2 = L.circleMarker(\\n\",\n       \"                [32.625, 116.7039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2eb2edb7da523e9a45cef39ce7799f8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43f17b58484a266bc230ca052dba6a41 = $(`&lt;div id=&quot;html_43f17b58484a266bc230ca052dba6a41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7039             latitude:32.625             PM2_5:58.06582633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2eb2edb7da523e9a45cef39ce7799f8f.setContent(html_43f17b58484a266bc230ca052dba6a41);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0384f6b4f36fbb145e2492a4b2c71c2.bindPopup(popup_2eb2edb7da523e9a45cef39ce7799f8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e64cde204fd92493f0aee5add503398 = L.circleMarker(\\n\",\n       \"                [41.2736, 123.1761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db1017725177cf199dedee4ae4eb01ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9612b36904f3dc5cfa8582e3755b67a2 = $(`&lt;div id=&quot;html_9612b36904f3dc5cfa8582e3755b67a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1761             latitude:41.2736             PM2_5:31.98467967             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db1017725177cf199dedee4ae4eb01ed.setContent(html_9612b36904f3dc5cfa8582e3755b67a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e64cde204fd92493f0aee5add503398.bindPopup(popup_db1017725177cf199dedee4ae4eb01ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0250d72974c08c6df00c09dced06e86f = L.circleMarker(\\n\",\n       \"                [34.1546, 108.906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c7dff2e74cc5ea0b1aa80e4193c6d5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_859a275bffc616098c5f070ea4fd8e33 = $(`&lt;div id=&quot;html_859a275bffc616098c5f070ea4fd8e33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.906             latitude:34.1546             PM2_5:63.16142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c7dff2e74cc5ea0b1aa80e4193c6d5f.setContent(html_859a275bffc616098c5f070ea4fd8e33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0250d72974c08c6df00c09dced06e86f.bindPopup(popup_8c7dff2e74cc5ea0b1aa80e4193c6d5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a19e042ecb389db5a96deec37d9e371c = L.circleMarker(\\n\",\n       \"                [28.0797, 116.2239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a472d353599e2442999c45400a997ec3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7cedf883f7a0d11caa75754e87c85883 = $(`&lt;div id=&quot;html_7cedf883f7a0d11caa75754e87c85883&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.2239             latitude:28.0797             PM2_5:43.84861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a472d353599e2442999c45400a997ec3.setContent(html_7cedf883f7a0d11caa75754e87c85883);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a19e042ecb389db5a96deec37d9e371c.bindPopup(popup_a472d353599e2442999c45400a997ec3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0667b031cb1142fe4073d7e90b002765 = L.circleMarker(\\n\",\n       \"                [34.4286, 115.6697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a4c056706e160da55f076d6c18750a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd39177ec1a386ccc506e3687e47b9a4 = $(`&lt;div id=&quot;html_dd39177ec1a386ccc506e3687e47b9a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6697             latitude:34.4286             PM2_5:58.56478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a4c056706e160da55f076d6c18750a3.setContent(html_dd39177ec1a386ccc506e3687e47b9a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0667b031cb1142fe4073d7e90b002765.bindPopup(popup_2a4c056706e160da55f076d6c18750a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f22805c119633cc5e9b4a59a66d2444e = L.circleMarker(\\n\",\n       \"                [31.7618, 116.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf3e7a401c0dae45e3cda7f5127524a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74db44d64500b3c405559b0f9327af85 = $(`&lt;div id=&quot;html_74db44d64500b3c405559b0f9327af85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.478             latitude:31.7618             PM2_5:41.19722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf3e7a401c0dae45e3cda7f5127524a9.setContent(html_74db44d64500b3c405559b0f9327af85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f22805c119633cc5e9b4a59a66d2444e.bindPopup(popup_cf3e7a401c0dae45e3cda7f5127524a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab9028982037228cbe567e6a4a560866 = L.circleMarker(\\n\",\n       \"                [39.1654, 117.145],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2d18d47226e7c3ff80e4b0be2e94f4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_566b527087b940a5964b0aaec9eaff38 = $(`&lt;div id=&quot;html_566b527087b940a5964b0aaec9eaff38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.145             latitude:39.1654             PM2_5:50.42458101             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2d18d47226e7c3ff80e4b0be2e94f4c.setContent(html_566b527087b940a5964b0aaec9eaff38);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab9028982037228cbe567e6a4a560866.bindPopup(popup_c2d18d47226e7c3ff80e4b0be2e94f4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d4a0bbcf81164bbb17f26ebb9f6886c = L.circleMarker(\\n\",\n       \"                [46.0347, 124.8354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ecd423160b768d3aa916ee5d7e727d4e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_742157cc4a5525efe10315d6cc0beaf4 = $(`&lt;div id=&quot;html_742157cc4a5525efe10315d6cc0beaf4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8354             latitude:46.0347             PM2_5:29.63342697             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ecd423160b768d3aa916ee5d7e727d4e.setContent(html_742157cc4a5525efe10315d6cc0beaf4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d4a0bbcf81164bbb17f26ebb9f6886c.bindPopup(popup_ecd423160b768d3aa916ee5d7e727d4e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59d68951e86ec896b733470097a6e560 = L.circleMarker(\\n\",\n       \"                [32.1342, 114.0681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d74cd5522c4fe8abfa475373c5508d5e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dee99424388cd2c981986cd59c32f330 = $(`&lt;div id=&quot;html_dee99424388cd2c981986cd59c32f330&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0681             latitude:32.1342             PM2_5:48.12083333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d74cd5522c4fe8abfa475373c5508d5e.setContent(html_dee99424388cd2c981986cd59c32f330);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59d68951e86ec896b733470097a6e560.bindPopup(popup_d74cd5522c4fe8abfa475373c5508d5e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a1d98258fee2b2ed49029c9dfac7f08 = L.circleMarker(\\n\",\n       \"                [31.422, 121.14],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4759376bbaa570eb4d0c9c456b211c4e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23bedae720ea1f8daeac3bc61af5e35e = $(`&lt;div id=&quot;html_23bedae720ea1f8daeac3bc61af5e35e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.14             latitude:31.422             PM2_5:36.98680352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4759376bbaa570eb4d0c9c456b211c4e.setContent(html_23bedae720ea1f8daeac3bc61af5e35e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a1d98258fee2b2ed49029c9dfac7f08.bindPopup(popup_4759376bbaa570eb4d0c9c456b211c4e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa01912355fbdc257b0bbb5bebeafb07 = L.circleMarker(\\n\",\n       \"                [43.9469, 87.4754],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_833a2ef97791bca2fed7c79c064adb68 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_455408f828868e8cdee729d4e211f8d7 = $(`&lt;div id=&quot;html_455408f828868e8cdee729d4e211f8d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.4754             latitude:43.9469             PM2_5:77.70943953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_833a2ef97791bca2fed7c79c064adb68.setContent(html_455408f828868e8cdee729d4e211f8d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa01912355fbdc257b0bbb5bebeafb07.bindPopup(popup_833a2ef97791bca2fed7c79c064adb68)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_536d52d83cea9616423b058f02eec031 = L.circleMarker(\\n\",\n       \"                [32.9735, 112.5003],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e44900cd24d70a153f084081b7501b59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8dafa3c7e809f43ca170189de18c2445 = $(`&lt;div id=&quot;html_8dafa3c7e809f43ca170189de18c2445&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5003             latitude:32.9735             PM2_5:56.01264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e44900cd24d70a153f084081b7501b59.setContent(html_8dafa3c7e809f43ca170189de18c2445);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_536d52d83cea9616423b058f02eec031.bindPopup(popup_e44900cd24d70a153f084081b7501b59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0506812369e9b191af57929202a7491 = L.circleMarker(\\n\",\n       \"                [31.909, 120.237],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd3112a7f9abb3a33ec1fc6de855aa41 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2548a6b60b21559c45065c3f83ed7486 = $(`&lt;div id=&quot;html_2548a6b60b21559c45065c3f83ed7486&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.237             latitude:31.909             PM2_5:53.80617978             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd3112a7f9abb3a33ec1fc6de855aa41.setContent(html_2548a6b60b21559c45065c3f83ed7486);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0506812369e9b191af57929202a7491.bindPopup(popup_dd3112a7f9abb3a33ec1fc6de855aa41)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d423cd8f017dc55760fb9f34d85740cd = L.circleMarker(\\n\",\n       \"                [38.8756, 115.442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d9c6bc3246abbdf270640ff63a6b0fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96aa5de54ad3276ff3ca816746b78866 = $(`&lt;div id=&quot;html_96aa5de54ad3276ff3ca816746b78866&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.442             latitude:38.8756             PM2_5:50.77170868             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d9c6bc3246abbdf270640ff63a6b0fa.setContent(html_96aa5de54ad3276ff3ca816746b78866);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d423cd8f017dc55760fb9f34d85740cd.bindPopup(popup_3d9c6bc3246abbdf270640ff63a6b0fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df637ce01ca55c7ee1c8ec1165a6359c = L.circleMarker(\\n\",\n       \"                [44.6104, 129.6459],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56320b32245e732e33026ca2e29a3960 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f265b0794e53e9a906038ef88f391814 = $(`&lt;div id=&quot;html_f265b0794e53e9a906038ef88f391814&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6459             latitude:44.6104             PM2_5:26.84033613             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56320b32245e732e33026ca2e29a3960.setContent(html_f265b0794e53e9a906038ef88f391814);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df637ce01ca55c7ee1c8ec1165a6359c.bindPopup(popup_56320b32245e732e33026ca2e29a3960)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37b92e67eb6619aeb5226c1e7ec6de9f = L.circleMarker(\\n\",\n       \"                [31.6411, 118.4828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_94e51ee5e66b1bd3d7e2387d9daa4e88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c281aca0f80623fc32d5b5b270b6175 = $(`&lt;div id=&quot;html_8c281aca0f80623fc32d5b5b270b6175&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4828             latitude:31.6411             PM2_5:43.52653631             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_94e51ee5e66b1bd3d7e2387d9daa4e88.setContent(html_8c281aca0f80623fc32d5b5b270b6175);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37b92e67eb6619aeb5226c1e7ec6de9f.bindPopup(popup_94e51ee5e66b1bd3d7e2387d9daa4e88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3ac17eb374b3cac24b4165ae2a98ef3 = L.circleMarker(\\n\",\n       \"                [32.965, 114.018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0e45ef04d03cc04d4e079761e023567 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b59804df0f6b1fb48f37bf82f3874767 = $(`&lt;div id=&quot;html_b59804df0f6b1fb48f37bf82f3874767&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.018             latitude:32.965             PM2_5:53.2740113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0e45ef04d03cc04d4e079761e023567.setContent(html_b59804df0f6b1fb48f37bf82f3874767);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3ac17eb374b3cac24b4165ae2a98ef3.bindPopup(popup_e0e45ef04d03cc04d4e079761e023567)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64fa8543776901167a77178da977994d = L.circleMarker(\\n\",\n       \"                [32.4611, 119.9219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ba7c8767b3046320a066e379fc40305 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92b588630a9f9137c1197dfb1dff675e = $(`&lt;div id=&quot;html_92b588630a9f9137c1197dfb1dff675e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9219             latitude:32.4611             PM2_5:46.7261236             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ba7c8767b3046320a066e379fc40305.setContent(html_92b588630a9f9137c1197dfb1dff675e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64fa8543776901167a77178da977994d.bindPopup(popup_3ba7c8767b3046320a066e379fc40305)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_789f738d5e5d0d9df291c001e0733811 = L.circleMarker(\\n\",\n       \"                [36.0022, 106.2792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34ff4ddf80ded976c9b84838600957fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db9b0ea30595dc9bd49fb523eb253a70 = $(`&lt;div id=&quot;html_db9b0ea30595dc9bd49fb523eb253a70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2792             latitude:36.0022             PM2_5:24.97771588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34ff4ddf80ded976c9b84838600957fc.setContent(html_db9b0ea30595dc9bd49fb523eb253a70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_789f738d5e5d0d9df291c001e0733811.bindPopup(popup_34ff4ddf80ded976c9b84838600957fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c2ab9d763db92b201276fc55f921818a = L.circleMarker(\\n\",\n       \"                [40.3937, 116.644],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2dd5a668e4572544fcf7b4423b7a4a42 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb1e338fde56895fd553e91744fa1f15 = $(`&lt;div id=&quot;html_cb1e338fde56895fd553e91744fa1f15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.644             latitude:40.3937             PM2_5:46.92151163             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2dd5a668e4572544fcf7b4423b7a4a42.setContent(html_cb1e338fde56895fd553e91744fa1f15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c2ab9d763db92b201276fc55f921818a.bindPopup(popup_2dd5a668e4572544fcf7b4423b7a4a42)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7cd32b7216bec559337185d17300333 = L.circleMarker(\\n\",\n       \"                [32.1883, 119.68],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f08c042eb2aec5a9e47388b1cca3ac24 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c6590d4fe26671ba6e4ab6b2b97c1bf = $(`&lt;div id=&quot;html_2c6590d4fe26671ba6e4ab6b2b97c1bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.68             latitude:32.1883             PM2_5:51.92178771             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f08c042eb2aec5a9e47388b1cca3ac24.setContent(html_2c6590d4fe26671ba6e4ab6b2b97c1bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7cd32b7216bec559337185d17300333.bindPopup(popup_f08c042eb2aec5a9e47388b1cca3ac24)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca8cd2cd95e73f18b4b3eb14a5a0a66c = L.circleMarker(\\n\",\n       \"                [27.6442, 113.8686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d92f903e702b45f0a213dab5ee35834 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_474ff5556a6ffbb38c4050d9d22ac5ef = $(`&lt;div id=&quot;html_474ff5556a6ffbb38c4050d9d22ac5ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8686             latitude:27.6442             PM2_5:43.725             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d92f903e702b45f0a213dab5ee35834.setContent(html_474ff5556a6ffbb38c4050d9d22ac5ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca8cd2cd95e73f18b4b3eb14a5a0a66c.bindPopup(popup_2d92f903e702b45f0a213dab5ee35834)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e462bb9ae128dbbcd3da6bcbbd77edf9 = L.circleMarker(\\n\",\n       \"                [27.7842, 114.3953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6201a0a5b69e5adea5869f11aa7919c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_925f4041592a0fcc2cd7e3e42180a84a = $(`&lt;div id=&quot;html_925f4041592a0fcc2cd7e3e42180a84a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3953             latitude:27.7842             PM2_5:48.19777159             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6201a0a5b69e5adea5869f11aa7919c9.setContent(html_925f4041592a0fcc2cd7e3e42180a84a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e462bb9ae128dbbcd3da6bcbbd77edf9.bindPopup(popup_6201a0a5b69e5adea5869f11aa7919c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3fda8b609cbdd4b04e821576ea07866f = L.circleMarker(\\n\",\n       \"                [27.8317, 99.7056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f1af85f2cfbbf23a2495a840fcc1e9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c39e2e8bc03787c63b9d9225bca18c1b = $(`&lt;div id=&quot;html_c39e2e8bc03787c63b9d9225bca18c1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.7056             latitude:27.8317             PM2_5:12.73638968             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f1af85f2cfbbf23a2495a840fcc1e9f.setContent(html_c39e2e8bc03787c63b9d9225bca18c1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3fda8b609cbdd4b04e821576ea07866f.bindPopup(popup_1f1af85f2cfbbf23a2495a840fcc1e9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c570388fe997b81c15f59730a1ee265 = L.circleMarker(\\n\",\n       \"                [41.1222, 121.1178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ee2f5113a864c871fddb7e8462b3205 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c03f7cd8d2f42ab619d419901227021 = $(`&lt;div id=&quot;html_2c03f7cd8d2f42ab619d419901227021&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1178             latitude:41.1222             PM2_5:34.33379888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ee2f5113a864c871fddb7e8462b3205.setContent(html_2c03f7cd8d2f42ab619d419901227021);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c570388fe997b81c15f59730a1ee265.bindPopup(popup_9ee2f5113a864c871fddb7e8462b3205)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_621fea4cb05a9a839b6a8e9d73632d6f = L.circleMarker(\\n\",\n       \"                [29.6514, 91.1319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6c64849edbe8f21b010a5d390835339 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b3a673e8859318e8c42fc27303ccb05 = $(`&lt;div id=&quot;html_1b3a673e8859318e8c42fc27303ccb05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1319             latitude:29.6514             PM2_5:19.38243626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6c64849edbe8f21b010a5d390835339.setContent(html_1b3a673e8859318e8c42fc27303ccb05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_621fea4cb05a9a839b6a8e9d73632d6f.bindPopup(popup_e6c64849edbe8f21b010a5d390835339)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3c0fa8df730e8143c23ffbe3f5af2ed = L.circleMarker(\\n\",\n       \"                [23.65889, 116.6183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6212cf447de09137089192acfb551ee7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_376981757a1729f2de2e73d598fbf606 = $(`&lt;div id=&quot;html_376981757a1729f2de2e73d598fbf606&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6183             latitude:23.65889             PM2_5:30.49442897             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6212cf447de09137089192acfb551ee7.setContent(html_376981757a1729f2de2e73d598fbf606);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3c0fa8df730e8143c23ffbe3f5af2ed.bindPopup(popup_6212cf447de09137089192acfb551ee7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95d1ba8ad3550e579a4f9553ba76bbbb = L.circleMarker(\\n\",\n       \"                [31.3178, 118.3708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c0a44a1dd220d344ef0c1dab7a621bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8dd7a49e6fa0b05fd3b1914ef1cd636c = $(`&lt;div id=&quot;html_8dd7a49e6fa0b05fd3b1914ef1cd636c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3708             latitude:31.3178             PM2_5:55.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c0a44a1dd220d344ef0c1dab7a621bd.setContent(html_8dd7a49e6fa0b05fd3b1914ef1cd636c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95d1ba8ad3550e579a4f9553ba76bbbb.bindPopup(popup_3c0a44a1dd220d344ef0c1dab7a621bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b6719c3fa86aebf2df0a01da6092b33 = L.circleMarker(\\n\",\n       \"                [40.0031, 116.407],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b32919761a286b47b06cdfb188630f36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49e5f47db59692810cf168a251d16923 = $(`&lt;div id=&quot;html_49e5f47db59692810cf168a251d16923&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.407             latitude:40.0031             PM2_5:51.25069638             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b32919761a286b47b06cdfb188630f36.setContent(html_49e5f47db59692810cf168a251d16923);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b6719c3fa86aebf2df0a01da6092b33.bindPopup(popup_b32919761a286b47b06cdfb188630f36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9069fd61f67b9d809172473e6bee5f7 = L.circleMarker(\\n\",\n       \"                [28.6869, 115.852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a18cf625e308de04037540f1794dbd4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e96b2db52ef85e358002c3c37965aedd = $(`&lt;div id=&quot;html_e96b2db52ef85e358002c3c37965aedd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.852             latitude:28.6869             PM2_5:34.8837535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a18cf625e308de04037540f1794dbd4c.setContent(html_e96b2db52ef85e358002c3c37965aedd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9069fd61f67b9d809172473e6bee5f7.bindPopup(popup_a18cf625e308de04037540f1794dbd4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73c65272cbda37cfc8b73315b7614a69 = L.circleMarker(\\n\",\n       \"                [27.2537, 111.4503],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_071868cb0128801eb1f1b46fa4cca876 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06a4ed717e75d03c11acd30f1f8f30f4 = $(`&lt;div id=&quot;html_06a4ed717e75d03c11acd30f1f8f30f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4503             latitude:27.2537             PM2_5:49.32869081             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_071868cb0128801eb1f1b46fa4cca876.setContent(html_06a4ed717e75d03c11acd30f1f8f30f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73c65272cbda37cfc8b73315b7614a69.bindPopup(popup_071868cb0128801eb1f1b46fa4cca876)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd018b5dfd8c891e63b058977e0e7d32 = L.circleMarker(\\n\",\n       \"                [22.9539, 112.0539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ece26af16cddd5df326432e0c97a18a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ccd5f4a2bb3bf7dd3909aef2ac5d0929 = $(`&lt;div id=&quot;html_ccd5f4a2bb3bf7dd3909aef2ac5d0929&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0539             latitude:22.9539             PM2_5:31.77562327             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ece26af16cddd5df326432e0c97a18a0.setContent(html_ccd5f4a2bb3bf7dd3909aef2ac5d0929);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd018b5dfd8c891e63b058977e0e7d32.bindPopup(popup_ece26af16cddd5df326432e0c97a18a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3dffd8222d231b79985095b9ad3aa410 = L.circleMarker(\\n\",\n       \"                [41.1196, 123.044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e9bb9ae98aa0841bc9cde7add1548ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d43b8ab032066bc466fb49a0fbdbaeb = $(`&lt;div id=&quot;html_4d43b8ab032066bc466fb49a0fbdbaeb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.044             latitude:41.1196             PM2_5:33.3767313             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e9bb9ae98aa0841bc9cde7add1548ba.setContent(html_4d43b8ab032066bc466fb49a0fbdbaeb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3dffd8222d231b79985095b9ad3aa410.bindPopup(popup_9e9bb9ae98aa0841bc9cde7add1548ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01d156f0f01ce111767b376f14bfc365 = L.circleMarker(\\n\",\n       \"                [28.1442, 112.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4068b5677199f5a1a437b00087cd1d7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7e5d1e9f56966f9d4aa119869820026 = $(`&lt;div id=&quot;html_f7e5d1e9f56966f9d4aa119869820026&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9956             latitude:28.1442             PM2_5:44.35195531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4068b5677199f5a1a437b00087cd1d7f.setContent(html_f7e5d1e9f56966f9d4aa119869820026);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01d156f0f01ce111767b376f14bfc365.bindPopup(popup_4068b5677199f5a1a437b00087cd1d7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c0203fc463401d2ed9a11360a19a4498 = L.circleMarker(\\n\",\n       \"                [36.6106, 109.5056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d009337a1bdc9b12859adfea5794e88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61caab32b7e39ba7d91efc96afce5255 = $(`&lt;div id=&quot;html_61caab32b7e39ba7d91efc96afce5255&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5056             latitude:36.6106             PM2_5:38.42792793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d009337a1bdc9b12859adfea5794e88.setContent(html_61caab32b7e39ba7d91efc96afce5255);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c0203fc463401d2ed9a11360a19a4498.bindPopup(popup_1d009337a1bdc9b12859adfea5794e88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3653301eb718eee37ae98c1a866a12f = L.circleMarker(\\n\",\n       \"                [28.6844, 115.893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc6d9908d58c668c01225628c73113e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e473c48b42a7be4f9fcfa6f556e6fa17 = $(`&lt;div id=&quot;html_e473c48b42a7be4f9fcfa6f556e6fa17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.893             latitude:28.6844             PM2_5:36.59401709             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc6d9908d58c668c01225628c73113e2.setContent(html_e473c48b42a7be4f9fcfa6f556e6fa17);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3653301eb718eee37ae98c1a866a12f.bindPopup(popup_bc6d9908d58c668c01225628c73113e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e5d1d18cbb530aec7bf4953db6db8a2 = L.circleMarker(\\n\",\n       \"                [46.6219, 124.8648],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67840827f35a278d4bbbd90f139fa801 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a8761efe687f0f08abdfa2f005a172bc = $(`&lt;div id=&quot;html_a8761efe687f0f08abdfa2f005a172bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8648             latitude:46.6219             PM2_5:21.60504202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67840827f35a278d4bbbd90f139fa801.setContent(html_a8761efe687f0f08abdfa2f005a172bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e5d1d18cbb530aec7bf4953db6db8a2.bindPopup(popup_67840827f35a278d4bbbd90f139fa801)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37265ff208bae228bd5854e40a83349d = L.circleMarker(\\n\",\n       \"                [42.0186, 121.6561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec37454df2d4f50641700b64a40de03c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7768eae25a94911612d8c61c14e604f2 = $(`&lt;div id=&quot;html_7768eae25a94911612d8c61c14e604f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6561             latitude:42.0186             PM2_5:25.61772853             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec37454df2d4f50641700b64a40de03c.setContent(html_7768eae25a94911612d8c61c14e604f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37265ff208bae228bd5854e40a83349d.bindPopup(popup_ec37454df2d4f50641700b64a40de03c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd6b16171f5512972411259103d03fb8 = L.circleMarker(\\n\",\n       \"                [36.0783, 111.5531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc5525b3998525d210a98dd62aa3def9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b98942867600025b443fb1512be5e450 = $(`&lt;div id=&quot;html_b98942867600025b443fb1512be5e450&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5531             latitude:36.0783             PM2_5:69.44428969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc5525b3998525d210a98dd62aa3def9.setContent(html_b98942867600025b443fb1512be5e450);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd6b16171f5512972411259103d03fb8.bindPopup(popup_dc5525b3998525d210a98dd62aa3def9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdb3c078edb9d3dbc260a4c36c28c74c = L.circleMarker(\\n\",\n       \"                [26.6383, 118.1694],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07997ccc9a861ffff82eddebdc928287 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fabf831744f89b53f032e8c789cdbfbb = $(`&lt;div id=&quot;html_fabf831744f89b53f032e8c789cdbfbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1694             latitude:26.6383             PM2_5:22.0             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07997ccc9a861ffff82eddebdc928287.setContent(html_fabf831744f89b53f032e8c789cdbfbb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdb3c078edb9d3dbc260a4c36c28c74c.bindPopup(popup_07997ccc9a861ffff82eddebdc928287)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8411f81cf2e689433ef100b7fa8c228 = L.circleMarker(\\n\",\n       \"                [36.2126, 113.0886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_871de85dc462bded7a46e21762055576 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0bc0293598493bb2f76f66158bba0e23 = $(`&lt;div id=&quot;html_0bc0293598493bb2f76f66158bba0e23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0886             latitude:36.2126             PM2_5:68.68767507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_871de85dc462bded7a46e21762055576.setContent(html_0bc0293598493bb2f76f66158bba0e23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8411f81cf2e689433ef100b7fa8c228.bindPopup(popup_871de85dc462bded7a46e21762055576)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adb373c724aa780930003ec91d7e9337 = L.circleMarker(\\n\",\n       \"                [40.7579, 111.651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83d9dbebc3240740e69e745b130d54cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aeea413e9765c449e1db6cfa8d840f7d = $(`&lt;div id=&quot;html_aeea413e9765c449e1db6cfa8d840f7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.651             latitude:40.7579             PM2_5:34.55742297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83d9dbebc3240740e69e745b130d54cf.setContent(html_aeea413e9765c449e1db6cfa8d840f7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adb373c724aa780930003ec91d7e9337.bindPopup(popup_83d9dbebc3240740e69e745b130d54cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59a7ccc65fe3ecb9aa2e59c4a58f80f8 = L.circleMarker(\\n\",\n       \"                [25.9061, 113.0073],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e3e4a8a2a90636eaea78642a9762b5e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f82f16c395510ca1612bf15bc139d498 = $(`&lt;div id=&quot;html_f82f16c395510ca1612bf15bc139d498&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0073             latitude:25.9061             PM2_5:34.37464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e3e4a8a2a90636eaea78642a9762b5e.setContent(html_f82f16c395510ca1612bf15bc139d498);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59a7ccc65fe3ecb9aa2e59c4a58f80f8.bindPopup(popup_3e3e4a8a2a90636eaea78642a9762b5e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c965fb9652e650866cbb3c0f5f7b03e3 = L.circleMarker(\\n\",\n       \"                [23.0395, 113.105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23fe70ab00c1fd464eec4fb5cb88d501 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_149b85fa8b3a5a1bddf89f0d4a5432f0 = $(`&lt;div id=&quot;html_149b85fa8b3a5a1bddf89f0d4a5432f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.105             latitude:23.0395             PM2_5:39.28969359             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23fe70ab00c1fd464eec4fb5cb88d501.setContent(html_149b85fa8b3a5a1bddf89f0d4a5432f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c965fb9652e650866cbb3c0f5f7b03e3.bindPopup(popup_23fe70ab00c1fd464eec4fb5cb88d501)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30a821ee3a9b43c1551f6bb0bca90ea0 = L.circleMarker(\\n\",\n       \"                [31.2108, 107.4967],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_819f19226b557567494f3d0f0bf95122 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_091a58db2c05b717f44ad9bfd7a2e654 = $(`&lt;div id=&quot;html_091a58db2c05b717f44ad9bfd7a2e654&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4967             latitude:31.2108             PM2_5:48.13509749             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_819f19226b557567494f3d0f0bf95122.setContent(html_091a58db2c05b717f44ad9bfd7a2e654);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30a821ee3a9b43c1551f6bb0bca90ea0.bindPopup(popup_819f19226b557567494f3d0f0bf95122)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ea9d9f47ec6b71228425bc0d614367e = L.circleMarker(\\n\",\n       \"                [38.8957, 115.5223],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ab8ce2374bd33fda760fe1905b64b54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd9bd6475eee24d35497441d57f6bc26 = $(`&lt;div id=&quot;html_fd9bd6475eee24d35497441d57f6bc26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.5223             latitude:38.8957             PM2_5:56.74789916             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ab8ce2374bd33fda760fe1905b64b54.setContent(html_fd9bd6475eee24d35497441d57f6bc26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ea9d9f47ec6b71228425bc0d614367e.bindPopup(popup_2ab8ce2374bd33fda760fe1905b64b54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb2b09d0721b272df140a6074e0ce008 = L.circleMarker(\\n\",\n       \"                [39.617, 122.011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f167ce74899fb1ac1df3a5c3e56302f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0947ac35d6355040846dd81d67dbcba5 = $(`&lt;div id=&quot;html_0947ac35d6355040846dd81d67dbcba5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.011             latitude:39.617             PM2_5:32.03191489             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f167ce74899fb1ac1df3a5c3e56302f2.setContent(html_0947ac35d6355040846dd81d67dbcba5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb2b09d0721b272df140a6074e0ce008.bindPopup(popup_f167ce74899fb1ac1df3a5c3e56302f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_799e575e2981c97554c629b57e4ab259 = L.circleMarker(\\n\",\n       \"                [36.907, 121.544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0561a8c1457aa1585ed1d4ca23d63455 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d10cb6c958619c02732789a52b994464 = $(`&lt;div id=&quot;html_d10cb6c958619c02732789a52b994464&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.544             latitude:36.907             PM2_5:18.6504298             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0561a8c1457aa1585ed1d4ca23d63455.setContent(html_d10cb6c958619c02732789a52b994464);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_799e575e2981c97554c629b57e4ab259.bindPopup(popup_0561a8c1457aa1585ed1d4ca23d63455)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5eb42d9ab1ebde7be992d778f993e401 = L.circleMarker(\\n\",\n       \"                [34.6686, 112.4433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63d84496b26baf3fd1e6efad3bc6dd0e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e00bfe3005b612f5aef04b0213052399 = $(`&lt;div id=&quot;html_e00bfe3005b612f5aef04b0213052399&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4433             latitude:34.6686             PM2_5:60.85352113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63d84496b26baf3fd1e6efad3bc6dd0e.setContent(html_e00bfe3005b612f5aef04b0213052399);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5eb42d9ab1ebde7be992d778f993e401.bindPopup(popup_63d84496b26baf3fd1e6efad3bc6dd0e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c53a4a55f3762dca992ed764697fbaf1 = L.circleMarker(\\n\",\n       \"                [31.172, 120.658],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a116b08f5956d670d3110b402279324 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc00226c1220b317e212462e2e3ba76a = $(`&lt;div id=&quot;html_dc00226c1220b317e212462e2e3ba76a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.658             latitude:31.172             PM2_5:40.59217877             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a116b08f5956d670d3110b402279324.setContent(html_dc00226c1220b317e212462e2e3ba76a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c53a4a55f3762dca992ed764697fbaf1.bindPopup(popup_3a116b08f5956d670d3110b402279324)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddfe19f0bc0e6a1e85b735e1d575dff8 = L.circleMarker(\\n\",\n       \"                [26.3108, 117.7275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2ae2f4427b127116e8561d15e8b349d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd905ef318ac978562177496edad0a1d = $(`&lt;div id=&quot;html_bd905ef318ac978562177496edad0a1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7275             latitude:26.3108             PM2_5:26.40668524             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2ae2f4427b127116e8561d15e8b349d.setContent(html_bd905ef318ac978562177496edad0a1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddfe19f0bc0e6a1e85b735e1d575dff8.bindPopup(popup_e2ae2f4427b127116e8561d15e8b349d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64115d62fb7e876155d8b21889c4397e = L.circleMarker(\\n\",\n       \"                [34.378, 108.869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a67acb6052072926b4c7cf27930adee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebfbe57de51a6562193aa2c327c8ed81 = $(`&lt;div id=&quot;html_ebfbe57de51a6562193aa2c327c8ed81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.869             latitude:34.378             PM2_5:62.61024845             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a67acb6052072926b4c7cf27930adee.setContent(html_ebfbe57de51a6562193aa2c327c8ed81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64115d62fb7e876155d8b21889c4397e.bindPopup(popup_3a67acb6052072926b4c7cf27930adee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6dcd5e09e38def6fd526fc076f5726c = L.circleMarker(\\n\",\n       \"                [29.8506, 121.524],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68c8064dfd6999c1f900d0c0315695c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e8129d1b7a4e92600cdf679a6b18a59 = $(`&lt;div id=&quot;html_4e8129d1b7a4e92600cdf679a6b18a59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.524             latitude:29.8506             PM2_5:31.24792244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68c8064dfd6999c1f900d0c0315695c2.setContent(html_4e8129d1b7a4e92600cdf679a6b18a59);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6dcd5e09e38def6fd526fc076f5726c.bindPopup(popup_68c8064dfd6999c1f900d0c0315695c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_757f74b11f0b0c9eafe616a5dcf102ea = L.circleMarker(\\n\",\n       \"                [43.895, 81.2867],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa346bc8e646dd0e4fed5851cadb8198 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2a1d8d213a357aabc5ad1140c55e530 = $(`&lt;div id=&quot;html_d2a1d8d213a357aabc5ad1140c55e530&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.2867             latitude:43.895             PM2_5:59.07703081             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa346bc8e646dd0e4fed5851cadb8198.setContent(html_d2a1d8d213a357aabc5ad1140c55e530);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_757f74b11f0b0c9eafe616a5dcf102ea.bindPopup(popup_fa346bc8e646dd0e4fed5851cadb8198)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83efcc900fb0c6bc03180454535ecf0d = L.circleMarker(\\n\",\n       \"                [34.802, 113.564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9ffab15f8ad3400bd372e9ab9330786 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6fa11570dafd7f3934467ff73d15a992 = $(`&lt;div id=&quot;html_6fa11570dafd7f3934467ff73d15a992&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.564             latitude:34.802             PM2_5:62.60085227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9ffab15f8ad3400bd372e9ab9330786.setContent(html_6fa11570dafd7f3934467ff73d15a992);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83efcc900fb0c6bc03180454535ecf0d.bindPopup(popup_e9ffab15f8ad3400bd372e9ab9330786)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7a0dc720e5e05b92c18324191cc9d69 = L.circleMarker(\\n\",\n       \"                [29.315, 110.4417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b644643e75868e9b7977fe0db12cbc76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f397c83a01ef8a7a37e626e758fb899 = $(`&lt;div id=&quot;html_7f397c83a01ef8a7a37e626e758fb899&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4417             latitude:29.315             PM2_5:28.36478873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b644643e75868e9b7977fe0db12cbc76.setContent(html_7f397c83a01ef8a7a37e626e758fb899);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7a0dc720e5e05b92c18324191cc9d69.bindPopup(popup_b644643e75868e9b7977fe0db12cbc76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2700baaed3d87847003af701117610f7 = L.circleMarker(\\n\",\n       \"                [46.6572, 131.1638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eaed6347720cbeb8674beca96536464c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68e76b7bf98b038bef13e55144f6d1b7 = $(`&lt;div id=&quot;html_68e76b7bf98b038bef13e55144f6d1b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1638             latitude:46.6572             PM2_5:28.1755618             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eaed6347720cbeb8674beca96536464c.setContent(html_68e76b7bf98b038bef13e55144f6d1b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2700baaed3d87847003af701117610f7.bindPopup(popup_eaed6347720cbeb8674beca96536464c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46f0f7ffb830c0a9342a9ab42360bd56 = L.circleMarker(\\n\",\n       \"                [27.0658, 114.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f7ded28123b623c146e31fccba4ab4d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fda1aa635e44dbf2611dc6bb61a4c736 = $(`&lt;div id=&quot;html_fda1aa635e44dbf2611dc6bb61a4c736&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9817             latitude:27.0658             PM2_5:51.02148997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f7ded28123b623c146e31fccba4ab4d.setContent(html_fda1aa635e44dbf2611dc6bb61a4c736);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46f0f7ffb830c0a9342a9ab42360bd56.bindPopup(popup_1f7ded28123b623c146e31fccba4ab4d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_831075c619e44f5d5919f992995ffc88 = L.circleMarker(\\n\",\n       \"                [22.9169, 112.0392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8aa8ea708da35242939f6c66afaad51e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12326bc1b8a8c3e5b229e1db22f32bf3 = $(`&lt;div id=&quot;html_12326bc1b8a8c3e5b229e1db22f32bf3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0392             latitude:22.9169             PM2_5:32.90555556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8aa8ea708da35242939f6c66afaad51e.setContent(html_12326bc1b8a8c3e5b229e1db22f32bf3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_831075c619e44f5d5919f992995ffc88.bindPopup(popup_8aa8ea708da35242939f6c66afaad51e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00aba2ff87dc8111f4745a952be6a5a0 = L.circleMarker(\\n\",\n       \"                [23.7369, 109.2317],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce4d388888be969ac240caf2b4d816f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84fb0649c3a824a857c7e49c19d5f7ea = $(`&lt;div id=&quot;html_84fb0649c3a824a857c7e49c19d5f7ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2317             latitude:23.7369             PM2_5:41.42577031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce4d388888be969ac240caf2b4d816f3.setContent(html_84fb0649c3a824a857c7e49c19d5f7ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00aba2ff87dc8111f4745a952be6a5a0.bindPopup(popup_ce4d388888be969ac240caf2b4d816f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f17387c4136b72cfc59d3a14576b2601 = L.circleMarker(\\n\",\n       \"                [32.6319, 116.8306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb44a7cd8f7e7b14463204acb6429084 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d042509bdb5c82070435ef005e13b162 = $(`&lt;div id=&quot;html_d042509bdb5c82070435ef005e13b162&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8306             latitude:32.6319             PM2_5:54.37900875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb44a7cd8f7e7b14463204acb6429084.setContent(html_d042509bdb5c82070435ef005e13b162);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f17387c4136b72cfc59d3a14576b2601.bindPopup(popup_eb44a7cd8f7e7b14463204acb6429084)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e15d976eeed62fe01c9ef108504b4c8 = L.circleMarker(\\n\",\n       \"                [42.9061, 129.5042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b2aaec1ed30ae127f46ee0df6d43854 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d12a761301d6eb9927d8b0d36151c68 = $(`&lt;div id=&quot;html_1d12a761301d6eb9927d8b0d36151c68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.5042             latitude:42.9061             PM2_5:20.3913649             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b2aaec1ed30ae127f46ee0df6d43854.setContent(html_1d12a761301d6eb9927d8b0d36151c68);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e15d976eeed62fe01c9ef108504b4c8.bindPopup(popup_7b2aaec1ed30ae127f46ee0df6d43854)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74d54358d846094f78fe797f8c3df080 = L.circleMarker(\\n\",\n       \"                [41.8594, 123.9],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c37e593536ffe9a55e26374d4be5c22c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a02b8f04d8cb50ff572a35c578af2bee = $(`&lt;div id=&quot;html_a02b8f04d8cb50ff572a35c578af2bee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9             latitude:41.8594             PM2_5:36.30779944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c37e593536ffe9a55e26374d4be5c22c.setContent(html_a02b8f04d8cb50ff572a35c578af2bee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74d54358d846094f78fe797f8c3df080.bindPopup(popup_c37e593536ffe9a55e26374d4be5c22c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1207d9170e6a3f3f3cc44c0863ffab6d = L.circleMarker(\\n\",\n       \"                [29.5867, 115.9936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8884e4176cd27203131f6e1b55b7d5db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f5120429f1fbd771e891006b6548bb1 = $(`&lt;div id=&quot;html_2f5120429f1fbd771e891006b6548bb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9936             latitude:29.5867             PM2_5:21.53521127             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8884e4176cd27203131f6e1b55b7d5db.setContent(html_2f5120429f1fbd771e891006b6548bb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1207d9170e6a3f3f3cc44c0863ffab6d.bindPopup(popup_8884e4176cd27203131f6e1b55b7d5db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59debab0b84e1ae9f4e62e684c153cab = L.circleMarker(\\n\",\n       \"                [36.0211, 106.2375],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c49bd6fa7667ad0c85f437299700221f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7da24d94f7951fb72ad2e94810793d80 = $(`&lt;div id=&quot;html_7da24d94f7951fb72ad2e94810793d80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2375             latitude:36.0211             PM2_5:24.23455056             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c49bd6fa7667ad0c85f437299700221f.setContent(html_7da24d94f7951fb72ad2e94810793d80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59debab0b84e1ae9f4e62e684c153cab.bindPopup(popup_c49bd6fa7667ad0c85f437299700221f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1486470688c2333e936c1271742aae39 = L.circleMarker(\\n\",\n       \"                [43.1847, 124.3897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e5c48c08149dc049624c44a9d7ee734 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1d6c3bc8155a9b6dd63ba633491c44b = $(`&lt;div id=&quot;html_d1d6c3bc8155a9b6dd63ba633491c44b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3897             latitude:43.1847             PM2_5:31.2745098             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e5c48c08149dc049624c44a9d7ee734.setContent(html_d1d6c3bc8155a9b6dd63ba633491c44b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1486470688c2333e936c1271742aae39.bindPopup(popup_8e5c48c08149dc049624c44a9d7ee734)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5742edc79bc91238bac765aef7de586 = L.circleMarker(\\n\",\n       \"                [35.1764, 113.2464],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_052cedab2732a57f37765d957619a9bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d335f2421f8255472e7dbc4e1700e974 = $(`&lt;div id=&quot;html_d335f2421f8255472e7dbc4e1700e974&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2464             latitude:35.1764             PM2_5:67.43117978             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_052cedab2732a57f37765d957619a9bd.setContent(html_d335f2421f8255472e7dbc4e1700e974);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5742edc79bc91238bac765aef7de586.bindPopup(popup_052cedab2732a57f37765d957619a9bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a485c9ec5080947b0c97c0a3c48d8577 = L.circleMarker(\\n\",\n       \"                [35.0994, 109.0656],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be85ff771b6390710f859471ed29e44c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23a143d47471aa9b6102df5ed5df50f4 = $(`&lt;div id=&quot;html_23a143d47471aa9b6102df5ed5df50f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0656             latitude:35.0994             PM2_5:35.85632184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be85ff771b6390710f859471ed29e44c.setContent(html_23a143d47471aa9b6102df5ed5df50f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a485c9ec5080947b0c97c0a3c48d8577.bindPopup(popup_be85ff771b6390710f859471ed29e44c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_faa69f63344378dde5c51bfd3dbb7644 = L.circleMarker(\\n\",\n       \"                [30.7819, 111.3296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc7b4f5d5cb912e7f1c3fb7d3c75a990 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2373bacf164070053bead0176929152a = $(`&lt;div id=&quot;html_2373bacf164070053bead0176929152a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3296             latitude:30.7819             PM2_5:52.59556787             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc7b4f5d5cb912e7f1c3fb7d3c75a990.setContent(html_2373bacf164070053bead0176929152a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_faa69f63344378dde5c51bfd3dbb7644.bindPopup(popup_cc7b4f5d5cb912e7f1c3fb7d3c75a990)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dadd76ee2c53b6388622f9712e2d13e2 = L.circleMarker(\\n\",\n       \"                [25.5035, 103.7897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_266c99581c837d75ee201e96a2e658f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3c051468c72704c9b1555238e9fbcf9 = $(`&lt;div id=&quot;html_d3c051468c72704c9b1555238e9fbcf9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7897             latitude:25.5035             PM2_5:35.22957746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_266c99581c837d75ee201e96a2e658f1.setContent(html_d3c051468c72704c9b1555238e9fbcf9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dadd76ee2c53b6388622f9712e2d13e2.bindPopup(popup_266c99581c837d75ee201e96a2e658f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92286e791aa013184a4feca3bbe7fab2 = L.circleMarker(\\n\",\n       \"                [37.8195, 112.57],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d95cb66105e45c059af28c745899b63 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b5aae124a28b46e6b2ac96000302f5d = $(`&lt;div id=&quot;html_0b5aae124a28b46e6b2ac96000302f5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.57             latitude:37.8195             PM2_5:62.8782235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d95cb66105e45c059af28c745899b63.setContent(html_0b5aae124a28b46e6b2ac96000302f5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92286e791aa013184a4feca3bbe7fab2.bindPopup(popup_4d95cb66105e45c059af28c745899b63)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_032148067b96d7439e420f4c7d8a3f77 = L.circleMarker(\\n\",\n       \"                [32.1083, 118.803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b723e086fe96bf12c9a2fac6a7ac40c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a98f5d68015740e98014b026c10809f8 = $(`&lt;div id=&quot;html_a98f5d68015740e98014b026c10809f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.803             latitude:32.1083             PM2_5:43.03641457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b723e086fe96bf12c9a2fac6a7ac40c4.setContent(html_a98f5d68015740e98014b026c10809f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_032148067b96d7439e420f4c7d8a3f77.bindPopup(popup_b723e086fe96bf12c9a2fac6a7ac40c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1a3e1ef330f0a78fe3167d8a18a9fa1 = L.circleMarker(\\n\",\n       \"                [23.8822, 100.0869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b00d3b6f28022e4cfabf9da3925c7784 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae8d987cc73031688a008edc6943355c = $(`&lt;div id=&quot;html_ae8d987cc73031688a008edc6943355c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0869             latitude:23.8822             PM2_5:26.72285714             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b00d3b6f28022e4cfabf9da3925c7784.setContent(html_ae8d987cc73031688a008edc6943355c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1a3e1ef330f0a78fe3167d8a18a9fa1.bindPopup(popup_b00d3b6f28022e4cfabf9da3925c7784)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_594f9af2c56d17d77fe07d614b4d0259 = L.circleMarker(\\n\",\n       \"                [27.8978, 102.2625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb33d43e9b38af95f4b6de30918f0b19 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44f3d7ff517b243bc771fe810a86e1d7 = $(`&lt;div id=&quot;html_44f3d7ff517b243bc771fe810a86e1d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2625             latitude:27.8978             PM2_5:21.25218659             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb33d43e9b38af95f4b6de30918f0b19.setContent(html_44f3d7ff517b243bc771fe810a86e1d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_594f9af2c56d17d77fe07d614b4d0259.bindPopup(popup_bb33d43e9b38af95f4b6de30918f0b19)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6db2e7d00ec00af52ecdfb9129b83ce1 = L.circleMarker(\\n\",\n       \"                [37.825, 120.747],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d86e1ade3afde7ddd536c32d07e5e320 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1a8dd9e75dd700c0549c4e812df9326 = $(`&lt;div id=&quot;html_f1a8dd9e75dd700c0549c4e812df9326&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.747             latitude:37.825             PM2_5:31.43079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d86e1ade3afde7ddd536c32d07e5e320.setContent(html_f1a8dd9e75dd700c0549c4e812df9326);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6db2e7d00ec00af52ecdfb9129b83ce1.bindPopup(popup_d86e1ade3afde7ddd536c32d07e5e320)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cba83f90d425c7c846a3cb59c8f095b8 = L.circleMarker(\\n\",\n       \"                [43.8167, 125.25],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3516b56f4896030176c48d0886cbef93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b565b3c3f5fb122cf90667fc250a4d16 = $(`&lt;div id=&quot;html_b565b3c3f5fb122cf90667fc250a4d16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.25             latitude:43.8167             PM2_5:26.91520468             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3516b56f4896030176c48d0886cbef93.setContent(html_b565b3c3f5fb122cf90667fc250a4d16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cba83f90d425c7c846a3cb59c8f095b8.bindPopup(popup_3516b56f4896030176c48d0886cbef93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c62ff4c43378b497b02201b2a9f9189 = L.circleMarker(\\n\",\n       \"                [37.8564, 113.5753],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f76f9804322e9a1208fb0185207eb35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33b172c683a1157e6bc52ab723bcfed3 = $(`&lt;div id=&quot;html_33b172c683a1157e6bc52ab723bcfed3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5753             latitude:37.8564             PM2_5:55.25140449             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f76f9804322e9a1208fb0185207eb35.setContent(html_33b172c683a1157e6bc52ab723bcfed3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c62ff4c43378b497b02201b2a9f9189.bindPopup(popup_6f76f9804322e9a1208fb0185207eb35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85f60c67016a170ea45686c3fc2e039a = L.circleMarker(\\n\",\n       \"                [25.0359, 102.638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6b2b62754e32e58fec5426ade243df5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f44e69e4899c0bcfeb7ac168ee27629c = $(`&lt;div id=&quot;html_f44e69e4899c0bcfeb7ac168ee27629c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.638             latitude:25.0359             PM2_5:31.47645429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6b2b62754e32e58fec5426ade243df5.setContent(html_f44e69e4899c0bcfeb7ac168ee27629c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85f60c67016a170ea45686c3fc2e039a.bindPopup(popup_c6b2b62754e32e58fec5426ade243df5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc5fab11a451e7a3bf413f0c88539108 = L.circleMarker(\\n\",\n       \"                [23.1323, 113.3208],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ad63517351d26740071f5821a79d705 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89c7718ea82094f659a2bab6d02f6ef3 = $(`&lt;div id=&quot;html_89c7718ea82094f659a2bab6d02f6ef3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3208             latitude:23.1323             PM2_5:35.87222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ad63517351d26740071f5821a79d705.setContent(html_89c7718ea82094f659a2bab6d02f6ef3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc5fab11a451e7a3bf413f0c88539108.bindPopup(popup_9ad63517351d26740071f5821a79d705)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d6d629440a610ca5caf01b81c551148 = L.circleMarker(\\n\",\n       \"                [40.7136, 120.9092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b9c497de58c1271e148dc60b3f5bf1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7234edeeab9c98ccf246d1f77f4be57d = $(`&lt;div id=&quot;html_7234edeeab9c98ccf246d1f77f4be57d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.9092             latitude:40.7136             PM2_5:38.91316527             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b9c497de58c1271e148dc60b3f5bf1b.setContent(html_7234edeeab9c98ccf246d1f77f4be57d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d6d629440a610ca5caf01b81c551148.bindPopup(popup_2b9c497de58c1271e148dc60b3f5bf1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46e395db8cbcb2afe7acca64d5ed5042 = L.circleMarker(\\n\",\n       \"                [40.9923, 113.1306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ba2a611412ea0dd074202068c82097b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9c08b934916de93edd18d6b03af7d95 = $(`&lt;div id=&quot;html_f9c08b934916de93edd18d6b03af7d95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1306             latitude:40.9923             PM2_5:19.8487395             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ba2a611412ea0dd074202068c82097b.setContent(html_f9c08b934916de93edd18d6b03af7d95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46e395db8cbcb2afe7acca64d5ed5042.bindPopup(popup_9ba2a611412ea0dd074202068c82097b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f920061037842b5de9f4610684192a51 = L.circleMarker(\\n\",\n       \"                [31.874, 120.526],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_263283e733436967c63f71415d655610 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c382ebb30d4a4dc0af3650c10e826b81 = $(`&lt;div id=&quot;html_c382ebb30d4a4dc0af3650c10e826b81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.526             latitude:31.874             PM2_5:37.58333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_263283e733436967c63f71415d655610.setContent(html_c382ebb30d4a4dc0af3650c10e826b81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f920061037842b5de9f4610684192a51.bindPopup(popup_263283e733436967c63f71415d655610)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d5b5d9c961f6c8b975c766ad28d551b = L.circleMarker(\\n\",\n       \"                [26.0797, 119.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37db47076bd726d9eae79162c53bdd01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5d8b0e8a55fe1ab0ff93a2a0103fad2 = $(`&lt;div id=&quot;html_e5d8b0e8a55fe1ab0ff93a2a0103fad2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.268             latitude:26.0797             PM2_5:25.44662921             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37db47076bd726d9eae79162c53bdd01.setContent(html_e5d8b0e8a55fe1ab0ff93a2a0103fad2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d5b5d9c961f6c8b975c766ad28d551b.bindPopup(popup_37db47076bd726d9eae79162c53bdd01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c6e1b5c49ece4a478127ab95c362f3d = L.circleMarker(\\n\",\n       \"                [31.3264, 120.596],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9fc70a6d8b5182c72f9a1a468e63a0e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8dcbd8681c6c4179246783811c57f042 = $(`&lt;div id=&quot;html_8dcbd8681c6c4179246783811c57f042&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.596             latitude:31.3264             PM2_5:43.19230769             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9fc70a6d8b5182c72f9a1a468e63a0e9.setContent(html_8dcbd8681c6c4179246783811c57f042);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c6e1b5c49ece4a478127ab95c362f3d.bindPopup(popup_9fc70a6d8b5182c72f9a1a468e63a0e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f8e03444ee76be0fc267f612022595e = L.circleMarker(\\n\",\n       \"                [34.3017, 107.0708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_228236c4b172a779341f8cf24ee77c16 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da221d94ecd1d053f39ae047a5e016ad = $(`&lt;div id=&quot;html_da221d94ecd1d053f39ae047a5e016ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0708             latitude:34.3017             PM2_5:44.9301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_228236c4b172a779341f8cf24ee77c16.setContent(html_da221d94ecd1d053f39ae047a5e016ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f8e03444ee76be0fc267f612022595e.bindPopup(popup_228236c4b172a779341f8cf24ee77c16)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ae749bcff043413e9c177d810d694d6 = L.circleMarker(\\n\",\n       \"                [32.0775, 118.795],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b79c1c1b961474c2863813d6fa55be0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a06807af66ab62db1c5e528291ae9050 = $(`&lt;div id=&quot;html_a06807af66ab62db1c5e528291ae9050&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.795             latitude:32.0775             PM2_5:48.81395349             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b79c1c1b961474c2863813d6fa55be0.setContent(html_a06807af66ab62db1c5e528291ae9050);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ae749bcff043413e9c177d810d694d6.bindPopup(popup_3b79c1c1b961474c2863813d6fa55be0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3bcfdaf4b56ef54014b39a7b479422c = L.circleMarker(\\n\",\n       \"                [46.6462, 131.1516],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fcc2c66c717fbca877127f212e59fdbf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc1de8ff7c42d2225e7dd739f5af8e01 = $(`&lt;div id=&quot;html_cc1de8ff7c42d2225e7dd739f5af8e01&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1516             latitude:46.6462             PM2_5:32.94225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fcc2c66c717fbca877127f212e59fdbf.setContent(html_cc1de8ff7c42d2225e7dd739f5af8e01);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3bcfdaf4b56ef54014b39a7b479422c.bindPopup(popup_fcc2c66c717fbca877127f212e59fdbf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f4c2d22ca957d8cfb2b282755005461 = L.circleMarker(\\n\",\n       \"                [35.0573, 118.3418],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26322108a792b4b115ead5e1abf32498 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1261e9f4ecf60f7b932e6f15139a8f12 = $(`&lt;div id=&quot;html_1261e9f4ecf60f7b932e6f15139a8f12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3418             latitude:35.0573             PM2_5:39.93871866             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26322108a792b4b115ead5e1abf32498.setContent(html_1261e9f4ecf60f7b932e6f15139a8f12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f4c2d22ca957d8cfb2b282755005461.bindPopup(popup_26322108a792b4b115ead5e1abf32498)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1c04eec5b3402df8734af24f9c8a4cf = L.circleMarker(\\n\",\n       \"                [23.6936, 113.0425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73832eae446a029bdb8b09ba51879c85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2cbaca21fa767c7f6eb1ad90961366dc = $(`&lt;div id=&quot;html_2cbaca21fa767c7f6eb1ad90961366dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0425             latitude:23.6936             PM2_5:32.96374622             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73832eae446a029bdb8b09ba51879c85.setContent(html_2cbaca21fa767c7f6eb1ad90961366dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1c04eec5b3402df8734af24f9c8a4cf.bindPopup(popup_73832eae446a029bdb8b09ba51879c85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23a53dbbff57ee873bc5b624ceeae088 = L.circleMarker(\\n\",\n       \"                [29.4758, 113.2621],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_524a0d6b2dae7b8e6527541970f44710 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27dc53072428a72c94b8cf2d2afe6f7d = $(`&lt;div id=&quot;html_27dc53072428a72c94b8cf2d2afe6f7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2621             latitude:29.4758             PM2_5:48.03179191             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_524a0d6b2dae7b8e6527541970f44710.setContent(html_27dc53072428a72c94b8cf2d2afe6f7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23a53dbbff57ee873bc5b624ceeae088.bindPopup(popup_524a0d6b2dae7b8e6527541970f44710)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_647bf03480886c88e542bf325a81bc74 = L.circleMarker(\\n\",\n       \"                [40.6821, 109.8538],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b099f470cef354053adfbfac0cde2c92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67b96ff1dc6dd165c96ae7fd4b918b3f = $(`&lt;div id=&quot;html_67b96ff1dc6dd165c96ae7fd4b918b3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8538             latitude:40.6821             PM2_5:44.97777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b099f470cef354053adfbfac0cde2c92.setContent(html_67b96ff1dc6dd165c96ae7fd4b918b3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_647bf03480886c88e542bf325a81bc74.bindPopup(popup_b099f470cef354053adfbfac0cde2c92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_00cba2cfd5c6f582ed00475727ca4d9e = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_00cba2cfd5c6f582ed00475727ca4d9e.color = d3.scale.threshold()\\n\",\n       \"              .domain([4.474930362, 4.73409996408016, 4.993269566160321, 5.252439168240481, 5.511608770320642, 5.770778372400802, 6.029947974480962, 6.2891175765611225, 6.548287178641283, 6.807456780721443, 7.066626382801603, 7.325795984881763, 7.584965586961924, 7.844135189042085, 8.103304791122245, 8.362474393202405, 8.621643995282565, 8.880813597362724, 9.139983199442886, 9.399152801523044, 9.658322403603206, 9.917492005683368, 10.176661607763528, 10.435831209843688, 10.695000811923848, 10.954170414004007, 11.213340016084167, 11.472509618164327, 11.731679220244489, 11.990848822324649, 12.250018424404809, 12.509188026484969, 12.76835762856513, 13.027527230645289, 13.28669683272545, 13.54586643480561, 13.805036036885772, 14.064205638965932, 14.32337524104609, 14.582544843126252, 14.841714445206412, 15.100884047286574, 15.360053649366733, 15.619223251446892, 15.878392853527053, 16.137562455607213, 16.396732057687373, 16.655901659767537, 16.915071261847693, 17.174240863927857, 17.433410466008013, 17.692580068088176, 17.951749670168336, 18.210919272248496, 18.470088874328656, 18.729258476408816, 18.98842807848898, 19.247597680569136, 19.5067672826493, 19.765936884729456, 20.02510648680962, 20.28427608888978, 20.54344569096994, 20.802615293050103, 21.06178489513026, 21.320954497210415, 21.58012409929058, 21.839293701370742, 22.0984633034509, 22.357632905531062, 22.61680250761122, 22.875972109691382, 23.135141711771546, 23.394311313851702, 23.653480915931866, 23.912650518012022, 24.17182012009218, 24.43098972217234, 24.690159324252505, 24.94932892633266, 25.208498528412825, 25.46766813049298, 25.726837732573145, 25.98600733465331, 26.245176936733465, 26.50434653881362, 26.763516140893785, 27.022685742973948, 27.281855345054105, 27.541024947134268, 27.800194549214424, 28.059364151294588, 28.31853375337475, 28.577703355454908, 28.83687295753507, 29.096042559615228, 29.35521216169539, 29.614381763775548, 29.87355136585571, 30.132720967935867, 30.39189057001603, 30.651060172096194, 30.91022977417635, 31.169399376256514, 31.42856897833667, 31.687738580416827, 31.94690818249699, 32.206077784577154, 32.46524738665731, 32.724416988737474, 32.98358659081763, 33.242756192897794, 33.50192579497796, 33.761095397058114, 34.02026499913827, 34.27943460121843, 34.5386042032986, 34.79777380537875, 35.05694340745892, 35.31611300953907, 35.57528261161924, 35.8344522136994, 36.09362181577956, 36.35279141785972, 36.611961019939876, 36.87113062202004, 37.1303002241002, 37.38946982618036, 37.64863942826052, 37.90780903034069, 38.166978632420836, 38.426148234501, 38.685317836581156, 38.94448743866132, 39.20365704074148, 39.46282664282164, 39.7219962449018, 39.98116584698196, 40.24033544906212, 40.499505051142286, 40.75867465322244, 41.017844255302606, 41.27701385738276, 41.536183459462926, 41.79535306154309, 42.054522663623246, 42.31369226570341, 42.572861867783566, 42.83203146986373, 43.091201071943885, 43.35037067402404, 43.609540276104205, 43.86870987818436, 44.127879480264525, 44.38704908234469, 44.646218684424845, 44.90538828650501, 45.164557888585165, 45.42372749066533, 45.68289709274549, 45.94206669482565, 46.20123629690581, 46.46040589898597, 46.71957550106613, 46.978745103146295, 47.23791470522645, 47.497084307306615, 47.75625390938677, 48.015423511466935, 48.27459311354709, 48.53376271562725, 48.79293231770741, 49.05210191978757, 49.31127152186773, 49.570441123947894, 49.82961072602805, 50.088780328108214, 50.34794993018837, 50.607119532268534, 50.8662891343487, 51.125458736428854, 51.38462833850902, 51.643797940589174, 51.90296754266934, 52.1621371447495, 52.42130674682966, 52.68047634890982, 52.93964595098998, 53.19881555307014, 53.4579851551503, 53.71715475723045, 53.97632435931062, 54.23549396139078, 54.49466356347094, 54.7538331655511, 55.01300276763126, 55.27217236971142, 55.53134197179158, 55.79051157387174, 56.0496811759519, 56.30885077803206, 56.56802038011222, 56.82718998219239, 57.08635958427254, 57.34552918635271, 57.60469878843286, 57.863868390513026, 58.12303799259319, 58.382207594673346, 58.6413771967535, 58.90054679883366, 59.15971640091382, 59.418886002993986, 59.67805560507414, 59.937225207154306, 60.19639480923446, 60.455564411314626, 60.71473401339479, 60.973903615474946, 61.23307321755511, 61.492242819635266, 61.75141242171543, 62.01058202379559, 62.26975162587575, 62.52892122795591, 62.78809083003607, 63.04726043211623, 63.306430034196396, 63.565599636276545, 63.82476923835671, 64.08393884043686, 64.34310844251702, 64.60227804459718, 64.86144764667735, 65.12061724875751, 65.37978685083766, 65.63895645291782, 65.89812605499799, 66.15729565707815, 66.41646525915831, 66.67563486123846, 66.93480446331863, 67.19397406539879, 67.45314366747895, 67.71231326955912, 67.97148287163927, 68.23065247371943, 68.4898220757996, 68.74899167787974, 69.00816127995991, 69.26733088204007, 69.52650048412023, 69.7856700862004, 70.04483968828055, 70.30400929036071, 70.56317889244087, 70.82234849452104, 71.08151809660119, 71.34068769868136, 71.59985730076151, 71.85902690284166, 72.11819650492184, 72.37736610700199, 72.63653570908215, 72.8957053111623, 73.15487491324248, 73.41404451532263, 73.6732141174028, 73.93238371948296, 74.19155332156312, 74.45072292364327, 74.70989252572345, 74.9690621278036, 75.22823172988376, 75.48740133196391, 75.74657093404409, 76.00574053612424, 76.2649101382044, 76.52407974028456, 76.78324934236471, 77.04241894444488, 77.30158854652504, 77.5607581486052, 77.81992775068535, 78.07909735276552, 78.33826695484568, 78.59743655692584, 78.85660615900599, 79.11577576108617, 79.37494536316632, 79.63411496524648, 79.89328456732665, 80.15245416940681, 80.41162377148696, 80.67079337356712, 80.92996297564729, 81.18913257772745, 81.4483021798076, 81.70747178188776, 81.96664138396793, 82.22581098604807, 82.48498058812825, 82.7441501902084, 83.00331979228856, 83.26248939436871, 83.52165899644889, 83.78082859852904, 84.0399982006092, 84.29916780268937, 84.55833740476953, 84.81750700684968, 85.07667660892986, 85.33584621101001, 85.59501581309017, 85.85418541517032, 86.1133550172505, 86.37252461933065, 86.6316942214108, 86.89086382349097, 87.15003342557112, 87.40920302765129, 87.66837262973145, 87.92754223181161, 88.18671183389176, 88.44588143597193, 88.70505103805209, 88.96422064013225, 89.2233902422124, 89.48255984429258, 89.74172944637273, 90.0008990484529, 90.26006865053306, 90.51923825261322, 90.77840785469337, 91.03757745677353, 91.2967470588537, 91.55591666093386, 91.81508626301401, 92.07425586509417, 92.33342546717434, 92.59259506925449, 92.85176467133466, 93.11093427341481, 93.37010387549498, 93.62927347757513, 93.8884430796553, 94.14761268173545, 94.40678228381562, 94.66595188589578, 94.92512148797594, 95.18429109005609, 95.44346069213627, 95.70263029421642, 95.96179989629658, 96.22096949837673, 96.48013910045691, 96.73930870253706, 96.99847830461721, 97.25764790669739, 97.51681750877754, 97.7759871108577, 98.03515671293786, 98.29432631501803, 98.55349591709818, 98.81266551917834, 99.0718351212585, 99.33100472333867, 99.59017432541881, 99.84934392749899, 100.10851352957914, 100.3676831316593, 100.62685273373947, 100.88602233581963, 101.14519193789978, 101.40436153997994, 101.66353114206011, 101.92270074414027, 102.18187034622042, 102.44103994830058, 102.70020955038075, 102.9593791524609, 103.21854875454108, 103.47771835662122, 103.73688795870139, 103.99605756078155, 104.25522716286171, 104.51439676494186, 104.77356636702203, 105.03273596910219, 105.29190557118235, 105.5510751732625, 105.81024477534268, 106.06941437742283, 106.328583979503, 106.58775358158316, 106.84692318366332, 107.10609278574347, 107.36526238782362, 107.6244319899038, 107.88360159198395, 108.14277119406411, 108.40194079614427, 108.66111039822444, 108.92028000030459, 109.17944960238476, 109.43861920446491, 109.69778880654508, 109.95695840862523, 110.2161280107054, 110.47529761278555, 110.73446721486572, 110.99363681694588, 111.25280641902604, 111.5119760211062, 111.77114562318637, 112.03031522526652, 112.28948482734668, 112.54865442942683, 112.807824031507, 113.06699363358716, 113.32616323566731, 113.58533283774749, 113.84450243982764, 114.1036720419078, 114.36284164398796, 114.62201124606813, 114.88118084814828, 115.14035045022844, 115.3995200523086, 115.65868965438877, 115.91785925646892, 116.1770288585491, 116.43619846062924, 116.6953680627094, 116.95453766478957, 117.21370726686973, 117.47287686894988, 117.73204647103003, 117.99121607311021, 118.25038567519036, 118.50955527727052, 118.76872487935069, 119.02789448143085, 119.287064083511, 119.54623368559118, 119.80540328767133, 120.06457288975149, 120.32374249183164, 120.58291209391182, 120.84208169599196, 121.10125129807213, 121.36042090015229, 121.61959050223246, 121.8787601043126, 122.13792970639278, 122.39709930847293, 122.65626891055308, 122.91543851263324, 123.17460811471341, 123.43377771679357, 123.69294731887372, 123.9521169209539, 124.21128652303405, 124.47045612511421, 124.72962572719437, 124.98879532927454, 125.24796493135469, 125.50713453343485, 125.76630413551501, 126.02547373759518, 126.28464333967533, 126.5438129417555, 126.80298254383565, 127.06215214591582, 127.32132174799598, 127.58049135007614, 127.8396609521563, 128.09883055423646, 128.35800015631662, 128.61716975839678, 128.87633936047695, 129.1355089625571, 129.39467856463727, 129.6538481667174, 129.9130177687976, 130.17218737087774, 130.4313569729579, 130.69052657503806, 130.94969617711823, 131.2088657791984, 131.46803538127855, 131.72720498335872, 131.98637458543888, 132.24554418751902, 132.5047137895992, 132.76388339167937, 133.0230529937595, 133.28222259583967, 133.54139219791983, 133.8005618])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_00cba2cfd5c6f582ed00475727ca4d9e.x = d3.scale.linear()\\n\",\n       \"              .domain([4.474930362, 133.8005618])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_00cba2cfd5c6f582ed00475727ca4d9e.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_00cba2cfd5c6f582ed00475727ca4d9e.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_00cba2cfd5c6f582ed00475727ca4d9e.legend.addTo(map_39bb1a6ed84fc6b9900a2c213cb9b0ef);\\n\",\n       \"\\n\",\n       \"    color_map_00cba2cfd5c6f582ed00475727ca4d9e.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_00cba2cfd5c6f582ed00475727ca4d9e.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([4.474930362, &#x27;&#x27;, &#x27;&#x27;, 23.873775077700003, &#x27;&#x27;, &#x27;&#x27;, 43.272619793400004, &#x27;&#x27;, &#x27;&#x27;, 62.6714645091, &#x27;&#x27;, &#x27;&#x27;, 82.0703092248, &#x27;&#x27;, &#x27;&#x27;, 101.46915394049998, &#x27;&#x27;, &#x27;&#x27;, 120.86799865619999, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_00cba2cfd5c6f582ed00475727ca4d9e.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_00cba2cfd5c6f582ed00475727ca4d9e.g = color_map_00cba2cfd5c6f582ed00475727ca4d9e.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_00cba2cfd5c6f582ed00475727ca4d9e.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_00cba2cfd5c6f582ed00475727ca4d9e.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_00cba2cfd5c6f582ed00475727ca4d9e.x(color_map_00cba2cfd5c6f582ed00475727ca4d9e.color.domain()[i - 1]) : color_map_00cba2cfd5c6f582ed00475727ca4d9e.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_00cba2cfd5c6f582ed00475727ca4d9e.color.domain().length ? color_map_00cba2cfd5c6f582ed00475727ca4d9e.x(color_map_00cba2cfd5c6f582ed00475727ca4d9e.color.domain()[i]) : color_map_00cba2cfd5c6f582ed00475727ca4d9e.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_00cba2cfd5c6f582ed00475727ca4d9e.g.call(color_map_00cba2cfd5c6f582ed00475727ca4d9e.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13b97cd9810>\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.display_dataset(name='train', y_column='PM2_5', colors=[\\n\",\n    \"                           'blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"验证集\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"id\": \"E843FFA5898943AD85EC92BE4D2D1E2C\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_230c970e6af5698c25e08a2fbb6c6032 {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_230c970e6af5698c25e08a2fbb6c6032&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_230c970e6af5698c25e08a2fbb6c6032 = L.map(\\n\",\n       \"                &quot;map_230c970e6af5698c25e08a2fbb6c6032&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_ad569185dbe558a4ed114b5a6e94325f = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_ad569185dbe558a4ed114b5a6e94325f.addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ba6c1dfc718fc13f6881374ccfea806 = L.circleMarker(\\n\",\n       \"                [30.8388, 106.1087],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_224bfb3f9326e4909c6ece53fe134daa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c9a4b162e48b2c7ff47270f41033a01 = $(`&lt;div id=&quot;html_1c9a4b162e48b2c7ff47270f41033a01&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1087             latitude:30.8388             PM2_5:42.04634831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_224bfb3f9326e4909c6ece53fe134daa.setContent(html_1c9a4b162e48b2c7ff47270f41033a01);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ba6c1dfc718fc13f6881374ccfea806.bindPopup(popup_224bfb3f9326e4909c6ece53fe134daa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b20f805830f07671f8d0be8f36856600 = L.circleMarker(\\n\",\n       \"                [36.1758, 117.1081],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60ed9226d54ac7bd09a068a09a662149 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ef252f16215105e51c044ef6a183dbb = $(`&lt;div id=&quot;html_5ef252f16215105e51c044ef6a183dbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1081             latitude:36.1758             PM2_5:49.33147632             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60ed9226d54ac7bd09a068a09a662149.setContent(html_5ef252f16215105e51c044ef6a183dbb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b20f805830f07671f8d0be8f36856600.bindPopup(popup_60ed9226d54ac7bd09a068a09a662149)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11fca656b3b7f85e7727f8a3da9d1be4 = L.circleMarker(\\n\",\n       \"                [39.1067, 117.1941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53829745a8f3d5d65dd17a7a6a12d0dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e88bfeaa78e4738bfd478c72de23e1e0 = $(`&lt;div id=&quot;html_e88bfeaa78e4738bfd478c72de23e1e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1941             latitude:39.1067             PM2_5:47.90083799             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53829745a8f3d5d65dd17a7a6a12d0dd.setContent(html_e88bfeaa78e4738bfd478c72de23e1e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11fca656b3b7f85e7727f8a3da9d1be4.bindPopup(popup_53829745a8f3d5d65dd17a7a6a12d0dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed24280785c21df797b41969287a566d = L.circleMarker(\\n\",\n       \"                [32.1142, 112.1825],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_267d814293fc111844f4505845a701a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4d7efa6d84015c1eeec132583fe8882 = $(`&lt;div id=&quot;html_e4d7efa6d84015c1eeec132583fe8882&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1825             latitude:32.1142             PM2_5:62.29295775             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_267d814293fc111844f4505845a701a4.setContent(html_e4d7efa6d84015c1eeec132583fe8882);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed24280785c21df797b41969287a566d.bindPopup(popup_267d814293fc111844f4505845a701a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5595a7089291393f62f3a67eebf3ec61 = L.circleMarker(\\n\",\n       \"                [36.792, 119.952],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65eb4b5e7260c4ef3decbd8291f8680c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_897ab58ea9613f2b344d08b1b2bebc2e = $(`&lt;div id=&quot;html_897ab58ea9613f2b344d08b1b2bebc2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.952             latitude:36.792             PM2_5:32.28248588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65eb4b5e7260c4ef3decbd8291f8680c.setContent(html_897ab58ea9613f2b344d08b1b2bebc2e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5595a7089291393f62f3a67eebf3ec61.bindPopup(popup_65eb4b5e7260c4ef3decbd8291f8680c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d7cb7ff10136b0b13fe926b1264b76c = L.circleMarker(\\n\",\n       \"                [40.6532, 109.8756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69773c0605e0fd544b1fc04eb2d7bbac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e897b6a8b9662a04db6b9af2341e7d07 = $(`&lt;div id=&quot;html_e897b6a8b9662a04db6b9af2341e7d07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8756             latitude:40.6532             PM2_5:45.81005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69773c0605e0fd544b1fc04eb2d7bbac.setContent(html_e897b6a8b9662a04db6b9af2341e7d07);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d7cb7ff10136b0b13fe926b1264b76c.bindPopup(popup_69773c0605e0fd544b1fc04eb2d7bbac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b027227b2bba31a5b0adbeb0c6fe810 = L.circleMarker(\\n\",\n       \"                [36.0875, 111.5025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9951dada4d0ddea56a190154192f2625 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0fd9ef5fa52126340bcedae5baf70e75 = $(`&lt;div id=&quot;html_0fd9ef5fa52126340bcedae5baf70e75&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5025             latitude:36.0875             PM2_5:81.15416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9951dada4d0ddea56a190154192f2625.setContent(html_0fd9ef5fa52126340bcedae5baf70e75);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b027227b2bba31a5b0adbeb0c6fe810.bindPopup(popup_9951dada4d0ddea56a190154192f2625)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0709d9843144ad5738b9b536d34f025 = L.circleMarker(\\n\",\n       \"                [38.8343, 105.6775],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a71bf0222ccf1d225193b189ddcc15ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f097de9f6a74b3146779a1e9b864527 = $(`&lt;div id=&quot;html_9f097de9f6a74b3146779a1e9b864527&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6775             latitude:38.8343             PM2_5:29.56703911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a71bf0222ccf1d225193b189ddcc15ee.setContent(html_9f097de9f6a74b3146779a1e9b864527);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0709d9843144ad5738b9b536d34f025.bindPopup(popup_a71bf0222ccf1d225193b189ddcc15ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9b5490abe583d00e049adbec26b2607 = L.circleMarker(\\n\",\n       \"                [22.7906, 108.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55dd599ed0661fd5a459641afadfce00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f71a582a228d7ad64d3b92a735e52d04 = $(`&lt;div id=&quot;html_f71a582a228d7ad64d3b92a735e52d04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.439             latitude:22.7906             PM2_5:33.82303371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55dd599ed0661fd5a459641afadfce00.setContent(html_f71a582a228d7ad64d3b92a735e52d04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9b5490abe583d00e049adbec26b2607.bindPopup(popup_55dd599ed0661fd5a459641afadfce00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc9bfacfef9623aac27e26deff4cb12d = L.circleMarker(\\n\",\n       \"                [37.4489, 116.3189],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e50574d819e67dd952c8b4ced5e5ba09 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9092513af1fe5f82f165f2d1e3aea13 = $(`&lt;div id=&quot;html_d9092513af1fe5f82f165f2d1e3aea13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3189             latitude:37.4489             PM2_5:57.425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e50574d819e67dd952c8b4ced5e5ba09.setContent(html_d9092513af1fe5f82f165f2d1e3aea13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc9bfacfef9623aac27e26deff4cb12d.bindPopup(popup_e50574d819e67dd952c8b4ced5e5ba09)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ea09a39f469ddb5402d2c5dc82e21b7 = L.circleMarker(\\n\",\n       \"                [38.44139, 106.2275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6afdd5ad05f6414b167d0027c1f4df9a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_45de4042f9e6daee3c484d223ae1a506 = $(`&lt;div id=&quot;html_45de4042f9e6daee3c484d223ae1a506&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2275             latitude:38.44139             PM2_5:34.7254902             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6afdd5ad05f6414b167d0027c1f4df9a.setContent(html_45de4042f9e6daee3c484d223ae1a506);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ea09a39f469ddb5402d2c5dc82e21b7.bindPopup(popup_6afdd5ad05f6414b167d0027c1f4df9a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fbbd6a6c2ae59f13e503a3cf9f74a7e = L.circleMarker(\\n\",\n       \"                [23.01277778, 113.7944444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4c898dac8beaa48509ca593ec4dac7d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe9edbae758b43736a4c7a924ecf25e4 = $(`&lt;div id=&quot;html_fe9edbae758b43736a4c7a924ecf25e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7944444             latitude:23.01277778             PM2_5:33.54142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4c898dac8beaa48509ca593ec4dac7d.setContent(html_fe9edbae758b43736a4c7a924ecf25e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fbbd6a6c2ae59f13e503a3cf9f74a7e.bindPopup(popup_a4c898dac8beaa48509ca593ec4dac7d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1715cc2a7648b2378bdd5e1b481e7a07 = L.circleMarker(\\n\",\n       \"                [42.2725, 118.9572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ebdc0fe132e8f7627fedac64fdac33e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8570fb55d0b18337ec887d9bed7b6e5d = $(`&lt;div id=&quot;html_8570fb55d0b18337ec887d9bed7b6e5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9572             latitude:42.2725             PM2_5:25.29608939             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ebdc0fe132e8f7627fedac64fdac33e4.setContent(html_8570fb55d0b18337ec887d9bed7b6e5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1715cc2a7648b2378bdd5e1b481e7a07.bindPopup(popup_ebdc0fe132e8f7627fedac64fdac33e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eee7073d0b74c0720f07f10bf2154c72 = L.circleMarker(\\n\",\n       \"                [34.7545, 113.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_287ef113dee1f6c30a8d450d33828567 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1dae411b9250b72a1ce055f432b29e3d = $(`&lt;div id=&quot;html_1dae411b9250b72a1ce055f432b29e3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.681             latitude:34.7545             PM2_5:65.23728814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_287ef113dee1f6c30a8d450d33828567.setContent(html_1dae411b9250b72a1ce055f432b29e3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eee7073d0b74c0720f07f10bf2154c72.bindPopup(popup_287ef113dee1f6c30a8d450d33828567)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_504d015b9e08af662f16ee1fcb881f96 = L.circleMarker(\\n\",\n       \"                [31.1278, 97.1804],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0e6a0f2c5dc463fa1735968e2909de3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cec3100e8951ac5eabc1ced99bc6309a = $(`&lt;div id=&quot;html_cec3100e8951ac5eabc1ced99bc6309a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.1804             latitude:31.1278             PM2_5:19.72532895             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0e6a0f2c5dc463fa1735968e2909de3.setContent(html_cec3100e8951ac5eabc1ced99bc6309a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_504d015b9e08af662f16ee1fcb881f96.bindPopup(popup_f0e6a0f2c5dc463fa1735968e2909de3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4fbf4756f2db2b8dee1f9ed42f60f5d2 = L.circleMarker(\\n\",\n       \"                [44.3336, 84.8983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ccb99095a75e741428f6dd63b3c10af4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4fcf8633a0a1415a2a86f0f2f90dd3d = $(`&lt;div id=&quot;html_c4fcf8633a0a1415a2a86f0f2f90dd3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8983             latitude:44.3336             PM2_5:34.77683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ccb99095a75e741428f6dd63b3c10af4.setContent(html_c4fcf8633a0a1415a2a86f0f2f90dd3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4fbf4756f2db2b8dee1f9ed42f60f5d2.bindPopup(popup_ccb99095a75e741428f6dd63b3c10af4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_144f1beb8bd71bc2701fb6dcf27da91f = L.circleMarker(\\n\",\n       \"                [36.6739, 117.114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_785c96b02576348b9aab5d51add9dd0c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c220ca212db5ee2e8c38d994e8a99bf = $(`&lt;div id=&quot;html_3c220ca212db5ee2e8c38d994e8a99bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.114             latitude:36.6739             PM2_5:50.28088235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_785c96b02576348b9aab5d51add9dd0c.setContent(html_3c220ca212db5ee2e8c38d994e8a99bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_144f1beb8bd71bc2701fb6dcf27da91f.bindPopup(popup_785c96b02576348b9aab5d51add9dd0c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddd61fb39bbc5a6dd41d2b130639d8c3 = L.circleMarker(\\n\",\n       \"                [33.965, 118.283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05095f0f77499abf00ed0772ba9dba64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26e2747da1f38c6a4ca654dfaeb8cac0 = $(`&lt;div id=&quot;html_26e2747da1f38c6a4ca654dfaeb8cac0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.283             latitude:33.965             PM2_5:55.98459384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05095f0f77499abf00ed0772ba9dba64.setContent(html_26e2747da1f38c6a4ca654dfaeb8cac0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddd61fb39bbc5a6dd41d2b130639d8c3.bindPopup(popup_05095f0f77499abf00ed0772ba9dba64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49669d03a919de13cffcfd719938f5e8 = L.circleMarker(\\n\",\n       \"                [35.259, 113.1992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86468d219d2286c0bff9999760ca4d7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47130c209880cd6a405c7ec0f77bd60c = $(`&lt;div id=&quot;html_47130c209880cd6a405c7ec0f77bd60c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1992             latitude:35.259             PM2_5:66.3319209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86468d219d2286c0bff9999760ca4d7e.setContent(html_47130c209880cd6a405c7ec0f77bd60c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49669d03a919de13cffcfd719938f5e8.bindPopup(popup_86468d219d2286c0bff9999760ca4d7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94ad73ce6ca855035dbfd694d1d5fae8 = L.circleMarker(\\n\",\n       \"                [31.56, 120.294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_446e45e1f3020ee18b04ba6f131bfbb5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbd3e8158d25dc8f94cf3899404fc159 = $(`&lt;div id=&quot;html_dbd3e8158d25dc8f94cf3899404fc159&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.294             latitude:31.56             PM2_5:43.77966102             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_446e45e1f3020ee18b04ba6f131bfbb5.setContent(html_dbd3e8158d25dc8f94cf3899404fc159);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94ad73ce6ca855035dbfd694d1d5fae8.bindPopup(popup_446e45e1f3020ee18b04ba6f131bfbb5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2df1005363edeff507db5b543ef8823 = L.circleMarker(\\n\",\n       \"                [24.3702, 102.5389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_145b0798b62384c89d39e581db8624a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70c2e081231dc5f6641ac1c8c8f409f7 = $(`&lt;div id=&quot;html_70c2e081231dc5f6641ac1c8c8f409f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5389             latitude:24.3702             PM2_5:29.84240688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_145b0798b62384c89d39e581db8624a1.setContent(html_70c2e081231dc5f6641ac1c8c8f409f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2df1005363edeff507db5b543ef8823.bindPopup(popup_145b0798b62384c89d39e581db8624a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9623372eb94528c19ff1326ea7a6df9 = L.circleMarker(\\n\",\n       \"                [41.7089, 123.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9fb1a9d6d625b38b2e873941d41228b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54902abb74a4684fb5452a4c3026b705 = $(`&lt;div id=&quot;html_54902abb74a4684fb5452a4c3026b705&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.439             latitude:41.7089             PM2_5:36.12638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9fb1a9d6d625b38b2e873941d41228b0.setContent(html_54902abb74a4684fb5452a4c3026b705);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9623372eb94528c19ff1326ea7a6df9.bindPopup(popup_9fb1a9d6d625b38b2e873941d41228b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b24cdc804b8086ae2f1f066fe7a4520 = L.circleMarker(\\n\",\n       \"                [30.2819, 109.4689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_184bed58652297d8d8ac5c4dd50ff16b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b380cd1ea12c39ef29681fbd074160e9 = $(`&lt;div id=&quot;html_b380cd1ea12c39ef29681fbd074160e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4689             latitude:30.2819             PM2_5:41.53792135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_184bed58652297d8d8ac5c4dd50ff16b.setContent(html_b380cd1ea12c39ef29681fbd074160e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b24cdc804b8086ae2f1f066fe7a4520.bindPopup(popup_184bed58652297d8d8ac5c4dd50ff16b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a22982b3388eb17538fd9aef4f56b53f = L.circleMarker(\\n\",\n       \"                [28.5819, 112.3744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c23da87c48c50f0663ccf262e90ac4c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77ca1427264ffe3e62f3b7221a9b2cef = $(`&lt;div id=&quot;html_77ca1427264ffe3e62f3b7221a9b2cef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3744             latitude:28.5819             PM2_5:32.59357542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c23da87c48c50f0663ccf262e90ac4c3.setContent(html_77ca1427264ffe3e62f3b7221a9b2cef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a22982b3388eb17538fd9aef4f56b53f.bindPopup(popup_c23da87c48c50f0663ccf262e90ac4c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4939c3c780fa02c9a707c0d1ee91c86 = L.circleMarker(\\n\",\n       \"                [24.7121, 108.2134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd4d194d173952ab147bde7ed1ef67ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9cd2768372df64807771f59e5b21aac = $(`&lt;div id=&quot;html_c9cd2768372df64807771f59e5b21aac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.2134             latitude:24.7121             PM2_5:28.12883436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd4d194d173952ab147bde7ed1ef67ab.setContent(html_c9cd2768372df64807771f59e5b21aac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4939c3c780fa02c9a707c0d1ee91c86.bindPopup(popup_fd4d194d173952ab147bde7ed1ef67ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_347d37e695d0688f944a27006f5f4463 = L.circleMarker(\\n\",\n       \"                [43.768, 87.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b30b7689f94ae105fe24349806b29dc3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e8809c539adfcc8c762062dcb104417 = $(`&lt;div id=&quot;html_5e8809c539adfcc8c762062dcb104417&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6046             latitude:43.768             PM2_5:53.62608696             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b30b7689f94ae105fe24349806b29dc3.setContent(html_5e8809c539adfcc8c762062dcb104417);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_347d37e695d0688f944a27006f5f4463.bindPopup(popup_b30b7689f94ae105fe24349806b29dc3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_742ea113a604e56a573de235dc97cf36 = L.circleMarker(\\n\",\n       \"                [32.9444, 117.3575],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6dbe2e583e52704dea59a151b7bf991 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54b7686dfa99e9c0b7566c6e13418d65 = $(`&lt;div id=&quot;html_54b7686dfa99e9c0b7566c6e13418d65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3575             latitude:32.9444             PM2_5:63.05042017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6dbe2e583e52704dea59a151b7bf991.setContent(html_54b7686dfa99e9c0b7566c6e13418d65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_742ea113a604e56a573de235dc97cf36.bindPopup(popup_d6dbe2e583e52704dea59a151b7bf991)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34f71aba53a02874bcb9fee350bf4e5a = L.circleMarker(\\n\",\n       \"                [23.08, 114.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96d1d1f198b7b2c86376a242d56973aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a80c383119437510f272c52c5c3bc5c2 = $(`&lt;div id=&quot;html_a80c383119437510f272c52c5c3bc5c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4053             latitude:23.08             PM2_5:28.84733894             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96d1d1f198b7b2c86376a242d56973aa.setContent(html_a80c383119437510f272c52c5c3bc5c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34f71aba53a02874bcb9fee350bf4e5a.bindPopup(popup_96d1d1f198b7b2c86376a242d56973aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_572285e5cb8b9555cfb15f69afe576e9 = L.circleMarker(\\n\",\n       \"                [23.2783, 113.568],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_772214802dfd99d55a24ed19bb7dc9f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2648b1db9ad825a247e2f36161dda1b6 = $(`&lt;div id=&quot;html_2648b1db9ad825a247e2f36161dda1b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.568             latitude:23.2783             PM2_5:28.38128492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_772214802dfd99d55a24ed19bb7dc9f9.setContent(html_2648b1db9ad825a247e2f36161dda1b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_572285e5cb8b9555cfb15f69afe576e9.bindPopup(popup_772214802dfd99d55a24ed19bb7dc9f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f687514602542a91f6ea512fb7e13c13 = L.circleMarker(\\n\",\n       \"                [24.9624, 102.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96f68ac2e27ccf430ca07ed811a3c10a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae2fce65e06b9276d59e2a5eac8ee7cb = $(`&lt;div id=&quot;html_ae2fce65e06b9276d59e2a5eac8ee7cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.625             latitude:24.9624             PM2_5:26.83903134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96f68ac2e27ccf430ca07ed811a3c10a.setContent(html_ae2fce65e06b9276d59e2a5eac8ee7cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f687514602542a91f6ea512fb7e13c13.bindPopup(popup_96f68ac2e27ccf430ca07ed811a3c10a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bde20d98bd524fd13406ecba09f76a47 = L.circleMarker(\\n\",\n       \"                [32.6028, 116.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec7350942c04dedc028e6891ff1c5d10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13279659522732ecae5a2160ae99abf3 = $(`&lt;div id=&quot;html_13279659522732ecae5a2160ae99abf3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8556             latitude:32.6028             PM2_5:56.07520891             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec7350942c04dedc028e6891ff1c5d10.setContent(html_13279659522732ecae5a2160ae99abf3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bde20d98bd524fd13406ecba09f76a47.bindPopup(popup_ec7350942c04dedc028e6891ff1c5d10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1832f834315c23a3c83c9521e083163e = L.circleMarker(\\n\",\n       \"                [34.3708, 107.1586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db3d73eb169c5c23cc15db5d2b5a1f77 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7518eea74a619690cc0b6bb61bfbcbb = $(`&lt;div id=&quot;html_a7518eea74a619690cc0b6bb61bfbcbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1586             latitude:34.3708             PM2_5:43.64899713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db3d73eb169c5c23cc15db5d2b5a1f77.setContent(html_a7518eea74a619690cc0b6bb61bfbcbb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1832f834315c23a3c83c9521e083163e.bindPopup(popup_db3d73eb169c5c23cc15db5d2b5a1f77)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6514487f8798fb4aeb341434b4737762 = L.circleMarker(\\n\",\n       \"                [45.61, 126.615],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d73039913bb612807ed8016855888fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8478b3da3264da330c7976c784a42434 = $(`&lt;div id=&quot;html_8478b3da3264da330c7976c784a42434&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.615             latitude:45.61             PM2_5:34.97091413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d73039913bb612807ed8016855888fd.setContent(html_8478b3da3264da330c7976c784a42434);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6514487f8798fb4aeb341434b4737762.bindPopup(popup_4d73039913bb612807ed8016855888fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6006ec47ca4007d758c4ef2eb82dc25c = L.circleMarker(\\n\",\n       \"                [40.1194, 124.3678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_810ee478c27c78e7604ebb58c8f5d1ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0d97eee1d21606d82c17baa3ef20a31 = $(`&lt;div id=&quot;html_d0d97eee1d21606d82c17baa3ef20a31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3678             latitude:40.1194             PM2_5:22.3557423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_810ee478c27c78e7604ebb58c8f5d1ec.setContent(html_d0d97eee1d21606d82c17baa3ef20a31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6006ec47ca4007d758c4ef2eb82dc25c.bindPopup(popup_810ee478c27c78e7604ebb58c8f5d1ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_421753a0a24e1abe5bab9e3a1918569d = L.circleMarker(\\n\",\n       \"                [41.0228, 123.1289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d75c4c9f3f7fddc341938bb4b47952eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f25f415340f276d4574d3c785d5952a = $(`&lt;div id=&quot;html_5f25f415340f276d4574d3c785d5952a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1289             latitude:41.0228             PM2_5:27.61384615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d75c4c9f3f7fddc341938bb4b47952eb.setContent(html_5f25f415340f276d4574d3c785d5952a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_421753a0a24e1abe5bab9e3a1918569d.bindPopup(popup_d75c4c9f3f7fddc341938bb4b47952eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9345cc21b94f77cc27f8df15f55fc264 = L.circleMarker(\\n\",\n       \"                [31.238, 121.4],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_326e9a13d406b2848bc08c40d78b63fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ddd1d7330c781e0ece2e9fcca945fb1b = $(`&lt;div id=&quot;html_ddd1d7330c781e0ece2e9fcca945fb1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.4             latitude:31.238             PM2_5:40.8079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_326e9a13d406b2848bc08c40d78b63fb.setContent(html_ddd1d7330c781e0ece2e9fcca945fb1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9345cc21b94f77cc27f8df15f55fc264.bindPopup(popup_326e9a13d406b2848bc08c40d78b63fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7571664a6d96b6213015f3a0bcaeec9 = L.circleMarker(\\n\",\n       \"                [30.2456, 120.127],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4fc483e9479244d9cdc764057743f560 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ea9a89a58b01b28c502fae4bb75e275 = $(`&lt;div id=&quot;html_7ea9a89a58b01b28c502fae4bb75e275&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.127             latitude:30.2456             PM2_5:39.34916201             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4fc483e9479244d9cdc764057743f560.setContent(html_7ea9a89a58b01b28c502fae4bb75e275);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7571664a6d96b6213015f3a0bcaeec9.bindPopup(popup_4fc483e9479244d9cdc764057743f560)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_706374fd0aa3b7458ad2102e6d6c0d0a = L.circleMarker(\\n\",\n       \"                [38.5061, 102.1708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec38bf55eb7ded68133c5e48363e6c36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d07b3b6eb96962f8e987106b32cf4972 = $(`&lt;div id=&quot;html_d07b3b6eb96962f8e987106b32cf4972&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1708             latitude:38.5061             PM2_5:24.38687151             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec38bf55eb7ded68133c5e48363e6c36.setContent(html_d07b3b6eb96962f8e987106b32cf4972);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_706374fd0aa3b7458ad2102e6d6c0d0a.bindPopup(popup_ec38bf55eb7ded68133c5e48363e6c36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27826e7ee9fd2e999afa3a00febbf3f7 = L.circleMarker(\\n\",\n       \"                [36.7339, 119.0841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5266d4608e28af05985be43bad331b6b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43b73350fde1fc21136c3ff3f3efcc55 = $(`&lt;div id=&quot;html_43b73350fde1fc21136c3ff3f3efcc55&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0841             latitude:36.7339             PM2_5:55.09861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5266d4608e28af05985be43bad331b6b.setContent(html_43b73350fde1fc21136c3ff3f3efcc55);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27826e7ee9fd2e999afa3a00febbf3f7.bindPopup(popup_5266d4608e28af05985be43bad331b6b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_32b4c4d3734a96079554b5a00c04a1a4 = L.circleMarker(\\n\",\n       \"                [32.2786, 118.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13ea728c6dc0b3e6cf3e7468254f08fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1fbe66440c7e6e559234fc8918a292ac = $(`&lt;div id=&quot;html_1fbe66440c7e6e559234fc8918a292ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3244             latitude:32.2786             PM2_5:52.09888579             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13ea728c6dc0b3e6cf3e7468254f08fe.setContent(html_1fbe66440c7e6e559234fc8918a292ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_32b4c4d3734a96079554b5a00c04a1a4.bindPopup(popup_13ea728c6dc0b3e6cf3e7468254f08fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56cb1b7792635baa362318865aff1fd3 = L.circleMarker(\\n\",\n       \"                [33.8399, 115.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77e57679a34c830e4b3bc0cb583cb96a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74185c56f93fad793cb6adfabb1a227e = $(`&lt;div id=&quot;html_74185c56f93fad793cb6adfabb1a227e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8067             latitude:33.8399             PM2_5:53.26123596             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77e57679a34c830e4b3bc0cb583cb96a.setContent(html_74185c56f93fad793cb6adfabb1a227e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56cb1b7792635baa362318865aff1fd3.bindPopup(popup_77e57679a34c830e4b3bc0cb583cb96a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92a97d0d8bd6a6844da1373e2206abc4 = L.circleMarker(\\n\",\n       \"                [30.0475, 101.9603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84bf8de78b8bdbedcdfc485525e3bacc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1562a1bb6b8f5eeab16bb64769b8dec4 = $(`&lt;div id=&quot;html_1562a1bb6b8f5eeab16bb64769b8dec4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9603             latitude:30.0475             PM2_5:15.21648045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84bf8de78b8bdbedcdfc485525e3bacc.setContent(html_1562a1bb6b8f5eeab16bb64769b8dec4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92a97d0d8bd6a6844da1373e2206abc4.bindPopup(popup_84bf8de78b8bdbedcdfc485525e3bacc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3ef305a505c5a363a84f490745240ae = L.circleMarker(\\n\",\n       \"                [37.9097, 114.3541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f0995864f7068b45e0362b36e348140 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd075d523ba672bbd8d78528b225031f = $(`&lt;div id=&quot;html_bd075d523ba672bbd8d78528b225031f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3541             latitude:37.9097             PM2_5:52.41044776             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f0995864f7068b45e0362b36e348140.setContent(html_bd075d523ba672bbd8d78528b225031f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3ef305a505c5a363a84f490745240ae.bindPopup(popup_3f0995864f7068b45e0362b36e348140)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27469bedc0f38faddbadb1ea9324d413 = L.circleMarker(\\n\",\n       \"                [24.6967, 108.1009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7579772b0384de8e2015e27cadea8e5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d851896bfa2497ebf70e1cab5ee5e8f = $(`&lt;div id=&quot;html_8d851896bfa2497ebf70e1cab5ee5e8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.1009             latitude:24.6967             PM2_5:32.43905817             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7579772b0384de8e2015e27cadea8e5a.setContent(html_8d851896bfa2497ebf70e1cab5ee5e8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27469bedc0f38faddbadb1ea9324d413.bindPopup(popup_7579772b0384de8e2015e27cadea8e5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4826b0cb9e10a89ce282caf8f93298d8 = L.circleMarker(\\n\",\n       \"                [23.6706, 116.6447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_daf8ead9a06819e8a628d5d86e457b12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_474ae77870715499581578031766f444 = $(`&lt;div id=&quot;html_474ae77870715499581578031766f444&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6447             latitude:23.6706             PM2_5:26.14225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_daf8ead9a06819e8a628d5d86e457b12.setContent(html_474ae77870715499581578031766f444);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4826b0cb9e10a89ce282caf8f93298d8.bindPopup(popup_daf8ead9a06819e8a628d5d86e457b12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b6879b97f9706f0ae8f0bad3215caa2 = L.circleMarker(\\n\",\n       \"                [33.0323, 107.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_007c7c6a783a247e3142e0e7f47c82fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b09480a61209d5a6ca45a103f03927b4 = $(`&lt;div id=&quot;html_b09480a61209d5a6ca45a103f03927b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.007             latitude:33.0323             PM2_5:47.88611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_007c7c6a783a247e3142e0e7f47c82fc.setContent(html_b09480a61209d5a6ca45a103f03927b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b6879b97f9706f0ae8f0bad3215caa2.bindPopup(popup_007c7c6a783a247e3142e0e7f47c82fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b183f0d7be90af7e0de6d4c9b4c88b12 = L.circleMarker(\\n\",\n       \"                [25.442, 119.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7888da9b59d5bf4a4a303de0d05916d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fcf22d3ea331017924e53e3e5c9d21eb = $(`&lt;div id=&quot;html_fcf22d3ea331017924e53e3e5c9d21eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0156             latitude:25.442             PM2_5:28.97338936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7888da9b59d5bf4a4a303de0d05916d8.setContent(html_fcf22d3ea331017924e53e3e5c9d21eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b183f0d7be90af7e0de6d4c9b4c88b12.bindPopup(popup_7888da9b59d5bf4a4a303de0d05916d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf054f220f8c12caaedc6eb0c57b1d72 = L.circleMarker(\\n\",\n       \"                [38.5247, 102.1878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5cd2c9a9221ddbe9132b597977b72d91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_efa2f1f72e7f616a6ef9a4cbac7846f3 = $(`&lt;div id=&quot;html_efa2f1f72e7f616a6ef9a4cbac7846f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1878             latitude:38.5247             PM2_5:33.28028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5cd2c9a9221ddbe9132b597977b72d91.setContent(html_efa2f1f72e7f616a6ef9a4cbac7846f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf054f220f8c12caaedc6eb0c57b1d72.bindPopup(popup_5cd2c9a9221ddbe9132b597977b72d91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21fcfa5d633b5e7d019f8f5237e21439 = L.circleMarker(\\n\",\n       \"                [22.8561, 108.316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50d2f24813f4d4b7d15de9255c5ccbfa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_309d0c4ee7245999abb2118c1a28866d = $(`&lt;div id=&quot;html_309d0c4ee7245999abb2118c1a28866d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.316             latitude:22.8561             PM2_5:33.86731844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50d2f24813f4d4b7d15de9255c5ccbfa.setContent(html_309d0c4ee7245999abb2118c1a28866d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21fcfa5d633b5e7d019f8f5237e21439.bindPopup(popup_50d2f24813f4d4b7d15de9255c5ccbfa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2cb814cade30a61baaefaeadff0bd830 = L.circleMarker(\\n\",\n       \"                [31.656, 120.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55a04c694f2d5871f2edf4ca7c5e54e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_88b7473cecd1d315d86441f8fcf7f8ea = $(`&lt;div id=&quot;html_88b7473cecd1d315d86441f8fcf7f8ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.734             latitude:31.656             PM2_5:43.63128492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55a04c694f2d5871f2edf4ca7c5e54e2.setContent(html_88b7473cecd1d315d86441f8fcf7f8ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2cb814cade30a61baaefaeadff0bd830.bindPopup(popup_55a04c694f2d5871f2edf4ca7c5e54e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d930ce7bded73a0acc136bd05db7692b = L.circleMarker(\\n\",\n       \"                [29.36028, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d7ed2f3146403abe95ebaa20dc0113ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58a1f3cdac701b9376789de7b5f0634d = $(`&lt;div id=&quot;html_58a1f3cdac701b9376789de7b5f0634d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:29.36028             PM2_5:54.58543417             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d7ed2f3146403abe95ebaa20dc0113ce.setContent(html_58a1f3cdac701b9376789de7b5f0634d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d930ce7bded73a0acc136bd05db7692b.bindPopup(popup_d7ed2f3146403abe95ebaa20dc0113ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbc1f49fd7c7121d1685b5a0c4f866c0 = L.circleMarker(\\n\",\n       \"                [22.7833, 108.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dae7ab84d3145ce2e5b398fc1547b7c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_224ebd4d92a5ad96ed3505d3b6750959 = $(`&lt;div id=&quot;html_224ebd4d92a5ad96ed3505d3b6750959&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.244             latitude:22.7833             PM2_5:36.84195402             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dae7ab84d3145ce2e5b398fc1547b7c4.setContent(html_224ebd4d92a5ad96ed3505d3b6750959);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbc1f49fd7c7121d1685b5a0c4f866c0.bindPopup(popup_dae7ab84d3145ce2e5b398fc1547b7c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba9b40f4e66bed6bab0d4a2b2adfa83f = L.circleMarker(\\n\",\n       \"                [36.3083, 120.1964],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1cb1c07bdd1f219a2145db027a74f7d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56b0700776254d8038e6986733bf01d4 = $(`&lt;div id=&quot;html_56b0700776254d8038e6986733bf01d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1964             latitude:36.3083             PM2_5:41.015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1cb1c07bdd1f219a2145db027a74f7d5.setContent(html_56b0700776254d8038e6986733bf01d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba9b40f4e66bed6bab0d4a2b2adfa83f.bindPopup(popup_1cb1c07bdd1f219a2145db027a74f7d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_223333c3e86572b995e64738ea140cce = L.circleMarker(\\n\",\n       \"                [41.8828, 123.9169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ada526c7ec5f60353827466694cb803f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a4c57f32db69b9948ad3b7629aab80d = $(`&lt;div id=&quot;html_8a4c57f32db69b9948ad3b7629aab80d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9169             latitude:41.8828             PM2_5:34.99301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ada526c7ec5f60353827466694cb803f.setContent(html_8a4c57f32db69b9948ad3b7629aab80d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_223333c3e86572b995e64738ea140cce.bindPopup(popup_ada526c7ec5f60353827466694cb803f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13b881bbb7a23416c981d52d60d67107 = L.circleMarker(\\n\",\n       \"                [41.8472, 123.428],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52237a383028179edb300f43185ce2a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43dfc6f3dd9acd10326470e1fdcc0b3c = $(`&lt;div id=&quot;html_43dfc6f3dd9acd10326470e1fdcc0b3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.428             latitude:41.8472             PM2_5:31.03651685             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52237a383028179edb300f43185ce2a5.setContent(html_43dfc6f3dd9acd10326470e1fdcc0b3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13b881bbb7a23416c981d52d60d67107.bindPopup(popup_52237a383028179edb300f43185ce2a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7855cb5c9a7df4c38db7d2bb9cbf4e0b = L.circleMarker(\\n\",\n       \"                [27.8381, 113.143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71e95bfecdaf41209165d189f8020021 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad7370c9d8e6d6097ea47697a3ce7d50 = $(`&lt;div id=&quot;html_ad7370c9d8e6d6097ea47697a3ce7d50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.143             latitude:27.8381             PM2_5:41.82670455             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71e95bfecdaf41209165d189f8020021.setContent(html_ad7370c9d8e6d6097ea47697a3ce7d50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7855cb5c9a7df4c38db7d2bb9cbf4e0b.bindPopup(popup_71e95bfecdaf41209165d189f8020021)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bcbaf5fe35fea2e72319e3aae0a5a48 = L.circleMarker(\\n\",\n       \"                [43.8667, 125.417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eaa77fdc2f2018059a4c55d4a69157b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_293392bd0192ea008d513d90770e9fb1 = $(`&lt;div id=&quot;html_293392bd0192ea008d513d90770e9fb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.417             latitude:43.8667             PM2_5:34.31728045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eaa77fdc2f2018059a4c55d4a69157b3.setContent(html_293392bd0192ea008d513d90770e9fb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bcbaf5fe35fea2e72319e3aae0a5a48.bindPopup(popup_eaa77fdc2f2018059a4c55d4a69157b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4eb3a9bc1596b6da78fe4d33afb97ccd = L.circleMarker(\\n\",\n       \"                [45.7258, 126.646],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cae1215b1cd80ae24bb4f3feed13724f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b6b7c97dedc8e0cce0b3e5a7aadbe46 = $(`&lt;div id=&quot;html_5b6b7c97dedc8e0cce0b3e5a7aadbe46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.646             latitude:45.7258             PM2_5:37.67694805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cae1215b1cd80ae24bb4f3feed13724f.setContent(html_5b6b7c97dedc8e0cce0b3e5a7aadbe46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4eb3a9bc1596b6da78fe4d33afb97ccd.bindPopup(popup_cae1215b1cd80ae24bb4f3feed13724f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2e010455a0279a3cc604ca3dbb5aa5b = L.circleMarker(\\n\",\n       \"                [26.6272, 118.1756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18cac16d3666fab3f16b803f968d9695 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04f11514ea5195857ccb6902cf377983 = $(`&lt;div id=&quot;html_04f11514ea5195857ccb6902cf377983&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1756             latitude:26.6272             PM2_5:22.71927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18cac16d3666fab3f16b803f968d9695.setContent(html_04f11514ea5195857ccb6902cf377983);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2e010455a0279a3cc604ca3dbb5aa5b.bindPopup(popup_18cac16d3666fab3f16b803f968d9695)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ed7e2616f89a67c0b2b07748072af7a = L.circleMarker(\\n\",\n       \"                [27.9883, 116.3553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9dd1f32f03c0e559168d6dcd1002314b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8133b454946c0f2f34d9b54ae00007cb = $(`&lt;div id=&quot;html_8133b454946c0f2f34d9b54ae00007cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3553             latitude:27.9883             PM2_5:44.83333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9dd1f32f03c0e559168d6dcd1002314b.setContent(html_8133b454946c0f2f34d9b54ae00007cb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ed7e2616f89a67c0b2b07748072af7a.bindPopup(popup_9dd1f32f03c0e559168d6dcd1002314b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdc3799e27215d69bf35e41a82bca74c = L.circleMarker(\\n\",\n       \"                [39.9522, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_727cb71620316f0de996b5ab5c03128f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61e6c9ddfab3bc1c0d368cedafd57b05 = $(`&lt;div id=&quot;html_61e6c9ddfab3bc1c0d368cedafd57b05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.9522             PM2_5:54.89859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_727cb71620316f0de996b5ab5c03128f.setContent(html_61e6c9ddfab3bc1c0d368cedafd57b05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdc3799e27215d69bf35e41a82bca74c.bindPopup(popup_727cb71620316f0de996b5ab5c03128f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe9be1748a22438fd72cf2d4e5d88c35 = L.circleMarker(\\n\",\n       \"                [38.843, 105.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a4fb76c47ca489969a8b34f9381bd7b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5fd73c42ca00e82d4e86fef4e34625bf = $(`&lt;div id=&quot;html_5fd73c42ca00e82d4e86fef4e34625bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6975             latitude:38.843             PM2_5:33.15181058             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a4fb76c47ca489969a8b34f9381bd7b.setContent(html_5fd73c42ca00e82d4e86fef4e34625bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe9be1748a22438fd72cf2d4e5d88c35.bindPopup(popup_2a4fb76c47ca489969a8b34f9381bd7b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b465a21314f7fcaa9092235ebf0c1567 = L.circleMarker(\\n\",\n       \"                [22.8172, 114.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1dd3a9a6e8dd196029ff772354d26890 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8307f45820c1ec75c1c2f7c717c5dabc = $(`&lt;div id=&quot;html_8307f45820c1ec75c1c2f7c717c5dabc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3244             latitude:22.8172             PM2_5:24.58848315             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1dd3a9a6e8dd196029ff772354d26890.setContent(html_8307f45820c1ec75c1c2f7c717c5dabc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b465a21314f7fcaa9092235ebf0c1567.bindPopup(popup_1dd3a9a6e8dd196029ff772354d26890)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e7d44417b2bf4d306a7d4854460c35a = L.circleMarker(\\n\",\n       \"                [39.9419, 119.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d392ff05c6fd5850b9fc1ce473faba82 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9af023a4f5538f922da29e927018db6 = $(`&lt;div id=&quot;html_d9af023a4f5538f922da29e927018db6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5369             latitude:39.9419             PM2_5:36.63826816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d392ff05c6fd5850b9fc1ce473faba82.setContent(html_d9af023a4f5538f922da29e927018db6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e7d44417b2bf4d306a7d4854460c35a.bindPopup(popup_d392ff05c6fd5850b9fc1ce473faba82)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_540a7db934ce3ce692bcad5fdb6b2696 = L.circleMarker(\\n\",\n       \"                [24.4175, 111.5269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8964e5bda312b25df620ceb81ed636c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed91325bb85bca2510b6929858dd8b1a = $(`&lt;div id=&quot;html_ed91325bb85bca2510b6929858dd8b1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5269             latitude:24.4175             PM2_5:44.24504249             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8964e5bda312b25df620ceb81ed636c7.setContent(html_ed91325bb85bca2510b6929858dd8b1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_540a7db934ce3ce692bcad5fdb6b2696.bindPopup(popup_8964e5bda312b25df620ceb81ed636c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28c8b524f256cf3ae5ae4f5651096041 = L.circleMarker(\\n\",\n       \"                [29.7128, 118.3057],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c786fd35cee1ef06a19982d61ee0ec1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9b02ae35fe5c2a019d83d37a9d5e316 = $(`&lt;div id=&quot;html_a9b02ae35fe5c2a019d83d37a9d5e316&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3057             latitude:29.7128             PM2_5:26.5280112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c786fd35cee1ef06a19982d61ee0ec1.setContent(html_a9b02ae35fe5c2a019d83d37a9d5e316);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28c8b524f256cf3ae5ae4f5651096041.bindPopup(popup_5c786fd35cee1ef06a19982d61ee0ec1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce8554fcb7e4024afd997b840bb2bb07 = L.circleMarker(\\n\",\n       \"                [26.57098, 101.68912],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_989ee82542999d68d360d8bf5ea305a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2954a6dab6a58ff9229719b301a7ff95 = $(`&lt;div id=&quot;html_2954a6dab6a58ff9229719b301a7ff95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.68912             latitude:26.57098             PM2_5:34.35014006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_989ee82542999d68d360d8bf5ea305a9.setContent(html_2954a6dab6a58ff9229719b301a7ff95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce8554fcb7e4024afd997b840bb2bb07.bindPopup(popup_989ee82542999d68d360d8bf5ea305a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f8cecedb8d310f1d8cc5959cb9800dc = L.circleMarker(\\n\",\n       \"                [36.087, 114.358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_071341dbfea869577d167f400758ab89 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5768085457ee51447034876a83bc3d4b = $(`&lt;div id=&quot;html_5768085457ee51447034876a83bc3d4b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.358             latitude:36.087             PM2_5:68.93837535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_071341dbfea869577d167f400758ab89.setContent(html_5768085457ee51447034876a83bc3d4b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f8cecedb8d310f1d8cc5959cb9800dc.bindPopup(popup_071341dbfea869577d167f400758ab89)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f97cad8946f5d78594f84bdc098efa58 = L.circleMarker(\\n\",\n       \"                [39.3673, 112.4279],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b93e3ccd4f83da01d55965bac46d7b1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1062d47654719ae71b724c411c2cc49 = $(`&lt;div id=&quot;html_f1062d47654719ae71b724c411c2cc49&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4279             latitude:39.3673             PM2_5:35.7987988             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b93e3ccd4f83da01d55965bac46d7b1b.setContent(html_f1062d47654719ae71b724c411c2cc49);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f97cad8946f5d78594f84bdc098efa58.bindPopup(popup_b93e3ccd4f83da01d55965bac46d7b1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_157b0ffc28813c4cba7d087d22377117 = L.circleMarker(\\n\",\n       \"                [37.4658, 118.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc057c3a4e48e33fac6b1fddb5ef157b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_464d0426861b4771359252682e65eb96 = $(`&lt;div id=&quot;html_464d0426861b4771359252682e65eb96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5019             latitude:37.4658             PM2_5:50.71587744             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc057c3a4e48e33fac6b1fddb5ef157b.setContent(html_464d0426861b4771359252682e65eb96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_157b0ffc28813c4cba7d087d22377117.bindPopup(popup_dc057c3a4e48e33fac6b1fddb5ef157b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aadb9a59500d97f7a6b30a73c3bac744 = L.circleMarker(\\n\",\n       \"                [23.7233, 114.6892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87ff2956ed5c4bac8217bc2087dfa286 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0b92cbb7d1593922584d80ab66d9844 = $(`&lt;div id=&quot;html_b0b92cbb7d1593922584d80ab66d9844&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6892             latitude:23.7233             PM2_5:26.02240896             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87ff2956ed5c4bac8217bc2087dfa286.setContent(html_b0b92cbb7d1593922584d80ab66d9844);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aadb9a59500d97f7a6b30a73c3bac744.bindPopup(popup_87ff2956ed5c4bac8217bc2087dfa286)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ec106b1605184904acad923fa3cb559 = L.circleMarker(\\n\",\n       \"                [28.4569, 118.0058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad8f4c03d45e79501eb539a1ec9161b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9112a157d9c1cdf4292180931bd7ec3f = $(`&lt;div id=&quot;html_9112a157d9c1cdf4292180931bd7ec3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0058             latitude:28.4569             PM2_5:36.31908832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad8f4c03d45e79501eb539a1ec9161b0.setContent(html_9112a157d9c1cdf4292180931bd7ec3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ec106b1605184904acad923fa3cb559.bindPopup(popup_ad8f4c03d45e79501eb539a1ec9161b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0edc4b27e010b52d0e8b6e5f0e4c9b9d = L.circleMarker(\\n\",\n       \"                [30.2099, 115.0264],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_178fad33704a6855844dcab9049b2bf6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7def959d19926e1fcd9ed49d7669bcd = $(`&lt;div id=&quot;html_b7def959d19926e1fcd9ed49d7669bcd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0264             latitude:30.2099             PM2_5:54.80532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_178fad33704a6855844dcab9049b2bf6.setContent(html_b7def959d19926e1fcd9ed49d7669bcd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0edc4b27e010b52d0e8b6e5f0e4c9b9d.bindPopup(popup_178fad33704a6855844dcab9049b2bf6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9358551f0da941c185d43fca4fdc4b6b = L.circleMarker(\\n\",\n       \"                [33.737, 113.182],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e43198b66bfffd3e987a5d11889cc368 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78967ece0304d98ebbfe4835a010be9f = $(`&lt;div id=&quot;html_78967ece0304d98ebbfe4835a010be9f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.182             latitude:33.737             PM2_5:60.34225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e43198b66bfffd3e987a5d11889cc368.setContent(html_78967ece0304d98ebbfe4835a010be9f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9358551f0da941c185d43fca4fdc4b6b.bindPopup(popup_e43198b66bfffd3e987a5d11889cc368)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba67d3523904c4892e99966b7c4ba5d5 = L.circleMarker(\\n\",\n       \"                [22.735, 108.328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c33a106dfe8449b2cf723a39b00c439c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afa98554667acb7487e06edee3b2b259 = $(`&lt;div id=&quot;html_afa98554667acb7487e06edee3b2b259&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.328             latitude:22.735             PM2_5:34.70655271             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c33a106dfe8449b2cf723a39b00c439c.setContent(html_afa98554667acb7487e06edee3b2b259);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba67d3523904c4892e99966b7c4ba5d5.bindPopup(popup_c33a106dfe8449b2cf723a39b00c439c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_949df7e9cce9b3ba73363e968bf36db4 = L.circleMarker(\\n\",\n       \"                [35.0147, 110.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73dd28a8544c483b9d681797107f09bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed73a9c011d2a922cdbd33d658da4aaa = $(`&lt;div id=&quot;html_ed73a9c011d2a922cdbd33d658da4aaa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9956             latitude:35.0147             PM2_5:73.66899441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73dd28a8544c483b9d681797107f09bd.setContent(html_ed73a9c011d2a922cdbd33d658da4aaa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_949df7e9cce9b3ba73363e968bf36db4.bindPopup(popup_73dd28a8544c483b9d681797107f09bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1d3445fc7114d177d4e2a8983f37557 = L.circleMarker(\\n\",\n       \"                [38.9194, 117.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_748b603a7e9ea803e52b3af0aa2ddc2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47a598f74c1e905e5a3775cad97a13b5 = $(`&lt;div id=&quot;html_47a598f74c1e905e5a3775cad97a13b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.157             latitude:38.9194             PM2_5:57.08866279             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_748b603a7e9ea803e52b3af0aa2ddc2c.setContent(html_47a598f74c1e905e5a3775cad97a13b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1d3445fc7114d177d4e2a8983f37557.bindPopup(popup_748b603a7e9ea803e52b3af0aa2ddc2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bce9b8d50b667f235c24e1019938a2f6 = L.circleMarker(\\n\",\n       \"                [27.8036, 114.3442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff2ae0288e2669e73534de8d1a8254b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ce81965debc5ae47d018143ccf93c61 = $(`&lt;div id=&quot;html_0ce81965debc5ae47d018143ccf93c61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3442             latitude:27.8036             PM2_5:49.8198324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff2ae0288e2669e73534de8d1a8254b0.setContent(html_0ce81965debc5ae47d018143ccf93c61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bce9b8d50b667f235c24e1019938a2f6.bindPopup(popup_ff2ae0288e2669e73534de8d1a8254b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98dab6b581e8cdbdb449687483229fe3 = L.circleMarker(\\n\",\n       \"                [23.8982, 100.0782],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_052a1fa014229243ddc307a813bedc39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f1995b3bf7c51c541033dca0f235237 = $(`&lt;div id=&quot;html_6f1995b3bf7c51c541033dca0f235237&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0782             latitude:23.8982             PM2_5:26.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_052a1fa014229243ddc307a813bedc39.setContent(html_6f1995b3bf7c51c541033dca0f235237);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98dab6b581e8cdbdb449687483229fe3.bindPopup(popup_052a1fa014229243ddc307a813bedc39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6419aef432a7f96817c6f8a1283e569a = L.circleMarker(\\n\",\n       \"                [30.8244, 120.07],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6abe4cc7f7a5c3f2d0bd9c3f0c681b8a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c8aed2a2132de027cefb39ecb5445be = $(`&lt;div id=&quot;html_2c8aed2a2132de027cefb39ecb5445be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.07             latitude:30.8244             PM2_5:38.02668539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6abe4cc7f7a5c3f2d0bd9c3f0c681b8a.setContent(html_2c8aed2a2132de027cefb39ecb5445be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6419aef432a7f96817c6f8a1283e569a.bindPopup(popup_6abe4cc7f7a5c3f2d0bd9c3f0c681b8a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a455d57ce5c8a0d4e64552b37506a04b = L.circleMarker(\\n\",\n       \"                [22.2294, 113.495],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9422f742fc0fe744992dbb051c8410a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_814ae884f209505fa5537e2f6d85f2c9 = $(`&lt;div id=&quot;html_814ae884f209505fa5537e2f6d85f2c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.495             latitude:22.2294             PM2_5:28.53813559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9422f742fc0fe744992dbb051c8410a4.setContent(html_814ae884f209505fa5537e2f6d85f2c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a455d57ce5c8a0d4e64552b37506a04b.bindPopup(popup_9422f742fc0fe744992dbb051c8410a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e16b89196a10d50e19acca384b61451c = L.circleMarker(\\n\",\n       \"                [22.4137, 107.3476],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10f8722588f6c94cc12a0b1e431bbc1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6bf8d06a88a748d77e041a6a6620a984 = $(`&lt;div id=&quot;html_6bf8d06a88a748d77e041a6a6620a984&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3476             latitude:22.4137             PM2_5:28.27130682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10f8722588f6c94cc12a0b1e431bbc1d.setContent(html_6bf8d06a88a748d77e041a6a6620a984);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e16b89196a10d50e19acca384b61451c.bindPopup(popup_10f8722588f6c94cc12a0b1e431bbc1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3554693b36ee9f5f2ec9d1ec46fd8a7 = L.circleMarker(\\n\",\n       \"                [36.1942, 117.1436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a14daf54a420952d8489c3558f13fd37 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70dfbb6e4c98a1e10eae444368eec2c7 = $(`&lt;div id=&quot;html_70dfbb6e4c98a1e10eae444368eec2c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1436             latitude:36.1942             PM2_5:50.27793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a14daf54a420952d8489c3558f13fd37.setContent(html_70dfbb6e4c98a1e10eae444368eec2c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3554693b36ee9f5f2ec9d1ec46fd8a7.bindPopup(popup_a14daf54a420952d8489c3558f13fd37)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_928395d0c662daa841681020463249e6 = L.circleMarker(\\n\",\n       \"                [30.7946, 120.744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9543339bfb44b56f480cc70669b9a3c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a999cb1ec4557fe571b9f5cd3dbaa9b = $(`&lt;div id=&quot;html_5a999cb1ec4557fe571b9f5cd3dbaa9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.744             latitude:30.7946             PM2_5:41.25             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9543339bfb44b56f480cc70669b9a3c0.setContent(html_5a999cb1ec4557fe571b9f5cd3dbaa9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_928395d0c662daa841681020463249e6.bindPopup(popup_9543339bfb44b56f480cc70669b9a3c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8ff91b5741b45b61ac1701b7ef8e120 = L.circleMarker(\\n\",\n       \"                [38.2839, 109.7289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed390ad981d1f73fb844b849c1c6f8fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_990ed3591a39e321512683506b643a03 = $(`&lt;div id=&quot;html_990ed3591a39e321512683506b643a03&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7289             latitude:38.2839             PM2_5:30.51983003             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed390ad981d1f73fb844b849c1c6f8fb.setContent(html_990ed3591a39e321512683506b643a03);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8ff91b5741b45b61ac1701b7ef8e120.bindPopup(popup_ed390ad981d1f73fb844b849c1c6f8fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39f09924a696cabe9d1f8f0e0a8a13b8 = L.circleMarker(\\n\",\n       \"                [29.5953, 105.0331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b7eaafadfcc8cb114e1e2f219069949 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1a72a3ed347dc74f1130e6863f96c16 = $(`&lt;div id=&quot;html_b1a72a3ed347dc74f1130e6863f96c16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0331             latitude:29.5953             PM2_5:34.3258427             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b7eaafadfcc8cb114e1e2f219069949.setContent(html_b1a72a3ed347dc74f1130e6863f96c16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39f09924a696cabe9d1f8f0e0a8a13b8.bindPopup(popup_2b7eaafadfcc8cb114e1e2f219069949)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d518614a30bd191157e15cb2aa717637 = L.circleMarker(\\n\",\n       \"                [32.9673, 117.3536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a15d1e984eb6a1fb93a3c84b17234f16 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3bdefb08a87b742213ca1e81cbb1c0fd = $(`&lt;div id=&quot;html_3bdefb08a87b742213ca1e81cbb1c0fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3536             latitude:32.9673             PM2_5:49.43333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a15d1e984eb6a1fb93a3c84b17234f16.setContent(html_3bdefb08a87b742213ca1e81cbb1c0fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d518614a30bd191157e15cb2aa717637.bindPopup(popup_a15d1e984eb6a1fb93a3c84b17234f16)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71b3e095023622495dd26f2fe0b7d92f = L.circleMarker(\\n\",\n       \"                [27.9164, 112.4876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9d43ebaabb551d55430c5effa98262f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_759afd827ea67b2ffe74aaf2819a3bbf = $(`&lt;div id=&quot;html_759afd827ea67b2ffe74aaf2819a3bbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4876             latitude:27.9164             PM2_5:41.67039106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9d43ebaabb551d55430c5effa98262f.setContent(html_759afd827ea67b2ffe74aaf2819a3bbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71b3e095023622495dd26f2fe0b7d92f.bindPopup(popup_f9d43ebaabb551d55430c5effa98262f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6220e63746659fb993bf628565b5b24b = L.circleMarker(\\n\",\n       \"                [29.9972, 101.9533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b414debcfc234b2e1d602a42d7a0a0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_630ced0758593aa86fd8eaf651e8fea3 = $(`&lt;div id=&quot;html_630ced0758593aa86fd8eaf651e8fea3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9533             latitude:29.9972             PM2_5:18.25892857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b414debcfc234b2e1d602a42d7a0a0a.setContent(html_630ced0758593aa86fd8eaf651e8fea3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6220e63746659fb993bf628565b5b24b.bindPopup(popup_6b414debcfc234b2e1d602a42d7a0a0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_271d447e6a945baeded4072eafa064e9 = L.circleMarker(\\n\",\n       \"                [30.1506, 104.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31a45bf79be30d9f23b6984078dba938 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67dc3ba4b711fe04d806c45010ee19ab = $(`&lt;div id=&quot;html_67dc3ba4b711fe04d806c45010ee19ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6356             latitude:30.1506             PM2_5:37.29501385             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31a45bf79be30d9f23b6984078dba938.setContent(html_67dc3ba4b711fe04d806c45010ee19ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_271d447e6a945baeded4072eafa064e9.bindPopup(popup_31a45bf79be30d9f23b6984078dba938)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84fe8ac94eb73ba3b48f2abe311ac329 = L.circleMarker(\\n\",\n       \"                [43.84, 125.2786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13e43c226c3340abd14e5d0e09cdd686 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c962c757224a83457eb59c6d58169ad0 = $(`&lt;div id=&quot;html_c962c757224a83457eb59c6d58169ad0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.2786             latitude:43.84             PM2_5:32.66760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13e43c226c3340abd14e5d0e09cdd686.setContent(html_c962c757224a83457eb59c6d58169ad0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84fe8ac94eb73ba3b48f2abe311ac329.bindPopup(popup_13e43c226c3340abd14e5d0e09cdd686)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e10c8fc53a4184bf5ff74d1236d383fc = L.circleMarker(\\n\",\n       \"                [36.1542, 113.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2b01e3734ae2644327bf97b594fcae4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e5cb77f2e3e4dc7f58a7664c544821c = $(`&lt;div id=&quot;html_4e5cb77f2e3e4dc7f58a7664c544821c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1097             latitude:36.1542             PM2_5:67.22486034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2b01e3734ae2644327bf97b594fcae4.setContent(html_4e5cb77f2e3e4dc7f58a7664c544821c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e10c8fc53a4184bf5ff74d1236d383fc.bindPopup(popup_c2b01e3734ae2644327bf97b594fcae4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e7114d638b837c5b5bc58dbee65fbea = L.circleMarker(\\n\",\n       \"                [32.4535, 105.8945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b254175c8dc78e121bf9f6c33a5c4cd3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1ca09dc823e8339b2dd2240aca465de = $(`&lt;div id=&quot;html_c1ca09dc823e8339b2dd2240aca465de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8945             latitude:32.4535             PM2_5:21.4622905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b254175c8dc78e121bf9f6c33a5c4cd3.setContent(html_c1ca09dc823e8339b2dd2240aca465de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e7114d638b837c5b5bc58dbee65fbea.bindPopup(popup_b254175c8dc78e121bf9f6c33a5c4cd3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe9984b42be799a49c60f28c6b8eaa77 = L.circleMarker(\\n\",\n       \"                [24.8978, 118.5972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52ddde852a0179bb9cec0bedd8b13062 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_838903a49b1cd71f3ab1a283578d8d63 = $(`&lt;div id=&quot;html_838903a49b1cd71f3ab1a283578d8d63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5972             latitude:24.8978             PM2_5:26.7605042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52ddde852a0179bb9cec0bedd8b13062.setContent(html_838903a49b1cd71f3ab1a283578d8d63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe9984b42be799a49c60f28c6b8eaa77.bindPopup(popup_52ddde852a0179bb9cec0bedd8b13062)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dc5acfbbbec8a60f11c746c133ee64d = L.circleMarker(\\n\",\n       \"                [29.6219, 106.65],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_64b57c6e03603ef2675de1f86e3e989e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e80398a1099d720412249d43c2040ef8 = $(`&lt;div id=&quot;html_e80398a1099d720412249d43c2040ef8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.65             latitude:29.6219             PM2_5:29.91086351             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_64b57c6e03603ef2675de1f86e3e989e.setContent(html_e80398a1099d720412249d43c2040ef8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dc5acfbbbec8a60f11c746c133ee64d.bindPopup(popup_64b57c6e03603ef2675de1f86e3e989e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7812f64a114bfb7ebef22a068e669394 = L.circleMarker(\\n\",\n       \"                [41.1636, 80.2828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_172b1fcfa3270868f714052644da6550 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b4b7cdfe393c2c593908ebf839762f7 = $(`&lt;div id=&quot;html_6b4b7cdfe393c2c593908ebf839762f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2828             latitude:41.1636             PM2_5:69.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_172b1fcfa3270868f714052644da6550.setContent(html_6b4b7cdfe393c2c593908ebf839762f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7812f64a114bfb7ebef22a068e669394.bindPopup(popup_172b1fcfa3270868f714052644da6550)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45f3320675fa992c97007b2ae4c2c345 = L.circleMarker(\\n\",\n       \"                [34.3617, 108.7233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b558ca0b12154c75eeb0e97e87f0c8c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f511044913ad39470f3bac001ad84799 = $(`&lt;div id=&quot;html_f511044913ad39470f3bac001ad84799&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7233             latitude:34.3617             PM2_5:67.50702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b558ca0b12154c75eeb0e97e87f0c8c4.setContent(html_f511044913ad39470f3bac001ad84799);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45f3320675fa992c97007b2ae4c2c345.bindPopup(popup_b558ca0b12154c75eeb0e97e87f0c8c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74923313d6168ed376ffe4403ee3b5c0 = L.circleMarker(\\n\",\n       \"                [41.9086, 123.5953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_076799b158cb8b6efe236803f1eab024 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc7e1006495c18fc27fb08bbb1c05627 = $(`&lt;div id=&quot;html_bc7e1006495c18fc27fb08bbb1c05627&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.5953             latitude:41.9086             PM2_5:30.00423729             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_076799b158cb8b6efe236803f1eab024.setContent(html_bc7e1006495c18fc27fb08bbb1c05627);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74923313d6168ed376ffe4403ee3b5c0.bindPopup(popup_076799b158cb8b6efe236803f1eab024)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7e1390d79245bc7244986a0e03c975a = L.circleMarker(\\n\",\n       \"                [29.2786, 117.1983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ee9615382ce1b81b16fce66581f5ad9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8759dbaa1938fb91126a215c44bc242 = $(`&lt;div id=&quot;html_e8759dbaa1938fb91126a215c44bc242&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1983             latitude:29.2786             PM2_5:31.27871148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ee9615382ce1b81b16fce66581f5ad9.setContent(html_e8759dbaa1938fb91126a215c44bc242);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7e1390d79245bc7244986a0e03c975a.bindPopup(popup_3ee9615382ce1b81b16fce66581f5ad9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00887a33c65d1cadf548be2da6d7ae32 = L.circleMarker(\\n\",\n       \"                [25.3167, 110.4144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2499ab290e6620dc79fbc4f60bd1afff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60468c8f223f88d17ce315162a0509d2 = $(`&lt;div id=&quot;html_60468c8f223f88d17ce315162a0509d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4144             latitude:25.3167             PM2_5:33.86694678             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2499ab290e6620dc79fbc4f60bd1afff.setContent(html_60468c8f223f88d17ce315162a0509d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00887a33c65d1cadf548be2da6d7ae32.bindPopup(popup_2499ab290e6620dc79fbc4f60bd1afff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb72713215adbd453525d593bcc6f3bd = L.circleMarker(\\n\",\n       \"                [40.8115, 114.8814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23e7dbce5f2774e6d49be601f235796d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2859e9ea8193d1eb5027124a973be449 = $(`&lt;div id=&quot;html_2859e9ea8193d1eb5027124a973be449&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8814             latitude:40.8115             PM2_5:30.67267267             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23e7dbce5f2774e6d49be601f235796d.setContent(html_2859e9ea8193d1eb5027124a973be449);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb72713215adbd453525d593bcc6f3bd.bindPopup(popup_23e7dbce5f2774e6d49be601f235796d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c77f7417d8bfdaf6c58e627abf3dfa2 = L.circleMarker(\\n\",\n       \"                [33.3261, 105.0822],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_344f5d4a921214618fa117c93ea3333d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e54c525eb83d4f5c03c2b6cd5c6d4134 = $(`&lt;div id=&quot;html_e54c525eb83d4f5c03c2b6cd5c6d4134&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0822             latitude:33.3261             PM2_5:20.0625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_344f5d4a921214618fa117c93ea3333d.setContent(html_e54c525eb83d4f5c03c2b6cd5c6d4134);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c77f7417d8bfdaf6c58e627abf3dfa2.bindPopup(popup_344f5d4a921214618fa117c93ea3333d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9bffa87d04a5eed5868d8df2fef5bb21 = L.circleMarker(\\n\",\n       \"                [31.2472, 120.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86f9d45f06f36f8ee96937f1f06c1bce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_830424dc3d79d77891fc1b10ed9e723b = $(`&lt;div id=&quot;html_830424dc3d79d77891fc1b10ed9e723b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.561             latitude:31.2472             PM2_5:40.37883008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86f9d45f06f36f8ee96937f1f06c1bce.setContent(html_830424dc3d79d77891fc1b10ed9e723b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9bffa87d04a5eed5868d8df2fef5bb21.bindPopup(popup_86f9d45f06f36f8ee96937f1f06c1bce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fdca6cbb1cb66115a1dc47f5932e569d = L.circleMarker(\\n\",\n       \"                [41.1442, 123.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10ac86d3e5f1eedcc0fc55422c33e209 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd53f318065e2b8a1a096ea2a92e09c9 = $(`&lt;div id=&quot;html_cd53f318065e2b8a1a096ea2a92e09c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0485             latitude:41.1442             PM2_5:33.3189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10ac86d3e5f1eedcc0fc55422c33e209.setContent(html_cd53f318065e2b8a1a096ea2a92e09c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fdca6cbb1cb66115a1dc47f5932e569d.bindPopup(popup_10ac86d3e5f1eedcc0fc55422c33e209)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2dbaa4b1e8720c476572633ff22ded4 = L.circleMarker(\\n\",\n       \"                [33.1842, 106.9893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9bcdcca30f5662efd7ef2a5c2975a6c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be237089098f8a8f507f218feccf5142 = $(`&lt;div id=&quot;html_be237089098f8a8f507f218feccf5142&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9893             latitude:33.1842             PM2_5:41.890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9bcdcca30f5662efd7ef2a5c2975a6c5.setContent(html_be237089098f8a8f507f218feccf5142);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2dbaa4b1e8720c476572633ff22ded4.bindPopup(popup_9bcdcca30f5662efd7ef2a5c2975a6c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c4a701d525940a15cce7a43a49708c5 = L.circleMarker(\\n\",\n       \"                [26.8919, 112.6006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c620a2d09709ffe23f7685fb17d31f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e9824776b4c81e5229d85a6121d770d = $(`&lt;div id=&quot;html_1e9824776b4c81e5229d85a6121d770d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6006             latitude:26.8919             PM2_5:42.72299169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c620a2d09709ffe23f7685fb17d31f2.setContent(html_1e9824776b4c81e5229d85a6121d770d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c4a701d525940a15cce7a43a49708c5.bindPopup(popup_9c620a2d09709ffe23f7685fb17d31f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_55aeee85eb91cca6be73b5835d49a207 = L.circleMarker(\\n\",\n       \"                [39.643, 118.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ea826708988072523e2811f015f8370 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc81cff793f0c6e9068160991f61821a = $(`&lt;div id=&quot;html_cc81cff793f0c6e9068160991f61821a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.144             latitude:39.643             PM2_5:45.89027778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ea826708988072523e2811f015f8370.setContent(html_cc81cff793f0c6e9068160991f61821a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_55aeee85eb91cca6be73b5835d49a207.bindPopup(popup_3ea826708988072523e2811f015f8370)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61cce291c0714b12235694f057c2ef31 = L.circleMarker(\\n\",\n       \"                [31.2703, 120.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_edf4b25c13fc1658c284293d43f420e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4347fe31560b35ab4c29a44f6080bf18 = $(`&lt;div id=&quot;html_4347fe31560b35ab4c29a44f6080bf18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.613             latitude:31.2703             PM2_5:39.79469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_edf4b25c13fc1658c284293d43f420e9.setContent(html_4347fe31560b35ab4c29a44f6080bf18);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61cce291c0714b12235694f057c2ef31.bindPopup(popup_edf4b25c13fc1658c284293d43f420e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_034745f8b872d5ee343cd08955db1df3 = L.circleMarker(\\n\",\n       \"                [36.6377, 117.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa5d63c691a83f50fae8fe04adee2bd8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84b3b2cd473c952535927137f0c4c9eb = $(`&lt;div id=&quot;html_84b3b2cd473c952535927137f0c4c9eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9544             latitude:36.6377             PM2_5:50.94507042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa5d63c691a83f50fae8fe04adee2bd8.setContent(html_84b3b2cd473c952535927137f0c4c9eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_034745f8b872d5ee343cd08955db1df3.bindPopup(popup_fa5d63c691a83f50fae8fe04adee2bd8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88d9166d25d193824b684c46ee71c579 = L.circleMarker(\\n\",\n       \"                [30.4551, 106.6388],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35bbc8f43486994f3fdeb4f3de61466f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cfde30e525958cf4178da1f8750b7d2 = $(`&lt;div id=&quot;html_8cfde30e525958cf4178da1f8750b7d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6388             latitude:30.4551             PM2_5:30.78888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35bbc8f43486994f3fdeb4f3de61466f.setContent(html_8cfde30e525958cf4178da1f8750b7d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88d9166d25d193824b684c46ee71c579.bindPopup(popup_35bbc8f43486994f3fdeb4f3de61466f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73db0956742e21d2168a85254261283b = L.circleMarker(\\n\",\n       \"                [31.8934, 102.2402],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a47a9e44a8bf40f53bf5502d879559ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1e9b0a3e34a052b0f8c41b061f3cfcf = $(`&lt;div id=&quot;html_a1e9b0a3e34a052b0f8c41b061f3cfcf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2402             latitude:31.8934             PM2_5:3.856338028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a47a9e44a8bf40f53bf5502d879559ea.setContent(html_a1e9b0a3e34a052b0f8c41b061f3cfcf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73db0956742e21d2168a85254261283b.bindPopup(popup_a47a9e44a8bf40f53bf5502d879559ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09314f52a7467ece67b1d53a3894cce6 = L.circleMarker(\\n\",\n       \"                [38.8394, 117.457],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8ed0c36e6f4b7f06a01c3401b268489 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_543552a7cf570aec23a32949fb54aa3e = $(`&lt;div id=&quot;html_543552a7cf570aec23a32949fb54aa3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.457             latitude:38.8394             PM2_5:48.95238095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8ed0c36e6f4b7f06a01c3401b268489.setContent(html_543552a7cf570aec23a32949fb54aa3e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09314f52a7467ece67b1d53a3894cce6.bindPopup(popup_e8ed0c36e6f4b7f06a01c3401b268489)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7fd81039e5d687786c845c26be22eb98 = L.circleMarker(\\n\",\n       \"                [32.0144, 118.777],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0631e332a0a39971b87bded969f0f5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d42e3db1f3e2e28d898b9fde547ec25d = $(`&lt;div id=&quot;html_d42e3db1f3e2e28d898b9fde547ec25d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.777             latitude:32.0144             PM2_5:39.8255814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0631e332a0a39971b87bded969f0f5a.setContent(html_d42e3db1f3e2e28d898b9fde547ec25d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7fd81039e5d687786c845c26be22eb98.bindPopup(popup_c0631e332a0a39971b87bded969f0f5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06a8b4ed5f84b182ddfdca4a3cccc880 = L.circleMarker(\\n\",\n       \"                [27.8336, 113.251],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_052f2a2650ed251769ac1b8c0dfc5d9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c908d19aac979f967fac7971698e767 = $(`&lt;div id=&quot;html_3c908d19aac979f967fac7971698e767&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.251             latitude:27.8336             PM2_5:33.70142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_052f2a2650ed251769ac1b8c0dfc5d9f.setContent(html_3c908d19aac979f967fac7971698e767);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06a8b4ed5f84b182ddfdca4a3cccc880.bindPopup(popup_052f2a2650ed251769ac1b8c0dfc5d9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b5e07c6b731a01cbfadc313db565b74b = L.circleMarker(\\n\",\n       \"                [22.8693, 112.844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f79c1e170f34c3f8fd94e0a75f3f060 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd8b5667244717a77b28e434a75d16e0 = $(`&lt;div id=&quot;html_cd8b5667244717a77b28e434a75d16e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.844             latitude:22.8693             PM2_5:39.67787115             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f79c1e170f34c3f8fd94e0a75f3f060.setContent(html_cd8b5667244717a77b28e434a75d16e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b5e07c6b731a01cbfadc313db565b74b.bindPopup(popup_0f79c1e170f34c3f8fd94e0a75f3f060)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0460d4711ecab765884d85f380edaa9b = L.circleMarker(\\n\",\n       \"                [26.5697, 106.7164],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_859dd8212b2704f0f6851e99f393a3fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d800c73373d3bf08daa5c40c928adc8 = $(`&lt;div id=&quot;html_1d800c73373d3bf08daa5c40c928adc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7164             latitude:26.5697             PM2_5:32.42655367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_859dd8212b2704f0f6851e99f393a3fb.setContent(html_1d800c73373d3bf08daa5c40c928adc8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0460d4711ecab765884d85f380edaa9b.bindPopup(popup_859dd8212b2704f0f6851e99f393a3fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08e000814dcf2fff8c74976869795bbf = L.circleMarker(\\n\",\n       \"                [23.1572, 112.885],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_909ca6eb1db2246c7ad13ccc2a4cb07c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_016ed52a6a341961972554a57e0cd9a6 = $(`&lt;div id=&quot;html_016ed52a6a341961972554a57e0cd9a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.885             latitude:23.1572             PM2_5:38.81534091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_909ca6eb1db2246c7ad13ccc2a4cb07c.setContent(html_016ed52a6a341961972554a57e0cd9a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08e000814dcf2fff8c74976869795bbf.bindPopup(popup_909ca6eb1db2246c7ad13ccc2a4cb07c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f4b451af329adb4d6a827c973dae385 = L.circleMarker(\\n\",\n       \"                [30.6197, 114.2836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7275a3a05e6582934b83a9d00e43bc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13a5157baac2669d5184e9e63d44c344 = $(`&lt;div id=&quot;html_13a5157baac2669d5184e9e63d44c344&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2836             latitude:30.6197             PM2_5:48.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7275a3a05e6582934b83a9d00e43bc4.setContent(html_13a5157baac2669d5184e9e63d44c344);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f4b451af329adb4d6a827c973dae385.bindPopup(popup_a7275a3a05e6582934b83a9d00e43bc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3509e0a6a10d44dbc9095ffefc97adad = L.circleMarker(\\n\",\n       \"                [33.6284, 116.9677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_badc919d1165363bf5b0f2352aab341c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a131107a30a26ed557466ab03e6c911 = $(`&lt;div id=&quot;html_8a131107a30a26ed557466ab03e6c911&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9677             latitude:33.6284             PM2_5:55.42916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_badc919d1165363bf5b0f2352aab341c.setContent(html_8a131107a30a26ed557466ab03e6c911);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3509e0a6a10d44dbc9095ffefc97adad.bindPopup(popup_badc919d1165363bf5b0f2352aab341c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3eccda09e24a8074ef2a5f732073f235 = L.circleMarker(\\n\",\n       \"                [22.5908, 114.263],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61f9796d5f14d4f03e8296b613629875 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e717c5f563437d756b100bf7f98b87a8 = $(`&lt;div id=&quot;html_e717c5f563437d756b100bf7f98b87a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.263             latitude:22.5908             PM2_5:22.57746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61f9796d5f14d4f03e8296b613629875.setContent(html_e717c5f563437d756b100bf7f98b87a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3eccda09e24a8074ef2a5f732073f235.bindPopup(popup_61f9796d5f14d4f03e8296b613629875)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c771a4466dd75bd019a7b9099ce0b7ec = L.circleMarker(\\n\",\n       \"                [41.8336, 123.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36cc5b58680d4e4e60e1bc3d4d1891f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f461aa6797a0bb3fd7a85f7e1ac502c = $(`&lt;div id=&quot;html_9f461aa6797a0bb3fd7a85f7e1ac502c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.542             latitude:41.8336             PM2_5:30.66997167             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36cc5b58680d4e4e60e1bc3d4d1891f6.setContent(html_9f461aa6797a0bb3fd7a85f7e1ac502c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c771a4466dd75bd019a7b9099ce0b7ec.bindPopup(popup_36cc5b58680d4e4e60e1bc3d4d1891f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_007d388057c175fb2f8a83ddbd5c95a2 = L.circleMarker(\\n\",\n       \"                [34.3528, 107.3906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6eff2c8a74983de167c20b71ba3611a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08382c20ebc5dffbec8f026101837f28 = $(`&lt;div id=&quot;html_08382c20ebc5dffbec8f026101837f28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3906             latitude:34.3528             PM2_5:56.48472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6eff2c8a74983de167c20b71ba3611a9.setContent(html_08382c20ebc5dffbec8f026101837f28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_007d388057c175fb2f8a83ddbd5c95a2.bindPopup(popup_6eff2c8a74983de167c20b71ba3611a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86332c4525996b1f09946d13cb24757d = L.circleMarker(\\n\",\n       \"                [38.817, 106.3394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d18c8816bf0047cbe9d885fc3c2b9b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9f1d06dfe15c90134d8d1261c2c6fc3 = $(`&lt;div id=&quot;html_d9f1d06dfe15c90134d8d1261c2c6fc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3394             latitude:38.817             PM2_5:45.58882521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d18c8816bf0047cbe9d885fc3c2b9b4.setContent(html_d9f1d06dfe15c90134d8d1261c2c6fc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86332c4525996b1f09946d13cb24757d.bindPopup(popup_7d18c8816bf0047cbe9d885fc3c2b9b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dca5ec42da578c51a905286aa097502c = L.circleMarker(\\n\",\n       \"                [37.8561, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86a14e384af88c5609404273e02b7f71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf818c1b764131ae2687d4c5797311d5 = $(`&lt;div id=&quot;html_cf818c1b764131ae2687d4c5797311d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:37.8561             PM2_5:58.70972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86a14e384af88c5609404273e02b7f71.setContent(html_cf818c1b764131ae2687d4c5797311d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dca5ec42da578c51a905286aa097502c.bindPopup(popup_86a14e384af88c5609404273e02b7f71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a30d9d79da5ff654c7de1572ad421e5e = L.circleMarker(\\n\",\n       \"                [28.6459, 121.273],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffcad6af267f8c8b124b8830e85c9372 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7cadefbb5d7128fef6467d1df3f265ea = $(`&lt;div id=&quot;html_7cadefbb5d7128fef6467d1df3f265ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.273             latitude:28.6459             PM2_5:28.00724638             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffcad6af267f8c8b124b8830e85c9372.setContent(html_7cadefbb5d7128fef6467d1df3f265ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a30d9d79da5ff654c7de1572ad421e5e.bindPopup(popup_ffcad6af267f8c8b124b8830e85c9372)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6090df8c09919266336c71c3af6550e9 = L.circleMarker(\\n\",\n       \"                [30.4576, 106.6303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3cab268b4becc8f20bbc8eb7950b75f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6d0f2b022a28860ea95209439cd0e0b = $(`&lt;div id=&quot;html_a6d0f2b022a28860ea95209439cd0e0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6303             latitude:30.4576             PM2_5:42.27513966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3cab268b4becc8f20bbc8eb7950b75f.setContent(html_a6d0f2b022a28860ea95209439cd0e0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6090df8c09919266336c71c3af6550e9.bindPopup(popup_d3cab268b4becc8f20bbc8eb7950b75f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f54926fe1b48ff9bfdb10561c645a03 = L.circleMarker(\\n\",\n       \"                [34.5667, 117.732],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_732e89131ee0687a911d26f8d850ec2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04ba52c39e5fa7d660bcd278e9f2a526 = $(`&lt;div id=&quot;html_04ba52c39e5fa7d660bcd278e9f2a526&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.732             latitude:34.5667             PM2_5:62.16432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_732e89131ee0687a911d26f8d850ec2a.setContent(html_04ba52c39e5fa7d660bcd278e9f2a526);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f54926fe1b48ff9bfdb10561c645a03.bindPopup(popup_732e89131ee0687a911d26f8d850ec2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fdd71028aed8dbf02288f0d8184ba483 = L.circleMarker(\\n\",\n       \"                [37.9358, 102.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a14e55be72ed8ad790e6023bfd3089f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6ca21b2d7469f4e24e01bd612cf7f8f = $(`&lt;div id=&quot;html_e6ca21b2d7469f4e24e01bd612cf7f8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6469             latitude:37.9358             PM2_5:36.28194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a14e55be72ed8ad790e6023bfd3089f.setContent(html_e6ca21b2d7469f4e24e01bd612cf7f8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fdd71028aed8dbf02288f0d8184ba483.bindPopup(popup_2a14e55be72ed8ad790e6023bfd3089f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bdba4cded8da79d72008d6fae6ef66f = L.circleMarker(\\n\",\n       \"                [31.89708, 121.1518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_62c24d1e69e00d07a5a4d050462e221b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2abe48492f454aab07301925c70389d7 = $(`&lt;div id=&quot;html_2abe48492f454aab07301925c70389d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1518             latitude:31.89708             PM2_5:35.28041543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_62c24d1e69e00d07a5a4d050462e221b.setContent(html_2abe48492f454aab07301925c70389d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bdba4cded8da79d72008d6fae6ef66f.bindPopup(popup_62c24d1e69e00d07a5a4d050462e221b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11d35d76dd4561189dc2359216aae7eb = L.circleMarker(\\n\",\n       \"                [27.6178, 113.865],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29a6622e854057c8f8b2491f285da656 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3495a4a5e7419dfd419f2cb6588936d7 = $(`&lt;div id=&quot;html_3495a4a5e7419dfd419f2cb6588936d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.865             latitude:27.6178             PM2_5:43.54583333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29a6622e854057c8f8b2491f285da656.setContent(html_3495a4a5e7419dfd419f2cb6588936d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11d35d76dd4561189dc2359216aae7eb.bindPopup(popup_29a6622e854057c8f8b2491f285da656)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7afb54ec8ef6706bdf85784ab38be971 = L.circleMarker(\\n\",\n       \"                [25.0661, 117.0256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1212b30ede7ddd94209838ba06a5787f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e176a5d69549fd9b102786cdd272ebb5 = $(`&lt;div id=&quot;html_e176a5d69549fd9b102786cdd272ebb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0256             latitude:25.0661             PM2_5:20.88194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1212b30ede7ddd94209838ba06a5787f.setContent(html_e176a5d69549fd9b102786cdd272ebb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7afb54ec8ef6706bdf85784ab38be971.bindPopup(popup_1212b30ede7ddd94209838ba06a5787f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3832f3de82099c2cad06652474625e85 = L.circleMarker(\\n\",\n       \"                [37.0967, 114.4821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32b88272f4fb55232f8e6763fbe5fb23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70646630086bb90fe84c15b1552345f7 = $(`&lt;div id=&quot;html_70646630086bb90fe84c15b1552345f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4821             latitude:37.0967             PM2_5:74.24929972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32b88272f4fb55232f8e6763fbe5fb23.setContent(html_70646630086bb90fe84c15b1552345f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3832f3de82099c2cad06652474625e85.bindPopup(popup_32b88272f4fb55232f8e6763fbe5fb23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f3ffbb11541ea1975b4127fbbaef003 = L.circleMarker(\\n\",\n       \"                [26.5689, 106.6971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0071f524dc8798d7f0410b2a25743a1e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00bb8801592d5db9af99c7c37d3d32a3 = $(`&lt;div id=&quot;html_00bb8801592d5db9af99c7c37d3d32a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6971             latitude:26.5689             PM2_5:30.99571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0071f524dc8798d7f0410b2a25743a1e.setContent(html_00bb8801592d5db9af99c7c37d3d32a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f3ffbb11541ea1975b4127fbbaef003.bindPopup(popup_0071f524dc8798d7f0410b2a25743a1e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_732a2677ae1f8128da12d5adbea4e0ae = L.circleMarker(\\n\",\n       \"                [34.5004, 109.5049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50cebe8d2b49b4d92a944b33b7acad4d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c08dead59245cd4e9b2e812793a2d03 = $(`&lt;div id=&quot;html_0c08dead59245cd4e9b2e812793a2d03&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5049             latitude:34.5004             PM2_5:72.50142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50cebe8d2b49b4d92a944b33b7acad4d.setContent(html_0c08dead59245cd4e9b2e812793a2d03);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_732a2677ae1f8128da12d5adbea4e0ae.bindPopup(popup_50cebe8d2b49b4d92a944b33b7acad4d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3049111919aca0ea40625162032650b8 = L.circleMarker(\\n\",\n       \"                [30.9447, 118.7581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19ca57d7bcb4ad7a9442bf8ed96c172a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e86fd7b53d89b84e1a938ffe4f937c67 = $(`&lt;div id=&quot;html_e86fd7b53d89b84e1a938ffe4f937c67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7581             latitude:30.9447             PM2_5:42.49019608             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19ca57d7bcb4ad7a9442bf8ed96c172a.setContent(html_e86fd7b53d89b84e1a938ffe4f937c67);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3049111919aca0ea40625162032650b8.bindPopup(popup_19ca57d7bcb4ad7a9442bf8ed96c172a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f97a1a5b32ea6724d43c613676db10a2 = L.circleMarker(\\n\",\n       \"                [30.7636, 106.0642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81fd2594aec608d53c3400e45efe3f44 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19009bfef1182e0e1e3eefa5cc886d53 = $(`&lt;div id=&quot;html_19009bfef1182e0e1e3eefa5cc886d53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0642             latitude:30.7636             PM2_5:51.33240997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81fd2594aec608d53c3400e45efe3f44.setContent(html_19009bfef1182e0e1e3eefa5cc886d53);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f97a1a5b32ea6724d43c613676db10a2.bindPopup(popup_81fd2594aec608d53c3400e45efe3f44)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d3a8b40948a9374a8218ca4734d7cb7 = L.circleMarker(\\n\",\n       \"                [25.2178, 110.2869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a15c7409e66440b1cd1e172d62824fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_770986e1e046e2a56d53f9fa86b63cd6 = $(`&lt;div id=&quot;html_770986e1e046e2a56d53f9fa86b63cd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2869             latitude:25.2178             PM2_5:37.9301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a15c7409e66440b1cd1e172d62824fb.setContent(html_770986e1e046e2a56d53f9fa86b63cd6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d3a8b40948a9374a8218ca4734d7cb7.bindPopup(popup_5a15c7409e66440b1cd1e172d62824fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ab9b8d34999b64006322da27b619886 = L.circleMarker(\\n\",\n       \"                [23.9011, 106.6103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03e1aa1e50a64daeab93f4d8a9a58bc6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_81466982b0af3674b805ddc87f9d8ed7 = $(`&lt;div id=&quot;html_81466982b0af3674b805ddc87f9d8ed7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6103             latitude:23.9011             PM2_5:39.07282913             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03e1aa1e50a64daeab93f4d8a9a58bc6.setContent(html_81466982b0af3674b805ddc87f9d8ed7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ab9b8d34999b64006322da27b619886.bindPopup(popup_03e1aa1e50a64daeab93f4d8a9a58bc6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01bbc6aff4dba1b76c77ef0426fc17a0 = L.circleMarker(\\n\",\n       \"                [38.1398, 114.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f0528cf58983598d48481f308cae7f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_700b47eb0139530896311438c7fda34a = $(`&lt;div id=&quot;html_700b47eb0139530896311438c7fda34a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5019             latitude:38.1398             PM2_5:72.54901961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f0528cf58983598d48481f308cae7f6.setContent(html_700b47eb0139530896311438c7fda34a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01bbc6aff4dba1b76c77ef0426fc17a0.bindPopup(popup_1f0528cf58983598d48481f308cae7f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14077ff7010bb3450ef0161a27a52b86 = L.circleMarker(\\n\",\n       \"                [31.2036, 121.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e9b538838871c943402b83a2ded2e5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84121a325d0a3b8336e6c8431e79b47a = $(`&lt;div id=&quot;html_84121a325d0a3b8336e6c8431e79b47a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.478             latitude:31.2036             PM2_5:43.17563739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e9b538838871c943402b83a2ded2e5c.setContent(html_84121a325d0a3b8336e6c8431e79b47a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14077ff7010bb3450ef0161a27a52b86.bindPopup(popup_6e9b538838871c943402b83a2ded2e5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08428ac8d5a1f00a01f1823ef2791c94 = L.circleMarker(\\n\",\n       \"                [31.882, 120.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ada5ff49637ed54eb4168a23775abe06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb9088364b39977ea994ea7a4f4cbdf3 = $(`&lt;div id=&quot;html_cb9088364b39977ea994ea7a4f4cbdf3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.55             latitude:31.882             PM2_5:44.14265537             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ada5ff49637ed54eb4168a23775abe06.setContent(html_cb9088364b39977ea994ea7a4f4cbdf3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08428ac8d5a1f00a01f1823ef2791c94.bindPopup(popup_ada5ff49637ed54eb4168a23775abe06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ddd1dd84c306f22e63640afe77f8454 = L.circleMarker(\\n\",\n       \"                [40.1461, 124.3933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0a1786b3930d7972d3beded29850e03 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e7f04ef600a66df0493be6ff38bb19c = $(`&lt;div id=&quot;html_6e7f04ef600a66df0493be6ff38bb19c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3933             latitude:40.1461             PM2_5:24.14164306             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0a1786b3930d7972d3beded29850e03.setContent(html_6e7f04ef600a66df0493be6ff38bb19c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ddd1dd84c306f22e63640afe77f8454.bindPopup(popup_f0a1786b3930d7972d3beded29850e03)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2013ce8b97225cc08b21407120a40975 = L.circleMarker(\\n\",\n       \"                [39.6719, 106.8219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1cb39a56be8cddf63177ce3c8c5a74a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9dc2273565df5573394cfebd551262e8 = $(`&lt;div id=&quot;html_9dc2273565df5573394cfebd551262e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8219             latitude:39.6719             PM2_5:43.65340909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1cb39a56be8cddf63177ce3c8c5a74a.setContent(html_9dc2273565df5573394cfebd551262e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2013ce8b97225cc08b21407120a40975.bindPopup(popup_d1cb39a56be8cddf63177ce3c8c5a74a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d29115dd0d82e57056b82b0e7a7f76de = L.circleMarker(\\n\",\n       \"                [33.575, 119.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_519f67fc3fa960a727100c93f552a747 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eddcc4a5cd654c16fa2b1069561e6ccf = $(`&lt;div id=&quot;html_eddcc4a5cd654c16fa2b1069561e6ccf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.007             latitude:33.575             PM2_5:45.62465374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_519f67fc3fa960a727100c93f552a747.setContent(html_eddcc4a5cd654c16fa2b1069561e6ccf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d29115dd0d82e57056b82b0e7a7f76de.bindPopup(popup_519f67fc3fa960a727100c93f552a747)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62f2c8ef38dfe98b0d742751a8905b2b = L.circleMarker(\\n\",\n       \"                [29.5983, 106.296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8e0889c53525ce601c7b8df5018fa6d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8303db8207209ad6f8d0a6ae749d8652 = $(`&lt;div id=&quot;html_8303db8207209ad6f8d0a6ae749d8652&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.296             latitude:29.5983             PM2_5:37.21030641             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8e0889c53525ce601c7b8df5018fa6d.setContent(html_8303db8207209ad6f8d0a6ae749d8652);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62f2c8ef38dfe98b0d742751a8905b2b.bindPopup(popup_e8e0889c53525ce601c7b8df5018fa6d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_02b44bc02ea84ab37447624d16eeba81 = L.circleMarker(\\n\",\n       \"                [43.7256, 126.6772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04b3ccecc7b53d9d0c95913f96da34ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_106da6f8fc6626230948be0d30b8e24d = $(`&lt;div id=&quot;html_106da6f8fc6626230948be0d30b8e24d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6772             latitude:43.7256             PM2_5:29.62780899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04b3ccecc7b53d9d0c95913f96da34ae.setContent(html_106da6f8fc6626230948be0d30b8e24d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_02b44bc02ea84ab37447624d16eeba81.bindPopup(popup_04b3ccecc7b53d9d0c95913f96da34ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6b6d9bd946208f7ee3810b52d891e87 = L.circleMarker(\\n\",\n       \"                [45.6033, 84.8861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_929a6810ce457127b06d33f071122db2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12cf097b0bb8f4a498d0e5841f6483f6 = $(`&lt;div id=&quot;html_12cf097b0bb8f4a498d0e5841f6483f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8861             latitude:45.6033             PM2_5:24.26825843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_929a6810ce457127b06d33f071122db2.setContent(html_12cf097b0bb8f4a498d0e5841f6483f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6b6d9bd946208f7ee3810b52d891e87.bindPopup(popup_929a6810ce457127b06d33f071122db2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16e28f839c175c33a8a35d17f34d279b = L.circleMarker(\\n\",\n       \"                [30.4519, 114.8858],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1833c90e06db921078e8110613d833db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e487a3bafa0f4ec6bf63ed280418ea65 = $(`&lt;div id=&quot;html_e487a3bafa0f4ec6bf63ed280418ea65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8858             latitude:30.4519             PM2_5:45.08988764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1833c90e06db921078e8110613d833db.setContent(html_e487a3bafa0f4ec6bf63ed280418ea65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16e28f839c175c33a8a35d17f34d279b.bindPopup(popup_1833c90e06db921078e8110613d833db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_168197edd56eaac24574010a60539770 = L.circleMarker(\\n\",\n       \"                [43.9167, 125.323],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_89ece6d4c1bf60d06cf497b8790881e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f3cce241084f8def5899b99d3681711 = $(`&lt;div id=&quot;html_7f3cce241084f8def5899b99d3681711&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.323             latitude:43.9167             PM2_5:30.47464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_89ece6d4c1bf60d06cf497b8790881e8.setContent(html_7f3cce241084f8def5899b99d3681711);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_168197edd56eaac24574010a60539770.bindPopup(popup_89ece6d4c1bf60d06cf497b8790881e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f8f45c7d2d9afb7d2a995a9dc577a7f7 = L.circleMarker(\\n\",\n       \"                [36.1855, 113.0844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c6c7f07d97110c639ff233e5eafc41f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4273a7be5d0459074fb586e820688959 = $(`&lt;div id=&quot;html_4273a7be5d0459074fb586e820688959&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0844444             latitude:36.1855             PM2_5:72.24509804             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c6c7f07d97110c639ff233e5eafc41f.setContent(html_4273a7be5d0459074fb586e820688959);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f8f45c7d2d9afb7d2a995a9dc577a7f7.bindPopup(popup_7c6c7f07d97110c639ff233e5eafc41f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1e34250540e8dd9b1d64247c7ad199b = L.circleMarker(\\n\",\n       \"                [35.303, 113.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0331872f31206dc4dc1cee59f6acac4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1baadbb063b8128aaa40e9ceb621ee28 = $(`&lt;div id=&quot;html_1baadbb063b8128aaa40e9ceb621ee28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.883             latitude:35.303             PM2_5:53.45658263             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0331872f31206dc4dc1cee59f6acac4.setContent(html_1baadbb063b8128aaa40e9ceb621ee28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1e34250540e8dd9b1d64247c7ad199b.bindPopup(popup_b0331872f31206dc4dc1cee59f6acac4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_227b293c5ddb38e37fc27630860370f6 = L.circleMarker(\\n\",\n       \"                [34.7745, 117.5852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49981f30ec99f1d81fa2bafab60c5433 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0bec212fa767ab7168916f96553fe5d4 = $(`&lt;div id=&quot;html_0bec212fa767ab7168916f96553fe5d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5852             latitude:34.7745             PM2_5:49.32633053             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49981f30ec99f1d81fa2bafab60c5433.setContent(html_0bec212fa767ab7168916f96553fe5d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_227b293c5ddb38e37fc27630860370f6.bindPopup(popup_49981f30ec99f1d81fa2bafab60c5433)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3172d2a6c2d64a6aefaf0fc33076f705 = L.circleMarker(\\n\",\n       \"                [44.561, 129.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e88d45814ed78d6e1e72c29da095e4fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e29e6005de50a5933ba472606b5f48a6 = $(`&lt;div id=&quot;html_e29e6005de50a5933ba472606b5f48a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.61             latitude:44.561             PM2_5:25.8449848             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e88d45814ed78d6e1e72c29da095e4fa.setContent(html_e29e6005de50a5933ba472606b5f48a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3172d2a6c2d64a6aefaf0fc33076f705.bindPopup(popup_e88d45814ed78d6e1e72c29da095e4fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f67a758da2312422ec810a0b6b7893a2 = L.circleMarker(\\n\",\n       \"                [22.3708, 107.3701],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1f07f5eb8ecad423b3d7653aa3f25a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_32d429a1ee7994a6ef4fd5d7ec6ef2c0 = $(`&lt;div id=&quot;html_32d429a1ee7994a6ef4fd5d7ec6ef2c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3701             latitude:22.3708             PM2_5:30.14730878             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1f07f5eb8ecad423b3d7653aa3f25a7.setContent(html_32d429a1ee7994a6ef4fd5d7ec6ef2c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f67a758da2312422ec810a0b6b7893a2.bindPopup(popup_a1f07f5eb8ecad423b3d7653aa3f25a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8255c1b638e421ac646bb1b79979792e = L.circleMarker(\\n\",\n       \"                [31.381, 120.999],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffa7ea6369af5c7be76370e488a928eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f682bc188e1627299e8aa66b4d836b7 = $(`&lt;div id=&quot;html_2f682bc188e1627299e8aa66b4d836b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.999             latitude:31.381             PM2_5:37.6265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffa7ea6369af5c7be76370e488a928eb.setContent(html_2f682bc188e1627299e8aa66b4d836b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8255c1b638e421ac646bb1b79979792e.bindPopup(popup_ffa7ea6369af5c7be76370e488a928eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_35076b36a78f076dd585d8b119799441 = L.circleMarker(\\n\",\n       \"                [27.3125, 105.2864],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a4c69a6d8dda60d85a9817993ae6b4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e94d4dcefb973aa7eaae526a03e0cbd6 = $(`&lt;div id=&quot;html_e94d4dcefb973aa7eaae526a03e0cbd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.2864             latitude:27.3125             PM2_5:31.51949861             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a4c69a6d8dda60d85a9817993ae6b4c.setContent(html_e94d4dcefb973aa7eaae526a03e0cbd6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_35076b36a78f076dd585d8b119799441.bindPopup(popup_6a4c69a6d8dda60d85a9817993ae6b4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f228fc9807b122e27c97ba9e940c431b = L.circleMarker(\\n\",\n       \"                [23.4168, 103.386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f43788f936d4b142854f22f746fff3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d9a93cf730d3a1e08e6dc0e5770c719 = $(`&lt;div id=&quot;html_0d9a93cf730d3a1e08e6dc0e5770c719&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.386             latitude:23.4168             PM2_5:27.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f43788f936d4b142854f22f746fff3f.setContent(html_0d9a93cf730d3a1e08e6dc0e5770c719);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f228fc9807b122e27c97ba9e940c431b.bindPopup(popup_2f43788f936d4b142854f22f746fff3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c3c05340e80509cbaa9513c67b464bf = L.circleMarker(\\n\",\n       \"                [41.1556, 122.0247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92869702b4d0c22acc468df278e67454 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ea7c08903ad0fdcec87f0fefd4327c7 = $(`&lt;div id=&quot;html_6ea7c08903ad0fdcec87f0fefd4327c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0247             latitude:41.1556             PM2_5:32.5377095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92869702b4d0c22acc468df278e67454.setContent(html_6ea7c08903ad0fdcec87f0fefd4327c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c3c05340e80509cbaa9513c67b464bf.bindPopup(popup_92869702b4d0c22acc468df278e67454)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c116e38a31ec7eed6f65b3609c01fcad = L.circleMarker(\\n\",\n       \"                [37.177, 119.941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e4148490e3a28604ba2224c21d1d4aae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52770f05a116567c4510e3600070259c = $(`&lt;div id=&quot;html_52770f05a116567c4510e3600070259c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.941             latitude:37.177             PM2_5:28.97706422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e4148490e3a28604ba2224c21d1d4aae.setContent(html_52770f05a116567c4510e3600070259c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c116e38a31ec7eed6f65b3609c01fcad.bindPopup(popup_e4148490e3a28604ba2224c21d1d4aae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d6c7eaee00e0e6b3f0841baddd528621 = L.circleMarker(\\n\",\n       \"                [27.8014, 114.3806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d23635dc894143afc5282924201fdff2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c57700d3c29f5cbde8ef572541aebd2 = $(`&lt;div id=&quot;html_2c57700d3c29f5cbde8ef572541aebd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3806             latitude:27.8014             PM2_5:50.74166667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d23635dc894143afc5282924201fdff2.setContent(html_2c57700d3c29f5cbde8ef572541aebd2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d6c7eaee00e0e6b3f0841baddd528621.bindPopup(popup_d23635dc894143afc5282924201fdff2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_656c4a58354287d1cf545e7fd9c564a7 = L.circleMarker(\\n\",\n       \"                [32.6389, 110.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cda0643bbb6b20c47c28def29ca91f92 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51732aaa19d68ea364cc4e16cb5780b9 = $(`&lt;div id=&quot;html_51732aaa19d68ea364cc4e16cb5780b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.7258             latitude:32.6389             PM2_5:45.01416431             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cda0643bbb6b20c47c28def29ca91f92.setContent(html_51732aaa19d68ea364cc4e16cb5780b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_656c4a58354287d1cf545e7fd9c564a7.bindPopup(popup_cda0643bbb6b20c47c28def29ca91f92)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26dd1b74dbefa762759b9329ebc6c1c1 = L.circleMarker(\\n\",\n       \"                [24.428, 98.5842],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50f4a4794d1a95b9b429eae6b5b2cb78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_444a13bd78fb4f41e2255c0fdb69a23a = $(`&lt;div id=&quot;html_444a13bd78fb4f41e2255c0fdb69a23a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5842             latitude:24.428             PM2_5:38.13610315             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50f4a4794d1a95b9b429eae6b5b2cb78.setContent(html_444a13bd78fb4f41e2255c0fdb69a23a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26dd1b74dbefa762759b9329ebc6c1c1.bindPopup(popup_50f4a4794d1a95b9b429eae6b5b2cb78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b487c293f35cd17cbe1a895b8e583fd7 = L.circleMarker(\\n\",\n       \"                [25.8333, 114.9322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc24ad1cd4612077df414fae22829d7d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99ffbbd0a8b6a760690fb8fb0154458b = $(`&lt;div id=&quot;html_99ffbbd0a8b6a760690fb8fb0154458b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9322             latitude:25.8333             PM2_5:44.84497207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc24ad1cd4612077df414fae22829d7d.setContent(html_99ffbbd0a8b6a760690fb8fb0154458b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b487c293f35cd17cbe1a895b8e583fd7.bindPopup(popup_bc24ad1cd4612077df414fae22829d7d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14d88abefc139edade73df8f6975633a = L.circleMarker(\\n\",\n       \"                [33.567, 114.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23f8f45566e17d0555d24cd27fb978d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be4e67b7632b9946f375f583bb0962a6 = $(`&lt;div id=&quot;html_be4e67b7632b9946f375f583bb0962a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.056             latitude:33.567             PM2_5:55.5480226             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23f8f45566e17d0555d24cd27fb978d3.setContent(html_be4e67b7632b9946f375f583bb0962a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14d88abefc139edade73df8f6975633a.bindPopup(popup_23f8f45566e17d0555d24cd27fb978d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb31386d18c81f9ee2cff760b0869e7e = L.circleMarker(\\n\",\n       \"                [33.0014, 97.0],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_832cab9b3a5a0f13251853eeff8d6bcc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9544bce749252d4b0de8bfe600b74a57 = $(`&lt;div id=&quot;html_9544bce749252d4b0de8bfe600b74a57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.0             latitude:33.0014             PM2_5:17.88095238             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_832cab9b3a5a0f13251853eeff8d6bcc.setContent(html_9544bce749252d4b0de8bfe600b74a57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb31386d18c81f9ee2cff760b0869e7e.bindPopup(popup_832cab9b3a5a0f13251853eeff8d6bcc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_33563812e14ad410c4c4d1d9d6836969 = L.circleMarker(\\n\",\n       \"                [26.2378, 117.6028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a94876868e3d0ffcabfc1f4ad6276f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23de18d71e161fa7667a73fac04b4874 = $(`&lt;div id=&quot;html_23de18d71e161fa7667a73fac04b4874&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6028             latitude:26.2378             PM2_5:24.41620112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a94876868e3d0ffcabfc1f4ad6276f1.setContent(html_23de18d71e161fa7667a73fac04b4874);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_33563812e14ad410c4c4d1d9d6836969.bindPopup(popup_2a94876868e3d0ffcabfc1f4ad6276f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba99b57a45baa85e5c5009588bfca3f0 = L.circleMarker(\\n\",\n       \"                [41.7561, 123.535],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59a598873a7db9cc14d6e16bf69d7dec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74c4185e635aa3763bdfcf1e7a292d0d = $(`&lt;div id=&quot;html_74c4185e635aa3763bdfcf1e7a292d0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.535             latitude:41.7561             PM2_5:38.46111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59a598873a7db9cc14d6e16bf69d7dec.setContent(html_74c4185e635aa3763bdfcf1e7a292d0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba99b57a45baa85e5c5009588bfca3f0.bindPopup(popup_59a598873a7db9cc14d6e16bf69d7dec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48a99c8df815905d3bb77d9a100e8a7d = L.circleMarker(\\n\",\n       \"                [25.0836, 102.728],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e9a629fa7492e8d56139d2f31c0aced = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d661979f1774f74b49dd4d49c8c05b6 = $(`&lt;div id=&quot;html_0d661979f1774f74b49dd4d49c8c05b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.728             latitude:25.0836             PM2_5:21.87534626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e9a629fa7492e8d56139d2f31c0aced.setContent(html_0d661979f1774f74b49dd4d49c8c05b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48a99c8df815905d3bb77d9a100e8a7d.bindPopup(popup_5e9a629fa7492e8d56139d2f31c0aced)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_651600676a96bbf10d4f3dca821ed9a6 = L.circleMarker(\\n\",\n       \"                [34.3547, 107.1431],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_432f28f6d879e22524d680c16b3c44a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2419cea532fb13a9bccfab4e1e7d8f3c = $(`&lt;div id=&quot;html_2419cea532fb13a9bccfab4e1e7d8f3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1431             latitude:34.3547             PM2_5:50.70172911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_432f28f6d879e22524d680c16b3c44a9.setContent(html_2419cea532fb13a9bccfab4e1e7d8f3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_651600676a96bbf10d4f3dca821ed9a6.bindPopup(popup_432f28f6d879e22524d680c16b3c44a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b485e581ae5621650be6d3d5abafbfb1 = L.circleMarker(\\n\",\n       \"                [39.7153, 76.1861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4513bd065929349069755200347fae10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_857f0e19704f13d892bc2c14f803a885 = $(`&lt;div id=&quot;html_857f0e19704f13d892bc2c14f803a885&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:76.1861             latitude:39.7153             PM2_5:63.63700565             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4513bd065929349069755200347fae10.setContent(html_857f0e19704f13d892bc2c14f803a885);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b485e581ae5621650be6d3d5abafbfb1.bindPopup(popup_4513bd065929349069755200347fae10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2341871e61b880d049b6fb22e20f4d1 = L.circleMarker(\\n\",\n       \"                [24.9617, 118.6108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_faa68c01bb63561484bdad6501e3398b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cdcb59647013a65d65f4fa56d9f8be6b = $(`&lt;div id=&quot;html_cdcb59647013a65d65f4fa56d9f8be6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6108             latitude:24.9617             PM2_5:25.4             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_faa68c01bb63561484bdad6501e3398b.setContent(html_cdcb59647013a65d65f4fa56d9f8be6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2341871e61b880d049b6fb22e20f4d1.bindPopup(popup_faa68c01bb63561484bdad6501e3398b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d7fba744a54a3dd6f5bbb8b9a5b4a45 = L.circleMarker(\\n\",\n       \"                [36.283, 120.008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3fbb87333528ae6fc50e439ddb65bbf2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02661e1d31af3c8f8d33beb5d9b00f30 = $(`&lt;div id=&quot;html_02661e1d31af3c8f8d33beb5d9b00f30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.008             latitude:36.283             PM2_5:38.38483146             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3fbb87333528ae6fc50e439ddb65bbf2.setContent(html_02661e1d31af3c8f8d33beb5d9b00f30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d7fba744a54a3dd6f5bbb8b9a5b4a45.bindPopup(popup_3fbb87333528ae6fc50e439ddb65bbf2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5bdcef223f25c1d1e372083128853fdf = L.circleMarker(\\n\",\n       \"                [22.5811, 113.074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75ee2242ddd6a4af36f1db8f9a9fa780 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7aeafebcf0363f1be8f006c70529c5a = $(`&lt;div id=&quot;html_b7aeafebcf0363f1be8f006c70529c5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.074             latitude:22.5811             PM2_5:35.29722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75ee2242ddd6a4af36f1db8f9a9fa780.setContent(html_b7aeafebcf0363f1be8f006c70529c5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5bdcef223f25c1d1e372083128853fdf.bindPopup(popup_75ee2242ddd6a4af36f1db8f9a9fa780)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ebb31b46bbf083ab0fb24e862ce1e8e = L.circleMarker(\\n\",\n       \"                [29.8264, 106.424],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d23181d0eb819d721a5755efbbd079b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dfd6532c2824dedc043c5314227ba51a = $(`&lt;div id=&quot;html_dfd6532c2824dedc043c5314227ba51a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.424             latitude:29.8264             PM2_5:40.68156425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d23181d0eb819d721a5755efbbd079b2.setContent(html_dfd6532c2824dedc043c5314227ba51a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ebb31b46bbf083ab0fb24e862ce1e8e.bindPopup(popup_d23181d0eb819d721a5755efbbd079b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_67fd3a5c1015677d8e086cc9bd47f01f = L.circleMarker(\\n\",\n       \"                [43.8358, 126.5844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c183d19a718178bd969ea3abcede95ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_75d9d9d2fd09537ebb27e45ff2f5f894 = $(`&lt;div id=&quot;html_75d9d9d2fd09537ebb27e45ff2f5f894&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5844             latitude:43.8358             PM2_5:31.67275281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c183d19a718178bd969ea3abcede95ed.setContent(html_75d9d9d2fd09537ebb27e45ff2f5f894);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_67fd3a5c1015677d8e086cc9bd47f01f.bindPopup(popup_c183d19a718178bd969ea3abcede95ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ac4ddca6e326395e78c1eda5bcb908c = L.circleMarker(\\n\",\n       \"                [29.9919, 120.605],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b3fbbf36621649e25242944ec36b1e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_79ad195fcf469a267a01862479c1ccd7 = $(`&lt;div id=&quot;html_79ad195fcf469a267a01862479c1ccd7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.605             latitude:29.9919             PM2_5:42.86938202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b3fbbf36621649e25242944ec36b1e5.setContent(html_79ad195fcf469a267a01862479c1ccd7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ac4ddca6e326395e78c1eda5bcb908c.bindPopup(popup_6b3fbbf36621649e25242944ec36b1e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2cfdf1f5ad553748429c9e78b842453 = L.circleMarker(\\n\",\n       \"                [44.0114, 87.2997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab96980eeb8589359e102150b35c7fd0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0740c92bef1b81b1e162a093039a38a3 = $(`&lt;div id=&quot;html_0740c92bef1b81b1e162a093039a38a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2997             latitude:44.0114             PM2_5:73.18696884             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab96980eeb8589359e102150b35c7fd0.setContent(html_0740c92bef1b81b1e162a093039a38a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2cfdf1f5ad553748429c9e78b842453.bindPopup(popup_ab96980eeb8589359e102150b35c7fd0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23c311cca06e7a5a1f635694a7139c33 = L.circleMarker(\\n\",\n       \"                [35.5102, 102.0199],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c644ccff1bc8414191f61dd853bebddd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c153c8c778f4b329df5dd381ff28fbc = $(`&lt;div id=&quot;html_6c153c8c778f4b329df5dd381ff28fbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.0199             latitude:35.5102             PM2_5:29.07799443             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c644ccff1bc8414191f61dd853bebddd.setContent(html_6c153c8c778f4b329df5dd381ff28fbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23c311cca06e7a5a1f635694a7139c33.bindPopup(popup_c644ccff1bc8414191f61dd853bebddd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42953ce940c4e65d9f5368045b38155b = L.circleMarker(\\n\",\n       \"                [31.7133, 118.6439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3094660492ca8251bf613b2ae9d36957 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f897a42a04370f6988b1f9c47192efb = $(`&lt;div id=&quot;html_5f897a42a04370f6988b1f9c47192efb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6439             latitude:31.7133             PM2_5:57.34135977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3094660492ca8251bf613b2ae9d36957.setContent(html_5f897a42a04370f6988b1f9c47192efb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42953ce940c4e65d9f5368045b38155b.bindPopup(popup_3094660492ca8251bf613b2ae9d36957)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_50ba6c56bcf2b6751b48e2b39bab8a83 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_50ba6c56bcf2b6751b48e2b39bab8a83.color = d3.scale.threshold()\\n\",\n       \"              .domain([3.856338028, 4.011243496220441, 4.166148964440882, 4.321054432661323, 4.475959900881763, 4.630865369102205, 4.785770837322645, 4.940676305543086, 5.095581773763527, 5.2504872419839685, 5.405392710204409, 5.5602981784248495, 5.715203646645291, 5.870109114865731, 6.025014583086172, 6.179920051306613, 6.334825519527055, 6.489730987747495, 6.644636455967936, 6.799541924188377, 6.954447392408818, 7.109352860629259, 7.264258328849699, 7.419163797070141, 7.574069265290581, 7.728974733511022, 7.883880201731463, 8.038785669951904, 8.193691138172344, 8.348596606392785, 8.503502074613227, 8.658407542833668, 8.813313011054108, 8.96821847927455, 9.12312394749499, 9.27802941571543, 9.432934883935872, 9.587840352156313, 9.742745820376754, 9.897651288597194, 10.052556756817635, 10.207462225038077, 10.362367693258518, 10.517273161478958, 10.672178629699399, 10.82708409791984, 10.981989566140282, 11.136895034360721, 11.291800502581163, 11.446705970801604, 11.601611439022044, 11.756516907242485, 11.911422375462925, 12.066327843683366, 12.221233311903807, 12.376138780124247, 12.531044248344688, 12.68594971656513, 12.840855184785571, 12.99576065300601, 13.150666121226452, 13.305571589446894, 13.460477057667335, 13.615382525887775, 13.770287994108216, 13.925193462328657, 14.080098930549097, 14.235004398769538, 14.38990986698998, 14.544815335210421, 14.69972080343086, 14.854626271651302, 15.009531739871743, 15.164437208092185, 15.319342676312624, 15.474248144533066, 15.629153612753507, 15.784059080973948, 15.938964549194388, 16.09387001741483, 16.24877548563527, 16.403680953855712, 16.558586422076154, 16.713491890296595, 16.868397358517036, 17.023302826737474, 17.178208294957916, 17.333113763178357, 17.4880192313988, 17.64292469961924, 17.79783016783968, 17.952735636060122, 18.107641104280564, 18.262546572501, 18.417452040721443, 18.572357508941884, 18.727262977162326, 18.882168445382767, 19.03707391360321, 19.19197938182365, 19.346884850044088, 19.50179031826453, 19.65669578648497, 19.811601254705412, 19.96650672292585, 20.12141219114629, 20.276317659366732, 20.431223127587174, 20.586128595807615, 20.741034064028057, 20.895939532248494, 21.050845000468936, 21.205750468689377, 21.36065593690982, 21.51556140513026, 21.6704668733507, 21.825372341571143, 21.98027780979158, 22.135183278012022, 22.290088746232463, 22.444994214452905, 22.599899682673346, 22.754805150893787, 22.90971061911423, 23.06461608733467, 23.219521555555108, 23.37442702377555, 23.52933249199599, 23.684237960216432, 23.839143428436874, 23.994048896657315, 24.148954364877756, 24.303859833098194, 24.458765301318635, 24.613670769539077, 24.768576237759518, 24.92348170597996, 25.0783871742004, 25.233292642420842, 25.388198110641284, 25.54310357886172, 25.698009047082163, 25.852914515302604, 26.007819983523046, 26.162725451743487, 26.31763091996393, 26.47253638818437, 26.627441856404808, 26.78234732462525, 26.93725279284569, 27.092158261066132, 27.247063729286573, 27.401969197507015, 27.556874665727456, 27.711780133947897, 27.866685602168335, 28.021591070388777, 28.176496538609218, 28.33140200682966, 28.4863074750501, 28.641212943270542, 28.796118411490983, 28.95102387971142, 29.105929347931863, 29.260834816152304, 29.415740284372745, 29.570645752593187, 29.725551220813628, 29.88045668903407, 30.03536215725451, 30.19026762547495, 30.34517309369539, 30.50007856191583, 30.654984030136273, 30.809889498356714, 30.964794966577156, 31.119700434797597, 31.274605903018035, 31.429511371238476, 31.584416839458918, 31.73932230767936, 31.8942277758998, 32.04913324412024, 32.20403871234068, 32.358944180561124, 32.513849648781566, 32.66875511700201, 32.82366058522245, 32.97856605344289, 33.13347152166333, 33.28837698988377, 33.443282458104214, 33.59818792632465, 33.75309339454509, 33.90799886276553, 34.06290433098597, 34.217809799206414, 34.372715267426855, 34.5276207356473, 34.68252620386774, 34.83743167208817, 34.992337140308614, 35.147242608529055, 35.302148076749496, 35.45705354496994, 35.61195901319038, 35.76686448141082, 35.92176994963127, 36.0766754178517, 36.231580886072145, 36.386486354292586, 36.54139182251303, 36.69629729073347, 36.85120275895391, 37.00610822717435, 37.16101369539479, 37.315919163615234, 37.470824631835676, 37.62573010005612, 37.78063556827655, 37.93554103649699, 38.090446504717434, 38.245351972937875, 38.40025744115832, 38.55516290937876, 38.7100683775992, 38.86497384581964, 39.01987931404008, 39.174784782260524, 39.329690250480965, 39.48459571870141, 39.63950118692185, 39.79440665514229, 39.94931212336273, 40.104217591583165, 40.259123059803606, 40.41402852802405, 40.56893399624449, 40.72383946446493, 40.87874493268537, 41.03365040090581, 41.188555869126255, 41.343461337346696, 41.49836680556714, 41.65327227378758, 41.80817774200802, 41.96308321022846, 42.1179886784489, 42.272894146669344, 42.42779961488978, 42.58270508311022, 42.73761055133066, 42.8925160195511, 43.047421487771544, 43.202326955991985, 43.35723242421243, 43.51213789243287, 43.66704336065331, 43.82194882887375, 43.97685429709419, 44.131759765314634, 44.286665233535075, 44.441570701755516, 44.59647616997596, 44.75138163819639, 44.90628710641683, 45.061192574637275, 45.216098042857716, 45.37100351107816, 45.5259089792986, 45.68081444751904, 45.83571991573948, 45.99062538395992, 46.145530852180364, 46.300436320400806, 46.45534178862125, 46.61024725684169, 46.76515272506213, 46.92005819328257, 47.074963661503006, 47.22986912972345, 47.38477459794389, 47.53968006616433, 47.69458553438477, 47.84949100260521, 48.004396470825654, 48.159301939046095, 48.31420740726654, 48.46911287548698, 48.62401834370742, 48.77892381192786, 48.9338292801483, 49.08873474836874, 49.243640216589185, 49.39854568480962, 49.55345115303006, 49.7083566212505, 49.86326208947094, 50.018167557691385, 50.173073025911826, 50.32797849413227, 50.48288396235271, 50.63778943057315, 50.79269489879359, 50.94760036701403, 51.102505835234474, 51.257411303454916, 51.41231677167536, 51.5672222398958, 51.72212770811623, 51.877033176336674, 52.031938644557115, 52.18684411277756, 52.341749580998, 52.49665504921844, 52.65156051743888, 52.80646598565932, 52.961371453879764, 53.116276922100205, 53.27118239032065, 53.42608785854109, 53.58099332676153, 53.73589879498197, 53.89080426320241, 54.045709731422846, 54.20061519964329, 54.35552066786373, 54.51042613608417, 54.66533160430461, 54.82023707252505, 54.975142540745495, 55.130048008965936, 55.28495347718638, 55.43985894540682, 55.59476441362726, 55.7496698818477, 55.90457535006814, 56.059480818288584, 56.214386286509026, 56.36929175472946, 56.5241972229499, 56.67910269117034, 56.834008159390784, 56.988913627611225, 57.14381909583167, 57.29872456405211, 57.45363003227255, 57.60853550049299, 57.76344096871343, 57.918346436933874, 58.073251905154315, 58.228157373374756, 58.3830628415952, 58.53796830981564, 58.69287377803607, 58.847779246256515, 59.002684714476956, 59.1575901826974, 59.31249565091784, 59.46740111913828, 59.62230658735872, 59.77721205557916, 59.932117523799604, 60.087022992020046, 60.24192846024049, 60.39683392846093, 60.55173939668137, 60.70664486490181, 60.86155033312225, 61.01645580134269, 61.17136126956313, 61.32626673778357, 61.48117220600401, 61.63607767422445, 61.790983142444894, 61.945888610665335, 62.10079407888578, 62.25569954710622, 62.41060501532666, 62.5655104835471, 62.72041595176754, 62.87532141998798, 63.030226888208425, 63.185132356428866, 63.3400378246493, 63.49494329286974, 63.64984876109018, 63.804754229310625, 63.959659697531066, 64.1145651657515, 64.26947063397195, 64.42437610219238, 64.57928157041283, 64.73418703863327, 64.88909250685371, 65.04399797507415, 65.1989034432946, 65.35380891151503, 65.50871437973548, 65.66361984795591, 65.81852531617635, 65.97343078439678, 66.12833625261723, 66.28324172083767, 66.43814718905811, 66.59305265727855, 66.747958125499, 66.90286359371943, 67.05776906193988, 67.21267453016031, 67.36757999838076, 67.5224854666012, 67.67739093482164, 67.83229640304208, 67.98720187126253, 68.14210733948296, 68.2970128077034, 68.45191827592384, 68.60682374414428, 68.76172921236473, 68.91663468058516, 69.07154014880561, 69.22644561702604, 69.3813510852465, 69.53625655346693, 69.69116202168736, 69.84606748990781, 70.00097295812824, 70.15587842634869, 70.31078389456913, 70.46568936278958, 70.62059483101001, 70.77550029923046, 70.93040576745089, 71.08531123567134, 71.24021670389178, 71.39512217211222, 71.55002764033266, 71.70493310855309, 71.85983857677354, 72.01474404499398, 72.16964951321442, 72.32455498143486, 72.4794604496553, 72.63436591787574, 72.78927138609619, 72.94417685431662, 73.09908232253707, 73.2539877907575, 73.40889325897795, 73.56379872719839, 73.71870419541884, 73.87360966363927, 74.0285151318597, 74.18342060008015, 74.33832606830059, 74.49323153652104, 74.64813700474147, 74.80304247296192, 74.95794794118235, 75.1128534094028, 75.26775887762324, 75.42266434584369, 75.57756981406412, 75.73247528228457, 75.887380750505, 76.04228621872545, 76.19719168694589, 76.35209715516632, 76.50700262338677, 76.6619080916072, 76.81681355982765, 76.97171902804808, 77.12662449626853, 77.28152996448897, 77.43643543270942, 77.59134090092985, 77.7462463691503, 77.90115183737073, 78.05605730559118, 78.21096277381162, 78.36586824203206, 78.5207737102525, 78.67567917847293, 78.83058464669338, 78.98549011491382, 79.14039558313426, 79.2953010513547, 79.45020651957515, 79.60511198779558, 79.76001745601603, 79.91492292423646, 80.06982839245691, 80.22473386067735, 80.3796393288978, 80.53454479711823, 80.68945026533868, 80.84435573355911, 80.99926120177955, 81.15416667])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_50ba6c56bcf2b6751b48e2b39bab8a83.x = d3.scale.linear()\\n\",\n       \"              .domain([3.856338028, 81.15416667])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_50ba6c56bcf2b6751b48e2b39bab8a83.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_50ba6c56bcf2b6751b48e2b39bab8a83.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_50ba6c56bcf2b6751b48e2b39bab8a83.legend.addTo(map_230c970e6af5698c25e08a2fbb6c6032);\\n\",\n       \"\\n\",\n       \"    color_map_50ba6c56bcf2b6751b48e2b39bab8a83.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_50ba6c56bcf2b6751b48e2b39bab8a83.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([3.856338028, &#x27;&#x27;, &#x27;&#x27;, 15.451012324299999, &#x27;&#x27;, &#x27;&#x27;, 27.045686620599998, &#x27;&#x27;, &#x27;&#x27;, 38.6403609169, &#x27;&#x27;, &#x27;&#x27;, 50.2350352132, &#x27;&#x27;, &#x27;&#x27;, 61.8297095095, &#x27;&#x27;, &#x27;&#x27;, 73.42438380579999, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_50ba6c56bcf2b6751b48e2b39bab8a83.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_50ba6c56bcf2b6751b48e2b39bab8a83.g = color_map_50ba6c56bcf2b6751b48e2b39bab8a83.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_50ba6c56bcf2b6751b48e2b39bab8a83.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_50ba6c56bcf2b6751b48e2b39bab8a83.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_50ba6c56bcf2b6751b48e2b39bab8a83.x(color_map_50ba6c56bcf2b6751b48e2b39bab8a83.color.domain()[i - 1]) : color_map_50ba6c56bcf2b6751b48e2b39bab8a83.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_50ba6c56bcf2b6751b48e2b39bab8a83.color.domain().length ? color_map_50ba6c56bcf2b6751b48e2b39bab8a83.x(color_map_50ba6c56bcf2b6751b48e2b39bab8a83.color.domain()[i]) : color_map_50ba6c56bcf2b6751b48e2b39bab8a83.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_50ba6c56bcf2b6751b48e2b39bab8a83.g.call(color_map_50ba6c56bcf2b6751b48e2b39bab8a83.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13a5587ba80>\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.display_dataset(name='valid', y_column='PM2_5', colors=[\\n\",\n    \"                           'blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"测试集\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"id\": \"1923301AF2954BED8B9E3D2CC43B2AF8\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_8171d832b28ce8cdca0f005b3d2fcb60 {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_8171d832b28ce8cdca0f005b3d2fcb60&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_8171d832b28ce8cdca0f005b3d2fcb60 = L.map(\\n\",\n       \"                &quot;map_8171d832b28ce8cdca0f005b3d2fcb60&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_62cb068c280fb41420f9bcb3785520d8 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_62cb068c280fb41420f9bcb3785520d8.addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a8de5f03fc0af85346f557792ad295d = L.circleMarker(\\n\",\n       \"                [36.1942, 117.0881],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44f23677626617453baca4c9758d9288 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f235056997b075794b6fb3e44f3b679 = $(`&lt;div id=&quot;html_3f235056997b075794b6fb3e44f3b679&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0881             latitude:36.1942             PM2_5:48.14542936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44f23677626617453baca4c9758d9288.setContent(html_3f235056997b075794b6fb3e44f3b679);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a8de5f03fc0af85346f557792ad295d.bindPopup(popup_44f23677626617453baca4c9758d9288)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60c3edb348bcadcccf349f4e309b2e0d = L.circleMarker(\\n\",\n       \"                [28.56, 112.3439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef87cab59f00b3afc07627e43bd0bed9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f5626e4dcaf116eaff8e3e2810ce1ae = $(`&lt;div id=&quot;html_0f5626e4dcaf116eaff8e3e2810ce1ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3439             latitude:28.56             PM2_5:39.57022472             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef87cab59f00b3afc07627e43bd0bed9.setContent(html_0f5626e4dcaf116eaff8e3e2810ce1ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60c3edb348bcadcccf349f4e309b2e0d.bindPopup(popup_ef87cab59f00b3afc07627e43bd0bed9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ae06d275a498e34c5a57fb9a06427e0 = L.circleMarker(\\n\",\n       \"                [31.0386, 112.2211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13d49d3b8a8bf0f0de4e56595082709d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fb09c736f8bb9e907792f6e9847fbf4 = $(`&lt;div id=&quot;html_2fb09c736f8bb9e907792f6e9847fbf4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2211             latitude:31.0386             PM2_5:54.21848739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13d49d3b8a8bf0f0de4e56595082709d.setContent(html_2fb09c736f8bb9e907792f6e9847fbf4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ae06d275a498e34c5a57fb9a06427e0.bindPopup(popup_13d49d3b8a8bf0f0de4e56595082709d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7a62012aa1c564545265a738bceaea5 = L.circleMarker(\\n\",\n       \"                [32.1383, 114.0614],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_faa60d576553da5a4fe88ae3cd24fb05 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0fadbcc8e67c9e59810d0d02a17c9e3 = $(`&lt;div id=&quot;html_a0fadbcc8e67c9e59810d0d02a17c9e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0614             latitude:32.1383             PM2_5:51.8125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_faa60d576553da5a4fe88ae3cd24fb05.setContent(html_a0fadbcc8e67c9e59810d0d02a17c9e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7a62012aa1c564545265a738bceaea5.bindPopup(popup_faa60d576553da5a4fe88ae3cd24fb05)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f04acb50db38c5911ff96229d0bf30f = L.circleMarker(\\n\",\n       \"                [36.67, 116.93],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6714891f2c0d5ca47b0f04e183998f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a701516f2f29c5cd849aa7c78859c352 = $(`&lt;div id=&quot;html_a701516f2f29c5cd849aa7c78859c352&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.93             latitude:36.67             PM2_5:51.10704225             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6714891f2c0d5ca47b0f04e183998f7.setContent(html_a701516f2f29c5cd849aa7c78859c352);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f04acb50db38c5911ff96229d0bf30f.bindPopup(popup_d6714891f2c0d5ca47b0f04e183998f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26749b74e95774059ec7deeb94742493 = L.circleMarker(\\n\",\n       \"                [28.6542, 121.419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad0b211bc3253bab9bb6c8bf6e92e3f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e733cc8ee56a071165a8afefea73d06 = $(`&lt;div id=&quot;html_6e733cc8ee56a071165a8afefea73d06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.419             latitude:28.6542             PM2_5:31.10814607             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad0b211bc3253bab9bb6c8bf6e92e3f3.setContent(html_6e733cc8ee56a071165a8afefea73d06);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26749b74e95774059ec7deeb94742493.bindPopup(popup_ad0b211bc3253bab9bb6c8bf6e92e3f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e0203aa9d56690fff4a80450d9a93f4 = L.circleMarker(\\n\",\n       \"                [28.2642, 117.0564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d71c0d6c0c6b423254748ca3e6fff4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7841169aac34a804abc519b2a3159fd7 = $(`&lt;div id=&quot;html_7841169aac34a804abc519b2a3159fd7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0564             latitude:28.2642             PM2_5:34.52683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d71c0d6c0c6b423254748ca3e6fff4a.setContent(html_7841169aac34a804abc519b2a3159fd7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e0203aa9d56690fff4a80450d9a93f4.bindPopup(popup_0d71c0d6c0c6b423254748ca3e6fff4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d287235ed2dda3a5da4cb90fcc307c64 = L.circleMarker(\\n\",\n       \"                [34.6511, 112.3939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_344cc81ec8b65367ddce9a8ecea55ee1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f5f8e6c189df5f57837c6215f73575b8 = $(`&lt;div id=&quot;html_f5f8e6c189df5f57837c6215f73575b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3939             latitude:34.6511             PM2_5:64.64325843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_344cc81ec8b65367ddce9a8ecea55ee1.setContent(html_f5f8e6c189df5f57837c6215f73575b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d287235ed2dda3a5da4cb90fcc307c64.bindPopup(popup_344cc81ec8b65367ddce9a8ecea55ee1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adc273f65b91bcdd8ad1300ffbe59c96 = L.circleMarker(\\n\",\n       \"                [25.067, 102.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a6905ca19974525b92f10edddd132be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb7b88607083a756b745690077e91836 = $(`&lt;div id=&quot;html_eb7b88607083a756b745690077e91836&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.681             latitude:25.067             PM2_5:25.84722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a6905ca19974525b92f10edddd132be.setContent(html_eb7b88607083a756b745690077e91836);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adc273f65b91bcdd8ad1300ffbe59c96.bindPopup(popup_1a6905ca19974525b92f10edddd132be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_650183bfbd416d1db0891309b050480b = L.circleMarker(\\n\",\n       \"                [23.1331, 113.26],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49d65a89c245bd1e97e55a9b2d9ef726 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4e37f6ea1b927ee709a95a12f36d1be = $(`&lt;div id=&quot;html_d4e37f6ea1b927ee709a95a12f36d1be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.26             latitude:23.1331             PM2_5:35.90896359             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49d65a89c245bd1e97e55a9b2d9ef726.setContent(html_d4e37f6ea1b927ee709a95a12f36d1be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_650183bfbd416d1db0891309b050480b.bindPopup(popup_49d65a89c245bd1e97e55a9b2d9ef726)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_baeab9d028703b51bacffc56bc2b9aec = L.circleMarker(\\n\",\n       \"                [23.06, 113.7480556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ecfdb3d81b873524639e6832e0e9416f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e18642a7e44ceca782080eea5a585b4 = $(`&lt;div id=&quot;html_7e18642a7e44ceca782080eea5a585b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7480556             latitude:23.06             PM2_5:39.63445378             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ecfdb3d81b873524639e6832e0e9416f.setContent(html_7e18642a7e44ceca782080eea5a585b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_baeab9d028703b51bacffc56bc2b9aec.bindPopup(popup_ecfdb3d81b873524639e6832e0e9416f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ef6054abe9ac09919ed5e7c62cfff1d = L.circleMarker(\\n\",\n       \"                [32.8928, 115.8275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7842b5a0b21a3f2f24af6b3bb7d6062 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67f158d5680fa288d49b46ded5fd9b5a = $(`&lt;div id=&quot;html_67f158d5680fa288d49b46ded5fd9b5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8275             latitude:32.8928             PM2_5:51.21148459             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7842b5a0b21a3f2f24af6b3bb7d6062.setContent(html_67f158d5680fa288d49b46ded5fd9b5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ef6054abe9ac09919ed5e7c62cfff1d.bindPopup(popup_b7842b5a0b21a3f2f24af6b3bb7d6062)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3838ba6f18a291ba9107c90c27882dc = L.circleMarker(\\n\",\n       \"                [27.6231, 113.8447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f2258eb1f18857801ab90ce9cdfdeed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abeb1938180006392112488dc457a44d = $(`&lt;div id=&quot;html_abeb1938180006392112488dc457a44d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8447             latitude:27.6231             PM2_5:47.67086835             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f2258eb1f18857801ab90ce9cdfdeed.setContent(html_abeb1938180006392112488dc457a44d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3838ba6f18a291ba9107c90c27882dc.bindPopup(popup_6f2258eb1f18857801ab90ce9cdfdeed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2561e9bc2614b1c8bba10e4bd19cc844 = L.circleMarker(\\n\",\n       \"                [36.2403, 120.4001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07c91f3ee713995d8ca2569a506bf904 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb28a55b189530559bec54508beff5eb = $(`&lt;div id=&quot;html_cb28a55b189530559bec54508beff5eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4001             latitude:36.2403             PM2_5:30.67             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07c91f3ee713995d8ca2569a506bf904.setContent(html_cb28a55b189530559bec54508beff5eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2561e9bc2614b1c8bba10e4bd19cc844.bindPopup(popup_07c91f3ee713995d8ca2569a506bf904)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6cc238c30a99361cd8a1192bf303b2ca = L.circleMarker(\\n\",\n       \"                [31.8531, 106.7594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f9bf4bc82b312fc7e5fdbb01785dcce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbb8fb4f3f5b58f6c18642b85eff314a = $(`&lt;div id=&quot;html_dbb8fb4f3f5b58f6c18642b85eff314a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7594             latitude:31.8531             PM2_5:34.7867036             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f9bf4bc82b312fc7e5fdbb01785dcce.setContent(html_dbb8fb4f3f5b58f6c18642b85eff314a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6cc238c30a99361cd8a1192bf303b2ca.bindPopup(popup_7f9bf4bc82b312fc7e5fdbb01785dcce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fee05cc2f6b6993f8875f67bf16dfccc = L.circleMarker(\\n\",\n       \"                [41.7192, 86.2022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b59b39a091d932760f76b3c2dda9eebd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6184edf9afdefc61358edd4977637107 = $(`&lt;div id=&quot;html_6184edf9afdefc61358edd4977637107&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.2022             latitude:41.7192             PM2_5:52.89481268             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b59b39a091d932760f76b3c2dda9eebd.setContent(html_6184edf9afdefc61358edd4977637107);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fee05cc2f6b6993f8875f67bf16dfccc.bindPopup(popup_b59b39a091d932760f76b3c2dda9eebd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_30b76fc44967480c44bdd660b42c6cb1 = L.circleMarker(\\n\",\n       \"                [34.2324, 108.94],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3690ecc4ba23dbd3c523bbe64282779 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7e1af995b759622891b5e57ae0cf026 = $(`&lt;div id=&quot;html_e7e1af995b759622891b5e57ae0cf026&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.94             latitude:34.2324             PM2_5:66.77361111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3690ecc4ba23dbd3c523bbe64282779.setContent(html_e7e1af995b759622891b5e57ae0cf026);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_30b76fc44967480c44bdd660b42c6cb1.bindPopup(popup_e3690ecc4ba23dbd3c523bbe64282779)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51bd6d27d598b5d991a33bfb72a1cfa8 = L.circleMarker(\\n\",\n       \"                [31.7694, 120.0469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6681b8a2cf31a0b647414f0cbcf1b641 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30eea837ff4865d53fa1b7425ee5bd9c = $(`&lt;div id=&quot;html_30eea837ff4865d53fa1b7425ee5bd9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.0469             latitude:31.7694             PM2_5:46.64772727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6681b8a2cf31a0b647414f0cbcf1b641.setContent(html_30eea837ff4865d53fa1b7425ee5bd9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51bd6d27d598b5d991a33bfb72a1cfa8.bindPopup(popup_6681b8a2cf31a0b647414f0cbcf1b641)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_178f4686c688da2f8a1e125724e3115b = L.circleMarker(\\n\",\n       \"                [46.3991, 124.8847],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e1dcccae0633df02550f7d0b497124e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aedf43b53953d587561de3256d7382d3 = $(`&lt;div id=&quot;html_aedf43b53953d587561de3256d7382d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8847             latitude:46.3991             PM2_5:22.25633803             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e1dcccae0633df02550f7d0b497124e.setContent(html_aedf43b53953d587561de3256d7382d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_178f4686c688da2f8a1e125724e3115b.bindPopup(popup_4e1dcccae0633df02550f7d0b497124e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a606025fae4fa302e90c3dd0692d6ced = L.circleMarker(\\n\",\n       \"                [41.8625, 124.0383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c722797f2d76cb463f5b809530878829 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9032b2f2ead25143c3dd51444e510008 = $(`&lt;div id=&quot;html_9032b2f2ead25143c3dd51444e510008&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.0383             latitude:41.8625             PM2_5:29.60694444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c722797f2d76cb463f5b809530878829.setContent(html_9032b2f2ead25143c3dd51444e510008);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a606025fae4fa302e90c3dd0692d6ced.bindPopup(popup_c722797f2d76cb463f5b809530878829)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83a3c76cc718271d3ad1af1fa9a0a479 = L.circleMarker(\\n\",\n       \"                [42.0352, 119.2654],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f89cce53c8901b1dbedfda9612f192cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc7acc806192962922f43d787b6f232b = $(`&lt;div id=&quot;html_cc7acc806192962922f43d787b6f232b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.2654             latitude:42.0352             PM2_5:35.10584958             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f89cce53c8901b1dbedfda9612f192cd.setContent(html_cc7acc806192962922f43d787b6f232b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83a3c76cc718271d3ad1af1fa9a0a479.bindPopup(popup_f89cce53c8901b1dbedfda9612f192cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa6eab2f9898c5bb283da6bae298945f = L.circleMarker(\\n\",\n       \"                [29.8211, 114.3231],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f7ddf8c1191d7d374b6ceeabfc782c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a469db0e3357e7aab8007a826ff8d9e = $(`&lt;div id=&quot;html_2a469db0e3357e7aab8007a826ff8d9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3231             latitude:29.8211             PM2_5:40.85097493             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f7ddf8c1191d7d374b6ceeabfc782c3.setContent(html_2a469db0e3357e7aab8007a826ff8d9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa6eab2f9898c5bb283da6bae298945f.bindPopup(popup_1f7ddf8c1191d7d374b6ceeabfc782c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65b7a19ddf4ae1a0ccea0b5591a40c8d = L.circleMarker(\\n\",\n       \"                [28.7867, 104.6061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d90a142ae073525ee2b880c5147b507d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1457005a249576066559cf18d38d4e7a = $(`&lt;div id=&quot;html_1457005a249576066559cf18d38d4e7a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6061             latitude:28.7867             PM2_5:50.48179272             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d90a142ae073525ee2b880c5147b507d.setContent(html_1457005a249576066559cf18d38d4e7a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65b7a19ddf4ae1a0ccea0b5591a40c8d.bindPopup(popup_d90a142ae073525ee2b880c5147b507d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8234fca0e1dab7df996c3d044be0b735 = L.circleMarker(\\n\",\n       \"                [45.6289, 122.8444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ec650f5506bd221d4f9ba3d7484f577 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0061790a10d0f810d0e68e9ee6c3cb0 = $(`&lt;div id=&quot;html_b0061790a10d0f810d0e68e9ee6c3cb0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.8444             latitude:45.6289             PM2_5:27.69308357             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ec650f5506bd221d4f9ba3d7484f577.setContent(html_b0061790a10d0f810d0e68e9ee6c3cb0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8234fca0e1dab7df996c3d044be0b735.bindPopup(popup_6ec650f5506bd221d4f9ba3d7484f577)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e90589f1c3c0bebd6767673131d69e9e = L.circleMarker(\\n\",\n       \"                [40.7866, 111.551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78ba192795e307b34bf4057905c22351 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83c55549def5de7efe97d0faa1eee225 = $(`&lt;div id=&quot;html_83c55549def5de7efe97d0faa1eee225&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.551             latitude:40.7866             PM2_5:47.61559889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78ba192795e307b34bf4057905c22351.setContent(html_83c55549def5de7efe97d0faa1eee225);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e90589f1c3c0bebd6767673131d69e9e.bindPopup(popup_78ba192795e307b34bf4057905c22351)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c82780ee14f281795f1b207b7587e70 = L.circleMarker(\\n\",\n       \"                [45.7319, 126.685],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6617c3875ab01b6096e137bba76786c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f292d510776adffc24001bad96f54382 = $(`&lt;div id=&quot;html_f292d510776adffc24001bad96f54382&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.685             latitude:45.7319             PM2_5:35.66852368             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6617c3875ab01b6096e137bba76786c5.setContent(html_f292d510776adffc24001bad96f54382);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c82780ee14f281795f1b207b7587e70.bindPopup(popup_6617c3875ab01b6096e137bba76786c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b473af9155a76886b9ee869353535cb8 = L.circleMarker(\\n\",\n       \"                [35.94, 104.148],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7872d02ca5f1f495798e42522d7c3d08 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fadfd8b9b06a2a0242e5f4d71516cce6 = $(`&lt;div id=&quot;html_fadfd8b9b06a2a0242e5f4d71516cce6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.148             latitude:35.94             PM2_5:27.50283286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7872d02ca5f1f495798e42522d7c3d08.setContent(html_fadfd8b9b06a2a0242e5f4d71516cce6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b473af9155a76886b9ee869353535cb8.bindPopup(popup_7872d02ca5f1f495798e42522d7c3d08)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b4f9a2e65403bec827efe81f9a693d3 = L.circleMarker(\\n\",\n       \"                [34.1781, 117.1694],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe32c523cddbe2f04c06269991c435ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f2fd10994b38a68374337047d04e059 = $(`&lt;div id=&quot;html_7f2fd10994b38a68374337047d04e059&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1694             latitude:34.1781             PM2_5:63.68130312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe32c523cddbe2f04c06269991c435ec.setContent(html_7f2fd10994b38a68374337047d04e059);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b4f9a2e65403bec827efe81f9a693d3.bindPopup(popup_fe32c523cddbe2f04c06269991c435ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0e9086e179e82f9541629791548e16d = L.circleMarker(\\n\",\n       \"                [23.2536, 116.4019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90715949e13dbf47d77dc36360b20b56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a0260882ff11d1d663c640c86a68c6b = $(`&lt;div id=&quot;html_3a0260882ff11d1d663c640c86a68c6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.4019             latitude:23.2536             PM2_5:29.83704735             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90715949e13dbf47d77dc36360b20b56.setContent(html_3a0260882ff11d1d663c640c86a68c6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0e9086e179e82f9541629791548e16d.bindPopup(popup_90715949e13dbf47d77dc36360b20b56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a766717176865c2ecc010fcb6b2227f = L.circleMarker(\\n\",\n       \"                [32.41361, 119.458],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ba938e21c834744cfd03f9a9cc50c78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_595b612735ff5041b08251f24b45e055 = $(`&lt;div id=&quot;html_595b612735ff5041b08251f24b45e055&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.458             latitude:32.41361             PM2_5:47.77423823             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ba938e21c834744cfd03f9a9cc50c78.setContent(html_595b612735ff5041b08251f24b45e055);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a766717176865c2ecc010fcb6b2227f.bindPopup(popup_2ba938e21c834744cfd03f9a9cc50c78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a77446a3de00cd2f4fe7f8262751321c = L.circleMarker(\\n\",\n       \"                [26.0753, 119.315],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_565194d5d964985d6cdb59c244ae536d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c46df478bc24b731baebf3100d381b1 = $(`&lt;div id=&quot;html_9c46df478bc24b731baebf3100d381b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.315             latitude:26.0753             PM2_5:31.11871508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_565194d5d964985d6cdb59c244ae536d.setContent(html_9c46df478bc24b731baebf3100d381b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a77446a3de00cd2f4fe7f8262751321c.bindPopup(popup_565194d5d964985d6cdb59c244ae536d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9940e51828455774d7db3054d7e84ea0 = L.circleMarker(\\n\",\n       \"                [37.85, 113.5158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13e9a2aaeab4300198184cb56db36180 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52160615d17fd9902f9eda20cd1431ad = $(`&lt;div id=&quot;html_52160615d17fd9902f9eda20cd1431ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5158             latitude:37.85             PM2_5:48.72804533             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13e9a2aaeab4300198184cb56db36180.setContent(html_52160615d17fd9902f9eda20cd1431ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9940e51828455774d7db3054d7e84ea0.bindPopup(popup_13e9a2aaeab4300198184cb56db36180)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af21a93e03561f759ef4fbb2a5f7debf = L.circleMarker(\\n\",\n       \"                [25.8481, 114.9461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d79a0a46a9d14f26b14fc331165eece = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3851e1f4ce137080db8bf5942ef7be33 = $(`&lt;div id=&quot;html_3851e1f4ce137080db8bf5942ef7be33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9461             latitude:25.8481             PM2_5:45.10138889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d79a0a46a9d14f26b14fc331165eece.setContent(html_3851e1f4ce137080db8bf5942ef7be33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af21a93e03561f759ef4fbb2a5f7debf.bindPopup(popup_7d79a0a46a9d14f26b14fc331165eece)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c93b363f566260beccb32621944f0cb1 = L.circleMarker(\\n\",\n       \"                [38.3344, 109.7414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e259b59f36b22f14ccce3c1087f0ab59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22d6afeadca8bc01b21f5974d743e885 = $(`&lt;div id=&quot;html_22d6afeadca8bc01b21f5974d743e885&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7414             latitude:38.3344             PM2_5:28.8960114             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e259b59f36b22f14ccce3c1087f0ab59.setContent(html_22d6afeadca8bc01b21f5974d743e885);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c93b363f566260beccb32621944f0cb1.bindPopup(popup_e259b59f36b22f14ccce3c1087f0ab59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ebabe2c4b5ab321245585fdbfaee32dd = L.circleMarker(\\n\",\n       \"                [31.6842, 120.288],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7983695c8c43db53b21abb92dc4a7220 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_695d56759fa66bb0120c91f89cb38ed5 = $(`&lt;div id=&quot;html_695d56759fa66bb0120c91f89cb38ed5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.288             latitude:31.6842             PM2_5:47.45224719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7983695c8c43db53b21abb92dc4a7220.setContent(html_695d56759fa66bb0120c91f89cb38ed5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ebabe2c4b5ab321245585fdbfaee32dd.bindPopup(popup_7983695c8c43db53b21abb92dc4a7220)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af956182a210355b12566e2ca8244697 = L.circleMarker(\\n\",\n       \"                [23.4714, 116.7519],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b48190a482dd8ddd1432afc69ccfcf80 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ceb8d632210bbb98666f3c4aac55fd25 = $(`&lt;div id=&quot;html_ceb8d632210bbb98666f3c4aac55fd25&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7519             latitude:23.4714             PM2_5:30.35614525             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b48190a482dd8ddd1432afc69ccfcf80.setContent(html_ceb8d632210bbb98666f3c4aac55fd25);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af956182a210355b12566e2ca8244697.bindPopup(popup_b48190a482dd8ddd1432afc69ccfcf80)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eacef0add4a23b57b73e1135dee5c3c5 = L.circleMarker(\\n\",\n       \"                [45.5422, 126.979],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b535cc65230975c36c37960a63af0b53 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_63b85fb5ae0c39431507bd8b0963db23 = $(`&lt;div id=&quot;html_63b85fb5ae0c39431507bd8b0963db23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.979             latitude:45.5422             PM2_5:33.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b535cc65230975c36c37960a63af0b53.setContent(html_63b85fb5ae0c39431507bd8b0963db23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eacef0add4a23b57b73e1135dee5c3c5.bindPopup(popup_b535cc65230975c36c37960a63af0b53)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a155760dae976d39fadcbb08768bb4fd = L.circleMarker(\\n\",\n       \"                [36.1912, 113.1569],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b1933890c33a68cba72afa4a0d88336e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5dd43e9d914079c070ca02b1f9e4b4de = $(`&lt;div id=&quot;html_5dd43e9d914079c070ca02b1f9e4b4de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1569             latitude:36.1912             PM2_5:65.63509749             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b1933890c33a68cba72afa4a0d88336e.setContent(html_5dd43e9d914079c070ca02b1f9e4b4de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a155760dae976d39fadcbb08768bb4fd.bindPopup(popup_b1933890c33a68cba72afa4a0d88336e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86bd90e250b460973f4ac82de7548534 = L.circleMarker(\\n\",\n       \"                [29.4251, 113.1493],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e6b8fa3dde847fa587cef255a1fbbe9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b75b0dfd0a2192c7ca42ab41a2fdff4 = $(`&lt;div id=&quot;html_2b75b0dfd0a2192c7ca42ab41a2fdff4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1493             latitude:29.4251             PM2_5:49.36543909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e6b8fa3dde847fa587cef255a1fbbe9.setContent(html_2b75b0dfd0a2192c7ca42ab41a2fdff4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86bd90e250b460973f4ac82de7548534.bindPopup(popup_2e6b8fa3dde847fa587cef255a1fbbe9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6da9e77978e922e1d704fb884b3f862b = L.circleMarker(\\n\",\n       \"                [29.3864, 117.3097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52a720514d890e6976def409eb5ed810 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb0efb9ead01d5ce49d4a77833a42eb6 = $(`&lt;div id=&quot;html_fb0efb9ead01d5ce49d4a77833a42eb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3097             latitude:29.3864             PM2_5:26.33286119             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52a720514d890e6976def409eb5ed810.setContent(html_fb0efb9ead01d5ce49d4a77833a42eb6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6da9e77978e922e1d704fb884b3f862b.bindPopup(popup_52a720514d890e6976def409eb5ed810)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb8491ff169fcd21cf498c1e4b99fdf5 = L.circleMarker(\\n\",\n       \"                [27.7044, 111.9892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa89c5674a5cfc523996fbf6d3591360 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a191dded01ea459fbc60ff0f6951dabc = $(`&lt;div id=&quot;html_a191dded01ea459fbc60ff0f6951dabc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9892             latitude:27.7044             PM2_5:35.07983193             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa89c5674a5cfc523996fbf6d3591360.setContent(html_a191dded01ea459fbc60ff0f6951dabc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb8491ff169fcd21cf498c1e4b99fdf5.bindPopup(popup_fa89c5674a5cfc523996fbf6d3591360)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38a90fd31223cb71faa2d21265f7c4b0 = L.circleMarker(\\n\",\n       \"                [34.5814, 105.7281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e264cb314eae25bb22357d720c15c52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_75eeb77221f8d7dc500ce8fe7eccfbf0 = $(`&lt;div id=&quot;html_75eeb77221f8d7dc500ce8fe7eccfbf0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.7281             latitude:34.5814             PM2_5:30.97740113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e264cb314eae25bb22357d720c15c52.setContent(html_75eeb77221f8d7dc500ce8fe7eccfbf0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38a90fd31223cb71faa2d21265f7c4b0.bindPopup(popup_8e264cb314eae25bb22357d720c15c52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_257a17eff5c3bc031648061fa8773755 = L.circleMarker(\\n\",\n       \"                [36.11, 114.286],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db20107329c4d7cf803a157897e5d175 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f5bfa85c2cad04d09e8c682130e3cc3 = $(`&lt;div id=&quot;html_5f5bfa85c2cad04d09e8c682130e3cc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.286             latitude:36.11             PM2_5:68.70670391             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db20107329c4d7cf803a157897e5d175.setContent(html_5f5bfa85c2cad04d09e8c682130e3cc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_257a17eff5c3bc031648061fa8773755.bindPopup(popup_db20107329c4d7cf803a157897e5d175)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff7388ea05adbe93cf69d632ab18700f = L.circleMarker(\\n\",\n       \"                [26.5939, 104.89],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29f4b5fed90373c8ee8a715c43c03416 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d3559a6398a53860c9aba19b08c9379 = $(`&lt;div id=&quot;html_4d3559a6398a53860c9aba19b08c9379&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.89             latitude:26.5939             PM2_5:39.54929577             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29f4b5fed90373c8ee8a715c43c03416.setContent(html_4d3559a6398a53860c9aba19b08c9379);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff7388ea05adbe93cf69d632ab18700f.bindPopup(popup_29f4b5fed90373c8ee8a715c43c03416)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d465f49ec3d1e0ec81f98c39dddead82 = L.circleMarker(\\n\",\n       \"                [31.92, 120.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c25a90def7cc1868a931f8c97d446866 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_482eebaa6e9b9cae8186d825f7fde745 = $(`&lt;div id=&quot;html_482eebaa6e9b9cae8186d825f7fde745&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.268             latitude:31.92             PM2_5:54.32535211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c25a90def7cc1868a931f8c97d446866.setContent(html_482eebaa6e9b9cae8186d825f7fde745);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d465f49ec3d1e0ec81f98c39dddead82.bindPopup(popup_c25a90def7cc1868a931f8c97d446866)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a46bff10622473f0b821b01955f4b0f = L.circleMarker(\\n\",\n       \"                [37.68277778, 112.7194444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a90d672305425e43aa1d28aa3d359ed1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43816960ee2a3eda27cc1b7c125ce199 = $(`&lt;div id=&quot;html_43816960ee2a3eda27cc1b7c125ce199&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7194444             latitude:37.68277778             PM2_5:58.19134078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a90d672305425e43aa1d28aa3d359ed1.setContent(html_43816960ee2a3eda27cc1b7c125ce199);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a46bff10622473f0b821b01955f4b0f.bindPopup(popup_a90d672305425e43aa1d28aa3d359ed1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45fc2acfbc851c422e279bb81ec53e31 = L.circleMarker(\\n\",\n       \"                [34.4714, 100.2561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d63d7f628d3f95677c3395c6d00e311a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_637128e7016a435f82d370c7d5708745 = $(`&lt;div id=&quot;html_637128e7016a435f82d370c7d5708745&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2561             latitude:34.4714             PM2_5:27.10110803             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d63d7f628d3f95677c3395c6d00e311a.setContent(html_637128e7016a435f82d370c7d5708745);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45fc2acfbc851c422e279bb81ec53e31.bindPopup(popup_d63d7f628d3f95677c3395c6d00e311a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8624a097b0c3135c2af5520b49d786e5 = L.circleMarker(\\n\",\n       \"                [39.1495, 117.3916],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db9be12c16d65902615f40845fb78e29 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1353608e235a890ccca402ee56aa8147 = $(`&lt;div id=&quot;html_1353608e235a890ccca402ee56aa8147&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3916             latitude:39.1495             PM2_5:51.78892216             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db9be12c16d65902615f40845fb78e29.setContent(html_1353608e235a890ccca402ee56aa8147);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8624a097b0c3135c2af5520b49d786e5.bindPopup(popup_db9be12c16d65902615f40845fb78e29)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_210137d5b3e1d17d9d608e5b5dc3f60b = L.circleMarker(\\n\",\n       \"                [23.1422, 113.235],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0696b7dcb51e76a5fc8cde8d3b333011 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_28a6f91365f49dfbf5208dd51de7a8b4 = $(`&lt;div id=&quot;html_28a6f91365f49dfbf5208dd51de7a8b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.235             latitude:23.1422             PM2_5:38.90947075             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0696b7dcb51e76a5fc8cde8d3b333011.setContent(html_28a6f91365f49dfbf5208dd51de7a8b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_210137d5b3e1d17d9d608e5b5dc3f60b.bindPopup(popup_0696b7dcb51e76a5fc8cde8d3b333011)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dcb19a4930cc7e16209a0e55fdf21db2 = L.circleMarker(\\n\",\n       \"                [25.2697, 110.2819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39d94abec5be88b06486872ef388c67a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3ae81afddc03346c5f9c45dc84fd66b = $(`&lt;div id=&quot;html_a3ae81afddc03346c5f9c45dc84fd66b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2819             latitude:25.2697             PM2_5:39.11173184             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39d94abec5be88b06486872ef388c67a.setContent(html_a3ae81afddc03346c5f9c45dc84fd66b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dcb19a4930cc7e16209a0e55fdf21db2.bindPopup(popup_39d94abec5be88b06486872ef388c67a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbd53a24f072805a87115d78ad18a95c = L.circleMarker(\\n\",\n       \"                [23.8844, 106.6527],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e5321863f9d8d14c0b0f23a3af2807c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0257aef7d7c1188bdebddd3599d03f8e = $(`&lt;div id=&quot;html_0257aef7d7c1188bdebddd3599d03f8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6527             latitude:23.8844             PM2_5:41.93296089             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e5321863f9d8d14c0b0f23a3af2807c.setContent(html_0257aef7d7c1188bdebddd3599d03f8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbd53a24f072805a87115d78ad18a95c.bindPopup(popup_6e5321863f9d8d14c0b0f23a3af2807c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a8b346af3596299813b12dead2acdb6 = L.circleMarker(\\n\",\n       \"                [21.8586, 111.9786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_602f9a09091368e932847de622262f3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_714f3628c7d7fbd20f9c0d53595fa82e = $(`&lt;div id=&quot;html_714f3628c7d7fbd20f9c0d53595fa82e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9786             latitude:21.8586             PM2_5:30.71428571             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_602f9a09091368e932847de622262f3a.setContent(html_714f3628c7d7fbd20f9c0d53595fa82e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a8b346af3596299813b12dead2acdb6.bindPopup(popup_602f9a09091368e932847de622262f3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d0a4bfdf9525b5ee21d3e84461b7a87 = L.circleMarker(\\n\",\n       \"                [40.7514, 120.8392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e9d13be7b05cb842c97f96ac21b34b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a88c2c45c9affaae02bc36596f8e36ba = $(`&lt;div id=&quot;html_a88c2c45c9affaae02bc36596f8e36ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8392             latitude:40.7514             PM2_5:38.0140056             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e9d13be7b05cb842c97f96ac21b34b3.setContent(html_a88c2c45c9affaae02bc36596f8e36ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d0a4bfdf9525b5ee21d3e84461b7a87.bindPopup(popup_0e9d13be7b05cb842c97f96ac21b34b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a63d1f483b781c8ad8e384edc8e3b43c = L.circleMarker(\\n\",\n       \"                [35.7067, 107.6364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53cfa47af29da5d52e07692549ccdf5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_751c2e538c2118e281d154d22da91e61 = $(`&lt;div id=&quot;html_751c2e538c2118e281d154d22da91e61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6364             latitude:35.7067             PM2_5:30.4902507             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53cfa47af29da5d52e07692549ccdf5d.setContent(html_751c2e538c2118e281d154d22da91e61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a63d1f483b781c8ad8e384edc8e3b43c.bindPopup(popup_53cfa47af29da5d52e07692549ccdf5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e304e85ae4efb6b267fc5140955a4ee = L.circleMarker(\\n\",\n       \"                [42.8947, 125.1358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38dab40ba2e7e3eb5dd1c730f474b87e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9bb3fee74607b19abd4e8601d94a195 = $(`&lt;div id=&quot;html_b9bb3fee74607b19abd4e8601d94a195&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1358             latitude:42.8947             PM2_5:33.01549296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38dab40ba2e7e3eb5dd1c730f474b87e.setContent(html_b9bb3fee74607b19abd4e8601d94a195);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e304e85ae4efb6b267fc5140955a4ee.bindPopup(popup_38dab40ba2e7e3eb5dd1c730f474b87e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56896da8579162767de667fa7c9d2970 = L.circleMarker(\\n\",\n       \"                [30.8023, 106.0789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e62678b72d9d207b24d933802f5d0df9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_059263a5116afd24fb2f78a59c4311c9 = $(`&lt;div id=&quot;html_059263a5116afd24fb2f78a59c4311c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0789             latitude:30.8023             PM2_5:48.08472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e62678b72d9d207b24d933802f5d0df9.setContent(html_059263a5116afd24fb2f78a59c4311c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56896da8579162767de667fa7c9d2970.bindPopup(popup_e62678b72d9d207b24d933802f5d0df9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc87790639b0e5988946b95a2d23f14d = L.circleMarker(\\n\",\n       \"                [47.2753, 130.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc76f40b6c27dca76a0e87e6af5f4d4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd90a73e0eb50a6b5c8da9e04d8625da = $(`&lt;div id=&quot;html_fd90a73e0eb50a6b5c8da9e04d8625da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.261             latitude:47.2753             PM2_5:23.20251397             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc76f40b6c27dca76a0e87e6af5f4d4f.setContent(html_fd90a73e0eb50a6b5c8da9e04d8625da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc87790639b0e5988946b95a2d23f14d.bindPopup(popup_bc76f40b6c27dca76a0e87e6af5f4d4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78da5ef29e0224644e8281816cb17ad7 = L.circleMarker(\\n\",\n       \"                [37.5436, 121.3181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c34971e06fb897761b0193d21d5e2096 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_caf224ff490e6d39ffc9beb1dbb86ac2 = $(`&lt;div id=&quot;html_caf224ff490e6d39ffc9beb1dbb86ac2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.3181             latitude:37.5436             PM2_5:26.89346591             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c34971e06fb897761b0193d21d5e2096.setContent(html_caf224ff490e6d39ffc9beb1dbb86ac2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78da5ef29e0224644e8281816cb17ad7.bindPopup(popup_c34971e06fb897761b0193d21d5e2096)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8da6241c57685a592d52a8492cb10d15 = L.circleMarker(\\n\",\n       \"                [38.8516, 105.724],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54752ad8f1fc78c3668bd4f01c597d50 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0a6a87e167410d0b902ef8f65272e3d = $(`&lt;div id=&quot;html_d0a6a87e167410d0b902ef8f65272e3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.724             latitude:38.8516             PM2_5:29.55477528             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54752ad8f1fc78c3668bd4f01c597d50.setContent(html_d0a6a87e167410d0b902ef8f65272e3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8da6241c57685a592d52a8492cb10d15.bindPopup(popup_54752ad8f1fc78c3668bd4f01c597d50)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5fcc2dd2d4a3b850295f9e05f38bfbf = L.circleMarker(\\n\",\n       \"                [29.4892, 106.634],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_355a307c866f11d127573c3b283feb19 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99d89be9a4e0be265b501346b5f156b3 = $(`&lt;div id=&quot;html_99d89be9a4e0be265b501346b5f156b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.634             latitude:29.4892             PM2_5:39.38022284             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_355a307c866f11d127573c3b283feb19.setContent(html_99d89be9a4e0be265b501346b5f156b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5fcc2dd2d4a3b850295f9e05f38bfbf.bindPopup(popup_355a307c866f11d127573c3b283feb19)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3438d1cb8079b2616d321437148ffdc3 = L.circleMarker(\\n\",\n       \"                [28.9703, 111.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57c94c7fa711bfab7daa9d5802ec5bcd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f271f3b8789495ba3753b13fa837362 = $(`&lt;div id=&quot;html_1f271f3b8789495ba3753b13fa837362&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6975             latitude:28.9703             PM2_5:44.52442529             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57c94c7fa711bfab7daa9d5802ec5bcd.setContent(html_1f271f3b8789495ba3753b13fa837362);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3438d1cb8079b2616d321437148ffdc3.bindPopup(popup_57c94c7fa711bfab7daa9d5802ec5bcd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01b538c27b1628f3296177d93c512cbf = L.circleMarker(\\n\",\n       \"                [28.9404, 118.871],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e15f67842532ba6d13c0943e2bbd48e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e08c058ea9e46d2e7d525e15ab527cc3 = $(`&lt;div id=&quot;html_e08c058ea9e46d2e7d525e15ab527cc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.871             latitude:28.9404             PM2_5:32.40168539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e15f67842532ba6d13c0943e2bbd48e1.setContent(html_e08c058ea9e46d2e7d525e15ab527cc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01b538c27b1628f3296177d93c512cbf.bindPopup(popup_e15f67842532ba6d13c0943e2bbd48e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07f1900e75e15dd0597d0a1d26f332e2 = L.circleMarker(\\n\",\n       \"                [26.9089, 112.5328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1582add3ea383e7a1548e2293951f97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ce4068eefcf56d1d3099abc9be3041b = $(`&lt;div id=&quot;html_2ce4068eefcf56d1d3099abc9be3041b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5328             latitude:26.9089             PM2_5:42.46991404             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1582add3ea383e7a1548e2293951f97.setContent(html_2ce4068eefcf56d1d3099abc9be3041b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07f1900e75e15dd0597d0a1d26f332e2.bindPopup(popup_e1582add3ea383e7a1548e2293951f97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fa988841371e59d7308a295f83cf29f = L.circleMarker(\\n\",\n       \"                [30.89556, 120.0875],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbe335c48f5110ea1f198998c3ce5a84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74e571c53604c587dc13431b0eba6336 = $(`&lt;div id=&quot;html_74e571c53604c587dc13431b0eba6336&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.0875             latitude:30.89556             PM2_5:39.35434174             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbe335c48f5110ea1f198998c3ce5a84.setContent(html_74e571c53604c587dc13431b0eba6336);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fa988841371e59d7308a295f83cf29f.bindPopup(popup_bbe335c48f5110ea1f198998c3ce5a84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8cf9fa807c051c53fe4a2e3d8f1ca866 = L.circleMarker(\\n\",\n       \"                [43.91, 125.287],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d53e072c79a08d6f25d7cacb2bcaa119 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c59ca6cbb710976dbcf687f2c9cfe6d = $(`&lt;div id=&quot;html_3c59ca6cbb710976dbcf687f2c9cfe6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.287             latitude:43.91             PM2_5:31.19134078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d53e072c79a08d6f25d7cacb2bcaa119.setContent(html_3c59ca6cbb710976dbcf687f2c9cfe6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8cf9fa807c051c53fe4a2e3d8f1ca866.bindPopup(popup_d53e072c79a08d6f25d7cacb2bcaa119)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4394c1853d7c7620e7bf85d11b37c769 = L.circleMarker(\\n\",\n       \"                [39.1292, 106.7096],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80e744f5e137bf1ea2161f14e3a433d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c77eb9bf2ccc2f5c507f21589e93a39 = $(`&lt;div id=&quot;html_2c77eb9bf2ccc2f5c507f21589e93a39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7096             latitude:39.1292             PM2_5:40.22740113             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80e744f5e137bf1ea2161f14e3a433d5.setContent(html_2c77eb9bf2ccc2f5c507f21589e93a39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4394c1853d7c7620e7bf85d11b37c769.bindPopup(popup_80e744f5e137bf1ea2161f14e3a433d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c334792b391d94c18f83a36f0ea4788 = L.circleMarker(\\n\",\n       \"                [37.5136, 111.1297],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae3985cd8d1e28576de2e3a8423fca8c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93949e32b216aa2f5b046fb458064d07 = $(`&lt;div id=&quot;html_93949e32b216aa2f5b046fb458064d07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1297             latitude:37.5136             PM2_5:59.83844011             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae3985cd8d1e28576de2e3a8423fca8c.setContent(html_93949e32b216aa2f5b046fb458064d07);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c334792b391d94c18f83a36f0ea4788.bindPopup(popup_ae3985cd8d1e28576de2e3a8423fca8c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ccbce454a1efa7632da07a7da15c252 = L.circleMarker(\\n\",\n       \"                [28.7442, 115.813],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_695972b011dbefa0b273a6b20d83f88f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3ac19719210dd2a31af1ab28b2570a5 = $(`&lt;div id=&quot;html_a3ac19719210dd2a31af1ab28b2570a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.813             latitude:28.7442             PM2_5:28.46468927             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_695972b011dbefa0b273a6b20d83f88f.setContent(html_a3ac19719210dd2a31af1ab28b2570a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ccbce454a1efa7632da07a7da15c252.bindPopup(popup_695972b011dbefa0b273a6b20d83f88f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f2524d22d2c0ef537a5114e5f518fa8 = L.circleMarker(\\n\",\n       \"                [39.3514, 112.44],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a30d9f3869a9fc11a33a04b6086dd16e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8451423ac31d91a05981378e222341ae = $(`&lt;div id=&quot;html_8451423ac31d91a05981378e222341ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.44             latitude:39.3514             PM2_5:38.79971989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a30d9f3869a9fc11a33a04b6086dd16e.setContent(html_8451423ac31d91a05981378e222341ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f2524d22d2c0ef537a5114e5f518fa8.bindPopup(popup_a30d9f3869a9fc11a33a04b6086dd16e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_128065fbc96442e94f5063745519113e = L.circleMarker(\\n\",\n       \"                [31.96, 120.913],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_427f5a2a7f510e077ba98bc1075308b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb6299d8588784a9df28bb71616cf6f6 = $(`&lt;div id=&quot;html_cb6299d8588784a9df28bb71616cf6f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.913             latitude:31.96             PM2_5:38.12824207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_427f5a2a7f510e077ba98bc1075308b5.setContent(html_cb6299d8588784a9df28bb71616cf6f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_128065fbc96442e94f5063745519113e.bindPopup(popup_427f5a2a7f510e077ba98bc1075308b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9aaabdc75a4fcaabad2e61c07094cd5e = L.circleMarker(\\n\",\n       \"                [28.4622, 117.9511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fe007509e82139fd1f171320f24835b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0041f58fa67046a71d5ec76a99aa2f7 = $(`&lt;div id=&quot;html_e0041f58fa67046a71d5ec76a99aa2f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9511             latitude:28.4622             PM2_5:39.12359551             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fe007509e82139fd1f171320f24835b.setContent(html_e0041f58fa67046a71d5ec76a99aa2f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9aaabdc75a4fcaabad2e61c07094cd5e.bindPopup(popup_6fe007509e82139fd1f171320f24835b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f19837e4522da3ddb8fd6d508a20b5dd = L.circleMarker(\\n\",\n       \"                [41.7511, 86.1461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19c8043cdd4a18d01a08b3ae3ca3a3a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83f02e7a9fd8018133b6f31e2f1f2a1d = $(`&lt;div id=&quot;html_83f02e7a9fd8018133b6f31e2f1f2a1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.1461             latitude:41.7511             PM2_5:53.63764045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19c8043cdd4a18d01a08b3ae3ca3a3a9.setContent(html_83f02e7a9fd8018133b6f31e2f1f2a1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f19837e4522da3ddb8fd6d508a20b5dd.bindPopup(popup_19c8043cdd4a18d01a08b3ae3ca3a3a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b830e3e51d750dc721a1aaa47e987dca = L.circleMarker(\\n\",\n       \"                [28.6064, 115.9083],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e8ad500ae36bde92bd21ce483e2587e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc971056c672c170828ec3adf4885835 = $(`&lt;div id=&quot;html_fc971056c672c170828ec3adf4885835&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9083             latitude:28.6064             PM2_5:29.79859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e8ad500ae36bde92bd21ce483e2587e.setContent(html_fc971056c672c170828ec3adf4885835);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b830e3e51d750dc721a1aaa47e987dca.bindPopup(popup_7e8ad500ae36bde92bd21ce483e2587e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c83c6e0002c9471912c4c88c2932844 = L.circleMarker(\\n\",\n       \"                [36.2403, 120.6659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15ab7dc75d0ebea4ec98b872eaba70ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f03ef72fa1bacb4c39b979f7dd2c459 = $(`&lt;div id=&quot;html_8f03ef72fa1bacb4c39b979f7dd2c459&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.6659             latitude:36.2403             PM2_5:25.74107143             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15ab7dc75d0ebea4ec98b872eaba70ec.setContent(html_8f03ef72fa1bacb4c39b979f7dd2c459);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c83c6e0002c9471912c4c88c2932844.bindPopup(popup_15ab7dc75d0ebea4ec98b872eaba70ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8cc61127140cd8c0db3ee3770b47206f = L.circleMarker(\\n\",\n       \"                [28.6969, 115.973],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df634d30fb7f0789d0a55c27251d95c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5819824d331f543536c9fbec33f28cfb = $(`&lt;div id=&quot;html_5819824d331f543536c9fbec33f28cfb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.973             latitude:28.6969             PM2_5:37.09444444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df634d30fb7f0789d0a55c27251d95c8.setContent(html_5819824d331f543536c9fbec33f28cfb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8cc61127140cd8c0db3ee3770b47206f.bindPopup(popup_df634d30fb7f0789d0a55c27251d95c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b19cfd3a943ece021c9063514d8f38dc = L.circleMarker(\\n\",\n       \"                [41.2553, 123.15],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d9447cbf164d659c5eb436eed4c0358 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e1bc9fecdc0d2033af5a181df67f2a4 = $(`&lt;div id=&quot;html_0e1bc9fecdc0d2033af5a181df67f2a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.15             latitude:41.2553             PM2_5:28.93661972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d9447cbf164d659c5eb436eed4c0358.setContent(html_0e1bc9fecdc0d2033af5a181df67f2a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b19cfd3a943ece021c9063514d8f38dc.bindPopup(popup_7d9447cbf164d659c5eb436eed4c0358)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9229e32ff999402954caf746a58f19ef = L.circleMarker(\\n\",\n       \"                [41.7347, 123.2444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_299e241e7647ddbb950a0badc16ea65b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6815092cc06b52297f3bd3d45e2fd92 = $(`&lt;div id=&quot;html_b6815092cc06b52297f3bd3d45e2fd92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.2444             latitude:41.7347             PM2_5:32.5238764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_299e241e7647ddbb950a0badc16ea65b.setContent(html_b6815092cc06b52297f3bd3d45e2fd92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9229e32ff999402954caf746a58f19ef.bindPopup(popup_299e241e7647ddbb950a0badc16ea65b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf60137dc50c006002f4bf2d9e6c3a8a = L.circleMarker(\\n\",\n       \"                [25.8226, 113.0116],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6727c8a0c6d64b6ec133f9c85786f96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77136b57a6e7ea91467b8bed14d42c5c = $(`&lt;div id=&quot;html_77136b57a6e7ea91467b8bed14d42c5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0116             latitude:25.8226             PM2_5:43.44583333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6727c8a0c6d64b6ec133f9c85786f96.setContent(html_77136b57a6e7ea91467b8bed14d42c5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf60137dc50c006002f4bf2d9e6c3a8a.bindPopup(popup_e6727c8a0c6d64b6ec133f9c85786f96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3bbe7db72ca9138bf6ba31239fda1690 = L.circleMarker(\\n\",\n       \"                [38.01777778, 114.5330556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb26a33941f313e651f74fd51f19dd64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1d4b2cbb58a5bf9308fa4b4fc9b1b81 = $(`&lt;div id=&quot;html_a1d4b2cbb58a5bf9308fa4b4fc9b1b81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5330556             latitude:38.01777778             PM2_5:68.20833333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb26a33941f313e651f74fd51f19dd64.setContent(html_a1d4b2cbb58a5bf9308fa4b4fc9b1b81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3bbe7db72ca9138bf6ba31239fda1690.bindPopup(popup_bb26a33941f313e651f74fd51f19dd64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc31a1ad26139812839c7d633a05ea8f = L.circleMarker(\\n\",\n       \"                [33.9461, 116.7844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b3d478235c266ebd26eb03c224419ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_411025b0d70e4cad16687f64a68d255d = $(`&lt;div id=&quot;html_411025b0d70e4cad16687f64a68d255d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7844             latitude:33.9461             PM2_5:55.20448179             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b3d478235c266ebd26eb03c224419ba.setContent(html_411025b0d70e4cad16687f64a68d255d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc31a1ad26139812839c7d633a05ea8f.bindPopup(popup_9b3d478235c266ebd26eb03c224419ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51ef0911b1aaa0de2b860379b1494ec1 = L.circleMarker(\\n\",\n       \"                [26.5017, 101.7453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81ad4e669bd572f9fb5f39dc077f1ed9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb5d8e2c63e50d0b55f60a26236923ca = $(`&lt;div id=&quot;html_fb5d8e2c63e50d0b55f60a26236923ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7453             latitude:26.5017             PM2_5:31.86768802             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81ad4e669bd572f9fb5f39dc077f1ed9.setContent(html_fb5d8e2c63e50d0b55f60a26236923ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51ef0911b1aaa0de2b860379b1494ec1.bindPopup(popup_81ad4e669bd572f9fb5f39dc077f1ed9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fda63bb2b2ac1a6861c7d9bba0bbc8c3 = L.circleMarker(\\n\",\n       \"                [37.7394, 112.5583],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b4d2a6e9d0d3c15bc8bdf64a59fc997 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e77fff1c8cff0077cec741027fbe67d = $(`&lt;div id=&quot;html_4e77fff1c8cff0077cec741027fbe67d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5583             latitude:37.7394             PM2_5:58.13936782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b4d2a6e9d0d3c15bc8bdf64a59fc997.setContent(html_4e77fff1c8cff0077cec741027fbe67d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fda63bb2b2ac1a6861c7d9bba0bbc8c3.bindPopup(popup_8b4d2a6e9d0d3c15bc8bdf64a59fc997)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f93c8e6b812d92a36f3c828ba905bb7d = L.circleMarker(\\n\",\n       \"                [36.6868, 117.0684],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5413f7d9763986da6cf31bb25d0d2b27 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abf0ac56b11c1980f3eeab3dbcd63d71 = $(`&lt;div id=&quot;html_abf0ac56b11c1980f3eeab3dbcd63d71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0684             latitude:36.6868             PM2_5:56.59705882             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5413f7d9763986da6cf31bb25d0d2b27.setContent(html_abf0ac56b11c1980f3eeab3dbcd63d71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f93c8e6b812d92a36f3c828ba905bb7d.bindPopup(popup_5413f7d9763986da6cf31bb25d0d2b27)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de68e9f54aafa756459528219cebf1e4 = L.circleMarker(\\n\",\n       \"                [47.3636, 123.9305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b568e7eb5234830170ba55d5959596e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae41d8ff0d33bad63911282211c9b8a7 = $(`&lt;div id=&quot;html_ae41d8ff0d33bad63911282211c9b8a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9305             latitude:47.3636             PM2_5:28.63649025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b568e7eb5234830170ba55d5959596e4.setContent(html_ae41d8ff0d33bad63911282211c9b8a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de68e9f54aafa756459528219cebf1e4.bindPopup(popup_b568e7eb5234830170ba55d5959596e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c96ff6dac39c5b1b52d241b34649755d = L.circleMarker(\\n\",\n       \"                [31.8572, 117.25],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c23b525bf2705465349495960e17cdf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f10911a43d2f8b42136ace9e49cfb482 = $(`&lt;div id=&quot;html_f10911a43d2f8b42136ace9e49cfb482&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.25             latitude:31.8572             PM2_5:49.77871148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c23b525bf2705465349495960e17cdf.setContent(html_f10911a43d2f8b42136ace9e49cfb482);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c96ff6dac39c5b1b52d241b34649755d.bindPopup(popup_4c23b525bf2705465349495960e17cdf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7776e80fc13c8d1b3ff7dea85a1c5863 = L.circleMarker(\\n\",\n       \"                [25.1081, 99.1678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6399cb99e54540c6f1deca8a6588bff9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c058749ccc322787c850fbfaa0eb3495 = $(`&lt;div id=&quot;html_c058749ccc322787c850fbfaa0eb3495&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.1678             latitude:25.1081             PM2_5:27.45338983             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6399cb99e54540c6f1deca8a6588bff9.setContent(html_c058749ccc322787c850fbfaa0eb3495);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7776e80fc13c8d1b3ff7dea85a1c5863.bindPopup(popup_6399cb99e54540c6f1deca8a6588bff9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7340c8a613f01959b30885320dc3cdd4 = L.circleMarker(\\n\",\n       \"                [40.8062, 111.7277],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2314412f92fa11b88964a72b277ca8b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_394a6c5289adc59d735e143b06f0c880 = $(`&lt;div id=&quot;html_394a6c5289adc59d735e143b06f0c880&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7277             latitude:40.8062             PM2_5:31.32590529             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2314412f92fa11b88964a72b277ca8b8.setContent(html_394a6c5289adc59d735e143b06f0c880);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7340c8a613f01959b30885320dc3cdd4.bindPopup(popup_2314412f92fa11b88964a72b277ca8b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_671701e8c081b8b03c641a998aa88a2b = L.circleMarker(\\n\",\n       \"                [37.8694, 113.5689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d1c8ea8b0b1e0a540e08b43d9fabf00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0fbc55a1d5fbc690fb5bcaddadf926a4 = $(`&lt;div id=&quot;html_0fbc55a1d5fbc690fb5bcaddadf926a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5689             latitude:37.8694             PM2_5:54.83193277             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d1c8ea8b0b1e0a540e08b43d9fabf00.setContent(html_0fbc55a1d5fbc690fb5bcaddadf926a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_671701e8c081b8b03c641a998aa88a2b.bindPopup(popup_5d1c8ea8b0b1e0a540e08b43d9fabf00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af7126990ea4a4eca0d5888ba52b3541 = L.circleMarker(\\n\",\n       \"                [27.2272, 111.4328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c883abe59b27fd410b09a5288a378e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_631782d87ba7e520df964150743f1534 = $(`&lt;div id=&quot;html_631782d87ba7e520df964150743f1534&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4328             latitude:27.2272             PM2_5:46.85070423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c883abe59b27fd410b09a5288a378e8.setContent(html_631782d87ba7e520df964150743f1534);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af7126990ea4a4eca0d5888ba52b3541.bindPopup(popup_8c883abe59b27fd410b09a5288a378e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5703efdbc96d08b5c8a2177a6e7c8ad = L.circleMarker(\\n\",\n       \"                [34.7781, 114.3389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6a133ab855ce1d7b07bf752590cdb71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c838547f33dde69cb54d2515a09ab377 = $(`&lt;div id=&quot;html_c838547f33dde69cb54d2515a09ab377&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3389             latitude:34.7781             PM2_5:58.12853107             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6a133ab855ce1d7b07bf752590cdb71.setContent(html_c838547f33dde69cb54d2515a09ab377);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5703efdbc96d08b5c8a2177a6e7c8ad.bindPopup(popup_f6a133ab855ce1d7b07bf752590cdb71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8cda3ecd6335a27c565e79ae8665de5a = L.circleMarker(\\n\",\n       \"                [47.3227, 123.9483],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32b5a4faec3b6f291871cc0b16a2e45b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba604fef1855530fe6f0c866ccd2f9c4 = $(`&lt;div id=&quot;html_ba604fef1855530fe6f0c866ccd2f9c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9483             latitude:47.3227             PM2_5:29.87815126             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32b5a4faec3b6f291871cc0b16a2e45b.setContent(html_ba604fef1855530fe6f0c866ccd2f9c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8cda3ecd6335a27c565e79ae8665de5a.bindPopup(popup_32b5a4faec3b6f291871cc0b16a2e45b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b046e38f07566326d98ab289b6b6f5bb = L.circleMarker(\\n\",\n       \"                [28.3169, 109.7325],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c146372a14176369cf91f51bc531b67c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc669c58c8f38212736ad38fc38cc2c7 = $(`&lt;div id=&quot;html_dc669c58c8f38212736ad38fc38cc2c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7325             latitude:28.3169             PM2_5:40.78011204             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c146372a14176369cf91f51bc531b67c.setContent(html_dc669c58c8f38212736ad38fc38cc2c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b046e38f07566326d98ab289b6b6f5bb.bindPopup(popup_c146372a14176369cf91f51bc531b67c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d14b306b09456e43b96aeec653e5fe6 = L.circleMarker(\\n\",\n       \"                [31.7586, 119.996],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d76f1fd2025df8c7cd437a2e541bf53c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3569d1addf0dbfacc7c697f65db5466 = $(`&lt;div id=&quot;html_c3569d1addf0dbfacc7c697f65db5466&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.996             latitude:31.7586             PM2_5:46.04481793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d76f1fd2025df8c7cd437a2e541bf53c.setContent(html_c3569d1addf0dbfacc7c697f65db5466);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d14b306b09456e43b96aeec653e5fe6.bindPopup(popup_d76f1fd2025df8c7cd437a2e541bf53c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb068319bd6c5bff7973d0487dff75bb = L.circleMarker(\\n\",\n       \"                [29.6475, 91.0874],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf295d1846648668c689d99af273c85d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e2a7e264c67be13b9936c5f8858e6e2 = $(`&lt;div id=&quot;html_6e2a7e264c67be13b9936c5f8858e6e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.0874             latitude:29.6475             PM2_5:10.2880117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf295d1846648668c689d99af273c85d.setContent(html_6e2a7e264c67be13b9936c5f8858e6e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb068319bd6c5bff7973d0487dff75bb.bindPopup(popup_bf295d1846648668c689d99af273c85d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad78243788d6b46ade02b24389d8ef26 = L.circleMarker(\\n\",\n       \"                [28.1178, 112.9844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e4fa945f1da942d14b1cbb218cd018e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0347ecceccaadae6dccaddb01c38085 = $(`&lt;div id=&quot;html_f0347ecceccaadae6dccaddb01c38085&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9844             latitude:28.1178             PM2_5:41.61516854             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e4fa945f1da942d14b1cbb218cd018e.setContent(html_f0347ecceccaadae6dccaddb01c38085);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad78243788d6b46ade02b24389d8ef26.bindPopup(popup_6e4fa945f1da942d14b1cbb218cd018e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a97b58041e16e246564d2f9b967446de = L.circleMarker(\\n\",\n       \"                [36.10139, 111.505],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9ec4807b904b792764fe1cb8d254cbe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3946541b154a74e0de94e006c9fe01c8 = $(`&lt;div id=&quot;html_3946541b154a74e0de94e006c9fe01c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.505             latitude:36.10139             PM2_5:74.34078212             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9ec4807b904b792764fe1cb8d254cbe.setContent(html_3946541b154a74e0de94e006c9fe01c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a97b58041e16e246564d2f9b967446de.bindPopup(popup_a9ec4807b904b792764fe1cb8d254cbe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a62281036d1dbc4f4104f10af040d9e5 = L.circleMarker(\\n\",\n       \"                [35.5975, 104.6169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab7d2fae3488a54faeffca92de452a5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6895469797e5301cf34e6560798aa231 = $(`&lt;div id=&quot;html_6895469797e5301cf34e6560798aa231&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6169             latitude:35.5975             PM2_5:29.16155989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab7d2fae3488a54faeffca92de452a5d.setContent(html_6895469797e5301cf34e6560798aa231);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a62281036d1dbc4f4104f10af040d9e5.bindPopup(popup_ab7d2fae3488a54faeffca92de452a5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9de387aef0d3e3ddc76cba0a50b10a05 = L.circleMarker(\\n\",\n       \"                [34.7975, 114.3733],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b5456066c77647d6eb928d4283c21ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1327d13422a5bb54142d6bbaa13a1da9 = $(`&lt;div id=&quot;html_1327d13422a5bb54142d6bbaa13a1da9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3733             latitude:34.7975             PM2_5:57.65870787             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b5456066c77647d6eb928d4283c21ba.setContent(html_1327d13422a5bb54142d6bbaa13a1da9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9de387aef0d3e3ddc76cba0a50b10a05.bindPopup(popup_6b5456066c77647d6eb928d4283c21ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_acdc3c96d0ead394aa71b2a08ce9aafa = L.circleMarker(\\n\",\n       \"                [36.2092, 117.7181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_424f3f0d194779eab97837ee79d886ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58d461980c8aafea17723d6c916f94ec = $(`&lt;div id=&quot;html_58d461980c8aafea17723d6c916f94ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7181             latitude:36.2092             PM2_5:56.48314607             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_424f3f0d194779eab97837ee79d886ce.setContent(html_58d461980c8aafea17723d6c916f94ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_acdc3c96d0ead394aa71b2a08ce9aafa.bindPopup(popup_424f3f0d194779eab97837ee79d886ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c9c09ff2c73f7f7c7cbc970a7cff067 = L.circleMarker(\\n\",\n       \"                [22.7633, 100.98],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2be9c518d5aad3543492c56031714e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe4ced6950c2ce966dfe14b8e5ba5117 = $(`&lt;div id=&quot;html_fe4ced6950c2ce966dfe14b8e5ba5117&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.98             latitude:22.7633             PM2_5:18.6408046             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2be9c518d5aad3543492c56031714e6.setContent(html_fe4ced6950c2ce966dfe14b8e5ba5117);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c9c09ff2c73f7f7c7cbc970a7cff067.bindPopup(popup_e2be9c518d5aad3543492c56031714e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36fa99d43dfb58f4cefcb31dfb0b2f57 = L.circleMarker(\\n\",\n       \"                [24.81805556, 118.1569444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0e129c88e11b8fd34cd96f824d8cf1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d568e5548b471baf9f603cf552a7c23 = $(`&lt;div id=&quot;html_2d568e5548b471baf9f603cf552a7c23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1569444             latitude:24.81805556             PM2_5:24.03812317             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0e129c88e11b8fd34cd96f824d8cf1f.setContent(html_2d568e5548b471baf9f603cf552a7c23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36fa99d43dfb58f4cefcb31dfb0b2f57.bindPopup(popup_c0e129c88e11b8fd34cd96f824d8cf1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_796b43ff316fba4cd0616607db49200e = L.circleMarker(\\n\",\n       \"                [29.8686, 114.3372],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_639b09702691027a926f5be45f2664fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_246f2529ce3568a0d3ac7c1f30cb6bf9 = $(`&lt;div id=&quot;html_246f2529ce3568a0d3ac7c1f30cb6bf9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3372             latitude:29.8686             PM2_5:44.10504202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_639b09702691027a926f5be45f2664fd.setContent(html_246f2529ce3568a0d3ac7c1f30cb6bf9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_796b43ff316fba4cd0616607db49200e.bindPopup(popup_639b09702691027a926f5be45f2664fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de2c1d965756be9480916ca9f25f20f1 = L.circleMarker(\\n\",\n       \"                [31.7039, 119.935],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e26e2dee439bc41ccb7d8122920a76e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f98c07d889b7414d6ba6b3e1b26f0b6 = $(`&lt;div id=&quot;html_2f98c07d889b7414d6ba6b3e1b26f0b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.935             latitude:31.7039             PM2_5:43.56005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e26e2dee439bc41ccb7d8122920a76e0.setContent(html_2f98c07d889b7414d6ba6b3e1b26f0b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de2c1d965756be9480916ca9f25f20f1.bindPopup(popup_e26e2dee439bc41ccb7d8122920a76e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_99b180cb0b80068cbed227bfc9ae1b0f = L.circleMarker(\\n\",\n       \"                [29.6816, 115.9872],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2700f2a58a971c4a8ae7975d973d0ce3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51540d407ea7f604ceb4fb406f9caa89 = $(`&lt;div id=&quot;html_51540d407ea7f604ceb4fb406f9caa89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9872             latitude:29.6816             PM2_5:44.49293785             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2700f2a58a971c4a8ae7975d973d0ce3.setContent(html_51540d407ea7f604ceb4fb406f9caa89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_99b180cb0b80068cbed227bfc9ae1b0f.bindPopup(popup_2700f2a58a971c4a8ae7975d973d0ce3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3caf27759d6b618546effadb9bd3ee1 = L.circleMarker(\\n\",\n       \"                [22.7267, 114.24],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbe8accfe2e322574c79249b16565de3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a0360bda59089383fb13b7c4de2a89e = $(`&lt;div id=&quot;html_8a0360bda59089383fb13b7c4de2a89e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.24             latitude:22.7267             PM2_5:26.57660167             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbe8accfe2e322574c79249b16565de3.setContent(html_8a0360bda59089383fb13b7c4de2a89e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3caf27759d6b618546effadb9bd3ee1.bindPopup(popup_dbe8accfe2e322574c79249b16565de3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ac0add9160082d0623120d1bb486d12 = L.circleMarker(\\n\",\n       \"                [39.5343, 116.7464],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7aa8c3b579d295a9c61a927fa1ef58e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9643298ac22f291594ac0b54e0b27cda = $(`&lt;div id=&quot;html_9643298ac22f291594ac0b54e0b27cda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7464             latitude:39.5343             PM2_5:46.71830986             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7aa8c3b579d295a9c61a927fa1ef58e.setContent(html_9643298ac22f291594ac0b54e0b27cda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ac0add9160082d0623120d1bb486d12.bindPopup(popup_c7aa8c3b579d295a9c61a927fa1ef58e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_571d5345fb2565f3a0d6e6c0a812ad6d = L.circleMarker(\\n\",\n       \"                [34.8019, 113.675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_264e70551722573409cdc57751a1e0c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac4851dd34345308cef7be6110010281 = $(`&lt;div id=&quot;html_ac4851dd34345308cef7be6110010281&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.675             latitude:34.8019             PM2_5:66.82162921             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_264e70551722573409cdc57751a1e0c8.setContent(html_ac4851dd34345308cef7be6110010281);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_571d5345fb2565f3a0d6e6c0a812ad6d.bindPopup(popup_264e70551722573409cdc57751a1e0c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eaad13d7fd67c641f55bedec9dbabd2d = L.circleMarker(\\n\",\n       \"                [29.4892, 106.468],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31d6e74bbb2730b3fcefaf17ea6cd76c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21ef9ce03836d84bce2b29dd9ed45369 = $(`&lt;div id=&quot;html_21ef9ce03836d84bce2b29dd9ed45369&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.468             latitude:29.4892             PM2_5:36.48189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31d6e74bbb2730b3fcefaf17ea6cd76c.setContent(html_21ef9ce03836d84bce2b29dd9ed45369);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eaad13d7fd67c641f55bedec9dbabd2d.bindPopup(popup_31d6e74bbb2730b3fcefaf17ea6cd76c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5bece609b346efbe112e8f0c997699a = L.circleMarker(\\n\",\n       \"                [40.1438, 116.72],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5c96a16d6cfc43de46aff88250a083a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4963e45fab425fb8ed41fede75aec304 = $(`&lt;div id=&quot;html_4963e45fab425fb8ed41fede75aec304&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.72             latitude:40.1438             PM2_5:51.04366197             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5c96a16d6cfc43de46aff88250a083a.setContent(html_4963e45fab425fb8ed41fede75aec304);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5bece609b346efbe112e8f0c997699a.bindPopup(popup_d5c96a16d6cfc43de46aff88250a083a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01107830e003c1d5825a6e0527d1971d = L.circleMarker(\\n\",\n       \"                [29.6292, 91.0834],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2523b690dd846e8018af21e7eaea7e6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29fa7ca14cd1708e6c9ac9bb0a00a311 = $(`&lt;div id=&quot;html_29fa7ca14cd1708e6c9ac9bb0a00a311&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.0834             latitude:29.6292             PM2_5:11.04373178             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2523b690dd846e8018af21e7eaea7e6e.setContent(html_29fa7ca14cd1708e6c9ac9bb0a00a311);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01107830e003c1d5825a6e0527d1971d.bindPopup(popup_2523b690dd846e8018af21e7eaea7e6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5367ef648bde5d2e56fea5e85f3ce1e9 = L.circleMarker(\\n\",\n       \"                [31.87888889, 106.7513889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88a6403ca99161e6655c0884c8900060 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad939089fe6a91120b2bd4383a2436d7 = $(`&lt;div id=&quot;html_ad939089fe6a91120b2bd4383a2436d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7513889             latitude:31.87888889             PM2_5:31.05857143             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88a6403ca99161e6655c0884c8900060.setContent(html_ad939089fe6a91120b2bd4383a2436d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5367ef648bde5d2e56fea5e85f3ce1e9.bindPopup(popup_88a6403ca99161e6655c0884c8900060)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_793056deb05ebb70de7a67fb5ca4ef9a = L.circleMarker(\\n\",\n       \"                [31.7712, 116.5661],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c903f296b484b93889825b639760469 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac17c0694e7db313a1c7e2b07337217b = $(`&lt;div id=&quot;html_ac17c0694e7db313a1c7e2b07337217b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5661             latitude:31.7712             PM2_5:47.88194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c903f296b484b93889825b639760469.setContent(html_ac17c0694e7db313a1c7e2b07337217b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_793056deb05ebb70de7a67fb5ca4ef9a.bindPopup(popup_8c903f296b484b93889825b639760469)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18d769032ea19469025f62779050ef1f = L.circleMarker(\\n\",\n       \"                [27.6486, 106.8906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6cf27160ee68cf9b678f49715ae4e79f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_782a574c703cdbbbb0e5d25b993fa654 = $(`&lt;div id=&quot;html_782a574c703cdbbbb0e5d25b993fa654&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8906             latitude:27.6486             PM2_5:24.83472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6cf27160ee68cf9b678f49715ae4e79f.setContent(html_782a574c703cdbbbb0e5d25b993fa654);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18d769032ea19469025f62779050ef1f.bindPopup(popup_6cf27160ee68cf9b678f49715ae4e79f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_53103ab068c0b7f616874469a5e32029 = L.circleMarker(\\n\",\n       \"                [40.6288, 109.8654],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6d0cb13c2590c7fca25b46eaf06d60c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd8cae3da54d8222b902bbe1c455d3b1 = $(`&lt;div id=&quot;html_fd8cae3da54d8222b902bbe1c455d3b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8654             latitude:40.6288             PM2_5:45.84322034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6d0cb13c2590c7fca25b46eaf06d60c.setContent(html_fd8cae3da54d8222b902bbe1c455d3b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_53103ab068c0b7f616874469a5e32029.bindPopup(popup_e6d0cb13c2590c7fca25b46eaf06d60c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b3eb7cb611d756d73fdc659747afc06 = L.circleMarker(\\n\",\n       \"                [43.1594, 124.3711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_059beab97e45902feb1d26f2ba404a61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92ef1f5723779c96bad7b3c3c1356ea8 = $(`&lt;div id=&quot;html_92ef1f5723779c96bad7b3c3c1356ea8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3711             latitude:43.1594             PM2_5:48.26264045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_059beab97e45902feb1d26f2ba404a61.setContent(html_92ef1f5723779c96bad7b3c3c1356ea8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b3eb7cb611d756d73fdc659747afc06.bindPopup(popup_059beab97e45902feb1d26f2ba404a61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63f30fc43e9a270278491196bd259a48 = L.circleMarker(\\n\",\n       \"                [28.4586, 119.93],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d620b73157264a175501335a0414b8b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57f876b4a850f9ccbd7d2312fb12e35b = $(`&lt;div id=&quot;html_57f876b4a850f9ccbd7d2312fb12e35b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.93             latitude:28.4586             PM2_5:27.13091922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d620b73157264a175501335a0414b8b7.setContent(html_57f876b4a850f9ccbd7d2312fb12e35b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63f30fc43e9a270278491196bd259a48.bindPopup(popup_d620b73157264a175501335a0414b8b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4270c2312e12df91bbddb5ec62e0d45c = L.circleMarker(\\n\",\n       \"                [25.9118, 114.9064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b23064c90253f4da3a63134bda0cf9c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49b88611665151d707d5f6e105ab405a = $(`&lt;div id=&quot;html_49b88611665151d707d5f6e105ab405a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9064             latitude:25.9118             PM2_5:42.14366197             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b23064c90253f4da3a63134bda0cf9c3.setContent(html_49b88611665151d707d5f6e105ab405a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4270c2312e12df91bbddb5ec62e0d45c.bindPopup(popup_b23064c90253f4da3a63134bda0cf9c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57fd7b59837805e1a7d5d835a3a30ee0 = L.circleMarker(\\n\",\n       \"                [34.3497, 107.2058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0dc05c7e26240249c48bf2d601aa9a99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_deebe3e97d748338c4c0d71f5e9af8b0 = $(`&lt;div id=&quot;html_deebe3e97d748338c4c0d71f5e9af8b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.2058             latitude:34.3497             PM2_5:49.42896936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0dc05c7e26240249c48bf2d601aa9a99.setContent(html_deebe3e97d748338c4c0d71f5e9af8b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57fd7b59837805e1a7d5d835a3a30ee0.bindPopup(popup_0dc05c7e26240249c48bf2d601aa9a99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c85469068d53dd5047e4fdadeb1099cc = L.circleMarker(\\n\",\n       \"                [34.2303, 108.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5c22f84e419bf285227f3125a8565cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f649ef033cc68a9273220c6bb8959d0 = $(`&lt;div id=&quot;html_2f649ef033cc68a9273220c6bb8959d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.883             latitude:34.2303             PM2_5:67.22881356             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5c22f84e419bf285227f3125a8565cd.setContent(html_2f649ef033cc68a9273220c6bb8959d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c85469068d53dd5047e4fdadeb1099cc.bindPopup(popup_b5c22f84e419bf285227f3125a8565cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a553df805180a29e7000d681e79bb59 = L.circleMarker(\\n\",\n       \"                [29.2313, 91.7608],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffb01e041e03333329f6a1cdccde0a24 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c29aa2ed3911ff43123040582d0cbf57 = $(`&lt;div id=&quot;html_c29aa2ed3911ff43123040582d0cbf57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.7608             latitude:29.2313             PM2_5:8.361031519             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffb01e041e03333329f6a1cdccde0a24.setContent(html_c29aa2ed3911ff43123040582d0cbf57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a553df805180a29e7000d681e79bb59.bindPopup(popup_ffb01e041e03333329f6a1cdccde0a24)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e54034f66616a93b50307e6ae187944 = L.circleMarker(\\n\",\n       \"                [36.6489, 116.943],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8d6320ab63bf918120a16ebdc9a26d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b2bd59469a707349c4af947eb8cd3ce = $(`&lt;div id=&quot;html_0b2bd59469a707349c4af947eb8cd3ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.943             latitude:36.6489             PM2_5:62.66091954             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8d6320ab63bf918120a16ebdc9a26d4.setContent(html_0b2bd59469a707349c4af947eb8cd3ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e54034f66616a93b50307e6ae187944.bindPopup(popup_c8d6320ab63bf918120a16ebdc9a26d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01c4079d8205c14f537dede6fca7503a = L.circleMarker(\\n\",\n       \"                [29.2956, 117.2461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc88318551dae23661fb95b4b5084cf2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db899857f930a430c3bcc48a0c66adeb = $(`&lt;div id=&quot;html_db899857f930a430c3bcc48a0c66adeb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2461             latitude:29.2956             PM2_5:34.24792244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc88318551dae23661fb95b4b5084cf2.setContent(html_db899857f930a430c3bcc48a0c66adeb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01c4079d8205c14f537dede6fca7503a.bindPopup(popup_dc88318551dae23661fb95b4b5084cf2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a3995e148c9a76baabf2b84ea8bf22b = L.circleMarker(\\n\",\n       \"                [31.4867, 120.269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8446759ff64f55756a2d4a1ce3ec35f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3cef6817f2bb8e801fc9a31ce8cc128a = $(`&lt;div id=&quot;html_3cef6817f2bb8e801fc9a31ce8cc128a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.269             latitude:31.4867             PM2_5:39.27620397             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8446759ff64f55756a2d4a1ce3ec35f5.setContent(html_3cef6817f2bb8e801fc9a31ce8cc128a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a3995e148c9a76baabf2b84ea8bf22b.bindPopup(popup_8446759ff64f55756a2d4a1ce3ec35f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c5a2941dc439efbfd22ceb4a0d754c7 = L.circleMarker(\\n\",\n       \"                [28.4514, 119.914],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52004218dbaccaa00bd4d2d9f2863a31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7eef82a5cb192b56df0e7c2cbc27048 = $(`&lt;div id=&quot;html_b7eef82a5cb192b56df0e7c2cbc27048&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.914             latitude:28.4514             PM2_5:28.95391061             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52004218dbaccaa00bd4d2d9f2863a31.setContent(html_b7eef82a5cb192b56df0e7c2cbc27048);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c5a2941dc439efbfd22ceb4a0d754c7.bindPopup(popup_52004218dbaccaa00bd4d2d9f2863a31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03d1c8668dbf5de5a70dedd5af2f263f = L.circleMarker(\\n\",\n       \"                [37.4014, 121.5992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f5c3dba60e6a8c89bb5dad7029e4c80 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_664e3e8c421933735f05c9ba1da0e408 = $(`&lt;div id=&quot;html_664e3e8c421933735f05c9ba1da0e408&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5992             latitude:37.4014             PM2_5:26.3627451             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f5c3dba60e6a8c89bb5dad7029e4c80.setContent(html_664e3e8c421933735f05c9ba1da0e408);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03d1c8668dbf5de5a70dedd5af2f263f.bindPopup(popup_1f5c3dba60e6a8c89bb5dad7029e4c80)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f5ced11fb89d6487846287fdd087466 = L.circleMarker(\\n\",\n       \"                [29.709, 106.452],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0fdfc769084769395f5229937528397 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce98367616acca0c68eb6dfa87496df0 = $(`&lt;div id=&quot;html_ce98367616acca0c68eb6dfa87496df0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.452             latitude:29.709             PM2_5:32.58450704             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0fdfc769084769395f5229937528397.setContent(html_ce98367616acca0c68eb6dfa87496df0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f5ced11fb89d6487846287fdd087466.bindPopup(popup_d0fdfc769084769395f5229937528397)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe938aedb4f324e2b014bfc4f58df9ac = L.circleMarker(\\n\",\n       \"                [43.8711, 87.5525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_480a1e9db013191e7727255d8540d666 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_79f33486a551f1057cb2989e6a310a58 = $(`&lt;div id=&quot;html_79f33486a551f1057cb2989e6a310a58&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5525             latitude:43.8711             PM2_5:61.29261364             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_480a1e9db013191e7727255d8540d666.setContent(html_79f33486a551f1057cb2989e6a310a58);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe938aedb4f324e2b014bfc4f58df9ac.bindPopup(popup_480a1e9db013191e7727255d8540d666)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00dc1aaff22417f83eb9a4532de8ca94 = L.circleMarker(\\n\",\n       \"                [43.6267, 122.2603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7e8991e6df0fbd3aee945691b369733 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_caac838e2d81c1540b1ba91a82a00a61 = $(`&lt;div id=&quot;html_caac838e2d81c1540b1ba91a82a00a61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2603             latitude:43.6267             PM2_5:21.67696629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7e8991e6df0fbd3aee945691b369733.setContent(html_caac838e2d81c1540b1ba91a82a00a61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00dc1aaff22417f83eb9a4532de8ca94.bindPopup(popup_b7e8991e6df0fbd3aee945691b369733)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0887cad8915e5004f8afbfeba406d785 = L.circleMarker(\\n\",\n       \"                [22.75, 114.085],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4ddbd6a23197b593c202a5addf4ac74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3cbf7a8a855adffcf80c6e6e4986649 = $(`&lt;div id=&quot;html_e3cbf7a8a855adffcf80c6e6e4986649&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.085             latitude:22.75             PM2_5:34.49715909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4ddbd6a23197b593c202a5addf4ac74.setContent(html_e3cbf7a8a855adffcf80c6e6e4986649);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0887cad8915e5004f8afbfeba406d785.bindPopup(popup_c4ddbd6a23197b593c202a5addf4ac74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a2d8595b00661576c52494cb4a407f9 = L.circleMarker(\\n\",\n       \"                [34.429, 115.6558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_395a8a77838fc6b713447552d5b1e0f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70aa42d104af4bb7c2fa255087a44616 = $(`&lt;div id=&quot;html_70aa42d104af4bb7c2fa255087a44616&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6558             latitude:34.429             PM2_5:55.75             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_395a8a77838fc6b713447552d5b1e0f6.setContent(html_70aa42d104af4bb7c2fa255087a44616);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a2d8595b00661576c52494cb4a407f9.bindPopup(popup_395a8a77838fc6b713447552d5b1e0f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b488757ffd428f2b558cbb8883ea0464 = L.circleMarker(\\n\",\n       \"                [44.5782, 129.6115],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2520c57313d0704fcdafc0851bfe45a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1cadd5b47d945d335b45cc07bc3233e2 = $(`&lt;div id=&quot;html_1cadd5b47d945d335b45cc07bc3233e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6115             latitude:44.5782             PM2_5:22.02089136             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2520c57313d0704fcdafc0851bfe45a.setContent(html_1cadd5b47d945d335b45cc07bc3233e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b488757ffd428f2b558cbb8883ea0464.bindPopup(popup_a2520c57313d0704fcdafc0851bfe45a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6ca9505cd91df9da47d3a9b61ce01f9 = L.circleMarker(\\n\",\n       \"                [39.9716, 116.473],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36dba91a8e78071e69ade09c9f730068 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a1fb296daa7a6c3b6c2f4fcccbba786 = $(`&lt;div id=&quot;html_7a1fb296daa7a6c3b6c2f4fcccbba786&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.473             latitude:39.9716             PM2_5:53.18907563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36dba91a8e78071e69ade09c9f730068.setContent(html_7a1fb296daa7a6c3b6c2f4fcccbba786);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6ca9505cd91df9da47d3a9b61ce01f9.bindPopup(popup_36dba91a8e78071e69ade09c9f730068)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0265b7b0080317cac2738ac7aa522a53 = L.circleMarker(\\n\",\n       \"                [38.8416, 115.4612],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d128075b2fc90ae9b33018e1d981549a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f648386ddbd340c461426181d0810c28 = $(`&lt;div id=&quot;html_f648386ddbd340c461426181d0810c28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.4612             latitude:38.8416             PM2_5:57.22093023             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d128075b2fc90ae9b33018e1d981549a.setContent(html_f648386ddbd340c461426181d0810c28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0265b7b0080317cac2738ac7aa522a53.bindPopup(popup_d128075b2fc90ae9b33018e1d981549a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6bbc6595578ee485b2155605cc12af9f = L.circleMarker(\\n\",\n       \"                [23.4792, 111.2897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b2bd95f356fbda9a4ed1139484e95d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5913ca214079ec3609eb3879397e7163 = $(`&lt;div id=&quot;html_5913ca214079ec3609eb3879397e7163&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2897             latitude:23.4792             PM2_5:35.94598338             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b2bd95f356fbda9a4ed1139484e95d9.setContent(html_5913ca214079ec3609eb3879397e7163);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6bbc6595578ee485b2155605cc12af9f.bindPopup(popup_0b2bd95f356fbda9a4ed1139484e95d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c269949d5b812bd6fc32d841fefa3cdc = L.circleMarker(\\n\",\n       \"                [30.6414, 114.2131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4b06683a8bc39f3421cad8a71329703b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_749d8104362acc1d1c8ff21b73ef89fa = $(`&lt;div id=&quot;html_749d8104362acc1d1c8ff21b73ef89fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2131             latitude:30.6414             PM2_5:48.2254902             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4b06683a8bc39f3421cad8a71329703b.setContent(html_749d8104362acc1d1c8ff21b73ef89fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c269949d5b812bd6fc32d841fefa3cdc.bindPopup(popup_4b06683a8bc39f3421cad8a71329703b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9630053d8c8a36db612fd9d1c417b888 = L.circleMarker(\\n\",\n       \"                [37.1013, 79.9117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e002053a6b76016bd8362ae2f31ce16 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b4c9299408a45d48911a69ab5b658a8f = $(`&lt;div id=&quot;html_b4c9299408a45d48911a69ab5b658a8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:79.9117             latitude:37.1013             PM2_5:131.0946328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e002053a6b76016bd8362ae2f31ce16.setContent(html_b4c9299408a45d48911a69ab5b658a8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9630053d8c8a36db612fd9d1c417b888.bindPopup(popup_6e002053a6b76016bd8362ae2f31ce16)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82d89fd7aa0a7b5ab18b3564687fd1dc = L.circleMarker(\\n\",\n       \"                [28.76389, 104.6417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6d66e8339f8efd115510143599e4e201 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07475ef3578925322b96e9af1e779a6b = $(`&lt;div id=&quot;html_07475ef3578925322b96e9af1e779a6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6417             latitude:28.76389             PM2_5:46.44150418             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6d66e8339f8efd115510143599e4e201.setContent(html_07475ef3578925322b96e9af1e779a6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82d89fd7aa0a7b5ab18b3564687fd1dc.bindPopup(popup_6d66e8339f8efd115510143599e4e201)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fb316d4d26a44f26eb9d7a13b86f963 = L.circleMarker(\\n\",\n       \"                [35.0622, 118.2939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4126701bcbbe8a77511eaf095c620701 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e70e444150fd172b8ab86707c94226b = $(`&lt;div id=&quot;html_8e70e444150fd172b8ab86707c94226b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2939             latitude:35.0622             PM2_5:41.16340782             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4126701bcbbe8a77511eaf095c620701.setContent(html_8e70e444150fd172b8ab86707c94226b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fb316d4d26a44f26eb9d7a13b86f963.bindPopup(popup_4126701bcbbe8a77511eaf095c620701)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e89a955258217ba98c81c055d07ebbd1 = L.circleMarker(\\n\",\n       \"                [46.7432, 82.9994],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fae8e2a40310b38326664b53d0d9654c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_646f3c4ed15161906cb530d714a3f471 = $(`&lt;div id=&quot;html_646f3c4ed15161906cb530d714a3f471&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.9994             latitude:46.7432             PM2_5:18.03333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fae8e2a40310b38326664b53d0d9654c.setContent(html_646f3c4ed15161906cb530d714a3f471);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e89a955258217ba98c81c055d07ebbd1.bindPopup(popup_fae8e2a40310b38326664b53d0d9654c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fcb04f246810d82afbcfa8e91a082eb8 = L.circleMarker(\\n\",\n       \"                [33.6406, 114.6369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a42651be03d04968b48971ee803996f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3cd7a885cc9c28e4d5ca3055a92050c9 = $(`&lt;div id=&quot;html_3cd7a885cc9c28e4d5ca3055a92050c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6369             latitude:33.6406             PM2_5:53.37290503             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a42651be03d04968b48971ee803996f7.setContent(html_3cd7a885cc9c28e4d5ca3055a92050c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fcb04f246810d82afbcfa8e91a082eb8.bindPopup(popup_a42651be03d04968b48971ee803996f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_526146228d18ca0db908e45b74a5ce89 = L.circleMarker(\\n\",\n       \"                [36.44, 120.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c090c9646f4d310bf6b5b91cc7a8faa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4f203ce23d9f2cce77a7bf6eecb9d0a = $(`&lt;div id=&quot;html_c4f203ce23d9f2cce77a7bf6eecb9d0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.61             latitude:36.44             PM2_5:31.77478754             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c090c9646f4d310bf6b5b91cc7a8faa.setContent(html_c4f203ce23d9f2cce77a7bf6eecb9d0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_526146228d18ca0db908e45b74a5ce89.bindPopup(popup_8c090c9646f4d310bf6b5b91cc7a8faa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f4823e526edadf0e5ea40f76333d4e4 = L.circleMarker(\\n\",\n       \"                [31.453, 121.115],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_271fd96e48f5ae5cfeb7b6f3152fe487 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ab6554825dc96bdf5d477fd50908cf9 = $(`&lt;div id=&quot;html_7ab6554825dc96bdf5d477fd50908cf9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.115             latitude:31.453             PM2_5:37.25837989             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_271fd96e48f5ae5cfeb7b6f3152fe487.setContent(html_7ab6554825dc96bdf5d477fd50908cf9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f4823e526edadf0e5ea40f76333d4e4.bindPopup(popup_271fd96e48f5ae5cfeb7b6f3152fe487)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80007ce471a0ea6c11923c97c64ef153 = L.circleMarker(\\n\",\n       \"                [28.6839, 115.8886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff5edc5ff1fb8433aa7087998a9570de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c342f32a80cdc081fbff2ae40ba957f4 = $(`&lt;div id=&quot;html_c342f32a80cdc081fbff2ae40ba957f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8886             latitude:28.6839             PM2_5:31.19067797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff5edc5ff1fb8433aa7087998a9570de.setContent(html_c342f32a80cdc081fbff2ae40ba957f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80007ce471a0ea6c11923c97c64ef153.bindPopup(popup_ff5edc5ff1fb8433aa7087998a9570de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6be1f7063750d1da412d400ad356b83 = L.circleMarker(\\n\",\n       \"                [36.1939, 113.0972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a1934a6efc597ad231d462f1eb0bd80 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39b43be9e7b64958b791eec186298c5d = $(`&lt;div id=&quot;html_39b43be9e7b64958b791eec186298c5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0972             latitude:36.1939             PM2_5:67.90720222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a1934a6efc597ad231d462f1eb0bd80.setContent(html_39b43be9e7b64958b791eec186298c5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6be1f7063750d1da412d400ad356b83.bindPopup(popup_9a1934a6efc597ad231d462f1eb0bd80)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0bab6b1508eb88fef72bd69d10de241 = L.circleMarker(\\n\",\n       \"                [24.3289, 116.1278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2999c949bc702ace9a978d5a32e45443 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9adfd9d3faed7ea62c1abbb28df9eb90 = $(`&lt;div id=&quot;html_9adfd9d3faed7ea62c1abbb28df9eb90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1278             latitude:24.3289             PM2_5:23.67318436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2999c949bc702ace9a978d5a32e45443.setContent(html_9adfd9d3faed7ea62c1abbb28df9eb90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0bab6b1508eb88fef72bd69d10de241.bindPopup(popup_2999c949bc702ace9a978d5a32e45443)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31245fe37be37ca52f4237a693ec98d5 = L.circleMarker(\\n\",\n       \"                [29.4822, 106.364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_754d297def3099b6fb55eddc37f5a504 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0edf609050d9cb99a023442b04951d96 = $(`&lt;div id=&quot;html_0edf609050d9cb99a023442b04951d96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.364             latitude:29.4822             PM2_5:41.16714286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_754d297def3099b6fb55eddc37f5a504.setContent(html_0edf609050d9cb99a023442b04951d96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31245fe37be37ca52f4237a693ec98d5.bindPopup(popup_754d297def3099b6fb55eddc37f5a504)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ee8107047d120dc0b0f51be9ee9a1bf = L.circleMarker(\\n\",\n       \"                [40.7094, 122.2703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_564fae0cbe425905fbb177dd23947ea2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2aea5a1aef68702f7ea0b4365b669985 = $(`&lt;div id=&quot;html_2aea5a1aef68702f7ea0b4365b669985&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2703             latitude:40.7094             PM2_5:32.92200557             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_564fae0cbe425905fbb177dd23947ea2.setContent(html_2aea5a1aef68702f7ea0b4365b669985);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ee8107047d120dc0b0f51be9ee9a1bf.bindPopup(popup_564fae0cbe425905fbb177dd23947ea2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2427bcf53c0478ee0ebedeb3265db5b3 = L.circleMarker(\\n\",\n       \"                [30.6133, 105.68],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2daa8eb205fe6e7d1a70438f91791a54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b59827facf60e8d5d635fb85cc6f2425 = $(`&lt;div id=&quot;html_b59827facf60e8d5d635fb85cc6f2425&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.68             latitude:30.6133             PM2_5:41.39944134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2daa8eb205fe6e7d1a70438f91791a54.setContent(html_b59827facf60e8d5d635fb85cc6f2425);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2427bcf53c0478ee0ebedeb3265db5b3.bindPopup(popup_2daa8eb205fe6e7d1a70438f91791a54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_847ae739ba2e83bd197377932673e34c = L.circleMarker(\\n\",\n       \"                [23.1569, 113.281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7449348aeeab968405b0bf7702043792 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38b3c800dba9f23fa53a99bef9a06825 = $(`&lt;div id=&quot;html_38b3c800dba9f23fa53a99bef9a06825&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.281             latitude:23.1569             PM2_5:35.75487465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7449348aeeab968405b0bf7702043792.setContent(html_38b3c800dba9f23fa53a99bef9a06825);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_847ae739ba2e83bd197377932673e34c.bindPopup(popup_7449348aeeab968405b0bf7702043792)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9894324e7158a8df39545aa0aefcfddf = L.circleMarker(\\n\",\n       \"                [32.0005, 120.86],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd6765b702896496f0b378621d109b28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a4f3c7cbf15c4dc2de6aaa2accd187d = $(`&lt;div id=&quot;html_5a4f3c7cbf15c4dc2de6aaa2accd187d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.86             latitude:32.0005             PM2_5:37.98735955             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd6765b702896496f0b378621d109b28.setContent(html_5a4f3c7cbf15c4dc2de6aaa2accd187d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9894324e7158a8df39545aa0aefcfddf.bindPopup(popup_dd6765b702896496f0b378621d109b28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e1dec89f877ece50a8e5fcc3d2418b3 = L.circleMarker(\\n\",\n       \"                [38.0108, 112.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8f31d9461c9e470fa60fa51770f94be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6afa9df7c33930aa4f09c846ad67a834 = $(`&lt;div id=&quot;html_6afa9df7c33930aa4f09c846ad67a834&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.434             latitude:38.0108             PM2_5:50.17329545             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8f31d9461c9e470fa60fa51770f94be.setContent(html_6afa9df7c33930aa4f09c846ad67a834);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e1dec89f877ece50a8e5fcc3d2418b3.bindPopup(popup_c8f31d9461c9e470fa60fa51770f94be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2caab3e78fb42dfe43f216247060dbc7 = L.circleMarker(\\n\",\n       \"                [29.1128, 119.6533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20278c340e41bfa432139d0b08ed0767 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e65a6d0226bf117175a14ee3df0a2c3d = $(`&lt;div id=&quot;html_e65a6d0226bf117175a14ee3df0a2c3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6533             latitude:29.1128             PM2_5:35.30779944             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20278c340e41bfa432139d0b08ed0767.setContent(html_e65a6d0226bf117175a14ee3df0a2c3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2caab3e78fb42dfe43f216247060dbc7.bindPopup(popup_20278c340e41bfa432139d0b08ed0767)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7802c5cf51a420646ff382a9b3258ab = L.circleMarker(\\n\",\n       \"                [27.4948, 114.0944],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_941180352831f561f86318443d3053a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2cd2b4f13bdfb3c12d43a9915d9d248 = $(`&lt;div id=&quot;html_f2cd2b4f13bdfb3c12d43a9915d9d248&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0944             latitude:27.4948             PM2_5:22.06590258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_941180352831f561f86318443d3053a0.setContent(html_f2cd2b4f13bdfb3c12d43a9915d9d248);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7802c5cf51a420646ff382a9b3258ab.bindPopup(popup_941180352831f561f86318443d3053a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07f22e1a2fbd5ba6c77917b0e7c7682e = L.circleMarker(\\n\",\n       \"                [42.9559, 89.1673],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c259e0028a3782718a0f9c90b9a67b97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ccc96791985d35fb9bee14e2d424233 = $(`&lt;div id=&quot;html_9ccc96791985d35fb9bee14e2d424233&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:89.1673             latitude:42.9559             PM2_5:68.71764706             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c259e0028a3782718a0f9c90b9a67b97.setContent(html_9ccc96791985d35fb9bee14e2d424233);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07f22e1a2fbd5ba6c77917b0e7c7682e.bindPopup(popup_c259e0028a3782718a0f9c90b9a67b97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45e6d0d8912066bb34ea24b0aec98b92 = L.circleMarker(\\n\",\n       \"                [40.1114, 113.2803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3839019fe2fd7c939468fc44b70837bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dfaba2666c833fc2aa469e61a927b545 = $(`&lt;div id=&quot;html_dfaba2666c833fc2aa469e61a927b545&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2803             latitude:40.1114             PM2_5:39.94444444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3839019fe2fd7c939468fc44b70837bb.setContent(html_dfaba2666c833fc2aa469e61a927b545);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45e6d0d8912066bb34ea24b0aec98b92.bindPopup(popup_3839019fe2fd7c939468fc44b70837bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb9d14b382dd5cecc74486d5132a89b3 = L.circleMarker(\\n\",\n       \"                [27.8867, 113.095],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc2866d7f853edb11f4194b52c63cd3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_caea20cb60a4168d39fc4317809bf88b = $(`&lt;div id=&quot;html_caea20cb60a4168d39fc4317809bf88b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.095             latitude:27.8867             PM2_5:42.7122905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc2866d7f853edb11f4194b52c63cd3e.setContent(html_caea20cb60a4168d39fc4317809bf88b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb9d14b382dd5cecc74486d5132a89b3.bindPopup(popup_cc2866d7f853edb11f4194b52c63cd3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58f1174957f3bae2d1e6cd5f71bb8a83 = L.circleMarker(\\n\",\n       \"                [38.9389, 100.4497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bb9ec64f1395764df6b44fe65d470a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ace96da3a72f2af725572211d0fb70e = $(`&lt;div id=&quot;html_8ace96da3a72f2af725572211d0fb70e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.4497             latitude:38.9389             PM2_5:27.20277778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bb9ec64f1395764df6b44fe65d470a9.setContent(html_8ace96da3a72f2af725572211d0fb70e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58f1174957f3bae2d1e6cd5f71bb8a83.bindPopup(popup_7bb9ec64f1395764df6b44fe65d470a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1ed08c8e12377b1d46857bda84c88a4 = L.circleMarker(\\n\",\n       \"                [26.8733, 112.6197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3ecb347b0f23b33a158563cb5af67b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80f86cdedeb09a48dee9f7a7f28d73e1 = $(`&lt;div id=&quot;html_80f86cdedeb09a48dee9f7a7f28d73e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6197             latitude:26.8733             PM2_5:47.85070423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3ecb347b0f23b33a158563cb5af67b3.setContent(html_80f86cdedeb09a48dee9f7a7f28d73e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1ed08c8e12377b1d46857bda84c88a4.bindPopup(popup_a3ecb347b0f23b33a158563cb5af67b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee7b1ace44f70e46661a7a9bc55c5d63 = L.circleMarker(\\n\",\n       \"                [44.3075, 86.0697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11e54c25d3ed7a070b75dba559a7e80c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c103bc01c4db14c5a4f5637ed8b4cf3e = $(`&lt;div id=&quot;html_c103bc01c4db14c5a4f5637ed8b4cf3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.0697             latitude:44.3075             PM2_5:63.06545961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11e54c25d3ed7a070b75dba559a7e80c.setContent(html_c103bc01c4db14c5a4f5637ed8b4cf3e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee7b1ace44f70e46661a7a9bc55c5d63.bindPopup(popup_11e54c25d3ed7a070b75dba559a7e80c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3247f7b50c8b2127f1ad89f41e9fdcdc = L.circleMarker(\\n\",\n       \"                [37.9311, 102.6219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_400148dc41fa1b536da44ac90748ca8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a7f6c6111a7e86a84894922dd9ec8d8 = $(`&lt;div id=&quot;html_4a7f6c6111a7e86a84894922dd9ec8d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6219             latitude:37.9311             PM2_5:36.92837079             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_400148dc41fa1b536da44ac90748ca8e.setContent(html_4a7f6c6111a7e86a84894922dd9ec8d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3247f7b50c8b2127f1ad89f41e9fdcdc.bindPopup(popup_400148dc41fa1b536da44ac90748ca8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b341912b8634ab6ee92ce3cf76889f9 = L.circleMarker(\\n\",\n       \"                [28.7994, 115.742],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c821d910aae7f8674b9537de34f0acd9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea449a93632661ec50edcac822384214 = $(`&lt;div id=&quot;html_ea449a93632661ec50edcac822384214&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.742             latitude:28.7994             PM2_5:27.25360231             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c821d910aae7f8674b9537de34f0acd9.setContent(html_ea449a93632661ec50edcac822384214);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b341912b8634ab6ee92ce3cf76889f9.bindPopup(popup_c821d910aae7f8674b9537de34f0acd9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0666eea44742f13ee3e1a4fe5150b1d5 = L.circleMarker(\\n\",\n       \"                [35.4894, 112.8664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bcbead909cb6127659fda87799403c74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5c4d4fab561ea97b7aad98a55472f32 = $(`&lt;div id=&quot;html_a5c4d4fab561ea97b7aad98a55472f32&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8664             latitude:35.4894             PM2_5:56.08169014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bcbead909cb6127659fda87799403c74.setContent(html_a5c4d4fab561ea97b7aad98a55472f32);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0666eea44742f13ee3e1a4fe5150b1d5.bindPopup(popup_bcbead909cb6127659fda87799403c74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c8c3cfae835f3c05e4abc3ca80c0796 = L.circleMarker(\\n\",\n       \"                [44.9079, 82.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_708199e4d16b776afcd5c486e2d21138 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d83b5077b0120d4eaf1987ba6377c09c = $(`&lt;div id=&quot;html_d83b5077b0120d4eaf1987ba6377c09c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.0485             latitude:44.9079             PM2_5:20.61699164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_708199e4d16b776afcd5c486e2d21138.setContent(html_d83b5077b0120d4eaf1987ba6377c09c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c8c3cfae835f3c05e4abc3ca80c0796.bindPopup(popup_708199e4d16b776afcd5c486e2d21138)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ec78d5460c50ef6f3211a89897f9595 = L.circleMarker(\\n\",\n       \"                [40.5546, 110.0377],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_62b613bec1c01ba4b781bd90f2aeefb3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae979fd557990801b3ef8724e60985c8 = $(`&lt;div id=&quot;html_ae979fd557990801b3ef8724e60985c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0377             latitude:40.5546             PM2_5:42.96829971             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_62b613bec1c01ba4b781bd90f2aeefb3.setContent(html_ae979fd557990801b3ef8724e60985c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ec78d5460c50ef6f3211a89897f9595.bindPopup(popup_62b613bec1c01ba4b781bd90f2aeefb3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_995fa0d379a99fe758dbcde365010460 = L.circleMarker(\\n\",\n       \"                [26.2708, 117.6353],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2ba8452987581f5fcc49b056c40270c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1cf658335c845d88fa5b27895b02d2e4 = $(`&lt;div id=&quot;html_1cf658335c845d88fa5b27895b02d2e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6353             latitude:26.2708             PM2_5:26.2752809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2ba8452987581f5fcc49b056c40270c.setContent(html_1cf658335c845d88fa5b27895b02d2e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_995fa0d379a99fe758dbcde365010460.bindPopup(popup_f2ba8452987581f5fcc49b056c40270c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9a03f21a725200e690e5b12cc5d488d = L.circleMarker(\\n\",\n       \"                [39.3606, 112.4549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_847ba7863d60d22c4ce5d56e89329e0e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa62e45425cc50223370400e475c2051 = $(`&lt;div id=&quot;html_aa62e45425cc50223370400e475c2051&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4549             latitude:39.3606             PM2_5:36.20538244             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_847ba7863d60d22c4ce5d56e89329e0e.setContent(html_aa62e45425cc50223370400e475c2051);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9a03f21a725200e690e5b12cc5d488d.bindPopup(popup_847ba7863d60d22c4ce5d56e89329e0e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f030d8f90f7591c3a62d0fc754fe7d2a = L.circleMarker(\\n\",\n       \"                [23.0528, 112.471],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42583eb9990e644f40e480682867acac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1bab526717c94e9b16fd2c0aae52f0ee = $(`&lt;div id=&quot;html_1bab526717c94e9b16fd2c0aae52f0ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.471             latitude:23.0528             PM2_5:38.88826816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42583eb9990e644f40e480682867acac.setContent(html_1bab526717c94e9b16fd2c0aae52f0ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f030d8f90f7591c3a62d0fc754fe7d2a.bindPopup(popup_42583eb9990e644f40e480682867acac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_069b4dd18996cd1de7f794de001600a2 = L.circleMarker(\\n\",\n       \"                [35.0896, 118.4023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1ce7427b9548e3238053264a995990b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1bb25b566c8f4ef8fe16789b8e5db91e = $(`&lt;div id=&quot;html_1bb25b566c8f4ef8fe16789b8e5db91e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4023             latitude:35.0896             PM2_5:47.18435754             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1ce7427b9548e3238053264a995990b.setContent(html_1bb25b566c8f4ef8fe16789b8e5db91e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_069b4dd18996cd1de7f794de001600a2.bindPopup(popup_d1ce7427b9548e3238053264a995990b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19ca1eb80ed92e7a4dd27f8a404711dd = L.circleMarker(\\n\",\n       \"                [41.1219, 121.2008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1d359f8bdfd049cd60319a9c498dce0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_814455124a1c3ed7660804f70dc9803c = $(`&lt;div id=&quot;html_814455124a1c3ed7660804f70dc9803c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2008             latitude:41.1219             PM2_5:31.9719888             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1d359f8bdfd049cd60319a9c498dce0.setContent(html_814455124a1c3ed7660804f70dc9803c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19ca1eb80ed92e7a4dd27f8a404711dd.bindPopup(popup_d1d359f8bdfd049cd60319a9c498dce0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97a41ecca4c3c7783dc7dfc657e25233 = L.circleMarker(\\n\",\n       \"                [31.2864, 120.628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_336bb05fe5e3a9f8f673d7ebb434892b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23c77be915bdce0f483f9777b0f2c5ef = $(`&lt;div id=&quot;html_23c77be915bdce0f483f9777b0f2c5ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.628             latitude:31.2864             PM2_5:41.43156425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_336bb05fe5e3a9f8f673d7ebb434892b.setContent(html_23c77be915bdce0f483f9777b0f2c5ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97a41ecca4c3c7783dc7dfc657e25233.bindPopup(popup_336bb05fe5e3a9f8f673d7ebb434892b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb0a9a5ff9e7a0b00b34dc3c75163e46 = L.circleMarker(\\n\",\n       \"                [27.0983, 115.0075],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24941086985a94b0066699e44187cd35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3647f9e6cc05258618074229f764612b = $(`&lt;div id=&quot;html_3647f9e6cc05258618074229f764612b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0075             latitude:27.0983             PM2_5:52.13370474             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24941086985a94b0066699e44187cd35.setContent(html_3647f9e6cc05258618074229f764612b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb0a9a5ff9e7a0b00b34dc3c75163e46.bindPopup(popup_24941086985a94b0066699e44187cd35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e7c0d13ab23c40544aa4ced48b48162 = L.circleMarker(\\n\",\n       \"                [40.0181, 119.7624],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_042a909c40afcb67525f6323a2ae777f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49ab126a8e5af6c13d7300e4a46662ab = $(`&lt;div id=&quot;html_49ab126a8e5af6c13d7300e4a46662ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7624             latitude:40.0181             PM2_5:27.50418994             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_042a909c40afcb67525f6323a2ae777f.setContent(html_49ab126a8e5af6c13d7300e4a46662ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e7c0d13ab23c40544aa4ced48b48162.bindPopup(popup_042a909c40afcb67525f6323a2ae777f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7c2fc71f44d8c410e596900106fa6e3 = L.circleMarker(\\n\",\n       \"                [21.2567, 110.4558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7fbe347be9315aa3822fa0a8932c2a51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_71aa90ebdcbc8d86d67083dc2842f52b = $(`&lt;div id=&quot;html_71aa90ebdcbc8d86d67083dc2842f52b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4558             latitude:21.2567             PM2_5:25.92837079             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7fbe347be9315aa3822fa0a8932c2a51.setContent(html_71aa90ebdcbc8d86d67083dc2842f52b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7c2fc71f44d8c410e596900106fa6e3.bindPopup(popup_7fbe347be9315aa3822fa0a8932c2a51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_441913a98113d40563a9ef3ce2e33b3c = L.circleMarker(\\n\",\n       \"                [46.8267, 130.3961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_752948c6cc2b1c43a15f996036780f88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2cf92a80bb808ade21d86f0290d53d7d = $(`&lt;div id=&quot;html_2cf92a80bb808ade21d86f0290d53d7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3961             latitude:46.8267             PM2_5:31.34682081             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_752948c6cc2b1c43a15f996036780f88.setContent(html_2cf92a80bb808ade21d86f0290d53d7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_441913a98113d40563a9ef3ce2e33b3c.bindPopup(popup_752948c6cc2b1c43a15f996036780f88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8aed04b1c898274274a878e2e60d35f = L.circleMarker(\\n\",\n       \"                [27.7914, 114.3703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c1166022641bdca41fdab8216e9e0b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_225036eb5072cacc6e7c8797ee891372 = $(`&lt;div id=&quot;html_225036eb5072cacc6e7c8797ee891372&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3703             latitude:27.7914             PM2_5:50.81476323             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c1166022641bdca41fdab8216e9e0b8.setContent(html_225036eb5072cacc6e7c8797ee891372);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8aed04b1c898274274a878e2e60d35f.bindPopup(popup_4c1166022641bdca41fdab8216e9e0b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_deae4d9ec86a84cf3047e7fa604951a1 = L.circleMarker(\\n\",\n       \"                [46.0756, 121.9462],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_016a1373010c752e30ffce9fc68eeba9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57b91579c199f17a7f7fe46647cb983b = $(`&lt;div id=&quot;html_57b91579c199f17a7f7fe46647cb983b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.9462             latitude:46.0756             PM2_5:9.045961003             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_016a1373010c752e30ffce9fc68eeba9.setContent(html_57b91579c199f17a7f7fe46647cb983b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_deae4d9ec86a84cf3047e7fa604951a1.bindPopup(popup_016a1373010c752e30ffce9fc68eeba9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ece6ae359a82e17a1ce3707b60123797 = L.circleMarker(\\n\",\n       \"                [24.3694, 102.5778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ee43bf856803f94d6ff81221a87c081 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f8e148e3ac11b29670a6b8d263fb835 = $(`&lt;div id=&quot;html_4f8e148e3ac11b29670a6b8d263fb835&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5778             latitude:24.3694             PM2_5:17.84818942             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ee43bf856803f94d6ff81221a87c081.setContent(html_4f8e148e3ac11b29670a6b8d263fb835);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ece6ae359a82e17a1ce3707b60123797.bindPopup(popup_3ee43bf856803f94d6ff81221a87c081)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d25e901574f93e393d7a4181bb0c927 = L.circleMarker(\\n\",\n       \"                [23.1886, 112.863],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b347f8f24946ec93222478179390f8ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a34eef90c36dd80caa707ba0e8d85e5 = $(`&lt;div id=&quot;html_8a34eef90c36dd80caa707ba0e8d85e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.863             latitude:23.1886             PM2_5:38.29305556             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b347f8f24946ec93222478179390f8ce.setContent(html_8a34eef90c36dd80caa707ba0e8d85e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d25e901574f93e393d7a4181bb0c927.bindPopup(popup_b347f8f24946ec93222478179390f8ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d6db7d6051219d69b2ce2ab048adab2 = L.circleMarker(\\n\",\n       \"                [37.9723, 106.196],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a687803b2572eaa0d1b1b16066b7f7ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e29837e913c5a05aa919844450b010e = $(`&lt;div id=&quot;html_0e29837e913c5a05aa919844450b010e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.196             latitude:37.9723             PM2_5:31.52752294             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a687803b2572eaa0d1b1b16066b7f7ce.setContent(html_0e29837e913c5a05aa919844450b010e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d6db7d6051219d69b2ce2ab048adab2.bindPopup(popup_a687803b2572eaa0d1b1b16066b7f7ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef90da406f147954b5386767034d61a9 = L.circleMarker(\\n\",\n       \"                [30.9285, 113.9153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e863c539b4005123f7522a106ea8318c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0dcd7ca898e199e2fa1e957c7af35923 = $(`&lt;div id=&quot;html_0dcd7ca898e199e2fa1e957c7af35923&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.9153             latitude:30.9285             PM2_5:42.16432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e863c539b4005123f7522a106ea8318c.setContent(html_0dcd7ca898e199e2fa1e957c7af35923);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef90da406f147954b5386767034d61a9.bindPopup(popup_e863c539b4005123f7522a106ea8318c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8aa6649318703495ecd230811ce7675 = L.circleMarker(\\n\",\n       \"                [36.61763, 114.5129],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a41ddc26942630b4c6ee154e9e27c13a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d171f37f81a7f665648726ba18d262d = $(`&lt;div id=&quot;html_0d171f37f81a7f665648726ba18d262d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5129             latitude:36.61763             PM2_5:72.55013928             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a41ddc26942630b4c6ee154e9e27c13a.setContent(html_0d171f37f81a7f665648726ba18d262d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8aa6649318703495ecd230811ce7675.bindPopup(popup_a41ddc26942630b4c6ee154e9e27c13a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19f231715734bb79673cbd1ba57a993c = L.circleMarker(\\n\",\n       \"                [36.061, 114.483],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3917d766f9e7223c4e6ce06582341f0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2bdf1f2be6746e60c975d6d8ba01921d = $(`&lt;div id=&quot;html_2bdf1f2be6746e60c975d6d8ba01921d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.483             latitude:36.061             PM2_5:60.56695157             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3917d766f9e7223c4e6ce06582341f0a.setContent(html_2bdf1f2be6746e60c975d6d8ba01921d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19f231715734bb79673cbd1ba57a993c.bindPopup(popup_3917d766f9e7223c4e6ce06582341f0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ee597b5fc79367ba1f31225495b7e77 = L.circleMarker(\\n\",\n       \"                [27.3361, 103.7225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91e18c48a4274751d660373a0e4ab5de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aecc4eeb2f85ae731fd688ada7b89ac2 = $(`&lt;div id=&quot;html_aecc4eeb2f85ae731fd688ada7b89ac2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7225             latitude:27.3361             PM2_5:22.50840336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91e18c48a4274751d660373a0e4ab5de.setContent(html_aecc4eeb2f85ae731fd688ada7b89ac2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ee597b5fc79367ba1f31225495b7e77.bindPopup(popup_91e18c48a4274751d660373a0e4ab5de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c932362c36c9d94438af550a62ea359 = L.circleMarker(\\n\",\n       \"                [23.5486, 116.3242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1e130cef3f3c61cf5519f71d6683407 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2bccfbf72e89d4a5037f9e6dbc81686a = $(`&lt;div id=&quot;html_2bccfbf72e89d4a5037f9e6dbc81686a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3242             latitude:23.5486             PM2_5:32.28             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1e130cef3f3c61cf5519f71d6683407.setContent(html_2bccfbf72e89d4a5037f9e6dbc81686a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c932362c36c9d94438af550a62ea359.bindPopup(popup_c1e130cef3f3c61cf5519f71d6683407)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b1d8d778b3efedc21e74ceea7b28e76 = L.circleMarker(\\n\",\n       \"                [26.585, 101.7169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4ff5811d832fad05f28544d79ac240c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_345bbd6b655127aba94b3d79030d0a95 = $(`&lt;div id=&quot;html_345bbd6b655127aba94b3d79030d0a95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7169             latitude:26.585             PM2_5:32.77222222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4ff5811d832fad05f28544d79ac240c.setContent(html_345bbd6b655127aba94b3d79030d0a95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b1d8d778b3efedc21e74ceea7b28e76.bindPopup(popup_b4ff5811d832fad05f28544d79ac240c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_55ac712cd75c24283bf1afa57f2907b4 = L.circleMarker(\\n\",\n       \"                [28.2558, 109.6414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26a563032995943200c6614e2d651e41 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae46287d6d81eb965e1640d2cb9dca61 = $(`&lt;div id=&quot;html_ae46287d6d81eb965e1640d2cb9dca61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6414             latitude:28.2558             PM2_5:32.74358974             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26a563032995943200c6614e2d651e41.setContent(html_ae46287d6d81eb965e1640d2cb9dca61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_55ac712cd75c24283bf1afa57f2907b4.bindPopup(popup_26a563032995943200c6614e2d651e41)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3cfacfefa46643b88007119f60515059 = L.circleMarker(\\n\",\n       \"                [30.7478, 120.726],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75ee5fdbc3c0085e32d6dc360bcac86a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_823842053a02d88921785793ceb27e13 = $(`&lt;div id=&quot;html_823842053a02d88921785793ceb27e13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.726             latitude:30.7478             PM2_5:43.09888579             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75ee5fdbc3c0085e32d6dc360bcac86a.setContent(html_823842053a02d88921785793ceb27e13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3cfacfefa46643b88007119f60515059.bindPopup(popup_75ee5fdbc3c0085e32d6dc360bcac86a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f08e65f54401e2f6dd73617437ded942 = L.circleMarker(\\n\",\n       \"                [39.2133, 117.1837],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7b2b5ec8f07d4ad6c83fac3f8812081 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba714aac68cbcc54016e32dee500c89b = $(`&lt;div id=&quot;html_ba714aac68cbcc54016e32dee500c89b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1837             latitude:39.2133             PM2_5:50.36938202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7b2b5ec8f07d4ad6c83fac3f8812081.setContent(html_ba714aac68cbcc54016e32dee500c89b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f08e65f54401e2f6dd73617437ded942.bindPopup(popup_a7b2b5ec8f07d4ad6c83fac3f8812081)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44c159515bc4eaf6a2554b796257e528 = L.circleMarker(\\n\",\n       \"                [24.299, 109.4221],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f98a5f6e5bf31c84ae5195fd3e424065 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72474f2532323feda82728e1fbdd4ac6 = $(`&lt;div id=&quot;html_72474f2532323feda82728e1fbdd4ac6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4221             latitude:24.299             PM2_5:37.98179272             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f98a5f6e5bf31c84ae5195fd3e424065.setContent(html_72474f2532323feda82728e1fbdd4ac6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44c159515bc4eaf6a2554b796257e528.bindPopup(popup_f98a5f6e5bf31c84ae5195fd3e424065)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7049ebbd480ec604ae5b59fc9110d5b = L.circleMarker(\\n\",\n       \"                [45.6175, 122.8211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2012a88488f923e8c6d63315359c62f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2956b775e44e8bb00e8bc72c430cc05a = $(`&lt;div id=&quot;html_2956b775e44e8bb00e8bc72c430cc05a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.8211             latitude:45.6175             PM2_5:18.97067039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2012a88488f923e8c6d63315359c62f5.setContent(html_2956b775e44e8bb00e8bc72c430cc05a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7049ebbd480ec604ae5b59fc9110d5b.bindPopup(popup_2012a88488f923e8c6d63315359c62f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e60cb7e6d4d5fb413d07269d95c302f = L.circleMarker(\\n\",\n       \"                [41.8469, 123.81],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6713173ce7ebecbec6ee0f2e7af67de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a0ed166a3102b01cedaecd13a3fc711 = $(`&lt;div id=&quot;html_4a0ed166a3102b01cedaecd13a3fc711&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.81             latitude:41.8469             PM2_5:40.69088319             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6713173ce7ebecbec6ee0f2e7af67de.setContent(html_4a0ed166a3102b01cedaecd13a3fc711);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e60cb7e6d4d5fb413d07269d95c302f.bindPopup(popup_e6713173ce7ebecbec6ee0f2e7af67de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d76b1044728707910f5448e815428d0f = L.circleMarker(\\n\",\n       \"                [40.0758, 113.2994],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_340a3dd7a2ec74ce078adc23245c4c23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c92846814e0df529b0b0bc6be416ae55 = $(`&lt;div id=&quot;html_c92846814e0df529b0b0bc6be416ae55&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2994             latitude:40.0758             PM2_5:36.50283286             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_340a3dd7a2ec74ce078adc23245c4c23.setContent(html_c92846814e0df529b0b0bc6be416ae55);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d76b1044728707910f5448e815428d0f.bindPopup(popup_340a3dd7a2ec74ce078adc23245c4c23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6938c7a6c81280ab1a0bb252f74b8a7b = L.circleMarker(\\n\",\n       \"                [40.0844, 113.2711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd12f815b98d42bb1e86883b9c449727 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_945fef60592777f37f10ee6330a1f127 = $(`&lt;div id=&quot;html_945fef60592777f37f10ee6330a1f127&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2711             latitude:40.0844             PM2_5:37.62215909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd12f815b98d42bb1e86883b9c449727.setContent(html_945fef60592777f37f10ee6330a1f127);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6938c7a6c81280ab1a0bb252f74b8a7b.bindPopup(popup_dd12f815b98d42bb1e86883b9c449727)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47ec0d4782da5d84052e498f918a48ad = L.circleMarker(\\n\",\n       \"                [33.9528, 118.293],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_976c6a32987f0e02189aacc1541ab411 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a9994ff6c2a4e39cf3c268caab45bd8 = $(`&lt;div id=&quot;html_3a9994ff6c2a4e39cf3c268caab45bd8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.293             latitude:33.9528             PM2_5:55.33664773             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_976c6a32987f0e02189aacc1541ab411.setContent(html_3a9994ff6c2a4e39cf3c268caab45bd8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47ec0d4782da5d84052e498f918a48ad.bindPopup(popup_976c6a32987f0e02189aacc1541ab411)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0735013be75bf27563e850643696ba1d = L.circleMarker(\\n\",\n       \"                [36.0756, 103.712],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e04b7704c65585cb66b25f56826c904c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19dcd9b5b079f6c5ae13bd443b5b1a3f = $(`&lt;div id=&quot;html_19dcd9b5b079f6c5ae13bd443b5b1a3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.712             latitude:36.0756             PM2_5:54.81601124             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e04b7704c65585cb66b25f56826c904c.setContent(html_19dcd9b5b079f6c5ae13bd443b5b1a3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0735013be75bf27563e850643696ba1d.bindPopup(popup_e04b7704c65585cb66b25f56826c904c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1995b8e0d2e48ae5e1f7a79647207984 = L.circleMarker(\\n\",\n       \"                [30.9075, 113.942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e69f4eb66d1a6563e84cb17569460d07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80b5951e1b2243041733798f838c410c = $(`&lt;div id=&quot;html_80b5951e1b2243041733798f838c410c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.942             latitude:30.9075             PM2_5:49.76571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e69f4eb66d1a6563e84cb17569460d07.setContent(html_80b5951e1b2243041733798f838c410c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1995b8e0d2e48ae5e1f7a79647207984.bindPopup(popup_e69f4eb66d1a6563e84cb17569460d07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b69469eaf0ee9d1be712c2484b9dc8b = L.circleMarker(\\n\",\n       \"                [47.8515, 88.1267],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_986d4de9b60eed80c7a6d15ff6e56246 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba3960393fb4ad3f335e3d50a037c93a = $(`&lt;div id=&quot;html_ba3960393fb4ad3f335e3d50a037c93a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.1267             latitude:47.8515             PM2_5:12.43539326             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_986d4de9b60eed80c7a6d15ff6e56246.setContent(html_ba3960393fb4ad3f335e3d50a037c93a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b69469eaf0ee9d1be712c2484b9dc8b.bindPopup(popup_986d4de9b60eed80c7a6d15ff6e56246)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e7633278592317aa96a5a52024609e3 = L.circleMarker(\\n\",\n       \"                [23.7106, 113.0208],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9cfd204ee4059dee6642c37a1e2e55f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec189e3ec4f170a5b72ffb20f3d59a3f = $(`&lt;div id=&quot;html_ec189e3ec4f170a5b72ffb20f3d59a3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0208             latitude:23.7106             PM2_5:33.74147727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9cfd204ee4059dee6642c37a1e2e55f4.setContent(html_ec189e3ec4f170a5b72ffb20f3d59a3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e7633278592317aa96a5a52024609e3.bindPopup(popup_9cfd204ee4059dee6642c37a1e2e55f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac986c10f70fb3e2f2924caa249ce86d = L.circleMarker(\\n\",\n       \"                [35.7511, 114.2956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0681831b4e82957a8941bb97eb836493 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_508b1de1595f49a8bca4c57a9bb42c96 = $(`&lt;div id=&quot;html_508b1de1595f49a8bca4c57a9bb42c96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2956             latitude:35.7511             PM2_5:56.3356546             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0681831b4e82957a8941bb97eb836493.setContent(html_508b1de1595f49a8bca4c57a9bb42c96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac986c10f70fb3e2f2924caa249ce86d.bindPopup(popup_0681831b4e82957a8941bb97eb836493)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9dc45ce6519cffb01a6b3a133fd30f2 = L.circleMarker(\\n\",\n       \"                [25.1328, 99.1711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a345bf58b8c0978ad8ddcc0a818ddc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbf992d957051431cfece0cd41081733 = $(`&lt;div id=&quot;html_dbf992d957051431cfece0cd41081733&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.1711             latitude:25.1328             PM2_5:30.39106145             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a345bf58b8c0978ad8ddcc0a818ddc4.setContent(html_dbf992d957051431cfece0cd41081733);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9dc45ce6519cffb01a6b3a133fd30f2.bindPopup(popup_5a345bf58b8c0978ad8ddcc0a818ddc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bad74a84cbfd84a2c656532d046cfca8 = L.circleMarker(\\n\",\n       \"                [24.9117, 118.5819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a82bf4d8d1be89f41745d1d92595ee2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ae369f285ece6998b13775a95293977 = $(`&lt;div id=&quot;html_6ae369f285ece6998b13775a95293977&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5819             latitude:24.9117             PM2_5:24.49861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a82bf4d8d1be89f41745d1d92595ee2.setContent(html_6ae369f285ece6998b13775a95293977);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bad74a84cbfd84a2c656532d046cfca8.bindPopup(popup_0a82bf4d8d1be89f41745d1d92595ee2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_334e351acb43fba285b074d8244a20f4 = L.circleMarker(\\n\",\n       \"                [40.9161, 117.9664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c3546e00f1d7d0f8d2c6a008e9930e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7849ecc51eac857c32c47bf242cb35a = $(`&lt;div id=&quot;html_a7849ecc51eac857c32c47bf242cb35a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9664             latitude:40.9161             PM2_5:23.53472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c3546e00f1d7d0f8d2c6a008e9930e7.setContent(html_a7849ecc51eac857c32c47bf242cb35a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_334e351acb43fba285b074d8244a20f4.bindPopup(popup_8c3546e00f1d7d0f8d2c6a008e9930e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7588092e59d296d872e87c385e7e1b9f = L.circleMarker(\\n\",\n       \"                [27.9647, 116.385],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58bb384f87a3f0a6d3a0089bc3e306a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8950a1205f896d571bdbdea8367562bd = $(`&lt;div id=&quot;html_8950a1205f896d571bdbdea8367562bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.385             latitude:27.9647             PM2_5:37.26330532             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58bb384f87a3f0a6d3a0089bc3e306a7.setContent(html_8950a1205f896d571bdbdea8367562bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7588092e59d296d872e87c385e7e1b9f.bindPopup(popup_58bb384f87a3f0a6d3a0089bc3e306a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0503dc1e876ac77e1b1c03be6c981683 = L.circleMarker(\\n\",\n       \"                [29.3678, 113.1772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55ef47b1f3630ce53fe977caa1fb9d5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58bd22a6403267fcf27d01d680a9847b = $(`&lt;div id=&quot;html_58bd22a6403267fcf27d01d680a9847b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1772             latitude:29.3678             PM2_5:43.77106742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55ef47b1f3630ce53fe977caa1fb9d5a.setContent(html_58bd22a6403267fcf27d01d680a9847b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0503dc1e876ac77e1b1c03be6c981683.bindPopup(popup_55ef47b1f3630ce53fe977caa1fb9d5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9de2e3029a6cf4ed4f3037ec319da237 = L.circleMarker(\\n\",\n       \"                [38.8632, 115.493],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b72512943564b7c7fffc59c3c7c60d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de566a8927fa9fcf309f61eb0559b619 = $(`&lt;div id=&quot;html_de566a8927fa9fcf309f61eb0559b619&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.493             latitude:38.8632             PM2_5:57.32777778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b72512943564b7c7fffc59c3c7c60d6.setContent(html_de566a8927fa9fcf309f61eb0559b619);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9de2e3029a6cf4ed4f3037ec319da237.bindPopup(popup_3b72512943564b7c7fffc59c3c7c60d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb9575fdc2d84646bb6574ab17e42351 = L.circleMarker(\\n\",\n       \"                [19.9507, 110.576],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ddd85ec3ce1d8948545bcea50b670fd8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9a40d84c9c9857fe6118168d2300e4fb = $(`&lt;div id=&quot;html_9a40d84c9c9857fe6118168d2300e4fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.576             latitude:19.9507             PM2_5:16.45702006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ddd85ec3ce1d8948545bcea50b670fd8.setContent(html_9a40d84c9c9857fe6118168d2300e4fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb9575fdc2d84646bb6574ab17e42351.bindPopup(popup_ddd85ec3ce1d8948545bcea50b670fd8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_431fa4544bce662dcfdb1c2d4a975397 = L.circleMarker(\\n\",\n       \"                [26.0392, 119.303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6d7b6d3cf4e2e2eebce4ca674f2d721c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d9f18c7675d1f3aa21feff5fe05fbe0 = $(`&lt;div id=&quot;html_6d9f18c7675d1f3aa21feff5fe05fbe0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.303             latitude:26.0392             PM2_5:27.23743017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6d7b6d3cf4e2e2eebce4ca674f2d721c.setContent(html_6d9f18c7675d1f3aa21feff5fe05fbe0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_431fa4544bce662dcfdb1c2d4a975397.bindPopup(popup_6d7b6d3cf4e2e2eebce4ca674f2d721c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_271e3d383c301e52eaa2b717443c3253 = L.circleMarker(\\n\",\n       \"                [39.6295, 118.1997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_003f6bfc83efc4160c404dca8f7b2bee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fd0b7166f68765bf5d8eb8e86094424 = $(`&lt;div id=&quot;html_7fd0b7166f68765bf5d8eb8e86094424&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1997             latitude:39.6295             PM2_5:51.32686981             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_003f6bfc83efc4160c404dca8f7b2bee.setContent(html_7fd0b7166f68765bf5d8eb8e86094424);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_271e3d383c301e52eaa2b717443c3253.bindPopup(popup_003f6bfc83efc4160c404dca8f7b2bee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ea42b436c5ffbb167564d5078d0c645 = L.circleMarker(\\n\",\n       \"                [30.5489, 117.0486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae0c41025ecb70f62a333a84bfff0645 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb0bc6f910902b3cf61e7f0842caedbd = $(`&lt;div id=&quot;html_eb0bc6f910902b3cf61e7f0842caedbd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0486             latitude:30.5489             PM2_5:50.58888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae0c41025ecb70f62a333a84bfff0645.setContent(html_eb0bc6f910902b3cf61e7f0842caedbd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ea42b436c5ffbb167564d5078d0c645.bindPopup(popup_ae0c41025ecb70f62a333a84bfff0645)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e8be294957a9b2f2975431b1160f52e = L.circleMarker(\\n\",\n       \"                [30.2043, 114.8949],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_659c343f2b9c67f3bbeba0e45b0a9c1c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74c6ca23ba7625d063246efd6b41276d = $(`&lt;div id=&quot;html_74c6ca23ba7625d063246efd6b41276d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8949             latitude:30.2043             PM2_5:52.29083095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_659c343f2b9c67f3bbeba0e45b0a9c1c.setContent(html_74c6ca23ba7625d063246efd6b41276d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e8be294957a9b2f2975431b1160f52e.bindPopup(popup_659c343f2b9c67f3bbeba0e45b0a9c1c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4f2a03fc9851baf4f78b18bce060403 = L.circleMarker(\\n\",\n       \"                [34.5101, 109.5293],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c100871202fcee3ccc121a54e13d61a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d89298fcd0e7012e95be0e80c5c9bfd3 = $(`&lt;div id=&quot;html_d89298fcd0e7012e95be0e80c5c9bfd3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5293             latitude:34.5101             PM2_5:60.51585014             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c100871202fcee3ccc121a54e13d61a0.setContent(html_d89298fcd0e7012e95be0e80c5c9bfd3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4f2a03fc9851baf4f78b18bce060403.bindPopup(popup_c100871202fcee3ccc121a54e13d61a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f102a0cb21d491beadc4db994d427bc = L.circleMarker(\\n\",\n       \"                [43.8228, 126.4978],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0558c0fce5570c1b16dd9fe221ebcbf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5bab1973f2ec5edc30dd469e0dff4fc = $(`&lt;div id=&quot;html_d5bab1973f2ec5edc30dd469e0dff4fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4978             latitude:43.8228             PM2_5:27.61111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0558c0fce5570c1b16dd9fe221ebcbf.setContent(html_d5bab1973f2ec5edc30dd469e0dff4fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f102a0cb21d491beadc4db994d427bc.bindPopup(popup_f0558c0fce5570c1b16dd9fe221ebcbf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_a3a82268f1c3d6b84edb38a51a3b3dda = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_a3a82268f1c3d6b84edb38a51a3b3dda.color = d3.scale.threshold()\\n\",\n       \"              .domain([8.361031519, 8.606990639803609, 8.852949760607215, 9.098908881410823, 9.34486800221443, 9.590827123018038, 9.836786243821644, 10.082745364625252, 10.328704485428858, 10.574663606232466, 10.820622727036074, 11.06658184783968, 11.312540968643287, 11.558500089446895, 11.804459210250503, 12.050418331054109, 12.296377451857717, 12.542336572661323, 12.788295693464931, 13.034254814268538, 13.280213935072146, 13.526173055875752, 13.77213217667936, 14.018091297482968, 14.264050418286574, 14.51000953909018, 14.755968659893789, 15.001927780697397, 15.247886901501003, 15.493846022304611, 15.739805143108217, 15.985764263911825, 16.231723384715433, 16.47768250551904, 16.723641626322646, 16.969600747126254, 17.215559867929862, 17.461518988733467, 17.707478109537075, 17.953437230340683, 18.19939635114429, 18.4453554719479, 18.691314592751503, 18.937273713555115, 19.18323283435872, 19.429191955162324, 19.675151075965935, 19.92111019676954, 20.167069317573148, 20.413028438376756, 20.65898755918036, 20.904946679983972, 21.150905800787577, 21.39686492159118, 21.642824042394793, 21.888783163198397, 22.134742284002005, 22.380701404805613, 22.62666052560922, 22.87261964641283, 23.118578767216434, 23.36453788802004, 23.61049700882365, 23.856456129627254, 24.102415250430866, 24.34837437123447, 24.59433349203808, 24.840292612841683, 25.086251733645295, 25.3322108544489, 25.578169975252507, 25.824129096056115, 26.070088216859723, 26.316047337663328, 26.562006458466936, 26.807965579270544, 27.05392470007415, 27.29988382087776, 27.545842941681364, 27.791802062484972, 28.03776118328858, 28.283720304092185, 28.529679424895793, 28.7756385456994, 29.02159766650301, 29.267556787306614, 29.513515908110225, 29.75947502891383, 30.005434149717434, 30.251393270521046, 30.49735239132465, 30.74331151212826, 30.989270632931866, 31.235229753735474, 31.48118887453908, 31.72714799534269, 31.973107116146295, 32.2190662369499, 32.46502535775351, 32.710984478557116, 32.95694359936073, 33.20290272016433, 33.448861840967936, 33.69482096177154, 33.94078008257516, 34.186739203378764, 34.43269832418237, 34.67865744498597, 34.92461656578958, 35.17057568659319, 35.4165348073968, 35.662493928200405, 35.90845304900401, 36.154412169807614, 36.400371290611226, 36.64633041141483, 36.89228953221844, 37.138248653022046, 37.38420777382565, 37.63016689462926, 37.87612601543287, 38.12208513623648, 38.36804425704008, 38.61400337784369, 38.85996249864729, 39.10592161945091, 39.351880740254515, 39.59783986105812, 39.843798981861724, 40.08975810266533, 40.33571722346894, 40.581676344272545, 40.827635465076156, 41.07359458587976, 41.319553706683365, 41.56551282748698, 41.81147194829059, 42.057431069094186, 42.3033901898978, 42.54934931070141, 42.79530843150501, 43.04126755230862, 43.28722667311223, 43.533185793915834, 43.779144914719446, 44.02510403552305, 44.271063156326655, 44.517022277130266, 44.76298139793387, 45.008940518737475, 45.25489963954109, 45.5008587603447, 45.746817881148296, 45.99277700195191, 46.23873612275552, 46.484695243559116, 46.73065436436273, 46.97661348516634, 47.222572605969944, 47.46853172677355, 47.71449084757716, 47.960449968380765, 48.20640908918437, 48.45236820998798, 48.698327330791585, 48.9442864515952, 49.1902455723988, 49.436204693202406, 49.68216381400602, 49.92812293480962, 50.174082055613226, 50.42004117641684, 50.66600029722045, 50.91195941802405, 51.15791853882766, 51.40387765963127, 51.64983678043487, 51.89579590123848, 52.14175502204209, 52.387714142845695, 52.6336732636493, 52.87963238445291, 53.125591505256516, 53.37155062606013, 53.61750974686373, 53.863468867667336, 54.10942798847095, 54.35538710927455, 54.60134623007816, 54.84730535088177, 55.09326447168538, 55.33922359248898, 55.58518271329259, 55.8311418340962, 56.0771009548998, 56.32306007570341, 56.56901919650702, 56.814978317310626, 57.06093743811423, 57.30689655891784, 57.552855679721446, 57.79881480052505, 58.04477392132866, 58.29073304213227, 58.53669216293588, 58.78265128373948, 59.02861040454309, 59.2745695253467, 59.52052864615031, 59.76648776695391, 60.01244688775752, 60.25840600856113, 60.50436512936473, 60.75032425016834, 60.99628337097195, 61.242242491775556, 61.48820161257916, 61.73416073338277, 61.98011985418638, 62.22607897498998, 62.47203809579359, 62.7179972165972, 62.96395633740081, 63.209915458204414, 63.45587457900802, 63.70183369981163, 63.947792820615234, 64.19375194141884, 64.43971106222244, 64.68567018302606, 64.93162930382965, 65.17758842463327, 65.42354754543689, 65.66950666624048, 65.9154657870441, 66.1614249078477, 66.40738402865131, 66.65334314945491, 66.89930227025852, 67.14526139106212, 67.39122051186573, 67.63717963266934, 67.88313875347295, 68.12909787427657, 68.37505699508016, 68.62101611588378, 68.86697523668738, 69.11293435749099, 69.35889347829459, 69.6048525990982, 69.85081171990181, 70.0967708407054, 70.34272996150902, 70.58868908231264, 70.83464820311625, 71.08060732391985, 71.32656644472345, 71.57252556552706, 71.81848468633066, 72.06444380713427, 72.31040292793787, 72.55636204874148, 72.80232116954508, 73.04828029034871, 73.29423941115232, 73.54019853195592, 73.78615765275953, 74.03211677356313, 74.27807589436674, 74.52403501517034, 74.76999413597395, 75.01595325677755, 75.26191237758118, 75.50787149838476, 75.75383061918836, 75.999789739992, 76.2457488607956, 76.4917079815992, 76.73766710240281, 76.98362622320641, 77.22958534401002, 77.47554446481362, 77.72150358561723, 77.96746270642086, 78.21342182722447, 78.45938094802804, 78.70534006883167, 78.95129918963528, 79.19725831043888, 79.44321743124249, 79.68917655204609, 79.9351356728497, 80.1810947936533, 80.4270539144569, 80.67301303526054, 80.91897215606414, 81.16493127686775, 81.41089039767135, 81.65684951847496, 81.90280863927856, 82.14876776008217, 82.39472688088577, 82.6406860016894, 82.88664512249298, 83.13260424329658, 83.37856336410022, 83.62452248490382, 83.87048160570743, 84.11644072651103, 84.36239984731463, 84.60835896811824, 84.85431808892184, 85.10027720972545, 85.34623633052905, 85.59219545133269, 85.83815457213626, 86.0841136929399, 86.3300728137435, 86.5760319345471, 86.82199105535071, 87.06795017615431, 87.31390929695792, 87.55986841776152, 87.80582753856513, 88.05178665936873, 88.29774578017236, 88.54370490097597, 88.78966402177957, 89.03562314258318, 89.28158226338678, 89.52754138419039, 89.77350050499399, 90.0194596257976, 90.2654187466012, 90.5113778674048, 90.75733698820841, 91.00329610901204, 91.24925522981565, 91.49521435061925, 91.74117347142285, 91.98713259222646, 92.23309171303006, 92.47905083383367, 92.72500995463727, 92.9709690754409, 93.21692819624448, 93.46288731704809, 93.70884643785172, 93.95480555865532, 94.20076467945893, 94.44672380026253, 94.69268292106614, 94.93864204186974, 95.18460116267335, 95.43056028347695, 95.67651940428058, 95.92247852508419, 96.16843764588776, 96.4143967666914, 96.660355887495, 96.9063150082986, 97.15227412910221, 97.39823324990581, 97.64419237070942, 97.89015149151302, 98.13611061231663, 98.38206973312026, 98.62802885392387, 98.87398797472747, 99.11994709553107, 99.36590621633468, 99.61186533713828, 99.85782445794189, 100.10378357874549, 100.3497426995491, 100.5957018203527, 100.8416609411563, 101.08762006195991, 101.33357918276354, 101.57953830356715, 101.82549742437075, 102.07145654517436, 102.31741566597796, 102.56337478678157, 102.80933390758517, 103.05529302838877, 103.30125214919241, 103.54721126999598, 103.79317039079959, 104.03912951160322, 104.28508863240683, 104.53104775321043, 104.77700687401403, 105.02296599481764, 105.26892511562124, 105.51488423642485, 105.76084335722845, 106.00680247803209, 106.25276159883569, 106.49872071963927, 106.7446798404429, 106.9906389612465, 107.23659808205011, 107.48255720285371, 107.72851632365732, 107.97447544446092, 108.22043456526453, 108.46639368606813, 108.71235280687176, 108.95831192767537, 109.20427104847897, 109.45023016928258, 109.69618929008618, 109.94214841088979, 110.18810753169339, 110.434066652497, 110.68002577330063, 110.9259848941042, 111.17194401490781, 111.41790313571144, 111.66386225651505, 111.90982137731865, 112.15578049812225, 112.40173961892586, 112.64769873972946, 112.89365786053307, 113.13961698133667, 113.38557610214028, 113.63153522294391, 113.87749434374749, 114.12345346455112, 114.36941258535472, 114.61537170615833, 114.86133082696193, 115.10728994776554, 115.35324906856914, 115.59920818937275, 115.84516731017635, 116.09112643097995, 116.33708555178359, 116.58304467258719, 116.82900379339077, 117.0749629141944, 117.320922034998, 117.56688115580161, 117.81284027660521, 118.05879939740882, 118.30475851821242, 118.55071763901603, 118.79667675981963, 119.04263588062327, 119.28859500142687, 119.53455412223047, 119.78051324303408, 120.02647236383768, 120.27243148464129, 120.51839060544489, 120.7643497262485, 121.01030884705213, 121.2562679678557, 121.50222708865931, 121.74818620946294, 121.99414533026655, 122.24010445107015, 122.48606357187376, 122.73202269267736, 122.97798181348097, 123.22394093428457, 123.46990005508817, 123.71585917589181, 123.96181829669541, 124.20777741749899, 124.45373653830262, 124.69969565910623, 124.94565477990983, 125.19161390071343, 125.43757302151704, 125.68353214232064, 125.92949126312425, 126.17545038392785, 126.42140950473146, 126.66736862553509, 126.9133277463387, 127.1592868671423, 127.4052459879459, 127.65120510874951, 127.89716422955311, 128.14312335035672, 128.38908247116032, 128.63504159196393, 128.88100071276753, 129.12695983357114, 129.37291895437477, 129.61887807517837, 129.86483719598198, 130.11079631678558, 130.3567554375892, 130.6027145583928, 130.8486736791964, 131.0946328])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_a3a82268f1c3d6b84edb38a51a3b3dda.x = d3.scale.linear()\\n\",\n       \"              .domain([8.361031519, 131.0946328])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_a3a82268f1c3d6b84edb38a51a3b3dda.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_a3a82268f1c3d6b84edb38a51a3b3dda.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_a3a82268f1c3d6b84edb38a51a3b3dda.legend.addTo(map_8171d832b28ce8cdca0f005b3d2fcb60);\\n\",\n       \"\\n\",\n       \"    color_map_a3a82268f1c3d6b84edb38a51a3b3dda.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_a3a82268f1c3d6b84edb38a51a3b3dda.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([8.361031519, &#x27;&#x27;, &#x27;&#x27;, 26.77107171115, &#x27;&#x27;, &#x27;&#x27;, 45.1811119033, &#x27;&#x27;, &#x27;&#x27;, 63.591152095450006, &#x27;&#x27;, &#x27;&#x27;, 82.00119228759999, &#x27;&#x27;, &#x27;&#x27;, 100.41123247975, &#x27;&#x27;, &#x27;&#x27;, 118.8212726719, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_a3a82268f1c3d6b84edb38a51a3b3dda.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_a3a82268f1c3d6b84edb38a51a3b3dda.g = color_map_a3a82268f1c3d6b84edb38a51a3b3dda.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_a3a82268f1c3d6b84edb38a51a3b3dda.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_a3a82268f1c3d6b84edb38a51a3b3dda.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_a3a82268f1c3d6b84edb38a51a3b3dda.x(color_map_a3a82268f1c3d6b84edb38a51a3b3dda.color.domain()[i - 1]) : color_map_a3a82268f1c3d6b84edb38a51a3b3dda.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_a3a82268f1c3d6b84edb38a51a3b3dda.color.domain().length ? color_map_a3a82268f1c3d6b84edb38a51a3b3dda.x(color_map_a3a82268f1c3d6b84edb38a51a3b3dda.color.domain()[i]) : color_map_a3a82268f1c3d6b84edb38a51a3b3dda.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_a3a82268f1c3d6b84edb38a51a3b3dda.g.call(color_map_a3a82268f1c3d6b84edb38a51a3b3dda.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13b9cc68050>\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.display_dataset(name='test', y_column='PM2_5', colors=[\\n\",\n    \"                           'blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"预测集\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"id\": \"B83973E2080B4AF19B145B0EFFA0E98C\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_15109b9dec5a17c55b09704b09de9cba {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_15109b9dec5a17c55b09704b09de9cba&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_15109b9dec5a17c55b09704b09de9cba = L.map(\\n\",\n       \"                &quot;map_15109b9dec5a17c55b09704b09de9cba&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.19423395697872, 113.30814319611348],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_090573fe18626ad1bf8045c1296c5f0b = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_090573fe18626ad1bf8045c1296c5f0b.addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d88ee428b8fa8443e1ff77d0e4a076f = L.circleMarker(\\n\",\n       \"                [39.8673, 116.366],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca0ff167aec017bc78f1e5d7cfa170d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c8c7b7a7d98af34fe07f5520989bceb7 = $(`&lt;div id=&quot;html_c8c7b7a7d98af34fe07f5520989bceb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.366             latitude:39.8673             pred_result:47.05397415161133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca0ff167aec017bc78f1e5d7cfa170d7.setContent(html_c8c7b7a7d98af34fe07f5520989bceb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d88ee428b8fa8443e1ff77d0e4a076f.bindPopup(popup_ca0ff167aec017bc78f1e5d7cfa170d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb731f2997d570ca3b26e285d1292534 = L.circleMarker(\\n\",\n       \"                [40.2865, 116.17],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d622304f9265ccd6053db12ca7c4d1e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9cf3430ecfa523d01b214984438f683c = $(`&lt;div id=&quot;html_9cf3430ecfa523d01b214984438f683c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.17             latitude:40.2865             pred_result:36.36479568481445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d622304f9265ccd6053db12ca7c4d1e5.setContent(html_9cf3430ecfa523d01b214984438f683c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb731f2997d570ca3b26e285d1292534.bindPopup(popup_d622304f9265ccd6053db12ca7c4d1e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_868c1c2f956e816af1bf1eeb6e880033 = L.circleMarker(\\n\",\n       \"                [39.9522, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_224e59b59765c175f3bcf56d225102c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aae47ffed160d1bc224ec0fcaa0f98ba = $(`&lt;div id=&quot;html_aae47ffed160d1bc224ec0fcaa0f98ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.9522             pred_result:47.56850814819336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_224e59b59765c175f3bcf56d225102c9.setContent(html_aae47ffed160d1bc224ec0fcaa0f98ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_868c1c2f956e816af1bf1eeb6e880033.bindPopup(popup_224e59b59765c175f3bcf56d225102c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83fa5ff88457e033288b42dc948cfa02 = L.circleMarker(\\n\",\n       \"                [39.8745, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05765b4565634e804f34ae0211b5f80b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9bca1e9c7ce5b04e0b05efc577f41544 = $(`&lt;div id=&quot;html_9bca1e9c7ce5b04e0b05efc577f41544&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.8745             pred_result:46.59552001953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05765b4565634e804f34ae0211b5f80b.setContent(html_9bca1e9c7ce5b04e0b05efc577f41544);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83fa5ff88457e033288b42dc948cfa02.bindPopup(popup_05765b4565634e804f34ae0211b5f80b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb899fd4a3978a7d7044a95539835c8a = L.circleMarker(\\n\",\n       \"                [39.9716, 116.473],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1199307e6cfed4454fc81fdfd6a0dd1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa6a6f1478f5219fa52c29bbe894a613 = $(`&lt;div id=&quot;html_fa6a6f1478f5219fa52c29bbe894a613&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.473             latitude:39.9716             pred_result:45.79104232788086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1199307e6cfed4454fc81fdfd6a0dd1f.setContent(html_fa6a6f1478f5219fa52c29bbe894a613);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb899fd4a3978a7d7044a95539835c8a.bindPopup(popup_1199307e6cfed4454fc81fdfd6a0dd1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7039f7cd2dc3e295e5457b6245f253e5 = L.circleMarker(\\n\",\n       \"                [39.9425, 116.361],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1728e0b06102c167dee0e45abf9b21cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_814e9716b71b28398492858a2cb76a49 = $(`&lt;div id=&quot;html_814e9716b71b28398492858a2cb76a49&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.361             latitude:39.9425             pred_result:45.2083854675293             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1728e0b06102c167dee0e45abf9b21cf.setContent(html_814e9716b71b28398492858a2cb76a49);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7039f7cd2dc3e295e5457b6245f253e5.bindPopup(popup_1728e0b06102c167dee0e45abf9b21cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_302d8af710eb3509831ee57866787f0d = L.circleMarker(\\n\",\n       \"                [39.9934, 116.315],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61cf365e067ce70a9c0f71da9f07d981 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abe867d9e6ed12a534b6db8327c4083e = $(`&lt;div id=&quot;html_abe867d9e6ed12a534b6db8327c4083e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.315             latitude:39.9934             pred_result:44.68904495239258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61cf365e067ce70a9c0f71da9f07d981.setContent(html_abe867d9e6ed12a534b6db8327c4083e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_302d8af710eb3509831ee57866787f0d.bindPopup(popup_61cf365e067ce70a9c0f71da9f07d981)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4d314729aadb7268b03692082cb971c = L.circleMarker(\\n\",\n       \"                [40.1438, 116.72],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d4276d6b5a9358dfed0118df8599f5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0301d2ea3c11ae40228ef2f3427e2171 = $(`&lt;div id=&quot;html_0301d2ea3c11ae40228ef2f3427e2171&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.72             latitude:40.1438             pred_result:40.88593292236328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d4276d6b5a9358dfed0118df8599f5f.setContent(html_0301d2ea3c11ae40228ef2f3427e2171);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4d314729aadb7268b03692082cb971c.bindPopup(popup_3d4276d6b5a9358dfed0118df8599f5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5925834b39081f5a703ae72fbceefce = L.circleMarker(\\n\",\n       \"                [40.3937, 116.644],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de57299edbd5369097d7fc95f03bf122 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e66d358cc431045ac9b22593f9ec83c = $(`&lt;div id=&quot;html_1e66d358cc431045ac9b22593f9ec83c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.644             latitude:40.3937             pred_result:35.933013916015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de57299edbd5369097d7fc95f03bf122.setContent(html_1e66d358cc431045ac9b22593f9ec83c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5925834b39081f5a703ae72fbceefce.bindPopup(popup_de57299edbd5369097d7fc95f03bf122)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bf2066ac52de4db989239f70f677c42 = L.circleMarker(\\n\",\n       \"                [40.1952, 116.23],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_074b3c463a232d0135a79696e90805d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_735843c1ead35cf4f44f856730a60b26 = $(`&lt;div id=&quot;html_735843c1ead35cf4f44f856730a60b26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.23             latitude:40.1952             pred_result:41.28071975708008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_074b3c463a232d0135a79696e90805d6.setContent(html_735843c1ead35cf4f44f856730a60b26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bf2066ac52de4db989239f70f677c42.bindPopup(popup_074b3c463a232d0135a79696e90805d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03b3d49d09271ee5e74b7ce8bca86cb4 = L.circleMarker(\\n\",\n       \"                [40.0031, 116.407],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b7497c834f6bf42be23c2ce95585ffe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3155e00adf77651d2a5bbea7fef6d2ba = $(`&lt;div id=&quot;html_3155e00adf77651d2a5bbea7fef6d2ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.407             latitude:40.0031             pred_result:43.1165657043457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b7497c834f6bf42be23c2ce95585ffe.setContent(html_3155e00adf77651d2a5bbea7fef6d2ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03b3d49d09271ee5e74b7ce8bca86cb4.bindPopup(popup_1b7497c834f6bf42be23c2ce95585ffe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b1c70d001f71f4b0203f453a702a9f4 = L.circleMarker(\\n\",\n       \"                [39.9279, 116.225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e2083aed1dd1418c82cefe0af6b4861 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2361883109ea47be8c4a9c56fe83965 = $(`&lt;div id=&quot;html_d2361883109ea47be8c4a9c56fe83965&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.225             latitude:39.9279             pred_result:44.06284713745117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e2083aed1dd1418c82cefe0af6b4861.setContent(html_d2361883109ea47be8c4a9c56fe83965);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b1c70d001f71f4b0203f453a702a9f4.bindPopup(popup_4e2083aed1dd1418c82cefe0af6b4861)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ee5c527ef246644c2e0ecafc07b16b4 = L.circleMarker(\\n\",\n       \"                [39.1654, 117.145],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f0fd114d8d7cc7c7a71345d3be23acb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b595f6979e4f3207437efcd4bf36a236 = $(`&lt;div id=&quot;html_b595f6979e4f3207437efcd4bf36a236&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.145             latitude:39.1654             pred_result:45.459136962890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f0fd114d8d7cc7c7a71345d3be23acb.setContent(html_b595f6979e4f3207437efcd4bf36a236);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ee5c527ef246644c2e0ecafc07b16b4.bindPopup(popup_1f0fd114d8d7cc7c7a71345d3be23acb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0f7b7ce494af0f5e9acb84c2285d588 = L.circleMarker(\\n\",\n       \"                [39.1082, 117.237],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d788dc2aebffabdc199394830c58c2e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a8d73f9002f0c348f91a1144d07b04a = $(`&lt;div id=&quot;html_3a8d73f9002f0c348f91a1144d07b04a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.237             latitude:39.1082             pred_result:45.88684844970703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d788dc2aebffabdc199394830c58c2e2.setContent(html_3a8d73f9002f0c348f91a1144d07b04a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0f7b7ce494af0f5e9acb84c2285d588.bindPopup(popup_d788dc2aebffabdc199394830c58c2e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c03e7e18f4b2426bc48d9dff8fd2609 = L.circleMarker(\\n\",\n       \"                [39.0927, 117.202],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2907d12bfe2fb33a93dd243064a3500c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_702ecbc5fc8e03b2296e2c44046312cc = $(`&lt;div id=&quot;html_702ecbc5fc8e03b2296e2c44046312cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.202             latitude:39.0927             pred_result:44.654090881347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2907d12bfe2fb33a93dd243064a3500c.setContent(html_702ecbc5fc8e03b2296e2c44046312cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c03e7e18f4b2426bc48d9dff8fd2609.bindPopup(popup_2907d12bfe2fb33a93dd243064a3500c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76f94af8c4a01d842f025d75e29152db = L.circleMarker(\\n\",\n       \"                [39.2133, 117.1837],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc0ca8ad82fd08cd54a60eb25abf20cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c4ecd0f759a87ece129059a24e3bc98 = $(`&lt;div id=&quot;html_0c4ecd0f759a87ece129059a24e3bc98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1837             latitude:39.2133             pred_result:46.90868377685547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc0ca8ad82fd08cd54a60eb25abf20cb.setContent(html_0c4ecd0f759a87ece129059a24e3bc98);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76f94af8c4a01d842f025d75e29152db.bindPopup(popup_fc0ca8ad82fd08cd54a60eb25abf20cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d5978b18c04deadc94b057626070fee0 = L.circleMarker(\\n\",\n       \"                [39.0877, 117.307],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f32bf7cd4d1305a9809c3c88a487e5e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_802fdbaa1c3d7681c9d2b7cb5c7bb524 = $(`&lt;div id=&quot;html_802fdbaa1c3d7681c9d2b7cb5c7bb524&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.307             latitude:39.0877             pred_result:46.061378479003906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f32bf7cd4d1305a9809c3c88a487e5e5.setContent(html_802fdbaa1c3d7681c9d2b7cb5c7bb524);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d5978b18c04deadc94b057626070fee0.bindPopup(popup_f32bf7cd4d1305a9809c3c88a487e5e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6908ce371f122b1e8f22e6729a7f914d = L.circleMarker(\\n\",\n       \"                [38.8394, 117.457],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fbc0c64e6d0296c702c6484a2f9cb184 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8858b6b20b11958f6880d1fe98eae158 = $(`&lt;div id=&quot;html_8858b6b20b11958f6880d1fe98eae158&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.457             latitude:38.8394             pred_result:43.73194122314453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fbc0c64e6d0296c702c6484a2f9cb184.setContent(html_8858b6b20b11958f6880d1fe98eae158);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6908ce371f122b1e8f22e6729a7f914d.bindPopup(popup_fbc0c64e6d0296c702c6484a2f9cb184)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f09b59fddcd0629aa284ca54b9d13676 = L.circleMarker(\\n\",\n       \"                [38.9194, 117.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d248a93ab4b583da51f712339154b589 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cdd6d39e6b763f46fdf2082c32185e0a = $(`&lt;div id=&quot;html_cdd6d39e6b763f46fdf2082c32185e0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.157             latitude:38.9194             pred_result:44.674198150634766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d248a93ab4b583da51f712339154b589.setContent(html_cdd6d39e6b763f46fdf2082c32185e0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f09b59fddcd0629aa284ca54b9d13676.bindPopup(popup_d248a93ab4b583da51f712339154b589)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_374d637d65a98314989ee0987040045b = L.circleMarker(\\n\",\n       \"                [38.0513, 114.4548],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46c22837509a240b44112b134c452a91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c148ecbf407357b123eec553f2256ed = $(`&lt;div id=&quot;html_3c148ecbf407357b123eec553f2256ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4548             latitude:38.0513             pred_result:72.8931655883789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46c22837509a240b44112b134c452a91.setContent(html_3c148ecbf407357b123eec553f2256ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_374d637d65a98314989ee0987040045b.bindPopup(popup_46c22837509a240b44112b134c452a91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8fbbda23f765c08c3df971a7b0a4708f = L.circleMarker(\\n\",\n       \"                [38.0398, 114.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_652851b796a276d14322f8dc136213c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c91342271bd458d16c252f5d0a117802 = $(`&lt;div id=&quot;html_c91342271bd458d16c252f5d0a117802&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6046             latitude:38.0398             pred_result:71.03820037841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_652851b796a276d14322f8dc136213c2.setContent(html_c91342271bd458d16c252f5d0a117802);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8fbbda23f765c08c3df971a7b0a4708f.bindPopup(popup_652851b796a276d14322f8dc136213c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71ba9fe3080b9c2d3e5f747124d4507f = L.circleMarker(\\n\",\n       \"                [38.1398, 114.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81a4eaa0bfc922ad7c197ec2af0be933 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76d2743cb165574087eeff49a3308675 = $(`&lt;div id=&quot;html_76d2743cb165574087eeff49a3308675&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5019             latitude:38.1398             pred_result:72.87681579589844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81a4eaa0bfc922ad7c197ec2af0be933.setContent(html_76d2743cb165574087eeff49a3308675);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71ba9fe3080b9c2d3e5f747124d4507f.bindPopup(popup_81a4eaa0bfc922ad7c197ec2af0be933)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3645d6c2d8af441a111e2bcefa05909b = L.circleMarker(\\n\",\n       \"                [38.00583333, 114.4586111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b9e4003fc0d2c903165d3e3083ad1b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2b56a292b4fa2f4346b1e9aecf98fd2 = $(`&lt;div id=&quot;html_b2b56a292b4fa2f4346b1e9aecf98fd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4586111             latitude:38.00583333             pred_result:72.74662780761719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b9e4003fc0d2c903165d3e3083ad1b2.setContent(html_b2b56a292b4fa2f4346b1e9aecf98fd2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3645d6c2d8af441a111e2bcefa05909b.bindPopup(popup_3b9e4003fc0d2c903165d3e3083ad1b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73074d79a82210195f3278f276554849 = L.circleMarker(\\n\",\n       \"                [38.01777778, 114.53305559999998],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_803afb8d6e48ea4f866d639b54ad11eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d416b422bcb3a8d22926e6fc1ad89d5 = $(`&lt;div id=&quot;html_3d416b422bcb3a8d22926e6fc1ad89d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.53305559999998             latitude:38.01777778             pred_result:71.96185302734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_803afb8d6e48ea4f866d639b54ad11eb.setContent(html_3d416b422bcb3a8d22926e6fc1ad89d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73074d79a82210195f3278f276554849.bindPopup(popup_803afb8d6e48ea4f866d639b54ad11eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c67ce3921e8394a2161eea10c66881ea = L.circleMarker(\\n\",\n       \"                [38.0524, 114.5214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd00faf9c5886f936927c8a396daedba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7765bb8a4a63af6e7e464911dc96c3d7 = $(`&lt;div id=&quot;html_7765bb8a4a63af6e7e464911dc96c3d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5214             latitude:38.0524             pred_result:72.19702911376953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd00faf9c5886f936927c8a396daedba.setContent(html_7765bb8a4a63af6e7e464911dc96c3d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c67ce3921e8394a2161eea10c66881ea.bindPopup(popup_bd00faf9c5886f936927c8a396daedba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb59a23106a9f9842e04c9a5d9989e3a = L.circleMarker(\\n\",\n       \"                [37.9097, 114.3541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b996e83c9b71745b95fc858d2b667b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7a45e97982bff1d416346c4db86f839 = $(`&lt;div id=&quot;html_d7a45e97982bff1d416346c4db86f839&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3541             latitude:37.9097             pred_result:71.90018463134766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b996e83c9b71745b95fc858d2b667b2.setContent(html_d7a45e97982bff1d416346c4db86f839);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb59a23106a9f9842e04c9a5d9989e3a.bindPopup(popup_0b996e83c9b71745b95fc858d2b667b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d26b19040946e7cf8694848bc9e5986 = L.circleMarker(\\n\",\n       \"                [39.6308, 118.1662],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f08fa672d85c95ab485d9ba3153bace = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70f505c926cb0a4dd6a46232464bfedd = $(`&lt;div id=&quot;html_70f505c926cb0a4dd6a46232464bfedd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1662             latitude:39.6308             pred_result:46.81452178955078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f08fa672d85c95ab485d9ba3153bace.setContent(html_70f505c926cb0a4dd6a46232464bfedd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d26b19040946e7cf8694848bc9e5986.bindPopup(popup_2f08fa672d85c95ab485d9ba3153bace)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c679ac7a440f03451b9f790804b8f06 = L.circleMarker(\\n\",\n       \"                [39.643, 118.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f53a14506e21378a4760425f3d98ebf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_560260fe0f8e075c13e075aa10e7d2e6 = $(`&lt;div id=&quot;html_560260fe0f8e075c13e075aa10e7d2e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.144             latitude:39.643             pred_result:43.72468566894531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f53a14506e21378a4760425f3d98ebf.setContent(html_560260fe0f8e075c13e075aa10e7d2e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c679ac7a440f03451b9f790804b8f06.bindPopup(popup_5f53a14506e21378a4760425f3d98ebf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_780cf882204999068317b4758e28885b = L.circleMarker(\\n\",\n       \"                [39.6407, 118.1853],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d5cce262cf85ba998808d6b7c2d62cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b751f1334884afc5a2a221a22d6fba2 = $(`&lt;div id=&quot;html_0b751f1334884afc5a2a221a22d6fba2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1853             latitude:39.6407             pred_result:43.958648681640625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d5cce262cf85ba998808d6b7c2d62cc.setContent(html_0b751f1334884afc5a2a221a22d6fba2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_780cf882204999068317b4758e28885b.bindPopup(popup_7d5cce262cf85ba998808d6b7c2d62cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb740b5a4bb3f8da67659d9fe42f929a = L.circleMarker(\\n\",\n       \"                [39.6679, 118.2185],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef1a5792d9dd3008ba682ed0efe78da2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1606f56a4d5d5656a251dfd2bbf47719 = $(`&lt;div id=&quot;html_1606f56a4d5d5656a251dfd2bbf47719&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2185             latitude:39.6679             pred_result:41.218223571777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef1a5792d9dd3008ba682ed0efe78da2.setContent(html_1606f56a4d5d5656a251dfd2bbf47719);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb740b5a4bb3f8da67659d9fe42f929a.bindPopup(popup_ef1a5792d9dd3008ba682ed0efe78da2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8dff227f460bc5177a22138d7a6305ff = L.circleMarker(\\n\",\n       \"                [39.65782, 118.1838],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98afd3b30f56de083b80ae693aa4f817 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a2155e3178ec718243afc15741c4bce = $(`&lt;div id=&quot;html_3a2155e3178ec718243afc15741c4bce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1838             latitude:39.65782             pred_result:43.57353210449219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98afd3b30f56de083b80ae693aa4f817.setContent(html_3a2155e3178ec718243afc15741c4bce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8dff227f460bc5177a22138d7a6305ff.bindPopup(popup_98afd3b30f56de083b80ae693aa4f817)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_084088d0ac488fe3e84e76576dfde715 = L.circleMarker(\\n\",\n       \"                [39.6295, 118.1997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_563996d55faa1a1277b8481379c30295 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0797f1d6ad2eb55bf9e3ddcd69208968 = $(`&lt;div id=&quot;html_0797f1d6ad2eb55bf9e3ddcd69208968&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1997             latitude:39.6295             pred_result:42.27452087402344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_563996d55faa1a1277b8481379c30295.setContent(html_0797f1d6ad2eb55bf9e3ddcd69208968);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_084088d0ac488fe3e84e76576dfde715.bindPopup(popup_563996d55faa1a1277b8481379c30295)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f18caf4a5493d0abf91129d20e25e07 = L.circleMarker(\\n\",\n       \"                [39.8283, 119.5259],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9846b699bc46e5c01b03fd1093067b3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d664a894f0fe6bb21b940fea816b4dea = $(`&lt;div id=&quot;html_d664a894f0fe6bb21b940fea816b4dea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5259             latitude:39.8283             pred_result:30.822580337524414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9846b699bc46e5c01b03fd1093067b3a.setContent(html_d664a894f0fe6bb21b940fea816b4dea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f18caf4a5493d0abf91129d20e25e07.bindPopup(popup_9846b699bc46e5c01b03fd1093067b3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae3b1db43a6ddcdf33c2f01a5f113adb = L.circleMarker(\\n\",\n       \"                [40.0181, 119.7624],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b8e64b7d2473c5d3871dfee9bf90da3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f8060c56e471605ca1daa659bbd7fbc = $(`&lt;div id=&quot;html_7f8060c56e471605ca1daa659bbd7fbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7624             latitude:40.0181             pred_result:25.37030029296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b8e64b7d2473c5d3871dfee9bf90da3.setContent(html_7f8060c56e471605ca1daa659bbd7fbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae3b1db43a6ddcdf33c2f01a5f113adb.bindPopup(popup_9b8e64b7d2473c5d3871dfee9bf90da3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8721c739278d41767d5764cc5f74a7c0 = L.circleMarker(\\n\",\n       \"                [39.9567, 119.6023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bedae9b2f404471454753deaea70d742 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_867a865af548dfc69516da7eb8a2894b = $(`&lt;div id=&quot;html_867a865af548dfc69516da7eb8a2894b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6023             latitude:39.9567             pred_result:30.45030975341797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bedae9b2f404471454753deaea70d742.setContent(html_867a865af548dfc69516da7eb8a2894b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8721c739278d41767d5764cc5f74a7c0.bindPopup(popup_bedae9b2f404471454753deaea70d742)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8488cfde8fd91f16179b3f8ee3b37a1c = L.circleMarker(\\n\",\n       \"                [39.9419, 119.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b458e616df93ce40b24ae592cddc9d47 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d66f9410313e08f0b71701a7547cf15a = $(`&lt;div id=&quot;html_d66f9410313e08f0b71701a7547cf15a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5369             latitude:39.9419             pred_result:27.50466537475586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b458e616df93ce40b24ae592cddc9d47.setContent(html_d66f9410313e08f0b71701a7547cf15a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8488cfde8fd91f16179b3f8ee3b37a1c.bindPopup(popup_b458e616df93ce40b24ae592cddc9d47)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_225a71b4956e763f94e2d9f947ced9ee = L.circleMarker(\\n\",\n       \"                [36.61763, 114.5129],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6703c842e361b64ef97bd3274be5f06f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80034383f433f19d022907abfb222059 = $(`&lt;div id=&quot;html_80034383f433f19d022907abfb222059&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5129             latitude:36.61763             pred_result:71.83538055419922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6703c842e361b64ef97bd3274be5f06f.setContent(html_80034383f433f19d022907abfb222059);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_225a71b4956e763f94e2d9f947ced9ee.bindPopup(popup_6703c842e361b64ef97bd3274be5f06f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d0c8b0e2794d74601be2af40277d545 = L.circleMarker(\\n\",\n       \"                [36.6164, 114.5426],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75dd585c610ee02d00686452fece8b99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0eff67bd7084bc37f79be0c524d17218 = $(`&lt;div id=&quot;html_0eff67bd7084bc37f79be0c524d17218&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5426             latitude:36.6164             pred_result:70.9616470336914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75dd585c610ee02d00686452fece8b99.setContent(html_0eff67bd7084bc37f79be0c524d17218);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d0c8b0e2794d74601be2af40277d545.bindPopup(popup_75dd585c610ee02d00686452fece8b99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb1077e80d99985a56357789a635c0ef = L.circleMarker(\\n\",\n       \"                [36.5776, 114.5035],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5470cfb3e0f4ccb6c0a4276c47a37f67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd42723d8f339b998b2c05c789d0160d = $(`&lt;div id=&quot;html_bd42723d8f339b998b2c05c789d0160d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5035             latitude:36.5776             pred_result:71.5132827758789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5470cfb3e0f4ccb6c0a4276c47a37f67.setContent(html_bd42723d8f339b998b2c05c789d0160d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb1077e80d99985a56357789a635c0ef.bindPopup(popup_5470cfb3e0f4ccb6c0a4276c47a37f67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_525d8953a6e904533b3d43fb9797bd63 = L.circleMarker(\\n\",\n       \"                [36.61981, 114.4965],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ac9a36c609d08c04b3dfccfedcd7459 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d42c33547637a8126cbc63963fa58b06 = $(`&lt;div id=&quot;html_d42c33547637a8126cbc63963fa58b06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4965             latitude:36.61981             pred_result:71.78067016601562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ac9a36c609d08c04b3dfccfedcd7459.setContent(html_d42c33547637a8126cbc63963fa58b06);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_525d8953a6e904533b3d43fb9797bd63.bindPopup(popup_6ac9a36c609d08c04b3dfccfedcd7459)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52e594a01a02f967ccd6119681c7843b = L.circleMarker(\\n\",\n       \"                [38.8632, 115.493],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cbbbb6e0853343156ae2bae6a1f1837b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27bbba176a249c468fcc58377761411b = $(`&lt;div id=&quot;html_27bbba176a249c468fcc58377761411b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.493             latitude:38.8632             pred_result:58.28294372558594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cbbbb6e0853343156ae2bae6a1f1837b.setContent(html_27bbba176a249c468fcc58377761411b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52e594a01a02f967ccd6119681c7843b.bindPopup(popup_cbbbb6e0853343156ae2bae6a1f1837b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d18c0f0e9c3140e2c43df52d84de449a = L.circleMarker(\\n\",\n       \"                [38.8957, 115.5223],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f63a030b7f675ba3e711b392d4b7a415 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb77ab69d6577513eec317fdf45b081f = $(`&lt;div id=&quot;html_eb77ab69d6577513eec317fdf45b081f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.5223             latitude:38.8957             pred_result:58.06837463378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f63a030b7f675ba3e711b392d4b7a415.setContent(html_eb77ab69d6577513eec317fdf45b081f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d18c0f0e9c3140e2c43df52d84de449a.bindPopup(popup_f63a030b7f675ba3e711b392d4b7a415)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb09f11f05b75ebe1ba65240276a61cf = L.circleMarker(\\n\",\n       \"                [38.9108, 115.4713],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e78d241ab8381b124a031fff3061ee3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40285ab276a7db747782a21cd6d637b8 = $(`&lt;div id=&quot;html_40285ab276a7db747782a21cd6d637b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.4713             latitude:38.9108             pred_result:58.416893005371094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e78d241ab8381b124a031fff3061ee3.setContent(html_40285ab276a7db747782a21cd6d637b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb09f11f05b75ebe1ba65240276a61cf.bindPopup(popup_9e78d241ab8381b124a031fff3061ee3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4bc95210f064d32f44d202a4a8b85b20 = L.circleMarker(\\n\",\n       \"                [38.8416, 115.4612],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8791412631942ec0e3c634a0fe07293 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_839035921f37f869c21aa80ac8ac8aad = $(`&lt;div id=&quot;html_839035921f37f869c21aa80ac8ac8aad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.4612             latitude:38.8416             pred_result:59.082828521728516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8791412631942ec0e3c634a0fe07293.setContent(html_839035921f37f869c21aa80ac8ac8aad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4bc95210f064d32f44d202a4a8b85b20.bindPopup(popup_b8791412631942ec0e3c634a0fe07293)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f7c32f8bcac3b5445075924b88852eb = L.circleMarker(\\n\",\n       \"                [38.8756, 115.442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6a5f83baed17854ff522690baa3a585 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_573c26111aa236985db2f4586a0b3bd7 = $(`&lt;div id=&quot;html_573c26111aa236985db2f4586a0b3bd7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.442             latitude:38.8756             pred_result:59.09182357788086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6a5f83baed17854ff522690baa3a585.setContent(html_573c26111aa236985db2f4586a0b3bd7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f7c32f8bcac3b5445075924b88852eb.bindPopup(popup_c6a5f83baed17854ff522690baa3a585)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3cb5ec7000f8b3612f514d7f5c159eac = L.circleMarker(\\n\",\n       \"                [38.8707, 115.5214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54dc63903655d5617b892e41104e487b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7147341f9057c35596e9e26129fa2c2 = $(`&lt;div id=&quot;html_f7147341f9057c35596e9e26129fa2c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.5214             latitude:38.8707             pred_result:57.91143798828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54dc63903655d5617b892e41104e487b.setContent(html_f7147341f9057c35596e9e26129fa2c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3cb5ec7000f8b3612f514d7f5c159eac.bindPopup(popup_54dc63903655d5617b892e41104e487b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2dfa4e9d3b9f40e28dc30a92a0fa429 = L.circleMarker(\\n\",\n       \"                [40.8367, 114.8985],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7daae03e28818e4d0692d7c279a38861 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0748b2e11836f93d5a7bf52ad3b860e2 = $(`&lt;div id=&quot;html_0748b2e11836f93d5a7bf52ad3b860e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8985             latitude:40.8367             pred_result:30.31439208984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7daae03e28818e4d0692d7c279a38861.setContent(html_0748b2e11836f93d5a7bf52ad3b860e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2dfa4e9d3b9f40e28dc30a92a0fa429.bindPopup(popup_7daae03e28818e4d0692d7c279a38861)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd8efc7b2ecbbc1421356c799d4451c9 = L.circleMarker(\\n\",\n       \"                [40.79481, 114.892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_317ca5054648f9568ed08d27feef9819 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_108e5c8771273add9c8797c68d07f1ff = $(`&lt;div id=&quot;html_108e5c8771273add9c8797c68d07f1ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.892             latitude:40.79481             pred_result:31.037221908569336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_317ca5054648f9568ed08d27feef9819.setContent(html_108e5c8771273add9c8797c68d07f1ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd8efc7b2ecbbc1421356c799d4451c9.bindPopup(popup_317ca5054648f9568ed08d27feef9819)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70e42514d1dc04def2bc9e7e8706d9f2 = L.circleMarker(\\n\",\n       \"                [40.7688, 114.9032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51bed0559a36a49bff8878a8202dee9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b4ce04e3be50e9d1f37cd5d270c3e69 = $(`&lt;div id=&quot;html_5b4ce04e3be50e9d1f37cd5d270c3e69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9032             latitude:40.7688             pred_result:31.419416427612305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51bed0559a36a49bff8878a8202dee9e.setContent(html_5b4ce04e3be50e9d1f37cd5d270c3e69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70e42514d1dc04def2bc9e7e8706d9f2.bindPopup(popup_51bed0559a36a49bff8878a8202dee9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_482a594c549a634a6084345cda1caa97 = L.circleMarker(\\n\",\n       \"                [40.8725, 114.904],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f41e4e2b337ed1e27fc955fddad96b37 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8987605d78a3ca10650bea7ab681d823 = $(`&lt;div id=&quot;html_8987605d78a3ca10650bea7ab681d823&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.904             latitude:40.8725             pred_result:29.134244918823242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f41e4e2b337ed1e27fc955fddad96b37.setContent(html_8987605d78a3ca10650bea7ab681d823);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_482a594c549a634a6084345cda1caa97.bindPopup(popup_f41e4e2b337ed1e27fc955fddad96b37)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f01e409a3f3ae17a8a502f48f61b8917 = L.circleMarker(\\n\",\n       \"                [40.9161, 117.9664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49999854cbd90011aba9d776b67bc058 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc44076d745a579f27c407035e870076 = $(`&lt;div id=&quot;html_cc44076d745a579f27c407035e870076&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9664             latitude:40.9161             pred_result:21.726900100708008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49999854cbd90011aba9d776b67bc058.setContent(html_cc44076d745a579f27c407035e870076);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f01e409a3f3ae17a8a502f48f61b8917.bindPopup(popup_49999854cbd90011aba9d776b67bc058)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af22d0d7bd2bcb7aaadc5b72f6798e5d = L.circleMarker(\\n\",\n       \"                [40.9843, 117.9525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2fe851b704d34be300616fcc279f57f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1d0a83bcdcd340cb30a33d3da92d09d = $(`&lt;div id=&quot;html_c1d0a83bcdcd340cb30a33d3da92d09d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9525             latitude:40.9843             pred_result:21.314210891723633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2fe851b704d34be300616fcc279f57f8.setContent(html_c1d0a83bcdcd340cb30a33d3da92d09d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af22d0d7bd2bcb7aaadc5b72f6798e5d.bindPopup(popup_2fe851b704d34be300616fcc279f57f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b83b50f6b98a22b9a71388c4652ab37 = L.circleMarker(\\n\",\n       \"                [40.9359, 117.963],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_389a9305e0f252b0a67a0f0c0c37284e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23e544c6b41bf0d8232af440ac47d508 = $(`&lt;div id=&quot;html_23e544c6b41bf0d8232af440ac47d508&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.963             latitude:40.9359             pred_result:27.526138305664062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_389a9305e0f252b0a67a0f0c0c37284e.setContent(html_23e544c6b41bf0d8232af440ac47d508);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b83b50f6b98a22b9a71388c4652ab37.bindPopup(popup_389a9305e0f252b0a67a0f0c0c37284e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dfbdbc7e7c536b32708865c3c08e991 = L.circleMarker(\\n\",\n       \"                [40.9733, 117.8184],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52957fe73826836ee403d9e1b519e5c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5635b1f1fc4acaff08ab6d903b73bd8 = $(`&lt;div id=&quot;html_b5635b1f1fc4acaff08ab6d903b73bd8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8184             latitude:40.9733             pred_result:29.525354385375977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52957fe73826836ee403d9e1b519e5c3.setContent(html_b5635b1f1fc4acaff08ab6d903b73bd8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dfbdbc7e7c536b32708865c3c08e991.bindPopup(popup_52957fe73826836ee403d9e1b519e5c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d07123b6da53e2d5dec11d4fc986494 = L.circleMarker(\\n\",\n       \"                [41.0112, 117.9384],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5183744daffb0e44541f0fa2db2cdab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf96f0c5ded68e9ae2a2b32decc151d3 = $(`&lt;div id=&quot;html_cf96f0c5ded68e9ae2a2b32decc151d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9384             latitude:41.0112             pred_result:21.481475830078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5183744daffb0e44541f0fa2db2cdab.setContent(html_cf96f0c5ded68e9ae2a2b32decc151d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d07123b6da53e2d5dec11d4fc986494.bindPopup(popup_f5183744daffb0e44541f0fa2db2cdab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91316e712b709c4b54a8e425c9c63bf1 = L.circleMarker(\\n\",\n       \"                [39.5178, 116.6838],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30f6c15059ff46d91af3de6351f5ec9a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_95ff64c9da68185d0198a9aa94139024 = $(`&lt;div id=&quot;html_95ff64c9da68185d0198a9aa94139024&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6838             latitude:39.5178             pred_result:47.030853271484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30f6c15059ff46d91af3de6351f5ec9a.setContent(html_95ff64c9da68185d0198a9aa94139024);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91316e712b709c4b54a8e425c9c63bf1.bindPopup(popup_30f6c15059ff46d91af3de6351f5ec9a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ef174158ff80afbc043f29507cbcab2 = L.circleMarker(\\n\",\n       \"                [39.5747, 116.7729],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_606d11d3cd7e9545f48617fe39fe9ba9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_576c7f64d58e0f76a63b7c44f119767b = $(`&lt;div id=&quot;html_576c7f64d58e0f76a63b7c44f119767b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7729             latitude:39.5747             pred_result:46.91356658935547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_606d11d3cd7e9545f48617fe39fe9ba9.setContent(html_576c7f64d58e0f76a63b7c44f119767b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ef174158ff80afbc043f29507cbcab2.bindPopup(popup_606d11d3cd7e9545f48617fe39fe9ba9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4df0d11d3547effdc9b5ca790556d9e0 = L.circleMarker(\\n\",\n       \"                [39.5343, 116.7464],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b419dfa0af05b28c0097be229d68fe21 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21e8ce64ac8be87bb4fb5d3ac1f29a8b = $(`&lt;div id=&quot;html_21e8ce64ac8be87bb4fb5d3ac1f29a8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7464             latitude:39.5343             pred_result:46.444393157958984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b419dfa0af05b28c0097be229d68fe21.setContent(html_21e8ce64ac8be87bb4fb5d3ac1f29a8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4df0d11d3547effdc9b5ca790556d9e0.bindPopup(popup_b419dfa0af05b28c0097be229d68fe21)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_455463f002f21ad238c0c0c7111a97bd = L.circleMarker(\\n\",\n       \"                [38.2991, 116.8854],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_81feb0d92ee1b0aebcfab4bead390070 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fda31dac637fb849c6e18c25d2c777bd = $(`&lt;div id=&quot;html_fda31dac637fb849c6e18c25d2c777bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8854             latitude:38.2991             pred_result:47.601219177246094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_81feb0d92ee1b0aebcfab4bead390070.setContent(html_fda31dac637fb849c6e18c25d2c777bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_455463f002f21ad238c0c0c7111a97bd.bindPopup(popup_81feb0d92ee1b0aebcfab4bead390070)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aedb2b130b9bed6f6e6753f761aa110e = L.circleMarker(\\n\",\n       \"                [38.3254, 116.8584],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85018e527b4cf31bebe3f516c01e66b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b13cc030525dbd539b4ad8231ba7f75e = $(`&lt;div id=&quot;html_b13cc030525dbd539b4ad8231ba7f75e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8584             latitude:38.3254             pred_result:47.986637115478516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85018e527b4cf31bebe3f516c01e66b0.setContent(html_b13cc030525dbd539b4ad8231ba7f75e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aedb2b130b9bed6f6e6753f761aa110e.bindPopup(popup_85018e527b4cf31bebe3f516c01e66b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6838a80048d95249de416cd681e13c35 = L.circleMarker(\\n\",\n       \"                [38.3228, 116.8709],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a549b44112b53e778e171d19e3032c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_678233dee846be9f7212bf7c6ad17c05 = $(`&lt;div id=&quot;html_678233dee846be9f7212bf7c6ad17c05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8709             latitude:38.3228             pred_result:48.02180480957031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a549b44112b53e778e171d19e3032c2.setContent(html_678233dee846be9f7212bf7c6ad17c05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6838a80048d95249de416cd681e13c35.bindPopup(popup_6a549b44112b53e778e171d19e3032c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e1fee124c23549944d2c2df96c476da = L.circleMarker(\\n\",\n       \"                [37.7575, 115.6951],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fa31501de2af25ee0d646dad33ce5b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78c0cc97ef789b1679b146246355df27 = $(`&lt;div id=&quot;html_78c0cc97ef789b1679b146246355df27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6951             latitude:37.7575             pred_result:62.42610549926758             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fa31501de2af25ee0d646dad33ce5b5.setContent(html_78c0cc97ef789b1679b146246355df27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e1fee124c23549944d2c2df96c476da.bindPopup(popup_8fa31501de2af25ee0d646dad33ce5b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f277764feb4a9cadbe43905873a10d4d = L.circleMarker(\\n\",\n       \"                [37.7379, 115.6426],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e13c61f520aa91e9273aca7a391a026 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a2f36029ef0649eb2b54b015f77c06b = $(`&lt;div id=&quot;html_8a2f36029ef0649eb2b54b015f77c06b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6426             latitude:37.7379             pred_result:62.95030212402344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e13c61f520aa91e9273aca7a391a026.setContent(html_8a2f36029ef0649eb2b54b015f77c06b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f277764feb4a9cadbe43905873a10d4d.bindPopup(popup_0e13c61f520aa91e9273aca7a391a026)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7b9261c3703d158d15849e63e4af70b = L.circleMarker(\\n\",\n       \"                [37.739, 115.6906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85697e8fcc5bdd2096d8d4491babceb5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec9b8ea457abb4bc28ef21f66901b952 = $(`&lt;div id=&quot;html_ec9b8ea457abb4bc28ef21f66901b952&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6906             latitude:37.739             pred_result:62.5173454284668             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85697e8fcc5bdd2096d8d4491babceb5.setContent(html_ec9b8ea457abb4bc28ef21f66901b952);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7b9261c3703d158d15849e63e4af70b.bindPopup(popup_85697e8fcc5bdd2096d8d4491babceb5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80b5c6a3956c80bf1544480fbd634ff2 = L.circleMarker(\\n\",\n       \"                [37.0967, 114.4821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c029ce356c1e79a30de68522cd60da32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39ebf96b25acf0c23b380a0cb92fb981 = $(`&lt;div id=&quot;html_39ebf96b25acf0c23b380a0cb92fb981&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4821             latitude:37.0967             pred_result:73.2260971069336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c029ce356c1e79a30de68522cd60da32.setContent(html_39ebf96b25acf0c23b380a0cb92fb981);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80b5c6a3956c80bf1544480fbd634ff2.bindPopup(popup_c029ce356c1e79a30de68522cd60da32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c6e659e7472381521eb235d6a1088de = L.circleMarker(\\n\",\n       \"                [37.0533, 114.5261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d141486139925e36e1eb16deef8e5f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f81d85ea31543bc29cd0c30c3bf2560 = $(`&lt;div id=&quot;html_7f81d85ea31543bc29cd0c30c3bf2560&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5261             latitude:37.0533             pred_result:73.09898376464844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d141486139925e36e1eb16deef8e5f5.setContent(html_7f81d85ea31543bc29cd0c30c3bf2560);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c6e659e7472381521eb235d6a1088de.bindPopup(popup_9d141486139925e36e1eb16deef8e5f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_197df9a79229b23b52a31c17f19244be = L.circleMarker(\\n\",\n       \"                [37.0964, 114.5331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60f611ae55995f458b24ba4ea04ed358 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52abbe032f01d74dc7a3655ac8fd70ca = $(`&lt;div id=&quot;html_52abbe032f01d74dc7a3655ac8fd70ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5331             latitude:37.0964             pred_result:73.01502990722656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60f611ae55995f458b24ba4ea04ed358.setContent(html_52abbe032f01d74dc7a3655ac8fd70ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_197df9a79229b23b52a31c17f19244be.bindPopup(popup_60f611ae55995f458b24ba4ea04ed358)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_575ef25354a56665848568364c93cddc = L.circleMarker(\\n\",\n       \"                [37.062, 114.4854],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4174ce7182e3df3436613ad62117e99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9a528d8e0dfb66481d27d56fd778728 = $(`&lt;div id=&quot;html_f9a528d8e0dfb66481d27d56fd778728&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4854             latitude:37.062             pred_result:73.4005126953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4174ce7182e3df3436613ad62117e99.setContent(html_f9a528d8e0dfb66481d27d56fd778728);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_575ef25354a56665848568364c93cddc.bindPopup(popup_b4174ce7182e3df3436613ad62117e99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db413210db517cc6711c6e1232f1249e = L.circleMarker(\\n\",\n       \"                [37.8873, 112.522],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69280634320c40d64307f7440426cd44 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a241c4a7e4b417405ac988aea8aad511 = $(`&lt;div id=&quot;html_a241c4a7e4b417405ac988aea8aad511&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.522             latitude:37.8873             pred_result:72.57185363769531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69280634320c40d64307f7440426cd44.setContent(html_a241c4a7e4b417405ac988aea8aad511);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db413210db517cc6711c6e1232f1249e.bindPopup(popup_69280634320c40d64307f7440426cd44)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fefb8f14a165cb5519309fa1a0fd9518 = L.circleMarker(\\n\",\n       \"                [38.0108, 112.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05aead6452674053060feef77151b117 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e1b7b6f16392572d84bde307a5f4483 = $(`&lt;div id=&quot;html_3e1b7b6f16392572d84bde307a5f4483&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.434             latitude:38.0108             pred_result:66.85758972167969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05aead6452674053060feef77151b117.setContent(html_3e1b7b6f16392572d84bde307a5f4483);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fefb8f14a165cb5519309fa1a0fd9518.bindPopup(popup_05aead6452674053060feef77151b117)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62340482cce170caf718a1a4727522d2 = L.circleMarker(\\n\",\n       \"                [37.7124, 112.469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c7dba1332c51890c1ce78f91d9d9112 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f2816a40317bdf1ec1038ec42c9e9db = $(`&lt;div id=&quot;html_4f2816a40317bdf1ec1038ec42c9e9db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.469             latitude:37.7124             pred_result:74.08020782470703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c7dba1332c51890c1ce78f91d9d9112.setContent(html_4f2816a40317bdf1ec1038ec42c9e9db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62340482cce170caf718a1a4727522d2.bindPopup(popup_5c7dba1332c51890c1ce78f91d9d9112)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4373a09092ba7314152590b9603bcafe = L.circleMarker(\\n\",\n       \"                [37.7394, 112.5583],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d7ed9430ec0a29ae5618537ecc8a86ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21f73f7d8596bcab908faf3f7ea9127d = $(`&lt;div id=&quot;html_21f73f7d8596bcab908faf3f7ea9127d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5583             latitude:37.7394             pred_result:74.02180480957031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d7ed9430ec0a29ae5618537ecc8a86ee.setContent(html_21f73f7d8596bcab908faf3f7ea9127d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4373a09092ba7314152590b9603bcafe.bindPopup(popup_d7ed9430ec0a29ae5618537ecc8a86ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca56812bc0f7295e4284cfbfd0d01fa6 = L.circleMarker(\\n\",\n       \"                [37.8692, 112.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac6a382ad5e36ba063876b86dcd4cf15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_429410c133fffcbdc42e378150daea87 = $(`&lt;div id=&quot;html_429410c133fffcbdc42e378150daea87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5369             latitude:37.8692             pred_result:73.01148223876953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac6a382ad5e36ba063876b86dcd4cf15.setContent(html_429410c133fffcbdc42e378150daea87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca56812bc0f7295e4284cfbfd0d01fa6.bindPopup(popup_ac6a382ad5e36ba063876b86dcd4cf15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5787d54abe6662c971981a5ead616605 = L.circleMarker(\\n\",\n       \"                [37.8195, 112.57],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49659ac13c2caeecb3797a0b423211a6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_026f13209d32e8ce8aba5b2c53714ecd = $(`&lt;div id=&quot;html_026f13209d32e8ce8aba5b2c53714ecd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.57             latitude:37.8195             pred_result:74.2782974243164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49659ac13c2caeecb3797a0b423211a6.setContent(html_026f13209d32e8ce8aba5b2c53714ecd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5787d54abe6662c971981a5ead616605.bindPopup(popup_49659ac13c2caeecb3797a0b423211a6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb5808b77e185d427db781eb09a168b6 = L.circleMarker(\\n\",\n       \"                [37.9854, 112.549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f642d6c9b197a9c35329575cca2c390b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d75185d84a6dfac5613ae99fe7d2d41b = $(`&lt;div id=&quot;html_d75185d84a6dfac5613ae99fe7d2d41b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.549             latitude:37.9854             pred_result:71.74989318847656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f642d6c9b197a9c35329575cca2c390b.setContent(html_d75185d84a6dfac5613ae99fe7d2d41b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb5808b77e185d427db781eb09a168b6.bindPopup(popup_f642d6c9b197a9c35329575cca2c390b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19371b97608a765b2a83d1a0089defa6 = L.circleMarker(\\n\",\n       \"                [37.7805, 112.488],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f44b531327a183a8245aeb367573bda8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c99814d5007d63c7abfb84fc5dedabe8 = $(`&lt;div id=&quot;html_c99814d5007d63c7abfb84fc5dedabe8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.488             latitude:37.7805             pred_result:72.94818115234375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f44b531327a183a8245aeb367573bda8.setContent(html_c99814d5007d63c7abfb84fc5dedabe8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19371b97608a765b2a83d1a0089defa6.bindPopup(popup_f44b531327a183a8245aeb367573bda8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_316dbb7a611658b4809d34c701b85031 = L.circleMarker(\\n\",\n       \"                [40.7579, 111.651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6d073a184a15b02b96c4db0df198d80 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f26b78b0cae990d41b7644fa4d14fb23 = $(`&lt;div id=&quot;html_f26b78b0cae990d41b7644fa4d14fb23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.651             latitude:40.7579             pred_result:34.55504608154297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6d073a184a15b02b96c4db0df198d80.setContent(html_f26b78b0cae990d41b7644fa4d14fb23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_316dbb7a611658b4809d34c701b85031.bindPopup(popup_f6d073a184a15b02b96c4db0df198d80)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_abe139c62e30a7807cbf479fcd1494ee = L.circleMarker(\\n\",\n       \"                [40.8033, 111.658],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4e2bbd665979f4b1c1eda9a0315f69f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d1662d187f9db8182b173758f099a8c = $(`&lt;div id=&quot;html_5d1662d187f9db8182b173758f099a8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.658             latitude:40.8033             pred_result:35.964664459228516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4e2bbd665979f4b1c1eda9a0315f69f.setContent(html_5d1662d187f9db8182b173758f099a8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_abe139c62e30a7807cbf479fcd1494ee.bindPopup(popup_c4e2bbd665979f4b1c1eda9a0315f69f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3c9813f04e6a815327032efa084300c = L.circleMarker(\\n\",\n       \"                [40.8452, 111.659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_875d9490e71e995bfd133565d079a7aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e1336ec0e250d9a15b432f93803a784 = $(`&lt;div id=&quot;html_2e1336ec0e250d9a15b432f93803a784&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.659             latitude:40.8452             pred_result:35.571266174316406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_875d9490e71e995bfd133565d079a7aa.setContent(html_2e1336ec0e250d9a15b432f93803a784);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3c9813f04e6a815327032efa084300c.bindPopup(popup_875d9490e71e995bfd133565d079a7aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee458e53f2d391431d26e71d2b368bcc = L.circleMarker(\\n\",\n       \"                [40.8144, 111.608],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f331b6559a8c628b0e1d2dde18a03d98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90f4329db5cdf502c8e9f1282f6a3498 = $(`&lt;div id=&quot;html_90f4329db5cdf502c8e9f1282f6a3498&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.608             latitude:40.8144             pred_result:34.051307678222656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f331b6559a8c628b0e1d2dde18a03d98.setContent(html_90f4329db5cdf502c8e9f1282f6a3498);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee458e53f2d391431d26e71d2b368bcc.bindPopup(popup_f331b6559a8c628b0e1d2dde18a03d98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fba7ab1b43248ad2f07946b8a9707ee1 = L.circleMarker(\\n\",\n       \"                [40.8369, 111.751],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_440aa36ce877a3e9bc12b71a8a29707c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac0e14a0cdd9f18bb69af0d1c8fb080f = $(`&lt;div id=&quot;html_ac0e14a0cdd9f18bb69af0d1c8fb080f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.751             latitude:40.8369             pred_result:34.07490158081055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_440aa36ce877a3e9bc12b71a8a29707c.setContent(html_ac0e14a0cdd9f18bb69af0d1c8fb080f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fba7ab1b43248ad2f07946b8a9707ee1.bindPopup(popup_440aa36ce877a3e9bc12b71a8a29707c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e066f160e850cc1243bb851118709a7 = L.circleMarker(\\n\",\n       \"                [40.8062, 111.7277],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b14e5e012eaa11375ca163b41b17e9b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c330648adea61073dcf75a6d8289ec77 = $(`&lt;div id=&quot;html_c330648adea61073dcf75a6d8289ec77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7277             latitude:40.8062             pred_result:34.0908203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b14e5e012eaa11375ca163b41b17e9b8.setContent(html_c330648adea61073dcf75a6d8289ec77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e066f160e850cc1243bb851118709a7.bindPopup(popup_b14e5e012eaa11375ca163b41b17e9b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c14e88d4bc79c26e24e97f1dcd0d5c85 = L.circleMarker(\\n\",\n       \"                [40.7866, 111.551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_941719ddf2eae9f0b8367aef950dfb5b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_760957ec0832dcc816c61911d299a839 = $(`&lt;div id=&quot;html_760957ec0832dcc816c61911d299a839&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.551             latitude:40.7866             pred_result:34.773799896240234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_941719ddf2eae9f0b8367aef950dfb5b.setContent(html_760957ec0832dcc816c61911d299a839);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c14e88d4bc79c26e24e97f1dcd0d5c85.bindPopup(popup_941719ddf2eae9f0b8367aef950dfb5b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_136bae9f710935c29ede5ec2386ce076 = L.circleMarker(\\n\",\n       \"                [40.7612, 111.717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8185bdf81f3b1886ae00129a79dee1cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_116629d592d00b0d80787adbd0211d1a = $(`&lt;div id=&quot;html_116629d592d00b0d80787adbd0211d1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.717             latitude:40.7612             pred_result:35.321075439453125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8185bdf81f3b1886ae00129a79dee1cf.setContent(html_116629d592d00b0d80787adbd0211d1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_136bae9f710935c29ede5ec2386ce076.bindPopup(popup_8185bdf81f3b1886ae00129a79dee1cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2c332a6410bdbc24bcabe6ca0171a8a = L.circleMarker(\\n\",\n       \"                [41.9339, 123.6836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a19e421a9c3f53a08f8a5a86e26a2461 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44c68bf20a6dbb249d951534cc29e0fa = $(`&lt;div id=&quot;html_44c68bf20a6dbb249d951534cc29e0fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.6836             latitude:41.9339             pred_result:19.825578689575195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a19e421a9c3f53a08f8a5a86e26a2461.setContent(html_44c68bf20a6dbb249d951534cc29e0fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2c332a6410bdbc24bcabe6ca0171a8a.bindPopup(popup_a19e421a9c3f53a08f8a5a86e26a2461)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a8930fbe12a6d00721c0a899e2d959f = L.circleMarker(\\n\",\n       \"                [41.7561, 123.535],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db39babf6a95a7cf8f3c9f70a6dacc1d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eca2aea7134cc393798d13e925b8d98c = $(`&lt;div id=&quot;html_eca2aea7134cc393798d13e925b8d98c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.535             latitude:41.7561             pred_result:21.411354064941406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db39babf6a95a7cf8f3c9f70a6dacc1d.setContent(html_eca2aea7134cc393798d13e925b8d98c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a8930fbe12a6d00721c0a899e2d959f.bindPopup(popup_db39babf6a95a7cf8f3c9f70a6dacc1d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e9201ca9f8b7e9174c95be70e14a59c = L.circleMarker(\\n\",\n       \"                [41.7089, 123.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6df3aa0bf22d31f2a5476de04ca59072 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e034441ea283448be0e6e46a64aa81aa = $(`&lt;div id=&quot;html_e034441ea283448be0e6e46a64aa81aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.439             latitude:41.7089             pred_result:28.812000274658203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6df3aa0bf22d31f2a5476de04ca59072.setContent(html_e034441ea283448be0e6e46a64aa81aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e9201ca9f8b7e9174c95be70e14a59c.bindPopup(popup_6df3aa0bf22d31f2a5476de04ca59072)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed0dfb54d3c1d297ab64f5b244cc1824 = L.circleMarker(\\n\",\n       \"                [41.8336, 123.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a5ad01d9a6c0fb32b21b57364e6ed46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50a5650d5e18df26e6e5c627c02e2c8a = $(`&lt;div id=&quot;html_50a5650d5e18df26e6e5c627c02e2c8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.542             latitude:41.8336             pred_result:20.784093856811523             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a5ad01d9a6c0fb32b21b57364e6ed46.setContent(html_50a5650d5e18df26e6e5c627c02e2c8a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed0dfb54d3c1d297ab64f5b244cc1824.bindPopup(popup_1a5ad01d9a6c0fb32b21b57364e6ed46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b59aa3119067ae776ff1a86d269cdbde = L.circleMarker(\\n\",\n       \"                [41.8472, 123.428],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffb9e03af703be6c636966c55385fb10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db653fb5a03afa30a19a412d5bf884b7 = $(`&lt;div id=&quot;html_db653fb5a03afa30a19a412d5bf884b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.428             latitude:41.8472             pred_result:20.115192413330078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffb9e03af703be6c636966c55385fb10.setContent(html_db653fb5a03afa30a19a412d5bf884b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b59aa3119067ae776ff1a86d269cdbde.bindPopup(popup_ffb9e03af703be6c636966c55385fb10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf50d5f6ba3f8ca8c244b73dafa82e76 = L.circleMarker(\\n\",\n       \"                [41.765, 123.41],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_39b2ad1b349fc4e84c275033485b33a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_553321eeb9bdfe68a737c8069c327dc6 = $(`&lt;div id=&quot;html_553321eeb9bdfe68a737c8069c327dc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.41             latitude:41.765             pred_result:27.278593063354492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_39b2ad1b349fc4e84c275033485b33a4.setContent(html_553321eeb9bdfe68a737c8069c327dc6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf50d5f6ba3f8ca8c244b73dafa82e76.bindPopup(popup_39b2ad1b349fc4e84c275033485b33a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b781201ef02acda597ac99546ac2a2fa = L.circleMarker(\\n\",\n       \"                [41.7775, 123.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c310d298a36e045ca1078d21e3b17aca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7424748b685c9b43dea79b7d227eacd6 = $(`&lt;div id=&quot;html_7424748b685c9b43dea79b7d227eacd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.478             latitude:41.7775             pred_result:26.608959197998047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c310d298a36e045ca1078d21e3b17aca.setContent(html_7424748b685c9b43dea79b7d227eacd6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b781201ef02acda597ac99546ac2a2fa.bindPopup(popup_c310d298a36e045ca1078d21e3b17aca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f14752a0aa3707ab05cf90eac4ae71eb = L.circleMarker(\\n\",\n       \"                [41.7972, 123.3997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2def3af18c4d61194fee9563b9e05dfb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3fd7a2d97de389ec4bd33a10fb54abc9 = $(`&lt;div id=&quot;html_3fd7a2d97de389ec4bd33a10fb54abc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.3997             latitude:41.7972             pred_result:24.80508804321289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2def3af18c4d61194fee9563b9e05dfb.setContent(html_3fd7a2d97de389ec4bd33a10fb54abc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f14752a0aa3707ab05cf90eac4ae71eb.bindPopup(popup_2def3af18c4d61194fee9563b9e05dfb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84243640b50c15d8189c5174e07cd9b3 = L.circleMarker(\\n\",\n       \"                [41.9228, 123.3783],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10857e8cf1230275268a583b36145df0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29d052925d6bf122fcd8807be1bb4e65 = $(`&lt;div id=&quot;html_29d052925d6bf122fcd8807be1bb4e65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.3783             latitude:41.9228             pred_result:21.27362060546875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10857e8cf1230275268a583b36145df0.setContent(html_29d052925d6bf122fcd8807be1bb4e65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84243640b50c15d8189c5174e07cd9b3.bindPopup(popup_10857e8cf1230275268a583b36145df0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fdbddbecbbb74c411bcb26faf722df1 = L.circleMarker(\\n\",\n       \"                [38.97388889, 121.6119444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_241582eae18aaf2cff6975b7eb587896 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1094c3288749f414847f28a588d207f6 = $(`&lt;div id=&quot;html_1094c3288749f414847f28a588d207f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6119444             latitude:38.97388889             pred_result:17.03921890258789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_241582eae18aaf2cff6975b7eb587896.setContent(html_1094c3288749f414847f28a588d207f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fdbddbecbbb74c411bcb26faf722df1.bindPopup(popup_241582eae18aaf2cff6975b7eb587896)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e27a48c8b5e91d93bc1ce970a4e0390 = L.circleMarker(\\n\",\n       \"                [38.95111111, 121.565],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc7d0fd90b209896236c5af43226d9a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d43d177d47a3d6f24206f304126e004a = $(`&lt;div id=&quot;html_d43d177d47a3d6f24206f304126e004a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.565             latitude:38.95111111             pred_result:17.43335723876953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc7d0fd90b209896236c5af43226d9a3.setContent(html_d43d177d47a3d6f24206f304126e004a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e27a48c8b5e91d93bc1ce970a4e0390.bindPopup(popup_dc7d0fd90b209896236c5af43226d9a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3a1c6bf979058c14f7f994867049d25 = L.circleMarker(\\n\",\n       \"                [38.885, 121.5638889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e216604249ec09f3ea701194d761742b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e741e8d7b65f5f279840396d0979822 = $(`&lt;div id=&quot;html_2e741e8d7b65f5f279840396d0979822&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5638889             latitude:38.885             pred_result:21.709857940673828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e216604249ec09f3ea701194d761742b.setContent(html_2e741e8d7b65f5f279840396d0979822);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3a1c6bf979058c14f7f994867049d25.bindPopup(popup_e216604249ec09f3ea701194d761742b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22b3ce522756a089298e8e10b0a6d6b8 = L.circleMarker(\\n\",\n       \"                [38.91194444, 121.6330556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5952c1ada89a56c8eb1bf3e2fa08f24d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf8635a83c1b9057c0609c70de67effa = $(`&lt;div id=&quot;html_cf8635a83c1b9057c0609c70de67effa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6330556             latitude:38.91194444             pred_result:18.053966522216797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5952c1ada89a56c8eb1bf3e2fa08f24d.setContent(html_cf8635a83c1b9057c0609c70de67effa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22b3ce522756a089298e8e10b0a6d6b8.bindPopup(popup_5952c1ada89a56c8eb1bf3e2fa08f24d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c1de7ac3f236521886906c5bebd2047 = L.circleMarker(\\n\",\n       \"                [38.86388889, 121.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0573c9ffa2db3cb9618341338a4229c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b4f90b1c097ecbb53a7113a3ac1bb9d = $(`&lt;div id=&quot;html_1b4f90b1c097ecbb53a7113a3ac1bb9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.625             latitude:38.86388889             pred_result:18.835895538330078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0573c9ffa2db3cb9618341338a4229c4.setContent(html_1b4f90b1c097ecbb53a7113a3ac1bb9d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c1de7ac3f236521886906c5bebd2047.bindPopup(popup_0573c9ffa2db3cb9618341338a4229c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_35dbf2d63582ec4a8d629faf60c87845 = L.circleMarker(\\n\",\n       \"                [38.85611111, 121.51805559999998],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3ddc7320df55ab61ba117eaee954ae0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30184d6807b0923b836d7454cf993998 = $(`&lt;div id=&quot;html_30184d6807b0923b836d7454cf993998&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.51805559999998             latitude:38.85611111             pred_result:17.15084457397461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3ddc7320df55ab61ba117eaee954ae0.setContent(html_30184d6807b0923b836d7454cf993998);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_35dbf2d63582ec4a8d629faf60c87845.bindPopup(popup_d3ddc7320df55ab61ba117eaee954ae0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bfdd7798c2da7e75b065dc60ef99655 = L.circleMarker(\\n\",\n       \"                [38.80805556, 121.2588889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd06548776c442a468ed5daeb56766a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f53cca3f3b81975ead51dddc146a01fa = $(`&lt;div id=&quot;html_f53cca3f3b81975ead51dddc146a01fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2588889             latitude:38.80805556             pred_result:20.849258422851562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd06548776c442a468ed5daeb56766a3.setContent(html_f53cca3f3b81975ead51dddc146a01fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bfdd7798c2da7e75b065dc60ef99655.bindPopup(popup_bd06548776c442a468ed5daeb56766a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70db4174f499c449b59b4df9c76ccd76 = L.circleMarker(\\n\",\n       \"                [39.0511, 121.7769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6a32ea5bc6456062c5e9c39a90f925b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55110dd169be0c529af2482133f50bb5 = $(`&lt;div id=&quot;html_55110dd169be0c529af2482133f50bb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.7769             latitude:39.0511             pred_result:19.537792205810547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6a32ea5bc6456062c5e9c39a90f925b.setContent(html_55110dd169be0c529af2482133f50bb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70db4174f499c449b59b4df9c76ccd76.bindPopup(popup_c6a32ea5bc6456062c5e9c39a90f925b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_420a0220be248a83a056787c42ba801c = L.circleMarker(\\n\",\n       \"                [43.9167, 125.323],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34fc0a648d75b2ae8c243cfb784fbfcc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dccc12d5874dde8a42270c65c9d1e8b1 = $(`&lt;div id=&quot;html_dccc12d5874dde8a42270c65c9d1e8b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.323             latitude:43.9167             pred_result:17.715181350708008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34fc0a648d75b2ae8c243cfb784fbfcc.setContent(html_dccc12d5874dde8a42270c65c9d1e8b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_420a0220be248a83a056787c42ba801c.bindPopup(popup_34fc0a648d75b2ae8c243cfb784fbfcc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14991062cf0a5dd99d5ba471bc2a82b1 = L.circleMarker(\\n\",\n       \"                [43.91, 125.287],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da8a673a30b19308adb1f0ac08278a5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0fcad7b7c45566093c16e41c85f77bd = $(`&lt;div id=&quot;html_f0fcad7b7c45566093c16e41c85f77bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.287             latitude:43.91             pred_result:22.072784423828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da8a673a30b19308adb1f0ac08278a5c.setContent(html_f0fcad7b7c45566093c16e41c85f77bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14991062cf0a5dd99d5ba471bc2a82b1.bindPopup(popup_da8a673a30b19308adb1f0ac08278a5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59f942a9e22c7163352865f61cbfe83c = L.circleMarker(\\n\",\n       \"                [43.84, 125.2786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe9028c17feb8c4036467390ff4064fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4f25158079e9c8cc9a48a7fca2ad392 = $(`&lt;div id=&quot;html_a4f25158079e9c8cc9a48a7fca2ad392&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.2786             latitude:43.84             pred_result:21.558237075805664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe9028c17feb8c4036467390ff4064fb.setContent(html_a4f25158079e9c8cc9a48a7fca2ad392);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59f942a9e22c7163352865f61cbfe83c.bindPopup(popup_fe9028c17feb8c4036467390ff4064fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_809c7225d6c2660c7bf426857c995dab = L.circleMarker(\\n\",\n       \"                [43.8748, 125.3649],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d37fa57c979bf44b04edf5513bf7f911 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d36454ab92db61c7bbad387a41f738a9 = $(`&lt;div id=&quot;html_d36454ab92db61c7bbad387a41f738a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.3649             latitude:43.8748             pred_result:23.12775421142578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d37fa57c979bf44b04edf5513bf7f911.setContent(html_d36454ab92db61c7bbad387a41f738a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_809c7225d6c2660c7bf426857c995dab.bindPopup(popup_d37fa57c979bf44b04edf5513bf7f911)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6495c94767800b1532a0d22387ad42e8 = L.circleMarker(\\n\",\n       \"                [43.8694, 125.325],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51c68445de9f3e7f0deb1416a0c95d56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_28fb079b4ce895a68d3986bb55addfed = $(`&lt;div id=&quot;html_28fb079b4ce895a68d3986bb55addfed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.325             latitude:43.8694             pred_result:20.225961685180664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51c68445de9f3e7f0deb1416a0c95d56.setContent(html_28fb079b4ce895a68d3986bb55addfed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6495c94767800b1532a0d22387ad42e8.bindPopup(popup_51c68445de9f3e7f0deb1416a0c95d56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18e574d33bad82ab7c7279eab6526e9e = L.circleMarker(\\n\",\n       \"                [43.7878, 125.454],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6ef668f62020c45ddb824037148eb37 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f55f787ffb0d82a350bdb8fea1b88743 = $(`&lt;div id=&quot;html_f55f787ffb0d82a350bdb8fea1b88743&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.454             latitude:43.7878             pred_result:16.792884826660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6ef668f62020c45ddb824037148eb37.setContent(html_f55f787ffb0d82a350bdb8fea1b88743);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18e574d33bad82ab7c7279eab6526e9e.bindPopup(popup_d6ef668f62020c45ddb824037148eb37)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eebf9e48a8b8a4df7f2d389c36fddde2 = L.circleMarker(\\n\",\n       \"                [43.55, 125.633],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f76912ce00ccd703deddb8bbb3508d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c64e09a4cce3390bb8d1233dc0d71f7 = $(`&lt;div id=&quot;html_9c64e09a4cce3390bb8d1233dc0d71f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.633             latitude:43.55             pred_result:16.24908447265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f76912ce00ccd703deddb8bbb3508d7.setContent(html_9c64e09a4cce3390bb8d1233dc0d71f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eebf9e48a8b8a4df7f2d389c36fddde2.bindPopup(popup_1f76912ce00ccd703deddb8bbb3508d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aeaf0d5770584bcd9cbb4adf0f0d52ca = L.circleMarker(\\n\",\n       \"                [43.8667, 125.417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e61342d94e62861edae7e73a2ca66a25 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1eccaab1eaf39785d434a0249113a12 = $(`&lt;div id=&quot;html_a1eccaab1eaf39785d434a0249113a12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.417             latitude:43.8667             pred_result:26.37609100341797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e61342d94e62861edae7e73a2ca66a25.setContent(html_a1eccaab1eaf39785d434a0249113a12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aeaf0d5770584bcd9cbb4adf0f0d52ca.bindPopup(popup_e61342d94e62861edae7e73a2ca66a25)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_537c9f372d2ff3d52bc2273173b0b2b1 = L.circleMarker(\\n\",\n       \"                [43.8167, 125.25],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2de4658b4fb3d574692cc51a37d4da2e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abdb625e25d9cdb98fc6928190633a3e = $(`&lt;div id=&quot;html_abdb625e25d9cdb98fc6928190633a3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.25             latitude:43.8167             pred_result:23.741195678710938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2de4658b4fb3d574692cc51a37d4da2e.setContent(html_abdb625e25d9cdb98fc6928190633a3e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_537c9f372d2ff3d52bc2273173b0b2b1.bindPopup(popup_2de4658b4fb3d574692cc51a37d4da2e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_220497835294709dcef6c2937cb4978a = L.circleMarker(\\n\",\n       \"                [43.85, 125.217],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eea75eb1b8e5286d01978341c481ae32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51f5c58e7f6a952c547fd767c2a2231c = $(`&lt;div id=&quot;html_51f5c58e7f6a952c547fd767c2a2231c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.217             latitude:43.85             pred_result:21.948410034179688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eea75eb1b8e5286d01978341c481ae32.setContent(html_51f5c58e7f6a952c547fd767c2a2231c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_220497835294709dcef6c2937cb4978a.bindPopup(popup_eea75eb1b8e5286d01978341c481ae32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d569afeb09882d47dd74d552639e4327 = L.circleMarker(\\n\",\n       \"                [45.755, 126.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_41d2f18f618f6a88a5e3435d22586027 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0336456f857448ee25dbd047c637b48e = $(`&lt;div id=&quot;html_0336456f857448ee25dbd047c637b48e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.542             latitude:45.755             pred_result:15.822336196899414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_41d2f18f618f6a88a5e3435d22586027.setContent(html_0336456f857448ee25dbd047c637b48e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d569afeb09882d47dd74d552639e4327.bindPopup(popup_41d2f18f618f6a88a5e3435d22586027)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_703d11a3b23c9af90e4557f7ebd13c9c = L.circleMarker(\\n\",\n       \"                [45.8167, 126.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c59d4512df0dd7334d658f17b995df53 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6284e8fb16fc56d1f3473215e425b6d6 = $(`&lt;div id=&quot;html_6284e8fb16fc56d1f3473215e425b6d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.561             latitude:45.8167             pred_result:20.50627899169922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c59d4512df0dd7334d658f17b995df53.setContent(html_6284e8fb16fc56d1f3473215e425b6d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_703d11a3b23c9af90e4557f7ebd13c9c.bindPopup(popup_c59d4512df0dd7334d658f17b995df53)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87a94c33389cc26bf18d2952ba9e5a0a = L.circleMarker(\\n\",\n       \"                [45.5422, 126.979],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca093071829f45d5019b5da1123915bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8708f1d34455a3a42358d05443d9135d = $(`&lt;div id=&quot;html_8708f1d34455a3a42358d05443d9135d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.979             latitude:45.5422             pred_result:18.502588272094727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca093071829f45d5019b5da1123915bb.setContent(html_8708f1d34455a3a42358d05443d9135d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87a94c33389cc26bf18d2952ba9e5a0a.bindPopup(popup_ca093071829f45d5019b5da1123915bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49eab5734705828f0d2e32e591cb84e0 = L.circleMarker(\\n\",\n       \"                [45.7733, 126.689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34e347598e2a3fe06785fe263b787b4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5be9ed0ab60fec25bd1efe9eb49f1b9c = $(`&lt;div id=&quot;html_5be9ed0ab60fec25bd1efe9eb49f1b9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.689             latitude:45.7733             pred_result:18.388126373291016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34e347598e2a3fe06785fe263b787b4c.setContent(html_5be9ed0ab60fec25bd1efe9eb49f1b9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49eab5734705828f0d2e32e591cb84e0.bindPopup(popup_34e347598e2a3fe06785fe263b787b4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b34159051ddd7cfa971500e149d2209 = L.circleMarker(\\n\",\n       \"                [45.7667, 126.635],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8861561d0d122e900e5ca1e215ee28ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1fddbe489938cce423e68772148a23a = $(`&lt;div id=&quot;html_c1fddbe489938cce423e68772148a23a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.635             latitude:45.7667             pred_result:18.561981201171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8861561d0d122e900e5ca1e215ee28ae.setContent(html_c1fddbe489938cce423e68772148a23a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b34159051ddd7cfa971500e149d2209.bindPopup(popup_8861561d0d122e900e5ca1e215ee28ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c2cb8bb80be0a16d48d9d48caf86cbde = L.circleMarker(\\n\",\n       \"                [45.7319, 126.685],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_62a26687521f50d0db460ab595c2bb10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38d43fff0716086beade49acd68aab9d = $(`&lt;div id=&quot;html_38d43fff0716086beade49acd68aab9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.685             latitude:45.7319             pred_result:18.529577255249023             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_62a26687521f50d0db460ab595c2bb10.setContent(html_38d43fff0716086beade49acd68aab9d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c2cb8bb80be0a16d48d9d48caf86cbde.bindPopup(popup_62a26687521f50d0db460ab595c2bb10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c456a7c1b851bd1a945475ac80ec24f9 = L.circleMarker(\\n\",\n       \"                [45.7258, 126.646],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8547283d368317d3b8f44ba1363fdef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bacb8492059aa4fd2ef54878571500ef = $(`&lt;div id=&quot;html_bacb8492059aa4fd2ef54878571500ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.646             latitude:45.7258             pred_result:19.838790893554688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8547283d368317d3b8f44ba1363fdef.setContent(html_bacb8492059aa4fd2ef54878571500ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c456a7c1b851bd1a945475ac80ec24f9.bindPopup(popup_d8547283d368317d3b8f44ba1363fdef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_baacac5cd96f46fdf58a73656ee3ad8d = L.circleMarker(\\n\",\n       \"                [45.7478, 126.593],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e95daddf3dfdd3a1be2d5434b4ed347 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67076261026d646c3241a9b2a7685159 = $(`&lt;div id=&quot;html_67076261026d646c3241a9b2a7685159&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.593             latitude:45.7478             pred_result:24.008302688598633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e95daddf3dfdd3a1be2d5434b4ed347.setContent(html_67076261026d646c3241a9b2a7685159);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_baacac5cd96f46fdf58a73656ee3ad8d.bindPopup(popup_9e95daddf3dfdd3a1be2d5434b4ed347)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2bd8baaad64faee91ba7de62d6429536 = L.circleMarker(\\n\",\n       \"                [45.61, 126.615],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91828e5b43a5bfb12aac01ae8b4a0881 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb3ac156cd606d12d53897063c2bcf7b = $(`&lt;div id=&quot;html_cb3ac156cd606d12d53897063c2bcf7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.615             latitude:45.61             pred_result:20.35736656188965             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91828e5b43a5bfb12aac01ae8b4a0881.setContent(html_cb3ac156cd606d12d53897063c2bcf7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2bd8baaad64faee91ba7de62d6429536.bindPopup(popup_91828e5b43a5bfb12aac01ae8b4a0881)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ee174db2825271092e7fea306f2d1b4 = L.circleMarker(\\n\",\n       \"                [45.9819, 126.6106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9eb4548ee317ff742a6d5e39e37d1603 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e290292acdfdac30122e11cd98ccc4a = $(`&lt;div id=&quot;html_2e290292acdfdac30122e11cd98ccc4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6106             latitude:45.9819             pred_result:17.00630760192871             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9eb4548ee317ff742a6d5e39e37d1603.setContent(html_2e290292acdfdac30122e11cd98ccc4a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ee174db2825271092e7fea306f2d1b4.bindPopup(popup_9eb4548ee317ff742a6d5e39e37d1603)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6681365c5b41ec6133009aee49163428 = L.circleMarker(\\n\",\n       \"                [45.6842, 126.6206],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3dde6df03572df95d5c02b9c6832c74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e23fa0e22a596702c09efd2ca087d891 = $(`&lt;div id=&quot;html_e23fa0e22a596702c09efd2ca087d891&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6206             latitude:45.6842             pred_result:20.871917724609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3dde6df03572df95d5c02b9c6832c74.setContent(html_e23fa0e22a596702c09efd2ca087d891);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6681365c5b41ec6133009aee49163428.bindPopup(popup_e3dde6df03572df95d5c02b9c6832c74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4441b00d8a2ff8427886e8b051f6cb8c = L.circleMarker(\\n\",\n       \"                [31.238000000000003, 121.4],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb19566d36d8971b2a8932336f1eb256 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de8ce742b0053404389a9cfbfd6d6c87 = $(`&lt;div id=&quot;html_de8ce742b0053404389a9cfbfd6d6c87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.4             latitude:31.238000000000003             pred_result:35.89373779296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb19566d36d8971b2a8932336f1eb256.setContent(html_de8ce742b0053404389a9cfbfd6d6c87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4441b00d8a2ff8427886e8b051f6cb8c.bindPopup(popup_eb19566d36d8971b2a8932336f1eb256)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f971fddae77d77db6281e297a80be3a = L.circleMarker(\\n\",\n       \"                [31.2036, 121.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6e9cba033dfc49ec5d93334244863de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61a0b90f4000817fd874325ae94c0991 = $(`&lt;div id=&quot;html_61a0b90f4000817fd874325ae94c0991&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.478             latitude:31.2036             pred_result:35.34523010253906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6e9cba033dfc49ec5d93334244863de.setContent(html_61a0b90f4000817fd874325ae94c0991);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f971fddae77d77db6281e297a80be3a.bindPopup(popup_f6e9cba033dfc49ec5d93334244863de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82b7a648956c97cb1d17d7e7ba9b0db8 = L.circleMarker(\\n\",\n       \"                [31.3008, 121.467],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f3debc39ea15ce91004cbbab5fe4035 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06521c0d2a4d02416cd806a417a1994f = $(`&lt;div id=&quot;html_06521c0d2a4d02416cd806a417a1994f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.467             latitude:31.3008             pred_result:36.64101791381836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f3debc39ea15ce91004cbbab5fe4035.setContent(html_06521c0d2a4d02416cd806a417a1994f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82b7a648956c97cb1d17d7e7ba9b0db8.bindPopup(popup_1f3debc39ea15ce91004cbbab5fe4035)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9925aa41f18be96ec6eebed150255784 = L.circleMarker(\\n\",\n       \"                [31.1654, 121.412],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36c05134fc4936f8a14b216a8689db23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4621aea0b719c05db35e707fc90d4556 = $(`&lt;div id=&quot;html_4621aea0b719c05db35e707fc90d4556&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.412             latitude:31.1654             pred_result:34.85590744018555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36c05134fc4936f8a14b216a8689db23.setContent(html_4621aea0b719c05db35e707fc90d4556);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9925aa41f18be96ec6eebed150255784.bindPopup(popup_36c05134fc4936f8a14b216a8689db23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_abba7f51ea7b890be295895e42344616 = L.circleMarker(\\n\",\n       \"                [31.2659, 121.536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f098b5e28b4650520c2b645955caa813 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_252baace0654e9b5b3a01bb19d88a2c3 = $(`&lt;div id=&quot;html_252baace0654e9b5b3a01bb19d88a2c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.536             latitude:31.2659             pred_result:35.652137756347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f098b5e28b4650520c2b645955caa813.setContent(html_252baace0654e9b5b3a01bb19d88a2c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_abba7f51ea7b890be295895e42344616.bindPopup(popup_f098b5e28b4650520c2b645955caa813)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94583842de1d54e2c644b84277afd83b = L.circleMarker(\\n\",\n       \"                [31.0935, 120.978],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4711b38d1d7ce4b45c4715346166386f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af460ee829cd856a5b865ab6f15fc26f = $(`&lt;div id=&quot;html_af460ee829cd856a5b865ab6f15fc26f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.978             latitude:31.0935             pred_result:36.0140266418457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4711b38d1d7ce4b45c4715346166386f.setContent(html_af460ee829cd856a5b865ab6f15fc26f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94583842de1d54e2c644b84277afd83b.bindPopup(popup_4711b38d1d7ce4b45c4715346166386f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ede78612dedeb1d2f892067b86ce2fb2 = L.circleMarker(\\n\",\n       \"                [31.2261, 121.425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bef41b0dae587515dc1d7d8e4a453e96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3caf6cfcff3c59ff1144b16b30d3e394 = $(`&lt;div id=&quot;html_3caf6cfcff3c59ff1144b16b30d3e394&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.425             latitude:31.2261             pred_result:36.46739959716797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bef41b0dae587515dc1d7d8e4a453e96.setContent(html_3caf6cfcff3c59ff1144b16b30d3e394);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ede78612dedeb1d2f892067b86ce2fb2.bindPopup(popup_bef41b0dae587515dc1d7d8e4a453e96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76342f8fdd1c80cb5713449a003b1493 = L.circleMarker(\\n\",\n       \"                [31.1907, 121.703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4eb436d8a29e9267b28d109f9d98adc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d7625fe77379886289974e4a9f9dde1 = $(`&lt;div id=&quot;html_9d7625fe77379886289974e4a9f9dde1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.703             latitude:31.1907             pred_result:36.88523864746094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4eb436d8a29e9267b28d109f9d98adc.setContent(html_9d7625fe77379886289974e4a9f9dde1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76342f8fdd1c80cb5713449a003b1493.bindPopup(popup_a4eb436d8a29e9267b28d109f9d98adc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7d75ef93860e912c352a68a07c2090b = L.circleMarker(\\n\",\n       \"                [31.2284, 121.533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eff71cdf05daf4c65369c5d5a9ec52ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0cd5ac7dbcffcd4c0327905db1d0cb52 = $(`&lt;div id=&quot;html_0cd5ac7dbcffcd4c0327905db1d0cb52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.533             latitude:31.2284             pred_result:37.06621170043945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eff71cdf05daf4c65369c5d5a9ec52ae.setContent(html_0cd5ac7dbcffcd4c0327905db1d0cb52);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7d75ef93860e912c352a68a07c2090b.bindPopup(popup_eff71cdf05daf4c65369c5d5a9ec52ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a878476a6f8b80a6483d88b9184b0d57 = L.circleMarker(\\n\",\n       \"                [31.2071, 121.577],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35fa29850d75add58a2fc89daa63c96e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47e423ae41dec9c5402807e68ed7354c = $(`&lt;div id=&quot;html_47e423ae41dec9c5402807e68ed7354c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.577             latitude:31.2071             pred_result:38.176761627197266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35fa29850d75add58a2fc89daa63c96e.setContent(html_47e423ae41dec9c5402807e68ed7354c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a878476a6f8b80a6483d88b9184b0d57.bindPopup(popup_35fa29850d75add58a2fc89daa63c96e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9258ee4aec6b6ddee0d1b90b7d831e12 = L.circleMarker(\\n\",\n       \"                [32.1083, 118.803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_64c0bbd6be9eb773bf3cc393ba3861d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72ab74c0c4d5fa13200249d8f8b457fc = $(`&lt;div id=&quot;html_72ab74c0c4d5fa13200249d8f8b457fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.803             latitude:32.1083             pred_result:36.6617546081543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_64c0bbd6be9eb773bf3cc393ba3861d2.setContent(html_72ab74c0c4d5fa13200249d8f8b457fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9258ee4aec6b6ddee0d1b90b7d831e12.bindPopup(popup_64c0bbd6be9eb773bf3cc393ba3861d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98df7fb949402ab719504ff899a13364 = L.circleMarker(\\n\",\n       \"                [32.0572, 118.749],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8c33f2debd8658b670eda1c3f1ed91d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d168ede1242cbc33050d27a4ab72dd7 = $(`&lt;div id=&quot;html_2d168ede1242cbc33050d27a4ab72dd7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.749             latitude:32.0572             pred_result:36.840755462646484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8c33f2debd8658b670eda1c3f1ed91d.setContent(html_2d168ede1242cbc33050d27a4ab72dd7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98df7fb949402ab719504ff899a13364.bindPopup(popup_e8c33f2debd8658b670eda1c3f1ed91d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8a5e23341914cf62a32394b066de5d9d = L.circleMarker(\\n\",\n       \"                [32.0723, 118.778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee5ec5525e8f0de3420cf0a724aeddd2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30ce1ac4159163857662d6b071006d78 = $(`&lt;div id=&quot;html_30ce1ac4159163857662d6b071006d78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.778             latitude:32.0723             pred_result:37.110595703125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee5ec5525e8f0de3420cf0a724aeddd2.setContent(html_30ce1ac4159163857662d6b071006d78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8a5e23341914cf62a32394b066de5d9d.bindPopup(popup_ee5ec5525e8f0de3420cf0a724aeddd2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b57c21c833e1c371f477bf2bb083a1db = L.circleMarker(\\n\",\n       \"                [32.0144, 118.777],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db3e64402e1f900771ba0a14725ed8ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58cf23f8b92f8821bb8a659ac8bbf63c = $(`&lt;div id=&quot;html_58cf23f8b92f8821bb8a659ac8bbf63c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.777             latitude:32.0144             pred_result:37.72966766357422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db3e64402e1f900771ba0a14725ed8ab.setContent(html_58cf23f8b92f8821bb8a659ac8bbf63c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b57c21c833e1c371f477bf2bb083a1db.bindPopup(popup_db3e64402e1f900771ba0a14725ed8ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c03512ea0c32bdb690de47251ae2eee = L.circleMarker(\\n\",\n       \"                [32.0314, 118.803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f345d6613220c5c54b31c899486517a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3c461fd897d328c57a27ec2a2d38b4e = $(`&lt;div id=&quot;html_b3c461fd897d328c57a27ec2a2d38b4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.803             latitude:32.0314             pred_result:37.211578369140625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f345d6613220c5c54b31c899486517a.setContent(html_b3c461fd897d328c57a27ec2a2d38b4e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c03512ea0c32bdb690de47251ae2eee.bindPopup(popup_5f345d6613220c5c54b31c899486517a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_463e88ca370d4f616d3b15288f6bb4e9 = L.circleMarker(\\n\",\n       \"                [32.0775, 118.795],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6df07df4f466621c8b0731bc38f819fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1137c9933042d41bf46077be9fac77e8 = $(`&lt;div id=&quot;html_1137c9933042d41bf46077be9fac77e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.795             latitude:32.0775             pred_result:36.486480712890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6df07df4f466621c8b0731bc38f819fb.setContent(html_1137c9933042d41bf46077be9fac77e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_463e88ca370d4f616d3b15288f6bb4e9.bindPopup(popup_6df07df4f466621c8b0731bc38f819fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_678889ccf45b00a9dcafeef9809c0a10 = L.circleMarker(\\n\",\n       \"                [32.0092, 118.737],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b77e187a2406f6896e894dcce92e1fef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_378c72fec0025b740eeb599d1868bb31 = $(`&lt;div id=&quot;html_378c72fec0025b740eeb599d1868bb31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.737             latitude:32.0092             pred_result:38.139442443847656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b77e187a2406f6896e894dcce92e1fef.setContent(html_378c72fec0025b740eeb599d1868bb31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_678889ccf45b00a9dcafeef9809c0a10.bindPopup(popup_b77e187a2406f6896e894dcce92e1fef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c7c554e951396706756ca695bd90a1a = L.circleMarker(\\n\",\n       \"                [32.105, 118.907],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87913ef558ce98a306d993ee5a81051e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c57de3580233bd0464fca3163f7c75b6 = $(`&lt;div id=&quot;html_c57de3580233bd0464fca3163f7c75b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.907             latitude:32.105             pred_result:36.73801803588867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87913ef558ce98a306d993ee5a81051e.setContent(html_c57de3580233bd0464fca3163f7c75b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c7c554e951396706756ca695bd90a1a.bindPopup(popup_87913ef558ce98a306d993ee5a81051e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca08bc8fdcb88c83cc30381f78cbd924 = L.circleMarker(\\n\",\n       \"                [31.2472, 120.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33f0de3a416ae47082e8ba4fb47885c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0f7158904e86dbe4c609cc7b27517e3 = $(`&lt;div id=&quot;html_e0f7158904e86dbe4c609cc7b27517e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.561             latitude:31.2472             pred_result:39.33967971801758             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33f0de3a416ae47082e8ba4fb47885c7.setContent(html_e0f7158904e86dbe4c609cc7b27517e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca08bc8fdcb88c83cc30381f78cbd924.bindPopup(popup_33f0de3a416ae47082e8ba4fb47885c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47689fd1d417540ce667823c7f72d3b6 = L.circleMarker(\\n\",\n       \"                [31.2864, 120.628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9edeaf77fe241a969379c7c75b9575e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_885ca7c052f5270f6e3c1d35b8e40d03 = $(`&lt;div id=&quot;html_885ca7c052f5270f6e3c1d35b8e40d03&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.628             latitude:31.2864             pred_result:40.530277252197266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9edeaf77fe241a969379c7c75b9575e.setContent(html_885ca7c052f5270f6e3c1d35b8e40d03);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47689fd1d417540ce667823c7f72d3b6.bindPopup(popup_b9edeaf77fe241a969379c7c75b9575e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c400538feaf61a37d949454ea35be6bb = L.circleMarker(\\n\",\n       \"                [31.3019, 120.591],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6f6b3f6a395010de2f9d54ed403bdd3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98d4cff123c2daab119c5f95517e4d6c = $(`&lt;div id=&quot;html_98d4cff123c2daab119c5f95517e4d6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.591             latitude:31.3019             pred_result:38.41347122192383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6f6b3f6a395010de2f9d54ed403bdd3.setContent(html_98d4cff123c2daab119c5f95517e4d6c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c400538feaf61a37d949454ea35be6bb.bindPopup(popup_f6f6b3f6a395010de2f9d54ed403bdd3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b2f4780d6b208dbf63e9dca7af16863f = L.circleMarker(\\n\",\n       \"                [31.3264, 120.596],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5df23dd60b172e882fe03789dd7f1107 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da45f9b74afcc39295f839220f12337a = $(`&lt;div id=&quot;html_da45f9b74afcc39295f839220f12337a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.596             latitude:31.3264             pred_result:38.5814323425293             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5df23dd60b172e882fe03789dd7f1107.setContent(html_da45f9b74afcc39295f839220f12337a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b2f4780d6b208dbf63e9dca7af16863f.bindPopup(popup_5df23dd60b172e882fe03789dd7f1107)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_020f9248a5ee6dc0aa4208f7510d0dc2 = L.circleMarker(\\n\",\n       \"                [31.2703, 120.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35f0b8c695792c91d162ae8aa83488f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0199cb3bda0f4b843a28fea974da01af = $(`&lt;div id=&quot;html_0199cb3bda0f4b843a28fea974da01af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.613             latitude:31.2703             pred_result:39.16505432128906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35f0b8c695792c91d162ae8aa83488f8.setContent(html_0199cb3bda0f4b843a28fea974da01af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_020f9248a5ee6dc0aa4208f7510d0dc2.bindPopup(popup_35f0b8c695792c91d162ae8aa83488f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0efedd42516f05cd502e4593c267ee21 = L.circleMarker(\\n\",\n       \"                [31.2994, 120.543],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4dfc0df0adda4cddd8af542ede13e550 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba7dae9089c27861be8828b5f5670a3c = $(`&lt;div id=&quot;html_ba7dae9089c27861be8828b5f5670a3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.543             latitude:31.2994             pred_result:40.047645568847656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4dfc0df0adda4cddd8af542ede13e550.setContent(html_ba7dae9089c27861be8828b5f5670a3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0efedd42516f05cd502e4593c267ee21.bindPopup(popup_4dfc0df0adda4cddd8af542ede13e550)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_660fe1b7b3fb2f2df120fba28afef012 = L.circleMarker(\\n\",\n       \"                [31.3097, 120.669],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4439d4514fd15fc6fcb5c51f485ce89a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b24efc296beca7ca8d3bd3af9f6b03ee = $(`&lt;div id=&quot;html_b24efc296beca7ca8d3bd3af9f6b03ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.669             latitude:31.3097             pred_result:39.21521759033203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4439d4514fd15fc6fcb5c51f485ce89a.setContent(html_b24efc296beca7ca8d3bd3af9f6b03ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_660fe1b7b3fb2f2df120fba28afef012.bindPopup(popup_4439d4514fd15fc6fcb5c51f485ce89a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf2cbbad203cfe34654b696a6bacb0ac = L.circleMarker(\\n\",\n       \"                [31.3708, 120.641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38cf4b1bdc0d3dd31e5b21ed1b31c6f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4148318f88108add18abc2ca8b73dda5 = $(`&lt;div id=&quot;html_4148318f88108add18abc2ca8b73dda5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.641             latitude:31.3708             pred_result:37.16495132446289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38cf4b1bdc0d3dd31e5b21ed1b31c6f1.setContent(html_4148318f88108add18abc2ca8b73dda5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf2cbbad203cfe34654b696a6bacb0ac.bindPopup(popup_38cf4b1bdc0d3dd31e5b21ed1b31c6f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_744718c6751b9b31628e742838a54cc5 = L.circleMarker(\\n\",\n       \"                [31.96, 120.913],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_245c9b10980315e97002db5eb2c992b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4b4f37aa92ce7c81db3b549a6595991 = $(`&lt;div id=&quot;html_a4b4f37aa92ce7c81db3b549a6595991&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.913             latitude:31.96             pred_result:36.160438537597656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_245c9b10980315e97002db5eb2c992b1.setContent(html_a4b4f37aa92ce7c81db3b549a6595991);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_744718c6751b9b31628e742838a54cc5.bindPopup(popup_245c9b10980315e97002db5eb2c992b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb8d29d32f08db96b66f179218bd3415 = L.circleMarker(\\n\",\n       \"                [32.0005, 120.86],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3370d9bdadeac2695e8bdd57db3ea307 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00039a2e255be1cb9ebceca02cbb7db7 = $(`&lt;div id=&quot;html_00039a2e255be1cb9ebceca02cbb7db7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.86             latitude:32.0005             pred_result:36.87104797363281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3370d9bdadeac2695e8bdd57db3ea307.setContent(html_00039a2e255be1cb9ebceca02cbb7db7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb8d29d32f08db96b66f179218bd3415.bindPopup(popup_3370d9bdadeac2695e8bdd57db3ea307)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b168110b1b64950ae057bd160fcd2f3a = L.circleMarker(\\n\",\n       \"                [32.02, 120.87],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b57dad1e391016b673ca5b90c6f1abea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e1e7e7b91739b39ef9179c13564e8ae = $(`&lt;div id=&quot;html_9e1e7e7b91739b39ef9179c13564e8ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.87             latitude:32.02             pred_result:35.68383026123047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b57dad1e391016b673ca5b90c6f1abea.setContent(html_9e1e7e7b91739b39ef9179c13564e8ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b168110b1b64950ae057bd160fcd2f3a.bindPopup(popup_b57dad1e391016b673ca5b90c6f1abea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_284c9f514d35c14231dc7d60f774f6bc = L.circleMarker(\\n\",\n       \"                [32.0417, 120.81],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47cde49e2607d67a69f5716d65f41629 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b8df7232f564a0230804c444a56b088 = $(`&lt;div id=&quot;html_5b8df7232f564a0230804c444a56b088&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.81             latitude:32.0417             pred_result:37.29631423950195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47cde49e2607d67a69f5716d65f41629.setContent(html_5b8df7232f564a0230804c444a56b088);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_284c9f514d35c14231dc7d60f774f6bc.bindPopup(popup_47cde49e2607d67a69f5716d65f41629)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5cd30e0103fe5619f153613fb6a903a5 = L.circleMarker(\\n\",\n       \"                [34.5885, 119.176],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3dcb6d69951acbc5f826d5c283f29dc8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_108dd932bcc5580bd9ca90d79fee1da2 = $(`&lt;div id=&quot;html_108dd932bcc5580bd9ca90d79fee1da2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.176             latitude:34.5885             pred_result:31.926525115966797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3dcb6d69951acbc5f826d5c283f29dc8.setContent(html_108dd932bcc5580bd9ca90d79fee1da2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5cd30e0103fe5619f153613fb6a903a5.bindPopup(popup_3dcb6d69951acbc5f826d5c283f29dc8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab60e6f9a980767b70bd2a098717e3c8 = L.circleMarker(\\n\",\n       \"                [34.2761, 117.167],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5eca03360832ae93fdb31621e4d6087f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47b78bbbfbeb062eb2a463ed74f62a07 = $(`&lt;div id=&quot;html_47b78bbbfbeb062eb2a463ed74f62a07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.167             latitude:34.2761             pred_result:47.566925048828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5eca03360832ae93fdb31621e4d6087f.setContent(html_47b78bbbfbeb062eb2a463ed74f62a07);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab60e6f9a980767b70bd2a098717e3c8.bindPopup(popup_5eca03360832ae93fdb31621e4d6087f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a338db8c56d3a11b281bc2eab13a0096 = L.circleMarker(\\n\",\n       \"                [34.2417, 117.192],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b56e124626e8a7699ced2d789ba47d94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09f2960a7a59b5e396ab46faaac7b7a1 = $(`&lt;div id=&quot;html_09f2960a7a59b5e396ab46faaac7b7a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.192             latitude:34.2417             pred_result:48.143978118896484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b56e124626e8a7699ced2d789ba47d94.setContent(html_09f2960a7a59b5e396ab46faaac7b7a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a338db8c56d3a11b281bc2eab13a0096.bindPopup(popup_b56e124626e8a7699ced2d789ba47d94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a76a7a85c6b291f2cea258ad8243580e = L.circleMarker(\\n\",\n       \"                [34.2153, 117.256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82637b19a0563699aa66e2072ac6d66c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe7966fe9934e21e59cf31cf4d60ef10 = $(`&lt;div id=&quot;html_fe7966fe9934e21e59cf31cf4d60ef10&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.256             latitude:34.2153             pred_result:46.321922302246094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82637b19a0563699aa66e2072ac6d66c.setContent(html_fe7966fe9934e21e59cf31cf4d60ef10);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a76a7a85c6b291f2cea258ad8243580e.bindPopup(popup_82637b19a0563699aa66e2072ac6d66c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3de29c5a3bf1260189ee8678512a6b35 = L.circleMarker(\\n\",\n       \"                [34.2778, 117.2933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_354c06aef173d7baa842e9e529066813 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd1ec9b7a2fd8c3a34a9f1d45c8ac4ed = $(`&lt;div id=&quot;html_cd1ec9b7a2fd8c3a34a9f1d45c8ac4ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2933             latitude:34.2778             pred_result:47.515907287597656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_354c06aef173d7baa842e9e529066813.setContent(html_cd1ec9b7a2fd8c3a34a9f1d45c8ac4ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3de29c5a3bf1260189ee8678512a6b35.bindPopup(popup_354c06aef173d7baa842e9e529066813)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38ecd4ce215ba6842a3fa6de127feee2 = L.circleMarker(\\n\",\n       \"                [32.3878, 119.46],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6c09cec70e05ddd76f51652d398cf3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c53eae3cc17e8ae8ef4b9d02ce9a89e5 = $(`&lt;div id=&quot;html_c53eae3cc17e8ae8ef4b9d02ce9a89e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.46             latitude:32.3878             pred_result:33.975120544433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6c09cec70e05ddd76f51652d398cf3b.setContent(html_c53eae3cc17e8ae8ef4b9d02ce9a89e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38ecd4ce215ba6842a3fa6de127feee2.bindPopup(popup_c6c09cec70e05ddd76f51652d398cf3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91ac21bf9839c672b1d9a7f68902c481 = L.circleMarker(\\n\",\n       \"                [32.41, 119.404],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7bbe1a035334ab8c82e55d7a73fb0d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ae2f13ee3b9e1101c8f8b1a410f2eb1 = $(`&lt;div id=&quot;html_1ae2f13ee3b9e1101c8f8b1a410f2eb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.404             latitude:32.41             pred_result:32.75600051879883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7bbe1a035334ab8c82e55d7a73fb0d1.setContent(html_1ae2f13ee3b9e1101c8f8b1a410f2eb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91ac21bf9839c672b1d9a7f68902c481.bindPopup(popup_b7bbe1a035334ab8c82e55d7a73fb0d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3a8ea27a1bd5a8f470a2b6596f7e691 = L.circleMarker(\\n\",\n       \"                [32.3761, 119.389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b39448d34c2e8281f1e8cd1bdeb26f90 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a04043330b8d041d4070f5632867161b = $(`&lt;div id=&quot;html_a04043330b8d041d4070f5632867161b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.389             latitude:32.3761             pred_result:33.71824645996094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b39448d34c2e8281f1e8cd1bdeb26f90.setContent(html_a04043330b8d041d4070f5632867161b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3a8ea27a1bd5a8f470a2b6596f7e691.bindPopup(popup_b39448d34c2e8281f1e8cd1bdeb26f90)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7f25bae0bba632419de885fd5f167f0 = L.circleMarker(\\n\",\n       \"                [31.4867, 120.269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c715eadfb9072507af3a333fc6007965 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15c56e8f4ced9b968f2fb66cce9e7a9a = $(`&lt;div id=&quot;html_15c56e8f4ced9b968f2fb66cce9e7a9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.269             latitude:31.4867             pred_result:38.777748107910156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c715eadfb9072507af3a333fc6007965.setContent(html_15c56e8f4ced9b968f2fb66cce9e7a9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7f25bae0bba632419de885fd5f167f0.bindPopup(popup_c715eadfb9072507af3a333fc6007965)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_814a351935a04a2ba7fd75be8d17b1ab = L.circleMarker(\\n\",\n       \"                [31.6219, 120.275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_abdb5fdd516b8e58e5f23d05e124d71a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9869266f1678db78960190012184ddff = $(`&lt;div id=&quot;html_9869266f1678db78960190012184ddff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.275             latitude:31.6219             pred_result:38.4288444519043             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_abdb5fdd516b8e58e5f23d05e124d71a.setContent(html_9869266f1678db78960190012184ddff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_814a351935a04a2ba7fd75be8d17b1ab.bindPopup(popup_abdb5fdd516b8e58e5f23d05e124d71a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8f099d915a289394b0bf17bec3293f0 = L.circleMarker(\\n\",\n       \"                [31.56, 120.294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8c94a23888c77c78606ad295336ffed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ddf32553d1281a467b7f9e45431ec04 = $(`&lt;div id=&quot;html_3ddf32553d1281a467b7f9e45431ec04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.294             latitude:31.56             pred_result:39.02647399902344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8c94a23888c77c78606ad295336ffed.setContent(html_3ddf32553d1281a467b7f9e45431ec04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8f099d915a289394b0bf17bec3293f0.bindPopup(popup_a8c94a23888c77c78606ad295336ffed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bbe10f2e89145a89f0673951542c7c96 = L.circleMarker(\\n\",\n       \"                [31.5031, 120.242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1aef39a82931c54deee1b2c0721f4dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3101da220cdb749e4ca4c4e6c4198e30 = $(`&lt;div id=&quot;html_3101da220cdb749e4ca4c4e6c4198e30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.242             latitude:31.5031             pred_result:39.79259490966797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1aef39a82931c54deee1b2c0721f4dd.setContent(html_3101da220cdb749e4ca4c4e6c4198e30);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bbe10f2e89145a89f0673951542c7c96.bindPopup(popup_f1aef39a82931c54deee1b2c0721f4dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91fc42a0a9600e68337d05375b36fe44 = L.circleMarker(\\n\",\n       \"                [31.5848, 120.354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43e215c5ced0d7237137757c7ebafb10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af86a6354952169da1797272b233bad3 = $(`&lt;div id=&quot;html_af86a6354952169da1797272b233bad3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.354             latitude:31.5848             pred_result:37.71471405029297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43e215c5ced0d7237137757c7ebafb10.setContent(html_af86a6354952169da1797272b233bad3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91fc42a0a9600e68337d05375b36fe44.bindPopup(popup_43e215c5ced0d7237137757c7ebafb10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16c7fc88ad430145008543386296560e = L.circleMarker(\\n\",\n       \"                [31.5475, 120.354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdffb7f46fcb171886495da7ad4ce6f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6bd487026586f73f1539b7e72c75d8c6 = $(`&lt;div id=&quot;html_6bd487026586f73f1539b7e72c75d8c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.354             latitude:31.5475             pred_result:38.78984832763672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdffb7f46fcb171886495da7ad4ce6f9.setContent(html_6bd487026586f73f1539b7e72c75d8c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16c7fc88ad430145008543386296560e.bindPopup(popup_fdffb7f46fcb171886495da7ad4ce6f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc3e747fc1abc2dce8c84f40c848368b = L.circleMarker(\\n\",\n       \"                [31.5631, 120.245],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfc36c01a4011c5a61809aab43be44c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7daa60e89805da40c02153854a96725e = $(`&lt;div id=&quot;html_7daa60e89805da40c02153854a96725e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.245             latitude:31.5631             pred_result:36.571556091308594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfc36c01a4011c5a61809aab43be44c3.setContent(html_7daa60e89805da40c02153854a96725e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc3e747fc1abc2dce8c84f40c848368b.bindPopup(popup_bfc36c01a4011c5a61809aab43be44c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_574cb973a94209025f211aac0842b20e = L.circleMarker(\\n\",\n       \"                [31.6842, 120.288],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00511da6e93b140611f51bb8ed445002 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_055443639dd30fa7f72c340da0b4769f = $(`&lt;div id=&quot;html_055443639dd30fa7f72c340da0b4769f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.288             latitude:31.6842             pred_result:37.58537292480469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00511da6e93b140611f51bb8ed445002.setContent(html_055443639dd30fa7f72c340da0b4769f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_574cb973a94209025f211aac0842b20e.bindPopup(popup_00511da6e93b140611f51bb8ed445002)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26b476cb7e00029520b1885695f1f548 = L.circleMarker(\\n\",\n       \"                [31.7586, 119.996],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9aa37c853249a23db86808128dd82658 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7c0d174a91aaac6b5321b63492b9f06 = $(`&lt;div id=&quot;html_e7c0d174a91aaac6b5321b63492b9f06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.996             latitude:31.7586             pred_result:38.95193099975586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9aa37c853249a23db86808128dd82658.setContent(html_e7c0d174a91aaac6b5321b63492b9f06);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26b476cb7e00029520b1885695f1f548.bindPopup(popup_9aa37c853249a23db86808128dd82658)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_abc52bf3010303d2ef43b8012a413db3 = L.circleMarker(\\n\",\n       \"                [31.7039, 119.935],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_702db1def7da4f36a7f98a99e362b4b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15de961ab18e6a0af49a7c33735f3abd = $(`&lt;div id=&quot;html_15de961ab18e6a0af49a7c33735f3abd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.935             latitude:31.7039             pred_result:38.104881286621094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_702db1def7da4f36a7f98a99e362b4b2.setContent(html_15de961ab18e6a0af49a7c33735f3abd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_abc52bf3010303d2ef43b8012a413db3.bindPopup(popup_702db1def7da4f36a7f98a99e362b4b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f14e8a9412f57bfdd22b3295df0cd82e = L.circleMarker(\\n\",\n       \"                [31.9108, 119.905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4151b1cccfe4f2b128f5860e7bc06ee0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ddbe15d8879823cb53751e80040f82c = $(`&lt;div id=&quot;html_3ddbe15d8879823cb53751e80040f82c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.905             latitude:31.9108             pred_result:37.404300689697266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4151b1cccfe4f2b128f5860e7bc06ee0.setContent(html_3ddbe15d8879823cb53751e80040f82c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f14e8a9412f57bfdd22b3295df0cd82e.bindPopup(popup_4151b1cccfe4f2b128f5860e7bc06ee0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a7c2eaa8feec48190bdf57dabac396f = L.circleMarker(\\n\",\n       \"                [32.1883, 119.68],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ecf5eb4bb85ee84d2a116cc93fccb24b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd1af62ff0c1489e64c1557891d1b540 = $(`&lt;div id=&quot;html_fd1af62ff0c1489e64c1557891d1b540&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.68             latitude:32.1883             pred_result:34.45040512084961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ecf5eb4bb85ee84d2a116cc93fccb24b.setContent(html_fd1af62ff0c1489e64c1557891d1b540);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a7c2eaa8feec48190bdf57dabac396f.bindPopup(popup_ecf5eb4bb85ee84d2a116cc93fccb24b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62f14e56870cf2fb63e6ff41b02ab2d6 = L.circleMarker(\\n\",\n       \"                [32.215, 119.491],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ed702ae4dafe4f87a4f51586b4c423c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_329af2ffb164f23eadc48081639a87a8 = $(`&lt;div id=&quot;html_329af2ffb164f23eadc48081639a87a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.491             latitude:32.215             pred_result:37.181785583496094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ed702ae4dafe4f87a4f51586b4c423c.setContent(html_329af2ffb164f23eadc48081639a87a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62f14e56870cf2fb63e6ff41b02ab2d6.bindPopup(popup_1ed702ae4dafe4f87a4f51586b4c423c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2b2ac91f13ed5d9642217f602e3005a = L.circleMarker(\\n\",\n       \"                [32.1319, 119.43],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ca0bec3b070a97dde7ff8814d720b27 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_706388d27aa79df1fe3c76ad821b3b18 = $(`&lt;div id=&quot;html_706388d27aa79df1fe3c76ad821b3b18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.43             latitude:32.1319             pred_result:35.33080291748047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ca0bec3b070a97dde7ff8814d720b27.setContent(html_706388d27aa79df1fe3c76ad821b3b18);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2b2ac91f13ed5d9642217f602e3005a.bindPopup(popup_4ca0bec3b070a97dde7ff8814d720b27)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8dca67a454d952ef2ce21c282ee2c1e = L.circleMarker(\\n\",\n       \"                [32.4867, 119.9],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d09808b21234b5c2ef0236f4a883cba1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ae1e85b9773bc595bab629e93b97ae3 = $(`&lt;div id=&quot;html_4ae1e85b9773bc595bab629e93b97ae3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9             latitude:32.4867             pred_result:35.204742431640625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d09808b21234b5c2ef0236f4a883cba1.setContent(html_4ae1e85b9773bc595bab629e93b97ae3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8dca67a454d952ef2ce21c282ee2c1e.bindPopup(popup_d09808b21234b5c2ef0236f4a883cba1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e38adb911eee06a9f0222537d3a71ff = L.circleMarker(\\n\",\n       \"                [32.4611, 119.9219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6bb8a4caccb6300052ecb9d6a7428efc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9354fec3affa1d998a8994447fb966ca = $(`&lt;div id=&quot;html_9354fec3affa1d998a8994447fb966ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9219             latitude:32.4611             pred_result:35.97247314453125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6bb8a4caccb6300052ecb9d6a7428efc.setContent(html_9354fec3affa1d998a8994447fb966ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e38adb911eee06a9f0222537d3a71ff.bindPopup(popup_6bb8a4caccb6300052ecb9d6a7428efc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_113279dc26a679f7ccec6ebfe7618c7b = L.circleMarker(\\n\",\n       \"                [32.4639, 119.888],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2579a7bca6a85f1d83a61361c997ff17 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e174507cba86126f4df3ccc70fe004a9 = $(`&lt;div id=&quot;html_e174507cba86126f4df3ccc70fe004a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.888             latitude:32.4639             pred_result:35.75363540649414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2579a7bca6a85f1d83a61361c997ff17.setContent(html_e174507cba86126f4df3ccc70fe004a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_113279dc26a679f7ccec6ebfe7618c7b.bindPopup(popup_2579a7bca6a85f1d83a61361c997ff17)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae40869d08984c141441c68fb12546d0 = L.circleMarker(\\n\",\n       \"                [33.5981, 119.036],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_179a2d20bbadc581504a9fc3007e3f30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58f26c65a64fa1045af6a3935a2c867e = $(`&lt;div id=&quot;html_58f26c65a64fa1045af6a3935a2c867e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.036             latitude:33.5981             pred_result:34.37764358520508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_179a2d20bbadc581504a9fc3007e3f30.setContent(html_58f26c65a64fa1045af6a3935a2c867e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae40869d08984c141441c68fb12546d0.bindPopup(popup_179a2d20bbadc581504a9fc3007e3f30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f4438b0441a7bb9ac2203d04da80e09 = L.circleMarker(\\n\",\n       \"                [33.575, 119.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc8aed871a5fd9fcdc933399d16d32e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_855a406f566ff00df99361c3781a0506 = $(`&lt;div id=&quot;html_855a406f566ff00df99361c3781a0506&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.007             latitude:33.575             pred_result:35.68016815185547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc8aed871a5fd9fcdc933399d16d32e1.setContent(html_855a406f566ff00df99361c3781a0506);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f4438b0441a7bb9ac2203d04da80e09.bindPopup(popup_dc8aed871a5fd9fcdc933399d16d32e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9393ab81b8a2eb25824aa4367a75bc60 = L.circleMarker(\\n\",\n       \"                [33.6067, 118.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4af5b34beb919f2771644e1f98d939e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_400c2d5b7f76b6b8d55061eb2683faca = $(`&lt;div id=&quot;html_400c2d5b7f76b6b8d55061eb2683faca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.989             latitude:33.6067             pred_result:35.448341369628906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4af5b34beb919f2771644e1f98d939e6.setContent(html_400c2d5b7f76b6b8d55061eb2683faca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9393ab81b8a2eb25824aa4367a75bc60.bindPopup(popup_4af5b34beb919f2771644e1f98d939e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1449f840001b34e894720dba7513560 = L.circleMarker(\\n\",\n       \"                [33.5039, 119.135],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bf00139862364396abbfcb016655529 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc833c54d0ce384108c496c1ee1c82a2 = $(`&lt;div id=&quot;html_dc833c54d0ce384108c496c1ee1c82a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.135             latitude:33.5039             pred_result:32.83711242675781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bf00139862364396abbfcb016655529.setContent(html_dc833c54d0ce384108c496c1ee1c82a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1449f840001b34e894720dba7513560.bindPopup(popup_0bf00139862364396abbfcb016655529)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3f43f3e972264f596ecd09ed429aa8e = L.circleMarker(\\n\",\n       \"                [33.626999999999995, 119.0122],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf719b3361d784c33aea1560ebb63aff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a437f7a2bf5b9c54dceb63c7eea4506b = $(`&lt;div id=&quot;html_a437f7a2bf5b9c54dceb63c7eea4506b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0122             latitude:33.626999999999995             pred_result:34.579227447509766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf719b3361d784c33aea1560ebb63aff.setContent(html_a437f7a2bf5b9c54dceb63c7eea4506b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3f43f3e972264f596ecd09ed429aa8e.bindPopup(popup_bf719b3361d784c33aea1560ebb63aff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_53f4469eb72f07a478003be445813e37 = L.circleMarker(\\n\",\n       \"                [33.4022, 120.118],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15f4c430f570653d6309403a083d777c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6220e57006c7a61fcad076cf2ef8ec01 = $(`&lt;div id=&quot;html_6220e57006c7a61fcad076cf2ef8ec01&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.118             latitude:33.4022             pred_result:29.360519409179688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15f4c430f570653d6309403a083d777c.setContent(html_6220e57006c7a61fcad076cf2ef8ec01);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_53f4469eb72f07a478003be445813e37.bindPopup(popup_15f4c430f570653d6309403a083d777c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d1ed2d1a34ffebf74d142e8b5276cc7 = L.circleMarker(\\n\",\n       \"                [33.3942, 120.156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_14bb7c9ac0d9577ed5994e99be5dd191 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77309a9c3f9cb95369499ff128ec21ad = $(`&lt;div id=&quot;html_77309a9c3f9cb95369499ff128ec21ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.156             latitude:33.3942             pred_result:32.715633392333984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_14bb7c9ac0d9577ed5994e99be5dd191.setContent(html_77309a9c3f9cb95369499ff128ec21ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d1ed2d1a34ffebf74d142e8b5276cc7.bindPopup(popup_14bb7c9ac0d9577ed5994e99be5dd191)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4423e6de70326b1a9058e4046ecceb20 = L.circleMarker(\\n\",\n       \"                [33.3947, 120.225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_760d1ff1b3e439b076327db622077ca0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3797049e7427df0e674dd19ae5aedeb = $(`&lt;div id=&quot;html_b3797049e7427df0e674dd19ae5aedeb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.225             latitude:33.3947             pred_result:27.575801849365234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_760d1ff1b3e439b076327db622077ca0.setContent(html_b3797049e7427df0e674dd19ae5aedeb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4423e6de70326b1a9058e4046ecceb20.bindPopup(popup_760d1ff1b3e439b076327db622077ca0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f63bfca1fde0b34b6bda7f6d3c69578 = L.circleMarker(\\n\",\n       \"                [33.9528, 118.293],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_326f39110b1bb45442a8c740b32d4291 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_928a53ac52e1a5b1af17dfa6cb747b86 = $(`&lt;div id=&quot;html_928a53ac52e1a5b1af17dfa6cb747b86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.293             latitude:33.9528             pred_result:39.30628967285156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_326f39110b1bb45442a8c740b32d4291.setContent(html_928a53ac52e1a5b1af17dfa6cb747b86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f63bfca1fde0b34b6bda7f6d3c69578.bindPopup(popup_326f39110b1bb45442a8c740b32d4291)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c88d8a4befea770574f51c946d79ce9 = L.circleMarker(\\n\",\n       \"                [33.9506, 118.3214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa85328b686784f9f2146298c1893d94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66c2b92fff447bb0c4ddc7aec5ff2810 = $(`&lt;div id=&quot;html_66c2b92fff447bb0c4ddc7aec5ff2810&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3214             latitude:33.9506             pred_result:40.61956024169922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa85328b686784f9f2146298c1893d94.setContent(html_66c2b92fff447bb0c4ddc7aec5ff2810);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c88d8a4befea770574f51c946d79ce9.bindPopup(popup_fa85328b686784f9f2146298c1893d94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8ae68c387e96d5b5ebc8d93fda61de2 = L.circleMarker(\\n\",\n       \"                [30.21, 120.211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1f6c64029bbc9dc2441b49f81e4e9d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d2c3a8f77d771e03a8ef6d2fd9ae9cd = $(`&lt;div id=&quot;html_8d2c3a8f77d771e03a8ef6d2fd9ae9cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.211             latitude:30.21             pred_result:36.058570861816406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1f6c64029bbc9dc2441b49f81e4e9d8.setContent(html_8d2c3a8f77d771e03a8ef6d2fd9ae9cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8ae68c387e96d5b5ebc8d93fda61de2.bindPopup(popup_e1f6c64029bbc9dc2441b49f81e4e9d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d6d16bfcb6c4cc1483a1e0ef7588adb = L.circleMarker(\\n\",\n       \"                [30.2747, 120.063],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca64546814ae82fa3ebc178c65c0ce30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0acdd98e722934067100393b21ff5bde = $(`&lt;div id=&quot;html_0acdd98e722934067100393b21ff5bde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.063             latitude:30.2747             pred_result:35.555572509765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca64546814ae82fa3ebc178c65c0ce30.setContent(html_0acdd98e722934067100393b21ff5bde);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d6d16bfcb6c4cc1483a1e0ef7588adb.bindPopup(popup_ca64546814ae82fa3ebc178c65c0ce30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e8fdbe9169337424b872eab1476bd37 = L.circleMarker(\\n\",\n       \"                [29.635, 119.026],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa60d40983e6ca4c219e6c9e71220731 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d35bde4a174f596f0764a447449011fb = $(`&lt;div id=&quot;html_d35bde4a174f596f0764a447449011fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.026             latitude:29.635             pred_result:33.15162658691406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa60d40983e6ca4c219e6c9e71220731.setContent(html_d35bde4a174f596f0764a447449011fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e8fdbe9169337424b872eab1476bd37.bindPopup(popup_aa60d40983e6ca4c219e6c9e71220731)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d30fa16c81c6bca19b3d9455ed6d3c07 = L.circleMarker(\\n\",\n       \"                [30.3058, 120.348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e24d017211dde22be091ba2a5d0f2a64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_751ff870199abd8748fe34859e3c9ed0 = $(`&lt;div id=&quot;html_751ff870199abd8748fe34859e3c9ed0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.348             latitude:30.3058             pred_result:36.40302276611328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e24d017211dde22be091ba2a5d0f2a64.setContent(html_751ff870199abd8748fe34859e3c9ed0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d30fa16c81c6bca19b3d9455ed6d3c07.bindPopup(popup_e24d017211dde22be091ba2a5d0f2a64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d67bfe817c74021619b4941b196ade3 = L.circleMarker(\\n\",\n       \"                [30.2456, 120.127],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1fd096fa3ab57febbc188f1aa23d42bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4d8dac817c79b8391e4f5eb20a2c72f = $(`&lt;div id=&quot;html_c4d8dac817c79b8391e4f5eb20a2c72f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.127             latitude:30.2456             pred_result:36.15253448486328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1fd096fa3ab57febbc188f1aa23d42bc.setContent(html_c4d8dac817c79b8391e4f5eb20a2c72f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d67bfe817c74021619b4941b196ade3.bindPopup(popup_1fd096fa3ab57febbc188f1aa23d42bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f4e402346b1b76426a0663f5899659f = L.circleMarker(\\n\",\n       \"                [30.2692, 120.19],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_06b99f35611a9c787c4b9a5cfe4b6a33 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_741ae1741472ef4661679841401e0ebe = $(`&lt;div id=&quot;html_741ae1741472ef4661679841401e0ebe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.19             latitude:30.2692             pred_result:35.70887756347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_06b99f35611a9c787c4b9a5cfe4b6a33.setContent(html_741ae1741472ef4661679841401e0ebe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f4e402346b1b76426a0663f5899659f.bindPopup(popup_06b99f35611a9c787c4b9a5cfe4b6a33)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23e15f2904f6ef506a228a19068b6eb7 = L.circleMarker(\\n\",\n       \"                [30.2897, 120.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4dad5612c609f8e07b24d58984f2b86f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1597461b8dd74150314c4ddbd441fc7 = $(`&lt;div id=&quot;html_d1597461b8dd74150314c4ddbd441fc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.157             latitude:30.2897             pred_result:36.699310302734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4dad5612c609f8e07b24d58984f2b86f.setContent(html_d1597461b8dd74150314c4ddbd441fc7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23e15f2904f6ef506a228a19068b6eb7.bindPopup(popup_4dad5612c609f8e07b24d58984f2b86f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e43b7a2e44ce06cf24ed5b5b792f9971 = L.circleMarker(\\n\",\n       \"                [30.3119, 120.12],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f54150b4331a4a7a7741e35a7f05c465 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5fc8235e4e23e02ee0adbc25a1bb6f82 = $(`&lt;div id=&quot;html_5fc8235e4e23e02ee0adbc25a1bb6f82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.12             latitude:30.3119             pred_result:36.71159744262695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f54150b4331a4a7a7741e35a7f05c465.setContent(html_5fc8235e4e23e02ee0adbc25a1bb6f82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e43b7a2e44ce06cf24ed5b5b792f9971.bindPopup(popup_f54150b4331a4a7a7741e35a7f05c465)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20926e50d2b5a1a3d01bba0973460bf9 = L.circleMarker(\\n\",\n       \"                [30.4183, 120.301],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1acbe46b1f009e029dc418c9c9ed243 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9010ed176a4a6d357a2cd2787bc71bb1 = $(`&lt;div id=&quot;html_9010ed176a4a6d357a2cd2787bc71bb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.301             latitude:30.4183             pred_result:37.73616027832031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1acbe46b1f009e029dc418c9c9ed243.setContent(html_9010ed176a4a6d357a2cd2787bc71bb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20926e50d2b5a1a3d01bba0973460bf9.bindPopup(popup_e1acbe46b1f009e029dc418c9c9ed243)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6773f4d4c56bc6951fb1244101b03ece = L.circleMarker(\\n\",\n       \"                [30.1819, 120.27],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5e048c2dab98ac6d6d5e2ace8c21151 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0caa122ae9622338d103be8fccadb71 = $(`&lt;div id=&quot;html_d0caa122ae9622338d103be8fccadb71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.27             latitude:30.1819             pred_result:35.14012908935547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5e048c2dab98ac6d6d5e2ace8c21151.setContent(html_d0caa122ae9622338d103be8fccadb71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6773f4d4c56bc6951fb1244101b03ece.bindPopup(popup_e5e048c2dab98ac6d6d5e2ace8c21151)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_282e37d261922716c86c58bbe133989c = L.circleMarker(\\n\",\n       \"                [30.1808, 120.088],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b767b4ebedab4b69f243f36adb9f6ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_63b00f44f2c797a7b3ecd9141781be36 = $(`&lt;div id=&quot;html_63b00f44f2c797a7b3ecd9141781be36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.088             latitude:30.1808             pred_result:34.5809326171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b767b4ebedab4b69f243f36adb9f6ce.setContent(html_63b00f44f2c797a7b3ecd9141781be36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_282e37d261922716c86c58bbe133989c.bindPopup(popup_7b767b4ebedab4b69f243f36adb9f6ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe578c6a6684f08027f544780d4d3f93 = L.circleMarker(\\n\",\n       \"                [29.8208, 121.56],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db34f7856597a21b930a22a8deb95606 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_057b7fa3802ead95b4a42def53422163 = $(`&lt;div id=&quot;html_057b7fa3802ead95b4a42def53422163&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.56             latitude:29.8208             pred_result:28.085880279541016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db34f7856597a21b930a22a8deb95606.setContent(html_057b7fa3802ead95b4a42def53422163);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe578c6a6684f08027f544780d4d3f93.bindPopup(popup_db34f7856597a21b930a22a8deb95606)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d76f355a7d5bfecc15293c444d4881a9 = L.circleMarker(\\n\",\n       \"                [29.8906, 121.554],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50dc9c72e730e9c41d443e9d4b099ba8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_665d0ae120fb2ada0b3d3c1aa95994ed = $(`&lt;div id=&quot;html_665d0ae120fb2ada0b3d3c1aa95994ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.554             latitude:29.8906             pred_result:28.895965576171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50dc9c72e730e9c41d443e9d4b099ba8.setContent(html_665d0ae120fb2ada0b3d3c1aa95994ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d76f355a7d5bfecc15293c444d4881a9.bindPopup(popup_50dc9c72e730e9c41d443e9d4b099ba8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_300a1522b06319ba58396f3ea859c9fc = L.circleMarker(\\n\",\n       \"                [29.7736, 121.633],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32e906b9efdb7ca67b2eaac724e384c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_41274cab7e96c8515b41eed9164321a8 = $(`&lt;div id=&quot;html_41274cab7e96c8515b41eed9164321a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.633             latitude:29.7736             pred_result:28.107006072998047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32e906b9efdb7ca67b2eaac724e384c2.setContent(html_41274cab7e96c8515b41eed9164321a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_300a1522b06319ba58396f3ea859c9fc.bindPopup(popup_32e906b9efdb7ca67b2eaac724e384c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af0d82e70607e30fd0cb7ee926d1654c = L.circleMarker(\\n\",\n       \"                [29.8633, 121.586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44d058f3cd5ad996833e67b48a75aa71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22a2f77675cd55f3157536c2b768b0a9 = $(`&lt;div id=&quot;html_22a2f77675cd55f3157536c2b768b0a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.586             latitude:29.8633             pred_result:29.400615692138672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44d058f3cd5ad996833e67b48a75aa71.setContent(html_22a2f77675cd55f3157536c2b768b0a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af0d82e70607e30fd0cb7ee926d1654c.bindPopup(popup_44d058f3cd5ad996833e67b48a75aa71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56afe5c0c11da5aaae2d30e975d01f6d = L.circleMarker(\\n\",\n       \"                [29.8506, 121.524],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d8eb18d1e4e0306035bda0bea5f790e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a375da0d11d8b191800e43d62d56c6d3 = $(`&lt;div id=&quot;html_a375da0d11d8b191800e43d62d56c6d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.524             latitude:29.8506             pred_result:28.99755859375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d8eb18d1e4e0306035bda0bea5f790e.setContent(html_a375da0d11d8b191800e43d62d56c6d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56afe5c0c11da5aaae2d30e975d01f6d.bindPopup(popup_8d8eb18d1e4e0306035bda0bea5f790e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4613d11d3730af280815605d83157904 = L.circleMarker(\\n\",\n       \"                [28.0089, 120.634],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0c8935875ac6f12a6de3b7b409c8974 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6a2473f4a50fa056b8c6bae87736ab8 = $(`&lt;div id=&quot;html_b6a2473f4a50fa056b8c6bae87736ab8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.634             latitude:28.0089             pred_result:25.865375518798828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0c8935875ac6f12a6de3b7b409c8974.setContent(html_b6a2473f4a50fa056b8c6bae87736ab8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4613d11d3730af280815605d83157904.bindPopup(popup_b0c8935875ac6f12a6de3b7b409c8974)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b20e45bbe4f3ef60697713f422894e5 = L.circleMarker(\\n\",\n       \"                [27.9939, 120.677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffcb4feb929b354d7338accd5f8b22e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cba89d2db6052ae96311a2a37817bc5f = $(`&lt;div id=&quot;html_cba89d2db6052ae96311a2a37817bc5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.677             latitude:27.9939             pred_result:25.084163665771484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffcb4feb929b354d7338accd5f8b22e5.setContent(html_cba89d2db6052ae96311a2a37817bc5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b20e45bbe4f3ef60697713f422894e5.bindPopup(popup_ffcb4feb929b354d7338accd5f8b22e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7ec6e069188d41a75207c81fb66c6f6 = L.circleMarker(\\n\",\n       \"                [27.9747, 120.76],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f5eba1106fda12fdc9f46ab1abd4040 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24f7b337d825c3b51a474475f6f0a403 = $(`&lt;div id=&quot;html_24f7b337d825c3b51a474475f6f0a403&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.76             latitude:27.9747             pred_result:23.69003677368164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f5eba1106fda12fdc9f46ab1abd4040.setContent(html_24f7b337d825c3b51a474475f6f0a403);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7ec6e069188d41a75207c81fb66c6f6.bindPopup(popup_3f5eba1106fda12fdc9f46ab1abd4040)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cfedd244e05bdecc9a40a57db73202e1 = L.circleMarker(\\n\",\n       \"                [28.0167, 120.671],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b6166c39356031165ab0b7b59fc490b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3564729a6bba17373792c9f9f746dd0 = $(`&lt;div id=&quot;html_a3564729a6bba17373792c9f9f746dd0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.671             latitude:28.0167             pred_result:24.504417419433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b6166c39356031165ab0b7b59fc490b.setContent(html_a3564729a6bba17373792c9f9f746dd0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cfedd244e05bdecc9a40a57db73202e1.bindPopup(popup_9b6166c39356031165ab0b7b59fc490b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41a4713ac2f0d135440a9bff91290273 = L.circleMarker(\\n\",\n       \"                [30.0911, 120.598],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfe6f3722dd6319de9440713e3008dfb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db9a7b8c5248201106dbd1fb7039273c = $(`&lt;div id=&quot;html_db9a7b8c5248201106dbd1fb7039273c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.598             latitude:30.0911             pred_result:32.287513732910156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfe6f3722dd6319de9440713e3008dfb.setContent(html_db9a7b8c5248201106dbd1fb7039273c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41a4713ac2f0d135440a9bff91290273.bindPopup(popup_dfe6f3722dd6319de9440713e3008dfb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9bc91bce4c7fac4fbeb86dc6e545d8f = L.circleMarker(\\n\",\n       \"                [29.9919, 120.605],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b44be4d7501304916efb5c14a035c4ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_215dbc38db661705206e4bf8c821a109 = $(`&lt;div id=&quot;html_215dbc38db661705206e4bf8c821a109&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.605             latitude:29.9919             pred_result:33.69541931152344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b44be4d7501304916efb5c14a035c4ff.setContent(html_215dbc38db661705206e4bf8c821a109);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9bc91bce4c7fac4fbeb86dc6e545d8f.bindPopup(popup_b44be4d7501304916efb5c14a035c4ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8fff4f4605740854f4a43e7bec690022 = L.circleMarker(\\n\",\n       \"                [30.8244, 120.07],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7e2b90b5f079e2bebd4d22209a7a5f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0199af94be55fb15f6338545f343d40c = $(`&lt;div id=&quot;html_0199af94be55fb15f6338545f343d40c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.07             latitude:30.8244             pred_result:37.8043212890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7e2b90b5f079e2bebd4d22209a7a5f6.setContent(html_0199af94be55fb15f6338545f343d40c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8fff4f4605740854f4a43e7bec690022.bindPopup(popup_b7e2b90b5f079e2bebd4d22209a7a5f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e56ec3e646920bc3dda873093e56fe2b = L.circleMarker(\\n\",\n       \"                [30.7946, 120.744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69eb61e52803db2f72088dc2ac619ae6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4245444cfccfa6369dffa4ccea63605 = $(`&lt;div id=&quot;html_f4245444cfccfa6369dffa4ccea63605&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.744             latitude:30.7946             pred_result:40.10285186767578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69eb61e52803db2f72088dc2ac619ae6.setContent(html_f4245444cfccfa6369dffa4ccea63605);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e56ec3e646920bc3dda873093e56fe2b.bindPopup(popup_69eb61e52803db2f72088dc2ac619ae6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_416d78488f57c11c64107b202ced483f = L.circleMarker(\\n\",\n       \"                [30.7478, 120.726],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ff70bb1c7a14b7e4cc6cf43e1ef83ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70ea39a7bab8878dbe3b2325e374c7aa = $(`&lt;div id=&quot;html_70ea39a7bab8878dbe3b2325e374c7aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.726             latitude:30.7478             pred_result:35.13743591308594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ff70bb1c7a14b7e4cc6cf43e1ef83ca.setContent(html_70ea39a7bab8878dbe3b2325e374c7aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_416d78488f57c11c64107b202ced483f.bindPopup(popup_4ff70bb1c7a14b7e4cc6cf43e1ef83ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e7c3e5a480551e0e707c65bff115daa = L.circleMarker(\\n\",\n       \"                [28.6459, 121.273],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee66d4ccbed23d204be6da7cf7e00454 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_280fad3bd55126e87eeba13df1fb6732 = $(`&lt;div id=&quot;html_280fad3bd55126e87eeba13df1fb6732&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.273             latitude:28.6459             pred_result:24.062114715576172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee66d4ccbed23d204be6da7cf7e00454.setContent(html_280fad3bd55126e87eeba13df1fb6732);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e7c3e5a480551e0e707c65bff115daa.bindPopup(popup_ee66d4ccbed23d204be6da7cf7e00454)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afbeb27e4d3e424a085322536231ee88 = L.circleMarker(\\n\",\n       \"                [28.6542, 121.419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_527d7fdc5a68e29c051cd68f5cec944f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a5f57e19e05d7e8ff175c2e98e39bad = $(`&lt;div id=&quot;html_8a5f57e19e05d7e8ff175c2e98e39bad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.419             latitude:28.6542             pred_result:24.01195526123047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_527d7fdc5a68e29c051cd68f5cec944f.setContent(html_8a5f57e19e05d7e8ff175c2e98e39bad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afbeb27e4d3e424a085322536231ee88.bindPopup(popup_527d7fdc5a68e29c051cd68f5cec944f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16217d3365f8706643bc77e29364d68e = L.circleMarker(\\n\",\n       \"                [28.5773, 121.377],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40bc99676befacc2d9ad30bf6c33826f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_feddbe43c2da7aec51b36139528a7ea1 = $(`&lt;div id=&quot;html_feddbe43c2da7aec51b36139528a7ea1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.377             latitude:28.5773             pred_result:23.106714248657227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40bc99676befacc2d9ad30bf6c33826f.setContent(html_feddbe43c2da7aec51b36139528a7ea1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16217d3365f8706643bc77e29364d68e.bindPopup(popup_40bc99676befacc2d9ad30bf6c33826f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f6fb4d9e76b06997c983c3fbad65865 = L.circleMarker(\\n\",\n       \"                [29.077, 119.647],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b28fa32331202e7f616aa5e49825acaf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_753afcc7dd49210b637f37b91589da63 = $(`&lt;div id=&quot;html_753afcc7dd49210b637f37b91589da63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.647             latitude:29.077             pred_result:30.111547470092773             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b28fa32331202e7f616aa5e49825acaf.setContent(html_753afcc7dd49210b637f37b91589da63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f6fb4d9e76b06997c983c3fbad65865.bindPopup(popup_b28fa32331202e7f616aa5e49825acaf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ff78b10481422e6dcfa2b4cc97eea7e = L.circleMarker(\\n\",\n       \"                [29.1029, 119.686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c901b496a8ba72b625311ad64045c45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b50004ea63da56a6d22fb527224155d4 = $(`&lt;div id=&quot;html_b50004ea63da56a6d22fb527224155d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.686             latitude:29.1029             pred_result:30.158842086791992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c901b496a8ba72b625311ad64045c45.setContent(html_b50004ea63da56a6d22fb527224155d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ff78b10481422e6dcfa2b4cc97eea7e.bindPopup(popup_2c901b496a8ba72b625311ad64045c45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5531e5c5d4b5c97b3999411e5cc42a35 = L.circleMarker(\\n\",\n       \"                [28.9404, 118.871],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_831147bb51710d096e185ec94101e790 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afa3e649a3732a84612c17c59397403c = $(`&lt;div id=&quot;html_afa3e649a3732a84612c17c59397403c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.871             latitude:28.9404             pred_result:31.482940673828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_831147bb51710d096e185ec94101e790.setContent(html_afa3e649a3732a84612c17c59397403c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5531e5c5d4b5c97b3999411e5cc42a35.bindPopup(popup_831147bb51710d096e185ec94101e790)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9dcb66e2942f8e26ba885316939f6fc9 = L.circleMarker(\\n\",\n       \"                [28.9664, 118.871],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6327f106283a37899a2a26814f4667e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_41262465802cdeca507658bab4e68b56 = $(`&lt;div id=&quot;html_41262465802cdeca507658bab4e68b56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.871             latitude:28.9664             pred_result:31.858564376831055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6327f106283a37899a2a26814f4667e.setContent(html_41262465802cdeca507658bab4e68b56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9dcb66e2942f8e26ba885316939f6fc9.bindPopup(popup_f6327f106283a37899a2a26814f4667e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_620bdbb220856bcf5fc015cab77af884 = L.circleMarker(\\n\",\n       \"                [28.9745, 118.855],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f34d4f2af0c5572f434ec10fd26e253f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6874326a6a31d50e18d623baae6e45e = $(`&lt;div id=&quot;html_f6874326a6a31d50e18d623baae6e45e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.855             latitude:28.9745             pred_result:32.63282012939453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f34d4f2af0c5572f434ec10fd26e253f.setContent(html_f6874326a6a31d50e18d623baae6e45e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_620bdbb220856bcf5fc015cab77af884.bindPopup(popup_f34d4f2af0c5572f434ec10fd26e253f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a21837163183498b149ca88c2fa1e73 = L.circleMarker(\\n\",\n       \"                [28.4514, 119.914],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9451b8bd2794fc67e64d0dac298ce1b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9dd189922cddab7c691874a2590d5e0b = $(`&lt;div id=&quot;html_9dd189922cddab7c691874a2590d5e0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.914             latitude:28.4514             pred_result:28.98808479309082             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9451b8bd2794fc67e64d0dac298ce1b5.setContent(html_9dd189922cddab7c691874a2590d5e0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a21837163183498b149ca88c2fa1e73.bindPopup(popup_9451b8bd2794fc67e64d0dac298ce1b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f54d1aa4c2b1dc3b05aaa03d46ae41ba = L.circleMarker(\\n\",\n       \"                [28.4586, 119.93],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28bf3263f6aaa26d90f85eb8e20cf98f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b72a810b59d7b81e1fa68c00996bfe6 = $(`&lt;div id=&quot;html_1b72a810b59d7b81e1fa68c00996bfe6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.93             latitude:28.4586             pred_result:28.259410858154297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28bf3263f6aaa26d90f85eb8e20cf98f.setContent(html_1b72a810b59d7b81e1fa68c00996bfe6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f54d1aa4c2b1dc3b05aaa03d46ae41ba.bindPopup(popup_28bf3263f6aaa26d90f85eb8e20cf98f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fee4af6127bf31b52ab287ed19bc668 = L.circleMarker(\\n\",\n       \"                [28.4231, 119.879],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02dd73eaa4242e26d596aff95d718173 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98929dc702091432974d7a96367655f2 = $(`&lt;div id=&quot;html_98929dc702091432974d7a96367655f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.879             latitude:28.4231             pred_result:25.2182559967041             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02dd73eaa4242e26d596aff95d718173.setContent(html_98929dc702091432974d7a96367655f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fee4af6127bf31b52ab287ed19bc668.bindPopup(popup_02dd73eaa4242e26d596aff95d718173)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6138693f85a2cdddefcba5447e17ada = L.circleMarker(\\n\",\n       \"                [31.7848, 117.196],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9538fae916dd7cd16eb6f8a1f5a09a6f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70bc3c29bfe280a6b5f54f676d048a23 = $(`&lt;div id=&quot;html_70bc3c29bfe280a6b5f54f676d048a23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.196             latitude:31.7848             pred_result:45.023284912109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9538fae916dd7cd16eb6f8a1f5a09a6f.setContent(html_70bc3c29bfe280a6b5f54f676d048a23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6138693f85a2cdddefcba5447e17ada.bindPopup(popup_9538fae916dd7cd16eb6f8a1f5a09a6f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_488c58a4e6b6e86e6cd7280f9b728fe9 = L.circleMarker(\\n\",\n       \"                [31.8766, 117.307],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4bc4fcf6c7db987bdf8beafa85c5196f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f68130b54ba645d161a3df66168e274 = $(`&lt;div id=&quot;html_1f68130b54ba645d161a3df66168e274&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.307             latitude:31.8766             pred_result:41.85696029663086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4bc4fcf6c7db987bdf8beafa85c5196f.setContent(html_1f68130b54ba645d161a3df66168e274);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_488c58a4e6b6e86e6cd7280f9b728fe9.bindPopup(popup_4bc4fcf6c7db987bdf8beafa85c5196f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1845473ff5791cbc0a592c01350caba9 = L.circleMarker(\\n\",\n       \"                [31.8706, 117.259],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f48e850ea47450e0f8975fc7f0e33cdc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_589ad474feff26e914f30bb6f1403356 = $(`&lt;div id=&quot;html_589ad474feff26e914f30bb6f1403356&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.259             latitude:31.8706             pred_result:42.495731353759766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f48e850ea47450e0f8975fc7f0e33cdc.setContent(html_589ad474feff26e914f30bb6f1403356);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1845473ff5791cbc0a592c01350caba9.bindPopup(popup_f48e850ea47450e0f8975fc7f0e33cdc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19ba88518dbe4bbb2681a8c85c604ba5 = L.circleMarker(\\n\",\n       \"                [31.9051, 117.16],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_740bd34f14044d6fbe784e343de50170 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d9e6ccf39e308357ec3d7a91dd8392f = $(`&lt;div id=&quot;html_0d9e6ccf39e308357ec3d7a91dd8392f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.16             latitude:31.9051             pred_result:42.402957916259766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_740bd34f14044d6fbe784e343de50170.setContent(html_0d9e6ccf39e308357ec3d7a91dd8392f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19ba88518dbe4bbb2681a8c85c604ba5.bindPopup(popup_740bd34f14044d6fbe784e343de50170)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aec8fde09501d04569873de1c434d7b0 = L.circleMarker(\\n\",\n       \"                [31.8572, 117.25],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f0eb070f836511854aa9c404ca43085 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_883fddeb3a0cf3996a433915a6d809c1 = $(`&lt;div id=&quot;html_883fddeb3a0cf3996a433915a6d809c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.25             latitude:31.8572             pred_result:41.29269790649414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f0eb070f836511854aa9c404ca43085.setContent(html_883fddeb3a0cf3996a433915a6d809c1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aec8fde09501d04569873de1c434d7b0.bindPopup(popup_0f0eb070f836511854aa9c404ca43085)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff65cf23b87eef47922aa122199bc3a7 = L.circleMarker(\\n\",\n       \"                [31.9438, 117.266],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d3f56212e757e821b25d2c8fc756ae7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a51478f531e5e336e137032e04eb2977 = $(`&lt;div id=&quot;html_a51478f531e5e336e137032e04eb2977&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.266             latitude:31.9438             pred_result:40.42668151855469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d3f56212e757e821b25d2c8fc756ae7.setContent(html_a51478f531e5e336e137032e04eb2977);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff65cf23b87eef47922aa122199bc3a7.bindPopup(popup_1d3f56212e757e821b25d2c8fc756ae7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4391cdea74005c9bc7a7740f46d9da9 = L.circleMarker(\\n\",\n       \"                [31.8585, 117.336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56ad9bf4728de938ca532b7ee0d78c4d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74495af5b08dac660f6984ca4af21b50 = $(`&lt;div id=&quot;html_74495af5b08dac660f6984ca4af21b50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.336             latitude:31.8585             pred_result:42.14352035522461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56ad9bf4728de938ca532b7ee0d78c4d.setContent(html_74495af5b08dac660f6984ca4af21b50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4391cdea74005c9bc7a7740f46d9da9.bindPopup(popup_56ad9bf4728de938ca532b7ee0d78c4d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d65372bbc70ed32273b3c5f40251a50c = L.circleMarker(\\n\",\n       \"                [31.7956, 117.302],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46f61ade3739b4a93d302910e837597d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80a71104e53a92daafe0a87fe9df3fed = $(`&lt;div id=&quot;html_80a71104e53a92daafe0a87fe9df3fed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.302             latitude:31.7956             pred_result:46.88664245605469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46f61ade3739b4a93d302910e837597d.setContent(html_80a71104e53a92daafe0a87fe9df3fed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d65372bbc70ed32273b3c5f40251a50c.bindPopup(popup_46f61ade3739b4a93d302910e837597d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e11583fc544b2dae1bb1ad6aa9081fe = L.circleMarker(\\n\",\n       \"                [31.7386, 117.278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_615ab09ea50ed2a79652ae78d7bef44b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35cfdb3fd6947f34943bc12d1d3957ae = $(`&lt;div id=&quot;html_35cfdb3fd6947f34943bc12d1d3957ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.278             latitude:31.7386             pred_result:44.36609649658203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_615ab09ea50ed2a79652ae78d7bef44b.setContent(html_35cfdb3fd6947f34943bc12d1d3957ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e11583fc544b2dae1bb1ad6aa9081fe.bindPopup(popup_615ab09ea50ed2a79652ae78d7bef44b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0626a63638e93ac55d54a2fa4e06ddf4 = L.circleMarker(\\n\",\n       \"                [31.8516, 117.124],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ab35f9c379776fc4af62ca547ece0ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_acff19bbb7db0e8bc202e01dfc070c0f = $(`&lt;div id=&quot;html_acff19bbb7db0e8bc202e01dfc070c0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.124             latitude:31.8516             pred_result:43.14405822753906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ab35f9c379776fc4af62ca547ece0ed.setContent(html_acff19bbb7db0e8bc202e01dfc070c0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0626a63638e93ac55d54a2fa4e06ddf4.bindPopup(popup_7ab35f9c379776fc4af62ca547ece0ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a04a29b4dd48bb1c4959ee00e971bdf = L.circleMarker(\\n\",\n       \"                [26.0542, 119.389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8b64c4602eb9a51cb785e5f3c293299 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a6827cd5f91a90a63c8661b9bd28701 = $(`&lt;div id=&quot;html_3a6827cd5f91a90a63c8661b9bd28701&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.389             latitude:26.0542             pred_result:17.924524307250977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8b64c4602eb9a51cb785e5f3c293299.setContent(html_3a6827cd5f91a90a63c8661b9bd28701);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a04a29b4dd48bb1c4959ee00e971bdf.bindPopup(popup_f8b64c4602eb9a51cb785e5f3c293299)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae1051840173003551c93295406708e2 = L.circleMarker(\\n\",\n       \"                [26.0392, 119.303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fe1afb005c783a63883f6d634a5e070a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c150444b5957461747ffda20bcf4e3a = $(`&lt;div id=&quot;html_1c150444b5957461747ffda20bcf4e3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.303             latitude:26.0392             pred_result:19.352750778198242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fe1afb005c783a63883f6d634a5e070a.setContent(html_1c150444b5957461747ffda20bcf4e3a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae1051840173003551c93295406708e2.bindPopup(popup_fe1afb005c783a63883f6d634a5e070a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a41611b509c58c15bb209a0e19ec9ca8 = L.circleMarker(\\n\",\n       \"                [26.1092, 119.299],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_908883c221e5ddba2c3b62945360e3b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_087fecf71d237ea43e0b72d2c3e4d8a6 = $(`&lt;div id=&quot;html_087fecf71d237ea43e0b72d2c3e4d8a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.299             latitude:26.1092             pred_result:22.485774993896484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_908883c221e5ddba2c3b62945360e3b0.setContent(html_087fecf71d237ea43e0b72d2c3e4d8a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a41611b509c58c15bb209a0e19ec9ca8.bindPopup(popup_908883c221e5ddba2c3b62945360e3b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7db5fa8ed251677263d1633c89f1b5fb = L.circleMarker(\\n\",\n       \"                [26.0797, 119.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66e836943cdee0da63aff6b40fabba59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_656eef4c6077ca42378611abf3a32db6 = $(`&lt;div id=&quot;html_656eef4c6077ca42378611abf3a32db6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.268             latitude:26.0797             pred_result:21.648283004760742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66e836943cdee0da63aff6b40fabba59.setContent(html_656eef4c6077ca42378611abf3a32db6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7db5fa8ed251677263d1633c89f1b5fb.bindPopup(popup_66e836943cdee0da63aff6b40fabba59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61e4eb951b6bef74a65782435253bc4d = L.circleMarker(\\n\",\n       \"                [26.0753, 119.315],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19baffb0d247cf7f1806f3e667408360 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff5198537dccd4778cc9b55bf9cefab6 = $(`&lt;div id=&quot;html_ff5198537dccd4778cc9b55bf9cefab6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.315             latitude:26.0753             pred_result:21.349109649658203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19baffb0d247cf7f1806f3e667408360.setContent(html_ff5198537dccd4778cc9b55bf9cefab6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61e4eb951b6bef74a65782435253bc4d.bindPopup(popup_19baffb0d247cf7f1806f3e667408360)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b86a7c1e232b1e5e70e175080705e7ba = L.circleMarker(\\n\",\n       \"                [24.81805556, 118.1569444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6d2878a8f02936fafe7afbf65a6b35d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb3ad78d3a4b8d5cc8220c8482a82e2b = $(`&lt;div id=&quot;html_bb3ad78d3a4b8d5cc8220c8482a82e2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1569444             latitude:24.81805556             pred_result:21.72829246520996             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6d2878a8f02936fafe7afbf65a6b35d5.setContent(html_bb3ad78d3a4b8d5cc8220c8482a82e2b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b86a7c1e232b1e5e70e175080705e7ba.bindPopup(popup_6d2878a8f02936fafe7afbf65a6b35d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_375211c5c36cfb68a1bcce85254b84c8 = L.circleMarker(\\n\",\n       \"                [24.44583333, 118.0636111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_619aec313926fe262793ce69336f7d01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_368f31d6e43848e9799e4d6fe95efe6b = $(`&lt;div id=&quot;html_368f31d6e43848e9799e4d6fe95efe6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0636111             latitude:24.44583333             pred_result:22.512800216674805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_619aec313926fe262793ce69336f7d01.setContent(html_368f31d6e43848e9799e4d6fe95efe6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_375211c5c36cfb68a1bcce85254b84c8.bindPopup(popup_619aec313926fe262793ce69336f7d01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82805c8811c698f5050fbc5eab3b4e5b = L.circleMarker(\\n\",\n       \"                [28.6844, 115.893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2075a197bef73e1c347f9471c833bdc9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06d10f07fb80ee8d5a1bbc56380174fc = $(`&lt;div id=&quot;html_06d10f07fb80ee8d5a1bbc56380174fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.893             latitude:28.6844             pred_result:45.6691780090332             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2075a197bef73e1c347f9471c833bdc9.setContent(html_06d10f07fb80ee8d5a1bbc56380174fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82805c8811c698f5050fbc5eab3b4e5b.bindPopup(popup_2075a197bef73e1c347f9471c833bdc9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0286325297f80bb689c7c69777e18857 = L.circleMarker(\\n\",\n       \"                [28.6839, 115.8886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d23626b2beb004a2413d3a4083ebcfca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5997aa074b4118043f01b14efe2d0e57 = $(`&lt;div id=&quot;html_5997aa074b4118043f01b14efe2d0e57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8886             latitude:28.6839             pred_result:45.34053039550781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d23626b2beb004a2413d3a4083ebcfca.setContent(html_5997aa074b4118043f01b14efe2d0e57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0286325297f80bb689c7c69777e18857.bindPopup(popup_d23626b2beb004a2413d3a4083ebcfca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16c3c9539e18659b28a8d1c65ffcd494 = L.circleMarker(\\n\",\n       \"                [28.7442, 115.813],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f939106c3ebe6c948644fd4eca659af3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_deeb1ac20b21429843b067ded802b27f = $(`&lt;div id=&quot;html_deeb1ac20b21429843b067ded802b27f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.813             latitude:28.7442             pred_result:45.637420654296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f939106c3ebe6c948644fd4eca659af3.setContent(html_deeb1ac20b21429843b067ded802b27f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16c3c9539e18659b28a8d1c65ffcd494.bindPopup(popup_f939106c3ebe6c948644fd4eca659af3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e67f2b47acd656412b732bb0d44e70b = L.circleMarker(\\n\",\n       \"                [28.6969, 115.973],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55749809a6dfe33ae00e590afef0653d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d700f1e0447ea4f9c8a8ab693497aa51 = $(`&lt;div id=&quot;html_d700f1e0447ea4f9c8a8ab693497aa51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.973             latitude:28.6969             pred_result:45.1990852355957             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55749809a6dfe33ae00e590afef0653d.setContent(html_d700f1e0447ea4f9c8a8ab693497aa51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e67f2b47acd656412b732bb0d44e70b.bindPopup(popup_55749809a6dfe33ae00e590afef0653d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b01580ecce54b1b60c0d38f97dd26de4 = L.circleMarker(\\n\",\n       \"                [28.6869, 115.852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f743d98ce4d3696dda4e9777292ac2b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01567fabd544b3891330f2107a9f9d50 = $(`&lt;div id=&quot;html_01567fabd544b3891330f2107a9f9d50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.852             latitude:28.6869             pred_result:45.7540397644043             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f743d98ce4d3696dda4e9777292ac2b4.setContent(html_01567fabd544b3891330f2107a9f9d50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b01580ecce54b1b60c0d38f97dd26de4.bindPopup(popup_f743d98ce4d3696dda4e9777292ac2b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0156d5ad205442dbd989b1a2646f0003 = L.circleMarker(\\n\",\n       \"                [28.6425, 115.892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc2b3f57efb4d170ba8a05c34be3c7c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ab91e56e7dad11924fda9f9eea040d6 = $(`&lt;div id=&quot;html_8ab91e56e7dad11924fda9f9eea040d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.892             latitude:28.6425             pred_result:45.29484558105469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc2b3f57efb4d170ba8a05c34be3c7c6.setContent(html_8ab91e56e7dad11924fda9f9eea040d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0156d5ad205442dbd989b1a2646f0003.bindPopup(popup_bc2b3f57efb4d170ba8a05c34be3c7c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eaed1f3aca0be345fff69f2c9f434ef8 = L.circleMarker(\\n\",\n       \"                [28.7994, 115.742],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd1b6e6fa35d7272663833c892d90d3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd9accf773fa055e902b98e8979c527c = $(`&lt;div id=&quot;html_cd9accf773fa055e902b98e8979c527c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.742             latitude:28.7994             pred_result:44.67236328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd1b6e6fa35d7272663833c892d90d3b.setContent(html_cd9accf773fa055e902b98e8979c527c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eaed1f3aca0be345fff69f2c9f434ef8.bindPopup(popup_dd1b6e6fa35d7272663833c892d90d3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49dbe8b9fbfd8093cf35c75db03af1a4 = L.circleMarker(\\n\",\n       \"                [28.6844, 115.931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d1dd84295063376537f7bbfc8b57177 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b0cef1c50308a0d7b14a54cb3cd40dd = $(`&lt;div id=&quot;html_5b0cef1c50308a0d7b14a54cb3cd40dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.931             latitude:28.6844             pred_result:45.33253479003906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d1dd84295063376537f7bbfc8b57177.setContent(html_5b0cef1c50308a0d7b14a54cb3cd40dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49dbe8b9fbfd8093cf35c75db03af1a4.bindPopup(popup_8d1dd84295063376537f7bbfc8b57177)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac117d6a0894c5e100d1fa116029c4a0 = L.circleMarker(\\n\",\n       \"                [36.6114, 116.988],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90ec8b9ae2bb4a525823231269af5639 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7bea5bc37a626b1f5aee56eedf755912 = $(`&lt;div id=&quot;html_7bea5bc37a626b1f5aee56eedf755912&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.988             latitude:36.6114             pred_result:51.86316680908203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90ec8b9ae2bb4a525823231269af5639.setContent(html_7bea5bc37a626b1f5aee56eedf755912);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac117d6a0894c5e100d1fa116029c4a0.bindPopup(popup_90ec8b9ae2bb4a525823231269af5639)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fae0173889c44f80a6d4bd44d45c1b4 = L.circleMarker(\\n\",\n       \"                [36.67, 116.93],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd016eed001a66d4075996c8e2dca799 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f909477b516f7ff1cb901a55fcae32c = $(`&lt;div id=&quot;html_2f909477b516f7ff1cb901a55fcae32c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.93             latitude:36.67             pred_result:52.70541763305664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd016eed001a66d4075996c8e2dca799.setContent(html_2f909477b516f7ff1cb901a55fcae32c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fae0173889c44f80a6d4bd44d45c1b4.bindPopup(popup_bd016eed001a66d4075996c8e2dca799)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3708e134cccc96369818dfc3701dfb4f = L.circleMarker(\\n\",\n       \"                [36.6739, 117.114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_356debb888989cf37b1aacb3031736f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9996e1a19eec30997b7f2dbbdfde17c9 = $(`&lt;div id=&quot;html_9996e1a19eec30997b7f2dbbdfde17c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.114             latitude:36.6739             pred_result:50.38234329223633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_356debb888989cf37b1aacb3031736f8.setContent(html_9996e1a19eec30997b7f2dbbdfde17c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3708e134cccc96369818dfc3701dfb4f.bindPopup(popup_356debb888989cf37b1aacb3031736f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_406109d72a678dddc3fdc410335808ed = L.circleMarker(\\n\",\n       \"                [36.6872, 116.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3286ede83ce29151a1fc297f44c87ab3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48536835d297adccb34a5ba2fd371502 = $(`&lt;div id=&quot;html_48536835d297adccb34a5ba2fd371502&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.989             latitude:36.6872             pred_result:52.259986877441406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3286ede83ce29151a1fc297f44c87ab3.setContent(html_48536835d297adccb34a5ba2fd371502);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_406109d72a678dddc3fdc410335808ed.bindPopup(popup_3286ede83ce29151a1fc297f44c87ab3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c66dcec1b145d3e261ef5720a1dca6b5 = L.circleMarker(\\n\",\n       \"                [36.6868, 117.0684],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4f9a64de98df54014c02057825b77ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85911b260a1c5c8401eecd6eaac7f260 = $(`&lt;div id=&quot;html_85911b260a1c5c8401eecd6eaac7f260&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0684             latitude:36.6868             pred_result:51.237762451171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4f9a64de98df54014c02057825b77ff.setContent(html_85911b260a1c5c8401eecd6eaac7f260);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c66dcec1b145d3e261ef5720a1dca6b5.bindPopup(popup_c4f9a64de98df54014c02057825b77ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8780de776f3f13357c725588910d1c7c = L.circleMarker(\\n\",\n       \"                [36.6489, 116.943],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7538451b6dbab1ef97e2014a3e7481d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f6be5b3d5bf92ad577e17598330f3c5 = $(`&lt;div id=&quot;html_1f6be5b3d5bf92ad577e17598330f3c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.943             latitude:36.6489             pred_result:52.80171203613281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7538451b6dbab1ef97e2014a3e7481d6.setContent(html_1f6be5b3d5bf92ad577e17598330f3c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8780de776f3f13357c725588910d1c7c.bindPopup(popup_7538451b6dbab1ef97e2014a3e7481d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d3b45ae99abac06a398e99271b4f9db = L.circleMarker(\\n\",\n       \"                [36.6622, 117.049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed170fd7d72463f4107921d03d67ff62 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e0eba0dee3f33dc210fe1e349f355b6 = $(`&lt;div id=&quot;html_0e0eba0dee3f33dc210fe1e349f355b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.049             latitude:36.6622             pred_result:52.229705810546875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed170fd7d72463f4107921d03d67ff62.setContent(html_0e0eba0dee3f33dc210fe1e349f355b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d3b45ae99abac06a398e99271b4f9db.bindPopup(popup_ed170fd7d72463f4107921d03d67ff62)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b51f79eac14ba6e380397d4b8983b132 = L.circleMarker(\\n\",\n       \"                [36.5336, 116.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0595ac0f808463ce4d7d0a068f9afe4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c784176c169dca1f09662036a511b7f5 = $(`&lt;div id=&quot;html_c784176c169dca1f09662036a511b7f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.734             latitude:36.5336             pred_result:55.02979278564453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0595ac0f808463ce4d7d0a068f9afe4.setContent(html_c784176c169dca1f09662036a511b7f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b51f79eac14ba6e380397d4b8983b132.bindPopup(popup_f0595ac0f808463ce4d7d0a068f9afe4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae5c93ed1983f8d2fd5fce7728c89e3a = L.circleMarker(\\n\",\n       \"                [36.1851, 120.3905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22a4de6d0aa011f07fbd194ab2eca47f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90488b8df6517d7c471d8deb7bddc5d8 = $(`&lt;div id=&quot;html_90488b8df6517d7c471d8deb7bddc5d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.3905             latitude:36.1851             pred_result:19.20759391784668             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22a4de6d0aa011f07fbd194ab2eca47f.setContent(html_90488b8df6517d7c471d8deb7bddc5d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae5c93ed1983f8d2fd5fce7728c89e3a.bindPopup(popup_22a4de6d0aa011f07fbd194ab2eca47f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a82a9ba2230a8950a3e7d7d369abd469 = L.circleMarker(\\n\",\n       \"                [36.3083, 120.1964],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08348180f22dad6580cf4b04940cba2e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_154b856e68b7df61ce8d335597d0a6d7 = $(`&lt;div id=&quot;html_154b856e68b7df61ce8d335597d0a6d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1964             latitude:36.3083             pred_result:17.48196792602539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08348180f22dad6580cf4b04940cba2e.setContent(html_154b856e68b7df61ce8d335597d0a6d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a82a9ba2230a8950a3e7d7d369abd469.bindPopup(popup_08348180f22dad6580cf4b04940cba2e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe3b116f41cc1d7a312e4526ce2684f9 = L.circleMarker(\\n\",\n       \"                [36.2403, 120.4001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3f3eec23f4d8376e21ab31e314a571f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4afe2eda5c64d2397da47a8419c91f51 = $(`&lt;div id=&quot;html_4afe2eda5c64d2397da47a8419c91f51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4001             latitude:36.2403             pred_result:18.949176788330078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3f3eec23f4d8376e21ab31e314a571f.setContent(html_4afe2eda5c64d2397da47a8419c91f51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe3b116f41cc1d7a312e4526ce2684f9.bindPopup(popup_d3f3eec23f4d8376e21ab31e314a571f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8faf08bd6ed306926e06258157c082a = L.circleMarker(\\n\",\n       \"                [34.7545, 113.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_322481ff82d4c3750c14c61b087c5f18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_125eb3e44151ee188530ddbe365a221e = $(`&lt;div id=&quot;html_125eb3e44151ee188530ddbe365a221e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.681             latitude:34.7545             pred_result:59.07963562011719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_322481ff82d4c3750c14c61b087c5f18.setContent(html_125eb3e44151ee188530ddbe365a221e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8faf08bd6ed306926e06258157c082a.bindPopup(popup_322481ff82d4c3750c14c61b087c5f18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3c763e6d6b381c64f58273d2f24f032 = L.circleMarker(\\n\",\n       \"                [34.7745, 113.641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fe69b67234254e1c7b785ca4d63de94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae1791f1add0990fd7e329d7c0045595 = $(`&lt;div id=&quot;html_ae1791f1add0990fd7e329d7c0045595&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.641             latitude:34.7745             pred_result:59.92035675048828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fe69b67234254e1c7b785ca4d63de94.setContent(html_ae1791f1add0990fd7e329d7c0045595);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3c763e6d6b381c64f58273d2f24f032.bindPopup(popup_8fe69b67234254e1c7b785ca4d63de94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_418a54110964e452b5172fbb5025d9d4 = L.circleMarker(\\n\",\n       \"                [34.8019, 113.675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5cd982280df578e2c1426cc6986f3032 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cba69500a6b3ee9d223993ea04b3f050 = $(`&lt;div id=&quot;html_cba69500a6b3ee9d223993ea04b3f050&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.675             latitude:34.8019             pred_result:59.670040130615234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5cd982280df578e2c1426cc6986f3032.setContent(html_cba69500a6b3ee9d223993ea04b3f050);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_418a54110964e452b5172fbb5025d9d4.bindPopup(popup_5cd982280df578e2c1426cc6986f3032)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf8958dab99500b85560d6ffdecc7a38 = L.circleMarker(\\n\",\n       \"                [34.802, 113.564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b34e62a32dc28eea952a836050eeb392 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eccf3f3ef55dedbdeb4723ecc401f8d5 = $(`&lt;div id=&quot;html_eccf3f3ef55dedbdeb4723ecc401f8d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.564             latitude:34.802             pred_result:59.727699279785156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b34e62a32dc28eea952a836050eeb392.setContent(html_eccf3f3ef55dedbdeb4723ecc401f8d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf8958dab99500b85560d6ffdecc7a38.bindPopup(popup_b34e62a32dc28eea952a836050eeb392)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_873a32417c1defe25c00f46c611f5282 = L.circleMarker(\\n\",\n       \"                [34.7187, 113.727],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_976fe8d0588c293bdf4020b787926249 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_963ba871576ebcb6fd8d388d160956c8 = $(`&lt;div id=&quot;html_963ba871576ebcb6fd8d388d160956c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.727             latitude:34.7187             pred_result:58.824867248535156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_976fe8d0588c293bdf4020b787926249.setContent(html_963ba871576ebcb6fd8d388d160956c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_873a32417c1defe25c00f46c611f5282.bindPopup(popup_976fe8d0588c293bdf4020b787926249)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f10bc98d82ab883be919eeea7816d7f = L.circleMarker(\\n\",\n       \"                [34.719, 113.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac88e42063b86e3d921e9b858332e0db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8fa120b1d6d300ee9a9c6749695ad728 = $(`&lt;div id=&quot;html_8fa120b1d6d300ee9a9c6749695ad728&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.734             latitude:34.719             pred_result:58.79448318481445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac88e42063b86e3d921e9b858332e0db.setContent(html_8fa120b1d6d300ee9a9c6749695ad728);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f10bc98d82ab883be919eeea7816d7f.bindPopup(popup_ac88e42063b86e3d921e9b858332e0db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17dd4127d384641fcc41d1cb31511703 = L.circleMarker(\\n\",\n       \"                [34.7496, 113.5991],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_acb4a5ef5a82794fc04a19a66cca92b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_afc807c685184e3dc26c1baf31e57fa9 = $(`&lt;div id=&quot;html_afc807c685184e3dc26c1baf31e57fa9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5991             latitude:34.7496             pred_result:59.062747955322266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_acb4a5ef5a82794fc04a19a66cca92b0.setContent(html_afc807c685184e3dc26c1baf31e57fa9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17dd4127d384641fcc41d1cb31511703.bindPopup(popup_acb4a5ef5a82794fc04a19a66cca92b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_651915a1f348db3fc15ecda2de585caa = L.circleMarker(\\n\",\n       \"                [34.7538, 113.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5371fbd0843459d89daaed5b55833fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31cd6c1d410c71910578b6bb6231db0c = $(`&lt;div id=&quot;html_31cd6c1d410c71910578b6bb6231db0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6356             latitude:34.7538             pred_result:59.382591247558594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5371fbd0843459d89daaed5b55833fe.setContent(html_31cd6c1d410c71910578b6bb6231db0c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_651915a1f348db3fc15ecda2de585caa.bindPopup(popup_e5371fbd0843459d89daaed5b55833fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f19592dc601cc351a919baf92c6bce5c = L.circleMarker(\\n\",\n       \"                [34.9162, 113.6113],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e504969fcdff38314e9129b12b0d75a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e4558e146ed902ce9b6551bee6e4a09 = $(`&lt;div id=&quot;html_3e4558e146ed902ce9b6551bee6e4a09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6113             latitude:34.9162             pred_result:63.17396926879883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e504969fcdff38314e9129b12b0d75a.setContent(html_3e4558e146ed902ce9b6551bee6e4a09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f19592dc601cc351a919baf92c6bce5c.bindPopup(popup_3e504969fcdff38314e9129b12b0d75a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bd9d6232f515f0a43cc4a153dafbe29 = L.circleMarker(\\n\",\n       \"                [30.5719, 114.3672],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_998395812cfb6944e2fe88b624a00aac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57c7fc70b305d22e58b5347e4b8bee70 = $(`&lt;div id=&quot;html_57c7fc70b305d22e58b5347e4b8bee70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3672             latitude:30.5719             pred_result:54.9393310546875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_998395812cfb6944e2fe88b624a00aac.setContent(html_57c7fc70b305d22e58b5347e4b8bee70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bd9d6232f515f0a43cc4a153dafbe29.bindPopup(popup_998395812cfb6944e2fe88b624a00aac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be6439e781b2721bcce407a3a4b58dd9 = L.circleMarker(\\n\",\n       \"                [30.5514, 114.2511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_198b7a2edb2f6b86878e3b3ec65abc94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00079dd43a37ced8253c2a6f847c637d = $(`&lt;div id=&quot;html_00079dd43a37ced8253c2a6f847c637d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2511             latitude:30.5514             pred_result:54.023048400878906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_198b7a2edb2f6b86878e3b3ec65abc94.setContent(html_00079dd43a37ced8253c2a6f847c637d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be6439e781b2721bcce407a3a4b58dd9.bindPopup(popup_198b7a2edb2f6b86878e3b3ec65abc94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71d91387b08bb1ee4185be2410cb6493 = L.circleMarker(\\n\",\n       \"                [30.6197, 114.2836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1285a6f0af87225f631a1655f5ac1509 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a41fe74d939d17b4f6b3d317904e30a8 = $(`&lt;div id=&quot;html_a41fe74d939d17b4f6b3d317904e30a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2836             latitude:30.6197             pred_result:54.02301025390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1285a6f0af87225f631a1655f5ac1509.setContent(html_a41fe74d939d17b4f6b3d317904e30a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71d91387b08bb1ee4185be2410cb6493.bindPopup(popup_1285a6f0af87225f631a1655f5ac1509)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2cfa52f0e83fa0a952d1de72725c66a2 = L.circleMarker(\\n\",\n       \"                [30.5494, 114.3006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d71175c7b6e27144f8f8f0ac73b202a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8396f95d6f2d3149eddbb5cfaa944024 = $(`&lt;div id=&quot;html_8396f95d6f2d3149eddbb5cfaa944024&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3006             latitude:30.5494             pred_result:54.6694450378418             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d71175c7b6e27144f8f8f0ac73b202a3.setContent(html_8396f95d6f2d3149eddbb5cfaa944024);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2cfa52f0e83fa0a952d1de72725c66a2.bindPopup(popup_d71175c7b6e27144f8f8f0ac73b202a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73af1bac26bf804523c190a7945b00fc = L.circleMarker(\\n\",\n       \"                [30.6103, 114.4272],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c960b857e2597b3549b4c547d55d4236 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5483cb56fae4f7ada5627465b68f6e7d = $(`&lt;div id=&quot;html_5483cb56fae4f7ada5627465b68f6e7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4272             latitude:30.6103             pred_result:53.459449768066406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c960b857e2597b3549b4c547d55d4236.setContent(html_5483cb56fae4f7ada5627465b68f6e7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73af1bac26bf804523c190a7945b00fc.bindPopup(popup_c960b857e2597b3549b4c547d55d4236)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26ed19be851565055b4b034d2d66db44 = L.circleMarker(\\n\",\n       \"                [30.4753, 114.1525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f12a2dd2119fd0bef3a94aa53693c136 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73871fc97bee744a2bef21b6b0c85df3 = $(`&lt;div id=&quot;html_73871fc97bee744a2bef21b6b0c85df3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1525             latitude:30.4753             pred_result:55.452117919921875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f12a2dd2119fd0bef3a94aa53693c136.setContent(html_73871fc97bee744a2bef21b6b0c85df3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26ed19be851565055b4b034d2d66db44.bindPopup(popup_f12a2dd2119fd0bef3a94aa53693c136)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59c086dc0e307ad1a4bea0a791483287 = L.circleMarker(\\n\",\n       \"                [30.5947, 114.3008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d7efa62a39377e92b6015da10f764d43 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb0714f87caeb690f3661f1cd6746b68 = $(`&lt;div id=&quot;html_fb0714f87caeb690f3661f1cd6746b68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3008             latitude:30.5947             pred_result:54.12015914916992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d7efa62a39377e92b6015da10f764d43.setContent(html_fb0714f87caeb690f3661f1cd6746b68);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59c086dc0e307ad1a4bea0a791483287.bindPopup(popup_d7efa62a39377e92b6015da10f764d43)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a0dc2d074df2e2ec8a89b3d582d7659 = L.circleMarker(\\n\",\n       \"                [30.4822, 114.3894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6d479191c9f17f7f2ba594d006fa18e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4aff782ed506b0e357c7fc86673e6dc3 = $(`&lt;div id=&quot;html_4aff782ed506b0e357c7fc86673e6dc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3894             latitude:30.4822             pred_result:55.497501373291016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6d479191c9f17f7f2ba594d006fa18e.setContent(html_4aff782ed506b0e357c7fc86673e6dc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a0dc2d074df2e2ec8a89b3d582d7659.bindPopup(popup_a6d479191c9f17f7f2ba594d006fa18e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd9adcbfec423b7a1bf2befaa4ff4cd0 = L.circleMarker(\\n\",\n       \"                [30.6414, 114.2131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_987a37e1dc087e08099be202e145d76e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e65715c90815b4347826821f58622006 = $(`&lt;div id=&quot;html_e65715c90815b4347826821f58622006&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2131             latitude:30.6414             pred_result:53.58586120605469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_987a37e1dc087e08099be202e145d76e.setContent(html_e65715c90815b4347826821f58622006);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd9adcbfec423b7a1bf2befaa4ff4cd0.bindPopup(popup_987a37e1dc087e08099be202e145d76e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7027c4b11707a2e924f0a52641ba524 = L.circleMarker(\\n\",\n       \"                [30.2997, 113.8531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3df186a70c1bb483879462c666c0a398 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1d63da9fdf29187f41500db6e70a94f = $(`&lt;div id=&quot;html_f1d63da9fdf29187f41500db6e70a94f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8531             latitude:30.2997             pred_result:55.48533630371094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3df186a70c1bb483879462c666c0a398.setContent(html_f1d63da9fdf29187f41500db6e70a94f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7027c4b11707a2e924f0a52641ba524.bindPopup(popup_3df186a70c1bb483879462c666c0a398)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_023227af5912a435aa95bb45379be0d5 = L.circleMarker(\\n\",\n       \"                [28.2325, 113.0833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d255232e2075ca65c1bb5e78c9aa9cc3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_700bf3f09d65433082648c6f56e87b1c = $(`&lt;div id=&quot;html_700bf3f09d65433082648c6f56e87b1c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0833             latitude:28.2325             pred_result:44.2243537902832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d255232e2075ca65c1bb5e78c9aa9cc3.setContent(html_700bf3f09d65433082648c6f56e87b1c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_023227af5912a435aa95bb45379be0d5.bindPopup(popup_d255232e2075ca65c1bb5e78c9aa9cc3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95178b18bc85a3f749c398518f80ba7f = L.circleMarker(\\n\",\n       \"                [28.2189, 112.8872],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d2f4950efb7be3a56576ab47c8268104 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a627f4cf778d83a65c2cc3f7336a9099 = $(`&lt;div id=&quot;html_a627f4cf778d83a65c2cc3f7336a9099&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8872             latitude:28.2189             pred_result:44.071739196777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d2f4950efb7be3a56576ab47c8268104.setContent(html_a627f4cf778d83a65c2cc3f7336a9099);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95178b18bc85a3f749c398518f80ba7f.bindPopup(popup_d2f4950efb7be3a56576ab47c8268104)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_35395c6a55f48b69d0b15d6820687ef4 = L.circleMarker(\\n\",\n       \"                [28.2053, 113.0792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19002c52d889452ff47cb5b0ebc5eb2b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d3fc04acd7203224a7e4f18254c94a7 = $(`&lt;div id=&quot;html_7d3fc04acd7203224a7e4f18254c94a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0792             latitude:28.2053             pred_result:44.30306625366211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19002c52d889452ff47cb5b0ebc5eb2b.setContent(html_7d3fc04acd7203224a7e4f18254c94a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_35395c6a55f48b69d0b15d6820687ef4.bindPopup(popup_19002c52d889452ff47cb5b0ebc5eb2b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d17364a0ddfc572798fd6efad9be972f = L.circleMarker(\\n\",\n       \"                [28.19, 112.9394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb36308db7bde55a7fe5acda2dfead3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2878e9d3e0df531bc7cfaf8ad93773d9 = $(`&lt;div id=&quot;html_2878e9d3e0df531bc7cfaf8ad93773d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9394             latitude:28.19             pred_result:44.06472396850586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb36308db7bde55a7fe5acda2dfead3f.setContent(html_2878e9d3e0df531bc7cfaf8ad93773d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d17364a0ddfc572798fd6efad9be972f.bindPopup(popup_bb36308db7bde55a7fe5acda2dfead3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d23c44d60f0616c85687c6dc521bd4a = L.circleMarker(\\n\",\n       \"                [28.1442, 112.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_482ddbd2fca108fa90134c2452fadb76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_967dbe9d09265f7961821e7a29bc644d = $(`&lt;div id=&quot;html_967dbe9d09265f7961821e7a29bc644d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9956             latitude:28.1442             pred_result:44.1754264831543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_482ddbd2fca108fa90134c2452fadb76.setContent(html_967dbe9d09265f7961821e7a29bc644d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d23c44d60f0616c85687c6dc521bd4a.bindPopup(popup_482ddbd2fca108fa90134c2452fadb76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4efd54fdc9bcac1cad12d3dec22dafcb = L.circleMarker(\\n\",\n       \"                [28.2597, 112.9792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dee5556718e63c48cebb0f53a03639e5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_219dbda61d0603a6e35eff5d98d06f63 = $(`&lt;div id=&quot;html_219dbda61d0603a6e35eff5d98d06f63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9792             latitude:28.2597             pred_result:44.18145751953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dee5556718e63c48cebb0f53a03639e5.setContent(html_219dbda61d0603a6e35eff5d98d06f63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4efd54fdc9bcac1cad12d3dec22dafcb.bindPopup(popup_dee5556718e63c48cebb0f53a03639e5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7d7b03aad64d1b5b2bb262a0b0fe776 = L.circleMarker(\\n\",\n       \"                [28.1944, 113.0014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f41b66c8321338d69ac3fd96e1da0c31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6f8e82734359025c63a47d2460e5d3c = $(`&lt;div id=&quot;html_c6f8e82734359025c63a47d2460e5d3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0014             latitude:28.1944             pred_result:44.24678039550781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f41b66c8321338d69ac3fd96e1da0c31.setContent(html_c6f8e82734359025c63a47d2460e5d3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7d7b03aad64d1b5b2bb262a0b0fe776.bindPopup(popup_f41b66c8321338d69ac3fd96e1da0c31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_882c2380bcdc30056d7ef2c0c9e048a1 = L.circleMarker(\\n\",\n       \"                [28.1178, 112.9844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e039de3e63840ae28cbf921968070151 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_32b1e35c61eb2ef5cbdc502c2aa87b62 = $(`&lt;div id=&quot;html_32b1e35c61eb2ef5cbdc502c2aa87b62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9844             latitude:28.1178             pred_result:44.00448989868164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e039de3e63840ae28cbf921968070151.setContent(html_32b1e35c61eb2ef5cbdc502c2aa87b62);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_882c2380bcdc30056d7ef2c0c9e048a1.bindPopup(popup_e039de3e63840ae28cbf921968070151)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ca20c65b51681d2e121b839a9420fad = L.circleMarker(\\n\",\n       \"                [28.1308, 112.8908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2b2a320e6f20d92c0e5dbbd0bb92e63 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0438f0a41ec79354dff7f80ef3b11ac3 = $(`&lt;div id=&quot;html_0438f0a41ec79354dff7f80ef3b11ac3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8908             latitude:28.1308             pred_result:44.17774963378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2b2a320e6f20d92c0e5dbbd0bb92e63.setContent(html_0438f0a41ec79354dff7f80ef3b11ac3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ca20c65b51681d2e121b839a9420fad.bindPopup(popup_e2b2a320e6f20d92c0e5dbbd0bb92e63)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44eeced953999a3e6a436c7dcd42401c = L.circleMarker(\\n\",\n       \"                [28.3586, 112.9958],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c0c0dfaaea2fc5e1d1c091093f213a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98f97de9f2fbb36aa6791d58312fbeb1 = $(`&lt;div id=&quot;html_98f97de9f2fbb36aa6791d58312fbeb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9958             latitude:28.3586             pred_result:44.10086441040039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c0c0dfaaea2fc5e1d1c091093f213a5.setContent(html_98f97de9f2fbb36aa6791d58312fbeb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44eeced953999a3e6a436c7dcd42401c.bindPopup(popup_1c0c0dfaaea2fc5e1d1c091093f213a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ecc1283fa16e447ee8d107884ea74101 = L.circleMarker(\\n\",\n       \"                [23.1422, 113.235],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f482e14674f436c298b4fc2106d3d81b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f092c4b7ff6bbc9cfda94861d6f37493 = $(`&lt;div id=&quot;html_f092c4b7ff6bbc9cfda94861d6f37493&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.235             latitude:23.1422             pred_result:34.8410530090332             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f482e14674f436c298b4fc2106d3d81b.setContent(html_f092c4b7ff6bbc9cfda94861d6f37493);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ecc1283fa16e447ee8d107884ea74101.bindPopup(popup_f482e14674f436c298b4fc2106d3d81b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b26f6776cc06e84d9b2f40a256661755 = L.circleMarker(\\n\",\n       \"                [23.105, 113.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f0cd86a01371b053c865d720b6b8fbf9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94f636ba9e3727134544f1da99ff5822 = $(`&lt;div id=&quot;html_94f636ba9e3727134544f1da99ff5822&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.261             latitude:23.105             pred_result:34.445106506347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f0cd86a01371b053c865d720b6b8fbf9.setContent(html_94f636ba9e3727134544f1da99ff5822);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b26f6776cc06e84d9b2f40a256661755.bindPopup(popup_f0cd86a01371b053c865d720b6b8fbf9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f9e68300a0b543da19e89b7fbb4acf3 = L.circleMarker(\\n\",\n       \"                [23.0916, 113.348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40124d14f55ed87f03de12962624ba36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_affc448200069ad522e2d236a14354b9 = $(`&lt;div id=&quot;html_affc448200069ad522e2d236a14354b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.348             latitude:23.0916             pred_result:34.515892028808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40124d14f55ed87f03de12962624ba36.setContent(html_affc448200069ad522e2d236a14354b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f9e68300a0b543da19e89b7fbb4acf3.bindPopup(popup_40124d14f55ed87f03de12962624ba36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84b8db58b9ab44303ff788046c53a3a8 = L.circleMarker(\\n\",\n       \"                [23.105, 113.433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04646a704c07be3467dad8dbb2086a93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c21da9bbddf55a395e1c068daa2f15b = $(`&lt;div id=&quot;html_2c21da9bbddf55a395e1c068daa2f15b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.433             latitude:23.105             pred_result:33.86456298828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04646a704c07be3467dad8dbb2086a93.setContent(html_2c21da9bbddf55a395e1c068daa2f15b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84b8db58b9ab44303ff788046c53a3a8.bindPopup(popup_04646a704c07be3467dad8dbb2086a93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21710e64425b09a980500906e537f73c = L.circleMarker(\\n\",\n       \"                [22.9477, 113.352],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20fc1448957038c79b4379e5ea6bb1dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b5827fb6d8eeb88f7ed11828f0f831e = $(`&lt;div id=&quot;html_1b5827fb6d8eeb88f7ed11828f0f831e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.352             latitude:22.9477             pred_result:33.66450881958008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20fc1448957038c79b4379e5ea6bb1dc.setContent(html_1b5827fb6d8eeb88f7ed11828f0f831e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21710e64425b09a980500906e537f73c.bindPopup(popup_20fc1448957038c79b4379e5ea6bb1dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c3ca704e588df4c96c6b9595a03d47f = L.circleMarker(\\n\",\n       \"                [23.3917, 113.215],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ea23d427a25354639a1009c1fb82245 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f348b991694e6a689acd19eb2ed9438 = $(`&lt;div id=&quot;html_6f348b991694e6a689acd19eb2ed9438&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.215             latitude:23.3917             pred_result:36.140037536621094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ea23d427a25354639a1009c1fb82245.setContent(html_6f348b991694e6a689acd19eb2ed9438);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c3ca704e588df4c96c6b9595a03d47f.bindPopup(popup_9ea23d427a25354639a1009c1fb82245)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06416666bdfdc9077801c165bab3bc78 = L.circleMarker(\\n\",\n       \"                [23.1331, 113.26],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a646943d39021f068fcdc0c43cc3e684 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc30f65514278b2fba4ecbcc4ea4726b = $(`&lt;div id=&quot;html_fc30f65514278b2fba4ecbcc4ea4726b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.26             latitude:23.1331             pred_result:35.69347381591797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a646943d39021f068fcdc0c43cc3e684.setContent(html_fc30f65514278b2fba4ecbcc4ea4726b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06416666bdfdc9077801c165bab3bc78.bindPopup(popup_a646943d39021f068fcdc0c43cc3e684)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c2c3c6c5327416cdd9190478d96667b = L.circleMarker(\\n\",\n       \"                [23.2783, 113.568],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9497db25fa30fec255041831787bc8d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f86c1c00ce8dac696c0798539337010 = $(`&lt;div id=&quot;html_4f86c1c00ce8dac696c0798539337010&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.568             latitude:23.2783             pred_result:35.386539459228516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9497db25fa30fec255041831787bc8d4.setContent(html_4f86c1c00ce8dac696c0798539337010);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c2c3c6c5327416cdd9190478d96667b.bindPopup(popup_9497db25fa30fec255041831787bc8d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49d07816eb9acc9ad7d6bbb3cbc57a6f = L.circleMarker(\\n\",\n       \"                [23.1569, 113.281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fb59bf40e8412511c824949cba46d39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fcea9c3fe4d07ac3902a1814e69fa1e5 = $(`&lt;div id=&quot;html_fcea9c3fe4d07ac3902a1814e69fa1e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.281             latitude:23.1569             pred_result:34.36936569213867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fb59bf40e8412511c824949cba46d39.setContent(html_fcea9c3fe4d07ac3902a1814e69fa1e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49d07816eb9acc9ad7d6bbb3cbc57a6f.bindPopup(popup_8fb59bf40e8412511c824949cba46d39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_136c49335be0e602e31b1b43569fbc7a = L.circleMarker(\\n\",\n       \"                [23.5538, 113.589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dcab84dcccdeb396319ca6796519e462 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf24384758aa3ebe74dfc8bcf4336be6 = $(`&lt;div id=&quot;html_cf24384758aa3ebe74dfc8bcf4336be6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.589             latitude:23.5538             pred_result:36.52411651611328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dcab84dcccdeb396319ca6796519e462.setContent(html_cf24384758aa3ebe74dfc8bcf4336be6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_136c49335be0e602e31b1b43569fbc7a.bindPopup(popup_dcab84dcccdeb396319ca6796519e462)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0bf8be48cbac0ed01418da1c1f4322b = L.circleMarker(\\n\",\n       \"                [22.5545, 114.1063],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0e62ae63a84b8e611cf82828a1ebc4e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e443a4dffd535269c88f64c5167484fb = $(`&lt;div id=&quot;html_e443a4dffd535269c88f64c5167484fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1063             latitude:22.5545             pred_result:23.31805992126465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0e62ae63a84b8e611cf82828a1ebc4e.setContent(html_e443a4dffd535269c88f64c5167484fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0bf8be48cbac0ed01418da1c1f4322b.bindPopup(popup_a0e62ae63a84b8e611cf82828a1ebc4e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2b9272bf276deab0813eb4eabd85dd7 = L.circleMarker(\\n\",\n       \"                [22.5625, 114.117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd941cd2e730932aebbbc40382df883f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7dac40cb7f68247a9a6e51f670fb8ab9 = $(`&lt;div id=&quot;html_7dac40cb7f68247a9a6e51f670fb8ab9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.117             latitude:22.5625             pred_result:22.891185760498047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd941cd2e730932aebbbc40382df883f.setContent(html_7dac40cb7f68247a9a6e51f670fb8ab9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2b9272bf276deab0813eb4eabd85dd7.bindPopup(popup_dd941cd2e730932aebbbc40382df883f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0181142c3fab1c185194f49742026d92 = L.circleMarker(\\n\",\n       \"                [22.5908, 114.263],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ea683804545314229f3734d911ee030 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1f15ba511015251f6530d484b47c27f = $(`&lt;div id=&quot;html_f1f15ba511015251f6530d484b47c27f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.263             latitude:22.5908             pred_result:22.87761116027832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ea683804545314229f3734d911ee030.setContent(html_f1f15ba511015251f6530d484b47c27f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0181142c3fab1c185194f49742026d92.bindPopup(popup_7ea683804545314229f3734d911ee030)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b56815d1155cdfb192c3ab7261b1f7d = L.circleMarker(\\n\",\n       \"                [22.7267, 114.24],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6b9737a987df096b852d18ef8f1b3b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29af1b0f8020726bc271586a3191ac78 = $(`&lt;div id=&quot;html_29af1b0f8020726bc271586a3191ac78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.24             latitude:22.7267             pred_result:25.655315399169922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6b9737a987df096b852d18ef8f1b3b2.setContent(html_29af1b0f8020726bc271586a3191ac78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b56815d1155cdfb192c3ab7261b1f7d.bindPopup(popup_d6b9737a987df096b852d18ef8f1b3b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_651dd95ac88cafb0aa193a241a8fbe21 = L.circleMarker(\\n\",\n       \"                [22.5978, 114.297],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be6567fc594fdac0ee9aabe20e030b6c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5ea43d7afe9194e46112f790439a6af = $(`&lt;div id=&quot;html_c5ea43d7afe9194e46112f790439a6af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.297             latitude:22.5978             pred_result:22.76407241821289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be6567fc594fdac0ee9aabe20e030b6c.setContent(html_c5ea43d7afe9194e46112f790439a6af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_651dd95ac88cafb0aa193a241a8fbe21.bindPopup(popup_be6567fc594fdac0ee9aabe20e030b6c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89d77a0993b534f03775db4053535fe5 = L.circleMarker(\\n\",\n       \"                [22.75, 114.085],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6964ca4d66867cee9ba31ed8f2ef8668 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_77ce5257605a8900797a371744f13ede = $(`&lt;div id=&quot;html_77ce5257605a8900797a371744f13ede&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.085             latitude:22.75             pred_result:26.178815841674805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6964ca4d66867cee9ba31ed8f2ef8668.setContent(html_77ce5257605a8900797a371744f13ede);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89d77a0993b534f03775db4053535fe5.bindPopup(popup_6964ca4d66867cee9ba31ed8f2ef8668)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45abd5d7e78866e31cab320a596fc1ad = L.circleMarker(\\n\",\n       \"                [22.2294, 113.495],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0aec72a21ac2285fae0c0e3564f921d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f94806f54b547c50d7136640c810a7c = $(`&lt;div id=&quot;html_6f94806f54b547c50d7136640c810a7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.495             latitude:22.2294             pred_result:23.321203231811523             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0aec72a21ac2285fae0c0e3564f921d4.setContent(html_6f94806f54b547c50d7136640c810a7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45abd5d7e78866e31cab320a596fc1ad.bindPopup(popup_0aec72a21ac2285fae0c0e3564f921d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac7d5d0b7817bc719fdddfd051e1ea12 = L.circleMarker(\\n\",\n       \"                [22.2281, 113.299],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3d010e5d3c485bb05c207199d45a0e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab1de8bf087291c8542aef4d08be09b9 = $(`&lt;div id=&quot;html_ab1de8bf087291c8542aef4d08be09b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.299             latitude:22.2281             pred_result:25.445186614990234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3d010e5d3c485bb05c207199d45a0e3.setContent(html_ab1de8bf087291c8542aef4d08be09b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac7d5d0b7817bc719fdddfd051e1ea12.bindPopup(popup_f3d010e5d3c485bb05c207199d45a0e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2208e6a5fddb4f680d9658880c18a9d1 = L.circleMarker(\\n\",\n       \"                [23.0048, 113.134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d373aa93ab31af258211654ebb84a68 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b4ff20cc70b5c3c22280243bd2f8c11 = $(`&lt;div id=&quot;html_8b4ff20cc70b5c3c22280243bd2f8c11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.134             latitude:23.0048             pred_result:34.23935317993164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d373aa93ab31af258211654ebb84a68.setContent(html_8b4ff20cc70b5c3c22280243bd2f8c11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2208e6a5fddb4f680d9658880c18a9d1.bindPopup(popup_8d373aa93ab31af258211654ebb84a68)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e04e71b2e139c21c4d22cea9288b191 = L.circleMarker(\\n\",\n       \"                [23.0395, 113.105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a58a6bee1890069ebb493754f7f706ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38e3cbbf47ee8414e7b97d538b3cc27e = $(`&lt;div id=&quot;html_38e3cbbf47ee8414e7b97d538b3cc27e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.105             latitude:23.0395             pred_result:34.58003234863281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a58a6bee1890069ebb493754f7f706ca.setContent(html_38e3cbbf47ee8414e7b97d538b3cc27e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e04e71b2e139c21c4d22cea9288b191.bindPopup(popup_a58a6bee1890069ebb493754f7f706ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b818c9db6133d4f63479bd819ab6afe3 = L.circleMarker(\\n\",\n       \"                [23.0467, 113.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38cf7474c7a5004b76db2c7377803b19 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_113042ec117d117cc888a263c9b8f3bd = $(`&lt;div id=&quot;html_113042ec117d117cc888a263c9b8f3bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.144             latitude:23.0467             pred_result:34.451351165771484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38cf7474c7a5004b76db2c7377803b19.setContent(html_113042ec117d117cc888a263c9b8f3bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b818c9db6133d4f63479bd819ab6afe3.bindPopup(popup_38cf7474c7a5004b76db2c7377803b19)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09c8478e8634827b71d6c2388de7a6af = L.circleMarker(\\n\",\n       \"                [22.8054, 113.292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_915141d38ce082e9347c940aa96b1cec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1bcebb28ce8141641a08554b69c0a356 = $(`&lt;div id=&quot;html_1bcebb28ce8141641a08554b69c0a356&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.292             latitude:22.8054             pred_result:33.847049713134766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_915141d38ce082e9347c940aa96b1cec.setContent(html_1bcebb28ce8141641a08554b69c0a356);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09c8478e8634827b71d6c2388de7a6af.bindPopup(popup_915141d38ce082e9347c940aa96b1cec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6186b4797fc891f164836e5aaf9eebf = L.circleMarker(\\n\",\n       \"                [22.7629, 113.257],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1bb53fed1cd72a65f525003fb9a8a644 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c34692b1a4e814dbd3122d9390054de = $(`&lt;div id=&quot;html_7c34692b1a4e814dbd3122d9390054de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.257             latitude:22.7629             pred_result:33.32783126831055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1bb53fed1cd72a65f525003fb9a8a644.setContent(html_7c34692b1a4e814dbd3122d9390054de);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6186b4797fc891f164836e5aaf9eebf.bindPopup(popup_1bb53fed1cd72a65f525003fb9a8a644)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c777e2162a2559d1e0248ef7cc70ec56 = L.circleMarker(\\n\",\n       \"                [22.8693, 112.844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12a59d40729a2d9d029ef01bdaf35615 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9720c18dd3779bc902ef8bd454a93d2e = $(`&lt;div id=&quot;html_9720c18dd3779bc902ef8bd454a93d2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.844             latitude:22.8693             pred_result:35.155784606933594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12a59d40729a2d9d029ef01bdaf35615.setContent(html_9720c18dd3779bc902ef8bd454a93d2e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c777e2162a2559d1e0248ef7cc70ec56.bindPopup(popup_12a59d40729a2d9d029ef01bdaf35615)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_444f75a9b9ed8e820a10281005780ff2 = L.circleMarker(\\n\",\n       \"                [23.1572, 112.885],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5fc26a81f3a4849ce75711b1198aa2d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a350f5b79c6cb529691c87f06cce1e6d = $(`&lt;div id=&quot;html_a350f5b79c6cb529691c87f06cce1e6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.885             latitude:23.1572             pred_result:36.029197692871094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5fc26a81f3a4849ce75711b1198aa2d1.setContent(html_a350f5b79c6cb529691c87f06cce1e6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_444f75a9b9ed8e820a10281005780ff2.bindPopup(popup_5fc26a81f3a4849ce75711b1198aa2d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34f6a8c764a1ef0b8eeb60dfe1997fe5 = L.circleMarker(\\n\",\n       \"                [23.1886, 112.863],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_766f97d576f47d47d1953dd5a20aa5eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0670f265884a412b13abe501b705b2d = $(`&lt;div id=&quot;html_d0670f265884a412b13abe501b705b2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.863             latitude:23.1886             pred_result:37.07738494873047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_766f97d576f47d47d1953dd5a20aa5eb.setContent(html_d0670f265884a412b13abe501b705b2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34f6a8c764a1ef0b8eeb60dfe1997fe5.bindPopup(popup_766f97d576f47d47d1953dd5a20aa5eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b60d383ecc04d85573cb25471adc942 = L.circleMarker(\\n\",\n       \"                [22.5211, 113.3769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b57e3d3b5f8c3b80023ca621147f2ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2511200ea1be0107de29a5afbb75dfd = $(`&lt;div id=&quot;html_d2511200ea1be0107de29a5afbb75dfd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3769             latitude:22.5211             pred_result:29.1962890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b57e3d3b5f8c3b80023ca621147f2ce.setContent(html_d2511200ea1be0107de29a5afbb75dfd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b60d383ecc04d85573cb25471adc942.bindPopup(popup_9b57e3d3b5f8c3b80023ca621147f2ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec5d6713425d8976aad5435f22273d5e = L.circleMarker(\\n\",\n       \"                [22.5497, 113.3881],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_234e2c95ad0939ac223a1d85daa5ddc7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40fe59d47f6e6fe03bc16276d1736bbf = $(`&lt;div id=&quot;html_40fe59d47f6e6fe03bc16276d1736bbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3881             latitude:22.5497             pred_result:29.805633544921875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_234e2c95ad0939ac223a1d85daa5ddc7.setContent(html_40fe59d47f6e6fe03bc16276d1736bbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec5d6713425d8976aad5435f22273d5e.bindPopup(popup_234e2c95ad0939ac223a1d85daa5ddc7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0689974cbb80772602e18993d374af0 = L.circleMarker(\\n\",\n       \"                [22.5111, 113.4075],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19865dd742d7c7e2a5a2a93d19f518cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_81009f7d48b270bd6c00ffe94ec1a40c = $(`&lt;div id=&quot;html_81009f7d48b270bd6c00ffe94ec1a40c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4075             latitude:22.5111             pred_result:29.205955505371094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19865dd742d7c7e2a5a2a93d19f518cc.setContent(html_81009f7d48b270bd6c00ffe94ec1a40c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0689974cbb80772602e18993d374af0.bindPopup(popup_19865dd742d7c7e2a5a2a93d19f518cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25ecbe1c151db4daf9fdfea3e09ae2f6 = L.circleMarker(\\n\",\n       \"                [22.4853, 113.4411],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf3a8f67ed6962c5212bfd5423ce1421 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_910f8a9160142b2584437f112b5c0d17 = $(`&lt;div id=&quot;html_910f8a9160142b2584437f112b5c0d17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4411             latitude:22.4853             pred_result:28.341495513916016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf3a8f67ed6962c5212bfd5423ce1421.setContent(html_910f8a9160142b2584437f112b5c0d17);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25ecbe1c151db4daf9fdfea3e09ae2f6.bindPopup(popup_bf3a8f67ed6962c5212bfd5423ce1421)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6755604a64a0058698e45937a179fed4 = L.circleMarker(\\n\",\n       \"                [22.6069, 113.104],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05b3b7282291d727655cc6c947beada8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5cfc71615b89b81482482e2e3cd89503 = $(`&lt;div id=&quot;html_5cfc71615b89b81482482e2e3cd89503&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.104             latitude:22.6069             pred_result:31.958391189575195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05b3b7282291d727655cc6c947beada8.setContent(html_5cfc71615b89b81482482e2e3cd89503);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6755604a64a0058698e45937a179fed4.bindPopup(popup_05b3b7282291d727655cc6c947beada8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee55152bb171868579e853326d930024 = L.circleMarker(\\n\",\n       \"                [22.5811, 113.074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec752a549cd18a80adcd2061092c85be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c33666a93f778ea1450f9d80d7a82781 = $(`&lt;div id=&quot;html_c33666a93f778ea1450f9d80d7a82781&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.074             latitude:22.5811             pred_result:32.15210723876953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec752a549cd18a80adcd2061092c85be.setContent(html_c33666a93f778ea1450f9d80d7a82781);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee55152bb171868579e853326d930024.bindPopup(popup_ec752a549cd18a80adcd2061092c85be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_524095cd618fc96b6ad5cbf80a3a910f = L.circleMarker(\\n\",\n       \"                [22.5328, 113.024],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f234a2d5a834741beeec1dcc7d13a90d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e798e2dff99ca81ce685e64d85578476 = $(`&lt;div id=&quot;html_e798e2dff99ca81ce685e64d85578476&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.024             latitude:22.5328             pred_result:32.051902770996094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f234a2d5a834741beeec1dcc7d13a90d.setContent(html_e798e2dff99ca81ce685e64d85578476);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_524095cd618fc96b6ad5cbf80a3a910f.bindPopup(popup_f234a2d5a834741beeec1dcc7d13a90d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbe67fa8f7b6ba37f8b156e7bc4ffbfd = L.circleMarker(\\n\",\n       \"                [22.5931, 113.0819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09c37b8c2b4e48b80b041f7849a85134 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df4061f139641e0484f1d23f31f94a92 = $(`&lt;div id=&quot;html_df4061f139641e0484f1d23f31f94a92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0819             latitude:22.5931             pred_result:33.321434020996094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09c37b8c2b4e48b80b041f7849a85134.setContent(html_df4061f139641e0484f1d23f31f94a92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbe67fa8f7b6ba37f8b156e7bc4ffbfd.bindPopup(popup_09c37b8c2b4e48b80b041f7849a85134)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e460c671c3db596e32e998bc88059fa4 = L.circleMarker(\\n\",\n       \"                [23.05361111, 113.7819444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ae21e0307bfc214c68bdff204eaebbf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_23cd95909438da84f00413ea1697a66e = $(`&lt;div id=&quot;html_23cd95909438da84f00413ea1697a66e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7819444             latitude:23.05361111             pred_result:34.250633239746094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ae21e0307bfc214c68bdff204eaebbf.setContent(html_23cd95909438da84f00413ea1697a66e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e460c671c3db596e32e998bc88059fa4.bindPopup(popup_2ae21e0307bfc214c68bdff204eaebbf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28fa4aa4c379a4b70045a321f57788c1 = L.circleMarker(\\n\",\n       \"                [23.02777778, 113.7461111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a58be9fe7148b65f10e352746c1e1be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf54b8cb7bb1a8af2312d95713646aba = $(`&lt;div id=&quot;html_cf54b8cb7bb1a8af2312d95713646aba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7461111             latitude:23.02777778             pred_result:33.09991455078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a58be9fe7148b65f10e352746c1e1be.setContent(html_cf54b8cb7bb1a8af2312d95713646aba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28fa4aa4c379a4b70045a321f57788c1.bindPopup(popup_2a58be9fe7148b65f10e352746c1e1be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39549d91cf6698799e98eb01337bbe36 = L.circleMarker(\\n\",\n       \"                [23.06, 113.7480556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_539606b0e00b4eeafaa8eda5c3bab8a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9dfa06965d79e62b80d5405cd4e76666 = $(`&lt;div id=&quot;html_9dfa06965d79e62b80d5405cd4e76666&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7480556             latitude:23.06             pred_result:32.869998931884766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_539606b0e00b4eeafaa8eda5c3bab8a2.setContent(html_9dfa06965d79e62b80d5405cd4e76666);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39549d91cf6698799e98eb01337bbe36.bindPopup(popup_539606b0e00b4eeafaa8eda5c3bab8a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_253bb17dc027009e8197c173f7ce8fba = L.circleMarker(\\n\",\n       \"                [23.01277778, 113.79444440000002],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e66a03e1d66d0025d24b8e92e612a0f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5e08363718e42d32200c89e738bbf17 = $(`&lt;div id=&quot;html_b5e08363718e42d32200c89e738bbf17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.79444440000002             latitude:23.01277778             pred_result:32.87134552001953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e66a03e1d66d0025d24b8e92e612a0f7.setContent(html_b5e08363718e42d32200c89e738bbf17);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_253bb17dc027009e8197c173f7ce8fba.bindPopup(popup_e66a03e1d66d0025d24b8e92e612a0f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c24434522fab58019762db2f591d2935 = L.circleMarker(\\n\",\n       \"                [22.96583333, 113.7383333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3ed30f3eeb055bf56ae47157a4a8592 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8864573e1554675933f8eb7b854b48a0 = $(`&lt;div id=&quot;html_8864573e1554675933f8eb7b854b48a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7383333             latitude:22.96583333             pred_result:34.09337615966797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3ed30f3eeb055bf56ae47157a4a8592.setContent(html_8864573e1554675933f8eb7b854b48a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c24434522fab58019762db2f591d2935.bindPopup(popup_c3ed30f3eeb055bf56ae47157a4a8592)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0827969668aaa9a1a39ac5aa023f7c53 = L.circleMarker(\\n\",\n       \"                [23.0528, 114.4183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b95fa4e281783f42e1d939d04ba8a902 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb7a72292c7ee9b9c8a68bbc59a3439d = $(`&lt;div id=&quot;html_fb7a72292c7ee9b9c8a68bbc59a3439d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4183             latitude:23.0528             pred_result:28.13091468811035             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b95fa4e281783f42e1d939d04ba8a902.setContent(html_fb7a72292c7ee9b9c8a68bbc59a3439d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0827969668aaa9a1a39ac5aa023f7c53.bindPopup(popup_b95fa4e281783f42e1d939d04ba8a902)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7b887706133b31f0beae2444fa4a6c1 = L.circleMarker(\\n\",\n       \"                [23.08, 114.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c553dcfee344a0d6a2f069a8b0d662f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4cf6b0db26339d086c9b59f62be09f24 = $(`&lt;div id=&quot;html_4cf6b0db26339d086c9b59f62be09f24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4053             latitude:23.08             pred_result:28.19478988647461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c553dcfee344a0d6a2f069a8b0d662f.setContent(html_4cf6b0db26339d086c9b59f62be09f24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7b887706133b31f0beae2444fa4a6c1.bindPopup(popup_4c553dcfee344a0d6a2f069a8b0d662f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d25971ae83238c7c19bb1cfe32d8df3c = L.circleMarker(\\n\",\n       \"                [23.1142, 114.4103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a08d1e1f676ceffd007a82ab0f3e88bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a498966e566e7b1f3df975d8b4f6cc7 = $(`&lt;div id=&quot;html_6a498966e566e7b1f3df975d8b4f6cc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4103             latitude:23.1142             pred_result:29.253684997558594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a08d1e1f676ceffd007a82ab0f3e88bf.setContent(html_6a498966e566e7b1f3df975d8b4f6cc7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d25971ae83238c7c19bb1cfe32d8df3c.bindPopup(popup_a08d1e1f676ceffd007a82ab0f3e88bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0c62bd874e470df268b24c355d60491 = L.circleMarker(\\n\",\n       \"                [22.8172, 114.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b470d183f4180ebb439e5f4fb6adb23d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_716ff97394f24ff82e5c62c3b3c2173e = $(`&lt;div id=&quot;html_716ff97394f24ff82e5c62c3b3c2173e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3244             latitude:22.8172             pred_result:26.230907440185547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b470d183f4180ebb439e5f4fb6adb23d.setContent(html_716ff97394f24ff82e5c62c3b3c2173e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0c62bd874e470df268b24c355d60491.bindPopup(popup_b470d183f4180ebb439e5f4fb6adb23d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0681849d0553b721b324264bad41cf98 = L.circleMarker(\\n\",\n       \"                [22.7422, 114.5317],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e6e589d1c0591d1096b60b236a4fdd6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e13952096b99c719a954dc5a4184aa5 = $(`&lt;div id=&quot;html_3e13952096b99c719a954dc5a4184aa5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5317             latitude:22.7422             pred_result:23.586162567138672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e6e589d1c0591d1096b60b236a4fdd6.setContent(html_3e13952096b99c719a954dc5a4184aa5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0681849d0553b721b324264bad41cf98.bindPopup(popup_1e6e589d1c0591d1096b60b236a4fdd6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a50aa433b29120725ae7f8a906071d4 = L.circleMarker(\\n\",\n       \"                [23.0706, 112.427],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22ad3881b94c36ea02259fdd522cee97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5e4d4e08cc95f33cd51ab3376ea3897 = $(`&lt;div id=&quot;html_c5e4d4e08cc95f33cd51ab3376ea3897&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.427             latitude:23.0706             pred_result:35.908172607421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22ad3881b94c36ea02259fdd522cee97.setContent(html_c5e4d4e08cc95f33cd51ab3376ea3897);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a50aa433b29120725ae7f8a906071d4.bindPopup(popup_22ad3881b94c36ea02259fdd522cee97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c899c19474066cd3c3b7ebad3c2f1e2c = L.circleMarker(\\n\",\n       \"                [23.0528, 112.471],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7ce6c8f12e32270811d4970c1301a2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83453057aa50bc3d62da5fcd6287a065 = $(`&lt;div id=&quot;html_83453057aa50bc3d62da5fcd6287a065&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.471             latitude:23.0528             pred_result:35.90126419067383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7ce6c8f12e32270811d4970c1301a2d.setContent(html_83453057aa50bc3d62da5fcd6287a065);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c899c19474066cd3c3b7ebad3c2f1e2c.bindPopup(popup_e7ce6c8f12e32270811d4970c1301a2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24e97b23cfb870fc7c776263e4ad0264 = L.circleMarker(\\n\",\n       \"                [23.1617, 112.565],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cfa1d101ecbe80ec8085341a458d04fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebafa1cadf2d407b50bebac72f9242eb = $(`&lt;div id=&quot;html_ebafa1cadf2d407b50bebac72f9242eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.565             latitude:23.1617             pred_result:36.49354553222656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cfa1d101ecbe80ec8085341a458d04fb.setContent(html_ebafa1cadf2d407b50bebac72f9242eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24e97b23cfb870fc7c776263e4ad0264.bindPopup(popup_cfa1d101ecbe80ec8085341a458d04fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e526430672bef4251985b9b2aef70b4a = L.circleMarker(\\n\",\n       \"                [23.0786, 112.4722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_107370324f63e7113faf25412ab880f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7dc6cf8b4af9a073675d5b4a11ad6df = $(`&lt;div id=&quot;html_b7dc6cf8b4af9a073675d5b4a11ad6df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4722             latitude:23.0786             pred_result:36.11000442504883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_107370324f63e7113faf25412ab880f5.setContent(html_b7dc6cf8b4af9a073675d5b4a11ad6df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e526430672bef4251985b9b2aef70b4a.bindPopup(popup_107370324f63e7113faf25412ab880f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3fbce1bbb22352f0f1148a0db6871e1e = L.circleMarker(\\n\",\n       \"                [22.7875, 108.301],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28b23d63af48ceb1d57e2a2d175a0a46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e80a8db3c8baa3d8ef2920a7fe3aaf4 = $(`&lt;div id=&quot;html_9e80a8db3c8baa3d8ef2920a7fe3aaf4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.301             latitude:22.7875             pred_result:28.196029663085938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28b23d63af48ceb1d57e2a2d175a0a46.setContent(html_9e80a8db3c8baa3d8ef2920a7fe3aaf4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3fbce1bbb22352f0f1148a0db6871e1e.bindPopup(popup_28b23d63af48ceb1d57e2a2d175a0a46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81acdf212226a18f1c3b471e1df22518 = L.circleMarker(\\n\",\n       \"                [22.8561, 108.316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_062cebeaa98a6c5280d6e43118fe90c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8204377f143b7e2add9f021bec3a2ce1 = $(`&lt;div id=&quot;html_8204377f143b7e2add9f021bec3a2ce1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.316             latitude:22.8561             pred_result:28.783111572265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_062cebeaa98a6c5280d6e43118fe90c7.setContent(html_8204377f143b7e2add9f021bec3a2ce1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81acdf212226a18f1c3b471e1df22518.bindPopup(popup_062cebeaa98a6c5280d6e43118fe90c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa10a67ca9cfd01a53f5e6bdc9df244a = L.circleMarker(\\n\",\n       \"                [22.8225, 108.321],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_495a21aca8163415a84a6b16594283cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b11de805dc7ed28c90f561f14374207 = $(`&lt;div id=&quot;html_6b11de805dc7ed28c90f561f14374207&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.321             latitude:22.8225             pred_result:28.499038696289062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_495a21aca8163415a84a6b16594283cb.setContent(html_6b11de805dc7ed28c90f561f14374207);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa10a67ca9cfd01a53f5e6bdc9df244a.bindPopup(popup_495a21aca8163415a84a6b16594283cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9877f8e144c90a7066459ef16eb84398 = L.circleMarker(\\n\",\n       \"                [22.805, 108.383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_460c7704e00d09e4793caafb8a1cfb9a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ba7a9d301a84d5631461604a41cc82e = $(`&lt;div id=&quot;html_2ba7a9d301a84d5631461604a41cc82e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.383             latitude:22.805             pred_result:28.434967041015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_460c7704e00d09e4793caafb8a1cfb9a.setContent(html_2ba7a9d301a84d5631461604a41cc82e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9877f8e144c90a7066459ef16eb84398.bindPopup(popup_460c7704e00d09e4793caafb8a1cfb9a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1165fed3ae8a7a735c5ea1661094919a = L.circleMarker(\\n\",\n       \"                [22.7906, 108.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8ed0977ce550d2ba1ebede1dfca775a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c3f6ee36cd166b4e58eab5fbfd7a55e = $(`&lt;div id=&quot;html_1c3f6ee36cd166b4e58eab5fbfd7a55e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.439             latitude:22.7906             pred_result:28.366134643554688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8ed0977ce550d2ba1ebede1dfca775a.setContent(html_1c3f6ee36cd166b4e58eab5fbfd7a55e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1165fed3ae8a7a735c5ea1661094919a.bindPopup(popup_e8ed0977ce550d2ba1ebede1dfca775a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_662525ba43374cc73d212cc0c75784d2 = L.circleMarker(\\n\",\n       \"                [22.8464, 108.239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_332b3acbcc23f7c456466ff3349fede9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_56cd4db41a67cc3a9212e37aca50ba67 = $(`&lt;div id=&quot;html_56cd4db41a67cc3a9212e37aca50ba67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.239             latitude:22.8464             pred_result:28.269153594970703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_332b3acbcc23f7c456466ff3349fede9.setContent(html_56cd4db41a67cc3a9212e37aca50ba67);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_662525ba43374cc73d212cc0c75784d2.bindPopup(popup_332b3acbcc23f7c456466ff3349fede9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7fee6445123a105076753013cac3a86e = L.circleMarker(\\n\",\n       \"                [22.735, 108.328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc76981b77e22838d522825fa1dec49d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_589da525b4e7d3fa2f80bf2f0145337e = $(`&lt;div id=&quot;html_589da525b4e7d3fa2f80bf2f0145337e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.328             latitude:22.735             pred_result:27.80746078491211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc76981b77e22838d522825fa1dec49d.setContent(html_589da525b4e7d3fa2f80bf2f0145337e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7fee6445123a105076753013cac3a86e.bindPopup(popup_fc76981b77e22838d522825fa1dec49d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d14ad800351c673f90c4bf44fe8c184 = L.circleMarker(\\n\",\n       \"                [22.7833, 108.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d7dd34412a6a2b1b02834b162e1004c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69af1ec580e0b2c4bc49bfc67e8fcf48 = $(`&lt;div id=&quot;html_69af1ec580e0b2c4bc49bfc67e8fcf48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.244             latitude:22.7833             pred_result:27.958087921142578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d7dd34412a6a2b1b02834b162e1004c.setContent(html_69af1ec580e0b2c4bc49bfc67e8fcf48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d14ad800351c673f90c4bf44fe8c184.bindPopup(popup_7d7dd34412a6a2b1b02834b162e1004c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e987391696aa4ddbdbb35b032f08851 = L.circleMarker(\\n\",\n       \"                [19.9507, 110.576],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd05715404866f9896aed2d930c97423 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f85a49d56f9e85319f2895481a80e8d2 = $(`&lt;div id=&quot;html_f85a49d56f9e85319f2895481a80e8d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.576             latitude:19.9507             pred_result:12.63585090637207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd05715404866f9896aed2d930c97423.setContent(html_f85a49d56f9e85319f2895481a80e8d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e987391696aa4ddbdbb35b032f08851.bindPopup(popup_cd05715404866f9896aed2d930c97423)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8db078ad0460f03ba1094b3e296574ec = L.circleMarker(\\n\",\n       \"                [19.9969, 110.338],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f387141a9fa65661f144aaa321e3b19d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b47f1be8f72a37531fbd247b5845f783 = $(`&lt;div id=&quot;html_b47f1be8f72a37531fbd247b5845f783&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.338             latitude:19.9969             pred_result:14.306766510009766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f387141a9fa65661f144aaa321e3b19d.setContent(html_b47f1be8f72a37531fbd247b5845f783);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8db078ad0460f03ba1094b3e296574ec.bindPopup(popup_f387141a9fa65661f144aaa321e3b19d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ff8327374a6b6b9238d33f362882f21d = L.circleMarker(\\n\",\n       \"                [29.8272, 106.379],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78441e4b04aebc44af83ffd0120378c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df240d7f12d517b030b1012ddbd07309 = $(`&lt;div id=&quot;html_df240d7f12d517b030b1012ddbd07309&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.379             latitude:29.8272             pred_result:37.996681213378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78441e4b04aebc44af83ffd0120378c9.setContent(html_df240d7f12d517b030b1012ddbd07309);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ff8327374a6b6b9238d33f362882f21d.bindPopup(popup_78441e4b04aebc44af83ffd0120378c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d75e1ab76e7c23c8560bace5a253fd41 = L.circleMarker(\\n\",\n       \"                [29.8264, 106.424],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_232c1bd6ba60e410283e2d1b6f0bb53b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0411f9f5aa7a32c19e7574d3d1e7fad = $(`&lt;div id=&quot;html_c0411f9f5aa7a32c19e7574d3d1e7fad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.424             latitude:29.8264             pred_result:38.81056594848633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_232c1bd6ba60e410283e2d1b6f0bb53b.setContent(html_c0411f9f5aa7a32c19e7574d3d1e7fad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d75e1ab76e7c23c8560bace5a253fd41.bindPopup(popup_232c1bd6ba60e410283e2d1b6f0bb53b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1450e561fe4eedba0556823abb7cf639 = L.circleMarker(\\n\",\n       \"                [29.7228, 106.626],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60f065489f1fe9eefa1774cfb6aa7acc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89f76cb0169497809f4b2f6d57252987 = $(`&lt;div id=&quot;html_89f76cb0169497809f4b2f6d57252987&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.626             latitude:29.7228             pred_result:38.44670104980469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60f065489f1fe9eefa1774cfb6aa7acc.setContent(html_89f76cb0169497809f4b2f6d57252987);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1450e561fe4eedba0556823abb7cf639.bindPopup(popup_60f065489f1fe9eefa1774cfb6aa7acc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56e97655765386d55ac928fc7156afd2 = L.circleMarker(\\n\",\n       \"                [29.5983, 106.296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7abe65ceb9de3b0660ffd0d2c118cd1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df6b70341e9960b9dae7cb81113e69b1 = $(`&lt;div id=&quot;html_df6b70341e9960b9dae7cb81113e69b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.296             latitude:29.5983             pred_result:38.818450927734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7abe65ceb9de3b0660ffd0d2c118cd1.setContent(html_df6b70341e9960b9dae7cb81113e69b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56e97655765386d55ac928fc7156afd2.bindPopup(popup_b7abe65ceb9de3b0660ffd0d2c118cd1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a94b3ac36ca3a6392b2b3066bc293f3 = L.circleMarker(\\n\",\n       \"                [29.5186, 106.54],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_95322892e58ab68f78fdb941114e118f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e422d4ce9a5eafa8e16a483278ebcd71 = $(`&lt;div id=&quot;html_e422d4ce9a5eafa8e16a483278ebcd71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.54             latitude:29.5186             pred_result:39.10044860839844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_95322892e58ab68f78fdb941114e118f.setContent(html_e422d4ce9a5eafa8e16a483278ebcd71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a94b3ac36ca3a6392b2b3066bc293f3.bindPopup(popup_95322892e58ab68f78fdb941114e118f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8348136509afac5534557de7fe63ccb3 = L.circleMarker(\\n\",\n       \"                [29.6219, 106.65],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3245378849e96b929f844448cf73aede = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f19a603b2d62e91726d47f96a2be5b10 = $(`&lt;div id=&quot;html_f19a603b2d62e91726d47f96a2be5b10&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.65             latitude:29.6219             pred_result:39.01409149169922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3245378849e96b929f844448cf73aede.setContent(html_f19a603b2d62e91726d47f96a2be5b10);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8348136509afac5534557de7fe63ccb3.bindPopup(popup_3245378849e96b929f844448cf73aede)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b327f197da4bff2688ec182844c324cd = L.circleMarker(\\n\",\n       \"                [29.4892, 106.634],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1f73e10cf52c51d6767c1eb6449f4e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_952971f09f1e1f5dc425c0ed2c884cdd = $(`&lt;div id=&quot;html_952971f09f1e1f5dc425c0ed2c884cdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.634             latitude:29.4892             pred_result:38.90031433105469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1f73e10cf52c51d6767c1eb6449f4e9.setContent(html_952971f09f1e1f5dc425c0ed2c884cdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b327f197da4bff2688ec182844c324cd.bindPopup(popup_c1f73e10cf52c51d6767c1eb6449f4e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9847bbdd364bce45fa2a6950d5726c34 = L.circleMarker(\\n\",\n       \"                [29.4822, 106.364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_259a0ec6c4ade902d1d0318ca31229d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_446fdb13c489a403a22cba6774971ccd = $(`&lt;div id=&quot;html_446fdb13c489a403a22cba6774971ccd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.364             latitude:29.4822             pred_result:38.89341735839844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_259a0ec6c4ade902d1d0318ca31229d3.setContent(html_446fdb13c489a403a22cba6774971ccd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9847bbdd364bce45fa2a6950d5726c34.bindPopup(popup_259a0ec6c4ade902d1d0318ca31229d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e735b22aa1c2d40038cf0354a969e72d = L.circleMarker(\\n\",\n       \"                [29.5642, 106.571],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_648ce2ddd93278b4188733d3e9da6179 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_703657fed9e7101a47b14953103e4cf2 = $(`&lt;div id=&quot;html_703657fed9e7101a47b14953103e4cf2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.571             latitude:29.5642             pred_result:38.983917236328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_648ce2ddd93278b4188733d3e9da6179.setContent(html_703657fed9e7101a47b14953103e4cf2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e735b22aa1c2d40038cf0354a969e72d.bindPopup(popup_648ce2ddd93278b4188733d3e9da6179)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52828a6cbd3df1046e43012815242df3 = L.circleMarker(\\n\",\n       \"                [29.7125, 106.617],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_64a916c451f42cdf61e24c5a619c0ed7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8828748704188d4c3a740c5c62da2945 = $(`&lt;div id=&quot;html_8828748704188d4c3a740c5c62da2945&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.617             latitude:29.7125             pred_result:38.46371841430664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_64a916c451f42cdf61e24c5a619c0ed7.setContent(html_8828748704188d4c3a740c5c62da2945);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52828a6cbd3df1046e43012815242df3.bindPopup(popup_64a916c451f42cdf61e24c5a619c0ed7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b68667aa0b04d4b9db9c3311b4dc3dab = L.circleMarker(\\n\",\n       \"                [29.4892, 106.468],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6b1d100f40c7685438bbb87d1bcc8cc2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94f6244457656e4efbfa5b54a2dd9d16 = $(`&lt;div id=&quot;html_94f6244457656e4efbfa5b54a2dd9d16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.468             latitude:29.4892             pred_result:38.85560607910156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6b1d100f40c7685438bbb87d1bcc8cc2.setContent(html_94f6244457656e4efbfa5b54a2dd9d16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b68667aa0b04d4b9db9c3311b4dc3dab.bindPopup(popup_6b1d100f40c7685438bbb87d1bcc8cc2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_722223a2fff46c20910527ee1db91402 = L.circleMarker(\\n\",\n       \"                [29.6453, 106.562],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29e26ce4c967b0ada748a8de0271a332 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_caa350ae96e897d8aece51bf908c7c51 = $(`&lt;div id=&quot;html_caa350ae96e897d8aece51bf908c7c51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.562             latitude:29.6453             pred_result:38.649871826171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29e26ce4c967b0ada748a8de0271a332.setContent(html_caa350ae96e897d8aece51bf908c7c51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_722223a2fff46c20910527ee1db91402.bindPopup(popup_29e26ce4c967b0ada748a8de0271a332)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb6afaf213561d8ac6c67df96b405a05 = L.circleMarker(\\n\",\n       \"                [29.709, 106.452],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50e53eec12ecdc2b2adcab0b534cb545 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74d08f549af9c3caadd77e49b9ae7c8d = $(`&lt;div id=&quot;html_74d08f549af9c3caadd77e49b9ae7c8d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.452             latitude:29.709             pred_result:38.835697174072266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50e53eec12ecdc2b2adcab0b534cb545.setContent(html_74d08f549af9c3caadd77e49b9ae7c8d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb6afaf213561d8ac6c67df96b405a05.bindPopup(popup_50e53eec12ecdc2b2adcab0b534cb545)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b79aa09d64cadea1a2d6bbb1166fa895 = L.circleMarker(\\n\",\n       \"                [29.389, 106.513],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cee8707803ae6fd4bc9396006642452c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3862407b54e8305e3917238fd9ad79a0 = $(`&lt;div id=&quot;html_3862407b54e8305e3917238fd9ad79a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.513             latitude:29.389             pred_result:39.398643493652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cee8707803ae6fd4bc9396006642452c.setContent(html_3862407b54e8305e3917238fd9ad79a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b79aa09d64cadea1a2d6bbb1166fa895.bindPopup(popup_cee8707803ae6fd4bc9396006642452c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a4508cc8aa57cb2c24bb29fa324d724 = L.circleMarker(\\n\",\n       \"                [30.72358333, 103.97275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e39758a88ceb6fb38582dd57a42f791d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2be92e5a82f0c75c8c5e603cd5a36796 = $(`&lt;div id=&quot;html_2be92e5a82f0c75c8c5e603cd5a36796&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.97275             latitude:30.72358333             pred_result:48.80241775512695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e39758a88ceb6fb38582dd57a42f791d.setContent(html_2be92e5a82f0c75c8c5e603cd5a36796);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a4508cc8aa57cb2c24bb29fa324d724.bindPopup(popup_e39758a88ceb6fb38582dd57a42f791d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_191a0f6262eb609a938837289ca18e34 = L.circleMarker(\\n\",\n       \"                [30.6872, 104.176],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bccda47f3e928309a40ce4ddf2f45567 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce94b91efba9b294ba78643a767cca90 = $(`&lt;div id=&quot;html_ce94b91efba9b294ba78643a767cca90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.176             latitude:30.6872             pred_result:50.08828353881836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bccda47f3e928309a40ce4ddf2f45567.setContent(html_ce94b91efba9b294ba78643a767cca90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_191a0f6262eb609a938837289ca18e34.bindPopup(popup_bccda47f3e928309a40ce4ddf2f45567)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f7a2dfbdfc97609541c8474e50bd824 = L.circleMarker(\\n\",\n       \"                [30.5706, 104.079],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb3dbac6b9feaf606d5450a2e35ad5a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fcb849302f22b436e232b7ee664c6dbd = $(`&lt;div id=&quot;html_fcb849302f22b436e232b7ee664c6dbd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.079             latitude:30.5706             pred_result:49.624595642089844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb3dbac6b9feaf606d5450a2e35ad5a9.setContent(html_fcb849302f22b436e232b7ee664c6dbd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f7a2dfbdfc97609541c8474e50bd824.bindPopup(popup_eb3dbac6b9feaf606d5450a2e35ad5a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b1eb09ff3d3b4409bb7f5f9ce8977b1 = L.circleMarker(\\n\",\n       \"                [30.63, 104.1113889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc607ac89f135fb1875510c4e3f01af8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38dc0074cd4e38778d2535d837c64301 = $(`&lt;div id=&quot;html_38dc0074cd4e38778d2535d837c64301&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1113889             latitude:30.63             pred_result:49.776222229003906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc607ac89f135fb1875510c4e3f01af8.setContent(html_38dc0074cd4e38778d2535d837c64301);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b1eb09ff3d3b4409bb7f5f9ce8977b1.bindPopup(popup_bc607ac89f135fb1875510c4e3f01af8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e5b6299c57eb73f11bd36d7d2bf3267 = L.circleMarker(\\n\",\n       \"                [30.685, 104.074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7214a3fe289f313de5970bb4ec092c17 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55e6fea33c2b30595fa8fdd73a8448d9 = $(`&lt;div id=&quot;html_55e6fea33c2b30595fa8fdd73a8448d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.074             latitude:30.685             pred_result:49.61311340332031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7214a3fe289f313de5970bb4ec092c17.setContent(html_55e6fea33c2b30595fa8fdd73a8448d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e5b6299c57eb73f11bd36d7d2bf3267.bindPopup(popup_7214a3fe289f313de5970bb4ec092c17)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38380dcc08c11a0e1376b94f112210f0 = L.circleMarker(\\n\",\n       \"                [30.6578, 104.054],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4064038396c85a007af61fcc145ea1a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0cf9066d8e00d5887ee74d12b291aaa3 = $(`&lt;div id=&quot;html_0cf9066d8e00d5887ee74d12b291aaa3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.054             latitude:30.6578             pred_result:49.44801330566406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4064038396c85a007af61fcc145ea1a5.setContent(html_0cf9066d8e00d5887ee74d12b291aaa3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38380dcc08c11a0e1376b94f112210f0.bindPopup(popup_4064038396c85a007af61fcc145ea1a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce2278f68150e3d349da2c1d35196d39 = L.circleMarker(\\n\",\n       \"                [31.0283, 103.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e64ab0cd62cdcbacd407fdc891a2bf2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6fb936b6eedfac906ec08ec900a9ff0 = $(`&lt;div id=&quot;html_b6fb936b6eedfac906ec08ec900a9ff0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.613             latitude:31.0283             pred_result:34.78926086425781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e64ab0cd62cdcbacd407fdc891a2bf2.setContent(html_b6fb936b6eedfac906ec08ec900a9ff0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce2278f68150e3d349da2c1d35196d39.bindPopup(popup_6e64ab0cd62cdcbacd407fdc891a2bf2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_159befff7b933bb7467b615530e9279d = L.circleMarker(\\n\",\n       \"                [26.6029, 106.6856],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfbd45f666b5d266474d82f3b998ef80 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b8d4d84ba3779dda1f43df35b80d69a = $(`&lt;div id=&quot;html_7b8d4d84ba3779dda1f43df35b80d69a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6856             latitude:26.6029             pred_result:32.492557525634766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfbd45f666b5d266474d82f3b998ef80.setContent(html_7b8d4d84ba3779dda1f43df35b80d69a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_159befff7b933bb7467b615530e9279d.bindPopup(popup_dfbd45f666b5d266474d82f3b998ef80)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae4a758332f087dec310571342a48e6c = L.circleMarker(\\n\",\n       \"                [26.5689, 106.6971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ddff37b038e736af7285ccede23c9aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93515b0ff2bc621700371e2b66dcbb7e = $(`&lt;div id=&quot;html_93515b0ff2bc621700371e2b66dcbb7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6971             latitude:26.5689             pred_result:32.73607635498047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ddff37b038e736af7285ccede23c9aa.setContent(html_93515b0ff2bc621700371e2b66dcbb7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae4a758332f087dec310571342a48e6c.bindPopup(popup_9ddff37b038e736af7285ccede23c9aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14288d8a53ddbd8072de8473a1798017 = L.circleMarker(\\n\",\n       \"                [26.6266, 106.6243],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ed564ccf23f9a46f076f7b4d692f443 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abef15dcae1ecacd53865dfcb6891a8c = $(`&lt;div id=&quot;html_abef15dcae1ecacd53865dfcb6891a8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6243             latitude:26.6266             pred_result:31.99981117248535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ed564ccf23f9a46f076f7b4d692f443.setContent(html_abef15dcae1ecacd53865dfcb6891a8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14288d8a53ddbd8072de8473a1798017.bindPopup(popup_4ed564ccf23f9a46f076f7b4d692f443)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63ba0714c37a301420e46faed32544e1 = L.circleMarker(\\n\",\n       \"                [26.6343, 106.7487],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_335e9634d9901332a82519ee31d166a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd5f8ce7f13ffc8d774a870e954ff603 = $(`&lt;div id=&quot;html_dd5f8ce7f13ffc8d774a870e954ff603&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7487             latitude:26.6343             pred_result:32.78520965576172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_335e9634d9901332a82519ee31d166a9.setContent(html_dd5f8ce7f13ffc8d774a870e954ff603);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63ba0714c37a301420e46faed32544e1.bindPopup(popup_335e9634d9901332a82519ee31d166a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c51e1b0c6485f985ad48af47af63e070 = L.circleMarker(\\n\",\n       \"                [26.4364, 106.6554],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17f8d837bfa5ae6156cdf8d3d8f0d5bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6377db3fa9fc20e46ae3a70d9ffbb999 = $(`&lt;div id=&quot;html_6377db3fa9fc20e46ae3a70d9ffbb999&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6554             latitude:26.4364             pred_result:32.254249572753906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17f8d837bfa5ae6156cdf8d3d8f0d5bc.setContent(html_6377db3fa9fc20e46ae3a70d9ffbb999);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c51e1b0c6485f985ad48af47af63e070.bindPopup(popup_17f8d837bfa5ae6156cdf8d3d8f0d5bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d384f7859ae004a81cfa5ff37f80f67 = L.circleMarker(\\n\",\n       \"                [26.5155, 106.6948],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_939cc000ed11b83f991525dc6705ec6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e71514ec60304ca688679bc17d9b074 = $(`&lt;div id=&quot;html_9e71514ec60304ca688679bc17d9b074&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6948             latitude:26.5155             pred_result:32.57379913330078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_939cc000ed11b83f991525dc6705ec6e.setContent(html_9e71514ec60304ca688679bc17d9b074);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d384f7859ae004a81cfa5ff37f80f67.bindPopup(popup_939cc000ed11b83f991525dc6705ec6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62a3f00dc328552b2a01be3eee5892a0 = L.circleMarker(\\n\",\n       \"                [26.6009, 106.7105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_431e5a5487916b26e61e156548041f8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36dff6fb0ea7457392fd7cd1e39e1ad0 = $(`&lt;div id=&quot;html_36dff6fb0ea7457392fd7cd1e39e1ad0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7105             latitude:26.6009             pred_result:32.67720413208008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_431e5a5487916b26e61e156548041f8e.setContent(html_36dff6fb0ea7457392fd7cd1e39e1ad0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62a3f00dc328552b2a01be3eee5892a0.bindPopup(popup_431e5a5487916b26e61e156548041f8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86c2099394d236a221d9b05d728016a6 = L.circleMarker(\\n\",\n       \"                [26.5697, 106.7164],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c61c5010036b4dc5a9fa720549e7d38 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f569c47c5b0af25c0e9ecc02a9dba04 = $(`&lt;div id=&quot;html_3f569c47c5b0af25c0e9ecc02a9dba04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7164             latitude:26.5697             pred_result:32.879417419433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c61c5010036b4dc5a9fa720549e7d38.setContent(html_3f569c47c5b0af25c0e9ecc02a9dba04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86c2099394d236a221d9b05d728016a6.bindPopup(popup_1c61c5010036b4dc5a9fa720549e7d38)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6cf14e78c659fb34601e78a5b140bc54 = L.circleMarker(\\n\",\n       \"                [26.5495, 106.6867],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa6a91ee243f71583c1723daaaf5d803 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5f24398cc383f6daa0ac80119a40a10 = $(`&lt;div id=&quot;html_a5f24398cc383f6daa0ac80119a40a10&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6867             latitude:26.5495             pred_result:32.76898193359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa6a91ee243f71583c1723daaaf5d803.setContent(html_a5f24398cc383f6daa0ac80119a40a10);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6cf14e78c659fb34601e78a5b140bc54.bindPopup(popup_fa6a91ee243f71583c1723daaaf5d803)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_955d47a8702b6f3da69db5403838dd04 = L.circleMarker(\\n\",\n       \"                [25.0124, 102.743],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f2848be101f9b6538ec1f0e89d60831 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b8fba2ee98f256cf07b0fa399ff7deb8 = $(`&lt;div id=&quot;html_b8fba2ee98f256cf07b0fa399ff7deb8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.743             latitude:25.0124             pred_result:30.2497501373291             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f2848be101f9b6538ec1f0e89d60831.setContent(html_b8fba2ee98f256cf07b0fa399ff7deb8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_955d47a8702b6f3da69db5403838dd04.bindPopup(popup_3f2848be101f9b6538ec1f0e89d60831)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64520fd84aa0b0267acbc59576a6b2c2 = L.circleMarker(\\n\",\n       \"                [24.8885, 102.821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a183e5cf059867419391cbdfcf85afc7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b00c15ef53f0b5f4f558c3bd4b58ac54 = $(`&lt;div id=&quot;html_b00c15ef53f0b5f4f558c3bd4b58ac54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.821             latitude:24.8885             pred_result:27.837980270385742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a183e5cf059867419391cbdfcf85afc7.setContent(html_b00c15ef53f0b5f4f558c3bd4b58ac54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64520fd84aa0b0267acbc59576a6b2c2.bindPopup(popup_a183e5cf059867419391cbdfcf85afc7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc5767af810a293a02a59f815e539f45 = L.circleMarker(\\n\",\n       \"                [24.9624, 102.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ebea9dfea6c9c28c5ec94e0835a7d13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f8157a1469947482946406c495ca496 = $(`&lt;div id=&quot;html_2f8157a1469947482946406c495ca496&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.625             latitude:24.9624             pred_result:30.181259155273438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ebea9dfea6c9c28c5ec94e0835a7d13.setContent(html_2f8157a1469947482946406c495ca496);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc5767af810a293a02a59f815e539f45.bindPopup(popup_2ebea9dfea6c9c28c5ec94e0835a7d13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5856bd8ea6a8adb1b7a894a646994b8 = L.circleMarker(\\n\",\n       \"                [25.0836, 102.728],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd82a10c0c142a374fcec4914247f61e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd9b14a6a2cebf5ed2fe44dd8865aa1b = $(`&lt;div id=&quot;html_fd9b14a6a2cebf5ed2fe44dd8865aa1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.728             latitude:25.0836             pred_result:31.94577980041504             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd82a10c0c142a374fcec4914247f61e.setContent(html_fd9b14a6a2cebf5ed2fe44dd8865aa1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5856bd8ea6a8adb1b7a894a646994b8.bindPopup(popup_cd82a10c0c142a374fcec4914247f61e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_867c2afab274b57517ce4872e0774a05 = L.circleMarker(\\n\",\n       \"                [25.0405, 102.722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2d68946d00d8b8e25aa952b0e4b097a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d499d5836b256f2981bd39fb0b9385a9 = $(`&lt;div id=&quot;html_d499d5836b256f2981bd39fb0b9385a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.722             latitude:25.0405             pred_result:31.430927276611328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2d68946d00d8b8e25aa952b0e4b097a.setContent(html_d499d5836b256f2981bd39fb0b9385a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_867c2afab274b57517ce4872e0774a05.bindPopup(popup_f2d68946d00d8b8e25aa952b0e4b097a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df1d8987556b0626acfb3306d0aba00d = L.circleMarker(\\n\",\n       \"                [25.067, 102.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3cfab4d6a2b3a71d2f95f9fb149efa44 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df1d0f0a15ca2ced5f6d67b11df2ac91 = $(`&lt;div id=&quot;html_df1d0f0a15ca2ced5f6d67b11df2ac91&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.681             latitude:25.067             pred_result:31.97114372253418             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3cfab4d6a2b3a71d2f95f9fb149efa44.setContent(html_df1d0f0a15ca2ced5f6d67b11df2ac91);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df1d8987556b0626acfb3306d0aba00d.bindPopup(popup_3cfab4d6a2b3a71d2f95f9fb149efa44)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f0b1e66bee84b086c9c16cb13649d3b = L.circleMarker(\\n\",\n       \"                [25.0359, 102.638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a0a80697ae125a67872fa0c3eb03f474 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c655b639d7c31c5a03dce51aa8e7ef3 = $(`&lt;div id=&quot;html_6c655b639d7c31c5a03dce51aa8e7ef3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.638             latitude:25.0359             pred_result:30.772661209106445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a0a80697ae125a67872fa0c3eb03f474.setContent(html_6c655b639d7c31c5a03dce51aa8e7ef3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f0b1e66bee84b086c9c16cb13649d3b.bindPopup(popup_a0a80697ae125a67872fa0c3eb03f474)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ac564ebc493321f90c82ba064b77407 = L.circleMarker(\\n\",\n       \"                [29.6514, 91.1319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98ea506db728058d2805645baebf9240 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_64d3fa68e4400830d249f344c30202b3 = $(`&lt;div id=&quot;html_64d3fa68e4400830d249f344c30202b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1319             latitude:29.6514             pred_result:19.753496170043945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98ea506db728058d2805645baebf9240.setContent(html_64d3fa68e4400830d249f344c30202b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ac564ebc493321f90c82ba064b77407.bindPopup(popup_98ea506db728058d2805645baebf9240)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0fd67c4030feeb6a9fe7389965c403a = L.circleMarker(\\n\",\n       \"                [29.6747, 91.1221],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c8147729c103a73e93d02610b2c736e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1497660e6605728e021075de5032d89 = $(`&lt;div id=&quot;html_d1497660e6605728e021075de5032d89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1221             latitude:29.6747             pred_result:22.59632682800293             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c8147729c103a73e93d02610b2c736e.setContent(html_d1497660e6605728e021075de5032d89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0fd67c4030feeb6a9fe7389965c403a.bindPopup(popup_5c8147729c103a73e93d02610b2c736e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_faaa1f53d1651e5481f751a765a83553 = L.circleMarker(\\n\",\n       \"                [29.6475, 91.0874],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e02f6ab93c6806b97130f7d21d504afa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21d1711f7870d7f1d43b52ab43e19a63 = $(`&lt;div id=&quot;html_21d1711f7870d7f1d43b52ab43e19a63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.0874             latitude:29.6475             pred_result:22.540691375732422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e02f6ab93c6806b97130f7d21d504afa.setContent(html_21d1711f7870d7f1d43b52ab43e19a63);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_faaa1f53d1651e5481f751a765a83553.bindPopup(popup_e02f6ab93c6806b97130f7d21d504afa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee70d3a7bb01762c3b588a7d29e342b9 = L.circleMarker(\\n\",\n       \"                [29.6541, 91.1774],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cadc86833537856f70a8c9f76906e986 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d8c6d7a4458190b491cf41cfdd151d3 = $(`&lt;div id=&quot;html_8d8c6d7a4458190b491cf41cfdd151d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.1774             latitude:29.6541             pred_result:20.05278778076172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cadc86833537856f70a8c9f76906e986.setContent(html_8d8c6d7a4458190b491cf41cfdd151d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee70d3a7bb01762c3b588a7d29e342b9.bindPopup(popup_cadc86833537856f70a8c9f76906e986)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6541d9c78dba990951d100b8cc998234 = L.circleMarker(\\n\",\n       \"                [29.6588, 90.9798],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f07ffd91b1ec52d3e021902407424f2b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9096924e242850a52cb019b258772933 = $(`&lt;div id=&quot;html_9096924e242850a52cb019b258772933&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:90.9798             latitude:29.6588             pred_result:16.55078887939453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f07ffd91b1ec52d3e021902407424f2b.setContent(html_9096924e242850a52cb019b258772933);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6541d9c78dba990951d100b8cc998234.bindPopup(popup_f07ffd91b1ec52d3e021902407424f2b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba228b1ded03160141be437ea9adcdbc = L.circleMarker(\\n\",\n       \"                [29.6292, 91.0834],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac1ebe72ab67e1204b505be1c46177b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1afb703fdbc8d7269e9a2201fae54902 = $(`&lt;div id=&quot;html_1afb703fdbc8d7269e9a2201fae54902&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.0834             latitude:29.6292             pred_result:21.893386840820312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac1ebe72ab67e1204b505be1c46177b3.setContent(html_1afb703fdbc8d7269e9a2201fae54902);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba228b1ded03160141be437ea9adcdbc.bindPopup(popup_ac1ebe72ab67e1204b505be1c46177b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71ecf6aa502aa20a102fdfd265c22225 = L.circleMarker(\\n\",\n       \"                [34.2749, 108.882],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59400114a7a485c20fe5c989de424bf4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7b062313f7fd41a0d02f4c43f5ca28d = $(`&lt;div id=&quot;html_a7b062313f7fd41a0d02f4c43f5ca28d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.882             latitude:34.2749             pred_result:49.312644958496094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59400114a7a485c20fe5c989de424bf4.setContent(html_a7b062313f7fd41a0d02f4c43f5ca28d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71ecf6aa502aa20a102fdfd265c22225.bindPopup(popup_59400114a7a485c20fe5c989de424bf4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9da445477b1603b473c62d483f7c339d = L.circleMarker(\\n\",\n       \"                [34.2629, 108.993],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_113e4b7b5eb438d89c0e8dbe8f44f46b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_75d46d7fab706c0c7bd83d5b790e2a20 = $(`&lt;div id=&quot;html_75d46d7fab706c0c7bd83d5b790e2a20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.993             latitude:34.2629             pred_result:47.385276794433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_113e4b7b5eb438d89c0e8dbe8f44f46b.setContent(html_75d46d7fab706c0c7bd83d5b790e2a20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9da445477b1603b473c62d483f7c339d.bindPopup(popup_113e4b7b5eb438d89c0e8dbe8f44f46b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bbb1349704c353d9035e693d1676c509 = L.circleMarker(\\n\",\n       \"                [34.2572, 109.06],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a12483f1e6c17198ed4575971ec6d64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_234a1cd684fed0e8abea2b66cb9d2c85 = $(`&lt;div id=&quot;html_234a1cd684fed0e8abea2b66cb9d2c85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.06             latitude:34.2572             pred_result:46.515411376953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a12483f1e6c17198ed4575971ec6d64.setContent(html_234a1cd684fed0e8abea2b66cb9d2c85);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bbb1349704c353d9035e693d1676c509.bindPopup(popup_3a12483f1e6c17198ed4575971ec6d64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6bc0ae8567d3a25535bbdc3c1deb2a5 = L.circleMarker(\\n\",\n       \"                [34.2324, 108.94],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c82cf546c8d7c0d9d137025d02a95154 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14bae6513d50ff63e9bbd07172bde32f = $(`&lt;div id=&quot;html_14bae6513d50ff63e9bbd07172bde32f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.94             latitude:34.2324             pred_result:45.53330993652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c82cf546c8d7c0d9d137025d02a95154.setContent(html_14bae6513d50ff63e9bbd07172bde32f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6bc0ae8567d3a25535bbdc3c1deb2a5.bindPopup(popup_c82cf546c8d7c0d9d137025d02a95154)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1b5d39713abd2dbb755a3cb05c905a3 = L.circleMarker(\\n\",\n       \"                [34.2713, 108.954],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b3ccae642d867d6958792949cb4508b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24ddf91fd1ff71eb42ddb956c3219c96 = $(`&lt;div id=&quot;html_24ddf91fd1ff71eb42ddb956c3219c96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.954             latitude:34.2713             pred_result:48.274375915527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b3ccae642d867d6958792949cb4508b.setContent(html_24ddf91fd1ff71eb42ddb956c3219c96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1b5d39713abd2dbb755a3cb05c905a3.bindPopup(popup_7b3ccae642d867d6958792949cb4508b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6013848853b2a2df4a454d3ef965bdd = L.circleMarker(\\n\",\n       \"                [34.2303, 108.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05fd729cb5d83805e7c9e1a07eacac38 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_57d6dbf525ce5ec0fc724cd1a322d67a = $(`&lt;div id=&quot;html_57d6dbf525ce5ec0fc724cd1a322d67a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.883             latitude:34.2303             pred_result:45.24585723876953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05fd729cb5d83805e7c9e1a07eacac38.setContent(html_57d6dbf525ce5ec0fc724cd1a322d67a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6013848853b2a2df4a454d3ef965bdd.bindPopup(popup_05fd729cb5d83805e7c9e1a07eacac38)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f1d2d378a7f9c599ef0435d4ea07868 = L.circleMarker(\\n\",\n       \"                [34.3474, 108.935],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2d8073021769a8644c1cb5ed3ee24dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c85e9071bf4a2b6c2544932c79b4287d = $(`&lt;div id=&quot;html_c85e9071bf4a2b6c2544932c79b4287d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.935             latitude:34.3474             pred_result:52.6876220703125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2d8073021769a8644c1cb5ed3ee24dd.setContent(html_c85e9071bf4a2b6c2544932c79b4287d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f1d2d378a7f9c599ef0435d4ea07868.bindPopup(popup_a2d8073021769a8644c1cb5ed3ee24dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6dc4994dc3fe049573427c516303b59 = L.circleMarker(\\n\",\n       \"                [34.1546, 108.906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65e8f5d4a330fe4415483c5f72526848 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21fe90dd655475d05be10052f85f73f8 = $(`&lt;div id=&quot;html_21fe90dd655475d05be10052f85f73f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.906             latitude:34.1546             pred_result:40.652610778808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65e8f5d4a330fe4415483c5f72526848.setContent(html_21fe90dd655475d05be10052f85f73f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6dc4994dc3fe049573427c516303b59.bindPopup(popup_65e8f5d4a330fe4415483c5f72526848)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af95151e0f8608b76cf744101308afaa = L.circleMarker(\\n\",\n       \"                [34.6575, 109.2],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_198f86f1e3807b5ff126eea653b51e31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb36081f3201316d47f82cff419efb32 = $(`&lt;div id=&quot;html_cb36081f3201316d47f82cff419efb32&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2             latitude:34.6575             pred_result:56.083091735839844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_198f86f1e3807b5ff126eea653b51e31.setContent(html_cb36081f3201316d47f82cff419efb32);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af95151e0f8608b76cf744101308afaa.bindPopup(popup_198f86f1e3807b5ff126eea653b51e31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29bfff0330f8030684c4eb63e3152ebd = L.circleMarker(\\n\",\n       \"                [34.3731, 109.2186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c70ee9edcffad3ace4979c409701274c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_81822bf9cf410dedba29d36496d03ef0 = $(`&lt;div id=&quot;html_81822bf9cf410dedba29d36496d03ef0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2186             latitude:34.3731             pred_result:52.06636047363281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c70ee9edcffad3ace4979c409701274c.setContent(html_81822bf9cf410dedba29d36496d03ef0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29bfff0330f8030684c4eb63e3152ebd.bindPopup(popup_c70ee9edcffad3ace4979c409701274c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5361abc64647076d56af4260ea3b5670 = L.circleMarker(\\n\",\n       \"                [34.378, 108.869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7dce6cd56d00630729b11d1f1d75d57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bbdb1e1b7c40ff9a44ad8cecff9c7781 = $(`&lt;div id=&quot;html_bbdb1e1b7c40ff9a44ad8cecff9c7781&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.869             latitude:34.378             pred_result:54.70398712158203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7dce6cd56d00630729b11d1f1d75d57.setContent(html_bbdb1e1b7c40ff9a44ad8cecff9c7781);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5361abc64647076d56af4260ea3b5670.bindPopup(popup_c7dce6cd56d00630729b11d1f1d75d57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cebc84b94deac80cb2dc9322d73cb997 = L.circleMarker(\\n\",\n       \"                [34.1978, 108.985],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bb913cc5df5b20f981e76bc297e6465 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c223082d7c34ce899e97ecd4bcfc1732 = $(`&lt;div id=&quot;html_c223082d7c34ce899e97ecd4bcfc1732&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.985             latitude:34.1978             pred_result:42.913421630859375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bb913cc5df5b20f981e76bc297e6465.setContent(html_c223082d7c34ce899e97ecd4bcfc1732);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cebc84b94deac80cb2dc9322d73cb997.bindPopup(popup_5bb913cc5df5b20f981e76bc297e6465)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_195133ad9ebd43a78a22b66397f89977 = L.circleMarker(\\n\",\n       \"                [34.3274, 109.043],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_628b4c9aa6744f5d45ef210d5b85629d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6ffd41d80f4424e7db781148a5a913f = $(`&lt;div id=&quot;html_d6ffd41d80f4424e7db781148a5a913f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.043             latitude:34.3274             pred_result:50.84754180908203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_628b4c9aa6744f5d45ef210d5b85629d.setContent(html_d6ffd41d80f4424e7db781148a5a913f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_195133ad9ebd43a78a22b66397f89977.bindPopup(popup_628b4c9aa6744f5d45ef210d5b85629d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ff3c233a91951512d87f1722622e4e4 = L.circleMarker(\\n\",\n       \"                [36.0756, 103.712],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_716092f4f563cbfdf9e4a95855de2781 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7a9e6ddcfc58810b9fe142794e5ab31 = $(`&lt;div id=&quot;html_f7a9e6ddcfc58810b9fe142794e5ab31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.712             latitude:36.0756             pred_result:41.17618942260742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_716092f4f563cbfdf9e4a95855de2781.setContent(html_f7a9e6ddcfc58810b9fe142794e5ab31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ff3c233a91951512d87f1722622e4e4.bindPopup(popup_716092f4f563cbfdf9e4a95855de2781)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01eba151ec70086d1e8459c29f9def4e = L.circleMarker(\\n\",\n       \"                [36.1031, 103.631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1ce4667e38e0608e2e4046912b06aa7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9688309044e4576c37d64f37f6f8a403 = $(`&lt;div id=&quot;html_9688309044e4576c37d64f37f6f8a403&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.631             latitude:36.1031             pred_result:41.85439682006836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1ce4667e38e0608e2e4046912b06aa7f.setContent(html_9688309044e4576c37d64f37f6f8a403);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01eba151ec70086d1e8459c29f9def4e.bindPopup(popup_1ce4667e38e0608e2e4046912b06aa7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f80e6d1ca9268f28423ffc8ebfe6522 = L.circleMarker(\\n\",\n       \"                [35.94, 104.148],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f97cef9b35e96c05552f3afc25988965 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc9fdf9aac58e8dca08190e3264ff257 = $(`&lt;div id=&quot;html_cc9fdf9aac58e8dca08190e3264ff257&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.148             latitude:35.94             pred_result:37.089969635009766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f97cef9b35e96c05552f3afc25988965.setContent(html_cc9fdf9aac58e8dca08190e3264ff257);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f80e6d1ca9268f28423ffc8ebfe6522.bindPopup(popup_f97cef9b35e96c05552f3afc25988965)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fff8f78d585420a0ac6e404d870c0fcf = L.circleMarker(\\n\",\n       \"                [36.0725, 103.841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_852858e03325d40e77f67b0872b264a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4fffd78aecb48274396618a32ff89324 = $(`&lt;div id=&quot;html_4fffd78aecb48274396618a32ff89324&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.841             latitude:36.0725             pred_result:42.28226089477539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_852858e03325d40e77f67b0872b264a4.setContent(html_4fffd78aecb48274396618a32ff89324);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fff8f78d585420a0ac6e404d870c0fcf.bindPopup(popup_852858e03325d40e77f67b0872b264a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8f2ed9179def8925ab0368d6fc8c616 = L.circleMarker(\\n\",\n       \"                [36.0464, 103.831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b3e5395d81a4ce74f81255b0b55d7498 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93777ba9ecbbf07550dde5518afbce1c = $(`&lt;div id=&quot;html_93777ba9ecbbf07550dde5518afbce1c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.831             latitude:36.0464             pred_result:40.43491744995117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b3e5395d81a4ce74f81255b0b55d7498.setContent(html_93777ba9ecbbf07550dde5518afbce1c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8f2ed9179def8925ab0368d6fc8c616.bindPopup(popup_b3e5395d81a4ce74f81255b0b55d7498)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1dd527177e60d1cc036936689cad214 = L.circleMarker(\\n\",\n       \"                [36.6428, 101.748],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6bd1aaf770b0432664932826d824b268 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17bf54e3d88dd5e62407fdbb17b6591a = $(`&lt;div id=&quot;html_17bf54e3d88dd5e62407fdbb17b6591a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.748             latitude:36.6428             pred_result:37.139076232910156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6bd1aaf770b0432664932826d824b268.setContent(html_17bf54e3d88dd5e62407fdbb17b6591a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1dd527177e60d1cc036936689cad214.bindPopup(popup_6bd1aaf770b0432664932826d824b268)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_315d9a39d16fd5af00ca2d1675428363 = L.circleMarker(\\n\",\n       \"                [36.5819, 101.834],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa61f59b7e5281c33bdd3ac0308e968b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93f6354d53d240311e2e7e040ec151fc = $(`&lt;div id=&quot;html_93f6354d53d240311e2e7e040ec151fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.834             latitude:36.5819             pred_result:37.30533218383789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa61f59b7e5281c33bdd3ac0308e968b.setContent(html_93f6354d53d240311e2e7e040ec151fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_315d9a39d16fd5af00ca2d1675428363.bindPopup(popup_aa61f59b7e5281c33bdd3ac0308e968b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89c62f6df9d864d711a46c8f173b9ae0 = L.circleMarker(\\n\",\n       \"                [38.6016, 105.9512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1445bbde821981946404c0ba702ee723 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ac2a40f14cd29119f88afa1f808d281 = $(`&lt;div id=&quot;html_8ac2a40f14cd29119f88afa1f808d281&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.9512             latitude:38.6016             pred_result:38.446189880371094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1445bbde821981946404c0ba702ee723.setContent(html_8ac2a40f14cd29119f88afa1f808d281);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89c62f6df9d864d711a46c8f173b9ae0.bindPopup(popup_1445bbde821981946404c0ba702ee723)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_716afc0a82b345371180066abf25a269 = L.circleMarker(\\n\",\n       \"                [38.4975, 106.2328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be1073f115ab0933526543a1926557fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68b44cce842ec85cc7da9b8183c09ac8 = $(`&lt;div id=&quot;html_68b44cce842ec85cc7da9b8183c09ac8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2328             latitude:38.4975             pred_result:42.4692268371582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be1073f115ab0933526543a1926557fa.setContent(html_68b44cce842ec85cc7da9b8183c09ac8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_716afc0a82b345371180066abf25a269.bindPopup(popup_be1073f115ab0933526543a1926557fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_650a5a21c693d156beabd4774678ec90 = L.circleMarker(\\n\",\n       \"                [38.5036, 106.1358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc637ee4f40d5d320643580528dff354 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26f55b8b51057432bf93a84a36a1d1d2 = $(`&lt;div id=&quot;html_26f55b8b51057432bf93a84a36a1d1d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1358             latitude:38.5036             pred_result:43.2260627746582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc637ee4f40d5d320643580528dff354.setContent(html_26f55b8b51057432bf93a84a36a1d1d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_650a5a21c693d156beabd4774678ec90.bindPopup(popup_cc637ee4f40d5d320643580528dff354)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c894fb9754c65ec9a4a7dda7d8ecfd65 = L.circleMarker(\\n\",\n       \"                [43.8303, 87.5801],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eded883b95a4fc9da04b4f1b8ac42cb6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_509fdcbb0551388570f8038828f42ff0 = $(`&lt;div id=&quot;html_509fdcbb0551388570f8038828f42ff0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5801             latitude:43.8303             pred_result:55.573612213134766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eded883b95a4fc9da04b4f1b8ac42cb6.setContent(html_509fdcbb0551388570f8038828f42ff0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c894fb9754c65ec9a4a7dda7d8ecfd65.bindPopup(popup_eded883b95a4fc9da04b4f1b8ac42cb6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bba6d376a9d38e383740b1aebeeb67dd = L.circleMarker(\\n\",\n       \"                [43.768, 87.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_72bf8f71a28b545631ab3aecf2f870f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2d9c1555181a978f21497557c92e65c = $(`&lt;div id=&quot;html_b2d9c1555181a978f21497557c92e65c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6046             latitude:43.768             pred_result:47.21714782714844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_72bf8f71a28b545631ab3aecf2f870f7.setContent(html_b2d9c1555181a978f21497557c92e65c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bba6d376a9d38e383740b1aebeeb67dd.bindPopup(popup_72bf8f71a28b545631ab3aecf2f870f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6168f4d6fa6f51ba692fa3723a43a0c = L.circleMarker(\\n\",\n       \"                [43.9469, 87.4754],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1dc9734271766b60e5e8c96332acaaa9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6796cafa91623f732676b07c4b2cfe9 = $(`&lt;div id=&quot;html_e6796cafa91623f732676b07c4b2cfe9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.4754             latitude:43.9469             pred_result:58.18206787109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1dc9734271766b60e5e8c96332acaaa9.setContent(html_e6796cafa91623f732676b07c4b2cfe9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6168f4d6fa6f51ba692fa3723a43a0c.bindPopup(popup_1dc9734271766b60e5e8c96332acaaa9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_64bb3d68e79b806b4f21e0234a764d15 = L.circleMarker(\\n\",\n       \"                [43.8711, 87.5525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d15023fa18ffbfeace1af8757066bb6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c77729740eee004b5e7bc69da8ad931 = $(`&lt;div id=&quot;html_8c77729740eee004b5e7bc69da8ad931&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5525             latitude:43.8711             pred_result:59.09944534301758             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d15023fa18ffbfeace1af8757066bb6.setContent(html_8c77729740eee004b5e7bc69da8ad931);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_64bb3d68e79b806b4f21e0234a764d15.bindPopup(popup_9d15023fa18ffbfeace1af8757066bb6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a8625a8e6f8f5b5cd9c23632e4e7beb1 = L.circleMarker(\\n\",\n       \"                [43.831, 87.6432],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c1c63cde86b645da936d1c951498a6a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2ed7b9f6a0dbcf5624dacfae33efd72 = $(`&lt;div id=&quot;html_f2ed7b9f6a0dbcf5624dacfae33efd72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6432             latitude:43.831             pred_result:55.31114196777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c1c63cde86b645da936d1c951498a6a.setContent(html_f2ed7b9f6a0dbcf5624dacfae33efd72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a8625a8e6f8f5b5cd9c23632e4e7beb1.bindPopup(popup_9c1c63cde86b645da936d1c951498a6a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b63e50c86bbce1a83370f0859734c77 = L.circleMarker(\\n\",\n       \"                [43.962, 87.6444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b25907b322654630f10ac9fa03c8ed88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_857370e8aea8e1217ab5df8621e3a4b2 = $(`&lt;div id=&quot;html_857370e8aea8e1217ab5df8621e3a4b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6444             latitude:43.962             pred_result:66.25032806396484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b25907b322654630f10ac9fa03c8ed88.setContent(html_857370e8aea8e1217ab5df8621e3a4b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b63e50c86bbce1a83370f0859734c77.bindPopup(popup_b25907b322654630f10ac9fa03c8ed88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a0f8d2184f3845d0653fa295fe3bf2d = L.circleMarker(\\n\",\n       \"                [27.8614, 112.9433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56b675d0875327c0a3cd77721b1bd1b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbefc20d57c5d2d2a63e64691539dca4 = $(`&lt;div id=&quot;html_fbefc20d57c5d2d2a63e64691539dca4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9433             latitude:27.8614             pred_result:44.384178161621094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56b675d0875327c0a3cd77721b1bd1b5.setContent(html_fbefc20d57c5d2d2a63e64691539dca4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a0f8d2184f3845d0653fa295fe3bf2d.bindPopup(popup_56b675d0875327c0a3cd77721b1bd1b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e4f1045c0cbd49420f28b59ec907aa8 = L.circleMarker(\\n\",\n       \"                [27.8403, 112.9118],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3dac739806f21ab85595f44b5e1590dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae47fa722afb3bc0f362cc60fd7daf21 = $(`&lt;div id=&quot;html_ae47fa722afb3bc0f362cc60fd7daf21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9118             latitude:27.8403             pred_result:44.39606857299805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3dac739806f21ab85595f44b5e1590dd.setContent(html_ae47fa722afb3bc0f362cc60fd7daf21);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e4f1045c0cbd49420f28b59ec907aa8.bindPopup(popup_3dac739806f21ab85595f44b5e1590dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c91d27e56813019d9db37a8e13bec1fa = L.circleMarker(\\n\",\n       \"                [27.8728, 112.8937],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b5d2223941ff1abe8e038be18662ad8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebb573b9b15376d69ec15f9fc3f2ea7d = $(`&lt;div id=&quot;html_ebb573b9b15376d69ec15f9fc3f2ea7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8937             latitude:27.8728             pred_result:44.32661056518555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b5d2223941ff1abe8e038be18662ad8.setContent(html_ebb573b9b15376d69ec15f9fc3f2ea7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c91d27e56813019d9db37a8e13bec1fa.bindPopup(popup_5b5d2223941ff1abe8e038be18662ad8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b7a2b2cad6fc076358cacd73ecbd19d = L.circleMarker(\\n\",\n       \"                [27.8159, 112.9227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5143aff359a06fcc2783f0feaeff3d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9b4ae9377e264ed27a881eb3c6bc951f = $(`&lt;div id=&quot;html_9b4ae9377e264ed27a881eb3c6bc951f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9227             latitude:27.8159             pred_result:44.44697570800781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5143aff359a06fcc2783f0feaeff3d4.setContent(html_9b4ae9377e264ed27a881eb3c6bc951f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b7a2b2cad6fc076358cacd73ecbd19d.bindPopup(popup_c5143aff359a06fcc2783f0feaeff3d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a5964390a930ae844435fe8bbd527f3 = L.circleMarker(\\n\",\n       \"                [27.9119, 112.9074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a7beae1c02db17e896531b6b4c7e249 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c90f64b6081ac2cf98b5169be339bfe = $(`&lt;div id=&quot;html_1c90f64b6081ac2cf98b5169be339bfe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9074             latitude:27.9119             pred_result:44.23431396484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a7beae1c02db17e896531b6b4c7e249.setContent(html_1c90f64b6081ac2cf98b5169be339bfe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a5964390a930ae844435fe8bbd527f3.bindPopup(popup_9a7beae1c02db17e896531b6b4c7e249)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1aaa04b22e748261448c5dcda09fc666 = L.circleMarker(\\n\",\n       \"                [27.8244, 113.135],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e9430bad7bfba5b7d615bcd3bce90c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7cfd46956cb4f2926b70b989cc0c2785 = $(`&lt;div id=&quot;html_7cfd46956cb4f2926b70b989cc0c2785&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.135             latitude:27.8244             pred_result:44.82991027832031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e9430bad7bfba5b7d615bcd3bce90c4.setContent(html_7cfd46956cb4f2926b70b989cc0c2785);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1aaa04b22e748261448c5dcda09fc666.bindPopup(popup_4e9430bad7bfba5b7d615bcd3bce90c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3949aefee7cb947c1938d5dc2022d687 = L.circleMarker(\\n\",\n       \"                [27.8867, 113.095],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed01946630d8a6f994db4086fde3527e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97ae8a4e0fb68fb76b06ca550e16b7a2 = $(`&lt;div id=&quot;html_97ae8a4e0fb68fb76b06ca550e16b7a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.095             latitude:27.8867             pred_result:44.5489501953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed01946630d8a6f994db4086fde3527e.setContent(html_97ae8a4e0fb68fb76b06ca550e16b7a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3949aefee7cb947c1938d5dc2022d687.bindPopup(popup_ed01946630d8a6f994db4086fde3527e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9678fa671446ebd2c9b1aaddb57c5bb8 = L.circleMarker(\\n\",\n       \"                [27.8667, 113.167],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8cb1ce099b82c9ebc7e6a4d08b0be5f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f701893e1a781ff3a56439b955a076a = $(`&lt;div id=&quot;html_2f701893e1a781ff3a56439b955a076a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.167             latitude:27.8667             pred_result:44.8086051940918             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8cb1ce099b82c9ebc7e6a4d08b0be5f2.setContent(html_2f701893e1a781ff3a56439b955a076a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9678fa671446ebd2c9b1aaddb57c5bb8.bindPopup(popup_8cb1ce099b82c9ebc7e6a4d08b0be5f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a04ba5b8af56099841ba67d04710a634 = L.circleMarker(\\n\",\n       \"                [27.8381, 113.143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdca9ba985c555b0d118a6ae2ba2fb5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47ddd55089b24e53f3bc748464b930b2 = $(`&lt;div id=&quot;html_47ddd55089b24e53f3bc748464b930b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.143             latitude:27.8381             pred_result:44.833988189697266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdca9ba985c555b0d118a6ae2ba2fb5d.setContent(html_47ddd55089b24e53f3bc748464b930b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a04ba5b8af56099841ba67d04710a634.bindPopup(popup_fdca9ba985c555b0d118a6ae2ba2fb5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc5fa4a2914c87d917d6adb92121d40d = L.circleMarker(\\n\",\n       \"                [27.8528, 113.13],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0474c9df17e69f50dbbcebbb00df77b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84447d2a703592d16acab35449e26fa9 = $(`&lt;div id=&quot;html_84447d2a703592d16acab35449e26fa9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.13             latitude:27.8528             pred_result:44.79026794433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0474c9df17e69f50dbbcebbb00df77b0.setContent(html_84447d2a703592d16acab35449e26fa9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc5fa4a2914c87d917d6adb92121d40d.bindPopup(popup_0474c9df17e69f50dbbcebbb00df77b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3720ae5aa97a0cbbcdde296030ae31e = L.circleMarker(\\n\",\n       \"                [26.3003, 106.805],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_808540f2a5281120cb66f21f772ccae2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09023fbd8ea53489976ed4353d831426 = $(`&lt;div id=&quot;html_09023fbd8ea53489976ed4353d831426&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.805             latitude:26.3003             pred_result:31.423236846923828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_808540f2a5281120cb66f21f772ccae2.setContent(html_09023fbd8ea53489976ed4353d831426);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3720ae5aa97a0cbbcdde296030ae31e.bindPopup(popup_808540f2a5281120cb66f21f772ccae2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdc7fc2a7f6e3b4823bd71c002dec8eb = L.circleMarker(\\n\",\n       \"                [27.8336, 113.251],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fe817a71c721a466fa11e09a9cac608 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f7f773184722a945d660efdf81986fd = $(`&lt;div id=&quot;html_5f7f773184722a945d660efdf81986fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.251             latitude:27.8336             pred_result:44.877220153808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fe817a71c721a466fa11e09a9cac608.setContent(html_5f7f773184722a945d660efdf81986fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdc7fc2a7f6e3b4823bd71c002dec8eb.bindPopup(popup_8fe817a71c721a466fa11e09a9cac608)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27252c91963ed46fb49d5a2f7a1c3d29 = L.circleMarker(\\n\",\n       \"                [27.9153, 113.0048],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b80d7cdb9236fc58a22ef4c25a44b68f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_248d09b643bc8b7dda17a3fe9980f078 = $(`&lt;div id=&quot;html_248d09b643bc8b7dda17a3fe9980f078&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0048             latitude:27.9153             pred_result:44.441200256347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b80d7cdb9236fc58a22ef4c25a44b68f.setContent(html_248d09b643bc8b7dda17a3fe9980f078);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27252c91963ed46fb49d5a2f7a1c3d29.bindPopup(popup_b80d7cdb9236fc58a22ef4c25a44b68f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e42fa0d9931300110f82c766431e690 = L.circleMarker(\\n\",\n       \"                [27.9164, 112.4876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e262fc382f71f2200551a661a984f813 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_842716fa32c1e2f27984eecd74a40a34 = $(`&lt;div id=&quot;html_842716fa32c1e2f27984eecd74a40a34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4876             latitude:27.9164             pred_result:42.23601531982422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e262fc382f71f2200551a661a984f813.setContent(html_842716fa32c1e2f27984eecd74a40a34);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e42fa0d9931300110f82c766431e690.bindPopup(popup_e262fc382f71f2200551a661a984f813)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b26556e9d23430aa575d8781b9b44ffe = L.circleMarker(\\n\",\n       \"                [40.6532, 109.8756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_319aba08e3797703029fcfbb87933f19 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa10ddc9c4af8713a96c667cf7d0dfaf = $(`&lt;div id=&quot;html_fa10ddc9c4af8713a96c667cf7d0dfaf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8756             latitude:40.6532             pred_result:38.46171569824219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_319aba08e3797703029fcfbb87933f19.setContent(html_fa10ddc9c4af8713a96c667cf7d0dfaf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b26556e9d23430aa575d8781b9b44ffe.bindPopup(popup_319aba08e3797703029fcfbb87933f19)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ea1acad3f01b396ad839f24328e5d19 = L.circleMarker(\\n\",\n       \"                [40.6575, 109.8104],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4cd7fed04d4885ebac259ac92f1e5668 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69554e092096e54c57673c042c776c14 = $(`&lt;div id=&quot;html_69554e092096e54c57673c042c776c14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8104             latitude:40.6575             pred_result:38.290931701660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4cd7fed04d4885ebac259ac92f1e5668.setContent(html_69554e092096e54c57673c042c776c14);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ea1acad3f01b396ad839f24328e5d19.bindPopup(popup_4cd7fed04d4885ebac259ac92f1e5668)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4b5ddd38021d58a8eaa1a6d4b43c662 = L.circleMarker(\\n\",\n       \"                [40.5905, 110.0067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb02b3f39c9d1adb0d67533c8cc260bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1415dd4e2a7111846d87107eb7f1e1e4 = $(`&lt;div id=&quot;html_1415dd4e2a7111846d87107eb7f1e1e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0067             latitude:40.5905             pred_result:37.21235656738281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb02b3f39c9d1adb0d67533c8cc260bc.setContent(html_1415dd4e2a7111846d87107eb7f1e1e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4b5ddd38021d58a8eaa1a6d4b43c662.bindPopup(popup_eb02b3f39c9d1adb0d67533c8cc260bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f78c7f3845360a0d484b5c0db6a905f = L.circleMarker(\\n\",\n       \"                [40.6821, 109.8538],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8a72081826fcc55f8211fc57927324b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f6e0b26886912ff26190705034e5f23 = $(`&lt;div id=&quot;html_9f6e0b26886912ff26190705034e5f23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8538             latitude:40.6821             pred_result:37.587703704833984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8a72081826fcc55f8211fc57927324b.setContent(html_9f6e0b26886912ff26190705034e5f23);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f78c7f3845360a0d484b5c0db6a905f.bindPopup(popup_c8a72081826fcc55f8211fc57927324b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6181062b41ce978a69b12e12a7862a7e = L.circleMarker(\\n\",\n       \"                [40.6288, 109.8654],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7404a0157fb3265a98bd7b7cabe4d731 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0833063c4d78761e513bc03b82fed5dc = $(`&lt;div id=&quot;html_0833063c4d78761e513bc03b82fed5dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8654             latitude:40.6288             pred_result:38.689674377441406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7404a0157fb3265a98bd7b7cabe4d731.setContent(html_0833063c4d78761e513bc03b82fed5dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6181062b41ce978a69b12e12a7862a7e.bindPopup(popup_7404a0157fb3265a98bd7b7cabe4d731)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4fc68db08c515949988d87b26851114b = L.circleMarker(\\n\",\n       \"                [40.5546, 110.0377],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f07c2d291e6cb3d096016486f1caeb89 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eeb29975c8ea894be84cde7e6664e13b = $(`&lt;div id=&quot;html_eeb29975c8ea894be84cde7e6664e13b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0377             latitude:40.5546             pred_result:39.16398239135742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f07c2d291e6cb3d096016486f1caeb89.setContent(html_eeb29975c8ea894be84cde7e6664e13b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4fc68db08c515949988d87b26851114b.bindPopup(popup_f07c2d291e6cb3d096016486f1caeb89)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fea1997ebd016eac8fb5c85f37d76734 = L.circleMarker(\\n\",\n       \"                [39.8129, 110.0023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49e72589aeaa54302d5e4857e586fc95 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5eaf33227a63b445b863d02820e45b61 = $(`&lt;div id=&quot;html_5eaf33227a63b445b863d02820e45b61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0023             latitude:39.8129             pred_result:33.622737884521484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49e72589aeaa54302d5e4857e586fc95.setContent(html_5eaf33227a63b445b863d02820e45b61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fea1997ebd016eac8fb5c85f37d76734.bindPopup(popup_49e72589aeaa54302d5e4857e586fc95)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_65d4324345be05969219e201311021ef = L.circleMarker(\\n\",\n       \"                [39.8261, 109.9486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfdbc2680b2afb96c2e39ae0d5c62bcb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc54d8b7bb150a63638059bffdabc34c = $(`&lt;div id=&quot;html_cc54d8b7bb150a63638059bffdabc34c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9486             latitude:39.8261             pred_result:34.023353576660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfdbc2680b2afb96c2e39ae0d5c62bcb.setContent(html_cc54d8b7bb150a63638059bffdabc34c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_65d4324345be05969219e201311021ef.bindPopup(popup_dfdbc2680b2afb96c2e39ae0d5c62bcb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5826b0e30326dbde663f3502cbc5e22f = L.circleMarker(\\n\",\n       \"                [39.5986, 109.7736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9b4bb3d68c93be21d022039928eb753 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f57a1feb6831c95e6b81e1982afffc70 = $(`&lt;div id=&quot;html_f57a1feb6831c95e6b81e1982afffc70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7736             latitude:39.5986             pred_result:34.838565826416016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9b4bb3d68c93be21d022039928eb753.setContent(html_f57a1feb6831c95e6b81e1982afffc70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5826b0e30326dbde663f3502cbc5e22f.bindPopup(popup_b9b4bb3d68c93be21d022039928eb753)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_287f48d8e4812c499df2e8715ba2c91f = L.circleMarker(\\n\",\n       \"                [39.5989, 109.8119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c59964f0cfc771a38bf724521a7d7d7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_daabd60b9a0d790beac7730f7d3e37a0 = $(`&lt;div id=&quot;html_daabd60b9a0d790beac7730f7d3e37a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8119             latitude:39.5989             pred_result:34.75682830810547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c59964f0cfc771a38bf724521a7d7d7e.setContent(html_daabd60b9a0d790beac7730f7d3e37a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_287f48d8e4812c499df2e8715ba2c91f.bindPopup(popup_c59964f0cfc771a38bf724521a7d7d7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0d1b3b6433e86cb199e19127dafd970 = L.circleMarker(\\n\",\n       \"                [39.7884, 109.9734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9bf61a810685d688a442bc8f666d7396 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e226f9e5c20974f47895656a231d734 = $(`&lt;div id=&quot;html_3e226f9e5c20974f47895656a231d734&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9734             latitude:39.7884             pred_result:33.46963882446289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9bf61a810685d688a442bc8f666d7396.setContent(html_3e226f9e5c20974f47895656a231d734);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0d1b3b6433e86cb199e19127dafd970.bindPopup(popup_9bf61a810685d688a442bc8f666d7396)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_200edae83f7fd4efeb6d8876e867795d = L.circleMarker(\\n\",\n       \"                [40.6592, 122.2414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bae6fe1923c7e705bca3a1e41f54d65d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_973c9771319cd9bc2e0876df57ad076b = $(`&lt;div id=&quot;html_973c9771319cd9bc2e0876df57ad076b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2414             latitude:40.6592             pred_result:33.485164642333984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bae6fe1923c7e705bca3a1e41f54d65d.setContent(html_973c9771319cd9bc2e0876df57ad076b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_200edae83f7fd4efeb6d8876e867795d.bindPopup(popup_bae6fe1923c7e705bca3a1e41f54d65d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_811443acf67ebe592aea8e430e9bfd25 = L.circleMarker(\\n\",\n       \"                [40.7094, 122.2703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6e3a36137c55e03eb59e9609f3060d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_79033a92706fbf33003117770e49e3fd = $(`&lt;div id=&quot;html_79033a92706fbf33003117770e49e3fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2703             latitude:40.7094             pred_result:28.95090103149414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6e3a36137c55e03eb59e9609f3060d9.setContent(html_79033a92706fbf33003117770e49e3fd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_811443acf67ebe592aea8e430e9bfd25.bindPopup(popup_e6e3a36137c55e03eb59e9609f3060d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fedd27372b4f09ac98e3a59b5943d55 = L.circleMarker(\\n\",\n       \"                [40.6511, 122.215],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0ff325d09d73d68873f1b9c7b16dcac2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e7a9e359d75a6df7fcf499a4a71d49a = $(`&lt;div id=&quot;html_4e7a9e359d75a6df7fcf499a4a71d49a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.215             latitude:40.6511             pred_result:31.3104305267334             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0ff325d09d73d68873f1b9c7b16dcac2.setContent(html_4e7a9e359d75a6df7fcf499a4a71d49a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fedd27372b4f09ac98e3a59b5943d55.bindPopup(popup_0ff325d09d73d68873f1b9c7b16dcac2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5394618cd7b1334801d658ec6a4f0e50 = L.circleMarker(\\n\",\n       \"                [40.0625, 124.3303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2815620edad3589022b7918bef8ef64c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abcd098334c49aa46ab34db15eb40d18 = $(`&lt;div id=&quot;html_abcd098334c49aa46ab34db15eb40d18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3303             latitude:40.0625             pred_result:13.707723617553711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2815620edad3589022b7918bef8ef64c.setContent(html_abcd098334c49aa46ab34db15eb40d18);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5394618cd7b1334801d658ec6a4f0e50.bindPopup(popup_2815620edad3589022b7918bef8ef64c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85e6782166d3ea6458ec32f5cf78ebb2 = L.circleMarker(\\n\",\n       \"                [40.1503, 124.4256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_835d2c86464f62c52b9a976b22c9e84a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91be68b451d288c5b0ecf429ea83215e = $(`&lt;div id=&quot;html_91be68b451d288c5b0ecf429ea83215e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.4256             latitude:40.1503             pred_result:15.9156494140625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_835d2c86464f62c52b9a976b22c9e84a.setContent(html_91be68b451d288c5b0ecf429ea83215e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85e6782166d3ea6458ec32f5cf78ebb2.bindPopup(popup_835d2c86464f62c52b9a976b22c9e84a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cac43880aa494bc9001602e13f2beb6f = L.circleMarker(\\n\",\n       \"                [40.1461, 124.3933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57daabedaca1d27abce0cd19d87b9020 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a292633314601ee6fc2ffef4857676b5 = $(`&lt;div id=&quot;html_a292633314601ee6fc2ffef4857676b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3933             latitude:40.1461             pred_result:16.12135887145996             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57daabedaca1d27abce0cd19d87b9020.setContent(html_a292633314601ee6fc2ffef4857676b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cac43880aa494bc9001602e13f2beb6f.bindPopup(popup_57daabedaca1d27abce0cd19d87b9020)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_370e8e2f12e288dd500472ba044761e7 = L.circleMarker(\\n\",\n       \"                [40.1194, 124.3678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f3ee75af44fa732e63d5ff25d679b34 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0442eccdd90e6fb369bf24e623576059 = $(`&lt;div id=&quot;html_0442eccdd90e6fb369bf24e623576059&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3678             latitude:40.1194             pred_result:13.246356964111328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f3ee75af44fa732e63d5ff25d679b34.setContent(html_0442eccdd90e6fb369bf24e623576059);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_370e8e2f12e288dd500472ba044761e7.bindPopup(popup_3f3ee75af44fa732e63d5ff25d679b34)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c3a7183366f4d59f20d07fa266b1cda = L.circleMarker(\\n\",\n       \"                [41.1556, 122.0247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46c154287cd1198e90276dbb73080c78 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e44a484fba83531c688ccbdfb415d13 = $(`&lt;div id=&quot;html_5e44a484fba83531c688ccbdfb415d13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0247             latitude:41.1556             pred_result:21.087257385253906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46c154287cd1198e90276dbb73080c78.setContent(html_5e44a484fba83531c688ccbdfb415d13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c3a7183366f4d59f20d07fa266b1cda.bindPopup(popup_46c154287cd1198e90276dbb73080c78)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d0e5562f65682c050f6d49a64ef760c9 = L.circleMarker(\\n\",\n       \"                [41.0903, 122.0539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4bc103773546395d7427eaf9e2088d1a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_157991c21b70c33bb95a9068b8c69520 = $(`&lt;div id=&quot;html_157991c21b70c33bb95a9068b8c69520&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0539             latitude:41.0903             pred_result:23.679546356201172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4bc103773546395d7427eaf9e2088d1a.setContent(html_157991c21b70c33bb95a9068b8c69520);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d0e5562f65682c050f6d49a64ef760c9.bindPopup(popup_4bc103773546395d7427eaf9e2088d1a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11551105b070a79df5030711c230d00f = L.circleMarker(\\n\",\n       \"                [41.1042, 121.835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5e1152bce925010ed5adc96315acf36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_64b2a7150e53c825718fec125371a4bc = $(`&lt;div id=&quot;html_64b2a7150e53c825718fec125371a4bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.835             latitude:41.1042             pred_result:25.564476013183594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5e1152bce925010ed5adc96315acf36.setContent(html_64b2a7150e53c825718fec125371a4bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11551105b070a79df5030711c230d00f.bindPopup(popup_d5e1152bce925010ed5adc96315acf36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63ce61ca461d8e0cbaa1acec5482d477 = L.circleMarker(\\n\",\n       \"                [40.7136, 120.9092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_778a11ade1727276b7a1d8b9c6faad18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c09b898a7e7f00aa4155b95a322ae359 = $(`&lt;div id=&quot;html_c09b898a7e7f00aa4155b95a322ae359&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.9092             latitude:40.7136             pred_result:32.97279739379883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_778a11ade1727276b7a1d8b9c6faad18.setContent(html_c09b898a7e7f00aa4155b95a322ae359);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63ce61ca461d8e0cbaa1acec5482d477.bindPopup(popup_778a11ade1727276b7a1d8b9c6faad18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe86ef318c46692c3a82d92fba4cd1bb = L.circleMarker(\\n\",\n       \"                [40.7514, 120.8392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5844d74bd8b271d25577c753d810cbe4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f66b322474f2af6fa7ee2441051e21ad = $(`&lt;div id=&quot;html_f66b322474f2af6fa7ee2441051e21ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8392             latitude:40.7514             pred_result:26.289552688598633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5844d74bd8b271d25577c753d810cbe4.setContent(html_f66b322474f2af6fa7ee2441051e21ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe86ef318c46692c3a82d92fba4cd1bb.bindPopup(popup_5844d74bd8b271d25577c753d810cbe4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3e4717f3ccc5cffecce3e5d32f5ace8 = L.circleMarker(\\n\",\n       \"                [40.715, 120.8478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5eb32798c50fe485b0d922231c0f6b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f3cd77d8e14fd252a0049fe95424a70 = $(`&lt;div id=&quot;html_0f3cd77d8e14fd252a0049fe95424a70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8478             latitude:40.715             pred_result:31.84878158569336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5eb32798c50fe485b0d922231c0f6b5.setContent(html_0f3cd77d8e14fd252a0049fe95424a70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3e4717f3ccc5cffecce3e5d32f5ace8.bindPopup(popup_d5eb32798c50fe485b0d922231c0f6b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f99202df5d69fd1c343dfd117291377f = L.circleMarker(\\n\",\n       \"                [40.7736, 120.8631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27ba3721fae034d242a56c5951f597b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_466f4bbc89ca8d05aace132e65579aac = $(`&lt;div id=&quot;html_466f4bbc89ca8d05aace132e65579aac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.8631             latitude:40.7736             pred_result:25.986713409423828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27ba3721fae034d242a56c5951f597b3.setContent(html_466f4bbc89ca8d05aace132e65579aac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f99202df5d69fd1c343dfd117291377f.bindPopup(popup_27ba3721fae034d242a56c5951f597b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afedf24dc16b49e2266451baaccc7357 = L.circleMarker(\\n\",\n       \"                [24.9117, 118.5819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7685852ab46c8aa767531aef004edb1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_307f7c9c7f249f31c4a9ad56e408f24b = $(`&lt;div id=&quot;html_307f7c9c7f249f31c4a9ad56e408f24b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5819             latitude:24.9117             pred_result:22.464797973632812             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7685852ab46c8aa767531aef004edb1.setContent(html_307f7c9c7f249f31c4a9ad56e408f24b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afedf24dc16b49e2266451baaccc7357.bindPopup(popup_e7685852ab46c8aa767531aef004edb1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d6ac18738ad534f2d531a77f5aaad57 = L.circleMarker(\\n\",\n       \"                [24.8978, 118.5972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dcc21b80939f4f61084cd58830b1f479 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb44097ef4c2d6e9a3739a89219719e9 = $(`&lt;div id=&quot;html_cb44097ef4c2d6e9a3739a89219719e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5972             latitude:24.8978             pred_result:25.405841827392578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dcc21b80939f4f61084cd58830b1f479.setContent(html_cb44097ef4c2d6e9a3739a89219719e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d6ac18738ad534f2d531a77f5aaad57.bindPopup(popup_dcc21b80939f4f61084cd58830b1f479)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87a7eef193b5258f4f6c2c24414a75d5 = L.circleMarker(\\n\",\n       \"                [24.9617, 118.6108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2dff225d8ec33614a789789a1bfed60 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d842d5eee678829f86ed2f2b09ecab1d = $(`&lt;div id=&quot;html_d842d5eee678829f86ed2f2b09ecab1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6108             latitude:24.9617             pred_result:25.819400787353516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2dff225d8ec33614a789789a1bfed60.setContent(html_d842d5eee678829f86ed2f2b09ecab1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87a7eef193b5258f4f6c2c24414a75d5.bindPopup(popup_f2dff225d8ec33614a789789a1bfed60)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_654417f347255010a12b11c9f79526e7 = L.circleMarker(\\n\",\n       \"                [36.2289, 117.6789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b586a2f87c7dd3d29ac58a7e52f38aa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c99d77103aa368621c11cb4f2117210e = $(`&lt;div id=&quot;html_c99d77103aa368621c11cb4f2117210e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6789             latitude:36.2289             pred_result:44.53999710083008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b586a2f87c7dd3d29ac58a7e52f38aa.setContent(html_c99d77103aa368621c11cb4f2117210e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_654417f347255010a12b11c9f79526e7.bindPopup(popup_2b586a2f87c7dd3d29ac58a7e52f38aa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80cd3fc1fcc87797d379d9f86298c654 = L.circleMarker(\\n\",\n       \"                [35.0573, 118.3418],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b9d311508cefacedb0c90ab0a235fc7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74ee59146637e26b30a63e8a90bf6d0a = $(`&lt;div id=&quot;html_74ee59146637e26b30a63e8a90bf6d0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3418             latitude:35.0573             pred_result:38.3930778503418             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b9d311508cefacedb0c90ab0a235fc7.setContent(html_74ee59146637e26b30a63e8a90bf6d0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80cd3fc1fcc87797d379d9f86298c654.bindPopup(popup_7b9d311508cefacedb0c90ab0a235fc7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7c71ae2f3ee929af712cad2e80c6d28 = L.circleMarker(\\n\",\n       \"                [35.0622, 118.2939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffd8e28c6488d4fe360df3131ffe24ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da8a83c1c41e3c559c412a11d30d5c9a = $(`&lt;div id=&quot;html_da8a83c1c41e3c559c412a11d30d5c9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2939             latitude:35.0622             pred_result:38.66545867919922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffd8e28c6488d4fe360df3131ffe24ba.setContent(html_da8a83c1c41e3c559c412a11d30d5c9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7c71ae2f3ee929af712cad2e80c6d28.bindPopup(popup_ffd8e28c6488d4fe360df3131ffe24ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b6b099b7fb2c776bfb899cee9a1d3f8 = L.circleMarker(\\n\",\n       \"                [34.9817, 118.2764],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa16f2bef3b0d5803d3fb75605dea30e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b39f59a98bce165de93fec54b8923097 = $(`&lt;div id=&quot;html_b39f59a98bce165de93fec54b8923097&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.2764             latitude:34.9817             pred_result:39.04102325439453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa16f2bef3b0d5803d3fb75605dea30e.setContent(html_b39f59a98bce165de93fec54b8923097);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b6b099b7fb2c776bfb899cee9a1d3f8.bindPopup(popup_fa16f2bef3b0d5803d3fb75605dea30e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c6c30a20bbf830baaa61bdde208aef7 = L.circleMarker(\\n\",\n       \"                [35.0896, 118.4023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74cb4fd17a287db6a90e7a6799863321 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f14f1967266050b23e5ef61a7b650248 = $(`&lt;div id=&quot;html_f14f1967266050b23e5ef61a7b650248&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4023             latitude:35.0896             pred_result:38.359405517578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74cb4fd17a287db6a90e7a6799863321.setContent(html_f14f1967266050b23e5ef61a7b650248);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c6c30a20bbf830baaa61bdde208aef7.bindPopup(popup_74cb4fd17a287db6a90e7a6799863321)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_949ef0bb5b25a514b1a88c0f1ad0a083 = L.circleMarker(\\n\",\n       \"                [37.4664, 116.3061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6eaba1cf53ee6486c1d6598951fd62eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13f9ccb89aabdbef01c6d76abcf6c028 = $(`&lt;div id=&quot;html_13f9ccb89aabdbef01c6d76abcf6c028&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3061             latitude:37.4664             pred_result:57.824249267578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6eaba1cf53ee6486c1d6598951fd62eb.setContent(html_13f9ccb89aabdbef01c6d76abcf6c028);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_949ef0bb5b25a514b1a88c0f1ad0a083.bindPopup(popup_6eaba1cf53ee6486c1d6598951fd62eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ed3a4afe07d945e991dc97667933195 = L.circleMarker(\\n\",\n       \"                [36.4372, 115.9848],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_773c5546eaf3e391cc96b5c42817fd4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3d293d41acf7981b9ae6a23be41a56c = $(`&lt;div id=&quot;html_d3d293d41acf7981b9ae6a23be41a56c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9848             latitude:36.4372             pred_result:60.46045684814453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_773c5546eaf3e391cc96b5c42817fd4a.setContent(html_d3d293d41acf7981b9ae6a23be41a56c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ed3a4afe07d945e991dc97667933195.bindPopup(popup_773c5546eaf3e391cc96b5c42817fd4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfa4cc5e71cfed0e49dfab2229a32d25 = L.circleMarker(\\n\",\n       \"                [36.4796, 115.9835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c50cc5746027f61f43b359dea19faf32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2bec0c4d838a9496703b93ddd2085c0 = $(`&lt;div id=&quot;html_c2bec0c4d838a9496703b93ddd2085c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9835             latitude:36.4796             pred_result:60.572635650634766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c50cc5746027f61f43b359dea19faf32.setContent(html_c2bec0c4d838a9496703b93ddd2085c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfa4cc5e71cfed0e49dfab2229a32d25.bindPopup(popup_c50cc5746027f61f43b359dea19faf32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9273e77585cc036f963a5dd6fbcac59 = L.circleMarker(\\n\",\n       \"                [37.3803, 118.0062],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_861de1894f1dd581df75cb86a065934b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0fee6d4e155073e722b9f055d27b3470 = $(`&lt;div id=&quot;html_0fee6d4e155073e722b9f055d27b3470&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0062             latitude:37.3803             pred_result:41.318389892578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_861de1894f1dd581df75cb86a065934b.setContent(html_0fee6d4e155073e722b9f055d27b3470);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9273e77585cc036f963a5dd6fbcac59.bindPopup(popup_861de1894f1dd581df75cb86a065934b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4665d35666378550f7e467126fce0c4 = L.circleMarker(\\n\",\n       \"                [37.3617, 118.0018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8539ec2f292c9fa38b40da37f36ca06d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c7ece3f11d72d9b05e57b238a3b320a = $(`&lt;div id=&quot;html_2c7ece3f11d72d9b05e57b238a3b320a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0018             latitude:37.3617             pred_result:42.486122131347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8539ec2f292c9fa38b40da37f36ca06d.setContent(html_2c7ece3f11d72d9b05e57b238a3b320a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4665d35666378550f7e467126fce0c4.bindPopup(popup_8539ec2f292c9fa38b40da37f36ca06d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9241afffb7bb154aaeea41464ff8862 = L.circleMarker(\\n\",\n       \"                [37.393, 117.9776],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_202988aa52dfe5a4fec571c85bf5609b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7afed5ac7199ed5f7e2b57b7d19a6e1f = $(`&lt;div id=&quot;html_7afed5ac7199ed5f7e2b57b7d19a6e1f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9776             latitude:37.393             pred_result:42.507476806640625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_202988aa52dfe5a4fec571c85bf5609b.setContent(html_7afed5ac7199ed5f7e2b57b7d19a6e1f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9241afffb7bb154aaeea41464ff8862.bindPopup(popup_202988aa52dfe5a4fec571c85bf5609b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19b8f111e5a72b323125087f121311dd = L.circleMarker(\\n\",\n       \"                [36.838, 118.0448],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d088a104b37fa225484b3fbfc2488d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_054962e807387c4cf4583b5539ea0275 = $(`&lt;div id=&quot;html_054962e807387c4cf4583b5539ea0275&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0448             latitude:36.838             pred_result:41.86348342895508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d088a104b37fa225484b3fbfc2488d8.setContent(html_054962e807387c4cf4583b5539ea0275);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19b8f111e5a72b323125087f121311dd.bindPopup(popup_2d088a104b37fa225484b3fbfc2488d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ca6de71f616b2d358bd47184244cab2 = L.circleMarker(\\n\",\n       \"                [36.497, 117.8477],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9167798abfa02d8cde4ea8dbbe4e3163 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_058d59479bdda333ebb8e2c95209652e = $(`&lt;div id=&quot;html_058d59479bdda333ebb8e2c95209652e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8477             latitude:36.497             pred_result:43.37163543701172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9167798abfa02d8cde4ea8dbbe4e3163.setContent(html_058d59479bdda333ebb8e2c95209652e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ca6de71f616b2d358bd47184244cab2.bindPopup(popup_9167798abfa02d8cde4ea8dbbe4e3163)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ee190498337d6881f3aff2211c13ce2 = L.circleMarker(\\n\",\n       \"                [36.6377, 117.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4856150f28f870630481cb5aac5367f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1504ef824b894a2bc1979c55ae169f8 = $(`&lt;div id=&quot;html_d1504ef824b894a2bc1979c55ae169f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9544             latitude:36.6377             pred_result:41.7618522644043             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4856150f28f870630481cb5aac5367f6.setContent(html_d1504ef824b894a2bc1979c55ae169f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ee190498337d6881f3aff2211c13ce2.bindPopup(popup_4856150f28f870630481cb5aac5367f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_220e00333a2fa94b2fae8449b9e2925e = L.circleMarker(\\n\",\n       \"                [36.8198, 118.3092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1bcc827289a86f31c42a7274b81217dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f42e99fe384ce4c26aca32e6b9b4829e = $(`&lt;div id=&quot;html_f42e99fe384ce4c26aca32e6b9b4829e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3092             latitude:36.8198             pred_result:40.15191650390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1bcc827289a86f31c42a7274b81217dc.setContent(html_f42e99fe384ce4c26aca32e6b9b4829e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_220e00333a2fa94b2fae8449b9e2925e.bindPopup(popup_1bcc827289a86f31c42a7274b81217dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c2eeecab99b3f2b9d3c05f5470aaa75 = L.circleMarker(\\n\",\n       \"                [36.8041, 117.8512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5733ceb2bef5aa58108a99ec32c3f692 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_724403ca526dda083137c5c4ed66c754 = $(`&lt;div id=&quot;html_724403ca526dda083137c5c4ed66c754&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8512             latitude:36.8041             pred_result:43.70225524902344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5733ceb2bef5aa58108a99ec32c3f692.setContent(html_724403ca526dda083137c5c4ed66c754);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c2eeecab99b3f2b9d3c05f5470aaa75.bindPopup(popup_5733ceb2bef5aa58108a99ec32c3f692)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96c919004db8116f92d89ae2810c1ad1 = L.circleMarker(\\n\",\n       \"                [34.864000000000004, 117.5564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00a700bec39c03c97ab14aec818520b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9aa0b81e54f609bc9ad65aafad77545 = $(`&lt;div id=&quot;html_f9aa0b81e54f609bc9ad65aafad77545&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5564             latitude:34.864000000000004             pred_result:47.196834564208984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00a700bec39c03c97ab14aec818520b1.setContent(html_f9aa0b81e54f609bc9ad65aafad77545);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96c919004db8116f92d89ae2810c1ad1.bindPopup(popup_00a700bec39c03c97ab14aec818520b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46e038867cb6470f792174f6ecf46af5 = L.circleMarker(\\n\",\n       \"                [34.7837, 117.2852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eaba2736e4a1952dec6a9b3b8140868b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_beb858bb5c7c53659cc61d2113511c38 = $(`&lt;div id=&quot;html_beb858bb5c7c53659cc61d2113511c38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2852             latitude:34.7837             pred_result:50.20923614501953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eaba2736e4a1952dec6a9b3b8140868b.setContent(html_beb858bb5c7c53659cc61d2113511c38);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46e038867cb6470f792174f6ecf46af5.bindPopup(popup_eaba2736e4a1952dec6a9b3b8140868b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3e300785ba50db4bf3a0f201ec4efa7 = L.circleMarker(\\n\",\n       \"                [34.7745, 117.5852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7ffc1d44c547f0b4dc3801c852ff9cfa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ecf7777cf3a9d8249499935ac625463 = $(`&lt;div id=&quot;html_8ecf7777cf3a9d8249499935ac625463&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5852             latitude:34.7745             pred_result:46.03628158569336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7ffc1d44c547f0b4dc3801c852ff9cfa.setContent(html_8ecf7777cf3a9d8249499935ac625463);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3e300785ba50db4bf3a0f201ec4efa7.bindPopup(popup_7ffc1d44c547f0b4dc3801c852ff9cfa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ab367a440ca80668ce9cc30c6f70693 = L.circleMarker(\\n\",\n       \"                [34.5667, 117.732],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_537dd648fbe180eae2b952788f9dac02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9011cc50f7ba2bd786d0619a0f34aa90 = $(`&lt;div id=&quot;html_9011cc50f7ba2bd786d0619a0f34aa90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.732             latitude:34.5667             pred_result:45.4222412109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_537dd648fbe180eae2b952788f9dac02.setContent(html_9011cc50f7ba2bd786d0619a0f34aa90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ab367a440ca80668ce9cc30c6f70693.bindPopup(popup_537dd648fbe180eae2b952788f9dac02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac1b1f36f79372e52dc1173679cde428 = L.circleMarker(\\n\",\n       \"                [35.0992, 117.4518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51e4f8bad5a9a77ae340cf7e78580331 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da9f8dcfea7a59b32b0fd1299474558a = $(`&lt;div id=&quot;html_da9f8dcfea7a59b32b0fd1299474558a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4518             latitude:35.0992             pred_result:48.62078094482422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51e4f8bad5a9a77ae340cf7e78580331.setContent(html_da9f8dcfea7a59b32b0fd1299474558a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac1b1f36f79372e52dc1173679cde428.bindPopup(popup_51e4f8bad5a9a77ae340cf7e78580331)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b98307b76c688bfd038f1ced92a0e332 = L.circleMarker(\\n\",\n       \"                [37.5639, 121.2514],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ce3ec659158c99f88160831d77721e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a977b053841fa5945e9015767c9f034a = $(`&lt;div id=&quot;html_a977b053841fa5945e9015767c9f034a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2514             latitude:37.5639             pred_result:11.101422309875488             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ce3ec659158c99f88160831d77721e3.setContent(html_a977b053841fa5945e9015767c9f034a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b98307b76c688bfd038f1ced92a0e332.bindPopup(popup_2ce3ec659158c99f88160831d77721e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16cfeb3ec313282bec8b570f9c2d3ae2 = L.circleMarker(\\n\",\n       \"                [37.5436, 121.3181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0581ba982ee4b4a09121268b4b0196d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e33d7f226e176bb1947e87791b07515d = $(`&lt;div id=&quot;html_e33d7f226e176bb1947e87791b07515d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.3181             latitude:37.5436             pred_result:12.010639190673828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0581ba982ee4b4a09121268b4b0196d.setContent(html_e33d7f226e176bb1947e87791b07515d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16cfeb3ec313282bec8b570f9c2d3ae2.bindPopup(popup_e0581ba982ee4b4a09121268b4b0196d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3997de1479e1a09beab5c0320a313cfc = L.circleMarker(\\n\",\n       \"                [37.4967, 121.2611],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97be4489ad07a6813e157c68d238d58c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b85174ee96588483ed912917f40b05ac = $(`&lt;div id=&quot;html_b85174ee96588483ed912917f40b05ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2611             latitude:37.4967             pred_result:9.583213806152344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97be4489ad07a6813e157c68d238d58c.setContent(html_b85174ee96588483ed912917f40b05ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3997de1479e1a09beab5c0320a313cfc.bindPopup(popup_97be4489ad07a6813e157c68d238d58c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d67577cd12e5572385c6f26482ba149 = L.circleMarker(\\n\",\n       \"                [36.7019, 119.12],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27ea276ebaa69c9570657950772f571e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39c9074fbdf8276114b1a96054f53810 = $(`&lt;div id=&quot;html_39c9074fbdf8276114b1a96054f53810&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.12             latitude:36.7019             pred_result:32.57383728027344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27ea276ebaa69c9570657950772f571e.setContent(html_39c9074fbdf8276114b1a96054f53810);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d67577cd12e5572385c6f26482ba149.bindPopup(popup_27ea276ebaa69c9570657950772f571e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a57b79256ed857976ab97294f5bd8fb = L.circleMarker(\\n\",\n       \"                [36.7008, 119.1425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa34e6a7496de4c301bda39066f8854a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce4b7bf302f1a3fc85b69c7ddd9b3afb = $(`&lt;div id=&quot;html_ce4b7bf302f1a3fc85b69c7ddd9b3afb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1425             latitude:36.7008             pred_result:31.108898162841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa34e6a7496de4c301bda39066f8854a.setContent(html_ce4b7bf302f1a3fc85b69c7ddd9b3afb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a57b79256ed857976ab97294f5bd8fb.bindPopup(popup_aa34e6a7496de4c301bda39066f8854a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4830ba1575d2fc36f4b59e6f57357c3 = L.circleMarker(\\n\",\n       \"                [36.7731, 119.1939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd63167d20c3abc7425dc28e400304ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_250176672a55987615cda0678a7c20ae = $(`&lt;div id=&quot;html_250176672a55987615cda0678a7c20ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1939             latitude:36.7731             pred_result:30.659456253051758             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd63167d20c3abc7425dc28e400304ad.setContent(html_250176672a55987615cda0678a7c20ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4830ba1575d2fc36f4b59e6f57357c3.bindPopup(popup_fd63167d20c3abc7425dc28e400304ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d617f734097bf63489683f67fe3d587a = L.circleMarker(\\n\",\n       \"                [35.42800000000001, 116.6305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a86a0444ecfd480c6607aba362ec5dff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2a2182142a6a863fd5de59dcebf426f = $(`&lt;div id=&quot;html_e2a2182142a6a863fd5de59dcebf426f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6305             latitude:35.42800000000001             pred_result:54.234840393066406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a86a0444ecfd480c6607aba362ec5dff.setContent(html_e2a2182142a6a863fd5de59dcebf426f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d617f734097bf63489683f67fe3d587a.bindPopup(popup_a86a0444ecfd480c6607aba362ec5dff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57f288ce7e689da4bf7b76767b55883c = L.circleMarker(\\n\",\n       \"                [35.4144, 116.5856],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fa0e265f1e5a8f5355051398fc34fa6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0557d6b7009f5cceeca4f9c23b79e6b = $(`&lt;div id=&quot;html_e0557d6b7009f5cceeca4f9c23b79e6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5856             latitude:35.4144             pred_result:53.85175323486328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fa0e265f1e5a8f5355051398fc34fa6.setContent(html_e0557d6b7009f5cceeca4f9c23b79e6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57f288ce7e689da4bf7b76767b55883c.bindPopup(popup_6fa0e265f1e5a8f5355051398fc34fa6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdf23caddbd227509ec12d3fce748576 = L.circleMarker(\\n\",\n       \"                [35.4039, 116.5546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bcbe4e18e81545270d1751dbdd6c0d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e995c20c3c2274c15f913cbf7c84e97d = $(`&lt;div id=&quot;html_e995c20c3c2274c15f913cbf7c84e97d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5546             latitude:35.4039             pred_result:54.45640563964844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bcbe4e18e81545270d1751dbdd6c0d6.setContent(html_e995c20c3c2274c15f913cbf7c84e97d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdf23caddbd227509ec12d3fce748576.bindPopup(popup_8bcbe4e18e81545270d1751dbdd6c0d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d38a49b3adffb5b86cd84a5dfe93e82c = L.circleMarker(\\n\",\n       \"                [36.1942, 117.1436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1eaa758cc13a2d36092f77e33258d1d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d238c3fb0c95c3d3e7819c250319d85f = $(`&lt;div id=&quot;html_d238c3fb0c95c3d3e7819c250319d85f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1436             latitude:36.1942             pred_result:50.521087646484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1eaa758cc13a2d36092f77e33258d1d4.setContent(html_d238c3fb0c95c3d3e7819c250319d85f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d38a49b3adffb5b86cd84a5dfe93e82c.bindPopup(popup_1eaa758cc13a2d36092f77e33258d1d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdd1f20f49125f0b786d36377286022c = L.circleMarker(\\n\",\n       \"                [36.1942, 117.0881],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8e55339244ab6c8e22825e3d69d4c58 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d65b3b773b9ac6606ab86d5a26a7640 = $(`&lt;div id=&quot;html_9d65b3b773b9ac6606ab86d5a26a7640&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0881             latitude:36.1942             pred_result:50.63874816894531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8e55339244ab6c8e22825e3d69d4c58.setContent(html_9d65b3b773b9ac6606ab86d5a26a7640);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdd1f20f49125f0b786d36377286022c.bindPopup(popup_b8e55339244ab6c8e22825e3d69d4c58)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb4e0a3413ec1e8b60b30fe0d69cabcd = L.circleMarker(\\n\",\n       \"                [36.1758, 117.1081],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_431df9b8331206402579998d5e46e576 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_307391ac79043f61ef4cb8e38c5e0e6a = $(`&lt;div id=&quot;html_307391ac79043f61ef4cb8e38c5e0e6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1081             latitude:36.1758             pred_result:50.393798828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_431df9b8331206402579998d5e46e576.setContent(html_307391ac79043f61ef4cb8e38c5e0e6a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb4e0a3413ec1e8b60b30fe0d69cabcd.bindPopup(popup_431df9b8331206402579998d5e46e576)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_391dc9c86529b081b46f5d2c7f51e278 = L.circleMarker(\\n\",\n       \"                [35.4178, 119.4641],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a91c07f62a5f82b61dcc48ce6f10aa6d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_278fb01f1a5e6ccbbe40179c2b3e3d53 = $(`&lt;div id=&quot;html_278fb01f1a5e6ccbbe40179c2b3e3d53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.4641             latitude:35.4178             pred_result:29.709274291992188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a91c07f62a5f82b61dcc48ce6f10aa6d.setContent(html_278fb01f1a5e6ccbbe40179c2b3e3d53);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_391dc9c86529b081b46f5d2c7f51e278.bindPopup(popup_a91c07f62a5f82b61dcc48ce6f10aa6d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a14b521596273938b70fc3ccaf94bbe = L.circleMarker(\\n\",\n       \"                [35.4234, 119.5198],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a911414e06b95f253b8ca938a35814f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5afb365625b0c2ec155fead5d1f78998 = $(`&lt;div id=&quot;html_5afb365625b0c2ec155fead5d1f78998&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5198             latitude:35.4234             pred_result:28.363536834716797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a911414e06b95f253b8ca938a35814f4.setContent(html_5afb365625b0c2ec155fead5d1f78998);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a14b521596273938b70fc3ccaf94bbe.bindPopup(popup_a911414e06b95f253b8ca938a35814f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba4b015596e286a2b24204f65c0c0200 = L.circleMarker(\\n\",\n       \"                [35.3962, 119.54],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee8d7356766599af27d730b63b9d71fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39b9a59a63b3260ed80f94319838866a = $(`&lt;div id=&quot;html_39b9a59a63b3260ed80f94319838866a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.54             latitude:35.3962             pred_result:27.23401641845703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee8d7356766599af27d730b63b9d71fd.setContent(html_39b9a59a63b3260ed80f94319838866a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba4b015596e286a2b24204f65c0c0200.bindPopup(popup_ee8d7356766599af27d730b63b9d71fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_468ddd3bcbb142ab8b7a066713028511 = L.circleMarker(\\n\",\n       \"                [37.4294, 122.1206],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eff264064c75aa9d895ce429531018a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6cbf76cb897e65a794c48957b28994f = $(`&lt;div id=&quot;html_a6cbf76cb897e65a794c48957b28994f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.1206             latitude:37.4294             pred_result:7.703866004943848             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eff264064c75aa9d895ce429531018a4.setContent(html_a6cbf76cb897e65a794c48957b28994f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_468ddd3bcbb142ab8b7a066713028511.bindPopup(popup_eff264064c75aa9d895ce429531018a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d786384f56121e10b8baaa72afccade9 = L.circleMarker(\\n\",\n       \"                [37.4658, 118.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6379fb4f92b0a9d94d114f7a74031166 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8765ad5d0ac058b0ec9a129afa1366f4 = $(`&lt;div id=&quot;html_8765ad5d0ac058b0ec9a129afa1366f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5019             latitude:37.4658             pred_result:36.24717330932617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6379fb4f92b0a9d94d114f7a74031166.setContent(html_8765ad5d0ac058b0ec9a129afa1366f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d786384f56121e10b8baaa72afccade9.bindPopup(popup_6379fb4f92b0a9d94d114f7a74031166)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b35bc5aa64a25e62f4710742165a4bf = L.circleMarker(\\n\",\n       \"                [37.4314, 118.6672],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f8d529f2ec370b56676a8ba9b347147 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d48d2b2d89c374c325ee77c905254c84 = $(`&lt;div id=&quot;html_d48d2b2d89c374c325ee77c905254c84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6672             latitude:37.4314             pred_result:36.64717102050781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f8d529f2ec370b56676a8ba9b347147.setContent(html_d48d2b2d89c374c325ee77c905254c84);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b35bc5aa64a25e62f4710742165a4bf.bindPopup(popup_9f8d529f2ec370b56676a8ba9b347147)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c67b6a1d4b544395f7f3fbb0c64b8fb8 = L.circleMarker(\\n\",\n       \"                [37.4442, 118.5857],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfceb0e25cbfa23d96ab80e1534075ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d8e7ff9db8f3d95ee53ec528b8ecdd5 = $(`&lt;div id=&quot;html_7d8e7ff9db8f3d95ee53ec528b8ecdd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5857             latitude:37.4442             pred_result:36.834022521972656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfceb0e25cbfa23d96ab80e1534075ed.setContent(html_7d8e7ff9db8f3d95ee53ec528b8ecdd5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c67b6a1d4b544395f7f3fbb0c64b8fb8.bindPopup(popup_bfceb0e25cbfa23d96ab80e1534075ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0b8f0563d69603656cdb63a10bfedca = L.circleMarker(\\n\",\n       \"                [24.769519, 113.586606],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3160cf9af16c44fbd3fb718a0bd74eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c4f96f48aa4875fa8b245374f9102db = $(`&lt;div id=&quot;html_9c4f96f48aa4875fa8b245374f9102db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.586606             latitude:24.769519             pred_result:37.321815490722656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3160cf9af16c44fbd3fb718a0bd74eb.setContent(html_9c4f96f48aa4875fa8b245374f9102db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0b8f0563d69603656cdb63a10bfedca.bindPopup(popup_c3160cf9af16c44fbd3fb718a0bd74eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a996708dc93eed497442f9f06e395f08 = L.circleMarker(\\n\",\n       \"                [24.81119444, 113.5593889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb8d055463db9abd7df7824756b04fc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07d24f683b1ada1aeb24ef3d85f69c4d = $(`&lt;div id=&quot;html_07d24f683b1ada1aeb24ef3d85f69c4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5593889             latitude:24.81119444             pred_result:37.27504348754883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb8d055463db9abd7df7824756b04fc4.setContent(html_07d24f683b1ada1aeb24ef3d85f69c4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a996708dc93eed497442f9f06e395f08.bindPopup(popup_cb8d055463db9abd7df7824756b04fc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_236a35a04a4d009b7000f12a9e7cbc15 = L.circleMarker(\\n\",\n       \"                [24.795928, 113.59806100000002],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af80a5bb6d2ceb596e6af3e884e694ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f285279de74c3ebb68c89113eee3978 = $(`&lt;div id=&quot;html_8f285279de74c3ebb68c89113eee3978&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.59806100000002             latitude:24.795928             pred_result:37.302425384521484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af80a5bb6d2ceb596e6af3e884e694ba.setContent(html_8f285279de74c3ebb68c89113eee3978);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_236a35a04a4d009b7000f12a9e7cbc15.bindPopup(popup_af80a5bb6d2ceb596e6af3e884e694ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52a06bc9cf79d1b6415f3bf3d32f9272 = L.circleMarker(\\n\",\n       \"                [24.77908333, 113.6734722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff63a7d6fd26859e1c672c123ebb7337 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17c25b9f28476ab3caf99363aedb542a = $(`&lt;div id=&quot;html_17c25b9f28476ab3caf99363aedb542a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6734722             latitude:24.77908333             pred_result:36.000953674316406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff63a7d6fd26859e1c672c123ebb7337.setContent(html_17c25b9f28476ab3caf99363aedb542a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52a06bc9cf79d1b6415f3bf3d32f9272.bindPopup(popup_ff63a7d6fd26859e1c672c123ebb7337)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b189e7a1c9ed69c742d0cbac4323fe3c = L.circleMarker(\\n\",\n       \"                [24.68636111, 113.59708329999998],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42ac84f1659879ad7adb7997adeea860 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1dae2d5a52d7ff65b1bbdc44aaf25fea = $(`&lt;div id=&quot;html_1dae2d5a52d7ff65b1bbdc44aaf25fea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.59708329999998             latitude:24.68636111             pred_result:37.52455520629883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42ac84f1659879ad7adb7997adeea860.setContent(html_1dae2d5a52d7ff65b1bbdc44aaf25fea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b189e7a1c9ed69c742d0cbac4323fe3c.bindPopup(popup_42ac84f1659879ad7adb7997adeea860)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b5994031a37ca8f700802cef0e8167b2 = L.circleMarker(\\n\",\n       \"                [23.3667, 116.6794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1fcdcd8bf9652d15604ffaa5cfed2cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ede80350dfade798bfaf5980056544c = $(`&lt;div id=&quot;html_2ede80350dfade798bfaf5980056544c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6794             latitude:23.3667             pred_result:21.824325561523438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1fcdcd8bf9652d15604ffaa5cfed2cd.setContent(html_2ede80350dfade798bfaf5980056544c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b5994031a37ca8f700802cef0e8167b2.bindPopup(popup_a1fcdcd8bf9652d15604ffaa5cfed2cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1342c1245cf5f14c253fcf8cd1cd40c1 = L.circleMarker(\\n\",\n       \"                [23.3633, 116.7244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8cb9126ee47f14870429a5ff593fc095 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e60588ff87d9116155acc2cfbc362ae8 = $(`&lt;div id=&quot;html_e60588ff87d9116155acc2cfbc362ae8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7244             latitude:23.3633             pred_result:22.04753303527832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8cb9126ee47f14870429a5ff593fc095.setContent(html_e60588ff87d9116155acc2cfbc362ae8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1342c1245cf5f14c253fcf8cd1cd40c1.bindPopup(popup_8cb9126ee47f14870429a5ff593fc095)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0815cd041c87c6911c81443855b60666 = L.circleMarker(\\n\",\n       \"                [23.2775, 116.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d521053237c7f261bd08fd18a539fbc6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15f6ee166452ac77e8f4ed29b29f15d1 = $(`&lt;div id=&quot;html_15f6ee166452ac77e8f4ed29b29f15d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7258             latitude:23.2775             pred_result:21.943050384521484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d521053237c7f261bd08fd18a539fbc6.setContent(html_15f6ee166452ac77e8f4ed29b29f15d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0815cd041c87c6911c81443855b60666.bindPopup(popup_d521053237c7f261bd08fd18a539fbc6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbd753325b06aeb796e42af6b08b4e6b = L.circleMarker(\\n\",\n       \"                [23.4714, 116.7519],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9da482487de025defc7785f3007643ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9c1a7675f492821e3bd2ee99640c2a5 = $(`&lt;div id=&quot;html_b9c1a7675f492821e3bd2ee99640c2a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7519             latitude:23.4714             pred_result:22.725749969482422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9da482487de025defc7785f3007643ca.setContent(html_b9c1a7675f492821e3bd2ee99640c2a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbd753325b06aeb796e42af6b08b4e6b.bindPopup(popup_9da482487de025defc7785f3007643ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39f05347c803c82b6c6d1517fe494625 = L.circleMarker(\\n\",\n       \"                [23.2539, 116.6092],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c9a8fd68216e632a0d6919e77de5475 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7de424bddbed5e83e3b4911e4c6fdce0 = $(`&lt;div id=&quot;html_7de424bddbed5e83e3b4911e4c6fdce0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6092             latitude:23.2539             pred_result:22.59037971496582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c9a8fd68216e632a0d6919e77de5475.setContent(html_7de424bddbed5e83e3b4911e4c6fdce0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39f05347c803c82b6c6d1517fe494625.bindPopup(popup_9c9a8fd68216e632a0d6919e77de5475)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_02415310df9b55133896a7ff5adf5ab7 = L.circleMarker(\\n\",\n       \"                [23.2536, 116.4019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6fc650a4a22d41c16a2e850e9b6802b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d0f887c86e2f030d860c1488f6e5530 = $(`&lt;div id=&quot;html_8d0f887c86e2f030d860c1488f6e5530&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.4019             latitude:23.2536             pred_result:21.82994842529297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6fc650a4a22d41c16a2e850e9b6802b2.setContent(html_8d0f887c86e2f030d860c1488f6e5530);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_02415310df9b55133896a7ff5adf5ab7.bindPopup(popup_6fc650a4a22d41c16a2e850e9b6802b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4926683e659f4e57e6f26ec17b34d591 = L.circleMarker(\\n\",\n       \"                [21.2706, 110.3539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_acab33d7508f001bad89734f6143d953 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_756ef8e4f4da0fdaf3323bb840b1fa69 = $(`&lt;div id=&quot;html_756ef8e4f4da0fdaf3323bb840b1fa69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3539             latitude:21.2706             pred_result:22.59906578063965             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_acab33d7508f001bad89734f6143d953.setContent(html_756ef8e4f4da0fdaf3323bb840b1fa69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4926683e659f4e57e6f26ec17b34d591.bindPopup(popup_acab33d7508f001bad89734f6143d953)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_abc0f0221a097e96e62c49d12910cf50 = L.circleMarker(\\n\",\n       \"                [21.2679, 110.3316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_640a482a9cd8371eaf78967ac9ffe0ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11855861812966fe616da1eaadde6b28 = $(`&lt;div id=&quot;html_11855861812966fe616da1eaadde6b28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3316             latitude:21.2679             pred_result:22.836042404174805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_640a482a9cd8371eaf78967ac9ffe0ec.setContent(html_11855861812966fe616da1eaadde6b28);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_abc0f0221a097e96e62c49d12910cf50.bindPopup(popup_640a482a9cd8371eaf78967ac9ffe0ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b331918d463727cadf5b316c9e8de218 = L.circleMarker(\\n\",\n       \"                [21.2567, 110.4558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0feded28e311311ae194e4853bcf49fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19ffc2fdf603b3e0f91cdc05fcd984ab = $(`&lt;div id=&quot;html_19ffc2fdf603b3e0f91cdc05fcd984ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4558             latitude:21.2567             pred_result:21.799442291259766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0feded28e311311ae194e4853bcf49fb.setContent(html_19ffc2fdf603b3e0f91cdc05fcd984ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b331918d463727cadf5b316c9e8de218.bindPopup(popup_0feded28e311311ae194e4853bcf49fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4e266e839325942461ced5f9c74cf32 = L.circleMarker(\\n\",\n       \"                [21.4689, 111.0286],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3d2e5f91a8e4a9668f0ae6c1210facbd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0b3d1983f86e7f470911b8c0570e28e = $(`&lt;div id=&quot;html_f0b3d1983f86e7f470911b8c0570e28e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0286             latitude:21.4689             pred_result:22.498382568359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3d2e5f91a8e4a9668f0ae6c1210facbd.setContent(html_f0b3d1983f86e7f470911b8c0570e28e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4e266e839325942461ced5f9c74cf32.bindPopup(popup_3d2e5f91a8e4a9668f0ae6c1210facbd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61b04c671609a163be1c3b62d65dfa6d = L.circleMarker(\\n\",\n       \"                [21.6533, 110.9294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d1cb4aa952ab3e0637064b3ed7e5fca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6385805afaf9558b2db4d6a12ec35b4f = $(`&lt;div id=&quot;html_6385805afaf9558b2db4d6a12ec35b4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9294             latitude:21.6533             pred_result:25.776906967163086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d1cb4aa952ab3e0637064b3ed7e5fca.setContent(html_6385805afaf9558b2db4d6a12ec35b4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61b04c671609a163be1c3b62d65dfa6d.bindPopup(popup_5d1cb4aa952ab3e0637064b3ed7e5fca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f59fcd0008c14eb462273c61e386dd1 = L.circleMarker(\\n\",\n       \"                [21.6669, 110.9067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a08473f83f7c8948604132dc457c89ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aeb6ba353ca176d6ef1fe4b905a90a05 = $(`&lt;div id=&quot;html_aeb6ba353ca176d6ef1fe4b905a90a05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9067             latitude:21.6669             pred_result:26.097566604614258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a08473f83f7c8948604132dc457c89ac.setContent(html_aeb6ba353ca176d6ef1fe4b905a90a05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f59fcd0008c14eb462273c61e386dd1.bindPopup(popup_a08473f83f7c8948604132dc457c89ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9cdd6f61532a499f7c8493fef0298152 = L.circleMarker(\\n\",\n       \"                [21.6828, 110.8592],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_631b47f24234a56abf2adfada545cb1e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0bfb450a45519521a2733ebd1911c513 = $(`&lt;div id=&quot;html_0bfb450a45519521a2733ebd1911c513&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.8592             latitude:21.6828             pred_result:26.368011474609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_631b47f24234a56abf2adfada545cb1e.setContent(html_0bfb450a45519521a2733ebd1911c513);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9cdd6f61532a499f7c8493fef0298152.bindPopup(popup_631b47f24234a56abf2adfada545cb1e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_167e2b1d13f1cab1a0ba8c45393f560f = L.circleMarker(\\n\",\n       \"                [24.3289, 116.1278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d1b400bd3cfa1b179ec0c9a604a7238 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4879f124a965b12f364f0313bc59b520 = $(`&lt;div id=&quot;html_4879f124a965b12f364f0313bc59b520&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1278             latitude:24.3289             pred_result:27.280601501464844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d1b400bd3cfa1b179ec0c9a604a7238.setContent(html_4879f124a965b12f364f0313bc59b520);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_167e2b1d13f1cab1a0ba8c45393f560f.bindPopup(popup_8d1b400bd3cfa1b179ec0c9a604a7238)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d9d1b7ed17c3c79fe7f7301775753c7 = L.circleMarker(\\n\",\n       \"                [24.2719, 116.0797],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_303feb4614e7f4e8de7012ad6fae1e91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a54c08b57c52b4dce91342da7a4794e = $(`&lt;div id=&quot;html_1a54c08b57c52b4dce91342da7a4794e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0797             latitude:24.2719             pred_result:27.135318756103516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_303feb4614e7f4e8de7012ad6fae1e91.setContent(html_1a54c08b57c52b4dce91342da7a4794e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d9d1b7ed17c3c79fe7f7301775753c7.bindPopup(popup_303feb4614e7f4e8de7012ad6fae1e91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d458f9e25dbcb6408dbfacaf0b6176a = L.circleMarker(\\n\",\n       \"                [24.2654, 116.1248],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9cbc2885837c0431a24cbeba09840525 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b1ff1da7fdd8c2d97b399f202d68a1b = $(`&lt;div id=&quot;html_1b1ff1da7fdd8c2d97b399f202d68a1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1248             latitude:24.2654             pred_result:28.601375579833984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9cbc2885837c0431a24cbeba09840525.setContent(html_1b1ff1da7fdd8c2d97b399f202d68a1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d458f9e25dbcb6408dbfacaf0b6176a.bindPopup(popup_9cbc2885837c0431a24cbeba09840525)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74ba09babaa2a30d759e851da3424ee4 = L.circleMarker(\\n\",\n       \"                [23.7569, 114.6778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20a9595e392b5efcac37f57a5a9d1edb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35b569f05c0873895d25c06f3079ace9 = $(`&lt;div id=&quot;html_35b569f05c0873895d25c06f3079ace9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6778             latitude:23.7569             pred_result:30.59535789489746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20a9595e392b5efcac37f57a5a9d1edb.setContent(html_35b569f05c0873895d25c06f3079ace9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74ba09babaa2a30d759e851da3424ee4.bindPopup(popup_20a9595e392b5efcac37f57a5a9d1edb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b8f56dc6f16bfd943e8397ead13b59e = L.circleMarker(\\n\",\n       \"                [23.7586, 114.6944],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2261e9a34053f549c5e1d1f610a791d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3368c412bedee6f8dea5c95e23c2dba4 = $(`&lt;div id=&quot;html_3368c412bedee6f8dea5c95e23c2dba4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6944             latitude:23.7586             pred_result:30.697919845581055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2261e9a34053f549c5e1d1f610a791d.setContent(html_3368c412bedee6f8dea5c95e23c2dba4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b8f56dc6f16bfd943e8397ead13b59e.bindPopup(popup_c2261e9a34053f549c5e1d1f610a791d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c579a7dd14120962dd999b6fd448094 = L.circleMarker(\\n\",\n       \"                [23.7233, 114.6892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee78f18a2f69ed710ccef619cc676c09 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a26a31463042835938e624df7e8a5982 = $(`&lt;div id=&quot;html_a26a31463042835938e624df7e8a5982&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6892             latitude:23.7233             pred_result:30.798416137695312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee78f18a2f69ed710ccef619cc676c09.setContent(html_a26a31463042835938e624df7e8a5982);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c579a7dd14120962dd999b6fd448094.bindPopup(popup_ee78f18a2f69ed710ccef619cc676c09)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b0994e4d840a38ec921057a58653980 = L.circleMarker(\\n\",\n       \"                [21.8586, 111.9786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9fc546531d1294f9ab9d64d0f04e32a8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ae714a66989de2de45a7d23abe8de08 = $(`&lt;div id=&quot;html_1ae714a66989de2de45a7d23abe8de08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9786             latitude:21.8586             pred_result:27.333507537841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9fc546531d1294f9ab9d64d0f04e32a8.setContent(html_1ae714a66989de2de45a7d23abe8de08);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b0994e4d840a38ec921057a58653980.bindPopup(popup_9fc546531d1294f9ab9d64d0f04e32a8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffec8dcb007ffe31448ae3cbee8e6f43 = L.circleMarker(\\n\",\n       \"                [21.8536, 111.9508],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d634c06fa7a4ad306be3a4c088e5ca5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb7c8178045ec3723f1ac1a597b0f142 = $(`&lt;div id=&quot;html_bb7c8178045ec3723f1ac1a597b0f142&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9508             latitude:21.8536             pred_result:27.537425994873047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d634c06fa7a4ad306be3a4c088e5ca5d.setContent(html_bb7c8178045ec3723f1ac1a597b0f142);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffec8dcb007ffe31448ae3cbee8e6f43.bindPopup(popup_d634c06fa7a4ad306be3a4c088e5ca5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c5a404bdf1a08c011c375558fa63468 = L.circleMarker(\\n\",\n       \"                [21.865, 111.9494],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d817f9283527b937ebd67568bfbd9144 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecd79af5f838247ae22eb72b3a6ae5fb = $(`&lt;div id=&quot;html_ecd79af5f838247ae22eb72b3a6ae5fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9494             latitude:21.865             pred_result:27.237327575683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d817f9283527b937ebd67568bfbd9144.setContent(html_ecd79af5f838247ae22eb72b3a6ae5fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c5a404bdf1a08c011c375558fa63468.bindPopup(popup_d817f9283527b937ebd67568bfbd9144)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b32d33fa8bb9fc8087175dbaf5773547 = L.circleMarker(\\n\",\n       \"                [23.6936, 113.0425],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3da253bf9c1b4d367f24d33cbfc5955e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd48ea7063888247cf336ecb1386be4c = $(`&lt;div id=&quot;html_fd48ea7063888247cf336ecb1386be4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0425             latitude:23.6936             pred_result:37.088314056396484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3da253bf9c1b4d367f24d33cbfc5955e.setContent(html_fd48ea7063888247cf336ecb1386be4c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b32d33fa8bb9fc8087175dbaf5773547.bindPopup(popup_3da253bf9c1b4d367f24d33cbfc5955e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48394b5ef1588b43242d5e61c1e40d55 = L.circleMarker(\\n\",\n       \"                [23.7106, 113.0208],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d147b2ea28244c756e0be757c8778504 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c616b02fca0f739b32b94bd3969b6b8 = $(`&lt;div id=&quot;html_6c616b02fca0f739b32b94bd3969b6b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0208             latitude:23.7106             pred_result:37.84149932861328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d147b2ea28244c756e0be757c8778504.setContent(html_6c616b02fca0f739b32b94bd3969b6b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48394b5ef1588b43242d5e61c1e40d55.bindPopup(popup_d147b2ea28244c756e0be757c8778504)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66d1a211ffef6423bc3697e0593289b9 = L.circleMarker(\\n\",\n       \"                [23.6714, 116.6339],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e030401258546068e3e67cf44c6ef759 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebd155f40c331fdad58910d60d9cb594 = $(`&lt;div id=&quot;html_ebd155f40c331fdad58910d60d9cb594&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6339             latitude:23.6714             pred_result:24.801942825317383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e030401258546068e3e67cf44c6ef759.setContent(html_ebd155f40c331fdad58910d60d9cb594);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66d1a211ffef6423bc3697e0593289b9.bindPopup(popup_e030401258546068e3e67cf44c6ef759)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3015da0cbf9d59b1685a6a42e8eaab87 = L.circleMarker(\\n\",\n       \"                [23.6706, 116.6447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e52c7b127435434c1e142e4cc026462 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b44bc6f6e38ec54df4a0700f840a526f = $(`&lt;div id=&quot;html_b44bc6f6e38ec54df4a0700f840a526f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6447             latitude:23.6706             pred_result:22.682754516601562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e52c7b127435434c1e142e4cc026462.setContent(html_b44bc6f6e38ec54df4a0700f840a526f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3015da0cbf9d59b1685a6a42e8eaab87.bindPopup(popup_8e52c7b127435434c1e142e4cc026462)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_819499814156a2a8d617e002b142af72 = L.circleMarker(\\n\",\n       \"                [23.5353, 116.3697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c12a0331077e3c834ca344b43d2ec9d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0209e5e577a4a0b60b6828cd30f872f1 = $(`&lt;div id=&quot;html_0209e5e577a4a0b60b6828cd30f872f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3697             latitude:23.5353             pred_result:22.4910888671875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c12a0331077e3c834ca344b43d2ec9d5.setContent(html_0209e5e577a4a0b60b6828cd30f872f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_819499814156a2a8d617e002b142af72.bindPopup(popup_c12a0331077e3c834ca344b43d2ec9d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20d24eb37ac764f0a7065e8a18f7c971 = L.circleMarker(\\n\",\n       \"                [23.5486, 116.3242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4b0f2dac5b9911ca5d925d1d47c36f31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1a16e9118f9db774cbabc5dfc45bcd0 = $(`&lt;div id=&quot;html_e1a16e9118f9db774cbabc5dfc45bcd0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3242             latitude:23.5486             pred_result:23.402305603027344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4b0f2dac5b9911ca5d925d1d47c36f31.setContent(html_e1a16e9118f9db774cbabc5dfc45bcd0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20d24eb37ac764f0a7065e8a18f7c971.bindPopup(popup_4b0f2dac5b9911ca5d925d1d47c36f31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3507e123a8cf4582c8c1c162c1385b05 = L.circleMarker(\\n\",\n       \"                [23.5739, 116.3594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b60ff32bd989994c44de03636bf395e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8dc2df4ce17f6c9d3f8e93bce878dbc9 = $(`&lt;div id=&quot;html_8dc2df4ce17f6c9d3f8e93bce878dbc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3594             latitude:23.5739             pred_result:22.98638153076172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b60ff32bd989994c44de03636bf395e3.setContent(html_8dc2df4ce17f6c9d3f8e93bce878dbc9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3507e123a8cf4582c8c1c162c1385b05.bindPopup(popup_b60ff32bd989994c44de03636bf395e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_590c987d3b97e2fa4a092dafbeac3d1d = L.circleMarker(\\n\",\n       \"                [23.5292, 116.4094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20f4b2940f299c1c090ff382667da160 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5dfc280a484846a544fd33d8c83150b4 = $(`&lt;div id=&quot;html_5dfc280a484846a544fd33d8c83150b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.4094             latitude:23.5292             pred_result:23.71863555908203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20f4b2940f299c1c090ff382667da160.setContent(html_5dfc280a484846a544fd33d8c83150b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_590c987d3b97e2fa4a092dafbeac3d1d.bindPopup(popup_20f4b2940f299c1c090ff382667da160)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_babdf3ffc174c50227718cebe169b613 = L.circleMarker(\\n\",\n       \"                [22.9169, 112.0392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_93e652e928d1383c6c79fea160adc55e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbde1fd4cc0b5e93a278c47dd4dfc506 = $(`&lt;div id=&quot;html_cbde1fd4cc0b5e93a278c47dd4dfc506&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0392             latitude:22.9169             pred_result:33.832862854003906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_93e652e928d1383c6c79fea160adc55e.setContent(html_cbde1fd4cc0b5e93a278c47dd4dfc506);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_babdf3ffc174c50227718cebe169b613.bindPopup(popup_93e652e928d1383c6c79fea160adc55e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f4b090d52756d097b1ee069e0418aa9 = L.circleMarker(\\n\",\n       \"                [22.9394, 112.0369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2104ed577005e27da2392aa912985d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c42faf3147c85a69e62502ada777c9a = $(`&lt;div id=&quot;html_0c42faf3147c85a69e62502ada777c9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0369             latitude:22.9394             pred_result:33.78835678100586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2104ed577005e27da2392aa912985d2.setContent(html_0c42faf3147c85a69e62502ada777c9a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f4b090d52756d097b1ee069e0418aa9.bindPopup(popup_e2104ed577005e27da2392aa912985d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0200ee1e355180b4c0cbe05657dd8765 = L.circleMarker(\\n\",\n       \"                [22.9539, 112.0539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_580eaa5bc3609011a1690cce2c2c4a42 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc2517d8bb4c010b75b55037a39a16db = $(`&lt;div id=&quot;html_bc2517d8bb4c010b75b55037a39a16db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0539             latitude:22.9539             pred_result:33.81470489501953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_580eaa5bc3609011a1690cce2c2c4a42.setContent(html_bc2517d8bb4c010b75b55037a39a16db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0200ee1e355180b4c0cbe05657dd8765.bindPopup(popup_580eaa5bc3609011a1690cce2c2c4a42)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4836e4ef350cab140d06793a8edbbecb = L.circleMarker(\\n\",\n       \"                [24.3694, 102.5778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee969aaaeca2015c997359c59022c24b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_704f497000b6ff7cfeb6e51f37b6cf43 = $(`&lt;div id=&quot;html_704f497000b6ff7cfeb6e51f37b6cf43&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5778             latitude:24.3694             pred_result:25.50345230102539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee969aaaeca2015c997359c59022c24b.setContent(html_704f497000b6ff7cfeb6e51f37b6cf43);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4836e4ef350cab140d06793a8edbbecb.bindPopup(popup_ee969aaaeca2015c997359c59022c24b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef18558587d1bd18ebe3a1cb84abe551 = L.circleMarker(\\n\",\n       \"                [35.248889, 115.42277],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfdf0ebc775424427e4faf2d1641a253 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1984bc4a44f4882e3f3a1654549c1043 = $(`&lt;div id=&quot;html_1984bc4a44f4882e3f3a1654549c1043&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.42277             latitude:35.248889             pred_result:57.80732345581055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfdf0ebc775424427e4faf2d1641a253.setContent(html_1984bc4a44f4882e3f3a1654549c1043);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef18558587d1bd18ebe3a1cb84abe551.bindPopup(popup_dfdf0ebc775424427e4faf2d1641a253)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_173cd94fa607b4925d0dc8990dbe8eac = L.circleMarker(\\n\",\n       \"                [35.2375, 115.474722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c809926ef6e433f74f2498493a288e9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce37275eaa2bc473d69b36cf9d0e54e6 = $(`&lt;div id=&quot;html_ce37275eaa2bc473d69b36cf9d0e54e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.474722             latitude:35.2375             pred_result:57.419490814208984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c809926ef6e433f74f2498493a288e9c.setContent(html_ce37275eaa2bc473d69b36cf9d0e54e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_173cd94fa607b4925d0dc8990dbe8eac.bindPopup(popup_c809926ef6e433f74f2498493a288e9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82dbcd938565b4238eb971e3f88ecf63 = L.circleMarker(\\n\",\n       \"                [35.27, 115.455],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2de741f8c558edff21f276677dc75050 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_729d530ee17de27caa95d1a46cbd6446 = $(`&lt;div id=&quot;html_729d530ee17de27caa95d1a46cbd6446&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.455             latitude:35.27             pred_result:57.74275588989258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2de741f8c558edff21f276677dc75050.setContent(html_729d530ee17de27caa95d1a46cbd6446);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82dbcd938565b4238eb971e3f88ecf63.bindPopup(popup_2de741f8c558edff21f276677dc75050)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ee40ee61724754f63c42ef936b529e37 = L.circleMarker(\\n\",\n       \"                [40.1097, 113.3819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbd2897da1cc61e437aa75e665843166 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c5a6770f8193ce4ee3a1097facf64bea = $(`&lt;div id=&quot;html_c5a6770f8193ce4ee3a1097facf64bea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3819             latitude:40.1097             pred_result:41.385074615478516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbd2897da1cc61e437aa75e665843166.setContent(html_c5a6770f8193ce4ee3a1097facf64bea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ee40ee61724754f63c42ef936b529e37.bindPopup(popup_dbd2897da1cc61e437aa75e665843166)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10140d74dc0fff7e028e7ce108234b5e = L.circleMarker(\\n\",\n       \"                [40.0758, 113.2994],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9af0853164d3ae2d7bc28fb1a9c431b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47c265a01c2b995661b0ab40a952d47d = $(`&lt;div id=&quot;html_47c265a01c2b995661b0ab40a952d47d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2994             latitude:40.0758             pred_result:42.20697784423828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9af0853164d3ae2d7bc28fb1a9c431b.setContent(html_47c265a01c2b995661b0ab40a952d47d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10140d74dc0fff7e028e7ce108234b5e.bindPopup(popup_b9af0853164d3ae2d7bc28fb1a9c431b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_570f1d796a17328ace18ba902cd464e5 = L.circleMarker(\\n\",\n       \"                [40.0917, 113.3444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e14975b2b328dd82b5cb8ca88028b385 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a07c4c3ac3edd93eed93d250afc11d9 = $(`&lt;div id=&quot;html_7a07c4c3ac3edd93eed93d250afc11d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3444             latitude:40.0917             pred_result:41.38337326049805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e14975b2b328dd82b5cb8ca88028b385.setContent(html_7a07c4c3ac3edd93eed93d250afc11d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_570f1d796a17328ace18ba902cd464e5.bindPopup(popup_e14975b2b328dd82b5cb8ca88028b385)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0086ac337e672ebfadb8262b00cbfbfc = L.circleMarker(\\n\",\n       \"                [40.1269, 113.2661],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb9111fae066b82c74370794401470b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2702c724459061baa492a2e253817154 = $(`&lt;div id=&quot;html_2702c724459061baa492a2e253817154&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2661             latitude:40.1269             pred_result:38.46949005126953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb9111fae066b82c74370794401470b8.setContent(html_2702c724459061baa492a2e253817154);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0086ac337e672ebfadb8262b00cbfbfc.bindPopup(popup_bb9111fae066b82c74370794401470b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1627d6698a3743069281341282a3a79 = L.circleMarker(\\n\",\n       \"                [40.0844, 113.2711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1761f1004512263a976d3b68f56722a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_540fb8396e5a5ccebf64f5d27f2596b2 = $(`&lt;div id=&quot;html_540fb8396e5a5ccebf64f5d27f2596b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2711             latitude:40.0844             pred_result:40.17408752441406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1761f1004512263a976d3b68f56722a.setContent(html_540fb8396e5a5ccebf64f5d27f2596b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1627d6698a3743069281341282a3a79.bindPopup(popup_f1761f1004512263a976d3b68f56722a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43c287a4ba4a0245c8ac354e9ffcbf40 = L.circleMarker(\\n\",\n       \"                [36.1542, 113.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3c64fe4002a95905f91cc3e4230baf5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d5efa5c036ce1054ef39fb642e37bb8 = $(`&lt;div id=&quot;html_0d5efa5c036ce1054ef39fb642e37bb8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1097             latitude:36.1542             pred_result:66.5576171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3c64fe4002a95905f91cc3e4230baf5.setContent(html_0d5efa5c036ce1054ef39fb642e37bb8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43c287a4ba4a0245c8ac354e9ffcbf40.bindPopup(popup_a3c64fe4002a95905f91cc3e4230baf5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5740c4ee331b8d020ab9c68c75b8a4b7 = L.circleMarker(\\n\",\n       \"                [36.1939, 113.0972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_106f3af4c8a1eb069803cc5c9883c910 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b8b547da6e0c18ec3ad5577bb8ac1d9e = $(`&lt;div id=&quot;html_b8b547da6e0c18ec3ad5577bb8ac1d9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0972             latitude:36.1939             pred_result:66.74800872802734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_106f3af4c8a1eb069803cc5c9883c910.setContent(html_b8b547da6e0c18ec3ad5577bb8ac1d9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5740c4ee331b8d020ab9c68c75b8a4b7.bindPopup(popup_106f3af4c8a1eb069803cc5c9883c910)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_abf76670499e879cb0111d110e446ad9 = L.circleMarker(\\n\",\n       \"                [36.2126, 113.0886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c2fa07ad0df3f48cc3f5a778f1172408 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0fe1e54e64473e98f3faf5084fe12a00 = $(`&lt;div id=&quot;html_0fe1e54e64473e98f3faf5084fe12a00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0886             latitude:36.2126             pred_result:66.92996978759766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c2fa07ad0df3f48cc3f5a778f1172408.setContent(html_0fe1e54e64473e98f3faf5084fe12a00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_abf76670499e879cb0111d110e446ad9.bindPopup(popup_c2fa07ad0df3f48cc3f5a778f1172408)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec4c3a38a9d2cd43ab308294bdf74352 = L.circleMarker(\\n\",\n       \"                [36.1855, 113.0844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76080a96fcfbeb115ccd523ee0878207 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da234ed1c21027c62040e05967430f11 = $(`&lt;div id=&quot;html_da234ed1c21027c62040e05967430f11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0844444             latitude:36.1855             pred_result:66.77921295166016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76080a96fcfbeb115ccd523ee0878207.setContent(html_da234ed1c21027c62040e05967430f11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec4c3a38a9d2cd43ab308294bdf74352.bindPopup(popup_76080a96fcfbeb115ccd523ee0878207)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_efb4dc10ef224bf001f34326da151d55 = L.circleMarker(\\n\",\n       \"                [36.0783, 111.5531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c21e9fd125538ad599ffc0cb92c81fda = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_763fc9a2538784d7280b3923f44f6351 = $(`&lt;div id=&quot;html_763fc9a2538784d7280b3923f44f6351&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5531             latitude:36.0783             pred_result:72.3434829711914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c21e9fd125538ad599ffc0cb92c81fda.setContent(html_763fc9a2538784d7280b3923f44f6351);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_efb4dc10ef224bf001f34326da151d55.bindPopup(popup_c21e9fd125538ad599ffc0cb92c81fda)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de2c147314ffd722060e9dec8693f736 = L.circleMarker(\\n\",\n       \"                [36.0714, 111.5028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_811c6b2bcc5e4fd63b3a4fd0a1028197 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_046566b0aedbed792c835555579f637d = $(`&lt;div id=&quot;html_046566b0aedbed792c835555579f637d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5028             latitude:36.0714             pred_result:70.0457763671875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_811c6b2bcc5e4fd63b3a4fd0a1028197.setContent(html_046566b0aedbed792c835555579f637d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de2c147314ffd722060e9dec8693f736.bindPopup(popup_811c6b2bcc5e4fd63b3a4fd0a1028197)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdb57795e0494fac0cfd401227a3f1db = L.circleMarker(\\n\",\n       \"                [36.0822, 111.5169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8bcc7d6c1b9bfe3a6bcf50a3c56cf555 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3532d35c73920f14359fd6bf10c87d72 = $(`&lt;div id=&quot;html_3532d35c73920f14359fd6bf10c87d72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5169             latitude:36.0822             pred_result:72.41831970214844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8bcc7d6c1b9bfe3a6bcf50a3c56cf555.setContent(html_3532d35c73920f14359fd6bf10c87d72);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdb57795e0494fac0cfd401227a3f1db.bindPopup(popup_8bcc7d6c1b9bfe3a6bcf50a3c56cf555)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_932450a191ab83fcfbd0e755dc6af92f = L.circleMarker(\\n\",\n       \"                [36.0875, 111.5025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_06ae81ae8ae3e9623cc6e9c9a2bea69b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e2af9f1b4ea884c1a11b2b1e96e0050 = $(`&lt;div id=&quot;html_0e2af9f1b4ea884c1a11b2b1e96e0050&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5025             latitude:36.0875             pred_result:71.69338989257812             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_06ae81ae8ae3e9623cc6e9c9a2bea69b.setContent(html_0e2af9f1b4ea884c1a11b2b1e96e0050);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_932450a191ab83fcfbd0e755dc6af92f.bindPopup(popup_06ae81ae8ae3e9623cc6e9c9a2bea69b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_588db449a3a2c5ed0f77512f1ba45e03 = L.circleMarker(\\n\",\n       \"                [36.0417, 111.4917],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3b0f50517a804660454d2f210fd796f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_824836b809df87a5446d396ed7c9fb57 = $(`&lt;div id=&quot;html_824836b809df87a5446d396ed7c9fb57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4917             latitude:36.0417             pred_result:70.82528686523438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3b0f50517a804660454d2f210fd796f.setContent(html_824836b809df87a5446d396ed7c9fb57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_588db449a3a2c5ed0f77512f1ba45e03.bindPopup(popup_e3b0f50517a804660454d2f210fd796f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9989d999b1810cfd0f627e445ce0ccc3 = L.circleMarker(\\n\",\n       \"                [37.8564, 113.5753],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7b5e036f2faa42d32f52ce1869f89b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01dde26044717c5acda14cf216e9d69a = $(`&lt;div id=&quot;html_01dde26044717c5acda14cf216e9d69a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5753             latitude:37.8564             pred_result:71.86859130859375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7b5e036f2faa42d32f52ce1869f89b4.setContent(html_01dde26044717c5acda14cf216e9d69a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9989d999b1810cfd0f627e445ce0ccc3.bindPopup(popup_f7b5e036f2faa42d32f52ce1869f89b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cae6cff3c314d12e48ca3155c232b123 = L.circleMarker(\\n\",\n       \"                [37.8792, 113.4922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aed609addea74d105030c6805940c30e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b1db479e8299b80e5831a21f5a2f286 = $(`&lt;div id=&quot;html_7b1db479e8299b80e5831a21f5a2f286&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.4922             latitude:37.8792             pred_result:71.106689453125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aed609addea74d105030c6805940c30e.setContent(html_7b1db479e8299b80e5831a21f5a2f286);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cae6cff3c314d12e48ca3155c232b123.bindPopup(popup_aed609addea74d105030c6805940c30e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_660316b8cca24251aa704dbd48bead53 = L.circleMarker(\\n\",\n       \"                [37.8561, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91a4457ddab823afbc34ee5d25f2720f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a271f2ebbe798f9d0bd27507a6f359fe = $(`&lt;div id=&quot;html_a271f2ebbe798f9d0bd27507a6f359fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:37.8561             pred_result:72.12516784667969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91a4457ddab823afbc34ee5d25f2720f.setContent(html_a271f2ebbe798f9d0bd27507a6f359fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_660316b8cca24251aa704dbd48bead53.bindPopup(popup_91a4457ddab823afbc34ee5d25f2720f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6888a4b33d22411ba7640e3059609d35 = L.circleMarker(\\n\",\n       \"                [37.8531, 113.6292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8edf977c527975e0158fe717984018ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c5786d254a356330b67207e87c011bd = $(`&lt;div id=&quot;html_2c5786d254a356330b67207e87c011bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.6292             latitude:37.8531             pred_result:72.13200378417969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8edf977c527975e0158fe717984018ed.setContent(html_2c5786d254a356330b67207e87c011bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6888a4b33d22411ba7640e3059609d35.bindPopup(popup_8edf977c527975e0158fe717984018ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ecac987841065770bd697df5b203e94 = L.circleMarker(\\n\",\n       \"                [37.8694, 113.5689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6475c68e449a83097fe406043d907b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b410640d2aa3fcfb0006adac7249f64a = $(`&lt;div id=&quot;html_b410640d2aa3fcfb0006adac7249f64a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5689             latitude:37.8694             pred_result:71.83216094970703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6475c68e449a83097fe406043d907b9.setContent(html_b410640d2aa3fcfb0006adac7249f64a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ecac987841065770bd697df5b203e94.bindPopup(popup_e6475c68e449a83097fe406043d907b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db0a4739fe0352b864a965b80e194c72 = L.circleMarker(\\n\",\n       \"                [37.85, 113.5158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f557ec00d14ffe49458ed910e8e15ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bda3bb48e00209ad3ac28c60907a3b46 = $(`&lt;div id=&quot;html_bda3bb48e00209ad3ac28c60907a3b46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5158             latitude:37.85             pred_result:70.39573669433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f557ec00d14ffe49458ed910e8e15ab.setContent(html_bda3bb48e00209ad3ac28c60907a3b46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db0a4739fe0352b864a965b80e194c72.bindPopup(popup_3f557ec00d14ffe49458ed910e8e15ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c0846046a4d3f79fc2bde6251b85db9 = L.circleMarker(\\n\",\n       \"                [42.2814, 118.9233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a5ee1dc9eaa7ea4e8cb69dfab0efa11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ceac44f67b6c7c907bea401caef950b = $(`&lt;div id=&quot;html_4ceac44f67b6c7c907bea401caef950b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9233             latitude:42.2814             pred_result:18.742813110351562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a5ee1dc9eaa7ea4e8cb69dfab0efa11.setContent(html_4ceac44f67b6c7c907bea401caef950b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c0846046a4d3f79fc2bde6251b85db9.bindPopup(popup_8a5ee1dc9eaa7ea4e8cb69dfab0efa11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c98b3b0ad28a01cc6e350f6916121f1 = L.circleMarker(\\n\",\n       \"                [42.2725, 118.9572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4bfaf91f518ddaaa02fceac998d469ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4839686b4fdb1c66f762860bd48f3dc = $(`&lt;div id=&quot;html_d4839686b4fdb1c66f762860bd48f3dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9572             latitude:42.2725             pred_result:17.121387481689453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4bfaf91f518ddaaa02fceac998d469ab.setContent(html_d4839686b4fdb1c66f762860bd48f3dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c98b3b0ad28a01cc6e350f6916121f1.bindPopup(popup_4bfaf91f518ddaaa02fceac998d469ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd107302813ebd692f6e54858529e68d = L.circleMarker(\\n\",\n       \"                [42.2556, 118.8789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27cd4ee0032bab5060dea22f03dd0451 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4614a8300447227d380ab9de6e5af351 = $(`&lt;div id=&quot;html_4614a8300447227d380ab9de6e5af351&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.8789             latitude:42.2556             pred_result:15.559087753295898             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27cd4ee0032bab5060dea22f03dd0451.setContent(html_4614a8300447227d380ab9de6e5af351);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd107302813ebd692f6e54858529e68d.bindPopup(popup_27cd4ee0032bab5060dea22f03dd0451)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56584dda50e9d3c7189cb3119d7b7fc8 = L.circleMarker(\\n\",\n       \"                [41.1196, 123.044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb8d2df049cafa759ba11d7e367ea277 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_684be6f25c3b31b4f40ff9cab9a839b1 = $(`&lt;div id=&quot;html_684be6f25c3b31b4f40ff9cab9a839b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.044             latitude:41.1196             pred_result:18.72856903076172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb8d2df049cafa759ba11d7e367ea277.setContent(html_684be6f25c3b31b4f40ff9cab9a839b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56584dda50e9d3c7189cb3119d7b7fc8.bindPopup(popup_cb8d2df049cafa759ba11d7e367ea277)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a8908a4667169d832693afc1b6a32c9 = L.circleMarker(\\n\",\n       \"                [41.0931, 123.011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d121d827df4498fc5451b94e4947009d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ebb288454a311ab20cb7d62bc1f56d5f = $(`&lt;div id=&quot;html_ebb288454a311ab20cb7d62bc1f56d5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.011             latitude:41.0931             pred_result:20.95738410949707             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d121d827df4498fc5451b94e4947009d.setContent(html_ebb288454a311ab20cb7d62bc1f56d5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a8908a4667169d832693afc1b6a32c9.bindPopup(popup_d121d827df4498fc5451b94e4947009d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b126d78ed9aca93a10e57beb3f1c5904 = L.circleMarker(\\n\",\n       \"                [41.1442, 123.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e8327ff1a2b8b3e7ef4204053ffad59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e58a77a3eb80e3baff4e8699dfa9f88 = $(`&lt;div id=&quot;html_2e58a77a3eb80e3baff4e8699dfa9f88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0485             latitude:41.1442             pred_result:22.53997039794922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e8327ff1a2b8b3e7ef4204053ffad59.setContent(html_2e58a77a3eb80e3baff4e8699dfa9f88);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b126d78ed9aca93a10e57beb3f1c5904.bindPopup(popup_6e8327ff1a2b8b3e7ef4204053ffad59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cd6b09cbea5b734d11647706f2d298b6 = L.circleMarker(\\n\",\n       \"                [41.0971, 122.9642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb7f3a3c869fd04aaff151f81104bf69 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c48616a697ff6840642bbccda50a597 = $(`&lt;div id=&quot;html_0c48616a697ff6840642bbccda50a597&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.9642             latitude:41.0971             pred_result:22.77505874633789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb7f3a3c869fd04aaff151f81104bf69.setContent(html_0c48616a697ff6840642bbccda50a597);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cd6b09cbea5b734d11647706f2d298b6.bindPopup(popup_eb7f3a3c869fd04aaff151f81104bf69)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95451a741449cdadda8203a992e6b8fd = L.circleMarker(\\n\",\n       \"                [41.0833, 122.9481],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b62288c8ac338109ea2194a001ba0981 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2db5fae49eae8ee687f9a37af408040 = $(`&lt;div id=&quot;html_d2db5fae49eae8ee687f9a37af408040&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.9481             latitude:41.0833             pred_result:19.39103889465332             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b62288c8ac338109ea2194a001ba0981.setContent(html_d2db5fae49eae8ee687f9a37af408040);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95451a741449cdadda8203a992e6b8fd.bindPopup(popup_b62288c8ac338109ea2194a001ba0981)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e9dc169a674cfc1ad2eef0933dd8c46a = L.circleMarker(\\n\",\n       \"                [41.0831, 123.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dcbb99cc864a97eac717a024718eb098 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c24749f1083bcf317149f924d2f7ad44 = $(`&lt;div id=&quot;html_c24749f1083bcf317149f924d2f7ad44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0156             latitude:41.0831             pred_result:20.38797378540039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dcbb99cc864a97eac717a024718eb098.setContent(html_c24749f1083bcf317149f924d2f7ad44);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e9dc169a674cfc1ad2eef0933dd8c46a.bindPopup(popup_dcbb99cc864a97eac717a024718eb098)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1471b169ee3d06ed00620d3324935d17 = L.circleMarker(\\n\",\n       \"                [41.0228, 123.1289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12f4459728b11d95fc96b55c38dad1fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6df267d712dd50d88c7d076914b66365 = $(`&lt;div id=&quot;html_6df267d712dd50d88c7d076914b66365&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1289             latitude:41.0228             pred_result:15.17297649383545             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12f4459728b11d95fc96b55c38dad1fc.setContent(html_6df267d712dd50d88c7d076914b66365);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1471b169ee3d06ed00620d3324935d17.bindPopup(popup_12f4459728b11d95fc96b55c38dad1fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_405cd3ccedc02579b0904ac51dd93118 = L.circleMarker(\\n\",\n       \"                [41.8469, 123.81],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9017a5a83412eda7329b1de734cdc59d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b09c9ebcec8f3fd1792fa2ad3c853d7 = $(`&lt;div id=&quot;html_5b09c9ebcec8f3fd1792fa2ad3c853d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.81             latitude:41.8469             pred_result:19.408203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9017a5a83412eda7329b1de734cdc59d.setContent(html_5b09c9ebcec8f3fd1792fa2ad3c853d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_405cd3ccedc02579b0904ac51dd93118.bindPopup(popup_9017a5a83412eda7329b1de734cdc59d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc194b8b07be32802f004dc999b16ea5 = L.circleMarker(\\n\",\n       \"                [41.8828, 123.9169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_559773afc71e92aebc0370c610f1be7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e82bd95bd4e11615ee89f41647828072 = $(`&lt;div id=&quot;html_e82bd95bd4e11615ee89f41647828072&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9169             latitude:41.8828             pred_result:23.986251831054688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_559773afc71e92aebc0370c610f1be7f.setContent(html_e82bd95bd4e11615ee89f41647828072);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc194b8b07be32802f004dc999b16ea5.bindPopup(popup_559773afc71e92aebc0370c610f1be7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_030fae155db75fef3f01fd8376d970ad = L.circleMarker(\\n\",\n       \"                [41.8625, 124.0383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb4bcacb03d746be541fa0863ff8fb5b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52cb38a88626697ec0d59b34ba13077f = $(`&lt;div id=&quot;html_52cb38a88626697ec0d59b34ba13077f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.0383             latitude:41.8625             pred_result:17.421218872070312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb4bcacb03d746be541fa0863ff8fb5b.setContent(html_52cb38a88626697ec0d59b34ba13077f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_030fae155db75fef3f01fd8376d970ad.bindPopup(popup_bb4bcacb03d746be541fa0863ff8fb5b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01ec03925a282ccfbb93675c7d6cc28b = L.circleMarker(\\n\",\n       \"                [41.8594, 123.9],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_917974eeacb0f6beb30ba9e849e625fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6cd704a24ae1c5904784f79504ae909 = $(`&lt;div id=&quot;html_c6cd704a24ae1c5904784f79504ae909&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9             latitude:41.8594             pred_result:22.853958129882812             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_917974eeacb0f6beb30ba9e849e625fc.setContent(html_c6cd704a24ae1c5904784f79504ae909);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01ec03925a282ccfbb93675c7d6cc28b.bindPopup(popup_917974eeacb0f6beb30ba9e849e625fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49632dc4a0f3bd281286d15b33c21457 = L.circleMarker(\\n\",\n       \"                [41.8864, 124.0878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3261f00149fcb9c887ff01448d943421 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a178212d1a8034224556145fcfc1c8b8 = $(`&lt;div id=&quot;html_a178212d1a8034224556145fcfc1c8b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.0878             latitude:41.8864             pred_result:14.730562210083008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3261f00149fcb9c887ff01448d943421.setContent(html_a178212d1a8034224556145fcfc1c8b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49632dc4a0f3bd281286d15b33c21457.bindPopup(popup_3261f00149fcb9c887ff01448d943421)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ecfe3f88870478ce9e357e89d8d5d2b = L.circleMarker(\\n\",\n       \"                [41.8417, 123.7117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_261e523ab5cc5e7decf74db8d636c211 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7e29de5831ee6f88eef70df063311d4 = $(`&lt;div id=&quot;html_d7e29de5831ee6f88eef70df063311d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7117             latitude:41.8417             pred_result:18.862934112548828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_261e523ab5cc5e7decf74db8d636c211.setContent(html_d7e29de5831ee6f88eef70df063311d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ecfe3f88870478ce9e357e89d8d5d2b.bindPopup(popup_261e523ab5cc5e7decf74db8d636c211)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3f94b9c903eb50d0ad21e7b2508c98d = L.circleMarker(\\n\",\n       \"                [41.3283, 123.8436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fc6cf2320dde9f84a0f307a7d1831ea7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0e7c297501777d5373fb7a9aca321712 = $(`&lt;div id=&quot;html_0e7c297501777d5373fb7a9aca321712&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8436             latitude:41.3283             pred_result:14.76792049407959             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fc6cf2320dde9f84a0f307a7d1831ea7.setContent(html_0e7c297501777d5373fb7a9aca321712);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3f94b9c903eb50d0ad21e7b2508c98d.bindPopup(popup_fc6cf2320dde9f84a0f307a7d1831ea7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_28c5a88b905286b1b8dd092ac1340fa1 = L.circleMarker(\\n\",\n       \"                [41.3369, 123.7528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f9a2cc56804091ba2556f52de6280e6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_332b546380ed15b8c19c5986a563b205 = $(`&lt;div id=&quot;html_332b546380ed15b8c19c5986a563b205&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7528             latitude:41.3369             pred_result:15.788886070251465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f9a2cc56804091ba2556f52de6280e6.setContent(html_332b546380ed15b8c19c5986a563b205);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_28c5a88b905286b1b8dd092ac1340fa1.bindPopup(popup_3f9a2cc56804091ba2556f52de6280e6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d3daa11923ec7c5ad19a3f95d18f145 = L.circleMarker(\\n\",\n       \"                [41.3047, 123.7308],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fca06f4a3e5ba177683334eaa19cffd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44d93118922ffd09ad7e27f28e4164f9 = $(`&lt;div id=&quot;html_44d93118922ffd09ad7e27f28e4164f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7308             latitude:41.3047             pred_result:17.57503890991211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fca06f4a3e5ba177683334eaa19cffd.setContent(html_44d93118922ffd09ad7e27f28e4164f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d3daa11923ec7c5ad19a3f95d18f145.bindPopup(popup_8fca06f4a3e5ba177683334eaa19cffd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c4ef45ad06f80405530da2a4d5fa3fe7 = L.circleMarker(\\n\",\n       \"                [41.2864, 123.7669],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a82f4a80373d40bc2eeb027f6b088389 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9919cc03029f48e599a664dc4cd1e93a = $(`&lt;div id=&quot;html_9919cc03029f48e599a664dc4cd1e93a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7669             latitude:41.2864             pred_result:16.523441314697266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a82f4a80373d40bc2eeb027f6b088389.setContent(html_9919cc03029f48e599a664dc4cd1e93a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c4ef45ad06f80405530da2a4d5fa3fe7.bindPopup(popup_a82f4a80373d40bc2eeb027f6b088389)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cee3d2b8a6bec3a4b53135f4650e85df = L.circleMarker(\\n\",\n       \"                [41.2692, 123.7989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31f76bc2eae4c00df2063ee261c16d86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c22f9ec744c5c72f82b2a730532dccb2 = $(`&lt;div id=&quot;html_c22f9ec744c5c72f82b2a730532dccb2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7989             latitude:41.2692             pred_result:15.739090919494629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31f76bc2eae4c00df2063ee261c16d86.setContent(html_c22f9ec744c5c72f82b2a730532dccb2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cee3d2b8a6bec3a4b53135f4650e85df.bindPopup(popup_31f76bc2eae4c00df2063ee261c16d86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89840cbc099be30ad74216ca7c5ec10b = L.circleMarker(\\n\",\n       \"                [41.3472, 123.8142],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a27df5b0c3b59c092bfc63e63a16fa0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_172170b4fe04f08990bc7d6022b8ca69 = $(`&lt;div id=&quot;html_172170b4fe04f08990bc7d6022b8ca69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8142             latitude:41.3472             pred_result:18.037662506103516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a27df5b0c3b59c092bfc63e63a16fa0b.setContent(html_172170b4fe04f08990bc7d6022b8ca69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89840cbc099be30ad74216ca7c5ec10b.bindPopup(popup_a27df5b0c3b59c092bfc63e63a16fa0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ed0acc650f5cdb63b42dcb5b46c1d88 = L.circleMarker(\\n\",\n       \"                [41.0781, 121.0986],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1dcd83be9652bbd200b2da8d9a91178 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bfe39e9a1d41d6b0d7547d57f4fda77a = $(`&lt;div id=&quot;html_bfe39e9a1d41d6b0d7547d57f4fda77a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.0986             latitude:41.0781             pred_result:23.777484893798828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1dcd83be9652bbd200b2da8d9a91178.setContent(html_bfe39e9a1d41d6b0d7547d57f4fda77a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ed0acc650f5cdb63b42dcb5b46c1d88.bindPopup(popup_c1dcd83be9652bbd200b2da8d9a91178)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e007e4a878b4b4f585f158fcb1d70fa = L.circleMarker(\\n\",\n       \"                [41.1219, 121.2008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9e732ec8e064aa8dbe361cd4e89a355 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ea20fd9e3c78a4c0820adb0048aa299 = $(`&lt;div id=&quot;html_6ea20fd9e3c78a4c0820adb0048aa299&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.2008             latitude:41.1219             pred_result:24.40121841430664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9e732ec8e064aa8dbe361cd4e89a355.setContent(html_6ea20fd9e3c78a4c0820adb0048aa299);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e007e4a878b4b4f585f158fcb1d70fa.bindPopup(popup_c9e732ec8e064aa8dbe361cd4e89a355)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d22b48b855c5edc34fcdf0058b27e2b9 = L.circleMarker(\\n\",\n       \"                [41.1222, 121.1178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_263d370282c9e506aa82e7464174626a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5d9278ec8bf08eb9d709b3eede3438c = $(`&lt;div id=&quot;html_d5d9278ec8bf08eb9d709b3eede3438c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1178             latitude:41.1222             pred_result:23.888208389282227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_263d370282c9e506aa82e7464174626a.setContent(html_d5d9278ec8bf08eb9d709b3eede3438c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d22b48b855c5edc34fcdf0058b27e2b9.bindPopup(popup_263d370282c9e506aa82e7464174626a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a94c14e2d2189b5c0ad385952000df14 = L.circleMarker(\\n\",\n       \"                [41.1386, 121.1303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_efaa9b40bec86fc2f59bb6bb80bec560 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d424334770f7a264710205c6b2d002b9 = $(`&lt;div id=&quot;html_d424334770f7a264710205c6b2d002b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1303             latitude:41.1386             pred_result:22.040607452392578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_efaa9b40bec86fc2f59bb6bb80bec560.setContent(html_d424334770f7a264710205c6b2d002b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a94c14e2d2189b5c0ad385952000df14.bindPopup(popup_efaa9b40bec86fc2f59bb6bb80bec560)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fe8e70810160da16abcd5ff67b0c4e9 = L.circleMarker(\\n\",\n       \"                [43.8875, 126.555],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56e63c0764c5bd5d338e0087ecdcaaa5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00dffb879ac28ce1516831a5cce26a36 = $(`&lt;div id=&quot;html_00dffb879ac28ce1516831a5cce26a36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.555             latitude:43.8875             pred_result:13.98957633972168             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56e63c0764c5bd5d338e0087ecdcaaa5.setContent(html_00dffb879ac28ce1516831a5cce26a36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fe8e70810160da16abcd5ff67b0c4e9.bindPopup(popup_56e63c0764c5bd5d338e0087ecdcaaa5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2684409f5dcbb9ed91bc289ad7289dc9 = L.circleMarker(\\n\",\n       \"                [43.8358, 126.5844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c2e74108db2168967aea4782b7c3321 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3176330add4b2c0c7018b62d7f4751c8 = $(`&lt;div id=&quot;html_3176330add4b2c0c7018b62d7f4751c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5844             latitude:43.8358             pred_result:12.343017578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c2e74108db2168967aea4782b7c3321.setContent(html_3176330add4b2c0c7018b62d7f4751c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2684409f5dcbb9ed91bc289ad7289dc9.bindPopup(popup_9c2e74108db2168967aea4782b7c3321)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6b77de490c5ea90e46a6805934a7499 = L.circleMarker(\\n\",\n       \"                [43.8228, 126.4978],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85086e15588dbe8531d6a9e95a992e4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6756f35ca0b3e2d4d47f8a29cff6d328 = $(`&lt;div id=&quot;html_6756f35ca0b3e2d4d47f8a29cff6d328&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4978             latitude:43.8228             pred_result:10.575429916381836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85086e15588dbe8531d6a9e95a992e4f.setContent(html_6756f35ca0b3e2d4d47f8a29cff6d328);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6b77de490c5ea90e46a6805934a7499.bindPopup(popup_85086e15588dbe8531d6a9e95a992e4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_246ab8d92aa7b1e344a79acbba909817 = L.circleMarker(\\n\",\n       \"                [43.8947, 126.5786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3521c70ba4e31614a9fdf692ce33a22d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94993edc61b90fc23d0b28e9fed2899e = $(`&lt;div id=&quot;html_94993edc61b90fc23d0b28e9fed2899e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5786             latitude:43.8947             pred_result:11.514398574829102             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3521c70ba4e31614a9fdf692ce33a22d.setContent(html_94993edc61b90fc23d0b28e9fed2899e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_246ab8d92aa7b1e344a79acbba909817.bindPopup(popup_3521c70ba4e31614a9fdf692ce33a22d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14c1f7865ac1df9fc529ab30e753b175 = L.circleMarker(\\n\",\n       \"                [43.8256, 126.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77832688b3f450b80c35edad0a830572 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19ddb4d7a83e7cfa22cf5d11c2a24db1 = $(`&lt;div id=&quot;html_19ddb4d7a83e7cfa22cf5d11c2a24db1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.55             latitude:43.8256             pred_result:12.741972923278809             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77832688b3f450b80c35edad0a830572.setContent(html_19ddb4d7a83e7cfa22cf5d11c2a24db1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14c1f7865ac1df9fc529ab30e753b175.bindPopup(popup_77832688b3f450b80c35edad0a830572)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_77a0a45c12b4d76402cc1e875dd76374 = L.circleMarker(\\n\",\n       \"                [43.7256, 126.6772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5195c1752152e1b3a7274f76e05512ad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5fb10dcfecd524cdb01b0ddedbd610dd = $(`&lt;div id=&quot;html_5fb10dcfecd524cdb01b0ddedbd610dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6772             latitude:43.7256             pred_result:9.932550430297852             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5195c1752152e1b3a7274f76e05512ad.setContent(html_5fb10dcfecd524cdb01b0ddedbd610dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_77a0a45c12b4d76402cc1e875dd76374.bindPopup(popup_5195c1752152e1b3a7274f76e05512ad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_99d8c3e504cbd7725b28a16d772b2420 = L.circleMarker(\\n\",\n       \"                [47.3636, 123.9305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea763eb3eb7c0462c88746e3abbd194e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_977e104c041fab4ce33128aa8c6ad2f4 = $(`&lt;div id=&quot;html_977e104c041fab4ce33128aa8c6ad2f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9305             latitude:47.3636             pred_result:18.609216690063477             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea763eb3eb7c0462c88746e3abbd194e.setContent(html_977e104c041fab4ce33128aa8c6ad2f4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_99d8c3e504cbd7725b28a16d772b2420.bindPopup(popup_ea763eb3eb7c0462c88746e3abbd194e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2c9ce8f13b20fc7bdbdc7903d3266ea = L.circleMarker(\\n\",\n       \"                [47.3386, 123.9305],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3df549e0a3cf54f31b1914311cbe6df9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d4ff7c7e496104eabfd34507b7ac043 = $(`&lt;div id=&quot;html_8d4ff7c7e496104eabfd34507b7ac043&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9305             latitude:47.3386             pred_result:19.45017433166504             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3df549e0a3cf54f31b1914311cbe6df9.setContent(html_8d4ff7c7e496104eabfd34507b7ac043);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2c9ce8f13b20fc7bdbdc7903d3266ea.bindPopup(popup_3df549e0a3cf54f31b1914311cbe6df9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_609187d90e1466b2224e4e19daca4156 = L.circleMarker(\\n\",\n       \"                [47.3227, 123.9483],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e93fc9c030ee1c3dc93460953e73057 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3a310a196575d4fb03ead0848a7f1d9 = $(`&lt;div id=&quot;html_c3a310a196575d4fb03ead0848a7f1d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9483             latitude:47.3227             pred_result:20.641334533691406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e93fc9c030ee1c3dc93460953e73057.setContent(html_c3a310a196575d4fb03ead0848a7f1d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_609187d90e1466b2224e4e19daca4156.bindPopup(popup_9e93fc9c030ee1c3dc93460953e73057)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_532f8b69320181a14cce74f9535f2d01 = L.circleMarker(\\n\",\n       \"                [47.203, 123.6261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a357554b707d873f1b0db1b866af51c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_62211eca4e5795ab6407f3fccd95ba95 = $(`&lt;div id=&quot;html_62211eca4e5795ab6407f3fccd95ba95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.6261             latitude:47.203             pred_result:17.53800392150879             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a357554b707d873f1b0db1b866af51c9.setContent(html_62211eca4e5795ab6407f3fccd95ba95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_532f8b69320181a14cce74f9535f2d01.bindPopup(popup_a357554b707d873f1b0db1b866af51c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09bee7a7a2a372c1a7201141238123b4 = L.circleMarker(\\n\",\n       \"                [47.2988, 123.945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5b091e873550e10f0a952b323c5060c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c420e7c284a320a20b16a70844695fc5 = $(`&lt;div id=&quot;html_c420e7c284a320a20b16a70844695fc5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.945             latitude:47.2988             pred_result:21.395946502685547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5b091e873550e10f0a952b323c5060c.setContent(html_c420e7c284a320a20b16a70844695fc5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09bee7a7a2a372c1a7201141238123b4.bindPopup(popup_f5b091e873550e10f0a952b323c5060c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a1cc6b0443912031e492e18dee373dc = L.circleMarker(\\n\",\n       \"                [44.56100000000001, 129.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e65662a6faa814f614af5261cb5e8d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31e64926c4cecdeddbf3c477a91a4e08 = $(`&lt;div id=&quot;html_31e64926c4cecdeddbf3c477a91a4e08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.61             latitude:44.56100000000001             pred_result:8.581588745117188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e65662a6faa814f614af5261cb5e8d4.setContent(html_31e64926c4cecdeddbf3c477a91a4e08);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a1cc6b0443912031e492e18dee373dc.bindPopup(popup_9e65662a6faa814f614af5261cb5e8d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb9710004f3634f3faed9664634962b2 = L.circleMarker(\\n\",\n       \"                [44.5782, 129.6115],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3b758a336d0aafbf36839d465860a46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f6210bd64d1b786a6f6795ca0a5ed80 = $(`&lt;div id=&quot;html_0f6210bd64d1b786a6f6795ca0a5ed80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6115             latitude:44.5782             pred_result:6.662716865539551             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3b758a336d0aafbf36839d465860a46.setContent(html_0f6210bd64d1b786a6f6795ca0a5ed80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb9710004f3634f3faed9664634962b2.bindPopup(popup_d3b758a336d0aafbf36839d465860a46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f461fd1e10bfeaa209a4080d32476a42 = L.circleMarker(\\n\",\n       \"                [44.5952, 129.5902],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6403ec694f2c530b8ca873cc90d7edf7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2dc079c5e500484239775656bba785f = $(`&lt;div id=&quot;html_b2dc079c5e500484239775656bba785f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.5902             latitude:44.5952             pred_result:6.584514617919922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6403ec694f2c530b8ca873cc90d7edf7.setContent(html_b2dc079c5e500484239775656bba785f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f461fd1e10bfeaa209a4080d32476a42.bindPopup(popup_6403ec694f2c530b8ca873cc90d7edf7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c25892b78452189322cecbf05da2f17a = L.circleMarker(\\n\",\n       \"                [44.6104, 129.6459],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac050f7915c884a5bc8a1dc8e11c7601 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b8d1a366ce5cb022d03bbd5babff86f = $(`&lt;div id=&quot;html_8b8d1a366ce5cb022d03bbd5babff86f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6459             latitude:44.6104             pred_result:7.369272232055664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac050f7915c884a5bc8a1dc8e11c7601.setContent(html_8b8d1a366ce5cb022d03bbd5babff86f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c25892b78452189322cecbf05da2f17a.bindPopup(popup_ac050f7915c884a5bc8a1dc8e11c7601)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec7baece0237958eed64306fe1b27a20 = L.circleMarker(\\n\",\n       \"                [44.5462, 129.6386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_373413c55cf372f7b5427a16a8c8350a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f1600960bd1d81b5544850ab18f90dd = $(`&lt;div id=&quot;html_6f1600960bd1d81b5544850ab18f90dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.6386             latitude:44.5462             pred_result:7.3822526931762695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_373413c55cf372f7b5427a16a8c8350a.setContent(html_6f1600960bd1d81b5544850ab18f90dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec7baece0237958eed64306fe1b27a20.bindPopup(popup_373413c55cf372f7b5427a16a8c8350a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_759927b2c7ddd01d7ef29de0af0b0aad = L.circleMarker(\\n\",\n       \"                [46.0347, 124.8354],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3cf3a748313d29a02e9364fefec1b541 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_694387a2ba57f766e36d4dcb3cd53fda = $(`&lt;div id=&quot;html_694387a2ba57f766e36d4dcb3cd53fda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8354             latitude:46.0347             pred_result:9.515750885009766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3cf3a748313d29a02e9364fefec1b541.setContent(html_694387a2ba57f766e36d4dcb3cd53fda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_759927b2c7ddd01d7ef29de0af0b0aad.bindPopup(popup_3cf3a748313d29a02e9364fefec1b541)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f601a68f5b51ce0fef7c8c37da4b730 = L.circleMarker(\\n\",\n       \"                [46.528, 125.112],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ce307ba00f22020a450564592ad5067 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9083a8015be79cf69579a83f631a675 = $(`&lt;div id=&quot;html_c9083a8015be79cf69579a83f631a675&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.112             latitude:46.528             pred_result:20.832971572875977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ce307ba00f22020a450564592ad5067.setContent(html_c9083a8015be79cf69579a83f631a675);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f601a68f5b51ce0fef7c8c37da4b730.bindPopup(popup_4ce307ba00f22020a450564592ad5067)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbb07c6ffc4c8cf272dda06f514474b3 = L.circleMarker(\\n\",\n       \"                [46.3991, 124.8847],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_515eafe8afbf97286b5010806a97407d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a88112ac0b45d91bb05ec3ef21482bf = $(`&lt;div id=&quot;html_2a88112ac0b45d91bb05ec3ef21482bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8847             latitude:46.3991             pred_result:15.596565246582031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_515eafe8afbf97286b5010806a97407d.setContent(html_2a88112ac0b45d91bb05ec3ef21482bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbb07c6ffc4c8cf272dda06f514474b3.bindPopup(popup_515eafe8afbf97286b5010806a97407d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de0be8b8a93ffeaa22370244852801ad = L.circleMarker(\\n\",\n       \"                [46.5776, 125.1386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bc6e158aefe0793830cfa1c807bfb773 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cea6d7a1084ee72bd0e6af5e234fff55 = $(`&lt;div id=&quot;html_cea6d7a1084ee72bd0e6af5e234fff55&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1386             latitude:46.5776             pred_result:16.82156753540039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bc6e158aefe0793830cfa1c807bfb773.setContent(html_cea6d7a1084ee72bd0e6af5e234fff55);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de0be8b8a93ffeaa22370244852801ad.bindPopup(popup_bc6e158aefe0793830cfa1c807bfb773)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6a75e0cc1af61bd88c0caa2c98b7ef3 = L.circleMarker(\\n\",\n       \"                [46.6219, 124.8648],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ab13efc8476a1d19783ab260b3f32d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bee8474aba9aa46f1e23afbea012b5e8 = $(`&lt;div id=&quot;html_bee8474aba9aa46f1e23afbea012b5e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8648             latitude:46.6219             pred_result:19.9049072265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ab13efc8476a1d19783ab260b3f32d7.setContent(html_bee8474aba9aa46f1e23afbea012b5e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6a75e0cc1af61bd88c0caa2c98b7ef3.bindPopup(popup_9ab13efc8476a1d19783ab260b3f32d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e4ff7be09dceedd7586ace73106bce4 = L.circleMarker(\\n\",\n       \"                [31.3508, 118.3528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b30ca2fd3d60d6a87d1dc32d144b8e0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf2c3364009e545e81eb18c31aca95fa = $(`&lt;div id=&quot;html_bf2c3364009e545e81eb18c31aca95fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3528             latitude:31.3508             pred_result:49.339168548583984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b30ca2fd3d60d6a87d1dc32d144b8e0a.setContent(html_bf2c3364009e545e81eb18c31aca95fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e4ff7be09dceedd7586ace73106bce4.bindPopup(popup_b30ca2fd3d60d6a87d1dc32d144b8e0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c8cc459f743c7aee2f1c1fba1afbcb3 = L.circleMarker(\\n\",\n       \"                [31.4189, 118.37],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf17ba80e5284c2a2d0c62b175c695fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2d1f69dfe3ed5c177f10ff81762f174 = $(`&lt;div id=&quot;html_d2d1f69dfe3ed5c177f10ff81762f174&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.37             latitude:31.4189             pred_result:44.56576156616211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf17ba80e5284c2a2d0c62b175c695fe.setContent(html_d2d1f69dfe3ed5c177f10ff81762f174);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c8cc459f743c7aee2f1c1fba1afbcb3.bindPopup(popup_bf17ba80e5284c2a2d0c62b175c695fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a83168cab1f21fae0f9830f945ba72b = L.circleMarker(\\n\",\n       \"                [31.3178, 118.3708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61f1dfc079515b600685406ef1a42bdd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5955938beaabaa13e8fdbb38d81b15b4 = $(`&lt;div id=&quot;html_5955938beaabaa13e8fdbb38d81b15b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3708             latitude:31.3178             pred_result:45.71642303466797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61f1dfc079515b600685406ef1a42bdd.setContent(html_5955938beaabaa13e8fdbb38d81b15b4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a83168cab1f21fae0f9830f945ba72b.bindPopup(popup_61f1dfc079515b600685406ef1a42bdd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_541227cbd9df4445181883d66f0cb31b = L.circleMarker(\\n\",\n       \"                [31.3839, 118.4022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da9bc607a0aa3f8468b42d557becde49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ce28fe0ce792be3ab1a6b2724cd6e8e = $(`&lt;div id=&quot;html_6ce28fe0ce792be3ab1a6b2724cd6e8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4022             latitude:31.3839             pred_result:44.29216384887695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da9bc607a0aa3f8468b42d557becde49.setContent(html_6ce28fe0ce792be3ab1a6b2724cd6e8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_541227cbd9df4445181883d66f0cb31b.bindPopup(popup_da9bc607a0aa3f8468b42d557becde49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81e1bfc452e2bc970f3d3ffbde7a94f9 = L.circleMarker(\\n\",\n       \"                [31.6861, 118.5058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fbc083a48f3d628127f719542e2ce5c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd4619db2fd1eab7c78f899f827ec3dc = $(`&lt;div id=&quot;html_fd4619db2fd1eab7c78f899f827ec3dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5058             latitude:31.6861             pred_result:40.73760223388672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fbc083a48f3d628127f719542e2ce5c4.setContent(html_fd4619db2fd1eab7c78f899f827ec3dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81e1bfc452e2bc970f3d3ffbde7a94f9.bindPopup(popup_fbc083a48f3d628127f719542e2ce5c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4d88c89e97d329a3de4233e4e05435b = L.circleMarker(\\n\",\n       \"                [31.6411, 118.4828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa120fce7ff4b573af2746d4b1358120 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7233a2165cfc8823890d3fd1de62467a = $(`&lt;div id=&quot;html_7233a2165cfc8823890d3fd1de62467a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.4828             latitude:31.6411             pred_result:43.36723327636719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa120fce7ff4b573af2746d4b1358120.setContent(html_7233a2165cfc8823890d3fd1de62467a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4d88c89e97d329a3de4233e4e05435b.bindPopup(popup_aa120fce7ff4b573af2746d4b1358120)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5ff5aa2d6e007555fbe716286f8962f = L.circleMarker(\\n\",\n       \"                [31.7506, 118.5106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4b3bea5c1208af7e08caaa50753dd2e3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11368a8471e8e8b6d1e60646cb4384db = $(`&lt;div id=&quot;html_11368a8471e8e8b6d1e60646cb4384db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5106             latitude:31.7506             pred_result:39.599266052246094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4b3bea5c1208af7e08caaa50753dd2e3.setContent(html_11368a8471e8e8b6d1e60646cb4384db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5ff5aa2d6e007555fbe716286f8962f.bindPopup(popup_4b3bea5c1208af7e08caaa50753dd2e3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52f7c630c6056fbfdf3d9320fcd34bf7 = L.circleMarker(\\n\",\n       \"                [31.6928, 118.48],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e5a9f89ac4bcc050b0eb737c70b9211 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3575d6479f2db3fab73ad6fc1126074 = $(`&lt;div id=&quot;html_c3575d6479f2db3fab73ad6fc1126074&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.48             latitude:31.6928             pred_result:42.086246490478516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e5a9f89ac4bcc050b0eb737c70b9211.setContent(html_c3575d6479f2db3fab73ad6fc1126074);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52f7c630c6056fbfdf3d9320fcd34bf7.bindPopup(popup_7e5a9f89ac4bcc050b0eb737c70b9211)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d901620cdbb0e182f03350cbca4515d5 = L.circleMarker(\\n\",\n       \"                [31.7133, 118.6439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07115348d95594394dc949ecf2f9c762 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84f7b68053ab94e0b0a49527e4d46139 = $(`&lt;div id=&quot;html_84f7b68053ab94e0b0a49527e4d46139&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6439             latitude:31.7133             pred_result:41.09461975097656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07115348d95594394dc949ecf2f9c762.setContent(html_84f7b68053ab94e0b0a49527e4d46139);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d901620cdbb0e182f03350cbca4515d5.bindPopup(popup_07115348d95594394dc949ecf2f9c762)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89ab68d8b86949f6001616d810902831 = L.circleMarker(\\n\",\n       \"                [29.6816, 115.9872],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d84f480b5538e887988a338016223ba6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2ac439b32146015ef2f5c0a6ea555d8 = $(`&lt;div id=&quot;html_d2ac439b32146015ef2f5c0a6ea555d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9872             latitude:29.6816             pred_result:38.55288314819336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d84f480b5538e887988a338016223ba6.setContent(html_d2ac439b32146015ef2f5c0a6ea555d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89ab68d8b86949f6001616d810902831.bindPopup(popup_d84f480b5538e887988a338016223ba6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fb62160e31aab7aaad2d2e88b4924a3 = L.circleMarker(\\n\",\n       \"                [29.7048, 115.9581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91c4752035e2ae929aba1a1648ad1d1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_efcbf8027fa25ac9a963b1c4eedcdd1f = $(`&lt;div id=&quot;html_efcbf8027fa25ac9a963b1c4eedcdd1f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9581             latitude:29.7048             pred_result:38.222877502441406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91c4752035e2ae929aba1a1648ad1d1f.setContent(html_efcbf8027fa25ac9a963b1c4eedcdd1f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fb62160e31aab7aaad2d2e88b4924a3.bindPopup(popup_91c4752035e2ae929aba1a1648ad1d1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a78c19aac6f3836f7c074503f4d29e8 = L.circleMarker(\\n\",\n       \"                [29.7292, 115.988],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a60c353b951dd6662cdda074870df4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_123e15ba8ada177277b95d69198df141 = $(`&lt;div id=&quot;html_123e15ba8ada177277b95d69198df141&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.988             latitude:29.7292             pred_result:38.379066467285156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a60c353b951dd6662cdda074870df4f.setContent(html_123e15ba8ada177277b95d69198df141);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a78c19aac6f3836f7c074503f4d29e8.bindPopup(popup_5a60c353b951dd6662cdda074870df4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97b84e82b2cb5aff01a1457304b29888 = L.circleMarker(\\n\",\n       \"                [29.6535, 116.0174],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5096bf6d5e27d409e4d73a193317df2e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb42acc488aae35adbf641ed64e95621 = $(`&lt;div id=&quot;html_eb42acc488aae35adbf641ed64e95621&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0174             latitude:29.6535             pred_result:38.58808517456055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5096bf6d5e27d409e4d73a193317df2e.setContent(html_eb42acc488aae35adbf641ed64e95621);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97b84e82b2cb5aff01a1457304b29888.bindPopup(popup_5096bf6d5e27d409e4d73a193317df2e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52646fbd7a19d412a663fb0bf812472c = L.circleMarker(\\n\",\n       \"                [29.6926, 116.0628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a5b53a7dfcf02d29fa2a1379c38f4be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f111edf7488040e4c6362683b7f30c4 = $(`&lt;div id=&quot;html_6f111edf7488040e4c6362683b7f30c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0628             latitude:29.6926             pred_result:39.26579284667969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a5b53a7dfcf02d29fa2a1379c38f4be.setContent(html_6f111edf7488040e4c6362683b7f30c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52646fbd7a19d412a663fb0bf812472c.bindPopup(popup_5a5b53a7dfcf02d29fa2a1379c38f4be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38a87411f8e95582b1619aeba230e400 = L.circleMarker(\\n\",\n       \"                [29.6039, 115.9114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30ef96711352a18e8758c75e829030eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce85b22f7e2cb30231b7d99da2e48590 = $(`&lt;div id=&quot;html_ce85b22f7e2cb30231b7d99da2e48590&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9114             latitude:29.6039             pred_result:39.12422180175781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30ef96711352a18e8758c75e829030eb.setContent(html_ce85b22f7e2cb30231b7d99da2e48590);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38a87411f8e95582b1619aeba230e400.bindPopup(popup_30ef96711352a18e8758c75e829030eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bf6f792572489d267681217a2aab034 = L.circleMarker(\\n\",\n       \"                [29.7534, 116.0726],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f2531899a8324b93a515906a93c00d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99d70785011fa9776f90f7295c537b00 = $(`&lt;div id=&quot;html_99d70785011fa9776f90f7295c537b00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0726             latitude:29.7534             pred_result:39.558753967285156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f2531899a8324b93a515906a93c00d3.setContent(html_99d70785011fa9776f90f7295c537b00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bf6f792572489d267681217a2aab034.bindPopup(popup_1f2531899a8324b93a515906a93c00d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2673f5ef0e20a8b73e008c5a82e7ffbb = L.circleMarker(\\n\",\n       \"                [29.5867, 115.9936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0dcdb4c9065102a59d777764d845e9b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8a8fef934e43927e1c30b4dfe4b4e47 = $(`&lt;div id=&quot;html_e8a8fef934e43927e1c30b4dfe4b4e47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9936             latitude:29.5867             pred_result:35.66099166870117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0dcdb4c9065102a59d777764d845e9b2.setContent(html_e8a8fef934e43927e1c30b4dfe4b4e47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2673f5ef0e20a8b73e008c5a82e7ffbb.bindPopup(popup_0dcdb4c9065102a59d777764d845e9b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12be921ad6fede092889095ec4a4a14e = L.circleMarker(\\n\",\n       \"                [34.6692, 112.3628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3469ce7a9788c76fedcf6874f707f3c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4464bbc0816636df1c4b6a513d04ed39 = $(`&lt;div id=&quot;html_4464bbc0816636df1c4b6a513d04ed39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3628             latitude:34.6692             pred_result:60.269264221191406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3469ce7a9788c76fedcf6874f707f3c7.setContent(html_4464bbc0816636df1c4b6a513d04ed39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12be921ad6fede092889095ec4a4a14e.bindPopup(popup_3469ce7a9788c76fedcf6874f707f3c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc57a477a3bd66c81cdbea362d7a7d58 = L.circleMarker(\\n\",\n       \"                [34.6511, 112.3939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a52391ed68e49ac933a5917e3bb48253 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_035a0876f07d84f41aae1308941a4777 = $(`&lt;div id=&quot;html_035a0876f07d84f41aae1308941a4777&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3939             latitude:34.6511             pred_result:60.1875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a52391ed68e49ac933a5917e3bb48253.setContent(html_035a0876f07d84f41aae1308941a4777);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc57a477a3bd66c81cdbea362d7a7d58.bindPopup(popup_a52391ed68e49ac933a5917e3bb48253)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e0d218348d57d216e15cccb25bf605d = L.circleMarker(\\n\",\n       \"                [34.6869, 112.4664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c95ac1c0fdd10ec4afbb6954e05e332 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a534f0aaf295ed619df22cd78ce9f4c = $(`&lt;div id=&quot;html_4a534f0aaf295ed619df22cd78ce9f4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4664             latitude:34.6869             pred_result:60.79631042480469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c95ac1c0fdd10ec4afbb6954e05e332.setContent(html_4a534f0aaf295ed619df22cd78ce9f4c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e0d218348d57d216e15cccb25bf605d.bindPopup(popup_2c95ac1c0fdd10ec4afbb6954e05e332)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0db5734e03cd0b09e184435353934c62 = L.circleMarker(\\n\",\n       \"                [34.6869, 112.4831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_439a7739285bc34e06627c08655d2f2d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d22a728a456ddf076975f7461357387 = $(`&lt;div id=&quot;html_7d22a728a456ddf076975f7461357387&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4831             latitude:34.6869             pred_result:60.79753494262695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_439a7739285bc34e06627c08655d2f2d.setContent(html_7d22a728a456ddf076975f7461357387);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0db5734e03cd0b09e184435353934c62.bindPopup(popup_439a7739285bc34e06627c08655d2f2d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ecf68e7b448a5c27d6d8a7438235cb6 = L.circleMarker(\\n\",\n       \"                [34.6231, 112.3844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca2ff3b7dd45298ccd1c6addd217e4bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f38f9a6e2e32414349466a63740761ef = $(`&lt;div id=&quot;html_f38f9a6e2e32414349466a63740761ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3844             latitude:34.6231             pred_result:59.72019958496094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca2ff3b7dd45298ccd1c6addd217e4bb.setContent(html_f38f9a6e2e32414349466a63740761ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ecf68e7b448a5c27d6d8a7438235cb6.bindPopup(popup_ca2ff3b7dd45298ccd1c6addd217e4bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81fdb1c592aba44d3d72b75d81cee23e = L.circleMarker(\\n\",\n       \"                [34.6258, 112.4275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e550fe06e0f7ee0e672f85f965e7f693 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0672c9a2738c9c94fa8b92e2bccd1560 = $(`&lt;div id=&quot;html_0672c9a2738c9c94fa8b92e2bccd1560&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4275             latitude:34.6258             pred_result:60.00518035888672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e550fe06e0f7ee0e672f85f965e7f693.setContent(html_0672c9a2738c9c94fa8b92e2bccd1560);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81fdb1c592aba44d3d72b75d81cee23e.bindPopup(popup_e550fe06e0f7ee0e672f85f965e7f693)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd8d716873963aacc65ed2b9300a3259 = L.circleMarker(\\n\",\n       \"                [36.061, 114.483],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55de87ff92419d8888f08041fbc496fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0969b0677598744c1466cfc4eedf9e0 = $(`&lt;div id=&quot;html_f0969b0677598744c1466cfc4eedf9e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.483             latitude:36.061             pred_result:68.51154327392578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55de87ff92419d8888f08041fbc496fd.setContent(html_f0969b0677598744c1466cfc4eedf9e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd8d716873963aacc65ed2b9300a3259.bindPopup(popup_55de87ff92419d8888f08041fbc496fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf2d44e9b0f7a7e7731188f225f2093e = L.circleMarker(\\n\",\n       \"                [36.086, 114.32],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c04059a8fb8e4ff5b604c8b70f416c4e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2c1262115a69e94041e5feceb91a43d = $(`&lt;div id=&quot;html_c2c1262115a69e94041e5feceb91a43d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.32             latitude:36.086             pred_result:70.38052368164062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c04059a8fb8e4ff5b604c8b70f416c4e.setContent(html_c2c1262115a69e94041e5feceb91a43d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf2d44e9b0f7a7e7731188f225f2093e.bindPopup(popup_c04059a8fb8e4ff5b604c8b70f416c4e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c39412cb78024fdce0b99832c24be137 = L.circleMarker(\\n\",\n       \"                [36.087, 114.358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6e88e8d192849e460fdba491dc5b049 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e518548fac9659440bb8b60b49396539 = $(`&lt;div id=&quot;html_e518548fac9659440bb8b60b49396539&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.358             latitude:36.087             pred_result:69.86882019042969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6e88e8d192849e460fdba491dc5b049.setContent(html_e518548fac9659440bb8b60b49396539);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c39412cb78024fdce0b99832c24be137.bindPopup(popup_e6e88e8d192849e460fdba491dc5b049)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4122f47f1ffe17d5519f79a65ef0b1e2 = L.circleMarker(\\n\",\n       \"                [36.0883, 114.3931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4471e2b9c3f67305616e0139caf3e353 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_800b257167ce4af29e7b14c62a57b6a1 = $(`&lt;div id=&quot;html_800b257167ce4af29e7b14c62a57b6a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3931             latitude:36.0883             pred_result:69.75021362304688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4471e2b9c3f67305616e0139caf3e353.setContent(html_800b257167ce4af29e7b14c62a57b6a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4122f47f1ffe17d5519f79a65ef0b1e2.bindPopup(popup_4471e2b9c3f67305616e0139caf3e353)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0563d4532ca1ed757f858c5992035e91 = L.circleMarker(\\n\",\n       \"                [36.11, 114.286],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90ac5fb31b5de2afce0ad26170370767 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6b399978781f30fbfb627fd69e1d0d5 = $(`&lt;div id=&quot;html_c6b399978781f30fbfb627fd69e1d0d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.286             latitude:36.11             pred_result:70.98599243164062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90ac5fb31b5de2afce0ad26170370767.setContent(html_c6b399978781f30fbfb627fd69e1d0d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0563d4532ca1ed757f858c5992035e91.bindPopup(popup_90ac5fb31b5de2afce0ad26170370767)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49d8ebbbdfafa044d301f4c8805f6dd1 = L.circleMarker(\\n\",\n       \"                [34.8022, 114.3406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c690bb2dca2e1919c6fa397a40aa232 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdf66d77666cae35930c7dfe59c5c6cd = $(`&lt;div id=&quot;html_bdf66d77666cae35930c7dfe59c5c6cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3406             latitude:34.8022             pred_result:57.192962646484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c690bb2dca2e1919c6fa397a40aa232.setContent(html_bdf66d77666cae35930c7dfe59c5c6cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49d8ebbbdfafa044d301f4c8805f6dd1.bindPopup(popup_2c690bb2dca2e1919c6fa397a40aa232)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_21d92c42ddf22537a58ddc32c7f415c0 = L.circleMarker(\\n\",\n       \"                [34.7781, 114.3389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c8f3f3ade7849d75cf282330ef4a0f9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61d5c04d77bbba08681468af6a95d6eb = $(`&lt;div id=&quot;html_61d5c04d77bbba08681468af6a95d6eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3389             latitude:34.7781             pred_result:56.95857238769531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c8f3f3ade7849d75cf282330ef4a0f9f.setContent(html_61d5c04d77bbba08681468af6a95d6eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_21d92c42ddf22537a58ddc32c7f415c0.bindPopup(popup_c8f3f3ade7849d75cf282330ef4a0f9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ddbee451c993ddd067b04a0ae2e39550 = L.circleMarker(\\n\",\n       \"                [34.7975, 114.3733],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c3d355c0b30dd82eaec6c0b22f647cda = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecececd65951a0c24963eaa3b2659e41 = $(`&lt;div id=&quot;html_ecececd65951a0c24963eaa3b2659e41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3733             latitude:34.7975             pred_result:57.21992111206055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c3d355c0b30dd82eaec6c0b22f647cda.setContent(html_ecececd65951a0c24963eaa3b2659e41);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ddbee451c993ddd067b04a0ae2e39550.bindPopup(popup_c3d355c0b30dd82eaec6c0b22f647cda)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ae35b79b76682d7b17d491d90b058ee = L.circleMarker(\\n\",\n       \"                [34.7967, 114.2886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7cccdd42c5c297d3373dd79964eec76a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdcfa2896a74d9fd7b8a1485c4ecc7ed = $(`&lt;div id=&quot;html_bdcfa2896a74d9fd7b8a1485c4ecc7ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2886             latitude:34.7967             pred_result:57.561485290527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7cccdd42c5c297d3373dd79964eec76a.setContent(html_bdcfa2896a74d9fd7b8a1485c4ecc7ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ae35b79b76682d7b17d491d90b058ee.bindPopup(popup_7cccdd42c5c297d3373dd79964eec76a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b06226abb953d276af98507451aad2e = L.circleMarker(\\n\",\n       \"                [35.235, 113.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bedf6854eec671cee11d2a4d72b47cb4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4357a6e0ee914da57c37fb272848d230 = $(`&lt;div id=&quot;html_4357a6e0ee914da57c37fb272848d230&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.261             latitude:35.235             pred_result:67.89144897460938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bedf6854eec671cee11d2a4d72b47cb4.setContent(html_4357a6e0ee914da57c37fb272848d230);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b06226abb953d276af98507451aad2e.bindPopup(popup_bedf6854eec671cee11d2a4d72b47cb4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3907e273dd0cf6ffd231432e9ec17cfd = L.circleMarker(\\n\",\n       \"                [35.213, 113.227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa292e63b42ec3690fddb5e89a631642 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8ae1b60313b2f4643b85864da250680 = $(`&lt;div id=&quot;html_d8ae1b60313b2f4643b85864da250680&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.227             latitude:35.213             pred_result:67.68718719482422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa292e63b42ec3690fddb5e89a631642.setContent(html_d8ae1b60313b2f4643b85864da250680);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3907e273dd0cf6ffd231432e9ec17cfd.bindPopup(popup_aa292e63b42ec3690fddb5e89a631642)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b32d40c957af45a3fe769aff01ced45 = L.circleMarker(\\n\",\n       \"                [35.1764, 113.2464],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d22dd35e4b56d6186ab6b3b75e992d9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0e01dbaa813fda430d5e30e545fb327 = $(`&lt;div id=&quot;html_b0e01dbaa813fda430d5e30e545fb327&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2464             latitude:35.1764             pred_result:68.35419464111328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d22dd35e4b56d6186ab6b3b75e992d9d.setContent(html_b0e01dbaa813fda430d5e30e545fb327);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b32d40c957af45a3fe769aff01ced45.bindPopup(popup_d22dd35e4b56d6186ab6b3b75e992d9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e7212afc49c375218890d7e4166f962 = L.circleMarker(\\n\",\n       \"                [35.259, 113.1992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_261153991ad0072488e4812bb57dbd4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_584c4cf3ffedd7ae1a965b77469ba4f8 = $(`&lt;div id=&quot;html_584c4cf3ffedd7ae1a965b77469ba4f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1992             latitude:35.259             pred_result:66.90963745117188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_261153991ad0072488e4812bb57dbd4c.setContent(html_584c4cf3ffedd7ae1a965b77469ba4f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e7212afc49c375218890d7e4166f962.bindPopup(popup_261153991ad0072488e4812bb57dbd4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c41a13d4fb393d2fd7eff5e014c3a3e = L.circleMarker(\\n\",\n       \"                [33.7214, 113.3064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fee576e0444f767fdb0362e35f8f6cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2842212fbe068f5464a9b58ddbb32c96 = $(`&lt;div id=&quot;html_2842212fbe068f5464a9b58ddbb32c96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3064             latitude:33.7214             pred_result:51.581703186035156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fee576e0444f767fdb0362e35f8f6cd.setContent(html_2842212fbe068f5464a9b58ddbb32c96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c41a13d4fb393d2fd7eff5e014c3a3e.bindPopup(popup_8fee576e0444f767fdb0362e35f8f6cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4734da6a91d7cf21efaa60e25f44d446 = L.circleMarker(\\n\",\n       \"                [33.739000000000004, 113.292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45a669cd82c8fd684f752c464d1280e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f0d9091ba11905a667fd791c40a8adc = $(`&lt;div id=&quot;html_9f0d9091ba11905a667fd791c40a8adc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.292             latitude:33.739000000000004             pred_result:51.59601593017578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45a669cd82c8fd684f752c464d1280e2.setContent(html_9f0d9091ba11905a667fd791c40a8adc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4734da6a91d7cf21efaa60e25f44d446.bindPopup(popup_45a669cd82c8fd684f752c464d1280e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79bc11e421d25966b525eb453ee7108d = L.circleMarker(\\n\",\n       \"                [33.736999999999995, 113.182],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88bc6b11e686fd81301611ed10212f9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_533d90614fbc9aaea2afdcee529af025 = $(`&lt;div id=&quot;html_533d90614fbc9aaea2afdcee529af025&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.182             latitude:33.736999999999995             pred_result:52.29636764526367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88bc6b11e686fd81301611ed10212f9c.setContent(html_533d90614fbc9aaea2afdcee529af025);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79bc11e421d25966b525eb453ee7108d.bindPopup(popup_88bc6b11e686fd81301611ed10212f9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_04b5b08432a73523a401449e344788e4 = L.circleMarker(\\n\",\n       \"                [34.7772, 111.1928],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c04b520ac9e5d6d03b0dda7db232441a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aafa5d1675f0fda794509568fae463c2 = $(`&lt;div id=&quot;html_aafa5d1675f0fda794509568fae463c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1928             latitude:34.7772             pred_result:53.985565185546875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c04b520ac9e5d6d03b0dda7db232441a.setContent(html_aafa5d1675f0fda794509568fae463c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_04b5b08432a73523a401449e344788e4.bindPopup(popup_c04b520ac9e5d6d03b0dda7db232441a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b67627da2823c51993d4f4392f2d719c = L.circleMarker(\\n\",\n       \"                [34.794000000000004, 111.158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b4c1ffbe3d0f196c2703bb1341e4397 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc3d505d11dd3e3beef200ac08df078e = $(`&lt;div id=&quot;html_cc3d505d11dd3e3beef200ac08df078e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.158             latitude:34.794000000000004             pred_result:54.38896942138672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b4c1ffbe3d0f196c2703bb1341e4397.setContent(html_cc3d505d11dd3e3beef200ac08df078e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b67627da2823c51993d4f4392f2d719c.bindPopup(popup_8b4c1ffbe3d0f196c2703bb1341e4397)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2dbb938290376315ef31318428dfc015 = L.circleMarker(\\n\",\n       \"                [34.7997, 111.1489],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46bc9b4dd9482981d6c1646330d54c3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f8c365561633f2c129cef90d668d6d3d = $(`&lt;div id=&quot;html_f8c365561633f2c129cef90d668d6d3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1489             latitude:34.7997             pred_result:54.4449348449707             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46bc9b4dd9482981d6c1646330d54c3b.setContent(html_f8c365561633f2c129cef90d668d6d3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2dbb938290376315ef31318428dfc015.bindPopup(popup_46bc9b4dd9482981d6c1646330d54c3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1265ac8439d0568657c9b4dfb23214f1 = L.circleMarker(\\n\",\n       \"                [30.7157, 111.3009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_521e18c18438b9c23e1479b8dcd6eba5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_726109ad671fb02b2dcd9de7dca59ee7 = $(`&lt;div id=&quot;html_726109ad671fb02b2dcd9de7dca59ee7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3009             latitude:30.7157             pred_result:50.676719665527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_521e18c18438b9c23e1479b8dcd6eba5.setContent(html_726109ad671fb02b2dcd9de7dca59ee7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1265ac8439d0568657c9b4dfb23214f1.bindPopup(popup_521e18c18438b9c23e1479b8dcd6eba5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_082e9ea881c0092a06f64fb545240db6 = L.circleMarker(\\n\",\n       \"                [30.698, 111.2992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed52ece0eeafe9ed243dafd2cbb65ca2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35140a0049b83389202f17179425bff6 = $(`&lt;div id=&quot;html_35140a0049b83389202f17179425bff6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2992             latitude:30.698             pred_result:50.72956085205078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed52ece0eeafe9ed243dafd2cbb65ca2.setContent(html_35140a0049b83389202f17179425bff6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_082e9ea881c0092a06f64fb545240db6.bindPopup(popup_ed52ece0eeafe9ed243dafd2cbb65ca2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b643fee15ccb129e3b5358cd853d4acd = L.circleMarker(\\n\",\n       \"                [30.6463, 111.3549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e247cc2b815a0a2fa8a030981112608b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0483ae1b1d78d3b97aebb7f76caafa4f = $(`&lt;div id=&quot;html_0483ae1b1d78d3b97aebb7f76caafa4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3549             latitude:30.6463             pred_result:51.396759033203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e247cc2b815a0a2fa8a030981112608b.setContent(html_0483ae1b1d78d3b97aebb7f76caafa4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b643fee15ccb129e3b5358cd853d4acd.bindPopup(popup_e247cc2b815a0a2fa8a030981112608b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3374130217b0b504a6af04560006d417 = L.circleMarker(\\n\",\n       \"                [30.696, 111.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_243da9ce53bd7710fa99e50136f155ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1056927d0d4cc5fcd8e255145318d1be = $(`&lt;div id=&quot;html_1056927d0d4cc5fcd8e255145318d1be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.268             latitude:30.696             pred_result:50.17485809326172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_243da9ce53bd7710fa99e50136f155ca.setContent(html_1056927d0d4cc5fcd8e255145318d1be);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3374130217b0b504a6af04560006d417.bindPopup(popup_243da9ce53bd7710fa99e50136f155ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d71a571a31899092a3205a998154435d = L.circleMarker(\\n\",\n       \"                [30.7819, 111.3296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb409a47d4b51e843ed91af6a0f52e3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eeb519cbe5c60101c931b0189ac4162d = $(`&lt;div id=&quot;html_eeb519cbe5c60101c931b0189ac4162d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3296             latitude:30.7819             pred_result:50.86111831665039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb409a47d4b51e843ed91af6a0f52e3f.setContent(html_eeb519cbe5c60101c931b0189ac4162d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d71a571a31899092a3205a998154435d.bindPopup(popup_fb409a47d4b51e843ed91af6a0f52e3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_996c474ba4401169dcdb5829a15bd380 = L.circleMarker(\\n\",\n       \"                [30.3175, 112.2551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9ab1b35fd29a0fe926847e97ea14d02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee9de8c2fbfe900457c494d62e143907 = $(`&lt;div id=&quot;html_ee9de8c2fbfe900457c494d62e143907&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2551             latitude:30.3175             pred_result:54.22752380371094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9ab1b35fd29a0fe926847e97ea14d02.setContent(html_ee9de8c2fbfe900457c494d62e143907);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_996c474ba4401169dcdb5829a15bd380.bindPopup(popup_e9ab1b35fd29a0fe926847e97ea14d02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_392f7dea5ab87bef583ca23ff6932dd0 = L.circleMarker(\\n\",\n       \"                [30.3515, 112.2068],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea9013e0165a0cc50ed375ed1793e6a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b98606425571d51de1465cc9ab3c7f5 = $(`&lt;div id=&quot;html_5b98606425571d51de1465cc9ab3c7f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2068             latitude:30.3515             pred_result:53.96586227416992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea9013e0165a0cc50ed375ed1793e6a7.setContent(html_5b98606425571d51de1465cc9ab3c7f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_392f7dea5ab87bef583ca23ff6932dd0.bindPopup(popup_ea9013e0165a0cc50ed375ed1793e6a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_841e59da6a3116efa8e087eac58024ea = L.circleMarker(\\n\",\n       \"                [30.3055, 112.2887],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d43a02ebaabe63867fe5a12cb776172 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a21dc540bb9256a96368f091499a1c87 = $(`&lt;div id=&quot;html_a21dc540bb9256a96368f091499a1c87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2887             latitude:30.3055             pred_result:54.68950653076172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d43a02ebaabe63867fe5a12cb776172.setContent(html_a21dc540bb9256a96368f091499a1c87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_841e59da6a3116efa8e087eac58024ea.bindPopup(popup_8d43a02ebaabe63867fe5a12cb776172)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb9815aeb99e43eea5439f34d93b566b = L.circleMarker(\\n\",\n       \"                [29.3578, 113.1094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92aa552babba02e1fbd3af8504c1d9d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a8aa5856c70d20eefe27611d9c8bcc13 = $(`&lt;div id=&quot;html_a8aa5856c70d20eefe27611d9c8bcc13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1094             latitude:29.3578             pred_result:49.18218231201172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92aa552babba02e1fbd3af8504c1d9d9.setContent(html_a8aa5856c70d20eefe27611d9c8bcc13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb9815aeb99e43eea5439f34d93b566b.bindPopup(popup_92aa552babba02e1fbd3af8504c1d9d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1011d4d6fa19d6e52226f84749a2b738 = L.circleMarker(\\n\",\n       \"                [29.4251, 113.1493],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b250196f920009ef96396b2ab9c53b79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25d5cc8955c26394a4a3126e60e44350 = $(`&lt;div id=&quot;html_25d5cc8955c26394a4a3126e60e44350&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1493             latitude:29.4251             pred_result:49.366519927978516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b250196f920009ef96396b2ab9c53b79.setContent(html_25d5cc8955c26394a4a3126e60e44350);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1011d4d6fa19d6e52226f84749a2b738.bindPopup(popup_b250196f920009ef96396b2ab9c53b79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73e9944d341192de3e796cb7ede3f955 = L.circleMarker(\\n\",\n       \"                [29.3678, 113.1772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5470a818851acec8a1857f12303aef0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc48a70f8f8a36c31caf3f5141c8d900 = $(`&lt;div id=&quot;html_fc48a70f8f8a36c31caf3f5141c8d900&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1772             latitude:29.3678             pred_result:49.037506103515625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5470a818851acec8a1857f12303aef0.setContent(html_fc48a70f8f8a36c31caf3f5141c8d900);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73e9944d341192de3e796cb7ede3f955.bindPopup(popup_d5470a818851acec8a1857f12303aef0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c8bef767140e1e3b5a32842b5a9c6617 = L.circleMarker(\\n\",\n       \"                [29.4758, 113.2621],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_243623db555bf7520ad9497667758c80 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1975d7e26cc86e5cefd35d04647caf3 = $(`&lt;div id=&quot;html_b1975d7e26cc86e5cefd35d04647caf3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2621             latitude:29.4758             pred_result:50.00742721557617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_243623db555bf7520ad9497667758c80.setContent(html_b1975d7e26cc86e5cefd35d04647caf3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c8bef767140e1e3b5a32842b5a9c6617.bindPopup(popup_243623db555bf7520ad9497667758c80)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0ae067f79a172252dd05d8e8a1856a0 = L.circleMarker(\\n\",\n       \"                [29.4402, 112.9943],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02e8cb0af89fa8e2a97bcda64e7c5c16 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24269513cff895932ed51b00a97649f9 = $(`&lt;div id=&quot;html_24269513cff895932ed51b00a97649f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.9943             latitude:29.4402             pred_result:49.53437042236328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02e8cb0af89fa8e2a97bcda64e7c5c16.setContent(html_24269513cff895932ed51b00a97649f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0ae067f79a172252dd05d8e8a1856a0.bindPopup(popup_02e8cb0af89fa8e2a97bcda64e7c5c16)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0927530244089e91ef48c0ac8036d74 = L.circleMarker(\\n\",\n       \"                [29.355, 113.2117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c75923e02d254741742376ad828e806 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_279d9db827d6926828038c9a036ebde1 = $(`&lt;div id=&quot;html_279d9db827d6926828038c9a036ebde1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2117             latitude:29.355             pred_result:48.799652099609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c75923e02d254741742376ad828e806.setContent(html_279d9db827d6926828038c9a036ebde1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0927530244089e91ef48c0ac8036d74.bindPopup(popup_2c75923e02d254741742376ad828e806)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb2faacdfd8371a396b2c52de570b05d = L.circleMarker(\\n\",\n       \"                [29.0244, 111.7044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5de3a0ef711470a2f680dd33b9c7c93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13c338534f6c2a3707533b5910176e4f = $(`&lt;div id=&quot;html_13c338534f6c2a3707533b5910176e4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7044             latitude:29.0244             pred_result:43.67267608642578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5de3a0ef711470a2f680dd33b9c7c93.setContent(html_13c338534f6c2a3707533b5910176e4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb2faacdfd8371a396b2c52de570b05d.bindPopup(popup_e5de3a0ef711470a2f680dd33b9c7c93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5783d06b77e7fd2810db494e35392b43 = L.circleMarker(\\n\",\n       \"                [28.9703, 111.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a392a8e6a82ffba3f02510dce248065e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9e7fb7c5f267840ff6f99e46d15b12e = $(`&lt;div id=&quot;html_a9e7fb7c5f267840ff6f99e46d15b12e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6975             latitude:28.9703             pred_result:43.21961975097656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a392a8e6a82ffba3f02510dce248065e.setContent(html_a9e7fb7c5f267840ff6f99e46d15b12e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5783d06b77e7fd2810db494e35392b43.bindPopup(popup_a392a8e6a82ffba3f02510dce248065e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8673be7a6fdca258903a7c3fee09e52b = L.circleMarker(\\n\",\n       \"                [29.0239, 111.6753],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee695022137a6c6b753f917ce8078d9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42ebc47efd194ac0b49cca438dae9c9e = $(`&lt;div id=&quot;html_42ebc47efd194ac0b49cca438dae9c9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6753             latitude:29.0239             pred_result:43.427040100097656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee695022137a6c6b753f917ce8078d9f.setContent(html_42ebc47efd194ac0b49cca438dae9c9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8673be7a6fdca258903a7c3fee09e52b.bindPopup(popup_ee695022137a6c6b753f917ce8078d9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc44484b684ea8de73f0bd71c5170eeb = L.circleMarker(\\n\",\n       \"                [29.0381, 111.6794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c7962ae1612c7e531178c2cf69c7066 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d8eb1ca2595acfe27f22fe53c447b467 = $(`&lt;div id=&quot;html_d8eb1ca2595acfe27f22fe53c447b467&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6794             latitude:29.0381             pred_result:43.626373291015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c7962ae1612c7e531178c2cf69c7066.setContent(html_d8eb1ca2595acfe27f22fe53c447b467);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc44484b684ea8de73f0bd71c5170eeb.bindPopup(popup_2c7962ae1612c7e531178c2cf69c7066)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b7c1c6e0cd44ed1357320243b5c6783 = L.circleMarker(\\n\",\n       \"                [29.1456, 111.7158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_668772005c7b8f7ff309494a46a8c780 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ec77836397dd5f29c79ab5bc2d0f660 = $(`&lt;div id=&quot;html_4ec77836397dd5f29c79ab5bc2d0f660&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.7158             latitude:29.1456             pred_result:44.60363006591797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_668772005c7b8f7ff309494a46a8c780.setContent(html_4ec77836397dd5f29c79ab5bc2d0f660);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b7c1c6e0cd44ed1357320243b5c6783.bindPopup(popup_668772005c7b8f7ff309494a46a8c780)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d488ac786330bc4e67b00e6d8a7fd8ee = L.circleMarker(\\n\",\n       \"                [29.1389, 110.48],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a891e72d484bad060e0733f71a21791 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c79f415636ef8920125d7040834b9181 = $(`&lt;div id=&quot;html_c79f415636ef8920125d7040834b9181&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.48             latitude:29.1389             pred_result:41.628849029541016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a891e72d484bad060e0733f71a21791.setContent(html_c79f415636ef8920125d7040834b9181);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d488ac786330bc4e67b00e6d8a7fd8ee.bindPopup(popup_0a891e72d484bad060e0733f71a21791)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb395f8291a58c6dea1a78b92692a046 = L.circleMarker(\\n\",\n       \"                [29.1242, 110.4697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d2177aa0460adba956017fd8e04d4dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4cbb13f214835edd71ec3baabcb86c35 = $(`&lt;div id=&quot;html_4cbb13f214835edd71ec3baabcb86c35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4697             latitude:29.1242             pred_result:41.71514129638672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d2177aa0460adba956017fd8e04d4dc.setContent(html_4cbb13f214835edd71ec3baabcb86c35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb395f8291a58c6dea1a78b92692a046.bindPopup(popup_0d2177aa0460adba956017fd8e04d4dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7735316d79bc76e6a6cd308b2b464c2 = L.circleMarker(\\n\",\n       \"                [29.3547, 110.5594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_06f944a107c046c4a6784933e0f97c35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_244c8d87b86f520f753c0ea7198514ee = $(`&lt;div id=&quot;html_244c8d87b86f520f753c0ea7198514ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.5594             latitude:29.3547             pred_result:40.68463134765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_06f944a107c046c4a6784933e0f97c35.setContent(html_244c8d87b86f520f753c0ea7198514ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7735316d79bc76e6a6cd308b2b464c2.bindPopup(popup_06f944a107c046c4a6784933e0f97c35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe117f87ded02c10d715faab9caab82f = L.circleMarker(\\n\",\n       \"                [29.315, 110.4417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_493fa96ef02b06e6957c8302a6e7c63d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4e4807f5c121fae952a49109cc8f5fdc = $(`&lt;div id=&quot;html_4e4807f5c121fae952a49109cc8f5fdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4417             latitude:29.315             pred_result:39.1851806640625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_493fa96ef02b06e6957c8302a6e7c63d.setContent(html_4e4807f5c121fae952a49109cc8f5fdc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe117f87ded02c10d715faab9caab82f.bindPopup(popup_493fa96ef02b06e6957c8302a6e7c63d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc2ab25d904fc982f80aadfa6ec0791d = L.circleMarker(\\n\",\n       \"                [25.3167, 110.4144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67e3730d60833cfc05a778d33e9da445 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6dd7db03504997a66c11bcc183a107c = $(`&lt;div id=&quot;html_c6dd7db03504997a66c11bcc183a107c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4144             latitude:25.3167             pred_result:35.78619384765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67e3730d60833cfc05a778d33e9da445.setContent(html_c6dd7db03504997a66c11bcc183a107c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc2ab25d904fc982f80aadfa6ec0791d.bindPopup(popup_67e3730d60833cfc05a778d33e9da445)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_055754fa8c4c4b02fb5887cc97305b59 = L.circleMarker(\\n\",\n       \"                [25.2697, 110.2819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6a8f119082e4a70a597cdf9a4dd73f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_252894ed4addb1004681aa14758c57c3 = $(`&lt;div id=&quot;html_252894ed4addb1004681aa14758c57c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2819             latitude:25.2697             pred_result:37.05884552001953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6a8f119082e4a70a597cdf9a4dd73f1.setContent(html_252894ed4addb1004681aa14758c57c3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_055754fa8c4c4b02fb5887cc97305b59.bindPopup(popup_c6a8f119082e4a70a597cdf9a4dd73f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b549935ab23a0eac615ec5ff28cf82f6 = L.circleMarker(\\n\",\n       \"                [25.2708, 110.3089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc20773ff450076b3e8ff69fb87a4e22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9362c2163b1cb91c65d5ea8b79b6993a = $(`&lt;div id=&quot;html_9362c2163b1cb91c65d5ea8b79b6993a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.3089             latitude:25.2708             pred_result:36.37236022949219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc20773ff450076b3e8ff69fb87a4e22.setContent(html_9362c2163b1cb91c65d5ea8b79b6993a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b549935ab23a0eac615ec5ff28cf82f6.bindPopup(popup_cc20773ff450076b3e8ff69fb87a4e22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e460168ba9a3c5d8b3344d5a89f224e5 = L.circleMarker(\\n\",\n       \"                [25.2178, 110.2869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5c4fb8e8901f3b28bc6e4bd85a2e612 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bbaf85b52a4e38b90d6b3c766aa57e0a = $(`&lt;div id=&quot;html_bbaf85b52a4e38b90d6b3c766aa57e0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2869             latitude:25.2178             pred_result:36.57521057128906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5c4fb8e8901f3b28bc6e4bd85a2e612.setContent(html_bbaf85b52a4e38b90d6b3c766aa57e0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e460168ba9a3c5d8b3344d5a89f224e5.bindPopup(popup_d5c4fb8e8901f3b28bc6e4bd85a2e612)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c7bd93660fc5fd0dded9ba94d28b7170 = L.circleMarker(\\n\",\n       \"                [21.5958, 109.2256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98256123af026bc12f5c98854e540e5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03014d46d39b347423f4474a98de2f15 = $(`&lt;div id=&quot;html_03014d46d39b347423f4474a98de2f15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2256             latitude:21.5958             pred_result:23.408231735229492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98256123af026bc12f5c98854e540e5d.setContent(html_03014d46d39b347423f4474a98de2f15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c7bd93660fc5fd0dded9ba94d28b7170.bindPopup(popup_98256123af026bc12f5c98854e540e5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_147407b5842b840c22d6ba3ee3112ead = L.circleMarker(\\n\",\n       \"                [24.3898, 109.4883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66b3ac6da21f3aa99a7023e7d0268baf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7627e77771c889a3da5ff593033ea8a3 = $(`&lt;div id=&quot;html_7627e77771c889a3da5ff593033ea8a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4883             latitude:24.3898             pred_result:34.575016021728516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66b3ac6da21f3aa99a7023e7d0268baf.setContent(html_7627e77771c889a3da5ff593033ea8a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_147407b5842b840c22d6ba3ee3112ead.bindPopup(popup_66b3ac6da21f3aa99a7023e7d0268baf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44ee623940c604455f66b3b17321c185 = L.circleMarker(\\n\",\n       \"                [24.3304, 109.4108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_787f11061a2d8fbc0967083a98cf4e44 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8ead7f4607019739d877c2b343a2ee7 = $(`&lt;div id=&quot;html_e8ead7f4607019739d877c2b343a2ee7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4108             latitude:24.3304             pred_result:34.96222686767578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_787f11061a2d8fbc0967083a98cf4e44.setContent(html_e8ead7f4607019739d877c2b343a2ee7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44ee623940c604455f66b3b17321c185.bindPopup(popup_787f11061a2d8fbc0967083a98cf4e44)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce4e8c0a0ef145c89f79d1ce7464c275 = L.circleMarker(\\n\",\n       \"                [24.3406, 109.3886],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bad5ad4765cee9fd3a0a8e7abc4fe079 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7c376cbb16ffe44e4a05d8a23a2ff53 = $(`&lt;div id=&quot;html_d7c376cbb16ffe44e4a05d8a23a2ff53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.3886             latitude:24.3406             pred_result:35.10755920410156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bad5ad4765cee9fd3a0a8e7abc4fe079.setContent(html_d7c376cbb16ffe44e4a05d8a23a2ff53);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce4e8c0a0ef145c89f79d1ce7464c275.bindPopup(popup_bad5ad4765cee9fd3a0a8e7abc4fe079)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8936f45a9c10c6f6829e38539f8ed0e4 = L.circleMarker(\\n\",\n       \"                [24.299, 109.4221],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8cb05c5a90d142052da86f2bd4de5ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_db4427a73b2d002062327e67d08216af = $(`&lt;div id=&quot;html_db4427a73b2d002062327e67d08216af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4221             latitude:24.299             pred_result:34.874786376953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8cb05c5a90d142052da86f2bd4de5ec.setContent(html_db4427a73b2d002062327e67d08216af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8936f45a9c10c6f6829e38539f8ed0e4.bindPopup(popup_a8cb05c5a90d142052da86f2bd4de5ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a42eb02aa1fe5c24753069d35e23a47f = L.circleMarker(\\n\",\n       \"                [24.3663, 109.3957],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_82377c08e2691d0940581fbd78f25929 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b90d6794af25966f5550086b58e240a2 = $(`&lt;div id=&quot;html_b90d6794af25966f5550086b58e240a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.3957             latitude:24.3663             pred_result:35.094390869140625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_82377c08e2691d0940581fbd78f25929.setContent(html_b90d6794af25966f5550086b58e240a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a42eb02aa1fe5c24753069d35e23a47f.bindPopup(popup_82377c08e2691d0940581fbd78f25929)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0a53db6dfbd5333ab2b4fa8cbda94dbb = L.circleMarker(\\n\",\n       \"                [24.3158, 109.4839],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3523eb7c946aaaadb093d049fd427734 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_108dd9935bcaffb56e359a162a4a620a = $(`&lt;div id=&quot;html_108dd9935bcaffb56e359a162a4a620a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4839             latitude:24.3158             pred_result:35.262413024902344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3523eb7c946aaaadb093d049fd427734.setContent(html_108dd9935bcaffb56e359a162a4a620a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0a53db6dfbd5333ab2b4fa8cbda94dbb.bindPopup(popup_3523eb7c946aaaadb093d049fd427734)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e40148a2f61ec7bb6e0dfd2a8a3f2e36 = L.circleMarker(\\n\",\n       \"                [31.4747, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8277c4d023e11f82325a78002c6d1d06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd7b4e4d452f6308dc72049057c29194 = $(`&lt;div id=&quot;html_bd7b4e4d452f6308dc72049057c29194&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:31.4747             pred_result:47.7674560546875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8277c4d023e11f82325a78002c6d1d06.setContent(html_bd7b4e4d452f6308dc72049057c29194);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e40148a2f61ec7bb6e0dfd2a8a3f2e36.bindPopup(popup_8277c4d023e11f82325a78002c6d1d06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71a4901322846ec9ef29cbde510f32c1 = L.circleMarker(\\n\",\n       \"                [31.4539, 104.7536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_72b1d95951f055e3e3820b815093e4fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3fc2fc4370154a4759a0fb61de2d0e36 = $(`&lt;div id=&quot;html_3fc2fc4370154a4759a0fb61de2d0e36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7536             latitude:31.4539             pred_result:47.992225646972656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_72b1d95951f055e3e3820b815093e4fa.setContent(html_3fc2fc4370154a4759a0fb61de2d0e36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71a4901322846ec9ef29cbde510f32c1.bindPopup(popup_72b1d95951f055e3e3820b815093e4fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab77dbab5628aaf6f710ff863b75a8f1 = L.circleMarker(\\n\",\n       \"                [31.4656, 104.6717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4540f81675650c21862cd755885be683 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3055a1ac9abeb3412e14dbddcba2df6 = $(`&lt;div id=&quot;html_c3055a1ac9abeb3412e14dbddcba2df6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6717             latitude:31.4656             pred_result:47.683990478515625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4540f81675650c21862cd755885be683.setContent(html_c3055a1ac9abeb3412e14dbddcba2df6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab77dbab5628aaf6f710ff863b75a8f1.bindPopup(popup_4540f81675650c21862cd755885be683)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd7c9debf06e7eae66fbdbb71d997de5 = L.circleMarker(\\n\",\n       \"                [31.5072, 104.7283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_910e1dfe618d95f243e50f2698e9ef2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_408ce64a5d91250ae2e54f179db8798b = $(`&lt;div id=&quot;html_408ce64a5d91250ae2e54f179db8798b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7283             latitude:31.5072             pred_result:47.921234130859375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_910e1dfe618d95f243e50f2698e9ef2a.setContent(html_408ce64a5d91250ae2e54f179db8798b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd7c9debf06e7eae66fbdbb71d997de5.bindPopup(popup_910e1dfe618d95f243e50f2698e9ef2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aae9300a60b2d0f2e0cc9aed64847e32 = L.circleMarker(\\n\",\n       \"                [28.8194, 104.5969],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c49d9b7c92e066e8d8d9d4311805635b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e17db537eb06330d5d1665c3e648707e = $(`&lt;div id=&quot;html_e17db537eb06330d5d1665c3e648707e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.5969             latitude:28.8194             pred_result:48.34883117675781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c49d9b7c92e066e8d8d9d4311805635b.setContent(html_e17db537eb06330d5d1665c3e648707e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aae9300a60b2d0f2e0cc9aed64847e32.bindPopup(popup_c49d9b7c92e066e8d8d9d4311805635b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2a8f565cc3e245315b84a41675a7520 = L.circleMarker(\\n\",\n       \"                [28.76611, 104.6225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bcea902689580691b8ff910d25eb8d2e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13bc5ecc5392a7989ade73f3bb22623f = $(`&lt;div id=&quot;html_13bc5ecc5392a7989ade73f3bb22623f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6225             latitude:28.76611             pred_result:48.342018127441406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bcea902689580691b8ff910d25eb8d2e.setContent(html_13bc5ecc5392a7989ade73f3bb22623f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2a8f565cc3e245315b84a41675a7520.bindPopup(popup_bcea902689580691b8ff910d25eb8d2e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1e8806723d548ef21a5727f5430b1d2 = L.circleMarker(\\n\",\n       \"                [28.7867, 104.6061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_056b8fbbc06fb570d6a4db5cce5496e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a80a447daa8a0552e13d51ed01ab6308 = $(`&lt;div id=&quot;html_a80a447daa8a0552e13d51ed01ab6308&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6061             latitude:28.7867             pred_result:48.40492248535156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_056b8fbbc06fb570d6a4db5cce5496e9.setContent(html_a80a447daa8a0552e13d51ed01ab6308);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1e8806723d548ef21a5727f5430b1d2.bindPopup(popup_056b8fbbc06fb570d6a4db5cce5496e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_628d41cbe49e33e59dac22dcab351012 = L.circleMarker(\\n\",\n       \"                [28.763890000000004, 104.6417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97a66f859887e6f16e49ff8a7e55aa11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3e9d5a3f4a8a3ca5ee663c23a68b763 = $(`&lt;div id=&quot;html_e3e9d5a3f4a8a3ca5ee663c23a68b763&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6417             latitude:28.763890000000004             pred_result:48.215782165527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97a66f859887e6f16e49ff8a7e55aa11.setContent(html_e3e9d5a3f4a8a3ca5ee663c23a68b763);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_628d41cbe49e33e59dac22dcab351012.bindPopup(popup_97a66f859887e6f16e49ff8a7e55aa11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b857e0b588d1f8c8387aa5b7c7065cb = L.circleMarker(\\n\",\n       \"                [28.71583, 104.5761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f05accd5a07472621a5be5ecdd7df4de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7aec002316a08dee1974c28477c2a0c6 = $(`&lt;div id=&quot;html_7aec002316a08dee1974c28477c2a0c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.5761             latitude:28.71583             pred_result:47.67405700683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f05accd5a07472621a5be5ecdd7df4de.setContent(html_7aec002316a08dee1974c28477c2a0c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b857e0b588d1f8c8387aa5b7c7065cb.bindPopup(popup_f05accd5a07472621a5be5ecdd7df4de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4bce6637e6751f0899ece20ef949af17 = L.circleMarker(\\n\",\n       \"                [28.7989, 104.6789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec8cf5c891fb815c4894484a92741e56 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_27358757ba2e049b6131cd24b8f5ff42 = $(`&lt;div id=&quot;html_27358757ba2e049b6131cd24b8f5ff42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6789             latitude:28.7989             pred_result:48.231056213378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec8cf5c891fb815c4894484a92741e56.setContent(html_27358757ba2e049b6131cd24b8f5ff42);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4bce6637e6751f0899ece20ef949af17.bindPopup(popup_ec8cf5c891fb815c4894484a92741e56)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c68184021c24f0d51a12f641909bed69 = L.circleMarker(\\n\",\n       \"                [26.57098, 101.68912],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff66b8dcc6525e4133e3b6438630b1cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa0674f2c30f024f3bb815b521e06689 = $(`&lt;div id=&quot;html_aa0674f2c30f024f3bb815b521e06689&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.68912             latitude:26.57098             pred_result:27.02129364013672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff66b8dcc6525e4133e3b6438630b1cd.setContent(html_aa0674f2c30f024f3bb815b521e06689);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c68184021c24f0d51a12f641909bed69.bindPopup(popup_ff66b8dcc6525e4133e3b6438630b1cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_982a59188d7c4e44fb8088ed40f00c50 = L.circleMarker(\\n\",\n       \"                [26.5928, 101.5769],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a03aca3bcd694d448936f9f0c0b811ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8dd192e28f0e28ea373896842e66aca4 = $(`&lt;div id=&quot;html_8dd192e28f0e28ea373896842e66aca4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.5769             latitude:26.5928             pred_result:27.225893020629883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a03aca3bcd694d448936f9f0c0b811ee.setContent(html_8dd192e28f0e28ea373896842e66aca4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_982a59188d7c4e44fb8088ed40f00c50.bindPopup(popup_a03aca3bcd694d448936f9f0c0b811ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9409d74c2d19493cd480a610081b7248 = L.circleMarker(\\n\",\n       \"                [26.585, 101.7169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad509934d9bba1abbc81cc299c985800 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f9dc3ffedb59dd64964dbb2ad3d5e70f = $(`&lt;div id=&quot;html_f9dc3ffedb59dd64964dbb2ad3d5e70f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7169             latitude:26.585             pred_result:27.818904876708984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad509934d9bba1abbc81cc299c985800.setContent(html_f9dc3ffedb59dd64964dbb2ad3d5e70f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9409d74c2d19493cd480a610081b7248.bindPopup(popup_ad509934d9bba1abbc81cc299c985800)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_713c214f6acca12eb9ce82bbdb651604 = L.circleMarker(\\n\",\n       \"                [26.5017, 101.7453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4338666a396f3050353328862d79287c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_55826fbcb8cb2a745f42f368c7c0a4dd = $(`&lt;div id=&quot;html_55826fbcb8cb2a745f42f368c7c0a4dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7453             latitude:26.5017             pred_result:27.392263412475586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4338666a396f3050353328862d79287c.setContent(html_55826fbcb8cb2a745f42f368c7c0a4dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_713c214f6acca12eb9ce82bbdb651604.bindPopup(popup_4338666a396f3050353328862d79287c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_668134709e76b5814b9028ea08062092 = L.circleMarker(\\n\",\n       \"                [28.9583, 105.4306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36652fbbf18e5929d7f8651fbcaae012 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69820eb987e4f9a06b80750e965846bf = $(`&lt;div id=&quot;html_69820eb987e4f9a06b80750e965846bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4306             latitude:28.9583             pred_result:45.05570983886719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36652fbbf18e5929d7f8651fbcaae012.setContent(html_69820eb987e4f9a06b80750e965846bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_668134709e76b5814b9028ea08062092.bindPopup(popup_36652fbbf18e5929d7f8651fbcaae012)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_359341c039efda16716fc49f20c8afa1 = L.circleMarker(\\n\",\n       \"                [28.9026, 105.4436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f51726bee42f6e010d9a63aecf8b809b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff7e533231462954864923d5c498ddc6 = $(`&lt;div id=&quot;html_ff7e533231462954864923d5c498ddc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4436             latitude:28.9026             pred_result:44.929840087890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f51726bee42f6e010d9a63aecf8b809b.setContent(html_ff7e533231462954864923d5c498ddc6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_359341c039efda16716fc49f20c8afa1.bindPopup(popup_f51726bee42f6e010d9a63aecf8b809b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7cc1c3c0fb4b331abacdcc9e4591ce72 = L.circleMarker(\\n\",\n       \"                [28.8558, 105.4322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf2029792c8d6b0969733ab51c9605d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9a8b970635ff08bffb50fd6b5ae361c = $(`&lt;div id=&quot;html_d9a8b970635ff08bffb50fd6b5ae361c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4322             latitude:28.8558             pred_result:45.195777893066406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf2029792c8d6b0969733ab51c9605d8.setContent(html_d9a8b970635ff08bffb50fd6b5ae361c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7cc1c3c0fb4b331abacdcc9e4591ce72.bindPopup(popup_cf2029792c8d6b0969733ab51c9605d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0881c2611f57ae7f2fc0f0bec40b7662 = L.circleMarker(\\n\",\n       \"                [28.8833, 105.4322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0802c9dfe847f2716365573a4682eb34 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10ede937927a46edc73384195a00d641 = $(`&lt;div id=&quot;html_10ede937927a46edc73384195a00d641&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.4322             latitude:28.8833             pred_result:45.17839813232422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0802c9dfe847f2716365573a4682eb34.setContent(html_10ede937927a46edc73384195a00d641);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0881c2611f57ae7f2fc0f0bec40b7662.bindPopup(popup_0802c9dfe847f2716365573a4682eb34)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1bb8a4628293a9e5e9a0bc709301ecc = L.circleMarker(\\n\",\n       \"                [29.3628, 104.7547],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c439a10f8d4c2cc336ffed0b08b44af9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be8981d674b72ffc7bbc4f25e04873ce = $(`&lt;div id=&quot;html_be8981d674b72ffc7bbc4f25e04873ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7547             latitude:29.3628             pred_result:48.981170654296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c439a10f8d4c2cc336ffed0b08b44af9.setContent(html_be8981d674b72ffc7bbc4f25e04873ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1bb8a4628293a9e5e9a0bc709301ecc.bindPopup(popup_c439a10f8d4c2cc336ffed0b08b44af9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d604df65dc272801770ead83685b01ab = L.circleMarker(\\n\",\n       \"                [29.3411, 104.7692],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a00ef33997ed24ea175b2b6d90ff80b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_304cd893f763d12f46d3fc9a70eac17e = $(`&lt;div id=&quot;html_304cd893f763d12f46d3fc9a70eac17e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7692             latitude:29.3411             pred_result:48.76502990722656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a00ef33997ed24ea175b2b6d90ff80b9.setContent(html_304cd893f763d12f46d3fc9a70eac17e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d604df65dc272801770ead83685b01ab.bindPopup(popup_a00ef33997ed24ea175b2b6d90ff80b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8859df61522eec68ec995ffb6029c216 = L.circleMarker(\\n\",\n       \"                [31.1208, 104.4219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db2f92b7135a02a8cf577c0008400a0c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_28a92834b8086801c32dd36764aa3f8c = $(`&lt;div id=&quot;html_28a92834b8086801c32dd36764aa3f8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.4219             latitude:31.1208             pred_result:48.257652282714844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db2f92b7135a02a8cf577c0008400a0c.setContent(html_28a92834b8086801c32dd36764aa3f8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8859df61522eec68ec995ffb6029c216.bindPopup(popup_db2f92b7135a02a8cf577c0008400a0c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3532221606f6eac44ffb0f851d011e1 = L.circleMarker(\\n\",\n       \"                [31.1333, 104.3883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce5029747d81fde22c43305bdd09591b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29abdf2b5d0e68ee3c7a4ec7dd49a806 = $(`&lt;div id=&quot;html_29abdf2b5d0e68ee3c7a4ec7dd49a806&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.3883             latitude:31.1333             pred_result:48.12598419189453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce5029747d81fde22c43305bdd09591b.setContent(html_29abdf2b5d0e68ee3c7a4ec7dd49a806);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3532221606f6eac44ffb0f851d011e1.bindPopup(popup_ce5029747d81fde22c43305bdd09591b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d205512d667bc51da0d7056e1af45c7 = L.circleMarker(\\n\",\n       \"                [31.1167, 104.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4c961a7beabb138bdc9d485ddfc4ddb9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_64d0d4094ab6480108b6f1830d730b52 = $(`&lt;div id=&quot;html_64d0d4094ab6480108b6f1830d730b52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.4053             latitude:31.1167             pred_result:48.316680908203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4c961a7beabb138bdc9d485ddfc4ddb9.setContent(html_64d0d4094ab6480108b6f1830d730b52);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d205512d667bc51da0d7056e1af45c7.bindPopup(popup_4c961a7beabb138bdc9d485ddfc4ddb9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6e73074d37ce1151f1ad16417fd7632 = L.circleMarker(\\n\",\n       \"                [31.1108, 104.3539],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eeead2028c7904912795be81bb3656a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94fc79516986a992f8646ea4d595a99e = $(`&lt;div id=&quot;html_94fc79516986a992f8646ea4d595a99e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.3539             latitude:31.1108             pred_result:48.757171630859375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eeead2028c7904912795be81bb3656a2.setContent(html_94fc79516986a992f8646ea4d595a99e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6e73074d37ce1151f1ad16417fd7632.bindPopup(popup_eeead2028c7904912795be81bb3656a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ced88bd5fcb232cd738d7fda42533cab = L.circleMarker(\\n\",\n       \"                [30.8064, 106.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8feb246becb815962a0732115f73920 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_860bb25d71a5b6937d6ef65b0a692ae0 = $(`&lt;div id=&quot;html_860bb25d71a5b6937d6ef65b0a692ae0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.056             latitude:30.8064             pred_result:40.6705322265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8feb246becb815962a0732115f73920.setContent(html_860bb25d71a5b6937d6ef65b0a692ae0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ced88bd5fcb232cd738d7fda42533cab.bindPopup(popup_b8feb246becb815962a0732115f73920)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_afa29846bc63be7f8596a5f977bf4584 = L.circleMarker(\\n\",\n       \"                [30.8023, 106.0789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f06f2427cac532af2989a333a9d581f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d3a7b5e0c0c26562e507d047dc1a6ae = $(`&lt;div id=&quot;html_0d3a7b5e0c0c26562e507d047dc1a6ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0789             latitude:30.8023             pred_result:40.641746520996094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f06f2427cac532af2989a333a9d581f3.setContent(html_0d3a7b5e0c0c26562e507d047dc1a6ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_afa29846bc63be7f8596a5f977bf4584.bindPopup(popup_f06f2427cac532af2989a333a9d581f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63f2cc80e944d569d17f4f5757cf8481 = L.circleMarker(\\n\",\n       \"                [30.8217, 106.1031],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28d44ea13e39dc8ca763dc43f7674ed3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98ae801df9b9392e8d04e544bce889b9 = $(`&lt;div id=&quot;html_98ae801df9b9392e8d04e544bce889b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1031             latitude:30.8217             pred_result:40.554718017578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28d44ea13e39dc8ca763dc43f7674ed3.setContent(html_98ae801df9b9392e8d04e544bce889b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63f2cc80e944d569d17f4f5757cf8481.bindPopup(popup_28d44ea13e39dc8ca763dc43f7674ed3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_901a21bc8535ada904611803b529d606 = L.circleMarker(\\n\",\n       \"                [30.7856, 106.1064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f90894d97c48cf1d3cd6de90d47601e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ccbbab2c74ff83e7710af3a0c64937c8 = $(`&lt;div id=&quot;html_ccbbab2c74ff83e7710af3a0c64937c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1064             latitude:30.7856             pred_result:40.47172927856445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f90894d97c48cf1d3cd6de90d47601e0.setContent(html_ccbbab2c74ff83e7710af3a0c64937c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_901a21bc8535ada904611803b529d606.bindPopup(popup_f90894d97c48cf1d3cd6de90d47601e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4fe1189b6ee4a6e472aa47303b262161 = L.circleMarker(\\n\",\n       \"                [30.7636, 106.0642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfb2c7f51af61b68093c1abcf2af2717 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ff78d41ad3668208ffbff3d55a4a1ac = $(`&lt;div id=&quot;html_1ff78d41ad3668208ffbff3d55a4a1ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0642             latitude:30.7636             pred_result:40.628170013427734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfb2c7f51af61b68093c1abcf2af2717.setContent(html_1ff78d41ad3668208ffbff3d55a4a1ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4fe1189b6ee4a6e472aa47303b262161.bindPopup(popup_bfb2c7f51af61b68093c1abcf2af2717)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e389252fdfa391f415e645dc6d35ba5 = L.circleMarker(\\n\",\n       \"                [30.8388, 106.1087],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d8d9205a10561a09ef4069e0af68775 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78847c3fa59c65a683f3d26c147f783b = $(`&lt;div id=&quot;html_78847c3fa59c65a683f3d26c147f783b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1087             latitude:30.8388             pred_result:40.54368591308594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d8d9205a10561a09ef4069e0af68775.setContent(html_78847c3fa59c65a683f3d26c147f783b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e389252fdfa391f415e645dc6d35ba5.bindPopup(popup_5d8d9205a10561a09ef4069e0af68775)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_526776c74fafc1028222d5213578a409 = L.circleMarker(\\n\",\n       \"                [27.6869, 106.9222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc5acce6b569dbe0729c3e42494dbad7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abd2e5f7fe44941c701c401ea48a63bb = $(`&lt;div id=&quot;html_abd2e5f7fe44941c701c401ea48a63bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9222             latitude:27.6869             pred_result:34.72588348388672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc5acce6b569dbe0729c3e42494dbad7.setContent(html_abd2e5f7fe44941c701c401ea48a63bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_526776c74fafc1028222d5213578a409.bindPopup(popup_cc5acce6b569dbe0729c3e42494dbad7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e29b7d3d12b1d48ca689dac00b22ed20 = L.circleMarker(\\n\",\n       \"                [27.7019, 106.9242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6a0fb961eae7f9aadf52a821ea9ecafd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4945095d9d089206f06fece39609cbf = $(`&lt;div id=&quot;html_e4945095d9d089206f06fece39609cbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9242             latitude:27.7019             pred_result:34.74871063232422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6a0fb961eae7f9aadf52a821ea9ecafd.setContent(html_e4945095d9d089206f06fece39609cbf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e29b7d3d12b1d48ca689dac00b22ed20.bindPopup(popup_6a0fb961eae7f9aadf52a821ea9ecafd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aec5ebc7d3686c6135a10042ed822931 = L.circleMarker(\\n\",\n       \"                [27.6486, 106.8906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db4c8c563edb4b8d128a534fcc661cd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_87de71afde2cf9e974380d2fe8b49872 = $(`&lt;div id=&quot;html_87de71afde2cf9e974380d2fe8b49872&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8906             latitude:27.6486             pred_result:34.562782287597656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db4c8c563edb4b8d128a534fcc661cd5.setContent(html_87de71afde2cf9e974380d2fe8b49872);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aec5ebc7d3686c6135a10042ed822931.bindPopup(popup_db4c8c563edb4b8d128a534fcc661cd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef9bd39d15ab493f3e8bbaabcdfaa5b5 = L.circleMarker(\\n\",\n       \"                [27.72, 106.9178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49b1e66fe05b0aa9cb0e3169bf4d9765 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e53bbc1ba184c95c3fe1ba31dd0c943 = $(`&lt;div id=&quot;html_5e53bbc1ba184c95c3fe1ba31dd0c943&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9178             latitude:27.72             pred_result:34.839317321777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49b1e66fe05b0aa9cb0e3169bf4d9765.setContent(html_5e53bbc1ba184c95c3fe1ba31dd0c943);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef9bd39d15ab493f3e8bbaabcdfaa5b5.bindPopup(popup_49b1e66fe05b0aa9cb0e3169bf4d9765)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08f5f7b2c6759d6b77948778c74015e9 = L.circleMarker(\\n\",\n       \"                [25.5035, 103.7897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd62a1410ae9371742e7e5054cd21417 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c0863d69b9f482f93bd67b0b765a717d = $(`&lt;div id=&quot;html_c0863d69b9f482f93bd67b0b765a717d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7897             latitude:25.5035             pred_result:24.770158767700195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd62a1410ae9371742e7e5054cd21417.setContent(html_c0863d69b9f482f93bd67b0b765a717d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08f5f7b2c6759d6b77948778c74015e9.bindPopup(popup_fd62a1410ae9371742e7e5054cd21417)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9cef72e10d45ad37cc8aadd0ccf39063 = L.circleMarker(\\n\",\n       \"                [25.5364, 103.8],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0db6e92fb9900a24916d09826e4221f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_157e156535d897bfb806e1921cfddce7 = $(`&lt;div id=&quot;html_157e156535d897bfb806e1921cfddce7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8             latitude:25.5364             pred_result:24.903709411621094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0db6e92fb9900a24916d09826e4221f.setContent(html_157e156535d897bfb806e1921cfddce7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9cef72e10d45ad37cc8aadd0ccf39063.bindPopup(popup_b0db6e92fb9900a24916d09826e4221f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e59bc1fbea4dc89b00cf84f062bba81 = L.circleMarker(\\n\",\n       \"                [34.3956, 108.7197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7921a6e70d8aba55776e032dff5aaf52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93851651a99baf19d71b9cb2b70db690 = $(`&lt;div id=&quot;html_93851651a99baf19d71b9cb2b70db690&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7197             latitude:34.3956             pred_result:54.023780822753906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7921a6e70d8aba55776e032dff5aaf52.setContent(html_93851651a99baf19d71b9cb2b70db690);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e59bc1fbea4dc89b00cf84f062bba81.bindPopup(popup_7921a6e70d8aba55776e032dff5aaf52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ddb8dbebac992b5029f925dba45c812 = L.circleMarker(\\n\",\n       \"                [34.3181, 108.6761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c08df6183133b79f8553983e13fa8cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e541b195858327d6d30ccc2f7c35e1d = $(`&lt;div id=&quot;html_2e541b195858327d6d30ccc2f7c35e1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6761             latitude:34.3181             pred_result:50.86878967285156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c08df6183133b79f8553983e13fa8cd.setContent(html_2e541b195858327d6d30ccc2f7c35e1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ddb8dbebac992b5029f925dba45c812.bindPopup(popup_8c08df6183133b79f8553983e13fa8cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b74ea1f3ed797bb427247b1a026bbe52 = L.circleMarker(\\n\",\n       \"                [34.3617, 108.7233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0db5975192a133f3e49151d5fc3e320b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c78afc6fc5f08be98f3858c2350e18bf = $(`&lt;div id=&quot;html_c78afc6fc5f08be98f3858c2350e18bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7233             latitude:34.3617             pred_result:52.718955993652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0db5975192a133f3e49151d5fc3e320b.setContent(html_c78afc6fc5f08be98f3858c2350e18bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b74ea1f3ed797bb427247b1a026bbe52.bindPopup(popup_0db5975192a133f3e49151d5fc3e320b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31193234c42ad3728899a0880c98f311 = L.circleMarker(\\n\",\n       \"                [34.3164, 108.7369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b08fb71861b06a3efb3984ded06d8913 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82ea6118ee346f9393c194d75644093f = $(`&lt;div id=&quot;html_82ea6118ee346f9393c194d75644093f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7369             latitude:34.3164             pred_result:49.63784408569336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b08fb71861b06a3efb3984ded06d8913.setContent(html_82ea6118ee346f9393c194d75644093f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31193234c42ad3728899a0880c98f311.bindPopup(popup_b08fb71861b06a3efb3984ded06d8913)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c4f230dbf69402e648bca60099a66b45 = L.circleMarker(\\n\",\n       \"                [35.0994, 109.0656],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97aaf9c871d8490371c448342eed6118 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1f28ffaeab0ab2d41f65690fae44d41 = $(`&lt;div id=&quot;html_f1f28ffaeab0ab2d41f65690fae44d41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0656             latitude:35.0994             pred_result:45.29815673828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97aaf9c871d8490371c448342eed6118.setContent(html_f1f28ffaeab0ab2d41f65690fae44d41);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c4f230dbf69402e648bca60099a66b45.bindPopup(popup_97aaf9c871d8490371c448342eed6118)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_026f2f51886db495f88f1fca0b21043b = L.circleMarker(\\n\",\n       \"                [35.0697, 109.0697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f22e5e3e030a64862956a7e706a34d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dabea1ac59a04cf5bde84be2980a60dd = $(`&lt;div id=&quot;html_dabea1ac59a04cf5bde84be2980a60dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0697             latitude:35.0697             pred_result:47.73960876464844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f22e5e3e030a64862956a7e706a34d5.setContent(html_dabea1ac59a04cf5bde84be2980a60dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_026f2f51886db495f88f1fca0b21043b.bindPopup(popup_6f22e5e3e030a64862956a7e706a34d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a39584b4b79b0d7f3d7865b64e7c543 = L.circleMarker(\\n\",\n       \"                [34.9058, 108.9344],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b575f251df7787ca581e844cafd4878 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_738234342dbb8d644b64f569c3880b47 = $(`&lt;div id=&quot;html_738234342dbb8d644b64f569c3880b47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.9344             latitude:34.9058             pred_result:49.512779235839844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b575f251df7787ca581e844cafd4878.setContent(html_738234342dbb8d644b64f569c3880b47);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a39584b4b79b0d7f3d7865b64e7c543.bindPopup(popup_5b575f251df7787ca581e844cafd4878)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf43c39b1ea91c6be8f0e04dbb93ab59 = L.circleMarker(\\n\",\n       \"                [34.8731, 108.9589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aee48fc4c2167de1760b012a8f146603 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abef1a7c8fe40ab9a0dcc925cac1ceb7 = $(`&lt;div id=&quot;html_abef1a7c8fe40ab9a0dcc925cac1ceb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.9589             latitude:34.8731             pred_result:50.000587463378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aee48fc4c2167de1760b012a8f146603.setContent(html_abef1a7c8fe40ab9a0dcc925cac1ceb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf43c39b1ea91c6be8f0e04dbb93ab59.bindPopup(popup_aee48fc4c2167de1760b012a8f146603)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd8d59e6fd8ab734e26d1f3a061899bf = L.circleMarker(\\n\",\n       \"                [36.6275, 109.4131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6067ec7db0a3f6c6bbe1bb671fa5c513 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5118adcec77486eaadd01cff87cddfb9 = $(`&lt;div id=&quot;html_5118adcec77486eaadd01cff87cddfb9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4131             latitude:36.6275             pred_result:46.158935546875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6067ec7db0a3f6c6bbe1bb671fa5c513.setContent(html_5118adcec77486eaadd01cff87cddfb9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd8d59e6fd8ab734e26d1f3a061899bf.bindPopup(popup_6067ec7db0a3f6c6bbe1bb671fa5c513)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fcd36d7f175736d33d80c738618c7963 = L.circleMarker(\\n\",\n       \"                [36.6028, 109.4761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e048aa40aa839a7e8586c86e148a179 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_742431697a9c7723fc6e535309f638ef = $(`&lt;div id=&quot;html_742431697a9c7723fc6e535309f638ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4761             latitude:36.6028             pred_result:47.452205657958984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e048aa40aa839a7e8586c86e148a179.setContent(html_742431697a9c7723fc6e535309f638ef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fcd36d7f175736d33d80c738618c7963.bindPopup(popup_5e048aa40aa839a7e8586c86e148a179)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eb8b1903593e0d3fcb85a1f1c4817a12 = L.circleMarker(\\n\",\n       \"                [36.5767, 109.4824],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a3adf2206e944246256ca9489b8a239f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca3aa3adfee71fc01e4cad35be35c88f = $(`&lt;div id=&quot;html_ca3aa3adfee71fc01e4cad35be35c88f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4824             latitude:36.5767             pred_result:49.81404495239258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a3adf2206e944246256ca9489b8a239f.setContent(html_ca3aa3adfee71fc01e4cad35be35c88f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eb8b1903593e0d3fcb85a1f1c4817a12.bindPopup(popup_a3adf2206e944246256ca9489b8a239f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57e39ba16162878d82a34a150e09d13c = L.circleMarker(\\n\",\n       \"                [36.6106, 109.5056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c840e2cae233822aa2cf37caebdf742 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_952d5e05abaeb98af2bbd096d4ff420d = $(`&lt;div id=&quot;html_952d5e05abaeb98af2bbd096d4ff420d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5056             latitude:36.6106             pred_result:49.441280364990234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c840e2cae233822aa2cf37caebdf742.setContent(html_952d5e05abaeb98af2bbd096d4ff420d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57e39ba16162878d82a34a150e09d13c.bindPopup(popup_0c840e2cae233822aa2cf37caebdf742)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91bb59339029ba1297355f1c0b3c4225 = L.circleMarker(\\n\",\n       \"                [34.3708, 107.1586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9aeec5a6c229679607f015370ca4b1b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24ea4934ddb27284506a254bc718d161 = $(`&lt;div id=&quot;html_24ea4934ddb27284506a254bc718d161&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1586             latitude:34.3708             pred_result:39.069149017333984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9aeec5a6c229679607f015370ca4b1b.setContent(html_24ea4934ddb27284506a254bc718d161);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91bb59339029ba1297355f1c0b3c4225.bindPopup(popup_b9aeec5a6c229679607f015370ca4b1b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_861175639a5ac0eb08998e3b3617112c = L.circleMarker(\\n\",\n       \"                [34.3017, 107.0708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb291a28411ea0ec765186f80d315e91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b3de415933996f0b83f8ebc26dac6fb1 = $(`&lt;div id=&quot;html_b3de415933996f0b83f8ebc26dac6fb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0708             latitude:34.3017             pred_result:33.236019134521484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb291a28411ea0ec765186f80d315e91.setContent(html_b3de415933996f0b83f8ebc26dac6fb1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_861175639a5ac0eb08998e3b3617112c.bindPopup(popup_cb291a28411ea0ec765186f80d315e91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bad390ad1709b753ccfeb567246f0e6b = L.circleMarker(\\n\",\n       \"                [34.3672, 107.1906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3af0cea669e89163de182b807fc22132 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dfa48e7e45569e02654fac2458eab4f8 = $(`&lt;div id=&quot;html_dfa48e7e45569e02654fac2458eab4f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1906             latitude:34.3672             pred_result:37.86345291137695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3af0cea669e89163de182b807fc22132.setContent(html_dfa48e7e45569e02654fac2458eab4f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bad390ad1709b753ccfeb567246f0e6b.bindPopup(popup_3af0cea669e89163de182b807fc22132)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c7cd3af7cddc5e549193e88f92a4761 = L.circleMarker(\\n\",\n       \"                [34.3547, 107.1431],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85d453c53c02fbdca361d9b09358708a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1dc3f41aff0019f06ddc08af8ffedae = $(`&lt;div id=&quot;html_b1dc3f41aff0019f06ddc08af8ffedae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1431             latitude:34.3547             pred_result:37.0668830871582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85d453c53c02fbdca361d9b09358708a.setContent(html_b1dc3f41aff0019f06ddc08af8ffedae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c7cd3af7cddc5e549193e88f92a4761.bindPopup(popup_85d453c53c02fbdca361d9b09358708a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bdb2ac19cba33a31f00b10a8c33b9b67 = L.circleMarker(\\n\",\n       \"                [34.3739, 107.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da97a5818fe5548b872759f80f75f499 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d36041761d1dfcbfea684f8bfa584e16 = $(`&lt;div id=&quot;html_d36041761d1dfcbfea684f8bfa584e16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1186             latitude:34.3739             pred_result:37.93694305419922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da97a5818fe5548b872759f80f75f499.setContent(html_d36041761d1dfcbfea684f8bfa584e16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bdb2ac19cba33a31f00b10a8c33b9b67.bindPopup(popup_da97a5818fe5548b872759f80f75f499)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88c13a0a7ab0cbe464341f6e1eaaf9f3 = L.circleMarker(\\n\",\n       \"                [34.3528, 107.3906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21cd08e32706b74590ed78ff46b5189d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07e863297b85cfcf8d87639a294e2e7b = $(`&lt;div id=&quot;html_07e863297b85cfcf8d87639a294e2e7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3906             latitude:34.3528             pred_result:38.38116455078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21cd08e32706b74590ed78ff46b5189d.setContent(html_07e863297b85cfcf8d87639a294e2e7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88c13a0a7ab0cbe464341f6e1eaaf9f3.bindPopup(popup_21cd08e32706b74590ed78ff46b5189d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ffb4a833f02bb55cf5cd8ac28b6ea7f = L.circleMarker(\\n\",\n       \"                [34.3497, 107.2058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afc6edf282419298663f16d0c2b4150a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89e0b6659d2904c459a8bf25ddc01ca7 = $(`&lt;div id=&quot;html_89e0b6659d2904c459a8bf25ddc01ca7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.2058             latitude:34.3497             pred_result:36.75672149658203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afc6edf282419298663f16d0c2b4150a.setContent(html_89e0b6659d2904c459a8bf25ddc01ca7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ffb4a833f02bb55cf5cd8ac28b6ea7f.bindPopup(popup_afc6edf282419298663f16d0c2b4150a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5f2504631c41175e7b65272a7805a54 = L.circleMarker(\\n\",\n       \"                [34.3622, 107.2386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6a8b40698228303ff9097c736027f99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2c3382b145496adb108f9c1d3f23a5c = $(`&lt;div id=&quot;html_d2c3382b145496adb108f9c1d3f23a5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.2386             latitude:34.3622             pred_result:37.96348571777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6a8b40698228303ff9097c736027f99.setContent(html_d2c3382b145496adb108f9c1d3f23a5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5f2504631c41175e7b65272a7805a54.bindPopup(popup_d6a8b40698228303ff9097c736027f99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_867bb332fbbc9f92092579789a1fdef4 = L.circleMarker(\\n\",\n       \"                [34.5101, 109.5293],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9a6a1f59e887c8b5c33a9304c27fe0e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_adc927eda4e3b509c37b80b32fb4775a = $(`&lt;div id=&quot;html_adc927eda4e3b509c37b80b32fb4775a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5293             latitude:34.5101             pred_result:52.72434997558594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9a6a1f59e887c8b5c33a9304c27fe0e.setContent(html_adc927eda4e3b509c37b80b32fb4775a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_867bb332fbbc9f92092579789a1fdef4.bindPopup(popup_b9a6a1f59e887c8b5c33a9304c27fe0e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f95f8f66671f91420fb011f02c3c847 = L.circleMarker(\\n\",\n       \"                [34.5004, 109.5049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b831ddb9a50b415ae0eadfa7b23c3d53 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbaf5ae8369a2704cb4cdd110470be3d = $(`&lt;div id=&quot;html_dbaf5ae8369a2704cb4cdd110470be3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5049             latitude:34.5004             pred_result:53.791786193847656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b831ddb9a50b415ae0eadfa7b23c3d53.setContent(html_dbaf5ae8369a2704cb4cdd110470be3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f95f8f66671f91420fb011f02c3c847.bindPopup(popup_b831ddb9a50b415ae0eadfa7b23c3d53)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45b62752a2a89ff4f55bb0bbfb0cd48b = L.circleMarker(\\n\",\n       \"                [34.493, 109.4636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_282e1063ac936b6e9b11cdfba4a9bdad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_133e13aaf79273bbacf4f32e3fc656e0 = $(`&lt;div id=&quot;html_133e13aaf79273bbacf4f32e3fc656e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4636             latitude:34.493             pred_result:54.03986740112305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_282e1063ac936b6e9b11cdfba4a9bdad.setContent(html_133e13aaf79273bbacf4f32e3fc656e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45b62752a2a89ff4f55bb0bbfb0cd48b.bindPopup(popup_282e1063ac936b6e9b11cdfba4a9bdad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c9cfcd562a64281f43382547e52197d = L.circleMarker(\\n\",\n       \"                [34.5021, 109.4266],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fad5e2a3d884f7772625ed8d1e9210f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c18f926e997fb089a3a41fd3c573342b = $(`&lt;div id=&quot;html_c18f926e997fb089a3a41fd3c573342b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4266             latitude:34.5021             pred_result:54.67455291748047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fad5e2a3d884f7772625ed8d1e9210f4.setContent(html_c18f926e997fb089a3a41fd3c573342b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c9cfcd562a64281f43382547e52197d.bindPopup(popup_fad5e2a3d884f7772625ed8d1e9210f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f241298f986b1eec75a815c14f95b7b = L.circleMarker(\\n\",\n       \"                [38.5247, 102.1878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9418b21c6627f1a7c6e4f2fbd5775f25 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dcb87bf08b96b0b1cf3b2687fa0a6607 = $(`&lt;div id=&quot;html_dcb87bf08b96b0b1cf3b2687fa0a6607&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1878             latitude:38.5247             pred_result:36.26634979248047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9418b21c6627f1a7c6e4f2fbd5775f25.setContent(html_dcb87bf08b96b0b1cf3b2687fa0a6607);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f241298f986b1eec75a815c14f95b7b.bindPopup(popup_9418b21c6627f1a7c6e4f2fbd5775f25)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52db21cfa4ae3af22c4663ed7b3c1779 = L.circleMarker(\\n\",\n       \"                [38.5339, 102.1725],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c6a9861fc279d622e23cd4bfaf6a623 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_719ebfd6deea2d2680be46fbe66270d9 = $(`&lt;div id=&quot;html_719ebfd6deea2d2680be46fbe66270d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1725             latitude:38.5339             pred_result:35.94624328613281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c6a9861fc279d622e23cd4bfaf6a623.setContent(html_719ebfd6deea2d2680be46fbe66270d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52db21cfa4ae3af22c4663ed7b3c1779.bindPopup(popup_1c6a9861fc279d622e23cd4bfaf6a623)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db2ade711926c2836f80ee08fc6b971d = L.circleMarker(\\n\",\n       \"                [38.5061, 102.1708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a6bb50bda02e173c2298cfe5817eb0e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18a4b7f61d17610d4696683e26c645ac = $(`&lt;div id=&quot;html_18a4b7f61d17610d4696683e26c645ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1708             latitude:38.5061             pred_result:36.58477783203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a6bb50bda02e173c2298cfe5817eb0e.setContent(html_18a4b7f61d17610d4696683e26c645ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db2ade711926c2836f80ee08fc6b971d.bindPopup(popup_1a6bb50bda02e173c2298cfe5817eb0e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5582b38ce742a1a10715261260a3bdb = L.circleMarker(\\n\",\n       \"                [39.7711, 98.2908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8fd6d935f6a5fed4f7540f28a867f060 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac38881d296a2f0b48c7cbda43d9ba1d = $(`&lt;div id=&quot;html_ac38881d296a2f0b48c7cbda43d9ba1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.2908             latitude:39.7711             pred_result:24.782590866088867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8fd6d935f6a5fed4f7540f28a867f060.setContent(html_ac38881d296a2f0b48c7cbda43d9ba1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5582b38ce742a1a10715261260a3bdb.bindPopup(popup_8fd6d935f6a5fed4f7540f28a867f060)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c4d54136701ceabf946bac40c4c4cb10 = L.circleMarker(\\n\",\n       \"                [38.817, 106.3394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f18b8c97cf93afd9fd01f2b56182b094 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e3828c79bb424e07621199820f442a8f = $(`&lt;div id=&quot;html_e3828c79bb424e07621199820f442a8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3394             latitude:38.817             pred_result:40.24091339111328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f18b8c97cf93afd9fd01f2b56182b094.setContent(html_e3828c79bb424e07621199820f442a8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c4d54136701ceabf946bac40c4c4cb10.bindPopup(popup_f18b8c97cf93afd9fd01f2b56182b094)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4670bbded0de73b61bd46f22cf59338a = L.circleMarker(\\n\",\n       \"                [39.0153, 106.3717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a837dc592dc514b7f9f594ba5f2a5b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a9555f2e4fd706c3c0bc9e4c759a484 = $(`&lt;div id=&quot;html_2a9555f2e4fd706c3c0bc9e4c759a484&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3717             latitude:39.0153             pred_result:40.992408752441406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a837dc592dc514b7f9f594ba5f2a5b8.setContent(html_2a9555f2e4fd706c3c0bc9e4c759a484);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4670bbded0de73b61bd46f22cf59338a.bindPopup(popup_5a837dc592dc514b7f9f594ba5f2a5b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aee3f0fbf35272b27477331adc646ced = L.circleMarker(\\n\",\n       \"                [39.2282, 106.7704],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_efee89e824b10c02d8464a28c98154cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_305147cee2cce8314b80e17f42912afd = $(`&lt;div id=&quot;html_305147cee2cce8314b80e17f42912afd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7704             latitude:39.2282             pred_result:40.604400634765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_efee89e824b10c02d8464a28c98154cc.setContent(html_305147cee2cce8314b80e17f42912afd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aee3f0fbf35272b27477331adc646ced.bindPopup(popup_efee89e824b10c02d8464a28c98154cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab3f783886a0256f03f629ab38fccb96 = L.circleMarker(\\n\",\n       \"                [39.1292, 106.7096],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f764cd3274cb388cb27625c7ee4c610d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68d5d3540056e63b408c6eda413d4ebe = $(`&lt;div id=&quot;html_68d5d3540056e63b408c6eda413d4ebe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7096             latitude:39.1292             pred_result:39.98737335205078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f764cd3274cb388cb27625c7ee4c610d.setContent(html_68d5d3540056e63b408c6eda413d4ebe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab3f783886a0256f03f629ab38fccb96.bindPopup(popup_f764cd3274cb388cb27625c7ee4c610d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e2384e5baaf04a502c29ccbf3072502 = L.circleMarker(\\n\",\n       \"                [45.6033, 84.8861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_534899224fbf5bf4d8c796386c37f622 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c171120b368281fb0489704b82aa630f = $(`&lt;div id=&quot;html_c171120b368281fb0489704b82aa630f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8861             latitude:45.6033             pred_result:43.385990142822266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_534899224fbf5bf4d8c796386c37f622.setContent(html_c171120b368281fb0489704b82aa630f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e2384e5baaf04a502c29ccbf3072502.bindPopup(popup_534899224fbf5bf4d8c796386c37f622)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81a7239c0b71a95d91d6776656ae9f18 = L.circleMarker(\\n\",\n       \"                [45.5828, 84.8897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f941c355c28e67a57a8bef0220f5d60 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a641e3c1a2cd581eac04105ae1b1fc15 = $(`&lt;div id=&quot;html_a641e3c1a2cd581eac04105ae1b1fc15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8897             latitude:45.5828             pred_result:41.78452682495117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f941c355c28e67a57a8bef0220f5d60.setContent(html_a641e3c1a2cd581eac04105ae1b1fc15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81a7239c0b71a95d91d6776656ae9f18.bindPopup(popup_5f941c355c28e67a57a8bef0220f5d60)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df72243cc10a5be2541ad33e036fc639 = L.circleMarker(\\n\",\n       \"                [45.6886, 85.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e35c9cca8c211d8645976e206955b298 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_493cdeb6fb10575e7c7f0fb91c9f8340 = $(`&lt;div id=&quot;html_493cdeb6fb10575e7c7f0fb91c9f8340&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:85.1186             latitude:45.6886             pred_result:38.41388702392578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e35c9cca8c211d8645976e206955b298.setContent(html_493cdeb6fb10575e7c7f0fb91c9f8340);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df72243cc10a5be2541ad33e036fc639.bindPopup(popup_e35c9cca8c211d8645976e206955b298)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6a96eea5676a50f5eb604583498f3b2 = L.circleMarker(\\n\",\n       \"                [44.3336, 84.8983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7aa484dc1e51038a6f3c789ddb123e52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e630b8a6514977a1c20e36c88b2ae859 = $(`&lt;div id=&quot;html_e630b8a6514977a1c20e36c88b2ae859&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8983             latitude:44.3336             pred_result:49.169029235839844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7aa484dc1e51038a6f3c789ddb123e52.setContent(html_e630b8a6514977a1c20e36c88b2ae859);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6a96eea5676a50f5eb604583498f3b2.bindPopup(popup_7aa484dc1e51038a6f3c789ddb123e52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68412edee50397eae8419f2b2ab9ec82 = L.circleMarker(\\n\",\n       \"                [46.0872, 85.6931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab49c6c6d30f23f06d4e65120e0a816c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e36d438c473b4ba7b898bf6182ff1dca = $(`&lt;div id=&quot;html_e36d438c473b4ba7b898bf6182ff1dca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:85.6931             latitude:46.0872             pred_result:41.35356140136719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab49c6c6d30f23f06d4e65120e0a816c.setContent(html_e36d438c473b4ba7b898bf6182ff1dca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68412edee50397eae8419f2b2ab9ec82.bindPopup(popup_ab49c6c6d30f23f06d4e65120e0a816c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_36fa36bad50480b0be1bdb3ed9bdf8fb = L.circleMarker(\\n\",\n       \"                [41.7511, 86.1461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_245eeb678be01cf4ee94e911e923d1c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb04d3006b6007a844176bf6f6d7bfbe = $(`&lt;div id=&quot;html_fb04d3006b6007a844176bf6f6d7bfbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.1461             latitude:41.7511             pred_result:51.11632537841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_245eeb678be01cf4ee94e911e923d1c9.setContent(html_fb04d3006b6007a844176bf6f6d7bfbe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_36fa36bad50480b0be1bdb3ed9bdf8fb.bindPopup(popup_245eeb678be01cf4ee94e911e923d1c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94db0d9c7c83af98573c0855481f2447 = L.circleMarker(\\n\",\n       \"                [41.7192, 86.2022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_410b340d909caf7aac30d2c6b8fa147d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c760be6e6051999e70787032178c4547 = $(`&lt;div id=&quot;html_c760be6e6051999e70787032178c4547&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.2022             latitude:41.7192             pred_result:43.85673522949219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_410b340d909caf7aac30d2c6b8fa147d.setContent(html_c760be6e6051999e70787032178c4547);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94db0d9c7c83af98573c0855481f2447.bindPopup(popup_410b340d909caf7aac30d2c6b8fa147d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78cc1171c1891e0277cf5c3dc21cff60 = L.circleMarker(\\n\",\n       \"                [41.7128, 86.2381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_20a010f38c3ea774b48c03d1cd753440 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5350cc83e9f9ed8d07eca227f6bcac9c = $(`&lt;div id=&quot;html_5350cc83e9f9ed8d07eca227f6bcac9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.2381             latitude:41.7128             pred_result:44.166202545166016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_20a010f38c3ea774b48c03d1cd753440.setContent(html_5350cc83e9f9ed8d07eca227f6bcac9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78cc1171c1891e0277cf5c3dc21cff60.bindPopup(popup_20a010f38c3ea774b48c03d1cd753440)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76f47ececc9fa44eca2871a5da449e7e = L.circleMarker(\\n\",\n       \"                [36.881, 118.746],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ceb811cdc2c7bfffd1a464c16823d97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61e72e5184c9e325faa5f93b6ea23b26 = $(`&lt;div id=&quot;html_61e72e5184c9e325faa5f93b6ea23b26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.746             latitude:36.881             pred_result:36.91993713378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ceb811cdc2c7bfffd1a464c16823d97.setContent(html_61e72e5184c9e325faa5f93b6ea23b26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76f47ececc9fa44eca2871a5da449e7e.bindPopup(popup_5ceb811cdc2c7bfffd1a464c16823d97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e95795fb111143b957ef99594321523 = L.circleMarker(\\n\",\n       \"                [36.864, 118.78],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2322a5aaaa92c5285fd9a54a49b42ef6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c91f3b4b29bd91f95a90a3280effa8b = $(`&lt;div id=&quot;html_0c91f3b4b29bd91f95a90a3280effa8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.78             latitude:36.864             pred_result:34.892242431640625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2322a5aaaa92c5285fd9a54a49b42ef6.setContent(html_0c91f3b4b29bd91f95a90a3280effa8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e95795fb111143b957ef99594321523.bindPopup(popup_2322a5aaaa92c5285fd9a54a49b42ef6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a7ef63e437782c93f13709b710f7658 = L.circleMarker(\\n\",\n       \"                [36.71, 117.541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71f33ca0f229ecb000ceb2d473964e4c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d544c57fc1ee052d292f5359d865dfc2 = $(`&lt;div id=&quot;html_d544c57fc1ee052d292f5359d865dfc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.541             latitude:36.71             pred_result:45.64252853393555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71f33ca0f229ecb000ceb2d473964e4c.setContent(html_d544c57fc1ee052d292f5359d865dfc2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a7ef63e437782c93f13709b710f7658.bindPopup(popup_71f33ca0f229ecb000ceb2d473964e4c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ab57018d79edc8ce6d6528fd48144ff = L.circleMarker(\\n\",\n       \"                [36.44, 120.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2c6312d3dda5d6fe0446cda842c58b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c830723778e9a023b53b57ce1422617 = $(`&lt;div id=&quot;html_1c830723778e9a023b53b57ce1422617&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.61             latitude:36.44             pred_result:11.666693687438965             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2c6312d3dda5d6fe0446cda842c58b5.setContent(html_1c830723778e9a023b53b57ce1422617);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ab57018d79edc8ce6d6528fd48144ff.bindPopup(popup_e2c6312d3dda5d6fe0446cda842c58b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e7d6cf1a463ffece3312e220ec59b59 = L.circleMarker(\\n\",\n       \"                [36.39, 120.47],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76b6f785ece4b5d2238ccca128596882 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1707043e94319b3cf37a606266bcc752 = $(`&lt;div id=&quot;html_1707043e94319b3cf37a606266bcc752&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.47             latitude:36.39             pred_result:14.105025291442871             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76b6f785ece4b5d2238ccca128596882.setContent(html_1707043e94319b3cf37a606266bcc752);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e7d6cf1a463ffece3312e220ec59b59.bindPopup(popup_76b6f785ece4b5d2238ccca128596882)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a7ef94cf3c7a61628c31da34cfa9cee = L.circleMarker(\\n\",\n       \"                [36.283, 120.008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b0c340f4bc567643c0b321787dac22b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_023f6d42a56b38da687047fa0dcdc7bf = $(`&lt;div id=&quot;html_023f6d42a56b38da687047fa0dcdc7bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.008             latitude:36.283             pred_result:18.480510711669922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b0c340f4bc567643c0b321787dac22b.setContent(html_023f6d42a56b38da687047fa0dcdc7bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a7ef94cf3c7a61628c31da34cfa9cee.bindPopup(popup_2b0c340f4bc567643c0b321787dac22b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84b879aaf150b19f3a72c540db94646f = L.circleMarker(\\n\",\n       \"                [36.253, 120.014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3451b56b0daa91f4ca820a152b805cd0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bc9832c7677b983c8c57b07930858acd = $(`&lt;div id=&quot;html_bc9832c7677b983c8c57b07930858acd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.014             latitude:36.253             pred_result:21.538625717163086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3451b56b0daa91f4ca820a152b805cd0.setContent(html_bc9832c7677b983c8c57b07930858acd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84b879aaf150b19f3a72c540db94646f.bindPopup(popup_3451b56b0daa91f4ca820a152b805cd0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ca6de6322b3fab828b98b95ab008a1b = L.circleMarker(\\n\",\n       \"                [36.865, 120.537],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f09f556ea8a63d251dc6a0c81bf0fb7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd595612754d6a3050ece4c8702fea51 = $(`&lt;div id=&quot;html_bd595612754d6a3050ece4c8702fea51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.537             latitude:36.865             pred_result:14.015579223632812             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f09f556ea8a63d251dc6a0c81bf0fb7.setContent(html_bd595612754d6a3050ece4c8702fea51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ca6de6322b3fab828b98b95ab008a1b.bindPopup(popup_0f09f556ea8a63d251dc6a0c81bf0fb7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ccc2d02bcce40c456e9375f47c6a7514 = L.circleMarker(\\n\",\n       \"                [36.885, 120.515],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a8c2ce8141e37ba5dbe5c43f75b936e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df8f8cb13236fff23fe2ede1f644206b = $(`&lt;div id=&quot;html_df8f8cb13236fff23fe2ede1f644206b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.515             latitude:36.885             pred_result:14.12385082244873             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a8c2ce8141e37ba5dbe5c43f75b936e.setContent(html_df8f8cb13236fff23fe2ede1f644206b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ccc2d02bcce40c456e9375f47c6a7514.bindPopup(popup_4a8c2ce8141e37ba5dbe5c43f75b936e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a59ff5a4c882672c595d7254e5c56f4f = L.circleMarker(\\n\",\n       \"                [36.792, 119.952],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd707f2bc38227dccde09f939e4e575d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4aa0f4ccd30215b089187c4ec4747e8b = $(`&lt;div id=&quot;html_4aa0f4ccd30215b089187c4ec4747e8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.952             latitude:36.792             pred_result:18.01275634765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd707f2bc38227dccde09f939e4e575d.setContent(html_4aa0f4ccd30215b089187c4ec4747e8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a59ff5a4c882672c595d7254e5c56f4f.bindPopup(popup_fd707f2bc38227dccde09f939e4e575d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_805a54df8147f61d42728f04fd749d17 = L.circleMarker(\\n\",\n       \"                [36.799, 119.976],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9365b747c918aa9335d289986a6df9eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42c3b828c280d7b026594fc6ab1168ed = $(`&lt;div id=&quot;html_42c3b828c280d7b026594fc6ab1168ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.976             latitude:36.799             pred_result:16.038524627685547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9365b747c918aa9335d289986a6df9eb.setContent(html_42c3b828c280d7b026594fc6ab1168ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_805a54df8147f61d42728f04fd749d17.bindPopup(popup_9365b747c918aa9335d289986a6df9eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df86da6454957b3ccc42277eaeea6c16 = L.circleMarker(\\n\",\n       \"                [37.825, 120.747],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f08c02e4126ff7b7d4c37256366bcb62 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6bbc91f3dc4234ba1bbc647dc09e0ae5 = $(`&lt;div id=&quot;html_6bbc91f3dc4234ba1bbc647dc09e0ae5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.747             latitude:37.825             pred_result:21.33930206298828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f08c02e4126ff7b7d4c37256366bcb62.setContent(html_6bbc91f3dc4234ba1bbc647dc09e0ae5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df86da6454957b3ccc42277eaeea6c16.bindPopup(popup_f08c02e4126ff7b7d4c37256366bcb62)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87a0564f5828afb96c84a7022f686a21 = L.circleMarker(\\n\",\n       \"                [37.809, 120.773],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1436ffcf82f7bade9be864149c2efba8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f40fbf596c4a20c4d13214d37fdb80d = $(`&lt;div id=&quot;html_5f40fbf596c4a20c4d13214d37fdb80d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.773             latitude:37.809             pred_result:19.468870162963867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1436ffcf82f7bade9be864149c2efba8.setContent(html_5f40fbf596c4a20c4d13214d37fdb80d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87a0564f5828afb96c84a7022f686a21.bindPopup(popup_1436ffcf82f7bade9be864149c2efba8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_220d049f5b372bcf609cd08658e662da = L.circleMarker(\\n\",\n       \"                [37.374, 120.399],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5537d7d825e4bf95de9dc7cceef4c8d6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00e74f156bd223a59a28a30ca7229a1a = $(`&lt;div id=&quot;html_00e74f156bd223a59a28a30ca7229a1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.399             latitude:37.374             pred_result:19.833545684814453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5537d7d825e4bf95de9dc7cceef4c8d6.setContent(html_00e74f156bd223a59a28a30ca7229a1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_220d049f5b372bcf609cd08658e662da.bindPopup(popup_5537d7d825e4bf95de9dc7cceef4c8d6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6aeab86b55dae379955ccd899568e58 = L.circleMarker(\\n\",\n       \"                [37.364, 120.394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a74d77ac4bc4aa71ed9474f0a75efc9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_693fe2b79568fb4738d4b04e8059aabe = $(`&lt;div id=&quot;html_693fe2b79568fb4738d4b04e8059aabe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.394             latitude:37.364             pred_result:17.967941284179688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a74d77ac4bc4aa71ed9474f0a75efc9e.setContent(html_693fe2b79568fb4738d4b04e8059aabe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6aeab86b55dae379955ccd899568e58.bindPopup(popup_a74d77ac4bc4aa71ed9474f0a75efc9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be2c33a91480b25b97ec99b1f16e365b = L.circleMarker(\\n\",\n       \"                [37.177, 119.941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bdbb06d95395be92aeb5d55d2d94683c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85b9846cb1be4e7c294ac7da3f5eecec = $(`&lt;div id=&quot;html_85b9846cb1be4e7c294ac7da3f5eecec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.941             latitude:37.177             pred_result:22.7625675201416             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bdbb06d95395be92aeb5d55d2d94683c.setContent(html_85b9846cb1be4e7c294ac7da3f5eecec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be2c33a91480b25b97ec99b1f16e365b.bindPopup(popup_bdbb06d95395be92aeb5d55d2d94683c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d41171a37a5b29e5534f9b3ba8d622b = L.circleMarker(\\n\",\n       \"                [37.18, 119.959],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_62e539e6547366084e231c67a887af74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c87afe06ceee0b089b3e6441ffcfc2e = $(`&lt;div id=&quot;html_1c87afe06ceee0b089b3e6441ffcfc2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.959             latitude:37.18             pred_result:25.56790542602539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_62e539e6547366084e231c67a887af74.setContent(html_1c87afe06ceee0b089b3e6441ffcfc2e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d41171a37a5b29e5534f9b3ba8d622b.bindPopup(popup_62e539e6547366084e231c67a887af74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4bde36ea8e9cb5a2f4c1577c2f24e4fd = L.circleMarker(\\n\",\n       \"                [37.154, 122.471],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e918c40b1d6020ad69a75e58df11a237 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_00029e8e57b0bdfb451cb573fe5c61f5 = $(`&lt;div id=&quot;html_00029e8e57b0bdfb451cb573fe5c61f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.471             latitude:37.154             pred_result:-0.15709304809570312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e918c40b1d6020ad69a75e58df11a237.setContent(html_00029e8e57b0bdfb451cb573fe5c61f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4bde36ea8e9cb5a2f4c1577c2f24e4fd.bindPopup(popup_e918c40b1d6020ad69a75e58df11a237)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d50b1efb2beccb1c270016593d6be4af = L.circleMarker(\\n\",\n       \"                [37.161, 122.41],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b36b35bdd86e2ce4d014a177c6547aba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9c682a017bab1c2b8be48e544d4fb744 = $(`&lt;div id=&quot;html_9c682a017bab1c2b8be48e544d4fb744&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.41             latitude:37.161             pred_result:3.909687042236328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b36b35bdd86e2ce4d014a177c6547aba.setContent(html_9c682a017bab1c2b8be48e544d4fb744);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d50b1efb2beccb1c270016593d6be4af.bindPopup(popup_b36b35bdd86e2ce4d014a177c6547aba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7bac01c3b4d7c46d0c15938009a41ce = L.circleMarker(\\n\",\n       \"                [37.197, 122.038],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3e7e6b031ef4111c9ae72ffc5c47afa6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ece61c1a73da6dabfe3075e6f3be0807 = $(`&lt;div id=&quot;html_ece61c1a73da6dabfe3075e6f3be0807&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.038             latitude:37.197             pred_result:6.367993354797363             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3e7e6b031ef4111c9ae72ffc5c47afa6.setContent(html_ece61c1a73da6dabfe3075e6f3be0807);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7bac01c3b4d7c46d0c15938009a41ce.bindPopup(popup_3e7e6b031ef4111c9ae72ffc5c47afa6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c91b96fd9838cef44a6a58f7b1209f44 = L.circleMarker(\\n\",\n       \"                [37.187, 122.019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ecadb361de0e5cf962382c52953b58bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60083582a487c61b383017861a49fb09 = $(`&lt;div id=&quot;html_60083582a487c61b383017861a49fb09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.019             latitude:37.187             pred_result:5.705574035644531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ecadb361de0e5cf962382c52953b58bb.setContent(html_60083582a487c61b383017861a49fb09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c91b96fd9838cef44a6a58f7b1209f44.bindPopup(popup_ecadb361de0e5cf962382c52953b58bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22f7a9cc534205613ac88619f49c90a8 = L.circleMarker(\\n\",\n       \"                [36.913, 121.531],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b7c2efe4e9d0d173098946c11fd4001 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0b2d035250f8a48d855dbb8d07934af4 = $(`&lt;div id=&quot;html_0b2d035250f8a48d855dbb8d07934af4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.531             latitude:36.913             pred_result:6.037525177001953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b7c2efe4e9d0d173098946c11fd4001.setContent(html_0b2d035250f8a48d855dbb8d07934af4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22f7a9cc534205613ac88619f49c90a8.bindPopup(popup_3b7c2efe4e9d0d173098946c11fd4001)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a24be37d35d0b7deb6d9814c8b953e00 = L.circleMarker(\\n\",\n       \"                [36.907, 121.544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1231e617823e36a1ac95ce56411542d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f7197b39003e944818903df396706eb4 = $(`&lt;div id=&quot;html_f7197b39003e944818903df396706eb4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.544             latitude:36.907             pred_result:6.671424865722656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1231e617823e36a1ac95ce56411542d5.setContent(html_f7197b39003e944818903df396706eb4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a24be37d35d0b7deb6d9814c8b953e00.bindPopup(popup_1231e617823e36a1ac95ce56411542d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b3b461da542e780a7786288315e30e3 = L.circleMarker(\\n\",\n       \"                [31.155, 120.636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a84eb84a466b006fb40446c500792b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4ef9831baa60495998ea5be50c3c36ee = $(`&lt;div id=&quot;html_4ef9831baa60495998ea5be50c3c36ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.636             latitude:31.155             pred_result:38.392398834228516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a84eb84a466b006fb40446c500792b2.setContent(html_4ef9831baa60495998ea5be50c3c36ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b3b461da542e780a7786288315e30e3.bindPopup(popup_0a84eb84a466b006fb40446c500792b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ad43ed6bc883a2f4e9f2f32e3e9fba6 = L.circleMarker(\\n\",\n       \"                [31.17, 120.635],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c740804e8ec0105acb550008bdd6b99d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_231827c337b44d11894941ae9de40766 = $(`&lt;div id=&quot;html_231827c337b44d11894941ae9de40766&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.635             latitude:31.17             pred_result:37.950523376464844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c740804e8ec0105acb550008bdd6b99d.setContent(html_231827c337b44d11894941ae9de40766);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ad43ed6bc883a2f4e9f2f32e3e9fba6.bindPopup(popup_c740804e8ec0105acb550008bdd6b99d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d44b1f219dd9ede8b459a423624584f = L.circleMarker(\\n\",\n       \"                [31.172, 120.658],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c871b275e2130ba8d6d72ec45e5dd724 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b39ea72d241dd2cf5fb0765469648c4c = $(`&lt;div id=&quot;html_b39ea72d241dd2cf5fb0765469648c4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.658             latitude:31.172             pred_result:36.804466247558594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c871b275e2130ba8d6d72ec45e5dd724.setContent(html_b39ea72d241dd2cf5fb0765469648c4c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d44b1f219dd9ede8b459a423624584f.bindPopup(popup_c871b275e2130ba8d6d72ec45e5dd724)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a21ba771c48863bee553279486c4bf2d = L.circleMarker(\\n\",\n       \"                [31.388, 120.953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07b9a516198a2c8888e7314c96dec0f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0b962ae0f9b5b629c8bd7b8885e91eb = $(`&lt;div id=&quot;html_f0b962ae0f9b5b629c8bd7b8885e91eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.953             latitude:31.388             pred_result:36.322322845458984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07b9a516198a2c8888e7314c96dec0f2.setContent(html_f0b962ae0f9b5b629c8bd7b8885e91eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a21ba771c48863bee553279486c4bf2d.bindPopup(popup_07b9a516198a2c8888e7314c96dec0f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b7fb68ee8fcab6e4f764e464337d1f79 = L.circleMarker(\\n\",\n       \"                [31.381, 120.999],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2ea39248e70824622f5fe4012deef98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7714e5ae056a15601e1fbb879898c2f1 = $(`&lt;div id=&quot;html_7714e5ae056a15601e1fbb879898c2f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.999             latitude:31.381             pred_result:37.540069580078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2ea39248e70824622f5fe4012deef98.setContent(html_7714e5ae056a15601e1fbb879898c2f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b7fb68ee8fcab6e4f764e464337d1f79.bindPopup(popup_f2ea39248e70824622f5fe4012deef98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4887d73fbc2fb10baa203e3c1bba2202 = L.circleMarker(\\n\",\n       \"                [31.671, 120.721],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f87bc3b35622ab8a23292c5502f4e99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2be21caef3d64cc9467cc10a954b476 = $(`&lt;div id=&quot;html_b2be21caef3d64cc9467cc10a954b476&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.721             latitude:31.671             pred_result:35.57046890258789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f87bc3b35622ab8a23292c5502f4e99.setContent(html_b2be21caef3d64cc9467cc10a954b476);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4887d73fbc2fb10baa203e3c1bba2202.bindPopup(popup_1f87bc3b35622ab8a23292c5502f4e99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82292e76b330043d65d3960654cc3fe3 = L.circleMarker(\\n\",\n       \"                [31.656, 120.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ababa6645a6ef58c74877719a0fcdfd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a0584d5629999d5c5fedb62733fa1e2 = $(`&lt;div id=&quot;html_1a0584d5629999d5c5fedb62733fa1e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.734             latitude:31.656             pred_result:36.80280303955078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ababa6645a6ef58c74877719a0fcdfd.setContent(html_1a0584d5629999d5c5fedb62733fa1e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82292e76b330043d65d3960654cc3fe3.bindPopup(popup_3ababa6645a6ef58c74877719a0fcdfd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6c1f783160522af218d415c13bd1f8e = L.circleMarker(\\n\",\n       \"                [31.874, 120.526],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_234cc6d8fe5e279d3907ca85c39462ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c05112a8d78d52cf30683be8dfbc247e = $(`&lt;div id=&quot;html_c05112a8d78d52cf30683be8dfbc247e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.526             latitude:31.874             pred_result:35.82373046875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_234cc6d8fe5e279d3907ca85c39462ce.setContent(html_c05112a8d78d52cf30683be8dfbc247e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6c1f783160522af218d415c13bd1f8e.bindPopup(popup_234cc6d8fe5e279d3907ca85c39462ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4efdc6c1f8a7be3310d30cd3bd7b6cfc = L.circleMarker(\\n\",\n       \"                [31.882, 120.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5eb368fbafeba0ea486b8c623960db54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_488a9ec48990fa8e812b1563aa95d1bf = $(`&lt;div id=&quot;html_488a9ec48990fa8e812b1563aa95d1bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.55             latitude:31.882             pred_result:36.32640838623047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5eb368fbafeba0ea486b8c623960db54.setContent(html_488a9ec48990fa8e812b1563aa95d1bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4efdc6c1f8a7be3310d30cd3bd7b6cfc.bindPopup(popup_5eb368fbafeba0ea486b8c623960db54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3f13812cda02511c7fb36a1cef4b75f = L.circleMarker(\\n\",\n       \"                [31.453000000000007, 121.115],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99a11c048bddda67a9aff3daec3a6c67 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d46855a6a06f5059c7a31cfaaf9061c9 = $(`&lt;div id=&quot;html_d46855a6a06f5059c7a31cfaaf9061c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.115             latitude:31.453000000000007             pred_result:37.79381561279297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99a11c048bddda67a9aff3daec3a6c67.setContent(html_d46855a6a06f5059c7a31cfaaf9061c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3f13812cda02511c7fb36a1cef4b75f.bindPopup(popup_99a11c048bddda67a9aff3daec3a6c67)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_731669d51b869221fcbe384db0674853 = L.circleMarker(\\n\",\n       \"                [31.422, 121.14],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6bca1eca776286df73e4dc0c2adcb19 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f9f45ecc3f90b33896a0c2092bdcf1f = $(`&lt;div id=&quot;html_1f9f45ecc3f90b33896a0c2092bdcf1f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.14             latitude:31.422             pred_result:37.21794128417969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6bca1eca776286df73e4dc0c2adcb19.setContent(html_1f9f45ecc3f90b33896a0c2092bdcf1f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_731669d51b869221fcbe384db0674853.bindPopup(popup_d6bca1eca776286df73e4dc0c2adcb19)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_840b086286a47c5853a0159111f85a07 = L.circleMarker(\\n\",\n       \"                [31.955, 119.146],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4c095589f16ffaa85879f6d8bb8aeb5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b47759b7d44fff6cead45c5c84da7f0 = $(`&lt;div id=&quot;html_6b47759b7d44fff6cead45c5c84da7f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.146             latitude:31.955             pred_result:37.34994888305664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4c095589f16ffaa85879f6d8bb8aeb5.setContent(html_6b47759b7d44fff6cead45c5c84da7f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_840b086286a47c5853a0159111f85a07.bindPopup(popup_b4c095589f16ffaa85879f6d8bb8aeb5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87ace2c535d5fb4971941b9ec1a153af = L.circleMarker(\\n\",\n       \"                [31.955, 119.18],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_83c42a340af1c8078456f6c8d385b7fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be813aecd048ae2b026d83d84509b402 = $(`&lt;div id=&quot;html_be813aecd048ae2b026d83d84509b402&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.18             latitude:31.955             pred_result:35.921409606933594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_83c42a340af1c8078456f6c8d385b7fc.setContent(html_be813aecd048ae2b026d83d84509b402);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87ace2c535d5fb4971941b9ec1a153af.bindPopup(popup_83c42a340af1c8078456f6c8d385b7fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57bc4e8e26c77b743a6848a57c1e274a = L.circleMarker(\\n\",\n       \"                [31.92, 120.268],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d31b685a356c8461fb868da9f177889 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a2c32e74b20b311813f6f262c5372e0 = $(`&lt;div id=&quot;html_1a2c32e74b20b311813f6f262c5372e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.268             latitude:31.92             pred_result:35.48301315307617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d31b685a356c8461fb868da9f177889.setContent(html_1a2c32e74b20b311813f6f262c5372e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57bc4e8e26c77b743a6848a57c1e274a.bindPopup(popup_5d31b685a356c8461fb868da9f177889)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_400041261866a65087ca55556b1b571c = L.circleMarker(\\n\",\n       \"                [31.909, 120.237],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03a339f301f8894f2c035ee0e4ff2738 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d05c82925564696c735cc6701533bef4 = $(`&lt;div id=&quot;html_d05c82925564696c735cc6701533bef4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.237             latitude:31.909             pred_result:37.323631286621094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03a339f301f8894f2c035ee0e4ff2738.setContent(html_d05c82925564696c735cc6701533bef4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_400041261866a65087ca55556b1b571c.bindPopup(popup_03a339f301f8894f2c035ee0e4ff2738)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_551b5ab921e3e811845756f5259149e1 = L.circleMarker(\\n\",\n       \"                [31.92, 120.302],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a2a36f699c39de137b796fac681a9199 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a071a3f4416a09906a4c6984f07e2894 = $(`&lt;div id=&quot;html_a071a3f4416a09906a4c6984f07e2894&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.302             latitude:31.92             pred_result:36.98258590698242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a2a36f699c39de137b796fac681a9199.setContent(html_a071a3f4416a09906a4c6984f07e2894);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_551b5ab921e3e811845756f5259149e1.bindPopup(popup_a2a36f699c39de137b796fac681a9199)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fac3794f00b41bd926602597a472c350 = L.circleMarker(\\n\",\n       \"                [31.354, 119.818],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_15e4cf759c8cbdc785fe107a57adc509 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1cd557075f8f5929d5a37bbe697b3f48 = $(`&lt;div id=&quot;html_1cd557075f8f5929d5a37bbe697b3f48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.818             latitude:31.354             pred_result:41.40546417236328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_15e4cf759c8cbdc785fe107a57adc509.setContent(html_1cd557075f8f5929d5a37bbe697b3f48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fac3794f00b41bd926602597a472c350.bindPopup(popup_15e4cf759c8cbdc785fe107a57adc509)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8ad89e914358b3740204c472ad7a7593 = L.circleMarker(\\n\",\n       \"                [31.371, 119.794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3181dc2baad7f3ddc7f47c901bdf0e4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a7b614728226418ea0a23887ce20da3 = $(`&lt;div id=&quot;html_8a7b614728226418ea0a23887ce20da3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.794             latitude:31.371             pred_result:41.386505126953125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3181dc2baad7f3ddc7f47c901bdf0e4.setContent(html_8a7b614728226418ea0a23887ce20da3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8ad89e914358b3740204c472ad7a7593.bindPopup(popup_d3181dc2baad7f3ddc7f47c901bdf0e4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da4e8ba99e3f4933e907159e4611e5da = L.circleMarker(\\n\",\n       \"                [31.751, 119.579],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5dc87d733fd03b773c909dda8cd8804f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c825ba9b33857348160dc4b5dfcd6371 = $(`&lt;div id=&quot;html_c825ba9b33857348160dc4b5dfcd6371&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.579             latitude:31.751             pred_result:38.12891387939453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5dc87d733fd03b773c909dda8cd8804f.setContent(html_c825ba9b33857348160dc4b5dfcd6371);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da4e8ba99e3f4933e907159e4611e5da.bindPopup(popup_5dc87d733fd03b773c909dda8cd8804f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7899e5b5f0e1073f2b4a93aa3b7564ed = L.circleMarker(\\n\",\n       \"                [31.737, 119.579],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4c7a404a68726aacc35eddbfea4fa02 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_041078e08850c783297be35acb387dd4 = $(`&lt;div id=&quot;html_041078e08850c783297be35acb387dd4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.579             latitude:31.737             pred_result:40.54084777832031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4c7a404a68726aacc35eddbfea4fa02.setContent(html_041078e08850c783297be35acb387dd4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7899e5b5f0e1073f2b4a93aa3b7564ed.bindPopup(popup_c4c7a404a68726aacc35eddbfea4fa02)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26549cfae9da83af6dacbb7b4b94b440 = L.circleMarker(\\n\",\n       \"                [31.4, 119.46],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_114db5bcbb93a16e208e0332585f5aa2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e749f5de854f8a9f1abfc249dfa51b9b = $(`&lt;div id=&quot;html_e749f5de854f8a9f1abfc249dfa51b9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.46             latitude:31.4             pred_result:41.41973114013672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_114db5bcbb93a16e208e0332585f5aa2.setContent(html_e749f5de854f8a9f1abfc249dfa51b9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26549cfae9da83af6dacbb7b4b94b440.bindPopup(popup_114db5bcbb93a16e208e0332585f5aa2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2d46b716c77f8eb83991ec3c6da6d32 = L.circleMarker(\\n\",\n       \"                [31.317, 119.438],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b55d50987ee1846a43883b9da4d7d131 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17e9b694e5192dcd89a572fd2172bd03 = $(`&lt;div id=&quot;html_17e9b694e5192dcd89a572fd2172bd03&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.438             latitude:31.317             pred_result:43.70502471923828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b55d50987ee1846a43883b9da4d7d131.setContent(html_17e9b694e5192dcd89a572fd2172bd03);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2d46b716c77f8eb83991ec3c6da6d32.bindPopup(popup_b55d50987ee1846a43883b9da4d7d131)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2093861b3c8ebe99a2c623dd4f905c3 = L.circleMarker(\\n\",\n       \"                [31.896, 121.173],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85e57a833d5a146410d88e718594890f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_645b29a8b4f28f705d1bdbb9d5792f8a = $(`&lt;div id=&quot;html_645b29a8b4f28f705d1bdbb9d5792f8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.173             latitude:31.896             pred_result:36.25450897216797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85e57a833d5a146410d88e718594890f.setContent(html_645b29a8b4f28f705d1bdbb9d5792f8a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2093861b3c8ebe99a2c623dd4f905c3.bindPopup(popup_85e57a833d5a146410d88e718594890f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_389ecc846eefe53f6f96ca6f0f0551d8 = L.circleMarker(\\n\",\n       \"                [31.89708, 121.1518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_785fef6318dbc747860a9f6b8aaa8256 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2859625553d19ae9a077cd1aa07da082 = $(`&lt;div id=&quot;html_2859625553d19ae9a077cd1aa07da082&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1518             latitude:31.89708             pred_result:34.891624450683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_785fef6318dbc747860a9f6b8aaa8256.setContent(html_2859625553d19ae9a077cd1aa07da082);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_389ecc846eefe53f6f96ca6f0f0551d8.bindPopup(popup_785fef6318dbc747860a9f6b8aaa8256)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63a9a737ef4d429e81768f643ab1c17b = L.circleMarker(\\n\",\n       \"                [30.2366, 119.7183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc1f0c5774722fb96faeb1ba2d464350 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d03ff2b0fe0a32586333763027749ec4 = $(`&lt;div id=&quot;html_d03ff2b0fe0a32586333763027749ec4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7183             latitude:30.2366             pred_result:36.979637145996094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc1f0c5774722fb96faeb1ba2d464350.setContent(html_d03ff2b0fe0a32586333763027749ec4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63a9a737ef4d429e81768f643ab1c17b.bindPopup(popup_cc1f0c5774722fb96faeb1ba2d464350)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7ad293d39a00d5e3199a2d9fcc642887 = L.circleMarker(\\n\",\n       \"                [30.2311, 119.6942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_005983f85775674242ab91f030667b98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d73477b784e7b74f74f3bf6a7c40ce43 = $(`&lt;div id=&quot;html_d73477b784e7b74f74f3bf6a7c40ce43&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6942             latitude:30.2311             pred_result:38.25608444213867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_005983f85775674242ab91f030667b98.setContent(html_d73477b784e7b74f74f3bf6a7c40ce43);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7ad293d39a00d5e3199a2d9fcc642887.bindPopup(popup_005983f85775674242ab91f030667b98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0adafc8da9d3dfbd4c0a2a71565dc2c0 = L.circleMarker(\\n\",\n       \"                [30.049, 119.946],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e759a8953ce2e462239fa5f87a05a61c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de2a178243b40fbf122c528945dba236 = $(`&lt;div id=&quot;html_de2a178243b40fbf122c528945dba236&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.946             latitude:30.049             pred_result:36.20978546142578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e759a8953ce2e462239fa5f87a05a61c.setContent(html_de2a178243b40fbf122c528945dba236);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0adafc8da9d3dfbd4c0a2a71565dc2c0.bindPopup(popup_e759a8953ce2e462239fa5f87a05a61c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_305b41c5e1e75f6be2e9eacdb93043c9 = L.circleMarker(\\n\",\n       \"                [29.305, 120.091],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed97c6dfe1133d5df75ac259d68b0177 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7396c9001fbeab6d90846e9c4d112b96 = $(`&lt;div id=&quot;html_7396c9001fbeab6d90846e9c4d112b96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.091             latitude:29.305             pred_result:31.13925552368164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed97c6dfe1133d5df75ac259d68b0177.setContent(html_7396c9001fbeab6d90846e9c4d112b96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_305b41c5e1e75f6be2e9eacdb93043c9.bindPopup(popup_ed97c6dfe1133d5df75ac259d68b0177)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7835baad1364ad71a00a80cb3da410f5 = L.circleMarker(\\n\",\n       \"                [29.334, 120.04],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_864da02cbd0805781a3fee3fb98ad90e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7c0cd2dd02001bf307d700a768429c7b = $(`&lt;div id=&quot;html_7c0cd2dd02001bf307d700a768429c7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.04             latitude:29.334             pred_result:30.744165420532227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_864da02cbd0805781a3fee3fb98ad90e.setContent(html_7c0cd2dd02001bf307d700a768429c7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7835baad1364ad71a00a80cb3da410f5.bindPopup(popup_864da02cbd0805781a3fee3fb98ad90e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0cdb572b9737214dc73608fa6905b8c8 = L.circleMarker(\\n\",\n       \"                [39.625, 121.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54821996eed76c3d36cf48f9c2c1c170 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_20910148b87b9a271c74469f603c3f77 = $(`&lt;div id=&quot;html_20910148b87b9a271c74469f603c3f77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.989             latitude:39.625             pred_result:16.364173889160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54821996eed76c3d36cf48f9c2c1c170.setContent(html_20910148b87b9a271c74469f603c3f77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0cdb572b9737214dc73608fa6905b8c8.bindPopup(popup_54821996eed76c3d36cf48f9c2c1c170)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_421529a58fb1d872732b10ac9f0722ca = L.circleMarker(\\n\",\n       \"                [39.617, 122.011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_34466699f6bf0f8cdfed382d09269a32 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff8134cdf9c464d78e4bb5e32c29623d = $(`&lt;div id=&quot;html_ff8134cdf9c464d78e4bb5e32c29623d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.011             latitude:39.617             pred_result:16.63637351989746             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_34466699f6bf0f8cdfed382d09269a32.setContent(html_ff8134cdf9c464d78e4bb5e32c29623d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_421529a58fb1d872732b10ac9f0722ca.bindPopup(popup_34466699f6bf0f8cdfed382d09269a32)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c89781e98954c82020a8addfd781d60 = L.circleMarker(\\n\",\n       \"                [27.9958, 113.1817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0dc31c805a614686f1026b84174156fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fe0f5d13c5f3c24eb1ccabb0028916d = $(`&lt;div id=&quot;html_7fe0f5d13c5f3c24eb1ccabb0028916d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1817             latitude:27.9958             pred_result:44.72431182861328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0dc31c805a614686f1026b84174156fb.setContent(html_7fe0f5d13c5f3c24eb1ccabb0028916d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c89781e98954c82020a8addfd781d60.bindPopup(popup_0dc31c805a614686f1026b84174156fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5162e19e7b5c0aa1a1dc0f8e54264d4 = L.circleMarker(\\n\",\n       \"                [32.1078, 114.1044],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d6532162b8f7290ed073393a92b163c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e82399babd669696703510ea79025e4 = $(`&lt;div id=&quot;html_2e82399babd669696703510ea79025e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.1044             latitude:32.1078             pred_result:44.11064529418945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d6532162b8f7290ed073393a92b163c.setContent(html_2e82399babd669696703510ea79025e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5162e19e7b5c0aa1a1dc0f8e54264d4.bindPopup(popup_0d6532162b8f7290ed073393a92b163c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6434a7b56f008a1ad9376e081287fdb9 = L.circleMarker(\\n\",\n       \"                [32.1403, 114.0122],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ae1eb38bbabb4735d2015603fb192f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa029be5cab41e61fbb334eed4716d24 = $(`&lt;div id=&quot;html_fa029be5cab41e61fbb334eed4716d24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0122             latitude:32.1403             pred_result:43.35010528564453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ae1eb38bbabb4735d2015603fb192f4.setContent(html_fa029be5cab41e61fbb334eed4716d24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6434a7b56f008a1ad9376e081287fdb9.bindPopup(popup_9ae1eb38bbabb4735d2015603fb192f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5883c612ecc76fe038af3f43ed62ad0b = L.circleMarker(\\n\",\n       \"                [32.1342, 114.0681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eface9db69c34ea2e9714c9539fb4ada = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d1a23e0a5fca593f4036703fb4c6378 = $(`&lt;div id=&quot;html_6d1a23e0a5fca593f4036703fb4c6378&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0681             latitude:32.1342             pred_result:44.09757995605469             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eface9db69c34ea2e9714c9539fb4ada.setContent(html_6d1a23e0a5fca593f4036703fb4c6378);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5883c612ecc76fe038af3f43ed62ad0b.bindPopup(popup_eface9db69c34ea2e9714c9539fb4ada)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af70f74491b3c834e21fcd4def21980f = L.circleMarker(\\n\",\n       \"                [32.1383, 114.0614],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ffd8298ada65c1f01fb45219029e064 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bb886ddeb5250804a5a625cd1863d3f8 = $(`&lt;div id=&quot;html_bb886ddeb5250804a5a625cd1863d3f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0614             latitude:32.1383             pred_result:43.957786560058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ffd8298ada65c1f01fb45219029e064.setContent(html_bb886ddeb5250804a5a625cd1863d3f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af70f74491b3c834e21fcd4def21980f.bindPopup(popup_4ffd8298ada65c1f01fb45219029e064)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49f2fb9b7b6eaa19cf0b1e7a8cf1dbed = L.circleMarker(\\n\",\n       \"                [33.6128, 114.6613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1cf7ad61778677c9a11abffd3742d57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7a73775576034fb9d18c3ddade7c4a7 = $(`&lt;div id=&quot;html_e7a73775576034fb9d18c3ddade7c4a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6613             latitude:33.6128             pred_result:45.0969123840332             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1cf7ad61778677c9a11abffd3742d57.setContent(html_e7a73775576034fb9d18c3ddade7c4a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49f2fb9b7b6eaa19cf0b1e7a8cf1dbed.bindPopup(popup_d1cf7ad61778677c9a11abffd3742d57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b843dfa618543c66cddf2ec90fae40f2 = L.circleMarker(\\n\",\n       \"                [33.6347, 114.6758],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90ffe15373bb9b25f4cc624761f4e9f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_417f8f47d096e846bfe238c1f81a3e8b = $(`&lt;div id=&quot;html_417f8f47d096e846bfe238c1f81a3e8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6758             latitude:33.6347             pred_result:44.9935417175293             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90ffe15373bb9b25f4cc624761f4e9f2.setContent(html_417f8f47d096e846bfe238c1f81a3e8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b843dfa618543c66cddf2ec90fae40f2.bindPopup(popup_90ffe15373bb9b25f4cc624761f4e9f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7aef95715f64042b4c360abd32f00cc = L.circleMarker(\\n\",\n       \"                [33.5979, 114.6546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8cbe0c8ef29acb410574a344787139c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4bd9f3a7a8f55e249b30a7d9c604d1dc = $(`&lt;div id=&quot;html_4bd9f3a7a8f55e249b30a7d9c604d1dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6546             latitude:33.5979             pred_result:45.1900520324707             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8cbe0c8ef29acb410574a344787139c.setContent(html_4bd9f3a7a8f55e249b30a7d9c604d1dc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7aef95715f64042b4c360abd32f00cc.bindPopup(popup_d8cbe0c8ef29acb410574a344787139c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1c3fa7cf2c1ed273cdd2a947d69768f = L.circleMarker(\\n\",\n       \"                [33.6406, 114.6369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5dea5eac87196d27e949f7ef7787e14e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fde0f809f44388c10b8cbefe1b75a0d1 = $(`&lt;div id=&quot;html_fde0f809f44388c10b8cbefe1b75a0d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6369             latitude:33.6406             pred_result:44.956241607666016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5dea5eac87196d27e949f7ef7787e14e.setContent(html_fde0f809f44388c10b8cbefe1b75a0d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1c3fa7cf2c1ed273cdd2a947d69768f.bindPopup(popup_5dea5eac87196d27e949f7ef7787e14e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c90c40ae3015bfe984eec8c8ad90eeec = L.circleMarker(\\n\",\n       \"                [24.5157, 117.6569],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_48dc598bf33e0f37d98a281915bf54ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c97979bb97444791209ab793ad206d75 = $(`&lt;div id=&quot;html_c97979bb97444791209ab793ad206d75&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6569             latitude:24.5157             pred_result:29.733261108398438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_48dc598bf33e0f37d98a281915bf54ae.setContent(html_c97979bb97444791209ab793ad206d75);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c90c40ae3015bfe984eec8c8ad90eeec.bindPopup(popup_48dc598bf33e0f37d98a281915bf54ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e016d4c84641c0bd57207aac89633c35 = L.circleMarker(\\n\",\n       \"                [24.4674, 117.6336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7795df3a15ec93846b2bc2ad34c93564 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67e3263ca0080f18601ee3b46bf16b0f = $(`&lt;div id=&quot;html_67e3263ca0080f18601ee3b46bf16b0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6336             latitude:24.4674             pred_result:25.69659996032715             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7795df3a15ec93846b2bc2ad34c93564.setContent(html_67e3263ca0080f18601ee3b46bf16b0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e016d4c84641c0bd57207aac89633c35.bindPopup(popup_7795df3a15ec93846b2bc2ad34c93564)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a7c5a6f7bc3a26717853d369f44cd7df = L.circleMarker(\\n\",\n       \"                [35.5051, 112.85],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e9f7928b545191597fd90ec5b09aa79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5810d81cac980cdd18f56362fe55c332 = $(`&lt;div id=&quot;html_5810d81cac980cdd18f56362fe55c332&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.85             latitude:35.5051             pred_result:64.15545654296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e9f7928b545191597fd90ec5b09aa79.setContent(html_5810d81cac980cdd18f56362fe55c332);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a7c5a6f7bc3a26717853d369f44cd7df.bindPopup(popup_2e9f7928b545191597fd90ec5b09aa79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7f6745e59df021f1a12dcadfa5fb40fb = L.circleMarker(\\n\",\n       \"                [35.4934, 112.835],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a50cc30ccdef523cfdfee6530ca9e2da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80549b98b8727076ec1780d9248ab48b = $(`&lt;div id=&quot;html_80549b98b8727076ec1780d9248ab48b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.835             latitude:35.4934             pred_result:64.163330078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a50cc30ccdef523cfdfee6530ca9e2da.setContent(html_80549b98b8727076ec1780d9248ab48b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7f6745e59df021f1a12dcadfa5fb40fb.bindPopup(popup_a50cc30ccdef523cfdfee6530ca9e2da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3369adcd16a263352355a9cbeab666cc = L.circleMarker(\\n\",\n       \"                [35.4883, 112.8564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_851b331b12adf98895cb074ba4b5fe44 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a8a02f3caede444c5641136b69b9459 = $(`&lt;div id=&quot;html_6a8a02f3caede444c5641136b69b9459&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8564             latitude:35.4883             pred_result:64.06908416748047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_851b331b12adf98895cb074ba4b5fe44.setContent(html_6a8a02f3caede444c5641136b69b9459);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3369adcd16a263352355a9cbeab666cc.bindPopup(popup_851b331b12adf98895cb074ba4b5fe44)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_180c82d287d430c65ae3ff0f64647c42 = L.circleMarker(\\n\",\n       \"                [35.4894, 112.8664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c01b2e7ac8bf7544830a9385114f830b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_303fe3ec56c625e185f131bd5354c46a = $(`&lt;div id=&quot;html_303fe3ec56c625e185f131bd5354c46a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8664             latitude:35.4894             pred_result:63.97364807128906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c01b2e7ac8bf7544830a9385114f830b.setContent(html_303fe3ec56c625e185f131bd5354c46a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_180c82d287d430c65ae3ff0f64647c42.bindPopup(popup_c01b2e7ac8bf7544830a9385114f830b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_426096272c07c6c96b052303ee44ca3f = L.circleMarker(\\n\",\n       \"                [35.4813, 112.8252],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b944846c1f770b6ff20b100158e821b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba428ede42a94f49f4f61a1d425ef816 = $(`&lt;div id=&quot;html_ba428ede42a94f49f4f61a1d425ef816&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8252             latitude:35.4813             pred_result:64.05746459960938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b944846c1f770b6ff20b100158e821b0.setContent(html_ba428ede42a94f49f4f61a1d425ef816);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_426096272c07c6c96b052303ee44ca3f.bindPopup(popup_b944846c1f770b6ff20b100158e821b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_363f3e88d83cbf8bd28096a0d2a748a0 = L.circleMarker(\\n\",\n       \"                [35.546, 112.8453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b04b87c22bb44301a29e702f1a90fcc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_381e53fb46b9c4f22d1d51ede79b3c2c = $(`&lt;div id=&quot;html_381e53fb46b9c4f22d1d51ede79b3c2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.8453             latitude:35.546             pred_result:63.72626495361328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b04b87c22bb44301a29e702f1a90fcc.setContent(html_381e53fb46b9c4f22d1d51ede79b3c2c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_363f3e88d83cbf8bd28096a0d2a748a0.bindPopup(popup_2b04b87c22bb44301a29e702f1a90fcc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5ab4a80d100f266dc034534a0fc3ecd = L.circleMarker(\\n\",\n       \"                [39.3514, 112.44],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85fb9d334ebe767270064bc7efe638ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e376c057cc1d9e691c9b991487954181 = $(`&lt;div id=&quot;html_e376c057cc1d9e691c9b991487954181&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.44             latitude:39.3514             pred_result:48.62357711791992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85fb9d334ebe767270064bc7efe638ba.setContent(html_e376c057cc1d9e691c9b991487954181);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5ab4a80d100f266dc034534a0fc3ecd.bindPopup(popup_85fb9d334ebe767270064bc7efe638ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3e923cea31b920e27aed3de61642b00 = L.circleMarker(\\n\",\n       \"                [39.3606, 112.4549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cdcf737c0ff783205ef4f76ee7d6c9cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_944ec01a433a493754d505d1c7a105c7 = $(`&lt;div id=&quot;html_944ec01a433a493754d505d1c7a105c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4549             latitude:39.3606             pred_result:48.221900939941406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cdcf737c0ff783205ef4f76ee7d6c9cb.setContent(html_944ec01a433a493754d505d1c7a105c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3e923cea31b920e27aed3de61642b00.bindPopup(popup_cdcf737c0ff783205ef4f76ee7d6c9cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_192827d7ca548dc9f272ce1f8ed974a3 = L.circleMarker(\\n\",\n       \"                [39.3179, 112.4254],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5dadafa7f484cc29e445e5dab994d9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1c28449a428d68b6f8d3c8018764b73f = $(`&lt;div id=&quot;html_1c28449a428d68b6f8d3c8018764b73f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4254             latitude:39.3179             pred_result:50.50287628173828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5dadafa7f484cc29e445e5dab994d9f.setContent(html_1c28449a428d68b6f8d3c8018764b73f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_192827d7ca548dc9f272ce1f8ed974a3.bindPopup(popup_b5dadafa7f484cc29e445e5dab994d9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d86156e21dc981905cc88bf87c1ebe3 = L.circleMarker(\\n\",\n       \"                [39.3265, 112.4078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e24017aaf57492d5d59eae6f2cfc22bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b80aae53b02747aecac0efe447f555a9 = $(`&lt;div id=&quot;html_b80aae53b02747aecac0efe447f555a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4078             latitude:39.3265             pred_result:48.790870666503906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e24017aaf57492d5d59eae6f2cfc22bc.setContent(html_b80aae53b02747aecac0efe447f555a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d86156e21dc981905cc88bf87c1ebe3.bindPopup(popup_e24017aaf57492d5d59eae6f2cfc22bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f10b1c3818bae24866d87463900d35e7 = L.circleMarker(\\n\",\n       \"                [39.3673, 112.4279],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a058096d52b510269d12030a6728ea9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1afd615b11414436544ab80490f9b4b1 = $(`&lt;div id=&quot;html_1afd615b11414436544ab80490f9b4b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4279             latitude:39.3673             pred_result:47.574066162109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a058096d52b510269d12030a6728ea9c.setContent(html_1afd615b11414436544ab80490f9b4b1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f10b1c3818bae24866d87463900d35e7.bindPopup(popup_a058096d52b510269d12030a6728ea9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42815eba32fd3238437de657b442f4d4 = L.circleMarker(\\n\",\n       \"                [37.7019, 112.7549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eaa6fa0499906f334b2ddcf2ae901e65 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_88b7ca78fa4945b52f30d2f65515a143 = $(`&lt;div id=&quot;html_88b7ca78fa4945b52f30d2f65515a143&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7549             latitude:37.7019             pred_result:72.21446228027344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eaa6fa0499906f334b2ddcf2ae901e65.setContent(html_88b7ca78fa4945b52f30d2f65515a143);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42815eba32fd3238437de657b442f4d4.bindPopup(popup_eaa6fa0499906f334b2ddcf2ae901e65)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e931a40fd53719be1a68b641eada3c4 = L.circleMarker(\\n\",\n       \"                [37.7111, 112.7306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_883f7c8bb6361122c8b7614dd45cf346 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ad48f5290456a38df5c4e2723aab462f = $(`&lt;div id=&quot;html_ad48f5290456a38df5c4e2723aab462f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7306             latitude:37.7111             pred_result:73.09436798095703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_883f7c8bb6361122c8b7614dd45cf346.setContent(html_ad48f5290456a38df5c4e2723aab462f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e931a40fd53719be1a68b641eada3c4.bindPopup(popup_883f7c8bb6361122c8b7614dd45cf346)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbbe240055ea26982e123195dbde72a4 = L.circleMarker(\\n\",\n       \"                [37.7087, 112.7105],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_540edbebd27f84baf34dd1af8443308a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74736f7ae831f7b2a36960eca6a5a3e0 = $(`&lt;div id=&quot;html_74736f7ae831f7b2a36960eca6a5a3e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7105             latitude:37.7087             pred_result:73.19551086425781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_540edbebd27f84baf34dd1af8443308a.setContent(html_74736f7ae831f7b2a36960eca6a5a3e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbbe240055ea26982e123195dbde72a4.bindPopup(popup_540edbebd27f84baf34dd1af8443308a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dfa9ca8a992ee0a025fab7bc15628df = L.circleMarker(\\n\",\n       \"                [35.0147, 110.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2932817e362019a2e8eda7c7c3870d30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8619fc56bfdf46b0539414837b36c3ca = $(`&lt;div id=&quot;html_8619fc56bfdf46b0539414837b36c3ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9956             latitude:35.0147             pred_result:60.674842834472656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2932817e362019a2e8eda7c7c3870d30.setContent(html_8619fc56bfdf46b0539414837b36c3ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dfa9ca8a992ee0a025fab7bc15628df.bindPopup(popup_2932817e362019a2e8eda7c7c3870d30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_071a69c0d206173d8f752dead7194c1e = L.circleMarker(\\n\",\n       \"                [35.0611, 111.0233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aef2419c9f63308c026be632ed654fd3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2800076302f9cbd76cb859c32584d4e6 = $(`&lt;div id=&quot;html_2800076302f9cbd76cb859c32584d4e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0233             latitude:35.0611             pred_result:61.399192810058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aef2419c9f63308c026be632ed654fd3.setContent(html_2800076302f9cbd76cb859c32584d4e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_071a69c0d206173d8f752dead7194c1e.bindPopup(popup_aef2419c9f63308c026be632ed654fd3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3afd5b8418e04fbd18035d124c9430ce = L.circleMarker(\\n\",\n       \"                [35.0308, 110.9678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13d8a14c9148e614dbe295d1af02cefc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4123d8aae064cd39dbef6a65515596a = $(`&lt;div id=&quot;html_c4123d8aae064cd39dbef6a65515596a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9678             latitude:35.0308             pred_result:60.7343635559082             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13d8a14c9148e614dbe295d1af02cefc.setContent(html_c4123d8aae064cd39dbef6a65515596a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3afd5b8418e04fbd18035d124c9430ce.bindPopup(popup_13d8a14c9148e614dbe295d1af02cefc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fad2c75396d7683f970eaabf73e337b4 = L.circleMarker(\\n\",\n       \"                [35.1147, 111.0414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70d23e8a9627388b5d996826cf1ea9b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3418499463bb2c8c6845bfaf4aa73e0b = $(`&lt;div id=&quot;html_3418499463bb2c8c6845bfaf4aa73e0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0414             latitude:35.1147             pred_result:61.5265007019043             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70d23e8a9627388b5d996826cf1ea9b8.setContent(html_3418499463bb2c8c6845bfaf4aa73e0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fad2c75396d7683f970eaabf73e337b4.bindPopup(popup_70d23e8a9627388b5d996826cf1ea9b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0a4936b7411bad467ba1cb741f576c0 = L.circleMarker(\\n\",\n       \"                [38.4186, 112.7356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd23dc28a6d0ac0fd9f4c6a3e9772782 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4dcf9c7a16ca9ecd24327e37bd03a0ba = $(`&lt;div id=&quot;html_4dcf9c7a16ca9ecd24327e37bd03a0ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7356             latitude:38.4186             pred_result:68.80885314941406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd23dc28a6d0ac0fd9f4c6a3e9772782.setContent(html_4dcf9c7a16ca9ecd24327e37bd03a0ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0a4936b7411bad467ba1cb741f576c0.bindPopup(popup_cd23dc28a6d0ac0fd9f4c6a3e9772782)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b09ddbcc38b860108ba9b5cab76b8f7e = L.circleMarker(\\n\",\n       \"                [38.4519, 112.7383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9838e65592130d65387c546b70f7666 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b4a4e864723b301dd97adaf221e3130 = $(`&lt;div id=&quot;html_5b4a4e864723b301dd97adaf221e3130&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7383             latitude:38.4519             pred_result:69.3814926147461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9838e65592130d65387c546b70f7666.setContent(html_5b4a4e864723b301dd97adaf221e3130);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b09ddbcc38b860108ba9b5cab76b8f7e.bindPopup(popup_b9838e65592130d65387c546b70f7666)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b72d064fc3eb2b80569de7cfd39a444e = L.circleMarker(\\n\",\n       \"                [38.4928, 112.7003],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8ade26f1a816fa806a658678d39eed6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97025b0748784954ec2f193150bf37a2 = $(`&lt;div id=&quot;html_97025b0748784954ec2f193150bf37a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7003             latitude:38.4928             pred_result:67.2574234008789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8ade26f1a816fa806a658678d39eed6.setContent(html_97025b0748784954ec2f193150bf37a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b72d064fc3eb2b80569de7cfd39a444e.bindPopup(popup_e8ade26f1a816fa806a658678d39eed6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_991937751de7b2d77a7c8f0d9f44f8ab = L.circleMarker(\\n\",\n       \"                [37.5211, 111.1406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0efc9abe5ac916aa8d6a8b4a80b83d09 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a03b4b4fb2ec468a1a0ff410bd7f8d7d = $(`&lt;div id=&quot;html_a03b4b4fb2ec468a1a0ff410bd7f8d7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1406             latitude:37.5211             pred_result:59.205467224121094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0efc9abe5ac916aa8d6a8b4a80b83d09.setContent(html_a03b4b4fb2ec468a1a0ff410bd7f8d7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_991937751de7b2d77a7c8f0d9f44f8ab.bindPopup(popup_0efc9abe5ac916aa8d6a8b4a80b83d09)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f448fedcc5c145fa50ff36f7eac4ffab = L.circleMarker(\\n\",\n       \"                [37.5136, 111.1297],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_384e709601ae165bf164b4fd5fb25c1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a33bf75788b710eb13b98e7be5bd609 = $(`&lt;div id=&quot;html_1a33bf75788b710eb13b98e7be5bd609&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.1297             latitude:37.5136             pred_result:58.60975646972656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_384e709601ae165bf164b4fd5fb25c1f.setContent(html_1a33bf75788b710eb13b98e7be5bd609);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f448fedcc5c145fa50ff36f7eac4ffab.bindPopup(popup_384e709601ae165bf164b4fd5fb25c1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4fb6946cd1fe71124abb6265f8e8b2b8 = L.circleMarker(\\n\",\n       \"                [39.6719, 106.8219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e02afc183f56cb552acaeb407d18e07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0d87bf19c207f6082ab759a69067d360 = $(`&lt;div id=&quot;html_0d87bf19c207f6082ab759a69067d360&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8219             latitude:39.6719             pred_result:42.10914611816406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e02afc183f56cb552acaeb407d18e07.setContent(html_0d87bf19c207f6082ab759a69067d360);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4fb6946cd1fe71124abb6265f8e8b2b8.bindPopup(popup_7e02afc183f56cb552acaeb407d18e07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f267bb277ae8d1ea80768a76eb26577 = L.circleMarker(\\n\",\n       \"                [39.6969, 106.8089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_300a2122c1b230fccf3fd8cc2667aa18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_edc474024428e3b06d6eb94d4d320c0a = $(`&lt;div id=&quot;html_edc474024428e3b06d6eb94d4d320c0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8089             latitude:39.6969             pred_result:41.55474090576172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_300a2122c1b230fccf3fd8cc2667aa18.setContent(html_edc474024428e3b06d6eb94d4d320c0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f267bb277ae8d1ea80768a76eb26577.bindPopup(popup_300a2122c1b230fccf3fd8cc2667aa18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c46823105f5804c48c4e13a131329821 = L.circleMarker(\\n\",\n       \"                [39.6572, 106.7931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aefb253109bfed2d3d57d00b52a1a3d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99bb3b8eb86b729bd07f2bf0dfbc0fbb = $(`&lt;div id=&quot;html_99bb3b8eb86b729bd07f2bf0dfbc0fbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7931             latitude:39.6572             pred_result:40.90581130981445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aefb253109bfed2d3d57d00b52a1a3d0.setContent(html_99bb3b8eb86b729bd07f2bf0dfbc0fbb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c46823105f5804c48c4e13a131329821.bindPopup(popup_aefb253109bfed2d3d57d00b52a1a3d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25e8d69d2fcf431c4b221b4e8d5138a7 = L.circleMarker(\\n\",\n       \"                [43.6267, 122.2603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_80410cb2f55bc4a885d393da02b17c47 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_294e20655a97e3c77e9a381b1b1e27ff = $(`&lt;div id=&quot;html_294e20655a97e3c77e9a381b1b1e27ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2603             latitude:43.6267             pred_result:19.7614688873291             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_80410cb2f55bc4a885d393da02b17c47.setContent(html_294e20655a97e3c77e9a381b1b1e27ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25e8d69d2fcf431c4b221b4e8d5138a7.bindPopup(popup_80410cb2f55bc4a885d393da02b17c47)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa7cf92408c32bc7a4720085b03fcc5b = L.circleMarker(\\n\",\n       \"                [43.6156, 122.3039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e17d625e57cb0fd11b500571dbf7c7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93b397321f7b743c63479e5a2aa4e24b = $(`&lt;div id=&quot;html_93b397321f7b743c63479e5a2aa4e24b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.3039             latitude:43.6156             pred_result:19.762815475463867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e17d625e57cb0fd11b500571dbf7c7e.setContent(html_93b397321f7b743c63479e5a2aa4e24b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa7cf92408c32bc7a4720085b03fcc5b.bindPopup(popup_1e17d625e57cb0fd11b500571dbf7c7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be21db4b4cd98deb1d7e143974e58bc7 = L.circleMarker(\\n\",\n       \"                [43.6801, 122.2532],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_43268f66a11780612be61077d910103b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61838f009dbaaffd986957bd8eaa24a8 = $(`&lt;div id=&quot;html_61838f009dbaaffd986957bd8eaa24a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.2532             latitude:43.6801             pred_result:17.428932189941406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_43268f66a11780612be61077d910103b.setContent(html_61838f009dbaaffd986957bd8eaa24a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be21db4b4cd98deb1d7e143974e58bc7.bindPopup(popup_43268f66a11780612be61077d910103b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92aab4469786a37706fcc971a5df7861 = L.circleMarker(\\n\",\n       \"                [49.2261, 119.7594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_108dffa3c9568fa8f6f0006c9c871077 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_662ee87321a3d87c42283f7d5fa67ebd = $(`&lt;div id=&quot;html_662ee87321a3d87c42283f7d5fa67ebd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7594             latitude:49.2261             pred_result:-2.8250765800476074             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_108dffa3c9568fa8f6f0006c9c871077.setContent(html_662ee87321a3d87c42283f7d5fa67ebd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92aab4469786a37706fcc971a5df7861.bindPopup(popup_108dffa3c9568fa8f6f0006c9c871077)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3c0093677c8e268cfa7f4edd2605a071 = L.circleMarker(\\n\",\n       \"                [40.916, 107.5936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_989f0a01bd02d97323237635d365ebea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a087497f2932cdeed9e12df7f070c9c = $(`&lt;div id=&quot;html_0a087497f2932cdeed9e12df7f070c9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5936             latitude:40.916             pred_result:33.98662185668945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_989f0a01bd02d97323237635d365ebea.setContent(html_0a087497f2932cdeed9e12df7f070c9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3c0093677c8e268cfa7f4edd2605a071.bindPopup(popup_989f0a01bd02d97323237635d365ebea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dca2d933cbe3d4737a7c9e070bba18f8 = L.circleMarker(\\n\",\n       \"                [40.7608, 107.4211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26ad2c867ba338c2b24a86ca21d73a52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_015f0d4789580c17c58b0a9de5b76d59 = $(`&lt;div id=&quot;html_015f0d4789580c17c58b0a9de5b76d59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4211             latitude:40.7608             pred_result:34.69514846801758             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26ad2c867ba338c2b24a86ca21d73a52.setContent(html_015f0d4789580c17c58b0a9de5b76d59);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dca2d933cbe3d4737a7c9e070bba18f8.bindPopup(popup_26ad2c867ba338c2b24a86ca21d73a52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8221273eb8c607068891a8114fa2ee9a = L.circleMarker(\\n\",\n       \"                [40.7378, 107.3715],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e7588c145f5521416e4888240ffe652 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d492179e175e5ceef53fddd462311763 = $(`&lt;div id=&quot;html_d492179e175e5ceef53fddd462311763&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3715             latitude:40.7378             pred_result:34.83307647705078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e7588c145f5521416e4888240ffe652.setContent(html_d492179e175e5ceef53fddd462311763);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8221273eb8c607068891a8114fa2ee9a.bindPopup(popup_2e7588c145f5521416e4888240ffe652)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1b442b689503a6c7331d222baae981d = L.circleMarker(\\n\",\n       \"                [40.9923, 113.1306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d96bcc90af6825a85da4ed7b76ad1f3b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c822a8b55ddd892a6aed63cfd00f5124 = $(`&lt;div id=&quot;html_c822a8b55ddd892a6aed63cfd00f5124&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1306             latitude:40.9923             pred_result:29.20038414001465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d96bcc90af6825a85da4ed7b76ad1f3b.setContent(html_c822a8b55ddd892a6aed63cfd00f5124);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1b442b689503a6c7331d222baae981d.bindPopup(popup_d96bcc90af6825a85da4ed7b76ad1f3b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e43c9ac2cf905a1d00abea8f3717d46a = L.circleMarker(\\n\",\n       \"                [46.0703, 122.0506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44c84edff26f2d75a15d54d83f0242a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a595f242a376b3d24cb3b71278a0767b = $(`&lt;div id=&quot;html_a595f242a376b3d24cb3b71278a0767b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0506             latitude:46.0703             pred_result:10.002424240112305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44c84edff26f2d75a15d54d83f0242a4.setContent(html_a595f242a376b3d24cb3b71278a0767b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e43c9ac2cf905a1d00abea8f3717d46a.bindPopup(popup_44c84edff26f2d75a15d54d83f0242a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ba0f314ae31cb3f7dbef734b6b0a600 = L.circleMarker(\\n\",\n       \"                [46.0756, 121.9462],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cbed42c24f04b3921cb37bb6eaba132d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f569aebde18144560bd0514fccf9fb5 = $(`&lt;div id=&quot;html_3f569aebde18144560bd0514fccf9fb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.9462             latitude:46.0756             pred_result:7.811023712158203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cbed42c24f04b3921cb37bb6eaba132d.setContent(html_3f569aebde18144560bd0514fccf9fb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ba0f314ae31cb3f7dbef734b6b0a600.bindPopup(popup_cbed42c24f04b3921cb37bb6eaba132d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26096f25f21c524dcb1cb08cea494c34 = L.circleMarker(\\n\",\n       \"                [43.9317, 116.1042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1366a0b464c6219cbeeb92847b6ad39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03a6a05a149d7302e2016747fd23ebef = $(`&lt;div id=&quot;html_03a6a05a149d7302e2016747fd23ebef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.1042             latitude:43.9317             pred_result:20.498992919921875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1366a0b464c6219cbeeb92847b6ad39.setContent(html_03a6a05a149d7302e2016747fd23ebef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26096f25f21c524dcb1cb08cea494c34.bindPopup(popup_e1366a0b464c6219cbeeb92847b6ad39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2de4a9ff05e1c4f4853d6ab8ec22c05 = L.circleMarker(\\n\",\n       \"                [43.9311, 116.0781],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eca65f2d533ceea78611865cd61349e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_798da1f00f17d0c9b8795072fb831cf5 = $(`&lt;div id=&quot;html_798da1f00f17d0c9b8795072fb831cf5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0781             latitude:43.9311             pred_result:20.99198341369629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eca65f2d533ceea78611865cd61349e8.setContent(html_798da1f00f17d0c9b8795072fb831cf5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2de4a9ff05e1c4f4853d6ab8ec22c05.bindPopup(popup_eca65f2d533ceea78611865cd61349e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bfba87a0ca9b28f674e90c6f8bb941d2 = L.circleMarker(\\n\",\n       \"                [38.8343, 105.6775],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5df22a4e350e97b0c389581a2afb6d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89c40550dbaa11895d53cbcada0d8817 = $(`&lt;div id=&quot;html_89c40550dbaa11895d53cbcada0d8817&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6775             latitude:38.8343             pred_result:40.05824661254883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5df22a4e350e97b0c389581a2afb6d0.setContent(html_89c40550dbaa11895d53cbcada0d8817);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bfba87a0ca9b28f674e90c6f8bb941d2.bindPopup(popup_e5df22a4e350e97b0c389581a2afb6d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_49dbba56d41d372080cb6ad0dc764734 = L.circleMarker(\\n\",\n       \"                [38.843, 105.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c0c9fdc65a4a4575f2849c9a9f374798 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26183530e22497740ba42da8f285367e = $(`&lt;div id=&quot;html_26183530e22497740ba42da8f285367e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6975             latitude:38.843             pred_result:39.78893280029297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c0c9fdc65a4a4575f2849c9a9f374798.setContent(html_26183530e22497740ba42da8f285367e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_49dbba56d41d372080cb6ad0dc764734.bindPopup(popup_c0c9fdc65a4a4575f2849c9a9f374798)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a5d67cdfb0510730bb23f1c2129e0cca = L.circleMarker(\\n\",\n       \"                [38.8516, 105.724],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3b5d5d52f37ae63f68b2a09de05c7c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8ac059cf7c4b9efde04bdd7f268995d1 = $(`&lt;div id=&quot;html_8ac059cf7c4b9efde04bdd7f268995d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.724             latitude:38.8516             pred_result:39.48872756958008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3b5d5d52f37ae63f68b2a09de05c7c2.setContent(html_8ac059cf7c4b9efde04bdd7f268995d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a5d67cdfb0510730bb23f1c2129e0cca.bindPopup(popup_e3b5d5d52f37ae63f68b2a09de05c7c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_164c25cef32b0ccf743df3f57d5f5953 = L.circleMarker(\\n\",\n       \"                [41.9967, 121.6178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ccdc33a3116c5ffc76e35911759e131 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f5ecbe930dc3a64273944a2a3957435e = $(`&lt;div id=&quot;html_f5ecbe930dc3a64273944a2a3957435e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6178             latitude:41.9967             pred_result:18.30008316040039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ccdc33a3116c5ffc76e35911759e131.setContent(html_f5ecbe930dc3a64273944a2a3957435e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_164c25cef32b0ccf743df3f57d5f5953.bindPopup(popup_4ccdc33a3116c5ffc76e35911759e131)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b103b06fc176883b439067617cf84762 = L.circleMarker(\\n\",\n       \"                [42.0186, 121.6561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d812f3fe6c30a290018ed7ff16ccf95 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96064cde76651005c29bf97563381514 = $(`&lt;div id=&quot;html_96064cde76651005c29bf97563381514&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6561             latitude:42.0186             pred_result:17.755382537841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d812f3fe6c30a290018ed7ff16ccf95.setContent(html_96064cde76651005c29bf97563381514);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b103b06fc176883b439067617cf84762.bindPopup(popup_5d812f3fe6c30a290018ed7ff16ccf95)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d99423629cca6e5663ea1d72bc49cac5 = L.circleMarker(\\n\",\n       \"                [42.0503, 121.6972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f0ef241f813b2b109d13db4d31dd6f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2161086c3dc2bf19b61fe8d19f0e7b4b = $(`&lt;div id=&quot;html_2161086c3dc2bf19b61fe8d19f0e7b4b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6972             latitude:42.0503             pred_result:15.723319053649902             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f0ef241f813b2b109d13db4d31dd6f5.setContent(html_2161086c3dc2bf19b61fe8d19f0e7b4b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d99423629cca6e5663ea1d72bc49cac5.bindPopup(popup_4f0ef241f813b2b109d13db4d31dd6f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c0d47a70b5ba443a336b148f64408213 = L.circleMarker(\\n\",\n       \"                [42.0228, 121.6722],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f24dc38acb6e196f1ae3bd132332e5d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0139d7cb735dee81178453c2e521dbab = $(`&lt;div id=&quot;html_0139d7cb735dee81178453c2e521dbab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6722             latitude:42.0228             pred_result:21.153018951416016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f24dc38acb6e196f1ae3bd132332e5d.setContent(html_0139d7cb735dee81178453c2e521dbab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c0d47a70b5ba443a336b148f64408213.bindPopup(popup_9f24dc38acb6e196f1ae3bd132332e5d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23cd6f2be1b492c3aa8413b1fb8c0c1c = L.circleMarker(\\n\",\n       \"                [42.0486, 121.6592],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6dab6cd07035e516732db9ed9297eade = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61390d39078e6cff4bd04840a229f96e = $(`&lt;div id=&quot;html_61390d39078e6cff4bd04840a229f96e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6592             latitude:42.0486             pred_result:15.088238716125488             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6dab6cd07035e516732db9ed9297eade.setContent(html_61390d39078e6cff4bd04840a229f96e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23cd6f2be1b492c3aa8413b1fb8c0c1c.bindPopup(popup_6dab6cd07035e516732db9ed9297eade)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1d297c31eea4e046ed92e6b02eeee23 = L.circleMarker(\\n\",\n       \"                [41.1953, 123.2],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_145e891fd911719984202bc61de9d1c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_68a2651c43939d860156d90bfb15359d = $(`&lt;div id=&quot;html_68a2651c43939d860156d90bfb15359d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.2             latitude:41.1953             pred_result:21.81952476501465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_145e891fd911719984202bc61de9d1c2.setContent(html_68a2651c43939d860156d90bfb15359d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1d297c31eea4e046ed92e6b02eeee23.bindPopup(popup_145e891fd911719984202bc61de9d1c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb7207058d11440c03955ff2e01a9b6c = L.circleMarker(\\n\",\n       \"                [41.2553, 123.15],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8d7b0a068a95e498a0d640185bb950d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02d7a497084cf0643754fa82fcaa6aa9 = $(`&lt;div id=&quot;html_02d7a497084cf0643754fa82fcaa6aa9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.15             latitude:41.2553             pred_result:21.2495059967041             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8d7b0a068a95e498a0d640185bb950d.setContent(html_02d7a497084cf0643754fa82fcaa6aa9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb7207058d11440c03955ff2e01a9b6c.bindPopup(popup_a8d7b0a068a95e498a0d640185bb950d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9723a1a4aff0d1402df05edd9517539f = L.circleMarker(\\n\",\n       \"                [41.2736, 123.1761],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85c9cbf3defddc53c42dadcc6a5a459c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9fd07e2684749f07b6dece72fddbfa0 = $(`&lt;div id=&quot;html_e9fd07e2684749f07b6dece72fddbfa0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1761             latitude:41.2736             pred_result:26.17047119140625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85c9cbf3defddc53c42dadcc6a5a459c.setContent(html_e9fd07e2684749f07b6dece72fddbfa0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9723a1a4aff0d1402df05edd9517539f.bindPopup(popup_85c9cbf3defddc53c42dadcc6a5a459c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_92fe080d08ed11b1f9770bb23a48ffee = L.circleMarker(\\n\",\n       \"                [41.2894, 123.1417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_933cdccd3df0bd2b018266643273710e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d67aebc9dcbbbb6692ced37fe209bbc = $(`&lt;div id=&quot;html_2d67aebc9dcbbbb6692ced37fe209bbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1417             latitude:41.2894             pred_result:25.249446868896484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_933cdccd3df0bd2b018266643273710e.setContent(html_2d67aebc9dcbbbb6692ced37fe209bbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_92fe080d08ed11b1f9770bb23a48ffee.bindPopup(popup_933cdccd3df0bd2b018266643273710e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dd03a3c0712e844c765323938084a660 = L.circleMarker(\\n\",\n       \"                [42.3022, 123.8139],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_710c5d51be422f3fd4a853ba5adf999a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2345c48d45fc40d25a1dbb0c6990a93 = $(`&lt;div id=&quot;html_b2345c48d45fc40d25a1dbb0c6990a93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8139             latitude:42.3022             pred_result:17.26980972290039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_710c5d51be422f3fd4a853ba5adf999a.setContent(html_b2345c48d45fc40d25a1dbb0c6990a93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dd03a3c0712e844c765323938084a660.bindPopup(popup_710c5d51be422f3fd4a853ba5adf999a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e66d2b094f547c44af61ae2ed1d0ec9 = L.circleMarker(\\n\",\n       \"                [42.2953, 123.8831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1140db8716a2d29e4c281d3cd68d3feb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ccc86943d6b4bc73b8cbe15ee46c1ac7 = $(`&lt;div id=&quot;html_ccc86943d6b4bc73b8cbe15ee46c1ac7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8831             latitude:42.2953             pred_result:17.428232192993164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1140db8716a2d29e4c281d3cd68d3feb.setContent(html_ccc86943d6b4bc73b8cbe15ee46c1ac7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e66d2b094f547c44af61ae2ed1d0ec9.bindPopup(popup_1140db8716a2d29e4c281d3cd68d3feb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a27d5b6e3567925cfda3feca622a8a18 = L.circleMarker(\\n\",\n       \"                [42.2864, 123.8489],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8716ee7cffd0e6d039bd2d89f39d7146 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a578ddc675243cf682d2bb0b88dd217 = $(`&lt;div id=&quot;html_1a578ddc675243cf682d2bb0b88dd217&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.8489             latitude:42.2864             pred_result:19.93622589111328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8716ee7cffd0e6d039bd2d89f39d7146.setContent(html_1a578ddc675243cf682d2bb0b88dd217);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a27d5b6e3567925cfda3feca622a8a18.bindPopup(popup_8716ee7cffd0e6d039bd2d89f39d7146)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb6730394ed32264cf480a3cae233b60 = L.circleMarker(\\n\",\n       \"                [42.2217, 123.7153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db7aec86c77ac08632f8d86e52b6e0db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2039d3c725d5a41bc2b979702b8c8fc0 = $(`&lt;div id=&quot;html_2039d3c725d5a41bc2b979702b8c8fc0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.7153             latitude:42.2217             pred_result:21.05379295349121             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db7aec86c77ac08632f8d86e52b6e0db.setContent(html_2039d3c725d5a41bc2b979702b8c8fc0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb6730394ed32264cf480a3cae233b60.bindPopup(popup_db7aec86c77ac08632f8d86e52b6e0db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1e062158c8fa05e7d5f63c56d2d41f0 = L.circleMarker(\\n\",\n       \"                [41.5931, 120.4439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f671d45d342c692d2c5a92d3732a588 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d5635e7dbeab727292241d55e8c8a14 = $(`&lt;div id=&quot;html_9d5635e7dbeab727292241d55e8c8a14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4439             latitude:41.5931             pred_result:23.071300506591797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f671d45d342c692d2c5a92d3732a588.setContent(html_9d5635e7dbeab727292241d55e8c8a14);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1e062158c8fa05e7d5f63c56d2d41f0.bindPopup(popup_5f671d45d342c692d2c5a92d3732a588)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2055e3c39001ad7bdc140162cc0b5b93 = L.circleMarker(\\n\",\n       \"                [41.5672, 120.4486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9e492efed08b68c784884d0c99b52d30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7574379c0b6ec1400cb5f8b5cb0461fb = $(`&lt;div id=&quot;html_7574379c0b6ec1400cb5f8b5cb0461fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4486             latitude:41.5672             pred_result:20.144908905029297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9e492efed08b68c784884d0c99b52d30.setContent(html_7574379c0b6ec1400cb5f8b5cb0461fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2055e3c39001ad7bdc140162cc0b5b93.bindPopup(popup_9e492efed08b68c784884d0c99b52d30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbe0271acf0c2f408460c83d8985156b = L.circleMarker(\\n\",\n       \"                [41.5647, 120.4247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c1cff792eb22fa7644bdc32d26f2d27d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2600e3dac10332798b3f090dd2412254 = $(`&lt;div id=&quot;html_2600e3dac10332798b3f090dd2412254&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.4247             latitude:41.5647             pred_result:21.71259117126465             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c1cff792eb22fa7644bdc32d26f2d27d.setContent(html_2600e3dac10332798b3f090dd2412254);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbe0271acf0c2f408460c83d8985156b.bindPopup(popup_c1cff792eb22fa7644bdc32d26f2d27d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc03314595465e3ae60a1248734f730c = L.circleMarker(\\n\",\n       \"                [41.615, 120.3939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a82cd118a434fb644ae7905f31177f52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3d130289136f1ee48b8b223be4b64da = $(`&lt;div id=&quot;html_a3d130289136f1ee48b8b223be4b64da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.3939             latitude:41.615             pred_result:18.447582244873047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a82cd118a434fb644ae7905f31177f52.setContent(html_a3d130289136f1ee48b8b223be4b64da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc03314595465e3ae60a1248734f730c.bindPopup(popup_a82cd118a434fb644ae7905f31177f52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_31f90715fcc16b87bcc1a1727922ceb8 = L.circleMarker(\\n\",\n       \"                [43.1747, 124.3419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5ed262eb00ef2f8bff261989fc4e894 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_103e6fa6671a16ec0920803d486d1bb5 = $(`&lt;div id=&quot;html_103e6fa6671a16ec0920803d486d1bb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3419             latitude:43.1747             pred_result:21.689773559570312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5ed262eb00ef2f8bff261989fc4e894.setContent(html_103e6fa6671a16ec0920803d486d1bb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_31f90715fcc16b87bcc1a1727922ceb8.bindPopup(popup_b5ed262eb00ef2f8bff261989fc4e894)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_772aeb098b82905ce4250f84ebab9ae4 = L.circleMarker(\\n\",\n       \"                [43.1594, 124.3711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f1b0740e633bea3785912545a53965d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_41113dcde0e529ea489103cb7437f230 = $(`&lt;div id=&quot;html_41113dcde0e529ea489103cb7437f230&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3711             latitude:43.1594             pred_result:19.163795471191406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f1b0740e633bea3785912545a53965d.setContent(html_41113dcde0e529ea489103cb7437f230);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_772aeb098b82905ce4250f84ebab9ae4.bindPopup(popup_8f1b0740e633bea3785912545a53965d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44a5e117186d65dc9bfdca9f2df676ae = L.circleMarker(\\n\",\n       \"                [43.1847, 124.3897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b4bc38b789af8cffde395dc739c1a3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f51fb8a20275ee93167c6aeef959bc70 = $(`&lt;div id=&quot;html_f51fb8a20275ee93167c6aeef959bc70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3897             latitude:43.1847             pred_result:15.5531587600708             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b4bc38b789af8cffde395dc739c1a3f.setContent(html_f51fb8a20275ee93167c6aeef959bc70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44a5e117186d65dc9bfdca9f2df676ae.bindPopup(popup_8b4bc38b789af8cffde395dc739c1a3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60863879d0ec410e6ddcc812a5515d77 = L.circleMarker(\\n\",\n       \"                [42.8947, 125.1358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67aee69c609355c44a59accc42ed31c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4c46112e47d74d7692e1a6227513bf4 = $(`&lt;div id=&quot;html_c4c46112e47d74d7692e1a6227513bf4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1358             latitude:42.8947             pred_result:17.635953903198242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67aee69c609355c44a59accc42ed31c5.setContent(html_c4c46112e47d74d7692e1a6227513bf4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60863879d0ec410e6ddcc812a5515d77.bindPopup(popup_67aee69c609355c44a59accc42ed31c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fe44274722e5d2f8917dd0d736dbd1a = L.circleMarker(\\n\",\n       \"                [42.8953, 125.1567],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e5281c46abeb4eea95a2aa5f7936fe5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_392f1e0cf07cbe16b36224c2f1fa65e0 = $(`&lt;div id=&quot;html_392f1e0cf07cbe16b36224c2f1fa65e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.1567             latitude:42.8953             pred_result:16.025638580322266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e5281c46abeb4eea95a2aa5f7936fe5.setContent(html_392f1e0cf07cbe16b36224c2f1fa65e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fe44274722e5d2f8917dd0d736dbd1a.bindPopup(popup_7e5281c46abeb4eea95a2aa5f7936fe5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce7029d5d216b812b9261c4ab3669841 = L.circleMarker(\\n\",\n       \"                [41.7156, 125.9361],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a896c1dac90903af1b8a0bccae95ac79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6316ea36f6012cb34dee43d81e26e007 = $(`&lt;div id=&quot;html_6316ea36f6012cb34dee43d81e26e007&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.9361             latitude:41.7156             pred_result:11.417669296264648             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a896c1dac90903af1b8a0bccae95ac79.setContent(html_6316ea36f6012cb34dee43d81e26e007);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce7029d5d216b812b9261c4ab3669841.bindPopup(popup_a896c1dac90903af1b8a0bccae95ac79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b24e9e97e92186635f2f1b5917fc252a = L.circleMarker(\\n\",\n       \"                [41.7381, 125.9486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96476be730f05bc0cd4517574c5eb6bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0bc74a3e8b2f5430f590969e4be61bc4 = $(`&lt;div id=&quot;html_0bc74a3e8b2f5430f590969e4be61bc4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.9486             latitude:41.7381             pred_result:10.140986442565918             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96476be730f05bc0cd4517574c5eb6bd.setContent(html_0bc74a3e8b2f5430f590969e4be61bc4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b24e9e97e92186635f2f1b5917fc252a.bindPopup(popup_96476be730f05bc0cd4517574c5eb6bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f87db03425ffce24619dc2ac8932e53c = L.circleMarker(\\n\",\n       \"                [41.9206, 126.4047],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76efd71409fc84d60ddfeb5ee1d9369a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78b39afb863d2522a63927b08cd64748 = $(`&lt;div id=&quot;html_78b39afb863d2522a63927b08cd64748&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4047             latitude:41.9206             pred_result:10.8287935256958             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76efd71409fc84d60ddfeb5ee1d9369a.setContent(html_78b39afb863d2522a63927b08cd64748);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f87db03425ffce24619dc2ac8932e53c.bindPopup(popup_76efd71409fc84d60ddfeb5ee1d9369a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f238a0f0ee647dc0789024398a46035b = L.circleMarker(\\n\",\n       \"                [41.9419, 126.4078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac46577cc81bf6cd6ee07141932c1356 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9b657bbad9a68f0724de004d0aa490b = $(`&lt;div id=&quot;html_e9b657bbad9a68f0724de004d0aa490b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4078             latitude:41.9419             pred_result:8.555375099182129             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac46577cc81bf6cd6ee07141932c1356.setContent(html_e9b657bbad9a68f0724de004d0aa490b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f238a0f0ee647dc0789024398a46035b.bindPopup(popup_ac46577cc81bf6cd6ee07141932c1356)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a4287df2e998ff75f32b450dd35958d3 = L.circleMarker(\\n\",\n       \"                [45.0878, 124.8292],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fd1fe83b8d1b30c902631886bbd9da5b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc68f5802f095418f21e66286bc245ec = $(`&lt;div id=&quot;html_cc68f5802f095418f21e66286bc245ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8292             latitude:45.0878             pred_result:17.96288299560547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fd1fe83b8d1b30c902631886bbd9da5b.setContent(html_cc68f5802f095418f21e66286bc245ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a4287df2e998ff75f32b450dd35958d3.bindPopup(popup_fd1fe83b8d1b30c902631886bbd9da5b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_01b6a79c0a08c46695e8337e76103a19 = L.circleMarker(\\n\",\n       \"                [45.1642, 124.8528],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b279fdfef1c3c1ef282a0b67f6e6e2b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a4ebe9073a237bfd88c23e5940a6551 = $(`&lt;div id=&quot;html_7a4ebe9073a237bfd88c23e5940a6551&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.8528             latitude:45.1642             pred_result:16.432716369628906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b279fdfef1c3c1ef282a0b67f6e6e2b.setContent(html_7a4ebe9073a237bfd88c23e5940a6551);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_01b6a79c0a08c46695e8337e76103a19.bindPopup(popup_2b279fdfef1c3c1ef282a0b67f6e6e2b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a44406def97ab559b120b997e6503cc8 = L.circleMarker(\\n\",\n       \"                [45.6289, 122.8444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91b275bd6d610e56a454737046d2ca5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e0a9b2cec188b60f46e76521821648b = $(`&lt;div id=&quot;html_2e0a9b2cec188b60f46e76521821648b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.8444             latitude:45.6289             pred_result:17.536327362060547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91b275bd6d610e56a454737046d2ca5c.setContent(html_2e0a9b2cec188b60f46e76521821648b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a44406def97ab559b120b997e6503cc8.bindPopup(popup_91b275bd6d610e56a454737046d2ca5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_27bb09dc482ba667ebb9b1daba7ec464 = L.circleMarker(\\n\",\n       \"                [45.6175, 122.8211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9d0378b632ccc3ba3e5dc5293bf301a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a455a3f1cfd65da8f4bc90f9a03ad76 = $(`&lt;div id=&quot;html_0a455a3f1cfd65da8f4bc90f9a03ad76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.8211             latitude:45.6175             pred_result:16.847822189331055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9d0378b632ccc3ba3e5dc5293bf301a.setContent(html_0a455a3f1cfd65da8f4bc90f9a03ad76);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_27bb09dc482ba667ebb9b1daba7ec464.bindPopup(popup_f9d0378b632ccc3ba3e5dc5293bf301a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a045fc1d04f3dfd77e76580ff18ebda2 = L.circleMarker(\\n\",\n       \"                [42.8939, 129.4892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_578f3882e691e9e1e60b160ae5fcb665 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d15edf10c9cb18a31926f82fc650b33f = $(`&lt;div id=&quot;html_d15edf10c9cb18a31926f82fc650b33f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.4892             latitude:42.8939             pred_result:13.765275955200195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_578f3882e691e9e1e60b160ae5fcb665.setContent(html_d15edf10c9cb18a31926f82fc650b33f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a045fc1d04f3dfd77e76580ff18ebda2.bindPopup(popup_578f3882e691e9e1e60b160ae5fcb665)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cde38f3bdf0c8e51e8535527cc12832d = L.circleMarker(\\n\",\n       \"                [42.9061, 129.5042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3388893cb7899a14e4e65af86f5face8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dccce5feed6c8c185d77232879d54ee2 = $(`&lt;div id=&quot;html_dccce5feed6c8c185d77232879d54ee2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.5042             latitude:42.9061             pred_result:13.79463005065918             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3388893cb7899a14e4e65af86f5face8.setContent(html_dccce5feed6c8c185d77232879d54ee2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cde38f3bdf0c8e51e8535527cc12832d.bindPopup(popup_3388893cb7899a14e4e65af86f5face8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_577a28f3ea1a930abc5b96633b1b6552 = L.circleMarker(\\n\",\n       \"                [42.8775, 129.3675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_006599c790362278b2f8590561042e87 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c205b4f718aca9f2d6e99a1f038cfd05 = $(`&lt;div id=&quot;html_c205b4f718aca9f2d6e99a1f038cfd05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.3675             latitude:42.8775             pred_result:10.597002029418945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_006599c790362278b2f8590561042e87.setContent(html_c205b4f718aca9f2d6e99a1f038cfd05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_577a28f3ea1a930abc5b96633b1b6552.bindPopup(popup_006599c790362278b2f8590561042e87)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e680c6cc96502cb331ca0dfaa647a226 = L.circleMarker(\\n\",\n       \"                [45.2924, 130.96200000000002],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9eb967cf8502338dfd421b1edbef6d9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ed0706eecd89db06cfef95cd6f9060c = $(`&lt;div id=&quot;html_3ed0706eecd89db06cfef95cd6f9060c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.96200000000002             latitude:45.2924             pred_result:8.47879409790039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9eb967cf8502338dfd421b1edbef6d9.setContent(html_3ed0706eecd89db06cfef95cd6f9060c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e680c6cc96502cb331ca0dfaa647a226.bindPopup(popup_c9eb967cf8502338dfd421b1edbef6d9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e302957e1ec35fc1e6b70505ffdf391e = L.circleMarker(\\n\",\n       \"                [45.305, 130.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84a89ada18cb44fae7839a9c235db153 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b83ffc8db4d2905ecec9827562545f57 = $(`&lt;div id=&quot;html_b83ffc8db4d2905ecec9827562545f57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9817             latitude:45.305             pred_result:7.414389133453369             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84a89ada18cb44fae7839a9c235db153.setContent(html_b83ffc8db4d2905ecec9827562545f57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e302957e1ec35fc1e6b70505ffdf391e.bindPopup(popup_84a89ada18cb44fae7839a9c235db153)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c383e4bd415448c11b32944dffbe4b7 = L.circleMarker(\\n\",\n       \"                [45.2948, 131.0103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67215f4da0dceb5ddabe05a480e9c435 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fffd04c6a8397ae8e0e3d3b2b16bbcc7 = $(`&lt;div id=&quot;html_fffd04c6a8397ae8e0e3d3b2b16bbcc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.0103             latitude:45.2948             pred_result:10.082213401794434             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67215f4da0dceb5ddabe05a480e9c435.setContent(html_fffd04c6a8397ae8e0e3d3b2b16bbcc7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c383e4bd415448c11b32944dffbe4b7.bindPopup(popup_67215f4da0dceb5ddabe05a480e9c435)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e8f35e4f32fcd72c2e252c00f18359c = L.circleMarker(\\n\",\n       \"                [45.2978, 130.9298],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce775fa5f7dbaefa9abff5521538c6c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_566febfe7d53e9a02d1e3491b11502ec = $(`&lt;div id=&quot;html_566febfe7d53e9a02d1e3491b11502ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9298             latitude:45.2978             pred_result:9.767586708068848             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce775fa5f7dbaefa9abff5521538c6c4.setContent(html_566febfe7d53e9a02d1e3491b11502ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e8f35e4f32fcd72c2e252c00f18359c.bindPopup(popup_ce775fa5f7dbaefa9abff5521538c6c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2dfd1ad8de07c39cd2e6469a09da530 = L.circleMarker(\\n\",\n       \"                [47.3349, 130.2659],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a19c50a69d13971b3d5038b8216e5e0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14f210586493dac73143ac241abc4013 = $(`&lt;div id=&quot;html_14f210586493dac73143ac241abc4013&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.2659             latitude:47.3349             pred_result:13.623744010925293             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a19c50a69d13971b3d5038b8216e5e0a.setContent(html_14f210586493dac73143ac241abc4013);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2dfd1ad8de07c39cd2e6469a09da530.bindPopup(popup_a19c50a69d13971b3d5038b8216e5e0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af88699fd4c03fe4fec6f7bad5d95f53 = L.circleMarker(\\n\",\n       \"                [47.2753, 130.261],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a947922b8d4aa119a63cc4b9b7006535 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9493e288a2f5162658b0ffaec496fe61 = $(`&lt;div id=&quot;html_9493e288a2f5162658b0ffaec496fe61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.261             latitude:47.2753             pred_result:13.692645072937012             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a947922b8d4aa119a63cc4b9b7006535.setContent(html_9493e288a2f5162658b0ffaec496fe61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af88699fd4c03fe4fec6f7bad5d95f53.bindPopup(popup_a947922b8d4aa119a63cc4b9b7006535)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4e6a9ad5674cd78dac8a4e0b1053685e = L.circleMarker(\\n\",\n       \"                [47.3489, 130.3172],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_08059710445123f6720652283ae7bbb4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d15bf76aee136c262b084d86637e70c4 = $(`&lt;div id=&quot;html_d15bf76aee136c262b084d86637e70c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3172             latitude:47.3489             pred_result:11.492910385131836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_08059710445123f6720652283ae7bbb4.setContent(html_d15bf76aee136c262b084d86637e70c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4e6a9ad5674cd78dac8a4e0b1053685e.bindPopup(popup_08059710445123f6720652283ae7bbb4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79a1d6d7a175e0b645ec061d8a055949 = L.circleMarker(\\n\",\n       \"                [47.3382, 130.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad306164a43f658c2d44f8204d1693e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_248fd5cede77a0d1b6440c8f016b6806 = $(`&lt;div id=&quot;html_248fd5cede77a0d1b6440c8f016b6806&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.1097             latitude:47.3382             pred_result:9.50897216796875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad306164a43f658c2d44f8204d1693e7.setContent(html_248fd5cede77a0d1b6440c8f016b6806);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79a1d6d7a175e0b645ec061d8a055949.bindPopup(popup_ad306164a43f658c2d44f8204d1693e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dab7293532bee74981c8cd66ef783bda = L.circleMarker(\\n\",\n       \"                [46.6572, 131.1638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab88cc7d0bf50c25d0a87b41a3158276 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff2d58b1959e5dbac4cd508a9a266549 = $(`&lt;div id=&quot;html_ff2d58b1959e5dbac4cd508a9a266549&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1638             latitude:46.6572             pred_result:7.042783260345459             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab88cc7d0bf50c25d0a87b41a3158276.setContent(html_ff2d58b1959e5dbac4cd508a9a266549);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dab7293532bee74981c8cd66ef783bda.bindPopup(popup_ab88cc7d0bf50c25d0a87b41a3158276)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75cab9504e792e63e0c5730d56b53f2d = L.circleMarker(\\n\",\n       \"                [46.619, 131.1651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d206be4889e2c320a4f8e5dea6a2b5b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_976140d8fe08537c171dbd267b586e65 = $(`&lt;div id=&quot;html_976140d8fe08537c171dbd267b586e65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1651             latitude:46.619             pred_result:14.851896286010742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d206be4889e2c320a4f8e5dea6a2b5b0.setContent(html_976140d8fe08537c171dbd267b586e65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75cab9504e792e63e0c5730d56b53f2d.bindPopup(popup_d206be4889e2c320a4f8e5dea6a2b5b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b56d4940751f666602565394fa70c31 = L.circleMarker(\\n\",\n       \"                [46.6462, 131.1516],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf5b98370960ac951284ffb97d5d90a8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d075c4faa5ff8647448d2a69363eb3c8 = $(`&lt;div id=&quot;html_d075c4faa5ff8647448d2a69363eb3c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1516             latitude:46.6462             pred_result:8.844917297363281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf5b98370960ac951284ffb97d5d90a8.setContent(html_d075c4faa5ff8647448d2a69363eb3c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b56d4940751f666602565394fa70c31.bindPopup(popup_cf5b98370960ac951284ffb97d5d90a8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4cc2b354da648e9401a1549e0b7f591 = L.circleMarker(\\n\",\n       \"                [46.5888, 131.1572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_350fcf630dfbe68d0dcee0a19c46e502 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14c432c296752a7413dfb1bf8b62fd65 = $(`&lt;div id=&quot;html_14c432c296752a7413dfb1bf8b62fd65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.1572             latitude:46.5888             pred_result:9.193836212158203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_350fcf630dfbe68d0dcee0a19c46e502.setContent(html_14c432c296752a7413dfb1bf8b62fd65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4cc2b354da648e9401a1549e0b7f591.bindPopup(popup_350fcf630dfbe68d0dcee0a19c46e502)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_75acbeb5989b41199f624d7571a93d20 = L.circleMarker(\\n\",\n       \"                [47.7222, 128.8736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0f072cf432377a8b57e54c2745c26c31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7c906b7daf1e1cbb3e43d305a88bf74 = $(`&lt;div id=&quot;html_a7c906b7daf1e1cbb3e43d305a88bf74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:128.8736             latitude:47.7222             pred_result:4.257078170776367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0f072cf432377a8b57e54c2745c26c31.setContent(html_a7c906b7daf1e1cbb3e43d305a88bf74);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_75acbeb5989b41199f624d7571a93d20.bindPopup(popup_0f072cf432377a8b57e54c2745c26c31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_15bee8af5796c0d74cab84723f568648 = L.circleMarker(\\n\",\n       \"                [46.8025, 130.2719],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6dfa44029352172e5c0188eb1d0d63ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ea80f3aae488abdd9d2398d095959380 = $(`&lt;div id=&quot;html_ea80f3aae488abdd9d2398d095959380&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.2719             latitude:46.8025             pred_result:12.221986770629883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6dfa44029352172e5c0188eb1d0d63ce.setContent(html_ea80f3aae488abdd9d2398d095959380);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_15bee8af5796c0d74cab84723f568648.bindPopup(popup_6dfa44029352172e5c0188eb1d0d63ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0fd5e90f96e482abd81aa59b5e2506f2 = L.circleMarker(\\n\",\n       \"                [46.7975, 130.3258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63bd32a8b5c42d556b533d18bfdcec9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76bfbfd1f109b3d494b4bc22c691297e = $(`&lt;div id=&quot;html_76bfbfd1f109b3d494b4bc22c691297e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3258             latitude:46.7975             pred_result:10.282381057739258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63bd32a8b5c42d556b533d18bfdcec9e.setContent(html_76bfbfd1f109b3d494b4bc22c691297e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0fd5e90f96e482abd81aa59b5e2506f2.bindPopup(popup_63bd32a8b5c42d556b533d18bfdcec9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51abd2f1714956b113cc6bf93a231613 = L.circleMarker(\\n\",\n       \"                [46.8032, 130.3648],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a43b595cf9cd344667325c2a5f2eb4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d97d2cf0f09d70dc1fc0fed81e8896cd = $(`&lt;div id=&quot;html_d97d2cf0f09d70dc1fc0fed81e8896cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3648             latitude:46.8032             pred_result:12.556568145751953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a43b595cf9cd344667325c2a5f2eb4b.setContent(html_d97d2cf0f09d70dc1fc0fed81e8896cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51abd2f1714956b113cc6bf93a231613.bindPopup(popup_3a43b595cf9cd344667325c2a5f2eb4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2972f91d8ca3fab4f7e89369ad2ddcb5 = L.circleMarker(\\n\",\n       \"                [46.7588, 130.3794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f930b4979a2ca389060f55417d4618f1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12240a9b9826978e1f5e9e7e50e90b5f = $(`&lt;div id=&quot;html_12240a9b9826978e1f5e9e7e50e90b5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.3794             latitude:46.7588             pred_result:10.882652282714844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f930b4979a2ca389060f55417d4618f1.setContent(html_12240a9b9826978e1f5e9e7e50e90b5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2972f91d8ca3fab4f7e89369ad2ddcb5.bindPopup(popup_f930b4979a2ca389060f55417d4618f1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f4d4c12d1fcbc7d04bfd491dd3f6302d = L.circleMarker(\\n\",\n       \"                [45.7677, 131.0032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7feaf0697a5f17c0a8f4fa6884508d9f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2100b3636cf38ab29852199705ef149a = $(`&lt;div id=&quot;html_2100b3636cf38ab29852199705ef149a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:131.0032             latitude:45.7677             pred_result:9.94110107421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7feaf0697a5f17c0a8f4fa6884508d9f.setContent(html_2100b3636cf38ab29852199705ef149a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f4d4c12d1fcbc7d04bfd491dd3f6302d.bindPopup(popup_7feaf0697a5f17c0a8f4fa6884508d9f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd430c2d0a40c92bb244f6d1ffcfa2cd = L.circleMarker(\\n\",\n       \"                [45.8194, 130.8625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8448c5be2d00ed684d6e9964daffcc2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3166ebec1871541fe5b9e9d12fd9084c = $(`&lt;div id=&quot;html_3166ebec1871541fe5b9e9d12fd9084c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.8625             latitude:45.8194             pred_result:5.513965606689453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8448c5be2d00ed684d6e9964daffcc2.setContent(html_3166ebec1871541fe5b9e9d12fd9084c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd430c2d0a40c92bb244f6d1ffcfa2cd.bindPopup(popup_d8448c5be2d00ed684d6e9964daffcc2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_666677889a47e20cdba642ec75e4a5af = L.circleMarker(\\n\",\n       \"                [45.8309, 130.9467],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0014d7&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0014d7&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a09e5a8606a36750697fc0d7b2718ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5a2f9e2b32bb56bf517ddba5c2d1b5ba = $(`&lt;div id=&quot;html_5a2f9e2b32bb56bf517ddba5c2d1b5ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:130.9467             latitude:45.8309             pred_result:5.3162150382995605             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a09e5a8606a36750697fc0d7b2718ac.setContent(html_5a2f9e2b32bb56bf517ddba5c2d1b5ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_666677889a47e20cdba642ec75e4a5af.bindPopup(popup_5a09e5a8606a36750697fc0d7b2718ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d44c0b8f980e9cff0142eef8e09d5347 = L.circleMarker(\\n\",\n       \"                [46.6384, 126.9934],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f60a2b05fdd2e57899aacc06a804d67a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7025961f29596090e063e248b371258b = $(`&lt;div id=&quot;html_7025961f29596090e063e248b371258b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.9934             latitude:46.6384             pred_result:10.97691535949707             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f60a2b05fdd2e57899aacc06a804d67a.setContent(html_7025961f29596090e063e248b371258b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d44c0b8f980e9cff0142eef8e09d5347.bindPopup(popup_f60a2b05fdd2e57899aacc06a804d67a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e887f437d57e4d21b18bf97d894c1f7 = L.circleMarker(\\n\",\n       \"                [46.6527, 126.9636],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4eed1d821a3db32dac7f39a5fe3d37f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f022c495d2f5f7786ba9cbb1787482e2 = $(`&lt;div id=&quot;html_f022c495d2f5f7786ba9cbb1787482e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.9636             latitude:46.6527             pred_result:13.623065948486328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4eed1d821a3db32dac7f39a5fe3d37f.setContent(html_f022c495d2f5f7786ba9cbb1787482e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e887f437d57e4d21b18bf97d894c1f7.bindPopup(popup_c4eed1d821a3db32dac7f39a5fe3d37f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_314cb6573cae9bfd6b4ab6d4a81d724a = L.circleMarker(\\n\",\n       \"                [50.4269, 124.1186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfa33c29f2adec91a45470d33c7707f0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d1d5e84508f012415e8984c21303862 = $(`&lt;div id=&quot;html_2d1d5e84508f012415e8984c21303862&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.1186             latitude:50.4269             pred_result:11.921464920043945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfa33c29f2adec91a45470d33c7707f0.setContent(html_2d1d5e84508f012415e8984c21303862);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_314cb6573cae9bfd6b4ab6d4a81d724a.bindPopup(popup_bfa33c29f2adec91a45470d33c7707f0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e69aa2df4f65b8ccecdda5d4c4a863db = L.circleMarker(\\n\",\n       \"                [50.4217, 124.1303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_868593f9adac8c8af629af109bb964c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ced730cabd14b93ac41c2816d1c655db = $(`&lt;div id=&quot;html_ced730cabd14b93ac41c2816d1c655db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.1303             latitude:50.4217             pred_result:12.587067604064941             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_868593f9adac8c8af629af109bb964c7.setContent(html_ced730cabd14b93ac41c2816d1c655db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e69aa2df4f65b8ccecdda5d4c4a863db.bindPopup(popup_868593f9adac8c8af629af109bb964c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_632de12a7109862d0b600069cc97d06e = L.circleMarker(\\n\",\n       \"                [32.939, 117.3961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8526bec1cab983a48f830332182e08c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0ab60f77b09bcb346dc13c17f689ffa = $(`&lt;div id=&quot;html_a0ab60f77b09bcb346dc13c17f689ffa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3961             latitude:32.939             pred_result:40.18380355834961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8526bec1cab983a48f830332182e08c8.setContent(html_a0ab60f77b09bcb346dc13c17f689ffa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_632de12a7109862d0b600069cc97d06e.bindPopup(popup_8526bec1cab983a48f830332182e08c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f54d94f32f6df497b2bfd2a64b9d7abd = L.circleMarker(\\n\",\n       \"                [32.9444, 117.3575],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_221655c77c1ed170d06f2976cd19d944 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d1a1c49a7c011704f8f7395897d3538 = $(`&lt;div id=&quot;html_8d1a1c49a7c011704f8f7395897d3538&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3575             latitude:32.9444             pred_result:40.740150451660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_221655c77c1ed170d06f2976cd19d944.setContent(html_8d1a1c49a7c011704f8f7395897d3538);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f54d94f32f6df497b2bfd2a64b9d7abd.bindPopup(popup_221655c77c1ed170d06f2976cd19d944)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e7373cb9e179137283d4258d3ae7b090 = L.circleMarker(\\n\",\n       \"                [32.935, 117.3086],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5db0c059868ebbc76aec26e2bfbb689b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f829f3b2abbc99153e1d01d119ee659 = $(`&lt;div id=&quot;html_9f829f3b2abbc99153e1d01d119ee659&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3086             latitude:32.935             pred_result:41.03279495239258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5db0c059868ebbc76aec26e2bfbb689b.setContent(html_9f829f3b2abbc99153e1d01d119ee659);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e7373cb9e179137283d4258d3ae7b090.bindPopup(popup_5db0c059868ebbc76aec26e2bfbb689b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2240aa02ba5b2f17f9bc9a61a3b457e = L.circleMarker(\\n\",\n       \"                [32.8913, 117.4186],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75c2adce94582c5c1cf6be6951661dde = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ab1b294e8ad1bc08a864e83cacd40a4e = $(`&lt;div id=&quot;html_ab1b294e8ad1bc08a864e83cacd40a4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4186             latitude:32.8913             pred_result:39.960693359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75c2adce94582c5c1cf6be6951661dde.setContent(html_ab1b294e8ad1bc08a864e83cacd40a4e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2240aa02ba5b2f17f9bc9a61a3b457e.bindPopup(popup_75c2adce94582c5c1cf6be6951661dde)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0f2726442134fbe8635fbc9ffa121bcf = L.circleMarker(\\n\",\n       \"                [32.9673, 117.3536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb1b1c58a8cc062557e1c4c5fa98b0da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_34baea955197bcab6e2a980118673f1d = $(`&lt;div id=&quot;html_34baea955197bcab6e2a980118673f1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3536             latitude:32.9673             pred_result:40.07583236694336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb1b1c58a8cc062557e1c4c5fa98b0da.setContent(html_34baea955197bcab6e2a980118673f1d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0f2726442134fbe8635fbc9ffa121bcf.bindPopup(popup_cb1b1c58a8cc062557e1c4c5fa98b0da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16aad4a70d971f07c967a444b8872308 = L.circleMarker(\\n\",\n       \"                [32.8985, 117.3065],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c962108a3eea3c6c6ce78600a1ca600e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc0eca7980b163754b2b9477735c3fce = $(`&lt;div id=&quot;html_dc0eca7980b163754b2b9477735c3fce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3065             latitude:32.8985             pred_result:40.768619537353516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c962108a3eea3c6c6ce78600a1ca600e.setContent(html_dc0eca7980b163754b2b9477735c3fce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16aad4a70d971f07c967a444b8872308.bindPopup(popup_c962108a3eea3c6c6ce78600a1ca600e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f1864171f8102094877358e04f4b18b9 = L.circleMarker(\\n\",\n       \"                [32.7639, 116.8028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cdb28114e14579440c43e52ab50b629f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01a1d7aed75aea71263ce466254b2385 = $(`&lt;div id=&quot;html_01a1d7aed75aea71263ce466254b2385&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8028             latitude:32.7639             pred_result:42.43190383911133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cdb28114e14579440c43e52ab50b629f.setContent(html_01a1d7aed75aea71263ce466254b2385);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f1864171f8102094877358e04f4b18b9.bindPopup(popup_cdb28114e14579440c43e52ab50b629f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51da141d79812c70e87b50b87eac283a = L.circleMarker(\\n\",\n       \"                [32.645, 117.0083],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_616f5f2ffd836e7398286ce9ec92b6b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aa8e957d761436b40cf81fea5caea888 = $(`&lt;div id=&quot;html_aa8e957d761436b40cf81fea5caea888&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0083             latitude:32.645             pred_result:40.32856750488281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_616f5f2ffd836e7398286ce9ec92b6b3.setContent(html_aa8e957d761436b40cf81fea5caea888);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51da141d79812c70e87b50b87eac283a.bindPopup(popup_616f5f2ffd836e7398286ce9ec92b6b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56c8498908ade18ff5d995bdc881118e = L.circleMarker(\\n\",\n       \"                [32.6028, 116.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a94b016e2eea1514d60acbd173558b9e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e964e74fb20b432d12a596d6dd777cdd = $(`&lt;div id=&quot;html_e964e74fb20b432d12a596d6dd777cdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8556             latitude:32.6028             pred_result:40.173702239990234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a94b016e2eea1514d60acbd173558b9e.setContent(html_e964e74fb20b432d12a596d6dd777cdd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56c8498908ade18ff5d995bdc881118e.bindPopup(popup_a94b016e2eea1514d60acbd173558b9e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a9bc7b60892692cab03a63e7f9f3150 = L.circleMarker(\\n\",\n       \"                [32.6319, 116.8306],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9cddec37f3eb9108b9a72d5ac61404c3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b089728dab32e0352a472bf88aad56a1 = $(`&lt;div id=&quot;html_b089728dab32e0352a472bf88aad56a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8306             latitude:32.6319             pred_result:40.69218063354492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9cddec37f3eb9108b9a72d5ac61404c3.setContent(html_b089728dab32e0352a472bf88aad56a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a9bc7b60892692cab03a63e7f9f3150.bindPopup(popup_9cddec37f3eb9108b9a72d5ac61404c3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6fbc0a2be943cd7377abbde1336a2f57 = L.circleMarker(\\n\",\n       \"                [32.625, 116.7039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_391c9edd017a60191060877e5b630b60 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_759427d63bb3f3b8c1d37fe8ccdf4570 = $(`&lt;div id=&quot;html_759427d63bb3f3b8c1d37fe8ccdf4570&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7039             latitude:32.625             pred_result:40.37703323364258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_391c9edd017a60191060877e5b630b60.setContent(html_759427d63bb3f3b8c1d37fe8ccdf4570);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6fbc0a2be943cd7377abbde1336a2f57.bindPopup(popup_391c9edd017a60191060877e5b630b60)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14c2615084cd9c6143b9f00290222623 = L.circleMarker(\\n\",\n       \"                [33.975, 116.8008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a6cc9e00bedfc3ef92da9db268eb3c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3fc7e6d1fcfe39e2996ee0a2cda56dcc = $(`&lt;div id=&quot;html_3fc7e6d1fcfe39e2996ee0a2cda56dcc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8008             latitude:33.975             pred_result:45.831886291503906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a6cc9e00bedfc3ef92da9db268eb3c8.setContent(html_3fc7e6d1fcfe39e2996ee0a2cda56dcc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14c2615084cd9c6143b9f00290222623.bindPopup(popup_4a6cc9e00bedfc3ef92da9db268eb3c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_721bfe0b66b21c50b6b6e650bc4018b2 = L.circleMarker(\\n\",\n       \"                [33.8997, 116.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c88baffe020adc60223e3a21f011de05 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_017cba2b2e1292f7820911e1627c9099 = $(`&lt;div id=&quot;html_017cba2b2e1292f7820911e1627c9099&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8067             latitude:33.8997             pred_result:44.41767883300781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c88baffe020adc60223e3a21f011de05.setContent(html_017cba2b2e1292f7820911e1627c9099);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_721bfe0b66b21c50b6b6e650bc4018b2.bindPopup(popup_c88baffe020adc60223e3a21f011de05)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5eb7b463bda256477149fa6e77367118 = L.circleMarker(\\n\",\n       \"                [33.9461, 116.7844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_956aa8aa9bf4af88e552d934a92a5553 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8fd47545bffb501642cf7a69fbd514c5 = $(`&lt;div id=&quot;html_8fd47545bffb501642cf7a69fbd514c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7844             latitude:33.9461             pred_result:45.29046630859375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_956aa8aa9bf4af88e552d934a92a5553.setContent(html_8fd47545bffb501642cf7a69fbd514c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5eb7b463bda256477149fa6e77367118.bindPopup(popup_956aa8aa9bf4af88e552d934a92a5553)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c353916c032bfdbf882f6bbfa02f02ad = L.circleMarker(\\n\",\n       \"                [30.9414, 117.8178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da2fde9d37b536b90b0055d50f670147 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49dff79b4811e1da4608cc49f219fb87 = $(`&lt;div id=&quot;html_49dff79b4811e1da4608cc49f219fb87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8178             latitude:30.9414             pred_result:51.06930160522461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da2fde9d37b536b90b0055d50f670147.setContent(html_49dff79b4811e1da4608cc49f219fb87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c353916c032bfdbf882f6bbfa02f02ad.bindPopup(popup_da2fde9d37b536b90b0055d50f670147)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c90c7f7f254cc289c9570ea48813ca4e = L.circleMarker(\\n\",\n       \"                [30.9222, 117.8078],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12307fd9cd6129fb6a3c5ed2d45134b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3d4329554e64d9e76f2b15abbfee30f8 = $(`&lt;div id=&quot;html_3d4329554e64d9e76f2b15abbfee30f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8078             latitude:30.9222             pred_result:50.06572723388672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12307fd9cd6129fb6a3c5ed2d45134b0.setContent(html_3d4329554e64d9e76f2b15abbfee30f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c90c7f7f254cc289c9570ea48813ca4e.bindPopup(popup_12307fd9cd6129fb6a3c5ed2d45134b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b5b88d1d3ea41ad77c5571222da55871 = L.circleMarker(\\n\",\n       \"                [30.9414, 117.7806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c095964fbd52bfb6316f66a667bfdc9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6200e6d143ec696474eddc2d95b2a28f = $(`&lt;div id=&quot;html_6200e6d143ec696474eddc2d95b2a28f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7806             latitude:30.9414             pred_result:50.555198669433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c095964fbd52bfb6316f66a667bfdc9c.setContent(html_6200e6d143ec696474eddc2d95b2a28f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b5b88d1d3ea41ad77c5571222da55871.bindPopup(popup_c095964fbd52bfb6316f66a667bfdc9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b6949ec006d5bab54842f1ba7e6b8ed = L.circleMarker(\\n\",\n       \"                [30.8811, 117.7442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_065347fa5de2ba1734699aba6e1db36c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2bb37adf80048d548af9b8620168bff8 = $(`&lt;div id=&quot;html_2bb37adf80048d548af9b8620168bff8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7442             latitude:30.8811             pred_result:49.476497650146484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_065347fa5de2ba1734699aba6e1db36c.setContent(html_2bb37adf80048d548af9b8620168bff8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b6949ec006d5bab54842f1ba7e6b8ed.bindPopup(popup_065347fa5de2ba1734699aba6e1db36c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f5bc451f5b5f20aa683f430c200259a = L.circleMarker(\\n\",\n       \"                [30.9219, 117.8561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a767aabdafb48a880a4262abf3224c4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e98f9eb4f42d7e0f75ad4cbb0252ad89 = $(`&lt;div id=&quot;html_e98f9eb4f42d7e0f75ad4cbb0252ad89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8561             latitude:30.9219             pred_result:48.94270706176758             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a767aabdafb48a880a4262abf3224c4.setContent(html_e98f9eb4f42d7e0f75ad4cbb0252ad89);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f5bc451f5b5f20aa683f430c200259a.bindPopup(popup_3a767aabdafb48a880a4262abf3224c4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6cce73e70a98f0373129d7b5bbcef3a8 = L.circleMarker(\\n\",\n       \"                [30.9697, 117.8472],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ecf0676a74cc46d685c1bae18df4ddac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1c18369ce2efa640542264880a2f893 = $(`&lt;div id=&quot;html_d1c18369ce2efa640542264880a2f893&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.8472             latitude:30.9697             pred_result:50.80727767944336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ecf0676a74cc46d685c1bae18df4ddac.setContent(html_d1c18369ce2efa640542264880a2f893);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6cce73e70a98f0373129d7b5bbcef3a8.bindPopup(popup_ecf0676a74cc46d685c1bae18df4ddac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2d66e59610156e665063ff4a90f268b7 = L.circleMarker(\\n\",\n       \"                [30.5103, 117.0549],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_587bba8f65b26e71d585c85c2d97741e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_17067d5d21f64f048fe92b095b25e900 = $(`&lt;div id=&quot;html_17067d5d21f64f048fe92b095b25e900&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0549             latitude:30.5103             pred_result:47.490543365478516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_587bba8f65b26e71d585c85c2d97741e.setContent(html_17067d5d21f64f048fe92b095b25e900);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2d66e59610156e665063ff4a90f268b7.bindPopup(popup_587bba8f65b26e71d585c85c2d97741e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b763fe8e19e5b0ec63765da3fff391b2 = L.circleMarker(\\n\",\n       \"                [30.51197222, 117.0331111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_74610eb56ea647c684c3171a5a086d0c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ba1fd10d584b001c31cdf70bd671808 = $(`&lt;div id=&quot;html_5ba1fd10d584b001c31cdf70bd671808&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0331111             latitude:30.51197222             pred_result:47.151004791259766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_74610eb56ea647c684c3171a5a086d0c.setContent(html_5ba1fd10d584b001c31cdf70bd671808);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b763fe8e19e5b0ec63765da3fff391b2.bindPopup(popup_74610eb56ea647c684c3171a5a086d0c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0598233bbc49926d1018a8e9abca19e = L.circleMarker(\\n\",\n       \"                [30.5489, 117.0486],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36703f7af858b6762e6165a20c919453 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70544233ed2417f826df5e2d21325176 = $(`&lt;div id=&quot;html_70544233ed2417f826df5e2d21325176&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0486             latitude:30.5489             pred_result:47.96681213378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36703f7af858b6762e6165a20c919453.setContent(html_70544233ed2417f826df5e2d21325176);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0598233bbc49926d1018a8e9abca19e.bindPopup(popup_36703f7af858b6762e6165a20c919453)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b107ecea15bb73f322a56e686e568dfa = L.circleMarker(\\n\",\n       \"                [30.6145, 116.9894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3bcf8b3d228fc7bf5978b2ac7eee4729 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9eba4e151344e3b3b12668a0d60d67d = $(`&lt;div id=&quot;html_a9eba4e151344e3b3b12668a0d60d67d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9894             latitude:30.6145             pred_result:47.57652282714844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3bcf8b3d228fc7bf5978b2ac7eee4729.setContent(html_a9eba4e151344e3b3b12668a0d60d67d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b107ecea15bb73f322a56e686e568dfa.bindPopup(popup_3bcf8b3d228fc7bf5978b2ac7eee4729)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6104a48d11623c8844d3e6fb9c4cf571 = L.circleMarker(\\n\",\n       \"                [29.7128, 118.3057],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e67096fa4e7f92fceda993c009b776cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_de81bd88d6faa842aa081af069b9c2bb = $(`&lt;div id=&quot;html_de81bd88d6faa842aa081af069b9c2bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3057             latitude:29.7128             pred_result:32.38177490234375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e67096fa4e7f92fceda993c009b776cd.setContent(html_de81bd88d6faa842aa081af069b9c2bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6104a48d11623c8844d3e6fb9c4cf571.bindPopup(popup_e67096fa4e7f92fceda993c009b776cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b191c5d0fc5d824bb1203e381e3c0922 = L.circleMarker(\\n\",\n       \"                [29.7207, 118.3236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70fe693138464e363f776fd18f40d637 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_81a7c8b17a6c62f9f5c78e50ff777c03 = $(`&lt;div id=&quot;html_81a7c8b17a6c62f9f5c78e50ff777c03&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3236             latitude:29.7207             pred_result:32.06765365600586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70fe693138464e363f776fd18f40d637.setContent(html_81a7c8b17a6c62f9f5c78e50ff777c03);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b191c5d0fc5d824bb1203e381e3c0922.bindPopup(popup_70fe693138464e363f776fd18f40d637)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b1ed8d7301901f65abac93e31a383c9 = L.circleMarker(\\n\",\n       \"                [30.2756, 118.1371],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69ad3ec72c54027d1cf1961c02c0807c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c9aa05049e4612d655f49b4dfee027d = $(`&lt;div id=&quot;html_3c9aa05049e4612d655f49b4dfee027d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1371             latitude:30.2756             pred_result:31.940120697021484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69ad3ec72c54027d1cf1961c02c0807c.setContent(html_3c9aa05049e4612d655f49b4dfee027d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b1ed8d7301901f65abac93e31a383c9.bindPopup(popup_69ad3ec72c54027d1cf1961c02c0807c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71c2f2e20bba26fd50bc92bca66c2234 = L.circleMarker(\\n\",\n       \"                [32.3153, 118.3094],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2a8eb55925bc2043841e2bee15b00de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98f3db7bcd7c646e9de8fcb541f77086 = $(`&lt;div id=&quot;html_98f3db7bcd7c646e9de8fcb541f77086&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3094             latitude:32.3153             pred_result:35.13057327270508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2a8eb55925bc2043841e2bee15b00de.setContent(html_98f3db7bcd7c646e9de8fcb541f77086);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71c2f2e20bba26fd50bc92bca66c2234.bindPopup(popup_b2a8eb55925bc2043841e2bee15b00de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a76e05a85e0762d8926048fe4d344781 = L.circleMarker(\\n\",\n       \"                [32.2786, 118.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cbb818813340e005999348ff9bfd39bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2b34d2fe6d29e103dfe22e1e995ea07e = $(`&lt;div id=&quot;html_2b34d2fe6d29e103dfe22e1e995ea07e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3244             latitude:32.2786             pred_result:37.129486083984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cbb818813340e005999348ff9bfd39bb.setContent(html_2b34d2fe6d29e103dfe22e1e995ea07e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a76e05a85e0762d8926048fe4d344781.bindPopup(popup_cbb818813340e005999348ff9bfd39bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba2ee7e73b131c56e57e3cc3dadcc5fe = L.circleMarker(\\n\",\n       \"                [32.3061, 118.3158],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4b82765d10c7f93241bf81997400b125 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a29f333365a125b1d7bba16c70c89f8 = $(`&lt;div id=&quot;html_3a29f333365a125b1d7bba16c70c89f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3158             latitude:32.3061             pred_result:36.881439208984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4b82765d10c7f93241bf81997400b125.setContent(html_3a29f333365a125b1d7bba16c70c89f8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba2ee7e73b131c56e57e3cc3dadcc5fe.bindPopup(popup_4b82765d10c7f93241bf81997400b125)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d61f422abd78f60aeb2845bfb516b11 = L.circleMarker(\\n\",\n       \"                [32.8928, 115.8275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88664b493455f76510c52a29b2d93787 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d323b1f9ee8dd2a0bfb114c246525a97 = $(`&lt;div id=&quot;html_d323b1f9ee8dd2a0bfb114c246525a97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8275             latitude:32.8928             pred_result:45.60693359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88664b493455f76510c52a29b2d93787.setContent(html_d323b1f9ee8dd2a0bfb114c246525a97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d61f422abd78f60aeb2845bfb516b11.bindPopup(popup_88664b493455f76510c52a29b2d93787)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_299d7cbd70b219de78aa0860e4478dcb = L.circleMarker(\\n\",\n       \"                [32.8603, 115.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3b86c2934d9385aa1017296760d5551 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76a87eaa3d4f5c93765394b119470c26 = $(`&lt;div id=&quot;html_76a87eaa3d4f5c93765394b119470c26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8556             latitude:32.8603             pred_result:44.82467269897461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3b86c2934d9385aa1017296760d5551.setContent(html_76a87eaa3d4f5c93765394b119470c26);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_299d7cbd70b219de78aa0860e4478dcb.bindPopup(popup_d3b86c2934d9385aa1017296760d5551)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbe52c70261e65097c9d1b1a1afcec29 = L.circleMarker(\\n\",\n       \"                [33.6481, 116.9765],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_713a57534932a64e8e6c481ccc536d00 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c4e6e46d5eb705a8c672f31bd1af12f = $(`&lt;div id=&quot;html_4c4e6e46d5eb705a8c672f31bd1af12f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9765             latitude:33.6481             pred_result:43.25209045410156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_713a57534932a64e8e6c481ccc536d00.setContent(html_4c4e6e46d5eb705a8c672f31bd1af12f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbe52c70261e65097c9d1b1a1afcec29.bindPopup(popup_713a57534932a64e8e6c481ccc536d00)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_574fa1244d619711c14b0afc36d3750c = L.circleMarker(\\n\",\n       \"                [33.6284, 116.9677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_068025e7f2014cc230a6055d7a290b8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9fd9d38eacc122687495ec98d020baf0 = $(`&lt;div id=&quot;html_9fd9d38eacc122687495ec98d020baf0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9677             latitude:33.6284             pred_result:43.501461029052734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_068025e7f2014cc230a6055d7a290b8e.setContent(html_9fd9d38eacc122687495ec98d020baf0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_574fa1244d619711c14b0afc36d3750c.bindPopup(popup_068025e7f2014cc230a6055d7a290b8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8936c62e4acdae8f86d64b0b8eea81be = L.circleMarker(\\n\",\n       \"                [33.63063889, 116.989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ac476a324113cfb09e2e84fc93202e97 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ac5cc64eb0cc07577c052beeb6bb0c8 = $(`&lt;div id=&quot;html_1ac5cc64eb0cc07577c052beeb6bb0c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.989             latitude:33.63063889             pred_result:43.343624114990234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ac476a324113cfb09e2e84fc93202e97.setContent(html_1ac5cc64eb0cc07577c052beeb6bb0c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8936c62e4acdae8f86d64b0b8eea81be.bindPopup(popup_ac476a324113cfb09e2e84fc93202e97)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90a78a04092ca058315275b1ac55234b = L.circleMarker(\\n\",\n       \"                [31.7371, 116.508],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da84414061021c2f1d0799c8f1d4915e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f5fb97e5598ebb56c21861d7318e593b = $(`&lt;div id=&quot;html_f5fb97e5598ebb56c21861d7318e593b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.508             latitude:31.7371             pred_result:46.70756912231445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da84414061021c2f1d0799c8f1d4915e.setContent(html_f5fb97e5598ebb56c21861d7318e593b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90a78a04092ca058315275b1ac55234b.bindPopup(popup_da84414061021c2f1d0799c8f1d4915e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab148d5234c56afb13e08dbd92fe7f5d = L.circleMarker(\\n\",\n       \"                [31.7618, 116.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_48861746d401885844a0016e8de4158b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c99de5b5c93e5ba1a503fc7ec2c29792 = $(`&lt;div id=&quot;html_c99de5b5c93e5ba1a503fc7ec2c29792&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.478             latitude:31.7618             pred_result:47.58753967285156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_48861746d401885844a0016e8de4158b.setContent(html_c99de5b5c93e5ba1a503fc7ec2c29792);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab148d5234c56afb13e08dbd92fe7f5d.bindPopup(popup_48861746d401885844a0016e8de4158b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f50adfc0889ff5667411bb94260ae831 = L.circleMarker(\\n\",\n       \"                [31.7797, 116.5068],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6be826397b4137bacc83e57ab364745 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37074269b732c0229df44980b173133b = $(`&lt;div id=&quot;html_37074269b732c0229df44980b173133b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5068             latitude:31.7797             pred_result:45.37704849243164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6be826397b4137bacc83e57ab364745.setContent(html_37074269b732c0229df44980b173133b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f50adfc0889ff5667411bb94260ae831.bindPopup(popup_b6be826397b4137bacc83e57ab364745)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e29721e3b05dd85b761683e7f465259e = L.circleMarker(\\n\",\n       \"                [31.7712, 116.5661],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c17ff882b9ddc5d1b742855e2aaa8643 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18361f221943cd33e212ae3b938d8eab = $(`&lt;div id=&quot;html_18361f221943cd33e212ae3b938d8eab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.5661             latitude:31.7712             pred_result:45.75535583496094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c17ff882b9ddc5d1b742855e2aaa8643.setContent(html_18361f221943cd33e212ae3b938d8eab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e29721e3b05dd85b761683e7f465259e.bindPopup(popup_c17ff882b9ddc5d1b742855e2aaa8643)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_06c4e5d6a7534fcbfa5ab36751006160 = L.circleMarker(\\n\",\n       \"                [33.8399, 115.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a6817bef974834c08ec446334ba810c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c904954ec01010bf058d43d92a1ad8da = $(`&lt;div id=&quot;html_c904954ec01010bf058d43d92a1ad8da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8067             latitude:33.8399             pred_result:47.84526062011719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a6817bef974834c08ec446334ba810c.setContent(html_c904954ec01010bf058d43d92a1ad8da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_06c4e5d6a7534fcbfa5ab36751006160.bindPopup(popup_0a6817bef974834c08ec446334ba810c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf9c0c1b7d52a1f1797037a95ce838d0 = L.circleMarker(\\n\",\n       \"                [33.8561, 115.7831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6604857a6009f37bb29d0b378f717012 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c173ae436650789ee851e4fa8da84574 = $(`&lt;div id=&quot;html_c173ae436650789ee851e4fa8da84574&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.7831             latitude:33.8561             pred_result:47.66126251220703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6604857a6009f37bb29d0b378f717012.setContent(html_c173ae436650789ee851e4fa8da84574);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf9c0c1b7d52a1f1797037a95ce838d0.bindPopup(popup_6604857a6009f37bb29d0b378f717012)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7144e2e6aeb620ee2064893a753d0d21 = L.circleMarker(\\n\",\n       \"                [30.6617, 117.4697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40f501f0ef9ed94a9d347d5be5934a54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93aed80b09b2b6c0a06ea879ada114bc = $(`&lt;div id=&quot;html_93aed80b09b2b6c0a06ea879ada114bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4697             latitude:30.6617             pred_result:48.47706985473633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40f501f0ef9ed94a9d347d5be5934a54.setContent(html_93aed80b09b2b6c0a06ea879ada114bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7144e2e6aeb620ee2064893a753d0d21.bindPopup(popup_40f501f0ef9ed94a9d347d5be5934a54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f339839aba2902879cc98b1b49300a94 = L.circleMarker(\\n\",\n       \"                [30.6539, 117.4974],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef62d972967bfabab33fde768c3a4e06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ef3d803e895ac0a9aedb70ca870aca0 = $(`&lt;div id=&quot;html_6ef3d803e895ac0a9aedb70ca870aca0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.4974             latitude:30.6539             pred_result:47.49490737915039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef62d972967bfabab33fde768c3a4e06.setContent(html_6ef3d803e895ac0a9aedb70ca870aca0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f339839aba2902879cc98b1b49300a94.bindPopup(popup_ef62d972967bfabab33fde768c3a4e06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a44158ed0d08b4e61ecfab8395594527 = L.circleMarker(\\n\",\n       \"                [30.9447, 118.7581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1af244d1057d2ae2fbb0dfcbc7bda475 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f4f4dbfedb8c3128d45aa73ee3f04b06 = $(`&lt;div id=&quot;html_f4f4dbfedb8c3128d45aa73ee3f04b06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7581             latitude:30.9447             pred_result:45.730838775634766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1af244d1057d2ae2fbb0dfcbc7bda475.setContent(html_f4f4dbfedb8c3128d45aa73ee3f04b06);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a44158ed0d08b4e61ecfab8395594527.bindPopup(popup_1af244d1057d2ae2fbb0dfcbc7bda475)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_927cde7473a43212eb739547804f932c = L.circleMarker(\\n\",\n       \"                [30.9742, 118.7386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bd892ea9eb9a6932c75d8c67a209df1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c8a4e61bdbd79e068dff257e6aba42fa = $(`&lt;div id=&quot;html_c8a4e61bdbd79e068dff257e6aba42fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7386             latitude:30.9742             pred_result:47.11933135986328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bd892ea9eb9a6932c75d8c67a209df1.setContent(html_c8a4e61bdbd79e068dff257e6aba42fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_927cde7473a43212eb739547804f932c.bindPopup(popup_0bd892ea9eb9a6932c75d8c67a209df1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d01561f002249dadac26853ecef142f = L.circleMarker(\\n\",\n       \"                [30.9431, 118.7175],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b1306078eb9bf05460306b3703503c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa411f854d121dbf8a2e70366b733250 = $(`&lt;div id=&quot;html_fa411f854d121dbf8a2e70366b733250&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7175             latitude:30.9431             pred_result:47.40415573120117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b1306078eb9bf05460306b3703503c6.setContent(html_fa411f854d121dbf8a2e70366b733250);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d01561f002249dadac26853ecef142f.bindPopup(popup_3b1306078eb9bf05460306b3703503c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34810469ffa5d188e47b7cf83e106b06 = L.circleMarker(\\n\",\n       \"                [25.442, 119.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_66aff7c0a47163d2ba68c5b47a01320b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f39ca8575a233c99a5f5d1b4c1d60945 = $(`&lt;div id=&quot;html_f39ca8575a233c99a5f5d1b4c1d60945&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0156             latitude:25.442             pred_result:23.628515243530273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_66aff7c0a47163d2ba68c5b47a01320b.setContent(html_f39ca8575a233c99a5f5d1b4c1d60945);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34810469ffa5d188e47b7cf83e106b06.bindPopup(popup_66aff7c0a47163d2ba68c5b47a01320b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c50ed3236f410eccfaa3d60603bd0c50 = L.circleMarker(\\n\",\n       \"                [25.4552, 119.0018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef2f59e54b208383e2b02d6b556e3475 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_675a330216f0c8895ae1da33cd7c376c = $(`&lt;div id=&quot;html_675a330216f0c8895ae1da33cd7c376c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0018             latitude:25.4552             pred_result:21.311912536621094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef2f59e54b208383e2b02d6b556e3475.setContent(html_675a330216f0c8895ae1da33cd7c376c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c50ed3236f410eccfaa3d60603bd0c50.bindPopup(popup_ef2f59e54b208383e2b02d6b556e3475)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_710b0046436374d8a2a34c3548122c25 = L.circleMarker(\\n\",\n       \"                [25.4792, 118.981],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c334b02b5678a14c68d533c9415ade51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b45c5345ad02ff00e6bfeb3c0b1286d8 = $(`&lt;div id=&quot;html_b45c5345ad02ff00e6bfeb3c0b1286d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.981             latitude:25.4792             pred_result:20.55879783630371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c334b02b5678a14c68d533c9415ade51.setContent(html_b45c5345ad02ff00e6bfeb3c0b1286d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_710b0046436374d8a2a34c3548122c25.bindPopup(popup_c334b02b5678a14c68d533c9415ade51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f55cbb8dc3a730fbeb9977ea47becab = L.circleMarker(\\n\",\n       \"                [26.2625, 117.6211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96e4d917d3d23e87757863b4aac6ab17 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe45a8e44b8355ad7779d533761d6589 = $(`&lt;div id=&quot;html_fe45a8e44b8355ad7779d533761d6589&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6211             latitude:26.2625             pred_result:20.619197845458984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96e4d917d3d23e87757863b4aac6ab17.setContent(html_fe45a8e44b8355ad7779d533761d6589);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f55cbb8dc3a730fbeb9977ea47becab.bindPopup(popup_96e4d917d3d23e87757863b4aac6ab17)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5af55393c6e9cc0109fd44b4f39ed893 = L.circleMarker(\\n\",\n       \"                [26.2708, 117.6353],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b92cc1560a18186c81d64b9c33983954 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_198789dfada608bc836a39d19af3c739 = $(`&lt;div id=&quot;html_198789dfada608bc836a39d19af3c739&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6353             latitude:26.2708             pred_result:21.837608337402344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b92cc1560a18186c81d64b9c33983954.setContent(html_198789dfada608bc836a39d19af3c739);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5af55393c6e9cc0109fd44b4f39ed893.bindPopup(popup_b92cc1560a18186c81d64b9c33983954)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97ee67f8a451ed9e1bcc35af988be5ef = L.circleMarker(\\n\",\n       \"                [26.2378, 117.6028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aaf8180e7711303b05996119b2950158 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6bb94f530c6c0d36c96368beddde5ee2 = $(`&lt;div id=&quot;html_6bb94f530c6c0d36c96368beddde5ee2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6028             latitude:26.2378             pred_result:20.925737380981445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aaf8180e7711303b05996119b2950158.setContent(html_6bb94f530c6c0d36c96368beddde5ee2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97ee67f8a451ed9e1bcc35af988be5ef.bindPopup(popup_aaf8180e7711303b05996119b2950158)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea677d03d49f6b04a53764a0d3019f94 = L.circleMarker(\\n\",\n       \"                [26.3108, 117.7275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1b4437fa86e3fd487e3f89ce1a8e0a28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d41c278e9e01f453219f5cbdc54d432 = $(`&lt;div id=&quot;html_7d41c278e9e01f453219f5cbdc54d432&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7275             latitude:26.3108             pred_result:19.70675277709961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1b4437fa86e3fd487e3f89ce1a8e0a28.setContent(html_7d41c278e9e01f453219f5cbdc54d432);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea677d03d49f6b04a53764a0d3019f94.bindPopup(popup_1b4437fa86e3fd487e3f89ce1a8e0a28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f57491d337431996c271ab504a545151 = L.circleMarker(\\n\",\n       \"                [26.6761, 118.0966],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae9fab6fe7bccdb47f62c043258fe4cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_348e4871f73093038ff60c3749c91aa7 = $(`&lt;div id=&quot;html_348e4871f73093038ff60c3749c91aa7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0966             latitude:26.6761             pred_result:20.069713592529297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae9fab6fe7bccdb47f62c043258fe4cf.setContent(html_348e4871f73093038ff60c3749c91aa7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f57491d337431996c271ab504a545151.bindPopup(popup_ae9fab6fe7bccdb47f62c043258fe4cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2192f766db44b303e1eeda0294f806e = L.circleMarker(\\n\",\n       \"                [26.6383, 118.1694],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c90166841642b08c86a9ad1394fbc93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67dc68332e1434eefae57b226de69d61 = $(`&lt;div id=&quot;html_67dc68332e1434eefae57b226de69d61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1694             latitude:26.6383             pred_result:22.937620162963867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c90166841642b08c86a9ad1394fbc93.setContent(html_67dc68332e1434eefae57b226de69d61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2192f766db44b303e1eeda0294f806e.bindPopup(popup_2c90166841642b08c86a9ad1394fbc93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43bc39ffae80f9d53775d7c2983babfe = L.circleMarker(\\n\",\n       \"                [26.6514, 118.1819],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_38c5fb9c17873a5595da391ac368665f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa91a9e1f41c85164a106aacf4ab5dfc = $(`&lt;div id=&quot;html_fa91a9e1f41c85164a106aacf4ab5dfc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1819             latitude:26.6514             pred_result:22.27116584777832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_38c5fb9c17873a5595da391ac368665f.setContent(html_fa91a9e1f41c85164a106aacf4ab5dfc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43bc39ffae80f9d53775d7c2983babfe.bindPopup(popup_38c5fb9c17873a5595da391ac368665f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_860bad574f2066dcb86a060bfb5a10cc = L.circleMarker(\\n\",\n       \"                [26.6272, 118.1756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d504d002119b935e0ee46e3ad3e40e0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49b6c9b9f08f7d8ff9bd83315bf4c644 = $(`&lt;div id=&quot;html_49b6c9b9f08f7d8ff9bd83315bf4c644&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1756             latitude:26.6272             pred_result:22.297504425048828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d504d002119b935e0ee46e3ad3e40e0f.setContent(html_49b6c9b9f08f7d8ff9bd83315bf4c644);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_860bad574f2066dcb86a060bfb5a10cc.bindPopup(popup_d504d002119b935e0ee46e3ad3e40e0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_411e6ca6eb87696d554b50f1a283fcd3 = L.circleMarker(\\n\",\n       \"                [25.1174, 117.0181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40782e7e2b4e8c2140a16f132b479977 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a92fce4ab047b45c22b2a627e8cf8b0 = $(`&lt;div id=&quot;html_0a92fce4ab047b45c22b2a627e8cf8b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0181             latitude:25.1174             pred_result:25.13317108154297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40782e7e2b4e8c2140a16f132b479977.setContent(html_0a92fce4ab047b45c22b2a627e8cf8b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_411e6ca6eb87696d554b50f1a283fcd3.bindPopup(popup_40782e7e2b4e8c2140a16f132b479977)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8f7e7dd3912f11bc5dbe28a53a36658 = L.circleMarker(\\n\",\n       \"                [25.1035, 117.0216],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5529d20e8976ce2179e89f1277f5283f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed769d499a81ce2ad2b0f5966d3c96ba = $(`&lt;div id=&quot;html_ed769d499a81ce2ad2b0f5966d3c96ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0216             latitude:25.1035             pred_result:24.710935592651367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5529d20e8976ce2179e89f1277f5283f.setContent(html_ed769d499a81ce2ad2b0f5966d3c96ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8f7e7dd3912f11bc5dbe28a53a36658.bindPopup(popup_5529d20e8976ce2179e89f1277f5283f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98991d7e19627eef089e640d97385e80 = L.circleMarker(\\n\",\n       \"                [25.0661, 117.0256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46920fca079961853de78f8f3f23d8bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_251573d166c8839746ace9f0c0527645 = $(`&lt;div id=&quot;html_251573d166c8839746ace9f0c0527645&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0256             latitude:25.0661             pred_result:22.83012580871582             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46920fca079961853de78f8f3f23d8bd.setContent(html_251573d166c8839746ace9f0c0527645);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98991d7e19627eef089e640d97385e80.bindPopup(popup_46920fca079961853de78f8f3f23d8bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03f2cea79bbc7aa5c3caada3e9206c65 = L.circleMarker(\\n\",\n       \"                [25.0311, 117.0151],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4f7128319a52c7ac103b7749ad1a9454 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84a5a6947d0161fc42a2c5585ca8305e = $(`&lt;div id=&quot;html_84a5a6947d0161fc42a2c5585ca8305e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0151             latitude:25.0311             pred_result:24.376157760620117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4f7128319a52c7ac103b7749ad1a9454.setContent(html_84a5a6947d0161fc42a2c5585ca8305e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03f2cea79bbc7aa5c3caada3e9206c65.bindPopup(popup_4f7128319a52c7ac103b7749ad1a9454)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43f3e45110a370cef4f714ef1c17f795 = L.circleMarker(\\n\",\n       \"                [26.6946, 119.5001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_05767290f8856e132f8dc97396622186 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0705648df3b6c161300029a9b4b8bd46 = $(`&lt;div id=&quot;html_0705648df3b6c161300029a9b4b8bd46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5001             latitude:26.6946             pred_result:18.605131149291992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_05767290f8856e132f8dc97396622186.setContent(html_0705648df3b6c161300029a9b4b8bd46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43f3e45110a370cef4f714ef1c17f795.bindPopup(popup_05767290f8856e132f8dc97396622186)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0be70fd94611762f76569434c3451ab = L.circleMarker(\\n\",\n       \"                [26.6607, 119.5202],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb2334d71d0c34441b5f8eaeffc35c60 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_949936465121f5949897b9a61f7ad4ff = $(`&lt;div id=&quot;html_949936465121f5949897b9a61f7ad4ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5202             latitude:26.6607             pred_result:19.43744468688965             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb2334d71d0c34441b5f8eaeffc35c60.setContent(html_949936465121f5949897b9a61f7ad4ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0be70fd94611762f76569434c3451ab.bindPopup(popup_eb2334d71d0c34441b5f8eaeffc35c60)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2646ce5d27cda9e63f9f2488a11cc48 = L.circleMarker(\\n\",\n       \"                [26.6611, 119.5392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ac93d790715d841673d7af8c465a8ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_346967a276a1a669827293faa2f8daac = $(`&lt;div id=&quot;html_346967a276a1a669827293faa2f8daac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5392             latitude:26.6611             pred_result:21.892995834350586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ac93d790715d841673d7af8c465a8ff.setContent(html_346967a276a1a669827293faa2f8daac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2646ce5d27cda9e63f9f2488a11cc48.bindPopup(popup_5ac93d790715d841673d7af8c465a8ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a56166e44c4d9b00b8836f35d45d72e = L.circleMarker(\\n\",\n       \"                [29.3864, 117.3097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29142a5a841d04ac59b30c5c18610473 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f22f5f1b281696d26a93f1d2d365e903 = $(`&lt;div id=&quot;html_f22f5f1b281696d26a93f1d2d365e903&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3097             latitude:29.3864             pred_result:39.873939514160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29142a5a841d04ac59b30c5c18610473.setContent(html_f22f5f1b281696d26a93f1d2d365e903);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a56166e44c4d9b00b8836f35d45d72e.bindPopup(popup_29142a5a841d04ac59b30c5c18610473)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d23c5b9ec34600e8742c9ccfe00ee5d = L.circleMarker(\\n\",\n       \"                [29.2958, 117.2111],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_574eb4c20ccd341c87e5bbd4059d3b74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b86246941159d7faf44b256361fa1892 = $(`&lt;div id=&quot;html_b86246941159d7faf44b256361fa1892&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2111             latitude:29.2958             pred_result:41.845516204833984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_574eb4c20ccd341c87e5bbd4059d3b74.setContent(html_b86246941159d7faf44b256361fa1892);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d23c5b9ec34600e8742c9ccfe00ee5d.bindPopup(popup_574eb4c20ccd341c87e5bbd4059d3b74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5eb78b8709e624298b0fa1fb69038d18 = L.circleMarker(\\n\",\n       \"                [29.2786, 117.1983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e220be9dfd0d6971cab3f8b18f01a36d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2096dae7aaf7e81532bdf2a32c5286db = $(`&lt;div id=&quot;html_2096dae7aaf7e81532bdf2a32c5286db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1983             latitude:29.2786             pred_result:42.47591781616211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e220be9dfd0d6971cab3f8b18f01a36d.setContent(html_2096dae7aaf7e81532bdf2a32c5286db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5eb78b8709e624298b0fa1fb69038d18.bindPopup(popup_e220be9dfd0d6971cab3f8b18f01a36d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_990bdc53dcf3e0f88e3a2e28bad99bf0 = L.circleMarker(\\n\",\n       \"                [29.2647, 117.1558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6500435306812b56459ce68a640a0cad = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a7014d0122bcf4ba9746c38ae482bda = $(`&lt;div id=&quot;html_7a7014d0122bcf4ba9746c38ae482bda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1558             latitude:29.2647             pred_result:42.43424987792969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6500435306812b56459ce68a640a0cad.setContent(html_7a7014d0122bcf4ba9746c38ae482bda);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_990bdc53dcf3e0f88e3a2e28bad99bf0.bindPopup(popup_6500435306812b56459ce68a640a0cad)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5b76dd0c6c2b946f67d049a9abe437b = L.circleMarker(\\n\",\n       \"                [29.2956, 117.2461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ac3941edbf777a6f1098fa789afca6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa05668cc8de1d01f9e040e6ce10f15a = $(`&lt;div id=&quot;html_fa05668cc8de1d01f9e040e6ce10f15a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2461             latitude:29.2956             pred_result:44.27742004394531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ac3941edbf777a6f1098fa789afca6e.setContent(html_fa05668cc8de1d01f9e040e6ce10f15a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5b76dd0c6c2b946f67d049a9abe437b.bindPopup(popup_9ac3941edbf777a6f1098fa789afca6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c256de9388ab1f31705d4d5b32263898 = L.circleMarker(\\n\",\n       \"                [27.4948, 114.0944],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d76cb3f7f501f05a29a20eee0dec331 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7deeaffea165148ae920d3b6648a60c = $(`&lt;div id=&quot;html_d7deeaffea165148ae920d3b6648a60c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0944             latitude:27.4948             pred_result:45.143104553222656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d76cb3f7f501f05a29a20eee0dec331.setContent(html_d7deeaffea165148ae920d3b6648a60c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c256de9388ab1f31705d4d5b32263898.bindPopup(popup_9d76cb3f7f501f05a29a20eee0dec331)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a13abe77783a36cef9014ebc2a46f204 = L.circleMarker(\\n\",\n       \"                [27.6428, 113.8381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d6179287f7c1e697e6c9c087797a12d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_698e1035c1130961322fb30e93b47482 = $(`&lt;div id=&quot;html_698e1035c1130961322fb30e93b47482&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8381             latitude:27.6428             pred_result:45.954551696777344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d6179287f7c1e697e6c9c087797a12d.setContent(html_698e1035c1130961322fb30e93b47482);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a13abe77783a36cef9014ebc2a46f204.bindPopup(popup_5d6179287f7c1e697e6c9c087797a12d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e6a59f17b6a07686a7398e3bd9e333f6 = L.circleMarker(\\n\",\n       \"                [27.6231, 113.8447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb087c864f70835e3ef5e641496a5b51 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_634c489f3d6dc12fe4e63bcb3bd5141a = $(`&lt;div id=&quot;html_634c489f3d6dc12fe4e63bcb3bd5141a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8447             latitude:27.6231             pred_result:46.059593200683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb087c864f70835e3ef5e641496a5b51.setContent(html_634c489f3d6dc12fe4e63bcb3bd5141a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e6a59f17b6a07686a7398e3bd9e333f6.bindPopup(popup_cb087c864f70835e3ef5e641496a5b51)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43f21c15f6646b1cc9646d4b8c7c39b4 = L.circleMarker(\\n\",\n       \"                [27.6442, 113.8686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8e7a531ef089bf0d2c3258b870286bef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_881ea2cde24ab9bbdf37c59d8fe73a9b = $(`&lt;div id=&quot;html_881ea2cde24ab9bbdf37c59d8fe73a9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8686             latitude:27.6442             pred_result:46.324798583984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8e7a531ef089bf0d2c3258b870286bef.setContent(html_881ea2cde24ab9bbdf37c59d8fe73a9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43f21c15f6646b1cc9646d4b8c7c39b4.bindPopup(popup_8e7a531ef089bf0d2c3258b870286bef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e49492de1359628229541f303fdec64b = L.circleMarker(\\n\",\n       \"                [27.6178, 113.865],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_32faffd6a233f0027d32837cb27bb16c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6421ee5928771ca990aa812a9ce841a = $(`&lt;div id=&quot;html_f6421ee5928771ca990aa812a9ce841a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.865             latitude:27.6178             pred_result:46.25825500488281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_32faffd6a233f0027d32837cb27bb16c.setContent(html_f6421ee5928771ca990aa812a9ce841a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e49492de1359628229541f303fdec64b.bindPopup(popup_32faffd6a233f0027d32837cb27bb16c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d9ca34e66ed56b89187b10d45040459f = L.circleMarker(\\n\",\n       \"                [27.7758, 115.0586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_866da80e4201634360bde2cd813dfa84 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7866371fa616b6de7e8d6c3287c1cea7 = $(`&lt;div id=&quot;html_7866371fa616b6de7e8d6c3287c1cea7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0586             latitude:27.7758             pred_result:45.27338409423828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_866da80e4201634360bde2cd813dfa84.setContent(html_7866371fa616b6de7e8d6c3287c1cea7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d9ca34e66ed56b89187b10d45040459f.bindPopup(popup_866da80e4201634360bde2cd813dfa84)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_322ea015bf28c2972100b4db1f4973ad = L.circleMarker(\\n\",\n       \"                [27.8344, 114.9831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_64d5cd4b04174d7790a013edda2d8d2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3fada8d317e5626443da0eb200840d42 = $(`&lt;div id=&quot;html_3fada8d317e5626443da0eb200840d42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9831             latitude:27.8344             pred_result:45.91493606567383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_64d5cd4b04174d7790a013edda2d8d2a.setContent(html_3fada8d317e5626443da0eb200840d42);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_322ea015bf28c2972100b4db1f4973ad.bindPopup(popup_64d5cd4b04174d7790a013edda2d8d2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4fba78b111995ee91c40c1f1500a92d7 = L.circleMarker(\\n\",\n       \"                [27.8328, 114.9289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c43e517f0fc747fc22b5e60299c060fb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a36c47d00d2448489db1ae545cc43cf5 = $(`&lt;div id=&quot;html_a36c47d00d2448489db1ae545cc43cf5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9289             latitude:27.8328             pred_result:46.055198669433594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c43e517f0fc747fc22b5e60299c060fb.setContent(html_a36c47d00d2448489db1ae545cc43cf5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4fba78b111995ee91c40c1f1500a92d7.bindPopup(popup_c43e517f0fc747fc22b5e60299c060fb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a712c6c8cc1518ad285ce6897b917fd = L.circleMarker(\\n\",\n       \"                [27.8036, 114.9314],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_126266beeffbd6ac774363131ac5ca3e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba1f99b4b90363a23f9059721abe31ee = $(`&lt;div id=&quot;html_ba1f99b4b90363a23f9059721abe31ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9314             latitude:27.8036             pred_result:45.88431930541992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_126266beeffbd6ac774363131ac5ca3e.setContent(html_ba1f99b4b90363a23f9059721abe31ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a712c6c8cc1518ad285ce6897b917fd.bindPopup(popup_126266beeffbd6ac774363131ac5ca3e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7e9f6e2ebe398cb41e3eb28dee21f5f = L.circleMarker(\\n\",\n       \"                [27.8042, 114.9119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21b3858f325d915694ad470a7137a8bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1ef7559e56749de4e575d0b061d00b8 = $(`&lt;div id=&quot;html_c1ef7559e56749de4e575d0b061d00b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9119             latitude:27.8042             pred_result:45.836753845214844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21b3858f325d915694ad470a7137a8bb.setContent(html_c1ef7559e56749de4e575d0b061d00b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7e9f6e2ebe398cb41e3eb28dee21f5f.bindPopup(popup_21b3858f325d915694ad470a7137a8bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbbf7a68bc0b84430b90c188238e0b46 = L.circleMarker(\\n\",\n       \"                [28.095, 116.9622],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dd1a1f4adaa76568704dbe93b6796528 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78677351588ee6a85f31261893375ce3 = $(`&lt;div id=&quot;html_78677351588ee6a85f31261893375ce3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9622             latitude:28.095             pred_result:38.302059173583984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dd1a1f4adaa76568704dbe93b6796528.setContent(html_78677351588ee6a85f31261893375ce3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbbf7a68bc0b84430b90c188238e0b46.bindPopup(popup_dd1a1f4adaa76568704dbe93b6796528)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc19b4fe75448777c602d128ca91f490 = L.circleMarker(\\n\",\n       \"                [28.2642, 117.0564],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ffe6a7d39b5054452229ff1e5b3b629 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2894450e823c6bb38d0e3d2fa201399 = $(`&lt;div id=&quot;html_d2894450e823c6bb38d0e3d2fa201399&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0564             latitude:28.2642             pred_result:39.78093338012695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ffe6a7d39b5054452229ff1e5b3b629.setContent(html_d2894450e823c6bb38d0e3d2fa201399);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc19b4fe75448777c602d128ca91f490.bindPopup(popup_4ffe6a7d39b5054452229ff1e5b3b629)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e96f01a55ba8355f90c7ec9f8fc573e3 = L.circleMarker(\\n\",\n       \"                [28.2403, 117.0281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6a2bd08bb157932e82dd9834a763029 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cfd5d76a61811bbe34cbcc8155d29a79 = $(`&lt;div id=&quot;html_cfd5d76a61811bbe34cbcc8155d29a79&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0281             latitude:28.2403             pred_result:41.076904296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6a2bd08bb157932e82dd9834a763029.setContent(html_cfd5d76a61811bbe34cbcc8155d29a79);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e96f01a55ba8355f90c7ec9f8fc573e3.bindPopup(popup_b6a2bd08bb157932e82dd9834a763029)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1278b658ce52421e4839ce558919c5d0 = L.circleMarker(\\n\",\n       \"                [28.2264, 117.0222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a4eb5c9e41fe488cb8f5d6a274cf888d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_87187c56b8a740bcdd765501516e4e1a = $(`&lt;div id=&quot;html_87187c56b8a740bcdd765501516e4e1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0222             latitude:28.2264             pred_result:41.531944274902344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a4eb5c9e41fe488cb8f5d6a274cf888d.setContent(html_87187c56b8a740bcdd765501516e4e1a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1278b658ce52421e4839ce558919c5d0.bindPopup(popup_a4eb5c9e41fe488cb8f5d6a274cf888d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25e228d38198c3704a5bf021a477a7b6 = L.circleMarker(\\n\",\n       \"                [28.2169, 116.9983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_710c81f46a0aa6a1e2ca10ba7c877edd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cedc5281e6ec9bd701347c175ae99a34 = $(`&lt;div id=&quot;html_cedc5281e6ec9bd701347c175ae99a34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9983             latitude:28.2169             pred_result:41.83911895751953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_710c81f46a0aa6a1e2ca10ba7c877edd.setContent(html_cedc5281e6ec9bd701347c175ae99a34);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25e228d38198c3704a5bf021a477a7b6.bindPopup(popup_710c81f46a0aa6a1e2ca10ba7c877edd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8012d249814f0ecb2093293639187b7a = L.circleMarker(\\n\",\n       \"                [25.9118, 114.9064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6ddc01649609ef5ee34ba0c9bb18748 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_66e6db0f6bfd093831f932d373da8285 = $(`&lt;div id=&quot;html_66e6db0f6bfd093831f932d373da8285&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9064             latitude:25.9118             pred_result:37.803436279296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6ddc01649609ef5ee34ba0c9bb18748.setContent(html_66e6db0f6bfd093831f932d373da8285);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8012d249814f0ecb2093293639187b7a.bindPopup(popup_c6ddc01649609ef5ee34ba0c9bb18748)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81b3deea42d032a06d8b8cc671268a5e = L.circleMarker(\\n\",\n       \"                [25.8664, 114.9367],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea8bdd6df125f51eba6cf6954bc4898e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdd094881103f078500055e3f5a9cf81 = $(`&lt;div id=&quot;html_bdd094881103f078500055e3f5a9cf81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9367             latitude:25.8664             pred_result:37.53236770629883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea8bdd6df125f51eba6cf6954bc4898e.setContent(html_bdd094881103f078500055e3f5a9cf81);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81b3deea42d032a06d8b8cc671268a5e.bindPopup(popup_ea8bdd6df125f51eba6cf6954bc4898e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6910d849c9af6d0fa2bc8792e4b3a644 = L.circleMarker(\\n\",\n       \"                [25.8481, 114.9461],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73448ff0190ddda91f9be1efa6d70908 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0906682586663a340145219f5b89663 = $(`&lt;div id=&quot;html_d0906682586663a340145219f5b89663&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9461             latitude:25.8481             pred_result:38.011512756347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73448ff0190ddda91f9be1efa6d70908.setContent(html_d0906682586663a340145219f5b89663);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6910d849c9af6d0fa2bc8792e4b3a644.bindPopup(popup_73448ff0190ddda91f9be1efa6d70908)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ed0f3a4dd4f5e91c8d5921f38cc8118 = L.circleMarker(\\n\",\n       \"                [25.8333, 114.9322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ccc69b814443a01789a2a6cd1a76e754 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9c50e256f3f570363b2b4265728d5c4 = $(`&lt;div id=&quot;html_c9c50e256f3f570363b2b4265728d5c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9322             latitude:25.8333             pred_result:37.404335021972656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ccc69b814443a01789a2a6cd1a76e754.setContent(html_c9c50e256f3f570363b2b4265728d5c4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ed0f3a4dd4f5e91c8d5921f38cc8118.bindPopup(popup_ccc69b814443a01789a2a6cd1a76e754)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7962b278396210c36aada5acea17c2dd = L.circleMarker(\\n\",\n       \"                [25.8471, 114.8905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a28365ae060fb84efa1aa03543578f1c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3bb0eb726077ec12d9c6cef7c6d324a = $(`&lt;div id=&quot;html_d3bb0eb726077ec12d9c6cef7c6d324a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8905             latitude:25.8471             pred_result:37.55141067504883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a28365ae060fb84efa1aa03543578f1c.setContent(html_d3bb0eb726077ec12d9c6cef7c6d324a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7962b278396210c36aada5acea17c2dd.bindPopup(popup_a28365ae060fb84efa1aa03543578f1c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9069d913acb142535ed86554999b896b = L.circleMarker(\\n\",\n       \"                [27.0658, 114.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_596edbfc27a1dcc0506e8303a8d047f8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f69dff2222993366ffee1618f182d60 = $(`&lt;div id=&quot;html_6f69dff2222993366ffee1618f182d60&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9817             latitude:27.0658             pred_result:44.649478912353516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_596edbfc27a1dcc0506e8303a8d047f8.setContent(html_6f69dff2222993366ffee1618f182d60);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9069d913acb142535ed86554999b896b.bindPopup(popup_596edbfc27a1dcc0506e8303a8d047f8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9ef8292ce82f07ef30a1e9d6b6b3f2e = L.circleMarker(\\n\",\n       \"                [27.11, 114.9739],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d26a01461d879126ed9ad7765450f70f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a840c78c12bfd93ef27f311c2cfe95a3 = $(`&lt;div id=&quot;html_a840c78c12bfd93ef27f311c2cfe95a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9739             latitude:27.11             pred_result:45.177635192871094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d26a01461d879126ed9ad7765450f70f.setContent(html_a840c78c12bfd93ef27f311c2cfe95a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9ef8292ce82f07ef30a1e9d6b6b3f2e.bindPopup(popup_d26a01461d879126ed9ad7765450f70f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a5c67c9e8444181d1dafda16628dc8c = L.circleMarker(\\n\",\n       \"                [27.1311, 114.99],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cee14e12d697b3fad1db7bc1caca0db7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dca0b35409dc10f39cb054db2581963e = $(`&lt;div id=&quot;html_dca0b35409dc10f39cb054db2581963e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.99             latitude:27.1311             pred_result:45.56789779663086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cee14e12d697b3fad1db7bc1caca0db7.setContent(html_dca0b35409dc10f39cb054db2581963e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a5c67c9e8444181d1dafda16628dc8c.bindPopup(popup_cee14e12d697b3fad1db7bc1caca0db7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da32ca4218dca6702f2fdd38fa000ae3 = L.circleMarker(\\n\",\n       \"                [27.0983, 115.0075],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_472ffadf0d8a471f695748543311632c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5681cc6df49e02018bfdee9f64016a68 = $(`&lt;div id=&quot;html_5681cc6df49e02018bfdee9f64016a68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0075             latitude:27.0983             pred_result:44.710960388183594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_472ffadf0d8a471f695748543311632c.setContent(html_5681cc6df49e02018bfdee9f64016a68);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da32ca4218dca6702f2fdd38fa000ae3.bindPopup(popup_472ffadf0d8a471f695748543311632c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a8a886eb39742e6d137f80be2e167e2 = L.circleMarker(\\n\",\n       \"                [27.8036, 114.3442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2454776664bfd1bb32396219a9401812 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_577d982534bc57fa69e0ef2082423576 = $(`&lt;div id=&quot;html_577d982534bc57fa69e0ef2082423576&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3442             latitude:27.8036             pred_result:46.38511276245117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2454776664bfd1bb32396219a9401812.setContent(html_577d982534bc57fa69e0ef2082423576);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a8a886eb39742e6d137f80be2e167e2.bindPopup(popup_2454776664bfd1bb32396219a9401812)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_388d9f9f00d78c5b1d101dc90bad5a90 = L.circleMarker(\\n\",\n       \"                [27.8014, 114.3806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b248b9fa6e9a5cbfdd76ceaacba2aa1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3f2d805ed9966820b107838a342f4eb = $(`&lt;div id=&quot;html_c3f2d805ed9966820b107838a342f4eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3806             latitude:27.8014             pred_result:46.70998001098633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b248b9fa6e9a5cbfdd76ceaacba2aa1.setContent(html_c3f2d805ed9966820b107838a342f4eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_388d9f9f00d78c5b1d101dc90bad5a90.bindPopup(popup_5b248b9fa6e9a5cbfdd76ceaacba2aa1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb9d2ec06a8f01527fd2c8f9a041ec6c = L.circleMarker(\\n\",\n       \"                [27.7842, 114.3953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a88e72ae2d2652d188163f26a68b39e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4719d4cf39f2a8e7499f42d7a1459e6b = $(`&lt;div id=&quot;html_4719d4cf39f2a8e7499f42d7a1459e6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3953             latitude:27.7842             pred_result:46.85208511352539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a88e72ae2d2652d188163f26a68b39e.setContent(html_4719d4cf39f2a8e7499f42d7a1459e6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb9d2ec06a8f01527fd2c8f9a041ec6c.bindPopup(popup_5a88e72ae2d2652d188163f26a68b39e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f1232952f096c9ca046156e022d4553 = L.circleMarker(\\n\",\n       \"                [27.7914, 114.3703],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f3fd526d1e42b785b4d1ef124eb12b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_373f759b7c4197c64a1d135d0661e98a = $(`&lt;div id=&quot;html_373f759b7c4197c64a1d135d0661e98a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3703             latitude:27.7914             pred_result:46.84152603149414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f3fd526d1e42b785b4d1ef124eb12b5.setContent(html_373f759b7c4197c64a1d135d0661e98a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f1232952f096c9ca046156e022d4553.bindPopup(popup_7f3fd526d1e42b785b4d1ef124eb12b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c027db7155af38b6e5b527f95a2ce104 = L.circleMarker(\\n\",\n       \"                [27.8072, 114.4011],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3d27e8dfab25527489808598f173f2c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2417cadee62bf98933b68219974c8f8c = $(`&lt;div id=&quot;html_2417cadee62bf98933b68219974c8f8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4011             latitude:27.8072             pred_result:47.0888557434082             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3d27e8dfab25527489808598f173f2c.setContent(html_2417cadee62bf98933b68219974c8f8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c027db7155af38b6e5b527f95a2ce104.bindPopup(popup_e3d27e8dfab25527489808598f173f2c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_501a51b88f0bce319394699dc75970d8 = L.circleMarker(\\n\",\n       \"                [28.0797, 116.2239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_afb3f1589b3757f091e1cc8a06735595 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9f4e34ce3e4101451a97fb9a58eee6b = $(`&lt;div id=&quot;html_d9f4e34ce3e4101451a97fb9a58eee6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.2239             latitude:28.0797             pred_result:44.306884765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_afb3f1589b3757f091e1cc8a06735595.setContent(html_d9f4e34ce3e4101451a97fb9a58eee6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_501a51b88f0bce319394699dc75970d8.bindPopup(popup_afb3f1589b3757f091e1cc8a06735595)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eaf0030a73af937df60cbd1223ec8dc8 = L.circleMarker(\\n\",\n       \"                [27.9883, 116.3553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0da2292c6074ad08602159ce5b62be8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6a4d9360eca9eba27594531597bfb1e1 = $(`&lt;div id=&quot;html_6a4d9360eca9eba27594531597bfb1e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3553             latitude:27.9883             pred_result:43.82347869873047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0da2292c6074ad08602159ce5b62be8.setContent(html_6a4d9360eca9eba27594531597bfb1e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eaf0030a73af937df60cbd1223ec8dc8.bindPopup(popup_b0da2292c6074ad08602159ce5b62be8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b84b5e828bd42f0a616bd03aaafd44ae = L.circleMarker(\\n\",\n       \"                [27.9639, 116.3598],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f7a488222758442f9b09bd2bfd8f7ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3499b2e98ef640b09f73f874db746ad5 = $(`&lt;div id=&quot;html_3499b2e98ef640b09f73f874db746ad5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3598             latitude:27.9639             pred_result:43.6234016418457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f7a488222758442f9b09bd2bfd8f7ec.setContent(html_3499b2e98ef640b09f73f874db746ad5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b84b5e828bd42f0a616bd03aaafd44ae.bindPopup(popup_8f7a488222758442f9b09bd2bfd8f7ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a66b8834b01a478418a70752742614c0 = L.circleMarker(\\n\",\n       \"                [28.0005, 116.3574],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ba1c8aa97e16c2404114564145276fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_297d9e289eaf2fbd824b01907db3d78f = $(`&lt;div id=&quot;html_297d9e289eaf2fbd824b01907db3d78f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3574             latitude:28.0005             pred_result:43.83219909667969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ba1c8aa97e16c2404114564145276fe.setContent(html_297d9e289eaf2fbd824b01907db3d78f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a66b8834b01a478418a70752742614c0.bindPopup(popup_8ba1c8aa97e16c2404114564145276fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_625e510cbe541597c2de6b8c7e7a9c59 = L.circleMarker(\\n\",\n       \"                [27.9647, 116.385],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_974cc259763aec49120de4b74b1da3f0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9bae7d6df701d3ea3e889784de832e4 = $(`&lt;div id=&quot;html_a9bae7d6df701d3ea3e889784de832e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.385             latitude:27.9647             pred_result:43.5118408203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_974cc259763aec49120de4b74b1da3f0.setContent(html_a9bae7d6df701d3ea3e889784de832e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_625e510cbe541597c2de6b8c7e7a9c59.bindPopup(popup_974cc259763aec49120de4b74b1da3f0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fab952900d864d1892958f97aee95a1 = L.circleMarker(\\n\",\n       \"                [28.4569, 118.0058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8498c166124f5d7f5b832730abb83bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ccc0939fd36f4e3943951d897f2e10b0 = $(`&lt;div id=&quot;html_ccc0939fd36f4e3943951d897f2e10b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0058             latitude:28.4569             pred_result:31.52374267578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8498c166124f5d7f5b832730abb83bc.setContent(html_ccc0939fd36f4e3943951d897f2e10b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fab952900d864d1892958f97aee95a1.bindPopup(popup_f8498c166124f5d7f5b832730abb83bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46c2252b3297605ecbae2ee63c5b265b = L.circleMarker(\\n\",\n       \"                [28.4459, 117.973],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e97aef1fa1e6bcd49704628c19265eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91e0d0467e66e60e54f5b2da5dc49902 = $(`&lt;div id=&quot;html_91e0d0467e66e60e54f5b2da5dc49902&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.973             latitude:28.4459             pred_result:32.423160552978516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e97aef1fa1e6bcd49704628c19265eb.setContent(html_91e0d0467e66e60e54f5b2da5dc49902);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46c2252b3297605ecbae2ee63c5b265b.bindPopup(popup_7e97aef1fa1e6bcd49704628c19265eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a241fbc2814959a10321ce192f9fc49b = L.circleMarker(\\n\",\n       \"                [28.4622, 117.9511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_14381bbd84c45c12b7b66d7b30b72e22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1f54b313623b4608e0d97283777a99e = $(`&lt;div id=&quot;html_a1f54b313623b4608e0d97283777a99e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9511             latitude:28.4622             pred_result:33.381752014160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_14381bbd84c45c12b7b66d7b30b72e22.setContent(html_a1f54b313623b4608e0d97283777a99e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a241fbc2814959a10321ce192f9fc49b.bindPopup(popup_14381bbd84c45c12b7b66d7b30b72e22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1b0ca0067d339740b1ba0c00f5df326b = L.circleMarker(\\n\",\n       \"                [28.4303, 117.9033],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_091bd7cd8464d64216e48f18e4080b2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_257b97bf6ca254084de2936e9c334441 = $(`&lt;div id=&quot;html_257b97bf6ca254084de2936e9c334441&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9033             latitude:28.4303             pred_result:33.70137405395508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_091bd7cd8464d64216e48f18e4080b2a.setContent(html_257b97bf6ca254084de2936e9c334441);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1b0ca0067d339740b1ba0c00f5df326b.bindPopup(popup_091bd7cd8464d64216e48f18e4080b2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c186a6d215667711328dd9bfbaf3415 = L.circleMarker(\\n\",\n       \"                [35.9019, 114.17],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_041c45bf656f513cd9b87d9945b85fba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0089548b7a28664df03c503687ad870d = $(`&lt;div id=&quot;html_0089548b7a28664df03c503687ad870d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.17             latitude:35.9019             pred_result:69.49600982666016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_041c45bf656f513cd9b87d9945b85fba.setContent(html_0089548b7a28664df03c503687ad870d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c186a6d215667711328dd9bfbaf3415.bindPopup(popup_041c45bf656f513cd9b87d9945b85fba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66d357349d8dd1247e82210b75365e86 = L.circleMarker(\\n\",\n       \"                [35.7511, 114.2956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bfd49e49d7859dfce8ef575ec5a2b7e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1aa580710c107723300717a0f7911231 = $(`&lt;div id=&quot;html_1aa580710c107723300717a0f7911231&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2956             latitude:35.7511             pred_result:67.63957977294922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bfd49e49d7859dfce8ef575ec5a2b7e0.setContent(html_1aa580710c107723300717a0f7911231);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66d357349d8dd1247e82210b75365e86.bindPopup(popup_bfd49e49d7859dfce8ef575ec5a2b7e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c5d3e71dd7e8b045655eb9d190b48a5 = L.circleMarker(\\n\",\n       \"                [35.7306, 114.2878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0dc01b0aae5a220c7f3e8a06abc54367 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8e739ea387e5c8589764a834686d7ae7 = $(`&lt;div id=&quot;html_8e739ea387e5c8589764a834686d7ae7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2878             latitude:35.7306             pred_result:67.41595458984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0dc01b0aae5a220c7f3e8a06abc54367.setContent(html_8e739ea387e5c8589764a834686d7ae7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c5d3e71dd7e8b045655eb9d190b48a5.bindPopup(popup_0dc01b0aae5a220c7f3e8a06abc54367)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3abad2f433f8b8ee0717f7c8e6a3ce2a = L.circleMarker(\\n\",\n       \"                [35.31, 113.836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75a3b3bdede223404ecaa971cb620831 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_94adf55a8fd869734024ae6f57adb4ff = $(`&lt;div id=&quot;html_94adf55a8fd869734024ae6f57adb4ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.836             latitude:35.31             pred_result:67.33431243896484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75a3b3bdede223404ecaa971cb620831.setContent(html_94adf55a8fd869734024ae6f57adb4ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3abad2f433f8b8ee0717f7c8e6a3ce2a.bindPopup(popup_75a3b3bdede223404ecaa971cb620831)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae177dc4944126eb2ba2955fb326f734 = L.circleMarker(\\n\",\n       \"                [35.272, 113.884],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e67d3ac4f0bb9e0c4d818ab8ddfb28c9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_52f746f6c544ae17441ac1c350974d2e = $(`&lt;div id=&quot;html_52f746f6c544ae17441ac1c350974d2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.884             latitude:35.272             pred_result:67.0061264038086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e67d3ac4f0bb9e0c4d818ab8ddfb28c9.setContent(html_52f746f6c544ae17441ac1c350974d2e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae177dc4944126eb2ba2955fb326f734.bindPopup(popup_e67d3ac4f0bb9e0c4d818ab8ddfb28c9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2eaa05aaac64b5879f2b56c9a9a37b3f = L.circleMarker(\\n\",\n       \"                [35.30300000000001, 113.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07d94fab1826788e4d64bb00a8fbea5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0393ef85788db65e0ff1eb3d42f9d5a = $(`&lt;div id=&quot;html_a0393ef85788db65e0ff1eb3d42f9d5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.883             latitude:35.30300000000001             pred_result:67.1668472290039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07d94fab1826788e4d64bb00a8fbea5f.setContent(html_a0393ef85788db65e0ff1eb3d42f9d5a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2eaa05aaac64b5879f2b56c9a9a37b3f.bindPopup(popup_07d94fab1826788e4d64bb00a8fbea5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0a763cab674a4c6097352672da3f059 = L.circleMarker(\\n\",\n       \"                [35.76300000000001, 115.031],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03cd06feac5a0b2a54d2a4d4fa871298 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11b761d1e1eb3030fc1b3ebc0d281fc3 = $(`&lt;div id=&quot;html_11b761d1e1eb3030fc1b3ebc0d281fc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.031             latitude:35.76300000000001             pred_result:62.200321197509766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03cd06feac5a0b2a54d2a4d4fa871298.setContent(html_11b761d1e1eb3030fc1b3ebc0d281fc3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0a763cab674a4c6097352672da3f059.bindPopup(popup_03cd06feac5a0b2a54d2a4d4fa871298)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa99e4d69eccac88cc4ee12f15985f38 = L.circleMarker(\\n\",\n       \"                [35.7672, 115.0628],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9591fa712bb41e18afba6d9ef74f0dcf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_93985449cbde8980ed72607cc72cb0ee = $(`&lt;div id=&quot;html_93985449cbde8980ed72607cc72cb0ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0628             latitude:35.7672             pred_result:61.95299530029297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9591fa712bb41e18afba6d9ef74f0dcf.setContent(html_93985449cbde8980ed72607cc72cb0ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa99e4d69eccac88cc4ee12f15985f38.bindPopup(popup_9591fa712bb41e18afba6d9ef74f0dcf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_35cc94060fd49ecd2b427193bfce0663 = L.circleMarker(\\n\",\n       \"                [35.767, 115.0772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8f124bc7e9d4c98306ddadff366ddb03 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9278e766ed0b712e51ee8076d62d5e56 = $(`&lt;div id=&quot;html_9278e766ed0b712e51ee8076d62d5e56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0772             latitude:35.767             pred_result:61.954315185546875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8f124bc7e9d4c98306ddadff366ddb03.setContent(html_9278e766ed0b712e51ee8076d62d5e56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_35cc94060fd49ecd2b427193bfce0663.bindPopup(popup_8f124bc7e9d4c98306ddadff366ddb03)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f87f7c99911e64a930eb3e24c58978a3 = L.circleMarker(\\n\",\n       \"                [34.0117, 113.8331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c0cf33ac2e35347aa69e949ef035a31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d48f472f927d375187ba0b1269a316c9 = $(`&lt;div id=&quot;html_d48f472f927d375187ba0b1269a316c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.8331             latitude:34.0117             pred_result:50.09904861450195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c0cf33ac2e35347aa69e949ef035a31.setContent(html_d48f472f927d375187ba0b1269a316c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f87f7c99911e64a930eb3e24c58978a3.bindPopup(popup_1c0cf33ac2e35347aa69e949ef035a31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f20b177feb99b2f95ed9491c08cc7178 = L.circleMarker(\\n\",\n       \"                [33.9953, 113.7906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8f1bf80f995b0748fbf0798775efb4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d974cbb2b7eaadcf555bca7d28850e5c = $(`&lt;div id=&quot;html_d974cbb2b7eaadcf555bca7d28850e5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7906             latitude:33.9953             pred_result:49.97218704223633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8f1bf80f995b0748fbf0798775efb4f.setContent(html_d974cbb2b7eaadcf555bca7d28850e5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f20b177feb99b2f95ed9491c08cc7178.bindPopup(popup_a8f1bf80f995b0748fbf0798775efb4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20cf805e6bd05025671c3203ccf8e1d2 = L.circleMarker(\\n\",\n       \"                [33.567, 114.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b051887974dc66d41353c733dfcba4b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d7347798df32b4708053bd55c3eada16 = $(`&lt;div id=&quot;html_d7347798df32b4708053bd55c3eada16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.056             latitude:33.567             pred_result:48.701995849609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b051887974dc66d41353c733dfcba4b2.setContent(html_d7347798df32b4708053bd55c3eada16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20cf805e6bd05025671c3203ccf8e1d2.bindPopup(popup_b051887974dc66d41353c733dfcba4b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9209460f28db6f91d23ceb60a2981714 = L.circleMarker(\\n\",\n       \"                [33.568000000000005, 114.005],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_471385c7e0325a403bc04f1a48a3f46f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d5ab7e73eaebc71fc1d32706d1186614 = $(`&lt;div id=&quot;html_d5ab7e73eaebc71fc1d32706d1186614&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.005             latitude:33.568000000000005             pred_result:48.754066467285156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_471385c7e0325a403bc04f1a48a3f46f.setContent(html_d5ab7e73eaebc71fc1d32706d1186614);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9209460f28db6f91d23ceb60a2981714.bindPopup(popup_471385c7e0325a403bc04f1a48a3f46f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e01f797f607003a14b2472c8e07d32a7 = L.circleMarker(\\n\",\n       \"                [33.581, 114.014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e034255e26d69e299002381cef7228fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ad5bb552c378c294ff282c4d8b27fb4 = $(`&lt;div id=&quot;html_0ad5bb552c378c294ff282c4d8b27fb4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.014             latitude:33.581             pred_result:48.62312316894531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e034255e26d69e299002381cef7228fd.setContent(html_0ad5bb552c378c294ff282c4d8b27fb4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e01f797f607003a14b2472c8e07d32a7.bindPopup(popup_e034255e26d69e299002381cef7228fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_635989459878b81fff9ec0436195654c = L.circleMarker(\\n\",\n       \"                [33.5653, 114.0322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d212d74216bf8937b3bd0c5444a8d57f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d35b1a43f3b6defe2681b27641f6ac2 = $(`&lt;div id=&quot;html_6d35b1a43f3b6defe2681b27641f6ac2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0322             latitude:33.5653             pred_result:48.77904510498047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d212d74216bf8937b3bd0c5444a8d57f.setContent(html_6d35b1a43f3b6defe2681b27641f6ac2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_635989459878b81fff9ec0436195654c.bindPopup(popup_d212d74216bf8937b3bd0c5444a8d57f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23df10c6c7a5d14be129b97a7f6a71ad = L.circleMarker(\\n\",\n       \"                [32.9917, 112.5192],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1007a1f7377cd036c240dd3b0721339a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_590dde9137e054367991216e37508b7d = $(`&lt;div id=&quot;html_590dde9137e054367991216e37508b7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5192             latitude:32.9917             pred_result:50.495391845703125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1007a1f7377cd036c240dd3b0721339a.setContent(html_590dde9137e054367991216e37508b7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23df10c6c7a5d14be129b97a7f6a71ad.bindPopup(popup_1007a1f7377cd036c240dd3b0721339a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_271c9ac467f7d84635c3992a925c4941 = L.circleMarker(\\n\",\n       \"                [33.0122, 112.5224],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79c1507e03acbdd42ef707149ee4825b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b4b9852fdd6896764d804bf60c8b9c7 = $(`&lt;div id=&quot;html_3b4b9852fdd6896764d804bf60c8b9c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5224             latitude:33.0122             pred_result:50.39897537231445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79c1507e03acbdd42ef707149ee4825b.setContent(html_3b4b9852fdd6896764d804bf60c8b9c7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_271c9ac467f7d84635c3992a925c4941.bindPopup(popup_79c1507e03acbdd42ef707149ee4825b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c96289846a985fdef2a4633646822fd = L.circleMarker(\\n\",\n       \"                [32.9735, 112.5003],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_259dfd9f9947c568b769bb66e8174c23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4261d2fee5766b7c2bb67579adf01f70 = $(`&lt;div id=&quot;html_4261d2fee5766b7c2bb67579adf01f70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5003             latitude:32.9735             pred_result:50.524192810058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_259dfd9f9947c568b769bb66e8174c23.setContent(html_4261d2fee5766b7c2bb67579adf01f70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c96289846a985fdef2a4633646822fd.bindPopup(popup_259dfd9f9947c568b769bb66e8174c23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4840a856c026010799bec30481699873 = L.circleMarker(\\n\",\n       \"                [33.027, 112.5573],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdabf241730eef56cfd55420bf7a57d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_42737acf9bbf83b3b26f073262cfc204 = $(`&lt;div id=&quot;html_42737acf9bbf83b3b26f073262cfc204&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5573             latitude:33.027             pred_result:50.213462829589844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdabf241730eef56cfd55420bf7a57d0.setContent(html_42737acf9bbf83b3b26f073262cfc204);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4840a856c026010799bec30481699873.bindPopup(popup_fdabf241730eef56cfd55420bf7a57d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a417b2c081cbbd80c7bfbfc0759bef17 = L.circleMarker(\\n\",\n       \"                [32.9683, 112.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d980706f2ab0edcf10693a8c946eb6a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a4403b557b5f4e61dca3bcd2ab8eb306 = $(`&lt;div id=&quot;html_a4403b557b5f4e61dca3bcd2ab8eb306&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.55             latitude:32.9683             pred_result:50.14211654663086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d980706f2ab0edcf10693a8c946eb6a1.setContent(html_a4403b557b5f4e61dca3bcd2ab8eb306);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a417b2c081cbbd80c7bfbfc0759bef17.bindPopup(popup_d980706f2ab0edcf10693a8c946eb6a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9c567a2d82f5c2aae30b33a1dd543bd3 = L.circleMarker(\\n\",\n       \"                [34.4286, 115.6697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a04a2515ff04ca42ad5655a8f3d416fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae857f19fefeac94f653514a93f0160b = $(`&lt;div id=&quot;html_ae857f19fefeac94f653514a93f0160b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6697             latitude:34.4286             pred_result:48.59830856323242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a04a2515ff04ca42ad5655a8f3d416fe.setContent(html_ae857f19fefeac94f653514a93f0160b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9c567a2d82f5c2aae30b33a1dd543bd3.bindPopup(popup_a04a2515ff04ca42ad5655a8f3d416fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d2b97047bf6a01b13f0bb9c0156096c8 = L.circleMarker(\\n\",\n       \"                [34.429, 115.6558],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2da0d79d8d37bafe31fe5d4bdc4ccca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bbb3664ccce3f692436b2cb8ce80fa6c = $(`&lt;div id=&quot;html_bbb3664ccce3f692436b2cb8ce80fa6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6558             latitude:34.429             pred_result:48.44800567626953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2da0d79d8d37bafe31fe5d4bdc4ccca.setContent(html_bbb3664ccce3f692436b2cb8ce80fa6c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d2b97047bf6a01b13f0bb9c0156096c8.bindPopup(popup_f2da0d79d8d37bafe31fe5d4bdc4ccca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d584f75e678c5639bad2e5534b0a8fa4 = L.circleMarker(\\n\",\n       \"                [34.407, 115.6386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a115613968c0f5b88fd3bd99f70b8820 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9bc97f1493b8f5b9f0f1a7448905606 = $(`&lt;div id=&quot;html_a9bc97f1493b8f5b9f0f1a7448905606&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6386             latitude:34.407             pred_result:48.41501998901367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a115613968c0f5b88fd3bd99f70b8820.setContent(html_a9bc97f1493b8f5b9f0f1a7448905606);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d584f75e678c5639bad2e5534b0a8fa4.bindPopup(popup_a115613968c0f5b88fd3bd99f70b8820)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_040deb9505135740e2a35b840ca5a0d4 = L.circleMarker(\\n\",\n       \"                [34.402, 115.6578],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bccc9c7a5694c4871944f63b695e19db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d55a60454691f751bb93be940aca840b = $(`&lt;div id=&quot;html_d55a60454691f751bb93be940aca840b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.6578             latitude:34.402             pred_result:48.46616744995117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bccc9c7a5694c4871944f63b695e19db.setContent(html_d55a60454691f751bb93be940aca840b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_040deb9505135740e2a35b840ca5a0d4.bindPopup(popup_bccc9c7a5694c4871944f63b695e19db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de8df6b1d4145e395237886b106c3bd2 = L.circleMarker(\\n\",\n       \"                [32.965, 114.018],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d283df741a662c55a46af75b67f40bf6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e4f083f161f0d62f91f240224ab8eb7 = $(`&lt;div id=&quot;html_5e4f083f161f0d62f91f240224ab8eb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.018             latitude:32.965             pred_result:51.08983612060547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d283df741a662c55a46af75b67f40bf6.setContent(html_5e4f083f161f0d62f91f240224ab8eb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de8df6b1d4145e395237886b106c3bd2.bindPopup(popup_d283df741a662c55a46af75b67f40bf6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b06b8d82d68fbfd1e5d795218bf6abcf = L.circleMarker(\\n\",\n       \"                [33.0069, 114.0131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_683d70f300995c582772456df6b203db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_570ac4d191715f2d1383b53bb3ee2a93 = $(`&lt;div id=&quot;html_570ac4d191715f2d1383b53bb3ee2a93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.0131             latitude:33.0069             pred_result:51.662384033203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_683d70f300995c582772456df6b203db.setContent(html_570ac4d191715f2d1383b53bb3ee2a93);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b06b8d82d68fbfd1e5d795218bf6abcf.bindPopup(popup_683d70f300995c582772456df6b203db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ff7c34f29b7ba5b0435cee85bdf5a42 = L.circleMarker(\\n\",\n       \"                [32.996, 113.996],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68c15ad97bb6616cef6ab91021a6fa28 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_24d714ace80cc66709b14b1c98475824 = $(`&lt;div id=&quot;html_24d714ace80cc66709b14b1c98475824&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.996             latitude:32.996             pred_result:51.85696792602539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68c15ad97bb6616cef6ab91021a6fa28.setContent(html_24d714ace80cc66709b14b1c98475824);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ff7c34f29b7ba5b0435cee85bdf5a42.bindPopup(popup_68c15ad97bb6616cef6ab91021a6fa28)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1407cb22dea49a47a9821328ba48f27 = L.circleMarker(\\n\",\n       \"                [30.2352, 115.0625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a9d528b4078b8c8c2b202aef5f47c45b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d1ce01805b07e1746388748c513da50 = $(`&lt;div id=&quot;html_8d1ce01805b07e1746388748c513da50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0625             latitude:30.2352             pred_result:52.74375534057617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a9d528b4078b8c8c2b202aef5f47c45b.setContent(html_8d1ce01805b07e1746388748c513da50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1407cb22dea49a47a9821328ba48f27.bindPopup(popup_a9d528b4078b8c8c2b202aef5f47c45b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbf09070e184576b9d3ae386d547d8be = L.circleMarker(\\n\",\n       \"                [30.2028, 115.0767],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bb1e822b275ae272fb7ac16560555a6d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f01cc00d23eeddde1f6ba44e4c054a4 = $(`&lt;div id=&quot;html_0f01cc00d23eeddde1f6ba44e4c054a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0767             latitude:30.2028             pred_result:52.632179260253906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bb1e822b275ae272fb7ac16560555a6d.setContent(html_0f01cc00d23eeddde1f6ba44e4c054a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbf09070e184576b9d3ae386d547d8be.bindPopup(popup_bb1e822b275ae272fb7ac16560555a6d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c32bbe503471e47ec04a7f3254e9689 = L.circleMarker(\\n\",\n       \"                [30.1765, 114.9551],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_534ea54f4e03a6e31119ace454e76256 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_07545e6fd27429455b9cba72b5c1b0ea = $(`&lt;div id=&quot;html_07545e6fd27429455b9cba72b5c1b0ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9551             latitude:30.1765             pred_result:52.60873794555664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_534ea54f4e03a6e31119ace454e76256.setContent(html_07545e6fd27429455b9cba72b5c1b0ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c32bbe503471e47ec04a7f3254e9689.bindPopup(popup_534ea54f4e03a6e31119ace454e76256)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f0723e2fbdab7bfe601e2098e6e7ac2 = L.circleMarker(\\n\",\n       \"                [30.2043, 114.8949],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2cd000bc07346e38b25b03487c26f02b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_972d83750137f9c9889c991c8c52b3e7 = $(`&lt;div id=&quot;html_972d83750137f9c9889c991c8c52b3e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8949             latitude:30.2043             pred_result:52.213134765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2cd000bc07346e38b25b03487c26f02b.setContent(html_972d83750137f9c9889c991c8c52b3e7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f0723e2fbdab7bfe601e2098e6e7ac2.bindPopup(popup_2cd000bc07346e38b25b03487c26f02b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_deeb09610b927244791a3d4212cd68f1 = L.circleMarker(\\n\",\n       \"                [30.2099, 115.0264],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da9c616c6a4920202bddeea51fc398a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d49e7b3abc7692c043919d1413f3188e = $(`&lt;div id=&quot;html_d49e7b3abc7692c043919d1413f3188e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0264             latitude:30.2099             pred_result:53.219512939453125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da9c616c6a4920202bddeea51fc398a7.setContent(html_d49e7b3abc7692c043919d1413f3188e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_deeb09610b927244791a3d4212cd68f1.bindPopup(popup_da9c616c6a4920202bddeea51fc398a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9a7f1ca89f4d5c53660ad46329ce7ce6 = L.circleMarker(\\n\",\n       \"                [32.395, 111.0419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1c2722b578003b078dadd448c0a23e71 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c82908cfd41e898d9a6cf4458bfc31df = $(`&lt;div id=&quot;html_c82908cfd41e898d9a6cf4458bfc31df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0419             latitude:32.395             pred_result:37.51795196533203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1c2722b578003b078dadd448c0a23e71.setContent(html_c82908cfd41e898d9a6cf4458bfc31df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9a7f1ca89f4d5c53660ad46329ce7ce6.bindPopup(popup_1c2722b578003b078dadd448c0a23e71)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fef3005b0b75138c5cea1d1a8f2b354 = L.circleMarker(\\n\",\n       \"                [32.6494, 110.78],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a8626c8e24a7c36511dda6f71cfde98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59543f500d3a32d14dba34f73460756d = $(`&lt;div id=&quot;html_59543f500d3a32d14dba34f73460756d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.78             latitude:32.6494             pred_result:40.05128479003906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a8626c8e24a7c36511dda6f71cfde98.setContent(html_59543f500d3a32d14dba34f73460756d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fef3005b0b75138c5cea1d1a8f2b354.bindPopup(popup_4a8626c8e24a7c36511dda6f71cfde98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a41cbfc1a32238396746793a5ed6049f = L.circleMarker(\\n\",\n       \"                [32.6389, 110.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ed5f52f47b8efeafbe4bcfa5d4ff048 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af027da0125e1b3b2568dce6f4a20b90 = $(`&lt;div id=&quot;html_af027da0125e1b3b2568dce6f4a20b90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.7258             latitude:32.6389             pred_result:38.88693618774414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ed5f52f47b8efeafbe4bcfa5d4ff048.setContent(html_af027da0125e1b3b2568dce6f4a20b90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a41cbfc1a32238396746793a5ed6049f.bindPopup(popup_5ed5f52f47b8efeafbe4bcfa5d4ff048)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fa567f04299e518b1a3ed89bd59ef311 = L.circleMarker(\\n\",\n       \"                [32.5714, 110.8839],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c218e905d7a97b8f4f580ef6451d24cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d80ed37df0b6165b85003c26614df111 = $(`&lt;div id=&quot;html_d80ed37df0b6165b85003c26614df111&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.8839             latitude:32.5714             pred_result:40.822898864746094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c218e905d7a97b8f4f580ef6451d24cc.setContent(html_d80ed37df0b6165b85003c26614df111);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fa567f04299e518b1a3ed89bd59ef311.bindPopup(popup_c218e905d7a97b8f4f580ef6451d24cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea21963a8fc82ba3fd7ece2aebb085dd = L.circleMarker(\\n\",\n       \"                [32.0197, 112.155],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd05da2effdbbc6a671416a4ca7f7c31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40f5661f6b7f5c39c0f4f2e1eb7b68fc = $(`&lt;div id=&quot;html_40f5661f6b7f5c39c0f4f2e1eb7b68fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.155             latitude:32.0197             pred_result:44.83926010131836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd05da2effdbbc6a671416a4ca7f7c31.setContent(html_40f5661f6b7f5c39c0f4f2e1eb7b68fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea21963a8fc82ba3fd7ece2aebb085dd.bindPopup(popup_cd05da2effdbbc6a671416a4ca7f7c31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88ec8908fa14166bf1c883cbdbdfb591 = L.circleMarker(\\n\",\n       \"                [32.0564, 112.1392],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6df05d4b8c956399e7c1adda5771d904 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9d594353a760a55d8650ee2193f854a = $(`&lt;div id=&quot;html_a9d594353a760a55d8650ee2193f854a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1392             latitude:32.0564             pred_result:44.94758605957031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6df05d4b8c956399e7c1adda5771d904.setContent(html_a9d594353a760a55d8650ee2193f854a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88ec8908fa14166bf1c883cbdbdfb591.bindPopup(popup_6df05d4b8c956399e7c1adda5771d904)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93244d5936051628c37605baac36a144 = L.circleMarker(\\n\",\n       \"                [32.1142, 112.1825],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4d93326b3bf1c4aa2f239bd0643b2db2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f30e6cfcee7b9372127140fb6e81d1a3 = $(`&lt;div id=&quot;html_f30e6cfcee7b9372127140fb6e81d1a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1825             latitude:32.1142             pred_result:45.38860321044922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4d93326b3bf1c4aa2f239bd0643b2db2.setContent(html_f30e6cfcee7b9372127140fb6e81d1a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93244d5936051628c37605baac36a144.bindPopup(popup_4d93326b3bf1c4aa2f239bd0643b2db2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a97568d43279472ba9b6e27c0bb79847 = L.circleMarker(\\n\",\n       \"                [32.0903, 112.2106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c831f9b4aa029b1df804a3e510d824c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_79097dd110b855a4909dc3a67406a6ae = $(`&lt;div id=&quot;html_79097dd110b855a4909dc3a67406a6ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2106             latitude:32.0903             pred_result:45.545570373535156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c831f9b4aa029b1df804a3e510d824c.setContent(html_79097dd110b855a4909dc3a67406a6ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a97568d43279472ba9b6e27c0bb79847.bindPopup(popup_2c831f9b4aa029b1df804a3e510d824c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9ae872cefd3844358046bb2bc802ac8 = L.circleMarker(\\n\",\n       \"                [30.3944, 114.8878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_446d156852ddb26606e9f54349c64ed9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a8dc99b8eb9216bca542575607ff00bc = $(`&lt;div id=&quot;html_a8dc99b8eb9216bca542575607ff00bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8878             latitude:30.3944             pred_result:54.3823356628418             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_446d156852ddb26606e9f54349c64ed9.setContent(html_a8dc99b8eb9216bca542575607ff00bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9ae872cefd3844358046bb2bc802ac8.bindPopup(popup_446d156852ddb26606e9f54349c64ed9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bcabb6a68b34156865e5af9042039c69 = L.circleMarker(\\n\",\n       \"                [30.3714, 114.8989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5cd33bc762bfa016756e7a2031becd25 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_acdce336642fda18c8cc1a5e9b6d264c = $(`&lt;div id=&quot;html_acdce336642fda18c8cc1a5e9b6d264c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8989             latitude:30.3714             pred_result:53.5027961730957             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5cd33bc762bfa016756e7a2031becd25.setContent(html_acdce336642fda18c8cc1a5e9b6d264c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bcabb6a68b34156865e5af9042039c69.bindPopup(popup_5cd33bc762bfa016756e7a2031becd25)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9d396bdb95a078e9fefe97404a789882 = L.circleMarker(\\n\",\n       \"                [30.4133, 114.8131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4edd7db278e8baf643d17accb8f359b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65fedb8ecdf2e0f5f2e54d0953d94630 = $(`&lt;div id=&quot;html_65fedb8ecdf2e0f5f2e54d0953d94630&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8131             latitude:30.4133             pred_result:55.10902786254883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4edd7db278e8baf643d17accb8f359b8.setContent(html_65fedb8ecdf2e0f5f2e54d0953d94630);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9d396bdb95a078e9fefe97404a789882.bindPopup(popup_4edd7db278e8baf643d17accb8f359b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e59f4bb80779643f6b05c1096009c734 = L.circleMarker(\\n\",\n       \"                [31.0483, 112.2014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5af39d017297c0309cd5a328bf7396e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2e6ddaffccde11053701260d6fae8e0 = $(`&lt;div id=&quot;html_b2e6ddaffccde11053701260d6fae8e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2014             latitude:31.0483             pred_result:51.64322280883789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5af39d017297c0309cd5a328bf7396e8.setContent(html_b2e6ddaffccde11053701260d6fae8e0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e59f4bb80779643f6b05c1096009c734.bindPopup(popup_5af39d017297c0309cd5a328bf7396e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_197f3d66fedc63025bb12ebbc0aaffb6 = L.circleMarker(\\n\",\n       \"                [30.9892, 112.1969],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2854f27bea4d98754fe1895d21986d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ed117252f8cf8fbbfb1353828a6caf0 = $(`&lt;div id=&quot;html_5ed117252f8cf8fbbfb1353828a6caf0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1969             latitude:30.9892             pred_result:51.687469482421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2854f27bea4d98754fe1895d21986d1.setContent(html_5ed117252f8cf8fbbfb1353828a6caf0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_197f3d66fedc63025bb12ebbc0aaffb6.bindPopup(popup_e2854f27bea4d98754fe1895d21986d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8c7e249902c716b900a1c560da8e161c = L.circleMarker(\\n\",\n       \"                [31.0386, 112.2211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87671d48b79d63e747c510a4e3da31e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_72329dff36efb0f3310bcd1678447b2b = $(`&lt;div id=&quot;html_72329dff36efb0f3310bcd1678447b2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.2211             latitude:31.0386             pred_result:51.83905792236328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87671d48b79d63e747c510a4e3da31e0.setContent(html_72329dff36efb0f3310bcd1678447b2b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8c7e249902c716b900a1c560da8e161c.bindPopup(popup_87671d48b79d63e747c510a4e3da31e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91a31ef4473be38180731dc168a10cb9 = L.circleMarker(\\n\",\n       \"                [30.9285, 113.9153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff3a6b059afbc17e4060af5cd88cc7a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af23bb8f9076f259ae1c703dd9731a80 = $(`&lt;div id=&quot;html_af23bb8f9076f259ae1c703dd9731a80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.9153             latitude:30.9285             pred_result:47.94697952270508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff3a6b059afbc17e4060af5cd88cc7a4.setContent(html_af23bb8f9076f259ae1c703dd9731a80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91a31ef4473be38180731dc168a10cb9.bindPopup(popup_ff3a6b059afbc17e4060af5cd88cc7a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7cbaae3fdbcaaf1c094bc960dc8d9de3 = L.circleMarker(\\n\",\n       \"                [30.9075, 113.942],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_377c6e86658a5efac982e08a346b77ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3b646b3f288807e8809442467a4b6a5 = $(`&lt;div id=&quot;html_d3b646b3f288807e8809442467a4b6a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.942             latitude:30.9075             pred_result:48.84333038330078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_377c6e86658a5efac982e08a346b77ec.setContent(html_d3b646b3f288807e8809442467a4b6a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7cbaae3fdbcaaf1c094bc960dc8d9de3.bindPopup(popup_377c6e86658a5efac982e08a346b77ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c3afe380bd85cc41293f4bf719f40ba = L.circleMarker(\\n\",\n       \"                [30.4742, 114.9028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e067546841c35154271d725aa674f588 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_64cb3101591ac09bd5a16a18630d6928 = $(`&lt;div id=&quot;html_64cb3101591ac09bd5a16a18630d6928&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9028             latitude:30.4742             pred_result:54.301612854003906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e067546841c35154271d725aa674f588.setContent(html_64cb3101591ac09bd5a16a18630d6928);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c3afe380bd85cc41293f4bf719f40ba.bindPopup(popup_e067546841c35154271d725aa674f588)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fde6018f84a4f8d91f9bfca3f585c476 = L.circleMarker(\\n\",\n       \"                [29.8181, 114.3036],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ed9ffad85eae282bfb0f7630f4297cc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd187821c07198fa53b43d19bdcf3ceb = $(`&lt;div id=&quot;html_dd187821c07198fa53b43d19bdcf3ceb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3036             latitude:29.8181             pred_result:50.527496337890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ed9ffad85eae282bfb0f7630f4297cc4.setContent(html_dd187821c07198fa53b43d19bdcf3ceb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fde6018f84a4f8d91f9bfca3f585c476.bindPopup(popup_ed9ffad85eae282bfb0f7630f4297cc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_68439cb3d194792259cdd410b80e0b45 = L.circleMarker(\\n\",\n       \"                [29.8211, 114.3231],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17f29d42b3f706980f835d011c8108fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5b80a51935d394f2efd89f35e7417620 = $(`&lt;div id=&quot;html_5b80a51935d394f2efd89f35e7417620&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3231             latitude:29.8211             pred_result:50.40890884399414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17f29d42b3f706980f835d011c8108fe.setContent(html_5b80a51935d394f2efd89f35e7417620);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_68439cb3d194792259cdd410b80e0b45.bindPopup(popup_17f29d42b3f706980f835d011c8108fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab77dfe4f09eef8a5be39b62bcb96052 = L.circleMarker(\\n\",\n       \"                [29.8539, 114.2894],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88337e1654fd9c8119f3ee05dba026a8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a7475a290c5fbfd36a1360bbdf3126b7 = $(`&lt;div id=&quot;html_a7475a290c5fbfd36a1360bbdf3126b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2894             latitude:29.8539             pred_result:51.52956771850586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88337e1654fd9c8119f3ee05dba026a8.setContent(html_a7475a290c5fbfd36a1360bbdf3126b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab77dfe4f09eef8a5be39b62bcb96052.bindPopup(popup_88337e1654fd9c8119f3ee05dba026a8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_639621eff0c1f52444e4a58edaa5f2ac = L.circleMarker(\\n\",\n       \"                [29.8686, 114.3372],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_890b07e1f705bbea65cab8e8a8ff9aee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_175d1cf42605ab6007db3ae318e2cd48 = $(`&lt;div id=&quot;html_175d1cf42605ab6007db3ae318e2cd48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3372             latitude:29.8686             pred_result:51.65514373779297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_890b07e1f705bbea65cab8e8a8ff9aee.setContent(html_175d1cf42605ab6007db3ae318e2cd48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_639621eff0c1f52444e4a58edaa5f2ac.bindPopup(popup_890b07e1f705bbea65cab8e8a8ff9aee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2e2b9516a6ccb6a4a45901e753581908 = L.circleMarker(\\n\",\n       \"                [31.7275, 113.3583],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8574ab919b980fdf1e5f2bcccfbe29b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a573aea37fa1d8c23be0a4f4596dd0e = $(`&lt;div id=&quot;html_3a573aea37fa1d8c23be0a4f4596dd0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3583             latitude:31.7275             pred_result:46.05415725708008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8574ab919b980fdf1e5f2bcccfbe29b8.setContent(html_3a573aea37fa1d8c23be0a4f4596dd0e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2e2b9516a6ccb6a4a45901e753581908.bindPopup(popup_8574ab919b980fdf1e5f2bcccfbe29b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c44a0d0faf4ad2f3f0f84faf64b719e6 = L.circleMarker(\\n\",\n       \"                [31.6908, 113.3833],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d57d2d00d035f0a12718952cecb7e79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e309e8bae8a43a8edb45db4c7eeb4a84 = $(`&lt;div id=&quot;html_e309e8bae8a43a8edb45db4c7eeb4a84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3833             latitude:31.6908             pred_result:45.46895980834961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d57d2d00d035f0a12718952cecb7e79.setContent(html_e309e8bae8a43a8edb45db4c7eeb4a84);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c44a0d0faf4ad2f3f0f84faf64b719e6.bindPopup(popup_1d57d2d00d035f0a12718952cecb7e79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ad54a01d9a8cc660ddde2d0426ccc97 = L.circleMarker(\\n\",\n       \"                [31.7308, 113.3983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ffd9e055c0ec6455ec1c5453416d1b3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a4c95284318494220b22c1ca84e8044 = $(`&lt;div id=&quot;html_3a4c95284318494220b22c1ca84e8044&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3983             latitude:31.7308             pred_result:45.66416931152344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ffd9e055c0ec6455ec1c5453416d1b3f.setContent(html_3a4c95284318494220b22c1ca84e8044);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ad54a01d9a8cc660ddde2d0426ccc97.bindPopup(popup_ffd9e055c0ec6455ec1c5453416d1b3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a098f4eb45c27b061981bdcf3a5ad87d = L.circleMarker(\\n\",\n       \"                [30.2989, 109.5039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3124195baf2699af47260db020510a9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0704f0a8f4c76b792c27b832761de971 = $(`&lt;div id=&quot;html_0704f0a8f4c76b792c27b832761de971&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5039             latitude:30.2989             pred_result:39.47417449951172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3124195baf2699af47260db020510a9c.setContent(html_0704f0a8f4c76b792c27b832761de971);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a098f4eb45c27b061981bdcf3a5ad87d.bindPopup(popup_3124195baf2699af47260db020510a9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce8f164b9a320bc1030610f119177cbb = L.circleMarker(\\n\",\n       \"                [30.2819, 109.4689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7a6424f5c19db846bfcd99aaf3873685 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d022622ffd80d3c5d17400f96177f5b5 = $(`&lt;div id=&quot;html_d022622ffd80d3c5d17400f96177f5b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4689             latitude:30.2819             pred_result:39.61934280395508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7a6424f5c19db846bfcd99aaf3873685.setContent(html_d022622ffd80d3c5d17400f96177f5b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce8f164b9a320bc1030610f119177cbb.bindPopup(popup_7a6424f5c19db846bfcd99aaf3873685)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87ca6a401a035f31f58022575c40c281 = L.circleMarker(\\n\",\n       \"                [26.9089, 112.5328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3299dd1e3d47e25c93f4a364cfbcaa44 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02c5cba1a5d3bbf7fa86fadafcfc9f17 = $(`&lt;div id=&quot;html_02c5cba1a5d3bbf7fa86fadafcfc9f17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5328             latitude:26.9089             pred_result:42.850502014160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3299dd1e3d47e25c93f4a364cfbcaa44.setContent(html_02c5cba1a5d3bbf7fa86fadafcfc9f17);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87ca6a401a035f31f58022575c40c281.bindPopup(popup_3299dd1e3d47e25c93f4a364cfbcaa44)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a83c212760bc8f4f19e128ec41b7add6 = L.circleMarker(\\n\",\n       \"                [26.9258, 112.6194],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71618b01fa7f20a6fc8213faf847dcfa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2eb1c2929a713cdb185507518d361aff = $(`&lt;div id=&quot;html_2eb1c2929a713cdb185507518d361aff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6194             latitude:26.9258             pred_result:42.9434928894043             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71618b01fa7f20a6fc8213faf847dcfa.setContent(html_2eb1c2929a713cdb185507518d361aff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a83c212760bc8f4f19e128ec41b7add6.bindPopup(popup_71618b01fa7f20a6fc8213faf847dcfa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5102f6ea6baa6af30092883b5dfb7111 = L.circleMarker(\\n\",\n       \"                [26.8956, 112.6211],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ab957bebf57e5e1c9ee3951042f8b6a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_64e3d877e6e01a7f0ab40026034d976d = $(`&lt;div id=&quot;html_64e3d877e6e01a7f0ab40026034d976d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6211             latitude:26.8956             pred_result:42.853431701660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ab957bebf57e5e1c9ee3951042f8b6a.setContent(html_64e3d877e6e01a7f0ab40026034d976d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5102f6ea6baa6af30092883b5dfb7111.bindPopup(popup_6ab957bebf57e5e1c9ee3951042f8b6a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f749c9dd21b6096fa88bb86d1b8264c = L.circleMarker(\\n\",\n       \"                [26.8733, 112.6197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3aeacc0703a98ae11e2a0759fae55da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_729a3fbb70f1b97c61239765c75b5839 = $(`&lt;div id=&quot;html_729a3fbb70f1b97c61239765c75b5839&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6197             latitude:26.8733             pred_result:42.74120330810547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3aeacc0703a98ae11e2a0759fae55da.setContent(html_729a3fbb70f1b97c61239765c75b5839);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f749c9dd21b6096fa88bb86d1b8264c.bindPopup(popup_f3aeacc0703a98ae11e2a0759fae55da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9441e0a50c262b5099fc351e49aee77c = L.circleMarker(\\n\",\n       \"                [26.8919, 112.6006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c54ef00d59ecd18aa1ea7081a49b0b74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d0eb220e0a9fdc7fc377e2b0c705812 = $(`&lt;div id=&quot;html_2d0eb220e0a9fdc7fc377e2b0c705812&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6006             latitude:26.8919             pred_result:42.71537399291992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c54ef00d59ecd18aa1ea7081a49b0b74.setContent(html_2d0eb220e0a9fdc7fc377e2b0c705812);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9441e0a50c262b5099fc351e49aee77c.bindPopup(popup_c54ef00d59ecd18aa1ea7081a49b0b74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c135ba4bb277b76ac27fb68f005efc9 = L.circleMarker(\\n\",\n       \"                [26.9056, 112.5664],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_deee6277a549cdaa0ffdf73db2b8223f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_927747646f1848b45563712a5bfdb190 = $(`&lt;div id=&quot;html_927747646f1848b45563712a5bfdb190&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.5664             latitude:26.9056             pred_result:42.70146560668945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_deee6277a549cdaa0ffdf73db2b8223f.setContent(html_927747646f1848b45563712a5bfdb190);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c135ba4bb277b76ac27fb68f005efc9.bindPopup(popup_deee6277a549cdaa0ffdf73db2b8223f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9744aac2597ecf9d7e3cc4680241abd9 = L.circleMarker(\\n\",\n       \"                [27.3033, 111.5239],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33ccf896c6b4d7f56851137fd7bb2aa8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3464772cffd59b5dc1eb6d1512ffe394 = $(`&lt;div id=&quot;html_3464772cffd59b5dc1eb6d1512ffe394&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5239             latitude:27.3033             pred_result:39.291748046875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33ccf896c6b4d7f56851137fd7bb2aa8.setContent(html_3464772cffd59b5dc1eb6d1512ffe394);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9744aac2597ecf9d7e3cc4680241abd9.bindPopup(popup_33ccf896c6b4d7f56851137fd7bb2aa8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e1ab8dff630d88e56cdf04c4b798479 = L.circleMarker(\\n\",\n       \"                [27.2317, 111.4733],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c09b528d15794a1b550b654bdd193b47 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cb3b0721ce6b172062fce8cb8a72d9b7 = $(`&lt;div id=&quot;html_cb3b0721ce6b172062fce8cb8a72d9b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4733             latitude:27.2317             pred_result:39.00604248046875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c09b528d15794a1b550b654bdd193b47.setContent(html_cb3b0721ce6b172062fce8cb8a72d9b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e1ab8dff630d88e56cdf04c4b798479.bindPopup(popup_c09b528d15794a1b550b654bdd193b47)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e8b40db7b0272786a0f6599b5a66f1e = L.circleMarker(\\n\",\n       \"                [27.2582, 111.4908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee6b7b8054f1e8b7d099ee6b74b1dcd8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8c6ef44f41a16c483bc6c928dc4eff3b = $(`&lt;div id=&quot;html_8c6ef44f41a16c483bc6c928dc4eff3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4908             latitude:27.2582             pred_result:39.07067108154297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee6b7b8054f1e8b7d099ee6b74b1dcd8.setContent(html_8c6ef44f41a16c483bc6c928dc4eff3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e8b40db7b0272786a0f6599b5a66f1e.bindPopup(popup_ee6b7b8054f1e8b7d099ee6b74b1dcd8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0515d0b21e12a2049f84c110acc80ba1 = L.circleMarker(\\n\",\n       \"                [27.2537, 111.4503],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_687b1aef4d8f08b073d4fd819e7d825a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90f1817ab560762d116c3af90f5845e4 = $(`&lt;div id=&quot;html_90f1817ab560762d116c3af90f5845e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4503             latitude:27.2537             pred_result:38.91773223876953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_687b1aef4d8f08b073d4fd819e7d825a.setContent(html_90f1817ab560762d116c3af90f5845e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0515d0b21e12a2049f84c110acc80ba1.bindPopup(popup_687b1aef4d8f08b073d4fd819e7d825a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a35d27ae8ea1266e49992bb939d29953 = L.circleMarker(\\n\",\n       \"                [27.2272, 111.4328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b799b38da3f76431576e888b9aa5a2bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7fe09a58304d31bce21b77fee82ffb48 = $(`&lt;div id=&quot;html_7fe09a58304d31bce21b77fee82ffb48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.4328             latitude:27.2272             pred_result:38.71044158935547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b799b38da3f76431576e888b9aa5a2bf.setContent(html_7fe09a58304d31bce21b77fee82ffb48);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a35d27ae8ea1266e49992bb939d29953.bindPopup(popup_b799b38da3f76431576e888b9aa5a2bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_834444d3ce209a9f23e5564d89aab2dc = L.circleMarker(\\n\",\n       \"                [28.6428, 112.4067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30bfc95648eee80148416e72d8b3daba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a66abefc0ff73a05680236daafcce432 = $(`&lt;div id=&quot;html_a66abefc0ff73a05680236daafcce432&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4067             latitude:28.6428             pred_result:43.35961151123047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30bfc95648eee80148416e72d8b3daba.setContent(html_a66abefc0ff73a05680236daafcce432);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_834444d3ce209a9f23e5564d89aab2dc.bindPopup(popup_30bfc95648eee80148416e72d8b3daba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5cf005dd75ad1c45f0a8b6dd942d4a31 = L.circleMarker(\\n\",\n       \"                [28.5808, 112.3458],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_71f150c7a7c5e9c6a2c07cf276545c15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f619f2430aa68cf1abee036d3076b9ed = $(`&lt;div id=&quot;html_f619f2430aa68cf1abee036d3076b9ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3458             latitude:28.5808             pred_result:42.73053741455078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_71f150c7a7c5e9c6a2c07cf276545c15.setContent(html_f619f2430aa68cf1abee036d3076b9ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5cf005dd75ad1c45f0a8b6dd942d4a31.bindPopup(popup_71f150c7a7c5e9c6a2c07cf276545c15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_987f10e0af40391b35d7a80d290a43df = L.circleMarker(\\n\",\n       \"                [28.56, 112.3439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_faa920092b425d3383584f2064630d54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f8053b2137a57fb857360cb1d9351eb = $(`&lt;div id=&quot;html_8f8053b2137a57fb857360cb1d9351eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3439             latitude:28.56             pred_result:42.71913528442383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_faa920092b425d3383584f2064630d54.setContent(html_8f8053b2137a57fb857360cb1d9351eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_987f10e0af40391b35d7a80d290a43df.bindPopup(popup_faa920092b425d3383584f2064630d54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1d4f5feed91f2e6e1def8fec2d5f6db = L.circleMarker(\\n\",\n       \"                [28.6047, 112.3347],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a735f3c358ebbd5a82aca25893cf4e99 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_06400bb41b28380f9f2bc08ad1d3da9d = $(`&lt;div id=&quot;html_06400bb41b28380f9f2bc08ad1d3da9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3347             latitude:28.6047             pred_result:42.90855026245117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a735f3c358ebbd5a82aca25893cf4e99.setContent(html_06400bb41b28380f9f2bc08ad1d3da9d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1d4f5feed91f2e6e1def8fec2d5f6db.bindPopup(popup_a735f3c358ebbd5a82aca25893cf4e99)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0aad610eae46079054dd1b73b13796ba = L.circleMarker(\\n\",\n       \"                [28.5819, 112.3744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e920013867c6b63d6fde452ab6d54e9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_974d4534f2e4290c956857b2b79d5e65 = $(`&lt;div id=&quot;html_974d4534f2e4290c956857b2b79d5e65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3744             latitude:28.5819             pred_result:42.72553634643555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e920013867c6b63d6fde452ab6d54e9c.setContent(html_974d4534f2e4290c956857b2b79d5e65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0aad610eae46079054dd1b73b13796ba.bindPopup(popup_e920013867c6b63d6fde452ab6d54e9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a74d45ab208df80d5511628c3b252e45 = L.circleMarker(\\n\",\n       \"                [25.9061, 113.0073],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee470e6985e8dc9492325be41f9baeb3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1c4c3fd4f4e4858d690c26d2ed78df1 = $(`&lt;div id=&quot;html_c1c4c3fd4f4e4858d690c26d2ed78df1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0073             latitude:25.9061             pred_result:40.89735412597656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee470e6985e8dc9492325be41f9baeb3.setContent(html_c1c4c3fd4f4e4858d690c26d2ed78df1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a74d45ab208df80d5511628c3b252e45.bindPopup(popup_ee470e6985e8dc9492325be41f9baeb3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_42f28cb7c68d6f776f7b25d46f9a13d9 = L.circleMarker(\\n\",\n       \"                [25.8226, 113.0116],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e89582f9bd00387569d75a9311692c0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e362ef86ec9a4c814b66656f181562ce = $(`&lt;div id=&quot;html_e362ef86ec9a4c814b66656f181562ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0116             latitude:25.8226             pred_result:41.74091339111328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e89582f9bd00387569d75a9311692c0f.setContent(html_e362ef86ec9a4c814b66656f181562ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_42f28cb7c68d6f776f7b25d46f9a13d9.bindPopup(popup_e89582f9bd00387569d75a9311692c0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2bc200a23619351d060681e4978a9a8e = L.circleMarker(\\n\",\n       \"                [25.8179, 113.0119],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_813d0d5910437db3ec58b635d7cd6253 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7cc1a4ca415ed68ace833a5a51ee8771 = $(`&lt;div id=&quot;html_7cc1a4ca415ed68ace833a5a51ee8771&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0119             latitude:25.8179             pred_result:42.31182098388672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_813d0d5910437db3ec58b635d7cd6253.setContent(html_7cc1a4ca415ed68ace833a5a51ee8771);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2bc200a23619351d060681e4978a9a8e.bindPopup(popup_813d0d5910437db3ec58b635d7cd6253)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9244dd8aa019c977d137437afd8e39c = L.circleMarker(\\n\",\n       \"                [25.8071, 113.0383],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0011d744cf6601740d463fea281e4b49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e187298031c5d871ec12c0257ada6234 = $(`&lt;div id=&quot;html_e187298031c5d871ec12c0257ada6234&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0383             latitude:25.8071             pred_result:41.291194915771484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0011d744cf6601740d463fea281e4b49.setContent(html_e187298031c5d871ec12c0257ada6234);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9244dd8aa019c977d137437afd8e39c.bindPopup(popup_0011d744cf6601740d463fea281e4b49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3402b5f773af53b3fd9d71d0495e7a30 = L.circleMarker(\\n\",\n       \"                [25.7759, 113.0348],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2413122c2b39a3bee50a3d5a7e873457 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d6cf9cc162005e9d9ae3120d3bb215d = $(`&lt;div id=&quot;html_5d6cf9cc162005e9d9ae3120d3bb215d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0348             latitude:25.7759             pred_result:42.295162200927734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2413122c2b39a3bee50a3d5a7e873457.setContent(html_5d6cf9cc162005e9d9ae3120d3bb215d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3402b5f773af53b3fd9d71d0495e7a30.bindPopup(popup_2413122c2b39a3bee50a3d5a7e873457)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_52cedce91e1e583ff0370525d88eebb4 = L.circleMarker(\\n\",\n       \"                [26.2081, 111.6217],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2bd2dfdc37873e8bc0ae48424400b909 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d73f534a90912c85fba814b9452bcf4d = $(`&lt;div id=&quot;html_d73f534a90912c85fba814b9452bcf4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6217             latitude:26.2081             pred_result:39.57169723510742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2bd2dfdc37873e8bc0ae48424400b909.setContent(html_d73f534a90912c85fba814b9452bcf4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_52cedce91e1e583ff0370525d88eebb4.bindPopup(popup_2bd2dfdc37873e8bc0ae48424400b909)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_91a7d908397f24189a030d914d1e027b = L.circleMarker(\\n\",\n       \"                [26.4214, 111.6156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_720a63b53489047eb960a3f01944405e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee996a21aac9663df9a7f567572f3de5 = $(`&lt;div id=&quot;html_ee996a21aac9663df9a7f567572f3de5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6156             latitude:26.4214             pred_result:39.85670471191406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_720a63b53489047eb960a3f01944405e.setContent(html_ee996a21aac9663df9a7f567572f3de5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_91a7d908397f24189a030d914d1e027b.bindPopup(popup_720a63b53489047eb960a3f01944405e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7bf390ca1b0c7ffe581b0f933f1130a3 = L.circleMarker(\\n\",\n       \"                [26.2331, 111.6236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_659dba2f9e034f7cf96748bec3ff4e68 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18f7461e7d311dbc7e7e1d85fd5102bd = $(`&lt;div id=&quot;html_18f7461e7d311dbc7e7e1d85fd5102bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.6236             latitude:26.2331             pred_result:39.429447174072266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_659dba2f9e034f7cf96748bec3ff4e68.setContent(html_18f7461e7d311dbc7e7e1d85fd5102bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7bf390ca1b0c7ffe581b0f933f1130a3.bindPopup(popup_659dba2f9e034f7cf96748bec3ff4e68)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_123812942cc69b511cb19ee2b9cf68bb = L.circleMarker(\\n\",\n       \"                [26.4364, 111.5992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_644ac97fc4f7c07e6bf7dac12d954af8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3157bfcd7f5763338c53363e894b7302 = $(`&lt;div id=&quot;html_3157bfcd7f5763338c53363e894b7302&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5992             latitude:26.4364             pred_result:39.6476936340332             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_644ac97fc4f7c07e6bf7dac12d954af8.setContent(html_3157bfcd7f5763338c53363e894b7302);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_123812942cc69b511cb19ee2b9cf68bb.bindPopup(popup_644ac97fc4f7c07e6bf7dac12d954af8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f11ccd84d197b61609f0a7d36b332efc = L.circleMarker(\\n\",\n       \"                [26.4519, 111.5989],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0be499df8a46c24ce28f8001cda99d23 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_09debfd99c2c2ac5839f37855f220a13 = $(`&lt;div id=&quot;html_09debfd99c2c2ac5839f37855f220a13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5989             latitude:26.4519             pred_result:39.56336212158203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0be499df8a46c24ce28f8001cda99d23.setContent(html_09debfd99c2c2ac5839f37855f220a13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f11ccd84d197b61609f0a7d36b332efc.bindPopup(popup_0be499df8a46c24ce28f8001cda99d23)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_341c6dd42e335e3277283de5b0d7fefe = L.circleMarker(\\n\",\n       \"                [27.5733, 109.9333],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c06c1d201ed3c5c1457589ad2beb887 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6675b61a9bbb0290daec16bb5692ed97 = $(`&lt;div id=&quot;html_6675b61a9bbb0290daec16bb5692ed97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9333             latitude:27.5733             pred_result:40.19917297363281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c06c1d201ed3c5c1457589ad2beb887.setContent(html_6675b61a9bbb0290daec16bb5692ed97);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_341c6dd42e335e3277283de5b0d7fefe.bindPopup(popup_8c06c1d201ed3c5c1457589ad2beb887)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d18d33f9658cd5cff6ba3c0fee19462f = L.circleMarker(\\n\",\n       \"                [27.5444, 109.9453],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e72fdb0e05248b96273e365647b6b749 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ce5268836840a51f93768f0f6b2b343f = $(`&lt;div id=&quot;html_ce5268836840a51f93768f0f6b2b343f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9453             latitude:27.5444             pred_result:40.25581359863281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e72fdb0e05248b96273e365647b6b749.setContent(html_ce5268836840a51f93768f0f6b2b343f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d18d33f9658cd5cff6ba3c0fee19462f.bindPopup(popup_e72fdb0e05248b96273e365647b6b749)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a44829cd188104c5549e77d1fcd0805 = L.circleMarker(\\n\",\n       \"                [27.5342, 109.9792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68397aa9bf4b82a3f74507b3e24f1bde = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25c49f52afd4ae4c02d9316523ee96a7 = $(`&lt;div id=&quot;html_25c49f52afd4ae4c02d9316523ee96a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9792             latitude:27.5342             pred_result:39.83368682861328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68397aa9bf4b82a3f74507b3e24f1bde.setContent(html_25c49f52afd4ae4c02d9316523ee96a7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a44829cd188104c5549e77d1fcd0805.bindPopup(popup_68397aa9bf4b82a3f74507b3e24f1bde)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6c35cf6cbe1d60309d581f705d7ec43c = L.circleMarker(\\n\",\n       \"                [27.5578, 109.9972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3df033f91de22c6233228b9d8ff7fc35 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1611cd50652d0e53e8251cc0ba04174 = $(`&lt;div id=&quot;html_c1611cd50652d0e53e8251cc0ba04174&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9972             latitude:27.5578             pred_result:39.84547424316406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3df033f91de22c6233228b9d8ff7fc35.setContent(html_c1611cd50652d0e53e8251cc0ba04174);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6c35cf6cbe1d60309d581f705d7ec43c.bindPopup(popup_3df033f91de22c6233228b9d8ff7fc35)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_81fe56a3fe8c8e69339621bb15636f55 = L.circleMarker(\\n\",\n       \"                [27.583, 110.0394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3a351cd89609b0c4d9f081c6401726da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_97ba84e00a815abbd09be0f3ae1914b8 = $(`&lt;div id=&quot;html_97ba84e00a815abbd09be0f3ae1914b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.0394             latitude:27.583             pred_result:39.667476654052734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3a351cd89609b0c4d9f081c6401726da.setContent(html_97ba84e00a815abbd09be0f3ae1914b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_81fe56a3fe8c8e69339621bb15636f55.bindPopup(popup_3a351cd89609b0c4d9f081c6401726da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_687a500a3f3614e345f5e5089b46a134 = L.circleMarker(\\n\",\n       \"                [27.725, 111.9975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa8087c066ebd443e8cb55a476c2d6a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fcc57b5f174aa227904976c155755122 = $(`&lt;div id=&quot;html_fcc57b5f174aa227904976c155755122&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9975             latitude:27.725             pred_result:40.24220275878906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa8087c066ebd443e8cb55a476c2d6a2.setContent(html_fcc57b5f174aa227904976c155755122);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_687a500a3f3614e345f5e5089b46a134.bindPopup(popup_fa8087c066ebd443e8cb55a476c2d6a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2244283d93490902325c25af5adc77c = L.circleMarker(\\n\",\n       \"                [27.7314, 112.0194],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f302830ae2aaf8bc929211a7b2f5b840 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1187b58be9f2d40d7fdb08344ffc2f00 = $(`&lt;div id=&quot;html_1187b58be9f2d40d7fdb08344ffc2f00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.0194             latitude:27.7314             pred_result:40.311092376708984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f302830ae2aaf8bc929211a7b2f5b840.setContent(html_1187b58be9f2d40d7fdb08344ffc2f00);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2244283d93490902325c25af5adc77c.bindPopup(popup_f302830ae2aaf8bc929211a7b2f5b840)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38966bf557957b6b03265781e76da39a = L.circleMarker(\\n\",\n       \"                [27.7569, 111.9561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6fd83a0bda08001465859ffe266cc12 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_edcc5371bbd2f375004aaf769f2acaaa = $(`&lt;div id=&quot;html_edcc5371bbd2f375004aaf769f2acaaa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9561             latitude:27.7569             pred_result:40.17191696166992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6fd83a0bda08001465859ffe266cc12.setContent(html_edcc5371bbd2f375004aaf769f2acaaa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38966bf557957b6b03265781e76da39a.bindPopup(popup_c6fd83a0bda08001465859ffe266cc12)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80e05c27129f4f511c35e8321b3ea72f = L.circleMarker(\\n\",\n       \"                [27.7044, 111.9892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b95cd3b7aa2691a9903350410ee70e9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4a9ce7f927e05f46458e29efbddf130 = $(`&lt;div id=&quot;html_c4a9ce7f927e05f46458e29efbddf130&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.9892             latitude:27.7044             pred_result:40.32162857055664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b95cd3b7aa2691a9903350410ee70e9.setContent(html_c4a9ce7f927e05f46458e29efbddf130);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80e05c27129f4f511c35e8321b3ea72f.bindPopup(popup_2b95cd3b7aa2691a9903350410ee70e9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9187c0afef71fc851adf62ea1fbe7a7f = L.circleMarker(\\n\",\n       \"                [28.2558, 109.6414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07b84db1f30784c75b806d2f47c5b944 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08a8189b1004c88028593b6ed3de8dce = $(`&lt;div id=&quot;html_08a8189b1004c88028593b6ed3de8dce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6414             latitude:28.2558             pred_result:42.403648376464844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07b84db1f30784c75b806d2f47c5b944.setContent(html_08a8189b1004c88028593b6ed3de8dce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9187c0afef71fc851adf62ea1fbe7a7f.bindPopup(popup_07b84db1f30784c75b806d2f47c5b944)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3f80a80c45efecb8374adff3365e17d6 = L.circleMarker(\\n\",\n       \"                [28.3169, 109.7325],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3791fddf46209d4ccf4c9114c206805a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9a381aece6007766f3cbb9bbe63c92ed = $(`&lt;div id=&quot;html_9a381aece6007766f3cbb9bbe63c92ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7325             latitude:28.3169             pred_result:43.112342834472656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3791fddf46209d4ccf4c9114c206805a.setContent(html_9a381aece6007766f3cbb9bbe63c92ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3f80a80c45efecb8374adff3365e17d6.bindPopup(popup_3791fddf46209d4ccf4c9114c206805a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_09955d09dfcc85ef36e81d4f7f7cfb8d = L.circleMarker(\\n\",\n       \"                [28.2675, 109.6958],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ba358dad74238f846f1e5244f9a1df2a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_536011d2fa3b2a6ff387a17824c8671c = $(`&lt;div id=&quot;html_536011d2fa3b2a6ff387a17824c8671c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6958             latitude:28.2675             pred_result:43.08098220825195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ba358dad74238f846f1e5244f9a1df2a.setContent(html_536011d2fa3b2a6ff387a17824c8671c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_09955d09dfcc85ef36e81d4f7f7cfb8d.bindPopup(popup_ba358dad74238f846f1e5244f9a1df2a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a377629eb6220e3274288fddd2cc4b8 = L.circleMarker(\\n\",\n       \"                [23.4792, 111.2897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7801859cd9e7e0cb615ba36e3b5fc49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f98f2bb993aa5c2e741e7e753f80bc62 = $(`&lt;div id=&quot;html_f98f2bb993aa5c2e741e7e753f80bc62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2897             latitude:23.4792             pred_result:35.31077575683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7801859cd9e7e0cb615ba36e3b5fc49.setContent(html_f98f2bb993aa5c2e741e7e753f80bc62);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a377629eb6220e3274288fddd2cc4b8.bindPopup(popup_c7801859cd9e7e0cb615ba36e3b5fc49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a4c0dddf8dd83ff0040cd1a94c5a3bb = L.circleMarker(\\n\",\n       \"                [23.475, 111.3178],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d9c6f51a98525234a8cd2c83fe5b1e25 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_979e263261dd92af5761507d3d3c567d = $(`&lt;div id=&quot;html_979e263261dd92af5761507d3d3c567d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.3178             latitude:23.475             pred_result:34.91412353515625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d9c6f51a98525234a8cd2c83fe5b1e25.setContent(html_979e263261dd92af5761507d3d3c567d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a4c0dddf8dd83ff0040cd1a94c5a3bb.bindPopup(popup_d9c6f51a98525234a8cd2c83fe5b1e25)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e04cb3c2a24ee6d21d95b6737e12523 = L.circleMarker(\\n\",\n       \"                [23.415, 111.2353],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c996dff7fe7a0af7763bbe897dd55d06 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7544d249b2032f95e57ecf681869cab9 = $(`&lt;div id=&quot;html_7544d249b2032f95e57ecf681869cab9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.2353             latitude:23.415             pred_result:34.9310188293457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c996dff7fe7a0af7763bbe897dd55d06.setContent(html_7544d249b2032f95e57ecf681869cab9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e04cb3c2a24ee6d21d95b6737e12523.bindPopup(popup_c996dff7fe7a0af7763bbe897dd55d06)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24cdf3a1902768254c7facebc2dd4bcc = L.circleMarker(\\n\",\n       \"                [23.4794, 111.26],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1206a3d63f6f1770dbdee10aeeac4a8c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ea491060385a3f591c2cf9929780421 = $(`&lt;div id=&quot;html_2ea491060385a3f591c2cf9929780421&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.26             latitude:23.4794             pred_result:35.16916275024414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1206a3d63f6f1770dbdee10aeeac4a8c.setContent(html_2ea491060385a3f591c2cf9929780421);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24cdf3a1902768254c7facebc2dd4bcc.bindPopup(popup_1206a3d63f6f1770dbdee10aeeac4a8c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2bfdc7b55954fecc6875fbf7e273906b = L.circleMarker(\\n\",\n       \"                [21.7631, 108.3511],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff9340d1ae24badffcbc2b8cf34fd424 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8aeb98f62f20d57a0bbb378cbca49071 = $(`&lt;div id=&quot;html_8aeb98f62f20d57a0bbb378cbca49071&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.3511             latitude:21.7631             pred_result:27.762235641479492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff9340d1ae24badffcbc2b8cf34fd424.setContent(html_8aeb98f62f20d57a0bbb378cbca49071);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2bfdc7b55954fecc6875fbf7e273906b.bindPopup(popup_ff9340d1ae24badffcbc2b8cf34fd424)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ecc41cfb885bec412a163d304652b2d = L.circleMarker(\\n\",\n       \"                [21.9667, 108.6236],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_40f2c1d22832709b11414d1d43e86934 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8907ddb3e39664c1fff0f6a671141a7b = $(`&lt;div id=&quot;html_8907ddb3e39664c1fff0f6a671141a7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6236             latitude:21.9667             pred_result:27.79110336303711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_40f2c1d22832709b11414d1d43e86934.setContent(html_8907ddb3e39664c1fff0f6a671141a7b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ecc41cfb885bec412a163d304652b2d.bindPopup(popup_40f2c1d22832709b11414d1d43e86934)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56a62a08fb790483a4bd8643b72357fa = L.circleMarker(\\n\",\n       \"                [21.9508, 108.6553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_371e9fad23adf6f5ee0c53101adf3023 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3534e94b8d045f3f2053e10f8bbc08d = $(`&lt;div id=&quot;html_d3534e94b8d045f3f2053e10f8bbc08d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.6553             latitude:21.9508             pred_result:27.338964462280273             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_371e9fad23adf6f5ee0c53101adf3023.setContent(html_d3534e94b8d045f3f2053e10f8bbc08d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56a62a08fb790483a4bd8643b72357fa.bindPopup(popup_371e9fad23adf6f5ee0c53101adf3023)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3683e71fe22b9a961cf598af3d71960 = L.circleMarker(\\n\",\n       \"                [23.1478, 109.5681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_387232e55bc9d98bbc4174c2d9b3a8f3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f11ec88e825a12adf8ccec0e7dc68b87 = $(`&lt;div id=&quot;html_f11ec88e825a12adf8ccec0e7dc68b87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5681             latitude:23.1478             pred_result:31.21417236328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_387232e55bc9d98bbc4174c2d9b3a8f3.setContent(html_f11ec88e825a12adf8ccec0e7dc68b87);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3683e71fe22b9a961cf598af3d71960.bindPopup(popup_387232e55bc9d98bbc4174c2d9b3a8f3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e724c9ec4d9ebf0e002aac35f13c113a = L.circleMarker(\\n\",\n       \"                [23.0672, 109.6042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99c9f9d6d102601d1882f219b2cb6016 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e7a95db725cd391a3ccd25a297a85115 = $(`&lt;div id=&quot;html_e7a95db725cd391a3ccd25a297a85115&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6042             latitude:23.0672             pred_result:30.311424255371094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99c9f9d6d102601d1882f219b2cb6016.setContent(html_e7a95db725cd391a3ccd25a297a85115);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e724c9ec4d9ebf0e002aac35f13c113a.bindPopup(popup_99c9f9d6d102601d1882f219b2cb6016)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b8431cc23fdc4b4ccaf692b504c4edb0 = L.circleMarker(\\n\",\n       \"                [23.0944, 109.6014],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d57d8232888888b634d3b4f636da28b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_abf5046387e64c9c061dc15dd6f04764 = $(`&lt;div id=&quot;html_abf5046387e64c9c061dc15dd6f04764&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.6014             latitude:23.0944             pred_result:30.425514221191406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d57d8232888888b634d3b4f636da28b0.setContent(html_abf5046387e64c9c061dc15dd6f04764);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b8431cc23fdc4b4ccaf692b504c4edb0.bindPopup(popup_d57d8232888888b634d3b4f636da28b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e19fb3a35a180be318c0c96df62df6d = L.circleMarker(\\n\",\n       \"                [23.1036, 109.5683],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50536ff5a8dc34856d03d79888fcacfd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0c01307c349f3b3a5d541bb3a303d0f = $(`&lt;div id=&quot;html_d0c01307c349f3b3a5d541bb3a303d0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5683             latitude:23.1036             pred_result:32.65899658203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50536ff5a8dc34856d03d79888fcacfd.setContent(html_d0c01307c349f3b3a5d541bb3a303d0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e19fb3a35a180be318c0c96df62df6d.bindPopup(popup_50536ff5a8dc34856d03d79888fcacfd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce7f37b3da91e0ba27ca6742c6dc3c9f = L.circleMarker(\\n\",\n       \"                [22.7019, 110.1106],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d31c2a7a24bdef59a9a778da5d2ee58b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eac1cb4fe541d918e1b39ac8522a44d3 = $(`&lt;div id=&quot;html_eac1cb4fe541d918e1b39ac8522a44d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1106             latitude:22.7019             pred_result:31.857624053955078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d31c2a7a24bdef59a9a778da5d2ee58b.setContent(html_eac1cb4fe541d918e1b39ac8522a44d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce7f37b3da91e0ba27ca6742c6dc3c9f.bindPopup(popup_d31c2a7a24bdef59a9a778da5d2ee58b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_528ca540aeee6a56b2e31080432585d4 = L.circleMarker(\\n\",\n       \"                [22.6411, 110.1675],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3d746fe5bd379de297bca6db15d652a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f82316ed45c00baa8b32e3763f572dd = $(`&lt;div id=&quot;html_3f82316ed45c00baa8b32e3763f572dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1675             latitude:22.6411             pred_result:31.598995208740234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3d746fe5bd379de297bca6db15d652a.setContent(html_3f82316ed45c00baa8b32e3763f572dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_528ca540aeee6a56b2e31080432585d4.bindPopup(popup_f3d746fe5bd379de297bca6db15d652a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab1f0dd3f1e81037aa723c007e7918a1 = L.circleMarker(\\n\",\n       \"                [22.6164, 110.1433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec492790903ac98c73341094e5f4e848 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30bdd3652690e61eaca1216f044b6e92 = $(`&lt;div id=&quot;html_30bdd3652690e61eaca1216f044b6e92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.1433             latitude:22.6164             pred_result:31.40724754333496             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec492790903ac98c73341094e5f4e848.setContent(html_30bdd3652690e61eaca1216f044b6e92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab1f0dd3f1e81037aa723c007e7918a1.bindPopup(popup_ec492790903ac98c73341094e5f4e848)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_234aa7cb3597c6034b55cca59bccbb2d = L.circleMarker(\\n\",\n       \"                [23.9011, 106.6103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6645e1834e14766aee4a87870e242970 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd6b2358b3bf0b084be2905e15d705a4 = $(`&lt;div id=&quot;html_bd6b2358b3bf0b084be2905e15d705a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6103             latitude:23.9011             pred_result:33.2933464050293             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6645e1834e14766aee4a87870e242970.setContent(html_bd6b2358b3bf0b084be2905e15d705a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_234aa7cb3597c6034b55cca59bccbb2d.bindPopup(popup_6645e1834e14766aee4a87870e242970)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fc057d115605e3d899aadba46427a2c = L.circleMarker(\\n\",\n       \"                [23.8844, 106.6527],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_765ebf48815564a213fbb8d4b2c7ccf6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5885a9cc982683e0c0893eb0509731e9 = $(`&lt;div id=&quot;html_5885a9cc982683e0c0893eb0509731e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6527             latitude:23.8844             pred_result:34.45268630981445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_765ebf48815564a213fbb8d4b2c7ccf6.setContent(html_5885a9cc982683e0c0893eb0509731e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fc057d115605e3d899aadba46427a2c.bindPopup(popup_765ebf48815564a213fbb8d4b2c7ccf6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3391a1c07992e0ad4a6514facfd83b36 = L.circleMarker(\\n\",\n       \"                [24.4175, 111.5269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7094ef2230f59cbc044bb315d6a4d52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf4fa4b2212a7e8d707f2a2d020a00ea = $(`&lt;div id=&quot;html_bf4fa4b2212a7e8d707f2a2d020a00ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5269             latitude:24.4175             pred_result:37.94830322265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7094ef2230f59cbc044bb315d6a4d52.setContent(html_bf4fa4b2212a7e8d707f2a2d020a00ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3391a1c07992e0ad4a6514facfd83b36.bindPopup(popup_b7094ef2230f59cbc044bb315d6a4d52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d8c5a71d1b4936f02e270e3b353ffa68 = L.circleMarker(\\n\",\n       \"                [24.4072, 111.5622],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_664424fc6bf87ff8b8b7d0d3839fe5b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92390a7f0b8d5263ede29c306474a6c9 = $(`&lt;div id=&quot;html_92390a7f0b8d5263ede29c306474a6c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5622             latitude:24.4072             pred_result:37.087886810302734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_664424fc6bf87ff8b8b7d0d3839fe5b3.setContent(html_92390a7f0b8d5263ede29c306474a6c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d8c5a71d1b4936f02e270e3b353ffa68.bindPopup(popup_664424fc6bf87ff8b8b7d0d3839fe5b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25edfd2585bd1f2ef051ff6328a37727 = L.circleMarker(\\n\",\n       \"                [24.7121, 108.2134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17bec6d3548fad169f54b4fab7169ccd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_053ac4cbbc9ceb7f66658f686bc87d20 = $(`&lt;div id=&quot;html_053ac4cbbc9ceb7f66658f686bc87d20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.2134             latitude:24.7121             pred_result:32.991790771484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17bec6d3548fad169f54b4fab7169ccd.setContent(html_053ac4cbbc9ceb7f66658f686bc87d20);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25edfd2585bd1f2ef051ff6328a37727.bindPopup(popup_17bec6d3548fad169f54b4fab7169ccd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a583d8861d456b44cf626a9f285298a = L.circleMarker(\\n\",\n       \"                [24.6928, 108.054],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_336509c371bd174cad65758cce9dd83f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f70c2b8bb6efd1c56ce0df400dcf35c0 = $(`&lt;div id=&quot;html_f70c2b8bb6efd1c56ce0df400dcf35c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.054             latitude:24.6928             pred_result:34.06023406982422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_336509c371bd174cad65758cce9dd83f.setContent(html_f70c2b8bb6efd1c56ce0df400dcf35c0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a583d8861d456b44cf626a9f285298a.bindPopup(popup_336509c371bd174cad65758cce9dd83f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7fa959e0f833ff1b120f563c2bb696e1 = L.circleMarker(\\n\",\n       \"                [24.6967, 108.1009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5de407dfd57f421fde997b14eb969f61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_10713859a1cb2d5321427d6cd9ddcb7d = $(`&lt;div id=&quot;html_10713859a1cb2d5321427d6cd9ddcb7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.1009             latitude:24.6967             pred_result:33.61726760864258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5de407dfd57f421fde997b14eb969f61.setContent(html_10713859a1cb2d5321427d6cd9ddcb7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7fa959e0f833ff1b120f563c2bb696e1.bindPopup(popup_5de407dfd57f421fde997b14eb969f61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_537af5edbd80e9f22487989f47946a21 = L.circleMarker(\\n\",\n       \"                [23.7208, 109.2131],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d23a3e03da5d3c106d8b25059f7c073 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_142a069590adae530c20d10b8825e0f3 = $(`&lt;div id=&quot;html_142a069590adae530c20d10b8825e0f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2131             latitude:23.7208             pred_result:30.89671516418457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d23a3e03da5d3c106d8b25059f7c073.setContent(html_142a069590adae530c20d10b8825e0f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_537af5edbd80e9f22487989f47946a21.bindPopup(popup_2d23a3e03da5d3c106d8b25059f7c073)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed6df5bab6eb5bd606f0e59379784fcf = L.circleMarker(\\n\",\n       \"                [23.7369, 109.2317],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d6fc51334e38c4913ca0355404dea72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2759df70b1a26b4626a28ebf05341eb7 = $(`&lt;div id=&quot;html_2759df70b1a26b4626a28ebf05341eb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.2317             latitude:23.7369             pred_result:30.95680809020996             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d6fc51334e38c4913ca0355404dea72.setContent(html_2759df70b1a26b4626a28ebf05341eb7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed6df5bab6eb5bd606f0e59379784fcf.bindPopup(popup_7d6fc51334e38c4913ca0355404dea72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb362f58a4e8268a3f3ff99ef3f422e5 = L.circleMarker(\\n\",\n       \"                [22.4137, 107.3476],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6153f7da80e7afd3714469d9beba8395 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a38c9cdc4c9da82cbfd8f0956a313542 = $(`&lt;div id=&quot;html_a38c9cdc4c9da82cbfd8f0956a313542&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3476             latitude:22.4137             pred_result:28.716808319091797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6153f7da80e7afd3714469d9beba8395.setContent(html_a38c9cdc4c9da82cbfd8f0956a313542);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb362f58a4e8268a3f3ff99ef3f422e5.bindPopup(popup_6153f7da80e7afd3714469d9beba8395)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a07201e52fcec0b0822145f1d5868966 = L.circleMarker(\\n\",\n       \"                [22.3708, 107.3701],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78d34603800b5312ce549c932c14c155 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_654269ac82407bb3927ff8f649361797 = $(`&lt;div id=&quot;html_654269ac82407bb3927ff8f649361797&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3701             latitude:22.3708             pred_result:28.607492446899414             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78d34603800b5312ce549c932c14c155.setContent(html_654269ac82407bb3927ff8f649361797);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a07201e52fcec0b0822145f1d5868966.bindPopup(popup_78d34603800b5312ce549c932c14c155)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b837a9658c3a19b7104beb5c3c7ef07 = L.circleMarker(\\n\",\n       \"                [32.4535, 105.8945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_37810168abd422f9795e80dd459d98dd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26f73808739ae2df952a5312a194a1ab = $(`&lt;div id=&quot;html_26f73808739ae2df952a5312a194a1ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8945             latitude:32.4535             pred_result:41.33665466308594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_37810168abd422f9795e80dd459d98dd.setContent(html_26f73808739ae2df952a5312a194a1ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b837a9658c3a19b7104beb5c3c7ef07.bindPopup(popup_37810168abd422f9795e80dd459d98dd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aef9e5051b45e0008ae67e573fb1ad7e = L.circleMarker(\\n\",\n       \"                [32.4429, 105.8242],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd7206cfe1e539fce2af53de4f515ec2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a458dafd3cfca8046aa339a9dc069621 = $(`&lt;div id=&quot;html_a458dafd3cfca8046aa339a9dc069621&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8242             latitude:32.4429             pred_result:41.90532684326172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd7206cfe1e539fce2af53de4f515ec2.setContent(html_a458dafd3cfca8046aa339a9dc069621);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aef9e5051b45e0008ae67e573fb1ad7e.bindPopup(popup_bd7206cfe1e539fce2af53de4f515ec2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d53ccdaf94d9bcb60d41ab8766c8116b = L.circleMarker(\\n\",\n       \"                [32.4246, 105.8153],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_589d6d7102d3bf211704f203806f374d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f8cf14bdeb76b3c313e78bd7a76dfcb3 = $(`&lt;div id=&quot;html_f8cf14bdeb76b3c313e78bd7a76dfcb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8153             latitude:32.4246             pred_result:41.94237518310547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_589d6d7102d3bf211704f203806f374d.setContent(html_f8cf14bdeb76b3c313e78bd7a76dfcb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d53ccdaf94d9bcb60d41ab8766c8116b.bindPopup(popup_589d6d7102d3bf211704f203806f374d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbed1471da30c105c681bb2e5ab380bd = L.circleMarker(\\n\",\n       \"                [32.4285, 105.8624],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e18a177bca840f7e4b6d352fb9eb300d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c70b9a11ed35df9d9a535421b891eceb = $(`&lt;div id=&quot;html_c70b9a11ed35df9d9a535421b891eceb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8624             latitude:32.4285             pred_result:42.29990005493164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e18a177bca840f7e4b6d352fb9eb300d.setContent(html_c70b9a11ed35df9d9a535421b891eceb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbed1471da30c105c681bb2e5ab380bd.bindPopup(popup_e18a177bca840f7e4b6d352fb9eb300d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76aad97b772533c577d65a924db2cfda = L.circleMarker(\\n\",\n       \"                [30.5797, 105.7519],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea43fb9aea2500a57692210b04187805 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_284ef09ffcc152ab1a0e58764a92b962 = $(`&lt;div id=&quot;html_284ef09ffcc152ab1a0e58764a92b962&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.7519             latitude:30.5797             pred_result:41.872711181640625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea43fb9aea2500a57692210b04187805.setContent(html_284ef09ffcc152ab1a0e58764a92b962);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76aad97b772533c577d65a924db2cfda.bindPopup(popup_ea43fb9aea2500a57692210b04187805)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a42058af33b8bc6f8b069a5bbb01e565 = L.circleMarker(\\n\",\n       \"                [30.6133, 105.68],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5fc826083e51a68d6fb6fa4ffdec5333 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4f5afd43ffab3f628bc9178165de67d = $(`&lt;div id=&quot;html_d4f5afd43ffab3f628bc9178165de67d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.68             latitude:30.6133             pred_result:42.68950653076172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5fc826083e51a68d6fb6fa4ffdec5333.setContent(html_d4f5afd43ffab3f628bc9178165de67d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a42058af33b8bc6f8b069a5bbb01e565.bindPopup(popup_5fc826083e51a68d6fb6fa4ffdec5333)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b31fa373baf840ff4872098809781923 = L.circleMarker(\\n\",\n       \"                [30.6347, 105.8161],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c882de2f3b7967085ca03f979973dcea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae12a61feef40badd9b03b6b5f6c4c5d = $(`&lt;div id=&quot;html_ae12a61feef40badd9b03b6b5f6c4c5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8161             latitude:30.6347             pred_result:41.278564453125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c882de2f3b7967085ca03f979973dcea.setContent(html_ae12a61feef40badd9b03b6b5f6c4c5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b31fa373baf840ff4872098809781923.bindPopup(popup_c882de2f3b7967085ca03f979973dcea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ae4b2be477928cb88a72efa3187b6d01 = L.circleMarker(\\n\",\n       \"                [30.475, 105.5956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bdc1aff5ee5c08e858816eb93ec55f93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d91c93547d65b2529a62c7d03858b0e4 = $(`&lt;div id=&quot;html_d91c93547d65b2529a62c7d03858b0e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.5956             latitude:30.475             pred_result:43.62473678588867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bdc1aff5ee5c08e858816eb93ec55f93.setContent(html_d91c93547d65b2529a62c7d03858b0e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ae4b2be477928cb88a72efa3187b6d01.bindPopup(popup_bdc1aff5ee5c08e858816eb93ec55f93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1e46e652dc65ec06b4318e1bb482b502 = L.circleMarker(\\n\",\n       \"                [29.5953, 105.0331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8c3e327bb6aec72b026606f6af055b9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_614a8e9e5a86c9afc361e39e0fd34181 = $(`&lt;div id=&quot;html_614a8e9e5a86c9afc361e39e0fd34181&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0331             latitude:29.5953             pred_result:46.77850341796875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8c3e327bb6aec72b026606f6af055b9.setContent(html_614a8e9e5a86c9afc361e39e0fd34181);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1e46e652dc65ec06b4318e1bb482b502.bindPopup(popup_b8c3e327bb6aec72b026606f6af055b9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3d46a6f8c7f89d74c5178ff17fbbbddf = L.circleMarker(\\n\",\n       \"                [29.5947, 105.0717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_65e0dbbf6229c6fd34090374d898b7af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73adeef1cd257f3791f75d5bc659c9dd = $(`&lt;div id=&quot;html_73adeef1cd257f3791f75d5bc659c9dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0717             latitude:29.5947             pred_result:46.6402702331543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_65e0dbbf6229c6fd34090374d898b7af.setContent(html_73adeef1cd257f3791f75d5bc659c9dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3d46a6f8c7f89d74c5178ff17fbbbddf.bindPopup(popup_65e0dbbf6229c6fd34090374d898b7af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b5bc273c8f7b4766e4a5412d13d310f1 = L.circleMarker(\\n\",\n       \"                [29.5817, 105.0653],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28318e5f06213def293d377fe442c541 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f808db9681295e9bfb9cf49b2b71b86 = $(`&lt;div id=&quot;html_2f808db9681295e9bfb9cf49b2b71b86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0653             latitude:29.5817             pred_result:46.60053253173828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28318e5f06213def293d377fe442c541.setContent(html_2f808db9681295e9bfb9cf49b2b71b86);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b5bc273c8f7b4766e4a5412d13d310f1.bindPopup(popup_28318e5f06213def293d377fe442c541)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48605282afffb08f3a52b1c556a7a0a7 = L.circleMarker(\\n\",\n       \"                [29.5822, 105.0406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9827fb09cd9fe5c6e307e1e03b86786b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65612bf81f5019b632d7ba09ec3831ab = $(`&lt;div id=&quot;html_65612bf81f5019b632d7ba09ec3831ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0406             latitude:29.5822             pred_result:46.816383361816406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9827fb09cd9fe5c6e307e1e03b86786b.setContent(html_65612bf81f5019b632d7ba09ec3831ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48605282afffb08f3a52b1c556a7a0a7.bindPopup(popup_9827fb09cd9fe5c6e307e1e03b86786b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c2cd2d5e341b9fd7e8d200283e59471d = L.circleMarker(\\n\",\n       \"                [29.5467, 103.7705],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eeb6a9446eb4d954513797464448797c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0c3fd45d78d4df7f82e7b77fe0813c07 = $(`&lt;div id=&quot;html_0c3fd45d78d4df7f82e7b77fe0813c07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7705             latitude:29.5467             pred_result:50.44498062133789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eeb6a9446eb4d954513797464448797c.setContent(html_0c3fd45d78d4df7f82e7b77fe0813c07);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c2cd2d5e341b9fd7e8d200283e59471d.bindPopup(popup_eeb6a9446eb4d954513797464448797c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_25aba925dcb7e9b7f7c6f31b5977ed4f = L.circleMarker(\\n\",\n       \"                [29.5844, 103.7627],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0238d6b2089be90a9583721425ab611 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_38f0b57e8e56012377d74b427bdb2c11 = $(`&lt;div id=&quot;html_38f0b57e8e56012377d74b427bdb2c11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7627             latitude:29.5844             pred_result:50.67719650268555             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0238d6b2089be90a9583721425ab611.setContent(html_38f0b57e8e56012377d74b427bdb2c11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_25aba925dcb7e9b7f7c6f31b5977ed4f.bindPopup(popup_d0238d6b2089be90a9583721425ab611)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7946d3896d02936ffa97d834504b508b = L.circleMarker(\\n\",\n       \"                [29.6007, 103.7506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9b402fe21a2002e5fe618d5e47023280 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7900e51d09d13ee6209423729faa716b = $(`&lt;div id=&quot;html_7900e51d09d13ee6209423729faa716b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7506             latitude:29.6007             pred_result:50.68157196044922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9b402fe21a2002e5fe618d5e47023280.setContent(html_7900e51d09d13ee6209423729faa716b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7946d3896d02936ffa97d834504b508b.bindPopup(popup_9b402fe21a2002e5fe618d5e47023280)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a41c6b4f2cd0d00218c4a2a040060596 = L.circleMarker(\\n\",\n       \"                [29.5634, 103.757],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51adb3eb52be4296bd41accbf2f65b40 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ff416558b54d35161015423944d2b7f5 = $(`&lt;div id=&quot;html_ff416558b54d35161015423944d2b7f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.757             latitude:29.5634             pred_result:50.39122772216797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51adb3eb52be4296bd41accbf2f65b40.setContent(html_ff416558b54d35161015423944d2b7f5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a41c6b4f2cd0d00218c4a2a040060596.bindPopup(popup_51adb3eb52be4296bd41accbf2f65b40)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19d9f1af22bac6f94a84816b47bdb75d = L.circleMarker(\\n\",\n       \"                [30.0506, 103.8986],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d4e0ae5c268a5b4d687db069bac3f94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8a0f7442d03325e59af29b13c162a94c = $(`&lt;div id=&quot;html_8a0f7442d03325e59af29b13c162a94c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8986             latitude:30.0506             pred_result:51.13016128540039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d4e0ae5c268a5b4d687db069bac3f94.setContent(html_8a0f7442d03325e59af29b13c162a94c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19d9f1af22bac6f94a84816b47bdb75d.bindPopup(popup_9d4e0ae5c268a5b4d687db069bac3f94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0213d048addd6176e9868065ced15007 = L.circleMarker(\\n\",\n       \"                [30.0874, 103.8416],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e76b56074fc3bc0f377e7ca6c2c6c96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2844bf8674dbfef8757fff35e7e24e8a = $(`&lt;div id=&quot;html_2844bf8674dbfef8757fff35e7e24e8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8416             latitude:30.0874             pred_result:51.08046340942383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e76b56074fc3bc0f377e7ca6c2c6c96.setContent(html_2844bf8674dbfef8757fff35e7e24e8a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0213d048addd6176e9868065ced15007.bindPopup(popup_0e76b56074fc3bc0f377e7ca6c2c6c96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_871c4c361aef42dd7a8542315138a39d = L.circleMarker(\\n\",\n       \"                [30.0691, 103.8495],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84253c7ab26190f7369b11ce268c1555 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_25defc38900bd0e6c28e2f61459ea717 = $(`&lt;div id=&quot;html_25defc38900bd0e6c28e2f61459ea717&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8495             latitude:30.0691             pred_result:51.321449279785156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84253c7ab26190f7369b11ce268c1555.setContent(html_25defc38900bd0e6c28e2f61459ea717);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_871c4c361aef42dd7a8542315138a39d.bindPopup(popup_84253c7ab26190f7369b11ce268c1555)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0c5c8d02de309f2f83394bc2d5e5f9d = L.circleMarker(\\n\",\n       \"                [30.062, 103.8341],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d94097180f35b9227c7a4bb99fd9db59 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_035597701a3b8a84dc08154500a7065b = $(`&lt;div id=&quot;html_035597701a3b8a84dc08154500a7065b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.8341             latitude:30.062             pred_result:51.030364990234375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d94097180f35b9227c7a4bb99fd9db59.setContent(html_035597701a3b8a84dc08154500a7065b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0c5c8d02de309f2f83394bc2d5e5f9d.bindPopup(popup_d94097180f35b9227c7a4bb99fd9db59)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c2cc7a93d51017f8e30571bf7d6cb9a = L.circleMarker(\\n\",\n       \"                [30.518, 106.631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1211506f22720f3bb36a0e4e5203a9bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eefd5ce0a035ae1e37c5ce9599b88a69 = $(`&lt;div id=&quot;html_eefd5ce0a035ae1e37c5ce9599b88a69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.631             latitude:30.518             pred_result:38.26812744140625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1211506f22720f3bb36a0e4e5203a9bd.setContent(html_eefd5ce0a035ae1e37c5ce9599b88a69);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c2cc7a93d51017f8e30571bf7d6cb9a.bindPopup(popup_1211506f22720f3bb36a0e4e5203a9bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_679ee9f524baf5e672140759cfcfdac3 = L.circleMarker(\\n\",\n       \"                [30.4576, 106.6303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ac65497463543e248ec5e1557e9e41f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8f815ed1cd86333c925d48ad4c07f21c = $(`&lt;div id=&quot;html_8f815ed1cd86333c925d48ad4c07f21c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6303             latitude:30.4576             pred_result:38.447105407714844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ac65497463543e248ec5e1557e9e41f.setContent(html_8f815ed1cd86333c925d48ad4c07f21c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_679ee9f524baf5e672140759cfcfdac3.bindPopup(popup_9ac65497463543e248ec5e1557e9e41f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c55c950501cf6ed5d68f8db7f96533b4 = L.circleMarker(\\n\",\n       \"                [30.4663, 106.6271],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_859ce320079f416c99de805aed21ac09 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3fd3b57f78a7a0ffce03fc0444cc144 = $(`&lt;div id=&quot;html_a3fd3b57f78a7a0ffce03fc0444cc144&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6271             latitude:30.4663             pred_result:38.36618423461914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_859ce320079f416c99de805aed21ac09.setContent(html_a3fd3b57f78a7a0ffce03fc0444cc144);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c55c950501cf6ed5d68f8db7f96533b4.bindPopup(popup_859ce320079f416c99de805aed21ac09)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50d4b79d8000dfd5192eaeaa3cb9793a = L.circleMarker(\\n\",\n       \"                [30.4551, 106.6388],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76f6783b353935c65c73916d71c03685 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0dbfb4eff6a28455323bf9b9a8d75773 = $(`&lt;div id=&quot;html_0dbfb4eff6a28455323bf9b9a8d75773&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6388             latitude:30.4551             pred_result:38.51532745361328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76f6783b353935c65c73916d71c03685.setContent(html_0dbfb4eff6a28455323bf9b9a8d75773);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50d4b79d8000dfd5192eaeaa3cb9793a.bindPopup(popup_76f6783b353935c65c73916d71c03685)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_22e5976f478d8778d16b07db001d39ef = L.circleMarker(\\n\",\n       \"                [31.2797, 107.5272],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3b7cf92ce7cd6c48ccc4881b4f6eb9fe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d310169954d09ef911fc0d9a8458cf0a = $(`&lt;div id=&quot;html_d310169954d09ef911fc0d9a8458cf0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5272             latitude:31.2797             pred_result:35.664268493652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3b7cf92ce7cd6c48ccc4881b4f6eb9fe.setContent(html_d310169954d09ef911fc0d9a8458cf0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_22e5976f478d8778d16b07db001d39ef.bindPopup(popup_3b7cf92ce7cd6c48ccc4881b4f6eb9fe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96e6512f6f0ec9bfd6721063094b94ad = L.circleMarker(\\n\",\n       \"                [31.215, 107.525],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e9c1d3668187b7144e816386ebfadaf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e828bd820b7e9954ecb28eb10d388512 = $(`&lt;div id=&quot;html_e828bd820b7e9954ecb28eb10d388512&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.525             latitude:31.215             pred_result:36.72321701049805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e9c1d3668187b7144e816386ebfadaf.setContent(html_e828bd820b7e9954ecb28eb10d388512);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96e6512f6f0ec9bfd6721063094b94ad.bindPopup(popup_7e9c1d3668187b7144e816386ebfadaf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_66ea59edad03f1f2381806167014f352 = L.circleMarker(\\n\",\n       \"                [31.2108, 107.4967],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dcec42c89a8043215749cb54975d26ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_787d7242359e91d71aacfb02f03d10c8 = $(`&lt;div id=&quot;html_787d7242359e91d71aacfb02f03d10c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4967             latitude:31.2108             pred_result:36.94221115112305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dcec42c89a8043215749cb54975d26ef.setContent(html_787d7242359e91d71aacfb02f03d10c8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_66ea59edad03f1f2381806167014f352.bindPopup(popup_dcec42c89a8043215749cb54975d26ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a55e65d2bcb8096edd6d95c980395d2 = L.circleMarker(\\n\",\n       \"                [31.1956, 107.5069],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9d2188d53044a0d1b738a95961c0f66 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3916bb0b4298ba679c1b3aa83189a5e6 = $(`&lt;div id=&quot;html_3916bb0b4298ba679c1b3aa83189a5e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5069             latitude:31.1956             pred_result:37.162437438964844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9d2188d53044a0d1b738a95961c0f66.setContent(html_3916bb0b4298ba679c1b3aa83189a5e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a55e65d2bcb8096edd6d95c980395d2.bindPopup(popup_f9d2188d53044a0d1b738a95961c0f66)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9eac3d4db6f0f3162fd9d9f10753bdb = L.circleMarker(\\n\",\n       \"                [31.2058, 107.4611],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fff4836cb2d77e4549849cf35c94059d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_255a26ba280b69e0afde086f1c5ee1e4 = $(`&lt;div id=&quot;html_255a26ba280b69e0afde086f1c5ee1e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.4611             latitude:31.2058             pred_result:37.1440544128418             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fff4836cb2d77e4549849cf35c94059d.setContent(html_255a26ba280b69e0afde086f1c5ee1e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9eac3d4db6f0f3162fd9d9f10753bdb.bindPopup(popup_fff4836cb2d77e4549849cf35c94059d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2f8c92231e9ecb55ea475888d6ee357 = L.circleMarker(\\n\",\n       \"                [30.0125, 103.009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3234baae8d39e0981dfd15fc4ad365f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ddfaea57c97f4f6726bec84812a5c6f = $(`&lt;div id=&quot;html_9ddfaea57c97f4f6726bec84812a5c6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.009             latitude:30.0125             pred_result:40.366947174072266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3234baae8d39e0981dfd15fc4ad365f7.setContent(html_9ddfaea57c97f4f6726bec84812a5c6f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2f8c92231e9ecb55ea475888d6ee357.bindPopup(popup_3234baae8d39e0981dfd15fc4ad365f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d383cd0f659b037660c98f7f5622e6e = L.circleMarker(\\n\",\n       \"                [29.9899, 103.0013],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c4aa66c0670900ad0c51c4e6f136c50c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89fefce4cc216f45b01770c0f1a9c7b9 = $(`&lt;div id=&quot;html_89fefce4cc216f45b01770c0f1a9c7b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0013             latitude:29.9899             pred_result:40.349220275878906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c4aa66c0670900ad0c51c4e6f136c50c.setContent(html_89fefce4cc216f45b01770c0f1a9c7b9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d383cd0f659b037660c98f7f5622e6e.bindPopup(popup_c4aa66c0670900ad0c51c4e6f136c50c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_431a6e7f4e267b2ee3424d728b01aff6 = L.circleMarker(\\n\",\n       \"                [29.9834, 103.0109],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf7991baeb0cb99da71313606b611798 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e312027a5778b4522d7240112e918d25 = $(`&lt;div id=&quot;html_e312027a5778b4522d7240112e918d25&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0109             latitude:29.9834             pred_result:40.700347900390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf7991baeb0cb99da71313606b611798.setContent(html_e312027a5778b4522d7240112e918d25);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_431a6e7f4e267b2ee3424d728b01aff6.bindPopup(popup_cf7991baeb0cb99da71313606b611798)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3eb9504c7bae0eb56f99d48de418ab6f = L.circleMarker(\\n\",\n       \"                [29.9816, 103.0001],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8645e0d978ab81a09c138048e8a8169 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05c4eb54a23f0f14f8e7cb89373d9160 = $(`&lt;div id=&quot;html_05c4eb54a23f0f14f8e7cb89373d9160&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.0001             latitude:29.9816             pred_result:40.22665023803711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8645e0d978ab81a09c138048e8a8169.setContent(html_05c4eb54a23f0f14f8e7cb89373d9160);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3eb9504c7bae0eb56f99d48de418ab6f.bindPopup(popup_f8645e0d978ab81a09c138048e8a8169)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11698064a71d77780507a8b776fe79f8 = L.circleMarker(\\n\",\n       \"                [31.8711, 106.7389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d17400f1ffbcac1e3adbede59faea617 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa674397fb7423a98705bda5e1f70f12 = $(`&lt;div id=&quot;html_fa674397fb7423a98705bda5e1f70f12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7389             latitude:31.8711             pred_result:35.720863342285156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d17400f1ffbcac1e3adbede59faea617.setContent(html_fa674397fb7423a98705bda5e1f70f12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11698064a71d77780507a8b776fe79f8.bindPopup(popup_d17400f1ffbcac1e3adbede59faea617)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1d66c31ce4679f881f211a322d3ee5a5 = L.circleMarker(\\n\",\n       \"                [31.8531, 106.7594],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5034b6cac65ee52f66ac6bad940cc8f2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fedddcc0f79e2adadeedb747d6d5e176 = $(`&lt;div id=&quot;html_fedddcc0f79e2adadeedb747d6d5e176&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7594             latitude:31.8531             pred_result:35.53253936767578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5034b6cac65ee52f66ac6bad940cc8f2.setContent(html_fedddcc0f79e2adadeedb747d6d5e176);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1d66c31ce4679f881f211a322d3ee5a5.bindPopup(popup_5034b6cac65ee52f66ac6bad940cc8f2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1346342b06606b401cbcbe8def2fcdc = L.circleMarker(\\n\",\n       \"                [30.1366, 104.6617],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff5b55a763f615013336e7d83b06f0e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e79998f34389ed8bf4ecc7d7ebfebe5d = $(`&lt;div id=&quot;html_e79998f34389ed8bf4ecc7d7ebfebe5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6617             latitude:30.1366             pred_result:49.24678039550781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff5b55a763f615013336e7d83b06f0e8.setContent(html_e79998f34389ed8bf4ecc7d7ebfebe5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1346342b06606b401cbcbe8def2fcdc.bindPopup(popup_ff5b55a763f615013336e7d83b06f0e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c0fc989f51f892913bf703c44608b65 = L.circleMarker(\\n\",\n       \"                [30.1506, 104.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5ac8a38869535ac660d708178776e055 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3809dac3f8273fef3fa0858cd425d85d = $(`&lt;div id=&quot;html_3809dac3f8273fef3fa0858cd425d85d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6356             latitude:30.1506             pred_result:49.419281005859375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5ac8a38869535ac660d708178776e055.setContent(html_3809dac3f8273fef3fa0858cd425d85d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c0fc989f51f892913bf703c44608b65.bindPopup(popup_5ac8a38869535ac660d708178776e055)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ffcc4da449d803e436f24ece9a0fec5 = L.circleMarker(\\n\",\n       \"                [30.1377, 104.6289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1b4c0cd4b477ea07da6cff684d24cc1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a787c218bd3f24b46abb214e49167d7f = $(`&lt;div id=&quot;html_a787c218bd3f24b46abb214e49167d7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6289             latitude:30.1377             pred_result:49.66944122314453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1b4c0cd4b477ea07da6cff684d24cc1.setContent(html_a787c218bd3f24b46abb214e49167d7f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ffcc4da449d803e436f24ece9a0fec5.bindPopup(popup_d1b4c0cd4b477ea07da6cff684d24cc1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2cd0523520dcad3b28b9dbf4098ba51 = L.circleMarker(\\n\",\n       \"                [30.1142, 104.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f174f60bb96dccaf8c36471f85f7c26 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9025dfd2d18cd91a606b6584108029ac = $(`&lt;div id=&quot;html_9025dfd2d18cd91a606b6584108029ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6469             latitude:30.1142             pred_result:49.517494201660156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f174f60bb96dccaf8c36471f85f7c26.setContent(html_9025dfd2d18cd91a606b6584108029ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2cd0523520dcad3b28b9dbf4098ba51.bindPopup(popup_6f174f60bb96dccaf8c36471f85f7c26)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98d4eb0d5c03bff391fc1de478851b9a = L.circleMarker(\\n\",\n       \"                [30.1259, 104.6294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f964616abe05f055b98bd4334cd39f37 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3593982b18ee321be2bfb4337bba7810 = $(`&lt;div id=&quot;html_3593982b18ee321be2bfb4337bba7810&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6294             latitude:30.1259             pred_result:49.82975769042969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f964616abe05f055b98bd4334cd39f37.setContent(html_3593982b18ee321be2bfb4337bba7810);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98d4eb0d5c03bff391fc1de478851b9a.bindPopup(popup_f964616abe05f055b98bd4334cd39f37)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9ce69f6a0e5516ddbb973739d561e71 = L.circleMarker(\\n\",\n       \"                [31.9286, 102.1755],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_096ce1b4879b50673bdb241684f6ce1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9c58c8f22ae88eeebd1efee8915c9cd = $(`&lt;div id=&quot;html_a9c58c8f22ae88eeebd1efee8915c9cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1755             latitude:31.9286             pred_result:16.278688430786133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_096ce1b4879b50673bdb241684f6ce1f.setContent(html_a9c58c8f22ae88eeebd1efee8915c9cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9ce69f6a0e5516ddbb973739d561e71.bindPopup(popup_096ce1b4879b50673bdb241684f6ce1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_293be9544eb71effb528c4238ae4600a = L.circleMarker(\\n\",\n       \"                [31.9025, 102.2218],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_870f0fb0eb0ac4e676481fc71a07daab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6890263a71456cd4bf829d92211962cd = $(`&lt;div id=&quot;html_6890263a71456cd4bf829d92211962cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2218             latitude:31.9025             pred_result:16.04829216003418             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_870f0fb0eb0ac4e676481fc71a07daab.setContent(html_6890263a71456cd4bf829d92211962cd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_293be9544eb71effb528c4238ae4600a.bindPopup(popup_870f0fb0eb0ac4e676481fc71a07daab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_16cc3d7f404af2d532442f2a5368b1b7 = L.circleMarker(\\n\",\n       \"                [31.8934, 102.2402],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85bb2606dcd09daf0f8f302044f12dbe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c716625a3105bffc81bdff44270d6ec = $(`&lt;div id=&quot;html_5c716625a3105bffc81bdff44270d6ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2402             latitude:31.8934             pred_result:15.42585277557373             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85bb2606dcd09daf0f8f302044f12dbe.setContent(html_5c716625a3105bffc81bdff44270d6ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_16cc3d7f404af2d532442f2a5368b1b7.bindPopup(popup_85bb2606dcd09daf0f8f302044f12dbe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c63c11f6c549fef680804087e390616a = L.circleMarker(\\n\",\n       \"                [30.0475, 101.9603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a54b5971b60adab8a3fed211f3adf59f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9c3bb3e632188de1e158b0b25751207 = $(`&lt;div id=&quot;html_e9c3bb3e632188de1e158b0b25751207&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9603             latitude:30.0475             pred_result:17.26961326599121             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a54b5971b60adab8a3fed211f3adf59f.setContent(html_e9c3bb3e632188de1e158b0b25751207);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c63c11f6c549fef680804087e390616a.bindPopup(popup_a54b5971b60adab8a3fed211f3adf59f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6fa30fbf448f40d68a7cfc5d1e0d2c0b = L.circleMarker(\\n\",\n       \"                [27.8094, 102.3419],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cc78e6e4e74a4462bf66cb70d4d03107 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6fa3b48b61a69ebd6d10b378245f642d = $(`&lt;div id=&quot;html_6fa3b48b61a69ebd6d10b378245f642d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.3419             latitude:27.8094             pred_result:24.059551239013672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cc78e6e4e74a4462bf66cb70d4d03107.setContent(html_6fa3b48b61a69ebd6d10b378245f642d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6fa30fbf448f40d68a7cfc5d1e0d2c0b.bindPopup(popup_cc78e6e4e74a4462bf66cb70d4d03107)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5206e90ddb30bbae9dfafc7699e0a443 = L.circleMarker(\\n\",\n       \"                [27.8408, 102.2714],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da3020ce70c29ee75dc401cd054bb8ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_972bc15180b0ecdbcc790f737255480c = $(`&lt;div id=&quot;html_972bc15180b0ecdbcc790f737255480c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2714             latitude:27.8408             pred_result:25.040342330932617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da3020ce70c29ee75dc401cd054bb8ae.setContent(html_972bc15180b0ecdbcc790f737255480c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5206e90ddb30bbae9dfafc7699e0a443.bindPopup(popup_da3020ce70c29ee75dc401cd054bb8ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3fc1d4991ec8d9231d16d1bba340f4a2 = L.circleMarker(\\n\",\n       \"                [27.8978, 102.2625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_526a3ed86448753084abc17764fb384a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82c72738d28c55703b59cb0c4059388a = $(`&lt;div id=&quot;html_82c72738d28c55703b59cb0c4059388a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2625             latitude:27.8978             pred_result:26.753536224365234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_526a3ed86448753084abc17764fb384a.setContent(html_82c72738d28c55703b59cb0c4059388a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3fc1d4991ec8d9231d16d1bba340f4a2.bindPopup(popup_526a3ed86448753084abc17764fb384a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5dd040063b99b43fde58c4d18ffc64b3 = L.circleMarker(\\n\",\n       \"                [27.8847, 102.2689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9dfc928a23e5df3fdc72582378e87871 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50b01b0909dafb2e6347058231d6c8a6 = $(`&lt;div id=&quot;html_50b01b0909dafb2e6347058231d6c8a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2689             latitude:27.8847             pred_result:26.124542236328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9dfc928a23e5df3fdc72582378e87871.setContent(html_50b01b0909dafb2e6347058231d6c8a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5dd040063b99b43fde58c4d18ffc64b3.bindPopup(popup_9dfc928a23e5df3fdc72582378e87871)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec070d674d2778cf6810521c4baafd96 = L.circleMarker(\\n\",\n       \"                [27.8953, 102.2311],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58e421facc1e454916c19674b8e00add = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e24331e477e0821f2e237aea83136e80 = $(`&lt;div id=&quot;html_e24331e477e0821f2e237aea83136e80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2311             latitude:27.8953             pred_result:25.971359252929688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58e421facc1e454916c19674b8e00add.setContent(html_e24331e477e0821f2e237aea83136e80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec070d674d2778cf6810521c4baafd96.bindPopup(popup_58e421facc1e454916c19674b8e00add)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_826efd035cead1c4d7b5a93650372605 = L.circleMarker(\\n\",\n       \"                [26.5892, 104.8],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f39c0307493a35954b5eca427159d8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e91004e66b5aa03cdec471eaf3513a6 = $(`&lt;div id=&quot;html_9e91004e66b5aa03cdec471eaf3513a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8             latitude:26.5892             pred_result:30.658456802368164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f39c0307493a35954b5eca427159d8e.setContent(html_9e91004e66b5aa03cdec471eaf3513a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_826efd035cead1c4d7b5a93650372605.bindPopup(popup_6f39c0307493a35954b5eca427159d8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_323e989b6e789d701941e212dd37571c = L.circleMarker(\\n\",\n       \"                [26.5917, 104.83],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03d803afd8c2f8470da313facce9627a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee9511b4f89236da343992c86647c397 = $(`&lt;div id=&quot;html_ee9511b4f89236da343992c86647c397&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.83             latitude:26.5917             pred_result:30.295467376708984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03d803afd8c2f8470da313facce9627a.setContent(html_ee9511b4f89236da343992c86647c397);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_323e989b6e789d701941e212dd37571c.bindPopup(popup_03d803afd8c2f8470da313facce9627a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0064d1d9c7a2e25c9df0ee5fe27809b4 = L.circleMarker(\\n\",\n       \"                [26.5939, 104.89],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e3294cd83fc06f5605d330b0386bc545 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3cc63f776cac6dda03655b444b4bd49 = $(`&lt;div id=&quot;html_d3cc63f776cac6dda03655b444b4bd49&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.89             latitude:26.5939             pred_result:30.859729766845703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e3294cd83fc06f5605d330b0386bc545.setContent(html_d3cc63f776cac6dda03655b444b4bd49);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0064d1d9c7a2e25c9df0ee5fe27809b4.bindPopup(popup_e3294cd83fc06f5605d330b0386bc545)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_23086379619d78c6ef98f30955dc610f = L.circleMarker(\\n\",\n       \"                [26.5894, 104.8475],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9ae8d1fcff9987609a39ad62d97f312 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fcf810af2934bf6b74bc7bf990bce58e = $(`&lt;div id=&quot;html_fcf810af2934bf6b74bc7bf990bce58e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8475             latitude:26.5894             pred_result:31.107620239257812             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9ae8d1fcff9987609a39ad62d97f312.setContent(html_fcf810af2934bf6b74bc7bf990bce58e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_23086379619d78c6ef98f30955dc610f.bindPopup(popup_c9ae8d1fcff9987609a39ad62d97f312)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6d611501718d6f16e6fd925b55d3fe94 = L.circleMarker(\\n\",\n       \"                [26.5506, 104.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ce40f35a03141bd522a5a34d1f6147c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dade02dc87c952678993333d83cab2d3 = $(`&lt;div id=&quot;html_dade02dc87c952678993333d83cab2d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9544             latitude:26.5506             pred_result:30.878549575805664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ce40f35a03141bd522a5a34d1f6147c.setContent(html_dade02dc87c952678993333d83cab2d3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6d611501718d6f16e6fd925b55d3fe94.bindPopup(popup_9ce40f35a03141bd522a5a34d1f6147c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3fa91e272ced587eea5a8cbdd27744fd = L.circleMarker(\\n\",\n       \"                [26.2611, 105.9556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86c87a7c72506783a302783278965fbf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dc8cd3a972db9ed5f50510190f9078ed = $(`&lt;div id=&quot;html_dc8cd3a972db9ed5f50510190f9078ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.9556             latitude:26.2611             pred_result:29.82855796813965             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86c87a7c72506783a302783278965fbf.setContent(html_dc8cd3a972db9ed5f50510190f9078ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3fa91e272ced587eea5a8cbdd27744fd.bindPopup(popup_86c87a7c72506783a302783278965fbf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7608bfcc4f5fc7876aacc39588d5d5ba = L.circleMarker(\\n\",\n       \"                [26.255, 105.9278],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_765035cf342c8498f06c59e9dfd375df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54789e7f9985bbfa646aff9062625b5d = $(`&lt;div id=&quot;html_54789e7f9985bbfa646aff9062625b5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.9278             latitude:26.255             pred_result:29.955707550048828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_765035cf342c8498f06c59e9dfd375df.setContent(html_54789e7f9985bbfa646aff9062625b5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7608bfcc4f5fc7876aacc39588d5d5ba.bindPopup(popup_765035cf342c8498f06c59e9dfd375df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4625108df725daa00b13d3ca1b4216d5 = L.circleMarker(\\n\",\n       \"                [26.2358, 105.9394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29f5ad0e7c441a0cdc4cfc2259931f2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c047ec0c96d0fce34005e8c539795dcc = $(`&lt;div id=&quot;html_c047ec0c96d0fce34005e8c539795dcc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.9394             latitude:26.2358             pred_result:30.361614227294922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29f5ad0e7c441a0cdc4cfc2259931f2f.setContent(html_c047ec0c96d0fce34005e8c539795dcc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4625108df725daa00b13d3ca1b4216d5.bindPopup(popup_29f5ad0e7c441a0cdc4cfc2259931f2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54777c28fb4d17f149dd48064c291ce4 = L.circleMarker(\\n\",\n       \"                [26.2392, 105.8853],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8362580626360b57c178f7402d5512f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9bb3d3187fe3e86d1d03987b9e510e83 = $(`&lt;div id=&quot;html_9bb3d3187fe3e86d1d03987b9e510e83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8853             latitude:26.2392             pred_result:29.758113861083984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8362580626360b57c178f7402d5512f9.setContent(html_9bb3d3187fe3e86d1d03987b9e510e83);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54777c28fb4d17f149dd48064c291ce4.bindPopup(popup_8362580626360b57c178f7402d5512f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_12475fe61df00a005fc88eb822d65b1e = L.circleMarker(\\n\",\n       \"                [27.7297, 109.1916],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e61ca7904cc0020da5cff5887409d8f4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dba6b6428883542db12fefd731811c9e = $(`&lt;div id=&quot;html_dba6b6428883542db12fefd731811c9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.1916             latitude:27.7297             pred_result:39.01822280883789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e61ca7904cc0020da5cff5887409d8f4.setContent(html_dba6b6428883542db12fefd731811c9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_12475fe61df00a005fc88eb822d65b1e.bindPopup(popup_e61ca7904cc0020da5cff5887409d8f4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ceaf17406937d1dca4badad81a59fd68 = L.circleMarker(\\n\",\n       \"                [27.7231, 109.1794],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a87acdf163cfd81db2291953f04c867c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bf57b525d7b8d4a9587f71c454d927b8 = $(`&lt;div id=&quot;html_bf57b525d7b8d4a9587f71c454d927b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.1794             latitude:27.7231             pred_result:39.03004455566406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a87acdf163cfd81db2291953f04c867c.setContent(html_bf57b525d7b8d4a9587f71c454d927b8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ceaf17406937d1dca4badad81a59fd68.bindPopup(popup_a87acdf163cfd81db2291953f04c867c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5bf41a3d73b23e15cdf2bc2691b71bd0 = L.circleMarker(\\n\",\n       \"                [27.3125, 105.2864],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d372369b9a6174d19262fb1247122452 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2040eb95179fea8bc4155a96b38ea95b = $(`&lt;div id=&quot;html_2040eb95179fea8bc4155a96b38ea95b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.2864             latitude:27.3125             pred_result:31.19111442565918             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d372369b9a6174d19262fb1247122452.setContent(html_2040eb95179fea8bc4155a96b38ea95b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5bf41a3d73b23e15cdf2bc2691b71bd0.bindPopup(popup_d372369b9a6174d19262fb1247122452)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8859d43b1775ae1152bf6ac2a357e893 = L.circleMarker(\\n\",\n       \"                [27.2944, 105.31],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97f4083134c0dcf840c04893d050e1bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5cd047d4d8476b25d90e81eff831578 = $(`&lt;div id=&quot;html_b5cd047d4d8476b25d90e81eff831578&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.31             latitude:27.2944             pred_result:31.816648483276367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97f4083134c0dcf840c04893d050e1bf.setContent(html_b5cd047d4d8476b25d90e81eff831578);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8859d43b1775ae1152bf6ac2a357e893.bindPopup(popup_97f4083134c0dcf840c04893d050e1bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b14565c7e58624450a4f24e3087328a = L.circleMarker(\\n\",\n       \"                [25.0925, 104.9022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_58d33718c513ac0b8f5d84d0177a89a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78400215b442dbe319d703d6d5c5cca1 = $(`&lt;div id=&quot;html_78400215b442dbe319d703d6d5c5cca1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9022             latitude:25.0925             pred_result:28.06224250793457             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_58d33718c513ac0b8f5d84d0177a89a2.setContent(html_78400215b442dbe319d703d6d5c5cca1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b14565c7e58624450a4f24e3087328a.bindPopup(popup_58d33718c513ac0b8f5d84d0177a89a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63115a522dbaa1e4cc97a224492f931e = L.circleMarker(\\n\",\n       \"                [25.0992, 104.8811],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a9de432c7353f08487d3265f04ef098 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7001665f614d8681f2a28f659ee3bc34 = $(`&lt;div id=&quot;html_7001665f614d8681f2a28f659ee3bc34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.8811             latitude:25.0992             pred_result:27.897457122802734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a9de432c7353f08487d3265f04ef098.setContent(html_7001665f614d8681f2a28f659ee3bc34);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63115a522dbaa1e4cc97a224492f931e.bindPopup(popup_4a9de432c7353f08487d3265f04ef098)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8088265f7c0b1951366bc06770345f16 = L.circleMarker(\\n\",\n       \"                [26.5747, 107.9783],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bf549c8d392347bfa995193dcaac07d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1516206e400331675407797c72559d16 = $(`&lt;div id=&quot;html_1516206e400331675407797c72559d16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.9783             latitude:26.5747             pred_result:38.663124084472656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bf549c8d392347bfa995193dcaac07d.setContent(html_1516206e400331675407797c72559d16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8088265f7c0b1951366bc06770345f16.bindPopup(popup_7bf549c8d392347bfa995193dcaac07d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3332cbff4bb538ebbf32bd34e0924975 = L.circleMarker(\\n\",\n       \"                [26.2403, 107.5228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3e7d84761b6598f5c483830c160e08f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d7ba3d44a1c05e07a3fcac0aa028d60 = $(`&lt;div id=&quot;html_2d7ba3d44a1c05e07a3fcac0aa028d60&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.5228             latitude:26.2403             pred_result:35.499961853027344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3e7d84761b6598f5c483830c160e08f.setContent(html_2d7ba3d44a1c05e07a3fcac0aa028d60);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3332cbff4bb538ebbf32bd34e0924975.bindPopup(popup_f3e7d84761b6598f5c483830c160e08f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc722fc8831f2eb62f4071a81560209f = L.circleMarker(\\n\",\n       \"                [25.1081, 99.1678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a84c4d1c7123999f143c3a82178d68ed = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b75d5c29a1603939e281861aa546e0da = $(`&lt;div id=&quot;html_b75d5c29a1603939e281861aa546e0da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.1678             latitude:25.1081             pred_result:23.168474197387695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a84c4d1c7123999f143c3a82178d68ed.setContent(html_b75d5c29a1603939e281861aa546e0da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc722fc8831f2eb62f4071a81560209f.bindPopup(popup_a84c4d1c7123999f143c3a82178d68ed)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24d751fec6f3f28eacb7cedb8534c11c = L.circleMarker(\\n\",\n       \"                [25.1328, 99.1711],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_093ff5c54906bb4dbe7e94eb05c38be3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3641e52383499e09745e5b3e2b030c9e = $(`&lt;div id=&quot;html_3641e52383499e09745e5b3e2b030c9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.1711             latitude:25.1328             pred_result:23.06765365600586             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_093ff5c54906bb4dbe7e94eb05c38be3.setContent(html_3641e52383499e09745e5b3e2b030c9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24d751fec6f3f28eacb7cedb8534c11c.bindPopup(popup_093ff5c54906bb4dbe7e94eb05c38be3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e371d29b146e0299d41e1d3619febf0c = L.circleMarker(\\n\",\n       \"                [27.3392, 103.7032],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_33e214721c908c6b90175690a5d449d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_829029137eeab6e174d73e38ca1cfec3 = $(`&lt;div id=&quot;html_829029137eeab6e174d73e38ca1cfec3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7032             latitude:27.3392             pred_result:30.709552764892578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_33e214721c908c6b90175690a5d449d2.setContent(html_829029137eeab6e174d73e38ca1cfec3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e371d29b146e0299d41e1d3619febf0c.bindPopup(popup_33e214721c908c6b90175690a5d449d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43094605b64fb77d5f01c31db5e133c6 = L.circleMarker(\\n\",\n       \"                [27.3361, 103.7225],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44c08dd71fd0f17fee3bc5619d466821 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e5744e5bb820f1dc4b7fb3be0b3d05a = $(`&lt;div id=&quot;html_5e5744e5bb820f1dc4b7fb3be0b3d05a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.7225             latitude:27.3361             pred_result:30.47765350341797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44c08dd71fd0f17fee3bc5619d466821.setContent(html_5e5744e5bb820f1dc4b7fb3be0b3d05a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43094605b64fb77d5f01c31db5e133c6.bindPopup(popup_44c08dd71fd0f17fee3bc5619d466821)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b312c5c6cf839cf12b79d4cb64112f7 = L.circleMarker(\\n\",\n       \"                [26.8576, 100.2143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c770574f82b9a39a0ce85445d7779a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5dadeacda2d59b2eeb3261134ad15b5c = $(`&lt;div id=&quot;html_5dadeacda2d59b2eeb3261134ad15b5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2143             latitude:26.8576             pred_result:23.806713104248047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c770574f82b9a39a0ce85445d7779a4.setContent(html_5dadeacda2d59b2eeb3261134ad15b5c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b312c5c6cf839cf12b79d4cb64112f7.bindPopup(popup_7c770574f82b9a39a0ce85445d7779a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1cd6bf23433b3f014e99aa5257b351f4 = L.circleMarker(\\n\",\n       \"                [26.8802, 100.2497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f3c626d9a08f2b63e2ddcb968cc00800 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f69190a30d8a5d1adb188c3458c9f541 = $(`&lt;div id=&quot;html_f69190a30d8a5d1adb188c3458c9f541&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2497             latitude:26.8802             pred_result:23.632793426513672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f3c626d9a08f2b63e2ddcb968cc00800.setContent(html_f69190a30d8a5d1adb188c3458c9f541);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1cd6bf23433b3f014e99aa5257b351f4.bindPopup(popup_f3c626d9a08f2b63e2ddcb968cc00800)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4f28ce3f8a337d0df2f4a7b608011f23 = L.circleMarker(\\n\",\n       \"                [26.8906, 100.2203],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_90949be5bfe472e2bf2fe62928e623cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f84015489d21568742bb4b77d619b39 = $(`&lt;div id=&quot;html_4f84015489d21568742bb4b77d619b39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2203             latitude:26.8906             pred_result:23.632083892822266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_90949be5bfe472e2bf2fe62928e623cb.setContent(html_4f84015489d21568742bb4b77d619b39);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4f28ce3f8a337d0df2f4a7b608011f23.bindPopup(popup_90949be5bfe472e2bf2fe62928e623cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e07987f5a64fb180992335b91a87a88 = L.circleMarker(\\n\",\n       \"                [22.7633, 100.98],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_22c9dd2173b5cc9685a972df7ae1a5a8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46929f3df0be5beb8673e20d6d38d5eb = $(`&lt;div id=&quot;html_46929f3df0be5beb8673e20d6d38d5eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.98             latitude:22.7633             pred_result:28.32529067993164             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_22c9dd2173b5cc9685a972df7ae1a5a8.setContent(html_46929f3df0be5beb8673e20d6d38d5eb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e07987f5a64fb180992335b91a87a88.bindPopup(popup_22c9dd2173b5cc9685a972df7ae1a5a8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4509d2d421472a2a85ed1d4e5cec85f = L.circleMarker(\\n\",\n       \"                [22.8322, 100.9817],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_78282e0bc401ed5cb718b96a53d5b913 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e0ef68b5a3a22c150bb4c1b0014025a = $(`&lt;div id=&quot;html_9e0ef68b5a3a22c150bb4c1b0014025a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.9817             latitude:22.8322             pred_result:28.697900772094727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_78282e0bc401ed5cb718b96a53d5b913.setContent(html_9e0ef68b5a3a22c150bb4c1b0014025a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4509d2d421472a2a85ed1d4e5cec85f.bindPopup(popup_78282e0bc401ed5cb718b96a53d5b913)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c152faf7c5c6afb2b1eb748416558dd3 = L.circleMarker(\\n\",\n       \"                [23.8822, 100.0869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1d5413372d0d7f4320d2560a83e2be75 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ed702143d3194e3d38c128adb07161c = $(`&lt;div id=&quot;html_1ed702143d3194e3d38c128adb07161c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0869             latitude:23.8822             pred_result:32.77069854736328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1d5413372d0d7f4320d2560a83e2be75.setContent(html_1ed702143d3194e3d38c128adb07161c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c152faf7c5c6afb2b1eb748416558dd3.bindPopup(popup_1d5413372d0d7f4320d2560a83e2be75)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fd7523123ec48d77e7fc1175aab6c24 = L.circleMarker(\\n\",\n       \"                [23.8982, 100.0782],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f256949be2d57f9e6e7f343866d5a09b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_943d3a13a703a1b9c50e74204498842a = $(`&lt;div id=&quot;html_943d3a13a703a1b9c50e74204498842a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0782             latitude:23.8982             pred_result:32.36827087402344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f256949be2d57f9e6e7f343866d5a09b.setContent(html_943d3a13a703a1b9c50e74204498842a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fd7523123ec48d77e7fc1175aab6c24.bindPopup(popup_f256949be2d57f9e6e7f343866d5a09b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_88b4e82c838075d07b94aae94c5caf9e = L.circleMarker(\\n\",\n       \"                [25.0441, 101.5482],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_101c8a6388d32c9e04601435e8795271 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18dc2476dd9c268d03ec5456d847a6ff = $(`&lt;div id=&quot;html_18dc2476dd9c268d03ec5456d847a6ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.5482             latitude:25.0441             pred_result:24.67407989501953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_101c8a6388d32c9e04601435e8795271.setContent(html_18dc2476dd9c268d03ec5456d847a6ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_88b4e82c838075d07b94aae94c5caf9e.bindPopup(popup_101c8a6388d32c9e04601435e8795271)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_19aa2352ccd475da7c23660f366d6453 = L.circleMarker(\\n\",\n       \"                [25.0492, 101.538],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_88e67a430116568a9a9003bd19537134 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_255625530ab515baea9b77e11dc8af46 = $(`&lt;div id=&quot;html_255625530ab515baea9b77e11dc8af46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.538             latitude:25.0492             pred_result:24.659727096557617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_88e67a430116568a9a9003bd19537134.setContent(html_255625530ab515baea9b77e11dc8af46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_19aa2352ccd475da7c23660f366d6453.bindPopup(popup_88e67a430116568a9a9003bd19537134)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be92e448e5de71eb9d1b03bc82cc6895 = L.circleMarker(\\n\",\n       \"                [23.3993, 103.3772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e22e4dd41edf607cda15e859a9d5f86 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54faa10f884fb16a323715c2717a62fe = $(`&lt;div id=&quot;html_54faa10f884fb16a323715c2717a62fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.3772             latitude:23.3993             pred_result:35.52862548828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e22e4dd41edf607cda15e859a9d5f86.setContent(html_54faa10f884fb16a323715c2717a62fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be92e448e5de71eb9d1b03bc82cc6895.bindPopup(popup_7e22e4dd41edf607cda15e859a9d5f86)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83e932a34272fbf794433a451c5a1bd6 = L.circleMarker(\\n\",\n       \"                [23.4168, 103.386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61d96f006160b660b46bce4885e8b87d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb7e8a0ec4293acbd5b0c1e35818bbf8 = $(`&lt;div id=&quot;html_eb7e8a0ec4293acbd5b0c1e35818bbf8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.386             latitude:23.4168             pred_result:33.93803024291992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61d96f006160b660b46bce4885e8b87d.setContent(html_eb7e8a0ec4293acbd5b0c1e35818bbf8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83e932a34272fbf794433a451c5a1bd6.bindPopup(popup_61d96f006160b660b46bce4885e8b87d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_516a04671edc3ef1fcb26d882ee45d0c = L.circleMarker(\\n\",\n       \"                [23.3594, 104.2533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44fe8d1f22bec41970a00448c29489bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ee7c8772e540ebce54c4f08e48883d9 = $(`&lt;div id=&quot;html_6ee7c8772e540ebce54c4f08e48883d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.2533             latitude:23.3594             pred_result:28.481277465820312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44fe8d1f22bec41970a00448c29489bb.setContent(html_6ee7c8772e540ebce54c4f08e48883d9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_516a04671edc3ef1fcb26d882ee45d0c.bindPopup(popup_44fe8d1f22bec41970a00448c29489bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7fe70fba5a921de0cb2c0de37e46e2f = L.circleMarker(\\n\",\n       \"                [23.3892, 104.2319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d20346c264c4e4b6135d8871dc33f45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ffa7069fce4e7965fccf96eb344af36 = $(`&lt;div id=&quot;html_3ffa7069fce4e7965fccf96eb344af36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.2319             latitude:23.3892             pred_result:27.92373275756836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d20346c264c4e4b6135d8871dc33f45.setContent(html_3ffa7069fce4e7965fccf96eb344af36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7fe70fba5a921de0cb2c0de37e46e2f.bindPopup(popup_7d20346c264c4e4b6135d8871dc33f45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4125f2212b120e011961eeb6924cc9f7 = L.circleMarker(\\n\",\n       \"                [22.0019, 100.7939],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_031ab0a706221f0868ede3d6ca03561f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f1eb3108a582d837832a69bbcfbefab = $(`&lt;div id=&quot;html_5f1eb3108a582d837832a69bbcfbefab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.7939             latitude:22.0019             pred_result:25.505613327026367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_031ab0a706221f0868ede3d6ca03561f.setContent(html_5f1eb3108a582d837832a69bbcfbefab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4125f2212b120e011961eeb6924cc9f7.bindPopup(popup_031ab0a706221f0868ede3d6ca03561f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5df95477c18c01bb5e3fdc7262b138e8 = L.circleMarker(\\n\",\n       \"                [22.0225, 100.8017],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7cea187db6e1b9867871d0cb11678c7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_91b2954ccf806c14a43f0d4bb944b3b0 = $(`&lt;div id=&quot;html_91b2954ccf806c14a43f0d4bb944b3b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.8017             latitude:22.0225             pred_result:25.522497177124023             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7cea187db6e1b9867871d0cb11678c7.setContent(html_91b2954ccf806c14a43f0d4bb944b3b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5df95477c18c01bb5e3fdc7262b138e8.bindPopup(popup_e7cea187db6e1b9867871d0cb11678c7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bf517021500b731d77b2676d050f7b4f = L.circleMarker(\\n\",\n       \"                [25.7054, 100.1542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_29c6f9c3282aa79bcafce3cf5aa263a8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82ef00176a89042080088ebbda744a4f = $(`&lt;div id=&quot;html_82ef00176a89042080088ebbda744a4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.1542             latitude:25.7054             pred_result:24.062705993652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_29c6f9c3282aa79bcafce3cf5aa263a8.setContent(html_82ef00176a89042080088ebbda744a4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bf517021500b731d77b2676d050f7b4f.bindPopup(popup_29c6f9c3282aa79bcafce3cf5aa263a8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_edd6ab083fab153386f33dc2a5322ca8 = L.circleMarker(\\n\",\n       \"                [25.5811, 100.2171],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92b347195599f77f6824a355e4109d68 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b8a21f695334b1377b9bbf0abee21ea6 = $(`&lt;div id=&quot;html_b8a21f695334b1377b9bbf0abee21ea6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2171             latitude:25.5811             pred_result:24.898286819458008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92b347195599f77f6824a355e4109d68.setContent(html_b8a21f695334b1377b9bbf0abee21ea6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_edd6ab083fab153386f33dc2a5322ca8.bindPopup(popup_92b347195599f77f6824a355e4109d68)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5cc71b5a2aeb5ced674213977f18742b = L.circleMarker(\\n\",\n       \"                [24.428, 98.5842],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e47c9320a4e19b67ea254aa8ee8474e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd41819fa9d91982ebe8b57eb803947b = $(`&lt;div id=&quot;html_dd41819fa9d91982ebe8b57eb803947b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5842             latitude:24.428             pred_result:27.977874755859375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e47c9320a4e19b67ea254aa8ee8474e.setContent(html_dd41819fa9d91982ebe8b57eb803947b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5cc71b5a2aeb5ced674213977f18742b.bindPopup(popup_1e47c9320a4e19b67ea254aa8ee8474e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0086480b185357e4e0548e5359064054 = L.circleMarker(\\n\",\n       \"                [24.441, 98.578],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_57edc655e67052f062bd883bb77f6387 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b62e401a4fb139b433083b6795bf798f = $(`&lt;div id=&quot;html_b62e401a4fb139b433083b6795bf798f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.578             latitude:24.441             pred_result:27.78363037109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_57edc655e67052f062bd883bb77f6387.setContent(html_b62e401a4fb139b433083b6795bf798f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0086480b185357e4e0548e5359064054.bindPopup(popup_57edc655e67052f062bd883bb77f6387)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0bf10ded23b89218ba134f5bf3cc6525 = L.circleMarker(\\n\",\n       \"                [25.8567, 98.8601],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07b5d267e5da0e59b1229974d4f513cc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0fe50b1f2d5b06966359bc46a5017728 = $(`&lt;div id=&quot;html_0fe50b1f2d5b06966359bc46a5017728&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.8601             latitude:25.8567             pred_result:24.433116912841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07b5d267e5da0e59b1229974d4f513cc.setContent(html_0fe50b1f2d5b06966359bc46a5017728);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0bf10ded23b89218ba134f5bf3cc6525.bindPopup(popup_07b5d267e5da0e59b1229974d4f513cc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cde0fa46e9d80e1f6ceae3c5f4c2f0ed = L.circleMarker(\\n\",\n       \"                [25.8417, 98.8546],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30265aa999999c2200f998a092c36d5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ec4b52e63064e2d71c65410be785adb2 = $(`&lt;div id=&quot;html_ec4b52e63064e2d71c65410be785adb2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.8546             latitude:25.8417             pred_result:24.380386352539062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30265aa999999c2200f998a092c36d5f.setContent(html_ec4b52e63064e2d71c65410be785adb2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cde0fa46e9d80e1f6ceae3c5f4c2f0ed.bindPopup(popup_30265aa999999c2200f998a092c36d5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e195bc707237436926f62d3463b14990 = L.circleMarker(\\n\",\n       \"                [27.8136, 99.7064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e72ec650b7e609e75fb184dab91f80a3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15871522a06b02a427a018718f328e6b = $(`&lt;div id=&quot;html_15871522a06b02a427a018718f328e6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.7064             latitude:27.8136             pred_result:16.915050506591797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e72ec650b7e609e75fb184dab91f80a3.setContent(html_15871522a06b02a427a018718f328e6b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e195bc707237436926f62d3463b14990.bindPopup(popup_e72ec650b7e609e75fb184dab91f80a3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a80281537434f68b4108feca96b11f55 = L.circleMarker(\\n\",\n       \"                [27.8317, 99.7056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_042ec0dd312d150bc6865145d2a7ff2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36c9b10082f9197931a9bb2c2dcd3495 = $(`&lt;div id=&quot;html_36c9b10082f9197931a9bb2c2dcd3495&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:99.7056             latitude:27.8317             pred_result:16.664627075195312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_042ec0dd312d150bc6865145d2a7ff2f.setContent(html_36c9b10082f9197931a9bb2c2dcd3495);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a80281537434f68b4108feca96b11f55.bindPopup(popup_042ec0dd312d150bc6865145d2a7ff2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_05331889348f6adc8916e9bb67e96c6b = L.circleMarker(\\n\",\n       \"                [31.1278, 97.1804],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_943f1f6865b26cac85d067c0c716ea30 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b5a8bc7fa269175878b5a2f459c96d49 = $(`&lt;div id=&quot;html_b5a8bc7fa269175878b5a2f459c96d49&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.1804             latitude:31.1278             pred_result:15.944915771484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_943f1f6865b26cac85d067c0c716ea30.setContent(html_b5a8bc7fa269175878b5a2f459c96d49);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_05331889348f6adc8916e9bb67e96c6b.bindPopup(popup_943f1f6865b26cac85d067c0c716ea30)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4feddae9b8a169aba6fc0e64a7de8b88 = L.circleMarker(\\n\",\n       \"                [29.2313, 91.7608],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cee8b82e7ffdd83723dfb35c4fe48694 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf25eee2cfe814e2f110ae11f3f6b043 = $(`&lt;div id=&quot;html_cf25eee2cfe814e2f110ae11f3f6b043&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.7608             latitude:29.2313             pred_result:13.303686141967773             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cee8b82e7ffdd83723dfb35c4fe48694.setContent(html_cf25eee2cfe814e2f110ae11f3f6b043);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4feddae9b8a169aba6fc0e64a7de8b88.bindPopup(popup_cee8b82e7ffdd83723dfb35c4fe48694)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a70cd92d2adacd388da7dc81414993c2 = L.circleMarker(\\n\",\n       \"                [29.261, 91.7706],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_79bbd74a01aba67f45acfb6bd92cdfa0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c3eb2c5d0a2ec64e06a29cd0777f8110 = $(`&lt;div id=&quot;html_c3eb2c5d0a2ec64e06a29cd0777f8110&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:91.7706             latitude:29.261             pred_result:12.648324966430664             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_79bbd74a01aba67f45acfb6bd92cdfa0.setContent(html_c3eb2c5d0a2ec64e06a29cd0777f8110);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a70cd92d2adacd388da7dc81414993c2.bindPopup(popup_79bbd74a01aba67f45acfb6bd92cdfa0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79f76fe33bd77a927aa69bc9a4390d98 = L.circleMarker(\\n\",\n       \"                [29.2718, 88.8876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dcb642d4a97a1fcf151f37bded478c54 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_311b1fc195112b5084ae68dfb99cc101 = $(`&lt;div id=&quot;html_311b1fc195112b5084ae68dfb99cc101&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.8876             latitude:29.2718             pred_result:26.282625198364258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dcb642d4a97a1fcf151f37bded478c54.setContent(html_311b1fc195112b5084ae68dfb99cc101);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79f76fe33bd77a927aa69bc9a4390d98.bindPopup(popup_dcb642d4a97a1fcf151f37bded478c54)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_368ea619c29414d27955b34439515fcc = L.circleMarker(\\n\",\n       \"                [31.4846, 92.0657],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6b509ef85d6a598a63b89b6c74f6c2f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2344640dcdf427795e5cb34815a55a8a = $(`&lt;div id=&quot;html_2344640dcdf427795e5cb34815a55a8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:92.0657             latitude:31.4846             pred_result:16.197612762451172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6b509ef85d6a598a63b89b6c74f6c2f.setContent(html_2344640dcdf427795e5cb34815a55a8a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_368ea619c29414d27955b34439515fcc.bindPopup(popup_b6b509ef85d6a598a63b89b6c74f6c2f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5f12f25333ea49948c74173b26340855 = L.circleMarker(\\n\",\n       \"                [32.5, 80.1161],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c0dda5f4f537b43ad824133ba944371 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c4957df94c2b45cd7ff595004a966bb = $(`&lt;div id=&quot;html_4c4957df94c2b45cd7ff595004a966bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.1161             latitude:32.5             pred_result:9.07007122039795             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c0dda5f4f537b43ad824133ba944371.setContent(html_4c4957df94c2b45cd7ff595004a966bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5f12f25333ea49948c74173b26340855.bindPopup(popup_7c0dda5f4f537b43ad824133ba944371)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7a25ce209f7a810116793cc7d22d9d6 = L.circleMarker(\\n\",\n       \"                [29.6376, 94.3681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4394585138df281afcede4b8f4bca0bc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_508ef4ba0dc8a5f5fbc4e74fe1845b70 = $(`&lt;div id=&quot;html_508ef4ba0dc8a5f5fbc4e74fe1845b70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:94.3681             latitude:29.6376             pred_result:15.13233757019043             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4394585138df281afcede4b8f4bca0bc.setContent(html_508ef4ba0dc8a5f5fbc4e74fe1845b70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7a25ce209f7a810116793cc7d22d9d6.bindPopup(popup_4394585138df281afcede4b8f4bca0bc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbf4b4024aa3ad686909aeb88b403665 = L.circleMarker(\\n\",\n       \"                [29.6632, 94.3616],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f60e7d1f771fdc3b37c6a1bf7218ffd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d882bff79e518e794e224c1e6d45fc7 = $(`&lt;div id=&quot;html_8d882bff79e518e794e224c1e6d45fc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:94.3616             latitude:29.6632             pred_result:14.92788314819336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f60e7d1f771fdc3b37c6a1bf7218ffd5.setContent(html_8d882bff79e518e794e224c1e6d45fc7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbf4b4024aa3ad686909aeb88b403665.bindPopup(popup_f60e7d1f771fdc3b37c6a1bf7218ffd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ec3db29029bf94f8b6c2d37e36381282 = L.circleMarker(\\n\",\n       \"                [33.1842, 106.9893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_98f38ce6a422fa8f8d9169f45f43649b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5133c18aa4d808a2a89002e488613d88 = $(`&lt;div id=&quot;html_5133c18aa4d808a2a89002e488613d88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9893             latitude:33.1842             pred_result:34.02162170410156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_98f38ce6a422fa8f8d9169f45f43649b.setContent(html_5133c18aa4d808a2a89002e488613d88);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ec3db29029bf94f8b6c2d37e36381282.bindPopup(popup_98f38ce6a422fa8f8d9169f45f43649b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_73cbc6f644aef391e87b37dda943807f = L.circleMarker(\\n\",\n       \"                [33.0706, 107.0154],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5fdc5d91e398b3da95be951995887904 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_51fc4fb258d03b81aa997f92ca74e22a = $(`&lt;div id=&quot;html_51fc4fb258d03b81aa997f92ca74e22a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0154             latitude:33.0706             pred_result:35.0128288269043             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5fdc5d91e398b3da95be951995887904.setContent(html_51fc4fb258d03b81aa997f92ca74e22a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_73cbc6f644aef391e87b37dda943807f.bindPopup(popup_5fdc5d91e398b3da95be951995887904)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86f2a6bd8d2da23c5b1d723f690540c7 = L.circleMarker(\\n\",\n       \"                [33.1138, 107.0089],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_89706fc860db38325d62c1a5e68d9613 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_16cb3e0ff11c770d1771fec958647d31 = $(`&lt;div id=&quot;html_16cb3e0ff11c770d1771fec958647d31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.0089             latitude:33.1138             pred_result:34.67023468017578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_89706fc860db38325d62c1a5e68d9613.setContent(html_16cb3e0ff11c770d1771fec958647d31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86f2a6bd8d2da23c5b1d723f690540c7.bindPopup(popup_89706fc860db38325d62c1a5e68d9613)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_915796f5813a6381471c04cb6f47a088 = L.circleMarker(\\n\",\n       \"                [33.0323, 107.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce91a3eee0b6efe024a67a45d4becee3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fd4f3bb1a1cf115e196724c99195cf2d = $(`&lt;div id=&quot;html_fd4f3bb1a1cf115e196724c99195cf2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.007             latitude:33.0323             pred_result:34.877601623535156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce91a3eee0b6efe024a67a45d4becee3.setContent(html_fd4f3bb1a1cf115e196724c99195cf2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_915796f5813a6381471c04cb6f47a088.bindPopup(popup_ce91a3eee0b6efe024a67a45d4becee3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_62e69fad278d29074d262e8097c0115c = L.circleMarker(\\n\",\n       \"                [38.3344, 109.7414],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b599b56af4d6f645bdf63bf95970de82 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1e7d09517cefe53c16896b9335dca9b7 = $(`&lt;div id=&quot;html_1e7d09517cefe53c16896b9335dca9b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7414             latitude:38.3344             pred_result:40.59639358520508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b599b56af4d6f645bdf63bf95970de82.setContent(html_1e7d09517cefe53c16896b9335dca9b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_62e69fad278d29074d262e8097c0115c.bindPopup(popup_b599b56af4d6f645bdf63bf95970de82)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a68ee842bdcffb410247883448132b78 = L.circleMarker(\\n\",\n       \"                [38.2911, 109.7456],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54d2a5450aac7e16884a913b91770b76 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_45096172c7fbdb85ec4141d4ebb9494b = $(`&lt;div id=&quot;html_45096172c7fbdb85ec4141d4ebb9494b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7456             latitude:38.2911             pred_result:41.283233642578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54d2a5450aac7e16884a913b91770b76.setContent(html_45096172c7fbdb85ec4141d4ebb9494b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a68ee842bdcffb410247883448132b78.bindPopup(popup_54d2a5450aac7e16884a913b91770b76)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d19cdd3b6af5174ea10f32dcb92764cf = L.circleMarker(\\n\",\n       \"                [38.2839, 109.7289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_241faf0c4ca4ea03d6d84d45f453ba6d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2853473dba6eb95152f9fff18bca4aa3 = $(`&lt;div id=&quot;html_2853473dba6eb95152f9fff18bca4aa3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7289             latitude:38.2839             pred_result:42.62984848022461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_241faf0c4ca4ea03d6d84d45f453ba6d.setContent(html_2853473dba6eb95152f9fff18bca4aa3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d19cdd3b6af5174ea10f32dcb92764cf.bindPopup(popup_241faf0c4ca4ea03d6d84d45f453ba6d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_721e3316af5e969e067951c8b2c33a9a = L.circleMarker(\\n\",\n       \"                [38.2478, 109.7336],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e4cb598409354867ec3a4119031c6a4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e85312ae15c7da9bad18478aa2647276 = $(`&lt;div id=&quot;html_e85312ae15c7da9bad18478aa2647276&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7336             latitude:38.2478             pred_result:41.85179138183594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e4cb598409354867ec3a4119031c6a4.setContent(html_e85312ae15c7da9bad18478aa2647276);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_721e3316af5e969e067951c8b2c33a9a.bindPopup(popup_7e4cb598409354867ec3a4119031c6a4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b5eca48b6889a610b09cb912223c1fda = L.circleMarker(\\n\",\n       \"                [32.6778, 109.0311],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_48f45dafbb7dbeceae721cb975322e6e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d2a4002943fb469a4bf6931c7c6f5535 = $(`&lt;div id=&quot;html_d2a4002943fb469a4bf6931c7c6f5535&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0311             latitude:32.6778             pred_result:17.993066787719727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_48f45dafbb7dbeceae721cb975322e6e.setContent(html_d2a4002943fb469a4bf6931c7c6f5535);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b5eca48b6889a610b09cb912223c1fda.bindPopup(popup_48f45dafbb7dbeceae721cb975322e6e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_226c3ca399a510af64dd61f955c4679e = L.circleMarker(\\n\",\n       \"                [32.6939, 109.0281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c437f439e6cc09e0c434b104b2280c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df5c1f33a281becd5354de2ed21981f9 = $(`&lt;div id=&quot;html_df5c1f33a281becd5354de2ed21981f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0281             latitude:32.6939             pred_result:18.829618453979492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c437f439e6cc09e0c434b104b2280c6.setContent(html_df5c1f33a281becd5354de2ed21981f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_226c3ca399a510af64dd61f955c4679e.bindPopup(popup_8c437f439e6cc09e0c434b104b2280c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a989a530965b026908d8b8547279560 = L.circleMarker(\\n\",\n       \"                [32.6975, 109.0072],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_802b0ae4b35c47fa7e9668c6b3de8726 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9aca710be3bab12f08b1e64bb541d0c = $(`&lt;div id=&quot;html_a9aca710be3bab12f08b1e64bb541d0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.0072             latitude:32.6975             pred_result:18.386133193969727             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_802b0ae4b35c47fa7e9668c6b3de8726.setContent(html_a9aca710be3bab12f08b1e64bb541d0c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a989a530965b026908d8b8547279560.bindPopup(popup_802b0ae4b35c47fa7e9668c6b3de8726)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_54f0a84dddcac7e58483272a6c9311a8 = L.circleMarker(\\n\",\n       \"                [33.8715, 109.9154],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_425976d4bfb22b1b350ca6b2aad3e038 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b421d87c63b3227a42a03ea1fa617d29 = $(`&lt;div id=&quot;html_b421d87c63b3227a42a03ea1fa617d29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.9154             latitude:33.8715             pred_result:34.579734802246094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_425976d4bfb22b1b350ca6b2aad3e038.setContent(html_b421d87c63b3227a42a03ea1fa617d29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_54f0a84dddcac7e58483272a6c9311a8.bindPopup(popup_425976d4bfb22b1b350ca6b2aad3e038)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be124ef0d708a3122810d39c30ec6dd6 = L.circleMarker(\\n\",\n       \"                [36.5458, 104.1731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_62fecd04cd5a11e618cf1dec18be38c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3c5f7854f41c3da4ed6b3c7064cf94ea = $(`&lt;div id=&quot;html_3c5f7854f41c3da4ed6b3c7064cf94ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1731             latitude:36.5458             pred_result:42.49372863769531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_62fecd04cd5a11e618cf1dec18be38c1.setContent(html_3c5f7854f41c3da4ed6b3c7064cf94ea);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be124ef0d708a3122810d39c30ec6dd6.bindPopup(popup_62fecd04cd5a11e618cf1dec18be38c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a42a24d62acfba2e7f44cc6994d9d628 = L.circleMarker(\\n\",\n       \"                [36.5481, 104.1731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ef8169ff16a5b7c0eea108fcc4c578ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d9b4295704c8eaf80779d7bac841744 = $(`&lt;div id=&quot;html_2d9b4295704c8eaf80779d7bac841744&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.1731             latitude:36.5481             pred_result:42.1216926574707             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ef8169ff16a5b7c0eea108fcc4c578ae.setContent(html_2d9b4295704c8eaf80779d7bac841744);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a42a24d62acfba2e7f44cc6994d9d628.bindPopup(popup_ef8169ff16a5b7c0eea108fcc4c578ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eee4dc5371c5790d60686acb7fd7b97e = L.circleMarker(\\n\",\n       \"                [34.3469, 106.005],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4e85e2e119acd4f736ac4cad1c07cc0b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a9385fa4ed4877588a0ae17bd9a72a14 = $(`&lt;div id=&quot;html_a9385fa4ed4877588a0ae17bd9a72a14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.005             latitude:34.3469             pred_result:30.690616607666016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4e85e2e119acd4f736ac4cad1c07cc0b.setContent(html_a9385fa4ed4877588a0ae17bd9a72a14);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eee4dc5371c5790d60686acb7fd7b97e.bindPopup(popup_4e85e2e119acd4f736ac4cad1c07cc0b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8889cac3684260d42b53eff19bc00c25 = L.circleMarker(\\n\",\n       \"                [34.5814, 105.7281],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_159db527626a439100d5fbf4055dcfb6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dad9028d2248aaad85d40cd8a16db471 = $(`&lt;div id=&quot;html_dad9028d2248aaad85d40cd8a16db471&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.7281             latitude:34.5814             pred_result:35.56447219848633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_159db527626a439100d5fbf4055dcfb6.setContent(html_dad9028d2248aaad85d40cd8a16db471);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8889cac3684260d42b53eff19bc00c25.bindPopup(popup_159db527626a439100d5fbf4055dcfb6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_76cfd7d27a9317c38cdae848d1b6b812 = L.circleMarker(\\n\",\n       \"                [34.5653, 105.8614],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_adedebeaf310a85cc80ae04469f7457a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_336ee18bdf3cc411963b0007a1ee8a33 = $(`&lt;div id=&quot;html_336ee18bdf3cc411963b0007a1ee8a33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8614             latitude:34.5653             pred_result:35.186439514160156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_adedebeaf310a85cc80ae04469f7457a.setContent(html_336ee18bdf3cc411963b0007a1ee8a33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_76cfd7d27a9317c38cdae848d1b6b812.bindPopup(popup_adedebeaf310a85cc80ae04469f7457a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d6e477d58bc5e9e2b43998b53af4cf58 = L.circleMarker(\\n\",\n       \"                [37.9311, 102.6219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_49ca77b5045709d98a753f9b3a1bfbea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbbe84e52fcc5e00ccfc53c9fed2eb73 = $(`&lt;div id=&quot;html_dbbe84e52fcc5e00ccfc53c9fed2eb73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6219             latitude:37.9311             pred_result:42.03380584716797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_49ca77b5045709d98a753f9b3a1bfbea.setContent(html_dbbe84e52fcc5e00ccfc53c9fed2eb73);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d6e477d58bc5e9e2b43998b53af4cf58.bindPopup(popup_49ca77b5045709d98a753f9b3a1bfbea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_df471b94b04f245f62713c46abc1a5b8 = L.circleMarker(\\n\",\n       \"                [37.9358, 102.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c66a60780a23ea014fe7539b5f1ec50f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8681e5a8d1d4525b225d80f04ad8cdf5 = $(`&lt;div id=&quot;html_8681e5a8d1d4525b225d80f04ad8cdf5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6469             latitude:37.9358             pred_result:43.28308868408203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c66a60780a23ea014fe7539b5f1ec50f.setContent(html_8681e5a8d1d4525b225d80f04ad8cdf5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_df471b94b04f245f62713c46abc1a5b8.bindPopup(popup_c66a60780a23ea014fe7539b5f1ec50f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_71048c2771803eb5653bad078acb0a41 = L.circleMarker(\\n\",\n       \"                [38.9467, 100.4686],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fcd096e3b8855120aaca2d0a2dbef0ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dbce916527adfef3904fab9debdf12d1 = $(`&lt;div id=&quot;html_dbce916527adfef3904fab9debdf12d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.4686             latitude:38.9467             pred_result:32.08230972290039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fcd096e3b8855120aaca2d0a2dbef0ef.setContent(html_dbce916527adfef3904fab9debdf12d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_71048c2771803eb5653bad078acb0a41.bindPopup(popup_fcd096e3b8855120aaca2d0a2dbef0ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e1b968ca1f3ffff253d916585ba90bf5 = L.circleMarker(\\n\",\n       \"                [38.9389, 100.4497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73411b4bc6cf7cd1d35ffa751be57442 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5da2f37c655d44c29dfd19ffd4d93409 = $(`&lt;div id=&quot;html_5da2f37c655d44c29dfd19ffd4d93409&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.4497             latitude:38.9389             pred_result:30.282392501831055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73411b4bc6cf7cd1d35ffa751be57442.setContent(html_5da2f37c655d44c29dfd19ffd4d93409);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e1b968ca1f3ffff253d916585ba90bf5.bindPopup(popup_73411b4bc6cf7cd1d35ffa751be57442)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ded5fe0d8e5af965feb7e1ca9ee5bf9 = L.circleMarker(\\n\",\n       \"                [35.5461, 106.6692],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_deb6013daac1f7c13572d5469fccf374 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c57ab3dafc7db4ffae159d0e3ed230d7 = $(`&lt;div id=&quot;html_c57ab3dafc7db4ffae159d0e3ed230d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6692             latitude:35.5461             pred_result:30.449542999267578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_deb6013daac1f7c13572d5469fccf374.setContent(html_c57ab3dafc7db4ffae159d0e3ed230d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ded5fe0d8e5af965feb7e1ca9ee5bf9.bindPopup(popup_deb6013daac1f7c13572d5469fccf374)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbc3800eff87e73a75bb8fb3bc074b2a = L.circleMarker(\\n\",\n       \"                [35.5294, 106.7039],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9588db71fca80adb583c076ec77e671 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1cd06f43f3ea3afa8353922ab8ac155 = $(`&lt;div id=&quot;html_c1cd06f43f3ea3afa8353922ab8ac155&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7039             latitude:35.5294             pred_result:32.95024108886719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9588db71fca80adb583c076ec77e671.setContent(html_c1cd06f43f3ea3afa8353922ab8ac155);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbc3800eff87e73a75bb8fb3bc074b2a.bindPopup(popup_c9588db71fca80adb583c076ec77e671)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_84ecdc03191b0f2bb1722583023b8d3e = L.circleMarker(\\n\",\n       \"                [39.746, 98.509],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3679c2312ea3aff2edb5e8577eb07216 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36000fc9dce7b1593afcb85d2757ca0d = $(`&lt;div id=&quot;html_36000fc9dce7b1593afcb85d2757ca0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.509             latitude:39.746             pred_result:25.661701202392578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3679c2312ea3aff2edb5e8577eb07216.setContent(html_36000fc9dce7b1593afcb85d2757ca0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_84ecdc03191b0f2bb1722583023b8d3e.bindPopup(popup_3679c2312ea3aff2edb5e8577eb07216)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79caf417927d3ff684496b25d860a57e = L.circleMarker(\\n\",\n       \"                [39.7294, 98.5023],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e901775382f482c99cf4fff1f27e8a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01c34c6eb7e3b8bba8a6f5d835904c4f = $(`&lt;div id=&quot;html_01c34c6eb7e3b8bba8a6f5d835904c4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5023             latitude:39.7294             pred_result:25.37544822692871             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e901775382f482c99cf4fff1f27e8a7.setContent(html_01c34c6eb7e3b8bba8a6f5d835904c4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79caf417927d3ff684496b25d860a57e.bindPopup(popup_1e901775382f482c99cf4fff1f27e8a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8387c11a27d7cee31536ea92ad069488 = L.circleMarker(\\n\",\n       \"                [35.7289, 107.6831],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_45f4d12ec27e5f1dbc5f880e46e4465d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e5c51463b7ab23f490b4c5db1105b7f6 = $(`&lt;div id=&quot;html_e5c51463b7ab23f490b4c5db1105b7f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6831             latitude:35.7289             pred_result:35.943817138671875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_45f4d12ec27e5f1dbc5f880e46e4465d.setContent(html_e5c51463b7ab23f490b4c5db1105b7f6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8387c11a27d7cee31536ea92ad069488.bindPopup(popup_45f4d12ec27e5f1dbc5f880e46e4465d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e525de4a5f0cc3a615b31a5728eb7bd9 = L.circleMarker(\\n\",\n       \"                [35.5236, 107.6406],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a85a139c1dc48d28f126f16a3bf069e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a47f12513b341d95f9d6fdbe4cdcb9f7 = $(`&lt;div id=&quot;html_a47f12513b341d95f9d6fdbe4cdcb9f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6406             latitude:35.5236             pred_result:37.987205505371094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a85a139c1dc48d28f126f16a3bf069e.setContent(html_a47f12513b341d95f9d6fdbe4cdcb9f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e525de4a5f0cc3a615b31a5728eb7bd9.bindPopup(popup_1a85a139c1dc48d28f126f16a3bf069e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45b523316007f2ee1b86fd11e72cc4ea = L.circleMarker(\\n\",\n       \"                [35.7067, 107.6364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b8a655d25e323bd8a0dd83771b6c09b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d9e9a60368992242d77557eda72d99e4 = $(`&lt;div id=&quot;html_d9e9a60368992242d77557eda72d99e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.6364             latitude:35.7067             pred_result:38.0057487487793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b8a655d25e323bd8a0dd83771b6c09b.setContent(html_d9e9a60368992242d77557eda72d99e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45b523316007f2ee1b86fd11e72cc4ea.bindPopup(popup_7b8a655d25e323bd8a0dd83771b6c09b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f2578dfb6d22754238bc868436609bc3 = L.circleMarker(\\n\",\n       \"                [35.5714, 104.6228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_980ea327db68179057ff4d3a1013d752 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ac49cc49910bbbf91660444ad92d61d7 = $(`&lt;div id=&quot;html_ac49cc49910bbbf91660444ad92d61d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6228             latitude:35.5714             pred_result:35.00680923461914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_980ea327db68179057ff4d3a1013d752.setContent(html_ac49cc49910bbbf91660444ad92d61d7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f2578dfb6d22754238bc868436609bc3.bindPopup(popup_980ea327db68179057ff4d3a1013d752)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3ddb6e264ff13cae9162f6dc70669fa2 = L.circleMarker(\\n\",\n       \"                [35.5975, 104.6169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_902612e7b12c05071a2ec0bf7faf2d3d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1e7c77886fb79ecd6484011e26a53f7 = $(`&lt;div id=&quot;html_c1e7c77886fb79ecd6484011e26a53f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6169             latitude:35.5975             pred_result:34.494171142578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_902612e7b12c05071a2ec0bf7faf2d3d.setContent(html_c1e7c77886fb79ecd6484011e26a53f7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3ddb6e264ff13cae9162f6dc70669fa2.bindPopup(popup_902612e7b12c05071a2ec0bf7faf2d3d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d63b768065ce346e3f22d1e681264a3 = L.circleMarker(\\n\",\n       \"                [33.3261, 105.0822],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a5069ece8da1593a60dca62081a58d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_33024d70d5cc404f72ffadbaa69baeec = $(`&lt;div id=&quot;html_33024d70d5cc404f72ffadbaa69baeec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0822             latitude:33.3261             pred_result:32.76958084106445             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a5069ece8da1593a60dca62081a58d5.setContent(html_33024d70d5cc404f72ffadbaa69baeec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d63b768065ce346e3f22d1e681264a3.bindPopup(popup_0a5069ece8da1593a60dca62081a58d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8e87ab04d5b65cb87b5737b1ad0b9904 = L.circleMarker(\\n\",\n       \"                [35.6039, 103.2139],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a786085273d98b9cf6a8680e359c563a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d5489828f8bc874b0274547edf02ef4 = $(`&lt;div id=&quot;html_9d5489828f8bc874b0274547edf02ef4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.2139             latitude:35.6039             pred_result:30.043031692504883             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a786085273d98b9cf6a8680e359c563a.setContent(html_9d5489828f8bc874b0274547edf02ef4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8e87ab04d5b65cb87b5737b1ad0b9904.bindPopup(popup_a786085273d98b9cf6a8680e359c563a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f387a51f7f6e249d3f094a720559794a = L.circleMarker(\\n\",\n       \"                [35.5997, 103.2064],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ccac31ce13edaf9951f5857df6266b4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e4edeea06f03ffde859bf15748acd51 = $(`&lt;div id=&quot;html_7e4edeea06f03ffde859bf15748acd51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.2064             latitude:35.5997             pred_result:29.703475952148438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ccac31ce13edaf9951f5857df6266b4f.setContent(html_7e4edeea06f03ffde859bf15748acd51);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f387a51f7f6e249d3f094a720559794a.bindPopup(popup_ccac31ce13edaf9951f5857df6266b4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b9dc20fbe850bbdb75283c31fd1e602 = L.circleMarker(\\n\",\n       \"                [35.0003, 102.905],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00c951068a5f6d016cbb1cc0c3d6bdd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbfac8fc4a530d05a6af93707fe3b9fb = $(`&lt;div id=&quot;html_fbfac8fc4a530d05a6af93707fe3b9fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.905             latitude:35.0003             pred_result:28.14739418029785             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00c951068a5f6d016cbb1cc0c3d6bdd5.setContent(html_fbfac8fc4a530d05a6af93707fe3b9fb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b9dc20fbe850bbdb75283c31fd1e602.bindPopup(popup_00c951068a5f6d016cbb1cc0c3d6bdd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_11780d1c2643635fb5f722cb5f3dffe2 = L.circleMarker(\\n\",\n       \"                [36.9639, 100.9048],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_804e16c8ad410a69ccc2113d476e8331 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9bb2bb25367e61e8be9ed975e263e2f = $(`&lt;div id=&quot;html_c9bb2bb25367e61e8be9ed975e263e2f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.9048             latitude:36.9639             pred_result:35.993736267089844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_804e16c8ad410a69ccc2113d476e8331.setContent(html_c9bb2bb25367e61e8be9ed975e263e2f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_11780d1c2643635fb5f722cb5f3dffe2.bindPopup(popup_804e16c8ad410a69ccc2113d476e8331)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a842836b3445ac1cbe338d36b51701ad = L.circleMarker(\\n\",\n       \"                [35.5102, 102.0199],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e7a5cb3fbb9246ae8c807c06f4dda20b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6707a2a4a707a049e0d576bdeb9a1b5 = $(`&lt;div id=&quot;html_c6707a2a4a707a049e0d576bdeb9a1b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.0199             latitude:35.5102             pred_result:19.22398567199707             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e7a5cb3fbb9246ae8c807c06f4dda20b.setContent(html_c6707a2a4a707a049e0d576bdeb9a1b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a842836b3445ac1cbe338d36b51701ad.bindPopup(popup_e7a5cb3fbb9246ae8c807c06f4dda20b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc761214e0a89431f12663493f666d1c = L.circleMarker(\\n\",\n       \"                [36.2866, 100.6188],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1faaff2285f866ebeca034d3491d88f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a72446b5b5cfb7da507fee06c41973e3 = $(`&lt;div id=&quot;html_a72446b5b5cfb7da507fee06c41973e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.6188             latitude:36.2866             pred_result:36.39947509765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1faaff2285f866ebeca034d3491d88f.setContent(html_a72446b5b5cfb7da507fee06c41973e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc761214e0a89431f12663493f666d1c.bindPopup(popup_a1faaff2285f866ebeca034d3491d88f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_90c01a3c6734508570fe603e3c85e15f = L.circleMarker(\\n\",\n       \"                [34.4714, 100.2561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_09e8ec0ea4e502dc5e6460b418762095 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4bc5abc30e639d82128a3a41a3b1ec8c = $(`&lt;div id=&quot;html_4bc5abc30e639d82128a3a41a3b1ec8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.2561             latitude:34.4714             pred_result:17.88358497619629             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_09e8ec0ea4e502dc5e6460b418762095.setContent(html_4bc5abc30e639d82128a3a41a3b1ec8c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_90c01a3c6734508570fe603e3c85e15f.bindPopup(popup_09e8ec0ea4e502dc5e6460b418762095)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c01b2646d130a2c7e289289071b9bd73 = L.circleMarker(\\n\",\n       \"                [33.0014, 97.0],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_54d2550c10ad33a0bb0b0e28baa1bbc2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58e3fe90afc4862c72b28cd98b0895d0 = $(`&lt;div id=&quot;html_58e3fe90afc4862c72b28cd98b0895d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.0             latitude:33.0014             pred_result:17.966785430908203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_54d2550c10ad33a0bb0b0e28baa1bbc2.setContent(html_58e3fe90afc4862c72b28cd98b0895d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c01b2646d130a2c7e289289071b9bd73.bindPopup(popup_54d2550c10ad33a0bb0b0e28baa1bbc2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e75a0af440040ca2fa4b29fc5dca5003 = L.circleMarker(\\n\",\n       \"                [37.3753, 97.3731],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cafa92a7bba96c0bcf2b943394a3d7dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8a05c1c1f3e6dd2084bbb66f5838fb3 = $(`&lt;div id=&quot;html_e8a05c1c1f3e6dd2084bbb66f5838fb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.3731             latitude:37.3753             pred_result:28.61320686340332             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cafa92a7bba96c0bcf2b943394a3d7dc.setContent(html_e8a05c1c1f3e6dd2084bbb66f5838fb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e75a0af440040ca2fa4b29fc5dca5003.bindPopup(popup_cafa92a7bba96c0bcf2b943394a3d7dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b082bd8af2f8815abb73d4c26b84c1c = L.circleMarker(\\n\",\n       \"                [37.9648, 106.1532],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b0796daa2e64b3cda07d9ab12742a1ff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22b5b30e6083840fe99ce0871f0a96ac = $(`&lt;div id=&quot;html_22b5b30e6083840fe99ce0871f0a96ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1532             latitude:37.9648             pred_result:48.46781539916992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b0796daa2e64b3cda07d9ab12742a1ff.setContent(html_22b5b30e6083840fe99ce0871f0a96ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b082bd8af2f8815abb73d4c26b84c1c.bindPopup(popup_b0796daa2e64b3cda07d9ab12742a1ff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fdcde422dd3ce8e1c83710e2fde6f3f = L.circleMarker(\\n\",\n       \"                [37.9844, 106.2025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59b65685f51f85494fac6721fff29c4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc58ecdc355b73992152ccfc014f2fe5 = $(`&lt;div id=&quot;html_fc58ecdc355b73992152ccfc014f2fe5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2025             latitude:37.9844             pred_result:46.586151123046875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59b65685f51f85494fac6721fff29c4f.setContent(html_fc58ecdc355b73992152ccfc014f2fe5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fdcde422dd3ce8e1c83710e2fde6f3f.bindPopup(popup_59b65685f51f85494fac6721fff29c4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a4d8a1ce2e8a138baeb4a0d9a37a7d3 = L.circleMarker(\\n\",\n       \"                [37.9723, 106.196],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e40f503961d90c8395eeb829d6c3e173 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0ea672539af502f5455de79fed339617 = $(`&lt;div id=&quot;html_0ea672539af502f5455de79fed339617&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.196             latitude:37.9723             pred_result:47.16083526611328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e40f503961d90c8395eeb829d6c3e173.setContent(html_0ea672539af502f5455de79fed339617);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a4d8a1ce2e8a138baeb4a0d9a37a7d3.bindPopup(popup_e40f503961d90c8395eeb829d6c3e173)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6d9e291c1b4347c25537393dd68694f = L.circleMarker(\\n\",\n       \"                [37.4514, 105.0197],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_21a07463da97d07f1b9c993b89456460 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6ad51de1536bdd87c4d1f6a65380bf9e = $(`&lt;div id=&quot;html_6ad51de1536bdd87c4d1f6a65380bf9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0197             latitude:37.4514             pred_result:43.42610168457031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_21a07463da97d07f1b9c993b89456460.setContent(html_6ad51de1536bdd87c4d1f6a65380bf9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6d9e291c1b4347c25537393dd68694f.bindPopup(popup_21a07463da97d07f1b9c993b89456460)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a11b3ac0176fb0de4d85ed2f25efa4c3 = L.circleMarker(\\n\",\n       \"                [37.0172, 105.18],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e50968dd0312950580f9601705763c0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_65fa909befc9c1555d73967d547f8815 = $(`&lt;div id=&quot;html_65fa909befc9c1555d73967d547f8815&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.18             latitude:37.0172             pred_result:37.036827087402344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e50968dd0312950580f9601705763c0a.setContent(html_65fa909befc9c1555d73967d547f8815);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a11b3ac0176fb0de4d85ed2f25efa4c3.bindPopup(popup_e50968dd0312950580f9601705763c0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0114962d23ec2c68560422ed4a54db3 = L.circleMarker(\\n\",\n       \"                [37.5002, 105.1971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75d31fa66c5f605bac6ce120e426e676 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1be1bbc1431ace8f254e5bb3f9227635 = $(`&lt;div id=&quot;html_1be1bbc1431ace8f254e5bb3f9227635&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.1971             latitude:37.5002             pred_result:45.827362060546875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75d31fa66c5f605bac6ce120e426e676.setContent(html_1be1bbc1431ace8f254e5bb3f9227635);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0114962d23ec2c68560422ed4a54db3.bindPopup(popup_75d31fa66c5f605bac6ce120e426e676)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf6069cd34b8bcc03929c598f47b80f4 = L.circleMarker(\\n\",\n       \"                [36.1417, 106.2319],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d80ef450b672b0ae18371b74bd5e4e3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c31657698cb893dd487b70439b9f1a05 = $(`&lt;div id=&quot;html_c31657698cb893dd487b70439b9f1a05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2319             latitude:36.1417             pred_result:33.54785919189453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d80ef450b672b0ae18371b74bd5e4e3f.setContent(html_c31657698cb893dd487b70439b9f1a05);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf6069cd34b8bcc03929c598f47b80f4.bindPopup(popup_d80ef450b672b0ae18371b74bd5e4e3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79c21ef7d8a38566149e4c39063363da = L.circleMarker(\\n\",\n       \"                [36.0022, 106.2792],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c808155b97ccd71611d611d89613c3c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_88d548325990a9246bccc7da502a4238 = $(`&lt;div id=&quot;html_88d548325990a9246bccc7da502a4238&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2792             latitude:36.0022             pred_result:32.23160934448242             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c808155b97ccd71611d611d89613c3c5.setContent(html_88d548325990a9246bccc7da502a4238);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79c21ef7d8a38566149e4c39063363da.bindPopup(popup_c808155b97ccd71611d611d89613c3c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e5f48b722ec65fa1199dff275e3580fc = L.circleMarker(\\n\",\n       \"                [36.0211, 106.2375],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8ef945bdea0000df194da06ee207b04 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca748b0de0d78e9feb47762da04d214d = $(`&lt;div id=&quot;html_ca748b0de0d78e9feb47762da04d214d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2375             latitude:36.0211             pred_result:32.53213882446289             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8ef945bdea0000df194da06ee207b04.setContent(html_ca748b0de0d78e9feb47762da04d214d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e5f48b722ec65fa1199dff275e3580fc.bindPopup(popup_b8ef945bdea0000df194da06ee207b04)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3d52c9c18f550c7cf68b56c96ddb6d2 = L.circleMarker(\\n\",\n       \"                [42.9409, 89.191],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f904c88c5da16142f7f24e97e34426ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_552727b4ae9d8e98f22178a06320e0a5 = $(`&lt;div id=&quot;html_552727b4ae9d8e98f22178a06320e0a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:89.191             latitude:42.9409             pred_result:42.690433502197266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f904c88c5da16142f7f24e97e34426ce.setContent(html_552727b4ae9d8e98f22178a06320e0a5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3d52c9c18f550c7cf68b56c96ddb6d2.bindPopup(popup_f904c88c5da16142f7f24e97e34426ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad6957661b192aa63154843dd2e4aa48 = L.circleMarker(\\n\",\n       \"                [42.9559, 89.1673],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a03abc986a95e71c0945e4484cd6aab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3f4e0b1d054c8dcb67c2bb8c6b24d266 = $(`&lt;div id=&quot;html_3f4e0b1d054c8dcb67c2bb8c6b24d266&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:89.1673             latitude:42.9559             pred_result:39.59849166870117             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a03abc986a95e71c0945e4484cd6aab.setContent(html_3f4e0b1d054c8dcb67c2bb8c6b24d266);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad6957661b192aa63154843dd2e4aa48.bindPopup(popup_5a03abc986a95e71c0945e4484cd6aab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fbe226a831310edb12e868b7718b47b1 = L.circleMarker(\\n\",\n       \"                [42.8172, 93.5128],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d4d560885cff557b2ee911386b08fdf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4270b5ff30bc3f68fe55a37fe9cbe84a = $(`&lt;div id=&quot;html_4270b5ff30bc3f68fe55a37fe9cbe84a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:93.5128             latitude:42.8172             pred_result:25.064882278442383             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d4d560885cff557b2ee911386b08fdf.setContent(html_4270b5ff30bc3f68fe55a37fe9cbe84a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fbe226a831310edb12e868b7718b47b1.bindPopup(popup_0d4d560885cff557b2ee911386b08fdf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f83ce1c14fd62a0b878eb60ff1943e0e = L.circleMarker(\\n\",\n       \"                [42.8328, 93.4961],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61efc91d9facc034b28131a9a4508ffe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d24b998110f532fdacb9048e90e2aa5e = $(`&lt;div id=&quot;html_d24b998110f532fdacb9048e90e2aa5e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:93.4961             latitude:42.8328             pred_result:22.5450439453125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61efc91d9facc034b28131a9a4508ffe.setContent(html_d24b998110f532fdacb9048e90e2aa5e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f83ce1c14fd62a0b878eb60ff1943e0e.bindPopup(popup_61efc91d9facc034b28131a9a4508ffe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_35ae1f319f7e4b83d77e757865d1c78d = L.circleMarker(\\n\",\n       \"                [44.1564, 87.9897],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d3552af21ced0446e9a6e1402de6189 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cf94d70566204e1d2f2c64ca1bb58d1 = $(`&lt;div id=&quot;html_8cf94d70566204e1d2f2c64ca1bb58d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.9897             latitude:44.1564             pred_result:39.59645462036133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d3552af21ced0446e9a6e1402de6189.setContent(html_8cf94d70566204e1d2f2c64ca1bb58d1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_35ae1f319f7e4b83d77e757865d1c78d.bindPopup(popup_8d3552af21ced0446e9a6e1402de6189)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2b6ec7f815fd962b17a620b55c9f2f80 = L.circleMarker(\\n\",\n       \"                [44.0114, 87.2997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9c2a375ba808b3efb41ba5b2599b02a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7082039f1a18e662ef9afdc76ac2fa9e = $(`&lt;div id=&quot;html_7082039f1a18e662ef9afdc76ac2fa9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2997             latitude:44.0114             pred_result:62.583778381347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9c2a375ba808b3efb41ba5b2599b02a.setContent(html_7082039f1a18e662ef9afdc76ac2fa9e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2b6ec7f815fd962b17a620b55c9f2f80.bindPopup(popup_c9c2a375ba808b3efb41ba5b2599b02a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6291b647ebc9ad2f3ee8a2949e1e965 = L.circleMarker(\\n\",\n       \"                [44.0297, 87.2717],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42aee397f67513535aff447f51f428e8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d61e359a190b95e512e83ab7def6f4bb = $(`&lt;div id=&quot;html_d61e359a190b95e512e83ab7def6f4bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2717             latitude:44.0297             pred_result:53.01121139526367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42aee397f67513535aff447f51f428e8.setContent(html_d61e359a190b95e512e83ab7def6f4bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6291b647ebc9ad2f3ee8a2949e1e965.bindPopup(popup_42aee397f67513535aff447f51f428e8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1a0ef960b6eeab718e3db060a2bef299 = L.circleMarker(\\n\",\n       \"                [44.9079, 82.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_525f228511a95ea1581caf5ed5ba46eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_894c87dacb97ba502c0b136ccf422a1b = $(`&lt;div id=&quot;html_894c87dacb97ba502c0b136ccf422a1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.0485             latitude:44.9079             pred_result:55.186676025390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_525f228511a95ea1581caf5ed5ba46eb.setContent(html_894c87dacb97ba502c0b136ccf422a1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1a0ef960b6eeab718e3db060a2bef299.bindPopup(popup_525f228511a95ea1581caf5ed5ba46eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_790ff312b3fb3b8cd9a81758aa62a0a5 = L.circleMarker(\\n\",\n       \"                [44.8969, 82.0806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5e504206cbc3ecfe040eb8f0bb66b4a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af17cbe523152d74cd7c677f0077b4cf = $(`&lt;div id=&quot;html_af17cbe523152d74cd7c677f0077b4cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.0806             latitude:44.8969             pred_result:64.51618957519531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5e504206cbc3ecfe040eb8f0bb66b4a0.setContent(html_af17cbe523152d74cd7c677f0077b4cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_790ff312b3fb3b8cd9a81758aa62a0a5.bindPopup(popup_5e504206cbc3ecfe040eb8f0bb66b4a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ea25f7ccd32b82632934018db65f4b3 = L.circleMarker(\\n\",\n       \"                [41.1636, 80.2828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c96007c590f6816c4f5f8dd409a28ae3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f3435f496c74f359a71f0ecb4a835cc6 = $(`&lt;div id=&quot;html_f3435f496c74f359a71f0ecb4a835cc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2828             latitude:41.1636             pred_result:63.59951400756836             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c96007c590f6816c4f5f8dd409a28ae3.setContent(html_f3435f496c74f359a71f0ecb4a835cc6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ea25f7ccd32b82632934018db65f4b3.bindPopup(popup_c96007c590f6816c4f5f8dd409a28ae3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d1753639afab1e59bc5bbdad814c157 = L.circleMarker(\\n\",\n       \"                [41.1933, 80.2956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4df07b3d19b83c64a9c25de075f577be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_50b022488a47cc62e45f7fa870b6ee46 = $(`&lt;div id=&quot;html_50b022488a47cc62e45f7fa870b6ee46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2956             latitude:41.1933             pred_result:63.05594253540039             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4df07b3d19b83c64a9c25de075f577be.setContent(html_50b022488a47cc62e45f7fa870b6ee46);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d1753639afab1e59bc5bbdad814c157.bindPopup(popup_4df07b3d19b83c64a9c25de075f577be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fb0da79f0c28e2208ad90cbbf93fcdb = L.circleMarker(\\n\",\n       \"                [39.7153, 76.1861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_42d6fe17f34d4071348843a4b40af0b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_084ca504f1e310f8784fb018b9807d24 = $(`&lt;div id=&quot;html_084ca504f1e310f8784fb018b9807d24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:76.1861             latitude:39.7153             pred_result:104.58599853515625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_42d6fe17f34d4071348843a4b40af0b1.setContent(html_084ca504f1e310f8784fb018b9807d24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fb0da79f0c28e2208ad90cbbf93fcdb.bindPopup(popup_42d6fe17f34d4071348843a4b40af0b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ee83217854c344c49c907cf37ed33d9 = L.circleMarker(\\n\",\n       \"                [39.5371, 75.9828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b5c7cfc212f1602d96d52972288d69ea = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd740209f88e4a04da17eed8e52a4736 = $(`&lt;div id=&quot;html_cd740209f88e4a04da17eed8e52a4736&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:75.9828             latitude:39.5371             pred_result:87.00596618652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b5c7cfc212f1602d96d52972288d69ea.setContent(html_cd740209f88e4a04da17eed8e52a4736);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ee83217854c344c49c907cf37ed33d9.bindPopup(popup_b5c7cfc212f1602d96d52972288d69ea)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07765cd8efe65ea7f47bc63483460287 = L.circleMarker(\\n\",\n       \"                [39.4365, 75.9435],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8de631b87d804b25c5daeb83674351d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_92b01dc4a7816ebc000f7fe3d73ed71b = $(`&lt;div id=&quot;html_92b01dc4a7816ebc000f7fe3d73ed71b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:75.9435             latitude:39.4365             pred_result:81.7591781616211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8de631b87d804b25c5daeb83674351d4.setContent(html_92b01dc4a7816ebc000f7fe3d73ed71b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07765cd8efe65ea7f47bc63483460287.bindPopup(popup_8de631b87d804b25c5daeb83674351d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_117502c8c3151070a59387cc3c804a6d = L.circleMarker(\\n\",\n       \"                [37.1152, 79.9485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1fcf052585658fe53dec0eaacaa624db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ad31282c307aa37f573c8348ecbf655 = $(`&lt;div id=&quot;html_2ad31282c307aa37f573c8348ecbf655&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:79.9485             latitude:37.1152             pred_result:92.88338470458984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1fcf052585658fe53dec0eaacaa624db.setContent(html_2ad31282c307aa37f573c8348ecbf655);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_117502c8c3151070a59387cc3c804a6d.bindPopup(popup_1fcf052585658fe53dec0eaacaa624db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1f3c55a03abcc593dff3fdce0106c6ca = L.circleMarker(\\n\",\n       \"                [37.1013, 79.9117],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2a3a7f29e9a855bbdf8eb0fb203c8a45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e685b52d0c619281660c7af3732abadb = $(`&lt;div id=&quot;html_e685b52d0c619281660c7af3732abadb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:79.9117             latitude:37.1013             pred_result:93.75628662109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2a3a7f29e9a855bbdf8eb0fb203c8a45.setContent(html_e685b52d0c619281660c7af3732abadb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1f3c55a03abcc593dff3fdce0106c6ca.bindPopup(popup_2a3a7f29e9a855bbdf8eb0fb203c8a45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_211e4ea990a6836144a8dc299c6b4240 = L.circleMarker(\\n\",\n       \"                [43.9404, 81.2815],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b6858c4b138cb2da93d0d44a839bed3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6cb708130d0dbfd007a35820c2d37c3c = $(`&lt;div id=&quot;html_6cb708130d0dbfd007a35820c2d37c3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.2815             latitude:43.9404             pred_result:81.4046630859375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b6858c4b138cb2da93d0d44a839bed3.setContent(html_6cb708130d0dbfd007a35820c2d37c3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_211e4ea990a6836144a8dc299c6b4240.bindPopup(popup_0b6858c4b138cb2da93d0d44a839bed3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6d226317210e9885bf9178cc812955b = L.circleMarker(\\n\",\n       \"                [43.895, 81.2867],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_27a99db0bcacfd7dd1808fdf490cb2ba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7bf082ea61116184000f67dfd83c0379 = $(`&lt;div id=&quot;html_7bf082ea61116184000f67dfd83c0379&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.2867             latitude:43.895             pred_result:75.82110595703125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_27a99db0bcacfd7dd1808fdf490cb2ba.setContent(html_7bf082ea61116184000f67dfd83c0379);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6d226317210e9885bf9178cc812955b.bindPopup(popup_27a99db0bcacfd7dd1808fdf490cb2ba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b010b9d9016b69735e1cd3746d9b1157 = L.circleMarker(\\n\",\n       \"                [43.941, 81.3364],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dbecc3b8ca65e5e0aa0d78fcd4bfc886 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0075136ece6c9325637260a19905485 = $(`&lt;div id=&quot;html_f0075136ece6c9325637260a19905485&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:81.3364             latitude:43.941             pred_result:73.28681182861328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dbecc3b8ca65e5e0aa0d78fcd4bfc886.setContent(html_f0075136ece6c9325637260a19905485);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b010b9d9016b69735e1cd3746d9b1157.bindPopup(popup_dbecc3b8ca65e5e0aa0d78fcd4bfc886)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87b31dc782c1bab430a698b2a567d467 = L.circleMarker(\\n\",\n       \"                [46.7432, 82.9994],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_add44becbe2c16af31e1a6c3cccfb91d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8b06f5b2737c2b173b4b474324a51191 = $(`&lt;div id=&quot;html_8b06f5b2737c2b173b4b474324a51191&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:82.9994             latitude:46.7432             pred_result:24.05746078491211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_add44becbe2c16af31e1a6c3cccfb91d.setContent(html_8b06f5b2737c2b173b4b474324a51191);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87b31dc782c1bab430a698b2a567d467.bindPopup(popup_add44becbe2c16af31e1a6c3cccfb91d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0369bafda8b6f7c8014bbc748408a102 = L.circleMarker(\\n\",\n       \"                [47.9047, 88.1214],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_485e3e4db33533735b46ce26d92c9465 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_285eef1764783b646c60cc960ae791c5 = $(`&lt;div id=&quot;html_285eef1764783b646c60cc960ae791c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.1214             latitude:47.9047             pred_result:13.558004379272461             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_485e3e4db33533735b46ce26d92c9465.setContent(html_285eef1764783b646c60cc960ae791c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0369bafda8b6f7c8014bbc748408a102.bindPopup(popup_485e3e4db33533735b46ce26d92c9465)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fe41a3c866bdc38c7fbc934a1139a49b = L.circleMarker(\\n\",\n       \"                [47.8515, 88.1267],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aca87ce4b432382eb80ae791e9474da4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df1b44725fec2595436fc8a9006aa5e2 = $(`&lt;div id=&quot;html_df1b44725fec2595436fc8a9006aa5e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:88.1267             latitude:47.8515             pred_result:19.99077606201172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aca87ce4b432382eb80ae791e9474da4.setContent(html_df1b44725fec2595436fc8a9006aa5e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fe41a3c866bdc38c7fbc934a1139a49b.bindPopup(popup_aca87ce4b432382eb80ae791e9474da4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47c1593ee8c94e62ce8387041e1de07c = L.circleMarker(\\n\",\n       \"                [44.2967, 86.0497],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_483ceac6045665dbebba0c70f56760f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ad6cd9bde3fcfcc64196c74dd1e1258 = $(`&lt;div id=&quot;html_5ad6cd9bde3fcfcc64196c74dd1e1258&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.0497             latitude:44.2967             pred_result:61.72123718261719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_483ceac6045665dbebba0c70f56760f5.setContent(html_5ad6cd9bde3fcfcc64196c74dd1e1258);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47c1593ee8c94e62ce8387041e1de07c.bindPopup(popup_483ceac6045665dbebba0c70f56760f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3b635d95750eff67e89f56df748b1e6 = L.circleMarker(\\n\",\n       \"                [44.3075, 86.0697],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_285fe63e56c710a5c5c79caf3cb1cabf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cda05177109a4d8bdd60fce3bc042377 = $(`&lt;div id=&quot;html_cda05177109a4d8bdd60fce3bc042377&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:86.0697             latitude:44.3075             pred_result:61.539817810058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_285fe63e56c710a5c5c79caf3cb1cabf.setContent(html_cda05177109a4d8bdd60fce3bc042377);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3b635d95750eff67e89f56df748b1e6.bindPopup(popup_285fe63e56c710a5c5c79caf3cb1cabf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83759e71d484b9d41b32dd0d1cbd1a8d = L.circleMarker(\\n\",\n       \"                [44.1756, 87.5475],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9df58a342541d4723afb146790676838 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08ded9aa54d8a25488970bd96d7e0a11 = $(`&lt;div id=&quot;html_08ded9aa54d8a25488970bd96d7e0a11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.5475             latitude:44.1756             pred_result:80.05248260498047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9df58a342541d4723afb146790676838.setContent(html_08ded9aa54d8a25488970bd96d7e0a11);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83759e71d484b9d41b32dd0d1cbd1a8d.bindPopup(popup_9df58a342541d4723afb146790676838)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5be766b1a1a4f82e6f799e211f4f0dc9 = L.circleMarker(\\n\",\n       \"                [26.567, 101.7227],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ecb82ae0acc75878450ccc668d61bb18 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_178cdfab31d31d372660ccb8967d82e9 = $(`&lt;div id=&quot;html_178cdfab31d31d372660ccb8967d82e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.7227             latitude:26.567             pred_result:29.99333381652832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ecb82ae0acc75878450ccc668d61bb18.setContent(html_178cdfab31d31d372660ccb8967d82e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5be766b1a1a4f82e6f799e211f4f0dc9.bindPopup(popup_ecb82ae0acc75878450ccc668d61bb18)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc07e23e32f259077a0affd4ead30c7a = L.circleMarker(\\n\",\n       \"                [24.5058, 118.0936],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4982b31f88e1228eb3a3be538b40598c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fa1496a32869d2b5fc90da5ceaa785e3 = $(`&lt;div id=&quot;html_fa1496a32869d2b5fc90da5ceaa785e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0936             latitude:24.5058             pred_result:24.258390426635742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4982b31f88e1228eb3a3be538b40598c.setContent(html_fa1496a32869d2b5fc90da5ceaa785e3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc07e23e32f259077a0affd4ead30c7a.bindPopup(popup_4982b31f88e1228eb3a3be538b40598c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5c2ae9cecbf14db90c9a24e83b3d6877 = L.circleMarker(\\n\",\n       \"                [36.1912, 113.1569],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17ac61a7a8c6bb26a46e1b1bb63fa35d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_711242aa19abc7ead4b04c9e82706ad7 = $(`&lt;div id=&quot;html_711242aa19abc7ead4b04c9e82706ad7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1569             latitude:36.1912             pred_result:66.65151977539062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17ac61a7a8c6bb26a46e1b1bb63fa35d.setContent(html_711242aa19abc7ead4b04c9e82706ad7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5c2ae9cecbf14db90c9a24e83b3d6877.bindPopup(popup_17ac61a7a8c6bb26a46e1b1bb63fa35d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8072c9bb0888dde1285eedb3e5a28770 = L.circleMarker(\\n\",\n       \"                [23.1323, 113.3208],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f27d367f846ace2331644b57a792754 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_573b8ef9513125cce9760fc444880754 = $(`&lt;div id=&quot;html_573b8ef9513125cce9760fc444880754&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.3208             latitude:23.1323             pred_result:34.29150390625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f27d367f846ace2331644b57a792754.setContent(html_573b8ef9513125cce9760fc444880754);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8072c9bb0888dde1285eedb3e5a28770.bindPopup(popup_9f27d367f846ace2331644b57a792754)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a2babc0103ca026bd6f67d3e1f3e4a68 = L.circleMarker(\\n\",\n       \"                [39.2474, 117.7918],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1cfb8bd59ef895850391567835719187 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82a95c409c7b5d075c3b4b0143b9ac16 = $(`&lt;div id=&quot;html_82a95c409c7b5d075c3b4b0143b9ac16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7918             latitude:39.2474             pred_result:43.10703659057617             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1cfb8bd59ef895850391567835719187.setContent(html_82a95c409c7b5d075c3b4b0143b9ac16);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a2babc0103ca026bd6f67d3e1f3e4a68.bindPopup(popup_1cfb8bd59ef895850391567835719187)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b0a9d42f80cdbaf660def9a547aa3a2f = L.circleMarker(\\n\",\n       \"                [38.9846, 117.3747],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a971d7acbfed24a17ff40864b260905a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c2e2bc4562cbfab8a42a0af78f7ea3e6 = $(`&lt;div id=&quot;html_c2e2bc4562cbfab8a42a0af78f7ea3e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3747             latitude:38.9846             pred_result:42.7195930480957             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a971d7acbfed24a17ff40864b260905a.setContent(html_c2e2bc4562cbfab8a42a0af78f7ea3e6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b0a9d42f80cdbaf660def9a547aa3a2f.bindPopup(popup_a971d7acbfed24a17ff40864b260905a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2be7bafad6d918155d7d9ef331d4360d = L.circleMarker(\\n\",\n       \"                [39.0845, 117.1589],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_703f3e8ac67474d846c887f37a16e32b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fbce5f34737afde1afbe7c0f04fd1735 = $(`&lt;div id=&quot;html_fbce5f34737afde1afbe7c0f04fd1735&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1589             latitude:39.0845             pred_result:44.729583740234375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_703f3e8ac67474d846c887f37a16e32b.setContent(html_fbce5f34737afde1afbe7c0f04fd1735);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2be7bafad6d918155d7d9ef331d4360d.bindPopup(popup_703f3e8ac67474d846c887f37a16e32b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5a787c45f502470145910f7a74b9c151 = L.circleMarker(\\n\",\n       \"                [38.03777778, 114.54805559999998],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a24327c96947d7d4068efae1f6ad9c1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2e72a90a1903abc84ed0a6e8c469a41 = $(`&lt;div id=&quot;html_e2e72a90a1903abc84ed0a6e8c469a41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.54805559999998             latitude:38.03777778             pred_result:71.81170654296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a24327c96947d7d4068efae1f6ad9c1.setContent(html_e2e72a90a1903abc84ed0a6e8c469a41);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5a787c45f502470145910f7a74b9c151.bindPopup(popup_8a24327c96947d7d4068efae1f6ad9c1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c533e5810560b924b1de5389b0cafc9 = L.circleMarker(\\n\",\n       \"                [37.68277778, 112.7194444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b64ff5bb186d7a50957697a00f12e87 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_480a345954051108509c28c07859c469 = $(`&lt;div id=&quot;html_480a345954051108509c28c07859c469&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.7194444             latitude:37.68277778             pred_result:72.41339111328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b64ff5bb186d7a50957697a00f12e87.setContent(html_480a345954051108509c28c07859c469);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c533e5810560b924b1de5389b0cafc9.bindPopup(popup_5b64ff5bb186d7a50957697a00f12e87)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c88450c9f46b8135c294e1e97a304795 = L.circleMarker(\\n\",\n       \"                [35.04388889, 111.0522222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35cf807ea6a3c73b97ad4b8fe774f3a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_61c0edc40ce535cd2ece6471df851513 = $(`&lt;div id=&quot;html_61c0edc40ce535cd2ece6471df851513&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.0522222             latitude:35.04388889             pred_result:59.619598388671875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35cf807ea6a3c73b97ad4b8fe774f3a7.setContent(html_61c0edc40ce535cd2ece6471df851513);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c88450c9f46b8135c294e1e97a304795.bindPopup(popup_35cf807ea6a3c73b97ad4b8fe774f3a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b6d164788df60c54e75fe5bb7ac46936 = L.circleMarker(\\n\",\n       \"                [43.95305556, 126.4738889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4de511ff5e2f4d9e75d51d4290cfac4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31ef0305a18e5c87f01e2f69eb09701e = $(`&lt;div id=&quot;html_31ef0305a18e5c87f01e2f69eb09701e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.4738889             latitude:43.95305556             pred_result:15.726099014282227             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4de511ff5e2f4d9e75d51d4290cfac4a.setContent(html_31ef0305a18e5c87f01e2f69eb09701e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b6d164788df60c54e75fe5bb7ac46936.bindPopup(popup_4de511ff5e2f4d9e75d51d4290cfac4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_917e9353ab3ccf90d70414959a949cae = L.circleMarker(\\n\",\n       \"                [32.41361, 119.458],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c23006cb95d2511440f09517e59eb7b7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_16b760425f9bdf20796b78db974f8e84 = $(`&lt;div id=&quot;html_16b760425f9bdf20796b78db974f8e84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.458             latitude:32.41361             pred_result:34.05226135253906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c23006cb95d2511440f09517e59eb7b7.setContent(html_16b760425f9bdf20796b78db974f8e84);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_917e9353ab3ccf90d70414959a949cae.bindPopup(popup_c23006cb95d2511440f09517e59eb7b7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_802d9b72e67fc67811c28f2dbaf4e3d5 = L.circleMarker(\\n\",\n       \"                [32.18888889, 119.43694440000002],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_449cd730d2f1bcd0c0d757835ef17df5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b23712457f03f9a1722ee8d20363db17 = $(`&lt;div id=&quot;html_b23712457f03f9a1722ee8d20363db17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.43694440000002             latitude:32.18888889             pred_result:34.60310363769531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_449cd730d2f1bcd0c0d757835ef17df5.setContent(html_b23712457f03f9a1722ee8d20363db17);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_802d9b72e67fc67811c28f2dbaf4e3d5.bindPopup(popup_449cd730d2f1bcd0c0d757835ef17df5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8f5892ee9e8db23ee5b3496caf516c4d = L.circleMarker(\\n\",\n       \"                [29.90166667, 121.6147222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_59deec8812f99e7c308a570a3db63fbe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d2e5107b56e72bcf7481072f8db1ad1 = $(`&lt;div id=&quot;html_8d2e5107b56e72bcf7481072f8db1ad1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.6147222             latitude:29.90166667             pred_result:28.334915161132812             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_59deec8812f99e7c308a570a3db63fbe.setContent(html_8d2e5107b56e72bcf7481072f8db1ad1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8f5892ee9e8db23ee5b3496caf516c4d.bindPopup(popup_59deec8812f99e7c308a570a3db63fbe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc4b70a001bdb5e279ce7a35ef32a06b = L.circleMarker(\\n\",\n       \"                [30.7525, 120.7844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e758b83093c234603dfa23b749bdb9ae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_975f969ee5e945d1689735cda364f59b = $(`&lt;div id=&quot;html_975f969ee5e945d1689735cda364f59b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.7844444             latitude:30.7525             pred_result:35.47801971435547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e758b83093c234603dfa23b749bdb9ae.setContent(html_975f969ee5e945d1689735cda364f59b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc4b70a001bdb5e279ce7a35ef32a06b.bindPopup(popup_e758b83093c234603dfa23b749bdb9ae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bc897f31c5ad56ed333603c8d9cfb59c = L.circleMarker(\\n\",\n       \"                [30.89556, 120.0875],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7432629302e9645fadbd309cdc3b3aeb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4ce06e3330783cc0a66796cacf9aeeb = $(`&lt;div id=&quot;html_d4ce06e3330783cc0a66796cacf9aeeb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.0875             latitude:30.89556             pred_result:41.11601257324219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7432629302e9645fadbd309cdc3b3aeb.setContent(html_d4ce06e3330783cc0a66796cacf9aeeb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bc897f31c5ad56ed333603c8d9cfb59c.bindPopup(popup_7432629302e9645fadbd309cdc3b3aeb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad2659d92497ad509b8bdcbaa79214b7 = L.circleMarker(\\n\",\n       \"                [32.64600333, 117.04116670000002],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a8ebdb3c33e530158b8517a8f3bc9ef7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c252cf7bfa91d49ac8da51961592361d = $(`&lt;div id=&quot;html_c252cf7bfa91d49ac8da51961592361d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.04116670000002             latitude:32.64600333             pred_result:41.73027420043945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a8ebdb3c33e530158b8517a8f3bc9ef7.setContent(html_c252cf7bfa91d49ac8da51961592361d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad2659d92497ad509b8bdcbaa79214b7.bindPopup(popup_a8ebdb3c33e530158b8517a8f3bc9ef7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0afa81d516c3cb417268b87d2dadfb6 = L.circleMarker(\\n\",\n       \"                [32.88922222, 115.7838889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9d1dc4a783b50aab411726707244e95f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ac8cafb741f33ced3de20e43d090863 = $(`&lt;div id=&quot;html_2ac8cafb741f33ced3de20e43d090863&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.7838889             latitude:32.88922222             pred_result:46.5411262512207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9d1dc4a783b50aab411726707244e95f.setContent(html_2ac8cafb741f33ced3de20e43d090863);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0afa81d516c3cb417268b87d2dadfb6.bindPopup(popup_9d1dc4a783b50aab411726707244e95f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f3d294789c5b1c41b9a09192b8b244ed = L.circleMarker(\\n\",\n       \"                [36.7339, 119.0841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f594ec8bc0112eb283aec0801cbe62d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cd6c703c3ede0ed5a608314767a6f80 = $(`&lt;div id=&quot;html_8cd6c703c3ede0ed5a608314767a6f80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0841             latitude:36.7339             pred_result:34.53546905517578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f594ec8bc0112eb283aec0801cbe62d1.setContent(html_8cd6c703c3ede0ed5a608314767a6f80);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f3d294789c5b1c41b9a09192b8b244ed.bindPopup(popup_f594ec8bc0112eb283aec0801cbe62d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a06a14cc4bc467d00d1382e60bd675fe = L.circleMarker(\\n\",\n       \"                [36.6525, 119.1638],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_60c05c7864b6aebac2e27148785d1501 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d1bcf36939957b18ac5faa6f215c943 = $(`&lt;div id=&quot;html_1d1bcf36939957b18ac5faa6f215c943&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1638             latitude:36.6525             pred_result:32.92888259887695             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_60c05c7864b6aebac2e27148785d1501.setContent(html_1d1bcf36939957b18ac5faa6f215c943);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a06a14cc4bc467d00d1382e60bd675fe.bindPopup(popup_60c05c7864b6aebac2e27148785d1501)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aa2cf60642a3fbb61094e5194fe9d50c = L.circleMarker(\\n\",\n       \"                [36.4343, 116.0072],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70640bd0e9f5447269fdd0aee80e4774 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d712c2bbc81b40b4fd5dc175349a43e1 = $(`&lt;div id=&quot;html_d712c2bbc81b40b4fd5dc175349a43e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.0072             latitude:36.4343             pred_result:60.32304763793945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70640bd0e9f5447269fdd0aee80e4774.setContent(html_d712c2bbc81b40b4fd5dc175349a43e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aa2cf60642a3fbb61094e5194fe9d50c.bindPopup(popup_70640bd0e9f5447269fdd0aee80e4774)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03b5c69266fe633e22ef48f6aa1cd01c = L.circleMarker(\\n\",\n       \"                [30.65638889, 104.0238889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ae35252061505214c874c633dc542f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e0add6d6ddb0027dbd9e8017f14afafe = $(`&lt;div id=&quot;html_e0add6d6ddb0027dbd9e8017f14afafe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.0238889             latitude:30.65638889             pred_result:49.696231842041016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ae35252061505214c874c633dc542f6.setContent(html_e0add6d6ddb0027dbd9e8017f14afafe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03b5c69266fe633e22ef48f6aa1cd01c.bindPopup(popup_8ae35252061505214c874c633dc542f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be79cd42cdc6a43f7a0f6c5ba5e8ba1a = L.circleMarker(\\n\",\n       \"                [26.53111111, 107.89083329999998],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_acf10e2bd24854009989a4ed8dc8a9cd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d44165c3c2a7dfcc692419a96c41c5e = $(`&lt;div id=&quot;html_4d44165c3c2a7dfcc692419a96c41c5e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.89083329999998             latitude:26.53111111             pred_result:38.66423797607422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_acf10e2bd24854009989a4ed8dc8a9cd.setContent(html_4d44165c3c2a7dfcc692419a96c41c5e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be79cd42cdc6a43f7a0f6c5ba5e8ba1a.bindPopup(popup_acf10e2bd24854009989a4ed8dc8a9cd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e3f02cc4b78b0adfb04fe101b0b02592 = L.circleMarker(\\n\",\n       \"                [24.3702, 102.5389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aa878498e819877db14b15bf632e01d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8fa466b45c256652bf0a0a7c95759d98 = $(`&lt;div id=&quot;html_8fa466b45c256652bf0a0a7c95759d98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5389             latitude:24.3702             pred_result:25.609094619750977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aa878498e819877db14b15bf632e01d3.setContent(html_8fa466b45c256652bf0a0a7c95759d98);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e3f02cc4b78b0adfb04fe101b0b02592.bindPopup(popup_aa878498e819877db14b15bf632e01d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56d8e6893dce2f9212d74ccf041a0c84 = L.circleMarker(\\n\",\n       \"                [24.339, 102.5381],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47dc9cfceca5369a32f2458711527d4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5ced91518df17a9c6b9d2ad615ae5999 = $(`&lt;div id=&quot;html_5ced91518df17a9c6b9d2ad615ae5999&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5381             latitude:24.339             pred_result:25.26850128173828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47dc9cfceca5369a32f2458711527d4f.setContent(html_5ced91518df17a9c6b9d2ad615ae5999);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56d8e6893dce2f9212d74ccf041a0c84.bindPopup(popup_47dc9cfceca5369a32f2458711527d4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5802a576a0d3151a1fb616fcf309243 = L.circleMarker(\\n\",\n       \"                [39.79777778, 98.26722222],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_75f545d2ca3c74b029cd04dd46bc312d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fae44c0ec51d6da57206d82f4168cc52 = $(`&lt;div id=&quot;html_fae44c0ec51d6da57206d82f4168cc52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.26722222             latitude:39.79777778             pred_result:28.39342498779297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_75f545d2ca3c74b029cd04dd46bc312d.setContent(html_fae44c0ec51d6da57206d82f4168cc52);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5802a576a0d3151a1fb616fcf309243.bindPopup(popup_75f545d2ca3c74b029cd04dd46bc312d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43627f383cccd387a9af1c2604c2f0d2 = L.circleMarker(\\n\",\n       \"                [33.38256667, 104.9338889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfdb3dc9d32b90dc3a116fe11817f0b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0549e27038c7e8f7fa63aac7fb275989 = $(`&lt;div id=&quot;html_0549e27038c7e8f7fa63aac7fb275989&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.9338889             latitude:33.38256667             pred_result:33.23655319213867             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfdb3dc9d32b90dc3a116fe11817f0b0.setContent(html_0549e27038c7e8f7fa63aac7fb275989);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43627f383cccd387a9af1c2604c2f0d2.bindPopup(popup_dfdb3dc9d32b90dc3a116fe11817f0b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_515f00c73f50a927f9214e8e715293f5 = L.circleMarker(\\n\",\n       \"                [41.7347, 123.2444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_895950ece461d31ef069e78dedd56f8f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_176f8d085125508404650ef952336eb6 = $(`&lt;div id=&quot;html_176f8d085125508404650ef952336eb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.2444             latitude:41.7347             pred_result:26.23909568786621             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_895950ece461d31ef069e78dedd56f8f.setContent(html_176f8d085125508404650ef952336eb6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_515f00c73f50a927f9214e8e715293f5.bindPopup(popup_895950ece461d31ef069e78dedd56f8f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_83a5fd0a0b321bd915f3e6b589de59e0 = L.circleMarker(\\n\",\n       \"                [41.9086, 123.5953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_025a6c7a9f050c205f5789179322517f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9a5754bdf21dc649f7bcc8423bc8aeb = $(`&lt;div id=&quot;html_b9a5754bdf21dc649f7bcc8423bc8aeb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.5953             latitude:41.9086             pred_result:21.110126495361328             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_025a6c7a9f050c205f5789179322517f.setContent(html_b9a5754bdf21dc649f7bcc8423bc8aeb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_83a5fd0a0b321bd915f3e6b589de59e0.bindPopup(popup_025a6c7a9f050c205f5789179322517f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_108798284fa636eaa3608161e526c005 = L.circleMarker(\\n\",\n       \"                [30.4865, 106.6351],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c082833624f2fd3a6916ed00fa086c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31b861167c529aef1262ddbabb771242 = $(`&lt;div id=&quot;html_31b861167c529aef1262ddbabb771242&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6351             latitude:30.4865             pred_result:38.48564529418945             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c082833624f2fd3a6916ed00fa086c0.setContent(html_31b861167c529aef1262ddbabb771242);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_108798284fa636eaa3608161e526c005.bindPopup(popup_8c082833624f2fd3a6916ed00fa086c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1884b80fe5358849d47714aef2ade2a6 = L.circleMarker(\\n\",\n       \"                [30.8596, 120.1844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d46a78ce0fefd5fa7cbb7189ae82f753 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9187b759312508cda211aa7d7e241153 = $(`&lt;div id=&quot;html_9187b759312508cda211aa7d7e241153&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1844             latitude:30.8596             pred_result:42.184608459472656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d46a78ce0fefd5fa7cbb7189ae82f753.setContent(html_9187b759312508cda211aa7d7e241153);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1884b80fe5358849d47714aef2ade2a6.bindPopup(popup_d46a78ce0fefd5fa7cbb7189ae82f753)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9be2032e9183047e40e653dbd7b29ef5 = L.circleMarker(\\n\",\n       \"                [31.87888889, 106.7513889],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_522181843c7197c9f8ed0d75a7adf8ce = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf31f54cac9c35b9ba5b423ad1c8f90c = $(`&lt;div id=&quot;html_cf31f54cac9c35b9ba5b423ad1c8f90c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7513889             latitude:31.87888889             pred_result:35.16387176513672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_522181843c7197c9f8ed0d75a7adf8ce.setContent(html_cf31f54cac9c35b9ba5b423ad1c8f90c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9be2032e9183047e40e653dbd7b29ef5.bindPopup(popup_522181843c7197c9f8ed0d75a7adf8ce)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf3beb754cf61ae97d395f732ef9c15d = L.circleMarker(\\n\",\n       \"                [31.85805556, 106.76194440000002],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4ed7743fae49d31a7409cd35d5249c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_968b51e5628e05b6139bcb7d589268a4 = $(`&lt;div id=&quot;html_968b51e5628e05b6139bcb7d589268a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.76194440000002             latitude:31.85805556             pred_result:35.3656005859375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4ed7743fae49d31a7409cd35d5249c6.setContent(html_968b51e5628e05b6139bcb7d589268a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf3beb754cf61ae97d395f732ef9c15d.bindPopup(popup_b4ed7743fae49d31a7409cd35d5249c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b87c804b43d7443461575a758612577b = L.circleMarker(\\n\",\n       \"                [30.66, 117.49],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_608283ba836c41c3c456ba7cd6167068 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d3d31f0da65ec4efab1bb65cfacc303 = $(`&lt;div id=&quot;html_5d3d31f0da65ec4efab1bb65cfacc303&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.49             latitude:30.66             pred_result:45.78197479248047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_608283ba836c41c3c456ba7cd6167068.setContent(html_5d3d31f0da65ec4efab1bb65cfacc303);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b87c804b43d7443461575a758612577b.bindPopup(popup_608283ba836c41c3c456ba7cd6167068)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5be5b81ea658a10ffc306dc7ba1fea48 = L.circleMarker(\\n\",\n       \"                [39.5453, 116.7022],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_705af4dc07cb8d3d04a928960e57b063 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40a7baa20cf66df03fa99d0ce349bf5f = $(`&lt;div id=&quot;html_40a7baa20cf66df03fa99d0ce349bf5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.7022             latitude:39.5453             pred_result:49.161678314208984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_705af4dc07cb8d3d04a928960e57b063.setContent(html_40a7baa20cf66df03fa99d0ce349bf5f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5be5b81ea658a10ffc306dc7ba1fea48.bindPopup(popup_705af4dc07cb8d3d04a928960e57b063)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_505d71f0d5cb51efc40af3a25e5f3d14 = L.circleMarker(\\n\",\n       \"                [24.506, 117.7116],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03bcef098fd357dc7937611c60399182 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b546468d40d634447f16073d8a44513 = $(`&lt;div id=&quot;html_6b546468d40d634447f16073d8a44513&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7116             latitude:24.506             pred_result:25.701692581176758             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03bcef098fd357dc7937611c60399182.setContent(html_6b546468d40d634447f16073d8a44513);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_505d71f0d5cb51efc40af3a25e5f3d14.bindPopup(popup_03bcef098fd357dc7937611c60399182)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56c25f787476d72c5117136add258893 = L.circleMarker(\\n\",\n       \"                [30.0033, 120.7789],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_931f72c81b023f62f6a6f2de3e63a711 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4bd33bea1f4da0ff90baa321d20592ae = $(`&lt;div id=&quot;html_4bd33bea1f4da0ff90baa321d20592ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.7789             latitude:30.0033             pred_result:32.525657653808594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_931f72c81b023f62f6a6f2de3e63a711.setContent(html_4bd33bea1f4da0ff90baa321d20592ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56c25f787476d72c5117136add258893.bindPopup(popup_931f72c81b023f62f6a6f2de3e63a711)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61f1781397347156c9d98794b6d03558 = L.circleMarker(\\n\",\n       \"                [39.1067, 117.1941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f70bc5bd993256f1f9c2dc7e82c6dab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5139e5fb66567c4b8974dd54196278fa = $(`&lt;div id=&quot;html_5139e5fb66567c4b8974dd54196278fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1941             latitude:39.1067             pred_result:45.147605895996094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f70bc5bd993256f1f9c2dc7e82c6dab.setContent(html_5139e5fb66567c4b8974dd54196278fa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61f1781397347156c9d98794b6d03558.bindPopup(popup_1f70bc5bd993256f1f9c2dc7e82c6dab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fea6ab107d795a70499c3241b246f572 = L.circleMarker(\\n\",\n       \"                [40.1114, 113.2803],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_419786e990ecccd444ff0fa0a916454e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70348f1be76409f9a1c2e297b27084f2 = $(`&lt;div id=&quot;html_70348f1be76409f9a1c2e297b27084f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.2803             latitude:40.1114             pred_result:39.951107025146484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_419786e990ecccd444ff0fa0a916454e.setContent(html_70348f1be76409f9a1c2e297b27084f2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fea6ab107d795a70499c3241b246f572.bindPopup(popup_419786e990ecccd444ff0fa0a916454e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d213d99186c136b4416fe655ce799573 = L.circleMarker(\\n\",\n       \"                [38.44139000000001, 106.2275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_849fb96e22796480760f34322cc33bc1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c6466989248af2649facc2eb2dc04988 = $(`&lt;div id=&quot;html_c6466989248af2649facc2eb2dc04988&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2275             latitude:38.44139000000001             pred_result:44.39339828491211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_849fb96e22796480760f34322cc33bc1.setContent(html_c6466989248af2649facc2eb2dc04988);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d213d99186c136b4416fe655ce799573.bindPopup(popup_849fb96e22796480760f34322cc33bc1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_32e1387e8110cc85400c41aef26b85fe = L.circleMarker(\\n\",\n       \"                [38.4841, 106.2739],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_920ceab2755c0cde04cfff81a020a5db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04c8d24b9fe2f46a9d6438cd76137783 = $(`&lt;div id=&quot;html_04c8d24b9fe2f46a9d6438cd76137783&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2739             latitude:38.4841             pred_result:44.442195892333984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_920ceab2755c0cde04cfff81a020a5db.setContent(html_04c8d24b9fe2f46a9d6438cd76137783);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_32e1387e8110cc85400c41aef26b85fe.bindPopup(popup_920ceab2755c0cde04cfff81a020a5db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_61c5ae0278e0cfe8d86f3365cee74e7d = L.circleMarker(\\n\",\n       \"                [38.49494, 106.1024],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_18ce2f1c6597914e59f4ca0896bed0e7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ea87cd7cbdd05ad48c4bae79c92f20d = $(`&lt;div id=&quot;html_3ea87cd7cbdd05ad48c4bae79c92f20d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1024             latitude:38.49494             pred_result:41.89701461791992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_18ce2f1c6597914e59f4ca0896bed0e7.setContent(html_3ea87cd7cbdd05ad48c4bae79c92f20d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_61c5ae0278e0cfe8d86f3365cee74e7d.bindPopup(popup_18ce2f1c6597914e59f4ca0896bed0e7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1fac5f146679bb8a366cc4f02b30d638 = L.circleMarker(\\n\",\n       \"                [30.4519, 114.8858],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_12bb811e342597ef5be546f67d6752a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c933c78f175d4aa2a26dcb7b6e9374b = $(`&lt;div id=&quot;html_5c933c78f175d4aa2a26dcb7b6e9374b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8858             latitude:30.4519             pred_result:53.978248596191406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_12bb811e342597ef5be546f67d6752a1.setContent(html_5c933c78f175d4aa2a26dcb7b6e9374b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1fac5f146679bb8a366cc4f02b30d638.bindPopup(popup_12bb811e342597ef5be546f67d6752a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a0ddae6789d68b5c9f43cbd1870942af = L.circleMarker(\\n\",\n       \"                [29.1128, 119.6533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f922e2f5aa26ec53606c429bb1ff7f61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6c4ff6125ee072dd717e8a6cccfafb54 = $(`&lt;div id=&quot;html_6c4ff6125ee072dd717e8a6cccfafb54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.6533             latitude:29.1128             pred_result:29.260169982910156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f922e2f5aa26ec53606c429bb1ff7f61.setContent(html_6c4ff6125ee072dd717e8a6cccfafb54);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a0ddae6789d68b5c9f43cbd1870942af.bindPopup(popup_f922e2f5aa26ec53606c429bb1ff7f61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26b83ea340540cf83745be5499ea977d = L.circleMarker(\\n\",\n       \"                [33.965, 118.283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1546219fe3be68f6983c05c198a52b64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_46953f9e878cd3481234e92339f3e98c = $(`&lt;div id=&quot;html_46953f9e878cd3481234e92339f3e98c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.283             latitude:33.965             pred_result:41.23442840576172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1546219fe3be68f6983c05c198a52b64.setContent(html_46953f9e878cd3481234e92339f3e98c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26b83ea340540cf83745be5499ea977d.bindPopup(popup_1546219fe3be68f6983c05c198a52b64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_da6d34f5d7d34cfec812ec5651318ade = L.circleMarker(\\n\",\n       \"                [32.3292, 119.8767],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1ca029b9f282c8cff3da7eac28c13e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_44aca6bfeb540e4b077f979b04e4861b = $(`&lt;div id=&quot;html_44aca6bfeb540e4b077f979b04e4861b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.8767             latitude:32.3292             pred_result:36.69358825683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1ca029b9f282c8cff3da7eac28c13e2.setContent(html_44aca6bfeb540e4b077f979b04e4861b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_da6d34f5d7d34cfec812ec5651318ade.bindPopup(popup_f1ca029b9f282c8cff3da7eac28c13e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_04e6280cbd1c3313730bc1d96f05b730 = L.circleMarker(\\n\",\n       \"                [34.6972, 119.3581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ccda867f428a4843afcedfbd57d13c53 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a5cd32b7d1a455bd743cc27c74046bde = $(`&lt;div id=&quot;html_a5cd32b7d1a455bd743cc27c74046bde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.3581             latitude:34.6972             pred_result:30.225231170654297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ccda867f428a4843afcedfbd57d13c53.setContent(html_a5cd32b7d1a455bd743cc27c74046bde);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_04e6280cbd1c3313730bc1d96f05b730.bindPopup(popup_ccda867f428a4843afcedfbd57d13c53)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d44b28a90a4e9667b17c08c34fa7c0a9 = L.circleMarker(\\n\",\n       \"                [31.8108, 119.9736],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_16965e103e635123bb3aee5b31586656 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0ac8f03838dd26bc9d071d91f5f1d91 = $(`&lt;div id=&quot;html_a0ac8f03838dd26bc9d071d91f5f1d91&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.9736             latitude:31.8108             pred_result:36.77715301513672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_16965e103e635123bb3aee5b31586656.setContent(html_a0ac8f03838dd26bc9d071d91f5f1d91);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d44b28a90a4e9667b17c08c34fa7c0a9.bindPopup(popup_16965e103e635123bb3aee5b31586656)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d8ac7904dfe2ae0e86b3c7772de5634 = L.circleMarker(\\n\",\n       \"                [31.7694, 120.0469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad1a7d1ceeb7aa989be355cde8b6b498 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f40ce979cd6d7e97b1b4150e259d64d = $(`&lt;div id=&quot;html_4f40ce979cd6d7e97b1b4150e259d64d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.0469             latitude:31.7694             pred_result:34.97682571411133             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad1a7d1ceeb7aa989be355cde8b6b498.setContent(html_4f40ce979cd6d7e97b1b4150e259d64d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d8ac7904dfe2ae0e86b3c7772de5634.bindPopup(popup_ad1a7d1ceeb7aa989be355cde8b6b498)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_95c801ec3605cc87472f1dfc96582c24 = L.circleMarker(\\n\",\n       \"                [33.3681, 120.1631],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_918774c3a253c7a5a81235c5d2cddfa9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc7a9ba2a2ebdfb96d931cd973aef5c2 = $(`&lt;div id=&quot;html_cc7a9ba2a2ebdfb96d931cd973aef5c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1631             latitude:33.3681             pred_result:28.47752571105957             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_918774c3a253c7a5a81235c5d2cddfa9.setContent(html_cc7a9ba2a2ebdfb96d931cd973aef5c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_95c801ec3605cc87472f1dfc96582c24.bindPopup(popup_918774c3a253c7a5a81235c5d2cddfa9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72b5c841f8ad3cd25531783df0fa6ec2 = L.circleMarker(\\n\",\n       \"                [34.29, 117.1814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a947b403ea0a5e1cc27299c3caaf6f94 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3651f9bd706715521224faf395401c5 = $(`&lt;div id=&quot;html_a3651f9bd706715521224faf395401c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1814             latitude:34.29             pred_result:48.156124114990234             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a947b403ea0a5e1cc27299c3caaf6f94.setContent(html_a3651f9bd706715521224faf395401c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72b5c841f8ad3cd25531783df0fa6ec2.bindPopup(popup_a947b403ea0a5e1cc27299c3caaf6f94)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c242bf1d030da1368fa54d4bd4c4033 = L.circleMarker(\\n\",\n       \"                [34.1781, 117.1694],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb226f26676693f7d85b6a6aa6046c49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c020dc097f7ac51912a1b741157016ae = $(`&lt;div id=&quot;html_c020dc097f7ac51912a1b741157016ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1694             latitude:34.1781             pred_result:46.63990783691406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb226f26676693f7d85b6a6aa6046c49.setContent(html_c020dc097f7ac51912a1b741157016ae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c242bf1d030da1368fa54d4bd4c4033.bindPopup(popup_fb226f26676693f7d85b6a6aa6046c49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a179a4a4c386a477fec82001f788f887 = L.circleMarker(\\n\",\n       \"                [34.5911, 119.1478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d425e3d0a1cbf1166c4445170a530d5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a2f84c39eadd94e21014142a69f652d2 = $(`&lt;div id=&quot;html_a2f84c39eadd94e21014142a69f652d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.1478             latitude:34.5911             pred_result:32.65332794189453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d425e3d0a1cbf1166c4445170a530d5a.setContent(html_a2f84c39eadd94e21014142a69f652d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a179a4a4c386a477fec82001f788f887.bindPopup(popup_d425e3d0a1cbf1166c4445170a530d5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbca093da97f071939e279682d5168d9 = L.circleMarker(\\n\",\n       \"                [31.7897, 119.8914],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_549ab44ca36efe56ebdcdc59578a8717 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cac63d4590b7f71cb6d02bf02a6e911d = $(`&lt;div id=&quot;html_cac63d4590b7f71cb6d02bf02a6e911d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.8914             latitude:31.7897             pred_result:37.188331604003906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_549ab44ca36efe56ebdcdc59578a8717.setContent(html_cac63d4590b7f71cb6d02bf02a6e911d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbca093da97f071939e279682d5168d9.bindPopup(popup_549ab44ca36efe56ebdcdc59578a8717)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8de613b918e6e7aa4c3dbdb342e1e2f1 = L.circleMarker(\\n\",\n       \"                [31.033890000000003, 112.1908],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c07c19cda50b549488f29f32b5033812 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5f43b07fb5cb36c88e24e0e2a5c737cc = $(`&lt;div id=&quot;html_5f43b07fb5cb36c88e24e0e2a5c737cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1908             latitude:31.033890000000003             pred_result:51.69648361206055             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c07c19cda50b549488f29f32b5033812.setContent(html_5f43b07fb5cb36c88e24e0e2a5c737cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8de613b918e6e7aa4c3dbdb342e1e2f1.bindPopup(popup_c07c19cda50b549488f29f32b5033812)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_80af13792a796129ad6286f771cd7247 = L.circleMarker(\\n\",\n       \"                [29.53675, 106.4959],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a93bfffdf1a05d695da3a7b46cc5a471 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_82fa1c2dc0200f7900a500cc35b8abae = $(`&lt;div id=&quot;html_82fa1c2dc0200f7900a500cc35b8abae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.4959             latitude:29.53675             pred_result:38.7453498840332             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a93bfffdf1a05d695da3a7b46cc5a471.setContent(html_82fa1c2dc0200f7900a500cc35b8abae);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_80af13792a796129ad6286f771cd7247.bindPopup(popup_a93bfffdf1a05d695da3a7b46cc5a471)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93e3f3d56d01bf31bf7fda77561c0de0 = L.circleMarker(\\n\",\n       \"                [29.57278, 106.4042],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e1c660adb0f2d5fa6ded0421e754598 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a9bc47ebc7cd55e258fe967b4729051 = $(`&lt;div id=&quot;html_7a9bc47ebc7cd55e258fe967b4729051&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.4042             latitude:29.57278             pred_result:38.2882194519043             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e1c660adb0f2d5fa6ded0421e754598.setContent(html_7a9bc47ebc7cd55e258fe967b4729051);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93e3f3d56d01bf31bf7fda77561c0de0.bindPopup(popup_7e1c660adb0f2d5fa6ded0421e754598)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5cce0260228f55a066b764b8037ef5f8 = L.circleMarker(\\n\",\n       \"                [29.41569, 106.5506],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_076b4e62486965f915b92bbab28933af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f04dcd980128f5cbb4cb8780d4ffadc = $(`&lt;div id=&quot;html_7f04dcd980128f5cbb4cb8780d4ffadc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.5506             latitude:29.41569             pred_result:39.05314254760742             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_076b4e62486965f915b92bbab28933af.setContent(html_7f04dcd980128f5cbb4cb8780d4ffadc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5cce0260228f55a066b764b8037ef5f8.bindPopup(popup_076b4e62486965f915b92bbab28933af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_442b491153c078717ac72c9d7091ee97 = L.circleMarker(\\n\",\n       \"                [36.10139, 111.505],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f2d3168e51e6fd848472603a59afa2b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d453c7f1a410846592f261ba46089ce5 = $(`&lt;div id=&quot;html_d453c7f1a410846592f261ba46089ce5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.505             latitude:36.10139             pred_result:70.69054412841797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f2d3168e51e6fd848472603a59afa2b.setContent(html_d453c7f1a410846592f261ba46089ce5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_442b491153c078717ac72c9d7091ee97.bindPopup(popup_5f2d3168e51e6fd848472603a59afa2b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9fe7dce9ecb54440445cb0eb14ff41cd = L.circleMarker(\\n\",\n       \"                [39.16969, 117.2099],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_330a2c6b3841bfd83765235940334217 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0fc7b750ac75bc011d8a5c30e5bcd946 = $(`&lt;div id=&quot;html_0fc7b750ac75bc011d8a5c30e5bcd946&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.2099             latitude:39.16969             pred_result:44.86126708984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_330a2c6b3841bfd83765235940334217.setContent(html_0fc7b750ac75bc011d8a5c30e5bcd946);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9fe7dce9ecb54440445cb0eb14ff41cd.bindPopup(popup_330a2c6b3841bfd83765235940334217)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4b646d33a6ccb1cf002401a103120343 = L.circleMarker(\\n\",\n       \"                [35.76806, 115.0061],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ac595dacb981e54abaad5a3ad7b4d15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d59a4d8e87b3782fde5d2b8793175b0d = $(`&lt;div id=&quot;html_d59a4d8e87b3782fde5d2b8793175b0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0061             latitude:35.76806             pred_result:62.21366882324219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ac595dacb981e54abaad5a3ad7b4d15.setContent(html_d59a4d8e87b3782fde5d2b8793175b0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4b646d33a6ccb1cf002401a103120343.bindPopup(popup_9ac595dacb981e54abaad5a3ad7b4d15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_acd20ae711df26d04c9556514e94f918 = L.circleMarker(\\n\",\n       \"                [34.6686, 112.4433],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_aeff03e9323399fe93344530242c61fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d7e0e794360d8a92867dca939ee72bd = $(`&lt;div id=&quot;html_1d7e0e794360d8a92867dca939ee72bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4433             latitude:34.6686             pred_result:60.55974578857422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_aeff03e9323399fe93344530242c61fa.setContent(html_1d7e0e794360d8a92867dca939ee72bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_acd20ae711df26d04c9556514e94f918.bindPopup(popup_aeff03e9323399fe93344530242c61fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2753106d15214731e811318675af8f86 = L.circleMarker(\\n\",\n       \"                [23.63444, 113.0472],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da99617818d70c50a20ee13f1e40485f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_13e0373acba433ef50f63420f9fecc4f = $(`&lt;div id=&quot;html_13e0373acba433ef50f63420f9fecc4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0472             latitude:23.63444             pred_result:37.76870346069336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da99617818d70c50a20ee13f1e40485f.setContent(html_13e0373acba433ef50f63420f9fecc4f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2753106d15214731e811318675af8f86.bindPopup(popup_da99617818d70c50a20ee13f1e40485f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b19efd3205cd0454463b2080f525981f = L.circleMarker(\\n\",\n       \"                [23.65889, 116.6183],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b9a0822aa655f3380d712cde8af299af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_209a246ced837439579ebcf98b36afdf = $(`&lt;div id=&quot;html_209a246ced837439579ebcf98b36afdf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6183             latitude:23.65889             pred_result:22.57428741455078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b9a0822aa655f3380d712cde8af299af.setContent(html_209a246ced837439579ebcf98b36afdf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b19efd3205cd0454463b2080f525981f.bindPopup(popup_b9a0822aa655f3380d712cde8af299af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_85a60dba6d1fed2cb9ed3de99052757d = L.circleMarker(\\n\",\n       \"                [29.33972, 104.7228],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_91a1086b6d6daefe3f42aae8fadf6a90 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b96df0e3f0fe92d4e470c289baedd278 = $(`&lt;div id=&quot;html_b96df0e3f0fe92d4e470c289baedd278&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7228             latitude:29.33972             pred_result:48.9381217956543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_91a1086b6d6daefe3f42aae8fadf6a90.setContent(html_b96df0e3f0fe92d4e470c289baedd278);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_85a60dba6d1fed2cb9ed3de99052757d.bindPopup(popup_91a1086b6d6daefe3f42aae8fadf6a90)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_128e14d7a36f4163ed904bd063a3bcb1 = L.circleMarker(\\n\",\n       \"                [29.36028, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5651bdae3394d6431a2f555d358152d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8544cf7df0857e054fb7c320a8dd0cbb = $(`&lt;div id=&quot;html_8544cf7df0857e054fb7c320a8dd0cbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:29.36028             pred_result:48.69978332519531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5651bdae3394d6431a2f555d358152d4.setContent(html_8544cf7df0857e054fb7c320a8dd0cbb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_128e14d7a36f4163ed904bd063a3bcb1.bindPopup(popup_5651bdae3394d6431a2f555d358152d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40c6e6935b531526ed5cec90052e86c3 = L.circleMarker(\\n\",\n       \"                [43.4569, 87.4651],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_86552637058f84a820fc7fce7175096d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9cac39af6e3c427b401b143ceb10a568 = $(`&lt;div id=&quot;html_9cac39af6e3c427b401b143ceb10a568&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.4651             latitude:43.4569             pred_result:28.03223991394043             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_86552637058f84a820fc7fce7175096d.setContent(html_9cac39af6e3c427b401b143ceb10a568);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40c6e6935b531526ed5cec90052e86c3.bindPopup(popup_86552637058f84a820fc7fce7175096d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7315fb37088491789d537df617a0831d = L.circleMarker(\\n\",\n       \"                [41.0385, 113.1076],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76bba549439f32f1146be2cc8e560857 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b11f6bd38b2b3b1b1aa10fbe68154995 = $(`&lt;div id=&quot;html_b11f6bd38b2b3b1b1aa10fbe68154995&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1076             latitude:41.0385             pred_result:28.85306739807129             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76bba549439f32f1146be2cc8e560857.setContent(html_b11f6bd38b2b3b1b1aa10fbe68154995);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7315fb37088491789d537df617a0831d.bindPopup(popup_76bba549439f32f1146be2cc8e560857)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e4a74f929ce26cdcfcd193453df0f722 = L.circleMarker(\\n\",\n       \"                [46.0707, 122.0931],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0678ee42c9f3c49176a779baab2cef4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_48754e06032699c095a4324c8e534c82 = $(`&lt;div id=&quot;html_48754e06032699c095a4324c8e534c82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0931             latitude:46.0707             pred_result:11.387367248535156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0678ee42c9f3c49176a779baab2cef4b.setContent(html_48754e06032699c095a4324c8e534c82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e4a74f929ce26cdcfcd193453df0f722.bindPopup(popup_0678ee42c9f3c49176a779baab2cef4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e33becea1a6208cd56d4ad43a7c8d62f = L.circleMarker(\\n\",\n       \"                [37.43445, 118.696],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ddd106a9098381cd93d439e7a94a6324 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b735ef6a59be719256d041a0e99f8969 = $(`&lt;div id=&quot;html_b735ef6a59be719256d041a0e99f8969&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.696             latitude:37.43445             pred_result:36.32502746582031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ddd106a9098381cd93d439e7a94a6324.setContent(html_b735ef6a59be719256d041a0e99f8969);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e33becea1a6208cd56d4ad43a7c8d62f.bindPopup(popup_ddd106a9098381cd93d439e7a94a6324)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ce05e086db710ee0e2f74bb95bbc7981 = L.circleMarker(\\n\",\n       \"                [23.3682, 103.3758],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3de4505478ee851a57d6af98b68a0324 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_654d143e08072ebbc9484c310df1e220 = $(`&lt;div id=&quot;html_654d143e08072ebbc9484c310df1e220&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.3758             latitude:23.3682             pred_result:33.29996109008789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3de4505478ee851a57d6af98b68a0324.setContent(html_654d143e08072ebbc9484c310df1e220);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ce05e086db710ee0e2f74bb95bbc7981.bindPopup(popup_3de4505478ee851a57d6af98b68a0324)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c711b440fa5a0cc0303296e5ca75abce = L.circleMarker(\\n\",\n       \"                [34.7822, 111.19],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d2368c318a41fb95462585d17aeee097 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1661e0843be44c10e47930373591a2af = $(`&lt;div id=&quot;html_1661e0843be44c10e47930373591a2af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.19             latitude:34.7822             pred_result:53.95391082763672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d2368c318a41fb95462585d17aeee097.setContent(html_1661e0843be44c10e47930373591a2af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c711b440fa5a0cc0303296e5ca75abce.bindPopup(popup_d2368c318a41fb95462585d17aeee097)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5e4904c16a06791b88ecc181a97aa60f = L.circleMarker(\\n\",\n       \"                [28.6064, 115.9083],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2484e8c7cab883a7e617543e9706245 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6efbba2ec1135c97b47d5f6d776a109d = $(`&lt;div id=&quot;html_6efbba2ec1135c97b47d5f6d776a109d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.9083             latitude:28.6064             pred_result:45.57648468017578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2484e8c7cab883a7e617543e9706245.setContent(html_6efbba2ec1135c97b47d5f6d776a109d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5e4904c16a06791b88ecc181a97aa60f.bindPopup(popup_f2484e8c7cab883a7e617543e9706245)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_17925989f49934bf78c3a8d9663f3f72 = L.circleMarker(\\n\",\n       \"                [26.0931, 119.58],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5eeec19c9923adde100495320ae4d33d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9dee723f124c5edcac0eedc9c16450bd = $(`&lt;div id=&quot;html_9dee723f124c5edcac0eedc9c16450bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.58             latitude:26.0931             pred_result:18.611785888671875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5eeec19c9923adde100495320ae4d33d.setContent(html_9dee723f124c5edcac0eedc9c16450bd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_17925989f49934bf78c3a8d9663f3f72.bindPopup(popup_5eeec19c9923adde100495320ae4d33d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e35493708ae926a3449cf74f61194e75 = L.circleMarker(\\n\",\n       \"                [39.1495, 117.3916],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b04a7401844bd632bb3ae926fca7e21f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e713aa33ac685fa1d677717aa36a6fad = $(`&lt;div id=&quot;html_e713aa33ac685fa1d677717aa36a6fad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3916             latitude:39.1495             pred_result:44.90277099609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b04a7401844bd632bb3ae926fca7e21f.setContent(html_e713aa33ac685fa1d677717aa36a6fad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e35493708ae926a3449cf74f61194e75.bindPopup(popup_b04a7401844bd632bb3ae926fca7e21f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d0b617539b1bbcebf2edeabc45836932 = L.circleMarker(\\n\",\n       \"                [35.28385, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b21c153d2a631d8035ae1bf82aebbc8e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cd029f4f3fec97f4dc0b549fb2ea9ffe = $(`&lt;div id=&quot;html_cd029f4f3fec97f4dc0b549fb2ea9ffe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:35.28385             pred_result:69.08267974853516             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b21c153d2a631d8035ae1bf82aebbc8e.setContent(html_cd029f4f3fec97f4dc0b549fb2ea9ffe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d0b617539b1bbcebf2edeabc45836932.bindPopup(popup_b21c153d2a631d8035ae1bf82aebbc8e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34835333bacc15acf3f11fc14cd6c0e2 = L.circleMarker(\\n\",\n       \"                [37.4014, 121.5992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5401cae7f636948e2d9289cf593c3273 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eccf295b6136402696d9820bb0e4857c = $(`&lt;div id=&quot;html_eccf295b6136402696d9820bb0e4857c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.5992             latitude:37.4014             pred_result:11.673667907714844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5401cae7f636948e2d9289cf593c3273.setContent(html_eccf295b6136402696d9820bb0e4857c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34835333bacc15acf3f11fc14cd6c0e2.bindPopup(popup_5401cae7f636948e2d9289cf593c3273)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56755ee7cdb6e801005e09d87a817a5b = L.circleMarker(\\n\",\n       \"                [42.0352, 119.2654],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_850328a8b952241152597a5de665e9df = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_49fbfb7926e86f952675b9977bd4dbce = $(`&lt;div id=&quot;html_49fbfb7926e86f952675b9977bd4dbce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.2654             latitude:42.0352             pred_result:15.977642059326172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_850328a8b952241152597a5de665e9df.setContent(html_49fbfb7926e86f952675b9977bd4dbce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56755ee7cdb6e801005e09d87a817a5b.bindPopup(popup_850328a8b952241152597a5de665e9df)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bbee9c399b5046cd10ed10ba23775220 = L.circleMarker(\\n\",\n       \"                [36.2092, 117.7181],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c019cb2eb8d5bd585b20bd224700148a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd0001bb68e5668e4f22a75683480c0b = $(`&lt;div id=&quot;html_dd0001bb68e5668e4f22a75683480c0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.7181             latitude:36.2092             pred_result:44.31781768798828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c019cb2eb8d5bd585b20bd224700148a.setContent(html_dd0001bb68e5668e4f22a75683480c0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bbee9c399b5046cd10ed10ba23775220.bindPopup(popup_c019cb2eb8d5bd585b20bd224700148a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_246ca77a99dddef894bdb9376708f5e2 = L.circleMarker(\\n\",\n       \"                [49.1577, 119.7512],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7114a0ca069ace7eb323d0d88e6f9ee8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b1af0c45514e7db12e71fa555691e2cc = $(`&lt;div id=&quot;html_b1af0c45514e7db12e71fa555691e2cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.7512             latitude:49.1577             pred_result:-1.8977632522583008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7114a0ca069ace7eb323d0d88e6f9ee8.setContent(html_b1af0c45514e7db12e71fa555691e2cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_246ca77a99dddef894bdb9376708f5e2.bindPopup(popup_7114a0ca069ace7eb323d0d88e6f9ee8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_428e5b83c3193e6d0c395285bcc45902 = L.circleMarker(\\n\",\n       \"                [36.2211, 117.6983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6415f0b3a386fc8e0f110a3eaa497694 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_085639b1d3efb779316594d9e9b6e320 = $(`&lt;div id=&quot;html_085639b1d3efb779316594d9e9b6e320&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6983             latitude:36.2211             pred_result:45.22875213623047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6415f0b3a386fc8e0f110a3eaa497694.setContent(html_085639b1d3efb779316594d9e9b6e320);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_428e5b83c3193e6d0c395285bcc45902.bindPopup(popup_6415f0b3a386fc8e0f110a3eaa497694)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03c0a8d29cb970581c976a41f0f21aca = L.circleMarker(\\n\",\n       \"                [29.9972, 101.9533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be095d973f7e6efa6c714a082b63a1b3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_698dcb492845632b380161901335d9d5 = $(`&lt;div id=&quot;html_698dcb492845632b380161901335d9d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9533             latitude:29.9972             pred_result:16.893178939819336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be095d973f7e6efa6c714a082b63a1b3.setContent(html_698dcb492845632b380161901335d9d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03c0a8d29cb970581c976a41f0f21aca.bindPopup(popup_be095d973f7e6efa6c714a082b63a1b3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7d4368d3b4d77ed9e5c47b9a977d8d25 = L.circleMarker(\\n\",\n       \"                [37.4372, 116.2714],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c194344c1045591dfe7b96df4efc7ce4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_39b6e36375d06f8643224eaf3e42de6d = $(`&lt;div id=&quot;html_39b6e36375d06f8643224eaf3e42de6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.2714             latitude:37.4372             pred_result:58.22895050048828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c194344c1045591dfe7b96df4efc7ce4.setContent(html_39b6e36375d06f8643224eaf3e42de6d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7d4368d3b4d77ed9e5c47b9a977d8d25.bindPopup(popup_c194344c1045591dfe7b96df4efc7ce4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_04b10c5a0f6521d750e20fdc5152cfc2 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_04b10c5a0f6521d750e20fdc5152cfc2.color = d3.scale.threshold()\\n\",\n       \"              .domain([-2.8250765800476074, -2.6098239421844482, -2.394571304321289, -2.17931866645813, -1.9640660285949707, -1.7488133907318115, -1.5335606336593628, -1.3183079957962036, -1.1030553579330444, -0.8878027200698853, -0.6725502014160156, -0.45729756355285645, -0.24204468727111816, -0.026792049407958984, 0.1884605884552002, 0.4037129878997803, 0.6189658641815186, 0.8342185020446777, 1.049471139907837, 1.264723777770996, 1.4799761772155762, 1.6952290534973145, 1.9104814529418945, 2.125734329223633, 2.340987205505371, 2.556239604949951, 2.7714924812316895, 2.9867448806762695, 3.201997756958008, 3.417250156402588, 3.632502555847168, 3.8477554321289062, 4.0630083084106445, 4.278261184692383, 4.493513584136963, 4.708765983581543, 4.924018859863281, 5.1392717361450195, 5.3545241355896, 5.569777011871338, 5.78502893447876, 6.000281810760498, 6.215534687042236, 6.430787563323975, 6.6460394859313965, 6.861292362213135, 7.076545238494873, 7.291798114776611, 7.50705099105835, 7.7223029136657715, 7.93755578994751, 8.152809143066406, 8.368061065673828, 8.58331298828125, 8.798566818237305, 9.013818740844727, 9.229072570800781, 9.444324493408203, 9.659576416015625, 9.87483024597168, 10.090082168579102, 10.305334091186523, 10.520587921142578, 10.73583984375, 10.951093673706055, 11.166345596313477, 11.381599426269531, 11.596851348876953, 11.812103271484375, 12.027355194091797, 12.242609024047852, 12.457860946655273, 12.673114776611328, 12.88836669921875, 13.103620529174805, 13.318872451782227, 13.534124374389648, 13.74937629699707, 13.964630126953125, 14.179882049560547, 14.395133972167969, 14.610387802124023, 14.825639724731445, 15.0408935546875, 15.256145477294922, 15.471399307250977, 15.686651229858398, 15.901905059814453, 16.117155075073242, 16.332406997680664, 16.54766082763672, 16.76291275024414, 16.978166580200195, 17.193418502807617, 17.408672332763672, 17.623924255371094, 17.83917808532715, 18.05443000793457, 18.269681930541992, 18.484935760498047, 18.70018768310547, 18.915441513061523, 19.130693435668945, 19.345947265625, 19.561199188232422, 19.776451110839844, 19.991703033447266, 20.206954956054688, 20.422208786010742, 20.637460708618164, 20.85271453857422, 21.06796646118164, 21.283220291137695, 21.498472213745117, 21.713726043701172, 21.928977966308594, 22.144229888916016, 22.35948371887207, 22.574735641479492, 22.789989471435547, 23.005239486694336, 23.22049331665039, 23.435745239257812, 23.650999069213867, 23.86625099182129, 24.08150291442871, 24.296756744384766, 24.512008666992188, 24.727262496948242, 24.942514419555664, 25.15776824951172, 25.37302017211914, 25.588274002075195, 25.803525924682617, 26.01877784729004, 26.234031677246094, 26.449283599853516, 26.664535522460938, 26.87978744506836, 27.095041275024414, 27.310293197631836, 27.525545120239258, 27.740798950195312, 27.956050872802734, 28.17130470275879, 28.38655662536621, 28.601810455322266, 28.817062377929688, 29.032316207885742, 29.247570037841797, 29.46282196044922, 29.67807388305664, 29.893325805664062, 30.108577728271484, 30.323829650878906, 30.539085388183594, 30.754337310791016, 30.969589233398438, 31.18484115600586, 31.400096893310547, 31.615345001220703, 31.830596923828125, 32.04585266113281, 32.261104583740234, 32.476356506347656, 32.69160842895508, 32.906864166259766, 33.12211608886719, 33.33736801147461, 33.55261993408203, 33.76787567138672, 33.983123779296875, 34.19837951660156, 34.413631439208984, 34.62888717651367, 34.84413528442383, 35.05938720703125, 35.27464294433594, 35.489891052246094, 35.70514678955078, 35.9203987121582, 36.13565444946289, 36.35090255737305, 36.566158294677734, 36.781410217285156, 36.996665954589844, 37.2119140625, 37.42716979980469, 37.64242172241211, 37.85767364501953, 38.07292556762695, 38.28818130493164, 38.50343322753906, 38.71868133544922, 38.933937072753906, 39.14918899536133, 39.36444091796875, 39.57969284057617, 39.79494857788086, 40.01020050048828, 40.2254524230957, 40.440704345703125, 40.65596008300781, 40.87120819091797, 41.086463928222656, 41.30171585083008, 41.516971588134766, 41.73221969604492, 41.94747543334961, 42.16272735595703, 42.37797927856445, 42.593231201171875, 42.8084831237793, 43.023738861083984, 43.23898696899414, 43.45424270629883, 43.66949462890625, 43.88475036621094, 44.099998474121094, 44.31525421142578, 44.5305061340332, 44.745758056640625, 44.96100997924805, 45.176265716552734, 45.391517639160156, 45.60676574707031, 45.822021484375, 46.03727340698242, 46.25252914428711, 46.467777252197266, 46.68303298950195, 46.898284912109375, 47.1135368347168, 47.32878875732422, 47.544044494628906, 47.75929641723633, 47.97454833984375, 48.18980026245117, 48.40505599975586, 48.620304107666016, 48.83555603027344, 49.050811767578125, 49.26606369018555, 49.48131561279297, 49.69656753540039, 49.91182327270508, 50.1270751953125, 50.34232711791992, 50.557579040527344, 50.77283477783203, 50.98808288574219, 51.203338623046875, 51.4185905456543, 51.633846282958984, 51.84909439086914, 52.06435012817383, 52.27960205078125, 52.494850158691406, 52.710105895996094, 52.925357818603516, 53.1406135559082, 53.35586166381836, 53.57111740112305, 53.78636932373047, 54.001625061035156, 54.21687316894531, 54.43212890625, 54.64738082885742, 54.862632751464844, 55.077884674072266, 55.29314041137695, 55.508392333984375, 55.7236442565918, 55.93889617919922, 56.15414810180664, 56.36940002441406, 56.584651947021484, 56.79990768432617, 57.015159606933594, 57.230411529541016, 57.44566345214844, 57.660919189453125, 57.87616729736328, 58.09142303466797, 58.30667495727539, 58.52193069458008, 58.737178802490234, 58.95243453979492, 59.167686462402344, 59.382938385009766, 59.59819030761719, 59.81344223022461, 60.0286979675293, 60.24394607543945, 60.45920181274414, 60.67445373535156, 60.88970947265625, 61.104957580566406, 61.32021713256836, 61.535465240478516, 61.7507209777832, 61.96596908569336, 62.18122482299805, 62.3964729309082, 62.61172866821289, 62.82698440551758, 63.042232513427734, 63.25748825073242, 63.47273635864258, 63.687984466552734, 63.90324783325195, 64.11849975585938, 64.33375549316406, 64.54900360107422, 64.7642593383789, 64.9795150756836, 65.19476318359375, 65.4100112915039, 65.62527465820312, 65.84052276611328, 66.05577087402344, 66.27102661132812, 66.48627471923828, 66.7015380859375, 66.91678619384766, 67.13203430175781, 67.3472900390625, 67.56254577636719, 67.77779388427734, 67.99304962158203, 68.20829772949219, 68.42355346679688, 68.63880920410156, 68.85405731201172, 69.0693130493164, 69.2845687866211, 69.49981689453125, 69.71507263183594, 69.9303207397461, 70.14556884765625, 70.36083221435547, 70.57608032226562, 70.79132843017578, 71.00658416748047, 71.22183990478516, 71.43708801269531, 71.65234375, 71.86759185791016, 72.08285522460938, 72.29810333251953, 72.51335144042969, 72.72860717773438, 72.94385528564453, 73.15911102294922, 73.3743667602539, 73.58961486816406, 73.80486297607422, 74.02012634277344, 74.2353744506836, 74.45063018798828, 74.66587829589844, 74.88113403320312, 75.09638977050781, 75.31163787841797, 75.52688598632812, 75.74214935302734, 75.9573974609375, 76.17264556884766, 76.38790130615234, 76.6031494140625, 76.81841278076172, 77.03366088867188, 77.24890899658203, 77.46416473388672, 77.6794204711914, 77.89466857910156, 78.10992431640625, 78.3251724243164, 78.5404281616211, 78.75568389892578, 78.97093200683594, 79.1861801147461, 79.40144348144531, 79.61669158935547, 79.83194732666016, 80.04719543457031, 80.26244354248047, 80.47770690917969, 80.69295501708984, 80.908203125, 81.12345886230469, 81.33871459960938, 81.55396270751953, 81.76921844482422, 81.98446655273438, 82.1997299194336, 82.41497802734375, 82.6302261352539, 82.8454818725586, 83.06073760986328, 83.27598571777344, 83.49124145507812, 83.70648956298828, 83.92173767089844, 84.13700103759766, 84.35224914550781, 84.56749725341797, 84.78275299072266, 84.99800872802734, 85.21326446533203, 85.42851257324219, 85.64376068115234, 85.85902404785156, 86.07427215576172, 86.28952026367188, 86.50477600097656, 86.72003173828125, 86.9352798461914, 87.1505355834961, 87.36578369140625, 87.58103942871094, 87.79629516601562, 88.01154327392578, 88.22679901123047, 88.44204711914062, 88.65730285644531, 88.87255859375, 89.08780670166016, 89.30305480957031, 89.51831817626953, 89.73356628417969, 89.94882202148438, 90.16407012939453, 90.37931823730469, 90.5945816040039, 90.80982971191406, 91.02507781982422, 91.2403335571289, 91.4555892944336, 91.67083740234375, 91.88609313964844, 92.1013412475586, 92.31659698486328, 92.53185272216797, 92.74710083007812, 92.96235656738281, 93.1776123046875, 93.39286041259766, 93.60811614990234, 93.8233642578125, 94.03861236572266, 94.25387573242188, 94.46912384033203, 94.68437194824219, 94.89962768554688, 95.11488342285156, 95.33013916015625, 95.5453872680664, 95.76063537597656, 95.97589874267578, 96.19114685058594, 96.4063949584961, 96.62165069580078, 96.83690643310547, 97.05215454101562, 97.26741027832031, 97.48265838623047, 97.69790649414062, 97.91316986083984, 98.12841796875, 98.34367370605469, 98.55892181396484, 98.77417755126953, 98.98943328857422, 99.20468139648438, 99.41992950439453, 99.63519287109375, 99.8504409790039, 100.06568908691406, 100.28094482421875, 100.4961929321289, 100.71145629882812, 100.92670440673828, 101.14195251464844, 101.35720825195312, 101.57246398925781, 101.78771209716797, 102.00296783447266, 102.21821594238281, 102.4334716796875, 102.64872741699219, 102.86397552490234, 103.07923126220703, 103.29448699951172, 103.50973510742188, 103.72499084472656, 103.94023895263672, 104.15548706054688, 104.3707504272461, 104.58599853515625])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_04b10c5a0f6521d750e20fdc5152cfc2.x = d3.scale.linear()\\n\",\n       \"              .domain([-2.8250765800476074, 104.58599853515625])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_04b10c5a0f6521d750e20fdc5152cfc2.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_04b10c5a0f6521d750e20fdc5152cfc2.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_04b10c5a0f6521d750e20fdc5152cfc2.legend.addTo(map_15109b9dec5a17c55b09704b09de9cba);\\n\",\n       \"\\n\",\n       \"    color_map_04b10c5a0f6521d750e20fdc5152cfc2.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_04b10c5a0f6521d750e20fdc5152cfc2.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-2.8250765800476074, &#x27;&#x27;, &#x27;&#x27;, 13.286582946777344, &#x27;&#x27;, &#x27;&#x27;, 29.398242950439453, &#x27;&#x27;, &#x27;&#x27;, 45.50990676879883, &#x27;&#x27;, &#x27;&#x27;, 61.62156295776367, &#x27;&#x27;, &#x27;&#x27;, 77.73323059082031, &#x27;&#x27;, &#x27;&#x27;, 93.84489440917969, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_04b10c5a0f6521d750e20fdc5152cfc2.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_04b10c5a0f6521d750e20fdc5152cfc2.g = color_map_04b10c5a0f6521d750e20fdc5152cfc2.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_04b10c5a0f6521d750e20fdc5152cfc2.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_04b10c5a0f6521d750e20fdc5152cfc2.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_04b10c5a0f6521d750e20fdc5152cfc2.x(color_map_04b10c5a0f6521d750e20fdc5152cfc2.color.domain()[i - 1]) : color_map_04b10c5a0f6521d750e20fdc5152cfc2.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_04b10c5a0f6521d750e20fdc5152cfc2.color.domain().length ? color_map_04b10c5a0f6521d750e20fdc5152cfc2.x(color_map_04b10c5a0f6521d750e20fdc5152cfc2.color.domain()[i]) : color_map_04b10c5a0f6521d750e20fdc5152cfc2.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_04b10c5a0f6521d750e20fdc5152cfc2.g.call(color_map_04b10c5a0f6521d750e20fdc5152cfc2.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13a6ec3ae70>\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.dot_map(data=pred_res, lon_column='lng', lat_column='lat',\\n\",\n    \"                   y_column='pred_result', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"F2095F5901134C388D9549961C57B4A9\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 6.3 绘制权重分布热力图  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"DEM\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_94e76f641db25a232efa866d066411a9 {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_94e76f641db25a232efa866d066411a9&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_94e76f641db25a232efa866d066411a9 = L.map(\\n\",\n       \"                &quot;map_94e76f641db25a232efa866d066411a9&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_a98773ebf6c1fc4a04bac59f433d5575 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_a98773ebf6c1fc4a04bac59f433d5575.addTo(map_94e76f641db25a232efa866d066411a9);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_a0a3a2be7145c2d32923cc875d1953a8 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_a0a3a2be7145c2d32923cc875d1953a8.color = d3.scale.threshold()\\n\",\n       \"              .domain([-22.082904815673828, -22.006269454956055, -21.929636001586914, -21.85300064086914, -21.776365280151367, -21.699729919433594, -21.623096466064453, -21.54646110534668, -21.469825744628906, -21.393192291259766, -21.316556930541992, -21.23992156982422, -21.163288116455078, -21.086652755737305, -21.01001739501953, -20.933382034301758, -20.856748580932617, -20.780113220214844, -20.70347785949707, -20.62684440612793, -20.550209045410156, -20.473573684692383, -20.39693832397461, -20.32030487060547, -20.243669509887695, -20.167034149169922, -20.09040069580078, -20.013765335083008, -19.937129974365234, -19.86049461364746, -19.78386116027832, -19.707225799560547, -19.630590438842773, -19.553956985473633, -19.47732162475586, -19.400686264038086, -19.324050903320312, -19.247417449951172, -19.1707820892334, -19.094146728515625, -19.017513275146484, -18.94087791442871, -18.864242553710938, -18.787609100341797, -18.710973739624023, -18.63433837890625, -18.557703018188477, -18.481069564819336, -18.404434204101562, -18.32779884338379, -18.251163482666016, -18.174530029296875, -18.0978946685791, -18.021259307861328, -17.944625854492188, -17.867990493774414, -17.79135513305664, -17.7147216796875, -17.638086318969727, -17.561450958251953, -17.484817504882812, -17.40818214416504, -17.331546783447266, -17.254911422729492, -17.17827606201172, -17.101642608642578, -17.025007247924805, -16.94837188720703, -16.87173843383789, -16.795103073120117, -16.718467712402344, -16.641834259033203, -16.56519889831543, -16.488563537597656, -16.411930084228516, -16.335294723510742, -16.25865936279297, -16.182025909423828, -16.105388641357422, -16.02875518798828, -15.952119827270508, -15.87548542022705, -15.798851013183594, -15.72221565246582, -15.645580291748047, -15.568946838378906, -15.492311477661133, -15.41567611694336, -15.339042663574219, -15.262407302856445, -15.185771942138672, -15.109137535095215, -15.032503128051758, -14.955867767333984, -14.879232406616211, -14.802597999572754, -14.725963592529297, -14.649328231811523, -14.572693824768066, -14.49605941772461, -14.419424057006836, -14.342788696289062, -14.266155242919922, -14.189519882202148, -14.112884521484375, -14.036250114440918, -13.959615707397461, -13.882980346679688, -13.80634593963623, -13.729711532592773, -13.653076171875, -13.576441764831543, -13.499807357788086, -13.423171043395996, -13.346536636352539, -13.269902229309082, -13.193266868591309, -13.116632461547852, -13.039998054504395, -12.963362693786621, -12.886728286743164, -12.810093879699707, -12.733458518981934, -12.65682315826416, -12.580188751220703, -12.50355339050293, -12.426918983459473, -12.350284576416016, -12.273649215698242, -12.197014808654785, -12.120380401611328, -12.043745040893555, -11.967110633850098, -11.89047622680664, -11.81383991241455, -11.737205505371094, -11.660571098327637, -11.583935737609863, -11.507301330566406, -11.43066692352295, -11.354031562805176, -11.277397155761719, -11.200762748718262, -11.124128341674805, -11.047492027282715, -10.970857620239258, -10.8942232131958, -10.817587852478027, -10.74095344543457, -10.664319038391113, -10.58768367767334, -10.511049270629883, -10.434414863586426, -10.357779502868652, -10.281145095825195, -10.204509735107422, -10.127874374389648, -10.051239967346191, -9.974605560302734, -9.897970199584961, -9.821335792541504, -9.744701385498047, -9.668066024780273, -9.591431617736816, -9.51479721069336, -9.438161849975586, -9.361526489257812, -9.284892082214355, -9.208256721496582, -9.131622314453125, -9.054987907409668, -8.978352546691895, -8.901718139648438, -8.82508373260498, -8.748448371887207, -8.67181396484375, -8.595179557800293, -8.518543243408203, -8.441908836364746, -8.365274429321289, -8.288639068603516, -8.212004661560059, -8.135370254516602, -8.058735847473145, -7.982100486755371, -7.905466079711914, -7.828831672668457, -7.752195358276367, -7.67556095123291, -7.598926544189453, -7.52229118347168, -7.445656776428223, -7.369022369384766, -7.292387008666992, -7.215752601623535, -7.139118194580078, -7.062482833862305, -6.985848426818848, -6.909213066101074, -6.832577705383301, -6.755943298339844, -6.679308891296387, -6.602673530578613, -6.526039123535156, -6.449404716491699, -6.372769355773926, -6.296134948730469, -6.219500541687012, -6.142864227294922, -6.066230773925781, -5.989595413208008, -5.912960052490234, -5.836326599121094, -5.75969123840332, -5.683055877685547, -5.606420516967773, -5.529787063598633, -5.453151702880859, -5.376518249511719, -5.2998809814453125, -5.223247528076172, -5.146612167358398, -5.069978713989258, -4.993343353271484, -4.916709899902344, -4.8400726318359375, -4.763437271118164, -4.686803817749023, -4.61016845703125, -4.533535003662109, -4.456899642944336, -4.3802642822265625, -4.303628921508789, -4.226995468139648, -4.150360107421875, -4.073724746704102, -3.997091293334961, -3.9204540252685547, -3.843820571899414, -3.7671852111816406, -3.6905517578125, -3.6139163970947266, -3.537282943725586, -3.4606456756591797, -3.384012222290039, -3.3073768615722656, -3.230741500854492, -3.1541080474853516, -3.077472686767578, -3.0008392333984375, -2.9242019653320312, -2.8475685119628906, -2.770933151245117, -2.6942996978759766, -2.617664337158203, -2.5410308837890625, -2.4643936157226562, -2.387758255004883, -2.311124801635742, -2.2344894409179688, -2.157855987548828, -2.0812206268310547, -2.0045852661132812, -1.9279499053955078, -1.8513164520263672, -1.7746810913085938, -1.6980476379394531, -1.6214122772216797, -1.5447750091552734, -1.4681415557861328, -1.3915061950683594, -1.3148727416992188, -1.2382373809814453, -1.1616039276123047, -1.0849666595458984, -1.0083332061767578, -0.9316978454589844, -0.8550643920898438, -0.7784290313720703, -0.7017936706542969, -0.6251583099365234, -0.54852294921875, -0.4718894958496094, -0.39525413513183594, -0.3186206817626953, -0.24198532104492188, -0.16535186767578125, -0.088714599609375, -0.012079238891601562, 0.06455421447753906, 0.1411895751953125, 0.21782302856445312, 0.29445838928222656, 0.37109375, 0.44772911071777344, 0.5243625640869141, 0.6009979248046875, 0.6776313781738281, 0.7542667388916016, 0.8309040069580078, 0.9075374603271484, 0.9841728210449219, 1.0608062744140625, 1.137441635131836, 1.2140750885009766, 1.2907123565673828, 1.3673458099365234, 1.4439811706542969, 1.5206146240234375, 1.597249984741211, 1.6738853454589844, 1.7505207061767578, 1.8271560668945312, 1.9037895202636719, 1.9804248809814453, 2.057058334350586, 2.1336936950683594, 2.210329055786133, 2.2869644165039062, 2.363597869873047, 2.4402332305908203, 2.5168685913085938, 2.5935020446777344, 2.6701393127441406, 2.7467727661132812, 2.8234081268310547, 2.9000415802001953, 2.9766769409179688, 3.0533103942871094, 3.129945755004883, 3.2065811157226562, 3.2832164764404297, 3.359851837158203, 3.4364852905273438, 3.513120651245117, 3.589754104614258, 3.666391372680664, 3.7430248260498047, 3.819660186767578, 3.8962936401367188, 3.972929000854492, 4.049562454223633, 4.126199722290039, 4.2028350830078125, 4.279468536376953, 4.356103897094727, 4.432737350463867, 4.509372711181641, 4.586008071899414, 4.6626434326171875, 4.739276885986328, 4.815912246704102, 4.892545700073242, 4.969181060791016, 5.045818328857422, 5.1224517822265625, 5.199087142944336, 5.275720596313477, 5.35235595703125, 5.428989410400391, 5.505626678466797, 5.5822601318359375, 5.658895492553711, 5.735530853271484, 5.812164306640625, 5.888799667358398, 5.965433120727539, 6.042070388793945, 6.118703842163086, 6.195339202880859, 6.27197265625, 6.348608016967773, 6.425241470336914, 6.50187873840332, 6.578514099121094, 6.655147552490234, 6.731782913208008, 6.808416366577148, 6.885051727294922, 6.961687088012695, 7.038322448730469, 7.114955902099609, 7.191591262817383, 7.268224716186523, 7.344860076904297, 7.421497344970703, 7.498130798339844, 7.574766159057617, 7.651399612426758, 7.728034973144531, 7.804668426513672, 7.881305694580078, 7.957939147949219, 8.034574508666992, 8.111207962036133, 8.187843322753906, 8.26447868347168, 8.341114044189453, 8.417749404907227, 8.494382858276367, 8.57101821899414, 8.647651672363281, 8.724287033081055, 8.800920486450195, 8.877557754516602, 8.954191207885742, 9.030826568603516, 9.107461929321289, 9.18409538269043, 9.260730743408203, 9.337366104125977, 9.41400146484375, 9.49063491821289, 9.567270278930664, 9.643903732299805, 9.720539093017578, 9.797176361083984, 9.873809814453125, 9.950443267822266, 10.027080535888672, 10.103713989257812, 10.180347442626953, 10.25698471069336, 10.3336181640625, 10.41025161743164, 10.486888885498047, 10.563522338867188, 10.640159606933594, 10.716793060302734, 10.793426513671875, 10.870063781738281, 10.946697235107422, 11.023330688476562, 11.099964141845703, 11.17660140991211, 11.25323486328125, 11.32986831665039, 11.406505584716797, 11.483142852783203, 11.559776306152344, 11.636409759521484, 11.71304702758789, 11.789680480957031, 11.866313934326172, 11.942947387695312, 12.019584655761719, 12.09621810913086, 12.1728515625, 12.24948501586914, 12.326122283935547, 12.402759552001953, 12.479393005371094, 12.5560302734375, 12.63266372680664, 12.709297180175781, 12.785930633544922, 12.862567901611328, 12.939201354980469, 13.01583480834961, 13.092472076416016, 13.169105529785156, 13.245738983154297, 13.322376251220703, 13.39901351928711, 13.47564697265625, 13.55228042602539, 13.628913879394531, 13.705551147460938, 13.782184600830078, 13.858818054199219, 13.935455322265625, 14.012088775634766, 14.088722229003906, 14.165355682373047, 14.241996765136719, 14.31863021850586, 14.395263671875, 14.47189712524414, 14.548534393310547, 14.625167846679688, 14.701801300048828, 14.778438568115234, 14.855072021484375, 14.931705474853516, 15.008338928222656, 15.084976196289062, 15.161613464355469, 15.23824691772461, 15.31488037109375, 15.391517639160156, 15.468151092529297, 15.544784545898438, 15.621421813964844, 15.698055267333984, 15.774688720703125, 15.851322174072266, 15.927959442138672, 16.004592895507812, 16.081226348876953, 16.15786361694336])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_a0a3a2be7145c2d32923cc875d1953a8.x = d3.scale.linear()\\n\",\n       \"              .domain([-22.082904815673828, 16.15786361694336])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_a0a3a2be7145c2d32923cc875d1953a8.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_a0a3a2be7145c2d32923cc875d1953a8.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_a0a3a2be7145c2d32923cc875d1953a8.legend.addTo(map_94e76f641db25a232efa866d066411a9);\\n\",\n       \"\\n\",\n       \"    color_map_a0a3a2be7145c2d32923cc875d1953a8.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_a0a3a2be7145c2d32923cc875d1953a8.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-22.082904815673828, &#x27;&#x27;, &#x27;&#x27;, -16.346790313720703, &#x27;&#x27;, &#x27;&#x27;, -10.610673904418945, &#x27;&#x27;, &#x27;&#x27;, -4.8745574951171875, &#x27;&#x27;, &#x27;&#x27;, 0.8615570068359375, &#x27;&#x27;, &#x27;&#x27;, 6.5976715087890625, &#x27;&#x27;, &#x27;&#x27;, 12.333789825439453, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_a0a3a2be7145c2d32923cc875d1953a8.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_a0a3a2be7145c2d32923cc875d1953a8.g = color_map_a0a3a2be7145c2d32923cc875d1953a8.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_a0a3a2be7145c2d32923cc875d1953a8.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_a0a3a2be7145c2d32923cc875d1953a8.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_a0a3a2be7145c2d32923cc875d1953a8.x(color_map_a0a3a2be7145c2d32923cc875d1953a8.color.domain()[i - 1]) : color_map_a0a3a2be7145c2d32923cc875d1953a8.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_a0a3a2be7145c2d32923cc875d1953a8.color.domain().length ? color_map_a0a3a2be7145c2d32923cc875d1953a8.x(color_map_a0a3a2be7145c2d32923cc875d1953a8.color.domain()[i]) : color_map_a0a3a2be7145c2d32923cc875d1953a8.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_a0a3a2be7145c2d32923cc875d1953a8.g.call(color_map_a0a3a2be7145c2d32923cc875d1953a8.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_bc80bb7545b1aecf48180d674d5a6b84 = L.heatLayer(\\n\",\n       \"                [[22.7629, 113.257, 2.479485511779785], [22.6411, 110.1675, 3.057342767715454], [38.5339, 102.1725, -0.7778138518333435], [23.6714, 116.6339, 1.2058618068695068], [31.1956, 107.5069, -16.072961807250977], [32.8603, 115.8556, -16.81160545349121], [23.0395, 113.105, 1.3796576261520386], [31.371, 119.794, -6.564639568328857], [31.2797, 107.5272, -16.287538528442383], [37.4967, 121.2611, -5.438605785369873], [27.7569, 111.9561, -13.840428352355957], [37.1152, 79.9485, 13.452807426452637], [28.6425, 115.892, -15.267745018005371], [39.0927, 117.202, -11.367538452148438], [29.5186, 106.54, -11.11264419555664], [30.2311, 119.6942, -6.628634929656982], [24.339, 102.5381, 6.044921875], [33.0069, 114.0131, -18.48630714416504], [37.0533, 114.5261, -19.771015167236328], [29.4758, 113.2621, -18.761394500732422], [26.3108, 117.7275, -5.706308841705322], [32.1403, 114.0122, -18.821836471557617], [21.2679, 110.3316, 6.868703365325928], [43.895, 81.2867, 11.259389877319336], [41.5931, 120.4439, -4.94368314743042], [39.5747, 116.7729, -10.992796897888184], [28.4303, 117.9033, -9.925239562988281], [38.885, 121.5638889, -5.527491092681885], [36.4343, 116.0072, -17.142431259155273], [24.9424, 118.6663, -0.7238923907279968], [37.9854, 112.549, -20.70718765258789], [36.6867, 101.524, -2.94210147857666], [45.0878, 124.8292, -6.433117389678955], [26.5917, 104.83, -1.6455371379852295], [25.1035, 117.0216, -3.294330358505249], [31.955, 119.146, -8.332918167114258], [30.6145, 116.9894, -15.019491195678711], [35.0992, 117.4518, -14.130111694335938], [37.374, 120.399, -6.329779624938965], [43.85, 125.217, -6.573010444641113], [41.0971, 122.9642, -5.698483467102051], [41.0385, 113.1076, -8.493661880493164], [21.2706, 110.3539, 6.854359149932861], [47.3386, 123.9305, -6.067798137664795], [31.751, 119.579, -7.110476970672607], [32.7639, 116.8028, -15.490049362182617], [23.7569, 114.6778, -0.5884003043174744], [38.2911, 109.7456, -16.824251174926758], [36.9639, 100.9048, -1.647889494895935], [47.9047, 88.1214, 7.458881855010986], [36.0417, 111.4917, -21.525806427001953], [29.3628, 104.7547, -7.247316360473633], [30.8811, 117.7442, -13.234638214111328], [26.6343, 106.7487, -4.814664363861084], [29.3547, 110.5594, -16.393966674804688], [32.3153, 118.3094, -11.549798965454102], [24.3406, 109.3886, -1.8653082847595215], [34.2572, 109.06, -21.948749542236328], [27.8403, 112.9118, -14.568485260009766], [35.4934, 112.835, -20.012941360473633], [27.8042, 114.9119, -14.31322193145752], [28.6869, 115.852, -15.42798900604248], [34.3672, 107.1906, -19.856216430664062], [29.8633, 121.586, -4.203463554382324], [37.4514, 105.0197, -6.538346767425537], [36.913, 121.531, -5.298190116882324], [38.0513, 114.4548, -19.41025733947754], [37.8692, 112.5369, -20.838682174682617], [32.0197, 112.155, -20.14725685119629], [30.7525, 120.7844444, -5.073000907897949], [27.7231, 109.1794, -11.402536392211914], [39.0153, 106.3717, -5.840285778045654], [31.3508, 118.3528, -11.083465576171875], [23.0467, 113.144, 1.3622472286224365], [23.1617, 112.565, 0.770689070224762], [34.7822, 111.19, -20.663490295410156], [29.077, 119.647, -6.124635219573975], [37.3753, 97.3731, 3.8890817165374756], [23.3594, 104.2533, 6.38499641418457], [32.5714, 110.8839, -20.72498321533203], [46.6462, 131.1516, -6.350484848022461], [27.2944, 105.31, -3.9228274822235107], [32.4639, 119.888, -6.710033893585205], [39.0845, 117.1589, -11.489618301391602], [37.4314, 118.6672, -10.388340950012207], [30.1366, 104.6617, -8.487037658691406], [31.3264, 120.596, -5.329416751861572], [36.6275, 109.4131, -20.61716079711914], [23.5538, 113.589, -0.4282080829143524], [22.8054, 113.292, 2.3267757892608643], [24.3898, 109.4883, -2.0999302864074707], [42.3022, 123.8139, -6.304172039031982], [27.1311, 114.99, -12.442347526550293], [40.9733, 117.8184, -5.268049716949463], [40.7612, 111.717, -9.143513679504395], [31.2071, 121.577, -4.445334434509277], [36.253, 120.014, -7.416779041290283], [32.9917, 112.5192, -19.510177612304688], [28.3586, 112.9958, -16.010286331176758], [29.2958, 117.2111, -13.687846183776855], [27.8072, 114.4011, -14.557337760925293], [47.203, 123.6261, -6.054975986480713], [39.3265, 112.4078, -16.91901397705078], [41.0833, 122.9481, -5.691538333892822], [34.2629, 108.993, -21.958581924438477], [45.5828, 84.8897, 9.13046646118164], [31.215, 107.525, -16.14899444580078], [39.16969, 117.2099, -11.170469284057617], [27.5342, 109.9792, -11.815877914428711], [38.4186, 112.7356, -19.952648162841797], [41.2692, 123.7989, -5.998160362243652], [31.6411, 118.4828, -10.617815017700195], [39.4365, 75.9435, 16.15786361694336], [28.9664, 118.871, -7.969512462615967], [23.1036, 109.5683, 1.6461900472640991], [36.0822, 111.5169, -21.53112030029297], [36.885, 120.515, -6.330968379974365], [26.4214, 111.6156, -10.316200256347656], [34.719, 113.734, -18.721227645874023], [42.0186, 121.6561, -5.338078022003174], [30.63, 104.1113889, -8.045656204223633], [47.7222, 128.8736, -6.210595607757568], [41.7381, 125.9486, -6.552684307098389], [29.355, 113.2117, -18.452125549316406], [45.1642, 124.8528, -6.421741008758545], [34.7772, 111.1928, -20.655946731567383], [33.027, 112.5573, -19.467729568481445], [42.2814, 118.9233, -4.346828937530518], [28.5773, 121.377, -3.9165852069854736], [43.95305556, 126.4738889, -6.71681022644043], [32.6778, 109.0311, -21.332197189331055], [29.389, 106.513, -10.790825843811035], [32.6319, 116.8306, -15.495523452758789], [22.5978, 114.297, 3.2377586364746094], [27.6869, 106.9222, -7.837112903594971], [32.0314, 118.803, -9.500362396240234], [29.1029, 119.686, -6.067594051361084], [33.581, 114.014, -18.303266525268555], [33.8561, 115.7831, -16.718534469604492], [28.2597, 112.9792, -15.781783103942871], [43.7878, 125.454, -6.610041618347168], [36.6106, 109.5056, -20.779033660888672], [23.02777778, 113.7461111, 1.66964590549469], [28.6844, 115.893, -15.361542701721191], [33.9506, 118.3214, -11.755584716796875], [30.8217, 106.1031, -12.460354804992676], [41.7128, 86.2381, 8.52414321899414], [23.1478, 109.5681, 1.4949856996536255], [29.261, 91.7706, 8.843001365661621], [39.0877, 117.307, -11.135690689086914], [28.4231, 119.879, -5.61920690536499], [45.2978, 130.9298, -6.749852657318115], [27.725, 111.9975, -13.793941497802734], [31.2284, 121.533, -4.472925662994385], [41.1196, 123.044, -5.7262067794799805], [42.8328, 93.4961, 5.190976142883301], [36.5819, 101.834, -3.495022773742676], [30.9697, 117.8472, -12.904419898986816], [40.0031, 116.407, -10.281868934631348], [36.881, 118.746, -10.756752014160156], [34.2761, 117.167, -14.613703727722168], [26.6029, 106.6856, -4.6103515625], [35.7306, 114.2878, -19.16869354248047], [34.6258, 112.4275, -19.548810958862305], [36.865, 120.537, -6.3032989501953125], [30.5719, 114.3672, -19.137794494628906], [35.5051, 112.85, -20.015104293823242], [29.6588, 90.9798, 8.84406852722168], [32.3761, 119.389, -7.790851593017578], [36.2866, 100.6188, -2.1972830295562744], [43.1747, 124.3419, -6.407530784606934], [39.8673, 116.366, -10.893062591552734], [40.8452, 111.659, -8.572144508361816], [29.2647, 117.1558, -13.77048110961914], [27.8614, 112.9433, -14.642547607421875], [23.475, 111.3178, -0.39919406175613403], [39.5453, 116.7022, -11.2428617477417], [28.5808, 112.3458, -16.175315856933594], [36.5336, 116.734, -15.618428230285645], [36.2289, 117.6789, -13.522785186767578], [23.65889, 116.6183, 1.2333968877792358], [33.8997, 116.8067, -15.23643684387207], [23.7586, 114.6944, -0.5834253430366516], [41.8417, 123.7117, -6.193624496459961], [29.6535, 116.0174, -16.449390411376953], [46.6384, 126.9934, -6.425134181976318], [41.2864, 123.7669, -5.992765426635742], [27.8244, 113.135, -14.60034465789795], [29.5822, 105.0406, -8.1038179397583], [29.6632, 94.3616, 7.165454387664795], [45.7667, 126.635, -6.557854175567627], [38.2478, 109.7336, -16.92963981628418], [34.5911, 119.1478, -9.540492057800293], [39.6407, 118.1853, -7.8070526123046875], [26.5892, 104.8, -1.5985169410705566], [31.354, 119.818, -6.5120849609375], [36.6622, 117.049, -14.83611011505127], [19.9969, 110.338, 9.321608543395996], [35.428, 116.6305, -15.80431079864502], [37.364, 120.394, -6.339888095855713], [26.0542, 119.389, -2.523299217224121], [31.155, 120.636, -5.265411853790283], [22.2281, 113.299, 4.051961421966553], [23.63444, 113.0472, -0.9147868156433105], [23.3892, 104.2319, 6.3374834060668945], [43.8748, 125.3649, -6.593109130859375], [31.03389, 112.1908, -20.49971580505371], [23.2775, 116.7258, 2.3139522075653076], [35.4144, 116.5856, -15.883201599121094], [35.3962, 119.54, -8.722744941711426], [40.1952, 116.23, -9.905010223388672], [29.3578, 113.1094, -18.44170570373535], [46.0347, 124.8354, -6.252182483673096], [47.3382, 130.1097, -6.272353649139404], [40.916, 107.5936, -2.481884241104126], [41.9339, 123.6836, -6.216172218322754], [22.96583333, 113.7383333, 1.9031914472579956], [36.6872, 116.989, -14.96316146850586], [34.7538, 113.6356, -18.798124313354492], [31.7308, 113.3983, -19.348928451538086], [35.04388889, 111.0522222, -21.0463924407959], [35.9019, 114.17, -19.444358825683594], [27.5733, 109.9333, -11.869839668273926], [33.6347, 114.6758, -17.81507110595703], [32.1078, 114.1044, -18.768104553222656], [22.4853, 113.4411, 3.3906471729278564], [43.8875, 126.555, -6.725410461425781], [33.6067, 118.989, -9.634075164794922], [29.5867, 115.9936, -16.416467666625977], [34.1978, 108.985, -21.952659606933594], [25.0311, 117.0151, -3.0520100593566895], [27.11, 114.9739, -12.398382186889648], [30.21, 120.211, -5.620921611785889], [26.9258, 112.6194, -12.201066017150879], [46.7588, 130.3794, -6.388062000274658], [35.4813, 112.8252, -20.007516860961914], [39.9279, 116.225, -10.95798110961914], [34.3181, 108.6761, -21.965829849243164], [24.769519, 113.586606, -5.140005111694336], [30.5103, 117.0549, -14.88881778717041], [40.7579, 111.651, -9.077836036682129], [37.0964, 114.5331, -19.768789291381836], [49.2261, 119.7594, -4.828782558441162], [25.4792, 118.981, -1.72255539894104], [38.80805556, 121.2588889, -5.471794605255127], [28.2053, 113.0792, -15.70859432220459], [40.8144, 111.608, -8.683150291442871], [42.8953, 125.1567, -6.502357482910156], [24.6928, 108.054, -1.4286075830459595], [32.0878, 118.626, -10.198065757751465], [29.7207, 118.3236, -10.376739501953125], [36.838, 118.0448, -12.601799011230469], [29.9899, 103.0013, -4.754758358001709], [32.64600333, 117.0411667, -15.140694618225098], [22.6069, 113.104, 3.0014188289642334], [22.805, 108.383, 3.5591588020324707], [21.4689, 111.0286, 6.198915004730225], [21.6828, 110.8592, 5.768234729766846], [30.696, 111.268, -20.566986083984375], [22.5111, 113.4075, 3.3219552040100098], [43.831, 87.6432, 7.894745826721191], [33.5653, 114.0322, -18.295162200927734], [35.5714, 104.6228, -9.545731544494629], [26.6607, 119.5202, -3.65326189994812], [31.317, 119.438, -7.385494232177734], [31.5631, 120.245, -5.842306613922119], [29.8181, 114.3036, -18.91041374206543], [25.0124, 102.743, 4.62837553024292], [31.2994, 120.543, -5.395482063293457], [34.1546, 108.906, -21.955772399902344], [31.0483, 112.2014, -20.49066734313965], [30.2997, 113.8531, -19.459383010864258], [39.625, 121.989, -5.575395107269287], [40.7736, 120.8631, -5.2475738525390625], [35.27, 115.455, -17.626625061035156], [29.8272, 106.379, -11.353355407714844], [30.0874, 103.8416, -6.565315246582031], [29.41569, 106.5506, -10.926345825195312], [27.2537, 111.4503, -12.430018424987793], [24.2719, 116.0797, -1.3787007331848145], [47.3349, 130.2659, -6.263311386108398], [25.0359, 102.638, 4.723071098327637], [30.2692, 120.19, -5.657295227050781], [27.0658, 114.9817, -12.2632417678833], [25.8179, 113.0119, -8.57844352722168], [26.2403, 107.5228, -4.891836643218994], [32.4285, 105.8624, -14.516359329223633], [31.2659, 121.536, -4.472133636474609], [35.5997, 103.2064, -6.046482563018799], [34.9162, 113.6113, -18.92878532409668], [38.49494, 106.1024, -6.714451789855957], [32.4867, 119.9, -6.691981315612793], [39.1654, 117.145, -11.328691482543945], [41.0903, 122.0539, -5.347022533416748], [23.3917, 113.215, 0.0642382800579071], [31.1333, 104.3883, -9.446290969848633], [34.6972, 119.3581, -9.0032958984375], [42.8172, 93.5128, 5.191046714782715], [22.6164, 110.1433, 3.1547892093658447], [45.8167, 126.561, -6.539214134216309], [31.8766, 117.307, -14.567253112792969], [34.3622, 107.2386, -19.97104263305664], [25.5364, 103.8, 2.061033248901367], [22.5545, 114.1063, 3.3105335235595703], [43.9311, 116.0781, -4.075104713439941], [37.5211, 111.1406, -20.912071228027344], [47.7317, 128.9094, -6.206262588500977], [41.7972, 123.3997, -6.043257713317871], [23.3993, 103.3772, 7.129392147064209], [46.5776, 125.1386, -6.283173561096191], [43.8303, 87.5801, 7.926153659820557], [30.5947, 114.3008, -19.197994232177734], [26.2081, 111.6217, -9.601516723632812], [27.6442, 113.8686, -14.243106842041016], [39.2282, 106.7704, -6.064019680023193], [42.2556, 118.8789, -4.3361921310424805], [26.3003, 106.805, -3.9615373611450195], [29.57278, 106.4042, -10.948516845703125], [23.0916, 113.348, 1.256208896636963], [36.6114, 116.988, -14.991354942321777], [41.1386, 121.1303, -5.19636344909668], [45.8194, 130.8625, -6.614398956298828], [33.721, 113.322, -18.71578598022461], [31.896, 121.173, -4.783198356628418], [31.7848, 117.196, -14.80066967010498], [26.8906, 100.2203, 4.219331741333008], [24.795928, 113.598061, -5.238026142120361], [39.9567, 119.6023, -5.538941860198975], [32.18888889, 119.4369444, -7.583807945251465], [34.9817, 118.2764, -12.042511940002441], [36.5481, 104.1731, -6.342653751373291], [26.5495, 106.6867, -4.459364891052246], [44.1564, 87.9897, 7.720673561096191], [37.7111, 112.7306, -20.958297729492188], [26.4364, 111.5992, -10.349982261657715], [39.617, 122.011, -5.578585147857666], [26.6514, 118.1819, -5.798242568969727], [40.9843, 117.9525, -5.141251087188721], [22.0019, 100.7939, 10.52065372467041], [21.5958, 109.2256, 6.678411960601807], [34.7967, 114.2886, -18.451168060302734], [25.0492, 101.538, 5.812816143035889], [31.9286, 102.1755, -5.900929927825928], [26.567, 101.7227, 2.9843995571136475], [36.0725, 103.841, -6.4170427322387695], [39.3179, 112.4254, -16.967594146728516], [26.5155, 106.6948, -4.373538970947266], [22.7875, 108.301, 3.686863422393799], [29.7534, 116.0726, -16.423784255981445], [33.627, 119.0122, -9.576521873474121], [34.2778, 117.2933, -14.367724418640137], [32.8913, 117.4186, -14.30162239074707], [39.7884, 109.9734, -11.542668342590332], [30.475, 105.5956, -10.941274642944336], [34.6686, 112.4433, -19.562294006347656], [35.0611, 111.0233, -21.088064193725586], [23.4794, 111.26, -0.4063436985015869], [30.72358333, 103.97275, -7.836948871612549], [46.8025, 130.2719, -6.382965564727783], [32.02, 120.87, -5.105161666870117], [32.0417, 120.81, -5.169116973876953], [37.187, 122.019, -5.160297393798828], [38.0398, 114.6046, -19.173349380493164], [36.086, 114.32, -19.481260299682617], [25.9061, 113.0073, -8.902445793151855], [24.77908333, 113.6734722, -5.1428022384643555], [41.0781, 121.0986, -5.204161167144775], [37.197, 122.038, -5.162073612213135], [31.92, 120.302, -5.806210994720459], [39.8129, 110.0023, -11.477599143981934], [36.71, 117.541, -13.721190452575684], [32.3292, 119.8767, -6.687518119812012], [28.8833, 105.4322, -7.616700649261475], [34.4286, 115.6697, -16.929601669311523], [30.2897, 120.157, -5.712246894836426], [22.9394, 112.0369, 1.5859588384628296], [29.305, 120.091, -5.495180130004883], [26.9056, 112.5664, -12.129076957702637], [26.4519, 111.5989, -10.396413803100586], [25.0925, 104.9022, 1.2961444854736328], [26.6383, 118.1694, -5.789881229400635], [30.0033, 120.7789, -4.873767375946045], [36.4372, 115.9848, -17.184959411621094], [42.2217, 123.7153, -6.271090507507324], [31.5072, 104.7283, -10.715409278869629], [37.7379, 115.6426, -17.372140884399414], [34.794, 111.158, -20.706497192382812], [30.1808, 120.088, -5.8201398849487305], [35.1764, 113.2464, -19.403472900390625], [27.8136, 99.7064, 3.3029561042785645], [30.4133, 114.8131, -18.709606170654297], [30.1377, 104.6289, -8.421531677246094], [28.19, 112.9394, -15.600483894348145], [29.635, 119.026, -8.117486953735352], [33.5981, 119.036, -9.488529205322266], [42.0503, 121.6972, -5.37399435043335], [34.0117, 113.8331, -18.380247116088867], [29.5634, 103.757, -5.498453617095947], [32.5, 80.1161, 15.214629173278809], [30.3119, 120.12, -5.77507209777832], [29.33972, 104.7228, -7.141132354736328], [41.1042, 121.835, -5.296734809875488], [37.8564, 113.5753, -20.563989639282227], [31.17, 120.635, -5.268784999847412], [33.4022, 120.118, -6.639788627624512], [38.8707, 115.5214, -15.438352584838867], [38.6016, 105.9512, -6.052917003631592], [38.0524, 114.5214, -19.29483985900879], [37.18, 119.959, -7.123802185058594], [21.9508, 108.6553, 6.094973087310791], [21.6533, 110.9294, 5.81212043762207], [36.8198, 118.3092, -11.99358081817627], [32.965, 114.018, -18.50005340576172], [46.0872, 85.6931, 8.67325210571289], [28.1944, 113.0014, -15.642080307006836], [29.1389, 110.48, -15.848485946655273], [45.2948, 131.0103, -6.742801666259766], [30.4865, 106.6351, -12.988971710205078], [34.802, 113.564, -18.872879028320312], [41.5647, 120.4247, -4.946835517883301], [33.6481, 116.9765, -14.958982467651367], [43.1847, 124.3897, -6.413748264312744], [30.698, 111.2992, -20.583515167236328], [34.5653, 105.8614, -15.816019058227539], [22.5328, 113.024, 3.21170711517334], [23.1142, 114.4103, 1.6996020078659058], [34.2153, 117.256, -14.43412971496582], [32.6975, 109.0072, -21.33542251586914], [25.4552, 119.0018, -1.6327061653137207], [30.51197222, 117.0331111, -14.932902336120605], [37.4442, 118.5857, -10.6039400100708], [28.2264, 117.0222, -12.077153205871582], [34.9058, 108.9344, -22.051074981689453], [31.6908, 113.3833, -19.379087448120117], [28.0005, 116.3574, -12.895230293273926], [32.395, 111.0419, -20.706514358520508], [35.31, 113.836, -19.101531982421875], [23.3667, 116.6794, 2.0906431674957275], [34.3469, 106.005, -16.568540573120117], [25.8071, 113.0383, -8.542279243469238], [32.3061, 118.3158, -11.522706031799316], [40.7608, 107.4211, -2.682093858718872], [35.0697, 109.0697, -22.082904815673828], [44.5952, 129.5902, -6.97084903717041], [37.8531, 113.6292, -20.52785301208496], [40.3937, 116.644, -8.576203346252441], [30.3714, 114.8989, -18.59807586669922], [31.2261, 121.425, -4.549287796020508], [40.6592, 122.2414, -5.468087196350098], [21.8536, 111.9508, 5.094970226287842], [40.7136, 120.9092, -5.271091938018799], [27.3392, 103.7032, -1.3659452199935913], [41.1222, 121.1178, -5.198622226715088], [26.4364, 106.6554, -4.085507869720459], [38.4841, 106.2739, -7.20469331741333], [37.393, 117.9776, -12.342672348022461], [29.9816, 103.0001, -4.736785888671875], [33.1138, 107.0089, -18.79050636291504], [38.9846, 117.3747, -11.210265159606934], [23.05361111, 113.7819444, 1.5878795385360718], [25.2708, 110.3089, -5.142577171325684], [29.315, 110.4417, -16.180295944213867], [31.7956, 117.302, -14.560216903686523], [35.767, 115.0772, -18.408851623535156], [24.3663, 109.3957, -1.945824384689331], [29.8506, 121.524, -4.241735935211182], [43.8256, 126.55, -6.728772163391113], [27.72, 106.9178, -7.906471252441406], [27.8036, 114.9314, -14.29642391204834], [36.8041, 117.8512, -13.032342910766602], [36.907, 121.544, -5.288746356964111], [29.2718, 88.8876, 9.538858413696289], [25.5035, 103.7897, 2.1394379138946533], [40.8369, 111.751, -8.734728813171387], [39.0631, 121.9769, -5.615326881408691], [33.9592, 118.2442, -11.983607292175293], [33.63063889, 116.989, -14.938414573669434], [41.0831, 123.0156, -5.713932514190674], [39.6308, 118.1662, -7.872328281402588], [23.0528, 114.4183, 1.9380414485931396], [30.4742, 114.9028, -18.59560203552246], [30.6578, 104.054, -7.945643424987793], [21.7631, 108.3511, 6.777359485626221], [42.9409, 89.191, 7.144107818603516], [41.3369, 123.7528, -6.010408878326416], [30.2747, 120.063, -5.869794845581055], [35.2375, 115.474722, -17.583234786987305], [46.6572, 131.1638, -6.346961498260498], [29.2365, 88.8931, 9.549205780029297], [36.0022, 106.2792, -14.434250831604004], [33.739, 113.292, -18.73314666748047], [30.5797, 105.7519, -11.417866706848145], [37.7805, 112.488, -20.9200382232666], [28.9026, 105.4436, -7.668163299560547], [30.3515, 112.2068, -20.284412384033203], [35.6039, 103.2139, -6.050650119781494], [37.9844, 106.2025, -8.551520347595215], [33.7214, 113.3064, -18.726701736450195], [35.0994, 109.0656, -22.078977584838867], [38.00583333, 114.4586111, -19.460250854492188], [36.7008, 119.1425, -9.617762565612793], [25.0992, 104.8811, 1.3127816915512085], [35.1147, 111.0414, -21.11383628845215], [32.0723, 118.778, -9.609086036682129], [34.7496, 113.5991, -18.816299438476562], [30.2366, 119.7183, -6.573000431060791], [24.44583333, 118.0636111, 0.008457453921437263], [23.5353, 116.3697, 1.446114182472229], [37.3803, 118.0062, -12.284899711608887], [43.8947, 126.5786, -6.727567672729492], [31.5031, 120.242, -5.839466571807861], [40.8367, 114.8985, -8.920198440551758], [37.5639, 121.2514, -5.437264919281006], [30.6463, 111.3549, -20.52275276184082], [25.8417, 98.8546, 7.058183670043945], [27.5578, 109.9972, -11.894707679748535], [46.8032, 130.3648, -6.379937648773193], [42.8939, 129.4892, -7.045491695404053], [34.6692, 112.3628, -19.621746063232422], [30.9414, 117.7806, -13.120705604553223], [29.6514, 91.1319, 8.855009078979492], [24.3304, 109.4108, -1.8567254543304443], [28.71583, 104.5761, -5.61517858505249], [30.3944, 114.8878, -18.618499755859375], [38.03777778, 114.5480556, -19.270044326782227], [23.0786, 112.4722, 1.0831562280654907], [46.528, 125.112, -6.282721996307373], [27.2317, 111.4733, -12.395522117614746], [30.7157, 111.3009, -20.609088897705078], [32.9683, 112.55, -19.49642562866211], [31.3008, 121.467, -4.515191555023193], [46.619, 131.1651, -6.354466915130615], [43.9469, 87.4754, 7.982486724853516], [28.8194, 104.5969, -5.872204780578613], [30.9431, 118.7175, -9.722624778747559], [33.3942, 120.156, -6.581007480621338], [35.5236, 107.6406, -19.609718322753906], [31.8706, 117.259, -14.672994613647461], [32.4429, 105.8242, -14.438178062438965], [32.88922222, 115.7838889, -16.89162826538086], [26.6009, 106.7105, -4.649923801422119], [27.8094, 102.3419, -0.11372313648462296], [30.0911, 120.598, -5.120420932769775], [29.6747, 91.1221, 8.854853630065918], [35.4039, 116.5546, -15.938258171081543], [33.5039, 119.135, -9.134867668151855], [46.0707, 122.0931, -5.853198051452637], [34.29, 117.1814, -14.588455200195312], [41.9967, 121.6178, -5.305946350097656], [34.3739, 107.1186, -19.68419075012207], [23.0048, 113.134, 1.516162395477295], [29.90166667, 121.6147222, -4.194843292236328], [31.671, 120.721, -5.216765403747559], [28.1308, 112.8908, -15.404091835021973], [34.3164, 108.7369, -21.971965789794922], [34.7837, 117.2852, -14.428759574890137], [42.8775, 129.3675, -7.036632537841797], [35.0003, 102.905, -6.369956970214844], [43.6156, 122.3039, -5.966518878936768], [41.765, 123.41, -6.039738178253174], [32.939, 117.3961, -14.34255313873291], [36.5767, 109.4824, -20.81220817565918], [34.6231, 112.3844, -19.582183837890625], [27.8847, 102.2689, -0.14567475020885468], [43.962, 87.6444, 7.899655818939209], [37.5002, 105.1971, -6.881173610687256], [36.7019, 119.12, -9.69048023223877], [35.213, 113.227, -19.452266693115234], [40.1503, 124.4256, -5.935253143310547], [31.8108, 119.9736, -6.328805923461914], [37.8873, 112.522, -20.8196964263916], [33.568, 114.005, -18.31317138671875], [26.8802, 100.2497, 4.209712028503418], [41.8864, 124.0878, -6.300724029541016], [31.3708, 120.641, -5.2767462730407715], [29.6376, 94.3681, 7.174349784851074], [23.5292, 116.4094, 1.4953081607818604], [34.3731, 109.2186, -21.929073333740234], [31.6219, 120.275, -5.803154468536377], [31.5475, 120.354, -5.66491174697876], [27.8667, 113.167, -14.740678787231445], [41.9206, 126.4047, -6.6027445793151855], [40.6821, 109.8538, -6.553067207336426], [42.2953, 123.8831, -6.319621562957764], [34.2417, 117.192, -14.560250282287598], [36.6164, 114.5426, -19.614654541015625], [41.5672, 120.4486, -4.951562404632568], [25.1174, 117.0181, -3.343756675720215], [41.8594, 123.9, -6.26020622253418], [25.8567, 98.8601, 7.035306453704834], [29.5817, 105.0653, -8.146007537841797], [36.497, 117.8477, -13.13730525970459], [31.7275, 113.3583, -19.37993049621582], [25.7054, 100.1542, 6.126252174377441], [36.2211, 117.6983, -13.478974342346191], [24.68636111, 113.5970833, -4.791390895843506], [36.0714, 111.5028, -21.53373908996582], [24.81119444, 113.5593889, -5.309878826141357], [29.4402, 112.9943, -18.631052017211914], [35.76806, 115.0061, -18.487651824951172], [28.0089, 120.634, -4.133620738983154], [37.4372, 116.2714, -16.28653907775879], [31.7797, 116.5068, -16.138202667236328], [31.1654, 121.412, -4.564468860626221], [45.8309, 130.9467, -6.603632926940918], [44.8969, 82.0806, 10.72688102722168], [39.7294, 98.5023, 4.029177665710449], [28.4459, 117.973, -9.752477645874023], [23.3682, 103.3758, 7.194066047668457], [24.8885, 102.821, 4.792407512664795], [41.3472, 123.8142, -6.041021823883057], [33.0122, 112.5224, -19.49966812133789], [42.2864, 123.8489, -6.310647487640381], [27.7314, 112.0194, -13.823509216308594], [35.7672, 115.0628, -18.424823760986328], [30.6103, 114.4272, -19.08745002746582], [31.7506, 118.5106, -10.531648635864258], [29.1456, 111.7158, -17.109098434448242], [28.9745, 118.855, -8.019774436950684], [34.6575, 109.2, -22.052989959716797], [23.105, 113.261, 1.1775429248809814], [39.6572, 106.7931, -4.711019515991211], [23.5739, 116.3594, 1.309869408607483], [31.2108, 107.4967, -16.082599639892578], [32.625, 116.7039, -15.685920715332031], [28.2675, 109.6958, -13.16817569732666], [32.8985, 117.3065, -14.548491477966309], [41.2894, 123.1417, -5.771022796630859], [30.5706, 104.079, -7.881289482116699], [32.1342, 114.0681, -18.78412628173828], [23.0706, 112.427, 1.1061811447143555], [37.825, 120.747, -5.7326836585998535], [34.493, 109.4636, -21.869037628173828], [26.5894, 104.8475, -1.665934681892395], [28.76611, 104.6225, -5.815493106842041], [31.4747, 104.7778, -10.785168647766113], [32.0564, 112.1392, -20.14492416381836], [32.9735, 112.5003, -19.531705856323242], [25.0441, 101.5482, 5.810969352722168], [26.6611, 119.5392, -3.620913028717041], [43.6801, 122.2532, -5.951430320739746], [28.8558, 105.4322, -7.563681602478027], [29.6541, 91.1774, 8.854585647583008], [38.2991, 116.8854, -13.58696460723877], [37.154, 122.471, -5.167312145233154], [41.7156, 125.9361, -6.5502777099609375], [28.2169, 116.9983, -12.116308212280273], [31.3097, 120.669, -5.239558696746826], [44.0297, 87.2717, 8.083126068115234], [25.8471, 114.8905, -8.274643898010254], [33.8715, 109.9154, -21.208898544311523], [36.61981, 114.4965, -19.67589569091797], [38.97388889, 121.6119444, -5.556816101074219], [27.8328, 114.9289, -14.354820251464844], [40.0625, 124.3303, -5.88591194152832], [22.5625, 114.117, 3.291494846343994], [45.6886, 85.1186, 9.003396987915039], [38.3228, 116.8709, -13.575920104980469], [40.2865, 116.17, -9.656964302062988], [47.3489, 130.3172, -6.255432605743408], [45.9819, 126.6106, -6.5092854499816895], [38.3254, 116.8584, -13.598878860473633], [37.7087, 112.7105, -20.96242332458496], [31.8516, 117.124, -14.98239517211914], [36.8088, 118.0482, -12.611541748046875], [38.5036, 106.1358, -6.778789520263672], [38.8756, 115.442, -15.569099426269531], [35.0308, 110.9678, -21.11164665222168], [21.865, 111.9494, 5.070133686065674], [31.9051, 117.16, -14.913896560668945], [29.6007, 103.7506, -5.55229377746582], [41.9419, 126.4078, -6.602926731109619], [39.0511, 121.7769, -5.59661865234375], [32.0775, 118.795, -9.547776222229004], [46.0703, 122.0506, -5.846090316772461], [27.9639, 116.3598, -12.798787117004395], [24.4674, 117.6336, -0.4499342441558838], [30.049, 119.946, -6.064898490905762], [34.7997, 111.1489, -20.721019744873047], [22.5497, 113.3881, 3.209512948989868], [34.378, 108.869, -21.997865676879883], [36.4796, 115.9835, -17.193981170654297], [29.334, 120.04, -5.576240539550781], [31.422, 121.14, -4.745589733123779], [38.91194444, 121.6330556, -5.543751239776611], [29.6926, 116.0628, -16.405214309692383], [27.6428, 113.8381, -14.238733291625977], [37.43445, 118.696, -10.30019474029541], [43.55, 125.633, -6.599399089813232], [32.4246, 105.8153, -14.377945899963379], [46.6527, 126.9636, -6.421970367431641], [45.7478, 126.593, -6.556702613830566], [35.28385, 113.5922, -19.25092124938965], [31.8585, 117.336, -14.497756004333496], [30.66, 117.49, -13.934500694274902], [38.95111111, 121.565, -5.544735431671143], [40.1097, 113.3819, -13.464640617370605], [33.0706, 107.0154, -18.757408142089844], [27.8344, 114.9831, -14.312646865844727], [27.9153, 113.0048, -14.828344345092773], [27.3033, 111.5239, -12.5913724899292], [30.518, 106.631, -13.032114028930664], [31.7371, 116.508, -16.136409759521484], [29.6039, 115.9114, -16.54831886291504], [23.8822, 100.0869, 8.834273338317871], [39.9425, 116.361, -10.611137390136719], [23.2539, 116.6092, 2.327033042907715], [24.5058, 118.0936, -0.13643863797187805], [36.0211, 106.2375, -14.246794700622559], [27.8159, 112.9227, -14.501132011413574], [30.2989, 109.5039, -17.552406311035156], [29.7125, 106.617, -11.615845680236816], [44.6104, 129.6459, -6.970218181610107], [30.4753, 114.1525, -19.301939010620117], [44.1756, 87.5475, 7.945518493652344], [34.6869, 112.4831, -19.546676635742188], [37.062, 114.4854, -19.818994522094727], [36.6428, 101.748, -3.3074965476989746], [26.5506, 104.9544, -1.7456812858581543], [31.4539, 104.7536, -10.707249641418457], [31.388, 120.953, -4.9151611328125], [45.755, 126.542, -6.549144268035889], [31.0283, 103.613, -7.483782768249512], [40.7688, 114.9032, -9.209945678710938], [31.3019, 120.591, -5.334626197814941], [33.9953, 113.7906, -18.404037475585938], [30.0506, 103.8986, -6.623474597930908], [39.65782, 118.1838, -7.7665276527404785], [30.6347, 105.8161, -11.63555908203125], [31.1108, 104.3539, -9.332677841186523], [37.0172, 105.18, -8.0047025680542], [30.0125, 103.009, -4.811601638793945], [35.763, 115.031, -18.456552505493164], [24.3158, 109.4839, -1.8822917938232422], [22.9477, 113.352, 1.8038270473480225], [36.6525, 119.1638, -9.581459045410156], [28.2325, 113.0833, -15.774673461914062], [29.7228, 106.626, -11.650094985961914], [36.39, 120.47, -6.526691913604736], [37.7124, 112.469, -20.976436614990234], [29.3411, 104.7692, -7.2390971183776855], [39.79777778, 98.26722222, 4.145443439483643], [29.7048, 115.9581, -16.57490348815918], [39.5986, 109.7736, -12.044827461242676], [39.7711, 98.2908, 4.1324076652526855], [31.874, 120.526, -5.476551532745361], [23.3633, 116.7244, 2.1199615001678467], [22.5931, 113.0819, 3.0426368713378906], [32.41, 119.404, -7.7674784660339355], [35.7289, 107.6831, -19.31522560119629], [43.8694, 125.325, -6.587756156921387], [25.0405, 102.722, 4.597341060638428], [39.5178, 116.6838, -11.367746353149414], [33.5979, 114.6546, -17.83860969543457], [22.9169, 112.0392, 1.6765111684799194], [34.6869, 112.4664, -19.559207916259766], [30.9414, 117.8178, -12.998567581176758], [43.9317, 116.1042, -4.084170341491699], [32.0903, 112.2106, -20.080482482910156], [42.0486, 121.6592, -5.355350971221924], [41.615, 120.3939, -4.925976753234863], [40.8033, 111.658, -8.817456245422363], [31.7897, 119.8914, -6.470059394836426], [31.909, 120.237, -5.9079084396362305], [32.1083, 118.803, -9.530224800109863], [30.8596, 120.1844, -5.8019232749938965], [31.1167, 104.4053, -9.467389106750488], [30.7819, 111.3296, -20.701404571533203], [28.9583, 105.4306, -7.740638256072998], [38.85611111, 121.5180556, -5.514350414276123], [23.1323, 113.3208, 1.0929169654846191], [31.7618, 116.478, -16.180152893066406], [29.7736, 121.633, -4.152432441711426], [39.8261, 109.9486, -11.28722858428955], [38.8957, 115.5223, -15.364859580993652], [32.215, 119.491, -7.4636125564575195], [27.8528, 113.13, -14.686925888061523], [32.105, 118.907, -9.15410041809082], [26.0797, 119.268, -2.7655928134918213], [33.975, 116.8008, -15.243410110473633], [26.6266, 106.6243, -4.564714431762695], [23.105, 113.433, 1.2349071502685547], [30.3058, 120.348, -5.466460704803467], [22.9539, 112.0539, 1.5281705856323242], [31.4846, 92.0657, 8.135831832885742], [31.6928, 118.48, -10.636555671691895], [27.9939, 120.677, -4.045172691345215], [34.2713, 108.954, -21.96238136291504], [41.1953, 123.2, -5.7828264236450195], [34.2749, 108.882, -21.961708068847656], [30.1819, 120.27, -5.534684658050537], [22.5211, 113.3769, 3.290503978729248], [36.864, 118.78, -10.665739059448242], [21.9667, 108.6236, 6.071245193481445], [33.3681, 120.1631, -6.563777446746826], [31.4656, 104.6717, -10.53986644744873], [37.739, 115.6906, -17.261831283569336], [36.2126, 113.0886, -20.575395584106445], [39.5989, 109.8119, -12.12492847442627], [24.506, 117.7116, -0.496779203414917], [40.7378, 107.3715, -2.681406021118164], [34.7187, 113.727, -18.724689483642578], [30.6872, 104.176, -8.277252197265625], [27.583, 110.0394, -12.001090049743652], [31.9438, 117.266, -14.674022674560547], [38.4928, 112.7003, -19.789268493652344], [31.3839, 118.4022, -10.89202880859375], [38.4519, 112.7383, -19.88237190246582], [26.1092, 119.299, -2.785440444946289], [34.7745, 113.641, -18.80901527404785], [46.5888, 131.1572, -6.36094331741333], [30.4663, 106.6271, -12.939841270446777], [31.4189, 118.37, -11.017402648925781], [30.6539, 117.4974, -13.917278289794922], [26.8576, 100.2143, 4.2735137939453125], [30.6617, 117.4697, -13.981584548950195], [37.7575, 115.6951, -17.231130599975586], [23.415, 111.2353, -0.15671944618225098], [28.0167, 120.671, -4.083178520202637], [30.9222, 117.8078, -13.029999732971191], [38.9108, 115.4713, -15.41414737701416], [32.6494, 110.78, -20.75470542907715], [28.0797, 116.2239, -13.373329162597656], [34.3017, 107.0708, -19.592660903930664], [40.1269, 113.2661, -13.423783302307129], [36.7731, 119.1939, -9.395133018493652], [47.2988, 123.945, -6.080580711364746], [28.095, 116.9622, -11.864670753479004], [26.6946, 119.5001, -3.7643885612487793], [27.8728, 112.8937, -14.655399322509766], [23.6936, 113.0425, -1.145588994026184], [36.799, 119.976, -7.281713008880615], [35.4883, 112.8564, -19.99612045288086], [27.8408, 102.2714, -0.07221011072397232], [30.5514, 114.2511, -19.234737396240234], [42.0228, 121.6722, -5.348942756652832], [31.172, 120.658, -5.2407050132751465], [32.996, 113.996, -18.502647399902344], [32.1319, 119.43, -7.581885814666748], [31.1907, 121.703, -4.372047424316406], [41.0931, 123.011, -5.7135820388793945], [37.4664, 116.3061, -16.181888580322266], [25.8664, 114.9367, -8.30611515045166], [32.3878, 119.46, -7.605798244476318], [35.4234, 119.5198, -8.784807205200195], [36.5776, 114.5035, -19.650714874267578], [22.8464, 108.239, 3.5721051692962646], [42.9061, 129.5042, -7.046893119812012], [30.2352, 115.0625, -18.32813262939453], [27.8953, 102.2311, -0.11317125707864761], [40.9923, 113.1306, -8.745797157287598], [31.85805556, 106.7619444, -15.899433135986328], [24.441, 98.578, 8.96855640411377], [41.3283, 123.8436, -6.044619083404541], [22.7422, 114.5317, 2.9096319675445557], [27.5444, 109.9453, -11.807435989379883], [25.5811, 100.2171, 6.262135982513428], [26.53111111, 107.8908333, -6.324608325958252], [39.5371, 75.9828, 16.09017562866211], [39.6969, 106.8089, -4.62140417098999], [35.4178, 119.4641, -8.943574905395508], [33.38256667, 104.9338889, -12.8798828125], [45.6842, 126.6206, -6.571228504180908], [40.5905, 110.0067, -7.281391620635986], [29.1242, 110.4697, -15.806791305541992], [30.9892, 112.1969, -20.503856658935547], [35.272, 113.884, -19.038190841674805], [41.1933, 80.2956, 12.178384780883789], [39.8745, 116.434, -10.715936660766602], [37.8195, 112.57, -20.88284683227539], [29.53675, 106.4959, -11.061585426330566], [43.941, 81.3364, 11.22499942779541], [31.9108, 119.905, -6.482729434967041], [27.7758, 115.0586, -14.131820678710938], [30.9219, 117.8561, -12.871709823608398], [30.1259, 104.6294, -8.398736953735352], [31.0935, 120.978, -4.917420864105225], [37.8792, 113.4922, -20.595735549926758], [26.5747, 107.9783, -6.578511714935303], [35.235, 113.261, -19.447519302368164], [24.4072, 111.5622, -3.486142158508301], [31.9025, 102.2218, -5.961562633514404], [37.3617, 118.0018, -12.313882827758789], [43.4569, 87.4651, 7.961777687072754], [26.5928, 101.5769, 3.155568838119507], [45.7733, 126.689, -6.56249475479126], [28.6428, 112.4067, -16.404226303100586], [34.402, 115.6578, -16.927766799926758], [45.7677, 131.0032, -6.616087913513184], [31.1208, 104.4219, -9.513654708862305], [27.7842, 114.3953, -14.50953483581543], [27.9747, 120.76, -3.894935131072998], [31.4, 119.46, -7.328537940979004], [28.6844, 115.931, -15.304703712463379], [37.161, 122.41, -5.1570658683776855], [27.7297, 109.1916, -11.433716773986816], [22.0225, 100.8017, 10.507887840270996], [29.6453, 106.562, -11.39543342590332], [22.8322, 100.9817, 9.745386123657227], [44.5462, 129.6386, -6.979333877563477], [30.65638889, 104.0238889, -7.868838787078857], [36.1031, 103.631, -6.020339488983154], [26.2331, 111.6236, -9.693556785583496], [26.8956, 112.6211, -12.123542785644531], [41.3047, 123.7308, -5.986064434051514], [40.8725, 114.904, -8.752697944641113], [43.8167, 125.25, -6.5776214599609375], [40.9359, 117.963, -5.216119766235352], [27.9119, 112.9074, -14.776798248291016], [41.0112, 117.9384, -5.107793807983398], [32.4611, 119.9219, -6.640726089477539], [35.5294, 106.7039, -16.915239334106445], [29.5947, 105.0717, -8.178339958190918], [35.546, 112.8453, -20.05499839782715], [30.3175, 112.2551, -20.244956970214844], [39.6679, 118.2185, -7.664797782897949], [31.737, 119.579, -7.105897426605225], [50.4269, 124.1186, -4.917855739593506], [32.6939, 109.0281, -21.34042739868164], [32.935, 117.3086, -14.534154891967773], [32.645, 117.0083, -15.200955390930176], [27.7019, 106.9242, -7.875753402709961], [30.5494, 114.3006, -19.194162368774414], [32.0572, 118.749, -9.714371681213379], [46.6219, 124.8648, -6.2502946853637695], [34.407, 115.6386, -16.949819564819336], [34.5021, 109.4266, -21.889432907104492], [26.6761, 118.0966, -5.985594272613525], [29.8539, 114.2894, -18.949560165405273], [39.746, 98.509, 4.027131080627441], [29.5844, 103.7627, -5.548933982849121], [24.5157, 117.6569, -0.5897135734558105], [28.2189, 112.8872, -15.648489952087402], [36.0783, 111.5531, -21.51017951965332], [35.5461, 106.6692, -16.77400016784668], [40.0917, 113.3444, -13.560498237609863], [29.8906, 121.554, -4.234349727630615], [31.6861, 118.5058, -10.53968620300293], [29.8208, 121.56, -4.205325603485107], [34.3474, 108.935, -21.98641586303711], [28.1442, 112.9956, -15.499452590942383], [37.7019, 112.7549, -20.96129608154297], [38.9467, 100.4686, 2.0360023975372314], [30.4183, 120.301, -5.542167663574219], [23.7208, 109.2131, -0.012688139453530312], [31.8711, 106.7389, -15.875211715698242], [28.2403, 117.0281, -12.09945297241211], [23.0944, 109.6014, 1.6579296588897705], [35.248889, 115.42277, -17.65089988708496], [26.0931, 119.58, -2.3431379795074463], [22.8225, 108.321, 3.565378189086914], [23.0672, 109.6042, 1.7493278980255127], [27.9958, 113.1817, -15.141486167907715], [30.7856, 106.1064, -12.420990943908691], [30.8064, 106.056, -12.35317611694336], [27.2582, 111.4908, -12.467336654663086], [43.9404, 81.2815, 11.261695861816406], [34.5885, 119.176, -9.461483001708984], [38.4975, 106.2328, -7.0547661781311035], [41.9228, 123.3783, -6.087955474853516], [33.6128, 114.6613, -17.830434799194336], [34.8731, 108.9589, -22.064250946044922], [32.0092, 118.737, -9.745058059692383], [39.2474, 117.7918, -9.652756690979004], [25.7759, 113.0348, -8.433018684387207], [29.9834, 103.0109, -4.759641170501709], [39.9934, 116.315, -10.509749412536621], [34.3956, 108.7197, -21.99098014831543], [27.8978, 102.2625, -0.15916429460048676], [31.3178, 118.3708, -11.01601791381836], [46.7975, 130.3258, -6.382340908050537], [26.2625, 117.6211, -5.7502760887146], [31.5848, 120.354, -5.669117450714111], [30.2028, 115.0767, -18.30314064025879], [29.7292, 115.988, -16.5441951751709], [21.6669, 110.9067, 5.7888312339782715], [30.1142, 104.6469, -8.41136646270752], [37.809, 120.773, -5.714369773864746], [27.8317, 99.7056, 3.278020143508911], [30.9742, 118.7386, -9.652438163757324], [34.864, 117.5564, -13.913630485534668], [32.1883, 119.68, -7.062222003936768], [45.305, 130.9817, -6.743086814880371], [49.1577, 119.7512, -4.853176116943359], [30.3055, 112.2887, -20.22825050354004], [36.5458, 104.1731, -6.346394062042236], [40.6511, 122.215, -5.466331481933594], [44.2967, 86.0497, 8.665600776672363], [34.2911, 117.244, -14.469200134277344], [28.7989, 104.6789, -5.998236656188965], [37.4294, 122.1206, -5.20902681350708], [23.7369, 109.2317, -0.07208870351314545], [36.1417, 106.2319, -13.935074806213379], [31.7386, 117.278, -14.60558032989502], [48.4658, 129.4942, -5.888050556182861], [45.2924, 130.962, -6.748101711273193], [40.715, 120.8478, -5.262039661407471], [33.3947, 120.225, -6.490212917327881], [40.6575, 109.8104, -6.587972164154053], [38.86388889, 121.625, -5.530761241912842], [35.0573, 118.3418, -11.902098655700684], [41.7775, 123.478, -6.067221164703369], [31.2058, 107.4611, -16.001436233520508], [28.6047, 112.3347, -16.235790252685547], [41.2736, 123.1761, -5.780955791473389], [36.0464, 103.831, -6.438011169433594], [34.3274, 109.043, -21.963685989379883], [37.9648, 106.1532, -8.459489822387695], [36.1851, 120.3905, -6.678936958312988], [36.6028, 109.4761, -20.755266189575195], [29.5467, 103.7705, -5.496635913848877], [50.4217, 124.1303, -4.921097278594971], [22.7019, 110.1106, 2.852100372314453], [31.955, 119.18, -8.222750663757324], [39.1082, 117.237, -11.251068115234375], [24.2654, 116.1248, -1.309005856513977], [30.2756, 118.1371, -11.652369499206543], [33.567, 114.056, -18.278430938720703], [27.8014, 114.3806, -14.550005912780762], [29.36028, 104.7778, -7.287917613983154], [26.57098, 101.68912, 3.0267369747161865], [23.6706, 116.6447, 1.2168943881988525], [32.1142, 112.1825, -20.090253829956055], [41.8336, 123.542, -6.123256206512451], [30.2099, 115.0264, -18.372201919555664], [34.3528, 107.3906, -20.317331314086914], [25.3167, 110.4144, -5.37945556640625], [27.9164, 112.4876, -14.57131576538086], [39.1067, 117.1941, -11.353261947631836], [25.442, 119.0156, -1.5800307989120483], [40.8115, 114.8814, -9.038169860839844], [29.9919, 120.605, -5.062985420227051], [23.1572, 112.885, 0.885480523109436], [37.9097, 114.3541, -19.73855972290039], [34.5004, 109.5049, -21.852130889892578], [33.737, 113.182, -18.811264038085938], [38.44139, 106.2275, -7.2106194496154785], [27.8381, 113.143, -14.646330833435059], [31.2703, 120.613, -5.306397914886475], [22.3708, 107.3701, 5.851294994354248], [36.1942, 117.1436, -14.738297462463379], [26.6272, 118.1756, -5.755456924438477], [33.1842, 106.9893, -18.82196617126465], [26.5697, 106.7164, -4.571575164794922], [29.5953, 105.0331, -8.110483169555664], [39.6719, 106.8219, -4.720267295837402], [31.8934, 102.2402, -5.9863505363464355], [30.1506, 104.6356, -8.461379051208496], [36.6739, 117.114, -14.685135841369629], [30.0475, 101.9603, -3.0386693477630615], [40.6532, 109.8756, -6.731126308441162], [23.01277778, 113.7944444, 1.7514739036560059], [30.8244, 120.07, -5.973110675811768], [45.6033, 84.8861, 9.129796028137207], [22.8693, 112.844, 1.9558463096618652], [36.1758, 117.1081, -14.820935249328613], [33.8399, 115.8067, -16.694162368774414], [43.768, 87.6046, 7.91105842590332], [22.2294, 113.495, 4.064781188964844], [26.8919, 112.6006, -12.106547355651855], [27.8036, 114.3442, -14.564068794250488], [45.61, 126.615, -6.583767890930176], [33.965, 118.283, -11.869670867919922], [31.56, 120.294, -5.762021541595459], [34.7545, 113.681, -18.772808074951172], [30.2819, 109.4689, -17.444442749023438], [32.6028, 116.8556, -15.46458911895752], [43.8667, 125.417, -6.600875377655029], [22.8172, 114.3244, 2.6478044986724854], [29.2786, 117.1983, -13.690397262573242], [35.259, 113.1992, -19.517070770263672], [41.8828, 123.9169, -6.266972064971924], [32.9444, 117.3575, -14.427103042602539], [27.9883, 116.3553, -12.862069129943848], [38.843, 105.6975, -4.86405086517334], [39.3673, 112.4279, -16.75055694580078], [34.5667, 117.732, -13.48447322845459], [41.1636, 80.2828, 12.191306114196777], [33.575, 119.007, -9.561850547790527], [24.9624, 102.625, 4.8923492431640625], [32.0144, 118.777, -9.593950271606445], [43.84, 125.2786, -6.582502841949463], [34.3617, 108.7233, -21.98365592956543], [39.9419, 119.5369, -5.570333003997803], [38.2839, 109.7289, -16.81735610961914], [39.643, 118.144, -7.889660358428955], [31.381, 120.999, -4.869312763214111], [38.9194, 117.157, -11.847599029541016], [31.882, 120.55, -5.446289539337158], [32.2786, 118.3244, -11.480247497558594], [33.0323, 107.007, -18.691146850585938], [22.7906, 108.439, 3.550408124923706], [38.1398, 114.5019, -19.202613830566406], [44.561, 129.61, -6.976394176483154], [30.8388, 106.1087, -12.491753578186035], [31.2472, 120.561, -5.370237827301025], [29.8264, 106.424, -11.438966751098633], [30.9447, 118.7581, -9.58078384399414], [41.1442, 123.0485, -5.729500770568848], [22.4137, 107.3476, 5.760251522064209], [27.6178, 113.865, -14.173089027404785], [24.4175, 111.5269, -3.4997212886810303], [43.7256, 126.6772, -6.760359287261963], [22.8561, 108.316, 3.467479705810547], [37.177, 119.941, -7.162731170654297], [26.2378, 117.6028, -5.715117931365967], [43.9167, 125.323, -6.5848069190979], [36.6377, 117.9544, -12.887958526611328], [23.2783, 113.568, 0.6241119503974915], [24.8978, 118.5972, -0.6901558041572571], [32.9673, 117.3536, -14.429247856140137], [34.7745, 117.5852, -13.849470138549805], [25.2178, 110.2869, -4.9671244621276855], [43.8358, 126.5844, -6.728359222412109], [36.1855, 113.0844444, -20.554027557373047], [24.6967, 108.1009, -1.4839982986450195], [30.4519, 114.8858, -18.617685317993164], [31.2036, 121.478, -4.512197971343994], [24.3702, 102.5389, 5.991785526275635], [37.8561, 113.5922, -20.552318572998047], [34.3708, 107.1586, -19.780864715576172], [34.3547, 107.1431, -19.750438690185547], [31.238, 121.4, -4.56687068939209], [41.9086, 123.5953, -6.1741509437561035], [33.0014, 97.0, 2.0635249614715576], [41.7561, 123.535, -6.082089900970459], [23.9011, 106.6103, 2.0343422889709473], [36.7339, 119.0841, -9.785313606262207], [36.0875, 111.5025, -21.54079246520996], [25.8333, 114.9322, -8.199820518493652], [31.89708, 121.1518, -4.8006272315979], [23.8982, 100.0782, 8.817680358886719], [33.3261, 105.0822, -13.311430931091309], [29.7128, 118.3057, -10.425530433654785], [44.0114, 87.2997, 8.069644927978516], [45.7258, 126.646, -6.566544532775879], [28.4569, 118.0058, -9.68557357788086], [22.5908, 114.263, 3.248849630355835], [23.7233, 114.6892, -0.446422815322876], [35.0147, 110.9956, -21.072256088256836], [38.8394, 117.457, -11.334183692932129], [30.7946, 120.744, -5.1142191886901855], [22.735, 108.328, 3.826998472213745], [27.3125, 105.2864, -3.9209351539611816], [32.6389, 110.7258, -20.791645050048828], [37.4489, 116.3189, -16.167179107666016], [23.08, 114.4053, 1.8305613994598389], [28.6459, 121.273, -4.092379570007324], [39.7153, 76.1861, 15.854104042053223], [30.4576, 106.6303, -12.931828498840332], [33.6284, 116.9677, -14.976574897766113], [22.7833, 108.244, 3.753546953201294], [22.5811, 113.074, 3.077159881591797], [37.0967, 114.4821, -19.827125549316406], [30.6197, 114.2836, -19.21265411376953], [44.3336, 84.8983, 9.184972763061523], [36.1542, 113.1097, -20.509403228759766], [30.2456, 120.127, -5.757390975952148], [29.6219, 106.65, -11.51923942565918], [38.8343, 105.6775, -4.845616340637207], [24.428, 98.5842, 8.977986335754395], [25.0661, 117.0256, -3.1607110500335693], [38.5247, 102.1878, -0.8138175010681152], [28.5819, 112.3744, -16.198251724243164], [31.656, 120.734, -5.198715686798096], [36.3083, 120.1964, -7.007519721984863], [24.9617, 118.6108, -0.839920163154602], [41.0228, 123.1289, -5.7438483238220215], [31.1278, 97.1804, 2.9439687728881836], [36.792, 119.952, -7.335430145263672], [23.4168, 103.386, 7.0868096351623535], [42.2725, 118.9572, -4.3599958419799805], [29.5983, 106.296, -10.776562690734863], [36.087, 114.358, -19.436012268066406], [36.283, 120.008, -7.419974327087402], [40.1461, 124.3933, -5.927035808563232], [25.0836, 102.728, 4.497589111328125], [41.8472, 123.428, -6.072813987731934], [29.9972, 101.9533, -2.9440243244171143], [27.8336, 113.251, -14.661223411560059], [30.4551, 106.6388, -12.944783210754395], [41.1556, 122.0247, -5.331157207489014], [26.5689, 106.6971, -4.534328937530518], [39.9522, 116.434, -10.417167663574219], [41.7089, 123.439, -6.037037372589111], [37.9358, 102.6469, -2.32625150680542], [24.7121, 108.2134, -1.6350926160812378], [31.7133, 118.6439, -10.039788246154785], [40.1194, 124.3678, -5.913740158081055], [38.817, 106.3394, -6.350635051727295], [35.303, 113.883, -19.061790466308594], [37.4658, 118.5019, -10.816160202026367], [30.7636, 106.0642, -12.31369400024414], [32.4535, 105.8945, -14.647942543029785], [38.5061, 102.1708, -0.8249186277389526], [35.5102, 102.0199, -4.835798263549805], [38.8632, 115.493, -15.511920928955078], [31.87888889, 106.7513889, -15.918252944946289], [25.8481, 114.9461, -8.238987922668457], [31.92, 120.268, -5.8611555099487305], [26.585, 101.7169, 2.961426019668579], [36.2092, 117.7181, -13.435968399047852], [43.8228, 126.4978, -6.728914260864258], [35.0896, 118.4023, -11.755633354187012], [28.76389, 104.6417, -5.85022497177124], [22.7633, 100.98, 9.818869590759277], [28.7867, 104.6061, -5.824202537536621], [42.9559, 89.1673, 7.155246734619141], [31.7039, 119.935, -6.368335247039795], [23.1422, 113.235, 1.0306652784347534], [30.9075, 113.942, -19.36348533630371], [37.5436, 121.3181, -5.398118019104004], [31.2864, 120.628, -5.2887396812438965], [37.9723, 106.196, -8.567965507507324], [27.0983, 115.0075, -12.331958770751953], [34.5101, 109.5293, -21.843822479248047], [24.81805556, 118.1569444, -0.999143123626709], [36.6489, 116.943, -15.082572937011719], [25.8226, 113.0116, -8.595476150512695], [36.0756, 103.712, -6.194965839385986], [28.2642, 117.0564, -12.08752155303955], [31.453, 121.115, -4.762348651885986], [40.7514, 120.8392, -5.250168323516846], [36.2403, 120.4001, -6.658646106719971], [29.8686, 114.3372, -18.919408798217773], [22.75, 114.085, 2.773515224456787], [40.8062, 111.7277, -8.888440132141113], [25.1081, 99.1678, 7.762457847595215], [25.2697, 110.2819, -5.116366386413574], [28.6969, 115.973, -15.268572807312012], [28.2558, 109.6414, -13.08061408996582], [39.1495, 117.3916, -10.809389114379883], [33.9461, 116.7844, -15.273128509521484], [28.3169, 109.7325, -13.327618598937988], [46.8267, 130.3961, -6.373034477233887], [37.5136, 111.1297, -20.91539764404297], [40.1438, 116.72, -9.198585510253906], [29.8211, 114.3231, -18.896543502807617], [47.3227, 123.9483, -6.074245452880859], [29.2956, 117.2461, -13.58843994140625], [29.3864, 117.3097, -13.58129596710205], [28.6064, 115.9083, -15.160228729248047], [36.061, 114.483, -19.260772705078125], [28.4622, 117.9511, -9.858511924743652], [29.4892, 106.634, -11.236093521118164], [34.4714, 100.2561, -3.2007102966308594], [39.6295, 118.1997, -7.803213119506836], [36.1942, 117.0881, -14.863338470458984], [41.2553, 123.15, -5.7726850509643555], [30.9285, 113.9153, -19.376453399658203], [21.8586, 111.9786, 5.077002048492432], [24.299, 109.4221, -1.7805230617523193], [27.7914, 114.3703, -14.531291961669922], [39.2133, 117.1837, -11.128164291381836], [29.6816, 115.9872, -16.51627540588379], [26.9089, 112.5328, -12.12559700012207], [44.9079, 82.0485, 10.747786521911621], [36.1912, 113.1569, -20.51039695739746], [35.7067, 107.6364, -19.252559661865234], [29.6292, 91.0834, 8.851902961730957], [36.1939, 113.0972, -20.552955627441406], [34.8019, 113.675, -18.808860778808594], [40.9161, 117.9664, -5.24838399887085], [24.3694, 102.5778, 5.9588446617126465], [23.1331, 113.26, 1.0721086263656616], [37.1013, 79.9117, 13.49074649810791], [41.7192, 86.2022, 8.543353080749512], [26.2708, 117.6353, -5.749931335449219], [28.9404, 118.871, -7.946216583251953], [23.7106, 113.0208, -1.2185055017471313], [36.2403, 120.6659, -6.2593512535095215], [22.7267, 114.24, 2.8743152618408203], [34.7975, 114.3733, -18.38250732421875], [40.0181, 119.7624, -5.443439483642578], [40.5546, 110.0377, -7.519699573516846], [28.4586, 119.93, -5.560055255889893], [36.67, 116.93, -15.105159759521484], [34.7781, 114.3389, -18.395431518554688], [30.89556, 120.0875, -5.96646785736084], [41.7511, 86.1461, 8.573463439941406], [47.8515, 88.1267, 7.451562881469727], [24.9117, 118.5819, -0.7428245544433594], [23.5486, 116.3242, 1.3688392639160156], [37.8694, 113.5689, -20.556032180786133], [27.7044, 111.9892, -13.739945411682129], [40.1114, 113.2803, -13.489376068115234], [39.3606, 112.4549, -16.797473907470703], [45.6289, 122.8444, -5.96333122253418], [27.6231, 113.8447, -14.186633110046387], [28.4514, 119.914, -5.579968452453613], [29.6475, 91.0874, 8.852383613586426], [34.2303, 108.883, -21.9592227935791], [29.4251, 113.1493, -18.6253604888916], [38.3344, 109.7414, -16.6917724609375], [43.8711, 87.5525, 7.941466331481934], [38.9389, 100.4497, 2.047417163848877], [37.68277778, 112.7194444, -20.978275299072266], [39.1292, 106.7096, -6.237462997436523], [34.1781, 117.1694, -14.589444160461426], [46.0756, 121.9462, -5.828719139099121], [37.85, 113.5158, -20.60976791381836], [31.7712, 116.5661, -16.0504093170166], [39.3514, 112.44, -16.828927993774414], [27.6486, 106.8906, -7.689014434814453], [41.1219, 121.2008, -5.213281631469727], [44.5782, 129.6115, -6.973930835723877], [29.709, 106.452, -11.297202110290527], [23.06, 113.7480556, 1.546100378036499], [23.1886, 112.863, 0.7513265609741211], [41.7347, 123.2444, -5.962934494018555], [21.2567, 110.4558, 6.8505635261535645], [27.3361, 103.7225, -1.3917533159255981], [37.9311, 102.6219, -2.307584047317505], [33.6406, 114.6369, -17.847307205200195], [31.8572, 117.25, -14.69078540802002], [35.5975, 104.6169, -9.470523834228516], [42.8947, 125.1358, -6.501175403594971], [29.2313, 91.7608, 8.844522476196289], [39.5343, 116.7464, -11.180665969848633], [40.7094, 122.2703, -5.461369037628174], [43.1594, 124.3711, -6.412046909332275], [30.6414, 114.2131, -19.260526657104492], [36.44, 120.61, -6.295846462249756], [29.4892, 106.468, -10.912013053894043], [28.9703, 111.6975, -16.69169807434082], [38.0108, 112.434, -20.660526275634766], [31.4867, 120.269, -5.793191909790039], [34.429, 115.6558, -16.943798065185547], [38.01777778, 114.5330556, -19.320068359375], [44.3075, 86.0697, 8.65604019165039], [27.9647, 116.385, -12.757457733154297], [30.2043, 114.8949, -18.538021087646484], [29.3678, 113.1772, -18.482179641723633], [29.1128, 119.6533, -6.134947299957275], [25.9118, 114.9064, -8.478196144104004], [26.0392, 119.303, -2.617107391357422], [23.1569, 113.281, 0.9888865947723389], [45.5422, 126.979, -6.637026309967041], [37.7394, 112.5583, -20.95387840270996], [28.6542, 121.419, -3.9579014778137207], [26.5939, 104.89, -1.7353492975234985], [41.8625, 124.0383, -6.287735939025879], [35.7511, 114.2956, -19.183212280273438], [31.7586, 119.996, -6.275539398193359], [38.8516, 105.724, -4.896329879760742], [36.6868, 117.0684, -14.783744812011719], [26.0753, 119.315, -2.6820921897888184], [39.9716, 116.473, -10.265275001525879], [46.7432, 82.9994, 10.16681957244873], [32.41361, 119.458, -7.626194477081299], [38.8416, 115.4612, -15.631327629089355], [30.5489, 117.0486, -14.90178394317627], [27.4948, 114.0944, -13.885235786437988], [27.8867, 113.095, -14.777134895324707], [23.0528, 112.471, 1.187456488609314], [26.8733, 112.6197, -12.065237045288086], [35.4894, 112.8664, -19.991472244262695], [47.2753, 130.261, -6.27963924407959], [23.8844, 106.6527, 2.032498836517334], [40.7866, 111.551, -8.767884254455566], [43.6267, 122.2603, -5.9553327560424805], [36.10139, 111.505, -21.545080184936523], [28.56, 112.3439, -16.1177978515625], [45.7319, 126.685, -6.569654941558838], [40.0844, 113.2711, -13.613175392150879], [37.4014, 121.5992, -5.273165225982666], [30.6133, 105.68, -11.336338996887207], [30.7478, 120.726, -5.124767780303955], [28.1178, 112.9844, -15.415999412536621], [28.7994, 115.742, -15.809303283691406], [25.067, 102.681, 4.597659587860107], [32.0005, 120.86, -5.110238075256348], [26.5017, 101.7453, 3.0662126541137695], [34.5814, 105.7281, -15.297289848327637], [43.91, 125.287, -6.579771041870117], [46.3991, 124.8847, -6.259790420532227], [31.8531, 106.7594, -15.883522987365723], [33.9528, 118.293, -11.83902645111084], [45.6175, 122.8211, -5.95912504196167], [19.9507, 110.576, 9.341994285583496], [23.4792, 111.2897, -0.41060182452201843], [32.1383, 114.0614, -18.787370681762695], [30.8023, 106.0789, -12.3909273147583], [34.2324, 108.94, -21.95909881591797], [36.11, 114.286, -19.543380737304688], [31.96, 120.913, -5.0452046394348145], [32.8928, 115.8275, -16.83710479736328], [31.7694, 120.0469, -6.190173149108887], [31.6842, 120.288, -5.79176664352417], [47.3636, 123.9305, -6.062885284423828], [28.7442, 115.813, -15.602558135986328], [23.2536, 116.4019, 2.2565042972564697], [23.4714, 116.7519, 1.860477328300476], [34.6511, 112.3939, -19.58883285522461], [35.0622, 118.2939, -12.024333953857422], [28.6839, 115.8886, -15.366950988769531], [41.8469, 123.81, -6.231955051422119], [24.3289, 116.1278, -1.5444843769073486], [34.3497, 107.2058, -19.897098541259766], [42.0352, 119.2654, -4.5102858543396], [31.0386, 112.2211, -20.48011589050293], [40.0758, 113.2994, -13.64486312866211], [36.61763, 114.5129, -19.653757095336914], [29.4822, 106.364, -10.67943000793457], [35.94, 104.148, -7.307514190673828], [27.2272, 111.4328, -12.357990264892578], [25.1328, 99.1711, 7.722255229949951], [40.6288, 109.8654, -6.828070163726807]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#bcde00&quot;, &quot;0.05&quot;: &quot;#bcde00&quot;, &quot;0.1&quot;: &quot;#bcde00&quot;, &quot;0.15&quot;: &quot;#bcde00&quot;, &quot;0.2&quot;: &quot;#bcde00&quot;, &quot;0.25&quot;: &quot;#bcde00&quot;, &quot;0.3&quot;: &quot;#bcde00&quot;, &quot;0.35&quot;: &quot;#bcde00&quot;, &quot;0.4&quot;: &quot;#bcde00&quot;, &quot;0.45&quot;: &quot;#bcde00&quot;, &quot;0.5&quot;: &quot;#bcde00&quot;, &quot;0.55&quot;: &quot;#bcde00&quot;, &quot;0.6&quot;: &quot;#bcde00&quot;, &quot;0.65&quot;: &quot;#bcde00&quot;, &quot;0.7&quot;: &quot;#bcde00&quot;, &quot;0.75&quot;: &quot;#bcde00&quot;, &quot;0.8&quot;: &quot;#bcde00&quot;, &quot;0.85&quot;: &quot;#bcde00&quot;, &quot;0.9&quot;: &quot;#e5f200&quot;, &quot;0.95&quot;: &quot;#e5f200&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_bc80bb7545b1aecf48180d674d5a6b84.addTo(map_94e76f641db25a232efa866d066411a9);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13a5594a030>\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('coef_dem', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"AOD\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {\n    \"id\": \"0D0DEF77DE994A8E82B96A6970CD69C0\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_c9f18c2ad3d5cb724708457ae5d7c30f {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_c9f18c2ad3d5cb724708457ae5d7c30f&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_c9f18c2ad3d5cb724708457ae5d7c30f = L.map(\\n\",\n       \"                &quot;map_c9f18c2ad3d5cb724708457ae5d7c30f&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_cdd1a95d0d16e09c16f3f88c102edfa7 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_cdd1a95d0d16e09c16f3f88c102edfa7.addTo(map_c9f18c2ad3d5cb724708457ae5d7c30f);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_1477d551b0144eba76eaa7515daa6884 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_1477d551b0144eba76eaa7515daa6884.color = d3.scale.threshold()\\n\",\n       \"              .domain([-14.426556587219238, -14.016499519348145, -13.60644245147705, -13.196385383605957, -12.786328315734863, -12.37627124786377, -11.966214179992676, -11.556157112121582, -11.146100997924805, -10.736043930053711, -10.325986862182617, -9.915929794311523, -9.50587272644043, -9.095815658569336, -8.685758590698242, -8.275701522827148, -7.865644454956055, -7.455587387084961, -7.045530319213867, -6.635472774505615, -6.22541618347168, -5.815359115600586, -5.405302047729492, -4.995244979858398, -4.585187911987305, -4.175130844116211, -3.7650747299194336, -3.3550167083740234, -2.9449596405029297, -2.5349035263061523, -2.124845504760742, -1.7147893905639648, -1.304732322692871, -0.8946743011474609, -0.4846181869506836, -0.07456016540527344, 0.3354959487915039, 0.7455530166625977, 1.1556110382080078, 1.5656671524047852, 1.975724220275879, 2.3857812881469727, 2.7958383560180664, 3.20589542388916, 3.615952491760254, 4.026009559631348, 4.436066627502441, 4.846123695373535, 5.256180763244629, 5.666237831115723, 6.076294898986816, 6.48635196685791, 6.896407127380371, 7.306466102600098, 7.716523170471191, 8.126578330993652, 8.536637306213379, 8.946694374084473, 9.356749534606934, 9.76680850982666, 10.176865577697754, 10.586920738220215, 10.996977806091309, 11.407036781311035, 11.817091941833496, 12.22714900970459, 12.637207984924316, 13.04726505279541, 13.457320213317871, 13.867377281188965, 14.277436256408691, 14.687491416931152, 15.097548484802246, 15.507607460021973, 15.917662620544434, 16.327720642089844, 16.737777709960938, 17.14783477783203, 17.557891845703125, 17.96794891357422, 18.378005981445312, 18.788066864013672, 19.1981201171875, 19.608177185058594, 20.018234252929688, 20.42829132080078, 20.838348388671875, 21.24840545654297, 21.658462524414062, 22.068519592285156, 22.47857666015625, 22.888633728027344, 23.298690795898438, 23.70874786376953, 24.118804931640625, 24.52886199951172, 24.938919067382812, 25.348976135253906, 25.759033203125, 26.169090270996094, 26.579147338867188, 26.989200592041016, 27.399261474609375, 27.80931854248047, 28.219371795654297, 28.629432678222656, 29.03948974609375, 29.449542999267578, 29.859603881835938, 30.26966094970703, 30.67971420288086, 31.08977508544922, 31.499832153320312, 31.90988540649414, 32.3199462890625, 32.730003356933594, 33.14005661010742, 33.55011749267578, 33.960174560546875, 34.3702278137207, 34.78028869628906, 35.19034194946289, 35.600399017333984, 36.010459899902344, 36.42051315307617, 36.830570220947266, 37.240631103515625, 37.65068435668945, 38.06074142456055, 38.470802307128906, 38.880855560302734, 39.29091262817383, 39.70097351074219, 40.111026763916016, 40.521087646484375, 40.93114471435547, 41.3411979675293, 41.751258850097656, 42.161312103271484, 42.57136917114258, 42.98143005371094, 43.391483306884766, 43.80154037475586, 44.21160125732422, 44.62165451049805, 45.03171157836914, 45.4417724609375, 45.85182571411133, 46.26188278198242, 46.67194366455078, 47.08199691772461, 47.4920539855957, 47.90211486816406, 48.31216812133789, 48.722225189208984, 49.132286071777344, 49.54233932495117, 49.952396392822266, 50.36245346069336, 50.77251052856445, 51.18256759643555, 51.59262466430664, 52.002689361572266, 52.41273880004883, 52.82279586791992, 53.232845306396484, 53.64291000366211, 54.0529670715332, 54.4630241394043, 54.87308120727539, 55.283138275146484, 55.69319534301758, 56.10325241088867, 56.513309478759766, 56.92336654663086, 57.33342361450195, 57.74348068237305, 58.15353775024414, 58.563594818115234, 58.97365188598633, 59.38370895385742, 59.793766021728516, 60.20382308959961, 60.6138801574707, 61.0239372253418, 61.43399429321289, 61.844051361083984, 62.25410842895508, 62.66416549682617, 63.074222564697266, 63.48427963256836, 63.89433670043945, 64.30438995361328, 64.71444702148438, 65.12450408935547, 65.53456115722656, 65.94461822509766, 66.35467529296875, 66.76473236083984, 67.17478942871094, 67.58484649658203, 67.99490356445312, 68.40495300292969, 68.81501770019531, 69.2250747680664, 69.63512420654297, 70.0451889038086, 70.45524597167969, 70.86529541015625, 71.27536010742188, 71.68541717529297, 72.09546661376953, 72.50553131103516, 72.91558837890625, 73.32563781738281, 73.73570251464844, 74.14575958251953, 74.5558090209961, 74.96587371826172, 75.37593078613281, 75.78598022460938, 76.196044921875, 76.6061019897461, 77.01615142822266, 77.42621612548828, 77.83627319335938, 78.24632263183594, 78.65638732910156, 79.06644439697266, 79.47649383544922, 79.88655853271484, 80.29661560058594, 80.7066650390625, 81.11672973632812, 81.52678680419922, 81.93683624267578, 82.3469009399414, 82.7569580078125, 83.16700744628906, 83.57706451416016, 83.98712921142578, 84.39717864990234, 84.80723571777344, 85.21730041503906, 85.62734985351562, 86.03740692138672, 86.44747161865234, 86.8575210571289, 87.267578125, 87.67764282226562, 88.08769226074219, 88.49774932861328, 88.9078140258789, 89.31786346435547, 89.72792053222656, 90.13798522949219, 90.54803466796875, 90.95809173583984, 91.36815643310547, 91.77820587158203, 92.18826293945312, 92.59832763671875, 93.00837707519531, 93.4184341430664, 93.82849884033203, 94.2385482788086, 94.64860534667969, 95.05867004394531, 95.4687271118164, 95.87877655029297, 96.2888412475586, 96.69889831542969, 97.10894775390625, 97.51901245117188, 97.92906951904297, 98.33911895751953, 98.74917602539062, 99.15924072265625, 99.56929016113281, 99.9793472290039, 100.38941192626953, 100.7994613647461, 101.20951843261719, 101.61958312988281, 102.02963256835938, 102.43968963623047, 102.8497543334961, 103.25980377197266, 103.66986083984375, 104.07992553710938, 104.48997497558594, 104.90003204345703, 105.31009674072266, 105.72014617919922, 106.13020324707031, 106.54026794433594, 106.9503173828125, 107.3603744506836, 107.77043914794922, 108.18048858642578, 108.59054565429688, 109.0006103515625, 109.41065979003906, 109.82071685791016, 110.23078155517578, 110.64083099365234, 111.05088806152344, 111.46095275878906, 111.87100219726562, 112.28105926513672, 112.69112396240234, 113.1011734008789, 113.51123046875, 113.92127990722656, 114.33134460449219, 114.74139404296875, 115.15145874023438, 115.5615234375, 115.97157287597656, 116.38162231445312, 116.79168701171875, 117.20173645019531, 117.61180114746094, 118.0218505859375, 118.43193054199219, 118.84197998046875, 119.25202941894531, 119.66209411621094, 120.0721435546875, 120.48219299316406, 120.89224243164062, 121.30232238769531, 121.71237182617188, 122.1224365234375, 122.53248596191406, 122.94253540039062, 123.35260009765625, 123.76266479492188, 124.17271423339844, 124.58277893066406, 124.99282836914062, 125.40287780761719, 125.81294250488281, 126.22300720214844, 126.633056640625, 127.04312133789062, 127.45317077636719, 127.86322021484375, 128.27328491210938, 128.683349609375, 129.09339904785156, 129.5034637451172, 129.91351318359375, 130.3235626220703, 130.73362731933594, 131.14369201660156, 131.55374145507812, 131.96380615234375, 132.3738555908203, 132.78390502929688, 133.1939697265625, 133.60403442382812, 134.0140838623047, 134.4241485595703, 134.83419799804688, 135.24424743652344, 135.65431213378906, 136.06436157226562, 136.47442626953125, 136.88449096679688, 137.29454040527344, 137.70458984375, 138.11465454101562, 138.5247039794922, 138.9347686767578, 139.34483337402344, 139.7548828125, 140.16493225097656, 140.5749969482422, 140.98504638671875, 141.39511108398438, 141.80517578125, 142.21522521972656, 142.62527465820312, 143.03533935546875, 143.4453887939453, 143.85545349121094, 144.26551818847656, 144.67556762695312, 145.0856170654297, 145.4956817626953, 145.90573120117188, 146.3157958984375, 146.72586059570312, 147.1359100341797, 147.54595947265625, 147.95602416992188, 148.36607360839844, 148.77613830566406, 149.1862030029297, 149.59625244140625, 150.0063018798828, 150.41636657714844, 150.826416015625, 151.23646545410156, 151.64654541015625, 152.0565948486328, 152.46664428710938, 152.876708984375, 153.28675842285156, 153.69680786132812, 154.1068878173828, 154.51693725585938, 154.92698669433594, 155.33705139160156, 155.74710083007812, 156.1571502685547, 156.56723022460938, 156.97727966308594, 157.3873291015625, 157.79739379882812, 158.2074432373047, 158.61749267578125, 159.02757263183594, 159.4376220703125, 159.84767150878906, 160.2577362060547, 160.66778564453125, 161.0778350830078, 161.4879150390625, 161.89796447753906, 162.30801391601562, 162.71807861328125, 163.1281280517578, 163.53817749023438, 163.94825744628906, 164.35830688476562, 164.7683563232422, 165.1784210205078, 165.58847045898438, 165.99851989746094, 166.40858459472656, 166.8186492919922, 167.22869873046875, 167.63876342773438, 168.04881286621094, 168.4588623046875, 168.86892700195312, 169.27899169921875, 169.6890411376953, 170.09910583496094, 170.5091552734375, 170.91920471191406, 171.3292694091797, 171.7393341064453, 172.14938354492188, 172.5594482421875, 172.96949768066406, 173.37954711914062, 173.78961181640625, 174.19967651367188, 174.60972595214844, 175.01979064941406, 175.42984008789062, 175.8398895263672, 176.2499542236328, 176.66001892089844, 177.070068359375, 177.48013305664062, 177.8901824951172, 178.30023193359375, 178.71029663085938, 179.120361328125, 179.53041076660156, 179.9404754638672, 180.35052490234375, 180.7605743408203, 181.17063903808594, 181.5806884765625, 181.99075317382812, 182.40081787109375, 182.8108673095703, 183.22091674804688, 183.6309814453125, 184.04103088378906, 184.4510955810547, 184.8611602783203, 185.27120971679688, 185.68125915527344, 186.09132385253906, 186.50137329101562, 186.91143798828125, 187.32150268554688, 187.73155212402344, 188.1416015625, 188.55166625976562, 188.9617156982422, 189.3717803955078, 189.78184509277344, 190.19189453125])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_1477d551b0144eba76eaa7515daa6884.x = d3.scale.linear()\\n\",\n       \"              .domain([-14.426556587219238, 190.19189453125])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_1477d551b0144eba76eaa7515daa6884.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_1477d551b0144eba76eaa7515daa6884.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_1477d551b0144eba76eaa7515daa6884.legend.addTo(map_c9f18c2ad3d5cb724708457ae5d7c30f);\\n\",\n       \"\\n\",\n       \"    color_map_1477d551b0144eba76eaa7515daa6884.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_1477d551b0144eba76eaa7515daa6884.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-14.426556587219238, &#x27;&#x27;, &#x27;&#x27;, 16.266212463378906, &#x27;&#x27;, &#x27;&#x27;, 46.958980560302734, &#x27;&#x27;, &#x27;&#x27;, 77.65174102783203, &#x27;&#x27;, &#x27;&#x27;, 108.34451293945312, &#x27;&#x27;, &#x27;&#x27;, 139.0372772216797, &#x27;&#x27;, &#x27;&#x27;, 169.73004150390625, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_1477d551b0144eba76eaa7515daa6884.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_1477d551b0144eba76eaa7515daa6884.g = color_map_1477d551b0144eba76eaa7515daa6884.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_1477d551b0144eba76eaa7515daa6884.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_1477d551b0144eba76eaa7515daa6884.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_1477d551b0144eba76eaa7515daa6884.x(color_map_1477d551b0144eba76eaa7515daa6884.color.domain()[i - 1]) : color_map_1477d551b0144eba76eaa7515daa6884.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_1477d551b0144eba76eaa7515daa6884.color.domain().length ? color_map_1477d551b0144eba76eaa7515daa6884.x(color_map_1477d551b0144eba76eaa7515daa6884.color.domain()[i]) : color_map_1477d551b0144eba76eaa7515daa6884.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_1477d551b0144eba76eaa7515daa6884.g.call(color_map_1477d551b0144eba76eaa7515daa6884.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_47ddc19bb62c65826ea08eb38397a0a8 = L.heatLayer(\\n\",\n       \"                [[22.7629, 113.257, 52.87438201904297], [22.6411, 110.1675, 48.257877349853516], [38.5339, 102.1725, 20.440210342407227], [23.6714, 116.6339, 57.9151611328125], [31.1956, 107.5069, -2.9412355422973633], [32.8603, 115.8556, 23.397296905517578], [23.0395, 113.105, 51.504486083984375], [31.371, 119.794, 78.39437866210938], [31.2797, 107.5272, -1.8897913694381714], [37.4967, 121.2611, 89.6656494140625], [27.7569, 111.9561, -6.753576278686523], [37.1152, 79.9485, 159.98875427246094], [28.6425, 115.892, 30.289766311645508], [39.0927, 117.202, 40.7627067565918], [29.5186, 106.54, -3.842745780944824], [30.2311, 119.6942, 72.41950225830078], [24.339, 102.5381, 53.08827209472656], [33.0069, 114.0131, 5.763998985290527], [37.0533, 114.5261, -9.031664848327637], [29.4758, 113.2621, 8.619460105895996], [26.3108, 117.7275, 56.422584533691406], [32.1403, 114.0122, 12.788248062133789], [21.2679, 110.3316, 55.0106086730957], [43.895, 81.2867, 165.99583435058594], [41.5931, 120.4439, 81.47358703613281], [39.5747, 116.7729, 41.57173156738281], [28.4303, 117.9033, 50.06345748901367], [38.885, 121.5638889, 91.31450653076172], [36.4343, 116.0072, -1.1934890747070312], [24.9424, 118.6663, 59.72050857543945], [37.9854, 112.549, 17.30889892578125], [36.6867, 101.524, 21.000774383544922], [45.0878, 124.8292, 82.4376449584961], [26.5917, 104.83, 34.610111236572266], [25.1035, 117.0216, 57.04685592651367], [31.955, 119.146, 76.27587127685547], [30.6145, 116.9894, 56.116065979003906], [35.0992, 117.4518, 29.228574752807617], [37.374, 120.399, 85.62247467041016], [43.85, 125.217, 79.66561889648438], [41.0971, 122.9642, 83.75135803222656], [41.0385, 113.1076, 34.083412170410156], [21.2706, 110.3539, 55.01930236816406], [47.3386, 123.9305, 91.26592254638672], [31.751, 119.579, 78.92115783691406], [32.7639, 116.8028, 37.84055709838867], [23.7569, 114.6778, 52.029518127441406], [38.2911, 109.7456, 51.96406936645508], [36.9639, 100.9048, 23.884845733642578], [47.9047, 88.1214, 147.4021453857422], [36.0417, 111.4917, 20.533336639404297], [29.3628, 104.7547, 17.28137969970703], [30.8811, 117.7442, 64.47197723388672], [26.6343, 106.7487, 17.868850708007812], [29.3547, 110.5594, -11.831391334533691], [32.3153, 118.3094, 64.04812622070312], [24.3406, 109.3886, 34.28740310668945], [34.2572, 109.06, 42.7120246887207], [27.8403, 112.9118, -2.0276689529418945], [35.4934, 112.835, -4.954571723937988], [27.8042, 114.9119, 16.295503616333008], [28.6869, 115.852, 30.114316940307617], [34.3672, 107.1906, 54.42344665527344], [29.8633, 121.586, 64.16341400146484], [37.4514, 105.0197, 22.02665901184082], [36.913, 121.531, 89.08965301513672], [38.0513, 114.4548, -0.5129222273826599], [37.8692, 112.5369, 16.308778762817383], [32.0197, 112.155, 12.417465209960938], [30.7525, 120.7844444, 73.59523010253906], [27.7231, 109.1794, -9.580597877502441], [39.0153, 106.3717, 22.324382781982422], [31.3508, 118.3528, 69.39356231689453], [23.0467, 113.144, 51.553550720214844], [23.1617, 112.565, 49.90580368041992], [34.7822, 111.19, 15.251860618591309], [29.077, 119.647, 63.90141677856445], [37.3753, 97.3731, 45.05946350097656], [23.3594, 104.2533, 51.414554595947266], [32.5714, 110.8839, 13.742104530334473], [46.6462, 131.1516, 107.8351058959961], [27.2944, 105.31, 25.30372428894043], [32.4639, 119.888, 80.36193084716797], [39.0845, 117.1589, 39.74851608276367], [37.4314, 118.6672, 54.99534606933594], [30.1366, 104.6617, 14.24055004119873], [31.3264, 120.596, 76.7499771118164], [36.6275, 109.4131, 59.9703369140625], [23.5538, 113.589, 50.2650260925293], [22.8054, 113.292, 52.7889518737793], [24.3898, 109.4883, 33.739501953125], [42.3022, 123.8139, 80.86048126220703], [27.1311, 114.99, 22.576011657714844], [40.9733, 117.8184, 74.875732421875], [40.7612, 111.717, 32.279380798339844], [31.2071, 121.577, 71.91934204101562], [36.253, 120.014, 78.42398834228516], [32.9917, 112.5192, 5.907430171966553], [28.3586, 112.9958, -3.7625770568847656], [29.2958, 117.2111, 53.199398040771484], [27.8072, 114.4011, 10.748697280883789], [47.203, 123.6261, 89.5967788696289], [39.3265, 112.4078, 31.556638717651367], [41.0833, 122.9481, 83.78507232666016], [34.2629, 108.993, 43.52277374267578], [45.5828, 84.8897, 151.2113800048828], [31.215, 107.525, -2.729196310043335], [39.16969, 117.2099, 42.26377868652344], [27.5342, 109.9792, -8.756561279296875], [38.4186, 112.7356, 19.438724517822266], [41.2692, 123.7989, 82.781005859375], [31.6411, 118.4828, 69.94271850585938], [39.4365, 75.9435, 190.19189453125], [28.9664, 118.871, 61.07316970825195], [23.1036, 109.5683, 45.2225227355957], [36.0822, 111.5169, 20.40568733215332], [36.885, 120.515, 85.87501525878906], [26.4214, 111.6156, 8.084365844726562], [34.719, 113.734, -8.601078033447266], [42.0186, 121.6561, 79.37062072753906], [30.63, 104.1113889, 20.033723831176758], [47.7222, 128.8736, 108.35213470458984], [41.7381, 125.9486, 81.98921966552734], [29.355, 113.2117, 6.922187328338623], [45.1642, 124.8528, 82.8616943359375], [34.7772, 111.1928, 15.168030738830566], [33.027, 112.5573, 5.5997209548950195], [42.2814, 118.9233, 73.45238494873047], [28.5773, 121.377, 57.724510192871094], [43.95305556, 126.4738889, 82.53177642822266], [32.6778, 109.0311, 19.986454010009766], [29.389, 106.513, -3.01800799369812], [32.6319, 116.8306, 39.26861572265625], [22.5978, 114.297, 55.51336669921875], [27.6869, 106.9222, 5.613017559051514], [32.0314, 118.803, 72.52789306640625], [29.1029, 119.686, 64.02989196777344], [33.581, 114.014, 0.787990391254425], [33.8561, 115.7831, 12.56592082977295], [28.2597, 112.9792, -3.8376870155334473], [43.7878, 125.454, 79.94786071777344], [36.6106, 109.5056, 59.05876541137695], [23.02777778, 113.7461111, 52.86306381225586], [28.6844, 115.893, 30.59861946105957], [33.9506, 118.3214, 52.47993850708008], [30.8217, 106.1031, -0.5832765102386475], [41.7128, 86.2381, 130.53565979003906], [23.1478, 109.5681, 44.89207077026367], [29.261, 91.7706, 90.38139343261719], [39.0877, 117.307, 42.866050720214844], [28.4231, 119.879, 59.399932861328125], [45.2978, 130.9298, 99.37370300292969], [27.725, 111.9975, -6.260788917541504], [31.2284, 121.533, 72.24466705322266], [41.1196, 123.044, 83.69060516357422], [42.8328, 93.4961, 85.16463470458984], [36.5819, 101.834, 19.71810531616211], [30.9697, 117.8472, 65.23621368408203], [40.0031, 116.407, 44.568634033203125], [36.881, 118.746, 53.82228088378906], [34.2761, 117.167, 30.115398406982422], [26.6029, 106.6856, 18.69806480407715], [35.7306, 114.2878, -11.66684627532959], [34.6258, 112.4275, -2.7784247398376465], [36.865, 120.537, 86.07002258300781], [30.5719, 114.3672, 23.98129653930664], [35.5051, 112.85, -5.047580242156982], [29.6588, 90.9798, 94.57408142089844], [32.3761, 119.389, 77.61305236816406], [36.2866, 100.6188, 25.35525894165039], [43.1747, 124.3419, 79.57583618164062], [39.8673, 116.366, 41.089786529541016], [40.8452, 111.659, 31.858884811401367], [29.2647, 117.1558, 52.22527313232422], [27.8614, 112.9433, -1.9387880563735962], [23.475, 111.3178, 45.12126541137695], [39.5453, 116.7022, 39.75696563720703], [28.5808, 112.3458, -7.600124359130859], [36.5336, 116.734, 10.66135311126709], [36.2289, 117.6789, 29.458707809448242], [23.65889, 116.6183, 57.8911018371582], [33.8997, 116.8067, 27.920948028564453], [23.7586, 114.6944, 52.075504302978516], [41.8417, 123.7117, 81.58629608154297], [29.6535, 116.0174, 42.18450927734375], [46.6384, 126.9934, 95.68748474121094], [41.2864, 123.7669, 82.76192474365234], [27.8244, 113.135, -0.277774840593338], [29.5822, 105.0406, 12.58517837524414], [29.6632, 94.3616, 75.26580810546875], [45.7667, 126.635, 90.6635513305664], [38.2478, 109.7336, 52.345733642578125], [34.5911, 119.1478, 64.22206115722656], [39.6407, 118.1853, 68.93617248535156], [26.5892, 104.8, 34.88269805908203], [31.354, 119.818, 78.34193420410156], [36.6622, 117.049, 16.88071060180664], [19.9969, 110.338, 56.596248626708984], [35.428, 116.6305, 12.37314510345459], [37.364, 120.394, 85.55074310302734], [26.0542, 119.389, 58.61967849731445], [31.155, 120.636, 76.0030517578125], [22.2281, 113.299, 54.5823860168457], [23.63444, 113.0472, 48.2625846862793], [23.3892, 104.2319, 51.352684020996094], [43.8748, 125.3649, 79.98589324951172], [31.03389, 112.1908, 13.87946891784668], [23.2775, 116.7258, 58.087284088134766], [35.4144, 116.5856, 11.786230087280273], [35.3962, 119.54, 69.27490234375], [40.1952, 116.23, 46.264041900634766], [29.3578, 113.1094, 6.055628776550293], [46.0347, 124.8354, 86.78857421875], [47.3382, 130.1097, 109.23876953125], [40.916, 107.5936, 21.19400405883789], [41.9339, 123.6836, 81.4064712524414], [22.96583333, 113.7383333, 53.07662582397461], [36.6872, 116.989, 15.708626747131348], [34.7538, 113.6356, -8.72539234161377], [31.7308, 113.3983, 14.264148712158203], [35.04388889, 111.0522222, 19.943193435668945], [35.9019, 114.17, -11.489418983459473], [27.5733, 109.9333, -9.14993667602539], [33.6347, 114.6758, 2.656240224838257], [32.1078, 114.1044, 13.38036823272705], [22.4853, 113.4411, 54.03120040893555], [43.8875, 126.555, 82.5389404296875], [33.6067, 118.989, 65.26911926269531], [29.5867, 115.9936, 41.39272689819336], [34.1978, 108.985, 42.646026611328125], [25.0311, 117.0151, 57.15419006347656], [27.11, 114.9739, 22.54861831665039], [30.21, 120.211, 71.88733673095703], [26.9258, 112.6194, 6.092622756958008], [46.7588, 130.3794, 106.37721252441406], [35.4813, 112.8252, -4.915602684020996], [39.9279, 116.225, 40.355430603027344], [34.3181, 108.6761, 47.79920196533203], [24.769519, 113.586606, 40.22954177856445], [30.5103, 117.0549, 57.24135971069336], [40.7579, 111.651, 32.225406646728516], [37.0964, 114.5331, -8.795927047729492], [49.2261, 119.7594, 96.01225280761719], [25.4792, 118.981, 59.286651611328125], [38.80805556, 121.2588889, 91.06849670410156], [28.2053, 113.0792, -2.8782413005828857], [40.8144, 111.608, 31.94354248046875], [42.8953, 125.1567, 80.3530044555664], [24.6928, 108.054, 32.25822448730469], [32.0878, 118.626, 69.8516845703125], [29.7207, 118.3236, 66.23615264892578], [36.838, 118.0448, 37.73105239868164], [29.9899, 103.0013, 34.05541229248047], [32.64600333, 117.0411667, 42.29720687866211], [22.6069, 113.104, 53.088783264160156], [22.805, 108.383, 46.63848876953125], [21.4689, 111.0286, 54.732051849365234], [21.6828, 110.8592, 53.63303756713867], [30.696, 111.268, 9.101339340209961], [22.5111, 113.4075, 53.89982223510742], [43.831, 87.6432, 129.0608673095703], [33.5653, 114.0322, 0.9692579507827759], [35.5714, 104.6228, 26.141128540039062], [26.6607, 119.5202, 58.25446319580078], [31.317, 119.438, 77.75192260742188], [31.5631, 120.245, 78.42855072021484], [29.8181, 114.3036, 20.92998695373535], [25.0124, 102.743, 50.394386291503906], [31.2994, 120.543, 76.78439331054688], [34.1546, 108.906, 42.863746643066406], [31.0483, 112.2014, 13.939411163330078], [30.2997, 113.8531, 20.15592384338379], [39.625, 121.989, 90.15190124511719], [40.7736, 120.8631, 85.6213150024414], [35.27, 115.455, -2.8741023540496826], [29.8272, 106.379, -3.173649549484253], [30.0874, 103.8416, 25.172077178955078], [29.41569, 106.5506, -3.5178961753845215], [27.2537, 111.4503, -2.957360029220581], [24.2719, 116.0797, 55.18709945678711], [47.3349, 130.2659, 109.6490478515625], [25.0359, 102.638, 50.6727180480957], [30.2692, 120.19, 72.37042999267578], [27.0658, 114.9817, 22.940458297729492], [25.8179, 113.0119, 22.915014266967773], [26.2403, 107.5228, 16.68846321105957], [32.4285, 105.8624, 12.783273696899414], [31.2659, 121.536, 72.43851470947266], [35.5997, 103.2064, 20.037982940673828], [34.9162, 113.6113, -9.403522491455078], [38.49494, 106.1024, 23.42820930480957], [32.4867, 119.9, 80.40088653564453], [39.1654, 117.145, 40.86173629760742], [41.0903, 122.0539, 84.28846740722656], [23.3917, 113.215, 50.22456741333008], [31.1333, 104.3883, 17.105854034423828], [34.6972, 119.3581, 67.71727752685547], [42.8172, 93.5128, 84.93739318847656], [22.6164, 110.1433, 48.34546661376953], [45.8167, 126.561, 90.7013168334961], [31.8766, 117.307, 52.88589096069336], [34.3622, 107.2386, 54.44342041015625], [25.5364, 103.8, 45.38090896606445], [22.5545, 114.1063, 55.22584915161133], [43.9311, 116.0781, 52.245750427246094], [37.5211, 111.1406, 37.0910530090332], [47.7317, 128.9094, 108.51049041748047], [41.7972, 123.3997, 81.48641204833984], [23.3993, 103.3772, 53.6125373840332], [46.5776, 125.1386, 90.3493881225586], [43.8303, 87.5801, 129.41329956054688], [30.5947, 114.3008, 23.432361602783203], [26.2081, 111.6217, 10.876832008361816], [27.6442, 113.8686, 7.549932479858398], [39.2282, 106.7704, 23.39579963684082], [42.2556, 118.8789, 73.4699478149414], [26.3003, 106.805, 20.808917999267578], [29.57278, 106.4042, -2.715250253677368], [23.0916, 113.348, 51.7776985168457], [36.6114, 116.988, 15.638392448425293], [41.1386, 121.1303, 84.21731567382812], [45.8194, 130.8625, 102.14567565917969], [33.721, 113.322, -1.2527140378952026], [31.896, 121.173, 77.08065032958984], [31.7848, 117.196, 51.94427490234375], [26.8906, 100.2203, 57.07977294921875], [24.795928, 113.598061, 39.9638557434082], [39.9567, 119.6023, 85.73298645019531], [32.18888889, 119.4369444, 78.29267883300781], [34.9817, 118.2764, 46.34740447998047], [36.5481, 104.1731, 20.88398551940918], [26.5495, 106.6867, 19.228443145751953], [44.1564, 87.9897, 128.23776245117188], [37.7111, 112.7306, 12.287389755249023], [26.4364, 111.5992, 7.852889537811279], [39.617, 122.011, 90.15983581542969], [26.6514, 118.1819, 56.972293853759766], [40.9843, 117.9525, 75.76616668701172], [22.0019, 100.7939, 62.38745880126953], [21.5958, 109.2256, 53.11780548095703], [34.7967, 114.2886, -8.205677032470703], [25.0492, 101.538, 55.74626541137695], [31.9286, 102.1755, 34.88594055175781], [26.567, 101.7227, 52.428443908691406], [36.0725, 103.841, 20.472688674926758], [39.3179, 112.4254, 31.334909439086914], [26.5155, 106.6948, 19.513715744018555], [22.7875, 108.301, 46.73060607910156], [29.7534, 116.0726, 43.40845489501953], [33.627, 119.0122, 65.54158782958984], [34.2778, 117.2933, 32.06681442260742], [32.8913, 117.4186, 45.65940475463867], [39.7884, 109.9734, 37.19071578979492], [30.475, 105.5956, 3.5956125259399414], [34.6686, 112.4433, -2.950511932373047], [35.0611, 111.0233, 20.657787322998047], [23.4794, 111.26, 44.96943283081055], [30.72358333, 103.97275, 21.60192108154297], [46.8025, 130.2719, 106.33267211914062], [32.02, 120.87, 78.06607055664062], [32.0417, 120.81, 78.31413269042969], [37.187, 122.019, 90.29320526123047], [38.0398, 114.6046, -1.2359848022460938], [36.086, 114.32, -11.535390853881836], [25.9061, 113.0073, 21.656478881835938], [24.77908333, 113.6734722, 40.64307403564453], [41.0781, 121.0986, 84.45304107666016], [37.197, 122.038, 90.33123016357422], [31.92, 120.302, 79.51614379882812], [39.8129, 110.0023, 37.02547073364258], [36.71, 117.541, 26.575376510620117], [32.3292, 119.8767, 80.28785705566406], [28.8833, 105.4322, 12.443836212158203], [34.4286, 115.6697, 5.756030559539795], [30.2897, 120.157, 72.60382080078125], [22.9394, 112.0369, 49.90494918823242], [29.305, 120.091, 64.76886749267578], [26.9056, 112.5664, 6.019836902618408], [26.4519, 111.5989, 7.66532564163208], [25.0925, 104.9022, 41.716434478759766], [26.6383, 118.1694, 56.97657012939453], [30.0033, 120.7789, 68.10140228271484], [36.4372, 115.9848, -1.4776395559310913], [42.2217, 123.7153, 80.92294311523438], [31.5072, 104.7283, 14.089016914367676], [37.7379, 115.6426, -1.2920206785202026], [34.794, 111.158, 15.88837718963623], [30.1808, 120.088, 71.96361541748047], [35.1764, 113.2464, -8.773031234741211], [27.8136, 99.7064, 57.177581787109375], [30.4133, 114.8131, 28.57427978515625], [30.1377, 104.6289, 14.654470443725586], [28.19, 112.9394, -3.77349591255188], [29.635, 119.026, 67.70116424560547], [33.5981, 119.036, 66.08478546142578], [42.0503, 121.6972, 79.26121520996094], [34.0117, 113.8331, -3.358367443084717], [29.5634, 103.757, 28.55545997619629], [32.5, 80.1161, 157.32681274414062], [30.3119, 120.12, 72.86433410644531], [29.33972, 104.7228, 17.8454532623291], [41.1042, 121.835, 84.2468032836914], [37.8564, 113.5753, 3.6330738067626953], [31.17, 120.635, 76.06554412841797], [33.4022, 120.118, 81.18931579589844], [38.8707, 115.5214, 11.754764556884766], [38.6016, 105.9512, 22.17555809020996], [38.0524, 114.5214, -0.795528769493103], [37.18, 119.959, 79.81181335449219], [21.9508, 108.6553, 51.20023727416992], [21.6533, 110.9294, 53.82535934448242], [36.8198, 118.3092, 43.806705474853516], [32.965, 114.018, 6.130549430847168], [46.0872, 85.6931, 149.29971313476562], [28.1944, 113.0014, -3.3745718002319336], [29.1389, 110.48, -13.764327049255371], [45.2948, 131.0103, 99.60999298095703], [30.4865, 106.6351, -5.55955171585083], [34.802, 113.564, -8.883050918579102], [41.5647, 120.4247, 81.61859893798828], [33.6481, 116.9765, 32.724342346191406], [43.1847, 124.3897, 79.60399627685547], [30.698, 111.2992, 9.337362289428711], [34.5653, 105.8614, 42.80717849731445], [22.5328, 113.024, 53.199581146240234], [23.1142, 114.4103, 54.00086975097656], [34.2153, 117.256, 32.02827453613281], [32.6975, 109.0072, 20.33325958251953], [25.4552, 119.0018, 59.33339309692383], [30.51197222, 117.0331111, 56.95580291748047], [37.4442, 118.5857, 53.16832733154297], [28.2264, 117.0222, 40.41237258911133], [34.9058, 108.9344, 53.362098693847656], [31.6908, 113.3833, 14.527203559875488], [28.0005, 116.3574, 32.811622619628906], [32.395, 111.0419, 13.536229133605957], [35.31, 113.836, -10.716593742370605], [23.3667, 116.6794, 58.01581954956055], [34.3469, 106.005, 43.5334358215332], [25.8071, 113.0383, 23.21533966064453], [32.3061, 118.3158, 64.19280242919922], [40.7608, 107.4211, 20.92116928100586], [35.0697, 109.0697, 53.60654830932617], [44.5952, 129.5902, 93.06362915039062], [37.8531, 113.6292, 3.082095146179199], [40.3937, 116.644, 56.31175994873047], [30.3714, 114.8989, 29.68382453918457], [31.2261, 121.425, 72.78409576416016], [40.6592, 122.2414, 86.44446563720703], [21.8536, 111.9508, 54.00333786010742], [40.7136, 120.9092, 85.96549987792969], [27.3392, 103.7032, 39.23607635498047], [41.1222, 121.1178, 84.28019714355469], [26.4364, 106.6554, 20.631765365600586], [38.4841, 106.2739, 24.538726806640625], [37.393, 117.9776, 38.65384292602539], [29.9816, 103.0001, 34.08599853515625], [33.1138, 107.0089, 29.409194946289062], [38.9846, 117.3747, 42.579280853271484], [23.05361111, 113.7819444, 52.837894439697266], [25.2708, 110.3089, 23.073591232299805], [29.315, 110.4417, -12.782004356384277], [31.7956, 117.302, 53.50222396850586], [35.767, 115.0772, -8.670598030090332], [24.3663, 109.3957, 34.00900650024414], [29.8506, 121.524, 64.30565643310547], [43.8256, 126.55, 82.35621643066406], [27.72, 106.9178, 5.383935451507568], [27.8036, 114.9314, 16.530574798583984], [36.8041, 117.8512, 33.11989974975586], [36.907, 121.544, 89.0950698852539], [29.2718, 88.8876, 107.86631774902344], [25.5035, 103.7897, 45.510467529296875], [40.8369, 111.751, 32.010093688964844], [39.0631, 121.9769, 91.3431167602539], [33.9592, 118.2442, 51.10268020629883], [33.63063889, 116.989, 33.03972625732422], [41.0831, 123.0156, 83.80885314941406], [39.6308, 118.1662, 68.4758071899414], [23.0528, 114.4183, 54.23648452758789], [30.4742, 114.9028, 29.57880210876465], [30.6578, 104.054, 20.688560485839844], [21.7631, 108.3511, 52.1674919128418], [42.9409, 89.191, 116.36434173583984], [41.3369, 123.7528, 82.64552307128906], [30.2747, 120.063, 72.68193054199219], [35.2375, 115.474722, -2.45641827583313], [46.6572, 131.1638, 107.93424987792969], [29.2365, 88.8931, 107.850341796875], [36.0022, 106.2792, 42.370365142822266], [33.739, 113.292, -1.4067115783691406], [30.5797, 105.7519, 2.158715009689331], [37.7805, 112.488, 16.226654052734375], [28.9026, 105.4436, 12.175333023071289], [30.3515, 112.2068, 11.036723136901855], [35.6039, 103.2139, 20.036060333251953], [37.9844, 106.2025, 27.029512405395508], [33.7214, 113.3064, -1.2623276710510254], [35.0994, 109.0656, 53.95261001586914], [38.00583333, 114.4586111, -1.0461347103118896], [36.7008, 119.1425, 62.686683654785156], [25.0992, 104.8811, 41.77290344238281], [35.1147, 111.0414, 20.84978485107422], [32.0723, 118.778, 71.97844696044922], [34.7496, 113.5991, -8.671738624572754], [30.2366, 119.7183, 72.49510955810547], [24.44583333, 118.0636111, 60.01063919067383], [23.5353, 116.3697, 57.43511199951172], [37.3803, 118.0062, 39.26862716674805], [43.8947, 126.5786, 82.61031341552734], [31.5031, 120.242, 78.18995666503906], [40.8367, 114.8985, 43.35797119140625], [37.5639, 121.2514, 89.72374725341797], [30.6463, 111.3549, 9.097915649414062], [25.8417, 98.8546, 62.8271598815918], [27.5578, 109.9972, -8.989995956420898], [46.8032, 130.3648, 106.61402893066406], [42.8939, 129.4892, 86.70089721679688], [34.6692, 112.3628, -2.21992826461792], [30.9414, 117.7806, 64.68159484863281], [29.6514, 91.1319, 93.6844253540039], [24.3304, 109.4108, 34.39433288574219], [28.71583, 104.5761, 23.261363983154297], [30.3944, 114.8878, 29.517642974853516], [38.03777778, 114.5480556, -1.0654081106185913], [23.0786, 112.4722, 50.08441162109375], [46.528, 125.112, 90.03095245361328], [27.2317, 111.4733, -2.624202251434326], [30.7157, 111.3009, 9.541057586669922], [32.9683, 112.55, 5.991026401519775], [31.3008, 121.467, 72.95955657958984], [46.619, 131.1651, 107.7071762084961], [43.9469, 87.4754, 130.38864135742188], [28.8194, 104.5969, 22.455432891845703], [30.9431, 118.7175, 73.82633972167969], [33.3942, 120.156, 81.40550231933594], [35.5236, 107.6406, 62.878414154052734], [31.8706, 117.259, 52.20487976074219], [32.4429, 105.8242, 13.05349063873291], [32.88922222, 115.7838889, 22.16482925415039], [26.6009, 106.7105, 18.512868881225586], [27.8094, 102.3419, 46.144325256347656], [30.0911, 120.598, 69.65257263183594], [29.6747, 91.1221, 93.71464538574219], [35.4039, 116.5546, 11.381178855895996], [33.5039, 119.135, 68.1864013671875], [46.0707, 122.0931, 79.52082061767578], [34.29, 117.1814, 30.217069625854492], [41.9967, 121.6178, 79.47215270996094], [34.3739, 107.1186, 54.38835144042969], [23.0048, 113.134, 51.69560623168945], [29.90166667, 121.6147222, 64.26251220703125], [31.671, 120.721, 77.46766662597656], [28.1308, 112.8908, -3.80422306060791], [34.3164, 108.7369, 47.1173095703125], [34.7837, 117.2852, 28.13161849975586], [42.8775, 129.3675, 86.31794738769531], [35.0003, 102.905, 21.349220275878906], [43.6156, 122.3039, 75.86724853515625], [41.765, 123.41, 81.57929992675781], [32.939, 117.3961, 44.89967727661133], [36.5767, 109.4824, 59.18296813964844], [34.6231, 112.3844, -2.3895463943481445], [27.8847, 102.2689, 46.30369567871094], [43.962, 87.6444, 129.49168395996094], [37.5002, 105.1971, 22.797876358032227], [36.7019, 119.12, 62.146331787109375], [35.213, 113.227, -8.728075981140137], [40.1503, 124.4256, 85.00738525390625], [31.8108, 119.9736, 79.62517547607422], [37.8873, 112.522, 16.697290420532227], [33.568, 114.005, 0.8846455812454224], [26.8802, 100.2497, 57.023353576660156], [41.8864, 124.0878, 81.65914916992188], [31.3708, 120.641, 76.77686309814453], [29.6376, 94.3681, 75.24923706054688], [23.5292, 116.4094, 57.53608322143555], [34.3731, 109.2186, 42.64891052246094], [31.6219, 120.275, 78.57613372802734], [31.5475, 120.354, 78.04054260253906], [27.8667, 113.167, -0.3079241216182709], [41.9206, 126.4047, 81.65577697753906], [40.6821, 109.8538, 28.614978790283203], [42.2953, 123.8831, 80.92435455322266], [34.2417, 117.192, 30.800308227539062], [36.6164, 114.5426, -10.558615684509277], [41.5672, 120.4486, 81.63658905029297], [25.1174, 117.0181, 57.00930404663086], [41.8594, 123.9, 81.63442993164062], [25.8567, 98.8601, 62.7809944152832], [29.5817, 105.0653, 12.30056095123291], [36.497, 117.8477, 32.696754455566406], [31.7275, 113.3583, 14.22559928894043], [25.7054, 100.1542, 59.19404220581055], [36.2211, 117.6983, 29.851978302001953], [24.68636111, 113.5970833, 41.34360122680664], [36.0714, 111.5028, 20.581228256225586], [24.81119444, 113.5593889, 39.532379150390625], [29.4402, 112.9943, 5.912327289581299], [35.76806, 115.0061, -9.091838836669922], [28.0089, 120.634, 56.587242126464844], [37.4372, 116.2714, 4.1417365074157715], [31.7797, 116.5068, 41.74830627441406], [31.1654, 121.412, 72.55211639404297], [45.8309, 130.9467, 102.46984100341797], [44.8969, 82.0806, 164.91737365722656], [39.7294, 98.5023, 42.09652328491211], [28.4459, 117.973, 50.92348098754883], [23.3682, 103.3758, 53.75469207763672], [24.8885, 102.821, 50.432716369628906], [41.3472, 123.8142, 82.57503509521484], [33.0122, 112.5224, 5.7696967124938965], [42.2864, 123.8489, 80.9164810180664], [27.7314, 112.0194, -6.21073579788208], [35.7672, 115.0628, -8.761866569519043], [30.6103, 114.4272, 24.422027587890625], [31.7506, 118.5106, 69.89122772216797], [29.1456, 111.7158, -6.81690788269043], [28.9745, 118.855, 61.07063293457031], [34.6575, 109.2, 47.164859771728516], [23.105, 113.261, 51.549705505371094], [39.6572, 106.7931, 21.450748443603516], [23.5739, 116.3594, 57.36675262451172], [31.2108, 107.4967, -2.7816805839538574], [32.625, 116.7039, 37.51332473754883], [28.2675, 109.6958, -14.24053955078125], [32.8985, 117.3065, 43.97785949707031], [41.2894, 123.1417, 83.14724731445312], [30.5706, 104.079, 20.6012020111084], [32.1342, 114.0681, 13.041439056396484], [23.0706, 112.427, 50.037391662597656], [37.825, 120.747, 88.837158203125], [34.493, 109.4636, 41.27604293823242], [26.5894, 104.8475, 34.478607177734375], [28.76611, 104.6225, 22.442523956298828], [31.4747, 104.7778, 13.40747356414795], [32.0564, 112.1392, 12.278361320495605], [32.9735, 112.5003, 6.06995153427124], [25.0441, 101.5482, 55.71308898925781], [26.6611, 119.5392, 58.26675033569336], [43.6801, 122.2532, 75.60804748535156], [28.8558, 105.4322, 12.617958068847656], [29.6541, 91.1774, 93.41210174560547], [38.2991, 116.8854, 22.479442596435547], [37.154, 122.471, 90.38153076171875], [41.7156, 125.9361, 82.00682830810547], [28.2169, 116.9983, 40.157779693603516], [31.3097, 120.669, 76.48133850097656], [44.0297, 87.2717, 131.7854766845703], [25.8471, 114.8905, 36.29970932006836], [33.8715, 109.9154, 27.479429244995117], [36.61981, 114.4965, -10.516639709472656], [38.97388889, 121.6119444, 91.3121566772461], [27.8328, 114.9289, 16.242219924926758], [40.0625, 124.3303, 85.23839569091797], [22.5625, 114.117, 55.223655700683594], [45.6886, 85.1186, 150.45858764648438], [38.3228, 116.8709, 22.47809410095215], [40.2865, 116.17, 47.584102630615234], [47.3489, 130.3172, 109.87210083007812], [45.9819, 126.6106, 91.61556243896484], [38.3254, 116.8584, 22.274755477905273], [37.7087, 112.7105, 12.535776138305664], [31.8516, 117.124, 50.24018859863281], [36.8088, 118.0482, 37.729591369628906], [38.5036, 106.1358, 23.587095260620117], [38.8756, 115.442, 11.127477645874023], [35.0308, 110.9678, 21.4376163482666], [21.865, 111.9494, 53.95405578613281], [31.9051, 117.16, 50.32419967651367], [29.6007, 103.7506, 28.41398811340332], [41.9419, 126.4078, 81.62991333007812], [39.0511, 121.7769, 91.3209457397461], [32.0775, 118.795, 72.17332458496094], [46.0703, 122.0506, 79.41131591796875], [27.9639, 116.3598, 32.909244537353516], [24.4674, 117.6336, 59.495574951171875], [30.049, 119.946, 71.27124786376953], [34.7997, 111.1489, 16.0856990814209], [22.5497, 113.3881, 53.745113372802734], [34.378, 108.869, 46.665565490722656], [36.4796, 115.9835, -1.5534815788269043], [29.334, 120.04, 65.05193328857422], [31.422, 121.14, 75.12950134277344], [38.91194444, 121.6330556, 91.34508514404297], [29.6926, 116.0628, 42.97926330566406], [27.6428, 113.8381, 7.2990851402282715], [37.43445, 118.696, 55.6945915222168], [43.55, 125.633, 80.1082992553711], [32.4246, 105.8153, 12.790410041809082], [46.6527, 126.9636, 95.68751525878906], [45.7478, 126.593, 90.46431732177734], [35.28385, 113.5922, -10.131643295288086], [31.8585, 117.336, 53.480770111083984], [30.66, 117.49, 62.369510650634766], [38.95111111, 121.565, 91.29664611816406], [40.1097, 113.3819, 30.960861206054688], [33.0706, 107.0154, 28.464359283447266], [27.8344, 114.9831, 16.867603302001953], [27.9153, 113.0048, -1.8439847230911255], [27.3033, 111.5239, -3.25927996635437], [30.518, 106.631, -5.484274864196777], [31.7371, 116.508, 42.12920379638672], [29.6039, 115.9114, 40.5217399597168], [23.8822, 100.0869, 63.40391540527344], [39.9425, 116.361, 42.600650787353516], [23.2539, 116.6092, 57.900272369384766], [24.5058, 118.0936, 59.984046936035156], [36.0211, 106.2375, 41.65031051635742], [27.8159, 112.9227, -1.786677598953247], [30.2989, 109.5039, -6.489156246185303], [29.7125, 106.617, -5.082356929779053], [44.6104, 129.6459, 93.27144622802734], [30.4753, 114.1525, 22.514293670654297], [44.1756, 87.5475, 130.74375915527344], [34.6869, 112.4831, -3.2975046634674072], [37.062, 114.4854, -8.889440536499023], [36.6428, 101.748, 20.018102645874023], [26.5506, 104.9544, 33.8586540222168], [31.4539, 104.7536, 13.616559982299805], [31.388, 120.953, 75.82577514648438], [45.755, 126.542, 90.363037109375], [31.0283, 103.613, 25.84002685546875], [40.7688, 114.9032, 42.69182586669922], [31.3019, 120.591, 76.67803192138672], [33.9953, 113.7906, -3.268002510070801], [30.0506, 103.8986, 24.659799575805664], [39.65782, 118.1838, 69.14735412597656], [30.6347, 105.8161, 1.6494560241699219], [31.1108, 104.3539, 17.462284088134766], [37.0172, 105.18, 24.67987060546875], [30.0125, 103.009, 33.937313079833984], [35.763, 115.031, -8.930560111999512], [24.3158, 109.4839, 34.54779052734375], [22.9477, 113.352, 52.3738899230957], [36.6525, 119.1638, 62.99898910522461], [28.2325, 113.0833, -2.9753308296203613], [29.7228, 106.626, -5.180644512176514], [36.39, 120.47, 84.39762115478516], [37.7124, 112.469, 15.987427711486816], [29.3411, 104.7692, 17.23324203491211], [39.79777778, 98.26722222, 43.509307861328125], [29.7048, 115.9581, 41.815643310546875], [39.5986, 109.7736, 38.452392578125], [39.7711, 98.2908, 43.3226203918457], [31.874, 120.526, 78.67867279052734], [23.3633, 116.7244, 58.086238861083984], [22.5931, 113.0819, 53.094093322753906], [32.41, 119.404, 77.63810729980469], [35.7289, 107.6831, 62.882904052734375], [43.8694, 125.325, 79.90019989013672], [25.0405, 102.722, 50.39775085449219], [39.5178, 116.6838, 38.89760971069336], [33.5979, 114.6546, 2.863598346710205], [22.9169, 112.0392, 50.00102233886719], [34.6869, 112.4664, -3.155479669570923], [30.9414, 117.8178, 65.02547454833984], [43.9317, 116.1042, 52.37143325805664], [32.0903, 112.2106, 12.023042678833008], [42.0486, 121.6592, 79.21086883544922], [41.615, 120.3939, 81.26687622070312], [40.8033, 111.658, 32.0473747253418], [31.7897, 119.8914, 79.6429443359375], [31.909, 120.237, 79.59241485595703], [32.1083, 118.803, 72.10980224609375], [30.8596, 120.1844, 75.65347290039062], [31.1167, 104.4053, 16.871871948242188], [30.7819, 111.3296, 10.358099937438965], [28.9583, 105.4306, 11.930268287658691], [38.85611111, 121.5180556, 91.29219818115234], [23.1323, 113.3208, 51.55699157714844], [31.7618, 116.478, 41.525367736816406], [29.7736, 121.633, 63.50981903076172], [39.8261, 109.9486, 36.694087982177734], [38.8957, 115.5223, 12.154659271240234], [32.215, 119.491, 78.65589904785156], [27.8528, 113.13, -0.4973714053630829], [32.105, 118.907, 73.45372772216797], [26.0797, 119.268, 58.56117248535156], [33.975, 116.8008, 27.109630584716797], [26.6266, 106.6243, 18.98025894165039], [23.105, 113.433, 51.906044006347656], [30.3058, 120.348, 72.2745361328125], [22.9539, 112.0539, 49.87529373168945], [31.4846, 92.0657, 85.06100463867188], [31.6928, 118.48, 69.70114135742188], [27.9939, 120.677, 56.582881927490234], [34.2713, 108.954, 44.070396423339844], [41.1953, 123.2, 83.43501281738281], [34.2749, 108.882, 44.90168380737305], [30.1819, 120.27, 71.52763366699219], [22.5211, 113.3769, 53.81745910644531], [36.864, 118.78, 54.55009460449219], [21.9667, 108.6236, 51.11506652832031], [33.3681, 120.1631, 81.44490814208984], [31.4656, 104.6717, 14.604217529296875], [37.739, 115.6906, -0.8900452852249146], [36.2126, 113.0886, -3.126300573348999], [39.5989, 109.8119, 38.61153793334961], [24.506, 117.7116, 59.56549835205078], [40.7378, 107.3715, 20.857419967651367], [34.7187, 113.727, -8.597432136535645], [30.6872, 104.176, 19.13161849975586], [27.583, 110.0394, -9.214649200439453], [31.9438, 117.266, 51.67918395996094], [38.4928, 112.7003, 20.68828773498535], [31.3839, 118.4022, 69.828125], [38.4519, 112.7383, 19.761634826660156], [26.1092, 119.299, 58.535255432128906], [34.7745, 113.641, -8.83000659942627], [46.5888, 131.1572, 107.50242614746094], [30.4663, 106.6271, -5.521399021148682], [31.4189, 118.37, 69.40019226074219], [30.6539, 117.4974, 62.46065139770508], [26.8576, 100.2143, 57.14182662963867], [30.6617, 117.4697, 62.14054870605469], [37.7575, 115.6951, -0.6917065382003784], [23.415, 111.2353, 45.42674255371094], [28.0167, 120.671, 56.55826950073242], [30.9222, 117.8078, 64.97552490234375], [38.9108, 115.4713, 11.942655563354492], [32.6494, 110.78, 13.931021690368652], [28.0797, 116.2239, 31.542762756347656], [34.3017, 107.0708, 53.347564697265625], [40.1269, 113.2661, 31.38226318359375], [36.7731, 119.1939, 64.16644287109375], [47.2988, 123.945, 91.01976013183594], [28.095, 116.9622, 39.13056182861328], [26.6946, 119.5001, 58.22416305541992], [27.8728, 112.8937, -2.3623785972595215], [23.6936, 113.0425, 47.78761291503906], [36.799, 119.976, 79.08708953857422], [35.4883, 112.8564, -5.217952251434326], [27.8408, 102.2714, 46.44511413574219], [30.5514, 114.2511, 23.12888526916504], [42.0228, 121.6722, 79.35427856445312], [31.172, 120.658, 76.00684356689453], [32.996, 113.996, 5.8050217628479], [32.1319, 119.43, 78.27009582519531], [31.1907, 121.703, 71.2289047241211], [41.0931, 123.011, 83.77884674072266], [37.4664, 116.3061, 4.893983364105225], [25.8664, 114.9367, 36.47442626953125], [32.3878, 119.46, 78.25862884521484], [35.4234, 119.5198, 68.86471557617188], [36.5776, 114.5035, -10.650657653808594], [22.8464, 108.239, 46.457618713378906], [42.9061, 129.5042, 86.78028106689453], [30.2352, 115.0625, 31.628618240356445], [27.8953, 102.2311, 46.47747802734375], [40.9923, 113.1306, 34.24388885498047], [31.85805556, 106.7619444, 5.459014892578125], [24.441, 98.578, 66.15603637695312], [41.3283, 123.8436, 82.60147094726562], [22.7422, 114.5317, 55.57106018066406], [27.5444, 109.9453, -8.86238956451416], [25.5811, 100.2171, 59.26432800292969], [26.53111111, 107.8908333, 10.71484375], [39.5371, 75.9828, 190.14712524414062], [39.6969, 106.8089, 21.353290557861328], [35.4178, 119.4641, 67.86162567138672], [33.38256667, 104.9338889, 24.36630630493164], [45.6842, 126.6206, 90.2418212890625], [40.5905, 110.0067, 29.688053131103516], [29.1242, 110.4697, -13.879448890686035], [30.9892, 112.1969, 13.82066822052002], [35.272, 113.884, -10.690567970275879], [41.1933, 80.2956, 164.51998901367188], [39.8745, 116.434, 42.231021881103516], [37.8195, 112.57, 15.394186973571777], [29.53675, 106.4959, -3.497500419616699], [43.941, 81.3364, 165.8455352783203], [31.9108, 119.905, 79.93486022949219], [27.7758, 115.0586, 18.256052017211914], [30.9219, 117.8561, 65.42561340332031], [30.1259, 104.6294, 14.70197582244873], [31.0935, 120.978, 74.45940399169922], [37.8792, 113.4922, 4.712487697601318], [26.5747, 107.9783, 9.67054271697998], [35.235, 113.261, -8.89354419708252], [24.4072, 111.5622, 36.05704879760742], [31.9025, 102.2218, 34.75060272216797], [37.3617, 118.0018, 39.06157302856445], [43.4569, 87.4651, 128.82191467285156], [26.5928, 101.5769, 52.97810363769531], [45.7733, 126.689, 90.8373031616211], [28.6428, 112.4067, -6.8495988845825195], [34.402, 115.6578, 5.816043376922607], [45.7677, 131.0032, 102.27637481689453], [31.1208, 104.4219, 16.686725616455078], [27.7842, 114.3953, 10.907764434814453], [27.9747, 120.76, 56.56306838989258], [31.4, 119.46, 77.9990463256836], [28.6844, 115.931, 31.06159210205078], [37.161, 122.41, 90.38020324707031], [27.7297, 109.1916, -9.673145294189453], [22.0225, 100.8017, 62.37514877319336], [29.6453, 106.562, -4.451414108276367], [22.8322, 100.9817, 62.00859832763672], [44.5462, 129.6386, 93.00172424316406], [30.65638889, 104.0238889, 21.078868865966797], [36.1031, 103.631, 19.879072189331055], [26.2331, 111.6236, 10.523963928222656], [26.8956, 112.6211, 6.432484149932861], [41.3047, 123.7308, 82.74158477783203], [40.8725, 114.904, 43.76906967163086], [43.8167, 125.25, 79.68453216552734], [40.9359, 117.963, 75.82994079589844], [27.9119, 112.9074, -2.522611141204834], [41.0112, 117.9384, 75.67915344238281], [32.4611, 119.9219, 80.47809600830078], [35.5294, 106.7039, 52.4029655456543], [29.5947, 105.0717, 12.150191307067871], [35.546, 112.8453, -4.72844934463501], [30.3175, 112.2551, 10.967556953430176], [39.6679, 118.2185, 69.88223266601562], [31.737, 119.579, 78.90498352050781], [50.4269, 124.1186, 115.68551635742188], [32.6939, 109.0281, 20.22410774230957], [32.935, 117.3086, 43.67797088623047], [32.645, 117.0083, 41.80891799926758], [27.7019, 106.9242, 5.472848892211914], [30.5494, 114.3006, 23.486446380615234], [32.0572, 118.749, 71.67447662353516], [46.6219, 124.8648, 89.79508972167969], [34.407, 115.6386, 5.519501686096191], [34.5021, 109.4266, 41.90400314331055], [26.6761, 118.0966, 56.73329162597656], [29.8539, 114.2894, 20.962093353271484], [39.746, 98.509, 42.096397399902344], [29.5844, 103.7627, 28.36536979675293], [24.5157, 117.6569, 59.458656311035156], [28.2189, 112.8872, -4.258175373077393], [36.0783, 111.5531, 19.66719627380371], [35.5461, 106.6692, 51.73271179199219], [40.0917, 113.3444, 31.00906753540039], [29.8906, 121.554, 64.42805480957031], [31.6861, 118.5058, 70.07807922363281], [29.8208, 121.56, 64.0118408203125], [34.3474, 108.935, 45.46657943725586], [28.1442, 112.9956, -3.168290853500366], [37.7019, 112.7549, 11.888666152954102], [38.9467, 100.4686, 29.802013397216797], [30.4183, 120.301, 73.27276611328125], [23.7208, 109.2131, 40.043968200683594], [31.8711, 106.7389, 5.639301776885986], [28.2403, 117.0281, 40.54102325439453], [23.0944, 109.6014, 45.317745208740234], [35.248889, 115.42277, -3.080677032470703], [26.0931, 119.58, 58.827144622802734], [22.8225, 108.321, 46.56120681762695], [23.0672, 109.6042, 45.51203155517578], [27.9958, 113.1817, -1.043422818183899], [30.7856, 106.1064, -0.6912292838096619], [30.8064, 106.056, -0.20056134462356567], [27.2582, 111.4908, -2.869450569152832], [43.9404, 81.2815, 166.19070434570312], [34.5885, 119.176, 64.7445068359375], [38.4975, 106.2328, 24.2120418548584], [41.9228, 123.3783, 81.19551849365234], [33.6128, 114.6613, 2.7704641819000244], [34.8731, 108.9589, 52.751434326171875], [32.0092, 118.737, 71.7567367553711], [39.2474, 117.7918, 55.39442443847656], [25.7759, 113.0348, 23.646682739257812], [29.9834, 103.0109, 33.99400329589844], [39.9934, 116.315, 43.020809173583984], [34.3956, 108.7197, 48.567955017089844], [27.8978, 102.2625, 46.288604736328125], [31.3178, 118.3708, 69.65480041503906], [46.7975, 130.3258, 106.4616470336914], [26.2625, 117.6211, 56.14845657348633], [31.5848, 120.354, 78.19202423095703], [30.2028, 115.0767, 31.748117446899414], [29.7292, 115.988, 42.30891418457031], [21.6669, 110.9067, 53.74327087402344], [30.1142, 104.6469, 14.527623176574707], [37.809, 120.773, 88.8944091796875], [27.8317, 99.7056, 57.157535552978516], [30.9742, 118.7386, 73.98617553710938], [34.864, 117.5564, 32.670902252197266], [32.1883, 119.68, 79.5405044555664], [45.305, 130.9817, 99.57743835449219], [49.1577, 119.7512, 95.40215301513672], [30.3055, 112.2887, 11.046762466430664], [36.5458, 104.1731, 20.89009666442871], [40.6511, 122.215, 86.50334167480469], [44.2967, 86.0497, 139.01832580566406], [34.2911, 117.244, 31.170764923095703], [28.7989, 104.6789, 21.612749099731445], [37.4294, 122.1206, 90.7500991821289], [23.7369, 109.2317, 39.9150276184082], [36.1417, 106.2319, 40.6630744934082], [31.7386, 117.278, 53.57780075073242], [48.4658, 129.4942, 114.89273834228516], [45.2924, 130.962, 99.44452667236328], [40.715, 120.8478, 85.8929672241211], [33.3947, 120.225, 81.73600769042969], [40.6575, 109.8104, 28.62346649169922], [38.86388889, 121.625, 91.35350799560547], [35.0573, 118.3418, 47.164459228515625], [41.7775, 123.478, 81.56130981445312], [31.2058, 107.4611, -2.8220605850219727], [28.6047, 112.3347, -7.563841342926025], [41.2736, 123.1761, 83.19007110595703], [36.0464, 103.831, 20.494821548461914], [34.3274, 109.043, 43.970314025878906], [37.9648, 106.1532, 26.7554931640625], [36.1851, 120.3905, 82.99919128417969], [36.6028, 109.4761, 59.32481384277344], [29.5467, 103.7705, 28.494373321533203], [50.4217, 124.1303, 115.67123413085938], [22.7019, 110.1106, 47.91764831542969], [31.955, 119.18, 76.53289794921875], [39.1082, 117.237, 41.75337600708008], [24.2654, 116.1248, 55.358314514160156], [30.2756, 118.1371, 68.62476348876953], [33.567, 114.056, 1.0097508430480957], [27.8014, 114.3806, 10.604700088500977], [29.36028, 104.7778, 17.01043701171875], [26.57098, 101.68912, 52.5569953918457], [23.6706, 116.6447, 57.93844985961914], [32.1142, 112.1825, 11.953498840332031], [41.8336, 123.542, 81.48976135253906], [30.2099, 115.0264, 31.132932662963867], [34.3528, 107.3906, 54.41434860229492], [25.3167, 110.4144, 22.400650024414062], [27.9164, 112.4876, -5.241232395172119], [39.1067, 117.1941, 40.8418083190918], [25.442, 119.0156, 59.3601188659668], [40.8115, 114.8814, 42.978755950927734], [29.9919, 120.605, 68.82866668701172], [23.1572, 112.885, 50.58049392700195], [37.9097, 114.3541, -1.5700514316558838], [34.5004, 109.5049, 40.81742477416992], [33.737, 113.182, -1.3808034658432007], [38.44139, 106.2275, 24.4792423248291], [27.8381, 113.143, -0.3107314705848694], [31.2703, 120.613, 76.5022201538086], [22.3708, 107.3701, 49.32576370239258], [36.1942, 117.1436, 19.073070526123047], [26.6272, 118.1756, 57.0145263671875], [33.1842, 106.9893, 30.91674041748047], [26.5697, 106.7164, 18.77916145324707], [29.5953, 105.0331, 12.598366737365723], [39.6719, 106.8219, 21.528072357177734], [31.8934, 102.2402, 34.69362258911133], [30.1506, 104.6356, 14.51547622680664], [36.6739, 117.114, 18.1789608001709], [30.0475, 101.9603, 41.77195739746094], [40.6532, 109.8756, 28.87057876586914], [23.01277778, 113.7944444, 53.017852783203125], [30.8244, 120.07, 75.49498748779297], [45.6033, 84.8861, 151.32769775390625], [22.8693, 112.844, 51.65804672241211], [36.1758, 117.1081, 18.38056182861328], [33.8399, 115.8067, 13.067845344543457], [43.768, 87.6046, 129.0674591064453], [22.2294, 113.495, 54.95378494262695], [26.8919, 112.6006, 6.356821060180664], [27.8036, 114.3442, 10.235211372375488], [45.61, 126.615, 89.88217163085938], [33.965, 118.283, 51.73331069946289], [31.56, 120.294, 78.27271270751953], [34.7545, 113.681, -8.75638484954834], [30.2819, 109.4689, -6.8499627113342285], [32.6028, 116.8556, 39.862239837646484], [43.8667, 125.417, 80.0625228881836], [22.8172, 114.3244, 54.80067443847656], [29.2786, 117.1983, 52.85537338256836], [35.259, 113.1992, -8.582378387451172], [41.8828, 123.9169, 81.60126495361328], [32.9444, 117.3575, 44.29674530029297], [27.9883, 116.3553, 32.76197052001953], [38.843, 105.6975, 19.72928810119629], [39.3673, 112.4279, 31.690412521362305], [34.5667, 117.732, 38.10618209838867], [41.1636, 80.2828, 164.5374755859375], [33.575, 119.007, 65.73284149169922], [24.9624, 102.625, 50.89203643798828], [32.0144, 118.777, 72.27159881591797], [43.84, 125.2786, 79.74948120117188], [34.3617, 108.7233, 47.981101989746094], [39.9419, 119.5369, 85.40831756591797], [38.2839, 109.7289, 52.02696228027344], [39.643, 118.144, 68.2699966430664], [31.381, 120.999, 75.61276245117188], [38.9194, 117.157, 37.011138916015625], [31.882, 120.55, 78.61917877197266], [32.2786, 118.3244, 64.47920989990234], [33.0323, 107.007, 27.590843200683594], [22.7906, 108.439, 46.70646667480469], [38.1398, 114.5019, 0.35183271765708923], [44.561, 129.61, 92.98287963867188], [30.8388, 106.1087, -0.5855594277381897], [31.2472, 120.561, 76.55770111083984], [29.8264, 106.424, -3.5925331115722656], [30.9447, 118.7581, 74.10797882080078], [41.1442, 123.0485, 83.6138916015625], [22.4137, 107.3476, 49.09199523925781], [27.6178, 113.865, 7.800110340118408], [24.4175, 111.5269, 35.83524703979492], [43.7256, 126.6772, 82.32317352294922], [22.8561, 108.316, 46.398948669433594], [37.177, 119.941, 79.55081176757812], [26.2378, 117.6028, 56.141136169433594], [43.9167, 125.323, 80.0062484741211], [36.6377, 117.9544, 35.151798248291016], [23.2783, 113.568, 51.42192077636719], [24.8978, 118.5972, 59.72774124145508], [32.9673, 117.3536, 44.033878326416016], [34.7745, 117.5852, 33.8255729675293], [25.2178, 110.2869, 23.864091873168945], [43.8358, 126.5844, 82.47016906738281], [36.1855, 113.0844444, -3.2736098766326904], [24.6967, 108.1009, 32.082401275634766], [30.4519, 114.8858, 29.405643463134766], [31.2036, 121.478, 72.38489532470703], [24.3702, 102.5389, 52.97251892089844], [37.8561, 113.5922, 3.46539306640625], [34.3708, 107.1586, 54.41950988769531], [34.3547, 107.1431, 54.18036651611328], [31.238, 121.4, 72.9783706665039], [41.9086, 123.5953, 81.40914154052734], [33.0014, 97.0, 55.13856506347656], [41.7561, 123.535, 81.62195587158203], [23.9011, 106.6103, 42.55775451660156], [36.7339, 119.0841, 61.38687515258789], [36.0875, 111.5025, 20.7384090423584], [25.8333, 114.9322, 36.85106658935547], [31.89708, 121.1518, 77.15718078613281], [23.8982, 100.0782, 63.40593719482422], [33.3261, 105.0822, 24.153852462768555], [29.7128, 118.3057, 66.11530303955078], [44.0114, 87.2997, 131.57760620117188], [45.7258, 126.646, 90.50251007080078], [28.4569, 118.0058, 51.34202194213867], [22.5908, 114.263, 55.462974548339844], [23.7233, 114.6892, 52.165916442871094], [35.0147, 110.9956, 20.751293182373047], [38.8394, 117.457, 42.07915115356445], [30.7946, 120.744, 73.99044036865234], [22.735, 108.328, 46.99179458618164], [27.3125, 105.2864, 25.40850067138672], [32.6389, 110.7258, 14.145243644714355], [37.4489, 116.3189, 5.016496658325195], [23.08, 114.4053, 54.111114501953125], [28.6459, 121.273, 58.459083557128906], [39.7153, 76.1861, 189.22113037109375], [30.4576, 106.6303, -5.554630279541016], [33.6284, 116.9677, 32.7745361328125], [22.7833, 108.244, 46.76171875], [22.5811, 113.074, 53.12380599975586], [37.0967, 114.4821, -8.68391227722168], [30.6197, 114.2836, 23.28590965270996], [44.3336, 84.8983, 145.762451171875], [36.1542, 113.1097, -3.783952236175537], [30.2456, 120.127, 72.32441711425781], [29.6219, 106.65, -5.146486282348633], [38.8343, 105.6775, 19.67007827758789], [24.428, 98.5842, 66.16292572021484], [25.0661, 117.0256, 57.1267204284668], [38.5247, 102.1878, 20.358285903930664], [28.5819, 112.3744, -7.420760154724121], [31.656, 120.734, 77.39783477783203], [36.3083, 120.1964, 81.0093765258789], [24.9617, 118.6108, 59.67800521850586], [41.0228, 123.1289, 84.00288391113281], [31.1278, 97.1804, 57.95426940917969], [36.792, 119.952, 78.73595428466797], [23.4168, 103.386, 53.505367279052734], [42.2725, 118.9572, 73.62457275390625], [29.5983, 106.296, -1.684434413909912], [36.087, 114.358, -11.56093692779541], [36.283, 120.008, 78.38790130615234], [40.1461, 124.3933, 85.05058288574219], [25.0836, 102.728, 50.287315368652344], [41.8472, 123.428, 81.3790512084961], [29.9972, 101.9533, 41.954769134521484], [27.8336, 113.251, 0.5438387989997864], [30.4551, 106.6388, -5.623085975646973], [41.1556, 122.0247, 84.00174713134766], [26.5689, 106.6971, 18.94513511657715], [39.9522, 116.434, 43.86202621459961], [41.7089, 123.439, 81.74205017089844], [37.9358, 102.6469, 17.59248161315918], [24.7121, 108.2134, 31.670724868774414], [31.7133, 118.6439, 71.71597290039062], [40.1194, 124.3678, 85.11674499511719], [38.817, 106.3394, 23.174884796142578], [35.303, 113.883, -10.77470874786377], [37.4658, 118.5019, 51.34398651123047], [30.7636, 106.0642, -0.3484747111797333], [32.4535, 105.8945, 13.142289161682129], [38.5061, 102.1708, 20.375696182250977], [35.5102, 102.0199, 20.853330612182617], [38.8632, 115.493, 11.384176254272461], [31.87888889, 106.7513889, 5.740348815917969], [25.8481, 114.9461, 36.790218353271484], [31.92, 120.268, 79.58103942871094], [26.585, 101.7169, 52.431461334228516], [36.2092, 117.7181, 30.257774353027344], [43.8228, 126.4978, 82.21680450439453], [35.0896, 118.4023, 48.117862701416016], [28.76389, 104.6417, 22.2320499420166], [22.7633, 100.98, 62.062625885009766], [28.7867, 104.6061, 22.522119522094727], [42.9559, 89.1673, 116.5775146484375], [31.7039, 119.935, 79.39323425292969], [23.1422, 113.235, 51.360416412353516], [30.9075, 113.942, 20.851335525512695], [37.5436, 121.3181, 89.80155181884766], [31.2864, 120.628, 76.51680755615234], [37.9723, 106.196, 27.05927085876465], [27.0983, 115.0075, 22.97433853149414], [34.5101, 109.5293, 40.61774826049805], [24.81805556, 118.1569444, 59.5732307434082], [36.6489, 116.943, 14.775053977966309], [25.8226, 113.0116, 22.8487548828125], [36.0756, 103.712, 20.13353157043457], [28.2642, 117.0564, 40.91498565673828], [31.453, 121.115, 75.38566589355469], [40.7514, 120.8392, 85.7020492553711], [36.2403, 120.4001, 83.245361328125], [29.8686, 114.3372, 21.521583557128906], [22.75, 114.085, 54.4841423034668], [40.8062, 111.7277, 32.11826705932617], [25.1081, 99.1678, 63.424644470214844], [25.2697, 110.2819, 23.085973739624023], [28.6969, 115.973, 31.67271614074707], [28.2558, 109.6414, -14.124773025512695], [39.1495, 117.3916, 45.645816802978516], [33.9461, 116.7844, 27.126602172851562], [28.3169, 109.7325, -14.426556587219238], [46.8267, 130.3961, 106.84809112548828], [37.5136, 111.1297, 37.23992156982422], [40.1438, 116.72, 52.599769592285156], [29.8211, 114.3231, 21.13967514038086], [47.3227, 123.9483, 91.20276641845703], [29.2956, 117.2461, 53.54083251953125], [29.3864, 117.3097, 55.20504379272461], [28.6064, 115.9083, 30.245954513549805], [36.061, 114.483, -11.61922836303711], [28.4622, 117.9511, 50.72673797607422], [29.4892, 106.634, -4.558447360992432], [34.4714, 100.2561, 30.53997802734375], [39.6295, 118.1997, 69.02073669433594], [36.1942, 117.0881, 17.95442771911621], [41.2553, 123.15, 83.25672912597656], [30.9285, 113.9153, 20.645729064941406], [21.8586, 111.9786, 54.01837921142578], [24.299, 109.4221, 34.710323333740234], [27.7914, 114.3703, 10.600811004638672], [39.2133, 117.1837, 42.4995002746582], [29.6816, 115.9872, 42.01677322387695], [26.9089, 112.5328, 5.815971851348877], [44.9079, 82.0485, 165.1591339111328], [36.1912, 113.1569, -4.05735445022583], [35.7067, 107.6364, 62.678462982177734], [29.6292, 91.0834, 94.0000991821289], [36.1939, 113.0972, -3.3604636192321777], [34.8019, 113.675, -8.976482391357422], [40.9161, 117.9664, 75.85222625732422], [24.3694, 102.5778, 52.82742691040039], [23.1331, 113.26, 51.44212341308594], [37.1013, 79.9117, 160.17149353027344], [41.7192, 86.2022, 130.75462341308594], [26.2708, 117.6353, 56.18064880371094], [28.9404, 118.871, 60.86436462402344], [23.7106, 113.0208, 47.58415603637695], [36.2403, 120.6659, 85.95050048828125], [22.7267, 114.24, 54.947166442871094], [34.7975, 114.3733, -7.826661586761475], [40.0181, 119.7624, 86.43495178222656], [40.5546, 110.0377, 30.03689193725586], [28.4586, 119.93, 59.58270263671875], [36.67, 116.93, 14.537805557250977], [34.7781, 114.3389, -7.863360404968262], [30.89556, 120.0875, 75.77034759521484], [41.7511, 86.1461, 131.15090942382812], [47.8515, 88.1267, 147.0125732421875], [24.9117, 118.5819, 59.71137619018555], [23.5486, 116.3242, 57.311317443847656], [37.8694, 113.5689, 3.8282358646392822], [27.7044, 111.9892, -6.109599590301514], [40.1114, 113.2803, 31.2850284576416], [39.3606, 112.4549, 31.409772872924805], [45.6289, 122.8444, 79.11420440673828], [27.6231, 113.8447, 7.574213027954102], [28.4514, 119.914, 59.5554084777832], [29.6475, 91.0874, 93.95384979248047], [34.2303, 108.883, 44.221717834472656], [29.4251, 113.1493, 7.110170364379883], [38.3344, 109.7414, 51.603240966796875], [43.8711, 87.5525, 129.70399475097656], [38.9389, 100.4497, 29.875288009643555], [37.68277778, 112.7194444, 12.216798782348633], [39.1292, 106.7096, 23.609289169311523], [34.1781, 117.1694, 30.989280700683594], [46.0756, 121.9462, 79.17800903320312], [37.85, 113.5158, 4.174315929412842], [31.7712, 116.5661, 42.597591400146484], [39.3514, 112.44, 31.466907501220703], [27.6486, 106.8906, 6.224403381347656], [41.1219, 121.2008, 84.32466888427734], [44.5782, 129.6115, 93.05411529541016], [29.709, 106.452, -3.6194403171539307], [23.06, 113.7480556, 52.74147033691406], [23.1886, 112.863, 50.40792465209961], [41.7347, 123.2444, 81.62800598144531], [21.2567, 110.4558, 55.143150329589844], [27.3361, 103.7225, 39.12127685546875], [37.9311, 102.6219, 17.64304542541504], [33.6406, 114.6369, 2.3851888179779053], [31.8572, 117.25, 52.1782112121582], [35.5975, 104.6169, 26.0500431060791], [42.8947, 125.1358, 80.34578704833984], [29.2313, 91.7608, 90.47509765625], [39.5343, 116.7464, 40.30024719238281], [40.7094, 122.2703, 86.16848754882812], [43.1594, 124.3711, 79.6217041015625], [30.6414, 114.2131, 22.86013412475586], [36.44, 120.61, 85.99002075195312], [29.4892, 106.468, -3.028322458267212], [28.9703, 111.6975, -8.773172378540039], [38.0108, 112.434, 19.201766967773438], [31.4867, 120.269, 78.04164123535156], [34.429, 115.6558, 5.568406105041504], [38.01777778, 114.5330556, -1.2318753004074097], [44.3075, 86.0697, 138.9499969482422], [27.9647, 116.385, 33.174983978271484], [30.2043, 114.8949, 29.46806526184082], [29.3678, 113.1772, 6.742199897766113], [29.1128, 119.6533, 64.1155014038086], [25.9118, 114.9064, 35.624446868896484], [26.0392, 119.303, 58.607723236083984], [23.1569, 113.281, 51.391868591308594], [45.5422, 126.979, 90.54183197021484], [37.7394, 112.5583, 14.891130447387695], [28.6542, 121.419, 58.160430908203125], [26.5939, 104.89, 34.0875358581543], [41.8625, 124.0383, 81.6805648803711], [35.7511, 114.2956, -11.66385269165039], [31.7586, 119.996, 79.47537994384766], [38.8516, 105.724, 19.821870803833008], [36.6868, 117.0684, 17.285200119018555], [26.0753, 119.315, 58.57368087768555], [39.9716, 116.473, 44.89031219482422], [46.7432, 82.9994, 167.93922424316406], [32.41361, 119.458, 78.1833267211914], [38.8416, 115.4612, 10.769289016723633], [30.5489, 117.0486, 57.104087829589844], [27.4948, 114.0944, 11.082828521728516], [27.8867, 113.095, -0.976555347442627], [23.0528, 112.471, 50.18864059448242], [26.8733, 112.6197, 6.6711039543151855], [35.4894, 112.8664, -5.317375659942627], [47.2753, 130.261, 109.27018737792969], [23.8844, 106.6527, 42.54170608520508], [40.7866, 111.551, 32.00244903564453], [43.6267, 122.2603, 75.74735260009766], [36.10139, 111.505, 20.82124900817871], [28.56, 112.3439, -7.6679887771606445], [45.7319, 126.685, 90.63449096679688], [40.0844, 113.2711, 31.22810935974121], [37.4014, 121.5992, 90.03530883789062], [30.6133, 105.68, 2.820662498474121], [30.7478, 120.726, 73.80776977539062], [28.1178, 112.9844, -3.1154122352600098], [28.7994, 115.742, 29.671884536743164], [25.067, 102.681, 50.466548919677734], [32.0005, 120.86, 78.00860595703125], [26.5017, 101.7453, 52.40802001953125], [34.5814, 105.7281, 40.99634552001953], [43.91, 125.287, 79.9209213256836], [46.3991, 124.8847, 88.75747680664062], [31.8531, 106.7594, 5.39309549331665], [33.9528, 118.293, 51.98003387451172], [45.6175, 122.8211, 78.99117279052734], [19.9507, 110.576, 56.73938751220703], [23.4792, 111.2897, 45.02864456176758], [32.1383, 114.0614, 12.985243797302246], [30.8023, 106.0789, -0.415195494890213], [34.2324, 108.94, 43.64275360107422], [36.11, 114.286, -11.473970413208008], [31.96, 120.913, 77.7971420288086], [32.8928, 115.8275, 22.71135139465332], [31.7694, 120.0469, 79.44861602783203], [31.6842, 120.288, 78.77607727050781], [47.3636, 123.9305, 91.4584732055664], [28.7442, 115.813, 30.079151153564453], [23.2536, 116.4019, 57.5637321472168], [23.4714, 116.7519, 58.143436431884766], [34.6511, 112.3939, -2.4987480640411377], [35.0622, 118.2939, 46.245426177978516], [28.6839, 115.8886, 30.541200637817383], [41.8469, 123.81, 81.61761474609375], [24.3289, 116.1278, 55.21059799194336], [34.3497, 107.2058, 54.2138786315918], [42.0352, 119.2654, 76.09501647949219], [31.0386, 112.2211, 13.986989974975586], [40.0758, 113.2994, 31.104816436767578], [36.61763, 114.5129, -10.535188674926758], [29.4822, 106.364, -1.963941216468811], [35.94, 104.148, 22.28904914855957], [27.2272, 111.4328, -2.708097219467163], [25.1328, 99.1711, 63.36113357543945], [40.6288, 109.8654, 29.00016212463379]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#0014d7&quot;, &quot;0.05&quot;: &quot;#0014d7&quot;, &quot;0.1&quot;: &quot;#0014d7&quot;, &quot;0.15&quot;: &quot;#0014d7&quot;, &quot;0.2&quot;: &quot;#0014d7&quot;, &quot;0.25&quot;: &quot;#0014d7&quot;, &quot;0.3&quot;: &quot;#0014d7&quot;, &quot;0.35&quot;: &quot;#0014d7&quot;, &quot;0.4&quot;: &quot;#0014d7&quot;, &quot;0.45&quot;: &quot;#0014d7&quot;, &quot;0.5&quot;: &quot;#0014d7&quot;, &quot;0.55&quot;: &quot;#0014d7&quot;, &quot;0.6&quot;: &quot;#0014d7&quot;, &quot;0.65&quot;: &quot;#0014d7&quot;, &quot;0.7&quot;: &quot;#0014d7&quot;, &quot;0.75&quot;: &quot;#0014d7&quot;, &quot;0.8&quot;: &quot;#0014d7&quot;, &quot;0.85&quot;: &quot;#0014d7&quot;, &quot;0.9&quot;: &quot;#0014d7&quot;, &quot;0.95&quot;: &quot;#0014d7&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_47ddc19bb62c65826ea08eb38397a0a8.addTo(map_c9f18c2ad3d5cb724708457ae5d7c30f);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13a5594a250>\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('coef_aod_sat', colors=[\\n\",\n    \"                         'blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"降水\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {\n    \"id\": \"6D07A57BA2E94E6F9C65D637B3FCD6F2\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_7411a723657a8fa92ed8001bab849dcd {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_7411a723657a8fa92ed8001bab849dcd&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_7411a723657a8fa92ed8001bab849dcd = L.map(\\n\",\n       \"                &quot;map_7411a723657a8fa92ed8001bab849dcd&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_9e28a109aa8c932896cb45d5f729a248 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_9e28a109aa8c932896cb45d5f729a248.addTo(map_7411a723657a8fa92ed8001bab849dcd);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_34fb4ff20431c2091cbdb6d71b8855e0 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_34fb4ff20431c2091cbdb6d71b8855e0.color = d3.scale.threshold()\\n\",\n       \"              .domain([-136.61024475097656, -136.30484008789062, -135.99945068359375, -135.6940460205078, -135.38865661621094, -135.083251953125, -134.77786254882812, -134.4724578857422, -134.1670684814453, -133.86166381835938, -133.5562744140625, -133.25086975097656, -132.9454803466797, -132.64007568359375, -132.33468627929688, -132.02928161621094, -131.723876953125, -131.41848754882812, -131.1130828857422, -130.8076934814453, -130.50228881835938, -130.1968994140625, -129.89149475097656, -129.5861053466797, -129.28070068359375, -128.97531127929688, -128.66990661621094, -128.36451721191406, -128.05911254882812, -127.75371551513672, -127.44831848144531, -127.1429214477539, -126.8375244140625, -126.5321273803711, -126.22673034667969, -125.92133331298828, -125.61593627929688, -125.31053924560547, -125.00514221191406, -124.69973754882812, -124.39434051513672, -124.08894348144531, -123.7835464477539, -123.4781494140625, -123.1727523803711, -122.86735534667969, -122.56195831298828, -122.25656127929688, -121.95116424560547, -121.64576721191406, -121.34037017822266, -121.03497314453125, -120.72957611083984, -120.42417907714844, -120.1187744140625, -119.8133773803711, -119.50798034667969, -119.20258331298828, -118.89718627929688, -118.59178924560547, -118.28639221191406, -117.98099517822266, -117.67559814453125, -117.37020111083984, -117.06480407714844, -116.75940704345703, -116.45401000976562, -116.14861297607422, -115.84321594238281, -115.53781127929688, -115.23241424560547, -114.92701721191406, -114.62162017822266, -114.31622314453125, -114.01082611083984, -113.70542907714844, -113.40003204345703, -113.09463500976562, -112.78923797607422, -112.48384094238281, -112.1784439086914, -111.873046875, -111.56764221191406, -111.26225280761719, -110.95684814453125, -110.65145874023438, -110.34605407714844, -110.04065704345703, -109.73526000976562, -109.42986297607422, -109.12446594238281, -108.8190689086914, -108.513671875, -108.2082748413086, -107.90287780761719, -107.59748077392578, -107.29208374023438, -106.98667907714844, -106.68128967285156, -106.37588500976562, -106.07049560546875, -105.76509094238281, -105.4596939086914, -105.154296875, -104.8488998413086, -104.54350280761719, -104.23810577392578, -103.93270874023438, -103.62731170654297, -103.32191467285156, -103.01651000976562, -102.71112060546875, -102.40571594238281, -102.10032653808594, -101.794921875, -101.48953247070312, -101.18412780761719, -100.87873077392578, -100.57333374023438, -100.2679443359375, -99.96253967285156, -99.65714263916016, -99.35174560546875, -99.04634857177734, -98.74095153808594, -98.435546875, -98.13015747070312, -97.82475280761719, -97.51936340332031, -97.21395874023438, -96.9085693359375, -96.60316467285156, -96.29776763916016, -95.99237060546875, -95.68698120117188, -95.38157653808594, -95.07617950439453, -94.77078247070312, -94.46538543701172, -94.15998840332031, -93.85458374023438, -93.5491943359375, -93.24378967285156, -92.93840026855469, -92.63299560546875, -92.32760620117188, -92.02220153808594, -91.71680450439453, -91.41140747070312, -91.10601043701172, -90.80061340332031, -90.4952163696289, -90.1898193359375, -89.8844223022461, -89.57902526855469, -89.27362060546875, -88.96823120117188, -88.66282653808594, -88.35743713378906, -88.05203247070312, -87.74664306640625, -87.44123840332031, -87.1358413696289, -86.8304443359375, -86.5250473022461, -86.21965026855469, -85.91425323486328, -85.60885620117188, -85.30345916748047, -84.99806213378906, -84.69266510009766, -84.38726806640625, -84.08186340332031, -83.77647399902344, -83.4710693359375, -83.16567993164062, -82.86027526855469, -82.55487823486328, -82.24948120117188, -81.94408416748047, -81.63868713378906, -81.33329010009766, -81.02789306640625, -80.72249603271484, -80.41709899902344, -80.11170196533203, -79.80630493164062, -79.50090026855469, -79.19551086425781, -78.89010620117188, -78.584716796875, -78.27931213378906, -77.97392272949219, -77.66851806640625, -77.36312103271484, -77.05772399902344, -76.75232696533203, -76.44692993164062, -76.14153289794922, -75.83613586425781, -75.5307388305664, -75.225341796875, -74.91993713378906, -74.61454772949219, -74.30914306640625, -74.00375366210938, -73.69834899902344, -73.39295959472656, -73.08755493164062, -72.78215789794922, -72.47676086425781, -72.1713638305664, -71.865966796875, -71.5605697631836, -71.25517272949219, -70.94977569580078, -70.64437866210938, -70.33897399902344, -70.03358459472656, -69.72818756103516, -69.42278289794922, -69.11739349365234, -68.8119888305664, -68.506591796875, -68.2011947631836, -67.89579772949219, -67.59040069580078, -67.28500366210938, -66.97960662841797, -66.67420959472656, -66.36881256103516, -66.06341552734375, -65.75801849365234, -65.4526138305664, -65.147216796875, -64.84182739257812, -64.53642272949219, -64.23102569580078, -63.925636291503906, -63.62023162841797, -63.31483459472656, -63.00944519042969, -62.70404052734375, -62.398643493652344, -62.093238830566406, -61.78784942626953, -61.482452392578125, -61.17704772949219, -60.87165832519531, -60.566261291503906, -60.26085662841797, -59.955467224121094, -59.65007019042969, -59.34466552734375, -59.039268493652344, -58.73387145996094, -58.42847442626953, -58.123077392578125, -57.81768035888672, -57.51228332519531, -57.206886291503906, -56.90148162841797, -56.596092224121094, -56.29069519042969, -55.98529052734375, -55.679901123046875, -55.37449645996094, -55.06909942626953, -54.763710021972656, -54.45830535888672, -54.15290832519531, -53.847511291503906, -53.5421142578125, -53.236717224121094, -52.93132019042969, -52.62592315673828, -52.320526123046875, -52.01512145996094, -51.70973205566406, -51.404335021972656, -51.09893035888672, -50.79353332519531, -50.48814392089844, -50.1827392578125, -49.877342224121094, -49.57195281982422, -49.26654815673828, -48.961151123046875, -48.65575408935547, -48.35035705566406, -48.044960021972656, -47.73955535888672, -47.434165954589844, -47.12876892089844, -46.8233642578125, -46.517974853515625, -46.21257781982422, -45.90717315673828, -45.601776123046875, -45.29637908935547, -44.99098205566406, -44.685585021972656, -44.38018798828125, -44.074790954589844, -43.76939392089844, -43.46399688720703, -43.158599853515625, -42.85320281982422, -42.54779815673828, -42.242408752441406, -41.93700408935547, -41.63160705566406, -41.32621765136719, -41.02081298828125, -40.715415954589844, -40.41002655029297, -40.10462188720703, -39.799224853515625, -39.49382781982422, -39.18843078613281, -38.883033752441406, -38.57762908935547, -38.272239685058594, -37.96684265136719, -37.66143798828125, -37.356040954589844, -37.05065155029297, -36.74524688720703, -36.439849853515625, -36.13446044921875, -35.82905578613281, -35.523658752441406, -35.21826171875, -34.912864685058594, -34.60746765136719, -34.30206298828125, -33.996673583984375, -33.69127655029297, -33.38587188720703, -33.080482482910156, -32.77508544921875, -32.46968078613281, -32.16429138183594, -31.85888671875, -31.553489685058594, -31.248092651367188, -30.94269561767578, -30.637298583984375, -30.33190155029297, -30.026504516601562, -29.721107482910156, -29.41571044921875, -29.110305786132812, -28.804916381835938, -28.49951171875, -28.194114685058594, -27.88872528076172, -27.58332061767578, -27.277923583984375, -26.9725341796875, -26.667129516601562, -26.361732482910156, -26.05633544921875, -25.750938415527344, -25.445541381835938, -25.14013671875, -24.834747314453125, -24.52935028076172, -24.22394561767578, -23.918556213378906, -23.6131591796875, -23.307754516601562, -23.002357482910156, -22.69696807861328, -22.391563415527344, -22.086166381835938, -21.780776977539062, -21.475372314453125, -21.16997528076172, -20.864578247070312, -20.559181213378906, -20.2537841796875, -19.948379516601562, -19.642990112304688, -19.33759307861328, -19.032188415527344, -18.72679901123047, -18.421401977539062, -18.115997314453125, -17.81060028076172, -17.505203247070312, -17.199806213378906, -16.8944091796875, -16.589012145996094, -16.283615112304688, -15.978218078613281, -15.672821044921875, -15.367424011230469, -15.062026977539062, -14.756622314453125, -14.45123291015625, -14.145828247070312, -13.840431213378906, -13.535041809082031, -13.229637145996094, -12.924240112304688, -12.618850708007812, -12.313446044921875, -12.008049011230469, -11.702651977539062, -11.397254943847656, -11.09185791015625, -10.786453247070312, -10.481063842773438, -10.175666809082031, -9.870262145996094, -9.564872741699219, -9.259475708007812, -8.954071044921875, -8.648674011230469, -8.343276977539062, -8.037887573242188, -7.73248291015625, -7.427093505859375, -7.1216888427734375, -6.8162841796875, -6.510894775390625, -6.20550537109375, -5.9001007080078125, -5.594696044921875, -5.289306640625, -4.9839019775390625, -4.6785125732421875, -4.37310791015625, -4.0677032470703125, -3.7623138427734375, -3.4569244384765625, -3.151519775390625, -2.84613037109375, -2.5407257080078125, -2.235321044921875, -1.929931640625, -1.624542236328125, -1.3191375732421875, -1.01373291015625, -0.708343505859375, -0.4029388427734375, -0.0975494384765625, 0.207855224609375, 0.51324462890625, 0.8186492919921875, 1.124053955078125, 1.429443359375, 1.734832763671875, 2.0402374267578125, 2.34564208984375, 2.651031494140625, 2.9564361572265625, 3.2618255615234375, 3.5672149658203125, 3.87261962890625, 4.1780242919921875, 4.4834136962890625, 4.788818359375, 5.094207763671875, 5.39959716796875, 5.70501708984375, 6.010406494140625, 6.3158111572265625, 6.6212005615234375, 6.9265899658203125, 7.23199462890625, 7.5373992919921875, 7.8427886962890625, 8.148193359375, 8.453582763671875, 8.75897216796875, 9.06439208984375, 9.369781494140625, 9.6751708984375, 9.980575561523438, 10.285964965820312, 10.591354370117188, 10.896774291992188, 11.202163696289062, 11.507568359375, 11.812957763671875, 12.11834716796875, 12.42376708984375, 12.729156494140625, 13.0345458984375, 13.339950561523438, 13.645339965820312, 13.950729370117188, 14.256149291992188, 14.561538696289062, 14.866928100585938, 15.172332763671875, 15.47772216796875, 15.783126831054688])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_34fb4ff20431c2091cbdb6d71b8855e0.x = d3.scale.linear()\\n\",\n       \"              .domain([-136.61024475097656, 15.783126831054688])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_34fb4ff20431c2091cbdb6d71b8855e0.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_34fb4ff20431c2091cbdb6d71b8855e0.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_34fb4ff20431c2091cbdb6d71b8855e0.legend.addTo(map_7411a723657a8fa92ed8001bab849dcd);\\n\",\n       \"\\n\",\n       \"    color_map_34fb4ff20431c2091cbdb6d71b8855e0.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_34fb4ff20431c2091cbdb6d71b8855e0.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-136.61024475097656, &#x27;&#x27;, &#x27;&#x27;, -113.75123596191406, &#x27;&#x27;, &#x27;&#x27;, -90.8922348022461, &#x27;&#x27;, &#x27;&#x27;, -68.03323364257812, &#x27;&#x27;, &#x27;&#x27;, -45.174224853515625, &#x27;&#x27;, &#x27;&#x27;, -22.315216064453125, &#x27;&#x27;, &#x27;&#x27;, 0.5437774658203125, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_34fb4ff20431c2091cbdb6d71b8855e0.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_34fb4ff20431c2091cbdb6d71b8855e0.g = color_map_34fb4ff20431c2091cbdb6d71b8855e0.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_34fb4ff20431c2091cbdb6d71b8855e0.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_34fb4ff20431c2091cbdb6d71b8855e0.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_34fb4ff20431c2091cbdb6d71b8855e0.x(color_map_34fb4ff20431c2091cbdb6d71b8855e0.color.domain()[i - 1]) : color_map_34fb4ff20431c2091cbdb6d71b8855e0.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_34fb4ff20431c2091cbdb6d71b8855e0.color.domain().length ? color_map_34fb4ff20431c2091cbdb6d71b8855e0.x(color_map_34fb4ff20431c2091cbdb6d71b8855e0.color.domain()[i]) : color_map_34fb4ff20431c2091cbdb6d71b8855e0.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_34fb4ff20431c2091cbdb6d71b8855e0.g.call(color_map_34fb4ff20431c2091cbdb6d71b8855e0.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_6bbece630da0ef6542900386549548ff = L.heatLayer(\\n\",\n       \"                [[22.7629, 113.257, -1.755747675895691], [22.6411, 110.1675, 7.163414001464844], [38.5339, 102.1725, -8.737442970275879], [23.6714, 116.6339, -7.136613845825195], [31.1956, 107.5069, -7.283564567565918], [32.8603, 115.8556, -18.967561721801758], [23.0395, 113.105, 0.08409205079078674], [31.371, 119.794, -2.248436450958252], [31.2797, 107.5272, -8.257164001464844], [37.4967, 121.2611, 7.381459712982178], [27.7569, 111.9561, 9.921904563903809], [37.1152, 79.9485, -108.21721649169922], [28.6425, 115.892, -7.011909008026123], [39.0927, 117.202, -4.3775482177734375], [29.5186, 106.54, 1.4593199491500854], [30.2311, 119.6942, -2.9153008460998535], [24.339, 102.5381, 13.626734733581543], [33.0069, 114.0131, -25.700763702392578], [37.0533, 114.5261, -24.241003036499023], [29.4758, 113.2621, -11.147965431213379], [26.3108, 117.7275, -4.732585430145264], [32.1403, 114.0122, -25.226415634155273], [21.2679, 110.3316, -1.8618674278259277], [43.895, 81.2867, -105.85054779052734], [41.5931, 120.4439, 0.7530586123466492], [39.5747, 116.7729, -6.025965690612793], [28.4303, 117.9033, -8.11646842956543], [38.885, 121.5638889, 6.052970886230469], [36.4343, 116.0072, -14.342586517333984], [24.9424, 118.6663, -6.653568267822266], [37.9854, 112.549, -30.421266555786133], [36.6867, 101.524, -14.338544845581055], [45.0878, 124.8292, -18.025604248046875], [26.5917, 104.83, 12.622785568237305], [25.1035, 117.0216, -4.734970569610596], [31.955, 119.146, -9.007844924926758], [30.6145, 116.9894, -21.1562557220459], [35.0992, 117.4518, -6.9561991691589355], [37.374, 120.399, 4.802507400512695], [43.85, 125.217, -10.35055160522461], [41.0971, 122.9642, 5.933534145355225], [41.0385, 113.1076, -15.056756019592285], [21.2706, 110.3539, -1.8906556367874146], [47.3386, 123.9305, -33.892730712890625], [31.751, 119.579, -4.494543075561523], [32.7639, 116.8028, -16.171133041381836], [23.7569, 114.6778, -2.5174341201782227], [38.2911, 109.7456, -27.688974380493164], [36.9639, 100.9048, -12.370817184448242], [47.9047, 88.1214, -85.27437591552734], [36.0417, 111.4917, -36.763824462890625], [29.3628, 104.7547, -0.3704076111316681], [30.8811, 117.7442, -19.90439224243164], [26.6343, 106.7487, 11.740572929382324], [29.3547, 110.5594, 0.4598480463027954], [32.3153, 118.3094, -13.41491985321045], [24.3406, 109.3886, 14.379866600036621], [34.2572, 109.06, -38.5131721496582], [27.8403, 112.9118, 7.717528820037842], [35.4934, 112.835, -31.800342559814453], [27.8042, 114.9119, 2.2629034519195557], [28.6869, 115.852, -7.43917989730835], [34.3672, 107.1906, -32.28048324584961], [29.8633, 121.586, 9.355323791503906], [37.4514, 105.0197, -16.731184005737305], [36.913, 121.531, 8.694228172302246], [38.0513, 114.4548, -24.08541488647461], [37.8692, 112.5369, -30.823863983154297], [32.0197, 112.155, -28.617523193359375], [30.7525, 120.7844444, 5.880780220031738], [27.7231, 109.1794, 10.160508155822754], [39.0153, 106.3717, -13.938970565795898], [31.3508, 118.3528, -16.295469284057617], [23.0467, 113.144, -0.01966176927089691], [23.1617, 112.565, 2.7351856231689453], [34.7822, 111.19, -37.152095794677734], [29.077, 119.647, -1.0669186115264893], [37.3753, 97.3731, -8.760007858276367], [23.3594, 104.2533, 13.55640697479248], [32.5714, 110.8839, -30.8981876373291], [46.6462, 131.1516, -43.3834114074707], [27.2944, 105.31, 9.479806900024414], [32.4639, 119.888, -1.174267053604126], [39.0845, 117.1589, -4.485626220703125], [37.4314, 118.6672, 0.39236828684806824], [30.1366, 104.6617, -4.32335901260376], [31.3264, 120.596, 4.842044830322266], [36.6275, 109.4131, -34.69514465332031], [23.5538, 113.589, 0.585411012172699], [22.8054, 113.292, -1.6613489389419556], [24.3898, 109.4883, 14.247357368469238], [42.3022, 123.8139, 0.45174023509025574], [27.1311, 114.99, 2.374716281890869], [40.9733, 117.8184, -4.66028356552124], [40.7612, 111.717, -17.30654525756836], [31.2071, 121.577, 11.289264678955078], [36.253, 120.014, 3.7612996101379395], [32.9917, 112.5192, -30.237565994262695], [28.3586, 112.9958, 4.412700653076172], [29.2958, 117.2111, -16.174076080322266], [27.8072, 114.4011, 3.791053056716919], [47.203, 123.6261, -32.46088409423828], [39.3265, 112.4078, -24.451387405395508], [41.0833, 122.9481, 5.979520320892334], [34.2629, 108.993, -38.4289436340332], [45.5828, 84.8897, -90.45782470703125], [31.215, 107.525, -7.538937568664551], [39.16969, 117.2099, -4.442286491394043], [27.5342, 109.9792, 10.525307655334473], [38.4186, 112.7356, -28.656084060668945], [41.2692, 123.7989, 5.409271240234375], [31.6411, 118.4828, -14.736912727355957], [39.4365, 75.9435, -136.61024475097656], [28.9664, 118.871, -6.188000202178955], [23.1036, 109.5683, 11.1229887008667], [36.0822, 111.5169, -36.650840759277344], [36.885, 120.515, 5.303984642028809], [26.4214, 111.6156, 9.89319896697998], [34.719, 113.734, -26.593753814697266], [42.0186, 121.6561, 1.7073646783828735], [30.63, 104.1113889, -8.10924243927002], [47.7222, 128.8736, -45.48337936401367], [41.7381, 125.9486, 0.459825724363327], [29.355, 113.2117, -9.289441108703613], [45.1642, 124.8528, -18.657917022705078], [34.7772, 111.1928, -37.13560104370117], [33.027, 112.5573, -30.19202423095703], [42.2814, 118.9233, -2.391688585281372], [28.5773, 121.377, 6.139060974121094], [43.95305556, 126.4738889, -13.055376052856445], [32.6778, 109.0311, -29.391620635986328], [29.389, 106.513, 1.7432228326797485], [32.6319, 116.8306, -16.38622283935547], [22.5978, 114.297, -5.7047624588012695], [27.6869, 106.9222, 8.203784942626953], [32.0314, 118.803, -11.445822715759277], [29.1029, 119.686, -0.8266002535820007], [33.581, 114.014, -25.67627716064453], [33.8561, 115.7831, -17.870201110839844], [28.2597, 112.9792, 5.2791361808776855], [43.7878, 125.454, -10.282060623168945], [36.6106, 109.5056, -35.0850715637207], [23.02777778, 113.7461111, -2.2164762020111084], [28.6844, 115.893, -7.48655891418457], [33.9506, 118.3214, -5.964666366577148], [30.8217, 106.1031, -4.486602306365967], [41.7128, 86.2381, -66.95301055908203], [23.1478, 109.5681, 11.33244514465332], [29.261, 91.7706, -16.83121681213379], [39.0877, 117.307, -4.126903057098389], [28.4231, 119.879, 0.6065272092819214], [45.2978, 130.9298, -33.2093620300293], [27.725, 111.9975, 9.894482612609863], [31.2284, 121.533, 11.04030704498291], [41.1196, 123.044, 5.8779401779174805], [42.8328, 93.4961, -30.500993728637695], [36.5819, 101.834, -15.245089530944824], [30.9697, 117.8472, -19.374357223510742], [40.0031, 116.407, -7.541200160980225], [36.881, 118.746, 0.6682485938072205], [34.2761, 117.167, -10.524673461914062], [26.6029, 106.6856, 11.860360145568848], [35.7306, 114.2878, -24.699007034301758], [34.6258, 112.4275, -32.329158782958984], [36.865, 120.537, 5.363555908203125], [30.5719, 114.3672, -22.179595947265625], [35.5051, 112.85, -31.75084114074707], [29.6588, 90.9798, -22.02665901184082], [32.3761, 119.389, -6.247280120849609], [36.2866, 100.6188, -13.681137084960938], [43.1747, 124.3419, -5.353483200073242], [39.8673, 116.366, -7.629800319671631], [40.8452, 111.659, -16.953588485717773], [29.2647, 117.1558, -15.884859085083008], [27.8614, 112.9433, 7.53708028793335], [23.475, 111.3178, 8.401707649230957], [39.5453, 116.7022, -6.181914329528809], [28.5808, 112.3458, 3.6639256477355957], [36.5336, 116.734, -9.361149787902832], [36.2289, 117.6789, -3.4127678871154785], [23.65889, 116.6183, -7.149522304534912], [33.8997, 116.8067, -12.907194137573242], [23.7586, 114.6944, -2.5678720474243164], [41.8417, 123.7117, 2.9936628341674805], [29.6535, 116.0174, -18.324512481689453], [46.6384, 126.9934, -33.79660415649414], [41.2864, 123.7669, 5.346151351928711], [27.8244, 113.135, 7.192266941070557], [29.5822, 105.0406, -1.1156189441680908], [29.6632, 94.3616, -3.6936848163604736], [45.7667, 126.635, -26.445396423339844], [38.2478, 109.7336, -27.892009735107422], [34.5911, 119.1478, -1.3739992380142212], [39.6407, 118.1853, -2.8084704875946045], [26.5892, 104.8, 12.645392417907715], [31.354, 119.818, -2.0010643005371094], [36.6622, 117.049, -6.8635573387146], [19.9969, 110.338, -9.94589614868164], [35.428, 116.6305, -11.159965515136719], [37.364, 120.394, 4.799369812011719], [26.0542, 119.389, -4.632826805114746], [31.155, 120.636, 5.035843372344971], [22.2281, 113.299, -4.650924205780029], [23.63444, 113.0472, 2.9894073009490967], [23.3892, 104.2319, 13.613006591796875], [43.8748, 125.3649, -10.673908233642578], [31.03389, 112.1908, -24.291431427001953], [23.2775, 116.7258, -8.20573902130127], [35.4144, 116.5856, -11.376053810119629], [35.3962, 119.54, 1.5636576414108276], [40.1952, 116.23, -8.223264694213867], [29.3578, 113.1094, -9.07793140411377], [46.0347, 124.8354, -25.549070358276367], [47.3382, 130.1097, -45.59650421142578], [40.916, 107.5936, -7.967426300048828], [41.9339, 123.6836, 2.5659847259521484], [22.96583333, 113.7383333, -2.4921610355377197], [36.6872, 116.989, -7.262216091156006], [34.7538, 113.6356, -27.077383041381836], [31.7308, 113.3983, -25.98849868774414], [35.04388889, 111.0522222, -37.928707122802734], [35.9019, 114.17, -25.53705596923828], [27.5733, 109.9333, 10.498440742492676], [33.6347, 114.6758, -22.93340301513672], [32.1078, 114.1044, -24.96167755126953], [22.4853, 113.4411, -3.792245626449585], [43.8875, 126.555, -12.799420356750488], [33.6067, 118.989, -4.651707649230957], [29.5867, 115.9936, -17.700021743774414], [34.1978, 108.985, -38.276123046875], [25.0311, 117.0151, -4.800768852233887], [27.11, 114.9739, 2.4409666061401367], [30.21, 120.211, 1.9479992389678955], [26.9258, 112.6194, 8.0109281539917], [46.7588, 130.3794, -42.205474853515625], [35.4813, 112.8252, -31.82462501525879], [39.9279, 116.225, -8.17065715789795], [34.3181, 108.6761, -38.00012969970703], [24.769519, 113.586606, 4.858741283416748], [30.5103, 117.0549, -21.24860191345215], [40.7579, 111.651, -17.30418586730957], [37.0964, 114.5331, -24.243534088134766], [49.2261, 119.7594, -44.536415100097656], [25.4792, 118.981, -5.717520713806152], [38.80805556, 121.2588889, 5.194174766540527], [28.2053, 113.0792, 5.3939619064331055], [40.8144, 111.608, -17.05686378479004], [42.8953, 125.1567, -4.731152057647705], [24.6928, 108.054, 15.685171127319336], [32.0878, 118.626, -12.465376853942871], [29.7207, 118.3236, -15.241226196289062], [36.838, 118.0448, -1.5271928310394287], [29.9899, 103.0013, -5.41739559173584], [32.64600333, 117.0411667, -15.749940872192383], [22.6069, 113.104, -2.0404789447784424], [22.805, 108.383, 11.490419387817383], [21.4689, 111.0286, -2.2340667247772217], [21.6828, 110.8592, -0.4929945766925812], [30.696, 111.268, -19.461681365966797], [22.5111, 113.4075, -3.561918020248413], [43.831, 87.6432, -66.55381774902344], [33.5653, 114.0322, -25.606401443481445], [35.5714, 104.6228, -20.87557601928711], [26.6607, 119.5202, -2.7432119846343994], [31.317, 119.438, -6.33912992477417], [31.5631, 120.245, 2.129032611846924], [29.8181, 114.3036, -17.246858596801758], [25.0124, 102.743, 13.906892776489258], [31.2994, 120.543, 4.432426929473877], [34.1546, 108.906, -38.05325698852539], [31.0483, 112.2014, -24.392688751220703], [30.2997, 113.8531, -20.82963752746582], [39.625, 121.989, 6.020838260650635], [40.7736, 120.8631, 2.613250970840454], [35.27, 115.455, -17.64422035217285], [29.8272, 106.379, -0.02088906243443489], [30.0874, 103.8416, -5.4679341316223145], [29.41569, 106.5506, 1.795204758644104], [27.2537, 111.4503, 9.897259712219238], [24.2719, 116.0797, -4.630875110626221], [47.3349, 130.2659, -45.9479866027832], [25.0359, 102.638, 13.807260513305664], [30.2692, 120.19, 1.7595241069793701], [27.0658, 114.9817, 2.4465582370758057], [25.8179, 113.0119, 7.531850814819336], [26.2403, 107.5228, 13.254829406738281], [32.4285, 105.8624, -13.354710578918457], [31.2659, 121.536, 11.051407814025879], [35.5997, 103.2064, -19.016016006469727], [34.9162, 113.6113, -27.30752944946289], [38.49494, 106.1024, -15.4358549118042], [32.4867, 119.9, -1.0373313426971436], [39.1654, 117.145, -4.590745449066162], [41.0903, 122.0539, 4.899376392364502], [23.3917, 113.215, 1.3104325532913208], [31.1333, 104.3883, -9.923418045043945], [34.6972, 119.3581, -0.30435582995414734], [42.8172, 93.5128, -30.332557678222656], [22.6164, 110.1433, 7.0958404541015625], [45.8167, 126.561, -26.714942932128906], [31.8766, 117.307, -17.759756088256836], [34.3622, 107.2386, -32.48986053466797], [25.5364, 103.8, 14.31949520111084], [22.5545, 114.1063, -5.387208938598633], [43.9311, 116.0781, -8.10383415222168], [37.5211, 111.1406, -33.76636505126953], [47.7317, 128.9094, -45.63241195678711], [41.7972, 123.3997, 3.3265926837921143], [23.3993, 103.3772, 12.865897178649902], [46.5776, 125.1386, -30.092655181884766], [43.8303, 87.5801, -66.93106842041016], [30.5947, 114.3008, -22.278106689453125], [26.2081, 111.6217, 10.067924499511719], [27.6442, 113.8686, 5.490195274353027], [39.2282, 106.7704, -14.17910385131836], [42.2556, 118.8789, -2.4338772296905518], [26.3003, 106.805, 13.047113418579102], [29.57278, 106.4042, 0.8385674953460693], [23.0916, 113.348, -0.5053933262825012], [36.6114, 116.988, -7.360648155212402], [41.1386, 121.1303, 2.982151508331299], [45.8194, 130.8625, -36.725425720214844], [33.721, 113.322, -28.309499740600586], [31.896, 121.173, 8.879801750183105], [31.7848, 117.196, -18.149799346923828], [26.8906, 100.2203, 8.916985511779785], [24.795928, 113.598061, 4.886688709259033], [39.9567, 119.6023, -0.7983309626579285], [32.18888889, 119.4369444, -6.013817310333252], [34.9817, 118.2764, -2.730414628982544], [36.5481, 104.1731, -18.070653915405273], [26.5495, 106.6867, 12.079416275024414], [44.1564, 87.9897, -65.9659652709961], [37.7111, 112.7306, -30.940364837646484], [26.4364, 111.5992, 9.906210899353027], [39.617, 122.011, 6.08912992477417], [26.6514, 118.1819, -3.9060397148132324], [40.9843, 117.9525, -4.43842887878418], [22.0019, 100.7939, 5.022766590118408], [21.5958, 109.2256, 2.4158172607421875], [34.7967, 114.2886, -23.980850219726562], [25.0492, 101.538, 12.867379188537598], [31.9286, 102.1755, -14.261750221252441], [26.567, 101.7227, 10.458869934082031], [36.0725, 103.841, -18.754030227661133], [39.3179, 112.4254, -24.502948760986328], [26.5155, 106.6948, 12.217656135559082], [22.7875, 108.301, 11.471572875976562], [29.7534, 116.0726, -18.961063385009766], [33.627, 119.0122, -4.486187934875488], [34.2778, 117.2933, -9.935988426208496], [32.8913, 117.4186, -13.938496589660645], [39.7884, 109.9734, -20.01418685913086], [30.475, 105.5956, -4.7600321769714355], [34.6686, 112.4433, -32.3205451965332], [35.0611, 111.0233, -38.030494689941406], [23.4794, 111.26, 8.60286808013916], [30.72358333, 103.97275, -8.672300338745117], [46.8025, 130.2719, -42.2315673828125], [32.02, 120.87, 7.222321510314941], [32.0417, 120.81, 6.849106788635254], [37.187, 122.019, 9.880233764648438], [38.0398, 114.6046, -23.238758087158203], [36.086, 114.32, -24.80208969116211], [25.9061, 113.0073, 7.647496700286865], [24.77908333, 113.6734722, 4.574227809906006], [41.0781, 121.0986, 2.9992997646331787], [37.197, 122.038, 9.907909393310547], [31.92, 120.302, 2.764547824859619], [39.8129, 110.0023, -19.93691062927246], [36.71, 117.541, -3.674058437347412], [32.3292, 119.8767, -1.313344955444336], [28.8833, 105.4322, 1.9157261848449707], [34.4286, 115.6697, -17.332738876342773], [30.2897, 120.157, 1.489310383796692], [22.9394, 112.0369, 3.472639560699463], [29.305, 120.091, 1.6663697957992554], [26.9056, 112.5664, 8.109759330749512], [26.4519, 111.5989, 9.89777946472168], [25.0925, 104.9022, 15.591134071350098], [26.6383, 118.1694, -3.932774305343628], [30.0033, 120.7789, 5.787731647491455], [36.4372, 115.9848, -14.474721908569336], [42.2217, 123.7153, 0.9931209087371826], [31.5072, 104.7283, -10.918244361877441], [37.7379, 115.6426, -17.04444122314453], [34.794, 111.158, -37.260215759277344], [30.1808, 120.088, 0.9861534237861633], [35.1764, 113.2464, -29.38808822631836], [27.8136, 99.7064, 6.030694961547852], [30.4133, 114.8131, -21.26922607421875], [30.1377, 104.6289, -4.390273094177246], [28.19, 112.9394, 5.814635276794434], [29.635, 119.026, -8.017583847045898], [33.5981, 119.036, -4.471205234527588], [42.0503, 121.6972, 1.6489096879959106], [34.0117, 113.8331, -26.282808303833008], [29.5634, 103.757, -2.3475940227508545], [32.5, 80.1161, -113.37359619140625], [30.3119, 120.12, 1.184458613395691], [29.33972, 104.7228, -0.27437910437583923], [41.1042, 121.835, 4.465299129486084], [37.8564, 113.5753, -28.09745979309082], [31.17, 120.635, 5.037289619445801], [33.4022, 120.118, 1.3941084146499634], [38.8707, 115.5214, -13.353440284729004], [38.6016, 105.9512, -14.594518661499023], [38.0524, 114.5214, -23.729902267456055], [37.18, 119.959, 3.7548539638519287], [21.9508, 108.6553, 5.815596103668213], [21.6533, 110.9294, -0.8443322777748108], [36.8198, 118.3092, -0.7112268805503845], [32.965, 114.018, -25.678421020507812], [46.0872, 85.6931, -88.21763610839844], [28.1944, 113.0014, 5.645981311798096], [29.1389, 110.48, 3.0591437816619873], [45.2948, 131.0103, -33.43434143066406], [30.4865, 106.6351, -1.8016128540039062], [34.802, 113.564, -27.446300506591797], [41.5647, 120.4247, 0.7412101030349731], [33.6481, 116.9765, -12.913104057312012], [43.1847, 124.3897, -5.466926574707031], [30.698, 111.2992, -19.60666275024414], [34.5653, 105.8614, -25.17691421508789], [22.5328, 113.024, -2.164722442626953], [23.1142, 114.4103, -4.167993068695068], [34.2153, 117.256, -10.266210556030273], [32.6975, 109.0072, -29.499229431152344], [25.4552, 119.0018, -5.7714009284973145], [30.51197222, 117.0331111, -21.239479064941406], [37.4442, 118.5857, 0.18553116917610168], [28.2264, 117.0222, -6.998085975646973], [34.9058, 108.9344, -38.85647964477539], [31.6908, 113.3833, -25.953214645385742], [28.0005, 116.3574, -3.7767415046691895], [32.395, 111.0419, -30.187423706054688], [35.31, 113.836, -26.561866760253906], [23.3667, 116.6794, -7.874958038330078], [34.3469, 106.005, -25.088092803955078], [25.8071, 113.0383, 7.452068328857422], [32.3061, 118.3158, -13.419721603393555], [40.7608, 107.4211, -8.293875694274902], [35.0697, 109.0697, -38.95976638793945], [44.5952, 129.5902, -24.585773468017578], [37.8531, 113.6292, -27.899747848510742], [40.3937, 116.644, -6.95897912979126], [30.3714, 114.8989, -21.012557983398438], [31.2261, 121.425, 10.423468589782715], [40.6592, 122.2414, 5.9962944984436035], [21.8536, 111.9508, -2.5536768436431885], [40.7136, 120.9092, 2.7563722133636475], [27.3392, 103.7032, 9.305004119873047], [41.1222, 121.1178, 2.9912452697753906], [26.4364, 106.6554, 12.523911476135254], [38.4841, 106.2739, -16.02523422241211], [37.393, 117.9776, -1.625578761100769], [29.9816, 103.0001, -5.358643531799316], [33.1138, 107.0089, -24.789546966552734], [38.9846, 117.3747, -3.8648500442504883], [23.05361111, 113.7819444, -2.2221834659576416], [25.2708, 110.3089, 12.334816932678223], [29.315, 110.4417, 1.4084635972976685], [31.7956, 117.302, -18.035625457763672], [35.767, 115.0772, -19.831602096557617], [24.3663, 109.3957, 14.375821113586426], [29.8506, 121.524, 9.09251594543457], [43.8256, 126.55, -12.388402938842773], [27.72, 106.9178, 8.075206756591797], [27.8036, 114.9314, 2.1855554580688477], [36.8041, 117.8512, -2.2115819454193115], [36.907, 121.544, 8.740002632141113], [29.2718, 88.8876, -41.01042938232422], [25.5035, 103.7897, 14.363419532775879], [40.8369, 111.751, -17.02413558959961], [39.0631, 121.9769, 6.859717845916748], [33.9592, 118.2442, -6.240973949432373], [33.63063889, 116.989, -12.919084548950195], [41.0831, 123.0156, 6.005209922790527], [39.6308, 118.1662, -2.8257570266723633], [23.0528, 114.4183, -4.431978702545166], [30.4742, 114.9028, -21.349628448486328], [30.6578, 104.054, -8.286849975585938], [21.7631, 108.3511, 4.915313720703125], [42.9409, 89.191, -53.55719757080078], [41.3369, 123.7528, 5.167163848876953], [30.2747, 120.063, 0.7322465181350708], [35.2375, 115.474722, -17.557533264160156], [46.6572, 131.1638, -43.48823547363281], [29.2365, 88.8931, -41.02981185913086], [36.0022, 106.2792, -24.93345069885254], [33.739, 113.292, -28.42249870300293], [30.5797, 105.7519, -4.757152557373047], [37.7805, 112.488, -31.20332145690918], [28.9026, 105.4436, 1.8340917825698853], [30.3515, 112.2068, -18.94485092163086], [35.6039, 103.2139, -19.020687103271484], [37.9844, 106.2025, -17.780637741088867], [33.7214, 113.3064, -28.36684799194336], [35.0994, 109.0656, -38.90461349487305], [38.00583333, 114.4586111, -24.133516311645508], [36.7008, 119.1425, 1.644134521484375], [25.0992, 104.8811, 15.572907447814941], [35.1147, 111.0414, -38.052406311035156], [32.0723, 118.778, -11.513218879699707], [34.7496, 113.5991, -27.247087478637695], [30.2366, 119.7183, -2.659987688064575], [24.44583333, 118.0636111, -7.0679030418396], [23.5353, 116.3697, -7.152956485748291], [37.3803, 118.0062, -1.5071221590042114], [43.8947, 126.5786, -12.893765449523926], [31.5031, 120.242, 2.1017425060272217], [40.8367, 114.8985, -11.516023635864258], [37.5639, 121.2514, 7.27193021774292], [30.6463, 111.3549, -19.243080139160156], [25.8417, 98.8546, 9.430480003356934], [27.5578, 109.9972, 10.520376205444336], [46.8032, 130.3648, -42.47655487060547], [42.8939, 129.4892, -14.059036254882812], [34.6692, 112.3628, -32.6405143737793], [30.9414, 117.7806, -19.658063888549805], [29.6514, 91.1319, -20.887319564819336], [24.3304, 109.4108, 14.345612525939941], [28.71583, 104.5761, 3.0442662239074707], [30.3944, 114.8878, -21.10466957092285], [38.03777778, 114.5480556, -23.593700408935547], [23.0786, 112.4722, 2.650972843170166], [46.528, 125.112, -29.677581787109375], [27.2317, 111.4733, 9.8450927734375], [30.7157, 111.3009, -19.81028175354004], [32.9683, 112.55, -30.136079788208008], [31.3008, 121.467, 10.67972469329834], [46.619, 131.1651, -43.236846923828125], [43.9469, 87.4754, -68.1041030883789], [28.8194, 104.5969, 2.4371747970581055], [30.9431, 118.7175, -14.524066925048828], [33.3942, 120.156, 1.710189700126648], [35.5236, 107.6406, -32.888031005859375], [31.8706, 117.259, -17.821063995361328], [32.4429, 105.8242, -13.41379165649414], [32.88922222, 115.7838889, -19.171785354614258], [26.6009, 106.7105, 11.872037887573242], [27.8094, 102.3419, 6.670580863952637], [30.0911, 120.598, 4.689152240753174], [29.6747, 91.1221, -20.942167282104492], [35.4039, 116.5546, -11.5318603515625], [33.5039, 119.135, -4.290297508239746], [46.0707, 122.0931, -22.376346588134766], [34.29, 117.1814, -10.428079605102539], [41.9967, 121.6178, 1.7185137271881104], [34.3739, 107.1186, -31.965068817138672], [23.0048, 113.134, -0.176107719540596], [29.90166667, 121.6147222, 9.548874855041504], [31.671, 120.721, 6.023295879364014], [28.1308, 112.8908, 6.2564826011657715], [34.3164, 108.7369, -38.133060455322266], [34.7837, 117.2852, -8.729035377502441], [42.8775, 129.3675, -13.622759819030762], [35.0003, 102.905, -18.90876579284668], [43.6156, 122.3039, -6.385125637054443], [41.765, 123.41, 3.4613027572631836], [32.939, 117.3961, -13.819525718688965], [36.5767, 109.4824, -35.15980911254883], [34.6231, 112.3844, -32.49574279785156], [27.8847, 102.2689, 6.32580041885376], [43.962, 87.6444, -67.1601791381836], [37.5002, 105.1971, -16.853464126586914], [36.7019, 119.12, 1.5957648754119873], [35.213, 113.227, -29.52326774597168], [40.1503, 124.4256, 9.282803535461426], [31.8108, 119.9736, -0.43661782145500183], [37.8873, 112.522, -30.788921356201172], [33.568, 114.005, -25.71212387084961], [26.8802, 100.2497, 8.960990905761719], [41.8864, 124.0878, 2.3994503021240234], [31.3708, 120.641, 5.204555511474609], [29.6376, 94.3681, -3.6310548782348633], [23.5292, 116.4094, -7.216436386108398], [34.3731, 109.2186, -38.92996597290039], [31.6219, 120.275, 2.4187874794006348], [31.5475, 120.354, 3.165130376815796], [27.8667, 113.167, 6.915233135223389], [41.9206, 126.4047, -1.436956763267517], [40.6821, 109.8538, -15.213563919067383], [42.2953, 123.8831, 0.41974952816963196], [34.2417, 117.192, -10.490191459655762], [36.6164, 114.5426, -23.734210968017578], [41.5672, 120.4486, 0.7826638221740723], [25.1174, 117.0181, -4.7266058921813965], [41.8594, 123.9, 2.745880365371704], [25.8567, 98.8601, 9.429075241088867], [29.5817, 105.0653, -1.0979195833206177], [36.497, 117.8477, -2.2358126640319824], [31.7275, 113.3583, -26.067594528198242], [25.7054, 100.1542, 10.925573348999023], [36.2211, 117.6983, -3.293999195098877], [24.68636111, 113.5970833, 4.607086658477783], [36.0714, 111.5028, -36.698848724365234], [24.81119444, 113.5593889, 5.070553302764893], [29.4402, 112.9943, -9.982226371765137], [35.76806, 115.0061, -20.2744140625], [28.0089, 120.634, 3.3708109855651855], [37.4372, 116.2714, -12.117188453674316], [31.7797, 116.5068, -19.257041931152344], [31.1654, 121.412, 10.30526351928711], [45.8309, 130.9467, -37.04350662231445], [44.8969, 82.0806, -103.92240905761719], [39.7294, 98.5023, -7.161671161651611], [28.4459, 117.973, -8.04164981842041], [23.3682, 103.3758, 12.790504455566406], [24.8885, 102.821, 14.023937225341797], [41.3472, 123.8142, 5.137675762176514], [33.0122, 112.5224, -30.255678176879883], [42.2864, 123.8489, 0.504694938659668], [27.7314, 112.0194, 9.846860885620117], [35.7672, 115.0628, -19.92316436767578], [30.6103, 114.4272, -22.29469871520996], [31.7506, 118.5106, -14.247712135314941], [29.1456, 111.7158, -1.249664545059204], [28.9745, 118.855, -6.341281414031982], [34.6575, 109.2, -39.280826568603516], [23.105, 113.261, -0.1501479595899582], [39.6572, 106.7931, -12.367547988891602], [23.5739, 116.3594, -7.0421295166015625], [31.2108, 107.4967, -7.4022698402404785], [32.625, 116.7039, -16.84493064880371], [28.2675, 109.6958, 9.669795036315918], [32.8985, 117.3065, -14.230206489562988], [41.2894, 123.1417, 5.230005741119385], [30.5706, 104.079, -7.853402137756348], [32.1342, 114.0681, -25.076791763305664], [23.0706, 112.427, 2.7801647186279297], [37.825, 120.747, 5.218955993652344], [34.493, 109.4636, -39.260414123535156], [26.5894, 104.8475, 12.623741149902344], [28.76611, 104.6225, 2.7270681858062744], [31.4747, 104.7778, -10.66837215423584], [32.0564, 112.1392, -28.735111236572266], [32.9735, 112.5003, -30.2575740814209], [25.0441, 101.5482, 12.882043838500977], [26.6611, 119.5392, -2.7349634170532227], [43.6801, 122.2532, -6.745608329772949], [28.8558, 105.4322, 2.052692413330078], [29.6541, 91.1774, -20.574438095092773], [38.2991, 116.8854, -5.123782634735107], [37.154, 122.471, 10.656505584716797], [41.7156, 125.9361, 0.606482207775116], [28.2169, 116.9983, -6.908008098602295], [31.3097, 120.669, 5.365960121154785], [44.0297, 87.2717, -69.7273178100586], [25.8471, 114.8905, 1.8105816841125488], [33.8715, 109.9154, -37.11992263793945], [36.61981, 114.4965, -24.01819610595703], [38.97388889, 121.6119444, 6.065138339996338], [27.8328, 114.9289, 2.132373571395874], [40.0625, 124.3303, 9.586814880371094], [22.5625, 114.117, -5.384181976318359], [45.6886, 85.1186, -89.59740447998047], [38.3228, 116.8709, -5.174599647521973], [40.2865, 116.17, -8.441919326782227], [47.3489, 130.3172, -46.16775131225586], [45.9819, 126.6106, -28.156932830810547], [38.3254, 116.8584, -5.228728294372559], [37.7087, 112.7105, -30.98846435546875], [31.8516, 117.124, -18.024234771728516], [36.8088, 118.0482, -1.5209405422210693], [38.5036, 106.1358, -15.50259017944336], [38.8756, 115.442, -14.013045310974121], [35.0308, 110.9678, -38.13435363769531], [21.865, 111.9494, -2.482717275619507], [31.9051, 117.16, -17.802804946899414], [29.6007, 103.7506, -2.5864129066467285], [41.9419, 126.4078, -1.5546923875808716], [39.0511, 121.7769, 6.386507511138916], [32.0775, 118.795, -11.376382827758789], [46.0703, 122.0506, -22.33903694152832], [27.9639, 116.3598, -3.6276557445526123], [24.4674, 117.6336, -6.491551876068115], [30.049, 119.946, -0.15759006142616272], [34.7997, 111.1489, -37.293121337890625], [22.5497, 113.3881, -3.301412582397461], [34.378, 108.869, -38.48487091064453], [36.4796, 115.9835, -14.51076602935791], [29.334, 120.04, 1.3922693729400635], [31.422, 121.14, 8.767364501953125], [38.91194444, 121.6330556, 6.2236480712890625], [29.6926, 116.0628, -18.642086029052734], [27.6428, 113.8381, 5.574213027954102], [37.43445, 118.696, 0.4574233889579773], [43.55, 125.633, -9.113564491271973], [32.4246, 105.8153, -13.29597282409668], [46.6527, 126.9636, -33.84565353393555], [45.7478, 126.593, -26.211746215820312], [35.28385, 113.5922, -27.765199661254883], [31.8585, 117.336, -17.78767967224121], [30.66, 117.49, -20.861663818359375], [38.95111111, 121.565, 5.956214427947998], [40.1097, 113.3819, -18.93138885498047], [33.0706, 107.0154, -24.441299438476562], [27.8344, 114.9831, 1.907889485359192], [27.9153, 113.0048, 7.125478267669678], [27.3033, 111.5239, 9.895204544067383], [30.518, 106.631, -1.961529016494751], [31.7371, 116.508, -19.345293045043945], [29.6039, 115.9114, -17.701692581176758], [23.8822, 100.0869, 9.870118141174316], [39.9425, 116.361, -7.67776346206665], [23.2539, 116.6092, -8.099405288696289], [24.5058, 118.0936, -6.998694896697998], [36.0211, 106.2375, -24.741552352905273], [27.8159, 112.9227, 7.7994794845581055], [30.2989, 109.5039, -6.472711563110352], [29.7125, 106.617, 1.085811972618103], [44.6104, 129.6459, -24.831193923950195], [30.4753, 114.1525, -21.891456604003906], [44.1756, 87.5475, -68.7428207397461], [34.6869, 112.4831, -32.18697738647461], [37.062, 114.4854, -24.507158279418945], [36.6428, 101.748, -14.89138126373291], [26.5506, 104.9544, 12.719789505004883], [31.4539, 104.7536, -10.636466026306152], [31.388, 120.953, 7.528463363647461], [45.755, 126.542, -26.175172805786133], [31.0283, 103.613, -10.517790794372559], [40.7688, 114.9032, -11.710734367370605], [31.3019, 120.591, 4.785516262054443], [33.9953, 113.7906, -26.459083557128906], [30.0506, 103.8986, -5.14910888671875], [39.65782, 118.1838, -2.839726448059082], [30.6347, 105.8161, -4.756397247314453], [31.1108, 104.3539, -9.879914283752441], [37.0172, 105.18, -18.196504592895508], [30.0125, 103.009, -5.577110290527344], [35.763, 115.031, -20.120174407958984], [24.3158, 109.4839, 14.233688354492188], [22.9477, 113.352, -1.1915732622146606], [36.6525, 119.1638, 1.6965376138687134], [28.2325, 113.0833, 5.2042741775512695], [29.7228, 106.626, 1.0851126909255981], [36.39, 120.47, 5.219762325286865], [37.7124, 112.469, -31.456279754638672], [29.3411, 104.7692, -0.2706741988658905], [39.79777778, 98.26722222, -7.653388023376465], [29.7048, 115.9581, -18.57840347290039], [39.5986, 109.7736, -20.69552230834961], [39.7711, 98.2908, -7.593069076538086], [31.874, 120.526, 4.694155216217041], [23.3633, 116.7244, -7.936793327331543], [22.5931, 113.0819, -2.0368268489837646], [32.41, 119.404, -6.064218997955322], [35.7289, 107.6831, -32.326210021972656], [43.8694, 125.325, -10.59290599822998], [25.0405, 102.722, 13.874005317687988], [39.5178, 116.6838, -6.204594612121582], [33.5979, 114.6546, -23.05044937133789], [22.9169, 112.0392, 3.3432326316833496], [34.6869, 112.4664, -32.253395080566406], [30.9414, 117.8178, -19.532865524291992], [43.9317, 116.1042, -8.09404182434082], [32.0903, 112.2106, -28.76737403869629], [42.0486, 121.6592, 1.6310834884643555], [41.615, 120.3939, 0.6443210244178772], [40.8033, 111.658, -17.12957191467285], [31.7897, 119.8914, -1.2589876651763916], [31.909, 120.237, 2.146955728530884], [32.1083, 118.803, -11.233197212219238], [30.8596, 120.1844, 1.5073121786117554], [31.1167, 104.4053, -9.819519996643066], [30.7819, 111.3296, -20.638912200927734], [28.9583, 105.4306, 1.588868498802185], [38.85611111, 121.5180556, 5.951521396636963], [23.1323, 113.3208, -0.225209042429924], [31.7618, 116.478, -19.339282989501953], [29.7736, 121.633, 9.318719863891602], [39.8261, 109.9486, -19.859214782714844], [38.8957, 115.5223, -13.209213256835938], [32.215, 119.491, -5.464346885681152], [27.8528, 113.13, 7.078352451324463], [32.105, 118.907, -10.497213363647461], [26.0797, 119.268, -4.608654022216797], [33.975, 116.8008, -12.762556076049805], [26.6266, 106.6243, 11.754439353942871], [23.105, 113.433, -0.7343398928642273], [30.3058, 120.348, 2.8573758602142334], [22.9539, 112.0539, 3.495790719985962], [31.4846, 92.0657, -15.814139366149902], [31.6928, 118.48, -14.607779502868652], [27.9939, 120.677, 3.397916316986084], [34.2713, 108.954, -38.388458251953125], [41.1953, 123.2, 5.626436710357666], [34.2749, 108.882, -38.293601989746094], [30.1819, 120.27, 2.4079177379608154], [22.5211, 113.3769, -3.4097023010253906], [36.864, 118.78, 0.7639808654785156], [21.9667, 108.6236, 5.969878196716309], [33.3681, 120.1631, 1.754685640335083], [31.4656, 104.6717, -10.860269546508789], [37.739, 115.6906, -16.697509765625], [36.2126, 113.0886, -31.33919334411621], [39.5989, 109.8119, -20.753931045532227], [24.506, 117.7116, -6.543036937713623], [40.7378, 107.3715, -8.304128646850586], [34.7187, 113.727, -26.626832962036133], [30.6872, 104.176, -8.306556701660156], [27.583, 110.0394, 10.526077270507812], [31.9438, 117.266, -17.573261260986328], [38.4928, 112.7003, -28.466196060180664], [31.3839, 118.4022, -15.92123794555664], [38.4519, 112.7383, -28.54136085510254], [26.1092, 119.299, -4.550920486450195], [34.7745, 113.641, -27.06393814086914], [46.5888, 131.1572, -43.016597747802734], [30.4663, 106.6271, -1.7310121059417725], [31.4189, 118.37, -16.028263092041016], [30.6539, 117.4974, -20.863849639892578], [26.8576, 100.2143, 9.007235527038574], [30.6617, 117.4697, -20.885358810424805], [37.7575, 115.6951, -16.635007858276367], [23.415, 111.2353, 8.39846134185791], [28.0167, 120.671, 3.455958127975464], [30.9222, 117.8078, -19.606876373291016], [38.9108, 115.4713, -13.55634880065918], [32.6494, 110.78, -31.210235595703125], [28.0797, 116.2239, -3.7875611782073975], [34.3017, 107.0708, -31.67511558532715], [40.1269, 113.2661, -18.983428955078125], [36.7731, 119.1939, 1.760529637336731], [47.2988, 123.945, -33.611419677734375], [28.095, 116.9622, -6.066290855407715], [26.6946, 119.5001, -2.620053768157959], [27.8728, 112.8937, 7.613201141357422], [23.6936, 113.0425, 3.261486768722534], [36.799, 119.976, 3.8239171504974365], [35.4883, 112.8564, -31.69362449645996], [27.8408, 102.2714, 6.514824867248535], [30.5514, 114.2511, -22.152267456054688], [42.0228, 121.6722, 1.7156907320022583], [31.172, 120.658, 5.210609436035156], [32.996, 113.996, -25.759706497192383], [32.1319, 119.43, -6.097350120544434], [31.1907, 121.703, 11.909492492675781], [41.0931, 123.011, 5.9658613204956055], [37.4664, 116.3061, -11.749516487121582], [25.8664, 114.9367, 1.646041989326477], [32.3878, 119.46, -5.649371147155762], [35.4234, 119.5198, 1.5416911840438843], [36.5776, 114.5035, -23.938093185424805], [22.8464, 108.239, 11.828291893005371], [42.9061, 129.5042, -14.171219825744629], [30.2352, 115.0625, -20.43724822998047], [27.8953, 102.2311, 6.264860153198242], [40.9923, 113.1306, -15.164958953857422], [31.85805556, 106.7619444, -11.563840866088867], [24.441, 98.578, 8.205410957336426], [41.3283, 123.8436, 5.206855773925781], [22.7422, 114.5317, -5.768017768859863], [27.5444, 109.9453, 10.51958179473877], [25.5811, 100.2171, 11.108686447143555], [26.53111111, 107.8908333, 12.375333786010742], [39.5371, 75.9828, -136.326171875], [39.6969, 106.8089, -12.22164249420166], [35.4178, 119.4641, 1.353582739830017], [33.38256667, 104.9338889, -18.219371795654297], [45.6842, 126.6206, -25.747581481933594], [40.5905, 110.0067, -16.17778778076172], [29.1242, 110.4697, 3.2246689796447754], [30.9892, 112.1969, -24.030061721801758], [35.272, 113.884, -26.27110481262207], [41.1933, 80.2956, -107.1783676147461], [39.8745, 116.434, -7.392917633056641], [37.8195, 112.57, -30.944753646850586], [29.53675, 106.4959, 1.2656112909317017], [43.941, 81.3364, -105.65902709960938], [31.9108, 119.905, -1.0860236883163452], [27.7758, 115.0586, 1.7713282108306885], [30.9219, 117.8561, -19.445045471191406], [30.1259, 104.6294, -4.320006847381592], [31.0935, 120.978, 7.484641075134277], [37.8792, 113.4922, -28.363887786865234], [26.5747, 107.9783, 12.274895668029785], [35.235, 113.261, -29.37908172607422], [24.4072, 111.5622, 9.994394302368164], [31.9025, 102.2218, -14.199163436889648], [37.3617, 118.0018, -1.538221001625061], [43.4569, 87.4651, -65.95879364013672], [26.5928, 101.5769, 10.30243968963623], [45.7733, 126.689, -26.6021785736084], [28.6428, 112.4067, 2.8709681034088135], [34.402, 115.6578, -17.432579040527344], [45.7677, 131.0032, -36.748146057128906], [31.1208, 104.4219, -9.809679985046387], [27.7842, 114.3953, 3.8548295497894287], [27.9747, 120.76, 3.4598500728607178], [31.4, 119.46, -5.988731384277344], [28.6844, 115.931, -7.554263114929199], [37.161, 122.41, 10.559916496276855], [27.7297, 109.1916, 10.15926456451416], [22.0225, 100.8017, 5.128270626068115], [29.6453, 106.562, 1.110459566116333], [22.8322, 100.9817, 8.23231029510498], [44.5462, 129.6386, -24.395322799682617], [30.65638889, 104.0238889, -8.307649612426758], [36.1031, 103.631, -18.523164749145508], [26.2331, 111.6236, 10.034280776977539], [26.8956, 112.6211, 8.020245552062988], [41.3047, 123.7308, 5.277829170227051], [40.8725, 114.904, -11.4010009765625], [43.8167, 125.25, -10.19421672821045], [40.9359, 117.963, -4.443075180053711], [27.9119, 112.9074, 7.39359188079834], [41.0112, 117.9384, -4.438906192779541], [32.4611, 119.9219, -0.8121098875999451], [35.5294, 106.7039, -27.850914001464844], [29.5947, 105.0717, -1.1385167837142944], [35.546, 112.8453, -31.83686637878418], [30.3175, 112.2551, -18.707250595092773], [39.6679, 118.2185, -2.7949678897857666], [31.737, 119.579, -4.4906744956970215], [50.4269, 124.1186, -57.46223068237305], [32.6939, 109.0281, -29.510276794433594], [32.935, 117.3086, -14.094400405883789], [32.645, 117.0083, -15.835603713989258], [27.7019, 106.9242, 8.148518562316895], [30.5494, 114.3006, -22.122777938842773], [32.0572, 118.749, -11.774104118347168], [46.6219, 124.8648, -29.979022979736328], [34.407, 115.6386, -17.522436141967773], [34.5021, 109.4266, -39.28776168823242], [26.6761, 118.0966, -3.991107702255249], [29.8539, 114.2894, -17.531736373901367], [39.746, 98.509, -7.155542373657227], [29.5844, 103.7627, -2.471086263656616], [24.5157, 117.6569, -6.450194358825684], [28.2189, 112.8872, 5.769395351409912], [36.0783, 111.5531, -36.57138442993164], [35.5461, 106.6692, -27.644350051879883], [40.0917, 113.3444, -19.097036361694336], [29.8906, 121.554, 9.29300594329834], [31.6861, 118.5058, -14.463105201721191], [29.8208, 121.56, 9.167723655700684], [34.3474, 108.935, -38.51411437988281], [28.1442, 112.9956, 5.931077480316162], [37.7019, 112.7549, -30.907243728637695], [38.9467, 100.4686, -5.451173305511475], [30.4183, 120.301, 2.4212660789489746], [23.7208, 109.2131, 13.970786094665527], [31.8711, 106.7389, -11.584244728088379], [28.2403, 117.0281, -7.0876030921936035], [23.0944, 109.6014, 11.007612228393555], [35.248889, 115.42277, -17.834138870239258], [26.0931, 119.58, -4.532402992248535], [22.8225, 108.321, 11.636418342590332], [23.0672, 109.6042, 10.864052772521973], [27.9958, 113.1817, 6.281124591827393], [30.7856, 106.1064, -4.3384785652160645], [30.8064, 106.056, -4.570333480834961], [27.2582, 111.4908, 9.865798950195312], [43.9404, 81.2815, -106.00553131103516], [34.5885, 119.176, -1.2637126445770264], [38.4975, 106.2328, -15.834769248962402], [41.9228, 123.3783, 2.786430835723877], [33.6128, 114.6613, -23.01145362854004], [34.8731, 108.9589, -38.948692321777344], [32.0092, 118.737, -12.000605583190918], [39.2474, 117.7918, -3.26446795463562], [25.7759, 113.0348, 7.417028903961182], [29.9834, 103.0109, -5.370282173156738], [39.9934, 116.315, -7.871112823486328], [34.3956, 108.7197, -38.226783752441406], [27.8978, 102.2625, 6.264560222625732], [31.3178, 118.3708, -16.269495010375977], [46.7975, 130.3258, -42.33592224121094], [26.2625, 117.6211, -4.819395542144775], [31.5848, 120.354, 3.1684377193450928], [30.2028, 115.0767, -20.299766540527344], [29.7292, 115.988, -18.748310089111328], [21.6669, 110.9067, -0.7068204879760742], [30.1142, 104.6469, -4.219966888427734], [37.809, 120.773, 5.3222455978393555], [27.8317, 99.7056, 5.978213310241699], [30.9742, 118.7386, -14.311884880065918], [34.864, 117.5564, -6.8313517570495605], [32.1883, 119.68, -3.4440877437591553], [45.305, 130.9817, -33.41804504394531], [49.1577, 119.7512, -44.00968933105469], [30.3055, 112.2887, -18.667665481567383], [36.5458, 104.1731, -18.07628631591797], [40.6511, 122.215, 5.951714992523193], [44.2967, 86.0497, -78.24385070800781], [34.2911, 117.244, -10.142637252807617], [28.7989, 104.6789, 2.518012523651123], [37.4294, 122.1206, 9.719829559326172], [23.7369, 109.2317, 13.981636047363281], [36.1417, 106.2319, -24.40269660949707], [31.7386, 117.278, -18.243268966674805], [48.4658, 129.4942, -52.163448333740234], [45.2924, 130.962, -33.26980972290039], [40.715, 120.8478, 2.602567195892334], [33.3947, 120.225, 2.2666399478912354], [40.6575, 109.8104, -15.244891166687012], [38.86388889, 121.625, 6.267151832580566], [35.0573, 118.3418, -2.406811475753784], [41.7775, 123.478, 3.4035398960113525], [31.2058, 107.4611, -7.242580890655518], [28.6047, 112.3347, 3.4678585529327393], [41.2736, 123.1761, 5.300415515899658], [36.0464, 103.831, -18.796205520629883], [34.3274, 109.043, -38.631961822509766], [37.9648, 106.1532, -17.69198226928711], [36.1851, 120.3905, 5.006126403808594], [36.6028, 109.4761, -35.018287658691406], [29.5467, 103.7705, -2.231074810028076], [50.4217, 124.1303, -57.437950134277344], [22.7019, 110.1106, 7.635898590087891], [31.955, 119.18, -8.685380935668945], [39.1082, 117.237, -4.311331748962402], [24.2654, 116.1248, -4.737446308135986], [30.2756, 118.1371, -18.521072387695312], [33.567, 114.056, -25.513486862182617], [27.8014, 114.3806, 3.8593316078186035], [29.36028, 104.7778, -0.3549996018409729], [26.57098, 101.68912, 10.423256874084473], [23.6706, 116.6447, -7.14957332611084], [32.1142, 112.1825, -28.8608455657959], [41.8336, 123.542, 3.1539037227630615], [30.2099, 115.0264, -20.339067459106445], [34.3528, 107.3906, -33.196346282958984], [25.3167, 110.4144, 12.146173477172852], [27.9164, 112.4876, 8.427597999572754], [39.1067, 117.1941, -4.410562515258789], [25.442, 119.0156, -5.8015971183776855], [40.8115, 114.8814, -11.654419898986816], [29.9919, 120.605, 4.773428440093994], [23.1572, 112.885, 1.4614084959030151], [37.9097, 114.3541, -24.813230514526367], [34.5004, 109.5049, -39.26201629638672], [33.737, 113.182, -28.819915771484375], [38.44139, 106.2275, -16.06952476501465], [27.8381, 113.143, 7.110049247741699], [31.2703, 120.613, 4.924686908721924], [22.3708, 107.3701, 9.883065223693848], [36.1942, 117.1436, -6.910017967224121], [26.6272, 118.1756, -3.937937021255493], [33.1842, 106.9893, -25.27094841003418], [26.5697, 106.7164, 12.001075744628906], [29.5953, 105.0331, -1.1676322221755981], [39.6719, 106.8219, -12.383030891418457], [31.8934, 102.2402, -14.17873477935791], [30.1506, 104.6356, -4.455385684967041], [36.6739, 117.114, -6.40956449508667], [30.0475, 101.9603, -5.875739097595215], [40.6532, 109.8756, -15.446471214294434], [23.01277778, 113.7944444, -2.4646553993225098], [30.8244, 120.07, 0.5092349648475647], [45.6033, 84.8861, -90.57003784179688], [22.8693, 112.844, 0.23790401220321655], [36.1758, 117.1081, -7.158437728881836], [33.8399, 115.8067, -17.802400588989258], [43.768, 87.6046, -66.49714660644531], [22.2294, 113.495, -5.175754070281982], [26.8919, 112.6006, 8.057564735412598], [27.8036, 114.3442, 3.952697992324829], [45.61, 126.615, -25.136045455932617], [33.965, 118.283, -6.065064430236816], [31.56, 120.294, 2.5997869968414307], [34.7545, 113.681, -26.86331558227539], [30.2819, 109.4689, -6.079705715179443], [32.6028, 116.8556, -16.391862869262695], [43.8667, 125.417, -10.69257640838623], [22.8172, 114.3244, -4.986608982086182], [29.2786, 117.1983, -16.020097732543945], [35.259, 113.1992, -29.710636138916016], [41.8828, 123.9169, 2.60676908493042], [32.9444, 117.3575, -13.906929969787598], [27.9883, 116.3553, -3.695711851119995], [38.843, 105.6975, -13.018089294433594], [39.3673, 112.4279, -24.156213760375977], [34.5667, 117.732, -6.363216400146484], [41.1636, 80.2828, -107.23003387451172], [33.575, 119.007, -4.674686431884766], [24.9624, 102.625, 13.839966773986816], [32.0144, 118.777, -11.690704345703125], [43.84, 125.2786, -10.36525821685791], [34.3617, 108.7233, -38.18026351928711], [39.9419, 119.5369, -1.0247786045074463], [38.2839, 109.7289, -27.67807388305664], [39.643, 118.144, -2.8863298892974854], [31.381, 120.999, 7.845742225646973], [38.9194, 117.157, -4.560337066650391], [31.882, 120.55, 4.896368503570557], [32.2786, 118.3244, -13.490797996520996], [33.0323, 107.007, -24.05843734741211], [22.7906, 108.439, 11.363484382629395], [38.1398, 114.5019, -23.680519104003906], [44.561, 129.61, -24.415939331054688], [30.8388, 106.1087, -4.539327621459961], [31.2472, 120.561, 4.526881694793701], [29.8264, 106.424, 0.13736706972122192], [30.9447, 118.7581, -14.167055130004883], [41.1442, 123.0485, 5.785461902618408], [22.4137, 107.3476, 10.130903244018555], [27.6178, 113.865, 5.541030406951904], [24.4175, 111.5269, 10.093966484069824], [43.7256, 126.6772, -11.989657402038574], [22.8561, 108.316, 11.807344436645508], [37.177, 119.941, 3.705350875854492], [26.2378, 117.6028, -4.825234889984131], [43.9167, 125.323, -10.867076873779297], [36.6377, 117.9544, -1.8590506315231323], [23.2783, 113.568, -0.4286440312862396], [24.8978, 118.5972, -6.7060980796813965], [32.9673, 117.3536, -13.837976455688477], [34.7745, 117.5852, -6.854360580444336], [25.2178, 110.2869, 12.38286018371582], [43.8358, 126.5844, -12.530882835388184], [36.1855, 113.0844444, -31.342649459838867], [24.6967, 108.1009, 15.673840522766113], [30.4519, 114.8858, -21.301809310913086], [31.2036, 121.478, 10.72351360321045], [24.3702, 102.5389, 13.649076461791992], [37.8561, 113.5922, -28.034868240356445], [34.3708, 107.1586, -32.14222717285156], [34.3547, 107.1431, -32.05569076538086], [31.238, 121.4, 10.282410621643066], [41.9086, 123.5953, 2.7496910095214844], [33.0014, 97.0, -7.936110019683838], [41.7561, 123.535, 3.486818552017212], [23.9011, 106.6103, 15.783134460449219], [36.7339, 119.0841, 1.5130589008331299], [36.0875, 111.5025, -36.675758361816406], [25.8333, 114.9322, 1.6382839679718018], [31.89708, 121.1518, 8.756040573120117], [23.8982, 100.0782, 9.897442817687988], [33.3261, 105.0822, -17.87145233154297], [29.7128, 118.3057, -15.3217191696167], [44.0114, 87.2997, -69.4711685180664], [45.7258, 126.646, -26.13374900817871], [28.4569, 118.0058, -8.0143461227417], [22.5908, 114.263, -5.644211769104004], [23.7233, 114.6892, -2.683871269226074], [35.0147, 110.9956, -38.03765106201172], [38.8394, 117.457, -3.524463653564453], [30.7946, 120.744, 5.594714641571045], [22.735, 108.328, 11.178041458129883], [27.3125, 105.2864, 9.414460182189941], [32.6389, 110.7258, -31.182268142700195], [37.4489, 116.3189, -11.664002418518066], [23.08, 114.4053, -4.288262367248535], [28.6459, 121.273, 6.0260233879089355], [39.7153, 76.1861, -134.89939880371094], [30.4576, 106.6303, -1.680263876914978], [33.6284, 116.9677, -13.003825187683105], [22.7833, 108.244, 11.499770164489746], [22.5811, 113.074, -2.0703415870666504], [37.0967, 114.4821, -24.557214736938477], [30.6197, 114.2836, -22.373424530029297], [44.3336, 84.8983, -85.01976013183594], [36.1542, 113.1097, -31.219562530517578], [30.2456, 120.127, 1.274948000907898], [29.6219, 106.65, 1.4401851892471313], [38.8343, 105.6775, -13.013012886047363], [24.428, 98.5842, 8.202011108398438], [25.0661, 117.0256, -4.778113842010498], [38.5247, 102.1878, -8.796391487121582], [28.5819, 112.3744, 3.5804409980773926], [31.656, 120.734, 6.100274085998535], [36.3083, 120.1964, 4.442131519317627], [24.9617, 118.6108, -6.581635475158691], [41.0228, 123.1289, 6.2665205001831055], [31.1278, 97.1804, -4.108845233917236], [36.792, 119.952, 3.7590701580047607], [23.4168, 103.386, 12.914102554321289], [42.2725, 118.9572, -2.3362209796905518], [29.5983, 106.296, 0.36873868107795715], [36.087, 114.358, -24.549545288085938], [36.283, 120.008, 3.7556676864624023], [40.1461, 124.3933, 9.305156707763672], [25.0836, 102.728, 13.853078842163086], [41.8472, 123.428, 3.1085636615753174], [29.9972, 101.9533, -5.542052268981934], [27.8336, 113.251, 6.833080768585205], [30.4551, 106.6388, -1.643733024597168], [41.1556, 122.0247, 4.701641082763672], [26.5689, 106.6971, 12.001659393310547], [39.9522, 116.434, -7.417324542999268], [41.7089, 123.439, 3.7147953510284424], [37.9358, 102.6469, -11.970625877380371], [24.7121, 108.2134, 15.616890907287598], [31.7133, 118.6439, -13.481579780578613], [40.1194, 124.3678, 9.400067329406738], [38.817, 106.3394, -14.720254898071289], [35.303, 113.883, -26.31573486328125], [37.4658, 118.5019, -0.038139551877975464], [30.7636, 106.0642, -4.392473220825195], [32.4535, 105.8945, -13.591568946838379], [38.5061, 102.1708, -8.839407920837402], [35.5102, 102.0199, -17.463516235351562], [38.8632, 115.493, -13.639823913574219], [31.87888889, 106.7513889, -11.716026306152344], [25.8481, 114.9461, 1.5957694053649902], [31.92, 120.268, 2.441178321838379], [26.585, 101.7169, 10.407083511352539], [36.2092, 117.7181, -3.1819887161254883], [43.8228, 126.4978, -12.254706382751465], [35.0896, 118.4023, -2.1907618045806885], [28.76389, 104.6417, 2.7312400341033936], [22.7633, 100.98, 8.077435493469238], [28.7867, 104.6061, 2.6178369522094727], [42.9559, 89.1673, -53.751373291015625], [31.7039, 119.935, -0.8295071125030518], [23.1422, 113.235, 0.10547567158937454], [30.9075, 113.942, -23.485729217529297], [37.5436, 121.3181, 7.529637336730957], [31.2864, 120.628, 5.045296669006348], [37.9723, 106.196, -17.804441452026367], [27.0983, 115.0075, 2.33325457572937], [34.5101, 109.5293, -39.2730598449707], [24.81805556, 118.1569444, -6.493879318237305], [36.6489, 116.943, -7.642498970031738], [25.8226, 113.0116, 7.539158821105957], [36.0756, 103.712, -18.6407527923584], [28.2642, 117.0564, -7.26607084274292], [31.453, 121.115, 8.617620468139648], [40.7514, 120.8392, 2.5642004013061523], [36.2403, 120.4001, 5.048468112945557], [29.8686, 114.3372, -17.70183563232422], [22.75, 114.085, -4.600747108459473], [40.8062, 111.7277, -17.143163681030273], [25.1081, 99.1678, 9.935012817382812], [25.2697, 110.2819, 12.374994277954102], [28.6969, 115.973, -7.769382476806641], [28.2558, 109.6414, 9.7188138961792], [39.1495, 117.3916, -4.003280162811279], [33.9461, 116.7844, -12.895221710205078], [28.3169, 109.7325, 9.382955551147461], [46.8267, 130.3961, -42.71609878540039], [37.5136, 111.1297, -33.79639434814453], [40.1438, 116.72, -6.837001800537109], [29.8211, 114.3231, -17.28997039794922], [47.3227, 123.9483, -33.79800033569336], [29.2956, 117.2461, -16.16783905029297], [29.3864, 117.3097, -16.92703628540039], [28.6064, 115.9083, -6.627348899841309], [36.061, 114.483, -23.701107025146484], [28.4622, 117.9511, -8.19621753692627], [29.4892, 106.634, 1.8169947862625122], [34.4714, 100.2561, -14.849239349365234], [39.6295, 118.1997, -2.76609468460083], [36.1942, 117.0881, -7.264286518096924], [41.2553, 123.15, 5.374166488647461], [30.9285, 113.9153, -23.563547134399414], [21.8586, 111.9786, -2.6093435287475586], [24.299, 109.4221, 14.326054573059082], [27.7914, 114.3703, 3.9074361324310303], [39.2133, 117.1837, -4.5560221672058105], [29.6816, 115.9872, -18.47526741027832], [26.9089, 112.5328, 8.155294418334961], [44.9079, 82.0485, -104.15606689453125], [36.1912, 113.1569, -31.043621063232422], [35.7067, 107.6364, -32.20159149169922], [29.6292, 91.0834, -21.26106834411621], [36.1939, 113.0972, -31.294418334960938], [34.8019, 113.675, -26.920284271240234], [40.9161, 117.9664, -4.4362335205078125], [24.3694, 102.5778, 13.68663215637207], [23.1331, 113.26, -0.020316142588853836], [37.1013, 79.9117, -108.51434326171875], [41.7192, 86.2022, -67.2030258178711], [26.2708, 117.6353, -4.8121867179870605], [28.9404, 118.871, -6.053016662597656], [23.7106, 113.0208, 3.4236953258514404], [36.2403, 120.6659, 5.792128086090088], [22.7267, 114.24, -5.091611385345459], [34.7975, 114.3733, -23.56085968017578], [40.0181, 119.7624, -0.20086562633514404], [40.5546, 110.0377, -16.472124099731445], [28.4586, 119.93, 0.7454352974891663], [36.67, 116.93, -7.711709499359131], [34.7781, 114.3389, -23.728517532348633], [30.89556, 120.0875, 0.6620244979858398], [41.7511, 86.1461, -67.66520690917969], [47.8515, 88.1267, -84.9461898803711], [24.9117, 118.5819, -6.670449256896973], [23.5486, 116.3242, -7.063634872436523], [37.8694, 113.5689, -28.09212303161621], [27.7044, 111.9892, 9.9356050491333], [40.1114, 113.2803, -19.05912971496582], [39.3606, 112.4549, -24.19681167602539], [45.6289, 122.8444, -19.93022346496582], [27.6231, 113.8447, 5.5839152336120605], [28.4514, 119.914, 0.6935421824455261], [29.6475, 91.0874, -21.21843719482422], [34.2303, 108.883, -38.19791793823242], [29.4251, 113.1493, -10.16970443725586], [38.3344, 109.7414, -27.47051239013672], [43.8711, 87.5525, -67.28648376464844], [38.9389, 100.4497, -5.462080955505371], [37.68277778, 112.7194444, -31.033708572387695], [39.1292, 106.7096, -14.434240341186523], [34.1781, 117.1694, -10.733113288879395], [46.0756, 121.9462, -22.294078826904297], [37.85, 113.5158, -28.336200714111328], [31.7712, 116.5661, -19.18582534790039], [39.3514, 112.44, -24.265613555908203], [27.6486, 106.8906, 8.326333999633789], [41.1219, 121.2008, 3.1625900268554688], [44.5782, 129.6115, -24.53130531311035], [29.709, 106.452, 0.5717285871505737], [23.06, 113.7480556, -2.0720183849334717], [23.1886, 112.863, 1.7099714279174805], [41.7347, 123.2444, 3.5656521320343018], [21.2567, 110.4558, -2.1957662105560303], [27.3361, 103.7225, 9.332442283630371], [37.9311, 102.6219, -11.949559211730957], [33.6406, 114.6369, -23.10767364501953], [31.8572, 117.25, -17.871435165405273], [35.5975, 104.6169, -20.817840576171875], [42.8947, 125.1358, -4.702963352203369], [29.2313, 91.7608, -16.91370391845703], [39.5343, 116.7464, -6.052727222442627], [40.7094, 122.2703, 5.993042469024658], [43.1594, 124.3711, -5.295724868774414], [30.6414, 114.2131, -22.50250816345215], [36.44, 120.61, 5.597535610198975], [29.4892, 106.468, 1.3112859725952148], [28.9703, 111.6975, 1.1333154439926147], [38.0108, 112.434, -30.469816207885742], [31.4867, 120.269, 2.3635103702545166], [34.429, 115.6558, -17.402528762817383], [38.01777778, 114.5330556, -23.71480369567871], [44.3075, 86.0697, -78.1762466430664], [27.9647, 116.385, -3.716543674468994], [30.2043, 114.8949, -20.304710388183594], [29.3678, 113.1772, -9.392616271972656], [29.1128, 119.6533, -1.0303139686584473], [25.9118, 114.9064, 1.7955952882766724], [26.0392, 119.303, -4.670827388763428], [23.1569, 113.281, 0.017036374658346176], [45.5422, 126.979, -25.322690963745117], [37.7394, 112.5583, -31.20879554748535], [28.6542, 121.419, 6.414927959442139], [26.5939, 104.89, 12.585347175598145], [41.8625, 124.0383, 2.576967477798462], [35.7511, 114.2956, -24.679189682006836], [31.7586, 119.996, -0.22257676720619202], [38.8516, 105.724, -13.036602020263672], [36.6868, 117.0684, -6.695498943328857], [26.0753, 119.315, -4.602680206298828], [39.9716, 116.473, -7.306716442108154], [46.7432, 82.9994, -105.87684631347656], [32.41361, 119.458, -5.630229473114014], [38.8416, 115.4612, -14.039267539978027], [30.5489, 117.0486, -21.217653274536133], [27.4948, 114.0944, 5.027337551116943], [27.8867, 113.095, 7.018716812133789], [23.0528, 112.471, 2.518110513687134], [26.8733, 112.6197, 8.031359672546387], [35.4894, 112.8664, -31.649168014526367], [47.2753, 130.261, -45.514671325683594], [23.8844, 106.6527, 15.759596824645996], [40.7866, 111.551, -17.139755249023438], [43.6267, 122.2603, -6.425661087036133], [36.10139, 111.505, -36.65019989013672], [28.56, 112.3439, 3.8586812019348145], [45.7319, 126.685, -26.258085250854492], [40.0844, 113.2711, -19.232019424438477], [37.4014, 121.5992, 8.677191734313965], [30.6133, 105.68, -5.089798450469971], [30.7478, 120.726, 5.4445319175720215], [28.1178, 112.9844, 6.1035871505737305], [28.7994, 115.742, -8.432406425476074], [25.067, 102.681, 13.823062896728516], [32.0005, 120.86, 7.166041374206543], [26.5017, 101.7453, 10.644538879394531], [34.5814, 105.7281, -24.80414581298828], [43.91, 125.287, -10.783893585205078], [46.3991, 124.8847, -28.35106086730957], [31.8531, 106.7594, -11.503362655639648], [33.9528, 118.293, -6.069988250732422], [45.6175, 122.8211, -19.825841903686523], [19.9507, 110.576, -10.709610939025879], [23.4792, 111.2897, 8.507612228393555], [32.1383, 114.0614, -25.097410202026367], [30.8023, 106.0789, -4.483285427093506], [34.2324, 108.94, -38.28631591796875], [36.11, 114.286, -25.032846450805664], [31.96, 120.913, 7.447983741760254], [32.8928, 115.8275, -19.0234317779541], [31.7694, 120.0469, 0.27895626425743103], [31.6842, 120.288, 2.543639898300171], [47.3636, 123.9305, -34.08158493041992], [28.7442, 115.813, -8.011255264282227], [23.2536, 116.4019, -7.841864109039307], [23.4714, 116.7519, -7.704569339752197], [34.6511, 112.3939, -32.49304962158203], [35.0622, 118.2939, -2.5110020637512207], [28.6839, 115.8886, -7.472846984863281], [41.8469, 123.81, 2.8951268196105957], [24.3289, 116.1278, -4.5799665451049805], [34.3497, 107.2058, -32.32783126831055], [42.0352, 119.2654, -1.689704179763794], [31.0386, 112.2211, -24.360666275024414], [40.0758, 113.2994, -19.25113868713379], [36.61763, 114.5129, -23.91670799255371], [29.4822, 106.364, 0.9832710027694702], [35.94, 104.148, -19.445653915405273], [27.2272, 111.4328, 9.87541675567627], [25.1328, 99.1711, 9.956937789916992], [40.6288, 109.8654, -15.5659818649292]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#ff5000&quot;, &quot;0.05&quot;: &quot;#ff5000&quot;, &quot;0.1&quot;: &quot;#ff5000&quot;, &quot;0.15&quot;: &quot;#ff5000&quot;, &quot;0.2&quot;: &quot;#ff5000&quot;, &quot;0.25&quot;: &quot;#ff5000&quot;, &quot;0.3&quot;: &quot;#ff5000&quot;, &quot;0.35&quot;: &quot;#ff5000&quot;, &quot;0.4&quot;: &quot;#ff5000&quot;, &quot;0.45&quot;: &quot;#ff5000&quot;, &quot;0.5&quot;: &quot;#ff5000&quot;, &quot;0.55&quot;: &quot;#ff2800&quot;, &quot;0.6&quot;: &quot;#ff2800&quot;, &quot;0.65&quot;: &quot;#ff2800&quot;, &quot;0.7&quot;: &quot;#ff2800&quot;, &quot;0.75&quot;: &quot;#ff2800&quot;, &quot;0.8&quot;: &quot;#ff2800&quot;, &quot;0.85&quot;: &quot;#ff2800&quot;, &quot;0.9&quot;: &quot;#ff2800&quot;, &quot;0.95&quot;: &quot;#ff2800&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_6bbece630da0ef6542900386549548ff.addTo(map_7411a723657a8fa92ed8001bab849dcd);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13a558fb250>\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('coef_tp', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"气温\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {\n    \"id\": \"FFD27A7258F847C08997ACAE7BF2DA08\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_0ba63527402b276746ea6c51cf92aa1b {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_0ba63527402b276746ea6c51cf92aa1b&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_0ba63527402b276746ea6c51cf92aa1b = L.map(\\n\",\n       \"                &quot;map_0ba63527402b276746ea6c51cf92aa1b&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_cdc3b42efca284e79a3f4ad0b103b69e = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_cdc3b42efca284e79a3f4ad0b103b69e.addTo(map_0ba63527402b276746ea6c51cf92aa1b);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_965f663c98bb2b218a7507ccb3a293e6 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_965f663c98bb2b218a7507ccb3a293e6.color = d3.scale.threshold()\\n\",\n       \"              .domain([-27.753150939941406, -27.594491958618164, -27.43583106994629, -27.277172088623047, -27.118513107299805, -26.95985221862793, -26.801193237304688, -26.642534255981445, -26.483875274658203, -26.325214385986328, -26.166555404663086, -26.007896423339844, -25.84923553466797, -25.690576553344727, -25.531917572021484, -25.37325668334961, -25.214597702026367, -25.055938720703125, -24.89727783203125, -24.738618850708008, -24.579959869384766, -24.42129898071289, -24.26263999938965, -24.103981018066406, -23.94532012939453, -23.78666114807129, -23.628002166748047, -23.469343185424805, -23.31068229675293, -23.152023315429688, -22.993364334106445, -22.834705352783203, -22.676044464111328, -22.517385482788086, -22.358726501464844, -22.20006561279297, -22.041406631469727, -21.882747650146484, -21.72408676147461, -21.565427780151367, -21.406768798828125, -21.24810791015625, -21.089448928833008, -20.930789947509766, -20.77212905883789, -20.61347007751465, -20.454811096191406, -20.29615020751953, -20.13749122619629, -19.978832244873047, -19.820171356201172, -19.66151237487793, -19.502853393554688, -19.344192504882812, -19.185535430908203, -19.026874542236328, -18.868213653564453, -18.70955467224121, -18.55089569091797, -18.392234802246094, -18.233577728271484, -18.07491683959961, -17.916257858276367, -17.757596969604492, -17.59893798828125, -17.440279006958008, -17.281620025634766, -17.12295913696289, -16.96430015563965, -16.805641174316406, -16.64698028564453, -16.48832130432129, -16.329662322998047, -16.171001434326172, -16.01234245300293, -15.853683471679688, -15.695022583007812, -15.53636360168457, -15.377703666687012, -15.21904468536377, -15.060384750366211, -14.901725769042969, -14.743066787719727, -14.584405899047852, -14.42574691772461, -14.26708698272705, -14.108428001403809, -13.94976806640625, -13.791109085083008, -13.632448196411133, -13.47378921508789, -13.315129280090332, -13.15647029876709, -12.997810363769531, -12.839151382446289, -12.68049144744873, -12.521831512451172, -12.36317253112793, -12.204512596130371, -12.045853614807129, -11.88719367980957, -11.728534698486328, -11.569873809814453, -11.411214828491211, -11.252555847167969, -11.093894958496094, -10.935235977172852, -10.77657699584961, -10.617918014526367, -10.459257125854492, -10.30059814453125, -10.141939163208008, -9.983278274536133, -9.82461929321289, -9.665958404541016, -9.507299423217773, -9.348640441894531, -9.189981460571289, -9.031320571899414, -8.872661590576172, -8.71400260925293, -8.555343627929688, -8.396682739257812, -8.23802375793457, -8.079364776611328, -7.920703887939453, -7.762042999267578, -7.603384017944336, -7.444725036621094, -7.286066055297852, -7.127407073974609, -6.968746185302734, -6.810087203979492, -6.65142822265625, -6.492769241333008, -6.334108352661133, -6.175449371337891, -6.016790390014648, -5.858129501342773, -5.699468612670898, -5.540809631347656, -5.382150650024414, -5.223491668701172, -5.064830780029297, -4.906171798706055, -4.7475128173828125, -4.58885383605957, -4.430194854736328, -4.271533966064453, -4.112874984741211, -3.9542160034179688, -3.7955551147460938, -3.6368942260742188, -3.4782352447509766, -3.3195762634277344, -3.160917282104492, -3.002256393432617, -2.843597412109375, -2.684938430786133, -2.5262794494628906, -2.3676185607910156, -2.2089595794677734, -2.0503005981445312, -1.891641616821289, -1.7329826354980469, -1.574319839477539, -1.4156608581542969, -1.2570018768310547, -1.0983428955078125, -0.9396820068359375, -0.7810230255126953, -0.6223640441894531, -0.46370506286621094, -0.30504417419433594, -0.14638519287109375, 0.012273788452148438, 0.17093276977539062, 0.3295917510986328, 0.4882545471191406, 0.6469135284423828, 0.805572509765625, 0.9642314910888672, 1.1228923797607422, 1.2815513610839844, 1.4402103424072266, 1.5988693237304688, 1.7575302124023438, 1.916189193725586, 2.074848175048828, 2.2335071563720703, 2.3921680450439453, 2.5508289337158203, 2.7094879150390625, 2.8681468963623047, 3.026805877685547, 3.185466766357422, 3.344125747680664, 3.5027847290039062, 3.6614437103271484, 3.8201045989990234, 3.9787635803222656, 4.137422561645508, 4.29608154296875, 4.454742431640625, 4.6134033203125, 4.772060394287109, 4.930721282958984, 5.089382171630859, 5.248039245605469, 5.406700134277344, 5.565361022949219, 5.724018096923828, 5.882678985595703, 6.0413360595703125, 6.1999969482421875, 6.3586578369140625, 6.517314910888672, 6.675975799560547, 6.834636688232422, 6.993293762207031, 7.151954650878906, 7.310611724853516, 7.469272613525391, 7.627937316894531, 7.786594390869141, 7.945255279541016, 8.103912353515625, 8.2625732421875, 8.421234130859375, 8.579891204833984, 8.73855209350586, 8.897212982177734, 9.055870056152344, 9.214530944824219, 9.373188018798828, 9.531848907470703, 9.690509796142578, 9.849166870117188, 10.007827758789062, 10.166488647460938, 10.325145721435547, 10.483806610107422, 10.642463684082031, 10.801124572753906, 10.959785461425781, 11.11844253540039, 11.277103424072266, 11.435760498046875, 11.59442138671875, 11.75308609008789, 11.9117431640625, 12.070404052734375, 12.22906494140625, 12.38772201538086, 12.546382904052734, 12.705039978027344, 12.863700866699219, 13.022361755371094, 13.181018829345703, 13.339679718017578, 13.498336791992188, 13.656997680664062, 13.815658569335938, 13.974315643310547, 14.132976531982422, 14.291637420654297, 14.450294494628906, 14.608955383300781, 14.76761245727539, 14.926273345947266, 15.08493423461914, 15.24359130859375, 15.402252197265625, 15.560909271240234, 15.71957015991211, 15.878231048583984, 16.03689193725586, 16.195552825927734, 16.35421371459961, 16.51287078857422, 16.671531677246094, 16.830188751220703, 16.988849639892578, 17.147510528564453, 17.306167602539062, 17.464828491210938, 17.623489379882812, 17.782146453857422, 17.940807342529297, 18.099464416503906, 18.25812530517578, 18.416786193847656, 18.575443267822266, 18.73410415649414, 18.89276123046875, 19.051422119140625, 19.2100830078125, 19.36874008178711, 19.527400970458984, 19.68606185913086, 19.84471893310547, 20.003379821777344, 20.16204071044922, 20.320701599121094, 20.47936248779297, 20.638019561767578, 20.796680450439453, 20.955337524414062, 21.113998413085938, 21.272659301757812, 21.431316375732422, 21.589977264404297, 21.748638153076172, 21.90729522705078, 22.065956115722656, 22.224613189697266, 22.38327407836914, 22.541934967041016, 22.700592041015625, 22.8592529296875, 23.017913818359375, 23.176570892333984, 23.33523178100586, 23.49388885498047, 23.652549743652344, 23.81121063232422, 23.969867706298828, 24.128528594970703, 24.287185668945312, 24.445850372314453, 24.604511260986328, 24.763168334960938, 24.921829223632812, 25.080490112304688, 25.239147186279297, 25.397808074951172, 25.55646514892578, 25.715126037597656, 25.87378692626953, 26.03244400024414, 26.191104888916016, 26.349761962890625, 26.5084228515625, 26.667083740234375, 26.825740814208984, 26.98440170288086, 27.143062591552734, 27.301719665527344, 27.46038055419922, 27.619037628173828, 27.777698516845703, 27.936359405517578, 28.095016479492188, 28.253677368164062, 28.412334442138672, 28.570999145507812, 28.729660034179688, 28.888317108154297, 29.046977996826172, 29.205638885498047, 29.364295959472656, 29.52295684814453, 29.68161392211914, 29.840274810791016, 29.99893569946289, 30.1575927734375, 30.316253662109375, 30.47491455078125, 30.63357162475586, 30.792232513427734, 30.950889587402344, 31.10955047607422, 31.268211364746094, 31.426868438720703, 31.585529327392578, 31.744186401367188, 31.902847290039062, 32.06150817871094, 32.22016525268555, 32.37882614135742, 32.5374870300293, 32.69614791870117, 32.85480880737305, 33.013465881347656, 33.17212677001953, 33.330787658691406, 33.489444732666016, 33.64810562133789, 33.8067626953125, 33.965423583984375, 34.12408447265625, 34.28274154663086, 34.441402435302734, 34.60006332397461, 34.75872039794922, 34.917381286621094, 35.0760383605957, 35.23469924926758, 35.39336013793945, 35.55201721191406, 35.71067810058594, 35.86933517456055, 36.02799606323242, 36.1866569519043, 36.345314025878906, 36.50397491455078, 36.662635803222656, 36.82129669189453, 36.979957580566406, 37.13861083984375, 37.297271728515625, 37.4559326171875, 37.614593505859375, 37.77325439453125, 37.931915283203125, 38.090576171875, 38.249229431152344, 38.40789031982422, 38.566551208496094, 38.72521209716797, 38.883872985839844, 39.04252624511719, 39.20118713378906, 39.35984802246094, 39.51850891113281, 39.67716979980469, 39.83582305908203, 39.994483947753906, 40.15314483642578, 40.311805725097656, 40.47046661376953, 40.629127502441406, 40.78778076171875, 40.946441650390625, 41.1051025390625, 41.263763427734375, 41.42242431640625, 41.581077575683594, 41.73973846435547, 41.898399353027344, 42.05706024169922, 42.215721130371094, 42.37437438964844, 42.53303527832031, 42.69169616699219, 42.85035705566406, 43.00902557373047, 43.16767883300781, 43.32633972167969, 43.48500061035156, 43.64366149902344, 43.80232238769531, 43.960975646972656, 44.11963653564453, 44.278297424316406, 44.43695831298828, 44.595619201660156, 44.75428009033203, 44.912933349609375, 45.07159423828125, 45.230255126953125, 45.388916015625, 45.547576904296875, 45.70623016357422, 45.864891052246094, 46.02355194091797, 46.182212829589844, 46.34087371826172, 46.49952697753906, 46.65818786621094, 46.81684875488281, 46.97550964355469, 47.13417053222656, 47.292823791503906, 47.45148468017578, 47.610145568847656, 47.76880645751953, 47.927467346191406, 48.08612823486328, 48.244781494140625, 48.4034423828125, 48.562103271484375, 48.72076416015625, 48.879425048828125, 49.03807830810547, 49.196739196777344, 49.35540008544922, 49.514060974121094, 49.67272186279297, 49.83137512207031, 49.99003601074219, 50.14869689941406, 50.30735778808594, 50.46601867675781, 50.624671936035156, 50.78333282470703, 50.941993713378906, 51.10065460205078, 51.25932312011719, 51.41796875])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_965f663c98bb2b218a7507ccb3a293e6.x = d3.scale.linear()\\n\",\n       \"              .domain([-27.753150939941406, 51.41796875])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_965f663c98bb2b218a7507ccb3a293e6.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_965f663c98bb2b218a7507ccb3a293e6.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_965f663c98bb2b218a7507ccb3a293e6.legend.addTo(map_0ba63527402b276746ea6c51cf92aa1b);\\n\",\n       \"\\n\",\n       \"    color_map_965f663c98bb2b218a7507ccb3a293e6.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_965f663c98bb2b218a7507ccb3a293e6.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-27.753150939941406, &#x27;&#x27;, &#x27;&#x27;, -15.877481460571289, &#x27;&#x27;, &#x27;&#x27;, -4.001811981201172, &#x27;&#x27;, &#x27;&#x27;, 7.8738555908203125, &#x27;&#x27;, &#x27;&#x27;, 19.749526977539062, &#x27;&#x27;, &#x27;&#x27;, 31.625194549560547, &#x27;&#x27;, &#x27;&#x27;, 43.50086212158203, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_965f663c98bb2b218a7507ccb3a293e6.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_965f663c98bb2b218a7507ccb3a293e6.g = color_map_965f663c98bb2b218a7507ccb3a293e6.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_965f663c98bb2b218a7507ccb3a293e6.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_965f663c98bb2b218a7507ccb3a293e6.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_965f663c98bb2b218a7507ccb3a293e6.x(color_map_965f663c98bb2b218a7507ccb3a293e6.color.domain()[i - 1]) : color_map_965f663c98bb2b218a7507ccb3a293e6.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_965f663c98bb2b218a7507ccb3a293e6.color.domain().length ? color_map_965f663c98bb2b218a7507ccb3a293e6.x(color_map_965f663c98bb2b218a7507ccb3a293e6.color.domain()[i]) : color_map_965f663c98bb2b218a7507ccb3a293e6.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_965f663c98bb2b218a7507ccb3a293e6.g.call(color_map_965f663c98bb2b218a7507ccb3a293e6.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_ba2af2db157c5050d7ac93018ca8bba5 = L.heatLayer(\\n\",\n       \"                [[22.7629, 113.257, 9.614137649536133], [22.6411, 110.1675, 6.374243259429932], [38.5339, 102.1725, -2.886434316635132], [23.6714, 116.6339, 7.513952255249023], [31.1956, 107.5069, 16.9826717376709], [32.8603, 115.8556, 2.308212995529175], [23.0395, 113.105, 8.805440902709961], [31.371, 119.794, -14.896105766296387], [31.2797, 107.5272, 17.16554832458496], [37.4967, 121.2611, -20.463346481323242], [27.7569, 111.9561, 17.80620765686035], [37.1152, 79.9485, 38.59751510620117], [28.6425, 115.892, 5.2392988204956055], [39.0927, 117.202, -6.379853248596191], [29.5186, 106.54, 17.094074249267578], [30.2311, 119.6942, -12.906258583068848], [24.339, 102.5381, 2.849926471710205], [33.0069, 114.0131, 12.548664093017578], [37.0533, 114.5261, 13.967561721801758], [29.4758, 113.2621, 12.698092460632324], [26.3108, 117.7275, 0.8778268694877625], [32.1403, 114.0122, 12.524506568908691], [21.2679, 110.3316, 12.847299575805664], [43.895, 81.2867, 28.929378509521484], [41.5931, 120.4439, -20.431930541992188], [39.5747, 116.7729, -3.9392435550689697], [28.4303, 117.9033, -1.7429267168045044], [38.885, 121.5638889, -21.532140731811523], [36.4343, 116.0072, 2.924908399581909], [24.9424, 118.6663, 2.5645015239715576], [37.9854, 112.549, 22.064136505126953], [36.6867, 101.524, 1.4667637348175049], [45.0878, 124.8292, -9.517313003540039], [26.5917, 104.83, 7.516269207000732], [25.1035, 117.0216, 3.3029680252075195], [31.955, 119.146, -12.243937492370605], [30.6145, 116.9894, -0.565218985080719], [35.0992, 117.4518, -8.899561882019043], [37.374, 120.399, -19.516368865966797], [43.85, 125.217, -13.751940727233887], [41.0971, 122.9642, -26.422271728515625], [41.0385, 113.1076, 8.748428344726562], [21.2706, 110.3539, 12.857346534729004], [47.3386, 123.9305, -1.6927568912506104], [31.751, 119.579, -14.291062355041504], [32.7639, 116.8028, -2.6300606727600098], [23.7569, 114.6778, 8.181910514831543], [38.2911, 109.7456, 28.91789436340332], [36.9639, 100.9048, -0.8676115870475769], [47.9047, 88.1214, 16.78249168395996], [36.0417, 111.4917, 26.200206756591797], [29.3628, 104.7547, 16.974796295166016], [30.8811, 117.7442, -4.170168876647949], [26.6343, 106.7487, 11.391499519348145], [29.3547, 110.5594, 15.962376594543457], [32.3153, 118.3094, -9.422356605529785], [24.3406, 109.3886, 7.03925895690918], [34.2572, 109.06, 27.514925003051758], [27.8403, 112.9118, 15.962675094604492], [35.4934, 112.835, 20.113853454589844], [27.8042, 114.9119, 10.153558731079102], [28.6869, 115.852, 5.1896257400512695], [34.3672, 107.1906, 30.80952262878418], [29.8633, 121.586, -12.369874954223633], [37.4514, 105.0197, 10.496170043945312], [36.913, 121.531, -20.35214614868164], [38.0513, 114.4548, 14.792633056640625], [37.8692, 112.5369, 22.41986656188965], [32.0197, 112.155, 18.702573776245117], [30.7525, 120.7844444, -15.18844223022461], [27.7231, 109.1794, 18.11366081237793], [39.0153, 106.3717, 8.285924911499023], [31.3508, 118.3528, -7.914456844329834], [23.0467, 113.144, 8.824950218200684], [23.1617, 112.565, 7.997710227966309], [34.7822, 111.19, 25.28684425354004], [29.077, 119.647, -9.277996063232422], [37.3753, 97.3731, -7.895923137664795], [23.3594, 104.2533, 3.566466808319092], [32.5714, 110.8839, 21.14734649658203], [46.6462, 131.1516, -0.23559993505477905], [27.2944, 105.31, 11.012330055236816], [32.4639, 119.888, -15.7188081741333], [39.0845, 117.1589, -6.174422264099121], [37.4314, 118.6672, -14.999350547790527], [30.1366, 104.6617, 18.805078506469727], [31.3264, 120.596, -16.16398811340332], [36.6275, 109.4131, 33.5918083190918], [23.5538, 113.589, 8.121236801147461], [22.8054, 113.292, 9.535964965820312], [24.3898, 109.4883, 7.302435874938965], [42.3022, 123.8139, -21.83462142944336], [27.1311, 114.99, 10.137439727783203], [40.9733, 117.8184, -10.48106861114502], [40.7612, 111.717, 11.521571159362793], [31.2071, 121.577, -16.10830307006836], [36.253, 120.014, -19.248916625976562], [32.9917, 112.5192, 18.325157165527344], [28.3586, 112.9958, 13.691964149475098], [29.2958, 117.2111, -0.23489399254322052], [27.8072, 114.4011, 11.937417030334473], [47.203, 123.6261, -2.169285535812378], [39.3265, 112.4078, 18.871313095092773], [41.0833, 122.9481, -26.4427433013916], [34.2629, 108.993, 27.618303298950195], [45.5828, 84.8897, 19.964723587036133], [31.215, 107.525, 17.033447265625], [39.16969, 117.2099, -6.378647327423096], [27.5342, 109.9792, 18.44578742980957], [38.4186, 112.7356, 20.457630157470703], [41.2692, 123.7989, -25.77694320678711], [31.6411, 118.4828, -9.077921867370605], [39.4365, 75.9435, 51.417972564697266], [28.9664, 118.871, -7.163691520690918], [23.1036, 109.5683, 4.998170375823975], [36.0822, 111.5169, 26.146909713745117], [36.885, 120.515, -19.676471710205078], [26.4214, 111.6156, 15.100988388061523], [34.719, 113.734, 14.295092582702637], [42.0186, 121.6561, -22.926692962646484], [30.63, 104.1113889, 19.209285736083984], [47.7222, 128.8736, 0.8223816752433777], [41.7381, 125.9486, -21.24089241027832], [29.355, 113.2117, 12.426872253417969], [45.1642, 124.8528, -9.249970436096191], [34.7772, 111.1928, 25.26529884338379], [33.027, 112.5573, 18.213268280029297], [42.2814, 118.9233, -16.344039916992188], [28.5773, 121.377, -8.335525512695312], [43.95305556, 126.4738889, -12.178966522216797], [32.6778, 109.0311, 21.04190444946289], [29.389, 106.513, 17.05915069580078], [32.6319, 116.8306, -2.5347979068756104], [22.5978, 114.297, 10.819879531860352], [27.6869, 106.9222, 14.955257415771484], [32.0314, 118.803, -11.201244354248047], [29.1029, 119.686, -9.422537803649902], [33.581, 114.014, 12.44123363494873], [33.8561, 115.7831, 1.9944267272949219], [28.2597, 112.9792, 14.221932411193848], [43.7878, 125.454, -13.826252937316895], [36.6106, 109.5056, 33.386959075927734], [23.02777778, 113.7461111, 9.404402732849121], [28.6844, 115.893, 5.0723185539245605], [33.9506, 118.3214, -12.797443389892578], [30.8217, 106.1031, 18.003881454467773], [41.7128, 86.2381, 10.093554496765137], [23.1478, 109.5681, 4.999946594238281], [29.261, 91.7706, 1.7082098722457886], [39.0877, 117.307, -6.903659343719482], [28.4231, 119.879, -7.646597862243652], [45.2978, 130.9298, -3.2541792392730713], [27.725, 111.9975, 17.798744201660156], [31.2284, 121.533, -16.130889892578125], [41.1196, 123.044, -26.396774291992188], [42.8328, 93.4961, -2.684492826461792], [36.5819, 101.834, 2.579436779022217], [30.9697, 117.8472, -4.847161293029785], [40.0031, 116.407, -2.0321621894836426], [36.881, 118.746, -15.821270942687988], [34.2761, 117.167, -6.735663890838623], [26.6029, 106.6856, 11.187956809997559], [35.7306, 114.2878, 13.077308654785156], [34.6258, 112.4275, 20.299875259399414], [36.865, 120.537, -19.682334899902344], [30.5719, 114.3672, 11.590677261352539], [35.5051, 112.85, 20.071725845336914], [29.6588, 90.9798, 2.606346845626831], [32.3761, 119.389, -13.818115234375], [36.2866, 100.6188, 0.3593232333660126], [43.1747, 124.3419, -17.261459350585938], [39.8673, 116.366, -1.765742540359497], [40.8452, 111.659, 10.81128978729248], [29.2647, 117.1558, 0.02790062315762043], [27.8614, 112.9433, 15.85035514831543], [23.475, 111.3178, 6.81011438369751], [39.5453, 116.7022, -3.6486566066741943], [28.5808, 112.3458, 14.316628456115723], [36.5336, 116.734, -2.598804235458374], [36.2289, 117.6789, -10.325932502746582], [23.65889, 116.6183, 7.561542987823486], [33.8997, 116.8067, -4.616236209869385], [23.7586, 114.6944, 8.181611061096191], [41.8417, 123.7117, -23.780954360961914], [29.6535, 116.0174, 3.8755478858947754], [46.6384, 126.9934, -3.1185503005981445], [41.2864, 123.7669, -25.74335479736328], [27.8244, 113.135, 15.506989479064941], [29.5822, 105.0406, 17.638193130493164], [29.6632, 94.3616, 0.3184666037559509], [45.7667, 126.635, -6.390974521636963], [38.2478, 109.7336, 29.14683723449707], [34.5911, 119.1478, -16.73147964477539], [39.6407, 118.1853, -10.980127334594727], [26.5892, 104.8, 7.4336628913879395], [31.354, 119.818, -14.965886116027832], [36.6622, 117.049, -5.244569301605225], [19.9969, 110.338, 20.944351196289062], [35.428, 116.6305, -2.9826314449310303], [37.364, 120.394, -19.516016006469727], [26.0542, 119.389, -1.2279003858566284], [31.155, 120.636, -15.85887336730957], [22.2281, 113.299, 11.720287322998047], [23.63444, 113.0472, 7.912431240081787], [23.3892, 104.2319, 3.5124056339263916], [43.8748, 125.3649, -13.566055297851562], [31.03389, 112.1908, 17.568971633911133], [23.2775, 116.7258, 8.859389305114746], [35.4144, 116.5856, -2.731605052947998], [35.3962, 119.54, -18.04545021057129], [40.1952, 116.23, -1.1494582891464233], [29.3578, 113.1094, 12.681747436523438], [46.0347, 124.8354, -6.267651081085205], [47.3382, 130.1097, 0.5853754281997681], [40.916, 107.5936, 1.4361881017684937], [41.9339, 123.6836, -23.48086166381836], [22.96583333, 113.7383333, 9.557668685913086], [36.6872, 116.989, -4.735540866851807], [34.7538, 113.6356, 14.868565559387207], [31.7308, 113.3983, 14.783123016357422], [35.04388889, 111.0522222, 26.242006301879883], [35.9019, 114.17, 14.113702774047852], [27.5733, 109.9333, 18.496706008911133], [33.6347, 114.6758, 9.160147666931152], [32.1078, 114.1044, 12.163415908813477], [22.4853, 113.4411, 10.756046295166016], [43.8875, 126.555, -12.304035186767578], [33.6067, 118.989, -14.833643913269043], [29.5867, 115.9936, 3.9456450939178467], [34.1978, 108.985, 27.328519821166992], [25.0311, 117.0151, 3.458636522293091], [27.11, 114.9739, 10.212462425231934], [30.21, 120.211, -13.879168510437012], [26.9258, 112.6194, 16.173446655273438], [46.7588, 130.3794, -0.6611653566360474], [35.4813, 112.8252, 20.133769989013672], [39.9279, 116.225, -0.9954279065132141], [34.3181, 108.6761, 28.132131576538086], [24.769519, 113.586606, 8.753997802734375], [30.5103, 117.0549, -0.6229235529899597], [40.7579, 111.651, 11.502399444580078], [37.0964, 114.5331, 13.991232872009277], [49.2261, 119.7594, 3.6760079860687256], [25.4792, 118.981, 0.8169090747833252], [38.80805556, 121.2588889, -20.677576065063477], [28.2053, 113.0792, 14.221208572387695], [40.8144, 111.608, 11.010366439819336], [42.8953, 125.1567, -17.684097290039062], [24.6928, 108.054, 6.2974138259887695], [32.0878, 118.626, -10.681468963623047], [29.7207, 118.3236, -6.041548728942871], [36.838, 118.0448, -12.142274856567383], [29.9899, 103.0013, 16.312437057495117], [32.64600333, 117.0411667, -3.7270679473876953], [22.6069, 113.104, 9.886656761169434], [22.805, 108.383, 4.592137813568115], [21.4689, 111.0286, 12.507286071777344], [21.6828, 110.8592, 11.075874328613281], [30.696, 111.268, 18.183635711669922], [22.5111, 113.4075, 10.613283157348633], [43.831, 87.6432, 9.06969165802002], [33.5653, 114.0322, 12.360170364379883], [35.5714, 104.6228, 18.275314331054688], [26.6607, 119.5202, -2.882812023162842], [31.317, 119.438, -13.46102523803711], [31.5631, 120.245, -16.04462242126465], [29.8181, 114.3036, 11.021672248840332], [25.0124, 102.743, 2.7971999645233154], [31.2994, 120.543, -16.09600830078125], [34.1546, 108.906, 27.205047607421875], [31.0483, 112.2014, 17.56796646118164], [30.2997, 113.8531, 13.095428466796875], [39.625, 121.989, -23.030502319335938], [40.7736, 120.8631, -21.026901245117188], [35.27, 115.455, 4.832855224609375], [29.8272, 106.379, 17.11380386352539], [30.0874, 103.8416, 17.694000244140625], [29.41569, 106.5506, 17.06692886352539], [27.2537, 111.4503, 18.009532928466797], [24.2719, 116.0797, 6.422717094421387], [47.3349, 130.2659, 0.695665180683136], [25.0359, 102.638, 2.7910914421081543], [30.2692, 120.19, -13.990104675292969], [27.0658, 114.9817, 10.223209381103516], [25.8179, 113.0119, 12.192715644836426], [26.2403, 107.5228, 11.046090126037598], [32.4285, 105.8624, 22.316600799560547], [31.2659, 121.536, -16.1899471282959], [35.5997, 103.2064, 9.883437156677246], [34.9162, 113.6113, 15.281959533691406], [38.49494, 106.1024, 10.650161743164062], [32.4867, 119.9, -15.77369213104248], [39.1654, 117.145, -6.055682182312012], [41.0903, 122.0539, -24.952129364013672], [23.3917, 113.215, 8.212407112121582], [31.1333, 104.3883, 20.08432388305664], [34.6972, 119.3581, -17.290035247802734], [42.8172, 93.5128, -2.737945079803467], [22.6164, 110.1433, 6.409420967102051], [45.8167, 126.561, -6.264331340789795], [31.8766, 117.307, -3.749460458755493], [34.3622, 107.2386, 30.69755744934082], [25.5364, 103.8, 3.8064112663269043], [22.5545, 114.1063, 10.914976119995117], [43.9311, 116.0781, -7.480074405670166], [37.5211, 111.1406, 27.443336486816406], [47.7317, 128.9094, 0.8684595823287964], [41.7972, 123.3997, -24.053560256958008], [23.3993, 103.3772, 3.8613831996917725], [46.5776, 125.1386, -4.180032730102539], [43.8303, 87.5801, 9.24073600769043], [30.5947, 114.3008, 11.855484008789062], [26.2081, 111.6217, 14.401466369628906], [27.6442, 113.8686, 13.69355583190918], [39.2282, 106.7704, 8.874588966369629], [42.2556, 118.8789, -16.174396514892578], [26.3003, 106.805, 10.338532447814941], [29.57278, 106.4042, 17.075910568237305], [23.0916, 113.348, 8.888587951660156], [36.6114, 116.988, -4.7649054527282715], [41.1386, 121.1303, -22.34020233154297], [45.8194, 130.8625, -2.2780492305755615], [33.721, 113.322, 15.510568618774414], [31.896, 121.173, -17.138200759887695], [31.7848, 117.196, -3.1070706844329834], [26.8906, 100.2203, 5.378474712371826], [24.795928, 113.598061, 8.791804313659668], [39.9567, 119.6023, -16.266416549682617], [32.18888889, 119.4369444, -13.867987632751465], [34.9817, 118.2764, -13.959905624389648], [36.5481, 104.1731, 10.192061424255371], [26.5495, 106.6867, 11.008929252624512], [44.1564, 87.9897, 8.810646057128906], [37.7111, 112.7306, 22.37135887145996], [26.4364, 111.5992, 15.155638694763184], [39.617, 122.011, -23.088315963745117], [26.6514, 118.1819, -0.7414606809616089], [40.9843, 117.9525, -11.035659790039062], [22.0019, 100.7939, 8.440250396728516], [21.5958, 109.2256, 9.86313533782959], [34.7967, 114.2886, 11.470641136169434], [25.0492, 101.538, 3.021219491958618], [31.9286, 102.1755, 18.40164566040039], [26.567, 101.7227, 4.428311824798584], [36.0725, 103.841, 10.520143508911133], [39.3179, 112.4254, 18.849605560302734], [26.5155, 106.6948, 10.901970863342285], [22.7875, 108.301, 4.576801776885986], [29.7534, 116.0726, 3.5999436378479004], [33.627, 119.0122, -14.940256118774414], [34.2778, 117.2933, -7.415987968444824], [32.8913, 117.4186, -6.10852575302124], [39.7884, 109.9734, 17.538002014160156], [30.475, 105.5956, 18.650257110595703], [34.6686, 112.4433, 20.298877716064453], [35.0611, 111.0233, 26.35921287536621], [23.4794, 111.26, 6.749276638031006], [30.72358333, 103.97275, 19.125263214111328], [46.8025, 130.2719, -0.6394265294075012], [32.02, 120.87, -17.276119232177734], [32.0417, 120.81, -17.2220401763916], [37.187, 122.019, -21.62854766845703], [38.0398, 114.6046, 14.052629470825195], [36.086, 114.32, 13.674856185913086], [25.9061, 113.0073, 12.387223243713379], [24.77908333, 113.6734722, 8.694217681884766], [41.0781, 121.0986, -22.196674346923828], [37.197, 122.038, -21.68415069580078], [31.92, 120.302, -16.453725814819336], [39.8129, 110.0023, 17.380529403686523], [36.71, 117.541, -9.160357475280762], [32.3292, 119.8767, -15.580320358276367], [28.8833, 105.4322, 16.21234130859375], [34.4286, 115.6697, 2.779787302017212], [30.2897, 120.157, -14.00680923461914], [22.9394, 112.0369, 7.737893104553223], [29.305, 120.091, -10.583395004272461], [26.9056, 112.5664, 16.194311141967773], [26.4519, 111.5989, 15.204643249511719], [25.0925, 104.9022, 4.533342361450195], [26.6383, 118.1694, -0.6858449578285217], [30.0033, 120.7789, -13.284944534301758], [36.4372, 115.9848, 3.0805184841156006], [42.2217, 123.7153, -22.25214195251465], [31.5072, 104.7283, 20.66325569152832], [37.7379, 115.6426, 7.854764938354492], [34.794, 111.158, 25.417205810546875], [30.1808, 120.088, -13.698648452758789], [35.1764, 113.2464, 17.51227569580078], [27.8136, 99.7064, 6.531491279602051], [30.4133, 114.8131, 9.407130241394043], [30.1377, 104.6289, 18.802303314208984], [28.19, 112.9394, 14.584341049194336], [29.635, 119.026, -9.623851776123047], [33.5981, 119.036, -14.98444652557373], [42.0503, 121.6972, -22.862945556640625], [34.0117, 113.8331, 13.244709968566895], [29.5634, 103.757, 16.082355499267578], [32.5, 80.1161, 49.5811653137207], [30.3119, 120.12, -14.008781433105469], [29.33972, 104.7228, 16.867338180541992], [41.1042, 121.835, -24.388017654418945], [37.8564, 113.5753, 19.390295028686523], [31.17, 120.635, -15.888025283813477], [33.4022, 120.118, -16.984712600708008], [38.8707, 115.5214, 5.9458394050598145], [38.6016, 105.9512, 8.827214241027832], [38.0524, 114.5214, 14.453123092651367], [37.18, 119.959, -19.30146026611328], [21.9508, 108.6553, 7.658288478851318], [21.6533, 110.9294, 11.325763702392578], [36.8198, 118.3092, -13.559102058410645], [32.965, 114.018, 12.535137176513672], [46.0872, 85.6931, 18.793418884277344], [28.1944, 113.0014, 14.437883377075195], [29.1389, 110.48, 16.292091369628906], [45.2948, 131.0103, -3.171753406524658], [30.4865, 106.6351, 16.893814086914062], [34.802, 113.564, 15.33083724975586], [41.5647, 120.4247, -20.36379623413086], [33.6481, 116.9765, -5.305563926696777], [43.1847, 124.3897, -17.178367614746094], [30.698, 111.2992, 18.15424156188965], [34.5653, 105.8614, 29.209680557250977], [22.5328, 113.024, 10.06467056274414], [23.1142, 114.4103, 9.59094524383545], [34.2153, 117.256, -7.18477725982666], [32.6975, 109.0072, 21.07782554626465], [25.4552, 119.0018, 0.8655946254730225], [30.51197222, 117.0331111, -0.5441833138465881], [37.4442, 118.5857, -14.629648208618164], [28.2264, 117.0222, 2.753335952758789], [34.9058, 108.9344, 30.191692352294922], [31.6908, 113.3833, 14.848016738891602], [28.0005, 116.3574, 5.476502418518066], [32.395, 111.0419, 20.814964294433594], [35.31, 113.836, 14.754255294799805], [23.3667, 116.6794, 8.484814643859863], [34.3469, 106.005, 29.767423629760742], [25.8071, 113.0383, 12.14954948425293], [32.3061, 118.3158, -9.440982818603516], [40.7608, 107.4211, 1.743757963180542], [35.0697, 109.0697, 30.535999298095703], [44.5952, 129.5902, -6.822358131408691], [37.8531, 113.6292, 19.150259017944336], [40.3937, 116.644, -3.097557544708252], [30.3714, 114.8989, 8.880036354064941], [31.2261, 121.425, -16.110681533813477], [40.6592, 122.2414, -25.148212432861328], [21.8536, 111.9508, 11.686054229736328], [40.7136, 120.9092, -21.091873168945312], [27.3392, 103.7032, 7.789952278137207], [41.1222, 121.1178, -22.29749298095703], [26.4364, 106.6554, 10.566425323486328], [38.4841, 106.2739, 11.95252513885498], [37.393, 117.9776, -11.199959754943848], [29.9816, 103.0001, 16.286638259887695], [33.1138, 107.0089, 24.411073684692383], [38.9846, 117.3747, -7.289670467376709], [23.05361111, 113.7819444, 9.367822647094727], [25.2708, 110.3089, 10.875540733337402], [29.315, 110.4417, 16.016443252563477], [31.7956, 117.302, -3.6101226806640625], [35.767, 115.0772, 8.152314186096191], [24.3663, 109.3957, 7.125974655151367], [29.8506, 121.524, -12.347387313842773], [43.8256, 126.55, -12.516575813293457], [27.72, 106.9178, 15.021496772766113], [27.8036, 114.9314, 10.089075088500977], [36.8041, 117.8512, -11.192953109741211], [36.907, 121.544, -20.364391326904297], [29.2718, 88.8876, 12.266166687011719], [25.5035, 103.7897, 3.7622077465057373], [40.8369, 111.751, 10.972922325134277], [39.0631, 121.9769, -22.73053741455078], [33.9592, 118.2442, -12.414551734924316], [33.63063889, 116.989, -5.347390174865723], [41.0831, 123.0156, -26.466188430786133], [39.6308, 118.1662, -10.878984451293945], [23.0528, 114.4183, 9.708414077758789], [30.4742, 114.9028, 8.911645889282227], [30.6578, 104.054, 19.15805435180664], [21.7631, 108.3511, 8.327713966369629], [42.9409, 89.191, 4.228468894958496], [41.3369, 123.7528, -25.584983825683594], [30.2747, 120.063, -13.85307502746582], [35.2375, 115.474722, 4.6710004806518555], [46.6572, 131.1638, -0.1970394104719162], [29.2365, 88.8931, 12.366617202758789], [36.0022, 106.2792, 28.377239227294922], [33.739, 113.292, 15.635335922241211], [30.5797, 105.7519, 18.482036590576172], [37.7805, 112.488, 22.736825942993164], [28.9026, 105.4436, 16.245914459228516], [30.3515, 112.2068, 16.7067928314209], [35.6039, 103.2139, 9.89164924621582], [37.9844, 106.2025, 15.299294471740723], [33.7214, 113.3064, 15.576476097106934], [35.0994, 109.0656, 30.640117645263672], [38.00583333, 114.4586111, 14.816685676574707], [36.7008, 119.1425, -17.576976776123047], [25.0992, 104.8811, 4.5192718505859375], [35.1147, 111.0414, 26.405179977416992], [32.0723, 118.778, -11.195308685302734], [34.7496, 113.5991, 15.05359935760498], [30.2366, 119.7183, -12.996587753295898], [24.44583333, 118.0636111, 4.268353462219238], [23.5353, 116.3697, 8.059432983398438], [37.3803, 118.0062, -11.401254653930664], [43.8947, 126.5786, -12.254014015197754], [31.5031, 120.242, -15.975602149963379], [40.8367, 114.8985, 3.818127393722534], [37.5639, 121.2514, -20.474172592163086], [30.6463, 111.3549, 18.051122665405273], [25.8417, 98.8546, 4.536088466644287], [27.5578, 109.9972, 18.48029136657715], [46.8032, 130.3648, -0.5654134154319763], [42.8939, 129.4892, -10.932860374450684], [34.6692, 112.3628, 20.62530517578125], [30.9414, 117.7806, -4.447120189666748], [29.6514, 91.1319, 2.265355348587036], [24.3304, 109.4108, 7.033542633056641], [28.71583, 104.5761, 14.648783683776855], [30.3944, 114.8878, 8.965497970581055], [38.03777778, 114.5480556, 14.335708618164062], [23.0786, 112.4722, 8.021461486816406], [46.528, 125.112, -4.365893363952637], [27.2317, 111.4733, 17.97483253479004], [30.7157, 111.3009, 18.170013427734375], [32.9683, 112.55, 18.211259841918945], [31.3008, 121.467, -16.235319137573242], [46.619, 131.1651, -0.28655874729156494], [43.9469, 87.4754, 9.756119728088379], [28.8194, 104.5969, 15.014338493347168], [30.9431, 118.7175, -8.828041076660156], [33.3942, 120.156, -17.072145462036133], [35.5236, 107.6406, 34.161685943603516], [31.8706, 117.259, -3.523125648498535], [32.4429, 105.8242, 22.465120315551758], [32.88922222, 115.7838889, 2.664612293243408], [26.6009, 106.7105, 11.220818519592285], [27.8094, 102.3419, 7.676150321960449], [30.0911, 120.598, -13.595940589904785], [29.6747, 91.1221, 2.244325876235962], [35.4039, 116.5546, -2.5545387268066406], [33.5039, 119.135, -15.116047859191895], [46.0707, 122.0931, -6.123928546905518], [34.29, 117.1814, -6.816315174102783], [41.9967, 121.6178, -22.938922882080078], [34.3739, 107.1186, 30.942955017089844], [23.0048, 113.134, 8.901774406433105], [29.90166667, 121.6147222, -12.497038841247559], [31.671, 120.721, -16.744911193847656], [28.1308, 112.8908, 14.962160110473633], [34.3164, 108.7369, 28.090394973754883], [34.7837, 117.2852, -7.705935955047607], [42.8775, 129.3675, -11.155939102172852], [35.0003, 102.905, 11.465534210205078], [43.6156, 122.3039, -16.01909637451172], [41.765, 123.41, -24.180967330932617], [32.939, 117.3961, -6.106878757476807], [36.5767, 109.4824, 33.4207649230957], [34.6231, 112.3844, 20.47458267211914], [27.8847, 102.2689, 7.887223243713379], [43.962, 87.6444, 9.325884819030762], [37.5002, 105.1971, 11.408761024475098], [36.7019, 119.12, -17.49251937866211], [35.213, 113.227, 17.665369033813477], [40.1503, 124.4256, -27.63046646118164], [31.8108, 119.9736, -15.634055137634277], [37.8873, 112.522, 22.40563201904297], [33.568, 114.005, 12.486190795898438], [26.8802, 100.2497, 5.34870719909668], [41.8864, 124.0878, -23.341327667236328], [31.3708, 120.641, -16.253559112548828], [29.6376, 94.3681, 0.3563498854637146], [23.5292, 116.4094, 8.05670166015625], [34.3731, 109.2186, 27.79938507080078], [31.6219, 120.275, -16.15386962890625], [31.5475, 120.354, -16.24020004272461], [27.8667, 113.167, 15.327585220336914], [41.9206, 126.4047, -19.621999740600586], [40.6821, 109.8538, 8.913944244384766], [42.2953, 123.8831, -21.814773559570312], [34.2417, 117.192, -6.8565287590026855], [36.6164, 114.5426, 13.281115531921387], [41.5672, 120.4486, -20.431787490844727], [25.1174, 117.0181, 3.2965152263641357], [41.8594, 123.9, -23.628746032714844], [25.8567, 98.8601, 4.548403739929199], [29.5817, 105.0653, 17.6441707611084], [36.497, 117.8477, -11.46013069152832], [31.7275, 113.3583, 14.932899475097656], [25.7054, 100.1542, 4.315244197845459], [36.2211, 117.6983, -10.473283767700195], [24.68636111, 113.5970833, 8.560320854187012], [36.0714, 111.5028, 26.185670852661133], [24.81119444, 113.5593889, 8.838460922241211], [29.4402, 112.9943, 13.175450325012207], [35.76806, 115.0061, 8.611964225769043], [28.0089, 120.634, -7.450232028961182], [37.4372, 116.2714, 2.1589839458465576], [31.7797, 116.5068, 0.4976016879081726], [31.1654, 121.412, -16.010032653808594], [45.8309, 130.9467, -2.170161485671997], [44.8969, 82.0806, 26.92098617553711], [39.7294, 98.5023, -9.335227012634277], [28.4459, 117.973, -2.1036934852600098], [23.3682, 103.3758, 3.9233038425445557], [24.8885, 102.821, 2.7643344402313232], [41.3472, 123.8142, -25.506837844848633], [33.0122, 112.5224, 18.323854446411133], [42.2864, 123.8489, -21.879091262817383], [27.7314, 112.0194, 17.751388549804688], [35.7672, 115.0628, 8.246342658996582], [30.6103, 114.4272, 11.388415336608887], [31.7506, 118.5106, -9.438535690307617], [29.1456, 111.7158, 14.765913009643555], [28.9745, 118.855, -7.147180080413818], [34.6575, 109.2, 28.954669952392578], [23.105, 113.261, 8.793224334716797], [39.6572, 106.7931, 5.721594333648682], [23.5739, 116.3594, 7.954522609710693], [31.2108, 107.4967, 16.997140884399414], [32.625, 116.7039, -1.820886254310608], [28.2675, 109.6958, 18.914533615112305], [32.8985, 117.3065, -5.57114839553833], [41.2894, 123.1417, -25.950578689575195], [30.5706, 104.079, 19.034822463989258], [32.1342, 114.0681, 12.307439804077148], [23.0706, 112.427, 7.9798970222473145], [37.825, 120.747, -19.837663650512695], [34.493, 109.4636, 27.8227481842041], [26.5894, 104.8475, 7.55171537399292], [28.76611, 104.6225, 14.88596248626709], [31.4747, 104.7778, 20.637493133544922], [32.0564, 112.1392, 18.766870498657227], [32.9735, 112.5003, 18.3785400390625], [25.0441, 101.5482, 3.007951259613037], [26.6611, 119.5392, -2.9031786918640137], [43.6801, 122.2532, -15.712496757507324], [28.8558, 105.4322, 16.152353286743164], [29.6541, 91.1774, 2.1657989025115967], [38.2991, 116.8854, -4.294398784637451], [37.154, 122.471, -22.75656509399414], [41.7156, 125.9361, -21.345476150512695], [28.2169, 116.9983, 2.8773045539855957], [31.3097, 120.669, -16.15704345703125], [44.0297, 87.2717, 10.483742713928223], [25.8471, 114.8905, 8.883888244628906], [33.8715, 109.9154, 25.091978073120117], [36.61981, 114.4965, 13.574796676635742], [38.97388889, 121.6119444, -21.681991577148438], [27.8328, 114.9289, 10.104758262634277], [40.0625, 124.3303, -27.753150939941406], [22.5625, 114.117, 10.893614768981934], [45.6886, 85.1186, 19.524303436279297], [38.3228, 116.8709, -4.198581218719482], [40.2865, 116.17, -0.900789201259613], [47.3489, 130.3172, 0.7738142013549805], [45.9819, 126.6106, -5.649504661560059], [38.3254, 116.8584, -4.106839656829834], [37.7087, 112.7105, 22.423828125], [31.8516, 117.124, -2.8541202545166016], [36.8088, 118.0482, -12.196501731872559], [38.5036, 106.1358, 10.817239761352539], [38.8756, 115.442, 6.609970569610596], [35.0308, 110.9678, 26.45547103881836], [21.865, 111.9494, 11.621023178100586], [31.9051, 117.16, -3.0951895713806152], [29.6007, 103.7506, 16.212692260742188], [41.9419, 126.4078, -19.54004669189453], [39.0511, 121.7769, -22.176677703857422], [32.0775, 118.795, -11.265793800354004], [46.0703, 122.0506, -6.112692356109619], [27.9639, 116.3598, 5.462061405181885], [24.4674, 117.6336, 4.25771951675415], [30.049, 119.946, -13.250978469848633], [34.7997, 111.1489, 25.45833396911621], [22.5497, 113.3881, 10.455188751220703], [34.378, 108.869, 28.26359748840332], [36.4796, 115.9835, 3.1897518634796143], [29.334, 120.04, -10.701570510864258], [31.422, 121.14, -16.354841232299805], [38.91194444, 121.6330556, -21.717275619506836], [29.6926, 116.0628, 3.6792354583740234], [27.6428, 113.8381, 13.793203353881836], [37.43445, 118.696, -15.124879837036133], [43.55, 125.633, -14.612988471984863], [32.4246, 105.8153, 22.38998031616211], [46.6527, 126.9636, -3.08282470703125], [45.7478, 126.593, -6.483634948730469], [35.28385, 113.5922, 15.936844825744629], [31.8585, 117.336, -3.856027126312256], [30.66, 117.49, -2.664306879043579], [38.95111111, 121.565, -21.555416107177734], [40.1097, 113.3819, 12.794524192810059], [33.0706, 107.0154, 24.115938186645508], [27.8344, 114.9831, 9.924736976623535], [27.9153, 113.0048, 15.586447715759277], [27.3033, 111.5239, 18.052431106567383], [30.518, 106.631, 16.896121978759766], [31.7371, 116.508, 0.5543055534362793], [29.6039, 115.9114, 4.186743259429932], [23.8822, 100.0869, 4.351715564727783], [39.9425, 116.361, -1.7609447240829468], [23.2539, 116.6092, 8.957592964172363], [24.5058, 118.0936, 4.085760593414307], [36.0211, 106.2375, 28.014251708984375], [27.8159, 112.9227, 15.996106147766113], [30.2989, 109.5039, 17.064353942871094], [29.7125, 106.617, 17.19491195678711], [44.6104, 129.6459, -6.71098518371582], [30.4753, 114.1525, 12.270145416259766], [44.1756, 87.5475, 10.024906158447266], [34.6869, 112.4831, 20.16289520263672], [37.062, 114.4854, 14.24203109741211], [36.6428, 101.748, 2.177868366241455], [26.5506, 104.9544, 7.689548492431641], [31.4539, 104.7536, 20.602270126342773], [31.388, 120.953, -16.34088897705078], [45.755, 126.542, -6.49094295501709], [31.0283, 103.613, 19.25792121887207], [40.7688, 114.9032, 3.9259533882141113], [31.3019, 120.591, -16.120365142822266], [33.9953, 113.7906, 13.438555717468262], [30.0506, 103.8986, 17.691713333129883], [39.65782, 118.1838, -10.97591495513916], [30.6347, 105.8161, 18.407695770263672], [31.1108, 104.3539, 20.03864860534668], [37.0172, 105.18, 14.29566764831543], [30.0125, 103.009, 16.389427185058594], [35.763, 115.031, 8.443352699279785], [24.3158, 109.4839, 7.069132328033447], [22.9477, 113.352, 9.243809700012207], [36.6525, 119.1638, -17.663175582885742], [28.2325, 113.0833, 14.09292221069336], [29.7228, 106.626, 17.199493408203125], [36.39, 120.47, -19.542753219604492], [37.7124, 112.469, 22.938526153564453], [29.3411, 104.7692, 16.937036514282227], [39.79777778, 98.26722222, -9.45008659362793], [29.7048, 115.9581, 4.024048805236816], [39.5986, 109.7736, 18.848522186279297], [39.7711, 98.2908, -9.433563232421875], [31.874, 120.526, -16.772850036621094], [23.3633, 116.7244, 8.4915189743042], [22.5931, 113.0819, 9.901674270629883], [32.41, 119.404, -13.922410011291504], [35.7289, 107.6831, 34.38283920288086], [43.8694, 125.325, -13.610892295837402], [25.0405, 102.722, 2.8052616119384766], [39.5178, 116.6838, -3.587272882461548], [33.5979, 114.6546, 9.299787521362305], [22.9169, 112.0392, 7.77609920501709], [34.6869, 112.4664, 20.232833862304688], [30.9414, 117.8178, -4.648529052734375], [43.9317, 116.1042, -7.542482376098633], [32.0903, 112.2106, 18.634300231933594], [42.0486, 121.6592, -22.843624114990234], [41.615, 120.3939, -20.305253982543945], [40.8033, 111.658, 11.15970516204834], [31.7897, 119.8914, -15.407587051391602], [31.909, 120.237, -16.310646057128906], [32.1083, 118.803, -11.354637145996094], [30.8596, 120.1844, -14.99312973022461], [31.1167, 104.4053, 20.06951141357422], [30.7819, 111.3296, 18.18989372253418], [28.9583, 105.4306, 16.366682052612305], [38.85611111, 121.5180556, -21.400653839111328], [23.1323, 113.3208, 8.771585464477539], [31.7618, 116.478, 0.6537777781486511], [29.7736, 121.633, -12.024858474731445], [39.8261, 109.9486, 17.19467544555664], [38.8957, 115.5223, 5.85831880569458], [32.215, 119.491, -14.12967586517334], [27.8528, 113.13, 15.45479965209961], [32.105, 118.907, -11.70437240600586], [26.0797, 119.268, -1.169930100440979], [33.975, 116.8008, -4.615963935852051], [26.6266, 106.6243, 11.165069580078125], [23.105, 113.433, 8.924378395080566], [30.3058, 120.348, -14.141632080078125], [22.9539, 112.0539, 7.732655048370361], [31.4846, 92.0657, -0.46244940161705017], [31.6928, 118.48, -9.166860580444336], [27.9939, 120.677, -7.44903039932251], [34.2713, 108.954, 27.694293975830078], [41.1953, 123.2, -26.215396881103516], [34.2749, 108.882, 27.78386116027832], [30.1819, 120.27, -13.864842414855957], [22.5211, 113.3769, 10.541131973266602], [36.864, 118.78, -16.002809524536133], [21.9667, 108.6236, 7.567305088043213], [33.3681, 120.1631, -17.07221221923828], [31.4656, 104.6717, 20.600730895996094], [37.739, 115.6906, 7.480519771575928], [36.2126, 113.0886, 20.226755142211914], [39.5989, 109.8119, 18.948732376098633], [24.506, 117.7116, 4.145028114318848], [40.7378, 107.3715, 1.7486188411712646], [34.7187, 113.727, 14.33113956451416], [30.6872, 104.176, 19.41053581237793], [27.583, 110.0394, 18.50723648071289], [31.9438, 117.266, -3.659221649169922], [38.4928, 112.7003, 20.392702102661133], [31.3839, 118.4022, -8.192755699157715], [38.4519, 112.7383, 20.373476028442383], [26.1092, 119.299, -1.2869049310684204], [34.7745, 113.641, 14.875615119934082], [46.5888, 131.1572, -0.3652109205722809], [30.4663, 106.6271, 16.90509033203125], [31.4189, 118.37, -8.109058380126953], [30.6539, 117.4974, -2.688185214996338], [26.8576, 100.2143, 5.343409061431885], [30.6617, 117.4697, -2.5761654376983643], [37.7575, 115.6951, 7.447208404541016], [23.415, 111.2353, 6.675259113311768], [28.0167, 120.671, -7.478938579559326], [30.9222, 117.8078, -4.567722320556641], [38.9108, 115.4713, 6.2291975021362305], [32.6494, 110.78, 21.329971313476562], [28.0797, 116.2239, 5.772834777832031], [34.3017, 107.0708, 30.690828323364258], [40.1269, 113.2661, 12.992870330810547], [36.7731, 119.1939, -17.72478675842285], [47.2988, 123.945, -1.8116121292114258], [28.095, 116.9622, 3.303744077682495], [26.6946, 119.5001, -2.9596149921417236], [27.8728, 112.8937, 15.925395965576172], [23.6936, 113.0425, 7.8882269859313965], [36.799, 119.976, -19.334774017333984], [35.4883, 112.8564, 20.02125358581543], [27.8408, 102.2714, 7.734354496002197], [30.5514, 114.2511, 11.994824409484863], [42.0228, 121.6722, -22.935293197631836], [31.172, 120.658, -15.8968505859375], [32.996, 113.996, 12.625643730163574], [32.1319, 119.43, -13.799521446228027], [31.1907, 121.703, -16.04144287109375], [41.0931, 123.011, -26.44574737548828], [37.4664, 116.3061, 1.8131353855133057], [25.8664, 114.9367, 8.811089515686035], [32.3878, 119.46, -14.088868141174316], [35.4234, 119.5198, -18.017656326293945], [36.5776, 114.5035, 13.468181610107422], [22.8464, 108.239, 4.466244697570801], [42.9061, 129.5042, -10.882413864135742], [30.2352, 115.0625, 7.995692253112793], [27.8953, 102.2311, 7.90855073928833], [40.9923, 113.1306, 9.007575035095215], [31.85805556, 106.7619444, 18.842212677001953], [24.441, 98.578, 4.880966663360596], [41.3283, 123.8436, -25.548933029174805], [22.7422, 114.5317, 10.430492401123047], [27.5444, 109.9453, 18.453527450561523], [25.5811, 100.2171, 4.182091236114502], [26.53111111, 107.8908333, 12.721065521240234], [39.5371, 75.9828, 51.128360748291016], [39.6969, 106.8089, 5.5180487632751465], [35.4178, 119.4641, -17.909778594970703], [33.38256667, 104.9338889, 24.751359939575195], [45.6842, 126.6206, -6.682831287384033], [40.5905, 110.0067, 10.23525333404541], [29.1242, 110.4697, 16.34029197692871], [30.9892, 112.1969, 17.50969696044922], [35.272, 113.884, 14.436938285827637], [41.1933, 80.2956, 32.72922134399414], [39.8745, 116.434, -2.1334569454193115], [37.8195, 112.57, 22.47477912902832], [29.53675, 106.4959, 17.08568572998047], [43.941, 81.3364, 28.78156852722168], [31.9108, 119.905, -15.494876861572266], [27.7758, 115.0586, 9.651613235473633], [30.9219, 117.8561, -4.827967643737793], [30.1259, 104.6294, 18.77625846862793], [31.0935, 120.978, -15.878568649291992], [37.8792, 113.4922, 19.706417083740234], [26.5747, 107.9783, 12.995994567871094], [35.235, 113.261, 17.53321647644043], [24.4072, 111.5622, 8.815210342407227], [31.9025, 102.2218, 18.531736373901367], [37.3617, 118.0018, -11.379935264587402], [43.4569, 87.4651, 8.86603832244873], [26.5928, 101.5769, 4.492801666259766], [45.7733, 126.689, -6.332108497619629], [28.6428, 112.4067, 13.957710266113281], [34.402, 115.6578, 2.849668502807617], [45.7677, 131.0032, -2.2424845695495605], [31.1208, 104.4219, 20.08110237121582], [27.7842, 114.3953, 11.950151443481445], [27.9747, 120.76, -7.418018341064453], [31.4, 119.46, -13.635560035705566], [28.6844, 115.931, 4.955766201019287], [37.161, 122.41, -22.614774703979492], [27.7297, 109.1916, 18.1387996673584], [22.0225, 100.8017, 8.333280563354492], [29.6453, 106.562, 17.156858444213867], [22.8322, 100.9817, 5.583488464355469], [44.5462, 129.6386, -6.881289958953857], [30.65638889, 104.0238889, 19.098339080810547], [36.1031, 103.631, 9.334975242614746], [26.2331, 111.6236, 14.489666938781738], [26.8956, 112.6211, 16.073017120361328], [41.3047, 123.7308, -25.707630157470703], [40.8725, 114.904, 3.6989729404449463], [43.8167, 125.25, -13.862348556518555], [40.9359, 117.963, -10.964537620544434], [27.9119, 112.9074, 15.806046485900879], [41.0112, 117.9384, -11.041093826293945], [32.4611, 119.9219, -15.810652732849121], [35.5294, 106.7039, 32.16941452026367], [29.5947, 105.0717, 17.67000961303711], [35.546, 112.8453, 20.146108627319336], [30.3175, 112.2551, 16.59944725036621], [39.6679, 118.2185, -11.153085708618164], [31.737, 119.579, -14.283495903015137], [50.4269, 124.1186, 6.4349589347839355], [32.6939, 109.0281, 21.075279235839844], [32.935, 117.3086, -5.652332305908203], [32.645, 117.0083, -3.547732353210449], [27.7019, 106.9242, 14.993559837341309], [30.5494, 114.3006, 11.820841789245605], [32.0572, 118.749, -11.05566692352295], [46.6219, 124.8648, -4.0863518714904785], [34.407, 115.6386, 2.9823789596557617], [34.5021, 109.4266, 27.940650939941406], [26.6761, 118.0966, -0.6166753768920898], [29.8539, 114.2894, 11.162127494812012], [39.746, 98.509, -9.339170455932617], [29.5844, 103.7627, 16.169097900390625], [24.5157, 117.6569, 4.119754791259766], [28.2189, 112.8872, 14.573892593383789], [36.0783, 111.5531, 26.027957916259766], [35.5461, 106.6692, 32.00032424926758], [40.0917, 113.3444, 12.972641944885254], [29.8906, 121.554, -12.477022171020508], [31.6861, 118.5058, -9.285762786865234], [29.8208, 121.56, -12.22861099243164], [34.3474, 108.935, 28.057811737060547], [28.1442, 112.9956, 14.680749893188477], [37.7019, 112.7549, 22.32160758972168], [38.9467, 100.4686, -7.2118000984191895], [30.4183, 120.301, -14.356082916259766], [23.7208, 109.2131, 5.386854648590088], [31.8711, 106.7389, 18.89352798461914], [28.2403, 117.0281, 2.694430112838745], [23.0944, 109.6014, 5.0170722007751465], [35.248889, 115.42277, 5.026575565338135], [26.0931, 119.58, -1.4999419450759888], [22.8225, 108.321, 4.538253307342529], [23.0672, 109.6042, 5.0258002281188965], [27.9958, 113.1817, 14.914026260375977], [30.7856, 106.1064, 17.97170066833496], [30.8064, 106.056, 18.085947036743164], [27.2582, 111.4908, 18.005128860473633], [43.9404, 81.2815, 28.96275520324707], [34.5885, 119.176, -16.791412353515625], [38.4975, 106.2328, 11.55162525177002], [41.9228, 123.3783, -23.570037841796875], [33.6128, 114.6613, 9.252434730529785], [34.8731, 108.9589, 30.04671287536621], [32.0092, 118.737, -10.906051635742188], [39.2474, 117.7918, -9.285831451416016], [25.7759, 113.0348, 12.08808422088623], [29.9834, 103.0109, 16.309301376342773], [39.9934, 116.315, -1.5208148956298828], [34.3956, 108.7197, 28.454994201660156], [27.8978, 102.2625, 7.9396820068359375], [31.3178, 118.3708, -7.935317516326904], [46.7975, 130.3258, -0.6097708344459534], [26.2625, 117.6211, 1.2032525539398193], [31.5848, 120.354, -16.275888442993164], [30.2028, 115.0767, 7.9133195877075195], [29.7292, 115.988, 3.901698350906372], [21.6669, 110.9067, 11.222383499145508], [30.1142, 104.6469, 18.757028579711914], [37.809, 120.773, -19.86780548095703], [27.8317, 99.7056, 6.54843282699585], [30.9742, 118.7386, -8.968341827392578], [34.864, 117.5564, -9.551506042480469], [32.1883, 119.68, -14.889283180236816], [45.305, 130.9817, -3.183499336242676], [49.1577, 119.7512, 3.499338388442993], [30.3055, 112.2887, 16.538545608520508], [36.5458, 104.1731, 10.204639434814453], [40.6511, 122.215, -25.062376022338867], [44.2967, 86.0497, 14.515106201171875], [34.2911, 117.244, -7.145575523376465], [28.7989, 104.6789, 15.068422317504883], [37.4294, 122.1206, -22.085411071777344], [23.7369, 109.2317, 5.430744171142578], [36.1417, 106.2319, 27.444814682006836], [31.7386, 117.278, -3.408677101135254], [48.4658, 129.4942, 3.170351982116699], [45.2924, 130.962, -3.2296507358551025], [40.715, 120.8478, -20.894868850708008], [33.3947, 120.225, -17.208921432495117], [40.6575, 109.8104, 9.010858535766602], [38.86388889, 121.625, -21.67781639099121], [35.0573, 118.3418, -14.298239707946777], [41.7775, 123.478, -24.097492218017578], [31.2058, 107.4611, 16.963010787963867], [28.6047, 112.3347, 14.256587028503418], [41.2736, 123.1761, -25.993566513061523], [36.0464, 103.831, 10.588746070861816], [34.3274, 109.043, 27.8500919342041], [37.9648, 106.1532, 15.112022399902344], [36.1851, 120.3905, -19.459823608398438], [36.6028, 109.4761, 33.4476318359375], [29.5467, 103.7705, 16.039506912231445], [50.4217, 124.1303, 6.4208598136901855], [22.7019, 110.1106, 6.17457914352417], [31.955, 119.18, -12.412392616271973], [39.1082, 117.237, -6.546726226806641], [24.2654, 116.1248, 6.41227912902832], [30.2756, 118.1371, -5.4535322189331055], [33.567, 114.056, 12.248551368713379], [27.8014, 114.3806, 12.005171775817871], [29.36028, 104.7778, 16.990802764892578], [26.57098, 101.68912, 4.446901321411133], [23.6706, 116.6447, 7.5059967041015625], [32.1142, 112.1825, 18.716419219970703], [41.8336, 123.542, -23.860376358032227], [30.2099, 115.0264, 8.164036750793457], [34.3528, 107.3906, 30.36958122253418], [25.3167, 110.4144, 11.139959335327148], [27.9164, 112.4876, 16.62456512451172], [39.1067, 117.1941, -6.332927703857422], [25.442, 119.0156, 0.8898417949676514], [40.8115, 114.8814, 3.935037612915039], [29.9919, 120.605, -13.341691970825195], [23.1572, 112.885, 8.320067405700684], [37.9097, 114.3541, 15.426740646362305], [34.5004, 109.5049, 27.75858497619629], [33.737, 113.182, 16.089262008666992], [38.44139, 106.2275, 11.973187446594238], [27.8381, 113.143, 15.455141067504883], [31.2703, 120.613, -16.07222557067871], [22.3708, 107.3701, 5.280585289001465], [36.1942, 117.1436, -6.2426886558532715], [26.6272, 118.1756, -0.6701532006263733], [33.1842, 106.9893, 24.93195152282715], [26.5697, 106.7164, 11.124999046325684], [29.5953, 105.0331, 17.660619735717773], [39.6719, 106.8219, 5.747532367706299], [31.8934, 102.2402, 18.58096694946289], [30.1506, 104.6356, 18.83000373840332], [36.6739, 117.114, -5.77680778503418], [30.0475, 101.9603, 15.041247367858887], [40.6532, 109.8756, 9.248383522033691], [23.01277778, 113.7944444, 9.482701301574707], [30.8244, 120.07, -14.735161781311035], [45.6033, 84.8861, 20.015647888183594], [22.8693, 112.844, 8.863860130310059], [36.1758, 117.1081, -5.967503547668457], [33.8399, 115.8067, 1.8362125158309937], [43.768, 87.6046, 9.055529594421387], [22.2294, 113.495, 11.833182334899902], [26.8919, 112.6006, 16.095434188842773], [27.8036, 114.3442, 12.1336030960083], [45.61, 126.615, -6.93745756149292], [33.965, 118.283, -12.62671184539795], [31.56, 120.294, -16.1352596282959], [34.7545, 113.681, 14.630280494689941], [30.2819, 109.4689, 16.96995735168457], [32.6028, 116.8556, -2.6261708736419678], [43.8667, 125.417, -13.562149047851562], [22.8172, 114.3244, 10.207969665527344], [29.2786, 117.1983, -0.15624403953552246], [35.259, 113.1992, 17.882755279541016], [41.8828, 123.9169, -23.518980026245117], [32.9444, 117.3575, -5.933380603790283], [27.9883, 116.3553, 5.499406814575195], [38.843, 105.6975, 5.590900897979736], [39.3673, 112.4279, 18.66411781311035], [34.5667, 117.732, -10.63556957244873], [41.1636, 80.2828, 32.79493713378906], [33.575, 119.007, -14.851154327392578], [24.9624, 102.625, 2.7603085041046143], [32.0144, 118.777, -11.067537307739258], [43.84, 125.2786, -13.748871803283691], [34.3617, 108.7233, 28.3001651763916], [39.9419, 119.5369, -16.029539108276367], [38.2839, 109.7289, 28.952716827392578], [39.643, 118.144, -10.7681303024292], [31.381, 120.999, -16.322677612304688], [38.9194, 117.157, -6.048056602478027], [31.882, 120.55, -16.80671501159668], [32.2786, 118.3244, -9.439107894897461], [33.0323, 107.007, 23.89608383178711], [22.7906, 108.439, 4.636403560638428], [38.1398, 114.5019, 14.45051097869873], [44.561, 129.61, -6.882005214691162], [30.8388, 106.1087, 18.000429153442383], [31.2472, 120.561, -16.016189575195312], [29.8264, 106.424, 17.128150939941406], [30.9447, 118.7581, -9.077812194824219], [41.1442, 123.0485, -26.33842658996582], [22.4137, 107.3476, 5.137319564819336], [27.6178, 113.865, 13.69640827178955], [24.4175, 111.5269, 8.837454795837402], [43.7256, 126.6772, -12.721718788146973], [22.8561, 108.316, 4.491370677947998], [37.177, 119.941, -19.26812744140625], [26.2378, 117.6028, 1.2828831672668457], [43.9167, 125.323, -13.436490058898926], [36.6377, 117.9544, -11.942928314208984], [23.2783, 113.568, 8.606293678283691], [24.8978, 118.5972, 2.753558397293091], [32.9673, 117.3536, -5.9563822746276855], [34.7745, 117.5852, -9.713980674743652], [25.2178, 110.2869, 10.673873901367188], [43.8358, 126.5844, -12.438356399536133], [36.1855, 113.0844444, 20.197444915771484], [24.6967, 108.1009, 6.33328914642334], [30.4519, 114.8858, 9.000927925109863], [31.2036, 121.478, -16.079410552978516], [24.3702, 102.5389, 2.8374969959259033], [37.8561, 113.5922, 19.31624984741211], [34.3708, 107.1586, 30.88270378112793], [34.3547, 107.1431, 30.8384952545166], [31.238, 121.4, -16.127851486206055], [41.9086, 123.5953, -23.585508346557617], [33.0014, 97.0, 0.8827651143074036], [41.7561, 123.535, -24.1523494720459], [23.9011, 106.6103, 4.029247283935547], [36.7339, 119.0841, -17.33843421936035], [36.0875, 111.5025, 26.193496704101562], [25.8333, 114.9322, 8.745771408081055], [31.89708, 121.1518, -17.14094352722168], [23.8982, 100.0782, 4.330001354217529], [33.3261, 105.0822, 25.08379554748535], [29.7128, 118.3057, -5.953610897064209], [44.0114, 87.2997, 10.369062423706055], [45.7258, 126.646, -6.52404260635376], [28.4569, 118.0058, -2.268242359161377], [22.5908, 114.263, 10.833325386047363], [23.7233, 114.6892, 8.283049583435059], [35.0147, 110.9956, 26.344871520996094], [38.8394, 117.457, -7.779760837554932], [30.7946, 120.744, -15.243195533752441], [22.735, 108.328, 4.66259765625], [27.3125, 105.2864, 11.013486862182617], [32.6389, 110.7258, 21.366350173950195], [37.4489, 116.3189, 1.6803083419799805], [23.08, 114.4053, 9.658528327941895], [28.6459, 121.273, -8.809453010559082], [39.7153, 76.1861, 50.09343719482422], [30.4576, 106.6303, 16.90326499938965], [33.6284, 116.9677, -5.2374749183654785], [22.7833, 108.244, 4.554892539978027], [22.5811, 113.074, 9.932659149169922], [37.0967, 114.4821, 14.297053337097168], [30.6197, 114.2836, 11.931703567504883], [44.3336, 84.8983, 17.789379119873047], [36.1542, 113.1097, 20.036828994750977], [30.2456, 120.127, -13.8731107711792], [29.6219, 106.65, 17.191020965576172], [38.8343, 105.6775, 5.536209583282471], [24.428, 98.5842, 4.891388893127441], [25.0661, 117.0256, 3.372220516204834], [38.5247, 102.1878, -2.8255929946899414], [28.5819, 112.3744, 14.241456031799316], [31.656, 120.734, -16.731956481933594], [36.3083, 120.1964, -19.425342559814453], [24.9617, 118.6108, 2.544621467590332], [41.0228, 123.1289, -26.610319137573242], [31.1278, 97.1804, 4.273763656616211], [36.792, 119.952, -19.29596710205078], [23.4168, 103.386, 3.823734760284424], [42.2725, 118.9572, -16.433712005615234], [29.5983, 106.296, 17.06293487548828], [36.087, 114.358, 13.432344436645508], [36.283, 120.008, -19.252756118774414], [40.1461, 124.3933, -27.6495361328125], [25.0836, 102.728, 2.8240771293640137], [41.8472, 123.428, -23.843538284301758], [29.9972, 101.9533, 14.885030746459961], [27.8336, 113.251, 15.186993598937988], [30.4551, 106.6388, 16.89363670349121], [41.1556, 122.0247, -24.867755889892578], [26.5689, 106.6971, 11.09189510345459], [39.9522, 116.434, -2.157662868499756], [41.7089, 123.439, -24.403173446655273], [37.9358, 102.6469, 0.09611019492149353], [24.7121, 108.2134, 6.469200134277344], [31.7133, 118.6439, -9.87714672088623], [40.1194, 124.3678, -27.686752319335938], [38.817, 106.3394, 9.699686050415039], [35.303, 113.883, 14.503155708312988], [37.4658, 118.5019, -14.228418350219727], [30.7636, 106.0642, 18.026844024658203], [32.4535, 105.8945, 22.39398956298828], [38.5061, 102.1708, -2.805936336517334], [35.5102, 102.0199, 6.565892219543457], [38.8632, 115.493, 6.209274768829346], [31.87888889, 106.7513889, 18.915773391723633], [25.8481, 114.9461, 8.7446870803833], [31.92, 120.268, -16.3814697265625], [26.585, 101.7169, 4.457097053527832], [36.2092, 117.7181, -10.621260643005371], [43.8228, 126.4978, -12.592623710632324], [35.0896, 118.4023, -14.585860252380371], [28.76389, 104.6417, 14.906432151794434], [22.7633, 100.98, 5.723475456237793], [28.7867, 104.6061, 14.926342964172363], [42.9559, 89.1673, 4.288466930389404], [31.7039, 119.935, -15.486467361450195], [23.1422, 113.235, 8.693302154541016], [30.9075, 113.942, 13.114226341247559], [37.5436, 121.3181, -20.55460548400879], [31.2864, 120.628, -16.105098724365234], [37.9723, 106.196, 15.342751502990723], [27.0983, 115.0075, 10.113258361816406], [34.5101, 109.5293, 27.7412109375], [24.81805556, 118.1569444, 3.1616501808166504], [36.6489, 116.943, -4.366917610168457], [25.8226, 113.0116, 12.202080726623535], [36.0756, 103.712, 9.859184265136719], [28.2642, 117.0564, 2.5157876014709473], [31.453, 121.115, -16.419713973999023], [40.7514, 120.8392, -20.918354034423828], [36.2403, 120.4001, -19.48184585571289], [29.8686, 114.3372, 11.000992774963379], [22.75, 114.085, 10.353914260864258], [40.8062, 111.7277, 11.197010040283203], [25.1081, 99.1678, 4.038074970245361], [25.2697, 110.2819, 10.84844970703125], [28.6969, 115.973, 4.777620792388916], [28.2558, 109.6414, 18.89068031311035], [39.1495, 117.3916, -7.294471263885498], [33.9461, 116.7844, -4.5103559494018555], [28.3169, 109.7325, 18.869413375854492], [46.8267, 130.3961, -0.48131263256073], [37.5136, 111.1297, 27.490568161010742], [40.1438, 116.72, -3.564518928527832], [29.8211, 114.3231, 10.950519561767578], [47.3227, 123.9483, -1.7392339706420898], [29.2956, 117.2461, -0.3869915306568146], [29.3864, 117.3097, -0.7924328446388245], [28.6064, 115.9083, 5.311552047729492], [36.061, 114.483, 12.571189880371094], [28.4622, 117.9511, -2.031094551086426], [29.4892, 106.634, 17.12737464904785], [34.4714, 100.2561, 5.215142726898193], [39.6295, 118.1997, -11.04660415649414], [36.1942, 117.0881, -5.79544734954834], [41.2553, 123.15, -26.05130958557129], [30.9285, 113.9153, 13.20412826538086], [21.8586, 111.9786, 11.701593399047852], [24.299, 109.4221, 6.957491397857666], [27.7914, 114.3703, 12.03990650177002], [39.2133, 117.1837, -6.21572208404541], [29.6816, 115.9872, 3.9449808597564697], [26.9089, 112.5328, 16.2446231842041], [44.9079, 82.0485, 27.032947540283203], [36.1912, 113.1569, 19.894287109375], [35.7067, 107.6364, 34.340389251708984], [29.6292, 91.0834, 2.4225926399230957], [36.1939, 113.0972, 20.15705108642578], [34.8019, 113.675, 14.744056701660156], [40.9161, 117.9664, -10.93228816986084], [24.3694, 102.5778, 2.830437421798706], [23.1331, 113.26, 8.732069969177246], [37.1013, 79.9117, 38.803504943847656], [41.7192, 86.2022, 10.216619491577148], [26.2708, 117.6353, 1.154191493988037], [28.9404, 118.871, -7.062139511108398], [23.7106, 113.0208, 7.872123718261719], [36.2403, 120.6659, -19.487003326416016], [22.7267, 114.24, 10.449380874633789], [34.7975, 114.3733, 10.981697082519531], [40.0181, 119.7624, -16.843881607055664], [40.5546, 110.0377, 10.67021656036377], [28.4586, 119.93, -7.779792785644531], [36.67, 116.93, -4.246557235717773], [34.7781, 114.3389, 11.154592514038086], [30.89556, 120.0875, -14.890966415405273], [41.7511, 86.1461, 10.431916236877441], [47.8515, 88.1267, 16.674179077148438], [24.9117, 118.5819, 2.7227723598480225], [23.5486, 116.3242, 8.044221878051758], [37.8694, 113.5689, 19.390186309814453], [27.7044, 111.9892, 17.846019744873047], [40.1114, 113.2803, 13.03225040435791], [39.3606, 112.4549, 18.60770034790039], [45.6289, 122.8444, -7.921701908111572], [27.6231, 113.8447, 13.764861106872559], [28.4514, 119.914, -7.746071815490723], [29.6475, 91.0874, 2.377779960632324], [34.2303, 108.883, 27.57969856262207], [29.4251, 113.1493, 12.795729637145996], [38.3344, 109.7414, 28.68143653869629], [43.8711, 87.5525, 9.395678520202637], [38.9389, 100.4497, -7.222645282745361], [37.68277778, 112.7194444, 22.44094467163086], [39.1292, 106.7096, 9.355865478515625], [34.1781, 117.1694, -6.702890396118164], [46.0756, 121.9462, -6.060549259185791], [37.85, 113.5158, 19.664199829101562], [31.7712, 116.5661, 0.24734801054000854], [39.3514, 112.44, 18.68531608581543], [27.6486, 106.8906, 14.798235893249512], [41.1219, 121.2008, -22.546585083007812], [44.5782, 129.6115, -6.8370890617370605], [29.709, 106.452, 17.126441955566406], [23.06, 113.7480556, 9.324319839477539], [23.1886, 112.863, 8.245759963989258], [41.7347, 123.2444, -24.369586944580078], [21.2567, 110.4558, 13.04110050201416], [27.3361, 103.7225, 7.8031721115112305], [37.9311, 102.6219, 0.06337439268827438], [33.6406, 114.6369, 9.368729591369629], [31.8572, 117.25, -3.462998628616333], [35.5975, 104.6169, 18.10427474975586], [42.8947, 125.1358, -17.707700729370117], [29.2313, 91.7608, 1.7712129354476929], [39.5343, 116.7464, -3.853386640548706], [40.7094, 122.2703, -25.292600631713867], [43.1594, 124.3711, -17.307344436645508], [30.6414, 114.2131, 12.163477897644043], [36.44, 120.61, -19.574892044067383], [29.4892, 106.468, 17.07027816772461], [28.9703, 111.6975, 14.880894660949707], [38.0108, 112.434, 22.29322624206543], [31.4867, 120.269, -16.013593673706055], [34.429, 115.6558, 2.874091863632202], [38.01777778, 114.5330556, 14.426912307739258], [44.3075, 86.0697, 14.477560997009277], [27.9647, 116.385, 5.3779497146606445], [30.2043, 114.8949, 8.790102005004883], [29.3678, 113.1772, 12.550095558166504], [29.1128, 119.6533, -9.460338592529297], [25.9118, 114.9064, 8.994075775146484], [26.0392, 119.303, -1.0887681245803833], [23.1569, 113.281, 8.694509506225586], [45.5422, 126.979, -6.8951592445373535], [37.7394, 112.5583, 22.696828842163086], [28.6542, 121.419, -8.620309829711914], [26.5939, 104.89, 7.673056602478027], [41.8625, 124.0383, -23.48444938659668], [35.7511, 114.2956, 13.072547912597656], [31.7586, 119.996, -15.668573379516602], [38.8516, 105.724, 5.683518886566162], [36.6868, 117.0684, -5.396584510803223], [26.0753, 119.315, -1.2063037157058716], [39.9716, 116.473, -2.3839986324310303], [46.7432, 82.9994, 26.12737464904785], [32.41361, 119.458, -14.09628963470459], [38.8416, 115.4612, 6.558938980102539], [30.5489, 117.0486, -0.6684378981590271], [27.4948, 114.0944, 12.85111141204834], [27.8867, 113.095, 15.453685760498047], [23.0528, 112.471, 8.063796997070312], [26.8733, 112.6197, 16.002275466918945], [35.4894, 112.8664, 19.98261070251465], [47.2753, 130.261, 0.535537600517273], [23.8844, 106.6527, 4.026101589202881], [40.7866, 111.551, 11.175872802734375], [43.6267, 122.2603, -15.970046043395996], [36.10139, 111.505, 26.18940544128418], [28.56, 112.3439, 14.39931869506836], [45.7319, 126.685, -6.476865768432617], [40.0844, 113.2711, 13.17793083190918], [37.4014, 121.5992, -20.81943702697754], [30.6133, 105.68, 18.652816772460938], [30.7478, 120.726, -15.14962100982666], [28.1178, 112.9844, 14.822076797485352], [28.7994, 115.742, 5.088393688201904], [25.067, 102.681, 2.8115954399108887], [32.0005, 120.86, -17.252063751220703], [26.5017, 101.7453, 4.320000171661377], [34.5814, 105.7281, 28.43175506591797], [43.91, 125.287, -13.482362747192383], [46.3991, 124.8847, -4.894289016723633], [31.8531, 106.7594, 18.82651710510254], [33.9528, 118.293, -12.65352725982666], [45.6175, 122.8211, -7.95899772644043], [19.9507, 110.576, 21.554306030273438], [23.4792, 111.2897, 6.782980918884277], [32.1383, 114.0614, 12.333749771118164], [30.8023, 106.0789, 18.040193557739258], [34.2324, 108.94, 27.53193473815918], [36.11, 114.286, 13.938361167907715], [31.96, 120.913, -17.241230010986328], [32.8928, 115.8275, 2.4271440505981445], [31.7694, 120.0469, -15.799816131591797], [31.6842, 120.288, -16.23895263671875], [47.3636, 123.9305, -1.6301435232162476], [28.7442, 115.813, 5.076020240783691], [23.2536, 116.4019, 8.97231674194336], [23.4714, 116.7519, 8.059562683105469], [34.6511, 112.3939, 20.474430084228516], [35.0622, 118.2939, -14.090800285339355], [28.6839, 115.8886, 5.0879225730896], [41.8469, 123.81, -23.734283447265625], [24.3289, 116.1278, 6.253089427947998], [34.3497, 107.2058, 30.703020095825195], [42.0352, 119.2654, -17.085268020629883], [31.0386, 112.2211, 17.525022506713867], [40.0758, 113.2994, 13.152300834655762], [36.61763, 114.5129, 13.469266891479492], [29.4822, 106.364, 17.045711517333984], [35.94, 104.148, 13.228189468383789], [27.2272, 111.4328, 17.977750778198242], [25.1328, 99.1711, 4.030409812927246], [40.6288, 109.8654, 9.444374084472656]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#1a8d00&quot;, &quot;0.05&quot;: &quot;#1a8d00&quot;, &quot;0.1&quot;: &quot;#1a8d00&quot;, &quot;0.15&quot;: &quot;#1a8d00&quot;, &quot;0.2&quot;: &quot;#1a8d00&quot;, &quot;0.25&quot;: &quot;#1a8d00&quot;, &quot;0.3&quot;: &quot;#1a8d00&quot;, &quot;0.35&quot;: &quot;#1a8d00&quot;, &quot;0.4&quot;: &quot;#1a8d00&quot;, &quot;0.45&quot;: &quot;#1a8d00&quot;, &quot;0.5&quot;: &quot;#1a8d00&quot;, &quot;0.55&quot;: &quot;#1a8d00&quot;, &quot;0.6&quot;: &quot;#1a8d00&quot;, &quot;0.65&quot;: &quot;#1a8d00&quot;, &quot;0.7&quot;: &quot;#1a8d00&quot;, &quot;0.75&quot;: &quot;#1a8d00&quot;, &quot;0.8&quot;: &quot;#1a8d00&quot;, &quot;0.85&quot;: &quot;#1a8d00&quot;, &quot;0.9&quot;: &quot;#1a8d00&quot;, &quot;0.95&quot;: &quot;#1a8d00&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_ba2af2db157c5050d7ac93018ca8bba5.addTo(map_0ba63527402b276746ea6c51cf92aa1b);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13a558fba50>\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('coef_t2m', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"风速\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"id\": \"00FC7B8DF942473188D78183A5D9B93E\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_e8b4f3f6bb30c8e491d211ada8462f0c {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_e8b4f3f6bb30c8e491d211ada8462f0c&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_e8b4f3f6bb30c8e491d211ada8462f0c = L.map(\\n\",\n       \"                &quot;map_e8b4f3f6bb30c8e491d211ada8462f0c&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_d03b596f5e2f711a5e6524f0ab29b80a = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_d03b596f5e2f711a5e6524f0ab29b80a.addTo(map_e8b4f3f6bb30c8e491d211ada8462f0c);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_3e893cd94e6a81d11066707c08ff8065 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_3e893cd94e6a81d11066707c08ff8065.color = d3.scale.threshold()\\n\",\n       \"              .domain([-90.01793670654297, -89.79908752441406, -89.58024597167969, -89.36139678955078, -89.1425552368164, -88.9237060546875, -88.70486450195312, -88.48601531982422, -88.26716613769531, -88.04832458496094, -87.82947540283203, -87.61063385009766, -87.39178466796875, -87.17294311523438, -86.95409393310547, -86.7352523803711, -86.51640319824219, -86.29755401611328, -86.0787124633789, -85.85986328125, -85.64102172851562, -85.42217254638672, -85.20333099365234, -84.98448181152344, -84.76564025878906, -84.54679107666016, -84.32794189453125, -84.10910034179688, -83.89025115966797, -83.6714096069336, -83.45256042480469, -83.23371887207031, -83.0148696899414, -82.7960205078125, -82.57717895507812, -82.35832977294922, -82.13948822021484, -81.92063903808594, -81.70179748535156, -81.48294830322266, -81.26409912109375, -81.04525756835938, -80.82640838623047, -80.6075668334961, -80.38871765136719, -80.16987609863281, -79.9510269165039, -79.732177734375, -79.51333618164062, -79.29448699951172, -79.07564544677734, -78.85679626464844, -78.63795471191406, -78.41910552978516, -78.20025634765625, -77.98141479492188, -77.76256561279297, -77.5437240600586, -77.32487487792969, -77.10603332519531, -76.8871841430664, -76.6683349609375, -76.44949340820312, -76.23064422607422, -76.01180267333984, -75.79295349121094, -75.57411193847656, -75.35526275634766, -75.13641357421875, -74.91757202148438, -74.69872283935547, -74.4798812866211, -74.26103210449219, -74.04219055175781, -73.8233413696289, -73.6044921875, -73.38565063476562, -73.16680908203125, -72.94795989990234, -72.72911071777344, -72.51026916503906, -72.29141998291016, -72.07257080078125, -71.85372924804688, -71.6348876953125, -71.4160385131836, -71.19718933105469, -70.97834777832031, -70.7594985961914, -70.5406494140625, -70.32180786132812, -70.10296630859375, -69.88411712646484, -69.66526794433594, -69.44642639160156, -69.22757720947266, -69.00873565673828, -68.78988647460938, -68.571044921875, -68.3521957397461, -68.13334655761719, -67.91450500488281, -67.69566345214844, -67.47681427001953, -67.25796508789062, -67.03912353515625, -66.82027435302734, -66.60142517089844, -66.38258361816406, -66.16374206542969, -65.94489288330078, -65.72604370117188, -65.5072021484375, -65.2883529663086, -65.06951141357422, -64.85066223144531, -64.63182067871094, -64.41297149658203, -64.19412231445312, -63.97528076171875, -63.756431579589844, -63.53759002685547, -63.31874084472656, -63.09989547729492, -62.88105010986328, -62.662200927734375, -62.443359375, -62.224510192871094, -62.00566864013672, -61.78681945800781, -61.56797409057617, -61.34912872314453, -61.13028335571289, -60.91143798828125, -60.692588806152344, -60.47374725341797, -60.25489807128906, -60.03605270385742, -59.81720733642578, -59.59836196899414, -59.3795166015625, -59.160667419433594, -58.94182586669922, -58.72297668457031, -58.50413131713867, -58.28528594970703, -58.06644058227539, -57.84759521484375, -57.62874984741211, -57.4099006652832, -57.19105529785156, -56.97221374511719, -56.75336456298828, -56.53451919555664, -56.315673828125, -56.09682846069336, -55.87797927856445, -55.65913772583008, -55.44028854370117, -55.2214469909668, -55.00259780883789, -54.78375244140625, -54.56490707397461, -54.34606170654297, -54.12721252441406, -53.90837097167969, -53.68952178955078, -53.47067642211914, -53.2518310546875, -53.03298568725586, -52.81414031982422, -52.59529495239258, -52.37644577026367, -52.1576042175293, -51.93875503540039, -51.71990966796875, -51.50106430053711, -51.28221893310547, -51.06336975097656, -50.84452819824219, -50.62567901611328, -50.406837463378906, -50.18798828125, -49.96914291381836, -49.75029754638672, -49.53145217895508, -49.31260299682617, -49.0937614440918, -48.87491226196289, -48.65606689453125, -48.43722152709961, -48.21837615966797, -47.999534606933594, -47.78068542480469, -47.56184005737305, -47.342994689941406, -47.124149322509766, -46.90530014038086, -46.686458587646484, -46.46760940551758, -46.24876403808594, -46.0299186706543, -45.811073303222656, -45.59222412109375, -45.373382568359375, -45.15453338623047, -44.935691833496094, -44.71684265136719, -44.49799728393555, -44.279151916503906, -44.060306549072266, -43.84145736694336, -43.622615814208984, -43.40376663208008, -43.18492126464844, -42.9660758972168, -42.747230529785156, -42.528385162353516, -42.309539794921875, -42.09069061279297, -41.871849060058594, -41.65299987792969, -41.43415451049805, -41.215309143066406, -40.996463775634766, -40.77761459350586, -40.558773040771484, -40.33992385864258, -40.1210823059082, -39.9022331237793, -39.683387756347656, -39.464542388916016, -39.245697021484375, -39.02684783935547, -38.808006286621094, -38.58915710449219, -38.37031173706055, -38.151466369628906, -37.932621002197266, -37.71377182006836, -37.494930267333984, -37.27608108520508, -37.0572395324707, -36.8383903503418, -36.619544982910156, -36.400699615478516, -36.181854248046875, -35.96300506591797, -35.744163513183594, -35.52531433105469, -35.30646896362305, -35.087623596191406, -34.868778228759766, -34.649932861328125, -34.431087493896484, -34.21223831176758, -33.9933967590332, -33.77455139160156, -33.555702209472656, -33.33686065673828, -33.118011474609375, -32.899166107177734, -32.680320739746094, -32.46147537231445, -32.24263000488281, -32.02378463745117, -31.804935455322266, -31.58609390258789, -31.367244720458984, -31.148399353027344, -30.929553985595703, -30.710708618164062, -30.491859436035156, -30.27301788330078, -30.054168701171875, -29.8353271484375, -29.616477966308594, -29.397632598876953, -29.178787231445312, -28.959941864013672, -28.741092681884766, -28.52225112915039, -28.303401947021484, -28.084556579589844, -27.865711212158203, -27.646865844726562, -27.428020477294922, -27.20917510986328, -26.990325927734375, -26.771484375, -26.552635192871094, -26.333789825439453, -26.114944458007812, -25.896102905273438, -25.67725372314453, -25.458404541015625, -25.23956298828125, -25.020713806152344, -24.801864624023438, -24.583023071289062, -24.364173889160156, -24.14533233642578, -23.926490783691406, -23.70763397216797, -23.488792419433594, -23.26995086669922, -23.051101684570312, -22.832252502441406, -22.61341094970703, -22.394561767578125, -22.17572021484375, -21.956871032714844, -21.738021850585938, -21.519180297851562, -21.300338745117188, -21.08148193359375, -20.862640380859375, -20.643798828125, -20.424957275390625, -20.206100463867188, -19.987258911132812, -19.768417358398438, -19.54956817626953, -19.330726623535156, -19.11187744140625, -18.893028259277344, -18.67418670654297, -18.455345153808594, -18.236488342285156, -18.01764678955078, -17.798805236816406, -17.5799560546875, -17.361106872558594, -17.14226531982422, -16.923416137695312, -16.704574584960938, -16.48572540283203, -16.266876220703125, -16.04803466796875, -15.829193115234375, -15.610343933105469, -15.391494750976562, -15.172653198242188, -14.953811645507812, -14.734954833984375, -14.51611328125, -14.297271728515625, -14.078422546386719, -13.859573364257812, -13.640731811523438, -13.421882629394531, -13.203041076660156, -12.98419189453125, -12.765342712402344, -12.546501159667969, -12.327659606933594, -12.108802795410156, -11.889961242675781, -11.671119689941406, -11.4522705078125, -11.233421325683594, -11.014579772949219, -10.795738220214844, -10.576889038085938, -10.358039855957031, -10.139198303222656, -9.92034912109375, -9.701507568359375, -9.482658386230469, -9.263809204101562, -9.044967651367188, -8.826126098632812, -8.607269287109375, -8.388427734375, -8.169586181640625, -7.950736999511719, -7.7318878173828125, -7.5130462646484375, -7.294197082519531, -7.075355529785156, -6.85650634765625, -6.637657165527344, -6.418815612792969, -6.199974060058594, -5.981132507324219, -5.762275695800781, -5.543434143066406, -5.324592590332031, -5.105743408203125, -4.886894226074219, -4.668052673339844, -4.4492034912109375, -4.2303619384765625, -4.011512756347656, -3.79266357421875, -3.573822021484375, -3.35498046875, -3.1361236572265625, -2.9172821044921875, -2.6984405517578125, -2.4795913696289062, -2.2607421875, -2.041900634765625, -1.8230514526367188, -1.6042098999023438, -1.3853607177734375, -1.1665115356445312, -0.9476699829101562, -0.7288284301757812, -0.509979248046875, -0.29113006591796875, -0.07228851318359375, 0.14655303955078125, 0.36540985107421875, 0.5842514038085938, 0.8030929565429688, 1.021942138671875, 1.2407913208007812, 1.4596328735351562, 1.6784820556640625, 1.8973236083984375, 2.1161727905273438, 2.33502197265625, 2.553863525390625, 2.772705078125, 2.9915618896484375, 3.2104034423828125, 3.4292449951171875, 3.6480941772460938, 3.866943359375, 4.085784912109375, 4.304634094238281, 4.523475646972656, 4.7423248291015625, 4.9611663818359375, 5.180015563964844, 5.398857116699219, 5.617706298828125, 5.836555480957031, 6.055397033691406, 6.274238586425781, 6.493095397949219, 6.711936950683594, 6.930778503417969, 7.149627685546875, 7.368476867675781, 7.587318420410156, 7.8061676025390625, 8.025009155273438, 8.243850708007812, 8.46270751953125, 8.681549072265625, 8.900390625, 9.119239807128906, 9.338088989257812, 9.556930541992188, 9.775772094726562, 9.994621276855469, 10.213470458984375, 10.43231201171875, 10.651161193847656, 10.870002746582031, 11.088851928710938, 11.307701110839844, 11.526542663574219, 11.745384216308594, 11.964241027832031, 12.183082580566406, 12.401924133300781, 12.620773315429688, 12.839622497558594, 13.058464050292969, 13.277313232421875, 13.49615478515625, 13.715003967285156, 13.933853149414062, 14.152694702148438, 14.371536254882812, 14.59039306640625, 14.809234619140625, 15.028076171875, 15.246917724609375, 15.465774536132812, 15.684616088867188, 15.903457641601562, 16.12230682373047, 16.341156005859375, 16.55999755859375, 16.778846740722656, 16.99768829345703, 17.216537475585938, 17.435386657714844, 17.65422821044922, 17.873069763183594, 18.09192657470703, 18.310768127441406, 18.52960968017578, 18.748458862304688, 18.967308044433594, 19.18614959716797])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_3e893cd94e6a81d11066707c08ff8065.x = d3.scale.linear()\\n\",\n       \"              .domain([-90.01793670654297, 19.18614959716797])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_3e893cd94e6a81d11066707c08ff8065.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_3e893cd94e6a81d11066707c08ff8065.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_3e893cd94e6a81d11066707c08ff8065.legend.addTo(map_e8b4f3f6bb30c8e491d211ada8462f0c);\\n\",\n       \"\\n\",\n       \"    color_map_3e893cd94e6a81d11066707c08ff8065.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_3e893cd94e6a81d11066707c08ff8065.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-90.01793670654297, &#x27;&#x27;, &#x27;&#x27;, -73.6373291015625, &#x27;&#x27;, &#x27;&#x27;, -57.2567138671875, &#x27;&#x27;, &#x27;&#x27;, -40.8760986328125, &#x27;&#x27;, &#x27;&#x27;, -24.49549102783203, &#x27;&#x27;, &#x27;&#x27;, -8.114875793457031, &#x27;&#x27;, &#x27;&#x27;, 8.265739440917969, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_3e893cd94e6a81d11066707c08ff8065.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_3e893cd94e6a81d11066707c08ff8065.g = color_map_3e893cd94e6a81d11066707c08ff8065.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_3e893cd94e6a81d11066707c08ff8065.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_3e893cd94e6a81d11066707c08ff8065.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_3e893cd94e6a81d11066707c08ff8065.x(color_map_3e893cd94e6a81d11066707c08ff8065.color.domain()[i - 1]) : color_map_3e893cd94e6a81d11066707c08ff8065.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_3e893cd94e6a81d11066707c08ff8065.color.domain().length ? color_map_3e893cd94e6a81d11066707c08ff8065.x(color_map_3e893cd94e6a81d11066707c08ff8065.color.domain()[i]) : color_map_3e893cd94e6a81d11066707c08ff8065.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_3e893cd94e6a81d11066707c08ff8065.g.call(color_map_3e893cd94e6a81d11066707c08ff8065.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_9b2b61c1661f729d181079cd9ace9359 = L.heatLayer(\\n\",\n       \"                [[22.7629, 113.257, -10.839263916015625], [22.6411, 110.1675, -8.159512519836426], [38.5339, 102.1725, 4.234861850738525], [23.6714, 116.6339, -9.646637916564941], [31.1956, 107.5069, -2.2703864574432373], [32.8603, 115.8556, 2.692307710647583], [23.0395, 113.105, -9.359734535217285], [31.371, 119.794, 9.831265449523926], [31.2797, 107.5272, -2.1943740844726562], [37.4967, 121.2611, 17.561979293823242], [27.7569, 111.9561, -0.6350463032722473], [37.1152, 79.9485, -75.57323455810547], [28.6425, 115.892, 3.384582996368408], [39.0927, 117.202, 6.616556644439697], [29.5186, 106.54, -4.598023891448975], [30.2311, 119.6942, 8.811963081359863], [24.339, 102.5381, -0.10022611171007156], [33.0069, 114.0131, -0.48851123452186584], [37.0533, 114.5261, -8.946293830871582], [29.4758, 113.2621, -0.010414959862828255], [26.3108, 117.7275, 1.169313907623291], [32.1403, 114.0122, 0.13711676001548767], [21.2679, 110.3316, -14.115778923034668], [43.895, 81.2867, -71.09638214111328], [41.5931, 120.4439, 13.475252151489258], [39.5747, 116.7729, 5.3935980796813965], [28.4303, 117.9033, 4.752975940704346], [38.885, 121.5638889, 17.73628044128418], [36.4343, 116.0072, -2.270632028579712], [24.9424, 118.6663, -5.244686603546143], [37.9854, 112.549, -10.255515098571777], [36.6867, 101.524, 6.386215686798096], [45.0878, 124.8292, 1.487554669380188], [26.5917, 104.83, 0.35728973150253296], [25.1035, 117.0216, -2.8374791145324707], [31.955, 119.146, 8.276657104492188], [30.6145, 116.9894, 4.373101711273193], [35.0992, 117.4518, 5.17076301574707], [37.374, 120.399, 15.970922470092773], [43.85, 125.217, 6.388504981994629], [41.0971, 122.9642, 17.290456771850586], [41.0385, 113.1076, -1.8701903820037842], [21.2706, 110.3539, -14.12597942352295], [47.3386, 123.9305, -8.048683166503906], [31.751, 119.579, 9.56140422821045], [32.7639, 116.8028, 4.510341644287109], [23.7569, 114.6778, -7.591102600097656], [38.2911, 109.7456, -0.37185364961624146], [36.9639, 100.9048, 5.372532844543457], [47.9047, 88.1214, -57.47410583496094], [36.0417, 111.4917, -7.729623794555664], [29.3628, 104.7547, -1.962337851524353], [30.8811, 117.7442, 4.87898063659668], [26.6343, 106.7487, -2.547841787338257], [29.3547, 110.5594, -1.812056064605713], [32.3153, 118.3094, 6.140270709991455], [24.3406, 109.3886, -2.869741439819336], [34.2572, 109.06, -4.382875919342041], [27.8403, 112.9118, 0.46206456422805786], [35.4934, 112.835, -6.65317440032959], [27.8042, 114.9119, 2.2378411293029785], [28.6869, 115.852, 3.2669899463653564], [34.3672, 107.1906, 2.6002447605133057], [29.8633, 121.586, 9.284761428833008], [37.4514, 105.0197, 7.179018497467041], [36.913, 121.531, 17.794145584106445], [38.0513, 114.4548, -9.84564208984375], [37.8692, 112.5369, -10.210434913635254], [32.0197, 112.155, -1.8467861413955688], [30.7525, 120.7844444, 10.590398788452148], [27.7231, 109.1794, -4.100207805633545], [39.0153, 106.3717, 4.882066249847412], [31.3508, 118.3528, 5.765429496765137], [23.0467, 113.144, -9.369400024414062], [23.1617, 112.565, -8.13342571258545], [34.7822, 111.19, -5.39218282699585], [29.077, 119.647, 7.641594409942627], [37.3753, 97.3731, -0.5613446831703186], [23.3594, 104.2533, -2.2671287059783936], [32.5714, 110.8839, -3.123361587524414], [46.6462, 131.1516, -8.512001991271973], [27.2944, 105.31, -1.523921012878418], [32.4639, 119.888, 11.205469131469727], [39.0845, 117.1589, 6.403804302215576], [37.4314, 118.6672, 11.299939155578613], [30.1366, 104.6617, -0.9857776761054993], [31.3264, 120.596, 11.242034912109375], [36.6275, 109.4131, -2.189952850341797], [23.5538, 113.589, -7.460239887237549], [22.8054, 113.292, -10.680116653442383], [24.3898, 109.4883, -2.8660035133361816], [42.3022, 123.8139, 12.795833587646484], [27.1311, 114.99, 1.406502604484558], [40.9733, 117.8184, 9.401247024536133], [40.7612, 111.717, -1.973778486251831], [31.2071, 121.577, 11.80480670928955], [36.253, 120.014, 14.841768264770508], [32.9917, 112.5192, -2.145176887512207], [28.3586, 112.9958, 0.40444308519363403], [29.2958, 117.2111, 4.968754291534424], [27.8072, 114.4011, 1.854651927947998], [47.203, 123.6261, -7.557820796966553], [39.3265, 112.4078, -7.407774925231934], [41.0833, 122.9481, 17.329639434814453], [34.2629, 108.993, -4.245441913604736], [45.5828, 84.8897, -61.546539306640625], [31.215, 107.525, -2.259068727493286], [39.16969, 117.2099, 6.770082950592041], [27.5342, 109.9792, -3.258625030517578], [38.4186, 112.7356, -10.314631462097168], [41.2692, 123.7989, 16.41701889038086], [31.6411, 118.4828, 6.1878743171691895], [39.4365, 75.9435, -90.01793670654297], [28.9664, 118.871, 6.76243257522583], [23.1036, 109.5683, -5.804510593414307], [36.0822, 111.5169, -7.800914287567139], [36.885, 120.515, 15.903130531311035], [26.4214, 111.6156, -1.8683706521987915], [34.719, 113.734, -3.424509286880493], [42.0186, 121.6561, 13.479491233825684], [30.63, 104.1113889, 1.3714393377304077], [47.7222, 128.8736, -10.68577766418457], [41.7381, 125.9486, 13.771987915039062], [29.355, 113.2117, 0.02365478314459324], [45.1642, 124.8528, 1.148693561553955], [34.7772, 111.1928, -5.3844757080078125], [33.027, 112.5573, -2.13714861869812], [42.2814, 118.9233, 9.087807655334473], [28.5773, 121.377, 5.979437828063965], [43.95305556, 126.4738889, 5.64607572555542], [32.6778, 109.0311, -3.3675434589385986], [29.389, 106.513, -4.8015642166137695], [32.6319, 116.8306, 4.577524662017822], [22.5978, 114.297, -12.762954711914062], [27.6869, 106.9222, -4.564256191253662], [32.0314, 118.803, 7.337283611297607], [29.1029, 119.686, 7.70261812210083], [33.581, 114.014, -1.0539793968200684], [33.8561, 115.7831, 1.6673669815063477], [28.2597, 112.9792, 0.47612252831459045], [43.7878, 125.454, 6.5808939933776855], [36.6106, 109.5056, -2.572021961212158], [23.02777778, 113.7461111, -10.081628799438477], [28.6844, 115.893, 3.3344268798828125], [33.9506, 118.3214, 7.563516616821289], [30.8217, 106.1031, -2.3552024364471436], [41.7128, 86.2381, -51.61531066894531], [23.1478, 109.5681, -5.619911193847656], [29.261, 91.7706, -17.461490631103516], [39.0877, 117.307, 7.092972278594971], [28.4231, 119.879, 5.9359612464904785], [45.2978, 130.9298, -3.0356061458587646], [27.725, 111.9975, -0.613369882106781], [31.2284, 121.533, 11.810601234436035], [41.1196, 123.044, 17.215717315673828], [42.8328, 93.4961, -29.898237228393555], [36.5819, 101.834, 6.802422523498535], [30.9697, 117.8472, 4.958617687225342], [40.0031, 116.407, 4.583307266235352], [36.881, 118.746, 11.11204719543457], [34.2761, 117.167, 4.533695697784424], [26.6029, 106.6856, -2.4309353828430176], [35.7306, 114.2878, -5.404845237731934], [34.6258, 112.4275, -4.862237453460693], [36.865, 120.537, 15.919775009155273], [30.5719, 114.3672, 0.8972117304801941], [35.5051, 112.85, -6.672830581665039], [29.6588, 90.9798, -21.779052734375], [32.3761, 119.389, 9.417410850524902], [36.2866, 100.6188, 5.8879570960998535], [43.1747, 124.3419, 9.305702209472656], [39.8673, 116.366, 4.0960373878479], [40.8452, 111.659, -1.9394681453704834], [29.2647, 117.1558, 4.923399448394775], [27.8614, 112.9433, 0.490825891494751], [23.475, 111.3178, -5.872272491455078], [39.5453, 116.7022, 5.00148868560791], [28.5808, 112.3458, -0.21069961786270142], [36.5336, 116.734, 0.8445001840591431], [36.2289, 117.6789, 5.810582637786865], [23.65889, 116.6183, -9.696674346923828], [33.8997, 116.8067, 3.9941904544830322], [23.7586, 114.6944, -7.5974626541137695], [41.8417, 123.7117, 14.425457954406738], [29.6535, 116.0174, 3.260349988937378], [46.6384, 126.9934, -5.316981792449951], [41.2864, 123.7669, 16.374813079833984], [27.8244, 113.135, 0.7140331864356995], [29.5822, 105.0406, -2.3905277252197266], [29.6632, 94.3616, -4.211911201477051], [45.7667, 126.635, -1.6370588541030884], [38.2478, 109.7336, -0.43734729290008545], [34.5911, 119.1478, 10.644545555114746], [39.6407, 118.1853, 10.789973258972168], [26.5892, 104.8, 0.4105973243713379], [31.354, 119.818, 9.876900672912598], [36.6622, 117.049, 2.517672061920166], [19.9969, 110.338, -18.951635360717773], [35.428, 116.6305, 1.69978928565979], [37.364, 120.394, 15.96032428741455], [26.0542, 119.389, -0.9671558141708374], [31.155, 120.636, 10.992372512817383], [22.2281, 113.299, -13.328132629394531], [23.63444, 113.0472, -6.690192222595215], [23.3892, 104.2319, -2.1866848468780518], [43.8748, 125.3649, 6.280713081359863], [31.03389, 112.1908, -1.999534249305725], [23.2775, 116.7258, -11.466111183166504], [35.4144, 116.5856, 1.5836467742919922], [35.3962, 119.54, 12.458768844604492], [40.1952, 116.23, 4.175792217254639], [29.3578, 113.1094, -0.09863932430744171], [46.0347, 124.8354, -2.7637405395507812], [47.3382, 130.1097, -10.08642292022705], [40.916, 107.5936, 1.2094898223876953], [41.9339, 123.6836, 14.066437721252441], [22.96583333, 113.7383333, -10.384499549865723], [36.6872, 116.989, 2.1832945346832275], [34.7538, 113.6356, -3.642986536026001], [31.7308, 113.3983, -0.3716723620891571], [35.04388889, 111.0522222, -5.877649307250977], [35.9019, 114.17, -6.237523078918457], [27.5733, 109.9333, -3.295051336288452], [33.6347, 114.6758, -0.1177101582288742], [32.1078, 114.1044, 0.2673380672931671], [22.4853, 113.4411, -12.341282844543457], [43.8875, 126.555, 5.843200206756592], [33.6067, 118.989, 9.251611709594727], [29.5867, 115.9936, 3.2387802600860596], [34.1978, 108.985, -4.2396745681762695], [25.0311, 117.0151, -3.1580545902252197], [27.11, 114.9739, 1.3704121112823486], [30.21, 120.211, 9.557933807373047], [26.9258, 112.6194, -0.7324959635734558], [46.7588, 130.3794, -8.12042236328125], [35.4813, 112.8252, -6.629295349121094], [39.9279, 116.225, 3.6155855655670166], [34.3181, 108.6761, -3.586979389190674], [24.769519, 113.586606, -3.7727763652801514], [30.5103, 117.0549, 4.450070858001709], [40.7579, 111.651, -1.9299918413162231], [37.0964, 114.5331, -8.996145248413086], [49.2261, 119.7594, -17.005706787109375], [25.4792, 118.981, -3.0482070446014404], [38.80805556, 121.2588889, 17.21017837524414], [28.2053, 113.0792, 0.603324830532074], [40.8144, 111.608, -1.9056154489517212], [42.8953, 125.1567, 10.15622329711914], [24.6928, 108.054, -2.040498971939087], [32.0878, 118.626, 6.862802505493164], [29.7207, 118.3236, 6.140799522399902], [36.838, 118.0448, 7.919063568115234], [29.9899, 103.0013, 2.0287487506866455], [32.64600333, 117.0411667, 4.9177703857421875], [22.6069, 113.104, -11.420355796813965], [22.805, 108.383, -5.9626312255859375], [21.4689, 111.0286, -13.960530281066895], [21.6828, 110.8592, -12.899065017700195], [30.696, 111.268, -2.8325347900390625], [22.5111, 113.4075, -12.190775871276855], [43.831, 87.6432, -50.65288543701172], [33.5653, 114.0322, -1.0106561183929443], [35.5714, 104.6228, 10.16798210144043], [26.6607, 119.5202, 1.507116436958313], [31.317, 119.438, 8.815545082092285], [31.5631, 120.245, 11.05881404876709], [29.8181, 114.3036, 1.0825976133346558], [25.0124, 102.743, 0.8600105047225952], [31.2994, 120.543, 11.144102096557617], [34.1546, 108.906, -4.0778608322143555], [31.0483, 112.2014, -1.9889618158340454], [30.2997, 113.8531, 0.20840738713741302], [39.625, 121.989, 18.18927764892578], [40.7736, 120.8631, 15.612242698669434], [35.27, 115.455, -1.4868403673171997], [29.8272, 106.379, -4.188902378082275], [30.0874, 103.8416, 0.8974207639694214], [29.41569, 106.5506, -4.747565746307373], [27.2537, 111.4503, -1.6765385866165161], [24.2719, 116.0797, -6.190684795379639], [47.3349, 130.2659, -10.206768035888672], [25.0359, 102.638, 0.8880001306533813], [30.2692, 120.19, 9.554645538330078], [27.0658, 114.9817, 1.3064768314361572], [25.8179, 113.0119, -1.9229997396469116], [26.2403, 107.5228, -2.4874351024627686], [32.4285, 105.8624, 3.4460654258728027], [31.2659, 121.536, 11.854720115661621], [35.5997, 103.2064, 9.01550579071045], [34.9162, 113.6113, -4.068940162658691], [38.49494, 106.1024, 5.686645030975342], [32.4867, 119.9, 11.264955520629883], [39.1654, 117.145, 6.4682512283325195], [41.0903, 122.0539, 16.86260986328125], [23.3917, 113.215, -7.803978443145752], [31.1333, 104.3883, 1.8998810052871704], [34.6972, 119.3581, 11.36549186706543], [42.8172, 93.5128, -29.782453536987305], [22.6164, 110.1433, -8.238247871398926], [45.8167, 126.561, -1.8399962186813354], [31.8766, 117.307, 5.018723011016846], [34.3622, 107.2386, 2.3538455963134766], [25.5364, 103.8, 1.3454533815383911], [22.5545, 114.1063, -12.754241943359375], [43.9311, 116.0781, -0.7993889451026917], [37.5211, 111.1406, -7.830465316772461], [47.7317, 128.9094, -10.747052192687988], [41.7972, 123.3997, 14.674347877502441], [23.3993, 103.3772, -2.2510440349578857], [46.5776, 125.1386, -4.903271198272705], [43.8303, 87.5801, -50.846458435058594], [30.5947, 114.3008, 0.8015300035476685], [26.2081, 111.6217, -1.984687328338623], [27.6442, 113.8686, 1.4018949270248413], [39.2282, 106.7704, 4.323098182678223], [42.2556, 118.8789, 9.076650619506836], [26.3003, 106.805, -1.964194893836975], [29.57278, 106.4042, -4.580341339111328], [23.0916, 113.348, -9.363409042358398], [36.6114, 116.988, 2.213298797607422], [41.1386, 121.1303, 15.586158752441406], [45.8194, 130.8625, -4.985256671905518], [33.721, 113.322, -2.118227958679199], [31.896, 121.173, 12.487553596496582], [31.7848, 117.196, 4.91965389251709], [26.8906, 100.2203, 3.3519632816314697], [24.795928, 113.598061, -3.716188907623291], [39.9567, 119.6023, 13.791089057922363], [32.18888889, 119.4369444, 9.425783157348633], [34.9817, 118.2764, 8.243080139160156], [36.5481, 104.1731, 8.387053489685059], [26.5495, 106.6867, -2.3306217193603516], [44.1564, 87.9897, -50.25801086425781], [37.7111, 112.7306, -10.235688209533691], [26.4364, 111.5992, -1.8756545782089233], [39.617, 122.011, 18.229068756103516], [26.6514, 118.1819, 2.3373727798461914], [40.9843, 117.9525, 9.663895606994629], [22.0019, 100.7939, -9.346405982971191], [21.5958, 109.2256, -11.545553207397461], [34.7967, 114.2886, -2.7447028160095215], [25.0492, 101.538, 0.8286857008934021], [31.9286, 102.1755, 6.229605674743652], [26.567, 101.7227, 2.682542324066162], [36.0725, 103.841, 8.947112083435059], [39.3179, 112.4254, -7.479588985443115], [26.5155, 106.6948, -2.273066520690918], [22.7875, 108.301, -5.963403701782227], [29.7534, 116.0726, 3.388673782348633], [33.627, 119.0122, 9.353378295898438], [34.2778, 117.2933, 4.805292129516602], [32.8913, 117.4186, 5.455175876617432], [39.7884, 109.9734, 0.8083263635635376], [30.475, 105.5956, -2.440359115600586], [34.6686, 112.4433, -4.946159839630127], [35.0611, 111.0233, -5.908377647399902], [23.4794, 111.26, -5.818010330200195], [30.72358333, 103.97275, 1.8543843030929565], [46.8025, 130.2719, -8.18423843383789], [32.02, 120.87, 12.495243072509766], [32.0417, 120.81, 12.471657752990723], [37.187, 122.019, 18.380224227905273], [38.0398, 114.6046, -9.530425071716309], [36.086, 114.32, -6.625082969665527], [25.9061, 113.0073, -1.7712184190750122], [24.77908333, 113.6734722, -3.769542932510376], [41.0781, 121.0986, 15.645334243774414], [37.197, 122.038, 18.40488624572754], [31.92, 120.302, 11.60701847076416], [39.8129, 110.0023, 0.7417829036712646], [36.71, 117.541, 4.9639739990234375], [32.3292, 119.8767, 11.032637596130371], [28.8833, 105.4322, -3.6190924644470215], [34.4286, 115.6697, 0.5924824476242065], [30.2897, 120.157, 9.53279972076416], [22.9394, 112.0369, -8.623860359191895], [29.305, 120.091, 8.1613187789917], [26.9056, 112.5664, -0.8030469417572021], [26.4519, 111.5989, -1.8706605434417725], [25.0925, 104.9022, 0.7904300093650818], [26.6383, 118.1694, 2.299575090408325], [30.0033, 120.7789, 9.64947509765625], [36.4372, 115.9848, -2.359881639480591], [42.2217, 123.7153, 13.065711975097656], [31.5072, 104.7283, 1.8836063146591187], [37.7379, 115.6426, -5.6467132568359375], [34.794, 111.158, -5.413445472717285], [30.1808, 120.088, 9.438298225402832], [35.1764, 113.2464, -5.258611679077148], [27.8136, 99.7064, 4.002192974090576], [30.4133, 114.8131, 1.6543281078338623], [30.1377, 104.6289, -0.9036219120025635], [28.19, 112.9394, 0.44414934515953064], [29.635, 119.026, 7.833952903747559], [33.5981, 119.036, 9.404301643371582], [42.0503, 121.6972, 13.400189399719238], [34.0117, 113.8331, -1.9012573957443237], [29.5634, 103.757, 0.2385978400707245], [32.5, 80.1161, -78.5780029296875], [30.3119, 120.12, 9.515077590942383], [29.33972, 104.7228, -1.926566481590271], [41.1042, 121.835, 16.585552215576172], [37.8564, 113.5753, -10.563056945800781], [31.17, 120.635, 11.01540756225586], [33.4022, 120.118, 12.641623497009277], [38.8707, 115.5214, -3.831953525543213], [38.6016, 105.9512, 5.664965629577637], [38.0524, 114.5214, -9.723855018615723], [37.18, 119.959, 15.343094825744629], [21.9508, 108.6553, -9.494756698608398], [21.6533, 110.9294, -13.098342895507812], [36.8198, 118.3092, 9.234152793884277], [32.965, 114.018, -0.4460729658603668], [46.0872, 85.6931, -60.16279220581055], [28.1944, 113.0014, 0.5144591927528381], [29.1389, 110.48, -1.614814043045044], [45.2948, 131.0103, -3.1372110843658447], [30.4865, 106.6351, -2.9721744060516357], [34.802, 113.564, -3.857849597930908], [41.5647, 120.4247, 13.500425338745117], [33.6481, 116.9765, 4.5395121574401855], [43.1847, 124.3897, 9.253873825073242], [30.698, 111.2992, -2.810056209564209], [34.5653, 105.8614, 9.243997573852539], [22.5328, 113.024, -11.667184829711914], [23.1142, 114.4103, -10.446660995483398], [34.2153, 117.256, 4.757438659667969], [32.6975, 109.0072, -3.379366874694824], [25.4552, 119.0018, -3.193739891052246], [30.51197222, 117.0331111, 4.431438446044922], [37.4442, 118.5857, 10.972368240356445], [28.2264, 117.0222, 3.843479633331299], [34.9058, 108.9344, -3.5854427814483643], [31.6908, 113.3833, -0.37369072437286377], [28.0005, 116.3574, 3.124875545501709], [32.395, 111.0419, -2.970642328262329], [35.31, 113.836, -4.794262409210205], [23.3667, 116.6794, -11.055225372314453], [34.3469, 106.005, 8.62911605834961], [25.8071, 113.0383, -1.938425064086914], [32.3061, 118.3158, 6.150439262390137], [40.7608, 107.4211, 1.5490013360977173], [35.0697, 109.0697, -3.749696731567383], [44.5952, 129.5902, 1.008040189743042], [37.8531, 113.6292, -10.547792434692383], [40.3937, 116.644, 6.117663383483887], [30.3714, 114.8989, 1.8274378776550293], [31.2261, 121.425, 11.73723316192627], [40.6592, 122.2414, 17.8217830657959], [21.8536, 111.9508, -13.387178421020508], [40.7136, 120.9092, 15.761713027954102], [27.3392, 103.7032, 0.88486248254776], [41.1222, 121.1178, 15.602867126464844], [26.4364, 106.6554, -2.0797910690307617], [38.4841, 106.2739, 5.665611267089844], [37.393, 117.9776, 7.9073381423950195], [29.9816, 103.0001, 2.0194709300994873], [33.1138, 107.0089, 1.483549952507019], [38.9846, 117.3747, 7.253172397613525], [23.05361111, 113.7819444, -9.992036819458008], [25.2708, 110.3089, -2.9101722240448], [29.315, 110.4417, -1.7452266216278076], [31.7956, 117.302, 4.9842448234558105], [35.767, 115.0772, -3.7993595600128174], [24.3663, 109.3957, -2.8514606952667236], [29.8506, 121.524, 9.271393775939941], [43.8256, 126.55, 6.066818714141846], [27.72, 106.9178, -4.6280999183654785], [27.8036, 114.9314, 2.2478301525115967], [36.8041, 117.8512, 6.720555305480957], [36.907, 121.544, 17.80551528930664], [29.2718, 88.8876, -36.05711364746094], [25.5035, 103.7897, 1.3248567581176758], [40.8369, 111.751, -1.9932388067245483], [39.0631, 121.9769, 18.354736328125], [33.9592, 118.2442, 7.427924156188965], [33.63063889, 116.989, 4.571760654449463], [41.0831, 123.0156, 17.32901382446289], [39.6308, 118.1662, 10.729357719421387], [23.0528, 114.4183, -10.76640510559082], [30.4742, 114.9028, 1.8478012084960938], [30.6578, 104.054, 1.5502808094024658], [21.7631, 108.3511, -9.98430061340332], [42.9409, 89.191, -43.94549560546875], [41.3369, 123.7528, 16.21257781982422], [30.2747, 120.063, 9.435094833374023], [35.2375, 115.474722, -1.367082118988037], [46.6572, 131.1638, -8.567365646362305], [29.2365, 88.8931, -36.09096145629883], [36.0022, 106.2792, 8.249156951904297], [33.739, 113.292, -2.17934250831604], [30.5797, 105.7519, -2.5123133659362793], [37.7805, 112.488, -10.143874168395996], [28.9026, 105.4436, -3.6347806453704834], [30.3515, 112.2068, -1.798898458480835], [35.6039, 103.2139, 9.018059730529785], [37.9844, 106.2025, 6.452116966247559], [33.7214, 113.3064, -2.1391618251800537], [35.0994, 109.0656, -3.678056478500366], [38.00583333, 114.4586111, -9.846181869506836], [36.7008, 119.1425, 12.518729209899902], [25.0992, 104.8811, 0.8020797371864319], [35.1147, 111.0414, -6.0014119148254395], [32.0723, 118.778, 7.284870624542236], [34.7496, 113.5991, -3.686213254928589], [30.2366, 119.7183, 8.859235763549805], [24.44583333, 118.0636111, -7.03878927230835], [23.5353, 116.3697, -10.120296478271484], [37.3803, 118.0062, 8.076712608337402], [43.8947, 126.5786, 5.805250644683838], [31.5031, 120.242, 10.983002662658691], [40.8367, 114.8985, 1.2066954374313354], [37.5639, 121.2514, 17.54530906677246], [30.6463, 111.3549, -2.736809015274048], [25.8417, 98.8546, 1.145113468170166], [27.5578, 109.9972, -3.2247958183288574], [46.8032, 130.3648, -8.272788047790527], [42.8939, 129.4892, 6.602642059326172], [34.6692, 112.3628, -5.010201930999756], [30.9414, 117.7806, 4.908287525177002], [29.6514, 91.1319, -20.844919204711914], [24.3304, 109.4108, -2.886571168899536], [28.71583, 104.5761, -2.0345661640167236], [30.3944, 114.8878, 1.8144018650054932], [38.03777778, 114.5480556, -9.66681957244873], [23.0786, 112.4722, -8.42290210723877], [46.528, 125.112, -4.705661773681641], [27.2317, 111.4733, -1.6700716018676758], [30.7157, 111.3009, -2.819899559020996], [32.9683, 112.55, -2.094097375869751], [31.3008, 121.467, 11.860686302185059], [46.619, 131.1651, -8.428025245666504], [43.9469, 87.4754, -51.40365219116211], [28.8194, 104.5969, -2.062204360961914], [30.9431, 118.7175, 6.477319717407227], [33.3942, 120.156, 12.73018741607666], [35.5236, 107.6406, 2.831749200820923], [31.8706, 117.259, 4.993278503417969], [32.4429, 105.8242, 3.603825807571411], [32.88922222, 115.7838889, 2.5284934043884277], [26.6009, 106.7105, -2.4506959915161133], [27.8094, 102.3419, 2.390267848968506], [30.0911, 120.598, 9.75027084350586], [29.6747, 91.1221, -20.877838134765625], [35.4039, 116.5546, 1.5026757717132568], [33.5039, 119.135, 9.603743553161621], [46.0707, 122.0931, -3.670786142349243], [34.29, 117.1814, 4.555953502655029], [41.9967, 121.6178, 13.519515037536621], [34.3739, 107.1186, 2.974562883377075], [23.0048, 113.134, -9.565536499023438], [29.90166667, 121.6147222, 9.3702392578125], [31.671, 120.721, 11.889646530151367], [28.1308, 112.8908, 0.3859981596469879], [34.3164, 108.7369, -3.7171857357025146], [34.7837, 117.2852, 4.631250858306885], [42.8775, 129.3675, 6.783510684967041], [35.0003, 102.905, 9.229730606079102], [43.6156, 122.3039, 7.048798561096191], [41.765, 123.41, 14.78955364227295], [32.939, 117.3961, 5.435152053833008], [36.5767, 109.4824, -2.543903112411499], [34.6231, 112.3844, -4.889273643493652], [27.8847, 102.2689, 2.4283194541931152], [43.962, 87.6444, -50.91342544555664], [37.5002, 105.1971, 7.171441078186035], [36.7019, 119.12, 12.433371543884277], [35.213, 113.227, -5.38787317276001], [40.1503, 124.4256, 18.970630645751953], [31.8108, 119.9736, 10.749897956848145], [37.8873, 112.522, -10.208434104919434], [33.568, 114.005, -1.0516433715820312], [26.8802, 100.2497, 3.342343807220459], [41.8864, 124.0878, 14.174131393432617], [31.3708, 120.641, 11.356718063354492], [29.6376, 94.3681, -4.191445350646973], [23.5292, 116.4094, -10.17282485961914], [34.3731, 109.2186, -4.670854091644287], [31.6219, 120.275, 11.189064025878906], [31.5475, 120.354, 11.26144027709961], [27.8667, 113.167, 0.7439812421798706], [41.9206, 126.4047, 12.796133995056152], [40.6821, 109.8538, -0.18986521661281586], [42.2953, 123.8831, 12.818929672241211], [34.2417, 117.192, 4.608307361602783], [36.6164, 114.5426, -7.901944637298584], [41.5672, 120.4486, 13.5361967086792], [25.1174, 117.0181, -2.7839622497558594], [41.8594, 123.9, 14.28531265258789], [25.8567, 98.8601, 1.1787875890731812], [29.5817, 105.0653, -2.438993453979492], [36.497, 117.8477, 6.566298007965088], [31.7275, 113.3583, -0.4167044758796692], [25.7054, 100.1542, 1.7233871221542358], [36.2211, 117.6983, 5.90960693359375], [24.68636111, 113.5970833, -3.969581365585327], [36.0714, 111.5028, -7.778411388397217], [24.81119444, 113.5593889, -3.673135280609131], [29.4402, 112.9943, -0.30026721954345703], [35.76806, 115.0061, -3.9822475910186768], [28.0089, 120.634, 4.877349853515625], [37.4372, 116.2714, -2.1680989265441895], [31.7797, 116.5068, 4.041883945465088], [31.1654, 121.412, 11.639824867248535], [45.8309, 130.9467, -5.136163234710693], [44.8969, 82.0806, -69.29421997070312], [39.7294, 98.5023, -4.2257795333862305], [28.4459, 117.973, 4.820969104766846], [23.3682, 103.3758, -2.337069511413574], [24.8885, 102.821, 0.6759008169174194], [41.3472, 123.8142, 16.151241302490234], [33.0122, 112.5224, -2.1596574783325195], [42.2864, 123.8489, 12.84961986541748], [27.7314, 112.0194, -0.5828570127487183], [35.7672, 115.0628, -3.8366756439208984], [30.6103, 114.4272, 0.9807295799255371], [31.7506, 118.5106, 6.32747745513916], [29.1456, 111.7158, -1.1425920724868774], [28.9745, 118.855, 6.764133930206299], [34.6575, 109.2, -4.50383186340332], [23.105, 113.261, -9.209327697753906], [39.6572, 106.7931, 3.778010129928589], [23.5739, 116.3594, -9.933025360107422], [31.2108, 107.4967, -2.2495713233947754], [32.625, 116.7039, 4.371069431304932], [28.2675, 109.6958, -3.216554641723633], [32.8985, 117.3065, 5.298511981964111], [41.2894, 123.1417, 16.59372329711914], [30.5706, 104.079, 1.3042608499526978], [32.1342, 114.0681, 0.2071748524904251], [23.0706, 112.427, -8.412602424621582], [37.825, 120.747, 16.702882766723633], [34.493, 109.4636, -5.065479755401611], [26.5894, 104.8475, 0.3325442373752594], [28.76611, 104.6225, -2.128164291381836], [31.4747, 104.7778, 1.64554762840271], [32.0564, 112.1392, -1.8765662908554077], [32.9735, 112.5003, -2.1483747959136963], [25.0441, 101.5482, 0.8208121657371521], [26.6611, 119.5392, 1.4799721240997314], [43.6801, 122.2532, 6.722822666168213], [28.8558, 105.4322, -3.622865915298462], [29.6541, 91.1774, -20.561817169189453], [38.2991, 116.8854, 2.7405574321746826], [37.154, 122.471, 18.885547637939453], [41.7156, 125.9361, 13.849571228027344], [28.2169, 116.9983, 3.8164966106414795], [31.3097, 120.669, 11.278433799743652], [44.0297, 87.2717, -52.19093322753906], [25.8471, 114.8905, -1.6915233135223389], [33.8715, 109.9154, -4.335326671600342], [36.61981, 114.4965, -8.017637252807617], [38.97388889, 121.6119444, 17.78386878967285], [27.8328, 114.9289, 2.2631547451019287], [40.0625, 124.3303, 19.186153411865234], [22.5625, 114.117, -12.7301664352417], [45.6886, 85.1186, -61.07757568359375], [38.3228, 116.8709, 2.7100272178649902], [40.2865, 116.17, 4.086251735687256], [47.3489, 130.3172, -10.306114196777344], [45.9819, 126.6106, -2.592357873916626], [38.3254, 116.8584, 2.6475448608398438], [37.7087, 112.7105, -10.22506046295166], [31.8516, 117.124, 4.882781028747559], [36.8088, 118.0482, 7.922004222869873], [38.5036, 106.1358, 5.664085865020752], [38.8756, 115.442, -4.322793006896973], [35.0308, 110.9678, -5.852944374084473], [21.865, 111.9494, -13.340411186218262], [31.9051, 117.16, 4.947107315063477], [29.6007, 103.7506, 0.303322434425354], [41.9419, 126.4078, 12.727360725402832], [39.0511, 121.7769, 18.0307559967041], [32.0775, 118.795, 7.338016033172607], [46.0703, 122.0506, -3.6905431747436523], [27.9639, 116.3598, 3.051697254180908], [24.4674, 117.6336, -6.420247554779053], [30.049, 119.946, 9.254687309265137], [34.7997, 111.1489, -5.424811840057373], [22.5497, 113.3881, -11.99415397644043], [34.378, 108.869, -3.9635777473449707], [36.4796, 115.9835, -2.4496235847473145], [29.334, 120.04, 8.226034164428711], [31.422, 121.14, 11.807544708251953], [38.91194444, 121.6330556, 17.84041976928711], [29.6926, 116.0628, 3.3389811515808105], [27.6428, 113.8381, 1.3760079145431519], [37.43445, 118.696, 11.419332504272461], [43.55, 125.633, 7.416637897491455], [32.4246, 105.8153, 3.5380771160125732], [46.6527, 126.9636, -5.36472749710083], [45.7478, 126.593, -1.5415220260620117], [35.28385, 113.5922, -5.064633369445801], [31.8585, 117.336, 5.022786617279053], [30.66, 117.49, 4.810616493225098], [38.95111111, 121.565, 17.71623420715332], [40.1097, 113.3819, -4.825932025909424], [33.0706, 107.0154, 1.381689190864563], [27.8344, 114.9831, 2.290285587310791], [27.9153, 113.0048, 0.5428691506385803], [27.3033, 111.5239, -1.5442466735839844], [30.518, 106.631, -2.9247474670410156], [31.7371, 116.508, 4.035971164703369], [29.6039, 115.9114, 3.13200306892395], [23.8822, 100.0869, -2.550915479660034], [39.9425, 116.361, 4.252912521362305], [23.2539, 116.6092, -11.509333610534668], [24.5058, 118.0936, -6.76679801940918], [36.0211, 106.2375, 8.310418128967285], [27.8159, 112.9227, 0.48162105679512024], [30.2989, 109.5039, -2.7974369525909424], [29.7125, 106.617, -4.261883735656738], [44.6104, 129.6459, 0.9011008739471436], [30.4753, 114.1525, 0.5722655057907104], [44.1756, 87.5475, -51.637577056884766], [34.6869, 112.4831, -4.9507670402526855], [37.062, 114.4854, -9.039591789245605], [36.6428, 101.748, 6.656922340393066], [26.5506, 104.9544, 0.22664979100227356], [31.4539, 104.7536, 1.6631604433059692], [31.388, 120.953, 11.636307716369629], [45.755, 126.542, -1.5608837604522705], [31.0283, 103.613, 2.954063653945923], [40.7688, 114.9032, 1.0220648050308228], [31.3019, 120.591, 11.19681453704834], [33.9953, 113.7906, -1.926427960395813], [30.0506, 103.8986, 0.7381593585014343], [39.65782, 118.1838, 10.792731285095215], [30.6347, 105.8161, -2.487848997116089], [31.1108, 104.3539, 1.948746919631958], [37.0172, 105.18, 8.101106643676758], [30.0125, 103.009, 2.048898458480835], [35.763, 115.031, -3.9038121700286865], [24.3158, 109.4839, -2.925877809524536], [22.9477, 113.352, -10.066710472106934], [36.6525, 119.1638, 12.550426483154297], [28.2325, 113.0833, 0.5880120992660522], [29.7228, 106.626, -4.241106986999512], [36.39, 120.47, 15.554067611694336], [37.7124, 112.469, -10.098873138427734], [29.3411, 104.7692, -2.0108232498168945], [39.79777778, 98.26722222, -5.0041890144348145], [29.7048, 115.9581, 3.198432207107544], [39.5986, 109.7736, 1.2444525957107544], [39.7711, 98.2908, -4.860715389251709], [31.874, 120.526, 11.939671516418457], [23.3633, 116.7244, -11.097591400146484], [22.5931, 113.0819, -11.461061477661133], [32.41, 119.404, 9.499435424804688], [35.7289, 107.6831, 3.146096706390381], [43.8694, 125.325, 6.304625988006592], [25.0405, 102.722, 0.8993304371833801], [39.5178, 116.6838, 4.866267204284668], [33.5979, 114.6546, -0.11816929280757904], [22.9169, 112.0392, -8.729772567749023], [34.6869, 112.4664, -4.965177536010742], [30.9414, 117.8178, 4.935290336608887], [43.9317, 116.1042, -0.7661908864974976], [32.0903, 112.2106, -1.8185920715332031], [42.0486, 121.6592, 13.38074779510498], [41.615, 120.3939, 13.345173835754395], [40.8033, 111.658, -1.9355299472808838], [31.7897, 119.8914, 10.536927223205566], [31.909, 120.237, 11.452499389648438], [32.1083, 118.803, 7.377363204956055], [30.8596, 120.1844, 10.11970043182373], [31.1167, 104.4053, 1.8065441846847534], [30.7819, 111.3296, -2.8196799755096436], [28.9583, 105.4306, -3.5794782638549805], [38.85611111, 121.5180556, 17.66836166381836], [23.1323, 113.3208, -9.136126518249512], [31.7618, 116.478, 4.0106682777404785], [29.7736, 121.633, 9.062488555908203], [39.8261, 109.9486, 0.8047736287117004], [38.8957, 115.5223, -3.725724458694458], [32.215, 119.491, 9.641992568969727], [27.8528, 113.13, 0.7050290703773499], [32.105, 118.907, 7.668974876403809], [26.0797, 119.268, -0.6998140811920166], [33.975, 116.8008, 3.904803991317749], [26.6266, 106.6243, -2.4132728576660156], [23.105, 113.433, -9.381688117980957], [30.3058, 120.348, 9.758674621582031], [22.9539, 112.0539, -8.575517654418945], [31.4846, 92.0657, -14.718790054321289], [31.6928, 118.48, 6.200927257537842], [27.9939, 120.677, 4.785084247589111], [34.2713, 108.954, -4.162193298339844], [41.1953, 123.2, 16.92206573486328], [34.2749, 108.882, -4.018188953399658], [30.1819, 120.27, 9.605555534362793], [22.5211, 113.3769, -12.112020492553711], [36.864, 118.78, 11.234867095947266], [21.9667, 108.6236, -9.404539108276367], [33.3681, 120.1631, 12.722208976745605], [31.4656, 104.6717, 1.9386076927185059], [37.739, 115.6906, -5.422226905822754], [36.2126, 113.0886, -8.31068229675293], [39.5989, 109.8119, 1.1557378768920898], [24.506, 117.7116, -6.313005447387695], [40.7378, 107.3715, 1.607671856880188], [34.7187, 113.727, -3.4337432384490967], [30.6872, 104.176, 1.3676778078079224], [27.583, 110.0394, -3.1601064205169678], [31.9438, 117.266, 5.02821159362793], [38.4928, 112.7003, -10.168018341064453], [31.3839, 118.4022, 5.886667251586914], [38.4519, 112.7383, -10.272887229919434], [26.1092, 119.299, -0.6115861535072327], [34.7745, 113.641, -3.682133674621582], [46.5888, 131.1572, -8.309194564819336], [30.4663, 106.6271, -3.010169506072998], [31.4189, 118.37, 5.821686744689941], [30.6539, 117.4974, 4.816079616546631], [26.8576, 100.2143, 3.328188180923462], [30.6617, 117.4697, 4.795173168182373], [37.7575, 115.6951, -5.405304431915283], [23.415, 111.2353, -6.016929626464844], [28.0167, 120.671, 4.859705448150635], [30.9222, 117.8078, 4.926526069641113], [38.9108, 115.4713, -3.986469030380249], [32.6494, 110.78, -3.238030433654785], [28.0797, 116.2239, 3.2770910263061523], [34.3017, 107.0708, 3.04699969291687], [40.1269, 113.2661, -4.739583969116211], [36.7731, 119.1939, 12.788694381713867], [47.2988, 123.945, -7.8852219581604], [28.095, 116.9622, 3.582981824874878], [26.6946, 119.5001, 1.6761443614959717], [27.8728, 112.8937, 0.4315829277038574], [23.6936, 113.0425, -6.476711750030518], [36.799, 119.976, 15.184247970581055], [35.4883, 112.8564, -6.628366470336914], [27.8408, 102.2714, 2.453294277191162], [30.5514, 114.2511, 0.7320355176925659], [42.0228, 121.6722, 13.479079246520996], [31.172, 120.658, 11.038050651550293], [32.996, 113.996, -0.500909149646759], [32.1319, 119.43, 9.353012084960938], [31.1907, 121.703, 11.844400405883789], [41.0931, 123.011, 17.300954818725586], [37.4664, 116.3061, -1.9575865268707275], [25.8664, 114.9367, -1.649538278579712], [32.3878, 119.46, 9.687439918518066], [35.4234, 119.5198, 12.417458534240723], [36.5776, 114.5035, -7.881317615509033], [22.8464, 108.239, -5.657516956329346], [42.9061, 129.5042, 6.548198223114014], [30.2352, 115.0625, 2.0639545917510986], [27.8953, 102.2311, 2.4655020236968994], [40.9923, 113.1306, -1.9819536209106445], [31.85805556, 106.7619444, -0.6559395790100098], [24.441, 98.578, -2.819504737854004], [41.3283, 123.8436, 16.201053619384766], [22.7422, 114.5317, -12.364330291748047], [27.5444, 109.9453, -3.291900157928467], [25.5811, 100.2171, 1.5131032466888428], [26.53111111, 107.8908333, -3.10701847076416], [39.5371, 75.9828, -89.84136962890625], [39.6969, 106.8089, 3.7041006088256836], [35.4178, 119.4641, 12.221844673156738], [33.38256667, 104.9338889, 9.151946067810059], [45.6842, 126.6206, -1.2748398780822754], [40.5905, 110.0067, -0.27006199955940247], [29.1242, 110.4697, -1.6154524087905884], [30.9892, 112.1969, -1.9985122680664062], [35.272, 113.884, -4.60835075378418], [41.1933, 80.2956, -73.53907012939453], [39.8745, 116.434, 4.41819429397583], [37.8195, 112.57, -10.210308074951172], [29.53675, 106.4959, -4.591834545135498], [43.941, 81.3364, -70.95855712890625], [31.9108, 119.905, 10.689620971679688], [27.7758, 115.0586, 2.3220062255859375], [30.9219, 117.8561, 4.961709022521973], [30.1259, 104.6294, -0.9255065321922302], [31.0935, 120.978, 11.208724021911621], [37.8792, 113.4922, -10.59898567199707], [26.5747, 107.9783, -3.1770100593566895], [35.235, 113.261, -5.400477886199951], [24.4072, 111.5622, -3.5747828483581543], [31.9025, 102.2218, 6.139625072479248], [37.3617, 118.0018, 8.037612915039062], [43.4569, 87.4651, -50.46879577636719], [26.5928, 101.5769, 2.739689588546753], [45.7733, 126.689, -1.6838051080703735], [28.6428, 112.4067, -0.22495205700397491], [34.402, 115.6578, 0.6113821268081665], [45.7677, 131.0032, -4.957968235015869], [31.1208, 104.4219, 1.7665432691574097], [27.7842, 114.3953, 1.8404439687728882], [27.9747, 120.76, 4.625548839569092], [31.4, 119.46, 8.923850059509277], [28.6844, 115.931, 3.394758701324463], [37.161, 122.41, 18.819541931152344], [27.7297, 109.1916, -4.088568210601807], [22.0225, 100.8017, -9.215397834777832], [29.6453, 106.562, -4.393654823303223], [22.8322, 100.9817, -5.264217376708984], [44.5462, 129.6386, 1.1342819929122925], [30.65638889, 104.0238889, 1.6020662784576416], [36.1031, 103.631, 8.792878150939941], [26.2331, 111.6236, -1.9684933423995972], [26.8956, 112.6211, -0.7636136412620544], [41.3047, 123.7308, 16.32927131652832], [40.8725, 114.904, 1.3113025426864624], [43.8167, 125.25, 6.506844520568848], [40.9359, 117.963, 9.740424156188965], [27.9119, 112.9074, 0.43103012442588806], [41.0112, 117.9384, 9.604315757751465], [32.4611, 119.9219, 11.311540603637695], [35.5294, 106.7039, 7.257801532745361], [29.5947, 105.0717, -2.43837308883667], [35.546, 112.8453, -6.773321151733398], [30.3175, 112.2551, -1.7246273756027222], [39.6679, 118.2185, 10.899248123168945], [31.737, 119.579, 9.547988891601562], [50.4269, 124.1186, -20.235111236572266], [32.6939, 109.0281, -3.3840150833129883], [32.935, 117.3086, 5.30176305770874], [32.645, 117.0083, 4.862930774688721], [27.7019, 106.9242, -4.597401142120361], [30.5494, 114.3006, 0.8046476244926453], [32.0572, 118.749, 7.190480709075928], [46.6219, 124.8648, -5.092250823974609], [34.407, 115.6386, 0.5653373003005981], [34.5021, 109.4266, -5.0216569900512695], [26.6761, 118.0966, 2.369590997695923], [29.8539, 114.2894, 1.0537015199661255], [39.746, 98.509, -4.263847351074219], [29.5844, 103.7627, 0.25840842723846436], [24.5157, 117.6569, -6.19576358795166], [28.2189, 112.8872, 0.3990159332752228], [36.0783, 111.5531, -7.814205646514893], [35.5461, 106.6692, 7.345986843109131], [40.0917, 113.3444, -4.896498203277588], [29.8906, 121.554, 9.363138198852539], [31.6861, 118.5058, 6.283123016357422], [29.8208, 121.56, 9.1858491897583], [34.3474, 108.935, -4.100533962249756], [28.1442, 112.9956, 0.5074498653411865], [37.7019, 112.7549, -10.242223739624023], [38.9467, 100.4686, 1.6969984769821167], [30.4183, 120.301, 9.789999008178711], [23.7208, 109.2131, -3.6922409534454346], [31.8711, 106.7389, -0.5842597484588623], [28.2403, 117.0281, 3.868542194366455], [23.0944, 109.6014, -5.877948760986328], [35.248889, 115.42277, -1.5064235925674438], [26.0931, 119.58, -1.0893683433532715], [22.8225, 108.321, -5.832686901092529], [23.0672, 109.6042, -5.997262477874756], [27.9958, 113.1817, 0.7368252873420715], [30.7856, 106.1064, -2.4381093978881836], [30.8064, 106.056, -2.3693392276763916], [27.2582, 111.4908, -1.62584388256073], [43.9404, 81.2815, -71.15111541748047], [34.5885, 119.176, 10.728946685791016], [38.4975, 106.2328, 5.652113914489746], [41.9228, 123.3783, 14.216843605041504], [33.6128, 114.6613, -0.12040004879236221], [34.8731, 108.9589, -3.712080955505371], [32.0092, 118.737, 7.128909587860107], [39.2474, 117.7918, 9.30161190032959], [25.7759, 113.0348, -2.0019137859344482], [29.9834, 103.0109, 2.0090394020080566], [39.9934, 116.315, 4.162352085113525], [34.3956, 108.7197, -3.6442646980285645], [27.8978, 102.2625, 2.4275448322296143], [31.3178, 118.3708, 5.794431209564209], [46.7975, 130.3258, -8.21517562866211], [26.2625, 117.6211, 0.9818896055221558], [31.5848, 120.354, 11.305152893066406], [30.2028, 115.0767, 2.0882318019866943], [29.7292, 115.988, 3.253138780593872], [21.6669, 110.9067, -13.016511917114258], [30.1142, 104.6469, -0.9902001023292542], [37.809, 120.773, 16.75234031677246], [27.8317, 99.7056, 4.013341426849365], [30.9742, 118.7386, 6.5452494621276855], [34.864, 117.5564, 5.617301940917969], [32.1883, 119.68, 10.269315719604492], [45.305, 130.9817, -3.135751247406006], [49.1577, 119.7512, -16.747316360473633], [30.3055, 112.2887, -1.6823912858963013], [36.5458, 104.1731, 8.390449523925781], [40.6511, 122.215, 17.80210304260254], [44.2967, 86.0497, -56.462013244628906], [34.2911, 117.244, 4.689454078674316], [28.7989, 104.6789, -2.2220191955566406], [37.4294, 122.1206, 18.605886459350586], [23.7369, 109.2317, -3.6700668334960938], [36.1417, 106.2319, 8.246865272521973], [31.7386, 117.278, 4.945423126220703], [48.4658, 129.4942, -13.967251777648926], [45.2924, 130.962, -3.0597639083862305], [40.715, 120.8478, 15.648789405822754], [33.3947, 120.225, 12.89062786102295], [40.6575, 109.8104, -0.11000065505504608], [38.86388889, 121.625, 17.84257698059082], [35.0573, 118.3418, 8.432821273803711], [41.7775, 123.478, 14.73042106628418], [31.2058, 107.4611, -2.228975772857666], [28.6047, 112.3347, -0.23018579185009003], [41.2736, 123.1761, 16.64230728149414], [36.0464, 103.831, 8.977581977844238], [34.3274, 109.043, -4.3293352127075195], [37.9648, 106.1532, 6.489803791046143], [36.1851, 120.3905, 15.362776756286621], [36.6028, 109.4761, -2.4706506729125977], [29.5467, 103.7705, 0.19050642848014832], [50.4217, 124.1303, -20.21290397644043], [22.7019, 110.1106, -7.865447521209717], [31.955, 119.18, 8.377958297729492], [39.1082, 117.237, 6.801645755767822], [24.2654, 116.1248, -6.251173496246338], [30.2756, 118.1371, 5.632275581359863], [33.567, 114.056, -0.9797587990760803], [27.8014, 114.3806, 1.8374894857406616], [29.36028, 104.7778, -2.0113677978515625], [26.57098, 101.68912, 2.694941282272339], [23.6706, 116.6447, -9.656560897827148], [32.1142, 112.1825, -1.8548388481140137], [41.8336, 123.542, 14.52486515045166], [30.2099, 115.0264, 2.0059986114501953], [34.3528, 107.3906, 1.6446250677108765], [25.3167, 110.4144, -2.921259641647339], [27.9164, 112.4876, -0.022754061967134476], [39.1067, 117.1941, 6.6020965576171875], [25.442, 119.0156, -3.2775192260742188], [40.8115, 114.8814, 1.0825731754302979], [29.9919, 120.605, 9.600354194641113], [23.1572, 112.885, -8.509238243103027], [37.9097, 114.3541, -10.031768798828125], [34.5004, 109.5049, -5.115444183349609], [33.737, 113.182, -2.3190627098083496], [38.44139, 106.2275, 5.744797706604004], [27.8381, 113.143, 0.7203216552734375], [31.2703, 120.613, 11.163339614868164], [22.3708, 107.3701, -6.864181995391846], [36.1942, 117.1436, 3.245354413986206], [26.6272, 118.1756, 2.2691895961761475], [33.1842, 106.9893, 1.692413330078125], [26.5697, 106.7164, -2.39709734916687], [29.5953, 105.0331, -2.3646748065948486], [39.6719, 106.8219, 3.738499402999878], [31.8934, 102.2402, 6.1056342124938965], [30.1506, 104.6356, -0.8956485390663147], [36.6739, 117.114, 2.8557682037353516], [30.0475, 101.9603, 3.3718457221984863], [40.6532, 109.8756, -0.18140843510627747], [23.01277778, 113.7944444, -10.20966911315918], [30.8244, 120.07, 9.899749755859375], [45.6033, 84.8861, -61.58794021606445], [22.8693, 112.844, -9.887685775756836], [36.1758, 117.1081, 3.0747292041778564], [33.8399, 115.8067, 1.7348726987838745], [43.768, 87.6046, -50.64521026611328], [22.2294, 113.495, -13.525269508361816], [26.8919, 112.6006, -0.7867144346237183], [27.8036, 114.3442, 1.8141133785247803], [45.61, 126.615, -0.9535925984382629], [33.965, 118.283, 7.5051093101501465], [31.56, 120.294, 11.156365394592285], [34.7545, 113.681, -3.579390048980713], [30.2819, 109.4689, -2.7849984169006348], [32.6028, 116.8556, 4.614469528198242], [43.8667, 125.417, 6.303338527679443], [22.8172, 114.3244, -11.803567886352539], [29.2786, 117.1983, 4.9552435874938965], [35.259, 113.1992, -5.5628485679626465], [41.8828, 123.9169, 14.20591926574707], [32.9444, 117.3575, 5.384435653686523], [27.9883, 116.3553, 3.0984809398651123], [38.843, 105.6975, 5.4445390701293945], [39.3673, 112.4279, -7.285895347595215], [34.5667, 117.732, 6.405705451965332], [41.1636, 80.2828, -73.5848159790039], [33.575, 119.007, 9.279075622558594], [24.9624, 102.625, 0.7826244831085205], [32.0144, 118.777, 7.250537872314453], [43.84, 125.2786, 6.415622711181641], [34.3617, 108.7233, -3.671715021133423], [39.9419, 119.5369, 13.681550979614258], [38.2839, 109.7289, -0.3102470636367798], [39.643, 118.144, 10.669034957885742], [31.381, 120.999, 11.656366348266602], [38.9194, 117.157, 5.991981506347656], [31.882, 120.55, 11.987957954406738], [32.2786, 118.3244, 6.152239799499512], [33.0323, 107.007, 1.3583645820617676], [22.7906, 108.439, -6.074397087097168], [38.1398, 114.5019, -9.726255416870117], [44.561, 129.61, 1.1095678806304932], [30.8388, 106.1087, -2.316879987716675], [31.2472, 120.561, 11.077912330627441], [29.8264, 106.424, -4.169313907623291], [30.9447, 118.7581, 6.610431671142578], [41.1442, 123.0485, 17.132591247558594], [22.4137, 107.3476, -6.657209396362305], [27.6178, 113.865, 1.3727498054504395], [24.4175, 111.5269, -3.5468928813934326], [43.7256, 126.6772, 6.349969387054443], [22.8561, 108.316, -5.682534217834473], [37.177, 119.941, 15.30956745147705], [26.2378, 117.6028, 0.914702832698822], [43.9167, 125.323, 6.132493019104004], [36.6377, 117.9544, 7.258598327636719], [23.2783, 113.568, -8.67959976196289], [24.8978, 118.5972, -5.386157035827637], [32.9673, 117.3536, 5.377599239349365], [34.7745, 117.5852, 5.738510608673096], [25.2178, 110.2869, -2.9170265197753906], [43.8358, 126.5844, 6.012674808502197], [36.1855, 113.0844444, -8.24748706817627], [24.6967, 108.1009, -2.0622074604034424], [30.4519, 114.8858, 1.8113371133804321], [31.2036, 121.478, 11.746718406677246], [24.3702, 102.5389, -0.05307513102889061], [37.8561, 113.5922, -10.559242248535156], [34.3708, 107.1586, 2.762655735015869], [34.3547, 107.1431, 2.800208330154419], [31.238, 121.4, 11.734700202941895], [41.9086, 123.5953, 14.20814323425293], [33.0014, 97.0, 2.045902967453003], [41.7561, 123.535, 14.793251991271973], [23.9011, 106.6103, -1.5504721403121948], [36.7339, 119.0841, 12.326887130737305], [36.0875, 111.5025, -7.800408363342285], [25.8333, 114.9322, -1.7270971536636353], [31.89708, 121.1518, 12.48176097869873], [23.8982, 100.0782, -2.5100855827331543], [33.3261, 105.0822, 8.909135818481445], [29.7128, 118.3057, 6.1077070236206055], [44.0114, 87.2997, -52.069278717041016], [45.7258, 126.646, -1.463287591934204], [28.4569, 118.0058, 4.850348949432373], [22.5908, 114.263, -12.758070945739746], [23.7233, 114.6892, -7.758852005004883], [35.0147, 110.9956, -5.824633598327637], [38.8394, 117.457, 7.435952186584473], [30.7946, 120.744, 10.606575965881348], [22.735, 108.328, -6.214654922485352], [27.3125, 105.2864, -1.517752766609192], [32.6389, 110.7258, -3.280806064605713], [37.4489, 116.3189, -1.8880295753479004], [23.08, 114.4053, -10.61288833618164], [28.6459, 121.273, 6.223788738250732], [39.7153, 76.1861, -89.03886413574219], [30.4576, 106.6303, -3.0208780765533447], [33.6284, 116.9677, 4.5373663902282715], [22.7833, 108.244, -5.929360389709473], [22.5811, 113.074, -11.506475448608398], [37.0967, 114.4821, -9.106661796569824], [30.6197, 114.2836, 0.7746300101280212], [44.3336, 84.8983, -59.77197265625], [36.1542, 113.1097, -8.166077613830566], [30.2456, 120.127, 9.485430717468262], [29.6219, 106.65, -4.386216163635254], [38.8343, 105.6775, 5.460977077484131], [24.428, 98.5842, -2.8538239002227783], [25.0661, 117.0256, -3.0058388710021973], [38.5247, 102.1878, 4.266721725463867], [28.5819, 112.3744, -0.19351428747177124], [31.656, 120.734, 11.879339218139648], [36.3083, 120.1964, 15.195062637329102], [24.9617, 118.6108, -5.070992469787598], [41.0228, 123.1289, 17.488571166992188], [31.1278, 97.1804, 3.00010085105896], [36.792, 119.952, 15.137603759765625], [23.4168, 103.386, -2.20257830619812], [42.2725, 118.9572, 9.170594215393066], [29.5983, 106.296, -4.579538345336914], [36.087, 114.358, -6.547743320465088], [36.283, 120.008, 14.855329513549805], [40.1461, 124.3933, 18.997894287109375], [25.0836, 102.728, 0.968210756778717], [41.8472, 123.428, 14.489777565002441], [29.9972, 101.9533, 3.3257243633270264], [27.8336, 113.251, 0.8383719325065613], [30.4551, 106.6388, -3.0181431770324707], [41.1556, 122.0247, 16.680620193481445], [26.5689, 106.6971, -2.3775761127471924], [39.9522, 116.434, 4.591238975524902], [41.7089, 123.439, 14.995033264160156], [37.9358, 102.6469, 5.697559833526611], [24.7121, 108.2134, -2.110779285430908], [31.7133, 118.6439, 6.6787309646606445], [40.1194, 124.3678, 19.060806274414062], [38.817, 106.3394, 5.1477251052856445], [35.303, 113.883, -4.705898284912109], [37.4658, 118.5019, 10.638863563537598], [30.7636, 106.0642, -2.46447491645813], [32.4535, 105.8945, 3.4830195903778076], [38.5061, 102.1708, 4.286032199859619], [35.5102, 102.0199, 7.951786518096924], [38.8632, 115.493, -4.042779922485352], [31.87888889, 106.7513889, -0.602962851524353], [25.8481, 114.9461, -1.6933337450027466], [31.92, 120.268, 11.533385276794434], [26.585, 101.7169, 2.698395013809204], [36.2092, 117.7181, 6.010465621948242], [43.8228, 126.4978, 6.102553844451904], [35.0896, 118.4023, 8.589051246643066], [28.76389, 104.6417, -2.164632797241211], [22.7633, 100.98, -5.5465216636657715], [28.7867, 104.6061, -2.090669870376587], [42.9559, 89.1673, -44.05462646484375], [31.7039, 119.935, 10.538691520690918], [23.1422, 113.235, -8.995697975158691], [30.9075, 113.942, 0.2991497218608856], [37.5436, 121.3181, 17.62644386291504], [31.2864, 120.628, 11.203855514526367], [37.9723, 106.196, 6.473596096038818], [27.0983, 115.0075, 1.36225426197052], [34.5101, 109.5293, -5.145655155181885], [24.81805556, 118.1569444, -5.198225498199463], [36.6489, 116.943, 1.9504306316375732], [25.8226, 113.0116, -1.914734125137329], [36.0756, 103.712, 8.875365257263184], [28.2642, 117.0564, 3.920419454574585], [31.453, 121.115, 11.843435287475586], [40.7514, 120.8392, 15.593769073486328], [36.2403, 120.4001, 15.400164604187012], [29.8686, 114.3372, 1.0958205461502075], [22.75, 114.085, -11.852804183959961], [40.8062, 111.7277, -1.9795199632644653], [25.1081, 99.1678, -0.03315688297152519], [25.2697, 110.2819, -2.9050188064575195], [28.6969, 115.973, 3.457767963409424], [28.2558, 109.6414, -3.2898428440093994], [39.1495, 117.3916, 7.548476219177246], [33.9461, 116.7844, 3.8929240703582764], [28.3169, 109.7325, -3.1074562072753906], [46.8267, 130.3961, -8.391870498657227], [37.5136, 111.1297, -7.802817344665527], [40.1438, 116.72, 6.073885440826416], [29.8211, 114.3231, 1.1017119884490967], [47.3227, 123.9483, -7.983267307281494], [29.2956, 117.2461, 4.997391700744629], [29.3864, 117.3097, 5.062474727630615], [28.6064, 115.9083, 3.4564568996429443], [36.061, 114.483, -6.184422016143799], [28.4622, 117.9511, 4.835073947906494], [29.4892, 106.634, -4.5963358879089355], [34.4714, 100.2561, 6.416979789733887], [39.6295, 118.1997, 10.82528305053711], [36.1942, 117.0881, 2.9601051807403564], [41.2553, 123.15, 16.720176696777344], [30.9285, 113.9153, 0.266910582780838], [21.8586, 111.9786, -13.397751808166504], [24.299, 109.4221, -2.920032262802124], [27.7914, 114.3703, 1.826762318611145], [39.2133, 117.1837, 6.7150044441223145], [29.6816, 115.9872, 3.225757122039795], [26.9089, 112.5328, -0.8275759816169739], [44.9079, 82.0485, -69.41642761230469], [36.1912, 113.1569, -8.240876197814941], [35.7067, 107.6364, 3.3555803298950195], [29.6292, 91.0834, -21.17961311340332], [36.1939, 113.0972, -8.263996124267578], [34.8019, 113.675, -3.6967954635620117], [40.9161, 117.9664, 9.770550727844238], [24.3694, 102.5778, -0.05776938423514366], [23.1331, 113.26, -9.068819999694824], [37.1013, 79.9117, -75.73017120361328], [41.7192, 86.2022, -51.748619079589844], [26.2708, 117.6353, 1.0099736452102661], [28.9404, 118.871, 6.704449653625488], [23.7106, 113.0208, -6.398497104644775], [36.2403, 120.6659, 15.80231761932373], [22.7267, 114.24, -12.126330375671387], [34.7975, 114.3733, -2.5863633155822754], [40.0181, 119.7624, 14.03807258605957], [40.5546, 110.0377, -0.2688388228416443], [28.4586, 119.93, 6.0057854652404785], [36.67, 116.93, 1.8696250915527344], [34.7781, 114.3389, -2.608431816101074], [30.89556, 120.0875, 10.01093864440918], [41.7511, 86.1461, -51.98674392700195], [47.8515, 88.1267, -57.338890075683594], [24.9117, 118.5819, -5.2942681312561035], [23.5486, 116.3242, -10.030606269836426], [37.8694, 113.5689, -10.569873809814453], [27.7044, 111.9892, -0.6392182111740112], [40.1114, 113.2803, -4.805322647094727], [39.3606, 112.4549, -7.370791912078857], [45.6289, 122.8444, -1.538201928138733], [27.6231, 113.8447, 1.3620274066925049], [28.4514, 119.914, 5.993045806884766], [29.6475, 91.0874, -21.129959106445312], [34.2303, 108.883, -4.027853488922119], [29.4251, 113.1493, -0.09409112483263016], [38.3344, 109.7414, -0.21538008749485016], [43.8711, 87.5525, -51.01356506347656], [38.9389, 100.4497, 1.688675045967102], [37.68277778, 112.7194444, -10.211758613586426], [39.1292, 106.7096, 4.495472431182861], [34.1781, 117.1694, 4.596751689910889], [46.0756, 121.9462, -3.7658650875091553], [37.85, 113.5158, -10.575008392333984], [31.7712, 116.5661, 4.101013660430908], [39.3514, 112.44, -7.376585483551025], [27.6486, 106.8906, -4.445751667022705], [41.1219, 121.2008, 15.730737686157227], [44.5782, 129.6115, 1.047706961631775], [29.709, 106.452, -4.3423171043396], [23.06, 113.7480556, -9.926131248474121], [23.1886, 112.863, -8.33829116821289], [41.7347, 123.2444, 14.92619514465332], [21.2567, 110.4558, -14.282082557678223], [27.3361, 103.7225, 0.8633220791816711], [37.9311, 102.6219, 5.685612678527832], [33.6406, 114.6369, -0.19745755195617676], [31.8572, 117.25, 4.982594013214111], [35.5975, 104.6169, 10.13337516784668], [42.8947, 125.1358, 10.168831825256348], [29.2313, 91.7608, -17.56019401550293], [39.5343, 116.7464, 5.192486763000488], [40.7094, 122.2703, 17.787195205688477], [43.1594, 124.3711, 9.363785743713379], [30.6414, 114.2131, 0.6544088125228882], [36.44, 120.61, 15.764852523803711], [29.4892, 106.468, -4.678914546966553], [28.9703, 111.6975, -0.9141725301742554], [38.0108, 112.434, -10.165509223937988], [31.4867, 120.269, 11.019919395446777], [34.429, 115.6558, 0.5644177198410034], [38.01777778, 114.5330556, -9.70377254486084], [44.3075, 86.0697, -56.42020034790039], [27.9647, 116.385, 3.0529632568359375], [30.2043, 114.8949, 1.7916810512542725], [29.3678, 113.1772, -0.025990430265665054], [29.1128, 119.6533, 7.725619316101074], [25.9118, 114.9064, -1.541342854499817], [26.0392, 119.303, -0.9184635877609253], [23.1569, 113.281, -8.972710609436035], [45.5422, 126.979, -0.8116626143455505], [37.7394, 112.5583, -10.165997505187988], [28.6542, 121.419, 6.172317981719971], [26.5939, 104.89, 0.2569977641105652], [41.8625, 124.0383, 14.25889778137207], [35.7511, 114.2956, -5.463776111602783], [31.7586, 119.996, 10.739678382873535], [38.8516, 105.724, 5.426745414733887], [36.6868, 117.0684, 2.6122379302978516], [26.0753, 119.315, -0.7754014134407043], [39.9716, 116.473, 4.798203945159912], [46.7432, 82.9994, -68.84115600585938], [32.41361, 119.458, 9.70576000213623], [38.8416, 115.4612, -4.33641242980957], [30.5489, 117.0486, 4.441417694091797], [27.4948, 114.0944, 1.4596247673034668], [27.8867, 113.095, 0.6600171327590942], [23.0528, 112.471, -8.542591094970703], [26.8733, 112.6197, -0.7889342904090881], [35.4894, 112.8664, -6.625057697296143], [47.2753, 130.261, -9.973567962646484], [23.8844, 106.6527, -1.6043002605438232], [40.7866, 111.551, -1.862329363822937], [43.6267, 122.2603, 6.976836681365967], [36.10139, 111.505, -7.8211565017700195], [28.56, 112.3439, -0.20475409924983978], [45.7319, 126.685, -1.5029504299163818], [40.0844, 113.2711, -4.910160541534424], [37.4014, 121.5992, 17.939619064331055], [30.6133, 105.68, -2.3441147804260254], [30.7478, 120.726, 10.535082817077637], [28.1178, 112.9844, 0.4950292706489563], [28.7994, 115.742, 3.0304877758026123], [25.067, 102.681, 0.9338680505752563], [32.0005, 120.86, 12.46531867980957], [26.5017, 101.7453, 2.623487949371338], [34.5814, 105.7281, 9.575748443603516], [43.91, 125.287, 6.160048484802246], [46.3991, 124.8847, -4.209758758544922], [31.8531, 106.7594, -0.6564298272132874], [33.9528, 118.293, 7.512819290161133], [45.6175, 122.8211, -1.5003186464309692], [19.9507, 110.576, -19.34553337097168], [23.4792, 111.2897, -5.839451789855957], [32.1383, 114.0614, 0.19645775854587555], [30.8023, 106.0789, -2.389427661895752], [34.2324, 108.94, -4.141804218292236], [36.11, 114.286, -6.782543659210205], [31.96, 120.913, 12.45279598236084], [32.8928, 115.8275, 2.6123666763305664], [31.7694, 120.0469, 10.864890098571777], [31.6842, 120.288, 11.286307334899902], [47.3636, 123.9305, -8.149582862854004], [28.7442, 115.813, 3.171574592590332], [23.2536, 116.4019, -11.41632080078125], [23.4714, 116.7519, -10.624160766601562], [34.6511, 112.3939, -4.946218967437744], [35.0622, 118.2939, 8.323250770568848], [28.6839, 115.8886, 3.328151226043701], [41.8469, 123.81, 14.354430198669434], [24.3289, 116.1278, -5.948936462402344], [34.3497, 107.2058, 2.487136125564575], [42.0352, 119.2654, 10.3368501663208], [31.0386, 112.2211, -1.9722979068756104], [40.0758, 113.2994, -4.950491428375244], [36.61763, 114.5129, -7.973827838897705], [29.4822, 106.364, -4.7154622077941895], [35.94, 104.148, 9.266819953918457], [27.2272, 111.4328, -1.7204877138137817], [25.1328, 99.1711, 0.04001038521528244], [40.6288, 109.8654, -0.1417209655046463]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#ff7900&quot;, &quot;0.05&quot;: &quot;#ff7900&quot;, &quot;0.1&quot;: &quot;#ff7900&quot;, &quot;0.15&quot;: &quot;#ff7900&quot;, &quot;0.2&quot;: &quot;#ff7900&quot;, &quot;0.25&quot;: &quot;#ff7900&quot;, &quot;0.3&quot;: &quot;#ff7900&quot;, &quot;0.35&quot;: &quot;#ff7900&quot;, &quot;0.4&quot;: &quot;#ff7900&quot;, &quot;0.45&quot;: &quot;#ff7900&quot;, &quot;0.5&quot;: &quot;#ff7900&quot;, &quot;0.55&quot;: &quot;#ff7900&quot;, &quot;0.6&quot;: &quot;#ff7900&quot;, &quot;0.65&quot;: &quot;#ff7900&quot;, &quot;0.7&quot;: &quot;#ff7900&quot;, &quot;0.75&quot;: &quot;#ff7900&quot;, &quot;0.8&quot;: &quot;#ff7900&quot;, &quot;0.85&quot;: &quot;#ff7900&quot;, &quot;0.9&quot;: &quot;#ff7900&quot;, &quot;0.95&quot;: &quot;#ff7900&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_9b2b61c1661f729d181079cd9ace9359.addTo(map_e8b4f3f6bb30c8e491d211ada8462f0c);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13b9d9ec250>\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('coef_w10', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"风向\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"id\": \"56318144E3FF452CACC9D0F49D4D5974\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_8fd76424b4eae6bd9010300a0469c3df {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_8fd76424b4eae6bd9010300a0469c3df&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_8fd76424b4eae6bd9010300a0469c3df = L.map(\\n\",\n       \"                &quot;map_8fd76424b4eae6bd9010300a0469c3df&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_66faba95bd48be6bea7e0ea8910a63d5 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_66faba95bd48be6bea7e0ea8910a63d5.addTo(map_8fd76424b4eae6bd9010300a0469c3df);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_c42741f7f35fae203413cccf67974b43 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_c42741f7f35fae203413cccf67974b43.color = d3.scale.threshold()\\n\",\n       \"              .domain([-0.5186351537704468, -0.5171010494232178, -0.5155669450759888, -0.5140328407287598, -0.5124987363815308, -0.5109646320343018, -0.5094305276870728, -0.5078964233398438, -0.5063623189926147, -0.5048282146453857, -0.5032941102981567, -0.5017600059509277, -0.5002259016036987, -0.4986918270587921, -0.4971577227115631, -0.4956236183643341, -0.4940895140171051, -0.4925554096698761, -0.4910213053226471, -0.4894872009754181, -0.4879530966281891, -0.4864189922809601, -0.4848848879337311, -0.4833507835865021, -0.48181667923927307, -0.48028257489204407, -0.47874847054481506, -0.47721439599990845, -0.47568029165267944, -0.47414618730545044, -0.47261208295822144, -0.47107797861099243, -0.4695438742637634, -0.4680097699165344, -0.4664756655693054, -0.4649415612220764, -0.4634074568748474, -0.4618733525276184, -0.4603392481803894, -0.4588051438331604, -0.4572710394859314, -0.4557369351387024, -0.4542028307914734, -0.4526687264442444, -0.4511346220970154, -0.4496005177497864, -0.4480664134025574, -0.44653230905532837, -0.44499820470809937, -0.44346410036087036, -0.44193002581596375, -0.44039592146873474, -0.43886181712150574, -0.43732771277427673, -0.43579360842704773, -0.4342595040798187, -0.4327253997325897, -0.4311912953853607, -0.4296571910381317, -0.4281230866909027, -0.4265889823436737, -0.4250548779964447, -0.4235207736492157, -0.4219866693019867, -0.4204525649547577, -0.4189184606075287, -0.4173843562602997, -0.41585028171539307, -0.41431617736816406, -0.41278207302093506, -0.41124796867370605, -0.40971386432647705, -0.40817975997924805, -0.40664565563201904, -0.40511155128479004, -0.40357744693756104, -0.40204334259033203, -0.400509238243103, -0.398975133895874, -0.397441029548645, -0.395906925201416, -0.394372820854187, -0.392838716506958, -0.391304612159729, -0.3897705078125, -0.388236403465271, -0.386702299118042, -0.385168194770813, -0.383634090423584, -0.382099986076355, -0.38056591153144836, -0.37903180718421936, -0.37749770283699036, -0.37596359848976135, -0.37442949414253235, -0.37289538979530334, -0.37136128544807434, -0.36982718110084534, -0.36829307675361633, -0.3667590022087097, -0.3652248978614807, -0.3636907935142517, -0.3621566891670227, -0.3606225848197937, -0.3590884804725647, -0.3575543761253357, -0.3560202717781067, -0.3544861674308777, -0.3529520630836487, -0.3514179587364197, -0.3498838543891907, -0.34834975004196167, -0.34681564569473267, -0.34528154134750366, -0.34374743700027466, -0.34221333265304565, -0.34067922830581665, -0.33914512395858765, -0.33761101961135864, -0.33607691526412964, -0.33454281091690063, -0.33300870656967163, -0.3314746022224426, -0.3299404978752136, -0.3284063935279846, -0.3268722891807556, -0.3253381848335266, -0.3238040804862976, -0.3222699761390686, -0.3207358717918396, -0.3192017674446106, -0.3176676630973816, -0.3161335587501526, -0.31459948420524597, -0.31306537985801697, -0.31153127551078796, -0.30999717116355896, -0.30846306681632996, -0.30692896246910095, -0.30539485812187195, -0.30386075377464294, -0.30232667922973633, -0.3007925748825073, -0.2992584705352783, -0.2977243661880493, -0.2961902618408203, -0.2946561574935913, -0.2931220531463623, -0.2915879487991333, -0.2900538444519043, -0.2885197401046753, -0.2869856357574463, -0.2854515314102173, -0.2839174270629883, -0.2823833227157593, -0.2808492183685303, -0.27931511402130127, -0.27778100967407227, -0.27624690532684326, -0.27471280097961426, -0.27317869663238525, -0.27164459228515625, -0.27011048793792725, -0.26857638359069824, -0.26704227924346924, -0.26550817489624023, -0.26397407054901123, -0.2624399960041046, -0.2609058916568756, -0.2593717873096466, -0.2578376829624176, -0.2563035786151886, -0.2547694742679596, -0.2532353699207306, -0.2517012655735016, -0.2501671612262726, -0.24863305687904358, -0.24709895253181458, -0.24556484818458557, -0.24403074383735657, -0.24249666929244995, -0.24096256494522095, -0.23942846059799194, -0.23789435625076294, -0.23636025190353394, -0.23482614755630493, -0.23329204320907593, -0.23175793886184692, -0.23022383451461792, -0.22868973016738892, -0.2271556258201599, -0.2256215214729309, -0.2240874171257019, -0.2225533127784729, -0.2210192084312439, -0.2194851040840149, -0.2179509997367859, -0.21641692519187927, -0.21488282084465027, -0.21334871649742126, -0.21181461215019226, -0.21028050780296326, -0.20874640345573425, -0.20721229910850525, -0.20567819476127625, -0.20414409041404724, -0.20260998606681824, -0.20107588171958923, -0.19954177737236023, -0.19800767302513123, -0.19647356867790222, -0.19493946433067322, -0.1934053599834442, -0.1918712556362152, -0.1903371810913086, -0.1888030767440796, -0.18726897239685059, -0.18573486804962158, -0.18420076370239258, -0.18266665935516357, -0.18113255500793457, -0.17959845066070557, -0.17806434631347656, -0.17653024196624756, -0.17499613761901855, -0.17346203327178955, -0.17192792892456055, -0.17039382457733154, -0.16885972023010254, -0.16732561588287354, -0.16579148173332214, -0.16425743699073792, -0.1627233326435089, -0.16118919849395752, -0.15965509414672852, -0.1581209897994995, -0.1565868854522705, -0.1550527811050415, -0.1535186767578125, -0.1519845724105835, -0.1504504680633545, -0.1489163637161255, -0.14738225936889648, -0.14584815502166748, -0.14431405067443848, -0.14277994632720947, -0.14124584197998047, -0.13971173763275146, -0.13817766308784485, -0.13664355874061584, -0.13510945439338684, -0.13357535004615784, -0.13204124569892883, -0.13050714135169983, -0.12897303700447083, -0.12743893265724182, -0.12590482831001282, -0.12437072396278381, -0.12283661961555481, -0.1213025152683258, -0.1197684109210968, -0.1182343065738678, -0.1167002022266388, -0.11516609787940979, -0.11363199353218079, -0.11209791898727417, -0.11056381464004517, -0.10902971029281616, -0.10749560594558716, -0.10596150159835815, -0.10442739725112915, -0.10289329290390015, -0.10135918855667114, -0.09982508420944214, -0.09829097986221313, -0.09675687551498413, -0.09522277116775513, -0.09368866682052612, -0.09215456247329712, -0.09062045812606812, -0.08908635377883911, -0.08755224943161011, -0.08601817488670349, -0.08448407053947449, -0.08294996619224548, -0.08141586184501648, -0.07988175749778748, -0.07834765315055847, -0.07681354880332947, -0.07527944445610046, -0.07374534010887146, -0.07221123576164246, -0.07067713141441345, -0.06914302706718445, -0.06760892271995544, -0.06607481837272644, -0.06454071402549744, -0.06300660967826843, -0.06147250533103943, -0.05993843078613281, -0.05840432643890381, -0.056870222091674805, -0.0553361177444458, -0.0538020133972168, -0.05226790904998779, -0.05073380470275879, -0.049199700355529785, -0.04766559600830078, -0.04613149166107178, -0.04459738731384277, -0.04306328296661377, -0.041529178619384766, -0.03999507427215576, -0.03846096992492676, -0.036926865577697754, -0.03539276123046875, -0.033858686685562134, -0.03232458233833313, -0.030790477991104126, -0.029256373643875122, -0.027722269296646118, -0.026188164949417114, -0.02465406060218811, -0.023119956254959106, -0.021585851907730103, -0.0200517475605011, -0.018517613410949707, -0.016983509063720703, -0.0154494047164917, -0.013915300369262695, -0.012381196022033691, -0.010847091674804688, -0.009312987327575684, -0.007778942584991455, -0.006244838237762451, -0.004710674285888672, -0.0031766295433044434, -0.001642465591430664, -0.00010842084884643555, 0.0014257431030273438, 0.0029597878456115723, 0.0044939517974853516, 0.00602799654006958, 0.007562100887298584, 0.009096205234527588, 0.010630309581756592, 0.012164413928985596, 0.0136985182762146, 0.015232622623443604, 0.016766726970672607, 0.01830083131790161, 0.019834935665130615, 0.02136904001235962, 0.022903144359588623, 0.024437248706817627, 0.02597135305404663, 0.027505457401275635, 0.02903956174850464, 0.030573666095733643, 0.032107770442962646, 0.033641815185546875, 0.035175979137420654, 0.03671002388000488, 0.03824418783187866, 0.03977823257446289, 0.04131239652633667, 0.0428464412689209, 0.04438060522079468, 0.045914649963378906, 0.047448813915252686, 0.048982858657836914, 0.05051702260971069, 0.05205106735229492, 0.0535852313041687, 0.05511927604675293, 0.05665343999862671, 0.05818748474121094, 0.05972158908843994, 0.061255693435668945, 0.06278979778289795, 0.06432390213012695, 0.06585800647735596, 0.06739211082458496, 0.06892621517181396, 0.07046031951904297, 0.07199442386627197, 0.07352852821350098, 0.07506263256072998, 0.07659673690795898, 0.07813084125518799, 0.07966494560241699, 0.081199049949646, 0.082733154296875, 0.084267258644104, 0.08580130338668823, 0.08733546733856201, 0.08886951208114624, 0.09040367603302002, 0.09193772077560425, 0.09347188472747803, 0.09500592947006226, 0.09654009342193604, 0.09807413816452026, 0.09960830211639404, 0.10114234685897827, 0.10267651081085205, 0.10421055555343628, 0.10574471950531006, 0.10727876424789429, 0.10881292819976807, 0.1103469729423523, 0.1118810772895813, 0.1134151816368103, 0.1149492859840393, 0.11648339033126831, 0.11801749467849731, 0.11955159902572632, 0.12108570337295532, 0.12261980772018433, 0.12415391206741333, 0.12568801641464233, 0.12722212076187134, 0.12875622510910034, 0.13029032945632935, 0.13182443380355835, 0.13335853815078735, 0.13489264249801636, 0.13642674684524536, 0.1379607915878296, 0.13949495553970337, 0.1410290002822876, 0.14256316423416138, 0.1440972089767456, 0.14563137292861938, 0.1471654176712036, 0.1486995816230774, 0.15023362636566162, 0.1517677903175354, 0.15330183506011963, 0.1548359990119934, 0.15637004375457764, 0.15790420770645142, 0.15943825244903564, 0.16097241640090942, 0.16250646114349365, 0.16404056549072266, 0.16557466983795166, 0.16710877418518066, 0.16864287853240967, 0.17017698287963867, 0.17171108722686768, 0.17324519157409668, 0.17477929592132568, 0.1763134002685547, 0.1778475046157837, 0.1793816089630127, 0.1809157133102417, 0.1824498176574707, 0.1839839220046997, 0.1855180263519287, 0.1870521903038025, 0.18858623504638672, 0.19012027978897095, 0.19165444374084473, 0.19318848848342896, 0.19472265243530273, 0.19625675678253174, 0.19779086112976074, 0.19932496547698975, 0.20085906982421875, 0.20239317417144775, 0.20392727851867676, 0.20546138286590576, 0.20699548721313477, 0.20852959156036377, 0.21006369590759277, 0.21159780025482178, 0.21313190460205078, 0.21466600894927979, 0.216200053691864, 0.2177342176437378, 0.21926826238632202, 0.2208024263381958, 0.22233647108078003, 0.2238706350326538, 0.22540467977523804, 0.22693884372711182, 0.22847288846969604, 0.23000705242156982, 0.23154109716415405, 0.23307526111602783, 0.23460930585861206, 0.23614346981048584, 0.23767751455307007, 0.23921167850494385, 0.24074572324752808, 0.24227982759475708, 0.24381393194198608, 0.2453480362892151, 0.2468821406364441])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_c42741f7f35fae203413cccf67974b43.x = d3.scale.linear()\\n\",\n       \"              .domain([-0.5186351537704468, 0.2468821406364441])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_c42741f7f35fae203413cccf67974b43.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_c42741f7f35fae203413cccf67974b43.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_c42741f7f35fae203413cccf67974b43.legend.addTo(map_8fd76424b4eae6bd9010300a0469c3df);\\n\",\n       \"\\n\",\n       \"    color_map_c42741f7f35fae203413cccf67974b43.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_c42741f7f35fae203413cccf67974b43.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-0.5186351537704468, &#x27;&#x27;, &#x27;&#x27;, -0.40380755066871643, &#x27;&#x27;, &#x27;&#x27;, -0.2889799475669861, &#x27;&#x27;, &#x27;&#x27;, -0.17415237426757812, &#x27;&#x27;, &#x27;&#x27;, -0.05932477116584778, &#x27;&#x27;, &#x27;&#x27;, 0.05550283193588257, &#x27;&#x27;, &#x27;&#x27;, 0.17033040523529053, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_c42741f7f35fae203413cccf67974b43.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_c42741f7f35fae203413cccf67974b43.g = color_map_c42741f7f35fae203413cccf67974b43.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_c42741f7f35fae203413cccf67974b43.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_c42741f7f35fae203413cccf67974b43.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_c42741f7f35fae203413cccf67974b43.x(color_map_c42741f7f35fae203413cccf67974b43.color.domain()[i - 1]) : color_map_c42741f7f35fae203413cccf67974b43.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_c42741f7f35fae203413cccf67974b43.color.domain().length ? color_map_c42741f7f35fae203413cccf67974b43.x(color_map_c42741f7f35fae203413cccf67974b43.color.domain()[i]) : color_map_c42741f7f35fae203413cccf67974b43.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_c42741f7f35fae203413cccf67974b43.g.call(color_map_c42741f7f35fae203413cccf67974b43.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_a9eaf4452d5f5bab7fdc2d3e537be765 = L.heatLayer(\\n\",\n       \"                [[22.7629, 113.257, -0.19875723123550415], [22.6411, 110.1675, -0.17448396980762482], [38.5339, 102.1725, 0.07949692755937576], [23.6714, 116.6339, -0.1973457932472229], [31.1956, 107.5069, -0.2567647695541382], [32.8603, 115.8556, -0.24348798394203186], [23.0395, 113.105, -0.19234949350357056], [31.371, 119.794, 0.06572544574737549], [31.2797, 107.5272, -0.25871771574020386], [37.4967, 121.2611, 0.2320067435503006], [27.7569, 111.9561, -0.2251121699810028], [37.1152, 79.9485, -0.34703972935676575], [28.6425, 115.892, -0.21445152163505554], [39.0927, 117.202, -0.021579528227448463], [29.5186, 106.54, -0.1912943422794342], [30.2311, 119.6942, 0.012551533058285713], [24.339, 102.5381, -0.10192538052797318], [33.0069, 114.0131, -0.32393544912338257], [37.0533, 114.5261, -0.41754698753356934], [29.4758, 113.2621, -0.2546314001083374], [26.3108, 117.7275, -0.172796830534935], [32.1403, 114.0122, -0.30405884981155396], [21.2679, 110.3316, -0.2199464738368988], [43.895, 81.2867, -0.31431958079338074], [41.5931, 120.4439, 0.16797544062137604], [39.5747, 116.7729, -0.005825062282383442], [28.4303, 117.9033, -0.15972308814525604], [38.885, 121.5638889, 0.24328137934207916], [36.4343, 116.0072, -0.32144615054130554], [24.9424, 118.6663, -0.18094557523727417], [37.9854, 112.549, -0.3659871816635132], [36.6867, 101.524, 0.01955452747642994], [45.0878, 124.8292, -0.14299358427524567], [26.5917, 104.83, -0.12142162024974823], [25.1035, 117.0216, -0.17056326568126678], [31.955, 119.146, 0.031709518283605576], [30.6145, 116.9894, -0.13086697459220886], [35.0992, 117.4518, -0.1731388419866562], [37.374, 120.399, 0.1941581666469574], [43.85, 125.217, -0.10440903156995773], [41.0971, 122.9642, 0.13870158791542053], [41.0385, 113.1076, 0.005541844293475151], [21.2706, 110.3539, -0.22010259330272675], [47.3386, 123.9305, -0.20726262032985687], [31.751, 119.579, 0.06262707710266113], [32.7639, 116.8028, -0.18064820766448975], [23.7569, 114.6778, -0.18837617337703705], [38.2911, 109.7456, -0.08387699723243713], [36.9639, 100.9048, 0.04676290228962898], [47.9047, 88.1214, -0.24104611575603485], [36.0417, 111.4917, -0.36597639322280884], [29.3628, 104.7547, -0.1808641254901886], [30.8811, 117.7442, -0.09099923819303513], [26.6343, 106.7487, -0.13469626009464264], [29.3547, 110.5594, -0.2523964047431946], [32.3153, 118.3094, -0.05452880263328552], [24.3406, 109.3886, -0.13389581441879272], [34.2572, 109.06, -0.2913694977760315], [27.8403, 112.9118, -0.24043896794319153], [35.4934, 112.835, -0.4056982100009918], [27.8042, 114.9119, -0.24860510230064392], [28.6869, 115.852, -0.21381676197052002], [34.3672, 107.1906, -0.15411321818828583], [29.8633, 121.586, -0.015049267560243607], [37.4514, 105.0197, 0.004083622712641954], [36.913, 121.531, 0.22772541642189026], [38.0513, 114.4548, -0.3910379111766815], [37.8692, 112.5369, -0.3737161159515381], [32.0197, 112.155, -0.3255142271518707], [30.7525, 120.7844444, 0.05209477245807648], [27.7231, 109.1794, -0.17546263337135315], [39.0153, 106.3717, 0.028527382761240005], [31.3508, 118.3528, -0.041136302053928375], [23.0467, 113.144, -0.19255056977272034], [23.1617, 112.565, -0.18387094140052795], [34.7822, 111.19, -0.3567376434803009], [29.077, 119.647, -0.05640602111816406], [37.3753, 97.3731, 0.14529253542423248], [23.3594, 104.2533, -0.11631207913160324], [32.5714, 110.8839, -0.3347432613372803], [46.6462, 131.1516, -0.3437094986438751], [27.2944, 105.31, -0.13862235844135284], [32.4639, 119.888, 0.0891823098063469], [39.0845, 117.1589, -0.026799505576491356], [37.4314, 118.6672, 0.008645709604024887], [30.1366, 104.6617, -0.19586485624313354], [31.3264, 120.596, 0.08424672484397888], [36.6275, 109.4131, -0.15950943529605865], [23.5538, 113.589, -0.1848142296075821], [22.8054, 113.292, -0.19820204377174377], [24.3898, 109.4883, -0.1345602571964264], [42.3022, 123.8139, 0.03227029740810394], [27.1311, 114.99, -0.23517681658267975], [40.9733, 117.8184, 0.17948846518993378], [40.7612, 111.717, -0.010900381952524185], [31.2071, 121.577, 0.06950579583644867], [36.253, 120.014, 0.12724025547504425], [32.9917, 112.5192, -0.34515243768692017], [28.3586, 112.9958, -0.24457378685474396], [29.2958, 117.2111, -0.1568639576435089], [27.8072, 114.4011, -0.25243979692459106], [47.203, 123.6261, -0.1966673880815506], [39.3265, 112.4078, -0.2049092948436737], [41.0833, 122.9481, 0.14006291329860687], [34.2629, 108.993, -0.2873694896697998], [45.5828, 84.8897, -0.228653684258461], [31.215, 107.525, -0.2577598989009857], [39.16969, 117.2099, -0.012341032736003399], [27.5342, 109.9792, -0.18371565639972687], [38.4186, 112.7356, -0.3401462733745575], [41.2692, 123.7989, 0.09556839615106583], [31.6411, 118.4828, -0.031088396906852722], [39.4365, 75.9435, -0.5186351537704468], [28.9664, 118.871, -0.08753233402967453], [23.1036, 109.5683, -0.156431645154953], [36.0822, 111.5169, -0.3668477237224579], [36.885, 120.515, 0.18758796155452728], [26.4214, 111.6156, -0.18174855411052704], [34.719, 113.734, -0.375877320766449], [42.0186, 121.6561, 0.1244831532239914], [30.63, 104.1113889, -0.19800664484500885], [47.7222, 128.8736, -0.3234167695045471], [41.7381, 125.9486, -0.022003095597028732], [29.355, 113.2117, -0.25317591428756714], [45.1642, 124.8528, -0.14611715078353882], [34.7772, 111.1928, -0.3567894697189331], [33.027, 112.5573, -0.3456861078739166], [42.2814, 118.9233, 0.14546199142932892], [28.5773, 121.377, -0.0827842652797699], [43.95305556, 126.4738889, -0.14111970365047455], [32.6778, 109.0311, -0.31746143102645874], [29.389, 106.513, -0.18679854273796082], [32.6319, 116.8306, -0.17594657838344574], [22.5978, 114.297, -0.21200154721736908], [27.6869, 106.9222, -0.15157462656497955], [32.0314, 118.803, -0.00144330901093781], [29.1029, 119.686, -0.05415553227066994], [33.581, 114.014, -0.3385608196258545], [33.8561, 115.7831, -0.2768900692462921], [28.2597, 112.9792, -0.24313707649707794], [43.7878, 125.454, -0.10830999910831451], [36.6106, 109.5056, -0.17048704624176025], [23.02777778, 113.7461111, -0.19690747559070587], [28.6844, 115.893, -0.21281330287456512], [33.9506, 118.3214, -0.07187067717313766], [30.8217, 106.1031, -0.2113063633441925], [41.7128, 86.2381, -0.06331098824739456], [23.1478, 109.5681, -0.15499542653560638], [29.261, 91.7706, -0.006712156347930431], [39.0877, 117.307, -0.011798125691711903], [28.4231, 119.879, -0.10021357983350754], [45.2978, 130.9298, -0.2934161126613617], [27.725, 111.9975, -0.22480525076389313], [31.2284, 121.533, 0.07144255191087723], [41.1196, 123.044, 0.13450947403907776], [42.8328, 93.4961, 0.11801239103078842], [36.5819, 101.834, 0.007825285196304321], [30.9697, 117.8472, -0.08314274251461029], [40.0031, 116.407, 0.016575686633586884], [36.881, 118.746, -0.008425137028098106], [34.2761, 117.167, -0.1878255158662796], [26.6029, 106.6856, -0.13417233526706696], [35.7306, 114.2878, -0.39529818296432495], [34.6258, 112.4275, -0.38368839025497437], [36.865, 120.537, 0.18850383162498474], [30.5719, 114.3672, -0.25953608751296997], [35.5051, 112.85, -0.40597501397132874], [29.6588, 90.9798, -0.017346536740660667], [32.3761, 119.389, 0.05164644494652748], [36.2866, 100.6188, 0.02768748812377453], [43.1747, 124.3419, -0.04175388440489769], [39.8673, 116.366, -0.0033284341916441917], [40.8452, 111.659, -0.00375554827041924], [29.2647, 117.1558, -0.16043077409267426], [27.8614, 112.9433, -0.2408960610628128], [23.475, 111.3178, -0.16475322842597961], [39.5453, 116.7022, -0.016172658652067184], [28.5808, 112.3458, -0.24295465648174286], [36.5336, 116.734, -0.25413545966148376], [36.2289, 117.6789, -0.14988335967063904], [23.65889, 116.6183, -0.19755788147449493], [33.8997, 116.8067, -0.20797590911388397], [23.7586, 114.6944, -0.18845920264720917], [41.8417, 123.7117, 0.06627476215362549], [29.6535, 116.0174, -0.1819017082452774], [46.6384, 126.9934, -0.24108386039733887], [41.2864, 123.7669, 0.09598299860954285], [27.8244, 113.135, -0.24292075634002686], [29.5822, 105.0406, -0.18619832396507263], [29.6632, 94.3616, 0.018028603866696358], [45.7667, 126.635, -0.20433995127677917], [38.2478, 109.7336, -0.0848858430981636], [34.5911, 119.1478, 0.009862275794148445], [39.6407, 118.1853, 0.12839999794960022], [26.5892, 104.8, -0.12125135958194733], [31.354, 119.818, 0.06629494577646255], [36.6622, 117.049, -0.21831250190734863], [19.9969, 110.338, -0.25099149346351624], [35.428, 116.6305, -0.25992512702941895], [37.364, 120.394, 0.19351732730865479], [26.0542, 119.389, -0.16679707169532776], [31.155, 120.636, 0.0762016549706459], [22.2281, 113.299, -0.2170456498861313], [23.63444, 113.0472, -0.17920534312725067], [23.3892, 104.2319, -0.11568612605333328], [43.8748, 125.3649, -0.10942211747169495], [31.03389, 112.1908, -0.3081522583961487], [23.2775, 116.7258, -0.20711515843868256], [35.4144, 116.5856, -0.26342591643333435], [35.3962, 119.54, 0.055671483278274536], [40.1952, 116.23, 0.026721108704805374], [29.3578, 113.1094, -0.25441452860832214], [46.0347, 124.8354, -0.176724374294281], [47.3382, 130.1097, -0.340171217918396], [40.916, 107.5936, 0.080684132874012], [41.9339, 123.6836, 0.06110546737909317], [22.96583333, 113.7383333, -0.19816184043884277], [36.6872, 116.989, -0.22469750046730042], [34.7538, 113.6356, -0.3783379793167114], [31.7308, 113.3983, -0.30493587255477905], [35.04388889, 111.0522222, -0.3531135618686676], [35.9019, 114.17, -0.40396425127983093], [27.5733, 109.9333, -0.1839052140712738], [33.6347, 114.6758, -0.3222116231918335], [32.1078, 114.1044, -0.30093446373939514], [22.4853, 113.4411, -0.2085655778646469], [43.8875, 126.555, -0.14077340066432953], [33.6067, 118.989, -0.0034741810522973537], [29.5867, 115.9936, -0.18397530913352966], [34.1978, 108.985, -0.2900715172290802], [25.0311, 117.0151, -0.17141450941562653], [27.11, 114.9739, -0.23477055132389069], [30.21, 120.211, 0.01899280585348606], [26.9258, 112.6194, -0.21393480896949768], [46.7588, 130.3794, -0.32765939831733704], [35.4813, 112.8252, -0.40545064210891724], [39.9279, 116.225, -0.006570352707058191], [34.3181, 108.6761, -0.26607272028923035], [24.769519, 113.586606, -0.17874643206596375], [30.5103, 117.0549, -0.12853924930095673], [40.7579, 111.651, -0.009764423593878746], [37.0964, 114.5331, -0.4175807535648346], [49.2261, 119.7594, -0.21042855083942413], [25.4792, 118.981, -0.17406612634658813], [38.80805556, 121.2588889, 0.2468821257352829], [28.2053, 113.0792, -0.24351011216640472], [40.8144, 111.608, -0.004788756370544434], [42.8953, 125.1567, -0.05447760596871376], [24.6928, 108.054, -0.12064827233552933], [32.0878, 118.626, -0.019181864336133003], [29.7207, 118.3236, -0.0672750249505043], [36.838, 118.0448, -0.09742814302444458], [29.9899, 103.0013, -0.17772142589092255], [32.64600333, 117.0411667, -0.16183419525623322], [22.6069, 113.104, -0.2019793540239334], [22.805, 108.383, -0.1535809487104416], [21.4689, 111.0286, -0.2210955172777176], [21.6828, 110.8592, -0.21166421473026276], [30.696, 111.268, -0.2987523078918457], [22.5111, 113.4075, -0.20727413892745972], [43.831, 87.6432, -0.0725591629743576], [33.5653, 114.0322, -0.33772167563438416], [35.5714, 104.6228, -0.040291305631399155], [26.6607, 119.5202, -0.1569254994392395], [31.317, 119.438, 0.045718878507614136], [31.5631, 120.245, 0.08752042055130005], [29.8181, 114.3036, -0.24200569093227386], [25.0124, 102.743, -0.10669221729040146], [31.2994, 120.543, 0.08290062099695206], [34.1546, 108.906, -0.28750699758529663], [31.0483, 112.2014, -0.30840200185775757], [30.2997, 113.8531, -0.2613108158111572], [39.625, 121.989, 0.22544078528881073], [40.7736, 120.8631, 0.20435203611850739], [35.27, 115.455, -0.3391919434070587], [29.8272, 106.379, -0.19738048315048218], [30.0874, 103.8416, -0.18647703528404236], [29.41569, 106.5506, -0.18830065429210663], [27.2537, 111.4503, -0.20408925414085388], [24.2719, 116.0797, -0.18387210369110107], [47.3349, 130.2659, -0.3438992500305176], [25.0359, 102.638, -0.10611933469772339], [30.2692, 120.19, 0.02269153669476509], [27.0658, 114.9817, -0.23377519845962524], [25.8179, 113.0119, -0.18665152788162231], [26.2403, 107.5228, -0.1280064582824707], [32.4285, 105.8624, -0.1928509920835495], [31.2659, 121.536, 0.07374359667301178], [35.5997, 103.2064, -0.04755464568734169], [34.9162, 113.6113, -0.38321056962013245], [38.49494, 106.1024, 0.01907937414944172], [32.4867, 119.9, 0.09011548012495041], [39.1654, 117.145, -0.019088570028543472], [41.0903, 122.0539, 0.16509468853473663], [23.3917, 113.215, -0.18588611483573914], [31.1333, 104.3883, -0.20513062179088593], [34.6972, 119.3581, 0.032256852835416794], [42.8172, 93.5128, 0.11886297166347504], [22.6164, 110.1433, -0.1748625487089157], [45.8167, 126.561, -0.2043994665145874], [31.8766, 117.307, -0.12950429320335388], [34.3622, 107.2386, -0.15791699290275574], [25.5364, 103.8, -0.11362749338150024], [22.5545, 114.1063, -0.212004154920578], [43.9311, 116.0781, 0.07443453371524811], [37.5211, 111.1406, -0.28770238161087036], [47.7317, 128.9094, -0.32456645369529724], [41.7972, 123.3997, 0.08191876113414764], [23.3993, 103.3772, -0.11498165875673294], [46.5776, 125.1386, -0.20201680064201355], [43.8303, 87.5801, -0.07473080605268478], [30.5947, 114.3008, -0.2620837986469269], [26.2081, 111.6217, -0.1757027953863144], [27.6442, 113.8686, -0.2475009709596634], [39.2282, 106.7704, 0.03026042878627777], [42.2556, 118.8789, 0.1471276879310608], [26.3003, 106.805, -0.1286136955022812], [29.57278, 106.4042, -0.1905982792377472], [23.0916, 113.348, -0.19304326176643372], [36.6114, 116.988, -0.22571444511413574], [41.1386, 121.1303, 0.18205401301383972], [45.8194, 130.8625, -0.3087117671966553], [33.721, 113.322, -0.35523319244384766], [31.896, 121.173, 0.10937121510505676], [31.7848, 117.196, -0.13440723717212677], [26.8906, 100.2203, -0.10277996212244034], [24.795928, 113.598061, -0.17945496737957], [39.9567, 119.6023, 0.22389712929725647], [32.18888889, 119.4369444, 0.056166354566812515], [34.9817, 118.2764, -0.08153577893972397], [36.5481, 104.1731, -0.016980769112706184], [26.5495, 106.6867, -0.13330823183059692], [44.1564, 87.9897, -0.07372454553842545], [37.7111, 112.7306, -0.3914032280445099], [26.4364, 111.5992, -0.18194635212421417], [39.617, 122.011, 0.22522097826004028], [26.6514, 118.1819, -0.17234742641448975], [40.9843, 117.9525, 0.18449921905994415], [22.0019, 100.7939, -0.1440894901752472], [21.5958, 109.2256, -0.195994570851326], [34.7967, 114.2886, -0.36694228649139404], [25.0492, 101.538, -0.09628842771053314], [31.9286, 102.1755, -0.15962903201580048], [26.567, 101.7227, -0.11570172011852264], [36.0725, 103.841, -0.03003012388944626], [39.3179, 112.4254, -0.20738424360752106], [26.5155, 106.6948, -0.13273555040359497], [22.7875, 108.301, -0.15327532589435577], [29.7534, 116.0726, -0.1778062880039215], [33.627, 119.0122, -0.0012236187467351556], [34.2778, 117.2933, -0.17616045475006104], [32.8913, 117.4186, -0.13976934552192688], [39.7884, 109.9734, -0.010930883698165417], [30.475, 105.5956, -0.19966675341129303], [34.6686, 112.4433, -0.3848687708377838], [35.0611, 111.0233, -0.3520170748233795], [23.4794, 111.26, -0.16401976346969604], [30.72358333, 103.97275, -0.1963062584400177], [46.8025, 130.2719, -0.32635098695755005], [32.02, 120.87, 0.11330781877040863], [32.0417, 120.81, 0.11327497661113739], [37.187, 122.019, 0.23705635964870453], [38.0398, 114.6046, -0.3862161338329315], [36.086, 114.32, -0.4053538143634796], [25.9061, 113.0073, -0.18814992904663086], [24.77908333, 113.6734722, -0.17922596633434296], [41.0781, 121.0986, 0.18579241633415222], [37.197, 122.038, 0.2371438592672348], [31.92, 120.302, 0.09977786988019943], [39.8129, 110.0023, -0.010850884951651096], [36.71, 117.541, -0.16133643686771393], [32.3292, 119.8767, 0.0877876728773117], [28.8833, 105.4322, -0.1730232685804367], [34.4286, 115.6697, -0.3019418716430664], [30.2897, 120.157, 0.023992324247956276], [22.9394, 112.0369, -0.18341729044914246], [29.305, 120.091, -0.03680875152349472], [26.9056, 112.5664, -0.2128746509552002], [26.4519, 111.5989, -0.18245607614517212], [25.0925, 104.9022, -0.11218757182359695], [26.6383, 118.1694, -0.17240473628044128], [30.0033, 120.7789, 0.0037741712294518948], [36.4372, 115.9848, -0.32330599427223206], [42.2217, 123.7153, 0.04122398421168327], [31.5072, 104.7283, -0.2099863588809967], [37.7379, 115.6426, -0.3333812654018402], [34.794, 111.158, -0.35582321882247925], [30.1808, 120.088, 0.01698671281337738], [35.1764, 113.2464, -0.39670684933662415], [27.8136, 99.7064, -0.10294433683156967], [30.4133, 114.8131, -0.24013282358646393], [30.1377, 104.6289, -0.19549007713794708], [28.19, 112.9394, -0.2421930730342865], [29.635, 119.026, -0.040113337337970734], [33.5981, 119.036, 0.001518770819529891], [42.0503, 121.6972, 0.12174054235219955], [34.0117, 113.8331, -0.35448744893074036], [29.5634, 103.757, -0.17843879759311676], [32.5, 80.1161, -0.40352723002433777], [30.3119, 120.12, 0.025567196309566498], [29.33972, 104.7228, -0.18029797077178955], [41.1042, 121.835, 0.16972224414348602], [37.8564, 113.5753, -0.40943509340286255], [31.17, 120.635, 0.07691039144992828], [33.4022, 120.118, 0.11295340955257416], [38.8707, 115.5214, -0.2255745679140091], [38.6016, 105.9512, 0.023295609280467033], [38.0524, 114.5214, -0.3886331617832184], [37.18, 119.959, 0.15178997814655304], [21.9508, 108.6553, -0.17883460223674774], [21.6533, 110.9294, -0.21346023678779602], [36.8198, 118.3092, -0.06417375057935715], [32.965, 114.018, -0.32281482219696045], [46.0872, 85.6931, -0.2241068184375763], [28.1944, 113.0014, -0.24277080595493317], [29.1389, 110.48, -0.24318227171897888], [45.2948, 131.0103, -0.2955068349838257], [30.4865, 106.6351, -0.22142638266086578], [34.802, 113.564, -0.3806622326374054], [41.5647, 120.4247, 0.16955101490020752], [33.6481, 116.9765, -0.18844890594482422], [43.1847, 124.3897, -0.043977294117212296], [30.698, 111.2992, -0.2988898456096649], [34.5653, 105.8614, -0.08382745832204819], [22.5328, 113.024, -0.20384150743484497], [23.1142, 114.4103, -0.1992252618074417], [34.2153, 117.256, -0.17824140191078186], [32.6975, 109.0072, -0.31701040267944336], [25.4552, 119.0018, -0.17460326850414276], [30.51197222, 117.0331111, -0.12951931357383728], [37.4442, 118.5857, -0.0004936080076731741], [28.2264, 117.0222, -0.20110952854156494], [34.9058, 108.9344, -0.24595288932323456], [31.6908, 113.3833, -0.3043366074562073], [28.0005, 116.3574, -0.22457483410835266], [32.395, 111.0419, -0.332977831363678], [35.31, 113.836, -0.39119061827659607], [23.3667, 116.6794, -0.204743430018425], [34.3469, 106.005, -0.10034006088972092], [25.8071, 113.0383, -0.18679800629615784], [32.3061, 118.3158, -0.05375458300113678], [40.7608, 107.4211, 0.07670574635267258], [35.0697, 109.0697, -0.24480050802230835], [44.5952, 129.5902, -0.2374640256166458], [37.8531, 113.6292, -0.410159170627594], [40.3937, 116.644, 0.07601648569107056], [30.3714, 114.8989, -0.23529298603534698], [31.2261, 121.425, 0.07247881591320038], [40.6592, 122.2414, 0.18388253450393677], [21.8536, 111.9508, -0.21716418862342834], [40.7136, 120.9092, 0.2064865529537201], [27.3392, 103.7032, -0.13301019370555878], [41.1222, 121.1178, 0.1831028014421463], [26.4364, 106.6554, -0.13107514381408691], [38.4841, 106.2739, 0.018075857311487198], [37.393, 117.9776, -0.08376369625329971], [29.9816, 103.0001, -0.17762881517410278], [33.1138, 107.0089, -0.21367478370666504], [38.9846, 117.3747, -0.01605754718184471], [23.05361111, 113.7819444, -0.19659839570522308], [25.2708, 110.3089, -0.13970240950584412], [29.315, 110.4417, -0.24889220297336578], [31.7956, 117.302, -0.12800289690494537], [35.767, 115.0772, -0.3706315755844116], [24.3663, 109.3957, -0.13380546867847443], [29.8506, 121.524, -0.014553501270711422], [43.8256, 126.55, -0.13839028775691986], [27.72, 106.9178, -0.15185505151748657], [27.8036, 114.9314, -0.24835234880447388], [36.8041, 117.8512, -0.12198896706104279], [36.907, 121.544, 0.22795531153678894], [29.2718, 88.8876, -0.11154618859291077], [25.5035, 103.7897, -0.11346384137868881], [40.8369, 111.751, -0.005974553059786558], [39.0631, 121.9769, 0.2361617535352707], [33.9592, 118.2442, -0.07915201038122177], [33.63063889, 116.989, -0.18712753057479858], [41.0831, 123.0156, 0.1375584602355957], [39.6308, 118.1662, 0.12568299472332], [23.0528, 114.4183, -0.2001810222864151], [30.4742, 114.9028, -0.23829059302806854], [30.6578, 104.054, -0.19729788601398468], [21.7631, 108.3511, -0.18056151270866394], [42.9409, 89.191, 0.00934803020209074], [41.3369, 123.7528, 0.09390170127153397], [30.2747, 120.063, 0.022794313728809357], [35.2375, 115.474722, -0.3373585641384125], [46.6572, 131.1638, -0.34439584612846375], [29.2365, 88.8931, -0.112244613468647], [36.0022, 106.2792, -0.03735162690281868], [33.739, 113.292, -0.3561229705810547], [30.5797, 105.7519, -0.20190513134002686], [37.7805, 112.488, -0.3764413297176361], [28.9026, 105.4436, -0.173378124833107], [30.3515, 112.2068, -0.28679928183555603], [35.6039, 103.2139, -0.04741181060671806], [37.9844, 106.2025, 0.010590005666017532], [33.7214, 113.3064, -0.3554929494857788], [35.0994, 109.0656, -0.24224117398262024], [38.00583333, 114.4586111, -0.3942455053329468], [36.7008, 119.1425, 0.036069732159376144], [25.0992, 104.8811, -0.11223973333835602], [35.1147, 111.0414, -0.35251009464263916], [32.0723, 118.778, -0.004023723769932985], [34.7496, 113.5991, -0.3787164092063904], [30.2366, 119.7183, 0.01361811626702547], [24.44583333, 118.0636111, -0.18728004395961761], [23.5353, 116.3697, -0.19897200167179108], [37.3803, 118.0062, -0.08057507872581482], [43.8947, 126.5786, -0.1416538953781128], [31.5031, 120.242, 0.08548115938901901], [40.8367, 114.8985, 0.026362495496869087], [37.5639, 121.2514, 0.23320181667804718], [30.6463, 111.3549, -0.29723504185676575], [25.8417, 98.8546, -0.07709392160177231], [27.5578, 109.9972, -0.1845938265323639], [46.8032, 130.3648, -0.3287634253501892], [42.8939, 129.4892, -0.1871909499168396], [34.6692, 112.3628, -0.3844621479511261], [30.9414, 117.7806, -0.08806325495243073], [29.6514, 91.1319, -0.012819950468838215], [24.3304, 109.4108, -0.1341760754585266], [28.71583, 104.5761, -0.16504031419754028], [30.3944, 114.8878, -0.23641853034496307], [38.03777778, 114.5480556, -0.38870203495025635], [23.0786, 112.4722, -0.1846243292093277], [46.528, 125.112, -0.19972695410251617], [27.2317, 111.4733, -0.20404940843582153], [30.7157, 111.3009, -0.29952606558799744], [32.9683, 112.55, -0.34458884596824646], [31.3008, 121.467, 0.076698437333107], [46.619, 131.1651, -0.3431774079799652], [43.9469, 87.4754, -0.08265484124422073], [28.8194, 104.5969, -0.16773273050785065], [30.9431, 118.7175, -0.009301341138780117], [33.3942, 120.156, 0.11558210849761963], [35.5236, 107.6406, -0.10206619650125504], [31.8706, 117.259, -0.13239482045173645], [32.4429, 105.8242, -0.19149045646190643], [32.88922222, 115.7838889, -0.2487095445394516], [26.6009, 106.7105, -0.1341462880373001], [27.8094, 102.3419, -0.1392393708229065], [30.0911, 120.598, 0.011125832796096802], [29.6747, 91.1221, -0.012519389390945435], [35.4039, 116.5546, -0.26588109135627747], [33.5039, 119.135, 0.013451444916427135], [46.0707, 122.0931, -0.12526072561740875], [34.29, 117.1814, -0.18685778975486755], [41.9967, 121.6178, 0.12636618316173553], [34.3739, 107.1186, -0.14853236079216003], [23.0048, 113.134, -0.19341407716274261], [29.90166667, 121.6147222, -0.013249843381345272], [31.671, 120.721, 0.09927460551261902], [28.1308, 112.8908, -0.2414681762456894], [34.3164, 108.7369, -0.26994138956069946], [34.7837, 117.2852, -0.18667633831501007], [42.8775, 129.3675, -0.18350383639335632], [35.0003, 102.905, -0.06811437010765076], [43.6156, 122.3039, -0.008257209323346615], [41.765, 123.41, 0.08351433277130127], [32.939, 117.3961, -0.14208818972110748], [36.5767, 109.4824, -0.17071162164211273], [34.6231, 112.3844, -0.3833774924278259], [27.8847, 102.2689, -0.14003883302211761], [43.962, 87.6444, -0.07736228406429291], [37.5002, 105.1971, 0.005161867011338472], [36.7019, 119.12, 0.03320780396461487], [35.213, 113.227, -0.39812588691711426], [40.1503, 124.4256, 0.12031354755163193], [31.8108, 119.9736, 0.08461789041757584], [37.8873, 112.522, -0.3716268241405487], [33.568, 114.005, -0.3384344279766083], [26.8802, 100.2497, -0.10311860591173172], [41.8864, 124.0878, 0.04812193289399147], [31.3708, 120.641, 0.08629341423511505], [29.6376, 94.3681, 0.017738400027155876], [23.5292, 116.4094, -0.19936543703079224], [34.3731, 109.2186, -0.2937140166759491], [31.6219, 120.275, 0.09034886211156845], [31.5475, 120.354, 0.09004367142915726], [27.8667, 113.167, -0.24341526627540588], [41.9206, 126.4047, -0.05208148807287216], [40.6821, 109.8538, 0.024414831772446632], [42.2953, 123.8831, 0.030111996456980705], [34.2417, 117.192, -0.18470893800258636], [36.6164, 114.5426, -0.4101465046405792], [41.5672, 120.4486, 0.1691817343235016], [25.1174, 117.0181, -0.17066316306591034], [41.8594, 123.9, 0.05721333250403404], [25.8567, 98.8601, -0.07724303007125854], [29.5817, 105.0653, -0.1862582415342331], [36.497, 117.8477, -0.1279892474412918], [31.7275, 113.3583, -0.3054882884025574], [25.7054, 100.1542, -0.0906141847372055], [36.2211, 117.6983, -0.14764776825904846], [24.68636111, 113.5970833, -0.17624936997890472], [36.0714, 111.5028, -0.36629170179367065], [24.81119444, 113.5593889, -0.17964018881320953], [29.4402, 112.9943, -0.25709500908851624], [35.76806, 115.0061, -0.3733051121234894], [28.0089, 120.634, -0.10662098228931427], [37.4372, 116.2714, -0.2893213927745819], [31.7797, 116.5068, -0.17901575565338135], [31.1654, 121.412, 0.0688614472746849], [45.8309, 130.9467, -0.31141147017478943], [44.8969, 82.0806, -0.3036935329437256], [39.7294, 98.5023, 0.16582626104354858], [28.4459, 117.973, -0.15534235537052155], [23.3682, 103.3758, -0.11553184688091278], [24.8885, 102.821, -0.10657506436109543], [41.3472, 123.8142, 0.09084261208772659], [33.0122, 112.5224, -0.34553396701812744], [42.2864, 123.8489, 0.031998105347156525], [27.7314, 112.0194, -0.22533878684043884], [35.7672, 115.0628, -0.37119391560554504], [30.6103, 114.4272, -0.25938230752944946], [31.7506, 118.5106, -0.028824012726545334], [29.1456, 111.7158, -0.2544918656349182], [28.9745, 118.855, -0.08748715370893478], [34.6575, 109.2, -0.27747970819473267], [23.105, 113.261, -0.19215157628059387], [39.6572, 106.7931, 0.04386303201317787], [23.5739, 116.3594, -0.19801679253578186], [31.2108, 107.4967, -0.2567862570285797], [32.625, 116.7039, -0.1843712031841278], [28.2675, 109.6958, -0.20227788388729095], [32.8985, 117.3065, -0.1478959023952484], [41.2894, 123.1417, 0.12124943733215332], [30.5706, 104.079, -0.19673989713191986], [32.1342, 114.0681, -0.30245816707611084], [23.0706, 112.427, -0.18433116376399994], [37.825, 120.747, 0.22341495752334595], [34.493, 109.4636, -0.3001941442489624], [26.5894, 104.8475, -0.1214582696557045], [28.76611, 104.6225, -0.16652289032936096], [31.4747, 104.7778, -0.21055977046489716], [32.0564, 112.1392, -0.32628780603408813], [32.9735, 112.5003, -0.3448600172996521], [25.0441, 101.5482, -0.09629718959331512], [26.6611, 119.5392, -0.1567264199256897], [43.6801, 122.2532, -0.011326052248477936], [28.8558, 105.4322, -0.17242011427879333], [29.6541, 91.1774, -0.011617632582783699], [38.2991, 116.8854, -0.15316206216812134], [37.154, 122.471, 0.2329217493534088], [41.7156, 125.9361, -0.02022561803460121], [28.2169, 116.9983, -0.20215420424938202], [31.3097, 120.669, 0.08342371881008148], [44.0297, 87.2717, -0.09293872117996216], [25.8471, 114.8905, -0.20130608975887299], [33.8715, 109.9154, -0.3227109909057617], [36.61981, 114.4965, -0.41173094511032104], [38.97388889, 121.6119444, 0.2420794814825058], [27.8328, 114.9289, -0.2488986700773239], [40.0625, 124.3303, 0.12847918272018433], [22.5625, 114.117, -0.2118101269006729], [45.6886, 85.1186, -0.22551628947257996], [38.3228, 116.8709, -0.1525590568780899], [40.2865, 116.17, 0.03315966948866844], [47.3489, 130.3172, -0.34561219811439514], [45.9819, 126.6106, -0.21097123622894287], [38.3254, 116.8584, -0.15378716588020325], [37.7087, 112.7105, -0.3906307518482208], [31.8516, 117.124, -0.1405579000711441], [36.8088, 118.0482, -0.09761159121990204], [38.5036, 106.1358, 0.019050024449825287], [38.8756, 115.442, -0.23188404738903046], [35.0308, 110.9678, -0.3499296009540558], [21.865, 111.9494, -0.2167537808418274], [31.9051, 117.16, -0.1394861936569214], [29.6007, 103.7506, -0.17908281087875366], [41.9419, 126.4078, -0.05328569561243057], [39.0511, 121.7769, 0.23909378051757812], [32.0775, 118.795, -0.00244081555865705], [46.0703, 122.0506, -0.12445202469825745], [27.9639, 116.3598, -0.22516141831874847], [24.4674, 117.6336, -0.1833651214838028], [30.049, 119.946, 0.007680264301598072], [34.7997, 111.1489, -0.35558876395225525], [22.5497, 113.3881, -0.2058577835559845], [34.378, 108.869, -0.2744583487510681], [36.4796, 115.9835, -0.32356077432632446], [29.334, 120.04, -0.03479565680027008], [31.422, 121.14, 0.08689484745264053], [38.91194444, 121.6330556, 0.24228814244270325], [29.6926, 116.0628, -0.17945422232151031], [27.6428, 113.8381, -0.24727492034435272], [37.43445, 118.696, 0.012336159124970436], [43.55, 125.633, -0.10280301421880722], [32.4246, 105.8153, -0.19228962063789368], [46.6527, 126.9636, -0.24092209339141846], [45.7478, 126.593, -0.2027920037508011], [35.28385, 113.5922, -0.3947288393974304], [31.8585, 117.336, -0.12722927331924438], [30.66, 117.49, -0.10675288736820221], [38.95111111, 121.565, 0.24279360473155975], [40.1097, 113.3819, -0.10632452368736267], [33.0706, 107.0154, -0.21575073897838593], [27.8344, 114.9831, -0.2482486516237259], [27.9153, 113.0048, -0.24184195697307587], [27.3033, 111.5239, -0.20643921196460724], [30.518, 106.631, -0.22210487723350525], [31.7371, 116.508, -0.17790760099887848], [29.6039, 115.9114, -0.18596144020557404], [23.8822, 100.0869, -0.09527461975812912], [39.9425, 116.361, 0.005606125108897686], [23.2539, 116.6092, -0.20685866475105286], [24.5058, 118.0936, -0.18589182198047638], [36.0211, 106.2375, -0.035738326609134674], [27.8159, 112.9227, -0.24042077362537384], [30.2989, 109.5039, -0.2724306881427765], [29.7125, 106.617, -0.19908060133457184], [44.6104, 129.6459, -0.23924009501934052], [30.4753, 114.1525, -0.2609562277793884], [44.1756, 87.5475, -0.08912793546915054], [34.6869, 112.4831, -0.3855103850364685], [37.062, 114.4854, -0.4186249077320099], [36.6428, 101.748, 0.012328892014920712], [26.5506, 104.9544, -0.12125765532255173], [31.4539, 104.7536, -0.21026162803173065], [31.388, 120.953, 0.08679141104221344], [45.755, 126.542, -0.20192024111747742], [31.0283, 103.613, -0.19201484322547913], [40.7688, 114.9032, 0.018399199470877647], [31.3019, 120.591, 0.08310674875974655], [33.9953, 113.7906, -0.3547881245613098], [30.0506, 103.8986, -0.18658581376075745], [39.65782, 118.1838, 0.12990997731685638], [30.6347, 105.8161, -0.2030891329050064], [31.1108, 104.3539, -0.20475174486637115], [37.0172, 105.18, -0.003628483507782221], [30.0125, 103.009, -0.17802153527736664], [35.763, 115.031, -0.372241735458374], [24.3158, 109.4839, -0.1349894255399704], [22.9477, 113.352, -0.19617542624473572], [36.6525, 119.1638, 0.037044744938611984], [28.2325, 113.0833, -0.2439664602279663], [29.7228, 106.626, -0.19957469403743744], [36.39, 120.47, 0.1705554723739624], [37.7124, 112.469, -0.3788103759288788], [29.3411, 104.7692, -0.18049539625644684], [39.79777778, 98.26722222, 0.16704189777374268], [29.7048, 115.9581, -0.18237455189228058], [39.5986, 109.7736, -0.013412253931164742], [39.7711, 98.2908, 0.1667930781841278], [31.874, 120.526, 0.10394564270973206], [23.3633, 116.7244, -0.20514385402202606], [22.5931, 113.0819, -0.2023204267024994], [32.41, 119.404, 0.05282469093799591], [35.7289, 107.6831, -0.09103807061910629], [43.8694, 125.325, -0.10812851041555405], [25.0405, 102.722, -0.1066741868853569], [39.5178, 116.6838, -0.021264610812067986], [33.5979, 114.6546, -0.3219667673110962], [22.9169, 112.0392, -0.18392349779605865], [34.6869, 112.4664, -0.3854336142539978], [30.9414, 117.8178, -0.08541563153266907], [43.9317, 116.1042, 0.07418227940797806], [32.0903, 112.2106, -0.3264107406139374], [42.0486, 121.6592, 0.12284661829471588], [41.615, 120.3939, 0.1674211174249649], [40.8033, 111.658, -0.006563403178006411], [31.7897, 119.8914, 0.08081474900245667], [31.909, 120.237, 0.09716151654720306], [32.1083, 118.803, -0.00183230044785887], [30.8596, 120.1844, 0.05888545140624046], [31.1167, 104.4053, -0.20527629554271698], [30.7819, 111.3296, -0.3020435571670532], [28.9583, 105.4306, -0.17431041598320007], [38.85611111, 121.5180556, 0.24401503801345825], [23.1323, 113.3208, -0.1919318288564682], [31.7618, 116.478, -0.1802113652229309], [29.7736, 121.633, -0.021359914913773537], [39.8261, 109.9486, -0.008654008619487286], [38.8957, 115.5223, -0.22187478840351105], [32.215, 119.491, 0.060161951929330826], [27.8528, 113.13, -0.24292439222335815], [32.105, 118.907, 0.008342939428985119], [26.0797, 119.268, -0.16630932688713074], [33.975, 116.8008, -0.2105286717414856], [26.6266, 106.6243, -0.1345166712999344], [23.105, 113.433, -0.19329862296581268], [30.3058, 120.348, 0.02541830576956272], [22.9539, 112.0539, -0.18320637941360474], [31.4846, 92.0657, 0.054442256689071655], [31.6928, 118.48, -0.03148447349667549], [27.9939, 120.677, -0.10690268129110336], [34.2713, 108.954, -0.28468960523605347], [41.1953, 123.2, 0.12440464645624161], [34.2749, 108.882, -0.2804712951183319], [30.1819, 120.27, 0.017260931432247162], [22.5211, 113.3769, -0.2066563069820404], [36.864, 118.78, -0.004884445574134588], [21.9667, 108.6236, -0.17801615595817566], [33.3681, 120.1631, 0.11579235643148422], [31.4656, 104.6717, -0.20919999480247498], [37.739, 115.6906, -0.32938888669013977], [36.2126, 113.0886, -0.41497939825057983], [39.5989, 109.8119, -0.014937293715775013], [24.506, 117.7116, -0.18280047178268433], [40.7378, 107.3715, 0.07642336189746857], [34.7187, 113.727, -0.3759765326976776], [30.6872, 104.176, -0.19951613247394562], [27.583, 110.0394, -0.1859705001115799], [31.9438, 117.266, -0.13365106284618378], [38.4928, 112.7003, -0.3312220871448517], [31.3839, 118.4022, -0.03702141344547272], [38.4519, 112.7383, -0.33721765875816345], [26.1092, 119.299, -0.16586846113204956], [34.7745, 113.641, -0.3788469135761261], [46.5888, 131.1572, -0.3419792652130127], [30.4663, 106.6271, -0.22069333493709564], [31.4189, 118.37, -0.03975370526313782], [30.6539, 117.4974, -0.10646526515483856], [26.8576, 100.2143, -0.1023302674293518], [30.6617, 117.4697, -0.10768735408782959], [37.7575, 115.6951, -0.32782304286956787], [23.415, 111.2353, -0.16540272533893585], [28.0167, 120.671, -0.10606231540441513], [30.9222, 117.8078, -0.08624900877475739], [38.9108, 115.4713, -0.22411790490150452], [32.6494, 110.78, -0.3354017436504364], [28.0797, 116.2239, -0.22425486147403717], [34.3017, 107.0708, -0.15069036185741425], [40.1269, 113.2661, -0.10314317047595978], [36.7731, 119.1939, 0.0450236052274704], [47.2988, 123.945, -0.2062010020017624], [28.095, 116.9622, -0.2075403481721878], [26.6946, 119.5001, -0.1565362811088562], [27.8728, 112.8937, -0.24041718244552612], [23.6936, 113.0425, -0.17791996896266937], [36.799, 119.976, 0.139739528298378], [35.4883, 112.8564, -0.4058287739753723], [27.8408, 102.2714, -0.139306902885437], [30.5514, 114.2511, -0.26156213879585266], [42.0228, 121.6722, 0.12394923716783524], [31.172, 120.658, 0.07696796208620071], [32.996, 113.996, -0.3241139054298401], [32.1319, 119.43, 0.055518921464681625], [31.1907, 121.703, 0.06641191244125366], [41.0931, 123.011, 0.1371791660785675], [37.4664, 116.3061, -0.284267395734787], [25.8664, 114.9367, -0.20154841244220734], [32.3878, 119.46, 0.05785677209496498], [35.4234, 119.5198, 0.0537719652056694], [36.5776, 114.5035, -0.41096144914627075], [22.8464, 108.239, -0.15072692930698395], [42.9061, 129.5042, -0.18792477250099182], [30.2352, 115.0625, -0.22363637387752533], [27.8953, 102.2311, -0.1398680955171585], [40.9923, 113.1306, 0.0010637000668793917], [31.85805556, 106.7619444, -0.23789027333259583], [24.441, 98.578, -0.0850977674126625], [41.3283, 123.8436, 0.09063266217708588], [22.7422, 114.5317, -0.20890647172927856], [27.5444, 109.9453, -0.18338190019130707], [25.5811, 100.2171, -0.09025226533412933], [26.53111111, 107.8908333, -0.13584212958812714], [39.5371, 75.9828, -0.5164738893508911], [39.6969, 106.8089, 0.04490577429533005], [35.4178, 119.4641, 0.04779104143381119], [33.38256667, 104.9338889, -0.13997669517993927], [45.6842, 126.6206, -0.201250821352005], [40.5905, 110.0067, 0.018038475885987282], [29.1242, 110.4697, -0.24254487454891205], [30.9892, 112.1969, -0.30701857805252075], [35.272, 113.884, -0.3890737295150757], [41.1933, 80.2956, -0.32426947355270386], [39.8745, 116.434, 0.0028394872788339853], [37.8195, 112.57, -0.3785127103328705], [29.53675, 106.4959, -0.19103866815567017], [43.941, 81.3364, -0.31310030817985535], [31.9108, 119.905, 0.08424579352140427], [27.7758, 115.0586, -0.24617606401443481], [30.9219, 117.8561, -0.08282394707202911], [30.1259, 104.6294, -0.195255309343338], [31.0935, 120.978, 0.07074834406375885], [37.8792, 113.4922, -0.4070265293121338], [26.5747, 107.9783, -0.1372254639863968], [35.235, 113.261, -0.39833107590675354], [24.4072, 111.5622, -0.15512019395828247], [31.9025, 102.2218, -0.1604369878768921], [37.3617, 118.0018, -0.08225291967391968], [43.4569, 87.4651, -0.06582217663526535], [26.5928, 101.5769, -0.11486858129501343], [45.7733, 126.689, -0.2057332992553711], [28.6428, 112.4067, -0.2448042631149292], [34.402, 115.6578, -0.30162665247917175], [45.7677, 131.0032, -0.3108478784561157], [31.1208, 104.4219, -0.205443874001503], [27.7842, 114.3953, -0.2520553469657898], [27.9747, 120.76, -0.10707155615091324], [31.4, 119.46, 0.0488201305270195], [28.6844, 115.931, -0.21180060505867004], [37.161, 122.41, 0.23384203016757965], [27.7297, 109.1916, -0.1758120208978653], [22.0225, 100.8017, -0.14327703416347504], [29.6453, 106.562, -0.19588430225849152], [22.8322, 100.9817, -0.12138666957616806], [44.5462, 129.6386, -0.23725920915603638], [30.65638889, 104.0238889, -0.19667893648147583], [36.1031, 103.631, -0.030537081882357597], [26.2331, 111.6236, -0.17639972269535065], [26.8956, 112.6211, -0.21321891248226166], [41.3047, 123.7308, 0.09649638831615448], [40.8725, 114.904, 0.030895285308361053], [43.8167, 125.25, -0.10388403385877609], [40.9359, 117.963, 0.18438579142093658], [27.9119, 112.9074, -0.24077866971492767], [41.0112, 117.9384, 0.18421174585819244], [32.4611, 119.9219, 0.0915042981505394], [35.5294, 106.7039, -0.06210153549909592], [29.5947, 105.0717, -0.186571404337883], [35.546, 112.8453, -0.40636342763900757], [30.3175, 112.2551, -0.28513848781585693], [39.6679, 118.2185, 0.13413143157958984], [31.737, 119.579, 0.06245749443769455], [50.4269, 124.1186, -0.32662227749824524], [32.6939, 109.0281, -0.31738823652267456], [32.935, 117.3086, -0.14845849573612213], [32.645, 117.0083, -0.16411522030830383], [27.7019, 106.9242, -0.1517074704170227], [30.5494, 114.3006, -0.2603497803211212], [32.0572, 118.749, -0.006710124667733908], [46.6219, 124.8648, -0.19835695624351501], [34.407, 115.6386, -0.3027154803276062], [34.5021, 109.4266, -0.2982100546360016], [26.6761, 118.0966, -0.17342789471149445], [29.8539, 114.2894, -0.2428262084722519], [39.746, 98.509, 0.16591161489486694], [29.5844, 103.7627, -0.17890913784503937], [24.5157, 117.6569, -0.182233527302742], [28.2189, 112.8872, -0.24160060286521912], [36.0783, 111.5531, -0.36849841475486755], [35.5461, 106.6692, -0.06105934455990791], [40.0917, 113.3444, -0.10916941612958908], [29.8906, 121.554, -0.012679178267717361], [31.6861, 118.5058, -0.02910570241510868], [29.8208, 121.56, -0.01713188737630844], [34.3474, 108.935, -0.27970683574676514], [28.1442, 112.9956, -0.24270318448543549], [37.7019, 112.7549, -0.392800509929657], [38.9467, 100.4686, 0.1402500718832016], [30.4183, 120.301, 0.03317759186029434], [23.7208, 109.2131, -0.13626548647880554], [31.8711, 106.7389, -0.23669113218784332], [28.2403, 117.0281, -0.20045106112957], [23.0944, 109.6014, -0.1571054905653], [35.248889, 115.42277, -0.3398497700691223], [26.0931, 119.58, -0.16577722132205963], [22.8225, 108.321, -0.15236222743988037], [23.0672, 109.6042, -0.1580139696598053], [27.9958, 113.1817, -0.24420811235904694], [30.7856, 106.1064, -0.21091106534004211], [30.8064, 106.056, -0.20952662825584412], [27.2582, 111.4908, -0.20491062104701996], [43.9404, 81.2815, -0.3154248893260956], [34.5885, 119.176, 0.01283679623156786], [38.4975, 106.2328, 0.01848643831908703], [41.9228, 123.3783, 0.07446161657571793], [33.6128, 114.6613, -0.3221299648284912], [34.8731, 108.9589, -0.2499995082616806], [32.0092, 118.737, -0.007682898547500372], [39.2474, 117.7918, 0.053072795271873474], [25.7759, 113.0348, -0.1860731840133667], [29.9834, 103.0109, -0.17776721715927124], [39.9934, 116.315, 0.008357029408216476], [34.3956, 108.7197, -0.2644980847835541], [27.8978, 102.2625, -0.14013507962226868], [31.3178, 118.3708, -0.03965148702263832], [46.7975, 130.3258, -0.32757073640823364], [26.2625, 117.6211, -0.1730760931968689], [31.5848, 120.354, 0.0913226455450058], [30.2028, 115.0767, -0.22230662405490875], [29.7292, 115.988, -0.18083982169628143], [21.6669, 110.9067, -0.2127404510974884], [30.1142, 104.6469, -0.19523829221725464], [37.809, 120.773, 0.22391009330749512], [27.8317, 99.7056, -0.10307285934686661], [30.9742, 118.7386, -0.007219785358756781], [34.864, 117.5564, -0.1581854522228241], [32.1883, 119.68, 0.0735650286078453], [45.305, 130.9817, -0.2950552701950073], [49.1577, 119.7512, -0.20756232738494873], [30.3055, 112.2887, -0.2844442129135132], [36.5458, 104.1731, -0.01704801246523857], [40.6511, 122.215, 0.18498942255973816], [44.2967, 86.0497, -0.14684852957725525], [34.2911, 117.244, -0.18120962381362915], [28.7989, 104.6789, -0.16760118305683136], [37.4294, 122.1206, 0.23913197219371796], [23.7369, 109.2317, -0.1363416314125061], [36.1417, 106.2319, -0.0309539046138525], [31.7386, 117.278, -0.12834703922271729], [48.4658, 129.4942, -0.36472001671791077], [45.2924, 130.962, -0.2941165268421173], [40.715, 120.8478, 0.20723311603069305], [33.3947, 120.225, 0.12023676931858063], [40.6575, 109.8104, 0.024314047768712044], [38.86388889, 121.625, 0.24271763861179352], [35.0573, 118.3418, -0.07531891763210297], [41.7775, 123.478, 0.08005841076374054], [31.2058, 107.4611, -0.25544440746307373], [28.6047, 112.3347, -0.24344968795776367], [41.2736, 123.1761, 0.12084268033504486], [36.0464, 103.831, -0.03082728572189808], [34.3274, 109.043, -0.28676527738571167], [37.9648, 106.1532, 0.0102815767750144], [36.1851, 120.3905, 0.15943492949008942], [36.6028, 109.4761, -0.16803035140037537], [29.5467, 103.7705, -0.17828868329524994], [50.4217, 124.1303, -0.3266434371471405], [22.7019, 110.1106, -0.17257820069789886], [31.955, 119.18, 0.034603919833898544], [39.1082, 117.237, -0.01647714525461197], [24.2654, 116.1248, -0.18373775482177734], [30.2756, 118.1371, -0.06790599972009659], [33.567, 114.056, -0.337196946144104], [27.8014, 114.3806, -0.25237977504730225], [29.36028, 104.7778, -0.18087881803512573], [26.57098, 101.68912, -0.11550065129995346], [23.6706, 116.6447, -0.19744333624839783], [32.1142, 112.1825, -0.32707294821739197], [41.8336, 123.542, 0.0740232765674591], [30.2099, 115.0264, -0.2247026264667511], [34.3528, 107.3906, -0.16945379972457886], [25.3167, 110.4144, -0.14116214215755463], [27.9164, 112.4876, -0.2358965426683426], [39.1067, 117.1941, -0.02081635221838951], [25.442, 119.0156, -0.17491619288921356], [40.8115, 114.8814, 0.022648051381111145], [29.9919, 120.605, 0.0052801379933953285], [23.1572, 112.885, -0.18730099499225616], [37.9097, 114.3541, -0.40396735072135925], [34.5004, 109.5049, -0.301774799823761], [33.737, 113.182, -0.3577073812484741], [38.44139, 106.2275, 0.017632193863391876], [27.8381, 113.143, -0.24305742979049683], [31.2703, 120.613, 0.08162004500627518], [22.3708, 107.3701, -0.1543709933757782], [36.1942, 117.1436, -0.21181482076644897], [26.6272, 118.1756, -0.17221227288246155], [33.1842, 106.9893, -0.2095697671175003], [26.5697, 106.7164, -0.13364648818969727], [29.5953, 105.0331, -0.1864704191684723], [39.6719, 106.8219, 0.043981824070215225], [31.8934, 102.2402, -0.16074064373970032], [30.1506, 104.6356, -0.19585351645946503], [36.6739, 117.114, -0.21089577674865723], [30.0475, 101.9603, -0.16478203237056732], [40.6532, 109.8756, 0.022886130958795547], [23.01277778, 113.7944444, -0.1975366175174713], [30.8244, 120.07, 0.054250504821538925], [45.6033, 84.8861, -0.2295570969581604], [22.8693, 112.844, -0.19352152943611145], [36.1758, 117.1081, -0.21597471833229065], [33.8399, 115.8067, -0.27508142590522766], [43.768, 87.6046, -0.07165113091468811], [22.2294, 113.495, -0.21855254471302032], [26.8919, 112.6006, -0.21291279792785645], [27.8036, 114.3442, -0.2524520754814148], [45.61, 126.615, -0.19863282144069672], [33.965, 118.283, -0.07557588070631027], [31.56, 120.294, 0.08884920924901962], [34.7545, 113.681, -0.3777061998844147], [30.2819, 109.4689, -0.2715018093585968], [32.6028, 116.8556, -0.17378343641757965], [43.8667, 125.417, -0.11049684137105942], [22.8172, 114.3244, -0.20507527887821198], [29.2786, 117.1983, -0.15821729600429535], [35.259, 113.1992, -0.3998354375362396], [41.8828, 123.9169, 0.05506598576903343], [32.9444, 117.3575, -0.14486639201641083], [27.9883, 116.3553, -0.2249828726053238], [38.843, 105.6975, 0.032486606389284134], [39.3673, 112.4279, -0.1993749886751175], [34.5667, 117.732, -0.13379070162773132], [41.1636, 80.2828, -0.3246857225894928], [33.575, 119.007, -0.0013196285581216216], [24.9624, 102.625, -0.10569588094949722], [32.0144, 118.777, -0.0038660147693008184], [43.84, 125.2786, -0.10568081587553024], [34.3617, 108.7233, -0.2666640281677246], [39.9419, 119.5369, 0.2221262902021408], [38.2839, 109.7289, -0.08317089825868607], [39.643, 118.144, 0.12477243691682816], [31.381, 120.999, 0.08614687621593475], [38.9194, 117.157, -0.048460546880960464], [31.882, 120.55, 0.10462278872728348], [32.2786, 118.3244, -0.052474766969680786], [33.0323, 107.007, -0.21649788320064545], [22.7906, 108.439, -0.15462137758731842], [38.1398, 114.5019, -0.38230153918266296], [44.561, 129.61, -0.23698022961616516], [30.8388, 106.1087, -0.21173638105392456], [31.2472, 120.561, 0.08055059611797333], [29.8264, 106.424, -0.19833700358867645], [30.9447, 118.7581, -0.006033534649759531], [41.1442, 123.0485, 0.13300387561321259], [22.4137, 107.3476, -0.15290123224258423], [27.6178, 113.865, -0.2464991807937622], [24.4175, 111.5269, -0.15465953946113586], [43.7256, 126.6772, -0.13831284642219543], [22.8561, 108.316, -0.1512189358472824], [37.177, 119.941, 0.14977404475212097], [26.2378, 117.6028, -0.17304202914237976], [43.9167, 125.323, -0.10999651253223419], [36.6377, 117.9544, -0.11258716881275177], [23.2783, 113.568, -0.19023127853870392], [24.8978, 118.5972, -0.1811438351869583], [32.9673, 117.3536, -0.14561903476715088], [34.7745, 117.5852, -0.15351420640945435], [25.2178, 110.2869, -0.13902877271175385], [43.8358, 126.5844, -0.13961467146873474], [36.1855, 113.0844444, -0.41482117772102356], [24.6967, 108.1009, -0.12072224915027618], [30.4519, 114.8858, -0.23830486834049225], [31.2036, 121.478, 0.07046622782945633], [24.3702, 102.5389, -0.10198135673999786], [37.8561, 113.5922, -0.40965238213539124], [34.3708, 107.1586, -0.15158680081367493], [34.3547, 107.1431, -0.15172576904296875], [31.238, 121.4, 0.07352054864168167], [41.9086, 123.5953, 0.06658126413822174], [33.0014, 97.0, 0.03160431981086731], [41.7561, 123.535, 0.07908220589160919], [23.9011, 106.6103, -0.1154293343424797], [36.7339, 119.0841, 0.029635267332196236], [36.0875, 111.5025, -0.3661476671695709], [25.8333, 114.9322, -0.20118556916713715], [31.89708, 121.1518, 0.10942155122756958], [23.8982, 100.0782, -0.09492412209510803], [33.3261, 105.0822, -0.14355331659317017], [29.7128, 118.3057, -0.06858785450458527], [44.0114, 87.2997, -0.09125339239835739], [45.7258, 126.646, -0.20320424437522888], [28.4569, 118.0058, -0.15329845249652863], [22.5908, 114.263, -0.21195745468139648], [23.7233, 114.6892, -0.18882344663143158], [35.0147, 110.9956, -0.3509982228279114], [38.8394, 117.457, -0.022525416687130928], [30.7946, 120.744, 0.05532042682170868], [22.735, 108.328, -0.15501727163791656], [27.3125, 105.2864, -0.13883337378501892], [32.6389, 110.7258, -0.335247278213501], [37.4489, 116.3189, -0.2836688458919525], [23.08, 114.4053, -0.1996442973613739], [28.6459, 121.273, -0.07831569015979767], [39.7153, 76.1861, -0.5067971348762512], [30.4576, 106.6303, -0.2205508053302765], [33.6284, 116.9677, -0.18861456215381622], [22.7833, 108.244, -0.15277057886123657], [22.5811, 113.074, -0.20264948904514313], [37.0967, 114.4821, -0.41896435618400574], [30.6197, 114.2836, -0.2634584903717041], [44.3336, 84.8983, -0.1872115135192871], [36.1542, 113.1097, -0.41497957706451416], [30.2456, 120.127, 0.021017322316765785], [29.6219, 106.65, -0.19694599509239197], [38.8343, 105.6775, 0.03254331648349762], [24.428, 98.5842, -0.08529357612133026], [25.0661, 117.0256, -0.17092959582805634], [38.5247, 102.1878, 0.07871032506227493], [28.5819, 112.3744, -0.24320656061172485], [31.656, 120.734, 0.09872302412986755], [36.3083, 120.1964, 0.14661891758441925], [24.9617, 118.6108, -0.17967909574508667], [41.0228, 123.1289, 0.13656668365001678], [31.1278, 97.1804, -0.02091396227478981], [36.792, 119.952, 0.13696682453155518], [23.4168, 103.386, -0.11469284445047379], [42.2725, 118.9572, 0.14573335647583008], [29.5983, 106.296, -0.18995657563209534], [36.087, 114.358, -0.4041846692562103], [36.283, 120.008, 0.1273370087146759], [40.1461, 124.3933, 0.1220443993806839], [25.0836, 102.728, -0.10694191604852676], [41.8472, 123.428, 0.07771218568086624], [29.9972, 101.9533, -0.16433782875537872], [27.8336, 113.251, -0.24437952041625977], [30.4551, 106.6388, -0.22071902453899384], [41.1556, 122.0247, 0.16217245161533356], [26.5689, 106.6971, -0.13363002240657806], [39.9522, 116.434, 0.012490786612033844], [41.7089, 123.439, 0.08583557605743408], [37.9358, 102.6469, 0.04149658977985382], [24.7121, 108.2134, -0.12123735249042511], [31.7133, 118.6439, -0.015710605308413506], [40.1194, 124.3678, 0.1243460401892662], [38.817, 106.3394, 0.023794587701559067], [35.303, 113.883, -0.3900529742240906], [37.4658, 118.5019, -0.009398631751537323], [30.7636, 106.0642, -0.2092139720916748], [32.4535, 105.8945, -0.1922949105501175], [38.5061, 102.1708, 0.07838975638151169], [35.5102, 102.0199, -0.04034466668963432], [38.8632, 115.493, -0.22917258739471436], [31.87888889, 106.7513889, -0.23741349577903748], [25.8481, 114.9461, -0.20135553181171417], [31.92, 120.268, 0.09855348616838455], [26.585, 101.7169, -0.11587592959403992], [36.2092, 117.7181, -0.14538301527500153], [43.8228, 126.4978, -0.13700148463249207], [35.0896, 118.4023, -0.06946193426847458], [28.76389, 104.6417, -0.1665567308664322], [22.7633, 100.98, -0.12334262579679489], [28.7867, 104.6061, -0.1669606864452362], [42.9559, 89.1673, 0.00822125282138586], [31.7039, 119.935, 0.08044300228357315], [23.1422, 113.235, -0.19108466804027557], [30.9075, 113.942, -0.27945616841316223], [37.5436, 121.3181, 0.2344549298286438], [31.2864, 120.628, 0.08236172795295715], [37.9723, 106.196, 0.010454870760440826], [27.0983, 115.0075, -0.2344007045030594], [34.5101, 109.5293, -0.30252519249916077], [24.81805556, 118.1569444, -0.17782436311244965], [36.6489, 116.943, -0.23024646937847137], [25.8226, 113.0116, -0.18672119081020355], [36.0756, 103.712, -0.030783480033278465], [28.2642, 117.0564, -0.19878242909908295], [31.453, 121.115, 0.08869754523038864], [40.7514, 120.8392, 0.2056926190853119], [36.2403, 120.4001, 0.16131219267845154], [29.8686, 114.3372, -0.24179638922214508], [22.75, 114.085, -0.20525427162647247], [40.8062, 111.7277, -0.007692907005548477], [25.1081, 99.1678, -0.07691546529531479], [25.2697, 110.2819, -0.1393696665763855], [28.6969, 115.973, -0.21009650826454163], [28.2558, 109.6414, -0.20112958550453186], [39.1495, 117.3916, 0.0032192470971494913], [33.9461, 116.7844, -0.21099771559238434], [28.3169, 109.7325, -0.20430687069892883], [46.8267, 130.3961, -0.33032670617103577], [37.5136, 111.1297, -0.2871414124965668], [40.1438, 116.72, 0.05597043037414551], [29.8211, 114.3231, -0.24156558513641357], [47.3227, 123.9483, -0.2070707380771637], [29.2956, 117.2461, -0.15553836524486542], [29.3864, 117.3097, -0.14870786666870117], [28.6064, 115.9083, -0.21525757014751434], [36.061, 114.483, -0.39928293228149414], [28.4622, 117.9511, -0.15566471219062805], [29.4892, 106.634, -0.19230565428733826], [34.4714, 100.2561, -0.038320206105709076], [39.6295, 118.1997, 0.12867021560668945], [36.1942, 117.0881, -0.21814092993736267], [41.2553, 123.15, 0.12295413017272949], [30.9285, 113.9153, -0.28058597445487976], [21.8586, 111.9786, -0.21728485822677612], [24.299, 109.4221, -0.13448640704154968], [27.7914, 114.3703, -0.25220540165901184], [39.2133, 117.1837, -0.010005912743508816], [29.6816, 115.9872, -0.18201446533203125], [26.9089, 112.5328, -0.2125033438205719], [44.9079, 82.0485, -0.3052990734577179], [36.1912, 113.1569, -0.41568928956985474], [35.7067, 107.6364, -0.08977307379245758], [29.6292, 91.0834, -0.014731168746948242], [36.1939, 113.0972, -0.41501492261886597], [34.8019, 113.675, -0.3791252672672272], [40.9161, 117.9664, 0.18423637747764587], [24.3694, 102.5778, -0.10222987085580826], [23.1331, 113.26, -0.191498801112175], [37.1013, 79.9117, -0.3490452468395233], [41.7192, 86.2022, -0.06486830860376358], [26.2708, 117.6353, -0.1730547994375229], [28.9404, 118.871, -0.08974827080965042], [23.7106, 113.0208, -0.17736098170280457], [36.2403, 120.6659, 0.1812736988067627], [22.7267, 114.24, -0.2071344554424286], [34.7975, 114.3733, -0.36438480019569397], [40.0181, 119.7624, 0.22800782322883606], [40.5546, 110.0377, 0.01607152260839939], [28.4586, 119.93, -0.09748519957065582], [36.67, 116.93, -0.23140724003314972], [34.7781, 114.3389, -0.3648889362812042], [30.89556, 120.0875, 0.05803758651018143], [41.7511, 86.1461, -0.06778697669506073], [47.8515, 88.1267, -0.23840636014938354], [24.9117, 118.5819, -0.18055130541324615], [23.5486, 116.3242, -0.19837594032287598], [37.8694, 113.5689, -0.4086757302284241], [27.7044, 111.9892, -0.22406984865665436], [40.1114, 113.2803, -0.10567865520715714], [39.3606, 112.4549, -0.20206128060817719], [45.6289, 122.8444, -0.12295176088809967], [27.6231, 113.8447, -0.24656888842582703], [28.4514, 119.914, -0.09810053557157516], [29.6475, 91.0874, -0.014183380641043186], [34.2303, 108.883, -0.28269731998443604], [29.4251, 113.1493, -0.2551914155483246], [38.3344, 109.7414, -0.08177076280117035], [43.8711, 87.5525, -0.07717958092689514], [38.9389, 100.4497, 0.14040769636631012], [37.68277778, 112.7194444, -0.39218130707740784], [39.1292, 106.7096, 0.028402550145983696], [34.1781, 117.1694, -0.1851288229227066], [46.0756, 121.9462, -0.12271017581224442], [37.85, 113.5158, -0.40891653299331665], [31.7712, 116.5661, -0.17543570697307587], [39.3514, 112.44, -0.2027074545621872], [27.6486, 106.8906, -0.1511535793542862], [41.1219, 121.2008, 0.18177084624767303], [44.5782, 129.6115, -0.23750150203704834], [29.709, 106.452, -0.19552898406982422], [23.06, 113.7480556, -0.19628006219863892], [23.1886, 112.863, -0.18651852011680603], [41.7347, 123.2444, 0.09164079278707504], [21.2567, 110.4558, -0.22154782712459564], [27.3361, 103.7225, -0.1329544186592102], [37.9311, 102.6219, 0.041866570711135864], [33.6406, 114.6369, -0.3237140476703644], [31.8572, 117.25, -0.13266150653362274], [35.5975, 104.6169, -0.039453376084566116], [42.8947, 125.1358, -0.053723063319921494], [29.2313, 91.7608, -0.007688555400818586], [39.5343, 116.7464, -0.013488881289958954], [40.7094, 122.2703, 0.18048542737960815], [43.1594, 124.3711, -0.041845742613077164], [30.6414, 114.2131, -0.26587480306625366], [36.44, 120.61, 0.18264910578727722], [29.4892, 106.468, -0.18915536999702454], [28.9703, 111.6975, -0.24943161010742188], [38.0108, 112.434, -0.3571102023124695], [31.4867, 120.269, 0.08570066839456558], [34.429, 115.6558, -0.30262094736099243], [38.01777778, 114.5330556, -0.39072006940841675], [44.3075, 86.0697, -0.14652693271636963], [27.9647, 116.385, -0.22472922503948212], [30.2043, 114.8949, -0.23032240569591522], [29.3678, 113.1772, -0.2538193166255951], [29.1128, 119.6533, -0.05360021814703941], [25.9118, 114.9064, -0.20203587412834167], [26.0392, 119.303, -0.16690705716609955], [23.1569, 113.281, -0.1911013275384903], [45.5422, 126.979, -0.20444194972515106], [37.7394, 112.5583, -0.3820899724960327], [28.6542, 121.419, -0.07879519462585449], [26.5939, 104.89, -0.12172555923461914], [41.8625, 124.0383, 0.05156916007399559], [35.7511, 114.2956, -0.395748496055603], [31.7586, 119.996, 0.08419127017259598], [38.8516, 105.724, 0.03233001381158829], [36.6868, 117.0684, -0.21582812070846558], [26.0753, 119.315, -0.16635529696941376], [39.9716, 116.473, 0.01774851232767105], [46.7432, 82.9994, -0.3263082206249237], [32.41361, 119.458, 0.057569779455661774], [38.8416, 115.4612, -0.2351117730140686], [30.5489, 117.0486, -0.12833744287490845], [27.4948, 114.0944, -0.24427439272403717], [27.8867, 113.095, -0.24265417456626892], [23.0528, 112.471, -0.18508370220661163], [26.8733, 112.6197, -0.21265862882137299], [35.4894, 112.8664, -0.40592363476753235], [47.2753, 130.261, -0.3418107330799103], [23.8844, 106.6527, -0.11571315675973892], [40.7866, 111.551, -0.00551378121599555], [43.6267, 122.2603, -0.007876291871070862], [36.10139, 111.505, -0.36613649129867554], [28.56, 112.3439, -0.24241453409194946], [45.7319, 126.685, -0.2042570412158966], [40.0844, 113.2711, -0.10982102900743484], [37.4014, 121.5992, 0.2379731833934784], [30.6133, 105.68, -0.20173971354961395], [30.7478, 120.726, 0.052496667951345444], [28.1178, 112.9844, -0.2424612045288086], [28.7994, 115.742, -0.21188750863075256], [25.067, 102.681, -0.1065300703048706], [32.0005, 120.86, 0.11246902495622635], [26.5017, 101.7453, -0.1150851920247078], [34.5814, 105.7281, -0.07991257309913635], [43.91, 125.287, -0.10876882076263428], [46.3991, 124.8847, -0.19046327471733093], [31.8531, 106.7594, -0.23771485686302185], [33.9528, 118.293, -0.07455052435398102], [45.6175, 122.8211, -0.12206676602363586], [19.9507, 110.576, -0.2541978061199188], [23.4792, 111.2897, -0.16434039175510406], [32.1383, 114.0614, -0.30272194743156433], [30.8023, 106.0789, -0.21022717654705048], [34.2324, 108.94, -0.2857961356639862], [36.11, 114.286, -0.4070894718170166], [31.96, 120.913, 0.11145652085542679], [32.8928, 115.8275, -0.2461499273777008], [31.7694, 120.0469, 0.08644451946020126], [31.6842, 120.288, 0.09266332536935806], [47.3636, 123.9305, -0.20816223323345184], [28.7442, 115.813, -0.21219974756240845], [23.2536, 116.4019, -0.20538774132728577], [23.4714, 116.7519, -0.2027752548456192], [34.6511, 112.3939, -0.3841646611690521], [35.0622, 118.2939, -0.07997693121433258], [28.6839, 115.8886, -0.2129504233598709], [41.8469, 123.81, 0.061706945300102234], [24.3289, 116.1278, -0.18313467502593994], [34.3497, 107.2058, -0.1565147340297699], [42.0352, 119.2654, 0.15649376809597015], [31.0386, 112.2211, -0.30796921253204346], [40.0758, 113.2994, -0.11137641966342926], [36.61763, 114.5129, -0.4111589789390564], [29.4822, 106.364, -0.1876508891582489], [35.94, 104.148, -0.0335322842001915], [27.2272, 111.4328, -0.2032284140586853], [25.1328, 99.1711, -0.076653853058815], [40.6288, 109.8654, 0.02215380035340786]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#fff200&quot;, &quot;0.05&quot;: &quot;#ffca00&quot;, &quot;0.1&quot;: &quot;#ff7900&quot;, &quot;0.15&quot;: &quot;#ff5000&quot;, &quot;0.2&quot;: &quot;#ff2800&quot;, &quot;0.25&quot;: &quot;#ff0000&quot;, &quot;0.3&quot;: &quot;#ff0000&quot;, &quot;0.35&quot;: &quot;#ff0000&quot;, &quot;0.4&quot;: &quot;#ff0000&quot;, &quot;0.45&quot;: &quot;#ff0000&quot;, &quot;0.5&quot;: &quot;#ff0000&quot;, &quot;0.55&quot;: &quot;#ff0000&quot;, &quot;0.6&quot;: &quot;#ff0000&quot;, &quot;0.65&quot;: &quot;#ff0000&quot;, &quot;0.7&quot;: &quot;#ff0000&quot;, &quot;0.75&quot;: &quot;#ff0000&quot;, &quot;0.8&quot;: &quot;#ff0000&quot;, &quot;0.85&quot;: &quot;#ff0000&quot;, &quot;0.9&quot;: &quot;#ff0000&quot;, &quot;0.95&quot;: &quot;#ff0000&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_a9eaf4452d5f5bab7fdc2d3e537be765.addTo(map_8fd76424b4eae6bd9010300a0469c3df);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13b9d9ec350>\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('coef_d10', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"偏置项\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"id\": \"16F4FFBA617D46598A7569CCAEDC4F8E\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_50e90118e4c026ed133951354ffcf946 {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_50e90118e4c026ed133951354ffcf946&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_50e90118e4c026ed133951354ffcf946 = L.map(\\n\",\n       \"                &quot;map_50e90118e4c026ed133951354ffcf946&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_c48ddfffb494c138e6bf14ea4a50d88c = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_c48ddfffb494c138e6bf14ea4a50d88c.addTo(map_50e90118e4c026ed133951354ffcf946);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    var color_map_78ca2cad6de62a24da091a7f4d4a50d1 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_78ca2cad6de62a24da091a7f4d4a50d1.color = d3.scale.threshold()\\n\",\n       \"              .domain([-17.17056655883789, -16.99334716796875, -16.816129684448242, -16.6389102935791, -16.461692810058594, -16.284473419189453, -16.107254028320312, -15.930036544799805, -15.75281810760498, -15.575599670410156, -15.398380279541016, -15.221161842346191, -15.043943405151367, -14.866724967956543, -14.689506530761719, -14.512287139892578, -14.335068702697754, -14.15785026550293, -13.980631828308105, -13.803413391113281, -13.626194953918457, -13.448975563049316, -13.271757125854492, -13.094538688659668, -12.917320251464844, -12.74010181427002, -12.562883377075195, -12.385663986206055, -12.20844554901123, -12.031227111816406, -11.854008674621582, -11.676790237426758, -11.499570846557617, -11.322352409362793, -11.145133972167969, -10.967915534973145, -10.79069709777832, -10.61347770690918, -10.436260223388672, -10.259040832519531, -10.081823348999023, -9.904603958129883, -9.727384567260742, -9.550167083740234, -9.372947692871094, -9.19572925567627, -9.018510818481445, -8.841291427612305, -8.66407299041748, -8.486855506896973, -8.309637069702148, -8.132417678833008, -7.955199241638184, -7.777980804443359, -7.600762367248535, -7.4235429763793945, -7.24632453918457, -7.069106101989746, -6.8918867111206055, -6.714669227600098, -6.537450790405273, -6.360232353210449, -6.183012962341309, -6.005794525146484, -5.82857608795166, -5.651357650756836, -5.474138259887695, -5.296919822692871, -5.119701385498047, -4.942481994628906, -4.765264511108398, -4.588046073913574, -4.41082763671875, -4.233608245849609, -4.056389808654785, -3.879171371459961, -3.7019529342651367, -3.524733543395996, -3.347515106201172, -3.1702966690063477, -2.99307918548584, -2.815859794616699, -2.638641357421875, -2.461422920227051, -2.28420352935791, -2.106985092163086, -1.9297666549682617, -1.7525482177734375, -1.5753288269042969, -1.3981103897094727, -1.2208919525146484, -1.0436744689941406, -0.866455078125, -0.6892375946044922, -0.5120162963867188, -0.33479881286621094, -0.1575794219970703, 0.0196380615234375, 0.1968555450439453, 0.37407493591308594, 0.5512924194335938, 0.7285137176513672, 0.905731201171875, 1.0829505920410156, 1.2601680755615234, 1.437387466430664, 1.6146049499511719, 1.7918224334716797, 1.9690418243408203, 2.146261215209961, 2.3234806060791016, 2.5006980895996094, 2.67791748046875, 2.855134963989258, 3.0323543548583984, 3.2095718383789062, 3.3867931365966797, 3.5640106201171875, 3.7412281036376953, 3.918447494506836, 4.095664978027344, 4.272884368896484, 4.450101852416992, 4.627321243286133, 4.804540634155273, 4.981760025024414, 5.158977508544922, 5.3361968994140625, 5.51341438293457, 5.690631866455078, 5.867851257324219, 6.045070648193359, 6.2222900390625, 6.399507522583008, 6.576726913452148, 6.753944396972656, 6.931163787841797, 7.108381271362305, 7.285602569580078, 7.462820053100586, 7.640037536621094, 7.817256927490234, 7.994474411010742, 8.171693801879883, 8.34891128540039, 8.526130676269531, 8.703350067138672, 8.880569458007812, 9.05778694152832, 9.235006332397461, 9.412223815917969, 9.589441299438477, 9.766660690307617, 9.943880081176758, 10.121099472045898, 10.298316955566406, 10.475536346435547, 10.652753829956055, 10.829973220825195, 11.007190704345703, 11.184408187866211, 11.361629486083984, 11.538846969604492, 11.716066360473633, 11.89328384399414, 12.070503234863281, 12.247720718383789, 12.42494010925293, 12.60215950012207, 12.779378890991211, 12.956596374511719, 13.133813858032227, 13.311033248901367, 13.488250732421875, 13.665470123291016, 13.842687606811523, 14.019908905029297, 14.197126388549805, 14.374345779418945, 14.551563262939453, 14.728782653808594, 14.906002044677734, 15.08321762084961, 15.26043701171875, 15.43765640258789, 15.614875793457031, 15.792091369628906, 15.969310760498047, 16.146533966064453, 16.323749542236328, 16.50096893310547, 16.678184509277344, 16.85540771484375, 17.032623291015625, 17.209842681884766, 17.387062072753906, 17.56427764892578, 17.741500854492188, 17.918716430664062, 18.095935821533203, 18.273151397705078, 18.450374603271484, 18.627593994140625, 18.8048095703125, 18.98202896118164, 19.159244537353516, 19.336467742919922, 19.513683319091797, 19.690902709960938, 19.868118286132812, 20.04534149169922, 20.22256088256836, 20.399776458740234, 20.576995849609375, 20.75421142578125, 20.931434631347656, 21.10865020751953, 21.285869598388672, 21.463088989257812, 21.640308380126953, 21.817527770996094, 21.99474334716797, 22.17196273803711, 22.34918212890625, 22.52640151977539, 22.70362091064453, 22.880836486816406, 23.058055877685547, 23.235275268554688, 23.412494659423828, 23.589710235595703, 23.766929626464844, 23.94415283203125, 24.121368408203125, 24.298587799072266, 24.47580337524414, 24.65302276611328, 24.830242156982422, 25.007461547851562, 25.184680938720703, 25.361896514892578, 25.539119720458984, 25.71633529663086, 25.8935546875, 26.070770263671875, 26.24799346923828, 26.425209045410156, 26.602428436279297, 26.779647827148438, 26.956863403320312, 27.13408660888672, 27.311302185058594, 27.488521575927734, 27.66573715209961, 27.842960357666016, 28.020179748535156, 28.19739532470703, 28.374614715576172, 28.551830291748047, 28.729053497314453, 28.906269073486328, 29.08348846435547, 29.26070785522461, 29.43792724609375, 29.61514663696289, 29.792362213134766, 29.969581604003906, 30.14679718017578, 30.324020385742188, 30.501239776611328, 30.678455352783203, 30.855674743652344, 31.032894134521484, 31.210113525390625, 31.3873291015625, 31.56454849243164, 31.741771697998047, 31.918987274169922, 32.09620666503906, 32.27342224121094, 32.45064163208008, 32.62786102294922, 32.80508041381836, 32.982295989990234, 33.159515380859375, 33.33673858642578, 33.513954162597656, 33.6911735534668, 33.86838912963867, 34.04560852050781, 34.22282791137695, 34.400047302246094, 34.577266693115234, 34.75448226928711, 34.931705474853516, 35.10892105102539, 35.28614044189453, 35.463356018066406, 35.64057922363281, 35.81779861450195, 35.99501419067383, 36.17223358154297, 36.349449157714844, 36.52667236328125, 36.703887939453125, 36.881107330322266, 37.058326721191406, 37.23554611206055, 37.41276550292969, 37.58998107910156, 37.7672004699707, 37.94441604614258, 38.121639251708984, 38.29885482788086, 38.47607421875, 38.65329360961914, 38.83051300048828, 39.00773239135742, 39.1849479675293, 39.36216735839844, 39.53938293457031, 39.71660614013672, 39.89382553100586, 40.071041107177734, 40.248260498046875, 40.425479888916016, 40.602699279785156, 40.77991485595703, 40.95713424682617, 41.13435745239258, 41.31157302856445, 41.488792419433594, 41.66600799560547, 41.84322738647461, 42.02044677734375, 42.19766616821289, 42.37488555908203, 42.552101135253906, 42.72932434082031, 42.90653991699219, 43.08375930786133, 43.2609748840332, 43.438194274902344, 43.615413665771484, 43.792633056640625, 43.969852447509766, 44.14706802368164, 44.32429122924805, 44.50150680541992, 44.67872619628906, 44.85594177246094, 45.033164978027344, 45.210384368896484, 45.38759994506836, 45.5648193359375, 45.742034912109375, 45.91925811767578, 46.096473693847656, 46.2736930847168, 46.45091247558594, 46.62813186645508, 46.80535125732422, 46.98257064819336, 47.159786224365234, 47.33700180053711, 47.514225006103516, 47.69144058227539, 47.8686637878418, 48.04587936401367, 48.22310256958008, 48.40031814575195, 48.57754135131836, 48.7547492980957, 48.93197250366211, 49.109188079833984, 49.28641128540039, 49.4636344909668, 49.64084243774414, 49.81806564331055, 49.99528121948242, 50.17250442504883, 50.349727630615234, 50.52693557739258, 50.704158782958984, 50.88138198852539, 51.058597564697266, 51.23581314086914, 51.413028717041016, 51.59025192260742, 51.76747512817383, 51.9446907043457, 52.12190628051758, 52.29912185668945, 52.47634506225586, 52.653568267822266, 52.83077621459961, 53.007999420166016, 53.18521499633789, 53.3624382019043, 53.5396614074707, 53.71686935424805, 53.89409255981445, 54.07131576538086, 54.248531341552734, 54.42575454711914, 54.602962493896484, 54.78018569946289, 54.9574089050293, 55.13462448120117, 55.31184005737305, 55.48905563354492, 55.66627883911133, 55.843502044677734, 56.02071762084961, 56.197933197021484, 56.37515640258789, 56.552371978759766, 56.72959518432617, 56.906803131103516, 57.08402633666992, 57.26124954223633, 57.4384651184082, 57.61568832397461, 57.79289627075195, 57.97011947631836, 58.147342681884766, 58.32455825805664, 58.50178146362305, 58.67898941040039, 58.8562126159668, 59.0334358215332, 59.21065139770508, 59.38786697387695, 59.56509017944336, 59.742305755615234, 59.91952896118164, 60.096744537353516, 60.27396011352539, 60.4511833190918, 60.62839889526367, 60.80562210083008, 60.98283767700195, 61.16005325317383, 61.337276458740234, 61.51449203491211, 61.691715240478516, 61.86893081665039, 62.046146392822266, 62.22336959838867, 62.40058517456055, 62.57780838012695, 62.75502395629883, 62.9322395324707, 63.10946273803711, 63.286678314208984, 63.46389389038086, 63.641117095947266, 63.81833267211914, 63.99555587768555, 64.17277526855469, 64.34999084472656, 64.52720642089844, 64.70442199707031, 64.88165283203125, 65.05886840820312, 65.236083984375, 65.41329956054688, 65.59051513671875, 65.76774597167969, 65.94496154785156, 66.12217712402344, 66.29939270019531, 66.47660827636719, 66.65383911132812, 66.8310546875, 67.00827026367188, 67.18548583984375, 67.36271667480469, 67.53993225097656, 67.71714782714844, 67.89436340332031, 68.07157897949219, 68.24880981445312, 68.42601013183594, 68.60324096679688, 68.78045654296875, 68.95767211914062, 69.13490295410156, 69.31210327148438, 69.48933410644531, 69.66654968261719, 69.84376525878906, 70.02098083496094, 70.19819641113281, 70.37542724609375, 70.55264282226562, 70.7298583984375, 70.90707397460938, 71.08428955078125, 71.26152038574219])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_78ca2cad6de62a24da091a7f4d4a50d1.x = d3.scale.linear()\\n\",\n       \"              .domain([-17.17056655883789, 71.26152038574219])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_78ca2cad6de62a24da091a7f4d4a50d1.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_78ca2cad6de62a24da091a7f4d4a50d1.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_78ca2cad6de62a24da091a7f4d4a50d1.legend.addTo(map_50e90118e4c026ed133951354ffcf946);\\n\",\n       \"\\n\",\n       \"    color_map_78ca2cad6de62a24da091a7f4d4a50d1.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_78ca2cad6de62a24da091a7f4d4a50d1.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([-17.17056655883789, &#x27;&#x27;, &#x27;&#x27;, -3.9057531356811523, &#x27;&#x27;, &#x27;&#x27;, 9.359060287475586, &#x27;&#x27;, &#x27;&#x27;, 22.623870849609375, &#x27;&#x27;, &#x27;&#x27;, 35.88868713378906, &#x27;&#x27;, &#x27;&#x27;, 49.15349197387695, &#x27;&#x27;, &#x27;&#x27;, 62.41830825805664, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_78ca2cad6de62a24da091a7f4d4a50d1.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_78ca2cad6de62a24da091a7f4d4a50d1.g = color_map_78ca2cad6de62a24da091a7f4d4a50d1.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_78ca2cad6de62a24da091a7f4d4a50d1.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_78ca2cad6de62a24da091a7f4d4a50d1.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_78ca2cad6de62a24da091a7f4d4a50d1.x(color_map_78ca2cad6de62a24da091a7f4d4a50d1.color.domain()[i - 1]) : color_map_78ca2cad6de62a24da091a7f4d4a50d1.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_78ca2cad6de62a24da091a7f4d4a50d1.color.domain().length ? color_map_78ca2cad6de62a24da091a7f4d4a50d1.x(color_map_78ca2cad6de62a24da091a7f4d4a50d1.color.domain()[i]) : color_map_78ca2cad6de62a24da091a7f4d4a50d1.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_78ca2cad6de62a24da091a7f4d4a50d1.g.call(color_map_78ca2cad6de62a24da091a7f4d4a50d1.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"    \\n\",\n       \"            var heat_map_cedb9345fb73888aa819700fa57a4712 = L.heatLayer(\\n\",\n       \"                [[22.7629, 113.257, 1.8551373481750488], [22.6411, 110.1675, 0.7018232941627502], [38.5339, 102.1725, 36.529232025146484], [23.6714, 116.6339, 4.641097068786621], [31.1956, 107.5069, 35.02254104614258], [32.8603, 115.8556, 43.38887023925781], [23.0395, 113.105, 1.7566413879394531], [31.371, 119.794, -1.1771914958953857], [31.2797, 107.5272, 35.137630462646484], [37.4967, 121.2611, -16.1654109954834], [27.7569, 111.9561, 25.63494300842285], [37.1152, 79.9485, 35.57453155517578], [28.6425, 115.892, 22.8675537109375], [39.0927, 117.202, 21.109268188476562], [29.5186, 106.54, 26.88245391845703], [30.2311, 119.6942, 2.3281147480010986], [24.339, 102.5381, -1.8823586702346802], [33.0069, 114.0131, 52.69682312011719], [37.0533, 114.5261, 70.90229034423828], [29.4758, 113.2621, 37.02723693847656], [26.3108, 117.7275, 6.900566577911377], [32.1403, 114.0122, 46.83892822265625], [21.2679, 110.3316, 0.19161111116409302], [43.895, 81.2867, 34.688446044921875], [41.5931, 120.4439, -7.3297858238220215], [39.5747, 116.7729, 19.229509353637695], [28.4303, 117.9033, 13.396774291992188], [38.885, 121.5638889, -15.886506080627441], [36.4343, 116.0072, 61.51059341430664], [24.9424, 118.6663, 7.041998863220215], [37.9854, 112.549, 54.57868576049805], [36.6867, 101.524, 39.966739654541016], [45.0878, 124.8292, 3.627744197845459], [26.5917, 104.83, 3.6428120136260986], [25.1035, 117.0216, 5.422534942626953], [31.955, 119.146, 2.7203145027160645], [30.6145, 116.9894, 21.724323272705078], [35.0992, 117.4518, 39.420654296875], [37.374, 120.399, -11.234986305236816], [43.85, 125.217, 0.7808670401573181], [41.0971, 122.9642, -8.257818222045898], [41.0385, 113.1076, 21.647659301757812], [21.2706, 110.3539, 0.20029069483280182], [47.3386, 123.9305, 8.51965618133545], [31.751, 119.579, -0.8366327285766602], [32.7639, 116.8028, 34.765560150146484], [23.7569, 114.6778, 3.31417179107666], [38.2911, 109.7456, 14.618109703063965], [36.9639, 100.9048, 38.46144104003906], [47.9047, 88.1214, 31.15772819519043], [36.0417, 111.4917, 52.0261344909668], [29.3628, 104.7547, 16.7060489654541], [30.8811, 117.7442, 16.727705001831055], [26.6343, 106.7487, 10.414567947387695], [29.3547, 110.5594, 37.3843994140625], [32.3153, 118.3094, 15.20704174041748], [24.3406, 109.3886, 2.7339823246002197], [34.2572, 109.06, 33.93286895751953], [27.8403, 112.9118, 26.321989059448242], [35.4934, 112.835, 65.6387939453125], [27.8042, 114.9119, 23.720775604248047], [28.6869, 115.852, 23.31435775756836], [34.3672, 107.1906, 15.456399917602539], [29.8633, 121.586, 1.4909316301345825], [37.4514, 105.0197, 32.62382888793945], [36.913, 121.531, -16.40719985961914], [38.0513, 114.4548, 64.38848876953125], [37.8692, 112.5369, 55.43545913696289], [32.0197, 112.155, 45.82343673706055], [30.7525, 120.7844444, -1.8459327220916748], [27.7231, 109.1794, 24.73133087158203], [39.0153, 106.3717, 30.880708694458008], [31.3508, 118.3528, 11.694934844970703], [23.0467, 113.144, 1.7796831130981445], [23.1617, 112.565, 1.3936922550201416], [34.7822, 111.19, 51.11191177368164], [29.077, 119.647, 4.932635307312012], [37.3753, 97.3731, 29.051843643188477], [23.3594, 104.2533, -2.2180120944976807], [32.5714, 110.8839, 45.354217529296875], [46.6462, 131.1516, 6.997215747833252], [27.2944, 105.31, 8.625595092773438], [32.4639, 119.888, -3.41105580329895], [39.0845, 117.1589, 21.87157440185547], [37.4314, 118.6672, 14.638705253601074], [30.1366, 104.6617, 19.848920822143555], [31.3264, 120.596, -3.3333733081817627], [36.6275, 109.4131, 16.605897903442383], [23.5538, 113.589, 2.3651785850524902], [22.8054, 113.292, 1.8703256845474243], [24.3898, 109.4883, 2.9625303745269775], [42.3022, 123.8139, -4.142110347747803], [27.1311, 114.99, 19.724472045898438], [40.9733, 117.8184, -5.334816932678223], [40.7612, 111.717, 24.830310821533203], [31.2071, 121.577, -3.6213903427124023], [36.253, 120.014, -3.9531445503234863], [32.9917, 112.5192, 51.93423080444336], [28.3586, 112.9958, 31.496416091918945], [29.2958, 117.2111, 16.880260467529297], [27.8072, 114.4011, 24.762298583984375], [47.203, 123.6261, 8.38966178894043], [39.3265, 112.4078, 36.92631149291992], [41.0833, 122.9481, -8.306821823120117], [34.2629, 108.993, 33.33049011230469], [45.5828, 84.8897, 32.91572952270508], [31.215, 107.525, 35.110111236572266], [39.16969, 117.2099, 19.8233642578125], [27.5342, 109.9792, 24.23148536682129], [38.4186, 112.7356, 52.03190612792969], [41.2692, 123.7989, -7.123932361602783], [31.6411, 118.4828, 10.697420120239258], [39.4365, 75.9435, 37.22925567626953], [28.9664, 118.871, 7.821608066558838], [23.1036, 109.5683, 0.6539441347122192], [36.0822, 111.5169, 52.1964225769043], [36.885, 120.515, -11.399367332458496], [26.4214, 111.6156, 16.6898193359375], [34.719, 113.734, 64.98248291015625], [42.0186, 121.6561, -5.120023250579834], [30.63, 104.1113889, 19.387216567993164], [47.7222, 128.8736, 8.095245361328125], [41.7381, 125.9486, -4.576929569244385], [29.355, 113.2117, 36.71653366088867], [45.1642, 124.8528, 3.7808034420013428], [34.7772, 111.1928, 51.14160919189453], [33.027, 112.5573, 52.198448181152344], [42.2814, 118.9233, -2.9123528003692627], [28.5773, 121.377, 5.785200595855713], [43.95305556, 126.4738889, 0.9419141411781311], [32.6778, 109.0311, 40.47292709350586], [29.389, 106.513, 26.172319412231445], [32.6319, 116.8306, 33.693660736083984], [22.5978, 114.297, 2.8151752948760986], [27.6869, 106.9222, 17.518695831298828], [32.0314, 118.803, 7.2121405601501465], [29.1029, 119.686, 4.798985004425049], [33.581, 114.014, 56.79581069946289], [33.8561, 115.7831, 51.746620178222656], [28.2597, 112.9792, 30.55087661743164], [43.7878, 125.454, 0.6675694584846497], [36.6106, 109.5056, 17.921236038208008], [23.02777778, 113.7461111, 2.135558605194092], [28.6844, 115.893, 23.077314376831055], [33.9506, 118.3214, 21.653457641601562], [30.8217, 106.1031, 27.9856014251709], [41.7128, 86.2381, 32.2290153503418], [23.1478, 109.5681, 0.6959372758865356], [29.261, 91.7706, 13.934343338012695], [39.0877, 117.307, 19.627342224121094], [28.4231, 119.879, 7.176876544952393], [45.2978, 130.9298, 4.540450096130371], [27.725, 111.9975, 25.393146514892578], [31.2284, 121.533, -3.6989076137542725], [41.1196, 123.044, -8.14818286895752], [42.8328, 93.4961, 29.26971435546875], [36.5819, 101.834, 40.43171310424805], [30.9697, 117.8472, 16.076244354248047], [40.0031, 116.407, 16.13326072692871], [36.881, 118.746, 16.476776123046875], [34.2761, 117.167, 40.15536880493164], [26.6029, 106.6856, 10.009797096252441], [35.7306, 114.2878, 69.81005096435547], [34.6258, 112.4275, 61.01713180541992], [36.865, 120.537, -11.61334228515625], [30.5719, 114.3672, 36.66761016845703], [35.5051, 112.85, 65.73651885986328], [29.6588, 90.9798, 16.646099090576172], [32.3761, 119.389, 0.6729501485824585], [36.2866, 100.6188, 38.55171585083008], [43.1747, 124.3419, -1.4705681800842285], [39.8673, 116.366, 19.063867568969727], [40.8452, 111.659, 24.909467697143555], [29.2647, 117.1558, 17.1313533782959], [27.8614, 112.9433, 26.501083374023438], [23.475, 111.3178, 1.2200732231140137], [39.5453, 116.7022, 20.73675537109375], [28.5808, 112.3458, 33.52317810058594], [36.5336, 116.734, 51.85100173950195], [36.2289, 117.6789, 36.662200927734375], [23.65889, 116.6183, 4.63310432434082], [33.8997, 116.8067, 42.13593292236328], [23.7586, 114.6944, 3.3226964473724365], [41.8417, 123.7117, -5.565983295440674], [29.6535, 116.0174, 24.859233856201172], [46.6384, 126.9934, 6.721253395080566], [41.2864, 123.7669, -7.099091053009033], [27.8244, 113.135, 26.06005096435547], [29.5822, 105.0406, 19.114154815673828], [29.6632, 94.3616, 9.134380340576172], [45.7667, 126.635, 4.729798316955566], [38.2478, 109.7336, 14.52252197265625], [34.5911, 119.1478, 10.063517570495605], [39.6407, 118.1853, 0.1527094542980194], [26.5892, 104.8, 3.5423035621643066], [31.354, 119.818, -1.2407931089401245], [36.6622, 117.049, 46.43555450439453], [19.9969, 110.338, 0.5599281191825867], [35.428, 116.6305, 52.20735549926758], [37.364, 120.394, -11.155425071716309], [26.0542, 119.389, 8.1395902633667], [31.155, 120.636, -2.949431896209717], [22.2281, 113.299, 2.084874153137207], [23.63444, 113.0472, 2.122014045715332], [23.3892, 104.2319, -2.1852328777313232], [43.8748, 125.3649, 0.8306339383125305], [31.03389, 112.1908, 42.540679931640625], [23.2775, 116.7258, 5.155793190002441], [35.4144, 116.5856, 52.66303253173828], [35.3962, 119.54, 4.5286993980407715], [40.1952, 116.23, 14.59318733215332], [29.3578, 113.1094, 36.93179702758789], [46.0347, 124.8354, 5.7822585105896], [47.3382, 130.1097, 7.729948997497559], [40.916, 107.5936, 28.919830322265625], [41.9339, 123.6836, -5.27567720413208], [22.96583333, 113.7383333, 2.1297967433929443], [36.6872, 116.989, 47.36699295043945], [34.7538, 113.6356, 65.11260986328125], [31.7308, 113.3983, 44.810550689697266], [35.04388889, 111.0522222, 49.357696533203125], [35.9019, 114.17, 70.40270233154297], [27.5733, 109.9333, 24.439315795898438], [33.6347, 114.6758, 56.06459045410156], [32.1078, 114.1044, 46.46708297729492], [22.4853, 113.4411, 2.1332569122314453], [43.8875, 126.555, 0.7972162365913391], [33.6067, 118.989, 10.25239086151123], [29.5867, 115.9936, 24.82948875427246], [34.1978, 108.985, 33.774757385253906], [25.0311, 117.0151, 5.348052978515625], [27.11, 114.9739, 19.618066787719727], [30.21, 120.211, 0.5973502993583679], [26.9258, 112.6194, 19.85284996032715], [46.7588, 130.3794, 6.972639083862305], [35.4813, 112.8252, 65.56825256347656], [39.9279, 116.225, 19.54026222229004], [34.3181, 108.6761, 30.10930061340332], [24.769519, 113.586606, 5.588685035705566], [30.5103, 117.0549, 20.839237213134766], [40.7579, 111.651, 24.8721923828125], [37.0964, 114.5331, 70.7803726196289], [49.2261, 119.7594, 12.965482711791992], [25.4792, 118.981, 7.498295307159424], [38.80805556, 121.2588889, -15.906274795532227], [28.2053, 113.0792, 29.93427848815918], [40.8144, 111.608, 24.92522621154785], [42.8953, 125.1567, -1.9717018604278564], [24.6928, 108.054, 3.2808339595794678], [32.0878, 118.626, 9.966876029968262], [29.7207, 118.3236, 9.78786849975586], [36.838, 118.0448, 29.017379760742188], [29.9899, 103.0013, 12.934093475341797], [32.64600333, 117.0411667, 31.81930160522461], [22.6069, 113.104, 1.8612736463546753], [22.805, 108.383, -0.1917041540145874], [21.4689, 111.0286, 0.6160179972648621], [21.6828, 110.8592, 0.6289350986480713], [30.696, 111.268, 41.70869064331055], [22.5111, 113.4075, 2.1003520488739014], [43.831, 87.6432, 31.82887077331543], [33.5653, 114.0322, 56.6632080078125], [35.5714, 104.6228, 27.054224014282227], [26.6607, 119.5202, 8.068544387817383], [31.317, 119.438, 0.84449303150177], [31.5631, 120.245, -3.176452398300171], [29.8181, 114.3036, 34.99470520019531], [25.0124, 102.743, -0.8973385691642761], [31.2994, 120.543, -3.1566734313964844], [34.1546, 108.906, 33.450130462646484], [31.0483, 112.2014, 42.569942474365234], [30.2997, 113.8531, 37.34832763671875], [39.625, 121.989, -13.990591049194336], [40.7736, 120.8631, -10.74151611328125], [35.27, 115.455, 62.97196960449219], [29.8272, 106.379, 27.39339828491211], [30.0874, 103.8416, 16.275022506713867], [29.41569, 106.5506, 26.465930938720703], [27.2537, 111.4503, 22.368303298950195], [24.2719, 116.0797, 4.217585563659668], [47.3349, 130.2659, 7.750026702880859], [25.0359, 102.638, -0.9125067591667175], [30.2692, 120.19, 0.450335830450058], [27.0658, 114.9817, 19.305965423583984], [25.8179, 113.0119, 11.908713340759277], [26.2403, 107.5228, 10.203648567199707], [32.4285, 105.8624, 22.644617080688477], [31.2659, 121.536, -3.826237201690674], [35.5997, 103.2064, 36.763824462890625], [34.9162, 113.6113, 65.96715545654297], [38.49494, 106.1024, 30.184471130371094], [32.4867, 119.9, -3.4999241828918457], [39.1654, 117.145, 20.82776641845703], [41.0903, 122.0539, -8.889331817626953], [23.3917, 113.215, 1.9422869682312012], [31.1333, 104.3883, 20.992963790893555], [34.6972, 119.3581, 6.745296955108643], [42.8172, 93.5128, 29.261886596679688], [22.6164, 110.1433, 0.6836046576499939], [45.8167, 126.561, 4.855945587158203], [31.8766, 117.307, 24.602760314941406], [34.3622, 107.2386, 15.923104286193848], [25.5364, 103.8, 0.05046325549483299], [22.5545, 114.1063, 2.6598916053771973], [43.9311, 116.0781, 8.84080982208252], [37.5211, 111.1406, 38.6536865234375], [47.7317, 128.9094, 8.110651969909668], [41.7972, 123.3997, -5.830103397369385], [23.3993, 103.3772, -2.553849220275879], [46.5776, 125.1386, 6.813388347625732], [43.8303, 87.5801, 31.864713668823242], [30.5947, 114.3008, 36.9952392578125], [26.2081, 111.6217, 15.121061325073242], [27.6442, 113.8686, 24.059844970703125], [39.2282, 106.7704, 29.855663299560547], [42.2556, 118.8789, -3.0061516761779785], [26.3003, 106.805, 8.575394630432129], [29.57278, 106.4042, 26.552343368530273], [23.0916, 113.348, 1.9036285877227783], [36.6114, 116.988, 47.57114791870117], [41.1386, 121.1303, -9.254036903381348], [45.8194, 130.8625, 5.490378379821777], [33.721, 113.322, 57.98910140991211], [31.896, 121.173, -5.6954665184021], [31.7848, 117.196, 25.155736923217773], [26.8906, 100.2203, -0.1470644474029541], [24.795928, 113.598061, 5.731293678283691], [39.9567, 119.6023, -11.414273262023926], [32.18888889, 119.4369444, 0.07052954286336899], [34.9817, 118.2764, 24.88939666748047], [36.5481, 104.1731, 34.90827178955078], [26.5495, 106.6867, 9.681139945983887], [44.1564, 87.9897, 31.678213119506836], [37.7111, 112.7306, 58.40511703491211], [26.4364, 111.5992, 16.797388076782227], [39.617, 122.011, -13.995091438293457], [26.6514, 118.1819, 7.513495922088623], [40.9843, 117.9525, -5.859951019287109], [22.0019, 100.7939, -1.1759552955627441], [21.5958, 109.2256, -0.18962401151657104], [34.7967, 114.2886, 65.17303466796875], [25.0492, 101.538, -2.0184926986694336], [31.9286, 102.1755, 19.287498474121094], [26.567, 101.7227, 0.2707515358924866], [36.0725, 103.841, 35.46928024291992], [39.3179, 112.4254, 37.219703674316406], [26.5155, 106.6948, 9.494913101196289], [22.7875, 108.301, -0.21818281710147858], [29.7534, 116.0726, 24.805973052978516], [33.627, 119.0122, 9.95035171508789], [34.2778, 117.2933, 38.543949127197266], [32.8913, 117.4186, 29.355045318603516], [39.7884, 109.9734, 21.3481502532959], [30.475, 105.5956, 25.29220962524414], [34.6686, 112.4433, 61.270904541015625], [35.0611, 111.0233, 49.00641632080078], [23.4794, 111.26, 1.2223937511444092], [30.72358333, 103.97275, 19.07023048400879], [46.8025, 130.2719, 7.01332426071167], [32.02, 120.87, -5.49908447265625], [32.0417, 120.81, -5.47416353225708], [37.187, 122.019, -17.149450302124023], [38.0398, 114.6046, 64.27495574951172], [36.086, 114.32, 70.84158325195312], [25.9061, 113.0073, 12.530261039733887], [24.77908333, 113.6734722, 5.587403774261475], [41.0781, 121.0986, -9.505654335021973], [37.197, 122.038, -17.155296325683594], [31.92, 120.302, -4.185766696929932], [39.8129, 110.0023, 21.47267723083496], [36.71, 117.541, 38.20689010620117], [32.3292, 119.8767, -3.25053334236145], [28.8833, 105.4322, 17.755691528320312], [34.4286, 115.6697, 56.66507339477539], [30.2897, 120.157, 0.4506895840167999], [22.9394, 112.0369, 1.1771125793457031], [29.305, 120.091, 3.7221386432647705], [26.9056, 112.5664, 19.732158660888672], [26.4519, 111.5989, 16.908987045288086], [25.0925, 104.9022, 0.07645763456821442], [26.6383, 118.1694, 7.483020782470703], [30.0033, 120.7789, 0.8246186971664429], [36.4372, 115.9848, 61.747406005859375], [42.2217, 123.7153, -4.405884265899658], [31.5072, 104.7283, 22.529672622680664], [37.7379, 115.6426, 60.70615768432617], [34.794, 111.158, 50.79006576538086], [30.1808, 120.088, 0.9503682255744934], [35.1764, 113.2464, 66.468994140625], [27.8136, 99.7064, 1.6290887594223022], [30.4133, 114.8131, 34.073768615722656], [30.1377, 104.6289, 19.708486557006836], [28.19, 112.9394, 29.84539794921875], [29.635, 119.026, 6.161799907684326], [33.5981, 119.036, 9.502606391906738], [42.0503, 121.6972, -5.029200077056885], [34.0117, 113.8331, 60.1510124206543], [29.5634, 103.757, 13.634556770324707], [32.5, 80.1161, 34.18101119995117], [30.3119, 120.12, 0.44653916358947754], [29.33972, 104.7228, 16.441448211669922], [41.1042, 121.835, -8.947103500366211], [37.8564, 113.5753, 63.763404846191406], [31.17, 120.635, -2.988800287246704], [33.4022, 120.118, -5.479528903961182], [38.8707, 115.5214, 46.47503662109375], [38.6016, 105.9512, 31.42551612854004], [38.0524, 114.5214, 64.31475067138672], [37.18, 119.959, -5.3584723472595215], [21.9508, 108.6553, -0.302406370639801], [21.6533, 110.9294, 0.6485644578933716], [36.8198, 118.3092, 24.358787536621094], [32.965, 114.018, 52.39833068847656], [46.0872, 85.6931, 32.453155517578125], [28.1944, 113.0014, 29.86161231994629], [29.1389, 110.48, 35.92905044555664], [45.2948, 131.0103, 4.562015056610107], [30.4865, 106.6351, 30.594066619873047], [34.802, 113.564, 65.31254577636719], [41.5647, 120.4247, -7.451263427734375], [33.6481, 116.9765, 38.699867248535156], [43.1847, 124.3897, -1.4330171346664429], [30.698, 111.2992, 41.702571868896484], [34.5653, 105.8614, 12.300178527832031], [22.5328, 113.024, 1.8403176069259644], [23.1142, 114.4103, 2.6293413639068604], [34.2153, 117.256, 38.68620300292969], [32.6975, 109.0072, 40.34242248535156], [25.4552, 119.0018, 7.511740207672119], [30.51197222, 117.0331111, 20.998037338256836], [37.4442, 118.5857, 16.000965118408203], [28.2264, 117.0222, 17.481168746948242], [34.9058, 108.9344, 26.919631958007812], [31.6908, 113.3833, 44.555992126464844], [28.0005, 116.3574, 19.429197311401367], [32.395, 111.0419, 45.161590576171875], [35.31, 113.836, 67.98197174072266], [23.3667, 116.6794, 4.995241641998291], [34.3469, 106.005, 11.59901237487793], [25.8071, 113.0383, 11.824639320373535], [32.3061, 118.3158, 15.092447280883789], [40.7608, 107.4211, 29.41263771057129], [35.0697, 109.0697, 26.84865379333496], [44.5952, 129.5902, 2.55934476852417], [37.8531, 113.6292, 64.07666015625], [40.3937, 116.644, 7.111408710479736], [30.3714, 114.8989, 33.44465255737305], [31.2261, 121.425, -3.6974050998687744], [40.6592, 122.2414, -10.517840385437012], [21.8536, 111.9508, 1.2876112461090088], [40.7136, 120.9092, -10.979954719543457], [27.3392, 103.7032, 4.290351390838623], [41.1222, 121.1178, -9.32879638671875], [26.4364, 106.6554, 8.89625072479248], [38.4841, 106.2739, 29.052490234375], [37.393, 117.9776, 27.20757293701172], [29.9816, 103.0001, 12.8955717086792], [33.1138, 107.0089, 25.225419998168945], [38.9846, 117.3747, 20.115238189697266], [23.05361111, 113.7819444, 2.1606547832489014], [25.2708, 110.3089, 7.7628889083862305], [29.315, 110.4417, 37.02059555053711], [31.7956, 117.302, 24.205320358276367], [35.767, 115.0772, 67.4933090209961], [24.3663, 109.3957, 2.8339433670043945], [29.8506, 121.524, 1.5190377235412598], [43.8256, 126.55, 0.6632974147796631], [27.72, 106.9178, 17.722103118896484], [27.8036, 114.9314, 23.6673526763916], [36.8041, 117.8512, 32.76514434814453], [36.907, 121.544, -16.42909049987793], [29.2718, 88.8876, 20.84821319580078], [25.5035, 103.7897, 0.006483389064669609], [40.8369, 111.751, 24.820222854614258], [39.0631, 121.9769, -15.403067588806152], [33.9592, 118.2442, 22.824705123901367], [33.63063889, 116.989, 38.47090530395508], [41.0831, 123.0156, -8.279111862182617], [39.6308, 118.1662, 0.4862985908985138], [23.0528, 114.4183, 2.662539005279541], [30.4742, 114.9028, 33.82065200805664], [30.6578, 104.054, 19.23941993713379], [21.7631, 108.3511, -0.4963560402393341], [42.9409, 89.191, 30.689077377319336], [41.3369, 123.7528, -6.974189758300781], [30.2747, 120.063, 0.7137027978897095], [35.2375, 115.474722, 62.6746940612793], [46.6572, 131.1638, 7.016059398651123], [29.2365, 88.8931, 20.8026123046875], [36.0022, 106.2792, 13.942906379699707], [33.739, 113.292, 58.10694885253906], [30.5797, 105.7519, 26.14305877685547], [37.7805, 112.488, 55.59074783325195], [28.9026, 105.4436, 17.933155059814453], [30.3515, 112.2068, 40.62078094482422], [35.6039, 103.2139, 36.75651550292969], [37.9844, 106.2025, 26.6970157623291], [33.7214, 113.3064, 57.9898681640625], [35.0994, 109.0656, 26.523744583129883], [38.00583333, 114.4586111, 64.8614273071289], [36.7008, 119.1425, 9.743245124816895], [25.0992, 104.8811, 0.07703857868909836], [35.1147, 111.0414, 49.08426284790039], [32.0723, 118.778, 7.712691307067871], [34.7496, 113.5991, 65.05486297607422], [30.2366, 119.7183, 2.191833972930908], [24.44583333, 118.0636111, 6.096979141235352], [23.5353, 116.3697, 4.476369857788086], [37.3803, 118.0062, 26.75938606262207], [43.8947, 126.5786, 0.8163474798202515], [31.5031, 120.242, -3.0181992053985596], [40.8367, 114.8985, 15.138320922851562], [37.5639, 121.2514, -16.16413116455078], [30.6463, 111.3549, 41.58225631713867], [25.8417, 98.8546, -1.4210431575775146], [27.5578, 109.9972, 24.379758834838867], [46.8032, 130.3648, 7.030581951141357], [42.8939, 129.4892, -0.6265360713005066], [34.6692, 112.3628, 60.83271408081055], [30.9414, 117.7806, 16.561405181884766], [29.6514, 91.1319, 16.2082576751709], [24.3304, 109.4108, 2.7043206691741943], [28.71583, 104.5761, 13.000694274902344], [30.3944, 114.8878, 33.57471466064453], [38.03777778, 114.5480556, 64.42386627197266], [23.0786, 112.4722, 1.3597712516784668], [46.528, 125.112, 6.709205627441406], [27.2317, 111.4733, 22.214908599853516], [30.7157, 111.3009, 41.73997497558594], [32.9683, 112.55, 51.8594856262207], [31.3008, 121.467, -3.951425790786743], [46.619, 131.1651, 6.964422702789307], [43.9469, 87.4754, 31.950666427612305], [28.8194, 104.5969, 13.577845573425293], [30.9431, 118.7175, 6.681106090545654], [33.3942, 120.156, -5.759540557861328], [35.5236, 107.6406, 9.082442283630371], [31.8706, 117.259, 25.025129318237305], [32.4429, 105.8242, 22.378271102905273], [32.88922222, 115.7838889, 44.142822265625], [26.6009, 106.7105, 10.080721855163574], [27.8094, 102.3419, 3.9675586223602295], [30.0911, 120.598, 0.542582094669342], [29.6747, 91.1221, 16.265216827392578], [35.4039, 116.5546, 52.978939056396484], [33.5039, 119.135, 7.720621585845947], [46.0707, 122.0931, 6.773793697357178], [34.29, 117.1814, 40.04906463623047], [41.9967, 121.6178, -5.185100555419922], [34.3739, 107.1186, 14.783426284790039], [23.0048, 113.134, 1.7785626649856567], [29.90166667, 121.6147222, 1.3567426204681396], [31.671, 120.721, -4.413758754730225], [28.1308, 112.8908, 29.242822647094727], [34.3164, 108.7369, 30.680204391479492], [34.7837, 117.2852, 40.97064208984375], [42.8775, 129.3675, -0.6782190799713135], [35.0003, 102.905, 34.968910217285156], [43.6156, 122.3039, 0.18707799911499023], [41.765, 123.41, -5.9167704582214355], [32.939, 117.3961, 29.900402069091797], [36.5767, 109.4824, 17.884416580200195], [34.6231, 112.3844, 60.771728515625], [27.8847, 102.2689, 4.108392715454102], [43.962, 87.6444, 31.8579158782959], [37.5002, 105.1971, 31.520187377929688], [36.7019, 119.12, 10.166487693786621], [35.213, 113.227, 66.56309509277344], [40.1503, 124.4256, -9.552101135253906], [31.8108, 119.9736, -2.8839681148529053], [37.8873, 112.522, 55.13245391845703], [33.568, 114.005, 56.706722259521484], [26.8802, 100.2497, -0.16269920766353607], [41.8864, 124.0878, -5.244701385498047], [31.3708, 120.641, -3.5325777530670166], [29.6376, 94.3681, 9.063803672790527], [23.5292, 116.4094, 4.508472919464111], [34.3731, 109.2186, 34.36807632446289], [31.6219, 120.275, -3.407773971557617], [31.5475, 120.354, -3.4326488971710205], [27.8667, 113.167, 26.438030242919922], [41.9206, 126.4047, -3.8268723487854004], [40.6821, 109.8538, 26.212148666381836], [42.2953, 123.8831, -4.142958164215088], [34.2417, 117.192, 39.64811706542969], [36.6164, 114.5426, 71.18406677246094], [41.5672, 120.4486, -7.445432186126709], [25.1174, 117.0181, 5.431666374206543], [41.8594, 123.9, -5.399569034576416], [25.8567, 98.8601, -1.412310004234314], [29.5817, 105.0653, 19.233245849609375], [36.497, 117.8477, 33.557918548583984], [31.7275, 113.3583, 44.805397033691406], [25.7054, 100.1542, -1.9044443368911743], [36.2211, 117.6983, 36.334075927734375], [24.68636111, 113.5970833, 5.127822399139404], [36.0714, 111.5028, 52.05889129638672], [24.81119444, 113.5593889, 5.844527721405029], [29.4402, 112.9943, 37.475311279296875], [35.76806, 115.0061, 67.82354736328125], [28.0089, 120.634, 7.633346080780029], [37.4372, 116.2714, 55.57950973510742], [31.7797, 116.5068, 30.913963317871094], [31.1654, 121.412, -3.4727630615234375], [45.8309, 130.9467, 5.535722732543945], [44.8969, 82.0806, 34.29446792602539], [39.7294, 98.5023, 28.91696548461914], [28.4459, 117.973, 12.986496925354004], [23.3682, 103.3758, -2.6068663597106934], [24.8885, 102.821, -1.0060385465621948], [41.3472, 123.8142, -6.908802032470703], [33.0122, 112.5224, 52.053489685058594], [42.2864, 123.8489, -4.179818630218506], [27.7314, 112.0194, 25.449344635009766], [35.7672, 115.0628, 67.56486511230469], [30.6103, 114.4272, 36.5847053527832], [31.7506, 118.5106, 10.569531440734863], [29.1456, 111.7158, 37.0357780456543], [28.9745, 118.855, 7.87919807434082], [34.6575, 109.2, 31.766931533813477], [23.105, 113.261, 1.84778892993927], [39.6572, 106.7931, 31.067094802856445], [23.5739, 116.3594, 4.454594612121582], [31.2108, 107.4967, 34.99468231201172], [32.625, 116.7039, 34.78889846801758], [28.2675, 109.6958, 28.0049991607666], [32.8985, 117.3065, 30.63697052001953], [41.2894, 123.1417, -7.526309013366699], [30.5706, 104.079, 19.102678298950195], [32.1342, 114.0681, 46.702171325683594], [23.0706, 112.427, 1.3355295658111572], [37.825, 120.747, -14.634509086608887], [34.493, 109.4636, 35.68362808227539], [26.5894, 104.8475, 3.683922290802002], [28.76611, 104.6225, 13.43742561340332], [31.4747, 104.7778, 22.74342918395996], [32.0564, 112.1392, 45.9776496887207], [32.9735, 112.5003, 51.796077728271484], [25.0441, 101.5482, -2.013943910598755], [26.6611, 119.5392, 8.074438095092773], [43.6801, 122.2532, 0.4387393593788147], [28.8558, 105.4322, 17.598459243774414], [29.6541, 91.1774, 16.082721710205078], [38.2991, 116.8854, 37.367881774902344], [37.154, 122.471, -16.89158821105957], [41.7156, 125.9361, -4.637369632720947], [28.2169, 116.9983, 17.550350189208984], [31.3097, 120.669, -3.4192605018615723], [44.0297, 87.2717, 32.08421325683594], [25.8471, 114.8905, 10.767322540283203], [33.8715, 109.9154, 41.60847091674805], [36.61981, 114.4965, 71.26152038574219], [38.97388889, 121.6119444, -15.741599082946777], [27.8328, 114.9289, 23.837373733520508], [40.0625, 124.3303, -9.86392879486084], [22.5625, 114.117, 2.6654255390167236], [45.6886, 85.1186, 32.796897888183594], [38.3228, 116.8709, 37.28643035888672], [40.2865, 116.17, 13.565129280090332], [47.3489, 130.3172, 7.778671741485596], [45.9819, 126.6106, 5.2442426681518555], [38.3254, 116.8584, 37.4369010925293], [37.7087, 112.7105, 58.23359298706055], [31.8516, 117.124, 26.203365325927734], [36.8088, 118.0482, 29.0693416595459], [38.5036, 106.1358, 30.021377563476562], [38.8756, 115.442, 47.218116760253906], [35.0308, 110.9678, 48.447425842285156], [21.865, 111.9494, 1.2911397218704224], [31.9051, 117.16, 26.16761589050293], [29.6007, 103.7506, 13.78212833404541], [41.9419, 126.4078, -3.770423650741577], [39.0511, 121.7769, -15.53518009185791], [32.0775, 118.795, 7.48441219329834], [46.0703, 122.0506, 6.7919158935546875], [27.9639, 116.3598, 19.31723403930664], [24.4674, 117.6336, 5.5238938331604], [30.049, 119.946, 1.7498167753219604], [34.7997, 111.1489, 50.69739532470703], [22.5497, 113.3881, 2.067997455596924], [34.378, 108.869, 31.283489227294922], [36.4796, 115.9835, 61.7782096862793], [29.334, 120.04, 3.6656181812286377], [31.422, 121.14, -4.331070899963379], [38.91194444, 121.6330556, -15.849089622497559], [29.6926, 116.0628, 24.711118698120117], [27.6428, 113.8381, 24.062124252319336], [37.43445, 118.696, 14.103638648986816], [43.55, 125.633, 0.11813971400260925], [32.4246, 105.8153, 22.45808982849121], [46.6527, 126.9636, 6.747269630432129], [45.7478, 126.593, 4.687355041503906], [35.28385, 113.5922, 67.58721923828125], [31.8585, 117.336, 24.218122482299805], [30.66, 117.49, 18.087915420532227], [38.95111111, 121.565, -15.776715278625488], [40.1097, 113.3819, 30.483522415161133], [33.0706, 107.0154, 25.619577407836914], [27.8344, 114.9831, 23.708568572998047], [27.9153, 113.0048, 26.97507095336914], [27.3033, 111.5239, 22.632556915283203], [30.518, 106.631, 30.655763626098633], [31.7371, 116.508, 30.618968963623047], [29.6039, 115.9114, 25.374347686767578], [23.8822, 100.0869, -3.076012372970581], [39.9425, 116.361, 17.754627227783203], [23.2539, 116.6092, 5.039843559265137], [24.5058, 118.0936, 6.133465766906738], [36.0211, 106.2375, 14.418166160583496], [27.8159, 112.9227, 26.08987808227539], [30.2989, 109.5039, 39.246917724609375], [29.7125, 106.617, 27.935579299926758], [44.6104, 129.6459, 2.606051445007324], [30.4753, 114.1525, 37.0340576171875], [44.1756, 87.5475, 31.951982498168945], [34.6869, 112.4831, 61.543418884277344], [37.062, 114.4854, 70.91929626464844], [36.6428, 101.748, 40.312557220458984], [26.5506, 104.9544, 3.8169047832489014], [31.4539, 104.7536, 22.656755447387695], [31.388, 120.953, -4.0974225997924805], [45.755, 126.542, 4.708917140960693], [31.0283, 103.613, 18.332292556762695], [40.7688, 114.9032, 15.932125091552734], [31.3019, 120.591, -3.257563829421997], [33.9953, 113.7906, 60.035980224609375], [30.0506, 103.8986, 16.319822311401367], [39.65782, 118.1838, -0.03150690346956253], [30.6347, 105.8161, 26.469453811645508], [31.1108, 104.3539, 20.8283634185791], [37.0172, 105.18, 29.168415069580078], [30.0125, 103.009, 13.047961235046387], [35.763, 115.031, 67.69245910644531], [24.3158, 109.4839, 2.6800360679626465], [22.9477, 113.352, 1.9009934663772583], [36.6525, 119.1638, 9.521221160888672], [28.2325, 113.0833, 30.227222442626953], [29.7228, 106.626, 28.002750396728516], [36.39, 120.47, -10.02486801147461], [37.7124, 112.469, 55.81707000732422], [29.3411, 104.7692, 16.676530838012695], [39.79777778, 98.26722222, 28.932100296020508], [29.7048, 115.9581, 25.34002113342285], [39.5986, 109.7736, 20.38522720336914], [39.7711, 98.2908, 28.932872772216797], [31.874, 120.526, -4.575522422790527], [23.3633, 116.7244, 5.049006462097168], [22.5931, 113.0819, 1.8595269918441772], [32.41, 119.404, 0.588272213935852], [35.7289, 107.6831, 8.103155136108398], [43.8694, 125.325, 0.8200507760047913], [25.0405, 102.722, -0.8726865649223328], [39.5178, 116.6838, 21.4679012298584], [33.5979, 114.6546, 55.853702545166016], [22.9169, 112.0392, 1.1849285364151], [34.6869, 112.4664, 61.4572639465332], [30.9414, 117.8178, 16.25550651550293], [43.9317, 116.1042, 8.794852256774902], [32.0903, 112.2106, 46.247196197509766], [42.0486, 121.6592, -5.019562721252441], [41.615, 120.3939, -7.218879222869873], [40.8033, 111.658, 24.883068084716797], [31.7897, 119.8914, -2.554255485534668], [31.909, 120.237, -3.9644458293914795], [32.1083, 118.803, 7.474239826202393], [30.8596, 120.1844, -1.243944764137268], [31.1167, 104.4053, 21.064584732055664], [30.7819, 111.3296, 41.9033203125], [28.9583, 105.4306, 18.165922164916992], [38.85611111, 121.5180556, -15.926945686340332], [23.1323, 113.3208, 1.8871761560440063], [31.7618, 116.478, 30.99559211730957], [29.7736, 121.633, 1.8423017263412476], [39.8261, 109.9486, 21.594179153442383], [38.8957, 115.5223, 46.01842498779297], [32.215, 119.491, -0.39866071939468384], [27.8528, 113.13, 26.32370376586914], [32.105, 118.907, 5.981148719787598], [26.0797, 119.268, 8.028112411499023], [33.975, 116.8008, 42.71012496948242], [26.6266, 106.6243, 9.947702407836914], [23.105, 113.433, 1.9563528299331665], [30.3058, 120.348, 0.06529022753238678], [22.9539, 112.0539, 1.1799811124801636], [31.4846, 92.0657, 17.116682052612305], [31.6928, 118.48, 10.856324195861816], [27.9939, 120.677, 7.637879848480225], [34.2713, 108.954, 32.939125061035156], [41.1953, 123.2, -7.806497573852539], [34.2749, 108.882, 32.29958724975586], [30.1819, 120.27, 0.5810490846633911], [22.5211, 113.3769, 2.074023723602295], [36.864, 118.78, 15.935678482055664], [21.9667, 108.6236, -0.3139939606189728], [33.3681, 120.1631, -5.789852142333984], [31.4656, 104.6717, 22.30697250366211], [37.739, 115.6906, 60.245521545410156], [36.2126, 113.0886, 67.13508605957031], [39.5989, 109.8119, 20.33725357055664], [24.506, 117.7116, 5.6338582038879395], [40.7378, 107.3715, 29.4863338470459], [34.7187, 113.727, 64.97673797607422], [30.6872, 104.176, 19.73812484741211], [27.583, 110.0394, 24.539989471435547], [31.9438, 117.266, 25.3709716796875], [38.4928, 112.7003, 50.85757827758789], [31.3839, 118.4022, 11.166637420654297], [38.4519, 112.7383, 51.691558837890625], [26.1092, 119.299, 8.065140724182129], [34.7745, 113.641, 65.23353576660156], [46.5888, 131.1572, 6.921696662902832], [30.4663, 106.6271, 30.50007438659668], [31.4189, 118.37, 11.608621597290039], [30.6539, 117.4974, 18.020292282104492], [26.8576, 100.2143, -0.20465219020843506], [30.6617, 117.4697, 18.244508743286133], [37.7575, 115.6951, 60.026458740234375], [23.415, 111.2353, 1.1527177095413208], [28.0167, 120.671, 7.60925817489624], [30.9222, 117.8078, 16.294719696044922], [38.9108, 115.4713, 46.281646728515625], [32.6494, 110.78, 45.36275100708008], [28.0797, 116.2239, 20.091476440429688], [34.3017, 107.0708, 15.082829475402832], [40.1269, 113.2661, 30.02129554748535], [36.7731, 119.1939, 8.489879608154297], [47.2988, 123.945, 8.456313133239746], [28.095, 116.9622, 17.54302215576172], [26.6946, 119.5001, 8.053982734680176], [27.8728, 112.8937, 26.62837028503418], [23.6936, 113.0425, 2.2374050617218018], [36.799, 119.976, -4.585391998291016], [35.4883, 112.8564, 65.75981140136719], [27.8408, 102.2714, 3.970491409301758], [30.5514, 114.2511, 37.0014762878418], [42.0228, 121.6722, -5.109197616577148], [31.172, 120.658, -3.0363731384277344], [32.996, 113.996, 52.64488220214844], [32.1319, 119.43, 0.12549106776714325], [31.1907, 121.703, -3.568643569946289], [41.0931, 123.011, -8.25051212310791], [37.4664, 116.3061, 54.85475540161133], [25.8664, 114.9367, 10.838091850280762], [32.3878, 119.46, -0.07402965426445007], [35.4234, 119.5198, 4.878419876098633], [36.5776, 114.5035, 71.24671936035156], [22.8464, 108.239, -0.2667904794216156], [42.9061, 129.5042, -0.6012449264526367], [30.2352, 115.0625, 32.17576217651367], [27.8953, 102.2311, 4.088251113891602], [40.9923, 113.1306, 21.73174285888672], [31.85805556, 106.7619444, 30.657583236694336], [24.441, 98.578, -1.8429172039031982], [41.3283, 123.8436, -6.940545558929443], [22.7422, 114.5317, 2.9694783687591553], [27.5444, 109.9453, 24.272977828979492], [25.5811, 100.2171, -2.0512588024139404], [26.53111111, 107.8908333, 13.122210502624512], [39.5371, 75.9828, 37.18795394897461], [39.6969, 106.8089, 31.09621810913086], [35.4178, 119.4641, 5.826211452484131], [33.38256667, 104.9338889, 18.90835189819336], [45.6842, 126.6206, 4.533262252807617], [40.5905, 110.0067, 25.713085174560547], [29.1242, 110.4697, 35.81024932861328], [30.9892, 112.1969, 42.421669006347656], [35.272, 113.884, 67.8440170288086], [41.1933, 80.2956, 35.21888732910156], [39.8745, 116.434, 18.14990997314453], [37.8195, 112.57, 56.15028381347656], [29.53675, 106.4959, 26.78131103515625], [43.941, 81.3364, 34.66450500488281], [31.9108, 119.905, -2.8714287281036377], [27.7758, 115.0586, 23.15648651123047], [30.9219, 117.8561, 15.894428253173828], [30.1259, 104.6294, 19.65750503540039], [31.0935, 120.978, -3.1286568641662598], [37.8792, 113.4922, 63.10075378417969], [26.5747, 107.9783, 13.614723205566406], [35.235, 113.261, 66.72758483886719], [24.4072, 111.5622, 3.7705135345458984], [31.9025, 102.2218, 19.16628646850586], [37.3617, 118.0018, 26.96282196044922], [43.4569, 87.4651, 31.850156784057617], [26.5928, 101.5769, 0.18279804289340973], [45.7733, 126.689, 4.742208480834961], [28.6428, 112.4067, 34.03382110595703], [34.402, 115.6578, 56.58219909667969], [45.7677, 131.0032, 5.434194087982178], [31.1208, 104.4219, 21.142032623291016], [27.7842, 114.3953, 24.630535125732422], [27.9747, 120.76, 7.631874084472656], [31.4, 119.46, 0.5193227529525757], [28.6844, 115.931, 22.869089126586914], [37.161, 122.41, -16.93768882751465], [27.7297, 109.1916, 24.78665542602539], [22.0225, 100.8017, -1.2164829969406128], [29.6453, 106.562, 27.49785041809082], [22.8322, 100.9817, -2.5173349380493164], [44.5462, 129.6386, 2.4714560508728027], [30.65638889, 104.0238889, 19.115478515625], [36.1031, 103.631, 36.67851638793945], [26.2331, 111.6236, 15.31418228149414], [26.8956, 112.6211, 19.664234161376953], [41.3047, 123.7308, -7.072805404663086], [40.8725, 114.904, 14.690862655639648], [43.8167, 125.25, 0.708394467830658], [40.9359, 117.963, -5.883099555969238], [27.9119, 112.9074, 26.985136032104492], [41.0112, 117.9384, -5.821404933929443], [32.4611, 119.9219, -3.6320905685424805], [35.5294, 106.7039, 8.710830688476562], [29.5947, 105.0717, 19.317155838012695], [35.546, 112.8453, 65.7303695678711], [30.3175, 112.2551, 40.4944953918457], [39.6679, 118.2185, -0.5509200692176819], [31.737, 119.579, -0.8208463788032532], [50.4269, 124.1186, 12.147051811218262], [32.6939, 109.0281, 40.43104553222656], [32.935, 117.3086, 30.837635040283203], [32.645, 117.0083, 32.12999725341797], [27.7019, 106.9242, 17.62670135498047], [30.5494, 114.3006, 36.82621383666992], [32.0572, 118.749, 8.0858736038208], [46.6219, 124.8648, 6.959694862365723], [34.407, 115.6386, 56.756526947021484], [34.5021, 109.4266, 35.28884506225586], [26.6761, 118.0966, 7.590892791748047], [29.8539, 114.2894, 35.11415100097656], [39.746, 98.509, 28.915023803710938], [29.5844, 103.7627, 13.754719734191895], [24.5157, 117.6569, 5.584349155426025], [28.2189, 112.8872, 30.147113800048828], [36.0783, 111.5531, 52.66978073120117], [35.5461, 106.6692, 8.9442777633667], [40.0917, 113.3444, 30.647483825683594], [29.8906, 121.554, 1.3700802326202393], [31.6861, 118.5058, 10.487476348876953], [29.8208, 121.56, 1.6488027572631836], [34.3474, 108.935, 32.12113952636719], [28.1442, 112.9956, 29.357479095458984], [37.7019, 112.7549, 58.68699264526367], [38.9467, 100.4686, 31.67863655090332], [30.4183, 120.301, -0.23119857907295227], [23.7208, 109.2131, 1.2307754755020142], [31.8711, 106.7389, 30.472469329833984], [28.2403, 117.0281, 17.47394371032715], [23.0944, 109.6014, 0.6652631163597107], [35.248889, 115.42277, 63.07646560668945], [26.0931, 119.58, 8.259001731872559], [22.8225, 108.321, -0.22427035868167877], [23.0672, 109.6042, 0.6439333558082581], [27.9958, 113.1817, 27.682294845581055], [30.7856, 106.1064, 27.979015350341797], [30.8064, 106.056, 27.704681396484375], [27.2582, 111.4908, 22.37262725830078], [43.9404, 81.2815, 34.6898193359375], [34.5885, 119.176, 9.586150169372559], [38.4975, 106.2328, 29.382780075073242], [41.9228, 123.3783, -5.465767860412598], [33.6128, 114.6613, 55.9439811706543], [34.8731, 108.9589, 27.4807071685791], [32.0092, 118.737, 8.105006217956543], [39.2474, 117.7918, 10.349180221557617], [25.7759, 113.0348, 11.611393928527832], [29.9834, 103.0109, 12.925284385681152], [39.9934, 116.315, 17.349746704101562], [34.3956, 108.7197, 29.76548957824707], [27.8978, 102.2625, 4.137836933135986], [31.3178, 118.3708, 11.434221267700195], [46.7975, 130.3258, 7.015963554382324], [26.2625, 117.6211, 6.840204238891602], [31.5848, 120.354, -3.527975082397461], [30.2028, 115.0767, 32.01077651977539], [29.7292, 115.988, 25.228858947753906], [21.6669, 110.9067, 0.6444870233535767], [30.1142, 104.6469, 19.682680130004883], [37.809, 120.773, -14.720566749572754], [27.8317, 99.7056, 1.666448712348938], [30.9742, 118.7386, 6.475308895111084], [34.864, 117.5564, 37.038604736328125], [32.1883, 119.68, -1.8257638216018677], [45.305, 130.9817, 4.570976257324219], [49.1577, 119.7512, 12.909038543701172], [30.3055, 112.2887, 40.425453186035156], [36.5458, 104.1731, 34.89939880371094], [40.6511, 122.215, -10.574610710144043], [44.2967, 86.0497, 32.81845474243164], [34.2911, 117.244, 39.260650634765625], [28.7989, 104.6789, 13.824308395385742], [37.4294, 122.1206, -17.17056655883789], [23.7369, 109.2317, 1.2554020881652832], [36.1417, 106.2319, 15.106032371520996], [31.7386, 117.278, 24.139986038208008], [48.4658, 129.4942, 9.064675331115723], [45.2924, 130.962, 4.541259288787842], [40.715, 120.8478, -10.97632884979248], [33.3947, 120.225, -6.233407974243164], [40.6575, 109.8104, 26.204118728637695], [38.86388889, 121.625, -15.927712440490723], [35.0573, 118.3418, 24.075241088867188], [41.7775, 123.478, -5.860939025878906], [31.2058, 107.4611, 34.840885162353516], [28.6047, 112.3347, 33.70918273925781], [41.2736, 123.1761, -7.558161735534668], [36.0464, 103.831, 35.43605422973633], [34.3274, 109.043, 33.21357345581055], [37.9648, 106.1532, 26.93107032775879], [36.1851, 120.3905, -8.744566917419434], [36.6028, 109.4761, 17.596738815307617], [29.5467, 103.7705, 13.611403465270996], [50.4217, 124.1303, 12.137689590454102], [22.7019, 110.1106, 0.6970711946487427], [31.955, 119.18, 2.381568431854248], [39.1082, 117.237, 20.36188316345215], [24.2654, 116.1248, 4.227578163146973], [30.2756, 118.1371, 11.726993560791016], [33.567, 114.056, 56.653968811035156], [27.8014, 114.3806, 24.751026153564453], [29.36028, 104.7778, 16.813446044921875], [26.57098, 101.68912, 0.24619124829769135], [23.6706, 116.6447, 4.652271747589111], [32.1142, 112.1825, 46.3246955871582], [41.8336, 123.542, -5.684185981750488], [30.2099, 115.0264, 32.3159065246582], [34.3528, 107.3906, 17.38043785095215], [25.3167, 110.4144, 8.142557144165039], [27.9164, 112.4876, 27.068496704101562], [39.1067, 117.1941, 21.012605667114258], [25.442, 119.0156, 7.52201509475708], [40.8115, 114.8814, 15.5303373336792], [29.9919, 120.605, 0.8861760497093201], [23.1572, 112.885, 1.6144596338272095], [37.9097, 114.3541, 65.84617614746094], [34.5004, 109.5049, 36.00139617919922], [33.737, 113.182, 58.04683303833008], [38.44139, 106.2275, 29.121219635009766], [27.8381, 113.143, 26.18659782409668], [31.2703, 120.613, -3.2116434574127197], [22.3708, 107.3701, -0.733104944229126], [36.1942, 117.1436, 45.56449508666992], [26.6272, 118.1756, 7.453042030334473], [33.1842, 106.9893, 24.48827362060547], [26.5697, 106.7164, 9.906310081481934], [29.5953, 105.0331, 19.134090423583984], [39.6719, 106.8219, 31.00362777709961], [31.8934, 102.2402, 19.12479019165039], [30.1506, 104.6356, 19.794828414916992], [36.6739, 117.114, 45.3380241394043], [30.0475, 101.9603, 11.085692405700684], [40.6532, 109.8756, 26.093219757080078], [23.01277778, 113.7944444, 2.166276454925537], [30.8244, 120.07, -0.7828962206840515], [45.6033, 84.8861, 32.91012191772461], [22.8693, 112.844, 1.6309165954589844], [36.1758, 117.1081, 46.158905029296875], [33.8399, 115.8067, 51.446895599365234], [43.768, 87.6046, 31.835445404052734], [22.2294, 113.495, 2.2502667903900146], [26.8919, 112.6006, 19.643558502197266], [27.8036, 114.3442, 24.801591873168945], [45.61, 126.615, 4.356287956237793], [33.965, 118.283, 22.271377563476562], [31.56, 120.294, -3.3061418533325195], [34.7545, 113.681, 65.15058898925781], [30.2819, 109.4689, 39.1472282409668], [32.6028, 116.8556, 33.29903793334961], [43.8667, 125.417, 0.8159430623054504], [22.8172, 114.3244, 2.7315094470977783], [29.2786, 117.1983, 16.919584274291992], [35.259, 113.1992, 66.64505004882812], [41.8828, 123.9169, -5.325559616088867], [32.9444, 117.3575, 30.359275817871094], [27.9883, 116.3553, 19.406232833862305], [38.843, 105.6975, 33.45117950439453], [39.3673, 112.4279, 36.478675842285156], [34.5667, 117.732, 32.954986572265625], [41.1636, 80.2828, 35.22492980957031], [33.575, 119.007, 9.884393692016602], [24.9624, 102.625, -1.014066457748413], [32.0144, 118.777, 7.5375823974609375], [43.84, 125.2786, 0.763891875743866], [34.3617, 108.7233, 30.13271713256836], [39.9419, 119.5369, -11.191224098205566], [38.2839, 109.7289, 14.505162239074707], [39.643, 118.144, 0.5972368717193604], [31.381, 120.999, -4.1280035972595215], [38.9194, 117.157, 24.350791931152344], [31.882, 120.55, -4.638463973999023], [32.2786, 118.3244, 14.888195991516113], [33.0323, 107.007, 25.84853172302246], [22.7906, 108.439, -0.16145645081996918], [38.1398, 114.5019, 63.333187103271484], [44.561, 129.61, 2.494258403778076], [30.8388, 106.1087, 28.031667709350586], [31.2472, 120.561, -3.050869941711426], [29.8264, 106.424, 27.571697235107422], [30.9447, 118.7581, 6.305775165557861], [41.1442, 123.0485, -8.065826416015625], [22.4137, 107.3476, -0.7176440954208374], [27.6178, 113.865, 23.87214469909668], [24.4175, 111.5269, 3.8088293075561523], [43.7256, 126.6772, 0.5042025446891785], [22.8561, 108.316, -0.23346184194087982], [37.177, 119.941, -5.11470890045166], [26.2378, 117.6028, 6.788031101226807], [43.9167, 125.323, 0.9108083248138428], [36.6377, 117.9544, 31.41476058959961], [23.2783, 113.568, 2.127135992050171], [24.8978, 118.5972, 6.941263198852539], [32.9673, 117.3536, 30.54200553894043], [34.7745, 117.5852, 36.25395965576172], [25.2178, 110.2869, 7.411747932434082], [43.8358, 126.5844, 0.6806532740592957], [36.1855, 113.0844444, 67.13565826416016], [24.6967, 108.1009, 3.365119695663452], [30.4519, 114.8858, 33.82526779174805], [31.2036, 121.478, -3.618382215499878], [24.3702, 102.5389, -1.836635708808899], [37.8561, 113.5922, 63.85775375366211], [34.3708, 107.1586, 15.146275520324707], [34.3547, 107.1431, 15.169873237609863], [31.238, 121.4, -3.738793134689331], [41.9086, 123.5953, -5.414467811584473], [33.0014, 97.0, 21.061262130737305], [41.7561, 123.535, -5.898532867431641], [23.9011, 106.6103, -0.42432400584220886], [36.7339, 119.0841, 10.731791496276855], [36.0875, 111.5025, 51.99112319946289], [25.8333, 114.9322, 10.62425422668457], [31.89708, 121.1518, -5.680556297302246], [23.8982, 100.0782, -3.078090190887451], [33.3261, 105.0822, 18.389719009399414], [29.7128, 118.3057, 9.882051467895508], [44.0114, 87.2997, 32.06338882446289], [45.7258, 126.646, 4.631291389465332], [28.4569, 118.0058, 12.791176795959473], [22.5908, 114.263, 2.7855539321899414], [23.7233, 114.6892, 3.2931997776031494], [35.0147, 110.9956, 48.78656005859375], [38.8394, 117.457, 20.86393928527832], [30.7946, 120.744, -1.9586331844329834], [22.735, 108.328, -0.19175708293914795], [27.3125, 105.2864, 8.634044647216797], [32.6389, 110.7258, 45.180511474609375], [37.4489, 116.3189, 54.791683197021484], [23.08, 114.4053, 2.6330509185791016], [28.6459, 121.273, 5.647993564605713], [39.7153, 76.1861, 37.051177978515625], [30.4576, 106.6303, 30.48994255065918], [33.6284, 116.9677, 38.66850662231445], [22.7833, 108.244, -0.24120771884918213], [22.5811, 113.074, 1.859200119972229], [37.0967, 114.4821, 70.84162139892578], [30.6197, 114.2836, 37.14579772949219], [44.3336, 84.8983, 33.18634033203125], [36.1542, 113.1097, 67.32994079589844], [30.2456, 120.127, 0.6664411425590515], [29.6219, 106.65, 27.743640899658203], [38.8343, 105.6775, 33.52176284790039], [24.428, 98.5842, -1.847861886024475], [25.0661, 117.0256, 5.389201641082764], [38.5247, 102.1878, 36.58385467529297], [28.5819, 112.3744, 33.54721450805664], [31.656, 120.734, -4.401515007019043], [36.3083, 120.1964, -6.558223247528076], [24.9617, 118.6108, 6.958442687988281], [41.0228, 123.1289, -8.405561447143555], [31.1278, 97.1804, 13.262499809265137], [36.792, 119.952, -4.251882076263428], [23.4168, 103.386, -2.5170187950134277], [42.2725, 118.9572, -2.995286464691162], [29.5983, 106.296, 26.208271026611328], [36.087, 114.358, 70.79102325439453], [36.283, 120.008, -3.9145915508270264], [40.1461, 124.3933, -9.600582122802734], [25.0836, 102.728, -0.8236751556396484], [41.8472, 123.428, -5.680452823638916], [29.9972, 101.9533, 10.858345031738281], [27.8336, 113.251, 26.097780227661133], [30.4551, 106.6388, 30.524463653564453], [41.1556, 122.0247, -8.650206565856934], [26.5689, 106.6971, 9.83710765838623], [39.9522, 116.434, 16.746427536010742], [41.7089, 123.439, -6.073534965515137], [37.9358, 102.6469, 38.974365234375], [24.7121, 108.2134, 3.552205801010132], [31.7133, 118.6439, 8.677667617797852], [40.1194, 124.3678, -9.69233512878418], [38.817, 106.3394, 30.25226402282715], [35.303, 113.883, 67.98845672607422], [37.4658, 118.5019, 17.33765411376953], [30.7636, 106.0642, 27.732439041137695], [32.4535, 105.8945, 22.641952514648438], [38.5061, 102.1708, 36.623043060302734], [35.5102, 102.0199, 38.6346549987793], [38.8632, 115.493, 46.908843994140625], [31.87888889, 106.7513889, 30.535837173461914], [25.8481, 114.9461, 10.70510196685791], [31.92, 120.268, -4.085314750671387], [26.585, 101.7169, 0.2917380630970001], [36.2092, 117.7181, 36.00326919555664], [43.8228, 126.4978, 0.6662333607673645], [35.0896, 118.4023, 23.21772003173828], [28.76389, 104.6417, 13.507092475891113], [22.7633, 100.98, -2.435019016265869], [28.7867, 104.6061, 13.464865684509277], [42.9559, 89.1673, 30.703096389770508], [31.7039, 119.935, -2.5100014209747314], [23.1422, 113.235, 1.8297406435012817], [30.9075, 113.942, 39.172725677490234], [37.5436, 121.3181, -16.325908660888672], [31.2864, 120.628, -3.2816643714904785], [37.9723, 106.196, 26.666563034057617], [27.0983, 115.0075, 19.474308013916016], [34.5101, 109.5293, 36.15315628051758], [24.81805556, 118.1569444, 6.344276428222656], [36.6489, 116.943, 48.21967697143555], [25.8226, 113.0116, 11.941180229187012], [36.0756, 103.712, 36.16563034057617], [28.2642, 117.0564, 17.402244567871094], [31.453, 121.115, -4.4073052406311035], [40.7514, 120.8392, -10.83004093170166], [36.2403, 120.4001, -8.952102661132812], [29.8686, 114.3372, 34.966365814208984], [22.75, 114.085, 2.5352470874786377], [40.8062, 111.7277, 24.829187393188477], [25.1081, 99.1678, -2.138380289077759], [25.2697, 110.2819, 7.735682964324951], [28.6969, 115.973, 22.695068359375], [28.2558, 109.6414, 27.88767433166504], [39.1495, 117.3916, 17.49372100830078], [33.9461, 116.7844, 42.69694137573242], [28.3169, 109.7325, 28.40570068359375], [46.8267, 130.3961, 7.0688557624816895], [37.5136, 111.1297, 38.52936935424805], [40.1438, 116.72, 10.124003410339355], [29.8211, 114.3231, 34.929779052734375], [47.3227, 123.9483, 8.49003791809082], [29.2956, 117.2461, 16.687604904174805], [29.3864, 117.3097, 16.535541534423828], [28.6064, 115.9083, 22.58646583557129], [36.061, 114.483, 70.52513122558594], [28.4622, 117.9511, 13.130636215209961], [29.4892, 106.634, 27.125816345214844], [34.4714, 100.2561, 34.040367126464844], [39.6295, 118.1997, 0.1192706897854805], [36.1942, 117.0881, 46.475868225097656], [41.2553, 123.15, -7.637012958526611], [30.9285, 113.9153, 39.33610916137695], [21.8586, 111.9786, 1.3037188053131104], [24.299, 109.4221, 2.605424642562866], [27.7914, 114.3703, 24.69928550720215], [39.2133, 117.1837, 19.525224685668945], [29.6816, 115.9872, 25.115345001220703], [26.9089, 112.5328, 19.76592254638672], [44.9079, 82.0485, 34.308895111083984], [36.1912, 113.1569, 67.6026611328125], [35.7067, 107.6364, 7.998999118804932], [29.6292, 91.0834, 16.320344924926758], [36.1939, 113.0972, 67.21198272705078], [34.8019, 113.675, 65.40994262695312], [40.9161, 117.9664, -5.894909381866455], [24.3694, 102.5778, -1.8057560920715332], [23.1331, 113.26, 1.8458422422409058], [37.1013, 79.9117, 35.59357452392578], [41.7192, 86.2022, 32.251033782958984], [26.2708, 117.6353, 6.855950832366943], [28.9404, 118.871, 7.859044551849365], [23.7106, 113.0208, 2.262737274169922], [36.2403, 120.6659, -11.882091522216797], [22.7267, 114.24, 2.689568042755127], [34.7975, 114.3733, 64.97378540039062], [40.0181, 119.7624, -11.944183349609375], [40.5546, 110.0377, 25.5404052734375], [28.4586, 119.93, 7.020207405090332], [36.67, 116.93, 48.37718200683594], [34.7781, 114.3389, 64.94054412841797], [30.89556, 120.0875, -0.9963930249214172], [41.7511, 86.1461, 32.289886474609375], [47.8515, 88.1267, 31.152387619018555], [24.9117, 118.5819, 6.914560794830322], [23.5486, 116.3242, 4.43775749206543], [37.8694, 113.5689, 63.622615814208984], [27.7044, 111.9892, 25.22618865966797], [40.1114, 113.2803, 30.251420974731445], [39.3606, 112.4549, 36.82807540893555], [45.6289, 122.8444, 5.811899662017822], [27.6231, 113.8447, 23.9144344329834], [28.4514, 119.914, 7.054085731506348], [29.6475, 91.0874, 16.330656051635742], [34.2303, 108.883, 32.667171478271484], [29.4251, 113.1493, 37.091129302978516], [38.3344, 109.7414, 14.611333847045898], [43.8711, 87.5525, 31.88981819152832], [38.9389, 100.4497, 31.66777992248535], [37.68277778, 112.7194444, 58.475067138671875], [39.1292, 106.7096, 29.725021362304688], [34.1781, 117.1694, 39.57123565673828], [46.0756, 121.9462, 6.845605373382568], [37.85, 113.5158, 63.47188949584961], [31.7712, 116.5661, 30.435575485229492], [39.3514, 112.44, 36.83548355102539], [27.6486, 106.8906, 17.129636764526367], [41.1219, 121.2008, -9.301987648010254], [44.5782, 129.6115, 2.5299863815307617], [29.709, 106.452, 27.297035217285156], [23.06, 113.7480556, 2.1414947509765625], [23.1886, 112.863, 1.5938212871551514], [41.7347, 123.2444, -6.050637245178223], [21.2567, 110.4558, 0.24367153644561768], [27.3361, 103.7225, 4.308652877807617], [37.9311, 102.6219, 38.967247009277344], [33.6406, 114.6369, 56.22801208496094], [31.8572, 117.25, 25.037410736083984], [35.5975, 104.6169, 27.217557907104492], [42.8947, 125.1358, -1.9847692251205444], [29.2313, 91.7608, 13.93132495880127], [39.5343, 116.7464, 20.325115203857422], [40.7094, 122.2703, -10.288211822509766], [43.1594, 124.3711, -1.509536862373352], [30.6414, 114.2131, 37.43173599243164], [36.44, 120.61, -11.697530746459961], [29.4892, 106.468, 26.455337524414062], [28.9703, 111.6975, 36.007564544677734], [38.0108, 112.434, 53.05939483642578], [31.4867, 120.269, -3.0517642498016357], [34.429, 115.6558, 56.770408630371094], [38.01777778, 114.5330556, 64.66026306152344], [44.3075, 86.0697, 32.80974197387695], [27.9647, 116.385, 19.23818588256836], [30.2043, 114.8949, 33.05451202392578], [29.3678, 113.1772, 36.836185455322266], [29.1128, 119.6533, 4.828060150146484], [25.9118, 114.9064, 11.180119514465332], [26.0392, 119.303, 8.049678802490234], [23.1569, 113.281, 1.8585647344589233], [45.5422, 126.979, 4.185389518737793], [37.7394, 112.5583, 56.56825256347656], [28.6542, 121.419, 5.540223121643066], [26.5939, 104.89, 3.8310070037841797], [41.8625, 124.0383, -5.333154678344727], [35.7511, 114.2956, 69.8784408569336], [31.7586, 119.996, -2.8389406204223633], [38.8516, 105.724, 33.34894561767578], [36.6868, 117.0684, 46.051551818847656], [26.0753, 119.315, 8.069849967956543], [39.9716, 116.473, 15.95078182220459], [46.7432, 82.9994, 33.93098831176758], [32.41361, 119.458, -0.02845819853246212], [38.8416, 115.4612, 47.62226486206055], [30.5489, 117.0486, 21.015884399414062], [27.4948, 114.0944, 23.009008407592773], [27.8867, 113.095, 26.65612030029297], [23.0528, 112.471, 1.3649532794952393], [26.8733, 112.6197, 19.524641036987305], [35.4894, 112.8664, 65.81768035888672], [47.2753, 130.261, 7.66442346572876], [23.8844, 106.6527, -0.4003979563713074], [40.7866, 111.551, 24.944072723388672], [43.6267, 122.2603, 0.24723970890045166], [36.10139, 111.505, 51.96847915649414], [28.56, 112.3439, 33.34635543823242], [45.7319, 126.685, 4.643517017364502], [40.0844, 113.2711, 30.569913864135742], [37.4014, 121.5992, -16.956663131713867], [30.6133, 105.68, 25.87837028503418], [30.7478, 120.726, -1.7856940031051636], [28.1178, 112.9844, 29.085037231445312], [28.7994, 115.742, 24.393369674682617], [25.067, 102.681, -0.8571395874023438], [32.0005, 120.86, -5.428328990936279], [26.5017, 101.7453, 0.2025776356458664], [34.5814, 105.7281, 13.348546028137207], [43.91, 125.287, 0.8989251852035522], [46.3991, 124.8847, 6.473407745361328], [31.8531, 106.7594, 30.65180206298828], [33.9528, 118.293, 22.081140518188477], [45.6175, 122.8211, 5.804397106170654], [19.9507, 110.576, 0.6899154782295227], [23.4792, 111.2897, 1.2251173257827759], [32.1383, 114.0614, 46.74049758911133], [30.8023, 106.0789, 27.83104133605957], [34.2324, 108.94, 33.131134033203125], [36.11, 114.286, 70.93428802490234], [31.96, 120.913, -5.4182939529418945], [32.8928, 115.8275, 43.84858322143555], [31.7694, 120.0469, -3.030276298522949], [31.6842, 120.288, -3.590834379196167], [47.3636, 123.9305, 8.556321144104004], [28.7442, 115.813, 23.79502296447754], [23.2536, 116.4019, 4.814111709594727], [23.4714, 116.7519, 4.9761834144592285], [34.6511, 112.3939, 60.937408447265625], [35.0622, 118.2939, 24.828824996948242], [28.6839, 115.8886, 23.098825454711914], [41.8469, 123.81, -5.48328161239624], [24.3289, 116.1278, 4.271352291107178], [34.3497, 107.2058, 15.757987022399902], [42.0352, 119.2654, -4.534921169281006], [31.0386, 112.2211, 42.53000259399414], [40.0758, 113.2994, 30.746883392333984], [36.61763, 114.5129, 71.23439025878906], [29.4822, 106.364, 26.001115798950195], [35.94, 104.148, 32.68846893310547], [27.2272, 111.4328, 22.209997177124023], [25.1328, 99.1711, -2.125051498413086], [40.6288, 109.8654, 26.03141975402832]],\\n\",\n       \"                {&quot;blur&quot;: 15, &quot;gradient&quot;: {&quot;0.0&quot;: &quot;#003c86&quot;, &quot;0.05&quot;: &quot;#003c86&quot;, &quot;0.1&quot;: &quot;#003c86&quot;, &quot;0.15&quot;: &quot;#003c86&quot;, &quot;0.2&quot;: &quot;#003c86&quot;, &quot;0.25&quot;: &quot;#003c86&quot;, &quot;0.3&quot;: &quot;#003c86&quot;, &quot;0.35&quot;: &quot;#003c86&quot;, &quot;0.4&quot;: &quot;#003c86&quot;, &quot;0.45&quot;: &quot;#003c86&quot;, &quot;0.5&quot;: &quot;#003c86&quot;, &quot;0.55&quot;: &quot;#00515e&quot;, &quot;0.6&quot;: &quot;#00515e&quot;, &quot;0.65&quot;: &quot;#00515e&quot;, &quot;0.7&quot;: &quot;#00515e&quot;, &quot;0.75&quot;: &quot;#00515e&quot;, &quot;0.8&quot;: &quot;#00515e&quot;, &quot;0.85&quot;: &quot;#00515e&quot;, &quot;0.9&quot;: &quot;#00515e&quot;, &quot;0.95&quot;: &quot;#00515e&quot;}, &quot;maxZoom&quot;: 18, &quot;minOpacity&quot;: 0.5, &quot;radius&quot;: 10}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            heat_map_cedb9345fb73888aa819700fa57a4712.addTo(map_50e90118e4c026ed133951354ffcf946);\\n\",\n       \"        \\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13b9d9ec550>\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"visualizer.coefs_heatmap('bias', colors=['blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"490C9E4D01E24E818DEDC3F001EF6984\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 7 结果对比\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"02C7D625B6CE4D6484C5580974B551C2\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"实测数据\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {\n    \"id\": \"EC3B7BAFEA5048E885794D7948650D88\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_06207e3c7f1c9d412eccf4953f5de56a {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_06207e3c7f1c9d412eccf4953f5de56a&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_06207e3c7f1c9d412eccf4953f5de56a = L.map(\\n\",\n       \"                &quot;map_06207e3c7f1c9d412eccf4953f5de56a&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [33.26531340151988, 113.38927599894886],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_2f2c86024f936e61d06ad7ed1e9c353a = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_2f2c86024f936e61d06ad7ed1e9c353a.addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d578c17653d661bb0a489239a23c57ef = L.circleMarker(\\n\",\n       \"                [30.8388, 106.1087],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_44a8aceec81ee58475612fd95f7a674c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_69f5a7b90419dd8d51b432e506337bd0 = $(`&lt;div id=&quot;html_69f5a7b90419dd8d51b432e506337bd0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1087             latitude:30.8388             PM2_5:42.04634831             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_44a8aceec81ee58475612fd95f7a674c.setContent(html_69f5a7b90419dd8d51b432e506337bd0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d578c17653d661bb0a489239a23c57ef.bindPopup(popup_44a8aceec81ee58475612fd95f7a674c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_393a2a563a83a6aee0ff847584431ef7 = L.circleMarker(\\n\",\n       \"                [36.1758, 117.1081],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb9b67b277422cc3a188127f47da9a11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_28b3c54cda3f988def684d133d9ff51a = $(`&lt;div id=&quot;html_28b3c54cda3f988def684d133d9ff51a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1081             latitude:36.1758             PM2_5:49.33147632             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb9b67b277422cc3a188127f47da9a11.setContent(html_28b3c54cda3f988def684d133d9ff51a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_393a2a563a83a6aee0ff847584431ef7.bindPopup(popup_fb9b67b277422cc3a188127f47da9a11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7e86bce2153f4fe1e8d97ffa0a801e02 = L.circleMarker(\\n\",\n       \"                [39.1067, 117.1941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_804f3a8d9ac7e3684ed4bf87fec5f19b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_642c7b1b974159abec80ecfa7a56be4d = $(`&lt;div id=&quot;html_642c7b1b974159abec80ecfa7a56be4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1941             latitude:39.1067             PM2_5:47.90083799             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_804f3a8d9ac7e3684ed4bf87fec5f19b.setContent(html_642c7b1b974159abec80ecfa7a56be4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7e86bce2153f4fe1e8d97ffa0a801e02.bindPopup(popup_804f3a8d9ac7e3684ed4bf87fec5f19b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c02c3f78c8f85f1b81b92f4d1c9525a = L.circleMarker(\\n\",\n       \"                [32.1142, 112.1825],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_67f6e19895b7ac21ddd711e3354947fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_234d800e0f68f803acccfd75f8cf3a71 = $(`&lt;div id=&quot;html_234d800e0f68f803acccfd75f8cf3a71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1825             latitude:32.1142             PM2_5:62.29295775             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_67f6e19895b7ac21ddd711e3354947fc.setContent(html_234d800e0f68f803acccfd75f8cf3a71);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c02c3f78c8f85f1b81b92f4d1c9525a.bindPopup(popup_67f6e19895b7ac21ddd711e3354947fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e251d1695d436413d5e81cfb98671767 = L.circleMarker(\\n\",\n       \"                [36.792, 119.952],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f6afe6de0dc282da636b9251aab7582d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b49acc0bccd2de9a0dd90c74fdbdd12 = $(`&lt;div id=&quot;html_7b49acc0bccd2de9a0dd90c74fdbdd12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.952             latitude:36.792             PM2_5:32.28248588             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f6afe6de0dc282da636b9251aab7582d.setContent(html_7b49acc0bccd2de9a0dd90c74fdbdd12);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e251d1695d436413d5e81cfb98671767.bindPopup(popup_f6afe6de0dc282da636b9251aab7582d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_faee8d02876dcccbb63c3ba1985767cc = L.circleMarker(\\n\",\n       \"                [40.6532, 109.8756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7bbc7df000e378e8536072d1a2188a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7430fdd9def79c37e63ec250b394b2a2 = $(`&lt;div id=&quot;html_7430fdd9def79c37e63ec250b394b2a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8756             latitude:40.6532             PM2_5:45.81005587             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7bbc7df000e378e8536072d1a2188a0.setContent(html_7430fdd9def79c37e63ec250b394b2a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_faee8d02876dcccbb63c3ba1985767cc.bindPopup(popup_c7bbc7df000e378e8536072d1a2188a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_720d2fa7a108e4dc72fc9922eb271ddf = L.circleMarker(\\n\",\n       \"                [36.0875, 111.5025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b3cc02e8d46d1a9ac876c4d3de13165e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3dd00ac2bb84f18ab1a9c64d6007a413 = $(`&lt;div id=&quot;html_3dd00ac2bb84f18ab1a9c64d6007a413&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5025             latitude:36.0875             PM2_5:81.15416667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b3cc02e8d46d1a9ac876c4d3de13165e.setContent(html_3dd00ac2bb84f18ab1a9c64d6007a413);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_720d2fa7a108e4dc72fc9922eb271ddf.bindPopup(popup_b3cc02e8d46d1a9ac876c4d3de13165e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_96d0c90b9912d07acc772756c4349e7e = L.circleMarker(\\n\",\n       \"                [38.8343, 105.6775],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b7008438fb264bbca6652116d702a88f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1ed2e6631c6a47e96e53f134df19a6d5 = $(`&lt;div id=&quot;html_1ed2e6631c6a47e96e53f134df19a6d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6775             latitude:38.8343             PM2_5:29.56703911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b7008438fb264bbca6652116d702a88f.setContent(html_1ed2e6631c6a47e96e53f134df19a6d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_96d0c90b9912d07acc772756c4349e7e.bindPopup(popup_b7008438fb264bbca6652116d702a88f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d8117c50f458accac747163de142041 = L.circleMarker(\\n\",\n       \"                [22.7906, 108.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_046faceedd23e66a03828eaf735616ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_340fe472f696304ddcf5ce6a8a3795ba = $(`&lt;div id=&quot;html_340fe472f696304ddcf5ce6a8a3795ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.439             latitude:22.7906             PM2_5:33.82303371             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_046faceedd23e66a03828eaf735616ab.setContent(html_340fe472f696304ddcf5ce6a8a3795ba);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d8117c50f458accac747163de142041.bindPopup(popup_046faceedd23e66a03828eaf735616ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d99d8c471e4bc04d5d00f31202e379e5 = L.circleMarker(\\n\",\n       \"                [37.4489, 116.3189],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_48251596f366e79a66c330f46440f5c8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc50bfbec681162bc25084b7aa31159a = $(`&lt;div id=&quot;html_fc50bfbec681162bc25084b7aa31159a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3189             latitude:37.4489             PM2_5:57.425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_48251596f366e79a66c330f46440f5c8.setContent(html_fc50bfbec681162bc25084b7aa31159a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d99d8c471e4bc04d5d00f31202e379e5.bindPopup(popup_48251596f366e79a66c330f46440f5c8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b5bad19d4a3e691d93cd600a06b55aa9 = L.circleMarker(\\n\",\n       \"                [38.44139, 106.2275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd7945afe6a7e42677193640d24e8bb1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9746e110d5ebeee3b80e8164f543c7d8 = $(`&lt;div id=&quot;html_9746e110d5ebeee3b80e8164f543c7d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2275             latitude:38.44139             PM2_5:34.7254902             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd7945afe6a7e42677193640d24e8bb1.setContent(html_9746e110d5ebeee3b80e8164f543c7d8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b5bad19d4a3e691d93cd600a06b55aa9.bindPopup(popup_cd7945afe6a7e42677193640d24e8bb1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e153f005e24242b065560b5484f52dc = L.circleMarker(\\n\",\n       \"                [23.01277778, 113.7944444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_200c214251ddd2397bc5c95fc08c2631 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54ef44e00934c733dbabd9909eb3c315 = $(`&lt;div id=&quot;html_54ef44e00934c733dbabd9909eb3c315&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7944444             latitude:23.01277778             PM2_5:33.54142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_200c214251ddd2397bc5c95fc08c2631.setContent(html_54ef44e00934c733dbabd9909eb3c315);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e153f005e24242b065560b5484f52dc.bindPopup(popup_200c214251ddd2397bc5c95fc08c2631)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_39918873e38b9203763af9bf2c244ec2 = L.circleMarker(\\n\",\n       \"                [42.2725, 118.9572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bbb053b6ad1548d534c0543182ef0a7e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0f5144d52c9c6345f925d83336692b6 = $(`&lt;div id=&quot;html_d0f5144d52c9c6345f925d83336692b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9572             latitude:42.2725             PM2_5:25.29608939             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bbb053b6ad1548d534c0543182ef0a7e.setContent(html_d0f5144d52c9c6345f925d83336692b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_39918873e38b9203763af9bf2c244ec2.bindPopup(popup_bbb053b6ad1548d534c0543182ef0a7e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_14af1665f3bd36aef669342614ac0cab = L.circleMarker(\\n\",\n       \"                [34.7545, 113.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d861863f0e08945d998faad3b0c31033 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdb4d13c91b7bb82c45e60735240237d = $(`&lt;div id=&quot;html_bdb4d13c91b7bb82c45e60735240237d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.681             latitude:34.7545             PM2_5:65.23728814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d861863f0e08945d998faad3b0c31033.setContent(html_bdb4d13c91b7bb82c45e60735240237d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_14af1665f3bd36aef669342614ac0cab.bindPopup(popup_d861863f0e08945d998faad3b0c31033)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3e4ff8f0074c0e156c585c028f2ac26 = L.circleMarker(\\n\",\n       \"                [31.1278, 97.1804],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c65b47b438ce7708cd2326b5be50ca26 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_838149b8649f684b295fd751ed5c2f0f = $(`&lt;div id=&quot;html_838149b8649f684b295fd751ed5c2f0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.1804             latitude:31.1278             PM2_5:19.72532895             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c65b47b438ce7708cd2326b5be50ca26.setContent(html_838149b8649f684b295fd751ed5c2f0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3e4ff8f0074c0e156c585c028f2ac26.bindPopup(popup_c65b47b438ce7708cd2326b5be50ca26)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6930150c3c148d5316bf74a0cf4cc5e3 = L.circleMarker(\\n\",\n       \"                [44.3336, 84.8983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d3b383793353b8da2ebea22cc30b7b79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7163b8e4ec5bb37e3432120e7dff4333 = $(`&lt;div id=&quot;html_7163b8e4ec5bb37e3432120e7dff4333&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8983             latitude:44.3336             PM2_5:34.77683616             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d3b383793353b8da2ebea22cc30b7b79.setContent(html_7163b8e4ec5bb37e3432120e7dff4333);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6930150c3c148d5316bf74a0cf4cc5e3.bindPopup(popup_d3b383793353b8da2ebea22cc30b7b79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3780dda1fb19a4ebad31dc4c4debb251 = L.circleMarker(\\n\",\n       \"                [36.6739, 117.114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a948383f1ca6addd3ff8bf042f163839 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d6ed8cc5d540750962d55011ff382653 = $(`&lt;div id=&quot;html_d6ed8cc5d540750962d55011ff382653&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.114             latitude:36.6739             PM2_5:50.28088235             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a948383f1ca6addd3ff8bf042f163839.setContent(html_d6ed8cc5d540750962d55011ff382653);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3780dda1fb19a4ebad31dc4c4debb251.bindPopup(popup_a948383f1ca6addd3ff8bf042f163839)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_724b433cd085e61a790f62c72bd3c6a9 = L.circleMarker(\\n\",\n       \"                [33.965, 118.283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5224a8013bd96cd962dcd7f384db8fd7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6a00e8eb14f39b18e8e7041c3e71b99 = $(`&lt;div id=&quot;html_f6a00e8eb14f39b18e8e7041c3e71b99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.283             latitude:33.965             PM2_5:55.98459384             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5224a8013bd96cd962dcd7f384db8fd7.setContent(html_f6a00e8eb14f39b18e8e7041c3e71b99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_724b433cd085e61a790f62c72bd3c6a9.bindPopup(popup_5224a8013bd96cd962dcd7f384db8fd7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0546af921827b97aecd0dc04c32ce563 = L.circleMarker(\\n\",\n       \"                [35.259, 113.1992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_35f8f72f0b76798c92dbb6a5da98e405 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58580ea346a6495b5864da43593e6602 = $(`&lt;div id=&quot;html_58580ea346a6495b5864da43593e6602&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1992             latitude:35.259             PM2_5:66.3319209             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_35f8f72f0b76798c92dbb6a5da98e405.setContent(html_58580ea346a6495b5864da43593e6602);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0546af921827b97aecd0dc04c32ce563.bindPopup(popup_35f8f72f0b76798c92dbb6a5da98e405)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_de4be43b37acd2aaf558967fb3adb96c = L.circleMarker(\\n\",\n       \"                [31.56, 120.294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f487569316a6c643eeee8998c76961d5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1cab8eecd05fc282cb7e1040ebfc6853 = $(`&lt;div id=&quot;html_1cab8eecd05fc282cb7e1040ebfc6853&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.294             latitude:31.56             PM2_5:43.77966102             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f487569316a6c643eeee8998c76961d5.setContent(html_1cab8eecd05fc282cb7e1040ebfc6853);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_de4be43b37acd2aaf558967fb3adb96c.bindPopup(popup_f487569316a6c643eeee8998c76961d5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_658e22fcde2266a18b6dcf2c44204e03 = L.circleMarker(\\n\",\n       \"                [24.3702, 102.5389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_01232e5901aa55e50e981486d45f0e0e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fef508394a1045f570da7e302b766b7d = $(`&lt;div id=&quot;html_fef508394a1045f570da7e302b766b7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5389             latitude:24.3702             PM2_5:29.84240688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_01232e5901aa55e50e981486d45f0e0e.setContent(html_fef508394a1045f570da7e302b766b7d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_658e22fcde2266a18b6dcf2c44204e03.bindPopup(popup_01232e5901aa55e50e981486d45f0e0e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7c814d91aa4762240fd5aa95bd4fc28b = L.circleMarker(\\n\",\n       \"                [41.7089, 123.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55e10b35444287e486dc512a0859b227 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0030cb76f02fa490dd6b15e6852c48ab = $(`&lt;div id=&quot;html_0030cb76f02fa490dd6b15e6852c48ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.439             latitude:41.7089             PM2_5:36.12638889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55e10b35444287e486dc512a0859b227.setContent(html_0030cb76f02fa490dd6b15e6852c48ab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7c814d91aa4762240fd5aa95bd4fc28b.bindPopup(popup_55e10b35444287e486dc512a0859b227)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45141c9fb213ab5aacbaa7d854c81d55 = L.circleMarker(\\n\",\n       \"                [30.2819, 109.4689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d7e6583cd7ca17597c416b066990a1a2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d0b7290a866302377aeb941cff4201b2 = $(`&lt;div id=&quot;html_d0b7290a866302377aeb941cff4201b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4689             latitude:30.2819             PM2_5:41.53792135             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d7e6583cd7ca17597c416b066990a1a2.setContent(html_d0b7290a866302377aeb941cff4201b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45141c9fb213ab5aacbaa7d854c81d55.bindPopup(popup_d7e6583cd7ca17597c416b066990a1a2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_24565b58681f1076fc05a9b1d3a670c7 = L.circleMarker(\\n\",\n       \"                [28.5819, 112.3744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d33131cd9a78a11fa6af4360964cfab6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_801bac3dc7dfd420674cb2bcc37e476f = $(`&lt;div id=&quot;html_801bac3dc7dfd420674cb2bcc37e476f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3744             latitude:28.5819             PM2_5:32.59357542             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d33131cd9a78a11fa6af4360964cfab6.setContent(html_801bac3dc7dfd420674cb2bcc37e476f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_24565b58681f1076fc05a9b1d3a670c7.bindPopup(popup_d33131cd9a78a11fa6af4360964cfab6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_499c99c334d13e595bed03c529f20fb3 = L.circleMarker(\\n\",\n       \"                [24.7121, 108.2134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_de95d4dc7f8e7d33d564ea092171ef5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bd3cd7cc35824bfa65971c2bbba7cf33 = $(`&lt;div id=&quot;html_bd3cd7cc35824bfa65971c2bbba7cf33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.2134             latitude:24.7121             PM2_5:28.12883436             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_de95d4dc7f8e7d33d564ea092171ef5a.setContent(html_bd3cd7cc35824bfa65971c2bbba7cf33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_499c99c334d13e595bed03c529f20fb3.bindPopup(popup_de95d4dc7f8e7d33d564ea092171ef5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bd461be14f22bb0b5e0e236c7c5d2eba = L.circleMarker(\\n\",\n       \"                [43.768, 87.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c7d70b5cb01c353cd93c577fb33cdc2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58c669b0d3ad880be1b849ec61daa8df = $(`&lt;div id=&quot;html_58c669b0d3ad880be1b849ec61daa8df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6046             latitude:43.768             PM2_5:53.62608696             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c7d70b5cb01c353cd93c577fb33cdc2.setContent(html_58c669b0d3ad880be1b849ec61daa8df);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bd461be14f22bb0b5e0e236c7c5d2eba.bindPopup(popup_9c7d70b5cb01c353cd93c577fb33cdc2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f158ef393d8517e7a27d324e2f01bd97 = L.circleMarker(\\n\",\n       \"                [32.9444, 117.3575],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8d76c32b58185cfb80e8828d810c0688 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_05e57a6ba0dd3c1347da69de560e1f8f = $(`&lt;div id=&quot;html_05e57a6ba0dd3c1347da69de560e1f8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3575             latitude:32.9444             PM2_5:63.05042017             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8d76c32b58185cfb80e8828d810c0688.setContent(html_05e57a6ba0dd3c1347da69de560e1f8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f158ef393d8517e7a27d324e2f01bd97.bindPopup(popup_8d76c32b58185cfb80e8828d810c0688)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_08a1fd118aef7e6357006e35bd6e6478 = L.circleMarker(\\n\",\n       \"                [23.08, 114.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a51406de9c3a483a8a043e47cce8a892 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9b9ef0f27a3112a5a5979ee89c2ff0e7 = $(`&lt;div id=&quot;html_9b9ef0f27a3112a5a5979ee89c2ff0e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4053             latitude:23.08             PM2_5:28.84733894             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a51406de9c3a483a8a043e47cce8a892.setContent(html_9b9ef0f27a3112a5a5979ee89c2ff0e7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_08a1fd118aef7e6357006e35bd6e6478.bindPopup(popup_a51406de9c3a483a8a043e47cce8a892)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d17ce4cf50ea87255663cf825b12c6fe = L.circleMarker(\\n\",\n       \"                [23.2783, 113.568],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_96ece19fe43e8dcfd0ad6aa53c0cb8ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_637fba5c2bbc4a9ce69496e521492fef = $(`&lt;div id=&quot;html_637fba5c2bbc4a9ce69496e521492fef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.568             latitude:23.2783             PM2_5:28.38128492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_96ece19fe43e8dcfd0ad6aa53c0cb8ee.setContent(html_637fba5c2bbc4a9ce69496e521492fef);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d17ce4cf50ea87255663cf825b12c6fe.bindPopup(popup_96ece19fe43e8dcfd0ad6aa53c0cb8ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_74cc72da217061aba40ac3c7406f7b33 = L.circleMarker(\\n\",\n       \"                [24.9624, 102.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_df146b841af01aa4504fe6df1b30773d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2758bd0121c86048996cd061a84dee3c = $(`&lt;div id=&quot;html_2758bd0121c86048996cd061a84dee3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.625             latitude:24.9624             PM2_5:26.83903134             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_df146b841af01aa4504fe6df1b30773d.setContent(html_2758bd0121c86048996cd061a84dee3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_74cc72da217061aba40ac3c7406f7b33.bindPopup(popup_df146b841af01aa4504fe6df1b30773d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dd31fa21b372119631290279c57fb0f = L.circleMarker(\\n\",\n       \"                [32.6028, 116.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ee48ddbbd7a1818a2731a79deb401fd5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a18f7b95a3fe6d16bddf868fcaafd8e = $(`&lt;div id=&quot;html_2a18f7b95a3fe6d16bddf868fcaafd8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8556             latitude:32.6028             PM2_5:56.07520891             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ee48ddbbd7a1818a2731a79deb401fd5.setContent(html_2a18f7b95a3fe6d16bddf868fcaafd8e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dd31fa21b372119631290279c57fb0f.bindPopup(popup_ee48ddbbd7a1818a2731a79deb401fd5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8b9f7c7f9176556ac881f72ea7730c42 = L.circleMarker(\\n\",\n       \"                [34.3708, 107.1586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d431aac6577a0d2926e3d0516f87f91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03e0fb610839027df9c7e0b987fc2b5d = $(`&lt;div id=&quot;html_03e0fb610839027df9c7e0b987fc2b5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1586             latitude:34.3708             PM2_5:43.64899713             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d431aac6577a0d2926e3d0516f87f91.setContent(html_03e0fb610839027df9c7e0b987fc2b5d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8b9f7c7f9176556ac881f72ea7730c42.bindPopup(popup_0d431aac6577a0d2926e3d0516f87f91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dafd0fbdc555be834cca0299526ef55c = L.circleMarker(\\n\",\n       \"                [45.61, 126.615],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_07ae714ffe1c0be789a9a67b19afd700 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e8c9ba93bb189e0dede96e99addcda0d = $(`&lt;div id=&quot;html_e8c9ba93bb189e0dede96e99addcda0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.615             latitude:45.61             PM2_5:34.97091413             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_07ae714ffe1c0be789a9a67b19afd700.setContent(html_e8c9ba93bb189e0dede96e99addcda0d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dafd0fbdc555be834cca0299526ef55c.bindPopup(popup_07ae714ffe1c0be789a9a67b19afd700)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_45a11183f54016b232b4b1279efae078 = L.circleMarker(\\n\",\n       \"                [40.1194, 124.3678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb2fcea2f0d8c56f4df0f14b50a6c391 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c85265d2548ebc2483e81984c62110e4 = $(`&lt;div id=&quot;html_c85265d2548ebc2483e81984c62110e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3678             latitude:40.1194             PM2_5:22.3557423             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb2fcea2f0d8c56f4df0f14b50a6c391.setContent(html_c85265d2548ebc2483e81984c62110e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_45a11183f54016b232b4b1279efae078.bindPopup(popup_eb2fcea2f0d8c56f4df0f14b50a6c391)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3f8009aa20b4a40147ee23af72b10e9 = L.circleMarker(\\n\",\n       \"                [41.0228, 123.1289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5f0ca79759a8473e3fddb76e0c7cda3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7723973b417d236e701312842e31a33d = $(`&lt;div id=&quot;html_7723973b417d236e701312842e31a33d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1289             latitude:41.0228             PM2_5:27.61384615             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5f0ca79759a8473e3fddb76e0c7cda3.setContent(html_7723973b417d236e701312842e31a33d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3f8009aa20b4a40147ee23af72b10e9.bindPopup(popup_c5f0ca79759a8473e3fddb76e0c7cda3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59307de4d605468ffd2e4e6a1ac465ee = L.circleMarker(\\n\",\n       \"                [31.238, 121.4],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_466d8beaade2d6335fe62d92f455c788 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bec42f6ec57c7a6c797a9feae848bd7a = $(`&lt;div id=&quot;html_bec42f6ec57c7a6c797a9feae848bd7a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.4             latitude:31.238             PM2_5:40.8079096             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_466d8beaade2d6335fe62d92f455c788.setContent(html_bec42f6ec57c7a6c797a9feae848bd7a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59307de4d605468ffd2e4e6a1ac465ee.bindPopup(popup_466d8beaade2d6335fe62d92f455c788)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_58ae7737cfade9cb6fca68f30f73834f = L.circleMarker(\\n\",\n       \"                [30.2456, 120.127],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2922dab3abb9992daa2b34a16fd2b266 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7428337584bb0d91d12fd10612acc4e5 = $(`&lt;div id=&quot;html_7428337584bb0d91d12fd10612acc4e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.127             latitude:30.2456             PM2_5:39.34916201             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2922dab3abb9992daa2b34a16fd2b266.setContent(html_7428337584bb0d91d12fd10612acc4e5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_58ae7737cfade9cb6fca68f30f73834f.bindPopup(popup_2922dab3abb9992daa2b34a16fd2b266)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0da7ec52b03fee45c1ce43648f7e1515 = L.circleMarker(\\n\",\n       \"                [38.5061, 102.1708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c822b6e245b2adafcf67f1921da8ebc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_60754197f18da7bd05ba01589b9f2645 = $(`&lt;div id=&quot;html_60754197f18da7bd05ba01589b9f2645&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1708             latitude:38.5061             PM2_5:24.38687151             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c822b6e245b2adafcf67f1921da8ebc.setContent(html_60754197f18da7bd05ba01589b9f2645);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0da7ec52b03fee45c1ce43648f7e1515.bindPopup(popup_3c822b6e245b2adafcf67f1921da8ebc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3727759a122dcc678ee63a3e07e89f56 = L.circleMarker(\\n\",\n       \"                [36.7339, 119.0841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f26668ec23001ce9170abb8c86611250 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0413179b1425afdfd49fa973ab158cde = $(`&lt;div id=&quot;html_0413179b1425afdfd49fa973ab158cde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0841             latitude:36.7339             PM2_5:55.09861111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f26668ec23001ce9170abb8c86611250.setContent(html_0413179b1425afdfd49fa973ab158cde);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3727759a122dcc678ee63a3e07e89f56.bindPopup(popup_f26668ec23001ce9170abb8c86611250)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e2e6a4daa89bf67991995bf258c96f58 = L.circleMarker(\\n\",\n       \"                [32.2786, 118.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5aa2465cb805a23b26f6d2f96baa64b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_efdaf7eb84d17680516bc1f3e5a66063 = $(`&lt;div id=&quot;html_efdaf7eb84d17680516bc1f3e5a66063&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3244             latitude:32.2786             PM2_5:52.09888579             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5aa2465cb805a23b26f6d2f96baa64b.setContent(html_efdaf7eb84d17680516bc1f3e5a66063);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e2e6a4daa89bf67991995bf258c96f58.bindPopup(popup_c5aa2465cb805a23b26f6d2f96baa64b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0e5e3ce8ac0f4d7e796415f4d0bb6174 = L.circleMarker(\\n\",\n       \"                [33.8399, 115.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ad0e58eceb7cd6052f021da794f707f7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1b4dc5b86b2e96ac80eb83cd4322171 = $(`&lt;div id=&quot;html_f1b4dc5b86b2e96ac80eb83cd4322171&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8067             latitude:33.8399             PM2_5:53.26123596             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ad0e58eceb7cd6052f021da794f707f7.setContent(html_f1b4dc5b86b2e96ac80eb83cd4322171);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0e5e3ce8ac0f4d7e796415f4d0bb6174.bindPopup(popup_ad0e58eceb7cd6052f021da794f707f7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5cf3e63d3082ca09a137d9481240b9de = L.circleMarker(\\n\",\n       \"                [30.0475, 101.9603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0028af&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0028af&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_837982306bb53d376cf207e9fd2397f5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b6cfaf2f6c81cb2c26814d5ec2b5ae82 = $(`&lt;div id=&quot;html_b6cfaf2f6c81cb2c26814d5ec2b5ae82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9603             latitude:30.0475             PM2_5:15.21648045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_837982306bb53d376cf207e9fd2397f5.setContent(html_b6cfaf2f6c81cb2c26814d5ec2b5ae82);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5cf3e63d3082ca09a137d9481240b9de.bindPopup(popup_837982306bb53d376cf207e9fd2397f5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f95dbc1b3efee2b234682c790da9e48 = L.circleMarker(\\n\",\n       \"                [37.9097, 114.3541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bcf19d900227eb825882d3f4c1173968 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4d09e13ff8e25a5f6f23f2d84a0b78c5 = $(`&lt;div id=&quot;html_4d09e13ff8e25a5f6f23f2d84a0b78c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3541             latitude:37.9097             PM2_5:52.41044776             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bcf19d900227eb825882d3f4c1173968.setContent(html_4d09e13ff8e25a5f6f23f2d84a0b78c5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f95dbc1b3efee2b234682c790da9e48.bindPopup(popup_bcf19d900227eb825882d3f4c1173968)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6bcb770ba7c39e48d6a3c8dec19fba8d = L.circleMarker(\\n\",\n       \"                [24.6967, 108.1009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_06aa668fed6ad9c7aa4112efa6339855 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6b1fcd3111cfb4864866a9081290198 = $(`&lt;div id=&quot;html_f6b1fcd3111cfb4864866a9081290198&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.1009             latitude:24.6967             PM2_5:32.43905817             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_06aa668fed6ad9c7aa4112efa6339855.setContent(html_f6b1fcd3111cfb4864866a9081290198);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6bcb770ba7c39e48d6a3c8dec19fba8d.bindPopup(popup_06aa668fed6ad9c7aa4112efa6339855)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_630effbf023b3c7a8b38ce27cb558e5b = L.circleMarker(\\n\",\n       \"                [23.6706, 116.6447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db496db205b975d4a0df015b729102ab = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70af67167f10f97647c45942ba6753aa = $(`&lt;div id=&quot;html_70af67167f10f97647c45942ba6753aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6447             latitude:23.6706             PM2_5:26.14225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db496db205b975d4a0df015b729102ab.setContent(html_70af67167f10f97647c45942ba6753aa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_630effbf023b3c7a8b38ce27cb558e5b.bindPopup(popup_db496db205b975d4a0df015b729102ab)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c0ff7f800d8b4364d96292588e1e898 = L.circleMarker(\\n\",\n       \"                [33.0323, 107.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5b8941a386c92ff68c6a88a7c7bfde85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_12936828550b71928c97675fd49ed3a1 = $(`&lt;div id=&quot;html_12936828550b71928c97675fd49ed3a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.007             latitude:33.0323             PM2_5:47.88611111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5b8941a386c92ff68c6a88a7c7bfde85.setContent(html_12936828550b71928c97675fd49ed3a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c0ff7f800d8b4364d96292588e1e898.bindPopup(popup_5b8941a386c92ff68c6a88a7c7bfde85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a29065cf82542471fcb43f2652d01a47 = L.circleMarker(\\n\",\n       \"                [25.442, 119.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d796d2b73eca10b64e56f465dd424fbe = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_499db511acad752db977e8621f289377 = $(`&lt;div id=&quot;html_499db511acad752db977e8621f289377&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0156             latitude:25.442             PM2_5:28.97338936             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d796d2b73eca10b64e56f465dd424fbe.setContent(html_499db511acad752db977e8621f289377);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a29065cf82542471fcb43f2652d01a47.bindPopup(popup_d796d2b73eca10b64e56f465dd424fbe)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ca7f884cbb44117ad874a45d71dc642 = L.circleMarker(\\n\",\n       \"                [38.5247, 102.1878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_50e2988b92f7b7b76a5e1f6b586cb7de = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_79cd2fcd9986b171399c8770b2f08caa = $(`&lt;div id=&quot;html_79cd2fcd9986b171399c8770b2f08caa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1878             latitude:38.5247             PM2_5:33.28028169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_50e2988b92f7b7b76a5e1f6b586cb7de.setContent(html_79cd2fcd9986b171399c8770b2f08caa);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ca7f884cbb44117ad874a45d71dc642.bindPopup(popup_50e2988b92f7b7b76a5e1f6b586cb7de)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0118fea1af522a77fe3202c363fd7356 = L.circleMarker(\\n\",\n       \"                [22.8561, 108.316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9862049ab72343d10ec57ef75fee767 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_be3ef7ed040abfcfe0c29e0c8e0aa393 = $(`&lt;div id=&quot;html_be3ef7ed040abfcfe0c29e0c8e0aa393&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.316             latitude:22.8561             PM2_5:33.86731844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9862049ab72343d10ec57ef75fee767.setContent(html_be3ef7ed040abfcfe0c29e0c8e0aa393);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0118fea1af522a77fe3202c363fd7356.bindPopup(popup_e9862049ab72343d10ec57ef75fee767)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_612a4ae9e2212cb7b2ec870c5272c58b = L.circleMarker(\\n\",\n       \"                [31.656, 120.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_faf73f978b9b20772a1e555413e24f10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cbd688eb9fd68b091f0658bf92441639 = $(`&lt;div id=&quot;html_cbd688eb9fd68b091f0658bf92441639&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.734             latitude:31.656             PM2_5:43.63128492             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_faf73f978b9b20772a1e555413e24f10.setContent(html_cbd688eb9fd68b091f0658bf92441639);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_612a4ae9e2212cb7b2ec870c5272c58b.bindPopup(popup_faf73f978b9b20772a1e555413e24f10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a064e4af324a9b2b34d3062e1b9c4cf9 = L.circleMarker(\\n\",\n       \"                [29.36028, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8521533c520d894182190dfa018439be = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e1c3b2d2cda84b4f99d30dcffaf8f13f = $(`&lt;div id=&quot;html_e1c3b2d2cda84b4f99d30dcffaf8f13f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:29.36028             PM2_5:54.58543417             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8521533c520d894182190dfa018439be.setContent(html_e1c3b2d2cda84b4f99d30dcffaf8f13f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a064e4af324a9b2b34d3062e1b9c4cf9.bindPopup(popup_8521533c520d894182190dfa018439be)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_48cccce329c7f306217e72369526437b = L.circleMarker(\\n\",\n       \"                [22.7833, 108.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_11ff9abb8e408cce213265ea817c6d1f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b70e662d3dfc4a51f4e0c54e089e4404 = $(`&lt;div id=&quot;html_b70e662d3dfc4a51f4e0c54e089e4404&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.244             latitude:22.7833             PM2_5:36.84195402             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_11ff9abb8e408cce213265ea817c6d1f.setContent(html_b70e662d3dfc4a51f4e0c54e089e4404);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_48cccce329c7f306217e72369526437b.bindPopup(popup_11ff9abb8e408cce213265ea817c6d1f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_889dbc93c5d5cdbca6c1ceab68c4903c = L.circleMarker(\\n\",\n       \"                [36.3083, 120.1964],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5420b1986b214231807e9e99a60fc322 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_962f4f0f7400c5feac1046a34ff32496 = $(`&lt;div id=&quot;html_962f4f0f7400c5feac1046a34ff32496&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1964             latitude:36.3083             PM2_5:41.015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5420b1986b214231807e9e99a60fc322.setContent(html_962f4f0f7400c5feac1046a34ff32496);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_889dbc93c5d5cdbca6c1ceab68c4903c.bindPopup(popup_5420b1986b214231807e9e99a60fc322)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b4ea789b2441fc4d9575c46d9547eea3 = L.circleMarker(\\n\",\n       \"                [41.8828, 123.9169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5462123ba0a4dd04b66be49451899608 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4563fcaa977d8949dcec23eadeaef4ac = $(`&lt;div id=&quot;html_4563fcaa977d8949dcec23eadeaef4ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9169             latitude:41.8828             PM2_5:34.99301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5462123ba0a4dd04b66be49451899608.setContent(html_4563fcaa977d8949dcec23eadeaef4ac);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b4ea789b2441fc4d9575c46d9547eea3.bindPopup(popup_5462123ba0a4dd04b66be49451899608)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f70f16c8be8fe5f1f79fe2aac33c5e6 = L.circleMarker(\\n\",\n       \"                [41.8472, 123.428],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d04a92f5c2dd6823be8de84ecf4d33d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5088e22e138d92bead61249f4bf8903e = $(`&lt;div id=&quot;html_5088e22e138d92bead61249f4bf8903e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.428             latitude:41.8472             PM2_5:31.03651685             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d04a92f5c2dd6823be8de84ecf4d33d2.setContent(html_5088e22e138d92bead61249f4bf8903e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f70f16c8be8fe5f1f79fe2aac33c5e6.bindPopup(popup_d04a92f5c2dd6823be8de84ecf4d33d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3964d185398e2c5476721d16b086fbe2 = L.circleMarker(\\n\",\n       \"                [27.8381, 113.143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d547797e1dfbda502c796297877d76e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e2cc9dca9a34dbf9f40067bd1852974 = $(`&lt;div id=&quot;html_9e2cc9dca9a34dbf9f40067bd1852974&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.143             latitude:27.8381             PM2_5:41.82670455             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d547797e1dfbda502c796297877d76e0.setContent(html_9e2cc9dca9a34dbf9f40067bd1852974);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3964d185398e2c5476721d16b086fbe2.bindPopup(popup_d547797e1dfbda502c796297877d76e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5fa6f803834746140875b2e24a28594b = L.circleMarker(\\n\",\n       \"                [43.8667, 125.417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69f99b116130a133939ecd4ad6ee9459 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4dac8e24382085ba507d80b4f553f98a = $(`&lt;div id=&quot;html_4dac8e24382085ba507d80b4f553f98a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.417             latitude:43.8667             PM2_5:34.31728045             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69f99b116130a133939ecd4ad6ee9459.setContent(html_4dac8e24382085ba507d80b4f553f98a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5fa6f803834746140875b2e24a28594b.bindPopup(popup_69f99b116130a133939ecd4ad6ee9459)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dbae9a16f9dcb68f29eaf3da3ec4f01e = L.circleMarker(\\n\",\n       \"                [45.7258, 126.646],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_261c0c7e74c42652e1b0628b22fed3fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7bd54a920093af04590f0b16a0264dd6 = $(`&lt;div id=&quot;html_7bd54a920093af04590f0b16a0264dd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.646             latitude:45.7258             PM2_5:37.67694805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_261c0c7e74c42652e1b0628b22fed3fd.setContent(html_7bd54a920093af04590f0b16a0264dd6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dbae9a16f9dcb68f29eaf3da3ec4f01e.bindPopup(popup_261c0c7e74c42652e1b0628b22fed3fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0d0c40c24b750cff111ede3140881635 = L.circleMarker(\\n\",\n       \"                [26.6272, 118.1756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdc26424a0d5173c7239d15aa1cadf6a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_349667dc9d6b8acee997837eb771dcf7 = $(`&lt;div id=&quot;html_349667dc9d6b8acee997837eb771dcf7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1756             latitude:26.6272             PM2_5:22.71927374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdc26424a0d5173c7239d15aa1cadf6a.setContent(html_349667dc9d6b8acee997837eb771dcf7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0d0c40c24b750cff111ede3140881635.bindPopup(popup_fdc26424a0d5173c7239d15aa1cadf6a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dba770e6b61396ac3797771f4888660e = L.circleMarker(\\n\",\n       \"                [27.9883, 116.3553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3742ee53a290c490be1946de3e51e0a8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_37e30b861716bf6422245899bc449ae8 = $(`&lt;div id=&quot;html_37e30b861716bf6422245899bc449ae8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3553             latitude:27.9883             PM2_5:44.83333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3742ee53a290c490be1946de3e51e0a8.setContent(html_37e30b861716bf6422245899bc449ae8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dba770e6b61396ac3797771f4888660e.bindPopup(popup_3742ee53a290c490be1946de3e51e0a8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3a4daf77eae0c24cd219c60e2e4161a = L.circleMarker(\\n\",\n       \"                [39.9522, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2c765c558c8365f995bbbbb88ad62916 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d67c878f445a2ae21e954a858233ce6c = $(`&lt;div id=&quot;html_d67c878f445a2ae21e954a858233ce6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.9522             PM2_5:54.89859155             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2c765c558c8365f995bbbbb88ad62916.setContent(html_d67c878f445a2ae21e954a858233ce6c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3a4daf77eae0c24cd219c60e2e4161a.bindPopup(popup_2c765c558c8365f995bbbbb88ad62916)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8609122bbd05b7c44f50d4b7efede0b5 = L.circleMarker(\\n\",\n       \"                [38.843, 105.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9982a72b474040ff09352cbaef4a2911 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9a3ec22017e1298d11215e2e34790236 = $(`&lt;div id=&quot;html_9a3ec22017e1298d11215e2e34790236&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6975             latitude:38.843             PM2_5:33.15181058             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9982a72b474040ff09352cbaef4a2911.setContent(html_9a3ec22017e1298d11215e2e34790236);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8609122bbd05b7c44f50d4b7efede0b5.bindPopup(popup_9982a72b474040ff09352cbaef4a2911)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_41005870479b7ca709702ee700d3e767 = L.circleMarker(\\n\",\n       \"                [22.8172, 114.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_326224dcd89bb8ede1f2d5b0289932d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6ca11d141a100c7565d6eb15a6187e9 = $(`&lt;div id=&quot;html_e6ca11d141a100c7565d6eb15a6187e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3244             latitude:22.8172             PM2_5:24.58848315             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_326224dcd89bb8ede1f2d5b0289932d1.setContent(html_e6ca11d141a100c7565d6eb15a6187e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_41005870479b7ca709702ee700d3e767.bindPopup(popup_326224dcd89bb8ede1f2d5b0289932d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c0878d7fefb1e9db1a06bf91ab41665 = L.circleMarker(\\n\",\n       \"                [39.9419, 119.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13113243c5ef147fe6a59e610821c1e0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0885bce58c9f84febb847fc43f896307 = $(`&lt;div id=&quot;html_0885bce58c9f84febb847fc43f896307&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5369             latitude:39.9419             PM2_5:36.63826816             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13113243c5ef147fe6a59e610821c1e0.setContent(html_0885bce58c9f84febb847fc43f896307);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c0878d7fefb1e9db1a06bf91ab41665.bindPopup(popup_13113243c5ef147fe6a59e610821c1e0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79c651b6a36291c0e9ce8599599e01d7 = L.circleMarker(\\n\",\n       \"                [24.4175, 111.5269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f5838abb2b9ca4dda5d2f8b702c8d0d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0e7b6fbbfb08b624becefec52fa45b2 = $(`&lt;div id=&quot;html_f0e7b6fbbfb08b624becefec52fa45b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5269             latitude:24.4175             PM2_5:44.24504249             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f5838abb2b9ca4dda5d2f8b702c8d0d2.setContent(html_f0e7b6fbbfb08b624becefec52fa45b2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79c651b6a36291c0e9ce8599599e01d7.bindPopup(popup_f5838abb2b9ca4dda5d2f8b702c8d0d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a276219889f2dc3179586fa660d7c8f4 = L.circleMarker(\\n\",\n       \"                [29.7128, 118.3057],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c58fdaf1892bad3ff692efa6370241f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_02d35ae230c1021904cba5b45b2d6813 = $(`&lt;div id=&quot;html_02d35ae230c1021904cba5b45b2d6813&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3057             latitude:29.7128             PM2_5:26.5280112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c58fdaf1892bad3ff692efa6370241f.setContent(html_02d35ae230c1021904cba5b45b2d6813);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a276219889f2dc3179586fa660d7c8f4.bindPopup(popup_8c58fdaf1892bad3ff692efa6370241f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1818280097439d40b4233a45356590ea = L.circleMarker(\\n\",\n       \"                [26.57098, 101.68912],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_873e81f77209a6e411a7d1a91f8d3d5a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e4281ecade4b27b2c7a4699bd058dc64 = $(`&lt;div id=&quot;html_e4281ecade4b27b2c7a4699bd058dc64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.68912             latitude:26.57098             PM2_5:34.35014006             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_873e81f77209a6e411a7d1a91f8d3d5a.setContent(html_e4281ecade4b27b2c7a4699bd058dc64);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1818280097439d40b4233a45356590ea.bindPopup(popup_873e81f77209a6e411a7d1a91f8d3d5a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_86f4c079c0c9a9166e1e91af3b5d6d38 = L.circleMarker(\\n\",\n       \"                [36.087, 114.358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8360e1599cfdf995adea1b94a6f8b7d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d3d6f304f5ced4a3647173a2b65c995e = $(`&lt;div id=&quot;html_d3d6f304f5ced4a3647173a2b65c995e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.358             latitude:36.087             PM2_5:68.93837535             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8360e1599cfdf995adea1b94a6f8b7d2.setContent(html_d3d6f304f5ced4a3647173a2b65c995e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_86f4c079c0c9a9166e1e91af3b5d6d38.bindPopup(popup_8360e1599cfdf995adea1b94a6f8b7d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ffcbb1a15e8216acd208dd8306636dc = L.circleMarker(\\n\",\n       \"                [39.3673, 112.4279],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8da391a9f75bd402ba8260800e84ea4f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cfc7ec0f9a2f6830fcff9d8a3a42b7d5 = $(`&lt;div id=&quot;html_cfc7ec0f9a2f6830fcff9d8a3a42b7d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4279             latitude:39.3673             PM2_5:35.7987988             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8da391a9f75bd402ba8260800e84ea4f.setContent(html_cfc7ec0f9a2f6830fcff9d8a3a42b7d5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ffcbb1a15e8216acd208dd8306636dc.bindPopup(popup_8da391a9f75bd402ba8260800e84ea4f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1bd7a83c1a43736bc10846b75c658da4 = L.circleMarker(\\n\",\n       \"                [37.4658, 118.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_70399f965406f865e7b8b04dc6fa8c91 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_08b9fb4bf1613f8f615b0e151accd911 = $(`&lt;div id=&quot;html_08b9fb4bf1613f8f615b0e151accd911&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5019             latitude:37.4658             PM2_5:50.71587744             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_70399f965406f865e7b8b04dc6fa8c91.setContent(html_08b9fb4bf1613f8f615b0e151accd911);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1bd7a83c1a43736bc10846b75c658da4.bindPopup(popup_70399f965406f865e7b8b04dc6fa8c91)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89826ea8aebd4b585743c6bc2ed96227 = L.circleMarker(\\n\",\n       \"                [23.7233, 114.6892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d916c931d9afa2030cc75a75fa44eae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b21d2009f313476c5e4f730f8ce73457 = $(`&lt;div id=&quot;html_b21d2009f313476c5e4f730f8ce73457&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6892             latitude:23.7233             PM2_5:26.02240896             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d916c931d9afa2030cc75a75fa44eae.setContent(html_b21d2009f313476c5e4f730f8ce73457);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89826ea8aebd4b585743c6bc2ed96227.bindPopup(popup_5d916c931d9afa2030cc75a75fa44eae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_887b7541886c2cf0f6ea1ca8bac01fa1 = L.circleMarker(\\n\",\n       \"                [28.4569, 118.0058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51d2eebcc99c562465d404b4875cf745 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ade4a647645043075ab42aaf2f1db592 = $(`&lt;div id=&quot;html_ade4a647645043075ab42aaf2f1db592&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0058             latitude:28.4569             PM2_5:36.31908832             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51d2eebcc99c562465d404b4875cf745.setContent(html_ade4a647645043075ab42aaf2f1db592);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_887b7541886c2cf0f6ea1ca8bac01fa1.bindPopup(popup_51d2eebcc99c562465d404b4875cf745)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_78b680e774bba6d447b3f4676ef791f2 = L.circleMarker(\\n\",\n       \"                [30.2099, 115.0264],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9a5b1d34a2c35eb705a0ac025fcd5e9a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bdf58f77fbfbd37b299884e39686822b = $(`&lt;div id=&quot;html_bdf58f77fbfbd37b299884e39686822b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0264             latitude:30.2099             PM2_5:54.80532213             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9a5b1d34a2c35eb705a0ac025fcd5e9a.setContent(html_bdf58f77fbfbd37b299884e39686822b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_78b680e774bba6d447b3f4676ef791f2.bindPopup(popup_9a5b1d34a2c35eb705a0ac025fcd5e9a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a26e71b8170b23a0ec0ed5c2256721c0 = L.circleMarker(\\n\",\n       \"                [33.737, 113.182],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d943cfb8b2a6bf5a6c8cb2ffe954fb8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2cabe8a1ae203876de9316af5dd8534f = $(`&lt;div id=&quot;html_2cabe8a1ae203876de9316af5dd8534f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.182             latitude:33.737             PM2_5:60.34225352             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d943cfb8b2a6bf5a6c8cb2ffe954fb8.setContent(html_2cabe8a1ae203876de9316af5dd8534f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a26e71b8170b23a0ec0ed5c2256721c0.bindPopup(popup_5d943cfb8b2a6bf5a6c8cb2ffe954fb8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c60148966a42c6c3f562e4c913d31170 = L.circleMarker(\\n\",\n       \"                [22.735, 108.328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_46f88523b8469e64af3eb3473ca89e22 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_299d24136d92616079b1480ca7ffda8f = $(`&lt;div id=&quot;html_299d24136d92616079b1480ca7ffda8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.328             latitude:22.735             PM2_5:34.70655271             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_46f88523b8469e64af3eb3473ca89e22.setContent(html_299d24136d92616079b1480ca7ffda8f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c60148966a42c6c3f562e4c913d31170.bindPopup(popup_46f88523b8469e64af3eb3473ca89e22)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_665832ad468828b03677da19b6ca5f5e = L.circleMarker(\\n\",\n       \"                [35.0147, 110.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fadc8a94df1915d0a93266f2b82440db = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_451aab92ec981fd856e1a2d64e54848a = $(`&lt;div id=&quot;html_451aab92ec981fd856e1a2d64e54848a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9956             latitude:35.0147             PM2_5:73.66899441             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fadc8a94df1915d0a93266f2b82440db.setContent(html_451aab92ec981fd856e1a2d64e54848a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_665832ad468828b03677da19b6ca5f5e.bindPopup(popup_fadc8a94df1915d0a93266f2b82440db)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ea2a402a5548e390c177adcf0435eae0 = L.circleMarker(\\n\",\n       \"                [38.9194, 117.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a950abe23168260a914e592e677223e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f479249915df6880a5e09621b19e0f9 = $(`&lt;div id=&quot;html_2f479249915df6880a5e09621b19e0f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.157             latitude:38.9194             PM2_5:57.08866279             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a950abe23168260a914e592e677223e.setContent(html_2f479249915df6880a5e09621b19e0f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ea2a402a5548e390c177adcf0435eae0.bindPopup(popup_4a950abe23168260a914e592e677223e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ed3c73a2be7ab476430b2dab82b4c83a = L.circleMarker(\\n\",\n       \"                [27.8036, 114.3442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0967557036d86a561b0c23ecd6c8e230 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26ea114de3251be95ca512ffe2a17172 = $(`&lt;div id=&quot;html_26ea114de3251be95ca512ffe2a17172&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3442             latitude:27.8036             PM2_5:49.8198324             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0967557036d86a561b0c23ecd6c8e230.setContent(html_26ea114de3251be95ca512ffe2a17172);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ed3c73a2be7ab476430b2dab82b4c83a.bindPopup(popup_0967557036d86a561b0c23ecd6c8e230)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4cf19a1e16f32dcf2dc78d6bbf464021 = L.circleMarker(\\n\",\n       \"                [23.8982, 100.0782],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_23210607120b9101e8c9a170b3d57a85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_955f695ae82522080be3009fe1dd80b5 = $(`&lt;div id=&quot;html_955f695ae82522080be3009fe1dd80b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0782             latitude:23.8982             PM2_5:26.17847025             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_23210607120b9101e8c9a170b3d57a85.setContent(html_955f695ae82522080be3009fe1dd80b5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4cf19a1e16f32dcf2dc78d6bbf464021.bindPopup(popup_23210607120b9101e8c9a170b3d57a85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6ccee7e2b26ad428db17db36041dd773 = L.circleMarker(\\n\",\n       \"                [30.8244, 120.07],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1155db3010202841c5ccf395ac80ad49 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_725831740c0c6da8fb2550a311a175d2 = $(`&lt;div id=&quot;html_725831740c0c6da8fb2550a311a175d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.07             latitude:30.8244             PM2_5:38.02668539             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1155db3010202841c5ccf395ac80ad49.setContent(html_725831740c0c6da8fb2550a311a175d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6ccee7e2b26ad428db17db36041dd773.bindPopup(popup_1155db3010202841c5ccf395ac80ad49)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3b149820e7edcf694a5cb736b4e29285 = L.circleMarker(\\n\",\n       \"                [22.2294, 113.495],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_631823242fe55b49e513d63f05a81b81 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7e6bdc068a8a602543f8029624d83d4c = $(`&lt;div id=&quot;html_7e6bdc068a8a602543f8029624d83d4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.495             latitude:22.2294             PM2_5:28.53813559             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_631823242fe55b49e513d63f05a81b81.setContent(html_7e6bdc068a8a602543f8029624d83d4c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3b149820e7edcf694a5cb736b4e29285.bindPopup(popup_631823242fe55b49e513d63f05a81b81)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_589fc1df0171b2938d7aef2862e17217 = L.circleMarker(\\n\",\n       \"                [22.4137, 107.3476],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_17f5c08b6accc16cdf83e3ae514a7ccb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8210b60484975485be55dfcfef9bbe3b = $(`&lt;div id=&quot;html_8210b60484975485be55dfcfef9bbe3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3476             latitude:22.4137             PM2_5:28.27130682             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_17f5c08b6accc16cdf83e3ae514a7ccb.setContent(html_8210b60484975485be55dfcfef9bbe3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_589fc1df0171b2938d7aef2862e17217.bindPopup(popup_17f5c08b6accc16cdf83e3ae514a7ccb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_094b09586891e52e40b2126db9d385df = L.circleMarker(\\n\",\n       \"                [36.1942, 117.1436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c62a3c5efaf3ce7ed1f31ce871790027 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d854d6de8492d4454dcc0d4ef3f6733a = $(`&lt;div id=&quot;html_d854d6de8492d4454dcc0d4ef3f6733a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1436             latitude:36.1942             PM2_5:50.27793296             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c62a3c5efaf3ce7ed1f31ce871790027.setContent(html_d854d6de8492d4454dcc0d4ef3f6733a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_094b09586891e52e40b2126db9d385df.bindPopup(popup_c62a3c5efaf3ce7ed1f31ce871790027)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd337917f8060c95678bb8a333f4182d = L.circleMarker(\\n\",\n       \"                [30.7946, 120.744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a42b44ea25e96a7c5ab7b516e6cf5cf5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3512a5bb501ea62391fc4103e4895c04 = $(`&lt;div id=&quot;html_3512a5bb501ea62391fc4103e4895c04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.744             latitude:30.7946             PM2_5:41.25             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a42b44ea25e96a7c5ab7b516e6cf5cf5.setContent(html_3512a5bb501ea62391fc4103e4895c04);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd337917f8060c95678bb8a333f4182d.bindPopup(popup_a42b44ea25e96a7c5ab7b516e6cf5cf5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f0234e0dbbe4ab17bc837e9df890f4c7 = L.circleMarker(\\n\",\n       \"                [38.2839, 109.7289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ec4a6b745e42407c203d05fa0fc97cb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8570f28124762d0eaf9b926cc9b74ef1 = $(`&lt;div id=&quot;html_8570f28124762d0eaf9b926cc9b74ef1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7289             latitude:38.2839             PM2_5:30.51983003             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ec4a6b745e42407c203d05fa0fc97cb2.setContent(html_8570f28124762d0eaf9b926cc9b74ef1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f0234e0dbbe4ab17bc837e9df890f4c7.bindPopup(popup_ec4a6b745e42407c203d05fa0fc97cb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_db78154815459f09dc5602ca0dea2005 = L.circleMarker(\\n\",\n       \"                [29.5953, 105.0331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f3f7d52ee50ebec079386ad64e46dc7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_aebc17e5e6c4ee186e4429643cda714e = $(`&lt;div id=&quot;html_aebc17e5e6c4ee186e4429643cda714e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0331             latitude:29.5953             PM2_5:34.3258427             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f3f7d52ee50ebec079386ad64e46dc7.setContent(html_aebc17e5e6c4ee186e4429643cda714e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_db78154815459f09dc5602ca0dea2005.bindPopup(popup_6f3f7d52ee50ebec079386ad64e46dc7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2963cbc6f8fd01b8fb70b1c0cc014aed = L.circleMarker(\\n\",\n       \"                [32.9673, 117.3536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd756ab0b31b2e076888aa6193b982da = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ac0770ae2aa354f8e95013a80b77743 = $(`&lt;div id=&quot;html_7ac0770ae2aa354f8e95013a80b77743&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3536             latitude:32.9673             PM2_5:49.43333333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd756ab0b31b2e076888aa6193b982da.setContent(html_7ac0770ae2aa354f8e95013a80b77743);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2963cbc6f8fd01b8fb70b1c0cc014aed.bindPopup(popup_bd756ab0b31b2e076888aa6193b982da)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b2c9ee0dac3cc6b2fc1cfd4fd8febf0 = L.circleMarker(\\n\",\n       \"                [27.9164, 112.4876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_730f0c9196f3b8206a344de45323b2d8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1a95e810862ba3094170d521b83d714e = $(`&lt;div id=&quot;html_1a95e810862ba3094170d521b83d714e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4876             latitude:27.9164             PM2_5:41.67039106             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_730f0c9196f3b8206a344de45323b2d8.setContent(html_1a95e810862ba3094170d521b83d714e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b2c9ee0dac3cc6b2fc1cfd4fd8febf0.bindPopup(popup_730f0c9196f3b8206a344de45323b2d8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b6b4d7443bfa1da048a1b8c5d2ededb = L.circleMarker(\\n\",\n       \"                [29.9972, 101.9533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b8a23c5fa48e0a908cb19f047ec5bdeb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7f2f070cb7ee3226967c3359ec4431e1 = $(`&lt;div id=&quot;html_7f2f070cb7ee3226967c3359ec4431e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9533             latitude:29.9972             PM2_5:18.25892857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b8a23c5fa48e0a908cb19f047ec5bdeb.setContent(html_7f2f070cb7ee3226967c3359ec4431e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b6b4d7443bfa1da048a1b8c5d2ededb.bindPopup(popup_b8a23c5fa48e0a908cb19f047ec5bdeb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_efd8b8d2bd79d9044286bd5eea6a3a54 = L.circleMarker(\\n\",\n       \"                [30.1506, 104.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dcd40d91a6b07311e082b66e7a54403a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_70a1931e85123b28629382ebe3483a7e = $(`&lt;div id=&quot;html_70a1931e85123b28629382ebe3483a7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6356             latitude:30.1506             PM2_5:37.29501385             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dcd40d91a6b07311e082b66e7a54403a.setContent(html_70a1931e85123b28629382ebe3483a7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_efd8b8d2bd79d9044286bd5eea6a3a54.bindPopup(popup_dcd40d91a6b07311e082b66e7a54403a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_976c9f6c454388fc9593c7ad20d23a8d = L.circleMarker(\\n\",\n       \"                [43.84, 125.2786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e5e36081c82f408ab3edabc3dc29e150 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35d2b9620e8c7f4d09a80e423088ab15 = $(`&lt;div id=&quot;html_35d2b9620e8c7f4d09a80e423088ab15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.2786             latitude:43.84             PM2_5:32.66760563             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e5e36081c82f408ab3edabc3dc29e150.setContent(html_35d2b9620e8c7f4d09a80e423088ab15);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_976c9f6c454388fc9593c7ad20d23a8d.bindPopup(popup_e5e36081c82f408ab3edabc3dc29e150)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f225e4c9a237d93b54fdc731b5694a88 = L.circleMarker(\\n\",\n       \"                [36.1542, 113.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ed2d8c4e9901678df558ed1b05d894c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_15806f23bfb611e7ed633b2c98a56019 = $(`&lt;div id=&quot;html_15806f23bfb611e7ed633b2c98a56019&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1097             latitude:36.1542             PM2_5:67.22486034             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ed2d8c4e9901678df558ed1b05d894c.setContent(html_15806f23bfb611e7ed633b2c98a56019);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f225e4c9a237d93b54fdc731b5694a88.bindPopup(popup_3ed2d8c4e9901678df558ed1b05d894c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ecb24ec87056ff17fd8e3722705c6aec = L.circleMarker(\\n\",\n       \"                [32.4535, 105.8945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_68845d9795c28f9f0c674f1df31c9dbf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf842da9949dc18bd82113dbb7764e3b = $(`&lt;div id=&quot;html_cf842da9949dc18bd82113dbb7764e3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8945             latitude:32.4535             PM2_5:21.4622905             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_68845d9795c28f9f0c674f1df31c9dbf.setContent(html_cf842da9949dc18bd82113dbb7764e3b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ecb24ec87056ff17fd8e3722705c6aec.bindPopup(popup_68845d9795c28f9f0c674f1df31c9dbf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d6786e64ce14eb876392e9b514fa702d = L.circleMarker(\\n\",\n       \"                [24.8978, 118.5972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a5fcd5f61211a238298ce5c93ad1fa45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_004c0dd7c5dcdb0da572e8a5cf0074a9 = $(`&lt;div id=&quot;html_004c0dd7c5dcdb0da572e8a5cf0074a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5972             latitude:24.8978             PM2_5:26.7605042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a5fcd5f61211a238298ce5c93ad1fa45.setContent(html_004c0dd7c5dcdb0da572e8a5cf0074a9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d6786e64ce14eb876392e9b514fa702d.bindPopup(popup_a5fcd5f61211a238298ce5c93ad1fa45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46cb351333cc9b9b7594571c0ed98525 = L.circleMarker(\\n\",\n       \"                [29.6219, 106.65],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_99d0b88972068c2d1b1a97892a912e72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e5fe80dce5852f6432caa91f3e31a0b = $(`&lt;div id=&quot;html_5e5fe80dce5852f6432caa91f3e31a0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.65             latitude:29.6219             PM2_5:29.91086351             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_99d0b88972068c2d1b1a97892a912e72.setContent(html_5e5fe80dce5852f6432caa91f3e31a0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46cb351333cc9b9b7594571c0ed98525.bindPopup(popup_99d0b88972068c2d1b1a97892a912e72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0751d0b28a0289b167f6b8623ac9eba = L.circleMarker(\\n\",\n       \"                [41.1636, 80.2828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc6654948ef5238cc337c098eab9498e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ffe7529fb58fe4b7e41c55959fe3ea9 = $(`&lt;div id=&quot;html_3ffe7529fb58fe4b7e41c55959fe3ea9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2828             latitude:41.1636             PM2_5:69.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc6654948ef5238cc337c098eab9498e.setContent(html_3ffe7529fb58fe4b7e41c55959fe3ea9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0751d0b28a0289b167f6b8623ac9eba.bindPopup(popup_dc6654948ef5238cc337c098eab9498e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_03c566a3a60d146b10037786a918a22b = L.circleMarker(\\n\",\n       \"                [34.3617, 108.7233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e1a5692b007fe6ee2a59ec66d1d5950e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_463b168e6f1df58467a99dc2ee682750 = $(`&lt;div id=&quot;html_463b168e6f1df58467a99dc2ee682750&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7233             latitude:34.3617             PM2_5:67.50702247             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e1a5692b007fe6ee2a59ec66d1d5950e.setContent(html_463b168e6f1df58467a99dc2ee682750);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_03c566a3a60d146b10037786a918a22b.bindPopup(popup_e1a5692b007fe6ee2a59ec66d1d5950e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca042ea533f8dfbea5feab90e5dd23e2 = L.circleMarker(\\n\",\n       \"                [41.9086, 123.5953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e058836bf101dd979157dc5114d6be89 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_777b7f1f16c25e3db8f2a3b0b68f4eb3 = $(`&lt;div id=&quot;html_777b7f1f16c25e3db8f2a3b0b68f4eb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.5953             latitude:41.9086             PM2_5:30.00423729             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e058836bf101dd979157dc5114d6be89.setContent(html_777b7f1f16c25e3db8f2a3b0b68f4eb3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca042ea533f8dfbea5feab90e5dd23e2.bindPopup(popup_e058836bf101dd979157dc5114d6be89)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7fea21a2f8df970f5b0ee15da78476ff = L.circleMarker(\\n\",\n       \"                [29.2786, 117.1983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ff851764b4aba6700378a1def6fa5a0e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_73d82b8def86322cf70043ea4eeca319 = $(`&lt;div id=&quot;html_73d82b8def86322cf70043ea4eeca319&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1983             latitude:29.2786             PM2_5:31.27871148             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ff851764b4aba6700378a1def6fa5a0e.setContent(html_73d82b8def86322cf70043ea4eeca319);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7fea21a2f8df970f5b0ee15da78476ff.bindPopup(popup_ff851764b4aba6700378a1def6fa5a0e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bdf3daa0f4f54e3b0a51a52bde38e1f8 = L.circleMarker(\\n\",\n       \"                [25.3167, 110.4144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c6290abeac795aa3a742de6b50fa9be0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3ff2aa487a87da8732f07818688882d6 = $(`&lt;div id=&quot;html_3ff2aa487a87da8732f07818688882d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4144             latitude:25.3167             PM2_5:33.86694678             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c6290abeac795aa3a742de6b50fa9be0.setContent(html_3ff2aa487a87da8732f07818688882d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bdf3daa0f4f54e3b0a51a52bde38e1f8.bindPopup(popup_c6290abeac795aa3a742de6b50fa9be0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40f4af3b26bab54acc01debecd186e6a = L.circleMarker(\\n\",\n       \"                [40.8115, 114.8814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fab16a2a8f5ce0ef3a17765256f88469 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f03577f43643d5cdb83d25210e1e7777 = $(`&lt;div id=&quot;html_f03577f43643d5cdb83d25210e1e7777&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8814             latitude:40.8115             PM2_5:30.67267267             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fab16a2a8f5ce0ef3a17765256f88469.setContent(html_f03577f43643d5cdb83d25210e1e7777);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40f4af3b26bab54acc01debecd186e6a.bindPopup(popup_fab16a2a8f5ce0ef3a17765256f88469)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2396b4074698b06e5d0a230afaca5d18 = L.circleMarker(\\n\",\n       \"                [33.3261, 105.0822],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ea65099b454f10476ed8b31c1b315fb0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47d0895875690c7ba6a13fdf88f047ad = $(`&lt;div id=&quot;html_47d0895875690c7ba6a13fdf88f047ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0822             latitude:33.3261             PM2_5:20.0625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ea65099b454f10476ed8b31c1b315fb0.setContent(html_47d0895875690c7ba6a13fdf88f047ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2396b4074698b06e5d0a230afaca5d18.bindPopup(popup_ea65099b454f10476ed8b31c1b315fb0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1a41acac2f5d3ce07eb430364c4ab51 = L.circleMarker(\\n\",\n       \"                [31.2472, 120.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f6c6354e73de1aca7a6e5000cbb1c10 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b23f6135590f77a71bd9926ad9301f3d = $(`&lt;div id=&quot;html_b23f6135590f77a71bd9926ad9301f3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.561             latitude:31.2472             PM2_5:40.37883008             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f6c6354e73de1aca7a6e5000cbb1c10.setContent(html_b23f6135590f77a71bd9926ad9301f3d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1a41acac2f5d3ce07eb430364c4ab51.bindPopup(popup_5f6c6354e73de1aca7a6e5000cbb1c10)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50afbec2d4999551c04dedd28cb108d1 = L.circleMarker(\\n\",\n       \"                [41.1442, 123.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc7c20a3183a482f9c780dde5f3f9b01 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_537caae4141f2936a3003970acdcc5a6 = $(`&lt;div id=&quot;html_537caae4141f2936a3003970acdcc5a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0485             latitude:41.1442             PM2_5:33.3189415             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc7c20a3183a482f9c780dde5f3f9b01.setContent(html_537caae4141f2936a3003970acdcc5a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50afbec2d4999551c04dedd28cb108d1.bindPopup(popup_dc7c20a3183a482f9c780dde5f3f9b01)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_491ed634ff232d2523a5d3c5a4f22dee = L.circleMarker(\\n\",\n       \"                [33.1842, 106.9893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31570e81438893265b23e50d8e026dd7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6091f727d24fbf9674e4feb178a6c282 = $(`&lt;div id=&quot;html_6091f727d24fbf9674e4feb178a6c282&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9893             latitude:33.1842             PM2_5:41.890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31570e81438893265b23e50d8e026dd7.setContent(html_6091f727d24fbf9674e4feb178a6c282);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_491ed634ff232d2523a5d3c5a4f22dee.bindPopup(popup_31570e81438893265b23e50d8e026dd7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e661ee4a266fa9e2aaba8cff57d3ad53 = L.circleMarker(\\n\",\n       \"                [26.8919, 112.6006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1edad5ceb147658545aa9ed5acf4c8cb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80cda1889742b7242d8a1c2e5da45d9b = $(`&lt;div id=&quot;html_80cda1889742b7242d8a1c2e5da45d9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6006             latitude:26.8919             PM2_5:42.72299169             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1edad5ceb147658545aa9ed5acf4c8cb.setContent(html_80cda1889742b7242d8a1c2e5da45d9b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e661ee4a266fa9e2aaba8cff57d3ad53.bindPopup(popup_1edad5ceb147658545aa9ed5acf4c8cb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8f777c0ab7b26227f324ec160f64ce8 = L.circleMarker(\\n\",\n       \"                [39.643, 118.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cf0ed45d6ce6b85040b96656d7eeb667 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0913b094411d6ef2175eb8b951eacb53 = $(`&lt;div id=&quot;html_0913b094411d6ef2175eb8b951eacb53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.144             latitude:39.643             PM2_5:45.89027778             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cf0ed45d6ce6b85040b96656d7eeb667.setContent(html_0913b094411d6ef2175eb8b951eacb53);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8f777c0ab7b26227f324ec160f64ce8.bindPopup(popup_cf0ed45d6ce6b85040b96656d7eeb667)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_402583a64a63cbbe8639bdf468cc091a = L.circleMarker(\\n\",\n       \"                [31.2703, 120.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a57e6513434eef34ac07d8a0fc1e900d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_87aaa307a01277f53beab572e150d600 = $(`&lt;div id=&quot;html_87aaa307a01277f53beab572e150d600&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.613             latitude:31.2703             PM2_5:39.79469274             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a57e6513434eef34ac07d8a0fc1e900d.setContent(html_87aaa307a01277f53beab572e150d600);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_402583a64a63cbbe8639bdf468cc091a.bindPopup(popup_a57e6513434eef34ac07d8a0fc1e900d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8d219b6fae7388499d9e1538aeaa9aa7 = L.circleMarker(\\n\",\n       \"                [36.6377, 117.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1050a6fe3740314879622afd0a4d1fba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9f09c2f7e5a906e9b3b8be0038d43e99 = $(`&lt;div id=&quot;html_9f09c2f7e5a906e9b3b8be0038d43e99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9544             latitude:36.6377             PM2_5:50.94507042             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1050a6fe3740314879622afd0a4d1fba.setContent(html_9f09c2f7e5a906e9b3b8be0038d43e99);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8d219b6fae7388499d9e1538aeaa9aa7.bindPopup(popup_1050a6fe3740314879622afd0a4d1fba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ef22e1d4fb37fa20317b8f0506a46b9 = L.circleMarker(\\n\",\n       \"                [30.4551, 106.6388],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5737e8c3557ff5997dc996476a15d69f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_85ba8a6b2ddc3329db418dd9bf84309e = $(`&lt;div id=&quot;html_85ba8a6b2ddc3329db418dd9bf84309e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6388             latitude:30.4551             PM2_5:30.78888889             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5737e8c3557ff5997dc996476a15d69f.setContent(html_85ba8a6b2ddc3329db418dd9bf84309e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ef22e1d4fb37fa20317b8f0506a46b9.bindPopup(popup_5737e8c3557ff5997dc996476a15d69f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2546b659bf7702197f42bb373b79cc85 = L.circleMarker(\\n\",\n       \"                [31.8934, 102.2402],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#0000ff&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_955c8a3cd87faa00bda4e96c6cb6cfc3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0ff6e57be74ff5f771ac9981c42d949 = $(`&lt;div id=&quot;html_a0ff6e57be74ff5f771ac9981c42d949&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2402             latitude:31.8934             PM2_5:3.856338028             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_955c8a3cd87faa00bda4e96c6cb6cfc3.setContent(html_a0ff6e57be74ff5f771ac9981c42d949);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2546b659bf7702197f42bb373b79cc85.bindPopup(popup_955c8a3cd87faa00bda4e96c6cb6cfc3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0dbf5b771b12dce9615fbde69fe7fb22 = L.circleMarker(\\n\",\n       \"                [38.8394, 117.457],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d29e75f9d1b6cfc6ab37a6d867531d4a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_19f42e6879902a657f0baa1343874fe7 = $(`&lt;div id=&quot;html_19f42e6879902a657f0baa1343874fe7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.457             latitude:38.8394             PM2_5:48.95238095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d29e75f9d1b6cfc6ab37a6d867531d4a.setContent(html_19f42e6879902a657f0baa1343874fe7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0dbf5b771b12dce9615fbde69fe7fb22.bindPopup(popup_d29e75f9d1b6cfc6ab37a6d867531d4a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a3e932b5cd951353508fbeb2d00b56c9 = L.circleMarker(\\n\",\n       \"                [32.0144, 118.777],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_52fb903a44acaf20c6e60972d7e26633 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1b2394dfd876aa4c6b4202f10f26d68a = $(`&lt;div id=&quot;html_1b2394dfd876aa4c6b4202f10f26d68a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.777             latitude:32.0144             PM2_5:39.8255814             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_52fb903a44acaf20c6e60972d7e26633.setContent(html_1b2394dfd876aa4c6b4202f10f26d68a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a3e932b5cd951353508fbeb2d00b56c9.bindPopup(popup_52fb903a44acaf20c6e60972d7e26633)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_473f0d2ed0a028b6ef3cedda491a7dd1 = L.circleMarker(\\n\",\n       \"                [27.8336, 113.251],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_92a342c0a4325a2875fadb792928b240 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_548ac983bb16ec75fbc6cd59354cefc7 = $(`&lt;div id=&quot;html_548ac983bb16ec75fbc6cd59354cefc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.251             latitude:27.8336             PM2_5:33.70142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_92a342c0a4325a2875fadb792928b240.setContent(html_548ac983bb16ec75fbc6cd59354cefc7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_473f0d2ed0a028b6ef3cedda491a7dd1.bindPopup(popup_92a342c0a4325a2875fadb792928b240)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f68081680144cfc42cb6e27df196192e = L.circleMarker(\\n\",\n       \"                [22.8693, 112.844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_baa690c680d054d4db37587d7403a127 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1743746539c7382b4aee427777f3fa83 = $(`&lt;div id=&quot;html_1743746539c7382b4aee427777f3fa83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.844             latitude:22.8693             PM2_5:39.67787115             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_baa690c680d054d4db37587d7403a127.setContent(html_1743746539c7382b4aee427777f3fa83);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f68081680144cfc42cb6e27df196192e.bindPopup(popup_baa690c680d054d4db37587d7403a127)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b293789fe86bee2f0e2dc7776a44db0f = L.circleMarker(\\n\",\n       \"                [26.5697, 106.7164],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1003514d0b52127df4958bdde9efa5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a225ee7cf2f95fa0b09fa1becb15eb18 = $(`&lt;div id=&quot;html_a225ee7cf2f95fa0b09fa1becb15eb18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7164             latitude:26.5697             PM2_5:32.42655367             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1003514d0b52127df4958bdde9efa5c.setContent(html_a225ee7cf2f95fa0b09fa1becb15eb18);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b293789fe86bee2f0e2dc7776a44db0f.bindPopup(popup_a1003514d0b52127df4958bdde9efa5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a629266a2458f589f600e08abb4ffdde = L.circleMarker(\\n\",\n       \"                [23.1572, 112.885],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ae7c959ac51163b09157f491d6ae2f88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_299cde5e360ae845ef17cc3995de51e4 = $(`&lt;div id=&quot;html_299cde5e360ae845ef17cc3995de51e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.885             latitude:23.1572             PM2_5:38.81534091             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ae7c959ac51163b09157f491d6ae2f88.setContent(html_299cde5e360ae845ef17cc3995de51e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a629266a2458f589f600e08abb4ffdde.bindPopup(popup_ae7c959ac51163b09157f491d6ae2f88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a9edbb725d91f7eebb3f777852a237c5 = L.circleMarker(\\n\",\n       \"                [30.6197, 114.2836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bd13f7a59dc0cf4b26b5c04ce47e2b46 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d4c1dfe6939013da0147ba0413939a0f = $(`&lt;div id=&quot;html_d4c1dfe6939013da0147ba0413939a0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2836             latitude:30.6197             PM2_5:48.60393258             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bd13f7a59dc0cf4b26b5c04ce47e2b46.setContent(html_d4c1dfe6939013da0147ba0413939a0f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a9edbb725d91f7eebb3f777852a237c5.bindPopup(popup_bd13f7a59dc0cf4b26b5c04ce47e2b46)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cb2c23662613192323317460b39c6e20 = L.circleMarker(\\n\",\n       \"                [33.6284, 116.9677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6502f7835f64ab22cb689d9e5d07220a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ecc639da1caf2b6c5da2d2a0bb6cf1a2 = $(`&lt;div id=&quot;html_ecc639da1caf2b6c5da2d2a0bb6cf1a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9677             latitude:33.6284             PM2_5:55.42916667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6502f7835f64ab22cb689d9e5d07220a.setContent(html_ecc639da1caf2b6c5da2d2a0bb6cf1a2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cb2c23662613192323317460b39c6e20.bindPopup(popup_6502f7835f64ab22cb689d9e5d07220a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_776bfd3e05659162912df1170d225c33 = L.circleMarker(\\n\",\n       \"                [22.5908, 114.263],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_53f47ba7c8120a2bb141abbb1ccda79d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98891ce87c8da4ea48a65815c52a9d57 = $(`&lt;div id=&quot;html_98891ce87c8da4ea48a65815c52a9d57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.263             latitude:22.5908             PM2_5:22.57746479             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_53f47ba7c8120a2bb141abbb1ccda79d.setContent(html_98891ce87c8da4ea48a65815c52a9d57);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_776bfd3e05659162912df1170d225c33.bindPopup(popup_53f47ba7c8120a2bb141abbb1ccda79d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_102419045cb04053c4e332f6631b5638 = L.circleMarker(\\n\",\n       \"                [41.8336, 123.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3f0ed741c5d681bb6f7c07fd0841963a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a00af5cd46035fc6d51f2f8c1f8c2f3c = $(`&lt;div id=&quot;html_a00af5cd46035fc6d51f2f8c1f8c2f3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.542             latitude:41.8336             PM2_5:30.66997167             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3f0ed741c5d681bb6f7c07fd0841963a.setContent(html_a00af5cd46035fc6d51f2f8c1f8c2f3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_102419045cb04053c4e332f6631b5638.bindPopup(popup_3f0ed741c5d681bb6f7c07fd0841963a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a95a2f00ed189d43d61a461eb2be1a34 = L.circleMarker(\\n\",\n       \"                [34.3528, 107.3906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bce87dbef81881804140b7a7d5762bf5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_502679208c3b4f01d56587051cb2c262 = $(`&lt;div id=&quot;html_502679208c3b4f01d56587051cb2c262&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3906             latitude:34.3528             PM2_5:56.48472222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bce87dbef81881804140b7a7d5762bf5.setContent(html_502679208c3b4f01d56587051cb2c262);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a95a2f00ed189d43d61a461eb2be1a34.bindPopup(popup_bce87dbef81881804140b7a7d5762bf5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f01a92420f3d9bd2d2946a3175130ddd = L.circleMarker(\\n\",\n       \"                [38.817, 106.3394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25de2a7a34d6dd821553660106ca2f88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_717b0f39334cebf1176ae2779629eb38 = $(`&lt;div id=&quot;html_717b0f39334cebf1176ae2779629eb38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3394             latitude:38.817             PM2_5:45.58882521             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25de2a7a34d6dd821553660106ca2f88.setContent(html_717b0f39334cebf1176ae2779629eb38);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f01a92420f3d9bd2d2946a3175130ddd.bindPopup(popup_25de2a7a34d6dd821553660106ca2f88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fb6b35ba8dd7335d47b06d73295254aa = L.circleMarker(\\n\",\n       \"                [37.8561, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f048e4abfd48f312117dde98763fe8c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a5aaa195b3e8683ff3e1e93a644f8ce = $(`&lt;div id=&quot;html_0a5aaa195b3e8683ff3e1e93a644f8ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:37.8561             PM2_5:58.70972222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f048e4abfd48f312117dde98763fe8c.setContent(html_0a5aaa195b3e8683ff3e1e93a644f8ce);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fb6b35ba8dd7335d47b06d73295254aa.bindPopup(popup_6f048e4abfd48f312117dde98763fe8c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_04e0744dc3b496ab9e52d15340c71385 = L.circleMarker(\\n\",\n       \"                [28.6459, 121.273],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fb624f87c9f570cdd37d341a677c8c11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5aa80d947fb7a445d567d5107db79882 = $(`&lt;div id=&quot;html_5aa80d947fb7a445d567d5107db79882&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.273             latitude:28.6459             PM2_5:28.00724638             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fb624f87c9f570cdd37d341a677c8c11.setContent(html_5aa80d947fb7a445d567d5107db79882);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_04e0744dc3b496ab9e52d15340c71385.bindPopup(popup_fb624f87c9f570cdd37d341a677c8c11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a165e3c58c58daa54e0590a5d191d092 = L.circleMarker(\\n\",\n       \"                [30.4576, 106.6303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_274ed4b3ef1868e723fab1591792ad5f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86932f4d5bd0446156c16495fd0f2d6c = $(`&lt;div id=&quot;html_86932f4d5bd0446156c16495fd0f2d6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6303             latitude:30.4576             PM2_5:42.27513966             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_274ed4b3ef1868e723fab1591792ad5f.setContent(html_86932f4d5bd0446156c16495fd0f2d6c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a165e3c58c58daa54e0590a5d191d092.bindPopup(popup_274ed4b3ef1868e723fab1591792ad5f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba92e7aa7a718cd51cab0934ce0913d1 = L.circleMarker(\\n\",\n       \"                [34.5667, 117.732],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7f74410b5b96f09a670a1d60a52ed78b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9868e3332044dac918c9c64a31b406ed = $(`&lt;div id=&quot;html_9868e3332044dac918c9c64a31b406ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.732             latitude:34.5667             PM2_5:62.16432584             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7f74410b5b96f09a670a1d60a52ed78b.setContent(html_9868e3332044dac918c9c64a31b406ed);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba92e7aa7a718cd51cab0934ce0913d1.bindPopup(popup_7f74410b5b96f09a670a1d60a52ed78b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7062b3ab57e05b1f25a96037b6432b29 = L.circleMarker(\\n\",\n       \"                [37.9358, 102.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d7c6e2c387e21fea5fa00c104f92604 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e513f6e7e6ec204896a9c857085f7502 = $(`&lt;div id=&quot;html_e513f6e7e6ec204896a9c857085f7502&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6469             latitude:37.9358             PM2_5:36.28194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d7c6e2c387e21fea5fa00c104f92604.setContent(html_e513f6e7e6ec204896a9c857085f7502);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7062b3ab57e05b1f25a96037b6432b29.bindPopup(popup_0d7c6e2c387e21fea5fa00c104f92604)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b294b046f520b14fb79f41258189138d = L.circleMarker(\\n\",\n       \"                [31.89708, 121.1518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e646ccd5825771c496cf0af19e918e36 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a0a5d0ff6bf8a2a1a278f02dee1ad44a = $(`&lt;div id=&quot;html_a0a5d0ff6bf8a2a1a278f02dee1ad44a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1518             latitude:31.89708             PM2_5:35.28041543             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e646ccd5825771c496cf0af19e918e36.setContent(html_a0a5d0ff6bf8a2a1a278f02dee1ad44a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b294b046f520b14fb79f41258189138d.bindPopup(popup_e646ccd5825771c496cf0af19e918e36)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1e7815e132cf21a8bd23f379e9e9798 = L.circleMarker(\\n\",\n       \"                [27.6178, 113.865],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5c3af19b4fcc75cac92669bb3345d41 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8bbefd2cebf23cb8710a939dc85d8730 = $(`&lt;div id=&quot;html_8bbefd2cebf23cb8710a939dc85d8730&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.865             latitude:27.6178             PM2_5:43.54583333             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5c3af19b4fcc75cac92669bb3345d41.setContent(html_8bbefd2cebf23cb8710a939dc85d8730);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1e7815e132cf21a8bd23f379e9e9798.bindPopup(popup_d5c3af19b4fcc75cac92669bb3345d41)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e89e4969f925cc56b8c9579c70ad17df = L.circleMarker(\\n\",\n       \"                [25.0661, 117.0256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0117768f81ee5bff619a15dc1bbd5761 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_407f8f8ba2b087af7e50d57ac78bde8b = $(`&lt;div id=&quot;html_407f8f8ba2b087af7e50d57ac78bde8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0256             latitude:25.0661             PM2_5:20.88194444             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0117768f81ee5bff619a15dc1bbd5761.setContent(html_407f8f8ba2b087af7e50d57ac78bde8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e89e4969f925cc56b8c9579c70ad17df.bindPopup(popup_0117768f81ee5bff619a15dc1bbd5761)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_742bf97f29c36cd5a38f67e4054d4bca = L.circleMarker(\\n\",\n       \"                [37.0967, 114.4821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_caa6eac741355ae23822418551916308 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_df15c71e41fb848dcd64ddd426ad6425 = $(`&lt;div id=&quot;html_df15c71e41fb848dcd64ddd426ad6425&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4821             latitude:37.0967             PM2_5:74.24929972             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_caa6eac741355ae23822418551916308.setContent(html_df15c71e41fb848dcd64ddd426ad6425);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_742bf97f29c36cd5a38f67e4054d4bca.bindPopup(popup_caa6eac741355ae23822418551916308)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b763ec79f7527f71ef8225779b0f4628 = L.circleMarker(\\n\",\n       \"                [26.5689, 106.6971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6145ce0c14a8f4395de65a9e12ca1d0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3aa600b8381efb46bb5350294ba7d4a3 = $(`&lt;div id=&quot;html_3aa600b8381efb46bb5350294ba7d4a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6971             latitude:26.5689             PM2_5:30.99571429             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6145ce0c14a8f4395de65a9e12ca1d0f.setContent(html_3aa600b8381efb46bb5350294ba7d4a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b763ec79f7527f71ef8225779b0f4628.bindPopup(popup_6145ce0c14a8f4395de65a9e12ca1d0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7dd3b9e8dd3ae61e11226beaea20ff11 = L.circleMarker(\\n\",\n       \"                [34.5004, 109.5049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e6a718922ae2d97bac8366d0a0dc659b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b60e86cecec281c0449f773afdb6f108 = $(`&lt;div id=&quot;html_b60e86cecec281c0449f773afdb6f108&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5049             latitude:34.5004             PM2_5:72.50142857             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e6a718922ae2d97bac8366d0a0dc659b.setContent(html_b60e86cecec281c0449f773afdb6f108);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7dd3b9e8dd3ae61e11226beaea20ff11.bindPopup(popup_e6a718922ae2d97bac8366d0a0dc659b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98e6988214b03c882abff73bee5c9914 = L.circleMarker(\\n\",\n       \"                [30.9447, 118.7581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47e1f72507e4926c3a5c4473117622a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ea4471aefad143452538b6b01d62dd2 = $(`&lt;div id=&quot;html_2ea4471aefad143452538b6b01d62dd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7581             latitude:30.9447             PM2_5:42.49019608             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47e1f72507e4926c3a5c4473117622a7.setContent(html_2ea4471aefad143452538b6b01d62dd2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98e6988214b03c882abff73bee5c9914.bindPopup(popup_47e1f72507e4926c3a5c4473117622a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57c2e21e1195959a6895533493e29291 = L.circleMarker(\\n\",\n       \"                [30.7636, 106.0642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_61a3a62fbcef4991872384ec34888671 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30eb020e1180fbb22fa479764357e398 = $(`&lt;div id=&quot;html_30eb020e1180fbb22fa479764357e398&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0642             latitude:30.7636             PM2_5:51.33240997             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_61a3a62fbcef4991872384ec34888671.setContent(html_30eb020e1180fbb22fa479764357e398);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57c2e21e1195959a6895533493e29291.bindPopup(popup_61a3a62fbcef4991872384ec34888671)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_806b76c69dd638db8eaedc3858c61606 = L.circleMarker(\\n\",\n       \"                [25.2178, 110.2869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ca93b7279e077adcefddbc21961e3923 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_67878fd9128edc5fdb7b6b5c6502a404 = $(`&lt;div id=&quot;html_67878fd9128edc5fdb7b6b5c6502a404&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2869             latitude:25.2178             PM2_5:37.9301676             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ca93b7279e077adcefddbc21961e3923.setContent(html_67878fd9128edc5fdb7b6b5c6502a404);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_806b76c69dd638db8eaedc3858c61606.bindPopup(popup_ca93b7279e077adcefddbc21961e3923)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d13daeb3a71a0751cf6290ebf76e70e6 = L.circleMarker(\\n\",\n       \"                [23.9011, 106.6103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9d88834bf8c74e524d667dce3680d7b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ee5f93438ef804baec671f20cd630c0a = $(`&lt;div id=&quot;html_ee5f93438ef804baec671f20cd630c0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6103             latitude:23.9011             PM2_5:39.07282913             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9d88834bf8c74e524d667dce3680d7b.setContent(html_ee5f93438ef804baec671f20cd630c0a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d13daeb3a71a0751cf6290ebf76e70e6.bindPopup(popup_e9d88834bf8c74e524d667dce3680d7b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c0c96ffe4d81af876abad42fc513f923 = L.circleMarker(\\n\",\n       \"                [38.1398, 114.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_47fb143de3be655769f89f010991c04d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_29530bc84bdad33ff72800d931b363af = $(`&lt;div id=&quot;html_29530bc84bdad33ff72800d931b363af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5019             latitude:38.1398             PM2_5:72.54901961             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_47fb143de3be655769f89f010991c04d.setContent(html_29530bc84bdad33ff72800d931b363af);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c0c96ffe4d81af876abad42fc513f923.bindPopup(popup_47fb143de3be655769f89f010991c04d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b878b772deb1c0bc30e8a94f9e816247 = L.circleMarker(\\n\",\n       \"                [31.2036, 121.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b341a1ffdd527ca73a73a72627aae137 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d4f38b9325aea9ce5e9935d50c2d46e = $(`&lt;div id=&quot;html_6d4f38b9325aea9ce5e9935d50c2d46e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.478             latitude:31.2036             PM2_5:43.17563739             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b341a1ffdd527ca73a73a72627aae137.setContent(html_6d4f38b9325aea9ce5e9935d50c2d46e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b878b772deb1c0bc30e8a94f9e816247.bindPopup(popup_b341a1ffdd527ca73a73a72627aae137)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b3483ff0cfd8af24ef2223254f8c855d = L.circleMarker(\\n\",\n       \"                [31.882, 120.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3ee0e4377c3edbdc2c2bf1b8ed152352 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_eb654a7968de90e79d1ef29a17a8f6c6 = $(`&lt;div id=&quot;html_eb654a7968de90e79d1ef29a17a8f6c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.55             latitude:31.882             PM2_5:44.14265537             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3ee0e4377c3edbdc2c2bf1b8ed152352.setContent(html_eb654a7968de90e79d1ef29a17a8f6c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b3483ff0cfd8af24ef2223254f8c855d.bindPopup(popup_3ee0e4377c3edbdc2c2bf1b8ed152352)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59b5f43be5adea257f57a4c88bb66eb4 = L.circleMarker(\\n\",\n       \"                [40.1461, 124.3933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_434c38f9da5b4d757458d4eef4d6de93 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef26425f80fca8e8d3e18c3c44bb0df7 = $(`&lt;div id=&quot;html_ef26425f80fca8e8d3e18c3c44bb0df7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3933             latitude:40.1461             PM2_5:24.14164306             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_434c38f9da5b4d757458d4eef4d6de93.setContent(html_ef26425f80fca8e8d3e18c3c44bb0df7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59b5f43be5adea257f57a4c88bb66eb4.bindPopup(popup_434c38f9da5b4d757458d4eef4d6de93)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1608d833084f07c9d8fa4cf0eabdb809 = L.circleMarker(\\n\",\n       \"                [39.6719, 106.8219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d577b1683feb91a43478e45dc97e7856 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_084f5c25907ab05976e622488ce365ec = $(`&lt;div id=&quot;html_084f5c25907ab05976e622488ce365ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8219             latitude:39.6719             PM2_5:43.65340909             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d577b1683feb91a43478e45dc97e7856.setContent(html_084f5c25907ab05976e622488ce365ec);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1608d833084f07c9d8fa4cf0eabdb809.bindPopup(popup_d577b1683feb91a43478e45dc97e7856)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6e5dc12a1424033952800bed106e30ba = L.circleMarker(\\n\",\n       \"                [33.575, 119.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f9f02a9e78015bbcf7fe0a240f106f96 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_faa6833f22b07dc448b8ceb25afdb1e1 = $(`&lt;div id=&quot;html_faa6833f22b07dc448b8ceb25afdb1e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.007             latitude:33.575             PM2_5:45.62465374             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f9f02a9e78015bbcf7fe0a240f106f96.setContent(html_faa6833f22b07dc448b8ceb25afdb1e1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6e5dc12a1424033952800bed106e30ba.bindPopup(popup_f9f02a9e78015bbcf7fe0a240f106f96)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c17dfd7a74b6171d1987fff798aa95b4 = L.circleMarker(\\n\",\n       \"                [29.5983, 106.296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8d3195a118d9962f9ae6faec0bddff5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7f3ee53e07b8b4287c7c82fb100906f = $(`&lt;div id=&quot;html_b7f3ee53e07b8b4287c7c82fb100906f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.296             latitude:29.5983             PM2_5:37.21030641             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8d3195a118d9962f9ae6faec0bddff5.setContent(html_b7f3ee53e07b8b4287c7c82fb100906f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c17dfd7a74b6171d1987fff798aa95b4.bindPopup(popup_d8d3195a118d9962f9ae6faec0bddff5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_551c8f9412d5ff49157e927421a61f00 = L.circleMarker(\\n\",\n       \"                [43.7256, 126.6772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7591fb66122e7f6fd17514d7f61b4a64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f0167afa94ad1a32d797221fc61d6688 = $(`&lt;div id=&quot;html_f0167afa94ad1a32d797221fc61d6688&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6772             latitude:43.7256             PM2_5:29.62780899             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7591fb66122e7f6fd17514d7f61b4a64.setContent(html_f0167afa94ad1a32d797221fc61d6688);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_551c8f9412d5ff49157e927421a61f00.bindPopup(popup_7591fb66122e7f6fd17514d7f61b4a64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_907857e7d222aef50e0ab056a5b21b20 = L.circleMarker(\\n\",\n       \"                [45.6033, 84.8861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0c73dd58cf7185f26a7189e858db784e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_492a55513263fc5c8288acf03436f2ca = $(`&lt;div id=&quot;html_492a55513263fc5c8288acf03436f2ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8861             latitude:45.6033             PM2_5:24.26825843             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0c73dd58cf7185f26a7189e858db784e.setContent(html_492a55513263fc5c8288acf03436f2ca);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_907857e7d222aef50e0ab056a5b21b20.bindPopup(popup_0c73dd58cf7185f26a7189e858db784e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d17f21d10f5425f5e9709e70d89ca01e = L.circleMarker(\\n\",\n       \"                [30.4519, 114.8858],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_51cc587768c0be3ba4d60b48a11061c6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8be0e9b7f42e9f72e1084843b9291b09 = $(`&lt;div id=&quot;html_8be0e9b7f42e9f72e1084843b9291b09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8858             latitude:30.4519             PM2_5:45.08988764             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_51cc587768c0be3ba4d60b48a11061c6.setContent(html_8be0e9b7f42e9f72e1084843b9291b09);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d17f21d10f5425f5e9709e70d89ca01e.bindPopup(popup_51cc587768c0be3ba4d60b48a11061c6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9b751c154fdbb6202e6c37011edff9fd = L.circleMarker(\\n\",\n       \"                [43.9167, 125.323],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3784f8f2045cad6fcfb15eba3bd4b31d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fc1b28c7e54f9f7389c1e62c45faa915 = $(`&lt;div id=&quot;html_fc1b28c7e54f9f7389c1e62c45faa915&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.323             latitude:43.9167             PM2_5:30.47464789             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3784f8f2045cad6fcfb15eba3bd4b31d.setContent(html_fc1b28c7e54f9f7389c1e62c45faa915);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9b751c154fdbb6202e6c37011edff9fd.bindPopup(popup_3784f8f2045cad6fcfb15eba3bd4b31d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6b2f5d2bdb9b8462815bdc584ce27ae7 = L.circleMarker(\\n\",\n       \"                [36.1855, 113.0844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cb1c620710a75032bd33b67373bdbceb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9964ec6965827c4eaa781d2de124d7d6 = $(`&lt;div id=&quot;html_9964ec6965827c4eaa781d2de124d7d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0844444             latitude:36.1855             PM2_5:72.24509804             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cb1c620710a75032bd33b67373bdbceb.setContent(html_9964ec6965827c4eaa781d2de124d7d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6b2f5d2bdb9b8462815bdc584ce27ae7.bindPopup(popup_cb1c620710a75032bd33b67373bdbceb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d715e2ecb4267e780663e46fb36b8b2 = L.circleMarker(\\n\",\n       \"                [35.303, 113.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b3cc3cd34710d41b8404aac5bddb6f03 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f2ad9b31eb6c2627c3268748d00c1dc2 = $(`&lt;div id=&quot;html_f2ad9b31eb6c2627c3268748d00c1dc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.883             latitude:35.303             PM2_5:53.45658263             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b3cc3cd34710d41b8404aac5bddb6f03.setContent(html_f2ad9b31eb6c2627c3268748d00c1dc2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d715e2ecb4267e780663e46fb36b8b2.bindPopup(popup_b3cc3cd34710d41b8404aac5bddb6f03)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c73c42c4c090182c1593dbaadf0b5de0 = L.circleMarker(\\n\",\n       \"                [34.7745, 117.5852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4b26e8b387a41de24f2cf449ccad5fec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9ec4a3abb3a30462beffd055504e0b90 = $(`&lt;div id=&quot;html_9ec4a3abb3a30462beffd055504e0b90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5852             latitude:34.7745             PM2_5:49.32633053             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4b26e8b387a41de24f2cf449ccad5fec.setContent(html_9ec4a3abb3a30462beffd055504e0b90);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c73c42c4c090182c1593dbaadf0b5de0.bindPopup(popup_4b26e8b387a41de24f2cf449ccad5fec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_530e1acaa4819c6499fd00d4fad5b5eb = L.circleMarker(\\n\",\n       \"                [44.561, 129.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0142950b36f0cebbc2fa9f1424cd5da7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f78db20464caa22c82a26cbf03e1d808 = $(`&lt;div id=&quot;html_f78db20464caa22c82a26cbf03e1d808&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.61             latitude:44.561             PM2_5:25.8449848             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0142950b36f0cebbc2fa9f1424cd5da7.setContent(html_f78db20464caa22c82a26cbf03e1d808);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_530e1acaa4819c6499fd00d4fad5b5eb.bindPopup(popup_0142950b36f0cebbc2fa9f1424cd5da7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b8d1bf2256596089b431ac2f01a7db39 = L.circleMarker(\\n\",\n       \"                [22.3708, 107.3701],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ed12af1aec269ed0e5fff58d4dab0eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_642c9ef7e8ce42113d24a7a503486957 = $(`&lt;div id=&quot;html_642c9ef7e8ce42113d24a7a503486957&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3701             latitude:22.3708             PM2_5:30.14730878             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ed12af1aec269ed0e5fff58d4dab0eb.setContent(html_642c9ef7e8ce42113d24a7a503486957);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b8d1bf2256596089b431ac2f01a7db39.bindPopup(popup_4ed12af1aec269ed0e5fff58d4dab0eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_dc3fafa9f7bf68dadfee82a879d59356 = L.circleMarker(\\n\",\n       \"                [31.381, 120.999],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_55f1f0d10d97273c1478daa267e090b0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_118d82fab7e5ec25f6eb7ba87893ab31 = $(`&lt;div id=&quot;html_118d82fab7e5ec25f6eb7ba87893ab31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.999             latitude:31.381             PM2_5:37.6265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_55f1f0d10d97273c1478daa267e090b0.setContent(html_118d82fab7e5ec25f6eb7ba87893ab31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_dc3fafa9f7bf68dadfee82a879d59356.bindPopup(popup_55f1f0d10d97273c1478daa267e090b0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d7bae1c2536f385e51da996128e8b29 = L.circleMarker(\\n\",\n       \"                [27.3125, 105.2864],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f27894cae36d0d9dfd714b81536111d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dd5e16bff5d97502994d3afb86d6d604 = $(`&lt;div id=&quot;html_dd5e16bff5d97502994d3afb86d6d604&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.2864             latitude:27.3125             PM2_5:31.51949861             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f27894cae36d0d9dfd714b81536111d1.setContent(html_dd5e16bff5d97502994d3afb86d6d604);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d7bae1c2536f385e51da996128e8b29.bindPopup(popup_f27894cae36d0d9dfd714b81536111d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13382f7703a49fcc7e6934c7b5637c83 = L.circleMarker(\\n\",\n       \"                [23.4168, 103.386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c46175fbf49b67d192942c1cb0608e40 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_04deb52efc332e25b8140e1153399317 = $(`&lt;div id=&quot;html_04deb52efc332e25b8140e1153399317&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.386             latitude:23.4168             PM2_5:27.5             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c46175fbf49b67d192942c1cb0608e40.setContent(html_04deb52efc332e25b8140e1153399317);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13382f7703a49fcc7e6934c7b5637c83.bindPopup(popup_c46175fbf49b67d192942c1cb0608e40)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca5b31cb6617be04371f1b09b10cf6e9 = L.circleMarker(\\n\",\n       \"                [41.1556, 122.0247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0ff3e6e2dee2fb26a0e0ab9b52b02aa9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3b1d9a295597f98213a5c5c54644248b = $(`&lt;div id=&quot;html_3b1d9a295597f98213a5c5c54644248b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0247             latitude:41.1556             PM2_5:32.5377095             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0ff3e6e2dee2fb26a0e0ab9b52b02aa9.setContent(html_3b1d9a295597f98213a5c5c54644248b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca5b31cb6617be04371f1b09b10cf6e9.bindPopup(popup_0ff3e6e2dee2fb26a0e0ab9b52b02aa9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c5040f5eeb04268fd78923ecbab35d37 = L.circleMarker(\\n\",\n       \"                [37.177, 119.941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f1b606eed013474f34d2d5690d55b214 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_01990489e9e347416aa2967f5613e52c = $(`&lt;div id=&quot;html_01990489e9e347416aa2967f5613e52c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.941             latitude:37.177             PM2_5:28.97706422             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f1b606eed013474f34d2d5690d55b214.setContent(html_01990489e9e347416aa2967f5613e52c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c5040f5eeb04268fd78923ecbab35d37.bindPopup(popup_f1b606eed013474f34d2d5690d55b214)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_944907e7678777e7d452947121136f5f = L.circleMarker(\\n\",\n       \"                [27.8014, 114.3806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0b467efecece642d014149a0f92134b1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b094d452df385dc973b0a7fef2de2334 = $(`&lt;div id=&quot;html_b094d452df385dc973b0a7fef2de2334&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3806             latitude:27.8014             PM2_5:50.74166667             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0b467efecece642d014149a0f92134b1.setContent(html_b094d452df385dc973b0a7fef2de2334);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_944907e7678777e7d452947121136f5f.bindPopup(popup_0b467efecece642d014149a0f92134b1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2c37608e40a0dac36cea0dbd651e1057 = L.circleMarker(\\n\",\n       \"                [32.6389, 110.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_48303ffa20b76e3fada37ccab7d9f81d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98706fb9ae88c8129e02147b5f4fcbad = $(`&lt;div id=&quot;html_98706fb9ae88c8129e02147b5f4fcbad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.7258             latitude:32.6389             PM2_5:45.01416431             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_48303ffa20b76e3fada37ccab7d9f81d.setContent(html_98706fb9ae88c8129e02147b5f4fcbad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2c37608e40a0dac36cea0dbd651e1057.bindPopup(popup_48303ffa20b76e3fada37ccab7d9f81d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4cf4bca3248b27a36666b2a5ab6cfe03 = L.circleMarker(\\n\",\n       \"                [24.428, 98.5842],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25e2067f5b50116703f2b4055f7fceca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3a7a0c42d0b15d447037e8b037bb0f1b = $(`&lt;div id=&quot;html_3a7a0c42d0b15d447037e8b037bb0f1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5842             latitude:24.428             PM2_5:38.13610315             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25e2067f5b50116703f2b4055f7fceca.setContent(html_3a7a0c42d0b15d447037e8b037bb0f1b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4cf4bca3248b27a36666b2a5ab6cfe03.bindPopup(popup_25e2067f5b50116703f2b4055f7fceca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1c032d62cdacfe6e0f77a76c89f9631f = L.circleMarker(\\n\",\n       \"                [25.8333, 114.9322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b6290ef9e8b277f9a4f09034334232ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2fbc08f8a2b71438114f810d445a8723 = $(`&lt;div id=&quot;html_2fbc08f8a2b71438114f810d445a8723&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9322             latitude:25.8333             PM2_5:44.84497207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b6290ef9e8b277f9a4f09034334232ca.setContent(html_2fbc08f8a2b71438114f810d445a8723);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1c032d62cdacfe6e0f77a76c89f9631f.bindPopup(popup_b6290ef9e8b277f9a4f09034334232ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d3726b7bcef6c22372fa2b0027eac9b2 = L.circleMarker(\\n\",\n       \"                [33.567, 114.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_902a6ae3dd948921926d1cf083521934 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83d9cb5a96b0e2bbe580f8a5a3db8a95 = $(`&lt;div id=&quot;html_83d9cb5a96b0e2bbe580f8a5a3db8a95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.056             latitude:33.567             PM2_5:55.5480226             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_902a6ae3dd948921926d1cf083521934.setContent(html_83d9cb5a96b0e2bbe580f8a5a3db8a95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d3726b7bcef6c22372fa2b0027eac9b2.bindPopup(popup_902a6ae3dd948921926d1cf083521934)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6282bbce8685ac90b27c91c565cd42f = L.circleMarker(\\n\",\n       \"                [33.0014, 97.0],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#003c86&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#003c86&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f8d0e5e424825a235df6f4f94435b9dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_184abd99df47875096eb61acc48921a4 = $(`&lt;div id=&quot;html_184abd99df47875096eb61acc48921a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.0             latitude:33.0014             PM2_5:17.88095238             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f8d0e5e424825a235df6f4f94435b9dc.setContent(html_184abd99df47875096eb61acc48921a4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6282bbce8685ac90b27c91c565cd42f.bindPopup(popup_f8d0e5e424825a235df6f4f94435b9dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_38935385e3dc7163769f0a6116fcced4 = L.circleMarker(\\n\",\n       \"                [26.2378, 117.6028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f4eec0b676b4d46f81d6de10cb8d188 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9e650d5f972ef3a55154eb24bb700859 = $(`&lt;div id=&quot;html_9e650d5f972ef3a55154eb24bb700859&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6028             latitude:26.2378             PM2_5:24.41620112             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f4eec0b676b4d46f81d6de10cb8d188.setContent(html_9e650d5f972ef3a55154eb24bb700859);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_38935385e3dc7163769f0a6116fcced4.bindPopup(popup_1f4eec0b676b4d46f81d6de10cb8d188)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a1e701a9e3bce413e0386f450bccaf7c = L.circleMarker(\\n\",\n       \"                [41.7561, 123.535],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2563d8d0bf1a5a3220e29816a50906ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ffb074368ce8af74588107af93cba816 = $(`&lt;div id=&quot;html_ffb074368ce8af74588107af93cba816&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.535             latitude:41.7561             PM2_5:38.46111111             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2563d8d0bf1a5a3220e29816a50906ac.setContent(html_ffb074368ce8af74588107af93cba816);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a1e701a9e3bce413e0386f450bccaf7c.bindPopup(popup_2563d8d0bf1a5a3220e29816a50906ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2975a6084592f62b3ef087597bb2c929 = L.circleMarker(\\n\",\n       \"                [25.0836, 102.728],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00515e&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00515e&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_300d5292ae3967b1daec2715530cec3a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d156e7a503c875f9396b8a75035af70 = $(`&lt;div id=&quot;html_7d156e7a503c875f9396b8a75035af70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.728             latitude:25.0836             PM2_5:21.87534626             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_300d5292ae3967b1daec2715530cec3a.setContent(html_7d156e7a503c875f9396b8a75035af70);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2975a6084592f62b3ef087597bb2c929.bindPopup(popup_300d5292ae3967b1daec2715530cec3a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_63a5bdc97f7540e3b3542fa4971502ae = L.circleMarker(\\n\",\n       \"                [34.3547, 107.1431],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b77e15ea69c02d879e30846226cf081 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4436b1018d2c813e551097b2fabd9a3 = $(`&lt;div id=&quot;html_c4436b1018d2c813e551097b2fabd9a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1431             latitude:34.3547             PM2_5:50.70172911             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b77e15ea69c02d879e30846226cf081.setContent(html_c4436b1018d2c813e551097b2fabd9a3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_63a5bdc97f7540e3b3542fa4971502ae.bindPopup(popup_7b77e15ea69c02d879e30846226cf081)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_51fe33901347ce52df24ff36040b5954 = L.circleMarker(\\n\",\n       \"                [39.7153, 76.1861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_199709c1d3410caad929c73fe103dd15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cff951ea2ba743fe5b70017dd9ee4e91 = $(`&lt;div id=&quot;html_cff951ea2ba743fe5b70017dd9ee4e91&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:76.1861             latitude:39.7153             PM2_5:63.63700565             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_199709c1d3410caad929c73fe103dd15.setContent(html_cff951ea2ba743fe5b70017dd9ee4e91);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_51fe33901347ce52df24ff36040b5954.bindPopup(popup_199709c1d3410caad929c73fe103dd15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0df1659a8c438c3621a737664a012912 = L.circleMarker(\\n\",\n       \"                [24.9617, 118.6108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#006535&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#006535&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_883eb6e3dd06777191a6c072d36ed953 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_279bb5092f4dd5dab54778bb570d406c = $(`&lt;div id=&quot;html_279bb5092f4dd5dab54778bb570d406c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6108             latitude:24.9617             PM2_5:25.4             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_883eb6e3dd06777191a6c072d36ed953.setContent(html_279bb5092f4dd5dab54778bb570d406c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0df1659a8c438c3621a737664a012912.bindPopup(popup_883eb6e3dd06777191a6c072d36ed953)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a6c9ad4fd39f08990d7a0c117a77150a = L.circleMarker(\\n\",\n       \"                [36.283, 120.008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_303cdd2ec53a5a2d368145dae9d96aa7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b299921105d4c3450b9f9d3bddf8337b = $(`&lt;div id=&quot;html_b299921105d4c3450b9f9d3bddf8337b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.008             latitude:36.283             PM2_5:38.38483146             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_303cdd2ec53a5a2d368145dae9d96aa7.setContent(html_b299921105d4c3450b9f9d3bddf8337b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a6c9ad4fd39f08990d7a0c117a77150a.bindPopup(popup_303cdd2ec53a5a2d368145dae9d96aa7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ca80e7aec234d05159e05691b9deb6e6 = L.circleMarker(\\n\",\n       \"                [22.5811, 113.074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#43a200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#43a200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1e8dd1b972cbd2e0dd0dba5dcc2d4acd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b86bccc2c501bc132eb68e1b89c6353 = $(`&lt;div id=&quot;html_6b86bccc2c501bc132eb68e1b89c6353&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.074             latitude:22.5811             PM2_5:35.29722222             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1e8dd1b972cbd2e0dd0dba5dcc2d4acd.setContent(html_6b86bccc2c501bc132eb68e1b89c6353);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ca80e7aec234d05159e05691b9deb6e6.bindPopup(popup_1e8dd1b972cbd2e0dd0dba5dcc2d4acd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5fe421a90515d596c459f6cbfd074b2 = L.circleMarker(\\n\",\n       \"                [29.8264, 106.424],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#6bb600&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#6bb600&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1a2a43b327ef2d8ad488f2fbbebe2d7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_76b17350dcee503f004a184b425f07e8 = $(`&lt;div id=&quot;html_76b17350dcee503f004a184b425f07e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.424             latitude:29.8264             PM2_5:40.68156425             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1a2a43b327ef2d8ad488f2fbbebe2d7f.setContent(html_76b17350dcee503f004a184b425f07e8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5fe421a90515d596c459f6cbfd074b2.bindPopup(popup_1a2a43b327ef2d8ad488f2fbbebe2d7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af8e39b42b8b9ca381643e86ad2ef202 = L.circleMarker(\\n\",\n       \"                [43.8358, 126.5844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#1a8d00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#1a8d00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_880500b2f78e1b27e022b5385783195d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae25bea5ddbc64fb7e881dba3eb3f9c9 = $(`&lt;div id=&quot;html_ae25bea5ddbc64fb7e881dba3eb3f9c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5844             latitude:43.8358             PM2_5:31.67275281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_880500b2f78e1b27e022b5385783195d.setContent(html_ae25bea5ddbc64fb7e881dba3eb3f9c9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af8e39b42b8b9ca381643e86ad2ef202.bindPopup(popup_880500b2f78e1b27e022b5385783195d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a988994c395397cc6a4c26ba0a823119 = L.circleMarker(\\n\",\n       \"                [29.9919, 120.605],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#94ca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#94ca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3376430cdda1e8f71073188d93a1274a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2cc398747059462a942aeedbac5417a6 = $(`&lt;div id=&quot;html_2cc398747059462a942aeedbac5417a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.605             latitude:29.9919             PM2_5:42.86938202             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3376430cdda1e8f71073188d93a1274a.setContent(html_2cc398747059462a942aeedbac5417a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a988994c395397cc6a4c26ba0a823119.bindPopup(popup_3376430cdda1e8f71073188d93a1274a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2faeedbf1e7a08cad67a476eb6de9ecd = L.circleMarker(\\n\",\n       \"                [44.0114, 87.2997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_76663fca7f76b3c7bace662b8eb18050 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5922cf719603af2105655a17071d0a65 = $(`&lt;div id=&quot;html_5922cf719603af2105655a17071d0a65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2997             latitude:44.0114             PM2_5:73.18696884             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_76663fca7f76b3c7bace662b8eb18050.setContent(html_5922cf719603af2105655a17071d0a65);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2faeedbf1e7a08cad67a476eb6de9ecd.bindPopup(popup_76663fca7f76b3c7bace662b8eb18050)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7659932b816b3cf5517416c143cbf3b9 = L.circleMarker(\\n\",\n       \"                [35.5102, 102.0199],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#00790d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#00790d&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5f7bb01033344d46aab86dc9e5fadc9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e585027c4aa6b8635b4ab2eef3d8147d = $(`&lt;div id=&quot;html_e585027c4aa6b8635b4ab2eef3d8147d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.0199             latitude:35.5102             PM2_5:29.07799443             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5f7bb01033344d46aab86dc9e5fadc9c.setContent(html_e585027c4aa6b8635b4ab2eef3d8147d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7659932b816b3cf5517416c143cbf3b9.bindPopup(popup_5f7bb01033344d46aab86dc9e5fadc9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cfb1ee178c770b83f9d3acb647d1aa10 = L.circleMarker(\\n\",\n       \"                [31.7133, 118.6439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c8b771e7058056dc4c437753598a2c5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c8b4ccd47290b605064e26bb85d40123 = $(`&lt;div id=&quot;html_c8b4ccd47290b605064e26bb85d40123&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6439             latitude:31.7133             PM2_5:57.34135977             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c8b771e7058056dc4c437753598a2c5.setContent(html_c8b4ccd47290b605064e26bb85d40123);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cfb1ee178c770b83f9d3acb647d1aa10.bindPopup(popup_9c8b771e7058056dc4c437753598a2c5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_9eb0196a166685d1227fbc47ecb2b8b4 = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_9eb0196a166685d1227fbc47ecb2b8b4.color = d3.scale.threshold()\\n\",\n       \"              .domain([3.856338028, 4.011243496220441, 4.166148964440882, 4.321054432661323, 4.475959900881763, 4.630865369102205, 4.785770837322645, 4.940676305543086, 5.095581773763527, 5.2504872419839685, 5.405392710204409, 5.5602981784248495, 5.715203646645291, 5.870109114865731, 6.025014583086172, 6.179920051306613, 6.334825519527055, 6.489730987747495, 6.644636455967936, 6.799541924188377, 6.954447392408818, 7.109352860629259, 7.264258328849699, 7.419163797070141, 7.574069265290581, 7.728974733511022, 7.883880201731463, 8.038785669951904, 8.193691138172344, 8.348596606392785, 8.503502074613227, 8.658407542833668, 8.813313011054108, 8.96821847927455, 9.12312394749499, 9.27802941571543, 9.432934883935872, 9.587840352156313, 9.742745820376754, 9.897651288597194, 10.052556756817635, 10.207462225038077, 10.362367693258518, 10.517273161478958, 10.672178629699399, 10.82708409791984, 10.981989566140282, 11.136895034360721, 11.291800502581163, 11.446705970801604, 11.601611439022044, 11.756516907242485, 11.911422375462925, 12.066327843683366, 12.221233311903807, 12.376138780124247, 12.531044248344688, 12.68594971656513, 12.840855184785571, 12.99576065300601, 13.150666121226452, 13.305571589446894, 13.460477057667335, 13.615382525887775, 13.770287994108216, 13.925193462328657, 14.080098930549097, 14.235004398769538, 14.38990986698998, 14.544815335210421, 14.69972080343086, 14.854626271651302, 15.009531739871743, 15.164437208092185, 15.319342676312624, 15.474248144533066, 15.629153612753507, 15.784059080973948, 15.938964549194388, 16.09387001741483, 16.24877548563527, 16.403680953855712, 16.558586422076154, 16.713491890296595, 16.868397358517036, 17.023302826737474, 17.178208294957916, 17.333113763178357, 17.4880192313988, 17.64292469961924, 17.79783016783968, 17.952735636060122, 18.107641104280564, 18.262546572501, 18.417452040721443, 18.572357508941884, 18.727262977162326, 18.882168445382767, 19.03707391360321, 19.19197938182365, 19.346884850044088, 19.50179031826453, 19.65669578648497, 19.811601254705412, 19.96650672292585, 20.12141219114629, 20.276317659366732, 20.431223127587174, 20.586128595807615, 20.741034064028057, 20.895939532248494, 21.050845000468936, 21.205750468689377, 21.36065593690982, 21.51556140513026, 21.6704668733507, 21.825372341571143, 21.98027780979158, 22.135183278012022, 22.290088746232463, 22.444994214452905, 22.599899682673346, 22.754805150893787, 22.90971061911423, 23.06461608733467, 23.219521555555108, 23.37442702377555, 23.52933249199599, 23.684237960216432, 23.839143428436874, 23.994048896657315, 24.148954364877756, 24.303859833098194, 24.458765301318635, 24.613670769539077, 24.768576237759518, 24.92348170597996, 25.0783871742004, 25.233292642420842, 25.388198110641284, 25.54310357886172, 25.698009047082163, 25.852914515302604, 26.007819983523046, 26.162725451743487, 26.31763091996393, 26.47253638818437, 26.627441856404808, 26.78234732462525, 26.93725279284569, 27.092158261066132, 27.247063729286573, 27.401969197507015, 27.556874665727456, 27.711780133947897, 27.866685602168335, 28.021591070388777, 28.176496538609218, 28.33140200682966, 28.4863074750501, 28.641212943270542, 28.796118411490983, 28.95102387971142, 29.105929347931863, 29.260834816152304, 29.415740284372745, 29.570645752593187, 29.725551220813628, 29.88045668903407, 30.03536215725451, 30.19026762547495, 30.34517309369539, 30.50007856191583, 30.654984030136273, 30.809889498356714, 30.964794966577156, 31.119700434797597, 31.274605903018035, 31.429511371238476, 31.584416839458918, 31.73932230767936, 31.8942277758998, 32.04913324412024, 32.20403871234068, 32.358944180561124, 32.513849648781566, 32.66875511700201, 32.82366058522245, 32.97856605344289, 33.13347152166333, 33.28837698988377, 33.443282458104214, 33.59818792632465, 33.75309339454509, 33.90799886276553, 34.06290433098597, 34.217809799206414, 34.372715267426855, 34.5276207356473, 34.68252620386774, 34.83743167208817, 34.992337140308614, 35.147242608529055, 35.302148076749496, 35.45705354496994, 35.61195901319038, 35.76686448141082, 35.92176994963127, 36.0766754178517, 36.231580886072145, 36.386486354292586, 36.54139182251303, 36.69629729073347, 36.85120275895391, 37.00610822717435, 37.16101369539479, 37.315919163615234, 37.470824631835676, 37.62573010005612, 37.78063556827655, 37.93554103649699, 38.090446504717434, 38.245351972937875, 38.40025744115832, 38.55516290937876, 38.7100683775992, 38.86497384581964, 39.01987931404008, 39.174784782260524, 39.329690250480965, 39.48459571870141, 39.63950118692185, 39.79440665514229, 39.94931212336273, 40.104217591583165, 40.259123059803606, 40.41402852802405, 40.56893399624449, 40.72383946446493, 40.87874493268537, 41.03365040090581, 41.188555869126255, 41.343461337346696, 41.49836680556714, 41.65327227378758, 41.80817774200802, 41.96308321022846, 42.1179886784489, 42.272894146669344, 42.42779961488978, 42.58270508311022, 42.73761055133066, 42.8925160195511, 43.047421487771544, 43.202326955991985, 43.35723242421243, 43.51213789243287, 43.66704336065331, 43.82194882887375, 43.97685429709419, 44.131759765314634, 44.286665233535075, 44.441570701755516, 44.59647616997596, 44.75138163819639, 44.90628710641683, 45.061192574637275, 45.216098042857716, 45.37100351107816, 45.5259089792986, 45.68081444751904, 45.83571991573948, 45.99062538395992, 46.145530852180364, 46.300436320400806, 46.45534178862125, 46.61024725684169, 46.76515272506213, 46.92005819328257, 47.074963661503006, 47.22986912972345, 47.38477459794389, 47.53968006616433, 47.69458553438477, 47.84949100260521, 48.004396470825654, 48.159301939046095, 48.31420740726654, 48.46911287548698, 48.62401834370742, 48.77892381192786, 48.9338292801483, 49.08873474836874, 49.243640216589185, 49.39854568480962, 49.55345115303006, 49.7083566212505, 49.86326208947094, 50.018167557691385, 50.173073025911826, 50.32797849413227, 50.48288396235271, 50.63778943057315, 50.79269489879359, 50.94760036701403, 51.102505835234474, 51.257411303454916, 51.41231677167536, 51.5672222398958, 51.72212770811623, 51.877033176336674, 52.031938644557115, 52.18684411277756, 52.341749580998, 52.49665504921844, 52.65156051743888, 52.80646598565932, 52.961371453879764, 53.116276922100205, 53.27118239032065, 53.42608785854109, 53.58099332676153, 53.73589879498197, 53.89080426320241, 54.045709731422846, 54.20061519964329, 54.35552066786373, 54.51042613608417, 54.66533160430461, 54.82023707252505, 54.975142540745495, 55.130048008965936, 55.28495347718638, 55.43985894540682, 55.59476441362726, 55.7496698818477, 55.90457535006814, 56.059480818288584, 56.214386286509026, 56.36929175472946, 56.5241972229499, 56.67910269117034, 56.834008159390784, 56.988913627611225, 57.14381909583167, 57.29872456405211, 57.45363003227255, 57.60853550049299, 57.76344096871343, 57.918346436933874, 58.073251905154315, 58.228157373374756, 58.3830628415952, 58.53796830981564, 58.69287377803607, 58.847779246256515, 59.002684714476956, 59.1575901826974, 59.31249565091784, 59.46740111913828, 59.62230658735872, 59.77721205557916, 59.932117523799604, 60.087022992020046, 60.24192846024049, 60.39683392846093, 60.55173939668137, 60.70664486490181, 60.86155033312225, 61.01645580134269, 61.17136126956313, 61.32626673778357, 61.48117220600401, 61.63607767422445, 61.790983142444894, 61.945888610665335, 62.10079407888578, 62.25569954710622, 62.41060501532666, 62.5655104835471, 62.72041595176754, 62.87532141998798, 63.030226888208425, 63.185132356428866, 63.3400378246493, 63.49494329286974, 63.64984876109018, 63.804754229310625, 63.959659697531066, 64.1145651657515, 64.26947063397195, 64.42437610219238, 64.57928157041283, 64.73418703863327, 64.88909250685371, 65.04399797507415, 65.1989034432946, 65.35380891151503, 65.50871437973548, 65.66361984795591, 65.81852531617635, 65.97343078439678, 66.12833625261723, 66.28324172083767, 66.43814718905811, 66.59305265727855, 66.747958125499, 66.90286359371943, 67.05776906193988, 67.21267453016031, 67.36757999838076, 67.5224854666012, 67.67739093482164, 67.83229640304208, 67.98720187126253, 68.14210733948296, 68.2970128077034, 68.45191827592384, 68.60682374414428, 68.76172921236473, 68.91663468058516, 69.07154014880561, 69.22644561702604, 69.3813510852465, 69.53625655346693, 69.69116202168736, 69.84606748990781, 70.00097295812824, 70.15587842634869, 70.31078389456913, 70.46568936278958, 70.62059483101001, 70.77550029923046, 70.93040576745089, 71.08531123567134, 71.24021670389178, 71.39512217211222, 71.55002764033266, 71.70493310855309, 71.85983857677354, 72.01474404499398, 72.16964951321442, 72.32455498143486, 72.4794604496553, 72.63436591787574, 72.78927138609619, 72.94417685431662, 73.09908232253707, 73.2539877907575, 73.40889325897795, 73.56379872719839, 73.71870419541884, 73.87360966363927, 74.0285151318597, 74.18342060008015, 74.33832606830059, 74.49323153652104, 74.64813700474147, 74.80304247296192, 74.95794794118235, 75.1128534094028, 75.26775887762324, 75.42266434584369, 75.57756981406412, 75.73247528228457, 75.887380750505, 76.04228621872545, 76.19719168694589, 76.35209715516632, 76.50700262338677, 76.6619080916072, 76.81681355982765, 76.97171902804808, 77.12662449626853, 77.28152996448897, 77.43643543270942, 77.59134090092985, 77.7462463691503, 77.90115183737073, 78.05605730559118, 78.21096277381162, 78.36586824203206, 78.5207737102525, 78.67567917847293, 78.83058464669338, 78.98549011491382, 79.14039558313426, 79.2953010513547, 79.45020651957515, 79.60511198779558, 79.76001745601603, 79.91492292423646, 80.06982839245691, 80.22473386067735, 80.3796393288978, 80.53454479711823, 80.68945026533868, 80.84435573355911, 80.99926120177955, 81.15416667])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_9eb0196a166685d1227fbc47ecb2b8b4.x = d3.scale.linear()\\n\",\n       \"              .domain([3.856338028, 81.15416667])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_9eb0196a166685d1227fbc47ecb2b8b4.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_9eb0196a166685d1227fbc47ecb2b8b4.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_9eb0196a166685d1227fbc47ecb2b8b4.legend.addTo(map_06207e3c7f1c9d412eccf4953f5de56a);\\n\",\n       \"\\n\",\n       \"    color_map_9eb0196a166685d1227fbc47ecb2b8b4.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_9eb0196a166685d1227fbc47ecb2b8b4.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([3.856338028, &#x27;&#x27;, &#x27;&#x27;, 15.451012324299999, &#x27;&#x27;, &#x27;&#x27;, 27.045686620599998, &#x27;&#x27;, &#x27;&#x27;, 38.6403609169, &#x27;&#x27;, &#x27;&#x27;, 50.2350352132, &#x27;&#x27;, &#x27;&#x27;, 61.8297095095, &#x27;&#x27;, &#x27;&#x27;, 73.42438380579999, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_9eb0196a166685d1227fbc47ecb2b8b4.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_9eb0196a166685d1227fbc47ecb2b8b4.g = color_map_9eb0196a166685d1227fbc47ecb2b8b4.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_9eb0196a166685d1227fbc47ecb2b8b4.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_9eb0196a166685d1227fbc47ecb2b8b4.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_9eb0196a166685d1227fbc47ecb2b8b4.x(color_map_9eb0196a166685d1227fbc47ecb2b8b4.color.domain()[i - 1]) : color_map_9eb0196a166685d1227fbc47ecb2b8b4.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_9eb0196a166685d1227fbc47ecb2b8b4.color.domain().length ? color_map_9eb0196a166685d1227fbc47ecb2b8b4.x(color_map_9eb0196a166685d1227fbc47ecb2b8b4.color.domain()[i]) : color_map_9eb0196a166685d1227fbc47ecb2b8b4.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_9eb0196a166685d1227fbc47ecb2b8b4.g.call(color_map_9eb0196a166685d1227fbc47ecb2b8b4.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13b9d9ec750>\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 验证集\\n\",\n    \"visualizer.display_dataset(name='valid', y_column='PM2_5', colors=[\\n\",\n    \"                           'blue', 'green', 'yellow', 'red'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"E378483E2F1E4709AC9385F59C214BE5\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"预测数据\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {\n    \"id\": \"3658C459578C4B8AA4E2AB30DE319BDD\",\n    \"jupyter\": {},\n    \"notebookId\": \"653faf35b195bb283a4b7f54\",\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div style=\\\"width:100%;\\\"><div style=\\\"position:relative;width:100%;height:0;padding-bottom:60%;\\\"><span style=\\\"color:#565656\\\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\\\"&lt;!DOCTYPE html&gt;\\n\",\n       \"&lt;html&gt;\\n\",\n       \"&lt;head&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\\n\",\n       \"    \\n\",\n       \"        &lt;script&gt;\\n\",\n       \"            L_NO_TOUCH = false;\\n\",\n       \"            L_DISABLE_3D = false;\\n\",\n       \"        &lt;/script&gt;\\n\",\n       \"    \\n\",\n       \"    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\\n\",\n       \"    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\\n\",\n       \"    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\\n\",\n       \"    \\n\",\n       \"            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\\n\",\n       \"                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\\n\",\n       \"            &lt;style&gt;\\n\",\n       \"                #map_7917df71d06dd74586ec2156037beea1 {\\n\",\n       \"                    position: relative;\\n\",\n       \"                    width: 100.0%;\\n\",\n       \"                    height: 100.0%;\\n\",\n       \"                    left: 0.0%;\\n\",\n       \"                    top: 0.0%;\\n\",\n       \"                }\\n\",\n       \"                .leaflet-container { font-size: 1rem; }\\n\",\n       \"            &lt;/style&gt;\\n\",\n       \"        \\n\",\n       \"    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\\n\",\n       \"&lt;/head&gt;\\n\",\n       \"&lt;body&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            &lt;div class=&quot;folium-map&quot; id=&quot;map_7917df71d06dd74586ec2156037beea1&quot; &gt;&lt;/div&gt;\\n\",\n       \"        \\n\",\n       \"&lt;/body&gt;\\n\",\n       \"&lt;script&gt;\\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var map_7917df71d06dd74586ec2156037beea1 = L.map(\\n\",\n       \"                &quot;map_7917df71d06dd74586ec2156037beea1&quot;,\\n\",\n       \"                {\\n\",\n       \"                    center: [32.8265380322905, 112.76822016089383],\\n\",\n       \"                    crs: L.CRS.EPSG3857,\\n\",\n       \"                    zoom: 4,\\n\",\n       \"                    zoomControl: true,\\n\",\n       \"                    preferCanvas: false,\\n\",\n       \"                }\\n\",\n       \"            );\\n\",\n       \"\\n\",\n       \"            \\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var tile_layer_53099a38a14c0ab686a16dcfcf74daa8 = L.tileLayer(\\n\",\n       \"                &quot;https://wprd01.is.autonavi.com/appmaptile?x={x}\\\\u0026y={y}\\\\u0026z={z}\\\\u0026lang=en\\\\u0026size=1\\\\u0026scl=1\\\\u0026style=7&quot;,\\n\",\n       \"                {&quot;attribution&quot;: &quot;\\\\u9ad8\\\\u5fb7&quot;, &quot;detectRetina&quot;: false, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\\n\",\n       \"            );\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            tile_layer_53099a38a14c0ab686a16dcfcf74daa8.addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e7ea6f84b3a0ed2e6a2ca0b7cce822a = L.circleMarker(\\n\",\n       \"                [30.8388, 106.1087],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7bcbfb2d050124bcf1067cc06cc2469c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_47c9e2edd01cd255fea4689601155fd4 = $(`&lt;div id=&quot;html_47c9e2edd01cd255fea4689601155fd4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.1087             latitude:30.8388             pred_result:58.37987518310547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7bcbfb2d050124bcf1067cc06cc2469c.setContent(html_47c9e2edd01cd255fea4689601155fd4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e7ea6f84b3a0ed2e6a2ca0b7cce822a.bindPopup(popup_7bcbfb2d050124bcf1067cc06cc2469c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_118c574a9b14207ecddbbcedb71cafea = L.circleMarker(\\n\",\n       \"                [36.1758, 117.1081],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9bfdc3d2dc63b0504f2fbabe08a0f451 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f9a75904b264f36bc02eed6a3c3ed96 = $(`&lt;div id=&quot;html_4f9a75904b264f36bc02eed6a3c3ed96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1081             latitude:36.1758             pred_result:60.28813934326172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9bfdc3d2dc63b0504f2fbabe08a0f451.setContent(html_4f9a75904b264f36bc02eed6a3c3ed96);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_118c574a9b14207ecddbbcedb71cafea.bindPopup(popup_9bfdc3d2dc63b0504f2fbabe08a0f451)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_37c413c4a1772b00c80517096dcd7a04 = L.circleMarker(\\n\",\n       \"                [39.1067, 117.1941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ada6d8118664a8597e4310589cc3b9b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_517640cc9bb0f98a032e58cb554638a6 = $(`&lt;div id=&quot;html_517640cc9bb0f98a032e58cb554638a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1941             latitude:39.1067             pred_result:59.40922546386719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ada6d8118664a8597e4310589cc3b9b4.setContent(html_517640cc9bb0f98a032e58cb554638a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_37c413c4a1772b00c80517096dcd7a04.bindPopup(popup_ada6d8118664a8597e4310589cc3b9b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_20f50a4c509311a694b3f361d5e4d438 = L.circleMarker(\\n\",\n       \"                [32.1142, 112.1825],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2b5205610b8f74f8ca0fbb3d85c8f5c0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a1d4e9fce06c4fdc8eaa07edde6c0576 = $(`&lt;div id=&quot;html_a1d4e9fce06c4fdc8eaa07edde6c0576&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.1825             latitude:32.1142             pred_result:55.093475341796875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2b5205610b8f74f8ca0fbb3d85c8f5c0.setContent(html_a1d4e9fce06c4fdc8eaa07edde6c0576);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_20f50a4c509311a694b3f361d5e4d438.bindPopup(popup_2b5205610b8f74f8ca0fbb3d85c8f5c0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_008191f9ce747889b03932ccb7e454b8 = L.circleMarker(\\n\",\n       \"                [36.792, 119.952],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be7b41e72b2affa4c29e19e3c0cbd04a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9962988a66f0d990ba23e07d32a3e43f = $(`&lt;div id=&quot;html_9962988a66f0d990ba23e07d32a3e43f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.952             latitude:36.792             pred_result:69.03382873535156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be7b41e72b2affa4c29e19e3c0cbd04a.setContent(html_9962988a66f0d990ba23e07d32a3e43f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_008191f9ce747889b03932ccb7e454b8.bindPopup(popup_be7b41e72b2affa4c29e19e3c0cbd04a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7de9cc49c6268d94c4e6306e6f365d80 = L.circleMarker(\\n\",\n       \"                [40.6532, 109.8756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b72e6be2624f3747a3a97234a48d029a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9fe8d0d62f6fe8a88f823636afc5b35 = $(`&lt;div id=&quot;html_b9fe8d0d62f6fe8a88f823636afc5b35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.8756             latitude:40.6532             pred_result:78.76819610595703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b72e6be2624f3747a3a97234a48d029a.setContent(html_b9fe8d0d62f6fe8a88f823636afc5b35);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7de9cc49c6268d94c4e6306e6f365d80.bindPopup(popup_b72e6be2624f3747a3a97234a48d029a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cdc39d77ebbd4fe601e8a92bd28b13ca = L.circleMarker(\\n\",\n       \"                [36.0875, 111.5025],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bfa3005fd35b275f6b1f6e247f34727 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58301c426ecf0dfafbbb5e37a9c98f92 = $(`&lt;div id=&quot;html_58301c426ecf0dfafbbb5e37a9c98f92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5025             latitude:36.0875             pred_result:75.513916015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bfa3005fd35b275f6b1f6e247f34727.setContent(html_58301c426ecf0dfafbbb5e37a9c98f92);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cdc39d77ebbd4fe601e8a92bd28b13ca.bindPopup(popup_5bfa3005fd35b275f6b1f6e247f34727)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_745425f421eec33b420299ada020a8bd = L.circleMarker(\\n\",\n       \"                [38.8343, 105.6775],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_63d4a38b4be0d95b3411e3ed89dbbea6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_36f37df2da41a0e2bdc86b0153f155b6 = $(`&lt;div id=&quot;html_36f37df2da41a0e2bdc86b0153f155b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6775             latitude:38.8343             pred_result:85.10127258300781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_63d4a38b4be0d95b3411e3ed89dbbea6.setContent(html_36f37df2da41a0e2bdc86b0153f155b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_745425f421eec33b420299ada020a8bd.bindPopup(popup_63d4a38b4be0d95b3411e3ed89dbbea6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_98520544beae2fceff0ab6bfad73ef35 = L.circleMarker(\\n\",\n       \"                [22.7906, 108.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_266fc75168c9004468546431c0aee5d2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_deb91adf1c8444ead10e397da6153190 = $(`&lt;div id=&quot;html_deb91adf1c8444ead10e397da6153190&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.439             latitude:22.7906             pred_result:68.89098358154297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_266fc75168c9004468546431c0aee5d2.setContent(html_deb91adf1c8444ead10e397da6153190);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_98520544beae2fceff0ab6bfad73ef35.bindPopup(popup_266fc75168c9004468546431c0aee5d2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d5d075dd1ef5f4dbd9c7bad0b79433b0 = L.circleMarker(\\n\",\n       \"                [37.4489, 116.3189],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c7cda5177d6bc336a02618619e0111c2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d1750f185bf4aa9fe00a124e0095fbbc = $(`&lt;div id=&quot;html_d1750f185bf4aa9fe00a124e0095fbbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3189             latitude:37.4489             pred_result:59.404422760009766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c7cda5177d6bc336a02618619e0111c2.setContent(html_d1750f185bf4aa9fe00a124e0095fbbc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d5d075dd1ef5f4dbd9c7bad0b79433b0.bindPopup(popup_c7cda5177d6bc336a02618619e0111c2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d373dd022612e7c83aa113598936eef9 = L.circleMarker(\\n\",\n       \"                [38.44139, 106.2275],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a830d281931a0df8ebb16f46045705f9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_912495c5d8aa53b2850e759963206545 = $(`&lt;div id=&quot;html_912495c5d8aa53b2850e759963206545&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.2275             latitude:38.44139             pred_result:84.64541625976562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a830d281931a0df8ebb16f46045705f9.setContent(html_912495c5d8aa53b2850e759963206545);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d373dd022612e7c83aa113598936eef9.bindPopup(popup_a830d281931a0df8ebb16f46045705f9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7a305538c51310fa546d02c694317db9 = L.circleMarker(\\n\",\n       \"                [23.01277778, 113.7944444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_02312e4e72be212658461cbba4dae73f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_789ac355dd3536441bfb2dfefe5a51db = $(`&lt;div id=&quot;html_789ac355dd3536441bfb2dfefe5a51db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.7944444             latitude:23.01277778             pred_result:67.34257507324219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_02312e4e72be212658461cbba4dae73f.setContent(html_789ac355dd3536441bfb2dfefe5a51db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7a305538c51310fa546d02c694317db9.bindPopup(popup_02312e4e72be212658461cbba4dae73f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_576acd34a41f21a101296eaad4955832 = L.circleMarker(\\n\",\n       \"                [42.2725, 118.9572],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_db33e8b2ba01a82e847562ca70271b72 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_af89405277284bff76db0900891e4397 = $(`&lt;div id=&quot;html_af89405277284bff76db0900891e4397&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.9572             latitude:42.2725             pred_result:75.6131820678711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_db33e8b2ba01a82e847562ca70271b72.setContent(html_af89405277284bff76db0900891e4397);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_576acd34a41f21a101296eaad4955832.bindPopup(popup_db33e8b2ba01a82e847562ca70271b72)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d71235fffa22452beb2468e6a348553f = L.circleMarker(\\n\",\n       \"                [34.7545, 113.681],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30d1de59523ff31981bf113e703fd24b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_11a94e555447ca0639fb36e76d91137a = $(`&lt;div id=&quot;html_11a94e555447ca0639fb36e76d91137a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.681             latitude:34.7545             pred_result:60.55183029174805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30d1de59523ff31981bf113e703fd24b.setContent(html_11a94e555447ca0639fb36e76d91137a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d71235fffa22452beb2468e6a348553f.bindPopup(popup_30d1de59523ff31981bf113e703fd24b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d47289b2c6603f8f3d99055be4b73908 = L.circleMarker(\\n\",\n       \"                [31.1278, 97.1804],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bdfb4cff3f96f62351e626885b1b7153 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_98519e3297bea34b3eb452d3e1a7ddc5 = $(`&lt;div id=&quot;html_98519e3297bea34b3eb452d3e1a7ddc5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.1804             latitude:31.1278             pred_result:73.712646484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bdfb4cff3f96f62351e626885b1b7153.setContent(html_98519e3297bea34b3eb452d3e1a7ddc5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d47289b2c6603f8f3d99055be4b73908.bindPopup(popup_bdfb4cff3f96f62351e626885b1b7153)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9449b43d12b851448fb0b35c135da192 = L.circleMarker(\\n\",\n       \"                [44.3336, 84.8983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_10e3691c986706d7e750e9e41fbf9788 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e97c6c35cb8d04a567b83650ad7bec27 = $(`&lt;div id=&quot;html_e97c6c35cb8d04a567b83650ad7bec27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8983             latitude:44.3336             pred_result:85.50011444091797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_10e3691c986706d7e750e9e41fbf9788.setContent(html_e97c6c35cb8d04a567b83650ad7bec27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9449b43d12b851448fb0b35c135da192.bindPopup(popup_10e3691c986706d7e750e9e41fbf9788)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4ad86aaf7a4b85903d18672a998816a4 = L.circleMarker(\\n\",\n       \"                [36.6739, 117.114],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_26300337f5914a895140732c5d6e6758 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3e24dc4578507a61b4588ab5b0629766 = $(`&lt;div id=&quot;html_3e24dc4578507a61b4588ab5b0629766&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.114             latitude:36.6739             pred_result:60.04145050048828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_26300337f5914a895140732c5d6e6758.setContent(html_3e24dc4578507a61b4588ab5b0629766);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4ad86aaf7a4b85903d18672a998816a4.bindPopup(popup_26300337f5914a895140732c5d6e6758)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_89fbf506b2c2be96bdbca2aad493beb3 = L.circleMarker(\\n\",\n       \"                [33.965, 118.283],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c35312eff1226e45d2a3103b3b7a3e3f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_148764d0c87e4549607e18e33fee27e9 = $(`&lt;div id=&quot;html_148764d0c87e4549607e18e33fee27e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.283             latitude:33.965             pred_result:56.948974609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c35312eff1226e45d2a3103b3b7a3e3f.setContent(html_148764d0c87e4549607e18e33fee27e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_89fbf506b2c2be96bdbca2aad493beb3.bindPopup(popup_c35312eff1226e45d2a3103b3b7a3e3f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b7148aae4502c0f64f01c98160988fa = L.circleMarker(\\n\",\n       \"                [35.259, 113.1992],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8dea28fd32c53469bd7cee0912b3adb7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_89fa052abef2c600e8f4b99c129308d0 = $(`&lt;div id=&quot;html_89fa052abef2c600e8f4b99c129308d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1992             latitude:35.259             pred_result:64.66651916503906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8dea28fd32c53469bd7cee0912b3adb7.setContent(html_89fa052abef2c600e8f4b99c129308d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b7148aae4502c0f64f01c98160988fa.bindPopup(popup_8dea28fd32c53469bd7cee0912b3adb7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_adfd47e382401a674a537506f05fe3a6 = L.circleMarker(\\n\",\n       \"                [31.56, 120.294],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d6d3f1f17682dedf6bcd5251b460672c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fcff9ae774ef570e92d3e7953a56dc73 = $(`&lt;div id=&quot;html_fcff9ae774ef570e92d3e7953a56dc73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.294             latitude:31.56             pred_result:61.687477111816406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d6d3f1f17682dedf6bcd5251b460672c.setContent(html_fcff9ae774ef570e92d3e7953a56dc73);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_adfd47e382401a674a537506f05fe3a6.bindPopup(popup_d6d3f1f17682dedf6bcd5251b460672c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2a0fe90c5bbd9700479f0a82fc764491 = L.circleMarker(\\n\",\n       \"                [24.3702, 102.5389],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d51e24f7dcbebf072b89a7eb359c8efb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c4ffaaf6b128631b52b4cd2eb6b0417f = $(`&lt;div id=&quot;html_c4ffaaf6b128631b52b4cd2eb6b0417f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.5389             latitude:24.3702             pred_result:74.22381591796875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d51e24f7dcbebf072b89a7eb359c8efb.setContent(html_c4ffaaf6b128631b52b4cd2eb6b0417f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2a0fe90c5bbd9700479f0a82fc764491.bindPopup(popup_d51e24f7dcbebf072b89a7eb359c8efb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6a4e5e58e7e91d73ff6d92a0253f1071 = L.circleMarker(\\n\",\n       \"                [41.7089, 123.439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0a55070ceaaf4d21f83ae86cdef9eaf6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4f29bc479c2e0cdba22d617f00b4d5b0 = $(`&lt;div id=&quot;html_4f29bc479c2e0cdba22d617f00b4d5b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.439             latitude:41.7089             pred_result:67.28352355957031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0a55070ceaaf4d21f83ae86cdef9eaf6.setContent(html_4f29bc479c2e0cdba22d617f00b4d5b0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6a4e5e58e7e91d73ff6d92a0253f1071.bindPopup(popup_0a55070ceaaf4d21f83ae86cdef9eaf6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f6a18ab5b36d3f81546c4f4eb081a75c = L.circleMarker(\\n\",\n       \"                [30.2819, 109.4689],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c9ee92a627a6b7e1377c968050032713 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_908a6966e68c700e992fa346cd4e1a13 = $(`&lt;div id=&quot;html_908a6966e68c700e992fa346cd4e1a13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.4689             latitude:30.2819             pred_result:51.394561767578125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c9ee92a627a6b7e1377c968050032713.setContent(html_908a6966e68c700e992fa346cd4e1a13);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f6a18ab5b36d3f81546c4f4eb081a75c.bindPopup(popup_c9ee92a627a6b7e1377c968050032713)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_013c14bca99879efb35e7fd1952e70d2 = L.circleMarker(\\n\",\n       \"                [28.5819, 112.3744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4c372b9d92f0ee8d3c38e49c0edbd41 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1bb3f0a22406934b01cebf44ec3a89cf = $(`&lt;div id=&quot;html_1bb3f0a22406934b01cebf44ec3a89cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.3744             latitude:28.5819             pred_result:50.829673767089844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4c372b9d92f0ee8d3c38e49c0edbd41.setContent(html_1bb3f0a22406934b01cebf44ec3a89cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_013c14bca99879efb35e7fd1952e70d2.bindPopup(popup_d4c372b9d92f0ee8d3c38e49c0edbd41)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_87ac1df6935444cf5e277cdfa46baf29 = L.circleMarker(\\n\",\n       \"                [24.7121, 108.2134],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c0217b84d5a81cb5ecf602c843fae39 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bfccf2ed311fdaeaa354c490d4921501 = $(`&lt;div id=&quot;html_bfccf2ed311fdaeaa354c490d4921501&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.2134             latitude:24.7121             pred_result:60.02448654174805             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c0217b84d5a81cb5ecf602c843fae39.setContent(html_bfccf2ed311fdaeaa354c490d4921501);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_87ac1df6935444cf5e277cdfa46baf29.bindPopup(popup_7c0217b84d5a81cb5ecf602c843fae39)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2af66b973414a60b016235bb45729541 = L.circleMarker(\\n\",\n       \"                [43.768, 87.6046],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_97b687f818cf0e81d528deb4b536e891 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bee27d8fae375189c0b0097541ad6c25 = $(`&lt;div id=&quot;html_bee27d8fae375189c0b0097541ad6c25&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.6046             latitude:43.768             pred_result:90.00296783447266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_97b687f818cf0e81d528deb4b536e891.setContent(html_bee27d8fae375189c0b0097541ad6c25);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2af66b973414a60b016235bb45729541.bindPopup(popup_97b687f818cf0e81d528deb4b536e891)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_53fa6eb9d84882094a73e599d5c9eb50 = L.circleMarker(\\n\",\n       \"                [32.9444, 117.3575],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6289c931e8c0d0aa663e2d8d278cd592 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_31b443caecb9a6b1a7abfd989871a276 = $(`&lt;div id=&quot;html_31b443caecb9a6b1a7abfd989871a276&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3575             latitude:32.9444             pred_result:52.830284118652344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6289c931e8c0d0aa663e2d8d278cd592.setContent(html_31b443caecb9a6b1a7abfd989871a276);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_53fa6eb9d84882094a73e599d5c9eb50.bindPopup(popup_6289c931e8c0d0aa663e2d8d278cd592)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_290b2bae3b46587a785fd3300ce1ccc8 = L.circleMarker(\\n\",\n       \"                [23.08, 114.4053],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9cb2c079563fd7d4e751693d7b0d934b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6f4a0392e2a89441ae254955ba85349c = $(`&lt;div id=&quot;html_6f4a0392e2a89441ae254955ba85349c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4053             latitude:23.08             pred_result:70.8741455078125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9cb2c079563fd7d4e751693d7b0d934b.setContent(html_6f4a0392e2a89441ae254955ba85349c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_290b2bae3b46587a785fd3300ce1ccc8.bindPopup(popup_9cb2c079563fd7d4e751693d7b0d934b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a30a49fd5ce5b10f3ac8edb595ba190a = L.circleMarker(\\n\",\n       \"                [23.2783, 113.568],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_19f6c7a4de516da00c3828ae4a37a505 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_54c22f96eae8338cc44c70483420250b = $(`&lt;div id=&quot;html_54c22f96eae8338cc44c70483420250b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.568             latitude:23.2783             pred_result:64.2994384765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_19f6c7a4de516da00c3828ae4a37a505.setContent(html_54c22f96eae8338cc44c70483420250b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a30a49fd5ce5b10f3ac8edb595ba190a.bindPopup(popup_19f6c7a4de516da00c3828ae4a37a505)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2ee5d3fb75d43445e6cde07a5b3cd923 = L.circleMarker(\\n\",\n       \"                [24.9624, 102.625],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_955f927d48faf8be5e7264352a8890a0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf445abb5407cda8d2ae4e13b3a447a0 = $(`&lt;div id=&quot;html_cf445abb5407cda8d2ae4e13b3a447a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.625             latitude:24.9624             pred_result:65.73400115966797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_955f927d48faf8be5e7264352a8890a0.setContent(html_cf445abb5407cda8d2ae4e13b3a447a0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2ee5d3fb75d43445e6cde07a5b3cd923.bindPopup(popup_955f927d48faf8be5e7264352a8890a0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f9218ebcc9aa1acd12382b10fd4e5947 = L.circleMarker(\\n\",\n       \"                [32.6028, 116.8556],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da6d713e34526a2250cab37ba1a8fc0f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_edb83abb672085a53732c7cfcc8b4d2d = $(`&lt;div id=&quot;html_edb83abb672085a53732c7cfcc8b4d2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.8556             latitude:32.6028             pred_result:53.224212646484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da6d713e34526a2250cab37ba1a8fc0f.setContent(html_edb83abb672085a53732c7cfcc8b4d2d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f9218ebcc9aa1acd12382b10fd4e5947.bindPopup(popup_da6d713e34526a2250cab37ba1a8fc0f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18b69d2827cf36c40c33a6c403a51ac3 = L.circleMarker(\\n\",\n       \"                [34.3708, 107.1586],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_77a07dabcc52ce5d190c7096b6503d9c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8fbb66bf41f4d38207942eb296ec0850 = $(`&lt;div id=&quot;html_8fbb66bf41f4d38207942eb296ec0850&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1586             latitude:34.3708             pred_result:69.1961898803711             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_77a07dabcc52ce5d190c7096b6503d9c.setContent(html_8fbb66bf41f4d38207942eb296ec0850);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18b69d2827cf36c40c33a6c403a51ac3.bindPopup(popup_77a07dabcc52ce5d190c7096b6503d9c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_480ff789215af40f42e19cf81f858a1a = L.circleMarker(\\n\",\n       \"                [45.61, 126.615],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2ddba11a0c6e66c0b4a0c4f5502ea075 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ae60f48d89b64562df5ceae9bce08be2 = $(`&lt;div id=&quot;html_ae60f48d89b64562df5ceae9bce08be2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.615             latitude:45.61             pred_result:73.79060363769531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2ddba11a0c6e66c0b4a0c4f5502ea075.setContent(html_ae60f48d89b64562df5ceae9bce08be2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_480ff789215af40f42e19cf81f858a1a.bindPopup(popup_2ddba11a0c6e66c0b4a0c4f5502ea075)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ffa2e36bebd63a6324a373ddf53029f5 = L.circleMarker(\\n\",\n       \"                [40.1194, 124.3678],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_04cae5f2eaf570cf45c3ce386e102b74 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5fba8c46a3cb8d3f8d27b021e2389c1e = $(`&lt;div id=&quot;html_5fba8c46a3cb8d3f8d27b021e2389c1e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3678             latitude:40.1194             pred_result:67.46394348144531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_04cae5f2eaf570cf45c3ce386e102b74.setContent(html_5fba8c46a3cb8d3f8d27b021e2389c1e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ffa2e36bebd63a6324a373ddf53029f5.bindPopup(popup_04cae5f2eaf570cf45c3ce386e102b74)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9f3834fe3cbe791a71dc5d71c92fde88 = L.circleMarker(\\n\",\n       \"                [41.0228, 123.1289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ab60da0c477d4f6192541c2c280d8263 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d87d84de5b606a170d11c5ea56c5ac9 = $(`&lt;div id=&quot;html_6d87d84de5b606a170d11c5ea56c5ac9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.1289             latitude:41.0228             pred_result:67.76490020751953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ab60da0c477d4f6192541c2c280d8263.setContent(html_6d87d84de5b606a170d11c5ea56c5ac9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9f3834fe3cbe791a71dc5d71c92fde88.bindPopup(popup_ab60da0c477d4f6192541c2c280d8263)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_269a6aa70f6c12e90a3448eef854b03b = L.circleMarker(\\n\",\n       \"                [31.238, 121.4],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8a065665d0569dc0715b204fc5aa2f9b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d26a71327e36c6a92410e2c364a42b33 = $(`&lt;div id=&quot;html_d26a71327e36c6a92410e2c364a42b33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.4             latitude:31.238             pred_result:64.35626220703125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8a065665d0569dc0715b204fc5aa2f9b.setContent(html_d26a71327e36c6a92410e2c364a42b33);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_269a6aa70f6c12e90a3448eef854b03b.bindPopup(popup_8a065665d0569dc0715b204fc5aa2f9b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f7fea031487c2b4e3c8d9368c6c91e7 = L.circleMarker(\\n\",\n       \"                [30.2456, 120.127],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8c80c5e84ddb76ffe94d9bdd801f96d3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_787fc4af938da5280f343a477ae9c091 = $(`&lt;div id=&quot;html_787fc4af938da5280f343a477ae9c091&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.127             latitude:30.2456             pred_result:57.09258270263672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8c80c5e84ddb76ffe94d9bdd801f96d3.setContent(html_787fc4af938da5280f343a477ae9c091);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f7fea031487c2b4e3c8d9368c6c91e7.bindPopup(popup_8c80c5e84ddb76ffe94d9bdd801f96d3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ae6c6a6551e5e3b8108591066ae1e19 = L.circleMarker(\\n\",\n       \"                [38.5061, 102.1708],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e19ee6e4527af28a4b31c9a28ddad069 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_bda3f1b038c515166fe1d5c7c3e1f5f1 = $(`&lt;div id=&quot;html_bda3f1b038c515166fe1d5c7c3e1f5f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1708             latitude:38.5061             pred_result:88.791015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e19ee6e4527af28a4b31c9a28ddad069.setContent(html_bda3f1b038c515166fe1d5c7c3e1f5f1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ae6c6a6551e5e3b8108591066ae1e19.bindPopup(popup_e19ee6e4527af28a4b31c9a28ddad069)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c3c0ed2a21aab1e631ebb2a042873526 = L.circleMarker(\\n\",\n       \"                [36.7339, 119.0841],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a99204fa7ee2af4ab737163fd4e1d013 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dad23daaf5ae21a0f0b7c02d93a7b043 = $(`&lt;div id=&quot;html_dad23daaf5ae21a0f0b7c02d93a7b043&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0841             latitude:36.7339             pred_result:67.43778991699219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a99204fa7ee2af4ab737163fd4e1d013.setContent(html_dad23daaf5ae21a0f0b7c02d93a7b043);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c3c0ed2a21aab1e631ebb2a042873526.bindPopup(popup_a99204fa7ee2af4ab737163fd4e1d013)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_def0101aaccd44d709c612593ce5dec8 = L.circleMarker(\\n\",\n       \"                [32.2786, 118.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f635bca797c48a938158bf369aa7c6af = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9d1370c642e267065987f4ced92c44c = $(`&lt;div id=&quot;html_e9d1370c642e267065987f4ced92c44c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3244             latitude:32.2786             pred_result:50.50080871582031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f635bca797c48a938158bf369aa7c6af.setContent(html_e9d1370c642e267065987f4ced92c44c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_def0101aaccd44d709c612593ce5dec8.bindPopup(popup_f635bca797c48a938158bf369aa7c6af)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef9a41c5abc19e94a2eff1aa22ca3782 = L.circleMarker(\\n\",\n       \"                [33.8399, 115.8067],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2c9916ea5d4a74b911182adbdb34690 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6af152c5f199d7175b0c44436e65791 = $(`&lt;div id=&quot;html_a6af152c5f199d7175b0c44436e65791&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.8067             latitude:33.8399             pred_result:55.20233154296875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2c9916ea5d4a74b911182adbdb34690.setContent(html_a6af152c5f199d7175b0c44436e65791);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef9a41c5abc19e94a2eff1aa22ca3782.bindPopup(popup_f2c9916ea5d4a74b911182adbdb34690)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_43839a12bd3e4bdbca8b57e254043b76 = L.circleMarker(\\n\",\n       \"                [30.0475, 101.9603],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_13d76f665a7b4648b41b927adea6adf3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fb8a3844e0aa0d46cf5c7c5c6a1ba29a = $(`&lt;div id=&quot;html_fb8a3844e0aa0d46cf5c7c5c6a1ba29a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9603             latitude:30.0475             pred_result:54.142547607421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_13d76f665a7b4648b41b927adea6adf3.setContent(html_fb8a3844e0aa0d46cf5c7c5c6a1ba29a);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_43839a12bd3e4bdbca8b57e254043b76.bindPopup(popup_13d76f665a7b4648b41b927adea6adf3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c119090888fa1282d648edf5051a00b5 = L.circleMarker(\\n\",\n       \"                [37.9097, 114.3541],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_ce1a1980f544f518c08f52230910de11 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_86f4bee706bf23482d2114cb3d62f1cc = $(`&lt;div id=&quot;html_86f4bee706bf23482d2114cb3d62f1cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3541             latitude:37.9097             pred_result:60.44271469116211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_ce1a1980f544f518c08f52230910de11.setContent(html_86f4bee706bf23482d2114cb3d62f1cc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c119090888fa1282d648edf5051a00b5.bindPopup(popup_ce1a1980f544f518c08f52230910de11)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_290cf551071c2e6893e4651f6b267282 = L.circleMarker(\\n\",\n       \"                [24.6967, 108.1009],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_30aa578db0d25becb48a97792453afae = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83a300677152fe0720021d60749cceab = $(`&lt;div id=&quot;html_83a300677152fe0720021d60749cceab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.1009             latitude:24.6967             pred_result:57.56219482421875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_30aa578db0d25becb48a97792453afae.setContent(html_83a300677152fe0720021d60749cceab);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_290cf551071c2e6893e4651f6b267282.bindPopup(popup_30aa578db0d25becb48a97792453afae)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_46fb529ff3fe09532fdf5a626d9bf9c8 = L.circleMarker(\\n\",\n       \"                [23.6706, 116.6447],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84bc11e1553ae0897279fa50412faafa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e9b263e21619544ad33b0c0789e312f9 = $(`&lt;div id=&quot;html_e9b263e21619544ad33b0c0789e312f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.6447             latitude:23.6706             pred_result:77.94854736328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84bc11e1553ae0897279fa50412faafa.setContent(html_e9b263e21619544ad33b0c0789e312f9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_46fb529ff3fe09532fdf5a626d9bf9c8.bindPopup(popup_84bc11e1553ae0897279fa50412faafa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e461f6e863188c699fc2e1c819c4f964 = L.circleMarker(\\n\",\n       \"                [33.0323, 107.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03a5cf106f854867ef555a12906e01d4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e170c45d5fe4f60d142fff0cc158841f = $(`&lt;div id=&quot;html_e170c45d5fe4f60d142fff0cc158841f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.007             latitude:33.0323             pred_result:67.50424194335938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03a5cf106f854867ef555a12906e01d4.setContent(html_e170c45d5fe4f60d142fff0cc158841f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e461f6e863188c699fc2e1c819c4f964.bindPopup(popup_03a5cf106f854867ef555a12906e01d4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cfdb7be1ab082ce0be6d8ee8db2f6529 = L.circleMarker(\\n\",\n       \"                [25.442, 119.0156],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36bdf3452f3454b76be447c360bd2d7d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_59be9a527d884cdedf0e9ee8a3ce6d49 = $(`&lt;div id=&quot;html_59be9a527d884cdedf0e9ee8a3ce6d49&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.0156             latitude:25.442             pred_result:78.622802734375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36bdf3452f3454b76be447c360bd2d7d.setContent(html_59be9a527d884cdedf0e9ee8a3ce6d49);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cfdb7be1ab082ce0be6d8ee8db2f6529.bindPopup(popup_36bdf3452f3454b76be447c360bd2d7d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59d0cbaee9fdaf5dc1595548ff8989df = L.circleMarker(\\n\",\n       \"                [38.5247, 102.1878],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4ffe7c65eaf9e4b891c0cae5c1bf1095 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b3ae0a8af3080f09443e5ef4e657f3f = $(`&lt;div id=&quot;html_6b3ae0a8af3080f09443e5ef4e657f3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.1878             latitude:38.5247             pred_result:89.87499237060547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4ffe7c65eaf9e4b891c0cae5c1bf1095.setContent(html_6b3ae0a8af3080f09443e5ef4e657f3f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59d0cbaee9fdaf5dc1595548ff8989df.bindPopup(popup_4ffe7c65eaf9e4b891c0cae5c1bf1095)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ad0bb3f1465c35b2ff57dfa9b99d255f = L.circleMarker(\\n\",\n       \"                [22.8561, 108.316],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_be0811695bc8f4c8471af87aa8ae48d0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a72477ca90be48b94e951e957ff336f0 = $(`&lt;div id=&quot;html_a72477ca90be48b94e951e957ff336f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.316             latitude:22.8561             pred_result:69.04955291748047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_be0811695bc8f4c8471af87aa8ae48d0.setContent(html_a72477ca90be48b94e951e957ff336f0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ad0bb3f1465c35b2ff57dfa9b99d255f.bindPopup(popup_be0811695bc8f4c8471af87aa8ae48d0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e54e7a7d2d9461a825569661a8fdc5b1 = L.circleMarker(\\n\",\n       \"                [31.656, 120.734],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da28453bdb25eaa0a3c89ff629924582 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_225d9669f1c5cb8ddf2c135d82a9ce29 = $(`&lt;div id=&quot;html_225d9669f1c5cb8ddf2c135d82a9ce29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.734             latitude:31.656             pred_result:59.83308410644531             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da28453bdb25eaa0a3c89ff629924582.setContent(html_225d9669f1c5cb8ddf2c135d82a9ce29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e54e7a7d2d9461a825569661a8fdc5b1.bindPopup(popup_da28453bdb25eaa0a3c89ff629924582)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f7a0b669a84720f1bdca1071aeb2b23f = L.circleMarker(\\n\",\n       \"                [29.36028, 104.7778],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_671d731b8ff755c07a1ea0dd82916048 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_033641aaff2587823eab9f64fcb7533d = $(`&lt;div id=&quot;html_033641aaff2587823eab9f64fcb7533d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.7778             latitude:29.36028             pred_result:54.035179138183594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_671d731b8ff755c07a1ea0dd82916048.setContent(html_033641aaff2587823eab9f64fcb7533d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f7a0b669a84720f1bdca1071aeb2b23f.bindPopup(popup_671d731b8ff755c07a1ea0dd82916048)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e0670411b20f5cd04019f9ff7e2768a7 = L.circleMarker(\\n\",\n       \"                [22.7833, 108.244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1b161c9948c16054141ada985157dba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5de914502a3f3ad5639c8c423af3a069 = $(`&lt;div id=&quot;html_5de914502a3f3ad5639c8c423af3a069&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.244             latitude:22.7833             pred_result:69.52496337890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1b161c9948c16054141ada985157dba.setContent(html_5de914502a3f3ad5639c8c423af3a069);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e0670411b20f5cd04019f9ff7e2768a7.bindPopup(popup_d1b161c9948c16054141ada985157dba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b1504de5b1589835a1c8374ea5e75575 = L.circleMarker(\\n\",\n       \"                [36.3083, 120.1964],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2cdde4177d363645b72b4b94e833c293 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_212f230eb47fef92019de5e564cbf6fc = $(`&lt;div id=&quot;html_212f230eb47fef92019de5e564cbf6fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.1964             latitude:36.3083             pred_result:70.44830322265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2cdde4177d363645b72b4b94e833c293.setContent(html_212f230eb47fef92019de5e564cbf6fc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b1504de5b1589835a1c8374ea5e75575.bindPopup(popup_2cdde4177d363645b72b4b94e833c293)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_34d4e1bd55a853365290d6482d87f8c8 = L.circleMarker(\\n\",\n       \"                [41.8828, 123.9169],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e9540fd61242af77bba83b8f9a062c13 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ef0617a37e3c70f7ec01323f99db2bc = $(`&lt;div id=&quot;html_2ef0617a37e3c70f7ec01323f99db2bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.9169             latitude:41.8828             pred_result:67.59500122070312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e9540fd61242af77bba83b8f9a062c13.setContent(html_2ef0617a37e3c70f7ec01323f99db2bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_34d4e1bd55a853365290d6482d87f8c8.bindPopup(popup_e9540fd61242af77bba83b8f9a062c13)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d817b159ff71f42e66ea729a83bedb52 = L.circleMarker(\\n\",\n       \"                [41.8472, 123.428],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2cd507cf5d0653d354a48293e282423a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_129f6d23f6462beb1d1045c16fd34440 = $(`&lt;div id=&quot;html_129f6d23f6462beb1d1045c16fd34440&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.428             latitude:41.8472             pred_result:68.50467681884766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2cd507cf5d0653d354a48293e282423a.setContent(html_129f6d23f6462beb1d1045c16fd34440);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d817b159ff71f42e66ea729a83bedb52.bindPopup(popup_2cd507cf5d0653d354a48293e282423a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2954aaa83a6d3f5d46effef003c6211b = L.circleMarker(\\n\",\n       \"                [27.8381, 113.143],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e6c2f7b0c91bf33074253df4c11d4b4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d2982009b34eb90517ae130b8ff943d = $(`&lt;div id=&quot;html_9d2982009b34eb90517ae130b8ff943d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.143             latitude:27.8381             pred_result:53.15941619873047             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e6c2f7b0c91bf33074253df4c11d4b4.setContent(html_9d2982009b34eb90517ae130b8ff943d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2954aaa83a6d3f5d46effef003c6211b.bindPopup(popup_2e6c2f7b0c91bf33074253df4c11d4b4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_771e14dfa483b64350175e7e2ca0a99b = L.circleMarker(\\n\",\n       \"                [43.8667, 125.417],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eed21e0e077f0a134eb7ca266ceb1af9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c219c18c937a45ff764279e5f2a84b29 = $(`&lt;div id=&quot;html_c219c18c937a45ff764279e5f2a84b29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.417             latitude:43.8667             pred_result:67.83538818359375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eed21e0e077f0a134eb7ca266ceb1af9.setContent(html_c219c18c937a45ff764279e5f2a84b29);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_771e14dfa483b64350175e7e2ca0a99b.bindPopup(popup_eed21e0e077f0a134eb7ca266ceb1af9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_40010915e7bc05eb8014512fb3e1fc95 = L.circleMarker(\\n\",\n       \"                [45.7258, 126.646],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_87c538a75854b9f013adc4b59dbf1d1c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2089ea2c2708f97af52fe1008d8381b6 = $(`&lt;div id=&quot;html_2089ea2c2708f97af52fe1008d8381b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.646             latitude:45.7258             pred_result:74.3548812866211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_87c538a75854b9f013adc4b59dbf1d1c.setContent(html_2089ea2c2708f97af52fe1008d8381b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_40010915e7bc05eb8014512fb3e1fc95.bindPopup(popup_87c538a75854b9f013adc4b59dbf1d1c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d0778e4413284704cb303ff059f9b295 = L.circleMarker(\\n\",\n       \"                [26.6272, 118.1756],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8bf5b2083a18db3ca11d00a7eb8988d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ef110aac754926a584a0b4ede5f4b0bc = $(`&lt;div id=&quot;html_ef110aac754926a584a0b4ede5f4b0bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.1756             latitude:26.6272             pred_result:76.73670196533203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8bf5b2083a18db3ca11d00a7eb8988d.setContent(html_ef110aac754926a584a0b4ede5f4b0bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d0778e4413284704cb303ff059f9b295.bindPopup(popup_e8bf5b2083a18db3ca11d00a7eb8988d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_94996c72117bdce9bf16399cffd2d07a = L.circleMarker(\\n\",\n       \"                [27.9883, 116.3553],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_628cf3f62a00b43de349c7666b280c07 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ba6e50f8d7820c900fbf92f573ec5c2 = $(`&lt;div id=&quot;html_2ba6e50f8d7820c900fbf92f573ec5c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.3553             latitude:27.9883             pred_result:66.35086059570312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_628cf3f62a00b43de349c7666b280c07.setContent(html_2ba6e50f8d7820c900fbf92f573ec5c2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_94996c72117bdce9bf16399cffd2d07a.bindPopup(popup_628cf3f62a00b43de349c7666b280c07)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a0540e5b0daf21327acd992f318c4b0 = L.circleMarker(\\n\",\n       \"                [39.9522, 116.434],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d8dce23adb1949aa16b11035dc1a08e1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f40e7c76357f6ff8ee8872ae63086d8b = $(`&lt;div id=&quot;html_f40e7c76357f6ff8ee8872ae63086d8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.434             latitude:39.9522             pred_result:55.80129623413086             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d8dce23adb1949aa16b11035dc1a08e1.setContent(html_f40e7c76357f6ff8ee8872ae63086d8b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a0540e5b0daf21327acd992f318c4b0.bindPopup(popup_d8dce23adb1949aa16b11035dc1a08e1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5d774acd9f4bf26f2f4a7c4f2e4f947f = L.circleMarker(\\n\",\n       \"                [38.843, 105.6975],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ad7a04865d06dea045ab6353e92edc8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6b78688d855eb112c063733b29bd2db = $(`&lt;div id=&quot;html_a6b78688d855eb112c063733b29bd2db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.6975             latitude:38.843             pred_result:83.60838317871094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ad7a04865d06dea045ab6353e92edc8.setContent(html_a6b78688d855eb112c063733b29bd2db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5d774acd9f4bf26f2f4a7c4f2e4f947f.bindPopup(popup_8ad7a04865d06dea045ab6353e92edc8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29c3d734284cacc3518bdef0311a4d1a = L.circleMarker(\\n\",\n       \"                [22.8172, 114.3244],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2e787c648675ec14ef47f4c9cc22d32c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e6134d369084f3025c88a7e7af463db9 = $(`&lt;div id=&quot;html_e6134d369084f3025c88a7e7af463db9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3244             latitude:22.8172             pred_result:70.22264099121094             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2e787c648675ec14ef47f4c9cc22d32c.setContent(html_e6134d369084f3025c88a7e7af463db9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29c3d734284cacc3518bdef0311a4d1a.bindPopup(popup_2e787c648675ec14ef47f4c9cc22d32c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f75ce2750bfd106474f1bb74651b884d = L.circleMarker(\\n\",\n       \"                [39.9419, 119.5369],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f7bc5a6db41a2596e2d4d6bf2f554bcd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1693dc1776a13f984e1f7b82b637ee3c = $(`&lt;div id=&quot;html_1693dc1776a13f984e1f7b82b637ee3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.5369             latitude:39.9419             pred_result:68.04322814941406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f7bc5a6db41a2596e2d4d6bf2f554bcd.setContent(html_1693dc1776a13f984e1f7b82b637ee3c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f75ce2750bfd106474f1bb74651b884d.bindPopup(popup_f7bc5a6db41a2596e2d4d6bf2f554bcd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_016974f947b1eb8da72e480e96990d18 = L.circleMarker(\\n\",\n       \"                [24.4175, 111.5269],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f477a8171963c509e17e74e1022efbdf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e2db5463de2a423c8adae8ac67b06e95 = $(`&lt;div id=&quot;html_e2db5463de2a423c8adae8ac67b06e95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:111.5269             latitude:24.4175             pred_result:65.93598937988281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f477a8171963c509e17e74e1022efbdf.setContent(html_e2db5463de2a423c8adae8ac67b06e95);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_016974f947b1eb8da72e480e96990d18.bindPopup(popup_f477a8171963c509e17e74e1022efbdf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_47aeb5f5a4c7db12c4fdaed2755c49cb = L.circleMarker(\\n\",\n       \"                [29.7128, 118.3057],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_821e0fc8112fa906dbf6d283a4c62c98 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6eb17d88da50a055965a7d165c919d61 = $(`&lt;div id=&quot;html_6eb17d88da50a055965a7d165c919d61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.3057             latitude:29.7128             pred_result:54.34271240234375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_821e0fc8112fa906dbf6d283a4c62c98.setContent(html_6eb17d88da50a055965a7d165c919d61);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_47aeb5f5a4c7db12c4fdaed2755c49cb.bindPopup(popup_821e0fc8112fa906dbf6d283a4c62c98)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d340d435a2d4a4cbf03ef9ad69627a9c = L.circleMarker(\\n\",\n       \"                [26.57098, 101.68912],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1f0d3ef09d64b0fd9ee48a75540de541 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_84abdedab28905f2fd8c79bf7fcb0392 = $(`&lt;div id=&quot;html_84abdedab28905f2fd8c79bf7fcb0392&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.68912             latitude:26.57098             pred_result:83.57437133789062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1f0d3ef09d64b0fd9ee48a75540de541.setContent(html_84abdedab28905f2fd8c79bf7fcb0392);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d340d435a2d4a4cbf03ef9ad69627a9c.bindPopup(popup_1f0d3ef09d64b0fd9ee48a75540de541)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29bfdfde52b553567f54553cceb719ec = L.circleMarker(\\n\",\n       \"                [36.087, 114.358],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0d49f61fbbe6c2517785c4a2638401ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_35092a9415249db1390d06ea7bf482a1 = $(`&lt;div id=&quot;html_35092a9415249db1390d06ea7bf482a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.358             latitude:36.087             pred_result:66.89161682128906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0d49f61fbbe6c2517785c4a2638401ca.setContent(html_35092a9415249db1390d06ea7bf482a1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29bfdfde52b553567f54553cceb719ec.bindPopup(popup_0d49f61fbbe6c2517785c4a2638401ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ac4c10357119c0bf3bd31b02b0c5db11 = L.circleMarker(\\n\",\n       \"                [39.3673, 112.4279],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6380e48db949a14d94df6445c10596d1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b9c7708ede818b22316fac71ae64c5bc = $(`&lt;div id=&quot;html_b9c7708ede818b22316fac71ae64c5bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4279             latitude:39.3673             pred_result:70.9450454711914             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6380e48db949a14d94df6445c10596d1.setContent(html_b9c7708ede818b22316fac71ae64c5bc);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ac4c10357119c0bf3bd31b02b0c5db11.bindPopup(popup_6380e48db949a14d94df6445c10596d1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2baa1b27e7a2df8f3f761e871f6e3404 = L.circleMarker(\\n\",\n       \"                [37.4658, 118.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5482d6a6154cb83a14438668d4b3339a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_952d378eaf8bf614e479758680b4bd7e = $(`&lt;div id=&quot;html_952d378eaf8bf614e479758680b4bd7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5019             latitude:37.4658             pred_result:66.27290344238281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5482d6a6154cb83a14438668d4b3339a.setContent(html_952d378eaf8bf614e479758680b4bd7e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2baa1b27e7a2df8f3f761e871f6e3404.bindPopup(popup_5482d6a6154cb83a14438668d4b3339a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fc1003e37be45e795ff9ebc44a420fa = L.circleMarker(\\n\",\n       \"                [23.7233, 114.6892],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_339484c81e0fea12bd84ec48e4469e52 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_143fa17140611645342945240ad34f36 = $(`&lt;div id=&quot;html_143fa17140611645342945240ad34f36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.6892             latitude:23.7233             pred_result:74.597412109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_339484c81e0fea12bd84ec48e4469e52.setContent(html_143fa17140611645342945240ad34f36);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fc1003e37be45e795ff9ebc44a420fa.bindPopup(popup_339484c81e0fea12bd84ec48e4469e52)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_967d71c496eb01410a69f7a751a8b475 = L.circleMarker(\\n\",\n       \"                [28.4569, 118.0058],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2bf7c995e870b3be261ac5ef7bf6e0a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f890cfeb775ee70c41c814ae50071d98 = $(`&lt;div id=&quot;html_f890cfeb775ee70c41c814ae50071d98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.0058             latitude:28.4569             pred_result:66.93394470214844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2bf7c995e870b3be261ac5ef7bf6e0a.setContent(html_f890cfeb775ee70c41c814ae50071d98);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_967d71c496eb01410a69f7a751a8b475.bindPopup(popup_b2bf7c995e870b3be261ac5ef7bf6e0a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_69e3d2173a167690d3a60930290695fe = L.circleMarker(\\n\",\n       \"                [30.2099, 115.0264],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0bf4415938e6c3d55e16039b10c57ceb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a2297809ba861363c0f7906de6365a6 = $(`&lt;div id=&quot;html_4a2297809ba861363c0f7906de6365a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:115.0264             latitude:30.2099             pred_result:54.80628204345703             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0bf4415938e6c3d55e16039b10c57ceb.setContent(html_4a2297809ba861363c0f7906de6365a6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_69e3d2173a167690d3a60930290695fe.bindPopup(popup_0bf4415938e6c3d55e16039b10c57ceb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e8330988ce99aea9ff042ad21a175945 = L.circleMarker(\\n\",\n       \"                [33.737, 113.182],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cdcd8ac41a0e9b9977f04953376efc6a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_80dc33609fce5e750d1e212f013a9af0 = $(`&lt;div id=&quot;html_80dc33609fce5e750d1e212f013a9af0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.182             latitude:33.737             pred_result:58.8126106262207             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cdcd8ac41a0e9b9977f04953376efc6a.setContent(html_80dc33609fce5e750d1e212f013a9af0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e8330988ce99aea9ff042ad21a175945.bindPopup(popup_cdcd8ac41a0e9b9977f04953376efc6a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cc4bdecdb0724ec14f2fbda7734b98f6 = L.circleMarker(\\n\",\n       \"                [22.735, 108.328],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a7835876d6cd70bcd5f35c8805814d81 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1792fd361e9b4e6c346800cd76cb8821 = $(`&lt;div id=&quot;html_1792fd361e9b4e6c346800cd76cb8821&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.328             latitude:22.735             pred_result:69.44248962402344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a7835876d6cd70bcd5f35c8805814d81.setContent(html_1792fd361e9b4e6c346800cd76cb8821);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cc4bdecdb0724ec14f2fbda7734b98f6.bindPopup(popup_a7835876d6cd70bcd5f35c8805814d81)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e010f648b1a8f1f7d22bdc70e0be8725 = L.circleMarker(\\n\",\n       \"                [35.0147, 110.9956],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_465765ff5370a2a73de0a59379d26db7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8be4f89705174eaffcc75e4a7b55ba4d = $(`&lt;div id=&quot;html_8be4f89705174eaffcc75e4a7b55ba4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.9956             latitude:35.0147             pred_result:71.99248504638672             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_465765ff5370a2a73de0a59379d26db7.setContent(html_8be4f89705174eaffcc75e4a7b55ba4d);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e010f648b1a8f1f7d22bdc70e0be8725.bindPopup(popup_465765ff5370a2a73de0a59379d26db7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_faeaf78f3331ca1da7ba80d385ab60ff = L.circleMarker(\\n\",\n       \"                [38.9194, 117.157],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e809b82512ef6ffbb42d33cfc8dd1bba = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2ae94052eb7e89bfee3d18b71265d20e = $(`&lt;div id=&quot;html_2ae94052eb7e89bfee3d18b71265d20e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.157             latitude:38.9194             pred_result:60.1395149230957             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e809b82512ef6ffbb42d33cfc8dd1bba.setContent(html_2ae94052eb7e89bfee3d18b71265d20e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_faeaf78f3331ca1da7ba80d385ab60ff.bindPopup(popup_e809b82512ef6ffbb42d33cfc8dd1bba)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fdf9af5def0dde703fe03caa77f6537 = L.circleMarker(\\n\",\n       \"                [27.8036, 114.3442],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a1c115f3051fe09cea59b6b392d83a41 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_21e0dfda089821d1843a5228ab57a783 = $(`&lt;div id=&quot;html_21e0dfda089821d1843a5228ab57a783&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3442             latitude:27.8036             pred_result:47.772003173828125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a1c115f3051fe09cea59b6b392d83a41.setContent(html_21e0dfda089821d1843a5228ab57a783);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fdf9af5def0dde703fe03caa77f6537.bindPopup(popup_a1c115f3051fe09cea59b6b392d83a41)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f164609a33e9744373dba9bca4be68b6 = L.circleMarker(\\n\",\n       \"                [23.8982, 100.0782],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc928833c85f9ff518dcd7b8bd8dd465 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a3b8d33216fce646cc7280f602949382 = $(`&lt;div id=&quot;html_a3b8d33216fce646cc7280f602949382&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:100.0782             latitude:23.8982             pred_result:65.51275634765625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc928833c85f9ff518dcd7b8bd8dd465.setContent(html_a3b8d33216fce646cc7280f602949382);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f164609a33e9744373dba9bca4be68b6.bindPopup(popup_dc928833c85f9ff518dcd7b8bd8dd465)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_82287efe66b35d142d6566be28808aeb = L.circleMarker(\\n\",\n       \"                [30.8244, 120.07],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_825d75e88e1e77a61482acee1f25309a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cc635cbb57e05f377579b7fead7f55fe = $(`&lt;div id=&quot;html_cc635cbb57e05f377579b7fead7f55fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.07             latitude:30.8244             pred_result:57.40205383300781             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_825d75e88e1e77a61482acee1f25309a.setContent(html_cc635cbb57e05f377579b7fead7f55fe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_82287efe66b35d142d6566be28808aeb.bindPopup(popup_825d75e88e1e77a61482acee1f25309a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d7c245f25bbc2fd26ec12b38ee5f4ca7 = L.circleMarker(\\n\",\n       \"                [22.2294, 113.495],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6ccf809b0a1911e1947b3889e0e530bf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_18dd65eb9b4813ce688860f7ef264fe7 = $(`&lt;div id=&quot;html_18dd65eb9b4813ce688860f7ef264fe7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.495             latitude:22.2294             pred_result:75.97763061523438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6ccf809b0a1911e1947b3889e0e530bf.setContent(html_18dd65eb9b4813ce688860f7ef264fe7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d7c245f25bbc2fd26ec12b38ee5f4ca7.bindPopup(popup_6ccf809b0a1911e1947b3889e0e530bf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2f53ba37cec698265855d8f1df3a83e0 = L.circleMarker(\\n\",\n       \"                [22.4137, 107.3476],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b92bd5b1372c77903c390ed75243db88 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d15d5e7b71c5da9d8c1b72d469769bf = $(`&lt;div id=&quot;html_5d15d5e7b71c5da9d8c1b72d469769bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3476             latitude:22.4137             pred_result:70.97518157958984             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b92bd5b1372c77903c390ed75243db88.setContent(html_5d15d5e7b71c5da9d8c1b72d469769bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2f53ba37cec698265855d8f1df3a83e0.bindPopup(popup_b92bd5b1372c77903c390ed75243db88)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_50fd467af362674a26029733544f578b = L.circleMarker(\\n\",\n       \"                [36.1942, 117.1436],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_656ddd32654639215858d41e62e81145 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1cab4a3ed44fb23141bb33556f6f74f3 = $(`&lt;div id=&quot;html_1cab4a3ed44fb23141bb33556f6f74f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1436             latitude:36.1942             pred_result:59.993247985839844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_656ddd32654639215858d41e62e81145.setContent(html_1cab4a3ed44fb23141bb33556f6f74f3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_50fd467af362674a26029733544f578b.bindPopup(popup_656ddd32654639215858d41e62e81145)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cbbd78dd9bc698a644ceb6850c183a02 = L.circleMarker(\\n\",\n       \"                [30.7946, 120.744],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_84116a20352c9632e94ba121249b88ec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7a6e5293a9397209625f321218f54650 = $(`&lt;div id=&quot;html_7a6e5293a9397209625f321218f54650&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.744             latitude:30.7946             pred_result:60.90471267700195             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_84116a20352c9632e94ba121249b88ec.setContent(html_7a6e5293a9397209625f321218f54650);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cbbd78dd9bc698a644ceb6850c183a02.bindPopup(popup_84116a20352c9632e94ba121249b88ec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_820c36be935650099346d810452789e1 = L.circleMarker(\\n\",\n       \"                [38.2839, 109.7289],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6e81082a049e0468b627e60e892eac79 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_22c41a7584db38c069b082454fb343c6 = $(`&lt;div id=&quot;html_22c41a7584db38c069b082454fb343c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.7289             latitude:38.2839             pred_result:78.81793212890625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6e81082a049e0468b627e60e892eac79.setContent(html_22c41a7584db38c069b082454fb343c6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_820c36be935650099346d810452789e1.bindPopup(popup_6e81082a049e0468b627e60e892eac79)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_aec173b5882cc4f3bba5e550ed34a4a8 = L.circleMarker(\\n\",\n       \"                [29.5953, 105.0331],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b2904dbddd2b48b63c88173bf32fcd64 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_478c4a74ca2a2a8b160cb2a8f5d5bd27 = $(`&lt;div id=&quot;html_478c4a74ca2a2a8b160cb2a8f5d5bd27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0331             latitude:29.5953             pred_result:52.70124053955078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b2904dbddd2b48b63c88173bf32fcd64.setContent(html_478c4a74ca2a2a8b160cb2a8f5d5bd27);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_aec173b5882cc4f3bba5e550ed34a4a8.bindPopup(popup_b2904dbddd2b48b63c88173bf32fcd64)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_def1b2ce7c336539f6949d174089bc0b = L.circleMarker(\\n\",\n       \"                [32.9673, 117.3536],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_794c058fd18cbdb018f76dc5e02b3494 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_468c0490d14482201537353834c39114 = $(`&lt;div id=&quot;html_468c0490d14482201537353834c39114&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.3536             latitude:32.9673             pred_result:52.67505645751953             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_794c058fd18cbdb018f76dc5e02b3494.setContent(html_468c0490d14482201537353834c39114);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_def1b2ce7c336539f6949d174089bc0b.bindPopup(popup_794c058fd18cbdb018f76dc5e02b3494)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9ee5f3a8b4cfc0d7fd0f62e387dd5ad5 = L.circleMarker(\\n\",\n       \"                [27.9164, 112.4876],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8b0350ee643bb59c24f387b331802c4b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_616578c5c525e3dffce59325fd531750 = $(`&lt;div id=&quot;html_616578c5c525e3dffce59325fd531750&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.4876             latitude:27.9164             pred_result:54.309593200683594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8b0350ee643bb59c24f387b331802c4b.setContent(html_616578c5c525e3dffce59325fd531750);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9ee5f3a8b4cfc0d7fd0f62e387dd5ad5.bindPopup(popup_8b0350ee643bb59c24f387b331802c4b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_99617dfee23003e220400c13a363d570 = L.circleMarker(\\n\",\n       \"                [29.9972, 101.9533],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a71c97546185932b5e622c3695789454 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e02b6f55ca859be75d781188a90992d4 = $(`&lt;div id=&quot;html_e02b6f55ca859be75d781188a90992d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:101.9533             latitude:29.9972             pred_result:51.02162170410156             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a71c97546185932b5e622c3695789454.setContent(html_e02b6f55ca859be75d781188a90992d4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_99617dfee23003e220400c13a363d570.bindPopup(popup_a71c97546185932b5e622c3695789454)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_305c69fe144dba023b8260904a28ed92 = L.circleMarker(\\n\",\n       \"                [30.1506, 104.6356],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_854cf601c7813fe35b9858f29d4d63b5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7d6467eff6de999e7ae525d86b2b2b78 = $(`&lt;div id=&quot;html_7d6467eff6de999e7ae525d86b2b2b78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:104.6356             latitude:30.1506             pred_result:58.363704681396484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_854cf601c7813fe35b9858f29d4d63b5.setContent(html_7d6467eff6de999e7ae525d86b2b2b78);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_305c69fe144dba023b8260904a28ed92.bindPopup(popup_854cf601c7813fe35b9858f29d4d63b5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_623dea5fb48b71cfc5c64f92fa7e9a16 = L.circleMarker(\\n\",\n       \"                [43.84, 125.2786],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c88ef4551e0795f53654cbafd7ce3aa7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e25b83ab2702d658f98fd9e578b815d0 = $(`&lt;div id=&quot;html_e25b83ab2702d658f98fd9e578b815d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.2786             latitude:43.84             pred_result:68.59651184082031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c88ef4551e0795f53654cbafd7ce3aa7.setContent(html_e25b83ab2702d658f98fd9e578b815d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_623dea5fb48b71cfc5c64f92fa7e9a16.bindPopup(popup_c88ef4551e0795f53654cbafd7ce3aa7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3a35ade94c8d6c4af09213a5d126db61 = L.circleMarker(\\n\",\n       \"                [36.1542, 113.1097],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_56be4b4f09d0f979b0d1f5bfa94a80cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_20c5785844ed8add82115a41d11cf536 = $(`&lt;div id=&quot;html_20c5785844ed8add82115a41d11cf536&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.1097             latitude:36.1542             pred_result:65.39688110351562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_56be4b4f09d0f979b0d1f5bfa94a80cf.setContent(html_20c5785844ed8add82115a41d11cf536);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3a35ade94c8d6c4af09213a5d126db61.bindPopup(popup_56be4b4f09d0f979b0d1f5bfa94a80cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5043010e48daaef34bb09d7f6a6a85a9 = L.circleMarker(\\n\",\n       \"                [32.4535, 105.8945],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eda551f309ab0ce20bd959912d022a15 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b2e20806a2f9b4ac50e3559c30390db9 = $(`&lt;div id=&quot;html_b2e20806a2f9b4ac50e3559c30390db9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.8945             latitude:32.4535             pred_result:67.41563415527344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eda551f309ab0ce20bd959912d022a15.setContent(html_b2e20806a2f9b4ac50e3559c30390db9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5043010e48daaef34bb09d7f6a6a85a9.bindPopup(popup_eda551f309ab0ce20bd959912d022a15)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_59b32fa8631a52ca752a93fc0b4a77d3 = L.circleMarker(\\n\",\n       \"                [24.8978, 118.5972],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bafe07b17f0081fe6b6e3cee0d738eee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_9d505bdc2446168ee96d62dffbc64c0c = $(`&lt;div id=&quot;html_9d505bdc2446168ee96d62dffbc64c0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.5972             latitude:24.8978             pred_result:81.72782897949219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bafe07b17f0081fe6b6e3cee0d738eee.setContent(html_9d505bdc2446168ee96d62dffbc64c0c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_59b32fa8631a52ca752a93fc0b4a77d3.bindPopup(popup_bafe07b17f0081fe6b6e3cee0d738eee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c980ab150e64c13b7bcebe11917061e1 = L.circleMarker(\\n\",\n       \"                [29.6219, 106.65],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_62387959670e75a70318d72f6a6d9b85 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2c1cc9839e1a6b3dbb9d36fa044edc4e = $(`&lt;div id=&quot;html_2c1cc9839e1a6b3dbb9d36fa044edc4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.65             latitude:29.6219             pred_result:55.35393524169922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_62387959670e75a70318d72f6a6d9b85.setContent(html_2c1cc9839e1a6b3dbb9d36fa044edc4e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c980ab150e64c13b7bcebe11917061e1.bindPopup(popup_62387959670e75a70318d72f6a6d9b85)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c189b9460d550565be94e678e4f5413 = L.circleMarker(\\n\",\n       \"                [41.1636, 80.2828],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_85551e0129f74b9633237e62cdae9bc4 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_959df21608024e22a0791081adc99ed8 = $(`&lt;div id=&quot;html_959df21608024e22a0791081adc99ed8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:80.2828             latitude:41.1636             pred_result:94.35774993896484             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_85551e0129f74b9633237e62cdae9bc4.setContent(html_959df21608024e22a0791081adc99ed8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c189b9460d550565be94e678e4f5413.bindPopup(popup_85551e0129f74b9633237e62cdae9bc4)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_e41ea07cd415e67b043fb5e2ffce6423 = L.circleMarker(\\n\",\n       \"                [34.3617, 108.7233],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3129b6f29ab8eff98b9b316ef1454c04 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_30d2fa44e60c1797a19da22293dc6da1 = $(`&lt;div id=&quot;html_30d2fa44e60c1797a19da22293dc6da1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:108.7233             latitude:34.3617             pred_result:70.79080963134766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3129b6f29ab8eff98b9b316ef1454c04.setContent(html_30d2fa44e60c1797a19da22293dc6da1);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_e41ea07cd415e67b043fb5e2ffce6423.bindPopup(popup_3129b6f29ab8eff98b9b316ef1454c04)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4d58489fc0c5a09df1975cdd0a84a6f7 = L.circleMarker(\\n\",\n       \"                [41.9086, 123.5953],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1008ed029f71d5f97550224ed4f46ea5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_283ca715c981cf841a8687a5762fb6b3 = $(`&lt;div id=&quot;html_283ca715c981cf841a8687a5762fb6b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.5953             latitude:41.9086             pred_result:68.65184783935547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1008ed029f71d5f97550224ed4f46ea5.setContent(html_283ca715c981cf841a8687a5762fb6b3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4d58489fc0c5a09df1975cdd0a84a6f7.bindPopup(popup_1008ed029f71d5f97550224ed4f46ea5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fc74866822c8233686ca275af8d7cef3 = L.circleMarker(\\n\",\n       \"                [29.2786, 117.1983],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0597bbbe182e7b5aaa0d8ac8b8f237b8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6e743ad8d9593e0773765389f113dfe0 = $(`&lt;div id=&quot;html_6e743ad8d9593e0773765389f113dfe0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.1983             latitude:29.2786             pred_result:58.25959396362305             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0597bbbe182e7b5aaa0d8ac8b8f237b8.setContent(html_6e743ad8d9593e0773765389f113dfe0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fc74866822c8233686ca275af8d7cef3.bindPopup(popup_0597bbbe182e7b5aaa0d8ac8b8f237b8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_795b51999d4cc7e848e486f437890464 = L.circleMarker(\\n\",\n       \"                [25.3167, 110.4144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7b0bd849d4885072d6387d30ef2b86d7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c75e04f082ae509b875ffbf3eb545562 = $(`&lt;div id=&quot;html_c75e04f082ae509b875ffbf3eb545562&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.4144             latitude:25.3167             pred_result:63.169342041015625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7b0bd849d4885072d6387d30ef2b86d7.setContent(html_c75e04f082ae509b875ffbf3eb545562);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_795b51999d4cc7e848e486f437890464.bindPopup(popup_7b0bd849d4885072d6387d30ef2b86d7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_18764abc9c75aeb72078be0bb3447e00 = L.circleMarker(\\n\",\n       \"                [40.8115, 114.8814],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d5d21a6163bf160509bb6b2648e8488e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_e94a0791edd1c3e6c730140c597f1860 = $(`&lt;div id=&quot;html_e94a0791edd1c3e6c730140c597f1860&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8814             latitude:40.8115             pred_result:69.17384338378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d5d21a6163bf160509bb6b2648e8488e.setContent(html_e94a0791edd1c3e6c730140c597f1860);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_18764abc9c75aeb72078be0bb3447e00.bindPopup(popup_d5d21a6163bf160509bb6b2648e8488e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d5095b4b32d19c884e879bde3f801822 = L.circleMarker(\\n\",\n       \"                [33.3261, 105.0822],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d71b0b89810ba98653b73caa6dc05314 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2f1f139f9c84b2d8f3697bb7d5fac411 = $(`&lt;div id=&quot;html_2f1f139f9c84b2d8f3697bb7d5fac411&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.0822             latitude:33.3261             pred_result:65.60574340820312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d71b0b89810ba98653b73caa6dc05314.setContent(html_2f1f139f9c84b2d8f3697bb7d5fac411);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d5095b4b32d19c884e879bde3f801822.bindPopup(popup_d71b0b89810ba98653b73caa6dc05314)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_79a1369ed4e6b6333e6a9fd7b0ea9fc0 = L.circleMarker(\\n\",\n       \"                [31.2472, 120.561],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0e5d2cd26b9a02ac2cc0d264558c3160 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b0e7c49c799225d91026913370cd5711 = $(`&lt;div id=&quot;html_b0e7c49c799225d91026913370cd5711&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.561             latitude:31.2472             pred_result:62.32378387451172             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0e5d2cd26b9a02ac2cc0d264558c3160.setContent(html_b0e7c49c799225d91026913370cd5711);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_79a1369ed4e6b6333e6a9fd7b0ea9fc0.bindPopup(popup_0e5d2cd26b9a02ac2cc0d264558c3160)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9991666f5a89261fb9b010021d66e4f0 = L.circleMarker(\\n\",\n       \"                [41.1442, 123.0485],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c2b752c630f2048f062bfffd6bc7b6a = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf27dea37320d7860b0e40203f74b329 = $(`&lt;div id=&quot;html_cf27dea37320d7860b0e40203f74b329&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.0485             latitude:41.1442             pred_result:68.73188781738281             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c2b752c630f2048f062bfffd6bc7b6a.setContent(html_cf27dea37320d7860b0e40203f74b329);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9991666f5a89261fb9b010021d66e4f0.bindPopup(popup_7c2b752c630f2048f062bfffd6bc7b6a)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2fd7bd184ee2c727255813fa3ddac128 = L.circleMarker(\\n\",\n       \"                [33.1842, 106.9893],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c55b583007cbe4d99c0fe7c8dd1d310 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_130894d9c674ce47508fcc48ab1d77ad = $(`&lt;div id=&quot;html_130894d9c674ce47508fcc48ab1d77ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.9893             latitude:33.1842             pred_result:65.08657836914062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c55b583007cbe4d99c0fe7c8dd1d310.setContent(html_130894d9c674ce47508fcc48ab1d77ad);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2fd7bd184ee2c727255813fa3ddac128.bindPopup(popup_5c55b583007cbe4d99c0fe7c8dd1d310)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4eaaabf07793299a95359c1b54354785 = L.circleMarker(\\n\",\n       \"                [26.8919, 112.6006],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9c077ff0804dca7b44838545c3407540 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c52bb6332bcbec9026c561e680a26b0b = $(`&lt;div id=&quot;html_c52bb6332bcbec9026c561e680a26b0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.6006             latitude:26.8919             pred_result:58.50246047973633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9c077ff0804dca7b44838545c3407540.setContent(html_c52bb6332bcbec9026c561e680a26b0b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4eaaabf07793299a95359c1b54354785.bindPopup(popup_9c077ff0804dca7b44838545c3407540)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_489277ef510eb9c32284fa37306a6015 = L.circleMarker(\\n\",\n       \"                [39.643, 118.144],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_722f58c0216783ad314bc57a0426bee7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c1cd5b796ff4dcc13b349844cc8171bb = $(`&lt;div id=&quot;html_c1cd5b796ff4dcc13b349844cc8171bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.144             latitude:39.643             pred_result:62.13350296020508             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_722f58c0216783ad314bc57a0426bee7.setContent(html_c1cd5b796ff4dcc13b349844cc8171bb);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_489277ef510eb9c32284fa37306a6015.bindPopup(popup_722f58c0216783ad314bc57a0426bee7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2cb095fd1970185837982498d500be89 = L.circleMarker(\\n\",\n       \"                [31.2703, 120.613],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7e797df263d6c0360ebad61e635d9ade = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ca4475d80b4bb8a4025d9a1d1f5ab6b7 = $(`&lt;div id=&quot;html_ca4475d80b4bb8a4025d9a1d1f5ab6b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.613             latitude:31.2703             pred_result:63.087886810302734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7e797df263d6c0360ebad61e635d9ade.setContent(html_ca4475d80b4bb8a4025d9a1d1f5ab6b7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2cb095fd1970185837982498d500be89.bindPopup(popup_7e797df263d6c0360ebad61e635d9ade)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_eea6405a88a4461b408d62bd730212d7 = L.circleMarker(\\n\",\n       \"                [36.6377, 117.9544],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d09b0ec1c48f4c8adfd95f1001f299a9 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a437a35b5c998892a773395cf2e93ec2 = $(`&lt;div id=&quot;html_a437a35b5c998892a773395cf2e93ec2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.9544             latitude:36.6377             pred_result:61.74284362792969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d09b0ec1c48f4c8adfd95f1001f299a9.setContent(html_a437a35b5c998892a773395cf2e93ec2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_eea6405a88a4461b408d62bd730212d7.bindPopup(popup_d09b0ec1c48f4c8adfd95f1001f299a9)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ad0c0755a06c85d69a76a4ab8b5245c = L.circleMarker(\\n\",\n       \"                [30.4551, 106.6388],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_485b61afacee37d93780580a07869e5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_149b82702d55b962cc1f0025cc74bd56 = $(`&lt;div id=&quot;html_149b82702d55b962cc1f0025cc74bd56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6388             latitude:30.4551             pred_result:56.07646179199219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_485b61afacee37d93780580a07869e5c.setContent(html_149b82702d55b962cc1f0025cc74bd56);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ad0c0755a06c85d69a76a4ab8b5245c.bindPopup(popup_485b61afacee37d93780580a07869e5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_07e8b0d80b0c93f061f7ff04b6807d07 = L.circleMarker(\\n\",\n       \"                [31.8934, 102.2402],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dfaa54267e6646b49365067ad650ffcb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7ad35d3c07ee1959c2a8e548bc1f1cd6 = $(`&lt;div id=&quot;html_7ad35d3c07ee1959c2a8e548bc1f1cd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.2402             latitude:31.8934             pred_result:66.54470825195312             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dfaa54267e6646b49365067ad650ffcb.setContent(html_7ad35d3c07ee1959c2a8e548bc1f1cd6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_07e8b0d80b0c93f061f7ff04b6807d07.bindPopup(popup_dfaa54267e6646b49365067ad650ffcb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_797ec67d9c5cbe1c6038592c3b362c3f = L.circleMarker(\\n\",\n       \"                [38.8394, 117.457],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b42f407843f08c46886ef04851cff631 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f749e7195b91f70c7b80096ea3044882 = $(`&lt;div id=&quot;html_f749e7195b91f70c7b80096ea3044882&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.457             latitude:38.8394             pred_result:62.12340545654297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b42f407843f08c46886ef04851cff631.setContent(html_f749e7195b91f70c7b80096ea3044882);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_797ec67d9c5cbe1c6038592c3b362c3f.bindPopup(popup_b42f407843f08c46886ef04851cff631)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_56ad0ed2901636ab76b1c46eda28db70 = L.circleMarker(\\n\",\n       \"                [32.0144, 118.777],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bbc54f8fa43f339532eda95354faf90 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_953531ba6a53ce8c898b030caa56878f = $(`&lt;div id=&quot;html_953531ba6a53ce8c898b030caa56878f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.777             latitude:32.0144             pred_result:51.96764373779297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bbc54f8fa43f339532eda95354faf90.setContent(html_953531ba6a53ce8c898b030caa56878f);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_56ad0ed2901636ab76b1c46eda28db70.bindPopup(popup_5bbc54f8fa43f339532eda95354faf90)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ab113997a43b65d47cdfcd82540b1e74 = L.circleMarker(\\n\",\n       \"                [27.8336, 113.251],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e0839e1af30d738ac02aedf6570ecd57 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_125e11ab074cc6a6474daa35e8274241 = $(`&lt;div id=&quot;html_125e11ab074cc6a6474daa35e8274241&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.251             latitude:27.8336             pred_result:52.20897674560547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e0839e1af30d738ac02aedf6570ecd57.setContent(html_125e11ab074cc6a6474daa35e8274241);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ab113997a43b65d47cdfcd82540b1e74.bindPopup(popup_e0839e1af30d738ac02aedf6570ecd57)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_fd997f5154d6d3cfa748dedf9f05d773 = L.circleMarker(\\n\",\n       \"                [22.8693, 112.844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7c991cf92cd368078b60bb4c2b00fdd3 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_826e41e34cc1e471945e614c8469d247 = $(`&lt;div id=&quot;html_826e41e34cc1e471945e614c8469d247&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.844             latitude:22.8693             pred_result:66.50221252441406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7c991cf92cd368078b60bb4c2b00fdd3.setContent(html_826e41e34cc1e471945e614c8469d247);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_fd997f5154d6d3cfa748dedf9f05d773.bindPopup(popup_7c991cf92cd368078b60bb4c2b00fdd3)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b9f7578cb172ceac8dc1dd2266e549fe = L.circleMarker(\\n\",\n       \"                [26.5697, 106.7164],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_917e24102f4ca60bc4c3cd803b584ef8 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c7616209818e3511106e0791b766654 = $(`&lt;div id=&quot;html_4c7616209818e3511106e0791b766654&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.7164             latitude:26.5697             pred_result:59.720157623291016             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_917e24102f4ca60bc4c3cd803b584ef8.setContent(html_4c7616209818e3511106e0791b766654);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b9f7578cb172ceac8dc1dd2266e549fe.bindPopup(popup_917e24102f4ca60bc4c3cd803b584ef8)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bee09cafe912f339f0ae2756a0e53eae = L.circleMarker(\\n\",\n       \"                [23.1572, 112.885],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4a1f50b1d5aaf911d20279849d3d75dc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_96e667e6352f77f773d4b194fe83480e = $(`&lt;div id=&quot;html_96e667e6352f77f773d4b194fe83480e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:112.885             latitude:23.1572             pred_result:65.57113647460938             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4a1f50b1d5aaf911d20279849d3d75dc.setContent(html_96e667e6352f77f773d4b194fe83480e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bee09cafe912f339f0ae2756a0e53eae.bindPopup(popup_4a1f50b1d5aaf911d20279849d3d75dc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_204841293cbcd92c332efcc54cb5a83b = L.circleMarker(\\n\",\n       \"                [30.6197, 114.2836],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_48cadc1cce0f916917dbaa08d00748ee = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f5579f65e04ee2cdeb968750a827dcf = $(`&lt;div id=&quot;html_1f5579f65e04ee2cdeb968750a827dcf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.2836             latitude:30.6197             pred_result:50.59703826904297             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_48cadc1cce0f916917dbaa08d00748ee.setContent(html_1f5579f65e04ee2cdeb968750a827dcf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_204841293cbcd92c332efcc54cb5a83b.bindPopup(popup_48cadc1cce0f916917dbaa08d00748ee)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_efad37a6e2a4b4b12cc7e506b00508a5 = L.circleMarker(\\n\",\n       \"                [33.6284, 116.9677],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a6aee48461d628c6bfac25d0316bb101 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_da9384bedfda5bfb59d3d1b991f96f32 = $(`&lt;div id=&quot;html_da9384bedfda5bfb59d3d1b991f96f32&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:116.9677             latitude:33.6284             pred_result:52.57323455810547             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a6aee48461d628c6bfac25d0316bb101.setContent(html_da9384bedfda5bfb59d3d1b991f96f32);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_efad37a6e2a4b4b12cc7e506b00508a5.bindPopup(popup_a6aee48461d628c6bfac25d0316bb101)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_656833e019a3fd3c1863b49f89f183af = L.circleMarker(\\n\",\n       \"                [22.5908, 114.263],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_eb81bb078ad7dd7ec574191589b7eeb2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2524db30e0976c07bdf1e303781b7339 = $(`&lt;div id=&quot;html_2524db30e0976c07bdf1e303781b7339&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.263             latitude:22.5908             pred_result:72.9546127319336             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_eb81bb078ad7dd7ec574191589b7eeb2.setContent(html_2524db30e0976c07bdf1e303781b7339);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_656833e019a3fd3c1863b49f89f183af.bindPopup(popup_eb81bb078ad7dd7ec574191589b7eeb2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_af0c93ec4e8e42051890f85ec7b0920f = L.circleMarker(\\n\",\n       \"                [41.8336, 123.542],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_775a272c148150ef8825aada622e3619 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e10ba512a354bf1504cc0fb2604e6e2 = $(`&lt;div id=&quot;html_5e10ba512a354bf1504cc0fb2604e6e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.542             latitude:41.8336             pred_result:67.73014831542969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_775a272c148150ef8825aada622e3619.setContent(html_5e10ba512a354bf1504cc0fb2604e6e2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_af0c93ec4e8e42051890f85ec7b0920f.bindPopup(popup_775a272c148150ef8825aada622e3619)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_44d112adb1fd724e70f3cc6508e8cea7 = L.circleMarker(\\n\",\n       \"                [34.3528, 107.3906],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9f5618d7fc7d9353aa4b65533e26c5e2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_226bc7357f7798347da71c432ac67eb5 = $(`&lt;div id=&quot;html_226bc7357f7798347da71c432ac67eb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3906             latitude:34.3528             pred_result:68.35917663574219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9f5618d7fc7d9353aa4b65533e26c5e2.setContent(html_226bc7357f7798347da71c432ac67eb5);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_44d112adb1fd724e70f3cc6508e8cea7.bindPopup(popup_9f5618d7fc7d9353aa4b65533e26c5e2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7925776b99b95b4e06f177cf761b1977 = L.circleMarker(\\n\",\n       \"                [38.817, 106.3394],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e2f0365fb6c52dbc41c27f83e0b748eb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6baf93e1e3102527d1bad78176f4f905 = $(`&lt;div id=&quot;html_6baf93e1e3102527d1bad78176f4f905&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.3394             latitude:38.817             pred_result:85.37081909179688             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e2f0365fb6c52dbc41c27f83e0b748eb.setContent(html_6baf93e1e3102527d1bad78176f4f905);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7925776b99b95b4e06f177cf761b1977.bindPopup(popup_e2f0365fb6c52dbc41c27f83e0b748eb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5bba18e692f3f106edf7bc6914ceecb2 = L.circleMarker(\\n\",\n       \"                [37.8561, 113.5922],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8abe30e05dbed8379515ee9231a73bff = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_a6a29abefcc4f3f234fcee58894259ee = $(`&lt;div id=&quot;html_a6a29abefcc4f3f234fcee58894259ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.5922             latitude:37.8561             pred_result:64.63519287109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8abe30e05dbed8379515ee9231a73bff.setContent(html_a6a29abefcc4f3f234fcee58894259ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5bba18e692f3f106edf7bc6914ceecb2.bindPopup(popup_8abe30e05dbed8379515ee9231a73bff)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_431a7dfd7772df4670983bf3342633c1 = L.circleMarker(\\n\",\n       \"                [28.6459, 121.273],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_25800ba195dc2dc92723e2c168ff844e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6d2662e7f0da9cadbefd4d30d730aa24 = $(`&lt;div id=&quot;html_6d2662e7f0da9cadbefd4d30d730aa24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.273             latitude:28.6459             pred_result:66.39893341064453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_25800ba195dc2dc92723e2c168ff844e.setContent(html_6d2662e7f0da9cadbefd4d30d730aa24);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_431a7dfd7772df4670983bf3342633c1.bindPopup(popup_25800ba195dc2dc92723e2c168ff844e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_60baa15e9bf77b052d3041558373df1c = L.circleMarker(\\n\",\n       \"                [30.4576, 106.6303],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_1667fc0a65e725b0746a940f6c273d25 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_43adb71f56b8eb1002f05c39df9357dd = $(`&lt;div id=&quot;html_43adb71f56b8eb1002f05c39df9357dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6303             latitude:30.4576             pred_result:55.66065216064453             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_1667fc0a65e725b0746a940f6c273d25.setContent(html_43adb71f56b8eb1002f05c39df9357dd);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_60baa15e9bf77b052d3041558373df1c.bindPopup(popup_1667fc0a65e725b0746a940f6c273d25)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_57bfb92d24c62217f2d15c7f93de50f7 = L.circleMarker(\\n\",\n       \"                [34.5667, 117.732],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_31f4b47d351cf2a5c2f908640a6ffa9d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_7b4b73df324e1467489265745263ae21 = $(`&lt;div id=&quot;html_7b4b73df324e1467489265745263ae21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.732             latitude:34.5667             pred_result:58.35890579223633             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_31f4b47d351cf2a5c2f908640a6ffa9d.setContent(html_7b4b73df324e1467489265745263ae21);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_57bfb92d24c62217f2d15c7f93de50f7.bindPopup(popup_31f4b47d351cf2a5c2f908640a6ffa9d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_00f744a2d2c040c9ab5022f3560ad7ad = L.circleMarker(\\n\",\n       \"                [37.9358, 102.6469],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fdbc169eec3fab85ca328b8d22ec5a45 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5c8a8c5fbadf29f46d401069185a1ca3 = $(`&lt;div id=&quot;html_5c8a8c5fbadf29f46d401069185a1ca3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.6469             latitude:37.9358             pred_result:86.35289001464844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fdbc169eec3fab85ca328b8d22ec5a45.setContent(html_5c8a8c5fbadf29f46d401069185a1ca3);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_00f744a2d2c040c9ab5022f3560ad7ad.bindPopup(popup_fdbc169eec3fab85ca328b8d22ec5a45)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d6ec71683d774bd8f9203590f2125e33 = L.circleMarker(\\n\",\n       \"                [31.89708, 121.1518],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c5ebe560a0174bc4dc24153e154e6d08 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1d820b9011ada9c2abe4a0f06113633e = $(`&lt;div id=&quot;html_1d820b9011ada9c2abe4a0f06113633e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.1518             latitude:31.89708             pred_result:62.25579071044922             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c5ebe560a0174bc4dc24153e154e6d08.setContent(html_1d820b9011ada9c2abe4a0f06113633e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d6ec71683d774bd8f9203590f2125e33.bindPopup(popup_c5ebe560a0174bc4dc24153e154e6d08)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_be918d5f5edb807c90c6f8269aab0675 = L.circleMarker(\\n\",\n       \"                [27.6178, 113.865],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_462a05547f2e805cb6e643dffa4da9ef = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2d4016084ba5a2ce7e030d0105932040 = $(`&lt;div id=&quot;html_2d4016084ba5a2ce7e030d0105932040&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.865             latitude:27.6178             pred_result:51.06446838378906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_462a05547f2e805cb6e643dffa4da9ef.setContent(html_2d4016084ba5a2ce7e030d0105932040);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_be918d5f5edb807c90c6f8269aab0675.bindPopup(popup_462a05547f2e805cb6e643dffa4da9ef)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cf1179bbd0e3196186076b22ccc31f69 = L.circleMarker(\\n\",\n       \"                [25.0661, 117.0256],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_6f669714a858673fe973e31a7e5f5e31 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2a0360e917327469ab1be5a7d9fd0887 = $(`&lt;div id=&quot;html_2a0360e917327469ab1be5a7d9fd0887&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.0256             latitude:25.0661             pred_result:73.04713439941406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_6f669714a858673fe973e31a7e5f5e31.setContent(html_2a0360e917327469ab1be5a7d9fd0887);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cf1179bbd0e3196186076b22ccc31f69.bindPopup(popup_6f669714a858673fe973e31a7e5f5e31)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b102ceba9707a7e3140dd0f87c5b336f = L.circleMarker(\\n\",\n       \"                [37.0967, 114.4821],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2fd26d805cdadc7334aded9bbca2d224 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0807ddfb391a71b011af6f35ba2ca9ff = $(`&lt;div id=&quot;html_0807ddfb391a71b011af6f35ba2ca9ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.4821             latitude:37.0967             pred_result:64.84950256347656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2fd26d805cdadc7334aded9bbca2d224.setContent(html_0807ddfb391a71b011af6f35ba2ca9ff);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b102ceba9707a7e3140dd0f87c5b336f.bindPopup(popup_2fd26d805cdadc7334aded9bbca2d224)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_72e36ac4ea32f1659c2b50af688b8ebd = L.circleMarker(\\n\",\n       \"                [26.5689, 106.6971],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fcc2ad8e1b70f8590ae7a1ecd5157d7f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6562cce3bc51042c5708eccc22439abf = $(`&lt;div id=&quot;html_6562cce3bc51042c5708eccc22439abf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6971             latitude:26.5689             pred_result:59.87037658691406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fcc2ad8e1b70f8590ae7a1ecd5157d7f.setContent(html_6562cce3bc51042c5708eccc22439abf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_72e36ac4ea32f1659c2b50af688b8ebd.bindPopup(popup_fcc2ad8e1b70f8590ae7a1ecd5157d7f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_385c7841a2ff8a8270ed21443d9e8bff = L.circleMarker(\\n\",\n       \"                [34.5004, 109.5049],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_24af4452071f557238198d9b486328fd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0a49888702d95c7f29449abee681d746 = $(`&lt;div id=&quot;html_0a49888702d95c7f29449abee681d746&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:109.5049             latitude:34.5004             pred_result:71.069091796875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_24af4452071f557238198d9b486328fd.setContent(html_0a49888702d95c7f29449abee681d746);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_385c7841a2ff8a8270ed21443d9e8bff.bindPopup(popup_24af4452071f557238198d9b486328fd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0ade20a41c95eb966fb13bb4ab2aca4f = L.circleMarker(\\n\",\n       \"                [30.9447, 118.7581],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_9ba9ab027be5e5557ba252f535e47c1e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4a5449bc76e3c72391f80e27f09fd719 = $(`&lt;div id=&quot;html_4a5449bc76e3c72391f80e27f09fd719&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.7581             latitude:30.9447             pred_result:58.21783447265625             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_9ba9ab027be5e5557ba252f535e47c1e.setContent(html_4a5449bc76e3c72391f80e27f09fd719);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0ade20a41c95eb966fb13bb4ab2aca4f.bindPopup(popup_9ba9ab027be5e5557ba252f535e47c1e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7b76fe7df9e9e890abc6c400024d026f = L.circleMarker(\\n\",\n       \"                [30.7636, 106.0642],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bcd0537ebf6310f64883ece5d9593367 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_dfebb2f3813302eceb0663b35502951c = $(`&lt;div id=&quot;html_dfebb2f3813302eceb0663b35502951c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.0642             latitude:30.7636             pred_result:57.768558502197266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bcd0537ebf6310f64883ece5d9593367.setContent(html_dfebb2f3813302eceb0663b35502951c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7b76fe7df9e9e890abc6c400024d026f.bindPopup(popup_bcd0537ebf6310f64883ece5d9593367)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4c35809de29e3de6af0566766e2a0481 = L.circleMarker(\\n\",\n       \"                [25.2178, 110.2869],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2d71e79d4b03fe43fcffbcaddd885664 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c40652ff74d7191026383a6a0833b951 = $(`&lt;div id=&quot;html_c40652ff74d7191026383a6a0833b951&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.2869             latitude:25.2178             pred_result:60.91847229003906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2d71e79d4b03fe43fcffbcaddd885664.setContent(html_c40652ff74d7191026383a6a0833b951);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4c35809de29e3de6af0566766e2a0481.bindPopup(popup_2d71e79d4b03fe43fcffbcaddd885664)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ba123d816212c5345ffa0e7896c9a911 = L.circleMarker(\\n\",\n       \"                [23.9011, 106.6103],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_fa823023255fb331cfffc335b0d17cf5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_c9cc7575bd6b44cf4d9729f6ea449204 = $(`&lt;div id=&quot;html_c9cc7575bd6b44cf4d9729f6ea449204&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.6103             latitude:23.9011             pred_result:67.84941101074219             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_fa823023255fb331cfffc335b0d17cf5.setContent(html_c9cc7575bd6b44cf4d9729f6ea449204);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ba123d816212c5345ffa0e7896c9a911.bindPopup(popup_fa823023255fb331cfffc335b0d17cf5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_acadaba502d6c0f9b911a3744338f990 = L.circleMarker(\\n\",\n       \"                [38.1398, 114.5019],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b714c4b9a783b9435043a06e1e513377 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_26cffb86934731e11473d883b88ae58e = $(`&lt;div id=&quot;html_26cffb86934731e11473d883b88ae58e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.5019             latitude:38.1398             pred_result:61.001564025878906             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b714c4b9a783b9435043a06e1e513377.setContent(html_26cffb86934731e11473d883b88ae58e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_acadaba502d6c0f9b911a3744338f990.bindPopup(popup_b714c4b9a783b9435043a06e1e513377)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bdf3f23c66c35cde69f62068a19d496e = L.circleMarker(\\n\",\n       \"                [31.2036, 121.478],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e66484a59f2e1ec5fb56b46b15e3fdb0 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6263e746b90b17619792cfc03e8ea68c = $(`&lt;div id=&quot;html_6263e746b90b17619792cfc03e8ea68c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:121.478             latitude:31.2036             pred_result:65.00137329101562             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e66484a59f2e1ec5fb56b46b15e3fdb0.setContent(html_6263e746b90b17619792cfc03e8ea68c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bdf3f23c66c35cde69f62068a19d496e.bindPopup(popup_e66484a59f2e1ec5fb56b46b15e3fdb0)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4a8897a71b9522bbb28a732caf8185bc = L.circleMarker(\\n\",\n       \"                [31.882, 120.55],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_03357a7a0422ea4b358a63880660c64c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_1f55947ef980c412030e801c972d47a8 = $(`&lt;div id=&quot;html_1f55947ef980c412030e801c972d47a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.55             latitude:31.882             pred_result:59.18101501464844             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_03357a7a0422ea4b358a63880660c64c.setContent(html_1f55947ef980c412030e801c972d47a8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4a8897a71b9522bbb28a732caf8185bc.bindPopup(popup_03357a7a0422ea4b358a63880660c64c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0c44ba940cc84307d72df5bc0ae22fb3 = L.circleMarker(\\n\",\n       \"                [40.1461, 124.3933],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_af3527332e2a508c6e8aebb8c1c386a7 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_78e8696a92f7b5d232affc8fcb3477b6 = $(`&lt;div id=&quot;html_78e8696a92f7b5d232affc8fcb3477b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:124.3933             latitude:40.1461             pred_result:67.62272644042969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_af3527332e2a508c6e8aebb8c1c386a7.setContent(html_78e8696a92f7b5d232affc8fcb3477b6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0c44ba940cc84307d72df5bc0ae22fb3.bindPopup(popup_af3527332e2a508c6e8aebb8c1c386a7)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_0b3fc9e6c40ca0e59662a4226942b3e5 = L.circleMarker(\\n\",\n       \"                [39.6719, 106.8219],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_00c2a0ff960ef0c163e50cdf5200e3ca = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_74bd9034a8fc5cecbc8b204bb74e42e9 = $(`&lt;div id=&quot;html_74bd9034a8fc5cecbc8b204bb74e42e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.8219             latitude:39.6719             pred_result:87.18502044677734             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_00c2a0ff960ef0c163e50cdf5200e3ca.setContent(html_74bd9034a8fc5cecbc8b204bb74e42e9);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_0b3fc9e6c40ca0e59662a4226942b3e5.bindPopup(popup_00c2a0ff960ef0c163e50cdf5200e3ca)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_4dc2a83f26edb64284868b11593bb72e = L.circleMarker(\\n\",\n       \"                [33.575, 119.007],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_64cbdebc7628af5a5b0981ee520b320e = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5e0b60f7b71f5e5cfae681070cffd425 = $(`&lt;div id=&quot;html_5e0b60f7b71f5e5cfae681070cffd425&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.007             latitude:33.575             pred_result:58.9151611328125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_64cbdebc7628af5a5b0981ee520b320e.setContent(html_5e0b60f7b71f5e5cfae681070cffd425);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_4dc2a83f26edb64284868b11593bb72e.bindPopup(popup_64cbdebc7628af5a5b0981ee520b320e)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_3e9e6515e7f99bff42d4d92d585f08e3 = L.circleMarker(\\n\",\n       \"                [29.5983, 106.296],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_996ff52b90e9153e7aa49170202d237f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6fae633056b07775938d0bf4d7d29629 = $(`&lt;div id=&quot;html_6fae633056b07775938d0bf4d7d29629&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.296             latitude:29.5983             pred_result:52.493629455566406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_996ff52b90e9153e7aa49170202d237f.setContent(html_6fae633056b07775938d0bf4d7d29629);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_3e9e6515e7f99bff42d4d92d585f08e3.bindPopup(popup_996ff52b90e9153e7aa49170202d237f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_f5d27e0fd625b9cf4401eedfe08044f2 = L.circleMarker(\\n\",\n       \"                [43.7256, 126.6772],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_a96d3e3949235212e81965a90b0f9023 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_83864c6ecb3de496de2c2c2105cdd0d2 = $(`&lt;div id=&quot;html_83864c6ecb3de496de2c2c2105cdd0d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.6772             latitude:43.7256             pred_result:64.7774658203125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_a96d3e3949235212e81965a90b0f9023.setContent(html_83864c6ecb3de496de2c2c2105cdd0d2);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_f5d27e0fd625b9cf4401eedfe08044f2.bindPopup(popup_a96d3e3949235212e81965a90b0f9023)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_cba718cec8fb02eef21b82148bb61e7d = L.circleMarker(\\n\",\n       \"                [45.6033, 84.8861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b68541c399cb139db1c8044cb2e4c40b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_b7dab5529d2469f7040cdbd309011b45 = $(`&lt;div id=&quot;html_b7dab5529d2469f7040cdbd309011b45&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:84.8861             latitude:45.6033             pred_result:99.82257843017578             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b68541c399cb139db1c8044cb2e4c40b.setContent(html_b7dab5529d2469f7040cdbd309011b45);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_cba718cec8fb02eef21b82148bb61e7d.bindPopup(popup_b68541c399cb139db1c8044cb2e4c40b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_481f2596b4d6bbff8f55500bd3eab7c0 = L.circleMarker(\\n\",\n       \"                [30.4519, 114.8858],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d1f5af94799add6e41f30074ad12fa69 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_fe7a727c99a095d2fd4e316aa212ee9c = $(`&lt;div id=&quot;html_fe7a727c99a095d2fd4e316aa212ee9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.8858             latitude:30.4519             pred_result:53.84137725830078             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d1f5af94799add6e41f30074ad12fa69.setContent(html_fe7a727c99a095d2fd4e316aa212ee9c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_481f2596b4d6bbff8f55500bd3eab7c0.bindPopup(popup_d1f5af94799add6e41f30074ad12fa69)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5ddb0e3a29e3372babd80b05862a3a0c = L.circleMarker(\\n\",\n       \"                [43.9167, 125.323],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d76e21ee778df097f69b50350a11f394 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d444cc75af7565a8a3587f667760ef50 = $(`&lt;div id=&quot;html_d444cc75af7565a8a3587f667760ef50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:125.323             latitude:43.9167             pred_result:69.39614868164062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d76e21ee778df097f69b50350a11f394.setContent(html_d444cc75af7565a8a3587f667760ef50);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5ddb0e3a29e3372babd80b05862a3a0c.bindPopup(popup_d76e21ee778df097f69b50350a11f394)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_5b08d924a858b992f3dbebec0bf7871b = L.circleMarker(\\n\",\n       \"                [36.1855, 113.0844444],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c619ef15dd4c923400881e373efd02f6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f70a406448b80bb3c0a60121905a236b = $(`&lt;div id=&quot;html_f70a406448b80bb3c0a60121905a236b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.0844444             latitude:36.1855             pred_result:66.0462646484375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c619ef15dd4c923400881e373efd02f6.setContent(html_f70a406448b80bb3c0a60121905a236b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_5b08d924a858b992f3dbebec0bf7871b.bindPopup(popup_c619ef15dd4c923400881e373efd02f6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6f5bcc89000148b1c7f87e02ad128f1a = L.circleMarker(\\n\",\n       \"                [35.303, 113.883],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0465639ff92705e6a021d2a3184af893 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8cde6bfa649d559a233f34765a402896 = $(`&lt;div id=&quot;html_8cde6bfa649d559a233f34765a402896&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.883             latitude:35.303             pred_result:64.83084869384766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0465639ff92705e6a021d2a3184af893.setContent(html_8cde6bfa649d559a233f34765a402896);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6f5bcc89000148b1c7f87e02ad128f1a.bindPopup(popup_0465639ff92705e6a021d2a3184af893)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_bb80d33212eea7da0e2cae1ccd6affa9 = L.circleMarker(\\n\",\n       \"                [34.7745, 117.5852],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_dc95c1beb79ed225dbd941f60621b6cf = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_8d1ad4a03933806e511ad61d4ae33658 = $(`&lt;div id=&quot;html_8d1ad4a03933806e511ad61d4ae33658&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.5852             latitude:34.7745             pred_result:59.88480758666992             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_dc95c1beb79ed225dbd941f60621b6cf.setContent(html_8d1ad4a03933806e511ad61d4ae33658);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_bb80d33212eea7da0e2cae1ccd6affa9.bindPopup(popup_dc95c1beb79ed225dbd941f60621b6cf)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c6f01c009c944c6665af302d17bec8bc = L.circleMarker(\\n\",\n       \"                [44.561, 129.61],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_edfb4e2dd8c0436a67fefda1d13b1ef6 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_3cdc67ccfc66c69ad7ed428d155bcb77 = $(`&lt;div id=&quot;html_3cdc67ccfc66c69ad7ed428d155bcb77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:129.61             latitude:44.561             pred_result:73.02708435058594             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_edfb4e2dd8c0436a67fefda1d13b1ef6.setContent(html_3cdc67ccfc66c69ad7ed428d155bcb77);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c6f01c009c944c6665af302d17bec8bc.bindPopup(popup_edfb4e2dd8c0436a67fefda1d13b1ef6)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c9d2fa40e05c3f9d5bc35fa84f58795c = L.circleMarker(\\n\",\n       \"                [22.3708, 107.3701],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d4b23874345c205de1d759637bbae580 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cf54f2ebf515bfd3004ac281e15663da = $(`&lt;div id=&quot;html_cf54f2ebf515bfd3004ac281e15663da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.3701             latitude:22.3708             pred_result:71.0860595703125             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d4b23874345c205de1d759637bbae580.setContent(html_cf54f2ebf515bfd3004ac281e15663da);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c9d2fa40e05c3f9d5bc35fa84f58795c.bindPopup(popup_d4b23874345c205de1d759637bbae580)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_26045e74312575547d174e865c1e835d = L.circleMarker(\\n\",\n       \"                [31.381, 120.999],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_bf143238309307345a11cd882d02b6ac = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_90e13149f5b2d9726c98f2abfa0f7ede = $(`&lt;div id=&quot;html_90e13149f5b2d9726c98f2abfa0f7ede&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.999             latitude:31.381             pred_result:62.47596740722656             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_bf143238309307345a11cd882d02b6ac.setContent(html_90e13149f5b2d9726c98f2abfa0f7ede);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_26045e74312575547d174e865c1e835d.bindPopup(popup_bf143238309307345a11cd882d02b6ac)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_a533011f333364acae80fdbcdfe0e6fe = L.circleMarker(\\n\",\n       \"                [27.3125, 105.2864],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_cd7244b09cb80eed0bf86bf5166906b2 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_2e9d7497b41ed59e15687914c5a57b31 = $(`&lt;div id=&quot;html_2e9d7497b41ed59e15687914c5a57b31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:105.2864             latitude:27.3125             pred_result:51.21391296386719             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_cd7244b09cb80eed0bf86bf5166906b2.setContent(html_2e9d7497b41ed59e15687914c5a57b31);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_a533011f333364acae80fdbcdfe0e6fe.bindPopup(popup_cd7244b09cb80eed0bf86bf5166906b2)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c1738ab8dc345255de97a2dd58a961eb = L.circleMarker(\\n\",\n       \"                [23.4168, 103.386],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5bab3a1c50614ebf60b540e0d0022d9b = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_34b407607dd578657b9973fed6bc5be0 = $(`&lt;div id=&quot;html_34b407607dd578657b9973fed6bc5be0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:103.386             latitude:23.4168             pred_result:68.67996978759766             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5bab3a1c50614ebf60b540e0d0022d9b.setContent(html_34b407607dd578657b9973fed6bc5be0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c1738ab8dc345255de97a2dd58a961eb.bindPopup(popup_5bab3a1c50614ebf60b540e0d0022d9b)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_10e3c5296e3b9801e7b50628c3870802 = L.circleMarker(\\n\",\n       \"                [41.1556, 122.0247],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_4054bc813c6096cf227cbd23d1200720 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_517e56cfab7173d99d8eb829b42eb3cf = $(`&lt;div id=&quot;html_517e56cfab7173d99d8eb829b42eb3cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:122.0247             latitude:41.1556             pred_result:69.14073181152344             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_4054bc813c6096cf227cbd23d1200720.setContent(html_517e56cfab7173d99d8eb829b42eb3cf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_10e3c5296e3b9801e7b50628c3870802.bindPopup(popup_4054bc813c6096cf227cbd23d1200720)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_c942945d2affec2b7183669be76abea9 = L.circleMarker(\\n\",\n       \"                [37.177, 119.941],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_36014987630b84d3b2632aa191c22362 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_40463cd7feb91fbb21d43c2d6e271e52 = $(`&lt;div id=&quot;html_40463cd7feb91fbb21d43c2d6e271e52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:119.941             latitude:37.177             pred_result:70.31365966796875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_36014987630b84d3b2632aa191c22362.setContent(html_40463cd7feb91fbb21d43c2d6e271e52);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_c942945d2affec2b7183669be76abea9.bindPopup(popup_36014987630b84d3b2632aa191c22362)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_2395347f44d7b47da310bcae2e441006 = L.circleMarker(\\n\",\n       \"                [27.8014, 114.3806],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bcde00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#bcde00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_c321b5361304a374a13ba782dfd5e28f = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_6b06bc195541c4af338ce19fc9767474 = $(`&lt;div id=&quot;html_6b06bc195541c4af338ce19fc9767474&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.3806             latitude:27.8014             pred_result:47.538909912109375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_c321b5361304a374a13ba782dfd5e28f.setContent(html_6b06bc195541c4af338ce19fc9767474);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_2395347f44d7b47da310bcae2e441006.bindPopup(popup_c321b5361304a374a13ba782dfd5e28f)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_7bb81343c7966e6288bfd7162b925a1a = L.circleMarker(\\n\",\n       \"                [32.6389, 110.7258],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5c7c8ee31be02dc17468f71086a0cab5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_03437fb70b41e59adfbfb15f43eb37d0 = $(`&lt;div id=&quot;html_03437fb70b41e59adfbfb15f43eb37d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:110.7258             latitude:32.6389             pred_result:57.3006706237793             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5c7c8ee31be02dc17468f71086a0cab5.setContent(html_03437fb70b41e59adfbfb15f43eb37d0);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_7bb81343c7966e6288bfd7162b925a1a.bindPopup(popup_5c7c8ee31be02dc17468f71086a0cab5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ecf22703795e5331655e039a4c2e07ac = L.circleMarker(\\n\",\n       \"                [24.428, 98.5842],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff5000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_0257497e1745cd682412f541d847c2bb = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ed423abf60018897209125ad53379d7c = $(`&lt;div id=&quot;html_ed423abf60018897209125ad53379d7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:98.5842             latitude:24.428             pred_result:70.75799560546875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_0257497e1745cd682412f541d847c2bb.setContent(html_ed423abf60018897209125ad53379d7c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ecf22703795e5331655e039a4c2e07ac.bindPopup(popup_0257497e1745cd682412f541d847c2bb)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_b11fa6fe6fc1d6ebae2ddabed41061b1 = L.circleMarker(\\n\",\n       \"                [25.8333, 114.9322],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5a02999d5a32c4afaea015883971a66d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d14743681872248032d33a66e3ed62d6 = $(`&lt;div id=&quot;html_d14743681872248032d33a66e3ed62d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.9322             latitude:25.8333             pred_result:74.81575012207031             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5a02999d5a32c4afaea015883971a66d.setContent(html_d14743681872248032d33a66e3ed62d6);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_b11fa6fe6fc1d6ebae2ddabed41061b1.bindPopup(popup_5a02999d5a32c4afaea015883971a66d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_93596e664a048c6ea52b3691ce92011e = L.circleMarker(\\n\",\n       \"                [33.567, 114.056],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_73f4932298e23401e786d6e90bba948d = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_931bb55d5fba302775e5b6556e9f174e = $(`&lt;div id=&quot;html_931bb55d5fba302775e5b6556e9f174e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:114.056             latitude:33.567             pred_result:54.503421783447266             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_73f4932298e23401e786d6e90bba948d.setContent(html_931bb55d5fba302775e5b6556e9f174e);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_93596e664a048c6ea52b3691ce92011e.bindPopup(popup_73f4932298e23401e786d6e90bba948d)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_70f11d724b4e2d10c7a348fdaf4521f2 = L.circleMarker(\\n\",\n       \"                [33.0014, 97.0],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b44a46d24b2846d1f1b2023ef20e10fa = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_14390cd209ef000759500a85ea9eada7 = $(`&lt;div id=&quot;html_14390cd209ef000759500a85ea9eada7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:97.0             latitude:33.0014             pred_result:63.58458709716797             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b44a46d24b2846d1f1b2023ef20e10fa.setContent(html_14390cd209ef000759500a85ea9eada7);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_70f11d724b4e2d10c7a348fdaf4521f2.bindPopup(popup_b44a46d24b2846d1f1b2023ef20e10fa)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d6fc096f464ebb643fa6e499b20af15e = L.circleMarker(\\n\",\n       \"                [26.2378, 117.6028],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2800&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff2800&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_5d8b5c9fabaa765f5629e4f4382ad8bd = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_0f0396b880480bf9e31edf448303577b = $(`&lt;div id=&quot;html_0f0396b880480bf9e31edf448303577b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:117.6028             latitude:26.2378             pred_result:76.55072784423828             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_5d8b5c9fabaa765f5629e4f4382ad8bd.setContent(html_0f0396b880480bf9e31edf448303577b);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d6fc096f464ebb643fa6e499b20af15e.bindPopup(popup_5d8b5c9fabaa765f5629e4f4382ad8bd)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_13469b93219022f224e0fa81b84a6f08 = L.circleMarker(\\n\",\n       \"                [41.7561, 123.535],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_b4cec8b14c8cf0a54973b1bacdd53f5c = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_4c011df3c53434e4fe125c7354cd35e4 = $(`&lt;div id=&quot;html_4c011df3c53434e4fe125c7354cd35e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:123.535             latitude:41.7561             pred_result:68.0032958984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_b4cec8b14c8cf0a54973b1bacdd53f5c.setContent(html_4c011df3c53434e4fe125c7354cd35e4);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_13469b93219022f224e0fa81b84a6f08.bindPopup(popup_b4cec8b14c8cf0a54973b1bacdd53f5c)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9e8793fcb1cb0d08d14dba7d3dc1e971 = L.circleMarker(\\n\",\n       \"                [25.0836, 102.728],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f87f8041704f6c8817978e82cecd4b61 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_cfb666af659c36d188f575a156918d2c = $(`&lt;div id=&quot;html_cfb666af659c36d188f575a156918d2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.728             latitude:25.0836             pred_result:64.05120849609375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f87f8041704f6c8817978e82cecd4b61.setContent(html_cfb666af659c36d188f575a156918d2c);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9e8793fcb1cb0d08d14dba7d3dc1e971.bindPopup(popup_f87f8041704f6c8817978e82cecd4b61)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_d1cf120e40f313351d417326010cd663 = L.circleMarker(\\n\",\n       \"                [34.3547, 107.1431],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_3c4181535ed661544a4e98277794c914 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_ba8078d4e798242aa02c5907f541e774 = $(`&lt;div id=&quot;html_ba8078d4e798242aa02c5907f541e774&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:107.1431             latitude:34.3547             pred_result:67.99478149414062             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_3c4181535ed661544a4e98277794c914.setContent(html_ba8078d4e798242aa02c5907f541e774);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_d1cf120e40f313351d417326010cd663.bindPopup(popup_3c4181535ed661544a4e98277794c914)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1aa9f4e757d3190df17d9a72197a8671 = L.circleMarker(\\n\",\n       \"                [39.7153, 76.1861],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e8bc7542c41b746d8502912a7519d207 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f535c0d3b0d9c069381dfe4a042049ee = $(`&lt;div id=&quot;html_f535c0d3b0d9c069381dfe4a042049ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:76.1861             latitude:39.7153             pred_result:97.5052719116211             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e8bc7542c41b746d8502912a7519d207.setContent(html_f535c0d3b0d9c069381dfe4a042049ee);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1aa9f4e757d3190df17d9a72197a8671.bindPopup(popup_e8bc7542c41b746d8502912a7519d207)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_6477a0d923a1f3ec35609af64119de83 = L.circleMarker(\\n\",\n       \"                [24.9617, 118.6108],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_28fb2f0b038635f493bb3628999dda81 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_5d33a80a01910e49b074000ca19e8bf8 = $(`&lt;div id=&quot;html_5d33a80a01910e49b074000ca19e8bf8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6108             latitude:24.9617             pred_result:80.73583984375             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_28fb2f0b038635f493bb3628999dda81.setContent(html_5d33a80a01910e49b074000ca19e8bf8);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_6477a0d923a1f3ec35609af64119de83.bindPopup(popup_28fb2f0b038635f493bb3628999dda81)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_97e4435e9f6a90b6b75231e8578e231a = L.circleMarker(\\n\",\n       \"                [36.283, 120.008],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_7d1d31b383dea440bbabf861283df168 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_402891f2fc3f4b0d94e5effa8c7d6260 = $(`&lt;div id=&quot;html_402891f2fc3f4b0d94e5effa8c7d6260&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.008             latitude:36.283             pred_result:69.27792358398438             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_7d1d31b383dea440bbabf861283df168.setContent(html_402891f2fc3f4b0d94e5effa8c7d6260);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_97e4435e9f6a90b6b75231e8578e231a.bindPopup(popup_7d1d31b383dea440bbabf861283df168)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_ef9d6e1d65836fc209b7831b5aec991b = L.circleMarker(\\n\",\n       \"                [22.5811, 113.074],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffa100&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffa100&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_da011a808cabb6ef0e814e0d67130898 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f92dde05db66142d095917deb44f16bf = $(`&lt;div id=&quot;html_f92dde05db66142d095917deb44f16bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:113.074             latitude:22.5811             pred_result:64.93299102783203             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_da011a808cabb6ef0e814e0d67130898.setContent(html_f92dde05db66142d095917deb44f16bf);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_ef9d6e1d65836fc209b7831b5aec991b.bindPopup(popup_da011a808cabb6ef0e814e0d67130898)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_29dad1a61c5026f48d1ddcaef0d7a9da = L.circleMarker(\\n\",\n       \"                [29.8264, 106.424],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e5f200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#e5f200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_d0f6a248e712c9aa6c52921c0473daec = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_840da39c2e7f7485e6ceca73d8242919 = $(`&lt;div id=&quot;html_840da39c2e7f7485e6ceca73d8242919&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:106.424             latitude:29.8264             pred_result:53.761451721191406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_d0f6a248e712c9aa6c52921c0473daec.setContent(html_840da39c2e7f7485e6ceca73d8242919);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_29dad1a61c5026f48d1ddcaef0d7a9da.bindPopup(popup_d0f6a248e712c9aa6c52921c0473daec)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_9398a4613542b57babe2889e7ac3e9fd = L.circleMarker(\\n\",\n       \"                [43.8358, 126.5844],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_f2ef2d47c6e5f1716649a6221fd3c483 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_d085c263ea4ea9440fac630dfea2c215 = $(`&lt;div id=&quot;html_d085c263ea4ea9440fac630dfea2c215&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:126.5844             latitude:43.8358             pred_result:65.70260620117188             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_f2ef2d47c6e5f1716649a6221fd3c483.setContent(html_d085c263ea4ea9440fac630dfea2c215);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_9398a4613542b57babe2889e7ac3e9fd.bindPopup(popup_f2ef2d47c6e5f1716649a6221fd3c483)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_674cf31db8a9a38598207ae6e9116f49 = L.circleMarker(\\n\",\n       \"                [29.9919, 120.605],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffca00&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ffca00&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_69c910e10fb6b09ae53b4b81427993a1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f1657200de314927721ecb0d9f209919 = $(`&lt;div id=&quot;html_f1657200de314927721ecb0d9f209919&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:120.605             latitude:29.9919             pred_result:59.748512268066406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_69c910e10fb6b09ae53b4b81427993a1.setContent(html_f1657200de314927721ecb0d9f209919);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_674cf31db8a9a38598207ae6e9116f49.bindPopup(popup_69c910e10fb6b09ae53b4b81427993a1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_8174ce5e6241cf98c27ea7aa5f830560 = L.circleMarker(\\n\",\n       \"                [44.0114, 87.2997],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff0000&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_2f73c4c65091124b8112fdbd7ffecec1 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_99b16bddbfb6e7e05935b64ad94cf339 = $(`&lt;div id=&quot;html_99b16bddbfb6e7e05935b64ad94cf339&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:87.2997             latitude:44.0114             pred_result:95.50602722167969             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_2f73c4c65091124b8112fdbd7ffecec1.setContent(html_99b16bddbfb6e7e05935b64ad94cf339);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_8174ce5e6241cf98c27ea7aa5f830560.bindPopup(popup_2f73c4c65091124b8112fdbd7ffecec1)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_575d1d3de285839235fff21b71e0118d = L.circleMarker(\\n\",\n       \"                [35.5102, 102.0199],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff7900&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#ff7900&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_e41a56edd214561617304be1a29869a5 = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_f6891d03ee53cfe05b1feb12ec3d89db = $(`&lt;div id=&quot;html_f6891d03ee53cfe05b1feb12ec3d89db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:102.0199             latitude:35.5102             pred_result:68.10809326171875             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_e41a56edd214561617304be1a29869a5.setContent(html_f6891d03ee53cfe05b1feb12ec3d89db);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_575d1d3de285839235fff21b71e0118d.bindPopup(popup_e41a56edd214561617304be1a29869a5)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"            var circle_marker_1ee1894de210c0e113dc5d8614601912 = L.circleMarker(\\n\",\n       \"                [31.7133, 118.6439],\\n\",\n       \"                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fff200&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#fff200&quot;, &quot;fillOpacity&quot;: 1, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 7, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\\n\",\n       \"            ).addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"        var popup_8ec530d459b3718b0c861850006b25fc = L.popup({&quot;maxWidth&quot;: &quot;100%&quot;});\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"            \\n\",\n       \"                var html_58566bf050cc0170a24d809c0c617ffe = $(`&lt;div id=&quot;html_58566bf050cc0170a24d809c0c617ffe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;             longitude:118.6439             latitude:31.7133             pred_result:54.897438049316406             &lt;/div&gt;`)[0];\\n\",\n       \"                popup_8ec530d459b3718b0c861850006b25fc.setContent(html_58566bf050cc0170a24d809c0c617ffe);\\n\",\n       \"            \\n\",\n       \"        \\n\",\n       \"\\n\",\n       \"        circle_marker_1ee1894de210c0e113dc5d8614601912.bindPopup(popup_8ec530d459b3718b0c861850006b25fc)\\n\",\n       \"        ;\\n\",\n       \"\\n\",\n       \"        \\n\",\n       \"    \\n\",\n       \"    \\n\",\n       \"    var color_map_47163c92b9447daf580a5cccd3bbc16e = {};\\n\",\n       \"\\n\",\n       \"    \\n\",\n       \"    color_map_47163c92b9447daf580a5cccd3bbc16e.color = d3.scale.threshold()\\n\",\n       \"              .domain([4.0, 4.154308617234469, 4.3086172344689375, 4.462925851703407, 4.617234468937876, 4.771543086172345, 4.925851703406813, 5.080160320641283, 5.234468937875752, 5.38877755511022, 5.543086172344689, 5.697394789579159, 5.851703406813627, 6.006012024048096, 6.160320641282565, 6.314629258517034, 6.468937875751503, 6.623246492985972, 6.77755511022044, 6.93186372745491, 7.086172344689379, 7.240480961923847, 7.394789579158317, 7.5490981963927855, 7.703406813627255, 7.857715430861724, 8.012024048096192, 8.16633266533066, 8.32064128256513, 8.474949899799599, 8.629258517034067, 8.783567134268537, 8.937875751503006, 9.092184368737474, 9.246492985971944, 9.400801603206414, 9.55511022044088, 9.70941883767535, 9.86372745490982, 10.018036072144287, 10.172344689378757, 10.326653306613228, 10.480961923847694, 10.635270541082164, 10.789579158316634, 10.943887775551103, 11.098196392785571, 11.252505010020041, 11.40681362725451, 11.561122244488978, 11.715430861723448, 11.869739478957916, 12.024048096192384, 12.178356713426854, 12.332665330661323, 12.486973947895791, 12.641282565130261, 12.79559118236473, 12.949899799599198, 13.104208416833668, 13.258517034068136, 13.412825651302605, 13.567134268537075, 13.721442885771543, 13.875751503006011, 14.030060120240481, 14.18436873747495, 14.338677354709418, 14.492985971943888, 14.647294589178356, 14.801603206412826, 14.955911823647295, 15.110220440881763, 15.264529058116233, 15.418837675350701, 15.57314629258517, 15.72745490981964, 15.881763527054108, 16.036072144288575, 16.190380761523045, 16.344689378757515, 16.498997995991985, 16.653306613226455, 16.80761523046092, 16.961923847695388, 17.11623246492986, 17.27054108216433, 17.4248496993988, 17.57915831663327, 17.733466933867735, 17.887775551102205, 18.04208416833667, 18.196392785571142, 18.350701402805612, 18.505010020040082, 18.65931863727455, 18.81362725450902, 18.967935871743485, 19.122244488977955, 19.276553106212425, 19.430861723446895, 19.585170340681362, 19.739478957915832, 19.8937875751503, 20.04809619238477, 20.20240480961924, 20.35671342685371, 20.511022044088175, 20.665330661322646, 20.819639278557116, 20.973947895791582, 21.128256513026052, 21.282565130260522, 21.43687374749499, 21.59118236472946, 21.74549098196393, 21.899799599198396, 22.054108216432866, 22.208416833667336, 22.362725450901802, 22.517034068136272, 22.671342685370742, 22.82565130260521, 22.97995991983968, 23.13426853707415, 23.288577154308616, 23.442885771543086, 23.597194388777556, 23.751503006012022, 23.905811623246493, 24.060120240480963, 24.21442885771543, 24.3687374749499, 24.52304609218437, 24.677354709418836, 24.831663326653306, 24.985971943887776, 25.140280561122246, 25.294589178356713, 25.448897795591183, 25.603206412825653, 25.75751503006012, 25.91182364729459, 26.06613226452906, 26.220440881763526, 26.374749498997996, 26.529058116232466, 26.683366733466933, 26.837675350701403, 26.991983967935873, 27.14629258517034, 27.30060120240481, 27.45490981963928, 27.609218436873746, 27.763527054108216, 27.917835671342687, 28.072144288577153, 28.226452905811623, 28.380761523046093, 28.53507014028056, 28.68937875751503, 28.8436873747495, 28.997995991983966, 29.152304609218437, 29.306613226452907, 29.460921843687373, 29.615230460921843, 29.769539078156313, 29.92384769539078, 30.07815631262525, 30.23246492985972, 30.386773547094187, 30.541082164328657, 30.695390781563127, 30.849699398797597, 31.004008016032063, 31.158316633266534, 31.312625250501004, 31.46693386773547, 31.62124248496994, 31.77555110220441, 31.929859719438877, 32.08416833667334, 32.23847695390782, 32.392785571142284, 32.547094188376754, 32.701402805611224, 32.85571142284569, 33.010020040080164, 33.16432865731463, 33.3186372745491, 33.47294589178357, 33.62725450901804, 33.78156312625251, 33.93587174348697, 34.09018036072145, 34.24448897795591, 34.39879759519038, 34.55310621242485, 34.707414829659314, 34.86172344689379, 35.016032064128254, 35.170340681362724, 35.324649298597194, 35.478957915831664, 35.633266533066134, 35.7875751503006, 35.941883767535074, 36.09619238476954, 36.25050100200401, 36.40480961923848, 36.55911823647295, 36.71342685370742, 36.86773547094188, 37.02204408817635, 37.17635270541082, 37.33066132264529, 37.48496993987976, 37.63927855711423, 37.793587174348694, 37.947895791583164, 38.102204408817634, 38.256513026052104, 38.410821643286575, 38.565130260521045, 38.71943887775551, 38.87374749498998, 39.02805611222445, 39.18236472945892, 39.33667334669339, 39.49098196392786, 39.64529058116233, 39.79959919839679, 39.95390781563126, 40.10821643286573, 40.2625250501002, 40.41683366733467, 40.57114228456914, 40.725450901803605, 40.879759519038075, 41.034068136272545, 41.188376753507015, 41.342685370741485, 41.496993987975955, 41.65130260521042, 41.80561122244489, 41.95991983967936, 42.11422845691383, 42.2685370741483, 42.42284569138277, 42.57715430861723, 42.7314629258517, 42.88577154308617, 43.04008016032064, 43.19438877755511, 43.34869739478958, 43.503006012024045, 43.657314629258515, 43.811623246492985, 43.965931863727455, 44.120240480961925, 44.274549098196395, 44.42885771543086, 44.58316633266533, 44.7374749498998, 44.89178356713427, 45.04609218436874, 45.20040080160321, 45.35470941883767, 45.50901803607214, 45.66332665330661, 45.81763527054108, 45.97194388777555, 46.12625250501002, 46.28056112224449, 46.434869739478955, 46.589178356713425, 46.743486973947896, 46.897795591182366, 47.052104208416836, 47.206412825651306, 47.36072144288577, 47.51503006012024, 47.66933867735471, 47.82364729458918, 47.97795591182365, 48.13226452905812, 48.28657314629258, 48.44088176352705, 48.59519038076152, 48.74949899799599, 48.90380761523046, 49.05811623246493, 49.212424849699396, 49.366733466933866, 49.521042084168336, 49.675350701402806, 49.829659318637276, 49.983967935871746, 50.13827655310621, 50.29258517034068, 50.44689378757515, 50.60120240480962, 50.75551102204409, 50.90981963927856, 51.06412825651302, 51.21843687374749, 51.37274549098196, 51.52705410821643, 51.6813627254509, 51.83567134268537, 51.98997995991984, 52.144288577154306, 52.298597194388776, 52.452905811623246, 52.607214428857716, 52.76152304609219, 52.91583166332666, 53.07014028056112, 53.22444889779559, 53.37875751503006, 53.53306613226453, 53.687374749499, 53.84168336673347, 53.99599198396793, 54.1503006012024, 54.30460921843687, 54.45891783567134, 54.61322645290581, 54.76753507014028, 54.921843687374746, 55.07615230460922, 55.23046092184369, 55.38476953907816, 55.53907815631263, 55.6933867735471, 55.84769539078156, 56.00200400801603, 56.1563126252505, 56.31062124248497, 56.46492985971944, 56.61923847695391, 56.77354709418837, 56.92785571142284, 57.08216432865731, 57.236472945891784, 57.390781563126254, 57.545090180360724, 57.699398797595194, 57.85370741482966, 58.00801603206413, 58.1623246492986, 58.31663326653307, 58.47094188376754, 58.62525050100201, 58.77955911823647, 58.93386773547094, 59.08817635270541, 59.24248496993988, 59.39679358717435, 59.55110220440882, 59.705410821643284, 59.859719438877754, 60.014028056112224, 60.168336673346694, 60.322645290581164, 60.476953907815634, 60.6312625250501, 60.78557114228457, 60.93987975951904, 61.09418837675351, 61.24849699398798, 61.40280561122245, 61.55711422845691, 61.71142284569138, 61.86573146292585, 62.02004008016032, 62.17434869739479, 62.32865731462926, 62.482965931863724, 62.637274549098194, 62.791583166332664, 62.945891783567134, 63.100200400801604, 63.254509018036075, 63.408817635270545, 63.56312625250501, 63.71743486973948, 63.87174348697395, 64.02605210420842, 64.1803607214429, 64.33466933867736, 64.48897795591182, 64.6432865731463, 64.79759519038076, 64.95190380761522, 65.1062124248497, 65.26052104208418, 65.41482965931863, 65.5691382765531, 65.72344689378758, 65.87775551102204, 66.03206412825651, 66.18637274549098, 66.34068136272545, 66.49498997995991, 66.64929859719439, 66.80360721442887, 66.95791583166333, 67.11222444889779, 67.26653306613227, 67.42084168336673, 67.5751503006012, 67.72945891783567, 67.88376753507015, 68.03807615230461, 68.19238476953907, 68.34669338677355, 68.50100200400801, 68.65531062124248, 68.80961923847696, 68.96392785571142, 69.1182364729459, 69.27254509018036, 69.42685370741484, 69.5811623246493, 69.73547094188376, 69.88977955911824, 70.0440881763527, 70.19839679358718, 70.35270541082164, 70.50701402805612, 70.66132264529058, 70.81563126252505, 70.96993987975952, 71.12424849699399, 71.27855711422846, 71.43286573146293, 71.58717434869739, 71.74148296593187, 71.89579158316633, 72.0501002004008, 72.20440881763527, 72.35871743486975, 72.51302605210421, 72.66733466933867, 72.82164328657315, 72.97595190380761, 73.13026052104209, 73.28456913827655, 73.43887775551102, 73.59318637274549, 73.74749498997996, 73.90180360721443, 74.0561122244489, 74.21042084168337, 74.36472945891784, 74.5190380761523, 74.67334669338678, 74.82765531062124, 74.98196392785572, 75.13627254509018, 75.29058116232466, 75.44488977955912, 75.59919839679358, 75.75350701402806, 75.90781563126252, 76.062124248497, 76.21643286573146, 76.37074148296593, 76.5250501002004, 76.67935871743487, 76.83366733466934, 76.9879759519038, 77.14228456913828, 77.29659318637275, 77.45090180360721, 77.60521042084169, 77.75951903807615, 77.91382765531063, 78.06813627254509, 78.22244488977955, 78.37675350701403, 78.53106212424849, 78.68537074148297, 78.83967935871743, 78.99398797595191, 79.14829659318637, 79.30260521042084, 79.45691382765531, 79.61122244488978, 79.76553106212425, 79.91983967935872, 80.07414829659318, 80.22845691382766, 80.38276553106212, 80.5370741482966, 80.69138276553106, 80.84569138276554, 81.0])\\n\",\n       \"              .range([&#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0000ffff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0014d7ff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#0028afff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#003c86ff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#00515eff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#006535ff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#00790dff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#1a8d00ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#43a200ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#6bb600ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#94ca00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#bcde00ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#e5f200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\\n\",\n       \"    \\n\",\n       \"\\n\",\n       \"    color_map_47163c92b9447daf580a5cccd3bbc16e.x = d3.scale.linear()\\n\",\n       \"              .domain([4.0, 81.0])\\n\",\n       \"              .range([0, 450 - 50]);\\n\",\n       \"\\n\",\n       \"    color_map_47163c92b9447daf580a5cccd3bbc16e.legend = L.control({position: &#x27;topright&#x27;});\\n\",\n       \"    color_map_47163c92b9447daf580a5cccd3bbc16e.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\\n\",\n       \"    color_map_47163c92b9447daf580a5cccd3bbc16e.legend.addTo(map_7917df71d06dd74586ec2156037beea1);\\n\",\n       \"\\n\",\n       \"    color_map_47163c92b9447daf580a5cccd3bbc16e.xAxis = d3.svg.axis()\\n\",\n       \"        .scale(color_map_47163c92b9447daf580a5cccd3bbc16e.x)\\n\",\n       \"        .orient(&quot;top&quot;)\\n\",\n       \"        .tickSize(1)\\n\",\n       \"        .tickValues([4.0, &#x27;&#x27;, &#x27;&#x27;, 15.55, &#x27;&#x27;, &#x27;&#x27;, 27.1, &#x27;&#x27;, &#x27;&#x27;, 38.65, &#x27;&#x27;, &#x27;&#x27;, 50.2, &#x27;&#x27;, &#x27;&#x27;, 61.75, &#x27;&#x27;, &#x27;&#x27;, 73.3, &#x27;&#x27;, &#x27;&#x27;]);\\n\",\n       \"\\n\",\n       \"    color_map_47163c92b9447daf580a5cccd3bbc16e.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\\n\",\n       \"        .attr(&quot;id&quot;, &#x27;legend&#x27;)\\n\",\n       \"        .attr(&quot;width&quot;, 450)\\n\",\n       \"        .attr(&quot;height&quot;, 40);\\n\",\n       \"\\n\",\n       \"    color_map_47163c92b9447daf580a5cccd3bbc16e.g = color_map_47163c92b9447daf580a5cccd3bbc16e.svg.append(&quot;g&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;key&quot;)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\\n\",\n       \"\\n\",\n       \"    color_map_47163c92b9447daf580a5cccd3bbc16e.g.selectAll(&quot;rect&quot;)\\n\",\n       \"        .data(color_map_47163c92b9447daf580a5cccd3bbc16e.color.range().map(function(d, i) {\\n\",\n       \"          return {\\n\",\n       \"            x0: i ? color_map_47163c92b9447daf580a5cccd3bbc16e.x(color_map_47163c92b9447daf580a5cccd3bbc16e.color.domain()[i - 1]) : color_map_47163c92b9447daf580a5cccd3bbc16e.x.range()[0],\\n\",\n       \"            x1: i &lt; color_map_47163c92b9447daf580a5cccd3bbc16e.color.domain().length ? color_map_47163c92b9447daf580a5cccd3bbc16e.x(color_map_47163c92b9447daf580a5cccd3bbc16e.color.domain()[i]) : color_map_47163c92b9447daf580a5cccd3bbc16e.x.range()[1],\\n\",\n       \"            z: d\\n\",\n       \"          };\\n\",\n       \"        }))\\n\",\n       \"      .enter().append(&quot;rect&quot;)\\n\",\n       \"        .attr(&quot;height&quot;, 40 - 30)\\n\",\n       \"        .attr(&quot;x&quot;, function(d) { return d.x0; })\\n\",\n       \"        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\\n\",\n       \"        .style(&quot;fill&quot;, function(d) { return d.z; });\\n\",\n       \"\\n\",\n       \"    color_map_47163c92b9447daf580a5cccd3bbc16e.g.call(color_map_47163c92b9447daf580a5cccd3bbc16e.xAxis).append(&quot;text&quot;)\\n\",\n       \"        .attr(&quot;class&quot;, &quot;caption&quot;)\\n\",\n       \"        .attr(&quot;y&quot;, 21)\\n\",\n       \"        .attr(&quot;fill&quot;, &quot;black&quot;)\\n\",\n       \"        .text(&quot;&quot;);\\n\",\n       \"&lt;/script&gt;\\n\",\n       \"&lt;/html&gt;\\\" style=\\\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\\\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>\"\n      ],\n      \"text/plain\": [\n       \"<folium.folium.Map at 0x13b9d9ecb50>\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 验证集预测\\n\",\n    \"valid_pred_dst = datasets.init_predict_dataset(data=val_dataset.dataframe,\\n\",\n    \"                                               train_dataset=train_dataset,\\n\",\n    \"                                               x_column=[\\n\",\n    \"                                                   'dem', 'w10', 'd10', 't2m', 'aod_sat', 'tp'],\\n\",\n    \"                                               spatial_column=['lng', 'lat'])\\n\",\n    \"valid_pred_res = gnnwr.predict(valid_pred_dst)\\n\",\n    \"visualizer.dot_map(data=valid_pred_res, lon_column='lng', lat_column='lat',\\n\",\n    \"                   y_column='pred_result', colors=['blue', 'green', 'yellow', 'red'], vmin=4, vmax=81)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"GNNWR\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.13.7\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 1\n}\n"
  },
  {
    "path": "demo/demo_gtnnwr_en_US.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"BAEE51CAC7804597B5D0E06FB209A34B\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"#  GTNNWR Case--spatial and temporal distribution of key nutrients in coastal waters\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 1 Case Introduction \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"###  1.1 Case Introduction \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"**A spatiotemporal-intelligent method for fine-scale retrieval of DSi in coastal seas**\\n\",\n    \"\\n\",\n    \"This case shows a spatiotemporally weighted intelligent method acquired high-resolution and long-term distributions of coastal dissolved silicate (DSi). Fine-scale DSi changes and influences driven by biological and physical factors were observed and revealed in coastal seas.  \\n\",\n    \"\\n\",\n    \"The migration of dissolved silicate (DSi) from land to coastal environments is an important component of the global biogeochemical cycle. Due to the strong land-ocean interaction in coastal waters, the spatial distribution of coastal DSi exhibits irregular characteristics (influenced by land input and ocean terrain), and the time changes rapidly with brief periodic fluctuations (influenced by biological effects and ocean currents). However, due to the immaturity of spatiotemporal modeling and the low resolution of data sampling, current research on coastal DSi typically depicts its rough changes with spatial and seasonal temporal resolutions of hundreds of kilometers. Therefore, this project will combine advanced spatiotemporal analysis models and high-resolution datasets to analyze changes in the distribution of offshore DSi at higher spatiotemporal resolutions.\\n\",\n    \"\\n\",\n    \"> [Qi, J., Du, Z., Wu, S., Chen, Y., & Wang, Y. (2023). A spatiotemporally weighted intelligent method for exploring fine-scale distributions of surface dissolved silicate in coastal seas. Science of The Total Environment , 886, 163981.  ](https://doi.org/10.1016/j.scitotenv.2023.163981)  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.2 Data used\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The DSi dataset of Zhejiang offshore surface from 2010 to 2018 (obtained by matching the MODIS remote sensing dataset with the dissolved silicate site dataset on the offshore surface).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.3 Case Process \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- Dependency Library Installation \\n\",\n    \"- Dataset Import \\n\",\n    \"- Model Settings \\n\",\n    \"- Model Training \\n\",\n    \"- Model Result Output\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"514BEF4DF7EF4B97A32C6F0390ADAB66\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 1.4 Schematic diagram of the research area\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"![Image Name](https://mydde.deep-time.org/s3/static-files/upload/upload/1695121607986_1.jpg)  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"0119234230D34F4A8313DDD05CFA92F3\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 2 Preparations\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Import Libraries\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"id\": \"F6860F13776147E39D652FB840CEB1EC\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from gnnwr.models import GTNNWR\\n\",\n    \"from gnnwr.datasets import init_dataset\\n\",\n    \"import numpy as np\\n\",\n    \"import pandas as pd\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 3 Model Training\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"0F51D94C0AAD452284A00ECC3CBE1529\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.1 Dataset Import\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>refl_b01</th>\\n\",\n       \"      <th>refl_b02</th>\\n\",\n       \"      <th>refl_b03</th>\\n\",\n       \"      <th>refl_b04</th>\\n\",\n       \"      <th>refl_b05</th>\\n\",\n       \"      <th>refl_b07</th>\\n\",\n       \"      <th>proj_x</th>\\n\",\n       \"      <th>proj_y</th>\\n\",\n       \"      <th>day</th>\\n\",\n       \"      <th>SiO3</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1895</td>\\n\",\n       \"      <td>1251</td>\\n\",\n       \"      <td>1737</td>\\n\",\n       \"      <td>1872</td>\\n\",\n       \"      <td>543</td>\\n\",\n       \"      <td>280</td>\\n\",\n       \"      <td>736685.4179</td>\\n\",\n       \"      <td>3314205.295</td>\\n\",\n       \"      <td>113</td>\\n\",\n       \"      <td>1.049</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>1621</td>\\n\",\n       \"      <td>1066</td>\\n\",\n       \"      <td>1435</td>\\n\",\n       \"      <td>1665</td>\\n\",\n       \"      <td>757</td>\\n\",\n       \"      <td>511</td>\\n\",\n       \"      <td>736685.4179</td>\\n\",\n       \"      <td>3314205.295</td>\\n\",\n       \"      <td>121</td>\\n\",\n       \"      <td>1.209</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>1587</td>\\n\",\n       \"      <td>1141</td>\\n\",\n       \"      <td>1807</td>\\n\",\n       \"      <td>1864</td>\\n\",\n       \"      <td>1211</td>\\n\",\n       \"      <td>1024</td>\\n\",\n       \"      <td>736685.4179</td>\\n\",\n       \"      <td>3314205.295</td>\\n\",\n       \"      <td>152</td>\\n\",\n       \"      <td>1.102</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>1121</td>\\n\",\n       \"      <td>1012</td>\\n\",\n       \"      <td>1411</td>\\n\",\n       \"      <td>1324</td>\\n\",\n       \"      <td>711</td>\\n\",\n       \"      <td>485</td>\\n\",\n       \"      <td>768193.4945</td>\\n\",\n       \"      <td>3402138.581</td>\\n\",\n       \"      <td>168</td>\\n\",\n       \"      <td>0.945</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>913</td>\\n\",\n       \"      <td>203</td>\\n\",\n       \"      <td>840</td>\\n\",\n       \"      <td>1035</td>\\n\",\n       \"      <td>114</td>\\n\",\n       \"      <td>63</td>\\n\",\n       \"      <td>736685.4179</td>\\n\",\n       \"      <td>3314205.295</td>\\n\",\n       \"      <td>200</td>\\n\",\n       \"      <td>1.350</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   refl_b01  refl_b02  refl_b03  refl_b04  refl_b05  refl_b07       proj_x  \\\\\\n\",\n       \"0      1895      1251      1737      1872       543       280  736685.4179   \\n\",\n       \"1      1621      1066      1435      1665       757       511  736685.4179   \\n\",\n       \"2      1587      1141      1807      1864      1211      1024  736685.4179   \\n\",\n       \"3      1121      1012      1411      1324       711       485  768193.4945   \\n\",\n       \"4       913       203       840      1035       114        63  736685.4179   \\n\",\n       \"\\n\",\n       \"        proj_y  day   SiO3  \\n\",\n       \"0  3314205.295  113  1.049  \\n\",\n       \"1  3314205.295  121  1.209  \\n\",\n       \"2  3314205.295  152  1.102  \\n\",\n       \"3  3402138.581  168  0.945  \\n\",\n       \"4  3314205.295  200  1.350  \"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"data = pd.read_csv('../data/demo_data_gtnnwr.csv')\\n\",\n    \"data.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Through the `init_dataset()` function, users can set input data, test set size, validation set size, independent variable, dependent variable, spatial attribute, time attribute, numbered column, random seed, and batch size.\\n\",\n    \"\\n\",\n    \"The initialized dataset can be saved using the `save()` method and the read method can be used to `read()` the saved results.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"id\": \"12F98BCE23BE450F853FAA717D4C5EDD\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"scrolled\": true,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"data[\\\"id\\\"] = np.arange(len(data))\\n\",\n    \"train_dataset, val_dataset, test_dataset = init_dataset(data=data,\\n\",\n    \"                                                        test_ratio=0.15,\\n\",\n    \"                                                        valid_ratio=0.1,\\n\",\n    \"                                                        x_column=['refl_b01', 'refl_b02',\\n\",\n    \"                                                                  'refl_b03', 'refl_b04', 'refl_b05',\\n\",\n    \"                                                                  'refl_b07'],\\n\",\n    \"                                                        y_column=['SiO3'],\\n\",\n    \"                                                        spatial_column=[\\n\",\n    \"                                                            'proj_x', 'proj_y'],\\n\",\n    \"                                                        temp_column=['day'],\\n\",\n    \"                                                        id_column=['id'],\\n\",\n    \"                                                        use_model=\\\"gtnnwr\\\",\\n\",\n    \"                                                        sample_seed=48,\\n\",\n    \"                                                        batch_size=1024)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"A463A5C07EF343F48B6C981981E9591D\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.2 Model Settings  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The model accepts parameters such as training set, validation set, test set, hidden layer, and optimizer, and can set network structure, optimizer type, and learning rate adjustment method.\\n\",\n    \"\\n\",\n    \"The `add_graph()` function can be used to save the graph structure (chart) of the model, which can be viewed in Tensorboard.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"id\": \"9B5FA0F3855D493C8E8C3788C1BA2182\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"scrolled\": true,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Add Graph Successfully\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"optimizer_params = {\\n\",\n    \"    \\\"scheduler\\\": \\\"MultiStepLR\\\",\\n\",\n    \"    \\\"scheduler_milestones\\\": [1000, 2000, 3000, 4000],\\n\",\n    \"    \\\"scheduler_gamma\\\": 0.8,\\n\",\n    \"}\\n\",\n    \"gtnnwr = GTNNWR(train_dataset, val_dataset, test_dataset, [[3], [512, 256, 64]], drop_out=0.4, optimizer='Adadelta', optimizer_params=optimizer_params,\\n\",\n    \"                write_path=\\\"../demo_result/gtnnwr/runs/\\\",  # 这里需要修改\\n\",\n    \"                model_save_path=\\\"../demo_result/gtnnwr/models/\\\",\\n\",\n    \"                log_path=\\\"../demo_result/gtnnwr/logs/\\\",\\n\",\n    \"                model_name=\\\"GTNNWR_DSi\\\")\\n\",\n    \"gtnnwr.add_graph()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"CB0DB82917B64462A619B7FD34CDBDB9\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.3 Model Training   \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `run()` function is used to train the model.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"id\": \"BC958EB768D74A1295CA0428352BF62C\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"scrolled\": true,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"100%|██████████| 200/200 [01:06<00:00,  3.01it/s, Train Loss=0.652585, Train R2=-0.133355, Train AIC=5353.5864, Valid Loss=0.464, Valid R2=0.13, Best Valid R2=0.141, Learning Rate=0.1]    \\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"gtnnwr.run(200, 50)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"EE1A39A77DA74A2FB2ADFEF9916D1098\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.4 Model Result Output\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `result()` can obtain the basic information of the optimal model and the running results of the model on the test set\\n\",\n    \"\\n\",\n    \"Using `reg_result()` can save the running results of the optimal model on the entire dataset, including the spatiotemporal non-stationary weights calculated by the model.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"2C3D60C6F2A547369F386B026EB805D1\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------Model Information-----------------\\n\",\n      \"Model Name:           | GTNNWR_DSi\\n\",\n      \"independent variable: | ['refl_b01', 'refl_b02', 'refl_b03', 'refl_b04', 'refl_b05', 'refl_b07']\\n\",\n      \"dependent variable:   | ['SiO3']\\n\",\n      \"\\n\",\n      \"OLS coefficients: \\n\",\n      \"x0: 7.70582\\n\",\n      \"x1: 0.80789\\n\",\n      \"x2: 0.35238\\n\",\n      \"x3: -7.27008\\n\",\n      \"x4: 2.71207\\n\",\n      \"x5: -2.70717\\n\",\n      \"Intercept: 1.14341\\n\",\n      \"\\n\",\n      \"--------------------Result Information----------------\\n\",\n      \"Test Loss: |                   0.46818\\n\",\n      \"Test R2  : |                   0.14439\\n\",\n      \"Train R2 : |                   0.15684\\n\",\n      \"Valid R2 : |                   0.14058\\n\",\n      \"RMSE: |                        0.68424\\n\",\n      \"AIC:  |                      910.35614\\n\",\n      \"AICc: |                      916.41449\\n\",\n      \"F1:   |                        0.73564\\n\",\n      \"F2:   |                       23.04567\\n\",\n      \"f3_param_0: |                  3.03797\\n\",\n      \"f3_param_1: |                  6.53450\\n\",\n      \"f3_param_2: |                  0.88140\\n\",\n      \"f3_param_3: |                  0.05762\\n\",\n      \"f3_param_4: |                  2.91409\\n\",\n      \"f3_param_5: |                 25.02167\\n\",\n      \"f3_param_6: |                 30.42470\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(gtnnwr.result())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"id\": \"798AAEF567B84FCA9E9E4AE4FF75F54D\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>coef_refl_b01</th>\\n\",\n       \"      <th>coef_refl_b02</th>\\n\",\n       \"      <th>coef_refl_b03</th>\\n\",\n       \"      <th>coef_refl_b04</th>\\n\",\n       \"      <th>coef_refl_b05</th>\\n\",\n       \"      <th>coef_refl_b07</th>\\n\",\n       \"      <th>bias</th>\\n\",\n       \"      <th>Pred_SiO3</th>\\n\",\n       \"      <th>id</th>\\n\",\n       \"      <th>dataset_belong</th>\\n\",\n       \"      <th>denormalized_pred_result</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>-1.429688</td>\\n\",\n       \"      <td>-0.086135</td>\\n\",\n       \"      <td>-0.101598</td>\\n\",\n       \"      <td>2.152304</td>\\n\",\n       \"      <td>0.256318</td>\\n\",\n       \"      <td>-0.192829</td>\\n\",\n       \"      <td>1.271666</td>\\n\",\n       \"      <td>1.371257</td>\\n\",\n       \"      <td>2741</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>1.371257</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>4.866271</td>\\n\",\n       \"      <td>-0.253867</td>\\n\",\n       \"      <td>-0.236898</td>\\n\",\n       \"      <td>-0.758853</td>\\n\",\n       \"      <td>1.303949</td>\\n\",\n       \"      <td>-1.271174</td>\\n\",\n       \"      <td>0.621021</td>\\n\",\n       \"      <td>0.947970</td>\\n\",\n       \"      <td>2261</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>0.947970</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>2.527644</td>\\n\",\n       \"      <td>0.376539</td>\\n\",\n       \"      <td>-0.327981</td>\\n\",\n       \"      <td>1.173086</td>\\n\",\n       \"      <td>2.156118</td>\\n\",\n       \"      <td>-2.256591</td>\\n\",\n       \"      <td>0.378024</td>\\n\",\n       \"      <td>0.912017</td>\\n\",\n       \"      <td>385</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>0.912017</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>1.459470</td>\\n\",\n       \"      <td>-0.740550</td>\\n\",\n       \"      <td>0.159162</td>\\n\",\n       \"      <td>2.775505</td>\\n\",\n       \"      <td>-1.814695</td>\\n\",\n       \"      <td>-1.210147</td>\\n\",\n       \"      <td>0.995256</td>\\n\",\n       \"      <td>1.468572</td>\\n\",\n       \"      <td>274</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>1.468572</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>1.331959</td>\\n\",\n       \"      <td>0.362492</td>\\n\",\n       \"      <td>-0.310786</td>\\n\",\n       \"      <td>1.335831</td>\\n\",\n       \"      <td>2.348815</td>\\n\",\n       \"      <td>-1.279837</td>\\n\",\n       \"      <td>0.581324</td>\\n\",\n       \"      <td>0.881741</td>\\n\",\n       \"      <td>1005</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>0.881741</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2896</th>\\n\",\n       \"      <td>-1.411356</td>\\n\",\n       \"      <td>0.193577</td>\\n\",\n       \"      <td>-0.174687</td>\\n\",\n       \"      <td>1.557576</td>\\n\",\n       \"      <td>1.954204</td>\\n\",\n       \"      <td>-0.494099</td>\\n\",\n       \"      <td>0.996814</td>\\n\",\n       \"      <td>1.077762</td>\\n\",\n       \"      <td>1744</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>1.077762</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2897</th>\\n\",\n       \"      <td>-2.448091</td>\\n\",\n       \"      <td>-0.269120</td>\\n\",\n       \"      <td>0.058181</td>\\n\",\n       \"      <td>3.396969</td>\\n\",\n       \"      <td>-0.276805</td>\\n\",\n       \"      <td>-0.714721</td>\\n\",\n       \"      <td>1.217456</td>\\n\",\n       \"      <td>1.115783</td>\\n\",\n       \"      <td>1724</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>1.115783</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2898</th>\\n\",\n       \"      <td>4.806854</td>\\n\",\n       \"      <td>-0.986463</td>\\n\",\n       \"      <td>0.182533</td>\\n\",\n       \"      <td>1.059915</td>\\n\",\n       \"      <td>-2.882060</td>\\n\",\n       \"      <td>-1.336075</td>\\n\",\n       \"      <td>0.753898</td>\\n\",\n       \"      <td>0.918874</td>\\n\",\n       \"      <td>137</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>0.918874</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2899</th>\\n\",\n       \"      <td>1.603706</td>\\n\",\n       \"      <td>-0.583407</td>\\n\",\n       \"      <td>0.036465</td>\\n\",\n       \"      <td>3.030001</td>\\n\",\n       \"      <td>-1.806170</td>\\n\",\n       \"      <td>-0.738664</td>\\n\",\n       \"      <td>0.739323</td>\\n\",\n       \"      <td>1.470995</td>\\n\",\n       \"      <td>1034</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>1.470995</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2900</th>\\n\",\n       \"      <td>-1.334334</td>\\n\",\n       \"      <td>0.163778</td>\\n\",\n       \"      <td>-0.171619</td>\\n\",\n       \"      <td>1.565137</td>\\n\",\n       \"      <td>1.925093</td>\\n\",\n       \"      <td>-0.520595</td>\\n\",\n       \"      <td>0.969374</td>\\n\",\n       \"      <td>0.988347</td>\\n\",\n       \"      <td>601</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>0.988347</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>2901 rows × 11 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"      coef_refl_b01  coef_refl_b02  coef_refl_b03  coef_refl_b04  \\\\\\n\",\n       \"0         -1.429688      -0.086135      -0.101598       2.152304   \\n\",\n       \"1          4.866271      -0.253867      -0.236898      -0.758853   \\n\",\n       \"2          2.527644       0.376539      -0.327981       1.173086   \\n\",\n       \"3          1.459470      -0.740550       0.159162       2.775505   \\n\",\n       \"4          1.331959       0.362492      -0.310786       1.335831   \\n\",\n       \"...             ...            ...            ...            ...   \\n\",\n       \"2896      -1.411356       0.193577      -0.174687       1.557576   \\n\",\n       \"2897      -2.448091      -0.269120       0.058181       3.396969   \\n\",\n       \"2898       4.806854      -0.986463       0.182533       1.059915   \\n\",\n       \"2899       1.603706      -0.583407       0.036465       3.030001   \\n\",\n       \"2900      -1.334334       0.163778      -0.171619       1.565137   \\n\",\n       \"\\n\",\n       \"      coef_refl_b05  coef_refl_b07      bias  Pred_SiO3    id dataset_belong  \\\\\\n\",\n       \"0          0.256318      -0.192829  1.271666   1.371257  2741          train   \\n\",\n       \"1          1.303949      -1.271174  0.621021   0.947970  2261          train   \\n\",\n       \"2          2.156118      -2.256591  0.378024   0.912017   385          train   \\n\",\n       \"3         -1.814695      -1.210147  0.995256   1.468572   274          train   \\n\",\n       \"4          2.348815      -1.279837  0.581324   0.881741  1005          train   \\n\",\n       \"...             ...            ...       ...        ...   ...            ...   \\n\",\n       \"2896       1.954204      -0.494099  0.996814   1.077762  1744           test   \\n\",\n       \"2897      -0.276805      -0.714721  1.217456   1.115783  1724           test   \\n\",\n       \"2898      -2.882060      -1.336075  0.753898   0.918874   137           test   \\n\",\n       \"2899      -1.806170      -0.738664  0.739323   1.470995  1034           test   \\n\",\n       \"2900       1.925093      -0.520595  0.969374   0.988347   601           test   \\n\",\n       \"\\n\",\n       \"      denormalized_pred_result  \\n\",\n       \"0                     1.371257  \\n\",\n       \"1                     0.947970  \\n\",\n       \"2                     0.912017  \\n\",\n       \"3                     1.468572  \\n\",\n       \"4                     0.881741  \\n\",\n       \"...                        ...  \\n\",\n       \"2896                  1.077762  \\n\",\n       \"2897                  1.115783  \\n\",\n       \"2898                  0.918874  \\n\",\n       \"2899                  1.470995  \\n\",\n       \"2900                  0.988347  \\n\",\n       \"\\n\",\n       \"[2901 rows x 11 columns]\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"result_data = gtnnwr.reg_result('../demo_result/gtnnwr/gtnnwr_result.csv')\\n\",\n    \"result_data\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"A0B15FE7E5C740C398DAF08A08F75E35\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.5 Analysis of model results\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The output results of the model can be imported and analyzed through drawing images and other methods.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"id\": \"E294572F0D624DF78C20B0BDC87B9B06\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"R2: 0.15417243068342024\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\",\n      \"text/plain\": [\n       \"<Figure size 640x480 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from sklearn.metrics import r2_score as r2\\n\",\n    \"result_data.sort_values(by='id', inplace=True)\\n\",\n    \"data.sort_values(by='id', inplace=True)\\n\",\n    \"print('R2:', r2(data['SiO3'], result_data['Pred_SiO3']))\\n\",\n    \"plt.scatter(data['SiO3'], result_data['Pred_SiO3'])\\n\",\n    \"plt.plot([i for i in range(9)], [i for i in range(9)], color='black')\\n\",\n    \"plt.xlabel('label')\\n\",\n    \"plt.ylabel('pred')\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"ana_data = pd.merge(data, result_data, on='id')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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vPNO6GJJ7SSp7+ysorZ56qmnwr+kHgmogImyc889N+wAo90XgRReZKabbrqOr6OFMe2/2InFZNfTTz+dvP/++8mIESM6LvPMM8+ERCUL+lkLqhC44TpXvnFUEphIrPzcTjvt1Ol7vPvuu+GoGLrW0CFkv/32C91oyt1zzz0h7DPJJJMkc845Z3LZZZeNd13OPvvscH14sR8wYEDy6KOPdvo8bc64XrwoEzracMMNw+8mz6aaaqpkiy22CBO73Najjz46DE7YFUhoiiAV91MjO64QkCEQM8MMM4Sku0EVSZKk9rOeqc2aJr2oH+eff/7k8MMPD49hukVSY9LFdI455giBFTaCsHOxkR1XCPpvu+22ySWXXGJQRZIkKSWsaaqznkk3TmVYb731wpoWdQu1DOsxQ4YMCWtddHK88847QxirUVhf4yQHjlslKGNQRWocwypqm6uuuipZbrnlko022ijZY489wr+8vfbaa8n5558fWmgRgKBbRQycvP7662EAxVnbAwcODB8jyLLqqqsmDzzwQFjUx5lnnhlekJh4yxrO2/voo4863uIxR7RpjoYOHdrpMieeeGLH5wj/EFThhZjADsfF8KJ92GGHdVzmrbfeCpehgw1hH4644YWWCcSIUARHLzGJSecbfg+cC/jJJ590XIZzxukyQhs2Akd0w9lggw2SIrWh23TTTUOnE4IrJ598cvLXv/41JHhpQ0dIiHbbfWlD9/nnn4f7dJpppgndXAgXSZIkqf2sZ2qzpskG6uy55pornPtO4J4jdKkTqQX5OIH8c845J2wO6Utw5e677w6tss8777xkk002aehtkCRJUu9Z01RnPZMdbOxl3YrAPetTbHJnDYUN3rPPPnv4d/To0eEEh95ifYdTIFhvJATz85//vKG3QSq8ktQGX3/9dWmppZYqHXnkkeH9O++8s7TtttuG9996663wsZVXXrn0m9/8pvSnP/2p4+suvfTS0mKLLVa65557Oj7273//u/S73/2uNNdcc4X3v/jii9Iqq6xS2n333cPPqcd///vfUlrtsccepTnmmKP07bffhvdXWGGF8LFaRo0aVfrBD35Q+vjjjzs+du6555amnHLKjvtj//33L80///ydvm7TTTctDRo0qOP9JZdcsrTLLrt0uo9mmGGG0rBhw8L7n376aWmiiSYqjRw5suMyL730EjOY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f/vb35LNN988mXLKKZOf/OQnofsHyetyzz77bLL88ssnk046aTgL88QTTxzv+owcOTKZZ555wmUWXHDBZNSoUZ0+X891yYvnnnsuFASTTDJJstNOOyXXX399Mt9881W97Mcff5xMO+20nT7G+3xckiRJyjNrmnSynpEkSZK6Zz2TXtY0UmeGVSQ13AknnJCce+65yVlnnZW89NJL4X1CJGeeeWbHZXj/jDPOCMfJjBs3Lpl88slD146vvvqq4zIEVV544YXkjjvuCEfR3HfffckOO+zQ8fnPPvssWX311ZNZZ501eeKJJ8JxNkcccURywQUXdFzmoYceSgYPHhyCLk899VTy61//Orw9//zzPboueTH33HMnTz/9dLidO++8czJkyJDkxRdfbPfVkiRJklLFmiadrGckSZKk7lnPpJc1jVShJEkNtvbaa5e23XbbTh/bYIMNSptvvnn4/2+//bY03XTTlU466aSOz3/66aelSSaZpDRixIjw/osvvkgbltJjjz3WcZnRo0eXJphggtIHH3wQ3j/nnHNKU089denrr7/uuMwBBxxQmnvuuTve32STTcL1KTdgwIDSjjvuWPd1ybNVVlmltMMOO1T93Mwzz1w69dRTO33ssMMOKy200EItunaSJElSe1jTZIP1jCRJkjQ+65nssKZR0dlZRVLDLbPMMsnYsWOTV199Nbz/zDPPJA888ECy5pprhvffeuutcJQMx+1EU001VTJgwIDk4YcfDu/zL0f/LL744h2X4fI/+MEPQleQeJmBAwcmE088ccdl6IjyyiuvJH//+987LlP+c+Jl4s+p57rk2bfffpt8/fXXVT+39NJLh99jObrc8HFJkiQpz6xpssF6RpIkSRqf9Ux2WNOo6CZs9xWQlD8HHnhgOKJnnnnmSX74wx+G8xGPPfbYcKwPCIdg2mmn7fR1vB8/x7+/+MUvOn1+wgknTKaZZppOl+nXr9943yN+buqppw7/dvdzursueXHQQQeFwNAss8ySfP7558nVV1+d3HPPPcltt90WPr/VVlslM844YzJs2LDw/h577JGssMIKycknn5ysvfbayTXXXJM8/vjjnY5ZkiRJkvLImiZ9rGckSZKk+ljPpJM1jTQ+wyqSGu66665LrrrqqhCGmH/++ZOnn3462XPPPZMZZpghGTJkiPd4m3zyySchkPLRRx+F7jELLbRQCKqsttpq4fPvvvtu6FxTnr7md3jIIYckBx98cNK/f//khhtuSBZYYAF/h5IkSco1a5r0sZ6RJEmS6mM9k07WNNL4DKtIarj99tsvJHc322yz8P6CCy6YvPPOO6FjB2GV6aabLnz8T3/6UzL99NN3fB3vL7LIIuH/uQwv3OW++eab5G9/+1vH1/MvX1Muvt/dZco/3911yYuLL764y8/TZaXSxhtvHN4kSZKkIrGmSR/rGUmSJKk+1jPpZE0jje/7LfSS1CBffPFFpw4d4Dggzt4DR/cQEhk7dmzH5zk2aNy4ccnSSy8d3uffTz/9NHniiSc6LnPXXXeF7zFgwICOy9x3333Jf/7zn47L3HHHHcncc88djgCKlyn/OfEy8efUc10kSZIkFYs1jSRJkqSssp6RlBklSWqwIUOGlGacccbSLbfcUnrrrbdKf/zjH0s/+9nPSvvvv3/HZY4//vjST37yk9KNN95YevbZZ0u/+tWvSv369St9+eWXHZdZY401Sosuumhp3LhxpQceeKDUv3//0uDBgzs+/+mnn5amnXba0pZbbll6/vnnS9dcc01psskmK51//vkdl3nwwQdLE044YWn48OGll156qXT44YeXJppootJzzz3Xo+siSZIkqTisaSRJkiRllfWMpKwwrCKp4T777LPSHnvsUZpllllKk046aWn22Wcv/e53vyt9/fXXHZf59ttvS4ceemgIm0wyySSlVVZZpfTKK690+j5//etfQzjlxz/+cWnKKacsbbPNNqXPP/+802WeeeaZ0nLLLRe+BwEZgieVrrvuutJcc81VmnjiiUvzzz9/6dZbb+30+XquiyRJkqTisKaRJEmSlFXWM5KyYgL+0+7uLpIkSZIkSZIkSZIkSSqGH7T7CkiSJEmSJEmSJEmSJKk4DKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZQyrSJIkSZIkSZIkSZIkqWUMq0iSJEmSJEmSJEmSJKllDKtIkiRJkiRJkiRJkiSpZSas94JfffVV8u9//7u510aSJKmGiSeeOJl00km9fyT1mjWNJElqJ2saSX1hPSNJkvJWz0xY7yCoX7/Zko8//lNDf7gkSVK9pptuuuStt94ysCKpV6xpJElSu1nTSOot6xlJkpTHeqausAodVQiqvPb2C8kUU/74uw+W4j//+5+y/+/4SKnWx0tVvrbi+3VcpvMlSv/7eOXP7Py11X9u7e9d+3Pff4/q37vr2/v9dyn71t+/3+kaVL9vurv91a9jjds93vWo8rnKn1d5G6tcj1qf+3a8j1f+zPE/Vvn+t7UeQ2U/p9TN+5XXo56fG9//tqvrPt73qv5zS6UJqlz3zl/zbdL5Mt///P99vOyLv634fvH7V/68jttd+X6V61T5Pcf/GbV/fuX7lT8v/qyq17HjIVvxPStud/wZ5R8b7/6vuOz3lyv7+RU/b7z3K++f8r+VWre78udX/C6rX7by53f+2+m4XLxA2Qe//x6lTpep9b2q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92Xa+Jj0vmyVCUqlUqllP02SJEmSJEmSJEmSJEmFVsjOKpIkSZIkSZIkSZIkSWoPwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWqZQodV3n777WS77bZL+vXrl/zoRz9K5phjjuTwww9P/v3vfydFcPbZZyezzTZbMumkkyYDBgxIHn300aRohg0bliyxxBLJFFNMkfziF79Ifv3rXyevvPJKu69WKhx//PHJBBNMkOy5555JEX3wwQfJFltskfz0pz8Nzw8LLrhg8vjjjydF89///jc59NBDOz1PHn300UmpVEry7r777kvWXXfdZIYZZgh/CzfccEOnz3MfHHbYYcn0008f7ptVV101ee2115Ki3Rf/+c9/kgMOOCD8jUw++eThMltttVXy4YcftvU6S1IzHXvssckyyyyTTDbZZMlPfvKTur5m6623Ds+h5W9rrLGGv6gm3d9Fep1utL/97W/J5ptvnkw55ZTh/qZm/uc//9nl16y44orjPb532mmnll3nPNfhI0eOTOaZZ55wecZbo0aNatl1Ldr9fdlll433OObr1Jj6qZp77rknWWyxxZJJJpkkmXPOOcPvQJLUmPHZxx9/nGy55ZbJdNNNF+ZreL79v//7v0Lfvb25H/Hwww8nK6+8crgf+dqBAwcmX375ZVJkvb0vY6225ppr1j1eyLOe3o9cfrfddkvmnnvuUOfOMsssye6775784x//SIrGuqr19+OFF16YLL/88snUU08d3phnKeK6ciPX26+55prwXMjadJEVOqzy8ssvJ99++21y/vnnJy+88EJy6qmnJuedd15y8MEHJ3l37bXXJnvvvXcI5zz55JPJwgsvnAwaNCj55JNPkiK59957k1122SV55JFHkjvuuCMsuq6++urJv/71r6TIHnvssfB3sdBCCyVF9Pe//z1Zdtllk4kmmigZPXp08uKLLyYnn3xyeAEumhNOOCE599xzk7POOit56aWXwvsnnnhicuaZZyZ5x/MAz40MNKrhfjjjjDPC68a4ceNCwcrz6FdffZUU6b744osvwusIoSb+/eMf/xhCf+utt15brqsktQLh9o033jjZeeede/R1hFM++uijjrcRI0Y07ToW/f4u0ut0ozFZSn1MfXTLLbeEBegddtih268bOnRop8c3vwP1rQ5/6KGHksGDB4dJ66eeeipMYPH2/PPPe9c2ad6DhYLyx/E777zjfd2g+qnSW2+9lay99trJSiutlDz99NNho8z222+f3Hbbbd7nktSA8RkbiZifuemmm5Lnnnsu2WCDDZJNNtkkjCmKqjf3I0EV6jjWDFh8ZN581113TX7wg0IvrfW6ZsBpp50WFmfV8/uRzYG8DR8+PNQEBH3HjBkT6oUisa5qz/1I0Jz69O677w7PjTPPPHN4bmTjd5H1dr2dhhr77rtvCAAVXkmdnHjiiaV+/frl/l5ZcsklS7vsskvH+//9739LM8wwQ2nYsGGlIvvkk09oF1G69957S0X1+eefl/r371+64447SiussEJpjz32KBXNAQccUFpuueXafTVSYe211y5tu+22nT62wQYblDbffPNSkfC8cP3113e8/+2335amm2660kknndTxsU8//bQ0ySSTlEaMGFEq0n1RzaOPPhou984777TseklSO1x66aWlqaaaqq7LDhkypPSrX/2q6dcpz+q9v4v8Ot1XL774YngNf+yxxzo+Nnr06NIEE0xQ+uCDD2p+XVHrhmbX4ZtsskkYj5cbMGBAaccdd2z6dS3i/d2T53T1vWbYf//9S/PPP3+nj2266aalQYMGefdKUgPGZ5NPPnnpiiuu6PSxaaaZpnThhRcW8v7t7f3I2OuQQw5p0bXM932Jp556qjTjjDOWPvroo7rGC3nWl/ux3HXXXVeaeOKJS//5z39KRWFd1Z77sdI333xTmmKKKUqXX355qch6cz9y3y2zzDKliy66yPnCUqlU7PhnFbTLmmaaaZK870x84oknQoumiCQw75OGK7LYLi3vj4Gu0GmG3U3lj4+iYcfB4osvHnbwcjzUoosuGlqcFREt98eOHZu8+uqr4f1nnnkmeeCBB0KrxiJjFyDtVMv/TqaaaqrQ4q3oz6PxuZQdEvUe1SBJRcEuFMYWtOylS8hf//rXdl+lXPJ1uvcYx/D6zVg4YrxDvUiHmq5cddVVyc9+9rNkgQUWSA466KDQfU19q8P5eGVdxg4tx5vNm/eg7fqss84adgn+6le/Cjtd1Rw+viWpueMz5vTY7c2xIXSX56gBugxyfGMR9eZ+ZFc8n6OG4/6cdtppkxVWWCHMjRZZbx+T1Ae/+c1vQhc2jqcqur7UXpXzsHQHnHDCCZMisK5q3/1Y7W+a0yqKvJ7a2/vxqKOOCq8tReuKVEsxnr3q9Prrr4ejLWihlWd/+ctfkv/+979hcFWO9zkaqagYtNN2luNfmGAtIooW2lTRzrDI3nzzzXD0Da27OBaM+4OzHyeeeOJkyJAhSZEceOCByWeffZbMM888yQ9/+MPw3HHssceGFoVFRlAF1Z5H4+eKiomPAw44ILQEpFCSJH2H1tG03u7Xr1/yxhtvhDEG4U+KV15j1Ti+TvftvmPCpByTnkw+dTXGYdKZBf4ZZpghefbZZ8NYgLbzHA+o3tfh3OeON1t3fxMkvOSSS8JxuEz6MzfEwhSBlZlmmsmHcoPVenxTf3755ZfJj370I+9zSerD+Oy6665LNt100+SnP/1puPxkk02WXH/99cmcc85ZyPu1N/cjc8Q44ogjwrhgkUUWSa644opklVVWCUew9O/fPymi3j4m99prrzC2IhCs3t+PlWPeo48+uu4jmPLAuqp992Ml6n7mAIq88b039yOBx4svvjgcharv/CCvi6vs6O7qrfJBwplaTCDTSYGztlXMjiIMMglsFNF7772X7LHHHmFH5KSTTpoUGcGlxRZbLDnuuONCVxUGezwvnHfeeUnRUNjymLj66qtDkOnyyy8PxRn/SpVIUnP+MZ2/CXxJUt5riJ7YbLPNkvXWWy9ZcMEFk1//+tfhPGoCsXRbKaJm399q7f3NeJmOHzy+CTUzic9iCMEsKSuWXnrpZKuttgoLUeyaJmz185//PDn//PPbfdUkSTnU7PHZoYcemnz66afJnXfemTz++ONhUx5zNs8991ySJ828H5kjxo477phss802YZ741FNP7Qi45k0z70s6md91113JaaedluRdq2pdAr50yJ9vvvlCoEpqpeOPPz6spVL3F309sSc+//zzZMsttwwnOdCZVjnurLLPPvskW2+9dZeXmX322Tv+/8MPP0xWWmmlkOq84IILkrzjD4Ddm3/60586fZz3i9p+bddddw0LBvfdd19hd0zRqorWhoQ0IhKB3CdnnXVW8vXXXxdm1+/0008fBnnl5p133uT//u//kqLZb7/9wgCbBTawAPHOO+8kw4YNK1yXmXLxuZLnTR4vEe8zuV3koAqPD4pPu6pIynsN0Vd8L8bldHdkZ17RNPP+9nW69/c39x01QblvvvkmtI/vSa3I0Yjg8T3HHHPU/XV51ps6nI9bt7fu/q400UQThUUpHsdqvFqPb+oIu6pIKoJmjs8IDDOfy8bM+eefP3xs4YUXTu6///5wBEueNuQ1836Mc37V5onffffdJG+aeV8yV8jjsvLI8A033DBZfvnlc7WJoxW1FwvebL6fYoopQliAcWtRWFe1736M2MxMWIUwJF0pi6yn9yPPg2+//Xay7rrrjheMnHDCCUOH2iLOoeQyrMLOF97qQUcVgiq//OUvk0svvTScJZV3HGXC7R07dmzY1Rn/GHif0EaRsPt/t912Cy/oDIhoy15ULJJUJutJjHP8C+28ihJUAUdB8aJQ7tVXXw2tzYuGcwcrnxd5LMQX0KLiuYLBBs+bMZxCmp3zRHfeeeekqEGV1157Lbn77rtDi1lJynMN0Qjvv/9+8te//rVT6LFImnl/+zrd+/ubzhLswCXITs0YJ5YZ+8UASj1iO9uiPr4bVYfz++DzHFcb3XHHHeHjavz9XYnNG9TIa621lnd3E/A4HjVqVKeP+fiWVCTNHJ8xn4cizOk1836cbbbZwhEX1eaJOdI1b5p5X7IZcvvtt+/0MTZF0qmmfNE2D5pdezEHTVfLSSaZJHSsKVpXC+uq9t2POPHEE5Njjz02ue2225LFF188Kbqe3o+st1auwx5yyCEhgHb66acnM888c1JIpQJ7//33S3POOWdplVVWCf//0Ucfdbzl3TXXXFOaZJJJSpdddlnpxRdfLO2www6ln/zkJ6WPP/64VCQ777xzaaqppirdc889nX7/X3zxRbuvWiqssMIKpT322KNUNI8++mhpwgknLB177LGl1157rXTVVVeVJptsstLvf//7UtEMGTKkNOOMM5ZuueWW0ltvvVX64x//WPrZz35W2n///Ut59/nnn5eeeuqp8MbL5SmnnBL+/5133gmfP/7448Pz5o033lh69tlnS7/61a9K/fr1K3355ZelIt0X//73v0vrrbdeaaaZZio9/fTTnZ5Lv/7663ZfdUlqCp7/eB488sgjSz/+8Y87niN5vozmnnvu8LoJPr7vvvuWHn744fB6euedd5YWW2yxUv/+/UtfffWVv6UG399Fe51utDXWWKO06KKLlsaNG1d64IEHwuN08ODBHZ+ndub+5vN4/fXXS0cddVTp8ccfD49v7vPZZ5+9NHDgwDbeimzW4VtuuWXpwAMP7Lj8gw8+GOqS4cOHl1566aXS4YcfXppooolKzz33XBtvRX7vb55jbrvtttIbb7xReuKJJ0qbbbZZadJJJy298MILbbwV+amfuK+5z6M333wz1Nn77bdfeHyfffbZpR/+8IelMWPGtPFWSFI+xmfM1bDusfzyy4ePMV5jPDHBBBOUbr311lJR9fR+xKmnnlqacsopSyNHjgzzxIccckgYH3CfFllv7stKjBeuv/76UpH19H78xz/+URowYEBpwQUXDI/B8nnYb775plQU1lXtuR+ZZ5l44olLf/jDHzo99srnZoqop/djtTW4X/3qV6UiK3RY5dJLLw0viNXeiuDMM88szTLLLOHJZckllyw98sgjpaKp9fvnsaHihlVw8803lxZYYIHwIjPPPPOULrjgglIRffbZZ+ExwHMFhRgLD7/73e8KEUK4++67qz4/MHjAt99+Wzr00ENL0047bXicEHx85ZVXSkW7L1iUqvVcytdJUh7x/Nfd8175mJIg9Oqrr176+c9/HhaaZ5111tLQoUMLFxRv1f1dtNfpRvvrX/8aJkgJBjExv80223SafIqv/fH+f/fdd0MwZZpppgn3NQsjLD4zkaqe1eHUX3GsGV133XWlueaaK1x+/vnnL/QCU7Pv7z333LPjsjx3rLXWWqUnn3yyTdc8f/UT/3KfV37NIossEu5zak3nYiSpMeMzvPrqq6UNNtig9Itf/CKEAxdaaKHSFVdcUei7uDf3I4YNGxY2aXE/Lr300qX777+/VHS9vS/LGVbp+f1Ya7zFG5ctEuuq1t+PzGVVe+yxqaLoevp4LDfEsEppAu6Idnd3kSRJkiRJkiRJkiRJUjF0PrRQkiRJkiRJkiRJkiRJaiLDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMqkiRJkiRJkiRJkiRJahnDKpIkSZIkSZIkSZIkSWoZwyqSJEmSJEmSJEmSJElqGcMq0v+z9x9QkqZ3fej/rZw6h8k5z+xsnI1aCWklkkgGZAwy2AKDuca+3HOvCeeQscHA/w822AYbHzDBIHQBJZJAICuglXbRrjbNTs65p3OonN57vk/10/N2bXVPh6rq9+3+fvbUmZ3umuq3Qlc9z/N+n98PIiIiIiIiIiIiIiIiIiIi0i4Kq4iIiIiIiIiIiIiIiIiIiIhI2yisIiIiIiIiIiIiIiIiIiIiIiJto7CKiIiIiIiIiIiIiIiIiIiIiLSNwioiIiIiIiIiIiIiIiIiIiIi0jYKq4iIiIiIiIiIiIiIiIiIiIhI2yisIiIiIiIiIiIiIiIiIiIiIiJto7CKiIiIiIiIiIiIiIiIiIiIiLSNwioiIiIiIiIiIiIiIiIiIiIi0jYKq4iIiIiIiIiIiIiIiIiIiIhI2yisIiIiIiIiIiIiIiIiIiIiIiJto7CKiIiIiIiIiIiIiIiIiIiIiLSNwioiIiIiIiIiIiIiIiIiIiIi0jYKq4iIiIiIiIiIiIiIiIiIiIhI2yisIiIiIiIiIiIiIiIiIiIiIiJto7CKiIiIiIiIiIiIiIiIiIiIiLSNwioiIiIiIiIiIiIiIiIiIiIi0jYKq4iIiIiIiIiIiIiIiIiIiIhI2yisIiIiIiIiIiIiIiIiIiIiIiJto7CKiIiIiIiIiIiIiIiIiIiIiLSNwioiIiIiIiIiIiIiIiIiIiIi0jYKq4iIiIiIiIiIiIiIiIiIiIhI2yisIiIiIiIiIiIiIiIiIiIiIiJto7CKiIiIiIiIiIiIiIiIiIiIiLSNwioiIiIiIiIiIiIiIiIiIiIi0jYKq4iIiIiIiIiIiIiIiIiIiIhI2yisIiIiIiIiIiIiIiIiIiIiIiJto7CKiIiIiIiIiIiIiIiIiIiIiLSNwioiIiIiIiIiIiIiIiIiIiIi0jYKq4iIiIiIiIiIiIiIiIiIiIhI2yisIiIiIiIiIiIiIiIiIiIiIiJto7CKiIiIiIiIiIiIiIiIiIiIiLSNwioiIiIiIiIiIiIiIiIiIiIi0jYKq4iIiIiIiIiIiIiIiIiIiIhI2yisIiIiIiIiIiIiIiIiIiIiIiJto7CKiIiIiIiIiIiIiIiIiIiIiLSNwioiIiIiIiIiIiIiIiIiIiIi0jYKq4iIiIiIiIiIiIiIiIiIiIhI2yisIiIiIiIiIiIiIiIiIiIiIiJto7CKiIiIiIiIiIiIiIiIiIiIiLSNwioiIiIiIiIiIiIiIiIiIiIi0jYKq4iIiIiIiIiIiIiIiIiIiIhI2yisIiIiIiIiIiIiIiIiIiIiIiJto7CKiIiIiIiIiIiIiIiIiIiIiLSNwioi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ff9Hf/RH533/+7//++e+F41G56Vr6/32b//2vH/7i7/4i3Pf+9M//dO5r//8z/98w/ukyioiIiIi0i6a02hOs9w5Tf1caqHLN3/zN+sXWURERERaTnMazWmWO6dp5KGHHpq7bjwed0ZGRlr4qhURN1VWEVmBSqWCv/7rv577e19fH37zN39z3s4xJjm/67u+y/y/+7r00z/903PXjcfj+Hf/7t/h7/7u7+a+/zd/8zf4p//0n+LLX/7yXMUSYrWS7/7u7553W/w5hUJh7udwJ1s7/PzP/zz27ds393dWCmElmU9+8pNzX+N9+4mf+Il5/85Wm6HPfvazpjJNIpHAWvrO7/xOHDt2bO7vP/mTP4n//J//89zj+pnPfKbhv3P3L1zsa8RUru1xyIo6P/qjP9qkoxcRERERWT7NaTSnWe6cxs7xOM/9R//oH5l5zc6dO011yt///d/Hz/7sz87N9z7+8Y/ji1/8oqmkKSIiIiLSCprTaE6zkjlNvb//+7/HG2+8Mff397///RgYGGjSq1RE7kdhFZEVGBsbM212LC7SdXR0LHj9a9euzfv7Aw88sOjf7fWvXr067+tsscPLUn9OK73jHe94y9fYcsj9uAwNDeEjH/nIgrfBdkB37tyZF3pZC+6gCnV2dmLXrl1zLX9u3Lgx973u7m6zGEvuFlBW/dd4ffrFX/xF83iwdBxLYrM9koiIiIjIWtGcRnOa5c5p6OmnnzYXN86dfuqnfsoE9P/Tf/pPc1/nRgaFVURERESkVTSn0ZxmJXOaer/+678+7+9207GItEewTT9HRNogm8227XHeunWr7465GQ4dOjSvR7utvmLdvn274fVthRwmet/73veaZK69uMMw/H/7dRERERGRjUZzGu/Oae7nXe9617y/M6wvIiIiIrLRaE7jnzkNr/exj31s7u/PPvssHn300aYfr4gsTGEVkRXo7++fV0mFJcLcFUXqcaeZ2+nTp+f9/dSpUw2vv3v37nlfZ7sghh0WurCySbsEg8GGj4u7FdJzzz236PHycvz4cay1+ueDz6U7QMLS1tYzzzwz9/88/ldffXXev2XrJovVU06cODHv+yyLzcS3++JujeT+voiIiIhIq2hOoznNSuY05XJ5yZU+u7q6mviKFRERERGZT3MazWlWep7G+s3f/M15cxxVVRFpP4VVRFaArVy+9mu/dl5y81/9q3+FTCYz9zV+wP3RH/2R+X9W0nD7uZ/7ubl0LROfDKG42dvmB+jg4ODc1//rf/2veP31199yPAzL/MiP/IjpC77Wj8tXf/VXz/39c5/7HP7wD//wLde7desWfvVXf9U8Dl7wwQ9+cF5g5Rd+4ReQz+cb7hBkf3a3X/mVX5nrf/jKK6/gM5/5zNz3vuEbvgE9PT0tPnoRERERkeXTnGbhx0VzmoXnNGwHy7kc58Bub775Jn7+539+3tfUAkhEREREWklzmoUfF81p7n+eplQq4bd+67fm/r59+3a8733va8lrVUQW4YjIirzxxhtOPB5nSmHu0t/f77znPe9xvuZrvsYZGBhwuru7zXUrlYpz4sSJedfdunWrud7OnTvnff3YsWNOsVic+zm/8Ru/Me/7gUDAefzxx51v+qZvcp577jln8+bNc9/73d/93XnH+M53vnPue7t3717VM/2BD3xg3nEs5NVXX3Wi0ei86x48eND5+q//enN/9+/fb+4Dv87bdPuZn/mZef/uypUrb7l93g/7fd6/lfjMZz4z7+fwkkwmnXe/+93Ogw8+OO/r4XDYPNdu3/Vd3/WW5+y9732vk0gk5r7Gx+D06dNLOh73fVrt8yQiIiIislSa0zSmOc3Ccxo7d+E8iXPcb/zGb3SeeOIJJxQKzZsjHT9+3CmVSvplFBEREZGW0pymMc1p7n+e5oMf/OC8OczP/dzPtfS1KiKNhRcLsojIwh588EH86Z/+qam0MTU1Zb7G1i3/+3//77nrdHd3z7XMYdWTr/u6r8PJkyfN1+7cuWMubgcPHsSf//mfm7Jk1r/+1/8aN2/exC/90i/Ntc55+eWXF0zMrrVHHnkEH/rQh/CBD3xgrjXShQsXzMWLx0vf/u3fjo9+9KP49Kc//Zbv8XHnc11fGo5tglg5hliVxV2ZJRaLmao6R48ebcPRi4iIiIisjOY0jWlOs/CcJhAIzFUSZWltd3lt68iRI/iLv/gLhMNachIRERGR1tKcpjHNae5/nubXf/3X5/4/Go3i+7//+1v0KhWRxagNkMgqsHzYmTNn8JM/+ZN4/PHHTTiFC3KbN2825ZF//Md/fO66O3bswJe+9CX8xm/8hmkr09fXZ67b29uLZ599Fv/xP/5H00Zm//79b/k5bEvDf/u93/u9OHz4MFKplPm3AwMDeOaZZ/BDP/RD+PznP49/9s/+mSeez2/91m81j8uP/diPzT0uDKawZ/lDDz2Ef/Ev/gU+/OEP47//9/8OL2DbpRdffNE8n3w+EokEnnrqKXzkIx8xj209Pv4MJf2P//E/8Pa3v92UkONgZs+ePfi+7/s+05aJj4GIiIiIiNdpTtOY5jSN5zSf/exn8cu//Mv4+q//ejP/icfjZm7K9rXvec978N/+238z/eL5PRERERGRdtCcpjHNaRY+T8M5ywsvvDBvQ/OmTZta9AoVkcUEWF5l0WuIiIiIiIiIiIiIiIiIiIiIiDSJKquIiIiIiIiIiIiIiIiIiIiISNsorCIiIiIiIiIiIiIiIiIiIiIibaOwisgGdeDAAdNb/H6X7/3e74XX/ft//++XdF94ERERERGR9UFzGhERERER8TPNaURko9OZW5ENqlwuo1Kp3Pd6S7nOWqtWq744ThERERERaR7NaURERERExM80pxGRjS7gOI6z1gchIiIiIiIiIiIiIiIiIiIiIhuD2gCJiIiIiIiIiIiIiIiIiIiISNsorCIiIiIiIiIiIiIiIiIiIiIibaOwioiIiIiIiIiIiIiIiIiIiIi0jcIqIiIiIiIiIiIiIiIiIiIiItI2CquIiIiIiIiIiIiIiIiIiIiISNsorCIiIiIiIiIiIiIiIiIiIiIibaOwioiIiIiIiIiIiIiIiIiIiIi0jcIqIiIiIiIiIiIiIiIiIiIiItI2CquIiIiIiIiIiIiIiIiIiIiISNsorCIiIiIiIiIiIiIiIiIiIiIibaOwioiIiIiIiIiIiIiIiIiIiIi0jcIqIiIiIiIiIiIiIiIiIiIiItI2CquIiIiIiIiIiIiIiIiIiIiISNsorCIiIiIiIiIiIiIiIiIiIiIibaOwioiIiIiIiIiIiIiIiIiIiIi0jcIqIiIiIiIiIiIiIiIiIiIiItI2CquIiIiIiIiIiIiIiIiIiIiISNsorCIiIiIiIiIiIiIiIiIiIiIibaOwioiIiIiIiIiIiIiIiIiIiIi0jcIqIiIiIiIiIiIiIiIiIiIiItI2CquIiIiIiIiIiIiIiIiIiIiISNsorCIiIiIiIiIiIiIiIiIiIiIibaOwioiIiIiIiIiIiIiIiIiIiIi0jcIqIiIiIiIiIiIiIiIiIiIiItI2CquIiIiIiIiIiIiIiIiIiIiISNsorCIiIiIiIiIiIiIiIiIiIiIibaOwioiIiIiIiIiIiIiIiIiIiIi0jcIqIiIiIiIiIiIiIiIiIiIiItI2CquIiIiIiIiIiIiIiIiIiIiISNsorCIiIiIiIiIiIiIiIiIiIiIibaOwioiIiIiIiIiIiIiIiIiIiIi0jcIqIiIiIiIiIiIiIiIiIiIiItI2CquIiIiIiIiIiIiIiIiIiIiISNsorCIiIiIiIiIiIiIiIiIiIiIibaOwioiIiIiIiIiIiIiIiIiIiIi0jcIqIiIiIiIiIiIiIiIiIiIiItI2CquIiIiIiIiIiIiIiIiIiIiISNsorCIiIiIiIiIiIiIiIiIiIiIibaOwioiIiIiIiIiIiIiIiIiIiIi0jcIqIiIiIiIiIiIiIiIiIiIiItI2CquIiIiIiIiIiIiIiIiIiIiISNsorCIiIiIiIiIiIiIiIiIiIiIibaOwioiIiIiIiIiIiIiIiIiIiIi0jcIqIh7jOI65iIiIiIiI+JHmMyIiIiIi4mea04iItEe4TT9HRJagWq2iUCigWCwiEokgHA4jFAohGAwiEAjoMRQREREREU8v6JbLZeTzefN395xG8xkREREREfHDORqen+F5Gp2jERFpvYCjeKDImuOvYaVSQalUMou7/NMu5vJPLu5ykde90KvFXhERERER8dKiLucyvHBxl38nzlsYvuc8hou9/FPhFRERERER8do5Gs5h7DkahlUWO0ejDcYiIs2hsIqIBwZBHAAxrEL8kxcOdmxLIA6S+KcNqSi8IiIiIiIiXlvUtXth+P/EuYt7PmPnNJzruBd6FV4RERERERGvnKPh3xnA5zzFzmPcF85n6uc0Cq+IiKyMwioiHlnUtUEUOyji4KbRv1kovOLepdjo34qIiIiIiLRyUdfuPOTCrvvv7uuTwisiIiIiIuIF9hyNPSfDOQz/34ZVFjtHYzUK5Cu8IiKyNAqriKxhL3dezC+iq63PYmGVpYZX6ncpKrwiIiIiIiKtXtS1c5SFwiqN5jP2tlR5RURERERE2oXzD85leI6G8xH3nGaxsMpSwyu2Or79030OSERE7lFYRWSNFnXt4KU+SGJDLCsJmNSHV+ztK7wiIiIiIiKtXtRdblil0W275zT236ttkIiIiIiItLJCpHvuspywynKq47vP0yi8IiJSo7CKyBq0/Wm0qNuMsMpCP9MOkPizJyYmsGPHDlVeERERERGRpi7qrjas0ujn1e9UnJqaMnOZ/v7+uQVfldgWEREREZGl4Fzmfudo+L1CobCisMpSNhgPDQ1h27ZtiMfjqo4vIhteeMM/AiJrsKjbrsVUm9i1crkcLl++jM2bN5vjsddxJ3ptSToRERERERGLi6sMoSy2qNts7jAM5yqcVw0PDyMWiyGVSs1dh8cTiUTUH15ERERERBriXMJuFKb7zWmaNd+xcxq7OZnniC5cuGDC97aaZP05Gl6asZlZRMQPFFYRWaNe7gtp5aKvvW0OeuqrvXDh2Q6aOBjiYq8dGCm8IiIiIiKysdv+cM7A/1/LKiZ2vsI/OV9xV17J5/Nz16kvsa3KKyIiIiIiGxfPgTCksliFyHaxIRR7DsZdFd9WqGzUBlXhFRFZrxRWEdkAi7oWf74tNdeo8spC4ZX6gdFa3w8REREREWn/oq4X5jRk5zSNKq/YOY3CKyIiIiIiG5v7fAf/fy1DKkutvFIfXlHlFRFZ7xRWEVlHbX9Wyx1esQvAttw3ezQqvCIiIiIisv55eVH3fqW6FwqvcD7DAAvnZvWBfL/M10REREREZGXnaLwyp7HH4N5UfL/wip2b8WKv457P8E8v3DcRkZVQWEWkyWw1lZX2crcLqq2y1Nt2L/K6/53CKyIiIiIiG6eX+0oWdesrOq7lnMZ97HauxTkbL+5Avm2Dahd6tdgrIiIiIuJPNtzBMb/fg+lLrY5f3wrVz/dZRDYWhVVEWrSo68VB0GqOZ7HwChd5F+un6LXHQUREREREFl/Ude/mW09zmkYltnl/OY+z32+00Ks5jYiIiIiIt7nH9ivdTNwOqwn3Lye8YgP5OkcjIl6msIpIE9jBAP8kLy9mNmuHozu84i6xzUt9eMW9S9GrA0QRERERkY3KL4u6rZjTNAqv8HHg/G6h8IoXQzwiIiIiIhtZfdsfr89pmmWp4RVtMBYRr1JYRWQV3B/8fljUbeWxLdQfnhf2hrfXseEV9YcXEREREVl7flvUbcecZinhFfcuRYVXRERERETWDs/NMJjhh3M0rW6b6g6vuKvj8/Fxt0FVeEVEvEJhFZENsqhrtbJ3vJvCKyIiIiIi3ua3Rd21mtMsFF6hRgu9Cq+IiIiIiLSvQiTH5vx/P81p2sG9ubhReMVdHV/hFRFZKwqriKyyl7ufBkBreZxLDa80KrHtl8dXRERERMQPtKjb3PCKLbFNCq+IiIiIiLTnHA1D5H7bTNzuAP79wiv2wqor7jmNu5IkL356bEXEXxRWEVnBou7ly5fN/+/evVsf0k0Or3CQacMrHBTVL/b6bdApIiIiIuIlNlzxpS99CQ888AASiYSvxtetLJndjPCK3dhgK6/w++75DP/00+MtIiIiIuIldsx9+/ZtjI2N4ciRI74bX3vleFUdX0S8QGEVkRW0/clms+bvrRhUtLoHu1cWdpc6MOLj/fzzz+ORRx5BMplUeEVEREREZIVsiWwu7k5OTpo/vbJQuhxentPYXYruhfRbt25heHgYx48fnxdesQEWPz4HIiIiIiLtZlty8sJKINPT074dS3txTrNYeIWbHbZt24bBwcG5yivaYCwizaCwisgyF3VttQ9bXs6PWhW0adUuRXe7Jf4/LxyMutsGuXcpev2+iYiIiIis1aIu2bG1FxdI78dPY307X7GPNf/fVl5hiW073+HX3WW2/XQfRURERETawY6jeW6gPiTuN34Z77vPtXA+Y8+N8f9tdXz3ORqFV0RkJRRWEVnioq79MLYLirass5/4ZRDUiH3c6/vD87nhc2EHTvUDI4VXRERERGQjs4u6/JPs+LjVYZVWBuT9GLJZrPJKfXjFPZ9ReEVERERENjJbfZ3nAexmYjufsXMcP/LbnMbO7+z5GXflFT4PNrxiz+EovCIiS6WwisgC+AHLAZCtoGIHQdTKhd12BEr8UFllJf3hFwqvuHcp2uuLiIiIiKxn7iCEe1HX8nNlFT8e9/3CK/Y+8blicMVWklR4RUREREQ2Ko6RbTWVdp6jaTW/n5u5X9sgzmk4n2GAReEVEbkfhVVEFlnUtaGO+sGDXwdC62UQtJrwSv0uRYVXRERERGQjLer6fU6zXrkXeUnhFRERERHZyGyIu1Hwnmw7GvGO+nNp9hwN56W8uAP5doMxz9WoOr7Ixqawisgii7oLfUi2emF3PYdK1jq8YktsU6NdigqviIiIiMh66eXeaFHX72EVP86VVvI4LxZe4SLvYnMaPz5GIiIiIiJkww12M/FCcxq/zmf8fuzNOEdj2zq5q+O75zQKr4hsLAqriCxzUdfPgwl7n/x47K0Or6jyioiIiIisx17uC+H3/drjfaPOZ8gGUux8hpf68Ip7l+L9XgciIiIiIn6qEOn3czQb2VKr43MuY+c02mAssv4prCIb3nIXdUkDofU5MLKBJV7sddyJXluSTkRERETEr4u6fp/TaDy+eH94Xtgb3l7HhlfsnEbhFRERERHxIltNZSOco/HzsTeTwisiQgqryIa2kkXd9TCY8Nuxt+N4bWLX/TNteMVWXuHro1FJOhERERERvyzqroc5jV+P2wvhlfr5jMIrIiIiIrKWbGUNXjbSORpZfnhloTao9voi4k8Kq8iGxcVchhCWu6jr54GQghWtCa+4S9LpMRYRERGRdi/qLtbLfb3NaWR14RXOaRReEREREREvsOvttj3pckIHfp/P+PHY233uY6HwivscTX11fIVXRPxHYRXZsG1/+IG2kkVdv/d39+tAyC/hlfqBkcIrIiIiItJsHIcypLLcCpHtWNx1hyRawe+L0l4MrxQKBRNg4euofk6jyisiIiIi0mzutfWVbCZux7yg1XMaaU54xb6ObOWV+vAK/9TjLeJtCqvIhrLStj/rZYHUzx/KXjt2d3jFvhZstR4u9tLExAQGBwcRi8UUXhERERGRVXMvxvH/VxMM0Zymvbw4n3Efkw2vcK7MC+c0vDAU1dfXp/CKiIiIiHjuHE2rNxTbOVerbltav8F4amoKXV1dSCaTc3Mar83NRDY6hVVkQ2jmoq6fF3YtPx+7F7l3KLpfb2+++Saeeuops8CryisiIiIi0sxF3Y08p/Hrcfttl+LY2JgJ4HNh137f7k50L/RqsVdERERElsKeo+GcZrUV/PjvWzkvaGVQRePn9oVXzp8/j/379899n68bXicSiWiDsYhHKKwiG6qXOzVjMc2vC7saBLXvcbaPNQc9XMi1OxW5O5GpXlLbIBERERFp96Kue8yqOY0s9vqwi7mc09j5DOfVfC0qvCIiIiIiS2Ur+HEsudK2P+tlPmP57dj9drxkX2M8P2PnNPWVV3SORmTtKawi65q77yHZXWKrpYGQLGfwtlB/eBte4cW9EKz+8CIiIiLSqkVdi7fVqrLZrQ7J+3Gh1I/cu0kbVV5ZKLzi3qXYrDm4iIiIiGzstj/r6RyNNhWv3ZzGXR2fOCdmcMV9jsZdSVJtg0RaT2EVWZfcCclmL+r6eSCkQVD72NdHo8d8sfBKPp+fu47CKyIiIiIbV6sWdf0+p5H2Wez1sdTwSv1Cr8IrIiIiIhsH5zI6R9OY5mJry31+xv18KLwi0n4Kq8i60+pFXeLttWoXIo99cnIS3d3d8/rriT8t5bW31PBKfX/4Vry2RURERGTt2QWyVgTv2xFWmZmZMcfe0dHRkrmY3/h1Idq9C/F+Fgqv2BLb1GiXosIrIiIiIuuPDTHz0spzNHbM2ezb5lyG52g4n4lGo2g2P85p/Gqpr49G4RV3dfzF5jR6PkVWR2EVWVda0cu9nQu7HAC99tpr5j7w9ru6utDb24u+vj50dnaueiHPPh5+XSz1k9U8xguFV/j6tuEVvhbqB0YKr4iIiIisj7Y/dj7gtzkNb+/ixYu4cuWK+X+2g7HzGf4Zj8eb9nOkPVb6+msUXqnvD6/KKyIiIiLrD8d8DKnYzcTute5mcp/raObtZ7NZvP7660in0+Y+8LyMnc80c4Ox5jTtsdLXx2IbjBlecbcNsm1QeZ5G52hElk9hFVkX2rmoS7z9Zg4meFtXr141C7v79+/H1q1bzYfd+Pg4JiYmcPPmTTPI6+npMYMiXlazS9FvAyG/He/92gA1M7zC1wkDLAqviIiIiKyvRd1Wz2maHVbhmPSNN94wfz7++OOIxWKmwgrnM7du3cLZs2dNWMXOZ3hZyS5F7Vprn2a+Ptz94evDK7zY67jD+PxTz7eIiIiIP7jHdzYg0Or5jP25zXL37l2cPHnSnJ95+OGHzfyM8xlezpw5Y0LXDKzY+Qw3G69kg7HGuO3VynM09dXxbXhFG4xFlk5hFfG9drT9aeXCLgc4HABxIfeJJ54wAxx+LZlMmsuOHTvMz2KS1w6MuFOR95PhFZvqTSQSyypnJu3RqtS4+3btoIi/A7wslOpt9QRBRERERLy/qNuKOc3o6KgJqvT39+Oxxx6bG5tyrsILcaGXlSQ5n7l27RpOnTqFVCo1N5/h3IZj1vUaZvfjOLwVJdWXEl6xlVc4n+F17JxGJbZFRERE/HGOph1zGncFv9XiOPTcuXMmZP/AAw9gy5YtZkzK8SeDK7zw5+RyublzNHaDMcMrdk6znA3GmtO0R6se56WGV+y5GYVXRBamsIr4mq2m0spe7q1c2OWghiXlGFB529veZnYW8r40+nksN8fLrl27zHUYbmHlFaZ9z58/b/6te5dis0psy8q0c7C5UH94/n7wpID9fv3ASOEVEREREW/1cm/n+Iw/p9HcYzn47y9dumSqRB49ehTbt283t2srZbhxDDowMGAuxMVfG165cOGCWdDjfMfOZxYqse3H0IeftfP1uJTwivrDi4iIiHiLHbNxLbrd52iasQ7Ptj+vvfaa+f9nnnnGBOob3SZ/nt1gzHkPr5PJZMx8hudpuMGY13Gfo+F1Gz0emtOsjwD+Uqvj2/CKquOLNKawiqyLRd1294FbbVjF3fbn4MGD2L1797KOn/eXi7e87N271wwEp6amGpbYZqqXuxRtie1W9KaX1rYBalZ4hb8vnDi4wyvuXYorKVkoIiIiIqtf1HWP3dplta1NueDG4D2DBE8//bQJmiwH5yebNm0yF3t7C5XY5pyGt9/M3ZPinYXd+4VX7PPN3xm+LtyVJBVeEREREVkb7s2S7d5M3KywytDQEN58801s27YNR44cWdacjD+flVR42blz59wGY85nRkZGzLkfjlXd4RVWx5f2W8tzNI3CK5zPcP6r8IpIjcIq4ttFXbsLcC2qQ6wm8GHb/rCtD9v+MEiyWvywW6jENhO9TPhy0MQBkQ0t+I3f0sZrGVapp/CKiIiIiHes9aJuM+Y0XHxl25/BwUGcOHHiLe17VnJ/GLZvVGKbuxRtiW3OnTj34WO3lkGKjcIroSD3Ii8pvCIiIiLirbY/azGnWU1YhcfNtj+3b9/G8ePHTduf1XJvMN6zZ4/5GdPT02ZOw5/Dn2c3GNtNpbKx5jTu3xF3dXxe3IF8u8GY82xVx5eNQGEV8Q13GeC1XNRdzS7E+rY//NBphUYltu0uRR73yy+/bI7hfiW2ZXW8unh+v/AKSx8y4MRyhrZlkCqviIiIiKyPRd3VhFU4D+MOwWvXrpm2Pzt27GjZsdWX2GbYn/MZ7n7k/z///PMmvGIrr3CXolfH337mxcd0sfAKF3k5/x0eHjbVeDjXdc9pvHh/RERERPzEVrtb63M0Kw2rcN2b52iI52g452gFjj3t+Zd9+/bN22DMMSur49+4cWNedfz6TQDSHF6cAyx0jsZubOGFcxp2ZXBXk1R4RdYjvfOJL3hpUXcl/d15/Kxwwn7uK2n7s1ossb1582ZzuXv3Lh588EEzIOIuxdOnT5sPPltimxd3iW3xd2J3JQMjhlXu3LljSrLb/vC81JfY1mtERERExH+LuisNq9i2P5yXsZc7Kze281g5R+GFgX/uTDxw4IBZ6OUCHgM0/Lq7xDZ3LcrGmNO4wyu2xDZfIww68XXA3zuq36Xohd9DEREREb+wJ9I5H+D/r/VYyv7s5Zyn4Zr3qVOnzDjx8OHDbV3fdm8wnpqaMhUlOTblnIbzGVaW5HzHqxuM/TI38Otx15+j4fybm0T4WuXvnP2+ncvY8zQ6RyPrgcIq4nm2msrnPvc50zanVUnXVi3scmGMJbKZ2H3yySfNIGOtMbzCtK4tsc1wgq28cv36dfM1u0uRFy5EaxFvefxeltz2f6+vamTLE9aHV2xJOhERERFpvKjLcfbo6CgeeughT4ybljOnsW1/GGY+duzYfRdNW3n/7G3Xl9jmgi/nM7du3TK7FG2JbXvhHEg2xpzGvrb5OuUJALtLkRcu+trr2PCKe6HXj/dXREREpNW4NswNry+99BJ27dpl2oH6aU7D+QLnCAyrcCMvN/WuJbu2zvkVL8Rxqj1Hc+bMGXNeyW4w5rkcbTDeWHMae9zuczTu6vju8IoN5Cu8In6lsIr4ppc7K4F4JQW51EEQK5dw9yGDH8tp+2NvvxUfovW3yb+nUilzYRlvd4ltXlgRhot27oVeldhe2WPtF/WvPTvocX/fhlcaVV5xl6QTERER2cjcFSLtnMYrY6SlzGl4zBcuXDBBG4ZUuKvLizj25AIuL+Qusc3daNw9yQC+nc+0u8S2V+axK+GV1+tq5jTuUtm28orCKyIiIiJLG1PZdWD+v60U6ZUxIs9b3G+szU3Er732mrluK9v+LFf9cTNsz83FdoMxK63YczQ3b940j7s2GK+MV16vqz1H06htkA2vuDcgqzq++I3CKuKbtj+8LKek21ou7PJ7ly9fNpdDhw6ZtPFyPhBbnfZc7NjdJbZ53HzMp6enzaCILYTOnz9vdiWqxPbKH2Ovu9+EYynhFf6+1qd6/TgoFBEREVkpWyLbtv2xJ8m94n6tTbk4yuA9F7/a3fZntSEbd4lt4hjVLvQyfMNdi14use0VXnq9Ltdic+qlhlcaldjWnEZEREQ2CnsinBeya75eOUezlLkBW0MyuL5z505znsYrLVPuN6bk9xmq4YUbBhptMOZ13OdoeF2NVdfPnOZ+5wgXCq/YczSk8Ir4hcIq4vlFXfduKK98sNhjavSBwd2SLJHNxV2vtP1xW+6Ahc8BE7u87N279y0ltlmSjgMh9y5Fldhe2WPtFcsNSy01vFKf6vXr4yMiIiKynEVdO6fx2sIuj8fuwKo3PDyMkydPmvLYR48e9VSQYyVjSM5PeF9suW93ie3Tp0+b56qrq8tUZuGcRiW2/V0ye7nHvlB4hb+vNrxiN9AovCIiIiIbgV3b5bkA9wnxpVQyaaeFzhnxuHnegptvH3744blWO16ynMex0QbjmZkZM59hy9aLFy+aTaPaYNz4MfbjnIbHvpxwVaPwiv09tvN+d3V8G8z342Mj64/CKuLJRV37Rux+o/TS4u5CYZWxsTETVOGg4NFHH21raenlWM2AslGJbXeil2X1mlli20uD341w3CsZCC0WXrGPA393GVyxpe8VXhEREZH1yC4G2XmL+yS4HxZ2edyspHjjxg088MAD2LZt24pu257sb5XV3nZ9ie1sNjs3p2HLI35NJbZr/Lp4aTe/rMRC4RWe9OBloTmNKq+IiIiI39kxD9f86zcTe+0czUJzGlYgYdsfjs/Y9ieRSDTttr0yxubzwE3SvOzZs+ctG4zPnj1r5jzu8MpG3GDs57DKatttLWWDsTu8Yuc0fnysxP+8eSZdNhy+SXIA5G77U/+m6NWwiv3z0qVLJqxx+PBhU1bOq2/qzT4ufogNDg6ay2Iltu0uRe5YXMnOTK8+nutxF2Iz+466F3lJ4RURERFZj9wLP40WdZfSdqfd6hdfWRmSi7o8Ri7qplIpbAR8HHhfedmxY0fDEtt8Pt0LvVzwXu542Y9zAy+Fq9ZyPrZQie368IrdnejepejH511EREQ2JttCZLFzNF6f09i2P6w+cvDgQc+0/Wn1WLvRBuPJyUkzn7l27Zp5TJqxwdivY1s/Hnezzy8ttTo+r8MqPaqOL+2ksIqsKfcbon3zXayvtFcWy9yLVO62P0899ZQJY2xk9SW2+bjYhV4OFjlQYuLXDozWc4ltPw6CWh20aRResRf+Li3WT9Gvj6eIiIisb0tZ1LVf9+rCLstjs+0PK40cOXLEU21/6rV6TLhQie3x8XHzOLHyDOc8G6HEtp8D+K2e0zQKr3Cuy/cC+30bWnHvUvTr4ykiIiLrm62KvVDw3vJqtUjOxdjek+1Mvdr2x63VY0KOPwcGBsyF+NwyvMI5jXuDsZ3P8HyNl+eAK+Wl12q7q983K7yiczTSDgqriGcWde+3cOOlxV17nKOjo2YQ1N/f37S2P+1YfG3nhzR3HfLCEuILldh2L/RyR+N6WMDz+0CoXc/BQiW2bXjFXWLbJnr5e6YS2yIiIuK1Xu73G594KXzv3hXJXu43b97E8ePHTVjFD9r5OLpLbO/du7dhiW3Od9y7FNdTiW2/zs1avbi70vCKe5fiet20ISIiIv5hgx52M/FS5jReOUdjjyeTyZjKIVwzXk3bn/U8p+H8hAEeG+JhWMWeo+F8kM8/N2FzPsPqLOtlg7Gf2wC1e+OAO7yi6vjSbgqriOcXdb2a2iXuPuTOQ5aLbnZJro1WYntsbMy0UuIH4nrYpej3XYhrNRhdLLzCQbS9jg2vqD+8iIiIeLGXu9fD98T5GMfgyWTSV21/1nqMvVCJbe5SZMsgLpbXl9j2K6/Nv9eqtelyKbwiIiIi66lCpJfP0diKKrt37/Z82x8vzWl4zoUbFXjh82mr43NOw40MHEtzHmPnNJzf+NlaP95+nM+QwivSLgqriOcXdb2W2uUJ89dff938P6up2FJqfuKVAWWjEtvT09NmYOQusU0s4cfkbywWgx/4PazilWNfanilvsS2Kq+IiIiIlxZ17fW8MJ+hoaEhXL161Yyt2crUbyWfvTKfWajEtt2laEts83Hma4Rf445FvzzeXpoX+PnY7xdeoUYltv1yskVERET8x1ZTWe45Gq/MaTiOYkiFY+8DBw6Yi994ZU7D554bGHjZvn37vA3GvDCQb593dhqwlfS9Mtb2w2O8HuYzC4VXWBmfv4ektkGyUgqriOcXdb00EOKH8RtvvGEWIvlB7Zfdh14uP17/HDOxy4stsc1digwH3blzxyz2ctDkrrzC6hqyflK7Kw2v8JhteIWvlc2bN5vXisIrIiIi4oVFXa+Mw3ncbFtz+/Zt06aTC0t+CU5YXh2nWgzbcyzKC3GX4uXLl828huXJubDOlkJ2PuP1Ettef7z9sLi71PCK7Q/P1wwr9PB3VOEVERERaSYbmOWFVjKnWetzNDMzM3jttdfMuJvnZxgG9xuvjlMX2mDMx5znxdgOlWvvPCfjh+r4agPUGu7zM/UbjLnGwMvIyIh5DfFcn91orA3GshCFVaQt+IHGRZeVLOp6YSDEn3vx4kVcu3YNR48eNQlTfiiv9WLzemdLbNPDDz9sXjtc5LWJ3jfffHOuxDavx0Vffuh5gZcXR73cBqgZ4RW+NuwgiAEW3pf6VK8GRiIiIrLSRd2l9HL3Yvg+m82aRV1i2x+WeOacphVaPQ720zyMuw45T2HQ6cEHHzTPg92leP36dXNfOHblfIbzGi64e2Ue4dc5jV0o9cux14dXuEmGgbLBwcG5yiv8vns+wz/9cv9ERETEGzgXscF7Wsn671rOaTi+u3XrFs6cOWPa/rCayosvvuiruYEf8TnnfIYBlf3795u5C0MrnM/w+eBmCIZV7HyG37fV8r3Cj+Nmv5+j4XyG51FtkMnOd/g60jkaqeeNs7qy7tv+cBC00kXdte6HaNv+MGzz9NNPmzSgPZ61ThFvhA9m93PODzIu2PHiLrHNhfZz586ZxCaT1DbRy0HUWn2g+2lx1M8DoYVCbXYh1y5U832IF75G3AMj90KvX58vERERaS2OLRhSWWmFSC9UVmHbHwa9WanhyJEj5j5wHO3HhV0/jtncO/oYRuFlx44d80psc07DCix8bty7FNeyxLYfXx/u4/brnMbOx+xGDFtJ0lZesXMXO+exi71+/N0QERGR1nOPJVazmZj4b+28aC3a/jDU++ijj8614PRC9cqV8OtxuzcY203GfG7cG4xZIdBuMLbhlbXaYOzXx9jr1e+X+vrm885zMO7KK7Y6vsIr4qawini27U+9tQiHsFQVy5tt2rQJJ06cmPeh6tcBhV+Pe6kltu0uRSY33SW2OXjiIKmdC5Z+HUz4eSBkBz32eV6oxDbfl/j6sN+3oRX3Qq9fHwMRERFp/qKuDSKvdj7T7ooPHPMw1M2x8fHjx7Fly5a2zAtUWWXlJbanp6fNfObu3bs4f/68mfPYhV7OaWKxWNuP0W/8XO6b7Ekky85XrEbhFV6f17GBfIVXREREpBXnaNai+r1t+8NxMCtEulvOtPp4/LwhtV24ns7wkA0Q2Q3GvFy4cMGEEzjfcW8wbncrWj8+h35/7bnnNI0qrzQKr9Sfo1F1/I1DYRXx/KLuWoQsePz8IGVZ5mPHjplyVWt5PLI03HXIC3eM8rlpVGLbvUuxlSW2/fza8PNA6H5lLBcKrzC4wveshcIrft2VKSIiIs1Z1G3GnMaOJzheacfiHHe0sUIkj5uLuslkcl3MZ/w6Tl3qa4Q7D3nZu3evef25S2yz5DmfR/echuGEVvHj62M9hlXqucMr9r42Cq+45zMKr4iIiGw8dnzAMWWzTvq2s/o9f87NmzdNm5k9e/aYtj/198Gvcxry63Evd4Mxwwj2HA2r47g3GPPCIEur1t79/Bj7ufr9/TZELxRe4b9hZXy+Znjf6+c0Cq+sXwqrSMt6uVMzqxO0q7KKbfvDgdwzzzxjqnE0ooGQtzUqsc0UNgdFY2NjuHTpkvmAa1WJbT8HPvw8EFpuz9XlhFfcuxT9+viIiIjI2izqkr2ddiyY3blzx7T94Tj48OHDDccurZ7PtHIs7OdFx9WU2Obr0l1im89xK0ts+3VO4/c2QPcLq7i5F3nrwysMrrjboCq8IiIisjG4q0qvtu3PWlVW4bGfOnXKrOM/9thj6O/vX/PwTDP5cYy9UqyEs3XrVnNZaIMx5zG2kmQzNxj7OcTu5+r3y92kU38e2V0dn5eF5jQKr6wfCqtI07j7HrZiYagdAyHb9oepz6NHjy76ZurXsIpfP+BWe9z8911dXeaye/fuhiW2WUrQHV5ZbYltvz7Wfl2UbsbC9P3CK/a26xd6/boQLiIiIu1Z1K2vrNIqPH7uPBwaGsJDDz00t5ttoePx43zGr5rxWmJ4enBw0FzqS2xzPsNFPM537HyG/7/aKj5+nBfY3zE/Hvtywyr1FF4RERHZ2Jrd9mctNhRzzZ5tf7ix9Nlnn110jd6v52jIj8fdjHM09RuM0+n03JyGgXy+xpq1wdjv5zn8euyrDdssdI7GrtfUV8e3fzazeIK0l8Iq0tS2P61Y1G3HYqq77c8DDzxg2sjcjwZC66/Ett2leOPGDVOSbjUltv042FwPA6FmL0wvNDCyJbZJ4RURERH/a/Wirr1NatXiLhf5WCGSP4dtf7io57V+883g53lYq0ts53K5uYXe27dvzyuxzV2KrMKynBCEXx9nP++gXG1YZSnhFXthuGmxOY1fHz8REZGNinMZP5+j4e1yXf7cuXNmvX7//v33vQ9+nRtonHXvcWAbIF527dplXrusjj8+Pj63wZhzHnt+hnOa5W4w9utj7edzNK2Y0yy1Or57TqPwin8orCKeX9RtdWqXC3pc1OUb22Jtf+ppILS+8MOL5QRtScFGJbY5aLIDIy763q/Etl8HE34uMdfKydhCAyMb1rOVV/h996DIpnpFRETEm2y7jHaMI6gVi6kMJrBM9s6dO3Ho0KElLQppPrP+MKDECzdfLFRi2x3Gv1+Jbb8ukPo9rNLKtqwL9Ye34RV3iW1u1lCJbREREe+zJ215seOIVs5pWnGOhsfO9XeOWxdr+7Newirk1+NuJb52ed6FF7vBeGpqyrwubt26hTNnzszbYMyNyAyzrMfHuJVzgvUyp1lKeIVzGlXH9z6FVcRzvdzbORAaHh7GyZMnl9T2p9HxtOrDrtWDLD9/SLdLfYltLtrZhV6mu+tLbHMA5f7w9fNj7NdF6bUI2thBj+UOr/Cklx0YKbwiIiLiPbaMLD+3W72o26oAPo+fC3bcdfbwww9j06ZNS/63Wthd3xYqsc1dimNjY7h06ZIZx96vxLYf5wV+X9hdTn/3VoZX8vn83HUUXhEREfHuuIEnaNuxmdjefrPXvRlG4GZijkVZIXI5lTP8Oqfx4xh7LXB8ymoqvBBf6+6WQZlMxmw+d4dX3BuM/Xyew+/H3szKKqsNr5Cq43ubwirii0Vd4s+xg67V4hslS4ixrNxS2/40Oh6/ls1ezFSuhJN3ZjCVK6M/FcHxrZ3oiOmtgoPkLVu2mMtiJbY5cOLAyM/VSfy8uNvOQdBKwys8vvpUr19fKyIiIn7V7kXdVgTwGTxgL3cuxi2l7c9GWdg11T9RRMkpmL9HEEUkENvw4y13ie3du3eb1+H09LSZz7hLbNv5DC9+fH2Qn+di9viX04J2LcIr9SW22/UeKiIiIm9dc7Qntdt1jqZZ8xkeN6v/cRy6b98+c1nuffDrnIYWO+5ssYLTd9MYzZTQEQ3h2JYO9CXXZnxoeeFx5tjTvcGY6+32HM2FCxfMeJXzHTun8fO6ezsD7K16razVeZqFwiv2HM1CbVD9ek5sPdAZaPFs2596/Fk2BbcaLIXMpC7f7Lmoy51mK+HngdBCLo9l8Ycv3cKtKS7sOggggN19CXzgye3Y1h1f68PzfIlt7lLkwOjatWtzoQkGopZSYttL/Ly4u9ZhlZWGV9QfXkREZH0v6jZ7JyJLIJ8+fdr09T548OCKxj/rcT5jqodUp5GtpuGgtogeQBCJYAqdwW7fjnFbga8Z7jzkxZbYtm1QOYfh64vXuXPnjvmTc5q1ClBspF2IXpvTLBRe4THa8AqPtX5Oo/CKiIhI+87RtHNO06zwPY+fbX84/jxx4sRc5Yy1Op5Gt9vKx3Sx2x7LFPGHX76Ni2NZcLrGy+bOKL79ka04vGll57LWK4bt2TWBl0YbjO35xKtXr5r5DIMsXhlnr+c5jf2d9Mpj3Si8cr/q+AqvtJfCKrJktppKq3u5t3IxlTvG2PZn69atOHLkyKqSiX5d3F3ouMvVKj76+hBuTxVwYCCJUDCActXBxZEM/vzNYfwfb9vp2w/HdpbY3rlzp3l8WYZuaGhorsQ2P+TqS2x7ld8HQl4ZBN0vvGJ/D3nMHBTZ/vAMPrH3Ji+qvCIiItKaXu72c7ndY57V7kTksbPtD9uZPvLII3M7yjbSfIYWOu6iUzBBlSCCCAVqvcsrTsV8LRqIIh5ItvlI/YPjzv7+fnMhzv1ffvll8zrh3IYnE1hi2+5SZFVJd4ltL/HzfMbrc5qFwitcL+KFARa7mYOvJYVXREREmsueYOXn7lqco2lG+J5tf1ghkmvpzz77rAkcrNR6nNP87bkxnBvJYn9/ApFQEFXHwdXxHD7+5l3831+xB7GwN8eJXtxgzHkz588zMzOmig+/5j5H4+UNxn6vfk9efWwX22BsA04MPnGzBgNOtqqkV+/PeuDNlQXx9KLuWu2QWc3CLv/duXPnzA5Etv1hWGW1/DwQauTGRN5cdvTETVCFQgGY8nJnTcm5IgY7lt4vsln8+BjztRGPx83AiCcR+PrjIJyJXu5M5GuRbYXcA6Pl9OJsNT8PhPx07O5FXvdrna+PHTt2YGBgQJVXREREmsQuPKz1Dp/VzCFs2x8umHBRl+PNtTqWtbTYXLTo5E1FFRtUIQZXSk4V+WoO8eDahFX8+DjzdcYFue3bt5tQFIPVdpcix6v8e1dX19x8huEVr4zD/TQn8FtYZSm7FNle6o033jCVbG0gn9+3bVDtQq8We0VERJbOhkN5jmatNhOv9hwN7wMrkrPtz4EDB0x1v9Xeh2ZVrmy3he53ulA27X8GUxETVDHXBbCpI4pr4zlTGf/o5o42H60/8THm+RmOPR988MFaFc502sxnuMH48uXLcxUk3RuMvTJG9Xv1e/LTnKY+vHLz5k0zf2ELXTufqW+F6tfnx4sUVpFlLequ5YLCSgdCtu0P32CeeeaZFbf9WQ+Lu9Wqg9uZKibuZHAwlDUtfuzzySoqlaqD8GxQZXimgMujWVN2rlRx8NHX7+L9J7ahK663jeXu5nMPeqhRiW1W0bC7FFmKey1LbPt5J6KfFnbr2cecj789OWDvExd5F+un6NfnS0REZKMs6q52TsOFEu4I40IJF3abMd7x68Jule194gGkK2nEg3GEA/fmJw7u3R/et1w1h4JTMNVVitUSwoEYUkHv7p7zGvfrg+H6LVu2mEujEtv8HWNghfMZzmu4A22tHmc/L+yulzmNXch1V17ha8SuKTVa6PXzcyYiItLOtj9rOadZadsd2/aHGzqfeOKJuXXyZhyP3+Y0PN6hmRKmimUUkzM4MJhCeDaYUuI5GsdBdPbvk9kSzg2lzbmamUIZH+6I4vue2Ymt3avbuLBRuF8bfK1wjsIL2+nydcyQNecz7MjAEBWr/NjzOJzTrOUGY7+fo/Hz+N6+z3GuwvM0jdoG6RxNc+msszTk/uXzwqLuSgcebMPCQRDLfrHtTzMXfPw2EJrIlvCHL9/CF88WEIyMou98Fg9u68R3zAZQOAAqlKv48o0psJLclbGc6YfIcVEqGsYXLo2b7//A23fNpXplcQv9zjQqsW3DK2wZxIAVB012YMTwympaVm2kxV0/L+xa9WU8bSDFLvTywvDKQrsUvfB+LSIi4gVeWtRdaViFJ3cZbB4dHV1125929XdvJQZUhjGCyJYwbhfuIBKIoC/Si65Q19zibqaSR94pooIKyighgOBcyGWsPAKEHXSEOtf4nvjHQr8z9SW2OYfhfGZ8fNyU2CbOY9aixLafF3bXw5zGzmcWqrxiq/fy/dkdXrFzGvWHFxERuce2D/fKOZqVBN657s3NxGwpycprq2n7085zNK14rPOlCj70pRv41OsTyJUd9F4o4uCmDnzgbbuwtSeOAEO+pQpeuT2NrlgYF0eyyJcriEdCpv3PydvT+M3nr+P/efde9CTWbrOrXyw2L+BrmfMVXljlh2NYWx3fbhbhBmN35ZV2bjD285zG7/MZex/sOTl35RX7fmPfm93naLTBeOUUVpG34C9bJpMxf3rpxOdyFnZ5vbNnz5odXsePH5/b/dVMrVrc5Q412yaG6U3uTlttUIHP5Z++egevXJ9CTyyAwZ4oquEIXrgygUQ0hF29cfzZG3dxYzJnyskxlMJNiZEQkIyG8dC2JDZ3xsxg6OzdjAm5yP0f86XiIIcnHuzJh7Uuse33gZBfj73RQGgp/eF5YW94ex0bXlF/eBER2ci40MS+1Pbkp1fGB8tZTOXxs+0PF3O5qLvatj+rOZbl4jyMu9Ps+JWLfKt9DgrVAoaLIyaEUs1XkQjGUXSKGC2NmVY/k+UZzJRnUHDyppIKAg7iwQgiQbY3DSEeSKDklDBTmUYq2NH214RXXoOtmBfwOgyj8MJ2lvx3fP3aEtsM5PP30L1Lka/nVj0mfp7PrIc2Rnz/XWgNQ+EVERGRpbHrfTwZyjmNV87RLOeciLvtz8GDB7Fnz56m34dWzWkYquX5Jd42N5w2qxL6X5+8i0+dGUUiEsCWzggSnXGcvD2F3//idXz1A4P4oy/dxNmhNC6MZpArVuEEgFQyilIVeGBLB45t7sD54TS+fH0K7zk8gHbzwmuwVcfM8SvnKbzs379/3gbjK1eumE3xDFzZ+QzP0djK6K3g5zmBn4+9UQDfzX1+hhReaQ6FVWQeW02Fb7x8s923b59nHqGlDjy4o4uLusRFXS6MruXxLMfw8LDp7TwwMGAGokxv8vlYbTnlO9MFnBpKY1t3HLmpjPn3rKZS6ozh+UtjpvMh2/8kI0H0JsIYy5RMS6DuRBTRcAATuRL29CfM14amC4uGVUw/t6kCrk/lTT/FfX0JbOmMbbiB0GoWSJdSYtu9S7HZJbb9PJhYD6ndhQZC9RReEREReSvbboJzgs997nN4z3ve46lx5FIC+LwPt27dMnMBLuhyoawV45tWzGf42PO4GVTZunUrRkZGcPHiRbOwa+cz/HMl5ZTTlQzKThlRROaOPxaIIVvJ4W5xGAWnjEiQgd4IytUACk4RxWoZsSCvHzCVVdgyiLfBmivh2dtppOpUUUKtfVAwEEIUMQQD/h5jrsRKXx9mvtnVZS5sXeUusc3qpzxhwdeAe5diM0ts+3k+sx4C+MuZk90vvEKNdin6+fkVERFZymcpPwsvX75sNhU/9NBDnhkbLLWyCs9t8BwTx4DNbPvTjjkNj5nnl1hFkAFrBq+5Pm8rodugwnLHI6yq8sVL4+hNRhCr1CrMJaMh7B1I4fSdaVwYSaNcqaIzHkZfRwzjMwVkihXEAkBnLISZfNnc11AwgJuTtY2LixlOF3FxNIty1TGblXezcotHXkftsprXRv0GY76mbSXJdmww9nMAfz2co1nqfVgsvMLXCF83pMori1NYRRr2cre79r1kKQu7tu3P9u3bcfjw4Za+ITazxzvv14ULF0y55AceeMCEVewClS2nzIstp+xe6OWg6X4fWulCxQyGNnVEkTPPd+3rHAydHy4hEgpg/0AS50erGOiMo+IA07myaQ3Ul4yYsMp0vlY+vSO2cJUXhln+5vwoXrwxhWypah6f7lgY797fh7fv6Vnyh6vpL1+umrBL1Mefac0aTNSX2OYkxb4mmE4nG17h62K1O1c1EPJmZZVmhVfq+8N7ZWeGiIhIM9v+2M82v81pOB87deqUqUbx6KOPmnlBqzR7YZfzlldffdWML5555hlzX3lxl1O+ceOGaWvEChx27Mpx7FJ2pFWdipkfBMDjdt0PAJlKDvFQgs+4+UIkGDE/t8qx0GwjIAZUggiZf89KLAthmGWmOokyiuC/5nbGCCLoDPYgHFj6bkozDgPnND6e0DRpTtOoxLbdpWhfE7bEtn1NrGbn6kYKe/itsspKwyvu/vC8KLwiIiLrET/z7GZiG7712jrtUs7RcIzHtj8MdzS77U8rq9+bTbg3b5qKKtzEvXPnzrlxGddW7Xo852t2M6k9R8OKG/d7nrLFCrKlMlLRMCo8STMrEQliNM1xDvDIzh68fGPKtABCFShX8ghUHQykIpgqVDCeLZnwSVc8tOj9eOH6FP7m7Cgm82yLyp8RwlO7uvGNxzaZTctLlS9Xzc9LsVylDzXz94ev482bN5vLQhuM3ZvO+ZpYzZjez3MaPx/7auc07vMz9edo6sMrthJw2EMdTtaKwirSsJe7XVT0ksUGQjxWDiLu3LmDBx98cO4Do5WatbjLgQ4Hb3wOuKjLhVu7g6i+nDLvfzqdNulN7las35HGD8FGgz+GVFhJZSLLxO69r/PvDKqw3yHviRkEB2AGQwyrMODCtwmGUNgeaG9/Ag9sXbiqyunhND5/ddL8rK2z1VRGMiX83cVx7OqJY3cvF5DvmSmUaxVc4uG5N+KhdBGfvz6FK5O1Edu+nhjCFf8NhlrZK5MDHV44YHaX2B4dHTVJb364uXcpMuiyUQYTft9FaSelzbgPC4VXbKqX7z32/V7hFRER8TvOBziGtp+jNvzQiradrZpDcEzHsAd377Wi7U+jY2nWAh7nJidPnpzbNEB2EaZROWW7qMfAPsckdkcar8P/bzQWigajtTlL/aYLVj+Z/c/B7JyWJ7sDQVScsqmSwu+Z9kEMeYd6TLWURkwwvDptqqpEnOjc81UKFJGuTqM72DfvsTJjKzBEE5yrvGIWoZwcck7GVHMxwZiYt+bWS9WqkyN8TbCcOi/kLrFtdxDbnau88ETAchYKvXZSZ6OFVZp5/I3CK/YknnvdxD2f4Z9+fv5FRGRjspXFeHFvOPPifGahY+J9uHr1qhnjHzp0yFTYa/VnMscIdkyw2vkkQyhcX3/sscfMONV9u5ybsXIkL7yfDOrzHI1tEcPjcJ+jabQez3MmmzpiuDGRQ48Z2tZmNpPZkjk/w1QJhzz8Ks/RdMZDGEsHkCvV5jEVxzEV9Hmu59Ed3Qvel1vTBXzizIgJ+B/sr3UdmC6U8fkrk9jVk8CJHV1vCdEUylVzfKzaQlP5Mj53dRKnRtLg072zO4aOPHAE/tOq12D9BuNGm87d1fF5jm85x+LnOY3f5zPU6nM09RuMg7PhlY26wVhhlQ2uflHX/Uvjl4VdLmSxLBuPv5Vtf5Z6PMvBHZMMqnDH5IkTJ8wb0WK3yftoyymzJLh7Rxo/ALkjzd03zy7q9SQjeHZfL/7yzWEUslUMhMuYKOXMIIRff+3mtKmikoqGkClUkIqFTNWVcChg2v4webu/P4HvfHK7GbQs5M27GRM+6U3c2wU3mIrg4lgW50Yyc2GV0UwRnzw3asItfJnx6195sB99qQj+5PSwCaz0JyJmYPblO2lgJo53FCrob7C7joO1sgN0RLz15t2uwUSjEtt25yrDWyxJt9wS234eCC21hY5X2ffdle5EXOrAiOygiI8ZLwyw2IGRwisiIuLXRV07p7EXr81pGgXw3Tv4OMY/cOBA28aR9uev9OfxvjBAz+M/fvz4XBvLxR53LsBs2rTJXOp3pDHwwn/rrhpoF/VSoRTiwTgylQwCYaDklFGqlhALxE3r0ny1gAi/MbvsGwqGUa3W5lYMqgQRRmeoA93hhRd2WX2FQZWwc+9ktzkR7oRRQnGufZANpGQdtibibsUg4oEEUsFO83UGXmwFF4ZZkKwi0tl4jFoLvLACSy1g4yXtqkxUX2Kb41L7mlhJiW0/z2fWw+LuSitFLoU9cWe5wyuNKq/YxV4/vx5ERGT9s59ltkKkHQcspYo3wiWbAAEAAElEQVRJuy1UbZ6fwxzLM4D/5JNPmvG8X87RcHMwzy9xTLqUTQPuDca2+grvN8Mr7paXNrDP8as5CR0K4iuPbcLvfuEabk4V0R0PIT+Zx0S2iCf39uLCcBq5QsVs7L2bLqAnFjbnaLj7mOdoOF/Y1BnF+09sx57ZEEojPA/DcAqDKnYM1B2PmKosb9yZngurZApl/O35MbxyaxrFchWbO2J414E+HNucwp+cGsa50Sz6EmFzjujUcAbF6RCOpEto1NGJ55kKlSpSkdBc4GUjzWfqN527NxjzHCA3GHNMWr/BeLExqp835fp9PrPaapGLUXilMYVVNij3oq5903O/MfqlsgpPxrPtDwcFTOu28w1wNQMh/jvuGOPlyJEj5gNsJYsn9TvSbN8896KeLT329h29SIS34OMvzZgWPdv6o/iKA314fGc3fvML1/Hm7Rl0xlh9JWcGSD3JMLZ0xxALh/ANxwbxdcc2IR5Z/M2ZKdxIKPjWN18EUJxdKOZ1/teXb5t+if2piFlYfnNoBrenC3h4RxeG0iXs7Ymb3ZDEEMorY0GcHcvi2Y57A8UppoGvT+HMWM6U997eGcWzO7rNv/WKtVgQc6e4ib/jC5Vdt7sU60ts+3kg5OdjJ/se1477sFCJbdsSzn7f7k5071LUYq+IiHhpUdd+ftZ/Rnlxcbc+QMPPXM5nOFazO/jaeSyrWUjiLiAu6nLsYCtENqvlpd2lyPnS/KqBbC0KTGDcXJfhk95IL0rVMm4X75rwCnckFpyi+X5HKIFkKIpwMIruYC/iwfssCPI/M22Zfx3OZ2a/a/5ecPKYqk6ar4UQQhUOMs4MypUyqiib69uWQWw9xK2Q4RQrvVQQclV14e2wAgsrwPDfRANxJAMdngqtrMW4j4v7DD7Z8FOjEtvuXYqswuI+Tr8vjvr9+Nu5gWAp4RUeC69jy2wrvCIiIl7hXoer30zs5XM0dg3RHqtt+8Nw8bPPPruqdo7tDqvY80u7du3CwYMHVzSG4b/hORhe2PKSz6fdYMyqK7x9WzXwSG8vPvDMTnzkhQsYy5axpSuIdz+2HV9zbBP+8B9u4LPnR8GOO04VuDqWQ0c8jD1bOk11/Gf39OI7TmxbdDMxlSpOw3E8z9vwvBDxfMqHXhsyLYd6kxETirk2mcMfvXIbz+zrxaXxLHb3xMwGZ+qOhfDyOPD6SA7Hds5vE/T5a5N4/W7a/P9AMoK37ezGg5uWV0WkVdYqxN5og/H09LR5TTTqmNBog7Gfq9/7fT7T6gD+SsIrodlzM+u18orCKhsQf8n4gelu+1P/om5W+bRmci8289jPnDlj3tgffvjhuV157bTSgZBNGTOxy5QxBzHN0qhvnl3o5W7HeLWKb9sTQKwjimMHt6Cns9ZL8V8+sxOfPj9mBicdsTDikSAGOiI4MNiBJ3d1Y98iSV23fX0JvHk3jbFMEZliLQmejPL1BWzvqn3YMphyaSyLvX2JuWALB1gXRrN46cYU4onIXFCFmMRlGPdupjQvqfuRs6O4OJFDbzyMaCiAs+M5DGVKeP+xQWyfbUG0EVK798MPr/oS23ahl4lelqerL7Ht552Ifh8Iud+X222h8Ao/L/i6qQ+vuHcp+vX1IiIi/uQ+GdloUdcPi7vExSqGPRjU4A6++1W/a8WxrHTcyvLYb7zxhqmEcezYsaYt4rhbXnLBeKGqgflSHsnOBPq6+0x7oHgQ2B4IYKI0hVw1h2gghlgoYsIqDKiw6slCrX/cwgibMIlpH8S2Qg4XCNleqIpQIIwQapUws07aBFUigVoLVj6SVSdgqqoEEZj7+hxOY4MBU5mF4RYqOgXMVKdqt42QCcLUWgdV0IkeT4yvvDIvaBRosnOaa9eumeu4wyt+XthdLwH8dizsria84p7PKLwiIiJrwbSanK2mQo3mNF6tfu+eQzCMwTVmBj3a0fan0fGsZD7Dx5WVLRmEbvb5JY4xWEmfF+IYxJ6j4c+slEr41n1hlAJxPHh0Bwb7amP/D7xtF3b2JfD8hTFzjiYcDmGgK46Dmzvw6PZOPLCldi7nfrZ2xhAKBDCWLSHLFkIOkIoEzfmaA7PneS6P5XDqzgy2s71PLDx3jubyWBZfvDKBYDQ0F1Qh/tx4yMHNmVqrV+Lj/pfnRvHS7Rl0xUJIhIOmBdFHz4yYqP+DmzvgBV6YF/D3m/MVXhhocndMsBuM2THCHV7xylxsI56jWcv7EFggvMLjseEVHtd6q46vsMoG4p6k2ze6hV68Xt2FyONmyINJXdv2p1H/v3Yez3JwoZV96Jmo5LG3OmXMx4Z943mxjx17L6KUxeuvfNm8kdlSdF9/tA/f/NDm2ZLZK3tTe3hrJz5+ahhfuDaJYDAAhyOhAPDItk4cGazttBzO1AY07gospkxaNIR0oYzw7ODI4gIxX4mpKJO/FVPGjmXnXhtK4/BgEvFwbSGqMxrClck8XhlKeyas4sUPh/qy6+4S2xwsc/BsS9Hz5ANfq34aWPh9YdruQvTCfVhqeOV7vud78Gu/9mtmQioiIuKFRV0vz2lsgIYtPBm82Ldvn7ms1W4vWs6chtflYjQXpY8ePWoqRLa7aiA3LPCxu3b5Gk5nTpvgtZ3TbOvePDd2WcljymBKLJDApDOGqlMx1U748DCA0j1b8aTqVE2YhS1+5h2rCcPUAvYMoNQiLC6cGjkB02ioWC0gi7T5GdHgvcqQAadqQiylQBFReGNO4zXuQBMrrDYqsW0DCzz5YEts+8l6mdN4gTu8Yl/PfHw577VtUD//+c/ji1/8In7pl35pjY9WREQ2CvtZtFjw3svzGeJJU55gZ4i42RtyW32Ohht8uWmA/47naBgSWOi2m7XB2FYN5M/kz+d8hn+ePXUSZ4G5Oc+79vfhax/YZAImbBu0EkcGk+iIhfCFqxPm3AzvRaUK7O9LmPM0NJIpmrY9Nqhi9SQiuDtTRGckZKqvuDcVl6oBdMfCKFaqOD+SwYXRHP7+6gR29MTNvyNW7r8+lccLN6fxwKbUvH+/Frw4n2nUMYFrHPXVePi7xg0btnIPz+X5hd/D916a0wQWCK/w+Hixc5qf/umfxj/+x/8YX/EVXwE/8s+rW5q6qHu/nfBeHQjxPrzwwgurKsvWzONZ6mPEx58JSQ5C2IOevejXImXMhVwu1PFDcOvWrWY3J1O9t27dMpVqODCzC728LPcD8NZ0HqFQwFRNMZVVGJiJBE1oZWimaL7eEQ2bhdr6MEe+XMH+/iSyCGAoXcSmFHvBw1RLSQQcdIRD+C/PX8fNqTzGciWM58soFiqmdVA0HJwLvNycKSzpWHkblybzKFcdbO+IYmdXrOmDJz8sMLpLbJtdotks/uEf/sEMllkBiO8Zi5XY9hr+Traz1ORGSh03Cq/whNGf/dmf4Vd+5VfW+vBERGSD9XJfSrjTi3Mafn5ywYn348SJE2bsvVaWG1bhgjqrqXC8+NRTT5lQ81pVDSQuirt3KXKxnGMTLuTZ/vAMNCxn7GrGN9WSqXRSa+/D+ir890HTYsgJOCbAEkDQVECZ/2+r5jsRxFEOFBFw+C8DteZBYaAyU0W+mkMeGVRQRckp1m7LCd6r0BIIzlZ1qSxtjo+iCb8wOBMBd1C2pqe2lzUqsX3x4kUTXHFX41msxLaX2MVHr84J/Dwncy/yut/7Lly4YDYViYiItJo9wWg3E99vTuPF+Ywdo7z44otmXNWODbnNDKuMjIyYOQ3Xwo8cOdL2anCmEn0yacau/PPQoUMmeM05DY+N4xKGW+w5Gv7Jvy/HaJavL2B3bxz5Um0jcGcshFg4hBtTeWzujKEjGjLVV4rlqjm3YmWLFWztiiKejODmVAHbzDkTYDzHtqXAzlQY/+0LN3BxLIOJXBm300VMZIp4dGf3XPCFgRYeA1sO8ecsZqZQxvnxnLkuzwft700gvMKN1H7aUFyPv0PcOMwLMYDw0ksvmd9/zmf4d75m7HyGc14vzxe8fI5jqcfP185aVYtcyQbjT3/603juuefgVwqrbADLXdT14kCIx85+5Vx8ZC/3tWj7s9KBkLsP/VovSNcv0Lh3Kdr0JgdG3I3GsIJ7l+JSPgDPDGdMS57Dg53zBgIXR7O4MJYxYZXjWzrw6UtRXJ3IYUd33AyKWG2FlVa+8kAfCk4An702iWtTtdBJTzyErYkCPn9lAjenitjVE0cyFkZmNINbkznEIgEc3txpfi7bA3EwdD+v3E3jU1cnMV0omxZFLGn3yKYU3ruvr2mDIa+mdhdjyvnFazs7uVOWJwPcJbavXr1qruNe6OWg2ksDvvUwEPLiIKgRPu/cRcHXOt8rRERE1qqX+0K8VjabVRa5AMnFxrVo+7OasIrtQ885wTPPPLPmC9IWH0OG8HmxwWsbXuHY1V2ZhfOa+1XYqKCCUqCEqMNF2dquJf48U00FJdPGJxyIIBFMYaY6OVthpdbCh6ERhk66Aj3IODMoolALtzgBoBhAJV811VRMsMSJmp/FW2WVFVZ0cQdNGIZZDI9nxplC0WEZYP50mHBNR7AbscC9Si0bZXHXjc855zQcnx4/fty8b9hWUrbEdiqVmtcG1UvBCvue5ec5Dd+v7bzSy+xrm3NeBttERES8UiHSq+doeB9Y9YEYEl6rCpFuZqy+hMeIx85AM+cIDzzwgGkvudbsWNsGr7nBma8Pjl05p3GPXe05Go5d77fB+OJYFrlyFY9t75o7h8U/eT7mzbtpPL6jG4cGU9jVG8fl8Rx29SYQCwVM+CRXquAbj23C1p44/ur8KG5MFUyFla5YGA91VnBhLIfToyUThGE1leliBSPpIt64NW0CK7FwEPlyLaTC21z0OMdz+Pj5URNsIV79UF8S7zs6eN+Qy3Ks9Wt0JTjP5e8/f8/4vPNcnT1Hw+qR7k0aXtxg7PdKkX6akwVccxo/n6NRWGUdW+mirtf6u7N1Dcuy2fKtXgiqLDWswlQsj50fLktdkL5f1ZtmaHTc9elNnoTmhx8HRvYD0L3Qy0FS/XFyIBJqUHab/1us1H7mQCqK73h4Cz725jBuTOZRcRz0JSP42sODOL6l9qF6qD+Bm9O1sMr2VBh/9plLuDVVwM6ehAm19CXCSEZDGM6U8OZQBjNVBk4CtUHTplq7oYUMZ4v4uytcWK5iT3fM/Lx0sYKX7qSxrSOGE1s6NuzCrvu1YV+H7hLbfB/h76NNenOAz8GxO7yy1iW2/R5W8Up5uaXiCSHi+4GIiIhXFnW9trjL+8C2P+fPnzfjKq9UdlhKWIXfu3btmtnht9w+9O2Y08yfcwTMmIQXO3a1uxTZOoiPPx93dyXJt+5SNCUg51r42NuvVUixsRAgGUihGigj52RNdRN+PxqIoTPYg1AgjE6nx4RXGEZhmCWTziMQnd00EAibWtwRJ4KCUwb/qzoZhPl1BBBDHBEsvnsy52RQdHIIIWKqsZiKMCghU51GJMivhTZsAL9+cdRW46kvsW03aXA8y0U9d3hlLcPjfloYXS9zMr4GNJ8REZFWstVUVnKOxgvzGWJlB1tlkRj28MLa91LO0fDYGbznn08//fSST+i28v4tdNsch9oqkcTXjT1HwzkZz9kw2GKvw/tSP+4q8TxMwDWXmf0zEgwgV6q9nhgqef+j2/Anrw/h2kQOpUrVtPB5z8F+PLu3x5yD2dW9HVdtZfrOGF780i18cryALR1xxMMhswG4Kx421fYvjeVQCADJSNjc9rcdGzC3sZBcuYK/uDCGiVwJu7pZITJgzi2dGs1g0/UI3nugNnbfqPOZ+vkuz7nwwt87u0nDvi44Xyd3dfxG5+7ayW/zgXr2fdcvm4rXw5xGYZV1ajWLul7ahcj2NEyPsu0P34jZAsgr7jcQYsDj1KlTZkGXC7teGLzRUo+DO6HcuxRthQ1+ADJBbXcp2sVeflju60vi5N00ypWq6anIQc50roxKxcGOrns7q45t7sC+voRJ7laqjqmW0j3b15AYOjk2WHt7YkimWA2YUAsHVMTqJ2zZw9coi21nShVkikC5WMHwZA657jgSC6RvL07kMVOsYHdXBOlCxaSF45EQggHHDIaaFVYhrzzny2F/7xsdO59zd9Kb17W7FOtLbNvXxXLLFK7WeiiZ7adBEN8XeLx+2DkpIiIbZ1HXS4u7PH5WWeTJcVZZZGjCSxab03AczraQHO89/vjjcxUZ/RLgtr29edm7d695PdmQAhf0OFdjeMi9SzEUDJswSdlUTKmFQEzVFKdkvh6aXUIxLVZDPUg4qdp1A2zDE523IDw/cBJAsG5nYa2dEL/G12jt58CpVVvhz3PfnhuPqeDkTPUV/ntWd6GQE0YlUEYRRcSR2NBzmsVed41KbNtdivUltvna4P+3c36xHsIq/F3z25xGlVVERKQVbAttXmi5cxovzGeI7RUZVLFtf9huwgvHZR+jxc7RcOzPoAqPnRX771eVpJ2WEqTg2JWbt+0Gblthg/fr5s2b5nngPMbOaXiymq17eP6E5z0SkZA5/5IplDGVL+Nd+5Jzt72jJ44ffPsuXBnPmetu6YyZFkEW/+3RwXsnv4tVmOCKbRvEl3IkXAv18zxQtlg1c6NYKYCJTAlTudK8cz5uVybyGMkWTQimUKoiXSibcEtXNISTIxm8Z2+vCcNs1A3Fi53ncG/S2LFjh7keN2nwdcHfVQby13qDsd/DKva8up9eOxmfz2m8884sTX0jYO/ulS7qemEgxAHcmTNnMDw8jEceecQsJDEZ5qUk5EILu3wjO3v2LIaGhuaO3e8aVdiYnp42gyIbUuDJ6mRnDzbHgjg/ksHYdAE3x2YHOl1xXN+VwfHNKRNiIQZEGFrhYOnOdN70J9zaFUeoQRuevkgVHcEwRky/RceUhuP1O6NhdCXCGIyFceHWNK6mi/j/3ZrB8S0p/JPHtuGpPW9dUGeFl3K1ijduz+DudMH8PRIKIBkLoT/eePDEwdbdDBeogc0dUROUuR8vvVZXWlnlftxl1cmW2HafAGh3ie31MBDy0/Gz0g6fYz8ds4iI+GtRdym93L06p+G4iFUW+Vn57LPPmhAvq9N5pYLlYo8RF7teffVVs6jFBemVBJBbtTC40tvkyXN3hQ3Ome1CL+dv/LsppbylF7HeMKrhMkpO2bT+4U9kAITVS6K4t4DLlkC8VB1eq4Sgw97vjU/SV4u1QEqlWoET4EJu0URW2L6HwZRqlSGVKjKYQdEpIBFIoivUW6vEUoe3w1ZAJWRNOyHzuLCGi1NrWWQOuE5lNgjDSi8LHeN6WdxdznEzbL9lyxZz4b/jblXbSoqbZ/j76t6l2OoS24ttHvALv83JOKcZGBhY68MQEZF1hp+HNni/0mrqaz2f4diIJ765cfXw4cPmvADvw/0CIl44R8OvseUPK4O7j90rVnos9RU2OI6pDyl0dvdgTzKMc+NZs1n39lTBhEG642HcmcwjW6yYqvXEgAhbAvG27s4UcX0ihy1dsYZBke4I0BMPYzRTNOd22DZoJF1CZyyE3kQE+/sSuDaSwc1MEf/jhRy+cGkcX3N4AF91eOAt97dU5TkaBxeG07gxUUChXDHnhZKxMPYPJk11mPq9yGxHdGemaP7c0hFdtHJLMx5rv8xp3K2kuHG+0bk7u8HYXlpd6dVv84GFNhT75bVTrVYVVhHvtf3hIGg1i7prPRDiwijTrjypzUVdu2PfDoK8smDWqB8iAzW2ZREXdde6JcpKS+PdD58LLtjxQjyRwF2KHBg9FhvH2YtpnBkNIBkNY29PHB2xMD78yh2z9+8bHto8dztnhtL4+BtDuDGRM3/f3ZfENz+8GYc3dbxlILS3K44/OzNqgiPlKpCrVNAZi5jB1KlrEyiUq+hJRpAIBzEyU8TvvnADgx0x7Bu4lxamgUQIN8eyGM8UEQuHEGESmAOdqQKGu9nzfb6Tw2l86vKECcowR8MKMV93oA+7uhevJOGV12krwyr1GpXYtrsU60tsM+3NkwHN3nG3HvohaheiiIhsZPws5NhypRUivdDa1N06Z//+/aaqh70PPCaOkbw8N+AOPW4c4HHz+L06tlrtnIYBnM2bN5sLb2tul+LYOIbuptG1M4VInNVUQoiGYygHy5gqj6E3PGgCKvYY0tVp0w6INR8534kHkugIdplqK26VXK3FUB4Z022I16cwInNtfBhdCc4GT3ibTgXoDb11cZehmKyTqZX3nk2mMIhSa1U0f47K8ErWmUHeyZmQC68fDySQDHS+5Rib/RivlZUujvJx5hx++/bt5uKuMMoLT3jwOu6F3mQy2dTfkdWu5XiB3yqr2HmqiIhIsz7L3UGVZsxn1mKd2bb94Rj5qaeeMifC3cfllcoqjeYzfOxZIZIn7J988kmzBr1SrRwPr/a2TbXHzk5zYWcCdxX0h7JjuJrO4JXhoBmX7eyOoTcZx2cujpmNvB94csfca+r2VB4fO3kXF0ezZmPxpo4ovvboIB7fOf9xiwaBh7ck8fuvjyFdrJjQSLZURTwSxKM7u3B9JGOq7HcnwmbOwVDMh1+/i95kBE/sqp1HsgaSEUymS7g6ljUbiU21FgcYni6Y8zuRuqH8tck8/uLcCG5OF1B1ahuKv2Z/H45v7liX85nVnOeoP3dnK4zydXHjxg3TyYJzGHeF0WZvMPZ79Xu/bSjOZDLmTz/PaVRZZZ1Ybdufemsx4OB94M4lLowyAXjgwIF5bwj2/71yMrd+IMQqMBzAMdV65MgRX72ZrRZDCtyJxEv/tiI+cu0MHosV0BGsIJ/PoJKdRrESxp+/UsRjW6PYOtBjEr3/84XrGM+WsLWrluQ8ezeN//lCEf/2uX0mwWuVHWAyX0Z/KmoGTNOFMgIlJn8DuDqSRqZQwebuGNKlKlLRMPb0xvDmnTT+5NU7eM/RQezuiaNadfCJU8P44pVxnLw1g2AkiO7OGCIRhqBqfRpnsiWMZIoYTNV2jrIn40fOjCBXrmIwGTWtiC6MZfH/Fsr4/se2mSTxYlo1ieBjcGU6j+lCBX2JMHZ1xpZU7WU5g6BmHHt9mUJbYpupXv6e292rdqG3GSW2/Z7a9eNAiINbERGRZi7q2sXY1Y5H1mJO414YbdQ6pxnB8WZyHw/HIVy44rzm0Ucf9WylgVZVa+GYhheGFDKVGYwXR1DMlZHP5TFVmDavp0RXAnmUsCm1xexGy1RnkHamTcsghloYFMk4M3CqVXQFe+cdazDCJdugCacwqDL3KnCAkgmqBGutThlZYYjECSLvZJGpTiMSjCHsRFBEHtlqGrlqBmz4U7vFkKnBPRuHQsmZH4bi8eSczNwx8meboAuAjsD9F+5bNadhNRq2LCJWlllqtZelaNYJnUYVRrl7lfMZVkniTt1ml9j2e/jej3MyzWlERMSr52jsOZB2h1VYpYObibkhkfOC+tY5jTbxrpX6+ZWtbsnx20orRFpemrcthbsK+q49e/DpiYs4jDQGYlUTOiqnZxAKRPD5c3mc2BzBA7s2IVd28HtfuoXL41lT9Z7tg1i95INfvo1UNISjrjAIH47hTNGEUTpjYXOOBoGKCZoMTRUwnS2hryOKvKmKEsD27rgJwHzk5F1UAwFs64yhJx7C354bwwtXJ/HGtUkUKlUkE5G5czTRYACVchUXx3KmKj9N5Er44BtD5mdvSrHqPXB7poA/PjVsjoPnfhbSyt8d3vb16YLZ5NwRDeFAb8I8fs28/WYce32FUb5H2fDK5cuXzVjYbjCea4+7yvOvfH/wUsut5fLKOejlhO+JVX39yr+vFmnZou5aLOxy9yQXRkdHRxdcGLX3yyuDBDso44W7Jq9fv47jx49j69atTbntVmrlYzg8U0SmVMWe/m5Tis30eC+VkZjJ4NZEFl94+XVsTgXx2nQC10crOL6tG5FI7a3owGAI5+5m8PL1SXzD8c0mYMISdbfzwFC1hMe2dZoPfCZ2T49lMZUr4+5kzgxQOAji4m5/MozhTMkMWD59aQy382VTMu4uWxIVKuC6L8MeBbYUqlSxZTCFeDRkFnenChVM58tzYZUv35kxgRBWh7HPCQc/DLGcGsng2bp0cf1j3IrncSxXwp+cH8O16UKtR2QogEM9cfzjQwNmULRa9rhXU2FlqSW27e5VXmyPTVN6fTbVy0nFcn++3xZG/T4Q4mCWgyC/L6iLiIi3FnX9Oqfhgg8XRrnQs9DCqJd2IZId9/EzncfOcYi7uqWXtXJOU0bZLK4lu1JAV7f5WQxe58s5TE6N48Jrl5DqTKF/XzeisSiSsSQCZgzKkEkAeSePFG/DVE1hPKSKUHy2ckcgOVtJhbVUiqYiCoMbrOFSq84SRMAJmlZADKSknSmEKuHavMopm+OzVVlM5VHetmkVVPudYUMid+ufgpOb1/rH1G5xyqbSSsLpWDQk0qo5TW42hMMWRrx1Hl8q2Ik4mlOlpFVzGv7+2hLbe/bsmbd7tVGJbc5rlnuCxO/zGT9WVvF7f3cREfEGe47GbkRr1nymneMDjp0YxmU1OW7G3bHjXvWN+uPy0jkaW42f68ts71lf3dKLWr2JYSZfwUS+jM09KXQnInPn4Lgef344jZdPXcDY1bO4WenAmVsODmzqQDJWC8Hv6UuY9jwvXJk0YRUeZ7ZUwXjBweWZIo5u6jCtf9iq5/RoBmO5MsYzJabR59r77OiMYSpfxq3pAq5NMXDvIBYKYDJTQjZfNm2EyqygX2GQpoRYOIZErNZ2hRuHeU7GOnk3g6F0EXt743Mbdnd2BXF5Io+Xb08vGlaxj3Wz8fH4k7Oj5hwRK/6zhdHurhje/8AmbJ49t9SsOQ0r2DRro7LdYDw4OGgu7g3GvHA+w79zvmPnMyvZYOz3OY0fNxRHIpGWt3dqJYVV1kkv92Yu6rZ7EZVtf7gwyl8kLuoutDDqHpx5AY+Hj/1LL71kBqLPPPNM0xY4WjlQafUgrSseRiISMv0Qe5MshB0wb5SBaBJbB+N47u0HEakW8PznrsAp58yiHhey+LzHEwmw1eDQdAF/f2EMnzozguHpPO6MVBDqzmLPbGiEqd6DvQmcqWQwFgiYyirdKWBnZxSRAHB6NItSuWoGVvv74nj52iROD6XxxK5u5BnwiARNebpCsYJKsYLOVNSEVIpVB/2peyXP7maKpuzcvB2Rs7sWWeml3aXOeJsfuzCOC+wdmYyYAR4Hb2+MZtERnTCBldViGcCRWAx/fvs2cpUyBmMxHOvqxtYmt7Sq371aX2KbvVBXUmJbA6H24s5SLeyKiIjXFnXbPaex/dAZYD948KA5ib3Q/fBiZRVuGODYi4vRhw4d8vyiTDsWnRngMC11XBtCOF8JOgEMdG7GkW3HMTY5inRwCtOT0xgrjiMWi5rrxHi9aAAlpzhbBSWLancRAbb+caq11j2BwFz7H8ZVqIKq+VokEEHZKZnQCdsCRRBDwAmYCi6UCKRmv1d7nnicDLfwNmvhj3uPT601kGMqqrgxHMLb4Pfrv+fWitcqH5d0dcocF++vPU5+LRQMI4omLLCFgFhXGFMYN49GxImZIMz92h6tZvcqcX3AhldsiW0Gu927FO9XYtvv8xk/3geFVUREZDU4XuJchuOA1bb9WcvzIfl83lSN559PP/30ou0kvBTAtxuKWd2S85rHHntsroLERpaMBs05lEyxMhdWYRg/FEuivyeEtz2xB9uTwI1Xb6BUmsDYyDDGZ+c8vPCcyK2pPE7ensGnzo3i2kQOd4crKERz6OuonaOJhgM42J9ElZuKMyWUKlUTYNnWEUVfPIQ3htKmXdC+gQT29SVwaTSLN+/M1MIu8TDC4SCCrKRScVAtV9HZETWVVrLlKnoS905dT+RLzNDMC2yYTQCRIO6ma5UaF9KqufffXp7Ay3dmMJiIYHMygmLFwcXJPP7f0yP4P09sM+GV1eBr+m4wio/fmcJMZQq90TAe6k3hcFei6fNh9wZjcm8wfvPNN817G+cxdk7D94alnKPxclhsvW0oTqfTvt9QrLCKT7n7HlKzFwL4i9jqAYc77coFXbb9WeyXyWthFb5ps/Qv38RPnDjhq7JWrVwg39odw4M7uvD5C+MIBWAGHqyAMjxTwNccG8RAJ8NIcRzauRnnpoAdg8naLsV8AVOTkxiaKOPv0tP4nRkHwVAI27riYDB3fDiNeDiAp/fXBpvdsZAZDOzd34s74zncncpjpOrgfK6MkXQB23ri2D1QCzdU2EfIDGzKSMXCiDFMky8hX67i7mQeRceEhrFvIIme+L3Fw03JCC6N50yAg6EQDojioYBZEO5i0riBazMFnJ7I4/JkEAPRALpyJWyaHRCu1s100bT/2ZQII84+jhx4RkLoqTp4czSHr9pdRncsvKrXxSvT07iZTKC3VEQkGMSVTBZD+QLeOTiIHS1s99KoxDaDbBwULafEtt/7IfqxxJyfy8uJiMj6XNRt55yGbQ25MMpxC/uh277QfljY5XHw8Wfp3wcffHBucaoZ2rFI0so5TTyQQBYzpj1PxJndiYiSqXqSCCRq7S4HNiFYme0LXQmYhX1e0uNjCMWCmInMIBwLIhwM14qeBIGCk0e4GjZfMyEKBlYCDmKBBIrVvKnCUnSKpqIK710sEDc/sxqomrCLMxvssIEUW2Gl1hKIGwWCiOLeTj5TpQVsLVRF0GHVSzYZCpq/z7UQesvjWkUBBVPZpX93L8rBIhwnhkCTgh6s9GKqwSAy9zoJIWxCLPxeNLC6sAqryST6owjHGDjif2DzJBPO6XC6mnY/GuF8pb7Etl3ovXTpkhk736/Ett+CHutlTqMAvoiIeKHtz1qdD2HIg0EVVrtn2ON+5zm81AaI5xUYPOUxL7YR2mtaPV+KhUN4ek8vPvrGEGLhInoTEVOt/sZEDse3duLAQMoEKvbt2IKu22Vs60+iXC6aFqh8PG9MFDAyEcbfXxxGuRrElu44WOxkaKqIL12dwrsP99c2FUdC5txH/46wCZxcH88jnS3htck87swU0JuMYG9/7RwNq+gHZsMnHdzwHA1hKltCkSGXdBHlQK3V0K6+BHa5qqX0xGuvR1bL5zkaSoQD5tzOJtfGY7e72RJOjmVx8W4RoUIEvdMFU/mkGTKlCl65m0ZXNDRX6T4WDmBrKmraAl2dymN/7+o2/r42kcbZSDc6ciVz/udmNo/buQLylR480tfaioA858LLtm3b3rLB+Nq1a+Y6NrzCyiuNNhj7fU7jx8oqKZ+fo/HP2XV5S9ufVi3qkjnBPzvIagUuip46dcr0P1xq2tUrbYD487mge+vWLbPQxIVdvyTWiuUqLozkkb1bxt3KKB7Y3mMGBs3Ex+KfPr7dJGJP3p7Gzak8OmJhvPNgP973yL0WSU/s7sEXrkzg6njeBFziHVEMlyIIdZRwfSZnurhHQ1XcnskgFQ2jtwqcvzODvq4Y+pJRU9mEt/v+hzabCiwfHc7g1lTBlF1zAkBfKmq+T6ykQkz3Jmf7H3Jxlk9bJBRAOBRAxQF664Iej23txOdvTOGLN6fNQMo+z4f6Enhw01sHBW+MZfF3N6dNr8diEbhVBEYuTeCbdvdgV+fqy79xQMl0ciw+/4MyHgpiqlgx3+9exZhrolTC1XwOEcdB72y56lQohFGehJmawvZE85O7C+F7G1sC8cIwG9+Ppqen55XY5uTDHV5hiW0NhNYmtSsiIuKlRd12BUM4LmEvd5bFXWo/dK+EVRiqYHVLHkuzgypWq8aNrB4S7Yog46SRqCZMuKHZPysciKAr1IeZ6qQJUdS+FkYq2I1osLZwGgyETEufdHXanJjnmCiRSqDkFFCpVlCulsyCbb5UMKuu5UIFoUgQuVAGCac2fmIIhTU/EkhhHHdRRGk2YFFrB8Qwi6nswgmOmZHUXjsMXDC8Yu+1Da8wmlJrCVTD/48ijgxYyYRhFy4Q1/7rQNdbWgAxqMIKLkUUzN8TnTHkQ1lz/B3obsrjbAM29bdVC9Wsfg2igJypbFMtOQjFa/fPQdC0XOJ/fLzbxYSaNm0yl/oS29y0w7Ab5zt2PsP3Er/PZ/y2uGsX4BVWERGRlXzeteMcTSuDIbxdbhDkCeijR4+a6tdLuR9eaQPENWKOqTgWf+KJJ3wz/mBo49pkCVdGCphOTuDI5g4T6mi2rzw0YKrJv3R9EhdGsoiFg3hoWyfe/9i9yh8Pbe3Ejp44Lo1lsb07jkRHF6adGJxEHsOFMrKlEjqiFdydziAeDGFzIoChmTxevzWDHb1xzBQq4E198wObMDpTwO+M3MKd6UItgFJ1ahttZ+9bJBQ0m4FZEd9Us+cXZ6vYs8JKiK91OOiMhhBxVSZ5cHMH/vrCGL5wY8qczzETGwDbOmN4bFvXW+731ekC/uzyOCYKFTjFKrLFECYvjOGrd/fg4YHVb8bNlaooVBykZs85WayCz/udKa3u95XVZV4eS4NbpjfFI7VWpBFgvFDCy2MzONqdRIztCdqgfoMxf+/tBmOe22Ugv9EGY7/Pafx2/JnZsIpfzlM3orCKj7RrUde9C7EVPap5wpkLozzRzH7oy+mjtdaLu3bnJE/Q7t6921RX8csbwESmiN/7/GX8w5kxIBBC6lIOu/pT+Ofv2Iu9g81NY3IA8n++aw+ujucwmS2hPxXFzt5aeTirIxbC43t6TLufK2M50zooFQ8jEA+ZvoWdnSFTAaVYqmAsncW2xGxSenQEoa4k9vSl8J5DPaaVzxt3Zkz4JRoKYjhdxLnRjGklNDRVwNaeuLmcujWNYqlqbrtY5A5eB/FoCFv7k4jHIoiG2E6ojPFcCX2zlVCqTq28XNDV+5I4mGPVGDemep+/kzb/ZldHFGNFVvgIYKpQwReGZrCjo2/VvQVZ6YVhm+liBb2ukBH/zkGc+2srMVYooFCtmrCKZRLSoRDGi0Xzvfga7ZDje1J9ie3Jycm5RC/Db/xA5u8o32M4gPJTtSOL72/3Kw3uJVrYFRGRlXzW8fO6lYu6Fm+/FQF8d9sfts3hvGCp98MLbYC4c5Ihm82bN5vxtZ/6GueqGUxUx5HcEsN0dQKZ8gySwRR6Qr1Nr5gRD9aCMLWwioNIIGoCKhafR34/GoiaEAQrerDNDAMinAcwTRIOc1znIFfImzhGIV1EzskjXckiFo0hEUohnkohG0xz4oGkw3mZYyqwVAMVExoJOeHa7SIENgeqtRJinKX2Oqp9h5Vaav+VnBLm7+Ozr7faTsbZxkHz2gVZ/Hm8hE3FlQCKuRKCTmj263nE6m55JWzrH/dag5lrmXZFqx8Hl1GGU2Ff93uvB3tfWV1lLblLbPM+u0tss+os3xe5uMu5DheBOafxy3qDZdeR/FRZRXMaERFZDn7O8bOaF1vh2Y9zGobXOSfg3Ox+bX+8VlmFP5shFYZV9u/fbzYV++XEcr5UwZ++egd/f3YC2UIRL47dxGBHDO97ZAse3v7W4MVqMJzCYMpzB/pxN11AZzSM3X2J+S1qAsDju3owmR/F9Ym8+Tfc+DvYl0BpJItUZ9hsdq44VQxPZdATCaAjX0IlPY4JJ44t3Qm888AgdvfE8ZHXh0y7n0e3d2IyX8HpuzOYzJVwYzyHfYMpDHYweBFAucL5URmFUsWE4iPhIAa740gmwubn8/iuTORxaDZYwvMtodmgS9XOpQO1r9WHNvj9z9+aNudLeI4mnS6ig1VdHZivH+qptThaDVb853mY0WzJVJax+DNNpZlVBo9GCyVTvSXmVGrtAGZ1RkJmw/JYoYRtybWZw/N3nwF7XrgOwt9F2wbVbjDmnIdf559+W2/wa6XIjCqryHro5d6I/XBvZliFt8W+zXzD2rt3rxlILPe213IgxBPjDNnYnZO3b9825WL94q9eu4U3rk9gS1cUqXgUnV2duDg0gz9+8Rp+6OuOmmRrM/G5Yok3NCia89KNKfz1uVFTHSWRiCASDeGRbV1IpSI4PZLB7eFMrYJIBAjPHlc1msKh7Z34f75iO1LIYmpiAldPv4G/uFLBzWwY/Tu7EY8lTaJ3slA2fRQvjmQQjYYwXapgZ18Ct8ZzuDKaNSXiIuGAKW832BVHXyKMnmgY04Uy0oXKXFjllaE0ouEg3r6z2wwQ+GrlYObmTBFnxnJ4cluneV1fnyrg7HgOt2cK2Nd9b6cex319sRDuZMtmIEFvjGZxI11EMhzEsb6EGSAtNcTCQdDjmzvw2ZvTZqcmjyVdqqLiOHh2W+dca6Clqm8jxrY/tSOZfzy8/bBZePfOQimDKCxNyQtxYsXfUYZWuNDLVK+7xDZ3LPphgMH3eL+UqyQt7IqIyHLb/nBO045FXeLP4M9rVXh9KW1/Gh3TWs1n+Lhz5ySDNseOHTM7J59//nlPVHpZirJTxmRlwoQ0ytkKooG4GbZmqmkTJOkILX2BfakYeGArnnoMjLCiStHJmzY+bLHD6yYCKRSQN6EIthCy82lWSeFWIYarY04c1akgJscmcW38Bi6GLmNgXzeioSjikYQJsUSDMRNYYfCC4RNTMQVhU1WGoRH+fIY7eLsMf7DqC0MyrIxSdQUyKg6Po4goEiawYSurMOrCVj9Jh61Og+b2eD2Ggcx1zNdmwzD8f1TMcbBKi6lQ4vA+VhFG2LRMcldzuR+2PMo7WfP4MAhjHk9UzG2xUs1KK7WYx9gGU1w7LqnWDOheaMUL+LpgyWxe+LtoK3wwiM9diq+88oq5jnuXYqMS217TqlbVraQ5jYiILLeNZjs2E7eytSlbrrPtz+DgIE6cOLHsDX9rWVmFYV+eo+HPf+aZZ0zohmvBrdCK5/aFq5P44pVJ9CVCGIyHMTiYwvXxHD7y2hB29SZaUmFlS1fMXOpdHM3io6eGcTdd5JNqwiIH+hI4uKUTX7ozjcmpAjLs/WMqNgYRDgCFYBTbB5P43sc3Y1eyZM7R3L55Hv/1RQdnJkN4aGsK0WAYWzpZGT+By2NZXBjJoCcVNe1/dvcmcHMihy9em0KuxLB/AL0dUQx2RU2rIgY9uBl5pnBvTvPmSMZUMvmKPT2maglfeqxqwpY7r91NY3tXzLweeD8uTeRxfiyLTR3Rec9ffzxsWgPdyRSxJRnB66NZXJrKm/Mdh3sTeLA/seTzY7zeO3d148NnR3E7XTSbiHm+KVuq4NkdXdjSsbwK+/z95m94eHb8HA3OBnPqZi/lqmOCPPy+V/C9oH6DMcMrZ86cwfj4uDmHyjmwuw2qHzbq+qlSJHF9yu+VIv237XyDWYtF3fp+iM34peSb1JtvvmkSdktt++OVgZAJI1y/jvPnz+PAgQOmJYktwbfWuyKXajpXwuvXJ7C5Ow4nXzKJVYZA9gx24NpoBleG0zi0tbnJ3YWwDNxfnR0xH677+7hoCkzlyzg3msXuQBLRSAi7BpI4c3PatOjhhz/TtuPpIp44MoAHdg2a2/n4cBB/dT2HN25PYjqfw/RUBrv7oxjsTmBbLIbp6OxiZYBte5LIzhQRH0iZAMnliTwqrGABYG9XFN2JCEYyRaSiIRNcsW5M5syeQg4CuupaBE0VypjIlfCnp4ZxYSyHiXwZY8UyptPFWgp69qVRnT0Glp375PUpDGVLpiQc79OZiTye3dqBd27rXPLv9dfs7TXVVV4aypgB0EAijGe2deGprUv/MJou5XBq5haGi9PmMPsjKRzr3I5tiQQ6QyEMh2qL0xwUFatV5CoVPNTdacIsXsWy+yyvffr0aTz88MNmImd3KXJw5C6xzV6KDLJ4ccDhx9SuDQyJiIh4aVG3FbsQOa7gwigXWBheX8kiy1qFVTgW4s5JLu66d076aU5TqOZM+CKC2YVWVm8IcJdf2YQsWhFWWUjOyZh2MwyQMCTBMEQlUDZBFb6yWZmEFU8YwmAgw4QlArXlxlS4E4nBFPoGetFT7kS2kkahWkCxWkIum0dltGICK7FkFCG2/wxWEQpETRI+VK2YFkVVpxaH4e0xTBLlY+LAVF6xlUtswKfslBBGbN7Yl7sTeWy1EErBBG8YhOGtmhZEDgM28+c/vF85J4scGGip3ZcSK644BXSi2xzXUrD1UFewFxlnZq5qDQMvyUDHskIvfPxNcGf2cY04fBSStceCxxuqhXPM/TXHy7ZKq2/N2uoS25yrcAfiI488YhYducjLE0oMmjUqse019v3NL3MaHi83Iam1qYiILIbjZbuZ2IaR29kqvVnzB94Oq0PyXAfb/uzYsWPNj2klIZutW7fiyJEj5jg4bvLLfIZeujaJZDRoKpnn8yWz/s6QCtv0nBtO4+k9tZP+rZYtVvDx08MYzRSxtzduzn9kihVcmyqYjcU8ocFqKF++OolcsYJ4JGg2tE7lyji6qRMn9g4iGQ3h+WIKf3k2iDfHp3B3pojp3BS2pyaxrSuCgWgMM/GgidLzGTrYl8DpXBnbumKIR0K4MpFFtlhFJOBgRzKKLd1sK1RGIhzCQOre3OL2dB7lci3Y4j5Hw6oqI9mSCYp87PQwXr2TNueZ7rJyfjKKE7u6zfX4q1r7vWWLHQd/fH7MBFV47onzojPc4DyVxD/a34ewu+rMIp7m+RwAz9+cxliuZM7XvGtXN969Z+mbWdLlMj5xcxKnJjMoVh1siUfx3NZuPNiTxJZ4GG8GwuYcGo+Tf06WKtjXEUd/3XkqL+F8hed+uRl3165dZs5iz9FwczHH3e4Nxlxb8eK8wW/naLLZrNnY4GfefVVLW9v+LBZWaVbbHy6kcFF3NWWf2j0QcodsHn/88bmEYKuPpdnPc6FcqfUCTLJE9T2sGlKqVFEot+8xZYueqXwFB/sTc/ezJxExYY9cvoxQOIjDO7uRK1ZxazxrBkOFYhXP7O3CP396pykV94Vzw/iTf7hmBkRHtvfg1J00ipUKbs8EsGNLCsVSCUkU8Wwqj6c6y/jSWBTpXBHHtnWZxdxwJISrEzmMZUo4fTuN3QNJ5CtVfO3BHnTEwrg8msEff/kO/vbcqGnjc3BTCo/s7TEJ4Eq1tuTZFQ3hI6dH8PpQ2qRlN6VqidwrY1kTRtkarwVVGGo50pPA6fEshjJF7Oxk+fDa/WYFmC/dzeBYb2LJ5eHYr/Hdu3rwju1dyJarprTcUgdRlCsX8YXxC5gp52fTugHcKUxjspTDO/oO4ZFEEn8/k8ZYsfZK4Ufy7mQKDy9z1/BasQE7Dog4ceFloRLbHAzZgZFXSmz7sR8iA3wiIiJeW9Rt5nidx37lyhWzuMK2P1x0Wen9WItwiA3ZcMzz6KOPzts56aewim17U//Ym+qbs9U12oGPF6ueBGarqdhjYLuecoDBkIhp4RNHAnnUAjYIOUAlgI5AF+KBpLmN8fIYctWsqaJiwi7BCsKdYUQ6I0AeKJYLSI8WceP6ELq7e9CxM24C2tFQbecgHw7GS1jpJMQKJSyFHQgjHrS3P4GR0hiy1azZCdkd7kR3uDbmrYVNahVVZpwp8/N53Ax9sOVP3rT8ibuCHpwXhJBFdjaMUwt98N8xNJN1MiawstTfCwZbugN9tZZGptrL8tY6GFTJBTL3nhO2TgrkTSumFLqQmyygs5+VaGo7MhkoiiNlwkVeZ+cDpjf9bIltjre5LsS1lfoS2wy32DkNXx9rza5feWFutdT5DC2n9YGIiGzsczR+ndPYtj+8L6xIsppd+O2ufs+fxeAuK9A98MAD2LZtmy/nMzxOhkSitoKHrWRoWojyHE77HtNLPFcxU8Tu2aAKcSNvVzyEkXQRqWQEya4YDm5O4Ro36uZKyBYcPLg1hn/+xHZzXoZV7X/vxZvIlys4vKUL+cq0OXcyVAxgW5xj7zIC5Tye7CnhuWQF10oJTGQKOLypC5FwCIloEOdHsiZgcvpurS1quljBEzu6sKs7jpGZPP74hWv4y5N3MJQu4spACg8d2ISt/ananKxSxWAygr+9OIbPX5vCQDKCTX1xlMaAoek8Xr8JPDAQMg/zSL6MAbbuyZVMUGVbR9ScZ6FcuYqTY1k80J/Ekb6lhcH5unt6exee2NqJdKliKuDPPa9LUK5W8T/PD+NqplbdhZer6Tw+dKUI7B3EOwY6cO3OkNkcXft5wNZEFM9t6fHFONvOabjBhxuMeSGGy+w5Grbycm8w5oVzHy+cG1Fllfbz/kx9g7LVVNrRy71VYRV32599+/aZy2rvRzsHH+wRzUVdLgA1Ctn4aSDUl4phW28Sl4bT6A3dq4h8dzqP3lQU23vbtyOrWK6lWOtfC1H2aGdQZVsnvjyUxv7d3ejri6NcqqI/P4wf/4aDSMRqi29/f/YuqlUHW3sSpl0QB1DDM0VTfeX8cAE9XQm84+gAvvpYHwqZGdy5cgfFXBa3b6URj8cQCUYRDgVMkvb6VB7BWAjHB5IYm8zjP37qEj53YdwMHHviYZMofvPmNIZnCnjiYB+ujucQDQTwajKMU2M5bO6ImoEc7e+Jm3ZAl8ZzcPoiiMeAzbEgAsUyPnZ53Aw8o46DzV0xE1jpjoZwI13CzUxx2b0MWXGmewWtmy5mh5GuFJAIRcyiNbGKSrZaxIXsXewJd+DBQgGDA/tQYKAjEjEVV7zUAmi5JacXKrHNXYocGPHkk1dKbPttIKRdiCIispRe7muxqNushV0unnD3HscObPvDhZS1PqblPAdc0OXuyYMHD5qe0o2CHn6Z07DVTy1gUZkfiHIqSAZTbTsOBiNsO51G2DaIARKGOOKIoxKooJrLIzdWRNe+2uaHYrWAgpMzoY1gIIRoMG5a67ASCiu0JFIJJAJxJLs7Ue6sYHJ6AoViDtMT07XWRPE4YqkwnEjtWBgwYWURhjEylRlMlmcwUeJ1GTEJmRaio8VJlCtldEYTptoKH880pmvVagIx81oIO2ETTimz1Q+KiKWicAJVhJ2oCarYajK1ii6h2p9mGbq06GOyEBv2WQ4eXyGQM//Pn8YjsF9nWIgBlcxoDslIB5JxnoQJIALOffyx/LVQeJ07++pLbLMNKucz/D1nO1QvlNi2uxD9sIjuDquosoqIiDRig/d2vW4tPt+aMX+wFUl4wpjtQFdbMaCd1e95cpshG/7ZKGTTyuBMs59v3t7hzR343MUxJOL3Hr/pfBmxcBDbu9vXGr5Qrs0jQnV3kYELVht5dmc3Xrw1g4G+BOKpiNlM3JEfxw++cxd2bKrNvV66OonJXAmH+fcAsK07jjtTebNR+eJY0VT5f3hvN775wQE4hSzGz91FNpvD0FCmFrIORxEOB1B2HFONP5aM4Eh/wsTi/8cXruHTr9/CyFTOnL+Kh0O4cHsaw5N5PPPQNgznKiiWKriajODCRA5dsRC647Xx/t6emKkWz9uMs8UqNxZ3BNAfDuJPTt41G4iDlSq2dsVM9wEGTVi55PpMYclhFYtBn+4VVDp5fTyDG9kCkqEQ4rNPQjUUwESxgs/emcK/3NuLR4uT2LXjEGbKFXRGQtibii8rELOW+DvZ6PeH51i3bNliLnwPYYjOnqPhBmO+17o3GDNQvhbvu36rrJLJZNQGSFq7qLtWgyC7mLzSstkcxLEiCRdP2PeQu32aoV2Lu7du3TLtRLiDia1/Gj0HflrY5YfmVz+4Fb//+cu4MlIwbW/GSzPm+L/5xA70day82s1ysV8hP1JZni0ern24MnHLBOqBgSTes7sHR/qTuDldMKGWbckQLrxyB9HwvQ+H4emCSe8Sy6A9uK0Lt6fyOHN7Cr2JEN5zdAATpSo+eGrcXGfEiWO6VERPIgq+pO/kyqhWykiGKjjUlzCLtn/5xl0THpnOFDE0XcTW7hgOdCWRSoRxe6qAWxM5fOrkMLqY0E1F8NenRzBRKOPt+/vQMXss/PeHe+O4NVPErkgZW1NhXJzO41NTBZM+NuXaMiXs7k/g6OZ7A+t2DjEmS7XFOBtUMT8/wCXeIMaLaexGyoRxDvlwZ5n9fbxf2MOW2OaFO6P5nsJwGgdFtsQ2F3bd4RVWamkHDYRERGQ9LeouFCRtl9X2d+eiCRdGV9P2Z612Idr5GPtFP/HEE+Y+LHQ8fpnTxAIxJIJJZKpphGJBlMD2piVEA1GkQu3rz2xaziBiKnkEnXvzddtqJhpgTZIkSoFirQ0QgshNDsHJ37sNVkRhYDw8OyZnaxyGXALVogmPsJUNgywMsDgpBx2JJPIOEO+IAyW2FOXcooxyjidOAnDKAVQS+doxIYTx8hQqcJAIhBE2gZkwCk4BU5UZhKpVhFlS2inVKsTw/gRm54MBhuujZuGa9216OI3NvVtMrZUyyub+sCoLAyExJ74mARA+zrbaiw2qmEOfDRKx1oyp5FQJmCo2frPUSouskMR2nLYlJ3/n60tsc2einc8waNeOBVc/hu95smQ1FYBFRGT94ViCn2k8R7NWm4mbcT7E3faHIRVu4lvrY1rJfIznlh577LF5FSLdx+KX+Qy9fV+vafdz6e4kYqgiP54z50me3duLff3tG7tu7YwiGQmZqiasek+mOmOujIe3duBtO7pwqD+BK5MFc06DlUiunxxBZ+zeeHI8WzIV3+3vxpFNKbP59+zdtAnfPHewHzOlCv70zLg5/zNdiCNTLSIXipoNB3fTZVNNJh6oYHtPDP0x4PmL43glNIlyroBLNyfQ1xnF3mQU3akobk6HcWM0g0+9dht9/Z3oT0bw2QtjGM4UcWx7FwZTtY3OvF+sknJ6NItdMQdb41WMFMr4zK0ZDGeLplp9OlfGyEwRD23vNIEVstXw2+FapmAek3jk3s/kz2drozv5IkqVCvitw93+m88sdU7D1w27cfB9yb3B2M5prl69umYbjPn+3+j9xqsymYzvw/f+ebQ34KLuWuw+bMbiLhdEWZGEvxzPPvtsU0vRtnogxDehM2fO4O7du6ZH9ODg4ILX9dPCLj2yuxexyAF85O/fxJ2ZMg5s6cQzBwfx5L7+th7HkcEUjm3uwMmhtAl5MEjDBO6OnjhObO8yj+uOzpi5EH8nLtTdBo/9f7+ZxrbZcvImHdsZRaE/ie94YgfemCyYgdWmVBS3R2fw2rm7GJ/O4+adAGJsm5OKoac7hcHumOl/+MLFSeQrDvojQb4IwDHXZLaMmxN57B9ImeTqnYmc6f7+jj3d5nWYLVXw+SsTeOPWNJ47PDD3u1ooVbGrK4a3dc7gdK6E61PAnp44YtEQ7mRKYMf6G+M5bOmMoRIMoDMawu6u5S2MsZ3Q2cm8GchuTkZwtDcxF/y5n3Cg8QIlF3YjgRCcquOrxUW3lZ4Q4/W5eMuLu8Q2J0QMrrEkHcMq7oFRq0ps+21xdz0MhEREZH0u6q5m7sD7cfnyZXM5fPgwdu7c2bT70Y7FVNuGlQs5DNksNm7x05yGx9oT6jPhlDulIQScADqCnSaowioh7TyORDCFUrVoKnkw1GH2JQYcJGZbzfA6to2O4cx//TCIwvA4QyuMkxBDJgytmLBLMIkcMqbyCG9/pppGvpo3IY1gKIBAOIBoMIo4wyIMr7C2SakCdtUp5ssoRSvm9nl8oSB/QqRWdhw5BKsRJCK1Rc9StWAqqJRmQz/mUM2xMLQSx/RIGsXDBfPVGGKmpawNi5jKK05wtuVRcllVUngsrAbDiiy18E+01oZoCb9nDP/Ugim1gErds2Mufmut6bbSY29UYtvuUuQaR7tKbPvtsU+n02tWVVNERPzR9sevcxq2RGfQg3Oz1bb9afccwt2G9X7zsVYfS7Of+529CXzv0zvxV6+Ucer2pKlG8viubjyzt7fWDqhNtnXFzLmYz1+dxEyhgngkWAuuxCN4dnet1cxgMmou1s26w9vVl0DpgmNCFzzHw7DFlq4YpnIlfNujWzFSquLKZN5Upp/JlvDq5QkMTeZwbRiI8xxNNIS+7gS6OyLYPZDAyRvTyOYqSCQCCJUK4KmafMnB1Ykcjm/pwOF+VsbPoVAs4+17ekxQhj975GoJZ+/MYHdfwlSjt619tnZE8I6BAK5N5nBhPFurkB8L4cp0wQRBhqYLpgJ+ZzJiKpbs617eOZqJfBmnxnOYLpTRGw/jgb4EupZYZSXOEHmgVvHeHZKpOA7ivA8LVCbxi5XMCdwbjPk7z9vgWJ1zGrvBmAES9zkahl1adfx+qqySzWYXPZftBwqreKyXuxcWdVc6EOL9YEr3/Pnz2L9/P/bu3duSUmmtGnzwF5qLuvwZXNS93xtdK4+lVc//0W3d+CePDZrnlhVj1kI0HMS3P7wFu3sm8ertGZPMfdf+XjyzuwcDs+nX+3nPA1vw6tVxnB+aweauOEqVqqm28uCuHgRiYQxn0jjQl0A6V8Kr5+4iDAd9PQkEHQczuTLS4xl0JqPoGEzhzdESpopAb0cMoWgI8XAW5UoV4WoFN8bKGIxVMJZ3kCmUEQ44ePXqBHb0JbGpO25K892eLuDaRA6DHTHMFCsmQPLVB/oQy6RxbrKMjmjUDJw2JyLIlCqYLlRMa6ELYzkcGEzhue2d6F1GqbhXRzL4m2uTmCnZ3YTAnq4Y/snBfnTNVnhZzI5EH+4UJpGvckG69nNLTsXcDr9XnamaHZWsRMPBUVck6osWQNSs3dtLKbHNQZO7xHazkrZ+GwithxJzIiKyPhd1V7qwyxO8LJHNxd2nnnrKnNBd62NaDpbO5YnppbZhbXe/+dViIKIj1IXMjRz6t29CIty+dqZuDMd0BXuRq2ZRDhRNQCUWSCAeSDR8zOvnjZFABKlgJ6Yrk7UqJqgFVxjBSAU7TJDDNNgJhJGtZk1VFAZZGNDhrZedCgrVAlLBlJnDOOGqiXDwdoIII10uosgqLZUQCuWiaYPqRDnOd0xApFDNm/vA0EzJKZoKLmGnNgZl1RRzf5w4osmIOS5Wkqm1CYqYFke2gkkZQUQQQ2IZFUyqThVpZ8rcR/uo8NjjSCGJ1H1fs7yHISdsgjis8sJ7zT9rIZva8ZjKKtyHgPJcqyK/aFbYg5VCtm7dai58PPieZncp8n2CP8ddYptj+ma8Z/MzwE/zGS6AK3wvIiIWPx8Z8PTaOZrlVr8fHh7GyZMnsXnzZhw9erTpn82tnNNwTsn5GD+jl9KG1U/he3dg5RuPdOPp/iIeeWTfmhwDH7evPzKATR1RfPnmNNLFigmvPLOrB3uX2AqHARtWNjk/kjFBEE5UhmeK2NGbMOdOXr44jt09tQD/Zy+NoVgqo78zZjbL5ssVTM4UEIsEMbitCxcnKxjOOehK1M7RhIqsjF+BU65iZKqEkWgFTiiCyWwJ0XgEb9ycxpbumAnHHOhP4s2hGZwfzmBPf9JsMmZrpWd39WAgnsHn07XXaiISMhVfposVjBdqVV0ujmVxKNKJp7d0mHMsS3V5Ko8PXxjHWK40+4ACL96J4p8c6sd2Phb3caI/heeHpzBdqqArEjKBFW6m5vmYB3pqcyJeJotlFCoOeqIhU3VlI81p+O+5HsMLNxjzNlkogfOZO3fu4Ny5c2bOw7kMqy81c4Ox3zYUp9Nps/7jZwqrrDEvLuquZNDhLjP9+OOPz53kXctjWg5WUuEAjuWmmNZdyhuRHwdCXpGKhvCeg/1494G+2qJiIIBiuYJb41kkmKjtiGE0XcDL1yZxZyKLu0MVHJkuYFtvbRH0yLZu/OBXH8HHX76OqyMZhEMBfM1DW/G+p3bjs9emuAKKUsXBzZEZE1jZ1JNAulhFbyKM5KYQXr0+iUy2YBYwubRZqQJTOSaHw9i3pQdjhSnT85CJ4LF0ESeHCyiVHRQLFVwdKuHWWAYP7urFjq64CbZwkMOgCqukHGEboJEsvnAjgzulKLq6a2+zrP5yoDuOiXwJ16YcHO9P4H2H+7FtiQEdmiqU8XfXp1CuONiVqi0Yl6oOLk8V8IXbM3jvnsbl3d22x3owmhzElewoclUOptibMojt8V4cSG7ChcmbuBQL4urwTfP67oxE8UBXL3YkOnzTC7HZ76H1JbY5abXhFZbSZG9F9k9sRoltPw2EbGk+3ncREdnYvNDLvRlzh7GxMbMwys/zRx99tCVlX1s1h+Bjzzam3HHEY7fjlvvxW9lsL2HYIxKKzj1+po2uw/Y+lVp1FQRQdAqm1U41WWJOBI7D8WptrNcd6jUximx1hk2BEEEYHaFuJAIJTFTHahVCnKqpqMLbMmGVQK0KSdBhNZSiCWPcC2LUqruwZVCp5GCmnKnVIHGAYrVgdu1FEUKlXEKOUZNgEclgB0KoVXlhAMXcL3OtMDLODBJ9MXN/nNlqMbXATMzEVFhjJRnoMkGV5VRVKSCHItiuKGzCJcRATB4ZRBE1P/9+EuhA1plBJVABy8nwfvOxjDsp81gle+IIdgFpTJtwTxjRWvWXtjZgXRm+npo9H+Bzx+ohvDQqsc2dy80qse23yio2fO+Vzy0REVnbCpGc09jPYq98Niyn+j2vx43EN27cwAMPPIBt27b56hyNrdjPz+altmH16zkaL7y+WIXkbbt78Myu7rlzNKxUwoojzEVwYzE33b5+ewa3pvK4OeygZ6oAmx8a6Iji/3rXHnz41SHT+odPw1N7evCtj2zBzZkiSuWKeZ0MTxUwnimiLxVFqQpz2zu6O2shmVzJRPZZVIZVImfyZRPKOL5jELfGi8gUSoiEQ8iWqjh3e8pUWokmg7g1kcWdqTz2DaZwYDCJu6moaVE0UygjHg7hsa0dCFQq+MjZGVxLl1GcDTHwPu7tjqOvUMblag77umL4zsMD2NsdW3IbIG6+/sSVSVNZZWdn1Pw7zrVupIv45LVJfM+xwfs+v5sTUbx3ey/++tYEJkuc0/BxCWBvKo6v29GDqek03gh14bVLIyjzHE04hBP9HXi0zx8VAVsxp+Ht1W8wtuEVu8GYIXT3BuOVtnL224bibDbr+wC+wipriC/4oaEh86LnyU2vvcksddDBk7YsKWcHEa1qj7GcY1oq9wDuwQcfxJYtW5b8b/08EPLKcZvXvOPg+XPD+OvXbmF4Km8qr+zoT+FOtoLRDAtNOxgdq+Du313E9719Dx7YVtvd+vDuXjy4swdjaSZwQ+hKRHBpOI3PvDmEf7g6aVoMsaIKBwqsFMI/2a+Q1UcYRMmOZ1E+M4R4LIJqxYETCiBXqqKnP4JDm1J4/eY0gqEQLk9VEAmHwa5EwYCDeNBBOl/EG5eHsX1TBx7a1oF/+/RWVEMR/O9zY/irUyPIFsvIZovIVcsIjJcQ2QszSGJJOS4Ys8XRNx1YXlCFLk8XTPJ3+2xQhSLBADoiQVNy7qt2dZsqLvf7HXq0ezd2JfpwK1fbybk51o1N0U4UnCpOFrOYDgWwORA0YZ7JYgFfGh9GbCCEwdja7Fxdblil1fge5y6xzbCKXejlTmZObG1/eKZ6GeZY6uDMjwMhVVYREdm4TCuPYtGMpTmOZrjDS3Oape5C5P1giWmesG122592LOzyZOurr75qFmI4H2P7Qj/ODZbLK8dtQyoz5Unknayp8RFCyIRIyk7RVDNBvIpQBJisjKE71F9r7xMIoifciy6nG1Uw4MIxYACjpXHcKY6Z6ils0xkIVhELRGYDGSyvHZwNoFRQdnIIoWgqIXIewLlGNVBFb6QDZaeMfLWIYNTUIkEsEEIqFEWgClQKFVRCZeRKeURDUSSrHejs6DXj/6nqBLLmflQR74maUAz/P1yJmtcv7xl/O2KBJJKB+1dCqccqMbyf7uAI/58VX1i1ZSlhFc70UuhGySmYoAtbJTHowgAMgzCdmzpmNybUQji1Ki5VJNFpHsONPqdpVGJ7ZmbGzGfqS2zbXYpLfV/xW2UVzmcYzBERkY2Ln4NsM8EKi/zc81JQZTnzB1ZRY9CD1+WcoJUnLptdnZHjes4pWSlhuRX77XzGVNbz0PPmt/kMH7kzQ2n81elhXJ/MmRH/9p5aJfm7M0Xz/dFx4NpLd/Ht1QjetqcWGNjdl8S/ffdeTMxWGOlNRDAyncenXr6CL7x2G1+OBBCLx1AoBBDqiJr2PJ2xMHpiYRTzRaQzBZw9U0IiEUbZCSIUDZvNwaFwCA/vH8ALZ+/CqTi4MV1FNRDCloE4ArEIUmEgXyzhwp1JMx/e3pPADz21CbFkCidvz+BPXr2DyXwZhXwemVIVpVAF8YBjfnZHIoJoMICBRAT/6PAA9s9Wf1mqW+ki7mZL2JQMzwVc+Gd/PIwbMwWM5soYTN4/JPGOzd041JXAl8cyyFcq2J2K4eG+2vzqo8NZ3A7EsTMQQCoUxEy5is8MTZnjPj67odvL2hFg53ylv7/fXIjnZOw5Gq7vcJzP8zJ2PrOcDcZ+2lC8XqrfK6yyxr3c+SHMXximvLzmfgMh3g8m1lhZgC1lWIqpHYsqzfoQ5wlmhmz4JraSvo2tXNi1A6yN4OXLY/i9z15kMRQMdsWQK1bwsZdvIBgO4Wse3WkCIsnCBEbTRfzJl2/hJzd3zPUeZB/Hwa7aYOLmRA7//09ewJXRrKlikmFgJF9GvuAgmi4iFQ+jLxHGyZtTyBcrSMTC5mdOTedryeFgAOMzRVwKZ00K+CuPDuCxHV34k5duYjOTKgHg3HAGhUoVkXgI6WwJ8XAQT/aW8OarL2O0FMGHLwHJWAwHB1KYmCwgXQri5ZtpfGxoBtFIEMlYGId2dOO7ntyOXcvsgUg83ka92UOz/Q1NMGeJi6/90U5zcbuZnkG6WkHKAWKzH9yRSBDjpQKuZKZ9EVZZi0EEF26bVWLbjwMhv6d2RURkdRUiGVbhDhaWmPba4uBSFna5KM05AecGrWj70+qFXW5+YIXLHTt24NChQyvqC93K1qZ+a5u6EryPU5VxZKsZ07aHYY6SU0LRmUEsEDetgbLlApxKFXknh6iTQSpwbxxugiuzwY27hVEMFYdr7W0CDorVEsrVMsrBCjoCcYQDYVMaOlPJ1/qbz4ZTuLuv4gRNf3OGPkIBB32RDgSdKMqooOBk0RFKmdBGxSkjHAmZAIoTBqpTwNUr13E2dx4De/qQGowhGowjHAyjmCmjlKpiqjJl5hl83KPBCHrCXaaN0cqeh7fOWVYSIOFjFsP8+YkNpvD/ai2T7v3Hx4WVaMJY2e66duH7w0p3AK4U3ze4eMsL13U4J5menjbzmVu3buHs2bNmzuOuvLLQJiW/VVZhyWy/L+yKiMjKx3C2QiTb5vAzYanVCb02p7FV47k2eeTIkZYHR5tZnZHnyDifZGDoxIkT5sSyX+cFfj7u6xM5/M6XbmIiW8KWzqiZa3z6wriprPLug33ojEcQz0+YecdfnhrB0U0d6J0NZPC+9CVrY0NWSvmPf/Y63rg6jlg4gFyxismZaWRKDkKRADpScWxKRU3IJD2dQ4jneQLATJrttxx0dCUwkwvi8ljWhPG/4qHteHZXNz722hCisTD6OuM4PZQ2536CkZCphM8Qy7ObHVw5cxK5SgB/dC2CghPC3v4UstkyMvkyXryWxieuT5gK+dFICLu3duFbT2zHw1uWPw7kfMzOxdy4gYDnb1gJZalYYeXrdswfV19N53E7X0IXyuiI1H6X+0NBDOdLeHU8g2M9iSVXgVkL9txmu+cEnEO5NxhzrYfzGb63cIMx164437HzGa79LHSMfttQnFFYRVbb9mc5Zdy8NBDiLzYXRbmA0cq2P8s5puVgiW8uSnMAyuNfyRtPq/vNt5JXgjA8jk+fGkKxUsXBLbUTAw6TvKEgSqUKJtJ508eQA54dPQncGM/h2lgWBza9dRDxmbMjJrByfHsnZgoV3JgqYDpcwu1CGdPZErZ1RHB3Ko9bEzkzKNnWnzKBFR7D+HQeqVgQvX1JPLglhUe2d+Md+/vMoOMzp4dN9ZLeVNRUR7mbLiCdLyMVDuL/eMcBfPWxTcjmi/j95y8hUxxFTziLoaEZlKvA2dEyyiXHhFQ2d8WQyZUwPprBttjKdh3v6IianztVrJj0MfEYp4pVPLYpiegq+xZmy7W2QOUAMFEqmNBOIhRCOBDEVIlVbjz0PmoW2ivmhAB3X9oTP2u9MNqoxDYnu+4S2zxGhldsqjeRSMzbBeCXgRAfb1VWERHZmGyJbPcE3ovj4vvNteycgDtxHnvssZa0/WnVwi7vF3ce8kQyK0QyLLQSqqyyeqw8kq/mEA6wnU7t9yHIYtZOrb3N3PPNgo8ImOsy6FGPlVDGSuNmkTMaTKHslEz1E+4kLFbLqDhVRAJB5CpZ0x6IrXuiwahZImU1lzLKpl4J2xPFAgnEQwnEA0mkq9OYqnCcHzDhGV6PxwVWbglFsXXTDhzcHMRMbgaj5SEUS0VkMhNmnuFEgJlSloUqEQnMtjaqlJFFAYMsFbMCHLuzhgqDJTakwuAM/3/1QRLGfKqosM9rkI9/eV4VF1aw4RF4Ae+/E2CLJZjKMDxK8sKchu+ddhGXvc95Esm2Qa0vsc05Dec29v3Tjwu7Ct+LiGw8HJ/x840X4mfXUioyroXFzkG45wRs+8OwSjs0K4DPNVNWiIzFYqYaDP9cybGQKquszovXJjCWLuLQplqbGYYuWMCdVU7GsmUTVuFDvbUzihszRVwYzeDJXW/dgP8PF4Zx5uYkDm7rRsUBrk3mMZUvIXN3GjOTGWzpTqJQKOPinRkTVNnckzDnXTifmU4XEXKq2NQTx6HNKTy0pRPP7u3Fjp44vnQrY26nOx7Gw9s7cXe6YFr+RMMV/JMTO/DPn9qBYqmMv3z9JiYKt7E5XsTISNYc0+k7eRSyVYTDQWzuiiJfrGJiNI2+oIPwCsbdrJbfGw9jLF/GllRk7vXHv2/riGJTYnXzDZ774bsR5wd3cyXz2CRCQcSDAUyXKihVHcS4e3mN8T4zQDNeLCMZCmJHMmZaGdn3hrUOZPH9hBWAeVlogzHDK/YcjXuDsRfmZBttTqPKKmu0qGvLyXFC7+WBUKNj4yIFS8qxIkyr2/40ezGV//by5cvmcvToUXMyeaVvmn5d2PXScTOJe3sii57Z5C3x0EKzYZVsoWzCKmQ6BvH3iCMl921UqiZJenZoBsloyPw/By1dsTAypQriQWBvbwzBahU3x7OmXVBfTwI5rs86MAMSpmkzuSL+rye34R8fv9cKio/TsW2d+OLFMXTyNuNhdMRCuDySwdEtHXhmXy/+9MWr+Ns3buP8cBojmRK6d/dj1+ZOnL52F+lCFbEQEKqWMBgMYHtvBDdnSvjEySE80mAwdz+bEmETSvnktWlcmCrMtQHa3RnFs1vfuuBNLHd3eixr+jpuTUVwuD+5YKugeCiEvFNFiQO1Yt58bapU20G5PeGNDzvuBJ2qjqPoFOYWuLno3hXs8+Qggo8d3yt52bVr17wS29z1wMpUTP3aNC957T4sNggi3jcREdmYi7p2TtPsaiGtXtjl/WCbi6tXr5qdh6xK0q6FFBtWWc1iqi3xzdvgfGw1LSy8NDdYjrVe+HJj+MO0yXGHIGYrHjJUwvY9883/u33885WCua1YoBZAiQQiCPO/UAS5at4EUPj1ChhaiSIcZCDARB3MHKh2OyH0hzeb71vxYAIz1ZAJboScsAnVBJ0QAoEiuoLdJiQzWR5HPphFOVJCJBpGV0cXSoUSRvMTcDjGZrA9lzXtd6KxKLKRHDKRDDpCy9+JyABNwcmbdj0cz9swSQLJhi2AzPsOiqZaDZ93Xof3obFa/CXOdqthpxbKMY9ZrRKLDYSstUqgjEqwOHv/a3OaUDWKoBP25JyG61bc6GN3m3Pzkg2v/H/svQd8XPl5HXpunV7QQbC3Jbnk9qpdS1pppVWzLNlyUeLYcsmL4/piOy5JnDzbsRzHSVxeYqU92XHkWJZlWZbV+0qr1fbKXfYKotfpM7e/3/nuXGAAgiRIgiirOasRQGAw879l7v3K+c45deqUXJOYEzCn4e/W0+fzO2EKsY022mijjatDpKbCvgfvWWJzuAEHijlARuI9YyWqxq9mo3K5dquXw8jIiBBgt2/fLqr91xr/bNTm8nrDUMFCwmyxwArmY+uaHeb/4U/C/198SkY9m8GpipDeTT0kL+/vSUpfIqcBpmlgU2cCw9M1UV3Z0pVGzQtEiYT2NvGYhkLNwf3b8/iVh3YK8SHCgzvz+NgLo7BSPpKGhh2dCYyWLPRnFDyyrwtfOTaJv395XJTxhwoO9L4U9vQmMTQ6hULVk/dTaJeqWEjmYpio+fjMCyN4xy2boF/lADDV9h/aksVHj0/h6XEO/NKSFehLGnh4a27BuiPUHA+vTtWkV9MZ13FzTwoJ/tESoJpK3QtQhgG9Hg4QS76gADflEtIPWmvQfeCro7M4WW7IIDoHLvoSBt420CnHmlhPn8elBoyZB7QOGPM5EWGf94iNktMEzW3Z6D2aNllllYu6kfxRdKKvxI39RmFxkMa1s6DLYsRq2f6spJoJiyYvv/yyBHIrIfG9UQu7xHpZN0kTnekYzk1W5ux8SAZJmSqKFV8UUKL1jhQb2JSLY3tXWIw/M17GF14axpGhAuKGjlknEAuhCDw1U4YqaiPZdAKWFyBmKzBtYHtHEuNVWxRYakGAhuvLa799b/dFx/iH79+GsZKF05PVubJybyaGH39wOz7x1Hn89ZPnkDR1dKVMjBYtvHx6Ep7vgzGcoqpiZzSQjyORUOQcDOwGnjp6Hi9vtecm0XiTXM5nie9fdX2omoKYr0rgx1hKkqol/p4B0MePTWKm3pwSUBXs70zgHx3sRcq8eNrNUCkbzmnEMPDkw2WBvamwstbgeVDyZ2EFdWgwRDKdDYBGUIPi8/OorqsgaLkS28ViUYKi0dFRec6zzz67YEpxNQmB10JW2eis3TbaaKONNq6uqNs6JRPFL+t1EnGp3IF2P8wJKAl7//33r3pCH8Uq10pWmZyclPVTSYXk++tVMGjnNNcPDZqQIFqVQlQqrDSTh+hnoQKKj5iamDsHan4FVb8shBEE4Wsw/jYVde5v5WUCFQ03QCOwYfseYqqGhGrMEWWCwKdEJZJqcgFRhSCJJqPmUPYLok4YFZ5JGokrcUxQTSWwQgujQBelGN+vIqbFRJ3E0KkYw+drcGwX9Vodnu7h1cFXkdfyczHrcq1rxOJogfUPvy6dn4pKYVAU+yTJUjjhCU2UaRLKxTFo+JoKVCZJtFBtIQpx35Jss9aguourWgvWK+qWqg3DXx9qkVcC85NWiW1eV6NCL69RvB88//zzczkNr7PrdZteC1OIbbTRRhttLA+MK3iPYo+mdZh4Peczl+ofRVagAwMD2Ldv36qrml1Pj4Z/R0sObsNtt902F09cz1rWU79juVhvjfCelIlXR8tz/+Zu7UrqojIfayFzTNVcZOMGdnWHPZqJsoUvH5/Ci0Ml+bdfrcFxW4czFCGXMCzvjGuI1Sowa1XEPQd9yQyqgYLZuouG48F2PBlC/t6DPRcRPt5+cw+OT1bxykhZiDE82rmEgR+4Y5PYAv2XR8/Jz9ijGS40cGSkAsvxEQ9TCKiGga6kgWxah2PbUN0GTl6o4fFnnsf2/u65mHW5x6Vkh2Q37hvydPhnXPNSPZqhsoWPHJ7AcMWay4C2ZmP4wC196CPJfhEyuia9LOpm6lEeGQSw/ABJTVkXFkBPT5XxSqGGnKmhwzTgBAGGaza+ODKD7x3IyXPWa/xP8NiRsM7H1q1bFwwYM5+J7K4j1ZVIHX+9olarbficZu0z9dc4eJIzAIoCitYgiGAgwRN/PaI16OAa6XvID+w999wjxai1wLVObUZqMGwQk2m8Eh7QG7Wwu54CIa7ljQf6cGq8jNFCHT2ZGCyXBVwFnZkYpuoeal4NI5UAu/IavveOAcQNDWcnKvjDzx3BWKGOzrSJqt3AcMFCwVGQTxrozcaEYEHLIAZQLw6XQ99EVcGsHeDpC2V8146skDJmazYKCPAj924TVuxikBzz2++5GU+cnsZosYGOpIn7dnUIkeYPPv2KKLX05RLyfjU3kLUdOT+LbDYG2w3QmdKxOZ+AqauIxxMYtwzs3JTAkzM6Rk6PIuGfxa2dKrb3hTc+3gAvJXl4rmzjaMHC9kwMyeZaGagMVW08M1nFu7bPfy7pJ/k3x6ZQtFxsyZgSxJCUc3iyiq+eL+B79nZd9PoF25KbgqcA9ciqjIVpKq548wzqtQJ95u2gIUVmElUIfg0CXaYzlcBc10HQUuA9gMecDyaYTzzxhJABec0iOTDyUI+ColaJ7fVQ2OW19FokOttoo4022tiYXu6Li7oR1uskYpTPRIWyqakpIXpQHWC1bH9WavKvVQ3m5ptvlmmglVpPO6e5PphKDDE1JvY+BoyQuCKkivA/Bzagh7Y0VASMSBYlb1YIJJGyiBtYUOHL62hKUiyFaHtZcWtCUHF8T9RUSGapOw3JAzqMjJBVaKsTU0JSymIilBTi1Cxialxem6QPQ4khriTEIohEFW4Dn6dR+Yc1jMAlrQWKRrKMD12JQ2fcZ8YRTybQ8BpQlDjGKjWcmTgNnGqg20ihsyOMa5l3X+r8JvGEhA0T8QU2QNxPjPdb1VUaqKMeUNGF6jFmeD2Ch6pfgq4aFxFz+DpC3qHmuKT88/k638uHC3UJ9ZbVhK8wzyKxSV1A2BEdGGV+wGkjIR6Pi+0AH1SOZP2IeUurxDb/HeU0rRLba402WaWNNtpo4zsDYineVFO5VI9mI5BVeE89duyYqJIcOnRI7C02Uo+GDVX2aPj37NFcj0Jk61qIjZjTrKc137s9h2cuFDA4W8embKyplKIIwaPq+Dg/W8d4Degyfbzn5k70pk1RQfnQY+dxcrKGjqQh5PDRsouC7cmg8Y7eMOabKNQwPltBocxeTkxU7suVOp49OowHDm7Gpt4UCnUbE4UG3n5LP3Y2h5VbQWLKr7x5F569UMTZ6TqSpoo7tuSwvSOOX/rEEYn6dzT/bn9fGscnKjgzVUVvUoHtA0lVwbaOBBIxXWLXWUdHT1bB0YKBz54YhOGdxB39OvZt6Z7r0ZCcsFTMOttw8dR4Fd1xA3vz84MIw1UH3xwpYU8+NkcoYc72iWNTQljZkonJ8Lbj+ThXbOCTx6fxU3f0X/QeJH1ozYHimksTIPZAFHEQKNuhzexaxtJUUjlSrIkyTLKpoGMqCrriutgWXag2ifnrJN6/lgHjRx99FLt37xZSPgeMabfG8ybKZ/hYTwPG1deAWuT66Hi9xou60cVjqQ/neg+EuA0sMFBSjkokDz744IoQPa5nTVdzE+dzBwcHceLEiRVXg7lRhV2+Ji+AJAZ1dXVdttB3Pe+xXvD6/b0o1hx89ZVRnJmowNBVPLC3B286tAnnZxsYnK5gADP4wMO7cVN/OPn6lcMjQlTZvzk7dzxJUnlxqIJS3UWx7kogUHFY8gO60yb6s3FhtyYMDc+fL+DlkQq6EhpcH4gn4vjUq5P40skZvOmmbnzf7ZuQjs9fHvna77hlYfD/8uAsSjUHWzoT8l5cxV6Rb1NwYbqGnVlVFFe8QBEiTkNRUA4AX1XwxLSNF4qu3NAVJYVXbQ0/ntdQHRoSZvml/L9HqzYcL0AyMX8+MFBJ6RrOlMIgIMKxmTqm6w42p0OiCo84yThpU8Pz4xW8Y1cHjEUSdyXXhqsEMAIgFnmOI4ATePK7a4HleThdLWGoHnrdb0mksDuVgSmy5VcHKTwjmPOcX1h4ZiMqZDRvVET+7j09PfIgWOiNphRZ+GWAFEls88Hrw1p5wpNIw3N1I+/zNtpoo402rq+oG2G9qkVGMTTXRhvQ8+fPX7cV6Eqt6WqKu1SBIcmGccBKq8Fcz1Tk5cAY5vTp01LQYU5zI6aQ1ktOw3Mpr3WigFkhVgeBK4TqDrVLyBQkg9TsBvwaG/bdQkJxA0cUVagSElna0O7HVwKUnQYs30EAS2xTa64TTiTqBkxFF8WTMiqoeA2Ymi66LiSzeD5wzD2LhBpDb6wbHfp8rsSvJmIwqZbSAtufj/HDugW90JNCaiH8kgezMyZqhlW/gbG6jVnHlXUpaMCMq9AScSidcdQ8E4lSQybQOLATkROY00TkBLmmwF5E1AiJPVSJoVVRK1nF8uvyLCrV8HCLVH+gNUns1kVkFdkOlnXFQ5ZTh+qCPCIs9V495P1gyfp4zLgvl7IsWg4itZfW7Q8RKqzw87iR42seY5LZeZ2NJLaZN7RKbPO600peWa7S6I0q7FKpqo022mijjdcueG9lbHop4v2NjIlXAlwb1x8RPYjrtQJdiTVdbSw+MTEhw9Akt9KKdaX6HTeSrDI9PS3rjmKWlazBrrd4b19vGv/gzgF89tUJDM42pJ+wtyeJf/rgNhQbLs7O1NHtTONtd/bi3t2hOv1T5ws4NVWT50VWOt0pE/WGDbdRx+mxEnzmMzaVU3z05JJi/cP+TyZp4onj4zh8bhoDfXm4roe4Z+PpVy7gJ4+P4P59fXjfA7vR3zF/nidMDa/f3YnX755f92TFxnjJFrJM1KPZnIshYah4dayCzTkVcS+GmqtgpmLLcPN4qYGa7XGuGS8OV5CKcTAWeGIiwE8lgb3OhNThSUaIlDX4NSInjFQdVGwPW9LmwpwwpmGi5orqSj4W9lZIUhksWehNGkJUYU7CnkxPwsSZQh0TNecidZWi7aHqAloQIG3qkgfx7xpegOkWZ4GrAfM3EkyOFuqw/QA70zHc1plCxrj6c9pi39v3xbqpFYaiwAsC1F3vktfajQJeT1rVVJjfRjaorCsx571UD2+14Xme2LK2ySptXNHL/VJElfUeCEXTh7ww7927V/wD1/oCczX7i/ufcni8gNx9991y4VhJ3AiyCi8sR44cEakpXuC4/mgKKVJfuN5Czlofw8Xg9N577t6KNxzoxdB0DcmYjh09Kfn565qF7sceG5ZZs08+PyzM08eOTyKT1BdsSyZhojup4d239yGRjOGTL49jfKKKiuPj+GQNwyULB3pT6MvGsac3jU05E/dszeEzr04KGzRDMkndxV88PSRBy794+97L+hVm4jqqboCnhypwAyBpqNiSi4n10O6eNH7y9hheLcbwp09PYEzVYKZjEizpugbXC1APfGRjukjsjZQtfG4E+P133i3nbVTIi/y/SRQT/28lLYHJYvYsfR1b5fgIbhMDtImajemGJwFJNqYJQUanjJzPwGjhNnm0/BEpcxbLw4lQEmEnaxpcK8CueAO7s/PM4CuBRfNHp0aFqMLXZgF2sFbFUL2Kh7o3ie3Q1YAS5oqiwQ+8BRLenK5kIZo9so02hdiKpSasGQSzeBoVUFsltnmt4PlCwkqUNK2mxHZ7CrGNNtpo4zvHy/1KhYb1SsCP7om02OO2rIXtz+WUVZYD3vNZlOZ9/o477ljxAsiNyGloccg1k6hSKpUkn+T3UT5zNZYxGyWnIeGkS+sRSgOJHfy3roTHKok0Zisl+A0XZbeKhh+SHkgUSWoLmwwxJQbd0JDWOjBuFTFqz6LqeZJHWH4FKc1ETk8iraZQ8WvIaFnU3QbqHm18QkOikldDtTYEJDej07iSIqqCituA49fkX3HVQEpPSGxtejFUz48j392BolfGuYqLuss8hPkHnx2AIX6nQQJMgAJs7NyxDQcP3CzNlJmZGTl/qQbEz2IYr+YR7zGg6AuPXyjkHVnitP48JJmINVHTBohbOf83CxH+bJ4MIjZKgWRQ8OToUKVRE8uj5YJ/VUOZuifN1+XPLCSQRgyhle3VQA1U+OTStNhGResmiWcj2ABdDrwXtF6n+FnldZePbdu2XSSxzZyX14PWKUVeL1YLr4UpxDbaaKONNi5v+xMNE18up1mv+Uy0Nt6vvv3tbwsRlLY/ax0rXI2yCp/HfIADxVSDIVllpddCrGROw9fisAMfVOXkIDQHCFiDjXKaq7GMudz7rCe8bkcHbhvI4vxMXWyAqHBitvQcHnvsPDpiKj774jCqlotnh0i+D/sIEUjE6O3O4u7NA9ibM/Cxb5/Dq4MzKFk+zkxWMVZsYP9ADt2ZGA5t7RCV/R+6dwv+7vFTKDRsZLJx2K6HTz11FidGCvjtf3gvcqlLq3qnTA1Wo4GTZ2bhOQ5MQ8fmvhy6uzLYkovjB/ebqNgp/OfHp/DycBE2J5e5ZlWR6J59hripibr+SKGBv3ixiI/+1P1IGMocOeHChQtSh4/Uz2tmVsgtFHNs5Wuw36IpgNHyQ8sN+zBFyxM1Fdr7sI+Uj+tC5LE4cbAIjh+qqpjNdUavU7V9TAYuDs/UsT8fX3BsLgf2iD4/XMBLM1UhmjAHOV1u4FipgR/Y3omceXU1BqqpZA0dU5Yzp6xC1D1felQ5XUVpA+czkTpv63WW+Q2vBXyg2bOMzo+oh7dWA8bValW+rnWt63rRVlZZw6Lueg6Eoml+ru3ee++VD9d6wHLJKix+vPDCC8J8oxrMjZBkula5u0shYkdzG++77z75ykc0hUTiEKcTWciJgqJrlZtabiBEuTf6DvIs7s3EoC5iS64kOlIxeSy11qdGXPzvM0dRarhSHD0/WUFcU7Apn5zzL+TNnd9tysXw2IUqCnUXnUlDWK5U9yiXXUyWLWzL6ICqY19fFlN1V5RKbuqdV4fIWi6ePl/Ey8Ml3LktLO4eHS3j0eMTGJppYFM+jof29eDURAXTViAqLilTRcELMFOrImsA779nC2p2CV8/OonNaR0zZlwCDLI/7CCQQIJvN11zhG3cmTBwerqOC8UGtuUTF/l/R4XexvQobDuL0zUTvQkDiXgcjqLB9gLc0pmQQPKpcwVUbBepuI7ZuoO6F74fd9NElcVz4IHNmSUtjxKaLjcFVwEaroeRMn0pqQ4DFOsBPlKdwW1dCbxne34uULoczlTKOFMtC9M2/KSE593piocdyQz2prNXdY6wAJ9EChWUEASOTGDyld3AQyKIw/bsNU/WrgfRfWO5Etv8bPC6EZFXGDivpsR2RFZZb82iNtpoo402bpyX+6WwXpVVGENF90+S19eDld5yi6n8PZv8LHzcdNNN0uS9EffclSarDDWVAnft2oUtW7bIz3husJDD48F8JirkRDkNidnXEsMtd90kjwi5WaxkblzBKFIvuUgwQ5Q5PFTTDZxvDDUn40h9cEUzMK3Pq86IiiDXGGiYsspif8NHw/PhBD7KbgMN30XeiMn2kNwy5RVgqoY8CBMGal4do40pdOi5MG+ldVBQRd2vyXvQAiimJDBjl1D3qHQSep9XPb6+jZyRRCxIINZtIlA8OK4J23OR0LRmgZOFWFUm52qeg5wRg+W7GLWK2JbslBiRj1b/bx7/8fEJBLMeOrfkhbQRM2MwY7RrDdVV9MCQdVI1JSKaiBILB4Ca6oqRMkuYuSw6BqLSoiFg0qOHx94N7DliSx1VUUhJIwtTuTIhgn/Hv6GySkSnCV/Jl59TXWWx6uOVQGUYJdBkv0YEHZ6fsn1+aKm2kXOaK61/scQ2rw8kuDGfGR4eFmuD1ZTYfi34u7fRRhtttHHtCpHrvUfDNVHZg/fK2267bc1sf65VWYV1bSr281jQ9udGEERXmqzCtVLVkj2Ze+65R+ISbm9Ug2VMS+IN0dqjuVolyavN7WbqjpAe2EdYTl3+WpE0NRzoX/o4HZ2w8aevHEexEcax4yULjqJgaz4u9joR2KfpziYwOF3C8EwVXdk4Zqs2GoGCQsXF+Mlp7OxOIqkBO3szCBwXxaqFmzbn53o9nZk4jg8V8NiRUXz3PTvkZ8OFBr5xegYnJ6uipHL/jjzQsDAxOo2ZQg2JmAHHtXDk9DiSE2W86fbt2JQO8IffnhHCC/tElYYDU9fkK4k1uqaInVHN8dGXi2Os0MCz52bw0P5eUQjlo5WcwONfHzoNr5zAqUocm5I6kvEEAk0T+6P7+tKoWx6+dmIa01VbFPsrlouphgtTU6ApCgoNF1M1B7s74uhLXhznpnQVcQVwAgV1lxawPkr1sL/iuz4+emIGe3Ix/NDeTqSXoYxyvmLh2ekKKo4nfR7Ja4IAVdfHc1MVvHngSgMOC8FtuLMrja+MzGKy4ch6qdZSdTzsySaQYm63wfMZ4nJkE+Yni3t4UY+G9RCeL9GAcURuu1H7pNokq2x0Av7aV+u+g4u66zUQ4gWXQQS3gdP864WostxiKgscZDqy8EHrnxvVSF3Jwi4nihgERTJ4fF1e0BZPIUWFHB6jSG4qYuxFU4pXuugtd3+cnKjgs4cncGGWU3YKdnYl8M5b+rCre3ULOWTcfmvIRX+vggObQsYylZNfGSrg2FgFN29KCwFjcKqCnmwcHbkkjj07jv5sDOcL9WZZkTdIRSbYzpcdGL6NzqSKj70wKezVyaoj/osMhtIxHSNFC+em60JWefL0DD706BkU644Ea6+MlPD4ySmULA9bOpNIVS0Uq7Z4u/Nmr+gmfvCBHfjzzz2FYs3F1oEMZuoBy9ZgWZfEEpKAYoYqRJmG48n7kuFqhyOKC8CAeGBgQB43U35saAZfulDEcM2BW6qDQ4l7UhrOnangj45VZF0s5dq+j0oQoKsnJYEs2TFh8TZkOC91HvTEEmBYzYJ4wdUxWaXMuAJDDdAdM+TnL0zVsDMTE9JKFJxcCierJdQ8F7pCme9A1FV4tSOD+ZnZUWxLJhFTr+42lFZzUHxFisOO72LarjSl0UvwdRdq6mLlmY1mA7RccBujRgCbQZeS2G4t9F7Ka/Na0FZWaaONNtp47eFqi7oReP9aT2qRrdN7BKcP1wNRhRAbkysQ8HkMqLDIuJ8FUsb4N3I9K5HTcHuYg42Pj4sCDIt60RTr4imkiIzNB3M3/m2Uz1zOG3zxuq8EIfb6FdRRQxCE1ipxJJFU03P2MKuFutGAo3vIqnEheXCbS34JM05J1Ex0VQ+JFXCRUTMo2FU4gYuYEkfJbYjPerhNoeWPHdTRbZioug0U3TpiKoucCgxFk+00FAOWb8EOHCGvFLxp1IJqkxqhwArqkovU/DqSahIOs6bAl1yBRHA1MKD7OowsVUg0IcjwLzVVg+K3qJcogB3MK46EaoqXJifs3LkTjmtj1poWy6SGW0fVqkIJFKCuopqvAbFQ7ZGvF5ZkSenhdoWvHR35i210+DMxVoJddxAzYk2SSahYwudrMIQYUg3K0AJj7jy41PnE57oIyS4kpYQaLXIk5OcN1JBAasm1XApci+HH4Kq2EFb4H489LU1dxUXPtk6oxsYt7vL+cTU5DZ8bffYvJbEdTbHysdIS28yfNnpht4022mijjYWI1FSupkezHsn3rLtxsJXbwnvgeiGqLHegmBY67DExB7jrrrtuaD62UjlNNADNWiutlhinsEdDUO2eD6rbtJKxR0dHcfz4cclhopyGX5ezvctZ82TVxjfOFUSVgz2FnpSBB7fmsa97dW2gijUbXzpVg2Kq2L8pJMTnUg08eXoaz5+ZxAP7w/NzvGyHhJfeFP7T4yeQoy2Qyz6FCs/lsVLhKcCZmQaS8PBdhzbj8y8OCQFmrFCX/o6pq9K/YIh9Zqwkr3tmqob/97FzGC1aSMY0HJ+o4tnBAuqTM0gaCnb0ZjBVDQk9AS1SGxa+79YeHD9/AeNlFzv6sjjHAWhDnyPE8LkxXYXr+ahZHpIGFd3D3sXlyAn72UeZKOKTp6Yxyh5NuSD9qi1JFVqhgV958jymatxYDoMDBcdDJh+HZzJGFkp+mBUozK8uvj5xSDmnK3BJLlFjmLI8ISixD9Sd0NHF7S808PhoBW/dmpU1X47AdLzUwKzlSh+HT2M/jH2suu/hCyNFsQPqil+d8unBXFIyoOenK5i1HZQdDgkAp0u0PaojryZxH5X9byCx6kahtR62XCweMOaATtSj4UDPjRwwrlarYsO6Xmpe14qNvfoNXtSNnrteCrut8mac3uNJvt4avpcLHPlzstaiAmlUDL2Ra7neIIh/z+lCNpUPHjwohATiUtu4uJDDYCkq9EaWIK2WQZdSPbjSukeLDfzvJ4cwXbExkI/L818ZLcsN/2cf2oGe9KWl11Yah4dLIjfdl43NbcveTRmRjBuabYh3H4uFvdkEfuQNu8BYgkxdy9VkvQwU5BnNmqqqsdDp4k+fuICZOtmkgSiQ5OI6bu5Lhzd2+gHGNAlMPvbsEGqWi3198z7rJKyQzHLvzg5s706iWHNgOVTFUFC1PJQansiy8Y5Nr76wrEliR1TEJaGi2axQgNm6KxZC2zsuP93H59+/tQt7e3I4LbJxPjK+Dbswgw9+YwyVhoeepIJ4LI4ZR8VowYZmNNDRlZRt4nuROUwvRJJjFtv5bI6lUS/4qGseHD2JIAjP8bqjYToAcmaAhuvjr49N4hNSpAZu6UnhLTvy6E5cHNCU2KBoFrGprsJ3Y0hGasmsbeGV0ijuzG25qusMn5vWckj6aRy3zqHsWDBU+kqqqNJHPuNi0plBrxmynl9ryiqXw6UktsMp1nGRrGRgvVIS2+3CbhtttNHGawvXUtRdjwR8FgVYFGVczOk9ymWvl3xrOcVU2uawKM1CKAukN1JR4EpruZp9zjUTXDMLtdFrLkUibiVjR2Rbxisk8JNkxEIL4xQSXvj1Wi2DSFQhKYHROHU4SMaooiyqGxlt9QYySESwdEcI1ySqEPyMpZFG2S+j6tUQV0wpWyaUBDJqHqPesBA/Zt2G5De092FiQxoHw/Cyw+d6KLpjsDwHdYUWQyoyehxZnaqOvsTHQjQJ6qJWYmCenMH9XvJnhYxhqgn5ndcknbiBOz9xp4VWOnrLxCqLnIznI+IGaSCheg3QY15ZetjQTfRo/aKQQiqI53qozFZRDApwaElUcaFrOkzTgJoIE6iIbNJcVbhOuDIQ0ArRX/F1uL4TWpwqkdVOuNZQwYTrt1HAVCjvDA0JJIXItPhc5VZFFkURTWVeXYV5TQMmTOgi0o2rJKzEZRscpbrAEiiRi0PXqbZC8tDGI61crzLMpSS2eY3g9YFkt5WU2Gbda6NLZrfRRhtttBGC93XmAHwQV5PTrDfyPQkQJGySGMH6Put66wmXU5zncWCvgz0PDuVywO5G95hWosc2MjIi+5zk6t27d192GxeTsXnORY3pSEmS6pGtlkGL46Pl7JOa4+Hvj0/hQtFCbyoctB0t2/jMiSnE9V5sz6+edeKrQ0UU6j5u7Z8fLNiUi2NHdxKTszUcGy8LESWf0PHeW/vQk9IwVbIkbj5XtLjToDZrBuS3e5oK1zDwqeeGUak2ULccFOoO0tNV3Lo1LwPFVGjJJg05pz59ZFx6Vnt7U3M9jaGZKo4MF7GvNyUK/OWGK/uMpI6pUh2Nui09Gq4hbmiy/9wmgYLfk/wjcbgSkj1mqjZySUPe/0o40JvDlnwax2cboiiSDBxk7BL+/TdHca5ooz+hIB6PoeZrGCo7cAsBujgE3uwPJXRF+ixUzOlNLcwltqdMpF0XZyokuYT5lmhzUmnFCVBSfekzffrUNL55dkZsg27qSOAtOzuwI3fxOTHRsKUfxf3SYKInNrYKHObijodPDc7ih3d3i4XPcsFz4GA+hf25JL40PItnp6tIagrimipKMieVJL45XsTDm27c4M2NAj/30ZDRtYB/20pu4/nLnCNyT+D1kc9p7dEkkxfnossF6ymvBfX7NlllBU5cJs/XUtRdT4Vdeu5R2YM30sj2h4zQKLhbL7hUkEAZNrJeeQyiAulqrOV6CruRpBwvVPfff/+CAslyzyMWr8mq5iOyBInIKyQdsdDTKkfHwu9yXvv5waLIuFG1JHp+Oq7j6GgFLw+V8PD+HqwWHK85WdeybhZId/amhWDynts3CQP20NY8njwzi48/ew6jhTrIeQ5ETYQMWU1eh69BpZCqpYgHIe1xyCnhzX22HuDcTA06FYWycdy9PY/BmRpGCnUJvKL359f+bBynJqpCUknFdOSbAUWp7ohySsLQ0J/RocKBFvhIa0DRDX0GVUZjLBq7vljx0AqIwdcP37EpZAwvA11xHV3x+emvr1QBVyvips1xeJ4j1yTLsSXyqZQt7OxPinekqmooWB7Kduh734pnzs3iv33zHF4dmhEboESmjp6tXcjn41LU5gTnTMNFodgQAlBemMDAeLWAM4UGfu7OTci2yP0RZuSp6HkLXOj5MFUVU3YFRbeBvHH1n9eq38C4XUTDZUhpy+sZpGVDwZg1hR6jc8PdoK92CvFKWJw4LSWxHbH+oynFq2mItSWz22ijjTZee0XdK3m5r/echhLZhw8fFnXIAwcOyLrW03BAhKXWxH3PiRven2mhw8dqxDLXa21Kq1KSg5iPcJ9fbUGnlWy7ffv2BZZBLOJQYabVMohxTfQel8vFxPYGtdAuRonILqqwDEjeSAQp6MrqlEMiHZLFR5NEEtrIpLU8MlpS1qMGOi5YYyh5JTQ8GyU3nCikUmFIlghgKKpMrRVcG2ldA909Q7KIIjZBhgxVeOiL9UBXNFT9sEjcqiYTkubVpqJHSCiK9gfVC7k2qp34NouiHrpiMYzW66LeaCihNzsLnrIdKlD1bHQYSbEAuirLJD4MIN2bhepSpcWCmlAln+FDc1XIskjq5uShpiNQw6JyZDQ6t5+DANPuJIpeAVWlAtdxoasaElqYzxCh9VJIQYmsd/gzWgVR4SStLLYpjbKXMCe9+NgqcBQbenBtpDJHaYiaSvTiJKdYVRvxzjg8xYEarN6QyHrNaa4ksc26StQMYk5ztRLbzGlYHG6jjTbaaGNjg/FsRLwnRJn7Ksn3jCXW2o6P91HmA2NjY7j11lvl/kcSxXrMZ5aKxRm/MR9j8zTqMa0GrqdPw33LfU6C0O23346enqvve7AHw7+L/jZSVWBOQ9t2Iqq/MmaJYo8rrfn0TB3DJUtIKZFyxrachjOzdbw8XllVsgqHekmabxXK4LfbOhLoSpn44Xu2SE+ExJHByQr+3adexXChhkKd5Gyh3iNOmx72CQIgETdQbbgYnq1Kf4XEEcf1UK4Dx0ZK6M+ayCVjuO+mfiGgHB+vojttLhi+7c3EZU1UxCcnIhPX5eG4PgqVBpIxHf0ZDYZGkoePTR0JnJ2oSP7CXokfeKKoQiWXMm2BdBU/8sB29C9B+FgKGVPD3X3zLgRHx2MoYxZ7N6WhI+wbO1bontBouEjBF6siXm+Klid9GloDteIsFWQePYtnz00LkcRIFNDZn0FXV1LyvrLjoWi7KFUsuK6PjhiHeIGxqo1Tsw38zF2bsC27cP3MGbmGusccKCLfM5OBvP9o3cGpUgMHO64+JqZqzkuzVdQ9H3WPQxYe0ipgKgFenq3i3u4MMsuwKnotDRQvOXydTsujdcCY1wgO7ND62TCMax4wfq2o37fJKtdp+xNJG19LUXe9FHYj2x9+CHhDjibXWmXO1nMgRGYxgyCy1CjxvVoBZasf4tUee05MklzDCxQnPpeaFrza12y1BIm8wSPLIAZFVF7h+/G48rmXKyKNlSzEjYXnNAMB3tgnyqt7TuzuSQnblYzMTFOOjNJs/Pf33L4Jj9waqtE8c3YGH3nivKzxQG8SR6botx4qmFDiWm4KhoqK7UohN64q6EwbmKq6qNsedA0YLDRw79Y8fv5NO9GZMlGqh/JoUSE2AvcNCSZTVRvdmZgENAzYRgsN3LOzQzwXb+mP4fC0ijMTFWRTMdSgoeqRpasindDlb/ozJvZ3p/CO/d24fWBxYfTKiD4LEaFH0xToekxISWXFhtoIPel9L4DjUwbPhg8NjmPLDZGFPO6X05NV/D+fPibsYbJ6Wcwdm3UwURzH/XdvRiYT3hxn6o1wX6kKClbTXgnAkakanh4t4y07OhasbyCexLlaRax/WsG/6TQ0kRive85Vk1Uc38OzhXMYsyjJHYKkJLKDs2QI+7bIpptzjYmNgRudEF9OYpvNIAY2VyOx/VoJhNpoo402vpPBew/vB9eiENmKtSaE8L2pIMaYt1WtcD2sbSksXhP3P6f4SPy4884753yxVwPXSlZpVeUkSYUTkysVr7R6g3OoIppA4j7ivmKMwq/RxOJS5yyJCKGtzcJYhioatG8JzSlXpxxCNRXD01HXQkJYtF7Gq7T/6dDziGuhmuWgNYyCU0JGj6HuOig2SWSuRLu0sVFhqhqs5lCJoWrQAxUNn3UJDw4UVF0Lm+Nd2BwLm/uXsqiJqQZqijNnFUQwPuez83oWsABn1oXSS1tQD1tTCVyo1dGgdaWiyTReTNWQ02PYFM9jR7Lrqi0+iTkVHsnSwnOAhGo+LNSFLBPmr2xCNaCShK+pKNfKMBNxyX0IElVmvCkogQrHdhGPK7B8W14/baSbgtvzJJeQ+hNlKrQZrSARJKG1kJg02eMktPiXsBzSwnOtRRlluXCaNkKtTCa+Vqoj0VyZ1zwqGws3Oqe5lMR2VPe4GontaMqxrazSRhtttLFxERFMrlUhMkJ071pLsgoJHuzRLB7GXY8WRUvlWOxDsN/B+Jzrv1Z1xNUkq5AES4VIbgt7NCtFYI1i2UhJMlK+5nBFpCTJ92IuznP3UvuqZJFofbHFS8rQMF5d3R7Nnv4MUoaC6aqDgWb8zW2bKFn4rn29ePuBHjkO56cq+O9fPYFy3cFt27vw9OkpWFQ3YR7EP2IPK26EVjQeh3l1dGXiKCBApWbD8z2MFxuisv9jb9mPA1s70KCivUJVlIXnnKap6OxMo1apiTI+ySnsG52frGBLVxq37+rCaXcKt25K4OWJOrIJEmBMzFQsWWs+acow86Z8HDf1ZfDdt23CWw/2XfW+4baFPSja6wRChDFFKdKEo7tQ61XZVloC8Zg3bCqdaPBIqikUke3tlM8USTe/8eljODVZQ0YHYqaCWcvD6dMzogyzuSesw1eoGGN5ouZftMK8kPv2lFPH184X8GO3LLQM25Y0JedoiqosIOFn2RTj59e5+msMt/WTg9M4V3EWZEuTtM2CBtP1MWu7G46swuvBSpLvLzdgvGPHDrm+l0qlOZtkkueY87SSVy43YBz1aDba4PZitMkqq2z7sxhrGWy0WtCQ5EGCwwJywjov7EZFaU4gHjp0aNV9G6+VrMILDokjN3pikvsquphRuo7nLC94g4ODcgF77LHH5IIYNa9bizhkqVL546Lz3gvQlVrdktmhzVns79QwPFuHqdsSnJGowgDiTQfmg4dvnpiE7XrY0Z0J1xoEODptwQkUKR+ySFxxQ+88as2l4poEOb1pA7M1R4Kbgc4Efu+9+7EpHyYD2zoT2N2bwssXStjbF/oZUn6OqiwP7O6UGzuJHqGlD7B/UwY//dDOkDhkqvilR/bgi8eLeOrUFAZ8D719adyyowu3bsnh7s1ZIaxcC6YqNj767DC+fnJaWMd7e5IoFmt4brqEbMJAb0cohxf4PnLZGPwm4UBVA6SVAFnFk+Qhkhv71GlX1GgY945XbPnbGINGO8CFkTLie8KbIW2GCBJ4Es21U2aOLN/nxyoXkVX4OpSpiyTC5/3lw9fgpGe8paBtez4KDVdYyWRiLwUe25eLFzBuVVqSkNDpkaFZBQEyviuvvdFwowOh5UhsR1OKrRLb0ZQik83W9V2PDdB//a//VR7nzp2Tf7Ox+G/+zb/BO97xDvk33/uXf/mX8Vd/9VfSpHrb296GD33oQzIpH4HXsp/+6Z/G17/+dVnHBz7wAfy7f/fvNrw/YxtttNHGahd1o1j2emLStSTgRxY0UYFx8b1pPeY0rcVU3k+5fhYoWdS9Hou+613LcsHzhsMCLLre6IlJFnJbG9ORfC4fVFVgPhtNKPIRFXFIMFCayiGtViqh/khoDLSaSDoxWIqNql8TBROui6AaYEwNi70kVpS8CmKqKTaX/fEcym4RBYfKHyHh21fCAidLjFQxlO1QgKSmiiIKC5A9Zif2JLfPfaZjSlyeR3ufSD2F78/36DO7UHDLqPsNeR2SL7qMTuT1HApBAX4lQK/ej6I3i9441VMMNFwDCTWJnlgGOX1egfJqMesUMWJNiA2SoRhI6QZUlUVX5ny6/Cyk2pCQr0FlfkB7Ip+DQz6mJ2dw7MIJKcx1dHUg6HcQyFMcGEldFFP4fBu0BOIQAucbW68F4WvL/gj1VeAEzgKyyuUIKGGxnUV3fcHzQjul0F7oUvuGRJSaUm55oXmQiHOl917PWM2cZimJbV5To5yGta7WuggfbBy1HpeIsH8taOc0bbTRRhuvnR5NdO/ia61FXSmyoGF/5qabblpAmFlvFkWLCe88DiSMUqV/z5490nxd7abpteQ009PTQg6iGsrNN998w+IXro01VT6ixjTjFB5z1jzZo2m1DOL30fFPNZXNWf9nXyIClUb2dN54Z4FWbOlM4u4tMRyecXFyrCzDvLTd6c8n8D13zVs9PX1qGtPlBvYP5ORndwJ4/NQ0Go4PJwh7AlXmNzJcTDWUsEfTmU3CMKiK4olSy69+3x14YH/Y7yNR466tWXz+6BTySUMIJjzew8UGbtndi5zdwCuDM0IWIQY6kviF7z6EVIw2qMA/vq8XT4ypePTEFPb2Z5GKabipN4U7t+fx4J5u6adcC6qWi79+8jw+/+Kw9Kv2D2RRLlsYma4hlzBkyNkwRAYTCVODGjPgckFqgJQSoEMLcOL4cZw75gjZ+vkZAyfGK7KPzhdJwAuQiDH/CzA6VkFnR0K2p2x58jsOLifZoxEiTyDqMU+PVPBjtyxcp6hqttiZcr9HH5eICNVKKOFr0Z4oaWhIN8/BpfCtsaLY/8heb/n48d8VqEi4HtLX2P96LSmrXAm89nQ0c5XFA8bnz5+Xe8PlBoyvZ6B4PeUz7Y7OGhZ11zLYaLX9ue++++QmuBjrubAbsV554WBRei2m+1vJKssB9yULqpTxu+OOO+YaxKsFFsB5EeG+I1OPBJao0MuLEY931JS+uTeJJ5MmTk1WsSXPKT/gwmwdvZkYbt2cXd11ayretccA+nbhqbMzsBwft2/LCVGlJzMvizxetOSmHx2brdkYThfIUlWgcAMCMlt5J1Zg8LPbcsOJ6Zy6C/C6nR0LZN5UVcGPvm47/rh6CifHK3N39M0dcfzsm3djR1cSz56fFQYx13L3jg4km2vgedGXi+EX33FAAhcGELRSut5rBoPAX//UMbw6WpbAiq/7dy+OwXZceNUafDecPEyn48j35XDrthxy6ZgUrk1Kxdke3ryrE6/ffvMcq/vFwbOYLDdk21gb5e4qVm2xUfIbjhBT+DPeMCyR+p6/9lEqjgFy0b64QTXjWOg0Y6h5Dup+OKVJ9RN+LXsONiezoqrCgPsLp2fwlTOzKNmuvN8bt+fxPfsu9kqktPmoVWzxjo8QRlmcJmVcuhGLu6sdCC0Gmzu8RkTBBu8PkQw/EygGSizufvrTn8bDDz8s58+1Xns5ff17v/d72Lt3r3xW/vzP/xzvec97hETFoOgXf/EX8dnPfhYf//jHpQH2cz/3c/i+7/s+PP7443P76l3vepeQFL/97W+LVOeP/uiPynXud3/3d1d0v7TRRhttvNaLuiuR06wVAT+y/eH9gH7oSxUY1/MkIu9ftLmhFCzviWsRB1xKwvtS4P2f92s2h5mHXY2F4ErK53JggQMX/FlEyI+UJOeIK5kY6kpV4mASB0hUoPZIXKHlzuoS8A1fR7oSR2dnN6peFbpqIG9kRcEk+vyRTEISiamGa6OFTUaPo+hUw+2PahJ8PVritAxOyH9CBlfRG+tY8Jk2lRhSagZVvwwrsOZeK6mkkDe70G10o+yRgB8gpSWRUBdaoKa1DFJqes42p9VO6FoxbRdwsnZOlFxIoCGJhyoyCY0FUZNsDtkm7gtToWFQM0fjujS6qirYtGcL9u+AFPGmS1NwPKu5H8KnisURySQBawjh/mlVSWm96oW5Q2gN1AohvAgdheSXhb+bs2VqWgDx+JX9gqjByPGDgbSaQ1y5uJHgoBG+1yUuvUKqYe66AbGWOU2rrVirxDavEVTkJSGf+QIVofhzFltpA3StZJV2TtNGG220sXaIejTRfWcl8plIiXw1wfdjv4D3qdtuu23O9m6992iiHIK1QjZSea+966675tScVxtXQ1bh89gLofUGc0jez1eTXMOclX0hsWWp18XpIOrRMLflsY6a0gPpHPrTJs4XG9iUNqUmP1VzENNVHGqxn1ktPLQrgdfdtg3PX6hgtmLjoYEs3nywHzt65mMpqpaQfBLt080dSaTiJVieHRps0k7UC5VIWPdXWg5b3NRhOx529WVw5+6FdkzffbAP52bqODFRnbNZ7Uga+NG7N+PebTm8cHYag5NlUU+5Z28P8qn5vhEV8n/y9dvww/dvFdJMLnH9PRr2M37nky/j60fG5Xiwh/Xp54fFFieIxTHYzNEScQ0d+Tj2bspJT4lDCHQRYI/m7v403nrLQSEbMKc5ceQCJsuRhWu4r0oN5ohAo2oLocQNApjy2uEwQ5T8kHTC/KS6hELKWN1F3jTE0pVKJ3wD5pN8nxnLw8G8ib1NZf3HBwv4u6NTotzDdd6zOYv339KHfHwhlaDh+Xhqugq76WywEGHfpuEGiK/iYO5GHShezoBxoUle4XWL1w3mO5///OflvkGF3tdCPtMmq1yDl/tKFXVbpxCvxUrmWkHWKIkqvOGRNHEphtN6DYRItuCJf6NZr8tZC7GcQIhr5gecz11JSblrQXTuRhNIvCDxOEdSU2xKs3BzKG7ihZqG02MNmWjc3pnAu25ZSBBZLZAQ8dChPrz91k2XfM6unhSOj5XmPksTNRdqECCuAGlKnckNPMB0xUYmpoH3bcehKQ4JHAF6Mwa+//ZNF30O9/al8VvvuRlPnpnBVMVCV9rEfTs75/bD6/cuTTpq/UzTd3Gl8JXjUzg6VsbWjrgEQYPTVXiuB5/vZRhQaAkkE2V19GQMzvOFKjnCsAX2dyXxwObsArkxxZyAH1iiBkM1Flm/z6AjgFO3sD2uSCOiUGqgZofXqzkLIj+QALRrCQYyVVVMVUWXmULRtVD3Qhlu24eQVG7JDsg++syJKfz1kQmoSoCUoQr55e+OTwlL+CfuWHjMqx4tfjwJ0i7a51BC/3mu7xqkuL/TA6FLSVZGk8ws5FLNilMHf/qnfyqB0fbt2/FHf/RHQl5hALPcwvS73/3uBf/+4Ac/KCzeJ598Uq5JH/7wh/GXf/mXePOb3yy//7M/+zOxGODv77//fnzpS1+ShtRXvvIVIdcwsfu3//bf4td+7dfwm7/5m6vaOGujjTba+E4u6q6Vsgq3g5N7kcIi71WXwnrMaQgWSFlsuFRRej0WdqOJT04EcmpyrWVmI8WEqCgeqcRFqiuO66B7aydSHUmYCROmbiChJJFUQiXG1V6/7msYiF9aVtpUTSFukPRAgoYoyXgO4lF8pdCShoXLAC6J4IqGhh/alvIIeoGPXjOLTiN78TSnmhfShBU0JE4mgYX/5u9iSmxO3aUVrfuIX7UVKh/xdYcaY7LekBjDYq8theq65yLuhYqWDOWpFmOoMYnxI0IJKScJpELCkQH5/OS7czhlHQ+Vcyg/E3iSI1GlJFADuA0PMTMORafqZljTiZQfQ9KJbKUoyyxGqMTDrCqy/BFmvPzGCOJCSiExZtafhAOrqdqjwIaFgj+FTrUHprJQMclTlnFN4g65ejX7Ncfl7IZXG605786dO2VttChgPsNC7L/8l/9S7g8spLIo+6Y3vemqhoraOU0bbbTRxuqDcQSv5+zRXI/tz1JYbZJ7pLDI3kyr7c9GyGe4z3kMnnjiCekbcP2RNeN6zmm4ZhJCGA/cc889olCw1lisJMnzgvkMG9DF06exKTBRcdMYnjGhm6aojrxuSxY786uryEmwB/C6PV145I4dl3zO5s6k1OYjNZjJStgP4NBtwgjjfCrcF2qOKKTAs1GsNERJscqhWVPHD79+j6iptKInbeJXH96F5y6UMFRoiOrMnVuy2CoWmsA9e3rkcbmchq+5+HWvFS+cm8HjJyalR5SOG5goW0JEkeEC24ISi0koX2u4yNZdUUCpueyj0C4owLZsDG/f1blgIENLV+EGNSTNcPg6tE4KUPPCc3drPJCa9zHHxWwtJP9E5724CdDWJ7ZEPkO+v6JgVyaOyYaD6QaVO5lTAjlDx/ds60RcV/HUUAl/8nRIuGGfyPGBr5yZESX+f/XGHQvsqIq2Kz2nyFroUqAiv6i/bCCs9UDxYvCYM+eN6kbsNfP6wNoMezQkslCM4nd+53ekR3P33Xcv24ZtPeUzbbLKMtDqe0is5InaSni40cUyvgeZVyyMLoc1ut4CIa6fH0J++FiUXilf9GtFtO+utI8iSTleTPhBXi+Fm8XHmsEZH7Qm4vnO/Xzr5DRODE+JH/hILYnf+0oBHnTcviWH772lD3ubPnmrgSt9Ph6+uRfPnJvByfGqeBoy4LHdAD0pAwe35ITYQc/CZ87OiIf59qyBGcsXpZLuuIIfvL1fSDFUKqGiSitIUHnXrVdnM3WjPtMkqjAG4PYQ02VLZvwYAELVoJkm4irgOg5KZQv5RgP379uCQt3GhaECXn5+Ar/y3Hk8cFMvvvuOzehMx4TEw0CRAYqUVqmcwqKs7yNQKTtXQxBUJJiicp0S+CjWPSmexkxNbHvu6b+YvbktmcaEVRdiSYeRQFaPoeI68u978gOIawZqtovPnR6Hr7hoEnglOFIdHU8Ml/CuvV3oS8/f1GK0DbpcECTsZHXDEVXWYyDUCrG2SqWE4EhlFa71e7/3eyXgYFDyG7/xG0J+Y+DyEz/xE3jkkUeW/dp8LbJzySInme+5556Ta9Bb3vKWuefwnsXpSCbBDIT49ZZbblkgOcfJSErOMVDjOttoo4022lidoi7B+JZEgdUAyZOMrbkdLIpeSeVrveU0JHuyuMBjwvWvJYl9uYXdiBxEO9O1JtdEWOr8bVWJi4i2LPTODs+gXBtDRdEwk8ygYuhIGCYO5PK4JZ8XcvV6AFVEOvQcJpwpsbqhhIjte1JYTOtxxLWwAUAyy6xdRUaPSWxedTl956PDSGFboldsaGiB2oqQlBKfVyhZBq5WSn25sAOqLjbEhkgmmEVRJiSb0/echJUEDMlPKC5Ca5488kIY4bY7voVCMI2KUkRKyyKpUPUltHsSwjqTFg/QjdD2h2cKc41SrSjXA51S4zJ5GCqvIFKlIe1EWVhMI0GHBBYSXPj+Qkzh31ERBgZiSEjeUUNFiCoisB1NOgaqPLfqV2BqC/c7f3eldEXhczYgonvMegTvVSS3/czP/Iw8aBPEaxonE1lUff/73y85Bou8v/7rvy4DUstFO6dpo4022thYtj9rrYDPuJoNvuUoLK63fIZgjE3lftrwcf1rTWJvtSW6FEgC4TAxbVeZh631oNtSeVirShwHBCOi7f7paZwen0WhXMWZ4QC/+w0HFRvYv7kDP/i6HXjdTWufn0V43U09+PLhEZwYLaIvlxClFcv10ZE0cfOWvAz1crtfvFDATNXGns1dKJVqmK1ayGYSePttA9jek4bj+jAWkRxSpo437L469Z4bldMcHy3JGklUIWZrjvSeHFE28aB7HhKJGHzdgGV78EoNvOtQHwqWi+GpGoaGS/its7O4bUsW7z7Uhy0dCXENICGEL8E8T1gmigpN8aFoKs4X6wj8ChqegphGKr0ivS32s0xDE7X6B5dwRdiVjuGF6ZqQUHrjBjpjBsq2i7Lr4z3bO9CXMOTz85HDY5gSwpAmv+NaUoaGY1M1HB6v4I5NmbnXTNKmNfIVamL+n+F3NEtttRfaKFhvA8WLwWsYe+O05uFaf/VXfxXPPPOM1Mk4VMxr8xvf+EZ8//d/P37sx34MGyWfaZNVlmn7cyOKuov9EG9kQs+CKNVU+JUnEW94V8J6ksxm8Zvrp/oHp2LWmqiyHBsg/pzFD/qo80NMz8n1gNGKi1fHbFSzBdw+kBWZssUg846FGT727/Px2188gacHC9DhIPAb+PwrFTx9Zhy/9EA/7tjZj2lLwdmZOtIxDQf70yErdpWxty+DX3jLXnzi2SGcnarCoKJKXMfuvswcsYOIJU3oSRPjVF2J+9hkiqM9vnJ0Ct88OYMD/Wn804d2YXOTlbsSiM6Rlbh+ULauFfQiJBs3mgxkgbfqkS2rClP46OAs/uV334xf++gLeOb0FGI6vdOBlwcL+NbxCfz+P7gTO7uSODpaRsODSOGxZkvCSNpQ8MZdXbhjWzdcx0XKreNzJwt4ZbyBBuVRoCBmqLhvRx53LiE9uCedxWijhpF6bc62R1cU3JzNoy8e7t8TpWkUbQcpI5TlJjiZqGsOyg0dIxVrAVklbySFsFLzl2qIBbITOo2F0ucbBes9EGoF18mJDwYrv/RLvyTXaAZFX/va1yT5Ww44ycDAh/clssc/+clPiloWp0qYMC6ebmDQQxs1gl9bg6Do99Hv2mijjTbaWL2i7moqq1Aem/ePgYEBsYBZzn1zPXm8T05OSk7D6UkWddeaqLIcskqr/ep6INegGe9OqxpO1urYkUiiJ2ZedE5HRFs+mIeN1Gr43PAQqo4DxbJQrtUxUSnj5PgYHu7pRS6fx4Rto+F76DRNsbJcC/THesRmZ9YpwAlcxFRNJtriLconFTvAeN3AhVpo87klmUB/nIofAc7Wh2AoGnrMTmyK9cn04/Wgdb+uFBmf+jDSUOB5RxEUoY1QOyXKmQCXpjs+LZF0BIovzzWhY8adCMk4qgY7sFB3a8ipnUiqaRhKSGqnXY8QVqTgpUNTNOTj3VATCuy6jVqxAjflgU+PCCOi1qJkoOoLrymkncSRRB2VBRZBKnTEkZLfc9026rJ6Eota/ljWQxLLYhgw0UBo77QALR9Frn0jYiPlNFGT6o//+I/le1rLPfroo/jqV796yen2xWjnNG200UYbqwPGojeyR7NaOQ2HB6gAyHsOJ9CXQ4xcT2QV7p9jx46J1QNzmptuugnrAVfKaVgr5D17Le1XF2OyUMdTJ2ZQNc7inv0DyLbY1iwm2vJx017gDz5zGJ85ck5UBKn59+jhMp49OYqff8tOvPPuXah5Gl4dLkov5PbtHXNEitVEVzqGX3znzfjYE+dwZKgghAauY0tXcoH6vFOuwpst4dXJSaRScfT2diARN3BkcBa/MVTA9u4UfvLNe3Foa8eK9/FW4vqRNDUJ3aPB55rlwnZCBUc0f16vNqAaHuKpDIZn67i1K4G/eHoIn3l1QvIGU1dxZKyCx07N4IPfsx/92Rg60wYsx5fX4+ubuoLOlIE7Nufwpl19qFg28oGNb56dxZMXGqg2wvfUNRX7+lJ449aLySp7c3Hc2pHEy7M1FOzwGsf3v60ziVuaPbATxQbOFuryOlFvz/F9VDwfihdguGQtIKuQhNKXMDFYdRbu65aUpjdpCIFmo2E9DxQvBtfJXj/vJ1RZ4b2C1zrmM+ylb6R8ZmNmv6+Rou5isspypXmuFlQjYVG0q6sLd9555yVtf5Za23oIhCjlTFYYSSoMJig/vR5wObJKq6TcvffeK2tfaziej//y+CC+eGxSrFziZ09hIBvDrzy0Ewf7Lu1p9sJwCS+P1bC5I4UEmZDNzwbJKZ98eRSffH4Qr5Y02NCECLGzK4X/+w07RHWF8mevjlfk5nfrQAb5JaxiVhK3bc3jls058farOx7+06PncGqyBlesaoCThQZ4+6QNkK6qqFguqvCx1VSxORsTosaz5wv4o6+cwge/96AEDNcKnhcTJQsfe/YYnjo5KUHLd+3rw/fcvQ1dmRiGZmqyzr5cHAP55RNjXr+7E39/eFz2LRm0kbwcq7oeAyIvlKUOFAWGpsD2AvxfH34a3zw+Kf/uSALbOpMSdLw6VMDnXxrGW27uw+OnptGlKqjUXBiGBkPXoKkq3n/HgOxX4sxsHf/5ySkhqsg1ERBm8PNnJvFpZRK3bg1l2CnHTglDFtff2L0Jg7UKJq2GnAebE0lsiifnkghPLYn/oUNGsD4/aVinfLQaILuInMOC+85UNwrFCy2S3bLHZT1kFO+IX9oKYD2D9wFen1mud2DPTYiymC1TmusMZNlGfogMXB588EF5LBdsMjLo4XXyb/7mb/CBD3wA3/jGN27gittoo402vvPAWJ6EwhtZ1F2NAmqrsgdt5y5n+7Paa7tahUuuf3BwcN0Qay9X2OXEJO/VtMXguq+mAb1StrmLMdGw8NmRMYzGk9AKJcQqNezJpPBIf99lFVJeKRVhK0BfKjVHlKjZFiYcB4+dPYMxqgOZBhRNQ1zXsS+Xw3d190rsOdaoo+y6SOs6NsUT100AuRxIVCFhhWQTN/DQoVfxSmkUZc8SwnbZ8XCqQltOBXESNrwAx0sexhsB7u00hJhBksuINSE2OX2xrmteS3ReUBmk7BVhBzYMxUBGzSKlZiQWp0IKvybUxEVqLpeCruro0vMYs6egBsxnQsUnuvcwX9CbrxMqrVDFhOoxVYz5o7JPuP9jgSlKM1Q8KfkFWU9CTcH3K9ACDTW7JsQqElsSahJ5tUlmTwGFuIZSMNvMJEKrHZLlR6Yv4NTQmTlrKebwvH4wFleRbYnPNZjys/DzENoCKRdbJzV/S2LLRfsAhvy9H3hLKqxovgFV2RiEj1bwOHIfyHWXtCGFRfYAWqA3rZTWx3UvAtWXmLdGNTKqRv3gD/6gPJaLdk7TRhtttHFjwfsK6+x8RPeYG5nT3EiySrlclh4He0Csn3E6fqPkM9F9k7kB9z+Vybgt6wXcR0vlNNxvtDSnfeytt956UVN1OVjp843r/F+ffxn/36efx0yphvijI+jOJfDL778fb79v9yX/7vxUBV86PIbObEIIIdxaDpeenSzjY09ewOFTQ3j0nIWay56AjoHOFP7ZO2/GGw70oViz8RzV5j0ft2zNY4ANgmtc+3KwoyeNX333QUxXLNiuj//ylZP49qkp6OWGDNcePjaM6amCED6ScQOVSh0ni1Xs2d6HQ7t64HoBTo6V8UefO4p/9w/uRE/22i2PxFrJ9vDRZ4bxjVPTQgS5c1sO33NLH7Z3JTFZqmNoqopcysTO3syyjzdV6zvTpzA8W0Nn2oRlO5K3CJhvMqehGILj0LkUnhfgdz9zFJ99eUwi4lzSxLbeNPo7EzgzU8fHnx/Be2/bhI+/MArb8WHHAviBgnQyBssN8AO39+O7d4XEnYrt4sPPTglRJXIIoKrLydESPvbVp/Hw7vkeDQnYzLHeuTWHm3IxnClbss7tmRj2ZeNz1j6nacVEZwI3VKYkqF5fdz3QwTQbvzineagvi+emq6KiL/u65Xd8jbcNrL3N1vWQ7x0/wLFiHWN1Byldw6F8Allz/eVotVptTnGY10Jen/nYaPlMm6yyil7ulyvi3YhAiNtBVQ8WRWk/Q1m2q9mWtQ6EeCM5f/48Tp48KSQVSp9xmnI9BGeXI6tQVeD555+XG8F6kJSL8InD4/jssUmYioKuuIJYXMeFQgO/+9Uz+G/vuxmZRaSACKen6zK9KEQVgiQI00RHGjjKQilMpBJAzHUwWbXxrZKFFy/M4v4tSZwt+aBbDG9PXUkDP37vZrx5b5eQZR4/O4uTUzUkDBX3b89jf29YOL4Upqs2vnZqBkfGq8jGNTy4owP3bstd9De8QZMAQvyzh3bi979+FsemqqI+4gQBOhM6cgkek0B8EElxaLAIqYWPnd1JnBir4KWhIu7ZcTFz99XRMr5yfAojRQvbOxN4y75u3NR7sapIseHhf3/+BM5O15FPGhIEfPTbZ/D8uWl0d2bw/PkC6raLZEzHG27qxk89tHsBu/hSuH1LFg/t6cRHnhmW/UgiDhiQC1GleR1hwZXsxZKFQNNwfLwyl9BNVRxU7TIODWQl4Hjq9DT+4Id34G+fG8LnDo/BdjwoiiPr+idv3IVbt8wTrT7y4iiKdUe8MVsDoXLdxWEvi3tiMVy4cEFkLHmDjAq92/N57E5nlzymF2ZtbE4HODXLwjWEsEKpu1IDONBjYNcS/pu7Ur04WR5Dtamuwk8gi9bcx51BAnFjfXzmrha8tukxDWUUFk1uakghK8Lj65Wsci3gtXHPnj3y/V133SXKLJxq/KEf+iFprNKKrJW5y+t/f39ox8WvTz/99ILX4++j37XRRhttfKcjsv1hTnOji7o3egoxKooS16LssdY5DSVYWcjl10jhksXS9ZTTLM5nWvMwFi6oTLIeyDWc7PrMyCimLRtG4COlqfAU4GixjKyu4w29S0+mcntGG3Uhd0TbwdgxHYuLcctkZwy+5yPle6i6HmZcC49bEzg2MYVUzEBVio0hkaIvFsfDvf3IGAZmbQtnqhWxrckbJnalM0hqS8dr0T6m6uCZaglV10V3LI69qSwyS8SuJJ3wsSVuoOg4eG5mGmXXESVEL1CQN2iTowoZw6c8uK1g1lbRG1cRU0zZnkl7Br1m6IPeCpfEjMYsxq2SxNE9ZgZb4h0wVO2iNetZDZPOWEg4UFQ0/AYsv4EySGCpwfJD1RDa5/SbvcgbyxvS2BLvx7RTQMWtNlVVSFhXkNBDayB5f9JAAqqqeCgHZSG1iNVPANQDS/4qqcXhBg6soIFOvRs1uwJHcWDEddiwYKgmuvXeudf0fA+VgBNmtP2J8tsAvuIj05VCTouhOFkWyWI2xRiLRjkN497F+5L7yEJDBiNIxBAyS9O+JyLWJ9Wlr1nxIImaUl7wM76G53pIXeJv1jui61pgemhoIZGJW0V1GT0wYPqhbdJ6AWs3zFuv5/rWzmnaaKONNm7sfYX34xs9TLwag7uM/6mowv4Ga2FXM7Uf5TM3ynJ+OaASDIehqXBJBXnmaDfKXmWlcpooD2ONkaoBV7KPvRxWct9//YXz+K9/9xyCwEd31pB1TRaq+OBHHsfuzR3Yu2VpmxsSEcp1B7t6w1osV2MYOvo70hgpNjBeV2AYcXSZPsaKDTxzuoaf+NA38eYDnbhQ8lCss48DZBMmfuj+7fjxN+6G5wf49skpPH9uRmr99+zswr27u8SO81KoWi6+cmIIT5+ZkV7KA3u78OYDfRcN/XJ/dWfCuv4/f8d+/Mb/eRqPvTSIhuWgVmsgk4yhvzM8JiTRNKouJiYL0PfwtRTs6cvgxFgJT56cxLvvutix4NxUBZ9/cQQnxsroycbw1kObcPfOi3MfWhB95OkpvDrlItUcYP7sKxN48UIR+7Mqnjw+hnLNQczQcNvOTvz8O29B3zIGi9l/+uEHtuODn3wF5ybKsDlAHB2Zls837V1HZmvy9etTZdnnVBspVC1UBx0c3N6JXFzHU+cK+OWHd+Pt+3vw3x4fRL2pgBJrBHjbgR68/cB8rvs3r0xipGDJYHhklcRztFBz8Gwthfek01InJ1GLxGzmM3zs7OzEvtzFBBIOdB8bryGf1DE2a6HheOLGwLYTh5Z7UybualFVibA7G8eOlIkz9KRagAA9WoAD10iKWmvwnlOHiv9xfALnq3Y034CvjpTwAzs7sD+3co4MK9Wj2XQVA13rNZ9ZX52v77Ci7o0MhCjZE92Ml2v7s54Ku63KJHfffbdcTJfrqb6aWLweSuC98sorEniuB7/GCJwc/NyxSWFK0tqFDEkGE71pE+MVC0+eL+CtN3Vf9HdkvlYarnylDDMLovO/81BsuOhJG9DomVdy4AUqqJxcdHx88WwNWSPApnjoFz5ddvGhx8+jI6Hj/zw/ilfHKqH0M4BPvzqBH75rAO+7tX/uBnl+toGUqaE/qWDGAv7V50/i3ExdgiXKqD16agbvvrkHuYSBZwaL8vN7tuWkiMzt4domag6m647IQDMg4OlccwJk4uH78obLEmWB2tpNkN3r+j5meSNahK+dmMZ//uY58QJkAPbcYBFfPzmNX3l4F+7dvvBG/8JQHacnPOzbnBdWKtHt+vjGyWkYZhm7e9PoSidRqjv49Iujcjx+/i17r3gsz0zV8OTpGWR1FRlDFQk57o956u48yLqdsQJoqTg0nROYARTPkvVfmK3BoNycpuCPv3gMX3zhgpwXjG8ycRPxmIYnTk2LgktvJoZC3cUrYxUp7EdEFYLbxnd+/FwZg5M2araKu7ZuwSNbEgiCmjQ5eD3KZrNzhd54Mo0/fWYEXzo2haJlQVF9xGIGlIyJsqKAu2tbh4IP3NaFSbuEkluXCcsuM4OMnpCp0t3pDhyvTkrTIrJAiivAVvXayRNrDd5/4h2GEFWopBLJivPfNVSQRm5dFXcZCF1PorcYvN8wkWRQxCkTytW9733vk99xmp5T6EwuCX794Ac/KMkyJyCJL3/5y3KeUaaujTbaaOM7Gatd1I3e40aQVSgbytg6KopeixTrWuY0VCZhTsYYqFXhcjme6quFxfuH5w73OdUt77nnnoskX9cS56s1zNiOKJzUrXA/xkmUCgK8Wizjdd1dQsZeDBI6aBFqBf7FaqqBD9YBu0wTszbQ0EK1PiUIMEVytW0j5TiI83UNHRccF9/AGG7O5fDY9ISoAUZ4tVzAI70D6DBj8tpFIZeERBZiSPHw1MQQHN+TSO98vYyTlSJuz3Vh0qpj1rGQ1U0MxFOYdRoYtWpCuB+q20JQZ3xoNY+VzWGCJiFCU6hAomCGhcR4SMAIFVYcePDnSRmyL3y8WBzEuFVsxpUBJq2S/Puu3I4FhBW+tp4P92esaUOkK0Dda2DUGRcitanG5FWoujJsjcBQDaS0Kxclp5wZ6qYgoZlwfJr+ULEkECINNTha5aMbnoO6F6Dhu7IlacOEqSqwfRumYkgiQJLIuDMCF25YTPQCWTMth2p+GXE1IcSXml8JbYQWqMBwT6ii0qLlfeTySXQgDd2JoT5toTBbkAEgflaiQi9zGi2uYsabhEPiDH3k5VW4Fc1mhqIgoSRhIgFHseTnJLJoMOS5VGyh+g3ft2UpsGs29MzqS7avBHgfSGWT8DRHrGVb1SFdxYGm6NADc92RVVYS7ZymjTbaaOP6wTgqGiaOSAKr1aNZ6ZyGsTWH+qh8f8cdd4hi4bWsa62s9vierO2yJnfo0KG5huhaDwRcqUfDXIYDD4vzsGvBSpOE/v7xE9JX6e9Iol6vSW29vzONockyvvDU6SXJKsx3Gs3h1LrrIxkNFTd7NKz1p+O6kEOODBdhOYH0GqqOj0+/PIWkoWJnpw7TNFBtNPCnj57E5o6EKK1/7ci4DKNy7/3N0xfwztsG8CvvOiC9FsvxcHK8Al1TsKc3jboT4Lc+fQIvDpWbdWvgq0fG8a3jU7h9Rwe+dWJK1O7v29WJzpQpaiqjxQYmB8dwdnAizL9cH67tiImmk42Lujt5HtwP1YaNSt1CNhWX/gP3+kzlYkvNV4YK+H8+8TLGiw0hVVBt8htHJ/BTb96L77tnIbHl6JSNw+MOdvRk54axezMmvv3qMJ6rVLGzJ4UtXSnUbBffOjou2/x7P3Lfgj7YUihWbXz2mXNIqh4yuRgGp6tCOpceDfM//n0zJyAZZ6pYA0U5XNoFBTqgakJIOTtexqaejGz/Zw6P4U+fuIC6RZI+kIqpyCUNnJ2u4uh4BbcMZKWX9PyFAgLfh6HP5ww8R3nMTk3V8fvP6pipKdjfM4CH+5IwDEs+w7wWkYAf5TOso3/qyDT++sVRjFVoiRsgbqhA0pC+kghTxjT8wC09mLRdPDtTleO+PW1iG4eZFQV3dqUxVJuFLflqCH7a9pvMU9dPH+NqwGvb85aJsw0LeVMXVwD2MWctD584N4tfOhhbV/ZG1escKF4v+UybrLLKtj+rEQjRC51EDwY/PKGu9Wa8VkEHJfFeeOGFJZVJ1mMgJJLFLdLklFiKPpjrBSSblBoeYkKa8OeIDZHM10x9obcccXSsgs+/Oo7T0zVULA+HR8rY0ZkQckjV9kQGi1JtfM2hYkNYoXE9TB7IJOVbeIqOVCYBeC6ygYXRgo1//7mXMW6p2JSNIxWPyU1vqurgo8+P4q4tWTx3oYS/PTwuZBOub193AsUpFWftOrZ2zEuTTZRt/M8nh5CO6aLOwi36+qkZIW50pQ3xdqcHH++v/dm4qJBM1xyRLpuu2UgZdHbkhCaLogEOT9WxJW3AVOgFqKJvkbwcg4c/f3pIrIJ2diXC7XQ9nJ1u4H88Pog7t2TnSCnE2RkbMd1Y8DO+V8X20RMHOlLheS2yfQHw9WOTeP9929CTudifshWfOzyOqYqFvb1J2ecj09WQdUMwYeHng4SSwIeZTsDmGhje6CqoI0MhanpCDk7X0ZXUZX/+ty8fR8N2kTB1OI6LatVCPm5gtFDHXzwxiLOzFl4aLmOUMnEqmwIKEk3pN5KApmfrmPYCeDlPXu9ThyfwzGAcf/C+m/G6fftQr9clSeCD16YvXPDxjQkNaVNDV8JAxbUxXbLlPN2yKYG+rIK37UmgopRwvkxSU/iZN+uT2J3sR28sA113sCeTQdXhuehLoyKw6wj0+UR2o0EzVaimOkdUIcKvYfGcpJX1oq7CfcwpimshQhL/4l/8C7zjHe8Qr1he8//yL/9S/OG/+MUviuT6T/7kT+KXfumX5gLnn//5n5fgh+RL4pFHHpGA50d+5Efw+7//+9LM/I3f+A387M/+rDDG22ijjTa+E7FWRd0bQb5nbsTYmvafLIpej2rWjZbzXgrc/2xu0/pnKWWSS8lUr3Vhl43byJeYedh6u6dWvZB8rTV3ZbQLdcblgS9EjlayisQrfgUN1LE5peClGQe66iOphfF3yXVgKLQrCRUYxYaScTSVT6mY0bTPMlIpJFlkdBzYloUTjQYGizOiYJgzTZiGIeH4rG3j6dkpPNjVi8enxzHSqEmeQWvMDs/GmOLBCHR0GLG59U3ZDXx1YggxTRNy9lijhpeK00LGYHw72fBg+xCyTFo3YNtUFAEqDguYjO0DWKK2EmC0biOu+ticNEWFJKklhKzRijGriAmriIRqQFc1WYPte5iwSrhQn8Gu1PzEHi1cFIO2PAvjT9f3hPBBAkhE+ojBFNWVWWf2imQVrm3SmZb3N1UTtm/J33Ifcjv44DHgYWZuN2lZ8jPZZ9x2Kp6YBtKGjkZQR0KJo+DOoB7UJHaWwrlKKownRJ2KX0bdotLMtJBq+JuUHkPemFfUcH1X1iXkniaBxNYtpDZlsHXLLbKfGLOSgMZJsZOnT6LvYBfMhAGN/0luyb9y5e+5300lhoSShq3UEVA7W+RjqCBjIxYk4PN8kBXqTbK6IiQbXXObz18/BdDlgveBXFdG1Gq4/laivdg4KM66Iqswn1lKMWe5aOc0bbTRRhs3vkezmjnNSucNjB1aY+vl2v4sta61IKtEw9A8HqzJtTZDoxxivdRgW9fDRioVJSKl/vWwvlaMT1eFoLHU+mdK9YueP1lz8NhIGRecAErMwNHREnb0pNCZMNGwPcxWHSE0kLQxNFMTsgV7NnxNy3OkVRAoKmKJtCiaa6qDoZk6/tOnnsOMpaI7E0O+IynnGRXVP/vSMF63t1v6Dv/ta6cwVqzLa+3sTiHl1vH8pIXNHSkZ+CWo9vLxZ4fwmcOjSJm6cDS+eWJS1tGVNqHYNi6cGIGqKdjUkRQFyBHbFXX38ekKOvKpMPcSckSA54Yr2NML9KcNCZ/7FqlYcD/92TfPCFGFKjPMGzh4PDhdw/949CTeeKBX+i0Rhsocwm5xDWj2MyqlKtQgQG/z9XO6KX2Nw4OzeHVwFrfuuLyd6jdeHcG58TJ294VEk/FCHTUq3zNvcV3K3sj3ikZT0ADVmg1bo8NGICqbUFQohoHxUgOOruNdAxn81udOYbbmSK/L83xULB+JWIBSw8XHnxvGXz1+Fo8dn5Thc5KX9CCHbHZ+/5SrtlgoUWWfx+fR07N4friM33hkD+67d48IG0Q9GtZbnhq18alhHYamoTthYMoOFfTZ/+rrTSJmarhlIA3F0PCXp6fnCCnMVe/sTuENfWmcLFnojXHfAZbnw9RU1OoNDLuq/DvsR24skBB2zlURN1UhqhA8z/IxTQgrJ0oN3NaZXFdklcxroEezPrpea4xITeVGe7nfaLIK18+CKCWbafuzZcuW63q9tSCGRJJ4O3fuxO7duy86FutRWYUsM8oER4HbSk/mrAQYrGzNx3Bsoop4TFkgg8YL7bZ8AqOzdbw6VEC54YhSylMXynJDoYVNJq5htEwWahWZmIaelImHdndiuGjh2EQFDTcQhQ6xtGpyYXhzJznD8oF8MoFEMoFZr4Zx20NcD+BZdczUKkKmSho6xuvAnz8zjGcGS6Ks0Zk0hHX63HAZMxUVmzsWngucCqw5PnrSKjbn4ihbLkZKDXlvsotLDreNz6OljCvr5unEIigteop1ep2G02sB2a2Oh1k+DwG+a1cHDg4svMCfmKxiomQJk/jVkTIKDTeccKSPfcXCe//0eTy4swOv39WB1+3okKCzrOoYsYGMCqTUAFN1Dz695VUNL4zXZP/kYhq64xqqdVt8HK9EVjkzVZWbfvjZiBirzQ2JPi++D4VBr2mGijJKMJ9AGBq0uIGg4cANgKdOTcl+jhl6KBsXhBJv48U6MpkkPvLsqLx2LqGL0s1kxca54Qp2bs3IxOnghVlUyg0h+JThYXN3Bt2dCQzO1PHXz43g1x7ZI8QzPjgVzfPrD0++jIRp06Uds6UaLEWF4yuYLHnI5304vom/esnF/bvr2NfNicOwkF73bZyujUuTIfS2Z0G4IYVeK9CgskGnOM3C9MW3t7Lj4pVCBZNW6DN4MJdCf2L9NGFEJvsyt59ISvy1wNol2/ZHf/RHRY2KgQ99YxkEvfWtb5Xf/+Ef/qHcg8ja5TX2bW97Gz70oQ8tuG9+5jOfwU//9E/PXXfpp/jbv/3bK7Z9bbTRRhsb1ct9tYu6K02+5/2FRVGu/1psf9Y6p2FOQHJuqVTCvffeK/e5tV7T5RDlV5GKDYk1LOxei4rNUq+9kqD6ieQYURDfBEklHaYphI6GXxelC/6e9jG0h1GgIfB1NDxa5ZCQUkNaV+VvDuSzeKEwi5pLWWySJMLtFsJEyC1Aw/fRlUzCjMUQDwJMW3VRAEmwgFiuyPM5caTpGoaqFXzZczDeaIglUExT0PA8nCHxOAiwqUkQifYNlV34Xt0aSfkqpm0SQRjrqjBVqsZ4ktPw/fgwNU1sh7gHyq47Fx/y1XSFKiyOKLrsTqvoNbsuOgbTdgXcUqqU1JwabDkPwxzuiZlBnK4WsCmewbZkHr4XoOQD02VL1rIpoQtRqGDbqHoBykENddZQmCsYJlK6Aqtp03k58DkkvJCsEkK0bJrR7nzTgz8pOMxZwmMhR505jaLIzxPMd2jhgzA3IKhswn/LfIbGoQQXdddFxS3KOnl8ncBF0aHVrY+uWAZe4MIJ5u1F+Yo6WBynEksVabUhxBx+lvlgraLozGLGn4Rv+6Lwwq9m3ICiKWJLRGUbknBcxRMbIOqpCBmFpELFE4simTSU4xPuQ9k+klnEdsqDxonLpa718tehxQ7XGUNi7rxda/A+wM8BsZQi5HrMZ67nHtPOadpoo402VhYR8Z73k7Xq0axEjM77NQda2ePYsWOH9DiuJ7ZuJausFqanpyUnu9QwdLSm9URW4XnDPIxrb1XqX284sKMLR85Tw5Fxb/gzKtozBty5KY+y7eF0oYGi7SKmqjg6W0fBcqE1bHT4FgbPj+CFcwFSmRR6+ztx9+4e5FMmvnx4VNQ+qKgS5nhhcMtcggRw9lHymZTU6POujin2gGh1GjiYna3L+c+cpmG5+OSzg3hluCxqIz2ZuOQxx0ZLmCo1kEvHRcEjOvYynGu5SMY0bOtKSr9pZLYuQ6nsYXi2JWtgF4NK9ptyVE1R4VIRpmqhFqhCJuGC1VgcRcvD8xdK6E5quHt7HvfvXWj1Olm2cGykKESCYyMlTFct2CS6yH4M8M7/+Chev68XDx3oxcM390t2UCw3cPLCNDKpGHrySUwX66hZHuKGgmfOTKPh+qJMsyWfEBLNZKlxxeM4xAHiFtV5+RjMfRaaB1a2G/Ac9qFEf3G+txn4CBwHih6X3gz7TbRYMjQFMV2DK+qZEDIS1Sv/7qnzUAIfmbiBbNxAebaOC4Mz2La9C4mkiYnZBio1V44N+14pU8e2jjguFBr4i2eHce+2nBDn+vr65EH8n48fhqJWkNAClCr15vmooma5qNa4Fg3HR2qYrHvY3Z1Ad3N4ueJ4eHaqKjm1nJsKnRFcUcNUFR+JgAMGCsbrDra1EIdaySAvz9ZwvmLJOX5zRwJ7MrF1cS0hbI8jDMZFyjBhTsphj/WX06SusSe9nvKZ72iyyuKi7loEQdH7Xm+wcTmm61qua7lgMEEZKn44LieJt54KuxHIkL5eFZsbDZ7X77ulH//h0bPCxo2rAdyGi4rt4db+NGKBjz/58jFMlixomoLh2QYmXCCVTWCqFqquxKnM4VEmOxByyD97ww58+1wB//HRmkjF8XLNwIXsTTJV+VzRhJjzBw8DmLipi5yYoquok/DheTBcD7W6h28eG4WvqNiSiwvjNGbqsOMuhovAudkGRku2kCY252Jy05WibJPdWOZIYRCWxCh9J4yX5vtTfk6e13IfkW9ZHwwCUVNxAj4CZPNx/N9v3bNAESV6Haq9FOqOyHHLdB+5BayR0jdysorRkoVvnJ7BbZuzeBk5VGMKyrVw+pOs4VrVg5KIo+Ap0EXpBhiv+pisOtie0dG7SM1lKTCg476V6b5GGIC4zUE9oUr7njBytEQs/Jl42bPwGclpB9ANE9vzcVGLoYdlJmFKsMhjxNeWP+MzbdoC+djbm5LtZ9DG305XbAxPVGGVa7AbjsRhZJnOFOuo1Gzs39EtDO6nzxcvWj/thBgcVxweF54XaliAVkJpOMV2kNWBaU/F84PAfpKYpY6rIKGaKHt1FJ0Gym4dZdeSgDg8Ph5UyrazObGwfyGYaNj4m8FxzFjh+cynvDBTwiObunBrx7UxT1caVo1rD61/Fkwhyr9Z4l5dqc8bGQh9+MMfvuzvOW3yJ3/yJ/K4FDgd8bnPfe6a3r+NNtpo47WEqKgbxcgrQTJYK7IKE2SSwDdv3iyKJCuxLTfSe34xaGHK3IC52GKFyPVMwKe6AIkq16tic6MxkIhjazKJs5UqeLZpgY+6w5xAwV0deVT9gqhrsMrG/2YcC6eLwImSh6rYXSqIN8kutq/gtnwHbsvnRbnjWLkkcS4LxSRDCLGhKffbGlaSeELiBp+TTjB2D+BRaYS+1raLstVAuV5HSlebr6EjpemYDQAbCobrDYl5M4aORPP11eicECJHqO7Cn8/Fuc3YNSS2zJ/L8mvGyQDoGpPUQ5INC4MmOtFlXGzhxPOu4dnyt1Si5EvwveTTG/gYtoqYtqs4W51Bta5g1FURKJa8B3OanOkhrtH+lbkeJ+UU+fl4oyZSyAfTV24KGFQeoaJN4Aupg19DLUG+YqiUo5NAQ1KN58v6Wj/BYtnM/ekF6NSTcMD4PpgjqgRKAEUPY2o7cFHxuP5QxUX2p0I7pQZqro2kzkL0/GeRf0PiCl+HNj0BiSVBA3ExXWpZg8r3U6DEw+MsJAz+zw/PvVq5JmorZoKKPxqSRhgzS4wfcDt53upwZe0tUIFYyhSizFKoo4oaygtIHw3UkA06ZV+uNXitbTCnwcKcJiLlq/7ar7EVVJO6ntpZO6dpo4022lgZ8N7OWIo9mrUaJl6pnIbbwHyGhIlrtf1ZjGhfrEZOw2Nx5swZedCGlcPQSx2LVgLNWuSfl7IrIhGDvbFrVbFZDXz/Qzfja8+dx8hUFTE9AKoWCpUGtvXlcNet2/C3J6cxWXckjio0HBw5MYrC6WGcOjUmahuJhCkWoA7rspaJf/29bxLV+ufOTGNkthbGqIovdjvswUgfoaVHIwOhjoeOdBwNxxNldtfxRGWSuUjDtvHk0Quoexq2dyVgqFT+06Dm4jg/WUHNrqNQsZGOG9jSmUKpQS33cFiaqDQHZEmaoUpItrndzMVIYCGxRfo2zc+aWOdwfYaOXE+HqLpTZcUOFPzs2/YLEacV7IVQ/WN4NrRMjRT+o+h4cKqKvy1dwOMnJvG3T5/HcyfGMVFxMdT8W56vqq6J5U3DClXwk7oiJBj2PPoyJvryC2P/pdCdjYdEFD9cw1zvkttFInmkgsTrW/Oz6zgt1xeZqvYx0JFAMhnD6akaMnEd01UbNSrJu+Fx43kwVazL4DGtmDhsLOItCDA2W8foWAkG1fWZ3PE4aOH+OWVVsbs3iXzCwJnpmpwjPen5fcnzYKTsiIrnhSrXyB5TqG7DNpruOehEgGnbwOCUh5s65z9TaUND2XEwWLWFoDLZsOWYR8egAgUJGRS4eL+R6PLnp6YwWGHOFW7h01NVUWl5ZHNuXRBW2Cvt0hVMubStnR8EqzWVYrYkjdfMQPGH11GPZn121tegqLva04crGQjR9ufll18W6xlK7qyUHNxqSWbzw8SiLtf94IMPXjaYWC9kFV7MqWDD/cPpQxbT18OF9HJ4464OzNZsfPjJ85is+oh7Du7anMUvPLgNH3nstAQKN28JJz9PlD2UXQ+VijNXJqPVCrcwpitiDfTiSBlv2NUhN+Pf++oZsdjhzZA3vY6kjmMTtTkpZxI8SFLY0ZHA9o44PnNkEoZOHz0pzWLWUuAoGmr0J1Qpb2cjGdSkhDdcC9+fN35Ox01XHbH0kcKxArmJE/M3v+bPTQ0li0lOIAQcbl9UZKVUWdX2YVAmzg0w0JUU70aSdxhYkaG6GL1pU9438nCU96MQSfP3JOiEhBzgi6dm5srK/JnH64uqQk+aQgCh1Q4JGopHGWjACoB4whQvxyvh7Qd78ZWjExgqNMSOh7EdPztkI1NijmVBuZ5FvoiywGiVoSw2F5+OkVAU2UGFVlHhXGX4fFlfoCBranPBbDixGUqjO5z6tF0YlLz2GbSq8qCd0PhMBfFUQt5jMTqShhCLKCsopCVOH7pMSqXjgHhag5bUkLB8zFSBs8NTcj7FYmbY8OFmQUHRCYOhIGiujUxwBlOwUfPqyKoLCShfH5/FtOWgk3KEzQZR0fHwtfFZ7MkkkVwkv7gWYGKgNFQgzfnKhdc5FshbPd/XGrz2kSS5kn6IbbTRRhttbMyi7krE6NyOY8eOCVnllltumZv0WUnbzht9LKgQyW3YtWuXPC53LNZLTsPJGBaimReTXLPS9/WVJuQwhnvXQD8enRjHK9M2mKlkDA13d+SxN2ug5M+I0oSqaig6Dh4draJok/AQRsMk1RPMHnwVeKlQwq35PN7cx4k74KViQUgbzARyMVNUJhlz8n0tj3Y8obrJwWwWZ2plsbJM6ioUlbZBKgrQ4Kmh1Sjfy3FqUHwPjmHAERWNkBhCzNoObC0k+8c1KpY0lTWa9HJ+Z0jeogphQ/Q3pNDZJHhznarM5oX5gKKE9jsK1QS5Z4xLnIOhxVFoMRNWFL3mOzIaDovbtAuyUXQZfYbvIQVx5i0NFUmNVrAKElo4yECSDHOsuhBLrlxiMlUDHUYeE/YU4DNfaU4ZIhAbJ9ohydqblkBN95zwnGr+f0ghIlFGgxNEZHTmaQuJJ/L3Mpwwvy7JCWmNCk+m5qgQGv6c/4XmSlRqDI8klozB+UzO20UkmXAQoknIgIpkPinNhIBqoFYVldmq5DLyiBlQeezn9nwLmgQkqr0sJrBTsaUmpV/MK7Uwb4ODOipI42IVp9UGr+XVQh1qoMFXOEHaXD8JRIEGI1g/qpbXS75vo4022mjjxtj+rGVOc709GiorssfB3sb12P4sBvfHauQPtAihMgnJnPfdd59YPlxuTcR6yGk4/Ez7CtpUcJh4PZBnLoebd3Tjd37qTfj3f/UETl2Yhm25uPXAZvz6D92HE1VPiCrbMjHJQV596Sye/8arcBq2PI+wnbqQ6pOpmNjofPXZc/gHbzmI3/yB2/Hrf/kcToyWoPoqOtMxIUIcGS4K8YFBZKFmi2oirX8ePjSAjzxxDpM1KsmHfQS+XmGsgAKPq6LAsNPI55MSol4oMdZvUpJF8cMWJZBU3AzJ881+SqSQKARzRUFHRwZDgxNC2NBUDRUOHJO2rWlIZJKoa4yPTfiGie58Cl0pU5ROSKRZbJdE5BKhGj9/zzxM6vxUIWmeiikO29JGVVfwhReG5X2jDMsjo4IxPPNCw2QxXvKFuhvIUDGtizgDvaf/0ud+hIcODeCjj53C4GQFHTxeHBBWAtgy1WvIALHsq2hh4c4Jv0o+xp3JHo2OGC2KgjCnY37V+rmSnNpxkdHVUBW/+TLsa/G4UbVFpZUo1W6aSi/cbZbjY7RgYVM+JiSdiEw0v5RwLYU6+2GKkIvE7lVU+gHP0FE2YrJNtAU6NzqF7rSOmBlrDuXQLhYoOST3N1+z5fU5EnC2bGFLamH8/63xMs5VLOnRzA2hOx4em6jgQD6xpBLLaoNq/vdmFHytqmLa4sB5qCDEQ3FfTwqbkuvH1vS1lNPo38le7mtd1L1eUkjEGKUPH0kqnEBc6QDtRnsPRnLTZOnedNNNVwwm1sMUYsSQpl81pdE4fbjW59ByQCbrufEquhUPubiLzlwWXsPB3z0/LBZAe/ozsh3TDRdFEkCb5b7W24zITduekDr+5eeOY2dXCnu6kviF12/HJw+PY6zMYm6onrG7K4HedAxTFVvuoG/c3Yl/dNcAzs3W8YUTU/IamhpIsMRQKyqy8sI/ZSsYyKRRt2zYviOFU735XKLU8IUIkaHRYvN0yMY5fxfGGvyeCiwzDVfWK5OIIi8Sklh4c69SlYREiSYRJmnqsiaSTqIbZSvOz9aRNnnT1lBtvmaTayNroMQd/67QCH9HxRbe5CkLFsnukZzjU/1D0dGoOxCxaZ8WPJoU0UUeb1HgsBi3bsnh5960C3/w5VMYnG0I+5WnXzKmQzUU2A1bgiydLNvmURMp6WgRzXN1tmJBMwwMdCbxyuBs+HtFRdAMhnRDQ8xUZU0RqCxTthw5VmldQVVTYJIURC9DsrU5QaqqKFQsdMfjeOuBhTJ9BPedMremsKgcnWbRPvXp0c5gEwp6ujthKi5sy8ZsuQhPBUYKDdTSkaLK/Lnp+iQ9AVPOLLLGPFml4nq4UKUUuzpPvFEUZA1NpODPVeu4Obf2pAveBxRHQxJJkfZmAZuF6BjiIvC9nsDElbhWP8Q22mijjTZeO0Xd6y3sRsR1bsNK2P4stTbuqxuZG1AhcmpqCnfeeSe6ui7vbb1eyCqFQmGumM7CxkYhoCqKhXt6VGzyfZiJuEwEGqqHesDYhMXKsKB5pGChTF/3i+kAEv+T6H2mUsV/P3UWHaaBbakkHujqwZFyUSbKSExhbkIlF8abtBoiSeNAtlMUWeIFD8/MFFFpuMJRqDgh74JqKZYfoE4ygx5HX0xDzaZ6XgC1qbrhSSFRkeEAkl2EqNLMuRMk2rhUb1EQ0zT0xKjGEimhhHob3MK+uCEkDckFxPJI9o4Q4bnRxiVUNqiIwt9ZQUiNDukWIYIWgkfVDYudzExY3m19jhOoCLxwUi6ukcQDmOLIo8pE5nKwNT4ged6MMxvae8p6FBgBaxCM2VtG8+Y5HM3MtLk2qmPCEftPG9FkXnSihF+o4CKWUGK1E+ZZLi2ZmiQT5gYh2ST8r3VLaThKFZiEevE1SY5Xyz5rXayU50mkZ8E3CMQO14zHYdsWLKsB27Nh122kM0nEWOhcdOlmWuYpzCm5R+aPowNLfhYRVaL34n/MHVJBds3rEryucT1xPwlbseAp4bVXCwwYPov466t5RFWp10Jht4022mhjo4L3DRIk1lOP5lpi9FbiOu0Cafuz0ttyo/OHKDcgQYU5GXseV1oPsZZ9Gr73qVOncO7cObmfs0ez0kSVG3FOcvC3ks3gTe+9HweGRtG/qR9mMoajroKxio2ehCExaq1m4blnTkmY6bbU5wkOjlbKDTAD+rcfeRwf/8Yx7BzowM+8cTv+/uUJHB8tSwtgqmxhe3caW7pSmKpY8jr37u7Gj79xN7o7EvjiiXGcOTcFNfDhWA6qs2XpKRiGjoblYHy8JNlHqjOLulOVgVfa1DiM+QOgZoVk8WzCnONhZBOG9Ejqjo+OlIFcPoGevg6Mjk5DFWJIeOxSqTh27N2K0zMNsUO1XU/6N4mYDssL7YxI5FiM8VJDlPtTMR2lBvOIhb+nkjwJG9x2Dh1zWaahwmoOLkiwTWV6xRDCSmBTuT1UeOHzuP3DMzXsvgJhpTeXwL/6/jvwbz76LM6Nl2DbrvSlzHgMRswIczcZzqXlUVN5RYYXWu2CgJmKhayqYV9/Cs8NluYGLCJwn9P+1GM/u0kA4kD1bNN1IBU3EGiqEE5KDU9Uc6h4r2sc1vYwW3Px7kO90i9rBXNecUZoDlSENkXzu4i/kL5WU3E035FDJgZYtoVCuYyyr2K2MYu6l2oZf54Hf/LSbA2vX7QfD8/WJddt7b/RTmjK8nCyZK0TsoqPvSkdm/u7hVxzoWajM6bjnu4UXtezvuomAXP3avU10aP5jiKrrLei7vVIU9frdbH9YXF0pWx/LifntlJqLRH4msePHxf/xquRm17rwi4/+C+88IIEbAzcnnjiiTUnzywXz5ybxanJCvb2JFGr+ti8KSPqFoeHS3CoOtL8LEzW3FBO+jLBHbeYMmEj5QKeGizIze7t+7rx/bf1Y7xsoztliJXPmcmqqLBQPu3BXZ3Ymo/jq6dnwoKnQv/2sEhqqEAurssNnTdbkkfGqzaUpooJ76X7+rLiQUiFlJrtY1fCQW/GxJFCTbx4yKSlygrZsgxUeHOOK8CW7iT6czG8PFIWObSdubgUYEmsqbv0gFdE4YM3bwZR77u1S9imixEqrujoSht4ZbQaWuu0XD9Cax5FWL0MQvgrFieJuWfJgGAgazWpxOIFQoCpuYGwkZd638VgQfwbxyZF2URYnQkTgaaFIiqctDQMZHwX+XwCo2Va9HBfh4XMUGSFjF5Ppjlft7cDhWqjKXUeHll5rqIim4pL4Edm7GTFRlfKENshbh6Dxc6UjmqZrFtuCyXuAiHsOK4n14vX7+7E993WvyRpioEmg0ZaOUmsxmJuM9h1XU4/cz8CO7sUKIaDQNGg6TEkYaJLTaHRqCJAOdyvTRayGjUe5PKw8DMpAZcQZJY+m9eLzSCvbbqmw0RcHounKdcTeC0kNkpjq4022mjjtYS19nK/HPn+aknuIyMjQgKnUuFyiOvXurYblT+QvMmibpQbLHd6cjXUXi4FHqMLFy5ILrZ3716RymaRdyOAhIaaX5EYSXN8ZNMGEloCdmDB9R2xd4lwoeqIImBlUbFvwevxHGw05HGsXEGnaeD13d2imEGroN5YDP1JDbbfEBJGWksgpSUk/pyyHNRdKq6EXuJ8l6ymilpj0faF7MJHyVVClUUWEqEgaZqourQVDS19ejmRmIpjWpo0Yc4dU0PyfNEVajv64rQSigkJZtqqIR/TkTV0VCmPzem3IBCvb5LlKz697TVsSy5drDJUDTFVF3pG2buYxCVxs/ijRwaizYLqHHGFEJ0XNDwVMbX5E1rbBBxCWB4xrOrV0PDrkou5nooZi/uLL+QgptroiunoMkhE4vBC+B6tR5JiKJSopnJJSsvCad2WaLJPURBTYohrPiwvtIvi+zFf5H9xNQazSeoJLYRIEAn/i/4+r3VDZyF7EQLFh0b1EHn2/Gd5PuciQYYkfRaYDSGuJIwkEqlQUpzHTTHCayZzOOYz83F/ZD218Ny91Jm81HPXCnP3JaiIBQkEQXhNXK85zfXaALXRRhtttHF9CpHMaUR9YZ3kNNdCwGdvhoO4s7OzyyauX+vabkT+wP3PQegTJ05gz5492LFjx7KOxVorq5DkRKcBEk/vv/9+Wf+N6tGs9Ll5rmzjTNFCX1KHltWxqy8rBJazJRuW7UmsT1wYmUWjbsM0dVRLl97PU4UavlWs49tHRvCpx0/gjbdtw7967yFc4OBtTMdtu7pRMzScmq4hpiq4oz+DPfk4Hj8zjtLIGNypoiiKkMzPmHVTd0bym5kibWtcTE4W4ZgxUS5hL2LfQFb6E8WaLTaonbEAD+2N4VuDFmarlnye+b7sH1CR4+xUDWZ3Fw51ZbEtCRwbLmHaVXBgd58oqoxWXJTr4bBzwtRkLbTjecvNvdi0hB1PTNeEqLKrLyOqMXyPVogyCO1i52L6sF+w4PSQJMcXqx5V16Ew14ubQpih+kzoBnB5MKf46ktDqFYbMJmb6OxtMdcAbLFxCpBOxtDXkcTpkcKcmMpilC0XN2Vj6KK1TJMQ3xSZlO85HNyRiqFUcDFWaKA3G5O/sR1Xhh56u9KYqDEGVxCj7ZPri6oKySjshdzcn8aP37flovdlD4u5UU/KQMmiokzUMw/fn7MD3As115eBcZf2QvyJmYSnJ3AgoaGHWqdTzMP85tBEmNOEORJVYi4+b5m7Xio3iFRI10tOc1MuLo8bKeawEqjVais+9LUW+I4hq6zHou61BkKUNqMkG+WxDxw4sOJEkhtNVqF1BIu63GYSba5mkmUtlVXGx8dlv7eqwKwHpZfl4shoGdm4AU115u6MlE3TdQ2+puL4SDGUdKvScz0qd135cyLBS83FJ14eE/brD93WL5LHf/X8qJBhUqaGkWIDxydqePuBbnz8pTEhiZDdKaU9utf4QNXx0Zk0kDQ0TFQsCTR41pmair6Yi7ipYbOZDAvsBQsP7u/AA30avn5yEoMzdSQMFXdszmBTdx4nSgrcQMFNPSk8sCOPuKHhayen8YffOIexsiU3WBaSybTlqU2bIlPX8ODOPN5369Ky87yxb+9M4OhYJZSXE9nsZmGx6RVPkLFLWedQqntOeGXumzmtGrHTCW2DGDioJJBUbZHhuxz+/qVRPHlmBps64jhfdmHQCkd+05Q111U4liLFarnMBb5IabPeTNa1WBV5Ht5+6wDec9dm/NYnX0G26VFJ6TYhTOiaBBMp+HjzTb1C9BkuNISsQlLJwS1ZIauMTZVRtzwhmWQShhRaG46Kn3jDTvzS224KJQQXoS8bk4DS1H30ZXUU7TpcT8FMLdxfdU+F11DQnfLxA/vzyMQ1zDgV6IqG/lgeA/EOnKgMY1LIElEhd57JL/Y+Y0WMp8bR0dEhsnQZXcOmeAxnq3XEW67/VFxJaBq2pdaHj2l0f4qwXou6EVklFotB179jwog22mijjTXHei3qElGusNwknttx9OhRia9vu+02sTO9UbhR1qa0LGJhetu2bUL6uBqiDZ+7FjkE9wPJQVSBoUQ2pbJpKbtR8hkSIah2QWpv61lGZQ0qUZD8QeKKr7DwFspUR0SLpbZQWVQ0m7RsfGl8Au/o78P+TAqBWkMtqEpMbepUryjD9y2cKQJHi3WJnU1DQcWhpzoJGL5MtOUMQ2yIGr4v8SZVnSkUnFAUJA1THiQrUK3lts4+zJaKuFCpwHIcZAxTiCZKOoWGrsLUNGxNZNATY+M/wJcmBjFcr6LuuU19jVAPk/lEyXcRVzXcne9Dzlg6p+iLZTHUmIEjY37zBJRIGySS7DaUABYVVFqywqjUSOvNMNdhITK0Z4q+0proSmDx+EJjBE7gQgtMjNVrsH1t7hjZVJz0PaRVTyyS/MCeW0VYvA3fP6GZ6Nb7YAd2qKAShNchKY6S/EOrHcVHh5mSwYSqXxNrW/5nqib64h3wAwdWYDVfXbRW5PcaNGzStyKmLu1XTwILV2PACPVIlZB8FCqf0GopJMfE1JgonlBhJPydDj0wkcyqqCllBKonRB8pXjfzS15D7YaFydEC8rm8TDjzmmHIeR/moVGeEFJlgtAydB3cD6LJ+I2Qz7yWJLPbaKONNjYSeK8gwWO9DRNHayEJ4mptf0j+JnGddbIbBe6jlc5pWok2d999t9RRr2Y9a9UXKRaLMkzMGIm9JQ4ObKQezVjNkeCadp8R2P9I6gpcR8FwxRbVwpEGrT0DePYyyOB0k/B8lKo2vvD0Wemr/Px778D2bd346nAZk/WGKDoWnQBfulDCVMPBH/zFk6KckkybMFwfxUJNXmOmUEVvdxYD+QSGZ2uwLAflSgOGbmJTGkiZOrLJGAY6UxicruGOrVn8xBsGMPDyCI6NFqErHm7ZksP+LV04NhOg6gDbupJ4+EAvOlImXhku4pf/6iWMlm10BbTB0VCshYOoNZIwXB+3bc3hF96yd8lNZe/k7l2d+PLhEek9qE3VksXDqFHuIsQPxs9NAsjcD8PGiQxVM68TJ6SmjU6J5Jkr4NtHx/C5Z88jl4qhoeiwXB6niGUSno8cylZipgwisIfWdB8VsI+m6Rru3dmFX3lkN37j708gn9RRboTKMBw2Zv+MXBzasb7p0ABODs9irNgQdwC+167Nedy0vQOl07Nhn4v2UAn211RRyH/Lvm787rv3iZPAYlB9pT8bQ33ax76eOM6Wa5LfNSwOkof7r24HMHQ6JmRxS08Ox4t1+dv9uQTu7E7i5Zk64rPTMpAuJBc5FTnQHWpb5moljIxAri28ThK0+qFaCW10SbYhGmJjBOy6Ql9stbC4H75e7lGXQltZZYNgPXm5Xy9ZhesnS5STcAcPHsTAwMANXVcrWWWlwMIoFWGulWizFsoqPIdot3T+/HnccsstC1RgNlIgRDYriQqtkEKkrqKzI4lvHR0LZdIMDXYsMX+HviyaFjeUHvaAT7w8jq+enJYpxv6kjnu356XqyRvykYkKfudrZzFZDb0AWyW5+ZU3b8dpnU2j6HGo9FH3msxKqnxUbSGmjFY9/O4TJTRcFWkzizdtSeP2TQpKhUnsqpdlQqoDHaiWACOfx5v2dEoQ8L+eGcKJiapIsZENTFWYm/vS+NG7N+O2zZk5m5il9t/PvmEH/vVnjmOoYM2RUWQAUogn4fNEaJoSafzBvOW8gAFfK/uWx6NkAxlDQd4g2/jK14FvHJ+UtRCV5vFsPQdFEccwMDFZxPbNXRgrWqE0XxMxFXjvnQP44A/ehleGyOoNJMijtY5BhRTXldcgi5lKMr/6yG55v2fPF/HccAnPjpSxuTMudkUHd3Xj1TNTaPDYqYqQjd5/39ZLElWIjoSBd+zvxsdeHJPAh5cAOrIndGBnv4HbdinIJTzs7fGxN59DTr9Yci+rJ6XwyynXsIAeKvXwZEwpJpJ+TD6vbMbwPGAj5rZkBpOWhmnblfNTrJJoN9CTk8nU9YAboWJ1I6cQWdhdb/fTNtpoo43XKtarQmSE6P61mHh5OTUSEh5Z1I2KFjcKK00M4f2aEt9UhblWos2NItBcadqGRV0eq1YVmLVWrrwatDbow2/mKduhygXtgKrS/N+cAqab5tmXOvoLDU9DkFzyyeFRKeZuT2u4syOFrth8AfzVUgWPjddR90LLmLD4GYIW6EXbg6GGk2zRG5BUwiyHMa88z/dR9Tx0GCaOeRYKNEiP5ZDTdOwiTaJUwczJs3KOJPJ5NDotVDs7ZVrqjd2b8ezsBI6VZ1H3Q996kq9pUXRTphM3Z7qQ0i8t295jZrAj0Y0j5bEmgR4yBRcKZIdgnJw2fLi2KgXLBYomTS/2UGWSVjqBEECY+3QahlgXLUdVxfItGIqJEbsOS6yM+FrRcWFuqWLUsrEjlcKYH4hV0HyBWUGHkcA2czsyehZTznhINKHSCl+nuT3hsfGRUtPYnupD2aug7jVQRwUGyR+KzhFIGbQgESraA6YSExLMpYgqRFJJo6KU4Aa2vDch4wqKJrZBuqrDUEmjMmH4Joxgoa+5rBOaEFw4thgOP3DBoeqSbymolCu4MHhB/p3P5yWnSfXG4ZuOGBlFxBUNOhJYH+ogPGc3Sj4TFXZX2k67jTbaaKONpcE4Khomjgju6ymfuZoeTatS4a5du+Rxo7dlpZVVyuWy5GQk2Fwr0WYt8gjaLXHogVZLtFyK9vtG6tGQsDA/dDn/c37bnzHx8kQVZRIP0inoyTjqM+XlvXBTusOxfXzl6dN47ugwUrkUDt63H2+9cytiMV3e+8JkGb/9/z2Nw68MSW+iUrZCjkWzz1CuWAi0usT7YknDvoehQ9FUWVcvB2GDUCVelD8ScfzaF0ZkyDWmZ/HAjgwevCkBu1LETUoRsUwMnelOOFUTjtmBQ5tz+K33HsT/+5WT4gRAFZCYqSOXNLCrL42feHA7HtrfK72HS+H/emg3zk1UcGFmvKmcOE+wD68tYY+EfS/2Y+aJ4eHfc3t8aeaECQZVZYqeh5So6sekT3UlPHl8XFRM0nEdz46zR9HChmkSVriu85MV7NqUw8hkRdRL+K6ijGmoeP3N/fjQj9weKr8gkL4Jlf8j9f1o29hb+5EHd+BA30E8cXIKRycq+Oq5IvrzCRnAPrg5i8NDRVSbQ8Xs5bzjQA/+9dv3LklUiV77fbf2y3D3NNVkmu/FcySfM7B7c0KIKsmUijv6UnigN4M39C9U7+xPGOiOaxit+ZILN19Z8sSMCtyeN2XIh9dK1h+YzxxI53A8pmPSCns0TdF93NWVWjdkleXUtdYLXNeFZVltG6D1Dl70qeJBNQwSIyKW5XrDcm7stP1hAMHnMYBYjemPlZRza/UQ5LGgOsn1FJtXS3qJbGqSa3geLWW3tJGKu7dvzeH4WAV1+l83bx6jJUuUTzzXxf7NeSl31WxX2KCnq55MCF4ai7XTwqJgoU6vwEBIJccmayJVRhZoIwhgN2WyF/91hEgaTNjivoe67YNDcramQCs0pCCXS+jIxw08da6IfMKQmzilz/72SAGZ1AD+4T17JPGZmp7Gt06M46mnRoVNfLAvibt3dIonYTamC3OUN9xizRXVmWMTFQzkYuhNm5c8t24ZyOI/vPcA/vFHD0uwRoUWvkbD9VFoUHpcwQ/ftRlfPjqB4YoFxTBETJr/k6JjS/AcND0T+ajYPtJdCfTlrqzwwX3IeKUoxJ6L5dHIXtV0FSXLxZu3pZDI9OIzr4xLwLglY+D9d27CI3d0Ydgah5JpIJdWMV1y0ZE05NgxyOL66A/5Cw/vwbbOUELs3bfG8aZ9Xfj3j57Dq+MVYctq8Rj27ulFj6HirXs6ceeOTuzflLniZ/NH79ksQdbnjk5ixnKgaz7edFDD22/j/gzPn6SaREZbuujaY2aR1GhRFE4hRueT7gMHMzvQ398T7ivblumAmZkZlM+dxh7Hw1Q6j5oRR1cyjjt6OnBTdn1M0vH8iKbkNwLaU4httNFGG6ubKJMYwWvvcmWZ15Kscjl/88j251rUSK4VK0kMiXIy3rOZk12r1OpqF1OpnkKZbA477Nu3b6HywQYq7OowpPnvIJSJDqLhlMCBqupCWEkoKfiBh0P5ANMNG2crF/uYL01YmRuzEyvPiuPh1VkPQ1UbvQlNHuM1HyN1T4gqc2YxTSXF6GNJqx4+Is46n1X3Q0K7PN2x5bl5UVdxUXF9pPTw8zPl2KjrOt6xZzcOGAfkMz82PYVXitOYnhyGoajYFkshlk3K9F+HaSKl6vCVAFXXxWCthB3JrBAxzKal0GLweO9PbxLi/rHKBGKKCk3VZB9RzaThu+gyk2KBdLo0gwlLRSMIVU+othJX57VW4qoHqpSHmpJA3feQUK6cz0T7hX9Vbsp2R8R//o77ijkjbY5ieoBDmV0Yqk+g6FWFbM5cYGdiM2K6CVexYFDpzyFhibmXI/sjOiAknuS1LtnurJ6RRyNIo+hNNwkqVIOhPoqOmJJAXEkgoaahNe2BLgX+vlvrQ8GbhhU0wvNT1ZHW0ohp8bkTQ/PMpY8D3zcw4KtUXFmIRoVqm/3oOtQr5zcJfsxppqencfp0AbneDDr684jHY4gbCWT0HDQSb9YBFiurrHeQxNdWVmmjjTbauPHg/YwNNeYBJAlmMleuHa4FlkMIYc2Z28F7c6RUuBpYyR7E8PAwjhw5IrklrX+u9VisZl+kVZlzKbuljZTTbEmbeGWmjmrTdoVg7iERlKJgIBuDRlUOx8fbH7kNX/zc85hqFK/qPUR5vOFitlbA2Oefx4tnZtHXn0VcA84+fwLF2Yr0AJrPnv9DngsksIj6i8IdL0OxFSoYOr70d4yZGnRNE5LGTQM5PH2hiJRpoDNpCsnj80dn4Cq9+M3vvkPOD35Wnj41hg8/+Spmajb29qTw8P5eJEwV+XQcPdkYsgkdpbqL84UGXhgq4eDmnKizX2oYdnNHEn/0j+7C+z/0bYwW6qLYQiXMhu2jWLeFAPP++7fhlbNTePHcFOpu6PrDpENjj5hOA9KkItHdk14K+zrkqCiKij2LSBlLgYPI/Hv2dYSCsvj8axJWbNvD7q3d+If3bcPHnjyPyVIDPbkEvu/ebXjf67ZgxC2j6Fjo7dRxbMiW3tRkhbaxzIl8yX9+4M4B3L8jL+f5O24bwCO0+Hl8EN88M4uZmiNEky3dSWQMDY/c1IXbBrK4YwvVGS//2X5kX5f04/76xTEMimpKgM39CdyyJw0zpknOmDM0HMov3aPZnjbRG9cx3nDC4e3mLtDh4x29Cdy1JySF8/pfKBTCPs3QeRysNjCa6MSskUImbuKu3hzu7Emvm/vCRhsoJl4L1qbrI6O9AYgksvmV7C0W5dbLyX61rF3ehCnJRkWP/fv3r9oHhftrJYq7EeGDxV16CDIgvZ41EatBVokk5XK5nBBVlrK72EiB0N3b8zgzVcW3j4+iVHZQ0kpiC3TrQBZPnprEwS25BQHA9ukavjFCiemrZMk378WhVJiHChmdpgpFDT3CL4vm78nitMW0PNRsq/q+SKC951Av3r6/G7/5xVPoTpmiikKQITpetvDZo1N4zy39SBo6/upYHR97sYpyg8dIxeOTFv7u9Jh48HUmFEzXAviqCtdXxAfx9792Fv/nuREJmH7yvi04tGnp83Rvbxo/eMcm/O1LY8KATZsaVMUTi53vva0fP/eGHfiuXR344888i1mYqPos3FI9hAlPgGrDhV1z5mx6+DPul0TSnFNMKTVcPHpqGudn6uhKmXhoTycGmkSWB3Z34thoGSSaXrQ3m96A0fcff/I8/vJnvwv/7I07cHK8hGLNwflyEX/7ynHs3WKKdc8j96Xxsa9Pw/RVdKcMzJYdka/7tXcfxPfduXDKjH6Tv/bQDnz9zCxeGC4Jy/eeLTm8YVce8WaRfTmgtOGP3bsF339bP4bKFRSVEShGo6meoyClJrAzsQ0qmUpLgFLdKdOHAxV1kmv4mqqClKEA+vwJSwsgqjjxwXOT16CIvDI7Moqx4TOwOjoksaQcHRtOa3WfiJK7jRIIRWSV9XpfbaONNtp4LRV1+WBDjfcwTo+tR0STkZfKG/hzFkRpZ3r77bejpycklq4GVqqIGhE+ViInW63CbuvAwKWUOW9kPrPScQJfL61lUfYK0GIKfNWDE9ii0MHI2FNUIScQCQ14x+YAz8+W8K1x6xLqKkv9dF6NhY+iTSUQF0M1Fw03VFNsVYic+4t5fsTcz0Klj3kLHZb/8oqK+zu7UXYdvFyaEXWVaD9R5XDWcXCqUsLdnT0IYiaeVV1MxjV48aQkWVPwYJRnxaqGxUjbNKQIyTh6qF7H346cRUozsDuVxV0dPUuSVvh+e9O9mLArqLqWkFsilY6UnsD9HduRNeJQqjbSehGUQJyyIERxwgtoz+OhK8apv6Yaa+CLPDXlnCPM2jWMWEVRkuk0k9gUz4k9aUpLiA2P7UeS5nNaOS3EofA7ri9pVHBX7gBcn/QSW8hItlqHCwuxIIaEmkBcjaHhN6AEGhQOCQQB4koS/fpWGMpCAh0JKarWg7pfFcIKiR5JNQVzGUSbVvC869b65TVcxYaiBjJoEXm/qr4hBJpLIdA4uUh1lZbrpgLEYqHdT3SsWD/hgyQ/XjdYp+D9YGhmTKaiqU7V0cxpqMByOcLgjcZGVFZ5LRR222ijjTbWMyI1FX6l4np3d7fYt6xHXKlHw3swieushz344INSd1wtrET+0Er4WImcbLX6IqznskfD97uUMid/t1EGiremTdzalcQL4yVM+Tr0kgVTU7A7F8f5io3NKRMpoxlT96Zw89ZO/Nf/9Q0MXZha/pvwfGF8rypwGhbGRmYwWWhAr1dgT5egRyrjrYlNazLjuvIaYD8slw9VGEUFQ8Fsw8c7bu3Fz7xpN/71Z04gaepCLCESpgZNU/DE6Wmcmaphd08KXz9v4fe+Oin9F/JDvj5Uxd+dGITluMjFaHMTYKqhyu+myg186Gun8PcvDGN7VxI/8V078Jab+5bcxHzKxE8/vAd/+IXj0tPKJg2YVIcMAjx8sAv/+r234PxUBf/prx/DmaKCgg2UPAVizsl+U92B6jqivsJ8iv0oIbAoQDYRxtNUwf/G0XG8OlyU7XzTzX3Ytym8ft2xqweffea8qNMvzg8XwHHwzeOT+KG7bsPX/tVe6c/NVl2cr9Twl0fOo79bQ2fKxL2Hkjg3XUe9HqCLPZqKJ4ozP3LfVvzztyxUb2JP5mcf2IpbNqXx9GBRBqlvH8jgTbs7Zbh7ueBrvvtgL962rxunZ2v41tQsxl1bhi/4X09Mx1s2dSFrLv2aFcdF2a9Jbki1SQ5AaGqAhOaiHszbV7Gvyms/HwSVQOZ6NLOjqE45eDmXm8tp1prQuJGUVarVqnx9LRDw9ddyUZff84OwFjLLVwOuj+tdDN5gKZFEtiuLi5s2bVqTIO16gg5edBjEsWjCYGIpwse1WhPdqAsGt5eScpT3Jrv4chOsG4msEjc0/IN7tmBHysPhs6M4sG8Ae3vSqFkOnjpFr/r559puOOnWG9cw4/LfPqxIEkUQXEppbsFvm2Tcpk9f6B9+qX1JqblQ1aPZuG8lXrBBULHxZ08N4YULRRTrLnIdOkbLtLjxkdA1JE1V1EOmKjYmKjY+8uwI6o4nxAjx/fZ8nCsHoiTjmHHYngffdjBT9UKmKm3OfU/Yu785ewr/8T37saNzaennn3zdViGWfPnYJGbrLlKmKgSWD9wXKgbdvjmDD+xTcPd9tyKViOOZ8Qo+cWIKExMVvExFmFwMpZoj+zUe19CZMFFtThWenani5z5xBOdm6k3pNQX/84kYPvium/DAzg68944BfPv0DI6MlVvEsqMd3gzOPR+eEcOkB/z4/3oebq2GiWJDGL+moaK7M47N3Qn8ozf14+FDvejM6HjumIXpGQX1ooN/9Kab8e67ti657SSsvPtAjzy4vmfOF/Bn374gSin37+zAoYHlBxN8rf2xPBw/hZJXloK1rujI6RkpYF8KM+6MlPw5hUpbI9l0ma71MeFOoR/zVl1zu0ZRhIzCB6c4+LllcZfXKDaf2MhhYTcKivj1RnrNLkarrcNGQFtZpY022mhj9Yq6BGPo9ZzPXG4SsdX2h0XdyH5mrde1XPBvGSfQYnClrFhXo5jKgQGSa0h0utzAwEbKZyKCQE7rwlBxRKbisum8EFQqfmnBNJso1ikBbsrqODzjijphnUp2V/l+oZIhfbTDXGaBVPeCIcTwd2Jn0yS0RMrSrRi1Gvjs2Aj6YqZE8nbgixw0EddIggcKTuiR/vj0GMYatbmCpKif8G90DZ2mKUVtWthwarIi/AjmAR4oyP1KaQY1z8WbezYvGZsnNAN357fh1dIoCg5pND5yRhz7033oMEPFoB4/Ba1s4dCOQ3SqwZAzjapr40x1UkgnZGaQaMFCZlw1ZQggsiY6VhnDS8UR2Py9+LMr6Itl8Iau3TBVHZtjfTjfGBayec0Lz8HIUinar4bqYcpyUbDHMGmXYWqM9sPPDS12TBhI6El0GF3oNHpQ9SuwXAs1y4dd9tC3aYuopiwFnjOmFsb6XuCi5ldRRUXUe0hcWa5SCfetAVP+LhClxKatT6CGxJlL+OpyOwLFCweEWgg+srY47Xsd6Iusg6JcgXkKH7Qc4H0imlI8ffq0NHP4WY9yGg7erGZ+sdGUVXh/apNV2mijjTZuDET9zvOk5xHdH5Zrs7NWuBQhhNsyODiIEydOrJrtz3LXtlwwJ2BOdjnCx2qvaTkgwYlD0BwYoFr/peKMjZTTcGj1/r4UenUP35q+gEOb0uhPGmJDSlXH1r4L7WLi2ThuuWMHqoUKbMeVQdjLgucm3Qlaf+Z5IRmjXJVY26Xie4v1j4C/4P7lI5kAzBhAJdHWYVJFEfXDv31hFEdGK7ACoDcbx3jJkpyG/ZLOpIGZqo2RQgPpmIbf+exxTFdtsaeJaSoc18Ng0RUllN6euFiKuraL4UkLNdsX1cbAc3FirIzf/vuj0tP6rr0hyWEx3n37Zliuj7955gJmKpZY4rzz1gEhsTB/2tWbwY/c3Ykdu3aju6sLQ+Ua/uKV8xgdr+GxZ8eQTiZQrDho2CSGqOhOxuQ1pssW4qaGf/zhJ/H8uVnp4fC4/clXTuDXv/tm/PCDO/HGQwP46kv9eOzIqOR1S34SuE9rVVQbNfzzP30cv5nPYLjsSj9L1xV05uPY1BnHW2/txAP78ki9VcOLp6ooz6qolly89dAAfvz1S19vuK8f3tMlD577R8Yq+MQLo0L+uX1zFndvWziYfjnQculATxq7O5M4W61j2rJhqip2pBPojl26R/NyoYyy44L8GF0Vf4G5fuDzFRvfQ4WSJT6z7LnwM80H1x4NZ5G8wmst0dqj4fVqNa+5G0lZpVqtyv7ZKOv9jiGr8CRiALTYy329B0JcH9lkreAHlDdiflip6rFWzKhrJfpw3Szonjx5UiS+t2/fviIXlFayyo1ANPXJ5vVSknIbORCKbmL7+1JIWibu3heyp+u2iYGOBAZnatjVncJoxcb52QaGpqvI5hNivr4pG8NwicSQeT/F6GhGW7/UbriE+tmiHzZn6SiK0fQiJHeLhVf5TfM1RHmON7rhsgQ3szVO1c2/DMkSOzqTEhD9928Pomp7EhCxMBpte7HuiNILyrYQYxiY8TX4FLJoPc9BOvAwMmvjo98+gZ99w84lmZwMkv7Jg9vwg3dukmCL6idLsVb5PAmM8nHs7k/Bt1woKCKVMJBJmbA8PwzSGi76MjGZAPzVzxzFiYlaWOBWIft8uNjAv/jscXz+n9yDnkwM/+EHDuGzL4/hP37tDGxOS84tL+Tx1im9pipSMB0s2YCv0UBSNpTvOVFwEDM0/PlXx/AbP7Qd+weyODw4hbEhD5NlFf/5m4P49vkyfvGte+eY0YvBIO2DXziJrxybkgCLx+nPnxzCQzd14Z++fju2dCw/6WERuUtdvmym7Vsim86AXTwoI2sl3qCDupBezEsUpuf2FKXAs1l58PrEz340pUjfWV4HeN1tnVK8XrLd5cBrWqRmtRHQnkJso4022rjxXu5RUTfKZ5Yit68nLJVzRRLTvNeSBL4W97nrKaIyR2NOxq9LWYJez5puZA5RKpVk+pBxLNd9OaWFjZbPEFSjcKs+tKyBuBoSK6iKUQ+qorpBggAVONzAhaa6YuEzXHWR03UUm5+jq9niSDml9ft5o5/mzyOCPgkjzVxJlfhuoU0Qv5KgMtxoiB+44XLiLPxl0bGFBJLWdbi+hzPVkuRJsaY6CvMKr6lgUnY9UIiS31tNxRMSXWgP5FbrQsQ/aTvY7ATY2d27JAk7byTwQOdOVD3mVQHSeuwiJUwqHWpCTAF6YylYpopJW0fFtZFUzaYmCneIKhY8MVXHjF3B84UhOCRuhK7lcAMfI40SDpdGcVd+K7qMTiEeJZVJlJxJWE3CSnMvQVN8GGqYq7nwMGmXRAEm3M9AXNWQN5JQ/BpKriaElRjVVVBHoPkwMiomvWGkgzyyaiiZvRQsv4EpbwxOc/JPhp98IKd2osvsuKIdUASecwo0yqUs++QKFKE/Sd429zO/mfeqDvRLWAi1gp9tTkVHk9G0L2Y+wwctCnjfYB4TFXp5DbuRhd6NVNiN6m7Xo/zbRhtttNHG0uD9NFK832g9msXr43ZQ8Z7k0Lvvvlvup2uB68lpqKRy+PBhGd5bbAm6Xgn4PIfOnDkjD5JUtmwJB0TXKr9aaXDf9Sd07NAauKsn7Ptx/ZtSJk4VG0joKqq+h6lGHZMNDz3bsjDjOrKpGJRiDZX6vGrFRWAsNqe83mx86GE+GMy5FkRSkks0b5gvlcuAUqGsDf1FAE0PVVaaf88Y/cgoezQqxoqNsInRfKnzmoLedAzdaRN//9IYpms24oYqJBCChHuS7RuOjwvTFhxXgWW7sO1Qfd4weK3wkA5cTJcV/M+vHsHNXYckpl187lIR5Qfv3Ybvvn0AI7N1UUQheWYx+N4kbmzKJHD7rjyShoonX1SkP7Kl15RcRZQmrQCpmIZs0sS//Nvn8e2TU7Jdkod5vii//NbfHcbr9nRjV18Gv/kP78UXnjuP3/vMqzhXaFonRfucX+1wCIGkoMmpEianywBzO+Z0qobJelIGsD//wgw2dRjY3Z3CmfEGBsdsTNYC/M0rMzg8dRQ//8Yd4gawFHjefPiJC/ir50bEhon4CwQ42JvCL7x5F24eyC47/ufQ974s32d5vehZ2xFyDPOn+Zw3fK+aD1yoWUJ4uRy4NvZg+ODnnNeUaMCY1y6SBJnLtpJXbrSq1UYi4FcqldeM+r3+WivqRvYwC2SRNkAg1HpjHxsbkyAo8hRfy2T/WgKhKIhj43elg7hWG6CVxmKG8XKmPjdicXcx2PD/rn29+OJLw3jy7AxGy5zFA7Z3p3Dnnm585fSsqJoYclMObX6IiCiy1HWQP3PnfA/DG7KqheoqrViw71q+pQQ2H6HKChMcr2XajiopAVwvEG/DqExcd3wYGpCJ65gQFnLIVCaRgtsY+cm7LO7WQy+/0LIoLDVTTWa0SisZA4ES4ORUeD4Q0c2Qj1bmOQkqS5FUFp8TPXEdO1MmprviSMZ1TJVtpBI6dE5D2uFE3TsP9uLIVAGvjoTSXaYRzuGJJaQbYKxk4dFTM3jnzT3oTsfwgQe247HDQ/jSuTLMVCKUq+MkpeXBdXwoGuX+mn5MUcDIh67BCVTULJZGHTxzsoQnjpfwxNHS/8/ef8BJdp5Vwvi5sXJ1de6enDXSjEY5WbZs5IiNjTHGgMEsZmGBP7Af7MLH9+3CLh/GsMCyLAvLeg1rTDIYY+Mc5CTJsoIljcKMNHmmZzrnylU3/3/nuXWrq3t6cs9Mt1yPfD3d1VX3vve9b937hPOcI3MSUwNkUx6+dWxWnMb/9p6bl9U3/NJLU3jo5WnkiPw2NQzNVTFSrONvnh7Fp16cwFtu6sV//t5d6LgE6rmLNY2SStEJSVEgvLjs+OSrJa+MbvXS7ju8z0bXePv27XIfixK9BN0x8UtgS7QW+PNKOi1riV6O1mZWaVvb2ta2a5fUXSvMKq0gdxZIIwD4tZb9WW5cl5NEZVcPgSp87hPEvpKg1avZhUiGSNJ7X2zX51qSATrXvgm0sF0dKhJwlRocOAJaURVNpGDu7tLwFasguvALXW9hDHAui2akKfvDBsWAYJHWuVoArHBvrfvjqyKJ03i7poRML9Gn/EbHmeITdB++znER4JHQDdhsxBF2mEbMsgQBYbMzkkeVMfGzivjCPEE1Tq4PAkQCDE1PYezIMUlgRb4uE71RjkGklfTlwelL1wWZPmzY6IunUS7Pou4RIB52bVqeg5QWQ5/Zgf3FM3IenOtI1pOzQ6DNicqMgFVoWT2NbDqNWXcOIxVX2Gs4OYbiIakzRgJIPhlr4D84J8Lowu47sukGFaxXcgJQqSoVzDhT8OAhUANQWcfzPRSCWQGcpJXssuc3580IUIXMKDXPxmh1Dpaww0yJtNCO5CasTyxPPX41bGFZh9Tb52JmOZcxh0FGXm5Rl2JIrz2PU6dOLWJmWRrbfrfKAJF5DMm0wQABAABJREFUs21ta1vb2rZyRh+XDH+twPvIVntMs7RpN5L9IdjzWsv+XGhsF2O8Bsxpkqng5ptvFhaDlR7T1YgjGBMTXMOC9T333HNRslFrtUbTOuaa7WGLqWDeVHGyVMe8YwsbSi6m4d7dPSjevRGPPXFa5l1ihAjF3QCBkD1FjHEmc8xSvAnCBtbG2tVSbKatI+B7l4tH+VrYGRr+XCoClTJgmOHW0dHcF411F6fuI52MhQQsgSLnQVmabT1J/OMzI1LfYZMx3yuHVELwB2s7s0VPWD08xxemeBlRoGI47yNhGKAa0vHpmoCwuf4jEDa31gI9JXp29GcuOMcxTcOWRAqFfht93QmMTFbQkTGkgVpxgLrl4gfv2gxP9fCl5yYESE6GlQh74nqe1JX+4cnT+I/fvxfJmI53vWo7Jmo+fuufX1iYP/7rOIC3pOGI8y60k6r8zS8WMTuhQl3fhReGyvj2kSIeemFeLptJ8L7p4cBYER/8ynH8yQ/etGyd5fmRIv7hmVGZ4025GIbGCzg9VcSxk1P4yrOnce+OHvz+j9wmtb6Vtg7DAPvNI0aVcMU1Yl4yc1brFwSrLDWub7JDcqPiBa97xCRJcgSuBd6TWxuMVzL+iFjB1kqdplKpvCIkgF4RYJVW2R/aUqAKbbV3IkZgGjoQlJ4ZGxvD3r17V9yBuBaJVHbx0YljwE/Ax0o7cdG1XenkbqRBz6QONegv9mZ0tZO7EfhqpY37JQDlo0+P4omhvDgH/RkDHbkUYum4oDg39KTkgfueTAzfOjkPy/ZwfLYmyNdWhhSCSUSTu0XAnUAVAluax6POHf+8BPTQ2o+4nDwix0mdQ8ITbNtbfFxx4kLIAl8jKne26uBbJ+awvoNAo0CYVMLhLQbFCLCjcd1kDNRX9wPU/SCkxONx41m8+tV7xDFmgo8gMiI5mQCMnCI+FM9XuOC1e/zUPP7p+Qkcm6lA01VsG8zg9FQJ5aoHU4Ugdd91ywDecmMvPn1kWJCo9DGjaZCzF4YV4MQMgSwLxZ6KaoIp92o1BOdIGjhiGhHJJVWAN9F5y6uNCZu3CPYJ8JVnZ3HwDOnFFXHMKAs1OlPGpr4sDowWcXCsiH0bOs46t68fmZFZJTiI5zZTaSC6CQayPHzq+QmU6h7+4r37sNLGLswG/qjJqBKtJQ0rEyixS7Gvr082Gim1I/AKAybeg+gMRY7RlSJY11oX4ivJEWpb29rWttVgEfA+CoqXi2dWc2K3FYBP34nxAOOA6yH7c6XxDP0IFnUpqcHGgY0bN664P341YgieI0Eq9Flvu+22ph70xYxlrei7LzXO4bFSGU/NzmPOdoTBY0vawE1dGtJaDIYayrNsSCl4xwYFLxdqOFVyMWOHeunno8BYKuPDkIQ+OVm3z/mpyCldxrwG+wlBK61vY0zSZJIUxkEVc04VqpoSIEjFIyjj7O++IUBtBZYfAlWiw1NfnOIzLlggUrB9x3ZsiaWatMqUGSZTEJN/UUxzLk3wKBZ1fA8HizM4UcnD9j10xQxkjDSqXhU1zxUwSFaPY09mEwxVQ8kJWWMjoEp0bjTKArVa1bNQcFwYGmnDI+BPeE7yHWnKykbXIbwonEWOhawwGVXBrDsNFy7UKBYwyMjiQgs0lL0C0urZRQ6y7ziBBQ26zPFQZVq6Kptj8+t4qXxc5El7YyvbRS0glHOsl1YW0ys6RkuXIu9j0f25NbZll2JrbHs+FqaLMR7jehbyLsW4ThjTtJlV2ta2trVt5e6rjFeiZuK1GNNE42tljGdD29atW6971/qlSpuy6Y7Ae16PlWSIvNoAfPoqZIhkbYnjvli/Yi2CVaI1VbVcfOSrL+MLT59GzXbRnU3g5n0D6N/Wgf5EHH1JDWlDxU+/6zZs2tSBw89P4flDE5gp1kNwR3QNCCaJx0I2lAg0kUoD2VyzoKJnUvBsC+58/twDi+pi0XzK/gOAUqXzc0BPb8jeEhmVbqRGEzYDGLomNaCvnJjFtt6UvBbVk1rJXPh6LKZK463fkEWlkQnf81lbCpsSkvEEXv3qV4vfFoGwybjDmkyrH7sck2RrTHNwtICPPjaEZ4bmJNDbsi4t+5+Zq4NI985EDG+7bQN+8nXbMWWVUa27Ek+1MmRGIJuh6fKiY8zmKyGLShRLtBa65MQbW+M1hXPMP3keyvMl9K7rxIEzFRyfqMN1A2kMth0fo3kbm7uTGJ6v4YlTeWkOXmpPnJoXRpUtXQmcnijg1Hi+eSi+/vChSfyrDz2Or/z6g8Iks5LWYTaKWEtja85VQyVhJe59VL+IFDAIhoxqNK2xbVSjoW9/JUCT6D6yVuo0lUaN5no/o/DdDla5UFJ3LaF2eR5PPvmk/E6Qx2rp7rgUpyPq4qMDR0fuanxBIjDSSjlCvPkwEc2E9E033SR0eJc6nqvlCF0NoMrx6Qr+7JExPDtSQ+WRp0PKuawpcjUnZ2uwvACvu6ELu9ZlQ0BLyRJQCx8u79zbh3s35fCev30ec1VXACgCBGlQrAhopWEEfLQaH+LMPRomtQkVpGM68jUHQtIdgQ3OcarcLx0DbuExFkAmmZgedtl5vsjSjBcsfOz5caG/FgBK80G5uM+REkBaQ7Nv6dXj2HmsiZKFquMjncnihSkHj087mKuY2JhRsddwMT8faoIT3d2a6OV3ZqZs4cC8gpefGMFnX56G5fjiZNRrLgoVG6/f1Y037eqRMd/QnxYJINpghwEqIdE/YyK7Cc5qgHS29yzcF07P1TBctMPzaGTSw8AwpJJWzroOC6hWzjjn3nI9jMyGjldcD5le4ClwfR8zhSpSqVBzcjmjs0MHjfuYbQBVml2njaTyN47O4OR0RRzTFTV2pkIVSvBFZyfn5iOprWyHII1dh9zIeBUlNpc6yK1dipdamFtLiF1aWwaobW1rW9uunpb7cv7fak/s0jj2qakpAd6zA4bxwGp4tl1KFyJjMgLYSaV69913S9Ljao1pJRO79EkJEOJ6ulQN+rWW2OVYXyoU8JRhojRfRHW2KBKh0tUlf6th1tbw/Rs6oMu5UTbHQdr0cU9fDG/sH8BTs0V8bWK6CfKgRTm2KHLQIlrGxh8jOAjBEmRqTGpaAzARdQCeH/giAIxAgdpgi2zsTvxwglL4eZH4oR9uVVAJdHQYmoBVFp1/cx4ItlgAqrSaNCw2DpK3LRjpHLp7u5DojqEn6ITnerBKNvITRSnERGwbUUxDP5bzPO87mNd8DE0OYdqqQG90cY7X6ohZGu7t3oykpkJXKMOTErkgzklaN8+KZ6M1Zi6R1Rmtz0rs4zAGCULWTF2lJnwg7DNayzVpPVPZLxl1fMJyDPhC3c33SEsnFDYhcD8SM7jLxtb8TJRUn66XmkCVVrlbDz6OV0+vOFileVbLIlPOg3q6AmvtUmTOhs+dqEuR+RCy4zKejdYC33epSdq1GNO0Afhta1vb2nZ1GSLXYkMxwRJsyL2esj9XEj/Mzs4KUIXgdZ7D1Sq6rnQcwTiSrAmXU1taazHNdLGG//XlA/jy0+OY/6ePS5NuXy6JTNLA6GwZp75+FO9Qt+K+e7fK+8kQWbA9bLqhH6+5fRv2pbJ49+9+GQePT4TxQSwOsJ5IiZlEKgSWMNefSsJtgOZpwsbY2QWlXIHme+jOxJGvO1K78ewWaaEltZ2wQ5RsIN6CNFCLUX6Hxnis5nhST3psvIitPUmJH8iST1t0SSmPSkAK97lYYTVshha/kuB8BSdnqtjWk8KopeJQOY6pdA86VA+uZ6EyPCysrgRkRcCViG2jXHfx3LiN58vj+Pj+SeSrDtJxXZhcnjtSwO1bcvitt+9DzfKxpScl0j40zVWRiGsoVxbHERGIvpWlhGCjJw5PSo0mbFBo+Pg+WVRaoswWsMrCHJABx0e1aqHmhhKoCVNDjEwvAeMjRdj2e9MmpsrL12isFnWDMxOFReGFHCoAjoyX8JUXx/COO0KGy5UysmmmdQVFJ2zAiCRw5fQB9MVXHsROAFt/f79sUS4kqtEMDw/L9Wqt0bDOfin3ktbn2FqwyisontFfyUndtZLcJWKUSYJNmzZdEqvHanGEOLcRzfeldPFdyZhWwvloTUZfLKXcWnaECFT5+U+8hMmyBd8L4FDPXQEmigFuGkgjnYvj6HQFz58pYu9AGkcmKzg6VZEHHtGx3wxm5XM/sKcPfycaeAt8Ja0IU9EYJ8rUDVlPyIzCf/mQNXQVKVMTPUNSk3mN97QmBM9lrVKL4QtkIAmdnVZQBlGkT58pCE0cabWZTJbOyEbitsE2d9axWhPU67Om7PfETBUvjxXx+Rcn5PgJXcPQrIOjc3H82wf3YmNWl4chN4K1qF34dCmJr55xka+qqB0fESdjU2dcaNrosFUsD98+lceP37Ee27oXg9J2dGexrT+GI2OWMKlIkpYP9wAYyBh4cGeIIKWdnKkgX3dhGHqjIzPsWlBVsk35kixmLpidkJFDtHDOYaJ5XS6OmaILR/fh+oHMJ9c0E+bluoPOjiQGhKXmbLtnSw4vjBSRr7lnzaVo3SsBHC/A40PzKw5W0RQ9BHTL9SU9OrtQeVahWvzF6sRfrgldejotG+/bvEeSGpRO0fj4uKB6WSRqpaO7UJdim1mlbW1rW9u+++xik7prIZ5hXMbuPQbK1yIeuBqJ3Vaa70vp4ruaY7rYZDTHzWQN9dwvNRm91vTdn5ydxbemZ+FQGpRyoQ1/MKkFyBg6TAWYrLsYKlexLZOAFdTgCc+ILwm/MorYk0viQD6GKctqSpxGnX7ycyORqzX8ZwLhmZslrlv8TQ9I6iEwg/Kb8tnGd7chULmsLcq/RvJADd+ZbIgE94c0ygSvULrTF5YUr+WTfD/jG09yoAt+76LmvcY+M4aGcasKL3CR92ZFwofgDegBzJyGTV3rsQd7JB7mOor8WD2ZwHhXEnnOnAF41aLEBylVD2VDlQAlz8HJchFv6Nuy6Bzpi+9Id+NkZT7Ufm/EYiJZBAXbUwvxDG3GLqHihkCVCKTheRp0hUATv8lqLufecn9sdrypqsQGSkABoKUzTRg7pYOMZe+tphKTz3J+Kl6Y/G19F681x132yEK50qYsgO9bSUBFopYNHY245ioawfa8V0f3a3YpRoleNiHx+bS0S/FCid61FtNQJulqdJq3rW1ta9t3k0VsKq+EGg2fCxEzzNVgjL/a8QPHzYY6bowL2JR7NbvtVyqmidQG6IteroTsWqrRFCoWfuZ/PYJDZ1hr8VCuEiSiYLJQRU+2C+u7TZyeLuGbT43gjbdvRMkPMFyxYfk+LH7ffAtKUMX733YLPvgvGuaqdhhb8P+qlVB+hnt0bCi+Az2VRqDpMA1+P0M2EyedgGbXkcmacDQFhbLTZAFhXYc1jkUVk0gaiLZU2oZsKlooXUoQehhfAr1xHaOzNcTiOgLLFaYQGvP4PIbjM65qaMjQWq4fYyuyngx2JKHrGl4aKyHvBfjCiTlpWmaNZtL1MazH8I4dN+GWnNFkkuRa4vf4cMnEPx6sYqpYR9WtSK1nQ2ccuaQRNj87Pl44U5Aa1+v3LFa46DLjuH9vFx56ehq2G8q5ho3RgYBdfuxVIYiINpGvYniuBoU+sHR2S0dCuLkuDJVrUxXGGJnRxvw0zlQAOd2ZGGquCiUeoEIET2M+OK+szfGcBxrNzkttz2BG5rNYtaVBu/WyMSZUNUVe/+ahqRUHq8RUFaYWQBcWnDB6kQZqBCJ1yzj6ahtrMLzXceM9gLEt18HMzIyQFEQMPFFMcy4Gnsiie9paiWnK5fIrJp7RX8lJ3dXuCHFMTAaNjo5K9xKZPVabXcjpYEKaaGN+6enEXQua75VwhIiO5rj5Rea4L5fu9mrqza+0/Z8nhzFVsdEZU1GyAvg+E2SBMGRMl2xBbZKVg7Rif//kCJwA6E6b4sis64hjR2cC+0eKePW2Tty6LosXxkqoO+w1C40Pv5hBxyRkQMkmY+J8kFWEQIiOhI7X7+zG147NomS5SMU0YXKJns6RzGJkS/3Ls38PBKwhSM0GYIEah/w9aWiCZs3ofMAHMi46BgXLE6mfhZ0sHJP7IKtJXNeQSxgoW76gbb9xeFp+783EJPXcYRk4NlUWAMsvv367MG1EbBtfOTiKz794WjQWMwZQroXJ6jP5Ojodr+GMBCKp9PhwHpu7EouSrt1mEr/6xg34/z5/GpN5V5LV/HNfWsfvfd8NwoATWbHuCs03/R6PGetm0lYJkbyuj+6UgZliKMkU9gyGf6eT98DOTvzw7evwX794CP1ZBcPz9RCJS2k1L0y637axA3vXLa/3+I5bBkQK6KXx0qLpVFuYVQTgs8L0cjQDBoounfNQy51mKUCcxzN1WIGNJFaeXeVc1qr9Tou6FOkYMUDkfZJguOg9y3UpRkH9WjGeE9d929rWtra17eondVuZIq+WROSVWCT7w7GxA241AVUuxl/nuNmBw7jsWtF8r0QytVWuiMnoDRs2XLexnMtErnEF911xXHxndl682rQCzFI+syHHXnAcpLQQuO27PiasMnqTlvijqkKQhQYDoT+vqjXc1dWJb0/PIu86wsYYjZIeWtpg8lT4OdAb1wQMQ7+TYJWBZBwzlo952xbGyKSqotQU6j7/+Jf7s8C+G+ByAforChKNrjxuZFchkIWHEBYWRcVknQloMrGczaxCwAt98Yyuy18IMqn6FQGqmDCb15vQjppfRVxLNtk2aLwvfWn8JObsKhSi55mz1lVhkMk7deRMQxoEdSXApFWBE7gwCCRvsW4ji325AbxUmJTPhVKdCvrjGdycXcxkWnIcAd8Ip4oAbcJEMMErhgA3ApiKLuwoTH9G64l7JaPLenMdPMVGLahKbNvguWmZbAUZdXmGJMoUdaidmPdm5Di0hcvYyrpzFRhjGTPz+xFJtraY7wbQBJsfAleulbEgRylqbpzn1i7FM2fOyHtauxSZGF56r1xLzCpc66QNf6Ukd9vWtra17VobnxXMf0VMKRcb0/D+uxrPZWhoSGR/aATfr7bn2YViGoJO2ZRLwM3lNuVeqq0E+z0bHhhL0odgw8Dlqg1cTWnTlY6XPvHUKRwZnkNXRwLlUhVVRYWuK6jbLsbzVQx0paHHdMwUbHx1aB7pTFyA+YZOMLqBgVgcYzULO7Z24HU39uMbL0+gRHaUal2kaMi4nk4YiMUVVKsu0kod3Rt6UaqF8jqphI7X3XAjPv/wAcwV6kglDdQNBdUGcUdzFqNzjoAXTbT92bl+yvwwVmFDsQBiTC1USPACabTt7UggX7GF+ZL1m4rlYrbsSGO0gF9ap1dRoOms5WgY7EoJozvP6dHhkDVkU5b1xwCWp2G0bOGbZ/LY3T3YZNvgtTpwehof/dsXpBm3wwRKVljrGM3X4cBHIhayZFLS9PGhabx2d6+wSEaW0k38+7feiJHpOo6NlOG44XkR6PL/vn0Ptva1+I+KgrzlNtk4Q/b3RmFE0+C4HroSOqoKUJdGh2ABGATgxk3d+M9v24MPfuU4UkbITFNzQtA/FQ3IerOpK4n7ti7P8vSaHV24Y1MOT56YWZjGxiGEjL9x3RLs9F1hW59IoC4N1wtNEzTdD5AzFBTda3u/55ojwJ7b5s2b5b7COjBjGtbgCcgnC0lrgzGfS63Gz0TqHmvBqtXqqlFp+a4Cq/CBwwfvxSZ1VzNYhYU+0rHxHAhSYZJxNdr5aLOpc0yqWCZGd+3adc2cuCvt/uONiUww27Ztk+1KbjxrCbX73GhJHAJ2n6lsB6SJIxcInVjcUAVUko3pKFddoRaL6yp29aexpTOBhK5iumILk8YH3roLn3tpEl8+PCPyQWRK6cuYksglgERYTIIA9+zsFqmbybKNB7d34efuWCeUZo+cnIPlBjCJuqVEkKBpw88sgGmDRXMcyQw1H/p0flQm+BRhaeH7NF0VtGhng3ouZuqwHQsJMoZEVG38P2aao521GP/UEdcxU3GEbYa04QSF7O5PC8Dm2EwF01UHNdvHP70wjlfv6sFdm3LNcT58uoJA0TDYmUC+UJJxMbHNeaXTSEeNPhjRsI9PFrF+Ion7+7Mh9XcD8PPA+vX4Pz+awUNHpzFesLEuk8DbbujHhlzybCdQUWA5YeGqhZ9cnAO/XMYbb9yAt9+9B7/xmcOYLFnyZ9LyvWp7F373+2+U9/7Dk6cxPFsRlhXKPlWFli/AHdu68Rvfd+M5vx+ULvrjd+/B339nFH/66JA4soKMbgBVmFCn9NGDu1a+YDVn10FcDY+lkG5caNOBmhsgFwupyK+nLe1SZBI0SvTy3sNAngWBiGqdCdK1lNiltWWA2ta2trXtypO659JyX84ikCOfF0uD6etlHD+Z5di5RNkfglZW47PsfPruvA6kmiarxO23397UQb7adqWAdyb5Dxw4IImXK5UrapVpWe0JmfF6FXUmWHUVnu2J70kfUCXjnheg6NqIqWGBP8HEIGwogYq4ogtQRZP0RwAXDvZ1ptFpmng+X8CJclmotSlpkzbIwhGCR0pOIGCRO3oSKDgukjqwNdaDoqPis2MjmLVc8XuTmoKUDlQ8+v2kql4cH0a/sSOvyUjZyBsaURIRZDcMO9LYXGCqCjK6hjnbR5qSQyrB+arEEbKfc0gAeQ1gCOM+Ajq2JLMLjCpQRBKp5NjCPsO2g43xWWyOD0Jt+M8V+JiHh3QsDl9xUPc9YXHhkXheddeR2E+65RQftaAIKGkYWOg85rH2ptdhIJbFeL0oDCs9Rhrr4jnopLpusbrXOIsmaGOBA5PAncFEElvimzFl5THpzDTkfhTEFQPbkhvQa/ai7BVR9wlWoUQsE8WRnI+CTq0bSeXcYISM1iHsKnmjjqo317xerQw53cbKy4EJrCZoUJ43xhoCdUIw/rVgVjmf8V7ApCc35ns4Lt7jGdOQUZfFPIJbWrsU+ftaAuCzC5HGZHbb2ta2trXt0oz3+wh4T7vYwh79coITVpOx1kS/ms85snrs378fq9HOFz+wYY6AD8YEBHxcblPu5YzpSuoi9Cs4buZP9+zZc0VMBlcTrLLS9uyJKZk3stDXpKbBV8P6x0yxBi1moG57iBs6NMPAVN1HbwxYHzfRbcYkziHD5Hzg4QM/tA/3PNeNf3l6GPsPnoYS0zGQSyKZIGDdRSquo1xx8L23Z5HIJJC3LNw4kMUPbduFwS4d/+dzL6AsIBKgozuNWJxSq2U4TgDXbsjUGGSiYMLfa8gMtTaIhsGMaXL+Ad1QpfE5birIpBfY9Rn4EEBjsrlAUVCoucLG79lLgCo01oFcH8lMDPNVR2pOW3qTeObYHHqThsRDoxULp6YqmC/W8ZKh4caeJN64Ode8Fz1yooiaC2zqzaBULME0AvgO/e9AQDOqrkssRmD9sF3Gs/MT2JfrQ4KI8Ybd3NODv/3ZV+FLL43i6FgJXckY3rZ3PfasXwwaGZquQNdU2MzxLKLvDxlWzEwKd926Ef/Xa7fiN//uKRwfL8pbWDe5aVMn/uv778dgVxJ7BjL4zuk8NuTimCrZKNfCe+2mzgQ++H27kIkvnwdio/DvfN8N+Ofns/jtj+cFCMQDsG4isqYNNv0fuHMTVtpGa2wOCRviuVRaGWN0TRfmletpvKe0NhjzuRU1GB8/flzA+YwFopiG99C1xhRZqVReMeD71ZHpvEjZn4iG7VKAKjQmdFeTHiIpzSKQxw033CCU06v1Ybpccpe/R4wwN998c1Mf7FrZ5TofK0Ept5bBKqQNk5RboxOOUyjfiiBAlYhN15f33CvgCQWPnfIwnq+jbHkYy9dFGkg0yot1fPzZEbw0XkHO1ETWZ11HTFCxZOYo2yHjBZk9XhouCBqUztWmtCkOyo/cNij0b3FVQb5s4fkTs3LcOhRJPhcsIele0AIkvTcdl2XEgvjYSCUM1KwQvZvJxjBVczHYYSId0+GQLs3QBdjhc3/sSPZ9KJqxgHBtMaHwDgKs70jgLdtzOHB8CsVCGcVsDC9OVjBescPOS7LqeQH+3WcO40/edSNuXx8mMAn6odNFox9GWrg5ofIjfV1433LE2VTh+S6eGp4Aynncva63qZ/HOd7W0YGfu2v5pGjBdnGsWMNhOq+kkYsoTJpTEyBwXXjlCh57aQw/ct9m/PZbd+Drh6fFwXzTzQN4zY5umS/ar3/fjfgvn3sZo/M1dMY1JBQFr7lpPX7vPbcgHT9/cDPYEcevvnE7knEdf/yNk+Ishp2pIRDp39y/CZ3JlQ2QmKCedUuIqQZ8eCFNtqpA9XxYCh1cHSltdaFJSS83ODgoG9cXEa8ReIWdG3ymkZWKzzk6SexSXO3Gc2gndtvWtra17dJ9UcYkl8IQuVrBKsuBPAjEX20NAq1J1KVgDBYqmRxlMvdaMUS2july4z8m0skQSd9xJejJ1xJYRQDqLU1+CRUougvdf3OWL25xh0EpmrTQPR8qOBiv1mAoNrZlYripIwZVC1ALKuiIW3j1QAB10sDREgS8QvMbzCMEhRCkkjAI7A9AyIsWGOiN6XjP5m6M1W3RWU8ZNmK6A8dVMWG5mLc8HJjzJF5oAlVE3KdB4SLgD0r/hG58WmfnYSBdaR2mig0pVRg3tmfiKMy5qLo8d4KzXdg+kDXYvbdEV2jJpSPofmsqi3UJHRWfEJTwu3mkVMHLBbvJUPiS6mBP1sOrOzfKuqwK04wPU3xtMhoqcASM3mgcUNngALi+j81xE/lSHsWghJibQK6js1kcYcqy18jKttR4XEozEUzEeCZKpLaymnAtZk0DCV1BLShhW2I9OowkSl5F5Hv6zG4ktPA7m1IzsDULJb8INWCzTbizvuQ6ZLWwseB8llRTuCl1A4rOiyh7leZYaKZiYldqsdTRSpgvgCie+AIkhT9JJx+fDcHqSpDK9chmZSM4keNkHosxDZmpCMhnlyILfkyY8hmxGp5VF4pnaK8Ujfe2ta1tbbsWFjYTLgBVLrVGw5hmNdVomJdjDMPn2/333988l9XYUMbxLGWl4fUg+9nRo0exY8cOeUZfS3/+cmOaiMmGxWLWxjZu3HjF415LNZq4SYB1aKapQdVU1OuO1CzIqHGmNius6A/etxU3dGXxzZfG8PzhKTilOgZ7Urj/tg3YvKVT3vt8qQZnIIkHH9yC06fHkTYNZEXmJoDteHBUsqkEGJq1sKU/i3hKQ08qlHb80TfuwYY9OUyPleEEGqbMtBQ0SnMFzEwXcPz4NE4enRPgCAJBogC5HMC6SoNwhRB61hjI8t6X04XNn7WKHRsTQMzB5nQW63qTmJyuCqCj6LhwyBqiKlIPErmhKMBroebgPni/6EgY+PH7NmG4bEtDcVJXMFax8a39o5ifr8m50X59eB7uu2/GW3eF9T425AoAXOSLyIhiYrwQBlChGg9ZZ1ijUTDQo+Lw1ARqhSJu71m3SPpyMJ3CT92za9nrSEmmkVoFRyt5GIaKgLTvC8Fek9pE6+jAiZKPaTvA773/1fjcs2dQrTm4b2c33nzrRsQarPS/8uBWfOBLx3BsuiIKBZpv48Z1Ofzhu27C+tz5awUEsrz/3o3YkNTwc3/1HZESCvuRQ3bQt+wbwJ3burDSdqJURUrTQeFdNh+IZC4CVKjooCjYnFpdNRrGqqwJR3VhgiejGg1r3bz3E/gRyQkxTljtOZJKG6xybS0CqtAu1QlaTcwqHAPBEmQk2bdvXxPksVrGdzFOBwupTOryNSZHrwfF0OU4QrzxMKnLG82VUMpdC0co6lKlfAgfjkz+E913pQn0B7Z14u/3jwvdGJ0ZauXJ8RaOLACW8ZItQIMqf6GEtqJgvmrj0GRZ+vH4WT7osmYouVNyA4z4Abb1JgURTITrcL4uxxmeqcqzWdds/OHXTgiA5cFd3ViXjQmABIaKagBMz1QFlEI6snjCwMBACvmyi9l8PdQzlOd8mNyVlC8PbFkIjKQkOMlYkowbMA0NYyULjqnhB/cNoFh38NxIMUTM+uwddDCh6ggaQI1ovmmSKI7p+Ik712N8eAr/8NABVC0XozNVnB6ZRdDbDZ+0fI0OzpihYrZq4/e/fhIf/4nbZB87e1M4MVNt7rMrZaJouUIVR+fLsiHAjn07SJusw9B8HM1XgNEhmIbRZNogknO5wsN03cFDY/PSxZnMmnApBCnU2g1HiEUGdjrWauJE5qsWfuefn0Opxg5KH47n46mXzuBn33gj3nn3ZgEP3ba5C3/5r+/Bl14cx+NHJzE3O4P7d/eJPNSFwCqR/dz9m9CfMfFXT45grFCXn+kgvfvWQay08WwJWIlrMbiBC8d35Hd2J3KJdBud0nW6Wo33DDo63BiM8V7GohODNCZ8n3zySQG3ROvgXGvhelvksLWtbW1rW9suTcqU9/3LoRSNYqDVEDOQzYPxAMGVTOpGmr/nYzC5nhYlmls7ZMbGxgRsQ2pYJnavdTL6cmOIqOmBiWiOeyUSJ61glZW0iIqc8WPk45Jm90q6lDYkUug0dcxYDuIIRIYnRN+HJkx/0iEXYKTq4Pl5BzN1T1hGCAYZr9l4drYs0kH8fWNKwZ5OHQmTXXAeXN+DrmpQoYl/SdbIjlgIXKERXDGDcfT5A4ipcfQnGCwBlmweFM3BYFLBuqSKPTkVJ8saDszVUSTCpIlICMEZXHE5I0B3jPFUCO5Yl1CwNWPCVAM4gYWNSQOm0ovDxTJKrg1N8bE5qaLiuZishfI6sksB8ZOtMvytP5bAq3o7YWhlzHtTMn4CXQq2goP5sOMvIZch1Io/WChhMJbHznQXOowYDEWFI9JEoTwPwTTFRj7G8nwBDa1LJrC7KwvNA1zHw/j4GA4eeKnZmcaNhZ+l3y3GLRbqsMGu6gB9cbLWEEwUgnfkOob9FUgbqlxTyhWNBGdg+zbswIVFyR/XRp8yKNeBa7hT6xHQStkvYrY0A8VXoaeMiwZh6aqOu3J7cbIyjHF7Vj5HRpXtqY1I6Suf82heO8bkwirTeIUhnccGrdUN9OD3OLrOND7fmOSNmoNYOOP1j2Ka5dbCakjs8jm2ljon29a2trVttbDer/UaTauc5s6dOyUmaG2O5RivFTvJ5bLfE/TDuIDP3zvvvLPJHLDaG4qjcZPd4K677pL4YDWwvJzLZmZmBJRLnyGq0UQNp5dr37NvA766/wxKFVuaawlYqVespq9MX5jzenpkHgcOTuCRrx2BZbtIxQxMzVbx3OFJZLJxYV9JpGO44aYBbN7WgyCmY7pcRyZBpkj68CamK4QRKLDjJuYtxiEaHpsqw/Gm8Pp1PVjXkUYiYYgsZ2HaxmgpgJNIIrs5iXu29eMNb67ihf0TOHjSQsnTF6DlonCjCMN9d3dcXuD8p+MqBnvjuGFrEvMWZX4c/NhrNuHMqQIeOz4njPxGQkdX1sSLhyeksbhp3LWqQNdDlskfvms9NqzrwMGihepsFVMVG8NFC8PDc5idrUo9iHUaxiaFso0PfuZlPPjL90vT9NaeVAgE52QGQGfKQN5yUKl5AsIvVTyRAnrDPT0YHEgioQaYcWp49oXnRVa1tUazXFMp5YOempvCjF1Dto8MOA2ppIaMZ9SyoBq6NGVXLAcfeXJE6lxzhaoAiZ6ZtTHlaXjv7euEZWVjZwL/44f24JFjc3h8aB5DIyP4nj09y7JpnsveuG8d/s/P3Ic//+oRvDxaQCah472v2oqfeXDnVQFdkJkmbWiIE4jEpodIkZUS0ekUMsbqjmlYb123bp1sXL+MDwhaYd3j2WeflftKa41mNTYYV9pglWtrUUL3cr9QdISutx4iFziRulzgBHm0LuwrpYG+mtY6NtK9MuFIkA110a9XUH+pjhA7Pjn3RMxRcmklx73SYBU6ndROm5qakgQ0u32Y7CGTDR2hK0n0/vR9G/HcaBEHx8uoewvJQPlaNfJj/PlMvi4AEEOufSAPfHYM1mySPTf9BhScAOuzJoKai6LjCatILqGL7A+19PhY7k+bSJiaoGHpUPzPb5/Gm3b3YntXAh97fhyHJ8qwSTGciUMLAsQNDZm0iRs2dcn4RqerOHJqDqWKJUk7DlCGbVnQPAvd3V1IxWMolW1UCMioOQiyMbzr7g3ozMYwUbWxZV0Ge7qSGEybeP/HXoSSry1OEPIaui6MuIH1uTjUchnPHZvAlr4sUnEDndkkHqXmn+uLs0QXytBVpGK6MNIQnDKSrwtF2w/c3I9vn5oXwI/B3DU/o6lIxlQM9CbRmTYx2JNo8IFA9p3Ss3jNbTc09fNOnz4txRMmelv18zjO/bNlzFgu1iVMrE/G0BsHRuxQCqdxNvBtB24xpDQm48yRyTL8WBwVmw6aivGag3//sf349Asn8dNvXY/dfd04csbFhx8+gZlSDb7n4tTXT+Az+8fwm++4CTetu7DGKRHUP3jrIN51ywBsL2RVWSkHqO6RzcYTcIomYCENOT2FKbuAtJaAp8bk73XPgmdb6DFXJsi5lvdYUsxFGom7d+9u0tFFa4GI3sgxutIiz0oZ702vFIq5trWtbW271vHM5T4jrzdbJH1edtDTL926dSu2b9++6FxWS/L5fGAVjjcqpt5yyy3o6+u7bmO6lHimldlypccdzc9KxjT0a9koQF+Byf+oiM2YnL4M/Romey810Usd8TcO9OLzY5PCxmjZAleWv0V7iSQpn5yuCrNJ2gjlZHh21Xogr8UFrAK8YAU4WXLwPQMmkrovgAzK+XBMVTdATFWws0MT+aBQdieAAwf5II/OoIf9eKigDF9xQ7Y/RW8CPMjCsq/TwO6OOF6ar+HAXE1YUQgo4b7I4rynE1iXMmD7Jl6e83Cm4mKoXBd2lds7dexKZbA56WNDUoflKsioKRwoFnC4OCkAHLJILmBgKBtEqR4VOzMZxPQK3MATFhJaPahhpFqTRDRli+ReBFXkUsuuh6PlooBVUrqB7akcDpXmBAwu+uME6msqemIG1iXjyLEjLR6TP2iajnhMRc+NvfC3hnTukSY4120Uz3BjDsRX2D5AeVIeXcfWVCdGa/Mi59nEaygQKaS4uLwB7MBGya6i4jIuCK/4nFpGJV5Fj9mNDr1TAEZFdx4VvwwkuC8PM+4Ekmoa3VpvS7x0boupJm7MbMfuYJsMhd2AK2Ehh010rUJ5HzLANCWhAkKNwv9c24PvAOnU6u7gW2os6PG+RHkg0vgTxMjvPdcCG3G4FqLvPtfEauhSXCvdkm1rW9vatppsJeKZ6x0vRIBqFviWymlGAJzVWKdpbQyImBaj5oHr1eR2qQARPns5bvoJK8EQeTVrNK2AJsa9nHvWmPg7/Z4IuEK/5lKBTW+7ZQMeu3cbvvjkSZRqFurlEAAmhByN75cZ0zE2VcIXvnEYgecLOCWua6hVbUzN1JAvWUimYigUapgYzePmPetw260b8K1Hj2NkvoKeVAyW66FUdtG7PoOtG3OIETjgByJd+tRsAXs7M1ifSGGoUsRQ2YGnAd1pAopUGJoOkqVvzZq4Y/MGDM+5+NQ35nFsuCbxF2sBbADo6Ihh144sdm9SUJgs44Xn8jh8xsah/cC2rTn8wvfegh29Bm7qy+A1tySRUmLYkc3gR//8Cbi200qmIrWkWCyMLbKmjtu2d+Nb42V0JXT0pwz0JA08OVLAOBuqBf3PMShIUXpIVzFVqOOJE/P4nt29eOu+AfzT08PCJG+QZdUm4F5FZ1bF3p1pDHbGsWtzCpm0LoCLbDIGXU3irm03wauGbBtRTY7fsyim4b+8jw1VSpi2auiKxaHFFNx5Ux8eenJUCGhCZYOQCV5LJuR62m6Ao6MFuMUSSuW61M7YIH78zAweOj6J99zdgVvXdcCqGfj758YxnK/BtXVMvzCFb5wo4Gfv24j7t14cIO11N/XLxhod5ydi179SI0Cn5nnCpBJr1CY2JuMYq1nojRnoMHWReHVcT+SmbupYW3UDAXil0/LdjsB0Ub0uWgsEt7SCV1YDqLFSqTQbCNa6rW5oU8OuxAlaDXqIUeceu+h37dp1VkdJlNhdjdTLEWqXSQd2/hPssX79+us+potxPlop5VgA5vyvtK2kI8Suw7/66jP4zoQLLZXDLYqNt+8dxB3btjU7lXhzXJro5XYxSZbOpIkP//DN+ODnD+JfXp6DT41B0TMPuxCJKpWEJ3XQfQgiMknKMU0VFpRIE55nywSwFwQ4nbewLq2DJClEqlbsMHlIimvSjxEVKjryqoJcwsBcxcGnX5xEkbTT7BgD0JuOCTiGx8/FddEs7HA8zBJ4UrOxqzuB446FQtWDFvgwfA+JhIZk3yAqNjCbL0siMUwAKpguWvjLZ0aR7YpLQpjjeQizMC1XWE7iuooq2VrEG2o4D7omjtauwQyePjqK7kxCgCo8VzNhoKs7i9lGolFj4KIqInkUeVOFuoMNiOOmgTR+403b8eePDeHUlC3K7bv608IUo8Y1oaqjDj1ZZ7Z0GHB8H+uTCXFyWjvTGDhFiV6it1mYSnTkcFTNIhWLNXTtga1dBk6cnIIWjwtdtABVqpVGOyJ16oGaasK2vJDCsuEoWYGBZ08WEXzZx/fcmsd//cSEIItJv6cEPjpTHobnKvhf3zyBP/nRWy/KqXnq1Dy+eHAS02UbewYzeNdtgyITdCUglVO1Ccw7pVDHUzWxIdGDfrMTGxO9KHo1lLyaXF8mrcmbk6irSDfowNeaRRSjfB7QKeIWrYXW7z5/ZyAdOUYENV2PLsU2s0rb2ta2tl2fmOZ6JXdbO/ci2Z+lxufRaqL1jix6TvLZRVA4bSWZFq92DME4lsB7zu3VYLZckN5cmaT88eERfP3EaVjZXuTSKdxgJLBvd7/4/ZEUIhO9ZJFkcicCrlxssmdLKov3bTHx0JnjeL5MBhRKnIZgeprg24MA87aLBDXSFQ2qoqHkNKiQiXtvCQXmrAAPjVq4t0/DybKPPGlSggBdMRV7u1UMxOnRh71xqkQ5PizUhBmEgOmoe05rAFUasxrGJr4OVbGwp9NEr+Zh2HZQdgNhNVmfVtBpsovRwNdG6ig5IZiB46p7Hh62ysCgh0FKAnGXOpD3y3i+UBHwjaEHKEcS7wFleYCKC2RMReif3cARoIqsNWqGqzoYAoW50xAwEZ0Xf6pFbXAA7u4ckMTmS3NTIA9LUtWwM5XCDTmCixjDcUzhePlz+K8GM24s6kzjd47Xm00vzCewIDGwsQ/Z/gxiRkzoZeKagW1pA3OOJzEar2PGVJHWG/fLACh7ZIkkQj+kseaRbd/DZL0EU9EE0F7zayFQRbL8YfKX3Q/VoIx4kEBauTAAn+CeSWsG825RzqrH6ESP2XVFoBVPceEpNgLFbwJTdD8mUB1KSrn8m0RtsnCFOdOvKVDWGFglskgSgkl9bq1rgc+PqMjD+Lc16X8tZdhaE7ttpsi2ta1tbfvuiWdofBaRIZI5dfrVy/me13uMFwK7ExDMXPFKMi1e6Zguxqg0cODAAWzatEnYbFY6l7mSNRrGXR9/6El8+cVJ2FoKu6dn8AP3bMatt26StRE1GRLMEjWcRuAVssld6JqwtvB7P3wnbtvZgz/4p2cwWgxZVUydAOawRiOyQIaGQslCriuJhKGToB6TxbrEC6zDVCM2lgB4Zv8Z7N0zgFvv2YwzhyaFyYMNtFt39+COV21G3DBD/53gDvgouj5emCuiN+XDD0LB0qQGGKYqx0+oCmoe/ek0HJcMIS7e9cacsLocGbVh2wE6cyY2DcaxvjfAqeNz+ObDU8KqT1kjjvHwoVn89/J38KPv2YCA9JfiAav49MERDM2UkUsbmK8AdkPKVdhoLVdAJTffmMVIzZVaRTYWxlm65qM/Fb6PxyCzC2tKUQaCrxdrIfCnPxvHf/vhW/CHDx3Bs8enYHs+dg2mcdetOQwOGtAkrtAkBsqyLhR4yOgJJHUTakdMcu9s0OFa4H2DG31Y1u94jc90JKCYhsS4tDtv7MQ3Xy7CI60+wfWaBpVgrKhxxvNRnJmHbTkSp7AWBd9DrVDBS8em8Qk9QN6p428fKWG2xBqNKsCXhBdIXe6vvjOKfesyyDTm4nx2ZHQen3nyFIYmS9jSn8E7792GXesvv7mXYJ7n8nMYqlSklhXXNOxMZ3BzRw57chmcLNcwadkSIbK2yHtCl+dgS2r1sZBcjEWMvLxH8VkRsT9xLbR+95kfi1hFGc9wzVyPBuNKm1llbdn10kOMWDImJyfP2wEXLeJWaurVYrzJE2zDL+e9994rX8DrbRfjCPF6f+Op5zE9X8RbXnUXZhwdf/KNE6LXdvvGDrx+d6/c9K/UVgptzZvcb39mPx6dYKZVh1ooY/9IEV8+PI0/fueN2NqdlPXDjdckSvRya030Rtu5Er1MtJ0quvBlnYWOE5vYoo45Ojd0dsRB0IG668MTjTtfJIJ4ppJEDU9eHKhRZkkR4MENGfziA1txaqaKX//8YdnPXJUSLSEIy1BDp3GsXIenqSJJQ+eDgBZaqe5iLG+hXHfxlZemYKqqaP8RaVoPNGh6gLSiIJeOI92ZxnjRQ6UaMiYROBMadQcDnJ6pYlAB+rsSmJos4uhEES4TmdTNbtDU8SOSxJRTUdHZGYerQ1CnycaDf7JKjXsHmbiK2VqYzOVneE7s/hN66FQMmxq6gWcqdeQND2++pwenhn3s3bIBd/Zm8dREBc9MVzBDJ0tV0JPUETcVdMYM3Jg7u+AgidyBAdmi6z0+MwtnqopyqYRZAmbMGHzVR2DbcOgILWOxZFzQ0j6DLDnfkEIn4HdINTA0buEvRmqo1FzETU3mmkjfk5MFbOrL4thkCUMzFWzrOz8S9q+fGMaffOMk6m7IGfPI0Vl86vlxfOi9+7DzAp9dzki7fqQyjHmnjLhqCBCn5ls4XhmTZHSvmcOORD8OVU6j6lmyvuK6AiOpiDSQoVx/VOul2rnu/1wLZLPixrVApzgCr5Bem9bapXilVJQXY9GaXA3Pg7a1rW1tW0t2pffn65U4pUwdwRIsPDKpG8n+LDe+iBZ8NVmUCCWNKwunBLFfbzmKi03sTs/O4rEXXkZ/ZwfuvP0mHMzXcHJ8Ggldxe09GaxLmatGBojn89zhI/j8XAX1VA5aoGCiWMWRYgWnKnW8c2PfIilErmWuraWJ3gi8cj5A7pzl46UyARnh7/xXaYBWeDoEZRAk7vgBijZjGE8SlBHwPpTNCWMgfrboAl8b87ApCfzg+gGkjRg8dRZ1pQpf+FQasqFNQkoyrCysdaZdhe45CDBa9TBU8lBzffTFHWzvUBHXA3QkFeRSZkNSSBUATdFR8eWRKqqtqYqGBA4liV6cr6E/mZSkruXXUXFc1HwC0EO665TOJHID6kDGFEPBq/oTiOm+zEEEVHHhCKMJZVzHa0xIByGIveF38/MDsTAm4fs9lQCbFAaUTtRcD+u6+hBTqEVegQtb5jNMNWsyWB2msM8sXVe8htzIrhMl9ov1Amq1Kuam5xBPxWGYhkgvdcVCgNBZFiiouE4IuIlitwY/CZOl7PDT3ILEAFHzQhisBrBhwfAN1JQK0ur5wSqO7+Jg+SiKbrkJxJm259Dn5LE7te2y7t9k3HHVemPNNUBhiievGX4CWmAKiMVTw3ia72EcH8QWGjFeCTFN61pggYrv4Xc/0oYnIJ/Pl9YuRYJZrhVYZbU1jLWtbW1r2ys9nrkeNRr6aMyfc2MjMZ9H5zqX1SptSouen7fddht6enqu93Auqi7Cvz/70hEcOzOG+2/di3i2S9jWZyo2tncn8eCObqRMfdWAVegf/Ok/P4q//s4s3ECDobnYf2oeX9g/jD9431149Y0Di5oM2VgQ1WjIQkprrdGcD5C7/4URTIwWmr9TGoYNo2QN8YShQoFmAvWqDatUFwZ8y3LlPLmx8ZZNxhI7uD5efHEMiXQcb3nNTvzagzcgFtfx0ZFxuIGPmutKFML30qfmTJU9FwmP30f6bg4SDf+rUrfxwsFJDA8XZf/bd/RhYEtO4onejRnk1ivw7AAZA8glAnzn6RE88ti0jE9MEPKAovk4crqI/UdKuOumDhTqKs4UNBwcLkmslDR1pFM6aooLyw4lTnlee29M4f57s5ib9mA26ndV18acU0M2pYr8j217iMVCdkIqAjiOh6ShYddAmKsuOnW46RJ++u1deNXxOga7+3Dn+nUYqdk4VCpg3qkLuCKla0gZZJHUsDWVOwukTp+Uag3caFFe/kRhGsVqBaX5PLSYiZmyh1jcgE0QyhIjoMb0XJQIVJH4tnEMNQKsVDFf9vDPj1cwW3ahs5mY5+UDY0ULgx3AVAAcGC/jVVvODzp5+MAo/p+/fgLFqi2xxMMHA3zqiZP4/Z+8D6/de3kEBE/PzeBoqSQglXijXvdcfl7+dkuuEw8OdOKzo2OYqIfxMRlL9aSHkuug01w+d7QWGoqXGtcC77vRvdeyrGaNhhgAkgssbTC+FnFGpVJ5xdRo1gyzypXY9aCYY+cIkbo89lLZn6UWLX6OcTWBVfhlI+o1oma7FgmDlXA+Xh6exq99fD8OzxLJqeO/PPssynb4sKd9RAHu3tyJD/3YLcjGjevqCPGzLDg//PxRPDFjIBHXhYGE5vmePJA+8tQIPvDWXZJUfGG0iKG5GnrSJu7ZvF4SvXT6lsqGRPrQS7XC//7ZMRydPZtlKCTiCNNhvSkDU2UH1SrprBeo2MLzDX+Xb9OS8/7syzN4ZqSE1+/ohuX4AnRJxejUhYjcfM0Vp2F3Xxovz9aE4SRyrubLNiYKVnOX5eiZLXruAar5MuxiBUwX15MmlHkLnnSVLn9v4H6qdRelYg0zk8XQCQvF6eH5vvzdaABSPC9AMmUgl0ui6AAbu1I4PpZHKmFihjqKqoL5igXV1QQxSzAMJYrEtVAU3LslJywyk3UbT80UJGmaMTRQrrEMDweLZbxtayfuHcjgUL6GWccWmjzK+OzuSKIrdu41yKQ6x8ok2g52M2qzeGyyKFrxHPesEyCVNlGlxmVLbEDHaudgBlO2Cr/RpRmhjIjK5U75arHqCECF80IgV6gNpYiDe3qqhC2DmiT5z2fjhTr+/JFTksaPmFTonI7l6/jvXz+J//mj+3CpRpBKwSmHiGi3Ko6noeiy/sbrc+jSM5h0JiVgyGl8XYXrOfBTwJn6KLYnt2Ct2cXc/7neCEbhRoYrzg+pP3mvZscqWaSY4G7tUjxXQXElHKHr2ZHetra1rW3fjXatwSqRn3r06FFs27ZNtvPFZauxC5F+Mp+PNNI3sztqNdiFwCqc+08fPImvTtRg6/3QShr+9onTwvwQJdC+PDyPd2/rwevW5a47WIUgJQKa9ttAPZ5Ch8lutTBOIpj5pUIZ+zoz2JFJCnXwiVIVth9gQzKNHV1d0hXKZE/EusICNj8b+TRMBkeJXtf38emRCdhLhhtEIPyGtGmHbmCsRtaK0BcWwICy+L2tgY6vAENV4MMnR7A7k0J3DPDoa5oK1qc0iQlCWAfTudQe537D5LB83vfx/JyNA3Nuk8FluOLhaFHBg+t1JNUAju809hH63F8bZeL17PmUeCsAJmohc4vjEyDiixSPqVL+MkzkmCokgUsZTuaE7+lNoCeugyQeHJkwvwiLZth1sC4JjFQI/gAMJZTFoq+f0DTcmAnBHGSMIRBHwCg+kNF1KCqBIBqyQQ42bAGscF5VSnTChAHznMAKiff4XlWV65hDDmXkkepIyt8Y86q2Ag2UW134TkSwlKSagRdUmsw5zb83qHF4bk7gNMR1mNZtUGuKbJMHwlz84MJdfePWlABVGHPwvGicPwJWes0u9JgXR7u9lFUlkveJFiFXDQErTekoLYAuBYLQYqYBJcY42YPC7pE1ZHI9z5HcbTX+PQKl8LnCxC7zGa0dq62SuEz6Xg2AYZtZpW1ta1vbrr1dj3jhfLI/52OZX03GhjGCuwn0efWrX33eOtNqYr+fLlbwwS+9iBfnqYWZxt9MjqBcH4Lj0o8M8/d/++wo/vgdN2H9FbBzrxRYhbnVJ595Dp98sQhFNbCe7Bn0pX0f4/ka/uhzB3HfDX3CjHJkNI8DZ+aQjht49e6BJpvcUtkQ5k6jGk2rtPtD+8/gM4+fWlx4aeTUJWYJgHScMsAepsmm0vh78+2NHD8B7k1jk2Oxhn/5wov4xqPH8K77d2CI4HbFx4aBJPpYrFAUAaPz3/VJAxbZGNkUSx81CFAoufjnfz6E2elKc7eHj8xi2+4e3PO6bSjVWSchSElBSQ9w4EgRT327BajSYoEfwLZ9DJ2u4qYdnRgp6PB8BblsOAessUBRkc3qMnZKFnXlDLzpgRygBdiQ0bF/ooruuIaSGwIh3EDF+g1ZnBmaR63qwDAYV4fXaN8NPdg9kEHdc3C0MomqZyOlxdCTUJDKBjhdn8VNmQHsSGdwulbCnE3Gdh85M44NiQy6zXN/rzhWNwgkJuW13pOK4/G5CVQ9R5qo510XuYyCYkWBxd7qRkzKhumedAwpz8K0T0aYBfC9TBkBX16AWt2D7YaStoztmsdlM0TeQn8WcFuYMJcz2/Xw+/+8H6WajQFhxAy/E5P5qrx+3+4BYe+5FMs7tjCqMPadcyxZI4aqwlBUHC0VcWM2ixeLM7DA69Rg2/U8VGI6vjE9ih9Yt3XFpFWvlV0soQRrLkubzSPwCtU+OP+tNRret68GeKVarb5iajRrK/pdI45QRMd2sbRmrcwqq8Fa5XP4EOVNeLUAVS6U3D1+egTv+8iLmKor4izwpj+ar8sTYCAbk4c85VueGprDhx87jV99w44rHsvlOkJck1wnMzMzsDs3ww3G0U3x8mjfCjX3NDw5lMdE0cJvP3QMz4+WhJGEyd/NXQn87tt2YXtPapGETJTo5UZ6vdZE7+dfmpT9xjQ++MLjtI4+pinyQHQbDsbSM2uo5pzTCK75u/1joTQLOxkJeGl0ONKRW9cRw7psDIfna9iYS2Boro6JfB0zRVto6FoIUsKHNjsj6xacYjlErmgG1EQMbjx+wbHU6x5m65bQrKUzCVQcT7AYvsL14wktnUgAkWo6E5NzZbL2bXdvxYe+eACHhueRZ6dlzUG5aiPenUOqK4Fy2RZnqyNuYH0ujo1dCRzP13FwvoSS56LD0DFVs1BVdGw0dMxYLsZrNjanEqgHHtyiK8n5lK5Kwnk5m685eHgojwOTZXECdnYn8dotncjbLspkuxF9egXp7hR0U8fGXBx6zcZcAzXLa/zgjV341IvzjaRtaEKs0uAXJwiIyF5uxbovDi6Ru7KeA0XW2XzNQjp9/vX9+Mk5lC0PfdmFzl4Cw9IxHU+fzqNQc9DRAGBdrNU8SxhT6AgxWcxzsPywo7KoVFD0Sih7lVDpXg2/M0xMs4Az68xjk78ehrq22FV4T7tUrVY6OASjcYs6VqMuC6L5eX8h0Cn6/vN+vlL38lcSardtbWtb29aKXctORBYPSWvKAuIdd9xxURq4qy2xS5+YzQM8Fz7/lpMuul52vmQqr/Gnnj2EL5V0KHpMWFQqro+6R/Au0JcI/Ue+9s8nZ4Slrz9pXjewChOy+/fvl8R/JZ6B4bgSq0RGf7fuuDhZrooP+/nRKZSZIAUEALIvl8H3ruuVZM/g4KBsESCXwBU2TxAwFTEvlFMZFBxX5DZD4uuQhaIVe0KAxXidwJAFqZvwJM8dP0Snz3cfKlWglggE4RgDJDUXXXEFWVPBprSKLYyPocODCxUGeVswazsCVBGGk4a7xZ8p7/PCrIe7ekLZSo2eraJgssaOv/PPLcMVAia40SOmj709o+HgvAeL60GlD0lq5gDdMQ0DifDABFwklFRDFic8Lv+fMq/39Zk4nHcwVQ8ZETckYrgpF0fSCGAFdQGrCCxf8aERDSNhtyKwDygEplAqlXvjvagVrnO22YGFelCFK/OkwgziMBUTnhKCaDgPpN82dROWZ0tzgOM5C7JLgQrXdyWOZCK+NdEp7J0y0kjSqFXUqBFMRq9JwwVXw7nzMjNO2B0YAVVoHJsTeJh3CpcFVuEshfI/jcE0GF+4LnhFFKFDD9ljIvNcD0aMVOQuVG/15GAuxqJ7yKU2YBFs39qxyg7lKNHLRhzeE1uZJKklvxKJXjaYcV9ta1vb2ta2awcKuNYNxXyWEFDN58e5ZH9WOwCfjP3M7/NZyLhmtQBVLsSswmf5r372IE5UNMTJpKepIh3PtcN6R9rQpP5wer6GP370FP7r22+8buuylXnHTQ2ibM+jOx1v+BshY3xnysSZ6TIODRfwj98+ji/uH0bd9iS26OtI4AM/eqewrjAmiiRkeL0in4bAlUjanXHpZx8/FsrtGAoaxPFNwAfBC7quIpuM4cx0KRzjhU9i0ZsKpRo++tBB6KYBI5fCy8kksrkYOrIGunvi2LM5g/XJJIbrFrJGgJiqoOT4eOTJMUxPlhFL6NAbwAbH9nDqyAzWb+tGkMzKoUiGY5oBjh8al4bac42J7y2WHMxUVViugkwswIb1aRzpmEe+YEGj9BEBzw7nUsFtN6fDZuMAuGt9BqcLDk4W6nAVR0A2RTvA5s1JbB4ADh4qo1J1kU7ouGVHL77n9kHMWFVM2WWUXAsZzUTZrcMxgRg01H0HM04FmxNdGAzY3Gmh7ntIaQriZDlZxtgwfGC+jKOlmjQo98YM3NyZRt2zUfMdAbDQcp0a4nEN6YSGuKdgruqFoH1FwavXGzgwzhqZgsCLJA6iOfLlGrEupmsBfLKC+oBB0pUwKpN1UbBsmPGQVedcfvBLp+cwNldBZypau+H3gioFo7MVvHxmHrduuzRGprLrYs6xJRZjjM94jJK1tcCVuutUvY5TlZJ8D+JaGLtoDQD7RL2KyXoNg4m1BaS4GPD9UuM8RyyyGzZskPti1GDMezjzGcx3tIJXLrUOdL6Y5pVSo1lb0e9l2rVyMiLwwdTUFG699dZmsH0xi3m1JHejxDQLnnfddZckCFmUvNpWtVzRlOvJxMV5uVRHqFJ38MeffQb/+Nw0xioBMgkDJhO7VjinvD0Xaq6AVWK6iqqt4NPPj10xWOVyHSF2Cz333HPy+fvuuw8TL80s+z7pBFQU/NljQ3j6dAEdCR3xhA7HC3Bypor/9MVj+Osf3ydyOpEtl+ilU8Qb41yxIshXahDy2UhAZtRpSA3A3f0pPDdaEhQnkZ88zlJgrIBE5OSXP7coUUyaOII66LAQBMFktOVQARHY0ZXAy5MVbMjF8MTRssi80KKOOR6ziVvhL0Q0miGgRFTboyRiY+5DIOriAbHrsmY7su8Q3BGgQw87FPmboFE5B7aDiWodvetz6OxP497dAzLez3xnCF88PAUlbqJvXTfURBLxpIF0OoaEpuC167M4NF3BM1NVHK1PoOi4kozMptkRp8DTTFTmSqJFX3JcfHNiHvvnSqEevKLgQL6CHZkq3rGxRyjnIqs6Hv7uhQkcnashF2dnH/DUSBHH56ooJzl/4Xxy7OvXd2BqfRZTIwXogQpfM+GQRi9h4uC8C9OrI6bGYfFTZIQRbUpV5k3zXdy4JY1Dw2WoRLFQ41FYZ0JHUtNV6HqAJyeH8WBsKzqN5MX4wgvWQMhfTpxAYAopCg011KCPksV0BB3fQ9WrCZDFaOlCjAbBZH7dt9ccWOVyHKHlnnURcI3d41FQxO3YsWOS+CWwJXKMWlmXLsW4XwZYrxRHqG1ta1vbrpWtFbZIxgEEeTDQvv/++y86iF5NlNlRYprPO4JtvvWtb131sUknHdkcKXnRkLm8VPD9sek8/vHFIRzy4iA8IWuowhDIRK7QOwcE9QZI6qoAn0uuj+dmy3hL8sJgoqsR01AulsXkiHnnkZdPLvYLpeMvaCb6PjMyibrnI6MTsgHUfR/7qZUeM3FPT25ZQG6rVrh0KY2MwDFSoOo6Y6AFvEf4/aI0Dr8ljHVE+JTz1xIzNGOZ5rHOPi+h1ZZEHMcNVByg6gWI1SiBGiDotrGnIwsHjrBiUGb+G6OuMJZwd6RsJpMix8DTHyr5uDlH7XFFEpG0qdqCqNC5AisBo4QiP41UJbAtoyBvKThd9RuJ7QCmQhpuG2NVD/2JNAIN6NZ7YHgGCj5BGB50RRe5HcYd9/UZAtJXAwNpLcY0LSpgIjyC/QB6oMNogF/IpBKBc2og+IRMJqE5sBBDAnEkzwKqlINCg9lGFeBGFWWRdxUZoZYEalJPCCjF032YuiF+Pv+n+xqsag3xQAFhN4xVBByjhF2GpKJO6TFoqi4ySY2rt2g6pUuUI1YsGEH8PAwwy768GOx0iRYCVRZYYkJrBODKwly3GosWV3bU62fR8+lKYxo2S7XmM5iPir7/7CqPmFlauxQvx9rMKm1rW9vadv1qNOcruK6EtYIPbrjhBmEmv9jjrZYaDWMFFjhHRkawd+9eGT8ZyK62sSBftDyJZyIJlktp4iWj+T8/cxyfPjqLETcOIx5Kt9tOyB7O82A8wFiGspZxXcPTwwXMVmx0X4HE6cXKrC41xhkEAxGAf8899+CFkagOtvi8QhYM4HPPnsanvzMkEjYDuYQ0604VavgPf/8dfPL/fiN6swt+CcFRfX19skXMC1GD8cj4tBw7FSNLoh/Ge41cOtk39m7twUtDs/JaTCeg2w+ZSCJrDSHOkZxnHObUbbizHpCvoFLuQDWXwMxUHbVpC2/f0I++ZAojXhF9cQ1feHoKB54ege94wrouYBWyS/oBfNfD8UMz2HJrBqYRNv8ScF2YP5vBv9X4PoJk6s2eGwJxFNxzxzo8+uQo8oW6gHNYr0hlYzgzpyIz4mHXBgWbsjH82N4+fGs4j8fGq4DmYVOPAj2mIRVLYee2JEi4ckNHN4qej7xfxSOzRakLMLbQ1RJ0Sm4mNIw4BSSDmLCtnKzM4nB5UsAmjA1G6nkM1+ZxZ+cmZPT4Ir/80ck8jpaqSGghm8jpSl3Y9X21ADXwEeN3AEB/h4adG3UcHnJh+SoUU5MaTTymwkrGoOg1pJI6qlUHgc/PSJu2HD+ZS2Nzdwxj8zaK9VAdImok5z8MHw0deHZuGhu6yAKzvLwpx7tcBLGwTC49vmD8ZTeAKqzT0FiWqnou6r4rkqwOazgtgH+R3A2Yuwgwa9fXHFiF95ErjWf4+Qi4tmXLlqYkLmOaSBmDoPnWBmPtMhVXXkkxzZoAq6wFPcRI9ocPISZ1z6dHt1qTu3wo8xxIG0S0MRPT/AJdybh4U35pJOxS2rux8ywgSrnu4A8/8wI++eSQdNz1diTw82+8Ee977c5zXveljlClWsOP/NnD2D9uwwkUeRBTl61muUgkzJDZQ6iwFs6DbBIRkOVaJ3bpkHCe6ajcdNNNcj73bulCwhxCvuags9EZSQekavu4d2cO3z45j6SpIUFYJSmfdQWdSQMnZiv4748M4dBEGcW6i7s2deC9d6zDhlzirEQvb4wPjB/GF1+eDrk2ljzA6CAS4dwEoixJ5LaafK7x4fN9PelcMWHfTfE/0pYVLPzKpw+jL21iZ28Kx8fJmLKwJpoMIC37VBNxGLksAoJBPA+7upI4aC+whDS7IJcEOirBMio7OW1efEHaUoIn0DSoTJALjV/IUOI6Hk6/NAxrJoOT96zDnTv7kelK41TvODy+0fUxOVWB5/hQyD5DWvxCHSNlG52ca8tFySVjSkjlva2bvYOBJOUn6xZGqxaen6/IQ5rIcaUBSnk5X8b6pIkH+hc69V6aquDEfA2bO2IioUQjaOXl6Spqlof+rpgArsQMFbfduREPF2zMjOWhkLGF8kJbe6GlktCTVQw4LqqKhrwdhJI/vgczcPDWu7vwlnt68AcftzFTdBFj4OAFklQnGKa720TcBOacKs5U59DZsbxjcc/WTqRMDYWqi05e54ZzVK67eO3ObuSSlw4a0RVV1o0XhE6bMPXQgZPuS1U6MgWM5FshMEpRYTTWA7shY8raAqpcCsXcpVhrUNSqq8mNgRiP2dqleLGa7Xze0dqdiG1rW9va9soC4NOXYuBMgGMkmXMpcdhq6ELkObCYyURua2L6cpOXkc3XHUwwgRo30LdMEvXofA0fOzyFE4W6+Jg3diXxY7v7sCkTO2880+q/Pn1qDH9+NA9bSYQxDWl3SQesk5K5IcfJpE/jNCIJTzJsXAu9+Vbje9kdSEbR1iaNPbksvjkxI3EM4y2axZ8b50jQdlb88PB3ys84vovvzOYxZzs4Wa4J+wfZVm7vyjY/16oVPmA7ePnIEGzXgRIV9huMFTK3gYpaA9yz8PJi4uxFM3Y+tkZhwAh5CtkJ2JfUMG35+PxYEY9O1dET0zGY0PDtmZrEAdG+eb0cIQ8J4y3XU/D5YQW3dwMbMyGjjO8zFUO0yfIH56tb0mpL4tGTRoMTpTosYVpREYXWPPTpChl46qi6dWxJKUgbHcjpXcIoSUAJ55ySO2QYEYlNNYRxEKgiLB8EkMgr4XdYsid+mIiOmFT43gioEkY7DaA4qjAUU+SRZA5IQR6EUp46FvxyHsOGJZI/4eoNz91UTaT0FEpOsdFkAMRUE0k1Ca/Tg+HqMCwbRbcexgRQkNB09JgpdOid0iQxbZFnJ9xrFOWqjf/k3FUHmkeo+/IpsG4zh3KtAj/wF8kAcY+dxvIJ4fNZCNIJv8eLV12jQzdQEVAOqHE9orFHMfi5QDWr2aJ7yEpK9vDaMebgFkkgR804Eb0+c2+t4JWL6ZqnsWD0Sknstq1tbWvbWrEo78WY4WqxuJNdkbI/zIERfMCc+Fqr0bDZjLUDzhObXPm8okTNlYyL/uSZkiW5383Z2Fls3/TBPnNsFl88OYuS4wm745u2dOGHbugR2Y/ljM98NrQ19+F5+N2vvIBHp+njGJK8dxWgxEZWeUfDP2oAuln05q6Zr6631G2uVY2GRV42E7Pxl/PMWtgd25Po70hgslCTf8MYLEChamP3ug48+tJ42JyQCGNC5tAJUJkqVPE/vvgyJlgvmKtg74Yc3vfADuzb3HUW8wJ9mrcOAy9/cj8Cn/nuhnRmY/iGpkljdgiyDyOKRfHKpbiJUfOA78IvFJDoMNGZiOHllyfx/sOT6MvEcOfuHhyfr+Ox58YQMIjhWDyWU8isGNEVBjh5aArFioddeweQ7UkjZ8SEqf18FotrWL85g0AlU7wi13l6zsGRk1VYegxKQoVK/1/VYAUKDp+yMT0PTM0DdyVKuGOgE+++qQduegwURmVVZbRswPZUGKoHwwTKvospy0Yubku8afsubMZLPpBjHcZzEOgBim4NRauKGbcuLCtx1ZBraXsOpqwyDpUmcXfn5ubYCUoZKtfRaeoSt9IIsiKD/rzrozNONpGF78Z9NyZQsS2cGAnBPumkjr0bs+jsTiFbATYEGqrTeUzNVwR8xHNO5FK486YMvv+OGD7zrI/JogtTC8EqJCPl96Mro8IwFBQdC8fKcxiMZxYxmUa2Z1MXBjqTGJutCNtP9J3IVyys705hT2MtXpqFcaOMh83PjXsFzVQZk2kSv1R8D4o0FoSAA09hfUdBlhdojRnvYytdo+H+yKgUsf2yCTiq0TCe4XOro6OjGdOwQfhiYqoI2P9KaSheE2CV1U4xR4TroUOHRIaBetuXE5xfT9Qu55XncPjw4bP06K8ksfvQC6P4rU/sx9h8VZ6hG7tT+P/eczu+Z++65nH/7Ucex1dfHJWiPDvNRucq+E//9Kzc9N7/PTcsu9/WMfEL/RdffBrPTTjIJk3YboB5z5HnKJkzCEKg8ZnMYnx0XEoBPXjDxTHfrFRil8c9c+aMoKJ3794tjklkW7uTeP89m/CXT5zGSL4WomhViNTP2/f04bGT80iwta7F+CvZYv7qqRFJBvPhemS6gq8cnsFf/MjN2NZ9Nrjg/XdvxBOn8pgo2WG3YUjQgYQGZDVf5IZEF91j6nRB3z061+XP6xwdiY3/49/ma9TrDo1OCYE1X3h5CvUmqvp8M6fAyGbEeQvqFpJxA7Aa6vNnsb6ECX/TYAGAD0YNrmaiUPMlSSyNeML4EqrMh0MMmVp83cT48Bx+8cOP4affsheJvg5B9cYIajE1dHTEUSjW4dqeONojsIWiuVq1MTFZFOR5PBVDkI1jvgoQw8L5LVsBHhkpYd5y0Ztg15+Fk0cnMTo0D8t1cWJTFza9/TZsofgg9dJL1P8LJYlmqiEYoyOmCwp93gonKzpP/vvCs8OYGJ5r0tHkizU89vRJ9HQm0T/YA1TKiDk++rM6KrYD3Qfedlsf7t9lwp7O4+fu6cAHZj1BsBOlm45p6O4yUa4r6O/RkUz5GKvnsS+7ftk1sLEzgZ959Wb8+SNDmChYgvbl2urPxPBL37MNl2OmaiChxQSs4gYhnTrXt6kYyOgJcSiJwg87Tdkt68OS7koVPXp2zbGqrBSzyoWMXYfcIh1VOjMRop9FPT4rI/14OkbnAl1GbFvt5G7b2ta2tl1bu5pgkFZ2xTvvvFOeBatpfBdjDPgJxiSocqke/eXGWuxy+8iLE3h4OB9KcaoK7ujP4OdvW4dsLAylR0oWfv+ZEZQdTyQ16bc8P13BmeIwfuf+zQJwOZ/0DjcChP5pqAZHTaLD1DFvuwJMoNXcAFQKdRp+b0PmGnYjsbk9e2X67pcaa3OemTznv1HyPLJX9XXiWLGM0Wq9mcRiCEbgCbvOWs+9eWzK6NYsTNUXEt1DlRpOlWt496b+szSuO0wD9/Z24pGJ6Sa/RwR7SAoDnwdH1QTA4i7K5C5/fq0xy6JRNRsUw7jD8jkugj3C95Ltb6Tq4XCk5bNsPLQAkql6Cr49BWTngVf1Lx3XUhV6BR0GcFOXjqm6j5NFUl77UmRQVR81RxG5VGGOaeFnmbF05IwaEuqsaIVviG1AoIRFAZHsYcwjwJfovwZTibD2MCHeAHkQrBGiVKAqITW3A1uYZGgEfFS9urAd2uxIZJJXc9Gj98lnQ2hNKP3jUQqnUZhYgJI0GB+bx/ZQ96rSRRiNh58voQjTiwmYJZfQkQ2SArghoERzFQSTCkatcXm/0alDZTjFoSOUF+J/PH9TMxEEPnzFhRYsnwJbF+sTOdGyW21c+3B8lP/pNhZYfy7W5GwDng0X1+ImEb5OawJVZFrC9xgxPYz1BMy0toz32AgceLWstUsxYl2KuhQJVORzjMnaKJ7h+86VbGZM0wbft61tbWvbta3RXG2wChniCVThc+C22267rGNc75hmZmZGzoEgbTa5RnN2JbUjyqj8xcEJjJQpuQ5kDA3v3tGDN2xa8HE+fmgKnzw2I24JazQVx8Mnj0yjaLn4uVvDWs756iIEgT701PN4fMZAzCCjn4LZhr6NgLkJlOb7G3yBEUCjanvY0pXEwDlA/ldrXVIZgfPM+szOnTub/ksypuPX33UrfuNjT2NkthwCSBSIGsCvvnMffvn/PA6zhSGdxhiRkq1/860TUuPiuR0dL+IrL4zhT3/qXrz2poGzjv+eB27Apx4/gUOnZ6UZgeADxi9UCujvMDE8VQzlceT7EnUMLzrhiztRmfyQ5T1wHEycnsQkr4OiQokZqMU0fPKxIanVNAtSXGcL3cEL+/I8zJyaQn50Dr0bctj4+j3QYzHY1jlIAhRgxw2d6OpO4NTJMk4M26jZARyHzBUKLItNwWFTbxTT8NDzBQfHR3T8L4zjrTc4eNXmBDQ1gNkIxLoSNmZrJmyfcQowa9uI6zaIsDlTUGH7OhiCZ2Meah5EPlZhHOT7OFMvS7yYUFVUfRfHx32cmGB85aMvO4vk3k7sHQhrNHMWWUMCAV3M247EUaw9JHUNkzaB54ubp4+Oe5gu6UikF+47L01VMZSvYzCXgG8nkYzHMLiBagCk5FRwxzoDb9zmojY1i/dsjmFm1sBQwQG/9mTuz6XJUAmk4ipyWR8TVgmW5yKpn51jiJs6/v07b8Vv/t1TmMhXZV2yiSQdN/CrP3DbWev2YoxMljnTQE1kiVmnCRtRUmR3N01YrLEJEyxjnDD6tRvfxz7DxLr42mJVWSlmlQsZgXH9/f2y0QiunJubk5hmeHhY1lVrjYbkEueqzfLey7+/EmztRcCXYVfLyWBgTNkfOhGXIvuzmhwhHpO0QzyH22+//Swt98sFq7xweg6/+JHHUbM9pGLhjfDkVBk//5eP49O/9gbsXp/Di2fm8PBL40iQMYRCd42bKtF+H3roEH7sNTuWvYlGjhA7P4UOz0lDVW3EDE203QrUJ28M2XY8GIYuqGE6SXzwEqhCVpKff2Dr5U3aZThC0TzTaT5XAeD79vThkePTeHa4IPI7BA3ctyWHW9ZnkUsYmKvaiDeYVWhzNTJ5BMiZGtKNZDkfmmRH+fDjZ/Bf3r77rGPs6E3hD753C37mk0eEkozOZ2fCQH/GFJDBzFgRVot2euuZnY+iMQKcRHPR/L1ljvgvCUGIzOb8DzVo4njcc83gwtSSMluFkkhgqOTBtXxoMWMRmKZlsqHovMn7SOgK+rKkUauJ87PYqVvscCnUB7Q1HJ2z8P/88wHcuK0XTi6Bwd40koaGZGcC3RkThQppXZi4VPHcsWnMjM7BJxrWMERnsaM7hVSsC2T9mydS+FQBtZIF1dCR6U5h+vgYKrMlmHFdHu4vH5rEBytP4z+9925s7M0IKGmu6uB0voa6GyYtOWdJQ0WKDgqTxX44b7NTZQwdnw1bbKNz4cTrOmZKNiruNH7z3bdhcrqIY+MF9HV04b4bBvDW2zdI4BA9CP/tAzo+9Oy0AGv4lavUFXRmNDx4V1bmiRR55+us/plXb8IN/Wl87sCErL9967J49x2D2Nx1eQ/KLjOLVD0u2vVpjSxBYUKbieweswNj1jQSWhxOQNBVKF3ENLjjAptiy4NqVrtdC0foXF2KmzZtkuOzQEmniJT+RPUS2NJKRxd1KTKxy79dDsr4937v9/CpT31KwJHcB1m8fv/3f1+63yN73eteh0ceeWTR5372Z38WH/rQh5q/E/j38z//8/jmN78p5/Cv/tW/kn1frc6ctrWtbW17JbNFstBHyRzeTyN2xcux6wm+5zOMXXHsnFxOj345iuqLsY8emMBXTs01KKpVARM/SX/Z8/Gbr9os1/TLp+clmZsxQgYHmhkEAlR+eLiAH9x5ti509Mxn1ySLq+W6hTljEDH6vIoiSbCKgKtDk/02kj/0iQiMYbiztzOJmzqvPDFxsfMTzTP9AsaOS5+7KUPHPb2d+PzwpEhk0rKmgT3ZNMr00YVKOIzLaJKgFir40N+N5o8g8JcKJdxZyWJb+uzze7C/GyNTUzjih4B9dnt16LokDku2g2k5dose5WV89VqihCaghDJMksAXTW5KVIbX4cIe3ALfR8EBHhkPsDHpEErR4DFZbHz9nn5NdOMPzLnw/ZAmvUL6b4cSp7xmLewxLWPOOwZyroIZK49jpSo6Y3H0JAykDXYOMhlMMEkIkhAwSeDC9izxqQmqUAKCDTQBf+uqISAPO3Dg+GGQKIAXP0DJrUpcojV+n/XnJAbvN/ubsBSyqITHimaB/7WyaobA87pbE4B6dA5KYw2Qcpp7yelpdOu9qPhl+KqPmBJHNpFFLJsIO10LBczOzaLuVJDsjYUNCoSJKAFiaky2kJHTPy9Yfl96Nybsacw5BZkbAlX6ze4m08qlmhYYoRRQBFppdMaS/ad5xRrsNSE+qgEhcnh9V7abb60yRV7IeA/q6emRjcauxKhLkQ1lBGIu7VKM7jMENl4uWKUd07StbW1r2+X7nMJ4tsIxA/0BNmERuMgG0Q0bNlx27HW9ajSt53DjjTfKOSwd1+XUaAqWiz/cP4K85SHeAIxQuvSvD00hG9Nwd38GJdvDl07NS6451ag9sJzDAjXjmXft6kFfgwl+uRgiAn5M6X0IVFfy6DT6r/T9WczmjDKe4j7pAhGkwnoN2cN/5p6NTVbGq12jaZ1nyitRdnCpvXbPOtyzsw9feu4MLMdHzFBx65Yu7N3QiRvX5/Cd41PIJozmGqtYDqqOL/WtXIOFk8eZr9j4L595Ea/Z3S/gjFbrzsbx0X/3Bnzfb35K2DSoRtCZiWNdT1py9rPVadTIbBLubBmgSgvgPfr9fBowLefvuR6MmCnH6cnGMZKvLw9OOYe5touJoVk88thx6NkMUKou+7nBzV245Y4+PPtiCVNTDjIxXeIZst9HYxG20CUFHjLtuK6HM7NV/NHXTuFzfXEMDrjYuV5DKq4hprIe5qBkh3Kv3aaGE3kPx6d02K4itQ1NM5CJu9jWWQcVems2m0wMlKzwHtQRd3B63MOZqVBihzWrU9Me/vfTo/i5u1Xs6U8L+xBlbg4X69Iowm+fwVidjCi8lwnonuB/FTXbx+FRstEsMOTwpKyag1LeR6Fo4afu2yAN2AfGilLLu3NjB968u0fmhY0grNH8/7xp/PnBAmYdRVg0XV9BwlRw1y6T5R7UPVfYH9HCXtlqb759EwY7k/jkEycxNFnEtoEs3vWq7bh58+Ka78VabyyB3lgc00EN3WbYJMPojhJAW5NpHCkXkNZ0AapYjVhLlmsA3NvZL7K9a814n73W9QXWSNavXy8bvxeMU7geWLOPGowjFkn+SzaoyC6XWWU1xjPfFVWdq6GHSOpRdpQxmcsLeamyP6shudsqXXSuc7hcsMrfPXpcgCqUAInmvDOlIl918LHHTuC3f/gOvDycF2meNLVGWowP9pliXRhZtvRmzpIVemqohOOTY8gYwPu/9y48UZuGoszJ9aVj05OOYbZMbTpKmgToShrY1Z8WJHDZ8vCG3Z34uQe2Yu+6S6fzvRxHiIAAJnU5l+w+XG6emeD7j58/jJcmyuhLx4RCrmp5+OSLE+hJmfjROwbxp4+exkzFFoePgJtSndp7ikiwRCbJWk3Boyfmzrned/Yk0BMHVDO2SAuS15n+YuQ7RV2GQQuTCx2A1tNt3T/PodVaH8wRb3kQKEjFdGFUWUSpcrHFAwWYdJlU9aG6PhQBMzU0/PwAtuXAKtVgxA3oMRPb+rICVIkE6gl4aV6vsw6pwFENuJSgsX0cGs5DnSyjWLBw464ecVo471xX/QkNJ4emMXLgFALbFdCxahhQOjLIzwTId8XRjQCPf2ca1ZJF4hZJ3k6cnIRbtdDZk0QiTr12oKNDw5npEh7afwb/+s17JFE/WbGlezdK5BctXxywBzfkUNUCASlxbU9NFlEr1ELYMRG1MRPCf9dAChE9/Nn9Y/jw++/C33/7FB47OoWj3zqJzz03iu+7fSO+/84N8hB8//r1yG4/hK+8NI5i2UNPTsfuzQY6s+GlkbXhuud8yHAdvHZXt2wrYTHVwI7kepysjjWlfgxFw2CsG5oWoObXkdAMmAi7KzlGFnskLb0GgSrXK7nbapH2Ozeya/F6R4leOkVE6X7yk5+UZx4lxc6H6D2f0cH5hV/4Bdx1111yjP/wH/4D3vSmNwnws7Uz+2d+5mfw27/9283fWxHCfFa+7W1vw8DAAB5//HGhAP+Jn/gJeZb97u/+7grMRtva1ra2rU5babBKq+wP2SF5f7+S5+j1oMzmObDzhCDL853D5cRajB2+eSYv/ljEcMhYQ1F8HJiuYKhQx9ZcAify9RA00CpHyRgBEFmg5Sxvezjsp3HosQPYmYvjwXtuxT8+MdLUpibogj9W3bDQT3BCX8LAYJJMG45oZt/Xn8UbN+TOYh65WjENJX/4vD6fRNRQqYrPD09J4rnLNMTXJbDmk8NTeN/WQfQnYhivWYgREEGQApnyglAWp3V/7F4jMOh4qbosWIXnvE5VMBwAPYnYojngVW7yrbSC4hvnJ7nQC7A6LlirdMvCKxy7qaoiA7rUWnPJZ0uchj9UPWCspiBlUDZUEQmhKN3MldOTdDBcCTBnESzCrjVDQNqmL/lNkYkiXfYyRJMCap+ok2ab82ih5HqYqKvYncug0wyTWtFn1EBHyS3CJlCkETsy2aoHChQiJsjgontwPCbKG00JpGmXJKkvgJaQhSVkCyn5JXQEHUioCWE/IavKorkRgIyyAOJovGo1wDKMb8qOK5sTeCFzDFk6FQuxZAdyZjdm3VlUgwoc1GEStKLmmj4sE7cFTAuTJdezAQO6T5Zd+tkqbMuGYYSU2MuZoerYGB+UbSWM86s2GF2ia0+gih4Y8DR2U5JKO2QEJT07ATa1ahUJI7UmZYCuBVPkhYyJW8YI3ESOqqVLkYlUAps+/OEP44EHHpB72r59+y7rOO2Ypm1ta1vbLs9E3nuFwSAEKhJ4z7zg5cj+LLUrlQ+9HGOhmmAP5t7OdQ6XO65vjxdRsDyRL4l85rRKULSHLw/NC1hlrGwJiIRgklYja2TZ8XG6YJ0FViFo+UTZw4GxGpQzR/CWvbvhOHFgZDj0l4UBw8BczQkBKwSrGBq2dyWkvjNbcXDLuhTee9s6vGrLpbN6Xk48w1ia88y63r333nvOAu/vfeo5fOPgGDrTcWmOtmwXD788gQ9+6gX85IM3SAM2ZYIycUPObb4aNnl2ttRZ+DtZWk5NlXF6poytfWcfa6Azhe39CRBXvbFn8d9ZgwmvVwj2kRqN0lKj8cN489wTsmhymj+y4Vb277jIJo1m/NAoAIQfJGiawIPzzCd912NHJ5DZuhGZwS7UZgoCMAkvvgo1nUKQyeJbz5RRKDrY3pMUNpeSZ0PTXJHJ4eGiVPjihmmyRXio10P1gZddAlF8DE2qePNdisTKttR5fKQUDcWaj4MjmtSbuIK5z1Qc8HwNU2YMmZiFF+ZjmK+pzWOdmVEwM1NHOhYgFQtfy8aAsu3jK8dmcVNfCp2GioLtoOr50qzAa1r3fVTdADfm4tAMB3U3jIsKFcrtEGTjw647qJYtVIt1eGRDbXx//7Zq4R9+6k50xDU8djqPr5+Zx5MTZdy3MYu37eoR//UtAwNIbxrFJw6PIF9i3VTBpl4V3VkfAa+56qNu28gY565F79vaI9tKGBut7+3sxRNzU5h3bPneM1bflEghrrk4U8tL/Jo2NGQQk9qf59jCgB9bow2lfD5dbgPXSphCmbFMRjYquXA8UYNxpPDy6KOPSrPxa17zGgHnXw5YZTXGM2tzxVxHijk+9BjUclEwGcpk3UoE5Nc6ucuFwy4+dtS3Up2tFIjm6HjhrKRt1BF4bKIov/dkYg2EYCAAi8hYpDd0FbnkYvq3iXwN//p/PYoXz8zKg5PX8kunnsLPv/kmeXBNFUMJEtKt8aZftoDX7u7FH77nFmy6AMPDc6fn8ennxlCsObhjSyfeefv6JlvJ+exCjiKZVAgI4heWqOhzzfOzIwUcHA/nZZwPsgCiT8fE7b8cmMDH3ncrZso2PvbsGMYKdZmfzZ0JDC+TAOfDlWhcGh8gpPvinLReh72dwFNzHiynLgliAl5IZc15JDiG14AI54gNhQ/qiHFu0bFamFTCfS/3noXXmeDviOtNJ5VyPBHGhe9ZumaWWphcDlXSSYFnqEyWhjqAdLbcmiWUdoGpw3ep81dHobZAORglYcNxL0LdwPfcUAG9AWzj+fYmDeRnypjpTcH1fcwXLNHfqwE4vP+UAE/MJFlpFLikg5udh9GZw/xsFS/OWKiULCQy8ZANKAhQnMjDtQikSi3gn8lwETfw4tCMDOXFyYrMRUyKFEHTCeWYdAd4cEsHXspXxVH6zlgxBKrwgUSQSuv6ovPpe7K27/qth+A4IUqbLD29dRcf+toRWI6HH70/ZBjau64LdrIE3wuEIUac4cb6UWouvvWtb0mwRPTmpWjnXa51mRlk9O3Iu2VJdie1OAKtjrxbavRhcn2SHYhE5KT+swRpxQT7WrTVkNxtNd5fyRYWMYYx+GeC98tf/jI+8YlPoFgs4s1vfjPe8IY3yEZ2sYsZPz/fah/96EfR19eHZ599VpLGrY4P75vL2UMPPSSO09e+9jWhy+OxP/CBD+DXf/3X8Vu/9VvX1aFsW9va1rarfW/m/XilEqKMBXg/v1zZn+vdhciAmsyFLETecccd4p+cyy4nuTtVdRrdfot9U2ozl10f4xVbwCqdcR2nQje+aQIaB5BrMEy22rfHivjIwXFUgk5onoYXChpOHprBzV0JPDFZhtWQ0mDXFhPEtJ/Y1YPXreuAuURbvtXI9vLUZBmH83XENQX39KexqyP0Q68kuct5IxiIyRDSqUcMBsvZ0zN51FzKtASYrodrIUZ2S8fDoWIV79k0gH86PYEzlVpIQa5rSAiPyPLHjrS4CWKQCKDlXHpVIOYpmCNwvPG3BAH/BCYwwaNrqHheA7QRJmElDyufXgKyX4Kdj44Szl0UNywcm6wq/JPQdVN6dMkuo2E2QSvLyJ7K9LCrjy48QT2uDyfwYVKX3AyZA5kIjamkW6ZAayBrjyAe7qqRSj4LGKOxjU2YGUMeE8ovVb0Ap8tVZDu0hiyPLyCTslcSGZ9wzOHakr/zGKoBReVvEaNKuJZ9hXFhuEYXAbSgwglcAYqYMEXGJ5yDiFMk4pYJECPgHIy9wveQVYXsRJM1SxLzXD/cdXhNef19HKqcgFZrAD6gijRoV9wREE+vMgBDYUymIqGmYChsmFHDDlbm3QmE8XycPjmC/HSx2ZF2PtnLlTCeu+6bVHpHoIQwKjVQoMXCc0RrHMy15DEm9aGaaw+ocj2YIi9kUiRKJmVjd3oky3zLLbfgC1/4gjQUPfbYY5iYmJB45vWvf32TivtC1o5p2ta2tn0322pii2TenUAVMsUvx/q3FmIaslyydkAmMDa5LmWIvFKwykRDimcpwJ0F51GyhwsToi41GuaAo8ZJGvP39Hc7lsQ0bOb8o6dO4+mxCryAjA9JPHewiPfemJDYiQAVegTMQ1M6tWx72JiN4z+8Zgt29SwUQZcz1jq+enIWM1UHW3JxvHFbt7DCXylYhU3bfPaTQYDzfK7cIeVTvrh/WJpipwq1RjOpKsoAXz84hp9/82782vfvwx999gBG50Oplc19GZyZq50V0UQgds6DyGp6/iIVAanRDCZwfLaK0bmKiFDGDVWkgFjrIJiENZ1SzWmCfYpV1hWW68FtpSdpudbn+LryZTZ40xhyElSxGJxCZ7zRfXsuOVXKrxIMHk+gf0ca9XIdxaoDXzOQTMcQixkol23UrUCYZxzGTxpremFdJ6o9LB2kHDZQEDPJMA+YcRU9cROjU3UcG3GwcZDxJesmbCDQ8NyQh3JdAfvheS7EzBQqQCYVIF/VcNqJY66mImXSVw3PZqpKKR4FmUTYmB3544ztzxTqMt5TFV5fXxotOAscC3kq+Rpjsntz/TheyaPqORi3XVh1C/nZCiqs7UldphHTUBpKUzA8Xcbr/vBhuGwMYANz0sD2TV2YqdmYr7n417cPyhi25TK4Y5sBSxqHjWZNi20suuvj+e88g45UehEb+tVsgGXDw5v61mPCqkkdLmsYmLKmcawyCcfXoSgBfN+FqjjoNtJw3DDmjGL5tWbXu6F4qXEsUexKLALBKQTks6n4gx/8oLznB37gB5p1GgLxLqY2shrjGf27QQ8xclSuFKwSJUTpCF0oUbdaHSF+2Ujtw2Qju0guFIxzXOea93LdweHhecRNDTdt7FpEZ0a06P5Ts4vYPWQ/RN51p/CJJ07h00+fhheomC3Z6EoZAsAg0wq3779zc5M2LbL/+2++jWdOTAmtFJ0E3dBwaqqEX/ubp2CrOgIturbhPPLh9OzRSfzGx/fjD997B/o7KCdytv3PbxzHH3zpiIAROMR/enoYf/b143jdTf0iG3RDfwY/ePs6bOhMXPS6bO1UXY66b6mN5muYJ9LYCx9igtR0CIoIoBYtPH5qHl88PCPP7q6UKQk7Om10Iiu21wTW8Hc6kvdvyeE/f+koHj+Vl99v25DFT927ETcPhrS3GS3AdMFqdm+G4AhVukZL1OPzGklCUlM3/ODQdwip2Xh+S/EeC+85OxkbXXsaHbOQhpnHWPzZsFNxMSNMdLwmwZ0gixf269ierOvAcRG4LjIJE77KjsMAsyUrTOhy3HKARiq8ldFFEoMePMsOE758PzvvmNhWFXQaGiqTJUxUKC8VQA98TBYqqJMWm9lTNfQ8KUvk1m3Y5QrKlSSccgV6zAj331grZHyxKzXRctRSsaZUku166Ggg1MfLtjiifUkD9UY3LQsVc3UPk1UXrx/owh1dWemS/Jfic0Bnd8hXF81lhHxmlOH7sGx+HwLewGA7wJTjYaZsYV02hs8+O4zvu30DMgkDQcXEV79VQqnuYcfGBG7bza5DVagOb+vZiMFNaSkGcSOKk3Pemuils3+ugLXs1jBtz6Pi1YU1pdfMoUNPXzDAZXcj30uzUAd7KJN6HAnNRM2zhSKfXZlMUruqj4yfkP2vReP9fzU5Qst1Kf7kT/6kbEzu/sf/+B/x9re/XZwROkYMpt/xjnfgIx/5yCXtl8hg2tIC49///d/j7/7u78QZ4nF+8zd/s4ncfeKJJ3DzzTcven7RISPlHJ/RfD63rW1ta9srNbG7EvECOzKY1CXw9Epkf65nF2KUbOTziefQSoN6qY0B42VL5DUH06Z0/0VG6RQC6p0lSVv+zqQkY42/PjCBU7NVlMWP9yWRy+tMRhR+5oH1HYuPVarjQy+MokZ/mO4aC/F+gG+NFaGoYRJMTAlQb/jVZPD4jPj0wPduyi27jtgZ+QfPjWGoFDLS8R1fHy3itp4Eso3C996uFG7vySw6lwvFNARHMXnOhAiTuhfSQh6t1FEj8LvBPkLjufKn8WodJeqk120B4vCYBNjQXMInmt2DEBZBJrfYwfbho8OYskK/79auLF7T2ymUzEYkeyO+7oJ7n9RVYeSgDFE0n04jzlgISZZCPBZbE1wRBg6L9k+LhG1CXMgS3upzgFOWJmG5flgkIDjFEiB/gKQWoDfhIa7zemgS85ByWlhGZC0AFjuSW5gwI/ANU55JzZO4oUEEFIJplAApNYaa46LkWmDYyHmfqTmYt9nsEaAzpqHDCGVXKVlDcIdsCmWO/FC2pskyHgZ7vF6LYv0GOINAEoLKeT5kDVEWgZFE5Eb+zaBDACuU/SRIZcZyF5oYCPJoAHIsj7FQKPnJbkJ+H7j/eacMFw764x2oeCXk9G4B2di+i7JXhKZqSOop6KouIBZd0XDjrj2oDFYkn8PmnUj2MopnmOg9V75IrhDnQwnPjUwyWqAvkjVazkLIEIO+8H2KERbnNJBlM5Rjit7H3xlvKr5+MdpSq85WezzDtcruxN/5nd9pJnVJc0266v/23/4b3ve+92HPnj3SOfjOd77zkvbdjmna1ra2te3axjT0QY4fP46hoSHJu5M1eqWYlq8V+31r7YCNxHxGne8czhdrMb8/UmEcEGBjKr7I3++Nh/HNUgZ2gsH7Ejr2T5Xx6FgRMVOXmgAdMoLNuU/K02/LxbFjSU3kH14cxuOjhZBBgz6tqqBQd/Gnz44I2J9beJBwHkXK3nbxP58dxf9190ZsW6bGQnvsTB6//9ipZj6co/2HAxO4ozuF+bKNgWwMb987gN39Z8v4SaPoOeYnkinauHEjdu3add55Hp2tYLZUl7oX/TOm11nLsCquNH3uPzmLv374OCqWh850TPzXmRIbSgIBlRCAEDWt1m0Xt2zuwt8+fBQPPT+CSt3BzsEO/PQbduPBfevleJ0pDfm6h1oxbEoRcAubfdMxVGo2KnX6yOF8VltlYpcljV/qQJ67lsrY0ybInx9x7OVZVM5Zi12QISL4xjRVqJoGi2D3uI5MQkNnZzxk6onpKJUdzJYdJFLh3CQSOhwnbJo+a8+UW43pzX5ctUH04ipsdIhhclqHmknK+szPOxgZr2Js1kEsrqOnO4ZkQpMyCWsg1bqPVFzFqM2GeYLxF45jGlFNRgExO4yveGzGSWlTlybyGcsR6dU+U4Pth9eUjeWWR0lUF7vT3diayqHk2vj2/iFMjRVRb4DDhAanAYwhGN13FTnnmh/AlPNTMVO0MH94Ert39uJZXcUbC13YnIvDRBxHhzVMlj10Z4Ab1rG+rUrsuadnEHs29UhOhzUa1nkj2csopqFve641XvVsjNQKmLNrAvQZiGcwEMtckK2VtdgNiVSzznOmNi0xJ6WQiw4Z8RnP+8jbVQSBigQU9DZkg9aarbaG4qXGGgzZTLgRiE85M7KfUIaHDJJkjnrta1+Lj3/845fEuLIa4pk1A1a53nqIvMhMiLLzZiVkf64HWIWIKyYb6ZzwHKJFJVp9s1XUHA+7elPC6BDZcvPG9//dw0fxZ59/EfNlS0AqN6zP4Xfed29T/+zHXr0dn3/2jMj+ZOLhMqNsDQERp6bL+Ptvn5QbvEi3+AEmS5S3oYSNint39uE//dDti4738NMH8KXnRgXMQbPgo1wndW4D5cmuLCZGJLmkSJGeiTAiOx85PIlf+OhT+Kdfeu1Z+oBHJ0r4wy8fkbFQH47nW7ZcHJkoYWiuinQyhocOTeEfnxnBh37sVtyyoeOCiV3OVwRqIo0Sk14XMiapqWnHU4m03Hg6lhugYrn4x+fGZS45f3xN45pWIUhbTkm+5ohzxNNLmxo+8dyEgH44PQlDw8P1Wbw4VsKf/eAefP3QBP7u2IKcjzgBDY14JoH5IJbkKR1TOmMNsDudF0m8tkhsR/1xrV1h8jA+C6wSgkxI8zc0V2tJRJ7PbVq4/i2HEMfTow696yCWTaJQrQnNXOjM0QFwhUUkSJL+LUyW0wGLgCFurR5SXBtMXAJu3YFXKgFGHAGZOVQFukhTKShUHUl65m0fDjsZazbqdQcBIboER2kKbPiI+Y7sSzorLYJagErVQ6AGMF1fUrSqrsGIx0JnsG6LdrpFkK3lyuce2Bs6qd2J8PvC8UYST9F3hUWTedvFyXINw3M1jNaJkml4PpEb30Q9Ny5aNNPR6x6TzqoApLjf8XwN//DkEP7wC4dQ5VgU4MkXq/jm0wb+/Y9swK7uHmxKdIke/bp162TjNeE9kU4RHX4GViwSRU4RQSxRJ0DBKeN4dQSW70An3Z9bwZxTxObEAAZiFy8b5MJuJt3XJ7twpjqDWoOSnMGD4WjoURY0yNearbZOxPMZaUnZtfJLv/RLshHI+cwzz+DkyZOXfM6//Mu/jPvvv18cq8je+973SpDOtcZgkmhcFhOoo0hj9+NSoGX0O//Wtra1rW2vVLvSLkQ+v5nQZWL3YhKiq0F6dTkj6J6+NsdP6Z/o+UlWQMY02bguDIQXSu5Sv/1Dz43i+YmysDkQAPHAxg785L5BYTDJxXXcv74D3zg9jzp8SVgxKUZffGtHDH/27KhQagtjMhn0Kg5sx0cyrsu+fuSGHuxuYXfk8/MvnzyCkhtrwLMDuA7/nywVDeCD0BmHmTLxXX124lEv3sM/n5hD1tTw6sGzacE/NzQvQBUybxBII76a4+PxiQo6YkyqAftnynhupoyf2j0AY4nPsVxMw2QF41/GMmSuuZimD4LF/QaTSXMJNJhH5mwHJypVqcGTAlo6wyRJyvGpoSRQQyaGnzWg4NMjZNQM6/YxzcejU/MiI/TODX34nKVgpiWm4HEEpBEQYER/t1Hvbxy/mdhtAFfOpUbaHPaSkKYZOzVYUALfQrXBcrJcPHMWYCVE3Td/5Vj59z2dlAEKMFSxkdFDIJSAGxQyCwbSNUiAlKotAOBzJpAyXMzVVenM43znTBsZzUXR0+EHqgCCRKKnwUgoABIlpK0+UarJmgrhEeH5VGMBBplcb4BxuFmei4owryhI6UzaytURn94OyKBDhhY2t4TsL6YaQ0pLhetY2h7CfyNJG6517osgFgJNCFYZqk4JO07UeSoJXWFbCZXYCWSiYhBfZ4zK1xiX8JWKa6Pm1xBTYvD9Toy7ZwTgHjY6KKjZNaS1NLJ6B3SfSWpdErncaJHsJWMaxjOUD2hlkuTP8t3gyFWnIecTXkZfZaOLL8wpFwKsLJjfjKUJ6iFgJWS6Cf/jsWYn59G1pQ9r0dZSPEPj9ea97ad+6qfkd+ZvmOSlzNmlWDumaVvb2ta2SzP6lFdSA+H9m8B7MkWeT8plNddo6IMcOHBA/O2lLJezdRslx0VfIiZyJ5HxGSuNn0uetwfnKvjk0DTmrLBI3mkaeBdlQLpCQMf96zL43Kk5lGxPpOelIO/ShyMLpIE/em4sBCHTx9FU1INAGh/pl63PxPArd2xYVMg+feYMPn1yDq5KjglFfDXWNMTnlgZQRYrxntsAsNMnJWZBU3BivoYPPHYKf/rmG6R+0WpVx8MfP3FagCpJI6xTsLlzumLj8/k6LGGXV/CZFyfwn753F960u++C8YzUvE6cwKlTp6Sgei52gFZjEyzz4xy82UCAC56D4B3Hw9dfHMXp6TISpi6/R+zoBLQwfmD9hscVhkBTF8bzx47NyvsYqxVOzuDQR5/A7/743dK4/YcPz8HhcmOthyAKjcB0BaZhYKZYk/0wZmL9x/FDAIRIzjJQXBTfLhd/n7vyQm/55ERJakJkASH7B2sP55P+af20GJtINU2AIvfdNYDnX5pFvmQjk6F/HAZUqhk2c7COZyRYiwljA9PU0NFholRyYVlOyO6vKUhnDDhUI3V8MGpOxkNGSwL4WY7JO0C3p+D0cA3Hh6pS/+LXlXWYctnBlo0ppFJh3EogCmd1phjW11JxBZmULnFVKh7I/NcsDz3xMC7zXBUVx8eD27NSo2TsHQLKQ9ZKEWwl+6UP5HQNlu9i2qlgvl7Dtw5OwmatctHlCKOgqNk6mtsoTmQjvut4GBotQo0bmChbGCvV8cFHT0t90uP8qT4OnAHeebuJm3tzuCnbB1PVJQ/OTcZTrTZjGuZ7eH+I4hluUWNP2bXwXGEMRdeC0YjHp6wyCskadqf7LjqHM2kVpJkioRroi4UMpnUyRIIxoo8cNGz31WaNc63ZamNWOZ9VKhWR7GE889M//dOyHpgro0ICQUtrLZ75rgCrXImjwQtMFgGi1Cj7w4To1Ui+Xu1OxOnpaVlQXCxEHEdfuMNTZfznLx/B0SlSjUEkQn7h/s34oVvXnbML8YvPnsYH/+kZeYCRjoyOyIunZvBDv/dFbOvPypy9bt8G/L/v3Ic//fIhzFdCZGhvNo4fuGsLPvz1I/IQp+YfjYAIyu/cd0M//t337cE9O/qaoBI6nnRAP/H4mABV5IEWgQIaTBmSxZUd+QJgCCdUg89uPccT/cDnT89j/9Ac7ty2uDj+5YMT4kyQmYROB8+ViW4agRWmzoSviqmShd/90hH840/fdZa0UasjREAQk7qct4vp8oyMIBQhwmg4djx9obumI6OreHmyLA+pVtUfps34uZ+4a4MAgYh+nq86+PrhmSYYRDT+7EbRADZ+7TOHcGiiLGwpAq7gOSsQoBJBRXMVR9CnfBjyYd966blPHjN8rUHkvAyzCqm/qE+3KAHMhJ7c+AK51kRC16iBLtnIELDU3AfpqvUwcR2mBhebzs5D4jMsC6ajQ3ElhSnJS99xJWksiW5Vg86TaXQIRuwifqkSAjaI/m5QHIYOFAEoMehEt1KChw9a25OihGIqsC0fVtUOHXQpKNAJVSTZbtP1sSx4jgejIwHX8WGzW87xYTmunIfm18W5jWfZ4QdMTVdkX7lsAt93z1b5ztBes7kTT4wUpcOXzrmsKxY+DBU3DibxheEZPPXyBB5/blyW/FJa8kXUNk3hR3rYppy/bI0kPRG8X3l+FL//2QPyPeAcUs/d0EyMTDr40sNVbHtHCvvniuiLx7AhGReHmeueyVtuvC/y3kraSjpFDAAoK8C/dXZ1YiZdR0lxkdJiiGm6fL7qWRirz6Db6BD2lHMZ123ZK6Psl2EFdaEKpBxQ2ohjR2YARbsGO3CETaU8VkKcPOpr1NaaI9Tq8DDRwAQBt0sx6iJyrZB+u9X+zb/5N82fGUwODg4KLTcDTNLdta1tbWvbd6tdSWKXPjUTogSbXiyY+lIteo5drWcaz50xGYNeyjiQorQJpN8/ir96egRlyxMfd+9ABv/pjTuxqQFaWRpr8TN/8vQwnp8sS9I2xWST6+OLJ2bxwlRFAAOkAL5/QxZ1N4unJ0qSuCITxt7elHw+X6+LfxYlb5lgpa/7ru3deP3mHLobXYxRLPb8Cy/imDMY+q0tRflwPPL/4c/iFzfYFlRFjjuQNFBxfXxtpLAsWOXxiXJ4npSmbDAtRu6151PXO/TNX5yr4NnpMu7tX7yPpTENZW9J58rYl77exca/ouXdOC+1sb9IroYJxhpZNJfElhxzWlHxxoFuDNfqMBUFL85XMC/ArPC4/ETNC5BWFBwvVvCnR85ghkFM4x3RHlUfAiQPARGhrOfSCLvh+YcJ3mWsFdQSudgtii3h8TzAU1RoSpjI56shHffCHNLnJWtJM8xpAlXCpCVZUnQ1QEoPkIOKaSscr4B5GmMj0agTKLB8dvCFY0jqwM2dnA8X65Nho0M4vgCup6JaDwTAklDCYgSvKwHeHaYqxzxdtlBzXSSZkCYLSsDuV2DG8oRdhd8HjpFFkumqDZsAkwbjZE88hpyph2An6pGzOOGHXadxJY5+ox8awSuULAriqKMaSnc2ojr+p0OXRH7ZZ0dfEaeqZGNthDDR/Dbmu8mM07jW3BPXdjrsGRCQGdlRLdXCmHcadRFrbXQO+1zzlDqqII6U5AeEjhqGgESWk71kLB8xSQ4PD8trLB719vegoy8l8WV49cjaySnw4Sku9OD8MYicueoJAKkJ4GFCHnqTYUXWuQ9MnJnC7m03YS3aamdWuVBMQzD+u9/97kveTzumaVvb2vbdZteTLXJmZkbqG2S7v1gw9eWMj7HT1bKoIZrsbq0slwXbwT+eHMPRQiWUPtEUvKa/C9+7sS/0KxuF31awCtlU/vrYhPjYqUYOebpm48OHxjGYIDN7gO3ZBH58dy8+dXwW02zADFh4V/G6DR146ExePpNq1Gh8PUDZ8TGYieHHd/Xitv50k6WFx2V88J3hOVjoDCU6o5gmArs0csZkwtBF0z78HI9JX54slGSK//ZwHm/evrhG89x4CUXLDcET7LUMfGEvEZZzQ0Vg6lB8X6Qj/+s3TuD+rV1INZjmW8E8kZFtgvEvGTkvBdRUd1ypxbAmQGkcxiqcR+6ZAIanT8wI8CFfJRtJ+BmeMz/znldtRTppYiJfEz/8k0+PSN2BxqGRkYMqA4rt4QOfeA4jc1XYpIdXyNoX8g+ScbEjrglbi6nrMn+MM+i3N2MT+pKc5AZb/Dm1fs5hEiN4ngC/BvuzqNZV+KqGwPdh24ubY0xTh82m4bMQ/iqSuZDBI5ONI2Ga6O6Ko1QN38sx1hpMMMkkASieMKxw9LxW/X1JDAymMTVdQyKuSfzN+XbdAMWiJbWVmEkpoDBOtWxfYpZU1kCx6uHEcE1OO50yULdDyc963cPYRA2bt2SECUVTfJw5U8HIlA3L5nEVJJI6NmzIIB430NMF2DUPM5UwQqQc1l3rs3jLzlBN44ZMBk/PFlB2XZiyFlSJZQmA2ZVJ4kBpDPtHivjyMyVM50N2nfD8yPLTuFZnzZsiTdd83TBCII9juyI7dHCqhH84MC2ALWGUYV1Qo7oF8MRhBa9dl8KJch4Z3cRAPAWDsYmiCFiBG5UduF4o9cx4hjH9oUOH5G+MaWbTKqZQR1aLIa7p0oBQ91yM1IsYjGeRM5ZnPIrOY9apYNoqCliFMZivUKYW2JQkEIasLawtBdhjJWAyMF+jttqZVVqN9zde3+i5LNJie/cuApyspXhmzYBVroceIt/Pi0RkGnUPGbxeLbtaqN1WWrybbrpJaPEiI7Dh5z9xALMVWx6ovAHOVW387teOoytp4vW7epYF0fztN44IkKM/F97A6JA4rot82UG5aiMZ03FkZB5bBzrwqX//egzPVeV9d23vxW9/8nkBEkRAFTR0+/iwH5mr4L5d/Wd187HzacqhxEi+WZZvlY9Z1phBVDWUarY4LvlSHT/zv7+F7QNZvPWOzdi9vhN3bO5A1XYFBDMtlNmLARh0JiaLVsPRAp4bLmBkvoaNLR2SrYldduKQuYZf2t27d1/STa0zacpG0AhRuXRC+PG0oYku43TFETCNdLM1QLGU6iEQhWjfuuViaKaKp08XGhrfi78vBDvwfObK5WYKNXKWBPlMdpaqK/vemKU8jYqxPBlIWhKGUZK2lUplGQu74hryOo1cu7CeSEKRN/wAo/N18WiZ8Od5LHpuqwHWd8RRIDV1jV12C3+kU8pxJ9lZGLi4pTeGt+7tw8eeGhb9S+n7Ew15BWq9DpdOUCIFxdDF4RJGlPDCyWvSuWqFGvA6V4B0LCrwnLCzUzEMBA0eOFK2heMjyEaFr7MAESYrPTqIZKSJ6Yh1ZFGtUaePjkk4AYHQVRMZ48LozGLL7kHsSHrY05HCG3cPYOe6BUr3WwfS+P4bevDVE3PIS1Y6kA7hBzZ3oKb7+NITQ3jx+VFUPCZ6G2wpC+x7C1pMgkhpQS3RGMQ1vSWCkRT8+UOH4LgeDD2U/KImph9YAm55+NAMbr13BqZuSkJ4WyqJB/q7zurG5f2L98foHknKeH4fjpQnMV61Gow8FuKqhv54AumYiapXR9mroVNdPljgWKacKRS9YjO57XoOLM1Gp5kTFHF3PAUv8GAgLnTfa5VVhee6lhwhJnYvJANwIfvFX/xFfP7zn8ejjz56QZm0e+65R/7ls4yOEDshvvOd7yx6z+TkpPx7MV0SbWtb29r23ZbYjWR/CCRlp8S5dNCv1KLn2NUoWLJbiH4255BJXSZ3I/uXg5P408dOy88EmtPVeX6siF/69Ev4xx+/TVgGl8Y0J/N1vDRTQdLQQnpijltVUHMDHJuvSSJ1tGTh5Zkq3rajC//99Tvkd7Lc9adMvO9zhyRx29plyKQv5X+ouhMBVVq7+XLbdsM5Wg17sy6GXrABXKEvyv0yScrx/N+PDWFLNoa7B9JYl4phXcoUCmfGCjZjoEj2snGIOpOi1Lds0Cg/P1NaFqzC+YkkYymRcjmyt32JOEarloxVGguEhSMEOsRUFZYfSgK16lcTcGBRkpNJbCfA4UoVBWFHjPg4ojMJGUBopF1e/JcFuR/GFkya9cRMFFxXEuONi9GUzAmBERd5EVrexcSkeKVBgAqTthHAgvO35DNcG72miWk7lGZqvg4I2IKvbUmpwhjTrfWg1/QxYRFIEsrkhI0CwI40ZW18FB1ycQRIG5Q4CvdDUErZURugFybQgZzBRKGCCs9b4heCvVWsT4VrkvJIBLhQ8ofdqhUnjPUY+5wqu9iaMWTfUzV28/nCEiRz6weYqoXsPWlDR0KLwSHFs2oiraaQ1jLQlYghUhGZHwKCbOFE5XUnOMNAEmkBsYzXpwXA7go7SyPWbMSxUcNCKyRfCIeExYjnx3gwfI2NJYwCKQu6IEYUgYPCBHnRzyOrdjTkqSzEkICBswEmvK8wX8ItYpKcL8xDSRBkZSMQyV5eBxWGaoYsRkoDRXTOtePD19wQSRU0cgdKyCBEYE8r84zboDRdqzHNWmJWke9woxPxSqwd07StbW1r27Wp0fAZw5wQZXPYhHuhPNJqZVZhQzSLx2TxYn4reuYzl/8XR4YxUqmJnxyxD35tbEZysG/e0LuoMSCyJyYLwpbXQSBHo0ZBV6NMuRG3LvKYE1UbaaOCX7ptUBhQyGa4oyOBb48XBQTM97T6r2RAmbdc3NSTbAJVIrZ+mjewDerJefHdzwJ1L5UbFQkXVXLq9NOlhhQE+KsDE3jo1Cxu6UljV2dCGg0YD3A882SPbwF4CIF+AMxVbMlZ09hg+xxB/C2Al9YaTSQZS9+OUqaXEv/mUjH0ZOKYr9gi4yMMhwRFxHWk4wZqdigHRPmbyGVjIzZfn6k4iKWSmK4F+PaRydAVDwfXnCyeY5ks7o3G8WiiWDsQ5UiROQ1PvCthiqzQyFxN/FDZRfSfOMt0kCPIUGPCmxN3bmMtTupCZF6dLIRxl8ZyWoPyo4WOv78zhcDzMTpXXtgt5VoTMRjZDqTiBrZt7EBC0/BTtwzif+RPC1M9r7d4wgSYJA10dWcwPVMXxh0y1mi6iko1rPvUyUhCRlFThWGoyGUNAe94BK6UQhmkhK6hpyeGrs4YpmbrsG0fmZQWyi3VXAGzcHxz8xZ0U0NfXxJepY6JaYJ+VKkXCRN+2cHIcAlbtuWQSmi4eZ0P3dawPtWNO/p6cUNPSnx8WnfMxOt6u/Ht2TkUyOLv+yKRtT2dQkfMwSMn5/DQ83VMzYbgNpFU9UPmVVmPEQK/9SvRuETCZsMcRUAwVliT+eyROQGqRJJEvBwsDXE4p/IWvjY6hsFsGMP0xBK4MzeAhLZ4bXOfbEzitm3bNgFtMR90PD+Fw9UqPAUooA5D09BlxNAZT6LmOsg79fOCVc7UZnGyOiN1GFnzAVD0bGRgCmgmozOmc9BtpJCyNHhrIyRY8w3F1Wr1FVWjWTNglWvdiUgEGh/CEcr1YhkyVpMeIgvGRBsTJbkcgvQLL09iluASk3rY4Z0ybarC4PE3z4ycE6xycrKIWCSETQegaqNmkT0CiJkaurNxueGemijgk98+jl/7wTvOGpuknxo37uWMnUxMlEbdfPja14SNhQm1cDitnM/nsMAX2rDhyRAlfGrCljF97flhmOkUdm7qQZ3MFw1HZ7mnh3B7NDJls2Ubjx2fxY/evRiswvlhAppf0st1mO/clMPWriROzVYwkDaFsYMPQFL0vXp7F/7lxfBLHiXgZP6IxHR8/N13RuUBRrRxMzG9DGBFmEok+Rc6h8tOGXUWy444l3Seoh1G6OjGtJz1meUsouOmMXFKthUmq1NcY2Qs8dj11+gabdXM9CFMNnQM9q1LY2KyiLGyDYNAiyBAWvXRo3mYVKg96OIX37wbI9NFfJZzpPHhzp248Ogc6LFQpJA75UOG05ZMQKMwYcOZ0xM+vGoNnu0g121AicWEfi6tAesyBo7M1JCJaSIDJKfERL5kOjVxnJpgmmRK6O+4pqgjyJfJ0BJxWiuaiXRXCp5u4sxwCaW4jt7dWfR0LqAfaTzvH97bj9vXZYTKno7J9q4kOpIa/vehERx+eUJo6rIJA9WiJ+ORc4n20epULndxOA+uK8lu6XIl16Ag9EOmG3GGPB+K68GR87DFASJA50S5ioFkDHs6zo9G5/1S7UqjrhVhUraKK9YLqcTPFAvo8DyYSUoazSHVGWt2EbRa1a+i6BZFZ56Jb655O1BheRYqbgWGaiBvFVD3HKESd7odeNrV15S9GhatobXiCC3tQrzUc6V00L/8y7/g4Ycfviia7SggJhCQxkDzgx/8oEhQRV31X/3qV6UIS1Bm29rWtra9Uu1SE6e859JHJVjiasj+LDc+2kqzRUYa46QeXQoIj1hV6NuSKVFMDf2psUId3zwxi7fu7jsrppmo2AJqSJMKpLGfAqVIGj4sQSwEiVdsDw+dnMcbtnThrgajCRPCzeMvgVQsx2bD5yZjsRnfgH78jDDs0b+7OJhEOLY8tcobSdsj8zXZ2AnZndSwORtDVcAerenOlpQlWQ8bP/O4L8xVpCMx6qAM36PIeJ9++mkpHvBZezlJj1u6sjicL4cggoYGJwE07ELrT8RwstLCfNGSUGcD3pfGZiX+YAK7ee5NHpSFuQiX8PnXMamImVCsE+yzhBWlibtvAlYWjtW6X3H3W4A/fK+A0QWEHzK3WNIBuXiMC2MIUHAcAWvvSMcx6xRRcUJ664SmYGtGxbY02UI8kae5ObMBVnASM1YYa3AO42qAiqfCCXx0mAFMhT8HmKj6KDmG+MYcIBOaSd3HuqSDlKFgUzqBIuNcz0dGjyNjejAE7L8A0mFnZ9kJQTHC9NO4DsPURo8pAiIhwCg6OXb3Mnmat3ycKPo4XamJHnlW93B3Vwo3Zxf7sZqiowNdAlZxA8YeKmJKHJZSR9Epi0RoXDFgqq509DFOZFI79IvDMYbROEEdjevAgkfQIFRVybBiSAFnMWdNiCAK0/gNkBJ1hOSzvGo+LNSgQZcxncvCLtEM4h0GXMWRfQQuCwy8Yi4qRbJkagI40VxL/NDlgBoB45OQhiUcX0g7hICsO/yPDQTCUUMKTmDdpv5LbY5dNbaWErs03psvVzqiHdO0rW1ta9u1i2ki2R8WXa+G7M+1YL/n+ZKVhHHNcoDwY8UKRit1keaICuVkl6Yv962JOTy4rrspqdE6tslaKJ8SxXj0P2sNhAR9cTbBRnHOQ8Pz+Pk9IZN+qy32jZdns+H8s/DIusdLByclTmI9JeSMu7CxzsC88Jzji9TQvONhft7Dgbk6ahUbSdtBNm7AasRZrfvkuXlkZxStnNDIbPL5lyaXBauwUMoYbNOmTRIDX2r8u6knLez/3zgwhv5cvDFJgcj77F6fw/HxQmOMDdnLKK7RNHzt6ByME3kZH1nrQZCM18JK0sjZM1aJZO1DH3eZyVdVlNwAdrEucWvLjLT8GPqYZ5mslaiRlYDphc+zpiDga4LdY5o0QEttbLn9sDm7WJPP7FiXw8DGbhwYIbhFQyydQHdnEjfv6oWZMQVU8aZtXRjJ2/jrZ0bh1UL1A4JSzJiKQsGWegmZUFguYaPv3FwJtVrI9sMp4JpPpQ2kUgZ2bEkgm9IwM2cLu+Gu3gxKjIf0MJ5SIgb/cghU4ddGAPhsyJ63kEioqJQcGIz3NQ0651zj90KDbbmozRdx+GQejxTqSOg67t/p41Vv62l+/yLb15nFYDKOkUpV4jAyTfbHDDw6cwxPHbekvtXfaWBmth7WEhv3j1DWdaE2I+uwWboJ143LJgJDQ0dXEgYbZxprnDWaUCWh0XOshmulbNlI6QkYio5pq4Zj5Tz2dYQMkecyArXMziyKQREmqWkIvpJmER+TbhmlAiWIdMw7BvqV+KKmoMiqno3TtVm5p2T0MEfApoQ5p4KyZ8PwyJzEuFaF69soag7WBY3vzhq0tcysstbjme8asMrFOkK8SARKUHtpKcq11ZhUOFWZxOnKpFDf9sVy2JXdgLSeuKrju1gjYo6LhxRPdIKWo8Ubmq+FlG1Lzo83ZRbJz+WgbenL4OljU3DJjFB3hB4sYvMgQ0p4Pqps33xxZBFY5d4dvfjIN45gsh4+sPj+REyXeX/bbRtlDogw5gJvZbN58OZ1eOb4tCAhy3W7qfxzXhOQyfJzapcreOkEIZsNmZjlrAF8aIJfAfzR14/j7fsGBU0rr1Gfvli8Ykp1yvlQb/E/f/EIRgvU2Q6Tjrevz+L9d23A14/OwmnQvjGtJQ88YWOgFA2vUTiWVlDJ+ablfFa1zzW5Cwlcoac+z15l/KJbGZrfkAViZ6uhKwgiHuvm+xeDVihr1JnQMV+2UQsU+NUq1qUNxA0tZGghItvzcfOWLnRn4ti5vhPqc2Pw7JAJhw68pxtQTCO8fo1r6RM4QeCZSCCF4ud8v5ZMwvdL6MjEhWHEUFykNR9D4/Owai5g2YhlkrAjHEgjWyra8X6oLe/4mqBTiTbWRccwCBHlCrsd6aBqcM24fJYodXbA/suBSRyfqeKj793X/O7QuL/dPSnZIjtUqGBiugTb8pDriIsPSQiHQ1YXwpR5ovxZNLLCTk8B6cjrLWtceAfrwiyTTsaQIeglX5fiQEu/qZxHR0aHo7qiadhppuT1RydKeGY6lPbalY1jX1dCqPOX2mi9KENI6Sbqvg1TY/8igyYPihrA9IDpMxMYevkEsr0ZpHNpZNIZ9GR6EdNiqPv1kPEm6tCkniX16BUfdcfCpDsH2w/p4eU+lgbmMY9BbxCmtrbkgKJ7/1pxhIjavVywCmnlPvaxj+Ezn/mMJBgi/UIyaNEhZkGVf3/rW98q938WJ3/lV34FDzzwAPbt2yfvfdOb3iQOz/ve9z78wR/8gezjN37jN2TfVxtY2ra2ta1tV2rLaWlfjXiBwAPeQ1mMu/vuu+U+u5ydni7hw195GY++PIZswsQP3b8d731gp3SKXaoJs90KAvAZgxw7dgxnzpwRGtMoIG41Ju4mitYiPyrypRjjnJkPwRFLx9WXNKR4T2A4fTKCutkdJO+NgBYCWlExX3fx0nQFGzLhM4ZdXVtzcRyYJugjdLXIPiFMgqqCOwYyEh+wm4/Py6ibL+EzuWVgokqJkrC7cGHuzj0P4uMv455zGc3XfJS9iHJ4KQ9J6LMv3TUT2F8dmcM7t/YuOgYbBZg451xfbsH5plwarxnowuNT89K1STNVFa/r7wzpsRUVrhToW0HVDcA06E+H9NchW8n5jnT+7xD/StmkpSffiDjOmqno9aXGqIszsdDawNQsO07DbsRQSmh5hha+QqnTrK5iyhL+R9za6WEwZUoswLXiBg5UaEioCaiqAQMKsuxK43Ho10PBRI0ddezcVCUOUhQPVZeUzWw4CZlqeCwyrJyp6NiX4z5MZPQQqMOzpZgPp4PJ2ZypYaLmCIU1552JUQKduOZT1G33ApSiIK5B6RnNGP89VFBQdMgMEoJ28o6Nr06Oyxq6Jde1aA4I5ogjuWhqCcywvDAXwMRzzjQxWffCrkKhWQ/nm6AujinGAoyqSSwcUczTKC+aM2MhmIVyRiGHSYPhs/UqsGHCkL9yrqlc78JBBcVwDFBhIi6sL0uBZ/yMpzDt2gDEUH5IYEpM/JrwbR+zE/MYPjUqifjBdQPIdmSQTKQRM+Ph/Z5AmUWrrtFlyQYBeBLbRMaO1s07N8BXHWje2opn1lpiN4ppLpdZpR3TtK1tbftutmvJFkkpTcY0LIIRKLFcfYM+yMF8CU9MzWHesrE+lcBr+ruxOZ1cFTUaxmOs0XC/ZLmMx88u4k7V7NDPXMpkLVLqnsgzdsXMZtNsZL0JA4fyAUq2I0Bk8aUjcu3GrvgZ+q5HC1WJewg0od3clQxZPCwvTB3zfWrImLCvOyWMK8zRnTx5clFz7r7eFL4yNC9F9qpLb4YSNo0BtfRPnrVmiIGOGkFbWNsTKRN5x8UkGd4p05Jo5PIbjbp8c6FA9vcWDz4I8IWDE/jX927Czr6F/CQBTVwvlKu4Eubl3/yh2zFbquPl4bz4yTzyzoEsPvAjt+MX//JxkfmhDEqzWUACwlB2idIuEiIQeMN4iD498/QLk9GcrLAZ+Rw4fAFyUyLGCxtPFznUEQAllFwSRpTm51rXkHTPhuAHP2QxiWD2cVOTOgsb0M8+9sKxyBhjpjIIcjmMVBV0rOvGHTf2IZeMISH1sQATdQ9bOgwkDB27exJIJHRhSWFMToBKveahUrEEXGNZjTjI81GtkkWncZkbZbxCnnU/BetuTKOzQ8eGnixM1UCBjPq2I+D/XNYU6aByxYVl+QJe4Tk6ToAUJYUMBfl5W843ZWqh1GqDrUQ3Aavq4MX9cyI5lCAlZxDg6y9P4tBYEZ/6t69GX3bhO8p11xePyRYZ6yT/f/b+A1yy7LwOQ9fJlW4O3bdzT/f05DwIBEAQIACCyYQZJIoKJmU+WZZsWcESLZuSKZG2n54tWVQiFUhRFilapEQSBEGAAAhwkCYHDGZ6Oudwc6p88vvWv8+uOlW37u2emR5gGqx/vpq+91bVOfvsE/Yf1r/WUiPAZj1FpWDCcwyUSzY265GAsRg56DjMoo4PrwuXkk6pSP4IeyrftwxMzIygNOLBdSyMOGzSDRTrTQesn8plVHRTjFVSVMMWZr0xeIaFU7V1LPmK1XS3V8QdlTGMiBJAr8232SgQY8wuYDNqS2MwQTxsGDBcoJgA7eV1PHXmMuxRD8UJ1mgqmBubxahbxmZIuSr1fW0TbkUmtBG00KAUb3Y9RnGMhpmi7kQ44Ncx7b2x+sE3024nAH7jTTQUvx3jmdsGrPKNcIS4oB0/flyAHtQ9nJzsTbZo44Pu2dVTuNJa7iSba1FLfv/A7EMYc8pvaHzc/5s1joeSP2T5OHbsmKBIt5u7uVFPLQR9LBx8wO0d9bYFq/yX7zqMP/r6NVmUufxRT05njfjQXav5KDjU9ouwsN7AL3/mVXz0sYOYmyjjN/7wFaRhiFSSbxDkZhAH2DdZwt6KgX/7W3+Ie/aOCJsNnbfNho9LS1V8531z+MU/OI6rq80cZjdbZbafjZ0nSwr6hF0mCumadzBEbqfrQOndUDLpq+dX8dF7d0lyg92q1zZDjB+4G1dqKcbGtjKa3KzdPzeKX/1zj+Kr59dkP/vHXDyyd0So2R7ZN4qnLq6jQHYZ6r9Rv74VopGkPYwqvR2Hr+++uRERtpoHtfDsHfdwZUPJu+SlkzrbIutLrBwEP0xRsA1xgOj4Ut5Hscr1Fmt4LdFf5gLMROy4GWKpGoJYkbQyggthhPG2Dy+JUGuH2D9Vxo+85w4sbbbwe89fyYFPMgriYhEmGVTkj8pRSykHJAnCDCwjoBWCSkyYjoODcVP0II+v1XHVD4UlRTQPM2RrqVxEk5qUWSGD1zsDCdLXxUEsiVX6E2GkrgMmVBlYKGfIzeSQDIx4tpxDnsvjC3V85fw6PnhnFw1OIM7JlSYub9KBMHDHRFHYjDzHUaw3MXUbbZTgYzNiJjd7lFNTtdkgBz5QzIIyAa9oMIsJtFvyu1kq4LE7pnFttS6dkpSK6nyeU2abeOyhcUn8EiU7kpRwuZagGYWYK6qCzJVGDedrPn7o4ESmb981Mp5Q+9CziiKrFKbK+SWduGN7eHD6EEb2ljDfvo6aX0UQ+lho1XFt8xrclovSeBlxJUZK9LBm9ZH0soXNiE4WOzRZiFLJaXY5to0AK9Eq9lhbi1lvZ9PP2NvFESJq9406Qr/4i78o/37gAx/o+fuv/Mqv4Cd+4ieEZecP//AP8fM///PicO3fvx8//MM/LI6ONs4T6en+0l/6S1IAZJL5x3/8x/GzP/uzb/LIhja0oQ3t7W1Mzt4MZTb1idn9RhA1fertaI/ZFfax/+PTWKsroDTthfPL+NJr8/ilv/wBSfh8szoR8x2UfNZvt+4QcDJZcrBYp7RH1xehj0Y/bHcGMOkf19GJoiR3T60pMIs2KUKbpjCP8PDpt9Ffe36+ihHXwuNzI7i42ca1BhPKWVKN8jWZrvQH9o7ja5fmEVw/j4ePHhLqXdp8I5DPfM/BcfyrVxcUMKYXX7K97eCgM5FlsTvK7JbC9cctk36oSoDqpLXuOHt2uYaPHZoWH4t05LVGA/HUXsRzh9GMgZE36JJwex/ZO4OHJ0dxrtaUyTlUdDBZ8LDQ8lGySdWsCv/03xzDwGqbrDAKAJFtRY2Vet+DwCa52GybUeR7Hbf9FA+xaJkisbPTtrgNoWKGIcAOXhPcKjXYe/eprEvEnaKYxIj8AOsRQe0Gnlq2cbAd4pEpA4WM/WPEHEPBLOJSax7tNAQJTAlModVDAyu+izhRkr3qPCqmEYK/OS5ttsm42hLa9t2eidQkLIivbg6EtM27iq7ISs2TdjuTYTIzEBaLF2FCxtQsTssFwvy9GRmoBqbs1zUZ25ng04Vg9GfWV/DA2ERPIwz3F4IJ1FiAMg6U3Kz6jJqlUcdGkFiSgOZYGA+OOTamPRuLLbKypLIPJ7uH+QRkfDRbKMh2GBtwywaBH5nsT/8ZLJgqsaqg+ZwRNS8mbPmZ4BWCaigPlLeuGJEJg9dtB1ii4u2CW8DBfYdxYN9BhGlbJEv5zKr7G1hmp3A9xL7Du+ExDszyH3pUCbPxurKTI8WUZ5UZwYh3Zn55O9pbIQH3dk3uDmOaoQ1taEN7a9nv86B1FsIo0bedfWF+BX9wbbEjobjcDvDKehU/fvQA7h1//SwstxJ8z8Ldq6++KkAP1mm2A3VOeipe0wBibfydQJNKBtLpj2neOT2CL1xbl/qAJnHIM84xpqHfRhAL//756+t4cLKCvWUPX5ivdhhPpMFTJGrYdGjivkkPv/3M1zHe3ug0PpCJgTHNvlEP+0c8nJAajdpTD4PEgPBF1bG7x6UwKF0Gd8+zhT2eH2zUfbjMm9MvDSPUqz6CgI2PCriidmOgGSZ44uyqgFXof50+fRqbQYLJYw9ixaxgJmsufSO2Z7KM//DXPoQnTy3g0nIds6Me3n3nNEqegw89sEf+VnRZ80hUHcIwsZLYSAoFNDg+qhgQd0yFgFZ766zkACs3NJ3zzxuvo+wa3TVWxOJ6Q8UJPUCV7r54xVDCiLU61uw8NgObqiGckkpSo8l/RXZL2Rzl8+7ZVcFiw0cz8sEe57X1Nu49NoOjB8fhp5Q4NfGhvSNSz/j4yRUFQheZJMXsWKv5aDS69RTGsLouRDYVXtedGpFBtYgIQc1BuVTGYhRgLaGsEGVmVZODY9o4dscIXn5tQ+pPVlb6IABjbMSR+J3nhg3TbMouFsj4wRgmBfteW3VfJIYKnoUR15bYouCkmN9o4beeu4K/9KE7O3PBcS0HLaz4Ldn3pFvAiG1JU4ucBpGJMrFvTxn+lSbabbIdmXA8E+NTJakZLV3b7Pj5XsGRWhPZgsanKhibKkvtj7JblJEi++mmNHn3XhtHdvHZGQvLCce0GgYijcvIzYaFlaCNa+0m3je1G6NOL+idTPecbzY0BGksIBU+EcikyTrYQzP7se/gKM7Vr2O+uSKSQMuNGs5tXMVo5KFSGkPkRUit3rpnwXRQMyIE0oChmoVE8CBJ0TZSHK/N4zu87lzeLnY7Mqt8q8Qztw1Y5a3WQ9zc3BSUK+mObyT7s+xvCjBFHtxZ0oEPiSCOcHzzEt4zfe8bGh+Tsm/GuDCT5oydfDfD8vH99+7CLz9zBfU2FyommyDUvnRmfuxR5QTqxSKvP0xkKSm3ECldNaFDzuRQVqoq4asdJ97c//t/fAY//7sv4TsePYwvXq6jVCnBZmE5VB1UQauNhctV/PS/nRdWi7sPTOPn99+FTz7zCn7186+h0Q5lMSANd4kSLRl4lJ1ksoJZBCAo0EwPaELLoWxFUqh/81IpXNHyUiRyPEwgKdCK/mjTj7DRCoUC7+nnX8Ivfc3H05ebSI1nxZkkgOLhw1OYrHj47vvn8P67Zl4XYISSTB+5e0bmkudTL9R/4d37cWa5gbVmKJ2jXIjZAaod8UGWB4LczBhutsdXAL8dJHTfnOeMVxIT0O00QTNU4+XYifRW9OqKWl3vm2eTun90hEYKDhYF/EGgCxllDCSug/XERjFs4113juPHPnAXnr3ewJdeO4vFVgzXtQVhKylF14HlKsYegpEEZSzdavyhj6JQ/MVEJHuurTdxdamG0DBRKhVQcm1EvP7iGH6jhb0zo3IM1bqvqKqpG4gE7YCdfuz6oy9hiBYnQSyU0iGwhA4GHR/RqC8ooAqNCWGCRE4u1TtgFQK4fuvEEl5ZbCiK+DRFwdnEI7srQjf48kQRK8sNjI8TMZwBxYTST2hdYJCiut2G4RWEgrALwpKHhLxY0Di2a0zQzaSYIztS/kLg+S1VHJH1olFSiXO8GQB7SzZmM2YhBjsX6wFObLbx6FRvx8KYUxS0bgkuJpwR+EmgaOAR42hpDuPOCNbCVfhoY6QwArOonietuCV67c3lBvwoQDWpouAUUPAKcDwHIZQTlH/+WlnCNzbYCVoDvNsLrMLnZJ628+1udFA069XrtRuxCdDx+eIXv3jD7VDK4lOf+tQbGsPQhja0od2upsH3g+Qeafw7O9/4uhFonfZ//+7L4tezq0oXmCm5+ekXLuHLr83jO+7f84bH+GZsdXVVgCpk+WADwaAOSm08vh99eA7/9CsXJbYgC6PoVocJpkoOPnzn9MBYkD4MfS76c0kOdMJZIOPERluBXTSe5PmFGl5YqOHAaEE0ylerbfETqcGukr8qufvktU08baQoOrux0SzBrfn45VcXcWZDJbeYcOZ5cg0DimtDQSok95qNrYfl+SYsj7cnsLwDWs8A5fncsMYekAqcsdPpU6fwwvVVPGEeQHPdBjbmBZBx57iHOfp8RRfv3T2KqcLN67zTZoqevBgTkuWHtrvo4bHJUTy7Wu0wlNCVpQ+tuTvyh86/c8A6x9x7Kd8IZp//3IA501vIhYr9CVq9P8Y0BJZQUiiOyf7RZVphrKMYPXpNAVbYSecq/zeLpykrer4GzDcTPDgG3Ds6ihZG8VR9GQv+OuLUxIiTiC/OcHqlbSOKCZJJBJjF2IMdlkFCxhHlP2owkj5Svr8Z1WBZieiH24aVQTjUi7HLnaMjaEY11HnPWF0QTkIZVQJIXEveIzuOnc01r+8wJUOJAnFpQI2eh0ZENsawkxwN0wCNtCZgED3BFlog12LZKqIeNTNgTHdswpZI5pqsA3jCc7HS9iXhrME6jLmnC648s2xJzTrCnNJMmUvZClXh8VNyRw2BYBeVnOX3CHPhqNgTTGkggmnyABH+rCI4jk0CvU7kKp2SSZYzsmOOAo7toOgxdxAjGgmxvlrF0vwyRicqEm8VPE9iGjd/P2UFl56rkOM1eXPcHklSbfmc0dvd+FxivuXNyADtZMOYZmhDG9rQ3ni80Gq1JBbQ0pQ7AQurQYjPXV+SFZS+g35Gk93uE5fncfdYZQuj/M2M782C7/l9svZfu3ZNWAtvxPLBcc4UXAHaMLlMv4eAXf737pnxDhtKP1iFspdaYrTz12yJqmXge+338nO/f3kNn7m6jvvGy/jStbr4VeMFW+R3VKwC+EjxG2dXYRoepksHsCt28MKVDfzO+TVUmceXGk0kgAeeR6a9CTig+8Jt0F2Sf3OMeHRsyThB68an3bW0A3bNcqObG6pGpnx1slIo4IRmqKNPTmAEZV9ZrH3+hRfxhWoBT29MIn12HgbmMebZuKPsoWSZePfBcXzw6FRnHm/GKH3zHZlsEq9FHUv+mfcfxROvLeDCYk38cw6LAA6zqFjQ1fFqehsLhuci5Xd1nepm7UYfZd0BZIAwM/YWFimyxm4d3OZrQ6USjLghtS3Gszx/zbY6ppGSKyz3nTnP1BDIxlEqeVhoW8Kc4VmpyDERQPTCi9dw9eoGPvTIbnzPkSmcurSB35iv4euXN2ESyJFJkJIhvtHMFBYcxbZC8BHrJXyftQm6j0mSNSwIC0yK5ZqPdZnDFONlBarntcZoJSTzykwR7v3A019bU4xElingk5gxZpQKAGT37hKuXq3D57FZNgKfMRkBKwr85NkE7XT3y/j/+DUl86TmIsVrtTWcb1QF2MGJ4fNkrlDCXKWMw7vaePVSBNuKhbHedGwYPFQrhVd2MTJaRLHkoFVryzWtr33up1B0MDFTkfN3dLok17jdihQ7aJ8VPaAieAQVezLuqoaRgNimHILy1dhXwzbONjbx6HivNNCI4yFtqftnxi2jlZCJKUIzjnBXeQoHiuNY8jewEm1ipFDGZGlMjr0RthEEPsLNNlp+A1eMGsqWm9VoPLTSEO3seaRlytSlq8a5EjRwO9rtxKzSfBNMkW/HeMb+447a5UkhSpfoS3a+8XWjguFiWx6VPTSx6jukvVrbNoH8VnYharANHTiCbYh8GmRrDR//8cXruLjSxH17RvBz33MX/sHnz2KppujmyNzxE+/ch4/dv2uL9rxOPHz1tesCbiHisEaWjA7Xm06U5ZwNU2kYbsQufv3VdXK7wc/mbcxtI1lbQ7vVln6vsVFPFpOXzy/hY3/v4whCReNV8mxJCFNPLopipDZTZoaSXCGwYcRGnRRa9Ag62Vkmk5jgybjE8qaztNpJ0OwqGbCBEikIA93ahNQrEuKrmDLYGbmwjJfWVvBb5208fXlDjoYLPBf1U/NVnFmsoVR08f8+fQl/7j2H8LM/+IB8l3//V188j6+cWcFIwcYPP7YPP/HeQzKXN7L750bwz37oPvz21xfw6kIN02UXV1ab+Oq59W6yNff5LtmN+r/4LW8QTdw/dXRAF6u+XBP5SzY/zZquj+el4tkCyCBYJWBRHsB4wZI5Y4epcjbVMSgpGmC9QfYV1eWnNMcNgpKFHs0rlnE9TkUyqRoCrTBFWigClgOnVkVKB9vNEof9Ok6ZNA8743qy9nSg2xGWG21x2EyLABE6SyZGDQe1VoA4ihDUW5jwTBTLNlbqIWJSrUnWVG1P7n3PxVjJoSeLOh2tJIGj98GEaa4FUoO82BGs7eXFOl5eaGB3hfR56trYaEd4aaGOh/eP4Du//Qg+/0dnsLbRRotcbU7u+rUdpKURGPUq7HYDIeVwNP1bGClWlQwUNTni4vpGSwBDnBoOS4ZppKiUbZTKDs5eamHv/hKWVlrYaIQojFUwPdFdAJnY5jm6Ug+2gFX2Fcew5NcFsFK0OAYmyhPs8kaxtzghx11P6pIkJgKZRoevZBXRLvrYd2QfWnEbq/4qAqKFwxoSnyAgG6mnr25NXqgc8T6g/m1jt5MT9Ga7EIc2tKEN7Y+7vVkZoO3WDd/3hZaTyd2dZH/y9tmXr0g+K5/AZVKKINU/evXaNxyskgfb3H333dKBuB0o52vXq/jM6RXxA95/eBJ/8sE5fPz4IpoBk7IG9o0X8L9/913ihw6Ktchex46lUc+WZCsTjB1/WpK93eSq/pefe/YiYz3lb9QbofjF+2bKqBF1YSp/z3NstKMUnzizii9e2UQ7ZoxFWUhglWLOGeuJ9nH5f05Z2TGF8UL5Mx3EyY7yp/KxDFjf59oqEEiOUcViyxnPd9Y5+eyzz4kO+h+Zc2jEMYQB2YCM4eWVFs44SrryC9c38N/ftwdHx4oy988s1fCl+U2s+SH2Vzx8eO8E7hq/OZr1j+6Zwp6Sh6+v19GIYuwtevj8wua2ydhM1KVzIoRt5YY55pu7v5iYJKuKziXTesMGxY4o1wLlTAkypxRpDgdecSwBN/Hv+etFuDiMFPWIXWzZtZUNnP/3YwOvrCY4ubiKyFlHLPczuz9dzBQM7K8ojhDK/djZtaLy8+wcZFeh6g6UEoZmODXJdkL/nAwlEQx2HvK6pjwvr7EMlkWWQ3YVHiwXcK7mC3yDII6AxYnYQMECpjwbE54lMV+LABaTSU4bJcvFtcZW9hJe1SLZk2vkaaUNAapoeR0BdCGUcZXNMsbtUNgS1/wAa1nhg+eEMf1aoCAle0pkTwFW276AwvgzOzfLWnrY4LZZWBnclEQoCz9AuSXuP2QXoUGwmNeJP9Q5IZye/5G5sZtHEd6W1EZkMFeiACo6crVSBWxJDR59VpnRkQlZZGwTs7tngIjsLT4idoRGIVpBEy0f8ApeDrTS/7S5PY3P2J3AhW8nY2GLNoxphja0oQ3tG2+MFxi7DLKlpSVpxN21a5dIz9woV3a21hAfwc3lvEUenv6DHwr4Yxcrvd9A8D2bkVmj4TZ0p/kgC5MYZ2rLWPbrGLUL+LEju/GfLixhoUkmc8Ww8o7pcXzfgdnOd/pjmnPVloCIKUNSlziCfqsCUNAyZQ71Xfk9xmorxR9sbnbeaMdAwTJRsg1hJuE2BPhjmVjxI/zDl66J+ryqG6mmS84Oc/RpYgrbnxSnDbL/KX8g77+HrOUkqQADOn/si4ulGTprYKW0on6fuemREU9iLr7XqAciCcRPENywulnDU089hTPeHJ7aJONELPFLK0iw2AiwUPPR2vTxyROLePeBCfxf33+31GFW6gF+9fmr+HwWT37krhn82XfsxWRpcD0tH7/PTZTwy3/p2/EbXz2Pr55alAaG4lgFHz+ha4I5j46/uw7StNitQ7GRtNXL7rmtaUT6IBdR4ngT63VfnW/6YJ1al27i7gJk2Ehcnp5EtLGBVitAGJMBxECl6GCsXEA7bCIUlhX1Fcq58Ju+U0C9SR9ZtRdwXwxrWBOorjXx7DMX8dVnLmEjoqyM8pVtx8TcrjIKRTer2akYTpha9OA1IJ5SUnHOL7coqeNIfF3mhRcYsCqGgFyKtiG1JF5/3NfsZBlH9oS4stREbJoC7Of2eBxzcxXs2l1B2bOwNr+BTT8VFvnpqSKut9tYXWnIvZM/x8wjTFW6zwuylRCowhhn3FJ/ZyMCGUwOlMr4rvsD1Js1XFmJcGnBhx+wYdoQVhrfj3H9Wg17949i/+EpJiCwudYUVhXHszEyOSJAnaJnY7LooBokUBw8rB1l15wwORqYHDGxVAWOhAnqzRTXojpY+jo4SVbIDGyTxWLzWe0nb3sKFVxubgpjCms0SqjIwIxXxtGKakZdCymRyiYG5cvz2ig7BSRmgj3ju7AXNk5uXkMr9LEeNBG1qnJOQspesU6b1Y41x2m32nd7WT9pw9vdGt9iNZo/1jJA7KQgFdvGxsaOsj+vZyz9OsdvZnw3ewORupka44PANnz/iTOr+PTxRXz9ehWnlurixMlYXwTGizb+8Q/dj3LBQTOM8fCeUUyVuwuzvjHzjhC3X22qhTDPOiLHIYm07h9Y5DfolGlJElnR1CK7YXog4kT7TWs1dt2ph9nSegNFz8HUqLrZiIaUr5Oxws7AQEw8xTGqa9VOZlGYFwyKSfPNLGm1nWObz+hq+RR9nBqJynPSIgowBQpF6b1aX1vFHd/5ED77iS93ABVtsoBk88p/2T3HIfzakxfx0fvnMD3i4Uf/5dNYqweyOF9Lgf/9kyfw9LlV/PKff8e2tHR54NOR6RL+1nfegfVmiH/2xAV8/FKG9NS5sc53tm5H06txGrvnbesHbwbkKwj1iA/u/r/np1Q5MEzgVgloykAoGp1bbaeYIZpWtLo7hyGMMZJcl8Fk72kwsmkKNV0tSEGANY+haClmEznTjo2kWILZbHTQ2pLdpyPff5zCsJIVAzTVnO9LAjGlM5YBoXhyPduUhbdN6vJ2A0U64lEKn4J8pOJTekAKCBIESCenMFEpo9VIZLxFy4ZjEYHMJLApMkhEA8s8+BFGCzY+dEx1/dJOLDekmKGBKjSi3Oc3mlidT/GOmVEc+JFH8LtfuojNk6uIMjYZVVkhitpC6rhI9cnmta0dVdeFGarzQbT8ek3pGrIrWH/GtolATuT+aVUb+Oxvr6K2ESCODdhMqL7jMB57uNuprTTlt16/404RD47N4UJjDdWoLdfD/uI4jpSnpcszEVae7YF9PKYZdwZlu4xm3BSqbr54jq4HK4q+m8erzqhovNNG7RsX595udjvRy2nU7hvtQhza0IY2tKG9cdPJ2n6pBTKREKgyMTGBRx555KaLhfSttnP7Bq3tbyVtNrvcmZhmAXEQ2IbMhp86tYznrmzg5WtVrDSCTu7u11+6jkf3juHf/akHcXXDx4hn4eG9Yz3H0J/YJXiY3XikxlbAghyjCRPc1GvPAViq7RDtFhNtveOm73pluYGySKgaQsNbJW1v9j2/HmBXxRPfjzGSgB/STPaSdfRMVpJ/q2XfU+NTbH03nu8cCJrb6aqz6kPp7DOJDLi2Al6kUQh3pIh6ZS+a59fkszx+dnDqY6Z8eYWJ7yDGr55Zws88dgCfvLSKT11Z60hdrq1GeG29iZ+8ezcenb6xb8Ak2kMTI/I6U23h01fXlCRSJwrc2QgXIHZDxZxdPg4dUcpsZI0UWmlmC9dGNmU+45m+2D3PUqNjVG6V/zaygWowCt8hGL+/ISDr+RSwSoan7knYk5GkzdCBCBDTQhEJCoRCGOwSBBZaDop2C0VbfU+knDIWGn1F6vHlgTZhYsI1E5RsJaWjGF+SHOzCEKCKuv4SjNgGdhXZiEOQijrOsg3sLTPhGMEzHez3iogdJfJO9hRSb5/YDNGk5ClIK29KLMHr4b6RcXj6GSX8JREs4WXRKWmeOwsBfJHcmXImUbJKmG9clbF1Ol2ze68eUn40QisKROKIDDAStqcRVvwUM8VSlghVwj79mfxMLV5iukbSFJZHladI4ZguJp1JuMLPvnMux07VZ2KDESdjfwJVXFjpzbENScIZBdi2C8/mQ4XxbiKSQRIL5WiVdI5DndzbL7nLZ/92TVNvx8QujczKQxva0IY2tG9+jYZ+OhuJr1y5gvvuuw979twcaH471hTtEeQldd7M+G7WyMROVpjtwDZL7RrOEqDSrmPZJ7C3G59YMPG9+w+ibM+hFkbYWyoIm9xOsZaw5JPdRLlrGWFb2vVhs7/RK+K3gjBFMzD7vFZKOiYCWhECe9OAzw1ksVM7c5AnHCXrIu9pcHbGgqEA3qo+wTw7vSSDEpItApVT2Blzd6+pnLA0w5JFT0DLqcikjI0XBfAgzcpxgiiM5P3RMQVcWRMp1xTt6hoe+MCD+KWvLotPys+zZsFmWJkKAhzYIBrEeObyOj5xfBEfOTaDn/yPL+PiWrPj+/3y05fxxXOr+JU//RBGb4JRctd4Ef/D992H//aj9+CXnrqCX/zSxQ5ZnpYp2qJdqgMN+kps5g3IYZMLLjoAky4LfE8T9lZCGsUoShfVyYAq2niN6FpA9vly0UG76Qtro+EQQKNARq3YwGiiZHsY2+hxSuxRLiOwM19YF3aEVRFIGw00W22cWkxhFgoYmRqFzfpHnCqgxkIDe/cYIncj17c0xaSq5pCrQfEQTQZ4PVNkwXJM6bslc2gUpXBZ7jOBgm1IbSimzKpl4dCBCSy1EpEaCgIFdpqaKWNm94gAmg7tKYJYkdWwAKptebaDESfFU6sNifEJFOFY2IROltaPZWoTtJWghTBJMO50ASyUQk2SANdrCfaVZvAXPlDA7z63jssLvjC7KLCVupb9IMbaagvmZAHNdgKr4AnIh3H7xmZbajDlkiv3DvMSZIQqFKyOLJf0RpuGYqFJEnzhxQgbNc4ZG62BpQMmPnjvWKcxWuSXBjzzCFB5bHwOp+urWA1bEifOFSo4VplCpXN+E4lztjzrpU6X4EBxAhW7gJWghiAJUQ1raId1tHxGYny+pBJjyrFn8euMe/v52TpndLs0FTeGYJXb0/odDc1EQnTre9/73tcVVO8tTuFk9bLc2GZf4X9vUWl/v9nx3YyRfuy1114TR+jRRx9FVBjBvzu+iFeYMHVMfPu+MTx3Yhm/8vQVkfrQjLZCr5slQjZaEf7m77yGP/wr34bpHHJQG4/lStvCLzx7VZyNdx8Yx1jZk0WfABI6faQaVi1u6dZjYMdSKUMQZ3MkIAA9knJF0KQ6SSyuFLvFBADC7qNYpIE8rkhNRSEti5yZW3hz2w5JlwdS5hkAKYi1c6Uztch+zz9wAj8DtuTOmwAVxENT2263kHoFYdv4rnc/iF/60hU0mMHVK35fFrTaaEsBwCu4+NzxBaw2Q6zWA4yV7I4jTQaPPzq5jC+dWsYH7+mipHcystT85K++LEl6DQqSxG52He5kXDAom6IQgjxXXWeBX9Xj4tT0n0ZxYGRKUvikM+uwWGxN8OZlF+nIiKMz4DjI5pN/S05p/qN9X6PGYJ5FRlC+UMw7pLBjl6PheWjX6jDbAWzPgyn3da92Jhd36VDNMtgEp8h7jo3Uz2Ss6KRT21CQoXSAYphxjIga5JEhTD9oh13UMreRLWZOu4mZ0iTOroUSaDCpG4YxDF63HhDCxnorFOd/oujgf/veY8KU0zlPfeeS5/mV167i2Vev4kUD2DXi4p6DU9hT9HC64AjloxxX5uXJKFw6Ogq8ImhzPZ8MAmwbpplgg1qRRoqWr6geeT8TQBIxWR2naDYDxJttuAZwx9QYgtTApbUGnvjqGVTKHu4+tlvowfkMOCoFmq027ZYx5ZTgJ5FcX26GzpXzbZgomkXU4qpQeOtjjrPEt2cqNqOyVZZXG015lewi1uMq6oLw1mUN9W+BuvP1NuaD65gYn0ShoPTp3+52OyF2tSP0Rinmhja0oQ1taG/cpFPFMCQGYOxC/+zcuXO4cOEC7rrrLqHpfD1xyA+88xD+/R+dEl9HA6e1ZvVHHznwhsb4RmizGZe99NJLGB0dle7Dr1zcxG/+wcuYr/q4d3cF33vvLvyTJy/h4npLAOJ5U5jhFC9e28BvvryAn/7Q0YH7IHPK5y+18MmlM5guO/iee2azIjslTZTvxUSUzikqLkCttqiYTzQwvcfnFTVRJtDICGn15Bkl18fj80PM2GRyUDrOWl5IueKDARoEwShGQC3LOnjuutKcTA5tfT8PvqDFiQHTSjBXdHH07sP4109fzsAiBCL0fpe/bwSJsHUsNHycWG/is1fXO4wier8EcfzOhRU8NFm5aV14AlV+6cxCh3VRA9rzY93OpI6fhWuaeUUDSpSUvSFMIvqz/fPRYSLJAT+23VcK8YVJiJOlVXver0WKpST/Z+lTM3u3q8ehaMLzEQ3QjM1MiieGlSYiebvWtjFXbktnWzV0lCRSBzyjtk0h3Pyc2fT+5fgUm4jaX1ekSK45CYIYn7A0kmCqQLZTCy2Cbti9KqGNom1WHZXs/GPHrGYyAd49Y+Gp5UiKGor0hYD0Mt4/o5hZ80edny3uk34/5YHqqMM2bJgpfXVLZI6YiNbzwnuS88SkLe9LJ5PmVQUAUvsTyBKKVKgwq0j2QItJqZhIS/9EKRO/CjjjwRF2lyAJsBqsYpe3S7Yr8Yf8txXox206qZeBVvJXmz7MQT48J4YnI+sMFmocCl+ZMBx1DnhfR8IT3ntZkXkmaIWor1fhWJ4A926XZOntxBap45nbKQYb2tCGNrRvVfZ7MkOyRsN15EayP/12bLQiLCB+rHxWXaOhn7+vXMAUq9Ov094I+z33efbsWVy8eFFAKjNzu3Cyfg3XWmuyzO8rTQOphadXLwkzQ9637/jpSPDM2mX8F3tHcMfI6MD9tG0bT2+sw2y3sK9URsW2VB45F4NYhvJyo0Tg0x00BHP67ZzEoGZA0I6Iqs0oedLeg8vAxMx5Z5L2qnKjvqrK0wOI7dlkWmLMynhJ+amDYp8kC0LSTBqlVPZ6KGFU8d9GmEnYl8ouqlUfaWTg/Q8ewatNBwvMcesSTV9QFBnMxSv73JkVbLYiXFxtCgOnjl1Y5zq70sDvfH0BP/7O/bhZ+zufPIVPvLIoPnNnQoy+zuL+QI6/ex5SsvojA5qQFZ0+CVlXyMzIvzP2T8KtMYgEPSZMMlpwbuUA+lgGdXEnF7TSRwta9e7c6jx8CizVCGLpAmPY5JuOTXSY5NW49QlL4G9sSj1FA07iRhONKMTkgd3STMqal8gFNcNOQ3E7JzMk+8iGQFUGXeMiEImgJA7ddW255oSMhj21WSM06xY83MgCCLtoAjhwx4RsPw4TuJ4Fz2OkpGKvMdvActuBRyCJQTnVBLv2jeHosWmcO7uKjWYo1zwZcv7W996NRw91yQx0s0neLm5EeHExQRS1Me4m2F0qYcIhY2sTAqHSICEC3C1DZJBWVptyHIWC3Tl+1orWN3zMTpew7scCYmENjfcN70PFS6lyEK0AaNUDkExy30hJGByv1lt49nwdRdfE++4aFaYmNp4cKA1+fo46ngBWKO1EIwtLPnc0ZpexEdUVy1H2d8ZRqjZDBhdgzCnKay3YRCNZx7QzgXpaxXLA67RboZFLlE3btVWcbVmYm9wlAPE3C3T8Rph+9t8uMUJjCFa5/TXeL126hDNnzuDIkSM4fPjw675RJtwRHBvZh1O1q5mMh6KELdkF3D928BvShciuQzpyjuOI7M9LawF+/qlzoqUtD4QkwaurDSwsNBQdttlFvBKcwMVYOwsb7QCfPbmMP/34vp59cK7+6dOX8RsLZZhLS/K333hlAWWDesymOBM+HRS30M3WSgaurRZETa1LqF/2kN7S3pa78UVOpY/wZHmzKdvpOUeaCUV+7nMeuc/OBrjIZmCTPlBLRxpFsnDZgt7bjJVBO3ODiWM8fnBG+sN+/StndXqzs3h0x6BWQ9EzrEf4zIuXseqnomOYR3xTBqcdhvjquZUtYJVnz6/iH/7+a3j2/BpGiw5+9F378Vc+fCe+cHpFgCqkNxT5lq7v1sNSMSifrXUeuRjm/SRJrvM47ewzmaKMOhfKydfJ+f4k9nbMGLIAOybqAugZbCyG8FrkrolcZVqrEWrndcD4s3/zna9ES3ueQuZ2aM6ZlA3pDPUlymShz5whMIgx0ORqT6QqNQpdR8ZBvJPomLM4IIhwQ3T8uF3up1i0JbGeTd6WcVpxiEd3F/HqhVVxGG3pmmSgAySNNlzHwo++4yge3j+G7zg6uQWxfWyqiBMrDen2JRX/6XOLeOali0KnuG9uVDTcnz2xgLRSEb/XIcgmiRHSockmiDJHlEOiw8d7nQxEstZmTqphWnjX0Rk8dXoBy2lbzhUdIkm9Zt2RFjvjUhPH5tiZzK5PYO9UGZeXanj65Suo7JuSOXxsuoQ7twGryBRJ0j3qAapoG7PH0E7baCdtWKmSCVJ/H4dLiaOcsUOT42OXZsG20UpMhGn3mcn0b9kqoFgoYmVjDSdPnEKxWBTGLL7Gx8fftrTU/R3yb3fj+vOtRDE3tKENbWjfSHszAbqw5GUxTV72513vepcAPV6v/Y0feAhfeW0e5xcVCFqSIoaBn/zw3Xj8aK/O8VsBwM/LsR49ehR79x/AX//t4/j9VxcV9bVl4MR8Fb/1tetwi47S486BqDnmSANWUkNkgf7q+w51pH+0Ucv8L37yKq7XQtjWNfn+v/jKJeyaLcMq2IiSBCHBu7mwgv4Tu7nU/hTYeev4cz/zbbKh6HJ27r12lGC1lTHhafC0gEu6PrbSZ89+zPxVDVK5kcRsFnrsMM85zH4GLvi+I3P4T+fXhL0i+9QWIIYGkbDLkhihT1xaRztOMJLNixq2Ac8CVtohltoh5nLU2Ty+T19ex+evbaIaxthfcfH9+8bw4GQJfzi/joCMmYYqLqjxDWgX3OZ4OGoNKNLf6Mx7dj10uglznXvdLfciSbZTjdUsN1ludetYcj0OnBVSU/s5Rsk8DbiEkznQSXfcBmohMCnxehZzwUTB4jVCcFP/cSp/3bVJta7YPE0jkTH4Ig1EamfVAZen2GbOIgfn6IyBceCIBD29x0b5myAkGbViKOE1QGp4HtOH5kyst10UjEnMegXsK/YmHwn64Iv+O310DrwabyJIfFjMJcAVgIif1DrJfIk79fFngC4CUghi4XWiRq7uBR6/T//ZNVEyR7CZsBCk42B1X5GCm2AdybvDhJPFFtw7Nx6mIRpJHUWrSLEfFFHeliVXM7h0ATFdk2xAQrrPTA4o/44AVPqKC52uj8HXFN9zLAflSoqTx8+iXm8IYGVqakrYs+iDv10TvbcTWyTjGYJV3q5zObShDW1o38qWjxe07M/u3btFBvT15sZKtoUfPDCH/3TxujDJS6GU8o22hR86uOcb0lBMhkiyqTAue/e7343QM/DJ68+jlQSZP21ioVWTYm4gYBE1JoJHCNgVeVBhODTlGM7VV7GrsJWx8PnVFTxZKsCoVWHUa3gGyyiYtjDbhQl9qQRFWwEIoP34iEwXBMlmzHw69NgGsKLZWXoA79mHGxEZUHr9dL5PJgjFNKjZ9zPQMz/fqfVof7T3mDoNqVlcVCy6qhEzY3HU+BYCVqJQjYv7IvPGjGvh/Xfvxn/3+6dybCRbzw/HLIwvtolzGy2sNVVclgfZKylK4OmL61vAKpc3Wvil56/gycsb8p0PHprAjz88h5Waj08dX1J4DgKSjW5NIx8DJIOuJQkeSOfuMbHfnWTbhpHEMJqEYUA14bJJNT9xzG2zQSR/Ilnn4gT17MPsdCPbBQ++nzGvDzCCHESyyDDgFFwUJiZQFe3TPj+Wf/LbUnPg71LPlHOcCvO7v1lHMlLJ5GgVAyXLgrwWBmF2WCsrFR0ZKhso1DWqKDTJdC8gJ5nPLluQ1D+y+IiN4hLhEBhVdMDiRf6O59COVTxcr0XC3JgYCRr1EK12jD2HprD30AQOJ8D9kyV84O5Z7B5XoAxtU25B2EYIMCOjymIjxnPXA4n35oq2PH8u1QIsVxVYQ7GpqiYYYbPkTi2gVkskdjNzMl2UAAqCWMAsB0c9tIIY1+sBCgStaIZX6aUxEIUpjNjAgbESigQ3UY6q4uFatY0XLtZx9IAtNS02EBwpb58XkmdQqpqrZWA5m/HGsRbWUIuawoivgFAxppxRjDu9NYBG3OrkY2yTNZ8EgYDj1LjZOFLms821cb2+jCvPXYbrOJ0aDWOatysbo372305glV27+ptGbl97e1buBtibDSJZpKTTwK69arWKxx9/XG6MN2oPjB3GbGEclxtLglyb9kZxqLwbnvX6ELt8cF9r1fFiaxMrnoHS+jLuGZ2Eu4NzNj8/L/JFBw4cwJ133onnlxr4Ry8pp4z30WgpFT0zPiImRssw0giXrzbkPRbK1X6zDixbJUFfvLqJH3tsb888f+7MqoBT0hzVMlGM67BQOTCH+mpddf0RkacRpFxsvaKSRNGrEIElnSKxSoR11Mcpm5L3ooSqNwNJEF3tR5lMS24C5KGRA6D0TGjGfU15ljxVWt4Etpnxbu8kAt9nTHj9wo89hH/26eOyEJdsUzoJ0+2ylpmxAMB5ckseKoXuw13RrZG+rPdcP3lmGX/in31FWGU4U80gwj/93Bm8eHEd9x6aEudtvR12dsFEvu6q1LsfZNJ11kEy95rQ4wk2p7erUhcDXq/pfdGB6E/GqYKC+lOFCUbXElYP0q3Jd42dk+56fHqTZEBRRClMFCpnwBkfG6RNJNdaSgBTEiExVEebJZ2F/JPa/1jJFQeBAA4mwYuuhRGrgPXNBBMVd4v0lRxTRlUoTnOa4s7ZooyT7M2h7QjQRDn7NuIkxkfunMS7j3alf/L2yO4RnFhu4vRaU2j1nnv1qtzbh3ePCvsRnSQCnU4v1eGYRbRME2Vhl4kl2Z+1+Mq25DdSyHmK0s4XMFCKH/uOI/iZP/EQvu8fLMvcky6OwVE7Q6kTJPPQ3ASuLm4IUEXPN/Xr22UXlh/iA7tHsL/sYH/ZHUi7SYflUnMNV9obqpvRMDHjVnBnZQZeBlzxzAJ2Obuly1IAK4aFilVBxRwZ8MxXcxilERoR5Yu6zr7+ZAs+LM/G4aMHcXj/EZF4W1tbE3AiNWOZ6NWOEWVs3i7JyduJWUU6qIfMKkMb2tCG9k0zJk+5tpFRhcXL1yP702+7J0r41P/6ffh/v3wGT59axGjRxcfedRgferA3JrgZI0D54y9ew6ee28T0aIQ/8/4C3nWH0j8eZAR1M55ZX18XOdbRsXH8hV9/GZ87uawYICICclSjAc11A+zeXc6ognv9b5UfS7He8HFmpYFH9nYlhPj9v/17JzBfDyWeYSKS/ilZJy9eq2Lv3Igk58SHy+hzZXyxApMwVhLbgTFEg0vo+8rPWk60MwYCPpJckpZMLb0+spTp5aA0e4QCzmv/YBBgRXejSVr+Jv11buHwSAEPTJbxb15bFkYPHv8gv1sw/3qOAby23hLwBEEU/F5+jiWx2TdHv3RyEV9ZqHYO81zVxz89sYy/cGwKF+u+JCRbOoGdAT66o8yAAT2bVL90CWm2DlqipwyQowaXfTMHXOm+kQP5DwCs6D36Enxsf/55ikZsU6SjOA9MZg4aXf73fhVv7iLMnUTbjNGMDNQjfW/3joFJyyBivKK+K4lggtlEwkoBKszsPw2PIfhEg7/JcNi5i7a5dky2RUq8muJKPcWFWiSJU1rBAu4bS/HY2OB7XBLGKKOR1oTJhP57kAbCpkLQCPcvMj1milHHxopPinjVVcncCudCXWIqQc05ZTLa0bqfINuKjRl7D5I0RjUHI9GgElU2YAJbSSB1z6kB2yBbDZlhFEiF4BnVOrHVGGlGBnMWUYdXhSwrZpqTOCJYhUl5M+mCbzImlUGmpYv0/ZubOXVfewZGvVE8/o7H0Ki35JnPF1m0uAYwj6VjGo9FjreJ3U4xzTCeGdrQhja0b64MUBiGOHHiBK5duyayP3Nzc294e++YmcDuUgHPLq9jIyB4uoB3z0xg0nv9xdCNoInTzXmsTVs4vnEFd4zsQtHafjuMZdhMzAY5NhPXkjb+cPFlyYPSzV1pu6gFjipVGPR7QvGl6fsXCCzRrhibEQ02kwKr/qbyU3QTsMgHNfH7V69okhPx+wi4b8QhJkqUFiTDCkG6bLjsAk9KDvO82scx4Fgp/KhbVM4bx0fJQolrEm4/Aw5kxphB8vyZccmndIzOk3fT7+oHNhoosvow62HWygSZ/5TFPGRMYYGYLJWMo7qM/L34E6kPMe/N2CVO8TM/cA9eXmxInFWyDDT19zpfyBgyEw2MZ5E9QaMZwPK6jJh5I0Aib/M1H3/xd49jM4dc/8SpFTx/vYbvOTAuzPECohfGcjKC6LiK4OpEFb77Ay3NXlIsImX9KquHaUsJFHBdGGGoWFN0rC8soCzSWdvUumwG0QPeU/FaiwzxfaZZP/mh4tQkRkquNPOy2ULAL517PXcMZH+R4EkDVZTMKcfXrDfhlsud+NBkvacabBurUgiC17ohYCtD6pZhmIgEFC+jEdcSYIhrKEAUY50xh025KcoSf219Fimmze6ID5dc/JHREIbWc2fWsbbelridsf/YWAE/9l134PvvGFyjmfVK2F+s4HKrJn7/ayuM0VLsKlkY91wZz96Kg6ZfQLngYKXuo1JwEAYJms1IAPjCbZSkIlHEcY+WHblW/DBFYhl4cHcZf/Od+/Dzz1+TeFoAYCaBZgpkxX0cKBdxrZ10gCq0kuVgpsjG7wiHvTEcHi9jrlAeKH3G87HoV3GptYp2HMhcjzslHCnNomyrWIISsHdV9mHJ38B6WJdrg0AVglhY08kbf5dmhiQUphY2TrCBRQsK8wolLs9yPYzuKuKew4+gUa1LPEMSiePHj0tdRgNX+Px8u8QQOp55u9SM/rjFNLcNWOXNGlGuROsyqUvn4c2it3jB7i5MyuvN2JMr83hqZUEWzsQ18Zn5y3hxfRl/8sCdKGv2j9zNcvLkSVy/fh0PPfQQZmdncb7axi+8Ng/KizE3MlZUjBC678d1Ujxw35hoBG5Wu3Rb+fuNP3/m1DIOfPkC/of334F2GOP/99kz+N3TyzDVkwYJAQHyoFcLWGmiIpprivuXO8zgrbJBtpWV6G0IN1dar8sC3JO05YfIdFNjN5VCk1rlomwjrte7LBnyoGLG5nWCJjKNNMWdnXNttDwQt5uHFGv6s0EwT5rr4uEDk5gZ8VBrKaDIRNFC2o7QzPsBWmwvZwQSMIFPXcB1x8k66hS61LMtfPT+3fK5hY0Wzi/V8DO/84ro95G9RhJghqJg/srpFeyaLAuVWl52UFCa2ThJc9avvZ4/z9qJGGR0qAxyLveZLhK8HiOAhueYjZcEWvQ7DJ2fc0hmzzFRo2C6Ti/mGx4H4ZKyf9X2laOd+L6iLMxAWYO+LI6YZYlTz7lKDFI+AyNGhEpFIVn3z4zif/5T7xTq6QNTFfz+M2fxq58/qaiwbUv5hbnzroFHtNmpCl5b9kWSKDUyOsZsDNLtadn47KnVbcEqZdfCn35gF15erOP4fBVPJgkOTZVxcEyheWkF10bBSPGRY5P47a8vYa2VSVJlDEBKsimj8c7pQfLvx/aN4+/9iUfl+jqyexTVVoimHwqQpeiYKLo2RsoF3H9QgVV4zAS0yPgzmrp33bkL79u1M7PGldYGTtQXFaV+lj6uRz6iJMZDY90iGOV+PPPG3dtMIkcIECYKrKLOX7cz1GGwm8bYDGsoWUVhnZqZmZEXjWBFnehlFzctn+glC8s3y243ZpVmsylO5dCGNrShDe0bawrkEOPUqVNCL71v3743HUSPlz38pe++X15v1JZrPn70Xz6FU/M1YXMzzRY+/uoa/tpHjuFvfPTYls/XajVJ6rLIyrjMsh38/U+dwmdeW1RseZLM6e1A4+8LC3VMz5S3BWYzefpTnzyBf/6D9+Ou2QpOLdfxD/7oHJ68sJ7RWiu/WTFjqu9s1HxhzRPePQ1O6SRaFSMh/yasNuzuynyqvAk1tWYwjJiUTOA4Fhy3S61r9ocKeaDKNqwe4uLKh01JpvX45Jmf93rddIZ2H9gzJox6TDgzwTfm2aLXHfc3++XB5qJ1baBGfW0/la5NNTJ1KHeNFTFdIAAgxeW6jyt1H19dZFJPAYT0fHKfv31pQ7YtEp6Zl0hPWk+tdGMJMWFOs102sCNmpM96J0azkWz9/jYtmJpRhwlCdvDt8C16cNrv1nM3QAV121HqJg7OjRy7kWLCDdGIRFCos78uhEcZYScqBkmF/YaDHXVijGRAENqYNY5xe0w+Qymbq+FFRFQUHzgXvcdeDz2catXQDCOsB4BjpgJSoXF/r24EOFr0Me4OBku4BkH2Jvy0LbI//Jl/k2S2njvDxO4iQf4mlvxqNm9M6rLTmBT+qmlGjlcSoaoZgPHcHm8ORbOEdtISthRGBiq6IwNsLLGBTRCKmcJP2j2pL0mgM6dhVOAJf+R25ydFaLYJV8nXPRAabThpsSMbJDF7asGIb+DPywnkAbCQQUnTAR+Q8F/dE5wrJh/5oswb80GUTWM8w+Iei3x8L88k+c2MKW6nmIaJ3duFjnxoQxva0L7VjKB15pX4DKbsz60otO0vF+X1ZuxiYxlPr5wR0Ec0auFrG5dwsjaP79x1Hybc3jHmmfvZSHzw4EE0Yx9fWj6OMGGNBJhvFtGkVklmUWpgLXAx5kQY9zLWlT73lj9Xo008uXIK75m+W35/eWMRf7RwXbFfZLI7rCN1fBOyThiRSAkKaFmALF1/q+LGIgkURCYKNtAKVc9xL1w2RclTYBlhDTRVfYmsLALIzQrueWy5ipG2ktn3MLiQTd2zRKKF35Vmx1xTaUCgSqSKw8zzal+IB7kFrC9MHWRYiTFmm3h8/zj+4NyqvOUR5MLcr9ZEyhhV/D56RDLuEEDAV60ZCeMHcr78R+5SOeSaH0kTxMdPLKHqRx1Qumw3TXG95uNcra3YMzrnwYAtdRUVzKVBLLI0nZpT3nj+tE88qB5l25lMUD4gu0ExX5hU+v6m2TuTBAXXkXPffavLaijH5iqgijBnZjUpfX0q/M2gK7ZzclRdhiwgWSBE2R3GxD4b0TVAJ99PkB2ykLRYCggVRuq6mx53MeaSUZ11Eht/9uiUxNyUomUTyn88v67Y7LPYqWckOaCKkyR4+cIGTpxcw9JagLYfoViw4XqUIkuxttbC7z4/vy1YhdfrQ+PTmPaKWPSbeDFuYtwFZgqFDiiEnyl6Fn7onXvw7798GfNrZB1RI2A8yztV1cPIHgQ02zE810Tbj7F70sXPfOAwCmRFGfFwqujAj2IBqvCapphRpeTgodkyltdbop7Bpm/kGrh3lwt49+yMNB5vZ6thAyfq19GOySqk7ivWVvw4xCNjBzuNyp7pYn9xVl472ZhdwaJB4EsEP6uvdU1dV5yBehhgzCkJEE3HK7pOr2s0r732mqwJjGP0Z76Z7Ie3E1MkbSgDdJsZHwTUC2RxksXIRx999JZe7ESQteIWXNNF0aLm8s3bYrspQBVJHtGRiFMpIC+3W3hqeR4fnjuwRb+Rx8OkLgPr19ab+MevXEMgizWL/Sqxlze91h29YwQvfX1jC1Alb7/2/DV8/3278CtfvYxfe/YKxqZIiZsBIvrYLIiMVH+gl6R1CrNFq7MiuEQPqOL5ygoMFjcL2Ry1mkg3N+U7ztQE3JmpbkY0TuBfX0BUrQkjBCmidYdlT+ub7LsvYdzhWyarijWAozsFfF+hUgW4YgOBQn92EBI9iWAmpm2Mz0zgJ997UK6dR++Yxn9+5qIk08c8Cy5CbGZYHTov+Rw2FyzScI2aDlZrPurNLssMj/bYrhEcni7hf/wPz+O3n7ssQBSCXzgVTq67S8k2kdRZdXnqhLsginNz4LcCmBwEaeMGdV/uwLyipufGNON6IzttR1QxDQOP7BvFM5c2u12Zmc/Ise+fKGClGaFOXT6ijzXF2Q7b3TKWLEkuHaFhhMQPkVgKsb7dUXRljQjxVA5bXKtio9VC6qh78O7dLu6dtTA1NYPz6wHSQhFepYQq0ddmlC1aXdVIPbd20UM0NoHPnK2p85wasguiqQ29S9OQOSH6uh+xnQesvGf/GN69dxTHXziL8/ObPewlrUA5esuNsNuZKxPcBS4JMjq7NDTyneclbvt46cIK3nnnLL7n4b04u1DD3HhJ6OiqtTrqYYqDMxX8xHfejVOXVnF+gR3SRQGsrFZbKHk2fui9R3Y8NwzszjVWUIv8rHuzCyS/2t7EofIUxp3XF0QquvACmtG66EvqQ+78S61M3gOJL52O/cbn/969e+XFRC8LZXSKFhYWRH6gUCj00NF9IyWDbid993xyd2hDG9rQhvaNMzKEUfaHa8axY8ekcHmrjL7RiasbqLdD3Lt/QrqBXo/948+exsn5miRONGkhGRj+yR+ewUfv34X7ckwnLLAyIXHo0CGR/qH9zd9+Ff/x+WsdUDUBIoMsCBJJdDK5tJ2tNUL8s69cxN//6DH81KdOYbHGInUvA0uPq5sBV0R2R8DWW2U+mMRkcowv+l+MSXRTIJO0jIsIUmk2fEQdWR2yMZsYnyiJv0fAhnbZmOjNsxfqsEYzr2gK7Q59tIQ8/claxTmh8yj8tzcs6u1apBVsA3NlG4/PjKDimCLZQ1BJyTYwQm1xAwhyvnoe405fXaSRCKIXppjuPHIIj8+O4EK1jX97ahHzzQABwdIJkMfBS3cdUqy2Y9w34WI9bHdCu3yCS2F0DIEfdKYk9+aNQvmbw7RoFo4bfQooOzaSKJZjyu+DZlPD26H0TwJbpGz0t3LJ/Ny2tjOR8pGYj0CVIAO89Hcy9h4ZvyN9jakpQBwCiGZLIVqpgbhlwkxNNNpNVEZGUKyUsRS0sB6Q0TJCydZx9VbjtXehZuB6oyoJbTKPM67wUrLqqO6+kpWiFQPnm1U86m4POieDCV9kLWnFzS3nhjEDrxMmMtuRukeYZnDYqJIx5Qj7Jxtk+BwksyI/AwPrfhW7nBl4RgGuWYCftODCE86SRqOJoltExRqFCRsLyXWEaSDgEr5PWdGiUULZ3Bl8TyaaRBhVNEReA4ZSxEYgbDWvzwyksWo/oFLswPnXV5DK+PcYY1DGKZohmF3p7OhmTEMQI+XhvplMkrdTTPOtltgd2tCGNrRvtGnZ+Ndri4uLEgvQKJlzK9cNMrGt+U2R65hwi69rDSQTyrOr50TKnJ5LkkSSB23FAZ5fO4+P7H6g81muv2SIJIBUM/fXwha+sPQyGpGKPdqx2QGq9IQeBEJEFqa8AUztmfHz11qr8qIE41MrV0Rio+uL9HP0Zb6nQfA3/Sn6pF2pFBpBLIlFZgcD44UIjcCEHylnxLZSlFxK0avvBznwrTDtZz+7hgGfyW1hEs/Y4ARXoT5BNha9zx5gt2V2cto8jM51YxgoFGyEBHXESQdc4hVswfbqeEuVatQvSZwgqAX44Qd2Y7zo4N6ZsmKZSQmsN5GGPqqBYtLUQHXlnivfn+yQ/DwbtSODwJ2uszVbcfGewxP45Wev4NdevIYmG7clqW+gmMvf8/thmogsEsEIjGF1CMC4sHPZ2R4My0KrGfZdBEqlwCCDSuekD2qg1l2v+Ytja61Hb3KLc5/NGcfIj737zml88dXrHWkmBd5W29g9WUHNNFBlrC1SNirOzJccOjskYxGBND10OlmZrVyUc0eGlLExryc23nJsnW0SdJFd0SZQKbsMPrHZaMOzDewpmpgJqtgzNoUVH5hfbiKsB2iUXAS26i6gpJauOWWblJj9zJlVnGgGWGuHaPlKgcGxE3hk+aekKoCzCw1cWW9h/8TgOgXB9QdKI/K6OLGK5xYJwu+aboSZX28jYOCUsYMK86UwpZB9kWxAKg/QZON7W70fh8BXzq3jv7h/Fx7dXcELi3VphfBME612S67PsbKL771zCgtrLbxwtYrxhNJfJqp+LNfe992zM1CFdrm5is2wqa7RLNcgbCtBFStBDbsL43g9xibhPd4MzjQZY219zkpszwYkM8K4XREm/byRRILSb3xpBnfGM4xrzp8/LzWZfI3mG8kkeTvFMzQCP4fMKreJEaVF3UMWJe+44w6srq7esmCdFFUXGhex6C8ruiqhTxrDnZUjAlzZyfw4wtn6Ao5vLqDi+IgTB2HmCCiteOBEbb0DVlleXpbkdF6/MYxj/PpZzVqgLMfG3GO86cfG3G0ZMCojHooFRx6Y/+bZK/gEdeGZkM0BVDopssxRaDf83GQkAxabTgZXyQBFEdL19e572QJslUtwd2XoRb0oWya8fXNILoSKwo3SShoJ0oHrZkV5nZntGUP2Gf6NdDN8IOZXby7GcYxiuYCf/aEHMeaZ+Cv/+stCB6ZN9A9HKnALHibHy/jz7zmAH3vHPnnvB99xEP/uiTM4cW1DOVOS9O5qTvYkNz1bOUGZvAqT+BYTnnGEqO3jlVPX8J6f/j0sNQO4jo2ia6IlHZ8KHVnMMYTwqPZNFFH2LAF4iHPRD9YRORtSBSYwcvJChqY9zyOPBph2bvL3SQ9KOvOTSFeWp/7Lf1bGQMeYi49joUIENeVncvPCefiZ7zmG/+e5azixUBfgBhPgR2dKCKIEV9bZwbazcTuzFQerdV8SyDG1FzPAQhyEsIta6ikjIcsGZ8cxwmYLBlHKBPXIiSkjsUnDFuFdh8fwsXfuxukLl/GrH38F56qm6L+3SyNIwwizZgCmB4OskEJKao5dWG3Gp5CYFg6NOSJhVdUZf0MRS/MeHS05wgZD2SOvsvOzgtfh977zMP7J77yIVy6tKOeDFIlxjPLEGL54dgOBdOdp5HamRylMR+KZ5ZxHVRg5fb2KH/9nX8Snfvq78b0P78OV1SY+9/XrWKkH8P0EeydL+B+//z4cnB3B//ZffRv+ySe+hlcvrooDtHe6gh//8D34tnt2pucM4gjrodIvLJCG0Oj+vR77qEft1w1W4RVVQAm1ICts9FmiO1JTJud3Thwz0ctELl+HDx8WBK+WDKKsAsGBo6OjPYnetxJVeztRZtPoRA6ZVYY2tKEN7Y3ZG4lFVlZWJBaYnp6W9elW6vsev7KGv/pLT+LktXXxP0eLDv76DzyI/+Yj99xwrF+7tIZf+8p5/OqTF1VCwlagdH6v5FioBxE+/cqCgFXYoUIWACaoH3744Q7z2edeW8RvvzTfYY7Is54MMmo694NVBPhBpmIC3KMET5xZwb+bKmK1GWCi5GCzFop/Ochc194C2Oa6zJ/7wSGkpbaoNZ0LuvRnGvX2lmQcf99Yb2JsvCh+ocLF5wTMe0AqirlZ/9wrxcmEyVY/gcdM8MeuooO/+/hekfV5aUUBAvT/6LNzukqOiT1lD3/uzlmMZsf8Q4cn8S9eXUA1oEykSlrRHdHNCtr4eyGj8VbNioawrEgowj6AGPh/Ti0LcIPgAyaB7QxIIdrjOXYMHSLeP1HC6Vp7QLK9a2FiwjG7tN2vB42SZ9/r/67AkW7yNuQxEyR9qFzAhXorYxrtgtUPV4p419QInlheRY3AeYJGLAujto11AjBysZqwc5MtRIoN3e07pinfYR677AQo2IzluB3FMMJ7S7Ob5uEyu4qBjKceW9L1ytflhouml+DuchFu6MKv+Xj62nEslB0klAV1TAnPZz0ThyqW0MtTu12dgexaDk1cabCbz0SRmvCk2k4NATI1Igj1NmNffrqZyajeyApGEQWzgGbSEJpvOQJFnoqztQaWfM6diqelq1Lid0WTTyZ7wuf0TGZRDRbCFcT1BA+O3I1JawZrWBJAitDmWyaKRgWj1rgwrVBvfS1aRZwqGSRKjs46u3vo9Qeef0Ox0Kj7Mg+oShDr926e7kdvVDG086C2+apwxMQqmbyTkUmSbLt8Cb17jkmS3d4a3KJjGoLz30q7nToR6/X6t1Rid2hDG9rQ3u5G/5rASgLXCVhn7u1WFQS5Bn59Yx4vrV8TwApXzymvjA/MHsGkt3OjFX3X8/VlnKzOoxGFcDoM7VkDK0ys+FVhIaBcRrValWZiNnBp5n76fy+vn0crUrUSaaTbgW2NOXOOUrVaDnhf8rcxTmxewRLR5GRHcUzUhRUjD3LZ6hRz27mZ6fiPAioxlUwQp320SP8/6cvlA36OCUab8oISWG6K0SxQ0ABjXTOQMVFeNM7YWAQc0gVDeJ4p8i5a9lTAJ1m+moCVoBXihx/aje88MomffeoKmp2agwo4mpttRH4MO0nxPXdN46+8/7C8+8BsBY/vGcXTVzdRT9icaip2xihSzOq5ohZBGIyNyKjOP5HNwvaU9JBXtJFaJv787xzHwmZLENN8vyUxWSqyOGQj18ZtjxZsHJ4q4vRyU66BPEOnHrrt2fBgSHNxd0JNWI6DRPzoHfwmFujpNHJSO9vsRe5zhj1KykSDamOZvGzmPW9GpjSjrtf9TOpTHQcZ5H/qY/fjySt1fPn0Kho+m3QNHJoswrItXFhp9taA6E9SCojN4FnAystu9/QI2mRDX99AYbIC0yJgjB+3pUbbGVbOyEgyOuoJYImsJzwEvx1jcakJZ1cFDxwawTsqMdaWFvHLXz6DVzYs+LDQSExYnoO7Do1LXZMzqcAqqnnaNYHzbMap+Tg07iJNI/ihmrdWO5JGXMcx5d8kSrHSCLYFq+TtsdkyXl1t4nzVl+uJWxTG0oaPz7x4HbVWl42RzcW8dhjHi2SuoxoypFyZsYgu1UP81O+exKhn4/1HJ/FfHJ3EZy9sCJsPS4mUt/qhY1M4PF7E3/j2Q/ilZ6/i+aub2AgjjBVsfO/du/D999yYrZ6AFPKiFg23k2+Ik1iYVTaiJnbj9YFVuI1dhWlcam0welR/G9BmISyahekbbosAcr4OHDjQwyR55coVATfyPR3TvNVMkrdTPPOtCMC3v1UTu0Rivfzyy5LQpfPAQiRlgG6VXWpexnx7UX7WiLT1YAMnqqfx4Nh9PePljX+peR2r/ob8faHdkGQWn/Meu4SoSc0HbaxADGZG58abg84bEw3Ub9yzh5rMKb5wfQlPLKygFvPBRA0zyqdYAxO7ehzsUCS4QRbszEjFNbu7onS4sr89vdxEYaKIYKOFZt1H0S72JGS5yhDFurZE+Z6c8YmrZYuYWeGixaL5FusdpDMxOpj9hO9NT8FfWe96PXQYMwSvkh7iQhx3ASv9KFS+RwAKGV5U9rezoLumgXv3jOEn3ncY/8uvPQ3bSFFylLPE+eCSPSeqRD7GggQm0YxBJPpzI0UH33Hvbrx6ZV0Wa1ncTTW3eZkd/kQniNYKqUltYGK0gMAPsbqy2UlCX15SHGzeaAmO66LgpGiFikFFgDBc+CJS8Zn4nofm8G+euSZglUEnXOjF+L0ohpWXwsmmdaRgYbMZbVMEUJqPPL8aDaz1JfvP4E5AFbWvFLvHC7i00causQKurrXkeqf23mTJwU9/91F8+O4ZvOvQBL56YR1Pnl/DV8+u4eJyo7NoSzI8RxOnpW2YAKdkDeeGzkQkgCZLgE+pZSFptRDXm7BIXUe9S6G1y8ZIvch2BrTi9ZrpEpFNJbQK8B0T/90PvgMPHZzEv/zSRZxrR5gcNUSApmSGuLRuYsNwcMcEUBGktyndx9w+U59LTgFzY6SCSzFVNFHXVPMZO85k2RXnlUHG8yfnUXAtPHBoGlOj2ycOHzg8A891cOb6phRhOBczYyUsN1L4AnHuOxdcsHntC2iF5zIDeeU+R4DPP//0cfyjn3g3/vuP3o3vf3QfzsxXMX/1Ir7t7r2487DSn79jbgw//9+8H5eXawLmOrRrFF7fdTXI6PYrfdXeuMk2SOvIztQbQZEGG0OdZtzafr9JghFrZMeksTDrSNqfyOusi8C2pQDIl+5e14neq1eviqPULxl0K7sUbydHiAEGwT1DsMrQhja0ob31xvXn7NmzEgtQ9ofsYC+88ILSvr4FttHw8Wf+789jYaMpPisZEzYbPn72N17AZMXDn3hPL5Pa8+dW8OtfOYcraw1YpokvnyFoH/AzwPdKEEpMYFpWpnduoB3F0u3BpC5/Z1zGdfTyWhN/53dP4LOvLXVAy5IbHrAc6k418QUHoPOZCIqJipCuyBRBFOMXvngRlYqDimthpGRjtdpNEGqXiNTEne1l7CUCRE+6oH4tAZRPBff7APSdt+sa4999JlZ1N56WhsxAK/JrRtfNYzClW0C910kkRfTP4x5ZIT0vBBR836FJOJaNq/VA6t9Mbqt9WKLYOuU44jNSULKWA+cfGfVEB7zRJB2w2qLJOCKHp1HbUfsiNbckdk2gZFvY8BORgxE/WOY/lWuI9OJMmpJ9Rd5LmKTTkjXA/eMFTHlkuFCa9v1RhZZAkbklS2FfRyGBM+xm3A5/r4E32gj8UIpCvSAR+TfHbDPImOzk/jaDACXblA5Kjo8xzf5SAX/q4G6MuQ72lYo4V2/gZLWJy/UAV33Gfrx2UhgZK4jaHl1zBXDgODltBILUI6YPDWz4Hqqhi7snqig7MaY8Hys+2UJ6gSoTDrtfCR4hqF51ZboZEOZ6y0bFdPGR2SMIxhOcX7oE22/DjROE7RC+GeNqaMFOEuyvuBImsxDD64Wxw7WAMWqEommjlmgZJHWxtmOlE08YvtDF20At3hT2FAJStvOPBcBmlFBPqwIckb+ljOksLPuhisHlcyo+5rltxxY8S1HGd1heO7UjNR8r4TrqcRMjdhmz1l74aQvtoI1LZ6/jnnc+2PH1J+xJkUQKUl/G7hiK4vxGJtehsLxsjS5SNoe8XqBKZ7vJ4BpT7ro1pJV3563kPq3muFSSFyXiNJMkG7bm5+elQMhnb14y6FYzSd5OnYhcl76VErtDG9rQhvZ2Nh0L0BgL0Lgu3Yjd+2btdG0Zz6xezrancvorfgOfmj+JP7n/Qbh0djKjP3uuvoTLDTbUpqhFbcU4kAFj/TRBILJ2hsj5KICuAmQzP0jwPZvejhw5ImO/2FjEqxuXUI3UNvJMJv2WP1L6p13r/pyXSVkKMkZ6syCgXs8km3T/Vvv3k8KzUhQdJZ9I37AVmVI7GsTAnreQIJMBJqATAgCsjJEyA7fnt6N6YxVQnvlg3cTakYB3DWGzYJNkWw5Cs8GQ9N7EaMnFTzyyD08tVCU+Y5Y8pQQkg0PbxPSeUfHJ2Yh7eO+YNPqywZfb//YD43j6yobEHOKzscGA9RHGIllemqPR0qQEntBKRNuUTKRFR4dfWKHkT8GBxfglTuEy1s1YKCSmycl9fufhCTx3SskQSb2tbz45Bn6HMZzf6osfTQsjnoFaxPiqC45Sp5DOcAzTsWGWCqqhIwgQt5R6QafDIDOpDcgJHAwiZ11ieqyIxWaMyZkJNIJVhFEsKg+Voo2/+F1340+/7wh+JE7w1Lk1PHlmFV85uYAzC1Wp/1DCJUrNThOwjJPsfQUPXkJQRSIA+41mKNcAlSM259cRNNrYdWQOpbKNZitElLGn5K+byXFPIgMCmVQ9SMVZ7VaEq9dqeM+79uEDhyfw2ZMreK19EeVSihkzRq0d4EozwqlzEd5z7wx2Fx0khinXCK8JXoNfW2sJ+w4bfytmInGqSE0RhB/EGC/aLMnCdk1UU+Brqy3sKzuYZjC7je2tuJgqubjcaCJoq3pexTVx5fKmNCWnfadR17jU3wikyp26LL/RDBL84ycu4jvunMIHD4yL5M/5jTYW5ucx58R4bI+qnbIJ52994DCW6j6q7Rhzo65IJN3IlBRvLLFX/hkg9WxpEHnjuaV6DqCnTePDeF3PumPwTGfHsQVsuBbmJhWf5Zkk+ZxlHUIzSZ48eVKYrfJMkvTnb2WN5naKZ9KMleZbKaa5bcAqN0sxp2V/qBlIimxqBorGuGXdssRulERYaC8qut7czcAaP3UFv775CsadcUx707jcnMeFxlVBq0qyjoXSNEXBtBAkjqKyFc28WJwHP2XnD7DbcSUZTSpX6jfqi+7z15fxueuLPQk4dl9xFPXAEuLb3GR0HpKbVZXgZMJUA1YmJosKmKE/l83xyJiHhUaA1dUmrGYo3YDlinqwNKptrC1UEeV15KlTzZu4w4xiM5NMKKQCrexgBkEuA98wYFCiR46j543uHyT5lOkZ6kQLx8HzrOVQePCkJpOVoLuQj1Zc/IM/+RBWqm389tMXVPeaOE6eOB1Lm02cm98UIMLSBvB//s5L+OLx6/gPf/3DOD1fxf/zpbMCXCnaBvwgRDUyhS2DrCdEZa5uqs679YaiceaIHc/DSj2Ev77R5dXOAWxq9RY8z5GkcUjmlYSOIgv+ysn6ez94H86tKgow+lMi/9IzMykSFgky4E7MxKyXR0ymmCi5os+42ggU0KYDyCXAhQjnbuaWCEtSptnOVkmhvlO1xegArtNJAXBosoRHD45jYbONveMF/F8fu0f+1WAcavT9h2euybHShKrPUIswk+WtrPhAST6ytFCfT+joDN43prDvJKR7I+1ewYMjgK8UrY0a7EpRmGzEUQkjpIGSzUldUvEpymyVhDaQEABkuzi12saR3RG+cGoFE0UHs6OKaowL4a4pH5dW6vjOO20cKLRxeiXG+bUYBa+A+47O4TdPVoUmMiQytU2cfDfbT4eNPzZaIarNOn7hk/NynEQ1/1cfvgff8YBi7um33/zyGTSCGN/x0H4Bq3C8C+tNXKhm7ClbTkjuutIBmf5dO7Up8LmvX+t85dBMRV5fS5bk+u09vwYOzmagsps0glIKpoNGQjBRLEhaPgHDNIZt2hix3zh9m8gb7WBlY/sOOXZbttEUSm+ak7oooLyFjo5dhwQH8sV7QksGEfDItYX0c3k6OnY1/nFxhNiFSPtWcoSGNrShDe3taAROEnjP4JwU2RokeCtjmt999iLm1xsic6OShplUi2Hgp/7dU/j0C5fxPY8ewJG5MfzNf/8MXrywoiRiTFMl6QwDYxUPsW12mUsiymYYIh9CX+3wqIEnn3xS1lQyRPK7TOT8yX/9nABWtB8sgO+EWBfGbUaPn6uZQoQpsE9CUQAmma/Y8/eUvnWYuUMmikV2dJFiWvmZxZIjf+t8noCXPt+avydJDFdAItvPo6ZS3v59zk0m/ZEl5fPJ+bx6qcoVqe2pxJZmWlHAF0oLaeN7D02X8KF9Y/jUxXVs+hGcJJSEIn2TVhSjHqUCYmHi7uXlBo6vNvFf37sLH9g3ho9fXMdaO8aYYwkQlYffynzXUYuSQKkkZ+mibwSxAhMoEkystCOEGUNGLjpT24jIEGKgbDOBlcm50F+XLlcbf/bIJP4zGQMz2aG8ZWzdQkEu2wMlVRn79F4PHHOV5zMTbsp/v99VZLKcn+o0yea2o64tJjS7kkr9hYZqGEpyc3/ZQ5OAjzjFg+Mj+K65GTkHBGETvHN8o4lTVYKq05yEroVJNxXvUxv1x7m9lkjdEjih7jkmETkOFhWu1Uu4Z6KB6UIMx2wJiCUkeyASVNwYI04sTCzroS3XOvMSwkLIEDxJsdBO0IhjLPtN1KMQE4VSJ2+RJolQ5K82YpSvbiKMA4ztHkFhpICSV0LJtAlrks9GBMBIDKPOo/jFzCcYBCyRLbOOlagh81AwCpi2ZwW40m9RGqKabEgS0kKxc9HMB5syVwqooq9r1Z/CpDjvB4YzmoKcf1edwer+4QxuhjUBq6gxlAQEFDa1bGvXCFwhoOb1GGE53euu98Iy0zfuuw9gy+77wA3etJj5ziZDbjCi7XqZXvNMkjTe4zrRy3iGa8ytZpK8nQD4TOwOmVWGNrShDe2tlwGi9DYlc/KxAGsdtzIX9vL69azeQl9FxSTMC9fCNj5+9VXsKY3h7pEZLLSreHb1koCeJaaRA1GepGuaCKRGo1Z8tRVuMEbJcnHx5GDIz+EAAQAASURBVBmsLK/gkUce6TS6XWku49nV0wPnoWxHArimJI+uuehPTXkxRmygpSgLdzD1raLdwlqbIHPAjCy0IwVU1gx8XeNnFaBZD58+NH1H1j2awc5lwF5Wlt5hdPxmveHO+Lo/6ZdKK3djPOXXq+uFDCsEuRPQoL/P4f7ld+4XpohPnFuT2KqAGE7BketlvR1hzY/hWQpw8Ilzq3h2voqfe98hYXb8V89fFd90umih3fbRjMnwkkqz65hnY52MHcIeSP9Z+eQJGTDbMdwKRSTzTdSKgTGhhEucSiMAM8j8ljTLmgoU/wN3T2O2YOPSalOEAPpB9Lw/GLeRfUP9DjRqQRY3qnpMuWijkiZYboQCYJcrMatnWQVXmnC1WXYRVsFDuFEb7CYK6scZWIdjHbBpF1CtB7DHC3jovv1YWGvIfP8fP/IAHjs0KeMiE2jZMfFrXz6LKoN5XaNBrJhIikVstFU+nXWqkbESOJ1GtcZAFUXXFpYRGGTwSdGqtRDWmxibqMCYZj45gt8OJfbl3FDuhymEJsH0AYH+Kp5xHcrsspEjwdcubQhY5QtnVqRZZi5jP6F7OxOEOLPSwFRjA/enTaxaRawVxmC5Ho5OVPCsa0sdhfHVeqCmSPVnU4onRtOO5LweOTCGL6+2gJWWsJG+c7qE9+5SsUW/vbDSwmqU4OFdZZW/IMA+SfGHC/V+0ptOKaafPKDnNsoeDFQdYD6FSheTBQeTux2crS8OElTAbMXD7OtMyZdtF+0kFGAKazTcKZ93/Hk0Y8d9I8Y6T/5Q8sZ53uV15aD7rR61cLW9hFqkmFkqdgn7CrMYsXvZsMhetWvXLnnxGULwo45piAHgM0LHM3y9Wcmg2yme0XWab6WG4tsKrHKzsj88Se985zulW0TbrUzsBgk781TRWJlK4igSMQJWaqhHDVxuXUUzDDq6erJuyI2s2FSsvgQHOxB9kbFLsdHYhOuV8Oijj3Y6Xvw4xpcXV2Rb7FajjiL3qxyBBK3QQis0UHSy3qtseH4zwcpaiIkJAgS4dlF7MYVHRgh+nwswH6AZOQm/WB5xsbHZFmTjykoTq9wtF9MglOJ/oeiJbFAURLJ4iHW437RQnQu0W2rDHZHAXhaVxA8EKTrIBHhB42KrnVeeQy68nf0MSOboz+af6PxeLrn9wWPT+M0nTuKZ0wvYqLdRdi0khiXJ8zYpnLOvFl1LmCS4YDxzehGfeuESzmf0Z2NE3gpLgwIi0AgkSYRYKw+qUQlISeLz2tEb77CGKIeN5yQMowywYsq2vuvB3Ti6awQ/+Ohe3DU3ip//woXOQtdjBENllGp6/pNWG2kUCeOIXmA3W0SFG7hrwsC5mikMJTJVGTXZFhMZxURo37azQUh4svZQ+ofADeoLcjoOTBWx0YrwzOUNVE9F+H9fuI5rmz426r44kaJwI460ShivNkKMlW3pzqQvxKuaepGubSGQfzvQVEXVnn0/yYADRG1PFmy84/C4dOy+fGkDkeViPUyFcUWfA/rizcSEQYyVbeHzp1bxzoPqOzy2k4t1uS6I2J4dceEVCnj4gWP49iPjHekYvhrNRUy7Ni5uBkjjGPUgQcG2wRBM0aTzvvYxawTYP+pgemxC/n51uYZ/+9nXcMfuMeyf6V1cqs0Az51exMxYEZVil/I/oKzW5ja02/kIQt+L+twKZY16DtYyx/NG5/KNmGfa2Fccx/kmEeYKpCKJZcPCtFvGxOuUAMqbbdgI02hbkIxFoNwAY5K8gaoqVmQE94Su8H6tpGOZlNdW43wwkcvXoUOHZB3R5/3ChQsSdPM9zbzChPDrdWpuJ0dIg1XYtTm0oQ1taEN7/XYz66yWAKVUzmOPPdbT/c6YhkXHW2GvXFpFEHSparUvQL92veHjk89fxO89dwEGk7fizqtkK5nMlJkCwu3x5TuMiOrnF187h7/5sccwN9eVEPzEy/MCVKFvxX0FObpcOtYEpCRprEIIvScD2DdbEdY60gTrXeXHrd0elQtSiUQ/jAXczIQYJXzEMumdNrufMnkf7nNQEmmg391nZCPc8f2M+ZCxU7bVTMO6V/ZnC2OLJLa6n9Hb6DAPIsVd4wX8oxeu4fR6A0FM/9hGZJgiVykJ8MyYeJPOmyjBb5xZwbt3V/As9bZFmoYgdx3PZKyQpCeX7sRsyrK55SFwu1qPXh1NrxH/XXYUG6KXpBhxLDw0WcKBiot3z5QFOHO1QbmWLoNKfr7zABb+6EdM9DJWUAyDkvyMAc8AxpHiWjYWUYnd5hwoBhcFVNraf6p0tUXXfsv3VLGCrJz8uUQWRzPF1VYLV5ttPLmygRObDTSjREke5Zho5JwhxVpIcA0QdPalrlX6y4zNLd1+IU2Sym+vBkys2wII4uV1dNTGuFMQKc1GHKEZW9gMCRpTXas8d83I6Ehi1pIYFxp12Ia6V5pxKJI93DebZlzbheOaeNcdDwpogewba1fXML9+EQ3XQTRRkW0EHJyRwoWSAeItRHDOhGvgwQlXAOgiJZQmaCVNrEermLZ3bbmW+V6cxnBz1NM8H6TqH2Q6ks6751qeSuYwJy3V6GNd1Eypt8Ks1EacsiCU9AJMUuOGsqM72RZGli0X5Q7jJ1CFLw5I37I20T3MNWwfs3Md4ZqiJdjykkGk2Kb1M0l+K0ubMqYZgu+HNrShDe2tM+a5yJ5y/fp13H///di9e3fnPR3b8DNvFqzCdX8taPeBBTRDH5kymvL+KxsLAu4Qp1ZjPTMfl+6XlhDRm6FvqGCgKcykhXpLscLkJfVe27wi32DBV7E4dwdBEMWeUhvXmwXx17SN2CnuGPGFTY6seMq/JsPG9n6sgGks+vYWSk6EETeUv7UiAqDJOqiCJpGwF/khxeAnf838U4JYyBjjUIZEgNq5jWdGXzvaxpfI4CaK9L7DHKFlS1WMmLmxPabCJA1YUUYfNM5RxNw5UcJ1P8Lf+eoFzNfaoOdluA7aCRkm4865FelMiRNTLDRD/MGFdcwVbNSCSNg0VZ0uRTtQtTKCS2oZUCVvcr7pH4cxRoRFoyu/Km5M5l8RsMKpdSm1GKd4bM8Ijk6XhcnlwV1lfPrEcgbO2OrLUfqGfr3ye1OUSi48NjdTsjUbUL2tzuOBEQMLGyEa4v9xji0FVOm/pk0TVqWEqLEN47huJO/JFaSwHU9qTPTRPM4fgH3TFaw2Q3zx7BquL9fwi595TZqzGwnjQkviw+45TdFohxK7jHgO6n4kx0VVANcmGz1904yNNAvI2MTM2ll1vYHEciSOna64eOe9M9KYcmKpISoEi5s+ApGkzcAk/E4jEGAKGVb+6MwafuKd+2SsnKsLq00BzPA9bq/gOji4Zw8++uCujnTM2toiamfP4s6yjSevJ2gHZBdFhyk+FCYYYLMd4e7DE3j42BRmS7ZsfzNI8NWlBmaLNo5RzqLPXllvCbCNjQra7CDqNGAPth1yCZoUh8A9862p0XAb+71JNKMAvBvYICHjNkyJ5abd19egnDdKo62GjYFHqaSEB8tXt+MAZxpX0Era8Ez1mbWwilbs457KIRQtb9tjIdicL80kSWk2nndKzJH5iu/lJYNeL5Pk7dRQTCN451sJgP8tA1YhooqUcrwI6Tz0d7rfysSuko/orkQ6qSv7IQtGJwFjoGTb0o3Vu/gTLMJkGwu4ue44OSEpLHZVOTbuOHJPzw210g7QZgdWlmhUi0Y3WWiaiWgLNjeJRlRJUJ9ZsXYqiSXDtRU1NBOfWUK2UHRgZw9rSQ62I/g+50klbcMMcKBlmq0+KiybqMlWgFC+0wdYEao2jerUAoa9bCLh+ibsSrmT0M6/H1brhM/1eU6W2m67vfPDXksDaWOBXrLX1L828JtfPouCY0m3JHk4uEAZ5LHuQ4YLlZnJjj4TTT/FV07MY3piRMa32QrQ9Ok0CSe5Aq4wgcu5yPFJj1c8cUDoYA1qyxRauMzzYvKVSXU/TvD4oQn8gx++H8WCg7KnrueZiot2oKiSe5whUr1t0SYEUrKJRJEw2MyNefiRR/bgkb0VPPnSq7jcMLpJU35XEBXZNoSXTCfGE1iSRh1saldqAVUvCFBFO4YXVhsCMJH3APz7Z6/i0lpbaPdI066PXW0lQypn1goSAb7Qgf/AsSk8tGcU7z8ygR/55RfEueB+RGYnpz/vkSIvCzSqhoEvX2mi7JowC55cq+JA5TCfcvx0+Eyi01M8f3kD/+SJC3Jgx6/X5PzTySJgZaHqC2Dl4FRxi3QME37h2DX83B9eweW6gq6FAa8uA9MFA0dnKnj18ho8O8bMuHIEGFQcmB3ByavreP7M4hawCueHdPRejtbtyuImTl1eBYhO5fNh0G2wHYWbvi7J7tTXmXwrk7s810cr02gmITYDJqfV5cRuhHtGdsHeBlByMzbmjKAV8P7vsxTizJA+rsiOzT7z0ZZEswU6oLrIYyJCiBAByLFyM8a1ZGpqSl6yXd/vJHoJXOH9wnVIJ3oJ6riRc8nv3Goa7re6C/F2SUQPbWhDG9rtZFwP2PF++fJl3HvvvSL7029cL24VAJ9MbQO9aanQpwJ+UEbQtwUjS8p0XWUlm5OavckZ+llFOxXGlnVrsgeoQqN/RasHsfhz3ZSxSmqxA63IljyCKEQC0UDBtTE56qG+1tqiHsrP5FlRuOxSylKDRNTnMn9RAOLq346JjFACr0A2Pr2N7totEpuZlM0gE7piMiPmmSczI0hGmCz7AC96XNzmNnjZzvHl3QgNYJFhGwZ++dUlkTOVM2CYqJJe2diaLGMilf4sgSJkJLlY9TuMn5s8D329B/x8v/8y4phYD7oySXnrwmc4yQp4TkkmJt1+8MAYHpgooeKoxCeNkjrLOn7MMaLkk/md92T8ZM1Qvv794yUcrBQw1dzEH2wEQjCRcW12sFKd+JjdsjqhnhvnIAeacjzSp5obAkEx1Dz3kwQL7bZibM30t3/t4jzqYdwjSSTxiIwn15zBjrvsPDLt9vjUJHZ7BawHMf5wYVW2nfEadfTlOYR1kf8hbbOB1TallXyRfXJNR3ICnOeOOBDZRHj/sGghMVGC59ZXcKRURiNit2a30aYdM1YF7ixPyPEQlMBkn074MdEbLM/jfBwgYtMFQUtGKtTzewU8z2swwoTjdmR2+K8DB620hQiR/Nx7Dvuu/5TML00prmjpn3xfC+fDMVQiuXt95YhEGFtkCdx+4IfKs7z5xK7anwk79RAZfufcaBCLk77xrj2TbLr9bdbZPPFZoToeBxlROuoe68yKppzh3+W5cnPHzvPONYavPJPk4uIiTp8+LcU4zSJ5M0yS6tl6+yR3GdN8K3UhDm1oQxva2+0ZS4ZILQHa3+yk80m3KqZRflh3QZWSfya1GCaqOK9kHBMUzF42Pe0/Sttpn8/oGgncNIZjGzjywJ09QBX6MlXKB1FiAxp430WA0Bcs2zHuHWsKyJjjKNsJZoi2hiVyQwwt+A0leTlIXLDrQdkEbccEa8Ti+/OzZDHM77WABG7EcVFOQ+WcBRye5WQZXgWRkrLRqzVBJPr7jqXqSoOM++9PA+oUc3ID/4PxQD7XL6B9qxsfnakGuFhfkWZZVsooAukHPW3AKu4UlhYV0/C9FxZr+Oj+cTm+VkDFAjK20MfKeHEy1ou8W1h2yUqYInKUPE/P8WR1Pc2MTt+GIAQ2s86UXfwv7z+EsmejnNXR+Ddewf2HzzpGbyMEmUOzvHjZQaOu5EV/4t37cO+eMSxdPIV/+NVACyNJI62cP8rRktckjlX8xZz9Ng3fnRMidYIcszqbp1kcZDxbKuHaRluYXCSmMRTT6sriOhp+JHJCsSWVQ7U/YTHUM5OKskBkK6mWxw+O4X1Hp/G998/iz//zL2J+vYVqi8wxmT+bSdqSAdVvsyk8xfVGiE9ttAUgRGkeqk6RZYcpBoawKo5jY4q6g9j4cHG1iZ/6xEmUXBPPrzZV7dRSgKXVZiDNL/vGvIHSMWMXFnDmDy7ixKqSJ/JjddzTox4e3DuCC5sBRkc97Cp15UHHPQvXGiFObbQHglWYq8inBNaaAU4uNeSc50E3+vpT13smwTU4BM3uEV533fuSdiv96n2lKdSSNlb9usSFHErBtHGoPCuAkzdqs+4IrrXWchyiyggM9EDp3sG1+NVwE82kjRGrWzNxDBu1qImVYAP7i7tuav+cW9Zg+LrjjjtEIkizrjCeYc0mLxlE3/9GceLt1FCcDmWA3n4Uc/yd3e3Uc7/rrrtw4MCBgRedZla5Fag0whvyZAVJDjWblwVSyFcLxYSdRt2s3qDLXRX2+X0lZsaHlKAYc+OtOLZaKLXWuU6IGVlSkHnkCGgERORl6McMHENmDKGnUhMp/xTLjiRy81PqFQmXSRGsRsK20QGqaP09bbKAqC86RRdRyLnFYIaVvHFRJc91pORqkraP9vwSvNmpbgI8DBEtrymkaUdHPvek14tvwKTRgMm0LJhElHH7zSYpd1SrHfdpRNTjkW20Q0UxpmHGTMJpAK22zWaAzSYdNlN0F189fR2nLiyiVmurcZQr1MPYCh3OmZK7yZ1oDaTJjkUcEGETUYszE/sEFz1z4jru/+u/Jfv+6CP78Pd+9DG8546J3vMo517E7AfvnHMQRigUXPnYX/vgYVhI8OpxQzQhU1/dEwS1gGCazqDJuWwqcNBN3i/9D3IVK6TwbFvujXYQoREmqLYiOSYCgXrwRAMS3zpoYPKVl9+ByQImyi7umC7hlWs1hezO7hP9eQJTxkoOFmqkN2OiPEGByHEm/RwHVkoqRgYG6hvd7j51ag5NFvH1azUBHcWZE6wT62R0IbiGVHna1hoBnj63KtqMU5UK9hZMXF4NpQtZdAHDCPONGHG7hSBMERgJTi81sNmKUHBM7Bnz5DgaGZVe3iYrBRzePYaXzy9jvOwKkvn0lVW0qaFp+ojEacndIx2HVHjtxDkm5V3PZ+TfFHfv3UrFdiuTu0TnPj62D4t+DY04EAT2rFdBJXOCJKGZMem8HttW61AAOO62yd1YXUU94Z/+meHQzVoWsmTfNoRejkU4vnhM7NKjY7SysoJz585JYjcvGUT6ui1jiykxMBht/HYFq9xKPcihDW1oQxtaV/aHAXZeArTfbiVbJDurtpiu9vdbFCPNOqY6cVBWMzX6U4lkWQggYO/xSkF8EcYU2qYqjoCWdYFaxzR6faV/RL9nvRXBdQgfUKAK+pD9JjJAfbzLqqEsgUuwspY87QO4DDpsgk1cTwNyMnGZHPNJd58KHCM4+KxjrlR20UTQA1ihfFCh5HQSsfltiISJAE8kmtuyrooPGSUComG8xk488Xl1QlQK3sorYVuA2ka27e5WsuS7IYAUGRPdewC//OqCJBVlxg01Vkpk6snpT5drgID2hPINE/p9ghkCxrMEd5B9RZokDPyrU2uEXmDUMfF9+8fw3ftGBHSRn/tB8j39+6fRC5wtePjw3CQuXaqhKIx52ZwIuYT0zHaM4BdJrncu0dxxDXBlFMNKd6+cGxJWcGo8gzK+BlppLHKp2ifsSlSqnezUV8creMx2MOLYmPY8fGZ+JSug9B4nixAEBwWxiRoT1BmAiJJB1ZBsH7EUFIxESQjnj5nbKxoGXMPEuWZdxq/u024+heeS8Vn3HKRYD9tYCRowHAP375lCa+M6ltpKZolz6FEfPgjgpiZcz8Sm30aTc5EmQi09arswTDYSqDgkb57BdCWLRaoJop34AjAnNXux2UZLCgsKfKO7OIsWE4VMXKqiwXY26lTeki5EGkdkpY5I/sTMI8j1Zgmrir5H9H39eva5w6Wumgf6JEq7A9rmm7pIskMSfMsXcvdEP5Mkm7w0k+T58+elKYPJXR3T8HP9sb+SO9uaE3g7dyHmu/yHNrShDW1or8+2W/fm5+dx/PhxAUOyTjNoXZBC+S1qKqasxaDFL0wp1ZiX86OfyrjAQNm8cSxVsmKUbLW2Mc/IBse8jyE+gmFIjUY3RHY9GdU0PMocNH068caFW09+6jQuZ02dNPFnB4xDygjif6Qo2ZFsV/uomtXEyH2XDCpkAdFynfTZFR5aL/w58C3BOC6bZi0B9giYwiXjvNUjCeRaeUlOFSPpJlGtJLCdL5/1QCi3I9ukqOlwZyzQZ2z9zN+T8dow82yUehvq92YUy4vzzlw9weC/fXUD47tHVGN2M8TmerOnf7n/Mo2Y985+pvIAG7YLnqqFqTgrhUM1g6yZOM1qY3Wk+PFPnZEc9r1TJfx/HtqNh/eOqgZaPU6OwTIlrhrE2EnwCZtRfTOE51r40XcdxLFdFfyn5XNwZRKzoj3941I+R8x7JREJnRtaB7CSRRh6cGEoLPC25Qpgh7Kh9VaAzcUNOEiERTUfUnfj1nzslLGFGiYaQYrDM2WRn/22Y7P4jafY9KvOq2aO4TYKnos9YwUsbralDsQXm1WkWZt1IcYkFgH3qjlE71ZfqfvHC7i02pKpYfxt26pGw8s6DBWoZqTQrRM0gxgvXqtiqR5gvFDGu+7di8vPX5MaD7/H8+OnKU4v1QQU1PZDnJ6vY6XuyzW1d5JySzYaA2SGaUdGPTy11MCEq2oaZ5YbwtAzN1vG+UsbnXKfNukFzxhVPcdEK8colD9lu8dcYYt5q2Ia17RxX2UfVrwa6mFbnmmTbgWjtmr2lXyJDidexz49izW/7iO4G5KkKDm21N8GWTNuqwpNvo4udXUTzVjJxN3s8z9KI6kVSfOE42B2dlZesp+cZBAbwmi6PrMdk+TtBL5vt9uSG/xWAuDfHq3c2xhRcqTIZvHsXe96V0ePd5DprvVbccE51GHOEII0UgaL87DNzVykZnjbz57v3Ts4pvRI9hk/JtpXZZGKVoSKE+MT155BySrgnrG9uLMyJ2CVbqKtzxUzUjhOisiEFOYJ7u3QlklHVu6jotBjbQGqdI7PtWSB5SLRr7XW/aU7AIX2tASw0rEOUiYDO5BJYXSs+7vAW1tAo4643kCz3oDpuVJoJ4BFnuIEgrDwzHOXB6vQme04u70HYI6OwsoYD2hCq7y5iXhpqes5hT7gKnQkz5mAPzJO6O2Si0TShrUGnlkSPaTuWOo1xWpCyaltEjMExehF3uTxVypIqtXONrggk+Xlb/2XDwnl27954hyq3E/2HT+N8fvPX8bxy+v4bz/2aK5AoFsHd0qJ0lE1MF50BQzC4+DCfkeF16WJdX6dIJU8UEWbCPmZsnjrw+23/GnJL6Jd9ZkUS6tNcf7SnHNWLrNTUEGw2VHaX2TQJgWG7OcvnVvHlfW2yC8JHWPWLZunZuc1PT1WFNaQpUYk+pISkMQpJgom6sQtkdmok+vrlldUuKBCDBZJ5jcjHJ0tY70ZCl0eATZ7xwvijLw2XwOSKn7/5Wv48tk1cbYoGcV/N2otlCnl1Ypy1OocD7uMgavrLcxvtgVExuMnDf6EZ+Lg7NaFhcf4J779TlxaquHU1Q15jmzU2ojoYAp6nxlcipayuEB2HIKy2C2prsWJERdr1XaXrl+OORHk8Y+9/+iW/d1KR0g7LQdKEz1/Y5f2Z8+s4osX1lHzYxyZKuJ77pzG/btvLLjI8flJANewBQms7lgVEBJwwuRxyVQdGwwY8s9kvhf3gVJ0SJFnuNp236TKM0OkGZ26kerkdXcZ5dzRQeCLwEk6DJqG8NKlSxKws/ioE71cs7ge3U6O0FDffWhDG9rQ3pwNWme17A+DajKq7LQm8D3GQLfCujX5nFO/U6GT/qKA57t/Ul1COYALq/oZFbbf8vEfvnQWv/mVc/jgfbvxP3/sAdy7dxwzFa8nEdU7DNIMk0qXySgTaQ5UPIhel6wq2x6f3scNgCraGaQ/2vGF9CERXCtyqeqLgR/JqzNlJoGrtjColCue8k3F31bddATqCEBX/s3Pm5IPGjQebqNe87tSq1x/6z7GxovwyFqZP0bxcTLwrdbD3k4qlXEJk4JxipN+lz5a5JJ8AnWUL62323+l5uNJ6QTtsJiov7FZYrpg488em8Znrq7izHogiVA90o0gxm+cX0crTlAfEHvcqMY+xo61NBEmEm37rQTnY+FDkY7VgTirhDTSHb3bjvfXYaIckMjOPpG9z4Q1cL2l/EvdemKbZAG6waCzblm9fR71k6trIidUtCx4Funa8zws3b2XrCIaka/2xgRtNlZizNqRgZSB/wAXVicZuY+qHygtcsdGM1bXbcGyhUa9FgVoxSGutzZwprGKjTDIuixNxEkI14gxYlP+xswIN5VsF/kN7TjGpcZ6RqZqYsNoYdW2cLA8IV1x/eYaBZTMChpJFVESwk988d25v7mihcV2JAUkKV6QxcVKMOkpUA4ZGUnBHiRhJ3Ft6mM0C5hxJ97SeEZFGgSoWFskRptpHQF8BWBPCygZle2BJj0b1XdYXzEma80lyKtb8MqDx3Y4Lj05N9o1AXKcUB3Hs6M60kgXZf0MokyEaiZJUmwzdumXDNJglWFMM7ShDW1ofzyN+a+TJ09iYWEBDzzwAHbt2rkz/laxRYqf0JHxUSYsgTmgSj+IRRgM+pdUqZ+otZmg4YKp/DMClVmz+cz8cSn43jkyhwfG94u/RCmQdhBk8I1eK9sGHGFD6wLNZWwCdO49bo5nuyW8s0IbqeKJzgFXdQOucv27DCmeRdZE1Y5LH47HkweE8EjHCyE8O2sXKIZohybWmo7EEl4hzvxfxb5B48/CEmgTLNIr10lfe9AB8Li1/E8+tsiHAYyHErkO1PZzhOAKPNJXm1LzRakcE4u5JgHGZKUKZS4tLM5XO35Jf1DDvD3z+7rxolUPtoJLDAPff2wKe4oO/ukXL8AdK6gahMR0KV5ZbuDvfPkS/sK9M9n5UT4ba2P8XcdTg8xzTcyOKFkeAitoUyULB2fLWF1oSd2oWNrKdCEyuQSZNHJM4zlW/55u4M6EaTYP3egcS+Nui8oCavKRjo4hqG4KEF9th83LeV8+HwAS1KPsxGIdv/DFi8I0Y7YJ9FDNsp0G62wcrpFi3LMxn1LGSd17lP/ZPVZAY9OX+J4gAwlhc8QACsukxj8z4uKV6zXsmyiKEkGdLPaGgQPjBXn//EpTfP8nzq/hj86sCnsrm3K4KdYddk94mN9QgBFRuxBm0RRunGBpo4XljaYCwBgmLi43MDtZwnsfGyyr8vhMCedqPq41QwRBjPV2JACoqekS1jbaqNWDTo2L9a5CwcLYWAH1eiANO0vrPOYuKIdpH4KjfuD+rTKqtzqm4bNytzeuqD5z+3hlvYEX12rS3DLh2Xh0soJ7x27MEk+jbE/RdtGOQ5lX1aNvSo6Gd8OEo2pd+j29TYJLlDRuvpbIygsbJHZmc6RFSYxLrWUsB5sSL1JKaG+B7KWKOVQbWb34IniSzwTNJMl1Ks8kqQEsel26ncD3tG8ladPbFqzCC4vdh9vJ/vSbDppvhR6iQy2t3P3KB+ROcAFe3lzIdUcQP1uxKyJH0Wg30Y5NtDNNwIodCU1cBwsRtfDc6lkEcYSD5TlBsjLX1t1fJ90m+yAmuVBUSD0yQEgRN6PXzjPTdBKR8lDQW+gmOflA9TxLEpf91gHpDGC66fHP+LlSCUXPQovHp7Xz9HeKGQ0gAR/cd6udk6HJzlH/eRWkDaWFfAV2IRuBHo/n9QBVOvM/Noa02USysZH7o6UkirTpxZSTSMetHwBCx2m7wgCTvQ1H6NFlm3lwjThh3QRkalkwNHK8T/aI2vKfO7+BVrXWSTKrOVbsLAQs/IcnTsjCKmwZnY3unJVyLAvrrQATJQe/+OVLWKz5+MzxFJu+SkiSeWVbS2IYprNtk60CbW2/kLZJAZdLtMtURgmaDR9eudBBMlOOqf8weinzFDr20loLcdIU52SkaKMdKLkdOkWcLybJl2pEzxLYZSjkbQphdCFoSNMOaqpzuQ0y4BmHTSDFyYW6OE38JOfsyEy5Q53O80Cwye++eA3Hr6zj7EoTTaF5S4Wphh3EjSCBK/5Ut9iRTRV4O3E+yW7jCtgmQa1FliEbSXMFS0uKhSMvCfPIkRn89J96Bz774iV88qlzAjwpeQ7GKy4u85pmZcHzctFV3Lm2yd4ymyGYJbme0Cm3MDYxivNVhWLOd1XfjCNEp+/yZlvm4/B4QZz8mzVu/1deuI4nzq+LM8YE/QvXqji93MR//2378dDcjZGgpOYcscsImehOww5gkKCuEXMES34VV9trgsSl7NDewhR2e2Mi8xMhEMAKOzvVtvgz5dF2ZjURCnbTR2IkHZATf06NAHZMqMvgNYVrjXZ6aCwu6kTva6+9Jl0kXMOYAGaS91Y7om+FkTnmZqSNhja0oQ1taK9P9ue+++7Dnj17bvidWyltemSXkrbs2A18SvrL+Y9QquexO2dxdrEuUon09TvxgciAZprQjonPfv06njm7gj/4nz6M9WYg+tb5RE1/TCHyQPSvKIWY+ZtMBPXbjmwcOemfHdetdOffmZSMg1hWe9IY93w0SdFuhygaSlpV5CPz8yDf7wWq6HEziUMml/6xtRpBD1BFf35zo4VpJgQ7Up1MBvU64x15IX4mwxHls7R5kHe/BX4sLqSSUVJ9nL3H2iWCVmNSHWVdlkLlW9bCCNcagXTo9Xw+Sy5/8tIGJrwu3ccg4FKvqS3weglSSHLw96+u4uXVEMuhIx2quhtsO+NQ2PXVL1jVnd+tiXBJqcnfU7QGUKJLAl905bsg/X4wAX9zsq5cbZtBhCo7GGOCL1LppIyy2VaNFEoWaNVXST9hjMnmpyYa62reiS/Qp19L57Brlv820hhLfrvTQDDpFDDhqCYWJg5rUSg/P7dxEat+E5tR1KE8F8X2DICmD0mFpt0ZDjMZ1aK0rpKpJUY9jHBpYVkA3ZTLzNMs899Jexpu4qER11BPFKuPDQszBVPo9atBJGB06sDPFEqo2BaW277IGNmGJYlssrjInLKQYjrYXRhDkPooGqXXJWsq7DKi2s75tGAPANjsZOzg20xJeU2iejkjaKKOkGwxmOzII+1kUthgAUc6ldMu+E7OmYXQYOyhnjcEylipC5P3jP5OD/qNDxSB8Oy8UwJV9PWYnVvTUjJPSbj995nI5frEl2aSZDxDoCXXMDJE6saxW5Fv+0YB8L+VErtDG9rQhvbNfqZ+7Wtfk/WXNZpB3epvFVskfaciZUSiXJr8Bt+J6cMRSJKtxxXbQcVxUQ1rsIxYQLMqR2yIhI/IuCCVguwrm5dF/uf9s/eIYA2Z6rqAblWQ9QQkrdlTVLNbHoCqBSC1dQjUs8VZb07/RNWZEv3RbRo9VU2/l/WQY3HNREDO2sa9GGXmrSMCg7u80bSik2C6EmCj5chRiG8sZRzty6Xymf4+5gKZXELKTBI0ZPT2GmdAFT1G3QzgOQoIo02kSbNJUKw7mW/PJoCBEHrFCjnICFaZmikjYh2gFUr9oZd3sivXqZuuVfNFrtnRNNCMEnz1zCoMz4KZjUfjPuifN4IIv/7K9a4aQY4lZ6ewk6eDAAfK3n7ilUX81nNX8Dsv1LBGELrjKZbPbb7P+knTz9hVCCjJ+7ucDuYIWM8SNLmlgsVuhy6sgidxU5dJU4ovwNg4sLKqtiPfidX384oJDBJz/h1rjhevr8OIQrRavtQGTNtWzZgEfhCQH8SiWLDeCjO5VyUHxdfVdTbWKmknygwQbMSap2pKVoNjnYzMJXdOK+AI6xd37ypLTKibgy+stfD1hRo+eWpZajRkZuW5sjL52xZZSjunV9XYdIzDcLvZjjFa8VB2FRiJQJrrS1UsXQwwj2nJ55NRXdtMwcafumMCL6w08dT1mtTnuK/Roo3Dd0xgaaWB6ibrhylmZ0s4cGBEwCsnTqxhoxlhtuJJXY5zwDEVPAv7ZkuY2UfpVt6f1uuKacIkwWrQllM85XpwdT31Ju2ZlRq+uLipGrdNA9eaPuabbGhI8PjUjWs0EWsxloeS6aARt+Xe4oiDNMWEM4pGHOK12hI2w5aMbW9xHAeKE5h0xrDor4sUUNHk/BpoJb40J0+525NR6Hk507iOpWBDPu8YirXzbHNe7mUCVgYZ55LxCl+HDx+WnBpZV/giMz6ZJMkeSSPOgNfy2x20Uq/XO7K+3yp224FVeEGSipQv0snt37//popm+uLihXgr5BbYwaYXN8XIcCNXKJN7gYWjlUPYX9iNr558FReks8mSB0IUhx2gCo3b10vda9UruKOyGx678FNVoKcOuF7oVZJKOz8GRisWNmqJJBUNPpizTi6dOM0nKnUXo4wy0xrkwqDo0OIujXXRloWCC37nqDSVcB4W23c+YrfI7OLgbLJXoFfbZYXIb2OnB6y8JysX4KqsqrkD5ZE5MdELViHQpchutL5boOOg5AAr/N3PIVcHmbzvKceATBdcyLJ54MJLp8X0POkOFWmiDlCFQAtFtfcLf3Ac5uQEEoJiBEHadWz5aS5kX79cRVLWx9lp6dxxaHUy+ESpMIT8kycuyvlVmJycB7mdZQn+7RwlfenoBK32Y/Tv/UAVbSJ1FEWKaQaGXF9dlhTFmkJnsLOfbNtExHaOy6fTbWCiqLQF21GMKEikkMGfCU6RZH7Crkc6KLHMP7eq137lv/UeXCNKcHmtJZqHq/VAmFzoENFpIVCFjDSvXd0QcAopzjkBdEwUOIwoYurSp6iQgMkkfXd2XPS/RFbIRCuhDJVKxs5NFOE6Jq5uRvDOnxf2DS6OdIh0ovfeA5PyImjq3NVVlIsZ9TSvN14vBHzxGVfhopqdz4IC3DBo4vPPswxUSi5mp8cwO1nBl8+t4fFDY/jw3TOdYxcKvm1ONs/Bly5t4A/OrmGjTSklYG7Ew5+4bxbHpnr1Z7ezC+stPH15U8BEo5mU0kTRFvDL751cxoO7Kzs+z4Wi2qpgJVxD2SqjKD2ZCfzAR9AO0S4BZxpX5TlIZ2UjZPK9JRqJ+wtT8FBCgHaHYYXP4yJu3AGZGHEGVFFdjmpClHRYbEYwM7DhjYxrD+mm+eJ8EgHLRC+l7FioJF1qno4u7xC/XYxjHiZ2hza0oQ3tzRuDYQLvGZvsJPvzVnUh0sTXHJz/G/x5Jp5EfhF4+PAUfv7PfxsOjJr4s7/4Jay3bVSKjvhfgR9KMZtG/4kdbMS2Mln1r79wGg8f3SWxVMU1BPTbBaH0DoS+Fb2ZmF18jqUoiynrmbMuBfZWy3fp6JiFPih3xyRov8+hEr2DJ4O+XF7ipweBwWRXmChd8c42M9aOPgmiHsvh1tVn1efZpTXw40JMGYrkUHdcTNT1nsTOTx0gUJbAzv1tJ1NElqkk8fPA8bbkO9klqvxdnS/XIA2CQehHf/rShpxzlarqjkiPgYCTjZDb7h11L89E/je1pQaTegDOVVs4tanADpp1ZFBHa+8xaXnd7T7RBbz0c1gQzrCdsWvXzajkdfyjj5YAgqzhtbMxzhsLH/kjZYJeum+zuW5lNO1hHCOir5nrquVIKBvL7STCJKN6OftBS8QurAeR+P+jjiWJwrLlwDbY/ZoIKKRiGqhHvsjvqKYaDbtQ45dcBJOoGZhGemxTzoYBwmyaYYq2yYKOYlMspOz4NFBbreHKlStyL9CnZTyj/doRawwVcxSbcU3kgmT0RiJjrGTVFPrwbgbcnykWUAgtKQikzJkYFsqkL3c8VMyigPBryYaSGcr8eXaGapnYQXEFcyn1tIoQ7ITmtWXATT2UjNGbApnQ2mlDgCpsPurIAfGcwZdYo4CdYyPGFARryXnNOp8TI0XE42Q6oZIHyROHQuBSDDcpwmAxg4CTDsiF8a6ZgVV2MlLTa6BKLp6RgHgH/YH+seeYJA8ePCjrESWDlshkC+ArX/lKj2QQE8Jvx0TvMKYZ2tCGNrQ3Z3qNvX79uuQxWZ85duzYTT/zb6W0adFK0U5iBFlu7kburoAqhHXEwANjc3h4Yh/OXziHq6VNWKYtuFA/jFDrAEGVfyQrdwpcbq5iza+jbBcRJoQgky1fSwZlUqE535T7U+wpzMcrefIwx66SnzFpfOw7Bg04aWVfUWNX4JR8DrfDupKiA1QRwEvnIwY8m+DgrVUs/u5azFkrCSG9XR1rkSVmOzea7/GoeIwKfN3LJpM7ONVsbaoahx4YAf8CHMnRYkpzrWZBzMVMeXaGrt/da65L/yyG41goFGysrTV7jlP86DCW5oCR8WJWH9HSrKpO8/S1KtaWG3DLqhlU+3tK/oggC+CyzyZGHYz2Ng8MkgGiVRuhytOnKf7t01cVG0lEiSk1OjLNbGc8brvgImxJon/rB+g/h6SU5zmnv5hJvNK5pJ9PRYPchHZOEWszrK1R6YDG+5JgGDbHyoSLlk13P1KgqaKRNafwd16aZOafHFey8WRM8Vk/pGSQH0m9QTH9GHAzmSUeexJFiBhkcv45DlM1cvBaSjK//vRSA7tGPYlNWGMR1pQ0xWItEGmd8xtt2W4zVM0uvN94O4YEYzOGTwi0Yi3IEpZRXmoCiKLvHqWoNgLUmmS9saRGYaVkBDWFTfDEiRM9DOlsOCWT6Ef3jWLMBF69XpVmXKn72SZ27apgeprn0cCuGbfzPLzn7gnMX28iaYQYHXFRLtuYnShg31QRh2ZLmPcjvLBax/t3dYEanMOdXPOrrQa+trGKKs+5sDk5eHBsEoc7dcOdjXWy51drEsOPs0EIwAgsrAURnl2p4YHxsjQZ72RjdhmrQQ0jdgllu4AwiaTxYq2xjuJoCS9tXEVA5hPDRj0KcKK6IMyh943M4XBpDpdbiyIJpMAyLvYXd8m2drJ63MZqWJPPk+2K5oDbb+N6exWz7vi26if9ebWZmRl5yXy0WgJcITM+GVgY0zCW1TUaNu6+XcH3xrdQQ/FtBVZhV/pLL70kF8873/nOHWV/ttNDvBWOEBMFoqOVORp5mqq+vapCtuHgYHkW484IZgvTaDWaePaZZ2B4NpwxleCgbredBj3OhVI9VD8HSSwsKw9NjuMriysqOZfpDspnUyUjpJk4uCh+254RfPTgBA6PeviLnzyJlWagnAUuGkGcUal1u/40yrBWzYAZGZp134ExVEa8zmdrVR/z87UOHbbMrXYsBtwcZKvInQg94C5CU3kpnY+IbAqBItss7B2wijgECXmrZdHcschNAEm/hQESdj7qBVoAHKY6rna7u8BriZWdLM9Tx8WaRWb5HhO9piSviV4dK5hYX8tdg0wGx2TBoQ+RwG201OIsEjx6qrqdU0XPQUOzdWgGGKXDRMqSvkFl5ycKMMEHl2VivaHok3mIwuxBgIVtId2OQj37zM2QZ2gAlE4EK0LunT+v8UhyP2Uafvnhi0p6dk0PMl42QTY+goLYpcvxkt1EjjNRTgzBKUR6awo5Nc7OKeoz5RTtGfdQcW2cW2502NRJPXd0soCnzzSx1ozE8RK/TatdSTetugQ4pWOeiY0wlKBFBTXKGZP5MUzxIykXVE5toSR79727e2iWmeildfTBi1khKEjQSv0+gFdGE0Pjcy4MEfk+1mqJdOlFpgk/KKAWGVjxKVvk4JkLGwJWoazRx7++iKdOtjB5+iI+cm8bH3twN0quiZfOLuG1y2tYaoZ4rQWMjBaxZ4SyUimubLbxq19bwN94z34BDd3ILq63xRmayZx9fe7HCw4ub7TRCGJUvJ2XpVlvCrW4jmbSki5IAcsx2d02sOTXZHsVS7H28P+N2Mfl1grmvAkUzbJQdDO5LEUVKKDTjU2n7ftKKlLUeGNrCvdbLpfltbi4KOefXYs871evXhWHmO/lHeK3Q5ciUbsc19CGNrShDQ1v+PnPot4rr7wi9Nj33HPP63q+38rELoG3Yt32vR3t+95xGPcdnMT3P3YA9+2fEKDlc8+dxr37pvC1xWXxuVhwX9WJrszJEmCDLKUpnnhtAf/LDz6In/74caw2dIJL70EldkTrOvtbybHwE992AD/40JzQDf9PnzghsYVm/WOsQmDFIKM0j7YwjNFshj365ZTvYRKzs/cdWFjoG/bIVvazrwgoJf9d0mazeH0DEAVdeSU+r8rdOzCfyDgGyef0AY50bEP/jzFfh4pYfOKtIJ1t96UlQbPPC4snfeKUwAr64L2fJ5MKo9fr9QAFu9vU0RlnboQEURB00WXU0Yn53n7NTlOFJP2BEceSTq80i82093ujI8o1Fe4obZrvZpXrq3fgW0zgApmUr9qOpjjufolgEJYEJEzMAQryhYhWlEoPhRRCCBCxyKaidNz1uJkvYEzBTtQgNjMlGW6X7CaMoRUorCMblG18f7GC1bCFdTKTZs+gXV4JMRoy3404kP1K2SKLZ8lkwsSiNFYY7Mw10czowTWNs6JuZjKa31VJ5lGvhAfuv0/lDGo1rK6uSqKXsgBM8BG4MjE5AatgCdMhU7CynVzhIX958kdhniGBaQbAJziLt21s8O4iywwZd3x4KIosT8urYerOMawlSygbI/AMBW9vJA2R7iHToorFnEwCNkEbLXYZoGKobrobmZb+2RIbMD7tQPW2N14RZEtJTErlCgJevs18Cqdd2gd6QPLMOSWIjBBOygaZDOklDDiayfMm7uuBH1EFuxupwO20JvG8EpRPphXKczOeYbKXxUsCMnWSl/8yjng7JFSH0qZDG9rQhvbmjPHIq6++Kvmshx56SORMX4/dSrZIroclO0YhjQWIwXx0khodKaC8z0V/6qGJGUy6JdxRmRZNmq+/+DU02y14d5N5goVVC0mkAby6RqP+U7tjXrWG/aU5rAVkJehlMIFmAO+MDxh3RnGguAfj7hhOVE9jsb3WaYIWlojMd+tfixkmCGFixp5C1hdXAKvK6JuTAVD70GYmA8QaxKDlVjE6KB8u/7b2N22LxX09Z9lnZHzptg0DogKQ5deZp9/q0/edLgH05N6nLJNlSryW37j2yislA6UifUAlIdQONDvK9vvQMRVZOgsFB81G0K09SArdxEjBRrFEdvzsIDPTbBzM2ZMhs2e7uUCCp0GBEXolPdl4QJBMzzFnsRj/XnF4jRpYqfuqvseGh5isi6q5d7u2RanPuA5Cf4f7RroBNMw9M8eB42V5+G0KLIbN/Hq7V9Ugn6MQAEummsA6nAaq6HoYmSGjGI2mj0LBRUDQvGPBLnqo+3EHeERCnJJDyakQYctHGqsaqzQNBAScmwKqkXxARhZA0EbFs3D/3AhOLjYUyD6FnL+H94zi5cW6gFrIyK9JZeR6zNhYuH/GY9LszM/4kWJtjTNJqYyphYHXZjMUudSp6Rk8ft8swjDcwpCu/dokKWKEahJhIvUMXRfj2B3pku6eA69gozziwGcsTtZ7vl+w4BdMXGv7Ig/72mYT3z47Kg0HBIt83XfgJDEeuL6Ox6dHRBL3Si3AKdZPoggr8QaKbopRh7UNMnBGeH59GRWCMLwbM20s+6GwuYw7vdfqiG2iGsZY8UPsHSBJlbdZb1ykeKpRC66RSfOmMcxWio2ITKsxxuxC5373kwjX25s4UJzEtDuOcXsEtViByUasIux+UoFtpIfI6lmi8knOCFwh+xUblj3jxjWqfiM7CV/ValWALFzTeN6ZuyOTJBsv8pJBN1J5+UbWaIy3QWz1xxKsQi0pXgiPPPJIj0zGzdqt6kS0jKyDJuu+k4RNJgXUR5YsD6Yj5SOYyLSUNeL4wIEDuPPOO9FcOIdztXVZRCllMaAnLttSpvtlqAeoSj513S3+nQhYSRoawLGJIn76kQOd7793/xg+fXZFaLlYZOZ4g4YPq+DA7lBMpWjU2thca8o+ipaB6YPjAlTRbCy89kcziZT5a9UOopW6fFxQ+60HTduTeRoAWsnTXHGRk1bBbU5CB5iRzQE/7/uwtulKTQk8EZpi3U3EjHMEK4lg8qFsWagUqbGWorm62Qv86On23CaF0/OAknZEJVFElGHZlXlfbfhoBb1IYWFk4YuJR8tCybMQFMhEQ4o03QHZBQVVRstotjLkbv/+OeaMAUYWdTKJcCjNFlbXN1CcnkDqFtR05bZLRyfRNHL9Jo7J609baQd1R9sBhJLfzo2et80wlkLGRMnFvnEPS1Wl/7cpU6Eca3b5dloS9T+dpHJHdSn7nxrUy5c28Oce3YUP33VQACXjJQfvOzKJ//zsJVxfb4rzmuY6f/ldJ03hOQ7SJJB7lPuVRLwECYbc4/q88la1LQdhFAnKmNJDg2iWuUhyceSzo7G6gFEPcEc8rNVDbOQnR56J2TXKA2o2hVkp1o5qHAurT0iwWtGVpPiV9TY+d2IZP/epU5jf9JEkEUbqNVzaDHFmsQ5srOErr1xDEMVYa4WyrXc/egd2H5sTpPn+MQ+XNnx8baGODx4eTLOWNzqkHCHnplOXydDCRYddlDdGRZWtIo6UDmLJXxXQimVaqPgFAdP4ExGKVq+zUjAdtOJA6OjGzbJ0XW4n27O9dTsme4ouwsL95jsF+azj2qYRu0eOHOlxiJng5+8EaGrH6JuFnB0mdoc2tKEN7c2D75noIEjlZmR/3kqwCgGwN2tzk2X8+7/6QVl7mKQhKwyLkY8//jiORg4+cfwJbLZCFMhGJxX2bgtc3oOutbs+5yDPWn9Xr7c//yP34yP3KM37ybIrjHf0m7RuONONm81IuqI62xUgiiUAeL4I0F6pBlsUj9ptJqoMkZ58s9Yb5hjdGIlJ1dw++7/TYTrU3xMA/o3ljfT3lcqjYu5TTCUGyq6Fqh+h3epNZLJ7kHgDMhoO8iG2cyt0KnjUtVELYklgS9NEbjyy7U6CjolIyrb005orIxMHWQ8p9dTDrcL5YJcdWVDkrRQ2TEQg6J9xroFWmKLg5IAgcgVkoHF2z/XQn+t994aeg+e0C5bIf1Ozmuxk+VS5JP77kvlqTEq6px8Xpu8BHi7nlSCgGcbnwoBhoRkTzNDdD33okMwsWXOAJFqzD0RkWmEcLR2hKjYhoHstquH+0UmEiSWMKpNuAdNuAV9aO41a1O6AWtSUZ2CbLDYypCsRWWze5cixDTJYajkdNvGQbSXO6N/VS9Ms33HHHeLH8nlB8MrJEydh7zJRmCwoaWKnd04oeautHUfShaf/nmZ/S9KWFJlEAspQeYNVLKGZ1hBbCeyShWbSQGgEKKKMzWQTIRuDmAIQyn4bo/a4/KuI/QlAaSFJVaxwIyPQpntm9PnZCtDacRuJA4NsNBlgxUgsLF1dxezcdFbiyQObGDfzWJlLyGZLkFKvMxYYWNe5edalnUxo3y1LErlzc3Py4vXB2IHxDM89KbaZk9PxDF+3gvX49Zoe15AtcmhDG9rQ3rixuY6FspuV/XkrY5oCm/OynlePzGSMG9wAK76n/Eq9TyPF+2Zm8fjUQfmdvgnli5iHe+8jj+CKfx0Xm1ekEKqW2vzimAOXUyo8iVC2bQH0siCb9/EKli0+kf6bazh4x8RDHV9z2pvCergp67jOLBOAQkaDPDaegAmNeSCbm2eF8rn8cs7cKln6m5ECcyggt4n2gKnN+8R5X16/p5gI1TzqxoD8e8IamPue3hZllTSwnLOvPrG1SpbfF9lYxKfN/sAGBAERZ7Kz9NAiw0TZTQWoIjPPv1uMYZlvV9JPgyzkG7lAkwCRRl1JsxAUwFhpLQl72F1obGQoll3YUjtLUC7YuHa1imKlW7DPesAVsZ2vWMc1i7tuXCDjZuSkGB8vCECFAy+4tszIxGRJNlJfbyGtZ0Dyzv+YK4hQTJyBzCwKzHMzEP3+P5nSwOC4uZPbZ9LELD6ZnIzBgaH+XuCricjHsZYp2/D9EJZtY6Ts4diBKSy1EgGtzFfbEpdzE6xHsAFDA1XYrJIkhnyff4vJNGjbWROLysTPk0XFNfHj79gjUj+sAz26bxTn11v4/IV1NHzVnK1ZK3mZsm5B5hUnYtOwkvhhfUPuYMZszBWI9ICOg3h98d5JJKdBY66eDUZ89fu1i6s1lOJxFGwbQWqgKSQCKr533LwkVoqFhQaazUiahQhUYSPz8grnxERh2hMJ13U/xpWGj1+/sIyFVogkNuElKarLmyLPU4GDJ6/XhR2GTFKU4Dk2ZeORuSz2sh2shT4uNmo3BVbhs4vPKc6XyMDq+ZMmCAXsu5FRlvWeygHMt9ewGrJObGDGHMHl9XU0ZgjC6W0SJqCllYSoRm2MOgXYpoUJ8+aYYLQ5pi1smAT3kzG/M+40lvfYdPFmjOsSa3NUPeDr0KFD8jctGUR2fAI1tSoC149vFpNks9l8WzK+/LEBq9x777031hz/BjhC8iAVSiqdkOhaPuWmEIDAqD0qwTsLjpR5yCOOP7TrsCQ7ztfXVa5BtUgN3K+fhDi5WZVONGoiUj9PJ6cE9Ggl8GPFFPIdc72sM3/q/t14Yb6G5WagOqGYyIKByTjBJdKhUUalHUqikcAK0l793I88gJ996pLQOHdY47JMxuioh7UVCyGzagOkVDomSZT85OX+LhOmWCbGKx72jo3h+CXFGkOKYVn8BjGiyPdjoRfjKpdkskRJtQprYnIgI0tca2zNUhIg0mzI+bz/6Bw+8XM/hK++ehU//g9+fyBXgjCQDEJ9k0WFT3HtseQSyHxIFxyVLOdC+u3HZvCplXWVZG41e+WF4hjV64vA5LToFKY8/s7ODYzPTMAhutT3laaftIRxDhKgVgcatc7HO4ryGQMNkcCNpVVYpLbKEkKa7llQq0UPCaHJeW49zq+gjt/gw1akfMwtKGR5i1qGb+IhLojkjJCHDsSdMyX5nSjaj94zg7Gijd97ZQkHJwsiHXRtrYUL6+0M8NWlEuxsL0fZrn8ijduXX1uQpO1P/cD93c/w1AUxii4Rm0QHZ5d5SkebOp/A0ZkiDoxauFo3UF2oZZTppLlLkEhxRU01iy1EB/O1XG3j7r19x5lL9FJP7+572zi38QSeP72oOlY1dJ3/Uj8yA24J4ln/XbfJZWCtuO2j3Q5glmwBUP3t3zmOaxtK014Aa4Evjt/y/CpKzSr2T1UwUnIRrjSwUW3hpZcvYnZmFBMTTOYq52tzJ1R3zh7YPYLZiovrVR97Rz25L+gssvDxnUcmpXBxM1YymWSfgBkopzJKAkh/pjyXiYDvbocU4/x7/m+v19j5KBqz0r2o/5oBCNM3v4wO0kHsd4jJKKbBKxcvXpTP5yWD6Eh9I2yY2B3a0IY2tDdnLMy9//3vf8N+0K3sQjyya3SHqntvSPLY0RnxS8iWwKQu1x0mp1mYJFz1l3/yXfjbv/k1XFpRjHRimqI5t4t2EOGpc2viS02VbIllNkh/l6vIS1HcBMaLNr79KAu3yiZLLv7y+w7hHz9xXnwq5dNBaIFZ9F5uEJBCVkNDwBv0M37owd1otSP8xkvzqnOqLz9HJgMmjTq7f4OxJr9DVpnDE0Vcq7UFeMCxcRw+oRbbFIIl5qHblrH/MTHpejb89tZzvFUmEznmGiWP+afvmcGP3jWDv/3EeXytWd9K8Z2BWyQxN2D72xnjT75btMnukWJPycbpTV/5v30UKzx/m61YAEOd/Wb/MoYd97Z2W0ozBgkzoxwteUqQiuq+VENTnZ5JYKHgqI64/LYVo0gvYEU3e3Q+eNOnNjfPO3xKMaZk/aPZV3jeOwJIN9ifynUrNtXpgolxj/dEKom2d01M4qXNdbnWmUzk36+3KJ+rJGR5XOwS7Ad98WeyrzhmJhKUxlgKVnHPyD7MuKMd35Mv3hNkLmnnpkiB6pWkZqEeoTBZRj1hAjhU1zlBRLmOXpHXQiLSxlLAGXAP0a9l/oMvvr/eXMNCOI+Qsl68Z11V2NDU+DTmbZqRSjzr7mTdexAmsXTmseDASLOWbqIlTDFq8vlsIMMJC0mNVM2ZY7jSAkswf5RGaMR1jFpjKrcjskfqv5sBtReMEoKUjDQaLoXOz65wO97YFEujBZPpFCMW4EpAieOsKUpR2+fn8XVdwAP3mFIemBJCisIUeXqiGxHJ3sh4vvrXNWm2qVTkxWYtfmZzc1PiGTJzEbiZp1ZnzPuNYpJkgZVyRUMb2tCGNrQ3ZizgEXj/RmOaWyltWnYsVKPeEgR9lV2FNtoJfVdTmOLIvnLn6JSsscyrnT17VqSLuEZxzTpo7RegyvX2AkyDIFzla/Wuv8pzgxFjjVIUtoOi4SGIKdmnJEiEKSL3jV0FFUdpmyvMYslfRjWqw9J+q2lgb7GMzZBS5qzZKP+XPg19soen78XTq6+ID9TvDZgZK5+C6XAMeemfrml8wXbKf6ahoDMFy8RcpYQz1WaXmVB83cFesWslKDsEExtoJPRZWQRXPvGgb5C9JYm6A+ykggnaZx3NsfB3H90nsdz/+gLjvi5sSDe1erYGu/QGd6xrZYR/PedMM0WSaUPm1DJx72wZl5qU5UnhFR1p1tYTJSz5FQ8TuyqoV9soV7xOM4I0YZKx048l/lKgF907mmJ0vIA9+0Z7mhKkX5kxb3YFVSaLGGsGWF9rqXFnLKS0eo37I6hbfV+kbEJVf0i2sOrnT3CuYaRz6N1aWMwm72Kfn8prlQCOIOitwUnQSNBWdnLyQXQH5ZwDG8k8MI51cfcdu1AquqgFER4/OI733DGBf/fMVewbL4q050YzxMsX1XETHCIMpbrOpQ5Yge6F8UQxevIaObveFlbUv/aeA9LwSrtW86VRmLEC5YXYvCz5BGnUVo33u8sW7qwkWEw8nF9tynXK2JaMNlkYJ58XRh3LFLaUrkzx9n7t/VGE2qvX8fRCE14cwnMdAZvxc0WvqwCxuRkqoAoZdTLwPeMmMvCsbfiYHHfh2apm9O/PreCqVsaACT9K0UwirDbr8Jsmxl0Le8oO1oIE6wFwdi3GbNnCvjHVjMJYqr7TNZKzXQUHc0UXF+s+pj2jcy1vRhGOjhQxdQPme21sGibDCs8jWU2cmFJKrKGYSjljABkDpWnfqI3ZJWFh2YwaKFme1IOClPJmMfa502+q/rNdjYbxyfT0tLxoPpUMshoNWUT5HTLi65iGAJJvRINxfcis8s01OjJvJjl7K1G7FqmNUqUdJh15KRMi6qGdXxYIRFlpLOPcK+fld2rS5xFP1Hf+7j1HUAt9fOX4i9goKIGKfuPjIa+3xUWg4lioyWLV3SNvpbvHS3j3bC9YZW7Ewz/+6DF84vQyvjZfE+AEmRDed2Ac/9vnz+HJS+twqBvn2hgr2Pi7HzqKlLr0fMCShjhV1M6atEFQgkQCZtxwTFz6A0AAqkautOK6f+lSJRNs8Ze/90H8xY/ei2dOzuOv/cs/koe1gDEEiDGAWkPEEqlV18pAFQ4zzUAQIlpZhTU+CiMDZBBcEm9W1aKrC/iZiQNU8iS5e+HKMj733Hmcnd+UhHUxY6BJOzI9im58fHIEjVoLIbnCuG/q9zmKaUctcNl4ScHFB2jRyZCjyrG6Z88IniCit5Exqgwws7oOa/9BILAxZqdCjVaoVFAaVawx0i2pE9g8R6QL1kCVbnUgAz4Jt3gHEp00GjBdVzlWmYKQnAbHVueu0/7YnXOtl7hdonanZ6/NBZ5qNTnACrfnFBRFWX/BYFCHbS+SvatRKQlNE3j/HRPiUJRcCx84OoXvu28G81UfXz2/jisbPnaNuJgb93AxA2Sow+mCzToXo9ZszLAdd0x4mPEMvHhxDWcXarhzblQAJS+cX5FFqNoKxGnLwhT5lzJE0yMePnSsjErBwljDxdVaAL/lY7xgYD3SiGEGPCkmyw7u3D2CWpM6izdOzFVKBfz9//qD+K0vncannj2Pq5uLwtwiDqVkbsNeKj7eeGRc0bBv+VssSOfpcQvX1ppYrLLQQAdRIZz5CsIEaysbMD0IUIVGR7BZdOE32rh6fU3AKtohnyndXGc2r92ffHwv/s1z13A1kxujM/T4nhF87B6lEahORYrVsIElvy4dCuNOEbu9ERQsOn4JLrauYN5fliBNQZ8BczzFiF3AWtAQx4QvfraZBJh2RzrSQG/EmHi2Ew+RyXOuySYNmIktQJY3a1yXdkrM8jnMdYOvffv2qesvx7hz6tQp6WTJSwa9Efaxm7EhWGVoQxva0N688ZmfpxD+ZiV2BZDebzrvlGu9Y57slQsruHLlKk6ePCHJ6aNHj/YE4O+9cwZP/M8fxnNn5vEzv/5VPH+9tzOQJjIuHimG1e/8fsGiTKYtvm1+SoqOif/zB+8X0Hfe/tw79uHQZBG//fI8rm22cfeuCn70kb2SZPyp33sNy3UNWDHxyJ5R/PX334G/+luvyr7JQhkyZsvtR2KOfCekY4nEZL/pKdmunls0Dfzd99+Bd+8dxd954jxeXVYUxXmSmS1TTZ8rooylSigzvlLhRUah63fnhOwvHjW0BwB7XZJTWKb4ZZ+9sIaPHZnCufWW+Fj5OIQgEwmjCIixTZFT0g2FjNcIYB9kPP+lrLtMJeGB+yZLOF/1JYG23bGZZOW0VFeWMFcwieNmwIOMwSOPawoindjvDS50Z6c0AmbsIkwyKjrybqJUMNoylV0ff1D3581bPsYmwXvvBvLSKb2QEQWiym8ikG7X3qsn/42ybeJgpSASR7s9F/eNjuJAqSzJxpc31+WDnmnBlUYERYvOYsiWnoBsOhTghOfOwFzRE5mc6+21DlhlMdhAkDJmUIydBErkoRBM+o27BcTNNtzxESQJAVg1jDopPBMib6Ux3KqoUFSx0E1QN/O+nyxPoRAXsRGvoxZviDwPfXdeZc0wRCsKxY/XDbe88SSpKeGMuqb5vsSDTOSCWuf5BLr+MUGYhgIu0YUjduLxBzKt6I48kd2RzM3N+fWUHCoiQBtNJFn2ht8uG6MKFNPZf4rEiBUjSgcAz+YiQ/6eWCq20MM+fNdeJATjZ5nzHCRIZtp6kyB5NorL1WrlEFWs6VBW6E0BYbrMKjsZ39fximYaY4ciYxpKoGomSZGLmph4S5kk2Yk4lDYd2tCGNrQ3bkpS5Y0XBW+ptClzZhaBrARKGDmpGTa7cR/KiyvawHxzCefPbwp48h3veIfkz7Sx7nK0chgHSvvw6rnXsO6uC6C3392iL0S/RbvB/LlouwgT+u7d9Zv7LFlFHCp3me9plLp4aOw+AcWs+GsdtpU5bxYXmldwuUmQvZobMg/cWTmEolVUhV7VLSk1mx7T0oDIQPvCELi1e5j/p5SQHxOom6szGQQqp3hocgQf3LVPju1fnDgPPya4mY2ijFkStMMcsFyK7urvPJeE2FjFBLW2rUojBqVt6Bd390NGFQKJWplEkw5tNCieP/lpiieX6jg0qnLdbFKVCkcGBhFZUp5bA/CFNU/FKKxRxR0poe4Y2Zyt40vdJEmv8MB4EZtJitV2hFI589/6fPixiSIaGy206j5mxwuotmO0mgEsKZJBahGcI1VSUQ0BczmgivZbJcZzbWFOUefRwNRUScAq4rfnnHreFrKPjhKCHlOKiLWInWxgYUX9gU3KbJQwyYSkm0rCENFmNatv9H1VgjB9j9I/Tbrs/hngXB2nzhkYeMexWYxMFOW4P3rvDP7Lh3aJrM4XTq/i4lpLGlhnKm6nxinNEgmZSLOgWepqCvzO7ZLJ3jBT7J8o4s6pEi6tt/HqYgPv2Dcqza9PX9mU61M3siiJq6y/24TkGR7b5WIqqqIAFxeWGuICT1ZcIQGQ2h+/k6iaxT2zJWy2oy05iO3yMj/2wD7sn6rhmfk61lfrEid7fEAgxdJSC/V6KHVONvvzvHqMhYm+kfoUGWt5j1BK1RC1h2pI0JuKvzUzJ59p1WaMOExwMANUMfZ3baDlA1ersYBV1L2RYNy+OdZCnqPv2jOJT1xZwZJmvzWAPUUPH56b6PHBq2ELi34V7SQQgMgubxQVuyD7PNdYxNnmPPw4yBjoAWOXhQNOCVfbGwK2IziH90ct9lG2XEy5ZbxRYyx3rLIXZxrXUYuaEhM6ho09hSnsK3Ybnd7KmKafSZKgEcYzKysrwiTJRo28ZNBbxSTZ+BZkirytmFXerN3KTkRSxiYmO2CUTjKfgoz5O0VMSfqoLqlT509henwGd99997aO3IjjYSZ20GIyI2VvUtf4aHAsW1Bq94y18OzKmmJGMQyl2x1Ri5CI4SLed3AK7909JsnJfpspu/jJR/YCj/T+/f/73cfw2lIdxxfrGHFtvPfQBEYLNr5+dVmK3TwmIg6ZyCJdswIYKFQnf2YR++999z345Neu49OvLnbkgqSTjaAWwxAGie7R5A/OwA+9704cmBnB3skyvnr8Gj7+5FlZjJr2/5+994CTI6uuh0+FznlyVM7SKq1WmwObMNEEgwGb5IhtbGMMTn9/Nk4YnLCNjRM2xkQbTDJ5gc05aFcrrbI00uTc0zlUd3+/c19VT0+SZkazrLT0hdrR9HR3vXoV3g3nnmMqOrz5MrycR4dbWmg2CMgoo5LNqHPsHL+TKZwHGMK/JDJ5xbpg6PjUd5/Fj12zUQFrSFRhnysuHnQaJMkqi6TqZvN5TGg+NzJFLoiq2E8HLBAKIKm7EPK6EPQyIV+RBLzHNPCma1bj7qfP4Zlj/fOAkhTApMyupERc5iAufHJAZjIOK59HrKWhqmXJuTUNA4VEXDHBzJgn+2LkwTjc2KLDV6pOTVUXXJCsGko2mrXWNXFTIqlmmmefiYVSR+Kc28QeBKY46GJFb75wwmm+75/d5eUkrLlsbGoJ4Kf3d2JVzIeu6LQG3oZmE7956zp85vF+nJ3Myj25ocmP0+MKoe7syAGaODtzDl/RtgEhnwsDk1kBqTSGPPjQl5/BoXMTNhWjpqSAmDh2EXVbQczvwm3bWvF4/yQGk1mhvlPAKR0T2ZwgfPk/OnDCCNMWQiJTQHdTAFesurCMDi0S8OBnXnYFfvr2bXj7P9yDh48OI5fNK0CQoE4oqmn/m5NHCawatDPvFRYoOFaCruRZYgPT1FvUM43fx6KBY40+Uyjl0+UKMrmi/HssU8TqiBe72hbflbazLYQ/vWMDDgwkkCqU0B3xYntrcMYzqyczgdOZcXE4eH8O5ROiabgr3ImkFcdAbgS5ipLKUpd6BbpfQwuDXZcfSUs5+wIYM/3YHGi/6EQnQz1X2StU49I9W6EjvzIUb/Ohds87Fl2XgJqbQ60ej8fFMaKOYi6XmyEZxK7BlUr00hF6MXQh3nLLLdi9ezf+9m//9oUeSt3qVre6vWCJXQJluRUIfK79g/2L100GC0NoescTWTz73BFctXc3msnUN9/YdA27VsVwyxoPDgxaM5JuYhrw8j3duHZ9g8QayZximGMsQTeAyT92RL12byfeed1qXLVmft/oxvWNss22L7/zKtx/ehzjmSI2NgdwZVdEfIEYC8K2lB/3Rf/DcZsdNhH+2NQUwLuuX4WPPNAjPo6zcjpdjbT8PEAW2MnVW1ar8b77qi788f09GE3nUWIcdJ5zwC4yYeIQPLHjP+tChMjuKyfZ5qzj7CabbcyVFplU0YDJvIVHB5MIug2RypS0o5OM1AjWUeyKdp5b5iXmcSEt50rFl4pFVAHM+RbGmwoYQWaTCnY2BnBlcxDfPEsp24XpGAjE4f4JinG6K0ezFUQrpFae7t6idrkotMp45vdXxOWbQTJR68VPlwRkP7Vvs2EkLlCuZimmzkXVyO4y6x2Oa1VL3jmfu6WaBBgnErBSkX/XQqQ45mubI9geCaLF44WnJjm2NxaTz59IJZEtldDgdiNVLAi1O+OK2QAaJcnjMNEoFkqXhJMG0iXFhENd8ZOZAZkRsqqwLsByRYm+raakhAhU8WkhHPDlYVBalGCisgepYgmtvpwUGZy5JdU9ZTeZvGzxzExsns/8hh8+3YeoHsVQqVckiabyuRmFFeGMteWMlOyXA+Gw71sZg2JFWeAsOqfP7pdRkBS+X0kY8apQ8ZkXfgVkWYRJZyUi8pkiyFyrwQWP5Ihq923peTt2UEaAClkZCXin/I8DVHHM4/Og4q7ArLhQ0pi2V90lHD+BKhfP6EiKdW42WKUa+l98nDAfs8qFjInbWiZJAkicLkVSbHO9c1gkuTExvBL2YpIBqsc0datb3S5XW8kajc+gnERSgMG1/psiWdDF56QsKJmXe/rPoqkUEobIhQqIbt2FQNmLYMkFmGTe4PcqUDlBHQoM3Iik5cJkYdJmdNaFGc8ql8TP8OoedPo60O5tle+bbQSsEBTDrdY2hdah09eGiUJc/IsmTwO8hgfJTAplOnaOPzOLtUDGZ8sCbQuvwqi3gufiQzNqD/QP+R6+5jUVaN2RsHR8x23RANr9SkLkzs4WfH+AjYLlKsgk4GaDsc2Ip09/jmwp9E35e8BjwaK/AQ0eAWvU9ENITMAGUkcmpZqgF/+Wn+J33DuYwOYoVQkcsLGKT6T51AaHFFh/skESZG8kGClRstm1bclYnbltkY0hY4aq0TCXzxjw9g2N8PW78P2eSRUT1uCeaz0jSvcwnsnSr3Yb0E2vsHPm46rWJPsic6WpC7ilmmOvadCQ+acbR1CyvQ+Xm3JRbBi1G6JtMySXX1KM9zVjke89H9NerXZT7Wvqw/KjlM6ilM5AM00Vx0legUUt87xskg4vpqgAEDzPeIUAJam7KWbL1gY/3nX7ZqxuCmB9o29Gk8Vv3b5O2FWODqcEbL+zO4oDp8fkXErzSC0rDK8Zm2rVmUfWyAjQ4DvGMwU5H598eghPDCTl0MiulGVMU7DPB6WXTAP7u8M4enYCXxvKw3SNSR6AMjqsafoDvC/tZhFDw7oGr1xTUZ8LV7QuzkfkmF7SHcFNXWH8z5kxPDgUx5n+DBIpq9q47/zksebyFehFdf3yWmS8z/svTNCTZcsc1zR3izSWDcZSLE/K/IaJtGUhzVZ+i+CzkjQ5BAwX1gQWn7On/Oxb17XiZDKLRLGEiNvE+pBXWD0dG8kncCw1hEKZslc6RipJDOWnsC3UIc+7E+l+kfaReMyhqvHryJUzaPGEMF5II11WcqwBk00Z7TYj5/KNgJmdoTVIWBkUKyX4DTf8F9GkfDExDa9R1km4rV69egaT5NmzZ3H48GH5mwNcYS1npSSDUjazyovBnJjmRwqsspKdiFFXA0YLwwqpy1RPRemsqUVSdcuQdpYPnu7WbqxtW3fh8RkmQnAjp1GZe6bRGeL/bmptwYlEEpMFUuKqpx0fwrtjUfzE6lUz2FcWaxz39taQbI719fVh+MgRbIq043iCOmgVAayoBkxNEKV8rDDBffvmZrxhTyfeuLcTH/neSXzsntNC7c2hxPxuvGRzI/7rwbML7p+L0ngqj4989zju6s2j0tKG7qALY5MpjGYWcFxl0SK7C1GIRBQrqmilm8eWQaJvbdRnPr8gi4mk5shyUS7hZP8kXnP9Rvz5Zx5G3ioJuMRBwLKbcVVLBGd6R2TBFGrhQgWGZeGqNWG0dHUhEvTi1Vevw3Vb2/GuTz6O+4+NYirL7k7VpfmB116B9S0hvOPqFrz/5MBcsIrtdAlSlvqKuiHsNQQ1MJlfyGaRSGQQCAfw01d34YrOCA70TuFb94xgYgZLyIx2MnHKhVKNTm9HFH/+tj345f8+iARVlgx2VipNRGrrzZZQIjinJeBG3Ol2rWVBmedS41w5OInp01SG2z1d2J9O7Doo4/nxSKRdI/PIVLYo11Nb1IN4hvqCZSls8NqSrtvvnZaCx62bGvHWqzqFQo62tzuCXZ1h9MWZUNXkM7/9taOC5nU6iWfi3W29e5uKuzdhocWjw+c2EAu6cc+hQRztj2NLRxgH+5NV7VAZW9grTtS7b9uIJwfTGEhaaPbrCAV90Ctl9BcswOuBu2QJ4ItUdnxyTCRz6Gjw41fu3CqyQksxAmSuWt+Muw8OoGx3WapMf6kq+VNFGVU9bnrBeZQzGWxo9qNvImNL50wDjJx36z4vysWs3B90iANuE80+E9mUDk/IL520e9tDeM2WZimILMWIbL5lneqom21pq4Cz2UkJNkKmCpB4/caLWfRkxmFV4pIMn+Y3UQMuaRWMFcdwVWQnpqwscqWiMLE0ugiEWRk6aUmHrwCTykokd2uNiF0WDp3iYa1kECm2abWJ3uXoCTvGxG5bW9uyP1+3utWtbnWb7rC6GLDKxUijOkaftTniw9hUVlwHJhjpp9DoO0lCj+uKVUJ7xI1bbrz+gpq4HN/mJmoFA7P7vlRSpizMg7//ii34f185jFRelaYFVOJ34d/euhcv2TI/GOZCxs62l25RUqs0gjkPHjyIfZEsvuMykCuwUMxElyZAChq1yPm716XjPTetxU3rGrC7PYw/uOsEjo6mBUxBUPf2liBOjGWq9M2zLWfLkj7eN4X/OtCPnpG0fO/qmA+TScViVwuAUKduOlnJ+SKQRCX8bNnKWYAIzu35pHp4SPQxx7IF3Lm2AZ85PCxxlvMRwTTrislmMqcoxBVIyILfADb6yvDHYugOenB7dwQT+RI+emgIyUIZms3K0hFw4+2bmxCoFLFOz+HQPOkEJxpxwAWw6cTJZpmnRFBe0ZM3e0y8pD0sibGRbAF3DywUryljEtrBCt3eEYaRS+DuBI9DsazQ587NoWpXYyGcIEj5yQXANbNndfbtKUAOO3lee9vNvAXnnhu5rsVProjspbsM+D0GUnKfaQgzqe3RMJBLYSifQtjlwjUNTejwqfuMCcF9DY3YEYkiU6LsjYnBbA5f7hvEeH5uZ6XK56rgiiAVgvTHKV9qlhAx/OI/9+ZGZFxkJExaeXh1HaahKNN1zZBk3/ZQN74yMChzFzYMGIaJ8UIRuZKOqYILzV7li0tRRK+gUC6iyRVBp2dp3WxKVsiNkWwWk8VU9XWyqLBxxJEuVmwxNsjKZrrJWUUE9IoUcPJkXJ3v++1YgaAUhzXF0Ci1ZMmxqghVhwcE5wSXPna4ZZvPSlqxKu/jyPkophVKWPGY5pf6UlUcwFX2yef5rBdGFhuaszI2C9X1AoDvZxvnhMlWbt3d3fJ9TqKX9NpkXuHfapkklysZRGA/19EXAwC/bnWrW91eKLvYOGQlAfhtvmYM58dUXUBntUQV7UUxncxtBHaIjHsJDf5GXLl11wXHz/GFSybSroL46bUJcdZHmLNsEzmfMSSKCQG0OBYxw8KcQkDKcixg+mVzbHx8XGRYI2v8SHhVnpaeAdP4Tq8qx8g8dcQdwoZQF7ZGTLT7Qnh4rAd5WxaEBeKNwSY8FR+U3xUpxkynl8AbgmCemRzAUGEYa6NFmJoHyYKJiUJBWC70GjlItX81lwRAlx2WFruju1gmcJ2sD9P1CmF6d1gK+ULNqajYMQ0B0quCXkTdJqYKqomA54y+IY/Vb5rIFdT+VC2OYBATG11FxLweyXte2RrEdR1h/ONDZ/F/R0fFF1fj1PATO9pww5oYvMUk7u9hfEe2kflp5cliU2GZRlcN26wDgA0fbFBOFXDbxkbcsr4BB/oT6CtVMDnzcqkxBdbn9clYI2Bo+PhbduEPP/8oTidUjOqyNYzK/tA0LEWuVQVSj8aCmJig1Ot8CPl5XqOvRCYUxwjQymVRITOKXASGTU95/vuBda32mB+pnIWpTA4tHU3IZHPIprNSN2lpCqOxKYx/eOCcxORXdkfwi9evQoiFE7IHNvrxgZdtFCZ8Ak9agi782TeO4rOP9iJZG18Lk6JdKKqUYbpMqXv2xbPIS/ykwCSHR9J4djiFtQ1eZAqWxLw8N2lXCTFpHAdevrkJhYyFr47mhO2+MeLDZLaI0xNZJFNF+Mla6lKMmLw8U8UKmtw6fmJHK9ocSahFGp8HLdDx7JEpZG3WHakxUUq3Zm4FLG8HtI7AwdhYHvtbApjSKpgsWOoyrKnPSJnT1FAushGBoDGCs3RETDeSWh4xP9mIytL0sDPSgBhVIJZgZBsiSG0+43PtTGZMngkRUzHmSFN+KYcz6TGRDstWazTTxkcxmTxvatiONf5GpKy8PH+aPUF4lvlcnG0cS8S18kCNxTCrLJVJ0qnRUAKVIM1aySDGN8tdTzMvQqbIywqscik5Qs2eViQt0h9lbWStQrQq7WEuvDbrCOneGtcu6jvJOJHUspJYIiLRSUKrxFwZA9kxrA604Rc2bRB2lVPJpCDddsai2NkQWxZQZbZxfpgIGBkZwd69e7E/GMEH7j6Go1PUfFYoxgCdg3wJ29tD+PEr2vCWK7uqidP33rERb97fja8/O4RDIylhpphK5RcEJHC6hpN5/M4Xn8VzA1MKbahVcHqybBeFFwCrEH1NUIegaW0kLemv6fFYBfJmyxOfuAUuApxb6sJJct9OAjupTGdYRDh2NoXwkV+5De/5x+8LSlO6HMsV7N3YKlJCfTrlOBSDh6Bx8xYOnYnj4d9+LVa1T3d4fvLnr8UDx0fw+JkJBDwmXr6rA50RDw4cOIDV/iw++eu34u0f/Dpy+ZoF2Z4gzeUStg459zYaN+xzIZUr4upOP/7h569Di71ovu2aLjx38CQmJpncm+/8T6OMPW4T//GL12JDewSbohoOTioAAhf9RHrmPNfOy1iygKaIB/E0dcoXlgOi1QJVag+rUCiLbv1S7uFkvoR0gRqhyun+hWtW4cd3tcmx/M7XjuLsRBadEa/oTY6ni/jqsyMyL6/YrooU8WwRdx8fx9N9U3LdXrM2hmtWRfGtwyPzOGGOC6hSoPwXiyfnRtPYv6EZm9sj+J8HTwuAqTXkQaM/KywtdLCEanAsjTddswa3bG3Bvz72NIJuhdzn19GZosNJBKzH60ZYEPd09HT85PXr8Lr9q9EUWjr68z++fwx//41DyiFwvHsHfjvjOVdTobCDp1IqiZe3pvCldEWo4Ek7V6mR8eKzxNcQweqKidODcZEC4r1FHchX7F2NX33dTgHXNPkp57RSSVNl8WJGNOij5vSccDzs2hwrpOExSPPtJJ9rHD4mrSsFeVa2embKoF3KpgBeF+cIzTYGZZ2dnbLxu5PJpDhFQ0NDOH78OLxe7ww6uqVIBhGs8mJzhOpWt7rV7XKUEFoJsIrfY+LD77gW7/7n+5AXFg5b1oSSIwR35IvIFSzxsd/3E/svCFRxxndgoCB+AzvYyMQh4GmyNJbL+N9HevBHb9yLn75mFdY3B/DpR3txdjyDbe0hvP261djeoWRKLtYol0e/m53zb7zjerSsi+O9X3waSRtUQsAzu74I/t3SEsBP7e3E3i7lP7QEPfin12zHgYEkvn9iVOSGWoMeHB1JLTjvbGB4+Fwcv/vd40IFTcsUgcNDTCbOYulw3P6qjA0Tuep18kqybUFpTtsdnMIDPC07yd9ms3BWv5drdbGMN29pwZGxNJ4a5pgd+UwNP76xCd86Gxf5JYcGm/5f2lKyp7995XR3Z4sf+NA1q/D4SAqT+RI6/C7sbQ4gPRXHI08/jTe0tqLJiuD756ZmHpszrhrWGgE1GLokt3lNvGZVI25uD1WZ9QiIunugd8Hz6Xwnp2JHzIc3rm3CsXM5PJTMCHuNSA0x4SchjZPdm+7UrHZlCguH4/XX8JtIY4gNKFgg2FEtKgSsqDMxnyx8LcuL82PSbuLg/cVz+q6NqxEyXTiXTeP+0RGJ9QM2oyiT8Q+MjeIV7Z3yGm0kn8OpVAIJq4iIy411/iAibgtj+ek9Op2qtccjajcVIGlZ0mna4Y0hW8oL6JuAbjeTslYe6dJ0POrXdVwR7sBAVnUsuoQxlXLHJbl+TLJfWCZcumLrJJV4UPdiW3AVGtyhRTOTOEY/9fGpw5gqTQNVaFLwofSPnFdbrso2xvQ8j3zP8Ngk/OksQt0+ldmadWtKlzNleUT2Jy+AD5H+0Uw0Gs3w6wEBsSx13IsxMqqQabc2XlH9sKQbt6s0sz/D+ZaJ5fPYozK9l4ldSNZ0qUbgC+MUbg740JEMogQqteKXyyTJeIb2YmBWqVvd6la3y9W4ZvDZvhLW6WvBUG4UwzkCVuwXnSWBPkCJDb9kTHFj96rti1ovOL6CUUSYoIRyRWoi/Bh9TvqjA7lhbAyuxc7INgzmhmvkfBrQ5mlZNlCl1hh3kGmMshJbt25Fe2cHHhs6iKHyuABxRYLRcMEAc/sGOn3NWB/sEoYX2sZQE1b5ozibHkPCiot0qKGV4dLLKNoyPLXGWeFc/WD4BHrSitWfr+UrWckd61QZmMOYT3yQklN0mgpl/gSgy/ERXGIhU6Q0kMo7K5aWaebH6b1PG5kgKZP5i1s68NHn+kSyRWQ5KxU0elzo9gcwnk2DiipOPYwxxjDceENnANeu66h+12/csAYv39KMR87FZT/XrYpiQ6NP/IlEfz8+eMM2fOR4EgnJjc+KrcgsaUsLSWxmN0gwdmlrC+JPb1gtTO+01+9qw78dGsbXz3A/c02GydiOs6Vr+L3runF1Rwjf6PTgXDwFr8GmZR0FQ0FWpqfYiVoqyJSABp+B8ZyqQcpfqmSTjoyONj9QxaHAJyg+S6D34ptnWA/oGUupeA7Ay7c34r0v34aoz8SfffcUHj87hdawR6R02Ahx78kJaXz5xRuUBBabwu87NSnvI1PP3q4wXrG7A596vN9B20+DZsQvV3EygU98ifWXU+NpbGgKYEdrEN8/PSH3ZIPfLbWhI8MpiV14iGwiuX51FG/e1Yaf/sTTwprCTcZRqkgdKV8sC6tpY9hVrb3duCaK125rQUd46Ux+T/RN4UP39FSBKs50lywy7pDk3o5Va5hnmWPhdZBMWvANnIMWbkA/CKpX59DJFPD4Q14NTYYLQ5kifDwWTbH9b44E8LYNDdJEHDZXvkaTsnLIlAoi3TPddK7Br7uQKuWkzuQAVWrZ53ldFiqWvKfL1ygglcvFLraheLaRwYtNv9wcdkfGM4xrTp8+LTWZ2hqNZwlMki8WpsjLFqxysbaSYBVSvK4PbEK8OIGUlZQFgkXSRDEuDxtNlh7SzLmRLWfgNxZR3DPVwk7gC/Xcao3MLUwu0YIuF25tb5VtJY3d+Ezq8qFz7bXXSsGzP5nHWEElqRQtNFA2dPzBq7fhllVK1/HwSAo/ODOBdLGE7c1BoUL7tyf7pDtTxl6uoKktjIlRleDlYiAmyVcdT5+N49m+ePX9yirQygucK2kLVIkQpyuVNOVMYlV156mFHXYJSGF4Mi0JqKDPg0wuLywi0181naZ0los33LwF127rxJcfOI6pdB77Nrdh26pGXPuufxemk9qHs9djIp3J454DZ/G2GrAKk3k3b2mVzUG6PfLII/LAueaaa+RB9cuv3oO/+cJj0zBoZ0y2I0EHwGEJsadL2EYcoIpj+ze14MCp0dpUZU2SVv1Y3RLEX7z9GgGqTGaK2BIq4XjSjQzBIOykrdGbdyScJBFu4yB+axfwzT4fnhzKy8KrfAjlXNEE7FDDzDHfKRPkt+0czLZa+uxa4/65MXz5hwfPCfCnKejCuckc1jT45Pw6rDEE8/z3UwO4c3OTXIsf/M5JHB5MClCE3/HQmUmcGE1fAC2sEM78P0FjN2xpxc/ftlGOkwUdJvHJchNP5eGjk28qivWQW0fvaALnJjJKT7BUxniqBD1bQZpah6aOYkXD+oYQ2gOmIJJPDiWxriW8LKAKE7v//J3nqgwxVQfVmUzHOa0FIQi9n7r2eQ8W9SBeu03HmfEsehK8L+UMSILU6zFw/fpG/OEda/C/D5zEY8eG5Phv37sar7t+A4K+50drTw1//vMjtOXJMs6NKimiNc0a2iLTBSOFPFYsV5eT8VzSVtIRqjV+LxO53NauXSsIXkcyiAEvn/vhcHhGovd8Y+Gz7HJzhOi8/dIv/RK+9KUvyfG9733vm/H3T33qU/i7v/s7CVQJxLn11ltFHqilpUWuqY0bN+Jd73rXjM+xq2XPnj0iu7Rhw4YX4KjqVre6/aiaAzDk83wltG9fsW8N1n8ggs/fdwJ9Yyk0R3146uQInjg+VPWr6Qc9enQQr7tuPfyeuTTWtcY1ZCJbFl+Y/k6tl0MXnNKg7MhqCBq4dn2jbCtt7MJn1wql8rjRV+il1riltKvZ2cdjY8Pff75pJ5qDHtG8/uLTA3iyd0oSkLdvasJ/Pt5nJzXt8RPITn1oYQxUDrPjh4Q9Jv75sV7xC2sL6xTyUGQJ81Wm1Y9pfhWCmUnpW57BhNLgcyFXKgsIxbQBzw7opuZrxLiCM5nMJNwf37QWTw+ncHAkJb7ojd1R3Ns3JT4jqdCrn7FjvKNZm8miZqyUALq1cxoETMY2rpebN2/GqlWrsNkq4cBwChM55WNW08016AnZ1ywGkkavOUMCkg0YTKDX5PdmmNNNua/Jh3dsbJT12esqo8ss4mzJg7zTElfziWp8Yaf6fIUcrncV8JQWwlSNFI+TBFUxxfkTfGwoEZyBoyszzzmY8UoN7TlTyqlyBd/oG8SPdbTjVCop+wzZ97FVol+oYyBTwJFEAvsaGtCTTuHhiVHkSpYANwayGTw9GUdvmgCOmft3wGbOOBlbewwyjxhY529GizsinW8im0PQSYldqhV4dQLgKFHDYoIuMkGlCnMXFbB3pFApSgesJIwFKAI0uxVzYVGhgxBbBlCFNlQYQ7I0v1AWwSjMqMxuXSHLD2NkoU8PmYhWYkhPJuCKkQFGNI1qomINzSbjcQ3JUhzFigWv7kNYjyJg/PD9WQVcqyBfzqNUKci9xnxRde5WNr/8Q7WLZVZZDJMkfXPHP69lkiTFtgNucWIagvPPFxvweXIxbJMvhNVjmrrVrW4vJltJ9nuuo1fGtmMwN4qR3LisEwRvDGZHUSKbml2MZmf/eH4S7b5pJsbz1pAMxawesGsQjjHvmLdrNGTX7/J1yLaSRiDPs88+K81n+/fvl5weGfxdrjIimksaDhmREPTcHejEmoACBWSsDPqy/ciXWWBWkov9uTPyWce6/WUM5SrCmKdA7az52JKXmoYz6YkZEkNyzPQZDR63ITAZeav48PRwK0g5pQ1b3pR+IgH80kCrAxGPYvCbIgsGGeilqZMFbczrT5OlheyLGyJ+fHDfejw+msB4vogOvwd7m0L49Qd75H21cQvjJPJSHEoUcW3Nd/Hcb2kOyubM7ZNPPilMa6zRMA/4854A/uZpxThTW6fJ59W8sZzB+kL1O1n5M/QqUMWx9ZFZ/scs1R7+M+o18fYdLQJUSeUtbG33I3w6h0TWknhT87trwOgqpnFqNPzCn93lxom4ju+dySFVsKsBTOpX76casEp1HDVgfqde4LCrLNIEuGPX6j7/1BBaGkN46fZWac5oD3sQtGWWWBcsZAv4v2cG8JqdLYgF3Pj7e8/iwTOT1WN64mwcp4eTyOYpgaT89+r4ZIzqV1FDYoxiatjcHMRb97QLMMNpuihYJYylC3CbusS7BJYRUEYWnZPjWambcN5SFpDPWtIYzffy8u4IeaRRhk0sZ+M5OYblAFVo/3lgUGpRzuzPiA0V3ZBqQql5lvAQpJGCihNmM64PVDAwmccQ+XXsWhcjHsbI3QE33rq2HY8OpfD0aEbm+fqOIG7piqDBZq95vmz+1njVmDOaNTFa8CHsthD1qAaNmgqjSAddbrbSDcVzpGSDQdmYS6llkuzt7ZUcFv/mxDQXYpKkDNDlVqO5UEzzIwdWWSk9RPk+zUCju1k2PiRO9h+HEVKdPs6dXKjk0Zs9g3X+zXDNo1FYay7NgFnRBUFXy/DssB2Ea6iN6BilrYyMwW8oGqaLsbGxMTzzzDOC8iJa10k0/Nszg5gslKXzyu1WnZw5q4J/fKofe1uD+L9jo/jPpweU9nkF+M7JceQLJZQlSSoq06JzX9FdWLW+UaFoy2Uk4jnEx9OCujw2lKgCVehACgClhgZ7XgQEacqqLBBAyO9BvmApnb8aI2jA53Zhz8Y2nByIo1C0YOmqM0xYWMQB0sXBWNehunZoXc0h/Oprr6z+3juSmCtaWPMraa0vNLcdHR2S2OXcZnJFfOrbz4Dk6vyd8yffQaR2JgPd64HfpebPOQ7O3S075jq/b755M/7jO4ftjsyZXt4rrlmP979uD7Z0Ug9Nw7HhFO46MoqBZAXbmnw4Op5DkV1zpoaS7SHW+ge0pqAbr7puJ64bH8fJgTF88LEMzqU01fVlOxAuoVQkldnC87BMtvuqDSXy+J2vH8OO9qDNVqIL2Obp/gSmctTDrKB/Ko/3fOkI9nWHcWgwiTUxnzghNHbDUtZoIT15cc9lVdUEC/VzN67Cu29ZV51/Mqw8eHQYp4aT4uyQqp7IYF4/u7qjGE0W8NzZcfi0MnoSBRhlIjEt0dxESRd0NO8JFm4457wGg8t0KOjQjSVz8Lh0WHkFFJotkTXH5J42oZdYNqlgOFXGe167B3u3rsfH7j2Fu4+Ni+RS2Gvg2g4DP7fHhYCex3teswtu91V4Po0FmLGcBQ+p6V1eoYRjAp1ahjTeG997LoWDZ6gtWZJr3W1WsHe9hpdsm+5KNjVDOkUvR7DK8+UIzZcQaGpqko3G4MxJ9FL+jeOZLRlUu75cDGr3z//8z8UROXr0qHwvNYI//OEPy3PRMY7nN3/zN/H5z39eOiZf+tKX4mMf+5ho2dcWyujU3H333TKWt7/97fLdCzHEvP/978e9996Lr371q5Lg/r3f+z089dRTooXoBKp/8id/IuMgq9h73/tevOMd78A3v/lNOfaf+ZmfwSc+8YkZzhN/v+mmm+pAlbrVrW7Lsovx2x0ffaWSu7QtXTF84C37q8/h1/zRl6rMfGT/4Dr83/efEF/y737xlgseW3fEhUolJ/5TLfCa/n5ngx8R//Ra3T+exlA8g3WtYcSCy0sOOcY1jAyRZBIjoNBZ686Mp/GX3z8pWAafSb/fELDKqbE0PnL3abz/tg1452efxrEa5pRPPd4nyA82EPB3dmMxWcSEpaMuShC212sKeP3GNQ34wuFhlUR02BLtjqjzWa0L57V9xRx9aluD3fk7QyVqWXdHvOhP5af7lmrYK+nyMg5t8burydu9bSHZqvtb5FjON7dXXnllldb2ocGkyIXKtWLn4phwk+8qqxypk9fl3LLj0Wfo2DQrkUu/+NaOEL7Tl5wzRn78PdubsTHiQdRjCj35eHESKTONvdEszKIX/WkybtYC92d/A7C/qxVXuS1sHJ/AwakUDrhCKNkgAYY1DC8Llg7eWRcCrSyMKpiZnpwdPvL3Y+k0ek+dRoPHhN+OU0ayFnrTRckDMC789sAkyIg9aiUlKdzo9sj1xHvxQDKj3H3x6Ke/nQCVWsAKzW8YuLlxrfjXnH+P5kLYDGA0PyWMKgSnEIBCrW+f5kLQ8GK8mEKbKyAcPyVTE4AHr2vGURxfzC2CSEpKFGV4dZfKfyzDJooJ+yhqgPez5mu2CQCsXFYyQQA6ujphoBtpK4kJaxTFChPvFeTTRRQmSyiZioq5LUw22OeXqYRdziRpF7aWioGSrmhHHXYV5nBSJUoFqKuMpmtZhFzBWbmiyw+1stLMKucz6ej0+2Xr6uqqMklSJmFwcFAAdYw1aiWDauMEJ55Zzlr8QsUztHpMU7e61e3FZCvZUOwAVjp9rbLRzgz2oN+yoAkLgXpPoVzAwaljIiEYc5+fkZk+g1HQUDKVD+usGSr/SgCLf0bdZkrkDJUsxcUy33NNYzMx1zk2EzsNCr3ZfmQqWegVDW6T8ZaSPOrL9KHBHRMw7JHkcbvQrbxE+pX0G1WdSVWSOSUdPvHaFSujpWEyrxqnpT4hQBUFXnH4x4XHg8wyhmKvkLmoaT6VnzZ9oc9UQOj8rPcIq4quo9vrxWCabH0V6CUFlK/pa5aYxm9oCLqUXxFwGbilpmajvmthb+l8MQ2Lu8wHEqDCuXXW3W+epRy9c1yqkZX78PpcKBZK8NhN3M5xcOf72+bmRq9pC+LfXTpSTFxXGU/UgXX7Tfz6DauwOuwRsAUlce46NopjSeC6Lc149MQk0tQ2qpRQ1hRl4OzmXs7f2+7Yi0wyjjcPjOBD947iqUH7PpJj4Tlms2pp4c5g2nmkZRdjiVwJH7rrNL56cESaOdpDHgGOPHlyDCPxLKyyAon8wieewFuuXyMNxGSqJ/MK7dxYGuNTubmyB7UTZqN0GCe+ZH0DfufmNaqeV65gS5NfvuvUBAE7ZZG55f4Mq4wNDT5ki2U8cDaO9W1BPDeUgtutwSwXVU2hyBobpFGXDR7OFPE6W66dHM9IbMJ7Zw6j6uy+DduUHJYCe09YGvZvWY9NBQv3DEzgibEkkkVedyV0lPO4miCxuIk7Oxrw4+tVHP58GWPthEVGSkpVeWQjQ0rImFaaOD5l4fikWxiaciU+8ypo9BWwqSEpIBwa40PKzl5uttLMKotlkly/fr1IBjlMkow1WK+oZZKcHb+woZhxznLsUo1pLiuwysUCMlYStVtrvJCIdjXay3AzyTBrmCVYmCqOo8nTdv7xGSYa836M+KmPTmpdO8FZqQhQpc2rHka9mQGcTp8VrWXuKmgGsS28CUFz6dIMfMCQcojbtm3bRDaCli+V8MT4GEZKcbRGK4gnptlEPCaQs8r4xslxfOLpAUF9ipMg6iNqMTftB7yMXzfgtoEnBKAwIRZr8Asbyu/cvA7/ef9peANuuL2KrorvyWcLyCdtYNHs827LmYS8BoqWJqAFLlY+j0toyUhjTstki5JEvnlXN/7zd14p++0bSeClv/V5JDN5AbhwfwSwcHRvf+kVC84TwStbVzfh2dMjAjpwrkVSoxNZe/0VXfPOLbt82HlPABATKY49fnQA8VQObrNWe14BPrigE8k5nLFEBclJcl6xugGvu2bNnP1sW9WAD73zBvz+fz1k6/ep91+/oxNXbW7Ffc8Nyj46G4P4/tExWbC7g8C69Y24Jl/BA2ficLcBPzhCDToHqWtPPYB3XNtdfXCetiIou45DN4ozzw1llpQ6/YJzeLFMZEJHWK7g4EBSdAi7wm4cHckIUwx/5wLPJP/T/VM4NpxE2GtWgSq0ONtpHZi3OHzzD4gUghG/GxtaQ7j76Ci++ewQBuNZtEW82NjVgB880y/XGT/Na29NcwgNIS/imSIO9U6iEp+SxG/ZNIXG3aF+J4jrmaEMej06IkYZm9rC2LV6prO9WKO8luPMz5vcXcgzpzZmSekRxgKqILS+JYi/fsMuSfLdc8894qw7AAYuOER1EuXoLIxcJFdq0eY98sRYBg8OpTAlLD8aVgfd2NUcw5g1gcliRo7v5HART5wqImS60RR2IWGlkc5X8PgJFr2AjW0V8cUbXVHpTryczFmTfliO0Gxj1yGBdNx4PhzJIII2+OwiGxQdEl4LL3vZyy5KBoiOyK/8yq/gqquuEuAonZE777xTrjHnO3/jN34D3/jGN/CFL3xBrrV3v/vdeN3rXocHH3ywOl+veMUrBFj50EMPSUL6bW97m3RbfvCDH5w3EP33f/93fPrTn8Ztt90mr33yk5+c8TwmGMUxduD//d//vYzRQSgTuPIHf/AHeOyxx6Sjhc7iZz/7WfzVX/3VsuahbnWrW90uxkQeZoWTu7UA62/c8zie6klKEkis6jtV8D/3n8DvvvEqtMXOvw7s7fJhcztwbDCpGEx0TYC+dHl/5aVbxScfS2Txa//2AL77dK+i5TZ1vP0lW/Anb9kvvvZSjb4Lk7pcy+jLOJJFRwcT+P+++hympqinTeF65SdwTBzPNw4PC3PfkeFkVd7RMa2soUQaDTJQzuPL0m/PpItoD3vx+u1t+PTTAwq0b2dbGYe43Ab0muNxAMaOH8oxsPifLmkCpKEFXDoSeRa9lZFphWwpv3JlJ27pjkrH2NdOjuOzR0aEFYQdlXwvX494TFx7Hiklard/8fioLe86nXTnsDZ4Vfw5X6zLueXazSRGLRvB40NkGFVsLtVj1DShd466dBR0/ltercrw/MTaWBWkUWtvWBvDuVQRx6ZySjvcZmV5WVcIg9kisqUyrmoOwEIGqVIKRkWHzwJ+YnUQx5N59KbKODWlYXAWywuNjIlMcoddJmItLTjSO4bSaEKgBTQmpEm4TZmiMllXlgGylxmYh8l8DmClAmTKZRRy9G0JMDFwLl2QY/aQ8dJWiLl/dBIRbxntvmna5bTFAgLjGDu2nmecAiVhMYGdwIabsAk8OzWCvlxS3t/g9sDQXCiWc9N07JqBkOkX4HfOyqKIOJq9ZfSnNGRLqplGxfuqo/K5hIUOnw6/wfG1LDtPw5gJ9nUxfcUrcwBQC7GumJw5kWIm64wHQVdYNnalMcnHRNuEpQDZzNU4gOzGxsYqIHuljATYWaRQRKF6nbsqHrjKJio6ry51bJlSWnI4pOtX9aKyArBYaURdqmhWKWswSpcX+P6HwayyWCZJGp9VTqKX8QzXBzJJHj58WLoYGTcsVx/+hYhnaPWYpm51q9uLrUaz0g3FtesRQYtnrUGgaea6xNWY6+6ZdN8FwSocn2vMQDnAtboMXaT51IpOmZ0Or6rxDGTH8cTE8Sobvt/wYl/DJrT7lldQHhgYkPVqzZo10hylfDUyoYzhdKoX5UoJhs2uJyz4zOOjgpHcKIbyIzYg1p4L27WS5dmO6fheOXU17H8hk0x7JTS725GVxsESQqYl/qQwKFgGJvKqhEhf0HH7FUbfltosl+HRlXyNanhQzImFsireU36Fn2jzufGr27oFiMLa0h8/dQ4j2SJ8AgZR4BoewY3tEXhrmh5m25XNATwwmJwBJHIAL5uD83+Oec6DBw9i9erV1bmlxfMWTiXyMk/T/qcqypOIfn2TX2RrLcuGiWsQNovXbp7LEMrG49/a14m/fHIA6YJ9LjQNXQEXbu4I4cBQSmo3mxt8uP/0BEZSBXQGNOxe3YAbt7bj2weHBCT02GBGYoLaGg3tts2NaGmMAo1RTCCCPJJAxW6wFk0mbroCqyzcrTv3i5dhBFsQCEJW0pjfxEQ8g8GJtDCFChu/pqFvIoN/uOsEIrFgFahCG0+o7g8Ffp+HZp9MJASM6ZrUd7a0BnFoKIXvHhvD6fGMvNYWcmMokZPrSCRXNQ0tATeaA26MpYs4F8/B8JsIeA1k2OSsQ9hUBcBPoMtoGuPpIlY1+0VOaHf78hkqCHrh+VbX8OKflXLvaECTT/n+UbeJ16xpkY0KDWT6pn9In5ZNI8ePH58ByGZss5Jg8eF8EsdTI0iVCvazwYt2TxCFvIUpKys1mlSxgiMTHolnmj06Joo5YUcdzXoQTFnoCmXl0ou6Amh0TTfNXC72fDKrXMjcbrcAQbjxOiUYxYlpenp6JOZhnovXBmMJ/t2p5b9YYprLCqxysSZ6g4XCin4nqXqYvGMx1xv2SKJiPmNCrWkR4wunXWhtX4djyV4UyqTm1dDqbcDehk2CEh7KjeB46lT1MyJ/YqXx1OSzuLZxX1WXcDHGghsXaV4kV199tQTwtJFcFp86cxxpy0JzVK1rHY3A2SEDucJ039Szw0lZYA1SfHum5XEK+RJymYKATgTlK2ujWuS5yMjvZFCI+nD79lb8w31n4KmRFREZEhbS6cwkZupXqzdoCBslFDVSypWQKxSRZOuZbVyc1raGsGddM+7YtxavuWETPC41L2vao/iX33wZfuMf7sJIXNFmed0mfv6Vu/HmW7cvOFcc/x///EvwU3/0JQGoOIlB7ut117SjvSEw58FG55JJf970s1Fu869TqnuV9qG3XYsnz07i20+dg2nqeOWVq/DOWzchsAD1+ltv24Lbdnfhm4/3IFOwcG48g/9++AweOaM0Mz/4v0/jVVevQWtbIzY0B/Bkv45T41kcGs1iIKHQkp2NPvSPZ6suAqm5r10Xw5mJLPZ++AFMZotzfBl2IIpJ0lQTWjY6b7NNHD4Hzb5Mf8iplfAOoyNycCiJZLYkgBEylfBctJFXEBr6JrNVPULHpEPV9iprtcNnW0fEK0Cqx85M4olTY4qe22Pi6GBSHIidG5px+Ow4OqI+AamExaGoCGhL6AGLeWz1mTiXd2GixMChogoX5TKokpop6IijiOvWxXDPwX5cu7UNURs4slhrjfqxa00jHj42PM9E1RRZarpt7VfkvywydbfMLGQ4xROC+majOrkoslPt0KFDM5g3mOy9mETv4ckcvtU7Jecj5jZQrABH4zmkii68bl0HElYGhUoJj41NQa/k0RhwI2Vlhc4z4C1hLFnBsT4CbhgY6dgUWo3LNbG70rqSyzGOgesANwbGdDooGfTd734Xf/3Xf41f//Vfl+vjf//3f8VxciTNFmvf/va3Z/z+n//5n4KgJf0mWUq4ntJhIRCEUjwOgwnBfnTEuD+OhY7T9773PRkDUbdkRfnt3/5tfOADH5gzHkod8RrmGucYr91apDD3z8+SAYtOoMN2Q4AOQZwE8tD5+o//+A8Bq/zf//2fAHje8IY3LHuu61a3utXtYmylwSr0Afi8pCZ6ydeEQunsHJlKuhDZQgkn+uMXBKtQNvNff2Yf/vT/juPuwwPCsNIQ9OBXfmwrfuYlm2R/P/WR7+GpU2PVbjuCWf7trudgGhr+9Kemn9mLMfoofIZzTeGa4SQX/uJbR/Hhbx6txiOZNODNWmhpUh0p3Mj28uWDg7J/jrPWb+JYatdoJ9/nyPqQQYT/bve7hGEil5uOEWjCOpi1oAdctoJpLVhaJTujPgN5MlsUy5hUdHzOdAsAZGdbEOuiPtyxNoYNMQXA8RgaXrexCePZIr5/Lo4cfQlNQ7Pfjffu6xJq5IVsc8yHW7uj8rmSDXKnBV06bgqpJHutJRIJ6XJhLENGldkdMvN5L84hsjvtvbva8c2eCfSni2jzu3B7Zwi7G6c7UWuNYJ3f292KI/EcTiby4FE8MJzC189NVWPJz52axNu3uNEeZFedjnHLwMh4EUfjFtLMmOqGAD5q5YTI3HddcwgfOzaIgXRB6MZtqJAtzqNilXKFsA6l/76QMUFfqzY0mzVloTkhfF2aTWv+yGQ8KakL6byAh4ilYhjlMXQ0uF0YyxeRKDCpP3MfDuPO+dhfeAxNHpeAQR6ND2CikIVbVzLFvdkUgoYbft1HRBa8hluKC8w1kKpZACuVHLaEdVQyKYzrfunI9eiU3yEUnwUHDb2ZEtYFpJ0A8WISEXPpTBWd3lb0ZoeEkWTuXJ8/sctj8el+uLSZ8TGvE963BFy3t7fLxteY8+CzYnh4WBK9BGw7wJXZzBtLMZatMkiiCMbUvIZYtCkjjyy0ih+esgdlTcWCVrko4CTFuqSuNTLlsnBGuSWTV32J18vll6Z7IRO7s43nsrm5WTaaIxn0T//0T8KcyIQsr5F/+Zd/kQ5BSqVeyvEMrR7T1K1udbsUzfHPlmPPB/iez3tKNnNMgfVBJMuZed83WZha1Pi0dAU7wltwInVaWEtoYTOIraGN8BhuTBSSeGD00IwGwkwphwfGDuGO1r2IuoNLBtlQznTXrl2yttDypQIeHj+ApDVTNlEr68JKrRjCK8iUs+JLVP9e814Hx+AwscivToreHjpz6OtCURxN9CPqmgYRqSbpEgytjL60z25hmOUbF8lQrqNQKYsvW2Ryt/p3sjOY6AiFsCkSwDUtUfhtKRQCO351Rwc+dngQQ9miNKiyFrG/KYjXrT1/Fe21axtwaCKDuAD8FaULx7rRLGC9P7Bgo/YVV1whhdUZc1k7UfO4n6/c2IRsZxH3nJ0UaaMr24J49YZGNNewhdbariY//vnWtXh4MCVAGLLCf/nYGD4xNn097mjyoYX1tpAbR4fLSI5m8NzQOE4PkxW+jKjbjYmacJz+94aWAEIGsPsD38NIQrGYqj8aimVddD3tjR8sFgHPrHqDUyhYDlBMLpppln0ad5UvlnFkMIVsMiP+leLlAVpCbgGVEBSie2f6Nox9RIZ1IdCMHatHfSaagwSl5PHRB84imbeERYWsNGcns+iK+aShuNHnRsTnQsSuT1KaN+IzkbHKeMm2GJ45G0fvpCUM9ayzmW5drrfhZF4aIl5+RSsOj2akqaZpgfN6Prt+VRRfPTJanZqZ94j9c56SGH/n8ayN+RasF9Tm6WsB2YxnmJtmHLMQ88ZSbKqYxcHEAArlEvw24yObiPOlIq4ItyNl5ZCvWDieZ/mygCaviXS5QL5NkQPjOR3JeNAZylJfFttC3S8YkP1yYVY5n2lsPAkEZHOYJJmbYS3/U5/6FP7f//t/Es+SUZg1j5tvvnlJzcWXakxz+UXBF2Er6QhxoWPXDh0JFnQZ4B5NH1zw/ValsKjxlUtlbAp1Y32wQx4Cbt2Ez5heWM5m+uRnbRKNThHpbglk6fZ3LIlSjhcxO+SIeHKO64vnTiNjL1qO1hjXva7WIk72kuJJgU7IYGK4dHhmSZm4PQYM04tUnD2I0yaazKbSuWZil1TC95wax7jd/Vb7MBWUY8CNQoYJG6Iea75I0wSkwCykJOkkuzidkSxrGkbTRfzMK/fguq1z5+OW3avx8MfegQee7UU6V8T+LR1ob7ywA3ndjm588y/fgn//+gE8fWIIHc0h/NQdO2GmeqrFzdrOTho7O+fTS96/tRMNYR8mprJwkxXEdvCLVhktsQBu27sGd+5bg9981fZFJ306GoP4uR/bgXsPD+Ivv363zJnDLEIwx1cePoPrdpfx3FgGZ8cMZEfHRfsv4NbhMzU0xHwoUdIHGvaviiDgMfDFZ4Zh9SUX3KctVQhNV/TGLmHUKc0ArBBN6/bogohVb55GnsyOaeaCK+aaQm5X4HebmMrSKaVmvSFOUMTrEiALj5sOJB1CInxpRPCO2Rf0Av6nGB2fhoAbz/XFpUjQGfMLYIU04T2TWYzky4jGgkJvxyJGOl/E4GQOrRGfvPfe027ksobQKBZt+jd1nRpVkcl0EfjCg6fwyOFerH8kive/bi82dCyNtuvDb92PV37wO5hI5mZN0LRnxLknSKfWG2oMe3HlplZcu23mvTG709cxLix05Lk5id5a5g1e37WI3qUkeh8fJYsU0OFXn+ESxmT5YMbCaEbHjgaVYPxqhZJnqpuAnZT0x8krxZEm80C6SKptDSmrCJ9xeWmPXypO0HzGZw+T+G9+85tlYxHzxhtvlPNPoAZZVl7ykpfgjjvuwFve8paq3MJijY4PzZESoENEEOXtt99efc+WLVukA/Lhhx8WR4g/GVzWUs4xyUzKOQIE6aQtxXgM/Dy3z3zmM5LUJkiFv9eCW3/u534Ob33rW/GRj3xEnLOf/MmfrHbt161udavbC8EWuVKdiHzWMeBlVwYDxrGnBucCVWjiPFUwOjV/0nf2+tEUcuNTv3qzSPxMpgtY0xyEz63W+8dPjOCJk6O2hvl09oY+yye+fxS/9do9CNtSNucz+iVcmxjwcr3o7u6u/u3hk2P48DeOzhJKoZ9uIZnKIxT0yP6uXhfDwz0TsCwndTttZFoxQCmjmb44x0y/xDB1eQ9lNr90cGhBH7ZQKMHtp/Z0zWTy/2R4FGlTDaZLF/BI9TuYvON+DA3v3Nku7IGzx/Cu3R147cYmHJ/MCkDliqaAJHgvdO398p4O7GgO4J7euDC47GwO4KpgCcnBmYl7dm+RkYKsY9zmu26vagvhwYFElUGHRr+Z772+I4wdDX5sCpqLvu4ZL26P+WT722eHMZApCiW309mZKpbwyaNZvHKthsPjGuJ5H7LpnLwn6mYHJxBzGUiVymj0mNgQ8uHIVBY/GE7U7EWVFOyeVNVlWyYwqVzVTCdjJBlMZs7dTHmf6usXPCrbx4YGU1edf86rjCAJEpEeUkqb6AZCLsU2qthqdCSLRTS4FbuKjwAqmYvz75Xfmy1X0OAxMFnMIuIim4qKj+JWBQOZPCKmGxFPEV5DzQETkblyEa2eCMbySfRkykjqLhRB+VI14lJFJaBl72UmMAs4mR1AsDCGJncMa31dcjyLtZAZwFp/F05mCJCbNn4D77FaANDsOfdqHjS7G+fsj3H57GuNv7O5iNvsRK/DvOFQLNP3XUqilyy6Foo2UEWNhf8mAKeAPLwVP8yKCavCtoWZeZzaA5PuXcrzGoY0/ZwPNHWpxjROTulSMzZXsOvw4x//uJx7siMy+UpK61/7tV+TWIOdhC9/+cvxyle+8rKLZ2j1mKZudavb5WYrzX4/OjoqMQ2frSymPTD+xILvJcvZhUyK7uUyWr1NaPY0IlPKiM/h05UUBu14oq/GV7HB7SIfU8GJZD+uapxukjqf0Q8h8N5hMazNNR1OnEDKmht/payCnYNX5hLZmGn/Vv5bxcjPJ7ZIf4u5ejV2JWWUQLoUn/lZ23xGBRFXEYmiYk9xjCyPJbJonodrPVOysK85hH1Nc9nFOwMe/MlVq3EsnkWiWEJ3wI2ORTR0tvhc+KN93fhuXxyHJrLC2nh9Wwie3qNAZTq/zjll4yUb8WobtWuNzJQbIl6ciJMRQsUx/EmGDPqjV7eG0Ogx8Kp1i2caJ3PMHasiGEkX8PPfPimskw4TJWPCZ8ey6HBpePLYCI70JpAqTEljSNDnknpMyCT4Kg/D48JV6xqxKubFJ+7vwYETM1njq44kx+UEkkovFCgRFc9CD1UgHHRJmV3my+8kdvZlTOf+ee2ofmE1JtZKGgMeNAdc8grjU61SQTxbRNRmEGGsL0zxMtZZyCmZY3UOMgX6xhqGkgWk8hbWNaic/3Aij3OTWZwZSaE95kPGLKEx4BIGn/FMXphONjf58NkDQxiPZ5DMVaCTSp9GNhcSz2gKMJPOW3jgXBw9iTzaz0ziTdtbsLN1aSwrv3xNF54cSODM5MwajaM8IYfF+H5WmoXNHetjPlzbNfe6rGUNWgiQzRwO4xmHeYN5GKdGw20pDab9uSnkSxYi5vQzLqJ5EbdymLJy2BBQ+xxIspGkKPNIxk3FWKVOYaHEhnLWctmUMQ2eu1xMMc5WLhkAfq3x2UNgEoEkBItwzXvVq14l5+pXf/VXBadw/fXXS43mTW96k+RvLseY5rICq1wqFHP8Dk44HwS1mt0LaS3TFoM0dhwhGatmiM7hbMvM46A4DhEdp6VQyhFgQ6BN7bwO5bIYs4XYhU5OklLqb26zAsMsoWzpeOnaGKZSebgXYPpgYtUgUwKZJmyTJFhNBx8X6ZFEXj3Q5kko0fx+D9wakMsXBG1JN9aSBYWJXWdBs7fpDyORLeL9H78P9/7FGwXdO9vIpnL7lYvvoHFs65pm/NW775zx2t13n6ueXzo/BKowybV9+8JAE+7/L37pdrzrr74hSSkmeAXUYRr4i1++XQAsy71W/+ehU7LAE7DhzCO/N1co4cDJETSvaZcrhsl1Fv0nsxbiGjCUKipZJB14aiiJwcn84lnhFN+xfD4WdCNFZDOTbDqdFKWhXttvqH5V2ouz7435ACt0nh1achvvgY6oVzoPidxsCU7TYydyFtrDHuxsD+EZO3lescEqIa8pfz/fkyRVKOG6NRHc+9yQ7INO15GxHEYyRfHpKNFV8bngNQ25fumQbWwP4W03rsdH7zuLyYqJklB0O0hguyZhU6yr61VHMlfCwGQWk6kC/vlbh/AX77y+RhLqwra6OYRdqxtxz0HS5ytvxwGXOT7rbKAK77lXXL0ev/n6vdWCkWPOs6f2XiyVy3jmzDj6x1OIBb3Yt6G5muglbSKvUV7zfBaePHlySYlezsdY3ppDA08nlkOOO3SJXAxJ73hmUs416TcFBCT/JkuMiaJowesYySfR7FmY+n4ljOPOlxXFt1efvu5eDF2IFzIm93n81DBkpwcLWHfddZdQwlEiaClgFR73e97zHnGkduzYUS2K0ZGezURFp4d/c95T6wQ5f3f+Ntu4xjFx/uijj4pDRWNxggh0oo6pzcgu2w996EPVIucTT8xNajB5TXAnOzKJPr7vvvsWfax1q1vd6napAvC5hrP7kGs3AdZ8XjaExueniLDb6CZSuSWNry3ql63WjvbHbfaD2f4/pDPq3FgKO1adnzqbPgjXIQbVZL1y5B8c+5/He6s5O0dm1PFrE6k8TI8LPreB99yyDg9/YnzBdB3ZUQyCsmvWe7KxqLKzLePjd+H+05MLjpUgFEr70C8ryryohK4D3Kbnw29nl5cDo3D298xIGt88NY7XbVbJodnWGnDLthRj0vUl3VHZHCPbRMJ2wHlu6NdRzrS2s3M+u6Ezgvv6pvDUSErkj5Srq6E76MGr1jUuu+s2wbhlPFsFXzvfQxBJogjcO2AhYKr543llKmwoJ6Kq1e+YyBfxSI6MK86+Z45hNni9XGbCXoFJXLIvxXNTqU0wzvngNFNO1ea4hsq35XVkkqu95m2cl+2REA5MpIT2mVrn8m2SIK9geziIopbDeIGsHep72rwmzqWtamesY9QKn75MCbQCWrwmhvJMIOsiJ3U6mUdO2E+BXIl65C6RoG30FuQ9nd4GxFxRPDKeFMAPeVSc6J08IKYNindo3znGXKko52UwP4aQGUSLe2m0912+ZiTLkxjPp2T8nAOPTraRCnJ2Z8Tsqydo+NDuaUOTq3FRiV0yl2TLabm/PJoHLsOzYKKX1z2fYbWSQedL9JJZl9/rAFUcU+eLfy3DkP+RN4UysYxFFShKHZsCppi6qf5dk+x/Pk2kau19rwQw5nKJaZjkZ0zDBC4lcNmIQRpsxjRf+9rXlgRW+WHFM7R6TFO3utXtxWYrFc84fisLtWTGdSQRxKda4Ou1JY6P+eigObdGM1VUvsU0B70N/ACBHzOZUBYy+h4EqsxXR2D+eTA7Ul2v5XhrvCL6YB7DRMQVRtgMiQzQfEe3kC8u6gD2y46fSSDPfGlOvuY3ywIMzzLnLawPjFnKVQlNFWvN/TBf/urZAWwMBxFxz60jcX632gySSzFK8bxpw8w85OP908dKph0yRHLtJwjofP7cO7e04E+e6EWOsrACGlYH/UYyqPhcM5qUl2L3nJtS8qsyV2puWEdgfEiWwr5zU8JeWLRK4vuyyWMyxTnJKkbPTAFPHCvimxn192rSv5r8r7Eq64nTDKIh6ALSuSwqGmtEFWjlcjUmXjL5Pb+b95XbU21Idmo0PpeODd1RnBtPo6vBX63hUAkh6nfhjm3NODCQxmhKyctQJrc55MZgPDdPEWj6GiKA5+o1UfQmC2iwGU/IfH9iOK1ia0qrFssIegvCpsl6WlPAhZdtasLjPZPoHU1LA3fRmr5zBFxjKOUHB2mRK5YxkswLI8vnD48IgKRWtuhCFnSbePW+dnzi0X5kyaxqaPB5TbjdJuKUuC3PlQdibLm/M4R37G4X6aILxTT8ndK4g1keq451Ia8A27g5zBvMjfCZwiZMMl6wfuMAV5gvOR/YKmWxxlXLBOvUhilFO93M2eFzy/vYBMFrkk3FnEs2NcQ8RZREOULDUD6J9YGm551Jns9B1op8hnteSeOlWPWZf4k2Fdca41iC79hc+/a3v10auBjPcCPDyVLAKpdSTHNZgVUuBdQug1mCEUgry4WOPx1TxMHzL14En6yEo+YxPMiWZiaJHafFq3sueOGxMEf9KF60TnKm1nJEXdaYkxRU+u0aOkIu3LalFS9d24AvHxnGvcOphcfqMVGi/MkCyUm+OluqZfa+eWTlsiXa9Tx/8XTBXglnzdM8D6PTQ1N44sQwrtnSjufTHKePVH1cCKh7yATIhR7GP37jFqxui+IT33waJ/smsLG7Ae98+R7s2jDzJl+qjSVysli4Z+2fznKhaIkDlCkqmmnHLXF8GTpk3CbT087LYqyGAQ5ZSzms7BYlyIRYIZd0DFZQsBlXlJY6u1LZxac+x387QAWy7lTNplqf/vf0+4mUPTuaxmSmiKaAYv2hs/LWqzrwxj3teOxsHIcHU4LCpbzP397TgyQp2meNv9rhKKASYHXMK/JCpISfypcxki6qa5X03GVdaOaICP6xXV24fVOjdAufGM3g4FDaTurOogjncdUcU0Uo5ZVDl8gW8OBzA+gZSWBdWwSpnIV7jg7juf4pYY+5dkMT9q6JzbmeJtN59IwmoRG4QQRXDbWjclAdIJczdWXRaezLafj8Y334qevWoCXsXZBZZTKVx59/4UkcOD2qWJR0HevbwvjdN1yJ9e2qIMR7kgCFwUQFjw0mMTZVRGc0jyuKKtHLxb0W0Vv7vOR+mjwmelIFRCWdXkMFSJR1jVN464YG/ODUOE6OZWAxECKbVBFoiujY1k1Kc/Xcihfn0tevpCWtDM5kBpCw6TeDph9rfe2IuIIXzawi6WKtLJtGIFeF4e6l5RzxGmHXHkFIHDMLWNze9773Lfm7qIvI7oYHHngAz6dxrD/7sz+L97///RL8s+BGqjzH8aRjROfrox/9KN71rnfJmEhZN9/6/I53vAO/+7u/K5qhLOrWrW51q9vlmtzl85zrNBkF+EwjANVZ/xtC/ulC6ayGLf4jVCPduZDxGXu+8a2yZXhml2PpipCdo/0CyUrGY0w8slt+ocRj3AYZO0AHYf1wACuVCn5sawt+8YbV2NEeFlA3u7YWMidRNJ9rLwDqsBcnJhZuGuBxCXi6XILb0CVZSIlI8ZfnvHuW/16BgEEWAqusdDxDEJAjE8tuGa6j5zP67r97dTfu6Z3CQwMJ8cX3tQZx5+qYUHsvlxqewAoH4z1jnPZ85ko8HxVkK4Yd09h5W8f11ZRPSWDGUor+zrsJS65NdgkLkEYBF7J4KiCJvL9SgUAMyABoj5fJO3pxwswo31OBx6RU0/zHo2kl8f8Gc3n4DQNeXUe2XEbEZeLGlgZJbvdkUkhbRQRNF8azLFyMI79AsEZPWlgoDQN+00Qlz3i6LCw1nA+frsGiFK7B7IWBeEHDDY0tiLo9kuS7f2wISYvg8LnzxmOsqsDa16fkeEEZrTyGc2NVsEqimMNAjjJVRdE77/BG5PtnW76sumFL8CBvx/icN2GX0XRJgNbi57y6ibDLC82wkC4nEdBDcxK5tb9nyilMWKPCfiLgJ01HQA+jwWiuaZDxw+PzwN8aQNSKoZAvwEoUca63V+J73gcOcGV2oleBVJwHZc04bABLlW2FVM56CInyJEosBNU0Onl1r8BZSprqhFXxwPMTB3CfJa0oGztKOQSjYsKseC4KtDLNFslJruFAL8tVjkvJ+HxzaLJ5bin3ye1SjWdo9ZimbnWr24tRBuhiG4opgUG/lY1z9FtZmHXMb3hFOmeOnD1zz4tggVtMvBUwvYjbgJVaMAn/HTB9i47HKH/A5qn5wLazm6LFf7CT8IZuYpW/G13+Dru5eeH1ln6tMPqJFNA842Gcd4ExM79PlnFyq7ABkrI/AhonWOW8n4QAkI9OJXF189JAzUs1ya9WKlKwZ1OGw7RzoeLz+ogXH752Nb7TG8eJeA4NHhO3dkWwq2nxshrz2VShZPdYz+NXk+GjUsZouiT1ktpbSVyosoo7kvmSakZdjNUWOBhTsehi19EEPG9ocDMG5XmrkcDlfcHaSd4OrHi98Hd+Vl7jG12ksXRPM+fX7I7xdDDowQSZO3MJtIQ8VbDJj13Rht++YyOeGUjimf6ENH6safDiX+85LQwpC0kBSdMvNGxrD2E4MymfYwPyqZG0YGZ4DZJdvzPildh/VcCNt13TjY6wR+oYf/rtE/Kzpm++Ore18YKAk+zUBxn6j41ncHw8gz3tIZmjJ/uTODSckmnc0RbE3o6Q1Ixm26lkAU3NQUxOZqXhhYeVy1vweg3k82V5TebMJo9pjnrhjbpxIJFFwGeibVaexZE2pTHG/lbfJA7Hs9JwwPHG3CZe3hXDRru2w/cSbJ8x/DiTDWKolEO4VMTGRA6Dg4fleca/OzWa2WzhAcOD4Upyxtwo6TAyK02DzDaEvdgQ8uJYIgsKX/Aclcq6kBx0BvMk45WYPFOi/G4JHpv1aaUtWyrgaGoYo/mkPL/8hlvYX9q9S1MuqDUHlMa5pCzSeDEj56vRHUDYnKuc8UJb2q7ROCAQbqxtXM4xzWUHVnkh9RAdRhImdAlImL3Q+Y0QEqXJuYVw3tT6+Re3QjmPjCcFrbmM4fwQGlyNcNn6YLXW7evA8dTpOc4Kky5t3oVBDnTcuEjzpmORbSH5gjafX5w2Mhc4y6iTXmCS94+u3YigTe963aoIPv4cEb7zG32/Bf8m/61gjKiJ8xgfiVywyUTChKN8H89hjTzDgp/lolBYGYr0CxkdzLGxMaE3KnlCuOvEmCyim5oD2NDoXxC4sntjG/7u139sRceyd10zHjo6PGdxkY4trweUjpyB+a52danFhIs0EadLNZWPUo4EWc4cZyDgNrGm0Seo9pOjaZHZIb3x+pgXRauIk+MFQZeaktxViznJNkRu0QFP1EwfHSg6TT2jGaF4awu6MZgoIFPIYn2TH2+/uguv29Um1+tNGxplo/3N3afFiTHtBO28x2DTjP/3k0NoDntxZjSFMqmYbUctW7AQ9btFM5Ggl1MTObyrTTF5HB1OYiiZrzr9M2o7s0+/BBUQiaJ8ERhP5jCWyCIW8uEPvnQQB8+x41h9/v8O9OPN16zG229cO+M6Iq3exBQDL1sN0jkm+weP3+syxaFlMMHiCBlfJuMpfP9wGaPJHP7wNVfAY1PSzQarfPy7h3HX073C/MONYJXJVA5/8aUD+Md33VRlLPrve47iH7/2NNLZQvV62tgVw1/+/E0IusoSIPT19eHIkSOyIDlOEZGZVzYHcC5VwFjOQoRMTOUKxvMWOv0ubIpMA1tIE/j/3bYenzvYh++dGpGixJZODXvWGfB5KyiTBVGKXhdBY3gBy5XyeC51BtlSXqSKaPFiEs+VctgZ3oiAsTynhc9kk+dJL6Ciq+DB4RAySi7olUtnmeY6wvHWJgCWY+9+97vx9a9/XdhJiP52jFJTlKNgp38tcpfd3o6mLH8+9thjM76Pf3f+Np/95V/+pSSlSY/Hsf/mb/5mld6OoE3qMv7e7/0e/v7v/x579+4VavBXv/rVc76HztQHP/hBvPOd77yo469b3epWt5Vgi1xuTONQIbN7Yd++fZKwqDUCUv0eExmHHbFmaRU63a6FE4z0Ie891IdP3juAwBMJ/Pj1Bdy2u1t8iFq7YVsb1rWGcWYkoSRjaoDTr716LRpDC6+pBN1z/IzHCLRZaC73r2vA154emOEPq3gGeO2eTnz0DVdU3+skuBYyJyE8n9FvPDaagmFrr89nwhhjlYQRkMk96pA7wP7FXAvsWnq+jePgNUVKWYKL9199NfpyZQwNTcFn6Ngc9Qud9Xzm0nXcsTom20oZNbCDpi504LW9Dc5M8LKUxLgAGWqBCuonr7iiwzi4BP+QbCGOP+mEIM6dFnGzc9WQBOFIjh1cFQRdOhoNTfxXlipIca2gC2z4UIl7j0F2nrn74kumpqE/l0Gn38BQ1kKyaKGg69gSDuLmlhgaPSppuTOi5jZVtHDvcJ8AUQrlmdwqZLIk/Nm5pDLlAvqzWbg1HQmriJRVhsthh9E0eA0Tbs1AvFhE0gLa7QTp6UxSWAvnM2YIVGSk5rUEXWI4UzNQqBSRLisZ4MHcFA4m+pEvTzNans2O48rIakRcMwshlMfhm1xQwBQCX2R+KItEinGCvezuX5P70w3kK0XZn4W4gLwDWmjexC6/e9waRqFC+JGaL72iS87GrbkRMqLVYlBP7ixSpZQ6OhPQG3R0tXahEQ1VySDmgnif0E91wCtenxcujXJJqlPUYVThwN2YCQDxaQF5BqQqUyiBElcGvIYXHjYd8dxYJZEXez6NIBVLz08H/zyPelHmzVX2LhuwwhjB63NDc5UUWKV6mWioFI1LCrBCJp2laLpfCvEMrR7T1K1udXsx2cXWaLg2s87BWIa5+NmS5A3uGMYKEzM48BVIWENoHib7WiuWixgrj0PrMNCTPodWbwt88+T8NoY60Z91GBqn/8v9bAi2Lyoeu+qqq+Z0rjvm1l3wGz6kS9kZgBgncNoZ2YpGj/IRg+bimujoe9LPm+3puemf2I15C5li36/AVZ1rBbBIFi6ct1S++w8npqHPduzYMQEBhZvacdfRUSSyFtY2+bGnOzotQzvLWv1uvG3zwoySy7FNMZ/UORjzOkB4BcIACpm8gBkE6jvrhDj4Db5O9noljbN049cQWEF5Sn4XawMb20LSHNszmpLaAP3mdU1+eMwKjg5npQ5HRkhDmiw0eDQFloDHLU0Xjjm9sqyzZKwSpooVrG2LoGc4gXMTWbRHvHjHDWvwzpvWSg3hyu6IbLTPP96Hvsmc5B3YtDtz0A47jALM/M/TQ9jUEsCJ8SyKhZLU2yiVRDYUr0uXmgFrHwf7E1gd9cr57ZnIoGciOweoshC4nTEcZXf52XSxjN5EHjtaAvinR/vw8LmpKljo+6cmcN3qKH5xf+cMwAq/b4rNL2R3Ya0nbyk1Jk2Hy6XD59NgsMHaKsNiHObW5XoYTxdx0swJu/wb1jRIvDnfGJ8YS+GRsZQ0d5MVk5cwmzu+1juBX9jUipAdpz81kMQ/PNaHqZo5bfK78BvX7kGnV9VoRkZGBCTn9XqrNRo+Rzt9EZECSpbYQOGW85AuF+A3XNJ04BjP9xvXNuLeoTjuHZlArgQ0+groCBXgc1FpQV14z+fdTpDXgalzmCikpUbDppKElZX4k/9uWSbrPtcknulj6VGcy02iUBaeGLh0A+v9TdjwQ2CKWWpD8eVWo7lQTHPpVMEuYUeIgTcLraSvOR8VcoO7GansVJVSlaZIVXXE3AvLIySKUziTOYmSWYIe1TCQ68VwfhAbApvgN2Y6UF2+DmFW6csOVvfB5MiOyBZ45ulUojloUhblSIl3PnpWn2Hi2uZW3D8yWC1eO+vl/sbmKlCF1kINQXYZLqB9yIcTH56K7FoluNXirFgximV7sTuPXb0qhCfPJpEtluQh7tGBXLJWc3yu6QE/jHAEFbcLf/1AH3KmGz+27eLYShYyanc5Ny5BQI8MZPGZA8cQz1G3GvC6DNyyrgHv2Nc1L+ry+bC33bIRn77vhDBjOI4Q553sNJ5oCH6X6tbjgj2Haa3G2ViS2R+Uq12AGNP6jlwgT42mxUnpinpwbETdg/GchbE0aexsiSiuYvZKxplqDWhIWxpSBfs6N4iaNYTWjQ7JqgYfGnwuJPJpcV54jQzZmoVEvlJ7/slzUzg+QmYVHfecmFAdjgsx/dgvswv0zGQWjcEwtraH8NDZKXHUeJ0HvS6sbiTQa+4EHR9Oqw5ehxpbvnSendi0fD5TOV3ZvAKCEFjy5Sd6caBnEhGfS2jwnXn8n8fO4dqNTdjcPr3Y9gwloLH7UDyvmtZnmx6GY8nLTwUAylslYdbJprPYtLoZR/oTOHB2EtdsaJJ9PXJqHI8NluA/PYE1DT587dEziKfz4oTQqSTgJZMr49FjQzh0dgK71zWhfyyJf/n6QZRLZaxuCcuCzbk/1juBT3znMP6/n75WFjRSj/E+YSBGyRV2KPJZHIlEsc8XxeG8S5L83NeGiAcv747AO+t+aQ158LNXd2LHxjwmCzkBHNH1os9O1hqXCTS7l89wciEbKUwKUIWgFMcxYWI+XcphKDeO9QFFNbpUE2Rzc0SAKkzmshNXnqjs2jWK0KxLh2GFThDtQl3WCxmvZeoofvnLXxbabUrR1Rpl9UgF9/3vfx+vf/3r5TUGmKQvdJhM+PPP/uzPxLl21mJS3JH6juvbfMbxfupTn5LNMSJ4HXvzm98s2+yxzjayZ3F8b3vb25Z1/HWrW93qtlLGZOxyOhGTyaQwRJKRhBSf8zGSNIS8eMstW/Cp7z9XlVJ0QOvXbevArrXzxzSkgv6Vj92DLz98ytaeHscXHj6Ll+1bg4//2m1w1YA56Pf89/vuxFv+5i6cGJxSgBVNw61XdOIv33HdgvEY1wQ+iy8kTUN7yzWr8c93n0I/O5vseEMlGjS8585NM967rzuCw4PJBb+L/rTkNBmLsDJvLxH0j0TfPcfkp0dAy/MZE3yrIl4MpIqwLPp9pAU24PEuHIrTf0sl88hmCpgaTeFPDR0/e1UX2mtY8VbSeG2wgEt2yO51G/CFngkcn8radNMVRD0mXrO2CZsi5++4XCnjeXr16gg+c3JC4kVH45sWctsM1Drjh/mDFr7XKY8vBco8DWtS2usESNMLo7c9mS8KQKTB7ULABtKINFapgqxN5yL06VXPnFI8FcS0CshF6hQZ+L0+W+aG0umtHi8SDIwJxtDY/VfGWC6HpM2cSL3vc5k0MqWSyCOlLSbRFr7/FQ074yVDZH/2NIREYodJPZlbjZ1zLmEomY8BNUn6wgvMnSK412BqFSluOG9kAw21y4+kBgWoYtryr/Rmk1YeR1JDuDo6k4G0UC5iKp9DhuhzSVBpAoCSJiU7xiTwh8wj3JHFZLtD6cJEbTkJP0EgwsJSRMVTArEfxUoB6VIK+UpORkuGE2kslf+VMFWarIJVxorjSJZScGsuOQbYNPhj1jjC3pAk27g5SUHGM9QJZ6KX4K6mlibE2sNgQ3JFV/68Bz54MbdByKv54DJMlDT7eSEPF6WPrvxPxbD4fLKqSKhRjS9UvFkmw48NR1qO8RkdbghIDGMjoqZZVkxq6RqXZBfi5RLP0OoxTd3qVrcXWzwj64/IySx+3eNnKPlD6Z9NmzYJW+58xcN2XwvOZfrEz3DgvRLTQMcq/3RBbralrQyenTqMQrkAvcHAuUwv+rL92BLahCbPTPnBVm8Me2Mb8Ez8lABu5bg0A3ti69G8QHc/1yDGY4zDZjP2zzYe15bwejw1ecjOM9sOF1kVjDAa3NEZ72XzsTOO2WZzn4m/5NboW+vii3JO+DkBk5QInFBe3tzPawhaLuRMshqqBmcy9A1mXbCEGXp+C7uL6AxkEHKTES+DM+kc1vg7n5eCL68lxjTMP3M9PpPS8dufexqDU7kqaGP/6ih+56WbEPbNbRB/PuzazhDWhD04m8jbzIE2kwf9z/64jEmjXOV5e7kvrjGT9SAliVsR5pATQ0m0RX3oIGt8piDN4RkCNOJFAYI4TQFFxid2GaMp5IbhdwkLjJCsGKzzGQh7DQF3tIU9WNfox6F0XkAubLYYzxZxejwj7C5e08DhoZTE3HTj7zo8AqtUmcmsXz1cu7ZBIDSAMwNxaFYJe9bG8P1j4xKPGUVVc+uOeudIC9PGUgWpTzjX/XzlGcd4LbKRl3XLgh1w+kxdQCoPnY0LiIVNEJJLMDQ8eDaOPR0hXL96+v6bLJSQyVqIM/cgDeCagFQoB8S5F1YVRV8jrnGBhDdkAMpY2NUexGCmiGNTOexvDsp92ZsuoAceBFMFbPGU8NBIUuJAxQylWJKonNCbruDYVBb7moLSEPOJpwelSbw95Jbj4jkfShbwyaeH8MHb1wkwgE0/zCWxlsmaMeVjKJlF9siWhiDGPDqyFC3WNERML7YEWxE0Zz6nOD+3dUTg9UxgOJ8VMBTrNIxBncmOuXzw6M8P9GAkn8RkIYOA6RFwCuznGOPNs5nxZYNV+AwpBlw4kx2HSzPk+GnZchEn0qOIuf1ocl8c4H0lLf0ijGl+5MAqS03sMmlHoAdvcDoRTO4uZD7Djw7vaozkB1SHkNwoLrR6OuE15v8cWRHOZk/b8kG2thzpkyoWzmV6sDm4bY5W2KbQenGsJgpxuSGbPY3VpMpCDtyWLVsEHbUYZ+CWlnYEDBMPjQ0jWSzIvxsm4rh9x8xiLCmOmSQslGf13zjgFVuTz2lGFPow+51K6qOCK7si+LzRLwvIbOP7P/zm/ZIMPNw/haaQB3/7pSfwnXhcHuqKumXm54xIGEaD6vjkoT7VO4Wf/dQB/Omrt+Kd167GSppDQS7O45YtGCvo+NRT/bLQro755EgTeQvfPT6GdQ1+3LZxYcDSShqp07/4vtvxJ194CvcfUfpg125sxf6d3fj8oTGhb1PMIuq8VeZLyBtcSBe/z9q4QigAS0ThqlQXF/qMVcGZ8SwiPhOrYl65dk6PEeE6XQSpRbp7XHQQmOQrIy0amkTyamhwGwh4XeLoRD0GHuqJYzJbFJCD29SRLVr4ysFhOTKy6jx0elIcMdp4zhLABsc3+zZw/CBaulgSoMf9Z+L4nTvWY0tnFJ98fEDYVNoiauwEd9B5uG5tbAbTybSpI5o5vw4dcgWuQhYuaphmCrLfVU0BtDcE8L1vHRd9yuGpbDUhz2MLeE08eWZiBljlm0/0IC1dwLVn0PaepNPSHo8tt6T8vAoGxpLYKwn/CoanclLE+ch3j+PI4BSSiQIeGj+KtoCJwYmM6mj0TDvwOViYTBVwbiQpYJVHjgwikSmg26bzp9HRpkTAfQf7hG7PYW5hIEb6RW5OopdOUWV8HK54AlmXD03RCDZGY2hgFn0eCxoeNLiCGMrnJeHuvKtEuamygY6LoHq7kLGTQU3nzOcx58j527ITuzHlWDhPUkXrycteSQM9Xwnr5TzzeMznWwcvRCv32c9+Fl/96lfFQXb0C+kQ8zv5k+wl733vewXZTeeGjhOdH1K60u68805xeN761rfiL/7iL+Q7fv/3f1+++3xB/sVSy7Ig8YEPfABveMMb5ugx1q1udavb5QDAd+QqGYSSHvR8McGfvPU6lEpl/O9DJ1G0wRW37OzC3/3iLQt+7quPnMaXHjopQBTN0OwEKPCtJ3rw+ftO4K23bpnx/nVtYTz0odfhoaNDODk0hV1rmrBnXdOCz2HGYwSJc01YTEc8gb/feu9N+KOvHsZXDzDWqODKTj9+YX8jdnROdwbR9nZH8cnH+hb8LvoylHSk70emwNpuPCbx1jcGsLczghNjmTnFf4kTWoP4zJv2CH0wY4OI18QfPXQWyYLq3Jlt/Iqx0RQsATAwOVLCl54dwt0nx/GZt+xGm02rvBLmUJAzXmQygjHNd3sn8dxkGjGPS5JzPKbRbBFfPTOOX97ejsACDCsrbS/tCkss+bWzU9JtRqD3ze0h9GZTGMmVJR6sZVWZbQ6AfL4c6EI2fXmz69QpakwnOVPFErJWCSGXiQ6/G6mChZSjbe0koJ3Yl1KouiYqKC7qqcuXl+EGZWg0lDQdUbeJ8XwJJ0TGVb2fskHxYgnfGhhFoWzheCqOeLEgCW6ShqaZRHYYR2eZYDhs8PNEQVGzP17K4vXdHchaoyI1FDPdcNvNKynLEpaWzhrfboFmU9uUrJEAVVBBg1uNwgI7/HREzRAmixmRAOLYawV8GEONF9KS7JNuPZvRZCA/jkzJqoJ5WFIiwMyrqzGKBNf0GZL3MXdSZKef7pfkKNlY8uU0kuUpaBF1VYyXhmHZY1BAF+cbNPlEoTINLpuypmTOanMq/IxVKQiIJWjYvrqmSXKNGxO9fA47rCunnu2BVS4iHA0jHIygIeqCl41u88ynXjZQZreq7jQdqP8KQxPlQJ83oDpjC5ube96/Me5e3v3t9XuELXJal9b+ybyP7jRzaZdMTLPcxO7lGs/Q6jFN3epWt0vJnEbaaRm5CxtjgWeffRaJROK8jCQ0t+7Gruh2HEmeQNYiMwnzqybW+LvR6l1YXvNE6pQAVcT7EJ+OBd8yjidPIOaOCivabHaV1YEWDGUnxOdo9zbCUyOZMbvjnOOn5A8ZIhdz3B2+Fmi4AseTZ0TWiGCYylgRO9ZsmBOXBQwfpuZhRxFgifhT0+sz/R6H/VIxfVQQdgfhypko2gDiyqzP727fiJg7htFcUj57NJ7BudSw+IbM0NIXVrlstZ+Yp4CtDdMNx9lyBs/Ej2OqkMLu2MzY8GKNABWCgHiN0Edz+8P4m688jaFETppOmVtP5y08cGocn328D++6aWZh9vkyMpn82c1r8O/PDOGBvoTEk6sjXuxr8OIvD/SK/3+hUiV7JaSOs1iAzywGm3yRgDA2XehSKylYZZwbTyOedkkNKeg1cXw4Je9TBR67iEAwE1nbPSYszYBfp7SpAlowzmnw6WgIeoThg02vDx8bxtmxtNQg3C4FzP/B0VHZ3+51jbjr6Lg0d/PCGp7MYDKjACXzWsmS48jluRUxFs8KQ/97blmNP//2KWGt7I4pFn8C/SkPdMeWpmqcziZnKcGwTFJD+OdYrTQTm0jINJO1VOwU9RrC0PKto6OYyCoAj2rgUDUagn+eHkjMAKs8PZxC/1hG4nclKaRJHsWkX1/tauZ8Ej6vYhWe02ShjHxJNWZM5C0Zw7f64ziTymHcCKF/OI0nEwX0s36ECjwGIfz2FGk6sqUy+tIF7GuCSBeNpApo8Luqx8b7lvWsc1M5nJvKy3HJNWWaaGpqko1GsArjGW7m2QlSgyIaiaA9EkEoOP/zjGwj7d4whvKpKiunitIUuG2Vb+VYV2dbupRXsVMt04/UqQ1MWbk5zDlLqdHk/AYMYdqZPm7GrvFiFkO5xCUHVgksky3yUo1pfqRkgHgjLiWxS1QQtQ87OjokcbcYJyJkRhA0QsjZFLhefWEJGFrSSkjXTi1wQFHHqkU8V87BNwvoki1lcSbdg8liXH4fyg9hjZ+UutOFbIJy6ACRQudCDtxs43j3N7XgqsZmeRhbhQLuOXfPvO+7bVUM3+mZnEntJPrSwE9sa8HOliCOjqbxL4/3Im9LsDDhyYf/jtYQXr2tBZ97vA8H+hOSlHKSe1x0ruyOiowO99PVoLqSXnvtetz/3JA88FXXZg1ghUV5h8pcmETUA5yAiA9/5wTeeGWnSNKshDnXBhHcdDZ5bTzRNyUJ6DUEqtjnPOJ1yYL5QM/kDw2sQtvcGcWn33MrUjlF6UvwABPc3zszJVqHVcTufGgVmxmFJDqisXcB3i6egtpr3GFWIYMLF1zKuzApT2ozgnjaQm4cGkxXE6FOAlK6F0UnkIwjuiBG6fwoWnKifIHhZB7b9RziOQ33nsohUVALvOgbahVhRQl6DHz54JBQqxEsQadCuvAqmoxnPqt9pLCTjyhxHsMnH+vHL13XhdVRD05NZKVzlshd/m3fqog4Qo7t7opIty2PQTX7KY/IcYroyPMYzVIBLW5qFRoCBOOxvvqadWiO+DAwmUEyV0TI65J7hZ8jDf94Mo/x1HRCNZUt4JGjQ3ZBZB6NIXlZdeepwErNE+eSkj5DEyp4ifhd+Ph9Z/DcQALdMS8SyKCxwYdD5ybkfnXTI679Zvl1ml682qmszaOFarO6zHvN1CR6eQ/xuewgek+fPi0U21wEuRiSYpuLplwnmoawK4hyRSWUwYQq98frwHBhpJBFyPX8JPhIFS7h2yyHh0GrR5+f1WoxxmN30wGaw3KkkvGOlvylYARv8pwttwPin/7pn+TnLbfcMuP1T3ziE3jHO94h//7IRz4iz1OidplQfelLX4qPfexjMxIapKf7pV/6pWrB8u1vfzv++I//GM+Xfe5znxMHbffu3fiv//qv520/datb3er2fIBV+D4yRNJfJUW2k5A4n/k8Jj7yi7fgt95wFU4PTaGzMYA1rTMBHrPtyw+dkp9CM2wX0tW/y/jfB+eCVWifu+8E/vrLB9A7nhL/6o03bMAfvnk/wn73HIpv+gTs7phN8X0+64j68C9v34d/euuVEtP0nD4lknaz7dZNzQKoJj30zKQssK4pgF+8YQ2u6o7iV798COcmc1UmGPpU/Plz167ChiY/vnJ4SAEoZOmu2Elg4Kf3dYlvtLNNUbTSl9jU4MfB4SQKs3w5LrGZdKEKVOHvLkd7PVsUYPz7b16HlTBeG/S5yBJBLXd2VdGPfWYiLSAVbjSOvcnnEsDKyUQWuxqfPya7ObFmZxgv6QhJEpRyRPSPP32qKOwipJuuavTME9pwankIdBfnUzid6c3Mhb3w6HkOpeGiVEbIbcp1xG6+bRE/hnJZ5E1KvZRtpkgFEGdyi1/m+PKpig6PIMcVAD9HptFMFn69jMG8GxMlU8YnkkN2sjJkasiWSrh7ZAyaXhR/U0ZIlsiyNu/xqHhGHQWlVSk7xfOZskp4fGIK1zeH8b3hCSSKRegCDiFrqY79jY0I1NxXLR4fklayKs+lHP3KjDnhGDt8JZGGssMOeA0P2jxNAoDJlVUM6ra76VSHpoUcCNSfHvxEcQo5KQg5MaECbPMeoywxZYqcz892iNkcRLALi0Zs9CFQRZpmCirPTnmgog1IqaXOnw/mM99r4u9Knr5y3mfxQonecz3n5DtIq+1IBk0n7fjd6ljVlaPObTqVRShIGJAq+ay8kbXFOd65/vzFAeSnY8RL3RjTLCU/9mKIZ2j1mKZudavbStvFsGM4YBXWLwiYvpCxvsGYgDkpNhPPxxA528KuEPbH9oi8DX0GSuVQTvB88t/JIn2gaWCH89OqlDBRmESzZ2YsRf/mTKoHo/lRAauM5vux2r8KLTWAGBZAycbW29uLHTt2nFceYT5r9zXLRn+Q47n7yN3QVs/HJtOGbJrg2WlAPFd2Qzdk3DFXTI7mSOK4Yp2z041SBNfdaPO2IlnM4FxmQP5eldekbInuRou3Ufyu7oDdJFxx4/GJMdlfLeO3I2u/Jqxyz6qobPt5qKAnM4D1we4LyjEt1gheYjMx13ZeF4wXHz87iYGpLFYJoEHNVcBjIuQ18YNjo3jndauEGeSHYTGvifdd3YVfvZLABMYUBo4MJtEZ82Esmcco9TjPY9JU7OTYFcpifgQGbZ4cAVP7bL7gx4NeN5rDHownc4gE3LhpaysePj0Jw0N2QdYqFMjDcBlC5K7ZsjYpyu8YttRmqSyg/tFMEW3eInIlE/ccSmIkkZdzX9IIaCGwRUdjwIVHTk/g0FhWGPWlRmNLfGbZuDGvm61YVXicbtb2bOzMXYeHsK07gqvWx/DgiXEcH0kLwwffsLE5gDftm26y39wSQNAeN+aZLtZ13AaPTce6jqCwwShAF3BlWxDrYz70J/IiwcRaE4+FxvEnc5awlVRHW6ngsb6EMMU4IBgnjmJsRyaUKvOnMClO3y0iW0XKeNaUXToeHUviWCKLRg9BY0U0e02M5S3kpThnT0Ttc7fmV+J+5vPwpUZjqy4sZAQndHZ2ysbnFe8pxjMD/f04dvSoPHcdySDeZ06NvMEdgKGZMIVY0WZcKhOkY2C8kBMwy/NhZGyRemCNvBaN9byI6Vn22iQ5Nl3Vn2abAhgtX7pupa1iN4IvF4B/qcY0lx1Y5YeR2HWcCNLa0Ilob19YZ3A+I6Wab5Z8z4L7qoF51OSBqqb0jqeND6pnE4flp5NUYTLpcOI57IxcgaAZkE4RokmpPbZYB27+4yCFHDNt6jKZj5rvbTtacWQigz6b9loeSrqGn9raijduUY7ZVV0RGelnnxlEuqCkTW5ZG8P7blgr3/c3r92On//c0zg1nqmi4jY0+/HXr90+5+Hw41evxcNHh/GZe46qRa2GJkP3eav/5mLKhdEBQRBE8kzfFK5bN5OybzkPAhbTuTnXxtjYmLxOGRpn3mqNiXpScL0QRtkax/Z1hRHymIhniggYBEOxQ9TOLtqJSGe+Yn5TwAoEBRHlqUwBxdSmEvg81zY4VL3DxkmQrjuRL1UdUoI8uK+TYxmcHssg7DWlkCG5X/uzTi6U30+QCZ0iLur8u3Nr5EsazuZdkqxnotj5nMrz8ZyXpSORwJhikTRzlNdhgh+CoK5NXjunaQb1G5NXhZI4LK0hN0aSeXz+iX5sa/Yj7NZxNp5D1G+KA/SybS3wu6cd2xvXN2BbewiHBpLSPSYs8TZ39eqYB9eta8CujhCOnx7Es2fGkC1Y4ihfs6UN77x9q6K/lCT2dCeoc/3wuGqdirMjSQGssAAiVHIzvBFt7r/tj/Jc6LqB3vE0rtzYgtaIF88NJoT6jzguXgF0YLsaA+g5Y0iBKZ0vVgtPLMrEAh6sbVPOxt4NLfB7TZGcomwAjc7zVCaPO69cI8WuxT6bmcTlxu4CFpLoFLF4wmCO5jhFUx4NIdOHICUQKqRL1zE5NQYtxM7ULNYHnh92lRZPDIP5caRK2Wp3Jp/Ppmai1daIXY7xuZonQjpso9ZrEuly9VwirCo0ri10PJbr9C0GaMp16x//8R9lW8jYJfHNb34TPyyjk+Y4anWrW93qthJ2sbTHi41pGLwyqcv3U/aHz9ilGFnfuC3GFEC69pXKtM42O6hm2afvOYb3/NsDsg7KWEtlfPIHR3FiYApf/f2Xy2tk/GBMdj6K78UY/VUBjhhGdX+1FvO78Kev3Irf/doR6e5ykh7NQQ/+9c27sLFZJQA+/pO78IHvHMcjZyfF32kKuPHL16/Bq7crxq3fv20D/vwHJ5GzFIiF/tNbr+zEy+2YyDH+7V17OvCnD57BuUS+Gu05KfFcjcY0549JTQfkff+ZiRUBq9DXYrxIY2KBv3OdZocX/U4nqVadQ3ssuaXQlKyQ8Vw4Oty0bTEvTqdTCFWUJnYBBCuovzkuMecr4lZSQSJLWqiIBG2VyNS2aiK/Ji5wDl0BQshmQmYOHntZfHt+z7OTKYmhlL+vfGy+X5KQtqyLAyqnT6e6zZSsDf+adytq5onCTIlS/ov0ydlSReKRiXwRIQ8B/LrI4zAtuphTwP1wvAT4sMPsTCqD69p03N4WwulUXjr3wi4PtoUbZ7Cq0PZEGtGfzSBPjW77XmDqkV79Gn8Abb4Amt0GspVJaazhcFjg6PK2ImwGkbQbapgTqc6xPbHCclLTAZcRdkLFVChFEQE8KEDFQtKtcn55RQppRwlBPYwC8vJvF9y2v8kmAc6YMwYnYnTYL8naOQ1wDxkhZHksNaB0FrX4vuAi8zrzJXpJRc94hsxWBA3SjxbgSmMDgg1eaGWVgKcV80Wk4imEgiEBq3MOVtqEs6ViokQAlPPksa95vcJGn+XHHZl0VvUQzf6K+ZpjLgGwCs/Rj1I8Q6vHNHWrW90uJROmYl2/YEzD525fXx+OHj0qEuPclhIT8L0h1+KKefQlqv7CPLugbzB7bJQMSlmpao2Gvs3R5HHZLwEiZPxgPMZCH7vRl1tYpDkMcJy3+WKaVk+rNDbHC8oXc4zj2BCYZmLZFCqjJ31OGGRobH7eGNwgzDMbQ2uRLmYwzu+wC+/083ZFt81hlWn3+3FTSxu+N9CPvDix9h8ImtbL8JkO+6DMVo0ck4bR/MSKgFXYyc9mbefa4L95Xpjbn/bLZzKdsN5BFpEfFljFMQIeHNDDlraQ5N6HEnmpMySyJcm7O0QjzqhdpobmsBcFu5FhNDGL2Xu+4sYsY+NuXiSeAK/bEEZ3NvSy5vF/BwYR9LO5X71X6jw2MIb+ucSilmI9JENKmZJRfN2OSXoyLmRzeSRSijneYRVhvY41JY5uKltEoqQh4HfBx5hO05BIM65aYMD2tc2xsNZG6d2OsEeYWL78zCBu292JoM+F5waSckwv3dyEn9jVhobAdP2TrCs3b2jEd4+Nyb3iiD1wfluCbty8sRFXtIfA2TwylhGWfV4bBKm8+YpWuW6qksg1l1C1XlPzGmWQhtIFYdznvE73otjAFMZTlHuqqWFJudXQpSmCYJXVIRfWhjz4Wu8kgqxl2dctY8xmjwv9GYL0K8iVlaQrZ4i/c8zd9nFvaPAh5jMxmbPQbLOrcN9UJOiOeGVbjPH5QkAKN95TfIY5TJJk6iXAkGB81mjSARd8hhtNbr/kETjedDyBkmlgLJ9ZNsPJhYwyP37TjaSVk7qQA4SjdfsUmG45xmvFW9KkoagWCCP1OgBR11yJ1xcynqmQoCCkGqJeLDHNjxxY5UJ6iEzUPfPMM1Wa6YtxIhZjpJSdvqHswr/9P5dmwqvPTB4N50eqzkStMdnQl+1DNB2RhZkXCou+y30gjOQyeGhsAOfSCaF18oW9yBULUiCutZjXhb95yXrc2zsloBVK9tzUHcXWxumblzf2O/Z24k072zDARdjrEkqq6t+zcfz6+hSmrmiD5YthdcyPa9bE5jgUsNkp/uId12JPG/CDI3H0TVlSuB9PZBwhpRmrCOdTaY1XpGPzYowONOeWDBBXX321MD+o3amHP1lDeKxcxB3nw9ED3Na69OtopR/m1B/c0RYSFOjQ5DS6WYrjNeAIAgDGUmX4XDpaAm5kiiqJrpwO1Uk3Qwqles3OtErNog27RuHk3olsdRKtDl22Q68oCV17h876btoJf86t0HITYGvfL9N7UxqAA5NpFC06eGWhuKYz5aQlVXvczET1bLCKJFxdhiCvOVdNQTfWNgdk218q48RwCh1B9wygCo0yRB95/Xb83leP4vBAXOYs5HXjpg0N+KNXbMbZiSwe65mEOxrFlVeEsDrmxg2bmrG6RV1HvIaifjdcZg4TqYJKcIucoY6gx0RzDeU7pZBclDVzgCq1E27LDTGI4T1EB47ArgLBVHzuGSY2tofxa3duFlARnUfpnCVC3z6tkYAHsWgAVlZ1H7Nww3H43Cau3dqOrd0KnLGhM4afuHETPveDI3If0snifHc0BvHOl+7Aco2LIRmtuNUmegcGBtBTziMV8sJweeR9bsoUVcE4zx+wg3SaPsOLRD6DEnJVfdY1/nZEXctzDJznSn6qiOY2aQGtOgtMUjOZfCmBVS6GXq5udatb3eq2sjHNfAwhsxN3hw4dkoLc5s2bl6QFvxy7eUcnHnxuYAa4VgJ8XcNLdnbPeC99tD//wpMCgq21cqmCB44M4v7D/YiUxiUhsm/fPkmGLMeYZPvUQz34t3tPYYDUwY0e/MS2AHbtmvve1+5sx/a2EL70zKDQ525pCeL1u9vRWJP06oh48a9v3ImRVF6YE7ujvqrPz6TNuvIw/nB7Canoari8PlzdHUFXdH7pvFVhL/761g34l28/hGSsC8MZCyPZIrKkaZ4nBHDI6lYiOmAsQ6AKi+bbt2+X64kJdPogHl0TeZvjU1lhzXB8flISEzzRXhPDvVC2KlDG9ihwbNKAXrSUNnaNH88Iws1WUb2EIjRsiJQwljPQk1QA9tpJnG8+Z+dtOAXM36YtRhMqzR4vkjmHrDdkwVNAjmpN3t6HOmeUxZ2Ok/g+J5efr5CJcOYYHMhyulgUSnDdpYAyNAESWReu+9vk3WJeXbF0CEik4kHIrePKBq8wkfBN4XnYAdcFQrihsRVPTI4ikc/DpekIuly4rqEVW0Jh5CtUMc+jVG5QMYLuQdgMCS297J9dkJop7CpZu6ijGiJ0+HRXjTQQXyMzS7X1wD569T+VdlQwbpOzIPEbj4VsrfTCdQGqcEuW7YJKDRiF5tI81cKScxYIyOBnw8Z0IrPJ1YRkKSmAFTKyOCcxakYEyLIc4zOX9MncmOhlfslhXaHed/eGdrhcbmFYZExD1lhSgz/fxvhCJKtthkqVB9Bglt018gBLt2wmB6tQFnbW2TK1FWq2XiISQLUA/LrVrW51q9sLaxdiwKd/zeIom0T37t0rvuvzaWS2d+se5Mv5GTlWh6Et4prJNEmmFTYQzza+n4z4ZsaQGhOLvhz/Uhgia411oMHcAKaKk/K7t8s9b22IeeAtwc2YLE4KaIVjbnDFEHVFZ+TxW70tAmDJlXLii3mM6XxzKpFC4tkJNLZG0LyqFV7TgyZPw4L51mubW+BNJHEoMYVCOIjxXAGJoiPvOL9yjfh5F5m/ZdxCGVM2N+zatQstLS3yOo+TeeT1zQHJ209lLUTt+EUK95ki9q6KCsPKC2lsRti7rlEAIwNjCRVvKDIRe6w2gYquYyxVECmejZ1haQ5l3r1qS1Cf4KdYo+JG467S+RISOV0kZapgEzuGIdsI6w4E7gtAxR6cYmphjUYV9DM5q6YeZ/vbNuN6/3gSVpm+t6rLsc6iaRWR9lnQbDSHUxck0IR1Ec4V2Sq7wl7Z9q2K4nQ8h80doRlAFcf+350bUChX8ETPuDST+N0u7OgI4Y9ftgmaqePQaAbDmSK2tgXR6DVxRZMfa2vUEmI+lzBVUqHAAdGzVsT4v6UmJhaGFrL0U6q15hhq6078HPMiAZcucyB3SEWD22Mi5jZxZ0cUETfZVKaZWOyJlN/JxiNyQXaDOKfGpWnoCLixOaLyDQG3gZ/c0Yr/eGoAg8mCqtGUKvLZt1zRWmUYWqqRBKG1tVU2h82D8QyfywMDKUwRBGO64PP64fF6kbZjYQJXni8j+2aTO4TxfBopO9bj/jo8UXR6lt/EzPUoXNBRdHkxVcwKS6hqyi+hweVHx/PEFLNcsArt+cYu/LDN/FGlmJuPbYTFUDoRpHFdKs30cs1FGjVPG4bzgyqBIi00akFv93bNWbwnC8oxmc/GcxPoO9SLnTt3ygNkuTacS+OzPUdRtJGM2ZKFRMSHrwyewVvWbptBr0QjHdbL1jXIdj7zmgbW2XI+ND7gjh8/LswJe3ZPOxYXMiIynxzI4cBoAWXNxB3XbsTP3rQePaMp/OIXn1tQ+50J5uUaKX2Z1OU1RBBTre6WA1Yhg8z21iAODiVFy52LABlFqCt/xw9RAmgho4PGcf30le34xpMncTSpS5ecLJJE75LFhNeevaAmMxbMSkWARUzIiyRUeYF70KFUEZtND2QX322aNSZlJTGr26xuszohHcps4jAUMEY5Js5uHaeMi66gjm2QC41/IYrVrZUwWShhsFCqjtdVy/JRk6h22Fz4HX63LmPjfjlfZC5Z2zBdZCDqlQ7Z6bEUrt0wN0ja1BLAp9+xG1+492mUTC/2bVqF7e1BHOhL4H+eGsCRoRT64nnkrBKiPheSFQPvssEqHOfapiCe7plQrDW2k1cRHrcyNtlsJrTVLSE0hr2CaFaUKMyIk+OcGWzFzuL3u5HLW4gnVfFBmJLcOq7d0oKP/czV8HtcSOUsxAJujKYKaPYb1UkZTeaxY2MHosjjyLkJcUxZi1nfHsX7X7enqmtKe/eP78GW7gZ898kejCdy2L2+Ga+5fiNWt67MAj470duZTuChsX5k8wWkJyZkfixdg1EoIEpY2vOE2h3MTWCiQMr2gEJSk568XMZoPomMLw9/TXC3FGMQVSqWYVoe6XIU7Xqi/8su6GV2hF46iV06pH7/+aXt6la3utWtbi9sYpfrCv1rdiAuh2Z6ufa227bi0/ccRe9oqtrpR3ehLebHz965bcZ7R6dyGLQlCeeOv4LPfPsx/MyNncIQuVytW9offPlZ/PPdJ6u/H+gr4kBfEg3t5/CGq1bNef+mliB+546NF/zelqBHttpEAamnGV/eefPiWS17E3n0WB7E4zmEPS68ZWsrbugK4wN3ncCDZyYXjKcuxsjwwKQ/mxrY3OCs6U48w583tkdEF3soU5DYgQkxsq3saQqiO/D8yC0uxQqVIvY0ubHOXcC3ewm6cEmHGcfpsJhYZTJiWOgI5dDuz6PZE8Z4zod0AVDY+cUndqfZVqYTkEI7LH9TiVhLYhWbPUQaJRTYnkAR6eSrIZxwkrcOaIMAoXyVuVJ9nslgssLoRkFYViD06hqylhLiccYw+0gUKISfJYOmSiDzu7vZyegMxAZcW5UCSrCqjIHV79A0XBlrwhqPD/c8fQBXXLEDXb4gfIaBdCWJ/mwKB8bz6M0UxSfeFPLg5mYfwnZjSNj0VufL6SFUTJxkenHBq08nd2OuMHqyqktQkZSqmEO07pkMZucweCzU11LHyvwIQTgNZjOiZmMVlIKy3dVcbUxQVNxhLSYAmyIBGjYrS9BQIBfH3LoL67xrMW5NIFlKCZglYkYQM2cWdy7GKHFQm+jNWilYKCKdTAuAjMUIr8+DXCYvx+e+yEab+YzzU9ILtlStkkyWc6MxnirCXV5+/ovP/WKuDK/HgGaUqzdJpcyg/9IB39MuhjK7bnWrW93q9sNhiySwkIwkXD8ZEyyVIXI5JnnZwGocS56wazRcypSn1e5tkwa2WpsqTi34XVkrhyeefQIb1m3AmjVrlj1XZNY/lnxO/BjHEzUbDAxq/WgsN8Cs8atg+0mN7kbZzmd8n9+cyRLA+gwZbGbHCeezUqWMSRSQcxegaSlsifqxK9oJXTPxVPzxGYoCteY1li+nzrrewYMH5RqZzVbjxDSbW4O4ZWMTvnV4GKm8Jazr8awlTO8/eWXnC57XZM1BM3S848Z1ePDZU/j+iSQKbhV3MO5ijcZivrgC+PxuaG4Tw7kyVrWG0TeahGWVpZZzMebMFRtIWDKVmg8LIXb8w7icv7IGUDIMqekIwFkKOcqLJBhCctgEY2hsYCUz4XSZIlfSEPIbSEDD0JStykAGSBswM39Aw+8iuEVJ89CS+aKMd0vHNBCBv0c8JnriWdy4KjKnXtkcdOOjr9uGbz9xFINTOezZsg67OkMYzVr49plJPHR0FM+enkA8XRRJpNfs7cBv37q2em2sinrlHPCoFdBDFczIGrOupkmf7CYbG7x4aiiFQsFh9ddgmjoMg5IykHoThQuS7L62uyc8bg2rQm78wuYmNHpdErc1e104l87DZ4cBAiiyymhym2jxuXA2lRcADl9v8Jh4eVcMgZr8wK1rY8Kq8oMzkxhKFbAq7MFt6xuwqWa8F3vN8H7jRubbDYUc7h/pQTafR34qjtK4hQrjN82FSPn5Yy6aKKYxkIsjaHoESMfruIQyUuU8xotptHhCy45nPJqBXZFVOJMZx1BeSeOuCsSwzt9Ylbi9FCyVSskaejH5skvRLp0Z/iGYA1aZ7QjVSrts2bIFXV1dP9RFq93TCY/uwXBuCJlyGn5XAK1eduvP7SIssgtqPpO1oVzVh7oYe2CkX4qwanFRPFnUH+zPpXEyFcem0PIlLxwjhRSBQewKXcqYc8USfu7fHsKjJ8YlkcXOna88cQ5ffrQHOjWzPfM/fIlefLp3Cj+2fenOLdGCdJCZWKKe++zOVGdxJ0L0vTeuxdePjODBnklZPF6yvhGv2tYinZeLNYIxTk9khA2mI2CIw7ASRuQnh05fhnJ4XB89wl2t9kkHnAssNf2IKO0ZTyNnVXDnhij6k3mR8KGc0kKgXW3mf6pIXIfeTPJVtjBfaRbGhcPwmUoDcP+aKEpWGfefmRTWD36GH1PoW02cFS1LJ0pRb/N7a5Vwrl8bw5M9k5jIOIwqar/Uz7Mv53nz03yJx6uueyaWNayKuNEcmOn4c79CW7eA8TrY1eJCLBZGd0dI5vb+E+N47OyUMAvRv+F3j6by+Oh9Z7GuyY87t7Yo+aNCURw8hzpekt+iXa8YbapzrWloiAUBr28mTJ1glWSiCnijszWVzCotUj4hCgWc6x0TlhWCVYJeE6/e3Y7/fPAsesbzqBTLSI+mJLH81uu68bIdbThwegwD4yk0hn3Yt6EZXoJjZt1bd+5bg6u3touDSzmg5/P52eYPYXtDK06l48gH/SiXysjHpxDLWjj3zGEMuVxCRceOC3ZiL0b7djE2mJ+UOa0NqNi1myzlMJqfwmr/4sB2s03oCA1Fu22WPUrarEYX91KyemK3bnWrW90u7cQu/Wr6rPzbSsQESzGu/1//w1fjI185gK88dEIAxa+5biPe8+N70BabOQ63S4GDF7LJnI6rrrrqothgzo2n8a/3nlJAaDvpJsXUMvCBrxzCa/Z2ia91sTY6OirJUrLBLYXB5tmRFP78kXNIWB749QpG0gV86tAQPnN4GMNjqXk/w2MZSZ2fUWchc0BMBKvs2bNHmjPmi2doGyI+vHlDMx4cSqAvXUDUbWBvUxDXtoaWdO3G85bI2AT1CsKmvmL+IRk8mIxiLJiBgYBJVkslp6lADZTRMbExqqHZR7AGEPLkcXtHDE+MFjCQLgvjioNrqA0M1BDnBgu1kqe1nyjYzJO8nukhEzTjM4GAy8TeaARPxyeRKU134zn/ZSzggPEZLXml803ROfM9lO+5tcOPhycLKJSnvUJqydeCVWbldWGijBIoIar+xigg6NKwv3m6S7DWzudvBg0TsVwBGwJhua6LlQKG82l8oy8tSVOXrpLaT09mMZQdwNvXrlZdhWRrtOV+hIlQU/e7o2Neu0dK8WQsDUni7W1WSa3E49fg1Zn7KCOo+0AuF55z1ddTQaZsIVPKI2qHJV7NB7fmQaGSUyfCAIpaASZciBmNcpzZMiWHK7JPglvmSPfqLrS6WtBosnvYuOiO3/MZ9+1zBQQ4IqwqpPXO5ZCYSqKn7xzGRyeE0lkkgxoahNF1Je4fxbJTtiV/ahiJ5F5g2wrPkX5RMQ2BKZWyM9ZLL55xAIZ1ZpW61a1udXvhjesGgQezbXBwUBgiWQwlcOL5ZoistRZvs8jh9Gb6MJmNS72mO9gpYJXZlp+H3aRqGhTjR9PycoWOjeaHbaCKYoejcc0m4Hi0MIp2bwcu1riGE8w+MjIizdv0PRZr9wz34EgxAS797nIZ59JTOJ1KSB57TXD+gI+A7mQxjTbvTKnUxeYl2UzMAi3j3dk5X14rDgD/Pbetx+pGP759eFiacK9d24Cf2NuBfasXX9diTHtyNCV59O6IC37PylyLrH+QoZ21I9YiGKP6BLAAlIslVEoV+Oi3mga2rW1A72RO2Ob3rW3EukYfnjk7iZEEJSyXPwaHEZU/LMoSMKYhayLlitwuYXPZ0hrEzlVRfO6pQWGxJ9OjvN+uG7I+kjUNWIWSfM4Nsqco2SC6rju6o3AHvXjybKJaH1INzGTeU8HYjP5nmsToFWGJN+x6SCqnYVVrEFu7I3NqNGQUmQ1Umf4qDVubPFgXQvWzh8YyuOvpQTx+dFSuFeYExuJZfPzu0wiaGn71FiW5S9CQ1GOMaZYX7o9jn+2XxzwmMpmCgIyc669Y1OD3m8ICynNHppbJrKWUIfQKrGIJvRNZJAtlNHpV08JVTUGM5IoYylnIQcd4oSRzvrshgNvbwhjI8m9FAfSvD3nht1lea+2K1iA2NPrkuop4Fp6blbCQ24tdjR04mhxDLuCTZ0kqmUSgUMbEsdO4/+hpeZ44dZqVAlYM5RJSqw67ZtZbyYYylJ9aNliFeTQ+QwKmGzvC7dheUc/9Fxrcdj72+x/m+vjDsB8psAovrNnJXYImKO1CNNL+/fule/+FGFejuxlRowF3PXQXdt66F27X/AhTOkmZkqL5qZqNyDN0Y0WC7rOZxJwbURG3ajibTlw0WCWRSIhjwaQLHYulMNh85+AAnjwzgZBHVywXHhesRAkT2SL4eNK8MxnQiHzkGseFYbZsy2LMQRUz+UwneT6rTe5GfC781N5OvHlPh0paLpFi6/7TE/jUU/1Cbcbp7wy78XNXdS1LRmi2dUQ8WBXzoWc8g8m8YlPxc+xUgHE6BMXpUAt12OsSpC8le96wq00co/94rG9erXonuTjXuIDP5tKe2wJIJ+3qNRHcvrkJP35FK+47OYHjo2mMZ4pI5hQqlesv5WoIBhHVGukCs2WJbNaXtqCJ9VE3nnXpQsNGExR8SUPZKsNgVnU2EYwcgKNVT0dQx97uCO7Y3IhTg1NyLlrDCuQ0kS6Io7S57cKLnnP/EPRz/8lx9Mdzwsri0MVzfIl8CR9/qBd3bGkWUMvwVE66einZRGpC6h22hjzI5ovCHLR3rULG0yE9OpJRx1GqCeyYICSAJZtGNpuHTjq5gBsetymgkqJVQt/IFD7+rWfxvjdcJR959e4OhLwufPXJszgzmMPm1hB+7Io23LK5WY7hqo0tALcF7OxwAv/y9Wfw2LFBufe2rmrAz71sJ3ZvuLiA7Hzz2u4JClVfvJgWPXpvFrh24zrEtocxNTUlALMzZ87g8OHDkuh1nCL+e7mLeKFcnEN7ybHwLBdn6dYuxbge1QZXlyJIxbE6ZXbd6la3ul0aNh9YhTSsBIKTqXDbtm1VkP4P0whK+fA7b8C7bukUpgCCIuYzt0l5mYVZi6/Y0HnRQfdDJ8ckSeaq8cUlFtQq4kedHE5ha8fyWeDo+9LXOHXqlEjpEKyyFPufo6Oiwe1HWSWZNE20rulm0w+vdZcFhEB2QibjapkCF2mUHyGIicVwdh/OFy/WxjO09WGfbIwXFKhi8f5JrlTG/52dwDPjKem2o/u9I+LFK1bF4F0BgFDQ9CNZSiNfKUpinJ13M0AQ9lgV5TITpjoslLA+pGF9KIj7hrJ4dFQl/e0PLINlZdbrAp6npriBK2J+7IxE0OX3Ycoq4GSS8jIOGyRxFBr8hiExis8ow6roQvtNEL7E9FoFt7e70eSvwJxkZ5qSQZXmCFOB60ULflZIRWC6gHb4v7IOr2FgdzSK7VETAQ915Cn5qRL4FhjTuGCeJx3kXA/OtTFaSOPBkTRSxRJCbB6wJ4IAm+FcAUcSSeyKRpC0siId5HO5kS1RX70sY3HrCmRUKFvwGMr37c1NCKuKHDuT1mw21Fj8UfNJtpysxkKQLtJCTA7zJPB8jltjaHY1C8iEwJKY0YR0OYFUOa0YM7UQAjrlidS+yKZyvmOdKk1hrDgmBSGyr4SNMFrcLQJceX5ME3YTnjFhOoGG5HgKO3fsknvVkQxiPoJGEL4DXllud/m05NLsi1hJ8TqU/Uv+Xltqe3rduXTjGVodgF+3utWtbpdmTMO1hDl4SoDXSrv8sK3BHZPtvoP3YcP2tWj0zc9S4jcWZivguh5tWL4chWMJa8pen+f60Ini1EWDVZxmB849azQ+3+KbbUdzGZxITioQNuVEDUN85XSpBHq6EnvZ4HBH4lE1Y2rioy/VnHiXMrebNm2aN16sjWkI9HjTvi5hUmFMs9RGhYN9U/jbH5zCqbGMfGdL0IWfvW4Vbtt88ez5Mb9L2Dme6U9gPFeWBl3WaGpNMdMzltJFtiifLiKes/Dma9fixm1t+PtvPofRhGIruXhzqAnpdWtSf7h9WzPeuLcDvfEcHumZQv9UTupErL8wvmMDNI+DzDWkUaHULw+B82xpFYT9brxqfze+d3QMqufXZtLnuXCbyGcV6+HsnIDpNuXclS11HW1uCeKN+7tQ8JgYz1poD6o4hLF0xirh6qbz12hqGdgJWrr3+DgePzaqGBh9qv7q90DqMJ9+uBfvvHaVyA71xvPoDHtkzASZ8P3tPlPY54dT0/NOcI6wotoqAowjxKsuV5DPlaAbOrL5kuQlfKYmTKlynZYrUhf64rExvO+qTvkuAlBe1RXD46MJHIkDMbeBKxoC2B0jKEFDV8Aj20KWLFj46okJPDGUknG1BNx4+boYrmpfHnhjMdbk9qPZHcDZbEImIFDSsT3SgnXbuqQGzHiGz3TKoJKt3QGvUB5tuTkrxpPz5Sf4bMmXFyB6WITNjGcuTZBKbY3mxcgU+SMFVpntCLGo6YAmSCm3Uh34yzVnkT2fXmOzpxHx4uS0HrazmGik0b14xhOaqekoCkHy9A1pS4HDfZEdRg46mnIe3JZ60z91Zlx+Eq0pHUCVClJZUs0BpWIJbpCGeRqJoAAYmlB/XbO2YUkPpyNHjmBoaOiCqOLZyV3abCYM2nAyj/5EDhGvC+sa5na3HRpK4m/vP4PxDJOJ6jX++6/uO4sPvWwjWoLLp8ij0Vm4aUMDzk1kMJ5VaNgMk40eQ5LQBNFyv9T/o8QO0bETmSLyxRKylCkxNDQF3OhbsiM0l9NNjt0GuES9Ckhx68YGAYncf3oSfo+B2zc34uEzk+iLV5DKKzkfoo453u6oB8lcCVmb9o4OXMClQS+V8J3nRkA/qTHgRtYqCQikUClDkUhPa9VXaY/lBZtMsUJHy8S6Jh82NAexJurBvcfGcGRQAbhYILh5czO2tp+/uMHv5PaVp/rxHw/04LmRDAq8r+jReU0Brcg50TWcncyJ/mHArYszxPmuBcMQrXx21ELQO/18evzUmCB8RX+wdg3msZB6PpuGVbSQLpcRbgpWZXs8Lj7yC3jsyMCMc3Hr1hZc0aTh+MkSrrvmikXfl5PJHH773+7FyYE4ogGPII0fPTKIUwNT+Oi7b8WGzpV5JtXaeD6PL/cOY4j3PWnzSFWoe/BUKovbotGq07Nhwwbk83lxiijxxk5inhMmeh3wylISvRFXAP25cXgrrprkvKKzDJqLD+Yu5AhdyuagdutWt7rVrW4Xb/P5j8vpQuR3EDBB4AQZAMkQ+UIbx+dIAc1n9Gl2rWnE07ZfP+OzuoaX7Lz4Y/DZTHCzy7LO775lgNgd49yz2YGx5HKaHdhZdXIyKxrYtishuuUO20wg4BIZR8eEoZCgDF3DK7e2LDmJQYkirt/naxJgHDrfOZsNvGdykdTE1Mzu8LsRnmceCVS5b3BKSd2I1Cbw4GhaDuL1axYfjy1kPt2LsBHCsBZHyAtM5AmEIHOhAkPkLCbAy2jwkGNEMUiQdcWqlGTO9zWX8cQYwcYL7aGyJMAKv59gCzKYeHUdNzc3YCBbwuF4GltCEeTLZYzkcpgqFKWTTjTGdaDRY6DgKWOyCDBXS/kisuysC5XR6E8jXnQJuMcLHTmbBpxNAI2eCibzBORPD4KQBxelV+zh87nQ6HILLXTY9AvguljJV4/M1EwE9KCAVy5k+XIJj04OYSCXRE+K86ghw4S6Yarr0gb8D2RzAlZx6YZI2vgMU7rSHMuWCJDRpcHGsaH8JExKEpFOhYUYAlYIRqlAAD6GUUGhzOQu92Nfu3ZBhOeakj0Nuoo3eP7DRgxn+s7B1xhCNLT4a41AlYH8gESE6joiGGZcgCvdnu7nJVFpaQVhVnEo/XVTQ0NHDGXNkhiFADhunA8n0ctcChO9LCQ5wJWlJHqZPFfA+JlPRlUE0y6KVUW+/zLo7ON8MqZhE0Pd6la3utXt4uxi18daadNsNiugCT6nWaNhUfOFNq5r56vRNHpiOJftFT9TrGZ59Zs+uGzA7EWNYV7QrNrJxbLATU5OypzTpyD4fqm5yeFcSvKiLko22q/RZ6XRT81abvhN+jpqzE5YQY9jKawqvCbOnj2LEydOSFMGwSpLibEVe/nMa3UyU8CJ0bQAB7a1BatMnI4NTeXw+/93BKdH03btABhPF/Ch755CQ8CFPV0X3+x+3Zoo+uJZjOUVY3wyV0TE55ZagTDgs1HB5xYpGTZgV1IFAbVkCgRAGFjXHsFYYmQJ4qYXtliQZ1PDnq4gXrGtGY+fnpBm21dd0YLvHhnFucksJtPFao2GDbkbWwKYzLiQyhSQL1gy7pDPhfaGAL5/ckIAIlGfS0AuebtGY3hc0Ctl5PKlGQyWZDHhuahoykP2u01sbg+iOeTBhvYwHupP4MyUYhrlPG1vDmBb84Xz1Bzv4+em8PFHevHkuThSWUtqi4ZeUnMrNRNdzsHJkRR2d0cR8THW0UQOyCHjkWtxModADev8qYksRlJFYXghqF/2J4WnCkpkmbHK8ixhY3KT36yytLAYx3+fTuSRs8rSoE1bG/KizaygoecQbl2/fdH+NeP0f316GIfG0vCZulzz5xI5/Mezw7KfvSvQCD/bCiUL94z1YiCXlucfcwdFAzhZSqOrUpY8Cbe1a9dKAw2fOazREJTI36M1dRzmKxa7pkRcPpEBYq7BYY5xcg8x1/LXDodZ5XKwTCZzSayT+FEHq6wEbTZvBi5ypEJmQfNitAOfb+aX2UbNwX59AGlhV1GZMqVNbaDbvzLJ6W2RRjw1OVJFHk4v8hVsDjdcFPV0X18fdu/ejebmpVO90QJeswpSUSNSD2MaH04NKGGMBMh2DoYuEheLj75xpyyiizGy7RDExEQ0k7oXuvEXSu5Wv88q4z+f7MO9pyeQJqDG0LG1OYBfvm41Wmv07r/+3LCgVenkOtcjj/PkeAb3nJ7AG3fOpRxcqp2dzEr3W8xFCRMdmRKEOYWLFjvXOEN0Qii3xAWWlG/JYglP9yewvtEv4JYFVHTm2NyO2VrQinI66CvyZzxbxAe/d1pkaTg/tIjXxNqmAIIeHYMTSXh8PkTcivGlWLDQ2eIXZ24sVUAmV0SY+tgqHS1o4xK1Rhu8yFsVQRpni5YkkXkdDKetKgBLUL+6LuhXdjXG0wV8/ZkB3PXcEN68qwlvvaYLQ0lLFrzuBj+6YvPTaNcaz9uhoSz+5YFh+Z3AmaEsewAJvLGg666q9qPfpeSPCCi5c1cH/v0HJ5DIFgU1LQWB8TTaoj7sXz+N3KY0EOn3iFovCLCsKs6uptk+SZTlSZK+nZl8G+1Lp2+h4Usn7xKehXc9dRanB6fQ3RyqOvZETp8dTuLLD57E+9+o2FtWyjiv3x4YV/qNpiHlBxZL8hUDpzI5bMvmpIvVMdLLtbe3y8bPJpNJcYoIQuPziIleB7hyoURvt7cJ44WkdIuyG5TXA2XZGlwhNLtDPzKO0IsRtVu3utWtbpebOYldR1aTyd2rr75aAPiXgl0onqF94C1X4yc//G3xTRyjL3/bri5cv/XifV4CcalJToY++nhOTENXae/qGNY0LQ986VBPu91uSaTz51KNSRwmj3JFVSCmV1xLXBjwutAS82FkMqtesDXDd3eE8ba9i4/3SOVNiSKHQv18Pt5iwFN9qTy+eGYcg6Q4LhMoruOGthBu64xWk0STeQuPDCdqEnWO51/GY2Np3NoeFprkizGCTjJllfhe7cmiUPIiUdREgqco8iYVrAnTV6wgVaygJ+VFznJj3FPChrCGkawbpUp23phGAVHmm6e5skC1byNYhiwyfZki/vJwLzSN41BAjhavKQk1K2NBc1XQGdJFnijiKiBXtlAohTAhuu2WAFEaPUrqiKwrLr0Cl2Yi6naJTG8FReQNDQ1elQwdzdkMqxrjCh1aWQHZ+Wp/IoWBVAZPDOl4VVsM3Y0hOSE8Vy7NvUDxo/YYVS7gqfgIerNJAad4dHZTKobOLErCEGOLvgodNa3RFUTQ8CBl5UVHnPsrlksCOlnnb5DGmNn049JgMmuep8Nr3h9K4slhOanmKexPzR73Uoo3fD8ZVXgcbl3dz4wyCFhJlVLIlrPn7ZxejlGsydILM6taGgky3QJicdXK9GjavIleglcIXOE6wL854JXzJXoJRtErLpQ03j+OZK4ag1lxL5vh0XneXy4xTZ1ZpW51q1vdLg1zAPiOrGZbWxu2bNlyyTR0XRCAbwalqXg0p/wIqdHYdZq1gZWpNTW4GpG0klVgKc351gb3/Iwvi/F9yNxGP4IMJYwVljNWyaVX/X3lw9VKvU4V/HAbFkxNOM9tVnMN2yMb4TO8i/YxyJrNXC5lYpm7PZ+JPOd5zhmP/XNP9OG/nxpAnIzmuia1h/feuh7batgnvnNkBM8NJqXpVOaG8jXlMtJ5C188MLgiYJX+qTxyxTKiPgNtMS8mkgUksvQPlRyPaeqIRrzS1DqZzKOYK2AqoeOB46PY1hlWzQ2LLdJc0BSYiL7cVLqAj99zGp9/+FyVHd5PSaCuCLyaF73FDNyBIBojPmkOH0nl0RgICthDajRWGdGAavRkI/RIuSIgm9WNXjBEnMpZSOWLCHv9CHsNnBqmzJKaZwLX5aoqFGFZZaRKwHcP9uMHh4dw66YY3veyLYiXDalhNfpc6AypxtkL+vrZMv71ybPCDNMW9mBwJCXXarrAGo0CjfBbWJMK2bHqNd0RPNWfwGS2KI3WnOaRVEEajfd11jYZM1ZhTc0+ETXnQ/VHM25RQIpEroRGvz6jhMOmBx7P7DtCJJCW4FsfGc/g6EQGMa9ZBb4EXAaGUkV898wk9rQsHgyyWHsyPoxzmaQwaDIWZU2zqAGj5SIGsimsDUzfJySJIFsWN54T1hgcJsnTp0/L3x3gCrfzkUp0eKPoy00iUczBrZsyj2RUCZledHqjP1INxdolgGn4kQarXKzxJmf3IW+Iperw/TDsQsCHfDaPzNE09GYdRswUpGHEjGCVvxsBc2U63m9o7kRvOonRfGY6EVcBdgdiaPMtfR9OIp0sBwR/XExn/st2deLf7zkpBX8yaTg69Fy4Ax4Dbq2C1koRybImcjWv3deN33v5VrRHFucEsWuJ3Yd0fnh9LEai6ELJ3S8+O4hvHB1F0GOgPeQRtORTAwn83QM9+JM7N1UXVS6ATEISvOAkfEmhRoDIgf6kgFVIcXZwMIWcVcLGpgA6wovXepvKFvHsQBItIQ/WRHVkdA90l0sAMtxbOmcJ2nU8VRQABMEcTKQPp4tIFFKYyjOZSn14BWyZMQe1VOX2f5xrZ+7UqLS86hLV5Pj4HrK3WGU6KwbyxbI4bYeHSeOsPuMu5BBqDWB7exBjyTx6J3K4Y0sTjlWSSJNhpFxBW8SDFr8L6cIEhjIlQbYS7EIUslaiu1OBr2LZxHPTQQQ7K9nQRwq7rga/XFujqRz+5+AY2q0RAam0NDYiqJHS0LsosMoDp6cE7byhJYhIsYSxgbSd3C0jU7AEHczjfunWpqrz9/r9q3FmJIWHjo8IRT3HSaDKe1+xHdGAWySJnjgbx1P9KXFg2YE5Pfn0+g2gkFdoVoNOApmH8iIDpHy9EtwuHTdd0XVeWrzF2qkBoljVvqpnV9PgcRk41DOGlbaRfBHn0jlJhjM5TnPrZXCm4sUyxvOFGWCVWuO4WMTjxkQvA+LaRC+fTw6il8ne2Qt+2OXHzvAa9GRGMGVRfkhHh7cFa/wXRw9+OTlCL1aKubrVrW51u9zMAd8/+OCDsnbNp9d9KYNV6HOsj5bxe3e24FvHCzjcnxSGtp+6ZRN+/dW7ViTgpsThR3/6Svz8Jx4X34tOF92mkEfD3/7U3mV9JxPpjGnIXrMQ9fRijL7/DV0RfOvUBEzbTybQgsZvJCA32BxENOjBcFwxsPzmdatx24bGRdFXc36Z8OG2Y8cOAe1eyGqB8vPNPymWP31yFCOZooBNlNZ8Cd/tm0LYbeLqFpWwG8sWBbDCyXb8W847gRzxQgkjWfV5anH3pwtybBtCnipYfTGWKmWRtnIIw4eonsSN7RWcTWoYzVNWB4j6UmjyMEHmwqNDIWRLhB7o6DWAE1Ok0lZFemHmrE0mOjGNTVdeayo2mx+wwpGTCYSXGVlHkpUyPHpFYiYCksY4H2IGdAuYtDTc0cFOUzJY5hB1Z7A+GEJGKIupa15CwAjAb5bQ6sugL22hVDEFuJKjtCmAjaEKUhbnVEme8nxIwtVS1N3spmv0+2AVKZtp4ftnB7D1yNQMKZkLNWTwWijqGsZyKXh1AlVMNHorSKcIv69I3GrpTK5q0gSxJayuAdK67wh14dlEnwBWnPlr9YSxPqCSk4w2CxWCWQyMMUksF6HarxNmkk1FXY+q25Egcd0BnVEaS3PBp/vnB6ss4d4kKIUMKrP9ebKQWLCQL+dXHKxCQIpzPTmFJwLSJK8gsk/zSfUsLtHL/IUTz8yX6HVAKSWN1OtMrBswKuxuXX5q8HIEq9TZIutWt7rV7YU3rhvDw8OSi1+OrOYLHdOw3pE6nkTFV4a31Susb6zNdPu6EHNfvASQ07Q8VYwjbk1Ov6gB7qJHgCzLyUE+99xzAmq/2LrY6kAUXsNEplisei1sSmWOnZKQFRgYzfI9eRhaAe2+MPY1rEfIFVi0RBGbBGiMdxfDjn0hsMpdR0fx8YfOCStHR8QrzaDHhpP4428dwz+9aSdifgVcfrxnUnL6rDXRpxfMQVmTht/Hzk7Je9h0caA3ISwtqxv92LwEMIB8tm9KfLLNjS74vS5s6Yzh9HBSalwxzYsMNKSLZQyciyOZyksM2W+VMDmVw9B4WpptTeYF2EVwvqaD8+nvVo3AdwOpnCXyNJm8JUCdiN8lcc7AZBbHBijzotxUczKOctHCdWu7BYhyZiKLWzY2opFAkERe3sbm8U0tQQFyTKWLGIjnEfUrv7TMGoxHR0PUh3MTeRTL9PPVMyFPNkqrJLFke8yHRr+JqXQe95yYxEbfE9jToRgGfUYDKmWT9ITnP7JKBc+MFDCRsbC6wSdzcbwvIUoNhIDxPEvDsFXGzrUxrLOZWq5ZFUHPZBbfOzWBc3HF5sJmmJ+8og3rGvzSkH5sIisbmf/JnFLL4s8pJxBGY32mVIHb1CQmztjqBTxvjG02RL0I2gz8tWNeak5kIKUkhR2gimNsMOHfWDejmsJKWa5k4Vw2KeeNzwFlOrIVIF8pY6yQmQFWqTUeG31xbt3d3fKcJWst45menh4BqLF+48Q0ZESsjTO8hgtXRlbjVHoUI4WkvNbti2FdoBk+w/0j0VCcepHWaH6kwCrsqmfnIW8IdsKx6/5Ss/M5Qk53HOnONq/b/LzdPHzA/PTabTiaGEdvJiXJp2JPP3Y1hZEsZiQ5FTL9i3po0uF0pJaoW78Y8Mf57IruGN77sm34q68/i3iuBNMqwK2E7wQIQBBASVgnSti3phF/84ZdQuu1GCPbAim9lypRdD6wCsEl3z81Dq9LR8ynFmQu1rrmxvGxNI6MpLDDlnwhFZqDPVBsMY5mNJ2TEg4MJPBPj/QJilNp1hu4c2MjXr+jFQ+djeO5kbQkeq9eFca+zvCc8VPSJ5m3RBOx3a/jVF5p9TX5VKdeR8gt3adcwMrWtF41F1GO69mhlHSpMYE6u6PQmQNZhKsTo95j46dnz1rVUeKhEjnL76I7OZkh+4xyBAWbbSeMyaDx9EAKyayFiNdANlHGoz2TSOWKctxExu7oCAsoiJJL42fjyOSLyBR0AQBtbPIg5Krg+FgevHWEhYXoWY0LrMKAswBAB4VjaYn4MTCVh9G+BmvaDVkwuVjy/qxN9JKdgwwmsykDx9NWlc2HSNZtTT4cGcuiWFbHzMV8d3cE77phdfUzRCr/f6/biUO9cZwaTors0P4NTYj43RiYyuG/HulD72RWjpGUepTh0UQT1E5o0tvLqS5cj8eUQs1oPIN0tgCP2xDK++2rm/Cq6zbOOSP8DvLmnBzLCMiFQCiihc9nDSGv6gee5UQVSyW0RleeiixeKMp5cujGeb0IYXWFFOELJ3XnMz6LyPDEjePn2uBIBtEx4rO4FtHLzumoK4DdkbXS0au0Vi/+GXw5OUJM7PLar1vd6la3ur1wMkD8DJO6TI6y83D16tWXXDfF+cD3XPeYICXw46dfcR1+/W3L6whcjL1ydyce+v0IPvvIWQzEs/8/e/8BZ0l6lofiT1WdUyeHzmFyDptng1a72lVAQgmBQCAL2xgwXOBisI3h/o1xwBguGBNMsLi2r8lcEZWMclpppU3avJNjT+d8cqr8/z3vd+r06Z7uCbsj7cyq39mz3X1C1Vdf1anvDc/7PNiRj+KguYztvUkcnSgIIHggm7gm8Mf1SqR/4NAgLhSbOLHgwLXVXBEkTv+iRb/S1+DpGgb7kvjRO0bxjt1Xl0jm/DKeKZVK18S2cyWwyoliE4tNBwPxaAdon49FsNhy8MR8tQNWoeQNXTJ2gkkcEAI6BBhCgIWPj08U8dxyA00m6JiEj0fwPTt6kDR0vFBoCKhlIB7Bkb4UetfxRRsuE966yMJ4loZKzEdv3MX2rCOdVQFMNB0Dj82kUHcZd6kYg8k7JQfkC7iDvuMlzCobzE83PfUqrsg2k2erzWZC08lu0pay4T5X+EAJjABKToBPTVv4nl3sNDXQ9FqoEIQSUO4miqSREKkjcjLuzbQQ0VwstFzYviayPttTBgbiPr40R1BMG3QvY2mfQ4LzDUPiMjNmIm0YaMXjuOPgXlRLRfnukUadCf8wnqF/F/qj3effi+gC9koaKo4dikdQdwIUbDKdBGi4kH09PNiH0cRKAaHXTOGB3r1YtKuiKc4ut55oShKyTb+OFlRTzEAshZlWUWSFtC6QEGU+TT0QAJAuskGMRxXDijDJwECPkZd5Wmu892iGBhcsnPA7tcJSsp7p7X/dzC3hPPJzrwSUvpEpQMoKUCU0kUG6hu2sTfTy2PndZ0xDJmHGrkzuhueZ9wOeZwJWCFDpbOdlMqqExv1yuzfaWnQ5GaDXYnJ30zZt0zbtm22v5L7PhjE2kHENIRDhRrwvX65GE9Y7uM6+ft/937DGAUo27k7tRdlA7AqbAAEAAElEQVQtCWiFq3ZhsoBkNA27n2yHHuJ6/Kryk93gD9bFrkUafaP60ZuGduLzM+fR8j00XVfY/uhnS8Mkc9QsqroGMtEc7us7iFTk6uaJ/gzHeq0SRVeKsT9xdE5qLlvzKgZkSWlbTxKTxQa+dr6A99ymGD7ZJE1jHMF6kxDntL20lu3h/FIdv/Lpszi/1JDXE1EdD+zqxc9+2y48O1mRegWHcc/2HN60f6VJNTSyixSajjCxN1IRzDd9FC0fIwNpiVFy8aiwuIwv1FCuKvAHd9+wKQ8EnJitSC2ifdRroffhZHQXbtTPDWJ0AfH7vjCfdLaoAUXK5QgTfTtuam+aQJbT0xX8XTCJA9t7pY7w3GQJRpRsRAH60yZuHc1gMB1DxXYxV7FQbThYbjjSrLBnIIn+XAzjhZbsl/PDTasGaVVJoqxoTzIKw9DRm02i5jTQymzDgQN9krs/d+6cXNNrG08Zf62VsiXbpjqfak5et68PT5xeVKAcxxOA/p7BFH7xPQc79zW+9/vvGMYbdvbg9BKbVjXcNpQWNhk2Xn96rITxCtk8NQzl41ioq3odt8/Z4udNBjXctRugL2tg2fYl1mc1hcxEw6ko3r6z55J7Ke+LgaZhvqlAJnkzgky7/rmRpdvyvDxX3Wwztu+jJx69ZE5eqdVcR/al+JVU/U7mjTFwG4h/tdZdg6EKCteHEIzPWji/04xXw/ewFpeKxHB7bqvEh3LtXIcazc3UUNxoNF6T4PvIt4ojND09LYlRAlSY1L0RgSob6SGKFMy5c1JAvdruuFdqvGHelh+QB+3L01N42j6H5hy7gICkEceRnv0YSWycYJ6ZmZEEybWCP65kP/5t+7E36+JzR2fROzAk8iiluoUPfvYkJpfrQpP2viPb8OPffgj/++QCluo2tuXieHh377rF93B+x8YuYmjvYWj5HnE01uoZvhxHiGCQuu0JWKLbiHJcdH1ZpEPblo+LTE9FuhHDjatk73A6it97bEIAJ4NpUxaYUsvFR48t4JHzRXFw1BoQ4AvnlvHug/340Xu3rJpzAjG4UM5VbTxb1rBoO8KQwpxfTNew1dBw3648PnZ8ETqdS1KvadR8V+wnXOiYrOxuLFxhT6G+96XzpboNmXxdAb90z1vo/aykVhW4xZKGstC5WtFep42XWrh7NCPAi3QiKqAKOoWHR7MCDpkptVBs+cIgc/uWrAAwzs5XMZIxcWgkg/PlOcRJQahynZ1dyHmJGpdI5EQjEQwNDWJoaEjGQOQinaLZuTl86skTuFjV4Rkx7BzK4+HDW3B4a4+8b2dfHCcWWvI7kbMEjGR0H2XHx1Amijfu68O/fMvuDqq4e15u294jj2577FwBU6UWDo2kZWp2jubbslEEa/jw6w2gUYcWBIhECVQxsX9bj4Batg3m5Pzdd3AEDx/ZiUU7wMJkGaO5mLD9cJ8XCi18csKDVpiW89WbMPHGPT245zLUhm+5azv+5iunMUOpoh4FYFuutgS48477duF6W1TThFGl4thYtlQxRJhxdB05TcfW5MsLtDhudpfywW5pOidE9PI8T0xMyNrBADR0iki1fb0AJjebI8T52bRN27RN27RXx8imcuzYMUns0ihleiPaRoldriPURQ8bB15pgvRqbNdAGv/2PbfI74ViCT/3v87jx/72r0Xykj7fdxzZjt/7pw+gp0uas9vIxEbwBxPS11NqKRuL4D89vAt/9sWn4OaGMJjP4M7BFD53sYivTZYlKTWUiuK79vZjRy6GD59R9OK39qewvyfRYWHsNgJvmdT1dAPbbr8HVvTq491usMp6Vqa2TJsVptsYQ5BJJdSLJmtK3NBQd31Y7aRmSA+eMDRMNmw8uVBD3NAxEIsoSc+Wiz8+uwR6QwSwhJ75U4t1/OM9fdix5tyQYthzPZyoAE+U++BUGd8FSEcjuL2/ha0pEzO1PJqeK4w1AlIPQSUEqAeAGVEx0Fo5n42scxwdsEpby3SNhBNNcqGBhijBFeswstDIgPL8ko57+ynJ4sHUotB1E0k9CVNXsYHtt4Qyel8mhsO5OBqeA12zpWlk2XJguZQ45fsUuwl14JX0kEp+do+dL6TTKfRkM0L1zuuaRQD6umfPn4UWD5DpS0viL5vIIx9X8UzMYwdeBJbvISIT6WN72kfK8tBwNezPxHFrLo8t8UvjhahuCEVztxEQYpETMdAR0SKwhOUygYrTlHEmDMojeUiTFJIJRyabtShnWeYlokfAf7lIFtlIBq6mAClKHJRJ7gCJfBx6Gmii3gG2xJEQ0Mp6xuIOmWopBcTxEbgizDGBg5geQ9q4/sUzLTCE1rMjY8TrtJ174NxcCwC/2xifhPEKrTvRy/sY445uMD7P97diPMNrm7Hdpm3apm3apr06xnWJbIVcO8gUdiMCVS4HwA9rTNe73rGRcfv5aI88aCW/jEqmhKMVxWhtaBFsiW/FYGxow20wfmScwIa9w4cPX7d1e3e6B+/Mb8XXx89hdOdW9MeUL/vk8gwWLSW7uSudw729IzheaGKxVZai+x19GeTIAr6OhfPbu203UgPDUiNIGld/zi4HVpkut5BsF/VDY92Dc7xYU4yAtAPDaXzh1KLIxnTXaOhnj+Ri+L8/cw6nF+oYzpgCtKhanrz/xemy1G7I2ML3f+r4Ar50Zhm/9O79UnMIjU23ZHchK8sXztdxvkBguopN0nFDgBN3b8vh9HixLU+jxqikZH356biqaViCEbkGw+twTbFjA5aVVQB8+r9rGCcpzaMmdX1AP58bm6ti12gOuURUmsXJpGJ5Pm4fUXWbEJTD1+/bTpYd4HyhJXP2+u15TBVm1FxEdAHAyO4E7BFK567OvbPeQFAKH7SQYZAxzROnLmLKMmFHExjMpXHvzn7cNpKT62Eoxbn3BODD7dvQsHt7HjNLDeQSETy0vx8//sB27OpZ7Rtzzrfn4/LotjPFlgBVtmVMaYIeSUXxgu2haav6GUEqZiKiYnbfl3M/EqNcjYstubjU0Hbn47hnOAXT1HC20kQ2yoaEqHymYLk4aWQwMVOSGiUbFvZn47ijN7Vu/Y12x2AK/YkIFhsO+gny0SDMPGS+eWhrdsPPvVxjbEjAGmVtWadhI4M04OsAo9mh+MsHUrBuz/o3Hzx/JKDgeSbRwJkzZySGCeMZgljIMHQ9jDmsV0q08M2yWq22CVa5GY0X2cmTJ6UD8c477xRNvitpqN9IeojsmiSCjDff+++//1UJqsmmsjigQCqhNbwWHls6im8buhs95uoxcfyU1aBzwTmnI3S9bd9QGnmdUj23dp77zru3YaHcEp33C4Um/u1nzwgLiaIR0/DXL87iP719P3Z0LTxM1HF+zy3V8LQziotPLSIIFgQQ8v23j+KhnT2vCKyST0QFDVts2sKogi62Ei5UdGpCO7Ilh6+1kbfd64fqsNIE2EJgRpicJlPLfNXGQt3BoUHqQKoFnI7Ap08vy6JPgMZM1UJvIoqhjIn+dBR/+twsCk1uNxCKaC5aTD83PeDYHKVqlMPCxZUoyJDZhPJFcpT6CgCFr/NylRG1/YduJ10dC/W/dXGkTF1DbyqKuYotFGnrZYEVZV9Xp+M6CWACVqjBl0+aODyUwlShIYwriZghmpKL1RZ6MzFUXSJKPaF045yTcYc0a02HCXW1PbKUMPdKUFHoA/F8Ltcd0Sm8d/tK8pVj43eQj4vNBM45OlzDgubZePLkJJ4+OYHX7+1BPuLi3q0DeGa6hXOLdUGaVpuO+I9bsya+47YhzFcsfPn0Et5/75WL/xzzqfka+qj5COArp+ZxdLqKSDQKz7IR6Dr0dApwbUQ8B7FoBKZpoFhp4bsfOoCfe/99sp2nJ8r40oWCXCM0XpP3bcvh1pE0PjtWQdEOcHuOiHxNvjufPrWEfDyKvf3rs6Ts29KDn/u+e/H7H3sOU0s1OVXZpIkfeMdtePMd23C9bUsyjrhhYLrB1C5d6RWnOhuNoMe8Pp0MDG7o7IQsIrwPh84vi4S8x4WIXqEefAWJ3puNWeW1iNrdtE3btE27GYxgCQI9uOZQr5sSQGE3+80Avg+16JlwICPMqzHu3/rUSXzkmKKJDf3UTz0/ifn/+kV89t+985JEM9c9yoMSVMOOT7KsXU+j734w6WH/rjQGB1W89BM9SfzgrcOSWMrFDHzo1CL+5ulJYRjk6D49VsBDW3L4gVuGViWc6Kc8//wLmEoN4YSbRO3FefHlD/Yk8IH9/eiNR18RWKUvRh9USYEysRoawSV7Usp3pI0kTUlAV6nv3pUEpdfPz12otOS96XaylhrdedPAxSq70nSMJpS+uWiLWx4+MVnCTxwYwFyTCdwAI8ko0kYCz1WreGzJhxPoIv1DcEjFjuC5hRTyWx1cqClfN5wiko6Qia/VDj9simmrV+T5lakMIfRr5qcNr89EfIkXCLxpOrowxYgs56p0rzInWJE+Xc/Ga5yvQMA1BEWQFYaSNH5gwA1ctPyWxIDsqvPgIKJ5cEFGE1fAFDwWfs0Ya/HblDPJgrLCZiPzHgQqYZzPrAKwMAnX39+P3r4elL0imm4DVsMSwFOlXsakPY6IF0MkomF3PIPj9SKqrgVdo2xrAIa1h3Ip3JJLw4ctsj4mrgyOkiMIPERgouG6eGp5AVWXMkA6fPhoMrsJTSSQRCKLxx64iOkmtsW2IRNJC8CDgBcbio5bsZEaiIH0+x6SuZiAkwhSCffZQhMJpDZkEBmIDsDxHVS9qkj/8H08J1vNrdeFSXGtCZOLatEND0HAKoyrjeDyTDDXI9HL3BgTvd3sOuxKfbnJ2ZspnmFejXajFkY3bdM2bdNey8a1aGxsDOfPn8eBAweEFYH5thvV1gLwGXuxxsSCKdnj6Ut9s43AWmfQUvQFnecox3FR2OD6zP5L5py1MNZpOOdkYrve4JpMNIb+uosHBlbywDtSGdQJtBa2+AB/cmYWc80VMMgjs0X8wz3D2JdLrppf+ienxmdw1NiK08fJWnIe2ZiBd+8fwHceGLji2K/ErLKrL4mvXyxhoMsNEBkdAKO5ldzuvTt6oGsX24WN7i0EwqxxbLYqNZ0QgEJ5mOWajaOzVRwcSiPbjr1Yj/jq+QI+d2pJZHIuLNWRNCPYN5CU+tSvf+4cxpYISNekEVeaXS0PCxULJ2erwvzB0ItxnTA2tv18yhEp3LyutJeE7rGrztLBrXQNvv1hAj4Spi5MlTyG2XIL5dbGtdK15ZtuY/3m5HQF2/pSGMrEZH6LLQdVm74hG2Mb0njL+SGjCJkiGdeySZoqApbDGg1/SlAjQKLedAxLlRa6yWgqTUcALq9bwzYaNp7W4z2Yry2hZbRguBbOzC7j2MQ8bukzMZrQsItj603gwnIThqHJ+FzXx7aBNL7j9iG4uoZn5mrS7H41DCQTVUskdfjeFybKePTMsgRhYU3LannCCGMmWA/TJe5ftlzc1p/CT98zKs9NNyw8X6ihWmHcqklcvD0dx235JJ4utlDWTGw1I9K4S/ndF4sNAa0c6LpOu42s/j9y+zD+5Oi8SPcyDmSz/INbs3jbzusjS9ZtuYiJXNTEbKsucU2nRUMDktAx+grAKt3GOWXDEB9s1mItl+A7xjS8XxCcH7Lr8EEf/+Xe427U/Np69lplirw5oEIv09Z27zG5S7aPGx2sEo6Pnf2hhM6rqUV/tja1wSsBzlQn8bq+w51n6GRyzvmTY77awuZEsYm/fXEWz06VBTzwtv0D+K5bhjoyKleDbmaX3UhPErbr45c+fxZjyyoRwfsTi/IXlhv44OPj+PV3HZBrgtcHE9CObuLztR7M1lrIiwSMjumyhV9/9AL+7PmYsIpQi+69hwZx95bcNTlCXEjfcaAff/bsNBZrtkjMsJOTYIHXbctjf//K/HBxTkQNYS8JD43rIxewpQYxnxBEb7HlCkVa2owoAEnAhOHKPNGJmypb+P3HxjFZtmT8fP2BHTns60uKQyPjbv/j3NRtFzU6Br4Pz/MFASyK6AoAKujINrO0HC/9ILIXK6pw9ZxaB9ZQGbefS5mKFEycLtuXc3wJWKVrHq/kXBKlTCdoW28C/RlT5u2R04tYqFpYqNriLJJhh5soNhxhuIlULUxXTLheVxpZKPSYFFZzzfk9bdcFWEPU7w+/bqvMzaNnKYEE5JMR6YTlsTxxbgm5ZAxDOXVNlJs2/v75aTz3ZBGpSIB8rIqDAyZifgQvzlkiV7W7L4X79/ShL61AR6fnquLM9qVXFz94jZydq8rPkXxCHnQm2UG5XLNwaqYix5jtTWFmgdJXPgLDQDSXhVEmLSTQn4njHffuxo+++3b5m87hI+eXhY5xX79iQeHcPHaxhMWGjWLTw0jbiaKNZGM4t1zHsfnahmAV2jvv24X7D43g6dNzcu3euWcQo33fmMWSjtZS04fna53OXibrAzeA6xlYaDkYTlzfQhKNxanh4WF5dLPrUJotpFEPgSvXmui9mToRX6uO0KZt2qZt2qth1xJAT01NSWJ0165d2LNnTydWuFELhN3ge66bTEgzMc0uPsqZvhpWtxz84SPnL3megOKvn1uUx+v2DV4iv8qE7r59+65qnnmsj02V8cjFIpaaDnbl4nj7nj4c6vL3r6b7j34tH0/MVPCJ80viP3d3mT0yWcKhviReN6JYXsgCxwR0fWgPnlpWPIXJiGLaeHahhlOFRlu7WsO9Q2m8dVteQN/rXY8byTcd6klgNBXFZM2Wri8m5pg0IwDigeEVthn69/TRmLwLwecCgicNMrsHmbikXKbloMluQMY6TL6K9MuKjIgAxKM6Jus2fuPYHOabir0laxp4x5YszpYI6PAQM3zZNt+f1nXUqOteZ4wUwPN0AbnHIip5xt9XZjpMpzHiUSyFklzsOhUKgLPyBOOfVJTv8UX+Jtp5fztBLD9WPnOlr3hE9zHZAPZllF+e0JMoe2UU/ZKAVVh4YKcs/xGk7cARQIft2xivK5CK72vCHiNzT/konQllHWWbDRtKBKc/ZuL1/Tk0/YYUOJS0TUQAE27gwAlsJCIpJHNp9OTIPtNA3avBczz09mRhlybQ2zJQTkZh6zxPEexNpbA/k5G59wILTmDB1C4Fq/A43IBFKG3ldenoBC7Wq0IfnYmY8j7LJ7A/EMAK5zcd8RHVDCT1BIZigwJUodmwReLHAGMyRbPtg4wtip3F9+SMdgAfBK0QxELQSkT6/C41Fne2xrYKQKgVtGTOUwZli74x91fRsZdfuvAqbAJxffhRT8XY1wmwcjWJXsYzLBiSPTIEr1xLovdmimcYx3GsNyrT8qZt2qZt2ms1niFDZMhWeN9998maQ4nNEER4I1o3AJ+AXtY7uEaHNaZXwwr2kgKqrDP1s62ZVWCVbvnVe+6556plvVuejQu1Ocw2C/L3aLIPu1PDiLVlIdfaejl88c0jKj/7x6cnMNmsCXcdn6dcR9kO8HdjC/i527dLPMHrg/Nbb7bwJEZxeqmFjGkgGdFRsTz80XPT+NTpRVRbLobSJt59cBBv2d17CdvkleoJ771jBC9NVzBVaqI3aUoee6lmY+9gCm/YswKEKDcdAU6EUqYCLNYUswdrEmz8bTq+1F9Yh+J72QQr7PVdtSw+v1gN8EdPTOA3v3ABhYYtcdQdW7J4353DWKyqJuuweZf1E9Z6CjVH4jU9Ykie3mv7iQR6EMC/Iu/TDj0Ywq1hIVlFlaImR34QqJKKRaQestywkUuZKLeaeLlWbnoYdHzsH0rJEA4NpIT1n3Uw1USuaiw0zhFrYk1DE5BMreUoNn1h5oeAVkRSljUQxxfADms0BPh8910j2NGfwrMzFalVZXgcZkTm+5npqsSTB4YVKMNyfXz1YgF/P2chZXhI6A1sjfjYnzXwPONlTcPWngTu390jP23Px1zdwWzNxrbsah+RQP2JUhM1y5Om9K25mNRWpCnA8fD0RbLfBBjOxTBf47Xhw+d5arnS0MvTkKPE7UgG33twQM5n0/XwQqEmsfNw3JRzTzDP+WpTzvGS7SEHV5q/aVkzAqvlCAMLGVY2uvce6E3gFx/cjhPLDWna3p6NCfvLN4r9iRJPnHdC7RFeir6gqzBnNbE9ef1JF1hzITECH/yu894cMklSlaRbUoiPa2k4uplimvprtEZz04FVrvbLFSYYqSne3b3HC/pmAKuESWkmpJmYfjX1f0t2dV0niDegIl9rWwiuYbH2yJEjV12wJYjk5/7+hIAMSGvGRYAsEkdnKviP79i/Ls315ZyPj5+Yx7kl0v4qyjC+iwshF7fnp8v4hc+ewcn5Clyrhfu3pHB4+wimzirpk/FSs7NtJjnna3QiSFHWwBMTRfz8w7vw1r2rmWIUanJjmOl7Dg0J+OPTp0kf5whw5Nv29uOH71kt0zNftzGYjgoIgc4XHTXK1ViBD8d25Bi4yAswhIw3Vgtk5CatWrdxUScLy0xVodNVatrDJ08tYUc+Lslv3Xdl4Y9JslkXPUDuc9HyxMkSujdX+TlRihOuPQdtJyoaae+7qyss1KTr/gTBFF4b7XJka0aQrIv1FQmk7rmUzVzGsTQ1lcTfmo8rzWnHl4LAjsE0tvQm8eWzy6IRbxoG0vGInL/xpbpQ/ZEomk6Z5nhKr1DOnQI8bM/FMJqNyzknmvkDR0YF+PPnT02hYbuYXGyg2LDQn1IMNTOFJh4+oK4F1/PwuePzwnTD85eMBagjgpcKBt62J47As5GPeRjMeog4DVgWpaAMAcdYRM902YWFKv7mqQlMLCtGlnQ8itft6cNtI2l8+sSiXBc8R9RtpAMz0JdBJPBQqNoIojredmA33nbXNjx021YM9awUR8YKyrHaP7DyHLdRbDpyPuRaWePYcox8/UrWk4nj2+/5xksRnK+2UCbYyTBXfHDfR9G1UbR9FG33GwJW6bZudp0w0duhUe9K9IbglSslem/UQuO3kiO0aZu2aZt2o1qYYGRc0929FwbQfP3VArNfTTxDn4XxGIuD11NC5+XYxGJNQMAb2YmpooBVusE11yq/+uFTC/jwqUXpeiMAg+yGz8/X8NP3bsU9bWDJ1dKL0/7y1DwaBH9oWidRWrEph6Lhk2MFfGKsgJlKA0nPwvsO3IIXlxzUnZbsf7mpksFMwC63VHKV5fuxSgtPzVXxH163TZJe3eOgbQjAN3T8k/2D+NjFgrCjMImaj0XwltEc7uhNrpILYqSyLWWK5A79XM+2EQ982F5UfOzxuiOxRgi+CUEtPK5uY8JuoeVivsVtqpiG8kJ/eaEoQJZYG/RAOZkwPmI28GRBx1KTYBa1HcsjhbRiRKGt55b56/Bbcyo4JC3M/2pkx+TvZP4IcF9vFp+cLqoEa0cWSPbQmcuNXEA+3RdjzGkgopFW2kfda0hyM6rFZH/NwEYUPhI6wSUGvMBA07NQdgIstCIYTeiYb1H3XA2WnyG19j2DURQsMqF6GIlHcXdvLzSjirJnw/Vd2AIe4TVqinwo9eBNGQMBPbaAPjQDMBGF03TQP9qDHstHrUA+Exd6w0aWjR9tGU2ygBLAs3ruAtT9KhpBXZhUeMAEiqT0TBs84mLJbklHJ+coorEYwJjUg+cRmGRiNJbHYKxHZHhC0AivFLLMEGgTgjkUJMcQRhSRZWLTRTdLaaijvi6Bedf7CBgyEuC/b6QJuEZvM/90Rcy2zficTDqXaV/9BiV6u2nUX06i92aLZ9hQdbOMd9M2bdM27bVgrBcQiMB8EoEe4ZqykXTojQbAZ76P46c8/KFDh17VYmbD2xhU0PKbbf9Tk9wkazS0a5FftTwHjy+dRMmud+oxJ8uTmG8V8WD/YUT1yDXFM+O1Bs5UWTtSUp8cny2yiz6WWsB/e3EapxYaaDSb2JuK4k17d+HcU1NSo5mp2QLm5ShY1GdNJGBBv9DAMzMVjBVG8H/cu/2awCpv2NOHn/m2PfiLpyYlh8+60f27evDTb9qNdGzl2Fij6kmS0T0pjZ624yDGsryhodJUAJUzC/VOA2/VcuU5bq+7oZhjYV6doJbOGNl8cHYZp+fZGKshSTA8yHZiCBhG01yRFZppuDCSMcEm8Ygog1qvhsyCqw66S690TfDB71dbnkUUadpA+1qL/jZweDSLTCyKyWUF+r5Wi8YiSMYM9KSUDJAAOwpNkYYdTJqoNksoE5DC+oZpCJPmFALMli20pDFbw1A+joWyJZ+VuCsARvpSuG00jcnlhsQa77xlCA8f6MfHTy1KEzbZ6gmGYQP2SCYmNbVbhlby1c/MVDFTcygrIPMbaDrGdQP39QGJpAXXtrAl6yAVNNBsaojFY3LNEbTSbQQmffzkIi4WmyIhZJLZpD+J/cNpnC21MFlqCeiHx8ZGkXyCkHfWIT2Jgw/0xvGm3b14YGtWQFZhfYDNthXHw1BcsYrSKJMb09msYUlstVa2h/F4w1MStGRh2cjYpHKkay6+UVZwLKnHJLSogGoY4/B6LlsN2FEqdXzjWbM4dyG7ztatW+U+xPWG8QwbephLY/0mjGdYr7lcDHCzxTR9bTms15LddGCVKxkvShYMeUGul2C80R0hfskIVOEFR8DHjXDRJY04loPKJYAV/hnRTDwxXUa1WIAzcx6H9u6+ZnDNh56bxnzVwnBmReJGaNLGCnhuqox7tuWvyRF65OySLDC8iYt2Xzu5SArkmXILnzmzJLIvxP19dKyFj4+NhWrR6xoBDrSy5eGXv3wBd45k0Z+KXbUjREfl+24fwTsPDODMUh0vzVREX/DRCwW8eU9fxxnako0LswyRs1GHqUBPOn6mqw6MVgWWowvggwxzPC7foxMSyLFyQed++Pupxboca3t0cmw8XAIfLhZbyMRUNySNC2m5ZQurS6PhdiR/QuNmNC8QCmi1NdW9po67LcGidFg68ogcm7yrTU9HkBCp7ciSQ5DHTz+0A7/1yBjOLF4ePR9S263SUAyAnrghoIpQC6/UcEWyR1g36o68Rio3sqzQ0ZtYboi+JRO5dCIECc2OTzqQUYXU5UK/JRvDm/ep79tEoYFj02VxEkfzcYw3bVSatiz4FcsVJ2Sm0sLxmTLu3tGLsaUG5sqW6BwSIZuJ+cilkxgvOxhvRHHXgZ2oNVtIGi5K1bqg2guWjsF8El6jDDcdlYQhQTF/9cQ4JgsN7B5Iy5wVaha+dHwe33X3Vty5LYvPHZuXRDadM6KHB7NxodNLJ0mRp+O3f+IBpGJRec+xmQqKdUcYYRp2eCWvNna/RoQyUF0jK/MfyPeQ83KjGLtl5R4h3bnKeWB/KOkDiSyPvwoORUijHhYQQ0Qvg9nx8fFV2vG8n69N9N5sqN1NGaBN27RN27Rv3j2XSVGuEQ8++OCqBCN9T64vBEzeyIndxx9/vJOUfrVBNUP5hPiA3cwZ3eYaBh69uIzyzDgydvWawTXLTQefOLcsflVv27cXKZumg78+sYC7hjIdVrhu2yiOIOtdCDwP/Xb+oM9PoMhz85SDVP7DMuL4nVPldUbV5deJz6R+OV+x8MEXZ/Hz92xdxWQSjnkj649H8SMHBrHErq5SSxLIHONps4n9Mr+aaM+TVcUNAuQMoFyvI2aasIIoNNeFVa7BJWNFJ6+qWFXQTkJnIopdpeG4mG1S7mb1+I02iIWsIuTVoFQMYxNi4BsuwTGUA9I7cp+hOR63Sz8S12R8vwBr2FWa8nG4l985A7tScfRHM/j8bFGkVNc3DUrY51L/NGlwLIYkJCmjgyCCZmBJ4NMKHNi+KyAeR3dheexINFB3W5Lcr7hkHwkQiQIjCQ1NXxPWQS/wxT/emY7h9h528QVo+k1YKMHwOZYoLLQT5SLnSsLmAJ5vI6bFBfRji/RQIKwlNN+lnGsMbsLBtm19Aghxmi6ajbr4urOzs0jlU4j5cQRpXZKBPH9W0EQ9qIo8D8E3cg5go+ZXkNGzsLQmDI3AEyXsyevA1KJgj4QbWBiN9WNvSuVxyAbD7fF4yAijApp1vkttphzK6XS/TjYaBWi5cRKPK8CZLriKBL+KGfTVsI0SvZQOYKKX9/KQdWVtovdmimcIntwE32/apm3apl0/u1xOvFuCZr1m3Bu9RsO1LlwLCVLhGvlqm6lvDB6lL1dySqjWqjh39BwG+waF2fJaiq/jjQWUnDoSRrQDFqaPWbRrmGgsYk965JpqNEcLVeHAo7cX1nx4XdA/a7gOHl0sw3JYQzCwVAGeem4WbJn0XHpLZGhQbI38lSzz4ZXGeOgPn53G3aM5HOliwb9SjYb2zsNDePO+fpxbrOP4Ul2aA16YryETj6I3qWLWoWxMmPcp52MGNlqai0QiKQz2uaCJsRZZ6SF5e3E9u8hOyLYRNyOqCWKxLgzzIYioYwGkqTYXjwpLR/splJqO1GgiZNP3VM0nPBwjYiCRjqFRpT+/DmtKt3vc+ZAhDa7q9ASS/9+7rUeae1mP+uk378bnX5zFF07MX6qDehWWTcelVsJtsU5BBs7piiVAi4VaSxhCedwElrA2MVtqYanqoGl5KFdsAYAkYxH0kP2D8YLLBgcfW/sSePPhIYnFCBYqNB08erEkDC0xgwAgV8AxvA5YA+P2T6CGB3flBSjCMUizNhueDQ+pmIFqEMWYreO+vYOYrVjI6bbUaJaLJbTIVhlPwKkAVrJf6nE8Z58+s4Qzi3Vsy6vjJDPMC7NVxKM6butP4qvjJYnPeQ3FIoY0c5AJNGt6qNkufvq+rdg3kJLzOF2zsdx0FQNpW8ZrbYM+rwXWOOhVO2tea7getiTNq5Ip+mZYvZ2L4vc/qq/EAZTYlZrdq0C8wLGQQYoPrjlU/ghrNMeOHZP7FF8L6zSMfbqN69HNEtPU63Xs2LEDrzV7TYFViBp98cUXpYuPEjTrBaG84KhldSMai5zs0Gfx89WklFtre9JbMNlcuOR5oaE+p+P8wkX4nofh7BZsSQ1e883o6xOl9gKiraJJIyjgxZnKumCVtWwmdcvFo+eWUW05mCoqLXSRdgnfz0Ro5+1hylEZn17Pj+lonHde1MTB+M+PXsBvvvPQZem717OxQgP/6XNnZAEVoEcA/H/PTuPX3n0Qu3qTeMvePjxybgnn58vImxpS6azI/wzlUrh9ew5nj87JTbPqBALGIAtNJqpJgnRW0MBkW+FiuAJU6T5GLnhcLJJRHWWHCV9fnAPOk+PQAVp93OrYeaMOYBgKHRlutftoLzndPDaCXDSF5uSDDB6kOCOQg2wd335wAI9eKG6oe8jPhjR44dSG4Ji5miNdmdPFpqCWOZ80UthxweajFQRSNGjMVdGwffSmogJcoaRPg/MXBKLLyOdnSk04niaODpHQGaJ/MzE8dm4Zw/mEjJksJ5m4gUwiivmKjWQ8gpFcHKdmq9g7kEGp4Qi7im9EkMuYMNoa6nQ65yoWvvvIVnzwkWVMFpriXMciEWzNm3jXtjSmJy7i3OmTkvSbs2IYmy9j/5aeDhKbWo1kvXlxooh/8faDuGU4jX/9N3W51skuQyYXdgqTNeV77xkRoMpy3RaUOGWG6DTRScwmoggilBLi/tsBB3UUXR9v2NUDr1nDWNFGsqm0MhfrFgZSJm4fuf6UbS/XkhEDKXFGPXHaQto99lcOmYY4ba+28b5NiQM+eI8ixSmdopAti+tSCFzhOb9Z9BAFvNRoSBFi0zZt0zZt0165Xc5fpg46g2kmRPfv37/uOnEjs0XOz8/LTzYNUELn1WSIDK03Hcd33bsDH396fBVghQCSRCKKryw38ZmZsvjXd23ZjiOxjSUQ17PTyw1JXvW3E5wd+mvTwGzNwkLDxkg6dsXkLlkeua3FloOA0jRdAG7ZZtuvVwKb4TNXNuVPrySNnlus46XlBu5YI1F0pZiGr35+ooRHJstw2owon7qo4YGRLH7w8KBoZR/pT+OLk8uo2i3kkgkQVWE7Pu7oz2CyZiHftAVwQvpsWorJZ9KsE9xjEdoRoBDqsK8xXvH8NtC/ZYzRtHWwwVDosKUTT0EW2pteFbeQklg3VMJ3Rb50ZS/cbtD9/vZnYmwU0IBM1EDNjkrCvm7GsS8dwZZEDGdr1oZnQZglV72oABV2oGGx5WFbysO8pZhCAs2S+TO1FSJl+uoNzep8kgwrceqjE6jtUQpWQzbCZLqGMjs+hRaesVG7c4/gF7+JXCTXlhbyROKGB0sYTVyLo+7X0fQaSBsZkdfpzEegWE9YqFCyNUycGmjFm4jEdOR60gIBCZpAeaqOibPPd0DamdEUIikdcWPlmo8GpsgFscyQ1vLYmXRQsBcFaBNjl27Asbpy/NsSCigmoBe/JmOV0DBgApcAmJUCipobFkEIsWnHAoYqgqhXAkRhyus3inHe2lmItsJ72AxLSSqe/1f3nrlRopeP48ePy9rTnei9mboQGc+sTUxv2qZt2qZt2vU3guoJdlxaWtqwGfdGjmc4frJbstYUyhbdCEaZn+nmZOhSrjL6uGcqZ6UuljmcxWB26JrX58VWWTEadvlZZMLjtpda5XXBKmsBIvSV55pFNDwbJafR8Xo6NRrWJ8RZD+C4q2syclgkeDd0YUWU11gDMSOIRiNwKBPj+/J5xg7/+dEx/MX7b+/k0K8GrEIrtlz8wbNTGC+1Ohx8f3NsDj/74E4cGc3iTfv68ZdPT+LsbBE5M0AumxWWjWwyjoduH8LYU5NIu57UEngMBFwPpwxU7UCAEFHDEWaNBbJ7dMVgnWNkEwXZRmIGKmweRiAynlLL0tmYogmrTGeO23FaNGpAIxNfGOx0v6Ezv6vnlPEIARAJMyJNuT2JqOyboALu8M0HB/E/HzknNa91rbuLeO081mw0XWC20pK4mooCjMtYg2AdhkAexm2sm5yZrwvDPCVx2BNd4+frPuotB32ZmDSxs8YjagMBUGza6EuawlZyeqku4J2dvQlRY+B2WWsqtVzZ/q6eBM4uN4Qth/sn4IVMpwTlxHR1jyF7PhvRt6ZNHF2o4+miDcdjQ3cGvXEDD+cDVBdm8Nj505K795N5nJr1MZxNtCV1IUwu/akoTi828GO7erA7F8PYTBUXlxvoz0Sk5sbxFJo2bhvJYm9/UgA1Xxgv4XShKePidLKRPJbQ0Ih6UuvoMFN6Pvam45j3XBxHRFhLeRxVR7H2HMzdGLViGpsukkZEZF3tgOygKmZkXM9m4i2JjaWQv1nGhuHh4WF5cGwErTOe4b2dZBdsCAvjGcY2N0uN5rXcUHzTgVU2SnayGEigCrvbqcO3EQqKz9+IXYh03jh+fomY2P1GAFUaLmVemqIFOBxPriuvs54NxPMYaqaxEK+JhlxoJ2dSOLcQgMTMQdTEVNPDB5+fwq8+vBsD11A0ZuG8Zrnr6jh3U6eFNllq4r88PoenJ11oz3wNPaaBkzOk9lYJHxqRopk0Kbzo4SjABY3UukTGrgJAbODDdBKZK1gVsdNLDUyWm9jWXiCuxhEiy8WvffGcLLqUkeECHmre/fZXLuD33nsL+g0bb8yU8bifQD2ICs339lwcP3j3KCZKLZHc2dmblOSroIldB0t1GyndxT1ZB9NuDOdsle7qJL26hs/P8Zx/5y2DeOzkJF4sdpMhX6qt3vFF2m9SfvDaT3SBSdr/U06tYm2xxSHz8cJsRZLqpL37hU+dwb96404FSBLe6ktNJVfX0LyETCvitOkYysYxmDHxwnRV5v+uLVkBrBBEQmYUjouahv0pXagC46aBHX1JHJ2piiwTCwo0XnoEojARTQQzwSpC+yYyR5oAQQjoyLeLD+G83Lk9jy+eWMCXTs8LewlZSPrSMQznEiiXFS1j3fKwvS+BlyaLmC425JzziuZ7ZysOvHgP7r/39g4bx/Gjk1guFDAT1JBMJCSRluDDNISij9fNA3v68KvvuxW/9slTwuYibDYacNf2PH7k4V2y34+/MIujUxXsHkgKEIwO8pn5BiJRHWe0WrsjWwG6DgwkcWRrFlmniM+6tiC7OXcHBpPCBkRn8UaxXZkYtqViuFizYPs+WgTb0AFFgG8bya17v3g1jdcpZdH42CjRS0eIRT3SifK+fyMU9DayTRmgTdu0Tdu0b6xxTWDn4fT0tDBEMqjeyG7ETkSO/9SpU8K2QKNc3vVe16RDrUBpRgdbc3GMZK+O0pr22z94P05fnMGJhZWCfDJh4tZ7doo+uqOxg03HY1MVxCOz+Of3bbvqbRM00AHLdx2y+luT+GutfWG8iP9vJoriRBGZ58ri687V7FWMj5K7MpXMDR20UNpGJThlRjpF7quxsKuP23lsptIBq4iMzlXENC8t1fHFybIkGHvoPLPhwgvw1ZkKDvUmcP9wBruai9huV7Cc7EOLnVYBcGdPAt+5owf//dQCkmYUo1HK9ATS8OA5LpYcD1uaJZhmFI1IEkuXKdZzhAQsv2MoiY9O2MKgGAYNYQzUbWGCnLEQFWm64ySRR9Lbz2ywS8snYycwWefDk/N5vtLERG0Z9/ZnBKyyTr2gzQajI9IV0KjYksl1da1YHpDQ4mj4FkqODS8wMRxjrGiIfI4dUMddxa8En/PvfDSK3hgwzzhKYi8maVVTwlbqoktLAsEbio45ZO9Q4I127NoeEwEcBH5Q/qfql0UmiG+Oa/Su1RGFEj9MmLe0BryAbI3t1+AhmjRx6NABOdIQpF2uluBWHGFzCRk72KGo5oW01gb2pYZQsl2MN8uwXAJyNElyHs70o99MCriGUkIcaxQqDuMxuAHBPSvHoE4dmVliMBFDab4ivrcXML+gy3MxLfaqA0BC4zgiAQWePASMd9ugFT1iwLPZSXvjxF5XSvSSLZSJXhYbuSbxbyZ6r1YO+tVM7N7IMdembdqmbdrNblwnyBBJZsXLSdDciPEMrVqtdiR0wkaz6230r+h/cTWKagQZ61fNrJKt51FJltY4nzosMmqzSVXk0QMBtdAHyplXzxZJYMpGpnexJ4TWdF18ZmEeZ/qzOHPqaZF/MfQ63KANPDeA2wZ0jJVTqNiqVhSyugeBhlxGh+MGqDf8TkMB96MIZNo1HgIACFIhUJtyK27bs/V9afJ9bqaC+9uNzmubmzey//XslEi79FC2hc0DAQEGDn7vyXH89+88jLjm4r1bWvhIK4KCG0Wh6aEvZeIf3btF6jrRSATbepPYxbiKBRDfRblhIwIHbxx2MGOZGKvQh1fHudaELEbT8bqdedQqZXzhIqVcFag+VAloV2qEUTKUtRR/OWrAN4wOwz19dH6PBNzSZrnvLvAwDOVrTcdHStfw/IVleZ7sIP9uuY7/650HhIX0wmL9UkDKav2gtd3dCAhYJqjfjGB7TwJfWKij0nJx59YosrEIRrNxeKWmMI8QUz+cjqJO1nRdw6HhNF6aqkgDesv2pMbF31kDoaxQqekKWIXgfa1d02M9p+Eopnk5tvbQDg4kMVmx8OJsVcAqZDXpTURFIsiijitrMY4vrCazVQsTxZYw4LDOwhrQUiNAPZrHvXce7OTuX5pYxMJyFV7VRyOl4hnm7QlcEZASwTO5OP79W3fj1754QeopamaB7fkEfvKBbXI9Pj9fxUsLdQylokhG1fFMVy2U7UDqToHmCqSesU1fLIp92QS2BBaKiw7Kticx80A8inv701ITuVGsP5bASDyJ8UYNbuCj4VP1QL12OJ1HLnrjjJXGc8EGXD7ISEJ8AEkjeK7PnTsnwES+hzV6nmcClm7keKFer78m2SJv3CjyKo3B8oULF+Rx8OBB6UC83IV0o6F2u8dPSjnSrV7NonotZnsunliax8lKCZavEmx9ZgxvGdqK4cTVdZX0uyn0NdNIb+2RdesvXijjudkmXCbSuGS0hzxVs/EbT01gJBVDXyKK9+zrQ0/88rTfb93fjz9/ZlpYMkifpvT8XCSjBu7ZmsPnzyzh5EJNFtE9fUn84mfOYHq5LkwpnudjrJ217QZm0NEplltIZ0xE2ghFmrGmmH0lsG13J6PoJBJk4vlYbjjXBFY5OlvFVLkl6NWQApyISAIjTsxV8czpiyhNnsO77zqAH92yFeeXCbYIsC1twIxG0JeMCnqz0ORiG5FjIrNEYADfecsAvntfWhKDP/+VRSx1krUqGRvOCx+c09dvz+NPvz65hh1Fu/R4Qw4a4n26KOlWPqN+CuiprZMedikymUpmcqJHmd+kw8Lx85g5D3/89WncOpLBkxfL4hCGyWJxWNc4liGRM+deyQrRCTLkb9sNRGaIoJeZsoV9gxFxaBZrhgBCCOohwpdzTvQtj5/OCp1Z7oEMHUOZKGIhWpvfF9fHVLGJw6MZAUDx+OgE0XGCqdA4uYQpUj0tn3RyUQz1xlBzAiw2PQw2HUEoT5YsFBqk/tPx1FhR0NK3D2eEpo7HQ+mgj784i++4Q4HTyMTxQCSLZxZOI2UG0H0bxVIJ8wsLmG9ouGtnL1qNGqKZDB7aP4D9Qxl85cwiyg0HewbTeGBvn7CsUP7oxGwVo/mYAFVopKLb0RfHqbm6oNOJBufhbs/HcWgwJV2/pxdbmK95CGKkJwSWKrZoSFLC6UYxdrS+dTSHr85XMduwBajSF/UxVCvi7r4bf4Fem+hlQv/ZZ59FsVgUySC+HrKu3IiJ3tcqanfTNm3TNu1GMAJXCVxnnEKGyCvdb2+05G6oi871jeN/9NFHr/v4zizW8AdPTuDCckNYPah5/cbdffiJ+7d3ElaXs3wqhn//lh7kd96Os/N1cSo/OVNB2fZR8cPPKx/0U+eWBGzORNpdw2k8vC1/2S6bW/pT4qOT2a8/obSnmYgiHfKR4Qwc38dHTi+iaLkYTZtCA/zh0wuwLGkXRKUtP782jCW9tGe5IvnTHeOu6s5bw5pyNcZ3LjZXQDtXG9M8PV8T8DU74kJLRjRJVD85W4E5c1aYC37i/iNwIjEsWw5SOpCPKLD5rfkEvkTmP/r0nE9dByHtuSjwvbtGEG9VcWFhGeesuAKZhFnYLuMI9+fiaHo+6ppK7a0c1wpTRfje1dj31dsSJhZi1BmLGKsiHdl/GEYyXkkaujCfRHQC2wMcLzcwNJwX4IwKR1dALytg/nZEFkrJt19nIo+SpISUOO1uR7KlVF0bWSOKJIv/WgQaE/3yWSVmQ5CHqUexJ0OuEUckjwgWosb57riB4QST3GrnBHsQsBI3yGii2FtklATLUBJJEbLD8m3JF0R0MmkyFndgaTaMgAwsGmp+A7bvoRIswQfPZ1K2GQKoWGipBTXkjd4OSLvilVB1y3AaLlrNlgKwaUAyl1DytTlTwCuv69mCXakeLFp1iblGYmn0mCr2cHxLGFXIihJe22R28XzyvzgiIxQm7QmKMQQA4sNMEmjD33g+1Dz5gako2m8Q0wPy25jwQHCQir3q5Rq8RoD86I0Fvr9Sopf3eYIsmcc6f/68rGWUUAslg0JpqBvFNmWANm3TNm3Trq+t9R9nZmakOWv79u3CsHg5//lGbCimz0KGS4LumaNj4fK6sxb7NTT8qviXNLLGZYwc4vrV5V/jfgKVi1XsvnWXgJuLrTKWrSUBdaj5Vtul1ONEcwxpJyMglAFzCInI5fcxmujFbKsIx/c60h6O74qfNhzvwUyziPk2+0qvmcVHJ6aQNYvYN0CwBOUsCfxYve6bho/d+SrOFdMoWUruhf9jzzGHGzN1mFEdlZon9Zy1iAkB2+ua9LTys6aMi6zz6tpijeZa4hnmxCnlwhoBgSrqHGjIx6NYqjv46pkZ6LNncGTXKP7Bt+/HuaWGNLJuz0WlSZb1hsG0KczrW/IxREz6pzoaNR+v29eHf/O2bVIA/6XPT+BicYUVZW2gR/D/u28bwq/8/aIAVdT4VQPI2kNYqXwxZjHAKegcp66+SyKv5LG52VPba8cf5OyLkJXGJeDHx46BtGIcMTRMl1r43c+dxcMHBjC23GiDXQIFmJFaz9quZumSaDdpEICi2GFYB3EpCxlRzdnjxSZ606a8Jozwni9jYgxFwMmWbEyYUbb0JDC2VJfjbVieMN1n2k3e6hpmfaWFbWS+j+pSB+B5IyCG2+X2GIOzObzWsOFGdam1pSO6sOcXWw5ilLd0gJlqHdmIhv8xWZb64K2jWSRiitFyqeHg6aka3r7HEoAL8/aJfD9eaE4JeMWELSA2ArMrvon+TBx+swI/2Su1yt/+zoN4YrwkzdJDaROv35mXcXD8x5caUnfhuGk8ttFMDOeKTZSaPsg7yaaKnGngUNZE3ozgQtNFIYgizlg1AJpSc3KxPWVeNfnAN9pY+7srPyDx44LVhOW50njgL5Zw975B3OjGmgtJL/igMYZ5+umn5edzzz3XYQwNH2HjxY1ijUbjNVmjubEqYVdp4cLDm8VLL70kBbSr1RW/kRK7pGU7evSo3OzC8TN4vl5gFTo9zxUW8PXleRRsclwonW9D19HyXHxqZhzfv3MfEsaVLwORuvED7EgNS7fn+bkKHD3eAUPwwUWJmoLPz9fxolaX5z5yZhE/c882vHHHpVI+oX3grlGR+zk2Gzpqmsi8fODOUfyPr0/i2ByfV++ljMt8odHuJISgakNb64pwU62mi1SazpomC5HQqHWt+NeaOOFnzYiB4S4a76tB7VJvkMewVqueN/aa7eDk2Qt49wMrtIgHB9OyTV7jISLze28bwl+/NI+piqKC5uJ0YDCF77plSFg/mBi8e0LHhaPzHZo19U8Z05Hfc7gX/+xjJ1Ff8xUgOlWYNviZNRMZaWvHr0zCmpxxG2AiDpAGAdYMp0xJ8B+fqyGTXNF8pBGBTDDO+24fwrOTlRUpINlO2OWo5F3U/K7sjr8T8MKPTBZbmCGFdXvM48UGKpZCcZJOjeAUytiMF5pSzCCTC0eZTRhw/Qh29iWE/o4OxFdOL2Gq1ETT9sRZumtbHh+4byseO1fAcWoRmhGMLdQETLW1J4FSw8bXxkpyP4n7gGX72Nqfxny5hQvLTeiuItFOxSnh4wkamMAXP6jh8EhG9tufjmKx2sJEsSnAE9qugbSAUh4/u4h8MoFkPo1quYn+mItbBiPSmcBzES6U771jSIKnbrMcXwA3PI5V16DtixO6pTeJ1x3My2nk3189V5A5e3yqAdMADgwr0Mdc1cZnTy1iJBvDjt7VwQzRx0+ensN8qYmtfSncu29IQDhrjYw0dA7plNGJvB5GFPH37TQx17QFsGY0q5i+4NxQSdCrMY43ZNC644475CcRvQSddSd6Q/DKq53oFTrC1yhqd9M2bdM27dWw7ns6kx6MaciyRfD61ejk3kgxTchwOTAwILroHBtjh+s1PnYp/dEzU/jM6UXppKI7TTrcumHg4yfmBRD9o1fBgsI559hu357HPXsH8dEnj6Jms9hOBooVRhT6RWRB/vSFgvienzm/jA/lFvDbb9uLtLl+3ESA8I/cOSp00ovthCk/O5qO4chIBr/41Yuo2qR4VsbOPTekSemydfKYkvhlYlE3lE8u8UQ7kajyhdo1AVbCZOloarUPeTXJ3eYGGp7c6/TCEoL+APfff7900tKo282YN7wWHhzKYKxmY7zGtJzy/5kofXg4gx25JLR8Cn2DQ/jrpydQc5gebUcznfhDQ1oHRuMGPjxD8ujVRpYUyspcyVaFMhKAMHlKOVE1/8SnjyQiEkMUbQcVas9HTJjthDaleGquh/FaC7vTcZyttlZaBNrDZQLa0ENuk5XGRO4vjGko9VT16iLdw3cy4TpjNRCxDYmzU3oE/bGkMFU6gaII535imo5daTYFGIAWQW80gYRuoOSVJAZxnQJMPYYeowcpIyGsKY5PRhRK61gi8RPVYyg4RRScmgKuaOSB0YS2WYt4kvj2owFqriUCOx5sAcA4QQ2ZIIlMNNk+IA2O31KJhrYl9BQsowUjbSCVSaE36IHltGDVXMxNzuPMsbPiU4aAhsO5/kuKWeGxrr2mQ4aYGBIybv5NlhILTXl/PB2FFhgwQZYZssC6sNBAIri0O67lWSi6Ffk9F8kgaazf+R1KChHccz0YWriNaBBrM6zwOtewODEmYPWbzXhPDWMa3v9DxlA+JiYmVsWuN0Ki97Wa2N20Tdu0TbuRGBaZ4xocHLyp4pluhstw/JTzvl7jo4/dCpqoeWUB+q7ad+Cj4hZgRAYQVZQilzWREXV99Jp9st7OLs4hOWh2GDnC46H30vSZ61ao+AVrASPxEWxJbBw3bU32Y94qY7qxBLsNJGKOfluyH9P1IqaaBQEE02x/Bn0JGwlDPaM8zfWNfvH2bBNWkYCDiNQCmCYmYJt5ffrv2bSBetNDy1qpTSgARijj2Y5V6KubEQQEZmvAcMZcXb+6QjzDxlXWHMiM2W380/E8nDhzDt9z935s26bm6eBwZlWNhoCVn37jTvzGF85jfLnVCSy29cTxkw/tRDabknzut98VxZcnTyu5I8Yna6jpv21/D37ts+dwobw6vuLb2JzNekz3odCNFRaX9aRbQzlJTSd3n9Ddc2564hHs6osLuP75iZLUIwa6GNTJTj9dbOJ9d2+RmJpAHJ7voIsRhp8hc0Y4CLnM2oT4fI3vX27YeGm2ipbNayHAXLmFp9jA3JbO2ZqJ4eBgCucWG7BMX56jZeMR9Gdi2N4Xl/E/tKcXJ+brOLNYl3rKxUIT+weS+N7bh0Sy6cW5mjSpVG1PFAlY92E89ZkTS8JIP5CMolqzkYxFoJNFpWLBhI9C1Ubg63ATBop1V87/C24Zd27PIhWPCsMOmVnGyy0Bq9DYnHHv1iy+eKGAwEgi1ZOG03KQsGzc0uPj3OlTON0ljfnw9j4kEgr4EBobbBjfMXfRbdz/kuUi75u4s4/5fqDseDhbpSxsBC9UWVfSsK8NTqk6Hl4iACgWwZ5s7JJtnVhsCFtLLmbgzuFMR7ao21gnrJMogDLIV9HoczWWjZp4sG8YRceS5hzTD/DC2YkOCOxmMsYzvH8QZMk4lQ3GvL9yHTh58qQ8F8YzrMG+2nJB9ddojeamBKuERT0WbnnzJ6VcmBC7WRyhkFKOFFLsPgwLzhyfZSkwwiu1Z5bn8XRhARVHsSioZI1yWHiLJOrtbLWM2/OX6kauNX4BuShTb5KOZ19uC+YrFABaSagSqBJarC0sSIqt33p6EilTx8E+xeCw1nLxKH77Ow/j0QsFHJ9XyNaHd/fiiYmSLHQEP4SMKy9MNTtAlasxgi/o1MSIlGw7Nas7Ea+tC5ET+Ybt+VXSKN2J3ZlyC1+5sIyq5cki/PodPYgauoBPuBCzcJ9PqGuVnynUmshFA3zHw/ehN6cACxvZd98yiIMDKXx9soy642FvXxIP7sgjHYsIdd2pxTr29CeQjemo2ETBKgdH6MeZHB4A/vfxedQcxeyxllklHjdgk42k4wQqoMpaNppLNDG757t9XErip40QXwvQaYNi7t2Wx3ccbuAzp5aEii5M5GbjBnbn4zi+UJeEeDi3YWGCAB8FUAkw0AYNNdhh69HhDEQ7sMEOWcvDd9/ei6RZwWPnlzFFKSVdE2mg3pQp9PH9aQNnl+oo0BmLGMKUQnaUiaqFU/N17B9OYSQfw8UlJuA0TBUaAi55caYGy9dw6zAlehRSdrFqY0d/CiNZE1ptEeerJvRoBIWaLY4FnQJqJ2YSLezqSwp4xTQM5NrXQzhX779/u7AIfenEvAQU/fkkdg0NINqfxW07stCc5qrFkiCGMNHL++FAxkRf2sRSzcL23hXmJHYhE5S0bzDVAU3taGs9fvV8QYoyI6k2zTwd1mwMpxaUg9gNVhmbr+AX/vRJnJ0tybXFRPvh7b349R98PYZ61P54rF8bK+CpibJ8F3jt37cth4d3q+/Dy7Hpuo0zpRaWLQ99MQP783Fsy5hYbFVedQfh5VoIcuP4Oe88jyFgjR3qLP7xXE9OTsrroQPM93yzE71M7PI7x+tt0zZt0zZt066P8b5KytGLFy8KSIUMkdfSCfJqdyJy/Bw7j4EMl2FCL4xprgcAn77zr375vPgjIfibD/pe7PjTHOBjx+fxgTtGxCe+knHNZXPAmTNn0BNJwNcNkYYJc5XCFNjFyJEg3XAAXCg18UtfHcNPHNmKXfn4uh1N94xk8atv2oPHpsqin70lE8OR4TR++fFx1ByVPON6XmoRvLFxEnUjwAoHqfy01SDyMGkbjvxqYhtGZA9vWU1pHsY0THixA+xMqSnJrLuH0gK6oR3oSeDZhZrMf+hPMpFt2Tb29cVw5Mjtl/XL0lEDP7SvH8eKlNGxJGY8mI9jdzom83y61BS6YzKwPLVQlzK+Yl5UCdGE5mOfW8YnpsNjXm08dF0nLfjqMRD00gG/rzMuBSBZiYHsNvMLx7cqr9xl3ANppj+wawD//cwsli0mPtVrMT3AXQMuWq6G02VdOgnl2mrLQsUlJPaQijJhyFMbR+D7qPoEpfhIGAYimo6iq/TWtydzKLpFNL2WSMfwX1yPyzkgd4ih+Sh7TWlIYaTnaD4sxvw+teIjiGoJmHocWqCj7tUEwNFyHZSchgA+koaSonR9D03fhembMNwo6rUSMjGVQJXGC3bLBb6wrSR8U1hmRMKmG6kidPZR5PQeYVixA0sA5st2HH40jsFDW3F7JNIBNLB7mfeKMPlHP5dyARy3ur79DjW+KrwotpWQKSb86UIVEJyWmgN1zjRhY+Hx8nME3YQ23ZrHxea00NRzRxEtgi2xIexIjHa+QwoE01IMKG3ZJMoKkcnl5ZicOc2Dr7WlfwJDHhznzaSRvtaYXwtBliFjKB88pjDRy+Lf2kQvZRWuBpx5PY33/02wyqZt2qZt2vXPF7FGQ2ONg7WOq7Ebhf2e+TcC7xlbdTNcXs8akhW0UPVKIme41uglEpLc8OvIXQVYJRwX4zDK8Y3cNgJbb6zZ5moTXwM+ZloziOgmeqI9Iim01gh2uLtnL7Yl+rFgleRzg/Ecmq6DZwpjwrYSMq7Mt2rIRlfivctBROhaRXUffUkbszX6O8rnYYqYD8YfjgukEgZiZFkhoEC5S+uz4rNmEdWxNRnFHcPZdWs0BDQ8s1gTZsuhRBR3D6SliD+Ujgn7xWS5Jb5+6PcV6y0Yvodvv/swtm0bWjP+1ZHAG/f1YVtPAl86s4RC3ZHf33qwT+oU81ULz1JWNhbBlp44pootCHF2WwaUNZG7BnSMzxdxrrzCUi9z2B67zSaHwJC6TPgagSohWGVDY6xh6PBcJatEJhLW4sKPsaay6ny3WewHsnH887ftwx988ZywlnDu+dZMPIp79g/guTOLqJClPVDb5XXCWCmRMKUGwPlhfY/bJwtNzXUFPEKmFDbUsjay42C/1EC+dGYZtZaFpKnirD2DKWl2JSv8DAEjyw3YrBN5gWwrqml4YbKM3X1J3DeawbKMLxAgC0Exp2Zs2f7e/gR6UqZcS6zRJDVDPpOwyjjWAMyUiRobXxhTB8ByzcK5hTru2J6X/bO+kYqu9sUf2tUj9agvXSgKmCVh6BhKJRBJJ7Fnxz5kDFdy9wsLC/JdpB8cxjMENMSl4T2KM4Um8l3MpHMh4316hUWmx4xgtmnjaLGJmhsgRybM9vki0zwbOcZq1iqwCnMlv/vUFE4s1jvnYTht4p+/biv2dDHlnym38FKxIXE2Y8vdmRju7ku9bNBKxbEx1ayj6BCsZogc0HAsIfdSdV3dvDENx85HyBi6e/duqYmTFZ/nmrVxrhVhjYYPrnnfzAbjoN1Q/Fqs0dx0YBWeDMolEO26d+/ea9ZCvxEo5kJKvF27dmHPnj2rxi/o2OuQ2LU8D8fKBcVCQQ25NrNGCFrhfdDzPTy2MCPZz4PZXimcb2QcE2+8LJDScbtwtowTlWUFMJCE8VoU6ArdMQEH//fj4yIL9MbtObz/0JA8/9RUGY9PlQTQcmgghbft7sO3HxjobONXH7kgKFcCVcjSIQm0Ky3Ka0yxnqwkHtezjQAr/BzBG+xk5OvURYzFdPzU63dcsg9u43OnF/GbX76AmqW0vunQ3TGawX9+90HRNfwHd4zgT56ZwkLNksRvtWXLz594eN8VgSrhfg4PpeURGiWJ/tsTk/jS+QKartemsNZh6EzmqxMQ1YB9fUnUdaDs1jvbYg/paslBDbFYRFhtuF2CKa7mu9X9Fr5/ueVhyHKFfYOvERRCOaBIhIu+op0bzcawbyCJtx8aED1BMnwQbUqQy52jGTywqwex2DKevFiCOip1DomejXHsui7MIXyFiyxf47XC65qAjF39SvKHzC7vuXUQBWpYTlbk2PYOpsRB2NELAW7QsWT6evdASpyIxZqlGFWmq7h9a1aYYPpSUYz0JrG1Lylahl85U4DOZK7tw9B9SdiT3q3QcIXtxm7pct0zUb2jL4lqSzlp/O4tVCwlRVSz8bbDgxjKru7gOz5VxrEZdvhpuFj38MxSCfoFjt3AQNrEv/n2vXh4725ZLBvNFr74wkV85NEJFCsnsS1r4OHDw7hzIInPnvPE6colIuJoUvdxV3/qEoYTOkXlliPXydosPAs3LAx1fyd++a+exqmpogBTYlEDTdvFCxeW8OsfeQ6//SNvkPd95XwBnzy1KFTp2ZghFPifPLkoc/fOgyvf8au1swSBzdZkTulIzTYcXKjaeNNoBhmhJ7y5naD1vmdM0ncneglwpFPE9YPrHx2h0AH+ZiR66QTRXouo3U3btE3btFfDCE6nFBy70MlEca2B5qsNwGc8RYZISj/cd999l2i5X6/xPT5ewnixJT7iYm3FPxFJbrI6Uoa01MSvPXIOH7hjFLcOX5mJjCw2lK9g18wfTB2VuKnjEncBE9YQCeL5uRp+8dHzIvPzA7eOCGPKUtPBl8eLOL5YRzJi4MFtOXzX/gGJwWjPzVVFxpOyqCL4004iXUmK9BITPXKyq6jwfaPYZi3DCmMUkX1pg2P4PJOeB3riAjxZtYt2cvH/fW4aLy5SclV95mPnl/H+/QN4+84ePDCSxVdnKpisWuKD8xy3HBdDySjef9eeq/LJKFlzT39KHqHRt/uTswXMU06zfWyEQMgY2kAVJrLfMJzDV+aJyO86WWuMU6/pPvp5zVjt7sPw3ZeJCdducaJu40AuBrsd1y61LHiU7KG0TkSDF/jYnYmjPx7BgWwSzy1X0VKEJOiNaziQSyGpRzDbaKBgrzBe8lgoe5QxAwwmXES0mDxvkTYdARJtSSAm/ggyabgeXC+CnkgeLXceTd9CTDeREBaQQGSBDOgo+lUFptCjch3UnAaqaKDkVgXYEjNiMIUNM4o44qj5TbkeTWF/YVzI2E8htpq+jXgQg99+TQFeNAGeUG/eCzy0vBbiGqncdSSM1f4ht8WCC3sCCy0PX1uwUHUJPdIF8LI1kcC7R0Y60pilWglz1XnM2LO4MDYG02WHYw+yQykECUoWRRSTKyNDTYeprWEFEsEfBUgSXfuuZomQ8WaFb5QxcQ1jzSnZN4+BRuaaydYs0pEk+k1KH/tooSFAFUJeaDwe3nUSSK0CvlyNyRzrDnyN0W2b2lxzoQU+DD96U4NVNhr72kQvWZZCkBKBK/z7m53ofa12IW7apm3apr1axloBgR4jIyMCXr+WtSwEt7+aayALkATaMLd2yy23rMqtXS/wfSj9o1jaFG/galOeQctvIOJFkNCTIg10JYDQ2NgY7rnnHmipABea51bvc83WV5jhAkw3J7BgzSFrZIVlhTKTJbuMgluEHzhIGUn0mf0YTqwwvj2+eEb8VAJVVupM3ftYHxDePR7WKSg7GdUVo2FbUVJ9nvWLSADXVnn9ZNxArbESo/G09KTJYK7iwHINKNV0/Ic37+nEXd01mnPlJv7g2DxKlmq05nY+OV7CP799GMNJE//w9hH8zuPjEstRmrNhETwQ4L2HhnBoDVCle9vdtrs/id3921eOMQjw18/P4k+fnkHNVrVHX9dVc3A7FuNZpYTQnq05fOTF+ctCfBzHQ0CwSSwiDblXZRI3hdQnGmqUv6nYyMVVEzdZSo9OV6Rhl823Bnyk4gZu3ZKT+sWnXlrAmbmy1HH4+i3bevBtBwcxmIjiY09PwGJ3gfznC3FAlswmmqrR8DxEDU1qePw9ZPHfkolLHeb4TA3/4MgISk0HX71QhN0KsLsvgeFsTMA0ewaSeGm6IrWW0YyJtBmVegWBKqzR3LElIw3to/m4NEAcHkxJLeiLp5Yk/mu6AdJeIPsnY8ty3RHQTloP5DXW9wZTptQWik1XxrZQtVFtOVhougLuYH2y26bKLRydrwnjzkU29M5W5ZplbSITj+An3rADH7h7h+QW6Nc+eXYWHz29hLnyPHqjPu7bmsaW/j6MaxoullvIxSICIKI8EWs8YUN7aJTRIfvJes3fjL0pg9ttf3lsAS/O14TNlHUjspvMVC188OtT+M9v3QPT0HGu0sJX5iod0AubLV5Ybsh+3jaavWZZoaJt4fnyMmouvzu8d1iYazVxIJ3FsBa5aeMZGu/369VXSDJBFmQ+QqAI4xnKxJEdn693M0kSiPmNtkaj8ZqMaW46sAqNRTsuxi+HJvXVRO12U+LdeeedQpW91q5XYrfsWKItHVvzBet0lUneL0DJaeHTM+N4enke37N9L3rMS6lvmYQmiwPnjsl0jvFN24BPjBUEYNB9mwwdDaEY9todZOxOYxKy5eKvzizj4xeK4F6mS00l9aIBj06U8OGTC/j/PbAT944qRCwL205b546LpKQs19yoiYbsZnRZawqBCjhCu60cITKFXCJts8ZIt9aoEzG6Qt1MJ2FbNiM3/1VzKnRnLn7z+QsiU0RgA2/0RGU+P13Bnzw9hX/+0C780H3bBFH6t89PYXypgsN9MfzQA/vw5n3XXrwP7dNnlvHpM0tIRnVBTtZtT7QauS5kTUOQromIhqWGLUjfteMmYEW6FbvOXSqioeFrsK5xseqezwvFljhgBHBwIa3x/LlAqeUJOOLWdEzQsv/10YviJHBe6MjReSYalE4OqeE41xy/77poQRfnZf9QEvMVC4W6LXRz3GtvMiIgDAKfCAw6MJgWR+XsYh0fOzYvXZkEqRSbDhaYXDc09KVjInVDtpORDB0EUxL05SYBBJpcc3Qga5aHxy8UcNtoFvtHMig3HeSTJlqukvwha0h4BdIh2pKPY7ICoc7ry6guxV0DKZxfqMln+ZguN3Fkex4//qY9q+ZwvtLCx5+bhkV9yUgEyy1fxsriRDIaFXT2//WxE/i+2waEneXifAXPjRWwUHEwW/JQa7Xwl8cv4t0HUtibDvDckoEZ38DW3jTecXgQ01UWAAhWa6Oy+f0linkghccLZczXAiy6VaXVmYgIOGU0t3JPODFZwMnJIvqycQGq0Oi89qRj+PqZBUwt1dCTjePJiRIypoGhNgMRHetF3cbTk2U8sCO/ik3mSsZ7wHNLDUk8E3HcXdR4ZrGBBxMK8PFacoLWGo+PRUA+wkRviOgNE71MAocMO9+IRC8dMY711abu3rRN27RNe60Y7928p951110vK5h9NcEq7EwnQySBlWS4XCtJSLteMkBMEClffHVSlD660xUCfOLkIr5wdhnfd8cI/tVDuy5JuoQsNgTZsOGBD9o9w1l8abzYAX90J4+FzS+gf6cAH9TXnii0MOY38cxURbS2Gx4lDxXjC/f42QvLODKcwX94aJf4weJrMeZqOaja7ES7ND19tcbPdTcI0KfurPdrZTq7YprVLC6B+JVvGMmue86+PFPDcws1JCl1Kd1ugdAO/83pRRzqTWB7No6fvWsLPnmxgMcmlhG4Dt40msX3HNoiNNMvx8g68hfnCphpOKLVTZpwanJTx55yO5QJkv5LXcNX5+vCBrjSgdhFE95h0yDMhdtV9NeXIbG5dA665pDsKrMNS+IlNhgUWmqsZEThXji2fDSKR2bLOFpSYKVEREk9VW0Nj8542JLyJSFIcIpPSVBdVzI9AbA3E8CBh7qnSNMjiCAuSBvK6ujIROJI6ewOtDDRKiBnkpVDgTaaHqWJLAR+iqODhoYk+HvMhCp2BDY8YYpRTDlxI4aKWxUWlhFzQMkC+9QVZ4qasVqjcy1x3jTfhBlEBfQhjS5txXsyijikMyK7eBt0kTZySOqrE7vNoC4PPYjgycUGKg4B5yr2ZFfpxXodX1iYwhuHssL2UoqUgRwEIKP5EqGialWxfH4JZjyC7EAGMTOGeDSJeDRxCeKIxyBSRtDl/QSE2IFit1TXBF9d8bkXrWVhVElosc5xm1pUgEAL9rKAVQhMISMLjzos8KiuZL5iXztYRfPlwePtLhiRaYVJ/psZrMJ7/dXECCxqrJfoDWVQ+XoYzzDXd7Xsyddim2CVTdu0Tdu062usGZAhcnR09Jo/G+bDwkauV6MZmmwIBw4cEIbItXm06xdvBfAC5rzFQ131CvfZ7RfU/LIAW3JGr0g6rjU2OnDMHNeDDz4o8Zjr018xxM9bte12BNWGsHf2YuqGgAmaQRXnG6fEV665dZHu4HsoVbTsLGI0vhV9pqpZeIxoJC5oig8l7rWm9hdOm6lR6kg1Sl8yA8Lyofjw0qaDTEyBSBqOgYoVheu3azaUuiGYWjoqlUUMYNcIEDdXtpxPA8NNHdtyl4Lv+fk/OrkgjCp5qY2o52bqFv7i9CJ+7q4teHhnr9QcPnx0BifnShhO6HjfnTvx7gPrA1Wuxsim8r+enJLfKU3EfZ5eaEDTdfTFWIeCNMmy3vWJE4vrbqP7GmROniyfjN26gT1XMlXjWTkPF4sWcqaGVCIqdZMCcTQssLSUr3xoiP61gX/2oRcxV7UwkE9JfYsjOT1XxejFIl64uCwNzrmUDiKKbEQkJuNxUoiz1HSlDsj4mfI5CdOQekomZmBff0pY9I/O1vCRo/PCBkIG93LLxWLNVsz5SROLxRbOztcFaNKXikkdYLlmq5qc78u2WCP51IkFAdY8sLsXru9L/atuGqJ2UKxTWlXF8U3bEyaULH93feSkFgiMZgiOCVCoerD0QORz9vQm8U/uGFolX8O63mfOLGGp7silfm6uJvPF21YiZkhz729+8TwmazZuGcmgVLPw+MUaFmsEwZgyJ5+YbuH1I3O4M+/ggp/EohZHLmni7pEcau3rMgRbiVSY72M0EcXpWoCyp8OrWXLe01EdDTfAofxKjYaNwU9NVVQM2q7RkO2GjTUzVVsUC+4cTuO41F+B4aTyq/mNYWxLWV42iowkr8zm1G1j9SrqroMBU0k3yVhcBxfqNWRiqZs2nmEsxnNwpfHzmAkS4WP79u1yL6YCDGOaCxcuCEEFlQ/CBmM2pX0jwPj1ev01yRZ504FVeHJvu+22l41sfbUSu6RBIlKX+74cJd71SuwmDUW9RU053vRENoVdUcKqopKk6hkmXHTMt5r40Ng5RDXqUQfYm8nivr4BVBcWpBgaSlOEjuTengRu7Uvi6JLqtjcTBoz2TZ+LqWP5CJqKWYPPd2hWAqDh+qizOy6qw7c9eY77XGg4+HePnMOWlIk9PUkMp2M4vVhXN4pQwmfN/YLAE6EgW5OFDCVshM5MErsrYAyF2g6EKUUYU4j6XHM5WWTBaANpuG/uln8uli1Z/LoL+NzGcwu2LLaUoAmTYmQB4bY/e3oRP/WGnfL8nVkHscECDjx0QG5oVzJus2op0AQZZtba584td8aw1HAErCKdpgFQaVFn0Ee1PfXdh6hcVJWVD0+NPHRAZ/L/Gr9fso0uxymXMJAzo+hPR/DMjKIKD0ExZDd5ab6G/+eJSQGd0FQhQF2ruq9JAYDHQqq6fNxAoeYiHYmIU0VngbRuPD93b1WJ9k+eWMQyt6UBJ+frAkC5dTiFuYolv8cimqCYeViTdQuzNVvQu6Wmh/m6er03FRMGEgJFCK4gcIW+G50kOlg870T7EjlLtpLZsnJcWCjguMkkw+sxnYhiZ86AMe0JOpeSQwS0bO9NoFCPoC9j4kce3IHvumO0A6YKjQjdQt3CwZEsHn9pUeaUDgdZboSxhwjWhounJyo4MVXC8fGCAJUuLlEGid9kDYW6i789WsP+0SyGczHErBZmZhfRKi0hk8vg+UYD2/rSMCIRcQoJennz3l587qVJnFh0YVKjXgIEDXdvy+HQ4MrCV6i2ZF6InO42XpsNy0WpbhEKL0WbwdTq5CJR1FNlC4Wmc01gFQYXxbb0T7f1xgx5rWTc3IndlzN2Jm6pn8uHdGiwY3dNojd0iq5Xojd0gm7Wud60Tdu0TbvRjEHr7bff/rI//2rFNATdU7YjZCbZKPC+Xp2IBM9qbV+DeRzR8HZ9WG3nXQHQlS9JP/FDz07jxYkSCg12K8XwXbcO4V0H+3Ds6FFZy0jNS4BnaO8/PIhn5iqS7OG2yeLIOEH8WjJeGoyVFFtDN8Mj30u/Rh1rGzQiOucBnpmp4kc+eRI78gkc6E0KYyGBKh3p1KtINK7Fnqh4aPUazDFxWZZYpQuzEhqPY4VRZeV5/npyuY537updtT0ew1OLTfEnQ51rPscOLPpcz8zXBKySNgIcrE1gR6KJu99w9xWp3jl20jUz+bceoOVCxRagCpNwLc+XpB1BQLQmu+Pa54Mjkma+MKxsxzzCJtkdj7RnTnds+MGlybeNWGnCho7uedyaNODpQKEJlEVuZ0WjnQWAj40XJVHPpLPLOLj9aTJIL1sBqi4lM4F0RIftu/ANXyipLU+D5TG+s5GJRJCPJrHQamHeaiiQDXxUnRryUTKiBHADSyJ3TosTaKjaBhYsF6bWQtzwUPPIdKPjtnyApAFYvi3nUeRzNCaOyU1iiIxQzasjpSUR1Sn/qcPxXRU7M1NAFh7Ka0nwqEO3OeceogL84TYiwm4S0wxk9DQGIsOXFFK4jaav5IXmWz5KjockmT/JeMrt6D4iQYCxehNHXBOWX0fda8n9wgoUcEdARjEguSeFvJFB4PhotpqSCNQ8A5lcGgkzgUQ8yeBV5iaGhOQFYikTLgE1ZESR86QjqaVXfX9sXwFuuhlYwmuA5ykEwKjn1rK08J7wcu69apyhbNGq7Wmvblf5K7WXM/bLJXrZKd6d6A3lbq9HopfrQJjb2rRN27RN27RXbvv373/ZMUk3WOUbAVDcyAheZzzDJrDLNUNfL/Z78UY0ykIqoG8IXVdAW/WvG85OP6PiFRDxyczoI6KZSOgplAsVqS0xlhF2uLiqTVCWsS/aj0VnQbYS06NIRSKd7dqeA8tTcolxw0SULHzt/XH7jCVSkRhanir005zAwWRzHBeqk4hHEgJkp4+0An5Rx9W9NOtkTQEbjwk8Xr1mRzQClz20fAPxKP0e1U6djTuIRzzM1eLyN2vurhfOmSbyl/1ZAlUgMkHyCgEDOtCT1TDRqGNPF0MpX5txDSzYjsQwYY2GeXsW9cnczfrTYDKK3XEXb4vO4Ifu3yKApSv5GfT3K8yJmxGRD1prnz+9JI2vbMAlwEFJ2CrgOJlReMQVuAK4UAD4rvkJa1iMddtxEP+OUJJW/r56H4hsLComUkYgyvaBpDTtPjlRFgB9yMYZj+qYqzn4j586jbMLNfkMY2qpMbTn+fGzS2hZjtQ7yGxSqHiIGFHotofFSgs7t+RQbXq4c2tWgCoff2kOUyX69oqtnbWHO7ZkRXZnvmaL/A/rKYEfCLPJ2GIdO3oSsu8Li3X0p2PCyE+WejYCc5uU2GVdZyQelXib0kpsRu5NRjGQiQnTaos1Rh5vRAFJGEMS87Qrpwt4ptRwpIbCWt1Q0oTuA325GL7r4AC+62A/kubqOJUyUWxy3pqL4dNH5yX2Zj2I+286/F6ybufhybECrMDHUxdKAsyfLVnCYMPYp+4FeGQKuGilcHg4Ad1xsLRUxrPLyxgZTKOeTmEglUQsFhVwfzZq4K7eBE4uFHHRiyJasjrfsS3JKHa1pXlpBBQxdibwpDt7IHVgAstsT5omSjalZ1dfr2SGKViuXM8jV31lMU7yULAtpAwlbxxayohg2bZQdu2bOp6hXStzPd/P2IIP5seIAQhrNJOTk/Kebrnb69EE7Pv+axaAf9OBVV6pvRqJXV6gdCb6+/svoZQLjQ7LfGseC/FFWCM2LtYvYjg+jLjQ+167paO8gWVxqlJA0iAIoI127XqP0nxXlL+WZ2De482GAAcdzy4v4fjCAvYvF/G6I0fkC0BqPzpDs00LF6p1PLwzJZ1VC7YLn52HvtJT1wwNkaQBNwhgO9001N0jDBCJRuBygVT8YSqx5QY4vdzAqaWG6jCL6rCkW7HtyLXp01rkWO5a0H2uMO19CHiADgkXeV8t7oJU1lYnbwWhaurY05fCbNXCUCoqn2US8pkxWxYVJrAUslcTpggmT78+XsJ7bx/ubItjarnKDRO0p8ckXyBJdW6PC7Dj+hg7f1a0mo8cOXLFBEml5eC/fO4sPnl8XrZHR+eHXrcV//ieFQ3t4/M1nJqvCyXaXHtNWi0ppQlFGM8zHapLbQ1iXIOwwvAYPUsI+i47xlVbuqS7TdG9kXGGpqiyFWhIEnJ+ICwbXNxJ687ORCU5oxh0hL5ZI4DEhOOqzkp2WtLR4HYe2JHFE+NlLNQdLNctcVq4TTpZXKzLlovJYrOTsA4ZfsTpa6N56OQwEc8jna5YolkZ0p0TkEHGkJSp4+xiQ4AiZxbr8hkytxA89JLni3PKIgo7bQlI2dmXwInZKu5LAvfuyOLpiTpst6W06U0De4fSeGh/P77rzlFhhVlrdAbD80JQV6glKR2UtidsJkxEJ2MRZHVfpIUmC45817gPgWZpZHVxcWqmgtft3YOe9ADOzVXw3IUlxJbLGMnVUS4soycdx6GRLN68vQdTxQbq1Hfnd5CyP9SlJAq65WCpbiMVi+CZ8RI+fbqImu2julBDXyYucxE1dFQaNvIpEzsHs6LoTqAWnVt+BxZqtmyjbnkyB936mARjnV9uyneEc7qjJ35JJ3RYgFlb2OHf8l5Jet+8jtArle/h94QgEj7YCcL1jZ0tdIrCRC8Lot2I3pczX+yify06QZu2aZu2aTerfbOlTblmnTlzRtgW77jjDgFMrmfHJgr44y+ewldeGsdQTwHf/8aD+MAb9qzr91yNvWFnDz56fF7Y53wC3psOmk0CS1ZkbeLxCMwYC+2+dE09O1lGb9IU/+PkXAVfef4UfuDWrDQMfP3rX5djabkenposY65m4YHRDL40VhTQcuhPM1dhs4vNY6yh/t54bgJEo4qFREDyQSCJLQI0Xphvaxe1JUI7FuaUNrJ1mFLWy59y31zWKTPERCR1uEfozwf0HV1MVpSgZhgLRThfhoajSw2JD0gNvLJ9TXxx+uSS2KY/3u68Cn1TAmQpX0XQDxk3r1RYOL5Ux5+dmMdE1ZLj35uP4QcO9GNHW2ubCbavL9RQaLkSg3SA9J1jVUlSDoExkXjKbQC85zPO6ZoU8Q0D5EwCm8gUGVPolnWmdq0cUNjJKRFQ+1xznwScbE0bOGu5AkCROIbnWQOIoy4yDmaSX6d0D8VidDiMrV31Hs5j1tREmqepKQAJffmWJE/jSEdcNH0Had/BTKslcy67EZpnF3WvBs9jByaZXchEyaS7OoCeuI2BZB1WEJFzRG3zibqLA9lIh+mUkXZEiwogpRlYsAMHJacqDCIJLS7MKi02t0haSERiRV4oZpgCakEFSAyZbXCHuoJjmolUJI6eaP+6Hb8yOrKzgIAcxSbU7d9zH6qphsl4A3bARKstY5QCCOeR++I5hyPjHk4PCWimyrF7DVStOiqlKjRHQywaQyKSRD4dhR93BOzja5zHlbKPG6ht81/Tr0E3ODM+nIAxf0SKRer7GyAbUUB9glxCASE1avWZkMVl5XjC1xTjDhlcul+/GlPgq+BbOqbpTvTSwkQvH2sTvXyEBbprNea1CLbctE3btE3btFffuO5dr6bda1kHyBBJZkgyRK5XOOTa7sJGNA0cOrIPFuqIIHbNrGqhSbyiJVEPKiLvIyAVyXWuXvdZn1EDUN6FJ3x8lGFsotGq4eyZMQFVMP9H6SWaGziw/CYy0axIF7qB3WbVaP8LCEKPiV/m+LYAW1YDTtTxEthMz4cejXounAcLS1ZD/u4xIdKWYVjEvTAS6OZxp8QPOV5cYVhReWo+R//V1H0sWwTRqHmkH0+f1Yz4yJguGk4U/ckYlnUPcU3HgB6R0oSZbQqzi7BKtueToAP65uertUvAKnagaiH07RmXhewV/Jv1BcYfExMTIrFOVqCtW7de9vyxVvCpyWV8eaYkn2Ut4P7+NN69LS9+PW2i3MLz83W0AIxXLFhshGjXGFTcoWo0wp7h0E9WxqbXsJm6u87lOh6GMzGpExDssd41FcbDq66hdrzEACq8ujSC5gNNYjmWHQjckNpPWy2B8/qVc8z3e0hGDcnp8zkCRfg+1jyiWoCeRFtJwFNNyjTWu+7fnseXzxcxU2lhqa5jse7Adn2p0fBYJ1stTJdaci3w/TYbrYUtRjWYx2Kq3sN9K2meFpbr8U79iPE9Y9aeBJtgWyIjZJPFZExXYJU0a1kqdsuZ6vpmXXDHUEIY9svxAG/amcKXxluYKZNNhnULTWSH7tiaxXsOXApUkWPjXAbq2mFNIzxF/DxBSQGVG/iHDwFCsYl3rmypphrGIgT6Sx7Bx9hSE7dtyeLOkbzMxbNTZZw518JouoWZ1DIGsyZGUjEcHMihYcdQY12OihOGav5m/M74Upp54xFMVix8ZaIsc1NwKM8aEYkhzlPd8aXetSMXl2uOTQNlh03ghjCmspGAdRjWkrrzEWxcZ82X13gqYmAoHlslsaW+86rGGt4nLkld+DdvPBOuQ690/IxRyDTGB889FWJYo5mZmZF7Dht9wniGwMOXE0PV64o84lqlxG8GuynBKq+ko+KbqYfIRePixYtCOb0RpVzojJytnkXZrSAg6CICzFsLKDll7EzuRM1ryHty0QyykY2pg/iehVYJZacBU49gXyaDi/VZ2J4r5LXhUkhHhRbeb5w2mlXAIbqOmK6j0bRRpSzJti348PISmpZFZl6Mj0/jeKkmicy6G0gHGdGt0unlKUq3MPuay0RQb7Dz8VK6a9XRpsAgAnDpOiQu1Oxc5GeipiFvJqiFIBjXpd6dDvqSTCQSbcrTqJESeZ15kS68Dp1W+5hVfVucBt68uXAdHEjhl9+2D/0pU4Ai7/mfT6vEWpuZhe9jUo1J77VHw/3uzKquzsmypQAH7QQoF3cm2Y+99IIkd5nUvRJFE6+bn/3wMTx6brmt96eLY/IbX7wgr//AvVvwd0fn8YdPT8vYQ99HcaOvgINCLUwFx1CFfcWws75xO0zS0xEJKePC8ay1mK7AAkwyKgdp9eukciPgg4hb7pP4h3CIru3BITiFLCqSNFdXDBdUXj1cVLflY1iuOcKsMt9y1PUhnX4BhjImtvUkMV9z0JeM4IXpijg0knwU8BOvC9JqK8dUAEcdsFT7+Nt0cHSeSKdOP2Ks2FTXvizqGvYPJAVoMVNuIiqUapo4WpTi4TJCkE0+HhUnLx0zBFhTrFv4+ngZs3Eft+1KIZ5IYKrQkP1lExHsHUjhHbcMbViwGe1JCMCjbrkCnhovWaqb0mt3lLavXzL4lEp1cSRVYj+kd+QvKinMAsTUch0XF2s4OVVU50Gn9mEEA4kY3nvHCIbjNhYmzuHPj7WwUAuE/aSflHKaJvqNx2dr+Oq5AsqjDv7ocWpT+ti7vQ+nxhYwV2yg1lSoZNr3P7xPUNa0O0Yy+PL5AsYKDSzVbHGA6KDSsf38mWV8/10jmCg18efPzWK81JJj4L4f2JnH+28f7nTzhgwqpKobr9rYQkCZUPIHWGq52JkxkYGPyjdY2/wbZd8IqlOucaHTQ7MsS5wiJnpZYKSxaySk2L7aRO9rlV5u0zZt0zbtZjVKB/Ee/80w7ofAe0oXEfCx0Xrw7PlF/B9/8BWU6jZbulBolPFLf/0Mjo4v4ztevxdnFurCUPfmA/3CerKRLdYsfOXsMiqWi4NDaezOxvH0uWXYZNhrM6B01G8ItG06wg4YMmPQ5yEznue5KNZaeGzRgD6TwK+fOgrdDvB6ewknygvSLcVEE0HnyoNsx0j0p9tOl7CtrBPLdJsCOKwX7xCwoK0CUqi07hWAKhvspDvW6ca6MF7x28nY9+7pxfe2JUY/dWEZf3Z8Xjqp6LMLeNrQxNdez7j9vdkonli0ULHdDlCYPjt95CHDwRNPPIEtW66u+/BipYX/8syU7M+U8xPgxHITv/7sLH759VtlLL9/fBHnmNQLd0YmTYmhwuNdoVKhy8ROy3D+OjFQlzHpzRg1ogWwua0NploS8AGBF4wZlBfNJKecy3aszBhlqs7EuLqmSHUdbo3/L9uKFTLC66Xd/UkzNV2662g9ZkTkqsKZUjTWCjTUY+rImhmUnDpKTgCLjRS6AcJfCLhQckIGWq6OqhVFy2UEoiQ8ufXFhinX6kCCvr+K9JcsF1tdcpYyAenB1NmJG0fVq8P1PaGINzRuR0NN2E94TZiq+KJpSGhmWyKoBUuz4WeAjJaBGyE4XnUImgSrGCnEtcSG15GpxYXCntTrnCOCcNjFGE4eE9JMgvJRaDltNpN2SYPfubaUEz9iBZbQ2xecknT58rtpJkxoCR0x34RW1LE8W8BEawLDB3jtB/BsH3pUJdQJVLG0JuJBAhaaaKGBnkgKBb2Klu/A0DwBmBBwEtNjGI6p7w8ljyj2w0KRAqOsBN0sBtmwEIUJCy0p5Kx0SRswEZfXVs1LW/6H50bxtq7IjmmBylF9Iyiib9aYpjvRy3tppVKReIbsXq8k0cuczGZMs2mbtmmbdv3sla5d38ym4vn5eRw9elTACWSE2WjtstGUlZ4uU9QkqxyFG11EA/o+CkiiOOvWr0XQhK1O+OiUnIqpxWDrpnx21fu6PFUWtwn4pU/W8fOhC4CTYzl4115ohg7Lq2NwVx8qblGAzYS10FfheyKBysvSN+zeVzISh+OHa+Wl3jF9FPqAUjDpwsyzJmH5dMAJJlDNqRU7QEwao1XdhEfFUohqP1U+O3lS1u5H1C7b+2d8wbqMqlEFSEQ9tJyY+NcDCRM/cnAY29MqX/nfTp1BwaJXpku+m/UD+pUVpxsm094HZVA0W2REF5oEMas5Vr46MJKMojhxHktzs7j77rs7udPL2ccuLuHz00UZO4v/LOZ/aa4sTJD/cHe/NED8xtcmMFe3BRgiTPuUpqnbiuUybC7tgghx3ui6RKMhUGVlrgTYEjWwVKcEjALKr2WxCc8ajfAM1sxYf+N7qXDAuoOKZwNpML9YbGKfkVIxjRcyq4SADFd5poFi5RBgERvRyWjSsDGUiyHwPKmDEMCiYjHm+T3sGkihPxPDLcOqufH5ybLMUSIRbbP/M8ZSTdzSOO4oyVTVe6qAGKwJGLqhmExZz/F8YZAfzMSkDkEG/r0DSXnfheWGAKvYXExWfAJXmDNIxg1kEhFh02EDx1DWlHjj6FwNxbKHg0MxvHF/H6bLluwnEzewNR/Hm/b0ynbWs6G0KTkFMsSTuX58uaGkiNtBaBjajObjUl8q1myZEzknwigZwHECaeZ2NTKutOT5ZybKMifcSsmOItAjeMPWDPbGLRSnx/HFmo5ZZEVWqy+i8j5115fr66m5CjJGDh87uyzNHvv6kzg2V8Ny00Xd8ZCOKiDSQ9vz2J5TcqcH83F8da6KsZqFsu1IbCoN3IaG4+WG1Fw4mkfmljHdtAS0EjMM7ErH8cbBPonXQiM4aziewPlaBXGRE1OA/5JjC5tTVjewfJOCVcJY7HrGNNxWLpeTx+7duyWfRkYv1mlOnTolfzOOCRuMk8nkVa2pjGdor8WY5qYEq7wSCzXhr2dALRrm1DQOHHEi6IAQREFKOVKZ3nvvvavoptda0SkJUCWiRcS5cF0LUTOKptfE8cqJTkMYtz0Q68P+zO4O+lacn4AFax9fL5xBwa52mEpavlpARAM5pEeW/4XOgHIUCPoINeDr1J1zfUR1Az71yxp10TKkPl6RN9fiIiwnChJmhAnCNrkBPCZgOvzJahGNmRpsafpcWZRFzqf9vvD3brADb+JBQGS131mgw8RuxOCNPkRfq8V9PTDFRiZjbie4yeRw59YcjmzJ4V0HBqSQTsvGo0Jd9rULBQymY53EIxdAgiJet2M1PSDHuDujwBdkpRC4ThsYwkekWUQQJDvdh1ysKCtDORw6fWvtpekKHh8rivwLHRwafxIA8qdPTeGhPT34k2dmVFdfJ6/bTpx6lF1S45WEK4FZocsjwI2O37n6GEIgCVlh2uPn/Coa9EtvkqmYgZ0ZDacLLhrrxBRc9LitWMQTx1Ahn8NEvXqdWoF61BBkL7sBBf0sDoomlO1fOL2EyVJLjoFMbpS/ISjk1hGFGmSx484tOTx6vijnhfOjpH7oiHVEGtU1xeMWB6jrWmhf84pWkOfdQMqMKMc3omMoG8PxuRqati+MHwSbVFuenFMm8Eeycdy1LYvBjImG7YuzQVBRJkbnKMBkycJoTwpvPzzYdoQiODicQb6tEbie7RvK4O6dPfjamSUkSWkdBAIaIUiGB0UgDanwdvUm8NhCpePKrswv7wc8d8rpPzNXEWeIkxFjQjimYe9QBuNLNTw/3cS/fNdh+fz/OvccXHcZmueiXCqi6eoo2UCpFeDPn5yU7wbn665tOezq24FcKo4TF+ZRbznY0pvEj7z1IL7vwb2d43jHgX5MFJv4zOklOZ+8lrfnE9jdk8Cx2Soe74njE6cWca7QQjKqOkwJDPrfxxfQn4ziXQdVkhjt83P/YEquE6LTiVJerttyzfSMZjCpu+j5Fu5CvJKxS6Q70RsiesNELzujQ6focoleOkJX6zRt2qZt2qZt2s2Z2G1aDh59YQKFahOHdw7g9j2DEssQqMK1ggm9MJZaz37vk0clSTOcj6PVsmCQgtcF/uwr5/DJ82VETFW8/e9fHcN/eNdBvGl/f+ezTOxwRp64WMQvf+aM+N00+nWlliP+BCmQu93+Dr0xEy62B7Ot1UyfhWDjrOEhHjMxX3fx1QsFpOIR2A5w/lgRuqEhyq61tpSMsnaMIoniLkDMVczd2veoUKctY9phyltJPG/kk29oa66XcDtMku3Nx7Ezl8D9wxncPbTCgnb7QBqmsSjgCALAZW6CQNguHhjKrmJVUbvQsDcTxVfmlK61yC61k5h64KE8dgr333Kg033IRKd0wYkU06XX82fGiuK7ZtrAZpXgDVC2PXx5qgIzquNChfI1Xawb7fgmZLYME5gCTukQEKpE9QYTJZ8JSczDj6z3biYLMxENucDCuMcYbeX80BTzh4bp+ko8pa/5ybH1xzWR+yHghqEbh8vP5k0dbx3uwWdmi9LBxud4LkhnviMdQW+MLCyUyInD0aLQ0UQyEkXNbcmg2QFpU6vc1wSwYoicj9p2KFFbaEbRF291zR+BIhEB2tiBh7gekyKJ5ZFCWkPKSLabWAhwYYegjrSRRM5Q0qoEqUijDCnngwjYx9kILJH86Y8mJc8Q1aKIaSsa5etZ0kjBDiwkoxa2JQ2M1Qh+8qQIEtKK396ThKYrVpL2BdhmJgnZX9XT/H3WWkTTb0k+JKIZSBmmAHFszcbI6Ai2b9uOplfHsrOAWr0Bv14XP9uMRxFh96ihoaQtS9EmShiJEcGe1ChmrQIqTl2e74v2YEdiVM6Husp0xJFAHcyvqCtJ8aYY8puNljzPgpYC2iguF5lvEAgk0KBV16bmGwh0TxhdQqYWPWhvUXIbmzHNut9qTeskenft2tVJ9BK8EiZ6+VoIxmfidqPr87VKmb1pm7Zpm3az2jeCLdILXFlruV5HNcUqQoZIsmncdtttGB5eYUtfawR+eOIB0TS4jit5NbXm02foGjsiiAdcc1ZqNPITAaygDqeznTYoRYDrqx3TtRJAK8+rz7SspsRDsZgCughbHNmwB9Koe9X2eENGlpDJsQ2GVZ2NHWPdie9W41zNrbLe58NxsHBNVkr+noww70xfbsVXo4kLsyquWt8ENiLDoixQe87JqMfGu3Qau7JxPDCcw1BiBfR7MJfFYwuLwoZBoALNavuTuzOr13RhXYGHnpiBRQai7XiJoH5GzobVQLVYlAYM5jg5FwKsN7RLYiMaWSu/OleWbcTbr0fb7IHPLNfw5qEsPvjUdBuYoWJX2aehIZGMolZV14Dg8gWcQfCCoPKlxhXGeCvz1pZ3JeDaUwBv9fqlgJWwzpKIRbA7H8FksYVli2wehmrUbheDJI7RNMxXmiquatcDw6uAdUCyxecIMLFcqUFJ7YaM77qOt986hIVSA8+Nl6TewHpPseFI7eTePSqeZ1x9ZEsWx2eq6EmaMt+skfF6Ekg6rw1hXGRtT4H8Fbu8Aq3YjifbUDU4xZyTT0ZgeTF5fUc+jrHlpkj5sIm5P2MKaIjHUKg76EvFsKc/gd2U4A0CvDBdxVylJXI3+ZiHpaaH3miA775lUPbDY9yZj0vT+kZG1pZ7t2bxJdadElE53uW6I2AYzh5livpYW9yew/iyip/Da1DqatIMEYjcEMkJyKjC+bFcAn8iwj5PwAwbx5+es/HWt+zB/sg+nDw+i8ZkBYbvoOJROEpHzddR8TR8reVirNBEpeXhcD/Bc6bM1anFhigv8Hx914FevPfgQMcXPpxPYLHl4EszFZkbXse9CQPbU6Y8f6LUwHSrjrPVpsgmEYDScF0cLdYQ1TS8bWSlRkPbncqg6jpYaDVRtHwUROJKw550CvMaGwtuznjmGwG+X2usC5OhmA9+p1lrCSWDLly4IK93M0luxGLLeIavXQ9JoRvNvuXAKtdbD1G6PPwi7IDJivZt3gfGj08hcCCUcqSWu5yRzraDoNVCpWu1+NPiukqYMMGzYC0hG81gKN6P8cY0ppvz0mnERYALaFQ3hcrW8si4YSPBDjRfUdiGtkJnG3YPcuNqr7yxehEDZiQKj6iQgJrXqoVN9WuRV6tb/1slzQyDiVjehHWhKe6gO4kAFL3Brk7A9s2SlGahfxQCVsKfXNTD/DuPbaVzUIdhENBzFWnjDfTIw9duHUzjN951cBUt8fHZCl6YreIdhwak+5NMKqGbRqflh+/fhtFcfJWMybPzLbw0pdg/KIvCxYrgBKI89cDHWDOC2+64U5yFT51awEeOzWGhbkvS+J0HBvGBO0ZWgVZOzddkwU6bq69Psk0UGg6+eLaApqtYS1jgDzsDO4dGZ8JQC+PaEgbP1dq8eJhslXPSnrOQVm+FwThMHGt4eFcOP/X67XjkfAFnn50JtX0uMT5rtRGl3XTbkuDl4mdo2J6NiZQPUbB0Pgg6Gc6YeOOeXnn8rycm8eTFgmyDoJA37+1FbyIq2ocEUNw6khYAC0EidIJYyOA88bwo0JDasYC1VgUDqkuUOpEhgOXdtwzhTXv75DtwdKaCF6YqMn46DqRqI508CyfswJ2tWOLUnFtsyHYWq7ZoJXLfB4ZSiDUbGO5PYLzsSOHkDXuujNSW86NruHVbL54YK6FcbyBjBLAjRoeJJR/T8a6DfYJ0pv4hHRuOkeemgwDlOSZghR2XVVsKOwRG0eGkk8TrcyAbx+nZiiCiL8xXcW6SFMt1NKOU2YrB5nQJ8tuH16jgZFFHKhbFvv44UnETd+wfwa17h3BsqowffnAH3n7L0KrjINr60GBaruUt+bg4gdk2Ujkm1/AyLhRa6EtQakndkzMxCJ3f588u450H+lclGAcTUdzfl8T/M1bE6aWGOFcxXcNn6jZGEwEe7ANuwc1n3wxHqNs4p9R754OJXiYEQkQvgSu2bW+Y6H0lMkCPPvoofuM3fkNkAwiS+ehHP4r3vve9ndd/6Id+CH/6p3+66jNvf/vb8ZnPfKbzN523n/7pn8bf//3fy5y9733vw+/+7u9uJps3bdM27aa2jeh7Xw2wynOnZ/Evfu8zmFmsKuBu1MB9+wfw/vtyuP2WQ9i+fftli9OUDqTkYDre7jBsO9DshmJCRnMcbBnMio9Mlrpf+fRp3L4li4VyE7/z6RP42mmlsW5pOpLZBLb0pGQb5yjDSE1oJrVCHrk2CFl80zZwvUOz3PY7SYmbjlE2RXV0iS52O4koso9tiuRwHQ4lfBRjh1qf6U9fjYUsjt3WRXTYyQVzHJK86gbaXKWFYPS1xm388C1DuLV/ZY3mdfHVmaokGL99Z15AI+wIC+OsgWQU79u/knTisU/WbJxzTIwtEUhMSSVFucxDiwuziA93dL8AVSi3+fELBTyzUJM4bXs6hvfs7sXh3uSqsZ0vK0nO7utcQOKBj/GqhRJBMExUCkBlNQ2xx6wm40udr3dNFhOcbcnRlRlYiV3C86sbq88DawOMVdXx8pg0fPeOHO4dSON3TsxDazjrJtf5VMPVhOlQzmFXaj88j0wQ9sQ0zDUVeEdRUGu4qy+Be/qzkrB7cqmMOUdpju/PGTjSSxCJj7pnY8BMS6cr56LlOR0qdmECDSnSu8azEjer2Nv3SdUdyDzmzAAHMrvaMk6U/Kmg4lKKSkPWSCMVSaikceDC1hS1fEyPoOk3JY/AZhmCKAhIiSKCpkfwS1SAIv1aL6L61eVPWLwhWMMJXNzepwoAE3Ul3URp11vzCRzOJmD5TOCrwoMqtKzuN1agJMr1KBkpGqWM4HHcsXauwkJST6Lq1VAPGnBNF3rUFGmjsAPXt1zUGg0kMjHYvo2UmRZGmV3JYTi+A1/z0WcMtVlnuo+jTdWPaPtneBdS5PwErMh1LaAUNUIlFKS4VwyssM8I1IUAIM+Fo/M8qxPM4/Y0F31begVEdzPaNzum2SjRy8eVEr2vhC1yM6bZtE3btE27/kYg/PWKaWRN8KuwAsrWhAAMDXMXF1FYKAlA4Up5La7gl4LQV2R1QvCqAqg6wtoWC5ICVSXrmvJkFGtjCFdX/GxdjH+r3djLHk8kGoERiwgAR31EdYQS8EAAtCBXVgbaOWb6VtLk2uVZ0SfVhNFhtb+hsr++bK+r1VnlmjmGNjMIXxXZQmmCVu9SrBiXP47wUC2P+yHwmADvbgbEAMMJ4Pt3jErzdGgFu4Wz5QpG4jEMxuNYaFmrgDi39eSwu+t8khHiXN3GaT+Oku0hFzeEgZ1jFKaQwEUZBvbfdQ+SyTiem6viI6cWMF62pD7w4NYc3n9oUJpQQ5tr2LB8H/E1fg7B9k3Px1NzVSw3bGRjhtRsmNePRPVO8zXjyXpNsYCGIaPEKwIEYaNz6N8rwH34HvGARZGA89uOV9sKA912eCiF//juAyKZ+x8+eQa64XUBVcLrSMUP1gqmScbQkbXRVZPvzt4UynUb8xXFPhI3IxhNx/COW4eE7fS/f/k8vnBiHqU6kEuaePPhQewZSkttinUKvoe1m7mqpRpRyOoZ1WEzF7Am79HuRVjpKggCOQeM2fnEke15/Mj92ySIOzNfF1b96kJdwCF3bc1KbY61H55fgkDIjn9huYn5qi0NFQSq8Pi29ybQr/vIZEws2K7URN5zy/pyxuvZ3t4kHr9YQt31sHUoheVSC7awa+oYzpt49+1DyArIpyrH2nR0BYyS5u+w5qZiVDbeijxSRJd6DB9ko2fdaaFqY4ZNHIaGp86XcWGuCmoIZJIxxJM6zFi7RtOq43xdg6fpGE1oyKcS2NmTEDDP+WIL949m8e69q2tQbADZlqLMUBT5qGK9TLebTRg/niw3sWxTbUBDOtq+9gMDJdvB6UoDr+93V54HkDAiOJzuwfmyi7FKU5oxGMLUnQYm9QBDehSvw81n3wwVlm6TRpJUSh5UY+E6WC6XJZ6hUsvx48elfhM2GFPyJxwfazSXA+ffzPFM5FutEzGk87lejlA9oBNE3TXVB+S5ZF5wsWX/EAbjWxAxrjzFIVgiREkKUwspMrrQeCEC1vU8zLcWUbDLmGstdLTCmHRhzVcLfDTcliRxQsmQpOHC8tfQ0HYYULhdooN5C1RGt4UIuhBcwE4f6j5LclgDErr02KHR1swO0ZikpzINT26sdbs9I7qOVMJHubbaAwuPi4t2yN7BxZy6fHbLXZ0s7EZjaBpipoGY4aFuKbo5YYZZJ7soi8JGpAUa8KXzy3j0QgEP7cxjvmbjH33oBZGWCW0gGcH33TmKi4UG+lJRvPPQIF6/s0clQDXgs2eW8LtfG1OLjad0/6QzsM1gQqpooo+bgYGa7eOrZ5bxwSfGZTHleBc04A+fnsRi3ca/emhXZ7+9qTZlMVkX2l6KaEtSV55UcmuS1WsPnX+TZo64rLV04ZE2Arb7I91uTieh23ZsJKEcjkDQlRrGChZ+86vjODFfl27JjS0AuYKo5Sg688JkqCElFHeUsiEqXBOHjkle7o/XzkO7e4U5hO/91e84gPPTC/jE06fh5vpl7i4UmoJufcu+PuzsTeLhPb34q+dnxaEhoMj2VCGCY1d6myuXUbfxPFptDXUCqkgvd2AoLdup2i6KLRczVUsYPOiocsw9ySjKTQcDaRPfc9cwnpuoCMXddLklRZRbtmSwfyiN8YuL4kxGDV+ctqs1OoR/8+w0Fsgik0mAt3g61PmkifcfGcGxqRImlhXVF2WMsnFT2GDmy612EKKM8yjfL2GsUXOfMCNy/i4u1bGtNyFsJ0+cWcCvfvQoZpfrAmphurVGLVJNR0+vAujcsiOLUzMVYYo5NT6LoZQhbBzRWEIKWRzbesZzzn0MrEEpc4zUemQQEQJVVt6vy3fR6aYKbyeqv3ihIGCWpKkjIRqMnpKbsn2Y0PE2R2lr3kz2zWBWuVJSYGBgQB5KRqHZkQwaGxuTsX34wx/GLbfcIg7Ty03sMil8xx134J/+03+K7/me71n3Pe94xzvwx3/8x52/16KD/9E/+kfiRH3+85+X7skf/uEfxo/92I/hQx/60Msa06Zt2qZt2s1u17MLsda08dO/82nMLFXRm4lL8rNcbeDLL0xh12gv3vOuHVfcBoHX9H3YFRUaPZOapaivY+01mr7JUCaGuYqFjz43hf/5uZOYLzfFT6FvQznORsNGLmFitmKjYSmmSMW+p7Ki3b4vdblXYov2a22ZFHYpEWQsbI9MFtI/75oySTRFVIKuO2kbgoDVPCvQ/4Y8Hm12wLW20ftD7ArnijGY465VjW9vd81TG8vAAh98fga//cZd4gd/+Nwy/uLkYkfCRwsC3DmYwmAyiorlYX9vEm/ZnhetaybS2BX4P16awzPzlHlNS9I9BGGEXBItYR2MoKpFJeb5/RdncarIxJTayXLLFfDJv7xzFPt7Eh3frTcWxcXA6pwwFdKpeLInFsFyTTUFGBtMGOMZgQeszRkxPpUi/9q5WNkPT58Cyqx8JgQTyOepzT5fx9eXGphpOO0uw/XnmHMZpYSOrgtIRkBO7NpkcwXZE1lk0RyMppS8LhlQMmYEd/Zk5bzd05fBXT1pPHX8GPxsBPEc2Uqa0D0NvdEktiZ6Je47XjVRsJudpH0o0ysMlN0DahcHpAu1nXgWOR/dQ1+Msb86B5rI1HCObQSBK12/ITsrwSh24CJjpNAbzWHZKaDukfLeF3BKJpISELPEfxrBLC0BnhDCcjVW86rSCUgKej3QcGvewKEs8wUp9EXTsLSGMK+QHJ9HRwYYSvyoHEh7BrpkTskGwzuBxHeBIe8j0CVklJ2xZlD0CqrZJ/Bh+B5czUGgsdswAT0aQ5zSUPznWigulKShKBFPIJYyYUZiMoeXmmRbOpwqa00o99uZoNAIaglZUy59P8elYkOtA0Jik1KAdE8KWuTlgRe/lWOatYlejoWMYIxnxsfHJdHL+Oapp56SROsrAeBvxjSbtmmbtmnr34dfiV1PAD4biVuByply5fY9D47noG9LHnt37UMscmUZ7FXNvmG9ZhVQpZsxkf4J+VNabaa19vNdwYr6XIfzfN24otvT64ZwhA0A9B9oCmbSFpRpA8KlBhFQLn3tHNIn5ZZYPFcBELesa4b4Z90mkBY2QHaNTXxwNsES9CL1IHVc3Tn2Ds6APruwhagxXlKnCJsJPIKZQ6CKignaJOEoOU0cLy/gtuygvPf/PX8acy01p6HM5t19AyhajsQ8h3I53JLPtT8f4Hy1iT87M4ulloMWMmjZXqcuJszxBNiITlIERSfA7HwVv/XkBIpNAoiVfez0EibKLfz7h3ZJ/pyWiugdOfqOWo8wtah4wGzXTVQOHtAjquYRzoHJXHxeR7VqKXmn9naiBLSQkV/8+hVmyW7SGzauctwEqMjTBJUQ4M2GAmEJNdAIgN/+8himSk1pKCAgaV0AvpwEHym68hqZYdTzzMMTZEHG83Q8KvWDbWZEKQUYOu7ZkcPd2/PSlPrv33MYP/nGnfiLzz4Or387ik1Pmnhz8Qi+bV+vAEZYOzs1XxcGFMXCQvkflfNnTYvnpV397Jz78BppOeoaJPPJQDqK/YNKtojPs/GCjcOsC+Xbygis1ZiGj0o8gof39OHQsIUnx0q4WCTYBjg0nMLh4QwW52oyt5T74Tau1phH+PtTi5isWMJWT4AM61Cs/b1jfx+qro+xYgvni01UHE/yDTt6I6ISIM0x7e8zr3fOJWueAlTidcEaqKZJPYk1LtaU5qot/LevTeB8QcXZcVPHcs2CX7OwfSSDTMrE3mwapWoD5ysuLi4U0BfxpUbDxmOW+QnQWt80iSkp0dp9zxYQme9JrqWvC5DCE0EGlqbnoeKsBqvQjpONpW7LXGSiEbQ8T8BbthvA1SIi29Ubuzx5w41mXIdezRoN993bBtrv3btXpLhD1pXp6Wm5dzzyyCMCYKEs82u1RnNTglVulOQuL5KWv+IEMaHDExSPxUSjjokIdvRcyXqiPZhvLYhj0QHBth0HaiB2G28oLd9C0amIg0Ea3BWWFMqf2IKKU+9VP00jQNzz0CLt7Jp9C5ggysSa3tEuVMlNAiV8BL6GgDJAIWS2bfGo0iYkYEWWl3ZSmItPLELHw4HlGrBIWWxwwVb6hav2zRtzNLaKHjukQyOVd9dBd91Ilfaeb+hIRdT76VDx4Tg+SALD4UQimiwCHDafV9tenfglpfX/+XdHL5mTEKW22HDxv0/O4cM/eI8wQ5xZqOGf/d1RHJ2pChiADhA1AflPNBDbmm/tQcsC1HQDxLlgRXT8yTOTwtTSvb+W6+LjJ+bxvbcOCWPEx47PS0Gex0D5l554RMkLuSzuB/iOA324Z0sGH3pxXpL/G1mn21Rb6xwqxHO3HE7XNK+mk+v6oKLMU+eXAI7pCtHiVwKBaxjOJTBHhC3YVascMupa2r6G12/P4cXpCi4W7I7TR2mm20czq64Hzt0d/QbuOLJVUKYcw7Z8vKMp+AP3bBFA0RfPFCSBLgjRmOpG5HeBYChSYnfOjACsuJiq64qU3WlTx8HBtHz+Iy/NCWKX55jO2JnFOkqWi3u35uSaoSP7+l092N2fEkckGuV30sNsycKe/qTS3Wx3iPL9PSGv4VUYgS9Pj5fk3FFqidcW5Y+W6g5OL9Txj1+/HRcWG6IZec/OHnzqhWlUmo44Pfwpx69p2NoTF4TuYDaOc3MV2V5v2pQkPh1GgoMe2D+A//L3xzCxXJcuaKduCduRXCD0JF0Hu3qzImVE4dO5+jKCWBL53hiq9QZOTy5jIObDWwQuan2C8mTiLzx3u/oIiNGFjSZ0JMl+w2LAvoEkLpZb4nCKxFH7XPMaGUhFVtHB02arNs4Vmm0QVyA0dbyEeW7Ljo9TZeD0cgN3DSuJqJvFvtmo3cuZUGUmk/LoTvT+7d/+LT74wQ9KlyJZV/7dv/t3kugNZc2uxt75znfK43JGx2cjKtaTJ08Kgvfpp5/GPffcI8/9/u//Pt71rnfhN3/zN0XiaNM2bdM27VvNrmcX4peeHcPccg192YRid2g2EeP6rJn49Ncv4t/+kIuYeXl/hj7R2+/cir99/IIArJUkptKnZvIyn18JptUyH+DzL01jodISxrcQIE2mSNt2cX66BE0ot1dsAzI/sVCCc6UJAB1QdcxkcojSpH4HxBGay/FRM3wd5hK+xvUwyqRF2zfh+7ow9KuTPWt9b/q33T5Nm1VFgP7tN6tYov33Bo61Yo/ZmDGSQJH3feL0JfMhY9A0PL/YwD840Id/eGhIABafHS/hixNFVNvxVlGSuWr+O/59OwvOH4xQmwIcAV5YquPockMSWt0213Dw8QvL+PHbhvGp8SKeWaiLD8j4heeUUkGK8UZ1Z94/EEcsquGR2brQDW9kijlwtcwQmSBNYRJcSfuv5tUJ57/d/dnWa+90iUpSDphtrnTOrgcY6swlgC3JKKZbHoyAjKaa0iHXdGlM2J+N4/mSJck8bo8J7T7NxGB3go4JP2joQQJ96SE4PhlRDaQNde2bOnBvfgSPFSZRcSwBZsR1SiwZAvBm3M14XSL/NqsK52Qw4aAvHsDUPcQjNnpM5QtTSuhicx5Nz5J8AedstlVGr+kiG0lIYwtZQ3qiWQGKZPSM+NjNgO+PCJjFItBIzr8njCPcztUY57zslWD7ZJKhdC8Ts+zW9WEHVWhaBhktD08XUnA4UeqcVxFjkl/gKyzJ+EgYppLRaZ97ssby20JNe9tnM46NONlg/AaWPcXEqajGAwHikAvFlb/IFBOHQdYnnrsoNe2zsJo2LLuFZrmB+lILs1jssAuGzLjcXgRR6ZtW0Kn2WORbQViKQE26oEUhN4yCt6zXra3KDSudxGGm3oxFEBhh5/XNxbDyzWZWuZxxHGGil8ZE7+OPPy5AfCZSKYn6W7/1W1hYWJCYZufOnVe97c2YZtM2bdM27frb9QSrWIGS5hN2N8eBZVuypnPt93Q2p14ZrGKIyItiz19hZ+muiaxpICUDHFaamNVzq19Xn1oBuYRMK+vuXxhR1Du6TRgEfQXyVa5RF1C27SuTeb97z4rRke+n5D0lWFSMxs8T+Nt9JPRHDS3aAdqE4JSoZqBFFrrO6NWnQveaPjFBE2Sa4PsJHKb/Tkbs8Kwa7UI5lRYrNrlVVqN2OB7WBR5ZGJcHTdUt+E7lf9qBj2eX5/EvDt6CiG4IG+HnZi9ivF6RzczWgPkWQRY6Aqa1yaK5UqJRzQ+MGVwfPaaB33l+RuoV3bNseR6+PlPB88JqAXz0xDzOFhqI56PQTV3YKJgyZ0zKWgJlVO7rjyNjGgKiIDBF1AG6GysYn+q6vOZIU8fqA6eP7/pd8j7aanZ7ulf0p9l4HM5VNKZqcZQfZdPrTInXKxu2V3yxtYAVfi6bMGHZZLYnOF15pPGIal54aHcPmnaAk3M1qS1wIPlERAAjzO2HxvrDnpyGN9y3BTNVpfSwJRcXwAXtnYcHcGqhhr96bgZNW0n4puOGNGg4jJ0dryOVFMa3vPZ60qY0xDJmYT3mlpGMXE+fO72Er54vCIid7PJsYP7c6UW8bnteQC2LNQeHhlIyzi12XOIZxk5sBNjVl5SaUmhset3Tt5oJ9HI2Vmjg6amK1DIo/cMYj4AgNlS8NFvDj947ioUhF8sNF0eGUviYD2nGQB7SXGu1cxFbeuPy+2g+jovLTZHUysVU7YO1vYlSC7eNZPCHT03jzGJDFAQ820Wj5cE0Vd23VrOxuz+JwVQMWTOKWasCNxpHfy6CRrOJsUIdhmejNbmE81aPxDQENYT++XAiinTUkLi/t11P41zVHB87UjHUvBZavo9kV9e/zeuEIKY1QBVeL2O1ppx7GhlY1CkN0PACeJqB87XGTQdWuZFqNGGdZGRkRB78LjCGeeyxx/B3f/d3OHbsmOQDf+ZnfkbimTe+8Y1Sz3ktxDPfsmCV6+EIdRwXghJaTblwkomEoBgV/evVCZGnI2kMx4cw25pT3UVmSC9H606AcqEle4SJuksdMbUQSCqkjfJUThkTIcHqBcl0ENgBLD+y0tGnMXGjFsBklEVk3sxFPAUR3ZeuMOpktyjhs1rmUI45apCiy4ftqRsZF9jQmBRMRNmBFqBOBpb2Yr7a2o5aN/uHUJxRAqjdzahrODKaxQszFUl8C5q1nejtRhrznK6HfhOnoDuRzMRmFxPLlXqXCk0P3/fnz0k2tFizZTxkg2CnJxk4ohENyQSRwZd294VzT132X/rCWYyX2CnXRf3dTrByAfvDp6fw9HRFkvqkAxvsS2BqoSHsHgRf8PGG3T342TfvQjKq4d4taXzuXGGVPuR6thaxzQ48AQ6t0ZHsvhfLXHWxdNBC1aUVMI6avSvR13/nLUP4yxfnMFVmgk+dgwpp2SMBxicmUbeieP2WJHSTHW26gDI+fWoJ92zNitP46ROLODFbQq3m49tiC3j34YFL9AQpvfSLb98PXTuLY7NVWVioY1lquliqOqpLLlQ0atODi558O4zIxAzcvyOPbT1xkX56caYqFGxkBdnZSwaYKF6YqWK81BJqNUpEPbi7By/NVPDxo/MCKiIiebHp4POnl/Dgrh5JzI8XLfSl4zh0DQCK0/M16QImECZk1SF1/rn5Bv7rl8bwV8/M4IHdPfgXb94lTs5ILo6PPDMpjhMRv3TsDoxk8YZ9/Xjs9AJ2DaQxnIvj+FQJDcsVGj7O8107e1FruShULWTiEeRTJvTAQ80hYlkVVgiyIT0/O6W5r9F8TApRU1UPppHA/Qf78L139CMDxcbBzrUQBUqnaFtPDx7Y2YNPn1rESzNEMQfIxqN4cGcP3ryvB8cW6pir2jL/vL6p78lDfvPunnaQxftd0GbLYXFJXZNkvRGWIN4HIopZiYWP4wv1mw6sciMldjdK9JLGjfav//W/xosvvihUdKR3Y+L3LW95iyBx3/Oe97zi/X35y18WKu+enh7Z7q/8yq/IdUR74oknkM/nO04Q7a1vfauMkV2S3/3d3/2K979pm7Zpm/atLAO0XFZsDgTLN1qWgBGZ2A1aDurtx5XAKrR/+Z7bcWyigBOTRViOSpYS6JHqzcLsSnJwzTcjBhbLLcWU0PbT6aMoWRgfraYNM2qu263Z3a0mzA/8XMg+saJA1PlbkmMuZTrXX3MlXugCz69+TXUbsfuNCcAwwbueXa6xNGsa2JKJ4XypKTKhBDqEmuHqs2uDrdVGmaNgnetFfezSz3Y3A9D+7swyvjJFCUiyzQSIi+a7Jqwo4dxfSZroy1NlnCw0JEEVyhmFk83PPbdYx+8fncOFcksS0oyTCBRqWl5b217JdX7/vh7s60kgH4/gifkGltpjWP/ALz0u9VMBca5sK9FQN9B+RVH2yt+/RETDW7b144/OLsBl+oRsJnzBC7DNqeDEbBnpqInRRBxGNIqIpmPZtnGiUsPdvTmcrFRxqlLDvK8h3XBwb93FgWx6lRQtbVsyiwewBS+Vp2D5rnTY9cZ8TDcM9CQcFJumSma3CwS5mI0DvXUQFx+CKrbGlCzKvFVEy7ORiyTlXCWMmDS7VF0LcT2KlJEQRpWEHsd0ax5FkSVW7K51p6lYVJjp13n928hGsjD1q0s4sgGH0jycWbK00JjDqHhN1F0LC3ZFJHyGzQFsiQ1hazwBHfOouFU4gcpixHQTfdEe+Y40/CbiRhyap8MJyMDIjImiE88YGZS8Uju3IZ0sUpwKDFX0kAR4EEGE4+C9ImABSvm58VQcyXQSZhCDGwtQWC5gYmICJ06cEJpl+qECxs+mBGRCev+wp5pFsJgWl3yPBUoNSNtOJ0MUno/uiHqFQL/ddczPdH2P5J06czOMUjfZIq+XMdn65je/WR5sWNu9ezduvfVW6fz7qZ/6KfmbSd6f//mfvy4A+M2YZtM2bdM27dVji6SUJ61ltYT5ngxq3L7AYNewiWxkXOVNJGBzfWeBPBFbCSq6TK3xXNfV9lcDTcPVfqN9tLexlkmxy8+gP7BSGVLAbMoxUr5QwWUvNYKLQ4aV1Uzr9PvJjs/4g0DeNli+a/vh+9fWaAieYdFa/Q3kIxm4QRWu5wp7HsELpqGao0PmF6nRrDM+eka5mAtTZ1yg2FVsX0fVJchjNdCCTbNZ00fFNlZY5AF88MwpYdsONCVxymJ6y2MjtofhjIP5SlKaVy81ymyqI/7zs3M4XqivMNR0kfoThEJpoPMLNWl8YBxQXm4h0RNDEFfs56wzjCZN/JM9/cJU8R37e/HHz89TpXK1/E5bCkb2bWjsCV11LYlfGDK/dI1ZqQiw+XZFmUDzvc626SnS3+/u875cvNzeGe7dkRdwy+Njxc5rZZuM+IBXWcBENYL7tyZgmDGJ3Vk3+Nr5It56cEAaWT76whyeGS9hcdHHSUzie+4axZ6B1Wx1CdPAz76FkqTAF88syjUnCgwWm3ybiEQM+O2an0j7si6aNAWUwQAnpevCen/7aFYalp8aLwnLPR+0/qSJr0+WMVZoYt9ACg/tzgtDP2WG/+aF2Q5zSqnl4nOnlvDArrwAfeZrLmIJ1SB9tcY6EBldhtOxDujFdT0cmyzjuXMF/P1zM7h9Sw4/9oZteHBfP0ZSMfz18zPCLMPjRVTHtnwC336gD89MlZGPRzGcNnFiriZNI9U26wzVBchK/9hYSZqLs3FGER7qrmKVEVkpL8DebFzYTvgYTJlgr82SS/RSEntHc3h4NIW+oCE1mqNHj8o1whx7CMa/qzeFr85XcaxI4gXK3GrYk4nhgYEMlu0WphotuS5Yo+F3ng3gB9JJZKMEu6laIvcpQLS2UkHN9dpN7uqewrsL74YEs9zTm3vFzFvfSuz3lzNN0wR89G/+zb+Rx5//+Z8LMKTVauEnf/InMTMzg4ceegjf933fhx//8R+/qeOZmxKs8kov9OvViSjOApOfPilyNaFdooVJiKthVZHtaBr6zT7UvDIabkO+8LEI0axAxbHhaQp5SYeDSaLBWB+Kdrmr60YBVMI1KB0lOk4TNFuHvk3omzzlLMhCzPSIcoNIVyzITJ3gk3BeVMYkFvHRaoNROsbET3ubKZMa9AQxtF2qDiZE7Tke8USxusIbGhf0NnuH5WycGFR02kAqEcHWbALv3JfDQSziC0smZq3261dCaayZXznm9uDUfSdc+IMrIum4MDRbLhpEUkZ0pEyzo/vOBY8UV2R7oY5gt0PUZllWSNCzS21HgNRf2iWOw1fGCkiakVWSKVZ/gHrTRX8iircd6MfPPLxTaMdOLtRwbIlJsdVQFKFUMzRJQKsjvNRUB+I6dNphUntl0mR7wkqy8cy2u/ouRezS8nFDGD7oMKz+FKn/NEw4KQylArh2A3atJAWJdCyGmZKDxy6W8Pkzy/LZmOZjsQn80dNT+OTJRfyfD2wXxG9IyUej0/JP79+Gjx9dEFp5gomJTk2ZljgGBBjx2JnwnKs0sVBzMJiOIh6NYFs+hu+5fViYWiaKTVmACVQJbXtvUhDdeweS+IdHRgVNS9aSz55aEsASEby0wVQUT46XxAFJWMBtIya+444RDGdXU2Vdzji+7rlkR+rphYYwjlB+i1qMf390AWcX6vjTH7oLbzk8JM7Bb3/+LPKBjp4kOwYU5VxvOoYLCzXsHkzhdXv7cXGhjqWahfccGcUPP7wX//pDzwqYZo4FKoLPdGAgFcVyw5MEPun3OcPUc5wqNvHgnj78wOu2ypg4B0T0EshCI/0YvzeUigmBK8+8eAxfmTdxsazYmRIxU1DoPXEDo9k4fvieUXzohTlxPtkJTeTwfVtzeMOuHnzyxAKen2bw4+PAYBr3bs9iIBkVR7HWUuh/oXqXDswAg0lN5IP43NrE/41srzbF3LUYx0mauD/4gz+Qc/3CCy/gc5/7nFBpv1IjvRyp53bt2oXz58/jF37hFwTlSweI+52bmxMnae06Tmebr23apm3apn0r2vUEq+zf3iu0wNV6E5lUAlFq4wBotBzs3tKDXOrqfJnhfALvOLIdp2fL8Ox2UJ2MImoaoiVNX4sAVD7ednAQxaUyLsxXOp+XBIdLZkflU7cI2o4oytzu+I/sJp3uxC4fn3TI6rlLeQnqLR8m6Ss2AD6QXc6IEGC/vh9BumXxJ9txhfjJ7By6zHzQi2YyMxHRcWQojddnbHyh0cBZP4Wq09Xtd5W2HvuKPEUq7Q38H607BvADVJjVlEaFiCQOQ5OmAAHjrLON9nMVx0elHPr1Xawx7ZCEyd2LlZYkbQm6pl9GH5p+Jb2d7RkT37unD/cOqaTm1yaraLRprbstHFZHyqh9oN3vEyGVkI577TytjYOUnsxlbaN4hlfMG4ZSeGqx2gVw6XwKi5EU8nEfCc9BrViUYyYNsxaN4XylJp9/vlSWnxzzjOPi41Oz2JtJ4c1DA+hb03G2JZGF4w9g3q4oSRvRBXdRjgXI90VRs9U1bEYcuLBh6lFkjKh0XPZG0hiM5wXwUfdaSMjz7fiXbC/RLMpuAwPRfvSZismSABYCVeJGTJhTUkESFa8qnyevCUEf2f8/e/8Bbtl5lgfD92q7l7NPr3Oma6pmRl2yJVsuwgV3OgRDfpwQIKEkQMpHEkISfvjyQ4CfmPAlJBSbQDDGxk2yLduSLFmWRm16nzOn993LWmvv9V3386619z5tijQmHvk88vbM7LLWu95V3qfcz32bSXRbmatP4JpzsPKaXHIKKNZ57UgkKkyxl6sTAjrZGh3GUKhfch2u58AEWVxMNQYfIMPCTFSPwvIskSQKaSFsCQ8LuIY1GZ9zRl2KvJalcNQQJhWCWAQawi9qHhJII6RHJBticG8EuXQAmY4MduzYsYJyeWJiAuG4hd6t3YgkIvJsJLttIAxEMI4nZ4IU8gEzripycZ9VlBSwBhosES7lncACA5lmgpkS5JW6nknjj/q6kkPfzvbtDMBfvW4SzPTTP/3TOHjwIPL5vNBpP/roo2vorV+NbcY0m7Zpm/adaN9OMkBeXbGLMGfFLnNpDPA9SFnvr3dMUtFhudiFp6s4hOs7fZXVQjgWIrBRao3BZ01Tcn/tzGsrAawBiDX4bEVbrg9Gb7K0yfb8b20w3xwf12KtQZY5gn/W42kjO6CFGjlGyMbSGvSGAG5+jz5y0gwL+LnL6IJ9pYxCRx16lEAE1WwgIOHrgIHHDSIwyMivqlJho464xeZJsj5wLW4H2VC6khIlLb+IrBmUfqmTZYZSgIaFUkOxk/D9aMhBrbKSBZozHRBscPpeXioj2WGJn1su+eCetrEfnyvCcxroiZlK4aDewOJCTSr1XQkLR3oT+Pt7+wV8QAb9r1zO+Q2WK5saCNxXTb+axGHB/hlv8qWkZz3xXdsILdT3+LnPzEEjcw1z5N4NNMK0j4USqj96zxA+/Ccvr7kuOMTjhQj6Y+w0t1HOFmCbpvhGEyXg2UvLODqRx5mZIpJhHUs14GPPT+Fvj8/jJx8cxfsP9QszfWCsXf29u4eESf3CYlmuD9bO+O/OqIXeRFgaczkOyjqNZ2voSbAmZMif37WnF4OpML55JSf1FzYUB9aTDOHO4ZTE4j/1hi2IhxWQ4hOvzEgN6bbeuOyvPxnGM2NZvDCeR49Zx0i3jkf2dGN3z/VLp7BWQdGKYB7LVRfPX1hGoeLKuWUN54kLSzg/X8J/+f4DODiYRNgcxq9/6TyKtolkxEA8pAtTflcshPFsBVsyUdwxnMJEtirAmiPDafyrt23H//3Vy9LMy2bkJlhLFAFIiAABsAgDrssamYOt6TDevb1T8ip8fygZQlhqNClhxAiYOBjPUK7l5OkzuBTqxDjZNA1DWGr4nAvrpjCnvK2/C1+eXcJstYYym6ENHTsTMTzQ3YFjyyWczVekYaU7EsK+dERi2IlyDRVHkQRIROMTUBEOxHuGQBZKBN0qdqvEM8G9Pjw8jD/4gz+Qc33+/HmJZ14PNZpb54q5iXYzHCFeCOPj45hZmsLI3iEYIVIbB3woHiyEYWnXF/AyWTFVuyKJDlIBl+yyJHU9zUNPOImsU5P9dYY7MBIbQsyIYKw8iWqdOtSW6DuTKjdYbWQx14G4INxaSVii3yyrTUfeg0gDMR0ivxNUq0JoNjckayp/Eyw6KikYJBH5QEqFqQEJeRAHcId20HE05GKoU8dCXm+yq+i6QoiuN69M6MY7ovLzouvivx+bxc50N37jvaP4J397CiWhlGoI7da1mlHb6evUn61jV47BtbfBDsQK2RzYmdkgU0wLpSzIwoYn6THZRxu7TPt+sYYCrkUhHiSIKUVDy9dcWbCEVYLw1pCOxy8vC034Lz20Df/r5WlhpODkB/Rzsl0f/diik1vrJF7LqWnpB7VQvRzV1fDnQu286mSmwwb+64f24788c0X0DpkMb9GyE/3rCV349u60UHTXTQeVhouwY6NQsPHZb57CRM3CcDqCM0s2cjYQCWsYW67g954aw3S+ih88MrDCST/Qn0QiZAq7Cp1FzsXz43ls64wgGWk5qtP5EM4vlLG3N4GtnRH0JMOouA187cISFsrOuh3OdAdTYVNAGjSCWuYLNrZ1K4AajewjbzQ6hdFlv57H++4dRCZ9Y3rYpK0j08l8sSbai2OLBKo0YBoKkNObDAl46tx8CX/z8gyGUiH86qdPYa5Qk+Mt1OoCEBpfUnR3qaiJywslueZYLPquQwP4sYd2yL8ZUHQkLJEUylUcGOIlszjkYVtvArcNZ+Q65DV2YCiFdx/oxWyugkvzRXE8ebdv723J/vA6IOKSLzpqf/L4BXxjcllU20NaDZF6GZYVxRdecbC9M4z9fUm8caSCp8eyIhFwcDCFd+7pFsDRsekC0lFLjumpS0u4uFjG4ZEUnr6SU865X4VQ11IDblh1B99q9u1GMXc1o8PT3d0tf+eY77jjDnndDPuBH/iB5t+ZOL799tulWEAk71vf+tabso9N27RN27TXm92sLkTKmBrlGeweiOP0VAnlWh1WnYBpR8AL//C9d8qf12NfPTGNjz52SmiOh6IK3Eufz8sXsX84g5lyHb2xMN53aAB/794RfOnYFL52elakDJngIjg2AKPCT2wQvKLYU4z1pXd839KPZlb49u3fDRKEzd+toWgGGjYBK5QSXYetUaRF67BCSmpUwB/iJG/sXXdF2f3IOAF4biKLF1HHDx8YwV6Y+KvTc6gKa+Z1Ta0ChmzwXaUDvjFgJSBeoYQp98dhF+26jK+9k3Ddn7aQ7CveD0KG1fuhn2ZQzsTzMF9xJdmlmDOBBbuOPzm7iLhloDtq4mtTBVTra4HvTJiGGeME8dpV5mWtPNLaNLm4jW0IlpXjVt9vyqG2fch4967uKN47nMY/f2HSZ/ZrTQpjQMoJFerUMI9BTyRgk8HHcaTLqVzIY355CVYoBN2yQO4SH5+AU/mSJPHe1t+D/mgrAcvu1a3xHqSsGJYd1fFZMWyE9Rp6QmFosaCQYWG+Vhemwd5wHHEjLFwec7WiksKhj7kKEB2Apyg/FFwrRVcVVwKJH76fNlMCnpAelqyL/tGVyahrGTsoQ1oYVa8Cl7JJjQZKdRKvq45fAmxYUCH7ykxtHgOhHkzVprHoLDeLNQSaGF4EVbeKhBkXgApf3EjMiKI/1IukmUTOzSsgiGbB9gIqd7/4Q1CWEYfB4hIcKfhEtQRCiIhMADusWbiKICrjWk25zERv2Sui4GYFFGM7NRRLRVAdKRaPombY6Iz2wNAI62lIYYjza4LnQkdFK/lzrlh3q6gowIpHuejgygyKWurGfHU8W//n7VaJaThO6rRTupbGDsX3ve998roZthnTbNqmbdqm/Z9rKJ6fn8e5i2ew4+CoYkNpVmnoi5sIa6387bXM1cimRrkaA9VqDZFoRAEMNFN8LNU0TDhLRLZdR80HiLRx+QXsh4GJaxLI/6m3VjOkrGTob6vN+H+hh7MagqLY9lvb4XpMqI1Tp18UeBatWg0/jyOOar2yYn8btaoyl98bTTWPYdGeR+eWJO5I78DR7AlAU7KO18rIcusK0OHB8oEqgQ/PUkrCqgt7XtFdCTQRRv82sAq3QzlNJavKupaq1wQTGzZ5LVl+AV359gxl28szoinAelbSQrWi6kvtRrnTNNksNE0K9LNVskR68Goecp6LJ0s5zOUc/Ls3bcXnzy5gLFeVGk372eQWmdPmphkz2I4CmpCJpj32IeOKrhNMu7KuIud6RYzks7D4jPHtwBeagF7aY1s/xuL7ZLz8ne85gMfPLokUDms0zfheGg4amMzZ2NaZEdlMR6eagAvPcVEqVfGlo6dxuWRgtDOGc0tVLFQAhi8z+Sp+/2uXJYb/Jw9va9ZMaARl/PCdQ3hlqoCJXAUR08BzIV3Y8fuSrXop5ZPM8ZzUQyjRM5AKS9PD4+cWsVxxZO5WM4byXJC5nUAV2kLRxpXlqjTGBrUn1lDetCODi4sVHI7aePhgF7YOpXEjNtIREZAI6zxsWiHbDtlmQpaGZNhCdyKMTMMT4Alljz5waAC/+ug5XFgoi8QPmfN7Eoy3NZFJ2tuXkPGwBkimFjam//g9w3IclFqKh0whBeDvLP8aYGzNutWR4RSyNVfmoj9u4f6BpIBnLixV/JxOFLt7Ys3jD5g4+MoMjuBTF5fwynwZdceF0bAFHJ+Km3jFrqHX9LCvJ4W9qaQw0VbcOvqjYdzZmcDJXBUnsmVhYeF1dLlYxUzFxr50VNVF2xpMgnqi4zHe/PaPC24lZpXVVi6XEY8r4BXPw65du+T1eohnvmPBKq8luUsn6sSJE4JOY6d5xAyh7BWaizwBJEm947rRxaV6UTSdmUhhj5QZIYCk5eTc0XFAuopWFOZTt+FY7rTQ8pKmt2ltfojpJ9lE8sUHlqxwe8i2otdRgo6I3hBmlcBnIg1braEWZkXx1Opea2vCaxrXo6jVQNlhp9HKpCGX43i4AT1poFjTBDDDuSJTVLGioSKtcS30qVP3JIFp1h3pfLGiEVypaHhloYxtmRiOLZTk4Uvt+bqrwBqrAQYsXJPZYy5vq4V71ZiDBV8t8ldjD2k7Du5H85qLZcDKEuQ11eJ5bVS5/Kxth5zPeIgOLx02D4slxRDB93lGiNTl/p68vIwP7u/D85N56VKUc2r4Wpb+9kp2Q5wOb4NxkHllpZTPKmvXJwqumfauxlUWuKPtySkuyEeGUji3UBZnQW2nDRktFHZEPXt4abLQRI2rPzTs7M4gFtYQXy7h8lIR2VIDMZNJ6wbqdKg04ImLyyLds32V1uDWzqi8iKb92sUlTBaqOD1fxGgmiv19CenoJdjj3tEMfvyeQdkOX6T2oxNAhGq27KC7ZIsDBZ9ZhMMjw0fruFsMSu3GuU9FDPQamiTnnz+zIMAYOh3UHzw0lFrBCLPajoykcXgkLSAVOi88n3TSWMChI0QjEpnn5JuXlpEt1rBUsmVAHHu9Vpfxk82F9Pq/+r69yJZslGouhjtj2NYTb14X9+zoxqdfGMfuwSQuz5ewlKsKxVtXMoJf/Z7bcce2bkznanJM6YiJP/zKeRy9vCwJZ+4/HbPwobtG8M5DK+mSua//dXRKHLCOWEicKha+lio2uho6ivkiPvnVo6gYEUxVTHSnY/K9U9MFXFkqI1utY0d3S1eyK26JZmN/toqkqWPOv18bjD/kPmxgtlhHKkxKy5sPWBEq9aqLgkNEsIE+6t3fpP1wLbkZXXx/F8bE7o1our8WIx03gTFEBtMRYrGAuvLtxjWcXa8baShu2qZt2qa93u1mJHbJiPbiiy8inU7jz/7dD+Lnf++L+PLRS7CdOmIRCx988z588E17rnt7n3z2Mmx24pg6riwp5rSAWlmvVfH4z71Z/JpgHX334WG8NLaEj339EqayFSUDSj+REkRt7WVM3gUAkoA9ZbWJb8CuOlfR6cp3dQVyYRJwtf+1ETij7hJUvn7hlTFKveaiOxyW7jAyz9CvZrIvkCIKTOSMGh56ohbsalkcfscI428u5PATR4YENEzfrTX69Y+LVMA8y0E8t5Ft6JmsCINUpMe9cmzU3F4DbF/RjSdR3Zr9bDSOVEh1dHJyybJCX1jwPMLgqaEzZGLZdvH5K1m8cSApvpXMgIBZVjJUChuLXDhrj2w1kH51AnP1KAOQibsRyKYNsNIexKZDBnpjFl7OliVuCSRF28fBbZYcD+eL5ZVU6pEIDvZ04UqxCN12MGuXZcwhjQlzdU6zjouXlvP4LjKxtDMHabo0rHSHEpitlTBXXcBUpSr+aF8kIqAVxteWbmJnvAdpK4pzxXnk3ZyaD5+JJFS30SP+MTtiPZTqNemITZgtcMxG55K/YQem0dCRd0vCwGLXXfl9ZyglzTO4ym/TRhqucJ0DZZEEYqGIxRRmPNS9RaAIQSBT1Vlk6/lmLkXyBJ4r9PJkUElpBrZFRwWswrmlhBGZV2hxIwbL304AWBGZUK+BlJHCUHjE36ZiK3E9G0t1yjmpsXF7ZS2EDqO7KbEcmIOaAEx0U0eYo7fCiETqwrJUzddQcksYO38FXYOdiESjiIQjsm/KAgXlCvYsBkUlOS448t6q2pGqaRGYpdUFzPKtMCkPaT7tukdYzc2JZxiL8fq6FZK7jGdolHn6u7DNmGbTNm3TNu1bX6PhGsTu70uXLmH//v3IRDpRbORk7acRuhHTkysAHVfdnqzYiuGe/4rGIytWzAhiss123y3sxdFA0f/dRgwlLSaVgHlltQl7S8CDvxqcT2Crp7XVMRRwZb3jEjlCkQxiwcVnm287CkM3BKxbYxO0zmOhr0jZDwduQ/lIrYEq37TuNFCr1hAKh2BEdeQay+gOZwS8oppfA4p55ozXItrpu2VdG4Zfe2p33YPe36TlrAGrrAeDaZVVGHP451mQ6UwTc048YWxh0bzuqwms3FpLhjEa1VEotmJqhjJRQ2sCWMgsKTUaxmP0PS1dWPfPLZXx7GQez03mQfEAbx2ZVoLaRfa+bPu+khpLALYP++z4AehkBft/EIb5b/EjyzTg+Tl5gl64vdZJZY5ZgRsE1m6pHDm3e3gwgfmijRcnVKywInfuM4YSAHJqRtVogmHwt/3JJEaGEpi4uIjpbAmzWRdU5AkzULB0AQI9ezmL58dyeOPOzhXnibUJvgi+ePLikozh6HgeI+kwDgym0J0IiVzO/v4EfvqNozg7X8LnTy0gVyXIXLHPsxmZ7CRkvacxfmaj7pt2rNxXMO/txpgrEWKThPrgqYtLODVbku/t60sIAKSdWX+17eiM4fBgEqfmShKL58tKZYHAG4JY1D5UnuGVybwwmI4vV1WzAXMSnofcgouuuIuKE8EP3zkoMklLZQddMUtkjPh72t0jaZEP2pqJYjJfw2Lege1piIUN/Njdg3jv/l4sVNRzMhM28emTc/j6WE4anGmsobxhNI0PHuhrblNdNx6emCriImWQQgY6w2HJaeRrDkoE5FWr+NrJ83g5omMxlEQyGkE6EsJirY6vzORRrtfRQRCNn4tJmh5mqg6mKjbSloHZShvQzb+4y5ou+0is0wB0M4wqJHnHQUg3JC9zs2pBtxKzSrFYbIJVXm/xzHcsWOXVJneJXGJSlwni+++/XxbpCvIIeaSADRhFmKQowvBSsuC3G+lna57SAKNWs0rSuJJQofqy+nnbQwUNzNamsCW2bcV2OkIpjMYHcLl0BbrnF2mZGPSTBcFgLCbm/Gye6ktb6eyI3I5Byqi290QnWv2I6NX7u/rxjYV5Scatd8sGC23YaKDqGOtmS5lQyyQaiEcIgvGEicWzgGjYQ76sIV9Wx+26niQTdceG26jLjcfzVa06+MZUHj9yeBD/1+PnJTHMuTUtUpkxuUkKONUtRimTH71zGJ85NYdsrS5SPWrBX816EmidXx2qIvqLpo4aUbBEnJKevO0nfCjbditlqhLjK+nKVzgtft41cE7u25IWpopXZtgJR0klxbzChZAOEF/SnViq4yxZMtrANQImks9bidp4WIEZmKmv+Jc5txtip6h2DbCKPzF0BMQP9sgsQ23PDb666tgCWj0yYByfJaNHY00SOehkpUNAtDJ/woQ9nRACNHgtD3YkMF2sw67qiIVd6A1HtsWO1nrFwYJj4fnzU0hYg9B0UwANweJEmZq/eHkaz1zOYrHkiFM0W7BxcraEg/1xjGRieHhnpwBpnrqUFXAJ0bLy26qLXMXFRK6K+SKdEE+oz+7bmsFAOoynLy9joeQgYnKODEzlqhhIR8Qx4XmhFM2dw2k4Cx4+9sIszpEbj4Ql8PDiRB4PZyt434G+DcEOw5kofuCuIXzuOOWMqrgwXxHUMx24qM+8E9zfBNHkKkQ7KweI86lZmpyvpZIjwA9eR3du68R8oYYTU3lcWigJG8rWrhg+cM8WTCyVcHw8i65EGA2nisHOJH7xfYdwz84e2de2buUMfvalSXzz4iJGu+MiV8UxTGer+OTRCewfTmNLV2uBJL0dqf47oiEBXtHoXNXqDExM9HXGEe6M4MpsHgMxF05pCdWih3QkiuPTZH+ysK+/BQzieaVzeX6xgrl8DRU6Z/6FF0h82W5dpLputpXcOr48lcfloi16jdRC3ZoI4a2Dqaaj9p3QhbgatfutNlKuEwzKrlYa19psNoujR4/izjvvlPcef/xxmb97773372RMm7Zpm7Zp3wp7LeBH0V/3/f5Xsx0yRJ4+fRo7d+4UMOLfPHUWRy/MIxKLIElgRd3Dp545jy0DHfjHH2jp0dK4z+NjizgzvoSuVBQP7BtE2DIwky0LI+FC0W06iJISZJLk9CyOXl7CvTsUSxeNfso/e/cBPHl2Ac9dWFAJTl0XRoj6OsfUZL9Yx+jrO85athT6jppmYO9gSoQ6KJXIZNzVfFp2oq23PHNO9IYn7JVLZVtJijLOqNdFRigSteSYhCpcV91H1UoJlmlJRyYHxyQTWRQPdMfxzKRKGK423Y8V7h9O4WBPAn90bLbpU290rjeSQtSwknnTl5VuJtFWfM+7upTL6q+0f8QY4ANbO/DoZKGZ1G2fWPpN3BY1tulXvYlxX7t8KiNVP8kc/I4+uMiusiOx2YHKRLYu+7h6RKMGNxTTsGxTb94TymoyOq5nfJ9+f2A8d9zHYxNFbPWbSTlcrT2mCWIsQ1GSM85S41XxDaWWYuEInFAIRrUGw1GJV9tx5Bqs2zVctm1Mhk2kkglYhoFoW8F/ulbEK9l5TFYcFFxDukinKiX0hCsYjYfQHY6jKxTH5fKSyPukzWgTmJJ1PFQbNnJOpXldhHULg+FOFF2+T/CMKnNIHqLhCruIxOMNxRAS9kwUwnVcLE2i5qmxL7kkWylga3QACXNl00C7Jc2UdBiXyayoKeA/ARwElrTmXM13xSMIReU9FJSFjLXq3yyakIElrIdEcqfSqKBYp7ySIQwrLHz0hHowZ8/LcegNAw2ngc5YJwZDg03GFAJEWIRhYYVNQSGyn/hU6bZXQ6GeRcboXnG92x6bLlQhKPiPxR0tpCHT3SFH1N3J/EcVhWwB89V5hCwLsWQMsVQUIbLdtDds+IwxIingg0aaLLA+rT//rebh5lpDq6OuOW1gFQ26Z0ke6bWCVoJn060Q0zCeoW3GNJu2aZu2aTfPboYMEJkeX42xwfWVV14RMOJ9990nzFlFL6cK8H7Ji8MrS43Gl/5rM5EJ5LosTClGU1Yw+FR+v2qdrOs2dG/ldgjGDXuUA6r4sPAAIL6qDuGzv60HVGl9Z+0+A4AFfeWYlkSpUYTny+BsZAJiWc3u0mb0aeJ6Qo3SpyEkS4xLmaB6tQmu4UduzYVtOyKtJA0TXh3lehGDkUEs2UsQYVTWJ+grEUxDQIXvO5O9b2tsBDmnAKexJDUwW7oP1x43G3hXW0XR0bUdV5vfrrXmmHEOYT4Ep/SnyBKuxl62DSyXQyITFJhqmlVnQzUc+AGSBgwnw7i7O4rPn18S8D1ZIGn8g/EOGSIV82Md55cVq0U7BlkaK4Kaj99wingIlVJNwAfBMbCOEA+ZqPrg7rWnssWqycbjZCwsQA2bTdsOGSBWMvbLOTXo17cATDwXBC68Ml3EufkyIm39yU28tF+j4T5YlyHWhfUj1oEqdl2YhAYycYRCJZSdOsKRGvSGAt9UbSpEOCgUHTxzZhJ7esJwNVNYRFhHo7GR5X+/NI0vnVkQBhYCNWbJ1jFTFNkc1ifeubtHalWPnl6QGHKP3yxMSRzWaeZLDiou5U1UA/PBgQT29yfxzbGsMMJzjoMaDVnmObe8fqdzVWFxSRgePnVqGaeXqQyh7k/WaAiO+cE7BpvNsquN23zf3l6EjAXZz/mwgWxJQzpKBpSWt67YXyCN04zxeMxsOmYMRrkjsshyvslgc0dfGsWai5OzRTx5cVmYZHZ2x/DGbRmRTKL0EZtx3YgC2nz4/u14xx6VP+n3m6pfni7gqctZZKJWEzTD2hffo8zRoYEWKJtMp5MlG+mQjmrVJ1kw/GuPsXI6gYTZhUqtjKRTRX15AcuNOiLhKCbNCFzdwGC0BSDjvBKEMlu1sVwj41BLoaN1TanGGO7tZsY0vBZfzi3hcqkk9W+RuQ2FcXdnF9LWSmnd1zuzSqmNKfL1VqMxvxMdoVfbiUjUEJ2goaEh3HbbbRKQk0JWdIg1plWCxBVvSJLN1kSvOLByvYR8nfS2ainV6+wMSiGEUJvm4drmuoKbl+4oS289HC4VL2HanlFIyjYnh6jBEhe6NpowPshdLlbyUDdhtzGxKB20AI8b6IyphT9EthWYuLOrD5eKRcyUi9DaaMKU88dFkF1lG6cLBaHZAHI10rSR7lolgAMmklQMKNeo36conz0iWQzITdeUGPFBFm/cmsFP3zOCjz43jrIPEOFnmsnkno6uiIkDA0l8/PiMMGhYYdLyqUS1XWtHOAdcaitZVQSUyiRf+wFwnAE7y6puPCXns/J6VInxBiyfMm619SdDyNeUNl9Y13FxoSLIyUzExLLQc6tFjlpzvf5CxIc/N0VmkC0dUcwWnVVMJf4xSSKdABsNyWgIdknRITPZ2xMPIScsISo1uR6qiO9ETQ33DCfx9cs5P2HWAtestva3KN9Eo4PD8VacBgaTFpYrrixSASBKEMm6ht6EJcfHRZzzQVAOF9qFso2ZQg3zJRt5W1Gf8RzT4UnGLIz2hHFpsYJHT83iL1+eIhcRRjMR/MidQ7hrWy+OzxRF/oeAjWTIFCeiUK0LIw6BJr/4cL84L58/PS8SMpk26u2OiCmglB2dUWzvjMlYSV3H+fvT56dEfoj3vVuvY6HoiGxQfTyPeNiQ35LS7U07O/HH5zw8V8wLGIpOC23ZcPHY6UUcHkoL+8tGds/WDuzqjePCfAmd8RA+9fJMk/aO45nI1uRELVdsLJVdRZHepluq2HAUcw2dwyfOzuMvvzmBhZICziQiJh6+rQc/cO8W/PP3HcQnnx/HXz13BZWGgapn4PhUAXds7RKHPbBvnF8QkApfwTU30BHBqek8TkzkVoBVCJbhtdKXCok8kchk6Zo4QwTe8Ldhy0Q0GsVwb1yuIWrDS/LQLWC+VMXEREWCIH4nEokIIKcrbsr5Y8d0q3PZx9JrwFyxhpttT8wUcDpXRVfYRLdhoFL35N8sYLxjmEnq12bfKY4QEb9E4AbGjpeXXnpJ9Az5+tVf/VV86EMfEgQuO2J+6Zd+SYqn3/Vd3yXf37t3r2gmfuQjHxE9RiYkfuZnfkao6QYHVzL7bNqmbdqmfadYsH4wpmFsc73G7586dUriGsq5dXV1oea4+J2/fk7An72ZWJN9MFus4r999mX8wMP70NOhCtPFio1f/G9P4Csvj6Pm1CX2GO1N4nf+0cPoTEZQrqk4I2iwCxxIxgKf+ObYCrAKx3Lgn39GgVv9hKq8X7OJXmXQ1vyuSP343WgEptO/pK/Tbuv6qgQ6uA3cN5rBnv4Efuur51CyPZTaQq8gYaj8p/Vx7JJA9RkKLy5XmkDx9v04tgKsMJ5gXtJzaojEwgiFlD8feN9MYv2L+0fxK09cxMuz7MJs7YNjoU+9IxPDfNnFx0/OraJ13gCctM6YV6fdVjNRbgQ8af/CRsBaYqiZhGPSLewzcT4+UcBgzMJkmQlF1fUnQBVLR4ITIkkm0nxr2N8Z8WV3Alr01Q0bap5ihg6SJ5d8lpaYv60iGQWvRhZJVsQURDp2seahwPD4Gnh9xnRq/tXveR6rdSBb0xE3Gyi4qtNQUvf+mBm79sc0JKyo6HITqBInkMzzMFYm2wrll1TiUsAsBGPpOjpME9FGHXnbxqcvXmTriwC29yTDeHBwAPFIGFdKOUxUHBlDyrQEjFGuu5ivedgaj2FXvFdiuqxTRlQPNRPTQvtsRVFwKRGUFrC1qelIGlEsOCVMVZdRFxobTcnbNCg/W1ZgIhYuTAu9oQzqno1y1IXtKjkif5KE2ZXAkV3xkQ3zMgSJdJndSBo1dBi2AGQqZFjxY1o2pfDfZDMpiBSRXw7xEWkBbiiI1FkUmbPnUKyzB1ClRMk822v1Imkk5R6bdeaQQ1bGVG/UUW1UkdBbvitZV1zPEdL+lkSwBtNjfqQq+RsWaQKr+4UrNTLuU/2nPmtIDscIGQiFw+hIZAS0VqlUUCqXUatVka8UoLkaohLTRGBaLOEoEI46hvaiSeu/m22SmdJsKXC1imOeFNu0RhiaZ9wUsMqtENMwnuF99mqZLTdjmk3btE3btG+fhuJ8Pi/NxMxTsXjG5zsBqC5sAY8EFqzjVa+MuOYjkGUt5zfbmfHoO5MrnzniNh9/lfSOqukwp9/yGbglV6tKbjYQJ1UwXdZjVh5bsBZLbCP1h5VrvwLtrgTKBMze4nsiCldzUXKLMNih3Npyy58PJIeuYUEtSvnk6semzqZqU5qtBWjrg/LjiYTEfe0Wt2LYk9yNc6VzAkJR26LEDD0qJdPYFe5Azl0QnzwtOWXGD3Us22Teax9L25H4NQinLlBh339qfVHXKDO6zhGSnSWyspExGa4jbFYxmY2sw9KiCUtFzWogGdXQnzGRCBuwQx5uG4zh/ExF4k0FugF6YiG/DqT2TODK3p44np+m2KdiyZP6kV8vohF0H46YiOiaMKMzfiHjZDfrIXUld7uRiaqAoeGRPd34yrlFJUHKmGgDplEa8+8CPiHjB9k/BbihgBLDqQgmyapOZlA/MA2kcoc7IsKCQhadxaItcW9vMiwAjNNzRZHrmS8oaSn+tq6ZiEUMbO+PYXq5gufGFvHU+XmUG7oARH7wrkG84+CwsO4/fWlZgCOsrZD5nnK0CwUbV5Yq+OkHt+K+rR14diwrzccEWwTGptwtHRFhq3/Dtk6Zr/5kGD2JkABgyGTPY+O88LesGZDBn82+mYiFHT0xvG13N7750jS+PlUQfkMeO2ePc0OpodsHk7hjeGN5oG2dUfzYHYO4vFzBcDyEP3xqTEk6hdW8zeZr0rRAUMrSkgOHnSFtFTdhQvJZYnhvsMH3Y0enMF1QNRoCgw4NpvAjdw7i798zjL29cfyvF2cwuUwWTeDyUkWAKAEohcZmbG6v/T3+nXU0ssC0g1WEMICySSFDJGT5O14TvE4IfiIT6nA8DBthDGb4fGRDviM1GqNYwaILXKlkkYi2ajSs8UV1XRhTCY4KDljdF0IbhapLWS/FJnSz7GwxjzOFPOKGiWQoJHH3XK2Cby4t4C29/XLtfqcwq5RKpVcNvv92j2duSbDK37UjxJuNJ/Hy5ctCKdc+8YSk+N/yISgB7MOTbqIA10XqtXydaFN+rmAt/HuxnhPt5I1Mddl4klihyyT7rNcFqNL+nWCJ5kOQyzgBo4pcQ4PueIhZYTR0DxEjhHKdiVaFHGYxXTlHKzvrZNH3NIwmO5EJh/Ghka34xAvPI5dJokoErNDAKbep1RG0jtSQmhoxyf02s4S+fiPBMroHElvodR1ddhGXGxEY4ZbsEZN9XJCO9Kl5+t4D/bhjMIXf+eKLuFALo+zyuHSRednfm8AnTs0JYKI3bknypGDXhf6M1OKk9haHUR2kOCVR05CFjYX0ZMgQlpPxXAV2PaBC04SdRRyNVRQp7XTfK68Z1eG5+qHM+v+/e/suPH5+EZ85pcAS3ORLUwUBa3zw9j68NF3A6fkSemKWoDs5tuWyLY7MXUNpLFUcPD+R39Dt5MLDz967txdj2QqeHiPa0pQ50egk+4mq1b/nocRMXcAdRyeLCgW5UjJxjQXOMh/lXGCDxZdpPZGUiVvi0FDaRcYlIBxN6M147gm+aV9crywr6SAuxExykw6O8xg1gM6kjh1dUZTqvG80zNuU9FGFhcvFCl6YPoeP7DqHRcQwm3PkPqeTSYslDHEGA7o4ImnJgkIHiRJAdHzaHQlqHz68q8s/lx7+53OT4kjs7InL5+fmi5jK1xC2dHHoSKPO6+muLR0YTIVxLKshX3fFsSM9nFC/VVycXyjhzFzxqmCVQFvxrtEO3D6UkqLPE+eXZF44bjq2Qx1hUM6SCNmGYUAni45d91G7DZHt6ScTzPlF/M+nx+C4nrCk9CZDyFUcfP74DLZ2UxLIw29+4aw4ogSwF2ZL+E+fP4NXxnP4rR881FykxZFdda0LSMq/3tqNTimv22TYRE8yJM6sZepYLtnoiFlCs9efiuDcQkXQxefniqIvGbMMhCJR9MV1lFmYcB0U5uaRsz24egiD0Thcty6Of6tzmAAewHEbV5VXejW2XHNxsVBDJmTIfUGLCbrcwIVCTT7n8+O12HeKI/T888/j4Ycfbv77F37hF+TPD3/4w/joRz8qINA//uM/FmQu19dHHnkEv/Zrv7Yikfyxj31MnB9SznHO6Dj97u/+7k04sk3btE3btFvTgsIgKTevF6zCpAMDUa7hDzzwgCQbaBemsphZKomczZW5giRZhNksGkLNqeHF8zN45K7t8t3f/uQLePToZcTDFtKxkPgmF2dy+Mf/5XHsv22oyQ6wlv1Zw/ii6moP7N9/6kSThW2NkYXCNH1tbw0xS8NQykDRIxDZQjJiSfKMfg99ZRKeERCzHhsgfZh37OmRDqxqbhGfP7eM5+YVcyBddeVDtLhV2J21mq9N/CD/oOgXySGt+g5jjY4QgQgeIp6NOS8iifPm/LuU69Sxtzsufv9vPLwDnz52BX9zbh5ZhMXnTYVNPDSSxpV8DZdzVXTQVw4Bk4WaH0utBKwEePreRAimTmkhHldD5CPpo81X3RZAIKDVbIvd2tka17UNAg5Ktv6be0bw689PYoFgeF0TRsvFqovBeAgPD6Xw+Ss58YEz4o8rzXcmle7vS0j8NRCzMFEi381aUz6mAuz//T1d+IsLyxIbdIQMAVoYHttFRHF+zdgptUP67pkK2VEUAEnFbNdO2tPXU80eKrFr6gS6eLir28IrSw7Y+yCAFbKTmjoe6othwa2gI2TJi8ZjvFQooVJvIGFq0j1KGnDprmx4SNNHDocxU62ipIcx5kXBHgzP9XCxUsexubN4MOxgIh1Guc5kHDuBhW8HIcNAznEwVyUTCptUqqg1HAGj+EI7/vypazptxpAJKaBZwa1iupqFpRlImhGZx7ka6Z3ZFRkSGm92qUU9Cz2hToxhHLbVgO41EDZCTWaQWt3GopPDVm9AQCsbmQDUtQjCegS3JbbjTOmiAF0Yn6uOWuqZW8IA4zRcAfPoBgsjrSINQS8mTExWp7Bcz0o+hFJEZEqpNmqYc+YwrA1jxpnBkrOMBplDLA3ZehalWgkjGEHaVAno1YWf9qttPaAIm3aqktY2Rb6Hxx58T5hnEIWtVeV+Y8HL1Rwg5iEZY8MNGWRjqJVslEslLC0tIpqIyvFGk2Fhw1yv0Zn53pstA0RWlQCo0jp2HnMDDc0VdpXXYkFe7WbJpP5dUGa/2rFuxjSbtmmbtmnrW+D//12BVSYnJ3Hy5EmRJ+AreK6zdtKq0LSaVcWvRCvm4OftQBX1nqrxBL7URuZXQla856Ky4vP27bZ/m8AA13ah6wYsAW4ov1x9v/03q5lV1Dbp/7AJOal1YHxyHH1beqH5TB6rfuCXXdblx98QmR8AaQgyobRNabEMK2kiGo82gSqqkbKBqBGT8XSFM0hYh/DipReBFNlf1PVABryuUCcWbMpFeOJXNXSyyduIGAocXfRZRVoxjYmMFVE5dJf70EVqJO+QrU/VqaQGoXMuFLNKS9iH0pOKlTGIfdR5JWM66w8uCjX6rdqKff7gvl6YWgOfm1iQuIPsDZMVG0ZSwwf6ewWwcnS2KP47awfCYFirS3PBfczZ23V8/NiMajJuk7sNuhSEYabh4a07u2A1PHzuzLywcpDRvlZSsjICgl8VxHJsybiFHtYYFsvQQiYaNV47bQCnlX2crauFv42Y0kTcnstnrL+1K4qpXE3iWe6TsSnZzcnwwZia7PHbfZZ1NqBeyVak8Zkxf9EmiN1DRAc6Q5BGWzajkslxvqaDYT3P3cVcBS9OX8DLpy9isCeNK4tVkSjqSkaaIBQy1hdrdWTZBMyYteSgaDdQdOrCKBLcA4zTWad7qE3257Mn5nBmvoRd3TEZPwE4ZCrhPrZkIrIdsuIQ+MJj+6OlOuZKHnqSptRLaNw3mVieu5K7KliFxgYNygbt6YkJi+z/fmFa5H7qjGnqnjDJEPwyt1SV3ETIMqT+FDCrsN7RHbcwn6/io0+NiQrAls4ohtKqOffZsZzM/5GhJH7j8UvC9s+O/pzdwB8/N4mjEzn85/fvETYUmtTe1hnnejUa1jQUM7yHrrCBhaoiEmBczUfHlmQIo8kQ5mq2MOdM5GqYK1Kui0oHSXRFlYxo3bVF5qVMEEo4in0JS9QSZL/BI0hYldQ9KY3zN7FOw7j1YqkoTRgxP/dlaRo6rBAW7RrmajUMRK5ea3s9NRSXy2X09ChVhNdbPPMdC1a5Xj1EUtHxJPEiIKXc+vq2K1MbLZ4SuisFmAih0lBUu8K/EnTykJ6M3UxeFaY4AvbaYrBQm+mw9Bad0ZK7vHL3bbRuXDSZxCIIAgUPXfkQ7tl3B+YbBbywfAHVuo2wbkpCi+jelJHAVLWw7grHYe5Jqe5HIiqTYQeJmI2Cyw4vHWWXSFvFQsJf70l14rJmY6qiGA5WpH1XdUetHDuwNQHszM3gDYe2469mNBydKaDERdXXe0/FLFyuOvilb1zGtmQEjwx34HsHG9i7dyvSGYWu5MP/PzxxURbGuKUu7YFUBFbJFtowatY3XBbdlewMF8dfe2Q3HtreiapTx3/9xhU8dnZB9psIW1L8J8iDzsb4IsE9arAiU6QrevRgztdLeKxgYPET4SzgzxdrePTMghT0E/5C44U8Yel4YSKP33jXbvz7xy/i1HxRwBTcDsEL/+zBbeLQPDiaEXYWStusxpLwqiMIhGNbLNv4N2/diX//+AUcncwhV64JAIfzROOawkUkWMjYpUrATrszw7yoT0CzrrUS3E38Uet9X8dvtCOK9w+nVGer5+HIYAp3D6fwO0+N4fxiGcmwopwu2XWcWVCa8LKo6xpSUVPAFdweWVdyPuiF54iLaHtHZdbR8Om5CN42ZKJUK8OkGFeFep+UcVL7sExTHK2xXBXjuaoAUHjtDCTDGE6HBZTE7W/vai1wROaSMp6OAx0N0tBdydYEeMFzv7s3gY6oibGlirC6PLC1A3kb0E1Njl+dfw3piCFAI1LHXa+RGeW3vmcfvnE5hyfPLeLxcwvCtsJ9svvZdupC5efpOqI65Drm5yOZqNDx/7enxnB5sYx42MTyeE6czkNDSUFzP3piFo8em5Hx8Nok+IUgNyKkHz81i2cuLOINu9TCd2hLRhhYqH1JB0zmu2yL1uJOH0QW2I7uGA4Pp/DM5WUBrrAYQ6ANpYx++J4hvP9gv+hUfuHUHP725WnlyBm6zCuvke860IdIxBJdSi8aRzrewL6MhuV8AQ1VbUC9TW2MTCu8mA8PtjokboaxwMBnT3KVfiUZj0quK59nXuM+bjVH6NUyq7z5zW++auLi0UcfveY2iO79+Mc//qr2v2mbtmmb9u1qr6W4x6CQr+tN7s7Pz0tMQ/rOPXv2rABLRkOm+BT0FQNQN32ipUJVnLxf+sOv4pNPncMPvXUfPvn0efGr4hFVpObfOxMRXJkvoKenhFDIRI38xP5zn/shmwT9811tXT60z7w0edUxk946Ew/h+3YB77tzFPce2I2f+qtjQvnLZCEBGkye0a9nl9XLk3lJya7u0iP7HYEqNEp3zi3VUC00UCUrCBOPEWq1KwBsIqTjh+4YxP86NoOaoDuUH8/jcVcnnNcZ88PpGvbGXAzv3offOjoj7CiKdVD5mN0RE7/x5CXxpx7a0oEHe2PozJbx4IN3CpiFSZ3FiotfePy8sIgEPvlwKoypQk0AJ6rzUwFoDJ+u+rffulP8qUu5Kv705CzGCG6h7KYPuE2HDPHzl6uK5U5or32GyPVkkVach7ZYJ2CN6Y1aeGwsK0AVbjsAEvMYp0o2OkMG/tH+Xvzp2QVJtDFVy0PZ3xnFO0cVO90jI2l8/NyiaLWvAdH7gGT6hwcyMfQcsPDfTy8IC6XjunLs7OiiLA+T4gGwhbiYkKZL8izUpLom04afBL/GLScyqG3f4xjIIpMM6TjcbWEkmkDWJgjFwOGumBQ7Hp2uolqvS+KdtlytIe+6CGkaqmQrJdMKyx8N1ezBJFvWceTf0yVd/mzBKAxc0ZJYSuiwnawCY9k11Ck/oyuwCs8FQSULtaxI4jQ8G8sumSxt6XAVuRwpBFBfvJVUKrgVOF4dCf89fsfxOE5TOpB7Q2m5T/P1MrLyXcrVeAjp5LbxwVH8T6OUK6WMrtHV0GZpM4k7kvsx5yxiwc4h6xSQNlOwdG6LskR5kRoKecxTqJngcVDmp+yVUXRVQcmBi6pnI2nEENHCqNSrmKxNYd5dbOYZiPWQ7zYczNqzSOpJeQ5ZWqgJPLH8liJe2yILpEVWsKrQ+B7ZWHjuCJgR+R4ptlhIgIw1YZEWKng5KY61rmE2ARhI6ClY6RAS6bjE3HbVQW42D89oIJIMq2fjCplc1YtNNpeba+uDdBR7zWtncgnimVsBrPJawPe0zZhm0zZt0zbt5tuNsN9zzSFD5MzMDI4cOYLu7hZjY2BrvUr1DkGn+cYSLC0Mk1AHn8ZtNdNZnet423vrr26tOIrw6dVfbK/R0HciI1ulWMPYuQns3rEbiVRC6kWB5GZTHkiAwf721pRPyFTiSwwKI0NI+Wgif0O/mZxwLWOdifWkmsgarpyPDc33wSiZNH5iCn2ZfnT0pZCrL4lfFYCSKO1DAO6sMyH7iesphPNhdOgdIi/LWhcBxzO1afGV6UcJg59mydyS1S9qmgJW4f5ECUDXsSe5HTsSI7KPo8vzeHFpTnxsxnohgqd1gnV0kW5CIG0oKgEq1vTqAXPeikMSpycRqqNQa9XWGM+QWZ5e+uPTSxIzpPz8b9SXhb9ULeOf3r8F/+2lGTw7mZcYjcYY7cMH+7ElHRFwy23dcZxbLAfkNE2gimLm5PkHZkoOfvcdu6QW9fkz85gtVIVpnrEaG4X5HWnG9JnV2fzaYCxRJ6BEScySwZM1qmrFWXlhrrhI1c7b/TLJx8o1o2OkI4a37OqWmgYBG/sGEnhkTw8+/twkHj01hz6/9sFcwPHpgqgWhAgmJzAgZkmzK2Ouzrgl9aOSXRNgCGVuGW8FVxdjs0+MGfjl4RCK5bw0w1yxCVBnbcaQ883jmi3W8LUrWVzIV7FYdfDKTFFqXltSEcX0WnFx95YWszljzVemC+iKWWpuG56w7zM3wFrBcIcCgbCp5cxcWRhXslU2t+jSMB0YwTxzJVuAGddr9N1//uHteOe+Hnzl9CIeO7Mg996RoZSSVm14ODFbFPbZrrAlMS7rgKOdUYR1DR87Oi3SQxwra11T2SqODKelifupi8v4s6OTuLBQlrolj4skLakIpNb06ePz+ME7lAzLzq4onrmi4sRAwoh/5x1BpYB2Y1P+gc4IvjFbEvBXX0TDXNWR/MT9vXG8bSgl8/zKYglfuZRFuVoXUJMAcRoeDvXG0dcdQ9YOQ48nkGw00AMHZrEAr8H7SdWF5ekV4LQ8DX1RdR3dLON9QQYbxtHtxmYH3vtka3qtxnXoVqnRFItFAWq+HuOZWxKs8nelh5jL5aT7kACVgFJutdHpaBuZ3J7t73EBtbnk6Cyorh27WjQVzRqTHXwYSOdLwL+iaUgaKTSYLGK3FFkrrkJrJFS2pLWactBrdWH/4f1yvCMe6c6As4UJlF1btjEa78VgpBMzM8d9SmP1cAnAJ4oUhPp8Dh6fO41y2hLnQBg6tDpCRgPZGpNdOrbGU3jP8CjsRgO/d+o8cjYTO22dabo0SK5IlfjpJPn/tFvAu+89jFgyhbfE8kjGPFxatuG4gEXkn13HNJGtmoajC0WcXC7jjV4ItzVUhyJfNII7Vl8dZCRhJx+ZNeI+OUrEMvCB/X2iCQf/3z/74Db86J3DAmBgV+MfPDOGr19eFurwAJgo/XvyIGwBOTa6HPm4pswNh8YHNNGXox0RAWUQeUlpkfbzRiAK6b24zd9852586fyigFqYpD08kBTGjuB4fuLuYfzhN69gttgm6STagiqxS/vi2SXcN9KBX3nzFvz1Uy9hqqKjo2cAmqljOm8LCpUJfqI737KjCx97cUpQmkSwch6bV8QGEkCtK14lh4muFMlIi5qEnjhgPCb+9m07u1ZQudG+67ZuTD83iYtLFVmYJ7JVmRsmzvlbLrjKsVc6iHt64wKEIKPJiTkmZleOhf88v1TFzzy4DdbZ8wLWUYApon8bMja94eLszDKSiTgODSbFMaQmIJ0XygSxy3NvXxx7fX3EFmq85fvRmas5ZC8xhKUlmBs6amQIIQtO3AKqXEh53TWvTQXKIF3djRidoQe2ZyQp/+JkHju6483i0B2jGXEcp/JVYfHZnokLKwwdUIJ52IlMdpmuhOp8JmqYbDccxzcvLmIqq663gI2HDiZ16k0beOrsQhOs8tb9fTg2kcXZmQJiYVNAK3QG3ra/H7f1rwSJ0IH+/jsHxcF9biwrCOR7t2bw8O4u3OYDW4ggtsjkUnVFlohPhHTMEgaTuVwVH7m9T5hXuI97RztwW28cT13K4i8unFLXpt+dGjD/JEMaHhh6bQja1cbOXQYNRHW3M6jw33yfn79Wu1WYVXgPMLm7Plhz0zZt0zZt0/5P2fV0IvIZfvHiRXnt27dP5ExX25belLAtMsFCNjQlo+ErgHtArmTjC89dwldfviLA53hspS9Df4P+RHciLCAW+k30SQkO4DpHgG1M17C1IyIAGMoF0QKpxI3sHbuTeNugi/e+8TB6e3vlvd94zz78/pOX8MUziqFwZ3ccP3bfFjxxbgGvTOWbDH/cdBDT0K+k/e2xGfzHrxGE0kBENMIbKJcdxWiSDAno4p+9aTves68PQ6kofu+ZMUmMBN1LBC3wmMpsNVwP6u95uKvLwr1H7sRMycWbhtI4NlcUyRpKRjKRNpmryXxxfH9+fAbPd4TxrggpoDWhkqZVhB2FIIGWj8AYqD8RwkzRkU40boPWHQvhZ+8aFt+Oti0dwa/ctwWTRSYDmbhp4A+OzWCp6ihmleb2lJ/N8yySn83E7trAhrI7TMpKfCo00h7uoW82XZJxtSeiBAAD4Fy2in9woA/bkyF8diyHC7mqyAHd2xOXmIz20EAKLy+UcWypLIwlwfVKnz2IcDhPHz0+i394oBc/vcXCY6cmEe/pRU93DCHTwdll4EJOMUfuzVgIa2F8ebKIjrAC0DDBy2Rr2x2xvhQq428NwuDI8xx8jdf1SMJAwW2gPxLGWwY6Vhwvz9NoPIYLxRLKlOTSdMxQxsqfSgJq+H3KGVEOyNI87EzE0RUO4TPjS82OtPbR8fI6UTPxhv4uTC3mUQn0lEQ6h0wnQLLewHzZRiISx0AkhclqEcW6jVqjLiAKgkBGIx0I6e00+CuNgBNFNtpi3ORYmcsouqSyV12NBLgIr4pfoOAVE9Yod3VjPizzHYPhPhTdCiL+GIPu3ZSVxJKdlWaaiBYRoIpif+V8UJ5HPZd4Fbqoo1gvwzQIIKkjW881OW4D+SAWhXgclAKyYSOCiBRNEkZKZJlrXk22xWMhSCWpp9bkaVh8SSCFqlfxAS5hAblEtFhTckn3TNQlT6PmTk004wZPCjVhLyogFxZ1ktEO9GzrQ95bhqOp5oVmF63/03rFQ926MWm3a5u+RsZAMeyyzqN/x8Qz7WCVWwFYs2mbtmmb9p1i19tQXK1WRfaHvggZIilJcfUazVojEKTmlQWOwtpJsJ6vNCUD2GTQD5Zq8ZeUgxgwra1la1tpge80dXkW+cUSDt1+uCkPGvESsFFpglPY6BxCBCVk/R+v3Z5IBHmeAF16hrqa4BIBu2qU7yFgxfN9m4yszwvOjPgxq5lmNpQJ8oBqqYqdW3ajr68PtUZVgAWVelmkfkJGSPynurDYaAKGEfBJJiR+jdSlNOXHEEATzENgIda/GH00XER0VWejT9Yb6cLW+GDz+3d19uJgugvLdlVAKseyS3hheRGuRx+vdSwMiUI6fXB17EWH228xyQUn0DQ8dEV4zpVnxMI3m3lTli4sE2Tsb7cIj9klC6GDn7tnGK/MF/HMLH3IugApDvYp9hEyW/7k3cP4T18fw4zfbBsw8SeSYRg+mGDOAz57OYufvGcQO7QlHJutorN/CJqlACCn50oCsCC44a27u/CVi8vS8MrGXcauEGUHDyHKsFZ9yaXVp85vSuYxEgzBz7l7AuPZKNETM7FUcvCmXV3yare37emWWPrMbEkaptlASgZU1iLIkM8mWGFNNDUsFmoY7Yri0FBaACf/3y9eVFK6Ky8jLJRc6PFOdKTKODtTVPeW7sHzaympsI6JpRxsU8Pu7ijK1RSOTxakKZfjTFiGAD3u2dJiPhGAd9uxs2bGWhLj6Dy367/P2tnFpbI0esctgqFUgy/rf8HveO10xm7c597Tl5Tm5OfHc1JjCZjn9w0kJf7m+AncGUqH0RFVqgmlqqvkYkMGOmMhaRZhDeniYknY5y8tlqWhW0BXDY3EKlIfZqMG55jsKgFY5fBgUlQZXpkurgCr3D6QkM9W2109caljnFyuSnMM2VQOdkaxK+2D39iYW2eNpi4SSoxpIpqJTo3SVS4eHk6jFGFewcNoIoSdqYjUaJ8+PYWs1A9FH7lZp2Mu5kCU9cAN5ItfhTEvkjBNLNk1RI3WOWMDh+V/9lqNYMjg+XwrNBTHXwMA/9vZbkmwyms1Bv/UE76aTUxMCFp3x44d2LZt24Y3V6BdHFC2bUTVRgcoSAqu6KCRrp0wOqwuLJIaTdBzKmFJNhUu8KShm65NCIVud6h/hfbyeubO17C7ewdGRlo60vyT4JSRWI+wqzA5ZOkmik5VbnIiVYOuOlnMNHZuEWlq4EJxDnm3Ap1oTsrk6BbcOnWgXexJx3AwPYytiaQcH7u9PjQ6jE+NT6JIpIkcO7AtHseLS8VmkrTdJeIMDfQPIG+G8NETBLqohI8RBbbGoji5yIK/YBTFUaQuesX18JQbx/y5LMrny+iNhTCSDglikAnlQIMtSIRzMXrvgR50kjYNnsjpMLm92rgg80X7d+/YjW9eWcaXX76Ivy5VUWKTqK+f3pyo5l/WJj674ko/jTUEnuueeBg/94ZRTBVUAjOgHld/90TKhAUCMlFQY+43v3IRS0ygex6+MZbFn780jd9+zx7cOdIhQJvRTAT/9DNnlQQNuzVXCbdXHRf/+tGzuLfDxQNbkvj5h28XR/XSckUQv+ww5WJF1OXYckUS9l0UafcT4koC6aqX2oqjd/wks1MjMwu1GzVhJXnT9gx2+hRy7UYmjI/cp+NrF5Zk/wRxUF+P+w4WW//ihe1pshAvVV2Rk9motkHn6Mx8EZGQDq/USr4Kq5GmHLSZhUV4+TkgEcfuZBxd0SQuLLFwoOM9+3tkXARYtJ9HOhgEtewIGU1tP0obEbBCZpjAMaADQSdubxp4sWwKGEieDJ5yEElHd1sbEOZGrMlQ32Yc5+EtaQwWIri9P4FizcWWzphco0+eX5Q5pX6i64Nm6CxP52rSdUqqQjLwSIHC7zrVAiS358m2AutNRfDz77gNT56ex4lJAlBM3L29C/fv6l5XCovjetf+Xrx9T7fso30+aaUa6RcdHBpWji3nh6hmoou/cWkZv/+1y9LlTaND+75D/eJAcjsEQvH4eF8EAdaWGPDKC8+LnAHRnV1dXchkMq8JERszDRzMRPEMgVE1VxDIZFNh0ef+roR8ju8gZhUmd18ts8qmbdqmbdqm/Z8Bq1A/lmwq7Ly49957kUqtz0KWLdUQCrE7yRYpG0l0yScKiEBfmr5Zsewn4HQNsXALxF8l2NjQ8aEHtmMsb+P4+LIwFNL/qNsOdGqS1w382se/gd/+66P4yXcdxE+96yBGe+K4OF/acPz/4ICJe+++d0Ugzo6uf/Vdu/Gzb94uvkpPIix+2fhyRZI/ShbIB8yzA41yM+x6qzfw+09cEr8kaQHRiCUA36WyLcf34SND+MDt/djSoRLf793TgwtLZXzl4qIkM5l8pfTR9kwET47l5DurYQb0YXfu3Yc/fmkGnzw16ycWIWDw3d1xlB1XUt9Fspv4ckOnlyow4hGMvTIl8Q3BJklLl4QMAbKdbYlT+urdMRM/fns/crUGMhETd/cn5bjbjf4v2VYC+7X7R/Hk2DyePDeJE1pYzq0cU9sB0OcXkLi+MqHMvzH5R1CF6lwEDnVFJWn1wgJBz2306b5/xg0znuG/P3VxGY+O5xTVNIDnZkvYl4nil+8cFJDyzx7sx19eWMJnx7IyrtXE5Dz6U8sV/F9PXcKBxiIe2b8du4b6YDdczFVL6I1U8YYB+m0WesMJ/P7xRfW7JhNMW6QuGvdBcl5bBVRRrBY8dsf3hfmNhOXBNB1Jph/OqM6zduO/39jTie5wCOeLJQFQkZUv51CKqMU4EySuix5wsVTCom1jrrJxoEV5JLK30NgAwuNoJzp36w6mpxdg1nXxzzoTMdhWDIVGDR2hMEYiXU35n8ASRkRifM4dCwUseMj50oC00UrMkdqdUkFoGLBIpx4BbBYkms0bpFxOwvILETdu2jpyQWHEjBhSZgwxU40lrsex5GYVzTsT7Z4qLUljjsdiU00BrliY8a9DOc9yEVEWmbkDNiy09hfTEjAME5VGSUAkZFuJ6nHJx6xnAljRCMDjWVgrORXIBZCzBe3PTM9F2Sui3mDnr8oJsYUphqR0Oa+eCnnmUqZ2fA7HJk8inU5LPMPXawVXkOVF2HDZgRzkYnxZIHZOf6fFM6/XxO6mbdqmbdrrWQZocXERL7/8soDX9+7du/G640vZbAjECHwF5SE0/2v/lC3AuhdCQ6PfofLJAmButtw24GpV+Z3pkZnNgHOVZbpSqsGr6bjzjjtXgDvpY3AdDvw7+geqYVMx8q09NAUopu9BH4Z+A2tNyq9Q/jf9GgJe6NcE/kaH1Y2cS5BHS3KH9SYy26mM8KrJoc+YTKIn3I2l+nzzd6ZhIYKoMPkF4w3GxebraFcIlUIFU9UrMidkgRGJI2GxI3N+S0aIv+kJ94hsh9uooyOUQsZaCxwOGwb6o2rdfrB3ALuSabwwcQVjlSJsycV76A6TpUXFVl2EKDd0XC7GUK2v9HGYwyVPn0j9sJnBNPD+kS50hgk2WB0f8F+szXnCrp1zXDw2N4MFW9VoJhfKOLqcxfuH+3F3TwZ3DaXw62/fiX/91UsYzysmm0QqIgwVATBZN4FPXprHyclx3Bby8E/eeTdikTAm8lWcXShhlw/o35qJSt3hb07ONxsZghoNQ0sBA5k6HMdny2zzJVU9UR1G0JTq2AT3AJ0RU+R/7t3agbt9lst229oVw8+/ZTseOzUvjCoEybCxmNsJgCrBHeJ6Gl6eLEodyNDIeLH+/cZ3n7mcRTLq5w1knjV4lEsSALyGuVwRESeLyWwEo7EEkqMJXM46Ehe/ZXcX7h/tkLpM89qlpG5vHF+9sCTvqxoNhNmFcT/HHcTN/C5j0j0dGsaqJsp2Q5qO5XxokDzCtSSANjKJ8fyG+MDYPMJaG2uQR0bSEhcSNMO60eNnFzGcCGO54ipGFEuXXMBMribnVxrb/Wb5ptCTUrqSeh+bfQNjI86H7xjEcxN5HBMQEHCwPyEqBkGTTrsxJ3J7VwwHOqPSPE8SgtUx7XzJxVDcEvYZjiFiaFIHOblYwd9eziHjN16PFRxhTd3bERZWUUNXOQWGW4rAx0McLqZPn8DiOaNZo+Gf65FA3Mh870qk8M2lBQGsxAwTjtdApV7H1ngCXaH1Y7nXKwC/WCy+bms0tyxY5VvlCDHYpu7h7OzshpRyK8eh+zq/7RjVtsRDwCWiAWE9hHK9As1ThHJ0jeiExPQELEMBU7LOEgp2HhErIt1Hqn9Ipe1qjQoW7Bl0GN3rKwz662rPQA+2ZLasO17p7GqjA05YEfRGUpipLIujFBSsiZZNWTF0h5M4kZvyj6FFsWEaxOkSedrAjmQai7USTuXnsFQrC7XwB7b04GyhhItFUsW5KHguOiMelip0ulpjDyisB+IxfOziJLI1R7THBOXq633T5Qi63WiOiDkD8w0dJy8VBORBXTqZAn/DpXoDqXgYlkV6OKAvFcEPHuxH2qcsvx5zHQf67Hm8uctBZW8vPnd6ARUW99smnuNaz0gn908f2iZdqhPZikjsPLyjS9CTWzKuICuzVYUSnVmuiEYf0a/DmaigWP+vx86KVEpw7TCJvlh28EufO4NHP3KPLMZ3DKbx0/eP4PefGfcXrcDBVYtuperKIvRYCfj6fBlfmD6B//TePdjRGRNpHkUXpgkKmKAYAacQ5GNosmBykSU9+vXcZ5K8loSdohhLhQ05b9Tte//+3g2pv/b3JeRFZ4/MKj/9N4o5IwAccYxExir0rqKIE+2+q9jnTs4jX3VFooa/V4lpHqeGhm7Aiaaxe1sKuUIB5WIRWqWMEd1CLBrHjjgpvFduj9fnW3Z1yfyTro3jYMGDc3N7JiHzReAHgTkPbc/Iwr6/w4PRmcLYclXAHDw+Ij0f2tmJbaso2a7XdvfG0ZsIy/W0JROVOeEckbLuLbu78Q/fOIpTs0WcnCnguctZccJ294bRQ8mofE3GTUaYebeGO0eSmFiutHRM/T+DMIVk38OZlQnunmQEH7x7RF7Xa4r1aO37nBOeE9ZWyMAS2Fy+JsjiLV1x3NYXl3uN18VfvTiNN+/uQk/MQr7iCtVg4Lnx2rMRxZ333gO7XJAg9uzZs6jVaujo6GgmemOx2A0neu/tSYgG4rHlCsqUGjN03Nsdxx3rAN1e747QZnJ30zZt0zbt25MtcqNOxEKhIN2HLMyx+/BqyQECTxLRUFNvuFCqoVRVGtr0T4sVG6VAK13XYIUtLOQrwqJCP7xiu3jj/iE8fHAY+7Z04Q++eAafffEKlnJF1Mp16PQNY2r7/O5vffJFDHXG0ZW4SlJBA7bvO7xhYZH+VjuV71t3d+PPnpsQXWhhGfF1w9lB9d37+8SfIGBXMYS0ErNMaNHH20rK4FQEf3t8Bl84PS/AWlIO/8L9o/jzl6claVcouahVXHhSnGVCeWUQRvDL0akC/vL4jPidBJPwE/qyT11ekmNil1VgxZryiV6EhVPnF9X2/ECSCWhKHTJeoEQjf8bj+uCeHrxltKXZfT1WzS0hNHYcH9q6BTNXPORtVxhEVpsi8FCgm8C6oyZ++a5hvLKggBg7UyEc7IoLOOnevgTOZqsC5KVvzOSbSNFKwsvGs7NFfG6MbBlqW6qL0RPd9U9eXMIP7u6WBOIP7erC+VwFl/I1BHm4AKNNsDeTd0V4WNI78fzJAj5oh/CebRkMx9JwG0m5LgnCUOw0rV5LGgEx9NnlcKXLMThjQZNGK8bkLzsiNlwW9j0NXRFKxzDrpmNXMo6hmGIEWm308Q92pHAgrTrZnpxfwBPz6nyzcYH5BfqRAjqRTk1DANCijrQB0wvn6YVsWT6mLI7fl9qck6oRwnD/KPRaHYVCCdm5BWGODaciCEVCCBkePGtlN1vKjKAvnMJ0NY9ynYUOlkIawhcS00OqU7dhw9QNdITiyKKMuB2CYUQEEBLkXyJ6CIORnlf9/CLQZdnJS/cvGUcClhfudyjSj7gRw6KdR9GtoeDWENMtRIww6nUX/I9FKHbqioSRTsmj9WNDYTthtqWNXUZR0EcR0W8sHlu/87pF8y9Sz23nkeNUEtCkq2dnYQMOHFS8UpO+X66INgbTeqOObbu2YufIbolnqAt/6dIlabQK4hmC8W800SvFtEYIdd1RgBWOyzOgN1Su6Tspnnk9J3Y3bdM2bdNuVbtajYZ+B9fCCxcuiIwpm3KvZkENpZ1JbMX22v5NIKqs0SsEPglVIQTVUv6G5khtgDGFsaJhTTGrELRieWubM9s2h0g4ImNfd7y+BFD7v00vBAeKgS2o/ShAC70Kfqb8noDdRX1PU4xpjBdAZv0GbK8soBZ+ljI7BPRLoEuQBFYMhNUWCCdgFBdmwIgw0bme3ZxTOV4ytAjgdfW6r0EnUD3pYtGeFx8okDgk1wXn2tQj4rcxP256BvrD/YiZ159b5bYWL15CbH4eR24bxbHyAlJWBRGDDIv+KCgJqjewLVHC6RxjBB+8DuCNvT2I9ycwXqxIbvf2TBy9sbCMh5Ilk6UqUpaHdLSMqMV8OWMAC55Wxl+PFTBb9Ws0Us+DxBefHJ/B7nQc6VAI2zJR/Nx9I/gPT16Ws8dYSTWsqxpRd6oBTfcwqVlY0sM4e34SP7pjCMOpCAaTYclzs+bBeI+M8qqBOKjBacICU/Sbu9W1EshItuYoqL0wjiRIhsfPplBK5rBxIB4y8f13DKxpKA1sW1dMagvcLusqP/anL+Mi5Y38Bl0ytjNnTwuZZFsxcHa2cNXz9gxjwTrvAwOOo5pPJZ4xdGiGiTxi2Lu7T3IX5VIRWqmELZQQTsWxJ1VHirquq+yN2ztxeanqS+oYckkXaw3s6IpLEwdBH6yd7OlLYCQTwc6UhpyVwNllV2JvNWce7hhK4fbB9Zt5rmVDHRFs7Yzi1CyBRqpBgfM2matiX38Cv/zW7RjPVvHyRB4nZ4rCdLO9K4qBZFjet/34mXW73cwZFO1m/S04YvHaG8y/kM1/JeMHzyGbw/m6XhPGFAaW636mniMdViu/QrbXrO0i1bAEyMJf5uw6npsvSz20I6Qja2soi3SV/yPeNkYIe+68F1GnIjHN2NgYTpw4IY1TAXCFf7/RWHI0Fpdr8Uwhh5LrSj1zfyqJfan0TWFwuZUA+OVy+XUb09yyYJVvhSNEthXK/tA2opRbbSYs1DWiUVsuRLu1O0ikSmP+zmEXkM+okjRIz6sStWRX4ev5088jsVudGoX2bTkfpF+jzjG7ndhRtCJH6mt1pSNrEZJXszsy2/H1+mnknUpz0SWg5e7OnZKYIQOL2v8qE3pqE5PlHL48ew52QyFZ52pFXCguChNJzU/IcqEIWUCn1kC2oujBlaQRATMmLMNA1lZAlSBBSp1vYVgh7UObEbXJfFE0FFCctc23xvOrI52JygLE/4gGrJs6npkt4h2j1/cQX8jm8f9//BheyJtwtAi2dmiIRU2UCi0ksr/HVWNTL7JbvGVXjwAf+LBr16ROR0z84pu24t9/+SLOThVksacxqb1QsPETf/4yauzu01s69Sq5rYAJz15Zxhu2qiQ1GVZIC/c/npuE7fra9Uxgkl6srq5KLkYEpbw0mcdvfPkifuM9e2RfZptzcmQwhb5EGDOFGjoiijmkI2bK/kTn/SpyQEGnYnAauL8Ht3XIgksWmbMLZXEA1jOCLehcUCeQwJ07BpP4/JkFFKrs3FVgDOnoNEktH5KCwlBHFLOl1eehZUvUkPSTwxwzF3DS6PE+qtgNnF8oi3QOZXKiVgS7uzsR9hx06DYunjuL07YtiUAuoGY8jYmyh5mCjZ09MdE95MHu60sIEIXyQRw/QRkHBxLY2RPHs+M5LNcNvHVPF64s13B5uSJAEaJ17x5J4eRsUej9eN53dMVw+2ByXeTraktHLXEq//jZCZyeLco54jVBhqB3H+jDHz87ji8SUOXURapoJqekgchecmWxIuAUJnbfuKsLH7xjCEfHXhYnmOMIqPID60pa2H4VBhg6UOdnixhfKoss0MHhtCCtr9d4vHdu6cDnjs+KfBLnj9s8O1cSCaPdfYnm84GUf3TsxhZJA1iT7m/pKGAdirqejQYuLlZxcq6M+7Z2C8BQku2VSjPRS+kDJnbbE73XQ6/NZ9HdPQkc7oqh7HqImWS8unnJ2FvFEZIiy+vYEdq0Tdu0TXu9abxPTU1JQoDskGSJvFbwHg2beM99O/CnXz4hYG9SPZerrgBV6FPR55BkGCUn68D9ewdxZaGAhVwVIUvH9913G/7F998tvvdAJoZf/b4j+Gfv3IVf+X8+h78+Zst2ZvzCO/10+qF/8pXTeOiunfir58bVIFb5mPFICD3pDZK/69ju3gT+8UPb8HtPXBJfiEdseBoe3tWN7zsyiEKNySkFFmmHMwRyRbGQjn/7+TP47MnZpvwjfWeR2PSlbTiP9LH4YTwCoXXmvIjmtq7hTdsyeOLSsvyespo0bicdNoQJkX7LelTNBKU0vxyAKugbOXX5zAkSSJ6Hp8aW8a7tXZLoupZxbE+dvIi/PD2PSa8H0bKD/kQY8yWmUNe/JjhGzhN9MDI+PrI1g23JEEbpjAdJdf96emgohdPLFXx9Mi8JTQUOUDHNN6YKeGm+JKALYTfxd8dZIXDk8Ym8gFXgf/+nDvTjD07M4sSiikd5vJZILgXXt4aQrsn2/vLcAkaTIdzeHZckVbvd05PAywsVn86bvyFtsJIDUhJFPrg/2GrbNMRC1KnmGNX56AtbGIiGsey4uFKq4kinohlezyiHOlWpSofXYDSKmGFg2Vb027weAqmlKCnBLRXvWpqDehvrR7txpPQ9+TGvWY4zTj+U3YueDtvzcDLHIoSJhhVBR08CfaaGhl1EaamI584/JzTGQUIwnI6i7FWgw0VvKKquKejoCiVRqldRrKuiSNgwMRhKSzmipFcQho6BSC9ybknAIVE9jO5QGhEjgsnqssgFkWGlKxRH2rq++7XL6kDOKmLJyTfLRpyPnlCnSAK9kr+MQr0in9QaNpZRxmCkA3EjjlqjhppHSnITfaFeVOskwmdHYTsbkJ+T8dgRePV8Dosn5QYpt6mBHhKGlxtJdrJrmIUuMqmwO1ok1DzF6GLBagJl2OBE0JkDG4ZnCJgl6CymSdet4aGGCjojKQwPD8uLPng2m20CV1YneinReT3jZaHJbISbbMABP/B3UjxDYzzDBoZN27RN27RN+/aPZwjIP3bsGHK5HO655x5hHbuWUa6PQoaKs2Elw8rqRkwysBG86WnBvglRCQtYhUY2N8r9nTt/GUPbe1eBVfxtyorvrmVDaS23CLPj/wZ6rcOIkv9DgCatRl8dYcQVk4rvO8o6vmq76pgbIhOkhD7VIMjupn7WqiiT6YT+XNWtNkEVSnKRcU0YxUaurYFabXst03xzx+Kbybz6QJUW+EZDMqTY+NVXlcxI1Ssj6l1fUyGbEY9dehlmD9C3pQOWXsUwTGELXK+bO6R7SFsO8k6oWXfan84gY4VwezqyokbDsXxotBd/cmEKifASYiHFJCrAH8PFUwvnMVVl3EVuv9ax03WjBMmzC1k8Mqjkau8cSOIjdwziT07NCaSI8Yz4fNmi7AABAABJREFUuGnWeDgzCihBZouFqoOPXZzCz+3bKt9pZ8ocTIVxoC+Bo5MFyZdLE0TMEoAMAQ5BhwMBA6vrNIwtbV+ylhPjaA08vDMj+6Y8zSuTBYx2ru8L8bcEp4wtqTrGw7u7cPapokjUcH+sH3B/rHUxFmWdYndvEqfmNlavKFZdyfOzdscrko3FrAOw3sPaDOsVn3xlThpFCGC5rbcP3XENVr2G2YkrGD93uun7xjs6MWfrmCjY2NYXR28qBNupY39/QhpT2IjNGg1P7fauGO7fnsFLs0VMOiYe2N6B26q61GP4+cGBJN6wLSPgEmlKqdaxpTOCI0MpaTC/ljE/8n13DOK/PnVFms6DGk1/Kozvv2MQXzyzgL88Oo1c1ZH62AQleGp1GVMsbGAqW8V8zcX+gST+P/cM4Vc+f06OP5DoDYxnktfGwYGrA7um8lVcXKgIsGlPb/y6jqHdDvTEcSFbFUYaNpPINsuOBKHbOyJNIFRH2MRkycaVAtlvgFxNWj+a9xOvoayn4UyhhocHMlJ/Ce7hoEYzPj4u32csEzCvXI/8Dn+zLZ7AllgclTqbFshGe/NikFsJgF96HbNFfseCVVZ3IS4sLAilXH9/v1DKXe/FSeeFRGgB6jVwhAKQR7CoE6kp1GZWRhInkpShDvQ6i7KACLjgrHpfYWZVDxS3s+Qs+kxvfteUEI7oQqVGK7lFQbRSq5kSQl2hbiTMtdplSSuKt/bdjqnKEgouEaZhDEU7ETbUg2003oXLpQXU2V0pOuKeaASKtFCsC88uXhGgSoTH6yMJs05NEp2RQIalQUplIkQbCGkuPN2SOSZl1DuH+2WR8hl+V1gzP7l63jUmNhVl82qHk5qA3DYTJ3y+ZsJqQf+r84u4py8p1GdXs9m5OfziF87ifNXyKaxcZGcKMCwLpqmSxsEY+LCWsTPB6bORkIbsV962c12gSmAPbe/EB6cL+P9NF2TRoRMQLAZk6CB7eTy2cja4P+7q3EK5CVbhYvgP7hmRBe/PX5oRWZpazUaxrhLvHBkdGzoGdCqfuLiEuWJNABxlpyHjZQKd+//lN2/Dv/vSBSz7uob87cH+JN69uxufO0O2Ekecy8l8FUXbp/laZ/6yVVd086iVx27bZy4vyQN/NBMV+rPg3mJS+09emBJHQUApGlBzXBkvE9MBQjgAw3T78kw7u6N4cTK/7r457u2dEcwWHZRtdgaqpDapzunPsRCxXLYFPEUaeRYcxrNLODCQxPe+YRcGkiFJYnEBvTA1h69PXEIRFjKJOKxIBJFIVOj9+KKm5LGZgizcg8kQJgs2nhTEcAPjZQOYL+P2gRQ+cHufzD/t0yfm8CSLGL6O5zev5PDKdAE/dMfgGgr39ewNOzox2BHB0StZZCsuRjJR3DPagXNzJXzh1Lw4I1s6ozJfzzc8AeZwX2S46U1H8OY9Pfj5t+0QmrmeZBgl20Wx6sH0nU6emrBlYN9gGvs2QBeT1v//+dpFPHN+QRhl6FSPdEbxk2/Zib3XQCQXKg6+fm4BZ2bycs4pO0WZn+D5xXO6ozchzuvq88pzOZWtoUYKQx/uL43TnmLgefriMu7bqpwgbo+JSL7YecHrL0j0siODQBYGuoFTRBDG1QIkFibS3wLZwlvFEaITRGNCfNM2bdM2bdO+fQH49DtPnz6N6elpHD58GD09Kia4Hvu5D92FC9NZfPPMNBzHh8qLI8YuqtY+uG5NzBfw5d/4XkwvldCRCKMjvhY4YVkm5ot1YWiRTj1fXoZ+kuN6OHVlCX/4j0fxnx87i1xF0Um3TMMjB/sFCEtmlP/97Bg+99KEyA29aW8/fuSN29CdXMty8QN3DuH+bRl89dwiqm4dh4fSwo5CEA3peO/f1onHz8xB95kRGdfQH+1NhoU2+POn5oTqOfBDKDO0KCAXyd6qhCPXbYIfanVkLA0mgQe6Jn7uT9w1jF/50vmmzOdKiZ31553vk8Y5OO5mAjRIRvp+TTykC7B7tmTjY8dn8M/uH73q+eS18OUXTuB3zzuoeuyw9FBwHMwLmyLpl1vMPgE2PgAvJ8JkgwD2dsbxri1p2VZw7lecY13DTx7oxfG5Ikq2hjD9SNOQ5gmbRfaqK4n91aQUwt4j+tYt649Z+Bd3DOLnnhpDyWkgYWoi0aRkVXz5VCakDA1Fp4EnJvM40BVDpc6Esoewbop87Z09MZzNJfHkTAF5MvEJzbeOhwbi6AhreGm5gLipY7Fax2KVUTXZDz3ELCZIV45zvFJD3CQLqoalWg2vLC6jOxLGQDSCUBvo+UqpgmeXllAQCVyVlA6OU869H1fxiEO+pA9tKGHgQn79YLc7qiET0lGteqhLZ6eSM6XvG0jJTlXrSFn0kXUByizowJ2dXdjd3yfgB/q+jGlOTZxFddaRRpxYNIZwNIJEOIb+cEaYX5fsiuQAKA1M6aJ8vYAFu4iqUYMdrsP2ahiJsAkjLDmOct3GqcIkCm5V/k2gx5ydw2i0GwPX0TTDeHJ7bBidTgEFVzGNpM0EUkYcJ4sTyLtlJE0mRXW4jRAWnTymqzkMRhNS4CAApcfsRG+oBzPVWSUL5N/TkhfwW4v5ftJMCnvtelZtVDBnz8H2eJ0pFhQCYnossoJe3T/nnIiUkEc5XnI1eSIXoPI83Ja+RlooYMtVYBZ13tufC6r5gyUvR4ptwT0XJHJ37tyJarUq8UzQpcjPA+AKX9dK9Kox3ByQyq0Wz9A2mVU2bdM2bdO+NfZautrXayjm8/qFF14Q34XNxNdTyKRx/abkXtkrrJC4UVKVK/ehajIGwog1mUvWA3KapgHjKg2G3I/hhQBNNSaTTa0d3K15VgvYohFcQbCB5rP0G2v2SYBrxEv6cj/CNS+VJ91noyOYxkZFgO2tMfgMHAgJ8DUodwcMau1Sks3fiASmEhcS0UkCYVjb0BMwNMUOudFZVdtbxV7jMzOsrtFEzYj4fvI+/TP/OMr1AmJGQhjvrmZk3Dg1fQyRAcXSyTmpN8oYSWiYr1jIO6qZVaWVlR/GXXWE6qh7jB0MPNgziA7Tavosq6/X4XgEP7QjgycW5pRHqLEIrpLUNSoFRKvI1eIrUO5B3WSuouqBgb1zZxciYRP/7eScxCAm6jBMXnstcAxjgbCuYb5q41KhgqFYWORpmPfuiJjynX/ywBb8yhcvYDxHySkF9CBL/vv2dOOJ84s4P1dEOmzhSk410hIoQdUBaTZps6rr4cmLWbxhG0E+wNcvLqIrZkgj8HAHpYp8lkO3gT97fhLPXFoWlhd1fB5CliEABsbNEiv6IPxenyU9HbMkPiMgY7VxG7f1J+TYCtWyMMcwvOV3uR1KMZFx5PRMEV2UmXEaEsePdsXwiw9vx23dMfF96fdOzS3gUyemsFg3kY5HEY3FYIYi2DuQxAPDaWlWeWEij5pTx2A6gorn4aX5sjCYTFZ1lJds7B3owM/u7ZF4n/H7ExeW8Onjc/Jbju0bY8t47koOP3b3kOQHrmW39SXwS2/fgeevZDGbt9GTsHDXaIew2PzlC9MSH5Aln9cb4+bzCyU8N5aTug3rN3v7E/iZB7eK3FJPIiRsrzyPonjhn0eOi4wsB/rXr7fwvPzN8Tl8+eyiNOeIHFY8hO8/3I9715F7ajee8xem8qqhuuEhZWiYIvWrgE+AWt3DQCrclFYKjMfCGuN0uS7XF7lDVfMBPyUbJ3A6V8bDAy2AYTgcxuDgoLyYW+B9zfM6MTGBU6dOSb0hqNEQnHS12IL3T8J89ZJCG1lQw/12N8/zpE7zeq3RfEfKALWjdrkNdt3zRZAKO1hueHvSc2SBfW9cNBuwhdqsxauiFiM+vJmxMrRr3FBEKjTXv/YFNNBH9LAlOop8JQdHU3R0gn7VDGyNbpWuoKyzjPHKZUmGCOV2vYycm8VwZAs6Q11rdsnk3mh8/YT2cDSD25L9OLE0IWwufGDShdme6EEmlEDOGROml2CxJzBgVeOgYkfxPDh1DbsyUaRDKaStCA5m0uiLRnC5UJbkG6V/yKgixyn6dRubsKisTn6SMcQi1W6QhFa0aaSALjgNHFss4U1D66Ox+RsmfT7/8kWcryoJEgGk+NshU0c0aqFUVHpyq8/Qu/b24shQGm/ekREAiNJ9X+sEBTa+VFGOyOqHPmVlnHpTp66JTvSPeXfPWuTchw724QtnFpAt15r84vJ7XROABo374iLyzYk8PEOTjsOwoWEgEcbBnjgOD6TwR99zQDpCF8q26CQ+MNoB2/Xw4lQBw2lq25G2TsOZudKG50YouRbKAoZhIpqyPifmyjInD21L4+HtGaGA+/WvjYm+Hlk2uuOWUKWfnqvBbSgUJ68z7pvbK9eBC4sV7O6OiUNDB208V1GU3m3nYX9fHF3xsIBpAlSr0NfbdXRGlQPF62Fnd0woyfm5WzcE6cvFVooB8bi8xr0Ukm4O20N1lIolFPMLWFio49G5KJ47F8NYkV2aCgBD6jfbg4BWON212QY6oiaOzRYxnA5jJB3BufkSnr6cRVcsJOw6NIIsjk0XxaF68Dqp20jLxxeNDtXLkwX80TNXhNqeABzV+QvcsSWNo1cg2pBkKiHDyht3diITU5qOBIWETAOXF0oCRJIOVtOU73//PSMYyqwfMHzmpSl8+eQs+nlcnVFh8Lm0UMJHHz+PX//e2zdkWFkq1vCfPn8aJyZzTT1GFoHisTC6UlHs6U9gIB0RAA/PmRSG6Dz51zPBNCV2edMx9in7pDtaHqsNzBcUFeF6Ruc7YFXZtWuXgFXaE738/GbpKL4eHaEArPJ6Re1u2qZt2qbdyjJAQUzDRA4ZIrm23H///TfcPU7AyR//4rvw9MlJnB5fwv/+2hk8e/zKmu9x+xcmFgTcurVvY5Aq1zcmooI1PejGoQ9AsAqlYwg4+e3vvx0//+cvis8oyVhDF9Dsr3/PIQE9/9T/eBaPn5hpdga+OLaEv31xHH/+Mw+hN7UWsMJOsQ/fu/6x/8tHduHiXB4XF8qwy6TaVcx1/+G9e/H8eFb8QmpKByZSlAGrSsCQUW9IWpmjfdvOboQtU8DdD23tFODxnu44Li2XW80Evr92NVNghpUxX1265lrvcC71kCag7mcnczLWJgPjKqMcDCWgPjFloiKJ8JWAFCa1hAHFWKlzTovqwId2dWNbKoL9GTIKrky4rzayf2RrdZHfYeIvMPGr/e4q0SVv2w93lWS2dJXx94+MpPE3F5ZQqpLdUXHgcMz0XSWW9ueH3YiXS0souY4kAsO6ge5wHF2hGH5oZyfu70vgxLJiaaE+92gihDP5IpbdEjpCFnqiBJnYKDAo2cAYl54tltERMqXx4egyuxuL6LQs3NOZQnc4jIlKFZ+enhNZn4iuIxOy5NomcIUzL1JajCP9bWZFEqguzCv9USa4gdXEnQT93NVtwdYoQdmQ5CHxFzWfBYhgGzaKRE0LmVBI5HsjuoaiqyFbM6AnSI0DlezLpGFWonAcB3aphkKhiKXZJRgxA1OhBdihOKpCB62Sfp0hspLWEdOjKNdL8nzh9pfdPAYM1TU6VV0WoErKjDXv63K9hvHKEjqteLPh5WrGIkBXKC0vWoW/r85iurYoRYzg0qcscsZKoeCyo9NEhxlDykwiaSi2v4gZQchlF7SFmldVHb+cJwEZxdBpri+ZpQA2CqgS0gghIuCkjkI9L+wundbafElg5UYJufqi5H2CbdG4HQJkQlpUtsUi0Ip9ylOD3DaqY3c9o9wSO703skgksiLRy25zxjRXrlwRKWsmd9sTvTeDEvv1Es8EMc0mU+Smbdqmbdq3lwXxTOA7E3R//PhxbN26VYCaN7qWWVoISWSETYQ+TNUrrQGqBGuu06ghbESvCuPUdXr+G5vIpCKESrUMukBSB/DBoWRmIRhWgCo6i8AtYEdDq0MjKxuBLqtMGElAv2Kd8RBg48XgIOfHKWqbhnhDYZRB5rr2itT6XkcA7IjoZNVUEh/0YTh/7cw0K8E0bbJD62w3ANS0m6WTFr/1cwWS0cV/r9bLV5VmnJubw/FTx9BzOL0e3T86I1EUXTrSq9segP5wEgc6BrEtlkTKtDZsJg6sXK/4zIdtjeUCfmaMowrwgrdZ9fP+6Np49IHBJD47lsV0sSoN2yEB66jPopS/EfA6GQQ9nM+WcG6uInULxnZs1L29NyHytP/lvXvw1FhWACu98RAe3JoRYMOZ6QKM3oTEhZzH5WJN4uuN7PJSRWJJx2fA54ssoGR//95DfTBNHb/zxDj+5pVZqUmx4ZUgheNTBWlYZdOH1GjI+slaRh3C+H5kOC3fZ43i0lJFYvfmOWBjayaCLR1RAdSwiZc1EPFfy64wxaSiBhbKdezoisKyDBlfKmwKw6tN+QDf9x0aGkI+nEGksYyDRh3VcgnFwhJyVRtPzEVx/HwYlwtshvAkR0FwRzgWEgaXgUQItZkGemMmzi9V5N97umJYKNl49PSCjH9LRuW6GV+fmS/hq+eX8H1HBjaczxXnPxXGdx/ok79zjk5MF/AXL0zh/HxJgCpBkwGBLTw+hstbu6JS23tgW0bqIIzN9/QmJGcwV3SkYYPNNWxI4Ny/aWeXsMesZ8+P5/DZE3NSiyF7P/dHtpiPvTAtYCRRCNgAqPJHz0/iedYIWa9teCi5DSRjFkZ64uiPhzDaEcGFEp+jivGUxu+SsZTxaN4mCL91Q7BGp5iTPGSrG8czvA/ZQMzX9u3bJXcR1GjIpsV9BIoHjGt4Dfxd2K3GFpl4nbLf37JglZvhCDFpw5uAaK7rpZTbyHSflI0uSJ2MHwGaUz5to2jzO6OuZgRbtGytrBATIqdPnkZuqYCdh3ZAi2jSMUS2FVK48fOp6oTSBPQXWeFk8eqYrk2iw+pY14HYyPj7uzq3In9hCpHBTsTicQxGO9AbTiLvrESQ0qqNtU5gixYaKDTKqNo12F4EdTCZHMFoIopdyQRO5wpoeK6gobmIrcPmtsLcqyzGar4UUKjponkbP5CY4Jmfn8dkZAANLy/jbYGN1EOXSV1uQ2Rx2pj9EqaHf/32XeJsBECZayVt6GAEGoOrnaVAFkbRkLdo3fqSYdwzshYZ2R0Gvm/YxifGNCw7JlBTHaopnzWFpqi8SEntopeSOpGQzPHFbEW2f89gUoAz792nEpGBGRqBH8DxmYIsXpToWQXUXWP0Ty5nq6KpuKcvLs4GGWMeO58V5OyfvjSDl2eYAOWGHFlIOU4CEgh+YEOrfKQA3vJ3yudQligTM3HvaBr/evd2/MnRKcwUbfTFLXEqSZLIxd32tyEcMZSSyRCFmhCwCMdCp09YOfxzTCAMNSGJZA0cFDqDBHYQJZxOpWSOWAj63KlZPD+9jLThSkEjZ4bxhZkChjIx7Ojsgesnven4LVbqmC7UBKxyfKaI+aKtWG3sujDxCKOOpePETOG6wSqBEejxx89NCqL62GQexWpd5pHo37u3pGU/mbiFB7Z34h+/eduK3yYjFt51sB8f/+Y49g6lYDsNjM0uIZWI4sNv2Ir33zG0/nmtN/C1M3PScdsRU3NlmRq2sTCzUMKx8Rzu27l+cvex4zM4PpETkAyT+KTJY+LfKVaxZyiNJXY2p4DhjihOz5bQnVByYWSw2TeQFDYYAWwJ+E1t089Hy/na0nX92vPszqCzy1eQ6KVTdPnyZXkOEJ0agFuul177Ro37FemAW8ARohNEAA+R0Ju2aZu2aZv27RfTcA0jQySZVPbt2/eq1xaCSt54YFheZMhYD6xCq1RsTC7kMdS9MViFY0hGdJVE9TuxAvCC8s01LCwtI1O6hI++fxCXnA7kqnXsHUjhkQN9iIVMfObFCXzl5IwkX5iooRHUfH62gP/xtfP45fccuKHjG85E8Uffvxf/88svIdy7Bd2JMN65r1d8pxcmciu+S5+0PaJpl8Ns+CCcT708K4m30m4HD/nsbu/b14snL5PJ0BZwBZNMTPxczcgY0hKo2eA7bWwda4VnW8a4lp2ojGsnHOVItzO9+L0TzaaAoJ4e+MT3ZDR8YEeXXFfXSurSCHwnMIW+neLGbm2PABP68u37oXFUb9uyftx9Z6iCE40sLptp1NipRfkeDUj6bDeKOQMgbrvgkvmETSMaqg0XU5W8NGCwIWJ7KiyvdiOjJ4Eii3lb5Hoq61DOrzYmkeerDrrDFoYTMaFmXqjV8M3lPEaiETw6O48iKbEJbiJDpm1LpyRlenicnIJ2PldCq8/lC0hbIUQMHX9vewbzNQ1HF8jS4WGYcktGGY4GFB2C7Bnn+/Omadgai8qJmiBLoBlCzFCsOepzF4t2bUVsSRkdyvfEw3EkIgl0dnXJeV0oZnGuVEY1vwzDdhEJh1GMWJizNOxNpxHzLxrep2E9DLthC7DD9EzM11Sc7HqOSAAJ24keQs6tIO9W0XMdYJV2y7lFjJWnMFcrIO+qruScW0ZagCkxyWdYuoWBUB86Qys7yAhaiRsxkfKJa0zyluE0HCRCCYxGRqSJZz3j93k8YQJVfBYVFnkIgC/UC8iYnete9yx25RvLUsQJISRyPkr0h927dWFTYdc0C0xk3uUccX74fR5XBFHpeA5sRa6jKZV1fSk63ptM5PJFuTfSaweJXnYp0trB+N8qP57Pilshnglimk3w/aZt2qZt2reXBWsIazRkQp6cnMShQ4fQ27syN30jxppCCBGECPYVwOv65gi72rXHp+T6NvqGh4sXVBP0kTsPIdPZ4TPHE+SiflQn+1pzxW+BSDwyzxOwsoZn/upmaRFMX7yAju40uro6xXegiNGNmsgK0dHUVB1LwSgESoGoHke5UWwCVla3JbeDWAJflH7PVa29N/sqRl+W+dnz589jx+FtKGnZ9cdPP9UwUF3t03vAkeQwupOdTSDUtWKakC9jtHYsCmQdAO7bYyf6/Pf0rK3RGF4Dj4SW8VnNRE4PqzqXxCJk1fcbvX05yPm8i05KjyZDAmZgDYGghzeOpCX+fds6OXbWbp66tCT1E8rnsNH3asbLlzI5rEEc3pLClo6IsLV/9WJWaixPXMzicyfnm9vhd8/OleSYGY+FTNYUoRoQfFaUC/Nl5Cqu1FHYEPwf33MbPv78lDQ3s941kA5LDaRQdVGsUApIycV4niYADwI1nh1bRtwyMZCKSNMHQRuMeSnlwxrNwcHWMUwValLT6kjGgJSKBwhy+NLpWXxjLIuY56AjoqNiRfDlhSLSyQh+6K5WbYMxe0TTMZ6rCVjl9FwRE7mqAGrYNEMGUwELxUM4MVOUxlmqEVyv8Zz95YvTePT0HI5NFLBYsjHJpuKoKYz4BOcQPEPWk3/x9p0rfssY75E93RjPUn7JwEhHGBMLeeiWie/a04d/eP+WDZtUnh3LybnhuOXa04CRjogw7b80WdgQrHJ0Mi9AF9YZWdehrI/XcLFQqGFXXwKeaaDWAAZjIUyUHCRDZBzSkLNdiYuVkgG3ROBV+7VGZREN3ddQtWg3MmdR6YQv3qsB6wqBi2fOnJEmrCCe6ejo+JaB5G8ltsjSpgzQ68voaNAJeuaZZ+SCZ/fh9VLKXctkUV9BG7vqYUKGkWvkxejQ8Dt0GNqRqoHbcO7MOTjlOu6/7/510WVkUXE8MiW0FmL+SYo7Og6leglJM3Vjx0VZjbqOrUYHBjItdGHKCiMTimKhVhIdZpWOVDrxsgj532uXjCFKlS7bol3B56bO4/u27EPCDGE0pWPGqQltNC1pmRjSEjidp37i2jGVyg15ALana+lAuqTvYkJTZIeUhnzJqYtTcLA7tmH3IR9K9913Hx57cnz9OVATgail+xRovn54SMf3DFByhg+2ayd1A3v3gT78+dEpoUMLuji5Xf7yJx7Ygs+enVeSQFysqU8YNfF/f/celfhtMxba2Ul735Ye/PBbd+PkXBm//9RlYesQDUW3IS/O0v07OoW+Kxkym6CYHg2YLtWQq8WEbm61Wf4cUh6oMxZSxYLKtZO7NAImJHet67IAXlyq4M9ensNZX49eseMoBhTSvAdMKXZj7XVDoMxs0ZZELjtY7x4hslpTTDAlG9P5Ks7MleVzoUzziwzs0qRzwO8EjgeRszweOj+kKOf+r2QrIl2kukeVs8CEZfP8M7mvm1iyDQx2dQgQqFCpAq4NODWcna5iZ7SKrpS6xuQa8CnyTs2V8NxkHnMlW8bE/RMVPeQn0V8NGOLJi0v4m5dncGW5gpqjKPmIpKbu4VNuHfds6ZB9k7FkPXvnwX5hUfnyqTnMFWrogokfeesevGlPX3M8+YqD2YKNdNSUQg6vo1KtjsgqmR6CuHitEUCzkX3jwiISEVMcRI6Z9Pz9qQjm8jV49Qa2dscF7f2eg33S8UyUNs/XO/b14C23dePffOa0yPEwJdwO/uMx8v337H91gWx7opddG4GOIl/tOoqBY3Sz1oqNKPW/HY0UrEzs/l10Z27apm3apm3ajcU0lDJlIm/Pnj3CEHmzntWNqxTymUT4yotX8CNv3xgswvWtN2khHg2JzI3jEupNn0FHyDLRk47gheefk7V327Zt6477qTNzAgoJgCo0gj+YKPnisakbBqvQEhEL9/YCb33ryiTRG7d34k++OS7MgGT4Y2JN0SgrcA0H3w4U4erNGIAA6c+cnBVf8t+/a4/4nUx2kUGRrIz87fbOKHJ2HflV0jeBRWKmH+sE3ZaaovbW6mq/GhkkKLfiSeLsvqHMmngg6D585ZVXMDo6KvPaOPPKmu8EMVXMNETiNfC9ubmeEPCWTlw3UIXGWOvBoRQeHcsKwEc6/DxP5jEVMvCmLWl8cTwP29cYYjKL8dj7t3euuaZYoKDv9Y/uuh1aPI1XFsr4k9NzEh8RpEQvk0lcAr4P9Oi+VIwaX8ywkG/UkbUrAlZZz1KWiYpbR6VB+RwTRWG8uRZTqwJ+0CdV16+B7kgEC9WqgD0IZgmEVQKK7ioByb7sT3u3WWBVSpTaNrZEI9iWTGBPh47uqIexEqVRbUzVXExVGf+qfQfnKO0XE6jRTd83zi5Rz0POcaSrtFx30RkKyZ/8jNbeU6u1sx5ZFryQhZF4Jyqug2qthkbVRt51cbpYwrZIDPW62yZeQ3B4A0vuIsoNNjpQKNeB2TAQM6KSZ3g1xuaay6VpXK7k5Lik0YTnWWtgyWGSnDJNFsK6hYS5FphuaAYGw4NYdsn2UoDdMNAoNLCtc6tIHMmxUzK0YUuRhcAbFhwUG8pagnvmT6T7mSCvdY6J8j91gnQQErYbbkdyLpQC8pjg5L1Mmv86okjABsH2dSkihbUodE9fA0trZjPYGKNZG8oWXcsIRhkYGJAXjzmfz0s8w6If6bXZfRfEMwSz3awY5FZjVrkRebxN27RN27RNuz57LfEH2e9pR48eFR+UNZqbCSxcjwEksJXQ9PWNa1ytaov053o2OTElINF7771XWM3W3T99erG18+RpDWjU57xBa7geSssVDK6qc5ieBQf2OqwoVzf6P1WUQJ4ZAl/oM3maktsMjsNrhFD1Kuu6z/QH6BetVkIgiDhsKHaVoGYmPi5joHVYVbidEydOSIzLxvJapIxSbX2wCi87Khu0g1WkmXyxjlCypapwPX7KSDSDF/Vx2A36eWwuVjUBHveueDcWix7mqq0mStaY3j8ygNQqZm4yebNG0xUK4Tcf3oeJSgPPzC/jlWxegdgbgSQk2V/CiJtmU2YlbGoYTIYxXbRFunVoAyka1qXITpKMmFJPWmiL6daz4KMoqeCFhV9HZzwk8dpfvDyPC/Nk0+a5YZMAgUmqliSMnHIOgxgyQBsRkOAJwzm/9/Dubty1JY142MBjZxYkt79UtBXoQ+pRZEZXgBfGsGRuWarw2tKQiprSEEsJm8lsFUtlB8VaHZcWKyuYRPm71Y3TpmlhuuQhmUhgSzqMbKmChuMg3Kjg8mwFL5y2sb0vLb55YIydJvI1PDNRwFzZQUNXcV5n1MQI53s9+pzrsGNTefzVS9M4PV0QJvmAkZW1qCcvLOH+rRmRH37bbd3r/v7wUAr/4IEt+Mq5RVxZriLuanj7/n5895HR5hywOZtzxFreYDos1yhBR0GT+ornsQYZx0Z2YpZANFW3W6y6KLsNdEVNzLl15EoODgwkMVlycF9fHIMxC+dYu6GiQUcUh7tjeHK6IDFbAFRpxZwKlPRg36tj/eDY+Rzlizki1u8JxueLzcW8p1m/Ceo0bEb+TmNWqdfr8pzZZFZ5HTlCvMBd120m8m52AS7YmmJXWfneNfNhfpKkXgLCHZSSaW2LTlS1WEVEi+HIPXs3XGw3Oh7lYCiM7Ksx3rBBgbV9X/d1jeJLM6fgaSXpG0pa6jDtOjXgVDdfrc6uQir1KdSrbM+jjIqL0/kFIfl5fmkeJrUZLYWmdL0GIiEbg24YU+Va21woIEtvo4RSWEfB1aRYHzhD5WINqY4YDHb6GZokhvlgf9/2TnRFrDVFWDrEfAgePHhQnOS7h9P46iV2TKnzFXRS8t+UsvmtdxzAX788IxTfO7vieN++LuTOviDOKZMf19u1xAf/P33rdvz24xeRq6rkHMf53oN9+CcPbcWP3zuCR8/OYyJXE4TtI7t7mswfgc3OzooTx26qLVu2yPk4MpTC731wP/7L18dEe4+gAErPfOhwP/oyUdFMpNGxoHNAsAZZLbamqzgYiq9Ba/L3jgcMpyOy0NnrMN60O6MBCIXs3nQm8jW3ifAkgvjYdAWWpqHq/5ZJZl30DZveT1PLsnkpe5Drgr8naOfpK1lhJPn8mQX5LmV1COyhfJLI2eikwlPoYYJcuND3JUO4ZyQt7CNXslVcWipL8ptJbxYAHju7iHTEwkPbMzKmXV1RfP1KDulwQxZ+kYnKVgW5TNDJpeW6j/rVYYWi0Jw6qjCRyynKxdPnLsG2orA7dTw96wmKluhnJvU5L9MFW3WiOo0N6dw2MoJC/uCpMVxYKCs9Q4Jr/M5lvhaLDl6azAvQ48hwCl+/uIyzcwR/6Ng/kMChoaQUex7a3Y0Hd3Whart4+qkn8MAO1UXIYsNfvTCNL56eR77iylzfuzWDH713SEAlL40tCxq4CWqpuuLgUBZoIwuCkeD7Lap4dc7ZNW0vV+VYfvTeYQEviXyaf72Syo/7IHFNhfJQfpc2z/ftg0npll7PWGjiOWcxaSgdXlHwWs9W6ygGiV4WT9ZjXXm1ydngWXorOEIBWGXTNm3TNm3Tbq69lhiEsczy8rKALF8rQ+R6logpXXAB3vrvCaDXjygoJXg143fvGY3jixfYoVNFZzqq2BjqHsq2g/tHTBw5cuSqhcONOoikw+0GOp3ajev26ngmSBC9//Z+/Mk3JyQR1MqxkkUFAoanhcMmwmEDacoq0qfjNNjAl88t4CNLZfzLR8/i8nJFfD7RenYbmCnU8LZd3fja2LIkBZtj0YA3bctguZTDkh4WSt0gpUS/jpTMdZdFcyWLSExwTyyEHz7Yv2H34YEDB6RYTetPhHCFiaVV8QztkW0ZjKSjeGoyJwDvewaS2NVYRi2nkkHsWrre6/MH9vTgSqGGMwRQs3uR14+l42fvGMThnjjeOJjC0TkCMTzs6WSCK74CbMOEC+MZ+lx33313M/Hy5uEURpIhfOzMPC7kFJvnns4I3r0tCcOqNIEqlMQpOjaKdVvYUnojCUTXYfdYqjlImCZCui7fu1rxIjj3cs51TYBHtUYDUcMQH7pYr6Ps1sWfJRBLsaioSb5W2SOq65IIZkflK9mcALEnymXZNs9l0XEEmMPzLr69P5JSvYHpiou+cBi9YQ95SvvQV/WlkET61HXx1OIc3tjVK4CViBFGRA+h2qgiqkfknLKQUK5TE13DjE0mEsWKY8QjCIH+t4e6UxfJIK/RgKO5SEYTyMVDKBlkdIlg2WbUw0aYutCmUxI5YphImTdG0zxRWcK5UraNmZUlBg8UNuV/ZFjpsOLYHulTLLHVZdRI2a+H0WElETUisHQTvaEe9FjduLJwBflivglUqdZrmKjOoFQvy/ZY0OgLdQsjDRuEAiBJYJQLoHwQR3EtUyNUVPYtRl11BCxBUBYoDMV8o4ozvI4Y8yt5K5X+X7m9KDb2t3nelJQQt9BGUb+O8bP16LX5orQCn4FM8gaJ3tdCr30rMaswpuF8bNqmbdqmbdq3j7EBM8jFkVHlZq8pV6uBXEeJRsazNJ9FIhlb+X02h9ZqyC7mr6MJ+lq88a8upgnAGO0WQhQi1tJkMVH/3879r2Q2FewiYHUJIClkhhOgL0r+NvRWrt/QEK5HUGNGv+1w+J1KvkzULQzGL+KZqi9U61Xx1QgwJlCF4F7uNaonEF4FVuF8spmY++ec0j+puCZmMbnuHHA7h9L7MFGew7KTR9QIYSQ2gOOnXsFMZEbYtK9XGpcylg907cDTi+cltggaFagqcHfXKO7u1HE8m8d0pSpyngczKfREwus2EzO+ZSMJz9GOELAt1Y/h2TCemluW+IF1gTs7UzBtszlPrC8sVVxprCWIYjARQk9M1RBWG4EdlHhhjSZXaeuoCOZllcwrP+dmCCYhGGSrT9bCBoCXs6rBgql3hrv8LeMUskQGGA8JnduYHvlPMqWQuZ5sIWTCJzMLgSr5qiP1Ataa2PzB3/EYJJ7x5WZUA2tDmpCZr5/IVnBxsSIgFeYK+Aj4+qVlaZz9gSMDSlIoFcaFpYo0o8f9vP58yUalpposjvqMNAwxI1YMullHRQuL78fG8rEr46hYCYyOZPD0uIto2EBPXMlDRUOWgIPCuo7lsoO37uq6MVaVegN/+PUreGk8JzWmwIL5Zw3n6HhW5HzYjEtGVwJ5ON7beuJStyEA5eBAUlQB+P5zzy5hz7aUxMycty+fWcSnjs1gochmeVXb+dF7hrGjOybSRSLzG8TGbkPoDniNbGTtpAAV5huCzgv1qeRhOJesv7xhIIF7RdLIa84Lx8U4OOQ1UK23ohqe6Q5Tw20d6993PJalWl3OfyZiIrYKaLPayPLe19cnL4mTi0WJZ9ikc+7cOQGrBPEM8xevZf24VZhVisWi/Mma1OvRvqNkgPgAIn0Qu0to3wqgihgRsb7W8FpJvY1vGi5QTEB09adFwy9kWSg6RUUsW6+jWqoi5qawZf/oVXcf1WOSoKnVa83EiCrsNkQrMGbEb2pyNx0KI2HV5eEk2uLSBcaHPUVZlEWMhnyn5LT2HYxruVbBxVK1Sc+sPiSYRUfWruEDW/uxWPHw0pJiCjmYSeLNA504eeIE/t6uKEa2bhfQxXOTOWGvIMKUD/dl18Plgo3OiIEHB9M4tAptTMkfUqavBi29a3c3/vjFSdGJU4up+j4f3D98aAD3j3bKi8b54Lm56GyT6+r06dMCfOnu7hbnhMnWq11jf+/uYbx5Z5cgJ7mY3LO1QxYn/iYT0/EDh9s4z9ZJSl+6dEmS0qvpEbnI/dM3b8c/emAU2YojYBEuNF8by4qGOrsezy+XxQGiI8CF8JW5gjg3B3tXAlZ4ynkI1L4jaGM6X8Pz41lZsNqRu6qA0XKKeK7oQAXzxzGXbEoKKSklLq6iESpsNCsRsk2gUHAP6Yp1hkl6S3cQD9n4zOl5AXtQNoYLJvUdyfDB/8iuwm1EfZq54Y6wUKnx/QN9cXzh7KI4dQSpkHVlayYq1HmfPTWHO4dTQj+3tycuTDDPTeSlk5CsM0Q5c7z5Wh098ZAszpw7ImW5YBvRBGAmMZ+fQHcqhWGzhvMXLuJ0QceOzihGEgbG8kpGqeI0RO+RTtAdQzfGdPToqXmcn6/Icav51sD1lHR6dMI4aYJyLjr42U+cFFkmOnmc96cvLePBHRn8wB2Dci543gjqUowy6uR96uUZ/Pnzk0iETfSmwiJb9PmTc1K8efehfpyfK+L8bAmdCQtVpyGAlof39mJ3/8YL5b07uvDn37giGpacKybTy7W6nJe+jqiAbjhu0vrRVoNKHtjWiacuLMPQmcjXUHPrcoyu7eCDh5U+5GobW6rg489PCv0dt9+bDOH9B/vxwHVKLvGZR2eHLwLCmOglcIWOETuXeU23J3pvhF6bz432Ob8V6OVuhbFu2qZt2qZ9JxgD1CCRx8D9ZgNVaG85MopIyES15ip/IUhsNoBI2MTDRzaOR/LlGj7x5Fn89VOz2N6Zhu24kqRRIF8PD+9K4t/++CNIp64O1n3Lvn78+TOXULYJilVhK/0wennvOrS+ZOGrjWckCdahNOsp38P/6GuUSo4vW6nMtutwbEMogwOjf0w/9LGzCxjLVkQKkkAWGn0egnRfmSrgD9+3H39zag7nl8roJujk9n7s6Ynjsccew8MPH0IVhiTKnpjIYqJQw7Z0GHHDwIn5kvjU+3sTeOeOLmHn26j7sP1a+JED/fjNb1wRf6mdsjoVMvH9+/rQTfnPnV1yHdEvKRbDGHNrTa1o+jaMZ/jn1RLwlOj5tw9swSvzJVzMVWX79/YnJIFJ29URldd6xqQ04zEax796PzvSEfzre0awzGQnIEktytBeKlWkK5HJ5NlaGTYlfhsuHKOB88VljMbSwgDabrxyeD6GYxGU6w2Ml8qYq5JxY2NjSMSkKkEhgRfE7k0VYysWkIBRpb2LtGWr3/NQ9rcVb5g4VyzB0j1hRCHYnhJDtHYWn5YsrY6BSAzFuout4Shm7bLI/jBGJXg+aVlImxZmKhWcL+ZxqKNLCgOdVgbnS3OYcvOiN54yDWieiUrDFsL4iN/RTPaaSr2BTDSMDgLQLcY9DiJWBMW5Ama0WVghC7FoHGZYQ6lOJleg7DlImjq2RXok0X+95jbquFCaVwUBySIE+RBSo2sw/aMnO81YeQGXKtOIiLSWAc/NY8nNYktkAEkzsYLVMvBXGWderkwIUIW5ESZwKWc0Xp3G1ugw4kYchXperiPOLYEknMe0uTFQizI/7DYmq4zu53WESQV1WFrYB6oollnVobqyUYjng1JKrghC8QjV1ddo1FGvNRCmzNPqK4ba8F4ZVZQlL8TtkdklhgSM62RhWY9em/HMzMwMzp49K4Wc9kTvjSRqb5UuRNqmDNCmbdqmbdq3j0lD4NiYFBylqL9jx7dkPQlrEZQ9VdxbbVxPr2Z1z0UkbaFeCTVZvKVY73molKvIL5Vx6PbDVweQ8ldSJwoY/VYiC14Nq0q7HOya/WmEtBpNHyMAobB43RoTj0M1CgdvBw3X9GNsVJvQlsCPCUC6cSOBaCOOiqcY8EJ6GHEtiVp5HMXlKg4dPgy34aLkFpGvZ2UcCYNFd0MY6ghsYV0qpq+sl9A3YTMx/RA2EwfXQsSIIWYkUK6vPYdpK4POsHrJGP2YZtfOndLcy+uLPg7jGdZprsUsNxTtwHsGDmG8soSaMBbG0R9JN0EAd3atlfy5WjNxYPz9m/s78cbeDPIOGRANKfQ/N5XH5WwV6bCHS8tVTBaqkrsuOQ2J/7iJuwZTbc2eypjjZy2EoJD5Yg1fv+BKEzTLASuvhRbLBn32ZYLek60vERjD2IgeJq8bXgHsq2C83lh1qTYbyH0meioGMT7jFZiK2Pjb47MCetjdE5N9cjycaopP8N4RoIPFmoWHnoQlzCCMkVmD+dypBZEMilkGEmEdo50xiW8eP7uAB7ZmMNoZxWg6Iq+nLi9Lc2sqaqGLjDSeh9lCDb2JCJLC+u4JIIfxbySegEbGlfwVJGMdGDDrmB4fw7Gihi2pKHZnTJyYd4RtnjmGQtnBG0Y78PA60ktXs2+OZfGcsIz6d43fJNLeLMI54PH+q8+clvpWOmpJLeyZy8t4cTKFH7tnWGpRQY1GbUf9+Y3LWfz3Z6gC4Uktik0sz1xaFlaVj7xhBC9M5qXu0RWzpE63XLGxvy+Bw4Mb12jYNP2NK1mp8xhtbDrc45Aft/MaoOQvTTWatK7pPR0RfG26CNfTELdaEso1u4G7OqPrPhNJJvDF8Rwu5DnfnrDR3tUbw/39ieY9djXjNgnQ4Iu13KB5i3Ua1mPJwsLnR9BgTCDLjdQxbpWYplxW0nabzCq3uFWrVUE3ctFiIuzpp5+Wvwd0czfVGtSadtZJTmmSGNrImLRwUUMspTpwWJQN650Yn5jG4twS9uzYi0zvtYusvBGHIlswVr4oSZpgGHREhiIjkoy5mcndK6U5SQ4Swcp9Ve0qjFAbklAcM5WcjptVlFyVxAqojaNmCGW3KKwq62mzMxH20EAfHhpYuVhwu+dzDrJzRWHbeNuOLrx3z7WlQDbqPgyMxfL//K49+NWvXMDl5aosdAQ1fHBfL374kAKPBAwWgWNIZySQEGGymC/ug9dXAFxhAmi9h95IJipoyOs1ngNS+fJhfNddd61LMxgYmSj4Cow05M9P5wWoMlmoiSPA5PW2jqggds8ul4XFpa8tCU7wz47OGJ6fzMmfRG1eXCpLlygxWUEiNTCuX1zMhNWEi31NIYPJfMKFk4vlkxeXZaEOunUJmFG/DdiIVrTxts4dQUZlF0W7iO2dEdzWo5KTPEcidUSVLR/AIQwhcrl6sgju7ApjPFvDm7Z14pWZEvI1B8tlVxhOyLSi2GB0pJ+6jJ9+YAuOzxTxzStZzBRsn37cQ3fclIWc+yLiNxUh04dCrFKT8cFtnVgolDAz3sBwV4cAVGr1BhYvLyJs2Bh0ivCMKoqehaphYd9AEj90pB/RVbI6VzNed09dXFZdkCtMJc3JnkIjk8hLEzkBXRFkc2AwJQwkBMkQ9MEO4v0DSQGi5Eo1VFzliPDfj52al+tmwNc2JPiJjsnRKzl8z5EB/Ozbd+EzL09jbKEkDuJ7Dw/iu48MXtUJ+K6DA3hlPIeTUznUnDoWi9Sb1LGzP4Vi1cFUrobRrih29a4Ppnv73h48fWkJT/PYOeeUJrM0bEkC796/FqySqzj46FNjQj84kAoLsImSRn/07LhQJR68itN2tURvO712oKM4NTUljhEdhSDRe60g6Hrp9b8dbDOxu2mbtmmb9q2z1VTJ1zIWFwkmYIDOdSQIVm+2ZZJR/NT778TvfuI58XUCI9vHR777MHo26JZZzFfwg//xb3FqfAmO48I0ysKCct+efhzo13Bkey/e8dBd1xWDvXlfH953xwg+dXQcZQKgfV/x0JZOfPihHa/quDhnAuJfJV3B9whwJTCnKx4RCZTpJbsJVGEySUAJLBzX6sgWbWR8amYmjOgnidSNL3XUbgS/ZKsO+hJh/OKD21Z8xv2WPR3HF8sIhSz0xUL48IH+ZhxE++Ce9Y+FcUcQ3wbdh+328JYO5GouPn58VrrQeK31JUL4hbtHBKgS7F9ouxsN8WMYGwUSIgT2M8nLxCvjjSDRux4Yn+M90puQ142CrphU2rdv31WTQwSpBEbGkLQVxlKtgrxrC5sL9x+3QugJJVBruJipFkVmtj3x1RMOCXsJgSpk6RyIkSGE7CTrc6yYbRI4PMcExNCvJyvL7mQcL2VdFJ1Wc0bjuvpng4Q/MFOrIV030BOl9It6n/69lDIYCgVdkf6vGOPQn414OnKui53xlEgA8f2C7UqX2jhYBACW7XnEjRCGY1EcyxcwVWnA9hRAxNJdRE1ey+y7JS237ndJMoZiASGGTjONRbeAagPo6urHcFcUWXsB1UpFmF6RL6BBeeNYGNGwhdFYhyTzb8SWnQoKdYJzVPGnHZijkrrqTzKxFlwFTooaJoaiScT0KCqNKqZrPM6YnCnHc+Wl+R2IObcgkkXCouLnGXj+S/UKFuxlbI+NwNIsFOoFKaSQUYVAFYJYNjLmU1JGB7L1JbjkxPGBKmRn4bZUEUZDVIutm3PhfZPw0shjeYX0gOd4qOVcmIm1z0UWjMooynZV8YndzsxRNJBC5oZjiXZ67a1bt0piN0j0MsfAf5Neuz3R+3qSAdpki9y0Tdu0Tbv5dqNrEYuM9C8JnGRem8Dl9eoNN8MiegLVemWN5A/X1bixcT7d8bjaFmFGNSTDMTieI78pLVYweWUKgwPDGB3eel1j0D0LDWlqXplB1zyryVxyo8a1l2v2aqNwpgKq+L6lbSPkg/7XbMMvUrcbxyPMLKtYaQJ+TXo+UQJWVrPBsfRjkb2PrPsGUqEUMtpK2c+rAT3YEEjZD9ZX2q8n/n00ugPj1csou/TZlL+aMtIYjLSaJ4J4hi9K446MjDQlRIJmZfqHjGWCF1kbVlvEsLArsX5D5KtpJm43kcAJt/a5NR0RyR82MlCahqAU+v/bMhFsS0UEyNKfCGPHKiZx5rPPzJXQn9IE2MFGzdIswTysVa2t0VD+h/GCqtHUpal5sWTL/u7flsGnjs02G0L4ewJRhMmU51RkL9cTsFL7IQCDLCGsk6h8vvomme+DRpegG5l1FVrN9YS9/+x8Cdu7Y9iSiQjzS67iYjZvY3ypqprYNQ3/8Uvn8SuP7JL9fPnUnDDns0bD+K07YUmMy5pPoeagI2K1mpctHXcNJBCLmJi46EjsONqbQjwyjPmJZSR0B/AKcGJlLNU01EJh9HXE8PfvGULXKlWDa9nzV3IrJXfagCrBpcwxnp8vYbpQk3zDrt4Y7tmakdkiM/7zVxTzCuexUHVQoJSQP5dfPL0gsehOvwmfAqys05ybK8p8/fQDI/j86QW5Jph3eNeeHrxzb8+KeuBqu3MohZeHU3h+Ii/xbbammEK3dEZFqeL8UkVUDLYk15+LHckw7u2J4dn5sp8D0URFIQUbD3avve95Xj59OYtz2SoyYQNJS0fBaeDLkwW5Du/aoBZ0NWM+ifkJviSnUi5LPBPIZLOhOIhnmG+4Wv4pqPHeCjFNqVSSY/uWYBq+Dcz8TnCEuDAxkceFaP/+/a1um28RWIWLslfX4PHB5zOsEEWrNeiErD9uOk0EqsjCQh03orksA/VGHdFQBHccuHPdrn1FDdyilg0saaawM34blpzFJlVuxupC1Hj1Wl4bgVVKdcWKQuphm91dptK5CwC6lm7In0wcGjqZNvjA1aWLKqQb2J/uwfFcXiiPrTYnTcAMgpRde9wn50v4nbM2psoNVI+dlffYxbg9HUUqbKAzZmLfYBzdCRMd4RC2JeLKCbtK92G7bcvE8EcfOICzC2WRsdnZGRNNvWDOee00ZW/a2BF4jkgzxxf3xcQP90VGHyaUmfgJEr2vRleNjhYdLDr2HP+NUvaOpjiXKTx6flHQuqTBHkpaGEyEZX4W6bCUnRVgFR7bW3Z0YSJXxfnFsgBcKGlDdhEeI0ERTNwLoQeBKiZp/ciMoYProtC81T0cGkzibTu78eJUDk9f9hGnnDvRQFRUbYqpRDlC690qzY5G14PtKmCFkjVSSU7+LmBlafujKb2jQC11AZzMFByUbIU8Dr7H++7zpxcFpUsWGDple3vjuLRcwWzRxlTOlsWex8YOWjpzIn+TiSAZNsUpODVXwaWSjvxYFs+MZQXEQmuEo7CScRzoNeA5FWEn6a7N4vlnZ5r64fxzPWd5tdFJC2ZEgb7UhAVU4dKtGTaQq1ECSzlF1E/kZB8eTGOq3sCxqQJemcrj8yfncXmxgkoV+MT8SbxzX484iET5thuPYyZfw1zRxn3bOnHn1oyw0VCeh0w917KuRBj/4rv34qlzCzg5mcOZ2SJOz5ZwZo5/FpGKWKIxyTlcz7j/H7xrSGgET0wrbcX9dO4SNXTE1jpPL0zkBahCcFVANb+1M4pzcyV87fziqwKrXI+OIh0jPmMCHcXg3K6+328VJygoJr1eEbubtmmbtmm3itHnYgc8ZSdvv/12YVRhYow+4bfK/uUPPYCBzgT+4NMvYiFfRmcyin/w3YfxkXcf3vA3H/3MSzh1ZQnJWAiuCWGKLNccfP34OL7vvvvw7ofvXDeOIyCmWLGRioUFGEIjAPc//fCdeNvBAXzx2BSqdgNvuK0XH7hrBIlV0p7Xa8Hau7rAyqTXXLEmPqPj2HBdSl/6AGjGMwZBsoZ8j37iUr6GtN/ZxKTSm3Z0YS+BGgIIIHiltW36yt1xS7ql2o2xzifPL+JTTh+qL0xLYpBJub64hcF4WKiZh2IhhBueAMEPDaQw4ANkNuo+bDfO8wd29+DtWztxdqksIOHb2Knmz28Q06wG0LZLiBCMz6aPAIzPRCx91SDJuxEY/1rGbRF0xc5DynLcSGxP9ouhaFr8/nm7IsyKlP2hBA2laNgAUXIdATnEzNZ10hGysDedwCvLeZRdsmjwd4xT637Hn8+QokgdZbuMHUS2R9dQJaDHMnFbOo396SQulcrSHbnayF4i6cpVyeLVxs+KlGt1NTR8xj2R/mn/QhtgheeLoBYeP9leOGYCZ9h9GQBugp8UnDq+NDuNHckElpwq0hbzECaydhmlOiWN2GlsoKF5qDQcWJohMXvUNBHWTBTrGiYJ0GGsX8zC1PIgjiIcMqB3ZdDd3YkI79lyAaViCefOncR0ZEz8Xl4X9I+vdU4F5uF3KQfHvJJNhsfKP1yQh5x/r9RdzNTyGIikROKo0qhh0VnGsp3HsptDOV4BIkCoMoawps79atCIqRmSH+H7nVYXMmanjIWsKNdzHbIT2NQsVBolOJ4Nu1GDAwflhur45WdRb2PKeXZxRxBDBZQmUiw9btlDo+RtwKpSkb8HckWqr1ETdhcHNig29FqM9zMLK3wJE2qpJPFMQK/NfEN7onf1/f4tawD7FhiP7fVKmb1pm7Zpm3arGJ/FBCtz/XnggQckj74RS8jNMK73aaMbpXpeJG7oaZhkKDOSsmavZ7L+oqQkWjxN4gLDMIUxpGGSueM2pJLrA11acjvtQA8deiMCTwuAJASwEBZt3PQaTbB/HoNdq/nxzkpWlRXfW+WtWgj7kJS1coWy33XANWSuc1IVRNIGxqsX1X48DZZO1jlDmOBSVkpqUjwfnP+gYYOxxYULFySeIQPcembqFrbFdgnoyPUcYXPha71m4vaYZrWECGV6GIMEYHzGOkGD8athk76RZuL1jCwZdw8m8ZXLy8JKwjijn6wjyZDEpCGDDba1NWCVN2zrxLHpguTVGZ8mowbiEVPGQ/ZzFuScoEZjKQkeNud2RBjTQL6zszuOt+/pkd98/tQcao6qLfJ/rO8xzU8m9Gq9AU3meC0SP+DaYKxLsAZrNNyeNNJqZEdsfU+dK7WJgOWdJqzzbkOaSwsVR7YV7MfRPDx9YRm//qULism0VseevgSm8lVMFWqYzFYlPiDDDEE4i2VbQByDKcWuHzF0nJws4NRCHRNOHs9PlqS2EIuZKJoGQqFObN/Wi/2wcX6xhG4vi+NHv7ECtH09dTc57tWyu6vUA1hHYhNJkOc4O1sW2pl7R9MImboAVjiHf3tiHhcWSsgWG9h66Tx++K4hjC2VpdbZbvyNNHQXa8Ie/48eGJG55Nxyrq5l/M7fv3sYhwbzIuM0WbRxKV/FYq2Or5xfkrzBob4EwtvWJ03gft40kEDOdnE6Z8u5Hoha6K8V0Bvbsub74wUbY/kaeqOmbJvWZeiYLTs4Ol/Cke5WjuLVGK8n3sN8Mb/A5wFrsqzTMJ5hPiNgXWH+YvX9HtR4bwVmlWKx+Lpmv781osqbQCl32223CaqyPQnH5O6NyDbciNER0RrhdZ2U9YzI1+aTzF+wq7UaTMtEd18nQutQ0xHlW/ZKAnORJKoXRkxLNhMyESOKQeP6GTterSOUMJUMS9WuIRyyoBtM0NlNp9Dyx9MQel0umEq9kN1ub+4dRVc4iiOZbjwxN40au71Ew9CD7dWRCUWwI7FysSeg4re+cQXjpQZqsvIp7e2FYl202+JhHbu3mpiYy8FaVAtyfzSC7xkexGW/iLxe9+Ga49U0oeZut42SuhvNV7C47d69WxB+RPMSMUzwCh8sQaL3WiwMNP6eDj1/d/jw4VeVFOJ4idw92JtAPGdiIG6hYDdwKVttIV9XOR8CRNGA/YMp1CZygvC8bySNQwNJAfNcWqrI7wj0IN0398EkfjJsiFahYjWJ4UMH+5CJhfDouXkcGEhgsWhjpug0E/rcLRPBdD7oIq3uMg5mOlj8mUCmBiLBImQOERR323ebenmij6gJQwrloh47tyDo5JLsZ/Wx0lGq45kredEuPDKUEoeHwBV2w7KIoRhWQmBDccTUsLMrLuCRWEjHN8dzIh3UHfJENmkuX8XXLy6hUK2LnmM8bCIVNbElHcUbtg/i7Ts70aiqhOCVK1fEyaVzG1w363Wu8t8HBxN44sJSUwJIzZXvPIrToUA/qgtTvUf2molcDUNpW87pExcWBSxCfUgClyitQ01IgkeSliEOFBlIAiNDDueaxx6M40YLRelYCO8+NIh3HBzAb37hjABfdvYk5J7l2F8cW8afPXMFQ11xTBBtSyae4RR29sQFKPO5E3Oyndv6YsiWXUzmq3iiAHywrDQx240ocR5/AFQJjCAebvtm23o6ijyvvN9ZXCRYJTivvN9vFXo52mYX4qZt2qZt2v9ZCxg0CIykDxt0htMX/FYldmlkRPmJdx/Gj7/jdmFB47rP965mn/3GBfEhyC5Sd1TnpEGvTDdwcsbGh1b5NTXHxW9/4nn8j0ePyz76O+P4+Q/ehR9+y15VvNd1vPvwsLxuhrWDVdqNSZPeRAiXFopIWBoiEcZxLJIrZ5KJLyZ1CNC1XcYyEEA7/82E4b9+ZLd8h11i47kqiPkVgINLf9PDB8iWssoneXw8i89eXESRjQ6NluTMBAHSRQf1motZalA3qCOuyRi/92AfPrgtgmMbdB+uZwT037FKqrG9+/BaMQ1jJnYo8hUkftrB+Ez4BDHN9YDxx8fHxTcim8pqhsvrNQIrBqIpLDtsytAFwEGASt5R/p8w06w6JDZK9EU1jDg6JkoOQpqBB3ozIgU0Ua4iZ5OlhKAITaRpFWMOwSwaatRwh4m9qTQOdCQwX7MR03VsjcewWKuh5NYVi4vGAgi1OVV0fzULQBoRK4xl10VGACUtkMvqUyJSpw1PpH8IWlnO1UTe1WkEzJTKFIU7mUtcnMnnMByPIqwbyLsVAbgTuEJGmZBhoNMkcMNFwowgboT9+TRwprAk20hAR8aKYLpawblSRcYXMSqIG8wBmBhNxbG3ZwTJ0VgTtN0ulRn4vuvJSKXNqMTpFV777U0HwcxQFlko6lsgFr7IpFNwyzCtlLDIjldnkHOKwnQiZgDjlWkkDLKbKMBRO8OO69WFPaY5rwISujGfnHJAISMM26ti0ZuHCVO2EXQj5xvLIuvM8bHgY2khhLWoyACxT5t5HFXsUY1HrLdYSXPDpqbVhSHVhe2u6RJ/rSbxXSIhr3Z6bZ5b3u+URG1P9JJafzOm2bRN27RN27TrNebHCFamT8k8eeCXfyvBKrJ9MqOZmWbulMwcV7M6HL+eo3w7Jizp8zIuSSTjiGtrQalKPocMLsofUZCMqIA1aNJk7L06sP0NSZtCsUjaNRu6YcCyCIpZCQYO/l81PwefaQKn5aiF4Q6KxWTltilFuLKOxn3N1CZQNx0/J63AI6z9EFRMJvKuSBcaui3SkdwG5yTSiOP0ibPiY9x7773XBfRgnYu8Eu373qiZeM28aFpT5n01GP/ixYviq94IGP+1NhMHNpAI40hfEjWnIQ2cBKGP52pK7pSSOasaSWmU7TyytQM1zn2uJqzpdwylcXq+hJPTBWny1MgkGTYQMg0BQVC2le/bVgMj6TC+98gQtnXH8BcvTuG2viQqNVcaWdmEwZiVU0pGFqcSCFz6V0NQumwD1QtoRWOs5UmdpiPCuVsNdmp9l/Ez60WLJQePnp7Hqdkilkv2GhkjUW9wGyKx05cK476tGWGhpJxMJhqCAVsY89NRE33psNQ92GwuNUq3ISCPFyZy6LCAbV1RlBzgqYtLUosg2CMeMaRRd7gziod29uKt23YjSiD84uIKqcz2XP56tbsDg8m2a7AlmRQYsRmsewmDJuV5g/smX8VkTjWPn54r4ctnF6XGRvAOt3FsuoRf/9IlaWThnLVz9rB5mrPZXqO5GpPKesbcxgOjHfL65Mk5zEnzuoE4VRgATGYr+Mvjs7hjJI1Jn4mHEr3b02E511+fLaHkehiKGlJbZFP3WS+GmWodO1f1u+bY8E1pplVAmpipy28JioqzoHyTjPdvcD8HNdUgVuX9zhpOEKvyz+D83QpNxUUfrPJ6tdctWIWLxfHjxyW4vvvuu2UxardvdXI3sGuBVAJrf46xs4oOBxfKjRLC7OApIrvi96SIJcI0ja5vCbqKN+zqOeM4K+PLgFWHQW01UpYRiuKzqkjS1VOJXv67J5zC3Zkd4uANRBLNrsN7u/qkw+2VLJlgVGdZfzSG7x7cuqIzkfb18SzmSjVUhdFDHX3dbRXqR/5f9v4DTLL1rA6F164dKofOYXpynjMzJ+ekrKOAJCOwZMAGGRDBmAv4GieCMdj/fZx+A762r8G+gJEMQoggglCOJ8c5YXLqHCvHHe+z3l27u7qne6ZnOsz0ObWkOtOhumrXTt8b1rvWthBisYVGvee6GK1U8f++fgrvNcI4fnz56cNr4XqIKldj+AVyu9cjRcfzmM9jQZcB/VqP77ZUGJeKdVzI1TFXp2yg4k+GOh7GKw0cchcYjafmqvjWpTy+fmoapycrokxChurd29O4fyetbiJ4YawsRA6freufkNmKJYFNRFfxpTOzYhv00w/vxEiuLtfF9q4oejNR+eyUHBvLVUUxhfwIMoBNMmSW+L+LxZAWkuBpd1cce7uiIjfnk2zI2vYDABJgGBf5dkDAeLEhgQqbCH5YsPKkI4NBBk1k2/pWQr4UHvcHmc18fz6HpBUWDmcrppx7D+1K49mRInpiGioNCAmEvoUkyPDNSNyiEglfg+o1tAiimggifrDMZgOTHy6cfJBox/M0CIq4eAYEpUf3duF/Pj0mBJKAsOKfZ/51kIj4dkV8SPzS3IfZsonRfFUK/KO0girUhUwU3GZ4PWWrNrywz6hmYyQT1SWwnSrW8fCeTuztWXlScLU4TzWViZIExCTwBOB+//1nRnBwKI1kWJdjRim8j9zej3zFwvmZijCnSVyRa99zcdEF/uD5MfyDxxfL6nc11VYYCLY2h/hZjg/eWBKxWrT6KPJ653rE652PQF6b9wLeTxgwMfi9ldEmq7TRRhtt3DwbIMaAJKowDrj77rsXkZU3urC78D4hpOOrI/gzPvKLNL7yHtvokWgEDSlAXfk5f/zXv4g/e/K875nOGGE8j5/5r19BvlLHT33ornX/LCuRVbjWPdBRx+U5BSY1DFwgGlbRMB2ZJmPRiA8ScRgH//y79uP49jQG0xGZTAvwf73/EH71y2dFjdCPa1V89Fgvvv8O30o0AD/vV4cLqDq+toL/s+YvPZ/EMz1VFsVNKRiL8qaH//XiGMqjdfy9R1aePrwarjZ9eL2Fn0CFgUXepWR8TiiyoLd0YolFv4mJCdx1110ytbYWREKqKHBO16uiosIckkeX6hu0CqrbNmKqPk9UuVzN4+W5Cl6asZFvcF7URkq3cHd3EndkIhipVjBWq83bObFwaDIn8VykDR1F08bXJrPzFrFUKEkbQFzX4HqabxFpO8iREE+VHFrEcAhDXm3xPg5mXPked3d14Gy5jJxpir2PkG2aJd7Wwi7PhNFaFTXXRUanqo8f5y939+DPWBCsBaz1poIk8xFRjSEBK8TP4E8/cqAkZ5lI6QbCqoo61RObJJHL1RqmGyRYkIhD8offBKEizVxDwZF4SnJ7no98BDZSzGeoBLWUjM/4mOcFZdZ79LiQaPzrvznRybxLCaY7ScD37YqCSUUen4plIqxQccRDxa3CZr2hBRxkqThVxNUoqk4dEdWQZonpWn7TxFhcG7pR1NyqNKfCykJuEfJCqHkV5O056CFDPkfdq6Oh1JFQ0jDRoJaPqLIEMv2K4UFLM+805W8WnyshIeIEzS7/+PodgtafbQSWk9cOCr2cgg5ISLyPMN+5lRVWgvtVW1mljTbaaOPm3IM5SMw653IKGowvN1ItMoAflyrX16NhTZgDk5oqA8XL/TVjAVoGtf4l40z+LILksmokG0FW4X4euTyKSEZFMh0MM7dQTgJWdPMfRhJhStI1rQYDSyKSbD0vjoaowC0oqkRIY1YWxx5VtyI2iIysg7CfRIvg72gHFNOii/pjtKLMN+ZQq1XxwAMP3BDRo9XK9EYs1lci49PineRc5t6BMv7S7VuPYeJWdMd8Bc4LuRpma7bfy6ISTMNGV1SX2j77GcRwoY5vDefw1dOzeGO8JL9jHH6gN4637e7Aod4Evn1+DsP5uqjFc7eEGOdXfIIGex1fIyliroZffOIALs1WReF0W2cM3R0xn+hkOxjOVlGs2jIMK04KLnOAZo+meQqx1M6eD/tEHCB9z6FePHkxh/PZBuiKQ9UTkiwch2qKTe4XiQs1C89czsvGUb2UOcYyZQIBCShUf+d2s7Zftfx+TIwKrmpI+h98jXLdhq6pYr3LnP2xvZ04P1eVvzNrQK5q4enLJelNBYSRcg1CwJjO15FSFfQK8cOYr+Uvp6DeSsYPBBAe2N2BTEyXXoWgRTaS+599D79H4/p2S80eKYdw2SPrThjIVi1cmKtJH4R8jmD4gMMx7LR2RQ3ph/C57N+NFxrY1xPDnduvz4Z1OfA9Xpksozemz7tKEDzu3xwuYMx00BnVJV88la3h7r44emI6hiuWEFz48NUyPdh2GF8cr2Jf9+LtShlU8VSElELFmwBUFOoIa3IcNhLsu/ARXO9UWQqIKzy2QX7AXGE1CqE3E9Vqta2sciviaicNGUYs6jJ5DiTllmKzirurBWVdGZYxOJNCEifEmhcq2bhLSS81CYKWD5AaXg2RZVi+a95GVV0UCHHx5uLMbX706FG8Wh2RKadAXpdFGAYoAfgJdsUHsCt+ZXGIhbp39g/h/u4+TNdr4kfdH4kue5wpgUa2XrCQ+UVX/2se6s4UgxT5jf97ltK4yLPYcmD/DRFVrmf6cDW4Hik6FvtY5KM6EG+q64FtyTAyYQ2vTlcQ10NCVqAk2faUjtmqJZ6JQ6mwNPZfmyrjj54bxUiuJl6DMtFm2/ja2Tm8MJzHPTsy+Ffv2ouvXMji5YmSLJ5cOLviOnZ1xNAR1YVc8sxwHj+TrWKiZApZgwED/fb4b9n0C7OmRWsUiKIGj3Gl4c7vay7WXLz42gywvudYH+7ZnhbW6Xihjt+sXxb5M6qB8HxgAbdYd4RYQlYoi8rHBxKiksLXJLGFpJil8Cf2fOY8gwhO/IkPunjVu7hrWwpxQ8MLo0VRdxlKh/Hwrg5RTvmT12fgug7MWgj5clFINCwGM6DqiGjStNCaSi/n52q4Y3Axc5z3qsHBQXnwXAsWT8oiBueFyGtHU9jWGcG56YofZClB84XNB5JtbAkq6NkeUvygjzkKP9dwroHH9nQIycduIXKI+2gzQGQAct+uDC7MVjGaq0nw+bYDXfjhh3asy4LNwJTqO4tZv54QZajcw/Mm2WSP87z74skZdMV0nJwoYbrUQEgNyT2DgS/toP745Un84APbkWghvty1PYXtHVGcm61iWzosx4HsaQb4j+1bnW/qeoGJy1J5bSrpMMB45pln5uW1GfSycXOrKa5we9s2QG200UYbmwuuF1wr2Nzfv3+/TLkvXYNvtXyGePddO/F7X3odtXpN1mpN02VSjNv+2PHFceyp4Tn82VMLRJXWotS/+fQz+NH3HUdYX9/mZxDHt+Y0tLugGsTH79qO3iEDv/fsKMpUlGOMWvVVAinvG6AnaeDv3j+EdPRKtYhdHVH89vcck8k2xmNUF1yq/kbwNaeqphSklkOlYkos1wrGbWzav2xm8PM3SFRZ7fTh9aowBAW9wCeauTjB+CYgrrD4W6vVZPpwPYi6MtwQjmO0WkTeqs8TU9JGWOyAJupl+ZqqKwWrjhNzVXxj3EKNQw7N15htuPjiWAHdEQ3vGEjj4Z5OPJfNI1u3MFW3pAhLS9neSFjUTGbrJv56dEZyi8kaLWk9dIZVDMQ0ITIVLVcGJVyHk2KqxOhVp2kL1AT9vBm1mxxWCOu4jROeySSm6nVcLpfx5OysUBA0VfUnU8Xux5b35yOtaegPhzFS8wc8lmfgkwZBJRZa8frnGAvZNgkunm8FuzcRQ94yMdOoSzNjKJrE7lgKF6tZVJ0GoNow3RDyJhVT+Te+BVEkpKHuOuhUwqg6Loq2KWqorcclsJGixRNrBgEZn6o6/H1Q5O2OxjAe8gko3F4WY7WQ/4GYpzUcnvFLJjfhoera6PQUeIorSimBLXLw2f1yqd+ESWpxVJ2a/NRQdPSGu5HRrk+mfSVQOWVpnYaKKiTLqE0FFvmZqMZy3rqMhlNHAzV4IX7iYIjCg6IBFa+EDLoW7UtaBpW9oii2iN20mAfZYifEx2ahdfiGisW8l+Tzebmuec1zAjXIVfm4FeWpg+JuG2200UYb64ur3e8ZB3D4kkoWVIhcrra0WQPFqwUV00TRzrElvuVyTaKK32FQryCLWqB68/L0YQs1hBHfcLIK9x/rxoy37rzrTrE4alVgu+IQ0aoFBjRv+VjCUCLQPUNiDp/M4g90LgWJtg5Jwy2/CnI77sOknpi3l1ngyXjQwxqO33MMETWyqcPE1yLjs/cSkPFJsGecw9ghIK7wPZk3rtcwcUBWYQ/mlamyTwDR/M+0vyOGKhVCCnUc6o5L/f+N2Qr+9JVJnJosy/d+uujgpdGi/Iw2Ob/8voN4abSAr52dxXi+jiwJAVEdu7pi6E+GJRd4dayIn/rMCeRrNkYLdSSjVezvS6I3FYbp+3BKv4/HMhM3ULM8qdczepVzR4HU16WvoIbw3sO9+IF7tuHxfV1Sx//vT17G6xMlUWZlVM6eCpX0q81eAGv0B3tjMqgq+pXs0TgrEPCF7OLJwC6JKfxb9nrYN6IS+/7eOJ4bLsiAMHsHD+/uwOH+BL5xMSfPsRshlMbKyNcs2W5NC8n+4P6zLBfJpIpTU2V84HDPVXt3tOHl9TU+Pj4/pCE2mZ1dsg0knDDHl72nKpIbkqjj2wT5uQqPr09V93tgVLO5Y1sSZ2eq0juTFg1zdPZTmetwiMV2cWxbUobC2f8iAYgq9J94YPt1q6ksBx4X1iQ6o4vrLmXbRdly0B2mPZV/nyCB6pWZKg50RHApW8FkxZSGk1g/ySgD8Eq2IT/vb6mB7Ega8jhbaKArokp/jwo5zPfu7o1foYq/keD1zv4LH6yzsT7BPIb9V9Ywgt8HfZqlggI3G5VK5U2dz9y6ow83CJ5cVFRhAs0TbiX5nlutuFuv1jGdn0VXXweMsDEfcCwnsUb4wcLyYPGDRY2NVFbhBfziiy+KIkQw5TmQ6kbOKsNyHJwsnkLFqcuiJX500lhWMFobx87YwIqLeULTkUhc/SZQsXzpqOUQ1rkYLPmhUBb9G+Z0vYGh67ig1zp9uBqsJEVH1RVOLAWqKyQycDvWo5HNRYCM0d2ZiBRSuc9ShiYeeOMlE9NVn6zCCcKXRooS3LTwjhYtaAyA/uiVSfzSe/fLwvwvvnBaXmd3Z2x+sSGDdKZiijVNb9IQ1iYJC5R629kREXUSs0lYcTxKbbsiZZY0bEyV/CIlD7nPMFXwxIFu3LfDJz3RboePs7MV/Mnr075tEZVMQiq6EqoQc+4eSuP5kcK8KkpYVdCQ47j8ecRThgEciTC0NhJ2er6OvoSB7ZmonH+P7M3g8V0dONgdx1TFxOdPz8p2NywHDQvI1a15+Tc2ayi9p4ZcsRXKRF0JopbDVKkh8m8Mmvb3xEVxJTgvgkLv9PmLqNcp5xiCNq8T7iu9eBotuViIBlRRlyFZhur7TfJbSMHOzqgwn2UaMxRI0DXPR57zbDYd6RFGNpnBlNQbykTW7dzvS0WEVJSvWuhoBi88trPlBjIxA7EWL8buuIY/eW4Uk7mqNI4kSQrr0MK+NCW3aKZs4sWRAh7bt1DcpZTfjz+8A596YQwXZ2tyL+pJGPjwsT4cH7x5XuVBY4cBDwOi22+/XQq9PK5sSDKRby30splzswu9b/ZAqI022mjjVkNrsZH+1yspUGzWFOL14G/d04/Pf+cNZCvNeSDTlCb5e+/ZjcePbV/03M99++wVhIwA1YaFl85N44HDixVJ1rO4y/iO0zR8HD16VIqOhw4C33/PkNgivjJaxK/+5SnojisEGoKEacYsn3tpAp94aOeyr891+3DvlYX4VrDQRhLxgu3JYpj0nVn6us0S+UiJqog3XtTl9m2ExC0LOa3qGgEZn/uXsQTzRXpIB/t+PeIbPaSJtSxVOnz7x5CQVhh7lywTVdtCUg+jbDXwypwlxPGl4E9YLPvyeAE/fqgf37d7CCdyJXxhbAZdYR0xbWGKtmo7yJoWopqKlK4gZ3qYrjOmptqKgkLdliKlo2ioOQriOpDWQ6K4QtIJQVI4Xy+qhvChbb4NEtVMdsTjyBgGLlYqmDNZ+PfmyS0kfR1OJlGwrPn8KkxSemvlfxH85zD/NpSQWBWRoE7ZcBIshqK0/fHJJ0PRDuyI9grBZ6yWRdGpzA+cVDwSpGhx5L8LyTLct/wfrY903oOWSRKZj82aVZRtC0ZIRW9fr1xfPPaB6gqHNLJKFd42o0lQCfQvm372Qvpokk44Gio/c33zHI/EnTCoNRuQr+YpSC39EMr874/tQs2tC4GEDREO1awX2AgK6gXB+ey4ogMDLbRQ0xCCnGNj1ptq2hV5UBwaS5HkFGoeLqo6XWlVSkn+GFzUUW3aP1OmP4y44ivU3CwECqAk3W/btk2mEIPpUw5atMprcw27FQq9bQJ+G2200cbmgrEgh1xZ4yJRZSUFilutR2PbDiYZBw6mpRbv51t+s5nEk6XrL22DVsLVfrdePRrWi7mfCe5nrs2+0aCvcOKFaNFDG1P/e9+Kh/2NZky+gtoM4yjaAl0LS+2C5reR9VvGXa1ElRbSPOm3N3uYeDVk/MAuiH0w7nPGPDyneV6sR3zD96RSBfswCcPvQdDCJxPRpc8yWmwIWYXEgVPTZVEdZ+6xVJyVKhXnZyv4L09exm9971F8/K5B/Ju/OYOnLuZxpD8heSxhWq4Mc/K1bxtMSv+iWLXw2mgB+3rjQmCpVmvg6WW7CioNR4aKU4aCsYI5r/7oq7oouGNbCj/64Hb5HDs6ovKgwslvfP2i5LvMjXg2ZGIqdkZUvO9wD75zMYeOmCGfg1Yw1RCHhFfo0QBi10s1kURYlb4F90kmouFgfwLxiIZ7d2dw90ACdw+mpW/4hbNzYNpXqvNDeJgqk3zfzGfEsphqqbQjsoUMQouk5UCCy4nxkgzcspeyf9cuseJl7T6Ie9947VWUi670XYxAPlP6Uk31f9sfZKAafjB4y96MkLo84GBvAn91cs4nsYhDRMuxlR5NCIcHEvjI0X4hAnGgeFdnVF5jPdARZT9QQ7GxoOBDTNExQQtJ/yZAUg/hqyen8YezFbF84jYkkga6uunQ4A/D12wHr2Vri8gqzEk/tCuDvxkp4mKxgZJpy/DHg9tiuGsdFPzXAtoYk4zGoYpHHnlkfnCcueobb7whqitLFUJvJsrl8pt6oPhNQ1bhIkVJOZ5YLDZeSxb5VirucsELLF62DcTRsGuoVWvIpDuhIXzdcnG+nOz6g0EAF2kSgugxyUkpPoKLlP92GklkzTxMz0I4pCMqbEwfLBBV7RpKdgUp/cYvKvJ4Wsty/lTglYt0AD8AwrwE9I1Iyi28z8bfkBhU8lzgokd1IC6CLKysRoruesCFggQVWgK1wg8hAjUTBRMFv9HPjx70E4L9zz1DlurnTkyK1+HHbh8QkkqpXlzEivRl1oCeuI50hMSmMEo1CzkyeHM1OLYtbNuoogqJxbZ9ufVEWBcrIf6PbFvK4n34SC/ed2gx25V4z8EeDOdruJD1/dS5rVxQ33ugW6Thnh8rCoElFVHRlzREzWWluJib/tjujBRgXx4vYjAVFsshEisoWcaA6I6BDA71+A38E5NlUaG5f3sazw7nUG4q0FDlhPuI283X9NMb/2cMLBbtd8/DV85l8aevTkmhm2AQ9u4DXfjI0b75QiAflu3gP5x7Aag3JeaaR4V1XEpTJkMQVRoGjSx0870liKF8M4Pb2UrA4RISUmDXKmViDzIBfFt/QgJHSsytN7Z3RnHf7k58+Y0pCQrjYVVshnjMdvUkJMAheO398dPDuDxbaVGr9ODUKZvtQQuH5UdV0xb5vKXY0x3Dv3j3PgznakJS2p6JILoOrOP1QODvzmS9VU6fBBYGRbz+Ax/FIChiofdmyGvz/kMmeRtttNFGG+uPpbEl77mc6OD9fiWFyFtxCpHrGmPV4swE/uCfvR9//vw4/vqpU0jGwvj4O4/jY48fusLe9MJU4aqveXGysGFklcBnnITRpT7pJLzet7MDv//0iHzfmVh8DIo1C3/+6uSKZJXVQGmSFm4Ey9kpbeb04fWQ8fl+Y2NjEkfwe8Y4ly5dkhwnyGfWqiqnhVREFQVhdSFGWlD3bBIIPAXZxuIcuTWfbHAy0bLxhxen8P37+jAQDSOhaZIvBXuLCosknWhKCCmdcsUkcTjImw5ypgtdSNUeUhEDZduXOa7aipBaOsOGkN1JUGGO1BMO4+29PeiOLj63UrqOOzo68Eo+j1qzVsFt5PPv7OrCU7OzYkvEayllhJG1LJiWvUA6X3JoGVMfT3diol4VFZVuI4aE5qHDUGCDdkJx9IUzQlSpOSbmzBI69QgajoKphjWvUMJiqigltXiJk5JBK6aktjhXoB3Ti/lJTDeqfhFWgTznznQfuozo/JAGCfmXS1N4rnTePxqBqnhA9m/aAUnhVmyBmpOKJH7QutQqIaJ6yx5Racx4HtJawvdwVxfnXeuFWCiOGuXvYULz/IlrG7Qa4kCBPs9DM11T1FFamzn82oIFzSW5qqmQuQzxh9sfVeIIe9EmWYXz3Ooto1oS5DSt8tr8WUDGDxRCAyso1jJuRqGX90DmWW/m4m4bbbTRxq0CrsG0AmRuwOE7Nv2vdt+/lcgqbASSlMA1bfvQDthooFQpIap3IaxEoSo3n3zZqn7P9ZZEFa6xt91223xM7VOLA0W2hj/IuKgN6BOFPYWWpzdeZ1wunWHMyFo06THzb9WC4Fy4noxmM4aJr0bGZ45OUE2FvRnGNxyWZ0wb1HTXpCpHkoyhYWd6cZ+ndR8xh8hVrHkFjoCD35rTUMWDw7r/8q/P4OfesVeIEC+PFmVQonVIlsqng11RJCM6hrpiyJcaMqzK+rvnUv1EQzylY6bYEHJLpe6gI65jbxfJR4r0W6gA884DPfjE/duuyOUe2d0p7/vKWEHyMB67qB7Co3u7cHQggacuF+DJYG9ISCDFuq/Avhx4PrFHcfeOjNgH0U5mWyaK7lQYquYrrz+4PY1jvQnZR2fnqpioWHhoTwe+fXYOozx0nq9syvMyoYVERZ95Cs9fDiMc7L1yQJPD2f/z6VFMl9iD8B0JHtiZwQ8/OISwYSwa0vgfl18CCiXpywQHhfkKc7F4WEHZdYQgI1ZK/DUVK6ls77p45lJeeqaiusLUqeWgs5dG9ZQ7t6Vlnx8ZWP/hWxJUHtyewl+cnpX+XTKsCeGnbjvYlo5ITyvAF16bxmsjhXnbZ/bv8rm6EHL6BlJCylFJ/lnmWKbDGr53bwdm67YQq7oimhBWbgUEdRI+WJsIhsUajcZ8jyZQCA1UWXjPDSxRNxPVN7lS5JYlq7Te/HnisNjIxYJed6tJQG+FQIgXNYt1586dw+HDh+ctXiqVGl5/6Qze/va3r/i3K2tC+JZCG7XPGQRRBo1qALS0WA6+N+FyM4L+VnOaay3gzZIsw1aEVAWOTfmueSGVebR6fZ+fquFzz5wUMsDR/gQ+eLgPu7tiN2X6cCXwPA6ks3k+Bze+a0nRLfWFvxZIHDmT9RmPnA4k+DVfgr8jOiO6SKMtxdJgid//1elZsWF5cGdGWKdk6JKdyeMxU7EkACEJgqQBSpdRhYS+iPmai96Ehq5kVJicVFkZJ3HB9UT9hYzc77vDJ8FcDUPpCH7iwZ14ejiPc3NVWQTv3JaSB9m3XzufxVixgYFkWCTZL2VrwnINAmufTe4zX/kv/fjeub8LHzzc7dsGqSHkapYUmklWIQGGyNZM8ZXMhFV/X7k2XrSqMD1VgsSkERKyD78msYfB3G19cdmuVnCb//iVSViuK4QaehmSzfzHJ6awsyMq6jABypQYD6ly3i+qaTbl5DhbykCUBBVOIlJeTaUPpO0iE9UxUWg0SRseGnZTNrB50fJ5f/vOASGqbBS4P3/gwR0SFD95blYISgw0d/QkkGv406kk2lyaKWMkW4WuhfzGTAuz2G3YcHXdl9Vzgf7U8tvL31Pq8FYD7y9L7ytSTG8WelvltRkUUWWJBdZAdYWBEde6zUjO2lOIbbTRRhubg8COhsRUxn3Xij9vhXwmyMUYu3IQgNN8XMdu27cDH7wtLpMqLFIvhzv29OKz3zy94usO9a6PVcdScO0k8Z5EIG7vSoQgyTmWq8AqQK3FFuhGt+FqFVqq5zWWiCwET6eF5p9fmsOZQk2sJe/oSuCB3uR8bHqziSqt5zOLuBxuCGysqKzC7WFsw5yGVqfMfcQSplnovR4yPu1sUlpYVDyo4BF8Pip6UGGFqihEV5jNBTG9nP/bpTQHPlhY+/L4LD68vVcIK5cqNXSHaR8aQtVxYLouOg1d9nXeAgqWK3Eof05qyY4EidEhZDwNM3UTZdsRsfhOXceeZAIP9nTKa10NRzMZpA1DLIH4nj2RCPYkEugwDOxKxPFKLi+fO6ZqSBkGsq0qPKLouJALM9rfZkSwKxqXgnCwDxqu5U8Hh/Qm+cNF3qqiTnsdI4EdMQ1WyS+4NqTQSiUTSn3TckeRwmpYV7EzlhaiSytOl+YwXi8jSmJLiL7yLubMKl7KT+Jt3TtlwnB+c0OkpPiThcFPpUjbHIoIyfXXHDzhdC+33yOJxR8ikc/RvJZa7YL4NT/bYHhjydZUVunQulFyCrA8f4ggGopLvYN2QAGqbml+knnp9DEl+jkowuNztaEjElpCm2j7s5acht8HhVwiUAjldc8pRf4+yGf42IxCb9BkCjzp22ijjTbaWD+0xpdcFziNTrXwu+66S+7318KtMlA8NTUluRjJNcxf+Lkcx8C3n30a73jHO6AatwZRheBayhzsueeeW9EyFquihNwYeT5Aq9VQACr3MbZs0mGutExs1p+naza+MzGObMNGX9TAvd0p7EnFNtzK9EYUT6m2QCvToOcY2IcEqius2TKnZC7DPg2b3dfTS+qOMm8JSb+KQ75o2t+wT3Ms7b8nG/vsfRCtKWrrEQzUNp66lMdvf2cYHzjai79+Y1r6IgPpcFOdvCH5AlXPGX3OFRso1mzpw+QqJjrjBrb1JOX92Bu5nK1KTb4rrmN7R0wUW+5tqt2vBA5//INHd+E7F7J4daIkfYk7h9J4cHdG+kKD6WmxwNnRGZW+3OmZMpS6r/TTCuYgPNRsYTxxsAvvOdAlZxR7TLQFIukhYaiINUkPHNA9m61J74WK+Y/t78K3GwU4IQ1zZUvUaoiKaaPO3ooo9sfx6B4/Zm1VVPkfT49itmwiE9flODQsD184NSvK8x86tpBjsOdTd/082++0tB4bP3ehqE1wxoY1v8dE8gyJIZNlU74Pa5jfpuA1yDF6bF+HKONsJB7b1SGkn6dGCiiZjpyLb9udQdGj5ZIruS/VZ14dK0nfTNdU6esRruOiUrHEMcEwNDlvYysMooiK0DJ9xlsxnyF4TQ8ODsqD9ZTACopkTNYxmFcExBUS8zejf1x5k6vfb1mySgA28lgcJZORQdBqp85v9iQi35vFu1wuJ4sdG5DXU3imDJsFX8KqFbzxhbH+k0MMGqmowoWYBIqrJfkZPSnFLBZptKaPowQWngNDNdakqkL0soneVIQg5j0aWThueChVPKQSC0FLsNDV6x5+49vD6I4ZCOsh/OXJmnja/cK79+NAUyHjZhd1yeAOJBJbGdHXkqILyC1BkZc3yWtJ0Q3EDezvjOK16QpmKw0JHmmTcqQnPi/VxaDgB+4awBden15Wji0gTdGyJx1R8a2LOfzKu/fhiUPd+Pr57LzKCQMHmQrTQzg3VxapOPq5+/LMCoqmh6TlYmdGR0/cEDIIA7TvOd6Ph3Z2LGJxXg19yTA+fNuVRUkGEt9zvA9//sY0LuZqmKMl0ZIJRFHgIQnC8xVN7hiILyRLYiPlIR1W5xceEleeGS3iYr6ON2YqsnAf7Y2jP2ngeKeCe/b14QsnZ6EpnMT0vRUZnL3zQDe+/65BCUha8cpYCVn6J4YUTFcsX2Jb4fSujc+/MbOIrEK5Pk4Yipxcc8pwnsfh0hMdcBWSU/xqLwvLqg0J3o70JTBdMcXaJxlRxUKHrGxeJnxvEmM+fvcgTk6W8dTlnARmZDnT83Eos373FrK0/8792/FddwygUrcl+CPB6VPPjuHsTEU++2vDefk86ZiGmfIS6UxusFSxfcJUJnbrBTurmUJcjbw2H0EiFMgMkugY/D4o9G6UvPabnbXbRhtttHGzwfiD5HXe2wM7mtUgyBnWy1LlRhBM83Ed4ra3rm2t8tTL4W8/fgD/8n89CXuZ5yRjEdy7f/0bzVxHA8u9O++886oFhYf3dkkMTHK11iSCBOTZtx3oXvO2kFhcd/34cyniiTAqFfMKG05urprQ8IWRnBCz2eQfLs/hYqmOH9jXK7HczZw+DN6bDenAXmnpgAPPERZx+eBzmf+0kvGZ6wSFXhZ9rrbd/F1/JI6qbeJypSr5CvdrT9jAtlhSiuVERg/jYDqMF2bry5bkGa8z9h6I6ShZNs6Wqnj7QBf+ZmwGU3VT9jMPPe1T04Y/bUaSCM8H2r5IQKqomDEd7NR1pHQDcU3HWLWOwWgY7xjoRm8kLO9xLfA5O+NxeSzFbekMKraNkWoVeduU3GEpgok8nis94YiQQOavw+Z5EFZI+Pb3zWyjgolGEQWrJg/KfZPck4aCTlXDpGFgpmEjpKgwHZoCucgYGu7KdGFvbHGh2nIdIaqEFA81py5i83wXUlKmzbK8z/bowt8Unar4m/N5rae6qLm4tMUhQcWXrJTpPbHXAaKKjpQWR4k2Q4oOy3PA//lq2v79sEfvQkQ1MNWYQ94q+Wo/WhJdRtqXpF8nGEoYnWqPvL8MPkBFzasKQcVsEliotkJQFWWp5P28JL/nz0BvNawmp2lVCOXz2fDhvXh4eFgamrzOWwu9G3GvCsgqbWWVNtpoo42NA2tHrE8zxqBC5GoJyDebrNKaix07dmyRWn8QL10tp1FhwFmmR+P/bv3rdFxLqVxIMigtYxk3rww/OvELqFeOFive2mIiXWklnDIuDgaY/Up12aogaSQWdfD5Je1hPnVuCnVLFeLzTM3EuWIVH9nZi9s6ErfcMDGVOJeSazmUwUHDYNgwIOOT3MLzmbHNasn4HH5lP+bFyRLemCpJLbwnGcb+7hh2taitfPhwN/6fb1+WYdilCMj3VMqgQsuLIwV89M4B/L37tuPTz4/h/ExVnmeoqqikdMZ1nJ4qI1+lTZQrBCMW4yuWh5lCA4PbUuiN6dIrujBbxfsP9+FDx/vQucrhVg7LfuC2Pnm0gu2QH7pvO/7Xc6OihJ6vWKjUF1wNluY1tFolmaT1GrTtEOJ6aL63QpLK8+MlIaqcmavK98ypqKx/W1cIj9y2DZ99eRqOxfzNRaFGCyPm+5340Ye2S9+oFa+MFUVpxjBUGXwOiEC0juVQ8Qdu65lXhS81HMlBOURiNt0gWsGekO1yuN+/CPhcWptSqYWK8JqmyPA3DzNVXGg5TDUavjoJQn/vniGM5ur49oUsRnJ19CYNPLS7Awf71o/AwhrC47s78MD2tFj0sI/nQsHfXM7jQqEuF+2l2YoQUfi7WkuPUAYfXA+Nuk9W4XN7Y1uLcsBz61r5DO89rCHxwWGcVisoDkLxXkWSWtDHuZpC8lpQbtsA3ZrgCcDk9vTp09dgkN56k4gM3ljUJWFmuWm+1WxbTEmi5GWvmMzR+T8lvO7bSwm84KK71jSKHtKxN7EDZ0oXYXm+r3LgGb0vsXPNxSESHq5AcwKL/zk7bOHoPh2G3rQnkgY+8NrpmkxBulEPvYmwX0jN1fDHJybwz96576YTVXhzI4ObQQ5lka/13mxMs5nR6v9N5vpqpehYyy5VLbw0nGuSHxSxuzkmPnPKPCHj6xdzGOqM4mIzqFn0GiG/oNqRMCSAKDdsCZjeua9LyAVfv5AVpmVHTBPJuBdGi/KaiudPIYoXHtU8FEUILMI0VRi4hIR4cv/2zIpEFS7etP3h+5JZzMXyarhvO217EhL0/euvXpSf+ftkQbEj+P6eoTR60/FFXpit1ySDj785m8VwqYGeqIHBpIFTM1W8Munhti7DZziHQvjg0V50RzScn6sJM7UnZSAV1fHMWFGk33e1kD9Y9Oa+oZoKAxkiZoSEBEPVlWLDFuUZgp6B3H/cffNe7vP/9XnriXAIDcsR5RRfvpsfzcGFqSx0XUNHREWu7p/nJLVSHJJBRSys4befHhV1HDKN+f4vjBTxnQt5/INHd4iE4HqCARkfxEBKxY8+vAOvTZQwXWwgrni4MFGcbzQsm29BEe/MOAOiLYSVWLtXAxOh1kJvoLrChHppoXc95bXf7IFQG2200cbNBJNcxtkkJDIvuJ77bZBQc025GTZxwUTJSrlYIE+9EnozcfzsR+/Bf/zj5+E0J3MIQ1fxrz/xCCLrvLYHuSNzLyp8XGsd/u47BvEHz4/i9XE2utmI9hUghjqi+KEHd6x5e2KagpIVEKdb950HI6wilY6iVKzPK0pysiqVMJDORFB3PPSrIYkJaTfzRq6K04UajnTEbpqVaasdFHOSu+++e9FAxnLgdjFm4SPw/2ZOFPjC8/cBcWUlYi5LeZdLwPmyLXkHVUf2JA3sTy6cP+dKVRiqh7AK0Lp88d83lTgoBBJypZhYMG10GBru7EzhG1NZTNVM2f8xNYTZuiVKKlTeYWzNHJfTZyJ3ToKF27RTJSkkFMKORAz90ZUL1EXLQsG0EFZVdIeNqxJa+Nke7u7BnGniRC6P4Up9WbUOfse7wyO9vXK+B/ltcG4E+z7v1HG+mpVzMKGGUbUbmDErQkhh0Zqkk6Goij2xFGqugpJdRUylugwnAquYtjx06x3QQ/6+tj0XpmujYDXkvGzyyhGhrLJChZXyIrKKKIrIFEpg20uSFckrQXrGo6vBVex5SWyLRWCzjumGKeouIb0p403Ci0s1FgUhVUXFbuBU+RKKdnn+/J+zCsjbJeyNbV8+v7hB8PW1ljmwmBKHruhouCRHeaiiAguN5f+25drXb0HllPXOaVrltVnz4FR4UOjlmkIE+Qz/Xa9CL8kqfK2bsVa20UYbbbwVwNiNqvesUR86dOi61gbem7ke3AxwEJS1eK4Ty+ViAUHian0aAxHURGNvad6jwFjngWJuLwkUwbp2daKKH2eEXB1uKNi/LU1mT5NIay1YGrf6cbXfpOF7F6wCwqohw8tNZ3cZHv3qSAm5hg32tFN6WArcsw0LX5/I4mA67qu436LDxMuhlYzP8z8g44+Pj8+T8QNl/JWIuY2GjadPz+Byti55RW/CwLY7B4UEQdAm5w+fn0BvRBMyxlJnWFEm9DzEVEVyIg7Nclj3ob2dGM5V8bmXp1CoW+iMceBBxbOX8shWTYn5mW9GdM0/30lYafixtygxqiH0JsNiq7MSUYUkBirYcxsH0xFR1r8a2Fv4F+/Zj5OTJfybL54TssNK4ADtQ3u75fMF50NrrstE5msX83hjtoauqCa9rdemKjgxVcbtvcyNAUdR8IHjvejWVQzn6ijQtqYrhr50GOeqNkK5Gg5kIvPHpWq6oiQyk63K13wNqmcGSihjJRM7miSimB4SlXzatIaE9ONv1nxOzmEKTUFEIanGtx5i24f7fbZIizENnWENJcu/bgxNgeJ6CBuq9Ev+4vUpXJityTBxRFfx4qiD71zM4YfuG8IjexcrwqwV7MeFWyxe378rgwuFBqarJno1Bc+emVuGWs9BAbpe+PcS9pFSqxw6v1UQ3GOuB8YSK6hAdYUDOKw5UW04IK7wPrJeRLtKW1nl1gQLumzKswgWyIteD24WazcI3igftJK8N38W3NBWOpFVRUMSnah7VdgwZfHQEUZEia3r4t26vSQ8UBJvNdgZ24aIGsZwZRxVp46EFsPO2CB6IteW/7sWqLrBwmyV0lhL1jLut2oNePENE72dKqIRBToLazkX2bwjslpzVQtDGd9mhDLaJyZKaNiOeN4Fi91mB0EszPBGRjso7uvrBbc38P9erRTdqZkKPvf6lOyzw70J2Qf09fuP37qEv3vnIB7Z1YFPvTwuaimZhI5tbhTTeU7bLVgt0WMvZIQwVm5gvNyQQGqu0sDvvTiBl8dLUsjlXhzN10U2zLTIJqXnOePQELalwiLZlqtRfs2B7Xii+nEpRym4CL59OecTR5YEOSdnyvirM7OYKnPSEeiK6XjXnk7cs+3qk1g83iR85Gu8ZvwpSvFObPkTMnMf29s571VHtBZ3+bg4V8FwoY6hlCHTm3syUSmOksH7+owDwwrheEzH23ZlJMBuKDk5vxg08ZSlcspTo0XZFkrqEQz+JkumBGjB9C5VVbivyPCdKJnzZBXuZ24aC+IaPdxFPcUv7HI7/ORAQSyswxcl9xGNaCg6HhTHQSJkYarUDCiowuIBcVWVoPXPXp2S99zfVBziZz87U8XnTkzhn75zDR6cqwClAh9uyu+9/UAXvnhiQs6p+XcMZB9pbSTS4cDe3hgG0xvDWL2ZU4hXQ6u8NuVJOVERFHpbfRSDQu9a5LXbNkBttNFGGxsHKlCwQMvpw+ttogXP32yyCtcwklSoung1eW+uc9cqPP/zj9+HfYMZ/NZfv4qRmRIODmXwk991J564Z9eGbC9zRxYMr0aiCUBf6E///XvwW9++jL94dVKKcO853ItPProL/anVW9WshHRYx0xt3s39CgPTVDqCSFRDXabdPJmeciO+vSTjX1rWMCeKqCEUGjYul+s4nInetOnDoNhPwgmnD6/HzicA45VWMj4VGIJ8hhNLzHWCQi8LQPyMT07nhYySMQxEwgrylo1XsmWRFH/fUA80z8Nfj82iZFrYFgOm6y4qFtsJPk3AVytkTEyVGl/lsBgL45VsEV+dzCLbMOUYSYHU8mCJYqgfH1NtJBJS0BOhFZEpk3IsDpuOg8m6iTr/rdVxpljGnkRskQUO7XFezOZxoVyR5/F3VF95oLsTqauo5QmBJxxG2bLlXGAhWSSm5bd+bM9P1mkY6AyHl81peI7wMVkrClGMVkrMB3qMBOasCnJWDXrIQSykYtBIYijahZxdQN5SEFFj8yqqJbsihJO+sN8oiYQ0VB0LFRJ5gn3GWNJxYIjNjdX0ZPe3h8onMn/LbZbmBc9vfgyeu4HFKUn6fswfzAOHDQ0O9UosG3Vey/78Q9MKiMVgA1W3jrJVRUZLzA/L2J6DrFVAp5VCt+F7kW8UOGmsq378bXkm5pzpZW1+qMTiHzoPMW3rkcPXmtOwThFc8zw3OYDDfIYT47xvs7kT5DNrKfSyabTcAE8bbbTRRhtrB2MKxtds0nO46npxswaK2VwkIYHrA4kqK6kVX4uAT8JHFAmYqMNpqqmRbEuiylrJIEvXMpK5ub1UL2RsvBpwWxTWjBULHhXruFUkqnhrzx/5+fg/n6Ls/8SPTJvNes/BVHUKMS0mcRFj8KcnQ3gjV4euhGC6DiyPZHMVKV1DtmFhrmGiN2JsmWHi1ZLxSebn8AQ/T6syPvP4iWIdv/XksCiOH+qNS1x4ZqaCX//6RUwUG/joHQP4i9em8KcnJkThIxUC8kssY5iHeI4rueN4ro5UREWxbuHff/k8vnaGuRCtJ4ER9mhsD6btK4Kw78D6el9MlwHWMf7e8on57J+cnq6ISsrTl/PSr9jTtdiqiYPgf/TSBC5lq7Cojh7RpK/yvsMLqp/LgQPMh3oTGMs3Wno0PpkjkMHnwPrj+7qgNWPNIOYMhor573ipgXPZGvpjmjyfRAm7O4rTczWcmK4gbKnopnLIrk4MpcP4xnhJelHdUU32R8F08Wq2hqShYrDZf+pN6LKfqESvNclC5bqNct3Bvj4VM1VrnqxCggcHrdnTUhUPRsi3ziEpy5Gk0f+8EUNHw6FupD8Aw0FiM2SgYjroD5kYzVPT31ePDzKp7ZmIqPazH0QroMAVgISbz70yibu2pxHbQGIIe1WHO6PycAeT+MtXp3B2ttrsoylCcuKtmwo00SjvJ74rwVDCeNMpq1wNPC4kofHBa551kaBHQ6Ulvn6gusKchsPIaxGVGFilEvNWxJYdK+DC/Oijj95wsrrZgRBvJCTXsNB25MiRqwZvrTfeq30+ElbiSmpD5ZvPnj0rBIqhoSFhg4bCCmbNSdieBU0xkNIyMELhFSSZe+RxPe95eraC16bKcuO+YzCJPZ1XehUe7E6gI6LDcvyCINcv3uRbB8pYHxub9qV4B+M6XNtfWELN53Lxo+QwhzgjVGCRop17U2Syz5w5I6w7Fvt541oPrEaK7ptZQ+xX9vUkUKzbODVTRrnhyIL9X54eFqLK5XxdFE+kKM59FSMTuhk4BIQVkfsic1QRtZDff3kSZ2crUmDsjOgSmFBSrtKgBBuluSGLLBffySYrlIs4GwDfukS1IAURI4SS7eB3X57A1y7l8Ml7tklBeaJiCrv3W5dyQurYlvQLq1MVE39+elZk8/a1BE3cv5QWJFGE28HvqXJC9RcphC4B44++RBg7ltjdBNdhcG1W3ar8zNDUZqHaw/5ObosH1XWwK+Lgg4d7MFFq4FOvTcl7cruM7pgQZvoTBi7l6yIlF5BVzs1Vmq8lW958X3+by5Z/LgcYLTYwmIqgULNQptLkMgRkBlS1VvP2pjQdpf6YqFQ9F7GwI4EUg1AKFtmOjalCBYW6i2PRhWKp0pTOuzBXxWzFRE9ic4ghmZiBX/3oUfzzP3oV06XGgiknj2c0Ih/bCEGC9q1WeLwR1u7VwIZQq49iUOglcYWqK0ySAkYvv76e927bALXRRhttbBxIOGSsdiPrWBCzbmZOQ3Ikp/m41pBgc7VE+1pTiAS3/2OPH5THRoDFQRahGf8G28vC0Weeuoxvn31FCANP3LkD3/fYfsSbHtat6IgZ+Pn37JfHasFY+tW5CmbrNjrCGo53xcTzeylu74kL2bvSVMFrJarIf6k2GNbkwXhnqDuG8SqtLH3CAeNz+StRlWBzXLlpRd1A9p379957710X8lSrAkMrGZ+FXkq1s8kd6+rGKUdH0ggjqoZEAYVTmSx8n8yXpdhN8ggL36wVSs4YAuLhK8Nnfi/ihh4JLQ3M1C3xJ2cOkZQcwJOf+WqFLjQlhLgWEsL3dN2fSmSBlrZBsw1fCp6TjReKZVwuV3BbJoWHejPImXXUXRvjFRMXynWkDR19ehim62GsUsNTXhbvGugV5ckAzF257VRr4XHl9N5krSF/01LP9ek3Hs8FoC8SRXTJcWjNaWjpY9Wo2EhLoKafOlR0awnM2RVoto1eJYbBSBcuVEo4W+EkHXN8DX2RkBBAIiywOjWYrgUjRDseb4GoIqSZYMqThA1P9s+ife5BLIlKto2G6xNTZDuDrzzA9Fi4beqPyMfz0PBcxHVNSCp8LhVu+GLMD/keJbsmEueq5m9nAJJs+J4Fu7LhZJVWZEJdqLs1VLziop+zucPmALebTaSwt/52zhuJaw1YXS94bi8nr80HlWP5XgFZnznN9RDiSL4nwa2NNtpoo431B+OKhx9++IZjz5sxUEwSO8keu3btknzsatu+mh4SSRthbNw6Mz09LQQKqllye0m0CUcMeCGSY5q0andlpRQFKlRa/qwsYHEFqnYNOSsv631STyClXangHFEjoibnuM68FaMQqWlTO/8sxmZleBYwVY2gaC4MWovDe7PWy3iX/SBGbsH5sNWGiVdDxqdKdisZn7nOiWIYk4UaDvUnpZ5/YozK9DaqDQe/9Z1L+KvXp3A5W0O+ZkkOSCtSugh4LbmgT8IHQlrIJ0u4IXyGJJLZqpwhmaiGiKZKX2U0X4PC2D/kK57HwypyVVvU2dlrq1k2nrzAHo2vlEHhyN9/fgxfOjWLn3xkJ3oyEYwXG5IrffmNabHyoQIKiRvsG/zlG9NCcHmkOYw636Npkj8CAv9YoYZsuSEDzH5O0+zf8fwJKbLNR/qvdHhoJeNXC6aYccYMTfIx7pUdSV36HOyDDMLEhw92oW4Dv/f8OF6aLAkJ5MhgEn2pCDJhFRMVF6Nlc56scma2Kj0u9mgkC5FBX/8cZU+p9YykQn5PPIxkuIK5qm/FO3+ZNb9g/YHHLlCQ5AuyT5ZO0jlBQ85VEItY8rkt2xWLItd1MJEtIVdxRS0m2Df8dyAVlsFw2jMdHby6A8Z6gfv7l969Fz//l2cwUmiInRKh6yH09if8YwIPDw0khOTyVu7RkPjY19cnj8D2mD0aikCwD8yaSUBc4TDO9RBlKpXKm1r9fsuSVQgeyOU8vlcDFtDIctoMcIFlcs3F6L777rumHPLNlvTmBUpSAxdOFht50cjPwzY69yVRdptFFq+GillEjz6AmLq2i4QL7f94bhRfOT8nCxfxmVdD+MiRXnzs+OJG9P7OKB7ekcHnT0+LXUpzHfI3ybuSfJBkcVjzlTy4+JEsQPIC34fWK+892CU3U2Izpw+D84I3GZ4XG1U8WUmKbuTMJColCxN2GZdqKqqOIhY1aPgBIZmSIqns+TcKn/hAsEjqL7xBUESFj864imRUw+vTJSECMUIKGLS0B2Lxl0En/19s+Co3JKjwNRjA0MplpmrCICM1rEpwxELs82MFXMzVcP+ODlEUOTtXwflsDQe7ycr2j9dgMozzOdrwlIQUwm0i6ek7w3khsiQNDbf1xvHGZBlfPjO7LFGFYP30UG8Mx5YJhFqRMCiN13K+SHDtSlG0V6uj31PwzKU5fPa1GVzM1aVoOlao4+RUGe852C1+j/x7WhkFuJxviF9hIAfH14xqCkzPQ910xWpofjtF4cXzAwFlQfovuEz843LldpP5SsWUbNWGaVGizS/ohljRdukDr2Ci7MBzHMzOzMCKh6UIyIc4Gy3jH7nR+MDtg7h7Zwd+9H+9hNfHaZ/EG7gq8nq8vrtiKu4auvo99VbERt7fW5WWOAUQsPhZ6GVyy+ujtdB7NXltPpf3qGvZv7XRRhtttHHj9+zVqHzcCgR85jIkfnDtWK0c8lo+21pB4ianD7keUlFFJMYtB//iz4bx+nhlPn762qvj+L2vn8Zf/eIHkIyubQposmrif7wxjYnqgm/9F6M6PnGoFzuSi9fbd+/I4PnJEqok5LaaOi4TamUiui+pq6si+8x4OqL5apwF01dY2Z8M3xSiCs8LElVYgD1w4MCGvfdSMj5jmzNTs8iVyqi5OeTDEcxCg85cQqWXtoO8afvkCa9ZPF8hRiZ4FVH9g/uSOaJFAgRIeuf+hBDgGYf65HKhSKDs+KQKfh1VFSl2svBLJZG4RrkPRTQOK5aN70zPYbRawr60Ia95slgREka3wryAEtsKuiKGEGX4GIhG0HAcvFEo4lKlKsQqKrikdQMnckVcrFAivFnQbSqqBB+NBIiDqaTYBq0ELaQiHNJQ80y5NiTvaxa+DWhwig0onWl8a3oCI42qKKZwOyfqNrZFDRxLx8VKx/Rs3+MeQNasSR4juWDTmtSflFRk+xsOc5eFbWIeYjoaaiSqNKch+Ft+rOXIRE3pFMnl4koUJa8mBBSSVzwOUFBxUvOPB+2IrZqLyfwUImE/p5GYt0mi2Uzwmhw0dqDg5DBnT8r0Mcu5tJDypxIdhBxjTRN9NwNSjOcQ0AZt93Ly2sxn2GBkoTeQ1w4KvVer5QSF3a024NBGG220sVWwlrh/M/MZUY4+e1YULo4fPy7NxGthNQT8jdzeCxcuyOPYsWOyJhKaHsK9D9wOKMF2MQAz4bnro5gyXpvESG0cttckjdRC6DY6sTexa1Esx0HqjN6FaWdCbCQZEwqZNdimJrj60ioz3wgjqqmiPkFlQcbEfJAEULJs7EvFkGoqWWymlelGDRNfTSWbeRMJ/+zRTF4aRbFQxRQqGK5SucOVAU7uCsb17CeQxCBxl8JafsvebcoLBrEye2VdCV3+/sx0GabJ4+IJUYUo1EwZ3maUTkIICR11m70dElxcJMM6OhM6ZimDQ7XRuC7kFxJkXp0o4f/885N459FebO+MYjzXwKuTZVFbYT+HA8W9iTBqpounLuXw8O4OOYZnZyr4ytlZIVeQ0HLnthTG8zX8xavTknct5Gd+zib0K9eT97h/19WPRcLQpT/kKgoMTZ8nU6uKjR7dQb/m4Px0Cf/v85OiwFK1PZyfLOPESAHvP96P/X0JUc2vtvRoqGojdjwKr32/NxZmz4b2ng0HA609Go/5DEes2fWaN8LyB+aFdCJzDleAz6GtEvdr1fT7ZLQcCoVUgOQvJYSJit+jKeZymHEq8z0aZhL+ADk2FUf6kvjDH7gd//obl/DMWAleSEEiRZtNXyuSI+6HO7YW+X49lCJXq7REciT7wblcTmoZVCQjP4H3m6BHE41Gr3rfa5NV3qTgCcjJwI0GFx0WSZloc5pvNVYMwQl5MwIh7hMWoQlK4AXTKgw27Jjvid0K3n5nrSlsD61NUvU7l3P4m7OzMnXYHfOnGskg/dzr03IjPN5CHpCJG82Vm7Uwhn3t4+bvFl6TXxqcnKpasqBQXowLO9mbw/m6LKDH+hP4yJGeTQ2AWqdSWRgkUWUlqcGNvEHeW4pi8o1JTNs2Zmsm3cBRdkzYUFGDJwVxkikcjwv8vLBy8ErNfe3/jMX+REQXdRXuV2H4NiOlumkJSUh43CEq2aiykHMB5kFiQNCTNCSYYgHYdlx0aLq8d81iMARRIHnqchZ3DqZkapJ/M1ezkQlriDUnVcnazNX8QOrliRI+89qUkKCo4jJdbuBr5+ZQEiWSla8rkkO++/jANSXUdnVEhTU7XGgIiYSfeaZmY3yOMuQVfCeSxPmTw0KIEsFrFzBtV4KPZ4bzeOJgtwQ6tLQKkAr7BAyep3yuv38V2KaDwZQhTOcAw/mG2BDVpDmhSFAZHB0OGVorDCQwnaDNUphEv6bfJY8dVW5afePT8QjcsA5d81CtVJHN5THVUHH3tgRUswKXUnnXIHaRiPT6dAUnp8tyHHd2RHG8P4Gea/hWLof+TBTHdnViuBIQc5qBHzwkDEWsvfZia2EjA6GrsfhbfRRbvVODoGg5ee03eyDURhtttHEzsdb4c7MmEanUxTWDChec6FvNdt8sSe/WaUlO5/MRbO/vfPUUXh2rLHou49JXL2fxH/7sFfzLj997w+/JNfaz5+cwRhW6qK8iyJh4qmrhD8/N4ufuGFyklhFjUcf1rSl948zlC04RTUGYqoMWFfGaaoGioudgynHFBuht/UkMNOOzzcxpWNClghuLrSSRbBZ4bvX29iLR2YXTF8ZRaJjI1k3UOEVomWhwP4T8eJeS0iYVIVun3FaAqIs05UDm7XWEoELyPafh/IPE48BpPRJYrGZMyvg6qWnINUwhbLAAnzGoGuLIZF7D9XC+2EDdgdg1qfNWOiaMEItSTXUcj6QOR4r2T87M4WKlgqiqCuHjdKGEqTpVYhaUdQjmYPJpmySPbkPH0czVydxSTGbOUp5F1TERDelwFA85q4rLUwXY0TjOw0G+WJBiq8cdAr8Ye8l10Wvo6IzQklSFFvLzlFhIa57jqiieBFsYEHy6wwvxJD/nRKOKguNIAVdyyIC25dH6x58qlL9v1YpkvqgoKLu0S/VVZrh/W5/Hn4dCGqKGjkhEg1W3kMvnpImiRXVYoRhqSm1VEsyWZ6HqVFB3WT8IIRaKIRqKLWrUrBZR0EJJFwuj4MP4tkwuDJkdoBLp1iGsBPf3zRj4aZXXZqGXhd2g0Mt7UCCv3VrofSv5u7fRRhttbGWwNr4ZOQPXjldeeUXU+h544IFV17luFgG/dfiZFptcAwlGtOGYimVDkZANzyFt+MbzgbJdwXBtzB+iDEVkDbZdGzPmHJKNBPojvYue75pU7Lagan673u/WLIreJHa9UNAwXPYQDjlS2zdpT+mGMEfJCwA9ER3vHshsupXpZg0TLwe+144dO3BvLYpns5cw59gYLVal0VJybVjcl2Fd8gCHOY3jD2Mvtpa8skfDvgZ3IS+rwM6UP+d1RisbPtPv0VDlDyjxZx4QoS1o0ifSMz61ZTpXgxIKiV0Nc1sqn3/p1SncvTODoY6I9GNoMcTB5I5mn4PvTyURHvfhbA2//dSw1O4747oMNP8/376MKeZFZitRJRgq8AkrzKU/dLQP25p2OythWyosj0u5uvRoSIahtc/lmSJmJmfxpJHExVPnxRKJQw1sRzHf43ZQFWZnV1R6UN2phcGSRJj5jT9MzdxH9rJCNRRbbI76W3obtGm6OFdFoW4jqiuoU3YzIOyHSNJafrvZzpouNtCd8PtK7BnRnokEJf41MwIOJiQjYYSiBsIRRSyWC4UiphuKDCNnlBocJ3bN/oI4fhQbOJOroWg66I3pONgRxcAN9Gjihob793ZixMVC/0+22EOYOfASJc2tAF4Xm3XP4XoXiArwuJA7wHyGpLVzTfXYQBmfuc3SY0sRgjdzj2ZLK6usBZtRPKVEMafYKRt28ODBVZ/0vPndjEDoatOSVbcs/y7MRy3AhYOGWxP/6hvFk5fyohRB1ZMAnTEdI4Uanh3JLyKrnLo8hj99fVKmkcg05F4NJIWDBn/w9QM7OzCWq8kEIlmbj+zulMIXF9jdHRHcuz2FqK5talGXU54kqnA/U1ZuMwOwVvQldExXbLEAIruZBVOSHjKUxXZs2JZfLOOeocrJ8vD3G89UBhnbOqI40B2XQMRs2CjVTVTrnCxtkiFCigQNZE2btilVYDJvR5t2Q8H7XGoEgZM/+sZJOQY137yUQ1+cU6OUpfOPIxfziUIdkxVTbIfydQvfuJSXIvHOpp0Pg7ps2RSbo+U+CYMUVeVCH5XJ1WshYag43BPDly5k8exYUSYwq8U8Ls01kEokpcCar9sSZMVIlKJCiuvJNO8bU2Xs6gxjX1ccgwl9fgL2Xfu78dxoURZ6vj4L0PSHZOD4t476TH8uYtwPXzk7J4VgnvY8ZouUVZQQQqrLS2MRSMxlpZkB6M6+CF4vN3yyUFP2m7dDR3FFSm57RwQhF5hosAgcg6NHsSel4G3bVAngA2WOYJJtqTIHf//V81k8P1YU0pOhKnKNX5irCTmMyjLXAzaRSDBLRDR5LZKA5PO7NryQJ+fwVsNmBkI34qPIZI3PoTLLWmyAvvnNb+Lf/bt/hxdeeEEaWn/yJ3+Cj3zkI4vOlV/+5V/Gb/3Wb8kaROnY//pf/6s0QwNw+/7hP/yH+PznPy/77KMf/Sh+/dd//U0dnLXRRhtt3CrFXcYpbARSeppTZlz7V4ubMYXIdYVJPu1Mb7/9diE0tOJ3vnp6/uvW6J+h1B9869yayCpTNUuKQPRpDojAjGU7IqpYvgyXGtid8ott3C+fee4kpmqMi2WuTYp5y4FqH3d0RnGpYsnrvntbBjuTYeQaNjTFw4FUBENxY9OnDznhyalU7md6rt8MkKhDO56JOi0+Q0K28FRD8sOU66Dq2EIE4rlIBcFr1e0bHm2cPCQjIZGSpr0PLYWshgWbch+K6EQKeYPkFBIyKo6LMF/f9TBBa55mUZj/1m1LVEKCrJpF5rFqAwXTRkxTmgVMR6yKaIVDwg1zGE6WTlRrGKlW0WUYEk8TuYYl9qALVQKlhfSgiP0Pz7n+WGxeXvtqyOhRRNUwJusluF4VBguZMyU0tDA6EwnMNupCsuHnjakkQrlie1S2HVxi81810KVnEJJ9A6SMMHrDMYzWyqLcEshlU/kkpRnYH++cH4QZqxVQsDgBTEII00KWOD3fAz2wNQpsZ5vbG+Q8vqUTyTE6Cqg298TCcAX/G1bCSKgR2KoNTTeQSBiSQ4brKsqTBTx9emRemWMlwjaJKllrDqbXkMlhNmoabh2maiKj+pOi1wMLptROaMkaKJXyc9O/3jPYduCc5NYhqwT1qpuR03DYh/d3PgIlSOYzXKs4MU+yCvNUym3feeedayLft/OZNtpoo42t36Ph0BZ7HlwLSFS5nqHRm0HAJ6GGw8/M9a4cfvYtUoJBviuiEcUGvBsfis2arKk780QVgsRky7Ex25hbRFbJF/IYrlyCHtOEiMw4bmmkGjjUH0jHUTJ1VGg1GQ3jsf5umhNJXJnWVBxKRUQl460wTLwU7EdkKxYmi3WYtl+7rVtA2ghB9yzYlq+iyMNOq57lsbDfJjlcm4lgX08cubKJiVIDhWoDlunnJjwoJEiwRxM3VDQsX90+Htakx8JeCwkcTE8b9OoElfT8oQiedSSifPtcFgNp356GPZqyaYsaynC2ipF8DQd7E8hVLXzj3JxYAx3o9QfdOaQ8U25grkIb1Ss/BQeUqSbTlzRkv1wLzI9v60ngUq6GFyfK8vdurYLXL2Whh2NIhQzMVWsyGByFgkTEV/Nnb+HcdAUvjRdxqDeBbTFtvkfzwcO9+JMTU7If2KuUfMZypZ/1gebQO0FVmL86OS2fif1GmdWevzKv3qOhcgqtgI4MGjgzVYXt+LZMso+odMPeS0zDnq44IqqCiaqFUCgKRw+jPwa8b4+ByxfO4eypN0RhMMhpliNbvTpbxdOT5Xk10NfnarhcbODt29NXqL+uBrRMojpSxAih4fjnJXuJruMhxx9sMWzmQHEreKzZb+GDpDXHcebJ+FR6IjmJx5b3f96rmNOwR/Nmzmm2NFlFbpA3aAO0kVOIwla7eFG850j6uBGPu80OhMbGxqQQTd9DTqosDQxs9+qWSSzkrN4x+EpwQSOR4Qp4EEJCa1H0q68Pw1HToqwiyhNNgkPrJpN8wN/Sn/y3P3ZcFCSSTWWKQA7sZshks3jCZj+bxMvt580Cg4hvXMgJMYNkCgYtwcRbLGygK6bj9EwFaUMRgkWW44iClbeXSilcuL//jn48O1zE518fF/UT2/PVb2RS0KXcnH/dkZTBYioJJDyGvse6v5zT9oYehsL6dT3onCilrDYTjIYtx9pyLFRrFkZIdKFfoKLgL6vTuJStIhrW0ElLoyb4NzyPAjbxUqQiVHuhVJ0hbNyrgfvpyZECnh0vCiOXjNrZbA5TBQvxeAJ7uuO4nKvJuUtiBYlUZOTqHqX1bNlPBzrjeHAoBV3x5D7EbX/X3jRenejGX5+eEzYyQXn39x7owgcOdWOqbOLlyRJOTVfw9EheJPXkkuFuE+nsBdk/XkusGbIgK+qJSmB0BVE22dUVw/m5mhCEhBBEtUgSh6hslDAwkIrg++8YEJlBqtWQwHL/zgy64sYiZQ7eN06ePClKPUFQRIIDlXBenaqgN27MX3c9cU/sm6h68+79q2908f2euZjDaLYqBKi+rpgEz/yMhXIVs1V70WTpVgHv77eC1PdKPoq//du/jf/8n/8zhoaGJElmUs/14WqWQcuBhWE2sf7+3//7+O7v/u4rfv9v/+2/xW/8xm/gd3/3d+W++Iu/+It473vfK+tRoOz1/d///RJEfelLXxJyzSc+8Ql88pOfxKc//el12w9ttNFGG1sVG5kzBMU7xsxUXFyNCsHSbdtM8j1jKg4KcC1baVqSnthYIR4s1hase24EVNlgUalVPQWBBQoLXM2cJVCyvFSNQdXDTQXCK1V2RJ9CAaqOh0OZOL7vQKJJkvDtf3jcg1x4M5vFfF+u0yxg0DL2ZpJHh8t1sfrpCevIWzaqtj/IwAJnTyKGmbopBfE0PORYQGza5iw9A4KSAv+hBHRn2MDbB7rxNyNTOF+oi5KHq/g0Ar6E5XkoWrS/8f+GGiJUTOH3C/QRn4SheoAlqiS+yiGVcvj3daqJUCXEszFRKaNo+WoqPMafH53GvmRUip4BUSUgqyx/RflUDVoJsfA8GL12Zl5zbJwsziBnNmCEdFQaNYxki7D0OAaSKURUFdP12vzr87PEhIBCgg63X0GP0Sl2PEFdhefhw5kBfNEeRsEmEYU5HpBUDTzevV2ujZxZRNEp4UKljKxZl+nb+eMgpK3g3G9qs9DCab7Z0RxK8ageE0fDqyPkUPbbt9VxOMjCSUyFPvU6uvVOpPQoiravppTS48h0phDaxiKwfQVhOyDjBzaZVFQhUSWiNOWYhXzjoOpWEAvFhRCzWpCgU3ZKMF2SzAAdunzGoKblq0be/NzgesB9ttnTz8uB28D7EB9U/mqV1/7pn/5pUQajwiTXsNOnT1+3XVk7n2mjjTbaWN29+Eax0T2QQHGRNScOZF3vtm52j4bxCXMw1umWH3K9Rg20RYH+RsBYRwT7rshNmNMs7AfW6U6dO4n+Y90S8NJCZkFXz/8L+W/zZcJaFT984HZRqmB8y7gwyGluRo/mVhkmJv7m5LQMq+7oiGI4V4dF63glBF3TsKM3juxoEXHNQ4cCjJaufS6S0FKq2/jo7f1iW/M/n7yI4awluRD3ORUimbcUa/4QM/sHRM2yYVG9vRmP+2qefv+B0SpzE9bj44YipBD+LckiVPys1UxcnK76A6UeMJlv4MeKJzCQCSMTWyAh8fXyVWuehL4UdF0QuyT2LzqvPRhPVfevXcqJCkkmomI2X8LYdAGqEcWRgbQQZjgEyx5N0H+KGf6xrlsuEqEQ7uuJIa769QRib1cEP/7Qdvz3p0ZlGDno8Ty4K4OffHiHKJ6+nq1hhCoz53KYq/l2qeytsPcV5IRCMGpaynp0LhAySmg+h0xHNRweSGE010Cx5udxMrcd8ns0XfEwOmIa/u4922RIfKJYR1fMwD070tjeEV1WmYPxbpDPkOhQczy8QvslWs42e2VdUZ5HDZyYqWKoqeyyWowV6nhtrIh8xcJgOoKBuC69JZKaxqu0uN6aPZqbnc8Ea013d/f8IFBwbL/4xS/in/yTfyLDFawlseb1/ve/f15t682U02xpssqtOIXImxoDoEKhIIxMnkQ3gs2aRGQwQKbW6Ogo7rjjDpEgWg7h0NULXsZ1FGqWw7H+JF6dLM0TGAJCBW/0B3visi9I8mDR4diRw/jSc5Oo2ZQT85vZRKu/nZBMFUUWFF/ZIbSIpEJsZhDE9+bkYUBgWo0n5kbicr6O0WIDe7qiQohIZ6sYLTRk8aZsGQOkuKEhGlYRDQO5XK3F43154ooELq4nDM27oznEBk2YHUM4l7fwwmhRCvFk6fpS2r5gHQuyDFJF0pxMXJ+vIvDPBX9h50LPojNB8gOnD8Mh4Ox0RdiwDJCobsK/eWmsiMF0GImBhRs2SSKBOIwfICzeH7maI0SVj9zWu8huZzlMlE28OFFCytCQ0Hyil24A5zwDfZp/TpGZTJa7773uk26orlKzFLElenh3Fzqi2qKgnF//zMNDeGJ/B751uSjb+ciuDI4PpoUw8tWLOeTqPlGnZvn7j6o0tE9qnSJcODaeBJB+AXRBYu7wQAKzNRsxkn9Chox+cio3BAe6bqDYsLG3K4ZDfXEc7k9cU5nDNM35Qi/lNPn7mVAauaKKgYFMy/mhCLHnQrYmn3U11x6f95nnx/CpZ0YxOVeV454rNdCXiWKwO4ZCw0HcCMl5vNUQJGK3Elptwn7t134NP/uzP4vPfvaz+Mf/+B/j53/+5/FjP/ZjePvb3473ve99eOKJJyTJvxb4XD5WOr7/6T/9J/zCL/wCPvzhD8vPfu/3fk/uj3/6p3+Kj3/840KG+sIXvoDnnnsO99xzjzznN3/zNyUo+/f//t/fEBm0jTbaaOPNZgO0ETkDY+6geLdUcfFmb9vVrFfZYCZRZSXr1T19SUzlq4umEIP4qS+zNsnn/piOtKEJeYKEkgAsZiV1VQpBzBG5nSxADMa7cWG8JAT75cDtYk7D7cxSVpijVs3182YVdRn3Md7jezPXvV4S63rjUrkmRKChRAS9jovhSl2sgJgTzFLqmRNfqip5TaVuSn7pozV/XJrTkDChIGE3sHN6GIPpTihdPThTrIrSCgvxQfRNOrjYmJKUofgDE0SrKGWr+ZDYEjHPF1n1EEg9oZJLlpOIjNVpL0QpbcvGq/myWDsxnwgKiJUrrqeF1+Zv6o6HPYkYDqWvXbgaqxWFLNJpRFAtV5CbyiKa6UCJipvz+4LnF+kkJGLxe5FqFA/4rnASPfEuORda85mEquFDPbtwsV5C3jYR1zQcSnQhQosks4AZKyckjZrLfceBBv+95Mg0C7cL+6z12Cwop/A1abFEGyGqq9RdGyptn0xHiDdi36RwGjWODj2JTiO9bD2oVZkjIGyz+EZCAyfckjsSiMTCQGThjkE1Uss1YXkmwljd+W97FibNSSGr2HBgelSvNBFTI6JAI8VtWifdgLXQzcStmM8sldfm5CALusw3eFxZoGX+wFyGj3e84x3XJNy185k22mijjY3FRg0Uc31nz4OkxeUUF1cLrnWbRcBn74DrFRX6OWm/PK4R+3NodA1IaL4CBpVSGLPJS7KO77lI66lFSpZH77gNZT0vynOSk3CacmFD/MitGW87im9pGtXURT2at/IwMVGoWXh5tIht6Si6Ezp6kmGcmS5LPkOngJmKKXY07DVQcXy8UoazogK+Dx61gMi+L1XH9+9qoHpsOy4XPXzjXBbFmiX9GL9H48L0qF7uNQdjFRkgttyFBoo8T+x5/K/Zo+GxpDI8f0jbn5MjBRnQZRrM7SVeGy+JbdDxHQuxOBVOaHcj2yk2mIu3PV+z0RHX8cSRHuy+Rr2fg8nfGcnLtu3piEgcr4fqOOVGZIg3+CzcVvagJKdxPMT1EBpUjtRDeHgog75kdNEwCM/Jv328Fw/uSOGLZ7KoWS7uHkrh0b2dQuD/zkQZk1ULMRUo1SzYLqSHRlsjqicGqYyQVpTg4ZNWAnAo5fiuDOo8TmEVfamw7L+oCjiWiUTcEOWW3mQYxweSMLanr6nM0UrYZj2dZAI70YVJK4Y9HYvjXVo2zdSo2ukixeO4Cjw9nMfvvTCOs3M11B0X09ma2CcdGEqhYjOvY15+/dZCNxs83swfbjXEYjF5/PAP/zA+9rGPCUHkJ3/yJ/GpT31KFFKouhX0aLjGXes+thVymlsvs9wkbETxlOykp59+Wm4EPFlulKgSbN9GB0LcTibvtCvitORKRBUiQl9mb/kblwYDRmhthcp37uvC9kwUY8U65qqmLMRU+6ClzL39MTz77LMy3c/tvHdnj1iqLHi7X3khSpGLE291W1RbWou6xGYGQXxPXsyXLl3C3XfffdOJKgQDnqDwyf2wuzOGQ71xIYLwe9ou/bO378aHj/ShZvuLFqWqF2yWlgqn+z+ZLDbwT/7iNfz6K2Vc0PpwZLADv/LufdjVGRWiQURjsVhFmAoeMUMCGJ9xubA9gWw6gx/+jt+GmsGMyKMzkHE9YXAyuJGypUupbQ8x3femn6vaYpfDoI6gD+H81i4Tz5Gfwm18bE/HNfcdz0sGKTHVJyBxMdu9c0g+U54jleJtqAkTmO/FbSZTl2op/Gzcz5SQ4znI65zNFLITWeznax3pT+KT9w3iR+4ZwKHuqFynZ+cqmK2a2JkOS4BFcg4DLAYGLI63BnYkybKX4Re1faKMWCopwEM7O/DRo7042hdHTzyM2/uTSEW1eUIQt3EwFca79net+vqgMkeioxv7Dx3Go48+iuPHjyMWCUvB9/z5CxgeGZYgicxPNghIjlrta5OpS7IKg96hjqiwqiO6isl8DdlSAzFdwbHesCjFbDXcLIm56wEblB/84Afla6qFPfPMM3j88cfxuc99TvxyeW6uBXxNTri8613vmv8Z102+9lNPPSXf818ywYMgiODzef1we9poo4023upY7+JuQLB+/vnnsWfPHhw7duyG16vNIt9ziojrBdctxtorEVWIn/0uJvH+1wt0X7+A9A/ed3RN20GCynu2pyVunapaKJgOpquWxFjv2JZGaXZachoWRI8ePYpdqYjEcteCr/axoDTJ4y2KiJtc1GWuy+1nzMp1+WYTVYimJo38l8MJuxJR9EaYY/g5xdv6O/DRXX3oDOtykJNaoF0R5DNX7j8ekteyJfzfr13Aa8keaN19uL+nAx/a3rswGRoK+Q8SYTRfwdBXWGlanzLHar7efM4qfvK0BqUKCIu9nljAFJuCPnxtEdn2PIT5PKqXOL5SKPMkyWevmFRr/RwKoqqKg6kUMle5BmSbPA+zjaoQeYqFIiYmJzDQP4CeZFLep9Gcmk1qGmh8xLfl39Qdf/ggrKjYGfcLnjwPmQ/wfOC1x0dY13EgnsG9qR4ciXUg5FKBs4G8VSQlAxHWDjxFXtu39PEbIPPg75o5YLAnA6F7/v2x1CB69Q7EQzGE1QgSWoxmT77qqsz0eug2Ukhrq7OxlEJvIo5tO4bE7uyRRx7xFTosW+4v5y9cwMTEOIrFAizbj3+XWiNfDXNWFlW3CkMxoCs6NGiyjTW3Lnmt3XAQw9azt9wK+QzPTw5lUQWKhVQOWVA9knn3P/pH/wi/9Eu/tKbXb+czbbTRRhvr16O5UfX8lQjWzGdISiCR/UaJKq3bt9FrKpXeSAJhPrMyUYUxSEhiyBWxQv9mteg0MkhpSTTcBhpOAw3XRNWpIaKG0aN3yUDD+Pi41O76uvoXxUQrpyaMZV15zYAMEBzzzR4mJsmGRBUOZJCscjOJKvM9mvnhbUWsb27flkZvIiw5BdVFful9B/CTj+6SPgj7KlSIv9pW8yOR9PEvP/8G/vFfXsJT5U4MdnXgVz5wEI/s6ZAeC3NX9oEiuoaehAFD9wn1TeF7iaznezRyjjbVDqWHwOFjDyGVf+OhWDFRtTh07sfV/B3r9ySKZJkXVy2xDhIlEMudT8GWu+Q1FWJh9MHb+q55bCbKDeQbNrqjmgzis069a+cOIbuIkj+HqnXuL00+BL+v2w4KTLI8vx9GhZLWHg1zmqBHs7Mzhh+5fxt+6uEhPLgzJefsaKkuRJXBmA7X9oRExIEF9n74+kF6z49G3gb3YTDHIj2a5jDK4b4EfuiebbitO47uqI7b+hLoifs5K+1dszVHhn6/60ivDCuvBtzmRLoTu/bul940c/ZMKoFGrYoLly5Lb5J9YA76WDaJRQt9uGuBVk6ffmlCemI7OiLoTFBNX8VsoYGRmYrYAg3oLvZn1uK98dZWVrkaSK6nZQ/PTQ4W0/b07/ydvyNcBPbjuHa8GXKaW48ytElY70CDFzqnzGiZQFnRtZ7gGx0IsZHMqT4y70gAuRZ7TNQU3E7MOhPQWpQnWGjpMwbXvLDTmuQX3rEXf/7GNJ4dzUtD/gMHu/G2oShOvPCsFJ9Z1OV+HSnUZQLL98C++utyIfzy2Tl816Hum8LU5SLJSR4GyZw+vF759I3CjkxEyCIkBQ2lfQ9KHgMGDHcMRvB/PrZbpvqyVRPPjOSFYECyyTPDhaaSRyuaSjhN0sloyUMmEkJupIALuTr+zu0DQpRISmDgq6AMxsLia/jM5QLKJtUxNFkgqSBCubkA5BZxESfBk3/XHQ9jIG7gTLUsCjAEfy4y2/R6N215Lyq8HO9PCNNzwmmI1HZwRQZl0FYR8HuHUqi7Hs7O1oStei2Ylonh4XEkEwk/4VEUDKXDOD9bFRWXhK6iL2Hgct4FleXoMcgAMxXR8beO9sm+XQqem8F9o5VdzsdMhfLczcUTnqizTNGvfpn+BmM+7ktKjvsydyGE9RB2d0Txz9+5GwPJCI70JITscyFbxa6OKKbyLuaqLg71xPCzj+7C9lUGFi+NFvFnr07hwlxVAqfH93biI8f78OBte3HBmkCpZiKt2hIETc7lkLNC2LkzgakpVWS2r+UF+vzlHCoNG4f6k6L2Q5KapvJze7AsB0e7DbxrV3yRPPpWwVYIhAgeOwZCPFa8B/NBpRXe09bq5cogiFhK4OP3we/479KiAtcrnj/Bc9poo4023spYT7VIxhyU+GRRl0VS3mvXgo0m3wfFRibqR44cwbZt2675N+++Ywg/9PAQfv+pcV8No2kZ872P7MEn3nlwzdv0UH8SMU3FtyYKmKA0biqCh/uT6ChO4PXh4UVTnTXbEQnmBqfWroFvThTxnh1pIVvcDKIKicfMabZv335D8ukbhW2xME5kS/Ny4iy2dYV1iYHf3t+Ju7p9hRGmKdmGjf6YgbOFCuZM38JnOTgice0hFzLEK/7p6RzGqnUc60jAoAJGSBU6BNUkO8KGyD2fKdYk1o9rVN1wxUqo9eX9OT5flT0cUtEd0UWeu+b41j8Eo0ISGGgLH20WDdOGLq85U/ftq6jKwpxsOURCCvqjEYzVVqdiyLct5Auo5goY2jaEaCyKsONI4bpg2YiqOlI67ZUsIalE1ZCc2/y7/kgUu+NX5kxBbBsQGFpVV+pOA6ZrwVB0+RnJPlS+qbvc4wvgnvIVOP183y/b09qHNBUF+xPd2Jfol+fuhILzlQmxANJUVaZ6+azBSBcOxoZWpVTCqeGR2gwmGjmRto+pYWyPdMt1GnfjyNlZeKaHWqWGfL6AmfwMdE2Xxk13Z4+oTV5tX1NKv+KWZfs1UPXFgx2ym7maf57Ucg1E06sj1txK2Cr5TJDTBNOJJK3wQTCnWQva+UwbbbTRho+1xIZBT2K9SJC0LmfPg6rBq+l53GwCPtciWoSSkL5q61XXQLmaRSLJ4b2Wfe/q10WoXQ5UkTuY3Ifx2iRmzSxo7tMd6URXqAMnnn9FjhG3k419xjLzhGPGbfMkmisDbcbnM/Up9BuDN8XKlOfXqVOnpIfHXHctQ+briY6Yjn09cbwwUkBGBkoVdMUNIZSQtPGvv+uQfE9QFaU/GRayyhdPzQpBYrmUhnE0FURGijaq0RCyYyVcyF7ARKEu9ft4RJXeG/OXvlREBkRfHy9hLF8XMgyHjdkTqlMyJHhN2ttQSTLkD8T2JA3pKZyZLGO2ZMoh1zno3OwRcYA8ylq+4+HYQBLjJRNTJRP1hn2Fokqgn8h/b9+WEhLM65NlIYtcC67jYGR4BLquSa7Kc2p3dxzj+TrmKqYo6dNeif0njVaicd3vlWgqPnysb37fXq1H0zoEXzIdsR71XKrLeEhHdSEG2VSq8S+Cpo0WxDaV+0uGFuD3aNjfIDnol9+7D3cOJHFXXwIzuZocf5JAZksNTFqm9O4++eAQjg9eu09FXJit4o9eHMcr4yXZj/fvyuBv3zWIO/btwkgoi/GyiYxiolatYnR8AnOOisNpHflpC2rTAvVqeG2yLIPhuzNRmDLE4KHKYQndQ7Fs4liPgQO6h/Q1HAtuRWwFAn7rABGJKxyA+vEf/3F5vJl6NFvv7FlHP8T1mELkzerChQvyICNzvSwJNpKswgI0i41k6e7fv3/V+5FTSxeeGsGDb38ADmyZCoqG6J2+PoHFQDKMH7t/Oz5535Bsk3hKnngR+/btWyTJlq1ZspiGQwqqrit2KyQnLF2d+S33IMkv79/fselFXSrBMNikagYneW4lOSmySj90pAefemlCiAZcKGumI2SKjxzpnSdTUNGCz61alKamJ6EKw3FQNhfvbAkyA/seRUGh4SFbN8Va6MR4SYIYrtJ8Lb42iSulhoNEmD59nrBd6f1HS5/glbmY+xOKPvN1X2cEnfEwZsqmkBW6YzqqJlnYTRUR+sdTaSUEDKQM/NCdg7jEwITMXdfFL3zhLGYrlsQMAfhnCSOE7kQYw4W6+CZeC3G3jmJ2Fr0dKfT2dsuLsEA+kImgM6qLusx02ZR9SjudpOEXT7tiGt61vxuP7r62esvSoKgjFsGlvO9/2J8Ky34bKy4w1gMmskxkSmLgHw+SjDqiuhB69vfEMVexhKRERvEP3rMNXzo7h5NTZSgJDcc6gL/32L5VE1VOjBfxH75+UYJPvgel9z7z8gSG8zX803fuxTv2duIr57KYqSlQjDTiPRncllBwJGlJY4nNMBZ3Ax9FLrRLr0+ydYMfZaI6DvaEJDAac6tCsvrwvjB2d289xu5WCoRIbCSpcemxudrUehtttNFGG1vPBogKaIxbiVUXSTdp25YDX5fThyRRMM7mhMdq9/ePv2MX3n1bN84WDSE7v/PYNtyxe/Wqctd6/Tt74vIIpgZpETtRKMhUCovmAai8QmKALUXeq1vL500Hp3NV3N0d3/SchlNqlCOnl/utZr+3NxmVx7liVcjaQXF0RzyCw5mF5n/MrxJK4Za5SEQNSQF4xWqAQoWOEEokjtddzDQsvDxXkl+REGNw+k5jkZeqNy7iqm9rU5UiJskWC8qTfE5wFTBn2RaLym8rngWtmdOSNO8rr/iqjCSs8Ovd8Rge6u3ERK0u58m2aBVfnphd1jqq2yBxxs9LWm2ulv14bIzMZpFrVLB3+xCiTQ9qKqrsTkRRsoCcaco5nNZ1ZHRDzlW+fl8kgjs6uhBbRW7bmtMotgLd0fzJUSr46RouVxdO/FY70xD93lvym4iiiQx9RKUNq46K3UBcC6NbTwFxYLKeQ901oTeAndFuHEzunJetv6Y9QGUM4/UsNIWfj0SdCsp2DV4C6DFSsEINVMNVxI0YYh1RKG4IXslDcaaEV0Z8C1QW6JjP8N+lMbKf3S4cX92jL7wKG5wutRFV4ihPDEPdfevnBVs1nwkKuwMDA1f8vJ3TtNFGG23cfARrCeP7ta4rtAEJ7F3Wi2C9kQT8YrEoxBrmMiRQrLZ3wLji2SdfwkOPPIBotFkX9ai2sT45gh7SsDM+JA/GS7QyZa5IVX4OCQTxHUm5QZzDBj6DHTblmzro868XEBPyVh49ap/s080eJmZO1mg0bqlhYoL74aN3DGA4V8OZ6Yr0YtifYJ/ko3cMLiJT9CUNTFFp3FBF1d1QXanLr5RH8jiQR5Krm3DyJt6YOAtd9Y9HLKyJQj3JFiS9MJei+jrr+8yRqeIS9BvYJuIR53wxSf1DmTD29sSRrZgwbUe2sViz/VyLA7TwpMfjeo7U83/4ge2o2h5GcjXJpbKVBl6fqMyrRkruwrxIU7C9M4axQh31plr+1ZBWHVTmphEyIrht24BvX+V6SMYNPLK3E2PZGs7OVOT193TFkAiroviSMDQ8vq9T1FuuhaVk/GSEVkkNSai473Z0RnBupoIQh6mZ/1O0Jdj/VEUlccVjUz8kxCS/R5OQwWo6AvAYfP9dAzJE/tJYEarnYEgDfvAde3Fb/+qUF0ky+rUvnMVovo7OuC590r94bRrnZqr41Q8ewEODSXxjtIjZGr2PwojGOnCn4eGwXl9kgRr0aNivWUokCwYmJDcLhbAjaaDQcDBFVVBVwePdKpL0SNqC2CoEfMuy5B621ML0zZTP3Drd8y04hUiyCxc6BhYsPvJCXi9shB9iK7GG0/HLJevX3Cb6uoWSG34BU7qI8kPLeUqS1MImPMuFCuW1RDZ48c0wCHiCAuFmF3Xz+bzI4vX396+L0s5GgJYwJBk8eTmPyVID21IRPLIrg33dC4VdMmkf3pnBn7w+5QcbIQV6SBVrpZXAOIO/9eMNypwECjgebMcWS57ZckMWaU0NYVs6LKSWgHgSQKxrWAhuFvlqlicF0rsGkqjUbCFckBQi8nEtzuaUzf7Q4R557X1dMeymCofjYm9nRKTnli6btJbh4po0NGGtXg1TU1MYO/06HtmzAxcaBi7k67JNPP+O9Cbwnr2dGC80MF5sCLGHQQULsgz0uK9XK9vWCp47+7viOJutY67uoiuqi1XQqZnqIpKK/68vL86fUzaPVOWK7cCzFXztQhYvTZZlmx7f3YH9XTF8/PZ+YUkPj4zAqhRXTVQhPv/6tATEezqj89dWJazhxdEiXpsoCRPaV5epS9G8N25gezrSlDX0m2JsMPFB8gqDviAoYqGX9+iDfQn8BRQJUBlMioWUqqBat/CR2wfQG8ndktfWmykQCsgqGwHeH4PrqnU94veU6w6eQ4Ll0rWXEt7B37fRRhttvJWxHoQQ+hq3Fh/Xq/m4UVOIS4k1JIZf73bt6Azj/Y+tzfbnWmAhgcXn1unDVlAtkMW6puLzvF1MqwR6a05DVYnNjB24HVStocz3nXfeuWalnY2AHgrhiW3deCNRwfmiHxvvSkZxJBNHVIJhH7QH6g7rolDC/cj4nfuehPiV4JvJNKU95i2HWKB1m+opDmYbPgEhpoaQ0UPImbYUJAMI8V583Zuyz/BtT5O6JiSQi6UqopEwRqt1mVCbJ//DEzLHnZ1pserZnYjDdl0YiopvTdFSZnGdgGdFkgMGjoPDqWTTDnR58JpkEweVMvbv246y56Bu1mRAQFdCOJbuQm84LgotpuugwwgLEYav7X9Wf+LzemFoBtJGCnNmXqSyu8IRGIoH4at4vvKMKKnQHqlZXGeOJcQajwR2F3XXwov5cVyuzWF7NImhSAYZLYbuZAqW5+D5k7MY6MmsiqhCVJw6phsFREI6jJBfGguHdJTtuqit9BppZLROxLw4LM+SRkw4FIZG39Xepu1wsSj5zMjIiFj/kpAW5DT8WoUKQwmj5tbka+47TUr4rkwuJ5CSgvJWyAu2aj7TOoW43mjnM2200UYba0ewlrDWc6NNN/ZQGLdyPV6ul3ArEvBlSPfVV8V6lY/rja+43yxaCVLJfAPBZjaHBDjwTJvE1u3UhFCsw/SatpXUYbnC22Xx52oPE1+JIwNJ/PP37sfXTs/i3GwV3QkDj+7txD07Fqu/vG1/N14dLyFXtaS+zkHZQn3lY8cjQZXyIOXhP43mqUxySaXu92hoZcNAn30B9loKNWte/TH4Q0VsUH1ifb2Z8Ny7owOVOgcwFMyVTem72E3GefDX7zzQjZ6kn6+z70Iizj3bO3BmiiQSv28UgL0extdUINnddXVVFcbgr7/0Ih7a3ofzThIXc3WxHWIPaHsqjPfdNSi9JhJJ+PNjAyl/fzV7SiT83Ai2JcLoijUwYzrojqi4f18XvnY2C9tcuEeInanq66nwA/L9ebxqtouaAzw3msfZbA3Ht6fwjgOdONITx3cd7cH7DndjajaL8Ut+/2a1+PLpGSGq7OuJzeeBmZiOs9MVfPtCDh+4rRcf3NOJ0VJDbIiZNw4ljOaw+m4hQbDOzpyG9yQeg4CMzwfvy1TRkX5sg8PumgxvdEcUFKomHt2VwWDERcXZGnnBUgRuHFuhR0O0DkC92XKatyxZpdUP8UaKLUx2WSSlRNJyxcf12r71Al+LNxuSKG6UWNOq9LBRF3CwnWTs0lNyuYuPTe/HdnXgz96Y8rdriXTYPMjs00K4byi9qUQVBptUjaAizNU8Jm8FHO5NyONqeOJgt1juPD2Sl2NPYscVWLL/l9KsuPuD+qt4njssBDrYFveEKMNAdjAdkYV1Pk4h8SIERFQWkhU8tjODjx7zvTBPjJdxKVeVycnFstEQixx+JgYnXzo3h29ezImv3mjRFBYtP0uuZvrqPLLI8nsL33WoF33JlSXPmPAw8Tl27Ci6e3qEhHGpUJf3GUyGsa8zJov2gR4NB3oWN/fJdl4LKPH3yM4MXhgvYrhQwxvT5UX7NsRGh8SVPlFFgiGPASmEqcvyL+0Yqzb9Rl3kGw7uHkpif2cM9w4kESWr+joaUyzsn52pIhVWRemIZBwGOJ0xXZjTl3N1IauQoEN/RSrnUPovIKoQbCxRrp8Pnle8NzEoIpmOSRDlGLenO3FbfwyvTlTEKop/ToLMwf4E3nGoGxMXs1simNjKk4hc65ZTVlkPcNKFwcxXvvKV+cCHyQZ9Dn/iJ35Cvuf6ynPjhRdekCkT4qtf/arsP65lbbTRRhtvBvjrt7fpOQPfk/ENJ2kOHjwosrnreb/ntgXqIuu1XnNNYA7GoglVLW9kLd2IoYCVtnPp9GEr7utL4mujBZStJTYoyxwD+nAf7Ni8CcCA0MCCCJVrNoq4uh5gMfOOzqQ8VgIJH+8e7MZXJ+Z8YojrSpx8NSx3Rc6TKILnOA5SiouoomLW9on+QlRvtU1t8l1oYxtWNXx4ez/imobThTLOFiuiYLn0vXi29IQNJHQNcw0TL8zlMVypIdfwC9MDuoE504Lt+SolzAUmGw1sj8dwrGNlSXMWImldzPP/wXvuFXb7TKOKktUQi6FuI4aM4ReTdy9p7CfW4RruMjIiFV+yq5gx68jbVJVRF4ZMSOZp3pt8Epef23DcIEgjTNo0NViVt+EpNrqMODJaGpFQREgf13MPKztUrHGgKyoqTkPeVwupMpxRdRswPVvIK2ElAs3zpe5JOAnA92LOwgebTCSoBWT84eFhue6FtNKThBJX0EADqkcbKf8MymgdUJuffyvmNFsln9lIsko7n2mjjTba8LGWHIJ/u5achhYIjG+4DrOGtN5xK7eNr71eYLzBIV0O7q2FWLPROU1AXGdMw5od85rljl2H0QWz3oAF62qvJrXqtJbZ1JhnKwwTByA5Y/dDV+8jkcAyXWrgL1+fltiZ5JBrYSVuPn8snBMPMBwXOzIqCpUGqg0HOzqjuDRbXfjbpqJ9WA9JT+DOwTT+6Xv2IR1RMZKt4dsX5lC3fZWd+T+hRYyh4a4dGTmXvnpmDl84OY3xQh3nZ6uioGI5DiabFkIkkrCHcX6uhncd6BbroJXAWJvXPONvujGMlxo4n62JUgkVSvZ3RpFkLyYOsQBqBVX/14K4ruL+3gRemq1gpmbhqUs5sQBqvQVyQHv+nsh+GN0AXDb2OZ6iIGRTVaUGV3FlCKHoOtieiOB4ZxwJncSW6ztPT05WZP+xZ8IHe17s0XD44uJsdV5pdH8mIj0aqrsErgoELWRo98IHjxWt1LiPx8bG5sn4HZ2duKM3gmfGqyg0bFH+KdYd9CbDeO/Bbrj5yVv6+roa1kPVa7NsTYmNqM3cKjnNW9oG6EYT7MBGhwVdsko34kJcz0nEwI4mmOq7lgfZ1baJ2KhAiFOSV5s+bMUP3bkNqufisyfGUHYUmXRbtPaycKcoeGRHB96xtwubAd7MqQZz6dIlHDt2bNkgbiuCRdcfvHsb3r2/C39xahq//+KEMLeviqWWTE2vPpmYa/5sV1ccNcsSlRbWc7O1hm/p1PIcTi6WHX9qkoEQZdoIejOS6csAiQusL7cNdEQ09CYNfPNiFq9OlfGVc3PiQUhSi+8pCBzsjUNVEpgsm8jXLAm2PnS4Fx9ZQfotUCRicH7XXXfNy8zv7ojKY7NwoCuGHekwfuPblzCcrfu89OYtkJ+f32j0hiR5i9Lhvtr5vPqKsKkdF3XK+dmuyI6fmavK9xdHa6g2bNQyRdzWG79m4Ea1IhJ9Tk2V5dgFDTY2C6h+Qlk9/uwb57P4/GvTQkhKGCredbAbHzra5zO2l9xbyNjlg/dU3rOCQu/bOnNI2h7OFh1ouoEnjg7ig7cPiHXT2BZhvi7FejfuNjoQWksQxCYXk/AAvEcyUeSxJpnvZ37mZ/Brv/ZrctwZGP3iL/6iWAx85CMfkefTcuCJJ57Aj/7oj+K//bf/Jk2Wn/qpn8LHP/7xW86KoI022mjjZoBKZDdSPGWeQXI1PbvvuecedHRc26ZwLfnWeqx5LJZwm5eb6ruVfOepRLLS9GErOiMafuJYP377xUs4X2MTfnmCRFoP4Xv3dCGxxsLa9eRkXKt5/EhUebPIyg7EwvjY7gGMVWv4s8szuFCqrWwDtAIWiq/+f0lq2BYN43K9IcXesmVLgWXpMWdxkj/pUkNINf2k+6MRNJjrSGGXRA2f8M/nDUQNVF0Pr+VKOJErYs40EddUIdlwGs4I0WM8gZJlo2jbovJCq54nBvvQGwlfVZGIhHEq5QTX57ZoEuBjE0Alkf5ID3Szgqdnh2G6vC+4LQVzBdw7LOiy1B0Iy/tPaE5pKh5qjiJToZxOdHUXc2YOihdGKQmM2QUoloGUtqD+uBJIUqF8/ZxZ9kvrfLrD7VSQ0mKi0GK5NoZrU5g28zJgkdCi2BHtRYd+5T5jnYXxKR8y5FEoSD4zfmEcDa+ORH8C4WQYsXAUnZEupNS0HBdiM4dr3qrKKjea07TzmTbaaKONW1cBn800xjccymV8s1obnZtFCuEUOntKXFs4pLsWIuVGklUCNwE2ra+1nVSh88IeLuUuQIuyHkwivncFUSWixNBjrJ/izZtpmHi1IEH9e+8axNsPdOPrZ2fxb/7mnPRHbhRNbjgGOyKIGQou5Gug+85UsS7v5TVPL3/42BOiAwnkR/rjYmlDbMtEMFM20bBcUbn3a95ANBzCgd4YvnF+TtTfP/X8+LxqSqluoxpScKA3jqODKYwVGpirmKhZjiix/OSju+S1VlL64XHlQEigAMEhYj42C30xHe8aSuMPXh7H8+eyzb7MAsT2lMoqJN4HOWTTGYt5DnspvN1lS5bfp2m4GA81UG84mJgsYnhGgXU5j6N9cWQi/n6+Gqh0wgFwWiAF1kpUEY0aqvyOeGm0gM++NCHWQIam4NG9Xfjbdw2ITVMruM28n/LBOj3JgEGP5oiXhRtTcKEegeMZePueDN5zqFdUV85lt0afYysT8CuViliY3ei2boWcZkuTVdaCIHjh4rvaA7xWG52b4YdIGR6edGTG8YRay01jI8kqLOSQqNLd3S1TktfaTipY/OAdA+iZPYW9dz6A6aqFF8eKeH68KDYzXKD+1uFevG1P5xWN8Y0A9wkXSsqos6i7EXJMNxuDqQgGkhFfKcOiH3vLL4MFd0G9ev7H80TSFtIEAx7Knk3VfJIJmsVJEiw4EScLOeUDnYX9+8++cAY//fAOPLAjg3zdlqBormoJsUVVQ+JtTmm7gung28MFIUdQ2YOLLoMdEiZoJzNaqOP2gaT8PX0e42ENHzjUI4v4UnAbyCCdnZ2V47oR01jXg1zVFpsdknRI7Jn3eOe+apJGfCughb9ZWvcsmTZMRkSuixdGi/h8sQHNtZHSPYy+No0TPTF87GifkE5WAt+DnookACVpzaOrwrYm+YdH71BvHF89O4f/8u1hIcjwnOGx+t1nR0Xl5ice3nnVz8mFd2hoSB5HHQcPNFVX+KjXL2H8fB5md7csiluxsOsfL29LBEIMZNZy3j///PN4+9vfPv/9z/3cz8m/P/iDP4jf+Z3fwc///M9LsPXJT35S2LmPPPIIvvCFLyyydPjUpz4lwc873/lOWRs++tGP4jd+4zfW+MnaaKONNt4cuJEpxFYbnYceeui6bXSuZ9sIbt9aCseMA8+cOYPR0VEpQjNfWAs2qrDbOiW50vThUuxKRfBDQxrGClUkt+9BtmHjmckSRiqmxNFHOiJ4/84O7Nqk4hsL0jw3WLBYSRFmK4Px/o54VIqkYRVo8kQWIchnApIES4ytOY08J7BmUhTMuB7kaDUVVHzJbP9FAlXJ4LUmaib+75OX8AN7BjFSrSNCBQ/FEdKMqK80S/sl1igUB8/MzqFiu+iPhuW9fLKKT07hz7siYXR6BibrDdzdlVmRqMJYi7k2SWm3wnEdq9aRt/y8IZDHDvY5i7e0AponqTThzyH6P+WUYNm2hUjCCcVT1RmYjodGFJiyCiiVTeyIdGEwenXrqqgaFqsj/k9XqOJIRU9XLIVo1UPLqFfLlzBnFoXYwt9nrRLKdg23JXcho68cI3Mfc3/zwSbJvAXq2ByGc6MYUydEdYVxdmDlutWwVQq7wTVwozWadj7TRhtttHFr5jQBQfxGbXQ2cttWo9JPNYNbMafhACHjRm4fiSrXIq5zv3ca3Xjl1Ku47fYjMGI6KnYZBbsgNoqaoqNT65Tn0DZoo/FmHSZuBW2CBlIR6W1QPZ4EkxtBkNM4UHCh2LQzbaqAiMLhfOPBJ1igmdv8x69fRMVy8GMP7cSF2Qq6Yob0WCSmDSnQdP+156o28vUyxosNGCEF2zJRIVOM5OuiADKSq4vS/qG+hPQU2L/52J2DK1r0MM8+f/68KBKttSawVnDA+uunZ1G3XFG+nLdaErIOa/6Ln+8PHbfeozxUTRe1hiPKLGcmanjuchEh20HUA6ZPTuPFsQg+frwfvYmrX4NUVWE/lAPbHCAm6Cxg1Tzs6IjgtfES/q8vnhdnAZ4z3M+ffWkcl7NV/PL7DsC4Su+U1z974HwccV3cUypJn4x5TaVyAbPnZ+B1dUmus1WHXLbKQHG5XF6T+v1WyGnesmSVoCCw2mAjYL6ygHejNjqbHQhR1vvUqVMi670eDNLr3WerBRmRlJlmEYfSXau94HhBREIeDnXHcFTT8PjOzPzNZTOLPYHcIN/7vvvuu2Hlmq2AEDxU6qYoaywNh5cSVeRnzf9cWdz1kKvb89OD/KmuafBs/1Udx51n74rNjapgotTAv/zyeXz8zgGxnSEhiT6H9KNn4Zb2NlROMUVSDZgsO+hsskOpFELiykjDwUzVwsVcTaSuyQr+4OHOZZVEAksqKkvcKseVhJtig+VsXyKbuyjY5766SWhBoLx1n7ccGO4jxXPxtQs5nJqp+vuXxLYQkIy78rMXx0viN7gSGNRwO/oShrCqy01fRrJ101ENF+Zq+MOXJsQiKBbWkDcdxPQQEqqGb5zL4oNHerF9lao0vBcGHokEj0dAXOEEBZMoLtb8PVVvtkLBNLiHboVAaC1TiMTb3va2q1pb8F79r/7Vv5LHSmDD7NOf/vQNb0MbbbTRxq2OzbQBCojslJve6KZ1EI+vJXcgMZXby+LHesl6r9dQwI1OHy4Fj0FadXF7T1zOg8f7/c+42Q1squzwM3CK5npysi0J2ydvK5LdLICXoZ9JtPxMMhcgJKTw1p/71jRUUyGpgXmFEFhCitjziCun26IMAvrFKzhTrOLXT17CHV1JKWwmDR1V24YeUmC5rvwtienMf6ioEpqP7yGqLLQCIlFjulYXOxkqSGYMHQfTiRWHQtgYofXm3r17b4n4M2fVxVInsIr1hcJ9uoq3zLCD/wxOIvr3Sv5e1Go8BS8UJlBzHTkGjqGi4NoIuy5G6zl0GAlE1ZWLpnmrCpUkFf4t3CZRhqQhTfbrbIOqNgVRWoFCioyCsKKi4VkYq89elayyFCtZoLJmw88UDO4wp4nFYlvi+nurKKu085k22mijjY0H43PG09dLZF8tQXwtWA9VRjZ32TtgHLBedjQbQVbhEC7jxhsZemZcprk60noHkmoaPVr/pvdo3grDxAHIL6jUG+AhUphz3Fg5QRoLlYYNy3F94rbnCemBvRa+pNNqbyrXKodVbfyHr17EpWwdE8UGBjNh6RXQWoZ/JSRyy0HddoUIwefs6fL7AGJpmg6jULeEPHFmpoJkREPDdsT+Z3tHZMWhECqt0n5ko/uyq8FcxZLBXD8n9HOUxXnllQPFLb+V/7pN0suJ8SKevlwSIo/W7NNE6g4uOVV881IO33N0eTeAAFPFBnoShpBf2Kch2OuK6iHMVCxRvh8rNtCR1FFtHt+epIqXR4t4cbSAB3Z1rL5u0bRAZV7ZaoHKexw/L+/jzGdYy18rIW+zsFVsgCpvgR7NliarbJYfIhuhgWTutexpbgWyChdmklRIAuENnCfRem7XegVCNzJ92IogYOJNkMfzZhBVAlY0gx+q7az2xka2Y81y0RXXZUHbCmCTwJs6j6imoOyEoKk+OaRVMWU5tBJWaNnjTxv6+4CLsGU3i5IkYbAOyIWcT1B4vpGR6x9nz3NFGeXPXh0Xf0B6EHLhrVru/FQei5yUiTvUm8CJiRLmarYorJjNgi9tcvh+VOKJGxred6AL7z3QLeofLEjSv4/vHzRGWChO7z2Kr4xWULdLGEgYONAZQ3dT6m6zQTIIbZm4jSyOu45f/vaLugvn0dJTaqEQHIyBqjg35/vcJfQQXNtFwwVeny7jSG8Mb0yXr0pWsRxfEWdvd0yCzFLDkUnVjqiG0UIDl3I1nKEnIgOs5rYwkI1qISETDefrqyarLAWLt3zQhu3ZZ5+VAIj3gNOnTwtxjNOLAbmFCi23IoJ76FvBBqiNNtpoo41bI2dg3E1LQxZ2SWTnOrrRMXOQb91o7sAcjA1crkPMwdZL1nu9C7vXO3240vbwOAbFg82MEfiebJgzLyOBiV7Fq/27IouSIQUxajtvEVASXJ+bRCjSIQSUVvJ3KxYoJgv/Ki2KKiSnMMcQ9RTXn0jkJaU1f4ZF6iwLsTr321zDwkuTs1A1DWnDQI35R9PWNCDHJDUVMU3BZM1E3XFkHzeoUhTySesWXGRNE52Gjsd7u5DRdfk9iRUk5RMsGnLgZse+3Yj2ZHC6PCHWNh1GHJ1GQr6+GYirzKUUaWrw0/pXo/+5g/8Gez74Sn7alM4OjkHWrqPuOmKhRMqJ6zpoeDayZhUZPYKCWUU0uvL16HiuWBMl1Bgs2HJMNSUkOSDthrJ2HrZnQwv5uR+PLJ/HvVa0K/NF6OtFqwUqm0FsXpFAyEIvVXx5LwmIK8xtbtXi6VaZQuRxYk7zZm5YtdFGG23cbKw1r1itDRDrfqzX8t/1IrJfC2vJZ7gGse9x9uxZibNJVlkvrHdOE1iukkzDoefrPaatOc1WGibm8CuHYlNhbVnV9VsRso9nLyGju5itNXs0FFG/DsKKHvLVUph+FhsWHHehZ0OiiRfyY/JA2F1IMc24T2n2Bv78xAR64yqSYV2GV7NVv7fDmFqies/DkYEETk1VMFux0BMPy894pdMJwXIczFVNVG0Xj+/rxI88uFPicB4T9hBEsaRJQMpmcxg4cgdeKgGlbA4dYQ170hEMxm+OmgcJNnR+8PMSwA1cB+afsdy5dOUBYu7x8lhFemTs0TCxbLgKzs5VcagnijOzFVQaFuLhlXtRVcvBYCaCdFRHoWbJO1NBhco1FdPG0yMF+pxCUfztrVguzBCkH3Y5W1s1WeVqFqg8RgRrIVQ14vckFTGfYV6zFkWQjcZWyWkqTbLKrbof8VYnq2xGcXd6eloKPCzocrHerJOBFwgb5jeyMJM8weYtgzY2ddd7u9YjEAqmD6mMsFaPRu4nBrWbHQRxMpVBEK1KqAqzmvfOVk387nNjePJyDrbjYSgTwcfuGMAju9ePULSRkuC7e7rwia5O/PqTI6hZ/jShBCHN4iqxnKJHSIUooFCWzFAVkYor110JUPSm1Bglz/h0XVeEWMJJRAmCgqK9EoKr+At2TAEm8xVEVA91V0XZ8UOARFjDXUMp3D6YxFihjplKA/0JHdm6jVLDFpLLoe0J3NafFAsbRw3h68M5XCw0JBjqixs42qFj7twbCIcjsPp346mJigRQlKt7fbaCsVIDb9uZQU9s84OhPZ1R3NaXECsj7i3u/yCQ5K4KiE9Xi01p70PFE/4ZGc+eLMhATA2hbHkYKZrYkbblXiKkmOZ11bpoJ8OqbMvL4yX5N9X0T8wKCUgVO6eG40ngS7CJoXHSsW5BV0JCIFoP8Pwhm5dBT1CEZJGXk8FMBElWCYgrVF25VQIPrjtL9+mb1QaojTbaaKONjQVj4GtNIXLdoUQ218h77rlHmp+bhRsl4Ac5GAul9Mxdzxh/PQu7VEcgUWUtSjWBcmUw0bPZ04ck/HJ/c8iBcdVqcCpfxVfHC5iqmRJ/Hs5E8d6hDqSNW7e8wFiRhTPKgr/36FFUZms4X6pJrtFKiCBaj0ArbUJVPITVELQmE7xGyxjmLFCgMy5nTtOUjtSUBU2VRRadTTpGXQlBt23MNRpCLqmGNPl7xvdpQ8fRjpgQWKZrJorMdxUFBbMhRehMWMfhdEyI9iXbxLRZwXS2irzZkOMxGI0hXq7g/KnT2H/kEKpxBVP1PIyQDtu1MVLNomI3sCPWfVMGJ3bFk3g5P4O85QhhZV5RhfcMxSfjrEhYab4GVWaqTkOey7IrawKGrklOWnMsREMqbMfPaXhdBo9WpLSoT06Bi3DImD9Pal4NPWoKpteQLePPmIvKtem5oqwSU6Lrcq0GxdHAApX3gUB1hfkMB0aWkvFvlQLlVplCDIq7610ba6ONNtpoY3NzBvYQGHczXr3rrrvWjci+Htt2rRyMKh+sS95qii8E4xwONJC8vhbL1WD4c6sME5MQ8Zfn5/CdsZIogGTCKt65qwNv356+ZWKt5UA1CxK2dFXFv/iuY/g/PncS2YoltXhVbOcXSCvzH6OFRMEfUe0kZoREYYODwWXTJ21zyFisR20XHnknJMmrJIx4zR7NwovwtUncd0MK5ko1xFQPuqKgaPrvHzVU3LE9jXcc7kHNdnF6oiyDy/ybXNWSbbijN4HHDnSh7rpC/v/axSyGCw1RaaFa/p0Dcdjj5ySe7zx4HC/m/V4piSyXSyYmqibu70tixyZZ5rYiGdbwjv3dODldFuX/xT0aBWpzdwW533IIc4A45KFhe6KUQyV8Xo9xQ0PJdDFabKArpku9x2LfZ5keDXH7thTOvTKJ/mQY8bSvTFM1faWbRNyAE2K9wR/2Zt4ZCykoU/nG8eRzrAdku+NxUWhdZIE6NyeEPd6vSdTn/YW5zWbdv99MapGVNSqrbAXcOmfFLSYxxwuMHmgsZnGRoy/XZm/b9QYcQdDG4IfFxo246NejuMubFbeTn/FGlWp8/zdXmqhPP/203OyozMLHWuxaSHB4fqwojNpMRJUmOy1NaFnDG/4juzqwrzsmbGOq1xw6dGjVrGiyFf/1l8/jlfGSLARcMCh19u+/flHIEPduX9+gdb3ARSVoFtAD9DYGnx7wv0/Q5oWRCyW+XDg1eqv7cm6iuAJPGLpcrElo6EmEEVYVkZWbKJqwHVOeY2i+/zdlzyoNR8grXNsbDXqQ8xoIJhL9yq+mhRCORnBkWwcm8lV4lQa8hoO05uKuPmBHnKONNu4YSuOl0QLGCg3M1SwJFHZ0RnHXUBoRXRX/w6fHSxgpNTCUDAsZ5fRMCS+dmcU7BpPYe2A//uZiDl1RfZ5c0RHRMFxs4PRc9aaQVRiQ/PQju0SZ5NRMWXThNBbOVUXsdsgAL1ChxqPf+pWhEAPRB3ZkcD5bla9NBqNkSWu+1DWPQb7uoOoCwyULO1PGovtQa6H3I8f6cDFbw4W5qrCJ6dHIwPaBXRm8nq0jGlExV2xIEJowNF+Rp+5gf08ER/oT68585b7hgs0Hz1Xe2yn7yPP35MmT8n1robfVb2+zsVUYu2+VQKiNNtpo42ZjLcWwa+UMVP1g4Y7vwbh7s9e/680dGONTWYCPjcrB1ousMj4+LgVokml27tx5Q8eRn5fHhDELcxoWb5jPMGa50ViBMeD5Yh0jFb+RnzZUFC0bM00Lzl2JCI53xmDAkxifuRmnD1erSHe+WMMfXJiVomNcD0m8/9xsGTN1Cz96sB8GK3O3GALlURKaA0nwT2Rs/MGlcZwrVkXmmrBkohBQpQLbJEg0JZ3DIQU7kxEhjURYlG1YCNkeXNoAkZwSUsDsgGqFzIVCSotqy5KwnGcKc8G0EUZP2MBMtQ7XMkXpo8s2sdvQoTVCSMai6I/pKFvAZL0hU4dxTcWeZBS9TcWQqmPh1XwO3eEIEpouRdIXJ8ah5PN4z+23w45rqNbzSGsL1jK26yBvVtFp1JHSN1+JsDscxUNdA/j6zChqJDw06Sgk/IRJMhGDo6ZCzRUpjYKUpqM3HMNYvSGKKg3HFqKK4ktP+qQhxYGrmjLsQEJMUPdpJeOTrNIXzmC8noXpMpcNwfIchEOUsNdRdMtybKuuCUNRoSmqFN+Z83QbqQ3JC65mgcr6FGsdrWT8m0kW4bZvJbJKW1mljTbaaOPWxbVymiDupvUELSs3k0xwIz0axtfMwYiNysHWQ/2e8RHzAQ6q3egwscTKnifrLF+L8UnQo1kLUZSDluzR8N+kocpw5OVcTRQ6qDx+31Aax/sTkkdd7zAx8ek3pvGt0YKoY5CMPlOz8b9PTovCxbtvUGlis0g5JGzddtttEkP+248o+LdfOe8Ptkre4qFW5ZCkn59Ij4Z5STOm5uD0zo6oKNOTnHJxrgqlAiGMUM2dKo0R3beTYb+BfZhqzYEjjHwfwS42ODyuG7hrWwfy5TpChRpc2KAg/QNDBg4OqvBsE/fv6UCxZmOm3JDjx3x1qCOCxw92I9NUr6fdDXsuO9MRxHQVo4UaXj4/igd7FLz/gbvw1fGKHKfOiN/vzISByaqJU7katsUN6UdtNr7vnkG8OlnEN89npe/Hfcf+UzSiI64rojTjNVVoliKsAndvT0HVQ4hotqje83mGocMU9U8PhYaDUETFhOlgj774PtRKxH/iSA+eGy7g3EwVqagm+7dmOrhzexoz3FcdMUznG5guW0iEVcS1EIoVE+mYjvt2ZjYkp1nJApX5DGtUvE8EOc3NtEANesxbIacpvwUGirc0WWWjJObIAqXqR7BQ34yk9nrZsZQz5jaTTMDHRl3gay3u8sbERZUBy41OHwY3ET7uv/9+KeCw8MjAlUVIHq8gKOIFvFrFk995YQxfOjsniwv9+GgvwwCFBAySVvgy//vlcTyx3cDtelbYxkstlqje8aevTckixeb//TvS+MjRPgykInhhpIDXJ8tCeiE5hSAJgsHE505M3ZJkFe5TNvrpU0lJrwAfP9aPe4fSeHasiIu5KhJaCH/5xowweclu5T6X/eiSjBJCOkKyQkhIQGUhAvkLJwuuZMvyeQT3NRdM3VAxUbd9URXqPTdVWkIhD92JMBx4uHdHBvc/uAOTxQaenyqjaFpIw0S1UsHI9Cwq0PG3dkQRiyXwzWlLgp99XbH56cGi6aDYsLEnExFCChdKJT8FJZJENdWPoumKOkh/iwqIFDXDGibLlMfzbkogRA/C//bR2/D7L1GhpyD+jtyPlJszQkDYDolqD7/3d6vP402HQ3h4ZwY/ct8O/M/nh/HkpaxMY9a9kByDQHZ+WyqMgXQUL87U0JuMIGX4yQ8ffE5Q6D3UHcHPPbYTXzozh7OzVQymInhwdwbTNRuT2Rr29sYRCYUwU2pIMErLpkxcx/feNSDF+etBybTFuols5L44Az71mqQP3t+D+wC3mwE9pdCnpqZkYoCBUBAUMcjfTPLIVgmCCO639ZQpbaONNtpoY/OKpywGBPYSNxp3b+T2LQVjjNdee03yBcb4G+VFvdZ8Zr2mD4P4isSUxx9/XAqtzGlYiOc+CyRz+VgNuZ/bdbZQw+cuzWGiZsrPGG+LVQ0JGJy2UxR8WymiN6zi7vo0BqKakDeW+klfKtXxnakSLpcbEgve053AvT20jVHk54w9eyLafJ4VUUMYKZs4ma/h9q5bi+QaKHoy1m8l5SQNDX937zZcKFZwqlhBw3VRsz28mq1K9Ey/cGqjkEDCmDqhqzItyH2QMx0p8EZoGxMimcSS4mJQhqTSR4ehIWvasL0rp+n4exLlmdN8z65BFCwbs/U6RmslqLYFp1rD7NwcytMWEkYExxNp5PQoxqwGdsWjiOkLZZySZcH0XPSE/SbI7OwM3FIJ8b4+eIk4KlYeurJYsUcLqXAdF3XXQgo3xzbzSLoTXeEwXshOY9qswnS4r1wh2wRqJ0L2ER6Lr1LDXKBLD+Ngqhu7Y2lMVPMwTQthQ4ej+P60vNvwGG2LpIGQg3qojg6tY/56C+TpA+yP9CIRCmPSLAhhpcdIocuIouaVEIaObiMhtkIksfChK5rYKA2GfTLJasHr04IJ13MRQgi6YiyyMl6NBSq3OyDj3woWqNyezbDIXo97AKeQ3+zF3TbaaKONm4m19iFWGigOVABZn77jjjukxrfZuN7cIeh9cG0moWCj6n9rzWkYG7/wwgtChL0RK1NCLF2aVqb8rCSLMJ9h/ZUKcYxhAjL+amuv7B386akZ/Okb02JhQgJG1XQlrwnBr8Wztv/Hr0/jwX4DD2pTuO3wlcPEfP6TU2U8N10RFYk9qTAeH0xiRyKM8XIDz0+WZbiSRBiCBInZmoUvX87jse1pIUbcSghIOfycraScdx3oxv6eOJ68lMMbk2VEdAVfPzWLi7M1hHUqfIRg2o5PyFcU6dFwiJdqIKzXs8/A41d3PRRrzCv896PLK/tXvekIzlbL8+r5RPA1rX9IqtjTk8APf+AghnN1vDRZwlS1gYzqwK5VcGF4FFlbxQf2kCSTxBdHGjI4e+dQSvKpwMYmV7OxtzMqfTPbspAtTEPXdBTj/SjZvhJI/5LBYap6FkxbfpdeJ4WQ60Hc0PD//8gRfOaVSXzx9CwmS3XpJ9qeB1ULIcJBYfZsSHaXwW4fQubZ2YlP3DeElydKOD9dRlQF6tBQs/3ric/vSug4ti2JcxUL3fEoesJ+L3tpj6YvruGfvWs3/uqNWbw4WpQezCN7OxDORHCuZGL/UAoh28XFyRJmSw0UQooQVb77nm3oTlzfdV93XMzKEIyHjKEhtYoeTasFKgd9eO8JyPgcUuK9J8hnNtsCNbiHboWh4mq1+qYfKN7SZJWNKJ6SoMKAgok+ma9LC3c3c9uWA29M9BenpPHtt98uxeiNxFoCofWaPlzqfciiAx9kVrNgEwRF3CeB3zODIt4Ql954inUbf316Bn/06iRG8nX/PZoBDb8gIYFHwXRYiFRQt0x85nQD2x/ddwVRhQ3/X/niWbw8VpSAhtv22ROTeG6kgP/f+w8K+5cBVkBUIWT7DQ3n5iryu+uVYeaCR7ILA6r+1PpJnnE/U1WIMl1MBoLJrtbt3tcZk0eAd+7uwq985TzGCw2JWvi5yNQlYefUTEWIIdzOd+/vwmzZEmJQT0zFpawtaiuBB/z2ZBghXcVMoS6ki2Alp5ydpvIYOEhEDfQl+AjLYyAdwTdH8pisaHBTUfRmFAwYDnYpZRSyI+g3Q5ixEyioFpKJBDRdw0TZFNJEd1RHuVLB5MSEnCuZcBwTFRNHumOyPa2kFO6XfN0S1rVNwgH9jdYZDBbHyg2RIGQRfTBxJTuY73/P9gyenyjDMx2R+YuoEGulcs0WeT6OAXJtp7wbz92eVBj7ehPo0h3sdadxwgijARWqByhMLBQFPXEdHzrcg2RUx+VCA5MVCx1Rw08aXU88EmumhZNTFVRNG7s7IvjJBwfnJxTP5eo4czaLA11RvO64OLBNw24rLsEvmcWP7e4Qwsz14PXZKl6eLgvJiWDD5O7+JA50Rn1J7lUEE633CcrRkZDIIJ/3iaAhxOs5CIzWos70ZpKXe6sEQm200UYbWxnL5Qyt3uhUAWST81bavuXAggWVF0k2ZQ62kWvxWiSz13P6MNiGIKdpJdnSgpM5zfDwsPg9s7jbOqHYmkfx+eNVE18YzeFEtiIe1CSA280YOsjcOFVH2oSueLhcsVHT0vhHh3dfke+S8PL752ZRsakwoSBv2hgum5isWfjIzk6MVhqIiOf1wjaQ2M+3m6qTJHP9cUPRtFGh/Lao8a1fjMQGNXN7nlfLkXIiqoojHSl5BPvy8yOzeHqmKIU47seErmNfMoqkHsJotY6G62FbPIzjLLaOZyVXIFGlwXi6mc8w9t6ZiKGSL8kQRCtZxf+9bxmU1DTooRAGohH0R8LiU365WkZd15FKp9Dteeg0Hbi5PLz8MJRUAjONKLoTCZ+YoCgoORYyOouMHiYnp2SSd+fQduRdB2XbknzFdXzyUgDmXjy+VRZDDW9DBl3qjoma4+fXMTWCsHplIbTDiKDDMDBeLzcLuB4MJYSi48FyeR5wcMRXXGEt21AURDUD26IplKfmEMrXoXWEff91FnWZG4A2SCkMRNOwPQdVp4607s6rzlqOBdtxULZMZK2aqLr06AkMxH3Jd16P09aMEEoiIRKA6vJ6dVoKeRYSagR9RjeMpm3QauB4DipOESYa/oAAh2EQRlJNXZfiIu+nAYHtVrBA3SpqkbxfE22yShtttNHGxoLraDAItx4Dxazx0+6E/zI/uFl2btdDvqcSO2P3tfQ+NqNHw5ooY+T+/n7JF9c6TBzkM4xFqHYdKF4HcQpJFkTQo2GsstQRgPXwJ0fy+N+vTuLcXE1ibJbDGWczxmOPgLuTw8HcXMu28KWLJuKHtuPdLQO2wbZ95nwWz0yXZbtIQn9muoJT+Tp+5FCPDC1TJbI/vjg34HAk+xdUaB9MXF8+ym0cL9EiFRhI+KTk9QKH1HleHThwQBRkloL9Fz4CfOKe7fg//vg1nJ4qSy4SZ38hHcE7DnbjwmwVE4W6qGF+4LY+dMZ1/M7TI+hKaKg2HOlvEZKfxg0hkFyarswT84NPxc/JvlQsqmNbOoyOmCGPPd0xfPViDpcLdTixMJLxTuw1PByONlDLT2Ov18ApM4Zs3kUmmYBuGJgq03qTA7SG5G+8jpLJBLrTncg3bNRtW/IrHvvWHkmeA7yWI7nNRoC9kOmaJXkqhzP6otoVKqIkAz2wM4Mnh3PwKiGENA8xVYXZsFGQYWefpUKFGk33ezR9qbCo/x/simD24il06kDBpQsDYFuK5PGZqIbvuasfQ6mo2B1RRaYvasi1xvOb1k0mrcaoPlQ1MZgy8PfvH8CPPDAoz5kzXXxhpISdCUOISof2dmLfUApT+RpcRcFd29N4Yvf1KQix5nAiV5EBcB6vqBrCvlQEh9LR68oLeJ9YyQKVx3+p6spGIriHboWh4spbQP3+LU9WaWXtcuKeU1cb4Y2+EVJuS4ulm6EAcyOBkEz5nT0rxda1sKBbp6FW8j4kEy+QmAomjxgUcUHn/uJNju/P4GisbOM3nxrGy+NFFNjgn9/gBcnn5rcCCYZkEi6EPzudxbsP9yMdWQhqvn0xhxPjJSFPBIQUBlYkqfzVyWn0J/1pt6WKHCQlDCXCi7zRV4O/OTWDT784jumSKa93oCeO7zrai8N9CWGhrlUmm438e+65Z1XnFZm3r0+WcLQnhh2psLByj/Ql8ODODvmaAScVQKhKQvsdWiF95dwcLs3VRDklFVYl6CEpaK5iYU+3jqFURAqohbovXefbC3kSCO3tiGJfx8Ji1Rs38KH93Rgvm6Lokglr6Inpco40bAdd03l84dw0XpkpwxrPQ1U1xMIGMrqOSqkon7W/r08+61ipIUFlfyKMjqiGyYop35Ms8epMRb7na3/qjRncP5jEbd0LiwQnARnIcFLyRu4fM1UL3x7JY6rCgjKZ4hD5u0e3p4XoE+Abl3L43yemRB6P71V3gFzFRKVO9u38xoC5VDimIBLRYLrANy/OQZ8+j4f3DuDA4W780WtTODlTER/J3R1RPL63E6kWljI/C6+DN2YqeGmiJMf4pZECbNtDRFMk2H1kVxqfuGdAKMJ10xYPxLQRwt6OCM7n6mhIEKILc/sdezol0F0tyHR/bqIkDRD6T/KjzdVsPDNeEkumGy2QslFBYh8fEuCVy3IOkFDHiQ0u/B2dnSipCcxamjQCdmYiosyzHmo6W01ZpS2Z3UYbbbRxa9sAMcblesbXafVGZxzHyZSbidUQQ7LZrBSi+/r6RM1vo5ufNyqZHRBqGEesx/QhwWO29PiLkl8qJQ9KnZN8EJDxAxuQgLhCEsu3p8v4+kQBY5WGWHUSyygN++/Pwr809EMouMDzcxU8MbTwObhdXx4vCJGBk1vBtnFa7fmZMh7oScgEW6nCCG9xcZZIcATvOsBY/y+Gs3g9V5Vci0SVI5ko7u5OYDAWXpOlUDCEwmtgtcpCw5W6qHfsT8ZkX/VFdexNRbEvGZPCYtmi+oeHlK7JkMGFMhVo8qLGGKYUs0IbIM6ZAUXLEyIGaTC5hil/x7/hVvDs4zE4kkkKWYXgvt6dSKEvEkXBsuS1MjptVFVgF33HTbw6OYGTpQJOZWf9IQjdgK5pMvnIOJYWqiSnhVRVbFL52gkthoJFqyNbFFZoJzRcpVKIh5xZwHTdxpF0RiyEAlD9g5+BtjjXC55Ds2Yec2ZBlEgIqpF0G2l0hxdI6yT3PD03gVOlrCiqcJ+wNl4U2esAVLZhwdZDOuQ3LApmA0+NnEdmLIe33X47RpUyLldnhVwUUXUMRJLYGWsST+Tv/XzG9mzMmDnkrSIuV6rIWfS8D0FFCNGQjttTfejVY3J92q5/TyUhxVEcmJ4pCpaqpyKpxZHRM9d13666ZTS8GjTFLzBz/5peHRWH+e2NkdhXa4Ha2d2JZGccqsFPGoKh0MpqfcqAWyWnYT5DtMkqbbTRRhu3LpYSQgqFgsRxbFreddddVxAbbua2rbQmUnmRTfa1KC9uBllldHRUYoWDBw9KDHEjWG6YeCl4zJjf8cHn85gyp2E+w/4b45Qgp6GixH99bhTPjxelLxDsbRItRGmPM5nqgr2mxHdCFFDwzEQN57M1qdkGuFw28cJsRRTFA3VubsNUzcaXx4p4rC8utWbG8KxvB2BPgdY4gdrKavHqdBl/8PoUxoo+Qbw/buChbUkc7Yljd9eNW5wEQyhUnzh27NiqemrswbwwWsCxbSlsy0QQC2vSo3l4T6dsC4kdM2VT+jOZqI6JYh1/+sokTk5TPYU9Gk2UJeu217R99YkuzD2mSv7n437nc9mj2dERxZ3bFhRRk2ENHzzAHk1DVHJo30TiD/+GfYaBbBHWq2N4fbqC2lhBhlvZo+kKG7AbdYzOzqCjIyNDpbNVSwbC+2IGeqMWxiqmqKvwfV8aK8hxp9p/sdTAvdtSeHB7ZtHAMfNL5nDXOxxOUEn02ekyxquWfHbmiD1UJe2Jo6NFxeWViRL++zMjeGO6AkOGrF3USpbY7ATWS4RtukhqISTjBlw1hBfGCvj016fwwGAMv/q+PfhfJyZxYrKMsA7s74jibQc6sad5TnOAgrkbMVo28cpsRQaJv3JiAqWKJXkK1XJuH0ziZx/fgVREQd20RLmy09CxM6HLNVF0VXR2xWVw4p7eGLYvIWtdDawHvJStoOG4kiNzj5ZtF2/ka6KucqM9mtVaoLqJDhTUCKhR2R1RsSsZlmt4rWgdINoKOU3iTa4Uqb3VJeaCYmGgTsIbP1mlNxvXCoR44bJYuhapts2YRAxklzkduN7Th9czeUSWMAuWDIoo2f3a62/gz2fjGK6FZBFpDe0CigrfYlGdl5JdUljzMFFs4PxsFXcNped/fZJs1SXKKVwguai+MFbErz7Rj94XDUyU6kJo4WJZqNsSADxxqOe6zudvX8ji1795SQKMZETDdNnEl8/M4juXc7h9Rwb3DaXwfXcMLCI4rAYBAYosRspkr8ZT88lLefzKF88IaYZgUbknoWN/d1yIKgT3SSuB5vhAAge6Y7iU4zQbCTt+8LCrIyKBYb7qq5eQFTxcqMuCyP1fNR10xwy8d28nupqehgH4vrvSC9vL13llqoSTc1XZz1O2gRCl7iIePNtGBDbMchmnSsBAnEGXi7lqQ4qhR7rjUix/YDCFp2h1lK/jVLYqUm7bkga2p8IoNGx86VJOnkdCCYkZZ7NVjDZVUUimONodx6Gu2KqOA4k4T48VhKiyLemfHwwwz2VrEiQ/1DzX5qoWvnYxJ+dNTA8hqqnCJC7XHAkUuE77ZCv/dat1G6mYjoplo1SzMZrswA/s34/9AB7YnsY3hgs4MV0RNZQgeOP2szeQiehCVPnrs3OoWzZeHC6g3LCF3MJgl+f2l8/lsKs7gQ8c6kZPkv6WIWGh+2o5ZH75wWFXVENH9PqUqqjuwuPYH/ePK7eORKFLhTpGi/V1mebjdUcyBh9UZ6LqyvTMLD7/+iSen5gSkk/YMBCPhvHInm585NiAHJu3irIK75tvdtZuG2200cZWRlC45ZrIqUMWdbnGbJQ3+noTQ0hmJ1F0LcXSzSjsBtOHayHUrKaouxx4HElACGxAgglF5lgzrooXjW5YijqvpHKNrZCISnIaD0ISeWJogdDEqbHxiim2nK3bx+9nGjaGK6YQSaiuwvicP2cRLtewRf3uthYy+Wr2x2cuzOK1XFUKyYxDOTU2Umng+dkSdibDeLQvg9s6rj8O4fEiAYr7jISfa+1rFk4/e2kaT8+UYPH4KIqQT4pWGPf1pOZjv0SL/Q7xSG8aT04VwDK60yQJRVlwC2vINmyEVQVpTZXPlzN9f3b+j8/bGY/gWOZKq6uYpssjQNEycaFcwpxZR5FWN7EIYpGwTOmFbBtqrY7ZcgmGB1FcaVgmqraCFMnZ4SiMUAi1sIU5s4SxWhXDlYaQWHqNGHRVx2itAtN18GB3ryiAzDVKyJll5Cxb1E0yegyD0aTYDK3mnK04Ncw08kJ0Sar+hGfDtTDdyCGqhhHX/J9drhYxUa/Ivo6FdFiur/Ti6236cX9wSvNnlCTXwKK5Pwl79+1H0UULHHTgULIfo9UJOU5RbeG+Z7kW9JAhlJSx+gTyVgl508Vsg1OvvmJLVDVQc22cKE/hbd17hLgS9aIo2HkhrTDn8sSeSKSJoHk+6WO14D4lMUVVSHDy/47/6tBh0haIJdd1yAuWs0Cdyc6g4GaRz85A1VQYRhgRPYKuSC8izWPzVshpuC84wbkViDVttNFGG29V8B7NXKZVnYQxHOt0N3OYeDW9ENYRGXeSYM7ex2bV0K43p2F8wLyL+5cEoKUq6us5TLwUfA6JR3xwQJx9LRLxmdOQ5PN0NYlXKzpqVkBO8S0gaQcpr94sds/Hh02yiuVCVCXOzlYWkVUulRpSi860kE6E6KuFcKFYxw/s75Ta/vl8TRTX2fRmfFmxHLxte1qUzlcLKoj85nOjKNZpRaNitmJiJF/DsyN5pF0Ptw8k8eOP7LpuRfzgeHG4nkMoq7HIPTNdxs/9yRu4mK3JPtK1EDpJ9EgYQiohqDJP8kmAgVQEj+3rxGtTJdm/vrqkgsG0Ib2W83MVqfXv6owiZtSlB8FjRBWWdFTHEwe7pQfUCvbDtqcW3oNkDxJ6XpkuI1e3MWbrCMUSiLFH49qIh2y49SLeGPUwENdkyLhQM5GrOXh8V0aGZe/sicsxnag08MpoEZNFf9h4VzqMiuniS+ez0qe4dygthI7zxbr0FebKdcRCIRzpiuFoX2LVvYnXsjWxue2P+ecH8zgqjb40W8XbBpOSw5A085enplEQFX4FqYiOSsOeJ6oE7YOAtFKp2+jJhKXXwbz3hZCKTz5xXK6jf9OfwuuzZcmDd2ei8/mnPxgNyS+prvL/sfcfYHJl6XUgeOK58C69RcL7AlC+uqqr2vum7aZ3LWlGhqJmvyFH2l1pdpf8RpQ00kha7VAcSRSH1Ddsikb0bDbbVZvq6i4HlAFQVfAJIL0Jb56N2O/8L15mZCIdbCWq46+OBpAZ8eK+++579zfnP+fZiaIwm3zjzIyoEsSjOhIRDQk1hJeuFfFfX5vDP3hmJ3qgIGmYKLKwEWKdk/erL6dFuVqyCt3Ms3XWdCT+H4wufy6pq9Lkcr1mQ98i+/1mtpYE6ouTOZyanoPZAAxdl3r4ga44PjHWJWvzduxmczPvdI0m0QGrvPsdIYI+GMDeK3aS23U4uJmTPm1oaEgSu/cyQXAznYh3s/uQm9yL14v49rWCFO/3dkWFtWF3myxNYK7XwEzFhqGGxcndvXs3zs8UsPjViwiHbAFKLJOYrTQBrARZsuAtTQjLBgv67RbR2bt143G4CRDFy83wl96/G//uuXHZULnZEF36qUN9+L7DNyff9KenZ31GlnQEUyUfHEEAge00UKrZ+OaVvCCBf+6hlXqNGxmdajrXvF50grYigXU5V8Ovfu2igHcS7L5sgUQWqg4+f3ISj+1IYzRzYyKM15COEaV8iNilEXRD4AfPh2hQytKULRc70hGR3iHqtyuq42cfHMQzW5CS+c5EEadmKzBND6euFTBTthCPqDgylMLuniRmckVJMyZSabxdcWGVK4ghjxNpFfGKi2qsD4OJGD65pwvfnijiWtnCoe6YjJfrggCU8aIlMjVcD/yumaol7C5cUzz224t1QVF/mowlm2gnklVltuqIoxU4JAT5dEU1Acs8OJAQYMp4oY6S5cl6ytVd32Gid96W0G1fu2TCo2SPQQdfUTHv+VqUAc31Q4NJodSjc80xityP7WJnJipO/Tev5BAKNWVtkQqQACQm2HnO2bQuKOmvXViQNTyaieGBwZSAaSizxJjA0BSkIqo4uF+7sojv39eNWMvp3+zZRZ3GYC74PVwHvBHJwMM1z2fRnXYmuO5LWgrjXgX7d2QQDnnyLFsoVfGFVy+jsTiBR3b2SFDHQOFWvv9+6UKkMYB8tztCHetYxzp2P1uwnzA+OHPmjIDu7wU7ye0C8LkXsqOPlMYPP/zwDfKa2ymxGyTM70b3IRNNL85XcK5Ql6TekWwUj/bQ57vx+jF5WnE9pLp6ltjhvnB5Bs5MBXWHLJGq+H9rxzWrAxo/aUaN73YLOs8CppSl97Y+SUa/B7rimDcdvDJfxrzpis9LVsMfGusW1pWt2gQTyyVTklz83tm67bMpIoSq20TBdvDlyUX5/Y7E1oFXXFNkF+L1Wosmey372vQinp8tySxR+ojpcYInrldNfG2qgB/fvXaspoUUZMM6Ug0/PtAkCc4zAGqeg56IgXnTloSgESH4xddUH4wZ+P4dA8hsEh/XXBevFxaRsy1QsfZKmQwtZJFUsCcZhY4mpur04SOwwgauOA6aiwuIeR4eiMRQhN+pNhTJCOhktj6LhEbGmPgSa4oWCmPRMjFTr8FqEKhSxUTdRcmhTGgDk/UqrterOJDMYn9y8xis4tYF2BFvA41EVAMlpya/C8AqBKoQSEPgDOVV+acnq6lVnFh1XDJJ6gR2NBtQDAPVtlskrOroi2aRcwoiPcRzowQQV21MjaLm1VByq/Ldl6tFSRxHVV3e48JFSguj6FiYsSrYm+hGNpKBbdkoOAV4HFWI8BQFGnXkGybyVh5pLS338mbPWpZcWE4hYEY6PJtM8DcQkuoLae3vPOAjkED1ojZiTR1qU4NZt1CrVVGo+8yzaiWM7q7bk0C9X2KagDL7fkhCd6xjHevY96oMEPcTgj4YH5At7l6xk2x1bEEj7eq9hMVD1j64z7BZ4F4ywNxMQzGbU1lLYo7vVgE1GzUTs8Hzu1NlyYn3xw28Z5BM5DfWaPh55r8bTQ0jo6MSW5XrFv7oS+cRDlmoOfyOtaOZYH3xK/2/yxFRJ0t7fWVMQx/T/+3KY7EWw/w0f/83H+jHb74xI6zlzHOTFePBvgQ+s//mFAG+eTWPkulKPn+u4iBfowynr2GpaMCL4wVY7mX8008f3DJbN+eYjQm8XmwmFvnPTWyxauMf/dlbuLhQQ1RXRJ6GYIp8zcZfnp3DEzuz8lrLBtMRDKUiUpthMy1rPImwilzV9oEScQPTJRs7MhGkI6owrHCl/+QjQ/jssYFNz+v0XBXPjudhOh7OTJQwvliDoSvY0xfHkaEMCqUyipaJbCaJi2UXb1wtIYwcDqUVDHhk5dGQTqXwgeEUXp2p4HSjiGN9cfTEdIldSeLOetLJqRJ6UhGcWqhholDH+dmy1BNkDLMVaWr+4UP9GNoEOERWFbK4ZMLqEnsH49XeiIYF00Xe8tAd0aSRdrZioy9pIF93Za01RLZqRRlxqUbDFMRixUYmrsqcFZthqSEFJPf7sjEUPA9TNUuaHXgUgvm7DE1iztfmqig7DTQtF7myjR42O12KYUQAAQAASURBVKuKjDdl6NJ0/O1LOXzu8VGkowaO9yTwjamSHE9txapZQ0FXOIRTC2XEQkBXxAefbBaPEChE43tZlylQqlbYK1sAp7sgD8pnbyiRwVQYGOhvIqlQBrWOUq2Gl69VUJ+5jkf7ErclgXq/gO9pfB7cKsjwfrH7mlnldh0hfo4sG6Qdo0OxleL8dtGfZxJ6q8m3dyK5e6e7D1c/NP/0zTn8yVtzKNVdYXz47ngef3xmFh/b24UdmSiGU2E8OJzGa9Nl/Mmbc5gomsKKQXDEZ470oVgndZgH2/MhupIQC7jklqzV1dXaXQJUL//PT6OttMd3ZPDnZ+eQqzkiH8MxUz+O9sxuPwFPWrRf/+EjeHWyJJp6lO5p1xTc6rxcXqwJAIbAkLLtCiqWmxz/jZau3UsTJXz6YN8NDCR3iiab9o3LOcyWLHGCiF4NNm+CGugknZoorQlWoRFow/dyfO0UbaQTOzGYxHA6gj9/a05AJsH7P3N0AB/d171poilXd3AuV0ehZOMbb8+hIDJPTeRKwEzOxLXBKLJhQItn0Ksb2NsblWOajgNH8fD2bAEnL1xFLKxjV18XQkpK2E0oZdNucV0RWjsCJ7geCB6JaSr6YqqAOXhal/J1QQ4/PZrZdNNnonY1awdBR0QIE0TSbgTuTGo2yraHcBtl4VrGzyqaKsl+OuB0KoLPpMMaPjiWxduLNUyUeS5csyFhtPndgoUr+ZqglGcdq8XcQsCYr0tJ6SYCaji/QdD2vp1ZXMjVpcOW4JreuI7hRBhRPYTrRRPXSib2ZlpMKa37ej2nqC9m4HzOFFDU5XwddTpkTcBFUyjsCC28Gw7FhYWaaKESIc60ODuaeW805yuoGIo4B6TN5LhZXAvo6ra6h9xPjtD3gh5ixzrWsY6903Y7BbTgs0w+0od7J+KDm02iBgwwTJo++eSTW0q+3ekxMb5YK+Hcbvw9O/24599Owny97sOy4+H/uriAKyUTVoOUzZTaqeErEyU81ecDVg6mI9Kh9+x0Ca8tVgXoQI9wXyqKjw6ncaHWQL4RgiuwhSC5uxyzrLRVckOteKZ9HqjFTcAM9d35dybn+Pu87TOn7EtHpNPu+3Z04fHepDCsEMCyNx2V99+MLZqO+P2U1CEwQqQ01ZAk8ZhITmkaCo6Ls4XqlsAq7TTZx48f3/L1KtkuTi5UBJATU5dlmcgqwmTtxVJdkoT08VdbrOVfE/idNZb9QNOjBE8I7+3L4vV8SUAvPCeCW/anI/jUSO+mQJUA0JG3LYwXm7hWdVpJwpB0yC3U6+hXKwhHdLjRGLK6hi7EJGnoOY7EoW+NX4L59hl0JdPo7eqBowIpg9dw+VppvB94PewqEDJR89ghR4CNIT4/WVEAD5crRZEoSuvhTZlE1spX81hkslz1U6Q0AwtW3Y8xgjW5zrEZpURUTYAtxHq0W0JNQAmpqLgV2A1fH548LfN2Dk7DlZ9REkmYc1r3gi8TFECxIAwzNMr/ZPWMHEtgKiEVESWMsGIIW0u9WUfci0NptJhSWvf1WjGNKv9pcJo2zIYNp2HL2MnWQjmekACd7jyIgtfBaVry3aqiIR7nKy7fW6cslOqtkEAN4hmC8bcap9wvMQ1zHXdb775jHetYxzp2e0Y/jtKgjAtYo9lOz+0AmMl9rx2MMjc3J+zkY2Nj2Lt37z0HRW4VrLKanf9W6l8bSZm+MlPG752bR8Qw0Zcw4WouvjmnYsrOYG86hrCio9fI4HrJwZ+eX8Dlgl+jSYVVfGhnBiNxA5P1BuqehpDehEpJSMZqLV3T9cp+AUjfL+mvtMPZCBK6KqCCrjAB/X7NxPSaeHLAl3inNM3/84kdArQhezqlZvZktsYk2G5k72AunxEYWV4YK7FGQulVOsUjmQjemqng7HQZx9rkctazdrbURx99dMvX67lLOVzL16VplE3ANPrMbEgl88cr1wrrglXYUMz6A5tNI20xT9ny8MBQEj/0wAD+0/PXMFm0ZA30JcL42KFe/HdP7tgUqMJ5f222jHLdwbfeWsBc2W/gZlgzV7AwlauhN9aEFklBN8LY169KLGG7HvSQK8wu5yd8BsWxniwsLSnsiH1EqLQZwTVs7j2bq4nc6FS+JutiZzYqYIpGo4nJkoVvXc3jxx/YWFWDcSmZ96OrJFE5Bv48qNGEWi/WVpKt7w8UF9aLZxjrsh4Z1zR5b77uiCQTjUCqh3uS6ClrmKzZki/g++dND89OFnGlaInkTt5m7OxLVgXLlWNiI33F8uTFmsaRrigmaxYWbQdGSEHaUNEfU6U5mT+frttI68vnGADx1/LvGfPyupDd5SqbvFmjQUtqiWueDPt34Rk4WXOE/XU05oNqjLSBTDqNcM2PrVy3LI1FfD6xdhPENFtlGb5fwPe0jgzQu9hIocWuKzKpkPpsu3VZrAar8MZhhxi7JrlRES32TthWwCpB9+H+/fvFYbsV24gme65q46/OL2AiX0fZdAXhyQ1nsWzjNxYn5T18Ox2DdFSFR4eEm0gzhImCiVNTJb/g7fkAg8B8lOP668Afg58g7En4VGjtdmwwiR85NoA/emMG10sWG6WgqSF8YG83PrJ/OVnKDeipXWs7B1sxjoPUcRfmqwjrpN72JXSCDkhuTGT9oK4fmSg2A6swGGCBg2hmss7czL1AbUBuVEHCjxZIyXCz2ghI9vSuLP763DyuFUz0CPUYUcCuMIZwvvZ0x/D4jrRo/vGIR/oT6FnliKxndDLpiL14ifI1Dei60rpyTZiWh8n5OjJ7ujFfd9Ed1VGxSe3clG7Qq3WgEu1Cb18f5i0LC7kavNpVzNV06DUDqUQcsVgcmqZKh2tM18Wx4CApEdUT9Tc4OhyW20Q6oghwZjOwCmWDSDNIOjyOKTD+ezBuLCXId2ejApohGGZfdwRX8iZqht/B2Y4YD7At9C/IqNJs6UYSyEVnpt14vMeHUxgsmvjS5ZzMBd9LcMh81RbHkvI7XBuU96GepCRjQ01hv3lyMLu0bhhwLJgONE2BqoZ8ykY1BEPXBDDjhUhBbSzd3+3PudVOEWWdXpwq4TvXy7KmCQ5iYMGO1wuLNYw5m3cz3ooJrfoat4Gmqognkzh6dEDGXiqVhIqfEgbs/mByl+AVFkfYzbjevXS/OEIBhfh2YRzrWMc61rGOrTTuoWRToR09elRYF7ebrWZl5N7JZCljGTKqvBP684HvsBFYJeg+DNg373T3Ie3UQhXnC3XkzYbEKoEU6QXbwoWiT4NOS2khqEoDDuVjyOIbAqZrDp6fKYn0jF/cbwFUlngpWj5h4Iv7/1iRymVeKruGHvtHRzKYqTkixxN8isneHxzrFtaQwPqiZLO49WaPpE7QgR+nLSf8QiAch/EEwfi6pyBnESyxsXGNsejOosFWabIDy1HPew3fj7huSiUxIdnKld9gjMEe7UnhS5OLyFuO+Os8FhNqB9NR7E/FsC8VE7AKmWIoI0T5HwJEtmIlx0HOYpLOlaQsFL+blOug6gCOFkNIbcB1mGjUUfNcSRYyqZ1TmxjpHkCm2YBVN3G9OI+Fmg07bKAnEpU1zYIQ/X4aGT/0UFPkf5jYDmI6XhNeJyZ9yfCyGVglqkaQs0sCTAlkb/h33gsRdfmzQ5EEZs060poO12ig7Dgy57bE4z5LZTtwRQ0xdvdjkJhqIKqufHYItbsak9eMOYcq6tApvQMV9aaJuldH3QsjqWlYsCwYTJKjCb6DgBV+vv3crAblYSmz2mqqEJlgBbpqgHwsnONQg+Aq/9yC59xqMD4/E1XiKNklmE0LunyjL8Ul3YiaidAd0Fu/0fxnyo3Mr/766BkZwK7RPVIQYT6AMQ07eHku7WD8jdhx75eYJkjsbrecX8c61rGOdcy3YrGIK1euyHP68ccff0fig63EDsFeL02kly/L64EHHhBmy3dqXIF00nrGPZ7Ah9th59+oRsMc8Rev5LCzJ4eRTE1kRujWu80QSs0KThVCS/7IlbkoXpyKgCQonEnKuZxfrAk4nGDiptQRWuemMo/P7924BsWhrNVcKqyPO7P4oys5zJl+IzFHTeD9R4bTK3z5o6skbG7WyCRzdq4qdSaeC8EbEgcy3gqFpMGXefXF2sbXKvBZeL0YyzC+v5nrRbYSf6bbAhfWbBTm8n1wyHr2yI4MDvYncHqqjK6YLoAXMsSwtvGDDwzg6b3dODqUwqsTRWlePdCfwK422aWNjACOkuXijWsFkRAiowprRgJIcTxMLdYx0NWFubqLeFiXGNByG3JdFyzgZTeCfUODEu8UrBqU2Snk511cqhnoTiYkptENHRXThaGrKFoeXNcTtpugjsQ6QslrIhPRcK1Ql5pROrJ+HEu5KAI6KOvaLjNTtD0kNB/0ETRWDybD0px7oDcuza9ewwfuy3wTr6SG4LWCSWHi1Cgp5INrBhJhqb+0GxtADmTiGIyF8Y3pkjR3sHmF9wbBK6wT7UwYiFKCx/IQb619xm75qo2hTERY8WmMsxmDamoThtKQ+4qMO/TfdVUTKeH2Gk3wWguM3x/RhS30m9NV+X2K65qyPEoIc3UPqqfi0F2o0QT1ztV+PM8jHI7h0N6RpfoF6+as97PhiIDHIJ5Jp31GzPsZfE/7XqjRbK/d/x4YF+/FixcxPj4urB/bVZOqHR1LeRZuVLR3Wn9+I7BK0H1Itprb6T7cTM/94mJNkKJFsmU0g0Tw6mNA2C7MckM2QU1XEWo5CkTmiqPEgjtlUto+vEL2Z00LCW3WYELD/p6VXaAc588+MozHxzJ4+XpRmBmODSVxYii1ZZq3rdqnDvfh//vNcdmI+Tilo8DvIxBmIB0Rtg0yr2wGVJmenhZg0cGDBzE8vHXJoMB64wYSUQ3Fqu/ACNMR/IQzN9sHBtd/gNJh+Efv343/8sqkaEty3g/0xfATJ4YEqEIjUpevmzU6EhwTGXQEWUu0Z8N3zAiisDxfW9FqNjFTdcQB4tgJKuHc1V1dtAzVeAQz1SiG+gZwqFTF1VwV5VwJzsw8aqEwLNWA60RRcv11wWR2YFxXxDNtNX2XMFSRDCI4w3Qt6aYltVtUVfBAX2JpDRHM8/G93fjL8wsCyuE1DmsqlAZEE1OKGK1j8s9YRAf9qkCK6skdmaXk82o7u1AVgMpYi/kkaQD7uqM4O1fDQMzAcDqMq7m6nww2fNo/BgSfbslYkVHnK1dy4jjREU4YIUxXHZTtBg52R4XWnZR0dIrai1fB/c57mcUhGTsdelVBX0QThDKBWbTRuCaBAM91zlbvikNB1PV3rxWFnjBAo9NRZtCxu9u/7/m9gd4qdXQty5IkbwBe4fkFThETvu3B9v3mCHWYVTrWsY51bPsZO+QYH3B/YYJhO3UfrgfAZ+KAxVCCo28WIH23Es5r7cft3Ye3yr4ZFK/bC9irz/d8sY6c6UmSZ8Vn/QO02FFCKLWkR+kK0bcMgBOrI7IbhE2XOLTbf8rgyf+R3gzhQMK4YVwZQ8PfOdSPs/k6Zuq2UBA/kI2he4OE3q3YrmRYOimvlH1aYpFIIZC5QXY9TX5G4EdvZGOwOtcXu1op27hVmux2i6oqEroiVMYOKcBDy748XyOxsCQl17OHu5OSRHtpviQyTUx682cfHPLB3DzcWCKKMdw8gxDHtiAxbxN0SYXFmteVmuAhBbWmBqVpyneQgYUgk5rnoeJRJ72JjK5hVyIBJxyBk0riIUTxZi6PsmWiMDsnkkJe3E+SVnUVTsiD6dFnXV4TvoTNWryia1tKi6OoxVB2azDIfS5NDC6SWhxJffk5NRZPYs6qYarOxgQFMU0X5pl524HFe6f17TSWK4xWHE5mle5wFAORtWUqTc9Cxa0iHApDb31/OpREzTVRcMroD6dQdBxUPVeOR35227XleAMRP3bl5/NOUeR6NMr3oIGqVxNwi6FQt16DpmiS8KUFccy6YHyJghTo8KnK+fewEpE/80oOiiCR7qzxO7WQDrtpQWku51QItCFTDMdC4/7BIhtfPIcAjE9GqbfffltAHoxnmNthcrT9eXG/xDSdeKZjHetYx7avcb9h8xdrNOVyedsBVWjBXsd9jzlLNgsUCgUB1twMQPpuNwWsN7fM+Y+Ojt6VGs1U1UZIq2A0WxUJebqQXjNgy1sZg4z11VBvuPjOZTK9BdL1zaXCc1MBmmQul1/6jY+CzN/A+A1dYQUHV9VoaI/2xTGWNPDGos+SOJowhEFydfPx7dozO9L47kRRGMbJqsL4pUFQAH1QjcwmntQp+jepb3BNvfbaa1KfuRWmnq64LsAY1jUYBwS5f9ZoyHy+EasLazr/+KP78BvfuYaT1wu+rFE6gh97cAhP7/HVArIxHR9sa8beqnFMrFlN5k1pRK0LAMlv6mCtg+uFyglsAF6oOyIrwybbK0VTwCFpU8XRvjgGs0nM1SPIdPfikVQJp6cKsItVOLOLsBQdFSWMfYMpXC5bcB13SbaGxviZy0ndvPAnxnEdzPhso5NVB3EtJM2zXHBHuqNLABYCa37gcB9+57VpkQOi0gFjQW0whAuzFR8k1DaORFyDoamIhlWkohoe25FGahXQKrDxsiVgGcbLwVogU/2puSqqoRAOj6Rw8kpempmlad1lLBjCZ04MCtiIa+Dl+TJm6k6rRqWi6Liouh52IyK/p7RQUKOhBXHMemD8bkMXIA/zEry/e8IaeiKaMBjNeNpdiQv6o7qAjQjUIbsLjefD8zjatczcz5iFr507d4qkXADGJ/kDz6kdjN8ugXq/gO+DPNW7vUaz/TyAuygDxIXKRBaDVSYeqdXLjWA7WuBwEF3MZClvpCNHjrzjN896YJX27kPObfuNQ/QokbIEj+xIR26g6dpq92FgfPAShOA/6/ng9D+7ntlOA6rGFFfrWK2kYeuvUFUCg5bPaS2N7Hbj5nbMKOLUC89L0qa3t3dJAoTjPdiXkNfdtE8c6sV8xcafnp5Fs+5IIT0e1nBkJIWS7QlN2ycP9AgwYC3jfBGwReT6zdBkr7b37PCBOXWL38nEl4/Wpd/36UN92L0JypaglF/56F6R+uGeTzTqnQD2EMzAdUbHhOuEh2QyVsBGsoabsh6FdcdrwG0qcB1PJJXqbgMLNeCl6bJoBZLVZN50cGwwizkLuFbSYKlRuJ6HPjRglGbhujrmEIEXUoQ+PGb4rCS9UV10Ax8d3Fpy+oG+uIBAzudqcg33ZcM42B3DcHKlQ/vEaBqDSR+5TaeEbClHe2P4Dy9N4I9OzwqamwQvsZiBRkiR602n8pP7evDEyDKCvN0YIMwRuBNe+YzZ15MQUMpszUZ3KgKr0USl7gpIhahhUgEGoCQ6khMlS0A35xZrMgdM/i/WHbw538BToxmMpJbBdoET0140an/xWcAXKeqGUxFZX2rwGd7bvLZ3wRE63J/AAwNJvD5d9in15DnWxNH+OI72r31v09FhpwJfwbObThHvMTpGRPEGTtH9ktgNHCE6ex3rWMc61rHtY+wYod89ODgoycdvf/vbW9Yrv9fG/Y5xAmVM6XvS7+zr63vHx0RbK6YJug+DuW3fr5mAnKjY4hvsTobXTXRuJGXabgQlOxs0CwasgIExcddik77B/B669giGybQ11d6XcAgRuGhcOoPvzkQlnmE8QH+FYyZD5UPSZXj3kiH06358dy/+4MqCJOMYq9F3J1V3d1TDnOkgqak4ml1/DAQLM6nLGPlmaLLbrS+iY1ciihwpk50G6q7PXsLEbsrQ8NHhZQbB9c7j8d40HuxKomBTElQRBpU7Yf2RGJRQriVHq0jzhfCLSLue35VILBNDWYu5V60J03NEhohLa8K0QPX0XfGYcHkYqofd2S6cLeZRN3SJZ8JwEbMqyJcsNJM6HMWACQNRRUUjRMkcRb4jrKjoMjZvItAUFSPRPuTtEkqu33nXFU4ha6SghZbjDENR8VjXgEgdBTJAA5EYIiEVfzx5CfOWLas6HCJAJAQ3FBIAfm84igcz/TcwqwRGhhgyokTUtpgjpCCjp1BwSnCaNfSEKaVERhXK++gYiaVxKNkn8kgC2HBLwn4SV+MwGwQDkVFSEcBKKBRHl5pdYo2R47fu8fUSvW7DAUPRMMJQOQchskP6eSxeT+Uu5HikuUBJwmu4IgcUajIf4l/PeCglgJW1PsNnAF8EFLJbOwDj8z7j7wMgPv+8X5K7HbBKxzrWsY7dG7uZ4jr3EIIi2UTJhlcamym363lxv+N+QiY/AmooZboR+9g7WaOhf8G5pdwf1QS4ZwfGAvVk1RSANSUs+6M3Atc3kzJtNxbmhzIVH6jSkjjxsfEr38vf0lva02vjzFQE+Sp9Ln9ul5gTWPPRFDgu5Yb8z22GLeDv9xk1jL/2IsrdXRLT8BUUo8kC+eGROwu4X20He+L4ueMD+MM350V+xTSbCJF5XVdQMx0sVBw8vtNnLtlIAYK543379t0ysOjJXV34yzNzuMR8vM04lKoCIhSLR8fSeHITlv/+ZBj/88f2Yb5ioWZ7GEhFliRtbsfYPLs7E22xzviMKryozF4wx88aBhlC6OvX2XwtQAs28Hryb7KSvDxZxp5uF/u7Y5iquTg20oU5s4Ezc1VYiiEM6X0RBQkzh2JdQ06Jouq4mKsAfcmwSNakDEUUGpjX34hVJTCCmzQlgUslS8AYA2EVu1MGRlfVNVkD/Afv2YFXp0rI1R1p7Gbj+lfPzeNfff2yzGVEaSKZjEDRfOBOJqrjfbu68OmDvet+f852JSZvv+8GYjoGYpow1QwMJnGgAUzPVRFVgLFsFD94fAAfagGKWMsiU+pYIozrtZAAttgIQQncC0UTx7rjGF51Lu1s92uB8flKaQpG4pw/srT4Y9OVBsrN9fMet2MDUQ1Hs1G8lquJdDABRwQ2DcV0AZ+tZcwJEADJF8+BQEjGM6slUJn/uJ9qNNUWW+S72e57sMpWjYuSiUcuxqBDLp/Pb9vELp0g3kwvvfSSoCmJCtsODDBr6SFu1H14MVfDb5ycxHlqrNukwQphf3cU/+Tp3RhoK8BvpfswsEN9ia2AIFcYwQlMCK22gIqOmy/ZSeQrRSt9mR5tmVLbR3bu7orh7336Aek6YrGAxWiiqqmLFoBX7nZ3K+fxc4+NCKPFmZkyXrxexPWyJRp8pH7+9IEe/GCL7WK9gIBgLSZ1b4c+6tGRFH702AD+8u15XF2oiQ5id0LDjx4fwOceHdnSmuV7BtsADHdqfn7saD++8MYMFisWSKHD5CNlmSy7gXhUh2YokvUnTXetQv3wpnC0cf4iXAPNJs7lakgYSQFdnJwpi2N9sCuKmYotDkgkbmBnfz9GbQtvzZVwoehgfNGW+yRqsNOxgeMDKRzfIniJ496bjcprI2p62lgmKq92+5+e3gmvXsJLczYU3fCR6fLeCH7q2CAe2oDphrcHHcj5VbSEQmPIQots9gr2DiQwGA/jg7uzONq3kk65aLryfV1RAwd6QpgsmYLoZvBC8NAHdmbl7+uOYQ2naCgVwdn5ujDjkPqcwDImzJ2GhwF94zm6VePz4EeO9WN/TwxvzfusPwd7YzgxlBSavc2M58DnAV98fpMdK0j0BtSmZMjiPcj3bMfOkQDgySLQu51irmMd61jH3mnb6l4WgI3JEnno0CGMjIysKR+63c6N+x33RsrpbIc9pb07cq3uQ1JkUx4zMPqEX71ewFcmSwLAdahfran44FAKP7qna0VyY7Puw3ZL675M41bNlytdBmKv+J2ki/zfy99b4Py1sDD8ObuTPrqzHx/o3yv+Ca9RoI0exDOrmeHuhpGt5e8eHMD1qo0rZRMXSlXp+CKonMnzp/vTGIqF103WBJJSbOq41SQTr9GHh7qF1eVCyZQkGH2/0ZiBH93djx2JrcUpBC/1Re9s0SJrhPFgVxpT1RxM15X1pbWkZRohIKYxWeefd9Hx4Nn0jZvS7UafO6oowiJyrVbHSFQXidOiY6PLMJBt6ig6dTShIppKYWc0jMVKAbNmGVW3jnHLj2nCqiESpUfS2U0lgAIj80hfpAu9zY2BPmSC2RFLyqvdPtUzjC9PvAWbUlE655TnFMLeRArH0sMypvWMYBCuf6/JZOay387YQYDuQq+tIh4zkNGS2BkbQERbzl+QTcWXRNKlA5HHshqMj5rCyppSEwJi2chWxzSkxSaTidNwoDRVELlCgJELV1o9Vf7sLpgRCiOtdMNs1ODCgQqCc6IwQltc04YhwD2+1pJA5XpkkZG2nWV2OmCVjnWsYx3bXhaAjQloZx2BOfTtXKMJjGPmnsg4bDsUN9cCqzCPx6YGMg6uljItWA7+dHwWF8s1VGzK2YfQE9Hxk7uHsDsdv+lmYhobPJPh5QKKX69Z3x8g9mG020Ohrgrz/Q01mhCkQG+7/G6/NkRX12dgWZkDZjzUGzPw33/4AaRVT+IZFqNZ82DMGcQ0q5nh7oa9fyyLRwdTeHuhiucv53DqSh6llozORw724G88MbpmXYp29epVXLp0SSSlON5btb29cfy9947ht757DZdzddScBmIRBZ843Id/+MHdW2aU6b0FhvvN7CN7svi93jjemilDDTWX2NQdtyFzZBgqTDLd2x6mPb+hQ9UIFgciVExQQriwUEcqrKEZCuHl6ZJI3JBxpWB50uQQJcvH8CD2aE2cXyijZrqYLVYwna+IPFBXRMfhvhSeGdsYtNNugzFDXpvVaAj0+fiBldfuJx4ahm1V8Kfnc/AUAxoB3iGITM9njvTj/aOZDY9J+V2n4cvytuclWL8SoJcSwoHRFJ7c14UHu+N4bDC5Yo0R7MP6CRlcdimKMKaWHVfuwZiu4NGehEjYrmdrgfF7og2oIVMa1QlQ8R8RPstJqunHjnfaOEdPDcTRH9NwucTaZ1PYZg5kwktMK5t9ngxYfO3atWuFBCpJLYK8DWOazSRQ32mrVCodZpV3gwWU0wR8tNNobdfELm8SblK0Y8eOCQpsu9hqR4jOJBObpI1d3X1YsV38+svX8eZ8VR5ipGjiQ/W12Sr+1l+8iV9+/248OpRecoACdpTNHmyUSyH7w2Jtc/3yzSxgUeHYshEVP/3gMLIxA799cgJTRdPvBm0BVyjLQkq1x0bTKyRAuKboBNIp4oudo3S0AzRv0KF4N6wnYeD9e7vlVTAdFOouuqL6uhRiDAR4L7TTZFNf8kquLsnsXdnouqhZXjuyZsxUbXESxlIRkaAh3dmTYxlxhPjzg70+O8g7bQRD/fwjvfjX37wKq6migRBsp4mooWKwJwZdU5FRCWIJCaMKHSGtBUgifRodoPmqg4mSKVSECzVHnONyqYGKaLnT0XcxVXFwqCeB9yQTcK8XhPXHdhx4notisYZZJ49rSh5D/X2yXra6cW91zRBNe7lgIle3sTg5gQcjNTzz9H68Ol8Xlhiijh8eTGE0Fd70+w73xPDVcQt50xF9TzpAJ6dKom/fK5JSIZmjqYqFb18rYk9XTOYqMN4jEj5Q65xahhHSajdwvWThwYGk3LtbtWCejg6kcT5n4VrRRMpgUacp67w/DAyjKU5GkBC+k04RKf0e35GW120fKxIRGke++PzkPchx8znPe5HrImBd4bNjuyR66QTR3u2o3Y51rGMdux+MvjLB0QysCTbm3hEYY5pARm+7FQgnJyfl79uh+zCwgO2kXXeeHTYc6+ruQ9qrC1X8xdUCirYrCR/6OqQk/tPxvIAbfvHYoAB+bwaoQnuwO4avTJRvCrASmN+JuPJnZGigp0SQxWd39+K1XBUvz1Hn2mcKCSK4tK4J891oIiJNBoEECMdN1tEgniHYlqDaIKa5W1K0nKcdibC8nh5IYdHyGTSZPBeq5jWMMSgT8e002Uy+LZou4rqCnrDPeLmWWZ6HGZOJLg8xVcVANIK0oeFHdw1gsmbJcfjvoWh4W/hkT/ZkcHpiDlcdKtZo8Ji4b/I6Mm7xEJYmD5/qWWjHGdMoIRghBQb1yDk3roOSQ83yJspuE07Tk3kgoIMMJTnbQX8kgv5ML+JuCk6phKrdgOW6sOoW5ktVXF8oItLVI4n/rTZm3AwQr+zWRTqoWqvj2oXLeLCrF1pfBnm3LuCq4WgaXUZ6SdpnPYsoEUTVqLCgRJWIMInYDRsLTknmhiwtHBah+Dm3hKQTwbC2nFz2RXpUkcvRoCGqROWYnCsn5CCh3RwoI4hRsqEuLNgLcAgaaarwmpR3asAtudCbYSkuBc+NOxnTEHSjq7cfz6yWQOXz4Tvf+c5S49JGEqjvtH0vdCF2rGMd69j9YvQ1WUfgXnH06NGlQij3je1Yo6ERpMmxsa7E2sd2rdFwTz558qTk+glUaW8mpp/4F9dmcTpf9mU3hbGxicmajX/35lV8dtcAnh7ouqlmYhkDQQdKGA2Y8u/N4pqAQ8UwNDgEWrNxuE3OlDGOy8YAXcHH9vTgoYEEfuvUNC4sVqUJlfEO4wSCmAmmJmN7XyIscizc64NiNJuLGdMQCMJ5CIArjG3uFiscayEPD6XkVXl0BDMlS+ozZPZYcy6aTZw/f17qlg8//LDUj/gznxnFw87umEh1rmdzNRsTZdtv9EyEMRDX8YH9PXhoNI2z02WZp0MDCXSvo3BwLy2ma/ilJ4fw//iLN1FwFF8uySXro4K+bMT3MyNkUaRskivs5irXQURDzFClnsCm4etFC8mohomCKUz5JcsTWSGuH8otjefqUqN6cEcEDb2Mi1BRr1MWyEGtZmFhroKJ8Qq0AV8lYatrYau+PxsurlZsLJoOcnNzyJpz+J8/cABv5D0UbAc7u6I40ZvEWHLzOJMMLpdLphwrS5BOEzhfMDFb9Ws2ZDUJtRoWyDqyOxtFn9RufPNZWXygF5k/dycjEivyeJTZ7dpgba1lvEZj6Rj2VHxmlrjqq0+QWTSlNJFp1pek0u50jUbID9IRed2urZZAZW2Gz4qgcYmgliCmuRdAt61ak9JH1eq2aP66m7Z9IshbtI0WDC8iE210KtYCfWxHsAqTFETqMvintSeitxOV90bdh4G9MVvBeMFsgT18d4Q4CHYRkWXl1168jv/1wxH0RNUtJ3UD9oaeVBi5ut9dtrVx+0mplnLQkgV/pVPzqUP9+IkTQwLWIGjjf3n2EiZLljhIqbAqP++KGfj4gRslc+gIcg744vwEHYq8lrR2uaA7nbjhHJycLOEbl/OYrVjYkYniw3u7hIFmNXKdAQGdtIAmmzIn/+XkpDBgcDKon/gTJwbxnjF/3fG6UWKICc9nx/N4g/Rqgnz2abGfGcvgSE9MJImYGN7XE78jFHF3wujsJQuX8U8/sguv5oCLC3UYhoJkIowF28NoysBM1RHnhnNIuR6uPi3kd/nRMeImTsp3OpxXCqZs8JwLgjhKjSb0UAMI1dAT02Vt50xXUN2ZSEycQh6rUKvjYtnB4txpWecMyAKq9dst2sxWbXzlSh5zVRuF3IIgkveOjOHDXQm8d9fm0k4894v5OuZrjiRux9IRPD6UxOn5KsYJ1gpBnEFfBocdowTHeHLf8HO8vw/3LqPvKfNFgMpUxRYpJn6+aHkyf3vWoWbbzOiYf//BXpycKgtTE+2hhAJl9hIO7t3lU0a2BVLBc+ROJ3rvlHFMvPcCRC+DyQDRe/nyZVkTgVN0N4OorRidINq7XQ+xYx3rWMe2u3GvoA8XUE63a+xu1+RuIFXEpCHHt12AKquTuxt1HwZGrWp2JtG3I7kJvQulJcvzdr6OP7q8iJ/e51PIBsfeSkxDaUU95Msabs2W3xgkdFf/jkmnH9/TiyNdcRzJxpAxVHx1siCdZzFFEX+dyUEmq/alVvpmHDf9VL4Y39EPYDxDn5pgHl7LwIelH3OnEzekJj65UMFbRd/fO5CO4eHuBBKrOqY4HtJkc4xkF2Ks+exUDq8uVnyWSSWEPckoPjnSJfEKje/hfxXXxcsLeeTsZSbBvkgYj3Z3yfWlj98dNkQaaDskprim3jx9Gg85Jh7dtR+Xag4qroO0AZieJVKmST2KnO133TFVS0CVSoC5QlC+vy5Mz4XX1LFok1nFkfUrnaoErZD5IxTCnBWCoSYwTyBPgzTTSaFw5ywQtFK2bUzNz0tSnWAVrgO+bgaMv5YxDpsx85i18qhbbABZQGoohWhXBmOxfpEV2sxqno2cXYXbIPjGQLfud0zWPVOuO6WRbM8T6SFhH2qGYDYt+XPOKmAw0r0k68M/k2ocC04OSsOBFtLkGGRXiakxAa7cihHkwkRr2S37zC2IYmFiEdX5OvYe3y/vaX+O3w0w/p20oAB2+PBhecZvJIHK5+o7eT91wCod61jHOnZvbLNnfVBHoNTJ2NjYivcHNZrNGAzupTFW4Hgp0ULQNv2e7WTtYJVAso/S5ATUrJ7D6ZqFS6W6X6PhD0KASoJx5nsbTfzV9XkMRsPYGQ9vKmXabsyTX5qNYcdACSobQlnbamsOvqFZuAFMlXT5gaazHtRcYlgJ4ht+92PDaXzu+KBI0LMI/0+/cUWYr8mGnggTwKAI0yXl7lnTaTfGne0y7cy5MjbltWTsF8h/MK65GzHqW7MV/PVb87i4UBXGjQ/t6xYJnvZrEjSisEkwaCa+sljDrz03jvNz9GmbyMZ0fPb4AH7o2IB8lveG6TSkyfbUbAUvzVRQdbyl5tET/Qk8OZQUkAwBHru6Y0hH764E0s2A1CrX3sQvv28Ab9aiODtTQVMJIZVgbcbGYCIsDcHCzk4EhMlaRAgkxWedSRrgmWOoO0gaCi4X6rJuuR74c8aAFYtsiE3s7Ikha2i4mqu3JIgySwCnhXIdb5VcOOUL0kjarpLAa3A7VnE8fHOqjKmqjWKxgGq9hh39e7E/lcTf2LH5sXmO10qW1FRYTxlJhkWW90y+huka5VFDwvLK24V5CKUJmNIs00TFtnGtbK0AqwxEdfRENMyYNvoihtSoCKbhfO1ORW7pOcs4+32DSTnuxRLrZMDBZAju9QvYMdgncygSqK3acfAc2a41Go6LzwDmOchs1C6Bev369SUJ1ACMfyuSw3c6Lxh/l9do7nuwynq2OvG4VifFdutC5AbFrpRAquhrX/vatks8c84IeiClWnv3IR9E18s2zuX95OK+bBRF0xGgAwEPQkdNXWY+CBSidIHFmo0XJwr4xJ7slpO6tOslU5K6BmmPberd0dnxN+21x8z/5+/XPh43gJ86MYiff3wZcHNsMInf/MwR/Lczs3h5oihJvz1dUdGSO7yJpAuTNe26aNyQ6RQRqceNkA+39TZC6thR445o0L3dMezqim46L1+6sIjfeXVK5ppsEFfydZyaLOHvPTEqLDDB2mKRg5swE0qc78miiX/73LgAVTg3nB4yavzad68iG9UEiPCVCwvIEcigKeJEHh9KCniA5zVXc/D7b8xgvlBfYrmhLt/PPTKMp3ZuTKnG8X3p/LywZQzScdvTLcjXOxWQEKBGivzjx4/LXL+v7XdvLlTxR+cWxBEyNFXGIA5+0xNE7850RBzeuit9izjQHcPZeYJ0GlIA4Bg5TwJmYQdrzcHrcxX5Nzd9OlfzdX8+mPgNqypq8TR+4NHDIkfGpD83PGqxMtEfJHpvFq3Ja/DyVBnzVQtqcR49GjA8NozpmocXp0oYToY3lNzhGvvLC4s4n6+JhjrvUl7bD+3M4kcO9iFnOuIEn5mtiNObjviJYoK3ypYnDlKt5RQHRlaf949l8PxEEZNlf10xsHjPYEqALLdq2aguklNj2QhqpSLmL53HwUP7l+QPVuvCt3cAbEenqF3fncl+vnguPAc+L+gUsRBAJ2k168q9doL4jLoftOg71rGOdex+to32/wD0Qcrp1SyG2xGAz32YHWxsGKDPyT2PCd7tZpxH7nNM6rZ3HxLI+3ahjvm6i6Sh4nA2ilmy67USZO3yoEH33xuLVcwNJdEd8f3ErfpzpLGVLXadcHT1YVYzNzPp5r/FZ06JKCH84xOjIq1Dox/4A2PdOJqN4VszJczWHUnS8d/v7U9t6CfSGJPyxS7SIHFDP5Z+NucvYFxhbLPaV5it25io2r50SyqyIcUwWgnG37+8gMtlUwDgHNn1ioXzxTp+ak+vfD5YWwT3shEloMl+fraIb8wU/S5RaqGHQjhlV8R3//RoF74zV8a5Yk1iUkNtgmSDY4movI+J4OlaHZ8vTCNvNYRWmGPelYzg+0a7l8Au64355EIJZwpV+e49yRge60ktzf+dyGcwfuN6evyRR2R9vqft99+cncN03RRJH3aglh0mMf1mg4iqYSBiACEPdddFXNXRrYfxpleRtcvuRs5V1SVbUAN2SEHOqgNNB7MWu21VzFpsnvHjeD2kIBzWMXpoB/qNiCT9uRYY2/IeD5L+twLGr3kW5uwCbNNCfmoBg729SGXSKDhVpJwyesMbN+8s2hVcKM/BbCyzrmb0KPYnBhAyeC4eZgmGQQlGSF96hmpNFdWmKSAUzln77ZDSU3DhoeJWUG+Ycn/F1Ri6ja7bilejSgwhatU3XIxfHEdxsShNJHwGrdaF3+5g/GBsvPc3k0Dl2m0H499r1pWODFDHOtaxjm0P0AcBx2uxGAb7SSA/sx3AKvR96YcFUkX8+2rJnXfauP/Sb2COmXWadpnYsmNhql6C02yg24ih4oSEVZDAZsYv5MVmbEFgM2MK5sDfyJWwI9p9UzUa5sDPzjVRDsVwpL8qx2T1h4Dg9iP4rPbAlVwYZYsxk18nisY0uE4Djk3/xy/cUM7k//PMzqUxDKci+N8/dQB/9vYCnr+aFxbxvoSBj+7txpOtusdGcxT4qAS6sz6ymkUhiGlWg2vJRH96tiJ1EdYuDvXFBXi8kZ28XsS/evYyCnVHmMivLNblZz/76DA+c3xwaW0xBuV30Q+k70w2kV/98gWcEUYU/xrlazZ+/dtXhZ2FgI0/fmMG1/N1n0UmFcaJsQx2tXLtRcvFly8s4P/81jhmi6YA8JlL/5EHB/EjJwY3vJ7nZiv4s9Mz8t2ZqI4PHejBJw71SS3oTlgQM9BHZJP3e9t+xybx/3xyEt1RTWoKlwhCqftMKZyEoWRYZIkIQmFsd7SXsj+uSByx3sA6DtnyubYsSkcpwMWiCctpoGQ6iKgKirm6vxZDIUTUEHJaCo88chiuVV9i4GkH4wcqCTfrczOHMFGxoJZziFl1HNi5A2UvhNcWahiOGZJbWM+k+eJaAW8s1CSu5N0TVkN4pD+Bjw1nkLNduYkmipbEqqm2Zg7OC2s4Jb6nzdiI/VhvEi/PV7BgkrnUlzI+lo1LrHurxtrjkS6yuKio1eqYeussxvr7sX///qWG4gB4GPx9O4PxOb4gl7GeBCpzEEEdL4hp3gkJ1Or3AFvkuxKswoIwnQhevNW0Z9u1C3Fubk50svjQJsI4SERsl/EFxgcNb1LOXdB9yJ994XIOz14vCoqQSV4mP4nSo+MhXYgtzfQAL8LGpVqjifFCDYrSfVM399m5CmZLNpqkNtYp7cI5WhuJwmefrq+/zLnvhkmDnb4R4ZiK6Pibj4zgZx4cEhkjFulv9iHE9weJG15XJsW5CfJ6cyPk/AVO0Xg1hH//3euYLVs+4lMNCWDlh4704cRwCtE1dNjKlos/OesXAMioQhMav5KF/3Z6Bg8Np1AuFsQJGh0dFcre4By+fjmHS7kaXK/h63q3GHAqlod/9/xVAaAwaUc07ni+LmAMsmYcGfRBFabp4Nlz84KapuSOroWEqu6fPXsJv/LRvXhoOI0LuTrOLdYExEGwAmVmXpsq4T++OIG644lGHllZztL5qzv4vkN9uB3juROkQiBVQKG32ohMJVMO2UTI/kF9O1LnvbXYlG5TglUYf+StEE70RURG5/RcFWFFEefIa/iJ7ECLk0wzBBnZDbKP+AnyZEuGiQ4G5YOIqm3XyON1IOgrSPqPj4/LPRU40FuhoqMm40SxDjs/hwSpyoeG5JnRH1fk3OZrPjJ5PXt1poy3FqsiD0RqONpMxcY3rubxc8cGsSsTxWTZEoeYwJb2gFFYilrSWKuNn+P38lhMb5NpZrX8D9fZm3NVvD5bFqakkVQEDw4mMboGoIXrklqUr89WMFesoljI4cDAKB7I9q2rC9+e6F3LKQr+/k5ZwCS12trps4PnRdABwHXNTo7g9wSx3G0QSaCFuB0SBR3rWMc69r1m3MvoH/D5T9AH5U7Ws+0CVuEY2FFP/yaQKqJu+HYY21rzy6QZ55WJS+7LZNP7nfMLuFomrTClUsgkqCJrqOKbB+CQ9rPxWj5Z3vbZ9W7m+19brIn/qK6Kk2irt15FtL3XOE5LtoSeZ0JTJHm02vakoi3aX99P3QykspatTtxQhoc+LBlX6NMGzIFdPT34+nxNGFII5qDDGNFUYUg50R3HUMxY0684k6/iSsUUwA8TcEHS7lrVwhu5Kh7vTcp3EfjU7uMz7nx+rriUnOMnyaXB/xFEQkkhUhPHVEU60KbrNhIWpX9Ih+zroF+veLhetZBQNWGiqXuesLTkLAc/f3BI5u1qrSqMI4aiYCgWRX84gj++OocLpbp09DGWemG+iIulGn5yzwC6w7cHWGGxn00sTJqyy2stn28oGsVErS5Aqv5IFGndwIxZR9620RU2kNLDqHkeEpqBQ8kMKl5Zxs9YxnY91BsenKbfjUgClrILRFUXlsf4vYGU4csw0eevuw6KDbKweBKz9PX1yYvrmEk8+qqrwfhcD1tJ4lU9E6VqGaXpHAYGB5BO+ddWDako2NUNwSpkUrlSWYDd9JDRfSlNjj3v1DFRz2N/0mfWzSklORfyQy7dIZTGajagICS08u1GdpUeoxspLQmnwZhYRUS5ka7bbjjI2QUU3Yrchxk9iS49syYbDI+z6CzC9Ews5hbhGA72PbgP4Uh4XV347QzGbwfSbCaBGoDx3ykJVCZ2+YzqWMc61rGO3XsLWL65H5Ahcj32gmD/IzjknWZkpG9DP4z7Ff1O+j7bsUbDMXFfZX2B4wz2usuVHE7lplD3HLhNFr6byBpx8bEDDhNDZy2gBQoQ/8jDZJU1mt6b2pfJ+O0YTVyvJlCZMnCop4yY7rZA/qEVjCoXFg2cup6UWhF95yW2e0OFpitw6i48r4Gh5I3xgqYq+MyRPvzgoV6pMcRusUbDRlG+du/eLWszACsETNdBjaamRvFrL0zgSs73telHDiQN/MChPjwykhagxGpjrvvzJycFJNHefMw6zx+9PoP37+1GNOTK2qK/fOTIkaV1/8KVPF6dKMF06K366gA8HnPm//7bV2Ve2FBKppSpkoXifFUm9SNHB+TzlFP6IhuZ7YaMM25omGKT8tcvix/5Yw8N42rJxPlcXYAtrIcc6o5hpmDiV754HgtVG8mwKmMlM8zF+Sp+8QO7b9tHYy6AoCBKfq1WvKD1J3QZL0EYY+kwjvTGkavZwuzPNUKWdoJzWKN6sDeBx4dSUoNkPYIyQqwZUL2Bf3I92W4TCxVLPluzGwiHQ+jitWrVvVj/mapYck2DxgyyPAUqCVwPrM8GYPxAJWGzZxKPfblool5YRMSz5Zh8bnRpTWngmDPJCLN+Dv9Cvo7X56voimqI6/538Tq9MlvBjlQYY6mIsJCycT9oTgiAUySiYZlqNcMQrSus40NDGQGrsLmBIJe1mjHIyvJmriYNO6z9sWFn9zpNx2RoeiNfxWK1jtziAvqTA9g7vGNpraxXo1lLYmy7xDRrff9qCdSgjheAV+61BKpt29LM0pEBus+MKF0mHimv0F6Y366JXd6o3BD54oObCcD28W0n1C4Lp0xC0dpBQG/l6vjKtYIkCyui5d6Uh+QrZgWJuI6S5S4hImntHYcvz1QEqUqGi9UP+bcWqsIywmI/GTueHM1gd1cUz10tyLww0aqSylpT4Lie0F4JfRwf2PydGjzsNthYm0B3zPCTqexerdl4bryAa4W6IDrfsyMjgJE1cCK3ZEzGcMPiiw8YboJ8PffSKfz2uIZKQxPgR9FuYrJoiVNEZhfK6/ztx0fEIWo3gkMKdVc+ExjnlmOfLlt44/IE8lfPL9FkE9zCDS0V1mRuiTQ1VG7g/sZOI4jk5etF7MhGBMRDDbyS7SFfd3Bmpox9vXFMFOr4qzNz8jk6u5dz7FZcnul/9IVz+LGHhpBzfGYdag6+vVjFmfkKTo0XULFcSQ7z2gZ0bn/25hzet6tLEMO3YlwTTJAyec4CyXq0WDz3Z0Yz+Np4XqRueH5kzqHDsyMZFqAH84vH+tNCoXchb4oTRIALk9VE8PJcOX46BHQ2uM4ioSZKti8TFJgkRUU16UYwFSn822kJOW6uBXYib4WKzjTrmJ6ZRiYaxvDwSpT0phqhzSbOLtRk7AFQhdYf13GlaMm8nIgkZG0MJyO4SvacuisFEN7fXCN9cUPYW9Yyvm9nZn2U7vNXC/jalbyMlKjelyaLOL9Qww8f6RN6x3Z7a7GG70wUEXIsqKV57BscQAE6vnolh88e7LtBdmqzRO92oKLjeDb7To4rcJwJNOO4uUboFLFjgs8PrpHAMbpdusK1rNOF2LGOdaxj984Cal8an/mkBWaBj7TAa4FvtxtbJIvrTETT2H3IYiVtOyZ2Gc9wH12tO//FawVcLtaF6KTi+rI/9IHnlJDI9RDssJaPVXWbeCNXx/7MjQxoBPK/vljHeNlPiu1O+XS+TBgtWj6LH+vkpOVdouVeZUzlMrZZz8NjQpO5r6ShCXUygRkXSxbO5msCsB5NGDjRFRMa5DthvKaB/xFoJzPJy2Tkl89fw1k9K8wdBDvM2U0sWBYmaza+O1fCgUwMPzzWfcNYrpR9Fo8AqEKjT01v6WKpjsjUZYlFeT8YkYiAU9gpV3FczJuOxDFM2JF902eMbMK2PNiuiZFEWObEFtnPkEh/Xq/Y2JsO49R8HeMVSssCpaaLgrN8H3H+/t2bEziY0VFwbEkAMta8Wq0hoRoyLo6PgBABcauKJCJfWSjhY8M3dgzfLNsq4wB2yK6XzxiLx4VZ5XqttlQISKg6dnUlkNAIAvHQY0SwI55AnxHG6VIZCfrHzRCqnguLaqateIWAmyY0OE0yaArcZwnUwa9XCdoXKaGVa5Bj4/OJryCJF8S37WD89Rh4aFw7+UIeO4aHV3SKbSU1XnRNVD0bKX2ZyppAk6iqiyyQ02CsqiKqhkUeiGAbL2jUaHpQoKA7vD67paEY8lrLnIaLq7VJlN0qNIXxaxMTZg0Vt4ax2PAKAIw0/DiLqLk15OZycG0XgyODqIaqCLthZPQbATnbHYwfxDObFTHa5cXawfj3UgL1e6ELsWMd61jHtoOt3hMYyzA+4DO+vTC/lgW/e6fjhqCuRDADX8E5bYcaUrsxlmFTA2PAp59+eomJmYwqAVCFvgrBKvSLp+oFDKcNlBYMYbwPCVCFOWyfXY6eYN6toORQbnKl70MfZLZuYaJeFJBxWNWwI5bCYCSBF2ZLAghgTSZXC+O5qzqSYQepiAcVHhii2o0QJosRFOuq+JjMwwcM/DK/LfdSjSvQLEdiIhrZvF+erQgIgH7/8d44DnVFRWr+Thjz8gG4ltd2iTnwzFn8zjUF07YPpLCh4HrRFmZ2so/v7orhs0f78fH9K2WhKL9zLV+XOlP7vdATN3C9UMfJy7MwFi9JHUB8IseDadroiul4faosNTXmuBlz+spIBGE3hfGkN67jQF9C4hFyCVLG862pMh4cy0qD9e+/eB2FqiNzey1vLs0hr92v/PUFTJRtqDFdPkfw+vl8HW8t1HBuPI8ZNqqqIcyWGe+EpFn76xcW8ekj/TjQn7itxhu+HnzwwXVBw6wXfWhXF/7krXlcyptSh2DTyIn+JPb1RFG0PQFZvGc4jRMDCZTdBjRNQXfcQN12MVvlOieYyF9XqbAC125IE7Ffj+LiDmIEP04kAcvq5o3VKgkBGJ+gBDbjBAw8jGvWAuPzPpyenpFYiUQE7c+6dcpCK+xS0Y+/2mPkdFhD3jRFGohgFY55IG4gb7rImX6NhsclYxIBJmPJtWMW+dwGTTVcC1+dKApjUUxTRC3gSsnE+4fTeKB7ZX5jpm7j5YWyACfshRkMZzJAPIWXFsoCgkmvAsKsV6NZzbrSziB5r2s07ez3G9nqOt69lkCtVCry57s9prnvmVWCC89FTiQpk4+U/mCnz2b2Tush8rvpANF5e/zxx+XBt9b4toPNLS7iW2+cQTSeQpcCVBrAi9cW8XahhislG4tCIdwUvTlDOpqaqLMjUVHQl4lgrmiueEgFGoTzdQ+/8foMfvZoP759vYgzc1WRWCHQgkhRMlPQIeHD+hvjefyth4YwXbIlYSbyPy0Obk0jYMAHqrRvAP7fVyXVgg2Km34LdclOSLKH/G/PjWOqbEmHFd22r17M4W8+MiQgijttBPsEHYoz4XmY18bRG2lgsVzDdL01UiZO6w4uzFfxr781jn/7fQdXAFMkiUsEJXX62jZar0kKPRtXLl7E+x45jrqewL9+bhynZ8ry+wOCVPUTu2VB7fpzwgQs/RkieQWpa3oCEOL8U/qlzoR92cLzl3KCZObV5GcJ9gjmlv9HxOvvnJrC9x8dwFCLtYbfdXq2jAuLVUEDByhQHpfdovzZ5XwND/QnBSxRMF1xQElptxqQsNp4nxD5ykIJk9jcQDayE31xoZgjopgI3IGEgcPdMQGyBKAdOjm0TFhFJqKJDiTXJudZlMtJt66qwiLCuaDDl9AVSYBzg+fH6TCxI7drEzrw9qQ/gUVMqG1ERSfI+ddfxVCqC1Z0ZXKTYJtu6hJuoEvpX7NlFG5gwXMwmAMe43BvXM6PXZgliyheAnc0vG8sgwhZaaq2MKeQ3nArRtDTCxNFxA0FPS1nqQ+GyFc9f62AXZmVuomUYDLrNYTKixgaHkIiEUe64bMHXSuZ2Ne1sTTO6kRv++udoqLbqiO02nEOEP5BYYhOEVmaCHAiWKWddeVOnEcAVukwq3SsYx3r2L0zFvJYqBbJj/e8Z1OfZjuwRW6UiN5O4HuO4+Sb53B+ZgHRSFL2y7O5Gl6aq2CyauFyyZRkGDHsLN4ToMIkKgEfBC6r9B1WHTMACTw7VcZDPQnx/07OVzFTc1C0XUxUHVRcdjQSzKvi1EINr8zXcLwrIsksoxXPBNrxa+/epNNtLwC0GgCCcn6ITH8+1S/9zq9OlfB1gtJbFMKvLFTxynwVn9vfc0MC6XaNY2LChC82i5x6cwp6qQa94WKi4sIMKVDhg7eLjs9YElaAH929Mlbn2NdK4jE2yc3OCgvFI488gjNlC98dn5LEJZOq+5KRFsjHB58HFhyq4jVxrWLJvIhWt0qmRA95y8P1ioMpSpk2fQC60xY3ct6YwCcgpeRYeHowteQ3Uzrn7UIVhRbzoISj7N5zGdMA54s1AauQTn3W9NdU1tBFrmcznyq4l5jkbC+QrGWkvX6itxsjtSjm6uwgBAajUWF+8QHzPotIcIykFkZKrwtop97wNeB53nT745qG7rCBsuNCUVRoIVXALsHvybwSVzVEVW3LSf92MH7AwEMwQpDope/KBPb0xAT69/XDiIZXxLJu00Pa2FiTOwD4rSSa9/9NRXb/6pB1KIasnhDJIVsKN5RK0gXA0mtkYXqOvD+iGJvSuwdWcEooezU5NgEywbiLbhklp4yssQwytBoW6m4di7OLaLgNAaLz2Wg3bFS9KlIa19f6vvt2BOOv14W4mb0TEqjcV9/tXYgd61jHOrbdLJCmYVGeDZub+UD8/TtZBwmYulmcXquutJ0A+Cxanjx7CmpUg+4a0CMGxqtTmDNzWLSqcJr2Mtu8AJFVOE0XCFk42BXC5ZIPFqE8ZhDL8PKQD+XPJyfw2dEdOF+u4lKpikIrFw61DFXxJCfOgvblah5HU72Yt2zxF3kAqQshhIKpo2zrLTYLMj4A0RhgRIBq3WclN9h83CoqEDzA90nB2tAkz05Wif/j9RkpmvukiU08P1XCR3Zk8P17bk+WcS3j2gtyrsp8BeXJC+iONlAlSKfGWolffyFbx0TRxP/5ygSGUmEcG0iu8M19QPTKoIb1j4bn4cqlC/jEQ3uR7BnErz13Fc9fyYsc51g25jOqNFlH8H1vTg1Xm5+eD2Gx5uK1yRJ2dsUQMRTJx1fqLmZLJl67WhA2F6l3tWRhlkbQ5Jg9/Ma3x/EDjw7jwdHM0nonOOQFfrZmSxzl18r8YlrUUIVhZX9fHJMVW2oNBJKQjX6zBggeO2DEZPy2mQ/GJvGfPTGIM3M+6z5rGkf6EuhPGEuSSEGNRjF9VpjFqN1qflegsa7LOiGAwZa8TUlqSgT+NKUOwXXLdcfaBSWkWmWPNW01GJ+1pgCMH8hbBsz4BOHwufDaq6+iT4ugmBrwb7yWMV5M8Ds3qNHQfCnbdX7XWk8EGR3KRoU11HGbKDIBwDjH0ATE1Rs1sFjndVI2ZHFpN96zL89VpH7FBu7A5moOXpmrYF86soK59VrFRKluwluYQU+LUYTXe6JmY7JmbZpr2AiM/05JoPL711NlWc9WS6CyTheA8e+WBGq1WpU/71R8tF3tvger0BjUUsudDw8yfmwVYcSFEiC57racwmrjImYiit+7XiL6TjhpPD+74SfOdOn4uXl74eIVfHV6AY1kj+/AuC6+evY6Kg5gkl7L9OC1ECD0FSiLQkej0aINNnQNmVQElZrd0kUk/TSE0YFMFSeny7LRs/jMh+NizRbGD76ZEjRElJK1hXp0v/XqNBzPk82c9LpMsnHT5kYsD28m01pIyXXnJNB4D/kaitzcHhyI49+/OCEADWohCsqXyOGKjc+/NoOHhlJIhrc2f5S0oYYiN0Oibd+/qwu9iY3pwip2A4qqIp2MY6ZeRQO+lhzHyY2VgJWy5eCPXr2On396mTFof29cnKPrRVPG7cv5NDBdqGJH2MGH3/MQPD2Gf/XVi/Iegi74WTKnBAAEzpt007V1i/LvQjHneiIVdKA3Ides7jSFRYVsLnRSqMBEBG/73ErCt8XWMlk0MdSiDeOcEtRAdhcmEAlECfZhoonJwEMJoj98a040Cn1HFRhKhPGpvd0CKFnLAq1HbhR0graywXAOdqQi8lptgQPULhtEajwmoIlclblphhBWQsJEQieN4BQCqAYSGuKaKgAgjj9tKFLgONhzcxtJOxUd0fKBFAwBOcEmTqfo4zvG8M3JKsapWSjXw2fNIUvMWvRvgXGd7OuKCmMJQTtBUpYAIRZjhltoXM7T0zvScn9NlCykI/55koKOBYL/dHJSwD4RXcHxvgTeO5ZZwdSyllEeiKCXndmVcy9sQCVLOoJ5DoGzNr2YR5XSP6PDiMX9eaSTSfeF834ztpZTFDhD9zLRuxVmla0WhgK6wsApIrsQjx90MNIxCrrbb9Y6zCod61jHOnZvjSBV7vXs1gikabZiUvS0/aTkvTZKL3LvWS8RfaeSzkyk0F9kgulWZGzqlo3ffvltnLMUKNFhOKaJk5ersEKm+MIEP9TafFqCJOxW+lZ8Dq+BiBaS2MentfYTekYrZmD88yfjeTlO1fVQcRqoOvSzGYP57BWMZ5K6hitlS2KZQFqIPrbOBK8kKNcPYpqt+MU3P8ksI6RvGiLNryYJsW9Nl2VsA1FjWU6nYuGb02V8/1h2S/NF3++1xSoulU1hfTmQjuFINrbp3Fe9BqJhA2E1Aq9cR6jBxDfTy/7148efnynifb1x9CeXgQj701G8lqvI3NGXpjH2qZs17IwqeOjEQ3gtX8NfTuRkvpkk5zV5caEisQevYaiNMnuFhSDXRQs5Mv/0NQmEGC/74HlJzi99pNUII8le/9rmrIZcF/q+NAI7al4DdqMh8QA7Av3rExIJobLrCdvJq7k8yq4rQA8mF3cm4niwKytrYS0jAJmMSryXCGbYivG4uxMJea221d/TH0mi5Jioe1Xk7RYluzDCqCIb5ANcGiInxHSvHlJEKkiAW4oi38XfbdXawfjUMCdggPEME9dMYAcguwMH9iOUiGDeKcH0bAkAOe9pPY4ufePkNgE4YYXXw0Zc8/Mp/Gzds9EbTsJo5T+iagQDURZUFkWOh9fdUHTE1Tim6kUUnKqs0ZgWwWi0G13G5vkkMqio5GZpA5kEbCo1z0QWy2AV27WxsLggVQeCNILcEz9LhhcCZcjycjNz+06D8W83nllPAjWgYL+TEqiMad7tid2OdaxjHdsuxr2Ish9kKHnooYfkGb5Ve6fAKsypMQYjCGS9utKdAuBTgpA+B/f9WwFcTC5M4ezCOegjBhSycNRCeHHxdfGFmIcuufSl2NDq+7Jew4EpqHf/85pKlgayJ2iS25ZzCynSeEwWlnmzjj+8NonZuiP+NWVSE4aFhEKWcQ11h6CUEMIR4HRxHjaiEhuRoZzNxnTDLQL1Q01w2/YbbH3nmu9JxljjUZYR/1KfA2wHIMGhoip4oD+BZ1uMl2wuDpgXCWB59noRx/vi2LlGPn8tYy3k+esFzFQcyeE/tSODHevImwTG2gT5L7PJmDQ0N8CXH2Pwv6LpSA3j8yev4egnDi35Qz0JA0cHkwJCSYQZsyrymasLZcRh4xOPHcZAfx/+X184j1MTRaQJNlIVnJ0pS40mpARgcz/OYzwaGJcKc/6XF2s4NJCQuKSIprCiTBUtAW2wwZhz3x4J8e9cC/z5+cnyEliFa68npqNYd+R3ZLkPwN+W60ljMeV4vnglL4znfA9/zWbcj+zMYE9mbXZv3iOMZ8hMwmbirbKAE5jSn7ixUVzqFW23SVdYxf5MVOSRCKKSeLolicvaG+terFPweu3KRCXGlgZjjxKnqrBwHuqJrSmdu57RH6X/ztdacricS57nBw/vwUt5B5NVW9asHz8qeLgnJt+9kbHOwnlmjTKo53DcjM8G48s1Y8bjrDkxtqdsE3/fHVZFgvb3zs1LXYfx+t5MFO8dTm0KWuH9nbM8ySO0G5la5uoOFk0Xw231uLliGYWFeezq6UU2u7yWGCbfSo1mO0ig3glcAK9/O0tTwLpyJyVQq62G4ndSMule2H0PVuHD7+WXXxaUHkEfN4NUaqeYu5dgFRYVWVwntRSpfddbZPz5rTpCTHoUrBrOlWewaPsayv2RNA6lBpHQt7ah87tfeett/HWhDiWWQDYWhmNZmLYBy66j24giZzYFCSvDbCUH28ELTM4ywelpKiJhHQrpuijPEwrJRscELzeYsukKgwY10tpvWP6d3XdkaYmhicv5uhTl+Z9s5C0plqAb0f+M3wUp5+AF/VQrLaDgiukhdMd0ARScm68hQ6QjkbIuO8lCIj80XbEEgPLEjvX1sgP74rl5/M5r0wLU4GX97rUivn45h3/0zC7sXCVv0m5j2ahsJpRXIUCkHYVLRGREBapOE3/95jQewNQKOuXPPTyMf//da7heIGVY09eN1xv4Hz50RFCglNeZKJkYTfsgHBo3tAsLNfk3r504QYL0WU5sMrGdUDmmBqbLpiRa93XHUDVdARHQ8araawcReksuhjqB7cbPBRR/AaNRwIbD+XpjroJZ0xWACB0HMuvQsfzixUV8Ym+XAFxIcR4YH/jsPmYgQRmtu3Efc/6fGU2LE/dNrYDTc1VZtyIzFVKQq9uyIT8ykMRIKowz81XZ1DmPBFjtzkRwtGfjrsCNjOCbgIqOGx2BeURlEpx34dSLGIml0BXNwAsn0JdKYC/RtBvQuwX20EASV4smLhdM0frkpWQwQWq9gcSyI5SN6PjB/T0YL9ZFtonyP1cLJr58OSfgI54rz/PrVwvi/H1y30oaxNXWzgaktMGGuV64HtuLIFOTE3AL84hn+5eAKjTe+3wfKfFu1dZyiu5VovdOAyS577Hrgy/eTwywuVaYHGCXIp2ZwCkig9dWz4PHebfTy3WsYx3r2HawQBaUxbnDhw9LkHsz9k4kdrmXcY+ZmJgQal/6pmvZ7XQhMq4g8953Z0p4bqosIAMmXN47lMIHRtI3AIw3Cux/5+U3caaRQDoRE63mOauGa3VKhDTQF9Hlu7gzt4+UvjFjDqEV5n4r3T0US4GAe5U2VpOYGsLbBRPZsIqsoaJoM7nkgwH4iqh+tyFBE/zc2bzps/C1mFykIVG+9Ua5n7V/4lsAWKHMzY5EGBeole3xnDRJkPG8mCxj8vh0vobv25HZNDlCv/bzF+cEqBJ8x+u5Ko4X4/jMrp51wRa00UQYry5W/fivxRgT6NUT6M6ka5XAnpffwEOJ5Q7GA6kYHulO4uRiBSXblvVlm3UcThj45PE9ciW+M1eSAK6nxVhIz1BXCAzyBBQjYw2YTpbYUfw4lXOdt12Ze4JhCOQ5VzT95Br9UD86XHNueR4EHgWAbJGcXQK1+LEMj+Onhv0GgFOLeZgND33hsK+Z7ro4X64IMGQkFpMxBCAXGu8j3k9kJlpLz/1OWEqPYl+yD2m9BLuZQ8lxEVY5h74kDmVxCUo5kurGrGWi7NrIaoY0TvAcx+IpJG8CrLKevCVZYwhwY5KXvumli5d8mdr+LIx0DPFkHJlwQsAqbE7ZyMKqjtFYFleqCyjYNSm2EIhExpTR6EpgVlZPIa5GUXJqcqdHlSjOVaZRdGqIq2GoChsOajjv2jiUGkZa3xjcwO8iyOQGE7nY5XXExoO3z76NUHcI/cP9K2IAt+EirIShyiq8NVsNXKHdC9aVOx3PrF4ja0mgtoPxb0YClTFNh1mlYx3rWMfuvjEf/dJLL8ke8eSTT960XPU7IW3KOIHNxGwiZl1pvQbI24m3ZD9uOih7RVgNP3dvhMJIammEla03l41fG8d58zKMTARxI44mG3uVOmpeBXoognrDbeXcW7R4jZBI8AReLaMXpcWokjEcVJww1JC6BPbWQmwqDmG8UkdfOCKsiAQDxHQCvPl5So/ymAShA7WGgzqZW1qMhHTIw3oDht4UIAwbXNsvZ4PoerKPKD6bSuBNCwMMp72hoCuiSW3m1LkF8b0ZU5CtkH59ylAwXXXwdq6+JbDK67MV/IdXJoQ1Xtj5G8A3rxXwdx4axoOD6wOiR1rsIQTHsHbFWCDg8iPGIcoGXbeJVyZL+No3vomBXp9lg6+/8diINGKO52pyGdhQEg25+L99aD92DA3gu+N5nJ4uYygdFnaUoEZzcaEm9Qeyf9CCuhBjGKUVZ/C7mQ+fzNel7rUzG5PLTIADj1GsOWvWwPxIrIn58uoajc/+yRddSM6RMF1IEwAwU7UxM1sR1vXBuCE/n67Y+NKVPD6128/JExwSGO9d1iz4p0i3rpKTuhPG9f1wbxzpsIq4puA5Ny/Mmaw1ksW05DSEVWV3NoonBhJ4abos4I8eTREQy3BMx6NDK5Utbsbawfh8drzyyisCZuHPT7/8ApKxBMLJbnjRJLoycYmNh+Kbz8OBbBQX8yYuFeuyDuSZ0YA0T7OuFBjviacHUgIkIaAsToZ/y8MXruRlnbAhmXXZU3MVAbV8Zm/3hjkT5jeYs2C8125So6GSRdtnCSbPT1yVGk0mswzK57rgsk3epuTwzUqg3qkazZ0A4K/eK1ZLoDKeIR7gdiRQK5XK9wT7/X0PVuGCJbJtM5rctSxYiPcyuRvQ4LFbkkH4RnYrjlDeLuJ6bRoFp4yKY8JuKNAQlc3qanVBkjFP9+6XxM5GxmQAN5g3TQ9KLI2+WNgHFjDh3PRTfxWHunDUhKbsj/9gIzhkCRnb2vCYVI42mphzKU1Dx0mB1STQJIRoWBNEalJTZPMgMIIJUNkoWw9HatHxX2TzYIF7PxGQSgjTZduXM5GEENHB/sOcD9qgK5HNTc0N8D7cAMgw4VOdNeU7rpMCnKAKodLyUYprHWK2YoljQkeBIA4yf/z+GzMyxtFMxO/Eqzs4M1vGL/z5m/jw3m58bF8PDvXdWPw9NpjEAwNJnJwsykNemF9aTgklcLjhKCEPrhbFyJ4dsMs5WUd0evhw+3tHszhfCeHtqwSyKPiRp46jJ+kHBVfpxDDR3rbB8HgEm9hRHYtVuyVZ48879xZ2BhKMQcYXns9M2fZp/haqwnpDeroar+VSl2ebvrx8vuVcAXhzoSqgFgIiqpYrDBoE83DeAuM5Uk9wqmKjL2ksIVx5LTnWb14vCPUfnaBDXTE8M5ZBw6xJQMEE98GDB2/rYc1OT6HA1tdGtkd1FQ8PJLE/G8Ufn1/ARNmS7kIWA8q2K6w2P7CvW6jqCLQ5RzRso4lHByI40htfYgq5HRPdzNOn5dkRFLHaqehyMxNwF3UslHuAFhXdRhsewTefPdQr4BvqbrJT+WB3DAdW6RHyGfvlK3l861oBBdMRHVJ27RKww3ubTtBoigleiIzXEyNpucarjYHP9SKlpairqAqbEkFaSqvTmPfKUzvSS3JCpAUnddrHThzBt2ZtuS8JnOF783VX2Go413fK1nOKfDDVnU303mlHqN04LiZj+dq5c+cSMw8dI64fnkuQ5OWfG8lLdJhVOtaxjnXs3hif3dwbmNQh0Phm7V6DVbi3EHhPP4RJXQbNG43tZsH33Ou/Qt/jegETFUsYT7JRTUDkOdPBn1xalKTl9+3evFOT+9+pV1/D9fAIEpEwsi2fjPGI5HAZPzGTKjI9Cqot/3R5xH7ilr5yb0SDWfVpksmMQh+GfpCwpjSox95AStfl74HcpUQYLQYVeX+D4JSmJHr3pSK4WDRhCnDcp832ox4/aURjXNCeOgoAGO2mtMAzQzEDJfFpm5is+WBq0YUP+WCVtTrI+N6LJRMTVVs69A5lYngzX8PFsimdawQvMC6aNx18faoo732iL4nHe5NrUkA/0ZsSwAyBEDznYKxBsstljroBZEZ3YSjqig/LpA39kT3dPRjqzeJK2cTs7AKOD/fjPXt3yLzlLEeOGWuxrgRGkE5U5RgpGxOARfy590EYPhOOT0sO5GzH12kv2qi5Pg25390Kkfhst0DelH/WHBsF15Rjc04YF8VYUBEWUx/owvuYoCRpMnBd9EX8+JnGz+StGr4+O4/+SBgJXcPBVAo74zHxd0k5T9AXE1a3ao0WoyrXazsQpt1SekReYTWK1wo56e7l2rY8FxSG3ZNI4WCqGyOug4l6BTnbRFhRMRiNYzBy6+D71d2W5XJZZJBZxAp04RnrLFxfwFzlmjwHg+aMzZJyQ5EMIqqBBbMMs8G8QgT9kdQS00pgNdfE5eoEFu2SdA6bns+YFFZ4z5LJJYKkFkXRrWPOKq4LVnEaLspuTdYV15fd4JryYx/L8+WKk5of7zNWZ2MFk5Ij/SOoNCrycGFhyGk6sriSWvKOJR2D+OJesK7czXhmKxKo7EoMEr1cLxuNpRPTdKxjHevYvTFhRkunhVHtVgCN91ralH4oax/MsXLMG+0ltxJveU0XZqMGB7bs+wQHB5692ajDcWz06P3QlY2L2dzDWQOYKs8gsjOGuO5LELoh388VyU1Q5tD3Axl88Jt8FscgevAZCPWQioSiwfYsNB2f241gck0huyEbgwms16Uoboq0zLKPQr4KVao9TSmEN0NNn5GhoaPaqCGs+3UCmhIi634ISkOVBmFhcw8Y8VsNAYbGhuZlqHhIb6KH0pQRTfxaxjIX8nXx1zl2xjOsHd3AoshmdsvFq3MVYfIeTBg40h3Dfz0zKwwhwylfipNM78x///I3L+Op0Qw+sDOLR4Zu9MMGkmG8b1cX/urcvLBnBqyafBvrSCrBEQ0Xmm4gs3M3oo2y5LDPnj0rDAq/cKIL58opnBmfht5o4seePo7d/b6PfzVXl/EHQBU571BI8uhs0mCNzL/m/neyYZvrstnwFQcYS1IFIBPXJUe/MOnL4cxXfCb0BtdY2/TQzw/mS9UUYbIvu74ULaVkuuMGilQ4IJLH9WNSznEqrCJvexhIKVIbk8+zoVwN4bXZitRvCGLZmQ7jmZE04kpDajT0eR9++OHbkj3hWOibM95aq0mCMeXBTBR7kmHEQyG8tVhFWKVv3ZDrTyaQH9jbLQwqbMZ9c6GGiu3iaG8cx/oTIiN0u8ZYhj7+4OCgABJ4DZkjCRgCFyYmUWcuorsboRaQaSMlANZCPrU7i7dyEblGPO+92ajI+wTMQoGdmq/huZky5usObNdDvupIfoHsLay1kaWF4KLxoimkACQHWG28F+frLhZMR+Lp2ZqDSJIxJNmY+DsHY8kweqP+daT/zZrC4/sP4s1GGFM1GxmDQDW/IaQ/qmO0jQHmdq29wfhug/HvtuJKIIFK5lSeQwDGv1kJ1FqttmHe7d1i9z1YhQmdW+38vpd6iIFjMT09LQ9tFgk3s5vtRCzYJZwtXZAEik8tTeYSbugWVCSEBrdo1zFRy2NPcqX24urFf/LkSUke9e3Ygeu50tLGHXTGyTlJKlVBM0S9wpB0tQWAWWE3EekhRZwM0mzxgVm0FT9pqhO5G0KV7Aq6CpN/J9MKEbpM+vLh6PpFYknwNpo+fZaAGnRJQJLaig9QHm84FUbV8uRhKhRnQl/nf5bGrjEyR6x2ZwiiYMG8J2YIIOFijgjGUMv5gTBJcFMmGIVGdCaZUr50YQEXF2syDkoV0Xlg8X+uYmG4tQnMVW2RFWJyNFdz8OylHF6ZKOF/eGoMj42sLERwM/ilZ3biD16fxh+dnkWFNGItEAeNc0eplXhYRSqTQc9wn4AWmHhhYm92dhqZchlPZ3R5+IXZH9jq8stENXGsgn9zfuerljCW6LxGqt8bqCr+HPMKE5GaiPqJO8797q4ozs1VYbsNhAlrprPTyuIvaRoS/KP5yX/6OBFDRclr4NRM2X+fSL1oMt/TRVPAMAQn8bs4QCKXExFNEsiBzVQdjJcIumpKByI36xemSpgvVTBSuIydO8ewa9euW07w5U0Xr0yXcK3oU/rRoX14ICH6mGsZpaA+vbcb35ksCStJWFdwsCuKJ4ZTS5850ZeQ1500PjfYgUj2mPZuy82o6PicCdDda3U0EPzxzCaMQX98fhF/cWHB7yz1mligM+Q1kQkrAkC6UjRl3RDpe71kyZyuBqswIPjzcwu4kKuJ00mHmI4iAxYGQLx8BMk8vSO71F1OYB+flWQCiSXqODXtO2K8Vx4fTgkSeqsd1Tdr61HRBTR0t5vo5TGop3mlUMd4wZRnDQE/e7LRO35O7cw8HD8dajpFlG0gNStBLe2sK+330p10hH75l38Zv/Irv7LiZ3yGcV+kseD5S7/0S/i93/s9Wbsf+9jH8Ou//ut3rbu4Yx3rWMe2mzFBequMikwG3asuRHZ0MDHD/WErrJY3G2txr/q/zsziuesF8bPZASW+NKUODU387YLl4ttTZbxvJC0/W8+uXbsmPtHY/oPAbBPRti02SDguJU5b/jhlXaw2ymWOge8joJkJoIyjSYGbIBUBkrQA+1brGNM1RxJ3wfHbd/WAPpp/ZsMEj4SQCasiqUqkBIG/YwkDl8q2+Ab001us2UvACSYWrVXLhLNL/2pnMtySIWoI4IcxDb18xoV5r4E9qWXwxNWyhRfnK3hlvoKK6yFMnW8F+LLGeQ90s32wRwB84d9nag6+NFHAuWIdn9vXh+gq8AjZXX58dy++OVPEi3bJ79KTcfua4Twv+n66rmFkZEB8WK4PAmvpwxbOn0XK8zCaTmMkrsN1HEl6EpDCuJKsi1FGFWQ7cV0smg7KDhOufnMBv4cMIdKB2GK0YfTJLlE2WCR0BVN1F2qoIWClgE+FcxhaklnyQUOBMUd3qVpZBt5QCjQcRdpQWw0bfsclx8AYaCwRgd20l+aa13yiVpd5JrMKATclx8FLi4uYuHYVjfn5Lem5b2SzZhUT9RLqriOJ6v5wHDti6XVBKyNRxiohXK6UUPVcAVkNRWPYn0z7wGfdwCF983zFzRivMyn26ec9+uijS92W7brw1PxuB+MH3WftuvCrk4n8fLcRl9d6ZjdcvFG6gJJTFaAIuy5N8e0hMkKmxyYcD32RhBRxKq7PKrTacnYZV2szIlfELITbdGF5DqLSCESAlIZ+o0cYXJh8ZE6FSccHHnhA7l/d0VH1qlKsMkIGUhrZXu5e0vFugvGDxC5zTlbTlI5xzi07xbXQzem+344EKgtDgQRqENO0g/F5noxp7gRbZCee6VjHOtaxjY15RzLI36rdqxoN9wYChQl+3Cqr5c2y33OvrzSKaAjEg99JhmgVzaYPtiDHCf2IildGVunetEmA/tPeB/Zh0plZkiBcYlHx4fFLnzFUTfyTNhEZiQn4imuGSD3GNQ/lFig9odvQVf/dEZ21FxeuSEKqcgzbUxHRnZYsje9AN+hL879GGBldhSJ+vi9rmjF0Ycmft2yEwx4cU4XbYgzhmPlfVPcZ6YNAR2InpYGRlCqxAovtZ1l3aTUa820EyGheY4mpgvHOyfkqvj1VEkCC4zZAD4SxDGtRbDSl1A6NLCnXW/lrAlBYC2Bz7Y8c7sOn1mAI/5kHB6We8sdnZ6Vh0p9XNhT4TP/0sQkwiMRi2DvQLz4s2d8DyctkPo+n0orI+2YN32/iGuJ4RMK1xS7OP1l7kkZjAnIM3gO8Bj77Pr9HgDoRHY7nwbQb2Ncfl6bihaojdQlheGSntrDlc1215FNa5yLxlxZCPB3GqfnqEtcKa0xHR9J441oBfYbqqwRI0zCkWbg3HZH4JjDO4cWCz+LpN0KEcHq+ioWKid3lcfRm08ISeaugAcabbyzUcKlsCetLJqzhge6YxLhrGetZn9rbLWNl0zDrfqPdYTw2lMLhXt+/5p/B3++UFQoFAebQJ22vSTH/PjAwIC8+YygFw/UQAJkY6xCEzZhmLTA+19PD/Ql5rWevzFXx367kpJ4SInCpbPkN4pq0qWOy4gOPDnfHJHYvraGIQHDTsxMlvJWrSwMQb03WdHlvsAGG9xrBJ88MpWQ9kLWd42c8Q0b3rOngbL6KOZOiyWzAieJoNn5DXuBO2d0G4wcAfDLVXK3Y8lwhk+vupCHPnjtp3OOCuDaIUdolUKPR6FJMs1oClXm4W5UQup9imvserHK7dqeTu3Q+iJhlGpJugAYDruPKQ4zfw6Tueigp3mB0BzRocpPcrJNGRhVSycaUCPIe6W2pAUi8KomNXSiSNGgKu8p6xhuEThAdNS7SlxYKCKG83B1Ipg/wHEnFxqSh31FIxCwfaClNxWzF8Tc2JpSjmnTx5WuOaKVVqjZemqtIByFvLX6GQJd508W05SITUaFGGohGCHhoolJtoFAiMtdP4PbEDUkkk52B3W+apgpamFTb6YgmyWve7EarH5LdewH7Co2PGJ/ezk+cxg0FX3h7Xh7ui3UmWHyq52arE1Fos3UV02VLvvefPnsJb89X5b1B1x43UJ7vlUUfHUsUJ+nXuMkH6FWfKcXXNfz9N6bx0FBqiUqL5ynUxxEN/93jo/j4gR783T9+UwAuvkNLJ0GVNXGgNy6yRe1JGzqudLIJUmGSkw84/pubJB9+B5MpJAzFR95GdVwr1DFXYRK8KfqWHDxBKLxOQgFHgEtMF+klztdQJiLOKzUL+Tvm06mjqLRARAIOIhJa1oeP1yZrSz9BOy3GlOAxSvq8aEyDWlUwX3Xk5Pj+uKHhvbuyqDeBmYotwCHb8zBZtmR9kVqOHbUco2vVcXI8h8MP7Mbu3WMr1m++7uBcri4sHXRW9nfFpKixltHp+8qVnDiv1FxkQYBgisWag0+3WFK4QRUtT7430Pnjz79vb7egtnldObdrgLrXNYKs6DjQ6QrASBsZQRsMoE6cOCGbFcdEx5hOTDsdWzsVXdB91q4LT0co6FCkgxRsblXbxVzNkTngPdRuBGeRUYXf0xvTcbVoSRdtgwGV00B/gijnpnyexZb2eWq3r1zO4Y3ZsoDKOG7O/XihKffze4ZT8ueeFlqYm/PU1JQk7YOkIkEcO9MRcZ4YHNwtB+hWqOiCV/A+Cbw2SfS6rofnJqt4bcGWggqvBOf4RH8Cn9zbtaRPeaeN4yIghS861EyiB4ledpPQuH64B3zwgx+UNXQnZYAYtHz1q19d+nd7gfN//B//R3zhC1/AH/7hH8r6/IVf+AX88A//MJ5//vk79v0d61jHOrad7XaCzruR2L2cq+GViaL4LAd6E+K75hbmpdhMdsigg2gtm69SM70pXWnSCdYCe24laUC/7KXpkkg/Enyes1xEdUV8SGpy0x+kL0JwLEHNa4FVgiYBJlboT6QzGaTzU8IOErCBMIGqeRCQCX9mU5tc5CohIAT6WvR56R/2hDX0RJj09UG2HxtJ4YW5KsYrVgskD/HrmOxhETyuNUQfWxjpWjntGv3ultwh3TceT+IG2/cDePXoTrCDLaMryLd+bkifpCadi/w3WVtoAWUzvz/aAkn8xlvzAqrhcRk7+dLiPmMLpVk5Pv7u9cUa/nA8h5zpSrKRxzFDHlK6ImAbgnU4xorb9GmuHcY6ATDHT86Oly2R+3myP3UDXfCeVAS7k2EMxnT81fX8EkCHyV1KMHGOdycjNyRt6JNwjZAxkclego0I1g4Se/vjYZzMmyLdxJhlqk52FF+Sh/EgYzirQSkbn8GGMSb9VMaB7AJkwunNIumvfdAM506AOS1KFR6nXXKJf6ekUyLsIKwxQvfvU54LGTz6olFcLlstZhWydAD9ZIHMRHGm4CcKORayMFYcAmRCyIYN6fwzQgouzs2ibtn4sVV67pyvOdPErFmXJGN3OCxAEoJ11rI5s4q3ywuttaDJNbpcLcBqeDiY7JYx1z1XgD4xVWslvUMYjSUwFI3L71i0kJ9ja8ZxVV0/5o+r+qbPr6DQQiMYnXEq2VzkXlRX3sPtYPyg+4wxTcAqygRekOjlewMjwMRteEhp0RueNTPmvEj8xAgikfVoIxxSYIKJWXYURmEKY4rPnhlVbkxq1z0LV2rT0hiU0GIyV/UGr78joBPKFsW1qH8s0xRQH2Pz9qR91sgi1UzJM9Gn3b93NM53GowvUtqGikJjEU7T9n/IHAtUJBXKGtyc9MOdkEBlg0cQ9/IZwuvw/ve//44yq3TimY51rGMdu3t2p2Ma7hGs0ZDhhF6eHiJqICSFV+4bBM+yILiWSfFfvD4yLPo1GhbttmpWsy5AFQV+DlXGswTW8I1/c5rWpk0CzMs98cQTKDUqmHJmBAgT+BGhtunSFVX8PxZMWLMxNE2YH8meTnAuWeciioqKZ2MgEsdQOIkLlUU06OcLs6OCuKqi7DpwUEXaSAkIf7fI4jSwaFkYL5vQWwiTshlFFBpckFmOzCyU2/GghxxE1DAMJ4SQBnghDxZ9CpVs/X5MEdRghcW/xbSS0EOYMCv4/StTyHsmdJK2eL6UKt11+tL8GHP+9Gt/6+0FvLFQlZiG7xFAERn3m02cJ/gfIVhOE+WGh3LVlvhA/B6pZ/gMi395YRHvHc0s5cN9+RWfXeSHj/Tj4/u68Qt/8Tau5OtSA+Hx2dTMmLA/YWBvGzs5/XnmVBnD0E8laKE938qf7Ulm0ZvQMVEwMZAKS71pskRwRrMFPPFjKoJLtNZ8sb5BQAKnfSAdRncyjEuLdVETYIxMh5xsL67LxsgQ1CbBK8sN3MzV7xtJoac3IcD9YN6dBhDLqugphHFlob4kp8o62Cf29+BwfwKvz1WRjagSL1ECqOb6srxsRk4aGkKeizPXZzE80o2jR1ey3lcdT8AtZO1g/Y/riKwnaxnP8/npsjB0MhYnGIafy1klqMMpkdPhHOUtV+Jpxt405gw+ursLT42kJfaSmkRouWF7M2NjDGsN/NxarKGrLbiezIWwDsdrVXNcGW87sEFqa5mMvNrB+GzOuHTpkoDxg3imXQqG9TmCJgg+Yf1ptZFRxWw0MRjVhL2e+RKy1zMG5tOK58E8CeuW0mC/Rt2JgKVT8xV0hXVhTmFDyQRrcZqCJwaSUt/ZlYrIv1mfYQx2/PjxJdnn3oiO9w2kUWvlEVYzn74TNZqgNnMrYHx+7lIdOFMoLLHsMioeS+iS99nKuribEqjnz5/HsWPHvmdqNPc9WOV2A/w76QjR+ak32XXFdJlvTa+Ct9+4iHA4cgMNltxEVJ1rALnGHKpeZQlSmlCTN0WbTSeq5FaghTT/JmyBBnyyNyGpRbPpf/d6EkCBRBFR0EwO0Q6lE3hloYAF05ZkMDcGtp2R9rjZIIqSmpR+EpAPQCY0hxK6oECZ8CLgoWA7gmj95M4MEpqKC89fFQBC0mBh2x+T5ZGGzIWeBgbCfvGfl7YrpaI308RuPQG3GcLbizXZCIi25CMx0JKnw7FoMpmtwrFt0a5TNF02MF1TBKFK6aFA943oVToXBA5UbQumWxBnh78nGITJaP69J64LCnGu6uDMTAXnF2oCMPATmb7DtFjzae6Cpcg5ytXcJX1BH9kawkKNgCHg0mJNku3cUP/gjWl89eKizMfDwyn85Ikh7OmO4eceGcbvvjotRX06QDy/7riOHz8+uGLNB+hGAouCa0agUZDY4yZoTl/CQ0YDLxSjuFS1ULD8pBQdMbLUSKK87jsO33ewT9ge3l6oItTw0JsIQ6N24kzF13sPOMnpxLbkfph4jxhai0knJMwyHz/Qi69cK4hDFci60PKmI87Gjp4YdmTpVPnyQJSXem6qLNTs0xVLvp/H5QbL8yf1GZ2rYqmEcm4RsVQW0UzPDcWNL1xYXGLf4LV5dbaCT+7pwq6MnywLwEQ8jecni/juRFGAMjTKOI2lI0KTxu+PhzWcnC5LhyrPa182iqdJbdcCY3A8dNpOz1dguk0MJQw8NJDAjlW6mXTOrhRMzNdsXCqYQkHIO5KUeo8OJHG8b21qa85tQAv+0EMPIZ5M4YXJIs4s1GT98/MP9iWExq5dF51GgM3lKuAYXRjYN4AHogryuZw4RkGiOJ3twikrjtcLnhQhDE0R9O6PHe5DojUn18uWrH9eF65Bl0l3AYtQ69Gn16PTmqu7QgH43tG0gFrajdf83EJNqPuDtcD7dCQVFsDL/p64OPg8XyYXSS3HwtLqhCLvWYKW3mlbL9Hb7iBt5BTxPTN2COdn60hHDQxHwkvr5NRMBTszERzfAEV9J43OcTvqmxTsExMT+Df/5t/g7//9v79E30oNTq7B26X65v7H71ptRJv/5m/+Jn73d39XQDK03/qt35K96IUXXpCgvGMd61jHOnbvErt/cnYWv/fGtMgkCvteKIT9KeCZyCIeOnZU6G7bzXRc6WS6kKvi3z5/VbrWAt/qbz8yJH/fKljlaskSP2cwrksCbUlDXfW72OgzM6FC3yyxRuKgvfuQ+0fQJPDUQBJ/ciUn4BfqW5tNJqwBXWNM44PYCSDlubKDLBbWBOxB/5Y+yGILpHysO4qPjpCxIoT5cRdJ3ZeEIfNH1VWlG2eqasN2fCnNABDhOB76EgY+PJLGqQWymTSQ0nzN90BFlWOg38kx6GjAaHqIsxhPymWFgAMPi5Z/Tfj9zRbohukUJlYo0UOf0HIhmu6a4rdPcHwG9d69hvh1f3m9ALvFYClAmRY7TM7yxePFq6T+ecMH7DAwk8ZNkUBpYsEk8AI4X6wLWIV/fmWyIOfOeXiqP4n3DabwTH8aV8oWrlZ8xsiAjfFAKoojmeXELtcupWGYkKcUVnDN9uzZI4k9kYdZWEAkl0cm3IVFJ4pykwB6JuLpH/rAJovdhl4TuxIR7EwYuFA2MWdaAlRJGyHMmHXwFMVCbWygAl4g2NhfV4z0CFh4sDsOTbUwYTroDi8nVkXq1bZhNerYkzLgeIr49nGd+vUWvjO/KGvleo0snEw4AzXPQ9YwkDV0NLyGxHD83tTAAIw2wAWP/WaxgAvl8pJe/OVKBUPRGh7p7oah+Gue14aSP3z/qfwC5k0TcU1HxlDkO1igmLeq6DFimKjXMN0CvsRVTaR+xuK+rylyt80m3irnMW/562c4GsOueEpANe1WtC3k5GUiZ9d9KSxFQZcRwYFkFil97eRzIIVDtgsm2upNF+eKMyg4/nMio0cwFs8iuUq2h+PKuzZKjCd3DOHhvXvQMC1ZCwQlMG/BeCHRm8VizEE1xA7iJmJKGHsS/RiL9y4dq+KSiJs5AAWe4zdMaKoKRWjGyXjjN6FUXQsRI46+yI1ybAWnIjI/KW05doupEXgNX062N+wz0RAkQUYVJp7Zrb06zmNxacuooG0MxufvwxldgCo6fHp9SRDDQaVZht4ML3V+301bTwL1D/7gD/Av/+W/lMQvuxaZjGVR4XY7AjvxTMc61rGObfxMvt2Y5k41FLNOUm2UZF8KoMgEFl+/OI1qtSbNxO2gVx+c4rPIu7DgwAc405SmLs2eXs27qRpRwE+/BE9pFTsCcDT9FvEL1rAgf8u9i3k5KX43U0hoCZTcMoxQi8mRdY+QBkYIWqgJQunp16sK5TxVdBkE3JPHxa+hlDwCczUcSQ9gKJJCabKIkushoujSGEhJIfo1Vc/G0R4FO5MRn3mwGcJwPIId8TiulVw0vCi+mXOghpsIqS6SYbIstGIfhU3OdckXL1ZDUk/SDYINANsCig0yeCyzUNJfSOkhWE0XVa+Jt0sVlBoehroAp66iYvlxElkuy6aLhbqLV+drOL1YW5ItaZKRn/KMrMq1WFw4w/xdlSw2XFueuyTpU7JdhGwfzH8xX8MDfQl88VJOpGiZn92VieAH9/fgWF8Cf/vREfz6i9dRND3JidNHZX77Rx8YkPx2e26TzeqMlYNrxr8HLBuMaeYnr+KZRA1fqoZxad5GwZLKIJIRFV0tGZUSpYCaTXz2cD8WyhZemyyhFmqgLx1GNh2W2hj9eqVNw5Ts9QQliaSTxuvtx4usa/3cE6N4teaDPNrz6oz1Cf44uK8bOwdsAfSQ2SWZMDDheChPlDBXd3ApX4fBZoq6X/8ayIblWtC/mpudQSyWRrp/eMX9z2byL17J43rFXmoMf2O+Ko3sx9uYTuQ6IITz+Tq+NVmUxmgrognzPRl0Jqs23sqbAuJ4YboibO883mgyjKfY/NoCdLC55UrJxBtXqsIA0xXRcLwvgQNd0RXjYgMwGeLJZnMpb4rEMO9q1jke6I3jiaHkug0CbAZmzEr/nrnt0wtVqQvxHAgYOdIdxUN9iRsaUAk0ulBwUGsm0b2jC4ePGigXC7IeyHjOWIkgp8tKGq9WFJRcSjqFsDcVwWf3dqEv5sdYZKhns3+8dXxKdvG7GPPnrYbUWHo1v4ZI8MmxnjjGUivjK94PZCwi22fQbMwmG4KBpmu2gFf2tWporA8QKMHm6dUKIQK0uMcglbsFxi+5TZwpedANDaMxvwmDc3i5bOP1HPMd96ZGs54E6m//9m8LSITAJ+ZJvv71r+Opp55aYil9t9Vo3vnK37skuctFZDWpXUz3wN8U6GBZtoXdB3egOzawdDPw+4qNXAtlK9zTQv3mg0rkaCh7RUQHdXjFrY1NpFtCRNL5XS0RlawQBEwQxes7QXXPFiq44WhmyxJFKUPHD40N4qtT85ip+5I2iYaHH9g7AjQVXKuYkhxlMpnf0xvWcDQTxoWSLY4DO8n2pCN4ajCJgbghyD6CD5IGE3rLDzXqp83YdcRjDek040Pep55uoBkDPj7ahQE9il97ZQJXC6YwqwRG2jFuuESTMnH36b1pfP8DO2QD3ZWNChL1v52Zwf/xwgT4lXQk6FRQp5B+Ijc0AiyIDq3bDUHrHmo9iLiJ8fyIGP3zN2cFqMI54KsdDR0YNxO+WNQPGMSZ9OT30REj+KRQdyXR/n//4jm8MV3x0a4AJkvzIhVEySFdV3F8JImGyKV42NcTw8f292B3C7EbUBaSGplJPz7I1qOVYnfig5UK3j85i//0+gJetciCA0TV5cIBAT10HIYzEfzd9+zAly4u4r+8MSMrh6AESpaII92GTPV97BB0g8Agn1Hj5x8fwcf39eKlqRJCLfr2duN1qrLj1NAEgEIHeqpsiYNAJCudDwJUeCekmWRvIaw5R7lcHsViAdneflQa6hJoRNZws4lvXy8KFTjXUpAsoyzNN68VMZqKiGzPC5MlYQGZq9mYZSFBCh6QdUlA0tG+uIBQTs/XUBK6Pd+R49p6ZaYsa+QH9/XIdX/2agGnZivyfibB31ysCbjj+/d2C+iFRpaYv7q8iOmKI2Aa3g9ExpLxpWx7+PJ4XhzdIz0rgRkcO9lUeE8GtOBfv1rAi9MlKcyw6EAn8UvjeZmrdtmhswtVfOlKXoBYNDKR0OH6xO6+FVR0//XMNL4xXUKoSZYWBXVXw7Pjjozrs4f6cHquinO5mk87SArFqC+/RYeYzpAhFJFNLNb57AKO9cXxsb1+92a7UeqJ91EyvAokFwpJMetLlxbxzFgGtakrS50Na0kWbVfbKNG7llMkupCOClv3AWOB8Xm4GHJwfrF2z8Aq7dZOwc4EOzsBPve5z8la+fCHPywFhk984hPyIv3bet0nGxnXNCkwmRBgYuCf//N/Luhhfh8Ty/yewPjc4u+++93vdsAqHetYxzp2D8EqBFUTqEJ6WHYI0Q9zLBOvzjRx4pF9K4Aqp6fL+F+/fRnj+brPZNjSEzc0pjkhftivfusqfqzLH99WtKvp40gcRVkVlUALVXwTv9Dsy3wSeH20JyaAlnZjQM89hQVsBtHt3/dEf1L8vm/PlHyNdYRwOAb84OERYQnJWY6AObhPExhCDez+qIZXFuo4X/QBD8e6Yni0NybjoE9EYAYB+YGR1aQvomKi5PtOTNAyDqHTTAaQaCiET4ymMRDT8cWJAiZqPu1uwM4Sbr2X4wijiV84OiBgFXaX8XuYXPoXr09hXEAhPniY55QzPekyTDMRrIQw5dmoOk3sSukyJhpB/WldxUzdEUAMj5mzfXC9xDSrWAJ5HJHHaSXutVYii/MgcaXbEODPm/ka/uPbszKngf3BFQvPThWQDfuSN4fSUQHasJHhcCaGR3oSS51nTM4xEc8xtEvDBEafgUn6QOP5wYUFvDy9gG/VmATXIR50g2EpZVkZzzRQdDx8eLgLn1RC+L3xKVyvMkZnXOciFGJ368oYTgAros/ug5XG4mF8ducgdiQi+P2rV1dIAqGNXYWNEPsTEZ/FptnA9aop302eF8YwZSYQCeqnFJEAdRrCrrcwNwtV1ZDu6kLS0Fccf9G2cKlSbskF+WuL8e1kvYa+ahQ743FcKJcwXq3C9Fws2rYALKLSSesg5zjodw2MxKLCEvJaYRFFx0VS0+V+JhvK64VFGd9wLI6y4+CV3DyKji3fRwDKm6U8CraNR7p65ZrxnrhYKeJSpYiyayNvE2QSQk84gqzKNeWP5bGugRsALgRuBAwjlDO1mx7OFudkbATX0KbNiozrWGagJadDgE8DbxTnMVWvyN/RYnA5mu4RQEIASpiem8Fr5gRqpgPFJfhMQ0F3cLpotTqOVcxZFWGpIfAqrPj05nIdW/cd21LdpieglYRmYHeiD1n9RhYOvkcKTKtiHV77RaeAGTOKmGvg9VdfX4rB7yVzyr0G45PRVyMrLstawZyGQtCaPoCFr3BoZRPHvbBAAvUf/IN/gJ//+Z/HN77xDfzQD/2QgFf+yT/5J3jwwQfxyU9+Ul4Ex90sGL8Tz3SsYx3r2MYW5GNvxei736mYxmzWZC8KvD7Pa0iNpne0C4f2H4be8jk4VrNZhQ3TZ8lv27v9qISupoPsQAKlQmnL39/ubRKMEWouM4hI3rBJnzGEqLIy/8ffMR/HIvFqiSIeZ39yN65Ur6PolHyAjdvE7ugOJMJJ5O2S+IOMl1jcIAClR0uh1vRwtZZHxbWQ1qPYHe9CT9j/XvqoZN4L/E5abySMrpCKvcxtN8ks4/s/PIPhuIp9iS40vRhmqovChJGM1mG0WA4JkBEwNEHVcLArEsEndu4RQEBfhAyDCs4Vq/gvF6clDqEUKeO/omv5LPgICeMDGVE4R/F4E91GWOaKuf+KNE1qeJvxp4By/DpNAMKXWgzXoLDgky3G9yt5osIuT2Z53VcKMB1Pai7M+f//XpkUZnEei8aaARsKR2KaxEn7eghWhoBlBpNhfGB3F44PLkt4svGSQAayaDCXuWIttLFskJHjRK2G903P4bdfm8Wz11lrI6BH8cesKAjrKkzbk3rV//YDh/DyRBH/9oXrUkCv+9T9a9RoWnE4azSMP7QQfvz4EP7WYyPIOQ2cenVK5qLdGA8wX99UNDyxp0v+Tpb/s3NVYQith1WUrIawdmQITdZ8dQV+Z7lSwcL8PLp6epBvGkuMLYG9OlfFtbKNHUljSe6ezcUvTJexKxVGTcAnZZGtIWCGjctseOe15b85/0d643JcgkvOLTDeaPgxcRN4K1eTJozP7u+RmPjkTBnfuF705Xs1FdfKlgA2bC8jgCMaGfL/6nIO4yUL02VbakhseiCghWvruYmirKH3jtwIWp+cnJQG26AGR+DN11pM9KyH8Xy+NUFJ1ibeP7r8edYe/+TtecwQcdVSjdjbFcVnDvbhUEsKhjmMr16axV9P1yXui6sheIqOU5aLgu3ibx7olZqTNEIXTRi6imTKEFANwVa8pxhbc5oJEuIa3pEM4+O7sjfI2PDZwHlmTL/6uUPgzotzZV96uDAnNUc2rt5K/v9+AuMvuAqIQ9wdXo5p+Hxgg9OFkoUn+m5sEr/bFmqTQP3Lv/xLAeL/4i/+Il5++WX85E/+pKyZj3zkI1KjYUzDWsvN2naNaTpglTuE2qVDQ5Jm2cBbckBsfIpGI0LbXA0VJHAnYVmpUfBBLQz2W4V2JlOEwphJkBaSV42H4G4VrBIKoT/Si/HqdUkchEMaYqoh1LR8iPt6cgaOZkaQadNzbu8+XE+iaCgWwc/sGcGCZaNUqeDSaxM4kvU35CNd/rHab3re8E/EwkIdtdq46QzEddkYRE+tdbMzmZeM+gnqrrbONbopTJZdLFVxfCyNf/TkDnztch6//do0VJc6az5KllRndHKYED62o0/YGtrtk/t7BQhCarXumCFyPJJQRxNdLMJT/iJmYNKxMF+xsSMT9dlaao7IkzzQVjz2BYLWboiiQ7YzGxXmFLJNcE8gEMDPPQcI4xCevbSI16fL4l0EUjCUDSLA4K35qoBGJoomxjIR/L8/uEdkUpbWWouBgohOgotYXN5sbTBBeOJgEk+7Cbz9wnXhuyN9tuMyacvNygeGBIUA6jLynwQhceMzwhpU0xXnPng+C6sKiwgxQ1C7KhlsKj6ryXAyLKAKOgKG6oMcaAQZ0WEiyvX5iZLQEfJnBPPEWt2lXCPcWAmOONRjCFL19EwJacVBd6YblVoTJ/rDgqINjHNNOrremN/VFZx3f9zAfM3BqzNlfIdIZMeX9CGCliAKXhHK+PCuJW0g1wcxMGW7IaAmAqxodHy4kV8umMIgwrmio8AxBkjUbIQyOSZOzpYFrMJ1+ey1AmaqNlJELlcgrCME6/Bnh7pjAmB5bbYqWoJLuvaNhiBruRExac97kuwkZxerwnBCthoamYF4HLLH8PN0QPi+L13OC6hmR4rdbCFxvE/OVASV/Nhgyk8ixhJ4q64hEYuKVBfZiFgscG0L37lq4dp8AZpuIBn1j0Gaff5JNheCepiU7Y3rArLhfPDPzx1fBuS1G++vZFiTtc0OaxodLMoC8XoXLi7gSxdmsT9s4x9+6OH7Cqhys4le7jV85gZAttW0hPzrUgPAO2x0QlgYIljqH/7DfygOyV/91V/hn/2zfybn8VM/9VM3dbzHH39c0MBkgSIIi9qITz/9tARz7C5mcWq1A8xEM3/XsY51rGPfC3Y7Rc07KWv60kQRCwLobYg/xj1M+gFDIfzHk7P41vUqntmZxULdxudfpwTpshyNnEdLdpNAaL3FhvhcMYqf2WLimT4F/Tf6OH0xXeIGAmfYKURKYoLI92ai+PH9vSvmbK3uw3ajH/P+4bSAVigHNHnlErJGSBI5fNGCZEaQYOe+/skdYXxyjXGOJShN6oM26CcGn2eiiv8i0J3ggMDCKkE2riR039OfwGjCwB9fyaPm1MQv4OwwORXMdyxs4Giv77cFRh/9E6MZ/O4lH2xAVpcrJimuIWwwTOYxFokoIdS8pkgK0e+m70mv9/HehCSxli5UW0wTXD+JTVsgWoJxZup2i8nG/w6ayAwJ400Df3hlURKFLPoT2MD30r+brpOJpomC4l/3p/pT+PSOlR1Z7MYjkIHyhKShbddkXsv4e/oG78124dLFSdSLFKZtiuSuzWIEWTPYnco4nNru1FJn9yMjdebyBcRNOU0CVtrOm4l1tYGw5sfnNntBPXbhRjAYiWCqVpMkLZPpCK4Tk+shBVcqdfG7STttepRw8qmUefCeiCFsQGPxqDCNUtrnzeo8krqBeDIh37+Hf7ZdY9KrMz7KGstxDhORlOmZrtdQcWxcEDALu2Q9AZtIyi3URFL3qd7nLVv+TqZQgkAIKiFTDI0J7EXLxJUq2VpimKhVUHBs9IV9sD+NBYtZq4Y5qy4yQYu2iQuVgjSUiAxwSJXjlRwbSc1Adzgi75mzahiNLcf/TKLx+rYDN+ZqJQGqdBnLXY6kpSdTC5lgdsR8X/BqrYRrtZIcP2yoPtjesXCmuICMEZHzJyjBTRtohjR0K3FJ8DOecUwbJcXGc5W3EdaiCBthNFWCh8jGY6E/Ysj9Q4AN10mXwTEriDYbOJIawmAku+b6iyoslPgALtLkc/0vWDlUPFPm461yFU7FQv9QNw7uvn+AKrcKxmf8SCyK1MOwKqZZ8VR554zPDIJTaOxC5Pr40pe+JDHNT//0T0vD1s2AVTrxTMc61rGO3T8NxXbDlNoLzW8SbcCIMD+toII8NM8QWSBHRAGX46ggDvDByZSb9FuANUqTtOXmNzNDicBp0E/3fXtVIfCczX5NkRSUYqSaQlRZrsME+WDm+5mLI0vbaqO8zqHUXpieKcd5/uS30TfSjWg4iu6wXx9o37e5z2VCIQxF164dDEQSuFTNCRt/sJc7TQ9D0YhIBmnKytIh59SGhbSWwOf2d+Ns3sSLhQKchur7wDw/NvCS4UMNYX9fF4biK8Gr+1MxHEzHcKlcF4lQ+lYCOAHlWckQ6Mu8VCsenJAHlY3MXkjABczDP9SfwBeuFlp+vC9344PvW10AS9cSGE1HpO5AoASBLWGNSgAtQFWrhjdRsvCta0WpA0nRvwXMJwv5pZKNHi0k4AbGd//Te3dif5v0T6BUwMIv45mtMLgxz39gz058TEvjVP4iilXywTQFTEVz2YYg5+X7V2S9Z2xtUsLV9UTyh/92HNZo/BOW02GBPW5IUzHjtpzrSQ2Ksi69UR2zNRsx3WcTpLHZgDFcre7gm+N5v4FY5imEZFhFg/EmWfmbnJcQDvYmpUH2cr6K2YaJ7lQ36raKnWkde7LLuXzOI5nlCQQJgCo0Ak2ul22cy9dxeqEm14TNFmSiZ6wvkqbMIbSY9scLJoaSYaknkDlnZ3o5PmL9kA3DrNPw5ydnKwLaCNjeWTthPuHlmQoOtmomrAuxWZrsIVNoyngYt06UbRxrsb2cnq/K+mpXCRgfHxfm+4BhhOv7tfmKrKOgbsTYmXNOEA2ZY1jbYj7lL84vCPBmRzoic8HY8M35GnqiBXx6f88SKOGcW4RqsJlAk7oBfVZYJt6aNfHPZ3PQdQMpMrO7DWFAYdyTieqoljyJxVmveYD1yKojuZS/dbR/xTkExjH2RTVcLlpLLDuLloPTuZqs98p8BafmS8jaZfztYyfuK6DKrYLxWR9dq0bjywVjW1hXV5cwm7CR+POf/7zkvb74xS9KnYVr81d/9Vdv6njbOaa578Eq20UGSJyPFn2Z57m+LhzvhWDTQKCTSGSpXyQPqOB485A+NkSa1BZYJYBCNPWtyQDRRmMDqLo1LNp50U7mhpRWY8gYPUhpSfRFkgJYWZ1A4ia5uvtwtcnmGAkj5rm42DZfAsBoOUHtyLT1jBviJ3dm8dtvzmG66iKqkbLZT3iOUX6npeN44/z680jZoPfvzMrDHtAFELBQ8RlqUlEmqxT0tOix2i1mqPjF9+7E//7dawICoaPCI1KaJACC0OEpceN3KPtDFhoFh/vi+O8fHpZOvffsyOB3X58Wp4nnIVrnbZeH582Nh4wfZEygRAo3c3Y8Bk83AlMIiiEqlmPnuEKtjTzI6XAz47j4+2sFE1+5uIifOO53sXKeT58+LclddgLdbGH/aF8CfckwJgt1xHVjie2l4XgwFBfW9bfxhjeHq3ZcnJn5uk/rTocnmQqjXnOExpxG9pdoTBeQCs+O1/HrV3LSwcn1z02bDgUBK3Q26LTSmUgahjgU7Laks0EJHTrsfI+hNRHRNQkk2EW7Iw14tiOFiVA4gnrFRTYCAYO0OzyyFuWeWsOawNs5svz4NH5kO+H7WACZrFiYLJOSjrTdnoBoDnVHhRI+AKEERvAKJYz4Hl4u02ksOSWB8TNvLdbw15dzAhJ5e7EqskD8bunUFe0kyLzQQSGgh4ULrhHqUXKjfOON0yhXqxKYBNe3YHpCG0cASruRdo/rjN/VFVXEGcxbDsZSkSXnk6AWUtLR4SJYhUbACY/H3wlqOxKRV8zjmE2UnCaGG0U49Qb2haN40w1htkKn1kcBhxVV7jM6dY8NpfCpfd3rJvoIDnpiJIUvXlwUMBDnjuAhBiIE0EQaDoquh3NuHM/PmPjI7hsBc++WRC8LiQSaDScN5EirafvrPqCYI4BuNxf4NjHuEQS6sRjwzDPPyOtf/It/cUtdMkT7BkYkOh2jsbEx6XK8nwFKHetYxzr2bmNWmSzWxa9gs41C4ASL9y2ft0kN5YqF//TydUlm0LfzO+38BBmNf9K3ZAKN/iP/m3eULY+PvvLfPD6I//zatCSuaPSXKMfIGGAkGcb+THSFH0i2wbW6D9fzS0hzW2n5XYG1ax1vFs/QdqfCeKArilcX6uKnMj5gcwBprs2WVM+a1pqnkbghTC2XSxay1Ja2HJQtR5LCuq4J+8paY3iwO4YF08G3Zsoix0N/in4s38/EHm0gZuAaddnJukI/XFXw/sEU3tOflPfTB2fHGj0Uv0vRH1YAVAloo+lnLlpEpfhhCv0+Gv9O9hkmly+U6hJPCINMi1o4MIY//RFdEqEvz1fwWG8CfVHfdy4UCpJkYTcPOwxvJqZP6xr2p6K4UiaxOxks/diBVMik/Y6U83jjpWmke3tgegpSmoYFy5Jz08ktrXmwKd3TYlhZBqr4F4jX4q8nZzFZMwXw4zUVzNctX15W8VlVMjqlYhuoWjYSmi+XyVfBcWW98sgEmJihhqwLo8kmAQdNTYOq67AsG8PRCPrCK3379VsiKFPlCbCELCnsfl2wKP1DUIorDJWNhilE95RCajTLAkYhHXwAVAksomqouI40ehBkQhBO+/wL6KjRwOVqAUWnirm6ibrrIhuNy3fy3iOAhjErj5PUdRk4wR+BUVry5KlTcn33t11fdvQG3bkrYmgC7F1r6V6cqJXlOwKmFmEA1MMy3nmrhh0xP6YhUCSQ94GitPIZMTQsSgw3EDYdVAoVeUbGExoqKkFclsj+sHSkgeuRoCYDI9EsBiLrJ2QzegIpLYaCU0VEMVByKih7dWG3jcFArVKFGtFQD7tS5DFC932qbd1EL5kXp6dmMJoZhtckVX2ra5wsQ9LARWDT7VFT3ymjvBiNjFts8iFIha/VCemtWCee6VjHOtax+yemIQBFICoeJWIaUMn82GLvFmlL2LCblu8Pb2U/IAviGvWG9YwSeeFQFHbTXAKs6IoBBWR7TyGshKGFllkiA7ZBFqrZTLxZniyiRhBR/f23PaZZ3Uy82bkdTPZgxqwIKJhykwLyplSlnpS60kbGusmDPTGMmwbKLht4FRTrBNE0ENc1AVV0rSFVwTF9/45e/Nm1eWEmJAMjr0lMVYVVhcZ8dXdUE0ZNAhfITMM48CcO9Ur95nBXFC/NVSW2EQbDph/HBPQqImWrhKQu0xXTJSYi+J4lDTY80+jbMyd7oeAzWrCQ77P8+2uEBxG/P6qhOxTCZMnGn781J4CVdlb0qampW2Kg2NcVw2h3DPmqg5CiIaLrAhjxbBda04O+OI5TpwqYVtICRiBIgk2qBJEkkn6Nxma9gQyRmoJIVBegCo1xyStTJfznU5MSn9YqFharNvJVGzFDk+Zjnn+3ruJK3pRaDueLIB257GQoMTRp3KVPztoOgTFKk4CZBpp6FI5FcJEnjams97TbWlnj1mGF9YSs95SoYb2CMRlj2amaI3K6EUWRGg2bism2mubYVjG3cKyBnFOu7jOx9reAKoER8EQgylevFeWcXpmtCIDGbxJpSqwbblJex5PPE3DC72RcRaCHsEtevIhrE5N45KGHlprFCawRgMiquhFrQqx3sW5EsApZVagmMNTGLsNcRDaq4ex8FR/clZXv4dojcIdMOlKjCYfllUgA87Nl5D1gT7MCp5bHSDgCRwljvmyLNhavO2VNs7zGblOAOR8dy6wJVJFrEAqJVNFU1cFExZL1//piVRpueL9lFQ8ly8ZCOI3vlhv4wW68a2wtMP6lS5eQgiPzVbRdyW/4+wREceGR9HJ9bTvUaBIJv9GFYHy+/vE//sfvuhrNuyOCvg27UxRzkooVTAIXOx0sdna16FJ9SAoaLSAGdQPbHQn5bas7h+/z5YD8heYJ7fXWjOwsh1N7UXTKqLhV+Xd3OANDudExoNwGnaCRkZE1uw/X/Q7Vf1gHN8Lq7sOtGNGKf+eBAXxjooirZQsjCQ1PDiWh6i6+ND0vyTEmyWh8YHNs+5LLzCZERx7rT+D5awVEGxYGwiHEE0nM1VzpviRN2Fq2tzuGf/2J/UJnRopzdoPSaQnOnKhfJiA/eKAXnzjQg4ShYVd2ucvskwd6cGqqhDfIiCLAmyYaio9Jkn+3NPJISUfWjmxUl+I+gS50nph858/39sRQpv4grYXkDZZDew+SJALVkDCwEKxCx5Xah5xnMm6wgHyzdrgnjs8c7cdvvzKBXN0fA/dLojF/+sQOfHxnXDpT56cXMVWgo0I32qdcp5MaJzNGkNBeRRkm3ZM2UaOLsimT7YTXT7TaPWA0ZeBju7vwncmybIAEt0hCXBhcfGp0OkHiFLbQ2OemFoW6cCgRFso9oj45v6/OVHCiPynOK43oZgJHrhYt7EgtO+OU++mL66jajSXwSTBqXg86XHRK/O5Qfyx1h9eK2o0NtGNDSAtIR47OC7uJ6RCRpo6MKnQ2eP7jRVMcHCbw2cV6rWTJ/d3DgoMwJ/lONNca/07nqz9myDq0HAd/+sJpnK82Ec0MY/xSCY8ONoWOjuuKCGECXNodDjqInDN+P42gF/95svLaCDUcaXJalomoreNRZ3P5fWSU4QSNdqcwkuyVIInAqMPNGq5VG9gbBg72xHFkqAdKJIZE2NeR3GzjfmIkLUHMS5MlnJouy3UfTYWhuaTZbGKkK4nJioPvTBTxkd0ru27fTcbuPdKhf+qJE1CuFPH6bMXXaW1Jju3LRnAgY8hzdbUu/DvlCDGxu9ruRKcogzjuPXT8SV3H5xsLV+3BHbtJ1tJP7FjHOtaxjq3tnwdJydsx+hb0aRQyFrZkZgLnlN1xBF0T1E1QgsinBF/XFiO3Q+25zwfSk1u1A10x/PJ7d+L1uYokgoYThviwq4HKW+k+3GjO6Oes1X24lX2Ovs+P7u7CSLyKUwtVodM93h3Dk/1x/ObZOVyr2JLwDKjQ6R/Sj92bWQalHslG8OVJBQXThmrVMBKPIaQZKNgeHlnFEhkYj/fRkQwe70vgatnGS3MV0VKm7xkY/fausIofGssIOLs/qkvXmn/eIXx6NIM/uJJrnaefzJVXyyehi89351tAFxb2k3rQLenLAZHB42AmhpcX6ku+tTQztjGWBEsioSmir32tYglYZSOa7K0Yx/1kXxeuV22cyVst6R0/niaw+6d2jUKvlTE9Ny9rtaxSjtUHkHBMukJwke/zBufdboy+J+oWnGZB6KYJEqFRD9xTQjiUTgjzyRuFEtSGJ4yDjAt5xrxdmOgXSm2ZFMA02ShRlUaBTCyKgXBUYk4CTy5XKziWWV63pDnn/BIcEm01kjA2dpoNpA1dOi9TrSR+aOn+UiXJT31zvwOM9M48hv/79tiaZjU8ZAxDPs+xU9qHsQLZSriuTddpSf0wltMxZ/myv2mDMYuKuuPnNPxagP+8kAKO6o93cmEBz104Bwz2oZaIol7IYW8yhYSmC4uKvH+VMYfC3wVGsAeLBauvO6dZqNxbRnp74UplHoWNP8Hn2QGtqhju75cCVd00JaapUw4IHnpVA7vi3chmu6HpOhJaZGn865mmqNgbH8GUuYCcXYLZYFFHQzxkoF6uSGIvEg4Ls+2ilcNgtA/vRmN88Prrr8u9O9w9hIKbg9skw08g+xBCuBn3C4TK7e9JdyqeWT2OTjzTsY51rGPbTwaI/jn9pjthAkoReZiGD2Zt+b0yxtZ/BLRIXrrFzLHWUdrNsbfOZMnjRREXSTzukzQCOVmrWQtYyWZiFiIJetiKdGpg3N+CwuvNNBMHljGieH/vTpwrL2DWqgqD3lg8g12xJOoo+dJILTmkFoRDgDjttjuRwan8DDzTRJQNuIkECNEheGWkBTC+8Xt1/OyeQUzU6DfZ+Or0vMQXfjusjz5hHeJgNoandvdIbWV3JiJ5edrxnjhO9NRwcq4qMaJ4h5RaCmg/QyEYCoH0EAnUlK6gbgO9Cb/xko0GrEWwnkA2dKlzBIznLbaWIMhhvYDfmwireHuhJqARjvPs2bMC0GaNZq3c6WY2lDDwuYeG8S+LFqaKps9gH/KB+J86NIifeaQP+cUFvD0+j8l8SFgkGUMIEwTlm+K6vFqlpRXXm8Ov2A188cKisJOwBiTnrSuwDE/m4eNjXXhtqiw1HKcZKD/4NSA2U5Khkn43ryMPfW2hILmBgVQYY6mo1HY45qsVGzM1B4Othl6OcXc6gpNzPjgk8OkpS8s6DsfLepevTuEHZLzWjGcJBGFLenASFdtFRvfZKtvNZ0viXJGZpyk1nJmaK2wpVDigETgyXXMQz9dlbgiSIRhqVzosYxQmndba8Y/hCXiDdR/eU186+RZenipBy47iwsUKHhkM4cGBpNRgCPZnnNheo+EYWWsJWFel7sWcyqocBr+TckFsLIHu12wYa8+ZK58vrKnxPSOpKEa6u6UBtl6rY2+lhks1DwNWXWqgh3oz0GIclyp5k9U5k9W2Jx3Bp3Zm8cpcGW/m6rIuKK8cC5F130FfKoWi28DruRo+uSN7Q+PDu8G4HshIQlaRDzzyELLlBl6er6JSd/1Y3GtgIKrhcErfNjWaSqUiDcWr7d0W07wrwCq36wjdCbBKsVhAKEotdhWKprYAJ8uF8WVlZG5oq9GGy2P3ielazpMHOBTNugkTHTwjJa/1jNqH7O4nfRDBKjdjwY0Z3Kg3k9RtNxbg+Wo3Uhm/XariarWGpht0t5EeOY4jmZU34/eNxXH26jQWGxp0zUCl5qArouNvPTi0JKuzlrHrj5qCxwYSKNsu/uyteUyWzKXNeCQdwU+dGJQ/V1s6ooskz7OXFvAfX5qUjT5A4TJhz6Qkj8PN7qmdWTw2msLvvDaDskU5IEU2KToDP3NiEC9cK+DFa0XZEOg8yXVvJXe5KQbGfYsbH5MsBKpslSZ7PeOG9dnDfQL2+evzC5gsmhhIhHG4P4FdvB7hMPbsSWO3l4ZWnBKqPZsOzRq8V8wHiv6jtpLWjd20/GdUD8FzfH3I0YQvl8O7guubEjjTVRtFyxOGkorlYi5fw5Trr/9kVMdIvIEaVOjhMHoSYZEWohPD+blaMjFZtnCgRb3Hcbx3NI2imRMtQ26kdHJZFHh6NINTM2WhhqOlIpqsEXav8j10SkmbTqAGHV8CQ3i+TsPDYt0RJC4dECa7d2eiAoB5caosaFtK4GQjqjhpXD9zdQcHsxHszER9rUfTEeeIzi8dNKLBeZ2Thg+SoTN0oj8hDsfvPPc6ztR0dGXSCCkqLhfr8tlP7+nCA71xoYw7t1jDYNxneWHRg/P35HBqyTnqj+vi8NHBCn7ms9S4eKB3mfKxK2rgeF8cz02UhMKeThGLUyxKsBuUY+Vi1A0WN9IIJ5JQqhY+OaxDrxUwc+GM3POk9dZ6e4WObCPwFK/PI0MpnBhI4j+cmkDpmget1QmZSqbE4TZUV1Cs70bjczJgRKJ0F+nUfuBQGHu748K+w0CHxasjPVEJBtr3pAD5+044RQFq9245WUQw/8zP/IzMCdfP1772NXzmM5+R33OP4l7FjpKOdaxjHftesNsJMgO/kPvH7ewXwgJWKUDSdSGy4jFB5UcqHJ0k9ViEb3cLW79cLQXE5LCAaNn5kSLjxc3FNGQqfHINvehb7T5cL7F7s92H7UYg7vuHkvJqtx/Z243/eHYOi5bXIg5nIV/BZ/Z0LSWvaD0RDY+FLXytbCMUjqHYUKE6Hg5lo3imTQN9LSP45Fi3hh0JAzl7HpMi2bgMvn68N44nB5JrAoqPd8fRHdHxhet5vDhbkY41xjCMSZioJEkKf0bf/ZOjWUxU6jhToC68f3GdZlOAKo/3JvGF6wXMUfqUydUWGCRYL+zQo9H/9xlMFNnbmQQ5evQo+vpuvZhP4Mbf2DeMU4tlvFWoiXTpaNzAzqRPk93T14fevj68dGEc1YoJx22i4iiSbg9WapAMZ5egrvqvJblT6ZrzZWIE4O0RTKGKvA7p0Nlxx8QpLyclfppKE45CsDtwtdSQ8eiKg5TegOZUEYpHEdF09IbDcgxarKFhslbH0XRm6Tp1h8PYnUziYrmMskveGL8DeDAaw1gsgak6E4pMhKpI6TqqJiWQ/PPIGoaAT2h8Lz9PcMmibQsTDAErVdeXZxqMRHG6OIeCXZNOWrKaJFWOL4YpsyrzQGYWHzCj4lKlhEWzhq5wDBXXRs11wT5OAnPIdpLSDfSFo5iYncWXr15GqCuDrnhcEtxvlQrCyPJUbz96w3FM1UsoOiaSmt8VwO8m6IO/o0mMYcQwXi0gri4zDDFXwJg6pS93EwxHu3ClOo+KZyGmhuV+Mz3OWwvIQvYMRREmWb40u444VAzXFcxPz2Pi3Lj4utSeZ1zDWHujZ0BY1bErPoiBSBa1fBlNz/OBKrEoopHoMqPuOmyx97uVy2XRMSdQZffu3fKzbqUXda8Gu8HudAUGIlAbfvEikKcLErzvRKKX8Qyv/d2QZerEMx3rWMc6tj0biivVMsymBd3QoC4BP5rr1mI2toA+ElicyQP+9rclE/Y4aFA3YFubn59fAoHeLNtge13rVpqJ2wErj3ePrviZAF8QgQU2GS5fE55PBCsZsXcbCZytmCjrCoxYBNUGmeZVPJIdEGa89YznOhqPyItn/eXpeeRs3/9mGSKuqfjIYC92JW9k4CbY4OcO9uBYdwy/d34OedcBXWy1GULNBMomm1RV8eH3ZyMSW33+jWnMt2Im+tOMN3/syACihoIvXc4v1WhWzC9z462aB2s/EV0R/+bMG6/LHJH1njneWzGe/3vHMtj9w0fwF2/N4dxcRRpiHxhO4vBgCo6mCdtBMdqNP89dFbBUuVxDoeIIm2SwVHz/KgRdb7Gr6MsxLWN3stOEdUUa4j2nge6Eihhrei6ZKRvYnwljoe5JTp41kVLNwcxiDVeveRLHpRMGxro01BUNajiKbNSQBtRgXsZLFiYr9hJYhfZQX1xkeCj7w9oZm3ZZi3nPYFKafy8V/RoNwSuMGVk747ViowQBJ8UWUwrBF6xVMFalnE5X1FdZIGM8JX8Ytz43U0bBbWC8bEmDO1lG4xrBKTYGkwb2ZqNyrRZrttSS2NTcE9WlplNrXV/mPAh4eWokhagawp+/eAbPTlmIp3uQUTVh6f/TcwvCmvKhXV042B3Fd6fKUn/iObCmQsDOgWxUmkVoZJxhIzzZ9TluGsfB5m42x1NqKbDHBpL4iys5qTVlDFXW4gLZVlRFWFGD52MylRQ5WbNg4v1DBnrcEhYun5M12d3dDbWnR2IaMrNsZKxB7E6H8dfX8yhNuog3qaTgIJ1KQSHTq9eUOibXh7H6prjPLWBUmZyclHoEY8GnEk30x8Mi2cy65mCUTK4Gktr2qdHUarUtyYzd7zHNuwKscjvGTf12NN4FQXj1Ki5fuYxHnjomGoTSVbXU67QekW8gW+L/59PQsVDvLW3+jRKRfDXcKWMSlp391Je62e7DwIKbkQ8wzt2tAFXWMybdfnznEF7Pl3CxXJWfHUglcCybEpRhYOzGG3/zDH7p4V2Y1TKYrtgCSnhsOLX08N/MOOaffXDo/8/ef0BJll3XoeAO98LbjHSVprztMu0dG0DDESA8QSN6aj6kESWKI5KiuCRKsyRqzR+Ks0RBn0NIlEhxKFGUQEAkBUsQABuuG+1NdVd3VZfJMuld+IhnI2LWPi9uZmRW+swyXR2n8VCZGRHP3Hfj3WP22RuHs1F872oBZcMRyZ/3HugSCZ7VLB5kx5lXkq1ELHIxI2MFAQIfO9aDDx3qFno5aiLS9mciePJKQYAOA4kg3rU3g12JoKBav3xuFqMFA0arCEDjOj/Y0uCjTAtH9mQ2gOeff15ozdmBuN3x5uepr7jr/gFMlEx8+2oeT0+U8L2xosgXPTSQEGeMII4r87UVgSo05kJF1IqamwGfdN/S6MiUTdehUcnp8wVDwBODiaBc15mqtSD/5Kfed0EXx4WJWvrWpmXAW/ejKxMRR4OOheLAWQ2XRrmdHzvaLYAOAZmE/AJmoVYfgSMEq8wR1BT2i7NDWRwCc/kdloRzG0sIHYK7uiO42nK4yHzCfR3JhPHE1aL8fn9vDOfzujgSr81VBESTCfqxLx1ZKGAQ3PLydEUANDwmafM4ZzgWROL+QG8CB+I+fPfZF3DJiqA/m0I24t5/IpsnKqbcG3YTv3d3yn3elExYNRthvw/39Mbw0K5FYNqeRAjHuiI4PVNFyF8Xh5BAlZ6ohnv7loIOfvp4ryCWz83XMG6xo9Ij19cTDYrDRokqOoNMaE9XbQzGQzi5tx8Vqx96VxXzxQpGjTLmLlyCY7wmaEuV6F0NUc7zGYoH4VgWnACQTjIhTNmohjhAlC/aSSOgjKAgzmulxXg7AFVoLHzc2x+Xbfn7VTdEuyQBTT1vb0ail8dejVllK/Zrv/Zr+OhHPyqBFiky/+W//JeyhvzkT/6kUCl+6lOfwq/+6q8K8ImFgl/6pV8SJ4gSdR3rWMc61rGNgVUY02yFeY+mGPwyHgeZKDtyXLZAh+1oLeAp/WCyqyg2CrpkAo5Yxg5IY8KGYOZ3DqfweHB6xyi9t9t9qIxrqUrsyvXtYExzV1cEv35vP743URY/khrhj/bHcbCNVYXHfeONN9BVLOBXTp7AZZNA6yYGowEcTYWv68Bazei//sLRHjw7U8XFkiGMe5QXolzQWsx3BMoIm6DPCw8Z/xjT1Jms9uGn9nfJOe+KaK6UZyOOu/JVvFnU5bMHEmGcSLva3x8ZSuO/X5oTsL4LVXEt1JIJoj/BBKPQJE+PYWR6cks02SsZ48P7swkcS0UwUqniUrmC5+fL4r8S9HE8lZQkNyPrvK1aSWitrkkVpTeZrHUZO0J+gpbcP1ela9JlWqFZloOqU5fk9r5oBDOGKYl0gs8J5KpaXpTtxT1bdbKUkJkyBn5Fs8Egkut8P3nPCF7he6d1XcDw2WAIA5GwyAr1BkMY1WtIQ5N9kZ1lRtdl5I0Gz5RAjyAiTM436kj6NYk55i1TpIopM3UskYbdsKR7ti8UQsDrE5mkvGOhQkAIZaoIvmh9rwiKIZNMzjQR8tkCIMnXDQG/8HwzWghHExnkZ2bxzKUL8PV2Y1ec8aQ7vpQqmrNMjNWqOBhP4lA8i5FqHgXbnU8RYTlJIxFY/H7siSZE7mfO1OU8OD/JLrM7kkCXtvi+qD+EU8lhnCmNoVZnMYXMPz7si3WL1KpetxHxu743GxHYFDGU6MJwbxLpwR7k9TLK5Qpy+RKuvnRNnnuMZbgx4bvasyXo0eBveFGyqohGIgiF3HOyG5TX8iLi2zn6ZLLXmA1KojVFMoC5iFsJVKEvv3fv3oW/U8Ig7r8eWKh04VU8c6sSvZ14pmMd61jH3jq2Ew3FrBm8+uqrOPrAIfiFNY0eqpudXmwo3qzP74FTdWshO2WqnkQZGTalUjpxK8b4hTHgVpuJ19pvpBkXyUQbpis1I5wq4SW+CJlF2EBwoiuDxOAgcrbrIw6F2Ui98RzvqUwC6WAAr+VLyJPdIRTEqXQCveHgmrFAKuRFKu5B0/TCtBt06xGLeXCqN4wfGuwSOaKhuCbXwwbVJ68VcLVoiJTQo0NJHMhExM88mo3g9dkaTCVp2gpus0F3TMm2zvrPu4cTeOmF5yVXeuLEiS03E7cb60Q/d98A5g0bT0+WMVKxcPbSvEjrsIkh4fdKg/aLYyXkK9ZCXWSRbJA55CZsuwHTaiBKlowWYILvKZq2BO0M6/nR87NVyfmTidOq1/HqlC6NxHLZzSbGJ8sylhJLepqozTuwTT9OHu2VGIMgBwVUWc1Y0/j4/gzOF3RMVemPe7E/FZKaAJuXz8zV5F/GnEMxDa+2GqU1b1OAKnz/YEwT+SOCbU5kI5goW1KfkNpZPCh1DkpBkeH0/v4Y3pyrYbZm43y+JgASMuGw+VeuS+5/WOoEF/O6gDUYI7EROB7wypx9eFcMD/ZG8dIrp/HirINkOo3h1CJQar5m47mJMu7rT+CB3riAWy4WdJHoJVsKQVHvHkoufAc5xx7clZC6G5uKWUdkfoUgqceGFpsVaO8fSiBvWHhhtoYpnddIlQENu3uiOD+nC+iItUg+NzgGVHO4e3cf/N5+1Ht2Y7ZcxWSlhMLohDDPkoFDxTSrgfF5jN2xIJqOg2rDRjaRXPDNa/UmBiJ+YUjdKavadZHWYX4h1WJ9vR2AKmosDiVDsq1Uo1G1mVsJxq/uYEPx7Vyj6YBVtuEIcZKS8ouyKffecy/CWggOqLXsga/JXi27Da7CAqMXHlLltrQKFUCllfJF2BNF2BdBwKMh7kthAhM7ltilQ0XngYnorXQfLjciqojmEtTeDizM7YCVB7Np2VYFBo2MiCPH4x/exrH4MHl4OCXbRo1Ai/91ZloSlwe7IlLIpx9TMGycna7ilx4ZFtSksn2ZiGzLjbI7//ZDh/F/PXUV52arrgQRk8UeV/uuXDDk93u7NUTmLmL/oYMYGlqKct6qTZZdgMqlnC7ADrPeQNTvahNy0Z6rWsKAUTHsJTTLqxlneJ0FCRYvhKHm+vdwvAgaODNbRdFquAACUr81mrg8r4tjyKQ8kcAtBSBQpYjOSLXuJtKVkdmESGMyrSw3yu1kI9cny8jkQqDI85MVXCuacq2nemK4kK9Jol6N+5nZmrCT0GF5dCCJx4e9Mib8ncjYb48WZbz6Y+7ida/mkwT8WNlEWoBMLiBDGc+RwBkBsoQDOJKJoCeiCZBmgJqFdRsvvvAC7GASgWYc6ZB2XQGCiFuicHltP3woK+AsagmS/YT7ajde10f2d6E/FsSrsxWYThNH++N4oC8hMkntxnn6jx8awsV8TXQ3CeK5KxvBdM3GX7w5J+O0MK7hAH5wXwbXSgb+6lJOrsml6gtjOLkPP3g8CqdckI4AdssSwauAKwTFcRZ95eK8yPxM5EryBMw1fWx9hM9TF4p/Akrev3dnJIDoBP7N5bwAcZR0Eplk3rk7JYWVmw1UofRPO1Bls7rwKwFXboZTREdoJYq5rdjY2Jg4PZSg49x47LHH8Mwzz8jPtE9/+tNyHUTtmqaJD3zgA/gP/+E/7MixO9axjnXsTjfp2ttGTMMkI8EfBBD8/HtO4dITI7iUqyEbDUDzeyQxQ/+GgGyuOOyKEglHsv/ZZIprnQeAQ9kw7htwkzTv29eFE31xfP/7c5uSAVrLttt9SBOKZa8XuVxO6F/J8LHTTGKDsSB+8lBwTVYYGrvx6DdtoknzOiMQ5P2DCbwfqzNrLrfT8zVcLpvIhgIunXRLwydn1SVB9nDv4vrPe393V0y25fZYX0Lu/zfGiyiLHI8rlcrPkOqZU4NxxnGngHKlKNdLloPtGmOwS5UKzpfKAhqZMQwBjGgtv6hg2zDqLnCgxDr/QvS9RjzTYFedBwGPGxvI35a9j6DzGcMSAEfZduQ6ybhCX5ZAFff61TkSGuFFHUHsDlPu1JUionG8q3UHd8WS14GKJDkZjsi23E6lM3JelOYhNXRGCwoAZVI3BITPa8zblgA7yHoSDwRwf6YLRflbE3G/X87g2VwRUX8Ams8vnWOUBSrZFvS6g4jPtwRUQ9DJYDgsTDQRvx8hXwBH42mR9YkKkCWE8bExKbZ0HdgnuY52CR9eD58bBMwcJBNkKI6MFhF2FVoy4AJm2o3FjQcyfbhSLWHOqglIfzASF7DK8u98XziNbDCOabMktOiZYAxRXxAj1ZyAYuZNNv+wKcKL/lAc/cE4LldnMGUWRH6ITPb+/ij27hlA0vJLbodJTPrwjGNUopdFibJTw5XqOKZrOdSMGgKhAByfA6tBGZwGnGYdaX8CmcDqrFCbsapTxYw1D7PhxmVBr4ZuLYuYf2fA5NsFqmxWF17FNDcz0UtwI+/dThTvOvFMxzrWsY7deLbIrcYzXFtYL+BGEEE6nkK1UWrVXRTXoYu4b/cK5bcVzpkgDR/ou3kRQAilRmnH4hnuh6B1xjWUkNkqiJvXzDHjNff390t+bauNCysZxyWIkGwrmZL2pG+wZ88eef/ubRxvOBqWbTPX/+2pvDByDDA/3mJkYd6+RNnLsB/9rYZQGhs5P3n0emZH5tL/2SPD+KPTU9JwyjjXT/YVy4FuNjBumeLfH0pr6CtfRteuXhw+fHhHfAuyjDw9WcGFgo6RkoGS6TKlk6CS5zWnOziRDqFYtlCjxmeraWS1qcg6i16zoWluUzG/TfW2Qo2SfK2aDk5PVYRpfppN4CG/zPbzU2UYFqWzPALgcOU7m6gYTQxSTSIaWMIUSqYR/s4G3eVGwMi9PdfHj2Rgee9wEk9OlDFRdX3c49moAD/Ktisxynv4ZkFHXyQg58x6ynuGUphp5SXIunKuoAsbDJlGhc21L468YUuzCGMHNpYTIKKMdRXW8qqmK8/7jqEQdkUDyIT80rge90Fi9JINBJJdC9KrytJhvwCdyPDChuYP7Enj3lpMzoEgnr5o4Lq47j1708hE/Hhpsiy1nRO9UQGwsLm93TjWP3W4B+8etHC5ZApY51g6LHP7zxtzGGmxnDZbsf/79qSl0eWLl/MidSSxazOMbDKB9xyJIlArSkxDNgzvCmD8p6cr+P5UGWP5sgBTvIEwAk4DAW8TVTblez14tDexI7454+eX5ityv2r1urDRECTzSE9cxu1WA1U2W6Np324mGL+6g2CV2zmmuSPAKtuVAdoKMpYaiuw+pBH8wW4aBTxxYAny0Nf0C1OKdB22uFZ8CKDRtIUCTpC9lCfzaEj60vC26TS301PvZPfhQw89tKXuQ5VU4EZWFjok58+flwnLBx0nM7etUp9tlBWGjhwfKER53Qq7yoXQcGQRX0i+eSCLHCVeLud0ScpvxAhi+fcfOYLRoiHo0aFkEFcLBl6eKMuDPNuswJcbxckT26PJbjcCLz77+jQu5nQB3kxXTAEO6H6vID6pj86CBBe+mkUH4fpO2etMFktXz5E02ovWYkJpyRnxdTJ2kFUm4vfI4kfkruO44C2Cc4SuRfQX3df7wgGYHg+uFInMdmnZ6Oy8azgp/24KmDSQFIYSomy5L87l/88zo6g0HaGOI3U5aefOGTbesycl40EjBboyAh/awSg8ZwJG+Hfug04k6cJYvKHx51QwgI8cyGBXLIjnJst4eaYi45HxNxCYvYzjA90Y3rUHL5yZFkfDsuuyP6KHOS8kCd5yBDnfVgLptBvfS2mgR1qU9Os5zwfSEdmUEejys8d7BehBR4pd1GRcIfL3v742JY7onmRIzoX340rBwIthXuOQAKq4ULP4w+8qwXxMRH7X6sLrFXYwu0l9rz8gSXrRc/R7cDgTwccPZXGshXjern19JIcXJytyT+hMkunnu6NFcfTfvWfzjFLbBaqwg3irz8bVEr2rOUXq59utE/Gzn/3smq9zDf3MZz4jW8c61rGOvR1tu8murSZ3ybjI9YqSDtx4Hv/Pdx/An702KbKVlMEkwJU+TY4aJ+wSimg42R8UAG3RsGU9JxD3b98zgI8e6b5uHdqJLsmd6j5U4E/q7fK8mMThfrlOq3iGCeMblWRgXMYk2HalPbdrVyUGaC50xQm4wOOB39PA+TbA8nrG+fL4rqSAW2ZJVex3NbffKNQwrdsIMkYYv4SYp4m7t0GTvdwulMp4Zm5eEng5y0TNoQypR5hUQtL96OBSvY5sICrSRhvNFAhYxddqO1z4Si7Vf2dMM2+6HZ8Vpy7AEKPOWIhMI01hJnGLB2SlaWLOdPChRBYXK2VMG7qcJ/1gsqTsj20OFEywyCPZbuQtC2ajLoCTV/N5TOiG6GsTaEKI0JxpIezzidyPKxO8GD9UHUtAGpTeUcb3Br0h5EWeR5P3EISjnktGw8FAOIp707sEZHKVCVC9DI/ugbdUgz46hfvvvRdXmnXMlIsytyqtHAsBM/yd+1NGcEq2JfuzmhGwcrcWWsjzrPWMpDQTJYHabV80I6CYeasm15sKhOSYeauKSSOPkE9bGANKB02aeaTjgziUOSSa3fThGc/wGcHnTiAehLHLC8vbQMN2oIU0NDwcm6aA78mw269lsDc2uCPPD7KpTJjTsJs2Ql73/hkNExPmFIY9Awj5dpaRcieBKpsF49/IRO9OJnY78UzHOtaxjt2e7Pciy3LmDAqFgtQ96GfT6DnoTfoBzoJuKf+mWO39YC6YcFzWbpoLTPdhxODzBHY8nmlns+S+2KW+1WZiVSyltCb9FRalCYBhHMMaAmOa7TYqr2Zcv3k8Fn5VM/GtMDZyTukWItL86/qJBJnQB6ec0GjVXAJWWcvYYPprDw8JMz6bMcjSXtAdPDdeFAaNtMeEd/oSjuzfL00TOwFUISDjS5fzeF0aiZsim0PwORlKKYXD1wsNR+K1co2vuYz0bHhezVzfCnBst6m4PY5RYHzuh38u6jZigaCw4BN4r1Pe0qjL+9joSZYVlmrINWnZDdiGg7sGErhcMgT+xd0QEPJAT0xAJZsxgk/IDk92FVV7+b9enkTBNOTaud+q08C5nCGNzGRZ4TkNJxbvJ2soLuNrK571epCNaGiykadVsyCQhPK5NIKQODc+vD+JuzJhvDpXw9m8DrNoIuarQpu9hj0RH+4/fhzPvzQpLP1Ni83NdZEqIpMPt1BbEyzrDtxWM54TmVi4iTzpOvOGQJ52OSXN78VPHOvB+fmagGRYb6L6AIExCqjCsVHM+ONVC0/P6vix/f2SL+Ezgs/FdjD+SKQPr9gRYdXxs4knQClZNv42EQ1A7uVjvXE80ta8sh17LVfF87MuMKo7GJD4nTK+jIffvyt1Q6Q6lxvHns3VZBFhXXurtY5bCcav1Wpvi5jmjgCr3Gw9xGKxKOAPgjTak4wsuPsRhI/tOe4fRN7CpUtjQd4Lv0eDh4kruMkbUqiRcWUl2wlHiA8jJkRZRGbSZavdh+3ah3R82GXE/TH4p1NERBZppggiUYnenSpyEkxECj86dOzGu1HO1kaMDB+qSN+OlVAOgwIpbNR4P4ZTi9dzKBsVlCeBQCwe3H3/zgJzXp4s4ZWpijCmkN2ELG9MqhpOHVXbKwsF//78ZEkcEtrmYGBqfinFetfqTRfUQ5AGixkEeJBqjUCdURf+CYcvyvwkkMQFytCR+PETLnCCSF/q+R1MR8SR2opR2ogb7ZuX8/IzJX3K1iIojGAKpS+43MhOQvkgMsHQ4VD3nud6ojsmrC+kDSSrkjsaHpETopbjVy7mcCGvIxX0oWlbeH50Dt2JLB4Z2IO+aFCYWb43WhBnlCPH3VPT/hOHupYAZmh0YF+equBqyZDXSGt3vDu6kPwm0vdq0S1CDMVDQrWnznej40Skb7sRxUtNSIKNFFKYY0VQz0heF2eeDDJ8bqlnAJ8Zr4zO4c3nJ+GtW4h56Sz74fc3MGd7sTsZwq8+NCjO5E7ZbM3C+ZwuGpTqXmfCRIMDr85UROaKKPUbaXRY+MwiqFFp/e2ErZbovVFUdDvpCHWsYx3rWMdurG02blAB+5UrV3Dq1KklwOjumIZ/+Mhu/N8fHBKfh+Dc05MlvDZVFlDzoWwE79ibEdDxeMkQGtq9lGxcJc7gWrSdmEZ1HxIsv93uQ7Vucm2mxCa3dqAtEzh8Xfkya0mBbNbYuUL/gHHZ/v37b0piZjULtvyD5UkzesRhZnk3aUzaDcUW/fN7umLiRzAZT1+CifSdAuaQUeR0voB5kzG2RxKrQu4uQGi3QcRiR55lwXZUL+1mIpqWoJGMzaIGKWnF3YjePYe+cFT8bh6/bNUWE8AS0rjxDc+Lic7DiTh6wyFM6rrICKU1DYOUj9nCmHDfmZYOuVGvY96y0B0KoeY4qIkUEJthPJJMpQTPcgv5/Ij4AwJIIfuKslqdoAg/9scyGKnMY97SFxKf/MzeWBolx8TrpRkBykR8AczncygZNRw8sheJZBK7TAMv5+cwrrvxpjTreH3o0oLXMcVIoaNWwbUa6bsddAdD2BdLIBlw4wKz7ohUkXuefvSGooi1JH02Ok5pLSxbu+WsityndrAO2WIM20LBriKluTkM5hxYjOBGH/ul2TdQdPJo1urS5MBrC2g+NLxN7Ar1YXe0X0AzO2UluyyMLVHf4rOV8kIVp4aSU7kpYBXFurUdoMpmwfg7LYHKfNVOsDl1rGMd61jHbrxtpQ5CcCnXKvrrjz766BJgtOYNIdAU6PQCm4rdNOE0XTo8itqQQaXh4THJh0fG7BtXoyEAlOdKMA3ZX7bTTKzOhWzI3B9jCwW05ca6AusyjGcY5/F9OxF73C7NxConrUAJ7aYw58z3b9bIvqKMueNPJHowOjqKCxcu4a4TOwvMGSkaeGW2KuAUAt9ZmvC0YgkCNZjHZyPvhaIBj5f+EJkgV4lqVuw0Xnr9C/JBLRlf+vgEgLAOxVrQXM3GRW9Z3rMwptJ83JCYhzJFH9mTxoWCIYwoZMjYkwxiTzy4pblFFvu9LdmV07NVARoReJEX4Ix7fIJWKCm0Ekt6RhjuPVJHUYz8ImnvNHBfNirSPC/NVVEyTTk/Xu/eeBCH0yF8f6qCV+aqwgDqbzZwdmIWAS2KY3t2IxnWpI7yv96ck4YIqdG04t13DqUwsKwmxUbfFyZKAihh3uRETxT39MflnHg+ZHoZKRgSA7KudDAdXqIgsJ6xGeRU79LcPFn+CUwhsEcxWnIsKKtExnw2jeyKauI/U8qFG+u4M8UKvvLqDGzHQqzhCHgn4K2j1PAh6vPhl472oifiF6aXnTDGzGeLNWlaV9I/Ma9Pal7XKqY0dXSHdo4N6kYCVW41GL+6gw3Ft7O97cEqm3U2SBXEZOmBAwcWKM6W2xLtQ7K+CCksj+GgDltQutT4c1NdN47+jihXOifb7T5UiYPl2of8mclHbkxesDBLcAwTyXwIMCmgEr10XraycNHRYpKTySImp3cqWbxV25sJY18mjLOzVVko6RjRUcjrDg53U/Jne0AajjXR4Oy65PXudGLl9EwVFYuSMpoARwgYofNDoAiljAi2cTENHkFYbiivK42Yy2kTl9FZt5hXQs06Zos1BD1AIqwJ64UW8EI3HTkWF9amJKj4IPdgzqoLy8tDy4AT2zXO68sFQ9hlyNDC6w77vMIewjFZDaR8KB3G2fkqrpZNV8aISbwW08jhTFhAI3S0rpXcjlQifqmJSPAInVBK/9QtE5OzUzjc04W8J4TXRHpIw+WiLg4VnwoCiOI9aTgiA9Ru42UTnz07iznd1Xwcr5h4M6cLFd67d6fwN1cKeH6yLKhoWlTz4p6eGD64Ly1J642OD50bOsykwyNzEOc504bLfX3+TtATX19unBOXyo4w9hA9G42EYTuOANB8joFLsyYuXaii0d8rjtNOfL/JosLzpnRRu3Ec+D3lPb+RYJUbBVTZCdaVzThFBAfyPu2UDFDHOtaxjnXs9ulE5Pu4VtHfZEffas96SQq1lkyurd++khd2lW9fyeGzr03jJ0724SOHu9f18XluW2WLVN2HPOftSJm2F0GXxzTLgbZsTGAClt1H9Mvpo6jXKdmzFSOwnzKqR48e3XJctpN2PBPG96bKQrVMnW6OB+8x7d6u7SdBOIa8b6Qk32rDxGpWtm1MGYbEMmRxqThu8pFnbzKBzy4x3mO+2cusrxudrx/WkO66fZ668qTuqbude8ICyb85NmYqVSTDIQGXR/2kwXbPQaSAWgnhZtPd52jNwP54FD2hnQUYkL0kb7lxR9jnR4yMjB5SXvtRdRyYK3zvfB4vdkeSeKM0h5ylC0DFarrxz/5oGt3BiEj8zLaAIiFvANlgBPFAEK8VpwWoktHCmJ6ehq3r2N3fh7KngbylC2CmZJuSmGSxh2NuNahPbgqYSBm/Z68VczhbKrjnxLjPNDCuV/FotleS36cL05gza9LrzDFNVIM4nuxGb2jjQGoCZsqOIfkZnj+v3ZVkXtlEDmsFY4xSauho1hvyvOS10U+2TRuWz8GlwlUgYMkzYqeKQU7TkZhw+b74N4ttnjcJqMKcF7cbZeuB8bcrgbqTzCod61jHOtax26uhmGBzNugSQEAfe6X1QfLVauVvEtBswWoassboqMHvCSDmScq/axn3rdalrRQcWSth/EUAKGtKO9FMvDwX3w60pZ/CGg1jGjKkqXiHwBU2IG/lGm6nZmIaC/7HUlE8N1dCkOyILdmaou2If34oEdmRIjdrgWTM3mrDxGo2UjKRpySNxlpMEywlsCbjNJsSoxGk4OLfm/CE/AJYadZbYPo28AlNxTqun+RBgDpCKxjfx8y7NGF7gYpuYL7qRTIcRFfYj0jYD9OqS01CTREyuXC/lIvhuZDphNtO2kTVEiZ3Np12h71yb3n9lPhczQaiGvYlggLmIeiE8QRrIQRwHEmHkQn6hCXkatkSoAgZSwhWYe2FEkMEuwRRx/j4JPqjEdSjKbyW03GQdZyKKYwqwpbZAkRVGg3Mmi5bfztQ5U9enZQaE2s0nH/n56vS8Pvjx3pFVurbo0XkRB6XDQBeHMqE8fEDXdLwu1HLGbZcG2Nf1ml4TxgLt0uv0txGAxeItJKNmZT5qSNKlYhUSp4ntm3BZ+uYs3146dx53LsrI5JBO8GIqoBYZD9qN9bgciYb5+s3FKxyo4AqNxuM3yQI620S09wRYJXt6iFuJLHLCUXgBxONd99994KG01rGh5AFnerFrZRVi4lBWBeo+7f2g32rXYg8V7KcMIG0U92Hy5O6q1EEDQ4OysYxZfcgnSImKvl5leRlwncjnXWkqaLTSZpuJjlvFB33ZozJoX/w8BB+6zuXMVkiMtN1DvoTQfziw8PXadNtxpR+PceZ9+1GSCrVWkAMkZbxed0Ft07CQ1GuEseGfwsHvHDqPni9vP9r71McncAiTfRKRgo26sgng8BUzcFEtSAdadSED4T8sHkODhNTyuEG0nEN87qDsbKJocTOJnafnSjh9bkqpqo2IpYjgQuRumTjKJr1VZk+CGb50L4unJ6p4GJel4t/ZCCBu3tiCwCIQ5mIbPO6jRenyvibqwUBSeRNGymPjbmZaXR39yCRiMOp2SKN9MqMey6ibwjXsaCTRWDRC9MV/KTtIBLwy3fyyTHSbtvYk1hELlOTkddE6aBvXysIwlahoMu2F98bK2FvKiQakOtZwXTwjct5AddQhohUd7y+e3qjwgrD6+pujQ/PZ85wBMSznP1Fgc3Gr12F1xNGOBIRhzmoabJZXluS1pxrdBzYfcuAic8IOkVbBWoRWEOHlk4lf1ZGlDjvUSy4OaAKr5HzkEjtTJj79t0WQJW1Er3KAdoO6woLmLS3gyPUsY51rGNvp+Qug1z65gRdEKiyEX/zSl7H7z19DTW7jmzU1Y3O6zb++KVx9MeDuH8geUNiGq5FTK6yW5Dr6k50H64X04hkSiol28GDBxdYJCcnJ6WLkIVoRa3NZMd68RGPTQkRJkjuueceiYNuB9sXD+L9Awl8c6KEeYLGW92J7EJ7aAVt8c2Y0q9nhycT8jttBBQw4cjz5fgHPGQtdbveaELv3qTWPF/zIOyvw2mQQXKN+y7Xz31en9hzASsu2wr/ZWcY/atrug5vrSb+Lc8p6PfDcHxCwaLCJ+4vHfLiXLEiYJWdNLKqvFwgw4wlbIp+jxvbdQeDcv2U3Ymt8p3pC8Ukbh2vlVGt20j4yHwSR38LCBL2BTAcScn8HdNreCVfQNmxUbSrSAR88n1g7Mq4n99LnUCVuo3XCT7hOWhByYDQ6DlX6jbOlgvoabGrlBwbFyslYZahlJGMs7+JWcvAm+UiQl6yrhTdolArTiX7CkoeAcpQRmg9mzLKuFydR81p0YsHgtgfyyIViGLWLIk0EMErNKdJRh4PEoGViy7sqNX1GgJxDVrLv/f7fQiHQyjZNST9MVRmK9IsRF9c6cJvB4yveSkf7frx6jkj48EuWM/m8wTcl9WwZF/8/FrPLgJV+OxlQ9KNBKrcDDD+2yWx27GOdaxjd0qNZqMxA9dcAsEPHz4s4IyNWK1RgdnUZc2n/A/NaVqo1AtI+rrWPPd2UOVm6hNcx8hkybwnmQYJ5N6KKaDMRms0zEfyWNz4mXw+Lz465do5xmSPVPnXjeQub7dmYmXv3ZXGtGFhtGoATTceoCzox4eziKyRv13POGYcKwLweb03osjNPDVjCIJGGI2wDsDfeQ1uLOEyAjFv7kuFEM8HUSgYC7WTdlMAe8YlkUgA3lWYO/hJATl4vehNBjBbdfDSZBl+X0UUBIIhH4KmH5bhgISNKv5JJTRomleat+/d4YZistA/N1WR+kLFcUHqrEUcSoUwbzfRuwr7PWPBx3cl0B3y40KJYPkmjmci0pRBwAptKB6UjaAIAkeeGi1K3YOMHkcSfozNTCGRSMr3oerUUTDruFI0cHZeR3c0gCDrxsKu77L/XymZuFzQsbelkkBGFQJV2MSsQCzMmbw6XZH3fGusJE3Gwojjcc+5OFnHUEzDO4bWr9dSbplgF8oVEfghYJd0CI8PJpAN+aWWNBBbjAsIimHthgwrK4HNrl66CA+iCEWiMge4SWyjNQCCvCJ+iXtI1MAcjIpptgrGZ32GQBUy1LTXU/Q6r8WD2Baaict2XfbHz/K7vl4ehsoVNxqocjPA+JVK5W3RUHx7rCy30DbiCPHLTBABC5Ds6Nvo5GZqpd4CqixhW4FHGFbY1aOco53qQlSAB57zjeo+3IjRaSGymZvSR2Oil0lenlu7U7RSkpwJMD4YmSTeqNN5s2xfJoJPf+gwvn+tINI0PTENjw6nEG8rjG/WWKhXVIBHjh4TTb435vIC4tifDuPuvkUwxHasPxaEz1sRhyjop8PjQdVyUSqSpCWoJOAVdCfRodFQQAAFZKPg4uwmf10HyN088Pl960vMNIGI5kFvMoKmz8a1sul2rjVceaBoNACH8jeCEPYgFPQhG9VkIeZ5DO2gH0Rau+9cKwo4hQAEUtgH/V6R8OHvlNM52rU6UIIyRu8aTuGxQbcws/zaiQSmjuDXqR1YtWTxJHjkWkFHOa/jvsFeJOKxhcW5N6aJJiadnu7A0jnUaHjFyckbLliFGpZXiiZSQf+S7yR/v1oy8cx4ScA9pNJTCz4dsinTwUtT5XXBKrwnf3Uph3M5Hb3RgDhB1Hf83lhRKOEfHkjiiSt5YYrhmPHcOI4PDySue0YwMcgk50MDWbw+5pNx5z75PtKh87zomJ08NrjwHVCofwID+exSzwgWjDYaDHZFAjiWjeC5ibIgjfm9IVsOt/fuSawJNlluBAF9YySHS3lDOkQJfuG1PrArcR0wjc+506dPyzP4ZgNVlpsaq/ZEb/u2kUQv758UZDq02R3rWMc6dlNsu534G4lpuM5yrSKzBxO7G11bv3Mlh7LlYFd8scBJP22iZOKJS/PrglW2whZJf4DneiO7DzdijPu4sWDLNV5Ra4+MjAjgR3Uo0ldZvm8em7JCXFNvVJJzq8Zz/cBQCndlIngjr4sPuD8RwoHEotzjVsylyb4gzJ7RTBdeyRUxY5jSPbUnFsVgJLTtuU6AA0EYJdsR/4y+HcEr7EKUa2vFNBG/H7V6HeFAHSFfExXbCxIPiuCm/I8AFMYizQWgintqK52fSyhORkECtHtCEVwoUb6GCWU3fvH7Goh4m6g3vAJY8XmaYJ6U55q3dp4J41K5jCldR18ohDnLdBkqm8CkoSOjBXEilURsDX+0JxiVjaANyVa03ReRhnVsXK1UcK5cEoAEu1ULVh3T5Sp6GnUcGBx08xUEU7Ao4vWhyM48JmJ95JJdNE+dQJfFMchZhjC0ZLXFhgQeP+rzY0qnhrkuMkCU59E8BBo15PcpvYy8ZaAntPZ3qWDpeLM8LdcRCwRlXMjucrY0jROJfqQDUeTt6gJYhfvPanFktOtBDSwwXb58GXuPD2KsMQe74SDQkvvR65Zc9770ELp3pZfkPfg9YGGHgBWV6N2MXx33x5C3i6jVDQR9LWmkBinXA0j4N5eoLDtl5OycyArxNoe9YXRpWYS8wdsKqHIjJFA7sqYd61jHOvbWsY00FLc36DL3tlEgOKVMXKAKqzSLa4UXPjhsK25a0DyrMyiqtYjr0EaBGgrwwBiMTCRblczZbDPxcuNnWIfhduTIEZEjInCFPg7PTzUOclupjnQ7NhMrSwT8+NTBfpwr1jClW1K8PpaMIBXcek6WdSvGoRxzxnCjtQbemJiXIjmBAWzoZG1gu0bWD0rVkEWFdZhIq/GSJlKaBN77CKb2YdJuYHgoge5UGFNzVVh2fUHapk7dIGkk9iIY9COwTv2IoIloyI/edAyJWANvTFdQrTdQcQCv34tkUoMd9sO2yZRIxp4AepJBkISTQI+dNNYHvjVWlGvtiQRQtlwQA1lEzszrOJAM4sQatQzWP+5jg213dKE5u91YeyAryTevFHC5ZAp4ggCQ8aKBQs7APf0pZLvcZwhrLpSOYh2K9aGE5pfaRztjI5tZWetRYJXzOUrcuMoLyliHcCoWXp6q4FJBlzGMa5QscplG8paDp8bLUlda77v85HhJmpgzIR8y0QBqTgMvz1RlfjzUG8PXrxWF/V9dF8fjwd7YdTJDnNOsOw5RClmLYrLmQON5t1hjON67Y0G840gvvN79ME1Tnlvc+JzgM0/FM3yObFTel/HjsXQET06XkDMdxHiejabUzo6kIshuglWF9+S52TIulnWZN6xZHU5FcH9X/Lr73g5U4Tpxq/MwOwHGr9Vqt/w6boa97cEq63UhErXELzMnA8Efm0GOrq6N7ZJzuX1C3h1L7KpzJcqK9GQ3o/twI7ZcH43nyQQOUdAEpDC52+4UMfl79epVnDx5ckMMNrfCYkE/fvBgdkf2pZw+Fg72HziAL56fF6QnHQ4mHYlwPT1dwc+e7BPJmu3Y/QMJvDxVFuenahGk4RN0p1nnAu8RZo6eaFAYPbjIB1pyPU2vLe9hpm/JrF4yNVrULMvmC3+LaV44DnXkubC7jBohfgN8pHQD6h5I918w2IQfTZD8gnIxpGHMrIAG3Y4RIUvJnJDP1XO3vHSOONYuZdzHD3ZtyOlcDlIhsIESPGRcoVQPHbi7slHRu/TbOqYaJkr+CHSvhnizKQAUJk6PdUXkXgS8pF9fjjR1mU0ICKHxkL7W+fJ7SoCLnEfrplA/UkAv2iLTDRPqFbuBiQoZndY2njedt/6YJo4OLRMikKgp7C//x4leQei+MVeT69sVi+J4d0zev1InNOc0C0zleB6ffWMG42VLJgTnNR27v3WsZ+EzTN6268KTzpPPCRZ5uHjTGVKO0Xpd4O/bmxH699dnq5jVbRnD9+xO4dEWwGgjRmftC+fncIFo6kgASZ9frvlrIzmE/L4lepHtQBU+e28lUGWjTpECrqyW6FX67rdTENqxjnWsY3e6CXvDKpSt20nucp/0rRmwHzt2DAMDA5vaN6V/6FUsjwmYPCNweyPntlEA/k52H6oEwGZlI1Yz+h8cO27ct2KRpA9Ao49C4Ap9FtXswHiMyenbzTdQNhjVZNuutTPI0BdqRqL4q/FpzJqWJMEIGjhfquK+rhTuzmxP2z7q92N/LIbXiyVJGgrTBKnZG243JcEsBHn3aBreLJMpzoMQOxK9HuRNsku0ZEzRhI/NI9LltkipvSgYtLTZhDrqQZ9HPl92HGk80VCH1+sj/l7YKPkNDPrq8DSawiDJAkjVtnEwsfPMDlerVQHryLnBKzEAOV04HgSwnEylN7QfBdhY3G8FZ4tFFCwL06aBoNeL4WhMYrR8TUfN54ERjUvMR5BH0TYR82vCeJIMaJg1DZF19bS+c/yZI5po+w60RJrczlGyh7QARjx3/qc7pNimhrq7D7LGMEoke0vFsdCDtRN102ZJwC1pLeI+t0h1HQghb9VQsHUcju/CjFlC3nLnR1cwhm4tsWQsOKeZlyAAi0nOSCwCo+hg3irCqLvPPb/Xj8FwL7qD6evyHgQE0p9uB+PTt1bxzHpgfM2rYVeoD7PmHPSGK/UU8YbRTZCJb+NyZLV6DdPWjFxPwBuQ8a3Uq3BMBwOhQfg9i7Enu4eZT9q3b98NYUXa6ZhmI2B8xqVvh8RuxzrWsY7dCcaYYS2pne3Ig9LbcDPanlXbjdcyFQdttE6jzpXv57mSjf5WNBMvN36ejbLcmK8lsJZ+CsEr9FXIRqbA+PyZoCACWm7HZmJl9BdPpGM4sTHXd0MMMvTZyIr57FQVf305LyADKuuQaf3lmQp+6mgPercZQx1Mh4X1g+zpBFWwLkCwgeE0QbwJ2d3Tml9ikPGqhYDfh0TKB91wkC8ZMEWmBiDhIAEqZL33++n/eNAkk8ey47nxPJAM+eEL+OQ4RUq0sLGUcbPHK4ws1ZqNgM9BMMo4gU2glMCqo153Wel30sYrljDOs07g+v6M1VzpHdq7hpIyRusZP99epuH9YuPta3M1aU6ertrYmwwKSwuL/lN1A2VvEBVfGKxMsE7GJtdH+2PYFQ0i4PNCr7PRe/E5JHPA50FfGxs/Y1DFhkMABeNNXwsQxOZfAix4TFVDIiiJjb8z+vo5FJ7PG7kakiGfyCOpGg+Pdb5g4JFdcXxsXxpnc7rUPtjIfDQTxu5l48VnEWs0fF6y1hotmviTC/OY1RdzR10hH35k36I8GJtyVN5DMTMxpuEzgkAWAtwYz6wGcGu34+mI1FjeKNSQt+oCCDrZFcED2c11pj89U8Jr+SoS/F4EKXnbwIuzZamsP9iduG2BKjsBxn87sUXeEWCVG0Uxp/QEuRhzUd7scUgq59pyZ8il8VqLVYXGCakm6nrH3qnuw3YNra10H65n3B/BNNyYBCFbjepQ5INEOabUmuRD73YxFqnP59nh1RQU7Z5tdh0up8nmPeM8u5CrCTsGwRJqIbLrDbw5X8XzEyW8e09axmeqasF0GgKE2AzjChkn3rUnjRcnSrI48gq0RAh+QY7WpSjPrtk352qScLU8wHTNFuAK7bryycLf3Tnt/tKmR976v0ar6/D12ZqMoYAufNRkBDxMDjdcau1UWBP6uxJlbJwGYtVZXDuTg9HTvWMa4JfyOkZLhjiBvIe8NtJ59yU09EQ0obPfrNEh+fM35zCS19EVDogzQhDQ2fkaJvNleO0ajvRkcLFk41rJFCQsUbU/MJjAka6IJGaHEkFh8EgESSPuFTYb3vuHh5OScKdp1OPsiuArl3K4VjRgk+Kcjrnfi92JkABMLnrIWsOkrntuwoQjyN71izQEtfCYRDG3G+dYzXYdxoOZiGzr6ZsPDQ3Jd5z36/17M+KEf3+8JNc1nAzJtce0lZcgFnYYGHHjfCfqn8+I5VR0nBNcqJfPCTr3H9yfwaODCXH4iYamk78ZI63flYKBgXhwwTnt9WsYKxl4YbKEkz0u9f/tDlTZqFOknv9qPSRYiEW5nV4DOtaxjnWsYzfGVotp+DcmGAms2Ko86FDSTa4qIDWN6wbBs2Qc3Oq5rdV9eDOlTLdivKZ2X4VFXvr1jGcYP6qYhwwjt4tvwPs3UTMxY5ANwoM9sbDouW/X1ByjD6gYZL4zNSfH6QsvxkxFyxamlb2xCJJaQPznnMVz8SKtBTYcW/F992TSqDkOZslYwgSh39Wtpxo4QRu9oRCCXgJMvKg1HJRMF2RC+Eh7RNNoyW86dfrOTEK3HOcVIh96TnyJictS1ULT05R54CZTXXpoxk9ej09iOY5LxanDZ5owLl3A6fnpBf91u3KvBKmM6QZyprkA6KAl/AG5t7uj0SV/36hN6DU8Nz8ncQzHmTrxeqOBkXIJvlpNqLD7olGR8Zk2agKyTwaCOBTPQvP6cCyRxrVaRV6nvA8LQzXHRtjnx9HEYgWhNxRG2OfD1RqZEBsiGctkL+PJY/EURho1WAQfteVBmAjmOfE465kLdlkqU6tyG0bdZUYZCGdkW0/fnElORbl8b/Iwpswc8nZJGh26tTSyweS6zEzM0SiZZD7f2sH4nA/8d6U5EfGFMRwehNlwE9pB7+Z985JTRr1ZR8S3+Kz2eX3QGzqq9SqS/sRbAqiyVTA+7yGBQx3rWMc61rGbY9vxu1XTLX2o5WAVlWtkfLAVeVBv67/6daAUN5/t86y9P2EW3yAAnzlMFod5ridOnNgwC8GNbiZeyVhoVo2DBNvTT2FMw0YHHo/Hp29A6cfbxVjPYIGe+d5sOCD5Zvq/2zXOMQJVqBJA34GSMN+6VpDaxZ5kcCGeYl7/u2NF/Nhht8GaTbkEFmTaajkbsf5IAO8aSOBpNhWT/lGkgOjveYXFhYwdlIuZ0W2ZC3M5HdMzZFVxfR1lApin36M78PsZg4bg8xGwsuyAXrd+oAX94ntTvqbuc6WDfL6AAMe511gkgFK9gYjmE3BEzXJQM+voa5RQuPAq3iy5NZrNsKCvZmQpGW01v/haIBsCRQaifqlF7ElsHuTFsfnrK3m8NF0RhnSyrjOOoIRPvmrAY5SxO53CqAEBypARkg3cp7IR3JONSu3l7p6o1DA8INO9F7rdkHtCVp196UVwxvGeqDSFvzJdFgZPjiBrCJQhYu3jXIFM7W7jsdwrkfR05XHW+z5zfhv1pgBJ2o3zomQS4NQQIM+uNUBTrLvyucnaCRuBeL+OpsP4xyf78OxMBXmzjq6gDw/3xgTssh4z02pgfMWMT/ao5XOC8du92ZgwrHAMyYgS36R6RMFyMFI2kNL8C0oCKRYQm8C5oo6T6ZjUgnjveU4E2VH6563AFr8RML5hUP6r3pEBejvYSslT1UXDbTsdfXSCfAigDqvFouImsiSZBa0NzLL6uSnnZLUHWHunJJOhZDK4XboPN2JEFrOoTUeA3Ycs+PIBSrkgXpNiXGF30q3q8H9lpoK/uDiPoumiXLnonMhG8MkDXbKAbdXILKO6RpnoptFRIAiFBXJlXKTJ5HBmpoq7uqP4wpuzGCkYgkrkovuu3Sk8NrQ+dZja1ycOZwUgcTGnC6KWMkMHM2F871oRL06VMFoywdo8NREJXthIf6/rI7nzdMn7qYPo4QLL3sPWH2Tpdum7uGBFfB4RxeI+6HDWxDnz4Z3DaXzqxBEYJZdKmfNc0Y6pObFZh58LPSnaeNe4iDHByrlPireJchPvGExuCYRENhVK4wzGgzInOEcIcCrVLBSaDaSiMei1ujit7xhKiswQgTGKwYXH/If3DuA/n57E5aKBmuEIXToRxD91rHfJsbgPMrBwTBXYxms3cDzrw7GusKCG6eQqP90F43hx1xrSRsrImsJxIZiGaF9ldLq7wv51JXTIEkTHfiXa6D2psGzbQf3v3785KjqO1WYChXYrma70VTuKmkbQC1lxhNUGDSlIvVWAKhtN9PJ6/u2//bcy1puhOO1YxzrWsY7dXmyRDGq5LtO209H3+N4M/ur8LCZLFpJhcjhAfCd2ZX1gA0yDXGe4trwVuw83YqLjnUrJxi4j+gb8l0nDp556SnwY1aF4qzp7KJPz1+NzOF+sik9OgAWTRO/qzeBQcuvnpBhk6D+QQYYFd7KdXKvpkkhq96tJ0z2tm5isGZjUDbw0X0TFceQ9vaEgHunOIBvaGIgjGwriPf29uFqtCQiGlN/D0ahc1wtk5zMMVB0g7vNiuuaHKYHI2lGN0/TC22xIB2G7CbieRIakbhYEP3dG2At5TACD4PGWBjl73RjpUEebryWDGt6/ZxD7/F7xXcfGxoS6Xs0JbpwTm52nvG6JpcBYygVlcNwLto1sUEM2uHnwPe1iuSxAmO5gSCSUmLw2HQcV23YZOUMa6vUG0hqZW7oQ8weQ0kILjCR7Ywk8mu3Fi7k51OouWIBsK49k+9AbWoxFKJ3DhDjfwxiQl6/XHZEB6guHUXLCmDSq0Bt1ed64jRNNpAJBAcesZ1F/EDNmZUkeRfIqaCLiX9tfX57kbP/O8pmyK5yVbbPWLpPMY7AgwjnBGJdgLzUnGNO0g/FFIncTTCrLjdJBvjb2FLVPmtOw35JAlY2C8d9880088cQTb4suxI51rGMduxOsXWqnPb/GDnkCPblOqaa4zZqsp94Iqo2yAFZYs3E9gwYCniD8COwIAJ9ADza0MS/KHOatkjLdinHMWQOjr6KaHeibsHGQ/orKx/PfW5UnvFzU8adnZ4Uxnb436zT7kiH8xJFuqZFs1RSzt/KFON5XS4bkhocSi/EJ4xYe50LOEJDK31wtSKMq/XLm0e/tjeF9e1IbAo3zGD/QH8dAVMNIyZR4jT8fTIaEOePZ6QqmdEcaUmE6AlShNM9aMQ1Z7css6qfCbvzSeqvX5xH2Fc3vkZy/7LPlkzOeYI6b+2X9oBHwIhTW4NTrAtjheZ7clcQ/uv8ovIbbTKqA1yofz22zOXECN87ldLkc9tdSTUAaVq0GRsuW1ESSpN7fpLHp+lyuJs3EBNswb1Fv2qiaDgqNBlLBKEyTAHjg3mwUDw0kkNR86G5j9v/UyT6pCbw2W0XOINDdg3t6Yvj79yytu3ZFAtJIPFezW5KsTTRNoC+m4UR3BM9PV6TWZZB1pSW5w9ocmfjXMzKIiDSUVUcwvDifyALDmh1fX48liKA55iXIrtv+DCGY5kPDW2sMagfjMxfAZlclN83rb6/RtIPxCVLhthXjNbvSTEvnGEE/JdttECED6lsNqLJRMP7v/u7vyt9Zp7nT7W1fgVpOma20xVl0feihhyRpsB3TEAaJs+uwF9gnCFQJILQpJ20loAYnK1kGuEjc7t2HaxkReUxOs2OJ6GiFVCbFFK+NCT0+/PiQY5J3KwvgVu3MfBWfOT0l1FJcmLhIsHj94nQVA9RyG9j8/FAJsMnJSSlwb+S+uRTJTfyPM9PC3kFGFdJm5XUHXzw/Jw7RPX2xFi0dNQ1Xf/jztRO9Mdna7f37M3hgIC6gi29fyePMnL7E/dkwLf2yt/Fj7UAV9RMTv+zaEyhXgwleNxNJB2pvKiiL+FcvF3FvXwInTvTJ8dWcYOKJD2glDUNnmRRl6xkZYyYrFtJhv4CPLIdz3iMa95oHAgbaitFxIVKXCNF8yRRHqGLWJeGtBQPiyFLX0PA1cbw7iv0rgDYIUPqXjw7jYt5A3nQEPdy7TF7HdZRcZDD7AehgcjEmkIS0gf2xNI5nIwJ4UWPPZ85wUsPdy+73StZPpzgdxumZKtKhpgBXhOWm0cR9fddrALYb7w2/x4ol6EbZRqjoVPC0GUrQ5RYP+gTVTfBYO2CFIKGBuAZPs4HTr74q68dbFaiy3Pj851rwK7/yKwKmI2CwA1TpWMc61rG3jgxQe/JUAUjpKxHQvpWOPmXZqIZ/9q59+KMXx3Fhvib+xaFsFD979y4c2AAYdr0uRHYfslDKTpzbvftwreNz7bx06ZIA0ZnkpdE3USySbIQgCEcBV3i9N+McGUN84do0XpgjGwTZRjwCJKFC5Hemc8J+Qha6zRoTYEoud/l9E8bFleayB8K4cr5MIAGBDAHpdLtW1aHXZ/GxoT5J7hIwQaaNtUDk8UAAx1PXs1q8u7dHGFsI6HjKqMNpEii1Ifg9Gk1K6rhUzsrtXRqGL0oEuX62e03M7xLiz9Ol/I/P00DU58NwJITRWg2NSAiHWqyDak7Qf+WcYBJPAVfox67XoCGxZImdfm6yk4Af1QnJmCYe2BpYRWItMt14PMhZpgBJyFBiqwaDYFBeIyCGzDjDkcSK8/dUKoujiRRGq1X4vF4MhqNC691uM0ZNJH0ygQBKNtsWyCLiE3acSaOGg7EuYbCxGuTKcY2AmL2RtEgOrWd9oTimjDKKto6IX3ObIhwL8UAI3cHYmmPA3AOLMzcyyclx4/ef23Iw/uXLl7fdoLFcTsh03NhQmVpnKGOkgCo8j9uV3n+zxu8Qv1uf+MQn8Iu/+Iv47d/+7Vt9Sh3rWMc61rENmGqeVXUaxXRGoMSpU6cWGj23aiFPRNgl9EYNTWFY8SDoiSDq3RiLt2LAX8l4rlzDGQvQL+7r63tLNRO3NxCw6Mzjs4GAOVgFslXxDBni6Z8o/3WrTQabtZmqhd95YUIkT1gTod+YDfkF8PCNqwX86KGtMfQTTM46A2Pmjdw31Yb71Us5nJ6tuowqWkAK6t+6VpTc+fv3pGE45HDEdU2Q7UYfm2Abbu12d3cUh1IhTFQtfPdKHrmcAdtpVVfWCWt4vwhqCRLoIYxAXmFacUFPSz/fcBoiZ8rYjWwrjVZTbCjkF4A3mU76IgFhWv2biQqOd0Vx/Fi3gMnVnGAjKcFNrG+pfPxGGjTIanKpaEjjbNGqo2g4kodnbMhx4/VvpaGYzcNkhycwgmwqnC8126E2KYJ+P+LBgNRTKvUGhuNBHFg29jQywf/jB4eEmZ/n2RfVsHuF97F+QgaabgRF9ocN28ydWHINHgEvnWH+pKFoDJrIRjQ8smv9eiKZZU52R/C9sRK5QyV+Z32yZNXxSH98TXAWpY4IVOG9OHLkyA3LObAWshyMrxrOOScY6yjwykrM+Bu1mN+NE1n3VMwqNF3UAbzSCM+6EMGCb1WgynLzUua42cTv/d7v4Q/+4A/w7LPPviWbCt6WYJXtUswplBKTBEzqMhmgFuRtnxs8AlhpIiRoXbKpLMilrGPKIVmOKN7J7sNbDVQh+o5OEOnk2uWLllNMUWtY0dDxYacK0hvRRtvKmBB8wMXtv70xK/+GWvRpLNybjSYyQZ9oFG4WrMKxplPH62H34fKHJ1lOCBAotrpVaUQOsmCeCvtxeqqCwYTL3kEjmIGyJH91cR4vTpaEio5glbv74nj3npRIzWzGUqEAvnxhHm/mdNHhMx0FNFnfVnOW6itJYTGh23o/Ox2jfg9O9MYF134ub+Bq0ZRFmXRw5+Z1fPRgFx7clViYE7xHBDlxARwbn8DTZ84jEo3iYH8W/b2urubyuXxmtorPn5vBZMWUBY6H5zhycQ9EPDJWBLFsxWIBL+Z0B+MVUyBpRVL0MfTxeAXoQUeCjBxEfBIks5px3h9ao+hDNO1IwRTgCx0gIoS5f6K56Ygxsf8jh7P4zmgR42W3g3lXTBM2FyKK1zOO2Qf2puU8Oe5F05Fj3N8bEwq81YwJXX6P+V0liORm2WpUdHxWMNBYj4puLdubDGFPMiSsOZTH4pwhowrn3r09UbzWAqpQw/ROAKrQuA788i//snSBf+tb39oyU1fHOtaxjnXs5hvjF9VpMT4+LoB2ypiqzrDt2oGuKP7P9x/EdMWSBBJlEzcs29ICQ97I7sMbLWW6lvG49Dt4LQTe0+dQxniScQ43jgF9Jr6PbCQ8R1WQXs4OtxNGmZ2y4+BSqYaX5ym3QtkaFyyet5pIkCmDifWKjlMZV+Zko8YCN69B0WS3jzeBCbujYbyaLyEa8C9ojhdtBxG/HwXbEp+VUj00elE9IS9mdANPTM4JeMFoNJAM+HE8lcCB+OaYR1xAjhev5cuSiOSouuKni0CTlcErTB82F8Apyw9Zb/uM2gMBKozuBSgiMjx+7ItFMW2YAvyYNU2k0MRM3sB4Tce7e3sRWzYnGA+LpO/rr6PWBLpTKQx1u0m95dIwZE95dn5ewD5Vx+3y43/siqSsDsd1KBLZcscxAUJXqwQ2NOVY3DgQTF6LLA98Ih3FJDy7PykLtJJpXj/2x1eXxynaFvKWKUAqBUqymw25pkm9hgfSPXIvRvUSDLL8eb3oD8VwIJbe0LURlHJXsg8j1XlUbF6PB9lgFPtjWYR8K/vtqhGIQD82At2swstqYPz2Bg0WhFSid7O5j4Q/IXI/Rt0Q4ArHlWwrIW8Q9Wodp186fUcBVWgsFn7kIx/Bj/3YjwlQ5VYx9HasYx3r2NvRtuuDKwA+822MEZjne/jhh3eEJYvnFvZEBbTisqtQHn7j/vdqzCpcu5nrp5/PXH97LPBWbSYm+F7FJu0gW9ZuWAinn0IGA/oqfL+q0WynIL0m+MCp4/93ZgZTVUuaNjlWul3HeL2B3kgAb8y7LONk59iocR8EF5E5hk2IrDW1G3PCZPYgawabhmmMo1izIbP5xYIhMkTMm9MyPi8aTRtPjZUwXTVxuejG5kcyETw+nJLc8maMdZGR+RpenCjDQyZHNtuymLIuWMUDn98jcj+09vuhGFXcv7sBjeM04Pf74Pd5YTcpQwTsS4aRCfmkPjRr1hE368iZdYwUDZEleh9ZT9rmBJsY3Hz8LF4+PwJ/KIw93WkM9LoNGst9sfGKhc9fmBcGFQJUeCq8Po4lmeb5BwJEtmJs6CaI4XWCROBBxWSbNC/YB6dJlo6GAP6Tfj+s67SSltpQIiTbavbGXBXzhssUmgoHZH4UjLow1LOG8LEDXVLfY1NxvQFpNn64Py41h43YI/0JAQa9OlcTyR7Wa1iLfLR/9didNUcCVQi8OnTo0E17jix/TpDltx2Mz9qJimc2C8Yn883eeBBn8rynTYR8PnkmVJ06HuiKYXTk0kIu5k4Aqqjn0+///u9LLPO1r31NQDhvB7sjwCrbMfXF4BeHjgUTbkePHt3xgNZNI20uAakck+Wo3ZW6D0WXl+wtzSYCHkoPNeA0bfhAit3AdQ8m1X14s2my242JdMr9EOG3VoFbab5zYyKFC6DqUCRqjmhN1aHI92z0OoRazCYNl7uQ8Xc+/P/qSh4TZQtFuy7ITkGktqiH+T92eFEDncnPtSSalhsBRkzq0pgAW0mXel8qhEcHk3hytICcYS+oqh/rjgiTy8vNynXSQwSJvDxdQX9MQyYUEOTu1y/lMFk28al7dgngoGw6yIQD60qizNYsAXV0RTRx8qjJx8T2RoyjQHYSjpWCpjSXAVU8bX/nv5zZlN67tz8hwJtXpivQ6KR4+Hcf+mJ+AZd8+2oBJ7qjCLfQkxxzOsDzdT9eyWkY1XQYVQvPnC/j0MUx7Il6l3SjkbbuSxfmBCBDDT46d3SCzHpTpHj4L6WQ2tGZm3UgCSqy6k0E6qYEPLxPdESIsKb8TTrkF5pCFg62ajxnOuksLKSCrpNLoHTVdinR7HoTu2JBoT8kOwvnBo+7GSQyvws/tC+DxwbZTdkQMA+BGquZov/jc3OrkmmrGVl+XpgsCwiLAcI9vTGc7ImJI7tRKjpJ/q9DRbeS0XH9+KEs/nokh8sFF7jD7887h+JoTF5Co+4yqtwpzCNcB/7JP/kn+OY3v4lvf/vbd1TCumMd61jH3g7G9YiJCfrW7A4jmJJr3k4a/a++NqnK7cqusguL3ZLt3Yd53ca1oiFr7lAiiAu5mvij+zORBSD37dR9SH+DfhALykxOr1VI5jgwXuHG8yXgg0kVxQ5H/0QletfzU5acQ6Mh1MIEKwiIoN7Ad6fncSZfRc2xkSPYvuXOG47bqSYxRqOJdDAgn9+MKd9PFbhXZNdIJzBjmALacOVymgh5vbivK4UzhRKC3qU+NwEtJceR1zLBgPjR/OzctOu/H0hEkWslGruC2gIAZjUbKVdRth30hjXMmw1Jwi5e5eqxjc/bFEYVjs+yGbsQwPDIjB95XjwNr8flT00HAjgQj8Ns1IUVhEAOfiStaQLKmDYMkdm5O5NeMie6sllM+gOYi8YkmTppWTg/PoHs2bPItskFMfH2ZrmM86WKAHlsHsPrE9AI958K+FGtN9Af3jrIQuKjRh2cfY5piH49L5LXSWkgBVRhLOKwO3GT+Q1lZG3hcWK+gLCvyLGbXhQdC0aDXZVe7I2lMRRJyu8BjxdB3+Z87owWQSoQhl4ngJ9ySdfnRJYXmfgMZZy+E01LC/tuNjBjFjBnFmA360gGougNphH1h9cF4/P5trwgxFhHxTQbAeNHfRH0aN3I2XlYDVOyUhFvBEFTw+mX7zygChmuPvzhD8v26U9/ugNU6VjHOtaxt2BMQ9AEfU2ux2zQ3ekGMfoD/i2UxFaKaVTjM9ds1Uws9RaBORPU3JKoE1gzK0P+Ff2R27WZeCWjT8q8KzfWOlhTo6/CgjTvmfJdybSxmdiMeW3msdkQ6srwmPjy1TyulCwUTRszbJpoNGFKt6wLcKB8p8Yivs8rPjE26JtynNkMTZAyY7iVmEBYP3jvnjS+NpLDlaIh8Qd9YMaoR7qiOJvTkV3W9EoSlTfmdMzrFrojLkj46YkSxlijOdkn15XTbQHVrNdUSnbDp8dKAlDoSwQxWzbhtKNNVjEeg5I/BPVQNUgxRipZTVWjCfg5zgTgAH4GNxLXAMcyEQzFNVzIG3I/KHdKgDxBQcyNs3n7ZDaC3shivMoYONrdh4t6CCP1btQMEy9NWhgaO4c9PhPd3YsNGk2PF1+5nJO6BWsmVbsujduss4V9bj2F49q/SXCPMsrjsM7DmgZhaZ6GC06pN10wDNnumVfg8fm+7RhrZ9xHb6T1vfZxDtSlCZ6Ny5xDH9uXkZ8ptcTf12KtX24c98cGkri3JyYgG343WINazVgzJlCF3+OtNgKtZgTlvDJXxeWyKc0Gx9JhnOwKX1enVMZnYXuDhmLGXw7G3wg7E6/jkZ6kfOsvVwzkTFsYVe7NxBCdn8TM3KyAOXaa0OBWGdeD//Jf/gt+8zd/E1/96lcFsPl2sTujyrYDYBWCCAiauN0C9eWOEBOa1EGnQ6CcByYdKo0inCYdn5biInWtWrJDmjeIlL8LPo9/xe7DW0GTzcS0SqTz4bQZ44OH94kbE8TKKXrhhRfEqVXAlbVolIkE/e5EGeNVS5KRe+JBFAwbT06UZTHjUkUHpP2c1QhZDVf/7vHBlamPVzImmei8EmDRjk5ebtzfRw514UAmjHPzNXFM9qbCONkbw/n5mjgNTEC3LwSUtaH3sCfJDlf373Gtgddnq/i958cwXbWEmYUghAcHEvjg/syqMkHUYiToggAFgl/ma3ZLt3B1anrXOSStnOsoehoEQi0CVYRKrvVenj+vnDPV29qOZKPSnSvgGDomAa8AblRCmShlIqe5cSyUEUDwe8+PC6iHDmB3PIq8EcRIIIFTw2GgVliQkJoKZDBZDuBgNib7v5w3xJngtbII8sCuJN41nFo9gcmu04IhG69ldzIozo0CTRCEkgn7kC/qMJpeBIjObTRESoZOBCV+qFFItpqeLTpbNJ4vHbea7c4DOi30qyxqHnrp0C1qmxO4tB0j00x8nToJk6ZM7LbT3e+UXcrr+NzZWXGEY5pX2GNGCq4m6Pv2Zm4KFR0BXj9xrEckljg3M5oX5984A+cOBKr8xm/8Br70pS8Jowq72zvWsY51rGNvPWOSkSAHJko3Qr17s2y5DNBK3YcEEv/p6Ql89fyc+Ez0JZmMZOLM06Li/cSxHvzoXb0LINxbndQlgJ7+PZMrLHBvxi/g+TJW4caOpwXGwLEx8V85JirRu9q95Pi8nCvi9QJZExqI+H3oC2t4PV/GaM2QhCT9xLaIpsUe4gIxao0GQvUGekIbB8aw85AygaTJXsv3IxX2Dw304lK5ijnTkmTSnmhEJIfGawbyVrXFqeIaO6MI8OgJBZEOuucT9fsxb1r4/uw8Xi0UkTdt+XsmqOHBbBrD0dWTUeyykn2wa07zig+9Hv6evIthnxvXiGr7wgdaAB82kbR+FmCUgr00XbbGw4m4gCzIHMO/q/3Ivj0eAZaM6zruRnpJjPHM3DxezOWEDSYVCMBLGvFQCN7+fvQ2XDYedn1qwSAup9IAZX6iEYk1CMiRBgzHwYxp4UQqiYE1usnMeh1jtRrKji1gmsFwROSU1LmYdRtJD1kidfg0TeYJ452g1yuxZFIj+MdAJhhEeJPgkXbj/ni97GYMNt3vOCWMOKb8uzIyqsS8W+uqVOMe9a8NPOEzhPkVJk2Z5NwMUGw9E1BebQqTRk5AW5QymtDnkbfKOBwfRmwVwIoyzjMFxt+zZ4/EtZwPSheepmRx15JKJrtKzBcTRhWPxwu9VMMrL78i+aShoSHcKTYxMSGMKu973/uEMrvDqNKxjnWsY28949rJnB3XJ/rIt9OzfDlbJPOMbCamP69y/fWmA71ZQV0y31jC7Of6jz6Em7ElNZpbKWW6mWbilYx+E1mZubUzBhJsxBhNxTP0V1aLlcjU8Z2JEi6XyFYO7Ipq4pd/e6KMEosw0gBsS+yjfG+XD9FtmKXMy7FMeE1ZlHajP0U/iufLWHQtkPJD/fEF5haCKtggeiIbEYn4sN8n/ypmFdpkmXWUBvYkowu1m6Tmx7WSgT9+bUqaaRnr8rVj2Qg+ur9LmNhXMuah+d5IwIuBdASX52qwHMttAl4jromG/YiF/FKP8XrIlOjGhJxW0kzvBjYuaMtLJQFXrogljoGoJtI4HGsCLEJ+NvouBYKQDWWyai8Bq1CJ4A9em8ZYxRJZn65YGDUnhPFmHEd7gwjaRYlnOC+MaBcuG1EMJCMC3rhUMASowmNeK/Ne+vH4YHLV2hW/L1M1GyMlU2pWPeEADiQXVQjI0s9zcAxdAB6+gCbNvQnNi1jQj764JuNAsEp/dOsAdcZOPEeCeRiLM95l+Kg7rNEwdvIuMo5scG6uZqwtrQVSobERhrkJ1ox3Oq9P8M1fXs7JuBMwU2/U8fWqhYmahQ8Pp1ZtKlbGZ6OKV5RaAuOZ5WB8PitWk0rm+D7en8K9FpmWGoj6vRgfuYjZOxCo8id/8if45//8n0ud5rHHHsPbye6MStsWjYsmF2MaE243U75is2CV9u5DOkCKwYBOUKmeF8QuXR4yqjRJYUU0ZNOVOjEbBvLOHLr8bkJR7Y92s50+JYNDpN9qyNXNGBMyHAtuijKXgB46tjyW6lBsT94I1djFeWFNSWl+6Xb6m7EiqkRDOo2FTjoXZLE0vUuTZFqD1MgbQ1+qxYLnuBH6LSbVjnVHZWu3w9mI6OONUJYkqgk4gZRiBHYQWKKAKjRiFtiVSkBHOhRAd9TtmvzGSE4ckR860LXisYnqJZqV0id0iFgg8Nd5vSufq8uA4pHPqIQ4KdUWRq7ZQut63YQtnQiXpca1WNAn18H5yHWN76acDR0xOkA0jjM/24485fkRiHOpoItzWCsayBk+HM5EBNRyxQzgY0ePyn7ZIffVsxMwZysYHy+JIz0UCqEGPwqWF5mwHz9/oleACas5H399KYdnJsqS6OZZ0Bmh7iDlibgg09E1KxXsj/kQSaUFDT5WMlG22OnaFMAQF9JTPVHsXoM+bj3jwkzH2HV+GrJxWOgYk0FlNQf3Rtjk5KQUU06ePCnfsZ003rfvjRZQshwBYanvDNHnz06UcXdvHNlNgH7WoqKj3irnxGpUdPwswVB8nhDUyH/vJKAKx5pI3c9//vMCVKFkRMc61rGOdezW2FYTk/R12MlGI1Dldluj2sH3K3Uf0v732Rl8/sy0JJkImKXMJZNK9DEHky6o+U9PT4pf+/4DXbccqMIuPCY5CZCnDM52YirFGMiNiSXlpzCmYeynZA2XJ2+enivgxbmiFP7JgkfmkTcKrr+6lOWQtgi8aDsyqraNqN+34WYDJrPZbLCcJnslI3jmRPp6ydQjyRhGa7oAURIBvzQIkHWE/n53C6iijAyPF6o1AVZQYodzg4wt35qaxUcG+4RlZSVLam7sc62mo9FktyUBLKvLm/LuZUNeeL1NiQ0Zs7jjtwi/FwnRVjzCc6Y/LuAKH4TVhNJFUc7FViTEfWTagA+8K+xCW/i92cSzc/N4cnZW3uv3eFCtO8gENNnfjG3jnv4+3DM8LHN9lp1o0zPQiwVY+TyC4TACQQ22l4wqdRxNJvBwlg0qK38XKK/0/bkZzIlcmNtccC4QwENdWewKRxYAWI1KBQfoD2uaAG9Ktkn+VpHjmTV1aF4fDsdTW9KQVxbxB5AMaAK4IcOK27XpQdTnR4928+R3OK78HjOWI230TnduV+q6sKqEvAFoXnffIa+GklPFpDGPg7HBTe2P50cWKm78TjLPwGfFcjC+Arm1PxeZKwj7wvLsuhOBKlNTU8Km8uijj+I//af/tOOyah3rWMc61rGN2VZ9cq5rXM/oB7M5lcCJ283aAfgsshLsum/fPtlUg6feLAtQhTUa8qsoX9Jl3Cfw2UENZcSalAry3FIp0+02E680PipmUX4KgSsEKbAWxP2r1xVAhHIpnyc7fM2SGg2v/rmZCorSTOsCmclR01gW3LRHNHzNaNUONtpswMI2r3kj/gLlgLi1W1xr4kgmjBenK+LTk/2E8Srz2AQmtDcZ87TY5HpFWMP90pRLe3aiJI2oP3tX74r3neAEssG/yWbmRhPJZAgWC/2GA4d0KMvKUtxFKq5hd39ioW5l2y6wRYaPsYunKYwqwYBPaj2Ml4QtEh65BoLTCRpx2SNd4AXrMYqJXmaqSK4uni/BQn90ZhqvzdckVmKtgpI1B5IhlOw6zteAnz16QPLNbOZ+5so09FIVM5NFaFoAu4Ih6AENlTpB8l584kAGh9KrAw9emq0JuIngIQHkeMnCGcJH9qYk/uT3Sa+UMeBzkOjNwmx4MFYxUbRcRvx53WWS35sM4nBm63EHR2A4GRSgDvfHOcthifi9iGi+VetMN8Lo33Ne81lEsMpO2+n5qgBVhqX+6N57XvO5goHjGRP7NlHras99LAfjK0WKdmb85fFZgs3VgaaAXPh8udOAKp/97Gfxa7/2a/jLv/xLPP7443i72e2VydyibWUhJ00Zv8TUQOSk3wntwxthTHzyHLmo80u7XPvQaOgLQBXpSWqBUORnoTD2yp/shgmrYcDXDCxI19zspK6bnH5FronXsRNdS1yszxd1jFYslO26UIQd3XtAnFoCYpjkJciHyRsmVekQfbeiCTMKH7BBAh1k4XZBFDJ6i9xoSyRraO1+wAvTFfzkke41E3U8Pu8dqbe2u1gwCf2Tx3vxhTfnMFLQxemgk3MoE4bdBqklG8sr02UB41CuiMCJSqEuzlAq7Mez4yW8a3dqRUQmnSBSiE9WqkIXRyCIdOsRydxKItIxYQo2SG47FgroXLfGzqVPI/CEzowLluJKFPXlAAEAAElEQVRnAh4gEwmgbNZb6GMvhhKadMkSaEHGEjo0dPDoqB1MhwUoQwdpqmqLPBJBGjS+/sXzc8gbttD8cQz4ObLCUC6GIBeCQ9olpE7uG8Qr1Wl0Bb1o2Ab0mg5NL8HbCIhD06yV0AiuzMRzIafj6YmyIHAHWglxOqCUp9mXDuFAzIvilTcRCyYQTqaQDAVko2QR2XCo8Uh6uXd2R3F/Hzsut/69IxjlRE8URcvBQAsJzMCHzv2BdFikom6GMZAhZf2pU6fEcdhp4xyhFBcBOO3PKf5+pWhiomJuCqyyXSo6BVShw3unAVV+67d+C//1v/5XPPHEE7dlMqBjHetYxzq2tinWRa7HTL7djmuU6kJUtLSkhFZSpjQm27765qwkGOkzUQecviUZ6ejr079MhwOYrVr46oVZvHdf+pZKmRKw+8bZszjYKvbuxPHJGvJmUccsZUA9wJ5YGsdP7YK32ZDkDRMxjF15veKfpDN4OW/Ie9mtx3ikZLtSkcKG0UomtgMurrem0CG/ki/jvf1d69JkM+FMBpntNhuQEeWxni68nCugaNty33dFQgK2aQeTlCwbVyu6xDkBTwMF20bFceS9ZBS5UKqgq3vlpDoZZgja4fspLSrqVZ4G6s0GNK/bmFBvuAKljCfYHcZYMAwv9LoKBQkK9y4A6pmoZQJUQCVOXcY6E/Qj4vOiJxwRMAiPx/iFcRqPm9Jcf5VAD8Yru9vGbrRWw9lSSYIoAoZ88Ai7SM6y5DhMHlcdtyuX35W+3l4chAeXKhWkPB4YugG9UoHNfEYwiEQ1ACseg38VZpUzhTxmDQPZUMhlfZFjmXgpl0N3fwiTY2Ooz8wh3JNFLBKR90QDfnh1yHWRSaUnFMK+aAL9LXDLVq03GEGXFkLFsZH1hlxuWGl6aGB37HqA040w5ljo33McCFS5Ec/OqmOg3qwj4l2M0fi8CHoDKNpVmRNbBf1wP3yWcmsH4/NZocD4qmmHeRDOIZXIvtOAKrzmj370o1J0+qM/+qMOUKVjHetYx95ixjiBviZ93kQiIdvtaFxL6T8QfMG1tl3KlObAQr2tRtPugYs/LuwWLojFhglv3a3R3Kpm4tde27lmYtlns4mRoolLJTaUOiLlcrR/GI8cOLAga8g4io3jzNUT9H++GcPVson+aEB86noLrE6fWOoxdJPYk93yl5a7TdL86vXgatWWOgEbG1YzXiuZcHaq2eBjB7skXn1jroY53ZHG2yNdEczVrCXndz6nI2fWJYYwnDpGyw2pXbDO8WZOx0TFEkb25cbYoy8WxFOjRTleJOhDf1cYed2Ra07EAqjoddiWI+CYUNAnA2QQxNFkbr3F1tPal9RovF6E/D65NzWHtZQmtJAXB7IROX8C5ker1gJAn3F4X0QTlhBeC+tpjH/YWKqu74nRgigXsAZFKV9pHLYbAs4ZiAUw14rt2VjNJowTewbxfHUafk8KWsOWueHXc2g2/OiLaUhYJThOYEXffN6w8b1Jxk9NqeuJ4kS9gTcLBgZmq3gwG8bcxTcQ9YbhT3YhEXJlQMnY/kZOlybgeMCH+3tjsjHm2s4cYDMtm+J3tcBJnJ+sw/VENGHkvxlGNiPGNGyQZ53jRtjlsiVMJu1xC2t7s4aDad3Bvm08slcD47MZizVVxTjLmEY9p/gM4XvuJKAK7c///M/xj/7RP8LnPvc5vP/978fb0W6/bOZNMEXTxsCeiYmnnnrqOs3B28X44OMXkAtoe/ehMjpB6n18UCvpn2V7aXV32fC2tBFvdlL38lweXzs3gpKWQFcyAStfw31dPgFDbNX48P+zkTmcK+gCzKBTxIdmNuTHu/oT+MGBlDi4TMaM5ss4OzmHb4wUccbwwYZPQBDRgCvLogAYHDoZ0VZSstlc6l62XCNBbVKrjewjBFxshyZ7M9YT1fB37unHdNUWFhgyprwyVcHn3phBwXAQ9ntweqaK6VqLbrClp8gFhFImXJxrTYi0CsEqXARma7Zch7BHNJviOPXHAsJwwkQr38fOVjoWBGzUbJeSnYsUHY56iyabr7t9nC4DyEA8JAWH8bKJmlUXoAoZSfZGNexPhzFVsXC8J4b37EkLuIbghKPdUVwtGQI8uSKSO030RYP4SIvBhHa1aGC64mo/EpzigmM8csy8zjnujlO7EchBh/G1mQriWhD+eAhOwMGgt4GjcVsWPybiFRMP/1VgKrK4EACUaOvcpLYkkbivTeaRL4zg6K4+xII9okNZKOguoh7AY4NJ/PChrAByln/nyIhzhlp/BUOcRoKOjmQi64JZHh9KyfhcyOvikBEztC8Vxof3Z7YFhNmMDjgDs4121W7FOB68luXsRWTt4SW2d6Vu11ajomN3nqKiYzBKJ5lO0O1YBNyK8Vp/53d+B//xP/5HAaqQsatjHetYxzr21nqOM0nKjc9wrk9ct25H41rLRoFnnnlmSfehMulCMx1hUaE5SqqUIOlm0+0cg0+ScJMlU9ZlodG+yUCVeqOB71wYwem5ArSeYRSbAZjlGg7EI9s6j7OFGr50bQ5TuiWMfPyPvs7eeAg/vDuL3S1ZQ9up4/zsHM7P5fD6lUnMeTRJVF4r6+gOUxPdTUbKuW7w2DztKZ3+9Po02QSqrEWTvVHjWJFdZX88InrT9PvIsPLlsWlM6Lqwpei81lJVugc5sgSshAhsR1OYVfh+gleUcc7kLDcOoEzQjEHAh1fYLHQyzTSBuN+LskMQSYsdxec2AzAhXuYUawBVzrcWv7gPXpEi6g5pQu1M4IhJkJTH/Xs2GJAO0JLj4J50SsZ/tFoTqZ2BSAizpoW8RU4SW5LTB2Ix7IstFgLGqjX5DFlj7CZ9ei8CZKKsOyhYFqKBACLL/M4jyYSw0BQdB9FYDOFoBE3bRjclgAsFfH9kZIGJh74t8x0cb73uYMrQEQsEFrpOBewQ0AQc8/Kli6iNT+Dxkyfxuq1j1jRl3N1OUT/uT2dxKLEym0reMjFaqwiAKBEIYDgaE9aUtYzXdXe6G6cLsyi37iMZWw7GUhiOxHGjjfOaoA0+mzbaVbsVWw2IIiw7Hhayds5WA+OTCZPPX+ZFmAfj8/dOAqqwsEmgCkH3pMy+U2K1jnWsYx17K9tqMvIrGcGWXJNprHu88cYbt3WNhiyD9CMeeuih60A1StBe1WWWAsYXm4sJVnEadfgbvlsCvJ+t1PC/T5/HRFNDIrkXlbyFh/xBASFs1dhgQBb752eqUiugb85rpRzLI70x/OiBLmFR4DZf1fH6xCy+PFHBq7qBKgKYrNnio1MCSBjbW0OnajQLW0vOhsYpxrEjToAg9bHK6mAV+kRs8CCLJc9hJ8acLCQ/ergbud22NJFmQn5MVWz88ZkpqbWkQz6cz+sYLbdiFtacmmRM8YjETsp2a1kFkw2pbozFn1mzYWMuQRVsaOhLBKG31AA0nw/JiAdWE+LXa342LYQQ8XkwUzFhWARLubNNGFIIKgj60BsNSv1romrBbDRRNFij8WAwHsShbBS1RhNdIT9+ZF8G5/I6rpVNHEiFRFKH9Sb+zvGmbM/7dycXmFYoa8Sm0q4gwS9kaXFrNIzDKPOaM7w4nA5ILl8ZgTInu6N4ZrIMzRdAKJ5CMxhHV6OOU1ELly5exOtnziw0natGUtqVkiVAmKGoC0KhMUfAetiZ2So8l19HPBzCJ/buwRPjZVwtWyLTwzl1oiuKj+9PSzP3ch+dY8XrpiQR78neZAhHM2GJFdey+3pjmK/ZeGWmIkwj3CvrWB/al5Ha0Y02Na/pB1OK60YZG9qlP73NRMIMbCrZuefXcjA+m7EUMz5rUcxF8JnJZ/CdBlT54he/iL//9/8+/sf/+B/40Ic+hLerve0iORYgqY/WnihVyNjbzYj45JeSCDImB1dKorAHiyZsKa3/lgJW+JsLxfA0vPBQ9731EGFnFWl3+0JhSY5tx7gYnSvW8Eah2mI40XAyHcOuSBDnJ6bwuUuTqIfiyETDKNoOvj1ZwETNxA/v7hYdt63YdyZL0oFY5WJAdKbPK8V7as59d7KEWEu3nfRxFwsGJqpNlO0wbG8TVEriyOTtBkrFOhvtFnXM2x1qWeGXkmi773GTm5SwWW68FwSpUDOZLAx8wO6k8f4RaarswYGESN88N1bEuXkXvSyzQu4zwSctbXUmc3QHe5OujmPBsPEX52Zxbs6lkyOggoAO3XZZOngcFg4INmEinFRpTa8Hw6mggDcoycJRGYprMhaUHOIxNL8PR7MRkSbiUBKUQSDGTMUS8Arpush8kgj58dBAAr0xDR+ILXZzEjhzdq4mEkeJoA9HuyKItznMPFc6DnSy6PwRuEH0L8edjtCwFsQ9vUuZkgiS+dGj3dgV03B6piLgm/v743h0KIlhMquQmaVUuo5GmQ5RzXAZTJab49i4cm0Kjx4fFkeX4imUaSK4hfNwKBHCsa7IQuGl3XiNnzs3KwhqReTz0nQZD/Un8KH9mTU77Miu8reOdmO0ZMoY0Tkmonk1LcedNKJayVTEed3O8LTTxjG7KxvFd0cL4gCTxYfPmMmyid6ohj2pG0MPvpyKjkEzgY0MlLlGENi4FhXdW8U433/3d38X//7f/3t8/etfF4acjnWsYx3r2K23jSbNFOsiu+RVopSFydsxnhFN6akpSSjcfffdS7oPlTGRQx9xrmoLZa6KDbj20/w+lynSdOrYm3WlLVQnHGVEpnQDUZ8PXaHtAylYcD9TKOFa1fXR9sejOJaMQ/N48MVX38AZw0EsmYIvEMBIWcdo1cD7dmVxV2prBXYydPzV2DzmLVsAGexiUx1io1UTf3l1Dp/c3YWCZeN0roxZw8Ss5YXpDy0wG7LzcLxmSCLOFTR1bW1WlcX3MIbaKZrszRjvc2948Z69s7cL356aw0RNx7RhudI4rSiM1+pqU/tkbAxvA8mWH3apXMVzc3mJMXk93aEgohKneTEQcRlWCpYjwBhGxVWnia5gQAD5huMgV68LSHowHMK8YaLk1OHzeOX1Q4moxMmcFxGfD0FfE3qjgXSACVIgZ9sYjkQw0GIiUcwpnPcEqhB8w3ncFQyiPxxa4uPzfpNNJa1pmDIMmcvCYtloiqzP/ngc3cvAQb2hEN7V04M3SkXMGpYwYh5PJnEkkZBELZ8BiomHICMa/dZYV5eArZjgbjeeDYHa04Ui3n3//eIDp+p1jNWqwrpC0BQlgrqDoRWfTxN6Dc/Oz6LquIAczsWRahkPd/WgN7R28rAvFEG6exBzpi6fS2kaEn63Q/JGGoEb9O+Z7KSc6Y2Ui0kGYiL7U63zGeWOIYtTdrOOXVr2hl1rOxifncPCBvXGG5LoZ6KX0gXq9dV04d8KxjXw4x//uDDY/s//+T/fsrFZxzrWsY69XU0xfjG/xkZPrl/t8qG3k5GFmQwGjEEoObcSgJvs9jRVl1E1GtfctVaaPMW5ddlU1Bo8Z9hS+CdYg4X+bTc1VAy8lqti3nSZME6kCRQPYbZYwh+evoKCL4KueARms4knJ8u4Ujbx0/u7hfFjK/bCTBUvzFYFhMHj8xrYgMga0TPTFcll35uN4LWcjjfyOqb0JgqtGg3Hg+NSrjdwvkhp0EWQiirRcKwanBdtLos7dKzreaUOkgiuPG4EGLER/NixY+jv78dOWyYUkI0WS/vwwb1pPHGtiDMtxhUa/WRvi6mEdToW+Gd0GwMxTQAgrJ187XIOL09XpHkh5Pfgrq4ockZdag3M/ZdNB6NFE0bNgmU3UNFtqQ9pmg85w4ZpNwSI0RMNCNO7HNfnxZ5ECPszERk7Aip2pULIWXVpbO4KB1BxyCbpwYM9MWE0f6Q/LhuN9Z+LRUNkjPj+A6mwgHKU0YdnfJUM+lCwfALaYU6fM1+x79/bG1via/Ln9w2nkA768cpsVZqlD6bCeLAv1pL/OSzxCeMZ+qxsyGGMQr+14ktcV6KjNRsNTM7P49HeOO6665jLRhoN4ny+JuCW3khAGoRXmt8Eqnzlch4vz1YFkMFzf3m2hqPpED55oMtVFljF2HTxQ/vSuLcvJrU5xmP7kqEVa0E3gmGXNW4+O1fKseykHU2Fca1sSTzO7za/4wSlEVC1J7F95YzVjHkIguy5Mc4lMIfrBsHpbITi2qFimuUED28l++pXv4pPfepTwnzP2ObtbHcEWGUjwbXS4WOhlYU5Un4pux0dIT5wmGCi88Mv5GpJlJA3DL1RFSkgukUKvSyOUZPdZ1zuGwggCM0blNeZfPrryUnpmOLzndrQj2SzeGAbch7fnyni+bmS/MwF97WchcslHcOw8PpsHlYkgeF4RKitFUX183M2kgE/fnAgs+kECR2eM/maOC3cF6nGhFLX72slJOv47KV5oOFBwXaRjVx8GsvEffif3PmWc+RpuBTESwDgbViVdtDC3d1ROd5K1IUEPuwETfZGjAvjDx/OYn86hP/w4oScKpO7otlIAULRGGey15XYeXAwDsNu4P/15BUBVhBoQlQrP/jkaFHGk44CCwdkLiFtHN/DxBr/PlG3hJ6PzmDS68X+VAjz8znE/H74/H45tks15ybaCaL45OEeAb28SqBIo4kj2QjeMZzCvhU0CJkYvq/lFK1kRBuzoEFmnUOZCK4UdWFt4bV2RQL4W8d6MLxMS5JGx+79+zLC5MJrXKof6ZFEHTdKNhGkQKeIW3m6goIRxZQTRCoWQTAYQrlWQ6FYwjsP9AoqW/YBiHwRN6UNSeTpSkbn89x8TaR81HnQoXtusizgHDLPrGZEWNPhFcCP5hMn9EYDVVT3NtmCiFwlXeONtncOJzFbs2SOqmIMpX8+fKDrpjh96rvMpCcpMfkMVnqrioqOQDTlFC3Xhb9djffy93//9/Hbv/3b+NrXvib3s2Md61jHOvbWMQIIWGhlgM7uQ5UovR3jGbWWEgzMhNFqSRQm0T58uBt/9OK4gKmZACFQhOBiJocIwsjplvi8HzqUdZOVZDmZmcfz83nodbeDjGwWHxvsR/cWExVkzvja+DSmDFMY+xgPPKXncKlYBuZmcK4ZQCIeR8jvx5zpdqVRquWLo9PoCWkCktisjZR0AVLQZVdSMzImlIJtNHC5ouOPL06gYttwyCYoFNuLOTqXHpspNQ/cVOjii01h01zypyXmHg84mbner2Msw+IBY2Z2at0MH4eMKh8f6sM3JmZRsotyrQSc8P4yjuPFkLWE/5Ky+WAihpfmC/jriRkYjYaASZgwI2OJt62jl2wovF80SpNyV4wVmUCNa5xfXgGFhOoOAoaOcJAJRsrwNOWzvBcEkpCx5Qe60yLdM29ZAk45GYvhWCq1wFayMLYej7yf22pG4MlIpSKgm3ozKGwqvFZGb7ujETzanV0RwN4bDsnG+cHX29/D5wJZeLgpGmX6ruOXL6PkAcxIWKR8IpEo/H4fxnLzaFoWHjt194IsMuWLDsQT8nkmoLn/le4/JZVOF+Zh1B30tMAskri0TLxayOG9vbtWBeALu6dpYEKvCqtMRguJzNCNnmcsNPH5KRTkJ07ccMp9yv3sifbhcnUS5XptIZ+Q1RLoD+28lOpKxoQuCzT8HpN1hcBB1aG4EV3429X4jPrEJz4hz6jPf/7zOyIx3bGOdaxjHbt5RgABgZQHDx4U0KHyAW7HmEYx9HONZFPjakyDfmjSVFwXr9y7pKCggCvSbNwkm55boyFr+3+7MIuLJUPYHwgiFyaSPStL1W/EXi/U8M2JvOTk6dfNmzoulw0c1IDzE9OYD6SwJxmRGCTfYqp/LWfjL3we/OzBnuv82o3YK/M1aXK1W7lw+oCazyPshGQ5/NLlvDQd561F0U/VXk3fnsz2hDhQpZMxT9PTlFKNYnDn/vx+Ssu6Y+h+jEAVUuO7jCyD0aX3he8jSJe5bALvKfl+o43n9I6hlNQG/t0L4yIKRVkeNgFXW6wnjHGbXqDRau7tCvvxey9P4IWpisSC6SD5HX3C3u7Um4gFvNJgzKZVsuaTESVQh9zfsZKJ/rgGT90FCB3OhFEtFZDwAXbLp2MjMg9MAD1HjkAULeDD6bmaC16JaLivJ4q7MtfXIlhvOJqJ4OgqQ0cgFBUOJqo29iaCGK1YUt8gSybj6Q/sTuFE1/XyoWz+frg/LgAV1k/4e3scwBw7NzaSKt+VMc38LH3qJMZ0TcBW4VAIpm1jYj6Pe9MhHD9+aGE/BAJx4/yWvMIqNZoLBUOAKhx31o5orC2SaeXMfE3YU1Yzjt/r8zWpebF2xvu52nF20tgMxDwL45n2GveNMt7DiZqFs3lDgHU0Nhe/a1cC2TWkt3bKRE7r/HmRjFLKI5VKReaFkhZTgCY+o9nM9Vao0dC++c1v4m//7b+NP/zDP8SP/uiP4u1udwRYZT1TyCtO4ocffvi6QiuTOreLI8QvHwuhXEz5wBkbG5Nk7Grm8/iR8KVRaRThNNlN5uqHEVHI//i1DCKMuC8tmttl28Kfj46hZFtCOczX+fPfTE+5nVkbZAGxmxZq9YrIENl1P87kKwh5vcKaQQs7Dt7IVXChUYcnGIPlNDCfq4gjwhysdI0xATxTwO54CEeSmwN1MHHGTdnCA6hJQAadHZdNxKq7iWa0deU1FTq3jS/FVZMEmiz6NxqSEHXRlK03L+zf/TUe8OJHDy1NMHHxVLrXLG7fzIQJr5+SSiziDyaCIqGj2EZMxx0rSve8YziNh3cl8P9+8gpen62K48DuvYmKjWSwIQhaOn65GmnevOJI0Qnior4rHhRgxVTFFEeTgIp8zcLE7Dwcr4ZoKICiWZd7oIAykxVT3ndXTxSn+mJ47760OFo8twWGn5qF8/Nu1yHBK2Q/WWtBISvMO4eS+NpIHrrtoC9KwIfLMPKzJ3pxomd1J4LGzkl35q9uXPQUcvOIacF+ZRRnKK9UzsmYUtOeaN93HBpY8jmy0jw5VsQr09UWu0pQpICWg3LOztek+NIOmKHjOVezcaVkrApWIUr3z87OCm2fIM2bwLOTZXzsQBdOdN8YYJRiCuLiT2CDSmTfaKPO5U8f7xWwChl06HQf6orI/b/RxvVA0ZAyoFF00oqKjsH0SlR0KtGrdOFvN+O9pI77b/7mb+IrX/mKrIcd61jHOtaxt44pPWIWoo8ePbokgXm7JXZVUZhGRrZnn33WTc6u4uN9/EiPdIv91fk5SXARmEwfnpdIEDQ7zj55rAfv3O3GKt+fz+E7M7PiPzKmoe9+pVLDn14exT84vH9DkoFMjL00WRaZSCYGkzEvJi1DgAAqSTtdq+HluYIklHWvDyXdhNN0ZXPoi/F9OdPCF65N42f2D0hCeDNmtagdRc60zT9ttnWjzTXr8DBbu4q8TzsQRfrYWnKmfIXjsxJDoLoNlOPZG1uaQGQiUDGRthcPboaJjrrPJzI/utcrACLGmAYakvwm5TW78H5wV4+wzHxlfFreE/a5oBajXkc2qAlrCe8p2UdKLYpt3quQz2V5ZAKVjIwxXxBNzQNYBmZ0A8FYTJKT3A+vWySCWo0WR5Jx9Eci6AuHBcTC/SkWIL5ORhiyqTCmHo4yUbn2XNgbi+JKtSqfY0xAhhVew65IGB/s71v38+sxo7bTKNN3HSzk8b2pSZERapRLaHrcLtQHe/uQWtZgQQbWs6WCNLcwbtoTi+JIIrVkfuctji2bTxZjN/6b8AcEeFO0LaS164s5fA6cKxXweiknICD3k0VcqYbxaLZPQCs3wtiM8OKLL0rykh2INxqooqxLSyLqC6NgV1Bv1hHxhZAMRCU3c6ONjFuMado17FloY1cxN+aZluvCKzA+E70E9dyOiV7m9X7kR35E8np/+Zd/+ZbupOxYxzrWsbebDBDXHhYdCVZhvo1rTrvdbuz3iqGfjY1kZ1urRiO5eSSgN8stwMrSplear+mD1oyIH8B9feaNKVytkJHBI4241XoD3xwvSt3kk3s3Bq5gFaThIcSjgUbDg1dyJYkB+iOuH1Zv+PB6roQR24E/kES1AZzOsfHZjQnYdMzb9fJcBfsSIbyzb/NM2qpZVjH/KxPwNxnfXXfbrdYIY4oCnLi1HLeKo9R+XOACASs+AlYod9liV/GSLV/Va1r/R2bKnzmSlXy/Mn6GYCj6Qmwmvlm5bGVsbua2K+rBtVJDzk2kceqsObnXfE93DB8/kMXvn57C9ydK4pcTRD+r26iSDSQaQEUah+sYLbkM96zRMO7NRjSpI7CRtWg4ON4dxZV8DfP5PPSGF9FISNj1Oc4MN8mQQomi7kgAp7pjEmvf3+PGPawlqdi3bDk4N6cLyIj1mb2ppcyQy43X9Y6BJL44khOmDUoJce4SgPNDu1N4bGDtuaRATWtZu+96V70O74VpPM/G4rkiUM/B9njRG/LhfYcGl/itHKeXZquyMZ9ARpgHemI4lnHVBJRdLRuSF1BAFbl/Pre+er5grApWYc7ic2/OYqTo5gY41s9NlfGuwSTeOXjjwBJ8dpJthmQMy5+fN8oIJvrQcArHMxamarb8vicelPt9o43jSllT5sJYl1J+P+MAbmwi57OZ7KKMaZiD4rOCIHzGM/z3dpUJ/c53voOf+qmfwmc+8xn8xE/8xK0+ndvCbs87tYOOEBFXiuaVhbmVAAS3S3JXdR/yy0WwA1keWCBe79zImJL2dMOBLWPghx91Tx1WnR2Ifvi9iwi3l/J5lB1bdLbVQkSnpOLU8XxufkNglWq9jHlnZkFeiMm5e3ubuJyPCgrYdBycz5XELQsEyOfBZDA/qZKxbkKPh2eC6+mZIg4nNpcIoQM3FNUW0HxKE48gitaaL4uxog93Sbyu7ypcOKLH3SfPLRXSsD8ZwpWCjmsV7p/JY9dxkg5FAJ/Yl0FvRLuuy5WoT4KMbkWhmtRtQhXIJGHQJ8AG3g9eM8/mXcMp/MjRbvzbZ0cFGcpZRbo/6kDyc5TT4cJMkMCxbBRPjRUFcCGpczqV9YYrOZMKC+vKI9kA/vDVAhreADyS7HPE+SEamk7qvG7jQCaMnzjWs9AlysU+2DY0371WwFcuzgszirD8BLx41+6UsGes5Qy9cziFTDiAZ8fLGCnoAgp5oD+Bo9mdB2xEghp+/r69OD1dwXOXpzA3P4/DXVHs8pTx3FPfE2ACnYNMNosvXq7glRa9IYsk1EskO81P39WDvamlAJSVnldrEbXz/U9cLWCiYmF3MrjQMUr9yK9fzuNAOiSApZ007p8OEIsWdAhuBlNQuzFxz7l4M205UGW173I7FR0/Q6dJ6cITuEbE/u1ERcd7SR333/iN38CXvvQlvOMd77jVp9SxjnWsYx1bZmv5wteuXZM1mZIOw8PD173O9YpJOW43qwi7XvchfaTjx49LwlmYH9cAqzDR9fP3DOATR3twrWAgHvRhMK7hWtFA1XSwJx1GpAWK5zW+MJcXPz+uWAC8QKDhQc6y8XKugIeyayd3qfn9209dxQuT5RYrpRuf7O/V0L/flYicrtYwVjOkqB/T/ALibgfL08/mRhut6rhQquJEeql2/XpGyVSCxylrysI9E7LcJYEqrhfudhSu5eG1C5YSB61A2QORMJIamwrKsFrUkbK/1j0gwOMn9y1lv2CjBOfZzaATXs2SWsBl1NPIpOgIJbiK49ht+iPDuySx+pfXJgVIQiNePuJ34z0CRmIBP/ZGIwL+mNRLLjMLx0YklprCeBL21eV+vTg+iTG7Dn8wJO/nUBFEFPACZacu0kOn0kkcTboNL5zD7aANAl++OTUjc0DFuGktgPf29aAvvLoPyH083tuD86USzpfKqDUa2B2N4d5Mal2gylZsdyqNRCSCi6Uizo2Owms7GCBj5IWL+O6lkQWAQjMWxZPzcwICYs7AatZxOp9HzrLwru5e+Lb5fCGI5Ww5L0UaJXPkNBuYMnRcKBdxMrXzjCOM1QlUoX9OoN/NBmCEfBr6fDe+m3clcCPXjIGBpQ0WyrhW8DnNbS0wPucF33Or1xaV3/uxH/sxSTp/4QtfuKO06jvWsY517E431eRJAClrNCvlGPl8J+j9Vpti5SCYk7KBbBZgI996QBqfx4coksKA77Leu6CURpOf88DnXWSSezmnY6xqiX+rpEaoUlK0HDw1U8ZHhlNLmhxXMh7H8eoLckMNbxPvHgrhmQlKdgAOpXVyJQHB+FssdmxIpbVwIm5tgHtoePD0dBkPZGObzi8fSgVFLoZxBXdPZkzGMwLMaB1MGosXUSaLRvzKQvnGBbuEvWyU9ggI/HAyiLxh42zBlJpDoAXib7QQ+vf3RHAkHVkyz9i0zn9ZX1uNCedGWkzzijROTneleUYrpjS+Sl3JBxzJhPELd/fjv78xgyfHS7AbELYVXlrU7xXGjkpLqudkNoLnJ8pSayGwg/eQMQdHgZIzrO881h/Ba+PzmG16Ra6WwRHjH6nTaE1MVW30xjR88nBWgCo01mr83sX7zKbmz5+dFbYfRl6ce3f3RPHjR3vWlMLhtYT8XcIM82auhmTAi2NdEdy3TjPxVow5j48e6seBbh0vT+RwbXIKw7Eghnw6Xn/+aVyLxxd81+eLDTw1WZbmAo4jWV8mqnmJ509tsNawVsTw/FQZFwsGBmPaAuM95ZienCgJw0p/dOeb2MkSxOcQ5ZVvBlNQu/G7TYAKt5tlqwFVlhvr/SuB8fkMJ9hQ1e4UM/7tYE8++SR+/Md/HJ/+9Kfxcz/3c7dlg8CtsDsGrLKScVJSSmfXrl0SpK8WXN8OqF06YiyQ8kuo6IxoiuZ6PeOEDkAT54SF02aDwIDrtaXZ+Udrp3Rzi+Z1TOs1zBs6MqtoUtPqTQc5Z1aAKuzFkgWyUUci2MBAwsTL0z6MliswRXexRd3WbKMkaTNJBAI4V6ziXKEq1GjUD+8LB9b9gvL1d/YlcI0sHw4pkwmScBPGKofcalRUR2uNZ0smqY1txU3wus4UP0/9NepEVimdI6QqLh2di9xtIoA65q5dxpvNeVn8eI84z+i4cp7dqocLJXAon/ONy3nkDJdOfMEn9HpwpWTiv7w8gTfna9J1KQAcSv4Im7Y7IAXTxlAyhJ892YfBhIbPvDiOmuXSURNQMltzxDF6oDuIyWuj8PiSaJC+0D2K6LsHAx58/GAXTvTGsC8VXoJsbrfLBR1fPD8n40qwCd9VMB05/6F4EHf3rS41wzFOhwKYqVkii1MwHIyXZ3FmroqfP9GH1A4jO4ky7rVzOG6P4+533i2LHI0JPSUX9OQbl/GUkUA2qiHpiyIY9IljerVk4Onx8hKwCqV+LuYNAQC1ywDxONSSXMn4+uWigUzYv1BU4Dj0RDRMVExcLZo4sgK13laNc0Oh0OkQvB0SgRsFqiw3vo/PAknwN5u3HRUdz+nP/uzP8Gu/9mvSffj444/f1ON3rGMd61jHtm6MAxigs6vvvvvuWzUpobpFuJbdyoJie/chu1zaGwo2cm7JUADHe/0LwBvxET1LYxOCOsqOI51n7eZpkhmxLsX/k6nkmknWv7o4j+cnSiI/yeQbz3HesHF+ysSBrAUDJnKmjYacrwdFu94Ggm83928lp46XckXx67wtoAilatYzxj2nMjE8OV0E84I6k7qi/e32F3pJgb2QvZWrvA7e3MY1SYJI8evpu1ccZ4Fam2fi3gtiNlwgftDU8fzLr2B3T7f4KRMTE5IAIxOO8nVvhR1IRPB6oSTgD8r7tPo0XfnWpgcvzucxazIB70jTBTs2Ga1UnSZifp8AcyiRw3tAMErJsgVIJJTb8j4HOdNExO/H/NgYHMuBRwtJ8phAH5YWGCv3hIL44K4ekZVKaavTG7+Qy+NypYp0QBNgPu/fvGnhW1Oz+NHdAwvsKysZWWOYxC/ZpEivo1ypYlI3cE86iXsyqR33GaOcI5cu45jfj1P33ifPDX7PKBVD35XJz0tsKIlFRNon6A/AHyCwp4EJXcekoWMw4ib4yASTCLgsKl2aS2XP71HJsdEdJHvIyglayv8IA462GPPwuxz0+jBaq+JEcvMSwWsZNe8JVCFF9q2M1W83oMpGwfiMc9lQxXxZuy78rSj8MPZm1yGLT5Qzvdld0h3rWMc61rGtG/NkqsmTdY/VOt1vh4ZiHp/xDP2jdob+jZ6byNOALJEEa7BG04SPjZ7LfBACVViL0Ja5it5mA0WzgddzVZzKxlaXVUQTjtdYaCZWUkOxgAf39Qbw1cs1XMxXIEKEHp/UYMjE79Y3FhEiKm3P+ONqVccr8xXENb/Iaw5F3WbJ9ezh3jhena/hzTyZDpvw1AnEX3ydtQEViywiU5ZeizqK1LZaTcdk+ChZdRRtSnOqwKcV0wgrTAP1HCVR8pJz5fwiUIV+CnPZt4pRgf7/I7sS+MsLc5hljaZ16tJQ7AHypoPPvzmLF2dcFQLWnwQ4VCfroFeYK1ibIgP+Rw5khQ3l/3zyCoqs0TSbwrzC2g8/tzehYe7KeXgDcTRsD3wNt0GE4xnWfHh8bwbvGEpKjWY10AmlgghUYV2G0jkcWx7jucky+mNBvG/v2rFhSvNjumxirmIJSGayZOLsXBU/c1cvBnYY3MC51FOvYGD2PN5z16KvS3YNJRd09soonqxnEAxSLiiMUCCEhObDVM3CM1MVHMtEZIxpVHx4xlsR9pV2GSDGdAdTqzcesBGcTdcKqEIjA+jVkokrRWPHwSpXr17FyMiIxOpkQrzTbXldaqONwKuB8TkvLl68KM8GPisUM/6tyJ2RdZjg+9/6rd/C3/k7f+dtEZ++rcEqnMz8AjPZws4ZRXm6mt1qR2h592F7gXQz56aSuqqjcqWJzu4oroyKicSsO9Ab9QXd6d+/dAF7ojF8dGAQiWUJJn5m2izCQV2QwuI0OHVJGPPneNDCmO6gTgdkIaXoIj1VV+BKgBV2rP3JxUlEApp0VRFBSlmgY+ko9sVWB87siYfwcwd78J3JIl6cq8qCLfts7VcSs63FXv3NzTHTQXJp0BbG2cNOPTLMNNEdDmAgFhAgQVLziQYbF2teQyYUQMVyEE8lUK9XBKTCxA0dVy4UvFe3klrqowezwgByqaC7ElA+jwAgeOEX8jpGCoZLad2ijmYil3eINNj0FX1eHx4lVRmAS3kdJVOpQ7r3kAu1TjaP+QL6BgfR07SlEEAni5+hE0V6OoJ+DmbWBk68NlNFxa4LOEPdYwJQyiUDL09X1gSr0PH57BvTotdIJ4qOARHGZ2er+NKFOfzsib4dfZ5wMSPNGotEBBu0J/TY3cytejUH7ew0ArBlAXRfDwnz0ZVCTc5ZAXfu6Y3J/Xgzpwuoi/OSt+mh/oRQ7K14Hq05vPzboJDwa7GybNb4DGFSks+mzTgEb2Xj95hAFc7FzQBVlhs/vx4VXbsu/M14XvzFX/wFfumXfgmf+9zn8P73v/+GH69jHetYxzq2M8Y1hGsT16hHH310TeCoWrfoi5Iq92Yb/SUmT7ip7kNlKgGwkXOTpK6wWyig+fXJA7LXsbBN0IHyW/iz3fKGzpbK+J2z5/B4Tzce7em+LsFKJoyvj8yL/0Rwgd1oSEKKoBBSAD83VsJAjw8+AR6QqYSSmiviRBbPG028mitjVjckBuHnCHY4mozJRraQ1fyGDwxk0BPS8N2pAq5UDZHkZAzl95LdY7nzt7rH52l1yDHxxo6xXRFXzkivO0gFApLs5cb4IBkIoGJbiIS8mJmZETYVnguTfZxLa7Hg3GgjAOK9fd34/QtX3PEXuSXec6+AHF6YL0sCVeKZVpeXzBsmbh23izUaCmJfPIKiZWPKsKSTcWGQWqw4ZduGXjcRSneB2QLOAW4EHEUZgzPZ7w+sCVRhvHixVEHE55O5ROOYZ7SAMJGM1wzsWSaz1G5jNR3P5/Lyme6gG3sTiMW/dYeCGIruHBCdXcztTKDqu8V/CYLjRrmYqSsjqOu6JPZYpAkENETCYdiM+SxrAazCe3Iq1YVn52cxYxpC+e202I5OpjJrFlZWMvfr1dzxwhiBKmxeOnDgwNsiEbhVoMpGwfiMiQmgJFBEJXpvBhifzV0/8zM/I/Hp17/+9SUxecc61rGOdez2suVrAn1NAggoL7neenyrazT0l1RukKCadnAmfaaNnhvXTtUYvVqNJq35xKett3xaAeRbrLq49v89O43haB7/x+FeYY9Yvv+cbSEcrEu+nhUYNvJSqrLB2krAg3nTgC6veUVSh2dA/5nsgfSb5ZW201Lsgp+/PCvyHmQuZFxxIBHGiUwUR5KRBeb05cb3/52jPfj2RAnfHS9j1rAXpHp8vsXjqGFYXiFqHx422IZ9lERqIqX5MBANCMiCEjiZoF9qNIwR+DOLGVF/BH5/TZoF6S8wh03g7Uaav2+kPbIrLkwjF4s5GVuOJeMwRu1TFQtfLVturYWN0WxWl6S/R+I1lrg41ie7I9II+6Juo9RoouET0VdhYCFrDoFBc+Uamvt70Q0Phr0ezNdsub+pEMH4gNlorstEf3aODew2BuOL4CSy6hPA8dxkCe/dszaI/quX5mUffTFN6lBkdBkrmfjc2Vn8P+4fWLWReSvGBgv6ooxnCEZvZ9egz88tlKvhmbNTiDVt8Y05F0LBkDBp5nQXnEOFAhoBKfd2R0UuiFJGSpDqaCaM49nVYzFVY1zJljbQb9+YYyHT7vK61J1qWwWqbASMr2o0twqMz9j0k5/8JP7Vv/pX+MVf/MW3RXz6tgSrqE4eVWTlpKMm3UaQZrfSEZqenhaHjZrg3JZP0I2cm6LVVu9bzQmi3ZNO43QhLwlddqIZzcV98xNczC5Vyvjy+Bh+fHjPghb2lG7gqdlZBP0GDqaoGe4icZXkDpO7/DwXH2fhqbyoUsjcHcEQyhlaev5AhfI9Hlso4nJmE9OGjWfnXHmgjw51i049k4cjZUOYT+iQ7I4FxVn72YM9yIYK+JvxojhDLlK17RgtsDAvhYwzLjiAXY+cLy7Liuj3UZ9O9AQ1/L3jffjipRyemiihJ+xHb8RdwAS96tQx3JVCvOER5gR2jnLsuXBw7jHRpxI7N7vjiM4b7w0doGRQST01UbZcUAoTiN7WfWu0mGZIhc2ELd+Z8nkxVjaF8eQL5+eXpAtdnLaL8C54wtKBGPDW0R/TZJP3NBq4ZjnQ7bXn7GzVwktTZczVbHFCSYlH6RwanTGyiKxlZBghUKUvuki1RmeIYBdK75Bthde/WWOBQs3jBU31c+cWnidrUYXFggFxjFLxBLq63ISaJHnLFVjlPF55OYfu7pb+dziMnzjag9fnqrhcMOR+HcyEcThD3dKVv7tEAA8ngnhjvia6lOo7PqfbAhIiG81OGO8hOwhIsUyH4FZ0zd0qoAqfnaTS20kZr1tNRffFL34Rv/ALv4A//dM/xYc//OEd33/HOtaxjnVs56zdf1dgdsYyTEqsB27kZzeTQN1J4zHPnDkjyYSHHnrougSKik3WSxiqWG4t4L3a3/FUAs/M5QR44jQIVFk0fop64N+YmpHC+alMesGPf2m+gNOFIiZqpiRzC7Ytf2+PaxgTNAXw4e6v/azXwKtIYrlkM93okX2TmeVKpYbvTufw7v4u3JNOSGxFpssJ3ZBIaTASEiDLA91x3JWO4L9dGsV41RIwv6vnvpE70PJbW9fIhDTB//dnk9gbC+N/Xp6QWKe/zaejfE44EMDe/m6M5Oel8MwGD97DF154QUBFKp65FR1HdO957aRFF7YaYfNkDOqOMxPUvGqSxPObwVivwWR/g52JbifmVM3At6fnRRqqPTR0Gzob7pzs7UeTskF+L7paYBHOP8asvE82g8dVjGN9sVzBjGEtxNEE2jD+4sYxZ9FhLRupVOU9vW0JOO5jWjfkta2AVRRwh+egvkP069tlcNa6n/FgEAaLDqmUjAXjmZquo6TXcH52Dr5UWuYF97UrHMG7e/pwrVZFxbER9wcwHI2tyqpCywYJ5vehVqfMkBtj83yNRh37YzsHelDPUCYmV8qz3MlAlSNHjkiifqdsNTA+GzSYOL/RYHwej/TYzJ1985vffFt0k3asYx3r2J1g7WB2FpY3IjF5K9nvma+j78C1jM3Ey/0lJbu6nql4hte/VkzzYHcMX76Wx7xZFxa7iuMyCi7spwlcrlj4z2en8Wundgl7BY0No389ngcjoA/vibjyoU0XsO2S2zfh83vg9XmFF59/FeUcVzVH6iPiO7fAEe3Gt1Ge1Gc2oDcawto+Yzh4ab4iNZgf2ZMVGVP63FerhkgWkdmQDcVs/v2x/V3Ykwjizy/nMF2zWuwqrm/ebsLwTiTFCsb3EjTDeKY34sVPH8riTF7HV64VhG28u1Wj4fhO1MgQH0M2FhFALf0+5mH5M/P5yWRyIaa52fIfEr+0agwuMMkF7ZQMR2oxNGafJbZpNIRhp95in+FtCfsJOKrj+xMl/OdXp4QFUsoVZP/30Nf3ws9YOKChGUnBVyihLx6SjcY5OFuzBHCylhEg9WKrRsM5wdoKaxCi4uD1QLcJgHIbCFYy1mBYiyHLvTRMExDl86I3qmGsbAjLyP705tnaOcc4Su0AKfqdbChm7p7f09WM7KmRoIaoFkFXJg3LtlyGjaoO2y7h9dOTGOp1fVfGwR/am8b+VAiXCobEJXuTIZE3Us0IKxnBLE+MFpFp+BfOkSxA4YBPvgM7KUemGqgVy9PbAajCpomdbqDmM5wAJ24KjM94RoHxOb6KGZ8/73T8SNKDj33sY/in//Sf4pd/+ZffFvHp2xas0o5+pbVL6axnt0IPca3uw3ZbL+m8VvdhrW5hxqgIo0k6EEYqEEaXpuHhrhReyOWEotfly3D1y4WFpJX8G6tWMa7XRDebFNLfmJpC0bTRFxGIh3yGHWpMBvIhHvQBM3pTnBDxN1qpXJKX8XvHRY3/CsPKCklXuwUCoYNTdpqizcdk5IvzROM6eEdvEq/M1zBDMAqdLq8He+MhfHQoIxRdEzVLCvgFqy7diCtZuyyi0kgkupfv53nRqSKSlQsaATH7kkG8OufFeNUWhDAXbOr28X3R0hQuTU8sockmtRRphvmQU/IfTNa3O0U34yHkMtq495OHI+U1kbbKuIDynvFP6s+kjduTDCIdDuAbl3PI6444hmqsxIlt7Z1jRHz0nlRQGFAI8KBjMkImFnFg6BSX8YP7MuhfAUDB9/2X05MC0qhadYw6hsj5kI6OoAvTaYiDsJYRDMNCAiWJ2o2/E5hDRyq5Cb9gvGziu9cKOD9fg5+ajL1RPDaYwLULby6wi6wng3MoE0G2JclDijxNC8KEHxFPCB/cHUfWr0s3wfnz52UucE4c6O7Gvb3ZDc0LvufdwynM1GxcKZpyrRyDSMCL9+xOCeJ5u8ZnCcFzfB7SCaKDf6fbjQSqbJaKjmuWSvTuRGHoq1/9Kj71qU/hj//4j/GJT3xix66jYx3rWMc6dnOkdFYDs99OAPy1ug+3EtMsB6rQryRoft4yhVFlOBIVVr9HujOYqNVwrVpdAlSRzsIWooRyMM/N53A8nZLCPaVlnp7LSfwylArg7JQJk9JELXCBQ0YTDxCPuFI+iqq5nVRlkZ56xatA2Wkg4icLiEcAMwTTMK74yug0Jmq6sGecKZSlY47Ga3kwm8LJVAIFyxafXZgcqxRT3agtvpN++q5oEFadrIkuU8zeWASv5csyxjwej01WxePxMM698rL4uPSBGBOrLsR2+Q/eFyYDmdThvzeLucdl53TvDY3jqGYQ7w/vI2NIgorcjlLK6ngwHIvIuH/+6iRKNmNH9zMq1lWsMcLIAg+Smh95y5ZGjgndEgkf+tiMmV4vlDEYDl3nk3EfT8/O45V8UeR7yFZZq5Oi3JH3E6wU8i0CYFYzMsVQemi58Zr52mas0Wo6oQxWte4IcORwIoFsoynfURaIyJyy3vNkbyyOacOQ5hYyxoQjERh+Pwa9XjwYiqCWzwsTD+MF1aRxeBNNGulAEAfjSbxZKkA3dbkPbKggiIV/3wljcpPXTGDFnj178HYwgkeYAN1poMpGwPhKRmo5GF+aNCLbYwei5A/jGTInP/HEE6tK4XWsYx3rWMduv1wbwexcI1YCs69m9EdvBfieeXyeL5lf6Dus5C+tF2u1A+9p7TENfdPLFV3YT7qCBPeGpLD/w3tS+F+X8wKSJrBEVVTo5/Jf+khTuoWzBR2P9MTFt//CtXlcqRjoCfmldkKmlLLNfL3byB32e0XCZaqqxHRa0UJbcLFQo1na7uvWheBBwa4jGfCi1myKX0t/+o2CjtL5KbynPylskK6MkVtT6Q1r+PBQF7IhTdgp6MtSSohgi5WDmhZy5vq/usztQR8yQZ/EVfTLe8MBqc1M1mx5jTECGfbZdDzQqOKVV97EsWPHxDehMYZmnEr/hLl45lzpk6gaDUEsN6VGI40EizUasqGwFqKM9S2OH6+RNTVpBvd40Bv2S8PqKzMVfGe0KDWzpZJN7viFggHZcSLok32RdZ7AlwsFQ2SEeH92mXVplr1rBXaVed3GH74yifN5XY5hlAlwsTEQC0pjMpuJ7+2LrcmMwmNyXsaW6VmpugVf34wRAEWpnrMFSlwBh5IhPNgTRXlydIFdhPdvLdsV0zAQ1XC5ZKI/EoAW0FD3+OH3hPBgVwj7w5bEuqzL0q/lnOjt7saRvRvPxT/YH8dI0RDZH16r04ofH92VkOPvxNxhDYlgbdalbjbY6lYDVXifbyTTfzsYn88LJSPFrR2Mr5o0tgvGZ17lox/9KH71V38Vv/7rv94BqtzpYBVOYnYLMYF21113bargeLNRu+t1Hy4/N35ZNtt9OFor4LXSJIy6q4rn9/gQ8gZFa5rJK83XRMJDjbsmPIpFovVZ/mY3HZR53CgwUq5I8pQOB8ENeaOJVNBByMdzaCDg5+JDrTZ3L7JgLp5l24+LTCsrGbERBKm4HYFElzIBSeCMgc+OWNJ1SOeED36yrJwv6vhuoIQfGkoLuvhK2ZTXr1bc7jblji3+7AJnll+sRrSxXLMra1Rx6vh3r07Jgurz+xDyNIQejGN8IBnCPmsW1fniikwb/J0bHVveNy58avFjAo9JXj7k2A10o5yiu3tieH22Kpr3YR+ToIuEyioZqBK6BDFzQd2TDGEoEcTVkiFIWn5WOYj8sNKO5P8zIdwb0fDgriRemqri9dkKpiq2MOooB+xCTsdvfHsEn37/QUHWts/ZL5yfk2McyoRxMe8iig27gYt5HdmwH4OJEB4aWNvpoN6hgJMMB5kWbRuNv/dENXSFN/5om65a+OPTU4L4JhuLadXx15dyeOHCKN6TNPHQAw9sCLRBsMgPH+oSRhqCX+jw06l+eFcC79jTJahiUl4y4aY60dplYTgv+Pxa69nFe/Tzx3vFWZ2q8nx9OJ6NYd864J6NPpfYicd/6RDcCgmBOxmocrOp6Nh1+PM///P4gz/4A9FB7FjHOtaxjt3+Rj+JMqZXrlzBqVOnltDa3o4xzXrdhxvtRFxNypSME9+ansGVSlWkQulpEthO33Rc111fnQwora4rRW3dHn7MGaZItbAr6rVCSd7DmOKuXV5czdmomPVWZ5+7j2TUi0zSlf9pN3f/TfGdPa0uwOV8kQrYwgSh1Vz0vXk5TEy/PF+U8+gKaegOub4lwQ1Pz+bRHQwi4vdJkpnJXY1yra2YqH3/y62d6UUTLXh2W9ry84vzJfzNVH4BbM5rKtt1oZ++KxaEd+RNpJiUO3Jkyb1rZ0ngawRu02+9fPmyxLAsRKuY5kYlkAjySGt+zJo2/A1X2pX3W12zJHtb+u5K4ofJ6r3RsMyfWduUsV3enSoJ+xbzCvczEAlJjPudqTm8USij1vqAYkp5cmZe5tdHh5Z2Ak/qBl7NlwSQwn0QUMX3kbFmDIaAPE6kk+uCVciocr5cWZDodc+zKXTg7WwrG7HXiwW8lMu1pGB9mDEMTFYqiM/O4r6hIQFubCT+3BeLo2BZGKmUMeu4VNgEvtzf1eVKAPX0COhFNWmQiptNGkz0qQIAOxRXOxb/fjKZQZcWwrhekQJITzCE4UgckR1g5GCOhf49i02Uan072M0Eqiy35TJSZPFRiV6uZ4x3VKzLHMhmwPhcz/7e3/t70un4rW99S/bTsY51rGMdu/2NIIHnnntOinuUMt1MI9zNBt8r6feNxF9rndtazcSjVQN/NTbnsv21QMnpQABTui0NuoxCmDqXon4LpMKccrtPOme4nyVIZaxqIhtkfcSLszkHx7v8iAfc9zE2Ysj15KQu8i9yLqvIyavm1HaXzWVccX9mPYGAbDlnr1d83VndwheuzUnc0h/WhAGRDO9sIv76eA4/sa8XsYCbW+0L+5Ez6wsSRIuDtZQRX/nn6p+wn7WlJuZMG7t8Qfyns7MCWue4iSyo40JsWAM60CijeOWayLkvB7QyTiFzJDf6FCoXr/LAym/l525UPvhUdwxPjJYEPMRmUzKqqPHl9TA+Y1lOMaz4PE1pgGX9abpmI2/UJX6TmpYwT6p6jVup4awgC8rD/XGMV8hiX8IYazSNxZiJ+/mtZ0bxr35gNw4sYzh54kpemE/IJMJ5kjMcuc/XyiZqdl2act81vDajXSbkF0kdNiKzAby9RsO5oNj4N2K8z/9rJIerZUvifp7/MzMVvDY+g1PWNN5x//0SZ6xnHNsf2p3Gl67kMVG1JL4iAOxIOoz37k7LeVEuk9/Z9iYNlYtXUpdrPbuoAvHTR3vw6mwVV0qGgMSOZCLCyLLdmh/vM/1fzlkCVbYL/n4rGK+Z94A5phsNVFnJ2mWk2sH4jGfYbMwciJoXm70fjJU/8pGPCPP9v/gX/6IDVHk7gFWIeCJAYDX06+3iCG20+3C9c1ut+5BWtg28WpyE06wj6Xe/2EXbwGWDyTYvfAgIdRg8pH9uQq/TEVp0XWRXHuBbcxNIB4Oim02HgR14ZFmZqDXRF2lidxwCWJnWmzgz35B/VZJW9qPOVbr8XEALnZ6F4yxLutL9YVLWdVqY1HX5nV2JnrosJIpWi4neWMCLN4s1vKs/gZOZiCB8mRx2ZX7a3B75femcEAQxqaKVJE4TyNnEDgNn8gZ2RQLC2EIqtIpN2SEv4gEvnMIMTJ+Jxx54YN17x4ccFz61+CmniIkkmnKK1gIokPKMiVkmlTc6rz94IINnJkoYKeigP8NxV+l05ZAuljE82JvUMJSkZp+NmaotY+xpgVWabWOpRtTv8+Bjh7JIhQP4oQNd+P54aQlQheNG1jfqL37pwhx+9sRicne6auNayRAnhg4tnaTJiiVIXjKqHOuO4ieO9SDbovRbzQhQeXQwiW+M5KQ7lE4yk8NMxL93b3pBGmgj9sx4SQAre1IhSRI3GnXY5Tyu2R6ETx7ZVFB1MBPB378viEt5HaZDB1PDQFxbcu8IAmFnIze1+HFecPFjJxqdZJXQW2lhJt3h+/e4bD47DdrgeZItaKepm29Hu9VAlRtJRfed73wHP/VTP4XPfOYz+Mmf/Mmbeh0d61jHOtaxrRuZCvjsf/jhh7dE8XozOxEV+wvlMDdSBF8ppllPyvTVfAEXymUk/AGEfFpLdqUMo9GAH55WclT25O5vheOW63X879ExfGxwl8QxSoZHb9Zxap+Gi1Mm8uWGgPfTCS96u3xKM3QhmnEJGVVi0AV+t0vvtBsThxb1aFo03GR3EYYQj0eSb2ThGIgsJrBSGiVfTFwqV/GO3i7si0VwplgWf9q0nOvRMEuO5cYzjGMUXTYTk3bDZWWhJFF/KAhmNnnNPAd2cmqOg6mJMTw4OIRD+9a+d3yNnWvcWPxnoobdiezwIrsGk4X0Tei/rAVQYBJbukQ3WKjm+x7vy+LLY9Pi6y8AkdpjTMaIrZ/ZXbk7EpIYkQUBzhHFjqM+61Kjt+IhAcQEcCqdQNTvx9l8GRfKtYX9EwRD4ASP/VK+gMd7s9Idqmy8ZgiYKqW5fr4HIWFn4Rxj/PZYf5dIVa1nBxMxvFkqi5QQE5w0Nm/0hIPy2kaN8+psqSjsQ5QRkjF0HIyVStC6ujC0iRwJk7v3Z7qwPxZHzjLh93jRFw4j1OYrc1+839yULIxiC2Sxh/GO8luZ2FvuZ/PzBL4I+OUGgDYImmBh4u1gtxKospIxeUuQEDfGWywAcG5wvWDsq9h41isAcF34h//wHwog8tvf/vaqTMQd61jHOtax28+YxyJAcT3pwVtdo+FxuD6xOLqR+IvXshL4fq1mYoLmvzbuylISIE0/q2Q5eCVfFlCJ5vULwIRSPnSXyP4uNRu171YN42tjefSE3AZeV2qyiVnDxOWygUslP05lNWRDPszoDp6e0nEmZy6EDsvjFebu6237XlLIaf1Or5lgl1aZBlWyQjYpwemB2ZKVYa3H/deLTNAvDDDcjqZC+P60TwAa7cByOYSH+1Qxllv3UTGNOifdYS3ErdHkTUNAKQSxk7WSAAiCM1KaF/UiGWny+MD996977xgn05fg1p6LZxGZTaUbASgwFuV9Yo1GgczXs3t7ojjVHcHp2aowwZNZZWG4FxQOXA0DWjYUwIFUSOIBgizUYSTma9VmGq0mDnXLHh9KIRPR8OF9GanRSDlN6l4ehHzuRnmavzg/h19/aGjh3Biz8LzYDMx7uTcVQqRqSYMx7x3Z8n/mrt51JXxYg3n37hQ+d24WYyVTmnl5/tz/+/amlzQZr2fn8jqulS3simhuDZC5gkoJU4aD+w8c3RBQRVlPJICfO5wVdhVKW6WDfgzF3e9g+/NG1ef4PS6Xywsyl2T4aJeRoo+7PJ7i2P3AQEK2nTLOT8Uuwkb5mw3auNVAFYJzNtuwe7PA+JwbZLvhXFDNPeuB8VnvI1CFDcX/+l//6w5QZR27YyqSlNLZiG7grXSElG4yJ/pG2V9WcoRW6z5UNmUyiWsj5XcToVbDRqmuw+epiy6h+/Xxotn0wiAziodOwOIiKeaB6E5/cfIqHk71CRtLwXYZS2iv5xy8mnMpsq2Gd4m0j0uo3ErM8r+WZrcCh7SDSBR4RWkqLu5mkQWFk9Rq0YAxKcgknHKGyLBCR+FAIogfHEjiO1MlOad6O1Jmgetu6Ti1d0xyUR6MapjWbfk7k7t0FmZ0W8Aq0zpRrg1onhAmE2kMVuo42XpucvG9VDIEqcrE8qFkEEWrgatlUxzAg6mwoEzbC9ErARRUhyKdIjqz3xkr4bmpsoCE+iMa3jmYxMnu6xN6RBTTCRDKN6KzQwH8+iPD+O+vTQkDh1CQM5Pb0heUTsSWBBBHhCjuhscQaR0Z+ZYmIZG0PrCzr3WzWlqKnzyUxfv2ZVA2Hfz5uVk5Nsecn+F9ZiKeizVnLRlWlOUNG7NVE43GIpCIRYbdyRD6OfY1Gx/Yl0FfbPUFieNSseri+HzkQJewtnx/tCiOPoEv7xxO4Z7ejTsuSpaIyF+Zp/U6Zudmofl8iAajmNY3/1zgHDjZE9v04nf48OGFDkUWgNoLADdKK49Gp5zPJSaV2UWw2nOJ37UXpypCHUgA1dGuCO7vi8u9fqsZE6e8ZgYra13zrbLtUNE99dRT+PEf/3H8u3/378QR6ugfdqxjHevYW8fYgU4w+1af3TcjplG6yWTZ2Az7y/JzW6v7UCUDWcTXPF4pkjPuoRSQ2XD3wc4oxgKkvbasxaTfSna2VEZyelY68cjSohKzHl8DQ/0+DPWTEpjAksUAQoHf3d9cxkf1i5ssdHXWlx93OWxGhSK+tiTsnMkE3GLSicdSki/v7OuC1WzgXLGy5niqM3WTlotGSRv65AXLEX9N6Jxb8jT0/2cNC55GHfFYBj5PCIP1hjCS0Cj7Qnpy+nw9IU22a1VDAOHxgB97Y2GZo2QKVGyBikWSEh30JRVwRSVtZgwTz80WcK1mSLxwIB7Fg90pJAJL0xAca54r/XGC0Gn3ZpJyX7416Sb425PdPtVpqsbYQ7YdC/GAT64j4PGiKd2HLm05mNRlO2LL2Kn3t/YMIhYIiNTP2ZI73uo+CeNnvS4MN4w/rtZqOK4lJD4sWmShdKH/6rsaC/gF9ELACpl77s6s3YHI+I6RLxlYPrirD6/kC7hSccEyB9Mx3J1Oyf42amRCIb18WnOTwTVdR25+Htl0Gs1AQOSQujaR9ON1ZYJB2bbSiaYACgRcqwKA8l1vlMwo5yHlTNsp4FeygmXicrWAnGUg7PNjOJLAQHh1oNVbAajCYuBa13yrjDFKew6EBQDOi9HRUUnCk2FYJXrbY13OIeq4M64ho8rtAMLpWMc61rGObdwIZt9qTHKzmCLZTMy8II/H+Gsj/slq4PvVmolplMvJmfTD3CI5GzUna4Z4sOyzDHj5rw9eP1CwuQ+ug6rxdnE/9M//56VZ/NT+rICp5wxrAYT97JSJp6Zq4mvTlxXcfMvasSh8Xer/bSAVeW2ZC0RACX1hVetxG19V8zBgNlzWSAIAFIuKqiPwPHdFgvj47jS+NlrEZM2C3SrAKPb2lWo0jP3U0QhCH4pqmNVZB2oK0IKskbOGjaLVlFy9H2xe8KI3OoBsuYnH44v3Y7RqYbxqCdjhYCIk8dKlkil+/O6Yhr5wYEkhWjULKoAC45h2gALP7YXZKp6eqoj0UFLz4aHeGB7oiS4BPtDs1rhE/V4BcXD7B6f68ecX5/H0ZBk1uwEHjoCS3BqNy4RjS/zpETmnSwXDlahlXcbjNmxzv16CWgSIwpqeW1uhFM3fOtot1/YXF+ZlrHhztdZ95vgpqaGLhcUaDeV9iqwHtdVoeMxdsSD6ohpGSybeuyeNA5nVgSqsh7EeE/L78EB/XK71ydGiMNf3RgN4ZCCJRzcJ4qDME2c17x3jOPq6/H5lkilMt2v/btB4TofWAdso4/jTN+XGZ5iSkeLcYP6DAAo1LzbLFrhR43OETKackwSqrAba4P1+daaK07MVVKwG9qWCeKAvju7IjYmzbgZQhXXz2wGoslEwPueFAuO3M+O3ryXMmRGoQsb7f/Nv/s0NmTN3mt0xYJXtJBduRhfiZrsPV3KE1us+bO9co/G1vFVCra4vsF7Aw6SwgWYzhIDPD7NpCgtGwOfIgkfmlXrLMWByuGzbyNkurTFfDxDoYNvweAlDUc4Gz8f9srUTWtDP4MJFh0b+LFBZl8pESQUJolbe7HpKS7HD7od4NTwWz6Fq16EF3YNU7Lqgiomo5bU+1BPD4WQIv316HJO6m5BVnpCwe6s9LpMC4q8EkygWFz7wSVM32wKuuMDihmjPNzxezJl1fO1aAYdTITmnz16Yx4Wi0brWpnzG1UR3PT8W8z84nMLDfa7nxHNlhxm3gwcPLgAUFhkUEnipmcLrVY9QODMZfma+KhRsH9DT4jzw1PsifnzzagFn5nVxnCiN85G9adzXG0PBJLiogUQogFC9jsm622EpY9LqLFT6lGQAmahYcv7ciLgdivkxWjbhNDnHXGeWkjY/tD+DHz3WI87M6ZmKMJLwdujiLLkU3ew2ZbKUV0+Ku9mahb84N4uzc7rQB+YMW2jljnS5iFSO2ZxuIxvxixzRSsZx/ublPL43WlgAqxCY8r49abxzKCnJeDrGW3kOcF9E/nKxmZudRUALIJ3OoFI0Fzocb5Ytl5FSbDwsAPA51Q5Q2AmABY9B+TQWHgj4W23R5DPlz87OCuKa95iFBMo2vT5XE1mitxJg5XYHqmyWiu7pp5/Gl7/8Zbzvfe+Tjudf+ZVfwW/91m/h7/7dv/uWTLp3rGMd69jb3bgWK5DE7QZW2Wz34fLrao9p1gLe0+jbEqROhg27XsflalkYGJV7T8FF1B0EfX5Jxpltvv7CMZUMD4H2pRKGwxFJ2FECkxQkDjv2xPdx/fd2JkLFNOmerwvGZ/yiEpKMTZpL2D7aYSqLrCv87EIc1PqH7BtK9oVxB99DJg0agSMfG+wVWaAvj00J/fbCMZYlrZcnlgOMMbSAJMRljOoNTOhuV6U6O1+DEq5+OB6PAFNO50p4tCctzC7fnJwXUIPKjguVOAEerZihNxzEhwd6kKY2eostUPkn7RTKKmkT6sriJU8I5SYQ9PvEn39+roAJ3cB9XUmJ5QhMITPmU7MF5C1LAEiHE1G8q7dLgDfTho0GE4daAHXTgtMaDyWzpIaB3hz3x01onr3uvkP1Jkq8zy2gCgEvPP8fH94lrCgyp/PFhXkiLClyve71UwSH/0V9PpwrlvH8fEHAKow9eB8pA0Rwipqz9Jn3x1anBSbDzTNzOYxWa3JPKPXzUDaNd/V247Ee96KWJ703YmzmUEltw6giXyigK9uFpj8gsRnH9WZZu4wUwfiqADA2NiaxLhPAKtHLuGcn/FUy/TCxSzmytRg45kwdz8xPoOK4c23ebGJCr+BYogvHkm8tiZnbHaiyVgGAYHwyialYl2w8ZIRkcvqDH/ygSEc88cQTAlR5u0g5daxjHevYnWTbWdtvBvheSZnSV2Ez8UYLiMvPbb1mYrT8ccY+DD8oT0opSfqYLimJBxYcBBse+H1eeJlLJ5sjAddSkPag3nBZPFiTYDPqm0VdYiQ2HZPtvm67vjJN8v6tH1qkJyvw2itmdJctkoXB9hZpbwvsIjWklknMQ1CDACuabpOw+MIuCz5N+fVkBqEdSYWxJx7EZ16fwBsFQ85XxUkuGEb9ppoEFs+V+xTwS4vhpUSm/3JdQOusMbFGo3GcfH6UnQa+M1nBsXRY2F2+dC2P0/M1aWzmfhcBN+4FsebxUE8UPziYbMm1Lm0WJEBBgfGZc6WvOhrqxvM1v9xjfoZNAQTDzOkWMsGAC/QPB/DKbAXPTVcF6M460/uGknjnQFKafOeMOqKaHxEqHMhJNVpxYCu+9Xjg9bqxIZt5OR6sBxGo0h/2Y7pqSrzL2JVjFvR4cV9fDL9wqk+CxJGCgZGiK0XDRgWX+dGtcXEseEjeH0r7fPlSDi9NV+Q8S2Ydhl2X2hrnII01JdZKDqRXrtHwnJ+dKOOJq3lhymcjMptZWTO6uye6rRoN7w9HhKz39BN5LMYMEzVHAEA309plpJRiQjtboIp3uDEu3q5xnwTecw4StLEagI5j8lcjOXxvrCQ/E9hzqaDjtdkafu6u3k3JLt1q4/kzhiOgndI/tyNQZT0wPkE2Coz/3e9+F7/zO7+D97znPZIv+2f/7J8JWOXTn/50B6iyQeuAVW6wI7TV7sPl57a8+9BNpK380E8GQgLOKNklmI0a/N4WbZsACbxouCk+1Ot+cV4Uqpb/+r1M3NIhYGKSDlUDl6p5RDUvTLOBmu0IIoWHViVeF/XLzyn4imt8j9/XhFOvi841E3kTusvOQudGaO1aGWfpOGxRvxGh6w5eyzkTnXWeU0MokulQ1Rz3bw/1xJck9Mhq0RUKyGI+bzooWS4cmY6W+AItKhdF4626EYmMJfqU6GS5ptY+FYk34TahgK9Fr92QfVM/j/Rkb+R1ZIN+hPxeAV2QXizo9+JYOiT3iMCMr1wtYDCmYXAZa8hyCmUmbc6MTuG182UB5sx5fGh4yPoBQRT/4Zlpub5my3kRhGzr3tFBuFY08X873oOnx0uCkt2TDOJywYTHo/oOF4/LZC3HkElW0ugpBhUm4ks1EwfifhTqftG9P5CKYCgRFMmcr17KI+DzoDcSEGRvTzSIqyXX2XbvYRME8hLc8thgAn/w8qQAG9IhjpFPHNic7uDcfA2JoF+SqnREP3Ywi3CbtmG7ffnCHL56MSfFBd5jon///OysINIpSSRFhy3aPX1xnJku48pkHpmohlQqLWObCPlxLHvrNAHplDDxyI3fL+qv01km4wrnSXuH4lYWc+6DQBXOPSZ21wrOzs7T6amKBJEC8ND5pNTUi1NlPL6OfuXtYuzspPTPWwmosh4VHecHHdkvfOEL0gHANYbrDaWAfuAHfmBHHOaOdaxjHevYW8NuZCfiVroPl58b/Zn1ug8X3u/xoCcUxEilgnHLFDkdZQuAlWYD3np9AYy9fE+u6++CG0qWjRmPjrjPA91x3GSn3ys4evVBF1O/yJii0r6q85C+c384iJJjC5OgkgSSWKEVt3ALeTwwWp1vKlHcaNtPxXYkWU2/mAwbfeEQDsYXWfk4JinNj65QEL5mE1OGJX6XJBwXFIoW0r0LHj4BN9OGKQlTjon0CbSzvRBQ73f9ccY8wl5TrOJUJi5AFZ5XNqjJ565WdWFUIUCF94EgDErfPDE1h08O911335ZTKDNp881rk5iq6RIj1OlzedwE73zOFspyxiBkLynZhIQwDnXP9elZS471nr4unC1WEPf7JLYjI81y4+cIVooEXMkeXrvEdw2yT9YRsU0MxGKYb30v7klR2sbBH4+MyXnFW+wlyaBfrtdstbLyPJuUY2025P5wrL45NSuJeQKKGF+XbGCiZgpIn6Aq7q8/EsKJdHLFOV1zHHx1fErYZsjEwntDpp9508InhvqRpWTTFi2tkQknhEu5HDzVKrqzWfgCAZHx2ReLL1znzbblBQDGH6pDcWTk/8/ee4BJdlbX2rtyVec40z15RjOjHBCKSAIJCYQkJAEiGhDZ18bXYP+G5xoDNsa+YC425mJswIAvIFtggY0CykigAEhIgHIYaXLo6ekcKqf/efepr+dMq7qnQ3VX+hacp0cdqk746py191577R16HzHrhkaOhXSb9fX1qQgG4T2vMxNYl8+ND0k0k5LOoBOnA4QrL0yOyLrGFmnyV0dyl3NIMrtahCrFQPzqFuPzjLnxxhvl4x//uAqcLrjgAhXkX3HFFbp2LCwsLCzqp6HYxAxL0YAFb6A4SrMXjYLzeQ/jfj/XZmKAUyE8Fv53KJGYqr84cYPD0hGsBPOM+DFtrw78FO291FUK/CiflydHour85/N7ZCKZliz7NG08qYrsjxCsOFCOnMdh0KsO7nuiKUfkXai9mPjH6+LYCceoQ7xq2ZLXEZw4XBIDDcRTEtGxrLiy5+Xc7lZ1YzSA6zOKJZbLSDydk4GkU9eC8zNiiBKT2XGvBy7t/Cd8/EAs5YgsjICmEGiZoZ6hIGeH/oOc1j92jCdlpyepDig4LXaGvOpw8sJYUl/zuLawCn4m0jl58GBUx8yc0tlQVKCwdu1a3cgh7zs0KDe/OC7jyZSk2EdqNPD+XF6+v21YusL+qZqNxgQaR+Aun5H9kykZSeIOI3IwltIRNAMIUQoKGrNmtMaGg4rfq4KS0UT6iAkIE4mkrAmLJH0hHfPEWCREIc+MJOTDP9vpNBU0BNSlsqcpKGMpmoUdEQPvoP/2iJy7qll+8OyAPHJwQsebIkhJZfMqTnl+NK6jloghqbG8dmO79M7gfP9I34R8/5l+vV40ryJ6uXvXiB7zB07tUfHKQrG1LSy/7p+QHf3D0uITrXuMp51jOX6ODilLAWLd6QIFI7jGFcS48bC/CJzmC+4liNBZc4g2Zsvl90VTKhZqDHilLeR83vgc7x5PygP7xuStx80cD1USuJdy7qpJqDLbyGQMKohZaKK4+eabVYhPczjXlpjm4osvXtDaqDfUjFilEhO7pvuQLviFzJ7P5rOS8afE05iXRCYu3pxP9/VoRGplqFkfzKOZUbWTU72GeqVAKHKSVsFKRq2uC0LeqS49h5QgOoAQOGrZ8UxCE37hdE5C4QYZzUFBDoNcqY4XypMcdLKMZnqekhu/SCTgdKmtawxLLJ1XK2psvFHEQnAcopZXy2ae0Dzo8q5ktc6pyzljYEYRT7Q2ypldOKkc+aBCfLG5NSy/GZjUGYmQEFxS+uMp/Xv3qVMaVrCx46YOaXG+X5hpXiBB7pFE7g7IZDarFnA89FHycrAIXrBX4/UgRS2aaPar4vaZ4fhLxCrTwY0519QhqUBKLcCRjgRyiD+ykhY6ErOyvsErI2mH2DnjdwrWbmrtnZavPt4nYY/oWKNcYaSRUU1zuPwN5xwCksuytjJ6fCFV3UKCMzLp8Usw55fGoE9evqpZehsD8u9PHdJjhTwxeggBCtfl9JVNavumghdVOTvJ5iu2dEo44JddowlZ1RScIiub2rhmcX2gbulokK6GgNrFbZqBdIwnM/LA3jGJBLzSWZhzyH4hzrn1xSHZO55Qt5V1LWE5d02LbNDXnzuOieRkTWZI9oaaZMwTkfHxpLSG/TpmaLaRRMsJiDDiFDa1SS+48Rw4cEDna3JvMYlexCdHu0fE43EVqkCm6CI42u/vxjkoL0c4zfBZw07v+eF4VYhVakGoUgwQoSuvvFK+/vWvy2c+8xk5+eST5dZbb5W3v/3tmvR97WtfqwRptuS9hYWFhUVtYKncIhfafQjUQS+ZkgMev6SicWlJpTTBOltSF/CzU9vb5Mnh4SmhyvS4BSBQyM7YN1joLizgYDIlXmxaJS+jfhwm3fNJD48ozdOpV3g1d1MiiTtipCa/X3rCAbXfjmUdN8fc1AhU3tMRNCBEOey8QsLXqz/j30OptPR6vXJae6u8rKN1avSNweqGsL4GAv8T2pp1vMxoMiVjmUzBz9K8sIlZiBpcic9Cl56zFSKzI1wsD9ttIwg5FKcTzxGVw/EQxOM84ThZOuNXWwN+2R9LylAyLV3h4FGTNqnGSZHMpCaiEN3QBJHMiCbV46m09DSHtQGAeIUELWeAuJXz+eJ4XIYSBzVG6WyOqJuJcbwkZNPmh/zhGCjHCFeNYZ2RTZ58Ti3HY8GwhMUjK0JhOa+7TR44NKxuM8R0/C7jhVijiFLWNEZkTzSmCXcjgGrx++RN63rlt8Njmsyl4GAQavSqOGhlJKyJ+TUNEdna0vySa2nwwkRUBpJJFaWYZouIz6evcVdfvzQFnM/EhsZG2drcrA6bcwWvtnJiUnZFo+Jra5Nx4vh0WlZFGuSMjs6Kcdsj1l29erVubjceEpX890wWyjMBtxbmhsPt+dvZQO5hKBWXBn/giPPR6HNEPUPJRFWIVWpBqDIdPA8uu+wyefjhhzWWveGGGzTGRYz/Z3/2Z1pQ/B//43/IRz/60XLvqoWFhYXFEsPk6uAF7pHXiwV878UXX1Tn6tNOO23eOTJEEQfTCRkKeOVAdEK6C8LXo8VFOMKvbQjKQ0PDjru8ckznb4yjCKw9lnWcEadcRgolCw1XvM6YGH6BegpoySSlOxyWA+mXxkAvHbJz5H/5vT51bVkVCTrCimRGYlqjceoFRuxOk3HEL5JQJ3lnt/l9RvLwC8Q1NBVvao7Iyzqb5dSOw+J7gy0tEdk9mZB1zWHpacTJPq0xlLrS+13O/IUNUHeJuLiaEd4fdmZxvu/EXU4Nirjm4UOT2lBALMMuImIxo12pD4XDfnUQicbS8sRwvKhYxQ0EA96WDkkHUlqPIZYJUE/JMBIUp3iP+HJpCQSC6p7CvvnVaj+vNZuxZFZu2Dakgg5qH+w2zbsyNf3Ace0kxsgVnO+p/3Dew36ntiS5rMQ8PvF5fNLk8+qol7N7m7SZmffEXREBEY3ToDvsl5WNQXXCJ54z8elpKxu19vLV3x6QjnBAhSpgdTN1Ruf8HdvRoPWQ01Y0zdi8i0jnnl2jeq0OO3jQWJCVRw9OaJEKB09cbk7rapAtLaF5xSFdvpysiR6UmL9JkpEm2V9wVDm/t1m2zuDGX06BAhyVGosR4+PGw8gY01zM7xztHkFN+rHHHtN1imjjaPc9RCnkGdYVnFkBsW1ryCfbhg8LlSoZtSBUKQau+dve9jb5zne+o3WZ97znPXL77bfL//f//X8at1500UXyf/7P/9HajUVxWLHKEjmrUCSkMMoNjO7D+X7oYtlJOZTsk0QwLsEVPtkb2yEtgXbp8s1sa2vQl+yXjAxLxOc8xsN55nsjSkCVTEcb7iBOlo9HU8gX0Lnb2vWGo7ZR5Gri0CNeEnbMWG/ySSpzeE48BEYJkTO8UAUriFpUEOFiRgggxjMp4fF54YpuWd/YKN/f2SeZvEcFDCSZITrcaBFoBL0+fdAawQs3WG66qxsCOmue179ybbu0FSyop+O8Fc2ybzIpB+Npta5mniKq4cmMk8JVMXBhvxFrqJuIEjKjasVubEqm4rxoQYCDkwj70xbyyUP9UZ2NznkaS9NRV7DDK5DJgknLlPWaQ1zmZnkWSzmJd7ruQCblVdbG//ShpAMoHWeY2LSlm8rkhL7DA/G0MN3ZzDhU+7yCw4zOOCxcR9YGIDHb7MmoQGMo5SRpr97aqe4o//OuF/V1WkK4vDjnJJ52rhlWc1vaIzKWzMjBKOdc5D2n9Mjrt3SpmISzPl1Vi1CF7/3RGauPej4gWLjMdBeEKgYIZpihyJxHyNTu0YQ8eWhSrj2lV46boyMKbiUQgjefuEECnatkz3jCmWnZEZH2gnVhpWG6Gw+jfAwpQtELmXaPC5pOimKxmApV+J3jjjtuTqRxJpIDkSIIqAahCkU2kt50XdaKUAVA7hCrMNf905/+tF7PN73pTUr8OGZIEZ2qFhYWFhbVATMisVJimsV0H5LM+tnBAXl6dFxGmSo+GpWnM3vlkt4VsrF59q4SnDzu7T8osSOMqQ8LVhTw7QJjb9AYwaNOHcUAq2PcDEKJVMAv6XRGYwIzykc79ly/b8b8TD+evkRCWgJBed2qFfLk6Lg8NDiigm+gLiuML2LLZrWLknnugG429rvB55PecEhG0xnZ0NQgF/YUHz2CI+UZHa3y0OCoin2IyXBxJDFKstqwO933KYtrZwyMmWHuHJsTUU3FNFMJcOfosOr++cEhjWWiWYTyaY0POFe8J4lLTZKrA6djP471+FzA32JDjQjGvFaK/Sl83TE2KSmumzrUiBTCzMKl9Wh3oOOKk9HzqJbjeh2mLr/ul8clNHIELTlpy2fFHw5rQwEjhF7dQ1deWg4mkhp3ktgFWIhPZrPqqoIYZ1NTgzqd8N7Yer/vmHXSEgjInX2HtHP0iDXl9Wrcekxzk5zVdXSuNZwkiXx4lJS5fjiubJ9Iy+pGJ19wIBaTfbGYXNzTM7Wfs0EdQ557TsYGBuRtL3uZjHm9KqJq9PulNxxR15dKxHQ3HpKVxDN79uxRt0CSu+bnJH2n33v4PYpOL3vZy+bEdZ1RT4XEvwtmHS1k/FK5hConnHCC9PT0SK2A688Y0+9+97s6+gdRJOIVxpvSuXr33XdrbGNhYWFhUfsw+ToKuKUSq/BaNBPzTKGZmHzqfDCcTMgDh/bLYCIm4y0RuX3/TlnX1CLnd6+Wo1V7dk5G5dlJHMoPN+Xm8lnJ5nAS8RwhwIbT03yM4AKhgalFGOUKVIVyfTyfkwl/SCQPj85pTGNoNK+hjaSuJuIjn6A012Z0nOUZnU1y6ZpO+Y/tByURy2n9JJFzOC4uIdQJcEfBw6QwKFTHjvKP7lBAnTgQtl/U2y4bm4s3jp7S0SgvjMdVsMK+8fdw1Ewu44wbKuyfD38YRO16TJ4pZxHHTPKwo6Q6IBbiNCNuafR71Ml/27hTqCce1EkCuGW6Rq8aENPA9ecCHb+Upl6V17GgOgqJhnBEJSJyKJGVTDwmeZ1QAK/PTzmngHRBtML1RChDHUVrMa6RsVPjWgtOjRwlzdohT1ZWNQZlLOt8/xWrWuQ169vkK787oDWmloBPPIWcfMZLzJSTXeMp2dga1jFEfZOIbPJyyfo2deF/bCCmf9c1rb5CjYY195bjV6ij+mzgejNVwIhdDIiDD8XT+h69rWE5EEvLtrGEvG5tq5zRPTc3CeoV5LFP72yXyzZtkj2TKtGStU1BFeFUivh+OnDPMG483GvMmEucUoCp0SCsn35PM4213PeIaeZSr3BiFrcTrANtAMHMVCobcHrySzgpzjbuqBpx6NAhHftz+umny/e+9z293pdeeqmOAaLBguZiGsct6kCssliLuVImduk+fOLpJ2TFqi5ZvWa1M2twHvZ1mVxahSrpXFpC3rAks2mZGJ+QWDAmw4kRWdnUq8mbYq83lp6QZyd2FBKThQceqlfUu2rN5qhL6RrKpB2iw02u0eeXRC4riakkQE4fnj7m3Kl01ukERElMepQbID/X98BRpeDY4fHmdJ6ijvhxJXkdmUVenh4f027FJr9PusMoeJ156YAEIIlIZ8441svsp0+7ClsCfiVsvDvuIWwziVUQNbxrS7fOKNwbTert+9l8Qqkb8xSNZZxDBBzPmZB2ShbIC8foyUsQO+kMTjQOeUAwwd91h/yytikkTwzFdJ+xm4a8IPpgI5FNEtQ9LoW/g2DMBtbII4eicv/+cSGVyXnA8i6oOpXD4pmUxy95HdE09ZdTWTajdOa8QYY6gn59f+ZXFkbOK1RMlCtYAk7ZluclHA7Jhs5maU0gOvHIazd1qoMJrik4qhihCgj5PZLIetTlBEcZFMsNAa9saA1Lc8ivI3qw1FbLcgQzLlED53VV89wEXCiQSdQiasLJQ89pNi/9kyTuRda2hjQJzvlDbHLn9iHZ2hk5Yl+LAeJAsMIoFeYPgjUt1afk5KFuLJS5j5lxQdhhQ3ogQ8aKjv9GqMIsd457rvekze0RuX/vmAqSuKYAss594MQ5ks5KEKrQdbkQe/FKBYUJSNAf/MEfTAlVDDhOSB+bhYWFhUV9oJRukfCq5194QX63r0/aNh4rg02t0kFBPzh3Me8TI2Pyu6FR5cuMkpmIRuXAyKj818SEXNXdJutXrpxR0H9H3wHZGY3qv834HPe4HlNgXhkKy6FkSgvyzphLBBXZqYSk4y5IgJWVsN8vcWx700Q1JinsUYtruKrBlPjBuLUU3s+kmBEC3NN/SFaFI9IeDEh3KKgOHQOJpLph5AvxDMlVX+E1EDzAV/mqcUIuJ31xpwNuJry8s1UdTF4Yj2pClcQy+zmWdlxGpvYXIUkhwYmwn3hEY7Zc1nGt9Hh0zCpRHgnLaM4R2a9vjKglObEMiWNjFU13H+eP32/zkxh03od9oLMNEcdsYJzQrwdHZVc07sRRaUewYpLxgCRvDv4+YwE6Lw1+5tA7DpmMDIX/T4/Ytbni8J9MRZ/dLc3SGAzIoXhSTmprls0tjXLTnj59f7fQmjVDnMHxcu3oVuUcMTZnU2OTTKSz0hoMaix6MJ4Ut0+qWWMk3OeCiJ+rVBATTY2gSavVeWfQLx2FRB1CLcQquyYnZWtLy5y60ii+nHnmmZosLT6EqLLB+WhpadENC2Uaf4wYn5HK3CeMcIUEH13RiPTpxCMvMhcgLOqNNMr2yVEJ+xBQeR0b73RK3VW6Q+WzFp8LOBcIVRBy1JpQhdnuX/va1+Tee+/V43ODNXHNNdeUbf8sLCwsLJa3RmPcF0tVp8H14NHHfyvpiMiaUzdKzJ+WSB5R9txyg9l8Th4c2C8Dybg0+4PiDQQkNjkpz8TjEh0ZlfNWrJ5xlCFO5jfs2eeI6V32J+oSyMifnEe5bSO57rxXOSGxCbyXHHgMxUZBbkKOPujJ6d/gzIeoBME1FQcaU8m+U/9wvnP47Y4UreSP4LDbJxLy0KEx5cbrGkMqQNgxnlDHwcaAT7k/v6tC9rwjXEFwAU/GSZ7LTD3gUCI9o1gFx8E3b+iSp0ZjsmuC+o9HHRSVg1GjUV7s7CjO/Lgjejw+deLUClSe3HNeYwlGEsVxIcmTk3Yc7hmdelxbSJ4eiUmDzysTuazWaIiVaIjWwa04hRfqCSqez+Vlwxyc1J8fTcgDByckXhDE45YSKtRotAnY65GMx3fYyZJYxBVTGiAcGU7gSJ/VOIPz62qPLhy/4/pIrKeOOnDXQEDWdTSrwCSaysqFa1tVaLJ3IqVxnxGqAL/PKz5PTms0yUxWRlNZCfi92vhN3YQGbq4djcPUmnBuMeD1ubZNFKCOAmpdbNTIqNcAllN/zImvexoDOhoJDMTT8kDfhJzYHjnCqb0YEK2Tu4fjmnpFV6T6RAzUmKm5sLG2qRGbeIYaFPcKE9OQu+GYiXPm01i7uT2szeSMlGLMFucKcRNTB87ubT6i/lapQhUmBtSaUAWR0lVXXaXul0aoYsA1OvbYY3WzqBOxymLgnqG+WJUe3Yd7Du6SjSevlWCIuXyTEs9FVXTS7Gub0+tHsxOSzqUkIEF98LS1teqNP56KSjqbmlLccWNjVpohRYlsQrZNbhe/+lfjY3JYtctXvxdlLg8vv7yic5PcP7BfxtNJyXkclWnY65OMN69q1mBhTqKTYc1JJgdx8miCeijlPPghKzz4IVaOZTbJYF7LmadouhSdrjNUsU4y8tnxccl5SKR6dQY5yT+srfldEqzYKPObiF5IhkLSDDJZXEIQlzgPOW7GL07Edb4eD8ktLQ36gIWsvKrXSe49ORyTZ0cTsrklKNvGk4WOS+f4eBXO1+aWkB7TC0PjMiZeFaqsbQipKAbihZiF/TiuLSKXrm2Vm3aNaEK3tyEgeydTmgCGVCgnKdi4MScdZSqq2U0tYTnpKPZy9x+YkFt2DjvzIwNeGU/nJJ7DOu5wYhfQVYnaGOLqXFzj/lLQ4uZEOny8t0MMtMuz4O4yJchB2OJ1bAwdikSS2gkIhhNp2TeRlNXNIXlmKCbrW4L6oCNB7IaZf/nKta2yazypyVzOPe/570/1y1MDUXnHCd1qP7d/IqlfOWdcK3D+2rklFvm747sa5NG+CV1zkYBPhuNpPf7exqC+J2DfOyIBfS/mJJqRQcWwd/8B+fVTz8spJxwna9bgP1Mb4L5grLO5n6FShRTt3btXE9mcIxK8CFvmg81tYblgbauOYxpJJKYcjxgB9bIVlStWqWWhCtaCCFWuvfZa+exnP1uxCnMLCwsLi+XlATiuLRYIXn7zxJPyQDQr0dZePJRFJgbkgX6fXL6mW45rm1s34lMjsGonSenx+yUcCUtbOiOH4nF5qn9Q9mzbpoVIM/8Z9wRismfHJuS3Q469sD7dnDBkKsFrGOmKcFgu6FohP96333FnFEdYjXvJhBHtaHdhXjwFdw+iCn6OoIVIiWQviOezyqWLPk4LwhU4p/EoGU2ltCMRvgWXJn4ZTaXVdURnjvu8EvEFVNyAQAE3FfezGn7uduoYTqZkdzSu318VCcmqiGMtjvsKG/iv3Qf0XCJK3xdLODHYlE03ghivrG1skMlEQnYzg97rk6ZgQJPNh2JJyeVxZ/FpnIQQZmUkJLfs7dfRNh5PWt1F1BGyENNg0sm/EZ/Au/n36R2tWuifCQhfbtrbL3ujcY3rSDawnyS7+ffhMa/O+SQ+PGK8rOt3sqmUOubw3rlCzGl+hythBtNqLKPXwXGc0SRsXmQiltRrhD0551fXYRFrdNYZgpXzVnTI3QcGtHjh93jl+YlJ2R2NycW93XJSW4scjA+o0Inzz5oifm0PBtWNZS7Y3NQojw+PqrCpLehYgTPelniqI3Q4UUfszD4eTCRmFatQxHn0iSckmkrJWaefrkKVWkE4HNZmAjaO03QokuTNFD53jMLknjEfHN/SKWNpZ+SPkTbxOT2lrVtCxou+goUqJ510kia/awVcx6985Svy5S9/We666y6N1ywsLCwsLErVVDw6OioPP/NbyfQExRcJyI74QfEkDkpHoEVOaTtGneaPhv5ETHlDsz+gOenWllZpyTOyPi4D6bQ8/szT4slkNQ9LPMNXYjKc827av1sSOcfVT51S1BOkAA+CB+IGn7x2VZc8OxaVbWNx5Zha98C9naZexBc+YpTDQnwcQxCnI5o/lMiosINxpeg3ioklHDg8mVxuhN8tCLifHo0q91QnEvFIe8ivQnFEOvwc50HAy8KBGSFjYNzq2FeA0AKx+qF4SmOOzc0RjZEQmpzZ1axbXyyldZy1jSHZE01OxWxm/BEinmOaEYr7ZM/IuAxlEAD4pKchqKN8RpJZIj6NR9Y3BeU1a1pl25gzxnNVQ1B2TSZ1bBHXyrRxez2OMH0slZXJdE66I/6jun08N5qQ/9w+pHUdmqdTuayOkE0TMpoLkc9LkPGffN8xj5y6Rs47O7/TkE/LmMejjiTsp3GtNOOWTKOEEcHwTepQARqRqdFMEsd4ZddYQoUv/Jta1RFXV9UzHjmhMyINAZ/89lBUAh6ndnTz9hF5fCAmHzhphbquPD8c00ZvmpIROETTOblgTYtep6OBOOvsVc1y6/ZhbVqmfsV10ebWsF86Gg7HNKwlakS4rBwzS3Pw8MiI/OJ3T8raNWtly+b5OblWMkwNhm3Lli3qHGPE+Lhs8HNiHtxr51Ov4DN42cYOuXX7kOyeSDpCJ6/I1o6IXLCmtSqEKjQc1JJQhcbxq6++Wq/l97//fZ16YLEwVG5EXmXzEM3sw77+A7L59I36OjiSmIdtIh+XQC4oEd/hhyGkhP/xkOXBaV4nnU0fViIXnlj8MxgMSSjokeNeeZISLqyFzHznlg0tkm4l6YptG7PiHCGCJlEL76fJO49fXtZ2jKxr6JBT2jLy0NA+feCaxB0yEa/abhSg78+In7SE8kF5Xc8a+dGe/c7YIIQPBeUoBIaOpLF0Sl1WVCGc96iyl4edkq2CEGUinZbGgFcFB1lIlz8vTTnEGU73H8m7UzubZSiRkadGoo5Vs8+r6tPhZEbJB8Ttpt0D8tvhCXXwICEM4SLZ+ob13bKyoL5EbLJ9IqYW1OM6x9FxjFFLa9fxTaTSMhmdlCaES36/JiwhNRubw3LmikY5rTOiYhXzwExkHeKDywRJcd4HJSpC0ZM7ItIbCcj2Meahi5y5skUuXMVDf+YHD04j9+13EvrMMYR47BxPqNpV1dNer4ymUFg7a8QkzY+koAiIIA7O7zRJRlZkUzLscZJ4uhanFqwjNGn15yWRz0pKfCpoQWk7OhLXY+L8f+OxPjl3dbOc0t0oDx0onGu/cy2wfuOctDcE5P5947K2OTQ17ofjebx/Us7oaZb3ndor1z/VLwcmk4VRQn55zZZOOWf17J2CU0fl8cjbT1yhr/nCcFyJDgSYzs5102Yfot9h343rTzHc9vh2ueOFAclFVsrDz8fkhOE+uXJr16zilmcGo3Lf7lHZO5FUS7zz1rTqrMdKJlDsW3Nzs264qyDaMBbZv/71r1W5a6zoZuoCcL/WZRvb5diOiLwwEtfzDMGFCFXqHMRaFqrs3LlThSpvfvOb5Qtf+EJNHZuFhYVFvWOxbpF0Dy4GOBrw/HxOwjIeadGRlCahRgfV7fsGZU1jeGpUJUDkADejw84425GM4PuOW4eJaZj97ZdgNiir1/TKac0narKGmIY4KtDYKI81NssQziCHM7niY8zmNMHKqkhE3r1xowoiHhkelr2xmHJa3ovk6pQbixFpI6Tg+8xOb25Wt75Hh4cliWgFZ8TCu7X4/Zr8NeOEzJxv4iv4OL+P40dbMKiCFZK7Q4mExjmMHZ1IOeM4w16/rGsMy0ltrfLAoSEVNhiBgiO+ENna0qTCnIcHRmRvLD4liMEB4vjWJnl1b/eU0HzXZExnvOOuQnLWW5j94+6YRCA/GYvK5MSktDY0SrKQyEV4cWZXm7y8s016Iof5+vaJqB474oyeMMJ94rGMHj8212d1t8loKqNjeBC2nNbeIiceRaj04kRU9scS0hkKqNsNiXnOU7ZwbIxgZTKqc53Mnh+OaMx3OG4dsZrNSmMmrfGZIzUy/piH/5LEemM2JUlfYGrk6QHEPCpC8cgzY5Mq7nnlynaNGRllROclf8+xcg4QkvxueFzFQpwjM46L6/bLgWF518Y1MtmVkcdGxmUw6Yw9xS0IIctcErugKxySi3q6dT0gnjHOPiTj2aZjtrE0CJJueeYZGUSc1dmpn6GTWlvlBOaiz/B3CKmeHBmT58cn9Lqsb2yQU9tbjxDKVGquhuIPMQuJ3QMHDqhgo7+/X3bs2KEJYPe4oNmAu+wru9fK/tiEjinms7Y60iQtgcp116xlocrXv/51jWXuuOMO6wZpYWFhYVHS0abwhaeefVpkc7P4gh4JeMn5Os7ng6kx2T65X05o3XBEjSaRxa0Rzh+YelbF1XUvJz4ftRmHY+k4nkBQfH6/vPzs40Xiial4hmJspqtDng55JZHPCTRRuS1NyFruwdmtMFLH65FXreyUi3o7pTcSkn3RPkcg7tqnsH+a+yPuKZ60BLx+eeembrlux6CMJNOSz+TVEZ/fhqd2hgPajJpx82svjoDqi68OJjjZw4UBHHgwoQM7VZRCTKBj6P1+ObG9QQX+D/aP6XgguC/8eSiZVrcOxor+rG9YfnVoTEXuCGeIA1qDfrlsdZdsbnH4Ga+5bTyqQh5tihZqK4fHIJmQkbpRZnJcArm8NIUiU+d9RSQgl6xqk5d3NWnDsuHK1I70mvi9sr4pJIOJtNY3YNfrm0NyUnuDbBtL6rG9vLtBLuhpls6C+0cxcN1xBKHO0xMJKG9OZpP637xPJOiVdMZxvD88vpf1cTg203VcaGCgqzicz0hvZlLGpOElXF2bBfS8i+Q8WUn7AnpOqIM8M4wLjfOa//HcoPx2ICpn9DTJrTtGJJ7GEcV5rWiGxnOPbG6LyE/3jElXxK8NC3ptc3nZPZ6QXx2YkHeduEKuf+aQ7BhNSCqR0frT+Wta5HWbOub82XrNxg4ZjmfksUOT6sQPmkJ+2dzdeISrB7GeU6OZ+bUe23tIbt52QFKRNfJENCKPvzgsl6xukdWzTCfYO56U+/aOyraRuNalzuptlvPXtFZsfcKAOGXdunUa1zz66KNar6DZ4LHHHtO8vqnRdHR0HLU+zTGvaQ5qk3kyk1dHmxO7GvUzUImoZaEKDqdvfOMb9brecMMNNXVs5UDNiFUWk9hd7DxECBRdPlg7nXTGCZLxp3SMDDShsHM6KgeXlaA3JJ68V2K5CYnlogWxikci3kZp9DZLDvWnTlV37NkQsgDt2stnpdHXrPtL8ZntuOOOk/7RftmR26W/Y8bAAIgByVSsqkHQE5SLuk+TJr/TdXVSS7cSn2fHByWRy6ildkoySjgYG6O77krSrm1olk1NrfLmtV752aF+6UvE9Ye8x8pwWInLilxI9sXikvDkxJf36Uw/SB0PKAgOSdCokh2P9EtaDrqUoBCNN67rka3NjUp8SIyS5N4fpRPQ2RmIyXFtDfKDnf1yIJYsdC86tnk9gYD0J1Jy+95BuXIdquS4/OLQmFrDJfNZ2R9P6/kh+cqZxV6vNeDTJCxJVZ83qFZ253Q1yevXtutxs09uq2gDnFh+0T8pbfm8/k5z0KtqWxLUV6xvl+PbI6qW5bzNxX6rP55WRSokz5yLdc0hnS8YyzqOP4zYaQ/5VPGq687rEt1AchllxHX2eyXt98mJna1yfodPtj+JW4shux7x+ryqMuZcIE7a2t0s+ybSKj4hxd8e9klPU0gFRRQlfrV/Qt52XJf0x9KyB2caiAijpAI++cPTV8lzQ05y3SS+AQ9H9u3Zoai8d3WvfOK89bJ9JK5Ea11rSNpdSuy5gN//yJlrZMdoXAkRxPdbvzsgTwxE9X3bw34VkYzE03L2mhZV804Hn4+7Hn9Rfvj8iIQbW6S7MaxuMb/aNyZDsbT88VlrjjgGAxxdvvvkQV1HXIOBaFqeH2I/0vK6Yzql0oGwDTcmug/Xr18/dc8aHh7W5KcRvJlxQXwt9mBlDR7TFtGt0mHGHaFQxkqvlsQce/bskSuuuEI3uhBr6dgsLCwsLMqb2DWcobOrW8akUeKxpIzh0FGYnR0sjOz8zeCYnL2iTXnivQeGZeckc7pFR3y+qrdDNjaFNSGBAOKFiag0B8wITmfECbFPZyiowlnjnsCz+4Ydu2QgHhePse9TIGrwaIJXrRw9Iie3tMob162bSlC+ad0aubvvoAo+nHE+iC6cGdfFpjaf192hriyIJ343PKKjX3ia4pLRg6MJSdJUWvYnEjoexyR4iTtIuLUGnM5KvtsY8MuLExNTs+B5nQ2NjXL12tXSFXJGnnIoD/QPqciB4AmBC2KUA/GEPDM24SSYC+IExxnGI0+OjquIYHVDWB7sH5I9sYSK7xmLw/7y/g0Bv+4Te0IchmPHznhGQuGIdAWDclVPp6xrbiwkPw+L7g1WhkPqNkJHI8fENUFkMphMSVcoJJetWqH7TvKa95tLvI2LiTPS1eEnNBBwTCOp1FQHJ6IevqcW1NoFytghR4bCWzjW3XnxBQISCobkohWt8vjAsIzF0hLIZTVO1SQvr6GxUE66wyHJBYMykMDx0lmvK0IBaeMaiMhgKi2/HhyX161eIXfsP6Tr2BGLIHwKyQUru+SmfQfV8fNwIQIhiV/GUhnpTyTlnO4OObGtRUcnIVxa1RCeVVBSDFtbmtX9Zl80ruWEwURS7j80qNbodFDSIRvxOWth7QzCi2QyKf/11FMyGAhIV3Oz7gtJ/18NDuo+n1hkLA7n884D/fLixOTUOvvtyKiO2nrDmlUVL1jRsWTPP6+FoLPOOksaG50GIMR5pkMR10GSwGb8KSKWYmsWgcrGpuqYFV7LQpV/+7d/U3dIZrefc8455d4lCwsLC4sSYrGNfYsZbcozBk5A7mz9SZtle65fMrm0xLPJKZEz2/74oKyOdEuzPyJ9yWHZFe2TeIamU8aXtsuWptXiy3tVyB7y+rSuEHGV0aijtPiD0hQIiC8Y0rGEuCcMj4/Ld/bvkEQu6wjLC5zYEVPkJJnxqcM9Mcb7Nm+Qjc0Opzm2tVHevGGlij6oUzhcOaV1lYL3/RENq10Rr5zQ0SQfCQflhp0D8sJ4XN8v4vXIqsaQCkVo9t07mZCxNKM8cQdxBPOMocHhkbw+LulEO4yNGU45Dc+8G3z89as75awVTvMCzvYjqYy6mPB6hGXUMM7oapGb9w7I3mhChSzsdybv0VEwE4VGh7duWKkxwr19I9qojOhjuNCozX44x+rsE7Ua+LxPfNIQ9MvWloi8YV1XocblnXLad2NtU0ieGI6pKINGYf47nc3JYDIjF69ulVesbHbG6xScZY4GGpQPxmm0duInOPq65qD0RVPqzMIqagz5tKYUTeU0Vgr5OYseyXrzktNmZsftBqT8IVnf5JdrNzXIp38zqCNXmWqQ93i1AYEmDZ1qlM/K1q5m6U/m1DE+maZJwquu8pxrztHTQzG5alOHnNLdIE8NxdWV34nTPfp9E283upwdnH3xylNDMbliU4f8z9NXyW4c8lNZHSPTM4swpBio+Vx78kp59USb1q0a/B65edeYPDMYkxcHY1qTWdUSklheZFVDYEbhydN7+uT6FwZFwq2yopFaQ162jSbUPee9WzulLfTS2g7uMl9/rE/HKnFuhuIZ2TmWkD0TSXn3CSsquqnYxC7UK2gaPuGEE3R/yZuYcUHcu2geco8LorZRDKuaQrpVOjg+6uY4y9SaUIWJBm9605u0UfzHP/7xjNfKog7FKosBxT62hSR3TfchROrcc8+VhDcmmXzSNRHQIUr8L5VPykhmUJO5mXxKb0iIUUiwTWbHJZPLSqM0S6OvSSZzjSpm4eHsdJ5l1Bquxec4IxjwGrFQXDxJXEycOdjpvEPo9CFMYlHzvV45sWXTlFBFj9vjkdPaeuTY5i4ZTydkx+5d8qQv4SQXlVw4KlGdpYjNVGFG/abmZt0eHhyQR4eHpDt02N2C5CujgjrEI9E0iUGHDJIApZuMf6ezWdmdyqijC1Z1ztxEZglm5anRUTm13XHcoDvz9zb1yM6JuBImkqzrmkLy79sPymRhriFJZgQaJCqHUmkVojwxEpWdkwkld5CYNQ1hJWkvjMVVZYyy2SdO92Mqy7xASIQzf539QAWM8MM9fmg6XtHTLNvGEtIXTauAAUKE0hZXlS2tzo2pmMhlJkDIIA8ka3HFATyUST6SIL1wdYv8fO+YkpNIs2Mb+OJIQkZSWekO41yDjTSdkCLNPq8KCt51fLeKODpenFSrOeYRkvxP57JqGQh8Pr+Sk2M7G/Q190dTsqrp8EMDYoZKFsu5r166Rd1Ftg3HdTbepZs6pKshKNtG9s9wVIVEcoEY8R6LAaKfLR0NSjC//XifEmnOVyKbUbs5xv+8vKdJLt/cOWOw8vOdwxJqbJH17QWHo4BDslAUPzsYk1NXHtktynX9yYtD6iiDYlXXeURkMJaWu3eOyLlrWtVdp1KBIAWFLgHT2rVrp75vxoixcW6YDQkpYv474hWCLPNzkwyuFtSyUIXOEEQqF198sfzzP/9zTR2bhYWFhUV5xSo8Y+AAcIZVa9fKf/52u8Qyee3QgtMiQMDVYzIjcuf+QXl0cFwTkiTDcE6EpzH65b93HZQ3r+tW95XTO1tlfzyh4odG7LzpTsxkZX1TRDZoQurIfd+TJt7xSjjITHLH4cOkZeG65PvaAgG5eu3aI0QCiEzesm6tDKVSMhaNyV3bt8tEAEfLgnC+0PGmHYw6Bz6gz9DX9vbIq1d0y3d27tbkLfGKASKU9lxAOoJBFeLzc8T0vBfJXmeGe052TU4q33V6NR1RwIF4XCbSKXXeAMe3NqvoZPdkXJPDPeGwdgzeur+/4HaI1Tf8Pq/uKDrGKJ2Rn+zrVw7Nee8KMhoopPvfn0T4QUCZ1fnkxD9jyZS6yDD2B9cY4rixTEbFFjOBxDNjfX45MKLXyDjHqL1zd9uU4J73nCt0PGfBlURjXY/Hcbz0MN4orOIYXC+7Q8GCy0xW7cIJf3pCIY3n6Cjl+nL9TutokZev6BCPzycv7DqoI3JDhaQeMQ3RdNAjEmfdiEfH9eyJxjV5GXaNdWnTsbMpWdPQJX96wiZ5ZJDO0Iysa2qQU9qaZYTu0Ze4VhY6UbHpLpwD1jrbYsBxbWlpkoFEUn52cEgT4o6bj1MoaA54tct2TRGxCrmH+373OxlrbJSe5maJFBptcP7h+J4ZG5Njm5unxEIGjDPaMRnVxgx+F/CZHkyl5PGRMXV8qVSwlp555hm1Vz7zzDOPGHfEv4lx2ChqmXFBjz/+uP7cdCgixl+og265gDCHxG4tClWuu+46+Yu/+Au55ZZb5Pzzzy/3LllYWFhY1EhMAxdA5EkBESHksHdSEsNJratQBwDwd8Z/JlJR+dXQsxL0+tU1A9EAjio09e6NHZJYOi6nNh8j7cGwbGxqkefHR7R+QN0D/grPPaG1U2MXN3ZlkpJGmOL1i9fvjMLUkZVaf1IZvvg9Pjm3q2NKqAJ4vdM7HRdDhB0D/f1yw2BMAl6fOjgi4jCmhLwWQhTQ2xCUj564Wp4YmpT/3j0o3eHAFIeHv7aFAhrDIBDfF0tqXMRYG/g5v6XxXD4no9RCvDBrp3kabvrQ4Lhc2OsIfIkPrl7XJXujSR0ThDjimKaw3L4fx8C0Nl8TS3B+iJv4Ho4re6IJ+cbz+2QcIYuIxkTUX7aPxySuOX3nnGp9x+PUjIgDOsJBFdbgdslK6J4l935Ke4M8MRSVPdGUE4sUnCzXNgbl1A6HT8+lkdiA80AMTFOyAfHfRpqK4xl5ZU+TPDoQE68nL+tbHF69P5qWvlhaOsJeCeRFXeER5lNbWtUYlDdv6ZRN7RHZ1B6T54bjGq/RSp3J5tR1EgEVHB1X/d6GgGxpCenvrW4MTNXcqHERlz01GJNPnbVGHhuMyu8OOYL3V61pkbXNYblt54guEhOLuWHiZ9YFbumLAa+9tiWsG+Nodo3EVVxDzE6N5sBEUk5Y2SyvW1vc8WT//v1y7wsHRCLdsqH1sHsOYqMD0bQ8NZKQ83te6uh5964RbWKeqtFok0lWHu2blPNXt8imCm6wxVWEegUOHMcee+zU/pOXQJzCtnXrVv094hlcJBHrNzU1TcU0jFCudEFOvQhVuE443jPy56abbqqpkbzlRHVF7BVGhEz3ITcL1HDcXBLZqBlKp8kzR6hiHm7OHJYM5tAecYQomswjOZmRRD4mDV4sswLSHeyV0fSQRHMT+lo4r7T6OyTie2nSKpMz8/0cm+2A+CWTZ4q3o731cFiH0rJ3505JrojqTZEC9JTABKvkZ1+QdCwmgVUhTVzRcRTUtKFzY4G4NPiPdMPY0twiz4yPyXgmLS2Fnyl5kryc090tayKNctPeA5o4hhiRaIXQMQ96KOV0pLkTaclcVl6YmFSxiLEW54G2pfXwMe+eRKDhCFcQcejkeA+ag7w6X7DxYETEAKlBddoXT8raxrCSA1xaIByrG0ISTSTkoHYm+qQrElCChxAC8vbboUl5Zc/Mc956GgLy3mO75BcHJ+WFsYQShtM6G+TcnqYF2Y4xL3FLa0SJhhl7xDGMJDOytT0iV2xodx6+/ZMynHTGNkUCPlWrMoMQFS6uM4xpObe3WY5pj0yRkGu2dMp1zx7SRCjrj3n1vMcrugJynHdCxsYHZI0nLPcl2ySvNnzT4dHzwrW6eGOHXLzxyJ+e3N0kvzs4OWUFCKKprBLBE48yA3IhYLYibicrG4Oypjkk44h0so6rzZqWsKyYptg1Cc7BoWHJNq6UlmnJW8YaseYHopi2H4lD0ZQMxNLSFj7cZQkQAR2MpmT3WEJOWTG7HXq5QJchQRruS6tWrZrx97RrtKVFt2OOOUaT4JAi/n779u0q+jCkiA7FShZI1LJQ5eDBgypUOe+88+Rf//VfpxzBLCwsLCwsDCjGzrcL0d19eNppp+nzHgEK3BJOT3JU53AX3PzYGNvJeBQcQVaG6ShEMO904JFc/d3whKxtiqiDxOWrV8ojQyPaIYeIHgHL2V3tLymm54zrSoFvITTw5Bxhsv6POemZjGwaGpZnU+kp9wQzDxg+44vFZO8Tj6szTB8W2ggeXO9DHOIkQw8/Q/0+n5zY2iIPDzESyBktCi8cTTO2BxHMGnWHeWBgQL9P7MGxO/uEI0hexQeGJ6pdeDYrvxockmOam6fepyUQkJPbD8dSP+0b11jFJE6d6a+OG+dgkkSyM8KG8JRjH05hS+6R7khIYypG2bQEA9Ie8Mu+ycnC7/tkRSSk+4PYhbE2iDdoJJgJ53S3aYPAkyMTesxrGhpVILKpeWEi82OaG+SRwVFtGqBZgKOLatLZq9eeka2cv4FkSs8lkSOOLgh0iF5XhAPSHAjICa1Nclxbk45OAqd2tMijQ+OycyKm4nziGfoIW/0euSDkkeT4sOQTcWlqa5cd3rDkfUd2mRXGyuv14rq+ZtWR4gwcTRAXIUxCOGTGAI2l0tIeCqo1e6nx6NCovv66hgaNoenA5TPA3nIdpluEkxCjSSbQ3i7BUOiIdQy47qwN1l/ztM/XwThjkWiKOPw3RiSFkKVSQR4CER32ymecccas3Wrc/xB1sOm1K3QoEs+QJHV3KFZ6MtEIVU4++WTN3dQKuC4/+MEP5GMf+5jceOONcuGFF5Z7lywsLCwslgiGSy0EPNPnW6PBsUB5UiCgQhWKoocmxwsjdzwqeIbLp/J43FOTwTnQJ0Opcf37bn+LjgDiD2gsHk5PyGg2Kl3+VjmrY6U0+Pzy4uSYCjEQsBzf0i6bm15aN4hmHXcSHbaDEyJjWgtjR/XYJC/dsag07RqTF2JR5SU0DJpYQkUS+3bLeF+fNLf3yhjjXRgTWhBh5HM49+OccSQP3NraoKNthgoiEXgebii4CZ7T3SIX9rbKD3Yckl2TCRWu4Hw+nCWP75XhWFrjNCP0ABwn7vXPj8fl+DYnt89rrm8K6wbUDT+WVCEH/zZOmggqEIscjCU1hkznvVpXyHlEDiaSsrYhLKsbw7JrMq6v2YuwPZuRfXEau73SrK4wIV0//Ym0PDwwJlevm1lYzbl4xzFd8tChSXlmlJG4eTm7u0nOXtH0kvM0FxBzUeO59wDNGTQseJVHDySzsjLil9esaVU3+p/tn5ADMVxwnDWGOAbhCOKT1ohf1jQG5ZyVTXJce2Tq+r1lS6f802N9Mp5yBE/ENIheTmjxyfmRhIyMDUineGSHv1NyOWZIHVnjYJnQWEu++/QVzbodsQ7aw3LPHo/j3l8Q+LAOcHM5dQlqNEPxtNyze0wbBXoaIzKRzkkqk9PjC+Vyss7VEG1AoyyjPIPdW6QhfaR7J+uB/6bpejo47hdG4jqNwP03TQGvCmR2jiUrVqyCgI56RW9vrzYHzSY4oWbLtmHDBq1zGBdJ7m9cdxPPMC6okmsDtSxU4Xnz9re/XZ9Tt99+uwqKLEoDK1ZZoMWcu/uQ0RpTargpAYojUnEokAOdjM3/81iD8dO8Olyo2lEdVrA1hoxhLe2XruBK6ch362+a1y2GBl+jDKWHXR1sXmEiekYyEvKG5ZzesyTXndObG4mPnTt3aqKHxAeEiAQON4xzzzpLkkM7ZVds1JnHqEZwDpEjYXxs82FiwHv5vDk5ubVJnhybUEGKLiivR7Y2t8jxza2a3H7TutXyu5FR2T5BEjUnW5ob1cqbLsvp6mPeD/IynEoqkfvN0IjsjsZV0UpH4ss6Dtv1apenx6Okh+66vKtrksQdiWYzrw9ihpK5LejXuYW8BzcVtdz2BvR3+Znug5dZeh7ZMZ6YVawCehqC8tq1rXLR6hZpC/pmnA8+F3Ddrj6mXS3ydk8kJZ93ZkOuawnJmzd3aNfk24/tlhM6G+TZoZgKco5tj8hpKxrV9YNj7QjTKffS4vylG9slEvDKbdsH5eBYTJoifnnd5hVy6cYO/X0efHShbX/xkDw3mpP+ZFQawo41e97jV9KFYGYmnLWqWZ4cmFTBCg5AnsI6OGd1s5y2BEKOHSPxgqWd85DD3QUE42l1fSn2YCS5e/ZZZ8ojvz2kAhPcUdxkh302JM4NHa3kcRLbbrDWuN7FxgZVUoLzxBNPlJ6ennn9LfcG06HIQ9d0KPJ6nE93h6IpEFWSUIXkM4ndWhKqcP6vvPJKednLXqaW2ZVMRi0sLCwsyjvadD6JXWIfnu84rJHUNUE2ySwcMBAiI+Bgj4xYhbGhah+dc4r/iMfpfDNPXcToBxPpqePY0NQg6xsjysfVgniG5zPiFYQJiBgChZgGy22v4KCRk/NWdMqlvb2a6IHn7Nq1S2MxkjTENHAURDd0I72sp0defP4FSeRyEkZ4UOBuRGVbprlOIGBZ3RCR1bGI9OGIknEEOYwvfdWKbrVQPq2jTQUfj4+MykAioaL5zeoy6YxdcV8z/bfHo6N6VDA9Ni5PjY3pecKN8pT2VjmmucnpjFSBj7N/KoQpjBzSBKTHo6INdXwkua723Gl1SmFkSyKeVFfO4fGopOjcZLxOwD8lYGAfGTvEqKHZxCrs73GtTdrlyLXhui8GCD4u6umS+6bGHjnH+PKOFhWgcFxvXd8rz45NqrCJ/Ty2tUnFIByfM2bpSJE4YN/euXGV/PzgoDw+MCLJXFrWtTTLxWtXqkCGcw3fP3jokAQGJ6Q/kVCBejgUkkAwIBNZukj90hspLnbgfV+5slNu3deva9C5Jo6TyoUrO18irlos2N9dkzEV+nPtIl6fRCib4HaSTMnBeFLWNR4WDCHWIEG5evVqaVy9WnYcOKCfSVxKDRC8cK6ni1iAaaaY3mXpNKl4Kj7BiVCF2HSu4BgR2bORr+E1TKJ327ZtmgA2MY27QFQJqFWhCvjv//5v+ehHP6rz3C+55JJy746FhYWFRYVivjEN7ms0EyNYPf7446fygdQdcCbBTYWmXji2GXND7YTGYa3G5PMSy6akxRNWjs7f8XuMDgLwwNPau+Wk1k5t5tUYZQbusDrSqHERkhVqM9AsxBy4J8JnP3DCcdLs82mulWc++23cr8mz7tu3T2sWjD2MD0/Kz/qHHOfDQpyQyDFCyCvndB523offxbIZOWdFkzx4cEIGEg4HZx+PaY7IBStblR++Y9NKHYv51HBUYtmsbGwOq2PJvmjyJe7w1EaIwXBRWdMYkocGxuS5saj+bGtLg5zd3XrYqaNQiyFuoX4BsoXYi9oNgmpcSoJeJ86k9oHjC2J1YsRUKiXjiYTkfUHdD0TkYsQ+Pq/snEhMxUozAfH9BT3NckZ3o8ZLC2kkduNVvc1yKJGW50cd537EKB1hn7yRGovfK69e1aLjhp4ejuuxIcpA4ML7ItRAUIGAYzpO6WqU/3lqr9yyfVB2DU9IwO+VC9Z3yes3dWhdgnWPS3p8z4CkhxJyIBmT5lBAebDXH1C3lpO6Zm4qOKY1LBesaZH7943L2ASuQoV4ryMir1h1pLClFGAEz2Q6K6saHYFUe9CHDY+KeWj+ZZxRZyQwtU6pQbLGTz/9dJkYycueAWdNGfA7XGsmC0yHNqszKmravcFUbBAKVSJMHEedZdOmTfOKO6i7IHBhIzbCOIF4BscVRsOSCzFNPJU0gsbEcdzLak2ownl/5zvfqTm0u+66S5u/LUqHmhGrLDbBMFfVLjfNF198UVWApvvwiNehuJ/3Sd5Dt51LqMIcOhVn5HWcj4pZCpu+rrqgIFk58mbs/M3sybGe0Ao5lOqXZC6lQhj+h0iG9O76yFrx4zsXFHVXYOM4SdZguUWiFxJHkoab5ys61stkJiXD6biKSzirCFXO79wgYZ/zcBlOReWJsf0ylkrofqMqbfa3SLO/UVaGw9ITPmzfRZL1rM4OyeZTsjs2KX1Jxh3lJejLSjaHMOTw8SqRU0LpkRv3HtCuOwgNlsgPHhrSZOulPSt1jvdAMiENAY+MpbATR+bjOKnAAzpCfn0dXEm0AzSPIpiku0MQfamkJFJZCQTDKlyBdEE0DHidoyXthpMZ+cmeYXl6JK4P0Z5IUC5f1ybHty181E1nOCAfPqVHto3EdfZea8h3hPoWwnP6iibd3EBw0jJL7g6ycEojtnJ7pfuEDbJ1wzp1ZXE/+BA0vKWzWwZ/d0CeG5zU85OOR4Xmvi3NPunNT0o6HSkqTmD/PnBqrzzRG5VnB6POrPSuBnUcmY/N3lwBMeGaTk+2ci2ZETn139msWkAjYiDByYPxFWtbdb7hUCwt7RFmbualP5qS3qaQnLTipQpjHHe2dERUiEMymWtgXFhwcTmmrXKIgNuBg+JNKRKcBEy8Bhvnm3sEpAjB21NPPaUJYKPoZUZ8uUBgA/GrRaEKASxCFSwCscyuNgtzCwsLC4vKTOwW6z40gBf3RELahQUmMxlnrChi+LxHhhJY/JLYZVSpSFznoJsxonkVG7jhdBUeXQTxiu4uuXV/n8QZ0akJWd4Dbh+UV/f06OswD5gNNzgK0CR56cwiaUABmuMPpNNyxepVctuBA9rVRzzAu69piMjrV/fqe8Hnfjs8LI+PjqpInp93hYOytqFRnTc2NDZoHGOwsalRBcz3HxqUkSTuMSMqhuF13JxUY7t8XtoDAfn10LA8NOg0FJCc3hWNyv54TF7ds1LP7yNDjhMm4mhEQbAXziv7SyyCMwnxmCZ+PV5NjmcKr9Xs94knFpO8P6gJdHjqykio0M/oONWwS5zH2fDUyLjc3z+s43f4XQQlF/d2TblcLgQntzfrqCfEGMR9CGFwVDHnCPHMOd1HjrYFXOfZwAjXzZPD0hgblhNOPllWtrZMJa15bcRWm5ua5OquqPxk70GZSKUlnkpLKp7QBP+pzSGJT4xLcAZxwqqGsLx1wyp5bmxSR+rghoOQBueXpQDxanKGZhn3daMAw1hPuus2btyoa46Ye388rqOrWA8UHEjcntzaWoinj8TGxkZ51Dsq44yG8jtiIH6f9XZsS+kT14sFn2McIvlclyLBSZyybt063UyjBjENBSLiBiNcIeFbTq5dy0KVm2++Wf7gD/5Arr/+ern88svLvTsWFhYWFjUS01DbwE0bwTrNxG40+SMS9gULdYG0NvXqSCAP9Qfc36Pi82RVUJLJJSWXc/iq01QMHz+SE8C5/Uep0WxoaJLecIPsT8Qkl+W1iZeoBYm8vL1L4wxgcq0UdeF6fX19yn0AnIRC6KtXdsjBREK2jUclVmi0JEaAq28ouCDi0ndv/4DsjdLYmpdgwCcnNIV1H1ZEgrKpOTIl3KB+cG53qzr0PzE6IX3xtPTFRTzerGTyHNvheA1RNGKUzpBf/nNnv7rQG+eVXw2MqUPLOzas0OZfRnwimOZtcHV3/ueIguD9CDeo8RA7UgFDYM1FaQgwxjOrDt+BUEQdNRlP5BYqENOw/7NFNDRY3H1gRF3yiV/Zp4t62+SMruYF1wvDfq+8c3On7JpIycFYWuPjY9sYaeqcA153a2tYt+lw15iKYXODyAWpPXLJ6g456bgt0hQ6HHMa4dJlXV0yED4kv+4bl5FMRrLjNO7GZFXYIxvFL4lEQ1FxgjZDb+rQBuenh2Ja90DAgqsKx1RqTI2O0tG2ckSNRkflugTzCCzgutRoiNtO9iblieG4HIqntZbHmhmiHhb0yYkdL22aZj2eubJJRx0ZR1ReF1FMa8gvJ8wi4ikXcHok52LiuMWAmIVYhc09Loh7x3PPPac5EhPT8O9yifG5p3Ev43NNHFdJjc6lqD9de+21uo5/+tOfal3MorSoqarXYizm5kKEZuo+dCPoCYvfE5NMnpnrgYLDCjdoHVijv5N/yf6iNs1KyEM/1fwvCWKU4xuPkx2xXTKZndT3C3tDsiq8SrpCXUWPlfdGjbd582a9gXFzo/jMDeWY7k7Z2N4piZBPGv1B2drcraN7QDyblkeGd8tkJikNvsJ8QwhfekSObW6TFeEjHwwc3wMDfbJ9clyT1I1evyQ4Vn9eEumMpHKOcwWJV04FCcFt4yQI084s88KNFfu5nRNR+WHqgKqdEzm6FY11tldFOhG/43TB7EN+htXbRCqjnYjj6bT+uyGTlLNlUk4//STZE8/KLXtH9OcmyYy9G295QvvMDziS3l975qDsnEw6ShgVr2R1buP/PLFHNrcs3HKMh/iJnQ1LIl444fjjZx0Hw/n6g9NWya8OjMtTA1HHUaXZJxu8Udm/Z7dse/aZGe2TOe9n9DbrttQ4qbtRie5QHHWuk2zFvhBCetYqR81IEtIkH3kwmqTjOWtaZCSRlvv3jMm+8aQS3g1tYXn7CSuloYg1IK/95uO69b34fSMt624Iyu+duEKFM5UEHJ8gKKeeeqoSlFKCc4GojY37BkUuMy6ITmaSwGZtLGeHIkQBRxXev9aEKtyjr776ag24scyuJYJnYWFhYVG+xO5M3YcGJJbOWdGqo3tIeq7wBaUvkZRU4aURVxAFRBm/mcvrTO5Ic0gmGdGJSLpjYc56Z6jAPS+/ODQoExliKY9sbGyQq9asLurIQocZcRmcA75nxCs0FiBcubKzU/qbGyQb8Mn6xkbZ0tQ0day4nfxqcFDfowmHzXxeDiUSKhJANGM6BQ2Gkkm5/cBB7YpsLvBKbL4BQgF1NyQRnnfE9y9rb5f7BgY0zmkpJKU5K4gg7u8f0H1O5bN6zoxVOG0CjGmBg68IBfWY6SyE5+IAwz71xxMaf3RMjsnFKzulc81aeeDQsMZPJitMXKNjeAIBWdc4c1zyzOiE/OeuPu1odHo1RR48NKKuHh/csm5RonM6Gk9pL12XEevauGycd+bs42C2tDTK2zaulidGJtSlpNXvlTWSlcD4qIo+OPfwZAoE0+2TSaifXURIU2oYR5tfDgxr1yprRkfXpDParIEjETDuhiQk16xZo9/jM/aqlSvlgUOHtIBBnMu6ObG1VU5tL77v3eGQnNvdIb8aGJbBgiMq62lzc5Oc3D67m+hyg2vNdeLrUiQ4TaMGm+lQNPEMSVV3vLucHYrMpScfU4tCldtuu00+8IEPyHe/+12NbSwsLCwsah+LrdEczf2e18Ytbe/evepCXCwH2hFskc5giwwkGVMSFo+k1C0FgQoldt08NL/mJJ9PSzqfFp8EJJ5NSKM/Ip3B+XMkYo23rNkkdxzcKztiExorMULo1LZOOb9zZdHfh5vgpgE3wUUPXkI8Ay95WWennNjeIYd8AQkH/PLyjlYdUQmIm27bf1DHWCI0j1DXyGZlbzwqW1obdDTQdMAFHxoc1TgDh0OaewNeURFzIusIcnhdhCOM62H06IFYUrpCgSnRSzbvk75YUv5z9yE5FE9qfDQpnFNCkbw2OTQF8M8XFcw4ohW/DCfSWoMhrtkbi0sgk5FTkqNy/kknyKQvKD/eM6BO/6ZGQy0IUcJZs4hO+N3/2N4vjw9Hp0YtEQddv+OQjkk9d8XC4xE496aWkG6lFC8Qh3Odya3PdFzw9Hcd162ik8cGoio62dTkk43emMSGDsmDO17Qeh58Fd5I7Gtei6/HdzTottTY2hGRroaACk56Ghx3FZoVcJc5q7dZ3WLMWE+O/cwzz5yqJ21sDskV61p13NKhhOPUj2jl0jUtsrLgxjIdl2xol93jSXl+2Jk6AKgRXbO1UzrClZUzNw0HNNkgmC8lTKMGGyIYaiPGRRKDBepgJp4htlkuh/ZaFqpQa3z/+9+v5/fee+/VPIJF6eHJL5Q5VCD4YC70cH7961/rg4LtaN2HOKrM1t3DKJRYblLSeRK8JCCdh+xhsUrBUcXjfIj5Z9ATlGZvm/g8i9MPoY7NkoyTQNGiLe9rZsMxIoQktftnOCeQ5GXjxoIFHQ89SB/H/OLkgDwxuk+a/OGpTjb+biKTkDUN7XJWx4ap7yVyaRlNpeSOg/u0G9BtScz3EaRMpJgL74ze2dLcJG/dsEb+fcce7eCkm82N3ZMx/V068zh546mMjvdBsfr2jatlMJGVu/YPqdIXwgWhYf4hPYvAm89Lsycv7z52jRzb3qL7eNf+UXn40IQkVaGcV1J2SkeDXLUOu+fihOG+vnG57sUBPjwS8jvW3eks45LycmJ7g/zZyTMLQpYbe/bsUYJ7yimnLFq8YMQJbDxwIUKsjXIoNu/ZOSI/3jYgk8x4LIxvOrGrUf7H6avEl8voZ5XkIsdd7IE8Ek/LvglHFb6x/bDKfCZE01l5rH9SDkVTqtY9vadZ2sKVpfUjQCPJyv1puR+YBJGmQxFyBNzjgpaqQ7GWhSrci6+66iq9lsx0ryQ7PwsLCwuLpQOxAYHwQsCInF/96lfymte8Zk7dhyRNZkv8PT48Kb/sH9XRmRT9J9POyBD+wnFWMTbauJL4VKBwVneLnLeibVG8kHOAAwQjfMIzcAg4AMkfgEjXPSLEPduZr8RvpnuR7hcig+/v2qXCEdPdqH+Xy2kMcuXq1bKh0JRAwpSk72+HR+Q3wyPSGTwspucc7YvHJZ09PPiVufSX9KyQzlBIbty3Xx1W3JbVJGf3xUiA+9WxA6EIM96TuayKad60bpX8154+OVgY34N19lAypSNzDLy5rGxuCMs7jztGhQ2Mz7ll70HpTzBK9LAI/dJVK+SY5uKzydn3//vcTtkbTRQ6IQsNAoidPB65dtMaOam9Mhw3uJ7mWsNzF5P0ctsns+HcMT3eXS6wrrhue6LxwvrJ6/W8YEWnnNbROtVwMNNYT3V7TCZ1TbUFAtI6h30fSCRlVzSma70nEpb1jQ0vEWaVE8QUJPD5jHGtl9vlxHQospFQJwFsrLWxeF6qeNcIVYhdpzv3VjvoOvy93/s9+eY3vynveMc7yr07FhYWFhbLyN/gXQvBs88+6wh7jztuRr6AkzbPbQqi5KdnAo4q2yf2y8HksKSyGYlmY+JDIl4Y9WMEDl5PXt3uA96I1jxObN4gLYGZX3cuQGwRy6SlxV+8RgOov8ABGA9Co5qbaxDbwUn4HQT6xDEmD0/Bf+dkVH6894AK6d3OesQ47cGgXLtp3RTHj2cz2qD779v3a/3C7YQZzWSkL56SZAY3cWd0ES70H9iySu7tG5anx6KFWsxh7I/G9fj4Po23jPaZzDhOMlet7ZbOUED+e/eA1lqIEVkJuC4m8wVRSz4vEcnJlWt75Zxep17x26EJubdvRMUvzjVhpGxE3rS+e0aXzp0TcfnHp/c5bus+xEeOywc1oe5wQP7yZRsqhusSl1LIR6SyWPGCESewNsjHEwsbcQLrZDnz408OROW6p/tlNJnV5glO99qWkPz+qT3SGfJNiRcY/VNsrCdjlPZHnTGsa5uCThPILKBZ+anBmNZ1qAme3N0oPY2VNWaGa8I9yt1wsFwwbk0mpuFebMYFsS1VvFvLQhWeOR/60Ie0ieRnP/vZEfV0i9LCilUKoOBJEmK6ZRwgoUXxe6buw5mAMpdtLDcsOTlSEWyEK/58QMKeBvHTn7jED09uGrgucKMi+YP7wUwwc7+NcAWCxMMu1h2RQ96ktAWPVGdGMyl1Yblk5XEylJyUZyf6ZDQVk1QuK6PpnDR4GQlz+CZFgozE2jkdPWonzqx4Y7H8Hzv3yqF4YkopbPb9hYm4JvCwkp76fj4vQ8m0vG71Cjm5vUXuOTAsjw1PKgFDFUzC2Tmg3NQMeezg/r8T12sCWMU7k0nZofMPRdY3heSYlsNCHB6AvxuOyjMjuOXkZUtLRJ4ciun3sH5zXzHeE/L0lVcsztarFDDjqihIoDCf7VovBMWKAG7F5nKQoj1jCXn80KR2m25si8gpKxolm0rqZ5m1esIJJ9SUeGE2GAEa17rcFmTaFTo2NkWK6ICFFBnxituRpxRCFYLSk046qaauNffbN77xjSpQ+clPflKyc2ZhYWFhUdtiFRIDP//5z+XSSy99SVzh7j4kDpiriBlRCmKK50dj8r0X+rSryxlf6nT0kJxE/Hvl2k45taNJ54Uvx3MS8QLFYwr5s3UKmbnfxDPwEtDW1SUP+nwS9PtVXOLGcColF65cqS4VvxselicKY4JI4pJv740cHndqfn9dQ4Mc19qs/Zk4VSB+3x+Ly4/2IPAn6X2YowwnUzKQTMvaBmzJD+83MQvxxweOWS8Tmazcub9fBSrETGPptHY3qnF2Puc4dno8ckZnm1yz3hHJE1e9OB6V4VRa579vbmGc0eHYC5ecx0fGtDOSfTq2pVGu27FfBUfG0huQrud4X9HdLtesd0YmlROsaeJwI0wuZVeYO95lbVAEIGYyHYrLMeKS67tjMqaOOXS4Ii7CBYVZ7nxeS9FwUC3gvmeagxCgLVcH4FziXRLOxBom3p3uyLMY1LJQ5b777pO3vvWt8tWvflUts8tlR25hYWFhUV1iFTgQfw/Pnw5yjPAFit7zETGncxnJ5LPy+Mhz0p8ckoxr1+DgNNG2+pvluJZN0h5oUr69lJitmXgmTmxqNNSpENSOt3XIY5m8dOso0MPPWMQeOJh8YPMGjREeGmRMUFRHio4ks9LoC0mTP3jEvgym0vLqlZ0S8PrUDWVto1N7uXXfgDw6OKHjedzYPu44sm8qjCMyr0Ocw6ihi3s75dGhcflF/6g2GlNfmcgWxPeFBm54AXWeD25ZO+UqeCiekm3j1JPy0hMJah3GxFLUgJ4djcpTI5PqbMk+IpC4p29Uwl7PEa6QiFU4J3/5svU66rUSnNARYc0kQl8M3PEu3JXrsBwNpG4MxtPyu/5JmUhlVThy2opGCXryGrOzP4ttOKgmGGdMasi9veWNpzn3RvTG2qAxlhyKEeNzHykFP+dejzjHjHCtpWvN5+vDH/6wPPzwwxrblPua1joqyxqgAscA8TCho+lo3YfFALFh8+f9ks67X9uZ0Qf8HjrmZrYTY5xQRpyHeUCCC3ZegeShbqPAe/bZZx+1S99tJ4W617hqPD92UOKhtOSYVRgMqRqPh142jyV2SMbTcfn1yE6JZ1MS9jqdhD5PRlL5CQnn6bJ0CAYiFsjGpuYmCRdGDBkc39IsffGEEiqSuOr4knbswKYraVVU4hGdd4hS9rWrO+XlnS1yMJ6SH+0+KJMZBEFZ8Xl9jo0gCd9UVh46NCaXrunS49zQHNbtJec+l5cf7hqUZ0ZjznuJqKiFpKJePyVXh9dDpVgU8YCAAEFUsFebTWG+UPDQ4ebMxvvxXqwPPit8jkyHIl+X6gG1rjWsmwEPXwIW3vfYY4+tm2TYzp07NcBBoVxqUdJCwHlHMMO2ZcsWDSSNcIWAk/VoEr0L7VCsZaEK5+stb3mL3ldvuukmK1SxsLCwsJgzTPEULuZOSrm7D2caZTrja6rQOyDHtjZoEjejM94dJw7ygYi10568nNbZJM2uDr3pnPrFiZiMJJlB7T8i6ThfUDQmplm7dq1a6h6NR5i532w6Hmd0VA7290s2GpVhjsfv13iGjQQor0Z34sODg/LroSE9fpxH+Nt4LisjqaR0hBz+yff4m45QUE6YxsFwregKBaU/kZCOYHDKEpnEKucRh5rp5zmTz2mHIn/39o1r1NKbMah3HnC6En35nAT8AY0/EOU/MTour1u1QhoDfo2ZTpph7M6BWEL+e89BHReD22U2TxOAscqedv4KsXQl0Gi4PS4bxBN01paa702PdykCGM6K6N+MuCS2WCpXDT4Hx7Y06ebm9rt27VJuX24R+nIBbu92xqwEbj893qVDkSTv888/r4lYd4disS7RuQpViJ9rUajyi1/8Qt72trfJl770JStUsbCwsKhDLIY3wd/hZdPBsxi+wLN5vtww4PVLQPzSGmiW/uSw+LWc4MQ0CDty+az4vQEdGzQTEtmkjKTHtTG5JdAkTb6GBR2nu5mYwu5ccrlwJOpSbMZV48n+AW3gHEzEJBIMSYgaTcCvjo2MEoXz33ZgnzrxRbw+jQNykpKJbFxCXgT1TuxITQVOuq4pIqtcDcIAgTtumzQvIHgHUZQ+HpHINAcMcy4SCEU8Hjmzq1WOb22UfbGk/PTAgExMpjSeIe7RWhIOlpms3N8/PCVWQSjDNh3EXff0DcvDA2PabMyo1d2TTuOxjjN9yXWogGDGJUqC39NguhRO6NPjXdNASjyDILoUnPVo6IoE5DUbDo8jZY0++pvfaoxdCSL05YIRoVOrqAT3DT6HTENgI94lhjFifIRyXJ/FNp8boQrXvNaEKhzbRz/6UXUvxlHFClWWHjUlVlkM9CHpEqvMZfbhXMDrvFQ/c/gbh02jX/p3sfykJCWmpAl4xSsRaZSIp3HexU+UjHTnI15YiKKSv4UQdWV65OeHtslEKi7JdEom4zHJ+70S8PulKxKWndFBiWdS0swsSE3E+hyXk3xaErm4BL0NmlyFCJ3S2v4SoQrAIaUvHpdtE1GZTGckrwTImd09nExPzS40SlkSvj3hww/bznBAt+9sS6ujit/nn7rZMu4lnckpUToanhuLybOjMWkJ+KYsyEgy74+lNDmfzImEvM61YQ4i/8KVpZxgDRvLLa71cowO4dzy+WAjWEClyUMPIsYDmoedsSlcqv0xMx8pXPDwrQehCp+D7du3a+clZADiUYkg0Y9jFRuiOTMuiADTrB2j9p4Lea1loQqiQJK6nKc77rhjXsVECwsLC4vawGITu9PFKu7uw3PPPXfByQPE2s4880IkwyzzvCMc5/uDiXRRsQojhG7YdUgdPYw0YmU4KG/ZuEK659nlBuehUEyX0qpVqxZ0buGlbMnhYfl5f7+kMhlJx2IyMjkp2UBAVgaD0uLxyN1jY5q0bSqcx45QSBLxhIym0+rG4vN4NWlLjHJ8y0uT2iRhX92zQu44cFBHn+r7I2IJh2UsndEkLi6NzqnMawdkTySk44HM3zOiZcf4pCaaffm8ClXM+uDndCjiyLEpMDNf4LUfPDSs7ixdrhFG7DscCnEMri0k7Lk+dDESWx3vEk+UA4iKiF+Xk9sTp/B+bGbEJR2KhrMuhatGMWdMmmXOOOOMiuX2pQZJU7g9vLdSuT37RKzCRhOTGRfEtaLYxLUy62OuHYpmzFMtClXoPHzzm98sn//85+WDH/xgXcTmFhYWFhalgzabGqd0VxxAYybNiQsdoQLXyuYQoSO6L7gWOsOAtOoSx3JwBvQlBmRHbK82FfMnxAIrQ91yTOPhUTtL0UxcDBSYiYVW9PTIoV17Zd9kVOsjsfExyXi94vEHZFNjWHZMTMhQMiltAZqfnX1kJBHxzGg6Lh3BRo0FGOGzublBeiMvFTIc0xyRc7pb5ZHBcTmUSOs5C/q8ckxTRP8b8bs5fmom/Ku34fDrNAX8clyrX368a786ROJAaXi0D86Xz8rB+NFrNDhO/mZwXJ0ImwK+qevZR43Gm1f3z5DPibe4jLiDrgwHpD1UvsK5qS3C+cjbI35f7gbS6ZzVuGqwkVdfCo5mnDErmdsvBfr6+vQeVcncnpzQ6tWrdTOOPIhXiEm45xLrGNeVuYwLcgtVaLSoNaHKxz72Mbn33nvVvZgcgcXSw4pVijir8OGEONDNNd/uw5eQoGxWPMp1PCrydEiQMwbISdgWfyikJCkJMY4ehYew5FTAghY44AnOK9GHxRiJlcU+IBr8QTmrc4M8MbZfxtMJ8dPll81LW1RkzxPPydDKgOQifsmIT/yBgB4f3YcDSez2MjKRTmvi94SWdjmjo/iNm59ftrpHTorF1WGFWe0bmxrVNu7He/pkMJlW9S5jeUiu0om2tjFyxHlHHSjZjHi8/iMevChuOeWNM8w6dGPXZFIJjntWHmKXRr9XXyeWzkvCRWTbAz65at1hFelygwcD11ptwc84oywPCN4bRTgbMxiNqwbKUooLZu434pVSWY3xYOW46a4tNsarFmEIL+d1qdxzlgKsSe5FbDz0uT+xPl544QW1yKN4ZEhzsYBNldmPPlqThJdE/Tvf+U61oL/rrruWJYipRPzHf/yHFlgR7VhYWFhYzA88F+FWJqah+xAxL8/dxThTwDvSmaw0B7zKiyfTOeXIiFRaAz6Nb0gIFvu7W/cNyd5oUtqDzjgckpgH4km5ec+gvH9L75y4IK8DVyDJRhIEvrBYnNLeLvFcTp4aHZVEMCgRZrfn87J2YkLuf+QRGWlrU6FKloSq16uJURxPSPiOp3GIzKnjzHkrumRlpHiSmZFBb1+/TrZPTuoYIUaQbmpqkvv7B3UkTzKX0tdl7A5fz+zsOCLZTaJvcM9uEX9EY1X3ueJ0I55vmMHNZuo1sjnZH0tIo+/ImIjOyMkMrRCOQMWENPzKsa2NsrW1qezWySRYy5UUgovQDcdmOCvCFZK8FBlMIo+tFDEXa5zkJgIZ4rhq4falEGpX2whXtyPPxo0bp7qbWbc44rAejBife1UxYVMtC1W4nm9605vkr//6r9Uyu16FKjamsbCwsChNQzEciXwyY+6JA+BgC4E6IqpTOsWZsPg9OcmKIyj3SVCy6mRf/Jk1mYnJjtgeFZCHccf3OE74B5KHpNnfID3h7jnzHmKzxTQTu4Hw4/VreuWnfYfkQDwhnnBIwrmcrMllJL9rp/wmGJBkY4NwJn2BoBL9jnBQkvmcpLM5GU2l9TXg/peu6i76zOZ7F/W0q0PKjsm4fm9DU1gafF75/s6DOmo04scVXySRy8rqhrCcMC2OgPeko1HxBEJHcD1t8KZBeg4i8D3RhAprOl3iE/aNBmPqQ9F0XpIUawoxDft3+brOKZHOcoO1BtejuZZrvRzjRYuBmIJtw4YNU64axDTUzRAumOZiuHgpOBviGIQqfE5pMKkXHsj9ifsULjILvUctN9yOPOSKqEcQz+zZs0eeeeaZqfG4xDXFhE2mYb5WhSqf+MQn5NZbb1VHFT4/9Yj/KEONxopVXB9QPlwQB26qqMcQqsxFRTabUIXFjY1cRlCfYjDnEk5IToUnxZDMJzTx6zviEmHXlpVUHgFHcE6KPm4uJPoWqjouhq5Qk1zYvVVG0zFNTLcFsPL2Se7YnDzY95z0pcZlYnJSCUIwGFDRSoPPL+sauqQn3CmtgYA0Q5JmgbfQTchm0BESeeO6XnlkcESTrs1+n5zU1iIv72ybSuyaETgk+k5duUEeHY1JKp/Xswhxwl474PHKy7uO3qk2W6rsuNaIdIUC8ruhqCZ31zYG5XVr22VjmZxVDOE1bhOVYq/mdtVwJ/KwwOMhZoQrkKKFJCchWLi38FBdSIdtNYJ7C4lyziXJ7HIR3sWC601nKhudEUbtTRDjFjZBihBuUBhAqELnIjM+qyGZPVfw2WCOO+Kje+65p24s36fjL//yL+Vb3/qW/OM//qOK0Iw9pttNy8LCwsJidhBMIrwvVfehSewiNmHed38iJRubg0LfHPbLo6mMRPx+We3qoDMYTmZk1ySc3Ts19gfhd0vAL/tjSTkQTxX9OzeIpxAuwBNKKdAldji3q0tObWuToRTjSxGjhPR50z85qVw1mU5LcmREeXWQn/l80h4MykUrV0pbMCgrw+GjjjMieXtS25HW3heu7FJr7idHx3UsEPHOyzvaZVNz40tG4BzT1i7P5/0ykcmq6p7HIfFXVvKyKhyWFS53yWIoTEydapgw4L/Y91d0t8ueaFz6E0ltEDilo0UuWFG+xK5J9MH1KsE6uRhn5doQg5hEHrzNxDQUH+YLPl/EM7zucjljVgJoakDYUO3JbNPdzGbG4xKncf81wiYjXuF3iXVYNySzF+reW6mgs/Lqq6/W5C6W2dV6TRcLG9NYWFhYLN4tkhjAjDKFM1CjWWgcYGo0fO0INInX6xOvJyRBj5NPJa6JZhOyIlR8HM9gakTSuaxEvE6sAAKegGRySelPDs1JrFLqZmIDYpM3r1stA8mUJLJZ6QwF1amRY5X9+2RodESisZhMZiclEAwoF4l4vbK5qUFO7+hWATuC/NmuFz/DLcXtmALeuqFHHhoY1XGv1LtO7WiWc1e0afwD2AeEvDivn71hs/x0OOq4OBYOnQZkn3jkZZ1Hb9abqdkbN37qMxf1NMmjQ5PqMIOg5cKeNjmlozzie7Nu4YFnnXXWgmuLS+2qYZzP2VdghAtzdT6fDsQO1FThxDQw1wsPJCbEHZPJHKVoqikHVPjV0qIbzeDaNFOo4eHqz9ox64PYl88264a1XotClc985jPyox/9SB1VWMv1iL8sU43Gk9enV22AD4h7lM98wAePE8+NtRTdh8aujotHcjAmEwXByuEhQAhVGqX4/Oux3LCkJS2+gquKQVYyEpKINHuLE6hsPiPZfFb27tone3bvkZNPPnlZkyB98VH59chOJSm+nEgqnZJ4Nq0ebBuTDbKuq6ckHWgkabk67nNnyACFXx4QSa9fvrVtnybD1VGFB7PXI2d0tco1G1Yc1abvhbG4XLf9kIR8uKk41wG77dFUVl6/rkNesaJFSRDkCreVcj2ESWxCBowSshrIgLEaM3PheRCwTknyQormoi6nu5YkIGucv6sHcG8huUmnNBaCC0mIVwP4DBvSzFfuxawRBCynnXZaTZEggpf3ve992jGOWrfWktZzxQ9+8AP5yEc+IjfccINceOGFej/nXmZcAiwsLCzqCXQ9LRQ8S0iS8PzkmbnY7kOnA9Hh3M+Px+SmPYz8xFnEq6OBsIF+zaoOObPrpUnGfdGEfPuFPmlyiVVANpeX0XRGrj2mR45peanoFvcVrJ4zqZTsf+5pHTdKYXc5n/+37NsnL0xMOGOAMhmJpdPqjtKZzcqFzc0qpFhsB5qe48JIHzfgyMQ0iIwYgfO74TG5dd9BFbaQTOe3W4N+edv61bLRJXCZCTfvPShPjk5IR9CxANdZ5umMuuR8YPNajXNiWcY8McK1PGJgk8xm41ovxTz3pQCJPPgq4hX4OUUUk8gj2Xe09UFM5LZOrpRk9lID8RlCFT5HFGxqkeuxponTTbxLngkhEmsG0dOaNWtq6rjpHr7ssstUpPKpT32qpo5tPrAxjYWFhYUDIzZZCOBViJd5lvDsXEwc4BaqODUakcdGd8qBxIiyah0bI3lp9oflrPbN0uB/qRD8xege2Rc/KA2+IwXFuCRGfCE5o+3kou/Nz5PZlIwNjsi2Z7aVvJn4aMAR8r/27pZkNiuNxG6plEym0+pEcnJe5KQuR2y9WKE0NRrOo7vOQgzJNeRaUqMJNzbJdTv2ywvjUX1/wOjRLS2N8q5Nq49wtS8GRst+a9t+/VvcVNRNNJeXoWRa49Ar1nZrbJrM5nXU6nxGM5UScHpqNKxX1u1i3XOWA3w2jPM514tcBLGYcV2ZS3xCHIQYCwcKnAfrBUaMRRyHE0ktwgibjHiFzza5egRNHHe1NlHP9Fn43Oc+pyINxv/QQFOP+EEZazRWrFIASSKcSLCfXQxxMEld88E1FzCXz0lKEpKRlP53QEISFBS5xR/G0dyExCWqI4CMehTRC84qjZ5miXiOTEwiUJnIjanrCg+VTCojLaE26Yh0lWwRYXEXzU5ILo9VdVgavC+1gFKb7sl+3VI5RzgU9gZkfbBFUtEJGZsYk+RoQjrCrbKie0VJSBEg6UP3IUo/7HQNGWAe+++GxuWFsZiE/V45ub1ZTmxvmlO3IHMXb907LI8MTirhQceL3fbWloi8fVP3UYnUcsCQAZPMrsakEGtmfHxcCREPPRTzkKLZxsEY1Wo12astFu6uS8hAvXRd4hqEowr3U9YK9zd3hyKf+WoFD/vf//3fV9s8iotL2UH8ta99TTeINIBwoZIlqTwXkvKOd7xDOyVvvPHGku6XSRj82Z/9mRLgL3/5y3LffffpV7qrue5/93d/J+edd15NiZQsLCwslkKswnOF5wn3y8W4kLiTusAt4N8bTchvhiakP56SjmBATutsks3NkaIclBE0X312r8QyjMw5nKgbT2fE7/HK/zx+tc4xd+OZ0Um558CwDCWSkkwkpTPglbcct0HWN5cmCcIx7Y8nZF80rrbXm5sbdZzPdExmMnLngQNyIB7XpCixw8pQSDb4fNI/OiqxiQnpSKdldUFsDXcthbOhccZEgE7Xm8HuaEyeHB6T4VRKeiNhOaW9dcbxQ9MxnEzJf+9xbLqdK5qXsM8nF/d2yant5R87aOzdcZiD4+KiV60CZBJ5xDR8dVsrsz6mN8Lw+2aEK8KyakhmlwL13HXJGFdETJwDEv9mfSAwrGbXSFw/iSmIaz772c8u6TW1MY2FhYVF7YtVKP7CDXHpRuC5mGZit1DFPJ8Y57MvPiQH4iNaT+kKtsi6xi5p8BXPLx5MDMjzkzsl5A2Kt1DH4TXjuaSsCq+QrU1HjojgNXdE98pAclgSqYTWaFZGuuSk7mPF5ymNEzpOL32JMYlnU9LoD0lPuFXjq+nYNj4uDw70a2wDQl6fHNfYIMFkVIbGxyUzMSkr/RFZucKp0RQb9zFfmPEg5HMRqphGSxp+nxwZl2fHJjUmOb61SU5pb5lzfeWRwTG598CwxpiA3eyJhOStG3G9LH++kHoGHBfRQrU6grOujfM5G/UauKsRrhTLLyBi4HojQEeMXQ/gPDFKae/evRq/co7qAdzTaTggX0XOibViXEbNuKBqvqZ///d/L//0T/+krvfUHJcSlRjT5CugRlP3YhUuAkkDkgcowTjZpeo+XMzDHYeU8fyIZCWrw4McqQrjbPzS4mGe+ZEz/kZzg5LKJSUeT0o+m5OGpgZ9aDd5W6XBu3jbM0Qq/akDul96fOKRiLdRekJrihKtWCYlQ6nJwjlIy+74Pknn0lMebZF0QLwHMjI2OqYJSfPQwzlhviDZg1DFWAhPn3/Yj3VVMqlJ2fWNjUe1654uWHlhPCHbxpyRRxubw3JCW8O8XmOpYEbg1BoZcJMiZjuyPoy1Np9RghbIAIS3VlWr08F9xRB9HFXqpesS8gMJgvQZNet00mzWh7l/VEvCm4c+c9wffvhhtZVb6jFWt9xyixZN6OTgvvjd735XvvjFL+q9czalMKTp/PPPVzEchZZSi1UM3vWud+ln+i1veYsWbEh2837sH+8JEYOEGSGohYWFRS2Djqz5ml+a5BhcAfG9W+iw0FGmpeic+OWhMblr/7DGMiQicSkkWnrlyja5eNWR7hm7J+PyHzv6JJ7KiCQTEgwFJe31S2swIB/YumrRSUi4/O37++WZ0QlJF85v2OeVV/d0y8s6WovGAYhVxtNpnaX+xOio7Jyc1Nfhr0lnn5jPS2BoSIUHRkjL1/kG725nEYT308XYzGjfHY1qcrY7FJKV4cM25HNBNJOVZ8cm1LGm0efT2fQ9cxS7LIcYm3iORF+tuAZyXDQVmA5FEnvu9cHP+bwiPud6V8oI16UG3J3jNo0W9QJEaDiCmkYLt8soCX7+24jx2aop1sMdkqQqXJ7k5VLzdBvTWFhYWFQH4Drw4/mCfC/PTHjua17zmkWPMi1FTJPJZeWJ8edkPDOpNRBqIjT0Il45ueVYafIfKarfNrlT+hIDkkmmJZvOSbgxLHlPXnrD3bK1afGuE6PpmDw0tFMmMwnnGx6RNn9EzuncJE3+l/L7eDYr+2JRjWGCXpHfjByQyYzTTA1a8l5ZN56R8aFh5abk39nm4hJYLI+LGBtuW8wRBxH9vlhCGwE2NTVMjQyaK3DufG4sKvFsTnojITmhrVEa5vkaS8VxyV+aMU/Vkpuey/U0OXi4q1kfxDTUZGg2wF2PvDLHXg/g3kIDNY7/1GgWUsusRhhHUDP6h0YLck/GcYX1Qd3OxLysj2rJ33NNv/KVr2id5O6779brutSo5JjmXWWs0dSUWGW+ql0zNobiJwkTkgjnnntuSbsPF4NMPi3xfFTSBTcWnFgiHlxBjnwIp/JJGUkPSCwaF5/fJ+FIWIkTqWC+4sQS9kbE51lYtxYCld2J7fqV0UU8cHGKYaxRu79LuoMzP4zi2YT8ZuxpyeaySuKc18tKOp+VYxrXykpfp97UTAfafEkRf0MRH7U1NmPu3yepe9uBA/L8+Lj+G1eUjmBIrl69WlZVuUXVvn37VGR10kkn1fQIHIo1hhS5x8HQbdrb21s1D71SkAGCvFqbAzgfoUqxewHrw5Ai1gfnxpCiYh2slQLWMBbZiFTogF9OG1A3OEcQoQ984AMzrr1XvvKV8v73v18eeOABtYVcKrHKH//xH8uDDz6o+0IHDUpm989+/OMfazELxbaFhYVFrWO+YhUSAwSOCB8R+q5du3ZBYpVSC1XMa/52aEIeHhyX0VRGmv0+Oau7Re2ap9sz/9eufvnNoRHxpZPiD0c0AcIIz6FkRk5ob5Szu1tkU1Oj+CH1C8Bvh0bljgOHVKASLnCEiUxWk6XXHrNWVoRndmt7aHBQfjEwIA0+n47K4eqoiMXvl3euX4/N45RLILGl2zr5aC5wnG+cCeA0JAWmO4vsj8Xlx3v3yVAqpQIaOiKPb2mW169ZVREC+oXCxOJ85birqUA/388AYhwjXGF98Nmi84xxptXcgTYfwCO5TxGzYxFer0KV2dYHGy6aJHeNGJ+kb6UWPGgied3rXifXXHONfOlLXypb7GVjGgsLC4vqF6uYsTEUgHFT4dm5ELFKqZuJ3SN9dscOyGBqRJuJW/3Nsq6hV1r8RxaqGfvzyMiTEk/EtFk3FAlpHYc6SlZysja8RlaE26XZvzCBNsd378BzMpyKSqPPcXrBKSaWTUlvuFXO65zZtS6Ty8lNB7bJWDopzX7+1qPfi2bTsqWpQ17RsWoqx8pmXAKJaebiAgfHRZRM3m66swj7fU/fgPxqYESFJuxhc8AvV65dKSe2VbcrhalNwXGpT1Uqb1ssiNk4ViO2Np8zw+3rQXxvHEGJ6RA01EscR44IERpfjVBlpvVh7iHA1GiIgSrVRZRrisPJ3/7t38qdd94pZ599dtn2paNC6jTlrNFU5ipZBpjuQ5KHCFTofOKCzxelVOpOh98TkGZP21SyeqbXHp0YlaQvKcGGgHh9XslKQbCjf+dRh5ZoblyafAtzWYlm6SBMi1+CU/sAGfLmvTKRHZOu/MoZ9w0Sl8llJOw93P3n9/glk83KweSgrG3r1cQ6m7mpccPn2hyNFEFgIa+4qRRzJbivv18eHxmZOn9c3YPxuPxwzx75w61byzaTvRQ2YzgBkdTlvNQySFpTbEGYgiU664MbNwpWuriq4aG3GPCZgAxw3SFBtXiMMwlVGP1jrBNnur+wPsz9g3uw6VDkvkBQzLowHayVUgBhPz/+8Y+rpVy5hCo86374wx9qIDmbQBMbb+6/kBNI0FLAWMwxC5Fr/jd/8zdy5ZVXTq0DntEf+tCH5KabbtL7nhWrWFhYWLy0+xChA0JeRCoIPRcS08w0ynSx4HVe3tUip3c2SzJHNx9jNV/62rzvjsFhSWZyIoGw5LJ5yWdS6sIClX9yeFydRbB6vmZdr7SH5i/efWp0Qr/ikmKAeGY4nZHnxyZnFKvwrHp6bExFLaHC33IErYGAjKbTsiMaldPa21Vgy1gT4kziGWIVro0pPBuXwOlc78knn9SRpmedddZLxjwyY/4Hu/doF6I5a7FcRn47MiqNAb+8trc6O9h4xiNcgJ/VOsflM8DaYGPkI59RI0D41a9+pd14RpiAUKkWE9xwdGIaOse4T9ULzD1gttG17vVxzDHH6L3AJHm3b9+uXNisD3hwpYjx4eVXXHGF8vZyCVVsTGNhYWFRGyB/h4CZLn1yVDwb3eN7yt1MDGjAZdzP5vw6FavMNM5nJDoqsURM8ry1zyOxbFJF7s6xiDw3uUdejPbJ+sgKObZ5zbx533A6KmPpuES8gSnXfZ/HKyGvXwZTkzKZRYhS3D3xQGJSxtMpafLzt4UajdcrwbxP9sbGJdPRq1yVzbgEGld3/tvwEXKs04UJ/C7XEOd3+Mz04/rt0Jjcc3BIxTHmJ0PJlNyw64D80XGhWZsGKhkHDx5UZ5GZalO1BOI1sz6oTSFaJr5FmI3bA1yX/66kHHwpwWeYegNxDSOXa8URdK5CFe4BMwlVpq8PzhVNVCaeId9BDdPcQyrl3LGf3/72t7UWceutt5ZNqFIpMU2+Amo0tZsVmkP3IQVwEruQFx6y803sLkX3YTHM9ro4bOw9uEfWn7JG4Cg4qTj75iiIgU98kpecTGRHJeAJ6jYf5PLFzwvvxeuyeaQ4Scvks0rKph8DhCqdy8x4U5uJFJmZ8Hwgdu/erVZExRI/kJ/fjYxo96GKUjyHvz+STstTo6NyeseR1uOVDtYbyS5u9DwU68lmjIcaQcs555yjN0b3Qw/hCmuEdWEeekfrYK2WYI37FPcmhEn1oFAGJGhJ4vPAY4zBXO+r3IONdTbrg65E1gdFPIROJIDN+ijFDNaFgPvYX/zFX6jVG64qqM+XE3yOID2cY+4fKGE5x8WAghbCBiEtNdw2ceY6IEp7wxveoPMhH3rooSkSZH5nLl0cFhYWFrUC7ntHc1Zxdx+SNDB8eL4xzfTuw6WKaXjNsM8zI+fhGZVP+yTjDWlU4fd4JMW+FcT3uKE0+X2yP5aUW/cfknduXDXv/cQCG8HJ9P0iWEkWjr8Y8gXRiL/Y3xZ+5gZCBLrL2Ix1MjENnBUOYlwkcYTjOcvXM844o6h73pOjYzKSSutQWL+JafKOg+SjQyNycc/KlxxTpYMkDBzXcL16eb4Tu3Dc7iQ+a98IE4htWQOGr9YK9zFz7OmSXuh4sloVqhQDgjXWCBv3ctPByj2S+7SJdxYybqyUx4ZQ5ZJLLpGvfvWry75ObUxjYWFhUTswbhwUL8n58mzDZRLwHJyroHkpm4ndMAKRmepNzzzztMjmgI79QRCiI4NyxApOTBPxBiWTz8vOWL+0BBpkVWTuHAGkc/iz5F+yH/w3zcL8fCakctRo8uKdkos4IJbI5HMaX4QKqWfOIfyFjdoZY25MPEMO3i1McI77GR1/A38phgcPDWtNBldIc2myubzEMln5xaFheeO6Xqk2UJvifMD1OA/1NAJn//79Wpsi1873+ByzPkwOfrZmjWoE9xWOi3iOuH16g0k9CFWoTc31fsz9l1ifjWYFmnlMzMukCHIi7nFB5ajRsG6vu+46+eQnP6l1GkbrLDcqIabJVViNpqbEKnNZ2Ig7UMGRLHF3tPNhm09id6m6D+fzgcJZgofDSS87UTJeZ06hM0G9gMIuKTXK+yQrWUnk4hLwzU+sEvJGxCNeHSuE8MW8PxZ2EW+j/mwmNPka9P2xpEPpa/4WEUtncGb11XRSZIQJ3ND4AHO+KfTyUJwpGc2mLuGuS8NkSWbU74/H5HSpHrEKaxMySAG+ntSbxh6c43cn8ac/9CBFrA+TFKwEYcJiQGBmnJ/qaY79QoUq08Hf0ZnKxgw/UyiCGKH+5rwaUrRchQCeFZ/5zGdUKYtQhc7r5QbPPUgN99Mf/ehH8p73vEfuu+++lxAhrMjf/e53yze/+c2SB1xuEoS7DM8w7meQQhxn+Bnz7iHBX/jCF/Sz8A//8A/6OWfsmYWFhYXFkd2HJHXd9rPzEassZffhXMExUMAn4bOyq1P2D09qNEOckcsflseT8CW52eR3ZpUfSqRkZWR+4uS1jREZSCSP6NIkaUq8gGPLTCDRvCoSkRcnJyXi+ltnzKhHVsySrIJzmMKzW5jw61//WvfDCFtmSvzsi8ULo38Oi+/5yj4T60ym09JaRZ1rRrBB5yHP9mrj6AsFSXw+s/BS7MENiG1ooGFzuwTSocln0xQC+FqNo0BJWpOEg2tyjPUCE5PSWENDxULB/dyI27hfUChifdC9yhohZnKPC1quDmKEKuedd5584xvfKMtzw8Y0FhYWFpWPuXA8BJnkqCiMcW+fcmQv8OK5ilWWq5l4NpDb4tl/zHFb5HnvfiQqWqUhpgHqFpMXyXlEQr6ARDMJOZAYmrdYpS3QIEGPX1K42PsOc0P+m9dtmcFVBXQGIxpPJXNZCfsOn9dENiPtwYg0+otzTfadgjIbuUwjTECsAR8BXMPZ8oeMM3Ve6/D3fF6PZLJ5ORhPSrUKNnCI5LzUA4yzCJ9balMmB8H6oNDORqxDbt+MkuI8wVGNcIV6TbXFf9xXiGcQXFCbqoUG6aUUqhQDa4A6PBs5ETMuiLwA68HEM8RNy+G4ylr+/ve/Lx/72Md0jM6FF14o5UC5Y5pcBdZoPPn5DESv4nmIZqYYJ72YGwciAGx4jzYPkdcxJKiUsw8XIlxgoerNIuKV0dygYyvn7KXjl13YLb8EHCVvPq1jgFp880uYcLwHU/tkMjvuCF/Eo24rXo9PekJrpdE3s8MHpOyJ8edlJD2uYhVnP7IS9Abk5Oat0hJomrdwgaQ2DziSeVw3YyPF94yykQ7HLz77rCqD3bPcczmEMnm5cMUKuainp6oKEqxv1m4tWqkVAzdAHlo8pFApz/VhhTCBBx7EmTXCmnBbJ1c6KeK4jT04c+xroaNyOYUqc7l/mkIA68QUAsw4qaX4fHEP/dznPqekgtE/jDaqBNANSWcviWY3IErT3XzcHfc8S/m7xQDhzre+9S0lZlhGErB86lOf0rn3d999t85DfOSRR7SARzAMibSwsLCoF8D9zH13tu5D+NH0AjYdP9yrEXvPpfuQ52C5krrM2IXj4qpIJ94Pd/fL48MTks7ldSOhy25hyNLk90pPQ1AyubxMZrLy7k2rZV3T/MTbhxJJ+f7O/TKRTqtTC2IYBCeIWN6xcc2sI0L3xWJy0759KhAJe5kN78QUG5qa5A1r1szL3QT3SDiusdA2M53dLpLmGXzPwX659+AhdXXxqgrfQTqXE7/HK39+wrESrpIROiSluN5wCLdgo9ZhXDHm4yziFiaw8bkn5mV9sE6qoZvP2KITz7Df9YJSCVWOBnIiRvxGbEPs6O5QXIoYkve6/PLLtZmCTsRKGd9lYxoLCwuLygNcxjikFANCB3JLjE+Z7sbB3951111ywQUXHFWMWQnNxBTkaY4mNgu2ROQXw08VxCqI7/FBkULcQUzToDWReDYlzf6InNc5//zg02MH5LnJPi3/+L0+dVNBQH9K6xrZ3DQ75/rF4F7ZNjGsv08sgXCFr+d3rZFNTe3zOm6uH3wPETq8ldiOpkHDV93No//7iW0ymkpLwHu4jqZrJJeXk9tb5D3HVMeYSNaZGQWDu6m7aaSWwXGbJmqOe66xCLU8YkBqNPBWPqNuYUKlN+eSK8EhkloTx10vNblSClVmA69vDArYqA25xwUtVcyLMOTDH/6w3HDDDRrbVAouKVOdppJqNJURXZax+3B6F+Js8xArofuQDy0LlP1lrjk3yWw+I14d9ZNXl5OsZByHFU3wHiYAqFf88xwBBHiNlcHVEsqEZSwzog4riF7aA13SMItQxdjQndi8RfbED8ih5JBgVtcVaJN1kVXzEqqY4yYhz/wwk5jnmhprbVxX3KRofWOjvDgxoUltcrucARLLJKJPaS/9TK2lAMdtuk3rbRQMhRg+q/MVbKBwJRHM5rZO5h4AzAMPYUKlnU9z3KxjBA31JFRhFh6EZCmFKoBrbtYA90VEf8Z6nYS6sSo0gdViwXtgm/b1r39d7r333ooRqhhiA+GeDgqcFFXcgKRwrv7v//2/snbt4oLI//zP/9TzwddXvepVah+Ompn9gQBfdtllutE1ypqoly4FCwsLC4OZnoOm+5CEIPfqYr/HfXQm8X4ldR+S2ERYQ7Br3C57G0Ly3FhUVkR8ksjmZSCRKgjwPRLyOZwIsUjE75XO8PxjGmahv3XDKvnlwLDsmYxL0OeR01ta5dwVHbMKVcCahga5as0aeWRoSPricWnw+eS4lhY5Cz45j/NnCvgkAkxinutAchc+QpGb60fRmZjmlOYWefDQoIpqfIVeBJLdnJb1TQ1VI1Qh6cH1rjeHDXPcdB4hyporpnew0snH+ujv79dkFJ2LRtzEvytNjO8egVMvtuiAxiiuz1ILVQCCRTg5mykEuGNeI1wh5i1FgpnXZ2Y5z57vfe97FSNUATamsbCwsKgecM+GI8CRcKUo9ryE1xzNLXK5RpnOtZmYGg05RJzlw96gJLI41QckKUlJZFJasXFE+F4nFsvnpG0edRE3TmjpVVeVHdEBiWVT0h5sUJHKusjRucc5naulJRBSwQqOKitDjXJia7dsaGyd13EbpwlqNMb9HXGSaR7F1ZpahnGIO6W9Re7XUUB5IaxzBDx5FeSf3lEdOT8jXCCHjbNINYjHS3Xc8EuuL84i8xFswBeJgdhMzMv6MDGvaR5lqzQXSSPY4Cv3qkrbv6UCx0stkvvUUgpVzH2bvD8bzUtmcoI75jUxTalceW6++Wb5wz/8QxVcVJJQpVwxzX9WWI2mciLMEqDYguXBSbe+e/ZhMRzNYm65Zh/OBhYgNwuInHu+t8/jl7CnQeL5KAZz4lXBSqEbE4s5nWZI911Qwp6FjY9BdNIR6JZ2P8kmBD0OuUrlkiqO8XsCEphBCBPw+uWYxnWyqWGt7okZBzRXoNrkuE0h213A57oaGykemka4Aila0RCR/qZmiUICCwPeSXSf19UtnaHKJxSmc5brjdK8XoQL5jNbiuOebp1sCgEIm7j5u0lRudWxCK847uUQbFSiUMVc7+U8bt4LssOGAtVYFRJcbd++XQMPQ4pwfJnvWmTNfeUrX1HiQFcICfty4ROf+ISSC+6VPEuuv/56HUd055136s+vvfZaFXh9/vOf1+OebufG8YNS2LxBsNgXSNBPfvITJVhf+tKX5KqrrtL7PR0pEDG6ruvlc2BhYWFxNMzWfTid+/A8q+Tuw507d2qwiyCZZ6zBqe3N6qwylExJxO+TRr9XJtJZleT7PaLdeCQ2X9HZKo3+hQmOeyNhuWbdKhWwc+R0FSazOXlhPKr/jcuKEcZMx9qGBt2c0UEe3eZz3Bwzxz69gM91gAexkaThOU08w+8SD2zu6JIXfD5N7pLl5l07Q0G5fHV1iD4QBMOrirmb1jLMHPtSHDddxfAiNlMIMGJr8htGuLIQvlpqMKueccXLIdioV6HKbIUA7jWmQ5HPHbzb3aG4kHHCxNBXX321dtOR2C1nst7GNBYWFhbVgWIxBsVpir/kY88999xZXVOIaRBjVmozMcfAsfDeppkYUPPY0NAjz03skUQuLX4PNaa01mYCeb86wKezuDwGZX3DigWf22OaumVTY5fWWdTH3uORWDYu8WxCgt6gNPkail4D9u/k1hVyUku3xkOI7ucTDxoXdI4bwYabE3AOaKpg4/oYvqquoD6/dDd1yBBuGwUBPo4uJ7c3ywltzVLp4Li53pwrBBv1Ilwwn1nAcS9GuOCOeWncIP9rxkkh7jfjLYlpFsJXSwnuPWZEDY4qlSTSXg6hCuC4l7vJG8EfGzGHe4Qy95BSuPLcdttt8oEPfECF99QgyolKiWmerLAaTU1/0tzdh9wEZyMvZoEXE6tUQvehsQ/mw7px48aX7EOTt1W8ea/EczEVpjjCEUbuZHT0TtjTJE2+Fh3dsxg47+uMFBrODEgqn9T3w9Glwdsobb4uFbbM9Le+qWHr85vvzQeXuXeznXtIkXHUMN1FbYf65dlYVCb8AWkNBeWktnY5tQq6u8w8d46Fbrp6Kdhyc+YB1NPTo8n6Uh43r2XUmsxWM2pNEotY+JXaUWMhAh3e2z2ntdZRTqFKMfDwNx2Kblce7r3c/90dikcLTHhuoExlpt8dd9yhpL6cIACA6NC9wlrHvhsCZEbfERwsRYDvnn9o/o0wC6JDB8rv/d7vyWc/+1m13+PnKHn5PPCsq5cuBQsLC4vFdh+6MVMX4vRRpuWIaTgWElHwe5KbOMm50RoMyFs39Mj9/cOyczIuTX6/dIdxkUQgn5PWQEBe3tkqZ3QuvpvDuKE8Pjwud/cNymQ6o1nTloBfXtvbLSe1z5w09c/zeclxU8TmWQwfQCQ7FyGtcdSgs6htcEh2pDOSD4dkbSQiZ6/qkZUV/pxkvSFawGWj3ua5IzRCSEKSzySSSoXphQAz3tLNV0nylspRYz7gmGkaWYrjrmSUU6hS7B7CuWcj5uUeYhK9NGwQ57rHBR3tOYCt/xve8AYVwmCVXe4GDxvTWFhYWFQPeMYYQQk5WPKePIdoJj4aR5ktpqmEZmLqTcWaasG6yAoVte+K9Usim5KWQIOKVpLZjDYV94TbZXPTKmnyL64gb+osmXxWXpjYKUOpEW1epom5xd8kxzUdIyFfcMa/xdVkPuAaUqsgTqFAerQ6m9tRgzGoXf398tjIhAx4/NIYCstJ7U1y9pqeeblUlgPkMDlu1i7HXWku7UspyKJGQ26WHHIpj5v1Ry6Azd08Cs8jfuRcmxpNqRw15gpEElxv7lE0mdTL9XYLVSphugN1FxxZ2dxOtMRcrE1iLtYHcc1c6geMs3nve9+r426uueYaKTfKEdPkqqBG48kb1lBj8xDp6CGxy8meqxUOC2L6PMRK6D7kWOjKggBRxD/a7xvxCPvKbESVl8zTzeRo7zGQ6ZNkPq7jhxDD8J78D9GM475SOttkruFc53sXgyFF3ATY+G+j1KzEUTAkk7CVc9ui1wN46PBQRKlXTJC1lOAhZ+bjkfBFwWtI0VySeIsBKkUCNh6+JBTLLdhYbieZShGqHO2eR6LWrBECNKP4ZpveDcLvf/vb31Y1Kqrd888/X+oRFE0IbEhwuwtU3/3ud+V973uf3nsR9KBqBhCgN77xjdppz+gkCwsLi3oFiQKE1+7uQ4q/R5vZDuh8gEMjBpmp+5Bn7nI/d4nREKDDwynoMrZxNsQzWXVRafD71CIa9xMcT+bjZnI07InG5brt+yWdy0lTwK/J48lMRoI+r7z3mDWyqiFcMrtoeA9Jn8V0iRm+SjwDXyWJZxwEK20UjBEmwe857nqZ585nDEEA4574zE4XZC31e7tnfsOrTBJvKWd+GxjHJI67XoRJ5p7LNWedU7SqZPBMMWJ8cg7kt4xwhbUyvXBInAqP59lzyy23lL3LtVywMY2FhYXFwvk//IRnDjEN9Zm5Nib+8pe/1CK2e4xiNTQTu0EMk85lxO/1qaNJNk88hvC9tHWIbZM7pS95SPzC+/hUsML7tgda5JSW4qNj5ws4PddwsU21br5KTINIgdoM8QycpNyi2OmAC5HXhCvNNIa3FkHsynEjFGGc/XK6Fxm+yvrgK7ljt6PGUu4L9yy3QKfcjpXlcJKpBKHK0e4hpgGdZwv3E2JuE9Pw7+mfUxxL3vrWt8q//Mu/yLvf/e66+RxXYzxTU84qKs4odK6ZDq75dLa4LeYqpfvQdOHNtTtJk89y+IYyk8vJYoCbSjKfUKGKeX3eE8IVy01KS75dydFCYWyy2Uphm8y14zXYIBaGFKHU5INqSFElzMdj3eLyARE4mjCplgD5oICBWGMxc9YWCgomWOqzuWd+G2vDxdqMzabGR7DBMR/NOaiWUE1CFcD+8SBnIyhj/w0p4j5CAvdnP/uZFgYvuugitcf+5Cc/qUndehaq0D1OkAHBgQxSSAPvec97tHD3z//8zyrI4zwiKPz4xz+uBVZs5ywsLCzqHfPtPpypC7ESug9NFx6Jg7l2ozEGyACBivu/S4XfDY9LMse8eL9zXgrOKqPpjDw2PL5osYqxB+d4p9tkL5avGltc4kTcLEjsukfBlJNbwaV5zpPs47iPJkyqFfAZI46D03DccxGXLaWjhkniIZwhp8Dnz6wR7iulWiPcYxg3g2gD7recAp1yo5qEKoB7EDkGNtarOy9CsQjOzhqm25DfefOb36x/c+ONN9a1UMXGNBYWFhYLBzyVZ+XRRpkeLaYpdzOxe8TjXJqJTQwT8h3m/1orKfFup3JpGUgNUaERv9eJFxGtiFdkPDMpk9moNPudXNxCgcvj008/XZKcvZuvkl+Fr04fBWPE+OV2W4bTE8vNxe2/FvMQ5RLoTOerXAf4KuuDONOIEvhayjoesTvHTe76aM5BtShU4Xipw1ayUAWwHrlGbAgGp4/IJW/G8eBCevnll+u/3/a2t8mXv/zluhaqnFElNZqaEqtwwlEIEWgfbfZhMbCYTddhubsPTZKPY2H2YSUlB7KCoIc570eeE8dhBY8VZsv7FmV1zgdjKZJdRyNFZp7zcpMi1ho3VDrS6m2eO6QXqynIPu4i5YZ75ncxmzE3KVqM4pvkIPcro8avFxihihGPVSNJ4H7MA5yNezXr4ytf+Yp89atf1ecQRInZg4gM6xGs7b/+679WNS4q/D/6oz/SZ5n5b/ChD31IxVoQRwgkwiXO60MPPVR20aCFhYVFuQEP5llJ59p8xwO6E7uV0H1oRnqSnK600ZajyTR53CP2yRH+i4ym0ot6bWIMeB4xx1J0o7ltcc0oGGIazjVwu0guZ6LNzLFnHS52rnk1gc8YSSCuO8dd7uT69JnfXBfjuEK8iYDIiPFZowtdI24nGY7bJL3qAdUmVJkOrrkZkUuXO2v3nnvuUWHK3/zN3+gahp//+7//+7ILryoFNqaxsLCwWDjgCAgcDEeY77PSNBRXSjMxz3zy15U26jCVS6mrvs9zJOdGvJKRjCRzKVlMZYVaBaJkuuvhjUtVdEYMYhoDiWk439SETHPxcnNM9oFaBRxpPiKrageu4sSwHDPORuWO3d0N6ORFyCOzRmhw5/5i6nhsi6mdkrMm/0KTarHRXrWKahOqHG1ErhE33XzzzSpO+f3f/339HmKV17/+9WVfz+XAWJXVaGpqDJCxG6bwu5DE2AMPPKDFU2505Uzq8nBGuUkSCTJQaYW7VC4phzIHVJzidm7J5jPqttITWLsgRxdukCT5+MCQ9FnuJJ+bFCFQMKTIdJ8tFdxJPo57tjn2tTrfeylI71JcJ+z/TKKXmzgkxhDn+STxjDob4ldPo574jD366KMq9KlWocpsYI77H/zBHygB4llEx8WFF14oV155pVx11VU64qoewPr+2te+pgQfe7kvfOELKt75u7/7OyWK7sD+4Ycf1oCfwIMERr10X1tYWFjMBmNnupDEGO5wJG5w9ip39yE8z4xlXcxIz6XCbfsOyUODo4edVQp8D2eVC1a0y2tWdS/4OYhoZLE22QuBW2hNTIOIFt5lrLWXUjxi7KKNg049Jfm43nwllqs0+/LpoNhjXCTZgFuMP9ckJZ8V02SCo209CRoY04wbSaUVrEoBmjPe9KY3TY10+ulPf6q5EOIbYppLLrmkohqplhI2prGwsLBYOOAJ5HtxR1jIc4MCKs9YnDwqpZl4sSM9lwKM+3lk9HHJ5nMS9B6uH2XyGR1DdHrridLob1hUrYIi9nKPeDRuCWYUDDUiU6OhbrKU68AIkolneL96gWkyQThUDflrU8djg7MhaDLClWKjYGYCThOmqbYa3N9LhVoQqsyGRx55RK644gq54IILdH1Qj6LuYGo01CLrASNVVqOpKbGKex7iQsA8RDqPSNKUK6lLYpoiNg9DFIOVmOTTeZOZfknko8hVxCseyamnSl5avG3S6p/76CV3UoQbJMIcZsKVW6Bjus/MTPilIkUklCkocN1JBtVTkg919o4dO+TUU0+d17iuSgGBiiFFrBGunRGuzLZGzMijelNn17pQBdUuqtTrr79err76av0e3QeMAuJn3NdQ9dYL+Ey4P9df+tKX5GMf+5h2an74wx9WUShrgt+rxAKmhYWFRTkBP0RksBAgVEAwQFBerqQusQKCTRJ9lczzDsaT8t3t+ySayUpjITkTzWalye+T921eK93h+YsOSOjC7Ynjys3zuA6Iq4ln4Ks4J3AtDF8tZfKB92Hd4Uw4XzegagafU+Mkw1qvNicZ1ghxqFkjxDesEZPonWmN8HcIs0l+IVSptMLNUgtVuL9RsKo1oQo5EGyhERoiUmEt8D2auohp2G666SYt3tQLbExjYWFhsTieRFyzECAQIRdPncY2E8+OHdG9sjdxQCs0jBrCaSWbz0p3qENOaN6yIGEzriI0bFKrKDfPo6hOLh2+ioAF3m1cJMktlqp2Br+lToH7PsX7anTOWyiIA2ggJ46rxhytGZHLcfCVuqKJZ2ZbI2bkETEsdZp6iWFrXahC3Q2hyp//+Z/rOBuuK3maW2+9VeMZ6tC333671AuGq6hGY8UqBUCeEImQrOFhx01qued9mxmAxm2hkm+QkJ6x7JDEclEVqeCo0uhtllZf+7z3G/LDDZIPRiVabRUjRSbJuxhS5J7nTrKrXhwF3HPNOe7lVmcvBbiWblLEmnATZ/PQN+QPsQa2WvUmVOGc1GIB47bbbtMZf9/97nd1tvtM677Wjnuunw1TuGFM0kc+8hH5q7/6KxX2fPKTn9Rn77/927+VXaBoYWFhUQtiFZ41JFwQ4COcNTHNcroVmuQm4gV43lK6E5YC2yeicteBQRlMpvS/u0NBuXRVt2xsbljQSE8SnJXqGMjaMGJ8LJ7h4IavLkYwb7rwKCaw1QvfQdiBQIdzxzWvhSSfGZHLOmGNcB8xiV4+y1xb7k/uAkYljDxaLtSyUIVnzvve9z49vnvvvVcbDKbD3dleb7AxjYWFhcXyiVV43uBghmgADkI8s9yjLauhmdgAccqu2D45mBzQeg1u913BDtnUsE4C3vkJqalRcNw86xFiV5pjoBnzAV9l478NV52PQ+BMjoFwYPhtPY227OvrUxE6YmQ+a9UO1gTxqWkwJj/hdpE0OWrTbEF9ptLGFS81p+W4OQ98xmshhnWDOJVxNn/yJ3+idYdi19XWaKRiazQ1J1aZLxFyzz50P/C4mbGYjZtGKZWaxfYBm1XmR1dqcnMmMPoHIsRsRNS784UZh4KtXyXMwlsoKTIz4ed6g4f88WDgw1+NXXiLtYHk3NUq+TNrxJAi7kmsDcRICHT4jNcC+Zsral2oQtfh7/3e78k3v/lNecc73lHu3alImBEU4Bvf+Ib88R//sd7z+XwQEJW789zCwsKiFsQq7njG7RCI04oRrixWlHA00KECr+eeX4nJzZmARfahREpgKLipeOfJVQy/pfGgHDbZC71WJuYlmYcQwawR+Plc+ZpptqjWLryFArtoYjlyBNhFV3IBYzFrxO0iiSiFBC8iFu5PWANXy2e8FKhloQpJa2ygaaT52c9+Vlex6nxgYxoLCwuL+T9fiE/me69l4++MQyAbr+UebbmUBdZqaiaePhIokUvqOKCQN7hgfkvseOKJJ1Z8Eds4BJq4FyE5+XfTYDzXgqtptkC0XYmjnpZjtCWxO+eu1sAaIXYxMY1xGmVMEDUaxh0x9qheUOtCFQRnl112mcY1n/3sZ6vm3r2cyFV4jaauxSocuiFB022yp4sS+F23KKFUCSneh4VAAogHIjfLelNuVoJN9mJtk9lI6M2FFLnJXz3Nc3ePPKoXu2jWCF2HdNmyRgBJbXMvqfVzYOY+1qpQ5b777pO3vOUt8s///M9y7bXX1tzxlRJu1fI555yj9uIPPvhgVcxBtbCwsCjHPRPByUKEKtNtsnkdw1WJNxAiuEUJpQLJZIQqleqUuFTgvOOaB+ep1uSmsU02M+ERIBiuOpvTqEluVluzxWIBt4ff9vT01I1dNOucBNa2bdv0nkKC03Sxzqdho1pBZzfOoLUoVOHaYv/MjHJim97e3nLvUkXDxjQWFhYWSyNWcTcTT6/RmIKziWkQJRjhClykVA2g1dxMvFjQ4EAsh8vEli1bqo7fGodRs0bg6+78+0xOgMRBOEQSR9N0UC9CbM4X6xxn0FrktzOBmB1eTxwLqMOa+8h8GjaqeXxtrQpVyEsgVGGk6ec///m6yUfVWjxTt2IVd1KXizPbAuZ3eWibBx7vYR52i1Hzmgci5I0HYr1Y6LrJ3ymnnFLUYrbaMFdSBLnmwVBPyU3AZ41OLQIKHFXqZeQR4IZPty1EgG5mo+ZFDEcXq0n0Il6qpfVghCqs/1pc6zzEr7nmGp3z98EPfrDmjm8pwLMOG75/+Zd/0WIHNosWFhYWFosTqxjhfTGhSrHYw3SeIUpAWGGEKyRqFvosQ+iAYIPgduPGjXXzTOQauWc918JIOzg7oia306hblMCxuue511NyEyC6p+mg3tY6HI4CBvcZYhp4vlkjpmHDrJNaS/IboQoxbDW4Js0HXE/sn++//351VKGrzuLosDGNhYWFRWnFKqZG4x43NxPHMk2BJv9OLt7dOLpQHsIz8dlnn9UYCV5PjrZewHnEWYQcHU4yteLy7XYanS5KANQoiOWo2VCfqrXi/UzgM0RO9uDBg8pv66lxnjiXmAZBFk6C5DFYJ3zuieXNGiG+rSWxQ60LVagxv+51r5uq09TStau3eKbmxCpzIUKzdR8eDbOpefk61yQlZIqbI8XqWplxPRdwzs0YGJKbtUr+ipEiyBBWgtiLkeCst+Qmn51aSeTPFabjlOPGZq5YF6shRdwDTJKX363mBysJbEb/QPxqUahC5+Eb3vAG+dznPqediLV2fEt5L2D24fnnn69d9xYWFhYWCxerzNZ9ONd7snHT4CuJXSNcoSA719eC6xDccl+vp458YjkSPtVik73QuI04xsQ0ZrQlXzl+nBJrcaTnTICv02hSS4n8+SQ3jSjL3b1sGjaMGJ88CfcPE9OQ66hm1LpQ5WMf+5jccccd8vOf/1w2bNhQ7l2qGtiYxsLCwmJuIE7hnlmqZuJicDeO4vRI46iJaebaKFmvzcSG6zDmEOd3zlktwj0i14y2ZJ3wPWKbenIFNaIsGmjht0s5IrjSQM6DRupi42tNw4aJaThPpt7LGimVe1M5YznqcbUoyuIedumll8oVV1whX/3qV+vms1yr8UzdiVUWI1QplZqXmx83x2q1VlusuwZCjmq1yV4oKYL44bDBtYYIGMeVWnPTKHbsdB/yWahF5eZsMO5Bc+k4dY8dgxSZWaysk/mI4CoBtS5UwS3mqquukr/6q7+Sj370ozV3fMtpNWdhYWFhMTNwK1jIKNOFcnQK8YaHwNdMkpdEXrHXZh8QoNORRVK3ntw1jE02SS6EC/XwXDPjTxnpSSwHEFebuLfWXRNpOKDjtN5EWfON5bhvuYsBJu5lm48IrhKALToOQrUqVPnEJz4hN954ozqqVEonXTXBxjQWFhYWixerlLJGA+CopkYDb+X5bWKamWoQ9dpMbNw1+vr6NG9da1xnJrAeabZAjAzc40+Je2u50M3nDDdU1jz8tp5EWdwTOPa5xHIm7jXCFeocJu6lRlNN5w2hijuWq7X1feDAAXnta18rF198sXzjG9+oueOrx3imbsQqpvuQG7O5EKW+GHNR8/IhQsGIim/NmjVSLyBxBfmD9HFzrKbie6lUypBe1oQpBqDoNMUAiFGtkSJch3gg0nGJQruWjm02GGt0yC/kb77uQfw99w9TMOK+YkZKsVWyyMsIVRhzVYtCPDotUOr++Z//uXz84x+vueOzsLCwsKh8scpiuw+PBl7XjIFhAyaeMc5vxFske+pNgG5ECwg24Dn1NDKDRBexHECc5O5QdLtpsE5qrUOP+P25556r6Y7TYuAaI9Lm800X3nzvNdwniHtNope/d7tIVnIxqNaFKp/5zGfk+uuvV6EKeSkLCwsLC4vlFquUWqhSLJYy8QzNgWYMDJtxfuP75PnqsZkYETYN2MRytcbd5+KugVCXupxpHGVjLZp4hmb0Suaq8wWfQ+MexDWvtbGds4HmGuJ3Yjkaa+cLt4skIhbuJWadcC+p1PtGrQtVuK6M/jn33HPVIaSWPq/1jLoQq5S6+3Ahal4K1nxo+Dc3CB569QJu6twc6bjEJrvWbo4zgXWHUnffvn1FO05NMcAkemuJFJlrznEcf/zxFfvgXoprjjCJpHaprNGnj5TiNU2iF4JUKeeWa05Cu1aFKhDbyy67TN1UPvWpT9Xc8VlYWFhYVF6heHqYttRJ3eng/dwJPN6bIjPiBArY9SZAp4ANt0eADg+rF5h57lzzYh2nphgAXyW2IWlnigHw1mrmTEa0wFqfPtKzllHqpgP3SCk21ozbRbKSEua1LFThns4Y029961ty7733am7GwsLCwsJiqcDzn4JpKUeZLgRukTVCWrgqvBbhAqLNehKgcy7cAvRK4mBLDdNADv8hdz2TmwbrBC7snp5QzTGvGQNjGsireaTNQpsOShW/m3sJG/cSzAlMjYa6X6XUPGtdqMJn9PLLL9d72Pe+9726WtO1jpoTq0xX7RoCZA6zHB9O3AZQbVLMZT+KqXlrFUalXE822e4ZgCRsSXQd7TobUmSKASTwqpUU4QrCAxFlej1dc2OHz/VDqLIUn23IBsGUCbBYF4YUldOZp9aFKhBbhCof+tCH5G/+5m9q7vgsLCwsLCpfrLLcQpXp4P1Nsse8t5njzNdaThAYm2wz8qjWCtizgY5LkpvEJccdd9xRuaabq/LVJPBYJyTwqoVDuZsO6ska3Qjl4fXEFlhll/qamVHKJtFL7Ghs+lkr5ezuNWNcieXm645Z6eC8//3f/7380z/9kwpVcMuxsLCwsLBYTrFKOZqJp4P9oRkNngoQrZgaDc/+auGqC61PweuNGLmam2TnA9YdYmQ4HvznaA3k/L57egK81Ties06qaQwM9SVqNDM1HdQyiOOI4ZfKNMCMUjYxDXCL8ct1rrnHEcsRh9eiUIVzjus99acf/OAHVVUztahzsYpbqFIOAmQeCog1AMlNMF3NWyudZzPZbNXbyCPWHOIkVLgkN+dLYmYiRSaBV8mkCHESCu0NGzbIxo0bpV7ANUOcxGea5OZyJFndNv3cU/hvNylarqIRa5XRP7UqTnrhhRdUqPKud71L/u7v/q7mSJ6FhYWFRWWLVdyjTMslVHGPvznmmGO0+5DnP9+Dh1DcrlaR9dFQzzbZOGHA64njuO7zXXecOzdX5e+NyJr1Uqmcyi1Ap+mgFE6J1VTEILlJLIE4aTnuNcTMJsnLeuEzZu4ly1k0qnWhyle+8hX54he/KHfffbceo4WFhYWFxXKKVSqhmZj3J57BJZIajXFXMVyVGMbUaKpJZD0X0CCLUKW3t1e2bt1aU8c216YDYrmFcLzpjuemCR2uWslxArzeTDpAgF6psddSYM+ePdp4wOecmtpSw92EzlohvsGV08S+CEeWU6hC7XAhY1wrHdQdr7zySs1P/OhHP6orZ6h6Qc2KVSpBqGI60cxDYbqibnrnGTeSWlDzGsUq9rn1ZpNt7PS4djwQS5Gsn4kUVZozj5n7COmtJ3ESwdczzzyjpITEXznERHzmCLbMOoGQuknRUu1TrQtVSFgz//BNb3qT/OM//mPNkTwLCwsLi8oFcYJxUiln96Gb19OBB/8sFvO4RdZwEMNVqzmB4Ob1dCVV87HMF3DKJ598UjuWSmGNbsbAmAQe67sSnXkMr2df4fUUMeoFfHaNU2K5ihjkcYgpWSN8hXubLlYSzUvVoYhQhQ1xUi0KVb7+9a/L3/7t38odd9whZ599drl3ycLCwsKiTsAzyAjwy+kQWayZeDqvZ99oQHSLrE08U04n61KAY0J8T9523bp1Ui/gmiJOIl8PxytF04F7pBQi60qt5VUCry9nLt/w+nK5Y5omdNYK9RrWhqnRUMtbiutR60IVzuNVV12lTS833njjsgmALJYXNSlW4cFR7u5Dkisk+CABmzZtOuo+sN+1oOY1nWh0WtabTbaZ7c1DZ6ns9KaTIhKoJoFXTlJkXHSKzX2sZXCPMd22JLQr5UGJWMWsE0g5Sm+36rsU66TWhSqosC+99FKdgfjP//zPNUfyLCwsLCwqG3A+Eg7l7D40Yy1J3MLr51LEhYMY4QoJBeIYE9NUsjvgTJ1oHDP8tp4sk/fv36/xHMe9cuXKkr8+a5rRL2adGJG14arl4tNud0ySm5XC65cDXA+Smwt10Vmq+w/dc8Z1hfuhcXBC4FQqBycS2gjyalWo8u1vf1s+/elPy6233irnn39+uXfJwsLCwqKOwHMIkUi5hSpHayaeiYMYrspxmNx7JbsDFsPevXvVMXqpeH2lAgE04iT4I44qS8HreQ8jcKKmx7oy8Uw5BU7GRYeGg7nUJGsF7jGu1Gho9q4EcA90u0iSEzHClVLVfGtdqMI9/A1veIMKzm655Za6aiipN9ScWOWb3/ym3owuvvhiXcDluCFDBLAYgwBhrzZfVKuaF/KJQIeEI0Sgnm4c3DRJaJM4O/7445dl3VUKKTIzAHkYcvz1ApPQhnSQ3KzUbluKXe4ORfbTrBNI0ULWiRGqrF69umIS2qXEgQMHVKhy0UUXyb/+679W7D3XwsLCwqJ2C8df+MIX1OJ0LgnVpQAJDxJ88E2EKgsRmlD0N0lenCooBJuYppLH6ZjxNwhycRapNZ4zE0gLGIcJnGQQkCwH4JVGZI3AiWYHs06WK55knXPNicOJY2tplNVcEtrEsZU8xpW1aRycWCv82wjhiGkWuk6MUKWSEtqlPGfXXXedfPzjH9ek7oUXXljuXbKwsLCwqDPw/KG5EcfictUz5ttMXOx5atwB2eCMbnfAShW0s9+IVMhvEsvBm+oF5MHhtvB5YprlcHCcLnDiv90Cp+VaJ9SJiOHrzUXHrPe+vj7l9ZU6nolakruWB9xjcheyTsx6Jx5iwkWt1TDIFVxzzTV6777tttsqasqERelRc2IV7E3pHuEDT7ER1RVfl2Mhmzl43Bh5GJZiJlq1qHm5MaLaZH9KNf6mWsD1Ibm5UOJbCrBO3DPhl4sUGWu15ZoBWEnkwhRwqimhzX6zToyi16wTQ4rmQuCNlWCtClUIpC+77DK1yP5//+//VWzgaWFhYWFRu8Dd66Mf/ajceeed6nRw9dVXa0xDfLEc3B/hObzeuAWWIsFHrGDiGbiIcX1jq6RkUr3aZLvdMRFhl6twj8DJ3XnGGnSvk6XgnSaONQnteuJ+Jo4lhl2/fr1UC8yYXDaOgXViYpq5uo3WulDlBz/4gT5HsMm+5JJLyr1LFhYWFhZ1CESTf//3f69OjTSDEdO8/vWv1/zjcuQSF9tMPNMIdhPTwFuNcAUOUiljLcn94n7OvpKzrqfirnHHRPyOm0w56masE8TgZp3Q5GrcAVknS1VDMHHscccdp00X9QLO93PPPae1YHh9JTfFuEFNxqwTYhqzTkxMM5emaOJYajQccy0KVYj53vrWt+q5uf3222suZrOoA7GK+bDzQf3Rj34kP/7xj9XKmACdJC9FyKWwd6VoVGZBogAAtb1JREFUjVKXDxGF+6W4MZqHHUlEbmR0PBpBQjnVvCjcSPBxXklo19qNcS5EgPl/FBMqAcVIEevDPOxKQYp4jxdffFEV2uVMaJcDpvOScwDpr5RgZKHrxCR652LBXutCFT4vjP2hUEFQXa3X1sLCwsKidhxWGN3w3//93xqcw+eMcOWMM85YEs5N4RdBLgndpZpvTQxjnDToLKILyAgS4JTl4heIhOC3xDPsS72NtWS9wesrxR2TdWLG5PIVbmpi31JZJpsxrghh6i2ORQxETFNJcexi1olxkYS/m3UyUxf3jh079PNei0IVQB7swx/+sNxwww0a21hYWFhYWJTb8YBnEzENccYFF1ygMc1VV12lz+tSc/+laCaezfWNjdqIW5BQLvdteJHJWVOfqlQX8KUA4hzqUz09PUsWx84XXAfWhlknrBnWo+GqpRqTS30GwUa9xbGc32eeeUZzGPD6SoljF7pOTI6EuBzBlanlFROc1bpQhXrmO97xDr22d911l54Pi9pHTYpVpiffGNXxX//1X0qKmF3GiCBI0RVXXFGSRBdJLogAIgBGoSyHy8Jsat5SznCeq002xWs6ECuBCCwXzPibSiYCM5EiQ54XQop4TVTxFBdIaNeTQhvSD/FFGAbpr6XOS0OK2BCxkLg164RrzM/NLPtanHnJeuaZgN0/nYjV4pZjYWFhYVEfQFR6xx13aEyDgAWROAleYppzzjmnJJyEhC7JHpJ7zLheLhGwW5BgxhWykZBYDr7hTmgjRK6nRIiZ527cAis1oW0skw1XZV243QEXOtYSoQp/v1xjXCsFnEMabWqt89LtSssxsm5Mh6LJkdS6UOXmm2+WD3zgA/L9739fnxEWFhYWFhaVAjg3zmbEMzQXP/LII3LuuedOxTRwksXyMdNMTOwEt10ulwV37p1Cs8m9sxVrBlwK0EDtFmHXUs56LiJsYhpGWuIWWKm83rgDmjG5JvfOttD6Ck6B1DupUyzXGNdK4f04CJmGi1IJfyoB1HlNjoS1zX3MxL7kKqhPUaMxTri1JlRBiPPud79bRVh33313Xa3rekfNi1WKFdmNmpdkLLN76U5cqA2dUW2S/CDJVS57MUiRcVxZLjUv78dDgeLuciW0K4lcQwaqbfwNpMgk7xZCikznJaKXWiMCc50BSJCBKK2WST/HaooBFAZI7EKEVq5cqfaZtUaCSGpfeeWVKsTh+VCphRoLCwsLCwvD5wjaiWcoTMJNeI698Y1vlPPOO2/ezmBwW1PAheMQR5R7hjMcBK5leCp8eymSjryn4bbLmdCulG4l4lh4D9e9WhzliEeIY8w6gaO6mzbmchwkNeH1OAgRy1ZqQnspwHmjiIM1Op2ntQrua1xns07IkRC7su7psmat1BqY4/6e97xHvve97+lsdwsLCwsLi0p+TjOmh3gG4covf/lLFZIaF0nGcc6Xn5WjmXi23DsbzYAUl01Ms1TOD7wPx07e9thjj60rbss4d+pT1OWqSYRtcu9GkABPNetkLmMtTQzP56jeGi6IB40ojftGLefxEeBNb9rg2iNKoy5Za822xPbvfe97dW3fc889NRmzWcyMuhKrFBtjYoQrPNDPP//8KRs6Hu5HeyiYETBmxnOlEIHlUPMa1SY2Uwhi6m0OHg8HiEA1d2NNJ0UQZmNDV4wUkcxHpczfIVSpZSIwHSQ1SWjXqrXa0QIe1LqsD84DMAUBilnVLtpBcMg9n2MhQF5qAdbXvvY13Xbt2qX/TaHgL//yL3VEXTHwfPrc5z6nzysIGwWVP/uzP1OFsYWFhYWFBbzsZz/7mcY0N910k54QnMIQrrzyla88Kl+D3yHgp/gPtyXpUSkJKPipiWmAiWforCkFF+PcEQOCerPJNvPccRmtZiGyW5DAxnEZJw3WSrFrylpHpLNhwwbtvqwnGPck4plKdQZdKhDDMx6aexxrhq+mQ7Gc48dKBQSM73znO+Wb3/ymWmYvNWxMY2FhYWFRSj4HRyEnRw7s/vvvV7EJohXqNHMZQ05uD15vHPMqhduSRzU8lUa5UjhpzOSYx3miPlVPMGNcq70+ZQQJxm3UNG1wTMXGWvKZef755/X3qdFUSgy/HCB/wRQNU5+qNbHG0QR5OFKxHsiXcA6o0RgXyWrPZ/A5+NCHPqT1dnJcSx2v2nim8lC3YhU3OAUUDs2oID702GkbGzpG3LhJkRktRAK1kkfALIWa19hko1olqVtPqk1352UlzXNfSlJkZsJz7CaZTyGjWjovS0UEEGuw1qs5mb8QsNYfffRRdU4i6OHzT4LfqHk5NxSMTKJ3uawtS3l8BL+IkG655ZZl+UzzPny+EJ1wPr/73e/KF7/4RS2aIFyZjp///Oca0GLTDun8yU9+omIVRkBceumlS76/FhYWFhbVxedI7v7whz9U4QrPaYQrPOsuuuiilwgy4X10rMBtKlmswfPSjPZgg5caMcJChbOIGnj21qNNNsl8hCp0Htaaq4h71jfHOT32Jc4hjq83Z1CAUIOkNsWfeutQo8mGrtMzzjhDP/MIwI21tnGRNPFMsYJApeO+++6Tt7zlLfIv//IvKmhfjs+0jWksLCwsLJaK9/OMvvHGG7VOc++992o+zAhX+Pf05xx1in379lVcM/FsTaPwD8QqhqfCTxay3/CbF154QfOJNF7XWxM6/JY4ltpFrcA0bZi1wn+7Y1/WiWk2wVWklupTR4OpT/GV+lQ9CVW4f1CjMfkL1gF1DbNO+LeJfVkv1eYYyzX9wz/8Q63LUwvBAXWpYeOZyoMVqxR52EFwEK2wYUOHMMGQIqxymQFMwuPOO++sKrHGdDUvNzeIzFzVvPVsk01CC1cRCEIlJ/NL3cnKA4//BpCfenNUQeyFUAVBRr3NsqfjkGPHepOAb6bxY0a4QkEARx5DoEvVIbBUYN+xx+aaIvwopwqd9YVghWfLXMDnkOLj3/zN3yz5vllYWFhYVCfg7b/4xS+mZsIjWsfFi3jmNa95jY5Gfetb3yp/9Ed/JB/96EerRqwB/+BYTExjuonmMwKGv0eoQgJk69atdcXvSIwT08DtcBapZSDWMsk7Yl9E1cTDCLA59nq67qaQUW+z7I09OvkdkvnF+D73SiOGM7Gvu0Ox0ps0HnzwQY1p/vEf/1FjiXKuaxvTWFhYWFgshWCdsafENLiIwWFpLsZFkjzt3/7t38q//du/adxTTUJkt3CWrwsZAVOrYo2jAa5GLEvtgvxopeefSxn7EsvATVkf9eaoQmMOMTzHzpqvdI6+FEIVnJkQphUT1pvYl43PBnVbI1yZyz2l3J/pP/7jP5YHHnhAHVXKeS+38Ux5YcUqR3kg4CBibOhQdUEeSHR95zvfkVe/+tUV/UEvpZrX2GTzfWY815NggZs9D0OuPZ1o1ZLMLwXoOkXRCAHg8wApMsk7tlpWsCJmQKzBZ6Le5n0eTahSDKwNNyni82KEK4j6Kun8IUKiQMdn+/bbb1fSVg6QHKf7ndny3GNw7pkNfAbpKiEwp8uEYqOFhYWFhcVcgv+HH354Srhy4MABTZBeeOGFct1111WV+H76cxERfX9/v8Y0PN/pNjNJmWI81YxxrUebbDMCBr6xHJ1KlQRG2CLWgPPBc4nnDU8luV9JPLXUwEF2586d2mxST4UM7g80GFHEmUmoUuxvEOCbPAmxsNtFcqnHhc4X3NdpqmJk6Ic//OGyrWMb01hYWFhYLAco2uM2TI2GXB75eQrY/+f//B953/veV3XOaO7nqBGuwEGIYdxu59Of78R2Tz/9tJ4P+F0tizVmGgFDPpdjrzRutpQgfscdk/w7a4S6BY6AJvat5XNhjp3jpi5ZT7U5rjc1mtmEKsXOF/Ve7ifcW/gbE/uWaqRyqcD9DAf5u+66S4Uq5WqosfFMZcCKVeYIEh10IxqlK0ovCth0J7JVs+sCxM4kZLiBkbwzjisk9Ej88kDg39wU6+mBwIOfY+fhX48jYDh2I9Yw33Pbi9UqKeLYIALYo2/evLlqP9uLEapQwNm4ceOCH/DusVLAJHkXatdfSpLHHHcENRChciTtmSV77rnnanBF4vz666+Xyy+/fMbfJwBlHB37zrnD4vv973//su6zhYWFhUVt4Otf/7r86Z/+qY4FMqMxLr74Yi148iyq9K6bo/E303XGv0nEmEQvQvt6tck2Yg2udz2OgDFiDTrwiF0MTzUia9Z7pSbvFgOEFxz3nj17tPOyXOLsahGqFANiFRP7wsd5HRP7LtSuv1QgXkPA/ld/9VfqjlWOfbExjYWFhYVFOcD4kze96U36rD/55JN1DCoczjiunHnmmVXL5yjcmnyq4akmnjE8FpdEMwalnpqJ3Y3U8PpabqAtduw0ObrFGtTrDE/lM4GYwayVWhIwcezwXhz/iWWr9bO9XEKVYvcUHKpM7IuQxTT4kBco5+eIffvEJz6hDbmYRNBQtNyw8UxlwYpV5gBGASFIeec73yn/8A//oDcGHgJuGzpUX/wOiV7mhtWCmtco7xCzkJCp5uNaCIxFOEXiehMsmGNfs2aNPiiKHTukyBQE+P1aIUV00yHSwXIMV5F6uu6lEKoUIx7cLw0pgmhBiox4ZTkDKwguc9xJXP/0pz8tmw06+0HhgM/Nj370I/nWt76ls+ZnclbhHGJhTuHtnnvu0fE/EDk64i0sLCwsLObK8f/X//pf8v/+3/9Td5VXvvKVWtDFZQSXLzoUEXLgHElM8/rXv14TotXKgygyG54Kt4NvkJghoQ1XrRe4LcJJaFeri85ij30msYbhqaYgwBqZ71ipSj52XJQ4duK0ekGphCrF+Dv5EdOhaNx52BC/L2eehCIVI0H//M//XD7+8Y+X7T5tYxoLCwsLi+UGuTHiFPK13//+95XjwPvvvPNOjWdwXiEnjXCFGg2NYtXadGuKzCam4b8B4z3gd/Uk1qAGQZ2Ca0t9qlqv6UJAoyN1CjjtTLU59wQFmjMRdhgxfjU3o8zl2GtdqGLMA0pxDYmTqP2YGg11BuIYI8Zn3SwXuJ8huuc+jqOKaZRfbth4prJgxSpHAclNivWf+cxndKb7TL8DGUK4cscdd6itslHzkhSs1hspI5CwlTPEb7qat1qPay4gAYWtXD1ahENqzCz7uR57MVJULXPx3CBZDflFqFEu27FaEqoUI0W4FZm1wntSNDGJ3qUUOVF8wBaUxD2jdCqpq/iSSy7Re803vvGNOf3+Bz/4Qe0OJxi3sLCwsLCYC/71X/9VRffELFu2bCn6jH7uuedURImYBRELghaSvCSEeU5XC58rZhWNQBR+CveAm5qYhmRvrYIEEGN/SHLX+jz3YuuZWfZ0ps712E3yzhQEiH+NwNq481QDOI5t27bpeCzEGvV23Y1Q5YwzzliyY+e+QsxrEr181twukkspciI/g+Pvn/zJn8gnP/nJirov25jGwsLCwmKpn/Pwule96lUa1xQTLFDcpjkN4cpNN92kgo4rr7xSY5rzzz+/agUexDIU7XE1p6mYzS2wrmXxhnF+5zirebLBYhz/4ZdzPXbWhtvtnLVhajTVVM9DoESdwkw7qKfrvhRClWIw7jxs5AyInUzsSz14qd6Xe/n//t//W7797W+rUGWm5t1ywMYz5YUVq8wB3NjnWtjkAcrcRIQrt912m3buQ4qMDV21kAe6/inqolrkBjVdzctNxdy8eGBWy4NuLqADjeQmD4Oenh6pJ/Bwwv4KNSOOMgvBTKTIzNqs1LXC+kaogovOunXrpJ5g3GSWUqhSDASRxsmJhC8FI5PoRcRSKlLEmvzQhz6kaxsSVGnW/3Sxs+a+853vzOn3GQFENwkWeRYWFhYWFnN9FlKIJ9kz14KvEa7AEV7xileo4wqCfIT51ZAsQqiKVTTHg1U0YgME1iaegXuYsR5spXJgqAQYi3ASXST1cYGoFxC3IrZivSPWWOioUrfAGq4MNzVrZTm7zhYq0uHYa1mMNZubzFIKVYq9LwUkk+hF5GRGkBHTlPKzh6AQocrv//7vy2c/+9mKuw/bmMbCwsLCopJqNMQC5M2IaXAnhh9ToyGmwam4WoTIJlfvbiqFm5qYhtyqEa7AParVGXCmXD3xHDnTenQ/Jw4n9qbZZCHHTlxEzGtcJI3A2tTzKrVOCZ9GrMG6Pu644+rquhO/P/rooxp7LqVQpdj90u0iyX3ErJVSipyInb74xS/KV7/6VW0mZrRTJcHGM+WFFassIVCnGRu6W265RZNFbhu6SiQPphOrr69vRqtok5ChW4uHHTczc/OqdjUvM80pAjP/j4d2PYFrTvclAqVSFfOnkyLWjiHQlUSKSOiS0F+MSKdaQYADASy3m4wROZlELyTICFdI+C50rRCMfvjDH5aHH35YR+1A8ssJZjGSZCbQIvC4/vrr5Qtf+II+K17zmtfItddeq2vw85//vP4+X0m447wCYUUEieX31772NXVYsbCwsLCwWErA3Xbv3q3xDNtDDz0kZ599tsY0JHoZm1iJySPiMJJ7FKwZ/VOMRxDDGDECHMQ4Ay51J9FyzTTnmIlpqrWDdDEiHc4BIp1SFSEoApi1YrrO3CKnSlgrxkkHp0i440JFOtWIcglVZhM5sblH5RoXyYWuFca0EUMw0pT4oNwNIDamsbCwsLCoJpBzfPDBB3X8KcIViuGXX365xjN00lcqb9q3b588//zzMzbUGgdrU6Ph3+TbDfeoFkFOMXA8CNC3bt0qa9askXqCcX4nT89WqhEwcFMjciLH7F4rlRIzYgRAnYL1zrWvhDhruUDMybEvt1BlpnqeiWmIsY3jKHW9ha4V1uBXvvIVFavcfffd2lxRTth4pvJgxSrLeLO55557pmzoSB4aG7oLLrigIh4I3HggATwUEKrMpROLm8xMat7F3LzKJdJh9BHHXmymeS2DkSIkwJZSpFOMFLFGjCChXGvFKNSx0yu3kKFehSrFSBHE3BQFKCa5SdFcgy1e5yMf+Yjcf//96qhCQa3c+MAHPqDPAsRhkE8UxP/rf/0vFaoAuju4FsZl5VOf+pT853/+pwaoFNFQlH/0ox+Vt73tbWU+EgsLCwuLegNcjmIw8Qwukr/4xS/UsYR4hkQvfKISkknwTTrwEF8jRJ6rXbJxe+MrXMOIEUrp9rZcIh0K5PU219s46QDW5VLFFqbrzKwVnDNMkhcXyXKsFeMmQxxP0q+enHSMUAVuXWljj8yoXDYEcVwX0+TDfWWun8+dO3fK6173OrnmmmvkS1/6UkV8rm1MY2FhYWFRraD+8atf/WrKcYWiLM9ZYhpyc5XAJYzTJfl6eO1c3DEBYhWTdzeumiamqSZ+SA6UOo1x/K8nEF8wxhY3laXKYxuRk1krxBBmrcBVyyXeYs1Sp0CcRNNmtcTgpRSqEE9W0tgjU/s1MQ3rhrVi6nlzdRzldWi8ZfzPHXfcoQ1Q5YaNZyoPVqxSBhgbOpK8kCL+221DVw7yQCLFndxbiPK2WtW8JPeY/Uximw68erNLJvlFxywiHR6Iy/W+ECHjuFIuUsRaJbFbSjeZakGlClXmslaMDTtrZabPK5/rj33sY0qAuN9W8jFaWFhYWFhUG3g+w6OIZYhpcC8jqWKEK+XqgjIiZJJbuJgtZB9IYJuRlryee6QlfLVSEkczWUXPR6RTK0AET/chcTRC4OVybzRrxSTvOOdGjIAz4HKICtgHEtpm5FOlxtxLdR+i4YKGk0oTqhxtrYC5OI4ynvnSSy+VK664Qu2yK0GoYmFhYWFhUSsgd/jII49MjT9F/Pra175WYxoELAjAy1WnoIkPbrdQfoOI3YgRqHlUy0hLU6eYj0inVmDqFMTVy9lQa9YKHJV1Z5wB2ZaLX7NGiecYdUWtop5QqUKVuawVXEZN/DuT4yif629/+9vy6U9/Wh3jzzvvvLLsu0Xlw4pVKsSGzqh5KcSSiCDJe/HFFy8LecD6jocBNxSK9qVK7lWDmpfzT3IPsQ5ijUrZr+V2k4H8loOAz0Sgl4MUEYAw0x1reB6q9QTOMcUM97zTaoGxYWej+wGxCuuErxRnuH8R2GHlxj0VR5XNmzeXe7ctLCwsLCxqmlPyTDbCFRzE6AQjnnnjG9+o7nXLkXAxToFY5i7FSEs2YDjqcokR5gL2kfE3JrlXyQmupXKTwRmTa1+ua2KcAU3yjoYUt+PoUowANmOPeC/iuWpxNa03oUqxfTcukmzEN9xPTNMG6wXgZEXBjLzQN77xjYq531hYWFhYWNQi4HI08hLP4CS5a9cuHRFETMPIoOVwW4TTwe3geIg1SlWnQNRs4hlGWpZDjDAXfvTcc88pN6JGU846RTndZMpdpzDOgKwVYkxqk0aMQLy1FJ8BM/aoGusU9SRUmWmssnGRJBZlrfDZJZ7h/sXn+nvf+566yt98881q1GBhMROsWKWCABFhDrwRrvAhp4sGNS9JiqUgD0a1iFpzKTsgK1HNa+a5kzhk/M1SJBArmYAj1ICgVpqbjJsU8RkwYgQedqUiRYYALuXYo0pFNQtVipEi06GIjdwvf/lLedWrXqXfpzMCRxU6iy0sLCwsLCyWB2bsI4kIkrx33nmnOpyQ5CWmwfWi1AVXMwZk//79yu2WqgOP94E7m5iG2M0k7mZzRliODjy6L+E8q1evlnoCzREk97gOjEqslOQea4VmDbNWaA4xIy1ZL6VwP6HpgoIK70VCv55iWdN0wdo/44wzKiqWXag7LfEM9zDuk8RpdBxy/yS2+bd/+7ey3V8sLCwsLCzqETyf4dfUaIhpnn/+ebnooos0pnn961+vItNS805qJ9QpqJMspVPg9Lw79SZTo5nJGWGpQVxlRlpSp6hU55elAsIoHGUqzU2GeMM4jjKeyDiOEtOwn6WI6xHEENNQl2T8T70JVR599FE9l9UmVCn2GTa5kuuuu06dVIhnenp69D5KfggBvoXFbLBilQoWE3CzMjZ0dNUwN9HY0FG0Xyy4eUAEsMlezqL1dDUvRIjux+VU85IwNB149TbPnbWFPTpJMQhgueYQzpUUuWfCk4Q1BBrF6UKuG1bKzP2sNAK4HKgloUqx+8rtt98un/vc51SIxbqm84F7Jl/r7VpbWFhYWFhUytjBW2+9VZO8PKfhcFdddZU6ruCGsFgODq8lnuF9KNgvVyxhRDkmpiHpu9QuGrO5ydTjPHeuOby2GmaaG8dRCgPs92IbNxBmU8wgYUxMU09ChloSqsz0mf7ud78rX/7ylzW+wSGSwhjbOeecU1fX2sLCwsLCopK4h3Fcwfnkggsu0HzjlVdeqXxusTwUfgi347UQoC9XnYK8uxGukHcnl2o46lK5aMzkJkNcB6+tt5GWpumCGk0p6n1LBbfjKGuG/15s4wZrjokHNB2sWrVK6lGogvBtuZxol1O48sADD8g//MM/qOM9awOhCnkgtnoTJVnMHVasUgXg5s9D25CiHTt2TNnQMTJoITZ0FOx5GJbSJrta1LxmnjvKvqV0k6lEQEJZS3wloV9NBHA6KYLQzWXOtxuolFErQwD53NSjUIVkPh3OtQbWw9///d/LP/3TP+n4AdbLTTfdpBtFrFe+8pV6/6y3625hYWFhYVFJBfs77rhDYxoELDyTSVaQ6D377LPnneAisUkXlklslmucJxyELkCK5/BUuiLhpqbrbClGs/CexITEdHB6RNz1BBoeuPaMPNqwYYNU40hL07gx3/iX+BlOz3pfyq7bSi4Wce4Qu9WaUAWQEyHHwyg1OhJJ8BLP3HLLLXqtP/7xj+tmYWFhYWFhsfwwHJx4huZiis3nnnuu1miIayi4z7fOYAr2hteWq05BgXm2htGl2C94MSIdRDL1yGsZe8S5pk5RKeOYFtK4gcCaGg2x71zjX/6OZmpqk9To6gm1LFQxIH754Ac/KN///vf1GpsazS9+8QvN3SDO5/sWFm5YsUqVgYfBM888M2VDh4OA24aOxOhsNzgz2xmnFm4MlZTYnK7mJQFnHFdKpeY189whf+UkgOWAuwOv2scezZcUmWCCTjUSm/U299LMfqxlocpXvvIV+eIXvyh33323XmM3du/eLT/96U/l/e9/f1195i0sLCwsLCoVCDp4ZpPopQhLgpLORBxXXvGKVxyVpy6XTfZCgHDFcFT+TRLKJHpLIRSH9xADmsQmAod6AvEiic1aGHtEfOYuChD/mrVSrCGFmAehCiIN5tnXkztoPQhVEC9xH6TbkHyP+35BroTkLufBznq3sLCwsLAoP3gmk2c2whVGk5955plTjmjkX4+Wg8RRA8ECI0B6e3ulUkAzgBn/AvfmOAxHLdX4FxoZ4LVmBEo98VrjDkpDdbWPPTKNG6amx7+5pqZxo5ij/8GDB3XMFvFMvbmDksdgjG0tC1VoTHrve98r3/ve9+Saa6454mfEvPyce2Ql1aUtKgNWrFLFMMITI1wxNnR82ElyIPRw3/AgASR1wXLaZFeKmtc8CHkQ1Ju1mElsQn4gApWU0C8VKTIEejopIunL56Svr08Tm/WW0K8HocrXvvY1+du//Vud605ntoWFhYWFhUX1AKcIXNFI9NJtA89HhI/jCs5o0wUexiqZWAfBQiUneBg9aoQr2HsTx5iYZiGjOImREGrwupU+znMpAJ+ncYOxR+V0B10KcG3dM+FZ18Zam2QmnxMSmzRx0IVWTwl9+P7zzz+vsR6jf6o5oT8TuD/QkU3z0Y033lg2pygLCwsLCwuLhXEVGoMRrVCjYQQGjaJGuDJ9ZCVihV//+tdauOb34HqVCvYVQa2JaThW9/iXhXBSGlDJVSM8Z+RhJcdzS8H5qeHB7Ynnqsn1fi5gTZu1wnWmYdjEv9QiiePh9TSc0Hhcj0IVPjeMPqrFdU9D0jvf+U751re+JW9/+9vLvTsWVQYrVqkRQBQYcWJGBWElxUxjQ4oQe5DwxVLuO9/5TlU9CEuh5jVjjxBqQKjqCSSzEaqQHK8HpfJ0UoTLCmuIa19vJMgIVSD+a9eulVq872GP/elPf1pVueeff365d8nCwsLCwsJiEcA94L777pMf/vCHKlxBcI1whXjm1a9+tX7vwx/+sFx//fXymte8pqoSPNj9Go4KR0N0YGKaubhEmLFH8B8aD5ZivFAlg85VBOgk9Enw1TKIXVgjJv7l2gPWDMdfT9e+HoQqNFuQq+E+gNNULR6jhYWFhYVFPXEXeAviU+o0jPSjcZZ4huf9+vXr5dprr9VaBS7Q1eT+bZzOzfhTOKoRrpBzn0tzrBl7RK66Fpsq5xLPASYe1DqnR5BjHFeYdkB9knNAwwlOgtUUy5eiXkW9ls9JrQpVfv7zn8tb3/pW+Zd/+Rd597vfXZPHaLG0sGKVGrahQ7SCohe7WB4GqFV/8IMfqGChWm8W81Xz8vPt27fLvn37Km7s0XIlvlBsMvtv69atVXvdFwKuPZ2nkCHcVEj4kgA0jiulGi1VqagHocp1112nM9tJ6lo7bAsLCwsLi9rrOnvwwQenrLVJbJLwet/73id/93d/V9VjQDgOE88YrmqEK8VcAOt9njtNGYx1RKRTj/EciU2uPbEwiU66b00MXE1NKPNFPQhVcL/FHpu49Lbbbqto91sLCwsLCwuL+XMZ6hgI7olpcB2Ax8NpaL675JJLqraplGPDGc7ENMQrFOKNcKWYEAP3GcaZ4hJIraKeQPxHMzHuefUWzwHiuR07dmgsx7rh+N1TFKr1czAX1INQBTepN7/5zfLlL39Z3v/+99fkMVosPaxYpcbxyCOPyBVXXKEKXh4C3Dh4IKLkLWZDV004mpqX44IAkQAmsVlv41+MpR4qZRx1qvU6LwQkchn5BPlh9A/JXTp13aOlIM1mvdQaKUKoAgHesmVLzQpVvv/978uf/MmfaKcCwZ2FhYWFhYVFbYLn/ic/+Un56le/Kq973es00UPx+rWvfa3GNJdeemlV83xiGNNxhpskyWuTuKPT0rgkmrnWtcRZ5zr2lvE/2GRXU+dpKRsPent7ldcTzyFuMI4rxDqtra1T66WWxBxc++eee07jtloVqpC4pvsQB6nbb7+97ta3hYWFhYVFPYHGYmIZ8tHkahmDSmMx8Qwb7nnVyvPhbXBUU6Ph3zQVm4ZRxNW7du1SwQJ1qVp3SSzG+Yjn6nGcJ0CkgpMQ8RzngLoN9ToT07B+jNCJtVFLQh4jVOFzUOkjjBeKhx56SN74xjfK5z//efnDP/zDmjxGi+WBFavUMH7yk5/IO97xDvnrv/5r+dM//VP9HskeY0N37733qprPCFeqWdnHQ21iYmKKFKHmxU2G4+FBWM0J7IWARDfzD+vRUg/Cg6MKiX2ufbF537VMilDsI1LCSQdLvVrEj370Ix0BcMMNN8jll19e7t2xsLCwsLCwWMIONDpzcIrEdQCxBjyOZB98ACdJHBQRrhLTXHbZZVXtnoe4Gh5PTEPcZqySV65cWRfjPN2Anz/zzDPK2RGfV7OTzkKAEIV1TjFj06ZNRdc0Ma8ROhEDEPMaMT7/rtbPgRGq8Fng2teiUAWBCrkarttdd92loiMLCwsLCwuL2gQ5epqJyWEyIgOOTx2D+IZ4hq/kpa+66iqNac4888yq5v1GXM3GcSJWIc5BqMJx1hM4F4jP4ejVXHtbCMzEg/3798/YeGCa0c16gSOzRjhfbNU8KqkehCocH/ct6s8f+chHavIYLZYPVqxSo8Am+eSTT1ZLube85S0z2tDdfPPNUzZ0JMG4uaCEq2aVJ0ltSAAkCNEBooXpat5aBg/2p556SgnQqlWrpN7s4pl7CbGBBM3lWs9EimazLaxU1INQBevMD37wg+qswv3KwsLCwsLConbxl3/5l5q8RYRfzCraiJSNcIVk2Ktf/WoV4pMQbm9vr9qECYIVOD2iA+IZt1VyNR/XXGCuK8ldOD0uifUEM85zw4YN6pA5FyBqcrtIItg36wUhRLWsl3oQqpCvYI47VvjkYXBNsrCwsLCwsKhNkGemmRTHgU984hNFORlc/84779QaDXEPRX1ynsQ05557btU2VcLpydPDbeF0CFdq1RVwNvE5Ofpqnm6wUE6/bds2jWnh9HMZdcnf4Cxpmov5N3GvqelVU0zIZ9qIlGpVqPLYY49pzuUv/uIv5GMf+1hNHqPF8sKKVWoYPAzowpsLKNZDhiBFkCOshiFECFdOO+20qhGu0F0GCaDzDrEOZG66mtc85NiKuW5UM0h4kdw76aST9PjqTajCQ5KvjH1aiMikmklRPQhVbr31Vnnve98r3/ve93S2u4WFhYWFhUVtAy4G5uKSCI9jBCjClR//+Mc6EvJVr3qVxjRXXnnl1JjQauL0NBAQz5HohesR3xlXQBPPUOiullhtLqDhgO5TvsLpa73RYCZOvxiHTOIhxB5GuMK6N44rlbxezGfYuOnUYgEDURHxDHbo2P/XW3exhYWFhYVFPWI+NRpqG4hZEeLTZAwXfv3rX681mvPOO69qmirh8ghVEOnC6anBINwxNRrjCsh5gaPORcxQTeD4qFMgPEeAXk8wnN6IzxfqkIkziVkv1C4RcZkYuJLXixGqsJ/UaaolBzEf0FSDUxTTPBCr1OIxWiw/rFjFomhSmA5GhCvMTiah5bah+//buw8wKYjzj+NjYu+osYCiqCj2LmI3FqxJ7KIiKooFe+/YG3ZU1NiNopJ/7BWxiyLYxa7YISaxYNeE/T/fSebY29u92zvutn4/z3Pi3e3d7e7t7c4785t3fluhaV6uN0EVJnxoEZ7vSTL3Ra6W0rx002E3KeGietudxQCYSV1+59x+2im2h9zHC23l00RvJQ2K6iGoQqG2yy67hD//+c+xZbYkSVJzE2TvvfdeQ3CFcRKTuwRXqGvo0lKJEypcb85z541z6/ON6VOHzDRGJZiQxqfVfpwlC/n8rghTtOeYvtqOcm3PMT1BJ3azZj9eUtdR6uZKuY+zgyqrrrpqRW8SmJqade+9946Tu4899ljdbS6RJEmtHxszZqCmodM04zo6GRBcIZRfqaFuAiqM6RlnUtPkG29ymXScJWNg5tnTGk01H2cJbhddImt5nr65MT2bRqg/2jN8nvt4IQCTNhdX0jHA9RBUoWYjqLLPPvvE439q8TaqPAyrqFmpDR1pXjqvMHBIwZVKakOXWiWz+6zQmd65aiXNm87/+/TTT2NSud7Ou2bgTkiJZDkD4I56TDIoSh1XKmlQxIQuSW1aynXp0iXUoscffzzssMMO8VxXWmY7CJIkSa0ZKxPqJohPTTN69OjQs2fPGFzhjQnEShhbcD3ffvvtuPOy0Jne+b6G9tJ8DeNUxqvZx1lWShChGNRmjOmZ0EwdMusJNQa7T5deeunY5bQjpMdLmuglmE8gqtzH5dZDUIWQ0P777x+ef/75WNt01O9YkiTVJkKvTz31VBg+fHgMrrBmQ3CFembDDTesmPET14sxPXPldH4vpqMfty2NT+kKyG1JwZVKCiIUY8KECeGNN96It73Ybjq1gjAVoWw2lBNU6agTDXi8ZHeRzD4ud8455yxbF0ke+2PHjo2/91oNqrz77rth0003Df369QtnnnlmxXbsVHUyrKKi0YbukUceiZO8DIoIB9BSm+DK2muvXbY2dLww8ULYvXv3sNBCC7VbOjMFVyo5zZsmtbneTGoX0yK9lvB7YwDMIHb55Zcv2Qskg6LsM+F57KcdraUcFNVDUOXpp5+OR/5ceOGFoX///hX7tyhJkiofY+fPPvss1jOEV0aNGhXD3tQzTPTSorkcY400sceRpYzp27IDLR1nmYIrBBFSBw3GqZXcMpzryg40xtGENept0ovfGb//Uk9qp+NyqYMJsZSj6yiPWyb02TxSq0EV/r4POuig8OSTT8bd0W2ds5AkSUohWOoY6hm6SLKJlwVkapqNN964zceuTC1qGebp6WLZ1sV6blv2nDvh++wgQiXPC3/yySdxMZ/NtNRh9YTxLsF76jqCKqUKwfNzWR9JNQ21Rdq8Ucquo/UQVOEY08022yxst9124fzzz6+7ml0dz7CK2tzNgh1BtKG7884740CC4AqTvOuvv37JXpDoJvLOO+80nOfeHnLTvKRAU3ClktK8vBgzsdfebdWqafclk9oEdIpNapdqUMSCAG8dOSiqh6DKc889F1tbktRlJ2Kl/O1JkqTqx5iNkAATvEz0PvHEE3FMmYIrBOFLMfag9uDoF/4lONNedRRBhBRcIcSSOmjwVkktw7lujOmptxjX1tt4L+2+JHhP/VDOjSmpBk5dR1MYv6M2b9RLUOWII46I3WoJqhCIkyRJas+xBp3bUnBl4sSJYZNNNon1DAGWYro1ttc8NTUNY5322gDAbUsdNBin8j1TPdOpU6eKWSzPPsqVeo5QTT1hXZDfPeuFbLwo1yYJfg/ffPNNw0kKrB0RXEnrNB11vai7qWcJaZVqDqHU6FTL88mWW24ZhgwZUjF/e6otVfGoOvnkk+MfefZbjx49Gj5POCL38/vuu2+j7/Hxxx/H1mjp6I4jjzwyTghmI3zBEyrhhMUXXzxcf/31Ta7LZZddFl9wmUihfTSDgdxJnoEDB8ZFaiZ16AjAJGGt4cmdpO6VV14ZdycSWuG+5bZ369YtnsXMsUHcHx314kOaj7Qq55m35w40Eru05SUFy2OLNCS3g2QwXR7oZMKEGteh3IMAEsurrbZa3QVVSOmOGTMmhodoE17OF0h+NgMfdoGuu+668XHD3wchKp5T+D0xCc2Arb2DKjwP1mpQhUHeNttsE88+NKgiSaoF1jSVhZqRCaX99tsvjBgxIo7XDjjggBiWpc5bY401YmCWxfSOGvczgcYOLK5Le+9A41hTjkfldqy55poxrPL555/H7g78TOrjjqrVisVkIteFo5jqMajCxguOv6GeLWdQBcxv0PGDx+F6660Xj9clSMR8xzPPPBNrGzZJtNffQgqq8D1rOahy7LHHhvvuuy92qDWoIkmqdtYzlYd5acb7gwcPjuM1AvjMF5911llx7LHjjjuGW265pV3HcbkIyLz00ktxPM+6UHuN6bltjJHZpMycOxsLQEdCappx48bFEAtjrnLhPmV9itqKMW29BVVYX+V3z1oVdUQ5u3nyuOP+Zy1vrbXWCquvvnpcn+V3w98Faw10v2nPGrgegiqs/bKu3rt3b4Mq6lBV0VmFgRBhCAr87EABC8RIgYJTTz214fMEJ1jIBk+WTADxpMELNxORu+22WwxUMAGJ8ePHxxc8Qi577bVXGDlyZDjkkEPixAJ/iLjtttvi111xxRVxAvOiiy6K5wQSXiAAAyY7+RqCLrTRZcKTF1YmeOoB9/Wzzz7b0HGFRfXsNnRMmpbjPPf2UClpXgYBBBW4PqR1K7mld0e1VWMQwN8/g+9KHQSkVuwpzcvghcdJasXe1glZHoMEYLjtnTt3DrWI28cg6JhjjonBwkr9HUuS1BrWNNWBMRyTuXfffXc8Lujhhx8OCy+8cPjDH/4QO761V1A6nede6qNvmJxL41NuJzVzqmlK2TI8ha/ZJEIwot4wafree+/Feo4aoZLr++wz4RmXp44rBKDa8rjNDqowqV2rQZVBgwaFYcOGxY4qLN5IklTtrGeqB+MtQh2s0VDTEGTZYIMN4hoNc66M49pjvjWNaamRShW+Th00UhdJNoim8SnrBaU6+iWNaalrGNOW6/ilcuF+J6jC/c3aa6nu97ZufE41MI8dauD0mGnremUKqrDpnZq2FtcvCKKxtsvml2uuuaaif8eqflUTViH4wGRWPoRVeEIkPJLPAw88EFsUsZMsdeAgcHL00UfH0AE72Ph/Qia8iCc77bRTnEB58MEH4/sEVOhicemllzZMQLD76MADD4yLqjzR8SRHWpWzu/DWW2+FpZZaKgY4SLnWE+4ful8wKKINHSGh1IaO883aEjJhsozfESGAtp7n3l63jcdGGhSlo1/SeXgdNdn8yy+/xEEAARU6eNTbC0QaBFTj+X8sSKTW2m0dFNVDUIW/78033zyGBY8//viq+h1LktQca5rqNGnSpNgxkkle6kLGoSm4Qj3SlnE/35MxPRNb5dyBRW2RJu2YZGXnWQqu8P8dhZ/32muvxTq5Vse0zaFFOJtlePywwaVapBo4PWaozVNrbf5lQ1FLqJvZBUs9VKtBFW7jGWecESd0CaoQRpMkqRZYz1SntPGXo4KoaRiHr7POOjG4stVWW8WxXGvrEb7n+++/HzsFsi5Xro4iXA9qqzQ+JZjPuDQFVzpqky/jYu5H1ioY09fimLalOpKNF5xQwXGm1bRGxXVPazSstaSTOPg7YL2mmL8Ffu90CKWWrdWgCvcPazT8fd94441F1XpSzR8DBNpp8cdPK+Nddtklpjaz3XzzzfEFiO4otFplYTghKEK6M/uoGLql8ELGREm6zEYbbdToe3IZPp6exFgkz74ME5O8ny7D50kUZl+GRWV2iqXL1BPuHwI+qQ3dU089FSdqzjnnnIY2dPzeim1Dl9KatMsu99E33DYSyEyw0oaOJ22esAkncfQLgxWCLEzgtRcGW7wIcrsrPa3aETjyKA0Cqi2oAgY+7MrlsctjhtvBY5/nhlGjRsUUOs9Jhf4W6iGoQht0iiQ6VBlUkSTVImua6sOE1c477xwD+IzvqWXYYcRmCFpSs+mB8Vyx437GdNSNjAvLPaZl0wZH8DDBmo5+YTw6evToosanbcEGEmol6vNaHdO2NKlPWIWgRjUFVbJrYOoRFjjS5hGO56W1NrU6baKZO2kpqFKrR/9wG5n/uOqqq+LxYgZVJEm1xnqm+lBvMH5jrpW5deZf2VDMugzBeTYVs7GbcXox436CGnQUYWMy89zlPPqG28aYmttB9wfWogjdM94uZnzaFtR9bKpnraZWx7TNYW2OepY6oBo3U1MDd+nSJXa4pAkC682pk//TTz8d1/fYyFHoeKl6CKowZ8EGHWqZG264waCKSqIq4lC8yHCsDq1TeRE85ZRT4uQIO/DpzsHkIZN9PEG8+uqrccKQtChJUTCZmB1UQXqfzzV3GSbnaBP11VdfxReifJfhCSx9D57scl+guUz6OfWKiS0ms3g7/fTT4yQVE75DhgyJRyXRho6OK0z65mtDx4sAv1vSmryQVNKLYDoPL52JR6iCiWwmd3mMtkeal9tPWpWuLQRkavFFsDn8HXL7mUBnAFHt0sIAbxzrREtt0qoMdHiMpI4rPKb420lBFX737MCt1WKXv//dd989PsfX22O8EIpE7wtJqg3WNNWPbnh00OSNGpEjgtihuP3228fJOkK37FBkojTfziN2HlKnMulTaWM6xqDU07wxPmX8SU3D+JSxa+q4wmRwW8cm2UffUPPV25iO284iAJPaHdm5ppQLA7wxSUu9Sj3DY5wFED6eHjP8baSgCnUdt5+6vtZwGy+55JL4RlCFXaaynpGkWmI9U/0Ywy222GJx/eyoo46K43PW0Hjj/dVXXz2u0fDGiQK5436CCgRVCGoQVKmkoAbXlTE2b9zG3PEpR2+m8Wlbx6JpMzXz9YTP663bBL93Qh1s6GDjRqmOsu0o/P7mn3/++EY4hZBK6gLK2D6t67Emx3pkCqoQduExVotz9qyD8/ffrVu3eIJIR3Unqjau0XS8qng2Jd2ZUPAzMCKccvvtt4f+/fuHAQMGNHyeHVpM/G244YZx1xJPGqosPInTAYc3znGm6wqTvFdffXU46KCDGrWh48WAF4cddtghnHvuuXExu5JfBLltvFjzlibtmOQlzcvkHJOyhJcIIzDpWwzCLwQ1yt0mvFzoPsIgkJAKf/e1pqVBEYE87gMS8JW2qNFe2I3J3zbdls4666wO/xsfOnRofOPvEgyuTzrppEavNdn+/Oc/x3Z36Zg4ipEzzzwzFnAdjb93Hv+EIvv06ePASJKqmDVNbWEBPk3kslPvkUceiTXNrrvuGscyKbhCRz0meE477bQYbuF4VCa9Kn18Ss3CGxs2CK4wPk1nkqdJ3hSsbgljWsZ7n3zySVV2FGmv1uvchwQ12noueiXjNjGhyRuT2Km1NoH0dHt5LNVyUIX6gjkLjgvjcd6RrGckSeVgPVNbmHNkrv3QQw+Nx7ETqqZWoaY54YQTYmf3VO8wL8/4jvnbnXbaKRx44IEVv4idPT5lowFjUzaUMy7PDVYXg6AOazRcnjXIStpMXQrchwRVCP2w+aLW1qioa6nTeWNsTzdIHjOsXfK7p/blY7UcVOH2cdwx61SsvRe7ftlW1jTKVrmr/s1IHSzYmZQPYRakz/PHRWAgW3qfzzV3GUIHvADxJMULUL7LZH8PJipZWC50GTXGkzodc4477riYSmRBdtNNN42pPX7Ha621Vuy60qtXr7DFFltUdFClUJqXFy+uP2+8mJPmffLJJ+OLOxO2vNgVwmOJ+4WOIvUYVCG4wSCQ4E8tBlUKDYoY8LGwwXFZpFl57uFvg+4qdJcixV0rPvroo/i3zYLOBRdcUJK/cTranH322fFvkL+v3//+97HwSsfC5eJoL4IinDlPm392FtAukzaSHYmBMQGmE088MbbcQ709B0hSLbOmqR1M4nCe8zXXXBPHamkH0t577x0nR+kkQrcFXtMrPaiSK4VT2GjAUUGEfNMZ7dQ07KykS2ChNskpqMG4iaBCPQZV2MnJfcTu01oMquRihy3jZQIbbEThMcTkNnUvY28mfIs9CrgacDv42yeQdu+99zbMR3Uk6xlJUiWwnqkdzDeyCE8H/EcffTSuX+y1115xvM+YjnEsNQ3H3FPjVHpQJRfre6wtcDsYn7JWx/j8mWeeCc8991wYP3583HRcCGPZMWPGxE2lbKavt6BK6iiS1i1qfX46naSQ1iephQly8HtnPY/1Kv4lpF8r2DC/7bbbxnqdwFopNhhY0yhb9az8Z/nuu+9i15RCXQY4Mw7p84QEmEwjCZfQlpUgSjpDmMuMHDmy0ffhMnw8TUDywpx9GSbkeD9dhs/zQp19GSbmaKeWLqOW29DRco4F4WuvvTYu0DN44AmSxWEmeVncrsaJrZTmZfKKFzm6q5Dmfeqpp8Lzzz8fbxcDn4QBUwpq8HW1PgjIxe3nb5mOIkx21ht2sPI8x4IACwN08cg+czOFnap5UERin6AKf9uXXnppycJoBGNYUCIAxqDzjDPOiPctxUk+nOG6//77xx0FPB7pApWe/zsSf/PcJ3Sg4vfN0WmSpNphTVObqAc32mijeO474zYmRAmwMNbguEM6g95zzz2Nxv3VgnEJLZBTsJqJWj5GYIXxKV3oqLnpoAHGS4SBU1Cj2o++aS1uP/cJ4XOCOsXu2qyl208whWOlqH85E56xNxt86NJTTNip0jEvcdNNN8Xdx3fddVe8naVgPSNJqgTWM7WJ+Ug6LO6zzz7hoYceipv3WMNgLM9GSjb9nX766XGcX41jOBbhU7Camob/J0jNehRvzMezcJ/Wn3icE1QhqFELR9+0FrefoAqPCTad19saFUEd1igJO/F4YbzPY4G/iaeffjqu67UUdqp0XHeONmYN/M477yxZ3WpNo2zTZKpg1f+II46ID1yeEFjcZOGORWwmNjjzmJ1rLDwycfbqq6/G1mWkspgwA5NlLDJy/jZtWXki6du3b0yHcpQDeEIhITdw4MCw5557xgQpR9Lcd999oXfv3vEyt912W+jXr1+48sor48LxRRddFNsh8WTFkzX222+/cP/994frr78+hmFoiYZRo0aV7f6rRn/5y1/igIgdShwNktrQcX4i4Y4VVlihoQ1dtbfdYocZk7q8MZHJwI+UMu/zmKzHrjzpGBwGgPV4+5mwZfBf6Pb/8MMPDa21SfXyXEP4iV2v1bJbk+dhuigR5COYVq5EOq8Pw4cPj8/tTJqnAGNzKFi4r/k62l+2J4q87KKH9/l5PB/yOx4yZEiTy0iSqoM1TX1JEz7UMQ888EAcOxCMJYRPXcN4jzqTo4II7lZzkIMpBepyOooyPiWMQG1OIIdxCxPBtXj0S3NS9xnG7SuvvHJd3n6COkxu5/v983kWBVIdzJg8+0x4jqKqhsf9sGHDYtt8giocRV0O1jOSpFKxnqk/dB5hXe7ggw+OXSIZ8xO8Z42GIAtrcKzPUNOwXlPN85UErNN8O7Ua41e6a/A+Xe+rfQ2qLZiTZgMlgR6Ogqq3208tw+3ncc7vPxd1L48PHjdsPGZNj3qGOXzWa6rh/qJmZ96C28K8Bd2DysGaRlURVuEcPHbd8AfPH/raa68dd8LzBEFnAc4FZyKECUGeODlXi50tPCEkdK0gSMJxDizmsjDJMRDZkyB8jqALIRiegHgBZvdbNnb/Dx48OC60EoCh00d2m1e6HBx++OFx0oIQAhOQl19+eV0uuLfVddddFwdADHrYlZiNhytP/iT8mOgl2bvUUks1DIqqPd3JiwK7z9h9ye3gBY4gFC9yTGBX820rFn9bJLM5+5HbXW94fBO6Kzaow/MMX5M7KOKNwUUlPmYYxBEw5Dn0xhtvLMtkNIsHBGV4zuZvK4Uei0GXFQoyHqe0OW9vH3zwQXxN+8Mf/tDwMXZs0maTtDa7mCVJ1ceapn4w0cmuKyY4qVtyj75hoT51TSO4QpvtjTfeONY0jEey69hqQ71GCIGxDLUN76cQArV8tbUMb+tEG+N5xukEVTr6rO9KDqrQUaal25/CTmmilwnTueaaq+ExU6n3H3+/1AUE2DfbbLOS/3zrGUlSqVnP1Be6RrDR8Lzzzgv77rtv3iADG71Zw2GRmzE/c5mszTEGrObgCuN5umSywZ25dcajab6dAEslzre3NzbI0vV/kUUWiV3/603qKMN6c76gSr45AEJOKexE3Zs2F/OYqcS/B9ZF+vTpE3/XrHWU48heaxpVVVhF9YVjk3hCZ2KvOTx06UTCLiaCK4888khMeDLJy6CIDgmV+CLQnDQIYhGfoEFumjcFV6olmdla7DylUxGL8Qxw6zWoQked1K2pNaphUESghqN/aAFOqK9cCxYsnvBcw2CMiWaO9qEbV0udVQg50qGLcGNHhEYYJLJThZDjNttsE8OZnBdLoIdgJsGaCy+8sO7ayEuSVG3otkmL7JaCrSzsM/5jPMJEL6FVOjQw0UsHt2qbDE1HvDB2oaZhbJM6rjDhl0IIvFVqCGFqJ7bpAsu/K620Ul2Ec/IFVdhIREeVtvyO+drUcYVFECZN02OmUsbAzEHQqZd6JjtgXkrWM5IkqSMxdudYHEL1LaGb4IMPPhjXaAiwsHZBRxY2F6+xxhpl66jdVoxDGdNyHDybSZnPTsFqarM0Nu3UqVNFzLe3N9bcqGkIadBVpt60NqiSryb68ssvGx4z2Rs46CJZCX8P1BKsNbBpnnVVHsvluh6u0QiGVVQzWHSmDR2DIpKAXbp0iQOiamhDxwvWe++9Fz777LMY0sndTclkJ4MiJnoJITD5W2tpXrokvfvuu3FSm0nsejO1QZV8gyIeMynwBIIrvJVrUMRAl0KFgR47ECtpgYIuTgw+OeatEHYScCYrAzh2CHQUJuX5e+Dn8Zjg90h7cY4O4O+fLjD8Hj0OSJKk2kJNQJfP1HGF/19//fVjGJ/gChNclTzuJ5jC7js6mdIlMbf+omNGCq7QSYMQQgrjd0S3ulIjOE5Qh98RNU01HGVTaUGVfI+pVM+kI3NTx5VydR5lAYYOvHSI3HbbbUOlsJ6RJEmVgDH/iBEjYhD/7rvvjhtwmQ9mc/Faa61V8WNkNtO++eabebu+M95lTJqC1dRvaaMo8+2VvP5ULOahX3nllbjRlNMn6k06+oiQDhvjpxaPEdYt02OG7pspuMK/5djc8Ouvv8Z6ho0yjz76aHzsVgprmvplWEU1+6LCbkaCK9lt6AiurLbaahU1cOAFi24iqZsMk7vFhBBqKc3LMV28OLL7kPBNvWnvoEqhduzpMUNilUFIKQdFDMpYaOHn0g4/99z6cmPnM4PQ66+/Pu/n6abC8XME4dgR0JFSCIXfExP0HD1HkItuLvwOOa7u/PPP79DrIEmSyovxG6//KbjCzjY6rjGeoq5hzFhJwRV2UzKpR+icTnUtXTfGOGnCjnEqYf1U03CsZbVhwo+gDuNqNkpUwm65UmL8SgtnHgftFVTJdx+n409T59H0mCH4VIq/BxZedtlll9iVkaMQKon1jCRJqjTMbT722GOxpqEzHei4TXCFY1MraSMj6PDAhmLG8y0t4KcQQgrjM1ZNwRXm26uxHmCczZh+qaWWCgsssECoN+0dVMn3mKFrS6qDCfmznpfC+KXYwMEGCzpEjhs3Lv5t5gayys2apn4ZVlHNS23oSPPee++98XgdJniZ6O3Vq1dZBw5p9xkvhARVWtvWmK9ncjcNiqoxzcuxR4RVCKqU41y8cuP3xiCwo4IqlTAo4vFNEcLCA92Pyt2++9hjj43nyjPw5LrRqeScc86JQRRaW+62226xM9NZZ50VL8/nTjrppHg5dgAk7Obkra2/h+Ym1HM/T7HwzjvvxGOIaCPIolWlDSYlSVLHYFzAcaEE8alpnn/++RiepZ7hjXFLOYMrjKcIajCh2b1791ZfFyax09iUcQ7h/dRxpa1jrVLi+nP7GUdzTGQ11GDVFlTJlTqPpjA+93mqgwlMdcTvgOD4DjvsEI/r7Nu3b1n/5qxnJElStWGR/Mknn4zdtgmuEF4nuMLm4g022KCsnRapt9hIS6frtqxR8PXURGmNhttW7u4ZrcV1Z52qVGsU9RZUKdSFKNXBBJ/YwJFqmpY2tLe1htpvv/3CmDFjYm1T7kCSNY2yGVZRXWGgkN2Gjok0WmqnNnSlHDjw4kBLNSY3CapM7aRevjQvgyEGF5WY5uX6vv/+++HTTz+Nk5qEiOo1qJKvrWCpMKmcWmunQVEKrrTHoIgwDO2xmcyl21FHDLRaq3///mHkyJHxTEaKDxYVjj766IYzWGm3v8giizR0WeH/CVTlGjRoUDj55JNb9bN5zBPW6dy5c1GXT6GV9C9HhfF4odMLKWhJklRfGBMwfqae4e2ZZ56JY2kmeQmuLLzwwiVdRCc4z9E3jJd4m9qfTQ1D1wxqGsIIjJtS9wzqhUrqJgPaODOpSaiGiV2DKqXfHZvasaeahjo7+0z49mg1/9RTT4XtttsuXHTRRWHPPfcs++PQekaSJFUzxmvUMYTx2ZDHnDQbC6lnmJ8tZadF6qu33347jiNZo5nasDzfj/nwtEbD/6cO58y3V1o3GTBHno4+4jrWa1CFWrpbt25luQ5pAwc1DXUwfwPpMcN6zdTWH9RMBx54YKxr6Kiy0EILhXKzplG2+tryUwYsLO66667xBYmJNp7wx44d2+jFix37pNj4PGdy0e45G7vLaDXLkxJHpPBHTGeEbBwhss4668QEKk80LGTmIrXao0ePeBmuBwvH2Yq5LtWO284Zidddd12YOHFiuOGGG+IT/R577BEWX3zxsP/++8cwCy8OpWgTzcCsvXafcTt4fCy55JKxRfiqq64af4+0riMpSTCGgQc/u9x4rNElgjMgOZbJoEr5OmQw8GEgxu+B5xBCFDznPPvss2HUqFHx8TNp0qT4O2tLOnjHHXeMgyG6GlVCUAXXXHNN3J3M4gKDwEceeaQhqAL+XrKPA+Ky3P7ct9YGVUjnc39QABUrDUT5l79ddk4TsCM805bfiSRJrWU9U1kYE1DvHXzwwXHMwviiX79+cTxDu2rGc+kIwY4eKzCJRk1DHcWkXnss4LN5gHp0xRVXDOutt15YbLHFYriaGpoJbWoIAjKVMA5irMuuNOr0eg6qcD+UqqNKPtzvzLcw18Hjn0UG6n5C4k888UQMU/E81tYa/7nnnosdVei2WAlBFVjPSJLUOtY0lYVNtRwDdPHFF8d5V7riL7jgguGEE06IAXjW0zg6KHcNrCPGsxyHQlieufH26OrIWJHvQx1DV3/eWLNhwwGdZQhFUMMxL10pfxsEVaglDaqUJ6gCain+Bujsw0Zauruko3affvrp8NZbb8U1Gx6zrcXXHH744XH+gHmDSgiqwJpG2eys0oHY3cOTC23MaK/Ekz2ThrxQ8QYmPDhqgtAEE3wnnnhinPB54403GlqfkSolZHDllVfGxUqCFbx4ciQFWEheYoklYriE1kl8PZMo7PoZMGBAvAyLzgwA+FksdKZjL5hcZGKt2OtSy23oSBWmNnS8ENCGjjTvhhtu2K63P7WJ5oxtOjp0dMeTfGleWiPTcaUcaV6uDy+uDAKZ1KzGM+lroaNKMX8T/I64rvzLwkFqQ8cAu6XJeLoY9enTJy4mPPzww3V5xFM+LLLQxYmChAWe1nZYoZghXMTrwd57793h11eSVN+sZ6oHYwXGbNQy7FB89NFHY4id40/pusK54+25yJ7aRC+99NIlaR9MyJ/JOX4uu82ooVLHlWLGpu0tTRwSkmjv+7YaMOHJhhnG/O3RJbSjUPum1trsmKQmSY+bYo4mJSTF39App5wSDjrooLr7PedjPSNJqjbWNNU1xiRoTFCFLpLMg7I2Qz2z+eabt0uHiez6IgWvGc+yVlPqY19aOzZtbx9//HHcqMoaZqdOnUK9YV2VdbpydlQp5m+COjh1XaHuZ42GN2rRltYW+XrWjJknoKNKWpeud9Y0lcewSgc65phj4oOeEEQ+PLGwUEmq7Ygjjogf40WKEAG7+nfaaaeYamQCkB1bdMoASVNenElj8vVDhw4Nxx9/fOwUkiaJ+Nl33nlnDAWA3fxM1NDdIOGcc3asXXHFFUVdl3rBQIVwD4Mi7kMW2zfddNM4KJraNnQMSHgBZGC1zDLLlGX3HROrKbjChB0DkdRSrKNDSTzOCD9RJBBUKccgrNzSxH4lB1XyDWoIVqTW2mhuUEQgiwQ8ITs6FRGOqnfch+nvnSAQ9w9/b3SzaukcTC5P+3L+dvmbIaiy7777luiaS5LqmfVMdWLMzXibY0+Z5CU4zOQbi+4cfzq1XUDYfUenuHK1iU7HvqTgCrc3TfIy7uzoGou6mqAKtTKbRuo5qEJNV8qjdKcG1zfVMzx+2PGaHjd0gMz9Pb788stxA8txxx0X50jq7fecy3pGklStrGmqE2N85tDZXExNwybw3//+93FzMZuxWdNo6/iMuVbGeoxvCGqUYzybOn5nj02pL9LYtKPR0Wb8+PExqFOPm0xTUCUdZ1stfxOsVabgCo+hdPwp/+Y+jnl8Dxo0KAwbNix2VaF2rXfWNJWrvvrUlhiTgwRMtt9++/iEwQvfn//854bP82JAwISOKAkvDD179oxHcIB/2SmWgirg8kzAjR49uuEydE3J3s3Uu3fvOIHIC126TPbPSZdJP6eY61IvWHinfTBt6LhfHnroodgai04zqQ0dgySCHq2d1CR0xARqOdtEE7ZhsprfLR0emGDmd087seeffz4eL0KopqPaRBOCSkcU1WtQhY461RJUAY9VHicE52jHTltAwhM8x9Bam+c6Qm8MklL3J5Lv/O0YVJlyHybcd4TVaDN54YUXNnvcWgqq8HzDY4bXEIMqkqRSsZ6pTkzaMgbbfffd4++QMSgttdk1x85ENizwPoGL1rYRZlKTo3iobcvVJjod+8LYlDqYsSkfIxTP2JTxNhN4bEJob4zJ6LZBNxmDKtUTVEE6MpmADTVN165d4yQ18ypsMrrssstiW2weNzyGCHelzTz1HlSB9YwkqVpZ01Qnxl+E40899dS4pkC4ZM011wxXXXVV3PhHaOXaa6+N4/7WHBHKJkvqIL5/OYPXdHJJY1NqGv6fIAJrcbxxpCW1R3sff8r343tT1/Gz6zWowmOgmoIq4DFLSIsOqqzrrb766jHkxO+SOphjps4999y4psnv+cwzzwx/+ctfYo1jUOW/rGkq17TlvgK17IMPPohdTw477LC4G4egAq1jCZVwrjgBAZCYzMb76XP8m7uozcIlk4/Zl8ltU5W+J5/jCYx/W/o5LV2Xen3yogMNbzzR04aOttocl8SCMeEeBkZ0uuGFvdAkVkpqcu4crbYqZbKLwAiTdLxlp3lZPG/PNG/afUcIhqBKpbaJLlVQpZrPf0yDIt4Y5HB26D333BMuv/zycPTRR8e/Awb57OAl0av/dmvK7T5D+I0OSxy7RiDl4IMPDj169MgbVOHvhgEozzMsOkmSVCrWM7WB8dkuu+wS3xi7PfDAA7GmoWsEdeVWW20Vu0gy2VWojXCa1KS7J5OajGMqbWzKpB11F+NuAjVMRGfvNGNcNTVSTUft1FJnvFpETffKK6/EurGaOqrkw3WnsyxvjNXpIklH2dNOOy0+pnjsbLPNNuHII4+smNq9nKxnJEnVzJqm+jEe4+hN5lMJ3VOX0BX/pptuCoceemgMsbBGQ9iYUHmh8Rud9hjPs9ZBEKZcm4lzsVbSpUuX+MZ8cOoGSAiBUEtao5naY5Co6djA8Pnnn8c1GtZ/6jWownpqNQVVcvE4mG222eIb6410ZGf9+Y477og1DfUvtf9tt90WN3nImqbSVcazcQ1P5tBGiwQbO88GDBgQ9t5779iBQNWHwQuTcvw+OZ6JLiT8funAwovbtttuG2688cY40ZWdeGUymBcFXvwWX3zxip3syk7zpp1mKc3LsUhtTfMysUXymUlNgyrVHVQpNCjaeeedY5CL47LAY4fnPAqFwYMHx0FwvaLASIs+nAtJkpnduCCgsueee8bdnHRYYTdwwgQ5Cyp0qunVq1dcEOH5pR6DXpKk8rGeqT1MSNL589Zbb42bEi666KI45t9uu+1icJZOEuzIYgyTPZ4//fTT45nmq622WsUEVfKNTQnmEKgm6Mt1paskCxTsNGO8ysQs46vW4j5Ku+/qOajCGLXagyq5GKsz+X/11VfHsTp1P38L/B2wMEDIi8UQJnvrkfWMJKnaWdPUFsb8rLFwvNNzzz0XN90SVOGoIMZwm2yySRgyZEisXbLXMdhEysepFyopqJKL+WACN3SPXH/99WNtk0I2dMZPpym0do2Gy/O1EyZMqNugCh3/qemo56o5qJIPdS9reqzjUdOzjsf6DGuWnPJA0Ivb3t6deqqFNU3lq8xn5BrBi0puao0EKC+UmH/++eO/7PzKxvvpc/xLijL3D+vLL79sdJl83yP7ZxS6TPbnW7ouatqG7pRTTokdQ5i44+gg2tCRZCTFe80118QjOzg2iKBGNb0App1mvKAxKCKMw+QcAR1aJDMI5MW9pRc3HqtMCjPBXWuTmsViEaAWOqq0VPTRNYoQF79vwhefffZZPA6IgAZH3lAw1Bvul7SDl+cHwilbb711nPBOHVIOOOCAGGQkwHLBBRfEtpYglMLfzdprrx1T9bfccktsXS5JUilZz9Q2JrToqMKORCYtqWWoW6hfunfvHg488MDw4IMPxg4TtA+mJijF+entGapmIpsANZ0ymZimFie4wmQvXWK4vS2h9ubyfK9qquk6IqjCZo1arekINTGZyzidiVweKyNGjAgLL7xwnNzlb6K1x2ZVO+sZSVItsKapXYz5GZ9zssFTTz0VPvroo7DTTjvFzcOs3bCuwQZB5qXZZEmnEtbrKjWoUihUzW0hiEAYh/UWxuYEq5mLZ+N0S2NU1nC47D//+c8Y6K+Wmq49sZZFTUdQhfF9LeL3TPd71iQff/zxGG6iS89JJ50UNxNvsMEG8VitemNNUx2q41m5SrGbi7RiNtoRpydDJvsIgowcObLh8+nMZHbSg3/TLq7k0UcfjX9gPXv2bLgML07ZO8SYVKENMu2Q02Wyf066TPo5xVwXFR4UMVA4/vjj4++J7ggkeNmleMghh8RuJSxYs4uvGpOLbU3z8njkMtw/TGpObdvtag2qjBs3ruaDKqR1GQCxE5HHO9iFSCep+++/Pw6KUteVepIKHxZ4+Pu47777YrqZ5wqKJibDwZFihFYI+pDwp4sRCKrQ8ej222+Pi0mSJJWa9Uz9IBTLsUCc+05whXAK+vTpE+tPak9q2WLCHZWICVkmJgmt8Ljm+CPqMya1aZdMMIEaJxcTunSJpLZO49x6Qni6HoIqLGzw+GfTyfnnnx/H8dSxTOanzqo8DqplYaO9WM9IkmqBNU19YOzGhj8C92ye/OSTT0L//v3DnXfeGfr27RvXJhjPU9NU4xoN4zLWF9gUuu6668YAC9gky9ogaxDMwecGV3ifz7F+Q0eVmWaaKdSbegmq0CmSjqisQXDEL+iKusMOO4Rhw4bFxwcbjuuNNU11mCZTjc/MVYJJL3Zx0X2DJwS6UrB4y441dtbjnHPOCWeffXa44YYbYmCEHTt06iDwkHbRb7bZZrHDCccHEQCgWwEvLOy0T0+2TJ4RkDj66KPjCxRHS5AaZcc+WCAlfcnPYhKGts9MuvAkTRuoYq+LijN06NBw1FFHxSQjLwKcFcdxOrxIMAHGDkYGR5V6JFAxGOiwy5DHJreR28KAiZACk8FM5rHQTlAjHYNSj0EVQj6cEViLeAwce+yxcdBPWIWuQvrv/ZIGQYQNeW7m+XSrrbaKH2Oyn2DPPvvsE4477riw3377xY8zaCTpnMIr3K+bb7553BUsSVI5WM/UL2pMxi6Ma2ixTYcVxiZ0W2R8Qj2z4YYbVv1kJwEVahlqGsZtTOaxe5E3bitd79h9SXi/XoMqzEHUclCFjpC9e/cOG220UZxzqbdASj7WM5KkWmJNU78efvjhuFmQ+VbC6v/3f/8XN2vTMY+jg6hpOAmhmsd/LO9Su1HPcEIDY3fWaKhnuM2s7f3www9xPM9aTb0GVVi36Nq1a6hFPAZuvPHGuDZ8zz33xHVgWdNUG8MqHezee++Ni7kcm0IAhJZkBFayn0gGDRoUAyxMjrGTnoAD3SsSAgEsXPJEwwsnL7CXXHJJo3PlCJUMHDgwDr5YGCdBypNTtuHDh4cTTjghtjvjBfncc8+NE42tuS5qHvchIaDzzjsvJhgJK6WPs3OPlnO80ZFkxRVXjIMi3kh1VntwhcdMGhSxGE/AiccOj8d6C6uwG5WBYK0HVXi+IGBBWp3AnBoPgtiFzO5d/r45AojXgoRdySwA8Vx82WWXNXyc5/rx48fH5w+eN6r5eUGSVBusZ+oP43kW7wlo/PWvf23o8EZ4gQA+k7yE8Wk5Tfc8JnkJ51Z7O2lqGG47b9TgjMXoPkodX29nuqegCm3GORq2VoMqbDDgMUzdzjG+9Va35mM9I0mqRdY09Yc6pl+/fvFIlJ133rlRsOPuu++OazQPPfRQDDCk4Aqbbqs9uPLtt982rNEQUqGjDMeZUtfU6pi+3oMqrM8ceuihcXMJG0pkTVONDKtI7YhBADuyaJvN4KbQCwiX48WDiV46UrBbLw2KCHhU6wI1OxM5ComgChO6Kc1LYIOOK/UQXCGoQptofv+1GlThMXzGGWfECV2CKjx+9d/7Jf3t8vdMcUP4j64qtJ48+eSTYyvxhA4q/H3Qoo9JYb526623DnPMMUdMQ0uSJJUDGxY4HoeOm9NPP33eyzB2GTt2bJwEJrhCMH/jjTeOYyA6g9KhpFpxWxjP0wmTCV5COXSQSR1X6HpXrfVaMeolqEKtyuYdNpEw9q7HY2tzWc9IkqRawDh2nXXWiUexb7nllgUvN2nSpLhhkOAKR7Yz1qcrPvOzq6yyStUGVxjPc9x8WpfhaNPvv/8+dlphjYbOK4XqvFrBxmrug1oOqoB6fP/994//EsKXNU21MqwideBOpGImg9i1d9dddzW0oeMFlEleBkXV1Ibuxx9/jEGVTp06xfACE7i5aV7CLAyQGPjxb61NfKagCh1V5p577lCL+J0OHjw4XHrppbFzSKFQVj1P7HLEzwUXXBCDKgsuuGBc7KHzFfcVR8DRio/OO3RW4RggOmGBv4/Ro0fbqk+SJJV9XMNbsXUI9Q/hhhRc+eCDD2KAn4lejqCdc845qybc8emnn8Zz7AkwMJmbJrsJrFDTMNHLxG4KrhAyrpbb1tqgCq3CazXAwe+TxyYbRdiJWGt1aVtYz0iSpHpdowFhDo4+ZY2GAAvjfOoZNhf37NmzajbgMo4npAGC52k8z+1LXSRZr2ENJ9U0tXY8UAqq0FGGDQi1ijVFTvGgnmGdQdY01cywilQhUhs6jntiUMSZiix0p44rBCAqNbjCjkOCKgRQevTokXfCltvHoCgFV2otzVsvQRWOICOsMmLEiJgwV2Mc9fPcc8/FRRkWaxKCPaeeemo84oeigQlxdh0PHTq04b6tpYUOSZJUnxjTjBs3riG4wvh4/fXXj/UMuxoZJ1fqmOejjz6KQRuCKkzeFgpzsNmAmuYf//hHnLROk7yM/yq1XisGt+3ll1+O/9ZyUOWrr76Kk7lMXHNUcrXXoe3NekaSJNU7NuUy980aDWs1dJFn/MjmYo6PrNRxMp1UCGlQo1DTFArYcPuoZahpWI8imJNqGjpKVrN6CaoQqNp9993DTTfdFLbZZptyX52KY01TfQyrSBWKhCsvOgyKSPUSBElt6FZdddWKmQj97rvvYlCFM+27d+9e9OQzARdCKwyKuK1M7qbgCgPAamsV/tZbb9V8UIVgBcf/8HgkUa6mKX06ztAthccz559SGGTv1KUQYNGmc+fOceEGLAhUSzpfkiSpNeNHupRQz9Bam44da6+9dgyuMNnL2L9SgisEij/88MMY0mCytthxIMGHFFzh9qZJXkL5lVKvFaNegipMxrMZhNqaMFWt7SJtC+sZSZKkwn755Ze4CZEwPp0sqF8I4VPTrLvuuhUTfOZ6vvjii3F8S3fvYueaf/7554aOK9Q2s846a6zTqGlmmWWWUE3qJahCkIru7ddcc03Ycccdy311KoI1TfUzrCJVgdSGjkleAiycAc8EL4OiNdZYo2wL3YRMCKrQAYbji9o62czxJym4wgQity8Niio9zVsvQRUGPyeeeGK4//77w1prrVXuq1QRskMmLG4QUOHt8ccfDzvssEOcCD/iiCPCkksu2W4tKSVJkqp1PEkgJAVXxowZE3r16hXHSwTyu3TpUpbgCtfr/fffj6FiugbONttsbf4+TI6mLpKMEwnhU89QI1RyMDkFVRiXZrcKrzXUrmz8mHnmmeMO2UqvM0vBekaSJKl4dMt+4oknYnc+gisEPQiuUNP8/ve/L1sQmuvBGg1Bk2WXXbbNc80EXjj2lJqGYzMZN6c1Gr53pWw0qOegymOPPRYDKmwq3nXXXSv6d1Iq1jS1wRUy5fXZZ5/FJzsm1pjEWW655cLYsWMbPk+LKZ4Is9823XTTRt+D9sgk/AgesIDbv3//2IUj26uvvhrWWWed2EmDF5Fzzz23yXXhxZ+jZbgM14PF8tyJwZNOOil29uC6cj76u+++W1O/WVKs2267bbj55pvjcTN0byDAwgsT52wfcsghcaDEgKlUCJXwmFh44YXjIGBqXhj53Xbt2jWsttpq8fFA1wkGRs8880w8UoWJbW5vpQZV6J5Ry0GVG2+8MZxwwglxEG5QZcr9khYdDjrooBge4/mJ50F246Zg2QUXXBAfI9n3ZzaDKpIkdRxrmspBrbDooouGI488MowaNSoet0N9Qye6pZdeOmy44Ybh4osvjgHg3PFSR+HnUDfyOKFzZVuDKun2cXQQdSv1DN1JmKymswx1GnXvxIkTS1qvFaNegirUkttvv33c+UpNY1DFekaSpGphTVM5GCtTt1xxxRUx7E6nPta9WJvp1q1bXP+ivqGjfKmwCZg1GtbgpiaoAsbKrMtQF9ARnNvEet7zzz8f12monVgTKlW9Viw6wtBVhq7/tRxUeeqpp8JOO+0U62aDKv/lGk3tMKyivE/uLEhPN9104YEHHghvvPFGOP/885uc282iLMGJ9DZs2LBGnyeownnltKW69957w5NPPhkGDBjQ8PlJkyaFTTbZJIYdSH4OHjw4nHzyyeGqq65quAwTmX369Ikv9CQj6STC2+uvv95wGQIul1xySRwkjB49OgY7evfuHV+oaxETa+w+vP766+OEJ//ypNyvX78YGhk4cGB45JFHYhK2owcAdFNh0NKemNSlUws7G9dbb70YYiEZ++yzz8bHAzsf2RVX7kERhUIKqtDmuxZxH/N3zaICg+90bE29YzI/hbOGDBkSA3WnnHJK7KJC0pzQFZchsMJzKIEVFgFg2lmSpNKwpqlcjIcY46fA/ccffxz69u0baxi6FdJO+7zzzouToR015uf7MpZn1yBjN3YKtuftI7zMZCl1Nd+fXYkEdLi91LWE3jlTvpzqJajy448/xk0e3E46qlRbO/OOYD0jSVJ1sKapXGxiZO2CdamPPvoobrAm6MHx8KyXUN/QVTJ383Z7j3PpWMm63TLLLNOumyKpDdgcTn3GmgAbpllvY03o6aefDm+//XZ8fJZ7jYbrQH3F9WNNqVaxNkb4nrXQPffc0zUGa5qa4zFAauKYY46JSUmSeoXQWYUAwZ133pn382+++WbcIceLJbvUwDE2m2++eUyd8sJNq6rjjz8+Bi7S2X78bL5n6kTApBK7oAi7JBx7Q0CAcAovhnyvww8/PC4Ug3Qn7ckIcZA0rBfs0iMQlNrQMXjYYostYrhngw02iN1L2gMdc5jULPUAgNuX2tDxL6GW1IaO5HApQwAEVRiQ1XJQBZzFuf/++8fH1GabbVbuq1NxGJhzPBKJetLM4LFJ8I7nN/5O3nvvvdgO8vLLLw977bVXua+yJEl1w5qm+lDbMZYiJE3ol7Ph6VRCW21qGv6/Pcb8/Bw2ZDCxSUC+lF02qG3T8adMXFNLUM9wZFAp24YTVGFSl/uiloMq1MRsfmGO4KGHHoohIk1hPSNJUmWzpqnOUDCBDubVqWlYC+MkAOoZ5tfbax2DuoIN4NQSHEFfqrURbh9HBFHT/OMf/4g/l+vAG6GZUnYRr5egCp1z2Lx+6qmnhgMPPNCgSg5rmtpgZxU1QasyAiYk9XiRYfLqz3/+c5PLPf744w0vhvvtt198kcpO+tECLQVVwIsyL1Z0P0mXYddcCqqAjigplZkuw9dl4zJ8HBwPQ9gl+zJMQPXs2bPhMvWCCUbORmSR/JNPPomhHwYIhx56aEzzkrgkxDI1begYgLAAz0RxqQcA3L7555+/UZqX8xhLneatl6AKjxX+rm+55RaDKnnQyp3QHs+X2eaZZ544aORxSlcaukfxXGRQRZKk0rKmqT5MdBLaoBsn3emo86hlqD/oUEJtyQTda6+9FidJ24Kv4+sJL/D9Sn0cDF09qM3YgMFtop6gywobRdjoQZeZju4QmoIqqOWgCp1Gd9tttxiA4vFkUKUx6xlJkiqfNU31Yf2LOuPss8+OG7KZF2aemJMLqANYc7vpppvihuC2rmMQeifAQOeTUgZV0u2jZqOTC2t7yy23XPw4JyGwkZqTFlhDamu9VizuP2oabn8tB1Wohdm8ccIJJxhUycOapnYYVlETtCcm8EDbYnYfsWB90EEHhRtuuKHREUA33nhjGDlyZDjnnHNiO2OSoUx8gYlFgizZmARjMo7PpcvQGSNber+ly2R/Pvvr8l2mHtGGjsECbeg4952uNl26dIkvaossskjsAkG6tzVt6EjL8uTPQIRuNuW+fTy+OIeRdntLLbVU7LzyyiuvxEEROyUJT7X3oIgkdD0EVe67774YruBvnNSumlp++eXjcx+PRQoM2j0mDJAJ6/FYATt2kZ4fJUlSx7OmqW5MuDLe3mOPPeLRLXQioSvnO++8EwP6jMdPPPHEuJuw2DF/CqqwC5EJ5PbqPNlWBGWozVZfffWw9tprx2A+NRdBfDZ4UMe193n39RJU4YglHjts4mBOI/dIY1nPSJJUDaxpqhvBDoIqp512WgxzsOmW0DonBiy66KKx28q1114bwx3FBlcmTZoUgyoLLbRQWHzxxcvaZYPbR83G2gxrUdRo1BeEdNjozloSdVx7z4mnzv8EVVjzqlU8ZlibOfLII+PJEuX8XVcq12hqR23OTGiqMInH5N2ZZ57ZMInFEyMvov369Ysfyz5eh/QkTwqLLbZYfBHiSAxVDgYNvXr1im8cT8KgiPMSzzjjjLDvvvvG3xcDI45oKtSGbsKECfFoJ37XuSGkSrh9dLPgjccux1MxyctjlvdJ+hJeYuBEsGBqgipMjvP3UMuTnSNGjIgTuxxvs+2225b76lQ07h86Q3EWKel4jiLr2rVr3KlLeCUly5OpefxJkqTWsaapLXTFIHDPG4F7zoSnpqGGmXvuueMkHjXNaqutlnfMxQQpwXZCDNS60003XagkBGeYcOaNjiDUM7xxpCTdWNLxp7POOmubfwbhfoIq1HvUNLU6NuV27r333rF2e+yxx2KdqPysZyRJqmzWNLWDMfjSSy8dTjrppBi6Z5zPZmI2i9JNkq6LdNCgriHEnm+NhnUPxvN0aCH0Xkm4vmze5I2O+N9++20MqnA7WadhTE49w79TU4vVS1CFtbgtt9wyDBw4MBx77LEGVZphTVMb7KyiJmgfxgtnNtKRtCQuhCQoLzS8+CDtCsudNOLFhM+ly/CClS2939Jlsj+f/XX5LqOmbejOOuusmHBlxx4TlRdeeGEc4Gy33XZxgJTdhu7iiy+Oi/GkgCstqFIozcsxRaR5uW0MfritdP9pa5q3XoIqTObusssu4fLLLw877rhjua9OVdhqq63i3xOtxTmeaocddoihPhYVUuCvo4+mkiRJTVnT1C4CG4y5brvttji2p5ahfmGSirqVXWccq0P9CYLEW2yxRRzPr7zyyhUXVMlFGJpOfVxXukhSp7GDktpt1KhRsebm/daMMeslqEKdt//++8e675FHHqn4+rUSWM9IklS5rGlqE2NyTjUghMAY/913341jMsIrhDA4Vv7SSy+NXQLTmJ9O6H369IkbxistqJLv9rEpmtu45pprhp49e8Yajs6RrNGwmfqzzz6LIf22BFVY+6nloAp1K0GVPffcM5x88skGVYpgTVP9DKuoCVKc6fiK7CfIhRdeuNnFfI5dYQAFuniQ9KQtc/Loo4/GNDAvTukyHNnC7rbsrg68IKdAAJfhqKFsXIaPgxQpoZTsy6SJvHQZFR400PkhnfvOCz2Dh6uuuiqGj0jyEljg84RY2LFYTVKal8cTbbUJ6cw888xxcpcOQNxeOsZkP/7qOajChD4dkwgn9e3b10FQKzB45O/mp59+Cv/85z/jYgjnkYLHly36JEkqPWua+sD4fuuttw5/+ctf4tiebqA///xz2HnnneOOvn322SfWOOzs4yjbSg+q5OL6UmPTUpvgCpPTHA1E62+OC6JOoe5uLriSgioE+2s5qMJcA8cXP/fcc3HOIM1NqGXWM5IkVSZrmtrHvDHhEwL3jO8JdLAmQzhl2WWXDRtssEHYa6+94nw9IRa6elfb7SOoQh3Deh21GWssrLmwNsj6IaEc5tWLDap07tw51PLRX4zNCSaxEdZ1heJZ01S3aTJu+VaOMWPGxBeNU045Je5Ye/7552MbXRZj6bpA22U+x841giLvv/9+OOqoo+IEIKGHGWaYIX6fzTbbLO50Y8IwnRlNYOCWW25p2OGWkqJHH310bAdGWpCdcQMGDIiXYecYk3Jnn312XAC+9dZb45M06UterHHOOefEz99www0xvEIbNXZSvfHGG2U/h7wa8ZTA7/Tggw+O53sjuw0dk37V/CLJ7eOceh6bdP/h/+nGQmttjgxiJ2PCQIlkM7saCb7UKiZ0meSnQ8h+++1X1b/fcnemoQvRKqusEs+SbC7gJ0mSOpY1TX2j/rzrrrvi2Ja6c7bZZou7rTgqiG542WP+au0gwoQtNQ1n3BNAoYsIb9QtBFNygyoEXmo5qMIE/8MPPxzH5JW+27RSWc9IklRZrGnqF2sYjPVZh2NdDssvv3ysZ1inoWtJtc/h//jjj7GW4XZSs9GNJR1/OtNMMzVcjk3yHOla60GVjz76KG6woG695JJLGmo6tY41TXUyrKK87r333tiGjIV6AiCHHXZYDKykFxFeFJn0YhcXLxAETk477bT4YpIweXbAAQeEe+65Jz6xEm7hSTb7nG1CJZy7xsCLY4QOPPDAGFzJNnz48HDCCSfEVCkvwueee248mzz7hXvQoEHxRZvrQxcNjjFhJ51aj/vz9NNPjx02CKvQUYXz4O+4444YaqAzDqEVBkWcqV7tgyJ2JhJaYVBE4IrJXR7HTHDzmKv1oAq7Mvl9MvBlJ2JH/z6HDh0a37hvscwyy8SzOgm35TNu3Lj4eVLWDNgIsx1yyCGhkjvUMFFOEI/rzXOWJEkqD2ua+sX4fuONN447+G666aa4AYO22nfeeWcMq7MRgnpmo402qvoNDgQ1vvrqq4bgCvUcE7zUcYyfCajUelCFuQvCSUxM8jvvaLVc01jPSJJUWaxp6hfrYrvvvnu48cYb44ZuxrvUNJxgwNoX9QzrdByFWu1rNHTHpIbjjdqGNUTWaNhkwCkQtR5U4Vik3r17xxqWOqMUQRVrGlUSwyqSGjCxefzxx4drr702nvGdutekz/Gi+be//S2+PfPMM3HSM6V5CTVV+6CIdnMMiD7++OMYymJQRCcZBkbZad5aQes8JurpBnLEEUeU5PdHeI2JckIcPKboiDR48OAYfmOSNxdBtttvvz12Kzn00ENjmK1SJ3azJ3iZjL7tttviQoEkSZJK5/PPPw8bbrhhPPKGsWb20T90JKF7ZwrjMxHK7jXqGTZgzDLLLFX9q2J8zQaOiRMnxtoNjEfpiEp4pdYCKwRV2LgybNiweNRrqTas1HpNYz0jSZJUXgTu6RLJGDJ34zbj/bvvvjuu0dBZkO7ebEalc/pyyy1X9R052ERMCJ+u95MmTYonOXTp0iXWNazXVPsaVC5qN2pSTje4+uqrS1azWdOokhhWkdSkffK+++4bO0O01IaOnYlM9D7xxBNh6aWXbgiuMElYrYMGgiocg0RQh0QvtzM7zcugqNonscGxWwx0mSwlrFLO3xfHMDG5279//2YvRztvJnUreWI3O/hU7bt0JUmSqtFbb70V/vznP8eOnM1N9FH7ECJgdyLBlQkTJsTACvUMHTI4OqgacfQPx+Zy2xdddNHwz3/+M9Y01DZ0M6Wm4d9pp502VDNq0jPOOCNcc801saMK9Wg51VpNYz0jSZJUPowr6fhOCL85hDnovkNw5cEHH4xj/RRc4eurNbiSjv5hnYm6hg3G1DUEV9IaDccGVesaVMLtovbkd0UAvtw1mjWNysWwiqSpniTkyKcUXBk5cmTcYZbdhq5aBkUpqMIuzOyjf1Kal0lebitdVtKgqBrTvG+++WYcBBFK4vifcl1/drbSzrBfv35xF2JLE8zVMrErSZKk6kJwha6DKbjC8S5MDFPT0IlwjjnmqIoxP3UL42omOVdYYYWGsA4123fffddw/CldJJmIpKb53e9+16j7TDXg9jCBf+mll8Y26Msvv3zZros1jSRJkioBx50+8MADcY3mvvvuC506dYrBFWqanj17Vk2XRUIpr776alxXout99ribEAv1DJeh5mF9hjfWcqqhXsvGbaHWZNP4LbfcUtaazJpG5WZYRVK7Thp+8803DW3oHnroodC1a9eGNC+TiJUaXElBFVKsTEY3t1Mx7U6sxjTvO++8E4MqBETOPPPMsvw+XnvttdCrV6+4W4+wD4Ox7HaGhRhWkSRJUilqmnHjxsXgCjUNnVo22GCDGMRnMpHjdCpxzF8oqFJoIjsFVwixEFyhniG4Qn1T6b+fiy++OJx33nlhxIgR8WidcrCmkSRJUqUinM4RQQRX6LxCB3DWaKhp1lxzzbJ38GhtUCXfZgM2FVPPsMmY+iwFVwjpVOoaVEIn/6222iqunXHU0/TTT1+W62FNo0phWEVSh6ENHSleJnlJ9TJYSMEVJhUrZdBQbFAlV0rzMtHLoIgJYW4j4ZVKTPN+8MEH8fzD7bffPpx//vllu/9/+eWXeJ8TbGIRgLMY01FSzTGsIkmSpFIHIwh7M8nLGxOn66yzTpzkZXKRsX8ljPlbE1TJN5GdgivUb9RDKYxfacda8vu4/PLLY+iejRGrr7562a6LNY0kSZKqAePWRx55JNYzd911V1wToJahpll33XUrpstiCqqwRjD//PMX/XUEV77++utYz1DXUDMQwqeeYaNBpaxBJayJsEbG9WPdrJybBaxpVCkMq0gqaRs6XoAJsDAJmtK85WxD99FHH8UQR2uDKsWkeRkUMdFbCWlebidBlS233DIMGTKk7Ncn20YbbRQWW2yxcOWVVzZ7OcMqkiRJKhcmPakbmOSlphk7dmzclUhbbeqazp07lyW4QlDlxRdfjLvx6GQ5NXUVnQ/T8adM+M4222wNwZWZZ545lPv+J+R+0kknhfvvvz+stdZaoZJY00iSJKnSUTuwaZQNpHfeeWd8n/UCahq6SZYrOEENQpeP1gZVCnX+T8EVbt8888wTaxr+LfdRSN9++23cyE23eU4nqLTNAdY0KpfKWa2U2gkL2kwS5r4NHDiwYQKO/ydVyYvCtttuG1+8stH1gRbPTMgxMXfkkUfG41+yPf744zHgwAv44osvHq6//vom1+Wyyy6L14cXHQIZzz//fKPPF3NdasUss8wStttuu3jky8SJE+P54rw477DDDvFcvkMPPTQ8+eSTTe7nagiqgPAHA55lllkmJpKXW265+LHXX389DgD5l0EX3VhK7bPPPouP5969e1dcUCUFfX7++edyXw1JkqSKYU1TeagpCVgfddRR4dlnn42dGZloZJKXNtVM7HE8DTUGk6SlDqq0tqNKPtStCy20UFh11VVjTbPgggvGQP6oUaPibaZ24tigUt2+hJ934403hhNPPDFO6lZaUAXWNJIkSVNYz1QmuqhQt1xxxRVxzYAg/uyzzx4OOuig0K1bt9C/f/9wzz33xO6LpcKaCR1VWFeZmqBKqtnoeM9609prrx3rmplmmim89957cT3vlVdeCRMmTIh1VDk2c9PxnvXEO+64o+KCKrCmUblU1oql1A7GjBkTX3DSG+dYgxcCEIrgBXf48OExRPD555+HbbbZpuHrCROwsE8LLCblbrjhhhhEYQdXMn78+HgZ0qYvv/xyOOSQQ8Jee+0VWxEnt912WzjssMPCoEGD4gQik4eEBUh0Ji1dl1rFAIHdh9y3BFeuueaaeL/37ds3Bn8OOOCA2JqO30FH+fDDD9stqJKLMAjnvvfo0SNO8q600kpxIMh59/yeGXwRSipFcIX7l8cq12Po0KFlD6oce+yxMZTE/U9amvcZKO6yyy7x87vttlv8WMJjgL8x3vh/BtH8PwNMSZKkWmVNU9mYBF144YUbAvcEVBjPUnvS3YSxN8duMmbtqGBHblClvcf5fN8uXbrEemm99daLCw4cEzR69OhYJ3PbeL+jgyt8fzY8EBJiUpfrUm7WNJIkSc2znql8BN3XX3/9uLmVeoZu+AsssEA45phj4tifeXo6ShJW7+igyrLLLhu7n7R3zUYQp3v37rEjJpvJ2TDOugRrNNRSrDV05BpUQvhnxx13jGEQwvds7C43axpVEo8BUs0jSHLvvfeGd999N06mcTQLk110+QABAnbCsVNsjTXWiEfV0PqM4Eh6gSRpevTRR8cXTybt+H9evOmWkey0006xVfKDDz4Y3+fFb7XVVosdRMALEbvUDjzwwPiCTzuylq5LvaGrCgMFwjucn0i3jdSG7ve//327taFjQELgaJVVVokDllJhopVuMulMeDrr0FUntaFr7/Mh+TmbbbZZDMuwE5Ez7MuNdPbIkSNjkIyQEJP5/D1tvPHG8fMMkBkMp05F/K5IdedikpqQiyRJUj2wpqkOjPcZg9NthYndxx57LAbYOfqUmob/b4+jggiqvPDCC7E+6oigSnMI3HOePPUM/1LDpKOCGN+391FI1IZ0I6VVOceaVgJrGkmSpNaxnqkerGNRazD+Jiz+6aefxrl76pnNN9+83dZTOjKo0pIffvih4agg1ms6deoU6xnW69q74wlrQH369InrgWx2b++N021lTaNKYlhFNY1UJGeH0+HkuOOOC48++mjYcMMNw1dffRXbgSXsimPAxM44OqiQbqR7Q0KwYdFFF41pSxb+2SnHDrOLLrqo4TLXXXdd/B686PBzOUKIF3QmJpN+/frFQAtBjGKuSz1jEvTpp59uOD+RQQOTk9yftKpr65np5Qqq5JvIpvVbCq7w/3RjYWDGoIhQ1NT417/+FTuqLLHEEmHYsGHtHoSRJElSaVjTVCfG+9R61H6016ZzJDUlk7zUNLS5bkvIJAVVmEQl+F3OzonUbBwTRE3DG7szmeTljRp3aq8b993ee+8d65mtttqq3a63JEmSSsd6prqDKwRKWKMhjE+neta06JrPJmPG/G0Jq5czqJIvTJLWaFjbY80ohfE5IWBqH/u77rpr7H5PF05CMZKa8hgg1TRCDoRDdt999/g+LwqEALLDIeDFh8+ly+S+QKb3W7oMnVto6cUOMybu8l0m+3u0dF3qGROddM9Ibejuv//+GDwidESnDY4MYtK3NW3oCKlUQlAFDOJoO8eEda9evWIrOsIqJJVpJT527NjwySefxMFSazEpziQ49xOdewyqSJIkVS9rmurEeJ/x/R577BE7fVLj0WqZbpocJ8smiHRkLJPA1RZUSTUbQXuCN9Ru/Mtt4bhPappx48bF2rjY25eNTqYctUuHSIMqkiRJ1ct6pnpRb6y44orh9NNPj2N7apHVV189DB06NK49bL311nETN+GTYo8HJRhCUGW55ZYre1AF1FZdu3aNpySss846cQ2KGuaZZ54Jzz33XFxPYqNxa1G7sS7JGg8dVQyqSIWV/0wIqQNdc8018RgUXmBU3YMiwhy8nXfeeXFQRFDltNNOC/vss0/stMLuRH7XhFDypXkZVBB6qYSgSj50iuH4G95SmpcJ7bfffjteX5K8DN5aSvOS/uW+mH/++cPtt98+1R1aJEmSVF7WNLWBTQoE7nmjayRhfGoaahiOBGV3IuN4JknzhVAqLaiSi+vDEae8MVHNphFqmjfffDMe90qohZqGzxNyac7DDz8cQz489rfZZpuS3QZJkiS1P+uZ2sCaC+F03jid4N13340dV66//vp4UsDaa68dN9BS17COkW+NhvqAYDtBFWqDSsMxqwsuuGB8o/4ihEPHlffffz+u36SOK2xCbq6jDPUPHSLfe++9eMICNZCkwiprdkNqRwQTaLXMbqyEBXxabzFxlo0XHD6XLsP7uZ9Pn2vuMoQKCBMw2cgEXL7LZH+Plq6L8k+CMoF79tlnx12Jzz77bDyn/fzzz49p3u233z7cdNNNsR11SvMef/zx4ZxzzqnYoEoxaV6O9Wkpzcuk97bbbhsnwpn4ZnAlSZKk6mVNU5tmm222sOOOO8ZwOfUftQy799iZuNRSS4UjjjgiHolKt04QYv/9738fL1OJQZVcTNyyc3DJJZeMk9YcoUtt8s4774THH388vPLKK/E2MYmb67HHHoutsi+//PJ4H0mSJKl6Wc/UJsb7SyyxROyC//zzz8dx/hZbbBHrGz7eu3fvcNlll8Uu8mmNhjWbPffcs2KDKrnoVs+6DB0x119//dghny7/3F7WaQjrsHE4t6MMNdz+++8fQzmsT1bDbZXKrbJnOKSpQPsxXgh4kUwIK/AiM3LkyIaP0bni448/jkexgH95ISHlmXCeHCGHpZdeuuEy2d8jXSZ9D7pZ8LOyL0PrY95Plynmuqh5TNISVKHDyuuvvx5baK+xxhrhiiuuiIMHdibSMvrqq68Ou+22W5wUrjYpzcvjhdbahFgIOBFa4XYdeuih8f8JqhDU4bFHa8WpPU9RkiRJ5WdNU/vYoUf3kJtvvjkGOAhpcLTsTjvtFLp37x535BFgZ/fexhtvXPFBlXwT2XPMMUe8LWuttVZsG85t4bz7J554Ihx++OHx6Ffq76eeeire7osvvjh2oGlut6IkSZIqn/VM7WPMziZiAveEONhoyzoFR6GynkbonrH9QQcdFMf61RjemHbaaeMGc9aiCK4QyKE7PutRd911V9ww/8ADD8TN6dzO0aNHx/VCN6VLxZkmU+xBYlIVIRjCC2SfPn1iB45s++23X2y5THsyAigHHnhg/PioUaMako+cw0dq8txzz40ThryY8oJz5plnxsvwgrvsssuGgQMHxjQorbx4EeJcbVKjuO2220K/fv3ClVdeGSfkLrroopgspRtIOouvpeuituFpjRZr/H743SC7DR2DhGqf+GQXIreNiV0GgaCjDwllBkzVfvskSZLqnTVNfWOikxA6NSM7+Ah4EMQnkM94vxaO+6RbJMe8cjup36hhmNi+8MILndiVJEmqctYz9Y01GtbWODLo2muvjR8j7MEaDTXN4osvXvVrGDzGX3311djVnw6SP//8c6zTUpdINqtLaplhFVWUlJ2a2hcpzrgmNEKnElKO2Ug8sntr2LBh8cWDy/HikZ1ypD0dk4K8wMwyyywxdELohQRlwufoavHGG2/Ezhcnnnhi2H333Rv9rEsvvTQMHjw4vigTgLnkkktCz549W3Vd1DZ0W+H+ptUaO/k4Fudvf/tbTLXyO2BQxBu/u2oeFPEYYkKXxyzdVx566KHYQYbdmRwJxO7Fls6ElyRJUmXVM7CmqW8c+bPhhhvGo3RuuOGG2E1x+PDhMdhB5xU6iBLE32ijjeIxotVs7Nix8fako46o2ahjqGeoa6jZJEmSVBqu0bhG017++te/xrU11r84TYAuJKzTsAmXOod6huAKR6FW8xoNoZWjjjoq1mubbrppPE2B9T5uHzUNHTLpoC8pP8MqKrtff/01/OMf/4idTHIHRdX8AqXyOfXUU2PHEQY9nIGY/Zj67LPPYmiFQREdSTg/nQERwZVFFlmkqh5z7LbkPPcJEybEUA7nwvMxBkPcPiayuS84I1GSJEkdw3pG7Y36mKBKjx494vFA2Tvy6ARKHcN4/4477ojnpLPpgZpmk002iccKVZOXX345BlU4757W4dRjn3/+ebxt3MYxY8aEv//971V3uyRJkqqJNY3aG8ENNndzAsGWW27ZaI3mq6++CnfffXdcp2GTBusyrM9svfXW8USDajr6lKAK3WO4nY899ljcPM/Hnn322YZ1qM022ywMHTq03FdVqliGVVR2vBgxMTVgwID4IrTqqqvGLiTZmJCzO4SKwUCArjgHHHBAo6BKoTZ0BDoYMHBeOgOhFFzhTPVKDq5QQJBK5kgqQjlzzz133qOCuNxMM81UlusoSZJUD6xn1N7GjRsXw/d06szu7pmv9nn++efjjkXCHYQ62LVHTcOOPjouVrLXX389TtwedthhcU4gX/2VjkCSJElSx7GmUUd0vmejMMH05hC+v/fee2Ow48EHH4ynDqTgykorrVTRwRXWmE4//fRw3XXXxaAKHWLyXYbjT61ppMIMq6jsDjzwwHDVVVfFlr8cuXPfffeFPfbYIx6fw/u5DK6ovTFg+Ne//hXb0DHRS/iDBGw6P7HS2tARQtlrr73iJDaDoHnnnbfcV0mSJKluWc+oEhBceemll2I9w0Tvxx9/HI8IoqbZfPPN49GolVTTvPnmmzGowkaDk08+uaKumyRJUr2xplElIKj+wAMPxM3F999/f5hrrrnCVlttFddoVl999Yra0M6a0rnnnhsuv/zyJh3+JbWOYRWV1U8//RTTkQsttFBsb/y73/0uvhjtvPPO4aGHHoovQJzpxsI8Kcz55puvyYQcKjldqerCIOPrr79u1IZu4YUXjucLkuZl0FHOxxthLSZ0aYdNNxiSxpIkSSoP6xlVak1D15IUXHnnnXfCBhtsECd52dnIpG85wyFcH4IqdIo866yzDKpIkiSVkTWNKtEPP/wQ12YIrtB5hWNBWaMhjL/mmms224GyFPXWxRdfHM4777zwyCOPxLVLSW3nCr/KauzYsbE18cCBA2NQBRwBxBEso0ePDl9++WVMUDKBxbEuXbp0iS8AvBiA0EAKDqTgSvr3rbfeCp999lnZbpuqE5O2nTp1ihOndFqhlTZnDn7wwQdxZ+IKK6wQjj/++PjYTY+1UuHnHXTQQeG5556LgyCDKpIkSeVlPaNKrWkI2Z9yyinh1VdfDa+88kpYZ511YkfTRRddNE7yXn311bHWSbV1qVBXcWZ9nz59wplnnmlQRZIkqcysaVSJCKcQtr/pppvChAkTYi3z888/h1133TWuH9INiI4mv/76a0mvF/UT3VQ4GYJjiwyqSFPPsIrK6rbbbosvOqusskqjj0+aNCnMNNNM4amnngq//PJLDKlwjjVnv3Xr1i0eg8IOsaOOOiqMGDEifk0KraR/6dBCRxZ2bUltNfvss8dOP+xKZDL37LPPDhMnTowTrMsss0w4+uijw6hRo2LHk44Oqhx++OHh8ccfj0EVuhFJkiSpvKxnVA3BlR49esTA/QsvvBCP39lkk01iZ1MmeelwMnTo0LjRo6ODKx999FHs7MKkM5tQ7JAqSZJUftY0qnQzzjhjrCOuvfbaGFz5y1/+EjursP5HGJ9O9JzUQJilI1EvEfo/44wzwn333RdPhpA09QyrqGwIofACQjBlwQUXbPg44RLeCANcf/31oXfv3uGCCy4IvXr1ipNqBAR22GGH2GnljTfeCH379g0bb7xx+PDDDxt9/0MPPTR2xmACrposssgicUIx943uM1h//fWbfG7fffdt9D04n5wXb4JA8847bzjyyCNjwCcboQdSnzPMMENYfPHF432d67LLLovXh8FAz549w/PPP9+kRSDXa+655w6zzjprPLKJQEet4jZuv/32YdiwYfF2XnLJJeGbb76Jj8cll1wyBqqefPLJJvd1ewRVjj322BjAIqjC70SSJEnlZT1TmDVNZaJ2pPYjcE+3xvfffz8GR+64446w1FJLxU6S1DiESto7uEIYhhqV+p6fYVBFkiSp/Kxp8rOeqVzTTTddXA+88sorw6effhqPCeL0BjqtsNGdAAvHBv3444/t+nOpj2688cZw4oknhrvvvjseRSSpfRhWUdm89NJL8V86UjzxxBPx/wmfsKuLROKcc84ZjwLaaqutGh13cuqpp8agwK233hpfdF5++eX4okSAIKHNMd0upp9++qprKzxmzJiYDk1vqXMMIYlk7733bnSZc889t+Fz3J9MAjLQ5D644YYbYhCFo2yS8ePHx8twbjn33yGHHBJfxAkPZSeqCV8MGjQovPjii/H4GyYWv/jii0aBoHvuuScMHz48/g4///zzsM0224R6QOcfzkdkgMLvgEQtLedoQ8cEMGGqkSNHTnUbOoIq/O4YdBFUWWyxxdrtNkiSJKntrGcKs6apfNTJCy+8cKz56GhKQIWOktSEyy+/fFhvvfXiphECLVMbXKEzJfXnuuuuG+t9gyqSJEmVwZomP+uZ6kB3FTZ3X3rppbGeYb1wvvnmiycyEDjq169fPKHh+++/n6qfQz10yy23xO975513xrpGUjvKSGVy4IEHZvbYY4/MqaeemllhhRUy2267bWappZbKrLzyypmXX34583//93+Z7t27Z5555pmGr3n33XczPXr0yAwZMqTR9zrggAMym2++eebrr7+O7/fv3z+z0korZV577bVMtTv44IMziy22WGby5Mnx/fXWWy9+rJD7778/85vf/CYzceLEho8NHTo0M/vss2d+/vnn+P5RRx2VWWaZZRp93Y477pjp3bt3w/urr756ZuDAgQ3v/+c//8l07tw5c9ZZZ8X3ua+nm266zPDhwxsu8+abbzKLmXn22Wcz9eqXX37JjBgxIrPPPvtk5ptvvsxcc82V6du3b3w8f/nll5nvv/++6Lfvvvsuc8wxx2TmnXfezLhx48p90yRJkpTFeqZ41jTVg7pzwoQJsYbceOONY823/PLLZ0466aTMCy+8EGuU1tQ048ePjzX8zjvvnPn111/LffMkSZKUxZqmONYz1YW1rNGjR2eOPPLIzOKLL56ZeeaZM3/84x8z1157bax1WlPP8Hb99ddnZplllswDDzxQ7psm1SQ7q6gs6PpBOpV0I22zzj///DDHHHOEnXbaKXaQoIsHR9CsttpqsUtF8vTTT8ejbZZbbrmGj9G5gq9977334r+09+JIoHXWWScsscQSRXevqNT7ifP39txzz0YdYjhffJ555gnLLrtsPB7mhx9+aPjcs88+G+8fEqQJHVE4bmncuHENl6HFczYuw8fTz+U88+zLsPuN99Nl+Dz3ffZlOAu9a9euDZepR7Sh4z654oorYqtrHs88Lg866KDYhq5///6xG01LbehI69Ixh44tdFRZeumlS3YbJEmS1DzrmeJZ01QX6k46m3LULF1W6CJ58MEHh7Fjx8ajeemCevrpp4fXX3+9xTr6n//8Z+yUSt1Kt092PkqSJKkyWNMUfz+5RlNdWMuibmF95e23347rissss0wYPHhwXJPcYYcd4u/0q6++arGLJJ1UBg4cGE962HTTTUt2G6R64kyByoJjemgFzKQVNtxww/iWfPfdd+Gbb74Jm222WZh33nkbPr7ggguGL7/8stGxQLygPProo7FNMR577LF4GVoXcwwQLzaFjgJioMEE24wzztjo43ysEloT80L49ddfh913373hY7Rmpl1z586dw6uvvhrPG+cFl3Zm4H7NDqogvc/nmrsMgRZCFNynHCeU7zJvvfVWw/fg/uW4ptzLpJ9T737729/GNnS8XXTRRfFceMIrxxxzTJy4JSDEGfGbbLJJmHXWWRu+jsfsxRdfHIYMGRKDKtnhLEmSJJWf9UzxrGmqF3X03HPPHTdP7LHHHrFGJ3hPTUN9Q33O0ajUNGw4ya6hqSn53KKLLho3WxDqlyRJUuWwpimO9Ux1o0ZZaaWV4huhezZ0//Wvf42b5Q844IC4dkM9s+WWW8baJ3stkWOF9t577xhs4fOSOoZhFZXFUkstFS6//PKwyiqrxPfp0MHCPi8cLNSzcM/OrXSWXAqc0LmDIMvjjz8ellxyyfh1N910U3jnnXfiZBlGjhwZOnXq1PC9m0N3EEIy/KzszhWVEFTBNddcEwM7BFOSAQMGNPw/IYYFFlgg3gbOEl9sscXKdE3VEh7fa621Vnw777zz4mOOSd5TTz01/k433njjOJm7+eabx8c0KV92Mq688sreuZIkSRXGeqZ41jS1gXqcjQp9+/aNb99++2247777Yk1DCP93v/td+MMf/hC23nrr2OGUCV9q1dtvvz1ucpAkSVJlsaYpjvVMbdU0bKDnbdCgQXFdkXrm2muvjd0k11577VjH0B2SMBehfT5HjSOp41TGirzqDmGU7K4p7LJKARFeMFI74VlmmaXhY2DnFi8ixx13XFzU79OnTzjjjDPC4YcfHtt60SnlpZdeipNjBFuyvzYfvmaNNdYIN954Y3yfriJ0KGEA0lL7r4720Ucfxa4ae+21V7OX69mzZ/yXY5BA15m///3vjS6T3k8daQpdZvbZZw8zzTRTPGKIcEW+y2R/D+5vOr8Uuoyab0N3zjnnxE41o0aNisEjQiwLLbRQOOGEE+LEL5eRJElS5bGeKY41Te2abbbZ4jG+w4cPjzUgtcw//vGPGFjh+FPqcGrrGWaYodxXVZIkSXlY07TMeqZ2Ua+wIZ61xjFjxsTTC1hz5Lif7t27h+233z5cccUV8cggSR3LsIoqUnOdTWjN9cQTT8ROKJwvRxu2o446Kn6Os+cIT9DSi6N9mguc8DkCGaQoCQx88sknYb/99guHHXZYePHFF5sNuZTCddddF8M8W2yxRbOXe/nll+O/7FoD54i/9tpr4Ysvvmi4zIgRI2IQJXWP4TJ0oMnGZfg42PlGZ5rsyxAg4v10GT5PyCj7Mrygf/zxxw2XUXGP9RVXXLGhBR2/B44AWnPNNb37JEmSqpT1zH9Z09QHNplsu+224ZZbbonBlWOPPTYGVXKP25UkSVL1sKaxnqkXrAVyfOmRRx4ZNxa/+eab4eSTTw677LJL2dcJpbqQkWrIsccem1l//fUzY8aMie9Pnjy5xa95++23MwsttFBmmWWWyay88sqZp556KlNu//nPfzJdu3bNHH300Y0+/t5772VOPfXUzNixYzPjx4/P3HXXXZlFF100s+666zZc5t///ndm2WWXzWyyySaZl19+OfPggw9mfve738X7Jvnggw8yM888c+bII4/MvPnmm5nLLrss89vf/jZeNrn11lszM8wwQ+b666/PvPHGG5kBAwZk5pxzzszEiRMbLrPvvvvG6/noo4/G69SrV6/4JkmSJKl+6xlY00iSJEn1p1ZqGusZSSoNwyqqSgwUCGVkY9CzwQYbZPbff//M999/3+zXp6/98ssvM5dccklmmmmmiV/7zTffNHyvcnrooYdoCRMHadk+/vjjGEyZa665YpBk8cUXj4GTdL2TDz/8MLPZZptlZppppsw888yTOfzwwzO//vpro8s89thjmRVXXDEz/fTTx8DLdddd1+R6DBkyJIZRuMzqq6+eee655xp9/scff4z3d6dOnWL4Zeutt85MmDChXe8LSZIkqdbUej0DaxpJkiSpdtV6TWM9I0mlMQ3/KXd3F2lqTJo0KTz22GPxaCDOk+McOc7J/ve//x0/z1E/2a26eMjz/oQJE2IbL9rZvffee/E8ussvvzz8+uuv8XgbSZIkSepo1jOSJEmSqpk1jSSprX7T5q+UKsj9998fHn300TBkyJCw0UYbhW+//TZMO+208Y1g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s6jfxe67797kMbrpppu24rdZu9pyf2YymXDSSSfF510e2xtttFF49913O/y6Vosvv/wy7LLLLmH22WeP9ynPA999912zX+PzaNvnYYYPHx569OgRL7/ccsuF+++/P5SSYZV29H//939xMLfHHnuEV155JTzzzDNh5513bs8foWYcddRRoXPnzt5HHeytt94KkydPDldeeWUYN25cuPDCC8MVV1wRjjvuOO/7dnTbbbeFww47LA6+X3zxxbDCCiuE3r17hy+++ML7uYM88cQTsdB+7rnnwogRI8Kvv/4aNtlkk/D99997n5fImDFj4nPL8ssv730uSYoce1Y3x7S1w7FybXL8LUnaYIMNwu233x43bLG+8f7774ftttuu2Tvm0EMPDffcc09c3GKMQLhlm2228c6cyvpl7733DhMmTGh4O/fcc+v+Pm3r/eljtHmEfbbffvuw3377teoxRjgl+zE6bNiwun+MtvX+5O/7kksuiY/n0aNHh1lmmSWu/xC0UohBFf7mWae59957w5NPPhkGDBjQ4l3j82ho9TzMqFGjQp8+fWIg6KWXXoqbuHl7/fXXS/dQzKhd/Prrr5kuXbpkrr76au/RMrj//vszPXr0yIwbNy7Dw/qll17y91BC5557bqZbt27e5+1o9dVXzwwcOLDh/f/85z+Zzp07Z8466yzv5xL54osv4vPJE0884X1eAt9++22me/fumREjRmTWW2+9zMEHH+z9LknKy7Fn9XBMW7scK1c/x9+SpHzuuuuuzDTTTJP55Zdf8n7+66+/zkw33XSZ4cOHN3zszTffjHNozz77rHdqG+sX58La7/70MVq86667LjPHHHMUddl+/fpl/vjHP7biu9efYu/PyZMnZ+aff/7M4MGDGz1uZ5hhhsywYcMy9e6NN96Iryljxoxp+NgDDzwQX5s+++yzgl/n82jb5mF22GGHzBZbbNHoYz179szss88+mVKxs0o7IZ302Wefhd/85jdhpZVWiq2bNttss9Imj+oULQZJy910002xzZZK75tvvglzzTWXd307JnFfeOGF2Pot4bmF95999lnv5xI+ruFjuzToarPFFls0etxLkpSPY8/q4Ji2tjlWrn6OvyVJ+Y5duPnmm+NxFtNNN13eO4g5S7oRZ8/fcHQARwk5bzl19Qv3/TzzzBOWXXbZcOyxx4YffvjBB2kb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\",\n      \"text/plain\": [\n       \"<Figure size 3000x3000 with 12 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"fig = plt.figure(figsize=(30, 30))\\n\",\n    \"plt.rcParams['font.sans-serif'] = ['Arial Unicode MS']\\n\",\n    \"id = 1\\n\",\n    \"for i in [1, 2, 3, 4, 5, 7]:\\n\",\n    \"    ax = fig.add_subplot(3, 3, id, projection='3d')\\n\",\n    \"    fig.colorbar(ax.scatter(ana_data['proj_x'], ana_data['proj_y'], ana_data['day'],\\n\",\n    \"                            c=ana_data['coef_refl_b0'+str(i)], cmap='GnBu'),\\n\",\n    \"                 shrink=0.8, aspect=30, orientation='horizontal', pad=0.05)\\n\",\n    \"    ax.set_xlabel('proj_x')\\n\",\n    \"    ax.set_ylabel('proj_y')\\n\",\n    \"    ax.set_zlabel('day')\\n\",\n    \"    ax.set_title('coef_refl_b0'+str(i), fontsize=15, fontweight='bold')\\n\",\n    \"    id += 1\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"GNNWR\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.13.7\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "demo/demo_gtnnwr_zh_CN.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"BAEE51CAC7804597B5D0E06FB209A34B\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"# 沿海水域关键营养物质的时空分布估算\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 1 项目介绍\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"###  1.1 背景介绍\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"**近海DSi精细尺度反演的时空智能方法**\\n\",\n    \"\\n\",\n    \"该案例显示了一种时空加权智能方法，可以获得沿海溶解硅酸盐（DSi）的高分辨率和长期分布。在近岸海域观察并揭示了由生物和物理因素驱动的精细尺度DSi变化和影响。\\n\",\n    \"\\n\",\n    \"溶解硅酸盐（DSi）从陆地向海岸环境的迁移是全球生物地球化学循环的重要组成部分。由于沿海水域强烈的陆海相互作用，沿海DSi的空间分布呈现出不规则特征（受陆地输入和海洋地形的影响），时间变化迅速，周期性波动短暂（受生物效应和洋流的影响）。然而，由于时空建模的不成熟和数据采样的低分辨率，目前对沿海DSi的研究通常以数百公里的空间和季节时间分辨率描述其粗略变化。因此，该项目将结合先进的时空分析模型和高分辨率数据集，以更高的时空分辨率分析海上DSi分布的变化。\\n\",\n    \"\\n\",\n    \"> [Qi, J., Du, Z., Wu, S., Chen, Y., & Wang, Y. (2023). A spatiotemporally weighted intelligent method for exploring fine-scale distributions of surface dissolved silicate in coastal seas. Science of The Total Environment , 886, 163981.  ](https://doi.org/10.1016/j.scitotenv.2023.163981)  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.2 数据说明\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"2010年至2018年浙江近海地表DSi数据集（通过将MODIS遥感数据集与近海地表溶解硅酸盐现场数据集进行匹配获得）。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.3 分析过程\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- 依赖库安装\\n\",\n    \"- 数据集导入\\n\",\n    \"- 模型设置\\n\",\n    \"- 模型训练\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"514BEF4DF7EF4B97A32C6F0390ADAB66\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 1.4 研究区域示意图\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"![Image Name](https://mydde.deep-time.org/s3/static-files/upload/upload/1695121607986_1.jpg)  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"0119234230D34F4A8313DDD05CFA92F3\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## 2 准备工作\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"依赖库导入\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"id\": \"F6860F13776147E39D652FB840CEB1EC\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from gnnwr.models import GTNNWR\\n\",\n    \"from gnnwr.datasets import init_dataset\\n\",\n    \"import numpy as np\\n\",\n    \"import pandas as pd\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 3 模型训练\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"0F51D94C0AAD452284A00ECC3CBE1529\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.1 数据导入\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>refl_b01</th>\\n\",\n       \"      <th>refl_b02</th>\\n\",\n       \"      <th>refl_b03</th>\\n\",\n       \"      <th>refl_b04</th>\\n\",\n       \"      <th>refl_b05</th>\\n\",\n       \"      <th>refl_b07</th>\\n\",\n       \"      <th>proj_x</th>\\n\",\n       \"      <th>proj_y</th>\\n\",\n       \"      <th>day</th>\\n\",\n       \"      <th>SiO3</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1895</td>\\n\",\n       \"      <td>1251</td>\\n\",\n       \"      <td>1737</td>\\n\",\n       \"      <td>1872</td>\\n\",\n       \"      <td>543</td>\\n\",\n       \"      <td>280</td>\\n\",\n       \"      <td>736685.4179</td>\\n\",\n       \"      <td>3314205.295</td>\\n\",\n       \"      <td>113</td>\\n\",\n       \"      <td>1.049</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>1621</td>\\n\",\n       \"      <td>1066</td>\\n\",\n       \"      <td>1435</td>\\n\",\n       \"      <td>1665</td>\\n\",\n       \"      <td>757</td>\\n\",\n       \"      <td>511</td>\\n\",\n       \"      <td>736685.4179</td>\\n\",\n       \"      <td>3314205.295</td>\\n\",\n       \"      <td>121</td>\\n\",\n       \"      <td>1.209</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>1587</td>\\n\",\n       \"      <td>1141</td>\\n\",\n       \"      <td>1807</td>\\n\",\n       \"      <td>1864</td>\\n\",\n       \"      <td>1211</td>\\n\",\n       \"      <td>1024</td>\\n\",\n       \"      <td>736685.4179</td>\\n\",\n       \"      <td>3314205.295</td>\\n\",\n       \"      <td>152</td>\\n\",\n       \"      <td>1.102</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>1121</td>\\n\",\n       \"      <td>1012</td>\\n\",\n       \"      <td>1411</td>\\n\",\n       \"      <td>1324</td>\\n\",\n       \"      <td>711</td>\\n\",\n       \"      <td>485</td>\\n\",\n       \"      <td>768193.4945</td>\\n\",\n       \"      <td>3402138.581</td>\\n\",\n       \"      <td>168</td>\\n\",\n       \"      <td>0.945</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>913</td>\\n\",\n       \"      <td>203</td>\\n\",\n       \"      <td>840</td>\\n\",\n       \"      <td>1035</td>\\n\",\n       \"      <td>114</td>\\n\",\n       \"      <td>63</td>\\n\",\n       \"      <td>736685.4179</td>\\n\",\n       \"      <td>3314205.295</td>\\n\",\n       \"      <td>200</td>\\n\",\n       \"      <td>1.350</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   refl_b01  refl_b02  refl_b03  refl_b04  refl_b05  refl_b07       proj_x  \\\\\\n\",\n       \"0      1895      1251      1737      1872       543       280  736685.4179   \\n\",\n       \"1      1621      1066      1435      1665       757       511  736685.4179   \\n\",\n       \"2      1587      1141      1807      1864      1211      1024  736685.4179   \\n\",\n       \"3      1121      1012      1411      1324       711       485  768193.4945   \\n\",\n       \"4       913       203       840      1035       114        63  736685.4179   \\n\",\n       \"\\n\",\n       \"        proj_y  day   SiO3  \\n\",\n       \"0  3314205.295  113  1.049  \\n\",\n       \"1  3314205.295  121  1.209  \\n\",\n       \"2  3314205.295  152  1.102  \\n\",\n       \"3  3402138.581  168  0.945  \\n\",\n       \"4  3314205.295  200  1.350  \"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"data = pd.read_csv('../data/demo_data_gtnnwr.csv')\\n\",\n    \"data.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"通过`init_dataset()`函数，用户可以设置输入数据、测试集大小、验证集大小、自变量、因变量、空间属性、时间属性、编号列、随机种子和批量大小。\\n\",\n    \"\\n\",\n    \"初始化的数据集可以使用`save()`方法保存，`read`方法可以用于`read`保存的结果。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"id\": \"12F98BCE23BE450F853FAA717D4C5EDD\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"scrolled\": true,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"data[\\\"id\\\"] = np.arange(len(data))\\n\",\n    \"train_dataset, val_dataset, test_dataset = init_dataset(data=data,\\n\",\n    \"                                                        test_ratio=0.15,\\n\",\n    \"                                                        valid_ratio=0.1,\\n\",\n    \"                                                        x_column=['refl_b01', 'refl_b02',\\n\",\n    \"                                                                  'refl_b03', 'refl_b04', 'refl_b05',\\n\",\n    \"                                                                  'refl_b07'],\\n\",\n    \"                                                        y_column=['SiO3'],\\n\",\n    \"                                                        spatial_column=[\\n\",\n    \"                                                            'proj_x', 'proj_y'],\\n\",\n    \"                                                        temp_column=['day'],\\n\",\n    \"                                                        id_column=['id'],\\n\",\n    \"                                                        use_model=\\\"gtnnwr\\\",\\n\",\n    \"                                                        sample_seed=48,\\n\",\n    \"                                                        batch_size=1024)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"A463A5C07EF343F48B6C981981E9591D\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.2 模型设置\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"该模型接受训练集、验证集、测试集、隐藏层和优化器等参数，并可以设置网络结构、优化器类型和学习率调整方法。\\n\",\n    \"\\n\",\n    \"`add_graph()`函数可用于保存模型的图结构，可以在Tensorboard中查看。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"id\": \"9B5FA0F3855D493C8E8C3788C1BA2182\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"scrolled\": true,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Add Graph Successfully\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"optimizer_params = {\\n\",\n    \"    \\\"scheduler\\\": \\\"MultiStepLR\\\",\\n\",\n    \"    \\\"scheduler_milestones\\\": [1000, 2000, 3000, 4000],\\n\",\n    \"    \\\"scheduler_gamma\\\": 0.8,\\n\",\n    \"}\\n\",\n    \"gtnnwr = GTNNWR(train_dataset, val_dataset, test_dataset, [[3], [512, 256, 64]], drop_out=0.4, optimizer='Adadelta', optimizer_params=optimizer_params,\\n\",\n    \"                write_path=\\\"../demo_result/gtnnwr/runs/\\\",  # 这里需要修改\\n\",\n    \"                model_save_path=\\\"../demo_result/gtnnwr/models/\\\",\\n\",\n    \"                log_path=\\\"../demo_result/gtnnwr/logs/\\\",\\n\",\n    \"                model_name=\\\"GTNNWR_DSi\\\")\\n\",\n    \"gtnnwr.add_graph()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"CB0DB82917B64462A619B7FD34CDBDB9\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.3 模型训练  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"使用`run`方法可以进行模型训练，并可以设置训练步长和早停步长。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"id\": \"BC958EB768D74A1295CA0428352BF62C\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"scrolled\": true,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"  0%|          | 0/200 [00:00<?, ?it/s]\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"100%|██████████| 200/200 [01:03<00:00,  3.13it/s, Train Loss=0.654475, Train R2=-0.136637, Train AIC=5359.6753, Valid Loss=0.348, Valid R2=0.346, Best Valid R2=0.346, Learning Rate=0.1]  \\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"gtnnwr.run(200, 50)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"EE1A39A77DA74A2FB2ADFEF9916D1098\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.4 模型输出\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"使用`result()`可以获得最优模型的基本信息以及模型在测试集上的运行结果\\n\",\n    \"\\n\",\n    \"使用`reg_result()`可以保存整个数据集上最优模型的运行结果，包括模型计算的时空非平稳权重。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"2C3D60C6F2A547369F386B026EB805D1\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------Model Information-----------------\\n\",\n      \"Model Name:           | GTNNWR_DSi\\n\",\n      \"independent variable: | ['refl_b01', 'refl_b02', 'refl_b03', 'refl_b04', 'refl_b05', 'refl_b07']\\n\",\n      \"dependent variable:   | ['SiO3']\\n\",\n      \"\\n\",\n      \"OLS coefficients: \\n\",\n      \"x0: 7.70582\\n\",\n      \"x1: 0.80789\\n\",\n      \"x2: 0.35238\\n\",\n      \"x3: -7.27008\\n\",\n      \"x4: 2.71207\\n\",\n      \"x5: -2.70717\\n\",\n      \"Intercept: 1.14341\\n\",\n      \"\\n\",\n      \"--------------------Result Information----------------\\n\",\n      \"Test Loss: |                   0.36002\\n\",\n      \"Test R2  : |                   0.34206\\n\",\n      \"Train R2 : |                   0.35378\\n\",\n      \"Valid R2 : |                   0.34643\\n\",\n      \"RMSE: |                        0.60002\\n\",\n      \"AIC:  |                      795.48254\\n\",\n      \"AICc: |                      801.18414\\n\",\n      \"F1:   |                        0.58032\\n\",\n      \"F2:   |                        7.07785\\n\",\n      \"f3_param_0: |                  3.94461\\n\",\n      \"f3_param_1: |                  8.49798\\n\",\n      \"f3_param_2: |                  1.14623\\n\",\n      \"f3_param_3: |                  0.07523\\n\",\n      \"f3_param_4: |                  3.78982\\n\",\n      \"f3_param_5: |                 32.53742\\n\",\n      \"f3_param_6: |                 39.51638\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(gtnnwr.result())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"id\": \"798AAEF567B84FCA9E9E4AE4FF75F54D\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>coef_refl_b01</th>\\n\",\n       \"      <th>coef_refl_b02</th>\\n\",\n       \"      <th>coef_refl_b03</th>\\n\",\n       \"      <th>coef_refl_b04</th>\\n\",\n       \"      <th>coef_refl_b05</th>\\n\",\n       \"      <th>coef_refl_b07</th>\\n\",\n       \"      <th>bias</th>\\n\",\n       \"      <th>Pred_SiO3</th>\\n\",\n       \"      <th>id</th>\\n\",\n       \"      <th>dataset_belong</th>\\n\",\n       \"      <th>denormalized_pred_result</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1.940916</td>\\n\",\n       \"      <td>-0.283860</td>\\n\",\n       \"      <td>-0.067999</td>\\n\",\n       \"      <td>-1.394895</td>\\n\",\n       \"      <td>-0.979911</td>\\n\",\n       \"      <td>0.021196</td>\\n\",\n       \"      <td>1.455532</td>\\n\",\n       \"      <td>1.564216</td>\\n\",\n       \"      <td>2730</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>1.564216</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>-0.410207</td>\\n\",\n       \"      <td>0.297343</td>\\n\",\n       \"      <td>-0.049788</td>\\n\",\n       \"      <td>1.085227</td>\\n\",\n       \"      <td>0.500964</td>\\n\",\n       \"      <td>-0.057419</td>\\n\",\n       \"      <td>0.779118</td>\\n\",\n       \"      <td>0.881114</td>\\n\",\n       \"      <td>1520</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>0.881114</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>1.098114</td>\\n\",\n       \"      <td>-0.190340</td>\\n\",\n       \"      <td>-0.081715</td>\\n\",\n       \"      <td>-0.339349</td>\\n\",\n       \"      <td>-0.555052</td>\\n\",\n       \"      <td>-0.419049</td>\\n\",\n       \"      <td>1.569469</td>\\n\",\n       \"      <td>1.556025</td>\\n\",\n       \"      <td>525</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>1.556025</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>3.584155</td>\\n\",\n       \"      <td>0.109951</td>\\n\",\n       \"      <td>-0.146093</td>\\n\",\n       \"      <td>-1.490272</td>\\n\",\n       \"      <td>-1.080250</td>\\n\",\n       \"      <td>0.002662</td>\\n\",\n       \"      <td>0.800459</td>\\n\",\n       \"      <td>1.288403</td>\\n\",\n       \"      <td>1510</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>1.288403</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>0.470609</td>\\n\",\n       \"      <td>-0.074786</td>\\n\",\n       \"      <td>-0.110306</td>\\n\",\n       \"      <td>0.322804</td>\\n\",\n       \"      <td>-0.615852</td>\\n\",\n       \"      <td>-0.126700</td>\\n\",\n       \"      <td>1.206451</td>\\n\",\n       \"      <td>1.219628</td>\\n\",\n       \"      <td>697</td>\\n\",\n       \"      <td>train</td>\\n\",\n       \"      <td>1.219628</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2896</th>\\n\",\n       \"      <td>4.063159</td>\\n\",\n       \"      <td>0.237773</td>\\n\",\n       \"      <td>-0.216600</td>\\n\",\n       \"      <td>-1.646158</td>\\n\",\n       \"      <td>-0.639441</td>\\n\",\n       \"      <td>0.460679</td>\\n\",\n       \"      <td>0.867058</td>\\n\",\n       \"      <td>1.303689</td>\\n\",\n       \"      <td>1853</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>1.303689</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2897</th>\\n\",\n       \"      <td>2.557924</td>\\n\",\n       \"      <td>-0.262583</td>\\n\",\n       \"      <td>-0.055180</td>\\n\",\n       \"      <td>-0.972126</td>\\n\",\n       \"      <td>-1.249024</td>\\n\",\n       \"      <td>-0.085510</td>\\n\",\n       \"      <td>1.251122</td>\\n\",\n       \"      <td>1.569227</td>\\n\",\n       \"      <td>2844</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>1.569227</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2898</th>\\n\",\n       \"      <td>1.240896</td>\\n\",\n       \"      <td>0.349453</td>\\n\",\n       \"      <td>-0.108519</td>\\n\",\n       \"      <td>0.078868</td>\\n\",\n       \"      <td>5.873232</td>\\n\",\n       \"      <td>0.203107</td>\\n\",\n       \"      <td>0.933091</td>\\n\",\n       \"      <td>1.377350</td>\\n\",\n       \"      <td>571</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>1.377350</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2899</th>\\n\",\n       \"      <td>3.805270</td>\\n\",\n       \"      <td>0.215857</td>\\n\",\n       \"      <td>-0.180514</td>\\n\",\n       \"      <td>-1.730431</td>\\n\",\n       \"      <td>-0.689228</td>\\n\",\n       \"      <td>0.299099</td>\\n\",\n       \"      <td>0.865110</td>\\n\",\n       \"      <td>1.172676</td>\\n\",\n       \"      <td>1903</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>1.172676</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2900</th>\\n\",\n       \"      <td>-0.181585</td>\\n\",\n       \"      <td>-0.417392</td>\\n\",\n       \"      <td>0.065130</td>\\n\",\n       \"      <td>2.556560</td>\\n\",\n       \"      <td>-1.030162</td>\\n\",\n       \"      <td>-0.660034</td>\\n\",\n       \"      <td>0.960878</td>\\n\",\n       \"      <td>1.177664</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>test</td>\\n\",\n       \"      <td>1.177664</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>2901 rows × 11 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"      coef_refl_b01  coef_refl_b02  coef_refl_b03  coef_refl_b04  \\\\\\n\",\n       \"0          1.940916      -0.283860      -0.067999      -1.394895   \\n\",\n       \"1         -0.410207       0.297343      -0.049788       1.085227   \\n\",\n       \"2          1.098114      -0.190340      -0.081715      -0.339349   \\n\",\n       \"3          3.584155       0.109951      -0.146093      -1.490272   \\n\",\n       \"4          0.470609      -0.074786      -0.110306       0.322804   \\n\",\n       \"...             ...            ...            ...            ...   \\n\",\n       \"2896       4.063159       0.237773      -0.216600      -1.646158   \\n\",\n       \"2897       2.557924      -0.262583      -0.055180      -0.972126   \\n\",\n       \"2898       1.240896       0.349453      -0.108519       0.078868   \\n\",\n       \"2899       3.805270       0.215857      -0.180514      -1.730431   \\n\",\n       \"2900      -0.181585      -0.417392       0.065130       2.556560   \\n\",\n       \"\\n\",\n       \"      coef_refl_b05  coef_refl_b07      bias  Pred_SiO3    id dataset_belong  \\\\\\n\",\n       \"0         -0.979911       0.021196  1.455532   1.564216  2730          train   \\n\",\n       \"1          0.500964      -0.057419  0.779118   0.881114  1520          train   \\n\",\n       \"2         -0.555052      -0.419049  1.569469   1.556025   525          train   \\n\",\n       \"3         -1.080250       0.002662  0.800459   1.288403  1510          train   \\n\",\n       \"4         -0.615852      -0.126700  1.206451   1.219628   697          train   \\n\",\n       \"...             ...            ...       ...        ...   ...            ...   \\n\",\n       \"2896      -0.639441       0.460679  0.867058   1.303689  1853           test   \\n\",\n       \"2897      -1.249024      -0.085510  1.251122   1.569227  2844           test   \\n\",\n       \"2898       5.873232       0.203107  0.933091   1.377350   571           test   \\n\",\n       \"2899      -0.689228       0.299099  0.865110   1.172676  1903           test   \\n\",\n       \"2900      -1.030162      -0.660034  0.960878   1.177664     6           test   \\n\",\n       \"\\n\",\n       \"      denormalized_pred_result  \\n\",\n       \"0                     1.564216  \\n\",\n       \"1                     0.881114  \\n\",\n       \"2                     1.556025  \\n\",\n       \"3                     1.288403  \\n\",\n       \"4                     1.219628  \\n\",\n       \"...                        ...  \\n\",\n       \"2896                  1.303689  \\n\",\n       \"2897                  1.569227  \\n\",\n       \"2898                  1.377350  \\n\",\n       \"2899                  1.172676  \\n\",\n       \"2900                  1.177664  \\n\",\n       \"\\n\",\n       \"[2901 rows x 11 columns]\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"result_data = gtnnwr.reg_result('../demo_result/gtnnwr/gtnnwr_result.csv')\\n\",\n    \"result_data\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"A0B15FE7E5C740C398DAF08A08F75E35\",\n    \"jupyter\": {},\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"runtime\": {\n     \"execution_status\": null,\n     \"status\": \"default\"\n    },\n    \"scrolled\": false,\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"### 3.5 模型结果分析\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"模型的输出结果可以通过绘制图像和其他方法导入和分析\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"id\": \"E294572F0D624DF78C20B0BDC87B9B06\",\n    \"jupyter\": {\n     \"outputs_hidden\": false\n    },\n    \"notebookId\": \"64f833bbbc84d7d76f0dea9c\",\n    \"slideshow\": {\n     \"slide_type\": \"slide\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"R2: 0.3518267064128938\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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IjdIT0/H66+/jvbt26sg5Z577sHevXsZpOSDIypEREQuJtONe/XqpXqkCJly/NFHH6niWcobAxUiIiIXWrNmDZ588knVbVamG8+ePRs9e/bka64RUz9EREQukJaWhpEjR+Khhx5SQYosLLh//34GKXbiiAoREZGTySKCMmoiiwiKwYMH4/3330dQUBBfazsxUCEiInKilStXon///rh69apan2fOnDno1q0bX2MHMfVDRETkBKmpqRg+fDi6dOmigpQGDRrgwIEDDFI8OVCpUKGC6r6X8yZDZERERJ7i1KlTaNmyJT788EO1/dJLL2H79u2oVKmS3rvm8XRN/UirYGkhbHXkyBG0a9cOjz/+uJ67RUREpNnSpUtV2/u4uDgULVoU8+fPV6MqZIJApXjx4tm2J02ahMqVK+P+++/XbZ+IiIi0SElJwauvvqoWERRNmjTB4sWLUb58eb6AZiymldzeggULVH7P1oqR8qGQm1V8fLwb95CIiOimEydOoEePHmq6sRgxYgTeeust+Pv78yUyazHt8uXLce3aNVUpbcvEiRMRHh5+61auXDm37iMREdGSJUtQr149FaQUK1YMq1atwrvvvssgxUV8LBaLBQYgax8EBATgu+++s/mY3EZUJFiRvKBMASMiInKVGzdu4OWXX8bMmTPVdosWLbBo0SKULVuWL7qd5PwtAw5azt+GSP2cOXMGGzZsUAVJeQkMDFQ3IiIid/rjjz/QvXt3HDp0SJUnjB49GuPHj0ehQoY4jZqaIV7hefPmoUSJEujUqZPeu0JERJSN1E8+99xzSExMVJNAZPvBBx/kq+QtNSqZmZkqUOnXrx8jUyIiMoykpCQ89dRT6Nu3rwpSHnjgARw8eJBBircFKpLykTURZA46ERGRERw9ehSNGjXC3LlzVapn3Lhx6nxVpkwZvXfN6+ie+pHhM4PU8xIREamGbS+88IIqni1VqhS++uortG7dmq+Mt46oEBERGUFCQoIqQxgwYIAKUtq2batSPQxS9MVAhYiIvN7hw4fRsGFDfPHFF/D19cWbb76JdevWoWTJkl7/2sDbUz9ERER6kdKDzz77DEOHDkVycrKqQZHeKPfddx/fFINgoEJERF7bdGzQoEFqfR7RoUMHNaKScx060hdTP0RE5HUOHDiA+vXrqyDFz88P77zzDlavXs0gxYA4okJERF6V6pkxY4ZqhS+L4coyLBKsNGvWTO9dIxsYqBARkVeQdWWefvppfPPNN2q7c+fOquGoLCxIxsXUDxERmd6ePXtQt25dFaTI+jyTJ0/GihUrGKR4AI6oEBGRqVM9U6dOxYgRI5CWloYKFSpgyZIlqusseQYGKkREZEqxsbFqeRYZORGPPvqoaolftGhRvXeN7MDUDxERmc7OnTtVqkeClICAAHz88cf49ttvGaR4IAYqRERkGpmZmXj//ffRsmVLteBt5cqV8fPPP2PIkCFqcUHyPEz9EBGRKcTExKB///6qH4ro3r07Zs+ejbCwML13jQqAIypEROTxtm3bplI9EqQEBgbi008/Vf1RGKR4PgYqRETk0ameiRMn4oEHHsBff/2FqlWrYteuXao1PlM95sDUDxEReaRLly6hb9+++OGHH9R2nz59VNfZ0NBQvXeNnIiBChEReZzNmzejd+/euHDhAoKDgzFt2jQMGDCAoygmxNQPERF5jIyMDLzxxhto06aNClKqV6+O3bt3q34pTPWYE0dUiIjII0RHR6v0zqZNm9S2zPCRkZSQkBC9d41ciIEKEREZ3oYNG1SQInUphQsXVrUoTz75pN67RW7A1A8RERlWeno6xowZgwcffFAFKbVq1cK+ffsYpHgRjqgQEZEh/f3336pgduvWrWr7mWeewZQpU1TxLHkPBipERGQ4a9euVVOPpdtskSJFMGvWLPTq1Uvv3SIdMPVDRESGkZaWhlGjRqFjx44qSKlTpw7279/PIMWLcUSFiIgMQRYRlFETWURQvPDCC/jggw8QFBSk966RjhioEBGR7r777js13Tg2NlatzzNnzhx069ZN790iA2Dqh4iIdJOamopXXnkFjzzyiApSGjRogAMHDjBIoVs4okJERLo4deoUevbsqTrLimHDhuGdd95Rqx8TWTFQISIit1u2bJlamycuLg5FixbFvHnz0LVrV74TdBumfoiIyG1SUlIwdOhQPPbYYypIady4MQ4ePMgghWxioEJERG7x559/onnz5vj444/V9quvvoqffvoJ5cuX5ztAxg1UpPPgE088gWLFiqlug/fccw/27t2r924REZETff3116hbt65qfy/H+1WrVuG9996Dv78/X2cybo3K1atXVXTdqlUrrFmzBsWLF8fx48cRERGh524REZGTJCcn4+WXX8ann36qtuWYv3jxYpQtW5avMRk/UJHq7nLlyqkiKquKFSvquUtEROQkx44dQ/fu3fHLL7+o7dGjR+ONN95AoUKcx0EekvpZuXKlmjP/+OOPo0SJEmpYcPbs2XkWYcXHx2e7ERGR8SxcuBD169dXQYqMlsvaPW+//TaDFPKsQOXkyZOYMWMGqlSpgnXr1uH5559X1eCff/55ro+fOHEiwsPDb91kNIaIiIwjKSkJTz/9NPr06YOEhATcf//9alZP+/bt9d418lA+FovFotcPDwgIUCMq1nUdhAQqe/bswY4dO3IdUZGblYyoSLAiU9yk5TIREenn6NGjKtXz66+/wsfHB2PGjMHYsWPh5+fHt4WykfO3DDhoOX/rmigsXbo0atSoke2+6tWr49tvv8318dKtkB0LiYiMZ/78+Rg8eLAaUSlZsiS++uortGnTRu/dIhPQNfUj1d9//PHHbcVXnFNPROQZJL3Tr18/1WVWghQJTiTVwyCFTBGoyJS1nTt3qgKrEydOqOKrWbNmqaiciIiM7fDhw2jYsCG++OIL+Pr6YsKECaresFSpUnrvGpmIrjUqQpr+yJQ16Z8iU5OHDx+OZ555xuk5LiIicg45bcyZMwcvvvii6pNSpkwZdaEphbNEzj5/6x6oFAQDFSIi97p+/ToGDRqERYsWqe0OHTqoERWZgkzkivO37i30iYjIM0jtifRGkSBFZvJMmjQJq1evZpBCLsX2gERElCcZeJcW+FJXKC0ipP29tMGXCRFErsZAhYiIbJKheakb/O9//6u2H374YTUVWRYWJHIHpn6IiChXspJ9vXr1VJAi6/N88MEHaukTBinkThxRISKi21I9U6dOxYgRI5CWlqZ6Wy1ZsgSNGzfmK0Vux0CFiIhuuXr1KgYOHIjly5er7a5du2Lu3LmIiIjgq0S6YOqHiIiUXbt2qVXsJUiRtdhkVGXp0qUMUkhXDFSIiLxcZmamqj9p0aIFzpw5g0qVKqnFYqWhmywuSKQnpn6IiLzYlStX1Fo90g9FPP7445g9e7ZqxkVkBBxRISLyUtu3b0edOnVUkCIr08+YMUMVzTJIISNhoEJE5IWpHukqK2vz/PXXX6hSpYpaIPa5555jqocMh6kfIiIvcunSJTz55JNqlWPRu3dv1XU2NDRU710jyhUDFSIiL7Flyxb06tULFy5cQFBQEKZNm6amIrNgloyMqR8iIpPLyMjAhAkT0Lp1axWkVK9eHXv27MFTTz3FIIUMjyMqREQmFh0djSeeeAIbN25U2zLDZ/r06QgJCdF714g0YaBCRGRSEpz06dMHFy9eROHChfHJJ5+oQIXIkzD1Q0RkMunp6Rg7dizatWungpRatWqpBQYZpJAn4ogKEZGJnD9/XhXMbt26VW0//fTTmDJlihpRIfJEDFSIiExi7dq16Nu3L2JiYlCkSBHMnDlTTT8m8mRM/RARmSDVM3r0aHTs2FEFKbVr18a+ffsYpJApcESFiMiDnTt3TqV6pB2+eP755zF58mTVJ4XIDBioEBF5qFWrVqkC2djYWISFhanFBLt37673bhE5FVM/REQeJjU1Fa+++io6d+6sgpT69etj//79DFLIlDiiQkTkQU6fPo2ePXti165danvo0KF499131erHRGbEQIWIyEMsX74cAwYMwLVr11C0aFHMmzcPXbt21Xu3iFyKqR8iIoNLSUnBsGHD8Oijj6ogpXHjxjhw4ACDFPIKDFSIiAzszz//RPPmzTF16lS1/corr6hmbhUqVNB714jcgqkfIiKD+u9//6s6y8bHxyMyMhKff/45Hn74Yb13i8itOKJCRGQwycnJeOGFF9QsHglSZETl4MGDDFLIKzFQISIykGPHjqFJkyaYMWOG2h41ahR+/PFHlCtXTu9dI9IFUz9ERAaxcOFCDBo0CAkJCYiKisKXX36JDh066L1bRN47ovKf//wHPj4+2W7VqlXTc5eIiNwuKSkJzzzzDPr06aOClPvvvx+//PILgxQiI4yo1KxZExs2bLi1XaiQ7rtEROQ2v/32m6pFOXLkiLpYe/311zF27FgeC4n+oXtUIIFJqVKl9N4NIiK3k1k8UjQrIyolS5bEggUL0LZtW74TREYqpj1+/DjKlCmDSpUqqWHPs2fP5tn0SCrgs96IiDxNYmIi+vfvr24SpLRp00bN6mGQQmSwQEW6K86fPx9r165VFe6nTp1Cy5Ytcf369VwfP3HiRISHh9+6sQqeiDyNpHgaNGigRlN8fX3xxhtvYN26dRxZJrLBx2KxWGAQ0hq6fPnymDx5Mp566qlcR1TkZiUjKhKsxMXFqSXOiYiMSg61c+bMwYsvvqj6pJQuXRqLFi1ShbNE3iY+Pl4NOGg5f+teo5KVLLJVtWpVnDhxItevy+qgXCGUiDyNjBI/99xzavqxaN++Pb744guUKFFC710jMjzda1Sykml5sq6FXGkQEZmB1J5IqkeCFD8/P5XC/v777xmkEHlCoPLqq69iy5YtOH36NH7++We1Mqj8Iffq1UvP3SIickqqR2rvpMusdJstW7YsNm/erDrNSm0KEWmja+rnr7/+UkHJlStXULx4cbRo0QI7d+5U/yYi8lSSd3/22Wfx9ddfq21ZSFAmDhQrVkzvXSPyOLoGKosXL9bzxxMROd2+fftUA7eTJ0+qPlGTJk3C8OHDVTM3IrKfoYppiYg8OdUzbdo0ldJOTU1VMxjlYkxSP0TkOAYqREQFdPXqVdVSYdmyZWq7a9eumDt3LiIiIvjaEhUQK7qIiApg165dqFevngpS/P39MWXKFCxdupRBCpGTMFAhInIw1fPBBx+oSQAyc1GWAZHZi0OHDmU9CpETMfVDRGQnmako6/SsWrVKbXfr1g2fffaZ6rRJRM7FERUiIjts374ddevWVUGKdMr+5JNP1DRkBilErsFAhYhIg8zMTDXVWNbmOXfuHKpUqaL6Pj3//PNM9RC5EFM/RET5uHz5Mp588km10rvo3bs3Pv30U4SGhvK1I3IxBipERHnYunWr6qB9/vx5BAUF4eOPP1ZTkdnAjcg9mPohIspFRkYG3nzzTbRq1UoFKdWqVcPu3bvx9NNPM0ghciOOqBAR5XDx4kX06dMHGzduVNv9+vXD9OnTERISwteKyM0YqBARZSHBiQQpEqwULlxYzeqRQIWI9MHUDxHRP6mecePGoV27dipIqVWrFvbs2cMghUhnHFEhIq8nNSgyirJ582b1WkgdirTClxEVItIXAxUi8mrr1q1D37591RTkIkWKYObMmWr6MREZA1M/ROSV0tPTMXr0aHTo0EEFKbVr18a+ffsYpBAZDEdUiMjrSGdZ6Y0i7fCFdJedPHmy6pNCRMbCQIWIvMrq1atVl9nY2FjVWVYWE+zevbveu0VENjD1Q0ReIS0tDSNGjMDDDz+sgpT69evjwIEDDFKIDI4jKkRkemfOnEGPHj2wa9cutT106FC8++67avVjIjI2BipEZGrLly/HgAEDcO3aNRQtWhRz587Fo48+qvduEZFGTP0QkSmlpqbipZdeUkGJBCmNGjVSqR4GKUSehYEKEZnOyZMn0bx5c9W0Tbzyyiv46aefUKFCBb13jYjsxNQPEZnKN998g6eeegrx8fGIjIzE/Pnz0blzZ713i4hcHahMnTpV85NKoRoRkTslJyerkRNZRFA0a9YMixcvRrly5fhGEHkwH4vFYtHywIoVK2bblk6OSUlJqjhNSA5Y1sUoUaKEGnZ1B7liCg8PR1xcHMLCwtzyM4nIeI4fP66mGR88eFBtjxo1Cm+88Qb8/f313jUiKuD5W3ONyqlTp27d3nrrLdSpUwe//fab6kcgN/l3vXr1MGHCBK1PSURUYIsWLVLHHglSoqKisGbNGkycOJFBCpG3jahkVblyZZUHrlu3brb7ZZ2Mbt26qWDGHTiiQmR+GZkW7D4Vi0vXk1EiNAiNKkbCz9cHN27cwLBhwzB79mz1uPvuuw8LFy7EHXfcofcuE5ETz98OFdNeuHBBLeiVU0ZGBi5evOjIUxIR3WbtkQsY/91RXIhLvnVf6fAgDKzpj6n/HowjR47Ax8cHr7/+OsaOHYtChTg/gMhsHJqe3KZNGwwaNAj79+/PNpoiC3u1bdvWmftHRF4cpDy/YH+2IEWc2L4ag7o9qIKUkiVL4ocfflD1KAxSiMzJocsP6ezYr18/NGjQ4FYeWEZY2rdvrxb4IiIqaLpHRlKy5qUzU5MRu/5TJB7ZoLbDKtXFvp9W444ypfliE5mYQ4FK8eLF8f333+PYsWP4/fff1X3VqlVD1apVHd6RSZMmYfTo0Srn/NFHHzn8PETk+aQmJetISurlM4hZ8Q7SrpwFfHwR3rwXwpt2x9kbAWBFCpG5FSihK10epRZXimsLMuy6Z88ezJw5E/fee29BdoeITEIKZ4UcXxIOrcfVDTNhSU+BX5FIRHV+FUF33pvtcURkXg7VqEj/FOn8KH1TatasibNnz6r7X3zxRTUyYo+EhAT06dNHVe5HREQ4sjtEZDIyuyczJQlXVn2A2LVTVZASVLEeSvefeitIsT6OiMzNoUBFUjS//PILNm/ejKCg/x0opJB2yZIldj3X4MGD0alTJ01FuCkpKWpKU9YbEZlPYPw5XF4wHIlHN6tUT9H7+6HE4/+BX8jNBpM+/8z+kanKRGRuhRxdNl0CkiZNmqipgVYyuvLnn39qfh5pby0zhyT1o4U0cRo/frwju0xEHkBSPZIGllWP5cLELzQKxR8ZgcCyNW89xnrEGde5huqnQkTm5tCIirTPl1b5OSUmJmYLXPJy7tw5VTj71VdfZRuVyW8kR5rDWG/yHERkDjJC2rNnT9XmQIIUGWld+P1mVKhZP9vjSoUHYcYT9dChFmf7EHkDh0ZUZFry6tWrVU2KsAYnMjW5adOmmp5D+q5cunRJtb7O2jBu69atmDZt2s2rKT+/bN8TGBiobkRkLnI86NGjhxqRlcJ8qXV7+eWX4evri/9rViPXzrRE5B0cClTefvttdOzYEUePHlX9U6ZMmaL+/fPPP2PLli2am8YdPnw4230DBgxQ05xHjhx5W5BCROZM9ciFyauvvorU1FSUL19epYQlrWwlQUnTysV03U8i8rBApUWLFqqYVmpG7rnnHtUZUkZGduzYoba1CA0NRa1atbLdFxISgmLFit12PxGZj6y4LrMHly5dqra7du2qmkly9h8RFShQSUtLU+3zx4wZc2sxMCIie+zevVulek6fPq26W7///vsqlay1xo2IvIdDqyfLioeypHrFihWhJ66eTORZ5HDz4YcfqvSupI0rVaqkZhBK3RsReY94O1ZPdmjWjwzRyhRlIiKtYmNj0aVLF7zyyisqSOnWrZtqT8AghYicXqNSpUoVtVrp9u3bUb9+fVVbktXQoUMdeVoiMikptJepx9JSQGbuyajKc889x1QPEbkm9ZNXykdyzCdPnoQ7MPVDZGyZmZmq/uRf//qXaj8gFzlff/016tSpo/euEZGO7Dl/OzSicurUqVv/tsY5LIIjopyNIfv164c1a9ao7V69eqmuszLjj4hIK4dqVMScOXPUNGLpKis3+bc0fCMiksaNMmoiQYocH2SGoHShZpBCRPZyaERl7NixmDx5sppOaO1EKz1UpJOkrKQs9StE5H0kvSP9lcaNG6fSPtLAUVI9WvsrERE5pUalePHimDp1qhrKzWrRokUqeImJiYE7sEaFyDguXryIJ554Ahs2bFDbTz75JKZPn44iRYrovWtE5G01KtL0LbcphTIDSKYdErlaRqaF678YyKZNm9CnTx9ER0ejcOHCKkDp37+/3rtFRCbgUKDSt29fzJgxQ6V/spo1a5Y6WBG50tojFzD+u6O4EJd8677S4UEY17kGV9TVIdUjqd4JEyaowvqaNWuqVE+NGjXcvStEZFIOpX4kvfPFF1+gXLlytxYP27Vrl6pPkeFeaYltlTOYcSamfrwzSHl+wX7k/NBaG6/PeKIegxU3OX/+vLow2bx5s9qWdXskJSwjKkREuqZ+jhw5ohYhFLIsu4iKilI3+ZoVpyyTs9M9MpKSW2Rt+SdYka+3q1FKrbhLriMLkUo9ikxBloaPMu2Yo6lE5AoOBSo//vij8/eEKB+7T8VmS/fkFqzI1+VxTSsX4+vpAlKDJjN6ZGaPDMbWrl1bpXqqVq3K15uIjBOoEOnh0vVkpz6O7PPXX3+pmX7btm1T29ICX1rhS58UIiJXYaBCHqNEaJBTH0faff/996r+7MqVK6ppmzR37N69O19CIjJuZ1oid2tUMVLN7rFVfSL3y9flceQc0orgtddeQ6dOnVSQIrVpBw4cYJBCRG7DQIU8hhTIyhRkkTNYsW7L11lI6xxnzpzBfffdh/fee+/WbD9ZBbly5cpO+glERPljoEIepUOt0moKcqnw7Okd2ebUZOdZsWIF6tati507d6ophN9++62aehwYGOjEn0JElD/WqJBHBisyBVlm90jhrNSkSLqHIykFl5qaqlI9U6ZMUduNGjXC4sWLUbFiRSc8OxGR/RiokEeSoIRTkJ3r5MmT6NGjB/bu3au2hw8frqYhBwQEOPknERFpx0CFiFRqZ+DAgapbZEREBD7//HN07tyZrwwR6Y41KkReLDk5GUOGDEG3bt1UkNKsWTMcPHiQQQoRGQYDFSIvdfz4cRWYyErHYuTIkWrdnjvvvFPvXSMiuoWpHyIvJAWyzz77LK5fv67W6Pryyy/RoUMHvXeLiOg2HFEh8iI3btzAoEGDVCt8CVKkT4qkehikEJFRMVAh8hK///47GjdujFmzZqmVzV9//XVs3LgRd9xxh967RkRkE1M/RF5AUjvPP/88EhMTUaJECXz11Vdo27at3rtFRJQvBipEJiaBibS+nzdvntpu3bo1FixYgBIlS2HHn1fYMI+IDI+BCpFJ/frrr2rxwKNHj8LX1xfjxo3Dv//9b6z/7RLGz9+EC3HJtx4riznKOknS9ZeIyEhYo0JkMhaLBXPnzkXDhg1VkFK6dGlVizJ27FgVpDy/YH+2IEVExyWr+9ceuaDbfhMR5YaBCpGJJCQk4Mknn8RTTz2lZvg8+OCDalbPAw88gIxMC8Z/dxSWXL7Pep98XR5HRGQUDFSITOLQoUOoX7++qkHx8/PD22+/jTVr1qjiWSGLOOYcSclKwhP5ujyOiMgodA1UZsyYgXvvvRdhYWHq1rRpU3VgJSL7Uj0zZ85UKx0fO3ZMTTeWDrOjR49WtSlWstK0FlofR0Rk+kClbNmymDRpEvbt26dWbJUZCV26dFFFgESUP1mfR5q3Pffcc0hJSUGnTp1UqqdFixa3PbZEaJCml1Tr44iITB+oyOqsDz30EKpUqYKqVavirbfeQpEiRbBz5049d4vII+zfv1+lepYsWYJChQrhvffew8qVK1VL/Nw0qhipZvf42Hg+uV++Lo8jIjIKw9SoZGRkqPVHpO+DpIByI1eMcgWZ9UbkjameadOmqb+TEydOqEUEf/rpJ7z66qvZUj05+fn6qCnIImewYt2Wr8vjiIiMQvdA5fDhw2oUJTAwUA1fL1u2DDVq3DyY5jRx4kSEh4ffupUrV87t+0ukp2vXrqFbt26qiVtqaqpKlR44cABNmjTR9P3SJ2XGE/VQMiww2/2yLfezjwoRGY3ugcrdd9+tcuq7du1SLb779eunej/kRooD4+Libt3OnTvn9v0l0svu3btRt25dLF26FP7+/vjoo49UYB8Z6UiqxtaYChGRsfhYZBzZQGT9kcqVK6tZDPmR1I+MrEjQIrOGiMxI/kQlKBk5ciTS0tJQsWJFVZciDd3sJQ3dpLGbxUaYwlEVInIHe87fuo+o5JSZmalqUYgIiI2NRdeuXTF8+HAVpDRt8xA+/XYD6tVvYPfLw4ZvROSJdF3rR1I5HTt2VMWA169fx8KFC1X/h3Xr1um5W0SGsGPHDvTo0UOlOH38/BHR+mn8XfchPLvkN5Ree8rutXnsafjWtHIxJ/0WREQFo+uIyqVLl1S7b6lTadOmDfbs2aOClHbt2um5W0S6jyq+++67aNmypQpSCkWURqm+7yO0Xif4+Pg4vDYPG74RkSfSdURlzpw5ev54IsOJiYlRwbu1Q3Oxe1uhcOvn4RtY+LbRD59/1uZpV6OUpinFbPhGRJ7IcDUqRN5KeqHUqVNHBSlBQUEY+eZkhHQYfluQkjNVs/PPK5qenw3fiMgTMVAhMkCqR7oyywrHf//9t0qFynT9pp2630r15GXwQm0pIE9r+CbFvzv+vIIVB/9W/+eqzkTeSdfUD5E3kBOsFKhKjYikX2RkwxoMXLx4EX379sX69evVtvz7k08+UU0QEzWOlFy7kabqVWRqsaSBbP2srA3fJGWUtbC2VHiQ3cW5riSBV859LG2wfSQiL+2jYg/2USGjy+2EGxkSgDe71EJQzG/o06cPoqOjERwcjOH/eRcNH3z0VoAhWryzSRXO5vdHKqFI0cL+CCzki+j4lHxP7nkFT3pjrxci84u3o48KAxUiN59wLZkZiPt5MeJ/XqyauZW/626Ed3oNcUElbwswRG7PoZWnNXKTAEqCM1vTqH3+Gf3ZNrK1YQIrIvKyhm/kHZxZf+DOWgatP8tWc7X0hFhcXDIGcdsXqSClXrvHYHnkrWxBipAT9XML9mPPqVi81LYKQgMc+1O1/nzZF0+o8bCn1wsReQfWqJBH1x+4s5bBnp+V2wn3xqkDiFn1ATKTrsHHPwiR7QcjtlYr+OQRP8zZfrrA+511dpCvr48h0z1W7PVCRDkxUCFDpEOsDczsSVE487lssdZyrD8ajbm5BA3Wn/VS26qoEFX4VgCQ9YQrqZ5r2xYifsfXKmzwL14BxbuMgn+xsnBnhZjMDpLCWyMXp7LXCxHlxECF3Ca/tWbsaWCm9blaVyuJfWeuOjSKkNsISm4/S3y44Vi2AKBnw3Lq3+nxMYj57j2k/PWr2i5SpwMiWj8DX/9AuFvWICVreumT3nXx0L1l8i20dUcBrrXXi60CYmuNirXYmIjMj4EKuY0z15rR+lxNJm5EbGLqrfvlJDimUw1EhATkecKVIEVO4o6Qk+yHG47jxp97ELP6Q2TeiIdPQDCKdXgRIdXvg9EMWXQA0+CDh+4tje8PncfrK44gNjH7yMsjtUtj5S8XXJ5is/Z6kVEqeUcsBu/1QkSux0DFS+kxPdWZ9QdanytrkCLkRPvCwuwBSGSIv5ou3L5WafWaRMcnY8zyw3BUZkY6rm39AvG7l6rtgJKVEdVlJPwj/jdqYSRSYyuvSbuDJbD+6KXbvi6v2cytp26735kptqw8pdcLEbkHAxUvpFczLWfWH2h9Li1k9OCFhQdQOOAQklIzCvRc6fGXELPiXaSc/11th9bvjIgHBsKnkD+MLrcgReuMIq3rDWkln8P8mtcRkXfg9GQvYy1AzZk2cWQ1Xns5c62Z/J7LEQUNUpKO78KFeUNVkOITGILiXf+FyLaDPCJIKQj5LE3bdNzpzytBiaQAu9S5Q/2fQQqRd2Kg4kXyK0AV8vXU9EyX9CVx5lozeT2Xu1ky0hC7cTYuL52AzOQEBJSugtL9p6Dw3c3gLaQmx5VBLhF5L3am9SISdPSavTPfxxUJ9ENCSobL0kJaU09a6mi0zMxxpbRr0YhZ+Q5SL9wcUQht0AURD/SHj5+5R1FyI+8hO8YSkRZsoU+5khGSYYsPGqINe35BiD11NDICNHrpIXy7/2+4U9IfPyNmzRRYUhLhG1QExR56GYWrNIY3W/RMk3xnbJHrGHkNJyJHAxUW03oRRwtQ7e1xYk/9QUEbucljRy09jGtJ2XuEuJIlPRVXf5yL6/tXqe3AMtUQ1eU1FAorAW+ndTYWOR9XnCazYo2KFylIAaq71ljRWkcjj7P2OnFnkJJ29TyiF4y4FaSENf4/lOw9yfRBSoPyRTU9zpmzscgziuSJXI2BihdxRgGq1itmRxcK1NrITdatkYDFnRJ/24oL84ch9eKf8A0OQ4lu4xDxwAD4+Bl/YFLe76KF7a+bKRYSgE9618OSQc1QKsx2N117ZmyRfsE9kScy/hGWnMpWMy2ttFwxF2QIWmsgtONkjNsKaDPTUnB102wkHFyrtgPL1kRU5xEoFBYFTzKgWcVsrf5tGdOpOqJCA2+rcfjPIzXV1blgx1hzdnwmMiKOqHghCRZkdsZXTzdG1zrau6VquWIu6BC01tTBn5cTYa+mlSIwrWcd1YlWq7QrfyH6y1f+CVJ8ENa0B0r2etujghR53yQ4HdL6Lk19bPo3r5hr7xJrkCsdYrOSbWd3pyXto5RccZrMjiMqXkpWA7ZnVMVHQ48TOXBKYauWRQdFbrMT5P+Sosir7iTAzwdrjkTDXjtOXsVvFxLQv1kFNKwQiZjEFJy6nIgpG4/nus8Jv/6I2HXTYUlLhm/hooh6+BUEV6wLT/Jy2yoY0rrKrfetoOvosGOsPvIapeSK02R2DFS8cLqiBCm5zaqxJaKwPyY+dk++V8zSnTSvAMM6BD1t0wks3nM214OuNYjJS2qGpUArCH+08bgKhiY9dg9ealdV7ZcEK1aZacmIXT8TiYfXq+3AO+9FVOdXUaiIZ9VfvNy2Koa1reL0dXTymrFFzpffLLjpvetxxWkyNTZ887KrsFJhQUhOz9A0U6ZosD8GNK+Q7Yo8r4Co/oT1KhBwhPXZX2pbRXU5dQf5mXLSluCo/pvr1WuSevkMYla8g7QrZ9Ujwpv3QnizHvDx9YOnmdKzjkrh5BXARsfdUAs3RhaRmpRAFU3KSBN7cBiDvE8t3tlkc+TT558gU+qKBi88oO7LbaSMqTkyGvZRIdtXYfHaUj1y4JNaBa09U+Sk52iQkjU1NG/7aYefw5Gf+do3h/BInRi0ubs4Pv/8c8Su/xSW9BT4hUSogtmg8vfCU+WVEpD3Ne5GKt5d94fNk6A7Fqok5xTKym1677qYsPo3rjhNpsPUj5dNV9RKZn1oGUWxppWc0adB9rcgwY4j4pPT8cXWPxD7wydI/PVHdV9QhbqqHsUvpOhtywl4AutVdl6Fz7YC2fwa7JF7aS2UlQBFAssxnWogIiTAKZ1pc6aN65ePwL4zV9n1ltyOgYoXXoVpkV+Bnt5r7DhL6qVTuLziHaTH/gX4+KJoyycQ1qQbfHxuTohLTMnIt7jXSLQUxWoNZF3RkZjsY08DPQksBy+8GVjaSvlpldvft7z9WVuxcMSN3IXTk02oIG3MtTTusjUF2ZNYLBZcP7hWTT2WIMWvSDE17Ti8afdbQYqVJ52etUwVtieQdVdHYip4N2lnNXez9fed8ynZ9ZbchSMqJlxMzNE25s68GjeyzJQkXFk3DUm/bVXbQZXqI6rTcPgVDr/tsfJ7Xk1KU9N8524/hbgb6TASGe2Z3queXQWwjgSyXMNH327SuU0pd0VzN3v+vo0+4sYFGs2DgYoJFxOzXoXJFU9eB5ycQ7m5TVHN+ceeabF49EiKtL+/vGIS0q9euJnqub8fwho9etsoSk4VokLwSZ/66PPZLhiJTLFuXiXK5YFszPUU1WiMs4E8o5u0o4GlvWljo3a95QKN5grgGKjozJ6Vgp19FZZzKFfSITn3LefBUaYseyL53RIOrEbsps+AjHT4hRVH8UdeQ+Ad1TV9v/xBG2lUwdoHxpWBrJUcw6RY04q1Ce4/4Fsb7c3ffirbe+HsUVVHP+NG+ttwxTHVLNY6+aLYK2pUJk6ciIYNGyI0NBQlSpRA165d8ccff8BbuHIxMetVWMk8FpLLKTo+Ra1GPGXDMXx/KPc8tbtn5ThDZnICYlZMUlOPJUgJvqsxSvefqjlIkYX56pQrqkYVjELSPY4eWOxdnNKbahO0LqYpv7v0N+k1eyeGLT6o/i/brnxN5H2TlgFalkFwdHFIRwMco6yazQUazbnCtq6BypYtWzB48GDs3LkT69evR1paGh588EEkJtq/jovZFxNzhJzIPuhex+7vk4Zrgxdp71xrZCkXjqkVj5P+2A74FkJE62dQ/LHX4Rccqvk5riSmoua4tZquZN1BTkRNCjjMbmvdnqxsDQ6YdUVercGHngf8vIJMrcsgOKt4t6CBkaMrrOt5TPVUGR6+wrauqZ+1a2+uRms1f/58NbKyb98+3HfffTA7Vy4mZh2WXver/WviiBxZIM+c1bN3Ja5ungdkpqNQeElEdRmJwNJVHXo+o/z9allzSauc6/ZEFflfZ1oZPcorMHN2bYLeeXOt6YL8DvjuKC51xjIIzijeLUhg5KoUBBdoNOcK24aqUYmLi1P/j4zMPTpPSUlRt6wteD2ZqxYTM0uPE0dl3LiOK2um4MbxnWq7cNVmKNZxKHyDisCTyblgWq+6Ts0l21q3R65y3VWb4K68ua1gyJ7gwygHfFcuDmkrENJSfK93DQkXaDRnAGeYQCUzMxMvvfQSmjdvjlq1atmsaRk/fjzMIr+ixpwdRrVcdWrpOGpmKX//hssr30VG/GXArxAiWz+NInU7wcfH2FXtWshJIiJEe81RQbjrgO+uwse8gqHw4ADNwYeRDviuXBwyt0DIGZ1pXT0iZe8x1VuUcNPfs+kDFalVOXLkCLZt22bzMaNHj8bw4cOzjaiUK1cOniqvYdacw6parjrN0OPEURZLJuJ3L8O1rV8AmRkoVLT0zVRPqbtgJu664nHHAd9daZT8giFZeFML6wnakw/4BQ2EChoYuXpEyp5jqjdp5OEBnCE60w4ZMgSrVq3Cjz/+iLJly9p8XGBgIMLCwrLdPJ2tosasHUa1Fu85o3W+J8pIisPlb97ANVWPkoHC1VqidP8ppgtS8joBOrswMb+ZQfLsD9W6ecXt6M9yR+GjliLCFQfPa3ou6yiCK2fduLrYVG/uGJHSckz1Nn4uLsI29YiKFDy++OKLWLZsGTZv3oyKFSvCG+WVb7bnqtOo+UVXSj53BDEr30NGwhXAzx+RbQehSO32pkj15GTrBPj9ofN4fcURxCamObXGw1atgvVKdc720+rm6M9y1kkrr5SolmBIZnVFhvjjamJavleb7rpi99R+F/lx14iUK2t4PFUHFxZhmzpQkXTPwoULsWLFCtVLJTr65gyV8PBwBAcHw1M4Y8aCrXyz1qvOnSevmGK42a5Uz85vcO2nBYAlE4Uiy6J4l5EIKGG8YLdIYCEkpBS89X5uJ8CJ3x/FzK2nbnvshVxqPPL6nNr6mnxvZib+CYRS1WOdVU/ijJNWfid0rcHQo3XuwNztpzUFH64+4Ju5YZk7UxCurOHxVB08NIDzseRsR+rOH27jqnfevHno379/vt8vNSoS1MhsIb3SQK6+8pFhX+npkB/pGPv2o/dgwuqj+R4E3u9WG+uORuOLHWfgiTISryFm1QdIPn1AbYfUbIXIB1+Ab4Cxglu5Sm9SMRLfH7lY4Od6uW1VDGtbJdt90pTvhYX78/w++SxuG9ka649G2/yciry+pqU42/rZkp+l9aAnwZH0Kcnv82rrOW2d0K2PlBO6FMpKP5T8LHqmCeJupNr1t+yKKdWp6ZloMnHjraDQGa+z0VjfN9gICj05ECPt7Dl/6xqoFJTegYqWA2VB/+AkN63lQGv9uc/eVxGz/rnCzu2NlcX1hrSuog6wWp/XSJLPHkLMd+8jIyEWPoUCEdnuOYTc09ZwqZ7QoEK4nuycBQzDgwth/5gHs52Y5CTZ8K0NNk9oOYOcjzYcy/VzauuP3/o1adV/LUl7N2I54dtzFSt/Q9IN2ZZPbfwNWYMcW6ON1hP6lhGtcP97P2oOhvTs5yKvxb+WHc6WwnPW62w0Zk1tkWvO34aZ9eNp5MrnX8uOuHzGghwoS4UFITo+/yFs+bkrf7mA6b3rqmZduR3Epevs4j3nMKZTDbtPQnqyZGYg7ucliPt5sUr1+Be7U83qCSheHkbkrCBF+OYShMnJVEuQIuZtP5VnMSny+Jq9nw931UlpTYnKdFp7akr0ShfY21bA0+vRPDUFQV4868fTyEGlycS8r2ad1apZhuyT0zM0P15+pvTakCtEuZLOjVxdDl64XwVbniAj4SoufT0GcdsXqiAl5J52KNVvsmGDFGe7mpR22+fInhOVO9dnsqdOyloobos12M9ttos9hbhGnwXiSFsBM9SjWYPCLnXuUP9nkEK2cETFwFc+jjZvi467oQ5+n+84nevXrc+XlKo9ANLLjdMHVaonM+kafPyDVC1KkVqt4W1yfo60nqhCAvyQ6Kb3WUbo7CmCLEhPDXsLcY18BW9PWwGj97sgcgUGKga88pGfI7N4Rn172KHmbdtPxKiiWi25biOneq5tW4j4HV+rU5Z/8QpqVo9/Mc9t8FcQ1s+RtYZCUoFSrJvfe/x0y4qYsvGEW/ZxQLOKt9XR5BUYFGR6siOzR4w6C8Teixkj97sgcgUGKga78nHGOj3f7Ne2TotRpV+PUb1RUv76VW0XqdNBrXrs6++e9vFGkvVzZO9nY9B9FTG0TVV8vfcvmyd0Z46mDGl9l13FkgWZnmymDqRaX4diIQF469FauqeqiNyNNSoGuvKx1YHWm9z4cy8uzBuqghSfgGBEdR6BYu2HeGWQgn9OwPI5klolrZ8NOaF90rseRj9UQ1NHyty+Zq9Jj91z67OutZNyfl1ehTzlVRu1YEavPdFKy+sgo2c7Rrex+TuZsYstkRVHVAxy5ePN6/QIS0Y6rv30JeJ3fau2A0pWRtQjr8E/8g54sw61SqraCpmKm9dU4siQALzeqTpKhQfflmLJq0FZz4Z3qv4hyw+ez1YcLifOG2kZiEvKvVvrrecIC8R/Hqmpab2p3GbDWUdFbJHzrRR+z/DNPfAwcu2JVlpGh6RHUkCh3K8rOdWXzI59VOyQX4Mq65XPztFtbR5UnNEvxWzS4y/dTPX8/ZvaDq3XCRGtnoJPoQB4u5BAPzzbspKaVp6fMZ2qo3/zm3UiudWHCOt9p2MSsWj3WUTHp2T77EqH1rY1SqnHW0dxbPfkqarSPVmDAq2f46x9QGQJgCGLDqigxKxNzrRwJODIr+DeVh8aIr2xj4pBr3zyIicFb5R0YheurP4QmckJ8AkMQbGOQxFyd3O9d8swElMyNAUpQnrnfLzpBFpUicLe01ez9d7JesKTk9tHG47fdnKTtW6kjXzDLO3zcxuJyevkqTU9uuFo9K1ARabT55WpKOiKuno2cbOHvaNDWkZhRy09XOBeTkR6Y+rHTvmt8yEHBbmqlCnCMpQeWSQQJYoEqkgmJiEl14OPHHBk6N2bWDLScHXL57i+Z7naDihdBVGPjIR/0VJ675pHk54pqw7drAHJrT5keu96akZYfqmZ0EB/xCTe/LxKd1dpnKbl5Kk1PTrnn4DInvV4HJnqr1daxNHgyJ6ZSVqK+6Vh37RNJ25bfoHIkzBQcYAc4FpXK4kvd5zGmdgklI8sjL5NK2DT7xfzbOtt60BpT5dRM0i7Fo2Yle8i9cIxtR3aoAsiHugPHz9/vXfNtKxByJgVR9RqwXk9Tj6/febsuu3zKo258pPftOGsrLUqrlpR1xmL+zkScOQWHEla7c0utfDQvWXgLFoDt3k/n7otRUfkSRioOCC3A9HHP57Q3G4854HS09th2yPpj58Rs2YKLCmJ8A0qgmIPvYzCVRrrvVseI6/1efIj35dXkGKLPSd2a3o0r/V7rOTv58P1x9QIghTlXoxPcdqKuvYW9bq6ZkT63byw8AAG/XVNzcZyBq2BmxyXHE2bERkBpyfnI+e0Pyn8y23qpT1rolj+uUn+ePvxGESFmH/qrSU9DbHrP8Xl5W+rICWgzN0o3X8qgxQ7SPFqzqm47mA96dpqZ5+TnMQHNq+g6bmn/XgCfT7bheT0zFsBBJzQE8Werre50TrF2t6akZlbT6lVr51BAjdZNV0Lb7oYIvPhiEoecruikmOls6YQS3AjQ+yy6KA0zMpvKqinSrt6HjEr3kHqxT/Vdljj/0PRln3h48ePn1ayLuHzD1RWQ/jzt59ShbOOiijsr9YPsoe9Ba0yUiGFuVrJZ1+E51gos5SD9SQFqXtxdDRGa0NISb+1r1XwAlf5/gHNK2gqtjbD2kDkvXimsMHWEK4r+ihdjHdt11A9Jf72E66snQpL6g34BochqtPLCK7cUO/d8jgWC1RBqwQJMgX5s22nHG4MmJLm+No/WgMAe2pVsgYAwf5+mP5UvVuFvI7O0ClI3YujaxBpfW0k/easVMyQ1lUw7+fTNkd0uTYQmQFTPwZovmbGICUzLQVX1k1DzMp3VJASWLaGSvUwSHHcmiMXVPpRPFLb8RkrSWmOr5qtNQDIqyNufgGAr69PgVfUza/bq9xf2kbdi9aAQ2b2OTpq4axUjLw+0hU4t9/T05YSILKFgUoB1/Sh26Vd+QvRX76ChINr1eEyrGl3lOw1EYXCovhyFcAXO86oZmrNJ23Ekr1/ufW1zOvEboutFvfuOIlrWTrA1glca8Ah6bestSry2sjsHi2cmYqxvs7y/njyUgJEtjD1kwsWnjku4dcfEbtuOixpyfAtHI6oh19BcMV6BXhGyilrN1l3KMiVedYmZttPXMa0H2/WKbnjJJ5fzyNbJ3CtaStZgyjrbCh5bWQKsszuyYu9AZ8WZlhKgMgWBiq5YOGZ/TLTknF1wywkHPpBbQfeeY9aULBQEecekMn1woMKIS453aGCVlt9RySNI//+dv/fNgMAV9RTOHIC17IGka3CWumTIlOQZXZPbnxcmIqxp1kckSdhoOKEQsC8+PsBr7S7G59uPoFryY4XMRpZasxZxKyYhLSYs+pQHN68J8Kb9YSPr5/eu0YOFmjWuiPc7ivz/PqOaFmCwhUncUdO4NbRmH8tO6x6oNhTWCt9UmqXjcDrK47cttCjqzviEpkRFyXMZ9aPWYtdnSXh8AbErp8BS1oK/EIiUKzzqwguX1vv3fJ6Uivh7+uDS9dT7f78ftijDh6te4dTZslZQ46stRKetNrvsgN/4+UlB/N93JBWlVGlZGi2wM5T1hii7Pi+uQcXJXRhfptuyky9oQKUxCOb1HZQ+TqI6vyKClZIP1kXxxS5jV7kR/r62MPeviOeUk8hv1dsgrZ6oKy1N1mDLqZiPIsnBdHehCMq+ZBOtPkVx3mb1MuncXn5JKTH/gX4+KJoiz4Ia/o4fHw4icydQgL91OKBtlZJtnXgzYt8/7aRre0KGmTKtMxGys+iZ5q47MTt7Ktge1+3/EaRyPjsGRWkguOIihMPfgXpAGo2FosFCb+sw9WNs2BJT4VfkUhEPfIagsrV0nvXvFLPBuXwr0418jxB5xy9OB2ThI823FwM0lk1Iq5c/ViPq2BbJyyttK4lRPrJGdjWLx9R4LWhyHVYTJsH9lP5n8yUJNXALem3rWo7qFJ9RHUaDr/C4S78eFJe2v5z0MxvlCLnY+4uVcTuKbvOmCUXcz1FrZnlzFSPM1ZIdkWzR3uXHCD3sbW6tb1F0+Q+DFTywH4qN8kaPZdXTEL61Qs3Uz33P4mwRo8x1aMjWRvK0Wm8zq4R0TJLTp466+ikM/L+zlgh2dGLk651ymD5wfP5Po7HEGPJa3VrLfh+6oNFBXnw9n4qkuq5vn81Lnz5igpS/EKLo2TvdxDeuBuDlCwCCzn2Z5Tz3Cknb1khWYsWd0UVaETCOspS0Fb1Vj0blstzFCLnGll5rULsrhWSC3IiKhtRWNPjvP0YYiTOGC3j+6kPjqi4qZ+Kp8lMScSVNVOR9Md2tR18VyMUe+hl+AWH6r1rhpOSbv/aORKQyGrIstBg1lENsXjP2Xw/c6sPXcDD915wS3FfXoWq+RWdysNyW8jTGXl/V9TGaD0RSXD37f6/3Nq8zlGcblvwVL6R3k9vxEAlD3k1qDKzlAvHVQO39LiLgG8hRDzQH6ENusDHh0VkzkjZyCJy1gAjt3y3fOaey6crKtxU3JdXoarIq+i0W72y+Gb/Xy7L+xdkhWRHL06sJ6wmlYrp0rzOXpxuW/C0jZHeT2/F1E8+5ETwUtuqCA/WttiYp6d64veuQPSCESpI8QsviVJ93kFYw64MUpxgWJu7sO/1dvmOgsjXX25bJe/3yoG0hqP5/JxXoXISl0Bq1NLDNoMUOZxv+O2iS08gBVkh2RmLGdpadNEoiwHm9f4VNO3mibQGrJEhAYZ8P70ZR1Ty6aFysw22tkIrT5aRnIAr33+EG8dv9sMoXLUZinUcCt+gInrvmilI4DFMY/2JqBAV4tbiPnuna4prSXnPkrh2I82leX9XteS3ZzFDozavc0WhsafTOlq2ZUSr21Ky3vIaGZWugcrWrVvx3nvvYd++fbhw4QKWLVuGrl27wggmfn/U5sJiZpPy9++4vPJdZMRfAvwKIaLVUwit9zBHUZxEDo6yfo7eaQ37pmsGZFunxlFFg/0RdyPNZXUcjq6QrOV5tQYgRlwM0J5CY6Ptu6toDWwDCvl6zWviKXQNVBITE1G7dm0MHDgQjz32GIzi+0MXvCJIsVgyEb97Oa5t/RzIzEChoqUR1WUkAkvdpfeumYL14Dcmn6ZsBbn6K2hxn+3pmgUPUsSA5hVVgzlX1nG4alTDiAGIpzThMypXBbZk4kClY8eO6mYkMmQq6R6zy7gRjyurP8SNP/eo7cLVWqJYhxfhG6ht2iXdTmqNLVnOxnLwe6R2aUxYbX/XVHesNOys5mbII5Aa0voupzeYM1tQ4QruHJHzNEZN15FJalRSUlLULetaAc4mH15nXU0aVfJfvyJm5XvIuB4D+Pkjsu2zKFK7A1M9BWQNUp5qXkF1jb2amILBCw843DXV1Vd/BZ2uGV7YH3H/1KnkFUjxxOB+7hqR81QMbD2LRwUqEydOxPjx4136M8w8FKpSPTu/wbWfFgCWTBSKvAPFu4xEQIlKeu+aacgJ4Psj0RjZsTruf+/HAhczuvIkX9DpmjLNWmgJpHhicC93jMgRuYtHBSqjR4/G8OHDs42olCtXzqk/w6xDoRmJ1xCz6gMkn765EnRIzVaIfPAF+AYEw1s9WKMkapQOw0cbjzvtOa1Fil/uOO20YkZXneS1T9fMvg5KzkCEw+jGxHoMMguPClQCAwPVzR1Dpo4OiRtR8tlDiPnufWQkxMKnUCAi2w1CyD3tvD7VI4WeEgBUKx2aZ3dVR5yJTdL0uA1Ho3WrrXDWdE2OlhgX025kBh4VqLh7yNTTO9FaMjMQt+NrxG1fpFI9/sXKIarLKAQULw9vl7URWNaD+fqj0Wqxuax1ShGF/XE1Kc2u7sTlI7UVJc/ZfhoNK0bqMtuA0zW9AwNJ8nS6BioJCQk4ceLEre1Tp07h4MGDiIyMxJ133qnbfslJ4+OedTBk8UF4qoyEq4hZ9R6SzxxS2yH3tEVk2+fgG2DO1Ja9cubnrQdzuf07l+nEEsBoGXWxjkL0bVoBn207pWmdKD0bbzE9QERG52ORvuk62bx5M1q1anXb/f369cP8+fPz/X6pUQkPD0dcXBzCwsKcum9zfjqZbVl6T3Lj9EHErHofmYnX4OMfpGpRitRqrfduGYKEAtN718VD95ZxuHurBC1zt5+2WaRonc0jPUq0rNkjFj3TRNfptVy4jojcyZ7zt64jKg888IBaX8aIlh6wvZiaoVM92xaqdI+cQv2LV1CzeiTlQzdN710PD93rWJol66iLjLLkN9tF/j+weQUV1Bh9thnTA0RkVKxRsdGZ9tfz1+FJ0q/HqILZlHM3m9VJX5SINs/A19+1xceeolRYIP7zSE2n1YJoLVKUx2gJVMw624yIqKAYqJigM+2Nk/vU1OPMG/HwCQhGsfZDEFLjfpiZxAOZNgbjJFQoGRaID7rXQUxCiss6T2oZhWDjLSKigmGg4sGdaS0Z6bi2bYFq4ib8S1S6meqJvAOeyJ5ZNXkFKUJGT5rfFQW9sfEWEVHB+Bbw+01H71oBrdLjL+PiotG3gpTQep1Quu/7HhukdKtX1qHp4DkHSaROJL/W9HrNrJF9M/q+EhEZDUdUPLBWIOnEbrWgYGbydfgEFEaxjkMRUq0FPJWsjXNvuaL4Zr/9BcwysjKmU3VEhQYaenExNt4iInIMA5Uc5ERXNNgf1278r2W4UVgy0nB1y+e4vme52g4oVQVRkuopWgqeTBbwK4jIIoHoUsf4I0mcWUNEZD8GKrmcTAY0r4APNzhv/RdnSI+7iMsr3kXqhT/UdmiDLoi4vz98CvnDLB1i82rnnpfYhP+tqE1ERObCGpVcDGldBUULGycASDq2AxfmDVVBim9gCIo/9joi2zzj8UGKT5YOsdaiU+v99ogMCXDJ/hERkf4YqORCTpoNyheF3izpaYjdMBOXl72FzJREBJS5G6UHfIzCVZrA0/jkiD5K51JIaqvoND+lwr13BWgiIrNj6icXb60+ig2/XYae0q5eQMzKd5AafXMtpLBGj6HofU/Cx8+z3jJrfDK9Vz1EhATk2RwtZ9FpdNwNtYxBXtPFs6aOiIjIfDzrrOemrrSzfzql6z4k/r4NV9ZMhSU1Cb7BYSjW6WUUrtwQRjW4VWW0uKs4riamYsLqvNvKZ22st+PPK7kGLlmLToMD/GyuZJ01dURERObEQMVAXWkt6amI3fQZEg58r7YDy9ZAVOfXUChM/8ZlebWmH97u7lvBQvta+beVl8X6cq6TU9pGQGNrdV9bjyciInPRdfXkgnL26slyhd9r9k7oIS32b1xeMQlpl26O5oQ1eRxFWz4BH18/GNknvbWldLIGKbmNkORceTgnru5LRGQeHrN6stHo1ZU28ehmXFk3HZbUG/AtHI6oTsMRXKk+jExmRfVoUPa2VE9eIx0SbMjISG6RseWfYEW+LjUqOYMd9iAhIvJODFR07EqbmZaMqxtmIeHQD2o78M57EPXwqygUmvdCd+7274eqoVqpMOw6FatCiqaVohB3IxWDFx64LeiQPigyYpLbyIikhLIGNTnJc8nX5XH5LfZHRETegYFKFpK2CA/2R5wbutKmxZy7meqJOaPGEsKb90R4s56GTPWUCAtCy6rF1c06MtLinU12j4xoHbHylPWWiIjI9dhHJQs5qbarXsLlL3rC4Y248MVLKkjxC4lAiZ5vomiLPm4PUoL9tb39p2MSHR4ZcWTEyhPWWyIiIvdgoJJD8yo3Rw1cITM1GTGrP8SV7z+EJS0FQeXroPSAqQguXxt6eLPrPZq6ui7afVaNohR0ZERGrKSGxVaprdzPvihERJQVA5UcSoW55mo+9fJpXPj8JSQe2Qj4+KJoy74o0X28GlHRS5miwejXtEK+j4uOT8k2OuLoyEhebfKt2+yLQkREWTFQyUGu+rWmRLT0GZPZ39d/WYfoL4YjPfYv+BWJRMlebyO8WY9cUz2OtC6z93uyjlxUiCps9+hIQUZGbLXJl21bU5OJiMh7sZg2B7nqf+ie0vh2/9/5vngBfr5ITs+0+fXMlCRc+WE6ko5uUdtBFesj6uHh8CscbvN7HGlqIyf5MZ1qqKnC+a0+nHPkwpHREevIiMzukeez2DkykrVNvtb+K0RE5J0YqOSia507NAUqeQUpqRdP4vLKd5Ae+/fNVM99TyKs8WPw8XH+INb73WqjeZUo+Poi1+Ahq5wt7a2jI7YCHJ9/vifn6IitjrG2WubnxL4oRESkBQOVXMQm2V4ET0uqJ+HgGsRunA1kpMEvtDiiHnkNQWWrw1ViElPyDB4iQ/zxaJ070LZGqdtGLgoyOsKRESIicjUGKk6cHpuZkogra6ch6fef1HbwXY1Q7KGX4Bcclm+X12tJaU7ZX0eCh4KMjnBkhIiIXImBSi60pENKhgWqf12Mv/mYlOgTiFkxCenXogFfP0Q8MAChDbrAx8d2gDCk1V1oflcUMjMt6DNnl91vnq20jCPBA0dHiIjIiBio5EJLOuQ/j9RU/3/uy324vn8VYn+cA2Skwy+8JIo/8hoCy9yd74tfpWQRFVBIj5K8AqPcuGI6L0dHiIjIaDg92QYt02gb3xGEO/Z9gtgNM1WQEly1Kcr0n6IpSMmastHSX0TSQ7b2g4iIyKx8LFL96QXLRDtKRjtyq/fYtWsXevTogTNnziAgIABDRr2Bll374MyVJHy44bimlM22ka2zjYasPXLhtjoR62rEnM5LRERmYc/5m6kfO9MhEtd98MEHGDVqFNLT01G5cmUsWbIE9evXv/WYu0uFYtTSw7kWyOaVssmvToQrChMRkbfhiIodrly5gv79+2PVqlVqu3v37pg1a5aKCnMbiZm26TjmbT+Na1lWY7aOkDBlQ0RE3irejhEVBioabd++Hb169cK5c+cQGBiIKVOm4Nlnn81zVk9eqSMiIiJvFW9HoGKIYtrp06ejQoUKCAoKQuPGjbF7924YRWZmJiZNmoT7779fBSlVq1ZV9SmDBg3KN0jJmjrqUucO9X8GKURERNrpHqhIfcfw4cMxbtw47N+/H7Vr10b79u1x6dIlvXcNly9fRqdOnTB69GhkZGSgT58+2Lt3r9pHIiIi8oJAZfLkyXjmmWcwYMAA1KhRA59++ikKFy6MuXPn6rpfW7duRZ06dbB27VoEBwdjzpw5+PLLLxEaGqrrfhEREXkTXQOV1NRU7Nu3D23btv3fDvn6qu0dO3bc9viUlBSV18p6cwUJllq1aoXz58+jevXqKhU1cOBATakeIiIiMkmgEhMTo1IqJUuWzHa/bEdHR9/2+IkTJ6riG+utXLlyLtmvhg0bws/PT83w2bNnD2rVquWSn0NEREQGT/3YQ2pFpELYepPiVleQniiHDx/GvHnzEBIS4pKfQURERPnTteFbVFSUGrm4ePFitvtlu1SpUrc9XqYFy80d7r5bWxt8IiIiMumIirSel9GLjRs3ZpsOLNtNmzbVc9eIiIjIAHRvoS9Tk/v164cGDRqgUaNG+Oijj5CYmKhmAREREZF30z1QkYX9pF/J2LFjVQGtdUpwzgJbIiIi8j5soU9ERERu5XEt9ImIiIhyw0CFiIiIDIuBChERERkWAxUiIiIyLAYqREREZFgMVIiIiMiwGKgQERGRYTFQISIiIsNioEJERESGpXsL/YKwWCy3OtwRERGRZ7Cet63ncdMGKtevX1f/L1eunN67QkRERA6cx6WVvmnX+snMzMT58+cRGhoKHx8fp0d7EgCdO3cu33UIPBF/P8/H99Dz8T30bGZ//1z5O0roIUFKmTJl4Ovra94RFfnlypYt69KfIW+MWT+Agr+f5+N76Pn4Hno2s79/rvod8xtJsWIxLRERERkWAxUiIiIyLAYqNgQGBmLcuHHq/2bE38/z8T30fHwPPZvZ3z+j/I4eXUxLRERE5sYRFSIiIjIsBipERERkWAxUiIiIyLAYqBAREZFhMVDJxfTp01GhQgUEBQWhcePG2L17N8xi69at6Ny5s+oGKN18ly9fDjOZOHEiGjZsqLoVlyhRAl27dsUff/wBs5gxYwbuvffeW82XmjZtijVr1sCsJk2apD6nL730EsziP//5j/qdst6qVasGM/n777/xxBNPoFixYggODsY999yDvXv3wizk/JDzPZTb4MGDYQYZGRkYM2YMKlasqN6/ypUrY8KECZrW5XEFBio5LFmyBMOHD1fTsfbv34/atWujffv2uHTpEswgMTFR/U4SjJnRli1b1MFi586dWL9+PdLS0vDggw+q39sMpBOznLz37dunDvytW7dGly5d8Ouvv8Js9uzZg5kzZ6rAzGxq1qyJCxcu3Lpt27YNZnH16lU0b94c/v7+Kog+evQoPvjgA0RERMBMn82s758ca8Tjjz8OM3jnnXfURdG0adPw22+/qe13330XH3/8sT47JNOT6X8aNWpkGTx48K3tjIwMS5kyZSwTJ0403cskb/+yZcssZnbp0iX1e27ZssViVhEREZbPPvvMYibXr1+3VKlSxbJ+/XrL/fffbxk2bJjFLMaNG2epXbu2xaxGjhxpadGihcWbyOezcuXKlszMTIsZdOrUyTJw4MBs9z322GOWPn366LI/HFHJIjU1VV2ptm3bNtt6QrK9Y8cOPeJI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\",\n      \"text/plain\": [\n       \"<Figure size 640x480 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from sklearn.metrics import r2_score as r2\\n\",\n    \"result_data.sort_values(by='id', inplace=True)\\n\",\n    \"data.sort_values(by='id', inplace=True)\\n\",\n    \"print('R2:', r2(data['SiO3'], result_data['Pred_SiO3']))\\n\",\n    \"plt.scatter(data['SiO3'], result_data['Pred_SiO3'])\\n\",\n    \"plt.plot([i for i in range(9)], [i for i in range(9)], color='black')\\n\",\n    \"plt.xlabel('label')\\n\",\n    \"plt.ylabel('pred')\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"ana_data = pd.merge(data, result_data, on='id')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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6G6OK9tvv30ozvG4Pr766qtugw028CPpGwJOk+a4Qm7DOFeai8lpEOlElTQIVcgvL774Ynf77bf7iQxMYRDKaZJCNKslInQ+++wz76LAojTqSca70GllHHroob64E7wxizwIHWY9e/b0dlss4B5xxBG+EBYEq+Udd9zRixGYo3fFFVcs9FrGjh3rNtpoI38fXge2a9knadSEiDd4rVhMI6BIGiha2Z8oeCmADhw40L9PdIbhsoL1F+NHKDhVAy7+7733nrdUa6hQBZZeemnvHNO6dWu3ww47eJEKLh4zZsxwzz33nH8+VL5R6xJNulCFAn7v3r39e42jioQqC847JlTp27evT0o4P3Ee5LNKwoLS/uqrr/aLMsG/CxLVRQshhBAiCSiniRbkjBTUzj33XG9PPXv2bJ+73XnnnX7sDCOCbr75ZvfFF18sFDNVSpCNSIOYDvF/Q4QqFtcRK2+yySZehLP55pv7n7Gd06dP97kDRd9q5WvFkBahCs6GOPkcf/zxEqr8D+UzQgghRDxQThMtWKMirrztttv82gW5DDH/YYcd5uPpY4891j366KPepbwaIJJHqEKe1VChCrDGwTod6x3kNLi0fPfdd27mzJn+9v777/v1kGrka8XywQcfpEKowtrpsGHD/BqNhCoL9ovWaJKBVsnEQqCYNBXopEmTfHHtqquuWmjsB4uyFBLtNmrUqFq/R1hBtxwnTxxBnnzySdenT5+a3zM2pVOnTm7ttdf2BbIrr7zSnX/++e6WW26puc8zzzzjevTo4YUudLzRdceNQp/BSXrw4MHupptucrNmzfIKz86dO3uVa1JB0br//vu70aNH+6Do2muv9e9b165d/YWKbrGnnnrKCw0qFQCgViUAQIhUiaCPQIj5j4iZGJnCPPinn37aC3J4bqyqwxSqcGwnXahCIZ0Am4AXxTgKavHn+2+F/Ouvv94L6i644ALvosI+4rjlPghWOIciWMGGEZK6ACCEEEJEDeU00YaYCIEKgntyOJoNsNLGdQVXOvJExivi5FiJQijFY5oxiONxVCm3dTfbR/5M0wX5DAJ/nuudd97xwhWaNsjjKpWvFUNahCrscxYUqClQb0jqdpaC8hkhhBAiHiiniTasn5G3ILhHVESNmLWp4447zjVr1syvhbEuVql1KhqayStatGjhG7nLzRJLLOHXZRD2M86eRmNyCBqLWachh2MaQJjCFdapPv7448QLVVj/Yx0CIRQNs0I5TdLQGCCxEBQMudggdsgHziooKh988MG8nUt0lD3//PNu66239j9jdA3dcp9++qm/yA0dOtTPiqZIx4XPnpvHNCeC7t27e1ECF3WjTZs2vqCIOIUTNY+FOIOFYuACiTXZiBEj3AEHHJCqd5jAZ+rUqd59Zdy4cb7oajZ0uJU01IaO/Y16luCLgmu1AwC6H21+IvZ2uLGYDR0CnmoUHs1RhcCMY9uO3SQKVU444QR/LmCsDUVsURtcf4YPH+46dOjgnagAURXCO85vCFRwpKE4PmTIEHfkkUdqFwohhBBVQjlNPCHfINdA9MuNWJTiKOMVuVH0bWjMj7U1Ig3yBxwqq+l0x/aRR5DP4LKCcyQuleQ0OEtWyzbchCp0XyJUSSoUr2myYUTnoEGD5GqYhfIZIYQQItoop4lvXZ0mbNZoHnjgAb+ORnM1TdiIW1jTaCg0j7MGh3CBPKLa28faDDkNtXAcKm38KY3N1RKHs05Fc0PShSo33nijn7LwyCOPuFatWoX9kiKHcppkIGcVsRCIHFiEx7mDCwzFwVtvvXWh+7GAze/pfDvmmGP8BcrAEowLkwlVAItnCoF0ztl9sBILLvZz0X777be9atjuw98F4T78HHDYQOwSvA8jOBglY/dJEziSMBYIGzoClrvvvtsLVugiMxs6LmoUaOtzYaQr7fPPP/fvaxgBAMXboJp33XXXraqa14QqCKiSLFRhOxGA0fWJo4qEKguDah3RHufLIKussooX+WD7jtsUCQjnIglVhBBCiOqinCaeUNhEQMGYReZwU3zEUpvckxwAAT7OmuSM9Yn5EYfQUMGoWgq71R7JyPaRR+Eqs9122/lGDPJmugGJvRmPRHNHJW3DyZ9wlUm6UAUrcHJjFgUkVFkY5TNCCCFE9FFOE09Yj8FdETcM1q9ww2C6wIABA7w7CRMJcGHBtb0+kC8gVKH+XG2him0f64LkUzvttJN3k8QxEnd2pivw2lgrZI2h0kKVsNapqgH5Luuyl1xyiZswYYKEKjlQTpMcJFYRObuPcAVo3ry5FzYgRKFYeMcdd9Tch+4k5vHh4nH55Zf7wtpuu+1WM38bAUn2yBAUlnSN8Tu7Dx1kQez7uu4T/H3w73LdJ60g7Nhll128DR0BDJbadA+ykE5HYu/evb1jDQXbYi6MuN3Q/UcAgJ1d2HA8NWnSxAdlCFc22GAD7yxDgRc1pYmeyiVcCQpVUOsmWaiCah8nJIQqBNJiYVq2bOnPfQTnd911ly+GGxT+WXTgGASOF7DzoxBCCCEqj3Ka+IOwg3iffJQCL2L8448/3gvVEXnQoEDhjrG1xcT8P/30kxdprLzyyt4qOwrjYMiryM3YHkbxki/THECRF1ENIpZy2oabUIU59EkWquDOg1CFugUjg6stSooDymeEEEKI6KOcJv4Qh5K34MRNIzBx/sYbb+wuu+wyL1xhssDIkSO9+0oxOQ35AQ27CPnJa6KwfQhmyK9oTLcRNayjsK1vvPGGd8ovp3AlKFRhvSuJcCywHovA6eGHH/aNDmJhlNMkh0ZhvwARPbhwcKK/9NJL/fdc+Li4MHanV69e/mfB8TpcgDgpUOyi442RGCJaIOxA0MHtuuuu804P2NCdccYZ7ptvvvFFPGy1cYHIFqIwegeLaNSxHBdLLbWUixqm5uXG8cs2YUOHmpciNAETAibmxtenUJkmoQoBEPaEdLImuYBdDrp27eqPhbPOOstdddVVfhRZ06ZNvbsP4pXs+ZEcp0IIIYSoDsppkgUxPQ52OEYefvjhPt6i05Sc5uqrr/YxGPkM409zOaYgXqCoSU6AyD0KQpVsyLMoWHNDoGLjTylq4wRj+U59bcPp3CSvS7pQhaYVxg/T5ckoTglV8qN8RgghhIg2ymmSBXHp3//+d39DdI+QgwZjxNXHHXec23nnnb0rIKJrROzZOQtrHax78PdMF4ji9vG6ueG2Qs5GPkMTNGtMrNGQz5DX1adOjoADAReN2UkXqiBg6tevn895EQGJ/CinSQYSq4iFWG211dwmm2xS62eoPSkE5oNxLFxk3nvvPS9WoQMOF44giB24mPI74CsXqyD2fV33Cf7efsbrDt5niy220LubAwIB7LO5scBOZx1B0fnnn+/69OnjBSsUenHKYSGecVAEGmPGjHGNGzeO/D7ltXIsciOgR5XMsYjYhAu9BUUoj4spXPIYr732mu/ETLJQhX1DkEwg9Pjjj/sivqibPffc0ycOJ598sncqIlDGth3Rlwn+2LdRXBARQgghkoxymuRCXIWL3SGHHOJvc+fO9bbI5Ks4SxLrk89Q6CV+x6Fk33339UVg7LjjEJcx3hVRCTdiS/IZbuTbxJmIbtjOYgu0JlRB1EPunlTYRxT3meWOZbbE4nWjfEYIIYSILsppkgs5yaabbupv5513nheok88Qw+KMj0CBnIZYjXWO008/3bug4yiPkD0uORs31hnIR1izI59hnYZtMuEKEwLqgvo6zQc0IZDjJVmowlodaw0cDwiYRN0op4k/8kIVC4H9sI2vMLhYFhoHgpqROXQmGNl22229SICCmMECOAv/2J7ZfbACQ1VpTJkyxW244YbeAcPuw6ihINyHnwOWyQhWgvehWDlr1qya+4gCJ4BFF/WFPJv7TrCDUInxJrzfjIJCqIEtXRxFGqbmRclLgIeACZcZ1Ly4ADHTjiAp33iWNAlVOAaGDRvmP1/ZYjVRmD322MPdcsstvgP2P//5jy+Q414EnN/isCAihBBCJA3lNOmBYm2PHj18UY/YnrgWd4299trLrb/++t5FsmPHjl68Ese4jByEMZN0UOIWgvOK5bzPPPOML/jyfT7b8LQIVYjDKVJS8B8xYoTP+0RxKJ8RQgghoolymnRAjsKaGO7dNBazdtG5c2ffVMr6DL9jDD1rNssuu6yL4/aRs7EtjLNhfRCxyYcffuimT5/uXn75ZS9CQaSfZqEKPPTQQ95lZ/To0f4YEMWjnCbeLJIpZhCaSBV0nnHRuOCCC1y3bt38TPDevXv7xdiePXv6Odf8DnslhCJcKBgnQxGMhX1z38CZg2Ih44NYsD3ssMO86wAXWcAGjAstTh5YWqGoxNL5mmuu8Q4fQPGNghxiCRaAOUnjVvDSSy/5IhRwkeb3zHBDvHLuued6EQKzy+lIE6XDuBsuhnPmzPHqV+YgBm3ocCWJY6HX4LTH8UrnHccoIoNsNW+ahCrXXnutd9lBnU0RXNQPRieRVHC8oHYvJPATQgghRGVRTiOIzShYIVwnryE3RMzAqCDy3biLGXAupWGEfAahBvmKjQrCFpx8zYQqxKXkyknl22+/9e8123nvvfcmNnerNMpnhBBCiGihnCbd0GDLGFQEDMTyrHlts8023nGFG2L0OK/R2DqUuUiSu9DEbjkN64xpEqrg2s76KMIkclZRP5TTxBOJVUTeE2P//v29SIEL4SmnnOIFK/Dzzz970QKKR9xTVl99dS84ueiii7wdscHIn+OPP949/PDD3uECcQvWy8ELChdYlIIEXogEsDhDuBJk7Nix7pxzzvFKS9SXdMoxg9rggoVVGmIaXg/jbZhNrTEm9QMxEkVcip/YaaPWNRu6+++/389GxD6bgIhuRQKHOAdFHD8ERRR5CYr4N24sKHltLmhSi51s+4033ugGDhzoHnnkEe+yU2mGDh3qb3yeoUWLFm7AgAFe3JYLZnfye4rsH330kReznXTSSS6qPPXUU+7UU0/1QjxeN+csIYQQQoSDcpp0F6jIVa688kp39NFH+9geYTb5DMVe8hfEDRQByW3iHu9TyCb/Jqf597//7cff0HSAiAUnliQ7qtAEQ/5KLYL3txqja5Oc0yifEUIIIaKFcpp0QnxPHsNEASYWIMr+/PPP3QMPPOBjXmK2zTff3K/TsU5DvB/nNRpbdySXIachxseNhbwGEQsiHcahJhXWZg4++GB32223eQOBaqCcRkQJiVWEELWCoHbt2vkCH0Xc7AAAcQNdiSZcMXU3hWCCIoRLcQ+KEOsgoiI4YntNzfvXv/41UU49bBtjfyiaTpo0yb+P1QDxGkEmIg5eA45ILCIgfqPImw3HGN2RKKeZ1YiYLaqFXYNkgf06ZswYf+wIIYQQQojq8eyzz/qxP4iye/XqtdDvcf1kHC1NEeQ88+bN88IVCr24SVZD7FBJENwzppfGE3IzGkesOxFRPt8nBQrXvG80WIwbN65q+VrScxrlM0IIIYQQ4YJQZdq0aV6sssYaa9T6HfEnTbcPPvigX6NBqL/xxhvXCFdoooz7Gg1O+Ai+cVAEGuARp5PTJE20wvvXvXt3P6GCyRbVeu+U04goIbGKEGIhFSejl+oq9BEUffLJJz4g4jZz5kzvQoJwhcAojjZ0FHYRqhAMUUhEvGOjgkzNa0HRUkst5eKKFVTPPPNMr85v27ZtqK+HojnFXWwNC0FXKEXdKBd2DY6hJImbhBBCCCHiAmM8Z8yY4d0/64J4n/ved999vtiL+AF3DPIZBC9xjPnnzp3rHTxwSKUDE/dRc5FkexHhk88w2hXBRVzBERP3VraBnCbsonXSchrlM0IIIYQQ4QrwieeDkwzy1fkRdCDCp8EYN8n11lvPi1bIaTbZZJPYidXZpvfee887yZjrvTmuMAZ16aWXrlmjQcQStzWobJH4fvvt5ydSHHrooaFvi3IaERYSqwghyhJAfPHFFzU2dHQqtmzZskbNS4AU9oW2VKHK4osvXuv3dFxaUEQAGFc1L+/VyJEj/Wgvgtj27duH9looltPRSscrXYgEz0ko7AohhBBCiPhBPkBR2IQrxP6dO3f2+Qxf4zAfPShUIXbOzgP4vYnxGY3EKF7yGb42atTIxQVcMPfff3/vkjNx4kTvrBIWymmEEEIIIURUoOEWxwyEKzQlr7nmmjXCFcYGRV24YkIV1ppYo8led/n99999nkZOw8hTXDFtjYZG46ivQQWh+ZuxtFdccYU76qijQn3tymlE2EisIoQoe0BBoGDCFWYqbrTRRjXCFf4dtaCBwvSrr77qBSm5hCrZUBSNq5oXcchxxx3ni/C77rprKK/htddec9tuu60XBrG/EM/svvvudf6dxCpCCCGEEKJa+QGiDxt/ylidXXbZxeczOK8sv/zysRKq5MrZGH9qjiuIP+iiI6fBeaWufChMyCF69OjhC/EU4MN6L5TTCCGEEEKIKINrJMJucppJkyZ5gTqu+AgkcCyJmnCFHIVRpl9++WVOoUougQVrM+Q0rEchvrfxpyussEKk12gYE0puedFFF7njjz8+tNeqnEZEBYlVhBAVI2hDR5F3ypQpbt11161R8zLPO+ygyIQqdBb+/e9/L7kwi5qXYMiCoiireekQ7d27txs9erTbc889Q3sd7OuPP/7YF5gRzQwbNsxNnz5dzipCCCGEECKyDowmXHn//fe9OyE5TZcuXdyKK64YesxPXP3SSy/5XIvRP/UZqWOOK4hYEK6QzyBcIb+JCuQRBx10kC9gk1uy78N8LcpphBBCCCFEXEalTp482ec0EyZM8M6ECFdYo2nTpk3o40GDQhWENDQHl5qzIVwhp6HJmPzMhCvkDGGvQQV55ZVXfB55zjnnePf7MHNJ5TQiKkisIoSoug0dRV664FZfffUa4coWW2xR9aChoUKVfGpeC4qipOZljvthhx3m7rrrLrfvvvu6KNGxY0c/Kurmm28ueD85qwghhBBCiLCLqG+++aYXXJPTzJ492+20004+n9ljjz18t2K1Y/6GClWywWXFHFdwa8G5xMT4Sy65pAsL3C0ZHzpnzhzv3rnyyiu7KKGcRgghhBBCxAGcChF+k8/QZIw4ncZWcprtt9++6i6L5FjvvPOOz0HqI1TJtebz3Xff1eQ0PD4ifPIZcogwhSuvv/66d+o87bTT3Jlnnhl600M2ymlEWERHTiZEmWBBm5N89o3RJ3Yx5t9cmBhB0rVrV3/hCkKHFOpGLoxcxE4//XTvoBFk2rRpXuDAxXz99dd3I0aMWOi13Hjjjf71UNRr3bq1e+6552r9vpjXkiQodNIJRyDEdl5yySXuk08+8RfozTbbzF+gZ82a5QOKSoOwpJxCFUCBzPGy6aab+qL1xhtv7I8bnufJJ5/0xWzELNXYviAIgxCq3HbbbZETqgD7gxFMQgghhBDiT5TTRBPyyk022cQNGDDAvfzyy+6NN97wLivkguSE5JC33HKL7wikKBo3oQostdRS/vhr1aqV22GHHVyTJk18kXfGjBk+n/3www99Z2Y1Iac68sgj/fx6CutRE6qAchohhBBCiAUon4kurFUhTrn99tt93mLrWoceeqjPaVivIuZm3SRuQhVAjIJTJGszbdu29U3SNBW/9dZbfk2P0Tc8H+tD1YSmBxocTjjhhEgKVUA5jQgLiVVE4mDe2xdffFFz48IK+++/v/968skne3ePsWPH+tEjn3/+ea0FfC5SFBm5GD/zzDPujjvu8BdsCpIG3VzcZ+edd/a2XSeddJIvniEKMMaMGeNtvM477zxfQNx8881d586dfaHPqOu1JBnEOd26dfP7ieDg6quvdt98843ffgIJ1KUURCsRNJhQhe68cglVcgVFdFYy6oigCDEOP0M9y3vNV9xXKh0UPfHEE+7ggw92N910k9/fYdO/f38v3KHITWDI9wSJPXv29L8/5JBD/M8MPod8xrjx788++8z/m0K1EEIIIURSUU4TfSguNm/e3MeuiDgoslJ8JLfbYIMNfO5H88Knn35aEeGKCVVwKCyXUCVXIXuttdbyhWNyGpwxydnIk2fOnOk++OADPzaokpAvHXPMMT5/euyxx3xzQNgopxFCCCGEKIzymXiwxBJL+LwFwT1rU/fee68XrxN/N2vWzB111FFu4sSJvum6UkIV1svKJVTJlbPheL/hhht6IT7PQ47D2gJrEqwRsYbIOlElsVyRNUTWC6MgVFFOI6KExgCJxIOQhBEozLzDxhjLr5EjR7r99tvP/x5FJeIIim3M55s0aZK/cHBxxu4YWOjv16+fFxdwAeffzPajYGYccMAB3l6M2X+Ak8o222zjbrjhhhpVIoU+U05SXKzrtaQRAh+KkGZDh5AEpe8+++xTFhs6E6rQnbfllluGYmvHe282dARCiFo41vha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Dq0RqgghhBBCiOqifEZUwkoakQZi+rogP6YIasIV/hb3RfIZxqIyOiiKkIvdcccd7swzz/TOprhgCiGEEEKIcFBOI8oN4nocFLOFKrnygm+++cYL1FmnwWEUF0lyIdxJNt5448iuffz4449+agLjWR9++OE616OEELmRWEWEyi+//OK23HJLf8G65557/FgTOqoOPPBA7wzRqlUrf7Knm+zvf/97rRE65qIBUb1YifhAUIR9O/MFEa5Q8GXEE0VexCsEVlERrnz55ZfeEnuHHXbwo4zUZSiEEEIIEQ7KZ0SUQLiCzTZFXvKa//znP96JkXyG/CEqxVNyr5EjR7pTTjnFF6VpXBFCCCGEEOGgnEZEBfKE//73v174QU6D4w9rhyZcadmyZWTWAnG332+//XwONnHixIUc/oUQxRONT7VItb0x9ljHHXecF6oAI4BQTjKXG0UlJ/qBAwe6448/3s94GzRoUM38Oi5MdnEy4Yp9feutt7z7hBDFgBCF44vjbOrUqf7Y6d27txetbLXVVt6S+vLLL/fHVZjzE7HH69KlixdySagihBBCCBEuymdElEDEvv322/vxQe+//77PaxDdX3jhhW6dddbxTSFjxoxxc+fODe01kkuNHTvWnXzyyf6rhCpCCCGEEOGinEZEaY1mhRVWcAcffLB3jfzqq6/cBRdc4EeEIr5HrHLWWWe5559/vmYdMCyBV48ePfxXXCIlVBGiYUisIkKFQtnSSy/txQBBKJ5hV4xQ4Ndff/UiArqubr/9dtesWTM/7w33izPOOMNNmTLF/42JVuwrDi04srzzzjshbJmIe1D0t7/9zR111FFu8uTJ3smEmYIvvviiF60gFLn44ovd66+/XtWgiM7IPffc02222WbeMluOKkIIIYQQ4aJ8RkQV8mLyFhPcP/30027TTTf143YRruy///7u7rvvdt9++21Vxfg4qdAgMHr0aO/6IoQQQgghwkU5jYgqNLofcMABXuTOGg25zL///W/vHLnJJpv49cFnnnnGu5tUi3nz5nkxDXkUjfbLLbdc1Z5biKSiMUAiNBChUCxDdfjSSy/VmmW38847+5EsxxxzjD/5Dx8+3K222mr+9xTa+vfv751XGA2E8pfF+1tvvdUX3bKfY/HFF4/M+BYRf4I2dIyqWnPNNX1wxLggxgZVyoaO4GePPfZwa6+9trv33nvdEkssUZHnEUIIIYQQxaF8RsQRhCmzZ8929913nx8VxL/btWvn8xnyjZVXXrli+TNdh4cddpgXyWDjLYQQQgghwkU5jYgjjOChiZ2G9nHjxrkll1zSN/mS0+A02ahRo4o872+//eYOOeQQ99FHH3kXS3InIUTDkbOKCI2XX37Zf0X1iEAFKJQNHTrUd4Bh94UghYtMkyZNav4OC2Psv+jEotj1yiuvuE8//dSNGjWq5j6vvvqqV1SyoB83oQqCG15z9o1RSUAhMft3Rx99dK3H+Pjjj/2oGFxrcAg5/fTTvRtNkGnTpnmxT+PGjd3666/vRowYsdBrufHGG/3r4WLfunVr99xzz9X6PTZnvC4uyoiOunbt6t+bJLP88su7gw46yBd22daLLrrIByd0BSKaQkjFfiqn4woCGQQxq6++ule6S6gihBBCCBE+ymfyo5wmupA/tmjRwp133nn+GMYtkhwTF9P11lvPC1ZoBKFzsZyOKwj9Dz/8cHfbbbdJqCKEEEIIERGU0+RG+Uy0YSrDXnvt5de0yFvIZViP6dWrl1/rwsnxscce82KscsH6GpMcGLeKUEZCFSHKh8QqIjTuuecet8MOO7j99tvPnXjiif4rt3fffdfdfPPN3kILAQRuFSY4ee+993wAxazttm3b+p8hZOnYsaObMWOGX9SH66+/3l+QKLzFDebtffHFFzU3G3OETbPRu3fvWve54ooran6H+AehChdiBDuMi+GiPWDAgJr7zJkzx98HBxvEPoy44UJLAdFAFMHoJYqYON/wPjAX8Ouvv665D3PGcRnBhg3BEW44++67r0uTDV337t290wnClauuusr93//9n1fwYkOHSAi77YbY0H3//fd+n6600krezQVxkRBCCCGECB/lM/lRThMPyLM32GADP/cdwT0jdMkTyQX5OYL8IUOG+OaQhghXnnjiCW+VfdNNN7lu3bqVdRuEEEIIIUT9UU6TG+Uz8YHGXtatENyzPkWTO2soNHivu+66/uukSZP8BIf6wvoOUyBYb0QE89e//rWs2yBE6skIEQLz5s3LtGnTJnPBBRf47x977LHM4Ycf7r+fM2eO/1n79u0zBx54YOarr76q+bvbb7898/e//z0zbdq0mp/9+uuvmbPPPjuzwQYb+O9/+umnTIcOHTJ9+/b1z1MMf/zxRyaqnHjiiZn11lsv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i1SBUAUkVBFph/FXo0eP9mIUxgHlYubMma5jx461fta5c2f/cyGEEEIIUX2UzwjxJ8pnhBBCCCHiiXIaIf5EOY0QfyKxihCiIhfZc8891zVr1swttdRSbr311nMXXXSRHz1j8O8BAwa41VZbzd8HUcS7775b63G++eYb17NnT7fccsu5FVZYwbt/oLwO8q9//cvtuOOObskll/SzMK+44oqFXs/YsWPdRhtt5O+z2WabuYkTJ9b6fTGvJSm89tprPiFo3LixO/roo90DDzzgNtlkk5z3/fLLL92qq65a62d8z8+FEEIIIYRIMsppoonyGSGEEEIIIepG+Ux0UU4jRG0kVhFClJ3LL7/cDR061N1www3uzTff9N8jIrn++utr7sP3gwcP9uNkZs2a5ZZZZhnv2vHLL7/U3AehyhtvvOGmTJniR9E8+eSTrk+fPjW/nzt3ruvUqZNbe+213YsvvujH2Zx//vnulltuqbnPM88843r06OGFLi+//LL7xz/+4W+vv/56Sa8lKWy44YbulVde8dt5zDHHuF69ernZs2eH/bKEEEIIIYSIFMppoonyGSGEEEIIIepG+Ux0UU4jRBYZIYQoM126dMkcfvjhtX627777Znr27On/PX/+/EyTJk0yV155Zc3vv/vuu0zjxo0zo0aN8t/Pnj0bG5bM888/X3OfSZMmZRZZZJHMZ5995r8fMmRIZsUVV8zMmzev5j79+vXLbLjhhjXfd+vWzb+eIK1bt84cddRRRb+WJNOhQ4dMnz59cv5urbXWylxzzTW1fjZgwIBMy5Ytq/TqhBBCCCGECAflNPFA+YwQQgghhBALo3wmPiinEWlHzipCiLKz3XbbualTp7p33nnHf//qq6+6GTNmuN12281/P2fOHD9KhnE7xvLLL+9at27tZs6c6b/nK6N/tt5665r7cP9FF13Uu4LYfdq2beuWWGKJmvvgiPL222+7b7/9tuY+weex+9jzFPNaksz8+fPdvHnzcv5u22239e9jEFxu+LkQQgghhBBJRjlNPFA+I4QQQgghxMIon4kPymlE2mkU9gsQQiSPM88804/o2Wijjdxiiy3m5yNecsklfqwPIA6BVVddtdbf8b39jq9/+9vfav2+UaNGbqWVVqp1n2bNmi30GPa7FVdc0X+t63nqei1JoX///l4w1LRpU/f999+7kSNHumnTprlHHnnE//6QQw5xa6yxhhs4cKD//sQTT3Q77bSTu+qqq1yXLl3c6NGj3QsvvFBrzJIQQgghhBBJRDlN9FA+I4QQQgghRHEon4kmymmEWBiJVYQQZefee+9199xzjxdDtGjRwr3yyivupJNOcquvvrrr1auX9nhIfP31116Q8sUXX3j3mJYtW3qhyi677OJ///HHH3vnmqD6mvfwnHPOcWeddZZr3ry5e/DBB92mm26q91AIIYQQQiQa5TTRQ/mMEEIIIYQQxaF8JpoopxFiYSRWEUKUndNPP90rdw844AD//WabbeY++ugj79iBWKVJkyb+51999ZVbbbXVav6O77fYYgv/b+7DhTvI77//7r755puav+crfxPEvq/rPsHf1/VaksLw4cML/h6XlWz2339/fxNCCCGEECJNKKeJHspnhBBCCCGEKA7lM9FEOY0QC7OghV4IIcrETz/9VMuhAxgHxOw9YHQPIpGpU6fW/J6xQbNmzXLbbrut/56v3333nXvxxRdr7vP444/7x2jdunXNfZ588kn322+/1dxnypQpbsMNN/QjgOw+weex+9jzFPNahBBCCCGEEOlCOY0QQgghhBAiriifEULEhowQQpSZXr16ZdZYY43M+PHjM3PmzMncf//9mVVWWSVzxhln1Nznsssuy6ywwgqZhx56KPOvf/0rs/fee2eaNWuW+fnnn2vus+uuu2a23HLLzKxZszIzZszING/ePNOjR4+a33/33XeZVVddNXPwwQdnXn/99czo0aMzSy+9dObmm2+uuc/TTz+dadSoUWbQoEGZN998M3PeeedlFl988cxrr71W0msRQgghhBBCpAflNEIIIYQQQoi4onxGCBEXJFYRQpSduXPnZk488cRM06ZNM0suuWRm3XXXzZx99tmZefPm1dxn/vz5mXPPPdeLTRo3bpzp0KFD5u233671OP/3f//nxSl/+ctfMsstt1zmsMMOy3z//fe17vPqq69mdthhB/8YCGQQnmRz7733ZjbYYIPMEksskWnRokVmwoQJtX5fzGsRQgghhBBCpAflNEIIIYQQQoi4onxGCBEXFuF/Ybu7CCGEEEIIIYQQQgghhBBCCCGEEEKIdLBo2C9ACCGEEEIIIYQQQgghhBBCCCGEEEKkB4lVhBBCCCGEEEIIIYQQQgghhBBCCCFE1ZBYRQghhBBCCCGEEEIIIYQQQgghhBBCVA2JVYQQQgghhBBCCCGEEEIIIYQQQgghRNWQWEUIIYQQQgghhBBCCCGEEEIIIYQQQlQNiVWEEEIIIYQQQgghhBBCCCGEEEIIIUTVkFhFCCGEEEIIIYQQQgghhBBCCCGEEEJUDYlVhBBCCCGEEEIIIYQQQgghhBBCCCFE1ZBYRQghhBBCCCGEEEIIIYQQQgghhBBCVA2JVYQQQgghhBBCCCGEEEIIIYQQQgghRNWQWEUIIYQQQgghhBBCCCGEEEIIIYQQQlQNiVWEEEIIIYQQQgghhBBCCCGEEEIIIUTVkFhFCCGEEEIIIYQQQgghhBBCCCGEEEJUDYlVhBBCCCGEEEIIIYQQQgghhBBCCCFE1ZBYRQghhBBCCCGEEEIIIYQQQgghhBBCVA2JVYQQQgghhBBCCCGEEEIIIYQQQgghRNWQWEUIIYQQQgghhBBCCCGEEEIIIYQQQlQNiVWEEEIIIYQQQgghhBBCCCGEEEIIIUTVkFhFCCGEEEIIIYQQQgghhBBCCCGEEEJUDYlVhBBCCCGEEEIIIYQQQgghhBBCCCFE1ZBYRQghhBBCCCGEEEIIIYQQQgghhBBCVA2JVYQQQgghhBBCCCGEEEIIIYQQQgghRNWQWEUIIYQQQgghhBBCCCGEEEIIIYQQQlQNiVWEEEIIIYQQQgghhBBCCCGEEEIIIUTVkFhFCCGEEEIIIYQQQgghhBBCCCGEEEJUDYlVhBBCCCGEEEIIIYQQQgghhBBCCCFE1ZBYRQghhBBCCCGEEEIIIYQQQgghhBBCVA2JVYQQQgghhBBCCCGEEEIIIYQQQgghRNWQWEUIIYQQQgghhBBCCCGEEEIIIYQQQlQNiVWEEEIIIYQQQgghhBBCCCGEEEIIIUTVkFhFCCGEEEIIIYQQQgghhBBCCCGEEEJUDYlVhBBCCCGEEEIIIYQQQgghhBBCCCFE1ZBYRQghhBBCCCGEEEIIIYQQQgghhBBCVA2JVYQQQgghhBBCCCGEEEIIIYQQQgghRNWQWEUIIYQQQgghhBBCCCGEEEIIIYQQQlQNiVWEEEIIIYQQQgghhBBCCCGEEEIIIUTVkFhFCCGEEEIIIYQQQgghhBBCCCGEEEJUDYlVhBBCCCGEEEIIIYQQQgghhBBCCCFE1ZBYRQghhBBCCCGEEEIIIYQQQgghhBBCVA2JVYQQ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ic8++8wddNBBbuWVV/af/c0228y98MILLg388ccf7txzz6113rvoootcJpNxSeXJJ590e+65p1t99dX98f7ggw/W+j3bPmDAALfaaqv5fdKxY0f37rvvurTsg99++83169fPfw6WWWYZf59DDjnEff755y4tx0CQo48+2t/n2muvreprFEKIuPHNN9+4nj17uuWWW86tsMIKPq/64Ycfivpbrr277bZbnefkNO8v7n/CCSe4DTfc0McnTZs2dX379nX//e9/XVIpNU8dO3as22ijjfz9iWMmTpzo0kYp++zWW291O+64o1txxRX9jZg3TbWAhtZDRo8e7c9Z1BDSRqn77LvvvnPHHXecz68aN27sNthgg1R9PkvdX+Qddq5fa6213Mknn+x++eWXqr1eIYRIO/XJa4466ihfU+Xc/de//tXtvffe7q233qraaxa5Uc6VLOrz2bzllltcu3bt/N8QuxOXinBQfp/O9/KNN95wXbt29fdPwhpLVcQqBBDz5893N998s9+B11xzjbvpppvcWWed5ZLKmDFj3CmnnOJFOS+99JLbfPPNXefOnd3XX3/t0sD06dN90eTZZ591U6ZM8Yu0nTp1cj/++KNLG88//7w/9lu2bOnSxLfffuu23357t/jii7tJkya52bNnu6uuusoXbNPA5Zdf7oYOHepuuOEG9+abb/rvr7jiCnf99de7pMLnm3MdF9VcsP2DBw/25/9Zs2Z5wQbnxSQVCAvtg59++slfDxAx8fX+++/3Ir699trLpeUYMB544AF/fUDUIoQQojAUjcihiKnHjx/vhYF9+vQpareRrJK0polS9xeiUW6DBg1yr7/+uhsxYoSbPHmyL9AlkVLz1Geeecb16NHD74+XX37ZCwi4sa/SQqn7bNq0aX6fPfHEE27mzJl+UZxcGCF/WqhvPYRGp9NOO82LfdJGqfuM5q9ddtnF77P77rvP5xUIpdZYYw2XBkrdXyNHjnRnnnmmvz/5+fDhw/1jJLkuKYQQSchrttpqK3f77bf7c/cjjzzixfjEVTQJivBQzpUs6vPZpM696667KpYKGeX36X0vf/rpJ7fuuut6o4QmTZq42JMJiSuuuCLTrFmzTFJp1apV5rjjjqv5/o8//sisvvrqmYEDB2bSyNdff42dRGb69OmZNPH9999nmjdvnpkyZUpmp512ypx44omZtNCvX7/MDjvskEkrXbp0yRx++OG1frbvvvtmevbsmUkDfN4feOCBmu/nz5+fadKkSebKK6+s+dl3332Xady4cWbUqFGZNOyDXDz33HP+fh999FEmLdv/6aefZtZYY43M66+/nll77bUz11xzTSivTwgh4sDs2bP9+fT555+v+dmkSZMyiyyySOazzz4r+Lcvv/yyP99+8cUXRV2T0r6/gtx7772ZJZZYIvPbb79l0p6nduvWzce1QVq3bp056qijMmmhobn977//nll22WUzd9xxRyYt1GefsZ+22267zLBhwzK9evXK7L333pk0Ueo+Gzp0aGbdddfN/Prrr5k0Uur+4r7t27ev9bNTTjkls/3221f8tQohhChfnP7qq6/6x3nvvfe0W0NCOVeyaOj7+cQTT/i///bbbyv8SkUulN8nh1YNqDskYY2lKs4qucBWeaWVVnJJhA6XF1980dv9Gosuuqj/ns6qNGI22kl9z/OBu0yXLl1qHQtpYdy4cW7rrbd2+++/vx8FteWWW/pOr7Sw3XbbualTp7p33nnHf//qq6+6GTNmeCv+NDJnzhz35Zdf1vosLL/88t7OLK3nRTs30vGOxWIawGXt4IMPdqeffrpr0aJF2C9HCCEiD9dIrhHEVAbXUnILXMryQYfFgQce6J2uEtFhUeH9lev6jJ1xo0aNXNrzVH6encvQ3ZOW+K0cuT2fR5xG05IL13efXXjhhT5vTKqrUbn3Gfn2tttu62sOq666qtt0003dpZdemopO8/rsL/Jz/sastD/44AM/Mmn33Xev2usWQog0U444HTdfXFYYuY5znQgH5VzJolzvp6g+yu+Tw6/SFLhQqm/vvfeeH4WB1XIS+c9//uMLBBQMgvB9Gmcqsjh50kkn+ZEwFFDSArO2sWtiDFAaofjDGBysq7DWZT/07dvXLbHEEq5Xr14u6WAxPHfuXLfRRhu5xRZbzJ8TLrnkEm+rl0YQqkCu86L9Lm0w/qhfv37eJp4FsTTAOCwW/jgXCCGEqBuukSzeBuE8yqJ3oevnySef7BfmmOmeJuq7v7JzuYsuuqjoUUtJz1PZb2mO38qR2xPvMfowLQ0M9dlniPoZy/LKK6+4NFKffUa+/fjjj/v8EtEFdbZjjz3WC6Owjk4y9dlfCDj5ux122MGPkPj999/d0UcfLet6IYSIQZw+ZMgQd8YZZ3ixyoYbbuhHlVBfFuGgnCtZlOP9FOGg/D45SFPg3KINXYylI7zQLTtRZE4zs8xwW+jdu3dD30MRA+j0YaY54o208Mknn7gTTzzR3XPPPW7JJZd0aQSR0t///nff3YWrCgV/PvM33XSTSwP33nuvf/+ZjY1o6Y477vACPb4KQRG5W7duvlCKqCsN0Ml43XXXuREjRvj4QAgh0kx98qhiodueBcxrr73WJYVK7q8gCI1xRdxkk03c+eefX5bXLtIN86PJgx944IHU5oV18f3333vnPVw4V1lllbBfTqzybRYWbrnlFrfVVlu57t27u7PPPjs1+XapTJs2zdcmWPAkP7///vvdhAkTvDhRCCFEtON0hJkvv/yymz59uttggw18PY0GMFFelHMli2q9n0IIEbqzyqmnnuoOPfTQgvdZd911a/79+eefu5133tl3+ZFQJxUKLDgpfPXVV7V+zvdpsuGG448/3o0fP949+eSTbs0113RpgUXZr7/+2os1DDp/2A833HCDmzdvnj9Gksxqq63mC/1BNt54Y/fPf/7TpQHGnBAUHnDAAf77zTbbzH300Udu4MCBqXCWycbOfZwHOTYMvt9iiy1cGoUqHA8sJqbFVeWpp57y58WmTZvWOi8SS7Cg+uGHH4b6+oQQopoUm0dx/eTcGYRu8G+++SZvXsG15f33319oxFzXrl3djjvu6Bfs4kYl91dwwZymimWXXdYLCxZffHGXNOqTp/LzNOe1DcntEaojVnnsscdcy5YtXVoodZ9xviIO3HPPPWsJMayr8+2333brrbeeSzL1Oc7IqThPBesK5Nt0wGIjneSO8/rsr3PPPdeLoo488sia/JwOfZpqEPlgdS+EECKacTpjxLk1b97ctWnTxq244oo+XsepWJQP5VzJohrvpwgX5ffJYRVpChomVvnrX//qb8WAowpCFTo+mC2Y5ESQogDbOXXqVPePf/yjptjC94g30gBuASeccIIPHCmIM0syTXTo0MG99tprtX522GGH+ZEw2EAnXagCjH2isBjknXfecWuvvbZLA8ymzz7P8b5b4TVtcA4gwOU8aOIUupeZfXnMMce4tAlV3n33XffEE0+4lVde2aUFisPZ9vedO3f2P+f8KIQQaaLYPGrbbbd13333nRdCk1+YGIV4onXr1jn/BrGsLcYZLMpdc801tRaD40Ql95fF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AAAAAAAAAACIDGEVAAAAAAAAAAAAAAAARIawCgAAAAAAAAAAAAAAACJDWAUAAAAAAAAAAAAAAACRIawCAAAAAAAAAAAAAACAyBBWAQAAAAAAAAAAAAAAQGQIqwAAAAAAAAAAAAAAACAyhFUAAAAAAAAAAAAAAAAQGcIqAAAAAAAAAAAAAAAAiAxhFQAAAAAAAAAAAAAAAESGsAoAAAAAAAAAAAAAAAAiQ1gFAAAAAAAAAAAAAAAAkSGsAgAAAAAAAAAAAAAAgMgQVgEAAAAAAAAAAAAAAEBkCKsAAAAAAAAAAAAAAAAgMoRVAAAAAAAAAAAAAAAAEBnCKgAAAAAAAAAAAAAAAIgMYRUAAAAAAAAAAAAAAABEhrAKAAAAAAAAAAAAAAAAIkNYBQAAAAAAAAAAAAAAAJEhrAIAAAAAAAAAAAAAAIDIEFYBAAAAAAAAAAAAAABAZAirAAAAAAAAAAAAAAAAIDKEVQAAAAAAAAAAAAAAABAZwioAAAAAAAAAAAAAAACIDGEVAAAAAAAAAAAAAAAARIawCgAAAAAAAAAAAAAAACJDWAUAAAAAAAAAAAAAAACRIawCAAAAAAAAAAAAAACAyBBWAQAAAAAAAAAAAAAAQGQIqwAAAAAAAAAAAAAAACAyhFUAAAAAAAAAAAAAAAAQGcIqAAAAAAAAAAAAAAAAiAxhFQAAAAAAAAAAAAAAAESGsAoAAAAAAAAAAAAAAAAiQ1gFAAAAAAAAAAAAAAAAkSGsAgAAAAAAAAAAAAAAgMgQVgEAAAAAAAAAAAAAAEBkCKsAAAAAAAAAAAAAAAAgMoRVAAAAAAAAAAAAAAAAEBnCKgAAAAAAAAAAAAAAAIgMYRUAAAAAAAAAAAAAAABEhrAKAAAAAAAAAAAAAAAAIkNYBQAAAAAAAAAAAAAAAJEhrAIAAAAAAAAAAAAAAIDIEFYBAAAAAAAAAAAAAABAZAirAAAAAAAAAAAAAAAAIDKEVQAAAAAAAAAAAAAAABAZwioAAAAAAAAAAAAAAACIDGEVAAAAAAAAAAAAAAAARIawCgAAAAAAAAAAAAAAACJDWAUAAAAAAAAAAAAAAACRIawCAAAAAAAAAAAAAACAyBBWAQAAAAAAAAAAAAAAQGQIqwAAAAAAAAAAAAAAACAyhFUAAAAAAAAAAAAAAAAQGcIqAAAAAAAAAAAAAAAAiAxhFQAAAAAAAAAAAAAAAESGsAoAAAAAAAAAAAAAAAAiQ1gFAAAAAAAAAAAAAAAAkSGsAgAAAAAAAAAAAAAAgMgQVgEAAAAAAAAAAAAAAEBkCKsAAAAAAAAAAAAAAAAgMoRVAAAAAAAAAAAAAAAAEBnCKgAAAAAAAAAAAAAAAIgMYRUAAAAAAAAAAAAAAABEhrAKAAAAAAAAAAAAAAAAIkNYBQAAAAAAAAAAAAAAAJEhrAIAAAAAAAAAAAAAAIDIEFYBAAAAAAAAAAAAAABAZAirAAAAAAAAAAAAAAAAIDKEVQAAAAAAAAAAAAAAABAZwioAAAAAAAAAAAAAAACIDGEVAAAAAAAAAAAAAAAARIawCgAAAAAAAAAAAAAAACJDWAUAAAAAAAAAAAAAAACRIawCAAAAAAAAAAAAAACAyBBWAQAAAAAAAAAAAAAAQGQIqwAAAAAAAAAAAAAAACAyhFUAAAAAAAAAAAAAAAAQGcIqAAAAAAAAAAAAAAAAiAxhFQAAAAAAAAAAAAAAAESGsAoAAAAAAAAAAAAAAAAiQ1gFAAAAAAAAAAAAAAAAkSGsAgAAAAAAAAAAAAAAgMgQVgEAAAAAAAAAAAAAAEBkCKsAAAAAAAAAAAAAAAAgMoRVAAAAAAAAAAAAAAAAEBnCKgAAAAAAAAAAAAAAAIgMYRUAAAAAAAAAAAAAAABEhrAKAAAAAAAAAAAAAAAAIkNYBQAAAAAAAAAAAAAAAJEhrAIAAAAAAAAAAAAAAIDIEFYBAAAAAAAAAAAAAABAZAirAAAAAAAAAAAAAAAAIDKEVQAAAAAAAAAAAAAAABAZwioAAAAAAAAAAAAAAACIDGEVAAAAAAAAAAAAAAAARIawCgAAAAAAAAAAAAAAACJDWAUAAAAAAAAAAAAAAACRIawCAAAAAAAAAAAAAACAyBBWAQAAAAAAAAAAAAAAQGQIqwAAAAAAAAAAAAAAACAyhFUAAAAAAAAAAAAAAAAQGcIqAAAAAAAAAAAAAAAAiAxhFQAAAAAAAAAAAAAAAESGsAoAAAAAAAAAAAAAAAAiQ1gFAAAAAAAAAAAAAAAAkSGsAgAAAAAAAAAAAAAAgMgQVgEAAAAAAAAAAAAAAEBkCKsAAAAAAAAAAAAAAAAgMoRVAAAAAAAAAAAAAAAAEBnCKgAAAAAAAAAAAAAAAIgMYRUAAAAAAAAAAAAA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OTJULCLuQNRB1R4+DRV9dFzMMq+99loI3P7ud78LMYFS/lccgSQiIiIiXYc+jXRF53sKhRGmtwbi+/vuuy8IOx588MEwdSAKV1ZcccVMC1fIMZ1++unJddddF4QqdIgptQzjT/VpRMqjWEVqzkEHHZRcffXVoeUvI3fuv//+ZLfddgvjc7hfjMIV6WwwGP75z3+GNnQEehF/oICN8xOz1oYOEcqee+4ZgtgYQXPPPXetV0lERESkYdGfkSyAcOWll14K/gyB3o8++iiMCMKn2WyzzcJo1Cz5NK+//noQqlBocMopp2Rq3UREREQaDX0ayQII1YcOHRqKix944IFkjjnmSLbccsuQo1lttdUyVdBOTuncc89NrrjiihYd/kWkfShWkZry/fffB3XkQgstFNobzzXXXOFitOOOOyYPPfRQuAAx043EPCrMeeaZp0VADrKsrpR8gZHx5ZdfNmtD17179zBfEDUvRkctjzfEWgR0aYdNNxiUxiIiIiJSG/RnJKs+DV1LonDlrbfeStZff/0Q5KWykaBvLcUhrA9CFTpFnnXWWQpVRERERGqIPo1kkW+//TbkZhCu0HmFsaDkaBDjr7HGGq12oKyGv3XJJZck559/fvLII4+E3KWIdBwz/FJTRo8eHVoTH3DAAUGoAowAYgTLiBEjks8//zwoKAlgMdZlgQUWCBcALgaAaCAKB6JwJf594403kvHjx9ds2ySfELTt1q1bCJzSaYVW2swcfO+990Jl4vLLL58cf/zx4diNx1q14PMOPvjg5Pnnnw9GkEIVERERkdqiPyNZ9WkQ2Z966qnJK6+8krz88svJ2muvHTqaLrrooiHI+8c//jH4OtG3rhb4VcysHzBgQHLmmWcqVBERERGpMfo0kkUQpyC2v+mmm5IJEyYEX+aHH35Idt5555A/pBsQHU1++umnqq4X/hPdVJgMwdgihSoiU45iFakpt912W7jorLzyys0enzRpUjLDDDMkTz31VPLjjz8GkQpzrJn91qNHjzAGhQqxo446Khk2bFh4TRStxL90aKEjC1VbIh1l1llnDZ1+qEokmHv22WcnEydODAHW3r17J0cffXTy7LPPho4nXS1UOfzww5Phw4cHoQrdiERERESktujPSB6EK7169QqC+xdeeCGM39lkk01CZ1OCvHQ4GTJkSCj06Grhyocffhg6uxB0pgjFDqkiIiIitUefRrLO9NNPH/yIa6+9NghX/vSnP4XOKuT/EOPTiZ5JDYhZuhL8JUT/Z5xxRnL//feHyRAiMuUoVpGagQiFCwjClAUXXLDpccQl3BADXH/99Um/fv2SCy+8MOnbt28IqiEQ2G677UKnlXHjxiUDBw5MNt544+SDDz5o9v6HHXZY6IxBAC5PLLLIIiGgWHyj+wyst956LZ7bd999m70H88m5eCMEmnvuuZMjjzwyCHwKQfSA6nO66aZLFl988bCvi7n88svD+mAM9OnTJxk5cmSLFoGs169+9atk5plnDiObEHTUK2zjtttum9xyyy1hOy+99NLkq6++CsfjkksuGQRVTz75ZIt93RlClWOPPTYIsBCq8J2IiIiISG3RnymPPk02wXfE90NwT7fGd999NwhH7rzzzmSppZYKnSTxcRCVdLZwBTEMPir+PZ+hUEVERESk9ujTlEZ/JrtMM800IR941VVXJZ988kkYE8T0BjqtUOiOgIWxQd99912nfi7+0Y033piceOKJyT333BNGEYlI56BYRWrGSy+9FP7SkeKJJ54I/0d8QlUXisTZZ589jALacsstm407Oe2004JQ4NZbbw0XnTFjxoSLEgKCCG2O6XYx7bTT5q6t8KhRo4I6NN5i5xhEEpG99tqr2TLnnntu03PsT4KAGJrsgxtuuCEIURhlE3n//ffDMswtZ/8deuih4SKOeKhQUY344uSTT05efPHFMP6GwOJnn33WTBB07733JnfccUf4Dj/99NNk6623ThoBOv8wHxEDhe8ARS0t52hDRwAYMdWjjz46xW3oEKrw3WF0IVRZbLHFOm0bRERERKTj6M+UR58m++And+/ePfh8dDRFoEJHSXzC5ZZbLll33XVD0QiClikVrtCZEv9znXXWCf6+QhURERGRbKBPUxr9mXxAdxWKuy+77LLgz5AvnGeeecJEBgRHgwYNChMa/vWvf03R5+AP3XzzzeF977rrruDXiEgnkorUiIMOOijdbbfd0tNOOy1dfvnl02222SZdaqml0pVWWikdM2ZM+r//+79pz54902eeeabpNW+//Xbaq1evdPDgwc3e68ADD0w322yz9Msvvwz399hjj3TFFVdMX3311TTvHHLIIeliiy2WTp48Odxfd911w2PleOCBB9Jf/OIX6cSJE5seGzJkSDrrrLOmP/zwQ7h/1FFHpb179272uu233z7t169f0/3VVlstPeCAA5ru/+c//0nnn3/+9Kyzzgr32dfTTDNNescddzQt8/rrrxPFTJ977rm0Ufnxxx/TYcOGpfvss086zzzzpHPMMUc6cODAcDx//vnn6b/+9a+Kb9988016zDHHpHPPPXc6duzYWm+aiIiIiBSgP1M5+jT5Ab9zwoQJwYfceOONg8+33HLLpSeddFL6wgsvBB+lPT7N+++/H3z4HXfcMf3pp59qvXkiIiIiUoA+TWXoz+QLclkjRoxIjzzyyHTxxRdPZ5xxxvQ3v/lNeu211wZfpz3+DLfrr78+nWmmmdKhQ4fWetNE6hI7q0hNoOsH6lTUjbTNuuCCC5LZZpst2WGHHUIHCbp4MIJm1VVXDV0qIk8//XQYbbPssss2PUbnCl77zjvvhL+092Ik0Nprr50sscQSFXevyOp+Yv7e7rvv3qxDDPPF55xzzmSZZZYJ42G+/fbbpueee+65sH9QkEboiMK4pbFjxzYtQ4vnQliGx+PnMs+8cBmq37gfl+F59n3hMsxCX3jhhZuWaURoQ8c+ufLKK0Ora45njsuDDz44tKHbY489QjeattrQodalYw4dW+iosvTSS1dtG0RERESkdfRnKkefJl/gd9LZlFGzdFmhi+QhhxySjB49OozmpQvq6aefnrz22mtt+tH/+Mc/QqdU/Fa6fVL5KCIiIiLZQJ+m8v1kjiZfkMvCbyG/8uabb4a8Yu/evZPzzjsv5CS322678J1+8cUXbXaRpJPKAQccECY9bLrpplXbBpFGwkiB1ATG9NAKmKAVbLjhhuEW+eabb5Kvvvoq6d+/fzL33HM3Pb7gggsmn3/+ebOxQFxQHnvssdCmGB5//PGwDK2LGQPExabcKCAMDQJs008/fbPHeSwLrYm5EH755ZfJrrvu2vQYrZlp1zz//PMnr7zySpg3zgWXdmbAfi0UqkC8z3OtLYOgBREF+5RxQqWWeeONN5reg/3LuKbiZeLnNDq//OUvQxs6bhdffHGYC4945ZhjjgmBWwRCzIjfZJNNkplnnrnpdRyzl1xySTJ48OAgVCkUZ4mIiIhI7dGfqRx9mvyCH/2rX/0qFE/stttuwUdHeI9Pg3+Df85oVHwaCk4KfWh8Sp5bdNFFQ7EFon4RERERyQ76NJWhP5Nv8FFWXHHFcEN0T0H3X/7yl1Asf+CBB4bcDf7MFltsEXyfwlwiY4X22muvIGzheRHpGhSrSE1YaqmlkiuuuCJZeeWVw306dJDY58JBop7EPZVbcZZcFJzQuQMhy/Dhw5Mll1wyvO6mm25K3nrrrRAsg0cffTTp1q1b03u3Bt1BEMnwWYWdK7IgVIFrrrkmCHYQpkT23nvvpv8jYphvvvnCNjBLfLHFFqvRmkpbcHyvueaa4Xb++eeHY44g72mnnRa+04033jgEczfbbLNwTKPypZJxpZVWcueKiIiIZAz9mcrRp6kP8McpVBg4cGC4ff3118n9998ffBpE+HPNNVfy61//Otlqq61Ch1MCvviqt99+eyhyEBEREZFsoU9TGfoz9eXTUEDP7eSTTw55RfyZa6+9NnSTXGuttYIfQ3dIxFyI9nkOH0dEuo5sZOSl4UCMUtg1hSqrKBDhghHbCc8000xNjwGVW1xEjjvuuJDUHzBgQHLGGWckhx9+eGjrRaeUl156KQTHELYUvrYUvGb11VdPbrzxxnCfriJ0KMEAaav9V1fz4Ycfhq4ae+65Z6vL9enTJ/xlDBLQdeZvf/tbs2Xi/diRptwys846azLDDDOEEUOIK0otU/ge7G86v5RbRlpvQ3fOOeeETjXPPvtsEB4hYllooYWSE044IQR+WUZEREREsof+TGXo09Qvs8wySxjje8cddwQfEF/m73//exCsMP4UPxzferrppqv1qoqIiIhICfRp2kZ/pn7BX6EgnlzjqFGjwvQCco6M++nZs2ey7bbbJldeeWUYGSQiXYtiFckkrXU2oTXXE088ETqhMF+ONmxHHXVUeI7Zc4gnaOnFaJ/WBCc8hyADFSWCgY8//jjZb7/9kt/97nfJiy++2KrIpRpcd911Qcyz+eabt7rcmDFjwl+q1oA54q+++mry2WefNS0zbNiwIESJ3WNYhg40hbAMjwOVb3SmKVwGARH34zI8j8iocBku6B999FHTMlLZsb7CCis0taDje2AE0BprrOHuExEREckp+jP/RZ+mMaDIZJtttkluvvnmIFw59thjg1CleNyuiIiIiOQHfRr9mUaBXCDjS4888shQWPz6668np5xySrLTTjvVPE8o0hCkInXEsccem6633nrpqFGjwv3Jkye3+Zo333wzXWihhdLevXunK620UvrUU0+lteY///lPuvDCC6dHH310s8ffeeed9LTTTktHjx6dvv/+++ndd9+dLrroouk666zTtMy///3vdJlllkk32WSTdMyYMemDDz6YzjXXXGHfRN577710xhlnTI888sj09ddfTy+//PL0l7/8ZVg2cuutt6bTTTddev3116fjxo1L995773T22WdPJ06c2LTMvvvuG9bzscceC+vUt2/fcBMRERERkcb1Z0CfRkRERESk8agXn0Z/RkSkOihWkVyCoYAooxCMnvXXXz/df//903/961+tvj6+9vPPP08vvfTSdKqppgqv/eqrr5req5Y89NBDtIQJRlohH330URCmzDHHHEFIsvjiiwfBSVzvyAcffJD2798/nWGGGdI555wzPfzww9Offvqp2TKPP/54usIKK6TTTjttELxcd911LdZj8ODBQYzCMquttlr6/PPPN3v+u+++C/u7W7duQfyy1VZbpRMmTOjUfSEiIiIiUm/Uuz8D+jQiIiIiIvVLvfs0+jMiItVhKv6pdXcXkSlh0qRJyeOPPx5GAzFPjjlyzMn+97//HZ5n1E9hqy4Oee5PmDAhtPGind0777wT5tFdccUVyU8//RTG24iIiIiIiHQ1+jMiIiIiIpJn9GlERKSj/KLDrxTJEA888EDy2GOPJYMHD0422mij5Ouvv06mnnrqcEOYgkAlilf+85//JDfddFOy6qqrhseuvvrqZMiQIcldd92VTJw4UaGKiIiIiIhUFf0ZERERERHJM/o0IiLSEabu0KtEMsSss86aXHXVVU33P/744yBYQZSyyy67hNsiiywShCtAJ5XZZpst2XnnnZMzzjgjdF6ZaaaZgkhlxIgRyW9+85sabo2IiIiIiDQS+jMiIiIiIpJn9GlERKSj2FlF6o6FFlooefjhh5PDDz88GT58eLL88ssnvXr1Sk466aTkjTfeCGIVxgSdffbZQaiCqGWeeeZJ+vbtm1x88cXhPZyOJfUIHYSWW2654Dxw45gfOnRoq6+54447wu9n+umnT5ZddtmgkBcRERGRrkN/RqQ0+jMiIiIi+UCfRqQ0+jQiLZkqNSsvdc6nn34aEvKM/vnss8+ScePGhfE/sdNK5Pvvv0/Gjh0bkvl0WRGpN+69994g0OrZs2cQZN1www3Jeeedl7z00ktJ7969Wyz/7LPPJuuss05y1llnJVtssUVy8803J+ecc07y4osvJssss0xNtkFERESk0dCfEfkv+jMiIiIi+USfRuS/6NOItESxijQU33zzTTLzzDMnkydPDh1WRBqdOeaYIwhW9thjjxbPbb/99sm//vWv5L777mt6bPXVV09WWGGF5Morr6zymoqIiIiI/oxIc/RnRERERPKFPo1Ic/RppNExWy8NBUIVUKjStTBa6cQTT0x69OiRzDDDDMliiy2W/P73v282Xon/M5ppvvnmC8tstNFGydtvv93sfT7//PNkp512CiNrZp999iCowJgt5JVXXknWXnvtMKaG9oLnnntuu0fZVLIu9fgd3XrrrUGMwjigUjz33HNhXxTSr1+/8LiIiIiIVB/9meqhT5Nt9GdERERE8ok+TXXQn8k++jQi/0Wxioh0OoyKYfbeZZddlrz++uvhPiKSwYMHNy3D/UsvvTR06BgxYkQy00wzBSEE45giCFUYzTRs2LDQ3ePJJ59M9t5776bnJ02alGyyySZJ9+7dkxdeeCF0CDnllFOSq6++utkomwEDBgShC+Nu/ud//ifcXnvttXatS73w6quvBodguummS/bdd9/kzjvvTJZeeumSy06cODGZZ555mj3GfR4XEREREaln9Gmyif6MiIiIiEjb6M9kF30akSJSEZFOZvPNN0933333Zo9tvfXW6U477RT+P3ny5HTeeedNzzvvvKbnv/zyy3S66aZLb7nllnB/3LhxtGFJR40a1bTM0KFD06mmmiodP358uH/FFVek3bp1S3/44YemZY4++uh0ySWXbLq/3XbbhfUppE+fPuk+++xT8brUE+yrt99+Ox09enR6zDHHpHPOOWc6duzYkstOM8006c0339zsscsvvzyde+65q7S2IiIiIiK1QZ8mm+jPiIiIiIi0jf5MdtGnEWmOnVVEpNNZY401kkcffTR56623wv2XX345efrpp5P+/fuH+++//37ozlE4Yma22WZL+vTp0zRihr+M/llllVWalmF5RjjR/SQus8466yTTTjtt0zJ0RHnzzTeTL774oqJRNpWsSz3Bvlp88cWTlVdeOTnrrLOS5ZdfPrnkkktKLjvvvPMmf/vb35o9xn0eFxERERGpZ/Rpson+jIiIiIhI2+jPZBd9GpHmKFYRkU7nmGOOSXbYYYekV69eyTTTTJOsuOKKyaGHHhrG+kAcI9PaiBn+zj333M2en3rqqZM55pij2TKl3qPwM9oaZVPJutQzkydPTn744YeSz/Xt2zeIjgphJBOPi4iIiIjUM/o0+UB/RkRERESkJfoz+UGfRhqdqWu9AiJSf9x+++3Jn//85+Tmm29OevfunYwZMyaIVeaff/5k0KBBtV69huXYY48N3W0WXnjh5Ouvvw7fz/Dhw5OHHnooPL/LLrskCyywQOi4Aoccckiy7rrrJhdccEGy+eabJ7feemsyevTo5Oqrr67xloiIiIiIdC36NNlDf0ZEREREpDL0Z7KJPo1ISxSriEinc+SRRzYpd2HZZZdNPvzwwyCCQKwSx8gwUma++eZreh33V1hhhfB/lvnss8+ave+///3v5PPPP296fbkxNfG51pYpfL6tdakX2J8IUiZMmBBGHS233HJBqLLxxhuH5z/66KMwZqmwVSCClhNOOCE57rjjkp49eyZ33XVXsswyy9RwK0REREREuh59muyhPyMiIiIiUhn6M9lEn0akJY4BEpFO59tvv20meoBf/vKXoZ0Z9OjRI4hECkfMTJo0KRkxYkTTiBn+fvnll8kLL7zQtMxjjz0W3qNPnz5Nyzz55JPJTz/91GxMzZJLLpl069atolE2laxLvXDNNdckH3zwQRj7g1H0yCOPNAlVgC4r119/fbPXbLvttsmbb74ZXvPaa68lm222WQ3WXERERESkuujTZA/9GRERERGRytCfySb6NCIlSEVEOplBgwalCyywQHrfffel77//fvrXv/41nXPOOdOjjjqqaZmzzz47nX322dO77747feWVV9Lf/OY3aY8ePdLvvvuuaZlNN900XXHFFdMRI0akTz/9dNqzZ890wIABTc9/+eWX6TzzzJMOHDgwfe2119Jbb701nXHGGdOrrrqqaZlnnnkmnXrqqdPzzz8/ff3119OTTz45nWaaadJXX321XesiIiIiIiKNgz6NiIiIiIjkFf0ZEckLilVEpNOZNGlSesghh6QLL7xwOv3006eLLrpoevzxx6c//PBD0zKTJ09OTzzxxCA2mW666dINN9wwffPNN5u9zz//+c8gTpl55pnTWWedNd1tt93Sr7/+utkyL7/8crrWWmuF90Agg/CkmNtvvz1dYokl0mmnnTbt3bt3ev/99zd7vpJ1ERERERGRxkGfRkRERERE8or+jIjkhan4p1THFRERERERERERERERERERERGRzuYXnf6OIiIiIiIiIiIiIiIiIiIiIiJlUKwiIiIiIiIiIiIiIiIiIiIiIlVDsYqIiIiIiIiIiIiIiIiIiIiIVA3FKiIiIiIiIiIiIiIiIiIiIiJSNRSriIiIiIiIiIiIiIiIiIiIiEjVUKwiIiIiIiIiIiIiIiIiIiIiIlVDsYqIiIiIiIiIiIiIiIiIiIiIVA3FKiIiIiIiIiIiIiIiIiIiIiJSNRSriIiIiIiIiIiIiIiIiIiIiEjVUKwiIiIiIiIiIiIiIiIiIiIiIlVDsYqIiIiIiIiIiIiIiIiIiIiIVA3FKiIiIiIiIiIiIiIiIiIiIiJSNRSriIiIiIiIiIiIiIiIiIiIiEjVUKwiIiIiIiIiIiIiIiIiIiIiIlVDsYqIiIiIiIiIiIiIiIiIiIiIVA3FKiIiIiIiIiIiIiIiIiIiIiJSNRSriIiIiIiIiIiIiIiIiIiIiEjVUKwiIiIiIiIiIiIiIiIiIiIiIlVDsYqIiIiIiIiIiIiIiIiIiIiIVA3FKiIiIiIiIiIiIiIiIiIiIiJSNRSriIiIiIiIiIiIiIiIiIiIiEjVUKwiIiIiIiIiIiIiIiIiIiIiIlVDsYqIiIiIiIiIiIiIiIiIiIiIVA3FKiIiIiIiIiIiIiIiIiIiIiJSNRSriIiIiIiIiIiIiIiIiIiIiEjVUKwiIiIiIiIiIiIiIiIiIiIiIlVDsYqIiIiIiIiIiIiIiIiIiIiIVA3FKiIiIiIiIiIiIiIiIiIiIiJSNRSriIiIiIiIiIiIiIiIiIiIiEjVUKwiIiIiIiIiIiIiIiIiIiIiIlVDsYqIiIiIiIiIiIiIiIiIiIiIVA3FKiIiIiIiIiIiIiIiIiIiIiJSNRSriIiIiIiIiIiIiIiIiIiIiEjVUKwiIiIiIiIiIiIiIiIiIiIiIlVDsYqIiIiIiIiIiIiIiIiIiIiIVA3FKiIiIiIiIiIiIiIiIiIiIiJSNRSriIiIiIiIiIiIiIiIiIiIiEjVUKwiIiIiIiIiIiIiIiIiIiIiIlVDsYqIiIiIiIiIiIiIiIiIiIiIVA3FKiIiIiIiIiIiIiIiIiIiIiJSNRSriIiIiIiIiIiIiIiIiIiIiEjVUKwiIiIiIiIiIiIiIiIiIiIiIlVDsYqIiIiIiIiIiIiIiIiIiIiIVA3FKiIiIiIiIiIiIiIiIiIiIiJSNRSriIiIiIiIiIiI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4fqCPzJ69Ohar5aISO4w3tp1+6iR4vbtyZ8Vs+uuu7aISW666aZJvdKRfZSmaXLSSScl8803XzgGN9poo+Ttt99O6pmO5EzrPQ9kDqjz91Oj5YAyL1bhwrrtttsm++23X8nnX3jhhRA4+dOf/pSMHTs2Of7445Njjz02ueyyy9p879NOOy2ZMGFC0+2ggw5K8kpb++k///lPEKqw3LPPPpvccMMN4WDnQtIanHTZr8OGDUvuu+++5Mknn0z23nvvpB7gwlv4/XPbc889g3G3yiqrtPravfbaq9nrzj333KTeae/v5bDDDkvuvffekDR+4oknkk8//TTZeuutk3rkjTfeSCZPnpxcddVV4fdy0UUXJVdeeWVy3HHHtfnaej6WbrvttuR3v/tdcJJefPHFZPnll0/69euXfPbZZyWX59yE+BAD76WXXgoBcW6vvfZaUq/w28A5fP7558N59qeffko22WST5F//+lerr8MYLjxuPvzww6Se6d27d7Ptffrpp8su24jHkYjkg6OOOiqZf/75a70a0gn2m9TWZpRs26lSXSi04Ty23HLLueszwBdffJGsueaayTTTTJMMHTo0GTduXHLBBRck3bp1q/WqiYjkDuOtXbePGiluX2n+rByIUwpjkrfccktSr3RkH5HLuPTSS8NxN2LEiGSmmWYKvhyCqHqloznTes0DmQPqmv3UiDmgNkkzwHXXXZfONttsFS27//77p+uvv36ry3Tv3j296KKL0nqj3H564IEH0l/84hfpxIkTmx4bMmRIOuuss6Y//PBDyfcaN25cytc/atSopseGDh2aTjXVVOn48ePTeuPHH39M55prrvS0005rdbl11103PeSQQ9JGor2/ly+//DKdZppp0jvuuKPpsddffz0cT88991zaCJx77rlpjx49GvpYWm211dIDDjig6f5//vOfdP7550/POuuskstvt9126eabb97ssT59+qT77LNP2ih89tln4XfyxBNPdMr1sB44+eST0+WXX77i5T2ORCSLYIv36tUrHTt2bDjPv/TSS7VeJemg/Sa1txklu3aqVJevv/467dmzZzps2LC69y3zwtFHH52utdZatV4NEZG6xXjrlO+jRo/btyeuOmjQoPQ3v/lN2mhUuo8mT56czjvvvOl5553X7Piabrrp0ltuuSWtRzqaM61nW90cUNfsp0bLAVVCTTurdISvvvoqmWOOOSpqlUqrsxVXXDE577zz2hyJk2eee+650Hp0nnnmaXoM1dakSZOCCrDca2hjVdhlhDZev/jFL4JKst645557kn/+85/Jbrvt1uayf/7zn5M555wzWWaZZUInn2+//Tapd9rze6HjEZV3HC8RRnIsvPDC4bhqBCo9D9XrsYQSm+Og8Bjg3MH9cscAjxcuH89TjXLMxOMG2jp2aC3YvXv3MALvN7/5TdnzeL1A+0i6ESy66KJBvc5Yu3J4HIlI1qCdMhU0N910U2inK/m336S2NqNk206V6kHnGzroFvtQUtu4EjE0qpLpAk385A9/+INfiYhIJ9Ho8dbO2EfG7dvH8OHDwzV9ySWXDB1HyB/Jf3n//feTiRMnNrNFZ5tttjDepF59uSnJmdbjeckcUNftp0bMAbXF1EmOoP0/7XTuv//+Vpc7+OCDk5VWWilcuHkNJwfa6Fx44YVJPcJFo1CoAvE+z5V7DRfiQqaeeuqwz8q9Js9cc801ITG+4IILtrrcjjvuGE4QJE5feeWV5Oijjw6zu//6178m9Up7fy8cH9NOO22L2YYcc/V47BTzzjvvJIMHD07OP//8hj2W/vGPf4TxY6XOO7SobM95qhGOGaBtJ3PmaRuN0VoOnKNrr702tPrGAeU4Y6wZxkpb5688goPD2Dq2m/POqaeemqy99tphrM8ss8zSYvlGP45EJFswv5k518wiJpjBTHHJt/0mtbcZJbt2qlSPW2+9NbSPZgyQZIf33nsvGTJkSGjxzQgGvh/iKcRHBg0aVOvVExHJNcZbO2cfNXrcvr0jgBiP1KNHj+Tdd98N1/b+/fuH5PIvf/nLpNGJx0sjxWE7mjOt1zyQOaCu20+NlgOqhE7vrHLMMcckU001Vau3jgSmSFyhLmLmE7OUWwPHcb311gtfNMFjZshyIf/hhx+SrNBV+6ne6ch+++STT5KHHnoo2WOPPdp8f+bPIWqhUw0V/jfeeGNy5513BoOlXvdTHn4vWTmWxo8fHwxZKqmoom6EY0k6rzKS6xiB59bo27dvsssuuyQrrLBCsu666wajdq655grzaesRnEB+T5x/+L088MADyZdffpncfvvttV41EWlgKrURsJe+/vrrIPSVbH03HbXfRBqRSu1UqQ4ff/xxcsghh4TqzOmnn97dnjFhF4U+Z555Zuiqgs/PdeXKK6+s9aqJiGQG462130f1Qlfnz3bYYYfk17/+dYjd/8///E9y3333BSEq3VbygjnGbOwn80DSXhotB1STziqHH354qDBsDVr9t4dx48YlG264YfjRn3DCCR2q3GasCdWOKJayQGfup3nnnTcZOXJki5bk8blyr/nss8+aPcY++vzzz8u+Jq/77brrrgsjbjA+OnLsROXyYostluSFKTm+2vq9cHzQ2oqEcqFKm2Muy8fOlO6jTz/9NFl//fWDwvHqq69umGOpFLS0Q2EezzOVHAM83p7l64kDDzwwODxPPvlku5Wx00wzTQiEctw0ApxTllhiibLb28jHkYhkz0Z47LHHQtXVdNNN1+w5uqwgVL3hhhu6eE0bj2rbb1J9m1HyY6dK10ALaWI1iCIiVOrxHV122WWhqMRq39ow33zzJUsvvXSzx5Zaaqnkf//3f2u0RiIi2cN4a233Ub3E7bsqz9jWe+G/EJMkF9no+ygeLxw72EAR7pNgzxOV7qfOypnWSx7IHFDX7adGzwFVRayC+odbZ0Hbmw022CC01DzjjDM69B5jxowJM6KKWzjVks7cT6iw2DecSOM2Dhs2LJl11llbONKFr8FoIRCy8sorh8cIuFMpEk+mWaS9+4327IhVUKnxg+/IsQOFF+Q8MCXHV1u/F44X9uWjjz6abLPNNuEx2pp99NFH4biqx32Eeh2ngG3neGL/NMqxVAraSbIvOAZQngPnDu4T8C4FxwbP02I8wnkqT8dMe+H8c9BBB4WOOqjyaSvZXghMv/rqq8lmm22WNALMaqT70MCBA0s+34jHkYhk10a49NJLk9NPP71ZEJEuUYwtzbI9nWeqbb9J9W1GyY+dKl0DyRHs/0J22223pFevXqGluEKV2sGoLGIfhbz11luh7buIiPwX46213Uf1ErfvijxjW9Cd/5///GeuYvdduY/wD0i0cyxFccqkSZOSESNGJPvtt1+SJyrdT52VM62XPJA5oK7bT42eAypJWkM+/PDD9KWXXkpPPfXUdOaZZw7/5/b111+H51999dV0rrnmSnfeeed0woQJTbfPPvus6T1GjBiRLrnkkuknn3wS7j/77LPpRRddlI4ZMyZ999130z/96U/hPXbZZZc0r7S1n/7973+nyyyzTLrJJpuE7X7wwQfDNh977LFl9xNsuumm6Yorrhiee/rpp9OePXumAwYMSOuJRx55JOUwf/3111s8x75gn7D98M4776SnnXZaOnr06PT9999P77777nTRRRdN11lnnbReqeT3UryfYN99900XXnjh9LHHHgv7q2/fvuFWj7D9iy++eLrhhhuG/xeeixr5WLr11lvT6aabLr3++uvTcePGpXvvvXc6++yzpxMnTgzPDxw4MD3mmGOaln/mmWfSqaeeOj3//PPD7/Hkk09Op5lmmnCer1f222+/dLbZZkuHDx/e7Lj59ttvm5Yp3k+c5x966KHwe3zhhRfSHXbYIZ1++unTsWPHpvXI4YcfHvYPvxOOkY022iidc845m67zHkcikic4l2F3YqdL9u03yYbNKNm1UyU7rLvuuukhhxxS69VoeEaOHBl82jPOOCN9++230z//+c/pjDPOGOIoIiLSPoy3ds0+arS4faX5M2A//fWvfw3/5/Ejjjgife6554IfTw5ppZVWCvmx77//Pq1H2ruP4Oyzzw6+G7mNV155Jf3Nb36T9ujRI/3uu+/SeqWtnGmj5YHMAXXNfmq0HFAl1FSsMmjQoBDQLb49/vjj4XmSmaWe7969e9N7sCyPcSIAvtg+ffqEwAtf7lJLLZWeeeaZub7ItLWf4IMPPkj79++fzjDDDCHRRwLwp59+Kruf4J///Gc40XJxmnXWWdPddtut2cWpHmD71lhjjVYTCnE/fvTRR+EiMsccc4QTC8bgkUcemX711VdpvVLJ76V4PwEGyf77759269YtBGe22mqrug3+X3fddSV/f4Vav0Y9lgYPHhycn2mnnTZdbbXV0ueff75ZQJVzVyG33357usQSS4Tle/fund5///1pPVPuuOGYKrefDj300KZ9Os8886SbbbZZ+uKLL6b1yvbbb5/ON998YXsXWGCBcB8jP+JxJCJ5QrFKvuw3yYbNKNm1UyU7KFbJDvfee28oFsPP79WrV3r11VfXepVERHKJ8dau2UeNFrdvT/6s0NZFoE3hN0W7FFOSb9xrr73qWlDf3n0EkydPTk888cQQo8b2QTj15ptvpvVMWznTRswDmQPq/P3UaDmgSpiKf0r3XBERERERERERERERERERERER6Vwc3C0iIiIiIiIiIiIiIiIiIiIiVUOxioiIiIiIiIiIiIiIiIiIiIhUDcUqIiIiIiIiIiIiIiIiIiIiIlI1FKuIiIiIiIiIiIiIiIiIiIiISNVQrCIiIiIiIiIiIiIiIiIiIiIiVUOxioiIiIiIiIiIiIiIiIiIiIhUDcUqIiIiIiIiIiIiIiIiIiIiIlI1FKuIiIiIiIiIiIiIiIiIiIiISNVQrCIiIiIiIiIiIiIiIiIiIiIiVUOxioiIiIiIiIiIiIiIiIiIiIhUDcUqIiIiIiIiIiIiIiIiIiIiIlI1FKuIiIiIiIiIiIiIiIiIiIiISFIt/g8K1CVTuyP8lgAAAABJRU5ErkJggg==\",\n      \"text/plain\": [\n       \"<Figure size 3000x3000 with 12 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"fig = plt.figure(figsize=(30, 30))\\n\",\n    \"plt.rcParams['font.sans-serif'] = ['Arial Unicode MS']\\n\",\n    \"id = 1\\n\",\n    \"for i in [1, 2, 3, 4, 5, 7]:\\n\",\n    \"    ax = fig.add_subplot(3, 3, id, projection='3d')\\n\",\n    \"    fig.colorbar(ax.scatter(ana_data['proj_x'], ana_data['proj_y'], ana_data['day'],\\n\",\n    \"                            c=ana_data['coef_refl_b0'+str(i)], cmap='GnBu'),\\n\",\n    \"                 shrink=0.8, aspect=30, orientation='horizontal', pad=0.05)\\n\",\n    \"    ax.set_xlabel('proj_x')\\n\",\n    \"    ax.set_ylabel('proj_y')\\n\",\n    \"    ax.set_zlabel('day')\\n\",\n    \"    ax.set_title('coef_refl_b0'+str(i), fontsize=15, fontweight='bold')\\n\",\n    \"    id += 1\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"GNNWR\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.13.7\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "demo_result/gnnwr/dataset/test_dataset/dataframe.csv",
    "content": "station_id,lng,lat,date,PM2_5,row_index,col_index,proj_x,proj_y,dem,w10,d10,t2m,sp,tp,blh,e,r,u10,v10,aod_sat,ndvi,id,__belong__\n1657A,117.0881,36.1942,20170601,48.14542936,2789,6982,1805245.714,947316.2891,166,0.767899811,245.3131866,285.5733032,98834.11719,0.001015358,168.2943726,-9.04765e-06,62.26632309,-0.697706282,0.320742965,0.800968051,2720,496,test\n2469A,112.3439,28.56,20170601,39.57022472,4010,6223,1582643.666,-30661.91237,66,0.397435457,335.7533569,290.6412048,100725.7578,0.002480919,251.3430634,-2.18176e-05,72.22229004,-0.163242042,-0.36236304,0.847109914,3384,1105,test\n2441A,112.2211,31.0386,20170601,54.21848739,3614,6203,1520224.716,257230.2039,89,0.551894248,356.2021484,289.0668335,100211.4766,0.00196544,228.2400818,-2.02402e-05,71.37194824,-0.036604684,-0.550678968,0.823824048,2865,1079,test\n2066A,114.0614,32.1383,20170601,51.8125,3438,6498,1655403.309,416160.2028,89,0.328555495,243.3849182,288.0372925,100509.375,0.00183664,215.1823273,-1.58265e-05,71.75837708,-0.293735743,0.147200644,0.840706825,2785,820,test\n1300A,116.93,36.67,20170601,51.10704225,2713,6957,1779781.196,1000637.823,30,1.209402919,212.7987061,286.506897,100874.9922,0.001060971,194.2963257,-1.23449e-05,55.39476776,-0.655103445,1.01660955,0.817664206,2694,252,test\n1256A,121.419,28.6542,20170601,31.10814607,3995,7675,2391266.101,163857.283,11,0.43613553,346.0286255,290.54245,100985.1406,0.002336381,373.4453125,-2.48162e-05,78.24567413,-0.105335347,-0.423224121,0.538393497,3380,216,test\n2358A,117.0564,28.2642,20170601,34.52683616,4058,6977,2013984.455,21340.64094,34,0.818978786,315.9300232,291.7583313,100812.0938,0.002429195,174.5668335,-1.44533e-05,70.66157532,-0.569670856,-0.588388801,0.594829679,2773,1008,test\n1812A,112.3939,34.6511,20170601,64.64325843,3036,6231,1459000.093,686539.2996,163,0.356151402,209.9569702,287.6138611,98885.85156,0.001064777,170.621048,-1.02784e-05,60.18424988,-0.177839249,0.308572561,0.792759717,2610,632,test\n1454A,102.681,25.067,20170601,25.84722222,4569,4677,735856.711,-552014.5417,1934,1.3573066,1.588854909,287.9034424,79934.48438,0.003088265,358.0253906,-2.28983e-05,70.30989838,0.037632089,1.356784821,0.291880876,2781,382,test\n1352A,113.26,23.1331,20170601,35.90896359,4879,6370,1782533.017,-639093.1125,18,0.782682657,267.8681641,295.0823975,101206.2969,0.003136461,241.9406586,-2.33207e-05,72.53935242,-0.782139659,0.02915013,0.571879387,2436,297,test\n1389A,113.7480556,23.06,20170601,39.63445378,4890,6448,1831206.167,-638412.5699,5,0.760095775,256.1028748,295.0964966,101140.9844,0.003113785,241.2823334,-2.65111e-05,73.59203339,-0.73783952,0.182588294,0.533854187,2454,327,test\n2301A,115.8275,32.8928,20170601,51.21148459,3317,6780,1787551.592,535684.1737,31,0.875802696,253.3766785,288.2510681,101354.2813,0.00217193,197.380127,-1.31835e-05,64.80891418,-0.839190185,0.250579804,0.841141105,2434,958,test\n2349A,113.8447,27.6231,20170601,47.67086835,4160,6463,1739052.819,-113993.0059,109,0.584183812,272.816925,291.0622253,99498.95313,0.003151616,145.7396545,-9.52422e-06,76.30267334,-0.583479285,-0.02868185,0.715139687,3997,999,test\n1315A,120.4001,36.2403,20170601,30.67,2782,7512,2068855.455,1018035.354,23,0.678664923,190.5519867,285.7209167,101209.9531,0.00090022,340.594635,-5.13822e-05,66.28878784,-0.124278389,0.667188823,0.653640509,2624,262,test\n2559A,106.7594,31.8531,20170601,34.7867036,3484,5329,1029311.797,282626.1068,382,0.875813901,326.4268188,289.4684143,95310.53125,0.001954474,118.3181992,-8.06832e-06,72.71941376,-0.484381676,-0.72967416,0.69203496,3838,1187,test\n1957A,86.2022,41.7192,20170601,52.89481268,1905,2040,-664008.3159,1446024.032,952,0.706175923,351.7924194,287.0703735,90095.1875,0.000143489,182.0660095,-1.02816e-05,36.47826385,-0.100875482,-0.698933899,0.238025546,1615,760,test\n1465A,108.94,34.2324,20170601,66.77361111,3103,5678,1178613.539,590339.2893,415,0.75047195,185.9441071,286.4230957,95037.71875,0.001338344,86.33976746,-7.04371e-06,64.39261627,-0.077715322,0.746437192,0.608163774,2328,393,test\n3003A,120.0469,31.7694,20170601,46.64772727,3497,7455,2176423.792,489854.5873,4,1.146373153,261.4289856,288.6895447,101704.1484,0.001923699,282.6078796,-2.44316e-05,69.90763092,-1.133563161,0.17089729,0.741580606,2856,1373,test\n1791A,124.8847,46.3991,20170601,22.25633803,1156,8230,2052200.799,2304072.26,141,0.829764247,64.21159363,276.457489,99810.27344,0.000759838,231.6907501,-1.19601e-05,58.84423065,0.747113466,0.361012697,0.332987547,2635,611,test\n1757A,124.0383,41.8625,20170601,29.60694444,1882,8094,2157668.334,1754970.617,101,0.84517628,183.5670471,279.8502808,100080.3125,0.001151623,261.1168518,-1.00531e-05,57.75439072,-0.052582294,0.843539,0.519235134,2924,579,test\n3058A,119.2654,42.0352,20170601,35.10584958,1854,7330,1805833.105,1679047.887,524,0.749086797,53.66554642,279.657074,94727.9375,0.00063212,286.072876,-4.28521e-06,45.6945343,0.603431165,0.443848878,0.45236817,2621,1402,test\n2448A,114.3231,29.8211,20170601,40.85097493,3809,6540,1731833.984,149581.1843,68,0.788140476,274.3710632,289.8173218,100259.9688,0.002672547,174.2637329,-1.65103e-05,73.63240814,-0.785851002,-0.060030218,0.781045616,4231,1084,test\n1884A,104.6061,28.7867,20170601,50.48179272,3974,4985,877111.9907,-100981.5008,320,0.572576404,130.4493408,291.7028198,96819.89063,0.001211049,149.0327911,-1.32074e-05,71.98251343,0.435744047,-0.371444285,1.002220511,3216,692,test\n2235A,122.8444,45.6289,20170601,27.69308357,1279,7903,1942404.51,2172223.985,151,0.832130551,85.39241028,278.240509,99635.21094,0.000604783,285.396698,-7.5794e-06,48.43993378,0.829438388,0.066882282,0.341090202,2185,896,test\n1096A,111.551,40.7866,20170601,47.61559889,2054,6096,1264049.635,1409003.431,1061,0.732593179,162.3698578,280.0075989,87935.23438,0.000709469,169.8008575,-4.65631e-06,43.23674393,0.221939936,-0.698165774,0.399120927,2130,81,test\n1135A,126.685,45.7319,20170601,35.66852368,1263,8518,2197560.412,2265196.376,146,1.257589221,45.33588409,275.9059753,99723.54688,0.000729689,211.7245789,-6.93249e-06,61.67489624,0.894426882,0.884042501,0.416167617,1737,116,test\n1477A,104.148,35.94,20170601,27.50283286,2830,4912,755766.044,747988.3951,1773,1.285517573,230.1035919,281.2746887,81500.70313,0.000994183,220.7520905,-7.0712e-06,57.92592621,-0.986234665,0.824558377,0.318494707,2671,405,test\n3006A,117.1694,34.1781,20170601,63.68130312,3112,6995,1866251.431,711484.3095,37,1.079510212,241.1897583,287.5263367,101175.25,0.001677566,208.1490631,-1.31099e-05,63.01538467,-0.945872664,0.520256817,0.807475865,2875,1376,test\n1679A,116.4019,23.2536,20170601,29.83704735,4860,6872,2081733.081,-563662.5741,6,1.18530345,281.2310791,294.513916,100616.0781,0.002322017,298.2737732,-2.39391e-05,80.19814301,-1.162616491,-0.230796665,0.414222956,3275,515,test\n2869A,119.458,32.41361,20170601,47.77423823,3394,7361,2107329.738,551695.8844,9,1.059657574,258.0735779,288.150177,101613.5547,0.002596986,258.8884583,-1.91596e-05,69.06277466,-1.036774755,0.219025731,0.777674198,2566,1336,test\n1285A,119.315,26.0753,20170601,31.11871508,4408,7338,2279232.88,-179566.5619,12,0.680991769,315.185791,291.697113,100144.0938,0.00276312,281.7966003,-2.50081e-05,84.36978149,-0.480003417,-0.483059585,0.458785087,2518,240,test\n1743A,113.5158,37.85,20170601,48.72804533,2524,6411,1479459.56,1084236.684,1015,0.723758757,80.24599457,281.6029358,90565.72656,0.001122177,161.6535339,-4.48116e-06,61.67048264,0.713291228,0.122647464,0.57794106,4109,566,test\n2364A,114.9461,25.8481,20170601,45.10138889,4444,6639,1881334.154,-297993.9595,117,0.458803177,172.3521271,292.1966858,99348.36719,0.002012361,266.6590881,-1.68622e-05,75.7615509,0.061099965,-0.454716563,0.538053989,2460,1014,test\n2638A,109.7414,38.3344,20170601,28.8960114,2447,5807,1171631.979,1091382.133,1133,0.383485317,183.7398987,283.1827087,88786.9375,0.000751,253.1254883,-1.172e-05,48.24245453,-0.025013002,0.382668704,0.392663628,3193,1255,test\n1195A,120.288,31.6842,20170601,47.45224719,3511,7494,2199504.356,485369.1025,4,1.215592742,264.4580688,288.804657,101701.6016,0.001867623,302.5334473,-3.32198e-05,70.60146332,-1.209905744,0.117447242,0.735167563,2942,169,test\n1677A,116.7519,23.4714,20170601,30.35614525,4825,6928,2109693.098,-531613.8745,6,1.73174572,282.6190796,294.8141785,101162.0938,0.002144465,322.5917053,-4.62446e-05,80.42146301,-1.689933777,-0.378242075,0.394721866,2589,513,test\n1131A,126.979,45.5422,20170601,33.17847025,1293,8565,2224665.012,2249767.507,142,1.1245296,36.37899017,275.5332336,99554.6875,0.00081715,212.2166138,-6.81518e-06,64.67676544,0.666968286,0.905384004,0.432353258,1812,113,test\n2845A,113.1569,36.1912,20170601,65.63509749,2789,6353,1488088.014,881070.9673,1012,0.909381986,187.7304993,282.0431824,89917.63281,0.000921323,180.1275787,-5.60067e-06,61.40594864,-0.12232089,0.901117742,0.578655779,3159,1327,test\n1848A,113.1493,29.4251,20170601,49.36543909,3872,6352,1636503.272,83309.86833,37,1.007611513,309.510376,290.5125732,101102.1563,0.002437706,254.5217285,-3.35397e-05,71.39170837,-0.777424514,-0.641008675,0.797427177,3064,664,test\n2342A,117.3097,29.3864,20170601,26.33286119,3878,7018,2006821.842,155958.8225,81,1.134611726,307.8752747,290.5311584,100257.75,0.003100029,195.4864044,-1.38109e-05,72.14587402,-0.895650744,-0.696529627,0.601864398,5851,992,test\n2491A,111.9892,27.7044,20170601,35.07983193,4147,6166,1567977.679,-135798.6011,125,0.765988886,335.3491211,290.5322571,99668.17188,0.002289236,229.5262299,-1.21471e-05,74.40862274,-0.31954062,-0.696155727,0.776067197,3594,1126,test\n2650A,105.7281,34.5814,20170601,30.97740113,3047,5164,903709.6996,598041.899,1197,0.893477201,203.2091217,283.4786072,85615.88281,0.001330396,265.8504028,-7.22041e-06,63.82713318,-0.352099001,0.821174622,0.475265712,3997,1266,test\n1822A,114.286,36.11,20170601,68.70670391,2802,6534,1581387.201,889053.4432,85,0.613553762,56.90554428,287.4449158,100057.2031,0.000722854,184.6355591,-9.74848e-06,54.06504059,0.514008045,0.335028261,0.779776514,2139,640,test\n2578A,104.89,26.5939,20170601,39.54929577,4325,5030,928908.9376,-355465.4986,1852,0.785284102,234.9063568,284.8887329,81073.27344,0.002598977,237.7640533,-6.73521e-06,83.3825531,-0.642517209,0.451489449,0.533989727,4047,1204,test\n1999A,120.268,31.92,20170601,54.32535211,3473,7491,2190631.412,512193.2863,9,1.049233079,260.4625854,288.3274841,101629.9531,0.002059278,282.5405884,-2.27705e-05,70.63465881,-1.034723043,0.173891678,0.74609983,2348,798,test\n2865A,112.7194444,37.68277778,20170601,58.19134078,2551,6283,1420180.302,1052510.749,793,0.537938297,242.2893066,283.6765442,91833.28906,0.000783869,152.3018036,-6.46299e-06,51.56368637,-0.476232529,0.250160396,0.509984255,2490,1333,test\n2674A,100.2561,34.4714,20170601,27.10110803,3065,4289,444139.8556,547277.7565,3771,0.699670613,47.98114014,269.5961304,61971.53906,0.001650528,127.5365067,-1.17158e-06,68.28144836,0.519790888,0.46835497,0.097499505,2289,1288,test\n3051A,117.3916,39.1495,20170601,51.78892216,2316,7031,1748515.978,1302660.43,4,0.98868078,189.3351593,285.1841736,101665.2969,0.00080137,207.2237396,-2.1277e-05,50.41049957,-0.160368502,0.975587845,0.846681476,3151,1399,test\n1345A,113.235,23.1422,20170601,38.90947075,4877,6366,1779926.644,-638513.0766,10,0.784633756,269.2297974,295.0992737,101227.5625,0.003095145,241.3158112,-2.29249e-05,72.35305023,-0.784562409,0.010583142,0.556961715,2310,291,test\n1863A,110.2819,25.2697,20170601,39.11173184,4537,5893,1455969.817,-443706.6103,156,1.160073757,317.0359497,291.9952393,98086.71094,0.003143144,217.2765961,-1.29468e-05,75.39362335,-0.790695906,-0.848864615,0.599629104,2727,676,test\n2513A,106.6527,23.8844,20170601,41.93296089,4759,5312,1131138.35,-651103.2992,130,1.06463325,252.0052185,293.5493469,97678.6875,0.002787164,216.7257538,-9.95995e-06,80.80246735,-1.012544155,0.328935176,0.550092876,3188,1145,test\n1699A,111.9786,21.8586,20170601,30.71428571,5083,6165,1683977.545,-806139.3198,7,1.113238335,283.3474731,295.2257996,100886.5938,0.003165407,275.5071106,-2.15077e-05,79.97473907,-1.083181143,-0.256940007,0.481696308,2688,529,test\n1608A,120.8392,40.7514,20170601,38.0140056,2060,7582,1961124.198,1557346.662,16,0.899543226,61.09931183,282.8033752,100634.7656,0.000599508,386.2988892,-5.85177e-05,53.87037659,0.787499309,0.434767574,0.612552047,1889,456,test\n2662A,107.6364,35.7067,20170601,30.4902507,2867,5470,1046211.696,751923.5357,1402,0.427698076,191.6710968,283.2947998,87146.49219,0.000976939,216.7307129,-8.52506e-06,57.19116592,-0.086517856,0.418855935,0.465575278,2932,1278,test\n2227A,125.1358,42.8947,20170601,33.01549296,1717,8270,2198555.969,1899935.845,266,1.222893,41.14221573,277.7783813,97898.50781,0.001161611,275.5865479,-9.18489e-06,60.2246933,0.804558814,0.920951903,0.479208648,2510,888,test\n1906A,106.0789,30.8023,20170601,48.08472222,3652,5221,984124.0733,151032.9064,282,0.885013759,308.9163818,290.8631592,97536.82031,0.001389245,150.9994659,-1.20451e-05,75.01079559,-0.6886338,-0.555907249,0.868879318,2918,711,test\n2245A,130.261,47.2753,20170601,23.20251397,1016,9090,2368975.199,2526635.346,145,1.217135906,102.833168,273.7487183,99508.57031,0.000895055,215.3112335,-5.88906e-06,67.04514313,1.186747193,-0.27027896,0.354332983,1781,906,test\n1644A,121.3181,37.5436,20170601,26.89346591,2573,7659,2100029.809,1190136.475,19,0.77137351,31.06195641,284.9713135,101289.2578,0.000901973,399.734436,-4.88569e-05,64.1164856,0.397990972,0.660772502,0.610537529,2453,487,test\n2206A,105.724,38.8516,20170601,29.55477528,2364,5164,846984.5609,1112545.109,1666,0.346425951,254.4539948,282.5476074,84422.32813,0.000402444,265.7690125,-5.9628e-06,37.64739227,-0.333748609,0.092859104,0.337020218,1813,867,test\n1421A,106.634,29.4892,20170601,39.38022284,3862,5309,1051652.871,1675.519135,289,0.6522035,301.2843018,291.574707,97276.52344,0.001434643,126.1045761,-1.00443e-05,73.58778381,-0.557394862,-0.338644952,0.94690001,3081,355,test\n1854A,111.6975,28.9703,20170601,44.52442529,3945,6120,1516029.301,6965.260774,47,0.988335073,312.401001,290.4732056,101065.7109,0.002136488,238.1098022,-2.02849e-05,70.71951294,-0.729874909,-0.666399896,0.833501339,3302,669,test\n1264A,118.871,28.9404,20170601,32.40168539,3950,7267,2157297.522,137645.0605,70,1.053934216,294.7254639,290.714386,100159.4688,0.002581076,192.2047729,-1.069e-05,74.49195862,-0.957337976,-0.440773696,0.608933091,3210,220,test\n2456A,112.5328,26.9089,20170601,42.46991404,4275,6253,1634233.54,-219088.3619,60,0.991531253,344.8278809,291.9360657,100692.2422,0.002427358,262.2875366,-1.64002e-05,71.21987152,-0.259583861,-0.956948519,0.758978963,3715,1092,test\n2873A,120.0875,30.89556,20170601,39.35434174,3637,7462,2206226.21,389797.6738,4,1.074354529,268.1129456,289.2928772,101325.75,0.002172881,307.4073792,-5.2774e-05,71.95672607,-1.073770285,0.035426371,0.745548487,3083,1340,test\n1120A,125.287,43.91,20170601,31.19134078,1554,8294,2171509.168,2021822.145,221,1.341006994,44.61652374,277.7460938,99074.32813,0.001087155,266.0755005,-1.04008e-05,59.1226387,0.941845536,0.954581976,0.473524392,2157,102,test\n1950A,106.7096,39.1292,20170601,40.22740113,2319,5322,920454.3854,1155002.116,1092,0.276718527,122.3796692,284.5925903,88332.40625,0.000298734,304.23703,-7.34178e-06,34.87409973,0.233703107,-0.148175567,0.359870613,3127,753,test\n2185A,111.1297,37.5136,20170601,59.83844011,2578,6029,1297327.388,1010279.988,956,0.999191701,244.9355621,282.6859436,88736.80469,0.00097069,164.6408386,-6.20374e-06,50.83869553,-0.905085564,0.423325092,0.445770621,2233,849,test\n1292A,115.813,28.7442,20170601,28.46468927,3981,6778,1890275.792,52030.18965,41,1.152769208,351.081604,290.5980835,100129.1641,0.002541604,221.3071442,-2.04187e-05,71.81318665,-0.178810954,-1.138816714,0.66898936,3885,245,test\n2166A,112.44,39.3514,20170601,38.79971989,2284,6238,1362168.935,1248372.085,1098,1.253728628,71.7040863,279.5061646,88112.83594,0.000988894,173.3073425,-3.74035e-06,53.73200226,1.190335393,0.393620402,0.417336941,2086,833,test\n1168A,120.913,31.96,20170601,38.12824207,3466,7594,2244017.052,531372.8095,3,1.157897353,262.6371155,288.4204102,101700.0938,0.002062357,319.198822,-3.18529e-05,73.17723846,-1.148343444,0.148437008,0.704843402,3235,149,test\n2383A,117.9511,28.4622,20170601,39.12359551,4026,7120,2088804.627,62800.34902,85,0.839139521,308.0633545,291.2121277,99658.42188,0.0024366,145.0435333,-9.49502e-06,74.69206238,-0.660713494,-0.517313063,0.561583519,2492,1033,test\n1956A,86.1461,41.7511,20170601,53.63764045,1900,2031,-667879.9408,1450289.766,939,0.644579947,355.1481934,287.0762634,90649.39063,0.000191458,158.2389526,-1.13114e-05,37.72828674,-0.054575365,-0.642265379,0.261760652,1593,759,test\n3046A,115.9083,28.6064,20170601,29.79859155,4003,6793,1902242.438,37936.60086,28,1.410493016,342.1771851,291.3531494,101458.0547,0.002571589,237.2083588,-2.45144e-05,70.93387604,-0.431827575,-1.342764139,0.670610487,2771,1397,test\n1307A,120.6659,36.2403,20170601,25.74107143,2782,7555,2090013.058,1023660.43,45,0.598014295,180.4764404,285.2951355,99714.1875,0.000898823,413.3325806,-7.9533e-05,67.41822815,-0.004973119,0.597993612,0.633653462,4004,259,test\n1293A,115.973,28.6969,20170601,37.09444444,3989,6804,1905772.09,49651.3553,17,1.322411656,347.6565552,291.2492371,101475.1172,0.002669514,240.5954895,-2.73618e-05,71.11805725,-0.282805026,-1.291818023,0.660606265,1725,246,test\n2213A,123.15,41.2553,20170601,28.93661972,1979,7952,2114489.313,1664537.52,24,1.044148564,188.657486,281.07724,100955.6484,0.001033832,265.7355347,-8.91004e-06,52.25619507,-0.157168552,1.032252073,0.573555589,2610,874,test\n2897A,123.2444,41.7347,20170601,32.5238764,1903,7967,2104767.196,1722779.639,34,0.788231492,12.66122723,280.8995361,101284.9375,0.001077872,282.7331238,-8.89832e-06,49.49466705,0.172764525,0.769065261,0.576362431,2901,1352,test\n2473A,113.0116,25.8226,20170601,43.44583333,4448,6330,1701574.096,-336191.3023,174,0.262275696,337.5553589,291.3356018,98474.34375,0.002023876,225.9036102,-1.08712e-05,76.07247925,-0.100154154,-0.242399856,0.677723706,4148,1109,test\n1033A,114.5330556,38.01777778,20170601,68.20833333,2497,6573,1555668.21,1119961.435,72,0.688386977,32.56216049,286.0679932,100526.4922,0.000986558,132.7654266,-9.04454e-06,51.11368561,0.370489955,0.580184281,0.831135094,2525,23,test\n2284A,116.7844,33.9461,20170601,55.20448179,3149,6933,1840522.036,676982.2799,32,1.079333901,245.0466309,287.716156,101268.2188,0.001838218,203.6351166,-1.24638e-05,63.10512161,-0.978564322,0.455382824,0.814001501,3018,941,test\n1891A,101.7453,26.5017,20170601,31.86768802,4340,4527,634860.3618,-391267.3535,1182,0.380367815,215.170166,293.0507202,85408.625,0.00235102,177.7971191,-4.22998e-06,59.91336441,-0.219088778,0.310933739,0.251470685,4745,699,test\n1085A,112.5583,37.7394,20170601,58.13936782,2542,6257,1406180.472,1056962.193,773,0.233418897,344.4013062,283.4790344,91541.60156,0.000926575,138.4499817,-6.31353e-06,51.36520004,-0.062784836,-0.224816471,0.519560695,2969,70,test\n1303A,117.0684,36.6868,20170601,56.59705882,2710,6979,1790370.917,1005137.897,39,1.220882297,209.9672241,286.3095398,100541.1875,0.001062584,192.1914215,-1.1551e-05,56.22574234,-0.609819829,1.057673573,0.817932367,2109,255,test\n1779A,123.9305,47.3636,20170601,28.63649025,1002,8077,1954309.116,2397572.868,148,0.835941911,87.43138123,276.2744751,99684.47656,0.000591043,265.0334473,-1.42837e-05,54.6150856,0.835100353,0.037501004,0.287700415,2288,599,test\n1274A,117.25,31.8572,20170601,49.77871148,3483,7008,1935470.017,441527.6054,29,1.03785038,257.8066101,288.8024292,101371.8828,0.002232113,241.2009735,-1.64577e-05,67.68803406,-1.0144279,0.219247267,0.798512936,2799,230,test\n2594A,99.1678,25.1081,20170601,27.45338983,4563,4115,399368.3863,-567528.9573,1663,0.758282125,31.95875931,288.0348206,80014.91406,0.002351345,96.16580963,-3.11304e-06,66.56684875,0.40135482,0.64335537,0.233318731,3311,1215,test\n1095A,111.7277,40.8062,20170601,31.32590529,2051,6124,1277009.198,1413648.174,1054,0.553308249,174.0455322,280.4075317,88840.03125,0.000671471,174.2926178,-4.5613e-06,43.03878403,0.0574481,-0.550317824,0.401169062,2271,80,test\n1742A,113.5689,37.8694,20170601,54.83193277,2521,6419,1483208.897,1087353.179,691,0.751902997,79.04614258,282.0428467,91645.79688,0.001107621,158.2690582,-4.65268e-06,61.55775452,0.738197923,0.142905459,0.594920456,2677,565,test\n2466A,111.4328,27.2272,20170601,46.85070423,4224,6077,1526465.2,-199926.4068,236,0.996133149,301.1107178,290.3303833,98547.32813,0.002102709,230.8039703,-1.13237e-05,75.49783325,-0.852891862,-0.514642358,0.751137912,3112,1102,test\n1824A,114.3389,34.7781,20170601,58.12853107,3016,6542,1617146.777,732039.8572,73,0.693052649,226.9611206,287.9394836,100766.4453,0.001248911,213.8705139,-1.29963e-05,58.29756165,-0.506534278,0.473016888,0.858763814,2447,641,test\n1781A,123.9483,47.3227,20170601,29.87815126,1008,8080,1956931.799,2393131.241,149,0.823303163,86.40278625,276.4429932,99683.59375,0.000592894,265.4508057,-1.44941e-05,54.6813736,0.821678758,0.051692162,0.287535667,2019,601,test\n2493A,109.7325,28.3169,20170601,40.78011204,4049,5805,1350591.426,-97990.11265,230,0.748540521,288.3500061,289.4301453,97731.55469,0.003589657,230.2562256,-1.15377e-05,76.82450104,-0.71049118,-0.235616714,0.748874843,4368,1128,test\n1196A,119.996,31.7586,20170601,46.04481793,3499,7447,2172421.798,487478.4431,4,1.1553303,261.3725586,288.692749,101678.125,0.001914978,282.2326965,-2.48103e-05,69.73713684,-1.14225018,0.173357278,0.752935469,2368,170,test\n1458A,91.0874,29.6475,20170601,10.2880117,3836,2822,-353664.8254,-34828.00174,3649,0.261772275,13.31741142,279.1650696,60833.72266,0.00110792,338.9909668,-4.74075e-06,38.79095459,0.060296275,0.254733354,0.105149671,1514,386,test\n1342A,112.9844,28.1178,20170601,41.61516854,4081,6325,1649954.817,-71519.6784,90,0.829354167,350.1261597,290.9384155,100642.4297,0.002617801,237.7223816,-1.73406e-05,72.31246948,-0.142288372,-0.817057133,0.784308195,2717,288,test\n3018A,111.505,36.10139,20170601,74.34078212,2804,6089,1355861.371,846459.3347,435,0.423889518,83.7609024,285.8188782,94663.20313,0.000892191,139.9090881,-6.40413e-06,53.34920883,0.421376854,0.046085536,0.53830272,2519,1383,test\n2664A,104.6169,35.5975,20170601,29.16155989,2884,4987,798432.0064,710456.2565,1957,0.966579437,216.0372925,279.9670105,79546.78906,0.000823755,245.8132629,-6.49199e-06,60.61266708,-0.568635523,0.781619787,0.318248868,2464,1280,test\n1825A,114.3733,34.7975,20170601,57.65870787,3012,6548,1619527.496,734901.854,73,0.695344865,226.9511261,287.9491272,100786.3906,0.001236842,213.359024,-1.35334e-05,58.28215408,-0.508126855,0.474669933,0.859253407,2455,642,test\n3059A,117.7181,36.2092,20170601,56.48314607,2787,7083,1855411.288,960821.061,203,0.7008003,230.3683472,285.2442322,98891.0,0.000980818,199.8552704,-8.08416e-06,62.87316513,-0.539717495,0.4470191,0.768513918,2865,1403,test\n2601A,100.98,22.7633,20170601,18.6408046,4938,4405,589372.3158,-829944.7863,1333,0.905670404,205.871109,291.3075867,86133.14844,0.003571338,127.7452469,-6.48283e-06,77.40776062,-0.395176619,0.814907491,0.288197458,3813,1222,test\n1286A,118.1569444,24.81805556,20170601,24.03812317,4609,7153,2207017.741,-348510.3697,197,0.741103709,319.5954895,292.3213806,98418.89063,0.002630952,254.0848694,-1.9887e-05,79.57509613,-0.480409026,-0.564306498,0.393619299,6376,241,test\n2450A,114.3372,29.8686,20170601,44.10504202,3801,6542,1731978.061,155363.401,50,0.828320146,277.6859131,290.0399475,100797.1797,0.00253244,177.7349548,-1.82548e-05,72.78105927,-0.820884228,-0.110740386,0.76483655,3090,1086,test\n1200A,119.935,31.7039,20170601,43.56005587,3507,7438,2168876.566,479800.8627,5,1.183915377,261.4901123,288.6828613,101629.7188,0.001872173,288.6053467,-3.31543e-05,69.73280334,-1.170873523,0.175245017,0.748586833,3139,171,test\n1803A,115.9872,29.6816,20170601,44.49293785,3831,6806,1882307.46,163967.2949,38,0.864065349,304.9067383,289.9586792,100302.0625,0.003186206,234.2413025,-3.25768e-05,74.90136719,-0.708638489,-0.494409174,0.706738114,2679,623,test\n1361A,114.24,22.7267,20170601,26.57660167,4944,6526,1886131.964,-666852.0938,45,1.141771674,264.5367432,294.7447815,100487.3672,0.003008291,269.5958862,-3.18209e-05,80.18016052,-1.136580348,0.108754911,0.501216829,4447,304,test\n1070A,116.7464,39.5343,20170601,46.71830986,2255,6927,1688676.496,1337096.298,15,0.685273647,2.063803434,285.3218994,101502.4609,0.001052768,189.2041473,-9.0666e-06,46.73443604,0.024677454,0.684829175,0.876384199,2900,56,test\n1318A,113.675,34.8019,20170601,66.82162921,3012,6436,1561770.203,724118.4702,92,0.681568027,212.8955078,288.315094,100687.7656,0.001004856,215.3556671,-1.32565e-05,58.04828262,-0.370155871,0.572293282,0.852751851,2261,265,test\n1426A,106.468,29.4892,20170601,36.48189415,3862,5283,1036716.03,-88.54081316,318,0.690676987,314.3849487,291.7139282,97527.32813,0.00140813,133.5908356,-1.12766e-05,73.07865906,-0.49363032,-0.483077407,0.967462063,3113,358,test\n1008A,116.72,40.1438,20170601,51.04366197,2157,6923,1670359.51,1409179.402,32,0.316639096,281.3189392,284.2118835,100659.0703,0.001038028,138.4461365,-7.09797e-06,46.57427216,-0.310483634,-0.06213069,0.804893494,3137,7,test\n1461A,91.0834,29.6292,20170601,11.04373178,3839,2821,-354112.7614,-36984.10805,3653,0.274957746,12.28662682,279.4502563,61081.3125,0.001104194,342.6440125,-4.87271e-06,38.59047318,0.058510013,0.268660277,0.086122155,956,389,test\n2914A,106.7513889,31.87888889,20170601,31.05857143,3479,5328,1028245.886,285604.8766,467,0.880945444,328.3469238,289.2779236,94902.54688,0.001958027,117.5090942,-7.85674e-06,72.56833649,-0.462355405,-0.749861538,0.682826221,4378,1356,test\n2310A,116.5661,31.7712,20170601,47.88194444,3497,6899,1879192.527,418221.687,52,0.945687771,249.4944763,288.4835205,101149.4922,0.001963766,183.1430206,-1.24914e-05,68.38280487,-0.885755658,0.331303954,0.791014135,3065,966,test\n1913A,106.8906,27.6486,20170601,24.83472222,4156,5350,1101005.373,-211565.8519,873,1.177000761,269.7781067,288.2180176,90586.25781,0.001880351,244.8582306,-1.07223e-05,77.79264069,-1.17699182,0.004612549,0.709870279,3028,718,test\n1589A,109.8654,40.6288,20170601,45.84322034,2079,5826,1139260.093,1369360.745,1055,0.656205893,343.5179443,281.7881775,89330.53125,0.000412402,181.5717621,-6.33687e-06,39.37115097,-0.186228156,-0.62922591,0.411966741,2013,438,test\n2225A,124.3711,43.1594,20170601,48.26264045,1675,8147,2134916.69,1914010.982,172,1.228613615,24.84180641,278.601593,99548.76563,0.001135458,290.3252258,-9.39883e-06,56.01652145,0.516143918,1.114938021,0.481749922,2130,886,test\n1268A,119.93,28.4586,20170601,27.13091922,4027,7437,2265290.369,106233.8849,56,0.530605733,262.1140137,290.0856323,98621.6875,0.002333659,223.0967102,-7.89922e-06,76.66146851,-0.525584757,0.072822481,0.590718508,3156,224,test\n2362A,114.9064,25.9118,20170601,42.14366197,4434,6633,1876142.04,-291455.7268,126,0.506054461,167.2737427,292.229187,99372.5,0.002026861,269.9758606,-1.74112e-05,75.58555603,0.111523032,-0.493612945,0.537011623,4888,1012,test\n1936A,107.2058,34.3497,20170601,49.42896936,3084,5401,1031046.47,584848.4974,578,0.325266272,8.818524361,285.3563232,91202.61719,0.001570077,103.2266083,-3.94232e-06,66.92357635,0.049863648,0.321421474,0.549201846,3048,740,test\n1467A,108.883,34.2303,20170601,67.22881356,3103,5669,1173862.049,589406.4973,406,0.703688323,0.094875589,286.4391174,95156.85156,0.001337782,85.16716003,-6.98226e-06,64.55342865,0.001159314,0.70368737,0.621122956,2391,395,test\n2624A,91.7608,29.2313,20170601,8.361031519,3903,2930,-294446.8563,-86384.11584,3591,0.68668288,216.2489014,279.0968018,61529.78125,0.001535424,320.7613525,-7.45727e-06,46.17853546,-0.406021237,0.553787112,0.089234129,2015,1243,test\n1304A,116.943,36.6489,20170601,62.66091954,2716,6959,1781385.103,998379.1373,38,1.207132816,213.0199127,286.4356689,100756.4219,0.001068765,193.5187988,-1.2201e-05,55.91096497,-0.657786191,1.01216948,0.819606364,2426,256,test\n2346A,117.2461,29.2956,20170601,34.24792244,3893,7007,2003615.835,144170.0643,51,1.123164058,309.2003174,290.6253967,100323.4453,0.003044909,199.0952759,-1.44194e-05,70.67519379,-0.870432794,-0.709819794,0.629918754,3372,996,test\n1188A,120.269,31.4867,20170601,39.27620397,3542,7491,2203891.366,462118.0973,4,1.739105701,264.594696,289.5806274,101519.4922,0.001781077,346.1542664,-6.68735e-05,70.07304382,-1.731365085,0.163900241,0.741462946,4727,162,test\n1267A,119.914,28.4514,20170601,28.95391061,4028,7434,2264081.254,105041.4525,61,0.521767139,262.8431396,290.1302185,98728.85156,0.00237556,220.1003876,-7.907e-06,76.57558441,-0.517699182,0.065026999,0.604331017,3919,223,test\n3057A,121.5992,37.4014,20170601,26.3627451,2596,7704,2126530.167,1179535.82,17,0.683009624,39.34734344,284.9398499,101258.0547,0.000932878,396.5309143,-4.48854e-05,65.79862976,0.433031112,0.528191447,0.596742988,2363,1401,test\n1428A,106.452,29.709,20170601,32.58450704,3827,5280,1032242.655,25652.63221,233,0.739265501,318.6140442,291.6680908,97500.80469,0.001485209,131.8697968,-1.0647e-05,73.40904999,-0.488788754,-0.554616153,0.952594519,4702,360,test\n1493A,87.5525,43.8711,20170601,61.29261364,1561,2256,-542360.4975,1700275.501,754,0.671163023,12.81330967,282.8711548,92034.125,0.000407183,151.4837494,-1.01446e-05,48.15284729,0.148842931,0.654450595,0.242967978,2071,417,test\n2189A,122.2603,43.6267,20170601,21.67696629,1600,7810,1969927.288,1924798.079,178,0.935547531,45.03133392,279.7679443,99447.55469,0.00067176,325.7674255,-5.83928e-06,46.80221558,0.661878347,0.661185503,0.41636768,2016,853,test\n1366A,114.085,22.75,20170601,34.49715909,4940,6502,1870610.812,-667179.3382,36,1.1803087,259.8186951,294.8808899,100657.0625,0.003093733,270.5914001,-3.14045e-05,78.18308258,-1.161714196,0.208683491,0.508110762,4304,306,test\n2409A,115.6558,34.429,20170601,55.75,3071,6753,1734478.797,713268.5472,50,0.887304604,233.1862793,287.9137573,101085.3359,0.001305927,200.6802826,-1.10247e-05,60.59967422,-0.710350692,0.531706035,0.84527421,2306,1056,test\n1785A,129.6115,44.5782,20170601,22.02089136,1448,8986,2441233.949,2200821.496,234,0.989310861,58.80412292,275.4117432,97642.53125,0.000865467,279.347168,-6.52603e-06,67.0668869,0.846242487,0.51245451,0.391554326,1539,605,test\n1005A,116.473,39.9716,20170601,53.18907563,2185,6884,1656224.681,1384491.842,40,0.186894715,64.81201172,284.5065613,100880.1797,0.00101927,130.5205994,-6.75659e-06,44.79011917,0.169121414,0.079546101,0.873232245,3296,4,test\n1054A,115.4612,38.8416,20170601,57.22093023,2365,6722,1607818.668,1233073.103,21,0.444795907,51.28313446,285.6244507,101154.9141,0.000993803,128.6222076,-8.06088e-06,46.9811821,0.347043008,0.27821672,0.876563072,2389,42,test\n2495A,111.2897,23.4792,20170601,35.94598338,4823,6054,1585463.226,-633460.9028,44,0.956192017,298.736145,294.4013062,100228.6016,0.003019675,180.5093079,-1.79777e-05,77.07028961,-0.838458478,-0.45966354,0.557651222,3060,1130,test\n1333A,114.2131,30.6414,20170601,48.2254902,3677,6522,1703143.119,243365.6039,21,1.095896959,302.197998,289.9346008,101242.5938,0.002556101,208.6443787,-2.91134e-05,68.5973587,-0.927397788,-0.583886564,0.804320514,2857,279,test\n2702A,79.9117,37.1013,20170601,131.0946328,2644,1034,-1221904.543,947507.8567,1391,0.656262577,284.3878174,288.3294678,84944.5625,0.000147042,351.0545959,-1.13484e-05,27.7211132,-0.635688305,-0.163036764,0.25891009,2997,1315,test\n1885A,104.6417,28.76389,20170601,46.44150418,3978,4991,880616.5383,-103349.0838,301,0.551851332,133.8452301,291.6606445,96746.3125,0.001200382,150.9474335,-1.34452e-05,72.05448914,0.398029149,-0.382246912,1.003585696,2720,693,test\n1619A,118.2939,35.0622,20170601,41.16340782,2970,7175,1934137.156,837013.5356,69,0.66381824,241.6122437,286.4294128,100814.9297,0.001178699,207.7281342,-1.27008e-05,62.91082382,-0.583984137,0.315621823,0.750642538,1981,465,test\n2706A,82.9994,46.7432,20170601,18.03333333,1101,1528,-829714.6301,2082471.189,551,1.0137465,176.2288818,282.2819214,94120.75781,0.000601377,235.9192505,-1.85105e-05,49.90005875,0.066768318,-1.01154542,0.160028219,2001,1319,test\n2070A,114.6369,33.6406,20170601,53.37290503,3198,6590,1668938.278,602683.5832,51,0.739221036,235.8690338,288.1241455,101059.7109,0.001560205,198.2514496,-1.24174e-05,62.544384,-0.611883581,0.414784551,0.870157361,2970,824,test\n1963A,120.61,36.44,20170601,31.77478754,2750,7546,2079331.135,1045845.212,75,0.481741548,185.6659241,285.1216125,101136.9844,0.00105534,307.5242004,-3.86657e-05,66.06706238,-0.04755991,0.479388118,0.604243159,3985,765,test\n1995A,121.115,31.453,20170601,37.25837989,3548,7626,2277018.111,477519.3662,6,1.148671865,265.252594,288.8684692,101664.4766,0.001869651,328.8388977,-2.55006e-05,74.20243073,-1.144726872,0.095117867,0.694634199,2673,794,test\n1291A,115.8886,28.6839,20170601,31.19067797,3991,6790,1898543.401,46514.54379,29,1.287086129,346.6752625,291.0464783,101076.75,0.002599293,232.4456635,-2.372e-05,71.28962708,-0.296741784,-1.252411604,0.674262524,1599,244,test\n1728A,113.0972,36.1939,20170601,67.90720222,2789,6344,1483190.84,880489.7113,929,0.92394352,186.3601074,282.2337036,90377.16406,0.000930865,178.9786987,-5.68634e-06,61.25635529,-0.102349192,0.918257236,0.596491933,2285,553,test\n1690A,116.1278,24.3289,20170601,23.67318436,4687,6828,2028900.049,-447698.4233,113,0.257462442,284.8291931,294.0529785,99295.8125,0.001944559,188.3181458,-1.22597e-05,73.48175812,-0.248890728,-0.065881118,0.459909528,4205,523,test\n1422A,106.364,29.4822,20170601,41.16714286,3863,5266,1027452.329,-2005.77718,309,0.73490113,320.5494385,291.6544189,97391.25781,0.001387973,136.2640686,-1.12239e-05,73.23698425,-0.467006087,-0.567437232,0.974527836,4194,356,test\n1597A,122.2703,40.7094,20170601,32.92200557,2067,7811,2068419.17,1581747.624,1,0.813787699,184.0701294,282.5514221,101529.9844,0.000818763,316.4767151,-3.50889e-05,52.75950623,-0.057758771,0.811735392,0.601274729,1474,446,test\n2528A,105.68,30.6133,20170601,41.39944134,3682,5157,951275.4772,124722.5944,346,1.066163421,305.3616943,290.9446411,97196.02344,0.001224935,160.1657715,-1.13824e-05,73.5326004,-0.869512081,-0.616970897,0.907170057,4989,1160,test\n1354A,113.281,23.1569,20170601,35.75487465,4875,6373,1784050.705,-636009.7075,42,0.777210414,268.8037109,295.0168762,101114.3594,0.003184943,239.5456848,-2.28666e-05,72.6390152,-0.777040243,0.016261788,0.557862937,3589,299,test\n1169A,120.86,32.0005,20170601,37.98735955,3460,7586,2238273.183,534842.8767,5,1.13609612,262.4923401,288.3467407,101696.8594,0.002078181,314.2708435,-2.91968e-05,72.95754242,-1.126350522,0.148488939,0.706392765,2744,150,test\n1083A,112.434,38.0108,20170601,50.17329545,2498,6237,1390508.729,1087657.99,887,0.559365928,97.60449219,281.4598694,89016.79688,0.001351818,152.6072235,-4.84214e-06,54.33678055,0.554450095,-0.073995315,0.481554806,4129,68,test\n2994A,119.6533,29.1128,20170601,35.30779944,3922,7393,2221461.613,174875.0953,52,0.81883359,278.5924072,290.4902039,99732.0,0.002359398,218.8130646,-1.2625e-05,71.81649017,-0.809649348,-0.122296244,0.620717108,2714,1368,test\n2347A,114.0944,27.4948,20170601,22.06590258,4181,6503,1764724.831,-124369.6582,397,0.58000946,261.7337646,289.4288025,94675.32031,0.004073772,141.7137451,-9.08755e-06,79.05051422,-0.573980033,0.08341372,0.664875269,6254,997,test\n2687A,89.1673,42.9559,20170601,68.71764706,1707,2515,-431571.0087,1580428.02,47,0.509785056,129.21698,290.5697632,98458.85938,4.60207e-05,164.8608398,-3.89935e-06,26.61513329,0.394981056,-0.322289854,0.213779852,2662,1301,test\n2923A,113.2803,40.1114,20170601,39.94444444,2162,6373,1409915.802,1351386.236,1066,1.068640947,97.47382355,279.865509,88290.4375,0.000901711,173.092041,-4.93209e-06,46.59411621,1.05956912,-0.138948515,0.447961628,1994,1363,test\n1518A,113.095,27.8867,20170601,42.7122905,4118,6343,1664979.423,-96459.087,65,0.825519085,349.2688599,291.1448364,100534.1484,0.002680005,229.6220856,-1.72086e-05,72.48356628,-0.153782904,-0.811068833,0.771825373,3373,426,test\n2655A,100.4497,38.9389,20170601,27.20277778,2350,4320,430464.1121,1088851.058,1478,0.86799401,14.07009315,282.2464905,83903.40625,0.000372754,106.0350342,-4.13879e-06,37.64964676,0.211010829,0.841954887,0.220015913,1846,1271,test\n2459A,112.6197,26.8733,20170601,47.85070423,4280,6267,1642992.459,-221753.6306,66,0.978028238,343.2598877,291.9150391,100538.8906,0.002341966,260.6753235,-1.73289e-05,71.1341095,-0.281781316,-0.936556756,0.740932405,2967,1095,test\n2710A,86.0697,44.3075,20170601,63.06545961,1491,2019,-645218.6934,1762525.822,480,0.701237559,40.87155533,284.4746399,96218.4375,0.000355741,184.6402588,-9.93827e-06,49.84248352,0.458854496,0.530270398,0.247823164,2399,1323,test\n2652A,102.6219,37.9311,20170601,36.92837079,2511,4667,611250.3971,978005.3236,1538,0.815663576,50.51007843,281.8594055,82612.67188,0.000487283,148.7010956,-4.6404e-06,38.61241913,0.629463792,0.518731475,0.244492665,2267,1268,test\n1296A,115.742,28.7994,20170601,27.25360231,3972,6767,1882555.16,57052.94511,188,1.03218329,356.8309937,290.350647,99583.74219,0.002482573,211.6692505,-1.74474e-05,72.27113342,-0.057154361,-1.030599713,0.664389729,6557,249,test\n2163A,112.8664,35.4894,20170601,56.08169014,2902,6307,1479897.967,793200.7394,726,0.483200043,261.715271,284.2384949,92617.13281,0.001016469,170.1770172,-6.18311e-06,59.89573288,-0.47815454,0.069645554,0.665664554,2519,830,test\n2693A,82.0485,44.9079,20170601,20.61699164,1395,1376,-924659.7667,1867798.154,525,0.507968545,146.4760742,283.2757568,94296.21875,0.00064731,181.5914612,-1.23561e-05,55.07424164,0.280575454,-0.423449486,0.223066106,2439,1307,test\n1590A,110.0377,40.5546,20170601,42.96829971,2091,5854,1153743.546,1362414.768,1008,0.507119,345.7775879,281.8840637,89369.34375,0.000454378,185.3095093,-7.00448e-06,39.69287491,-0.124634251,-0.49156484,0.418643057,1884,439,test\n2325A,117.6353,26.2708,20170601,26.2752809,4377,7070,2119456.014,-194920.9994,221,0.433126122,271.9342957,291.5101318,95815.0,0.002298447,122.7386703,-8.68529e-06,74.88137054,-0.432880014,-0.014599091,0.449076295,3702,978,test\n2167A,112.4549,39.3606,20170601,36.20538244,2282,6241,1363122.309,1249682.388,1101,1.263934135,73.78655243,279.526947,88128.86719,0.000975647,173.5114136,-3.72637e-06,53.46703339,1.213651776,0.352957249,0.421209037,2641,834,test\n1398A,112.471,23.0528,20170601,38.88826816,4892,6243,1707983.708,-662229.4579,10,0.720156848,271.6866455,294.6395264,100205.9688,0.002944014,220.5185242,-1.52215e-05,76.10688782,-0.719845831,-0.02116262,0.558288634,1464,336,test\n1621A,118.4023,35.0896,20170601,47.18435754,2966,7192,1942186.841,842367.2284,66,0.701261699,242.7005157,286.369873,100884.3359,0.001143498,209.2429352,-1.21448e-05,63.32729721,-0.6231457,0.321647912,0.751848996,2454,467,test\n1769A,121.2008,41.1219,20170601,31.9719888,2001,7640,1975992.091,1608279.215,16,0.765205562,49.74586487,282.3079224,101010.5625,0.000665039,342.2581787,-3.15717e-05,52.36695099,0.583981395,0.494474769,0.596599877,2820,590,test\n1161A,120.628,31.2864,20170601,41.43156425,3574,7548,2240662.824,447114.317,7,1.441110253,270.0965271,289.2358093,101578.2109,0.001763128,328.2744446,-5.02552e-05,72.25830078,-1.441108346,-0.002361435,0.723933101,2363,142,test\n2370A,115.0075,27.0983,20170601,52.13370474,4244,6649,1857404.516,-153264.8477,57,0.843191803,323.3169556,292.3804321,100636.8516,0.002053568,258.3811951,-1.74726e-05,70.80789948,-0.503762364,-0.676162601,0.623462617,2891,1020,test\n1043A,119.7624,40.0181,20170601,27.50418994,2177,7410,1903496.867,1449599.41,33,0.651797354,115.4212189,283.00354,101085.8047,0.000714438,261.8578186,-3.80611e-05,58.62321472,0.588704646,-0.279761702,0.663945794,2835,32,test\n1685A,110.4558,21.2567,20170601,25.92837079,5179,5921,1545062.979,-899235.8645,6,1.857905626,258.0644226,295.9324951,101128.1875,0.003109846,320.9769592,-1.92166e-05,81.33553314,-1.817723632,0.384310037,0.460234612,3938,518,test\n2256A,130.3961,46.8267,20170601,31.34682081,1088,9111,2397035.374,2478450.47,78,1.299665689,55.59780884,274.7007751,100108.9375,0.00075057,218.2768707,-8.74929e-06,64.94659424,1.072322607,0.734339833,0.364023894,1857,917,test\n2374A,114.3703,27.7914,20170601,50.81476323,4133,6547,1783051.47,-85114.99596,104,0.668355703,269.5732422,291.1007996,100261.7734,0.003764055,163.4533081,-9.94686e-06,77.55700684,-0.668336928,0.005008882,0.689736247,3768,1024,test\n2201A,121.9462,46.0756,20170601,9.045961003,1208,7759,1866523.407,2207459.456,299,1.374847412,104.7194138,276.8456421,97493.125,0.000766129,296.1846313,-6.48687e-06,52.33117676,1.329746127,-0.349257469,0.283757746,3054,862,test\n1715A,102.5778,24.3694,20170601,17.84818942,4681,4660,732243.8087,-633716.8712,1683,1.344697118,0.650136769,288.7161255,81393.97656,0.002282492,265.4284363,-1.11814e-05,71.266922,0.015253415,1.344610572,0.284979969,4102,543,test\n1378A,112.863,23.1886,20170601,38.29305556,4870,6306,1743051.416,-639910.8919,23,0.573706508,279.8635559,295.0332336,101246.8203,0.003165651,228.8575134,-2.1828e-05,72.26731873,-0.565231323,-0.098248176,0.568219483,3663,316,test\n2679A,106.196,37.9723,20170601,31.52752294,2505,5239,896269.0845,1010411.992,1130,0.392440766,184.1256714,285.2640381,88515.76563,0.000374951,279.3349304,-9.56553e-06,37.867836,-0.028232798,0.391423881,0.372224063,2864,1293,test\n2443A,113.9153,30.9285,20170601,42.16432584,3632,6474,1670527.787,271828.629,31,1.026959658,300.9306335,289.3096008,101195.2734,0.002431046,198.7042694,-1.6695e-05,68.71648407,-0.880948722,-0.527802587,0.800049007,3431,1080,test\n1047A,114.5129,36.61763,20170601,72.55013928,2721,6570,1587617.056,953010.0448,57,0.517950594,33.63252258,287.1910095,100660.4609,0.000737673,187.0337219,-9.77042e-06,52.61444092,0.286866874,0.431254238,0.808477104,2444,35,test\n1818A,114.483,36.061,20170601,60.56695157,2810,6565,1598497.842,886424.4719,63,0.532841861,16.01104927,287.8005676,100718.8203,0.000720889,204.5107117,-1.03025e-05,53.10264969,0.146965787,0.512173355,0.810954034,4582,637,test\n2597A,103.7225,27.3361,20170601,22.50840336,4206,4844,811829.8525,-279000.1643,1921,0.988420248,305.135376,284.5687256,80641.46094,0.001903543,171.4781494,-6.23521e-06,80.66107178,-0.808361411,-0.568793833,0.481885672,2942,1218,test\n1709A,116.3242,23.5486,20170601,32.28,4812,6860,2066947.195,-531983.3618,6,0.560389459,259.8047485,294.1719666,100519.0156,0.002483285,190.9488068,-1.40494e-05,79.04416656,-0.551536977,0.099213406,0.436569273,2131,537,test\n1890A,101.7169,26.585,20170601,32.77222222,4326,4523,631524.2458,-381703.8194,1127,0.233383134,238.9780121,292.8516541,84935.07813,0.002156427,179.965744,-4.17589e-06,60.29755783,-0.199998602,0.120284021,0.280255914,4058,698,test\n2492A,109.6414,28.2558,20170601,32.74358974,4059,5791,1343373.269,-106374.5205,293,0.732493699,285.2645874,289.1526794,96839.07031,0.003487726,229.2196503,-1.13689e-05,77.95145416,-0.706661999,-0.192810401,0.74516511,5910,1127,test\n1253A,120.726,30.7478,20170601,43.09888579,3660,7564,2265663.102,387299.9193,7,1.16454649,274.3938599,289.243927,101594.2266,0.002181931,293.5216064,-2.12615e-05,72.84377289,-1.161128163,-0.089162312,0.690496504,3183,214,test\n1019A,117.1837,39.2133,20170601,50.36938202,2306,6997,1730819.413,1306554.085,4,0.993955493,187.8487396,285.393158,101661.0234,0.000790286,198.542923,-1.63274e-05,48.99599457,-0.135728583,0.984644711,0.8648597,2504,15,test\n1873A,109.4221,24.299,20170601,37.98179272,4692,5756,1391184.451,-567864.2424,102,0.42661804,339.6827698,293.6799927,99988.05469,0.003582781,270.4307251,-1.98839e-05,76.11131287,-0.148162261,-0.400063634,0.577699184,3181,683,test\n2236A,122.8211,45.6175,20170601,18.97067039,1281,7899,1941213.222,2170421.749,152,0.830276847,86.15685272,278.2516785,99615.13281,0.000605321,286.6825256,-7.50184e-06,48.39455414,0.828407288,0.055686295,0.331344694,2036,897,test\n1755A,123.81,41.8469,20170601,40.69088319,1885,8058,2141747.097,1748149.867,87,0.878900826,184.9146118,280.2966919,100380.3125,0.001143382,271.5030823,-9.0348e-06,54.2951088,-0.075293928,0.875669718,0.547599912,2618,577,test\n1723A,113.2994,40.0758,20170601,36.50283286,2168,6376,1412176.251,1347391.396,1044,1.037079215,92.7870636,280.2149658,88793.95313,0.000879601,169.8482971,-5.01817e-06,46.33763123,1.035854936,-0.050377745,0.460584641,1695,548,test\n1726A,113.2711,40.0844,20170601,37.62215909,2167,6371,1409823.557,1348016.301,1059,1.117697477,94.34470367,279.9786072,88437.00781,0.000913198,171.1439209,-4.99299e-06,46.54786682,1.114489675,-0.084618978,0.444447666,1961,551,test\n1220A,118.293,33.9528,20170601,55.33664773,3148,7175,1965474.308,706985.584,23,1.011668921,248.2718811,287.3872375,101473.1484,0.001784482,229.2952881,-2.3824e-05,64.29232788,-0.939777613,0.374555767,0.773139954,2683,187,test\n1475A,103.712,36.0756,20170601,54.81601124,2808,4842,718389.2799,761062.0923,1556,1.00877285,259.8876038,282.5976563,81497.28906,0.000723558,232.3790588,-7.0757e-06,47.6957283,-0.993094504,0.177160829,0.312096477,1724,403,test\n2444A,113.942,30.9075,20170601,49.76571429,3635,6479,1673336.292,269825.2817,25,1.027381659,300.8529358,289.3362732,101185.9688,0.002457302,198.764679,-1.68787e-05,68.77377319,-0.882026017,-0.52682358,0.817943573,3453,1081,test\n2708A,88.1267,47.8515,20170601,12.43539326,924,2348,-466519.037,2183870.643,921,1.357331395,352.4895935,276.47229,89115.78906,0.000697224,156.1495361,-9.71626e-06,56.37965775,-0.177531123,-1.345671296,0.170039922,2013,1321,test\n1703A,113.0208,23.7106,20170601,33.74147727,4786,6331,1747262.832,-577718.6276,13,0.679115951,314.8795776,294.085083,100132.6953,0.003314191,203.4927063,-1.59598e-05,75.82136536,-0.481249064,-0.479163617,0.576182544,2985,533,test\n2386A,114.2956,35.7511,20170601,56.3356546,2860,6535,1590638.138,846612.4254,90,0.540479362,55.39128494,287.6413269,100405.8203,0.000884022,201.1470184,-1.02028e-05,56.73690796,0.444832802,0.30698815,0.805345118,3179,1036,test\n2595A,99.1711,25.1328,20170601,30.39106145,4559,4115,399562.2198,-564638.8197,1672,0.755832791,32.28301239,287.7327881,79496.625,0.002341066,95.80272675,-3.09291e-06,66.43314362,0.40368095,0.639003038,0.233538389,4070,1216,test\n1611A,118.5819,24.9117,20170601,24.49861111,4594,7221,2244153.689,-328287.9348,13,1.491243005,321.5588074,293.5477905,100975.3047,0.002172832,398.0970459,-3.43882e-05,78.59575653,-0.92720747,-1.167943478,0.393044591,2583,459,test\n1062A,117.9664,40.9161,20170601,23.53472222,2034,7123,1742668.244,1522703.128,361,0.285557777,59.21615982,281.2525635,95837.97656,0.000901264,225.9160004,-4.66914e-06,49.97110367,0.245319471,0.146156117,0.612190962,3055,49,test\n2380A,116.385,27.9647,20170601,37.26330532,4106,6870,1961297.604,-26728.8928,47,0.91591692,337.2653809,291.7987671,100783.7656,0.002294607,218.4802399,-1.7136e-05,71.55229187,-0.354036391,-0.844726026,0.620418012,2675,1030,test\n1849A,113.1772,29.3678,20170601,43.77106742,3881,6356,1640240.221,77095.25763,47,1.033074379,309.7947998,290.4830017,100906.2422,0.002477681,252.5169678,-3.25456e-05,71.59677887,-0.793798089,-0.661155999,0.805084109,3084,665,test\n1051A,115.493,38.8632,20170601,57.32777778,2362,6727,1609736.565,1236167.122,21,0.45382151,47.74733353,285.6299133,101191.0781,0.000989744,128.864624,-8.07344e-06,46.71962357,0.335905194,0.305158406,0.8721416,1915,39,test\n1409A,110.576,19.9507,20170601,16.45702006,5388,5940,1580503.031,-1044494.26,4,2.833151817,263.4823608,297.2429504,101028.2813,0.002657095,471.5733948,-7.27536e-05,82.50409698,-2.814827204,0.321709692,0.404807031,5461,347,test\n1282A,119.303,26.0392,20170601,27.23743017,4414,7336,2279165.492,-183941.4839,18,0.660829902,314.7249451,291.7391663,100222.5,0.002735934,285.039978,-2.46829e-05,84.31043243,-0.469547421,-0.464996099,0.434393883,3221,237,test\n1041A,118.1997,39.6295,20170601,51.32686981,2239,7160,1796777.238,1374178.092,33,0.665033042,192.6335602,284.0272827,101417.3594,0.00073672,184.5201263,-8.8188e-06,52.00143433,-0.145448238,0.648932755,0.791115284,2999,31,test\n2293A,117.0486,30.5489,20170601,50.58888889,3692,6976,1952992.047,285346.2083,22,1.250477076,323.5499878,289.599823,100956.6172,0.002524432,246.7169647,-2.93401e-05,70.40621185,-0.743009269,-1.005798221,0.731026173,2958,950,test\n2426A,114.8949,30.2043,20170601,52.29083095,3747,6631,1773230.297,204423.615,76,0.881900728,262.6491089,290.4185181,101254.3594,0.002534305,194.9039307,-3.02002e-05,70.88707733,-0.874647737,0.112872548,0.766887665,4337,1064,test\n1938A,109.5293,34.5101,20170601,60.51585014,3058,5773,1223151.306,630658.7146,347,0.977224827,237.3246765,287.3561096,96523.08594,0.001217962,99.54223633,-8.10061e-06,61.990448,-0.822556973,0.527606308,0.601806819,3036,742,test\n1774A,126.4978,43.8228,20170601,27.61111111,1568,8488,2258753.289,2038958.373,211,1.141084075,27.65626335,276.2796021,98057.96094,0.001307207,225.2650299,-1.02492e-05,65.81345367,0.529638231,1.01072073,0.46103543,2874,595,test\n"
  },
  {
    "path": "demo_result/gnnwr/dataset/test_dataset/dataset_info.json",
    "content": "{\"x\": [\"dem\", \"w10\", \"d10\", \"t2m\", \"aod_sat\", \"tp\"], \"y\": [\"PM2_5\"], \"id\": [\"id\"], \"batch_size\": 212, \"shuffle\": true, \"is_need_STNN\": false, \"scale_fn\": \"minmax_scale\", \"x_scale_info\": \"{\\\"max\\\": [4520.0, 3.203410864, 359.6052246, 297.1684875, 1.069990754, 0.00383414], \\\"min\\\": [-5.0, 0.055798065, 0.03956585, 271.5436096, 0.056254357, 3.88167e-05]}\", \"y_scale_info\": \"{}\", \"distance_scale_info\": \"{\\\"min\\\": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], \\\"max\\\": [2802830.8703533784, 2912105.301448387, 3470525.8040405307, 3007624.3752700957, 2858485.0676262937, 3182410.3066277066, 3797154.9135448313, 2833374.9790403727, 3458480.15710189, 3585467.2679693587, 4013366.550446068, 4249152.034624045, 3405646.0581350112, 3227780.0516290264, 3582617.828784893, 2625263.4332448505, 3119345.22802463, 3641661.0779158976, 2705468.573142952, 4255209.830422676, 2875202.8045803923, 2411395.952106972, 3493792.1176865706, 2752875.859868447, 3365147.3721844326, 3929059.2804159024, 3360333.451190208, 3564994.6863664053, 3280386.507935274, 4066196.502326962, 3833686.98063374, 3408915.169600785, 3424516.966809017, 3443216.2614678317, 3630498.7558013164, 3087363.2393477196, 3105601.125208271, 3344764.437702077, 3716586.209449652, 3428370.693325546, 3521364.4053337043, 2645357.8975991043, 3359991.596479524, 3212187.348723729, 3371448.5950262765, 3743542.6569786244, 2806247.556936265, 3081189.606151179, 3638732.7617823137, 3209034.250492124, 4121368.6690986245, 4019217.4936699606, 4152716.840322373, 3813742.6461805007, 3518723.3644682285, 3477750.1062015747, 3250787.5087903435, 3559302.54407372, 3335505.361546866, 3044570.846127091, 3716603.508813846, 3883819.4329719464, 3974775.889806952, 2916306.011806144, 2862968.638187937, 3532990.314817391, 3685748.7283350946, 3620420.181880089, 3529523.643725004, 3850084.184418817, 3761651.318123231, 3903403.5045404625, 3004090.004129706, 3653142.5164306527, 2780912.539940805, 2647983.1926995195, 3838446.6127767577, 3161153.8922581594, 3080305.7229244774, 3604410.554828908, 3203566.2856156547, 2888867.2980796117, 4017668.0934505584, 3413701.0577898896, 2846921.927385874, 3586684.3414489557, 3949264.2610251033, 3737636.7986006048, 2433498.5727093504, 3563112.7283243034, 3751196.98206894, 3509078.3124862094, 3093582.7337773684, 3974297.7250368055, 3305755.9614527784, 3873305.7445045956, 2727236.0749947787, 3860121.294572469, 3521806.222472924, 3039473.900092038, 2913277.986403355, 3395160.688137844, 3760284.709474356, 3122491.62112245, 2942436.501549763, 4110718.7615965293, 3093676.5930638644, 3755984.319487034, 3145668.7552837953, 3675844.9432712942, 3763538.408405018, 3945614.9535285337, 2903347.642144009, 3491816.9502868596, 3088727.8957508667, 3702956.1892402815, 3404491.1955082053, 3335206.1162938667, 2888696.427119469, 3604841.8737348397, 3572544.3210954755, 2845365.946513858, 3143227.955241447, 3329597.406456703, 3093548.597614966, 3531020.8264887966, 3665678.4781472697, 3088231.996236204, 3843197.814298036, 3605216.856599602, 3001931.0447889464, 3837517.308436414, 3835039.699456454, 3617617.1941224732, 3092453.0162835186, 4224748.005694116, 4002947.0971980277, 3799397.923094611, 2452825.187701269, 3820409.4089444587, 3445941.9113097843, 2477373.6621270874, 3418846.3921653302, 3913652.3539333153, 3810589.9968222994, 3440681.071947711, 4024079.955985862, 4057191.5962913833, 3792038.7229738245, 3204457.3952838383, 2664860.517233647, 3997375.45494083, 3410856.0670244643, 2658868.3815014367, 3718402.0184262185, 3584725.9165025423, 3366526.1611724533, 3217348.1327599697, 3750754.2921714, 3500296.9914614055, 2580806.7795926845, 3896753.8195920736, 3114985.3581470717, 3520943.8621506603, 2805222.104968497, 3343628.0575819304, 3625509.3089894475, 3537843.140474286, 3095868.2666962077, 3699310.37948368, 3450005.629532284, 2968229.0514211343, 3845682.62160461, 3819638.07431032, 3005599.633667839, 3993089.2457098495, 2875156.3503607204, 3603534.42135801, 4025353.329193525, 3355441.6661016964, 2384870.028528979, 3869834.213578755, 2566403.4658084884, 3662010.3948272, 3558272.3484845445, 3330747.7696133624, 2754593.3266026094, 3431529.511543076, 2900321.582849287, 4281690.80074013, 3782155.3165435838, 3136999.5913996836, 3041925.630421179, 2898267.0387898763, 3218990.3337865947, 3676865.492406529, 3928437.0402806452, 3565691.667252762, 3419935.5240517235, 2475045.729482483, 3812466.8300474803, 2389420.918773496, 3352838.4547461197, 3029161.3730821903, 3854542.831782675, 3530977.743290467, 2588808.257801276, 3757953.282882135, 3950037.1547858454, 3544308.6045406437, 2893758.4898163825, 3587488.4473026115, 3007973.034578178, 3780122.3137837243, 4015909.8912915704, 3652199.5964419018, 3847875.910504767, 2520060.8945551994, 3289551.540106659, 2536782.1423839866, 3472134.5508702327, 3814335.454807663, 3105065.489794537, 3115496.772972792, 2899358.5696000564, 3409259.9081891, 3359247.8273755712, 2893049.688404716, 2639240.6486604395, 3771911.083591714, 3894688.0125947855, 3693004.4704485745, 3095955.6650141086, 3431522.1285318714, 3883784.5973975793, 3225461.5923437127, 2345777.8476934335, 3354790.757049911, 3884953.0154975774, 2835192.211969393, 2375877.999149756, 3804212.443409909, 3287967.0118430015, 2759791.5698832786, 4282743.53288729, 3425750.0592730865, 3414643.174529728, 3142035.003311354, 3358739.547705901, 2510185.189882538, 2656118.402040622, 2702947.3650199687, 3914872.9882135964, 3835448.018345608, 2510983.721540914, 3076244.3998004687, 3477113.225436451, 3394670.0096244286, 2525367.1657713023, 3429818.948791365, 3833334.6990163825, 3983278.4189497638, 3535518.425150834, 3825883.2853610683, 3219670.4905957095, 2807249.9564401438, 2859009.520874503, 3791296.434267081, 3090815.4634621837, 4258257.805892147, 3841289.4748636372, 2894208.8162717773, 3633731.389365244, 3468119.137788053, 3527961.2786504305, 4224409.166230842, 2657621.1061800793, 2901024.528022401, 3079556.2213941943, 3915327.972788231, 3045525.5757816643, 3530304.9894376164, 3229509.5234942636, 3620689.8714855025, 3684705.5999377896, 3556518.608309885, 3614239.0617040815, 3717586.9857761734, 3493840.858542834, 4053239.755163761, 3678707.3252070984, 3812823.159159023, 3850941.502131334, 3437729.367604982, 3695425.680688242, 2444495.9184077736, 3617149.3086220836, 3478001.6877274695, 3902895.6144328825, 3074712.783586829, 2755819.810632823, 3561204.9074928146, 3148772.382843564, 3679462.7026948705, 3289018.717409576, 3270616.238786338, 3819897.9100520425, 3626640.991377549, 4034400.817603745, 2745348.962327886, 3679130.72030735, 3214272.254402372, 3531872.0278793215, 3404444.7214161283, 3916682.157179668, 3512498.0817790134, 3037803.3467853875, 2393475.7470403267, 4246776.757178956, 3892124.331142944, 3281598.4676314876, 3223366.978754596, 3165626.1982906344, 3617452.795127982, 2812174.920449176, 4238651.512109648, 3580800.7396497442, 3550285.953229131, 2878213.6688500317, 3357966.2036839183, 3890690.118903733, 3042218.9383126455, 3224256.9038218544, 3636141.775148743, 3605857.661993581, 2516661.8495331714, 3633898.7349663824, 3229623.0142963305, 3365288.2812983356, 3423819.922899313, 3039201.9128866317, 3583186.151640493, 3742826.314585211, 2810203.9599358835, 3123404.5525891352, 3000866.6536547695, 2751151.5296879187, 3283455.200524634, 3262481.3312548124, 3957241.950024288, 3883341.3904720354, 3534834.1502754986, 3229428.8032615627, 3233716.5047338963, 2759248.149931936, 2760102.199403256, 3045450.7160451687, 3442322.2330695596, 3853024.538205542, 3358130.6092355745, 3362517.9528330867, 3345058.3160918425, 3153056.550554473, 3806268.3872430283, 3351900.6393303373, 3540150.7830024986, 3220441.721254111, 3846372.8877418255, 3667487.65045352, 3711112.0351153663, 3042940.0390822687, 2405519.6427307716, 3945053.8401824567, 3121107.0693898485, 3225742.0198272453, 3096353.742233438, 3285352.669716354, 3718832.1238597007, 3577337.583161154, 2608755.6597229363, 3684355.845966043, 3562216.550509879, 4045077.029715196, 2376052.846351178, 3730250.6469273036, 3222487.10695719, 3008857.692879156, 3660260.039692243, 3640769.1851906967, 3228811.20321537, 2361441.1306671705, 3445264.7848982164, 3529010.749444703, 3524858.3873481406, 3361178.3444499997, 3738065.5246669976, 3166392.4532363717, 3737734.2954730177, 3211712.343089061, 2732073.423666195, 3487767.3302225056, 3621338.2331353356, 4113293.4604073144, 3130244.717199173, 3662265.3844213206, 3464213.8971815296, 4145584.6637800415, 3116024.30974023, 3077984.4712566542, 3720166.095570379, 3439687.707073118, 3648440.301999768, 3726037.36608168, 3617001.9929361, 3974306.384518927, 3483727.5240142164, 3021702.898136579, 3404880.3893519407, 3818949.6679867115, 3953351.3321040864, 3898382.3320541987, 3142966.5404402423, 3883596.348703534, 3091567.2518794453, 3000284.1358645516, 3286231.544666767, 3422151.4653145582, 3410433.4837397616, 3399702.727113014, 3794215.786819345, 3143470.242310551, 3685615.9194135573, 3574580.122325766, 3632011.605238594, 3458227.380887889, 2920229.448073909, 3154225.204931173, 2396791.9232434114, 3378700.0708152405, 3014345.712629164, 3289605.0383060426, 2385889.4436078398, 3554600.409876659, 3608470.362505081, 3470454.646043988, 3528293.0239083017, 3693505.448536373, 3442918.6731635584, 3656106.7031788426, 3676241.9139262014, 3839591.47181586, 3522108.6020079427, 3172969.5173440157, 3747936.834557825, 3353717.379240945, 3621248.282070434, 3630355.1615521144, 3698078.667826143, 3400016.6821315745, 2874935.171840581, 2989605.23458301, 2859740.0684737954, 3554279.5110236346, 3208545.4199587596, 4231117.006547004, 2806675.6837761877, 3754675.0213112505, 3696823.2857639114, 3422274.2137364317, 3224839.7115840646, 3607964.976359576, 3357456.971022872, 3579303.127412053, 2893097.4718988496, 3172963.1738640447, 3426691.294495093, 3216832.0978598506, 3989463.475925323, 3412889.830127723, 3841357.446891219, 2801351.355169277, 2805809.942967039, 2331985.7326377225, 3449248.3556689974, 3175101.6155933817, 3524178.1422851495, 3042661.8390297354, 3799681.1079625753, 4248986.291165477, 3380378.8559258743, 3783978.0106358766, 3813430.450933064, 3222716.086328677, 4056248.29920681, 3723019.4606229165, 4150096.955943654, 3566526.339006636, 2766372.4637071677, 3814214.4615826206, 3995681.6647158163, 2926484.254583837, 2901116.2314100014, 3112841.242444415, 2974092.4396115863, 2564859.9264790006, 3195638.606696054, 3727401.4901189106, 3996525.880700766, 4119828.9584147977, 3234375.3658018946, 4283302.683560363, 2756991.71007552, 3446157.622537568, 3828588.210795252, 3602745.7609161837, 2524234.4570043725, 3386870.012201312, 2978397.11344487, 3933675.223552245, 2602816.5190000585, 2319557.024905248, 3451420.033432768, 3638182.697480728, 2777602.5637578005, 3530731.2207554854, 3467063.4408092774, 2436152.884536813, 4014465.700779228, 3427363.087689097, 3106420.6181152374, 3007282.9755006973, 3166761.3677578964, 3898205.7231181418, 3092356.68590159, 3682510.288033913, 4038951.1007364294, 2649742.2382597486, 3801183.1019689576, 3557373.3226376963, 3786064.2481855457, 2767180.861047499, 2636977.3087006058, 2764315.0206767228, 3333001.588663534, 3856114.155785031, 2375784.4822310307, 3072178.05725409, 3283482.0413610702, 3550184.7766550477, 4142703.3875323227, 3156478.3530704225, 3152598.842850427, 3439413.161653969, 2977227.322027259, 3229566.3587718126, 3525545.31217571, 3085726.1812026915, 3622744.2464509257, 3358791.1903072665, 3793743.0557753784, 3469282.110598838, 3406391.369982796, 3810230.5946390773, 3552022.1977855484, 3617850.975630064, 2612739.9272851697, 3831029.864998789, 3680354.237463663, 3569876.8208789127, 3738173.2198408847, 3520977.1477433383, 2903468.6279020864, 3600355.402404968, 3336060.6945636324, 3443227.167726708, 2495759.143047478, 3477813.971401042, 3335401.337379921, 4028853.3949258425, 3398211.3005182855, 2891673.899779668, 3416108.0858185, 3714455.4065317013, 3646688.886485773, 3628884.2936042454, 2945117.3297240664, 4052990.307015594, 2746153.9898199113, 2903786.4108151775, 2721135.695806392, 2893711.6459517977, 3618183.403211587, 3074264.156332146, 3235902.039557406, 2922422.062687029, 4209815.826042991, 3672696.5548046106, 2924112.4129295256, 3448007.731195238, 3461689.202653187, 3708992.6960955756, 3935287.4307872076, 3849827.7087918837, 3379945.8095943383, 3665452.20093809, 3634489.717734572, 3970193.9709107503, 3668117.5329869953, 3381076.8613979174, 3696581.447681013, 3353245.0576617615, 3018218.8991987277, 3722596.9725327864, 3325813.3954110807, 3846785.244214662, 3026671.5621947236, 3176021.6927854638, 3220046.509462515, 3882947.3975199834, 3075652.655086303, 3215787.596196646, 3044563.203620683, 2845211.9091240163, 2929616.2444524607, 2986299.491411805, 3200214.8844396467, 3546773.703825089, 2557408.3079331545, 3684441.014841949, 3005399.12701216, 3416425.365959653, 3615548.0872951187, 3002901.6491808915, 2836276.509711126, 3553190.149805584, 4015755.090790001, 3474328.694776661, 3688420.085696453, 3286355.93071715, 3816113.8558487026, 3481288.1786371926, 3656370.1589568844, 3236663.7248273348, 3158288.714812942, 3291266.233517963, 3908975.9578953106, 3046303.620207925, 2812613.294820149, 3281054.2351195076, 3616312.77981149, 4032490.6673034537, 3215120.743077719, 4250538.774394757, 3775800.555131238, 4234894.625667654, 3511400.5032587256, 3787650.332634187, 3429688.2562139416, 4035700.4852723097, 4228341.56030305, 3837848.099496048, 3428077.2634330494, 2697991.51780867, 3439487.172329452, 3450923.012573421, 3299232.058336237, 3935782.9183881455, 2888981.817937336, 3548600.344319051, 3090394.220906782, 3759506.441415239, 3661674.4455540865, 3111761.506316808, 3411080.3857172523, 3680285.3714504302, 3921095.9657078586, 3419167.727883034, 2922003.0264393557, 3738013.08258497, 3667222.326762625, 2636291.7709541875, 3666655.390783085, 3041233.701188188, 3180223.1746299686, 2615507.1125789713, 3464448.9976284397, 3398783.9832461523, 3827532.279347273, 3943166.6957599344, 3614805.855470717, 3814399.996601104, 4020889.7324102116, 2665099.029980667, 3377978.7090698653, 2580867.186442832, 3117996.3029945814, 3369016.540369037, 3732757.367943981, 3572311.2032094547, 2801595.679172265, 2875627.2247319473, 3942516.5434174743, 3207756.575779542, 3569849.1649276875, 3807051.117500694, 2621013.017404557, 2365163.532845314, 3681888.687569694, 3580247.643831329, 3228649.8177477233, 3774093.1233955584, 3830428.9023401686, 3289069.390425699, 3458328.61464453, 3547504.406478115, 3094956.4208046696, 3664254.4632720235, 3734923.392267728, 3789570.7601049542, 3662056.4586659544, 2796087.969855879, 3070217.0178187634, 3197510.7135448544, 3170404.740640423, 2696570.8679443374, 3735032.948649671, 3512558.7069775076, 3847065.018140118, 3670858.346540568, 3169672.3886493035, 3978501.8224020256, 2844194.0389750637, 3950637.3635769244, 3687362.180653163, 3031925.7740163514, 2690761.701073395, 3545162.0025290274, 3819853.093689141, 2862317.225214374, 3007145.4362556664, 3616887.327997864, 3883443.319769939, 2593721.2640561345, 2809074.07286023, 3564953.598876766, 3149987.7263645, 3180147.4000321543, 3226893.0897920146, 3825618.8643756486, 3266571.1426956896, 3297243.648848199, 3145530.275714979, 3816145.5348663097, 3700379.936718554, 3332549.0180449355, 2979682.0219254023, 3678793.1579254125, 3804702.896603726, 3528791.6264198762, 3203854.7782501066, 3558565.6893982515, 3645535.8777669887, 3864022.5902171526, 3580375.5143358153, 3092032.668731167, 2658198.0403929064, 3727686.789474894, 3424396.5916146706, 3627374.525836921, 3381873.259728357, 3563153.4788991516, 4055222.655127758, 3946642.742438696, 3907541.5807020636, 3737762.962142973, 2755529.410079069, 2892503.4834966976, 3607541.9880988942, 3554851.462623276, 3866572.06857221, 2432510.321469471, 4010654.093670071, 2797226.5088491696, 2914127.977762151, 3447949.2247260073, 3681760.064498012, 3002204.071928443, 3261615.547413575, 3881586.2139031272, 3689334.270159305, 2764917.7668997343, 2900954.1247071223, 3795217.763311702, 3529620.3180897385, 3280756.736613416, 3727319.249644557, 3601747.012412989, 3139777.1922382736, 3595515.9075710736, 3583360.0940960012, 3488281.1350517836, 3774254.4531134325, 3383954.389560141, 3429502.3162910384, 3083449.589112423, 3634082.875915706, 2660423.7965397076, 2943981.103523418, 3710355.6687712166, 3096974.279540259, 3909933.674548659, 2869765.150717591, 3956246.062891852, 3445494.4430931765, 3569038.357179148, 3163305.546695308, 4231287.543265588, 3644592.7439606218, 2945387.479056771, 3525191.866584024, 3554788.1337609477, 3778685.6135561187, 2404997.824670147, 3824970.9328791196, 3543716.454993166, 3626409.139562407, 2724678.851009358, 3423275.775112243, 3890284.6246502833, 2912369.4861146878, 3571041.0333439494, 3768541.088281539, 3130773.3247693935, 3041794.321322533, 3683535.0216716435, 3810507.8067872417, 3445137.858385384, 2494671.3711482314, 2912636.9607166895, 3414233.6712127067, 3222115.6626848564, 3202663.293433961, 3772759.8719824688, 3198494.7712708013, 3216756.1818610867, 3302179.3547622385, 3049778.8165678917, 3878102.834358261, 3604625.680241574, 2913105.3367278017, 3917219.0882727443, 2459072.673961398, 3871345.1300365548, 3852626.451283605, 3413010.4272459433, 3124837.3062410234, 3318095.8809274537, 3156634.8478891985, 3415688.270895165, 2887399.5100899627, 3559033.0731023396, 3886132.5166159063, 3573138.211768854, 3582173.977092844, 3678310.7264331337, 3510522.7028531353, 3687462.840977819, 3656811.541055868, 3581784.6838348815, 3087603.5898206537, 3268061.2283780375, 2835563.9060651236, 3806435.729467123, 3406553.4216437037, 3474680.212250636, 3927811.922486499, 3547217.7828569436, 3008933.900157935, 3004023.477393684, 3384741.255671773, 2881216.376176749, 3218666.6686768085, 3670727.401591539, 3213570.2104765815, 2727087.065907402, 3911640.8578461055, 3820266.298418647, 3547731.2244613855, 2975618.3281468465, 4252433.591926029, 3612689.0197852645, 3635642.602985675, 3654245.8597819167, 3869883.340493035, 2894265.591159623, 2577130.568375668, 3629759.7254546448, 2517060.0605687485, 2797948.327413146, 3268884.2279184354, 2909509.6461417545, 3817503.9342653207, 2988925.2741544396, 2724479.435690772, 3869682.2542724377, 3253532.981327391, 3603541.421669642, 2922168.736061371, 3119238.179356365, 3836131.9520962643, 2877352.7944964347, 2378178.2777929683, 3210022.2202544142, 3504917.3872783817, 3851536.2282531257, 3546784.5045575993, 3219584.329905437, 3400496.159208219, 3596339.276727654, 3418083.975559789, 3692431.6087375605, 3322930.7376203714, 3168246.869172043, 4031935.9469790882, 3015785.367941349, 3134904.114733368, 3438859.072841916, 3634486.715242421, 2752826.901840603, 3666456.0631165737, 3270343.4790233024, 3466835.9018464056, 3214116.765895913, 3835075.57377799, 3258229.970663781, 3850641.23843619, 3492570.500267085, 3091802.420844796, 3753445.467068428, 3090716.4345904016, 4146877.1697772057, 3630403.325897369, 3211047.6308591007, 3699626.919774608, 2468076.48307922, 3146707.484423625, 3694933.224678292, 3513644.4747125707, 3544786.2655259385, 3424047.2887811163, 3476620.082240369, 3764827.2468237113, 4002691.6874995935, 3639376.961320511, 3137056.5101596084, 3598939.9174407446, 3355991.209454524, 3716707.7716168193, 3623149.1743984804, 3413703.8350363197, 2698605.2522190544, 3602273.3259504195, 3852292.1498042666, 3528358.9955150206, 2878612.299907571, 3911554.349061958, 2993751.021268044, 2759940.1631458653, 3567944.854604162, 3787248.6807104736, 2799667.853748834, 3096371.1814904897, 3574207.401029672, 3626742.4672606187, 3006622.8583016577, 3826662.454223103, 3899592.800974261, 2739582.2204775847, 3970200.3695156104, 3870309.400024921, 3088625.9743315675, 3142281.6705262107, 4283302.683560363, 3637655.458389634, 3718494.1538319085, 3451009.2660839316, 3448434.403583216, 4121013.970793598, 3694615.2768477486, 3554219.673713966, 2464083.628461788, 3747188.7347562346, 3047626.9376986297, 2723091.1814664896, 3120816.886065162, 3449089.1155784717, 2898292.130166793, 3630404.8989553843, 3791924.049336614, 3284387.6498830677, 3532284.2293951674, 3819365.444956729, 2975388.9888806976, 3551276.249679825, 3796073.689863204, 3463148.4202897386, 2870399.925285959, 3777980.204755108, 4034006.986236526, 3813254.2573706945, 2602430.3251277646, 3631411.7221004833, 4282276.565476684, 3451840.9654604015, 3732950.1088573243, 3349227.6107208016, 2623979.8625423103]}\", \"simple_distance\": true}"
  },
  {
    "path": "demo_result/gnnwr/dataset/test_dataset/scaledDataframe.csv",
    "content": "dem,w10,d10,t2m,aod_sat,tp,PM2_5\n0.03779005524861878,0.2262354971024671,0.6821386159295109,0.5475028477172266,0.7346226259218807,0.25730122185220633,48.14542770385742\n0.01569060773480663,0.10853856980849012,0.9336647783625243,0.745275560278254,0.7801392543134552,0.6434504030821099,39.57022476196289\n0.020773480662983426,0.15761029523374068,0.9905355918183886,0.6838363860494229,0.7571689181860335,0.5076309075526673,54.21848678588867\n0.020773480662983426,0.08665533118735112,0.6767758445254767,0.6436589842431493,0.7738229292918913,0.47369436100352524,51.8125\n0.0077348066298342545,0.3665015132045829,0.5917115136754908,0.5839359481457753,0.7510925436644696,0.2693194127862053,51.10704040527344\n0.0035359116022099448,0.12083362527711013,0.9622416691323731,0.7414216928296797,0.47560602726099127,0.6053672168746763,31.10814666748047\n0.00861878453038674,0.2424633429216482,0.8785334462738354,0.7888709471208095,0.5312774831102975,0.6298220447339191,34.52683639526367\n0.03712707182320442,0.09542258091339414,0.5838082677155657,0.6271347534492778,0.7265255165843402,0.2703222476518964,64.64325714111328\n0.4285082872928177,0.41349067300479114,0.0043087792764446705,0.6384355409089568,0.23243371701280838,0.8034752293521333,25.84722137451172\n0.005082872928176795,0.23093202330119936,0.7448670130055907,0.918591220328799,0.5086381740142407,0.8161740008207856,35.90896224975586\n0.0022099447513812156,0.223756146356746,0.7121461760170371,0.9191414325541518,0.47112822519568825,0.8101993208648678,39.63445281982422\n0.007955801104972376,0.26051636052938487,0.7045642609405531,0.652001487789893,0.7742513241321266,0.562037290915417,51.211483001708984\n0.025193370165745858,0.16786872492998098,0.7586301766056187,0.7617057071634612,0.6499572591170462,0.8201671203070949,47.670867919921875\n0.0061878453038674034,0.19788547622888017,0.5298404233225066,0.5532634029856919,0.5892914108831523,0.22696440893409478,30.670000076293945\n0.08552486187845304,0.2605199205839193,0.9077264334205728,0.6995079069875528,0.6271656070301783,0.5047415382898555,34.786705017089844\n0.2114917127071823,0.20662575096724062,0.9782715479738338,0.6059253821910396,0.17930814126023095,0.027579284230738348,52.894813537597656\n0.09281767955801105,0.22069864654192226,0.5170252961641155,0.5806656391180297,0.5444308980587182,0.3424022535629065,66.77361297607422\n0.001988950276243094,0.34647688816087097,0.7269587998320018,0.6691128498112512,0.6760398961061442,0.49663288193334443,46.647727966308594\n0.03226519337016574,0.24588989541105652,0.1784709585476499,0.19176206157344655,0.27298338181377974,0.18997624637894422,22.256338119506836\n0.023425414364640886,0.2507863148846061,0.5104143757976182,0.32416432164614234,0.4567072648223717,0.29320460565765977,29.606945037841797\n0.1169060773480663,0.22025858214125157,0.14914099626105165,0.31662450866192615,0.3907463658158113,0.15632483939398722,35.10585021972656\n0.01613259668508287,0.2326659781605398,0.7629524419437397,0.7131238731617029,0.7149701449193061,0.6939409638283595,40.850975036621094\n0.0718232044198895,0.16418103865317868,0.3626869579916814,0.7867046353504273,0.9331480621943797,0.3088623135719521,50.48179244995117\n0.03447513812154696,0.24664167288455477,0.23737763145969598,0.2613436621761659,0.28097624409508404,0.1491220287355734,27.693082809448242\n0.23558011049723757,0.21501854165928638,0.45146216827940033,0.3303035944203699,0.3382206369147409,0.17670492595320536,47.6156005859375\n0.033370165745856356,0.38181035366944804,0.12597509562427944,0.17023947426484518,0.35503633973218907,0.18203253602140104,35.668521881103516\n0.3929281767955801,0.3906832215027565,0.6398387067017014,0.37975123856894943,0.25868692405838767,0.2517219828667568,27.502832412719727\n0.009281767955801105,0.325234459355933,0.6706708123604456,0.6237191502841014,0.7410422572479042,0.4317812069171296,63.681304931640625\n0.002430939226519337,0.3588450857073597,0.7820310599991706,0.8964064728528901,0.3531180292658816,0.6015825535499635,29.837047576904297\n0.0030939226519337017,0.3189272546543458,0.7176269639539357,0.648064254852629,0.7116444109983305,0.6740319894212838,47.77423858642578\n0.0037569060773480663,0.19862471776566668,0.8764636374374699,0.7864819304020703,0.3970763317381348,0.7178053294876708,31.118715286254883\n0.225414364640884,0.2122118363245385,0.2230647637394017,0.3925609413739138,0.5146177098998085,0.28544611639072875,48.72804641723633\n0.02696132596685083,0.12803516112525593,0.47922418905138364,0.8059775453999568,0.4752711196285482,0.5199937443712599,45.10138702392578\n0.25149171270718235,0.10410659542823412,0.510895099021023,0.4542109111955749,0.3318508360343802,0.18764760149253987,28.896011352539062\n0.001988950276243094,0.3684680267327403,0.7353830839043003,0.6736050587160788,0.6697137519879128,0.4818578306562065,47.452247619628906\n0.002430939226519337,0.5324503876214121,0.7858912742729878,0.9081240877560182,0.3338811841575732,0.5548007702332253,30.35614585876465\n0.03248618784530387,0.33953716781268956,0.10106478035102355,0.1556933874240275,0.3710026612894068,0.20507694139351437,33.178470611572266\n0.22475138121546961,0.2711845373533721,0.5219934908969616,0.4097413776573292,0.5153227445593284,0.23252467644574387,65.63509368896484\n0.009281767955801105,0.3023921647669655,0.8606795521085411,0.7402557669235752,0.7311297321696137,0.6320645741592166,49.365440368652344\n0.019005524861878453,0.34274027007068025,0.85613211750635,0.7409810466751765,0.5382168797928515,0.8065748338314818,26.332860946655273\n0.028729281767955802,0.2256283941855816,0.9325405446377324,0.7410239203550741,0.7100591854578991,0.5929453645094517,35.079830169677734\n0.2656353591160221,0.2661315701626082,0.5650416020273002,0.4657582223146651,0.41333363957922903,0.3403081218582982,30.977401733398438\n0.019889502762430938,0.17719958999185437,0.1581518619678411,0.6205417342294672,0.7137182394926949,0.18023162631161058,68.70670318603516\n0.4103867403314917,0.2317585051105402,0.6531958357147293,0.5207877813988032,0.4712619295419269,0.6745565652417111,39.54929733276367\n0.0030939226519337017,0.31561538136845146,0.7242711122762882,0.6549835904138825,0.6804978835871541,0.5323555382955772,54.32535171508789\n0.176353591160221,0.15317647454860642,0.6737288027805158,0.4734826303095516,0.44758173740213075,0.196307994930675,58.191341400146484\n0.8344751381215469,0.20455900675477023,0.13333190509178108,-0.07599955154932757,0.040686264996956524,0.4246571961232157,27.10110855102539\n0.001988950276243094,0.29637785029667796,0.5264562642323188,0.5323172284846028,0.7797166215778512,0.20091919797852803,51.78892135620117\n0.0033149171270718232,0.23155188939232008,0.7486538966182106,0.9192498076894485,0.49392264074089964,0.8052880249893251,38.90946960449219\n0.03558011049723757,0.35082958505012446,0.8816091752450519,0.7981161798165085,0.5360118752226479,0.8179348971311053,39.111732482910156\n0.02983425414364641,0.3205080324864034,0.7007500480768851,0.8587645728383392,0.4871468760704752,0.7241404827824766,41.932960510253906\n0.0026519337016574587,0.3359499205212635,0.7879170337885647,0.9241874264909902,0.4196770994098471,0.8238008093487916,30.714284896850586\n0.004640883977900552,0.268058752662744,0.16981528823103514,0.4394075822753715,0.548759708561414,0.1477321574003377,38.01400375366211\n0.31093922651933703,0.11815303676789116,0.5329528176243216,0.45858521748068404,0.40377451378548895,0.2471784912633894,30.490251541137695\n0.05988950276243094,0.3707873265160934,0.11431194519979937,0.2433093251014564,0.41722314840078045,0.29583628801441325,33.0154914855957\n0.06342541436464089,0.26344272535670293,0.8590275752687895,0.7539372345531244,0.8016136775222293,0.3558137819219381,48.084720611572266\n0.03314917127071823,0.3689582916896388,0.28588270230571666,0.08605343097922527,0.29403958206090236,0.22560352392503755,23.2025146484375\n0.005303867403314917,0.22733909507168637,0.08627740108297995,0.5240104530044405,0.546772488027476,0.22742628840456572,26.893465042114258\n0.3692817679558011,0.0923327944337766,0.7075604210519633,0.4294263514080968,0.2769614094978036,0.09580931172888082,29.55477523803711\n0.06497237569060774,0.18947865361975977,0.8378017437901737,0.7817050879001447,0.8785771683296361,0.3677753498314657,39.38022232055664\n0.01149171270718232,0.2962680188269981,0.8687187653361029,0.7387194600605774,0.7667150792443533,0.5526989701883581,44.5244255065918\n0.016574585635359115,0.3171089378644151,0.8195607418173316,0.748131423733656,0.5451897907574441,0.669839983862021,32.40168380737305\n0.014364640883977901,0.29728344863710887,0.9589022383505778,0.795806955779801,0.6932025011411861,0.6293380190967806,42.469913482666016\n0.001988950276243094,0.3235964934138007,0.7455477829517295,0.6926576456883566,0.6799540114663504,0.5622878922750761,39.35434341430664\n0.04994475138121547,0.4083122707010687,0.12397445865003863,0.24204931528668766,0.41161591503077266,0.27621843447692457,31.191341400146484\n0.24243093922651934,0.07018667040266681,0.340244126106921,0.5092309427952914,0.29950217484526936,0.06848357230182932,40.22740173339844\n0.2123756906077348,0.29971718144999226,0.68108839185352,0.43482486226853784,0.3842382156273153,0.2455319912530511,59.83843994140625\n0.01016574585635359,0.34850892184163046,0.9762946755657217,0.7435927683422727,0.604432281553455,0.659439812722639,28.464689254760742\n0.24375690607734807,0.3805838391364888,0.1993085788638622,0.310735332353768,0.35618981900418134,0.2503284307281969,38.799720764160156\n0.0017679558011049724,0.35013813913910896,0.7303187699888084,0.6586099891718888,0.6398004913587753,0.5331667873482413,38.12824249267578\n0.019889502762430938,0.2488684301864725,0.8566551925815343,0.7675555825983799,0.4984818178348721,0.6317731158826583,39.12359619140625\n0.20861878453038674,0.18705664247579568,0.9876044023333055,0.6061552327527129,0.20272163027138218,0.040218261816222206,53.63764190673828\n0.0072928176795580115,0.4303880552504326,0.9515303001905316,0.7730588957874595,0.6060314419795761,0.6673403503245249,29.79859161376953\n0.011049723756906077,0.17226268436620557,0.5018189868491925,0.5366474701542616,0.5695751939477182,0.2265963286016701,25.741071701049805\n0.004861878453038674,0.40240451169283087,0.966769158473706,0.769003760230477,0.5961627794528662,0.6931418000799433,37.094444274902344\n0.0064088397790055245,0.314000025559905,0.5245715643914063,0.3720458855429063,0.5102916628554562,0.2621687775149127,28.93661880493164\n0.00861878453038674,0.23269489413540206,0.03510252180404401,0.3651110678194675,0.5130604717247288,0.2737725406679624,32.52387619018555\n0.03955801104972376,0.06559816724165672,0.9386763858652805,0.7723741078446504,0.6130482742927353,0.5230277078579926,43.44583511352539\n0.01701657458563536,0.2009741833302612,0.09044966851118497,0.5668079130266792,0.7643808976958356,0.24971293906566072,68.20833587646484\n0.008176795580110497,0.3251784453063963,0.6813972887764688,0.6311267694219667,0.7474794688727516,0.47411013841236,55.20448303222656\n0.26232044198895027,0.10311616174570566,0.5983068597638288,0.8393058768425868,0.19257109499363076,0.6092243306781548,31.867687225341797\n0.17193370165745855,0.05643033090053182,0.9577158772600493,0.4657748954124031,0.45702841396008304,0.23390847445549456,58.139366149902344\n0.009723756906077349,0.3701485239646831,0.5838367851949202,0.5762341679263904,0.7513570713046314,0.2697444228767117,56.5970573425293\n0.0338121546961326,0.24785254590131478,0.24304828130527337,0.184620021063836,0.22830990220191608,0.14550177462601024,28.636489868164062\n0.0075138121546961326,0.3119990855469411,0.7168844910093125,0.6735181204207309,0.732200778067188,0.5778944370231615,49.77871322631836\n0.36861878453038677,0.2231799477430532,0.08877152943032919,0.6435625184633796,0.17466510496492918,0.6093099707021656,27.45339012145996\n0.23403314917127072,0.15805952488119154,0.48393377438067836,0.3459108048386535,0.3402410189488014,0.16669312557457297,31.325904846191406\n0.1538121546961326,0.22115329201701595,0.21972781550603238,0.4097282773662494,0.5313670309200256,0.2816108726936685,54.831932067871094\n0.05325966850828729,0.29874547592669026,0.8373189836039577,0.7331458816738878,0.68546769883158,0.5437987877503289,46.850704193115234\n0.01723756906077348,0.20245647263235247,0.6310990753242192,0.6398420357967091,0.7916352410225961,0.31883827212821464,58.12853240966797\n0.03403314917127072,0.24383720205212103,0.2401876216575224,0.19119636718590863,0.22814738733252132,0.14598948106647297,29.878150939941406\n0.051933701657458566,0.22008502948269712,0.8018297444083031,0.6980144738044527,0.6832352948658851,0.9355830641561274,40.780113220214844\n0.001988950276243094,0.34932258366735525,0.7268018688221015,0.6692378980442859,0.6872408983363584,0.4943350484381001,46.04481887817383\n0.8075138121546961,0.06543822989805052,0.03692745747435618,0.2974242456811121,0.0482327699587925,0.28168964188480744,10.28801155090332\n0.020994475138121547,0.24575961256426387,0.9736374575787231,0.7568740816261108,0.7181885155437856,0.6795163863744119,41.615169525146484\n0.09723756906077348,0.11694305376476474,0.23284019070629655,0.5570863061098956,0.47551647945126324,0.22484891323352535,74.34078216552734\n0.4335911602209945,0.2893562297577439,0.6007184539851965,0.32871965013526366,0.25844441588949524,0.20681724054189887,29.16156005859375\n0.01723756906077348,0.20318471208571073,0.6310712792691936,0.640218371431366,0.7921181994658698,0.3156583034429535,57.65870666503906\n0.04596685082872928,0.20491790948663957,0.6405750263211663,0.534660989652339,0.7026082549968595,0.24820052765308864,56.48314666748047\n0.29569060773480665,0.27000536397113695,0.5724449433640165,0.7712808290072614,0.22880021026844394,0.9307563654103201,18.640804290771484\n0.04464088397790055,0.21772234626882045,0.8887275964085742,0.8108437080683357,0.3327935575099377,0.682981433277136,24.038124084472656\n0.012154696132596685,0.24543110285115938,0.7721714810061446,0.7218117480187329,0.6989807161465774,0.6570252670886549,44.10504150390625\n0.0022099447513812156,0.3584040934201348,0.7271288013532731,0.6688520349252074,0.6829511878293744,0.4830566989722748,43.560054779052734\n0.009502762430939227,0.2567873927691512,0.847876222359764,0.7186402866418624,0.6416695299507872,0.8292809733780968,44.49293899536133\n0.011049723756906077,0.34501499342651165,0.7356018876595859,0.9054159003091523,0.4389331123356022,0.7824034891749282,26.576601028442383\n0.004419889502762431,0.19998507519995304,0.005629674400522679,0.5376919206339896,0.8090168648306103,0.26715807574756845,46.71831130981445\n0.02143646408839779,0.19880779546374683,0.5919807322603496,0.6545000705794817,0.7857047418233797,0.25453411660648156,66.8216323852539\n0.07138121546961326,0.20170172213458876,0.8742363883505011,0.7871381358916143,0.898860599789329,0.3607896452224604,36.481895446777344\n0.008176795580110497,0.08286947830040739,0.7822754106630445,0.49437402177521594,0.7384948778280314,0.2632743681400723,51.043663024902344\n0.8083977900552486,0.06962726842925089,0.0340607081565347,0.30855353842120065,0.029463081603761498,0.28070791029150866,11.043731689453125\n0.10430939226519337,0.26215021725963433,0.9130665011766088,0.692074087267528,0.6180816490790626,0.5056776892686556,31.058570861816406\n0.012596685082872929,0.2827189246803879,0.6937673395606481,0.6610728438948962,0.7248035880513823,0.5071898246209783,47.88194274902344\n0.1940331491712707,0.35620731253485555,0.7501788179026235,0.6507117045863066,0.6447592527698269,0.485211441238289,24.8347225189209\n0.23425414364640884,0.19075021799174804,0.955259130363037,0.3997899201788723,0.35089238695358055,0.0984330650218067,45.84321975708008\n0.03911602209944751,0.37260477222885086,0.0689783352725232,0.2754348116358478,0.41972998729878364,0.2889454254377294,48.26264190673828\n0.013480662983425415,0.1508469112037763,0.7288639541744752,0.7235945785411421,0.5272220197956685,0.6046500123469468,27.130918502807617\n0.028950276243093924,0.14304694533755766,0.46510052547052716,0.8072458917635945,0.4742428779368059,0.5238142341816621,42.14366149902344\n0.12883977900552487,0.08561034156272825,0.024415453191987395,0.5390352959374481,0.4862679199262703,0.4034597871858485,49.42897033691406\n0.09082872928176795,0.20583543779705296,0.00015382375281716102,0.5812908802832032,0.5572144799649923,0.34225419324918865,67.22881317138672\n0.794696132596685,0.20043278993058072,0.6013069664906855,0.2947601228496966,0.03253288694378259,0.3943293398265265,8.361031532287598\n0.009502762430939227,0.36578029917799215,0.5923267188811494,0.5811563045657469,0.7530083846573636,0.27137299430752476,62.660919189453125\n0.012375690607734807,0.3391033335074542,0.8598172378518685,0.7446586556619494,0.5658910923968724,0.7920517335418886,34.247920989990234\n0.001988950276243094,0.5347886617379755,0.7357630623420093,0.7038869770148729,0.6759238308557154,0.4590545179018314,39.27620315551758\n0.014585635359116023,0.14803888031680812,0.7308917506528633,0.7253345353836534,0.5406500754658485,0.6156902138376934,28.95391082763672\n0.004861878453038674,0.1992657926923118,0.1093201662569068,0.522782598449595,0.5331648663619517,0.23556920690535327,26.36274528503418\n0.05259668508287293,0.2171383458334883,0.8859980662417838,0.7853493506914417,0.8841945147812416,0.38109856958407645,32.58450698852539\n0.16773480662983425,0.1955021144003672,0.03552548333982028,0.44205265013794365,0.18418360204132056,0.09705794757322904,61.2926139831543\n0.040441988950276245,0.2794973593736148,0.12512810102541486,0.32095117752492686,0.3552336918158083,0.1667692721933433,21.676965713500977\n0.009060773480662983,0.35725824820800933,0.7224803673450347,0.9107274728742454,0.44573363053714654,0.8049159571199657,34.49715805053711\n0.012154696132596685,0.2641705292714745,0.6484120709897326,0.6388380771257733,0.7783284247376158,0.33386098012235227,55.75\n0.052817679558011046,0.29657802761839963,0.16343206211375902,0.1509522729886832,0.330756565327323,0.21780761315764338,22.020891189575195\n0.009944751381215469,0.0416495478331882,0.18014080124872325,0.5058736954721977,0.8059076214122077,0.25833196947643966,53.1890754699707\n0.00574585635359116,0.12358503614781231,0.14251519121317982,0.5494988557035709,0.8091933145856949,0.2516218650163373,57.22093200683594\n0.010828729281767955,0.28605613495014975,0.8307149804236728,0.8920119206633849,0.49460280427532755,0.7854029758038571,35.94598388671875\n0.00574585635359116,0.3304405467645989,0.8403428548969432,0.717700638490773,0.7379296624012978,0.6632595050256542,48.22549057006836\n0.3085082872928177,0.19076822656548348,0.7908103697147427,0.6550610012248087,0.19990969381285462,0.028515435209538507,131.09463500976562\n0.0676243093922652,0.15759666098233216,0.37213137850178263,0.7850587624165801,0.9344947483624759,0.3060517441736402,46.441505432128906\n0.016353591160220993,0.1931686690811777,0.6718458004086124,0.580912162777441,0.684979037080661,0.3003386466406322,41.16340637207031\n0.12287292817679558,0.3043412567516564,0.4900059605203816,0.4190580664861909,0.10236769887134915,0.1482246028750804,18.03333282470703\n0.012375690607734807,0.21712421923411224,0.655873168709487,0.647048386826166,0.8028744024967456,0.4008586861700473,53.37290573120117\n0.017679558011049725,0.13532270637603722,0.5162516322264483,0.5298758106015443,0.5405634087084361,0.2678357729862844,31.77478790283203\n0.002430939226519337,0.3472071916884008,0.7375927641870239,0.6760953049567984,0.6297296259970984,0.48239219127880406,37.25838088989258\n0.0075138121546961326,0.3911815533917384,0.9640400526741679,0.7610911844182621,0.6096339921107943,0.6746398127435612,31.190677642822266\n0.20640883977900554,0.275810752475049,0.5181822486040597,0.4171763883129068,0.5329172134567814,0.23503881848300978,67.9072036743164\n0.026077348066298342,0.06406899126388833,0.7920378944287443,0.8784185822647363,0.3981855368796443,0.5021291188038322,23.67318344116211\n0.06939226519337016,0.2157517803381611,0.8913806555965004,0.784815811563827,0.905830629701606,0.35547861410590437,41.16714096069336\n0.0013259668508287293,0.24081412872210384,0.5118135146284496,0.42957521835218576,0.5376352012100286,0.20550193614734022,32.92200469970703\n0.07756906077348066,0.3209941692949588,0.8491415157592201,0.757117032478864,0.8393855669135583,0.3125210320762536,41.39944076538086\n0.010386740331491713,0.22919348581846882,0.7474688935028894,0.9160342816971275,0.4948116511697162,0.8289481674108629,35.75487518310547\n0.0022099447513812156,0.3432118636777332,0.7299161303398267,0.6557350707476434,0.6413288602137129,0.537336094620338,37.98735809326172\n0.1971270718232044,0.1599840562768868,0.2713410581997077,0.3869778355028025,0.4195375153650051,0.34595241904250373,50.17329406738281\n0.012596685082872929,0.24241721370438266,0.7746925619786056,0.7393828111634377,0.5568141312870947,0.6114317697784278,35.30780029296875\n0.08883977900552487,0.1665425288700571,0.7278064309817449,0.6979620726401334,0.6003739371865102,1.063138788142303,22.065902709960938\n0.01149171270718232,0.14423215945062523,0.35925959831520965,0.7424875801493565,0.15539098256747594,0.0018981258118753402,68.71764373779297\n0.23668508287292817,0.32178128220335744,0.27097765130320106,0.3247585984869454,0.3863995340368965,0.22735725800555556,39.94444274902344\n0.015469613259668509,0.24454120283630856,0.9712531926084036,0.7649295697046511,0.705874839149886,0.6959060220297307,42.7122917175293\n0.32773480662983423,0.2580355327397612,0.039020765647317886,0.4176753903094929,0.1615425437349293,0.0879865234288794,27.202777862548828\n0.01569060773480663,0.2929935261137155,0.954541440465948,0.7949864011839828,0.6754004788830371,0.6068387406969883,47.850704193115234\n0.10718232044198896,0.2050568273593243,0.1135592025676705,0.5046279768840616,0.1889729987341046,0.08350390311048672,63.065460205078125\n0.34099447513812153,0.24141009700033905,0.14036521940285482,0.40256956375890085,0.18568762894404062,0.11816286865873428,36.92837142944336\n0.04265193370165746,0.3101986447755238,0.9922844941385653,0.7339366628808883,0.5998949769382868,0.6438862101957007,27.253602981567383\n0.16154696132596685,0.1357860720910943,0.7277549976707662,0.4954125175771803,0.6011525268755571,0.2575939377365671,56.08169174194336\n0.11712707182320442,0.1436550518868385,0.4072594387290051,0.4578420736957921,0.16455140599892734,0.16032713021524617,20.61699104309082\n0.22386740331491714,0.14338515051833042,0.9615435001288899,0.4035318396854917,0.35747823735911893,0.10949298948369897,42.968299865722656\n0.04994475138121547,0.11987753286531691,0.7561754666714174,0.7791850682706072,0.3874990964726966,0.5953723021812939,26.275279998779297\n0.24441988950276244,0.38382613986727904,0.20510019459470757,0.3115463594651645,0.3600094476078327,0.2468380783026186,36.20538330078125\n0.0033149171270718232,0.2110675060292362,0.7554867186209354,0.9013083635878505,0.4952315792439627,0.7654676836530131,38.888267517089844\n0.01569060773480663,0.20506449662574158,0.6748724300887378,0.5785886475141009,0.6861691468749518,0.29106381977091667,47.184356689453125\n0.004640883977900552,0.22537953122445528,0.13823983967480058,0.4200727435771011,0.5330236947984869,0.16499840704068705,31.971988677978516\n0.0026519337016574587,0.4401151846803268,0.7510643874847222,0.6904305962047862,0.6586315196694851,0.4543252684240336,41.43156433105469\n0.013701657458563535,0.2501558443757232,0.8990774893249069,0.8131481683628324,0.5595224380577394,0.5308510099367914,52.133705139160156\n0.008397790055248619,0.18934962057934623,0.32089174873703175,0.44721892856560597,0.5994570569863141,0.178014157022279,27.50419044494629\n0.002430939226519337,0.5725315267079637,0.7176015019187977,0.9517659210851293,0.39850621564146743,0.8091614570208743,25.92837142944336\n0.018342541436464087,0.3951780933358645,0.1545148754779147,0.12320704741716447,0.3035991782305307,0.18753429409687514,31.346820831298828\n0.024088397790055248,0.19461022605718598,0.7496090624296863,0.7632110497020885,0.6248980424668358,0.9815338447756947,50.814762115478516\n0.06718232044198895,0.4190634081575848,0.2911286029684675,0.20690957086838352,0.2244206579668018,0.1916338194726163,9.045961380004883\n0.37303867403314916,0.4094846269575996,0.001698079068341789,0.6701501546776628,0.22562631956389823,0.5911683953579493,17.848190307617188\n0.0061878453038674034,0.16454007394027004,0.7782277958106119,0.9166726231533809,0.5050278626808663,0.8238651007135218,38.29305648803711\n0.25082872928176797,0.10695175124560011,0.5119679843082866,0.5354339068260487,0.3116882323809847,0.08856539109833932,31.527523040771484\n0.007955801104972376,0.3085390912686613,0.8368181453727939,0.6933102783712425,0.7337160351942402,0.6303097511743818,42.16432571411133\n0.013701657458563535,0.1468263598280029,0.09342648808507163,0.6106331504309079,0.7420299290192839,0.18413617646793026,72.55014038085938\n0.015027624309392265,0.15155733144800201,0.0444188231883807,0.6344208971607666,0.7444732965708646,0.1797138906506942,60.566951751708984\n0.42563535911602207,0.296295079028752,0.8485120942506096,0.508299631193071,0.41986389743447344,0.4913221268770377,22.508403778076172\n0.002430939226519337,0.16030923317298032,0.7224415801781745,0.8830620399847583,0.3751615485024677,0.6440738084717932,32.279998779296875\n0.2501657458563536,0.05641896902435804,0.6645196514750894,0.83153740423225,0.22096627624038642,0.5579525194263338,32.772220611572266\n0.06585635359116022,0.21498693670706298,0.7932487839464557,0.6871864877592002,0.6795758292521872,0.9087260827007589,32.74359130859375\n0.0026519337016574587,0.3522505770302582,0.7630158424112332,0.6907473850618074,0.6256479980236846,0.5646723780152454,43.09888458251953\n0.001988950276243094,0.29805363235000865,0.5223223330807685,0.5404727551495708,0.7976485263781466,0.19799875660098734,50.369380950927734\n0.023646408839779004,0.11780990810744307,0.9445929989702907,0.8638629679394969,0.5143791117304872,0.9337713727599329,37.98179244995117\n0.03469613259668508,0.24605274896954732,0.23950364773862867,0.2617795445884583,0.27136278988624957,0.14926378567359846,18.970670700073242\n0.02033149171270718,0.2615006398623192,0.514162132749576,0.34158532691120547,0.4846876921296517,0.2910332691033254,40.69088363647461\n0.2318232044198895,0.3117540856237139,0.2579431474937338,0.3383960015010442,0.39885150094194527,0.2215316659209503,36.50283432006836\n0.23513812154696132,0.3373665949884512,0.262275152060295,0.32917220564529404,0.3829331871238234,0.23038387522232026,37.62215805053711\n0.0061878453038674034,0.3036812074918011,0.6903671393883235,0.6182908660348426,0.7071716066768403,0.45995168303875555,55.336647033691406\n0.34497237569060774,0.3027611227592486,0.7226720115961731,0.4313794857145436,0.2523753909911855,0.18041712346247213,54.816009521484375\n0.0066298342541436465,0.3086731614075119,0.8366020575679229,0.6943511560443123,0.7513681251380055,0.637227759675582,49.76571273803711\n0.20464088397790056,0.4134985505722716,0.9802104819495903,0.19233966531651162,0.11224374041980625,0.17347857914605871,12.435393333435059\n0.003977900552486188,0.19802876842389178,0.8756120172355553,0.8796714464661888,0.5128830224208817,0.8630027143799079,33.741477966308594\n0.020994475138121547,0.1539837737236739,0.15394050501110862,0.6282065954467182,0.7389403825912022,0.22269651747963035,56.335655212402344\n0.37060773480662984,0.22240179178037148,0.08967332045064694,0.6317758292981944,0.1748817865577067,0.6066016356161846,30.391061782836914\n0.003977900552486188,0.45604241419241004,0.8941878449704616,0.8587038351251509,0.33222663697060906,0.5622749481167192,24.498611450195312\n0.08088397790055249,0.07299490959069817,0.1645779916143247,0.3788878102932336,0.548403516420027,0.22723948763586016,23.53472137451172\n0.01149171270718232,0.27326069298660643,0.9378699183390105,0.7904489367281522,0.5565190880111819,0.5943605106941805,37.2633056640625\n0.01149171270718232,0.3104817448568537,0.8614705726668274,0.7391017503729979,0.7386829105893644,0.6425972542182715,43.77106857299805\n0.00574585635359116,0.1264524801789392,0.13268165776026386,0.5497120331675063,0.8048317541617788,0.2505523769371163,57.32777786254883\n0.001988950276243094,0.8823682993042047,0.7326695099461964,1.002905884654112,0.34382969299131577,0.6898696272714098,16.457019805908203\n0.005082872928176795,0.19221927070809688,0.8751819634620749,0.7881230395937067,0.3730156349032271,0.71064230217852,27.237430572509766\n0.008397790055248619,0.19355461307834063,0.5356295565049259,0.48717005261686436,0.7249033665366801,0.18388506899781404,51.32686996459961\n0.0059668508287292815,0.379550817354769,0.8997255829926187,0.7046360754775284,0.6656284786013651,0.6549153079297525,50.588890075683594\n0.017900552486187844,0.2624537119086962,0.7303521252548392,0.7365853035501185,0.7010040380299395,0.657516654332442,52.29083251953125\n0.07779005524861879,0.2927382815654716,0.6599215049862486,0.6170761117710769,0.5381600819043437,0.3106837590969557,60.51585006713867\n0.04773480662983425,0.3447965424206105,0.07680571497691847,0.1848200982366915,0.39929618254731164,0.3341982337269364,27.61111068725586\n"
  },
  {
    "path": "demo_result/gnnwr/dataset/train_dataset/dataframe.csv",
    "content": "station_id,lng,lat,date,PM2_5,row_index,col_index,proj_x,proj_y,dem,w10,d10,t2m,sp,tp,blh,e,r,u10,v10,aod_sat,ndvi,id,__belong__\n1907A,106.1031,30.8217,20170601,47.4255618,3649,5224,986003.8426,153573.1651,300,0.888030589,308.4597168,290.8873291,97559.91406,0.001398045,150.5676727,-1.21491e-05,75.05997467,-0.695405066,-0.552277148,0.876248121,2900,712,train\n1419A,106.54,29.5186,20170601,41.60526316,3857,5294,1042786.306,4137.579975,202,0.68494314,311.4235229,291.7192078,97549.84375,0.00142687,130.9321442,-1.09546e-05,73.22263336,-0.513628006,-0.453137249,0.958242118,1737,353,train\n2307A,116.508,31.7371,20170601,44.06005587,3502,6889,1875096.51,413131.9583,64,0.899863958,248.1708069,288.4790649,101085.0625,0.001928179,177.0330048,-1.21031e-05,68.50600433,-0.835328877,0.334635347,0.79020977,2903,963,train\n1814A,112.4664,34.6869,20170601,59.93661972,3030,6243,1464253.805,691868.0353,147,0.47071591,212.0818176,287.711731,99078.67188,0.001022207,168.2483826,-1.03006e-05,59.38035965,-0.250004649,0.398837239,0.789968073,2332,633,train\n1901A,104.4219,31.1208,20170601,42.56741573,3601,4955,833789.715,173481.7588,507,0.543905258,176.7321777,290.3390808,94986.32813,0.001026293,150.148819,-1.05076e-05,66.12191772,0.031054454,-0.543018043,0.766114652,3740,706,train\n2402A,114.0322,33.5653,20170601,55.8189415,3210,6493,1619942.621,583682.9574,63,0.603703201,230.3164673,288.1911316,100989.7109,0.001529784,202.7234955,-1.26393e-05,62.502491,-0.464589745,0.385504782,0.872941017,2401,1049,train\n1170A,120.87,32.02,20170601,34.07799443,3457,7587,2238511.318,537323.846,7,1.116045117,262.2901611,288.3232422,101695.7031,0.002089722,313.9808044,-2.86828e-05,72.97457886,-1.105949879,0.149771631,0.694758892,2304,151,train\n2644A,109.0072,32.6975,20170601,42.6755618,3348,5689,1210469.108,408518.0412,276,0.63067764,299.1253357,289.3021851,96461.11719,0.001694863,148.0795441,-5.47218e-06,68.78479767,-0.550951779,-0.306930691,0.625590801,3428,1261,train\n1609A,120.8478,40.715,20170601,32.58615819,2066,7584,1962917.892,1553225.327,24,0.922271192,60.66659927,282.9402771,100838.9297,0.000596107,400.8572083,-6.53703e-05,54.12990952,0.804007053,0.451837182,0.6214481,3128,457,train\n1213A,119.135,33.5039,20170601,45.50277008,3219,7310,2048245.053,671745.646,7,1.03248632,255.4097748,287.4474487,101651.3594,0.0017421,242.3017426,-1.82577e-05,66.64586639,-0.999180734,0.260126501,0.747934103,3144,182,train\n1242A,120.634,28.0089,20170601,34.10277778,4099,7549,2341518.945,71385.3921,22,0.551493347,327.9435425,290.423584,100212.3281,0.002784423,256.3656006,-3.21053e-05,81.16259003,-0.292743325,-0.467382342,0.546185672,2428,206,train\n2261A,130.8625,45.8194,20170601,28.55477528,1249,9186,2471285.721,2374560.904,185,1.229182959,71.31165314,274.5661011,98913.14844,0.000944573,281.9474792,-6.10919e-06,70.0810318,1.164360404,0.39389804,0.375061423,3027,922,train\n2449A,114.2894,29.8539,20170601,36.90972222,3803,6534,1728092.585,152809.1,48,0.823998511,279.9075928,290.0158997,100697.7813,0.002568891,178.2748413,-1.78984e-05,72.78683472,-0.811717153,-0.141735032,0.799533367,4608,1085,train\n2453A,113.3983,31.7308,20170601,48.91364903,3503,6392,1607578.223,357279.6377,87,0.765293658,274.4717712,288.379364,100175.9844,0.001838981,210.3170013,-1.43328e-05,71.00125122,-0.762966931,-0.059631199,0.804376483,3482,1089,train\n2354A,114.9289,27.8328,20170601,48.87916667,4127,6637,1832791.062,-70053.83303,51,0.799427629,306.5995789,291.680603,100770.7266,0.002986033,228.5323486,-1.52127e-05,71.63578796,-0.641829133,-0.476592034,0.669696867,2544,1004,train\n2673A,100.6188,36.2866,20170601,22.37640449,2774,4347,462219.4506,767961.5441,2871,0.637171507,294.7624512,278.3710022,71072.88281,0.000794096,297.9203491,-2.05624e-05,46.41195679,-0.578600705,-0.266849637,0.152113423,1983,1287,train\n1010A,116.23,40.1952,20170601,48.23876404,2149,6845,1631926.783,1407069.146,57,0.647320211,147.3508606,284.052002,100057.2891,0.001045819,141.0935364,-6.08105e-06,51.74059296,0.349266022,-0.545010746,0.785904706,3249,9,train\n2503A,108.6553,21.9508,20170601,31.75706215,5068,5633,1355284.16,-847078.7388,12,0.299408495,304.2290039,294.9709778,100761.1172,0.002850934,280.3829346,-2.62083e-05,77.93145752,-0.247560546,-0.168401971,0.508985996,3794,1136,train\n2915A,106.7619444,31.85805556,20170601,21.37042254,3483,5330,1029462.664,283241.2533,384,0.882093132,326.7931213,289.4392395,95241.83594,0.001962412,118.4081955,-8.05066e-06,72.68408966,-0.483145982,-0.738009632,0.695916176,3499,1357,train\n2262A,130.9467,45.8309,20170601,29.78267045,1247,9199,2476322.779,2377997.411,294,1.201147079,74.0170517,274.6150818,98922.9375,0.000931429,283.6371765,-6.17343e-06,70.24242401,1.154702544,0.33078143,0.365109205,4099,923,train\n1737A,111.4917,36.0417,20170601,72.86685552,2813,6087,1355986.122,839151.8689,450,0.449992746,81.76942444,285.7096863,94505.49219,0.000878388,134.7795715,-6.38288e-06,53.3822403,0.445355088,0.06443841,0.559331894,3125,560,train\n1949A,106.7704,39.2282,20170601,42.43454039,2304,5331,923769.3521,1167549.166,1094,0.267566115,109.431015,284.7584229,88080.60938,0.000295676,343.7106323,-7.19597e-06,34.00588608,0.252331287,-0.088997483,0.357204139,1771,752,train\n1978A,119.959,37.18,20170601,36.77761628,2631,7441,2005083.073,1119093.992,58,1.18651855,221.6113129,285.6207581,101059.1016,0.000754719,331.9237366,-2.90607e-05,61.2922821,-0.787916958,0.887137592,0.678234279,2306,778,train\n1470A,109.2,34.6575,20170601,67.91428571,3035,5720,1193064.872,644194.9663,385,0.998359978,329.9326172,288.1097107,96786.19531,0.000930122,133.8486176,-8.47837e-06,57.2674942,-0.500263512,-0.863978624,0.616701365,3677,398,train\n1328A,114.3006,30.5494,20170601,44.58333333,3692,6536,1712938.32,234138.7098,38,1.120484591,301.2478027,290.1384888,101301.0625,0.002528618,213.7231903,-3.53923e-05,68.71790314,-0.957974017,-0.581181109,0.802339196,1716,275,train\n2336A,117.0216,25.1035,20170601,24.6232493,4564,6971,2093287.343,-340977.7941,338,0.398720503,260.2210083,291.0870361,94684.64844,0.002532167,110.1729736,-7.23627e-06,78.83322144,-0.392924398,0.067738131,0.448465586,3799,986,train\n2303A,115.8556,32.8603,20170601,54.9719888,3322,6785,1790748.555,532383.4222,29,0.887989879,254.5608826,288.2521973,101337.125,0.002175472,197.2092438,-1.31597e-05,64.86552429,-0.855936646,0.236428618,0.839790285,2629,959,train\n1308A,120.3905,36.1851,20170601,42.19219653,2790,7510,2069799.107,1011370.883,28,0.7155146,189.3818665,285.9462585,101179.6328,0.000868624,359.5069885,-5.9206e-05,66.18849182,-0.116635114,0.7059443,0.650496602,2283,260,train\n1036A,118.1662,39.6308,20170601,47.58448753,2239,7155,1794193.98,1373720.072,30,0.678802371,193.2322235,284.0889587,101426.6172,0.000736898,184.281189,-8.81654e-06,51.74806595,-0.155372381,0.660781443,0.808539331,2423,26,train\n1613A,118.6663,24.9424,20170601,26.91374269,4589,7235,2251176.99,-322884.4372,5,1.672789454,322.2612305,293.5256653,100951.1875,0.002228093,415.8861389,-2.98341e-05,79.07250977,-1.023948312,-1.322782874,0.38532877,2142,461,train\n1124A,125.454,43.7878,20170601,22.37073864,1574,8321,2187664.251,2011264.353,242,1.296965241,44.60767365,277.5579529,98681.42969,0.001147033,263.9197083,-1.01526e-05,60.41678619,0.910770535,0.92337203,0.468828708,3106,106,train\n2447A,114.3036,29.8181,20170601,41.71910112,3809,6537,1730178.405,148888.1806,65,0.790231884,275.6500854,289.8298645,100272.7188,0.0026672,174.8209839,-1.65275e-05,73.55194855,-0.786396563,-0.077761799,0.781116128,4021,1083,train\n1875A,109.4839,24.3158,20170601,34.85854342,4690,5765,1396816.058,-565057.214,93,0.481155843,341.8652954,293.6621704,99716.19531,0.00354164,265.3618164,-2.06137e-05,75.41307831,-0.149798959,-0.457243055,0.570562541,2672,685,train\n2835A,101.7227,26.567,20170601,25.5362117,4329,4524,632213.0532,-383772.92,1266,0.261160403,231.4132843,292.8708801,85006.25781,0.002208773,179.5517731,-4.19465e-06,60.23318863,-0.204135671,0.162890717,0.300056636,3692,1325,train\n1158A,118.737,32.0092,20170601,46.43521127,3459,7246,2058024.869,489435.964,8,1.132401824,264.6637268,288.2364197,101423.7813,0.002364973,240.427475,-2.06769e-05,68.27670288,-1.127489448,0.105363622,0.783305407,2719,139,train\n1324A,113.6113,34.9162,20170601,59.82294618,2993,6426,1553909.984,736654.4282,93,0.781253636,226.5361328,288.2816772,100644.0781,0.000916769,202.9169159,-1.51515e-05,56.23620605,-0.567027569,0.537435532,0.823637009,4169,271,train\n1321A,113.734,34.719,20170601,62.79378531,3025,6445,1568539.824,715237.4325,99,0.602926195,204.8696747,288.1617737,100291.4531,0.001057655,222.3699799,-1.23789e-05,58.76182556,-0.253556967,0.547018111,0.840416908,2582,268,train\n1847A,113.1094,29.3578,20170601,52.86376404,3883,6345,1634409.087,74799.81927,36,1.037202001,311.8988647,290.5915833,101126.9531,0.00242957,255.5616302,-3.24913e-05,71.20270538,-0.772061884,-0.692609847,0.81054759,2291,663,train\n1713A,112.0369,22.9394,20170601,34.66527778,4910,6174,1668235.942,-682578.3419,84,0.861535609,258.6884766,293.9867859,98492.67969,0.003142678,207.4624939,-1.14652e-05,78.7071228,-0.844793677,0.169018582,0.54842627,3794,541,train\n1508A,112.9433,27.8614,20170601,42.59331476,4122,6319,1651718.931,-101952.5419,60,0.917779863,354.5755005,291.0956726,100709.7031,0.002673088,239.433075,-1.76781e-05,72.40300751,-0.086843744,-0.913661897,0.7768085,1855,420,train\n2505A,109.5681,23.1478,20170601,38.18571429,4876,5779,1424864.633,-697681.3057,113,0.446328253,293.3067322,294.0881348,99581.52344,0.003272329,230.177948,-1.65834e-05,77.88550568,-0.409918129,-0.176567376,0.545196533,5219,1137,train\n1592A,109.9486,39.8261,20170601,28.75915493,2208,5840,1160434.573,1273489.105,1465,1.359291077,64.52292633,280.5108032,85925.45313,0.000811057,269.8643188,-1.06983e-05,45.31322479,1.227090716,0.584739745,0.395643771,2196,441,train\n2490A,111.9561,27.7569,20170601,35.39577465,4139,6161,1563890.853,-130231.2769,128,0.783385158,337.6931763,290.3634338,99599.28125,0.00238625,225.6069031,-1.17009e-05,74.90756226,-0.297405303,-0.724736094,0.778168559,3526,1125,train\n1444A,106.6948,26.5155,20170601,35.31601124,4338,5319,1098775.891,-345983.121,1093,1.261153102,236.0878448,287.561676,88480.24219,0.002084561,338.7220154,-1.11839e-05,83.0590744,-1.046602964,0.70365417,0.596750736,3109,373,train\n1329A,114.4272,30.6103,20170601,57.25492958,3682,6556,1722603.115,243464.6664,31,1.047051668,301.5730896,290.0148926,101304.9844,0.002581318,206.7971802,-3.31349e-05,69.16859436,-0.892094076,-0.54816556,0.802711964,3155,276,train\n2224A,124.3419,43.1747,20170601,44.17746479,1672,8143,2132306.475,1915167.6,163,1.25522995,24.29963684,278.6562195,99670.41406,0.001122397,290.611969,-9.13661e-06,55.59843826,0.516523421,1.144030452,0.488097876,2547,885,train\n1908A,106.1064,30.7856,20170601,49.45391061,3654,5225,986780.9649,149330.9605,285,0.896087289,308.9842834,290.8911133,97568.39063,0.00139715,150.3124695,-1.19645e-05,75.09119415,-0.696582735,-0.563688695,0.880144715,2655,713,train\n1911A,106.9222,27.6869,20170601,30.9275766,4150,5356,1103370.845,-206732.1068,869,1.204445839,270.4447021,288.2242737,90735.42188,0.001904941,244.5178833,-1.07473e-05,77.88352966,-1.204409957,-0.009291916,0.71316433,2938,716,train\n1159A,118.907,32.105,20170601,37.08189655,3443,7273,2069710.824,504137.4008,25,1.129577279,264.0560608,288.1342163,101281.9219,0.002416553,245.4673462,-1.9872e-05,68.91624451,-1.123499274,0.117022552,0.779545009,3755,140,train\n1447A,106.6867,26.5495,20170601,26.4756447,4332,5318,1097545.325,-342114.4817,1096,1.251607895,235.7802124,287.4953918,88355.92188,0.002077359,337.0706482,-1.11982e-05,83.03549957,-1.034917235,0.703895271,0.599681735,2841,376,train\n2700A,75.9435,39.4365,20170601,133.8005618,2270,399,-1484909.609,1281986.561,1290,0.203933403,64.68322754,288.2397766,86647.0625,0.000276627,371.1020508,-1.81205e-05,33.80693054,0.184344232,0.087212622,0.251003951,3226,1313,train\n2074A,117.6569,24.5157,20170601,27.33613445,4658,7073,2168256.488,-393867.4781,14,0.621001422,248.913269,293.8982544,100310.4141,0.002129103,191.2363129,-1.00656e-05,77.4164505,-0.579409301,0.223444968,0.43692854,2568,825,train\n2253A,128.9094,47.7317,20170601,18.82248521,943,8873,2262962.407,2547270.472,248,0.76622653,59.92066193,272.6238098,97123.69531,0.001088169,181.3152924,-3.41212e-06,74.44569397,0.663028598,0.384052247,0.313867033,4110,914,train\n2707A,88.1214,47.9047,20170601,9.540785498,915,2347,-466422.3514,2190396.594,1013,1.389637232,347.1051941,275.0678711,87218.55469,0.000794801,144.9333344,-9.32686e-06,59.67956543,-0.310230374,-1.354565859,0.137945384,2472,1320,train\n1275A,117.266,31.9438,20170601,52.0210084,3469,7011,1934510.403,451937.7037,33,1.028813601,257.9957886,288.6001587,101257.9688,0.002219917,239.5991516,-1.71932e-05,67.73134613,-1.006307244,0.214016482,0.78590548,3859,231,train\n1771A,121.1303,41.1386,20170601,33.10893855,1998,7629,1970264.929,1608832.426,44,0.724091947,52.45780563,282.2090454,100763.1406,0.000662681,327.9137573,-2.38005e-05,52.1627388,0.574124098,0.441237658,0.599637628,2085,592,train\n1857A,111.7158,29.1456,20170601,34.8832853,3917,6123,1514159.428,27711.98488,72,1.092972755,319.6559448,290.374115,100744.2813,0.002004648,244.2007599,-2.21838e-05,70.55252075,-0.707624376,-0.832980871,0.823841989,6291,670,train\n1110A,121.565,38.95111111,20170601,28.5,2348,7698,2073528.812,1360414.358,27,0.202048704,113.3042221,284.4041138,101105.7891,0.000428921,504.8711853,-9.69823e-05,61.75147629,0.185569659,-0.079922333,0.641193926,2532,93,train\n1629A,118.0018,37.3617,20170601,54.07541899,2602,7128,1845743.867,1102144.139,12,0.797798097,224.3066864,285.9794922,101616.7813,0.000803164,191.8181,-1.08153e-05,52.10063553,-0.557247877,0.570926011,0.790579975,2740,473,train\n2538A,103.757,29.5634,20170601,52.01133144,3850,4849,791606.1334,-16553.87505,380,0.87563926,115.0060654,291.2200928,96534.74219,0.001024524,134.3856659,-1.23178e-05,70.67913818,0.793581426,-0.370098114,0.897755027,4182,1170,train\n2363A,114.9367,25.8664,20170601,47.77146814,4441,6638,1880028.498,-296077.7442,109,0.469468415,170.721756,292.2148132,99394.53906,0.002014583,267.4163208,-1.70639e-05,75.71694946,0.07573273,-0.463319719,0.537528396,2323,1013,train\n2232A,126.4078,41.9419,20170601,32.37709497,1869,8473,2324880.745,1818278.223,500,0.647617877,37.19845963,275.3440247,94072.5,0.001318248,221.3408356,-6.56498e-06,75.49783325,0.391525477,0.515865028,0.460416764,2581,893,train\n1235A,121.56,29.8208,20170601,36.98472222,3809,7698,2366794.505,300549.4462,4,0.4400042,254.4442749,289.9533691,101425.6484,0.003185493,369.0124512,-3.28363e-05,78.97048187,-0.423882335,0.118014678,0.589393854,2690,201,train\n2171A,112.7549,37.7019,20170601,59.83055556,2548,6289,1422573.517,1055309.148,822,0.515580297,245.4406586,283.4151611,91511.89844,0.000796085,154.3292084,-6.42277e-06,51.69888687,-0.468929231,0.214309245,0.512913585,1784,838,train\n1904A,104.3539,31.1108,20170601,63.7266289,3602,4945,827903.7342,171719.042,489,0.568953454,167.7808685,290.5610046,95322.22656,0.00102244,145.2479553,-1.01879e-05,66.41021729,0.12046773,-0.556053579,0.776457191,3625,709,train\n1968A,120.014,36.253,20170601,33.08732394,2780,7450,2037707.765,1011454.822,21,0.618620932,187.4125977,285.3928223,101417.9297,0.000895404,245.4938202,-1.51989e-05,64.22150421,-0.079807974,0.613451302,0.676147103,3162,768,train\n3038A,103.3758,23.3682,20170601,30.92655367,4841,4788,819057.8453,-743094.998,1303,1.201764345,201.7079315,289.4332275,85581.4375,0.002862381,193.5937347,-4.21486e-06,83.74964142,-0.444490492,1.116541862,0.360403746,3504,1395,train\n1749A,123.011,41.0931,20170601,28.875,2005,7930,2109908.208,1642530.524,90,1.024908066,194.9835358,281.1362,100626.1094,0.001023153,271.911499,-8.1068e-06,52.71163177,-0.26497367,0.990063429,0.575857282,2169,571,train\n1277A,117.302,31.7956,20170601,51.98022599,3493,7016,1941573.347,435374.7744,21,1.109904647,259.0768127,289.1032104,101484.3672,0.002264974,251.5123444,-2.29364e-05,67.68444061,-1.089787006,0.210363343,0.793789148,3851,233,train\n1381A,113.4075,22.5111,20170601,29.46927374,4978,6393,1810127.024,-706903.1147,13,0.829056203,252.4943237,295.2363892,100838.6016,0.002912565,293.5805359,-3.66533e-05,76.64382172,-0.790650904,0.249409929,0.524514079,3852,319,train\n1459A,91.1774,29.6541,20170601,13.734375,3835,2836,-345503.2937,-34365.34415,3676,0.362885445,193.4119568,278.766449,60340.83203,0.000903132,357.5426636,-5.2657e-06,38.23548126,-0.084169112,0.352989227,0.088719495,1673,387,train\n2331A,118.0966,26.6761,20170601,19.22050562,4312,7143,2150792.157,-138657.9951,1044,0.282099456,270.1705933,292.0853577,96602.27344,0.002443687,144.4280548,-1.11612e-05,72.29118347,-0.282098234,-0.000826824,0.431283653,6887,981,train\n2162A,112.8564,35.4883,20170601,59.66573816,2902,6305,1479102.825,792919.3951,710,0.467280239,258.1205139,284.2034912,92513.29688,0.001013652,170.318634,-6.13769e-06,59.82877731,-0.457268506,0.096209839,0.676228344,2363,829,train\n1982A,122.019,37.187,20170601,19.37711864,2630,7771,2166315.478,1163642.351,44,0.473622024,53.17795181,284.2929993,101128.4219,0.00092996,337.01474,-1.10024e-05,68.05549622,0.379127055,0.283867031,0.57832551,2930,782,train\n1940A,109.4636,34.493,20170601,70.88997214,3061,5762,1217962.807,627803.409,380,0.931024849,244.3529968,287.4116516,96219.53906,0.001135641,100.0737991,-7.95372e-06,61.3036232,-0.839284897,0.402998924,0.609041452,2922,744,train\n1595A,109.9734,39.7884,20170601,24.92339833,2214,5844,1163042.863,1269237.174,1436,1.301764965,67.7186203,280.4292603,85844.15625,0.000831661,270.5464478,-1.06163e-05,45.66374969,1.204548955,0.493613154,0.396506429,2173,444,train\n1233A,120.088,30.1808,20170601,34.76264045,3751,7462,2227765.732,307453.82,59,0.777298689,309.0681458,289.5455627,100818.2031,0.002606487,227.9638367,-1.59928e-05,72.89274597,-0.603524923,-0.489847869,0.680938125,5614,200,train\n3021A,115.0061,35.76806,20170601,62.33002833,2857,6649,1647996.679,860332.1673,54,0.774536073,209.6607971,287.7931824,101045.1719,0.000786218,205.9085236,-1.07308e-05,54.85531616,-0.38327983,0.673054695,0.86507982,3673,1385,train\n1883A,104.6225,28.76611,20170601,47.41504178,3978,4988,878842.8558,-103259.58,301,0.555002809,131.8848724,291.6523438,96722.92188,0.001210027,149.8258362,-1.32929e-05,72.04242706,0.413217962,-0.37051183,1.00313437,3274,691,train\n2510A,110.1675,22.6411,20170601,38.76056338,4958,5875,1492023.162,-746587.9599,80,0.804365754,270.216095,294.4644775,100256.4141,0.003211519,238.6332092,-1.23341e-05,81.04673767,-0.804360151,-0.00299628,0.538504303,2787,1142,train\n1439A,106.6856,26.6029,20170601,30.36070381,4324,5318,1096699.35,-335907.3823,1150,1.237574816,235.3930359,287.4142151,88227.30469,0.002067968,334.5128479,-1.10392e-05,82.99447632,-1.018587232,0.702902138,0.596409798,4079,368,train\n1425A,106.617,29.7125,20170601,36.10724234,3826,5307,1046997.288,27811.10468,414,0.735382378,311.0783997,291.7601013,97748.61719,0.001499428,127.174614,-1.02793e-05,73.61724091,-0.554372072,-0.483175725,0.937363207,2796,357,train\n1243A,120.677,27.9939,20170601,32.07605634,4101,7556,2345814.187,70701.43436,9,0.737793267,325.4155273,290.6038208,100385.7031,0.002689945,280.7914124,-4.05877e-05,80.28862762,-0.418832123,-0.607386708,0.539707124,2134,207,train\n1960A,118.78,36.864,20170601,52.04333333,2682,7253,1921459.567,1058371.989,22,0.871823311,200.8208008,286.0860901,101342.6953,0.000815353,229.3359985,-1.30122e-05,55.5737381,-0.309877694,0.814893663,0.74447912,2853,763,train\n2168A,112.4254,39.3179,20170601,46.64705882,2289,6236,1361760.843,1244150.952,1095,1.253083229,67.2808075,279.6309814,88407.94531,0.000999305,171.4592438,-3.72581e-06,53.97813034,1.155838251,0.48399955,0.428279877,1871,835,train\n2353A,114.9831,27.8344,20170601,41.76601671,4127,6645,1837668.732,-68856.76044,54,0.832867503,308.3184204,291.6977234,100735.0938,0.002932675,233.7166138,-1.56101e-05,71.11712646,-0.653482735,-0.516360939,0.66236347,3129,1003,train\n1130A,126.561,45.8167,20170601,27.96121884,1249,8498,2185976.788,2272291.929,117,1.197531819,51.73068619,275.9894714,100001.2734,0.000710105,209.7124176,-7.10396e-06,61.15815353,0.940172374,0.741726696,0.412337601,2548,112,train\n1687A,110.9294,21.6533,20170601,25.79741379,5116,5997,1584662.127,-846822.8131,25,1.499594092,257.2289429,295.6622925,100974.1484,0.003086019,263.2003784,-1.80007e-05,80.44173431,-1.462482691,0.331552088,0.464969575,3127,520,train\n1478A,103.841,36.0725,20170601,48.85734463,2808,4863,729031.795,761638.4561,1537,1.236114621,248.9255981,282.8693237,82449.57813,0.000709841,234.7140503,-6.77053e-06,49.16866302,-1.153420448,0.444522858,0.318420291,1619,406,train\n1964A,120.47,36.39,20170601,28.07303371,2758,7523,2069773.36,1037035.314,27,0.565185785,191.195816,285.1802063,101237.9688,0.000992653,296.0322571,-3.24286e-05,65.80377197,-0.109734781,0.554430544,0.64891392,2249,766,train\n1955A,85.6931,46.0872,20170601,28.31534091,1206,1959,-651717.0144,1982218.541,303,1.305851579,108.1486816,285.6183777,97062.57813,0.000109129,620.6276855,-1.02429e-05,38.93966293,1.240910053,-0.40668264,0.212577194,2609,758,train\n1972A,119.976,36.799,20170601,34.60057471,2692,7444,2018041.431,1074706.747,63,0.709809124,226.9320679,284.9526062,101131.1172,0.000885525,249.1580505,-7.83441e-06,63.59031296,-0.518535554,0.484716296,0.659083128,2856,772,train\n2390A,113.884,35.272,20170601,61.12534819,2937,6469,1568193.237,783170.9294,72,0.548376799,298.8278198,287.9819946,100276.1484,0.000853742,179.7498779,-9.34065e-06,54.4716301,-0.48043412,-0.264386415,0.80810529,2129,1039,train\n2871A,121.6147222,29.90166667,20170601,33.82777778,3796,7706,2368980.749,311125.3428,4,0.6134184,255.7086487,290.1271057,101605.7891,0.003091791,403.7295227,-4.43322e-05,78.02191162,-0.594429076,0.151447132,0.572559774,2381,1338,train\n2312A,115.7831,33.8561,20170601,51.48280802,3163,6773,1759494.753,648060.0469,39,0.876777887,241.3581696,287.943573,101230.2266,0.001687986,196.4363403,-1.10325e-05,62.56277847,-0.769476116,0.420292735,0.838687599,2195,968,train\n2703A,81.2815,43.9404,20170601,48.26760563,1550,1253,-995572.9683,1757814.371,639,0.493626207,352.4929199,285.6677551,92803.59375,0.000393966,295.7780762,-1.23629e-05,45.99690247,-0.064535066,-0.489389479,0.221095145,2840,1316,train\n1919A,108.6761,34.3181,20170601,64.58591549,3089,5636,1155014.199,597429.3075,388,0.427577376,159.1076965,286.5556335,94540.39844,0.001147953,93.1432724,-6.72714e-06,63.51910782,0.152512148,-0.399452686,0.620392442,2592,723,train\n2872A,120.7844444,30.7525,20170601,40.42222222,3660,7573,2270546.394,389189.9502,6,1.206874251,274.6819763,289.3324585,101578.8203,0.002154832,300.0643616,-2.23472e-05,73.01953125,-1.202851892,-0.09845262,0.70030129,3384,1339,train\n1270A,117.196,31.7848,20170601,48.77949438,3495,6999,1932792.325,432026.4364,34,1.024951816,256.0180054,288.880127,101334.3672,0.002223135,239.2498779,-1.56752e-05,67.72418213,-0.994574487,0.247684643,0.7954638,3327,226,train\n1032A,114.4586111,38.00583333,20170601,64.80532213,2499,6561,1550102.798,1117361.256,73,0.784852922,45.74318695,285.8088684,100056.0938,0.001023395,127.3562927,-8.78532e-06,52.42238235,0.562113583,0.547743022,0.810598135,2383,22,train\n1432A,104.176,30.6872,20170601,55.30532213,3670,4916,816913.8933,119948.8354,497,0.942406774,164.7892914,290.7298889,96039.65625,0.001094053,167.4013672,-1.2244e-05,69.15605927,0.247335628,-0.909370959,0.822873175,2798,363,train\n3005A,117.1814,34.29,20170601,63.42997199,3094,6997,1864226.975,724850.9935,38,1.080987811,239.3434296,287.5539856,101279.6797,0.001601907,208.4224854,-1.37982e-05,62.61753464,-0.92989105,0.551214397,0.81409514,2935,1375,train\n1952A,84.8897,45.5828,20170601,21.96296296,1287,1830,-714135.383,1926271.785,354,1.908054829,134.3760223,285.3796997,96513.34375,0.000269908,567.0460815,-9.76535e-06,42.00608826,1.36390388,-1.334331036,0.240162075,2059,755,train\n1839A,111.3009,30.7157,20170601,54.33893557,3666,6056,1446117.482,205402.1266,104,0.309547871,345.421875,289.5180054,98509.82031,0.002161921,120.7241745,-8.00594e-06,73.29129028,-0.077938743,-0.299575418,0.773427427,2490,655,train\n2561A,104.6617,30.1366,20170601,33.4432133,3758,4994,866452.3266,58872.72104,377,0.800412118,298.3917847,291.2840271,96588.45313,0.000963947,193.3557129,-1.32982e-05,70.43460846,-0.70415926,-0.380551368,0.944391012,4313,1188,train\n2239A,129.3675,42.8775,20170601,16.46751412,1720,8947,2496128.983,1999050.127,218,1.134649038,87.19962311,276.6505737,98006.32031,0.000797148,304.6461487,-3.4917e-06,67.77149963,1.133291602,0.055485651,0.407669276,3687,900,train\n1322A,113.5991,34.7496,20170601,64.34520124,3020,6424,1556686.197,716717.1943,125,0.655335128,206.991394,288.0125427,100049.8828,0.001021759,213.3342743,-1.21599e-05,59.13059998,-0.297420084,0.583956659,0.846046627,2230,269,train\n2625A,91.7706,29.261,20170601,7.943313953,3898,2931,-293440.6663,-82894.96948,3554,0.663208723,217.407135,279.0942993,61499.89844,0.001461139,321.644989,-7.48978e-06,46.35028076,-0.402872384,0.526820302,0.088327661,2181,1244,train\n1826A,114.2886,34.7967,20170601,58.68994413,3013,6534,1612557.143,733414.1485,74,0.685132325,226.0942535,287.9278564,100723.9375,0.001241425,214.7375946,-1.33414e-05,58.19022369,-0.493613899,0.47513324,0.858758092,3013,643,train\n2870A,119.4369444,32.18888889,20170601,49.86908078,3430,7358,2112178.604,525155.5737,38,1.034299016,260.9939575,288.0992737,101488.7109,0.002501329,257.5121765,-2.24585e-05,69.50085449,-1.021541238,0.161950588,0.780995071,3637,1337,train\n1457A,91.1221,29.6747,20170601,15.42241379,3832,2828,-350402.4839,-31725.91307,3659,0.270927548,2.284201145,278.810791,60481.10938,0.001035743,341.0104675,-4.75675e-06,38.77491379,0.0107978,0.270712286,0.092499048,2179,385,train\n2612A,100.7939,22.0019,20170601,25.28366762,5060,4375,576217.6784,-918539.9801,551,0.537201285,0.952060878,294.5121155,91861.92188,0.003040961,61.1054039,-4.31799e-06,78.18933105,0.008925479,0.537127137,0.303641975,4920,1232,train\n3039A,111.19,34.7822,20170601,56.6448468,3015,6038,1356372.993,684876.3217,380,1.029007792,241.8014832,286.2153625,96123.84375,0.001181354,170.224762,-1.24794e-05,63.56178284,-0.90686518,0.486263812,0.643537164,2388,1396,train\n2598A,100.2143,26.8576,20170601,19.28389831,4283,4282,488704.2501,-358333.2514,2385,0.46882689,49.05317307,285.002533,73996.99219,0.002544035,157.1844635,-4.31272e-06,64.14559937,0.354105651,0.307258576,0.191317394,3915,1219,train\n1050A,114.4965,36.61981,20170601,70.51810585,2721,6567,1586248.191,953004.222,60,0.522804618,37.71175385,287.1472473,100565.875,0.000738263,185.5763855,-9.77771e-06,52.73729324,0.319785953,0.413595915,0.802223086,2015,38,train\n2997A,119.8767,32.3292,20170601,46.44334278,3407,7428,2145171.081,550960.3736,5,1.032977343,260.0223999,288.0259094,101659.2734,0.002538252,260.3939514,-1.99987e-05,69.54625702,-1.01734674,0.179018795,0.760640621,3235,1370,train\n1182A,117.2933,34.2778,20170601,67.94117647,3096,7015,1873800.709,725547.0071,38,1.065492511,240.4212341,287.5091248,101328.3672,0.001641876,209.3422546,-1.38517e-05,62.7490654,-0.926618814,0.525976956,0.810331285,3063,158,train\n1628A,118.0062,37.3803,20170601,57.56779661,2599,7129,1845566.532,1104423.454,12,0.803805292,224.1965942,285.9595032,101618.4063,0.00080481,192.4468994,-1.06852e-05,52.11980438,-0.560337603,0.576302648,0.791954517,2410,472,train\n1414A,106.379,29.8272,20170601,31.79189944,3808,5269,1024070.277,38831.25409,569,0.727498531,314.1569824,291.4524231,97223.65625,0.00149034,129.0305786,-9.87306e-06,73.65727997,-0.521967232,-0.506758571,0.936833382,5508,349,train\n1295A,115.892,28.6425,20170601,36.65598886,3997,6791,1899881.024,41794.03185,23,1.346121788,344.2358704,291.196167,101270.0391,0.002581747,234.6418762,-2.40028e-05,71.11257935,-0.365821183,-1.29546082,0.67128396,2364,248,train\n1117A,121.7769,39.0511,20170601,29.50833333,2332,7732,2086380.808,1376633.089,36,0.22735922,121.3709869,284.0149536,101059.1094,0.000464833,449.9803772,-7.95607e-05,61.49964142,0.194130003,-0.118345924,0.629770041,2882,99,train\n2169A,112.4078,39.3265,20170601,48.93417367,2288,6233,1360215.148,1244938.864,1104,1.243502975,67.59925842,279.388031,87890.69531,0.001008321,172.6505585,-3.76435e-06,54.18214417,1.149653077,0.473917067,0.418770075,2113,836,train\n1074A,115.6951,37.7575,20170601,58.14285714,2539,6759,1653497.29,1107962.694,22,1.171304941,207.1447449,286.6327515,101397.5391,0.000760664,202.3623657,-1.17335e-05,49.35187531,-0.534381628,1.042301178,0.857591271,2515,60,train\n1744A,118.9233,42.2814,20170601,24.72268908,1815,7276,1773620.886,1702038.747,568,1.161489248,78.83686829,279.4663086,94247.65625,0.000646835,275.7804565,-4.18163e-06,44.60363007,1.139504671,0.224914044,0.444131255,1742,567,train\n2406A,112.5573,33.027,20170601,60.09610028,3296,6257,1507296.133,496653.6545,128,0.746194363,302.8924561,288.0501404,99963.35156,0.001378033,203.260376,-1.25738e-05,66.75246429,-0.626598716,-0.405191392,0.841064394,2180,1053,train\n1661A,119.54,35.3962,20170601,42.57464789,2917,7374,2025527.588,901278.7395,8,0.455493599,230.3441315,286.6143799,101210.8516,0.000822518,359.7850037,-6.46903e-05,65.52081299,-0.35067302,0.29069373,0.682033181,2252,500,train\n1866A,109.2256,21.5958,20170601,34.31700288,5125,5724,1417376.638,-879368.5347,30,1.062204719,275.8356323,296.1120911,101067.7266,0.0028437,345.6342468,-6.97215e-05,77.09281921,-1.056705356,-0.107947953,0.47739923,5340,679,train\n2389A,113.836,35.31,20170601,57.52793296,2930,6462,1563381.466,786912.6748,73,0.555281818,316.6461182,287.9078979,100077.8984,0.000832964,171.0006866,-8.73702e-06,54.34914017,-0.381230593,-0.403733969,0.79844743,3130,1038,train\n1125A,125.633,43.55,20170601,26.19602273,1612,8349,2209040.299,1987533.649,221,1.301642656,41.46250534,277.507019,98710.07813,0.001216662,256.736908,-8.99204e-06,61.24198151,0.86183548,0.975455284,0.457995176,3629,107,train\n1298A,115.931,28.6844,20170601,35.57244318,3991,6797,1902326.184,47392.41275,22,1.313311934,346.98172,291.1802979,101390.7734,0.002646531,236.6606598,-2.5529e-05,71.18412018,-0.29594928,-1.279532075,0.670797646,2181,250,train\n2164A,112.8252,35.4813,20170601,60.03361345,2903,6300,1476699.522,791617.9062,726,0.42642048,250.3935242,284.124176,92247.38281,0.00101096,170.0814362,-6.02659e-06,59.60507202,-0.401691258,0.143103316,0.663295627,2784,831,train\n1229A,120.157,30.2897,20170601,50.10972222,3734,7473,2230477.998,321552.287,14,0.795664549,301.7076721,289.5498047,101255.6875,0.002588751,238.3686981,-1.90325e-05,72.02410889,-0.676930428,-0.418147385,0.70338881,2540,196,train\n2013A,119.946,30.049,20170601,31.72916667,3772,7439,2219365.401,289073.9742,14,0.626450121,309.6399536,289.4871216,100054.5703,0.002785187,210.4428864,-1.15656e-05,74.15386963,-0.482436299,-0.399618506,0.694573581,3362,811,train\n1157A,118.626,32.0878,20170601,38.83383686,3446,7228,2046347.497,496252.9203,38,1.059375405,266.2998962,288.1353455,101181.7188,0.002397407,239.8341217,-1.86948e-05,68.09899139,-1.057164073,0.068412669,0.776954234,3913,138,train\n1048A,114.5426,36.6164,20170601,75.5491573,2721,6575,1590031.055,953344.1355,55,0.515759468,26.72362709,287.2576294,100767.0391,0.000736678,189.2630768,-9.73578e-06,52.43909454,0.231924117,0.460672349,0.802488446,2694,36,train\n2255A,130.2719,46.8025,20170601,28.64647887,1092,9091,2390031.597,2472648.711,82,1.240229607,60.56204224,274.4664917,100031.8828,0.000705877,207.1914978,-8.80682e-06,65.10733795,1.080082536,0.609582782,0.368902862,2553,916,train\n1705A,116.6339,23.6714,20170601,29.08888889,4793,6909,2093378.022,-511547.168,17,0.72311306,272.6368408,294.2747498,101239.7188,0.002698529,203.0926514,-1.7308e-05,81.17048645,-0.722348988,-0.033232827,0.430449426,2247,534,train\n2696A,80.2956,41.1933,20170601,69.5377095,1989,1095,-1116731.913,1435698.672,1122,0.92384398,339.5630493,285.6088562,88587.33594,0.000293061,112.823555,-1.7371e-05,45.95623779,-0.322655797,-0.86566788,0.252849162,1907,1310,train\n2654A,100.4686,38.9467,20170601,19.8,2349,4323,431902.6137,1089882.506,1472,0.839065254,9.563155174,282.3387146,84065.375,0.000365978,109.1428146,-4.14774e-06,37.37229919,0.139393717,0.827405512,0.235155448,1970,1270,train\n1383A,113.104,22.6069,20170601,37.28011204,4963,6345,1778601.174,-701598.0687,8,0.587068558,255.4230499,295.0271301,101057.6484,0.003360467,254.9163208,-2.3507e-05,75.69476318,-0.568165421,0.147775501,0.53491056,3303,321,train\n2424A,115.0767,30.2028,20170601,54.00704225,3748,6660,1789245.231,207544.5506,78,0.897421241,250.8583374,290.3422241,101205.3047,0.002554582,190.3108521,-2.52694e-05,70.76367188,-0.847792745,0.294299781,0.750813127,4247,1063,train\n2195A,107.4211,40.7608,20170601,25.21610169,2058,5435,950998.4104,1359328.547,1040,0.293677479,52.34536362,282.9934082,89954.98438,0.00024931,198.2429352,-6.39955e-06,33.65159988,0.23250179,0.179413959,0.380846113,1425,858,train\n1958A,86.2381,41.7128,20170601,41.54929577,1906,2046,-661375.6868,1445002.354,979,0.706081092,350.4817505,286.9968262,89745.60156,0.000135102,193.5648041,-9.89858e-06,36.06020355,-0.116819926,-0.696350217,0.235998198,1532,761,train\n1776A,126.55,43.8256,20170601,32.43871866,1568,8496,2262258.937,2040484.807,195,1.088535547,25.58363914,276.1708069,97975.71094,0.001322086,223.7497253,-1.10763e-05,66.50260925,0.470047265,0.981817245,0.46669054,1638,597,train\n1165A,120.543,31.2994,20170601,40.22777778,3572,7535,2233000.766,446679.0467,7,1.694848657,268.4058838,289.5557251,101547.4375,0.001747284,339.7496948,-6.02197e-05,71.79953003,-1.694190621,0.04722571,0.718467355,2552,146,train\n2479A,111.6236,26.2331,20170601,39.27011494,4383,6108,1563666.138,-311957.2524,119,0.679004788,300.6091919,292.0270691,99986.16406,0.001487941,253.2713013,-1.18733e-05,71.9759903,-0.584413886,-0.345699102,0.734659016,3515,1115,train\n2920A,117.7116,24.506,20170601,32.09052925,4659,7082,2173656.156,-393756.7023,8,0.674512506,260.6334229,293.9732971,100665.5156,0.002155975,204.3484039,-1.09609e-05,77.69190979,-0.665514886,0.109804727,0.420130253,2864,1360,train\n3048A,119.58,26.0931,20170601,24.6103352,4405,7381,2303040.135,-171368.0378,46,2.147257328,325.8845215,292.2287903,99451.75781,0.002383557,414.9331055,-7.29902e-05,81.43119049,-1.204450607,-1.777642488,0.43510133,3425,1398,train\n1371A,113.134,23.0048,20170601,35.82152975,4899,6349,1773092.54,-655937.0211,3,0.817487895,265.354126,295.2848511,101244.7109,0.002753559,250.8326569,-2.57542e-05,72.20375824,-0.814799011,0.066249952,0.572459698,2664,309,train\n2593A,107.5228,26.2403,20170601,23.11350575,4382,5452,1180261.849,-368389.7049,877,0.79744947,252.5640717,288.0232544,90582.97656,0.002956341,301.2262268,-9.07251e-06,84.0309906,-0.760799825,0.23897551,0.573387146,5582,1214,train\n2639A,109.7456,38.2911,20170601,29.62570621,2454,5807,1172750.782,1086224.077,1071,0.422878504,185.6974182,283.2213135,88814.13281,0.00075286,251.7909088,-1.14078e-05,48.07284164,-0.041980024,0.420789629,0.408533186,1739,1256,train\n2266A,126.9934,46.6384,20170601,29.89728097,1118,8567,2182647.764,2377406.709,179,0.880041957,60.71829224,274.9450073,99416.40625,0.000813144,190.606781,-7.22109e-06,65.49192047,0.767581582,0.430455983,0.362668186,1582,924,train\n1341A,113.0014,28.1944,20170601,52.33757062,4069,6328,1649849.695,-62343.35904,48,0.786838472,348.3643494,290.9443665,100827.4063,0.002591404,236.0260315,-1.72821e-05,72.36945343,-0.158762127,-0.770655155,0.784723103,1952,287,train\n2635A,107.0154,33.0706,20170601,47.69553073,3289,5370,1033811.955,430151.5471,510,0.12008667,173.3561401,287.5496521,94011.75,0.001753839,77.07151031,-2.24398e-06,75.89679718,0.013904395,-0.119278982,0.569553077,2997,1252,train\n2359A,117.0281,28.2403,20170601,34.53501401,4062,6972,2012071.248,18009.31259,37,0.819194257,316.5574951,291.7428284,100789.1016,0.00241605,176.9019012,-1.45328e-05,70.7614975,-0.563341439,-0.594748437,0.593418539,2952,1009,train\n2355A,114.9314,27.8036,20170601,42.52089136,4132,6637,1833711.29,-73378.90729,60,0.785281599,308.9792175,291.7711487,100887.9922,0.002918826,231.6656952,-1.55332e-05,71.69377899,-0.610490441,-0.49393183,0.658805549,2279,1005,train\n2489A,112.0194,27.7314,20170601,31.31779661,4143,6171,1570188.666,-132182.1904,132,0.795218647,338.3766174,290.4475708,99497.10938,0.002292658,231.5582733,-1.25185e-05,74.19737244,-0.293101609,-0.739232183,0.774625421,3047,1124,train\n2860A,117.1589,39.0845,20170601,50.49011299,2327,6993,1732426.392,1290822.258,4,1.061497211,190.7718964,285.3466492,101646.2031,0.000780756,198.9930115,-2.10249e-05,49.79409409,-0.19838728,1.042793751,0.853808522,2464,1331,train\n2002A,119.818,31.354,20170601,47.49582173,3563,7419,2169365.122,436744.0927,8,1.484939218,258.0192871,289.3616028,101354.0156,0.002016003,319.4496765,-6.25229e-05,71.55879211,-1.452581286,0.308305174,0.745851994,2767,801,train\n1222A,118.3214,33.9506,20170601,54.23463687,3148,7179,1967887.84,707296.6077,20,1.010190964,248.2906799,287.3928223,101477.8359,0.00178478,229.0317688,-2.27493e-05,64.30950928,-0.938527524,0.37370038,0.784743369,2690,189,train\n2669A,102.905,35.0003,20170601,27.56901408,2980,4713,662441.9863,625862.2214,2907,0.848208785,282.2159119,274.5579529,69771.72656,0.001358416,141.4181213,-3.48597e-06,71.5104599,-0.829012394,-0.179434091,0.210101157,3731,1284,train\n1150A,121.577,31.2071,20170601,40.78472222,3587,7700,2324167.601,460024.3326,3,1.130100608,262.7351379,289.105072,101655.9688,0.001969476,387.7877808,-4.23951e-05,75.65406036,-1.121022224,0.142955974,0.642294884,3352,131,train\n2432A,112.155,32.0197,20170601,64.06741573,3457,6193,1494087.063,371650.2164,69,0.583027184,205.0807037,288.690094,100355.3984,0.001769713,229.0804749,-1.67241e-05,67.86605835,-0.247135058,0.528057694,0.838162959,2640,1070,train\n1976A,120.394,37.364,20170601,30.69662921,2602,7511,2033545.987,1149639.666,75,0.826941431,210.5200043,284.61203,100253.1016,0.000805083,325.6167908,-1.87553e-05,63.81868362,-0.419942141,0.712376833,0.646867514,3377,776,train\n1881A,104.7283,31.5072,20170601,50.53472222,3539,5005,856257.0921,222032.7411,468,0.575144768,339.2542725,290.3222656,95207.50781,0.000890028,139.0517731,-1.02673e-05,65.27946472,-0.203772381,-0.537836671,0.734473348,3465,689,train\n1636A,117.8512,36.8041,20170601,56.51267606,2691,7104,1849471.486,1033488.843,50,1.001184344,193.5328674,285.7624207,100466.4766,0.000942024,184.0343933,-8.87756e-06,56.74019241,-0.234273672,0.97338891,0.784299135,2390,480,train\n1983A,121.531,36.913,20170601,20.8988604,2674,7693,2137020.943,1120939.008,24,0.297029167,103.4968414,284.7035522,101225.7266,0.000956236,348.9638977,-3.36368e-05,68.25534058,0.288829744,-0.069308795,0.585755289,2189,783,train\n1173A,119.176,34.5885,20170601,42.12256267,3046,7316,2019845.744,799261.05,5,0.808309436,243.9462128,286.9439087,101566.2344,0.001325007,254.9545135,-1.93785e-05,64.7420578,-0.726159155,0.355045199,0.711947203,2541,153,train\n1317A,113.641,34.7745,20170601,63.62078652,3016,6431,1559584.469,720331.9279,103,0.665182531,210.0144043,288.1921082,100404.6094,0.001011267,214.8143311,-1.27262e-05,58.54251862,-0.332727224,0.575986445,0.839864969,1961,264,train\n1672A,113.6734722,24.77908333,20170601,34.24229692,4615,6436,1786357.567,-444068.7309,109,0.293609947,292.8977661,293.0881042,99527.21875,0.002214485,172.4920959,-1.06398e-05,76.00717163,-0.270480275,-0.114224441,0.543126583,5945,508,train\n1620A,118.2764,34.9817,20170601,46.4432133,2983,7172,1934992.172,827221.8775,67,0.695376277,241.1823883,286.5305481,100856.2891,0.001240561,209.2254639,-1.31028e-05,62.69041824,-0.609249353,0.335206538,0.7568174,2636,466,train\n1739A,113.4922,37.8792,20170601,50.03267045,2519,6407,1476932.222,1087367.834,814,0.712742805,85.05738068,281.4868774,90467.03125,0.001168665,160.7254639,-4.35382e-06,61.85591507,0.710089743,0.061439585,0.575711429,3710,562,train\n1380A,113.3881,22.5497,20170601,33.25770308,4972,6390,1807414.348,-702891.347,2,0.793949068,250.8421021,295.2735291,101052.7891,0.002968894,287.220459,-3.49542e-05,76.26359558,-0.749968886,0.260579675,0.531543255,2896,318,train\n1375A,113.257,22.7629,20170601,34.17746479,4938,6369,1790137.48,-681142.5905,3,0.723628044,253.4748993,295.2415161,101252.6875,0.003101477,255.1836243,-2.73967e-05,73.64826965,-0.69373095,0.205851644,0.548339605,2149,313,train\n1057A,114.8985,40.8367,20170601,26.28910615,2046,6632,1515272.393,1462367.043,920,0.938503146,343.3285522,279.1560059,90271.85156,0.000821549,209.9865265,-3.5811e-06,49.03476715,-0.269316286,-0.899031103,0.484285414,3527,45,train\n1708A,116.3697,23.5353,20170601,30.43258427,4814,6867,2071619.981,-532528.3935,8,0.602673233,262.4718018,294.2104187,100526.625,0.002467811,201.5692596,-1.58238e-05,79.18592834,-0.597475111,0.078984156,0.426376343,1827,536,train\n2178A,110.9678,35.0308,20170601,72.14185393,2975,6003,1333068.274,711438.7731,362,1.150477529,248.6179047,287.1377869,96518.46875,0.000945231,162.3888092,-1.19863e-05,58.51220322,-1.071275115,0.419485599,0.61713022,3126,843,train\n2606A,101.538,25.0492,20170601,21.25348189,4572,4494,626668.5345,-562008.4502,1787,1.421431303,12.47855949,288.5471497,80281.83594,0.00224828,260.5528259,-6.07959e-06,66.85070801,0.307125956,1.387854695,0.256832361,4176,1227,train\n1244A,120.76,27.9747,20170601,30.625,4104,7570,2353809.713,70498.58135,16,1.17950809,321.7615356,290.9420166,100536.5547,0.002538435,329.4247131,-5.69942e-05,78.96625519,-0.730107486,-0.926381409,0.518862009,3556,208,train\n2517A,108.054,24.6928,20170601,30.28151261,4629,5537,1253969.228,-540945.8669,245,0.535634458,270.6789856,292.1390686,96881.55469,0.003584113,238.6083221,-1.20872e-05,79.8213501,-0.535597146,-0.006322374,0.575574994,5054,1149,train\n1948A,106.3717,39.0153,20170601,49.59103641,2338,5267,895615.8444,1138099.749,1110,0.68385905,120.7404327,284.3329773,88127.45313,0.000343931,212.1736603,-6.47785e-06,38.18918228,0.587792933,-0.349517733,0.391967505,2036,751,train\n2705A,81.3364,43.941,20170601,54.96022727,1550,1262,-991604.3656,1757332.027,664,0.524003804,347.693512,285.4779358,92675.10156,0.000412368,278.4420471,-1.29559e-05,46.75620651,-0.111731127,-0.511953294,0.207190394,2589,1318,train\n2658A,98.509,39.746,20170601,32.68854749,2221,4009,273742.0588,1180166.037,1467,1.165856719,32.14234161,282.2484741,83745.92969,0.0002078,131.4166107,-6.93406e-06,37.21934891,0.62024796,0.987174928,0.227842391,2087,1274,train\n2619A,98.8546,25.8417,20170601,15.54347826,4445,4065,366013.8104,-483171.6468,1021,0.498714298,95.24827576,287.3891907,80338.42188,0.003561329,36.45748901,-9.06615e-07,77.69726563,0.496625751,-0.045593917,0.223707095,5520,1239,train\n2632A,94.3681,29.6376,20170601,9.39017341,3838,3347,-57140.49478,-42861.69842,3017,0.269031703,206.3456268,275.1026917,63637.25391,0.002380212,158.4367981,-4.02048e-06,78.79019165,-0.119388916,0.241089895,0.135992765,3030,1249,train\n1851A,112.9943,29.4402,20170601,47.75,3870,6327,1622358.194,82500.33901,27,0.975420594,311.0901489,290.5697937,101300.9297,0.002306274,259.1890564,-3.23957e-05,70.60830688,-0.735194564,-0.641041577,0.811621726,4660,667,train\n1463A,108.993,34.2629,20170601,62.91193182,3098,5687,1182542.844,594613.5413,425,0.540483534,203.4666443,286.5937805,94704.72656,0.001267999,89.58302307,-7.17826e-06,63.32247162,-0.215222761,0.495783836,0.61308378,2384,391,train\n2220A,120.4439,41.5931,20170601,27.10888252,1925,7519,1905460.834,1648952.346,174,0.694162071,76.59540558,281.1581116,98463.25781,0.00073706,287.0365906,-4.90828e-06,48.51871872,0.675244868,0.160951361,0.544203877,2238,881,train\n1836A,111.158,34.794,20170601,58.11898017,3013,6033,1353483.249,685839.5396,333,1.063268185,240.825943,286.2734375,96021.22656,0.001163409,168.209137,-1.28776e-05,63.14827728,-0.928368807,0.518334508,0.633691907,2616,653,train\n2251A,131.1572,46.5888,20170601,31.57807808,1126,9233,2456745.18,2470001.516,166,1.528999805,63.39850616,274.3969421,98117.24219,0.001057673,293.0010376,-7.44515e-06,67.88625336,1.367121458,0.684703946,0.365666866,3368,912,train\n1193A,120.354,31.5475,20170601,42.00139665,3532,7505,2209286.177,471051.4473,5,1.474445462,265.7662354,289.1332092,101617.7656,0.00180756,319.4313049,-4.36141e-05,70.63874054,-1.470417142,0.1089174,0.733866453,2705,167,train\n1001A,116.366,39.8673,20170601,54.73389356,2201,6867,1650847.552,1370268.366,46,0.458176732,68.18715668,284.5610657,100809.2734,0.001006295,134.995636,-6.92884e-06,46.31597519,0.425366431,0.170262426,0.870966613,2401,0,train\n2555A,103.0109,29.9834,20170601,42.66619318,3783,4730,720255.403,27403.97875,626,0.316516459,113.4783554,287.4503174,89747.13281,0.001829886,91.54737091,-4.13763e-06,77.02692413,0.290319622,-0.126084,0.67332238,3623,1184,train\n1427A,106.562,29.6453,20170601,35.45125348,3837,5298,1042999.88,19303.69085,312,0.7348122,314.2977295,291.8200378,97822.03906,0.001464822,129.1272736,-1.05866e-05,73.43989563,-0.525955498,-0.513146877,0.944549024,3468,359,train\n3020A,117.2099,39.16969,20170601,47.05177515,2313,7002,1734019.558,1301837.331,6,1.009168148,188.9460144,285.3578491,101659.0703,0.000786501,199.6832275,-1.87119e-05,49.46067047,-0.15692535,0.996892631,0.854454517,1978,1384,train\n1763A,123.7308,41.3047,20170601,28.61699164,1971,8045,2155138.321,1682943.257,144,0.922013879,205.1357117,279.1554565,98943.08594,0.001129588,224.1584473,-7.41297e-06,61.90137863,-0.391627342,0.834708095,0.537741661,2687,585,train\n1269A,119.879,28.4231,20170601,30.35369318,4032,7429,2261806.644,100997.9407,91,0.508110583,262.9339294,290.1945801,98859.85938,0.002466876,213.1069641,-7.91098e-06,76.61692047,-0.504248798,0.062526032,0.547872603,4250,225,train\n1112A,121.6330556,38.91194444,20170601,30.51815642,2354,7709,2079987.485,1357256.377,46,0.282652378,113.857338,284.4724426,101299.0703,0.00044155,503.0411987,-9.79461e-05,61.74584961,0.258507937,-0.114306651,0.625500381,2470,95,train\n2436A,114.8878,30.3944,20170601,50.14027778,3717,6630,1768059.307,226452.2841,24,0.874894619,276.6123962,290.2131958,101045.5234,0.002510336,189.8375244,-3.00083e-05,69.40388489,-0.869079709,-0.100702628,0.759871244,1658,1074,train\n2196A,107.3715,40.7378,20170601,27.96590909,2062,5427,947573.7867,1356062.368,1040,0.285980821,54.19656372,282.9250183,89846.64063,0.000251976,195.9321289,-6.2974e-06,33.7673378,0.231934026,0.167307049,0.385956138,2749,859,train\n1350A,113.352,22.9477,20170601,36.97331461,4908,6384,1795385.041,-658456.8606,5,0.780080557,256.8186951,295.2226563,101327.8203,0.003241642,255.1020203,-2.81505e-05,73.54603577,-0.759521067,0.177914217,0.552449226,2860,295,train\n2925A,106.2739,38.4841,20170601,46.99579832,2423,5252,895351.3302,1072964.546,1110,0.473322898,120.1210175,283.5683899,88067.51563,0.000310477,140.2265015,-5.75058e-06,38.99528885,0.40942362,-0.237501323,0.382548392,2609,1365,train\n1852A,113.2117,29.355,20170601,43.30473373,3883,6362,1643597.387,76179.86234,71,1.034198046,308.8942871,290.4233704,100753.5703,0.002508281,250.443222,-3.21744e-05,71.83750916,-0.804965317,-0.649304628,0.784529328,4938,668,train\n1896A,105.4322,28.8833,20170601,37.04353933,3959,5117,951057.5106,-81923.14732,287,0.428428441,338.7138062,292.0162964,97810.24219,0.001259443,146.6868134,-1.27581e-05,73.43582153,-0.155563533,-0.399187833,1.069990754,2367,703,train\n1382A,113.4411,22.4853,20170601,37.20505618,4982,6399,1813946.72,-709203.02,58,0.897511721,253.7532501,295.2511292,100724.7031,0.002844854,302.9868774,-4.00436e-05,76.9348526,-0.861660779,0.251133561,0.514138818,5930,320,train\n1606A,121.835,41.1042,20170601,29.90948276,2003,7742,2023224.622,1619100.758,2,0.677488744,24.92010117,282.0646057,101638.8203,0.000876145,302.4534607,-1.18073e-05,51.40505981,0.28545469,0.614415646,0.594777703,4209,454,train\n2660A,107.6831,35.7289,20170601,28.02793296,2863,5477,1049711.082,755084.3459,1372,0.443602949,192.6305237,283.2072449,87041.35156,0.000973954,214.7493896,-8.46936e-06,57.25603104,-0.096996769,0.43286857,0.457609594,3233,1276,train\n2001A,120.302,31.92,20170601,56.37743733,3473,7496,2193513.676,512951.7971,5,1.046705961,260.4523926,288.3370056,101629.8203,0.002056117,284.5577698,-2.28534e-05,70.74123383,-1.03219986,0.173656955,0.743012309,2689,800,train\n1137A,126.593,45.7478,20170601,37.80972222,1260,8503,2190785.417,2264990.9,125,1.233011007,48.54213715,275.9775391,99857.80469,0.000717233,211.4166107,-6.93665e-06,61.31793594,0.924050808,0.816361547,0.415853322,1449,118,train\n1804A,115.9581,29.7048,20170601,43.60306407,3827,6801,1879154.198,166102.221,15,0.904241383,300.8624878,290.1009216,100838.0078,0.00316569,233.4998932,-3.1819e-05,74.71866608,-0.776230514,-0.463808835,0.697830498,1723,624,train\n2180A,112.7356,38.4186,20170601,59.60806916,2433,6286,1405400.437,1140755.144,789,0.404523879,38.41837692,282.6290588,91183.39844,0.001036057,105.0215073,-2.69457e-06,52.31288528,0.25136447,0.316947103,0.49778372,1960,845,train\n1118A,121.9769,39.0631,20170601,25.05477528,2330,7764,2101175.915,1382302.305,22,0.332625717,119.8187866,283.7857971,101264.1484,0.000470483,433.2407532,-7.18987e-05,61.11878967,0.288597077,-0.16538316,0.610258937,5345,100,train\n2428A,111.0419,32.395,20170601,29.91477273,3397,6015,1390732.183,399611.1341,906,0.581072748,209.7067719,286.7265625,94688.42188,0.001876009,142.3296661,-9.13777e-06,74.19376373,-0.287949502,0.504708469,0.753336906,5870,1066,train\n1192A,120.354,31.5848,20170601,47.23011364,3527,7505,2208148.792,475361.1,5,1.360104203,265.8167725,289.0026855,101634.0,0.001826354,315.2738647,-4.04245e-05,70.69758606,-1.356476307,0.099274106,0.731728971,2739,166,train\n2341A,119.5392,26.6611,20170601,26.51523546,4314,7374,2282844.531,-107819.6424,27,0.323870301,312.7493896,290.3966675,97258.63281,0.003693326,199.8421326,-1.9882e-05,84.31491852,-0.237842545,-0.219824672,0.479809284,2961,991,train\n1662A,122.1206,37.4294,20170601,27.61864407,2591,7787,2166234.705,1194199.033,49,0.803479731,62.70717239,285.1461182,101083.7813,0.000853198,471.1765137,-6.81902e-05,66.57131958,0.714020133,0.368449271,0.591804385,3925,501,train\n2230A,125.9486,41.7381,20170601,30.97625698,1902,8400,2299752.038,1783789.329,390,0.599119246,12.36921501,276.0752563,95206.01563,0.001151769,219.2610016,-6.0522e-06,71.61951447,0.128333911,0.585213006,0.49060452,2644,891,train\n2657A,106.7039,35.5294,20170601,29.01532033,2895,5321,971934.4402,721072.8172,1353,0.850659192,70.81289673,280.9185181,84059.26563,0.001216197,195.6702728,-6.19449e-06,60.79110718,0.803395152,0.279601902,0.437777847,2564,1273,train\n2572A,102.2714,27.8408,20170601,20.54329609,4126,4611,672647.9158,-230713.8368,1692,0.34070766,231.2393494,289.4865723,82113.42969,0.001943677,190.5304871,-3.16795e-06,62.30973053,-0.265667349,0.213313311,0.260489076,5689,1198,train\n1483A,101.524,36.6867,20170601,52.19736842,2710,4492,533365.5383,820935.9539,2424,0.454251558,194.5162811,278.0318604,73803.48438,0.001060768,185.4665527,-4.37961e-06,52.40709305,-0.11385712,0.439751089,0.199551359,3763,410,train\n2275A,117.3065,32.8985,20170601,46.36619718,3316,7017,1912221.04,564196.9243,24,1.086892486,251.0886993,288.156189,101423.5391,0.002223765,227.8575592,-1.98286e-05,66.34241486,-1.02821064,0.352303892,0.797428012,2995,933,train\n1167A,120.641,31.3708,20170601,39.74515235,3561,7551,2239173.479,457147.214,2,1.321242332,269.2276306,289.0168762,101649.5859,0.001808774,317.5026245,-3.80527e-05,72.2419281,-1.321121454,0.017870884,0.728561103,3169,148,train\n1320A,113.727,34.7187,20170601,65.41432584,3025,6444,1567967.706,715090.1755,100,0.602924109,204.6053925,288.1590881,100277.3047,0.001053692,221.9347687,-1.23614e-05,58.79164505,-0.251030356,0.548179924,0.855601549,2533,267,train\n2435A,112.2106,32.0903,20170601,71.5252809,3446,6202,1497407.433,380817.5614,68,0.691217363,219.5436859,288.7744751,100619.9531,0.001736499,235.1690521,-1.6929e-05,67.46040344,-0.440063983,0.533033907,0.838894904,2531,1073,train\n1838A,111.1489,34.7997,20170601,54.08100559,3012,6032,1352615.337,686392.7039,329,1.070873141,240.855072,286.2693481,95937.51563,0.001157618,167.9270477,-1.2907e-05,63.02849579,-0.935274065,0.521566451,0.632011414,2484,654,train\n2304A,116.9765,33.6481,20170601,55.37114846,3196,6964,1864434.692,645633.2906,29,1.067447782,248.0788727,287.8458862,101391.0156,0.002110152,206.2516174,-1.28069e-05,63.99135208,-0.990255952,0.398544848,0.804332256,2689,960,train\n2463A,111.4733,27.2317,20170601,51.66572238,4223,6084,1530103.717,-198774.641,235,0.950242102,301.5267029,290.3252563,98676.13281,0.002182061,233.4302521,-1.12113e-05,75.72887421,-0.810014248,-0.496826828,0.741808414,2417,1099,train\n2181A,112.7383,38.4519,20170601,53.09014085,2428,6286,1404884.567,1144779.75,782,0.339300066,49.06974792,282.7994385,91406.52344,0.001043609,102.8699036,-2.58138e-06,52.14321136,0.256338179,0.222295448,0.494992226,2532,846,train\n1594A,109.8119,39.5989,20170601,28.25633803,2244,5818,1154064.629,1244488.435,1287,0.929235041,68.38034058,280.9314575,86874.60938,0.000770789,250.335022,-9.62404e-06,46.60416794,0.863851428,0.342401057,0.382480323,2382,443,train\n1189A,120.275,31.6219,20170601,42.90625,3521,7492,2200293.156,477876.4342,3,1.295582056,265.0903015,288.9356689,101614.1641,0.001821463,316.0049133,-4.37446e-05,70.39360046,-1.29082346,0.110939883,0.741893291,2283,163,train\n2324A,117.6211,26.2625,20170601,27.27222222,4378,7067,2118371.85,-196173.853,165,0.444835037,272.9368286,291.5320435,95914.74219,0.002275976,122.2554321,-8.6595e-06,74.80988312,-0.444251895,-0.022769809,0.434409648,4431,977,train\n2216A,123.8139,42.3022,20170601,27.88053097,1812,8058,2125927.469,1801558.985,59,1.102552652,18.07344627,280.2128906,100743.1484,0.001080358,296.0635071,-1.05773e-05,51.80924606,0.342041641,1.048155427,0.52020967,3603,877,train\n2407A,112.55,32.9683,20170601,55.1075419,3305,6256,1507927.955,489607.541,122,0.793991506,294.6564941,288.12854,100076.8281,0.001388169,209.1359406,-1.24941e-05,66.55693817,-0.72161895,-0.331192672,0.8530581,2810,1054,train\n2221A,120.4486,41.5672,20170601,25.5915493,1929,7520,1906615.979,1645982.219,168,0.688925862,72.19995117,281.1743774,98395.90625,0.000729882,286.1395874,-4.93262e-06,48.52017212,0.655938566,0.210626394,0.551502764,1894,882,train\n1147A,121.425,31.2261,20170601,41.84261838,3584,7676,2310595.562,458625.3112,10,1.076615334,263.7683411,288.881958,101648.6406,0.001991,345.5020142,-2.61719e-05,75.44211578,-1.070248723,0.116911449,0.653249979,2392,128,train\n2485A,109.9972,27.5578,20170601,42.84463277,4171,5848,1388282.358,-182807.7052,237,0.648509562,333.420166,290.02948,96947.46875,0.002482558,192.9264832,-1.07682e-05,74.33651733,-0.290217429,-0.579946935,0.710507154,2771,1121,train\n2681A,105.18,37.0172,20170601,35.66201117,2657,5077,827237.0702,886194.3756,1709,0.06970761,236.7164307,281.9941711,82823.27344,0.000755304,307.1931763,-1.00134e-05,49.86452866,-0.058271989,0.038256057,0.316709965,1231,1295,train\n1633A,117.8477,36.497,20170601,53.86827195,2741,7104,1857771.496,997198.9788,210,0.918748319,191.1878204,284.4354553,97179.71094,0.001116327,205.0503235,-8.73227e-06,63.06698227,-0.178255662,0.90128988,0.753453732,3443,477,train\n2015A,120.04,29.334,20170601,33.41340782,3887,7454,2248945.915,209054.9511,79,0.730431855,306.7442627,290.3661194,100147.7109,0.002084197,252.8818817,-1.13591e-05,71.08288574,-0.585333467,-0.436938643,0.627880335,2648,813,train\n2643A,109.0281,32.6939,20170601,42.38169014,3349,5692,1212324.387,408348.356,265,0.646802068,297.3444824,289.2582397,96412.1875,0.001689448,146.8538208,-5.42697e-06,68.89003754,-0.574546993,-0.297066778,0.62157917,2637,1260,train\n2648A,104.1731,36.5481,20170601,30.22922636,2732,4916,750968.7358,821502.6867,1723,1.357420325,304.3940735,282.8800964,81643.40625,0.000577582,368.0976563,-6.99065e-06,44.21148682,-1.120154262,-0.766710103,0.302439153,1704,1264,train\n1991A,120.721,31.671,20170601,43.43968254,3513,7563,2236717.59,493618.6458,59,1.096853256,263.1172485,288.5152588,101607.6484,0.002022156,309.8349915,-2.22294e-05,72.27472687,-1.088943124,0.131491572,0.71767801,5574,790,train\n2580A,104.9544,26.5506,20170601,39.40833333,4332,5041,935450.6547,-359907.517,1830,0.752775967,235.1817627,285.1922913,81656.3125,0.002556966,243.2651978,-7.01063e-06,82.90953064,-0.617992401,0.42983377,0.532309413,5145,1206,train\n1091A,111.658,40.8033,20170601,36.70612813,2052,6113,1271799.182,1412395.029,1047,0.64222759,168.9503174,280.3956909,88754.35938,0.000686376,172.7218628,-4.59743e-06,43.12671661,0.123144269,-0.630310833,0.413114309,1389,76,train\n2249A,131.1651,46.619,20170601,26.38235294,1121,9234,2455925.625,2473652.797,148,1.56174469,63.78240585,274.4595642,98479.13281,0.001023261,290.5139771,-7.51846e-06,67.30860901,1.401054025,0.689995646,0.37264806,2648,910,train\n2620A,99.7064,27.8136,20170601,12.44481605,4130,4201,435754.6559,-248382.7472,3332,0.769264698,30.77442932,278.3132629,66492.28906,0.002137532,157.1840973,-1.82312e-06,76.16876221,0.393591106,0.660949469,0.116448417,2835,1240,train\n1335A,113.0833,28.2325,20170601,45.18472222,4063,6341,1656447.976,-56542.64937,58,0.754913509,345.0029907,291.0456848,100953.9219,0.002546156,228.4793396,-1.65101e-05,72.4181366,-0.195409775,-0.729184031,0.782874703,2941,281,train\n1004A,116.434,39.8745,20170601,52.26638177,2200,6877,1655828.045,1372270.098,45,0.376301795,52.71779251,284.6362,100936.8047,0.001010466,138.7939606,-7.13398e-06,45.38791275,0.299402714,0.227949664,0.869679332,2420,3,train\n2464A,111.4908,27.2582,20170601,49.60393258,4219,6087,1531193.251,-195428.9153,241,0.892938852,302.8062134,290.3187561,98755.125,0.002201652,233.749115,-1.10621e-05,75.82839203,-0.750552535,-0.483746529,0.748838544,3499,1100,train\n2667A,103.2139,35.6039,20170601,35.40756303,2883,4762,682179.6674,700656.2081,1894,0.572397292,24.49534416,279.8554688,78281.21875,0.001188712,151.5879822,-7.47118e-06,56.36581802,0.237320423,0.520881653,0.281044781,2991,1282,train\n2636A,107.0089,33.1138,20170601,45.40730337,3282,5369,1032623.101,435231.6211,529,0.230627075,177.9336548,287.3482056,93392.75,0.001781352,73.77414703,-2.3815e-06,76.41027069,0.008336528,-0.23047635,0.575571477,3244,1253,train\n2558A,106.7389,31.8711,20170601,32.18662953,3481,5326,1027269.358,284549.2122,415,0.867936313,327.6471558,289.3360291,95038.95313,0.001942131,117.5797577,-7.93222e-06,72.65765381,-0.464516103,-0.733170033,0.683009744,3659,1186,train\n1772A,126.555,43.8875,20170601,31.1800554,1558,8497,2260211.196,2047796.098,189,1.079998493,26.33688354,276.2576599,98285.03906,0.001296815,223.7047119,-1.02139e-05,65.95077515,0.479126126,0.967902243,0.469642848,1610,593,train\n1388A,113.7461111,23.02777778,20170601,36.35734463,4896,6447,1831724.143,-642102.2446,12,0.806755424,254.6917572,295.0757446,100951.2109,0.003132683,247.7622833,-2.85361e-05,73.53556824,-0.778123081,0.213022873,0.543141365,2290,326,train\n2668A,103.2064,35.5997,20170601,30.64345404,2884,4761,681600.5913,700098.1078,1900,0.600163102,26.28383255,279.7972107,78284.0,0.001211459,148.6433105,-7.22589e-06,56.6895752,0.265755832,0.538116693,0.282856673,2807,1283,train\n1882A,104.5969,28.8194,20170601,49.5720339,3969,4983,875897.2962,-97212.4742,343,0.574995518,129.6760712,291.7008362,96878.45313,0.001207849,148.7240143,-1.31978e-05,71.91112518,0.44257912,-0.367074281,0.989683867,3609,690,train\n2270A,117.3961,32.939,20170601,64.66016713,3310,7031,1918670.525,570678.7543,22,1.080824018,249.8131409,288.1527405,101435.6563,0.002250776,229.1140442,-1.81879e-05,66.38648224,-1.014417887,0.373010516,0.791068852,2402,928,train\n1177A,117.167,34.2761,20170601,66.15223464,3096,6995,1863411.971,722945.5328,39,1.082059622,239.4601135,287.5498657,101259.1094,0.001606595,208.2361145,-1.35953e-05,62.66415024,-0.931934714,0.549864292,0.819704533,2431,154,train\n1480A,101.748,36.6428,20170601,57.3005618,2717,4528,552015.3765,816863.6317,2264,0.710649133,226.2095337,279.507843,75252.89844,0.000825722,215.906662,-4.84229e-06,47.60145187,-0.512988389,0.491797805,0.206411824,2217,408,train\n1513A,112.9227,27.8159,20170601,45.07222222,4130,6316,1650816.787,-107573.9053,48,0.919741392,355.3554382,291.0926514,100734.8203,0.002681269,239.6596375,-1.76111e-05,72.49411774,-0.074557491,-0.91671443,0.779583097,2675,423,train\n1230A,120.12,30.3119,20170601,42.92936288,3730,7467,2226601.38,323268.5589,9,0.736901581,303.046875,289.4729614,101210.2656,0.002662131,233.4883118,-1.70592e-05,72.43157959,-0.617714643,-0.40181163,0.718350887,2814,197,train\n1239A,121.633,29.7736,20170601,33.41340782,3816,7709,2374640.706,296908.9195,14,0.409499168,261.2898865,289.8026733,100623.3828,0.003139502,389.9339905,-3.83418e-05,78.82299042,-0.404773891,0.062029589,0.563440442,3775,203,train\n3009A,119.1478,34.5911,20170601,43.48860399,3046,7312,2017461.076,798985.8046,4,0.797383904,243.5589905,286.9277954,101606.3047,0.001318736,251.5277557,-1.82581e-05,64.62281799,-0.713960588,0.355079383,0.717554271,2879,1377,train\n1985A,120.636,31.155,20170601,39.32271468,3595,7550,2245392.004,432143.7455,4,1.490454435,270.9126587,289.3637085,101641.1797,0.001800512,329.4098206,-5.48224e-05,72.49164581,-1.490266442,-0.023670746,0.704465568,3136,785,train\n1719A,115.474722,35.2375,20170601,57.86516854,2942,6724,1699312.921,805535.9362,54,0.831949711,222.1751099,287.7970276,101062.6094,0.000913777,198.8802338,-1.04138e-05,56.93972778,-0.558556497,0.616567075,0.870670557,2481,545,train\n2543A,106.631,30.518,20170601,32.56446991,3697,5309,1036942.361,123067.5478,352,0.983241498,316.0308228,291.1222229,97546.29688,0.001620776,117.719162,-8.80367e-06,75.80275726,-0.68268609,-0.707604051,0.872786343,4780,1173,train\n1902A,104.3883,31.1333,20170601,44.57222222,3599,4950,830683.0648,174681.8665,496,0.548659325,172.5022278,290.3959961,95078.42969,0.001041836,145.555542,-1.02715e-05,66.26266479,0.071641371,-0.543961883,0.768450141,3244,707,train\n1172A,120.81,32.0417,20170601,36.4957265,3453,7578,2232765.324,538466.3995,5,1.08083725,262.1073914,288.2396545,101693.6094,0.002118569,307.8841553,-2.43203e-05,72.72140503,-1.070592403,0.148462251,0.703569531,2223,152,train\n1049A,114.5035,36.5776,20170601,73.41736695,2728,6569,1587819.037,948101.7257,58,0.495076835,30.87116623,287.236084,100660.5781,0.000731497,188.6877289,-1.00877e-05,52.66633606,0.254021794,0.42493999,0.79543376,2499,37,train\n2260A,131.0032,45.7677,20170601,36.55084746,1257,9208,2482815.008,2372189.291,216,1.180631995,79.34379578,274.5822144,98588.08594,0.000993838,285.6298218,-6.26285e-06,70.49327087,1.160262346,0.218364567,0.386563987,2153,921,train\n1228A,120.19,30.2692,20170601,42.02361111,3737,7478,2233957.952,319942.6136,16,0.83724153,300.4840088,289.625946,101326.7969,0.002536721,242.3191986,-2.08055e-05,71.68570709,-0.721536756,-0.424685866,0.689756215,2102,195,train\n1086A,112.5369,37.8692,20170601,65.43201133,2521,6254,1401684.55,1072179.323,788,0.334386617,151.2243347,282.959198,91149.10156,0.001070591,142.3695221,-5.67258e-06,52.47053146,0.160990313,-0.293081105,0.50754863,1947,71,train\n1795A,118.37,31.4189,20170601,49.21848739,3553,7187,2043439.952,413221.435,11,1.186893106,274.5854492,288.9786377,101514.2734,0.002047622,231.4064636,-2.42413e-05,68.49343872,-1.183098793,-0.094829425,0.756279826,1929,615,train\n2309A,116.5068,31.7797,20170601,41.27668539,3495,6889,1873887.536,418081.2793,42,0.943426192,249.2676849,288.4832153,101150.4375,0.001974092,179.9130554,-1.27093e-05,68.33091736,-0.882322252,0.334006667,0.781720579,2305,965,train\n2507A,109.6014,23.0944,20170601,37.92877095,4885,5784,1429010.944,-703298.6348,48,0.477540076,292.1697998,294.3154602,100070.1484,0.003168068,230.6963196,-1.64854e-05,77.30142212,-0.442245722,-0.180175558,0.546257377,2752,1139,train\n2247A,130.1097,47.3382,20170601,17.86571429,1006,9066,2356551.752,2530215.852,165,1.211852551,106.1408234,273.8323059,98534.24219,0.00099897,220.8084564,-5.24671e-06,69.71770477,1.164101243,-0.336830497,0.333137006,3711,908,train\n2526A,105.8624,32.4285,20170601,25.26044568,3392,5186,943530.1399,342052.0258,536,0.323060572,305.9998169,288.0357056,93082.72656,0.001399379,130.115387,-7.5737e-06,72.10784912,-0.261374444,-0.189872399,0.642406404,4924,1158,train\n2567A,102.2218,31.9025,20170601,10.50840336,3476,4603,632638.4853,250127.9872,2851,0.394913703,266.465332,275.1412964,66085.33594,0.001603235,82.3562088,-1.26611e-06,72.91881561,-0.394161373,0.02436492,0.144236654,6541,1194,train\n1912A,106.9242,27.7019,20170601,27.95238095,4148,5356,1103341.07,-204955.212,887,1.202354431,270.5683289,288.2044373,90727.65625,0.00191777,244.1181641,-1.07353e-05,77.9752655,-1.202295899,-0.011870167,0.716519594,2940,717,train\n1396A,114.5317,22.7422,20170601,29.73285714,4941,6573,1914000.146,-659458.769,13,1.373717189,267.5316772,294.897522,100286.1016,0.00255526,293.9423828,-5.59032e-05,79.67350006,-1.372439981,0.059223849,0.465269625,4569,334,train\n2535A,103.7705,29.5467,20170601,48.10252809,3853,4851,792999.9033,-18418.85541,372,0.866698503,115.4364853,291.201416,96486.92188,0.001041266,134.0043945,-1.21778e-05,70.67670441,0.782704651,-0.37220937,0.895491362,4874,1167,train\n2506A,109.6042,23.0672,20170601,37.3603352,4889,5785,1429748.163,-706364.8142,46,0.49199909,290.9143677,294.3914185,100189.6094,0.00313246,231.2391968,-1.64774e-05,77.10945892,-0.459593683,-0.175603926,0.542579949,3549,1138,train\n2068A,114.6758,33.6347,20170601,49.04929577,3199,6596,1672341.262,602649.555,49,0.748358071,236.5259247,288.1223145,101065.2266,0.001586124,198.0141907,-1.23871e-05,62.57056808,-0.624219954,0.412782282,0.87323755,3095,822,train\n1753A,123.0156,41.0831,20170601,32.32402235,2007,7930,2110588.975,1641456.644,89,1.017026067,196.005249,281.0834045,100501.4375,0.001024689,271.6261292,-8.07623e-06,52.90532303,-0.280411899,0.977604866,0.574787974,2426,575,train\n2219A,123.7153,42.2217,20170601,31.41666667,1825,8042,2121699.179,1789996.492,58,1.052132249,17.39409447,280.3673096,100879.0859,0.001087904,297.6304932,-1.01178e-05,51.33463287,0.314517856,1.004022241,0.537185192,3710,880,train\n2633A,94.3616,29.6632,20170601,7.451977401,3834,3346,-57708.5148,-39819.07344,3041,0.247635141,206.5253448,275.0056763,63619.57813,0.002420449,157.0464325,-3.84113e-06,78.7743454,-0.110589229,0.221569821,0.134660676,2168,1250,train\n2287A,117.7806,30.9414,20170601,50.90972222,3629,7093,2005936.429,345654.1852,14,0.928480089,286.5053101,289.1838379,101158.7266,0.002049056,218.535141,-2.3928e-05,70.53025055,-0.890235186,-0.26373601,0.735882163,3095,944,train\n2361A,116.9983,28.2169,20170601,34.9039548,4065,6968,2010008.366,14705.48526,40,0.821457267,317.1242981,291.7567444,100819.7031,0.002406403,178.7319183,-1.45717e-05,70.97229767,-0.558970392,-0.601950288,0.601747572,3139,1011,train\n1221A,118.2442,33.9592,20170601,56.46619217,3147,7167,1961253.169,706759.3965,23,1.014962435,248.1983948,287.376709,101462.875,0.001779311,229.9592285,-2.6262e-05,64.2469635,-0.9423545,0.376983732,0.787112713,3330,188,train\n2842A,118.0936,24.5058,20170601,25.02367688,4659,7143,2209551.664,-385259.0438,39,1.746042371,310.777832,293.9453125,101004.3281,0.002070068,353.769043,-6.05164e-05,78.85771942,-1.322263598,-1.140299439,0.407048494,2237,1326,train\n1204A,119.491,32.215,20170601,46.08888889,3426,7367,2115982.529,529348.7991,14,1.037587166,260.7250061,288.1010437,101552.3203,0.002504705,259.5843506,-2.32828e-05,69.39672089,-1.02401495,0.167273566,0.778085232,3445,174,train\n2233A,124.8292,45.0878,20170601,27.28830084,1366,8221,2096559.17,2149522.049,134,1.231211782,38.10520172,277.7322388,99947.17969,0.00073872,254.6051636,-9.78751e-06,55.52175903,0.759770751,0.968829632,0.394981861,2514,894,train\n1697A,114.6944,23.7586,20170601,29.19382022,4779,6599,1906340.171,-541143.9331,44,0.585864961,327.2789001,293.8950195,99774.74219,0.002589757,229.3222809,-3.0059e-05,76.90437317,-0.316726774,-0.492871106,0.48905459,2415,527,train\n2031A,113.1817,27.9958,20170601,39.6686747,4101,6357,1670498.489,-82338.52277,64,0.755009055,343.4105225,291.2310181,100615.6719,0.002723373,223.0370941,-1.61304e-05,72.54686737,-0.21562539,-0.723563671,0.762653053,4528,816,train\n2218A,123.8489,42.2864,20170601,32.58333333,1814,8064,2128994.767,1800465.997,86,1.084157944,16.26812744,280.1493225,100595.5156,0.001091814,295.0588379,-1.08059e-05,52.2274971,0.303699523,1.040752172,0.528179288,2893,879,train\n1476A,103.631,36.1031,20170601,61.04073034,2804,4829,711435.2631,763788.8499,1562,0.928310513,268.746582,282.6821289,81375.45313,0.000688222,241.6933136,-7.33991e-06,47.07268906,-0.928087473,0.020348558,0.305758923,2044,404,train\n2285A,117.8178,30.9414,20170601,52.25837989,3629,7099,2009153.015,346414.2246,29,0.941267431,285.0881042,289.1896973,101191.9453,0.002054569,216.7509918,-2.27234e-05,70.55384064,-0.908832014,-0.244966686,0.756169438,3334,942,train\n1490A,87.5801,43.8303,20170601,54.90373563,1567,2261,-540731.4845,1695138.952,816,0.606189966,7.47672987,282.2767029,90909.625,0.000442726,153.6481018,-1.03638e-05,48.61283875,0.078877479,0.60103631,0.261584401,2179,414,train\n2921A,120.7789,30.0033,20170601,43.33379888,3780,7573,2293195.188,302947.3186,12,0.853857815,271.0571594,289.8463135,100897.4766,0.002572465,272.3495178,-1.54364e-05,72.69501495,-0.853713214,-0.015713606,0.661064863,4267,1361,train\n1079A,114.5331,37.0964,20170601,77.58595989,2645,6573,1577772.38,1010255.645,63,0.722749174,46.28990555,286.741272,100519.875,0.000811932,167.5183258,-8.96764e-06,51.57893372,0.522424042,0.49943918,0.792474091,3384,65,train\n1093A,111.608,40.8144,20170601,45.11331445,2050,6105,1267790.187,1413085.414,1053,0.743772686,164.3409271,280.040802,88076.39063,0.00070384,174.5379944,-4.60524e-06,43.45690536,0.200814128,-0.716150463,0.396783859,1946,78,train\n1111A,121.5638889,38.885,20170601,28.35180055,2358,7698,2075594.463,1352631.914,38,0.244522199,111.6177979,284.4536133,101045.5469,0.000425188,513.6858521,-0.000101538,61.83102036,0.227328181,-0.0900722,0.650078833,2716,94,train\n1860A,110.5594,29.3547,20170601,28.22005571,3883,5937,1406411.417,34977.92136,437,0.77869916,282.1037598,288.2032776,94872.96094,0.002578454,185.8214417,-7.34357e-06,77.76854706,-0.761396885,-0.163239747,0.729782701,5864,673,train\n1764A,123.7669,41.2864,20170601,26.47777778,1974,8051,2158414.03,1681593.864,191,0.869398117,206.2238617,278.9196472,98686.57031,0.001140165,221.9816895,-6.95975e-06,63.02005005,-0.38415876,0.779919982,0.541263163,1919,586,train\n2579A,104.8475,26.5894,20170601,30.62569832,4326,5024,924983.3819,-356391.6387,1823,0.792980731,236.6195068,284.7252197,80464.52344,0.002601658,233.8719177,-6.59327e-06,83.28025055,-0.662154078,0.436314583,0.538946688,3374,1205,train\n2411A,115.6578,34.402,20170601,56.04761905,3076,6753,1735323.42,710121.1449,49,0.887030482,233.7945862,287.9189148,101102.0078,0.001319994,200.3342285,-1.10397e-05,60.72004318,-0.715734303,0.52397275,0.845039904,2358,1058,train\n1166A,120.669,31.3097,20170601,39.40363128,3571,7555,2243447.141,450737.4049,5,1.345791817,270.2224426,289.0808411,101616.1172,0.001774447,319.516571,-4.18109e-05,72.46854401,-1.345781922,-0.005162416,0.711461306,2826,147,train\n1800A,118.5106,31.7506,20170601,49.01256983,3500,7210,2046104.694,454664.0869,10,1.156383038,268.999176,288.5747375,101481.2656,0.002197216,238.6899872,-2.39665e-05,68.50488281,-1.156205773,0.020251423,0.761320829,2924,620,train\n1283A,119.299,26.1092,20170601,26.66615854,4403,7336,2276792.412,-176089.9945,15,0.672390699,312.1690674,291.5812378,99842.45313,0.002802417,267.8289185,-2.19215e-05,84.69174957,-0.498384506,-0.451355845,0.465857327,3229,238,train\n1462A,108.882,34.2749,20170601,66.98873239,3096,5669,1173021.442,594714.3148,399,0.271153122,193.2610321,286.6852722,94717.76563,0.001240007,89.31004333,-7.10064e-06,63.45855713,-0.062197357,0.263923287,0.610731244,2303,390,train\n1098A,123.6836,41.9339,20170601,26.52638889,1871,8037,2129556.98,1755592.0,125,0.876135111,0.49298948,280.3681641,100458.2188,0.001152093,283.7866211,-9.02257e-06,52.2916832,0.007538188,0.876102686,0.544104815,2857,83,train\n1845A,112.2068,30.3515,20170601,51.6056338,3724,6201,1533238.088,176396.0278,35,0.719484329,306.0953979,289.8277893,101111.4531,0.002264848,239.3492889,-2.78325e-05,68.91123962,-0.581397712,-0.423832983,0.823110342,2803,661,train\n2209A,121.6972,42.0503,20170601,24.87606838,1852,7720,1982046.965,1727708.862,156,0.807763219,59.86421204,280.2131042,99053.88281,0.000847968,318.7912903,-5.55576e-06,51.36547089,0.698571801,0.405559868,0.515846491,2882,870,train\n1180A,117.256,34.2153,20170601,58.55555556,3106,7009,1872410.371,717498.8861,37,1.067156792,241.0869598,287.526001,101319.5625,0.00166982,209.2604218,-1.35686e-05,62.99317169,-0.934124291,0.515980005,0.793101192,3533,156,train\n1775A,126.5786,43.8947,20170601,28.36768802,1557,8501,2261564.378,2049176.139,190,1.054775834,24.77671051,276.2477112,98243.07813,0.001298738,222.9978027,-1.03935e-05,66.21914673,0.442026615,0.95768714,0.46543923,1182,596,train\n1273A,117.16,31.9051,20170601,47.26264045,3475,6994,1926493.323,445343.0046,29,1.003379941,255.8636169,288.5348511,101172.875,0.002217068,232.9623871,-1.60269e-05,67.75965881,-0.972985148,0.245094314,0.778822541,4122,229,train\n1029A,114.4548,38.0513,20170601,68.18472222,2492,6561,1548715.837,1122720.941,80,0.714270592,46.39890671,285.8171692,100146.5078,0.001021511,123.3626328,-8.71733e-06,52.38289642,0.517233551,0.492597163,0.809952021,2249,19,train\n2677A,106.1532,37.9648,20170601,36.54507042,2506,5232,892960.8555,1009116.469,1130,0.269492298,17.94690323,285.1565552,88356.99219,0.000373558,276.1674194,-9.36624e-06,37.92724991,0.083037809,0.25638023,0.388421357,3058,1291,train\n2243A,130.9298,45.2978,20170601,22.03703704,1332,9197,2498577.961,2316542.537,244,1.252220869,79.46941376,274.7644043,97731.46875,0.000964059,296.017395,-5.7702e-06,69.06118011,1.231120944,0.228906736,0.383184552,2506,904,train\n1149A,121.533,31.2284,20170601,39.66384181,3584,7693,2319735.652,461434.619,8,1.100723267,262.7807617,288.9947205,101648.5391,0.001971258,370.8068542,-3.59229e-05,75.64474487,-1.091991425,0.138370633,0.645522475,2402,130,train\n1038A,118.1853,39.6407,20170601,50.95949721,2238,7158,1795363.493,1375242.712,35,0.666424394,193.2201538,284.0407715,101410.5703,0.000737926,183.8976593,-8.82957e-06,51.91472244,-0.152402371,0.648764193,0.797506988,2512,28,train\n1846A,112.2887,30.3055,20170601,55.24782609,3731,6214,1541418.772,172287.7827,31,0.721692085,304.7090149,289.8115845,101230.0234,0.002298012,237.248764,-2.62185e-05,69.13858032,-0.593296587,-0.410899788,0.828235984,2674,662,train\n2394A,115.0628,35.7672,20170601,57.94301994,2857,6658,1652623.424,861182.6019,51,0.79353267,211.0608826,287.787384,101060.7109,0.000789008,205.6059265,-1.08852e-05,54.86082077,-0.409411103,0.679762185,0.861858964,2218,1042,train\n2286A,117.8078,30.9222,20170601,57.00139276,3633,7097,2008815.039,343981.7322,58,0.928633273,284.4909058,289.1851196,101075.5625,0.002065281,215.480423,-2.24227e-05,70.80625916,-0.899103463,-0.232320115,0.748245478,3299,943,train\n1880A,104.6717,31.4656,20170601,48.23743017,3546,4995,851779.8545,216595.2575,478,0.545692921,340.8397217,290.2144165,94994.57813,0.000933485,134.899231,-9.93651e-06,65.13310242,-0.1791455,-0.515448987,0.740613937,3164,688,train\n2246A,130.3172,47.3489,20170601,18.87857143,1004,9099,2369414.807,2536433.755,167,1.22297585,104.84832,273.719696,99182.07031,0.000909141,222.5641327,-6.03087e-06,66.99106598,1.182154655,-0.313337326,0.34131664,2190,907,train\n2298A,118.3094,32.3153,20170601,50.79166667,3410,7177,2013043.51,516181.1301,22,0.964519441,263.3778992,287.9793091,101177.4844,0.002480015,241.1250458,-1.46289e-05,69.19974518,-0.958079696,0.111270048,0.777175069,3064,955,train\n1809A,116.0726,29.7534,20170601,44.47493036,3820,6820,1888034.969,173936.4542,27,1.077277899,305.2729797,290.1976624,101153.9297,0.003084939,247.3973999,-4.068e-05,73.95304108,-0.879540682,-0.622041643,0.698738039,1968,629,train\n2176A,111.0233,35.0611,20170601,63.99438202,2970,6012,1337066.675,715802.8353,367,1.192007899,244.7565613,287.2636719,97178.64063,0.000975219,161.3008423,-1.13962e-05,59.02674866,-1.078158855,0.508385897,0.619306922,2364,842,train\n1330A,114.1525,30.4753,20170601,47.02089136,3704,6512,1701670.835,222910.6105,29,1.077702165,302.203949,290.0886536,101220.2578,0.002574136,214.2940826,-3.42269e-05,68.67253876,-0.911940634,-0.574287534,0.812991083,2110,277,train\n2014A,120.091,29.305,20170601,32.27683616,3891,7463,2254295.032,206896.5633,75,0.737074077,299.9815674,290.2668152,99862.5625,0.002012749,257.0974121,-1.11376e-05,71.07883453,-0.63846606,-0.368292391,0.624889493,2909,812,train\n2536A,103.7627,29.5844,20170601,48.26880223,3847,4850,791898.0755,-14025.6964,373,0.887860894,115.5301208,291.2165222,96529.96875,0.000989047,135.7652283,-1.24637e-05,70.75178528,0.801191866,-0.382607639,0.894410133,3758,1168,train\n1065A,117.8184,40.9733,20170601,26.00983146,2024,7099,1730033.055,1526887.49,447,0.533103108,79.24391174,280.9381714,95493.07813,0.001018807,217.4887848,-3.99259e-06,50.00828552,0.523732722,0.099513598,0.620603979,3845,52,train\n1794A,118.3528,31.3508,20170601,46.87988827,3564,7184,2043879.192,404959.6551,8,1.18000567,275.0214233,289.0262146,101545.1563,0.002046067,228.2472839,-2.3132e-05,68.5449295,-1.175481796,-0.103226781,0.757713377,2066,614,train\n2314A,117.4697,30.6617,20170601,48.46561605,3674,7043,1986599.79,306880.2837,19,0.974260688,295.7675171,289.4548645,101027.0859,0.002293654,224.8204651,-2.3483e-05,72.18147278,-0.87741065,-0.423478991,0.741527617,3598,969,train\n2656A,106.6692,35.5461,20170601,25.28169014,2893,5315,968827.2082,722734.7438,1386,0.829016864,70.96283722,280.7131042,83806.30469,0.001241517,195.05159,-6.02548e-06,61.51247406,0.783665717,0.270438462,0.430801153,3054,1272,train\n2369A,114.99,27.1311,20170601,51.25626741,4239,6646,1855023.345,-149819.2074,58,0.846888781,323.8673706,292.3458557,100613.7188,0.002039758,256.2553406,-1.71119e-05,70.82741547,-0.4994241,-0.683956265,0.629048526,3658,1019,train\n2069A,114.6546,33.5979,20170601,50.46760563,3204,6593,1671442.824,597951.633,49,0.742731571,236.9082794,288.1467896,101082.1563,0.001565866,198.5998993,-1.23796e-05,62.65990829,-0.622246921,0.40553543,0.873512506,2865,823,train\n2487A,111.9975,27.725,20170601,26.00668896,4144,6168,1568318.224,-133274.8811,132,0.782859921,337.2138977,290.4688721,99571.64063,0.002302269,229.7408752,-1.21832e-05,74.29649353,-0.30325368,-0.721738756,0.781769812,2920,1123,train\n1512A,112.8937,27.8728,20170601,45.97638889,4120,6311,1646960.369,-101463.2338,50,0.949528694,355.7221985,291.0793152,100752.4297,0.002659036,241.0134583,-1.72202e-05,72.54418182,-0.070912927,-0.946877003,0.786983848,2914,422,train\n2553A,103.009,30.0125,20170601,50.64428571,3778,4729,719803.3513,30837.25579,632,0.281379521,113.6614151,287.6148071,89989.96094,0.001795279,90.75141144,-3.90038e-06,76.64189148,0.257731408,-0.112911284,0.660827518,4990,1182,train\n2356A,114.9119,27.8042,20170601,46.45056497,4131,6634,1831927.671,-73673.36069,71,0.773409784,307.6126099,291.7469788,100876.375,0.00296806,229.0547791,-1.53179e-05,71.8875885,-0.612691522,-0.471987039,0.659641027,2518,1006,train\n1601A,124.4256,40.1503,20170601,21.48735955,2156,8156,2247304.215,1563639.559,6,0.410326779,337.5914917,280.6713562,100941.0625,0.001084722,234.662262,-1.28932e-05,63.44303894,-0.156450614,-0.379330009,0.57869184,2537,449,train\n2902A,106.6351,30.4865,20170601,37.19359331,3702,5310,1037749.261,119386.489,280,0.966715097,315.5208435,291.2397156,97742.94531,0.001614881,116.2177811,-8.66092e-06,75.77349091,-0.677376926,-0.689709067,0.870176435,3875,1354,train\n1840A,111.2992,30.698,20170601,59.28888889,3668,6056,1446316.288,203297.0848,99,0.295909792,346.3167725,289.5414734,98532.79688,0.002170318,121.173378,-8.1363e-06,73.27246857,-0.070023194,-0.287505388,0.776303887,2664,656,train\n2165A,112.8453,35.546,20170601,54.41501416,2893,6303,1476933.691,799612.6792,848,0.510300338,242.1949158,283.9302368,92026.82031,0.000999556,173.6820679,-5.97518e-06,59.94342804,-0.451373279,0.238051742,0.642809808,3510,832,train\n1466A,108.954,34.2713,20170601,69.81284916,3097,5681,1179125.945,595146.6918,409,0.433108836,202.772583,286.6636353,94733.16406,0.001253752,89.80882263,-7.16216e-06,63.31423187,-0.167640671,0.399349302,0.609525681,1858,394,train\n1039A,118.2185,39.6679,20170601,49.28212291,2233,7163,1797109.869,1379074.404,31,0.631409109,194.1865387,283.9333801,101356.7422,0.000743904,181.6531982,-8.92103e-06,52.270298,-0.154741004,0.612154126,0.787240982,2393,29,train\n2054A,114.1044,32.1078,20170601,50.29519774,3443,6505,1659795.998,413303.0189,84,0.342128307,245.9837952,288.0976257,100634.9063,0.001848727,215.9733887,-1.50819e-05,71.77636719,-0.312505662,0.139255166,0.838692904,3092,817,train\n1133A,126.689,45.7733,20170601,34.81805556,1256,8518,2196219.656,2270099.222,127,1.234857917,46.91785049,275.8401794,99835.10938,0.000724032,211.1270752,-7.18747e-06,61.61277008,0.901889026,0.843486905,0.407940894,1376,114,train\n1392A,114.4183,23.0528,20170601,27.9902507,4892,6555,1895995.701,-626516.3776,21,0.647749364,271.894989,294.495575,100649.5625,0.002983528,211.5156708,-1.51594e-05,77.96212769,-0.647396147,-0.021388927,0.489900202,4704,330,train\n1974A,120.773,37.809,20170601,28.17908309,2531,7572,2049186.289,1209745.122,19,0.8466748,0.03956585,285.5157471,101169.8203,0.000693343,468.5272217,-7.63137e-05,61.16248322,0.000536061,0.846674621,0.637932777,2151,774,train\n2067A,114.6613,33.6128,20170601,51.95903955,3202,6594,1671648.828,599821.676,49,0.744743466,236.741806,288.1369019,101074.7188,0.001573164,198.3740997,-1.23834e-05,62.62329865,-0.622748315,0.408445001,0.877117038,2463,821,train\n1066A,117.9384,41.0112,20170601,27.04519774,2018,7118,1737894.456,1533510.946,384,0.231628314,84.36236572,280.8522034,94833.22656,0.000936639,221.4330139,-4.24276e-06,49.28611755,0.230506957,0.022764392,0.589861631,4430,53,train\n1092A,111.659,40.8452,20170601,36.20612813,2045,6113,1271011.17,1417452.957,1065,0.759677112,164.9285889,279.759613,87643.83594,0.000700155,180.3152008,-4.55001e-06,43.81771469,0.197595403,-0.733529389,0.405095398,1987,77,train\n1464A,109.06,34.2572,20170601,67.61647727,3099,5698,1188264.314,594742.0833,451,0.710011542,204.9296875,286.343689,94362.47656,0.001287108,88.92196655,-7.11889e-06,63.5719223,-0.299265772,0.643860579,0.616715193,2745,392,train\n2862A,114.5480556,38.03777778,20170601,68.15266106,2494,6576,1556366.493,1122582.628,74,0.648570836,28.2766037,286.0995483,100571.7422,0.000978954,133.3346863,-9.0693e-06,50.93685532,0.307238311,0.571181893,0.826391816,2519,1332,train\n2477A,111.6217,26.2081,20170601,37.14595376,4387,6107,1563982.085,-314873.7567,117,0.674932241,299.8596497,292.01651,100026.3359,0.00150971,252.7855377,-1.1972e-05,72.28494263,-0.58535409,-0.335997254,0.726286948,4815,1113,train\n2602A,100.9817,22.8322,20170601,19.05694444,4927,4405,589056.1552,-822002.1298,1363,0.919576406,204.0083618,291.2594299,85982.71094,0.003569263,123.6655426,-6.45679e-06,76.68824768,-0.374137729,0.840024829,0.284693629,5233,1223,train\n2462A,111.5239,27.3033,20170601,42.53539823,4212,6092,1533349.656,-189682.1249,245,0.803620279,304.7120667,290.281311,98828.25,0.002232966,230.6237335,-1.08742e-05,75.85951996,-0.660624623,-0.457581401,0.743639529,5292,1098,train\n1331A,114.3008,30.5947,20170601,45.17222222,3685,6536,1711902.909,239433.4756,26,1.108243346,301.6933899,290.0739746,101310.75,0.00254495,211.1082764,-3.32292e-05,68.74343109,-0.943009436,-0.582182646,0.803780437,1620,278,train\n1334A,113.8531,30.2997,20170601,43.25073314,3732,6464,1679384.985,197249.3631,21,0.932408869,305.3052673,289.9713745,101366.4609,0.002586212,204.6863098,-2.28903e-05,69.29116058,-0.760959208,-0.538820326,0.807403505,2382,280,train\n2585A,109.1916,27.7297,20170601,23.85416667,4143,5719,1311327.91,-173846.5597,308,0.939418554,306.1422729,289.3128052,96037.00781,0.002274304,232.4941559,-1.02374e-05,77.46893311,-0.758668184,-0.554012418,0.731624246,3832,1207,train\n2010A,119.7183,30.2366,20170601,32.08100559,3742,7403,2193985.805,305560.443,44,0.67244333,320.7337952,289.1682434,99763.38281,0.002783078,206.3201447,-1.01556e-05,75.56233978,-0.425643414,-0.520583987,0.699158251,2634,809,train\n1616A,117.6789,36.2289,20170601,49.29411765,2783,7077,1851721.157,962403.7776,214,0.689459801,227.0018158,285.3067017,99096.44531,0.001008372,196.602356,-8.30647e-06,63.03105927,-0.50424248,0.470206648,0.764710188,2505,463,train\n1115A,121.2588889,38.80805556,20170601,26.59773371,2371,7649,2054810.717,1337188.296,16,0.055798065,60.41362381,284.6854553,101431.5781,0.000366197,498.5209656,-8.64496e-05,61.68934631,0.048521832,0.027550969,0.638872385,3905,98,train\n1018A,117.202,39.0927,20170601,50.48033708,2325,7000,1735514.748,1292556.453,7,1.049154043,190.5059357,285.3424377,101628.2266,0.000783038,200.5014801,-2.15297e-05,49.92195129,-0.191293985,1.031567097,0.86217165,2368,14,train\n1223A,120.211,30.21,20170601,38.86072423,3746,7482,2237566.416,313608.5252,10,0.879980564,300.7580566,289.8270569,101484.2578,0.002470908,243.5818634,-2.14523e-05,71.52324677,-0.756225705,-0.449987262,0.688420773,2181,190,train\n1215A,120.118,33.4022,20170601,41.83611111,3236,7467,2132971.177,680817.9139,2,0.971559227,254.0597534,287.111084,101749.8984,0.001975715,250.6370239,-1.09549e-05,69.5666275,-0.934191287,0.266859472,0.69275707,3148,184,train\n2005A,119.579,31.737,20170601,43.87361111,3502,7381,2137585.045,475831.9158,7,1.140962839,262.5109863,288.556366,101615.8828,0.001997268,262.714447,-3.03991e-05,69.50246429,-1.131224036,0.148756579,0.757739007,2625,804,train\n1034A,114.5214,38.0524,20170601,75.23955432,2492,6571,1553921.372,1123903.548,78,0.650838554,34.59516525,286.027832,100525.2734,0.000993834,128.5818024,-8.92902e-06,51.25087738,0.36951983,0.535766661,0.82115227,2190,24,train\n2187A,106.8089,39.6969,20170601,36.94972067,2229,5337,919926.2561,1224635.274,1089,0.572850943,181.8816528,284.4541931,88340.05469,0.000255678,352.4972534,-5.91208e-06,33.28762817,-0.018809484,0.572542071,0.378238142,2341,851,train\n2627A,88.8931,29.2365,20170601,7.04398827,3902,2471,-554828.8507,-73374.42296,3852,0.850846112,182.5454559,281.3746643,62114.77344,0.00087887,644.1260986,-6.85687e-06,31.08370018,-0.037786577,0.85000664,0.09649995,2296,1246,train\n1842A,111.268,30.696,20170601,53.72980501,3669,6051,1443612.383,202603.2384,66,0.245019481,347.559021,289.3479614,98002.59375,0.002270184,116.4564972,-7.68385e-06,73.56494904,-0.052806057,-0.239261493,0.748569667,4304,658,train\n2484A,109.9792,27.5342,20170601,39.37083333,4175,5845,1387051.071,-185808.7649,242,0.640944958,334.614502,290.0126038,96884.32031,0.002468085,192.8009949,-1.07342e-05,74.45547485,-0.274823219,-0.579035997,0.711530209,2719,1120,train\n1323A,113.6356,34.7538,20170601,63.08240223,3019,6430,1559608.928,717793.6263,107,0.650875986,207.8070679,288.1161194,100237.3828,0.00101989,215.631958,-1.23793e-05,58.86881256,-0.303622603,0.575719416,0.839287639,1995,270,train\n2574A,102.2689,27.8847,20170601,22.76470588,4119,4611,672034.5081,-225568.9816,1523,0.330293238,232.4882965,289.5105896,82352.80469,0.001930135,194.1278076,-3.33858e-06,62.36984253,-0.261992723,0.201130405,0.282879651,3967,1200,train\n2360A,117.0222,28.2264,20170601,34.38687151,4064,6972,2011906.169,16288.28314,40,0.810566664,316.0727234,291.730011,100755.4453,0.002411164,175.9455719,-1.43734e-05,70.96355438,-0.56236738,-0.583747625,0.609263718,3057,1010,train\n2475A,113.0383,25.8071,20170601,32.6800554,4451,6334,1704398.926,-337510.4259,192,0.240424827,333.8120117,291.1817932,98075.71094,0.002024018,219.5547943,-1.09133e-05,76.63010406,-0.10612078,-0.21573706,0.661989987,2535,1111,train\n1932A,107.1906,34.3672,20170601,50.35434174,3081,5398,1029508.115,586781.8682,596,0.305412918,13.86052036,285.8243103,91975.97656,0.001493757,105.6873093,-3.97722e-06,66.20861816,0.073162362,0.296520352,0.529422343,2810,736,train\n1980A,122.41,37.161,20170601,18.70396601,2634,7834,2197722.335,1169290.105,27,0.750730753,81.57907104,284.5595398,101011.3281,0.000867269,413.0947571,-4.38782e-05,68.79725647,0.742632449,0.109971464,0.569379807,2367,780,train\n1109A,121.6119444,38.97388889,20170601,30.28830084,2344,7706,2076360.891,1364078.986,23,0.200011507,115.6109848,284.403717,101277.9688,0.000439464,492.7960205,-9.28801e-05,61.71054459,0.180365443,-0.086445987,0.628965855,2263,92,train\n1280A,119.389,26.0542,20170601,24.21186441,4411,7350,2286633.379,-180241.4635,350,0.856737316,324.4451599,291.8222656,99741.82813,0.002665866,324.4317017,-3.70487e-05,83.3534317,-0.498229057,-0.696969628,0.415077567,5913,236,train\n2647A,104.1731,36.5458,20170601,42.94827586,2733,4916,750994.7195,821225.1675,1715,1.355695367,303.5161133,282.9290466,81715.86719,0.000577497,367.8388062,-6.98244e-06,44.23310471,-1.130332232,-0.748504579,0.314399362,1764,1263,train\n1689A,110.8592,21.6828,20170601,29.20142857,5111,5985,1577195.653,-844612.331,16,1.385302186,254.2406921,295.6589355,101002.3594,0.003173307,258.4579773,-1.73949e-05,80.11118317,-1.333215833,0.376294553,0.473231673,4321,522,train\n2483A,109.9453,27.5444,20170601,36.36023055,4173,5839,1383754.268,-185099.5222,238,0.65212518,337.4970703,290.1321716,97366.92969,0.002540052,199.850769,-1.102e-05,74.59181213,-0.249636829,-0.602452219,0.718379259,3245,1119,train\n2454A,109.5039,30.2989,20170601,41.26966292,3732,5769,1295229.587,131312.6263,456,0.183219969,16.68285751,288.5693054,92793.67969,0.00296109,106.9549866,-3.53988e-06,75.58926392,0.052596148,0.17550841,0.661848068,3550,1090,train\n2618A,98.8601,25.8567,20170601,19.85755814,4443,4066,366466.9035,-481398.4167,1044,0.494122148,95.02560425,287.450531,80397.75,0.003521879,36.58598328,-9.08586e-07,77.62693787,0.492224693,-0.043261465,0.214865834,5357,1238,train\n2502A,108.6236,21.9667,20170601,28.71488764,5065,5628,1351905.71,-845706.4135,10,0.263568163,304.5966797,294.9052734,100714.7266,0.002841118,276.7215271,-2.36491e-05,78.1467514,-0.216970816,-0.149639025,0.512249649,3318,1135,train\n2452A,113.3833,31.6908,20170601,49.01955307,3510,6389,1607172.389,352335.6562,85,0.661326408,269.8027344,288.4047546,100250.1016,0.001895521,208.8917847,-1.43587e-05,71.05017853,-0.661322355,0.002307559,0.811189592,3807,1088,train\n1484A,105.9512,38.6016,20170601,32.96111111,2404,5200,868240.432,1084277.167,1329,0.716346323,143.5142212,281.2161255,82920.0,0.00044568,203.4988098,-5.87599e-06,40.41498184,0.425998718,-0.575914204,0.351496994,2585,411,train\n1917A,103.8,25.5364,20170601,34.69859155,4494,4856,837893.0195,-488483.0636,1877,1.759679437,195.3168945,286.8308411,80416.26563,0.002461457,361.0354614,-1.45502e-05,75.19747925,-0.464819491,1.697178483,0.337081969,2663,721,train\n2211A,121.6592,42.0486,20170601,23.12188366,1852,7713,1979351.133,1726742.503,157,0.768486083,58.30780029,280.3286438,99347.92969,0.000842473,317.6134338,-5.452e-06,51.42351151,0.653879344,0.403748274,0.512108445,2700,872,train\n2508A,109.5683,23.1036,20170601,34.63714286,4884,5779,1425638.33,-702728.465,46,0.451461732,294.0062256,294.2759399,100055.75,0.003221848,231.5661316,-1.67761e-05,77.59007263,-0.412421674,-0.183646545,0.555551529,3513,1140,train\n1326A,114.2511,30.5514,20170601,43.4494382,3692,6528,1708555.233,233510.4901,31,1.118394494,301.5838928,290.1111145,101281.3594,0.002537019,214.9947205,-3.54378e-05,68.53266907,-0.952768087,-0.585695565,0.801629007,2720,273,train\n3002A,119.9736,31.8108,20170601,42.58333333,3490,7444,2168947.627,493025.0536,4,1.121845841,261.1388855,288.600708,101688.1328,0.001979715,278.7095947,-2.51468e-05,69.74658966,-1.108448982,0.172855139,0.766275406,2865,1372,train\n2203A,116.0781,43.9311,20170601,17.65738162,1551,6820,1523151.087,1851062.337,992,0.79381597,67.57935333,276.7290955,89322.67188,0.000284394,319.6823425,-4.90322e-06,45.40840912,0.733799815,0.302789748,0.312423199,1721,864,train\n1400A,112.4722,23.0786,20170601,38.267507,4888,6244,1707572.738,-659275.949,9,0.71356982,273.1748047,294.5643616,99983.96094,0.002943652,219.9272003,-1.55717e-05,76.19499969,-0.712476552,-0.039484859,0.553430438,2650,338,train\n1625A,115.9848,36.4372,20170601,59.31179775,2750,6806,1710247.662,956308.2363,34,0.990914941,220.6962585,287.0934448,101257.5391,0.000993995,200.2789154,-1.18998e-05,53.02191925,-0.646109343,0.751302302,0.851911545,2943,470,train\n1921A,108.7369,34.3164,20170601,66.23809524,3089,5646,1160144.182,597942.7275,383,0.36326772,164.9398956,286.6364746,94605.41406,0.00114498,93.62757111,-7.05726e-06,63.24367142,0.094418459,-0.350782841,0.613609433,2709,725,train\n2599A,100.2497,26.8802,20170601,14.76734104,4279,4288,491877.194,-355506.2786,2428,0.467945695,44.51752472,285.2825623,74317.75781,0.00256236,159.0809326,-4.54803e-06,64.42049408,0.328081906,0.333669662,0.177616209,3969,1220,train\n2497A,111.2353,23.415,20170601,48.28028169,4834,6046,1581438.563,-641663.7112,32,0.923986971,291.6904907,294.5239868,100337.1953,0.003047402,180.6576233,-1.66932e-05,77.21131134,-0.858582854,-0.341449052,0.543387771,3638,1132,train\n2698A,75.9828,39.5371,20170601,98.80446927,2254,405,-1479526.882,1293428.194,1370,0.099880852,141.0090332,287.869812,85787.76563,0.000299375,398.4848328,-1.8474e-05,33.57466125,0.062850446,-0.077627353,0.235154659,1580,1312,train\n1007A,116.315,39.9934,20170601,50.41736695,2181,6858,1643658.083,1384435.679,52,0.532783926,107.7722931,284.2668762,100620.9141,0.000982214,117.6309509,-5.88151e-06,47.84044647,0.507366955,-0.162596047,0.841994762,3138,6,train\n1186A,119.389,32.3761,20170601,46.29279279,3400,7350,2102611.502,545861.5699,7,1.056780815,258.4685364,288.1877136,101642.8281,0.002580811,258.9778137,-2.04407e-05,69.28695679,-1.035441279,0.211298689,0.781100869,2671,161,train\n2874A,117.0411667,32.64600333,20170601,56.67590028,3357,6975,1896597.917,529533.8617,31,1.130840302,254.9455109,288.3117981,101213.9063,0.002164221,226.0154114,-2.29249e-05,66.19322205,-1.092017651,0.293763787,0.806144416,2470,1341,train\n1788A,129.6386,44.5462,20170601,19.77793296,1453,8990,2444419.662,2197814.352,248,0.991636574,53.80203247,275.4576721,97609.59375,0.000862419,279.5148621,-6.75001e-06,67.07952118,0.80021596,0.585659921,0.398675889,2559,608,train\n1833A,113.292,33.739,20170601,60.00560224,3182,6375,1553817.64,592244.35,92,0.207277298,194.2907104,287.9678955,100151.0703,0.001286896,212.2362976,-1.33991e-05,62.01827621,-0.051163293,0.20086363,0.854885578,2315,650,train\n1915A,106.9178,27.72,20170601,29.96944444,4145,5355,1102493.731,-202909.8848,854,1.181907177,270.2075806,288.1087646,90537.52344,0.001933497,243.307663,-1.06997e-05,78.14828491,-1.181899548,-0.004227233,0.723858595,3283,719,train\n2006A,119.46,31.4,20170601,41.13091922,3556,7362,2137372.556,434220.0226,21,1.202006817,261.5230103,288.8313599,101578.8984,0.001886343,251.8521729,-2.40883e-05,71.03779602,-1.188867688,0.177240431,0.75641042,3791,805,train\n2590A,104.8811,25.0992,20170601,15.26544944,4564,5029,945622.833,-529450.6441,1283,0.861305594,254.327179,288.6146851,86431.32031,0.002539662,206.1522522,-1.17635e-05,79.12487793,-0.829273283,0.232708216,0.465371609,5435,1212,train\n3035A,122.0931,46.0707,20170601,14.30087209,1209,7783,1876604.018,2209679.408,267,1.328297019,104.9607849,277.0768738,97826.95313,0.000739863,295.70578,-6.42826e-06,51.74936295,1.283289909,-0.34284088,0.293536156,2263,1393,train\n1684A,110.3316,21.2679,20170601,25.9859944,5177,5901,1532549.208,-899914.3795,30,1.630625367,259.1130371,295.7373657,100906.1563,0.003400438,302.6914978,-1.81729e-05,81.16773987,-1.601264477,0.308044285,0.46582824,3771,517,train\n2615A,100.2171,25.5811,20170601,15.15915493,4487,4283,496900.7183,-507613.3694,2017,0.972710192,35.46317673,287.3417969,77876.65625,0.002134419,273.9028931,-1.21537e-05,65.579216,0.564332187,0.792271614,0.233715877,5387,1235,train\n1240A,121.586,29.8633,20170601,34.40027701,3802,7702,2367705.231,306040.8677,6,0.526893854,254.9023438,290.0255432,101474.3125,0.003142621,387.1171265,-3.88283e-05,78.45108795,-0.508701921,0.137257025,0.593012929,2330,204,train\n1496A,87.6444,43.962,20170601,64.43895349,1546,2271,-534847.5584,1710877.46,603,0.686324418,189.0024109,283.6722717,93380.15625,0.000354643,129.9361267,-9.48218e-06,46.73591995,-0.107390255,0.677870572,0.257363528,2046,419,train\n1893A,105.4306,28.9583,20170601,39.22050562,3947,5117,949971.4142,-73109.55815,322,0.549115181,334.5930786,291.9873962,97864.92188,0.00128253,148.4105988,-1.30472e-05,73.7434845,-0.235634133,-0.495987952,1.058444619,4853,700,train\n1340A,112.9792,28.2597,20170601,46.94182825,4059,6325,1646434.86,-55134.31895,30,0.774442554,346.8496704,290.9231873,100887.8672,0.00262666,236.5379486,-1.73787e-05,72.50500488,-0.176255643,-0.7541188,0.799811006,2105,286,train\n1374A,113.292,22.8054,20170601,28.99439776,4931,6375,1792622.345,-675687.2389,1,0.758004069,253.80867,295.2419739,101206.7031,0.003104889,257.3787537,-2.80492e-05,73.72279358,-0.727930486,0.211393848,0.552574277,3532,312,train\n1134A,126.635,45.7667,20170601,32.13547486,1257,8510,2192863.497,2268125.751,130,1.230559111,48.00048447,275.8968506,99870.67188,0.000719989,211.1055908,-7.07197e-06,61.44894028,0.914470315,0.823419571,0.405226946,1120,115,train\n1357A,114.117,22.5625,20170601,28.08798883,4970,6507,1877886.018,-687774.2831,19,1.304514289,263.2776489,294.9215088,100363.0391,0.003090781,305.2449341,-4.35993e-05,79.73753357,-1.29553926,0.152760014,0.50228411,3030,302,train\n2398A,113.7906,33.9953,20170601,52.43435754,3141,6454,1589798.006,630517.5944,69,0.394068658,227.0913391,288.0695801,100683.4141,0.001300904,207.1117401,-1.24434e-05,60.87358856,-0.288625121,0.268301398,0.861555219,3837,1045,train\n1246A,120.598,30.0911,20170601,42.53221289,3766,7544,2274781.606,308825.0294,9,1.023867726,281.7053833,290.1461487,101472.6641,0.002433016,272.2157593,-2.43084e-05,71.48095703,-1.002586007,-0.207668841,0.66721648,2580,210,train\n2404A,112.5224,33.0122,20170601,56.43732591,3298,6252,1504646.982,494370.3041,129,0.785927296,301.8539734,288.0603027,99925.4375,0.001374437,203.5218048,-1.24222e-05,66.80957794,-0.667589545,-0.414735973,0.841745496,2142,1051,train\n1811A,112.3628,34.6692,20170601,60.93277311,3033,6226,1456034.9,688227.0153,175,0.28727743,213.4764709,287.6018677,98713.89063,0.001070342,170.1418762,-1.0388e-05,60.11990356,-0.158456504,0.239624396,0.782719254,2822,631,train\n2575A,102.2311,27.8953,20170601,24.98459384,4117,4605,668454.1938,-224580.2746,1540,0.2498153,234.3257599,289.8138123,82585.65625,0.001893445,187.1129608,-3.30195e-06,62.25106812,-0.202932328,0.145691991,0.280997127,4169,1201,train\n2437A,114.8989,30.3714,20170601,57.2733711,3721,6632,1769583.174,223970.6215,32,0.869527996,273.8360291,290.2193604,101020.7344,0.00251587,190.4274445,-3.00439e-05,69.54967499,-0.867582738,-0.058130682,0.765437305,3278,1075,train\n1959A,118.746,36.881,20170601,52.24558824,2679,7247,1918272.628,1059709.41,21,0.866908371,201.2275848,286.0896606,101380.6875,0.000808298,224.8664093,-1.1834e-05,55.32573318,-0.313875586,0.80809176,0.745500684,2412,762,train\n1344A,112.9958,28.3586,20170601,47.99858757,4043,6327,1645810.518,-43370.10594,69,0.756720543,342.5375671,290.8086548,100645.4453,0.00267755,237.1007385,-1.7639e-05,72.65622711,-0.227137432,-0.721827209,0.780225039,4589,290,train\n1701A,111.9494,21.865,20170601,26.47058824,5082,6160,1680984.09,-805915.3515,7,1.071486354,284.2114258,295.1596985,100740.5781,0.003178635,269.3141479,-2.20186e-05,79.99268341,-1.038709164,-0.262994945,0.478349328,2977,531,train\n1076A,115.6906,37.739,20170601,61.18333333,2542,6758,1653612.94,1105688.704,23,1.175037026,207.3005524,286.637146,101386.4922,0.000766754,202.8595123,-1.18784e-05,49.38758087,-0.53892535,1.044160604,0.860339403,2074,62,train\n1761A,123.8436,41.3283,20170601,26.20416667,1968,8063,2162520.964,1688183.398,162,0.873671293,204.9165802,278.8351746,98619.32031,0.001152897,220.4054718,-7.31843e-06,63.46626663,-0.368065864,0.79235661,0.533671618,3511,583,train\n2474A,113.0119,25.8179,20170601,37.42577031,4449,6330,1701702.294,-336726.4442,177,0.259970546,336.2202454,291.3158875,98446.84375,0.002029434,225.2325897,-1.07889e-05,76.14299774,-0.104844972,-0.237891167,0.67931658,3710,1110,train\n2215A,123.1417,41.2894,20170601,33.12921348,1974,7951,2112705.527,1668357.147,21,1.004803896,186.644043,281.1124268,101082.6563,0.001031844,267.2101746,-8.81095e-06,51.84498215,-0.116253331,0.998056173,0.582609951,2688,876,train\n3033A,87.4651,43.4569,20170601,18.97464789,1627,2242,-552600.1829,1650168.661,1720,0.821363986,40.33463669,275.6513062,81051.17969,0.000779964,177.4375,-9.77225e-06,59.73023224,0.531615376,0.626118064,0.191398412,2550,1391,train\n1431A,103.97275,30.72358333,20170601,55.87465181,3664,4884,798474.6861,122594.7246,516,1.094888687,153.6392517,290.1993408,95423.6875,0.001169071,148.2844543,-1.13367e-05,69.5111084,0.486231744,-0.98099947,0.781147718,3140,362,train\n2494A,109.6958,28.2675,20170601,45.76388889,4057,5799,1348121.484,-104263.1695,223,0.720895946,290.6882324,289.393158,97632.04688,0.003573879,231.6224213,-1.17156e-05,77.11557007,-0.674424648,-0.254641682,0.748409092,4388,1129,train\n2678A,106.2025,37.9844,20170601,35.49438202,2503,5240,896619.8298,1011932.708,1131,0.399353206,185.6519318,285.2631836,88568.42969,0.000372326,277.828064,-9.58941e-06,37.78768921,-0.039329208,0.397411883,0.380642414,2617,1292,train\n1635A,118.3092,36.8198,20170601,58.88951841,2689,7177,1885401.582,1044044.809,65,0.975193918,189.9206696,285.8804321,100598.2109,0.000938738,199.3250732,-8.44907e-06,56.64081955,-0.168005884,0.960612953,0.760534585,2790,479,train\n1897A,104.7547,29.3628,20170601,74.37711864,3882,5009,883872.4251,-31738.68044,331,0.777469993,179.4752045,291.7219543,97437.15625,0.00105818,150.0917053,-1.27371e-05,72.93656921,0.007193131,-0.777436733,1.016264915,4591,704,train\n2577A,104.83,26.5917,20170601,40.890625,4325,5021,923318.1396,-356287.7843,1844,0.799913704,236.9937744,284.627533,80194.19531,0.002607421,232.2611847,-6.52448e-06,83.34240723,-0.670803905,0.435756862,0.524475694,4175,1203,train\n1488A,106.2328,38.4975,20170601,44.18994413,2420,5245,891915.4991,1074210.711,1108,0.731767595,121.852272,283.5935364,88452.24219,0.000320122,135.5515137,-5.42559e-06,39.16087341,0.621596158,-0.386137366,0.377271712,2324,412,train\n1403A,108.321,22.8225,20170601,33.82062147,4928,5579,1308748.553,-752206.7347,84,1.119592071,250.6407471,294.4284668,99893.10938,0.002779258,263.2190857,-1.60176e-05,79.79971313,-1.056275368,0.371172309,0.540578067,2095,341,train\n2315A,117.4974,30.6539,20170601,57.20555556,3675,7048,1989216.795,306535.6911,10,0.958787382,293.0215759,289.3667908,100851.5313,0.002318315,220.7883911,-2.18134e-05,72.43123627,-0.88244909,-0.374909043,0.735378623,3879,970,train\n2272A,117.3086,32.935,20170601,54.68539326,3310,7017,1911411.977,568505.7049,23,1.081582546,250.7500305,288.1820984,101444.8047,0.002217807,227.4403687,-2.00088e-05,66.17932129,-1.021097541,0.356624097,0.796961486,3390,930,train\n1660A,119.5198,35.4234,20170601,41.30501393,2912,7371,2023083.251,904047.8419,29,0.415533125,228.1508789,286.5542908,101158.75,0.00082856,347.9267578,-5.97478e-05,65.79637909,-0.309525549,0.277239442,0.689523339,2671,499,train\n1669A,113.586606,24.769519,20170601,36.18194444,4617,6422,1778356.609,-446737.7104,76,0.164397284,326.3635864,293.2125244,99861.25,0.002506563,161.2261047,-1.04936e-05,75.91668701,-0.091073401,-0.136865273,0.564152837,3361,505,train\n2423A,115.0625,30.2352,20170601,47.3969697,3742,6658,1787215.923,211059.9407,28,0.879741311,253.7840576,290.259552,101077.8906,0.002562172,191.2175598,-2.68668e-05,70.29212952,-0.844732404,0.24570699,0.743985772,3339,1062,train\n1108A,123.3783,41.9228,20170601,34.71727019,1872,7989,2107914.594,1747707.935,48,0.83898133,9.385151863,280.6687012,101060.6953,0.001095354,287.2320251,-8.63452e-06,49.98429871,0.136808962,0.827751756,0.554728389,3093,91,train\n1218A,120.225,33.3947,20170601,35.74438202,3237,7484,2142086.218,682273.6437,-1,0.970848262,253.0681763,287.1251831,101744.8359,0.001993368,258.4848633,-1.13064e-05,69.86140442,-0.928753316,0.282778352,0.675939739,3416,186,train\n1391A,113.7383333,22.96583333,20170601,35.75761773,4906,6446,1832328.983,-649269.1789,31,0.897951722,253.1913757,295.0991211,100822.3516,0.003149349,261.8977356,-3.69851e-05,73.82089233,-0.859577894,0.259698331,0.544216216,4262,329,train\n1272A,117.259,31.8706,20170601,46.20473538,3481,7009,1935879.476,443266.777,22,1.035451055,258.0049744,288.7788696,101371.3047,0.002230059,241.5169678,-1.69884e-05,67.69577026,-1.012833953,0.215235144,0.789512336,2949,228,train\n3012A,112.1908,31.03389,20170601,50.85154062,3615,6199,1517675.093,256208.5658,117,0.56425637,354.5836792,289.0747681,100168.3672,0.001967496,228.5219574,-2.08762e-05,71.69390106,-0.05331168,-0.561732233,0.821527898,4217,1379,train\n2003A,119.794,31.371,20170601,48.33333333,3561,7415,2166805.162,438180.2523,1,1.432892442,257.9572754,289.2860107,101386.2188,0.002004848,312.0127258,-5.81421e-05,71.57782745,-1.40134573,0.299016446,0.740708411,2835,802,train\n3064A,117.6983,36.2211,20170601,54.98994253,2785,7080,1853493.154,961850.0714,212,0.694641709,228.7049408,285.272644,98985.17969,0.000994343,198.2284851,-8.19533e-06,62.94991302,-0.521887481,0.458432764,0.769903243,2343,1405,train\n2289A,117.8561,30.9219,20170601,50.87396122,3633,7105,2013000.425,344935.4004,37,0.929070771,282.9291687,289.107605,100906.0,0.00207576,212.970108,-2.08305e-05,70.84411621,-0.905527532,-0.207828,0.740846932,3853,946,train\n1153A,118.778,32.0723,20170601,42.57244318,3449,7252,2059700.302,497627.2418,16,1.119075537,264.8840332,288.157135,101389.5313,0.002378167,241.9047089,-2.05532e-05,68.34951019,-1.114613056,0.099838696,0.772660017,2728,134,train\n2217A,123.8831,42.2953,20170601,30.840625,1813,8069,2131130.049,1802249.807,77,1.078734398,15.34309292,280.0916443,100510.7266,0.001095789,294.0438538,-1.1015e-05,52.51746368,0.285422772,1.040289164,0.515350103,3485,878,train\n1181A,117.244,34.2911,20170601,66.16428571,3094,7007,1869368.363,726169.4828,53,1.073421001,239.8292542,287.5418091,101317.0625,0.001620726,209.263916,-1.41703e-05,62.70018387,-0.927989662,0.539507031,0.802675426,2305,157,train\n1734A,111.5028,36.0714,20170601,76.35933148,2809,6088,1356289.227,842849.6058,449,0.435884416,82.36463928,285.7574768,94566.72656,0.000884549,137.0457611,-6.38621e-06,53.3295517,0.432017267,0.057933468,0.550855398,2229,557,train\n2539A,103.8986,30.0506,20170601,35.75,3772,4872,799138.2172,42225.48895,460,0.897696257,150.1503448,291.1086121,96439.96094,0.001057554,171.3225555,-1.42935e-05,70.82621002,0.446866781,-0.778568327,0.864451885,4268,1171,train\n1903A,104.4053,31.1167,20170601,49.15927978,3601,4953,832371.9486,172854.055,494,0.547267199,174.9160767,290.3775024,95044.44531,0.001027282,148.9884033,-1.04373e-05,66.18191528,0.048544731,-0.545109868,0.770202577,3003,708,train\n1406A,108.239,22.8464,20170601,32.19683908,4925,5566,1300370.89,-750563.3786,80,1.029970646,251.7612915,294.3756104,99650.26563,0.002759798,257.764679,-1.5841e-05,79.52333069,-0.978213847,0.322392762,0.546062648,2822,344,train\n2421A,114.0131,33.0069,20170601,55.45224719,3299,6490,1631237.792,517532.9515,85,0.436475486,215.5913391,287.9891052,100533.4219,0.001484962,208.8626862,-1.75671e-05,65.75605774,-0.254022181,0.354941636,0.875811219,2686,1060,train\n2258A,130.3648,46.8032,20170601,23.81714286,1092,9106,2396022.498,2474991.537,82,1.301913738,54.60100555,274.5829773,100037.3125,0.000743546,215.9531555,-8.81848e-06,65.11553192,1.061218023,0.754185379,0.375943929,1659,919,train\n1905A,106.056,30.8064,20170601,41.3079096,3651,5217,982043.6272,151289.3773,308,0.879426181,308.9922485,290.844635,97502.07813,0.001381001,151.6591034,-1.20811e-05,74.92990112,-0.683553874,-0.553303242,0.87104857,4923,710,train\n1953A,85.1186,45.6886,20170601,33.96398892,1270,1867,-696720.2586,1937530.886,291,1.729465842,129.2556,285.9472961,97494.44531,0.000166066,599.0054932,-8.77541e-06,40.29742432,1.339251518,-1.094283938,0.211915165,2318,756,train\n1209A,119.888,32.4639,20170601,55.42896936,3386,7430,2142080.254,566831.3799,3,1.003367186,258.8575439,287.8908691,101686.2188,0.00261259,255.0440063,-1.5001e-05,69.44334412,-0.984445691,0.193939552,0.766198397,3361,178,train\n1514A,112.9074,27.9119,20170601,47.09887006,4114,6313,1647371.706,-96699.16835,58,0.945307732,355.2565918,291.0732422,100739.2891,0.002657789,240.9077301,-1.72856e-05,72.48426819,-0.078255348,-0.942063034,0.785585403,4455,424,train\n2451A,113.3583,31.7275,20170601,50.34453782,3504,6385,1604197.261,356238.2333,70,0.705096662,270.2790527,288.396698,100247.0625,0.001855075,208.5019226,-1.39888e-05,70.9389801,-0.705088437,-0.003401343,0.817208886,2968,1087,train\n2614A,100.1542,25.7054,20170601,21.56703911,4467,4273,490153.9184,-493426.8257,2018,0.919150114,31.97635269,286.9704895,76959.82813,0.002134944,280.7499695,-1.82624e-05,65.33032227,0.486740649,0.779692531,0.2253277,5372,1234,train\n1632A,118.0448,36.838,20170601,53.40947075,2686,7135,1863898.159,1041146.352,31,1.010884523,192.8911743,286.0388489,100918.625,0.000872613,189.6843262,-8.88814e-06,55.88364029,-0.225521713,0.985407293,0.780150771,3026,476,train\n2476A,113.0348,25.7759,20170601,36.1680791,4456,6334,1704737.681,-341157.4545,199,0.236297563,327.7247925,290.9969482,97642.17969,0.00204571,216.3026123,-1.05137e-05,76.9944458,-0.126194894,-0.199778333,0.671119452,3554,1112,train\n1089A,112.488,37.7805,20170601,67.54843305,2535,6246,1399725.925,1060873.397,787,0.506280482,156.6732941,282.6539001,90270.96875,0.001074885,137.1691589,-6.10227e-06,51.81279373,0.200511262,-0.464881897,0.501628935,2474,74,train\n2439A,112.2014,31.0483,20170601,56.0724234,3612,6200,1518301.944,258064.994,98,0.547357678,357.2966614,289.0420532,100095.4922,0.001961888,228.4979553,-2.06951e-05,71.67955017,-0.025865909,-0.546746194,0.82157737,3589,1077,train\n2478A,111.6156,26.4214,20170601,44.47167139,4353,6106,1559207.546,-290335.2026,105,0.617295802,318.7261963,291.8294067,99039.89844,0.001636964,260.2683105,-1.18333e-05,70.72663116,-0.407237262,-0.463909388,0.74633646,2996,1114,train\n1073A,116.8709,38.3228,20170601,54.73184358,2448,6947,1730755.299,1195336.823,9,1.189467311,203.3088531,285.6641235,101564.7656,0.000926884,180.3038177,-9.42345e-06,50.5304451,-0.470644176,1.092394948,0.85095942,2064,59,train\n1710A,116.3594,23.5739,20170601,28.48587571,4808,6865,2069673.629,-528382.5837,31,0.57477802,259.56604,294.0877686,100362.9063,0.00251438,191.7503662,-1.44238e-05,79.42962646,-0.565269351,0.104116783,0.442840546,2550,538,train\n1864A,110.3089,25.2708,20170601,42.62952646,4537,5897,1458501.479,-443179.4241,160,1.187788486,316.0391846,291.9887085,98063.20313,0.003044128,217.6634064,-1.29818e-05,75.54496765,-0.824582458,-0.854929984,0.59533596,2931,677,train\n1231A,120.301,30.4183,20170601,38.71666667,3713,7496,2239065.497,339629.7205,9,0.943836272,291.066925,289.4186707,101354.8906,0.002493108,254.2673035,-1.9667e-05,71.26215363,-0.880770802,-0.339219272,0.712481678,2977,198,train\n2551A,107.5069,31.1956,20170601,49.24373259,3589,5449,1104370.374,212781.8874,339,0.832082272,316.1691589,290.0606995,95877.53906,0.002013422,86.69328308,-7.3117e-06,75.29351807,-0.576285303,-0.600213468,0.721264839,3271,1180,train\n1878A,104.7778,31.4747,20170601,44.43398876,3544,5012,860985.3154,218601.7323,489,0.565733552,332.7427673,290.3540344,95431.49219,0.000928277,148.548111,-1.0968e-05,65.83541107,-0.25913763,-0.502893746,0.751277328,2850,686,train\n2682A,105.1971,37.5002,20170601,38.00702247,2580,5080,822548.288,944650.9018,1225,0.358546615,195.6910858,285.1191406,87173.6875,0.000419843,341.2068176,-8.10492e-06,39.3909111,-0.096966475,0.345185727,0.353224605,2702,1296,train\n1652A,119.1939,36.7731,20170601,44.57843137,2696,7319,1956917.441,1055844.419,15,0.882698596,205.7969971,286.010437,101524.9688,0.000825922,246.460434,-1.36649e-05,58.17367554,-0.38412559,0.794735372,0.729832768,2927,491,train\n1068A,116.7729,39.5747,20170601,42.60393258,2248,6932,1689617.989,1342357.198,14,0.69102627,0.678993583,285.2820129,101536.25,0.001078529,187.1360474,-9.09951e-06,46.61048889,0.008191353,0.690977752,0.875583827,3295,55,train\n1659A,119.4641,35.4178,20170601,41.96218487,2913,7362,2018749.783,902246.3748,15,0.328011721,229.0926514,286.4263306,101229.4531,0.000835942,328.4160461,-5.12127e-05,66.17008209,-0.247895807,0.21480073,0.68579483,2297,498,train\n2556A,103.0001,29.9816,20170601,48.52539683,3783,4728,719303.9277,27111.64724,606,0.296465009,115.0142593,287.4232483,89730.72656,0.001836429,91.5186615,-4.01032e-06,77.11815643,0.268664777,-0.125342503,0.686961412,4048,1185,train\n2228A,125.1567,42.8953,20170601,33.06657224,1717,8273,2200010.373,1900473.671,268,1.223889828,41.37622833,277.7859802,97905.3125,0.001167713,275.0844727,-8.95835e-06,60.26158524,0.808972418,0.918406248,0.478661478,2140,889,train\n2240A,130.962,45.2924,20170601,22.86111111,1333,9202,2500953.222,2316743.588,206,1.259371758,78.80725098,274.7574768,97771.85156,0.000966321,297.4319458,-5.74787e-06,69.00905609,1.235408187,0.24450697,0.383280218,2052,901,train\n1641A,117.4518,35.0992,20170601,49.70762712,2964,7040,1864448.603,825083.3174,168,1.152058601,240.746933,286.5387268,99600.75781,0.001163998,209.1637573,-1.16866e-05,64.45832825,-1.005118847,0.563005388,0.779389083,3462,485,train\n1355A,113.589,23.5538,20170601,33.23537604,4811,6422,1805120.318,-585289.9502,32,0.765622079,292.2573853,294.1547852,100269.4688,0.003279448,197.6809082,-1.43646e-05,76.49649811,-0.708593667,-0.28995201,0.543533087,4237,300,train\n2617A,98.578,24.441,20170601,42.49019608,4670,4020,345706.1916,-647351.3981,909,0.524014056,47.25299835,292.4095764,88425.39063,0.003632618,69.62265015,-2.15409e-06,74.87721252,0.384805262,0.35569036,0.274780333,3682,1237,train\n1017A,117.237,39.1082,20170601,53.32777778,2323,7006,1737780.138,1295015.283,6,1.036170483,190.2543945,285.3269653,101627.0625,0.000786181,201.5840607,-2.18549e-05,50.02039719,-0.184452325,1.019620776,0.854233265,1963,13,train\n2320A,119.0018,25.4552,20170601,31.57983193,4507,7288,2267995.467,-257121.4853,58,1.265537977,333.6867065,292.2887878,99387.14844,0.002287746,354.2032166,-3.21668e-05,81.42645264,-0.561075985,-1.134363294,0.415670455,4886,975,train\n2007A,119.438,31.317,20170601,41.8005618,3569,7358,2137929.692,424135.2644,19,1.193521738,261.0742188,288.7021179,101252.5625,0.001873031,247.5405731,-2.04754e-05,71.48733521,-1.179060578,0.185230106,0.769857705,3573,806,train\n2252A,128.8736,47.7222,20170601,17.74193548,945,8868,2261062.045,2545351.046,236,0.80924207,59.2206955,272.6233521,97133.95313,0.001100571,181.5938568,-3.45161e-06,74.71936798,0.695243478,0.414136767,0.312150061,2412,913,train\n1113A,121.625,38.86388889,20170601,25.54366197,2362,7708,2080940.256,1351447.218,26,0.297588795,113.5048523,284.4838867,101284.4922,0.000440985,514.1121216,-0.000102745,61.78464508,0.272903681,-0.118670449,0.636235833,5164,96,train\n1094A,111.751,40.8369,20170601,38.55774648,2046,6128,1278134.455,1417647.034,1068,0.613084853,172.1980591,280.0837097,88321.92188,0.000671681,180.0339966,-4.51346e-06,43.51042175,0.083279334,-0.607402325,0.388767004,2219,79,train\n1162A,120.591,31.3019,20170601,45.21527778,3572,7543,2237024.906,448059.2928,8,1.530174613,269.3577271,289.3453064,101564.0,0.001756569,331.8258057,-5.31021e-05,72.07091522,-1.530077696,0.01722341,0.712134421,2333,143,train\n2267A,126.9636,46.6527,20170601,30.71186441,1116,8562,2180126.846,2378405.876,175,0.873803139,61.62137604,274.9441833,99444.42188,0.000810609,190.8537598,-7.19754e-06,65.32666779,0.768781483,0.41533953,0.365864515,2509,925,train\n1429A,106.513,29.389,20170601,38.69390582,3878,5290,1042154.877,-11416.5757,211,0.617653072,304.982605,291.7689514,97582.88281,0.001398313,128.9347382,-1.02366e-05,73.19018555,-0.506082058,-0.354085088,0.955352187,3010,361,train\n2566A,102.1755,31.9286,20170601,4.474930362,3472,4596,628361.9688,252944.9263,2887,0.317354977,266.8496094,275.2094421,66149.50781,0.001560812,74.56398773,-1.1333e-06,73.08799744,-0.316874593,0.017454971,0.141552567,5597,1193,train\n1002A,116.17,40.2865,20170601,48.08073654,2134,6835,1625003.973,1416959.964,420,0.70919323,162.6338501,282.9076843,97125.08594,0.001043523,157.7759705,-6.23878e-06,53.60550308,0.211734444,-0.676848233,0.712079525,5255,1,train\n2429A,110.78,32.6494,20170601,48.53703704,3356,5973,1363348.214,426035.021,267,0.579666078,266.3717346,287.6343994,96314.85938,0.001682506,154.8578186,-9.48046e-06,71.86335754,-0.578502595,0.036708716,0.770803034,3530,1067,train\n2659A,98.5023,39.7294,20170601,34.2994429,2223,4008,273291.7493,1178124.166,1479,1.186703205,31.64324188,282.0433044,83439.58594,0.000223595,126.6658401,-6.86272e-06,38.02019882,0.622561932,1.010287642,0.20681259,2089,1275,train\n2588A,105.31,27.2944,20170601,31.77094972,4213,5098,959596.5055,-269573.219,1506,0.402884245,250.622757,285.1691589,84010.78125,0.002070776,231.0780945,-7.42555e-06,85.65518188,-0.380057812,0.13368535,0.670807779,2820,1210,train\n1680A,110.3539,21.2706,20170601,25.63165266,5177,5905,1534712.054,-899260.9562,20,1.636835337,259.013092,295.7459412,100946.1172,0.003391973,305.9963379,-1.83328e-05,81.19696808,-1.606820703,0.312020898,0.465937406,3658,516,train\n1711A,116.4094,23.5292,20170601,32.23882682,4815,6873,2075560.155,-532379.95,5,0.638857126,264.2199707,294.2381592,100533.2813,0.002460144,210.3935699,-1.73349e-05,79.34617615,-0.635606289,0.064366683,0.452055335,3204,539,train\n2237A,129.4892,42.8939,20170601,17.38028169,1717,8966,2503912.371,2004032.498,180,1.011323571,88.91830444,276.5528564,97820.65625,0.000780401,299.2271729,-3.29339e-06,67.62123871,1.011142492,0.019138074,0.40419969,2405,898,train\n1063A,117.9525,40.9843,20170601,23.03760446,2023,7120,1739704.031,1530562.888,372,0.236213982,74.86058044,280.9880981,95162.17969,0.000922693,222.1085663,-4.33684e-06,49.40387344,0.228013366,0.061700508,0.596278071,3443,50,train\n2630A,80.1161,32.5,20170601,16.11726384,3380,1067,-1289241.411,396246.3684,4290,1.630481243,54.8483696,275.8942261,58827.33984,0.000362187,1170.675903,-8.6177e-06,29.03489876,1.333105922,0.938774526,0.056254357,672,1248,train\n1473A,108.985,34.1978,20170601,65.46175637,3108,5686,1182983.797,586753.9869,472,1.085491776,185.1331635,286.140686,95049.19531,0.00140997,88.06926727,-7.08988e-06,65.34165192,-0.097117551,1.081138611,0.619029522,2847,401,train\n1648A,119.12,36.7019,20170601,46.91504178,2708,7307,1953158.606,1046001.212,31,0.855927348,200.0806122,286.0301208,101318.5313,0.000787754,243.0398712,-1.1805e-05,58.25310898,-0.29386735,0.80389899,0.733187616,2308,489,train\n1122A,125.3649,43.8748,20170601,29.41114458,1560,8306,2178227.372,2019437.433,198,1.324145079,44.50125122,277.6734619,98947.71094,0.00111393,265.17453,-1.06744e-05,59.65094757,0.928104579,0.944447994,0.473441273,1843,104,train\n2190A,122.3039,43.6156,20170601,22.00710227,1602,7817,1973369.536,1924365.265,175,0.956740677,44.02510452,279.7571411,99480.5,0.000682122,324.0717163,-6.1277e-06,47.08013916,0.664893806,0.687945485,0.415284872,2486,854,train\n1482A,101.834,36.5819,20170601,64.51694915,2727,4541,559552.2452,809986.2106,2233,0.903442025,239.3544922,279.340332,74867.73438,0.000858076,240.4103241,-4.8393e-06,48.3513298,-0.777251005,0.460530549,0.217406556,2408,409,train\n3036A,118.696,37.43445,20170601,50.83479532,2591,7239,1898271.44,1123955.051,1,1.114443898,225.6781616,285.9765015,101711.6797,0.000687702,251.7024384,-3.53631e-05,54.1207695,-0.797284305,0.77866751,0.756052136,2608,1394,train\n2534A,105.0406,29.5822,20170601,34.67746479,3847,5054,907033.8767,-3237.770484,332,1.068079472,330.5858765,291.5884399,97374.14063,0.001094099,159.7591095,-1.27344e-05,73.3921051,-0.524626017,-0.930355489,1.025977254,3692,1166,train\n2338A,117.0151,25.0311,20170601,21.51805556,4575,6970,2094554.582,-349343.1519,397,0.463234156,261.2901917,291.2410278,94898.13281,0.00246005,111.8146439,-7.55474e-06,79.13510132,-0.457889199,0.070166752,0.432569057,3777,988,train\n1934A,107.1186,34.3739,20170601,48.6103352,3080,5387,1023359.263,586831.0355,629,0.357475519,27.64004898,285.7642212,91695.45313,0.001488057,110.3381729,-3.89431e-06,65.56370544,0.165833816,0.316682607,0.537284136,3351,738,train\n2680A,105.0197,37.4514,20170601,32.86182336,2588,5051,808891.6753,937283.2381,1259,0.325256735,199.6809082,284.3375854,85470.44531,0.000443934,334.6666565,-7.92326e-06,40.30327606,-0.1095374,0.306257248,0.31900239,1533,1294,train\n2877A,119.1638,36.6525,20170601,45.55665722,2716,7314,1958091.557,1041064.292,48,0.81976521,196.9091492,285.90448,101141.7734,0.000789763,244.4321136,-1.19358e-05,59.03960037,-0.238425881,0.784326494,0.738867044,2736,1344,train\n1797A,118.4022,31.3839,20170601,48.11772853,3559,7192,2047188.256,409829.4369,10,1.208682656,274.6813049,289.0191345,101518.1172,0.002031749,229.969986,-2.35457e-05,68.44996643,-1.204655409,-0.098586068,0.757750034,3297,617,train\n1941A,109.4266,34.5021,20170601,61.24373259,3060,5756,1214709.031,628430.6458,357,0.879841268,251.7609558,287.5474243,96176.5,0.001069992,102.3084717,-7.94492e-06,60.6456604,-0.835627019,0.275405437,0.605953097,3409,745,train\n1278A,117.278,31.7386,20170601,49.27824859,3502,7012,1941052.011,428259.4521,18,1.122968554,258.1546326,289.322113,101410.2188,0.002273595,249.6889191,-2.03922e-05,67.68088531,-1.099045873,0.230557203,0.788195252,2982,234,train\n2457A,112.6194,26.9258,20170601,41.8531856,4272,6267,1641864.992,-215691.2553,64,0.984476268,345.005188,291.8616333,100571.3281,0.002384939,261.6593628,-1.72992e-05,71.38027191,-0.254796147,-0.950932443,0.752492309,2699,1093,train\n1479A,103.831,36.0464,20170601,55.54131054,2813,4861,728492.9776,758417.7101,1589,1.181087255,249.4361877,282.3246155,81448.125,0.0007738,225.0000153,-6.69714e-06,49.72145462,-1.105815411,0.414896786,0.307305455,2402,407,train\n2340A,119.5202,26.6607,20170601,32.12569832,4314,7371,2281125.439,-108306.3822,83,0.321464807,312.5800781,290.3682251,97187.89063,0.003701851,192.2820282,-1.81776e-05,84.54278564,-0.236719832,-0.217493311,0.465289593,5571,990,train\n1511A,112.9118,27.8403,20170601,48.11731844,4126,6314,1649302.492,-104928.0975,51,0.931414545,355.4562683,291.0872192,100744.2422,0.002671917,240.1859131,-1.74296e-05,72.51087189,-0.073869817,-0.928480625,0.787657201,3302,421,train\n2387A,114.2878,35.7306,20170601,52.82686981,2863,6534,1590487.025,844054.2697,88,0.512310326,56.69152832,287.65271,100443.2109,0.000883302,200.9434814,-1.02015e-05,56.86006927,0.428142905,0.281345874,0.809254885,3179,1037,train\n1817A,112.4275,34.6258,20170601,63.49719888,3040,6236,1462327.233,684035.2322,145,0.428625435,207.6272888,287.6339417,99074.23438,0.001062244,171.9577026,-1.01688e-05,60.34508514,-0.19875598,0.379757583,0.793782949,3026,636,train\n2395A,115.0772,35.767,20170601,57.44803371,2857,6660,1653797.949,861401.1933,51,0.79685843,211.3308258,287.7846375,101061.6172,0.00078969,205.538681,-1.09195e-05,54.86204147,-0.414338499,0.680666566,0.863194704,2317,1043,train\n1356A,114.1063,22.5545,20170601,27.20926966,4971,6505,1877026.324,-688883.0505,17,1.319441557,263.1357422,294.9416199,100378.4609,0.003077449,306.2022705,-4.3861e-05,79.63565826,-1.309977174,0.157752723,0.501211405,2807,301,train\n2403A,112.5192,32.9917,20170601,62.29189944,3301,6251,1504811.55,491899.4999,125,0.814088702,299.4424438,288.0932312,99960.01563,0.001373866,205.654068,-1.23444e-05,66.74893188,-0.708973646,-0.400120944,0.843529761,2116,1050,train\n2608A,103.3772,23.3993,20170601,26.65198864,4836,4788,818888.1159,-739499.3226,1291,1.261051774,199.8368073,289.856842,86490.78125,0.002855228,202.9137878,-4.72273e-06,82.96553802,-0.427915782,1.18622911,0.346936643,3872,1228,train\n1676A,116.7258,23.2775,20170601,21.45567867,4856,6924,2112121.305,-554053.7485,18,2.458545923,283.6779175,295.0837708,101214.3203,0.002042381,387.1519165,-8.64682e-05,80.65623474,-2.38885355,-0.58122921,0.40844658,2658,512,train\n1591A,110.0023,39.8129,20170601,27.22957746,2210,5848,1164815.702,1272533.098,1453,1.374191999,66.17224121,280.4753723,85846.57813,0.000836773,271.5151672,-1.09041e-05,45.48843765,1.257042527,0.555200517,0.398181736,1515,440,train\n1348A,113.348,23.0916,20170601,31.47632312,4885,6384,1791913.674,-642203.4203,2,0.771642923,263.4588013,295.0488281,101200.1016,0.003284694,243.738205,-2.50305e-05,73.23412323,-0.766615868,0.087936565,0.556255579,2592,293,train\n1450A,102.821,24.8885,20170601,22.06388889,4598,4699,750894.3823,-571685.6833,1920,1.286846638,2.899976254,288.4659119,80669.92969,0.002776541,368.7088623,-2.876e-05,70.82524872,0.06510298,1.285198808,0.291824192,3193,378,train\n1782A,123.6261,47.203,20170601,26.81497175,1028,8028,1939987.251,2372698.985,152,0.808801353,93.36252594,276.7007141,99660.85156,0.00057352,264.4382019,-1.32619e-05,53.23241806,0.807411194,-0.047400083,0.278404564,2257,602,train\n1471A,109.2186,34.3731,20170601,59.05270655,3080,5723,1199561.166,610490.6246,479,0.708416522,260.0042114,286.7976685,94360.4375,0.001053304,100.8179016,-7.43027e-06,61.01222229,-0.697658002,0.122992784,0.612815082,3830,399,train\n1587A,110.0067,40.5905,20170601,45.84818942,2086,5849,1150716.727,1366384.003,1033,0.6955446,339.8997803,281.8370972,89376.53906,0.000438684,185.1907196,-6.85043e-06,39.60290527,-0.239087284,-0.653161228,0.407932788,1303,436,train\n2676A,97.3731,37.3753,20170601,28.27777778,2600,3828,192117.5837,889084.8891,2999,0.606610894,324.050293,276.5194397,68761.16406,0.000645369,180.1441193,-5.56876e-06,38.20018387,-0.356162399,-0.491044939,0.110580862,1636,1290,train\n2470A,112.3347,28.6047,20170601,29.37283237,4003,6222,1580885.32,-25606.94122,34,0.453820527,327.9594421,290.6940918,100817.8125,0.002454311,254.8023376,-2.5101e-05,72.0012207,-0.240789875,-0.38467297,0.844014049,2840,1106,train\n1146A,120.978,31.0935,20170601,48.90921788,3605,7604,2276568.048,432926.741,3,1.134941697,269.9763184,288.7773743,101668.9609,0.001936015,308.4819031,-3.44612e-05,74.07064819,-1.134941578,0.00052182,0.681437254,3215,127,train\n2926A,106.1024,38.49494,20170601,53.02661064,2421,5224,881640.8642,1072724.344,1119,0.925673544,127.1165771,283.8668213,88816.90625,0.000348904,167.7219849,-5.67327e-06,39.79272842,0.738177359,-0.558538914,0.375401974,2889,1366,train\n1080A,114.4854,37.062,20170601,68.37955182,2650,6566,1574792.451,1005398.511,76,0.769093096,55.5141449,286.6465454,100286.4063,0.000811564,164.4893494,-8.83304e-06,52.05469131,0.633924842,0.435480744,0.792172372,2071,66,train\n1299A,116.988,36.6114,20170601,53.2592068,2722,6966,1785985.883,994763.6837,134,1.198862195,213.053421,286.2298279,100400.0547,0.001087912,191.6004639,-1.18428e-05,57.19073486,-0.653867245,1.004852295,0.817577362,3037,251,train\n1969A,120.537,36.865,20170601,33.85582822,2682,7534,2060299.431,1094089.982,57,0.381477177,211.9386902,284.4803467,100774.1094,0.00108989,264.4487305,-7.3596e-06,65.02375793,-0.20180048,0.323730439,0.638130546,2453,769,train\n1786A,129.5902,44.5952,20170601,22.29411765,1445,8982,2439075.802,2202248.195,248,0.985315084,63.14550781,275.3909302,97506.6875,0.000871453,279.1282043,-6.38892e-06,67.08575439,0.879040897,0.445121258,0.399129808,2144,606,train\n1858A,110.48,29.1389,20170601,45.04469274,3918,5925,1403307.242,8582.056399,230,0.914720058,272.6709595,288.775177,96692.19531,0.002847217,207.5251465,-8.68697e-06,77.37037659,-0.913728356,-0.042582527,0.737847686,3134,671,train\n2586A,109.1794,27.7231,20170601,29.31284916,4144,5717,1310320.296,-174778.9917,276,0.9342044,306.7456665,289.3229675,96045.21875,0.00228549,230.838913,-1.01422e-05,77.54299164,-0.748613536,-0.558852077,0.732177615,3430,1208,train\n2589A,104.9022,25.0925,20170601,16.9625,4565,5032,947713.8409,-530024.3482,1221,0.869531393,255.2337952,288.7155762,86595.30469,0.002511422,207.3165741,-1.21594e-05,78.94020081,-0.84080559,0.221654713,0.497350246,5020,1211,train\n2533A,105.0653,29.5817,20170601,37.25698324,3847,5058,909263.4587,-3068.511402,321,1.079145312,329.4352417,291.5730286,97362.64063,0.001104659,159.3561859,-1.26529e-05,73.56088257,-0.548829556,-0.929161251,1.020235181,3306,1165,train\n1552A,106.805,26.3003,20170601,34.97844828,4372,5337,1112103.252,-369787.7437,1463,1.313749671,238.0185394,287.2139587,87357.03906,0.002269292,333.3141174,-9.25281e-06,83.5423584,-1.114327431,0.695853949,0.562892199,5662,430,train\n1271A,117.307,31.8766,20170601,51.31754875,3480,7017,1939820.642,444912.7486,20,1.055467486,259.3335266,288.8564148,101454.2734,0.002232966,246.9914551,-2.08359e-05,67.71926117,-1.037222385,0.195400387,0.778991818,2257,227,train\n2689A,93.4961,42.8328,20170601,32.6103352,1727,3207,-111567.7225,1553397.079,761,1.321559429,166.3286438,287.431366,92205.11719,5.79569e-05,212.1388245,-3.06988e-06,27.20147514,0.312463641,-1.284089446,0.240016878,2023,1303,train\n2496A,111.3178,23.475,20170601,36.53910615,4824,6059,1588253.347,-633486.4083,65,0.943925142,298.3441772,294.3736267,100100.7734,0.0030029,179.8728638,-1.75776e-05,77.18374634,-0.830786824,-0.448093712,0.534276247,4296,1131,train\n1631A,118.0482,36.8088,20170601,53.3245614,2691,7136,1864991.085,1037766.87,41,1.040923715,190.2612,285.9635315,100772.5625,0.000912619,190.433548,-8.83044e-06,56.51491547,-0.185420588,1.024276018,0.780364931,2568,475,train\n1346A,113.261,23.105,20170601,35.15502793,4883,6370,1783229.312,-642265.1455,12,0.786271274,266.4555664,295.1201172,101258.9297,0.003122867,243.8480835,-2.38846e-05,72.57878113,-0.784765124,0.048644256,0.555120885,1915,292,train\n2458A,112.6211,26.8956,20170601,41.88227147,4277,6267,1642654.437,-219153.1906,63,0.986598134,343.7758179,291.9206238,100612.1016,0.002359344,261.044342,-1.73178e-05,71.22641754,-0.275731951,-0.9472844,0.745732307,2348,1094,train\n1338A,112.9394,28.19,20170601,52.06601124,4070,6318,1644325.023,-63893.44358,102,0.807576537,350.2634583,290.8830566,100708.8672,0.002644349,238.8645935,-1.74299e-05,72.54368591,-0.13664557,-0.795932055,0.78768146,5543,284,train\n1783A,123.945,47.2988,20170601,34.6183844,1012,8079,1957565.5,2390263.032,145,0.81807965,86.1865387,276.5497437,99684.0625,0.000592191,265.580658,-1.44241e-05,54.62895966,0.816265941,0.0544452,0.292001158,2225,603,train\n1806A,116.0174,29.6535,20170601,37.94428969,3836,6811,1885682.75,161286.3918,153,0.832318842,310.0906372,289.7447815,99561.14063,0.003191837,235.1663055,-3.33016e-05,74.88863373,-0.63678205,-0.535969496,0.690182686,5690,626,train\n2290A,117.8472,30.9697,20170601,53.95621469,3625,7104,2010917.284,350299.7853,8,0.952269971,285.2825623,289.1690063,101224.8125,0.002050756,217.2445221,-2.24097e-05,70.30760956,-0.918609023,-0.250949264,0.747032166,3014,947,train\n1937A,107.2386,34.3622,20170601,50.03760446,3082,5406,1033615.679,586687.8657,591,0.28761375,2.260253668,285.7457886,92072.4375,0.001504506,101.9603806,-4.02169e-06,66.73080444,0.01134264,0.287389994,0.546833992,2701,741,train\n1224A,120.063,30.2747,20170601,37.63788301,3736,7458,2222775.911,317695.5028,6,0.714374721,308.1428223,289.4983826,101102.5469,0.002687519,227.7123413,-1.56558e-05,72.9908371,-0.561866105,-0.441177607,0.704770803,4086,191,train\n2297A,118.1371,30.2756,20170601,23.8575419,3736,7150,2055251.729,275872.8253,176,0.426897407,274.040802,288.4789429,97984.97656,0.003129513,167.9563446,-8.27726e-06,77.63318634,-0.425837636,-0.030061524,0.647016048,4595,954,train\n1214A,119.0122,33.627,20170601,49.44707521,3200,7290,2034451.028,683554.1346,15,1.037345767,253.7719116,287.4024963,101607.5625,0.001693185,239.2324829,-1.73453e-05,66.0721817,-0.996003628,0.289936185,0.751135767,2864,183,train\n1399A,112.565,23.1617,20170601,39.39495798,4874,6258,1714838.677,-648212.3413,17,0.661383867,277.3355103,294.3409119,99287.88281,0.003029945,219.1104431,-1.81026e-05,75.72619629,-0.655974984,-0.084412314,0.564404726,4265,337,train\n1975A,120.399,37.374,20170601,28.94929577,2600,7512,2033627.073,1150916.938,63,0.834623277,210.302597,284.6075745,100238.6563,0.00080018,326.9888306,-1.93477e-05,63.77984238,-0.421111912,0.720597506,0.653290629,2927,775,train\n1721A,113.3819,40.1097,20170601,39.15384615,2163,6389,1417699.178,1352644.265,1061,0.856366098,94.81126404,280.1578979,88586.0625,0.000814735,169.4886322,-4.989e-06,45.98936081,0.853352129,-0.071784958,0.446172684,1500,547,train\n2191A,122.2532,43.6801,20170601,20.17887324,1591,7808,1967636.207,1930947.429,175,0.891622245,47.11419296,279.763855,99452.13281,0.000664869,327.8914185,-5.75062e-06,46.47060394,0.653287113,0.606799901,0.399967492,2616,855,train\n2467A,112.4067,28.6428,20170601,41.83333333,3997,6233,1586588.881,-20011.16606,28,0.567671716,325.7294617,290.8299866,101025.9219,0.002409793,263.3740234,-2.90205e-05,71.49113464,-0.319691867,-0.469093055,0.840340495,4168,1103,train\n1524A,113.13,27.8528,20170601,43.01404494,4124,6349,1668896.64,-99794.76483,41,0.797493875,349.0153198,291.2219238,100579.5313,0.002730258,226.1065521,-1.70485e-05,72.64543915,-0.152027696,-0.782869101,0.761444569,2462,429,train\n2651A,105.8614,34.5653,20170601,34.33286119,3050,5186,915107.2498,597345.9173,1104,0.893947423,219.9158173,283.5162964,85888.86719,0.001296321,250.276825,-6.75318e-06,63.71847153,-0.573597491,0.685658753,0.467576444,2934,1267,train\n2690A,87.9897,44.1564,20170601,10.12539185,1515,2326,-508085.4248,1732801.491,558,0.777440488,12.27381229,283.6047974,93165.0625,0.000331724,194.7369843,-8.14053e-06,45.60099411,0.165266424,0.75967145,0.212963939,2710,1304,train\n2468A,112.3458,28.5808,20170601,44.30736544,4007,6223,1582383.364,-28210.33019,54,0.42097199,332.2106018,290.6671143,100773.4063,0.002468345,253.0350952,-2.32627e-05,72.11418152,-0.196295977,-0.372404784,0.843540668,2836,1104,train\n1674A,116.6794,23.3667,20170601,24.04929577,4841,6917,2105426.719,-544986.0802,11,1.956584573,282.5606689,294.9193115,101028.1328,0.002088661,339.1417236,-5.81948e-05,80.44031525,-1.909778714,-0.425403595,0.397007704,2273,510,train\n1178A,117.192,34.2417,20170601,62.62464986,3101,6999,1866405.805,719380.6569,39,1.07820034,240.1565552,287.5435181,101265.0938,0.001635063,208.5312195,-1.34286e-05,62.84805298,-0.935201764,0.536575735,0.810628355,3470,155,train\n1088A,112.549,37.9854,20170601,57.60422535,2502,6256,1400132.117,1086251.917,822,0.273020446,102.5704422,282.8140564,91173.55469,0.001138521,147.1578522,-5.05958e-06,53.4700737,0.266479075,-0.059406016,0.494856417,3155,73,train\n1337A,113.0792,28.2053,20170601,48.97075209,4067,6341,1656664.24,-59769.08318,44,0.761191964,345.5974121,291.0561218,100940.6328,0.00253287,228.7906494,-1.65405e-05,72.40476227,-0.189396977,-0.73725301,0.782356024,3067,283,train\n2366A,114.8905,25.8471,20170601,45.81320225,4445,6630,1876185.353,-299171.6027,121,0.495152056,171.5131683,292.2163086,99450.16406,0.001998308,268.0809631,-1.65693e-05,75.65853119,0.073118776,-0.489723593,0.535943866,2703,1016,train\n2610A,104.2533,23.3594,20170601,18.79008746,4843,4929,904721.3149,-736411.4984,1275,1.359906197,199.8015747,288.7011414,84959.74219,0.002445734,243.1298218,-6.79694e-06,85.36598969,-0.46067366,1.279501677,0.386454701,3713,1230,train\n1152A,118.749,32.0572,20170601,39.61416185,3451,7248,2057669.984,495264.9239,15,1.118335962,264.9707336,288.1726074,101391.5859,0.002373687,241.2114563,-2.07366e-05,68.25093079,-1.11402607,0.098087475,0.783808053,2572,133,train\n2565A,104.6294,30.1259,20170601,38.15571429,3760,4989,863689.4786,57322.12405,368,0.764628828,299.4906616,291.2884216,96531.39844,0.000952779,193.8971252,-1.3331e-05,70.18626404,-0.665583611,-0.376371771,0.964913428,3739,1192,train\n2323A,118.981,25.4792,20170601,28.92458101,4503,7285,2265392.147,-254882.4836,139,1.105475307,333.1380005,291.9940491,98763.27344,0.002333066,336.2792664,-2.38232e-05,81.54581451,-0.49957937,-0.986152172,0.40502274,5510,976,train\n1468A,108.935,34.3474,20170601,65.3767313,3084,5678,1176235.116,603996.575,378,0.489953578,326.440155,287.307373,95600.17969,0.001070402,102.1190338,-7.48617e-06,61.60705948,-0.270880848,-0.408262253,0.620920897,2532,396,train\n1835A,111.1928,34.7772,20170601,55.32022472,3016,6039,1356704.412,684319.8912,379,1.021046638,241.8598175,286.1897583,96117.21094,0.001186155,170.5573425,-1.24501e-05,63.67425537,-0.900339842,0.481585354,0.643416882,2603,652,train\n1924A,108.9344,34.9058,20170601,49.65266106,2995,5677,1166666.552,670657.2077,736,1.135878444,345.3878174,285.2592468,92109.23438,0.000988117,142.802948,-7.76725e-06,59.94162369,-0.286647677,-1.099114656,0.577400208,3158,728,train\n1084A,112.469,37.7124,20170601,76.31481481,2546,6243,1399684.64,1052458.545,770,0.391314059,157.9328003,282.8416138,90310.10938,0.001006434,135.7093811,-6.25103e-06,51.44281387,0.147043794,-0.36263594,0.511800647,2824,69,train\n2498A,111.26,23.4794,20170601,40.91876751,4823,6050,1582595.196,-633916.8697,39,0.96235019,298.5396729,294.4262695,100317.5313,0.003033929,181.0740356,-1.82126e-05,76.99365997,-0.845439732,-0.459727615,0.540629268,2894,1133,train\n1887A,104.6789,28.7989,20170601,54.35955056,3972,4997,883595.7939,-98892.56183,340,0.572529972,139.8998413,291.7781677,96971.79688,0.001170704,153.5704498,-1.3817e-05,72.02098846,0.368812859,-0.437912852,0.996237636,4058,695,train\n1064A,117.963,40.9359,20170601,32.35972222,2030,7122,1741854.775,1524996.111,404,0.263637125,64.08573151,281.1552734,95583.27344,0.000908621,224.5165863,-4.54778e-06,49.76586914,0.237124324,0.115224048,0.611416996,4011,51,train\n1437A,104.054,30.6578,20170601,56.91292135,3675,4897,806405.8262,115453.4992,499,1.089778543,161.3090515,290.5448914,95912.79688,0.001276924,160.3549805,-1.22889e-05,69.9834137,0.349319935,-1.032275558,0.814091206,2777,366,train\n2254A,129.4942,48.4658,20170601,14.43993994,826,8967,2269468.985,2645274.897,431,1.060719252,88.22642517,272.4632874,96202.69531,0.0011442,279.7743835,-5.30721e-06,71.35535431,1.060209632,0.032877073,0.295710385,5660,915,train\n3004A,120.1631,33.3681,20170601,40.77653631,3241,7474,2137755.004,677833.3791,2,0.972116828,253.9811707,287.1271667,101743.9688,0.002015878,253.6097412,-1.11007e-05,69.70375824,-0.934360385,0.268294275,0.697860897,3272,1374,train\n2880A,104.0238889,30.65638889,20170601,56.7150838,3675,4892,803746.917,115039.3909,500,1.127279878,160.0240479,290.4620972,95806.79688,0.001311949,158.0326843,-1.22522e-05,70.15310669,0.385194689,-1.059426665,0.80781132,2943,1346,train\n1889A,101.5769,26.5928,20170601,36.39972145,4325,4500,618320.095,-381681.3452,1141,0.153564751,261.6351013,292.2519531,83793.34375,0.001861429,189.186264,-3.64908e-06,58.928936,-0.151930124,0.022346541,0.26872009,4783,697,train\n2278A,117.0083,32.645,20170601,60.11376404,3357,6969,1893844.015,528782.6294,33,1.12166965,255.1430969,288.3251343,101189.9688,0.002166557,225.3109283,-2.35231e-05,66.04001617,-1.084160209,0.287644565,0.796956658,2615,935,train\n1759A,124.0878,41.8864,20170601,24.38515406,1878,8102,2160385.598,1758854.659,112,0.830179811,182.088028,279.6804504,99977.20313,0.001157755,259.2373657,-1.0378e-05,58.36804199,-0.030246619,0.829628646,0.513459384,3465,581,train\n2268A,124.1186,50.4269,20170601,16.56714286,512,8107,1857177.964,2759831.032,399,0.840717018,114.0391769,271.8976746,95943.70313,0.00077294,230.1941223,-4.56524e-06,65.79052734,0.767819285,-0.342430532,0.188500807,3060,926,train\n1696A,114.6778,23.7569,20170601,27.04225352,4779,6596,1904794.086,-541658.8868,55,0.586523652,328.3630066,293.8779907,99595.33594,0.002593908,228.8796234,-3.0584e-05,76.98720551,-0.30769074,-0.499335945,0.47852692,4106,526,train\n2282A,116.8008,33.975,20170601,53.05138889,3144,6936,1841119.281,680683.2468,62,1.082316756,244.4416809,287.6891479,101234.4453,0.001803476,203.7582092,-1.24087e-05,63.0742836,-0.976392984,0.466975778,0.813908815,3487,939,train\n1997A,119.146,31.955,20170601,48.35190616,3467,7311,2094352.926,491784.1327,21,1.131390333,263.0299072,288.182251,101239.3984,0.002315211,245.5321808,-1.83031e-05,69.56578064,-1.123023152,0.137343347,0.777030408,3367,796,train\n1155A,118.803,32.0314,20170601,47.42318436,3455,7256,2062997.616,493399.3767,12,1.134877086,264.4506531,288.184967,101407.2031,0.002369686,241.9085846,-2.03041e-05,68.49415588,-1.129553437,0.109795034,0.780192792,2259,136,train\n1237A,121.554,29.8906,20170601,36.43098592,3798,7697,2364059.258,308395.8557,7,0.551451266,252.7306824,290.0628967,101696.5938,0.003170814,379.0813904,-3.67703e-05,78.41760254,-0.526585698,0.163725451,0.575511158,2035,202,train\n1998A,119.18,31.955,20170601,40.82033426,3467,7317,2097242.258,492509.33,18,1.116225839,263.0058594,288.173584,101250.7188,0.002309939,245.8154907,-1.82775e-05,69.60277557,-1.107913852,0.135967433,0.763398349,2898,797,train\n1638A,117.2852,34.7837,20170601,60.64944134,3015,7014,1859415.879,784826.8558,70,1.242194533,242.221283,287.3563232,100902.8359,0.001318938,210.5931702,-2.32299e-05,61.3789444,-1.099018335,0.578969836,0.798897803,3443,482,train\n1206A,119.9,32.4867,20170601,45.3875,3382,7432,2142405.827,569738.2548,6,0.998357356,258.7586365,287.8560181,101693.25,0.002617253,254.0509644,-1.39746e-05,69.46192932,-0.979195654,0.194661826,0.75205183,2809,176,train\n2875A,115.7838889,32.88922222,20170601,52.57485876,3318,6773,1783954.79,534471.8449,30,0.868269563,253.1006317,288.2595215,101349.4453,0.002169428,197.4543915,-1.31282e-05,64.82080841,-0.830765426,0.252429962,0.845551133,3456,1342,train\n3027A,104.7228,29.33972,20170601,66.02941176,3886,5004,881261.7871,-34748.53284,343,0.75069207,176.1659393,291.6412354,97262.84375,0.001059401,149.9949493,-1.27434e-05,72.82115936,0.05026428,-0.749007404,1.010713696,4061,1389,train\n2357A,116.9622,28.095,20170601,29.73167155,4085,6962,2009954.53,-63.7984271,103,0.704508424,315.2539673,291.3725281,99849.65625,0.002567314,174.3397827,-1.33984e-05,72.72041321,-0.495984375,-0.500331461,0.588622689,6087,1007,train\n1746A,118.8789,42.2556,20170601,23.22576177,1819,7269,1771153.982,1698173.765,586,1.231915832,77.69317627,279.3052063,93901.78906,0.000665481,276.4822083,-4.11452e-06,44.82976913,1.203596115,0.262626946,0.446661711,2288,569,train\n2229A,125.9361,41.7156,20170601,31.46935933,1906,8398,2299706.172,1780880.442,405,0.580253839,12.05024624,276.1308594,95285.48438,0.001152153,218.7411346,-6.106e-06,71.61966705,0.12113589,0.567468643,0.49320814,2193,890,train\n1894A,105.4436,28.9026,20170601,45.04634831,3956,5119,951850.5145,-79540.99998,250,0.456011117,336.5304565,292.0223694,97839.39844,0.001261711,147.2907257,-1.27689e-05,73.49526978,-0.181645274,-0.418271601,1.058086872,2653,701,train\n2440A,112.1969,30.9892,20170601,50.80113636,3622,6199,1519136.269,251053.8244,115,0.597231746,349.0828857,289.147583,100350.4141,0.001979621,228.3972473,-2.0839e-05,71.47092438,-0.113159917,-0.586413324,0.821234822,3129,1078,train\n1844A,112.2551,30.3175,20170601,53.66573816,3729,6209,1538204.51,173167.0828,33,0.720575333,305.1057739,289.8209534,101190.7031,0.002286069,238.6536102,-2.7592e-05,69.07542419,-0.589523315,-0.414356261,0.828312814,2156,660,train\n1143A,121.467,31.3008,20170601,38.97262248,3572,7683,2311805.803,468209.5881,7,1.101606488,262.9876404,288.9433899,101649.1719,0.001934772,358.8995972,-3.26369e-05,75.54244995,-1.093360543,0.134534463,0.64725107,2577,124,train\n1078A,114.5261,37.0533,20170601,69.78910615,2652,6572,1578246.806,1005016.69,66,0.719194293,48.03390503,286.7686768,100496.375,0.000814298,169.0746307,-9.01153e-06,51.70103073,0.534738362,0.480931759,0.80171752,2787,64,train\n1072A,116.8584,38.3254,20170601,47.80055402,2448,6945,1729712.705,1195425.204,10,1.189601421,203.3277283,285.6799927,101562.4922,0.000925066,180.3520813,-9.42188e-06,50.51550293,-0.471057355,1.092362881,0.839398623,2171,58,train\n1828A,113.227,35.213,20170601,66.43888889,2946,6364,1515586.916,765860.683,102,0.963361323,324.8134155,287.5132141,99225.22656,0.000885309,145.1372833,-8.28708e-06,56.22066879,-0.555186868,-0.787294447,0.763045132,2691,645,train\n2645A,109.9154,33.8715,20170601,33.87955182,3161,5834,1267040.371,559489.4658,724,0.164359972,227.1846161,284.2695007,90260.85156,0.001798143,138.1898346,-5.02428e-06,68.89324951,-0.120563127,0.111708246,0.597771883,4581,1262,train\n1433A,104.079,30.5706,20170601,54.24512535,3689,4901,809584.4984,105316.6191,479,1.07012248,169.3012695,290.6941528,96100.97656,0.001375646,167.7062378,-1.29388e-05,70.48048401,0.198754206,-1.051503181,0.832762837,2438,364,train\n2431A,110.8839,32.5714,20170601,48.0027933,3369,5989,1373752.005,418251.389,248,0.580401182,241.1729584,287.3545227,95840.13281,0.001763977,148.6104889,-1.01526e-05,72.73914337,-0.508468628,0.279866427,0.770895362,5460,1069,train\n1622A,116.3061,37.4664,20170601,54.98997135,2585,6857,1709166.373,1083860.779,22,1.134077907,212.0407715,286.4750061,101410.1172,0.000888311,199.1997528,-1.10325e-05,50.6620903,-0.60163784,0.961334705,0.859624803,2239,468,train\n1453A,102.722,25.0405,20170601,33.50415512,4574,4684,740018.9827,-554785.3846,1899,1.326483846,1.658877015,288.2658997,80642.44531,0.00307915,358.1446838,-2.54506e-05,71.05016327,0.038398266,1.325927973,0.289167106,2120,381,train\n2671A,100.9048,36.9639,20170601,26.02222222,2666,4393,480788.5372,851288.3369,3106,0.915762842,296.2992859,274.8508911,69149.08594,0.001014638,256.7167969,-9.30309e-06,57.09166718,-0.820998371,-0.405688673,0.153272375,2583,1285,train\n2378A,116.3598,27.9639,20170601,40.7367688,4106,6866,1959043.313,-27323.7482,49,0.924904525,337.7368774,291.8118286,100828.7266,0.002288705,219.0309601,-1.71615e-05,71.5124588,-0.350479454,-0.855927885,0.6301018,2735,1028,train\n1061A,114.904,40.8725,20170601,29.97752809,2040,6633,1514805.616,1466735.845,902,1.004780173,341.3278198,278.6998596,89477.35938,0.00080777,216.4284363,-3.59591e-06,49.69035339,-0.321762592,-0.9518677,0.478150576,3146,48,train\n2446A,114.9028,30.4742,20170601,45.7019774,3704,6632,1767463.563,236027.3531,28,0.874299526,281.6670532,290.2140808,101286.7734,0.002518509,184.4016876,-2.7816e-05,68.80151367,-0.8562451,-0.176759914,0.767791569,3374,1082,train\n1752A,122.9481,41.0833,20170601,33.61173184,2007,7920,2105634.975,1640031.91,30,0.986440301,194.9032288,281.3385315,100941.7578,0.001004585,275.0236511,-8.00317e-06,52.10451889,-0.253692627,0.953259945,0.578601956,2566,574,train\n2160A,112.85,35.5051,20170601,58.35552408,2899,6304,1478211.651,794820.4104,732,0.480250508,251.0019531,284.1273499,92393.85156,0.00100591,171.7619171,-6.0896e-06,59.91003418,-0.45408538,0.156355411,0.656301141,2082,827,train\n2642A,109.0311,32.6778,20170601,38.88285714,3352,5693,1212856.659,406474.2512,359,0.615920663,292.7368164,289.1119995,96151.72656,0.001729907,143.3545532,-5.33541e-06,69.22299194,-0.568071246,-0.238019526,0.638497293,4239,1259,train\n1807A,116.0628,29.6926,20170601,42.53107345,3829,6818,1888706.112,166694.1596,27,0.911483943,308.1764526,290.0635376,100628.6328,0.003166914,242.4742432,-3.75787e-05,74.32828522,-0.716564715,-0.56332761,0.698226511,4904,627,train\n1245A,120.671,28.0167,20170601,37.0042735,4097,7555,2344583.803,73156.71662,10,0.680588126,326.0200806,290.4649658,100236.5234,0.002726603,271.0088806,-3.65989e-05,80.72190857,-0.38042447,-0.564338028,0.527247071,2176,209,train\n1494A,87.6432,43.831,20170601,57.57374631,1567,2271,-536135.2363,1694878.7,845,0.547886729,189.1998138,282.1436768,90821.0625,0.000453023,149.0643768,-1.04041e-05,48.50119781,-0.087592579,0.540839553,0.237886757,2404,418,train\n1670A,113.5593889,24.81119444,20170601,36.51396648,4610,6417,1774872.706,-442465.1156,83,0.119470909,359.6052246,293.1229858,99516.77344,0.002608585,153.9846191,-1.02474e-05,75.82808685,-0.000834516,-0.119467996,0.555465877,5077,506,train\n1305A,117.049,36.6622,20170601,60.01311953,2714,6976,1789487.122,1001877.217,70,1.212028265,210.7757874,286.2530212,100425.4453,0.001072094,191.897171,-1.16187e-05,56.64222717,-0.620153904,1.041355729,0.823446095,2168,257,train\n2234A,124.8528,45.1642,20170601,29.24404762,1354,8224,2095364.912,2158961.83,134,1.174448133,39.40567017,277.6005249,99854.25,0.000732931,253.9140167,-1.00994e-05,55.38992691,0.745529532,0.907476842,0.386989623,2067,895,train\n2273A,117.4186,32.8913,20170601,42.02521008,3317,7035,1921859.316,565542.2786,22,1.08006537,249.8610992,288.0968018,101385.8906,0.002272437,229.8716583,-1.72625e-05,66.68421936,-1.014017582,0.371899992,0.801276863,3070,931,train\n1106A,123.3997,41.7972,20170601,38.97206704,1893,7992,2113838.332,1733441.871,47,0.822690725,3.805352211,280.7196655,101090.9219,0.001108439,278.0549927,-8.64848e-06,50.32461929,0.054598246,0.820877016,0.575678408,1586,90,train\n2859A,117.3747,38.9846,20170601,51.10339943,2343,7028,1751754.021,1282790.406,3,1.112664461,192.0211639,285.3530273,101689.2578,0.000774209,212.4254608,-2.77708e-05,51.2142067,-0.231730625,1.088266015,0.822022617,2420,1330,train\n2881A,107.8908333,26.53111111,20170601,30.87146893,4335,5511,1210293.509,-330113.2005,708,0.814464152,251.6021118,288.3283386,91529.28125,0.002565846,282.5541687,-9.58085e-06,81.12774658,-0.772825539,0.257084638,0.597933412,3818,1347,train\n2576A,104.8,26.5892,20170601,39.79665738,4326,5016,920538.8457,-356861.0601,1898,0.80696398,238.3761902,284.5499268,79875.05469,0.002609261,228.9575958,-6.40407e-06,83.24412537,-0.687124491,0.423143864,0.524140358,5011,1202,train\n1365A,114.297,22.5978,20170601,26.13927577,4964,6536,1894547.138,-680328.9711,37,1.384451747,267.8066101,294.9591064,100468.9844,0.002803015,311.1329346,-5.13332e-05,80.80823517,-1.383435011,0.053048849,0.479024351,5256,305,train\n1827A,113.261,35.235,20170601,66.46751412,2942,6370,1517890.406,768997.293,111,0.990185797,328.6016846,287.3854675,98972.5625,0.000908851,142.3688507,-7.82803e-06,56.18889618,-0.515935719,-0.845149815,0.763349831,2266,644,train\n2545A,106.6271,30.4663,20170601,43.66944444,3705,5308,1037322.98,116913.9154,302,0.967691362,315.3991394,291.2513733,97757.6875,0.001608984,116.0142212,-8.69052e-06,75.70404816,-0.679525912,-0.688963771,0.879355848,3975,1175,train\n1040A,118.1838,39.65782,20170601,55.8933518,2235,7157,1794761.495,1377245.09,23,0.657153845,194.4245148,284.01828,101379.8984,0.000741303,182.249054,-8.86001e-06,51.90407562,-0.163695231,0.636439383,0.798998117,2073,30,train\n2192A,119.7594,49.2261,20170601,15.27361111,704,7409,1622193.781,2541301.901,609,1.036782622,65.64511108,271.9096375,93871.0,0.000566243,219.2879181,-5.26977e-06,64.62444305,0.944503486,0.427587777,0.167937577,1582,856,train\n1675A,116.7244,23.3633,20170601,19.99022346,4842,6924,2109811.824,-544404.5089,8,2.15453577,283.184082,294.9730835,101148.1875,0.00205156,354.6831665,-6.70754e-05,80.52487946,-2.097773314,-0.491295993,0.416325361,2540,511,train\n1718A,115.42277,35.248889,20170601,58.11235955,2940,6716,1694779.584,805984.7651,52,0.824534595,221.7895813,287.816803,101052.4141,0.000894984,199.6607361,-1.06523e-05,56.91238022,-0.549454033,0.614782512,0.85853982,2606,544,train\n2241A,130.9817,45.305,20170601,30.75431034,1331,9205,2501708.433,2318687.254,187,1.257111549,79.94828033,274.7881165,97830.67188,0.000958537,297.3721619,-5.73697e-06,69.0633316,1.237806559,0.219463632,0.382986218,2260,902,train\n1191A,120.242,31.5031,20170601,45.41292135,3540,7487,2201090.755,463407.8035,29,1.685083747,264.2542114,289.5232239,101495.2813,0.00179221,346.645813,-6.75683e-05,69.94046783,-1.676610351,0.168775275,0.731709003,2664,165,train\n2244A,130.2659,47.3349,20170601,25.09206799,1006,9091,2366724.865,2533591.381,175,1.221241355,104.8328629,273.7519226,99180.70313,0.000927327,220.5894012,-5.78453e-06,67.42763519,1.180562496,-0.312574446,0.344137907,1992,905,train\n2348A,113.8381,27.6428,20170601,47.81111111,4157,6462,1738009.036,-111831.6523,110,0.581751823,274.9484558,291.0979614,99508.1875,0.003082481,146.3523254,-9.54312e-06,76.04020691,-0.57958591,-0.050153375,0.714989543,3517,998,train\n1225A,119.026,29.635,20170601,27.02982955,3838,7292,2151091.514,220953.5708,107,0.933353901,307.5400391,290.1485596,98938.8125,0.003128674,222.3942871,-3.03939e-05,76.96091461,-0.740119576,-0.568658531,0.615735173,3370,192,train\n2222A,120.4247,41.5647,20170601,24.74857955,1930,7516,1904943.761,1645223.172,174,0.690934122,73.25019836,281.1590881,98347.17969,0.000724837,285.9662476,-4.88964e-06,48.51923752,0.661611915,0.199147254,0.549625516,2409,883,train\n1257A,121.377,28.5773,20170601,31.56478873,4008,7668,2389968.264,154068.1304,18,0.435178995,353.5023193,290.5466919,101017.8828,0.002394292,362.4503174,-1.84752e-05,78.30812073,-0.049285013,-0.432379186,0.528689265,3127,217,train\n2257A,130.3258,46.7975,20170601,32.52089136,1092,9100,2393740.876,2473387.084,82,1.275984049,56.74259949,274.4707336,99962.53906,0.000727686,212.4485016,-8.81381e-06,65.11225891,1.066976905,0.699782431,0.368902326,2114,918,train\n1988A,120.953,31.388,20170601,37.71892655,3558,7600,2265250.898,466282.3172,7,1.137174726,267.0893555,288.7775879,101679.2344,0.001807365,312.8594055,-2.10617e-05,73.59786987,-1.135705113,0.057795018,0.700797856,2947,788,train\n2223A,120.3939,41.615,20170601,24.47443182,1922,7511,1901115.832,1650572.614,216,0.714353502,83.97556305,280.9645386,98080.49219,0.000739415,288.8837891,-4.82522e-06,48.55553055,0.710405052,0.075003989,0.529945552,3401,884,train\n1928A,109.4824,36.5767,20170601,30.72346369,2728,5765,1182542.689,877195.1303,1032,0.552359939,19.38192558,283.0561523,88555.74219,0.0009655,208.5716553,-8.02693e-06,54.06606674,0.183303073,0.521058083,0.439019591,3658,732,train\n2277A,116.8028,32.7639,20170601,56.22284123,3338,6936,1873314.827,538750.1656,23,1.061765194,255.7071533,288.4064941,101381.6016,0.002212979,218.6503754,-2.04683e-05,65.74108887,-1.028889656,0.26216647,0.798549533,4314,934,train\n2519A,109.2131,23.7208,20170601,38.19806094,4785,5722,1380833.326,-637169.8023,84,0.755312443,308.4341431,293.9679565,99768.76563,0.003375312,279.06427,-1.71357e-05,76.25611877,-0.591684639,-0.469474316,0.567354083,3973,1151,train\n1654A,116.5856,35.4144,20170601,52.05196629,2914,6902,1785404.351,846121.2426,40,0.990174472,224.2931976,287.5345154,101232.5391,0.000872542,189.5454254,-1.36452e-05,57.07492828,-0.691452742,0.708758473,0.846585035,2235,493,train\n2269A,124.1303,50.4217,20170601,13.39714286,513,8109,1858087.728,2759444.859,391,0.837508917,114.0418091,271.9159241,95981.82813,0.000772871,230.3892365,-4.59441e-06,65.73883057,0.764873624,-0.341158956,0.189137638,2437,927,train\n2182A,112.7003,38.4928,20170601,49.83427762,2421,6280,1401015.904,1149133.403,787,0.414336711,83.73331451,282.8284607,91582.14844,0.001129076,99.84103394,-2.58591e-06,52.49736786,0.411858946,0.045245245,0.477023661,2745,847,train\n1449A,102.743,25.0124,20170601,30.86350975,4578,4687,742285.0596,-557891.1583,1898,1.317375302,1.720041633,288.3932495,80864.21094,0.003044849,358.9023743,-2.74211e-05,71.48313904,0.039538663,1.316781759,0.288654119,2603,377,train\n2385A,114.17,35.9019,20170601,56.75702247,2836,6515,1576879.685,862483.1652,183,0.735497415,72.12950134,286.5694885,98192.35156,0.000848313,180.3030243,-9.05837e-06,56.39939117,0.700003147,0.225725532,0.781967044,3663,1035,train\n1686A,111.0286,21.4689,20170601,20.53975535,5145,6013,1597876.796,-866079.9479,10,2.114904881,261.5062256,296.0270996,101157.7344,0.002491188,339.5609741,-3.8719e-05,80.32311249,-2.091695547,0.312462777,0.447047234,4687,519,train\n1185A,119.404,32.41,20170601,43.72058824,3394,7353,2102879.537,550119.7312,12,1.06448853,258.0456543,288.1752625,101605.5938,0.002589911,259.0968933,-1.95293e-05,69.16434479,-1.041394114,0.220531493,0.78359437,3254,160,train\n2433A,112.1392,32.0564,20170601,60.23389356,3451,6190,1491962.723,375735.673,70,0.629749417,208.0970306,288.6974792,100407.5781,0.001739104,228.0433807,-1.65933e-05,67.7873764,-0.296582639,0.555538535,0.838002741,2331,1071,train\n2306A,116.989,33.63063889,20170601,60.00277008,3199,6966,1865943.444,643822.9068,30,1.065565586,248.1517181,287.8557739,101392.4453,0.002117346,206.4594116,-1.2848e-05,64.02980804,-0.989014804,0.396585107,0.803293347,2738,962,train\n1760A,123.7117,41.8417,20170601,31.18296089,1885,8042,2134832.2,1745401.718,63,0.873235941,183.675354,280.4032593,100545.0,0.001139717,274.9641113,-8.72034e-06,52.91415787,-0.055975433,0.871440053,0.541828632,3277,582,train\n1692A,116.1248,24.2654,20170601,28.63611111,4698,6828,2030189.843,-454965.8425,100,0.282169163,269.8446045,293.9444885,98899.23438,0.001918752,188.7090302,-1.22029e-05,73.30332947,-0.28216809,0.000778423,0.460862756,3725,525,train\n1870A,109.4883,24.3898,20170601,38.23142857,4678,5766,1395974.277,-556490.9868,129,0.579104185,335.2332153,293.5350342,99628.05469,0.003629879,262.7426147,-1.98217e-05,75.74874115,-0.24264355,-0.525819182,0.56593293,5763,680,train\n3016A,106.5506,29.41569,20170601,31.64325843,3874,5296,1045171.511,-7873.566677,300,0.622029364,303.2274475,291.6806641,97423.89063,0.001409797,127.8334885,-1.01129e-05,73.31949615,-0.520350337,-0.340816736,0.957148075,3611,1382,train\n1600A,124.3303,40.0625,20170601,23.85451977,2170,8141,2243394.662,1551222.956,8,0.52090621,356.5179749,280.8227539,101060.0938,0.00106907,245.6591339,-2.0069e-05,62.83757019,-0.031684052,-0.519941688,0.578290164,2695,448,train\n1184A,119.46,32.3878,20170601,47.79369628,3398,7362,2108260.386,548741.6146,8,1.05290091,258.3102112,288.1564331,101634.5703,0.002593438,259.0297241,-1.97964e-05,69.10820007,-1.03105402,0.213372678,0.775831461,2278,159,train\n1593A,109.7736,39.5986,20170601,19.47191011,2244,5812,1151108.526,1244003.007,1301,0.902215958,67.47734833,280.8291626,86628.10156,0.000764764,247.8950043,-9.23819e-06,46.57600403,0.833390296,0.345621586,0.394631475,2924,442,train\n2343A,117.2111,29.2958,20170601,34.08831909,3893,7002,2000512.131,143480.0321,45,1.121008873,309.9274292,290.6206055,100389.0391,0.003018231,199.5610199,-1.44461e-05,70.49576569,-0.859702587,-0.719425082,0.613310575,2369,993,train\n2537A,103.7506,29.6007,20170601,49.0491573,3844,4848,790635.4219,-12196.30162,370,0.896206439,115.0095749,291.2340393,96581.35938,0.000973635,136.1267548,-1.26079e-05,70.75499725,0.812198043,-0.378840804,0.891406178,3620,1169,train\n2401A,114.014,33.581,20170601,57.82033426,3207,6490,1618049.869,585235.6409,64,0.604690909,230.1258392,288.1955566,100990.8438,0.001532016,202.8228149,-1.26416e-05,62.36314392,-0.464062721,0.387681454,0.871405423,2491,1048,train\n2885A,104.9338889,33.38256667,20170601,22.50144092,3239,5037,851610.3655,447422.7774,1090,0.284801185,233.5663452,282.5770874,82749.35938,0.001501449,160.591095,-3.29327e-06,74.18119812,-0.229130715,0.169147357,0.483033061,3577,1351,train\n2461A,112.5664,26.9056,20170601,43.28072626,4275,6259,1637400.92,-218910.4282,70,0.989563704,344.5756226,291.9215698,100656.25,0.002402707,261.8601685,-1.67903e-05,71.24905396,-0.263271928,-0.953899503,0.745803177,2573,1097,train\n1637A,117.5564,34.864,20170601,51.03221289,3002,7057,1879442.789,799424.9154,73,1.006241918,248.7110291,286.8347168,100420.9766,0.001372134,207.3903198,-1.34282e-05,63.67664719,-0.937564194,0.365371346,0.782929778,2015,481,train\n2008A,121.173,31.896,20170601,35.22303207,3477,7636,2268015.755,529952.9627,6,1.146961451,261.8303833,288.6109009,101705.7188,0.001996979,340.2286682,-3.29384e-05,74.13921356,-1.135314941,0.163035393,0.676090777,2852,807,train\n2613A,100.8017,22.0225,20170601,16.5130814,5056,4376,576852.8202,-916131.1954,588,0.533723414,183.1256561,294.4959717,91786.125,0.003031315,63.74806976,-4.32574e-06,78.04306793,-0.029100992,0.53292948,0.290002406,5283,1233,train\n2288A,117.7442,30.8811,20170601,54.68333333,3639,7087,2004438.163,337913.5863,10,0.908958256,285.6149902,289.2581482,101129.5469,0.002074852,216.1066284,-2.32347e-05,71.13631439,-0.875423789,-0.244618595,0.734851301,2433,945,train\n1266A,118.855,28.9745,20170601,35.13927577,3944,7265,2154909.456,141213.0527,69,1.071379662,297.3466797,290.718811,100258.25,0.002598091,196.5460205,-1.09849e-05,74.32008362,-0.951675415,-0.49210608,0.599039555,4201,222,train\n2075A,117.6336,24.4674,20170601,27.59357542,4665,7069,2167348.216,-399847.8234,48,0.607177198,243.053009,293.5982971,99639.15625,0.002187408,195.939743,-1.14019e-05,77.71063995,-0.541244745,0.275169551,0.421488822,5669,826,train\n2641A,109.7336,38.2478,20170601,31.4501385,2460,5805,1172590.359,1080873.112,1077,0.480805486,185.7622528,283.2600708,88845.25,0.000757291,251.2440643,-1.12471e-05,47.92235184,-0.048271891,0.47837615,0.413436711,2091,1258,train\n1667A,118.5857,37.4442,20170601,50.74328358,2589,7222,1889324.677,1122979.022,3,1.018675447,225.4268494,285.8803406,101704.1953,0.000712919,230.8400879,-2.55836e-05,53.74921417,-0.725641906,0.714942992,0.759936035,2616,504,train\n2884A,98.26722222,39.79777778,20170601,28.45014245,2212,3971,254677.8959,1185827.251,1661,0.955782592,22.65673256,282.5832214,82448.83594,0.000198261,212.5974121,-5.90146e-06,36.83179092,0.36816597,0.882028401,0.230003744,1354,1350,train\n1831A,113.3064,33.7214,20170601,58.5933908,3185,6377,1555418.855,590391.5317,90,0.219197765,194.7049561,287.9946594,100231.4063,0.001297471,212.3942261,-1.3317e-05,62.12262726,-0.0556399,0.212018535,0.856111765,2791,648,train\n1325A,114.3672,30.5719,20170601,48.38636364,3689,6547,1718247.761,237929.3792,27,1.092125654,301.0447998,290.1140747,101302.6563,0.002541434,210.8522339,-3.45589e-05,68.97547913,-0.935729384,-0.563159823,0.805538952,2250,272,train\n3010A,119.8914,31.7897,20170601,45.79469274,3494,7431,2162594.618,488770.7379,5,1.137468576,261.3164063,288.6162109,101638.4922,0.001969435,276.2714539,-2.7076e-05,69.65171051,-1.124422789,0.171779439,0.753919244,2890,1378,train\n2018A,121.989,39.625,20170601,30.40555556,2240,7766,2083519.771,1448477.073,121,0.23139587,257.2958679,282.3086548,100666.1953,0.000669331,267.568512,-1.1178e-05,60.92406845,-0.225728974,0.050896782,0.608800173,3248,814,train\n2549A,107.525,31.215,20170601,46.16016713,3586,5452,1105665.611,215282.1312,373,0.857059181,317.5628052,289.9786987,95774.11719,0.002023846,85.8718338,-7.32727e-06,75.26950073,-0.578372598,-0.632483721,0.713810086,3462,1178,train\n1735A,111.5169,36.0822,20170601,78.88718663,2807,6091,1357218.381,844333.2562,453,0.339239419,77.31710815,285.9347534,94772.69531,0.000865237,138.6897125,-6.38313e-06,53.3003273,0.330959052,0.074494846,0.551361203,1854,558,train\n2626A,88.8876,29.2718,20170601,13.47058824,3897,2470,-555067.7734,-69167.1786,3842,0.780289173,182.8169098,281.6560974,62330.64453,0.000841066,655.4854736,-6.74866e-06,31.11416054,-0.03834578,0.779346406,0.083929546,1750,1245,train\n2422A,113.996,32.996,20170601,53.78888889,3301,6487,1630040.402,515965.1359,90,0.423445433,214.9379272,287.9627075,100513.7266,0.001494916,208.5143738,-1.68843e-05,65.9642868,-0.242496118,0.347133487,0.880611956,2779,1061,train\n2515A,111.5622,24.4072,20170601,38.43194444,4675,6098,1593683.234,-522942.4603,111,0.656982064,307.0863953,292.6877441,99128.78906,0.002775051,159.1306458,-9.74129e-06,79.06266785,-0.524118423,-0.396137983,0.571112871,3127,1147,train\n2907A,120.1844,30.8596,20170601,41.06022409,3643,7477,2215647.506,387830.368,2,1.153352976,270.149231,289.3192749,101436.8516,0.002212252,304.4859314,-5.09218e-05,71.56728363,-1.153349161,-0.002950672,0.74265635,2796,1355,train\n1586A,109.8104,40.6575,20170601,40.33005618,2075,5818,1134550.704,1372189.5,1066,0.637353778,345.0492249,281.608429,89070.15625,0.000407663,179.7046356,-6.04282e-06,39.34965134,-0.164482549,-0.615764022,0.419467777,1478,435,train\n1943A,102.1725,38.5339,20170601,28.71587744,2415,4596,569928.9741,1048414.153,1518,0.404886276,65.9061203,283.4888611,83242.04688,0.000321092,305.331665,-5.61574e-06,33.73610687,0.369606078,0.165300488,0.252459645,1597,747,train\n2379A,116.3574,28.0005,20170601,44.09887006,4100,6865,1957895.616,-23155.7597,40,0.970585465,337.4850159,291.8616028,100992.25,0.002289904,220.8904114,-1.77261e-05,71.11911774,-0.371733993,-0.896576822,0.62272191,2512,1029,train\n1642A,121.2514,37.5639,20170601,29.87078652,2570,7648,2094184.019,1191090.863,5,0.763974726,28.81622696,284.8908081,101156.7578,0.000922345,394.3131409,-4.51789e-05,63.93867493,0.368227243,0.669377387,0.61305207,2518,486,train\n1021A,117.307,39.0877,20170601,50.33704735,2326,7017,1743718.47,1293821.852,4,1.035703421,190.5746002,285.2901917,101639.6328,0.000789262,205.2225037,-2.32386e-05,50.41941071,-0.190062314,1.018114924,0.847042978,2347,16,train\n1460A,90.9798,29.6588,20170601,31.98979592,3835,2805,-363330.7024,-33095.1173,3690,0.259432316,56.91983414,278.8786926,60728.98047,0.001382741,318.2589111,-4.05867e-06,39.96254349,0.217376187,0.141607627,0.085361913,2163,388,train\n1412A,110.338,19.9969,20170601,18.88642659,5381,5902,1555734.147,-1043102.57,17,3.203410864,265.3181458,297.1684875,100737.7109,0.002318121,454.3805847,-8.14985e-05,82.31691742,-3.192710638,0.26161167,0.413349807,2986,348,train\n2571A,102.3419,27.8094,20170601,19.32142857,4131,4623,679433.8398,-233920.2892,1621,0.475815624,232.3231812,288.2166138,80420.9375,0.002016616,192.4848633,-3.13899e-06,64.93786621,-0.376586407,0.290831894,0.26171729,3581,1197,train\n1610A,120.8631,40.7736,20170601,32.87222222,2056,7586,1962190.546,1560442.15,22,0.926190615,60.43153,282.8128052,100720.5547,0.000592419,383.5965271,-5.67737e-05,53.74096298,0.805555463,0.457066149,0.616130948,2312,458,train\n1605A,122.0539,41.0903,20170601,31.2005571,2006,7777,2039772.967,1621991.373,3,0.710598469,22.0561924,281.8742981,101726.3516,0.000900518,298.1155701,-1.40382e-05,51.4271698,0.266833514,0.658597052,0.59926194,2803,453,train\n1819A,114.32,36.086,20170601,72.47486034,2806,6539,1584706.697,886751.6842,80,0.593100548,50.14426422,287.6363831,100365.9766,0.000715504,188.6518555,-9.78449e-06,53.93691635,0.455290079,0.380104244,0.786001444,2371,638,train\n2345A,117.1558,29.2647,20170601,32.66713483,3898,6993,1996440.454,138762.0731,38,1.12102747,312.2519836,290.6610107,100390.0156,0.002971061,200.4817047,-1.46042e-05,69.81545258,-0.829830289,-0.753713727,0.621376097,3087,995,train\n1688A,110.9067,21.6669,20170601,30.53888889,5113,5993,1582172.246,-845648.9609,18,1.438597679,256.0663147,295.6444397,100975.0938,0.003137077,258.7303162,-1.74419e-05,80.34757233,-1.396253467,0.346467406,0.46733588,3044,521,train\n1373A,113.144,23.0467,20170601,35.05211268,4893,6351,1773170.865,-651000.6642,3,0.805814326,266.5808716,295.2511902,101253.2578,0.002834494,248.1858521,-2.49677e-05,72.13818359,-0.804377794,0.048094299,0.57229799,2413,311,train\n1105A,123.478,41.7775,20170601,34.99164345,1896,8004,2120191.03,1732819.701,48,0.844963849,181.2673645,280.6740417,101021.7422,0.001120052,272.8754578,-8.53062e-06,50.82132339,-0.018687231,0.84475714,0.570454121,2136,89,train\n2183A,111.1406,37.5211,20170601,61.23537604,2577,6030,1298047.234,1011322.568,954,0.98660177,245.8887939,282.6286316,88683.34375,0.000979714,164.5884552,-6.18655e-06,50.98200226,-0.900511265,0.403066337,0.450992316,2108,848,train\n3054A,113.5922,35.28385,20170601,53.94444444,2935,6423,1543984.077,779955.4548,77,0.816206098,331.6189575,288.134613,100455.3359,0.000823945,154.0036469,-8.19638e-06,53.97286606,-0.388026088,-0.718072474,0.771944344,4917,1400,train\n1442A,106.7487,26.6343,20170601,36.45365169,4319,5328,1102153.731,-331543.7583,1126,1.211054683,235.1846008,287.3961487,88331.59375,0.002090871,330.0420227,-9.97721e-06,82.95019531,-0.994251072,0.691460907,0.60751617,4617,371,train\n2919A,116.7022,39.5453,20170601,42.37047354,2253,6920,1685006.475,1337645.963,17,0.673909307,2.468224525,285.3144226,101502.4922,0.001057976,185.0716858,-8.94603e-06,46.44060898,0.029021183,0.673284113,0.902606845,2707,1359,train\n1927A,109.4761,36.6028,20170601,26.54378531,2724,5764,1181567.641,880248.3869,1021,0.542918265,22.19558907,283.1245117,88737.67969,0.000956122,208.0177002,-8.01058e-06,53.97742844,0.205092177,0.502690196,0.435377121,4066,731,train\n1397A,112.427,23.0706,20170601,39.67086835,4889,6236,1703364.794,-660969.9043,11,0.714842439,273.4051514,294.5708923,100007.0938,0.002928441,217.0730438,-1.4898e-05,76.35643005,-0.713582397,-0.042424597,0.557553291,2688,335,train\n1279A,117.124,31.8516,20170601,46.00277778,3484,6988,1924845.538,438399.7067,48,0.989542425,254.7271423,288.5857239,101174.5938,0.002205849,231.9657898,-1.56599e-05,67.79624176,-0.954584002,0.260698318,0.783483148,3027,235,train\n1379A,113.3769,22.5211,20170601,35.20786517,4977,6388,1806938.948,-706334.5609,8,0.7892344,252.1611938,295.2304077,100930.3125,0.002965539,288.5749207,-3.50185e-05,76.49225616,-0.751280725,0.241802022,0.534883916,2621,317,train\n1216A,120.156,33.3942,20170601,40.27158774,3237,7473,2136370.775,680713.2949,3,0.971421778,253.7582092,287.1174316,101747.5469,0.001986508,253.3945618,-1.10829e-05,69.67285919,-0.932641923,0.27173391,0.69635129,2607,185,train\n1067A,116.6838,39.5178,20170601,45.49159664,2257,6917,1684335.023,1334059.153,17,0.669777513,3.102200031,285.3367004,101485.4297,0.001031511,185.1394653,-8.91056e-06,46.43391037,0.036245476,0.668796062,0.894027174,2826,54,train\n2701A,79.9485,37.1152,20170601,103.977591,2642,1040,-1218690.365,948717.6981,1367,0.68871659,282.7757263,288.5829468,85202.42188,0.000135035,368.0710449,-1.06801e-05,27.22746468,-0.671674132,-0.152264252,0.25745061,1555,1314,train\n2527A,105.7519,30.5797,20170601,43.79275362,3687,5168,958091.2047,121443.002,406,1.057799339,306.6527405,290.8927307,97096.875,0.001249612,157.0896759,-1.11881e-05,73.64533234,-0.848680079,-0.631412387,0.895123541,5085,1159,train\n1140A,126.6206,45.6842,20170601,34.80031447,1271,8507,2195098.687,2258210.345,170,1.262706518,45.98751068,275.9935303,99663.23438,0.000727427,212.6598663,-6.71286e-06,61.62557983,0.908103049,0.877369165,0.421420425,2099,121,train\n2317A,118.7386,30.9742,20170601,41.79551821,3624,7246,2087743.397,369412.9939,40,1.084605575,263.8908386,288.9046936,101213.7578,0.002142965,207.4211884,-1.4925e-05,70.8663559,-1.078441024,0.115473822,0.726809323,5005,972,train\n1895A,105.4322,28.8558,20170601,41.88997214,3963,5117,951402.4495,-85159.84582,282,0.387345046,340.5147705,292.0029907,97728.45313,0.001255511,146.1122131,-1.26617e-05,73.33326721,-0.129234433,-0.365150183,1.061148047,2279,702,train\n1926A,109.4131,36.6275,20170601,29.30351906,2720,5754,1176024.898,882454.1196,1065,0.513106167,26.9654789,283.0245667,88592.58594,0.000955282,207.8951721,-7.86441e-06,54.13394547,0.232663453,0.457324445,0.430976599,4455,730,train\n1805A,115.988,29.7292,20170601,44.39612188,3823,6806,1881180.107,169505.7469,20,0.983640432,301.3703613,290.109436,100903.8906,0.003133138,237.3299103,-3.41341e-05,74.67681122,-0.839884281,-0.511998951,0.694528759,1122,625,train\n1386A,113.0819,22.5931,20170601,35.44289694,4965,6341,1776745.564,-703561.2595,9,0.586270988,256.9856567,295.0094604,101057.2031,0.003379143,253.2666168,-2.2604e-05,75.94943237,-0.571206629,0.132047996,0.549889505,2982,324,train\n2530A,105.5956,30.475,20170601,38.00277778,3704,5143,945559.6872,107535.0585,284,1.049053311,307.1231079,291.2172546,97556.05469,0.001108223,158.8593445,-1.08938e-05,73.26052856,-0.836494327,-0.633079708,0.929426968,2588,1162,train\n1060A,114.9032,40.7688,20170601,29.62188366,2057,6632,1517293.988,1454314.903,732,0.788001418,348.1275024,279.9213257,91569.39063,0.000856444,198.5297852,-3.54484e-06,47.89870453,-0.162186235,-0.771130264,0.502401352,2191,47,train\n1751A,122.9642,41.0971,20170601,35.54178273,2005,7922,2106341.566,1641995.548,33,0.997273862,194.035675,281.3293457,100951.4219,0.001008122,274.7186584,-8.05235e-06,52.06453705,-0.241857901,0.967501879,0.582949519,2008,573,train\n2231A,126.4047,41.9206,20170601,37.63445378,1873,8473,2325477.778,1815731.35,483,0.638025701,38.32817841,275.3294067,94093.1875,0.001317453,219.3965302,-6.41946e-06,75.4845047,0.395671278,0.500520766,0.484874249,2585,892,train\n2661A,107.6406,35.5236,20170601,34.47075209,2896,5470,1049397.806,730011.7629,1243,0.38339141,201.7560425,283.8739624,88018.35156,0.000989846,212.3048401,-8.45937e-06,57.24524689,-0.142102063,0.356084228,0.465678811,4304,1277,train\n1879A,104.7536,31.4539,20170601,50.954039,3547,5009,859107.6298,215917.4862,464,0.557541311,332.9430237,290.3952026,95466.24219,0.000919416,147.4331512,-1.09503e-05,65.92232513,-0.25365144,-0.496500999,0.743232012,2822,687,train\n1596A,122.2414,40.6592,20170601,31.50138504,2075,7807,2067961.719,1575242.607,1,0.813817263,182.8146057,282.6120605,101509.6641,0.000811613,336.5118713,-4.39507e-05,53.1151886,-0.039959826,0.812835574,0.604075789,1852,445,train\n2591A,107.9783,26.5747,20170601,35.51815642,4328,5525,1217784.639,-323964.4079,746,0.927642524,252.3674622,288.3153992,91816.09375,0.002453703,278.0741272,-9.40635e-06,81.15408325,-0.88405025,0.281026185,0.612250686,3241,1213,train\n2400A,114.005,33.568,20170601,57.45111732,3209,6489,1617594.03,583553.4408,63,0.599766433,230.0953522,288.1923523,100976.1797,0.001530092,202.7896423,-1.26347e-05,62.42100525,-0.460078746,0.384769142,0.878447533,2899,1047,train\n2486A,110.0394,27.583,20170601,43.59749304,4167,5854,1391705.797,-179277.5061,245,0.654066324,331.0610352,290.0429993,96968.82031,0.002474641,190.9025726,-1.07707e-05,74.5614624,-0.316532493,-0.572372198,0.704614043,3605,1122,train\n1123A,125.325,43.8694,20170601,31.45596591,1561,8300,2175657.624,2017923.138,213,1.338708639,44.75065613,277.7271729,99009.95313,0.001105189,266.1532593,-1.10318e-05,59.51631165,0.942459583,0.950742185,0.468061507,2501,105,train\n1306A,116.734,36.5336,20170601,58.35446686,2735,6925,1767762.844,980973.837,54,1.20902586,220.7306366,286.5935059,100878.5391,0.001072886,194.0511932,-1.22342e-05,55.73442841,-0.788874686,0.91619885,0.819988012,3924,258,train\n1655A,116.5546,35.4039,20170601,45.83753501,2915,6897,1783157.681,844319.8292,39,0.98013097,223.844635,287.5210876,101212.8984,0.000871087,189.5303802,-1.37445e-05,57.03695679,-0.678925931,0.706906199,0.83983016,2937,494,train\n2396A,113.8331,34.0117,20170601,56.1302521,3138,6461,1592973.547,633144.2898,71,0.427094758,227.100708,288.0717468,100729.4531,0.001301751,206.8370514,-1.24399e-05,60.82209015,-0.3128618,0.29073602,0.864086032,2396,1044,train\n1265A,118.871,28.9664,20170601,34.66526611,3945,7267,2156556.979,140633.1108,67,1.054400444,296.470459,290.7413025,100328.1797,0.002603298,195.1674347,-1.09417e-05,74.39060211,-0.943889797,-0.469927907,0.591825068,4123,221,train\n1673A,113.5970833,24.68636111,20170601,38.7745098,4630,6424,1781167.704,-456052.303,73,0.2482678,321.5082397,293.0586548,99833.8125,0.002538019,169.159668,-1.0991e-05,76.30568695,-0.154536545,-0.194307387,0.56836319,4352,509,train\n1630A,117.9776,37.393,20170601,53.84180791,2597,7124,1842956.917,1105386.618,10,0.798869312,223.704071,285.9798584,101615.7422,0.000819592,192.3296661,-1.05893e-05,52.04418182,-0.551952839,0.57752943,0.794043303,3406,474,train\n1741A,113.6292,37.8531,20170601,53.93452381,2524,6429,1488341.014,1086319.293,657,0.784118831,73.47470856,282.404541,92413.99219,0.001054754,156.8799438,-4.92769e-06,61.30110931,0.751721799,0.223062009,0.612173796,2942,564,train\n1762A,123.7528,41.3369,20170601,27.14763231,1966,8048,2155605.823,1687194.647,188,0.949497402,204.2605286,279.2185364,98945.27344,0.001130412,224.369873,-7.40622e-06,61.5226059,-0.390124828,0.865648866,0.532090425,3645,584,train\n2011A,119.6942,30.2311,20170601,36.65868263,3743,7399,2192054.648,304388.8823,60,0.660592973,320.5175171,289.1073303,99573.25781,0.002803886,203.4999084,-9.9256e-06,75.63575745,-0.420069784,-0.509827852,0.703976393,3723,810,train\n1276A,117.336,31.8585,20170601,51.78089888,3483,7022,1942786.847,443376.3137,18,1.086572409,260.1125793,288.9656067,101480.1484,0.002245428,252.1993713,-2.43177e-05,67.72509003,-1.070425868,0.1866225,0.782854199,2259,232,train\n1441A,106.6243,26.6266,20170601,29.28045326,4320,5308,1090645.092,-333828.8501,1278,1.250990152,235.1604767,287.1951599,87522.69531,0.002084943,336.0944519,-1.19831e-05,82.99046326,-1.026736617,0.7146945,0.60201323,3587,370,train\n1114A,121.5180556,38.85611111,20170601,26.56786704,2363,7691,2073038.628,1348273.928,24,0.215485036,109.3980713,284.492218,100957.6875,0.000413171,519.9678345,-0.00010416,61.92812347,0.203256816,-0.07155744,0.646775424,3366,97,train\n2200A,122.0506,46.0703,20170601,10.9972067,1209,7776,1873748.392,2208821.153,274,1.342645407,104.9668427,277.0335388,97755.45313,0.000747596,296.205658,-6.4644e-06,51.87607956,1.297115564,-0.346681446,0.292271703,1937,861,train\n1370A,113.299,22.2281,20170601,30.13276836,5024,6376,1805613.163,-740908.4287,6,1.303276181,264.6208801,295.6557617,101040.4297,0.0027672,355.4140625,-7.20109e-05,78.17297363,-1.297531486,0.122232631,0.494875938,2750,308,train\n2292A,117.0331111,30.51197222,20170601,50.17827298,3698,6973,1952620.958,280751.2496,23,1.292113066,321.2965393,289.6859436,101143.6641,0.002599486,248.3855591,-2.92812e-05,70.27024078,-0.808018565,-1.008296609,0.734222114,3151,949,train\n1053A,115.4713,38.9108,20170601,58.6801676,2354,6723,1606857.795,1241483.161,19,0.485465735,65.62568665,285.5649719,101177.1875,0.000996376,124.1079941,-7.84799e-06,47.35251236,0.442188799,0.200364783,0.861819804,2911,41,train\n2524A,105.8242,32.4429,20170601,25.40529248,3389,5180,940035.7635,343400.9549,498,0.285548776,311.7120972,288.0372925,92960.02344,0.001397334,132.2037354,-7.74419e-06,71.5116272,-0.213174433,-0.189986229,0.635604799,3224,1156,train\n2296A,118.3236,29.7207,20170601,23.60451977,3825,7180,2087015.85,215685.8742,134,0.603131711,282.677124,289.5024414,99637.6875,0.00325339,178.3028412,-8.82893e-06,76.61365509,-0.588435709,-0.13233006,0.614478946,3403,953,train\n2480A,111.5992,26.4364,20170601,38.71856287,4350,6104,1557387.609,-288861.9773,106,0.595986187,321.8036194,291.7950134,99046.85938,0.001723871,260.6595459,-1.18115e-05,70.60904694,-0.368567437,-0.468356222,0.742161572,2982,1116,train\n1801A,118.48,31.6928,20170601,42.37571429,3509,7205,2045128.167,447313.2434,15,1.165913343,270.4291077,288.6559448,101509.7422,0.002139366,238.0114441,-2.44669e-05,68.46792603,-1.165881038,-0.008677498,0.76921308,2441,621,train\n1044A,119.6023,39.9567,20170601,38.59305556,2187,7384,1893305.169,1439250.091,16,0.535373449,127.8735886,282.9306641,100750.7813,0.000745355,246.7146149,-3.376e-05,58.48239899,0.422627807,-0.328649431,0.682995021,1835,33,train\n1598A,122.215,40.6511,20170601,28.33286908,2076,7802,2066279.669,1573735.717,-5,0.805618107,181.1025543,282.6505127,101502.7969,0.000809575,352.1453552,-4.9582e-05,53.27906418,-0.015500654,0.805468976,0.609398842,2389,447,train\n1288A,118.0636111,24.44583333,20170601,28.7359736,4669,7138,2208356.455,-392712.3158,0,1.776781678,308.0550537,293.8876038,100821.875,0.002047232,362.2870789,-6.81531e-05,79.16016388,-1.399144173,-1.095147967,0.379904926,1665,242,train\n1129A,126.542,45.755,20170601,32.56527778,1259,8495,2187092.809,2264692.215,115,1.222982526,50.12163925,276.0447998,99902.85938,0.000711808,211.2042847,-6.9082e-06,61.15317154,0.93850559,0.784151495,0.401894063,2315,111,train\n1148A,121.703,31.1907,20170601,36.71126761,3590,7720,2335439.812,461126.0509,4,1.371918678,263.9904785,289.4405212,101691.0469,0.001936592,437.2162781,-6.20038e-05,75.67650604,-1.364373088,0.143690243,0.614477754,3420,129,train\n3025A,113.0472,23.63444,20170601,34.71169916,4799,6336,1751404.674,-585921.0227,13,0.708671927,310.3640137,294.385437,100601.8516,0.003207473,208.5917969,-1.59962e-05,74.40440369,-0.539999843,-0.458929271,0.57777518,4491,1387,train\n1474A,109.043,34.3274,20170601,65.58142857,3088,5695,1185632.622,602908.8462,386,0.398665041,269.3773499,287.0744934,94991.1875,0.001129164,98.62310028,-7.41653e-06,61.93347168,-0.398641318,0.004350647,0.626205444,2799,402,train\n1081A,112.522,37.8873,20170601,63.20200573,2518,6252,1400116.06,1074131.886,789,0.351269156,142.4073334,282.8933716,91141.88281,0.001105974,143.0342102,-5.57305e-06,52.66632462,0.214309961,-0.278318644,0.521944702,2009,67,train\n2916A,117.49,30.66,20170601,55.51436782,3674,7046,1988409.075,307093.6487,15,0.965968251,294.2754211,289.4108887,100942.8672,0.002299375,223.0151367,-2.27122e-05,72.28826141,-0.880580425,-0.397080272,0.738209844,3015,1358,train\n2628A,92.0657,31.4846,20170601,44.10614525,3543,2978,-258733.2706,180774.0212,4520,0.757283449,238.7271423,271.5436096,57251.09375,0.001244112,172.8322296,-4.68929e-06,55.47658539,-0.64724189,0.393136263,0.069626011,2302,1247,train\n1790A,125.112,46.528,20170601,25.71428571,1136,8266,2062553.292,2323900.883,145,0.893705666,65.95240021,276.1199036,99694.01563,0.000782598,227.8874817,-1.46265e-05,60.30093384,0.816126168,0.364208668,0.342921376,1968,610,train\n2663A,104.6228,35.5714,20170601,27.74789916,2889,4988,799228.8268,707363.7087,1939,0.987079501,217.6892548,279.9481506,79557.04688,0.000822836,245.6480865,-6.45643e-06,61.06822968,-0.603464186,0.781125367,0.323401719,2563,1279,train\n2339A,119.5001,26.6946,20170601,30.51558074,4309,7368,2278312.815,-104917.8295,135,0.271472096,308.6144714,290.2366028,96781.14844,0.00383414,177.4463806,-1.50269e-05,84.67468262,-0.212129429,-0.169405431,0.441744655,5632,989,train\n2552A,107.4611,31.2058,20170601,57.28272981,3587,5442,1100193.964,213475.6672,310,0.848661065,317.3516846,289.9820251,95774.72656,0.002005199,88.6242218,-7.62635e-06,75.16581726,-0.57500881,-0.624171853,0.728233457,2872,1181,train\n2173A,112.7306,37.7111,20170601,57.2367688,2546,6285,1420447.114,1056057.217,806,0.472042054,250.9978027,283.4724731,91538.11719,0.00078821,151.3427124,-6.41289e-06,51.44772339,-0.446312994,0.153715312,0.519373357,2212,839,train\n1650A,119.1425,36.7008,20170601,47.30812325,2708,7311,1954976.224,1046319.314,30,0.849948883,200.3027039,285.9971313,101320.0703,0.000794282,243.0031586,-1.1674e-05,58.43498993,-0.294906765,0.797146857,0.727613628,2469,490,train\n1765A,123.7989,41.2692,20170601,27.25905292,1977,8056,2161353.316,1680284.484,308,0.814185798,207.383728,278.6672668,98296.72656,0.00115036,220.2493134,-6.77902e-06,63.97449875,-0.374472648,0.722958326,0.52306056,4624,587,train\n2161A,112.835,35.4934,20170601,59.60277778,2901,6302,1477238.434,793203.7922,709,0.456651896,250.0981445,284.1417236,92362.33594,0.00100555,171.1280212,-6.06758e-06,59.78850555,-0.429373711,0.155464351,0.656714261,2156,828,train\n2858A,117.7918,39.2474,20170601,53.30225989,2300,7095,1776467.147,1321453.878,1,1.060025454,181.5824432,285.2262573,101662.3359,0.000739276,239.0631866,-1.71198e-05,51.50098419,-0.029271942,1.059621215,0.814179659,2550,1329,train\n2694A,82.0806,44.8969,20170601,34.93175487,1397,1381,-922558.0233,1866159.803,502,0.539366603,145.1879272,283.5654297,94906.82031,0.000621153,188.2937927,-1.24042e-05,54.69483185,0.307950377,-0.442812502,0.212994978,2184,1308,train\n1979A,122.471,37.154,20170601,20.93626062,2635,7843,2202719.754,1169839.44,11,0.85059315,86.4906311,284.7306213,101133.1484,0.000863693,432.5138855,-5.31604e-05,68.90348053,0.848995745,0.052104175,0.560306191,2480,779,train\n1097A,111.717,40.7612,20170601,35.41242938,2058,6123,1277130.917,1408091.765,1043,0.394788593,357.4675598,280.5509033,89054.10156,0.000661266,166.6556396,-4.61145e-06,42.33866882,-0.017479463,-0.394401431,0.402627587,2312,82,train\n1724A,113.3444,40.0917,20170601,36.00139665,2165,6383,1415248.415,1349945.409,1063,0.945655406,94.06076813,280.2436523,88790.20313,0.000840312,169.8782806,-4.99748e-06,46.15485001,0.943284571,-0.066920348,0.446914136,2456,549,train\n1700A,111.9508,21.8536,20170601,31.69088319,5084,6160,1681346.256,-807180.964,5,1.098488212,283.7192383,295.1897583,100760.6328,0.003157079,273.6459961,-2.29671e-05,79.90969849,-1.067161798,-0.260464817,0.473783463,3536,530,train\n2210A,121.6722,42.0228,20170601,28.55070423,1856,7716,1981138.803,1723963.731,145,0.775674939,58.43053436,280.3300781,99311.96875,0.000841892,316.8934631,-5.48192e-06,51.4942131,0.660867512,0.406110436,0.527018189,2148,871,train\n1302A,116.989,36.6872,20170601,52.91253644,2710,6966,1784026.664,1003740.994,29,1.221477866,211.414505,286.4693298,100837.375,0.001053725,193.8558197,-1.23915e-05,55.44024277,-0.636648774,1.04244256,0.820888877,2310,254,train\n1201A,119.905,31.9108,20170601,48.17130919,3474,7433,2160118.712,503091.8008,5,1.084443688,261.1506653,288.4787903,101664.5547,0.002101663,271.9251709,-2.47128e-05,69.70951843,-1.071527839,0.166872069,0.763816118,3828,172,train\n2709A,86.0497,44.2967,20170601,59.0518732,1493,2016,-646780.0982,1761339.292,488,0.712336481,40.37915039,284.3507385,95988.28906,0.000364158,181.8424683,-9.81711e-06,50.02946091,0.461470842,0.542649031,0.270531058,2662,1322,train\n1075A,115.6426,37.7379,20170601,63.57938719,2542,6751,1649861.277,1104751.109,22,1.160543799,206.9411774,286.6635437,101373.5625,0.000767126,202.7361755,-1.1905e-05,49.30101013,-0.525799572,1.034599781,0.857527614,2870,61,train\n2509A,110.1106,22.7019,20170601,33.85714286,4948,5866,1485396.624,-740524.3759,105,0.824321985,266.4427185,294.3353271,99915.39844,0.003302474,237.1069794,-1.24622e-05,80.89638519,-0.822731435,0.051182766,0.530209482,5456,1141,train\n1646A,121.2611,37.4967,20170601,30.04441261,2581,7650,2097094.775,1183425.696,10,0.782544911,28.9070816,284.8276672,101138.5469,0.000936166,363.4239807,-3.54023e-05,64.66517639,0.378264666,0.685049176,0.612672925,2328,488,train\n2600A,100.2203,26.8906,20170601,12.86505682,4278,4283,489060.2619,-354433.3281,2415,0.471450388,48.6860199,285.0585022,74047.82813,0.002575112,153.2482758,-4.40524e-06,64.28829193,0.354100049,0.311253309,0.188906804,3622,1221,train\n2384A,117.9033,28.4303,20170601,43.17847025,4031,7113,2085404.22,58117.42673,85,0.781558394,295.7962341,291.1804504,99467.00781,0.002474272,139.7541656,-9.43432e-06,74.76644135,-0.703694344,-0.340070277,0.566145301,2604,1034,train\n2283A,116.8067,33.8997,20170601,59.70949721,3156,6937,1843604.428,671952.2147,29,1.083043218,246.0786743,287.7176514,101262.5078,0.001905322,203.9851227,-1.25052e-05,63.25701141,-0.989998281,0.439187914,0.80707562,2992,940,train\n1562A,113.0048,27.9153,20170601,42.26977401,4114,6329,1656158.618,-94667.55421,50,0.881071806,352.0388184,291.0776367,100592.6484,0.002660718,237.2675018,-1.77896e-05,72.21081543,-0.122107312,-0.872569382,0.77411443,3609,432,train\n2688A,93.5128,42.8172,20170601,29.67156863,1729,3210,-110357.8242,1551468.552,754,1.335805416,166.1001587,287.5172119,92337.63281,5.72949e-05,214.7267303,-3.04096e-06,27.20458221,0.321005642,-1.296661735,0.250863791,2388,1302,train\n2368A,114.9739,27.11,20170601,50.92039106,4242,6644,1854050.711,-152552.4451,61,0.84678787,323.9136353,292.3630371,100604.4375,0.002031853,255.932312,-1.71566e-05,70.83209229,-0.498811871,-0.684278011,0.630548894,3000,1018,train\n2525A,105.8153,32.4246,20170601,25.12222222,3392,5178,939506.8442,341136.2273,512,0.273956329,315.311615,288.1926575,93271.0,0.001406247,133.4162598,-7.91306e-06,71.57542419,-0.192673549,-0.194753617,0.642330885,3241,1157,train\n2563A,104.6289,30.1377,20170601,37.58725762,3758,4989,863507.493,58714.15621,368,0.777052164,299.7052612,291.2937622,96535.39063,0.000949055,194.6743011,-1.3389e-05,70.12590027,-0.674960375,-0.385017663,0.958182096,3643,1190,train\n2004A,119.579,31.751,20170601,40.41620112,3500,7381,2137170.674,477453.741,7,1.135902643,262.5191956,288.5517273,101615.7422,0.002010187,262.2275391,-2.99028e-05,69.46572876,-1.126228213,0.14793545,0.760685444,2847,803,train\n1056A,115.5214,38.8707,20170601,55.75207756,2361,6731,1611745.532,1237526.172,18,0.459951103,42.49386597,285.6372986,101214.4844,0.000986871,130.1126099,-8.39153e-06,46.66978836,0.310694754,0.339151561,0.877610922,2250,44,train\n2868A,126.4738889,43.95305556,20170601,32.6299435,1548,8484,2252072.72,2053556.148,183,1.158568382,33.19928741,276.589447,98939.58594,0.00127056,226.4085236,-8.87201e-06,64.41370392,0.63436079,0.969467402,0.475748479,2790,1335,train\n3034A,113.1076,41.0385,20170601,21.04899135,2014,6345,1376002.539,1460214.014,1403,1.501193643,95.51268768,277.3596497,85942.80469,0.000707332,272.0794067,-6.72817e-06,50.21829224,1.494257569,-0.144140452,0.384343177,1548,1392,train\n1139A,126.6106,45.9819,20170601,34.13841808,1223,8506,2182889.844,2292608.284,123,1.129419446,56.13928223,275.8691101,99987.07031,0.000711028,206.6298523,-7.97826e-06,61.24607849,0.937845528,0.629312396,0.398237228,1854,120,train\n1515A,113.135,27.8244,20170601,41.64623955,4128,6350,1669966.122,-103001.2096,47,0.791041613,349.5984192,291.2579346,100618.0156,0.002759503,225.3671722,-1.70918e-05,72.70252991,-0.142887458,-0.778029561,0.761198163,2493,425,train\n1212A,118.989,33.6067,20170601,49.74859551,3203,7286,2033114.729,680705.1361,14,1.058212042,254.3706665,287.4717102,101595.4922,0.001689018,241.3416901,-1.88418e-05,66.0517807,-1.019073486,0.28513509,0.75478369,3783,181,train\n2392A,115.031,35.763,20170601,59.26740947,2858,6653,1650143.246,860150.6617,54,0.785409331,210.4628754,287.7951355,101058.4141,0.000789856,205.6880798,-1.08127e-05,54.88176727,-0.398176134,0.676995993,0.860675335,2860,1041,train\n2259A,130.3794,46.7588,20170601,31.27683616,1099,9109,2398885.91,2470254.72,103,1.280087352,52.23353577,274.6879883,99727.85938,0.000773934,218.6244812,-8.96756e-06,65.39828491,1.011905432,0.784009576,0.366232425,3165,920,train\n2611A,104.2319,23.3892,20170601,19.89655172,4838,4925,902311.7993,-733176.9551,1268,1.384558082,199.8092651,288.7767029,85045.09375,0.002396623,247.1528625,-7.17614e-06,84.98868561,-0.469199568,1.302633047,0.376519203,3366,1231,train\n2564A,104.6469,30.1142,20170601,39.93888889,3762,4991,865390.4311,56091.57696,366,0.761607051,298.7831726,291.2766113,96544.89063,0.000962269,192.5832977,-1.32437e-05,70.36664581,-0.66753149,-0.366670251,0.955630064,3194,1191,train\n2207A,121.6178,41.9967,20170601,23.90422535,1861,7707,1978051.948,1719791.53,130,0.706633925,54.96004486,280.6085205,99944.10938,0.000831713,313.5397949,-5.3518e-06,51.6814537,0.578546345,0.405728489,0.522704482,2171,868,train\n1404A,108.383,22.805,20170601,32.59722222,4931,5589,1315076.34,-753378.9954,122,1.107817054,251.6599121,294.4295959,100020.5703,0.002805531,268.0393066,-1.6175e-05,79.96898651,-1.051533222,0.348620832,0.548646629,3386,342,train\n2382A,117.973,28.4459,20170601,38.90642458,4029,7124,2091207.617,61392.22791,89,0.773184597,306.6387024,291.2061768,99643.875,0.002532567,141.7419586,-9.32202e-06,75.07967377,-0.620444596,-0.461370707,0.577663779,3225,1032,train\n2188A,106.7931,39.6572,20170601,38.36629526,2235,5335,919280.9964,1219681.008,1092,0.543146789,2.647675991,284.4393921,88238.41406,0.000260353,356.4842834,-6.02153e-06,33.2258606,0.02508869,0.542567015,0.360314876,620,852,train\n1986A,120.635,31.17,20170601,41.06571429,3593,7550,2244844.685,433850.3587,5,1.482085824,270.870697,289.3474731,101636.8281,0.001796414,329.5151978,-5.46027e-05,72.47696686,-1.481915712,-0.022452137,0.71391201,2860,786,train\n2375A,114.4011,27.8072,20170601,51.75623269,4131,6552,1785484.367,-82729.3662,97,0.670251131,271.5167236,291.1463013,100370.1172,0.003721028,167.1518555,-1.02825e-05,77.31668091,-0.670017123,-0.017709201,0.689414501,3329,1025,train\n2883A,102.5381,24.339,20170601,22.35252809,4686,4654,728685.8193,-637533.3061,1658,1.268293262,0.765684068,288.8092041,81556.25,0.002286367,248.6258392,-9.29998e-06,71.25341034,0.016949164,1.268180013,0.293379486,3295,1349,train\n1923A,109.0697,35.0697,20170601,43.21111111,2969,5699,1175094.025,691854.7145,857,0.784514368,350.9170532,284.3713074,90409.49219,0.001036449,147.5519409,-7.33708e-06,60.60102081,-0.123914666,-0.774666309,0.562015951,3927,727,train\n2481A,111.5989,26.4519,20170601,38.40285714,4348,6104,1557054.226,-287075.5004,107,0.589670718,323.3930359,291.8050842,99112.42188,0.001756925,261.0776062,-1.18115e-05,70.55952454,-0.351668864,-0.473329216,0.739135087,2774,1117,train\n1145A,121.536,31.2659,20170601,40.78813559,3578,7694,2318797.274,465819.5687,7,1.105717778,262.5270996,288.9989319,101649.5078,0.001952073,375.844574,-3.87511e-05,75.64382935,-1.096320271,0.143853471,0.633812547,1852,126,train\n3014A,106.4959,29.53675,20170601,37.87465181,3854,5287,1038568.158,5809.294064,314,0.704479218,315.2382507,291.730957,97578.67969,0.001427953,132.7479858,-1.12517e-05,73.09924316,-0.496101081,-0.500174642,0.959151149,2935,1380,train\n2294A,116.9894,30.6145,20170601,57.02957746,3682,6966,1946102.362,291789.2004,28,1.213535309,334.9865417,289.3392639,100435.6328,0.00241919,246.3351746,-2.91041e-05,70.17926025,-0.513208151,-1.099675059,0.722575545,3172,951,train\n1351A,113.215,23.3917,20170601,31.49579832,4837,6362,1772680.807,-610527.5137,8,0.769667923,291.1340942,294.8891907,101126.6719,0.003101079,224.4102783,-1.7871e-05,72.3507843,-0.717915297,-0.277464032,0.566865027,2460,296,train\n1841A,111.3549,30.6463,20170601,54.88450704,3677,6065,1452233.682,198044.1008,60,0.244142145,348.8564453,289.6460571,98939.83594,0.002159378,132.5664978,-9.7884e-06,72.65235901,-0.047205616,-0.239535004,0.778909922,2219,657,train\n2554A,103.0013,29.9899,20170601,48.85180055,3782,4728,719331.3443,28103.61874,602,0.292732328,114.8098831,287.493103,89840.94531,0.001826168,91.37215424,-3.94762e-06,76.90119934,0.265721858,-0.122817382,0.679678798,3564,1183,train\n1766A,123.8142,41.3472,20170601,30.93201133,1965,8058,2159712.486,1689748.352,161,0.927616775,204.4311829,279.0293884,98795.14844,0.00114235,222.1768951,-7.48937e-06,62.4950676,-0.383651495,0.844561636,0.539563358,5019,588,train\n1780A,123.9305,47.3386,20170601,24.86428571,1006,8077,1955198.093,2394641.323,150,0.829468727,87.06686401,276.3829651,99684.71875,0.000590996,265.2062073,-1.42953e-05,54.59431076,0.828380167,0.042481396,0.284867764,2303,600,train\n1519A,113.167,27.8667,20170601,38.5579096,4121,6355,1671962.405,-97554.73998,59,0.769379556,347.1192017,291.2568359,100611.8984,0.002775748,223.0041046,-1.66523e-05,72.72164917,-0.171577454,-0.750004053,0.748995423,3036,427,train\n2194A,107.5936,40.916,20170601,28.17335244,2034,5463,961710.3623,1379813.209,1033,0.17704615,57.58438873,282.5994263,89611.53125,0.000252741,198.9614868,-6.39003e-06,33.10530853,0.149456322,0.09491124,0.391774625,2247,857,train\n2174A,112.7105,37.7087,20170601,62.86173184,2547,6282,1418906.609,1055479.935,799,0.45923692,250.9508362,283.6018982,91726.75781,0.000789204,150.3637238,-6.41473e-06,51.45659256,-0.434083134,0.149901271,0.520622313,2777,840,train\n1874A,109.3957,24.3663,20170601,50.98333333,4681,5751,1387514.832,-560503.563,95,0.507493556,325.9737549,293.5636597,99989.52344,0.003589642,270.158844,-1.89191e-05,76.6975174,-0.284011185,-0.420579761,0.57358098,2681,684,train\n1443A,106.6554,26.4364,20170601,30.33479532,4350,5313,1096189.034,-355632.0873,1128,1.292473793,236.6201019,287.552948,88284.88281,0.002157127,340.4060364,-1.14608e-05,83.25749969,-1.079247832,0.711134791,0.587897956,4398,372,train\n1445A,106.7105,26.6009,20170601,37.39915966,4324,5322,1099053.06,-335862.1243,1105,1.231004238,235.4505768,287.4734192,88457.39844,0.002065275,333.3855896,-1.06022e-05,82.98294067,-1.013881207,0.698152244,0.598706007,2731,374,train\n1194A,120.245,31.5631,20170601,46.98314607,3530,7487,2199524.887,470408.6975,20,1.451959491,264.6549683,289.1764526,101540.4531,0.001797434,331.5303955,-5.63425e-05,70.10752869,-1.445640206,0.135317311,0.73156029,3859,168,train\n3066A,116.2714,37.4372,20170601,52.45266272,2590,6851,1707188.048,1079794.576,23,1.147450209,212.3318176,286.5121155,101393.125,0.000893207,200.0878601,-1.11689e-05,50.65703201,-0.613664925,0.969565511,0.862419248,3228,1407,train\n1720A,115.455,35.27,20170601,62.4789916,2937,6721,1696888.385,809036.3481,52,0.829551816,221.8765564,287.800293,101053.0,0.000899515,199.1878052,-1.06659e-05,56.82141876,-0.553735673,0.617683649,0.8643592,2394,546,train\n1653A,116.6305,35.428,20170601,49.96927374,2912,6909,1788699.122,848541.891,38,1.003880501,224.9829407,287.5328369,101243.1563,0.000872848,189.3755798,-1.3267e-05,57.11571121,-0.70962292,0.710078478,0.837061763,2815,492,train\n1030A,114.6046,38.0398,20170601,72.15181058,2494,6585,1560759.875,1123720.525,67,0.632721186,15.83794117,286.2159424,100659.2266,0.00095308,139.9359436,-9.27118e-06,50.37906265,0.172675565,0.608702898,0.83161515,2543,20,train\n1394A,114.4103,23.1142,20170601,28.22727273,4882,6554,1893832.965,-619716.9778,19,0.612820506,275.219635,294.5081787,100671.8438,0.003013732,207.2019348,-1.54969e-05,77.6918335,-0.610282063,-0.055720687,0.50130558,2800,332,train\n2511A,110.1433,22.6164,20170601,34.49011299,4961,5871,1490098.495,-749768.098,77,0.783448815,268.9223633,294.5059509,100362.7578,0.003234258,238.7167206,-1.23647e-05,80.9986496,-0.783309579,0.014770144,0.529439747,2989,1143,train\n3015A,106.4042,29.57278,20170601,40.69553073,3848,5273,1029826.021,9090.648389,499,0.734752893,321.2451172,291.6476746,97393.6875,0.001437464,134.5672302,-1.10165e-05,73.26824951,-0.459989816,-0.572949588,0.9507249,4647,1381,train\n1691A,116.0797,24.2719,20170601,25.39915966,4697,6821,2025761.598,-455159.1549,86,0.276028544,279.0545654,293.9372253,98807.10938,0.001931621,195.1190643,-1.26219e-05,72.89041138,-0.272591144,-0.043426152,0.451126069,3202,524,train\n2683A,106.2319,36.1417,20170601,27.15616046,2797,5245,924463.1254,790090.8218,1610,0.541872561,9.020320892,280.3899231,82699.09375,0.000864578,242.8618011,-6.37311e-06,58.08214188,0.084954798,0.535171509,0.342578411,3380,1297,train\n1263A,119.686,29.1029,20170601,34.52506964,3924,7398,2224637.505,174478.83,44,0.817785561,277.5187988,290.5285034,99814.42188,0.002367802,220.8942871,-1.25426e-05,71.89976501,-0.810759604,-0.106967837,0.623388112,2752,219,train\n1232A,120.27,30.1819,20170601,43.43521127,3751,7491,2243537.147,311721.3579,13,0.914559126,298.2581482,289.8997803,101439.7188,0.002422209,248.1712799,-2.27691e-05,71.24567413,-0.805591345,-0.432944536,0.691005826,2611,199,train\n2438A,114.8131,30.4133,20170601,49.26478873,3714,6618,1761058.231,227314.6393,22,0.90606457,282.2607422,290.2521057,101152.1719,0.002493007,194.0690613,-3.24645e-05,69.44293976,-0.88540858,-0.1923659,0.773359001,3743,1076,train\n1012A,116.225,39.9279,20170601,56.0694051,2192,6844,1638539.229,1375127.894,66,0.690516233,95.00730133,283.905365,99824.0,0.001066209,121.4498749,-6.00324e-06,49.16394043,0.687883854,-0.060236473,0.826856971,3691,11,train\n2686A,89.191,42.9409,20170601,53.92087542,1710,2519,-429927.9711,1578490.724,16,0.494080901,122.0056839,290.8013916,99066.41406,3.88167e-05,160.9238434,-3.93639e-06,26.42686272,0.418994814,-0.261838257,0.221727252,2319,1300,train\n1859A,110.4697,29.1242,20170601,40.49860724,3920,5923,1402654.32,6714.878383,187,0.917783022,271.5867615,288.7306824,96559.67969,0.00287608,208.3604279,-8.75514e-06,77.36063385,-0.917432308,-0.025370562,0.752946079,3363,672,train\n1872A,109.3886,24.3406,20170601,40.90250696,4686,5750,1387271.058,-563557.5511,91,0.458784848,327.9056396,293.5845947,99991.25,0.003591797,271.9590149,-1.90522e-05,76.70124054,-0.243789017,-0.388652086,0.56827718,2244,682,train\n1417A,106.626,29.7228,20170601,37.63407821,3824,5308,1047660.272,29121.46665,412,0.730139077,310.2180481,291.698761,97623.82031,0.001509026,127.0112076,-1.02582e-05,73.63394165,-0.557560444,-0.471412122,0.941099823,3198,351,train\n1401A,108.301,22.7875,20170601,35.12253521,4934,5576,1307340.47,-756473.1589,91,1.095800757,250.1768494,294.4387207,99865.55469,0.002777726,263.9943237,-1.59962e-05,79.70346069,-1.030854225,0.371643305,0.541004241,2332,339,train\n1144A,121.412,31.1654,20170601,41.32285714,3594,7674,2311410.318,451335.3315,7,1.049924374,264.1340332,288.8684387,101644.3047,0.002043706,341.5586853,-2.4569e-05,75.45054626,-1.04442203,0.107349247,0.641874135,2660,125,train\n1210A,119.036,33.5981,20170601,43.71126761,3204,7294,2037268.846,680675.1667,13,1.035090566,254.3633728,287.4054871,101607.4219,0.001690594,239.982254,-1.75831e-05,66.19241333,-0.996771634,0.279031903,0.764626145,2351,179,train\n2291A,117.0549,30.5103,20170601,46.05865922,3698,6977,1954563.733,280990.3364,14,1.283691168,319.668457,289.7104187,101193.3047,0.002596543,246.7310181,-2.89802e-05,70.4782486,-0.830887258,-0.978513837,0.719925284,2922,948,train\n1205A,119.43,32.1319,20170601,53.00555556,3439,7357,2113269.784,518393.0431,31,1.03555131,261.5003052,288.1333618,101385.2109,0.002452063,255.5625916,-2.14748e-05,69.52696228,-1.024171114,0.153101444,0.773493886,3318,175,train\n2692A,87.2717,44.0297,20170601,52.32122905,1535,2211,-561241.372,1721226.929,570,0.759749651,55.69974518,284.4645996,94640.30469,0.000288062,191.508316,-9.42329e-06,46.22452164,0.627613723,0.428159505,0.222225696,2469,1306,train\n2318A,118.7175,30.9431,20170601,41.53221289,3629,7243,2086810.459,365363.599,42,1.045755744,263.070343,288.8798828,101186.9922,0.002160499,203.2387848,-1.41999e-05,71.29559326,-1.03811121,0.126215369,0.72707063,3807,973,train\n1104A,123.41,41.765,20170601,38.61699164,1898,7994,2115706.35,1729888.82,43,0.828971922,1.479269505,280.7277832,101098.9844,0.001110342,275.3372803,-8.63597e-06,50.45639801,0.021399353,0.828695655,0.582520604,2436,88,train\n2300A,118.3158,32.3061,20170601,51.82492997,3411,7179,2013844.862,515241.1366,20,0.96036762,263.758667,287.9902039,101215.0625,0.00248339,240.9942627,-1.45874e-05,69.13195801,-0.954670787,0.104449295,0.783346891,2993,957,train\n1886A,104.5761,28.71583,20170601,57.30277778,3986,4980,875197.315,-109593.8507,327,0.537228703,124.9964905,291.382843,96186.42188,0.001269122,144.9151917,-1.22388e-05,72.28664398,0.440110683,-0.308086485,0.98899138,3993,694,train\n2596A,103.7032,27.3392,20170601,26.85310734,4206,4840,810005.9823,-278796.1274,1914,1.00482893,304.3499756,284.7238464,80857.80469,0.00191047,173.0699463,-6.3495e-06,80.17396545,-0.82962966,-0.566917837,0.482687116,3315,1217,train\n2529A,105.8161,30.6347,20170601,35.92634561,3679,5179,963069.2794,128582.2569,423,1.015315652,306.8540649,290.7131042,96844.89063,0.001308999,156.4204102,-1.14511e-05,74.05819702,-0.812460482,-0.608911932,0.893412888,5460,1161,train\n1349A,113.433,23.105,20170601,34.26330532,4883,6397,1799828.954,-639129.1144,4,0.756003141,262.1160889,294.9769592,101113.7813,0.00338229,241.3295441,-2.54152e-05,73.80982208,-0.748852968,0.103730068,0.563663125,2445,294,train\n1343A,112.8908,28.1308,20170601,43.11408451,4079,6311,1641185.136,-71578.35935,45,0.853407919,352.6566772,290.8698425,100604.3438,0.002662458,241.0706635,-1.74155e-05,72.62168121,-0.109153256,-0.846398652,0.783427894,3672,289,train\n1767A,121.0986,41.0781,20170601,28.91643454,2008,7624,1969871.935,1601063.146,31,0.790780127,53.80680084,282.4335938,100952.2188,0.0006376,339.7416077,-3.11962e-05,52.37919998,0.638170719,0.466981113,0.598131895,2588,589,train\n2335A,117.0181,25.1174,20170601,23.24930362,4561,6971,2092600.191,-339472.5893,358,0.384046644,260.1303711,290.9665222,94328.82813,0.002547143,109.7207108,-7.1572e-06,78.75170135,-0.378360152,0.06584391,0.436848968,3540,985,train\n3000A,119.3581,34.6972,20170601,39.00854701,3029,7345,2031531.282,815727.3956,13,0.931725562,246.5258484,287.2103882,101151.3984,0.00123818,324.1776733,-4.78964e-05,65.25444031,-0.854603112,0.371168554,0.695316195,3693,1371,train\n1815A,112.4831,34.6869,20170601,60.01825843,3030,6245,1465639.011,692117.0163,140,0.496985734,212.0930176,287.7333679,99121.76563,0.00101551,168.0699005,-1.02809e-05,59.31695938,-0.264039189,0.421044081,0.795682788,2190,634,train\n1816A,112.3844,34.6231,20170601,61.63098592,3040,6229,1458805.919,683074.0466,181,0.359400302,208.1025238,287.6013184,98882.15625,0.001072841,171.3013458,-1.01912e-05,60.51517105,-0.169291154,0.317031682,0.799704909,3060,635,train\n1666A,118.6672,37.4314,20170601,46.0,2591,7235,1896097.456,1123039.327,3,1.088632822,225.6043396,285.9559326,101712.8984,0.000692601,246.7866974,-3.30833e-05,54.03356934,-0.777838171,0.76163584,0.762271285,2687,503,train\n2866A,111.0522222,35.04388889,20170601,72.68296089,2973,6016,1339796.58,714146.36,349,1.178678274,245.3684692,287.0262146,96694.34375,0.000989847,164.1177979,-1.13368e-05,59.48862457,-1.071410179,0.491286695,0.627516806,2613,1334,train\n1071A,116.8854,38.2991,20170601,49.09749304,2452,6950,1732520.575,1192780.49,9,1.185975075,203.5504456,285.6523132,101553.2891,0.000931695,180.4525604,-9.50657e-06,50.57389832,-0.473850638,1.08719933,0.841551185,1938,57,train\n2500A,108.3511,21.7631,20170601,31.28212291,5098,5584,1328200.021,-872581.6961,15,0.369634122,354.6724243,295.082428,100808.6563,0.002766602,281.1942749,-4.10084e-05,79.26787567,-0.034353744,-0.368034244,0.501352429,4164,1134,train\n2878A,116.0072,36.4343,20170601,61.4815864,2751,6809,1712119.91,956354.9697,34,0.995472431,220.8953552,287.0918274,101259.25,0.000996976,199.9930115,-1.20291e-05,53.0760498,-0.651699722,0.752497733,0.853916824,2970,1345,train\n1918A,108.7197,34.3956,20170601,60.59470752,3077,5643,1157372.659,607191.4518,463,1.179106951,176.9803619,286.9052429,95692.98438,0.000983151,105.4164658,-7.25398e-06,62.06290436,0.062220652,-1.177464128,0.618010998,4139,722,train\n2333A,118.1819,26.6514,20170601,22.86312849,4316,7157,2159265.234,-139605.4606,121,0.39565292,263.7986145,292.2583008,97047.40625,0.002362116,149.0433044,-1.08604e-05,72.12953186,-0.393335849,0.042756703,0.440635949,3831,983,train\n1385A,113.024,22.5328,20170601,36.91903409,4975,6332,1772387.574,-711437.4688,23,0.600268781,261.7745667,295.0432434,101279.0781,0.00332213,247.9923706,-2.01123e-05,77.00639343,-0.594090104,0.085904375,0.543663561,4206,323,train\n1970A,120.515,36.885,20170601,39.55890805,2678,7530,2057941.784,1095973.152,65,0.381221592,210.7970581,284.4913635,100726.5938,0.001085405,267.6190796,-7.60387e-06,64.93920135,-0.19517982,0.327467173,0.650446296,2918,770,train\n2532A,105.0717,29.5947,20170601,34.1028169,3845,5059,909681.7198,-1474.529073,323,1.088062406,328.4711304,291.5606689,97359.65625,0.001108068,159.6989441,-1.25981e-05,73.62997437,-0.569049478,-0.927395523,1.015865326,3002,1164,train\n2242A,131.0103,45.2948,20170601,25.48174157,1333,9210,2504055.155,2318248.399,190,1.266902089,78.77550507,274.7669067,97879.45313,0.000963974,298.3456421,-5.73262e-06,68.97348022,1.242658734,0.246657655,0.378085375,2324,903,train\n3061A,119.7512,49.1577,20170601,10.28151261,715,7408,1623753.67,2533062.372,613,1.128756523,62.88479614,271.8934631,93729.42188,0.000569275,221.8800354,-5.24758e-06,64.75436401,1.004680395,0.514498353,0.169842139,1502,1404,train\n2212A,123.2,41.1953,20170601,26.80898876,1989,7960,2120217.328,1658581.095,81,1.115287066,193.380249,280.9151611,100495.6484,0.001044164,260.6088867,-8.66503e-06,54.25777435,-0.25808388,1.085015178,0.570164502,2653,873,train\n1981A,122.038,37.197,20170601,22.64730878,2629,7774,2167470.456,1165229.381,49,0.486324281,53.66136932,284.2849426,101081.7891,0.000929517,339.3569946,-1.14569e-05,68.07839966,0.391740322,0.288185418,0.582678914,2062,781,train\n1262A,119.647,29.077,20170601,37.48739496,3928,7392,2221958.577,170624.376,45,0.786994278,274.4619141,290.5435791,99960.73438,0.002472113,216.9483337,-1.2594e-05,72.02579498,-0.78461206,-0.06118729,0.621354461,2923,218,train\n1725A,113.2661,40.1269,20170601,42.12784091,2160,6371,1408483.638,1353041.464,1088,1.077930689,98.62270355,279.7328186,88122.97656,0.000914728,174.4394226,-4.89987e-06,46.71366119,1.065755129,-0.161556855,0.440841585,2310,550,train\n1945A,98.2908,39.7711,20170601,30.22005571,2217,3975,256624.038,1182636.583,1655,1.00842607,23.74979591,282.2704163,82341.57813,0.000244018,177.3407898,-6.09007e-06,37.75084305,0.406125516,0.923030376,0.206479624,1927,749,train\n1798A,118.5058,31.6861,20170601,45.78672316,3510,7209,2047522.145,447072.3849,16,1.170979023,270.3184814,288.6643372,101463.5547,0.002137391,238.0056915,-2.44232e-05,68.46238708,-1.170961142,-0.006454895,0.772407889,3157,618,train\n2649A,106.005,34.3469,20170601,21.88243626,3085,5209,930098.1823,572529.916,1700,0.716347694,226.886261,282.2886047,83537.73438,0.00143241,240.8093872,-7.80151e-06,66.17281342,-0.522920907,0.489599615,0.469249517,6181,1265,train\n2548A,107.5272,31.2797,20170601,42.31320225,3575,5452,1104876.783,222967.4412,337,0.960395753,322.5675049,289.6777344,95433.78906,0.002043173,86.44931793,-7.66409e-06,75.65969849,-0.583809972,-0.762578487,0.70358932,4342,1177,train\n2410A,115.6386,34.407,20170601,54.83519553,3075,6750,1733608.704,710371.6115,50,0.885019481,233.6104126,287.925415,101097.75,0.001316219,200.5164795,-1.10336e-05,60.69537735,-0.712427557,0.525077581,0.848089933,2311,1057,train\n1438A,103.613,31.0283,20170601,38.79661017,3616,4826,763364.3782,155918.6152,1007,0.334213346,137.5024261,285.9831238,87564.375,0.002728773,66.37595367,-2.21576e-06,80.87184906,0.225798294,-0.246401504,0.641732693,3854,367,train\n1128A,125.217,43.85,20170601,27.01971831,1564,8283,2168874.945,2013270.564,215,1.360637546,44.88332748,277.8160095,99117.67969,0.00107708,268.9192505,-1.18619e-05,59.16466522,0.960132599,0.964095354,0.473345518,2004,110,train\n2540A,103.8416,30.0874,20170601,43.24930362,3766,4863,793640.0626,46120.66741,416,0.940160334,144.6555939,291.1042786,96538.0,0.001075432,166.0624847,-1.44114e-05,70.88861847,0.543930471,-0.766838372,0.869625449,3581,1172,train\n1925A,108.9589,34.8731,20170601,51.80346821,3000,5681,1169262.785,667041.647,685,1.170345545,346.3882446,285.5673523,92634.26563,0.000979013,143.154129,-7.94811e-06,59.38394928,-0.275528163,-1.137450218,0.591906309,3195,729,train\n1792A,125.1386,46.5776,20170601,32.70612813,1128,8270,2062482.14,2330255.339,146,0.887265623,66.03892517,276.1003418,99685.6875,0.0007852,227.4758911,-1.45286e-05,60.44749832,0.810790241,0.360360205,0.351172179,1631,612,train\n2064A,114.0122,32.1403,20170601,44.81843575,3438,6490,1651137.98,415567.3379,100,0.314103663,245.0543671,288.0062866,100430.4844,0.001839447,215.7365723,-1.65271e-05,72.26110077,-0.284796,0.1324853,0.837379336,3710,818,train\n2605A,101.5482,25.0441,20170601,15.67688022,4573,4496,627684.3374,-562536.3494,1789,1.418025136,12.1774807,288.5780029,80336.45313,0.002238392,259.2600098,-6.05266e-06,66.7363739,0.299110442,1.386119843,0.256407291,3465,1226,train\n1434A,104.1113889,30.63,20170601,52.46787709,3679,4906,811809.2746,112628.5247,495,1.026299715,165.946701,290.7294617,96160.41406,0.001252795,166.0556793,-1.25224e-05,69.84716797,0.249295771,-0.995561481,0.832397282,2741,365,train\n1832A,113.322,33.721,20170601,62.36805556,3185,6380,1556737.852,590591.2963,86,0.224137053,198.8684845,288.0117798,100244.9141,0.001300916,212.1009216,-1.32836e-05,62.05892563,-0.072483152,0.212093398,0.861038983,2780,649,train\n1387A,113.7819444,23.05361111,20170601,37.732493,4892,6453,1834616.037,-638504.8179,21,0.791039944,256.5083008,295.0609131,101043.8672,0.00310294,240.8421021,-2.55858e-05,73.76796722,-0.769202948,0.184583411,0.543184817,2288,325,train\n2179A,111.0414,35.1147,20170601,57.46648045,2962,6015,1337511.652,722435.4393,378,1.193482399,240.7014465,287.4403992,97901.0,0.000992634,156.6450653,-1.03128e-05,58.97314453,-1.040795684,0.584075809,0.617802501,3148,844,train\n1489A,106.1358,38.5036,20170601,34.52222222,2420,5230,884162.6298,1074071.567,1113,0.9348827,124.910881,283.9379578,89122.9375,0.000340787,158.2210999,-5.58866e-06,39.63668823,0.766678691,-0.534985483,0.386075169,2369,413,train\n1627A,115.9835,36.4796,20170601,57.26740947,2743,6805,1709054.559,961306.2282,33,0.990226269,220.3613434,287.0750427,101268.9453,0.001001082,200.6942902,-1.15546e-05,52.84360886,-0.641260743,0.754541337,0.859417915,2719,471,train\n2711A,87.5475,44.1756,20170601,61.95505618,1512,2256,-539896.8255,1737506.009,470,0.583892584,78.35292053,285.1177368,95576.33594,0.000253864,260.3128662,-9.85043e-06,45.717453,0.571865261,0.117900915,0.250094444,2710,1324,train\n1226A,120.348,30.3058,20170601,46.53047091,3731,7504,2246547.923,327756.2956,10,1.014252424,291.7313538,289.645813,101478.6172,0.00239094,262.1755676,-2.78451e-05,71.06648254,-0.942191184,-0.375478119,0.708190084,2457,193,train\n1808A,115.9114,29.6039,20170601,43.8487395,3843,6794,1877560.323,153502.6408,55,0.73354423,307.9508057,289.6404724,99172.10938,0.003184199,224.3693085,-2.66592e-05,75.0455246,-0.578457832,-0.451080561,0.715380073,4203,628,train\n2482A,109.9333,27.5733,20170601,42.20140845,4168,5837,1382136.524,-181904.2551,346,0.664505363,338.0976563,290.1990662,97684.02344,0.00260912,204.6327362,-1.12255e-05,74.57990265,-0.247927666,-0.616521895,0.706343055,5405,1118,train\n1336A,112.8872,28.2189,20170601,46.02374302,4065,6310,1638975.709,-61410.05114,59,0.803195179,350.6568604,290.8293762,100692.2422,0.002678428,240.7741699,-1.75897e-05,72.73033142,-0.130465791,-0.792528391,0.795592368,2907,282,train\n2352A,115.0586,27.7758,20170601,43.86864407,4136,6657,1845915.652,-74206.461,72,0.861186504,312.0721436,291.746582,100519.2031,0.002699427,243.2925262,-1.67739e-05,70.81617737,-0.63929975,-0.57700789,0.643669963,5650,1002,train\n1871A,109.4108,24.3304,20170601,44.54661017,4687,5754,1389569.262,-564416.0529,88,0.460518152,333.2667847,293.6275024,99988.64063,0.0035935,270.2512817,-1.94417e-05,76.37477112,-0.207190618,-0.411277294,0.566913426,1987,681,train\n1671A,113.598061,24.795928,20170601,31.37429379,4613,6424,1778861.143,-443511.2655,86,0.158265471,316.9199219,293.2704773,99853.49219,0.002434323,161.2541962,-1.04215e-05,75.90643311,-0.108106621,-0.11558944,0.551126122,4904,507,train\n1961A,117.541,36.71,20170601,54.36,2706,7055,1827404.856,1016578.603,77,1.092469335,198.5237274,285.657959,100077.5234,0.001075418,183.4550934,-8.91527e-06,59.02105713,-0.347064942,1.035874128,0.781022251,2465,764,train\n2202A,116.1042,43.9317,20170601,15.73460411,1551,6825,1524992.39,1851538.995,1007,0.765536726,66.50341034,276.6970215,89311.70313,0.000287773,320.1216736,-4.94596e-06,45.5569191,0.702050865,0.30523932,0.314478874,1847,863,train\n1678A,116.6092,23.2539,20170601,24.50423729,4859,6905,2101564.77,-559215.9042,27,2.059513807,282.8687744,294.9584656,101095.2734,0.002129409,356.4177246,-5.92966e-05,80.64022827,-2.007808685,-0.458586454,0.412594229,3220,514,train\n1900A,104.7692,29.3411,20170601,64.99164345,3886,5011,885437.3467,-34168.5706,309,0.780762732,179.2603607,291.6853027,97333.69531,0.001062089,150.7517548,-1.28835e-05,72.82495117,0.010153056,-0.78069675,1.024815798,3306,705,train\n1006A,116.361,39.9425,20170601,53.87780899,2189,6866,1648488.68,1379142.177,55,0.415028334,89.74723053,284.4081421,100729.1953,0.000993201,126.2128677,-6.42526e-06,46.70851517,0.415024221,0.001850144,0.868779421,2062,5,train\n2281A,116.7039,32.625,20170601,58.06582633,3360,6921,1868605.852,520615.6857,21,1.062380075,256.8199158,288.4088745,101390.7578,0.002175478,216.5729828,-2.3615e-05,65.93348694,-1.034385562,0.242276877,0.790068328,4608,938,train\n2214A,123.1761,41.2736,20170601,31.98467967,1976,7956,2115763.165,1667244.861,27,1.027720332,188.5934143,281.02771,100954.7891,0.001036194,264.5457764,-8.9392e-06,52.4006424,-0.153559297,1.016183376,0.57888782,2032,875,train\n1469A,108.906,34.1546,20170601,63.16142857,3115,5673,1177079.998,580654.0435,434,1.231153131,2.677012682,286.0867615,95604.99219,0.001545431,87.11981201,-6.99461e-06,66.99512482,0.057500094,1.229809642,0.60175842,2900,397,train\n2376A,116.2239,28.0797,20170601,43.84861111,4087,6844,1943846.016,-16680.09585,45,1.054667711,338.5984192,291.7095032,100798.1953,0.002379155,227.6644287,-1.8134e-05,70.86721802,-0.384931028,-0.981912494,0.626872838,5661,1026,train\n2408A,115.6697,34.4286,20170601,58.56478873,3072,6755,1735638.794,713466.8413,49,0.888605118,233.345932,287.9100342,101089.6563,0.001309427,200.5289001,-1.10299e-05,60.62379074,-0.712872803,0.530501068,0.846171498,2449,1055,train\n2308A,116.478,31.7618,20170601,41.19722222,3498,6884,1871882.46,415442.9125,42,0.898550034,247.971405,288.4637451,101096.7031,0.001971273,176.9476013,-1.23149e-05,68.41970062,-0.832941175,0.337047815,0.79097712,3376,964,train\n1015A,117.145,39.1654,20170601,50.42458101,2314,6991,1729155.563,1300184.178,6,1.027325869,188.9700317,285.4299316,101665.4531,0.000777989,198.2338409,-1.75793e-05,49.15804672,-0.160173729,1.014762402,0.864020705,2398,12,train\n1789A,124.8354,46.0347,20170601,29.63342697,1215,8222,2062275.815,2260418.357,134,0.837191284,54.04372787,276.9046936,99844.53906,0.000723391,246.5344696,-1.66291e-05,58.32799149,0.677663684,0.4915905,0.330724269,3067,609,train\n2065A,114.0681,32.1342,20170601,48.12083333,3439,6499,1656072.51,415791.4722,86,0.33098039,244.0778809,288.04776,100527.9141,0.001839149,215.3658295,-1.57024e-05,71.78760529,-0.297675401,0.144697547,0.840458155,2648,819,train\n1996A,121.14,31.422,20170601,36.98680352,3553,7630,2280119.755,474526.4237,3,1.146115661,265.4116211,288.8692627,101663.2188,0.001866136,328.5057983,-2.6152e-05,74.34291077,-1.142438531,0.091735512,0.685276031,3909,795,train\n1492A,87.4754,43.9469,20170601,77.70943953,1549,2244,-547253.8339,1709963.211,595,0.758949459,28.55837822,283.7349243,93723.5,0.000339247,150.0768585,-9.79761e-06,47.19406509,0.362808943,0.666613758,0.234454781,2866,416,train\n2405A,112.5003,32.9735,20170601,56.01264045,3304,6248,1503592.378,489460.1653,126,0.828174889,296.7843628,288.1109619,99957.63281,0.001374721,206.7806702,-1.23734e-05,66.75045776,-0.739341378,-0.373159379,0.854722977,2911,1052,train\n2000A,120.237,31.909,20170601,53.80617978,3475,7486,2188337.525,510229.7859,4,1.051629782,260.4096985,288.3249512,101628.1719,0.002050892,281.309906,-2.28259e-05,70.53587341,-1.036925197,0.175246224,0.749362946,3505,799,train\n1055A,115.442,38.8756,20170601,50.77170868,2360,6719,1605476.638,1236810.092,24,0.475105911,64.50136566,285.6015015,101157.2109,0.000996274,125.5256729,-7.90693e-06,47.43140411,0.428821683,0.204542384,0.863855243,2743,43,train\n1787A,129.6459,44.6104,20170601,26.84033613,1442,8991,2442196.077,2205380.206,233,1.036484718,59.33597183,275.3889465,97480.22656,0.000870559,283.7144775,-6.43757e-06,67.14394379,0.891539633,0.528637528,0.391809464,2599,607,train\n1799A,118.4828,31.6411,20170601,43.52653631,3518,7205,2046830.322,441367.1691,7,1.177890301,271.4775085,288.7276306,101530.1328,0.002095668,237.3304138,-2.4753e-05,68.43269348,-1.17750001,-0.030316068,0.765924096,2881,619,train\n2420A,114.018,32.965,20170601,53.2740113,3306,6491,1632620.306,512678.7934,83,0.413042068,218.585144,287.9568787,100421.0078,0.001531555,208.9429932,-1.72145e-05,66.1530838,-0.2575984,0.322872758,0.873422146,2685,1059,train\n1207A,119.9219,32.4611,20170601,46.7261236,3386,7435,2145019.393,567246.0861,4,0.999828398,259.0179443,287.8745728,101688.6641,0.002606904,255.2181396,-1.47951e-05,69.54936981,-0.981510639,0.190509111,0.765233815,2735,177,train\n2684A,106.2792,36.0022,20170601,24.97771588,2820,5253,930273.3393,773761.2487,1737,0.483846754,10.11861706,279.7474365,81571.78125,0.000954525,230.4520874,-6.08451e-06,60.11287308,0.085002854,0.476321518,0.367416412,2363,1298,train\n1009A,116.644,40.3937,20170601,46.92151163,2117,6911,1657945.02,1437655.317,169,0.415816933,170.0383453,283.5123596,98736.03125,0.001102607,154.2833405,-6.18209e-06,50.75003433,0.071967669,-0.409541667,0.71338582,5288,8,train\n1203A,119.68,32.1883,20170601,51.92178771,3430,7397,2132762.946,530337.4483,19,1.049262047,261.1204224,288.2279053,101589.1406,0.00244211,261.6349792,-2.29112e-05,69.40813446,-1.036679745,0.162005737,0.762907147,3157,173,train\n2350A,113.8686,27.6442,20170601,43.725,4157,6467,1740756.854,-111129.8398,109,0.607530892,271.7436829,291.0496216,99475.70313,0.003139014,145.6219482,-9.49163e-06,76.27965546,-0.607250452,-0.018457489,0.713118553,2786,1000,train\n2373A,114.3953,27.7842,20170601,48.19777159,4135,6551,1785489.229,-85493.24675,107,0.642351568,269.9945679,291.020752,99993.39063,0.003815764,166.0158844,-1.02667e-05,77.5470047,-0.642351568,9.09032e-05,0.681075931,3992,1023,train\n2621A,99.7056,27.8317,20170601,12.73638968,4127,4201,435578.495,-246254.9584,3292,0.77958256,28.83324814,278.2930908,66432.22656,0.002079668,159.760849,-1.86319e-06,75.8204422,0.375952989,0.68294096,0.116368696,2307,1241,train\n1770A,121.1178,41.1222,20170601,34.33379888,2001,7627,1969871.191,1606648.036,29,0.743052661,53.06433105,282.2899475,100820.6094,0.000654298,331.3728333,-2.60269e-05,52.22275543,0.593917787,0.446529895,0.599375308,1881,591,train\n1456A,91.1319,29.6514,20170601,19.38243626,3836,2829,-349626.2845,-34524.66527,3656,0.307950467,182.5081177,278.9877319,60599.71094,0.001003054,349.0698242,-5.03294e-06,38.49600983,-0.01347574,0.307655483,0.08314231,1394,384,train\n3026A,116.6183,23.65889,20170601,30.49442897,4795,6907,2092209.144,-513293.2884,13,0.746302962,272.5525513,294.3370056,101367.1328,0.002663295,206.6050568,-1.79555e-05,81.06671143,-0.745564044,-0.033201545,0.421838433,1733,1388,train\n1796A,118.3708,31.3178,20170601,55.5,3569,7187,2046353.174,401504.7943,13,1.190397501,275.0525818,289.0646057,101574.3203,0.002036665,226.9997711,-2.25608e-05,68.51829529,-1.185777068,-0.104779951,0.76573962,784,616,train\n1011A,116.407,40.0031,20170601,51.25069638,2180,6873,1650384.299,1387133.42,47,0.307361811,103.0270462,284.3847656,100716.8516,0.000990527,123.1825027,-6.28568e-06,46.14625931,0.299455166,-0.069266826,0.850230277,3301,10,train\n1294A,115.852,28.6869,20170601,34.8837535,3990,6784,1895192.257,46154.86128,19,1.255147696,346.7901001,290.8968201,100707.875,0.002554241,228.4994965,-2.21568e-05,71.41098022,-0.286929935,-1.221911192,0.668902993,2202,247,train\n2465A,111.4503,27.2537,20170601,49.32869081,4219,6080,1527556.216,-196581.1706,223,0.922108591,303.0621643,290.3300171,98638.96094,0.002118265,231.2845154,-1.11447e-05,75.58161163,-0.772831738,-0.503006339,0.74563992,3222,1101,train\n1714A,112.0539,22.9539,20170601,31.77562327,4907,6177,1669594.799,-680641.0578,93,0.844846368,260.4356995,294.0514221,98688.71875,0.003123252,207.6355591,-1.16317e-05,78.41332245,-0.833096981,0.140409529,0.547084212,3633,542,train\n1748A,123.044,41.1196,20170601,33.3767313,2001,7935,2111414.324,1646346.904,86,1.042547464,193.8271942,281.1046753,100647.7344,0.001028935,270.2232361,-8.14869e-06,52.92178726,-0.249155462,1.012337208,0.565992832,4178,570,train\n1339A,112.9956,28.1442,20170601,44.35195531,4077,6327,1650403.339,-68267.65041,83,0.812318444,349.3313599,290.9437561,100703.9297,0.002605598,236.9651947,-1.73276e-05,72.30608368,-0.150453061,-0.798263848,0.780599594,2931,285,train\n1929A,109.5056,36.6106,20170601,38.42792793,2722,5769,1183818.931,881538.6009,1030,0.550649464,21.92397499,283.20047,88887.74219,0.000950885,207.7160339,-8.08629e-06,53.81389618,0.205593586,0.510828853,0.434011281,3593,733,train\n1290A,115.893,28.6844,20170601,36.59401709,3991,6791,1898924.787,46657.37765,28,1.290891767,346.7346191,291.0671997,101131.4609,0.002607477,233.0478058,-2.39785e-05,71.27455902,-0.296317697,-1.2564224,0.681694448,1744,243,train\n1793A,124.8648,46.6219,20170601,21.60504202,1121,8226,2042703.381,2329714.516,147,0.841696203,67.82704163,276.3719482,99741.51563,0.000755784,234.8500214,-1.28773e-05,59.32965088,0.779440641,0.317686498,0.337514758,2678,613,train\n2208A,121.6561,42.0186,20170601,25.61772853,1857,7713,1980110.113,1723144.197,142,0.755217731,57.48738861,280.4088745,99496.03125,0.000838532,316.0150146,-5.43617e-06,51.54109955,0.636842847,0.405937195,0.521852255,1733,869,train\n1733A,111.5531,36.0783,20170601,69.44428969,2808,6096,1360243.985,844368.3913,461,0.185014188,48.76656342,286.0409546,94797.14063,0.000819977,139.1143646,-6.35906e-06,53.23267365,0.139133215,0.121951602,0.550884366,2351,556,train\n2332A,118.1694,26.6383,20170601,22.0,4318,7155,2158481.672,-141374.5654,125,0.388703644,263.6714172,292.284668,97074.60938,0.002374068,148.9430695,-1.09323e-05,72.15641022,-0.386333078,0.042863488,0.439908713,4522,982,train\n1730A,113.0886,36.2126,20170601,68.68767507,2786,6342,1482079.491,882586.0442,921,0.899124026,186.4111176,282.2459106,90455.11719,0.000930382,178.1455078,-5.74636e-06,61.09853745,-0.100394957,0.893501461,0.584191799,2593,554,train\n1090A,111.651,40.7579,20170601,34.55742297,2059,6112,1272205.141,1406838.292,1032,0.480284065,174.4728241,280.5791931,89050.00781,0.000670869,165.0842743,-4.64752e-06,42.45566559,0.046302769,-0.478046894,0.400845587,2177,75,train\n2472A,113.0073,25.9061,20170601,34.37464789,4435,6329,1699392.857,-326664.2655,251,0.306201965,352.6844482,291.5570374,98768.48438,0.001960136,235.7931213,-1.1879e-05,75.07857513,-0.039016932,-0.30370599,0.665069103,5300,1108,train\n1372A,113.105,23.0395,20170601,39.28969359,4894,6345,1769555.098,-652521.0692,9,0.79575038,267.0890503,295.2361755,101187.0078,0.002794035,248.4721527,-2.50565e-05,72.00431061,-0.794721782,0.040446728,0.570706666,2500,310,train\n2550A,107.4967,31.2108,20170601,48.13509749,3586,5447,1103244.464,214466.7943,323,0.857193649,317.7084351,289.9658813,95756.14063,0.002015242,87.35523224,-7.48363e-06,75.18881226,-0.576853693,-0.634051085,0.717251718,2559,1179,train\n1052A,115.5223,38.8957,20170601,56.74789916,2357,6732,1611183.934,1240519.241,17,0.467236191,46.89681625,285.6257324,101233.1563,0.000988291,128.7496796,-8.41291e-06,46.76945877,0.34113276,0.319277465,0.865892828,2754,40,train\n2019A,122.011,39.617,20170601,32.03191489,2241,7770,2085439.957,1448004.9,92,0.207656801,259.9527588,282.2541809,100642.1641,0.000671917,264.8847961,-1.10987e-05,61.00244141,-0.204470724,0.036236256,0.614898324,2389,815,train\n1984A,121.544,36.907,20170601,18.6504298,2675,7695,2138236.688,1120520.469,27,0.306060523,104.4561081,284.7194519,101210.6094,0.000953183,353.0021362,-3.55043e-05,68.22831726,0.29637447,-0.076388501,0.600116432,2400,784,train\n3022A,112.4433,34.6686,20170601,60.85352113,3033,6239,1462727.468,689351.3964,143,0.432097435,210.8765869,287.6643982,99027.03125,0.001041266,169.6954498,-1.02858e-05,59.73667145,-0.221742466,0.370861799,0.795811057,2323,1386,train\n1987A,120.658,31.172,20170601,40.59217877,3593,7553,2246751.198,434606.6395,3,1.449633479,270.976532,289.3094177,101645.375,0.001796157,325.6022034,-5.13207e-05,72.56830597,-1.449424028,-0.024638103,0.711487293,2829,787,train\n2327A,117.7275,26.3108,20170601,26.40668524,4370,7084,2126860.661,-188366.7761,266,0.354950488,267.0460205,291.644165,95997.64063,0.002420749,125.3084488,-8.85309e-06,75.11643219,-0.354478031,0.018307932,0.421910286,5573,980,train\n1472A,108.869,34.378,20170601,62.61024845,3080,5667,1170182.488,606859.4314,374,0.777870893,346.1106262,287.2488403,95835.875,0.001016792,104.8355255,-7.49368e-06,61.47875977,-0.186790884,-0.7551108,0.622148514,3171,400,train\n1241A,121.524,29.8506,20170601,31.24792244,3804,7692,2362720.878,303094.5143,5,0.473662734,251.4663239,290.0154114,101741.1328,0.003214971,359.4755859,-3.04301e-05,78.93255615,-0.449091643,0.150575832,0.580007911,2369,205,train\n2704A,81.2867,43.895,20170601,59.07703081,1557,1254,-995971.8538,1752253.257,611,0.100160152,352.2024536,285.6015015,92694.33594,0.000397781,280.1430359,-1.38764e-05,46.56907654,-0.013597842,-0.09923283,0.217016324,2365,1317,train\n1319A,113.564,34.802,20170601,62.60085227,3012,6418,1552596.175,722371.2196,112,0.702414095,213.4332581,288.1034546,100289.3906,0.000992073,207.3097992,-1.29245e-05,58.3849678,-0.386995584,0.586191058,0.851491392,2711,266,train\n1861A,110.4417,29.315,20170601,28.36478873,3890,5919,1396597.314,28650.35021,854,0.829989314,273.9925537,288.3518677,94818.85938,0.002530119,186.5463715,-7.15413e-06,77.21740723,-0.827977836,-0.057749458,0.73192817,6076,674,train\n2248A,131.1638,46.6572,20170601,28.1755618,1115,9234,2454156.754,2477988.922,171,1.591771722,64.15701294,274.4983826,98910.52344,0.000981885,287.2829895,-7.6076e-06,66.63980103,1.432558894,0.693910897,0.367050588,2415,909,train\n2367A,114.9817,27.0658,20170601,51.02148997,4250,6645,1855813.985,-157493.5723,51,0.814556003,323.3487549,292.3908386,100568.5313,0.002045772,258.7020264,-1.76957e-05,70.75080109,-0.486291468,-0.653469265,0.613512635,3854,1017,train\n1712A,112.0392,22.9169,20170601,32.90555556,4913,6174,1668906.96,-685097.1764,98,0.864083827,257.4291077,293.9777222,98439.94531,0.003149707,207.1984253,-1.13128e-05,78.8657074,-0.843362033,0.188099161,0.542743862,4141,540,train\n2520A,109.2317,23.7369,20170601,41.42577031,4782,5725,1382358.512,-635062.655,86,0.755817354,309.0960388,293.9732971,99822.64063,0.003392727,279.7532043,-1.73465e-05,76.08705139,-0.586613953,-0.476596206,0.565176964,3066,1152,train\n2280A,116.8306,32.6319,20170601,54.37900875,3359,6941,1879152.294,523839.07,50,1.077997923,256.0991821,288.4120483,101297.5,0.002176847,220.4829407,-2.4011e-05,65.95225525,-1.046416521,0.259021372,0.802841544,3855,937,train\n2238A,129.5042,42.9061,20170601,20.3913649,1715,8969,2504442.429,2005817.391,180,0.979317307,90.25302887,276.5004883,97651.24219,0.000786697,298.5923767,-3.3222e-06,67.61209869,0.97930795,-0.004279356,0.408384055,2065,899,train\n1758A,123.9,41.8594,20170601,36.30779944,1883,8072,2147800.77,1751577.819,29,0.87275064,184.5937195,280.1603394,100265.2422,0.001149039,268.6628418,-9.49985e-06,55.61320496,-0.069896147,0.869947255,0.547334552,2106,580,train\n1810A,115.9936,29.5867,20170601,21.53521127,3846,6807,1885261.183,153081.4526,919,0.758080125,316.0289307,289.4712219,98615.89844,0.003181043,228.8829193,-2.99535e-05,75.33885193,-0.526369631,-0.545546055,0.685769856,6103,630,train\n2685A,106.2375,36.0211,20170601,24.23455056,2817,5246,926588.0422,775639.7685,1790,0.497945905,7.997248173,279.684845,81400.75781,0.000939131,230.6415863,-5.97917e-06,59.96330261,0.069275104,0.493103534,0.373061597,3104,1299,train\n2226A,124.3897,43.1847,20170601,31.2745098,1671,8150,2135315.17,1917375.985,172,1.245658398,25.97842789,278.567749,99516.21875,0.001133413,290.7432556,-9.47161e-06,56.07120895,0.545623958,1.11980319,0.481185198,2266,887,train\n1829A,113.2464,35.1764,20170601,67.43117978,2952,6367,1517997.666,761815.3712,94,0.885525048,318.3309937,287.7909241,99678.80469,0.000857338,150.0248566,-9.33647e-06,56.05779648,-0.58876729,-0.661443651,0.774671316,3517,646,train\n1922A,109.0656,35.0994,20170601,35.85632184,2964,5698,1174242.322,695355.2672,961,0.648982406,352.0760803,284.1787109,90082.51563,0.001070753,149.4832916,-7.27995e-06,60.96445465,-0.089524291,-0.642777979,0.545577049,4489,726,train\n1843A,111.3296,30.7819,20170601,52.59556787,3655,6061,1447335.079,213605.1272,102,0.423213005,343.0461426,289.4862061,98716.28125,0.002046995,125.3606186,-7.87935e-06,73.60633087,-0.12344341,-0.404809803,0.763970613,3667,659,train\n1916A,103.7897,25.5035,20170601,35.22957746,4500,4854,837258.136,-492397.3436,1888,1.716951609,194.941391,286.8114014,80383.3125,0.002508642,358.395874,-1.43404e-05,75.14983368,-0.442670286,1.658905029,0.335355341,4422,720,train\n1087A,112.57,37.8195,20170601,62.8782235,2529,6259,1405376.252,1066708.03,786,0.319642693,177.1777954,283.1853638,91309.27344,0.000980009,141.3523102,-5.93812e-06,51.98262024,0.015767714,-0.319253564,0.511066437,1775,72,train\n1151A,118.803,32.1083,20170601,43.03641457,3443,7256,2060789.639,502334.9274,24,1.113111734,264.9004211,288.13797,101400.0156,0.002390687,242.984787,-2.04458e-05,68.42819977,-1.108701348,0.09898939,0.780806124,3173,132,train\n2603A,100.0869,23.8822,20170601,26.72285714,4759,4262,494741.563,-705699.5666,1488,0.528833449,60.6861496,288.3456726,80643.85156,0.003621748,64.56266022,-2.41799e-06,72.13432312,0.461108744,0.258927703,0.258298099,3913,1224,train\n2573A,102.2625,27.8978,20170601,21.25218659,4116,4610,671329.8128,-224072.1958,1562,0.312241763,233.3387756,289.5451355,82435.22656,0.001917009,194.9723053,-3.40234e-06,62.19509125,-0.250468969,0.186440915,0.281057447,4045,1199,train\n1973A,120.747,37.825,20170601,31.43079096,2528,7568,2046662.917,1211081.216,6,0.861073196,181.3109436,285.5254211,101167.8125,0.000681089,472.4484863,-7.78312e-05,60.97776794,-0.01969859,0.860847831,0.63664639,2532,773,train\n1127A,125.25,43.8167,20170601,26.91520468,1569,8288,2172404.572,2010111.368,208,1.359662056,45.00798798,277.8009338,99072.00781,0.00109049,269.1202393,-1.28545e-05,59.46441269,0.961538076,0.961314499,0.478931129,2408,109,train\n1738A,113.5753,37.8564,20170601,55.25140449,2523,6420,1484010.913,1085897.954,699,0.753548741,77.30951691,282.0491028,91621.40625,0.001092094,158.8437347,-4.69538e-06,61.50248718,0.735133767,0.165571943,0.600037038,2636,561,train\n1455A,102.638,25.0359,20170601,31.47645429,4574,4670,732026.9839,-555948.9976,1911,1.434587717,0.958819926,287.8925476,79703.5625,0.003018526,361.4255981,-2.52326e-05,70.24674225,0.024012588,1.434386849,0.296678424,4403,383,train\n2846A,113.3208,23.1323,20170601,35.87222222,4879,6379,1788416.595,-638079.1327,9,0.774305105,266.3726501,295.0050354,101110.1406,0.003248306,240.7895813,-2.37406e-05,72.95316315,-0.772751689,0.049022432,0.568709731,2707,1328,train\n1607A,120.9092,40.7136,20170601,38.91316527,2066,7593,1967516.823,1554288.254,35,1.005424857,59.02132416,283.1208191,101204.3516,0.000581291,414.2618713,-7.15388e-05,54.26570892,0.861994267,0.517537475,0.622131467,2945,455,train\n2197A,113.1306,40.9923,20170601,19.8487395,2021,6349,1378766.173,1454987.04,1374,1.389757633,95.23073578,277.5353088,86205.32813,0.000677194,266.2433472,-7.30819e-06,50.05215454,1.38397634,-0.126631945,0.386386573,2338,860,train\n1993A,120.526,31.874,20170601,37.58333333,3480,7532,2213909.63,512655.844,8,1.152732015,262.2667847,288.5232239,101641.5547,0.00200645,299.4348145,-2.33448e-05,71.54403687,-1.142241716,0.155161068,0.728489876,3382,792,train\n1284A,119.268,26.0797,20170601,25.44662921,4407,7331,2274791.331,-180156.3502,26,0.633227229,307.7336426,291.6205139,99916.67188,0.002799797,258.8541565,-1.83825e-05,84.9222641,-0.500822306,-0.38749674,0.449537158,3288,239,train\n1163A,120.596,31.3264,20170601,43.19230769,3568,7543,2236698.632,450999.6638,7,1.496544957,269.1057129,289.2918396,101586.0938,0.001770476,328.2316589,-4.93678e-05,72.03697205,-1.496361494,0.023426285,0.728493512,2575,144,train\n1931A,107.0708,34.3017,20170601,44.9301676,3092,5379,1020409.291,577699.2047,864,0.396368384,19.02463341,283.3543701,87038.75,0.001776829,112.4791336,-3.7588e-06,67.62475586,0.129202336,0.374719411,0.524760962,5824,735,train\n1156A,118.795,32.0775,20170601,48.81395349,3448,7255,2060994.732,498587.9665,13,1.120778441,264.7900391,288.1511536,101391.4688,0.002381502,242.3991241,-2.04295e-05,68.42763519,-1.116143703,0.10182175,0.77449429,2652,137,train\n2250A,131.1516,46.6462,20170601,32.94225352,1117,9232,2453851.48,2476426.225,150,1.573465586,63.75320435,274.4778748,98711.86719,0.000997678,287.9507446,-7.57669e-06,66.90652466,1.411214471,0.695893347,0.370402187,2380,911,train\n1618A,118.3418,35.0573,20170601,39.93871866,2971,7183,1938178.593,837382.3357,69,0.693356812,241.8581238,286.4443359,100889.4766,0.00117236,208.6896057,-1.25053e-05,63.09588242,-0.611379445,0.327045649,0.750219464,1984,464,train\n1702A,113.0425,23.6936,20170601,32.96374622,4789,6335,1749702.687,-579268.56,13,0.692171037,314.6259155,294.2069092,100369.0625,0.003248555,205.5150757,-1.60127e-05,75.4809494,-0.492657781,-0.486198574,0.563162804,2971,532,train\n1850A,113.2621,29.4758,20170601,48.03179191,3864,6370,1645445.987,91104.79279,49,0.971163571,304.8240356,290.3257446,100698.6719,0.002459551,251.1899109,-3.49791e-05,71.96575928,-0.797273338,-0.554539263,0.799928129,4305,666,train\n1588A,109.8538,40.6821,20170601,44.97777778,2071,5825,1137397.585,1375661.501,1071,0.692964673,341.2880554,281.2381287,88534.15625,0.000416333,179.1918488,-5.82549e-06,39.4914856,-0.222364739,-0.656318486,0.422143996,2344,437,train\n"
  },
  {
    "path": "demo_result/gnnwr/dataset/train_dataset/dataset_info.json",
    "content": "{\"x\": [\"dem\", \"w10\", \"d10\", \"t2m\", \"aod_sat\", \"tp\"], \"y\": [\"PM2_5\"], \"id\": [\"id\"], \"batch_size\": 64, \"shuffle\": true, \"is_need_STNN\": false, \"scale_fn\": \"minmax_scale\", \"x_scale_info\": \"{\\\"max\\\": [4520.0, 3.203410864, 359.6052246, 297.1684875, 1.069990754, 0.00383414], \\\"min\\\": [-5.0, 0.055798065, 0.03956585, 271.5436096, 0.056254357, 3.88167e-05]}\", \"y_scale_info\": \"{}\", \"distance_scale_info\": \"{\\\"min\\\": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], \\\"max\\\": [2802830.8703533784, 2912105.301448387, 3470525.8040405307, 3007624.3752700957, 2858485.0676262937, 3182410.3066277066, 3797154.9135448313, 2833374.9790403727, 3458480.15710189, 3585467.2679693587, 4013366.550446068, 4249152.034624045, 3405646.0581350112, 3227780.0516290264, 3582617.828784893, 2625263.4332448505, 3119345.22802463, 3641661.0779158976, 2705468.573142952, 4255209.830422676, 2875202.8045803923, 2411395.952106972, 3493792.1176865706, 2752875.859868447, 3365147.3721844326, 3929059.2804159024, 3360333.451190208, 3564994.6863664053, 3280386.507935274, 4066196.502326962, 3833686.98063374, 3408915.169600785, 3424516.966809017, 3443216.2614678317, 3630498.7558013164, 3087363.2393477196, 3105601.125208271, 3344764.437702077, 3716586.209449652, 3428370.693325546, 3521364.4053337043, 2645357.8975991043, 3359991.596479524, 3212187.348723729, 3371448.5950262765, 3743542.6569786244, 2806247.556936265, 3081189.606151179, 3638732.7617823137, 3209034.250492124, 4121368.6690986245, 4019217.4936699606, 4152716.840322373, 3813742.6461805007, 3518723.3644682285, 3477750.1062015747, 3250787.5087903435, 3559302.54407372, 3335505.361546866, 3044570.846127091, 3716603.508813846, 3883819.4329719464, 3974775.889806952, 2916306.011806144, 2862968.638187937, 3532990.314817391, 3685748.7283350946, 3620420.181880089, 3529523.643725004, 3850084.184418817, 3761651.318123231, 3903403.5045404625, 3004090.004129706, 3653142.5164306527, 2780912.539940805, 2647983.1926995195, 3838446.6127767577, 3161153.8922581594, 3080305.7229244774, 3604410.554828908, 3203566.2856156547, 2888867.2980796117, 4017668.0934505584, 3413701.0577898896, 2846921.927385874, 3586684.3414489557, 3949264.2610251033, 3737636.7986006048, 2433498.5727093504, 3563112.7283243034, 3751196.98206894, 3509078.3124862094, 3093582.7337773684, 3974297.7250368055, 3305755.9614527784, 3873305.7445045956, 2727236.0749947787, 3860121.294572469, 3521806.222472924, 3039473.900092038, 2913277.986403355, 3395160.688137844, 3760284.709474356, 3122491.62112245, 2942436.501549763, 4110718.7615965293, 3093676.5930638644, 3755984.319487034, 3145668.7552837953, 3675844.9432712942, 3763538.408405018, 3945614.9535285337, 2903347.642144009, 3491816.9502868596, 3088727.8957508667, 3702956.1892402815, 3404491.1955082053, 3335206.1162938667, 2888696.427119469, 3604841.8737348397, 3572544.3210954755, 2845365.946513858, 3143227.955241447, 3329597.406456703, 3093548.597614966, 3531020.8264887966, 3665678.4781472697, 3088231.996236204, 3843197.814298036, 3605216.856599602, 3001931.0447889464, 3837517.308436414, 3835039.699456454, 3617617.1941224732, 3092453.0162835186, 4224748.005694116, 4002947.0971980277, 3799397.923094611, 2452825.187701269, 3820409.4089444587, 3445941.9113097843, 2477373.6621270874, 3418846.3921653302, 3913652.3539333153, 3810589.9968222994, 3440681.071947711, 4024079.955985862, 4057191.5962913833, 3792038.7229738245, 3204457.3952838383, 2664860.517233647, 3997375.45494083, 3410856.0670244643, 2658868.3815014367, 3718402.0184262185, 3584725.9165025423, 3366526.1611724533, 3217348.1327599697, 3750754.2921714, 3500296.9914614055, 2580806.7795926845, 3896753.8195920736, 3114985.3581470717, 3520943.8621506603, 2805222.104968497, 3343628.0575819304, 3625509.3089894475, 3537843.140474286, 3095868.2666962077, 3699310.37948368, 3450005.629532284, 2968229.0514211343, 3845682.62160461, 3819638.07431032, 3005599.633667839, 3993089.2457098495, 2875156.3503607204, 3603534.42135801, 4025353.329193525, 3355441.6661016964, 2384870.028528979, 3869834.213578755, 2566403.4658084884, 3662010.3948272, 3558272.3484845445, 3330747.7696133624, 2754593.3266026094, 3431529.511543076, 2900321.582849287, 4281690.80074013, 3782155.3165435838, 3136999.5913996836, 3041925.630421179, 2898267.0387898763, 3218990.3337865947, 3676865.492406529, 3928437.0402806452, 3565691.667252762, 3419935.5240517235, 2475045.729482483, 3812466.8300474803, 2389420.918773496, 3352838.4547461197, 3029161.3730821903, 3854542.831782675, 3530977.743290467, 2588808.257801276, 3757953.282882135, 3950037.1547858454, 3544308.6045406437, 2893758.4898163825, 3587488.4473026115, 3007973.034578178, 3780122.3137837243, 4015909.8912915704, 3652199.5964419018, 3847875.910504767, 2520060.8945551994, 3289551.540106659, 2536782.1423839866, 3472134.5508702327, 3814335.454807663, 3105065.489794537, 3115496.772972792, 2899358.5696000564, 3409259.9081891, 3359247.8273755712, 2893049.688404716, 2639240.6486604395, 3771911.083591714, 3894688.0125947855, 3693004.4704485745, 3095955.6650141086, 3431522.1285318714, 3883784.5973975793, 3225461.5923437127, 2345777.8476934335, 3354790.757049911, 3884953.0154975774, 2835192.211969393, 2375877.999149756, 3804212.443409909, 3287967.0118430015, 2759791.5698832786, 4282743.53288729, 3425750.0592730865, 3414643.174529728, 3142035.003311354, 3358739.547705901, 2510185.189882538, 2656118.402040622, 2702947.3650199687, 3914872.9882135964, 3835448.018345608, 2510983.721540914, 3076244.3998004687, 3477113.225436451, 3394670.0096244286, 2525367.1657713023, 3429818.948791365, 3833334.6990163825, 3983278.4189497638, 3535518.425150834, 3825883.2853610683, 3219670.4905957095, 2807249.9564401438, 2859009.520874503, 3791296.434267081, 3090815.4634621837, 4258257.805892147, 3841289.4748636372, 2894208.8162717773, 3633731.389365244, 3468119.137788053, 3527961.2786504305, 4224409.166230842, 2657621.1061800793, 2901024.528022401, 3079556.2213941943, 3915327.972788231, 3045525.5757816643, 3530304.9894376164, 3229509.5234942636, 3620689.8714855025, 3684705.5999377896, 3556518.608309885, 3614239.0617040815, 3717586.9857761734, 3493840.858542834, 4053239.755163761, 3678707.3252070984, 3812823.159159023, 3850941.502131334, 3437729.367604982, 3695425.680688242, 2444495.9184077736, 3617149.3086220836, 3478001.6877274695, 3902895.6144328825, 3074712.783586829, 2755819.810632823, 3561204.9074928146, 3148772.382843564, 3679462.7026948705, 3289018.717409576, 3270616.238786338, 3819897.9100520425, 3626640.991377549, 4034400.817603745, 2745348.962327886, 3679130.72030735, 3214272.254402372, 3531872.0278793215, 3404444.7214161283, 3916682.157179668, 3512498.0817790134, 3037803.3467853875, 2393475.7470403267, 4246776.757178956, 3892124.331142944, 3281598.4676314876, 3223366.978754596, 3165626.1982906344, 3617452.795127982, 2812174.920449176, 4238651.512109648, 3580800.7396497442, 3550285.953229131, 2878213.6688500317, 3357966.2036839183, 3890690.118903733, 3042218.9383126455, 3224256.9038218544, 3636141.775148743, 3605857.661993581, 2516661.8495331714, 3633898.7349663824, 3229623.0142963305, 3365288.2812983356, 3423819.922899313, 3039201.9128866317, 3583186.151640493, 3742826.314585211, 2810203.9599358835, 3123404.5525891352, 3000866.6536547695, 2751151.5296879187, 3283455.200524634, 3262481.3312548124, 3957241.950024288, 3883341.3904720354, 3534834.1502754986, 3229428.8032615627, 3233716.5047338963, 2759248.149931936, 2760102.199403256, 3045450.7160451687, 3442322.2330695596, 3853024.538205542, 3358130.6092355745, 3362517.9528330867, 3345058.3160918425, 3153056.550554473, 3806268.3872430283, 3351900.6393303373, 3540150.7830024986, 3220441.721254111, 3846372.8877418255, 3667487.65045352, 3711112.0351153663, 3042940.0390822687, 2405519.6427307716, 3945053.8401824567, 3121107.0693898485, 3225742.0198272453, 3096353.742233438, 3285352.669716354, 3718832.1238597007, 3577337.583161154, 2608755.6597229363, 3684355.845966043, 3562216.550509879, 4045077.029715196, 2376052.846351178, 3730250.6469273036, 3222487.10695719, 3008857.692879156, 3660260.039692243, 3640769.1851906967, 3228811.20321537, 2361441.1306671705, 3445264.7848982164, 3529010.749444703, 3524858.3873481406, 3361178.3444499997, 3738065.5246669976, 3166392.4532363717, 3737734.2954730177, 3211712.343089061, 2732073.423666195, 3487767.3302225056, 3621338.2331353356, 4113293.4604073144, 3130244.717199173, 3662265.3844213206, 3464213.8971815296, 4145584.6637800415, 3116024.30974023, 3077984.4712566542, 3720166.095570379, 3439687.707073118, 3648440.301999768, 3726037.36608168, 3617001.9929361, 3974306.384518927, 3483727.5240142164, 3021702.898136579, 3404880.3893519407, 3818949.6679867115, 3953351.3321040864, 3898382.3320541987, 3142966.5404402423, 3883596.348703534, 3091567.2518794453, 3000284.1358645516, 3286231.544666767, 3422151.4653145582, 3410433.4837397616, 3399702.727113014, 3794215.786819345, 3143470.242310551, 3685615.9194135573, 3574580.122325766, 3632011.605238594, 3458227.380887889, 2920229.448073909, 3154225.204931173, 2396791.9232434114, 3378700.0708152405, 3014345.712629164, 3289605.0383060426, 2385889.4436078398, 3554600.409876659, 3608470.362505081, 3470454.646043988, 3528293.0239083017, 3693505.448536373, 3442918.6731635584, 3656106.7031788426, 3676241.9139262014, 3839591.47181586, 3522108.6020079427, 3172969.5173440157, 3747936.834557825, 3353717.379240945, 3621248.282070434, 3630355.1615521144, 3698078.667826143, 3400016.6821315745, 2874935.171840581, 2989605.23458301, 2859740.0684737954, 3554279.5110236346, 3208545.4199587596, 4231117.006547004, 2806675.6837761877, 3754675.0213112505, 3696823.2857639114, 3422274.2137364317, 3224839.7115840646, 3607964.976359576, 3357456.971022872, 3579303.127412053, 2893097.4718988496, 3172963.1738640447, 3426691.294495093, 3216832.0978598506, 3989463.475925323, 3412889.830127723, 3841357.446891219, 2801351.355169277, 2805809.942967039, 2331985.7326377225, 3449248.3556689974, 3175101.6155933817, 3524178.1422851495, 3042661.8390297354, 3799681.1079625753, 4248986.291165477, 3380378.8559258743, 3783978.0106358766, 3813430.450933064, 3222716.086328677, 4056248.29920681, 3723019.4606229165, 4150096.955943654, 3566526.339006636, 2766372.4637071677, 3814214.4615826206, 3995681.6647158163, 2926484.254583837, 2901116.2314100014, 3112841.242444415, 2974092.4396115863, 2564859.9264790006, 3195638.606696054, 3727401.4901189106, 3996525.880700766, 4119828.9584147977, 3234375.3658018946, 4283302.683560363, 2756991.71007552, 3446157.622537568, 3828588.210795252, 3602745.7609161837, 2524234.4570043725, 3386870.012201312, 2978397.11344487, 3933675.223552245, 2602816.5190000585, 2319557.024905248, 3451420.033432768, 3638182.697480728, 2777602.5637578005, 3530731.2207554854, 3467063.4408092774, 2436152.884536813, 4014465.700779228, 3427363.087689097, 3106420.6181152374, 3007282.9755006973, 3166761.3677578964, 3898205.7231181418, 3092356.68590159, 3682510.288033913, 4038951.1007364294, 2649742.2382597486, 3801183.1019689576, 3557373.3226376963, 3786064.2481855457, 2767180.861047499, 2636977.3087006058, 2764315.0206767228, 3333001.588663534, 3856114.155785031, 2375784.4822310307, 3072178.05725409, 3283482.0413610702, 3550184.7766550477, 4142703.3875323227, 3156478.3530704225, 3152598.842850427, 3439413.161653969, 2977227.322027259, 3229566.3587718126, 3525545.31217571, 3085726.1812026915, 3622744.2464509257, 3358791.1903072665, 3793743.0557753784, 3469282.110598838, 3406391.369982796, 3810230.5946390773, 3552022.1977855484, 3617850.975630064, 2612739.9272851697, 3831029.864998789, 3680354.237463663, 3569876.8208789127, 3738173.2198408847, 3520977.1477433383, 2903468.6279020864, 3600355.402404968, 3336060.6945636324, 3443227.167726708, 2495759.143047478, 3477813.971401042, 3335401.337379921, 4028853.3949258425, 3398211.3005182855, 2891673.899779668, 3416108.0858185, 3714455.4065317013, 3646688.886485773, 3628884.2936042454, 2945117.3297240664, 4052990.307015594, 2746153.9898199113, 2903786.4108151775, 2721135.695806392, 2893711.6459517977, 3618183.403211587, 3074264.156332146, 3235902.039557406, 2922422.062687029, 4209815.826042991, 3672696.5548046106, 2924112.4129295256, 3448007.731195238, 3461689.202653187, 3708992.6960955756, 3935287.4307872076, 3849827.7087918837, 3379945.8095943383, 3665452.20093809, 3634489.717734572, 3970193.9709107503, 3668117.5329869953, 3381076.8613979174, 3696581.447681013, 3353245.0576617615, 3018218.8991987277, 3722596.9725327864, 3325813.3954110807, 3846785.244214662, 3026671.5621947236, 3176021.6927854638, 3220046.509462515, 3882947.3975199834, 3075652.655086303, 3215787.596196646, 3044563.203620683, 2845211.9091240163, 2929616.2444524607, 2986299.491411805, 3200214.8844396467, 3546773.703825089, 2557408.3079331545, 3684441.014841949, 3005399.12701216, 3416425.365959653, 3615548.0872951187, 3002901.6491808915, 2836276.509711126, 3553190.149805584, 4015755.090790001, 3474328.694776661, 3688420.085696453, 3286355.93071715, 3816113.8558487026, 3481288.1786371926, 3656370.1589568844, 3236663.7248273348, 3158288.714812942, 3291266.233517963, 3908975.9578953106, 3046303.620207925, 2812613.294820149, 3281054.2351195076, 3616312.77981149, 4032490.6673034537, 3215120.743077719, 4250538.774394757, 3775800.555131238, 4234894.625667654, 3511400.5032587256, 3787650.332634187, 3429688.2562139416, 4035700.4852723097, 4228341.56030305, 3837848.099496048, 3428077.2634330494, 2697991.51780867, 3439487.172329452, 3450923.012573421, 3299232.058336237, 3935782.9183881455, 2888981.817937336, 3548600.344319051, 3090394.220906782, 3759506.441415239, 3661674.4455540865, 3111761.506316808, 3411080.3857172523, 3680285.3714504302, 3921095.9657078586, 3419167.727883034, 2922003.0264393557, 3738013.08258497, 3667222.326762625, 2636291.7709541875, 3666655.390783085, 3041233.701188188, 3180223.1746299686, 2615507.1125789713, 3464448.9976284397, 3398783.9832461523, 3827532.279347273, 3943166.6957599344, 3614805.855470717, 3814399.996601104, 4020889.7324102116, 2665099.029980667, 3377978.7090698653, 2580867.186442832, 3117996.3029945814, 3369016.540369037, 3732757.367943981, 3572311.2032094547, 2801595.679172265, 2875627.2247319473, 3942516.5434174743, 3207756.575779542, 3569849.1649276875, 3807051.117500694, 2621013.017404557, 2365163.532845314, 3681888.687569694, 3580247.643831329, 3228649.8177477233, 3774093.1233955584, 3830428.9023401686, 3289069.390425699, 3458328.61464453, 3547504.406478115, 3094956.4208046696, 3664254.4632720235, 3734923.392267728, 3789570.7601049542, 3662056.4586659544, 2796087.969855879, 3070217.0178187634, 3197510.7135448544, 3170404.740640423, 2696570.8679443374, 3735032.948649671, 3512558.7069775076, 3847065.018140118, 3670858.346540568, 3169672.3886493035, 3978501.8224020256, 2844194.0389750637, 3950637.3635769244, 3687362.180653163, 3031925.7740163514, 2690761.701073395, 3545162.0025290274, 3819853.093689141, 2862317.225214374, 3007145.4362556664, 3616887.327997864, 3883443.319769939, 2593721.2640561345, 2809074.07286023, 3564953.598876766, 3149987.7263645, 3180147.4000321543, 3226893.0897920146, 3825618.8643756486, 3266571.1426956896, 3297243.648848199, 3145530.275714979, 3816145.5348663097, 3700379.936718554, 3332549.0180449355, 2979682.0219254023, 3678793.1579254125, 3804702.896603726, 3528791.6264198762, 3203854.7782501066, 3558565.6893982515, 3645535.8777669887, 3864022.5902171526, 3580375.5143358153, 3092032.668731167, 2658198.0403929064, 3727686.789474894, 3424396.5916146706, 3627374.525836921, 3381873.259728357, 3563153.4788991516, 4055222.655127758, 3946642.742438696, 3907541.5807020636, 3737762.962142973, 2755529.410079069, 2892503.4834966976, 3607541.9880988942, 3554851.462623276, 3866572.06857221, 2432510.321469471, 4010654.093670071, 2797226.5088491696, 2914127.977762151, 3447949.2247260073, 3681760.064498012, 3002204.071928443, 3261615.547413575, 3881586.2139031272, 3689334.270159305, 2764917.7668997343, 2900954.1247071223, 3795217.763311702, 3529620.3180897385, 3280756.736613416, 3727319.249644557, 3601747.012412989, 3139777.1922382736, 3595515.9075710736, 3583360.0940960012, 3488281.1350517836, 3774254.4531134325, 3383954.389560141, 3429502.3162910384, 3083449.589112423, 3634082.875915706, 2660423.7965397076, 2943981.103523418, 3710355.6687712166, 3096974.279540259, 3909933.674548659, 2869765.150717591, 3956246.062891852, 3445494.4430931765, 3569038.357179148, 3163305.546695308, 4231287.543265588, 3644592.7439606218, 2945387.479056771, 3525191.866584024, 3554788.1337609477, 3778685.6135561187, 2404997.824670147, 3824970.9328791196, 3543716.454993166, 3626409.139562407, 2724678.851009358, 3423275.775112243, 3890284.6246502833, 2912369.4861146878, 3571041.0333439494, 3768541.088281539, 3130773.3247693935, 3041794.321322533, 3683535.0216716435, 3810507.8067872417, 3445137.858385384, 2494671.3711482314, 2912636.9607166895, 3414233.6712127067, 3222115.6626848564, 3202663.293433961, 3772759.8719824688, 3198494.7712708013, 3216756.1818610867, 3302179.3547622385, 3049778.8165678917, 3878102.834358261, 3604625.680241574, 2913105.3367278017, 3917219.0882727443, 2459072.673961398, 3871345.1300365548, 3852626.451283605, 3413010.4272459433, 3124837.3062410234, 3318095.8809274537, 3156634.8478891985, 3415688.270895165, 2887399.5100899627, 3559033.0731023396, 3886132.5166159063, 3573138.211768854, 3582173.977092844, 3678310.7264331337, 3510522.7028531353, 3687462.840977819, 3656811.541055868, 3581784.6838348815, 3087603.5898206537, 3268061.2283780375, 2835563.9060651236, 3806435.729467123, 3406553.4216437037, 3474680.212250636, 3927811.922486499, 3547217.7828569436, 3008933.900157935, 3004023.477393684, 3384741.255671773, 2881216.376176749, 3218666.6686768085, 3670727.401591539, 3213570.2104765815, 2727087.065907402, 3911640.8578461055, 3820266.298418647, 3547731.2244613855, 2975618.3281468465, 4252433.591926029, 3612689.0197852645, 3635642.602985675, 3654245.8597819167, 3869883.340493035, 2894265.591159623, 2577130.568375668, 3629759.7254546448, 2517060.0605687485, 2797948.327413146, 3268884.2279184354, 2909509.6461417545, 3817503.9342653207, 2988925.2741544396, 2724479.435690772, 3869682.2542724377, 3253532.981327391, 3603541.421669642, 2922168.736061371, 3119238.179356365, 3836131.9520962643, 2877352.7944964347, 2378178.2777929683, 3210022.2202544142, 3504917.3872783817, 3851536.2282531257, 3546784.5045575993, 3219584.329905437, 3400496.159208219, 3596339.276727654, 3418083.975559789, 3692431.6087375605, 3322930.7376203714, 3168246.869172043, 4031935.9469790882, 3015785.367941349, 3134904.114733368, 3438859.072841916, 3634486.715242421, 2752826.901840603, 3666456.0631165737, 3270343.4790233024, 3466835.9018464056, 3214116.765895913, 3835075.57377799, 3258229.970663781, 3850641.23843619, 3492570.500267085, 3091802.420844796, 3753445.467068428, 3090716.4345904016, 4146877.1697772057, 3630403.325897369, 3211047.6308591007, 3699626.919774608, 2468076.48307922, 3146707.484423625, 3694933.224678292, 3513644.4747125707, 3544786.2655259385, 3424047.2887811163, 3476620.082240369, 3764827.2468237113, 4002691.6874995935, 3639376.961320511, 3137056.5101596084, 3598939.9174407446, 3355991.209454524, 3716707.7716168193, 3623149.1743984804, 3413703.8350363197, 2698605.2522190544, 3602273.3259504195, 3852292.1498042666, 3528358.9955150206, 2878612.299907571, 3911554.349061958, 2993751.021268044, 2759940.1631458653, 3567944.854604162, 3787248.6807104736, 2799667.853748834, 3096371.1814904897, 3574207.401029672, 3626742.4672606187, 3006622.8583016577, 3826662.454223103, 3899592.800974261, 2739582.2204775847, 3970200.3695156104, 3870309.400024921, 3088625.9743315675, 3142281.6705262107, 4283302.683560363, 3637655.458389634, 3718494.1538319085, 3451009.2660839316, 3448434.403583216, 4121013.970793598, 3694615.2768477486, 3554219.673713966, 2464083.628461788, 3747188.7347562346, 3047626.9376986297, 2723091.1814664896, 3120816.886065162, 3449089.1155784717, 2898292.130166793, 3630404.8989553843, 3791924.049336614, 3284387.6498830677, 3532284.2293951674, 3819365.444956729, 2975388.9888806976, 3551276.249679825, 3796073.689863204, 3463148.4202897386, 2870399.925285959, 3777980.204755108, 4034006.986236526, 3813254.2573706945, 2602430.3251277646, 3631411.7221004833, 4282276.565476684, 3451840.9654604015, 3732950.1088573243, 3349227.6107208016, 2623979.8625423103]}\", \"simple_distance\": true}"
  },
  {
    "path": "demo_result/gnnwr/dataset/train_dataset/scaledDataframe.csv",
    "content": "dem,w10,d10,t2m,aod_sat,tp,PM2_5\n0.06740331491712707,0.2644011753578022,0.8577575289561076,0.7548804555108719,0.8088826313114973,0.3581324119559644,47.425559997558594\n0.04574585635359116,0.19988007252764703,0.8660002687178723,0.7873441677422334,0.8897655880048392,0.3657272895151326,41.605262756347656\n0.015248618784530387,0.2681606497555625,0.6900860385204003,0.6608989673042003,0.7240101227248692,0.4978132542127084,44.060054779052734\n0.033591160220994475,0.13181984941989186,0.5897177514507372,0.6309540837668235,0.723771700946506,0.2591057970286405,59.93661880493164\n0.11314917127071823,0.15507218465174089,0.4914056934653663,0.7334852983064106,0.7002414999180796,0.2601824013276217,42.56741714477539\n0.015027624309392265,0.17407005588208888,0.6404307414553845,0.6496624903643677,0.8056203393384512,0.39284327683108383,55.81894302368164\n0.0026519337016574587,0.3368416384363021,0.7293538437305298,0.6548180503720556,0.6298526292918791,0.5403769902866646,34.07799530029297\n0.062099447513812155,0.1826398646049221,0.831797371537388,0.6930208810319336,0.5616217844440419,0.43633865489976814,42.675559997558594\n0.0064088397790055245,0.2752794522087029,0.1686118569677829,0.4447501191648351,0.5575352175238014,0.14683605049436926,32.586158752441406\n0.0026519337016574587,0.31029491773963624,0.710218572646917,0.6206405818803423,0.6823073020353287,0.4487847698935718,45.502769470214844\n0.0059668508287292815,0.15748292860183263,0.9119446439084299,0.7367829988518686,0.4832926160420505,0.7234183091702593,34.102779388427734\n0.041988950276243095,0.3727856532975374,0.1982171699460357,0.11795144882304884,0.314487145307106,0.2386506374182882,28.55477523803711\n0.011712707182320443,0.24405811479785985,0.7783502681996255,0.7208732908031964,0.7332073824680702,0.6666294645091686,36.90972137451172\n0.02033149171270718,0.22540751931276337,0.7632325243302573,0.657008180853492,0.7379848727711825,0.47431120229394697,48.91365051269531\n0.012375690607734807,0.23625191883620592,0.8525842375302252,0.7858376342680534,0.6051302017776647,0.7765389265851275,48.87916564941406\n0.6355801104972376,0.18470297301701685,0.819663608439289,0.2664361025995601,0.09456014999077388,0.19900261902427313,22.37640380859375\n0.013701657458563535,0.18792722730115108,0.4096923361864382,0.48813471041456064,0.7197633928146753,0.2653271521540049,48.238765716552734\n0.0037569060773480663,0.07739529795519108,0.8459913527719505,0.9142431146258495,0.44659700548005277,0.7409427364904435,31.757062911987305\n0.08596685082872928,0.26251483880251114,0.908745169446443,0.6983693725991608,0.6309942315726927,0.5068330320854146,21.37042236328125\n0.06607734806629834,0.36387862408986643,0.2057412437660312,0.11986290038515071,0.30466978315070964,0.23518741558054573,29.782670974731445\n0.1005524861878453,0.1252360777157746,0.22730162516799737,0.5528251387022941,0.4962607028904955,0.22121206483564204,72.86685180664062\n0.2428729281767956,0.06727893905227374,0.30423219376660904,0.5157024865887253,0.29687183287810426,0.06767784445415165,42.434539794921875\n0.013922651933701657,0.35923112438682403,0.6162205472749723,0.5493547525016929,0.6135519292750926,0.1886274926841765,36.77761459350586\n0.0861878453038674,0.29945294208311074,0.9174765256625054,0.6464850743097336,0.5528528019471041,0.23484304575620138,67.9142837524414\n0.009502762430939227,0.33825206387159423,0.8377002351434236,0.7256572789184382,0.7359751917885801,0.6560182606458631,44.58333206176758\n0.07580110497237569,0.10894683042410439,0.7235992540424476,0.7626739377678157,0.3868966625538041,0.656953307383666,24.623249053955078\n0.0075138121546961326,0.26438824175542436,0.7078576903121991,0.6520455524053433,0.7729188080376643,0.5629705585982798,54.971988677978516\n0.0072928176795580115,0.20959265875603877,0.5265861630482478,0.5620572711069133,0.5861901050578641,0.21863942869888167,42.192195892333984\n0.0077348066298342545,0.19792914370630804,0.5372945189825978,0.4895769333688942,0.7420913130727022,0.18393196856683716,47.58448791503906\n0.0022099447513812156,0.513719918146814,0.8961413771796971,0.8578404068494352,0.3246153671286579,0.5768352858666094,26.913742065429688\n0.05458563535911602,0.3943201580659826,0.12394984534940526,0.23470719760422157,0.4069838590726125,0.2919952163787563,22.370738983154297\n0.015469613259668509,0.23333042067918228,0.7665095731259646,0.7136133476738673,0.715039701753783,0.6925321363560039,41.71910095214844\n0.02165745856353591,0.1351366272490012,0.9506628935268314,0.8631674615767134,0.5073391722018172,0.9229314683167475,34.858543395996094\n0.2808839779005525,0.06524383766494735,0.6434811357016386,0.8322876936304582,0.24049869379748193,0.5717447962158978,25.536211013793945\n0.00287292817679558,0.342038181868982,0.7359550460869496,0.6514298387245915,0.7171993150507692,0.6129007170384128,46.435211181640625\n0.02165745856353591,0.2304780216657555,0.6299171276531146,0.6531959961492626,0.7569844132438625,0.23132476523540038,59.82294464111328\n0.02298342541436464,0.17382320018575328,0.5696598210871748,0.6485168103626593,0.7735369407518276,0.2684457127704732,62.793785095214844\n0.009060773480662983,0.3117930947319105,0.8673222575822357,0.7433390990695452,0.7440723599231066,0.6299208743031751,52.863765716552734\n0.01966850828729282,0.25598369152153877,0.7193370791072522,0.8758354430509052,0.48550285354401096,0.8178120809935197,34.665279388427734\n0.014364640883977901,0.2738525520529588,0.986011667161975,0.763010972529233,0.7107904435731895,0.6940835336104519,42.59331512451172\n0.026077348066298342,0.12407186413716823,0.8156150599789013,0.87979054002146,0.4823168800588355,0.8519728191384693,38.18571472167969\n0.32486187845303865,0.414121143513674,0.17933681627087922,0.34994093074902904,0.33479059714054316,0.2034715436869635,28.7591552734375\n0.029392265193370164,0.23115520842217294,0.9390596743675574,0.7344356648774744,0.7121320732004869,0.6185068258881292,35.395774841308594\n0.24265193370165747,0.38294260250308554,0.6564817113492845,0.6250982536541413,0.533172509970136,0.5390171174985217,35.316009521484375\n0.007955801104972376,0.31492234479477166,0.8386049012518757,0.7208339899299568,0.7363429081392294,0.6699037231062526,57.25492858886719\n0.03712707182320442,0.381060810698264,0.06747048946542454,0.2775665862752013,0.4259919251082671,0.28550408904308566,44.17746353149414\n0.06408839779005525,0.266960797758691,0.8592164186960628,0.7550281315194081,0.8127264254764082,0.3578965951563243,49.45391082763672\n0.19314917127071823,0.36492664354813564,0.7520327086810192,0.6509558463746123,0.6480086682029318,0.4916904832697117,30.927576065063477\n0.0066298342541436465,0.34114082088877706,0.7342650459413921,0.6474413955585608,0.7134898719989433,0.6264911017656417,37.0818977355957\n0.24331491712707182,0.3799100798793838,0.6556261445319234,0.622511541633652,0.5360637929613149,0.5371195406914281,26.475645065307617\n0.2861878453038674,0.04706275751038697,0.17978263528778246,0.6515608416353897,0.1921106851945006,0.06265877005627074,133.80056762695312\n0.004198895027624309,0.17956571964150378,0.6921509246966393,0.8723805390124892,0.3755159473357806,0.550753174857717,27.33613395690918\n0.055911602209944754,0.22570389385275635,0.16653730582737283,0.042154355570728406,0.254121955461291,0.2764856301249039,18.822484970092773\n0.22497237569060774,0.423762149922171,0.965235749844247,0.13753281118073055,0.08058409171152128,0.19918837689870345,9.540785789489746\n0.008397790055248619,0.3091280909295099,0.7174106215287134,0.6656245995773593,0.7197641571754937,0.5746810343743717,52.0210075378418\n0.010828729281767955,0.2123176911375575,0.14578210824073842,0.416214112386316,0.5360202831916506,0.16437711811291517,33.10894012451172\n0.01701657458563536,0.3295115240227897,0.8888957307139354,0.7348524923209234,0.7571866160788294,0.517961511509221,34.88328552246094\n0.0070718232044198895,0.046463986636028916,0.31500409869699103,0.5018757248217454,0.5770134830567607,0.10278552293264569,28.5\n0.0037569060773480663,0.23573421494834776,0.6237167401664917,0.563354199923816,0.7243753108051192,0.20139187447208343,54.07542037963867\n0.08508287292817679,0.2604644367552707,0.3197371515353379,0.7678664167776376,0.8300981125937829,0.25971628893332793,52.011329650878906\n0.025193370165745858,0.13142351877426006,0.4746899098340139,0.8066849611182674,0.47475264780571064,0.5205791761399814,47.77146911621094\n0.11160220994475138,0.18802179598383748,0.10334383407031675,0.14830958699721647,0.3986858992307838,0.33710732596089404,32.37709426879883\n0.001988950276243094,0.12206270570043862,0.7075333888579918,0.7184330638556906,0.5259153155780746,0.829093068368394,36.98472213745117\n0.1827624309392265,0.14607331361166526,0.6824931323320819,0.46328226730057803,0.4504713740777007,0.1995266887342433,59.8305549621582\n0.10917127071823204,0.16303002378739417,0.46651091003354456,0.7421457816457283,0.710443894137512,0.25916720509743335,63.726627349853516\n0.00574585635359116,0.1788094352904566,0.5211093641635208,0.540459654858491,0.6114930352151806,0.22569548266142164,33.08732223510742\n0.289060773480663,0.36407473007262586,0.5608665921257272,0.6981347582952766,0.3000280844868401,0.7439588480810536,30.92655372619629\n0.020994475138121547,0.3078872983054923,0.5421651516841403,0.3743467730307449,0.5125621672681004,0.2593550487604141,28.875\n0.00574585635359116,0.33489080429726453,0.7204170937643545,0.6852559812282549,0.7275409993301133,0.5865527293360656,51.980224609375\n0.003977900552486188,0.245664949199276,0.7021103148674059,0.924600681127781,0.4619146786873562,0.7571813978627462,29.469274520874023\n0.8134806629834254,0.09756199379222597,0.5377943811690814,0.2818682454915951,0.03202522641675179,0.22773167238703407,13.734375\n0.2318232044198895,0.07189619722823362,0.7512703753489883,0.8016330125036654,0.3699475493750475,0.6336404487557709,19.220504760742188\n0.1580110497237569,0.13072833291233735,0.7177574993207431,0.4940465144982203,0.6115731755071434,0.2568517037462326,59.66573715209961\n0.010828729281767955,0.13274312494600313,0.1477849307063286,0.497539528474323,0.5149969504597204,0.23480036377432065,19.377119064331055\n0.08508287292817679,0.27806049863975835,0.6794682001209658,0.6192436144770118,0.5452966836780517,0.288993643961277,70.88996887207031\n0.31845303867403313,0.39584503546726524,0.18822446694596348,0.34675875095218406,0.3356415659193964,0.2089003298365344,24.923398971557617\n0.014143646408839779,0.22922153071615778,0.8594496509379266,0.7025185920648074,0.6162191369525003,0.6765353037621042,34.76264190673828\n0.013038674033149171,0.22834384471819377,0.5829845708788524,0.6341326907570104,0.797865663647566,0.1969269066729666,62.33002853393555\n0.0676243093922652,0.1585978884472257,0.36667936266458995,0.7847348279462426,0.9340495375842353,0.3085930321354224,47.415042877197266\n0.01878453038674033,0.2378207666982811,0.751396921663624,0.8944771572574975,0.4757153308580263,0.8359504663081883,38.760562896728516\n0.25524861878453037,0.37545175541463477,0.6545493550659386,0.6193436530634395,0.5328361912100281,0.5346451820034251,30.36070442199707\n0.09259668508287293,0.21590467331853955,0.8650404348666213,0.7889400213828668,0.8691695917673956,0.3848450139009392,36.107242584228516\n0.0030939226519337017,0.21667061526433445,0.9049138970192325,0.7438166642261825,0.476901854036169,0.6985250362883767,32.07605743408203\n0.0059668508287292815,0.2592521056310684,0.5583993633575831,0.5675141378094372,0.6788991347399352,0.20460346739257204,52.0433349609375\n0.2430939226519337,0.3803787951444727,0.18700685120730312,0.3156062587643578,0.36698447526392247,0.253071549405592,46.64706039428711\n0.013038674033149171,0.24687580327957573,0.8573645648804782,0.7865057491131245,0.5978961733981003,0.7624800369414438,41.76601791381836\n0.02696132596685083,0.36273005202745934,0.1437598921917182,0.17349787393706373,0.35125822180067684,0.1768724945245417,27.961219787597656\n0.0066298342541436465,0.45869556377066933,0.715277921465557,0.9412213777014221,0.4031770188134232,0.8028834788710386,25.797412872314453\n0.3407734806629834,0.3749878500104595,0.692185213570625,0.441981194004781,0.2586135160213257,0.17680294267839397,48.85734558105469\n0.0070718232044198895,0.16183303119602646,0.5316309985068591,0.5321624068627503,0.5846288686877341,0.25131884288266865,28.073034286499023\n0.06806629834254144,0.39714335705764275,0.3006658538150092,0.5492618595285814,0.1542046210810448,0.018526037886972314,28.315340042114258\n0.015027624309392265,0.20778002290419492,0.6310182757993814,0.5232804095106284,0.5946602812717829,0.2230925412439583,34.6005744934082\n0.01701657458563536,0.15649279790266882,0.8309699402688544,0.6415010090216361,0.741663153420411,0.21471828425424183,61.12534713745117\n0.001988950276243094,0.17715658529053663,0.711049780783996,0.7252130599572769,0.5093093416098057,0.8044042641111733,33.82777786254883\n0.009723756906077349,0.26082617995618346,0.6711391864968085,0.6400016211607724,0.7718310637960568,0.4345266874433244,51.48280715942383\n0.14232044198895027,0.13909847559787672,0.9802197331556903,0.5511887932528685,0.1626071513625329,0.0935755088747979,48.26760482788086\n0.08685082872928176,0.11811469043580465,0.44238966322921436,0.5858378722234555,0.5564938641041738,0.29223762795101904,64.5859146118164\n0.002430939226519337,0.36569815281325574,0.7638171326570252,0.6942022891002233,0.6353199258351288,0.557532294380149,40.42222213745117\n0.00861878453038674,0.30790119766734486,0.7119101429513081,0.6765502423379341,0.729192959449692,0.575528907420112,48.77949523925781\n0.01723756906077348,0.23162151875680503,0.12710785913084252,0.5566956792486063,0.7441222197672624,0.2594188186780067,64.8053207397461\n0.11093922651933702,0.281676548287285,0.4581909354318613,0.7487364189944336,0.7562309298678516,0.2780359538117157,55.305320739746094\n0.009502762430939227,0.3257038942065129,0.6655359261708963,0.624798137894858,0.7475718389378092,0.41184640554006224,63.42997360229492\n0.07933701657458564,0.588463982683087,0.3736075824256317,0.5399475525708252,0.1814157192245781,0.06088843401909232,21.962963104248047\n0.024088397790055248,0.08061658868328997,0.9605542151903294,0.701443177260709,0.7074551845404767,0.5594001180270382,54.33893585205078\n0.08441988950276243,0.2365646923508097,0.8297572684086832,0.7703614267605681,0.8761021679995696,0.24375532883515916,33.443214416503906\n0.0492817679558011,0.3427521242948216,0.24240373110411828,0.19929711081545193,0.34665315365910576,0.19980676719385748,16.467514038085938\n0.028729281767955802,0.19047357524337688,0.5755606052936744,0.6426931355099003,0.7790903748796153,0.2589877659353763,64.34519958496094\n0.7865193370165746,0.19297502483825596,0.6045281685559901,0.29466246613437425,0.03163870238019516,0.3747565454563988,7.943314075469971\n0.017458563535911603,0.19994017685260632,0.6286882025271805,0.639388289351126,0.791629596511937,0.3168658523201948,58.689945220947266\n0.009502762430939227,0.3108708133699644,0.725748928795696,0.6460777743507062,0.7149202850751503,0.6488280567388348,49.86907958984375\n0.8097237569060773,0.0683468701985375,0.006242629796670256,0.2835986748496848,0.03575356534996394,0.2626723114096697,15.42241382598877\n0.12287292817679558,0.15294232521712517,0.002537770240486919,0.8963362076552801,0.24403545010132932,0.7910114771757343,25.283668518066406\n0.08508287292817679,0.30918978591713353,0.6723721006749143,0.5725589408107228,0.5793249689686697,0.3010382139857664,56.64484786987305\n0.5281767955801105,0.1312197056521628,0.13631337148708042,0.5252287800748643,0.1332328974036049,0.66008033384778,19.283897399902344\n0.014364640883977901,0.14836848834460942,0.10477137367950838,0.6089253488483197,0.7358606552597882,0.18429162906165764,70.51810455322266\n0.0022099447513812156,0.3104509162995022,0.7230468976268546,0.643214765281988,0.6948416435178096,0.6585566039649858,46.44334411621094\n0.009502762430939227,0.3207810204979387,0.6685334442575138,0.6230474626323722,0.7438589856607934,0.42237752125770434,67.94117736816406\n0.0037569060773480663,0.2376427071621777,0.6234105591939576,0.56257413713679,0.7257312281000224,0.20182558046044335,57.56779479980469\n0.12685082872928177,0.21339996665249067,0.8736023836755656,0.7769330091404298,0.8686469453585497,0.3824504979717113,31.791898727416992\n0.0061878453038674034,0.4099372462314423,0.9572557782851061,0.7669327233043118,0.6066957891247612,0.6700167851150289,36.65599060058594\n0.009060773480662983,0.054505165133416855,0.33743884638559507,0.48668891465356895,0.5657443939167205,0.11224769502322518,29.508333206176758\n0.2450828729281768,0.3773351378821207,0.1878925056628522,0.306125220829222,0.35760353373635495,0.25544707852433896,48.934173583984375\n0.0059668508287292815,0.3543977443895786,0.5759870943822353,0.5888473663651573,0.790478586713358,0.19019388921217084,58.14285659790039\n0.12662983425414365,0.35127928810908254,0.2191457958195036,0.30917997052192686,0.38262106332346807,0.1602019829022218,24.722688674926758\n0.029392265193370164,0.21933965253277676,0.8422742351356086,0.6441603681108408,0.7741756524111023,0.35285959984725845,60.096099853515625\n0.00287292817679558,0.12698370469944414,0.6405076792382264,0.588130423162425,0.6172993551798956,0.2064913207442173,42.57464599609375\n0.0077348066298342545,0.3197364853483628,0.7670256037047608,0.9587745768128362,0.4154382482957815,0.7390366938357043,34.31700134277344\n0.01723756906077348,0.15868653001784144,0.880525001788877,0.6386094174996527,0.7321361601795379,0.20924365676660353,57.527931213378906\n0.04994475138121547,0.3958061778507509,0.11520271328073865,0.23271952616674615,0.3962971246807346,0.3103412296742735,26.196022033691406\n0.0059668508287292815,0.39951352017333386,0.9648923518636863,0.7663134368169018,0.6062160645157193,0.6870862037976142,35.572444915771484\n0.16154696132596685,0.11774714320981311,0.6962677114111968,0.4909512729967232,0.5988156994626679,0.25614241294565027,60.03361511230469\n0.004198895027624309,0.2350563843522805,0.8389791931684039,0.7026841321066343,0.6383656097116299,0.6718622172083623,50.10972213745117\n0.004198895027624309,0.18129677722241988,0.8610399247791938,0.700237950481365,0.629669829462303,0.7236195877653735,31.72916603088379\n0.009502762430939227,0.31883760945133466,0.7405054512599067,0.6474854601740112,0.7109342022040398,0.6214464994630391,38.83383560180664\n0.013259668508287293,0.14613023661129587,0.07421192928495733,0.6132329627424771,0.7361224194416063,0.1838740112511608,75.54915618896484\n0.019226519337016575,0.37629518535593487,0.16832106991732598,0.11406423517899865,0.3084120349207418,0.17575849939845836,28.6464786529541\n0.004861878453038674,0.21200669765022093,0.7581293383744548,0.8870731109262905,0.36912462675853186,0.7007867672376823,29.08888816833496\n0.249060773480663,0.27577912858636533,0.9442600404241365,0.5488902876361355,0.19393089288961227,0.0669888364135539,69.53771209716797\n0.32640883977900553,0.24884483535695162,0.026486370687799646,0.42127439754978696,0.17647693408953113,0.0862011651131339,19.799999237060547\n0.00287292817679558,0.16878521173507843,0.710255492597867,0.9164344360428386,0.4721702841791483,0.8751956207783645,37.280113220214844\n0.018342541436464087,0.2673845957399729,0.6975604189351515,0.7336079646683399,0.685147314054687,0.6628592790108644,54.007041931152344\n0.23093922651933702,0.07557454783011314,0.14546939201251893,0.4468235379621057,0.32019345159857915,0.05546122754761475,25.216102600097656\n0.21745856353591161,0.20659562305891982,0.9746264030234819,0.603055227509005,0.17730826467504945,0.025369460276644835,41.54929733276367\n0.04419889502762431,0.32810181817298856,0.07104147093384641,0.18057441299127516,0.4048746641911494,0.33811856532750884,32.438716888427734\n0.0026519337016574587,0.5207281506083232,0.7463624832026942,0.7029151736038604,0.6532398360502736,0.4501506546604778,40.227779388427734\n0.02740331491712707,0.19799345192545162,0.8359241733190997,0.7993583255979865,0.6692120961030806,0.38181841202085504,39.27011489868164\n0.00287292817679558,0.19656624878634288,0.7247462338519627,0.8753090495366067,0.35894528095762435,0.5578334454387944,32.09053039550781\n0.011270718232044199,0.6644588761673311,0.9062182322059004,0.8072304096014092,0.37371349633045087,0.6177972283539365,24.610334396362305\n0.0017679558011049724,0.24198968524042372,0.7378751381567039,0.9264918867854869,0.5092106214702565,0.7152861876925561,35.821529388427734\n0.1949171270718232,0.23562345559211373,0.702304293138432,0.643111153888902,0.5101255025729274,0.7687156245063287,23.113506317138672\n0.2377900552486188,0.11662185352533207,0.5163392216273229,0.4557174446697549,0.34750535717466574,0.18813766978180232,29.62570571899414\n0.04066298342541436,0.26186317839456413,0.16875562198368066,0.13273810464551422,0.3022618407832137,0.2040214403669255,29.897281646728516\n0.011712707182320443,0.23225233012197313,0.9687376284102226,0.7571063140588896,0.7185978013635602,0.6725612017596369,52.33757019042969\n0.1138121546961326,0.020424559508176975,0.4820164831347892,0.624629025046373,0.506343386446365,0.4518777796002976,47.69552993774414\n0.009281767955801105,0.2425317982255952,0.8802785292887415,0.788265951860032,0.5298854644659701,0.6263585928459688,34.53501510620117\n0.014364640883977901,0.23175770977920804,0.8592023297032865,0.7893711400529483,0.594386463707828,0.7588310725659516,42.52089309692383\n0.030276243093922652,0.2349147206928538,0.9409604152906069,0.7377190741962999,0.7086369451627508,0.5938469772837259,31.31779670715332\n0.001988950276243094,0.31951170956472486,0.5304520214065206,0.5386577693672386,0.7867470947917699,0.1954877739199081,50.4901123046875\n0.00287292817679558,0.45403969415217893,0.7174759740855675,0.6953396325530627,0.6802534057192297,0.5209533297978911,47.49582290649414\n0.0055248618784530384,0.30321165902245945,0.6904194214338069,0.6185088072409888,0.7186177923388114,0.4600301761696451,54.23463821411133\n0.6435359116022099,0.25174974517476156,0.7847700111189619,0.11763346903047488,0.1517621354842546,0.3476908931259067,27.569013595581055\n0.0017679558011049724,0.34130708301012,0.7305913835116856,0.6853286282969703,0.5780995221857732,0.5086942916330423,40.78472137451172\n0.016353591160220993,0.16750126291806072,0.570246720997105,0.6691342866512,0.7713135327249957,0.45606030709100054,64.06741333007812\n0.017679558011049725,0.2449930835882,0.5853741404398256,0.5099895687423686,0.5826101917662686,0.20189750949207133,30.69662857055664\n0.1045303867403315,0.16499701072705877,0.9434012908523832,0.7328290928168666,0.6690289434915884,0.22427900218548777,50.53472137451172\n0.012154696132596685,0.3003502462539348,0.5381306497798036,0.5548830753373795,0.7181795784019086,0.23797901350505726,56.51267623901367\n0.0064088397790055245,0.07663938286511954,0.28772846645123074,0.5135611844649501,0.5223260535656999,0.24172361742025789,20.898860931396484\n0.0022099447513812156,0.23907367865688406,0.6783368794630604,0.6009901452606033,0.6468080337481412,0.33888819062924785,42.122562408447266\n0.023867403314917126,0.19360210572074701,0.5839679995493312,0.6497006003020545,0.7729924806611634,0.2562232985987006,63.620784759521484\n0.025193370165745858,0.07555309282060499,0.8144776708692881,0.8407647728946583,0.480274978327887,0.5732498153484603,34.2422981262207\n0.015911602209944753,0.20319469160028336,0.6706503154221595,0.5848589231991267,0.6910702284427052,0.31663819463459014,46.443214416503906\n0.18099447513812156,0.20871205654319017,0.23644586950218455,0.38803181346695215,0.5124182910432781,0.29769487897963076,50.03266906738281\n0.0015469613259668509,0.2345113740886847,0.6975152662595069,0.9260500496954309,0.468848607250209,0.7720231330267749,33.2577018737793\n0.0017679558011049724,0.21217030866712333,0.7048374261408583,0.9248007583006366,0.48541736272631925,0.80695634909604,34.17746353149414\n0.20441988950276244,0.28043636162999663,0.9547324057294828,0.2970705378219568,0.4222311228891416,0.20623599568695872,26.289106369018555\n0.00287292817679558,0.1737428338482841,0.7298590105076672,0.8845626187811747,0.3651067347179777,0.6399967053229689,30.432584762573242\n0.0811049723756906,0.3477808528164148,0.6913294770063632,0.6085561588269792,0.5532758462616104,0.23882400325486022,72.14185333251953\n0.3960220994475138,0.43386316082402354,0.03459449850483964,0.6635559445222995,0.19786011907522885,0.5821541693635904,21.253482818603516\n0.004640883977900552,0.3570038936733991,0.8947516593018667,0.7570146120213308,0.4563391956898061,0.6586048224885335,30.625\n0.055248618784530384,0.1524445424854917,0.7526842821601999,0.8037290590764375,0.5122837047422489,0.9341223373569,30.281513214111328\n0.24640883977900552,0.19953565618789929,0.3356851911521926,0.499099654048375,0.33116414603450267,0.08039217498518907,49.59103775024414\n0.14784530386740333,0.14874947098917646,0.966871940222213,0.5437811741150033,0.14889081406983387,0.09842410840038436,54.960227966308594\n0.3253038674033149,0.3526668383003448,0.08928209628075202,0.4177528011204192,0.1692629701814504,0.04452408471577702,32.68854904174805\n0.22674033149171272,0.1407149675940406,0.26478810639987443,0.6183670859102162,0.1651837087867245,0.9281191925219413,15.543478012084961\n0.6678453038674033,0.06774455820610527,0.5737646406452176,0.1388916686463743,0.07865793184757847,0.6169159213446677,9.390172958374023\n0.0070718232044198895,0.29216507491250454,0.8650731111450484,0.7424887710849092,0.7451319404084045,0.5974345335904254,47.75\n0.09502762430939227,0.15398509927589416,0.5657578066390061,0.5873265416643448,0.549284236473813,0.3238675990970216,62.911930084228516\n0.03955801104972376,0.20280893696772334,0.21291198941176212,0.37520186475759165,0.4813376750534446,0.1839746505487179,27.108882904052734\n0.07469613259668509,0.3200743496728503,0.6696589935207878,0.5748252911675327,0.5696131180037093,0.29631000740224384,58.118980407714844\n0.03779005524861878,0.46803779070871654,0.17620965398868413,0.11135009305436924,0.3052198877520329,0.26845046714143367,31.57807731628418\n0.0022099447513812156,0.45070581669942805,0.7390212692317145,0.6864266708765703,0.668430272579802,0.46603230878368956,42.00139617919922\n0.011270718232044199,0.12783613892761192,0.18952752903087436,0.5080007063693404,0.8036726891761135,0.25491327002224,54.73389434814453\n0.1394475138121547,0.08283051653336147,0.3154883866053152,0.6207525298222972,0.6087065872500983,0.471914815289696,42.666194915771484\n0.07005524861878452,0.21572352713940898,0.8739938200290868,0.791279018808392,0.8762580388095428,0.3757269585794755,35.45125198364258\n0.002430939226519337,0.30288670936388945,0.5253740004287795,0.5390948427150837,0.7873843365263938,0.19700147361364365,47.05177688598633\n0.03292817679558011,0.2751977035096326,0.570399705391559,0.297049100982008,0.47496302342173613,0.2873987825542418,28.61699104309082\n0.02121546961325967,0.14370017747170868,0.7311442491679815,0.7278462184643218,0.4849566883407519,0.6397503368871327,30.35369300842285\n0.011270718232044199,0.07207186130211037,0.3165423875498515,0.5045422295242663,0.5615325894162301,0.10611303815282733,30.518156051635742\n0.0064088397790055245,0.2602278635568724,0.7691858876393167,0.7285726891514759,0.6940826920220977,0.6512012546821431,50.14027786254883\n0.23093922651933702,0.0731293111176038,0.15061782612659785,0.44415465138847937,0.32523423480514657,0.056163670520346,27.965909957885742\n0.0022099447513812156,0.23010533319079532,0.7141369676710245,0.9240647601290609,0.4894712973193115,0.84388732116954,36.97331619262695\n0.24640883977900552,0.13264809232003963,0.333962514728208,0.4692619547107422,0.32187266412118404,0.07157764023951084,46.99580001831055\n0.016795580110497237,0.3108387350062338,0.8589661268906565,0.7367746623029997,0.7184066523619674,0.6506598085131463,43.30473327636719\n0.06453038674033149,0.11838507468405012,0.9418981820447383,0.7989379253478793,1.0000000001257747,0.3216132604277255,37.043540954589844\n0.013922651933701657,0.2674133412866926,0.705611556882503,0.9251759029997407,0.4516800049225918,0.7393407895370091,37.205055236816406\n0.0015469613259668509,0.1975118030579849,0.06919608341426874,0.4105774144153327,0.531226212138477,0.22062106585189264,29.909482955932617\n0.3043093922651934,0.12320603236334554,0.5356211115966052,0.4551684233799549,0.39591676697808814,0.24639199561308092,28.02793312072754\n0.0022099447513812156,0.3148125133250918,0.7242427645438345,0.6553551623063285,0.6774521997106531,0.5315226338500223,56.377437591552734\n0.028729281767955802,0.3740018285231785,0.13489211251322283,0.17303221813595354,0.3547263032248379,0.17875059374737773,37.809722900390625\n0.004419889502762431,0.2695513623356931,0.836628622957917,0.7241912372530505,0.6328826143731094,0.8238753456161076,43.603065490722656\n0.1754696132596685,0.11079056941197393,0.10673658659736347,0.4326049583982837,0.4355465235340827,0.2627550374643821,59.608070373535156\n0.0059668508287292815,0.08794844525114899,0.3331219705115783,0.4777461795882586,0.5464976709147585,0.11373637292269612,25.05477523803711\n0.20132596685082874,0.1668803363851638,0.5831124327319702,0.5925083022541924,0.6876368960372895,0.484067416891752,29.914772033691406\n0.0022099447513812156,0.4143794747049451,0.7391618196656761,0.6813330395176234,0.6663217538636783,0.47098418551588217,47.2301139831543\n0.0070718232044198895,0.085166840194515,0.8696876806465532,0.7357325936943772,0.4178156456290334,0.9628979988917542,26.515235900878906\n0.011933701657458563,0.23753927621607573,0.17428696266950944,0.5308321318503716,0.5282931832872148,0.21457494763812346,27.61864471435547\n0.08729281767955802,0.1726137284670547,0.034290396931841806,0.1768455937757356,0.4284646029573852,0.29324307005239814,30.97625732421875\n0.30011049723756905,0.2525282419937285,0.1968300619268069,0.36585182973325403,0.37635374558976253,0.3102187202702981,29.01531982421875\n0.37502762430939224,0.09051608724297047,0.6429973994707423,0.7002165136414162,0.2014672847698506,0.5018967067472669,20.543296813964844\n0.5367955801104972,0.12658910673992887,0.5408656542841487,0.2532012358022777,0.14135528944513953,0.2692659491179206,52.19736862182617\n0.0064088397790055245,0.3275798157086447,0.6982010861759481,0.6482988691565131,0.7311305553274182,0.5756949116500356,46.36619567871094\n0.0015469613259668509,0.4020330162148689,0.7486478706032279,0.6818868245496342,0.6631968116500049,0.4663521705925666,39.74515151977539\n0.023204419889502764,0.17382253740964315,0.5689248170061921,0.6484120080340207,0.7885158257256097,0.2674015302141064,65.4143295288086\n0.01613259668508287,0.20187340008357452,0.610470201259413,0.6724272234544472,0.772035559713479,0.44730901314743704,71.52528381347656\n0.0738121546961326,0.3224904526412041,0.6697400052292518,0.5746657058034694,0.5679553957794994,0.2947841917308993,54.08100509643555\n0.0075138121546961326,0.3214022121412797,0.6898303572508898,0.636189436456543,0.7379412454075462,0.5457599197614876,55.37114715576172\n0.05303867403314917,0.2841658406746581,0.8384758936071767,0.7329458045010323,0.6762646181867618,0.564706670832883,51.66572189331055\n0.17392265193370166,0.09006889326500075,0.13635946837986146,0.43925395158907177,0.43279285488871366,0.264744849068109,53.09014129638672\n0.28552486187845305,0.2774918746101814,0.19006479919064814,0.3663567864076037,0.32180551796313456,0.19286164344150197,28.256338119506836\n0.0017679558011049724,0.3938807185685015,0.7371414071774781,0.6787177450438691,0.6763483450948725,0.46969550559870227,42.90625\n0.03756906077348066,0.12359746793399246,0.7589636443924757,0.780040159997454,0.3730311867060328,0.5894515459940763,27.2722225189209\n0.014143646408839779,0.33255506766638,0.05015462401636739,0.33831501788345986,0.4576685955440086,0.27442757029287324,27.880531311035156\n0.028066298342541436,0.2345248568484109,0.8193689278192923,0.6472198815457565,0.7860068407376164,0.35553026804588794,55.107540130615234\n0.038232044198895025,0.20114538786773975,0.20068764512365989,0.37583663340718687,0.488537659978096,0.1820833771173172,25.591548919677734\n0.0033149171270718232,0.3243147533525863,0.7334648590504561,0.6766216984710969,0.5889061730306652,0.5143654893548758,41.84261703491211\n0.053480662983425416,0.1883050854297703,0.9271758635810629,0.721403257124153,0.6453874985655879,0.6438822226587662,42.84463119506836\n0.3787845303867403,0.004419077441004377,0.6582298922451323,0.40782873515967466,0.25692636590560636,0.18878162632337933,35.662010192871094\n0.04751381215469613,0.2741602316597447,0.5316087616628385,0.5030988156343801,0.6877521381299139,0.28390474932533927,53.86827087402344\n0.01856353591160221,0.21433188667272415,0.8529866225588556,0.734540467206113,0.5638802942715353,0.538921232571925,33.41340637207031\n0.05966850828729282,0.18776261265185334,0.8268445813358004,0.6913059338360291,0.5576645120960876,0.4349119141845679,42.381690979003906\n0.381878453038674,0.41352680377102374,0.8464504332654881,0.4424015942548881,0.2428489269231866,0.1419550445628489,30.22922706604004\n0.014143646408839779,0.33074436333348567,0.7316540839848941,0.6623114168697161,0.6524611875642408,0.5225745396220557,43.43968200683594\n0.40552486187845305,0.22143063541441785,0.6539617761684047,0.5326340173416241,0.46960438370867513,0.6634874080981472,39.40833282470703\n0.23248618784530387,0.1863092961340052,0.4697633030918932,0.34544872184420145,0.3520244053256708,0.17062032800801727,36.70612716674805\n0.0338121546961326,0.47844087602510926,0.17727733016792577,0.11379389280853315,0.3121064847411293,0.25938351363945494,26.382352828979492\n0.7374585635359115,0.2266691231066393,0.08547774995570002,0.26418285253383,0.05937841482665671,0.5529740488901236,12.444815635681152\n0.013922651933701657,0.22210973475332452,0.9593892422093167,0.7610602200938916,0.7167744480296958,0.6606392024858448,45.184722900390625\n0.011049723756906077,0.1018243827023582,0.14650516638356895,0.510932789700116,0.8024028506687622,0.25601226587477705,52.266380310058594\n0.054364640883977904,0.26596053605327225,0.842034382764609,0.7326921352283048,0.6831994875013911,0.5698685067213629,49.60393142700195\n0.4196685082872928,0.16412413459000835,0.06801477759863324,0.3243667806901033,0.22174445435053106,0.3029768930966473,35.407562255859375\n0.11801104972375691,0.0555433660370259,0.4947471612099726,0.6167676594629247,0.512280235720073,0.45912696838059697,45.40730285644531\n0.09281767955801105,0.25801720224620084,0.9111203529575633,0.6943416285598906,0.6182626849990577,0.501489364512717,32.18663024902344\n0.04287292817679558,0.3253895868386256,0.07313634396105097,0.18396381557429198,0.40778696710483503,0.3314601148073901,31.180055618286133\n0.0037569060773480663,0.23857996726421288,0.7082216701044964,0.918331596378308,0.48028955998042316,0.8151785889084651,36.35734558105469\n0.42099447513812155,0.17294536269610697,0.07298880207660774,0.3220932847199771,0.22353179453045036,0.3089703451495187,30.64345359802246\n0.0769060773480663,0.16494959383049354,0.36053639206720317,0.7866272245395011,0.9207812921220925,0.3080191642238112,49.5720329284668\n0.0059668508287292815,0.325651856813637,0.6946535881303504,0.6481642934390567,0.7248575636845606,0.5828118062241893,64.66016387939453\n0.009723756906077349,0.326044409635441,0.6658604398087297,0.624637361595242,0.7531052232933598,0.41308162178895746,66.15223693847656\n0.5014364640883978,0.20804689443905666,0.6290088119862928,0.3108008338091671,0.1481227931390264,0.20733551298663336,57.300559997558594\n0.011712707182320443,0.2744757320246302,0.9881807779353786,0.7628930699095146,0.7135274432730183,0.696239073383853,45.07222366333008\n0.0030939226519337017,0.21638732581840162,0.8427036947949358,0.6996853563849069,0.6531249467395654,0.6911965568698009,42.92936325073242\n0.004198895027624309,0.11237122415703968,0.7265719466448056,0.7125522240964014,0.5003135791377392,0.8169752503577521,33.41340637207031\n0.001988950276243094,0.23560262548579514,0.6772599626869,0.6003613312887717,0.6523391250212366,0.3372359086903544,43.48860549926758\n0.001988950276243094,0.45579188482277827,0.7533341581703713,0.6954218071061998,0.6394277772643131,0.46417528215988485,39.322715759277344\n0.013038674033149171,0.24658421966403604,0.6177885418354937,0.634282748636652,0.8033806445464883,0.2305364291834298,57.865169525146484\n0.07889502762430939,0.2946497846764876,0.8788137832807046,0.7640470864600919,0.805467761159696,0.41681806659012266,32.56446838378906\n0.1107182320441989,0.15658255672444166,0.4796416391174707,0.7357063931122175,0.7025453422218044,0.26427769377954,44.57222366333008\n0.0022099447513812156,0.32565606070782127,0.7288455366357255,0.6515560778931789,0.6385438821732814,0.5479776651110686,36.4957275390625\n0.013922651933701657,0.13955934170017556,0.0857467881844766,0.6123921622422628,0.7291633257687314,0.1825089086549612,73.41736602783203\n0.048839779005524865,0.3573609595686203,0.22055562870509302,0.11858026279488049,0.3258338464687095,0.25163106702464794,36.550846099853516\n0.004640883977900552,0.24826543648146984,0.8355760224253133,0.7056555163106494,0.6249177394571568,0.6581532492673705,42.02361297607422\n0.17524861878453038,0.0885078850974855,0.4204649837595117,0.4454884992075162,0.44517911616187084,0.27185413664872593,65.43201446533203\n0.0035359116022099448,0.35935012110328407,0.7635486779332205,0.6803945823020867,0.690539938425675,0.5292843986952697,49.21848678588867\n0.010386740331491713,0.2820004185676185,0.6931366025135554,0.661060934539369,0.7156359619891419,0.5099105517448176,41.27668380737305\n0.011712707182320443,0.1339878942266816,0.8124530995820176,0.8886618189536075,0.483363348816248,0.8245018796886165,37.92877197265625\n0.03756906077348066,0.36727976384956607,0.29508173245217567,0.08931540345810195,0.2731308152562571,0.25298327147253213,17.86571502685547\n0.11955801104972376,0.0849095883814804,0.8509162196083367,0.6435970555944083,0.5782095313466407,0.35848389800006897,25.260446548461914\n0.6311602209944751,0.10773740604655652,0.7409655502348499,0.1403982021205543,0.08679011358728755,0.41219632724275396,10.508403778076172\n0.1971270718232044,0.3642622010294932,0.7523765310288323,0.6501817382653499,0.6513184681406925,0.4950706876558119,27.952381134033203\n0.003977900552486188,0.41870433499757287,0.7439311983408198,0.911376532750473,0.40347300284111254,0.6630379206655346,29.73285675048828\n0.08331491712707183,0.2576239487753661,0.32093420668062433,0.7671375642193782,0.8278651206582277,0.26412751700391074,48.1025276184082\n0.011270718232044199,0.1385815386366603,0.8089615755769982,0.8916260575443063,0.4797357511689799,0.8151198187487212,37.36033630371094\n0.011933701657458563,0.22002706497775057,0.6577000697306363,0.6469769306930034,0.8059128543439646,0.40768786461768897,49.04929733276367\n0.020773480662983426,0.3053831786697123,0.5450066723688125,0.37228645452455406,0.5115073493386713,0.2597597530859151,32.32402420043945\n0.013922651933701657,0.31653645079693904,0.04826525613567952,0.34434115178017977,0.4744140947601335,0.2764157868818263,31.41666603088379\n0.6731491712707183,0.060946847107750876,0.5742644603949759,0.1351056845243046,0.07734389270597702,0.6275176164660522,7.451977252960205\n0.004198895027624309,0.27725202540415295,0.7966993989483534,0.6884024329585186,0.6704186690534606,0.5296622331565036,50.90972137451172\n0.009944751381215469,0.24325075881341154,0.8818548838841332,0.7888090184720685,0.5381016377002271,0.623816752763688,34.903953552246094\n0.0061878453038674034,0.3047275605415648,0.6901627641196161,0.6178799932691572,0.7209550313306028,0.45858920301492445,56.466190338134766\n0.009723756906077349,0.5369924491135619,0.8642045162530417,0.8742169616347704,0.34604078304957375,0.5351984680897816,25.023677825927734\n0.004198895027624309,0.31191546213830207,0.7250009390767929,0.6461468486127635,0.712049875014013,0.6497175842088612,46.088890075683594\n0.030718232044198896,0.3734302125328758,0.10586560463956265,0.24150863054575666,0.3341376566106484,0.18441203734040207,27.288301467895508\n0.010828729281767955,0.16840282779244994,0.9100961850308636,0.8722542998439019,0.42693567553108025,0.6721272963944301,29.19382095336914\n0.015248618784530387,0.2221400898991688,0.9549603758174181,0.7682927717055082,0.6968268061572364,0.7073327078695232,39.66867446899414\n0.02011049723756906,0.32671104878347706,0.04513379183046426,0.3358342991271619,0.4655302229524876,0.277446013058922,32.58333206176758\n0.3462983425414365,0.2771981511746289,0.7473100104036284,0.43467599532444895,0.24612371325576468,0.17110671549395548,61.04072952270508\n0.0075138121546961326,0.2813145778488487,0.7927579607824461,0.6886310925846392,0.6904310464075422,0.5311148008416957,52.25838088989258\n0.18143646408839778,0.1748601039418325,0.02068374395290476,0.41885441650667726,0.20254776758368306,0.10642290044600686,54.90373611450195\n0.0037569060773480663,0.2535444481987111,0.753736033958299,0.7142552619367788,0.5966151634634028,0.6675711366929551,43.333797454833984\n0.015027624309392265,0.21189109056015276,0.12862835638665035,0.5930823331905993,0.7262437614272708,0.20370210000518602,77.5859603881836\n0.2338121546961326,0.21857028308766943,0.4569439746977044,0.33159933230171995,0.3359152364908863,0.17522177692706106,45.11331558227539\n0.009502762430939227,0.05995786206443458,0.310313928169489,0.5038074222882434,0.5857779969827599,0.10180194326934455,28.3518009185791\n0.09767955801104973,0.22966646178712288,0.7844581011885219,0.6501364827143469,0.664401855878748,0.6691491584247818,28.220056533813477\n0.04331491712707182,0.258481618934804,0.5734259955778825,0.2878467419662066,0.47843680815354234,0.2901856414444734,26.4777774810791\n0.40397790055248617,0.2342037323548194,0.6579603341664716,0.5144067487073752,0.47615172208836204,0.6752629727463562,30.62569808959961\n0.011933701657458563,0.2640834404906025,0.6501038534777499,0.6390393452341816,0.7780972937855207,0.3375673650297028,56.0476188659668\n0.0022099447513812156,0.40983241398727893,0.7514145753413197,0.6843830254681175,0.6463287207180015,0.4573076393175048,39.40363311767578\n0.0033149171270718232,0.3496570394289906,0.748012507953085,0.6646325502619507,0.6955126347224164,0.5686997289724703,49.012569427490234\n0.004419889502762431,0.19589214867295268,0.8680737271126077,0.781959948108425,0.40405274112339634,0.7281593678920556,26.66615867614746\n0.0892817679558011,0.0684185352325036,0.537374639519832,0.5908969664513738,0.5469635782320827,0.3164922201094227,66.98873138427734\n0.028729281767955802,0.2606219691684201,0.0012610315236214222,0.3443744979756557,0.481239954462658,0.2933284646895207,26.52638816833496\n0.008839779005524863,0.21085384594778833,0.8511820432551771,0.713532364056283,0.7564648830752763,0.5865195407594254,51.60563278198242\n0.03558011049723757,0.23890014493478992,0.16638031116238464,0.3383233544323288,0.45336453857243264,0.21319693155692795,24.876068115234375\n0.009281767955801105,0.3213097643421457,0.6703849161425713,0.6237060499930216,0.7268623645173222,0.42974029349391774,58.55555725097656\n0.0430939226519337,0.31737632068370464,0.06879729489810157,0.18357557058410803,0.403640309664869,0.3319667773849727,28.367687225341797\n0.0075138121546961326,0.3010477897051636,0.7114807681654314,0.6630759974945568,0.7127771937312393,0.5739303958831136,47.26264190673828\n0.01878453038674033,0.20919743589333392,0.1289315031333305,0.5570196137189438,0.7434848604386665,0.2589224316763709,68.18472290039062\n0.25082872928176797,0.06789088970299338,0.049802690949444756,0.5312394318093989,0.3276660487489718,0.08819836132853008,36.54507064819336\n0.055027624309392266,0.38010482243700233,0.2209049890455486,0.12569014804456785,0.32250020435311255,0.2437848519451557,22.037036895751953\n0.00287292817679558,0.3319738698271707,0.7307182693201232,0.6810222053383657,0.5812833789794516,0.509163839443772,39.663841247558594\n0.008839779005524863,0.19399664687088142,0.537260951532941,0.4876964461311628,0.7312084613339117,0.18420282968146018,50.959495544433594\n0.007955801104972376,0.2115552524369162,0.8473263272742343,0.7128999772777932,0.7615210710921844,0.5952576451577436,55.247825622558594\n0.012375690607734807,0.23437908397710133,0.5868783950390517,0.6339064130019952,0.7946884509133094,0.1976620244435408,57.94301986694336\n0.013922651933701657,0.2773006921070973,0.7910970722303963,0.6884524522517325,0.6826144574903643,0.5339371794840062,57.00139236450195\n0.1067403314917127,0.1556401269687474,0.947810636350676,0.7286203265735843,0.6750863265866636,0.2357291378097918,48.237430572509766\n0.03801104972375691,0.370813648195896,0.2914871084232101,0.08492085126859668,0.2811996138450228,0.22931492392691738,18.878570556640625\n0.0059668508287292815,0.28870176675367404,0.7323789881252721,0.6413962066929976,0.7111520450372916,0.643212193760309,50.79166793823242\n0.0070718232044198895,0.32452525104516583,0.8488947886387332,0.7279665029551458,0.6337778572824455,0.8025988914273522,44.47492980957031\n0.08220994475138121,0.3609750966336577,0.6805905666298474,0.613468767981914,0.5554230533945437,0.246725307690772,63.994380950927734\n0.0075138121546961326,0.3246600407695074,0.8403594052197828,0.7237124811608604,0.7464827423655229,0.6680114221172572,47.02089309692383\n0.017679558011049725,0.2164421279344798,0.8341786659369413,0.7306651629175899,0.5609299791063795,0.5200959480102298,32.27683639526367\n0.08353591160220994,0.2643472632553576,0.3211946196449979,0.7677270773179703,0.826798543331592,0.2503687355245974,48.268802642822266\n0.09988950276243094,0.15164032995345145,0.22027783790173777,0.36661879222920024,0.5567025346076043,0.2582099508462409,26.00983238220215\n0.00287292817679558,0.35716197524389687,0.7647611800464906,0.6822512508287639,0.6919540647367508,0.528874663938559,46.879886627197266\n0.005303867403314917,0.2917965713952684,0.8224588306567354,0.698979131602149,0.675987625585561,0.5941094185607447,48.465614318847656\n0.3074033149171271,0.24565245113548487,0.19724706640727901,0.35783564252795325,0.3694715877731116,0.31689008427541276,25.28169059753418\n0.013922651933701657,0.2513303783251874,0.9006082668774017,0.8117988383816104,0.5650326564007929,0.5272123518106069,51.25626754760742\n0.011933701657458563,0.2182395199357905,0.6587634491914484,0.647932061006278,0.806184084840534,0.40235027037047627,50.46760559082031\n0.030276243093922652,0.2309883403341007,0.9377267368280846,0.7385503472120925,0.715684528299605,0.5963793086240858,26.006689071655273\n0.012154696132596685,0.2839391901814516,0.9892007870630057,0.7623726310729796,0.7208279122467999,0.6903810748933139,45.97638702392578\n0.14077348066298342,0.07166747319262534,0.31599749999789895,0.6271716724514119,0.5963810338650201,0.46279648390798295,50.644287109375\n0.016795580110497237,0.22798602136456095,0.8554016117182416,0.7884279190952008,0.5952106210610504,0.7718033890683175,46.450565338134766\n0.002430939226519337,0.11263415690816117,0.938776876030625,0.356206442691844,0.5153583167358782,0.2755773919046459,21.48736000061035\n0.06298342541436464,0.2893993291413631,0.8773954630500691,0.768632188338031,0.802893217532276,0.4152648289340125,37.1935920715332\n0.02298342541436464,0.0762837561408803,0.9630430442516155,0.7023590067007441,0.7102926682894355,0.561612587558521,59.28888702392578\n0.18850828729281768,0.14439586514982908,0.6734662891982434,0.4833828775592419,0.5786074693481109,0.25313768117198426,54.41501235961914\n0.09149171270718232,0.11987204129183292,0.5638275297551966,0.5900525931445013,0.5457743503925826,0.32011379317351035,69.81285095214844\n0.007955801104972376,0.1828722528455964,0.5399485966519294,0.48350554392117123,0.7210815624445455,0.18577792210730806,49.28212356567383\n0.01966850828729282,0.09096742830574364,0.6840036675666419,0.6460134638308598,0.7718362967278137,0.4768790840597469,50.295196533203125\n0.029171270718232046,0.37458859368171293,0.1303747549400385,0.1676718172131993,0.34692109152445744,0.18054201005192771,34.81805419921875\n0.00574585635359116,0.1880635698152364,0.7560661496672251,0.8956907205857105,0.4277698283719281,0.7758788972023679,27.990251541137695\n0.005303867403314917,0.25126239643274767,1.3699105465903208e-13,0.5452567432648128,0.5737965235599459,0.17245600597254135,28.1790828704834\n0.011933701657458563,0.21887870121640662,0.6583004645191897,0.6475461978871995,0.8097397737738841,0.40427315270042397,51.95903778076172\n0.08596685082872928,0.05586146069697108,0.23451294032304815,0.3632639267772121,0.5263767543244604,0.23656015584364315,27.045198440551758\n0.23646408839779007,0.22362313665967165,0.45857834029648553,0.3206260521190366,0.34411415280974267,0.1742508423568468,36.20612716674805\n0.10077348066298343,0.2078443311233385,0.5698267247275043,0.5775668248098745,0.5528664428478637,0.32890250861753706,67.6164779663086\n0.017458563535911603,0.18832455211094806,0.07853096412737015,0.5680393403881828,0.7597018923443283,0.247709416469551,68.15266418457031\n0.02696132596685083,0.19669959933970246,0.8338395965023541,0.7989462618967483,0.6609534714449079,0.3875541464943071,37.14595413208008\n0.30232044198895025,0.2744233159025485,0.5672643952581199,0.7694015327050826,0.22534385884299646,0.9302096434232253,19.056943893432617\n0.055248618784530384,0.23758392838943868,0.8473348146192803,0.7312308573051278,0.6780709203946766,0.5781192114128288,42.535396575927734\n0.006850828729281768,0.334363007276072,0.8389394723935887,0.7231396411600063,0.7373969029108541,0.6603214264655182,45.17222213745117\n0.00574585635359116,0.27850020324768354,0.8489845847493198,0.7191357158317904,0.7409708777068603,0.6711932312041804,43.250732421875\n0.06917127071823205,0.28072718778712474,0.8513124088750835,0.6934353266042772,0.6662184475592187,0.5890110151828861,23.85416603088379\n0.010828729281767955,0.19590886956738843,0.8918933761107286,0.6877938648910831,0.6341923760339769,0.7230639091568564,32.08100509643555\n0.04839779005524862,0.20131502067901424,0.6312122540704075,0.5370988347287393,0.6988560665361878,0.2554605441298335,49.29411697387695\n0.004640883977900552,-2.626562815240881e-11,0.16790829850019554,0.5128549596821923,0.5747233992477676,0.08625886937358174,26.597734451293945\n0.0026519337016574587,0.31559027162210745,0.5297123492857626,0.5384934202609645,0.7949968999020377,0.19608903314292384,50.4803352355957\n0.0033149171270718232,0.2618436738404658,0.8363381860104431,0.7135037816030179,0.623600392985091,0.6408126780732324,38.86072540283203\n0.0015469613259668509,0.29093831420556154,0.7064639833821971,0.6075140902183567,0.6278779325159661,0.510338138397651,41.83611297607422\n0.0026519337016574587,0.3447580256603814,0.7299679880180577,0.6639156070592184,0.691979347440745,0.5160170044597434,43.87361145019531\n0.018342541436464087,0.18904500867912727,0.09610372559719746,0.565240641839311,0.7545333432871114,0.2516300241303727,75.23955535888672\n0.24176795580110497,0.16426825998927272,0.5057270697490691,0.5038300500637448,0.31762081887320526,0.05713908340127146,36.94972229003906\n0.8523756906077348,0.25258762673319674,0.5075731946067477,0.3836527434396321,0.0397002542404323,0.22133906788700908,7.043988227844238\n0.01569060773480663,0.06011584895263095,0.9664979029260362,0.6948072843610008,0.682934254297397,0.5879254849358436,53.72980499267578\n0.05458563535911602,0.18590180244503268,0.9304974709382616,0.7207446697635035,0.6463966900338555,0.6400688490681241,39.37083435058594\n0.024751381215469614,0.18905690077618917,0.5778291028775666,0.646735170775803,0.7724229730544494,0.2584953051239531,63.082401275634766\n0.3376795580110497,0.0872074142188651,0.646470887867539,0.7011537799214002,0.223554460768566,0.498328628024825,22.764705657958984\n0.009944751381215469,0.2397908024080523,0.878930314528186,0.7877657589278932,0.5455159376389682,0.6250712318833135,34.386871337890625\n0.043535911602209945,0.05865612244297478,0.928265638684968,0.7663717926589847,0.5975277514836186,0.5230651293584557,32.6800537109375\n0.13281767955801105,0.07930290962361755,0.0384379157923518,0.5572982926382782,0.4667564340962025,0.38335082246482216,50.35434341430664\n0.0070718232044198895,0.22078086865249982,0.22677222702075375,0.5079411595917048,0.5061724636079676,0.21828240611311023,18.70396614074707\n0.0061878453038674034,0.04581676682801984,0.32141951307035405,0.5018602426595601,0.5649511049811654,0.10556341753311466,30.288301467895508\n0.07845303867403315,0.25445926859530305,0.902215175914959,0.7913659571037399,0.35396106045162046,0.6921806196385383,24.211864471435547\n0.38011049723756907,0.4129787826102419,0.8440087089692072,0.4443118548814373,0.2546470713435503,0.14193265300929309,42.94827651977539\n0.004640883977900552,0.42238490116530625,0.7069671980699738,0.9410903747906239,0.4113271630323654,0.8258823036286533,29.20142936706543\n0.053701657458563534,0.1894537711109392,0.938514277574902,0.725410755259027,0.653152934104917,0.6590308754733151,36.3602294921875\n0.10187845303867403,0.04048207718341201,0.04628721141303302,0.6644205637335681,0.5973877558598744,0.7699669135964065,41.2696647644043\n0.2318232044198895,0.1392560364157166,0.26416882726859375,0.6207608663711662,0.15646224895374777,0.9177247879744339,19.85755729675293\n0.0033149171270718232,0.06600878544657704,0.8470139081030914,0.9116790303808618,0.4498164344502809,0.7383564200346613,28.714887619018555\n0.019889502762430938,0.19237701142230948,0.7502473107771447,0.6579990392333479,0.7447056622596664,0.4892084562414499,49.019554138183594\n0.29480662983425415,0.20985689812292024,0.39902213086806987,0.37746583324329613,0.2912420214654598,0.1072012216455994,32.96111297607422\n0.4159116022099448,0.5413249597361466,0.5430922668202389,0.5965777290378074,0.27702232317533365,0.6383224919309352,34.69859313964844\n0.03580110497237569,0.22642175612587587,0.16205172275220442,0.34283223643489436,0.4496771443903691,0.2117491029060159,23.121883392333984\n0.011270718232044199,0.12570277624784265,0.8175604443368927,0.8871195574128462,0.49253156284834876,0.8386719909394145,34.637142181396484\n0.007955801104972376,0.3375880379550781,0.8386349464533385,0.724589009727656,0.7352746256999988,0.6582317730716211,43.449440002441406\n0.001988950276243094,0.33868453475168875,0.7261519928119301,0.6656460364173081,0.7004000753894102,0.511392075082827,42.58333206176758\n0.2203314917127072,0.23446908897285795,0.18783714695478973,0.2023613879925785,0.2526976866701245,0.06470523535783,17.657381057739258\n0.0030939226519337017,0.20897479992970877,0.759625487559162,0.8983750893215221,0.4904392133033841,0.7653722895001931,38.26750564575195\n0.00861878453038674,0.2970876456377141,0.6136756592996574,0.6068257294688895,0.7848758219142887,0.25167244538868466,59.311798095703125\n0.08574585635359117,0.0976834427802935,0.45860978590988094,0.5889926605025881,0.5498027670936365,0.2914542916568972,66.23809814453125\n0.5376795580110497,0.13093974902324093,0.12369912917674672,0.5361568047065446,0.11971736651745453,0.664908627608361,14.767340660095215\n0.008176795580110497,0.27582455715460014,0.8111200771690944,0.8967994815852849,0.4805326267206829,0.7927085728951004,48.28028106689453\n0.30386740331491713,0.0140051491782011,0.39205486931981653,0.6371231299298689,0.1764761550294662,0.06865246749603045,98.8044662475586\n0.012596685082872929,0.1515389252086005,0.299619067113762,0.496520087641202,0.7750934145660889,0.24856836259862508,50.41736602783203\n0.0026519337016574587,0.31801330533492717,0.7187253961497877,0.649529105582464,0.7150246497253585,0.6697701712923044,46.29279327392578\n0.007955801104972376,0.3415420844823143,0.7089273928450704,0.6543714495397888,0.7397288501739027,0.5600061009476534,56.675899505615234\n0.055911602209944754,0.29731690936244065,0.14952058215905226,0.15274463099551394,0.3377816292185267,0.21700452321901476,19.77793312072754\n0.02143646408839779,0.04812511660321051,0.5402383121750743,0.6409507967962834,0.7878095563293833,0.3288466217537306,60.0056037902832\n0.1898342541436464,0.3577660862000566,0.7513732419709458,0.6464481553075995,0.658558023436944,0.49921447469152713,29.969444274902344\n0.00574585635359116,0.36415176359308404,0.7272202949328689,0.6746471273247013,0.6906687626220729,0.48679022980414166,41.13092041015625\n0.28464088397790055,0.2559106157212811,0.7072077294285771,0.66619148490045,0.40357360448421475,0.6589281197138466,15.265449523925781\n0.06011049723756906,0.40427429778182883,0.29179988830651743,0.21593328955127822,0.2340665681119264,0.18471320373572805,14.300871849060059\n0.0077348066298342545,0.5003243418837717,0.7205178385500504,0.9441510791610923,0.40402404819421234,0.8857272579431442,25.985994338989258\n0.4468508287292818,0.29130397725375423,0.09851778114862844,0.6165175629968552,0.17505686928286598,0.5521538432160372,15.159154891967773\n0.002430939226519337,0.14966764313923966,0.708807339349395,0.7212496264378532,0.5294853509760166,0.8177970510466123,34.40027618408203\n0.1343646408839779,0.2003189060583989,0.5255308465652293,0.473315899332172,0.1983840884162605,0.08321459963754117,64.43895721435547\n0.07226519337016575,0.15672738277273673,0.9304378897760388,0.7978101093794616,0.9886103183673812,0.32769627869482026,39.22050476074219\n0.0077348066298342545,0.22831413341199935,0.9645251044435462,0.7562798047853079,0.7334812588290112,0.6818505678024832,46.941829681396484\n0.0013259668508287293,0.22309160915580206,0.7057656870685383,0.9248186223339273,0.4895946533960084,0.8078553853079873,28.99439811706543\n0.02983425414364641,0.37322285829270435,0.13338570425019136,0.16988338453458446,0.34424391775791713,0.1794767548965296,32.135475158691406\n0.005303867403314917,0.39671849863458464,0.7321001788405114,0.9123126080949043,0.43998593116750623,0.8041381420308302,28.087987899780273\n0.016353591160220993,0.10746893438080031,0.6314612303373316,0.644918994057918,0.794388821472486,0.3325374859403972,52.434356689453125\n0.0030939226519337017,0.3075567813275971,0.7833501631662183,0.7259562037421688,0.6026834240008941,0.6308288057898227,42.53221130371094\n0.029613259668508286,0.23196284845352558,0.8393860764899086,0.6445569496498937,0.7748475255704996,0.35191213039823627,56.43732452392578\n0.039779005524861875,0.07354124540651424,0.5935964681367548,0.6266667157770622,0.7166211054901221,0.2717885263294712,60.93277359008789\n0.3414364640883978,0.061639486015764626,0.6515811183197296,0.7129869155731411,0.22169744616019782,0.4886614888674668,24.984594345092773\n0.008176795580110497,0.25852288148177505,0.7614644406102767,0.7288132581331236,0.6995733309688025,0.6526593435723215,57.273372650146484\n0.00574585635359116,0.2576906240520459,0.5595306840154884,0.5676534772691043,0.6799068562835521,0.20274460036710523,52.24558639526367\n0.016353591160220993,0.2226838314199252,0.9525325707670126,0.7518102236559817,0.7141606868125919,0.6952591821922164,47.99858856201172\n0.0026519337016574587,0.32268527094466376,0.7903198011710845,0.9216078600838172,0.41637547225314503,0.827286100669799,26.47058868408203\n0.0061878453038674034,0.3555834319141534,0.5764204157835583,0.5890188610847478,0.7931894805513882,0.1917984894113348,61.18333435058594\n0.0369060773480663,0.259839211645888,0.5697902715805317,0.2845502323563013,0.47094813002746966,0.29354029492083106,26.204166412353516\n0.04022099447513812,0.06486581857641563,0.9349632572811103,0.7716047634775989,0.6146195649474769,0.5244921768072663,37.4257698059082\n0.00574585635359116,0.3015001817414828,0.5189719111871386,0.37341903423518263,0.5192233366127469,0.26164496852851127,33.129215240478516\n0.3812154696132597,0.24322112325305825,0.11206596029864162,0.1603011170774681,0.13331281720687005,0.1952790877081038,18.974647521972656\n0.11513812154696132,0.3301202176023395,0.4271811896413046,0.7280320044105449,0.7150708641563803,0.29780183698956114,55.87465286254883\n0.050386740331491715,0.21130231813682762,0.8083326633090904,0.6965710599145665,0.6827758552170244,0.9314258421882786,45.76388931274414\n0.2510497237569061,0.10914784095007879,0.5162127177494125,0.5354005606305727,0.3199925128988119,0.08787375281703279,35.494380950927734\n0.015469613259668509,0.2920930595540231,0.5280846462528426,0.5594884231197146,0.6947370436796572,0.23711321187979179,58.88951873779297\n0.07425414364640884,0.22927595410303017,0.49903441624977884,0.7874513519419775,0.9470021608253537,0.2685840496287428,74.37712097167969\n0.40861878453038675,0.23640634566986785,0.6590012221629118,0.510594564003146,0.461876813428351,0.6767814268110522,40.890625\n0.2459668508287293,0.21475625274781474,0.33877736435443556,0.47024328560617645,0.31666748454166876,0.07411892820129305,44.189945220947266\n0.01966850828729282,0.3379685093152173,0.6969552712333724,0.893071853305298,0.4777609955960809,0.722057393487841,33.820621490478516\n0.0033149171270718232,0.28688068524054106,0.8148220024578039,0.6955420915970237,0.6699219521154551,0.6006071406690381,57.2055549621582\n0.0061878453038674034,0.3258928422072828,0.6972592030594693,0.6493099734407651,0.7306703513177392,0.5741251103789663,54.685394287109375\n0.0075138121546961326,0.11428821884153967,0.6344079516638489,0.5857854710591363,0.6246880196327265,0.20808326818195416,41.305015563964844\n0.017900552486187844,0.034502089781514506,0.9075505756312199,0.8456202171430629,0.5010163207148037,0.650207131050986,36.18194580078125\n0.0072928176795580115,0.2617676628888633,0.7056972366307424,0.7303817202560445,0.6784124720865414,0.66485912080365,47.396968841552734\n0.011712707182320443,0.24881817282086383,0.025991319765039,0.3561028312987581,0.4917195764712352,0.2783787286212862,34.71726989746094\n0.0008839779005524862,0.29071244010722685,0.703706275229854,0.6080643024437093,0.6112884805007723,0.5149893855183357,35.744380950927734\n0.007955801104972376,0.26755313023655064,0.7040489093493606,0.919243853011685,0.4813498460295534,0.8195697872742918,35.75761795043945\n0.0059668508287292815,0.31123681727444236,0.7174361684373018,0.6725987181740376,0.723322139191299,0.577353236241053,46.204734802246094\n0.02696132596685083,0.16153775497073028,0.9860344132466982,0.6841460292931278,0.7549038818930904,0.5081725991085523,50.851539611816406\n0.0013259668508287293,0.4375043770272751,0.717303511234233,0.6923896851889966,0.6751795198095256,0.5180142083434799,48.33333206176758\n0.04795580110497238,0.20296131866367398,0.6359488715936736,0.5357697506519133,0.703978753944299,0.25176412806481946,54.98994064331055\n0.009281767955801105,0.27743968572562316,0.7867536734031108,0.6854274759478454,0.675316164005066,0.536698211404246,50.87396240234375\n0.004640883977900552,0.3378044059503474,0.7365677475258197,0.6483357881586471,0.7066981733453039,0.6163770517379978,42.572444915771484\n0.018121546961325966,0.3249879823888032,0.04256114758455362,0.33358343093253723,0.45287487727275116,0.2784933549714755,30.840625762939453\n0.012817679558011049,0.32329991057274454,0.6668870690654927,0.6243229546093262,0.7363068655867914,0.41680487704487745,66.1642837524414\n0.10033149171270718,0.12075384596990991,0.2289569969457673,0.5546901437778402,0.48789906591279336,0.22283537578503756,76.35932922363281\n0.10276243093922652,0.26747196856774924,0.4174780748542016,0.7635159292035827,0.79724623739971,0.2684191189664555,35.75\n0.11027624309392266,0.15614027675791708,0.4863548744284975,0.7349846861672743,0.7042740324081559,0.2604429715296174,49.159278869628906\n0.01878453038674033,0.3094956854966522,0.7000716545873591,0.8910091529280019,0.4831712590628787,0.7169300344571649,32.19683837890625\n0.019889502762430938,0.12094162937837202,0.5994781982536259,0.6417784970054179,0.8084516494038766,0.38103348071195936,55.452247619628906\n0.019226519337016575,0.39589230087214816,0.15174263274718033,0.11861003618369827,0.3153576934823082,0.18568360152212424,23.817142486572266\n0.06917127071823205,0.261667545823312,0.8592385706666329,0.7532143366726286,0.8037535350319086,0.3536416171868558,41.30791091918945\n0.06541436464088397,0.5317260680153338,0.35936700566676666,0.5620977629157055,0.15355156295717806,0.03352792250313707,33.9639892578125\n0.0017679558011049724,0.3010437373026616,0.7198072780228001,0.6379448754612397,0.7003241096834557,0.6781433853877457,55.42897033691406\n0.013922651933701657,0.28259818580958124,0.9879058728293391,0.7621356348979901,0.7194484173604974,0.6900525018499029,47.09886932373047\n0.016574585635359115,0.20628286848077632,0.7515720155919229,0.6576846322474321,0.7506433934881648,0.47855167176364577,50.344539642333984\n0.4470718232044199,0.27428788233855705,0.08882045897451933,0.602027450127015,0.1667823547392179,0.5522921800743068,21.567039489746094\n0.007955801104972376,0.3034320036743896,0.5363460157369833,0.5656705695738398,0.714087425767995,0.21969045141475937,53.40946960449219\n0.045082872928176795,0.057344886186679725,0.9113362710155333,0.7591582960162114,0.6065335094433105,0.5287806194136244,36.1680793762207\n0.17502762430939225,0.14311875239497593,0.4356192656493028,0.4335743799381908,0.43933963469703324,0.27298552357051636,67.54843139648438\n0.02276243093922652,0.15616902230463675,0.993579578119133,0.6828693463806211,0.7549526833914977,0.5066950019607553,56.07242202758789\n0.02430939226519337,0.17838843990529754,0.886309976172224,0.7916446360230744,0.6807313076217045,0.42108332013553806,44.47167205810547\n0.0030939226519337017,0.36016794895027254,0.5653189684634032,0.5510470719220959,0.7839365988594001,0.233989896892363,54.731842041015625\n0.007955801104972376,0.1648804946868967,0.7217777000486771,0.8797762487948274,0.3813478439894199,0.6522667858977905,28.485876083374023\n0.036464088397790057,0.35963458460975484,0.8788370386061306,0.7978613196082283,0.5317769047096605,0.7918459152893411,42.6295280456543\n0.0030939226519337017,0.28213070141441116,0.8093858579558473,0.6975666820366332,0.6473352663218978,0.6466619653292375,38.71666717529297\n0.07602209944751381,0.24662633435172018,0.8791985146316392,0.7226215841945768,0.655999413792739,0.5202733013837364,49.24373245239258\n0.10917127071823204,0.16200705726608813,0.9252919276012045,0.7340688567272392,0.6856052249819108,0.234356918993832,44.433990478515625\n0.2718232044198895,0.09618354257013288,0.544132942633053,0.5297793448217747,0.29294622270712867,0.10039363724412662,38.007022857666016\n0.004419889502762431,0.2627071953661332,0.5722388281895747,0.5645618085742654,0.6644512453470156,0.20738820982089218,44.57843017578125\n0.004198895027624309,0.20181268979188596,0.001778333712258401,0.5361353678665958,0.8082273389021614,0.2739456611176462,42.60393142700195\n0.004419889502762431,0.08648257386012884,0.6370271463450414,0.580791878286617,0.6210100329684282,0.21002829667856937,41.96218490600586\n0.13502762430939227,0.0764601492684782,0.3197599400567864,0.6196961699870421,0.622160807579063,0.4736387808733291,48.52539825439453\n0.06033149171270718,0.3711040198779772,0.1149627654271072,0.24360586805408152,0.416683392068999,0.2974440322330833,33.06657409667969\n0.046629834254143646,0.3823766674508697,0.21906342613583227,0.12541980567410235,0.32259457351569526,0.24438083535007338,22.86111068725586\n0.038232044198895025,0.3482831613620575,0.6694392561575472,0.5851780939272534,0.7133360590834814,0.2964652146090829,49.70762634277344\n0.008176795580110497,0.22551185920895922,0.8126966863848375,0.8823915432685817,0.480675973772631,0.8538485565125056,33.235374450683594\n0.20198895027624308,0.14875272806034626,0.13130684578217044,0.8142855118156719,0.21556489111847957,0.9469025772724622,42.490196228027344\n0.002430939226519337,0.3114653803501382,0.5290127798703468,0.5378896159357397,0.7871660821142399,0.19691716788083788,53.32777786254883\n0.013922651933701657,0.38433568214075237,0.9279171482973797,0.8095717888980399,0.3545459140716891,0.5925527454881987,31.579832077026367\n0.005303867403314917,0.36145604485209365,0.7259721459704055,0.6696035152589683,0.7039338330469699,0.48328276164310563,41.800559997558594\n0.05325966850828729,0.2393699774510359,0.1645906059308993,0.04213649153743773,0.252428249481629,0.27975332462272623,17.74193572998047\n0.006850828729281768,0.07681717729077886,0.315562077978677,0.5049888303565331,0.5721225733675909,0.10596417266338232,25.54366111755371\n0.23712707182320442,0.17705061685875587,0.47879570543673683,0.33327378768883226,0.3280070124709763,0.1667484603178808,38.55774688720703\n0.00287292817679558,0.4684110283410251,0.7490096861225385,0.6947036729679149,0.6469927150812704,0.45259710058993863,45.21527862548828\n0.039779005524861875,0.2598810990960487,0.1712672183480527,0.13270594938559102,0.3054148585577178,0.20335351259369933,30.711864471435547\n0.04773480662983425,0.1785019450482736,0.8480872177576073,0.789285392693153,0.8869148161370369,0.35820302203306786,38.693904876708984\n0.6391160220994475,0.08309691465671597,0.742034276723041,0.143057561209759,0.08414239711074972,0.4010186170744858,4.474930286407471\n0.09392265193370165,0.2075843524600222,0.4521963660626037,0.4434781999945393,0.6469385630571342,0.2647221814543039,48.08073806762695\n0.06011049723756906,0.16643343592232857,0.7407052433622894,0.6279362530762527,0.7048663532454508,0.4330828003193054,48.53703689575195\n0.32795580110497236,0.3592897895408013,0.08789403343520558,0.4097461413995401,0.14851812937386472,0.048685784994336914,34.299442291259766\n0.33392265193370163,0.11026965579409669,0.6969052383343264,0.5317312881926688,0.6062260600033449,0.5353850234715988,31.770950317382812\n0.0055248618784530384,0.502297255935507,0.7202398779997943,0.9444857320514042,0.40413173487413145,0.8834968751688167,25.63165283203125\n0.0022099447513812156,0.18523849611400756,0.7347209012438122,0.8856451791985894,0.3904377698346179,0.637976557765178,32.238826751708984\n0.04088397790055249,0.303571489640883,0.2471836128687564,0.19548373517566986,0.34323058110213417,0.19539423550543067,17.380281448364258\n0.08331491712707183,0.057318332535238596,0.20808720959183072,0.36856716279343615,0.5327062498708955,0.23288564055840838,23.03760528564453\n0.949171270718232,0.5002785535227914,0.15243058510906435,0.16978096407705126,9.818438349348256e-11,0.08520231011603714,16.117263793945312\n0.10541436464088398,0.3271348088918384,0.5147699539650445,0.5696447215132379,0.5551494122215468,0.3612744376936248,65.46175384521484\n0.007955801104972376,0.2542019410364273,0.5563408002534035,0.5653299620057644,0.667760633705874,0.19733162633514809,46.915042877197266\n0.04486187845303868,0.4029552218309739,0.12365387040928898,0.23921488867123442,0.4115339226337498,0.28327318482162056,29.411144256591797\n0.039779005524861875,0.28623044506711576,0.12232964300766966,0.320529586339267,0.3541655563690427,0.1694994773857425,22.007102966308594\n0.49458563535911604,0.2692974054667489,0.665566692796688,0.304263788560334,0.15896854397963012,0.2158602074755479,64.51695251464844\n0.0013259668508287293,0.3363329293670815,0.627530995466885,0.5632374882396503,0.6903153339390296,0.17096969759021038,50.83479690551758\n0.07447513812154696,0.32160290074742914,0.91929332674305,0.7822410088988648,0.9565828945114608,0.27804806978932467,34.67746353149414\n0.08883977900552487,0.12944288811495677,0.7265727953793102,0.7686833985667977,0.3712155357773387,0.6379517736894614,21.518054962158203\n0.14011049723756905,0.09584325437872826,0.07676062065177099,0.5549533405349895,0.474511697756948,0.38184896268844626,48.61033630371094\n0.27933701657458565,0.08560731172908191,0.5552291702360049,0.4992794853168344,0.2591877273869224,0.10674118257679059,32.86182403564453\n0.011712707182320443,0.24271319057870955,0.5475205390979844,0.5604268803352512,0.6733631045200131,0.19786095652653585,45.55665588378906\n0.0033149171270718232,0.36627268501844307,0.763815265441115,0.6819749537805349,0.691990224883161,0.5251021472648161,48.11772918701172\n0.08,0.26179941933276896,0.700070720979404,0.6245420867510251,0.5422501766437462,0.2716962915328378,61.24373245239258\n0.005082872928176795,0.3390412219177042,0.7178523878383571,0.6937985619478542,0.7220229021909312,0.5888242144141805,49.27824783325195\n0.015248618784530387,0.2950420723878475,0.9593953530977498,0.7929022639667377,0.6868037427452042,0.6181613824961487,41.85318374633789\n0.35226519337016576,0.3575055962523125,0.6936052312702696,0.42072418532443423,0.2476492892538658,0.19365499458800187,55.54130935668945\n0.019447513812154697,0.0844026119983763,0.8692168027434016,0.7346226417592501,0.40349269983143354,0.9651442091203759,32.12569808959961\n0.012375690607734807,0.27818430521713194,0.9884611998156981,0.7626810833811319,0.7214921417980128,0.6937749595984359,48.11731719970703\n0.020552486187845304,0.1450344404637159,0.15755665506894712,0.6286508144078795,0.7427971708900264,0.22250681807830697,52.82686996459961\n0.03314917127071823,0.11844765968530734,0.5773291133809073,0.627918389042962,0.7275348844435658,0.2696548259891273,63.49720001220703\n0.012375690607734807,0.23543568165188175,0.5876291431450947,0.6337992288022511,0.7960060913703053,0.19784172432916663,57.44803237915039\n0.004861878453038674,0.40146090787659866,0.7317055172958727,0.9130974346241412,0.43892776180987325,0.8006254287250572,27.209270477294922\n0.028729281767955802,0.24090975784656649,0.8326792915611168,0.6458419691112693,0.7766076133473927,0.35176167756235766,62.291900634765625\n0.2864088397790055,0.38291041052059316,0.5556627462576793,0.7146661347024642,0.2867434640640872,0.742074154085595,26.651988983154297\n0.005082872928176795,0.7633556004716934,0.7888360435101445,0.9186448124286711,0.34741992515396003,0.5279034839814564,21.455678939819336\n0.3222099447513812,0.41885518284024004,0.18392378068262197,0.348558254572331,0.33729417280582147,0.21024725846632053,27.229578018188477\n0.0015469613259668509,0.2274246878721955,0.7326039876424413,0.9172811912208164,0.4932260728473686,0.8552307595074824,31.476322174072266\n0.425414364640884,0.39110546669429463,0.00795518240939221,0.6603856740809817,0.23237780107909115,0.721341538587997,22.063888549804688\n0.03469613259668508,0.23922996126365437,0.25954358493069357,0.20125381792855684,0.2191400124557134,0.14088478964960202,26.814971923828125\n0.10696132596685083,0.20733759144598804,0.7229963130503805,0.59528318209201,0.549019179660777,0.2672992959017754,59.05270767211914\n0.22939226519337017,0.20324816816414126,0.945196534076511,0.4016989898698688,0.346913095134357,0.10535789834583727,45.84819030761719\n0.6638674033149171,0.17499383322439785,0.9011169983394584,0.19417966074545082,0.053590366025351395,0.1598157132667031,28.27777862548828\n0.00861878453038674,0.1264521677273444,0.9119888629761195,0.7473394515911029,0.7770853388589095,0.6364396383371387,29.372833251953125\n0.0017679558011049724,0.34284510231484366,0.7507300709633606,0.6725403623319547,0.6167115029135394,0.4998779088173616,48.909217834472656\n0.24839779005524862,0.2763603832349555,0.35341809821385645,0.48090811348070756,0.31482308188680463,0.08170247195355868,53.026611328125\n0.017900552486187844,0.22661460503746544,0.1542821949134789,0.5893856692349829,0.7259461310839725,0.20360512617427262,68.37955474853516\n0.030718232044198896,0.3631527138211238,0.5924199099297544,0.573123444262708,0.7510068764558198,0.2764179033437377,53.25920867919922\n0.013701657458563535,0.10346860714461624,0.5893196949680803,0.5048506818324185,0.5739916119596028,0.27693907442109006,33.85582733154297\n0.055911602209944754,0.2953085651935035,0.17550603186600894,0.150140054941734,0.33822939766565985,0.21938482204540272,22.294116973876953\n0.051933701657458566,0.2728804488639907,0.758224226892069,0.6724546149721595,0.6723575584648795,0.7399633974193055,45.04469299316406\n0.062099447513812155,0.2790706451774483,0.8529905267375767,0.6938319081433301,0.6667643187775475,0.5919583570980548,29.312849044799805\n0.270939226519337,0.25852396086001156,0.7097291498948399,0.670128717837714,0.43511892245315886,0.6514873757938812,16.962499618530273\n0.07204419889502763,0.3251185303460399,0.9160932581669099,0.7816395864447455,0.9509186280650012,0.2808304503688451,37.25698471069336\n0.3244198895027624,0.3996525895377009,0.66185123019263,0.611528733966547,0.49977276446020913,0.5876904656435904,34.97844696044922\n0.0055248618784530384,0.3175960593689055,0.7211310492296232,0.6756248854134774,0.7129441771715725,0.5781192114128288,51.31754684448242\n0.1692817679558011,0.40213375818360975,0.46247207958323444,0.6200129588440634,0.18127248976660212,0.005043100984907764,32.61033630371094\n0.015469613259668509,0.28215893567670297,0.8296248658259658,0.8909317421170756,0.4715445666537868,0.7809830671721012,36.53910446166992\n0.01016574585635359,0.31297548731239494,0.5290317066497994,0.562731340629748,0.7142986833388111,0.23023132126121074,53.324562072753906\n0.0037569060773480663,0.23207213076585703,0.7409383907307027,0.9200632166719505,0.49210675462426146,0.8125922724526828,35.155029296875\n0.015027624309392265,0.29571619143769806,0.9559763110194232,0.7952043423901289,0.6801353413712756,0.6114175373389074,41.88227081298828\n0.023646408839779004,0.2388408359411628,0.9740193032323422,0.7547137245334923,0.7215160721713282,0.6865112623183668,52.066009521484375\n0.03314917127071823,0.24217768641817913,0.23958620838756353,0.19536225974929328,0.23255236933062265,0.14580425997586074,34.618385314941406\n0.034917127071823206,0.2467014931626097,0.8622933358955857,0.7102930193529078,0.6253384318922217,0.8307646438513787,37.94429016113281\n0.00287292817679558,0.2848100969266319,0.7932987744087766,0.6878236382799008,0.6814175860426799,0.5301101255743425,53.956214904785156\n0.13171270718232045,0.07364809438369847,0.0061760286717910074,0.5542340154611517,0.48393215085912966,0.386182985909303,50.03760528564453\n0.002430939226519337,0.20923051788945993,0.8568762030465319,0.7006774057003156,0.6397288766297873,0.6978858034443991,37.637882232666016\n0.04,0.11789866329682057,0.7620339414628626,0.6608942035619895,0.5827567138554625,0.8143433532874713,23.857542037963867\n0.004419889502762431,0.3118387694741291,0.7056634569974592,0.6188863338111984,0.6854655821400828,0.435896529073804,49.44707489013672\n0.004861878453038674,0.1923952661700287,0.7711969640479641,0.8896550592045689,0.5012647967777785,0.7881089797143993,39.39495849609375\n0.015027624309392265,0.24743361459032734,0.5847695019787493,0.5098156921516727,0.5889462725751395,0.20060565488202425,28.949295043945312\n0.23558011049723757,0.2543413323206193,0.2635727185892886,0.3361689520174738,0.3846348306965998,0.20444063785551567,39.153846740722656\n0.039779005524861875,0.26554224858193465,0.1309208095019349,0.3207915921608635,0.33905573050736537,0.16495360859689484,20.17887306213379\n0.0072928176795580115,0.162622814145326,0.9057869902041136,0.7526426876073271,0.7734615630157334,0.6247099610370386,41.83333206176758\n0.01016574585635359,0.2356375632550295,0.9705480639819827,0.7679378729108003,0.6956346972654206,0.7091467917878783,43.01404571533203\n0.2450828729281768,0.26628095989783307,0.6115051481143211,0.46722902772226377,0.40574856379455554,0.3313299677365169,34.332862854003906\n0.12441988950276243,0.2292665805551868,0.03402506926422752,0.470682740825127,0.1545861253249189,0.07717585069876073,10.125391960144043\n0.013038674033149171,0.11601615190650799,0.9238119043720847,0.746286664562506,0.7766183731958367,0.6401373733566772,44.30736541748047\n0.0035359116022099448,0.6038819350321409,0.7857288264888075,0.9122268607351091,0.33613604857193263,0.5400974332741881,24.04929542541504\n0.009723756906077349,0.3248183117046081,0.6677973368216751,0.624389647000278,0.7441520298391812,0.4205824241498301,62.62464904785156\n0.1827624309392265,0.06901178612868723,0.28515202677070733,0.43982440971882053,0.43265888595603785,0.28975247223993156,57.604225158691406\n0.010828729281767955,0.22410440679793256,0.9610424072773747,0.761467520052919,0.716262796657238,0.6571385744843197,48.97075271606445\n0.027845303867403314,0.1395832395130611,0.4768909330247905,0.8067433169603503,0.4731895887290136,0.5162910402672336,45.813201904296875\n0.2828729281767956,0.414316567783863,0.5555647598591233,0.6695654053212815,0.32572604219481827,0.6341798091362172,18.79008674621582\n0.004419889502762431,0.33756944235107367,0.7368088729985762,0.6489395924838719,0.7176951500339841,0.6151966794586339,39.61416244506836\n0.08243093922651934,0.22519630203469285,0.8328133916128434,0.7705329214801585,0.8963464994635508,0.24081277196431194,38.15571594238281\n0.031823204419889506,0.33348359806022165,0.9263911236581106,0.7980697333299527,0.34404247928376863,0.6044937622458325,28.92458152770996\n0.08464088397790055,0.13793167719244082,0.9077635231184238,0.6151741876933967,0.5570151581823409,0.2718043231104045,65.3767318725586\n0.08486187845303868,0.306660518662089,0.6725343362754683,0.5715597458819979,0.5792063166508554,0.30230318339486595,55.32022476196289\n0.16375690607734808,0.34314270772475547,0.960459496419616,0.535246929944273,0.5140841860485466,0.25012368604328566,49.65266036987305\n0.1712707182320442,0.10659379533674526,0.4391221202599586,0.440899824522919,0.44937351675449555,0.25494989401531626,76.31481170654297\n0.009723756906077349,0.2880125932178933,0.830168565149612,0.8929861059455029,0.47781150220708307,0.7891586834757525,40.918766021728516\n0.07624309392265194,0.16416628715061307,0.38897005888940095,0.7896450552300719,0.9272462559243474,0.29823212289816564,54.35955047607422\n0.09038674033149172,0.06603069493113213,0.17812091921959067,0.37509110775118953,0.5476400375563906,0.2291779213598528,32.35972213745117\n0.11138121546961326,0.3284967191158685,0.4485119247046889,0.7415169676738966,0.7475679583367311,0.32621920299416096,56.91292190551758\n0.09635359116022099,0.31926455088502464,0.24525940443665473,0.035890034563466164,0.2362113351699393,0.2912487801379601,14.439939498901367\n0.0015469613259668509,0.291115464791571,0.7062454342472628,0.6081417132546356,0.6329126008359862,0.5209203866081391,40.77653503417969\n0.11160220994475138,0.34041093396337363,0.44493815832617384,0.7382859595193905,0.7413731666852971,0.33544765174199104,56.715084075927734\n0.2532596685082873,0.03106058222259245,0.7275320351164081,0.8081343296859173,0.20958676636057658,0.48022582380895745,36.399723052978516\n0.008397790055248619,0.3386285585750726,0.7094769060000731,0.6548918883763237,0.7306655887618705,0.5606215926101895,60.113765716552734\n0.02585635359116022,0.2460219204121958,0.5063010264578042,0.3175367652953031,0.45100977807880344,0.294820294276838,24.385154724121094\n0.0892817679558011,0.2493696025444978,0.3170481060044168,0.01381723502951209,0.13045447522711606,0.19342839513335292,16.567142486572266\n0.013259668508287293,0.16861209461511065,0.9131112294850012,0.8715897578054889,0.41655065787302986,0.673220985755508,27.042253494262695\n0.014806629834254143,0.32612610152513044,0.6797148423680022,0.630072791457817,0.7473880395594705,0.46495625660520695,53.051387786865234\n0.00574585635359116,0.341716830137867,0.7314111761696779,0.6493159281185287,0.7110093447521898,0.5997893275171124,48.351905822753906\n0.0037569060773480663,0.3428245751918897,0.7353624596558386,0.64942192138272,0.7141288776431481,0.6141424973865696,47.42318344116211\n0.0026519337016574587,0.15746955946086816,0.7027676597412179,0.722707331554372,0.5122207331702078,0.8252254029287194,36.43098449707031\n0.005082872928176795,0.3368990537839002,0.7313442958907155,0.6489777024215586,0.6975620036705911,0.5984001923425416,40.820335388183594\n0.016574585635359115,0.37691944470584277,0.6735396198594407,0.6170844483199459,0.7325804302060019,0.3372891269717508,60.64944076538086\n0.002430939226519337,0.29945210887885804,0.7195322031698596,0.6365848270600433,0.6863692330184215,0.6793719761906573,45.38750076293945\n0.0077348066298342545,0.25812307599568013,0.703796538144418,0.652331376937994,0.7786015955347243,0.5613780590400443,52.574859619140625\n0.0769060773480663,0.22076857888977186,0.48983090902880805,0.7843013274050556,0.9415261623281712,0.268905751839282,66.02941131591797\n0.023867403314917126,0.20609598455417796,0.8766532447257973,0.7738151398634313,0.5251546001727817,0.6662139631605831,29.731672286987305\n0.13060773480662982,0.37365389000181687,0.2159650359533431,0.3028930217391631,0.3851172305685062,0.16511487379253842,23.22576141357422\n0.09060773480662983,0.1666201683572446,0.03340330227993024,0.17901547835277587,0.4310329435027787,0.2933442614704539,31.469358444213867\n0.056353591160221,0.12714812051590885,0.9358259959050351,0.799174921522869,0.9882574188572122,0.322210838847417,45.046348571777344\n0.026519337016574586,0.172014067579063,0.9707359738013009,0.6869876015218974,0.7546147771127669,0.5113672910071104,50.8011360168457\n0.008397790055248619,0.2112004589169297,0.8484297670036635,0.7132655944924756,0.7615968604071807,0.5921109263958448,53.66573715209961\n0.0026519337016574587,0.3322544702957424,0.7312936264407909,0.679019051738705,0.58298855037139,0.49955040934158673,38.97262191772461\n0.01569060773480663,0.210761701132019,0.13347865128762626,0.5941517933169341,0.7353619392242575,0.2043254900581888,69.78910827636719\n0.0033149171270718232,0.3602105559859242,0.5653714626925127,0.5516663584095058,0.7725324530424426,0.2335108863497538,47.80055236816406\n0.023646408839779004,0.2883338313302466,0.9032393438416587,0.6232070479964354,0.6972135727313604,0.22303562682255712,66.43888854980469\n0.1611049723756906,0.0344902355573732,0.6317206460386623,0.49662250809873515,0.5341798199348506,0.46355110993617565,33.87955093383789\n0.10696132596685083,0.3222519668603165,0.47073934777218207,0.7473418334622084,0.7659865845874064,0.3522306732525888,54.24512481689453\n0.055911602209944754,0.16666697928708055,0.6706240895259673,0.6170141831223359,0.7049574297768156,0.45454896924606475,48.00279235839844\n0.0059668508287292815,0.34257067513232636,0.5896035966598687,0.5826914204931919,0.7924845634858405,0.22382660078357677,54.98997116088867\n0.4207734806629834,0.4036982506598183,0.004503520082377251,0.6525802824685107,0.2297567196372262,0.8010736278765063,33.504154205322266\n0.6875138121546961,0.27321174223675776,0.8239377505309992,0.12906525940095212,0.09570339858719643,0.2571115071142024,26.0222225189209\n0.011933701657458563,0.2761160650242987,0.939181213148616,0.7909586571447127,0.5660716579409792,0.5928054326364082,40.73677062988281\n0.20044198895027623,0.30149264503028755,0.9491681023173317,0.2792696241155787,0.41617941370321854,0.20260548133812922,29.977527618408203\n0.0072928176795580115,0.26003880193734075,0.7832435621124406,0.7286072262825045,0.7018956943231276,0.6533547086669937,45.70197677612305\n0.0077348066298342545,0.2956660476908511,0.541941807199255,0.3822426757452218,0.5152696508809407,0.25446270902199114,33.611732482910156\n0.16287292817679558,0.134849001353662,0.6979598333930158,0.4910751302942052,0.5919159907456862,0.254811833217296,58.355525970458984\n0.08044198895027624,0.17795155682995553,0.8140300482915626,0.6855989706674358,0.5743533898146629,0.44557213407880797,38.88285827636719\n0.0070718232044198895,0.2718523316254859,0.8569697335889388,0.722732341200979,0.6332732615483117,0.8241978453340337,42.53107452392578\n0.0033149171270718232,0.19849648005658532,0.9065952400728432,0.7383979074613454,0.46461063809093395,0.7081837709448112,37.0042724609375\n0.1878453038674033,0.1563371023261675,0.5260798504795292,0.41366312843240804,0.1791712324782535,0.10913597456626778,57.57374572753906\n0.019447513812154697,0.020228931671039892,1.0000000000260731,0.8421260122314075,0.4924470715794195,0.677088099074684,36.51396560668945\n0.016574585635359115,0.36733558853449993,0.5860855072648553,0.5740285552827687,0.7567960864975992,0.2722501297396928,60.013118743896484\n0.030718232044198896,0.3553963396864919,0.10948238063909829,0.23636855270025403,0.32625371574597,0.18288674311619513,29.244047164916992\n0.0059668508287292815,0.3254108335470706,0.6947869667577481,0.6459813085709366,0.7349272531065167,0.5885191371653226,42.025211334228516\n0.01149171270718232,0.2436426299226451,0.010473153565582368,0.3580916936717862,0.5123857175130159,0.2818264144016642,38.972068786621094\n0.0017679558011049724,0.3357676002815949,0.5339264009745471,0.5389066748977553,0.755391896877163,0.1937627501053192,51.10340118408203\n0.15756906077348065,0.24102903860993086,0.6996289546697603,0.6550169366093584,0.5343391597669996,0.6658271720779269,30.871469497680664\n0.4205524861878453,0.23864622593876628,0.6628459045952949,0.5075660148926007,0.4615460215849303,0.6772662499555776,39.79665756225586\n0.009281767955801105,0.42211471574989384,0.744695823256013,0.9137798406958448,0.4170413481199669,0.7283169676210555,26.1392765045166\n0.025635359116022098,0.2968559959189911,0.9137750247410481,0.6182217917727854,0.6975141429239603,0.22923851658457822,66.46751403808594\n0.06784530386740331,0.28970948942444696,0.877056987729635,0.7690871257191668,0.8119482473662636,0.4137110698307647,43.6694450378418\n0.0061878453038674034,0.19105138345619432,0.5406104398186158,0.4868187266288145,0.7326793855334953,0.18509261787505535,55.89335250854492\n0.13569060773480662,0.3116598577973127,0.1824577615728281,0.01428408176617498,0.11016988252694894,0.13896742852464072,15.273611068725586\n0.00287292817679558,0.6667712452062182,0.7874626213348024,0.9143252891789867,0.35519194595572495,0.5303219558056529,19.990222930908203\n0.012596685082872929,0.24422842932170477,0.6167163355358338,0.635054474874809,0.7914142819490847,0.22558481317480597,58.11235809326172\n0.04243093922651934,0.38165859687668696,0.22223678079344014,0.12661550496902466,0.32230455738208824,0.24232989173780295,30.754310607910156\n0.0075138121546961326,0.517625828191994,0.7348161292552282,0.7016468272402226,0.6663020568733573,0.461987872764368,45.41292190551758\n0.039779005524861875,0.3702625972014678,0.29144412002055214,0.08617847921225998,0.2839826515849152,0.23410662436778318,25.09206771850586\n0.02541436464088398,0.16709607947724356,0.764558247626441,0.7631002926956864,0.6498091495092295,0.8019512540824509,47.81111145019531\n0.024751381215469614,0.2788004408255756,0.855199782653048,0.726050287650833,0.5518997028035117,0.8141223210478503,27.029829025268555\n0.03955801104972376,0.2017834140242782,0.20360852248451217,0.3752399746952784,0.4866858489029917,0.18075411634348745,24.748579025268555\n0.005082872928176795,0.12052973296238216,0.983027007403102,0.7415872328715066,0.46603328996498455,0.6206257416684541,31.564788818359375\n0.019226519337016575,0.38765441042527155,0.15769869078829177,0.11422977522082554,0.3084115057478675,0.18150477017142608,32.52089309692383\n0.0026519337016574587,0.34355453786313433,0.7427010425498539,0.6725486988808237,0.6358097635257683,0.46598093090395526,37.71892547607422\n0.048839779005524865,0.2092237765095968,0.23343719055683151,0.3676477605467429,0.4672725540395987,0.18459515730578335,24.47443199157715\n0.22917127071823204,0.15775824579798356,0.053793679296648744,0.4492721014584805,0.3775786631997847,0.24416452680805178,30.72346305847168\n0.0061878453038674034,0.31959684789018705,0.7110456219849235,0.6580669225598524,0.7322368794166121,0.5728529634033844,56.22283935546875\n0.01966850828729282,0.222236476482043,0.8576864050046221,0.8751006358148822,0.5041741892406555,0.8791070264308756,38.19805908203125\n0.009944751381215469,0.29685239799153607,0.6236792261013885,0.6240383210122281,0.77962148805445,0.21967174066452777,52.05196762084961\n0.08751381215469613,0.24835038544232912,0.317055426339519,0.014529414490033539,0.13108267692513742,0.19341022116693946,13.39714241027832\n0.17502762430939225,0.1139081167423761,0.23276346510708082,0.44038653129970035,0.4150677684867886,0.28726388111240814,49.83427810668945\n0.4205524861878453,0.40080445654419844,0.004673627032387677,0.6575500565299757,0.22925068337693455,0.7920359060875943,30.863510131835938\n0.04154696132596685,0.21594122068689856,0.2004917147632732,0.5863785569643866,0.7158790875263877,0.21328783206235633,56.757022857666016\n0.0033149171270718232,0.6541804685054853,0.7271736145351159,0.9554578212985348,0.38549752947416666,0.6461561002590418,20.53975486755371\n0.0037569060773480663,0.3204620547608202,0.7175493047467649,0.6490432038769578,0.7174843628390564,0.672167846577719,43.72058868408203\n0.016574585635359115,0.18234496710883172,0.5786355279671113,0.6694224930549562,0.7711554864265394,0.447995390947326,60.23389434814453\n0.0077348066298342545,0.3208042365982538,0.6900329501771376,0.6365752995756215,0.7369164139409938,0.5476554107800308,60.002769470214844\n0.015027624309392265,0.2597008997399326,0.5107155916733003,0.34574407386127387,0.4789946151600359,0.29006757967784813,31.182960510253906\n0.023204419889502764,0.07191834341854234,0.7503637571511758,0.8741848063748471,0.3991258476787745,0.49532941745614545,28.636110305786133\n0.029613259668508286,0.16625492191117824,0.9322181952728856,0.8582060240641175,0.5027722927026744,0.9461808944340214,38.23143005371094\n0.06740331491712707,0.17989229783565872,0.8432058910013069,0.7858400161391588,0.8886863693262064,0.36122885707912616,31.643259048461914\n0.00287292817679558,0.14776536208438473,0.9914139471571981,0.3621146739688455,0.5149620838470029,0.2714533585134375,23.85451889038086\n0.00287292817679558,0.3167806553888341,0.7182850726888018,0.6483083966409348,0.7098266433781393,0.6730971267236472,47.793697357177734\n0.28861878453038675,0.2689078824785912,0.18755345744662752,0.36236477043491494,0.3337920185282544,0.1912741589777958,19.47191047668457\n0.011049723756906077,0.33841862897630176,0.861839432682526,0.7444716787801738,0.549507959005668,0.785022503433574,34.08831787109375\n0.08287292817679558,0.26699865174281,0.3197469119821408,0.7684106743252267,0.8238352928295088,0.24630795060384394,49.049156188964844\n0.015248618784530387,0.17438385196554831,0.6399005794470867,0.6498351760195109,0.8041055525872872,0.39343137718221544,57.820335388183594\n0.2419889502762431,0.07275453963201177,0.6494690849417603,0.4305767951520161,0.4209957394156056,0.38537753412187464,22.501440048217773\n0.016574585635359115,0.2966583560829482,0.9582006744090762,0.795241261392263,0.6802052509876687,0.6228429348975364,43.28072738647461\n0.01723756906077348,0.3019570427824304,0.6915884683404415,0.5967289778530017,0.7168287764447902,0.3513053192968731,51.03221130371094\n0.002430939226519337,0.34666379102392963,0.7280751403259009,0.6660438088919137,0.6114374720633796,0.5159408118309314,35.2230339050293\n0.13104972375690607,0.15183740169568563,0.5091868086468914,0.8957062027478958,0.2305807005994904,0.7884699438270638,16.513080596923828\n0.0033149171270718232,0.27104991805717316,0.7942233009046363,0.6913023610293709,0.6694017751800226,0.53645895918817,54.68333435058594\n0.016353591160220993,0.32265137468074534,0.8268506922242335,0.7483041093887992,0.5354303142337971,0.6743231409642317,35.13927459716797\n0.011712707182320443,0.1751737485336096,0.6758527608782748,0.8606748334648884,0.36028544066027085,0.5661154983052386,27.59357452392578\n0.23911602209944752,0.13502531873541876,0.516519535272825,0.45722993282169844,0.35234243822312244,0.1893051592495314,31.450138092041016\n0.0017679558011049724,0.30590718839884695,0.6268320626023476,0.5594848503130565,0.6941466043459155,0.1776139310074892,50.743282318115234\n0.3681767955801105,0.28592606040442026,0.06290135378286901,0.4308161731981111,0.17139503709048023,0.042010728683387656,28.45014190673828\n0.020994475138121547,0.05191226190356901,0.541390384391617,0.6419952472760114,0.7890191279260509,0.33163295919682456,58.59339141845703\n0.0070718232044198895,0.3292423990491535,0.8371356569509644,0.724704530476269,0.739131590389781,0.6593950296155273,48.3863639831543\n0.0022099447513812156,0.34364789461236217,0.7266457016732553,0.6662510316780855,0.6882113425908304,0.5086834946099578,45.79469299316406\n0.027845303867403314,0.0557876132359566,0.7154640489424156,0.42010132603036615,0.5450586734785908,0.16612927251533988,30.405555725097656\n0.08353591160220994,0.2545615254808671,0.8830744304937916,0.7194215403644411,0.6486456747496117,0.5230197941308454,46.1601676940918\n0.10121546961325967,0.09004962541665605,0.21491914042332574,0.561608288403541,0.488398017136268,0.21774700259623747,78.8871841430664\n0.8501657458563536,0.23017161080180903,0.5083281439485885,0.39463555110673715,0.027300183025180697,0.21137838466454215,13.470588684082031\n0.020994475138121547,0.11680196766737687,0.597660972805829,0.6407483377523225,0.8131873350499197,0.38365620644729054,53.78888702392578\n0.025635359116022098,0.1909968085776396,0.8539381388119616,0.8251408893786367,0.5078820447738585,0.720948919566744,38.43194580078125\n0.0015469613259668509,0.3486943855337071,0.7512109639336665,0.693687804941452,0.6771010641100649,0.5726614389370794,41.06022262573242\n0.23668508287292817,0.18476088071258254,0.9595178254867635,0.39277530977340186,0.35829178185636235,0.09718442150911821,40.330055236816406\n0.33657458563535914,0.11090570309053488,0.18318366297624902,0.4661583766603762,0.19354665458588766,0.0743745063137802,28.715877532958984\n0.009944751381215469,0.2906289492538099,0.9384807525619704,0.7929010730311851,0.5587917679123092,0.5931213682550728,44.09886932373047\n0.0022099447513812156,0.22498849331947446,0.08003172830594606,0.5208687650163877,0.5492529564772435,0.23279394254559307,29.870786666870117\n0.001988950276243094,0.3113169942473087,0.5299033145492973,0.5364545385947224,0.7800732252981403,0.19772895371732002,50.3370475769043\n0.8165745856353591,0.06469482234000028,0.15819160396101895,0.2862485064544678,0.028713140746159133,0.3541000919142518,31.989795684814453\n0.004861878453038674,0.999999999960714,0.7377750723586117,1.0000000019054958,0.35225671221748656,0.6005560388495531,18.88642692565918\n0.3593370165745856,0.1334400340258122,0.6460116800638257,0.6506569215508818,0.2026788554640433,0.5211148557171035,19.321428298950195\n0.0059668508287292815,0.276524657027968,0.1679580979972529,0.43977558136115935,0.5522901147907698,0.14586433375344857,32.872222900390625\n0.0017679558011049724,0.2080307984478105,0.06123117158799384,0.4031507403086241,0.5356496857886855,0.22704291740166485,31.200557708740234\n0.01878453038674033,0.17070158151638887,0.139347841352192,0.6280136638871789,0.7198588203230065,0.1782950329892801,72.47486114501953\n0.009502762430939227,0.3384245371519122,0.8683043282775073,0.7460484774519638,0.5574641907646737,0.7725940869690878,32.66713333129883\n0.005082872928176795,0.4393169371332778,0.7120444976233862,0.9405246804030859,0.405511259158927,0.8163363242473849,30.538888931274414\n0.0017679558011049724,0.2382809794926999,0.7412868811182911,0.9251782848708461,0.5090511052471494,0.7366111057917475,35.0521125793457\n0.011712707182320443,0.25071882534013384,0.5040186520647618,0.3563112450204826,0.5072322204842235,0.2848862048583887,34.991641998291016\n0.21193370165745856,0.29571734656177573,0.6837394565153603,0.43258828530054577,0.38938915498721527,0.24790965217039004,61.235374450683594\n0.018121546961325966,0.24158245666189523,0.9221664627880186,0.6474568777207461,0.7059921979340076,0.20686729946710863,53.94444274902344\n0.24994475138121547,0.36702628039212915,0.6539696693992975,0.6186386192162344,0.5437920688054714,0.540679736360084,36.453651428222656\n0.004861878453038674,0.19637461180821184,0.00675442333368178,0.5374001414235753,0.8348841872568561,0.2685303099002088,42.3704719543457\n0.22674033149171272,0.1547586158058049,0.06161885229133206,0.45193979709655413,0.3739855499848248,0.24169358819980424,26.543785095214844\n0.0035359116022099448,0.20937911229335263,0.7602661123632334,0.8986299495298024,0.4945062008272756,0.7613644468005867,39.670867919921875\n0.011712707182320443,0.2966515957666248,0.7083200808703046,0.6650612870609268,0.7173746476631191,0.5709743427334109,46.002777099609375\n0.00287292817679558,0.23301351901623535,0.7011838362821856,0.9243672577594496,0.4721440019263916,0.771139126761735,35.20786666870117\n0.0017679558011049724,0.29089464672813364,0.7056253488182028,0.6077618048133206,0.6314234495707325,0.5131819270459642,40.27158737182617\n0.004861878453038674,0.19506193638093478,0.008517593676569419,0.5382695243770547,0.826420772696331,0.26155724271595004,45.49159622192383\n0.30320441988950275,0.20107890195566286,0.7863269296941984,0.6649529119256301,0.1984699908128545,0.025351807757368967,103.97759246826172\n0.09082872928176795,0.3183368915683563,0.8527320870809263,0.7550912511037018,0.827502284457419,0.3190229564350087,43.792755126953125\n0.03867403314917127,0.38343612453115383,0.12778735597522448,0.17365626836557435,0.36021797111879816,0.18143653727980286,34.800315856933594\n0.009944751381215469,0.3268532616002522,0.7338055410806021,0.6775089454578669,0.6614687682304997,0.5544055746496452,41.79551696777344\n0.06342541436464089,0.10533283538251917,0.946906903850179,0.7984186774468972,0.9912771144658867,0.3205772369853941,41.88997268676758\n0.23646408839779007,0.14528728008150305,0.07488455137985206,0.44803948316142417,0.3696446567014993,0.24147226456325338,29.303518295288086\n0.0055248618784530384,0.2947765264052061,0.8380410869204706,0.724523508272257,0.6296256141288062,0.8152984604033914,44.396121978759766\n0.0030939226519337017,0.1685318229599429,0.7146013103184906,0.9157448843578186,0.48694626075413117,0.8801164253958282,35.44289779663086\n0.06386740331491712,0.31555826900421796,0.8540402415728648,0.7677556597712354,0.861340890671095,0.28176948464358254,38.002777099609375\n0.16287292817679558,0.23262179939868408,0.9680789255612032,0.3269368196128546,0.44010158483903283,0.21543021296387327,29.621883392333984\n0.008397790055248619,0.2991078819037131,0.5395290247495809,0.38188420414385565,0.519558303042176,0.25539465775032943,35.54178237915039\n0.10784530386740332,0.18497435142942753,0.10648573250534793,0.1477391288674677,0.42281197831416,0.3368978575783833,37.63445281982422\n0.2758011049723757,0.10407676103504782,0.5610003951203772,0.48118679240004203,0.403876644150228,0.25057924680138327,34.47075271606445\n0.103646408839779,0.1594043733545007,0.9258488671831223,0.735675428787847,0.6776689254011701,0.23202221611862314,50.95404052734375\n0.0013259668508287293,0.24082352120640751,0.5083217360030788,0.4319416072954234,0.5403983067716559,0.20361803965926853,31.501384735107422\n0.16596685082872928,0.27698593026416307,0.7017574959338442,0.6545119799350088,0.5484624310000319,0.6362794620458119,35.518157958984375\n0.015027624309392265,0.17281934055287948,0.6398157908700772,0.6497101277864762,0.8110522400961091,0.39292443854438347,57.45111846923828\n0.055248618784530384,0.19007047481319153,0.9206148063667107,0.7219308415740041,0.6395742405565209,0.6417962500681933,43.59749221801758\n0.048176795580110496,0.40758208079230057,0.12434749868317252,0.24131093524400657,0.40622705366689077,0.2809700755082782,31.455965042114258\n0.013038674033149171,0.36638172115679074,0.6137712692416004,0.5873158232443705,0.7533848617589319,0.27245883128817766,58.35446548461914\n0.009723756906077349,0.293661566559813,0.6224317136898035,0.6235143093690351,0.7729581432213203,0.21928838499830744,45.8375358581543\n0.016795580110497237,0.11796136191683952,0.6314872864866228,0.6450035504821605,0.7968853414994405,0.3327606653152907,56.130252838134766\n0.015911602209944753,0.31725705885680056,0.8244138057146287,0.7491818288911476,0.5283135858413681,0.6756950990566228,34.66526794433594\n0.01723756906077348,0.061147843431380064,0.8940472096630495,0.8396155200862918,0.5051696222141915,0.6584952572429151,38.77450942993164\n0.0033149171270718232,0.23607454101267297,0.6220407865769852,0.5633684911504485,0.7277917096785573,0.20572036115127326,53.8418083190918\n0.14629834254143648,0.23138829731187796,0.20423291524118306,0.42384324553698555,0.5483865828880495,0.26768136328683223,53.93452453613281\n0.04265193370165746,0.2839292485397995,0.56796570457927,0.2995107647694626,0.4693883635819905,0.28761588860365034,27.147632598876953\n0.014364640883977901,0.1921439982784456,0.8912918779673192,0.685416757527871,0.6389452303999416,0.7285464657083223,36.65868377685547\n0.005082872928176795,0.3274781269168894,0.7232976986729636,0.679886052821079,0.7167542218665005,0.5814027333649454,51.78089904785156\n0.2835359116022099,0.3797138224049421,0.653902576936709,0.6107951176660767,0.5383636958669754,0.5391177874694398,29.280452728271484\n0.0064088397790055245,0.050732723994473254,0.3041405728768376,0.5053139557624233,0.5825193504228479,0.09863567790812597,26.567867279052734\n0.06165745856353591,0.40883279612150997,0.29181673568643374,0.21424216106642796,0.2328192488502257,0.18675069707918449,10.997206687927246\n0.002430939226519337,0.39632515048144845,0.7358358837625039,0.9409665174931419,0.4326781419689636,0.7188803694452393,30.132768630981445\n0.0061878453038674034,0.3927786165796451,0.8934584425372092,0.7079968956072801,0.6687811141954599,0.6746906691761578,50.17827224731445\n0.005303867403314917,0.13650588481962367,0.18240373962161036,0.5471777223113363,0.7946498212934858,0.25229980764194154,58.68016815185547\n0.11116022099447513,0.07299205018519443,0.8668028320654211,0.6436589842431493,0.5715000896764613,0.35794508974012124,25.405292510986328\n0.030718232044198896,0.17388849310083193,0.7860527035757625,0.7008358001288262,0.5506604975258836,0.8469827540717877,23.60451889038086\n0.024530386740331492,0.17161835236839065,0.8948686997900509,0.7903024516551687,0.6766129903290063,0.44398175098248394,38.718563079833984\n0.004419889502762431,0.35268482793761996,0.7519893383478342,0.6678016297677158,0.7032979436430248,0.5534572770198751,42.37571334838867\n0.004640883977900552,0.1523616197258834,0.35552344780760214,0.444374974465731,0.6182481621435076,0.1861602348792532,38.593055725097656\n0.0,0.23821864066542647,0.503560292995553,0.4334421860918399,0.5456492304063046,0.20308107180098298,28.332868576049805\n0.0011049723756906078,0.5467583604141292,0.8566321070030093,0.871964902504593,0.3192650177906276,0.5291815815890791,28.735973358154297\n0.026519337016574586,0.37081576907944847,0.13928491829785727,0.17565704009412958,0.3409561960884118,0.17732119978644795,32.565277099609375\n0.001988950276243094,0.4181329462447936,0.7340826528963537,0.6984193918923746,0.5506593215861629,0.5000299566680141,36.71126937866211\n0.003977900552486188,0.2074187341783291,0.8630536322648055,0.8913926341759749,0.5144540778876792,0.8348844443187643,34.711700439453125\n0.08640883977900553,0.10892921004780488,0.7490642597511842,0.6060861584906556,0.5622280989640125,0.2872870701733509,65.58142852783203\n0.1754696132596685,0.09387148598284052,0.395943728383164,0.4429196512203176,0.45938011701043857,0.28117690598173983,63.20200729370117\n0.004419889502762431,0.2891620552939341,0.8183091130433995,0.6972629934706918,0.6727148089520151,0.595616768868746,55.514366149902344\n1.0,0.22286266735090046,0.6638219492755838,7.469538114718423e-10,0.01319046449742895,0.3175738241662527,44.106143951416016\n0.03314917127071823,0.26620415361489835,0.18331237356387145,0.17858793248935245,0.28278260509998493,0.19597310317489058,25.714284896850586\n0.4296132596685083,0.2958691222909971,0.6053127811687666,0.327983651963688,0.2635274447305273,0.2065751050298855,27.747900009155273\n0.030939226519337018,0.06851987369974355,0.8581879222233897,0.7294861367204055,0.38026680260422013,1.0000000056263876,30.515581130981445\n0.06961325966850829,0.25189343503543926,0.88248727596351,0.7195513523396866,0.6628736046177824,0.5181066578536405,57.28273010253906\n0.17922651933701658,0.1322411667248758,0.6979482906037533,0.46551884426857015,0.4568436150329818,0.1974517738903237,57.23677062988281\n0.0077348066298342545,0.25230257619645696,0.5569584667891254,0.5640425606732832,0.6622621747600269,0.19905163505520768,47.30812454223633\n0.06917127071823205,0.24094060534037828,0.5766517383727868,0.27799770494528286,0.46048085538595934,0.2928718303637868,27.259052276611328\n0.15779005524861878,0.1273516969322525,0.6954462212841954,0.4916360609395323,0.5923235126558798,0.25471699118497454,59.602779388427734\n0.0013259668508287293,0.3190441304872534,0.504894928004035,0.533959528611792,0.7476552130640037,0.1845585333127071,53.30226135253906\n0.11204419889502762,0.1536302489465268,0.40367693038509267,0.46914643396212924,0.1546167438553955,0.15343522474428709,34.93175506591797\n0.0035359116022099448,0.2525072603957276,0.2404319298846712,0.5146175443002052,0.49722179842418834,0.21734019714550556,20.936260223388672\n0.2316022099447514,0.10769765841640859,0.9940548694417084,0.3515058200652919,0.34167978119702497,0.16400428340953,35.41242980957031\n0.23602209944751382,0.2827086421824506,0.2614854894772161,0.33951548092059297,0.3853662358043553,0.21117971330511592,36.00139617919922\n0.0022099447513812156,0.3312637904392302,0.7889509621620672,0.9227809316032379,0.4118714761305644,0.8216064984470418,31.69088363647461\n0.03314917127071823,0.2287056636649477,0.16239306255159153,0.3428882104058718,0.4643848576645679,0.21159601216108825,28.550704956054688\n0.0075138121546961326,0.37033773707589707,0.5878618661462558,0.5824699064803875,0.7542735194058323,0.26741024144864045,52.91253662109375\n0.0022099447513812156,0.3268018301741056,0.7261847539638075,0.6608882488842259,0.6979741117456952,0.5435232182747869,48.17131042480469\n0.10895027624309392,0.20858296669339577,0.11218975883531869,0.49979277854005305,0.21137319518721237,0.08572163312338711,59.05187225341797\n0.0059668508287292815,0.3509789179759685,0.5754209460309425,0.5900490203378432,0.7904157915322749,0.19189650613652337,63.57938766479492\n0.02430939226519337,0.24416088296785166,0.7409026590080591,0.8894371179984227,0.46753290709375217,0.8599155019384178,33.85714340209961\n0.0033149171270718232,0.23088826114147,0.0802844071771465,0.5184047193578276,0.5488789488490886,0.23643552997775635,30.04441261291504\n0.5348066298342542,0.1320531939518108,0.13529226961377866,0.5274129558785371,0.13085497089747875,0.6682685875761779,12.865056991577148\n0.019889502762430938,0.23057484378721638,0.8225386965736182,0.7663193914946654,0.5029817863639094,0.6416990155137111,43.178470611572266\n0.0075138121546961326,0.3263568991031405,0.6842675391241217,0.6311851252640496,0.7406474354866937,0.49179084650701954,59.709495544433594\n0.012154696132596685,0.26219036255544836,0.978956816212847,0.7623071296175805,0.7081328786014912,0.6908242436135532,42.269775390625\n0.16773480662983425,0.40665972368451336,0.46183663205964115,0.6233630605538407,0.1919724240818444,0.004868675958837476,29.671567916870117\n0.014585635359116023,0.2512983188979171,0.900736935028299,0.812469335097787,0.5665126941332116,0.5251295079028597,50.92039108276367\n0.11425414364640885,0.06930911695992484,0.876813570673716,0.6497220371420033,0.5781350355653371,0.36029350360771295,25.122222900390625\n0.08243093922651934,0.22914320951639988,0.8334102217164775,0.770741335201883,0.889706379439904,0.2398315618181508,37.587257385253906\n0.0026519337016574587,0.3431503959276331,0.7299908189762314,0.6637345848552062,0.6948858588513063,0.5194208886805629,40.416202545166016\n0.005082872928176795,0.1283998584139739,0.11807106458493756,0.5500002395712624,0.8102269656001522,0.24979538906012386,55.752079010009766\n0.04154696132596685,0.3503513258090496,0.09222160336398026,0.1969116669033709,0.41380986576760204,0.32454238236643923,32.62994384765625\n0.31116022099447516,0.4592037426190018,0.2655234711930216,0.22696849838270253,0.3236431295661119,0.1761418550646787,21.048992156982422\n0.028287292817679558,0.34109067714193014,0.15602078510942474,0.16880082411716973,0.33734891279981805,0.1771156882675108,34.1384162902832\n0.01149171270718232,0.2335876724922169,0.97216974099992,0.7693431768629998,0.6953916305251608,0.7168523081603012,41.646240234375\n0.004198895027624309,0.3184680076194017,0.7073286740954825,0.621587375644748,0.6890640752792646,0.43479860678890314,49.74859619140625\n0.013038674033149171,0.2317982906136087,0.5852152573405647,0.6342089106323839,0.7935208603646693,0.19788546454200312,59.26741027832031\n0.023867403314917126,0.3889580342245302,0.14515838386248991,0.12270804542057838,0.30577778295400554,0.1936902996265536,31.276836395263672\n0.2813259668508287,0.42214849839505053,0.5555861479686393,0.6725141617497951,0.3159251725930042,0.6212398837031047,19.89655113220215\n0.08198895027624309,0.22423628030738954,0.8308457704108315,0.7700720294212592,0.8871889276859221,0.24331321834587552,39.93888854980469\n0.02983425414364641,0.20677125872810612,0.15274116889184106,0.3537543063888111,0.46012960219139915,0.2089140408289172,23.904226303100586\n0.028066298342541436,0.33422757371208056,0.6997897049849313,0.8931159179207484,0.4857202260013744,0.7289798802997524,32.59722137451172\n0.020773480662983426,0.22791447941758672,0.8526930452937148,0.7673233501656012,0.5143441863207837,0.6570587010521836,38.90642547607422\n0.24243093922651934,0.15483121819455534,0.00725350176689628,0.5032524463206798,0.29994041818066514,0.058370864233730724,38.366294860839844\n0.0022099447513812156,0.4531331679251938,0.753217457175989,0.6947882293921573,0.6487462175957278,0.46309554917807805,41.06571578979492\n0.022541436464088398,0.19521240549439617,0.7550141432487746,0.7649867346111813,0.6245806563362305,0.970197031883736,51.75623321533203\n0.36751381215469614,0.38521103895410075,0.002019431501682507,0.6737825081134328,0.23391202023413907,0.5921893888533734,22.352527618408203\n0.19049723756906078,0.23151395966235994,0.975837037920842,0.5005954691025806,0.49890838996854037,0.2628583146709883,43.21111297607422\n0.024751381215469614,0.16961192078194276,0.8992890788369035,0.7906954603875634,0.6736275145662028,0.4526908997279848,38.40285873413086\n0.0026519337016574587,0.33356063158067983,0.7300128011999005,0.6811865544446399,0.5697321231034398,0.5041089002185005,40.78813552856445\n0.07049723756906077,0.20608670568863605,0.8766095348988104,0.7878026779300273,0.890662300838826,0.36601264379284487,37.87465286254883\n0.0072928176795580115,0.3678143779964629,0.9315321631728183,0.694467867728478,0.657292359515601,0.6271859147398154,57.029579162597656\n0.00287292817679558,0.22679722826049864,0.8095726644203095,0.9110514073445829,0.5036917599702561,0.806851507548021,31.495798110961914\n0.014364640883977901,0.05983711845951283,0.9701062127988884,0.7064403428398862,0.7128633901127633,0.558730089128581,54.88450622558594\n0.13414364640883977,0.07527427237930048,0.3191915425590564,0.6224222214671986,0.6149768742315985,0.47093520015830864,48.85179901123047\n0.036685082872928175,0.27697774971331796,0.5684403169142418,0.29212934621375697,0.4767600357058578,0.29076134975774665,30.932010650634766\n0.03425414364640884,0.24579600844094054,0.2420345103762551,0.1888537969537252,0.2255156342376914,0.14548939792483245,24.864286422729492\n0.014143646408839779,0.22670561366561742,0.9652747067580081,0.7693003031831022,0.6833542411686295,0.721132591652624,38.55791091918945\n0.22939226519337017,0.03852064809484241,0.16003981882741508,0.43144855997660086,0.33097387898770037,0.05636524051239008,28.17335319519043\n0.17767955801104973,0.12817296174678355,0.6978176703634955,0.47056960194761943,0.45807564707831394,0.19771366304684387,62.861732482910156\n0.022099447513812154,0.14350414723479044,0.906466402175045,0.8593231216125609,0.5103167103715063,0.9355791379659149,50.983333587646484\n0.2503867403314917,0.3928932200373179,0.6579619891987556,0.6247576460860658,0.5244396876196085,0.5581369890196007,30.334794998168945\n0.24530386740331492,0.3733642757781473,0.6547093839567808,0.6216540680356998,0.5351012862999573,0.5339356458159544,37.3991584777832\n0.0055248618784530384,0.44356199918224504,0.7359306874066676,0.6881142265547624,0.6661553583932054,0.4633642784941091,46.98314666748047\n0.0061878453038674034,0.3468190699983046,0.5904130347569048,0.584139598125289,0.7952411425820181,0.22511659965528122,52.45266342163086\n0.012596685082872929,0.24582240586658427,0.6169582248696445,0.6344101787407922,0.7971548080864289,0.22677865105966444,62.4789924621582\n0.009502762430939227,0.3012068180986759,0.6255974933919579,0.6239728195568289,0.770227258408039,0.21975236559400932,49.96927261352539\n0.015911602209944753,0.183289101145952,0.04393738649753289,0.5725815685862243,0.7648544486213441,0.24089207793926895,72.15180969238281\n0.005303867403314917,0.17696663365737136,0.7653124331072277,0.8961825769689804,0.4390206610478051,0.7838371007230003,28.227272033691406\n0.018121546961325966,0.23117543256176223,0.7477988814782774,0.8960956386736324,0.46677360281612407,0.8419417712257872,34.4901123046875\n0.11138121546961326,0.2157046853614208,0.8933154307731842,0.7845526148066777,0.8823502297203495,0.3685186267160753,40.69552993774414\n0.02011049723756906,0.06996746193835407,0.7759778855123703,0.8739013637133018,0.389521095423873,0.4987201734784418,25.399160385131836\n0.3569060773480663,0.15442639454648366,0.024976676230858166,0.34522363502473896,0.282444287242352,0.2175733760360966,27.156160354614258\n0.010828729281767955,0.24208425392311012,0.7717067139914262,0.7408774352820906,0.5594489418251982,0.6136460797115728,34.52507019042969\n0.003977900552486188,0.2728293204212087,0.8293856075691194,0.7163417810251292,0.6261504182693353,0.6279813363381852,43.435211181640625\n0.0059668508287292815,0.27013059078303225,0.7848946902176875,0.730091131981183,0.707387685600511,0.6466354021985808,49.26478958129883\n0.01569060773480663,0.2016506505011876,0.2641179244166804,0.4824122650837821,0.7601607440233286,0.27069956066599277,56.06940460205078\n0.004640883977900552,0.13924293238519617,0.3392040231898975,0.7515267809944365,0.16323069339941118,-2.4008918092883657e-10,53.920875549316406\n0.04243093922651934,0.27385355568535413,0.7552089278175801,0.6707182309363062,0.6872513641998722,0.7475683051675323,40.49860763549805\n0.02121546961325967,0.12802933816371687,0.9118392310829587,0.860140103401721,0.5050847781633461,0.936146963225402,40.90250778198242\n0.09215469613259669,0.2142388707797815,0.8626476825512557,0.7865462409219167,0.8728555748217943,0.38737394049822416,37.63407897949219\n0.02121546961325967,0.33040998331769145,0.6956651099129315,0.8934720076510091,0.4781813940462157,0.7216537320566152,35.122535705566406\n0.0026519337016574587,0.3158350064348906,0.7344818976073171,0.6760941140212458,0.5776844742613674,0.5282525468300391,41.32285690307617\n0.003977900552486188,0.3111222895626107,0.7073083893408226,0.6190030454953641,0.6987731627858815,0.4352138627506003,43.71126937866211\n0.004198895027624309,0.3901029704865617,0.8889305288286239,0.7089520259205547,0.6546780103286369,0.6739152466091831,46.058658599853516\n0.007955801104972376,0.31126866840064954,0.7271571490857267,0.6474080493630849,0.7075207431799033,0.6358473357355452,53.00555419921875\n0.1270718232044199,0.22364618233184413,0.1547983740208134,0.5042361590872195,0.1637223831951108,0.06567169161733313,52.32122802734375\n0.010386740331491713,0.3145106282751545,0.7315236334915373,0.6765407148535125,0.6617265342172677,0.5590254735953518,41.53221130371094\n0.010607734806629835,0.24563817304442648,0.004004007667339892,0.35840848252880747,0.5191351999306837,0.28232780116114875,38.61699295043945\n0.0055248618784530384,0.28738272867573966,0.7334379541666602,0.6418213706853155,0.717240237753048,0.6441014758434471,51.824928283691406\n0.07337016574585635,0.1529510359888584,0.3475218547369566,0.7742176760802477,0.9200981887383629,0.32416350501093005,57.30277633666992\n0.42408839779005525,0.30150813505480445,0.8463277911295736,0.5143531566075032,0.420654481708671,0.49314725320536557,26.853107452392578\n0.09458563535911602,0.30483977800524115,0.8532919972336103,0.7480814044404422,0.8258148109582765,0.3346703887733542,35.92634582519531\n0.001988950276243094,0.22245591218387922,0.7288697255691066,0.914476537994181,0.5005332446775579,0.880945587691337,34.2633056640625\n0.011049723756906077,0.253401515796445,0.9806751640908582,0.7541980494391682,0.7173201428570666,0.6912826876675883,43.11408615112305\n0.007955801104972376,0.2335045982409263,0.14953384363568661,0.42497701618316686,0.534534953730489,0.15776872651800622,28.91643524169922\n0.08022099447513813,0.1042849295430117,0.7233471798945816,0.7579709332701581,0.37543745335942674,0.6608992512407029,23.249303817749023\n0.003977900552486188,0.2782831156669232,0.6855111897937107,0.6113893945068798,0.6304023811112861,0.31601083238133326,39.008548736572266\n0.032044198895027624,0.14016580077741123,0.589748900007056,0.631798457073696,0.7294089795763766,0.2573412505883575,60.01825714111328\n0.04110497237569061,0.09645476002263109,0.5786508051881941,0.6266452789371134,0.7333766001938726,0.27244696069745694,61.630985260009766\n0.0017679558011049724,0.32813272247618125,0.6273256865902224,0.5624347976771228,0.6964502114616961,0.17226050930598227,46.0\n0.07823204419889503,0.35674026027324685,0.6822923641850189,0.6042020984462662,0.563521691453721,0.2505795228616326,72.6829605102539\n0.0030939226519337017,0.3590584617419032,0.565990869133969,0.5505861798631965,0.7746558473960325,0.23525750421051161,49.09749221801758\n0.004419889502762431,0.09970605557205889,0.9862812252406356,0.9185924112643518,0.43906687547882695,0.7187227697162394,31.282123565673828\n0.00861878453038674,0.2985355652643797,0.6142293736904577,0.6067626098845957,0.7868539289153915,0.2524578981447179,61.48158645629883\n0.10342541436464088,0.3568764512956499,0.49209592680123143,0.5994812299153179,0.5541446893242177,0.24881525248159894,60.59470748901367\n0.027845303867403314,0.10797225602706849,0.7335490535133123,0.8083820442808812,0.37917311986702323,0.6121479314118822,22.863128662109375\n0.0061878453038674034,0.17297893704020048,0.7279199067850098,0.9170632500146703,0.48080468037505686,0.8650945149090775,36.91903305053711\n0.015469613259668509,0.1033874076028943,0.5861446640598259,0.5052806095669474,0.5861404804016523,0.2757573525138406,39.55890655517578\n0.07248618784530386,0.32795150055120953,0.9134119361199806,0.7811572575458974,0.9466079858309895,0.28172865840004446,34.10281753540039\n0.0430939226519337,0.3847690619709408,0.21897513652899137,0.12578780475989018,0.3174701221980031,0.24376244505491937,25.481740951538086\n0.13657458563535912,0.3408800658305889,0.17478095797873,0.01365288592323791,0.11204863732090278,0.139766300876127,10.281512260437012\n0.019005524861878453,0.3366008045343386,0.5377061976540536,0.36572082682245577,0.50694652592909,0.26489106898016473,26.808988571166992\n0.011933701657458563,0.13677864559363548,0.14912937920751995,0.49722512148840714,0.5192913647255869,0.23468363629890046,22.647308349609375\n0.011049723756906077,0.23230183002917024,0.7632051102057588,0.7414657574451301,0.5574428474587438,0.6411301473599487,37.487396240234375\n0.24154696132596684,0.32473264315825784,0.2741728396559397,0.319580410703756,0.37937596946883656,0.2307869998697279,42.12784194946289\n0.36685082872928176,0.30265095043328355,0.06594130859471654,0.4186090837828187,0.14818967471063876,0.054066881735838034,30.220056533813477\n0.004640883977900552,0.35429419982471494,0.7516816720899171,0.6681291370447116,0.706449462094385,0.5529368727765487,45.78672409057617\n0.37679558011049724,0.2098573336615069,0.630890880750241,0.4193188813722347,0.40739896579400436,0.36718697342008483,21.882436752319336\n0.07558011049723756,0.2873916666849964,0.8969931671285127,0.7076765339436007,0.6385634027726443,0.5281121241832191,42.313201904296875\n0.012154696132596685,0.26344454325689076,0.6495916422042244,0.6392930145069091,0.7811059943578071,0.3365727199514082,54.8351936340332\n0.22364640883977902,0.08845283680742355,0.38230252793144676,0.5634959212545887,0.5775449490135115,0.7087555223945109,38.79661178588867\n0.04861878453038674,0.4145489181516167,0.12471647539986563,0.2447777486379496,0.4114394652756881,0.27356386979283864,27.019718170166016\n0.09303867403314917,0.28096285203542914,0.40219644035199537,0.7633468163550976,0.8023496981933884,0.27312965769402164,43.24930191040039\n0.15248618784530388,0.35409294312475675,0.9632418178725926,0.5472706152844479,0.5283937261333309,0.24772496786359594,51.803466796875\n0.033370165745856356,0.2641581448264451,0.1835530110142879,0.17782454280006443,0.2909216072900738,0.19665868346739263,32.70612716674805\n0.023204419889502764,0.0820639686208373,0.6814188041961604,0.6424489937215945,0.770540528749622,0.4744339570848106,44.81843566894531\n0.39646408839779007,0.43278101786431245,0.03375715826096486,0.6647599803660909,0.19744080836933567,0.5795488354239663,15.6768798828125\n0.11049723756906077,0.30832942678033454,0.4614098459140035,0.7487197458966955,0.765625982672067,0.3198616274724384,52.46787643432617\n0.02011049723756906,0.053481479026619816,0.5529697116745866,0.6426633621210825,0.7938795807764556,0.33254064529658384,62.36805725097656\n0.00574585635359116,0.2335871422713288,0.7132737198063969,0.9177528016996902,0.48033242298324114,0.8073418518975328,37.73249435424805\n0.08464088397790055,0.36144354678830254,0.6693127522796366,0.620365475767666,0.5539390174670747,0.2513138431248199,57.46648025512695\n0.2470718232044199,0.2792861420955443,0.34728376349005396,0.48368418425407794,0.3253516523862542,0.0795637871920465,34.522220611572266\n0.008397790055248619,0.29686885377552774,0.6127442156175852,0.6061075953306044,0.7922804791473205,0.2535397475884362,57.26741027832031\n0.10497237569060773,0.16777620138500585,0.21779987264211048,0.52972456178635,0.1912135019846255,0.05666113108961798,61.955055236816406\n0.0033149171270718232,0.3045019894265948,0.8112337227192602,0.7064308153554646,0.6431018245305472,0.6197425329108011,46.53047180175781\n0.013259668508287293,0.2153206918196677,0.8563421792962382,0.7062224016337401,0.6501943873617166,0.8287521646338466,43.84873962402344\n0.07756906077348066,0.19338696859539653,0.9401845870799529,0.7280212859905705,0.6412798235273616,0.6772290738420027,42.20140838623047\n0.014143646408839779,0.23744887355465305,0.9751134068822208,0.7526188688962728,0.7293197845485648,0.6954905206811454,46.02374267578125\n0.01701657458563536,0.2558727806736224,0.8678041690339471,0.7884124369330155,0.5794559686535509,0.7010233815447093,43.86864471435547\n0.020552486187845304,0.12858001042893927,0.9267492896190515,0.8618145587888333,0.5037395031229147,0.9365956531506278,44.54661178588867\n0.02011049723756906,0.03255400616333402,0.8812864863864033,0.847881803757662,0.4881661218233545,0.631173206287528,31.37429428100586\n0.018121546961325966,0.3293515866791835,0.5520108963047411,0.5508065029404481,0.7149470965007811,0.2731259462173364,54.36000061035156\n0.22364640883977902,0.22548474219782447,0.1848448061486502,0.20110971472667877,0.2547255065229181,0.06559554499856277,15.734603881835938\n0.0070718232044198895,0.636582664466651,0.7865857088446506,0.9137548310492378,0.3515113722240413,0.550833784450518,24.50423812866211\n0.06939226519337016,0.23032206097881014,0.4984369071585411,0.7860210383431709,0.955437176441625,0.2696139997455892,64.99164581298828\n0.013259668508287293,0.1141278459593468,0.24948896674851084,0.5020329283147033,0.8015151337736384,0.2514632530664233,53.8778076171875\n0.00574585635359116,0.3197921964145349,0.7141403626090429,0.658159815532964,0.7238705974770132,0.5629721536130536,58.065826416015625\n0.0070718232044198895,0.3087807583748775,0.5243933725821658,0.37011299714085566,0.5155516412259542,0.2627911400103208,31.98468017578125\n0.09701657458563535,0.37341157905595074,0.007335091012667682,0.5675403383915968,0.5381123387516851,0.39696599126776777,63.16143035888672\n0.011049723756906077,0.31734196994473923,0.9415772755285494,0.7869654502364711,0.5628864488166222,0.6166374072264662,43.848609924316406\n0.011933701657458563,0.2645837038985339,0.6488560864458136,0.6386927829883425,0.7792135545653541,0.33478314404852033,58.564788818359375\n0.010386740331491713,0.2677432144249379,0.6895314753950953,0.6603011176567392,0.7247670751230559,0.5091677656339846,41.19722366333008\n0.002430939226519337,0.30865543688068076,0.5254407958342914,0.5419078324905882,0.7968209000027484,0.1947587141381384,50.42457962036133\n0.030718232044198896,0.2482494730454457,0.15019276927751338,0.2092140311628802,0.27075077205863374,0.18037312252606685,29.633426666259766\n0.02011049723756906,0.08742572320131409,0.6787030659650697,0.6440674751377293,0.7735776282661623,0.4743554639539211,48.12083435058594\n0.0017679558011049724,0.3463950826524198,0.7380350397373704,0.6761262692811689,0.6204982640019984,0.48146603981570146,36.9868049621582\n0.13259668508287292,0.22339196035245587,0.07931461660923839,0.47576089002188865,0.1757857608194686,0.07915802463558982,77.70944213867188\n0.028950276243093924,0.24538495469743357,0.8252868140260593,0.6465339026673947,0.7876491581514857,0.35198694272580155,56.01264190673828\n0.001988950276243094,0.31637681643669746,0.7241240265866412,0.6548847427630075,0.683716783384508,0.5301459520600318,53.80617904663086\n0.0064088397790055245,0.13321455759314357,0.1792768531781293,0.5486032721679319,0.7966576795695213,0.2522729071043135,50.77170944213867\n0.05259668508287293,0.3115652133687851,0.16491120478083027,0.15006264413080775,0.33100824582603655,0.21914926596933143,26.840335845947266\n0.0026519337016574587,0.35648992026821796,0.7549050808649337,0.670599137381035,0.7000535259537326,0.5419436628749084,43.52653503417969\n0.019447513812154697,0.11349680735665521,0.6078043686171928,0.6405208690617546,0.8060949486097083,0.39330991067251525,53.274009704589844\n0.001988950276243094,0.29991946071880604,0.7202533728784174,0.6373089158760918,0.6993725980584863,0.676645175741333,46.72612380981445\n0.3849723756906077,0.13599153268523675,0.028031184187164236,0.32015086883350474,0.30694572628456185,0.24127281103312073,24.97771644592285\n0.03845303867403315,0.11437838479720873,0.47278925378441483,0.467075397035964,0.6482271578030299,0.2802897710338742,46.921512603759766\n0.005303867403314917,0.3156245844881522,0.7261006443744018,0.6510975677053851,0.6970774577086944,0.6332249474071855,51.92178726196289\n0.025193370165745858,0.17528611748896825,0.7556453470998449,0.7612138507801914,0.6479635121176586,0.8168466676282917,43.724998474121094\n0.024751381215469614,0.18634868397140764,0.7507808252867356,0.7600872257473263,0.6163550755842082,0.995158276933673,48.19777297973633\n0.7286187845303868,0.22994711906507548,0.08007906647294007,0.26339564413348776,0.05929977385783779,0.5377279161342041,12.736390113830566\n0.0075138121546961326,0.21834153064737072,0.14746893624108506,0.41937128253655404,0.53576151765612,0.16216834472143712,34.333797454833984\n0.809060773480663,0.08010909154752792,0.50746935194011,0.29050371918430584,0.02652361448252871,0.2540593236510147,19.382436752319336\n0.003977900552486188,0.21937415476342448,0.7578949179042846,0.8895026194538218,0.3606303143818465,0.6915032291334327,30.494428634643555\n0.003977900552486188,0.3604634713495525,0.7648478358394102,0.683749447754075,0.699871549281961,0.5263974219546187,55.5\n0.01149171270718232,0.07992207506570755,0.2864219033364884,0.5011206716813263,0.7832173353292604,0.2507586859634403,51.25069808959961\n0.005303867403314917,0.38103467838306426,0.9643594314682485,0.7552508364677651,0.6043470847206934,0.6627694674097528,34.88375473022461\n0.050386740331491715,0.2752277935450328,0.8427462163936161,0.7331315904472553,0.6800442060429248,0.5478975462920441,49.32868957519531\n0.02165745856353591,0.250681501576903,0.724196338766433,0.8783578445515481,0.48417898060649556,0.8126936785842659,31.775623321533203\n0.02011049723756906,0.313491354363605,0.5389492117727641,0.37311653660479394,0.5028313836736374,0.2608785025829589,33.376731872558594\n0.019447513812154697,0.2403473449759645,0.9714270134349454,0.7570824953478353,0.7145301670728224,0.676301081977238,44.35195541381836\n0.2287292817679558,0.15721482619705207,0.06086345736387632,0.45490403568725296,0.3726382170498823,0.24031373171694662,38.42792892456055\n0.0072928176795580115,0.3923906085083106,0.9642051315353124,0.7618998296585532,0.616965211908271,0.6767961500243492,36.594017028808594\n0.033591160220994475,0.24968069071413584,0.18852600109708492,0.18842386921919635,0.2774492480909181,0.18890809259092825,21.60504150390625\n0.03248618784530387,0.22220638644664278,0.15977004856512828,0.3459632060029728,0.4592889228851016,0.21071071761488477,25.61772918701172\n0.10298342541436464,0.04105210251105042,0.13551627186790496,0.5657527441269768,0.4879276412480053,0.2058218132928978,69.44429016113281\n0.028729281767955802,0.10576446359013082,0.7331953009717954,0.8094110125984239,0.37845573784043657,0.6152970426959417,22.0\n0.20464088397790056,0.267925572537527,0.5183241145765034,0.4176527625339914,0.5207837498250725,0.23491155470807393,68.68767547607422\n0.22917127071823204,0.1348596625808051,0.4851221299972927,0.3526098173226554,0.33992192770560115,0.16653451362465896,34.55742263793945\n0.056574585635359116,0.07955359048493166,0.9807523989307767,0.7810155362151248,0.6005651449850891,0.5062333678771728,34.37464904785156\n0.0030939226519337017,0.23508365285509755,0.7427001938153494,0.924592344578912,0.5074813433140446,0.7259508858975074,39.28969192504883\n0.07248618784530386,0.2546042461352805,0.8834794465993863,0.7189213474323023,0.6520406715201339,0.5207527873634417,48.13509750366211\n0.004861878453038674,0.13071433886818332,0.130316255914309,0.5495488749967848,0.7986676545370539,0.25016954271803354,56.74789810180664\n0.02143646408839779,0.04824568504587458,0.722853216412905,0.4179755060687762,0.5510741931196107,0.16681063522069955,32.03191375732422\n0.0070718232044198895,0.07950865426466437,0.29039631483789946,0.5141816618879128,0.5364925993804524,0.24091920852710474,18.65043067932129\n0.03270718232044199,0.11955071796540835,0.5863658442717243,0.629106942724568,0.7295355106903193,0.26412751700391074,60.853519439697266\n0.0017679558011049724,0.4428230227559025,0.753511798302184,0.6933031327579262,0.6463543562039119,0.46302782239691187,40.59217834472656\n0.05988950276243094,0.09504104911147872,0.7425805222502009,0.7844156572181159,0.3607011941485091,0.6275966923908014,26.40668487548828\n0.08375690607734806,0.22940332073493822,0.9624697240937589,0.6128899733032962,0.5582261409066733,0.2576790563134403,62.61024856567383\n0.0022099447513812156,0.13275605854838096,0.699251310251939,0.7208542358343529,0.5166565541874834,0.8368599928096097,31.247922897338867\n0.13613259668508287,0.014093883064060763,0.979411907654213,0.5486032721679319,0.15858360011207312,0.09458069025260821,59.077030181884766\n0.02585635359116022,0.20543061414898128,0.5934762873309035,0.6462409325214277,0.7844613619597433,0.25116602819799033,62.600852966308594\n0.1898342541436464,0.24596139948511014,0.7618997565376855,0.6559351479204989,0.666518253391,0.6564137016163314,28.364788055419922\n0.038895027624309395,0.48798049662521553,0.1783191623815024,0.11530876283158212,0.30658485978278527,0.24848167968033905,28.175561904907227\n0.012375690607734807,0.24105821969523716,0.8991659274602862,0.813554277386307,0.5497072807883192,0.5287969376416952,51.021488189697266\n0.02276243093922652,0.25679326307184097,0.7158346064271235,0.8754817351917499,0.4798974428805702,0.8196641385328366,32.905555725097656\n0.02011049723756906,0.22239688723715645,0.8595272252716469,0.8753090495366067,0.5020265705288199,0.883695577201604,41.4257698059082\n0.012154696132596685,0.3247540034854645,0.7121359063295314,0.658283672830446,0.7364707327868648,0.5633328723388299,54.37900924682617\n0.04088397790055249,0.2934030649403993,0.25089565931643326,0.193440089767217,0.3473582471156116,0.19705312755362725,20.39136505126953\n0.0075138121546961326,0.25954671908025445,0.5132696884179901,0.3362642268616907,0.48442592794783346,0.2925237797361182,36.30780029296875\n0.2041988950276243,0.22311577207913164,0.878808521126776,0.6996174730584024,0.6209853970312804,0.8279206098161772,21.53521156311035\n0.3966850828729282,0.14047084821621686,0.02213137469919744,0.31770826001489355,0.31251441823022513,0.23721676514664725,24.23455047607422\n0.03911602209944751,0.37801991815911423,0.07213943102113027,0.27411406410789085,0.4191729152546155,0.28840661717778165,31.27450942993164\n0.021878453038674032,0.26360516231306735,0.8852108649887682,0.6340445615261098,0.708682218841996,0.21566576903994455,67.43118286132812\n0.2134806629834254,0.18845530836924795,0.9790604466958586,0.4930794748294186,0.48269224001766914,0.2718968032939262,35.8563232421875\n0.023646408839779004,0.11672812494047746,0.9539469868189269,0.7002022224147837,0.6981265135334923,0.529119191972733,52.5955696105957\n0.4183425414364641,0.5277502824316851,0.5420479414490551,0.5958191030907302,0.2753190920839343,0.650754895932356,35.229576110839844\n0.17480662983425416,0.08382372440732236,0.49264501558898177,0.4543145225886608,0.448649255480543,0.24798737846725372,62.87822341918945\n0.0064088397790055245,0.3359096994796083,0.7366133245687166,0.6475878806315444,0.7147338986294262,0.6196758490239102,43.036415100097656\n0.3299447513812155,0.1502838544935245,0.16866622902198378,0.6556933880032986,0.19930599575876243,0.9440384828591435,26.722856521606445\n0.3462983425414365,0.08147244094254003,0.6488361836216808,0.7025019189670695,0.22175694871006305,0.49487017589472354,21.252185821533203\n0.002430939226519337,0.2558367824626118,0.5041398513520186,0.5456342698350223,0.5725275670073852,0.16922729731659497,31.4307918548584\n0.04707182320441989,0.4142390040425167,0.12506317283581303,0.24418942647491015,0.41694938963381156,0.2770971649238665,26.915205001831055\n0.15558011049723758,0.22167614662207288,0.21489802815252382,0.40997241915455523,0.5364142817950567,0.2775197824922121,55.25140380859375\n0.4234254143646409,0.43804296783083274,0.0025565680520792076,0.6380103769166389,0.23716625702009866,0.7851002297304377,31.47645378112793\n0.0030939226519337017,0.22827046593457145,0.7407077895658032,0.9155721987026756,0.5055114678909864,0.84564318704865,35.872222900390625\n0.008839779005524863,0.3016974617847802,0.16403612767904477,0.45179569389467605,0.5582093249686679,0.14293229784543648,38.91316604614258\n0.30475138121546963,0.42380040157195603,0.26473932538422257,0.23382352342410967,0.32565883723978273,0.16820102800307282,19.848739624023438\n0.00287292817679558,0.34849710549040974,0.7292888306674775,0.6626222510489738,0.6631265492516957,0.5184362737913268,37.58333206176758\n0.006850828729281768,0.18344987169381097,0.8557382198227655,0.7834926821647645,0.3879537147687025,0.7274690945753152,25.44662857055664\n0.0026519337016574587,0.4577268502080931,0.7483088011686406,0.6926171538795645,0.6631301358678436,0.4562613402992265,43.19230651855469\n0.19204419889502763,0.10819955982815505,0.052800002157026835,0.46090992367957684,0.4621582158035042,0.4579352469576499,44.93016815185547\n0.003977900552486188,0.33834542062082207,0.7363063372984031,0.6481023647903157,0.7085075917934786,0.6172557821849397,48.8139533996582\n0.03425414364640884,0.48216461732230304,0.17719611688501696,0.11450845414016002,0.3098910437059049,0.2526428585117613,32.94225311279297\n0.016353591160220993,0.20255310538921045,0.6725296257989678,0.5814945302627169,0.6845616960737999,0.2986684514588941,39.938716888427734\n0.003977900552486188,0.20217638344820857,0.8749065491153325,0.8844256611926129,0.5000397027767982,0.8457087666945436,32.9637451171875\n0.011933701657458563,0.29081261398215896,0.8476462153090176,0.7329648594698758,0.7335967949065657,0.6378203076640637,48.03179168701172\n0.2377900552486188,0.202428522416965,0.9490575122113825,0.3783244977768011,0.36093173713074383,0.09946881240388877,44.977779388427734\n"
  },
  {
    "path": "demo_result/gnnwr/dataset/val_dataset/dataframe.csv",
    "content": "station_id,lng,lat,date,PM2_5,row_index,col_index,proj_x,proj_y,dem,w10,d10,t2m,sp,tp,blh,e,r,u10,v10,aod_sat,ndvi,id,__belong__\n1910A,106.1087,30.8388,20170601,42.04634831,3646,5225,986269.0717,155654.7064,318,0.888748765,308.0556641,290.9064636,97573.95313,0.001402697,150.4662628,-1.22618e-05,75.07325745,-0.699847579,-0.547802567,0.862408996,3119,715,val\n1658A,117.1081,36.1758,20170601,49.33147632,2792,6985,1807349.704,945512.1025,137,0.754473269,247.5123291,285.6602478,99097.375,0.001000177,167.3327789,-9.08167e-06,62.27106094,-0.69709456,0.288598508,0.806031823,2454,497,val\n2922A,117.1941,39.1067,20170601,47.90083799,2323,6999,1734525.775,1294079.185,8,1.044128656,190.2506409,285.3526001,101633.3125,0.000782741,200.1099548,-2.0879e-05,49.80358887,-0.185801789,1.027464032,0.859359741,2162,1362,val\n2434A,112.1825,32.1142,20170601,62.29295775,3442,6197,1494489.842,383206.9811,80,0.71410042,219.0383301,288.7574463,100587.0938,0.00171172,232.8225555,-1.67492e-05,67.46230316,-0.449758053,0.554668486,0.848117113,2841,1072,val\n1971A,119.952,36.792,20170601,32.28248588,2693,7440,2016357.371,1073392.484,56,0.725837588,226.8506317,285.0223999,101208.0703,0.000872484,248.8716888,-7.99817e-06,63.21492386,-0.529539764,0.496415019,0.672168195,2458,771,val\n1585A,109.8756,40.6532,20170601,45.81005587,2076,5828,1139586.419,1372424.834,1057,0.681261659,341.8218689,281.5418091,88966.09375,0.000416127,180.8938293,-6.15724e-06,39.44210434,-0.212588698,-0.647243023,0.423594713,2130,434,val\n1736A,111.5025,36.0875,20170601,81.15416667,2806,6088,1355939.014,844767.0044,440,0.452304006,84.21585846,285.7679138,94605.77344,0.000895034,138.6487274,-6.39933e-06,53.35424805,0.449999183,0.045603085,0.548592687,2348,559,val\n2204A,105.6775,38.8343,20170601,29.56703911,2367,5156,843554.946,1110050.957,1545,0.431638181,265.2961121,283.3588562,85688.60156,0.000357864,262.8854675,-5.74262e-06,36.90644455,-0.430182815,0.035415825,0.326920897,1682,865,val\n1405A,108.439,22.7906,20170601,33.82303371,4934,5598,1320771.342,-754273.3837,84,1.091839194,252.5002747,294.4198914,100084.6484,0.002821381,272.8891602,-1.63416e-05,80.06187439,-1.041294813,0.328356266,0.542551994,2056,343,val\n1624A,116.3189,37.4489,20170601,57.425,2588,6859,1710634.495,1082008.203,23,1.123700738,212.2004547,286.4721985,101400.2031,0.00089896,199.4121552,-1.10914e-05,50.73317337,-0.5987854,0.950873017,0.860723138,2345,469,val\n2924A,106.2275,38.44139,20170601,34.7254902,2429,5244,892274.9667,1067379.418,1111,0.685366392,118.7454453,283.8615112,88568.47656,0.000307433,150.2375183,-5.85943e-06,38.86563873,0.600925326,-0.329569131,0.390583903,2988,1364,val\n1390A,113.7944444,23.01277778,20170601,33.54142857,4898,6455,1836718.503,-642900.465,30,0.848429978,255.7484283,295.0090637,100808.9063,0.003111002,245.9399414,-2.64898e-05,73.77760315,-0.822310686,0.208898515,0.540817261,5663,328,val\n1745A,118.9572,42.2725,20170601,25.29608939,1816,7281,1776347.103,1701594.229,567,1.119968891,77.79209137,279.4325867,94233.67188,0.000648198,273.7367554,-4.20237e-06,44.44298935,1.094633222,0.236872196,0.439684719,1814,568,val\n1316A,113.681,34.7545,20170601,65.23728814,3019,6437,1563346.651,718598.0309,101,0.641930938,208.2400055,288.1940918,100398.7266,0.001027582,218.8000488,-1.25078e-05,58.68849945,-0.30373174,0.565528393,0.854364574,2126,263,val\n2622A,97.1804,31.1278,20170601,19.72532895,3600,3797,193215.806,136454.7832,3358,0.246395782,59.10718536,276.7553101,62262.41406,0.001334445,213.7978516,-1.88942e-06,51.86611176,0.211435601,0.126514301,0.084683217,3878,1242,val\n1954A,84.8983,44.3336,20170601,34.77683616,1487,1832,-729243.6822,1773902.325,742,1.284570456,33.36539078,282.6404724,92354.38281,0.001037227,132.8213348,-1.28528e-05,55.11009979,0.706464827,1.072860003,0.258401394,2287,757,val\n1301A,117.114,36.6739,20170601,50.28088235,2712,6986,1794356.744,1004445.242,85,1.208310366,209.3106384,286.1491089,100192.5781,0.001077851,190.977005,-1.09952e-05,56.96566772,-0.591505647,1.053629398,0.808104634,2454,253,val\n2996A,118.283,33.965,20170601,55.98459384,3146,7173,1964301.611,708213.169,26,1.013220072,248.1973572,287.3911438,101467.7188,0.001775767,229.6809387,-2.50442e-05,64.26145172,-0.940729976,0.376353592,0.778381348,3378,1369,val\n1830A,113.1992,35.259,20170601,66.3319209,2939,6360,1512278.527,770893.842,191,1.006987572,328.4871826,286.9160156,97992.57813,0.000928456,141.4900665,-7.377e-06,56.6177597,-0.526407003,-0.85844028,0.759267092,3221,647,val\n1190A,120.294,31.56,20170601,43.77966102,3530,7495,2203793.799,471148.3756,8,1.457497716,265.3551636,289.1346436,101574.5078,0.001797102,325.6673584,-5.03285e-05,70.34750366,-1.45270586,0.118090548,0.726024687,2273,164,val\n2882A,102.5389,24.3702,20170601,29.84240688,4681,4654,728485.1701,-633913.3449,1628,1.305220008,0.886275053,288.5868835,81159.07813,0.002324935,254.6402893,-9.88235e-06,71.3062973,0.02018938,1.305063844,0.290308714,2845,1348,val\n1100A,123.439,41.7089,20170601,36.12638889,1907,7998,2119763.498,1723938.092,44,0.84405303,182.6966858,280.7333984,101100.0703,0.001112594,269.436676,-8.63853e-06,50.94733429,-0.039709948,0.84311837,0.575883746,2433,85,val\n2455A,109.4689,30.2819,20170601,41.53792135,3735,5763,1292423.426,128851.0725,438,0.18364206,29.92904091,288.4746704,92657.52344,0.003017882,107.6463394,-3.54332e-06,76.04735565,0.091621548,0.1591537,0.674036264,3585,1091,val\n2471A,112.3744,28.5819,20170601,32.59357542,4007,6228,1584942.316,-27621.34266,40,0.447520584,333.0464478,290.7068787,100821.4297,0.002455799,255.5422668,-2.36861e-05,71.94178772,-0.202878162,-0.398892373,0.842388034,2916,1107,val\n2516A,108.2134,24.7121,20170601,28.12883436,4626,5562,1268888.288,-536673.8655,312,0.545595348,277.0908508,292.4475708,97327.41406,0.003284543,215.4864807,-1.13094e-05,78.54876709,-0.541425824,-0.06732294,0.564175189,6116,1148,val\n1491A,87.6046,43.768,20170601,53.62608696,1577,2265,-539523.3284,1687393.315,919,0.507930756,6.016121864,281.3979187,89372.92969,0.000496278,160.2506409,-1.07761e-05,49.4164238,0.053234208,0.50513345,0.238862827,2289,415,val\n2271A,117.3575,32.9444,20170601,63.05042017,3309,7025,1915274.79,570557.055,23,1.080721855,250.1609039,288.1721497,101444.9688,0.00223539,228.3403778,-1.90107e-05,66.26745605,-1.01656723,0.366811901,0.789175987,2151,929,val\n1393A,114.4053,23.08,20170601,28.84733894,4887,6553,1894126.577,-623686.8753,21,0.635555208,273.6177979,294.5423279,100781.3516,0.003018772,209.2550812,-1.52726e-05,77.84584808,-0.634290576,-0.040073249,0.488559157,3056,331,val\n1353A,113.568,23.2783,20170601,28.38128492,4856,6419,1809092.018,-616977.6772,31,0.696415663,272.9414673,294.5361023,100234.0391,0.003282168,216.859375,-1.91823e-05,74.23719025,-0.695499837,-0.035703715,0.556178868,5539,298,val\n1451A,102.625,24.9624,20170601,26.83903134,4586,4668,731447.4317,-564583.435,2121,1.499572039,180.0342712,288.2841492,80133.99219,0.002936303,365.2866211,-2.92936e-05,70.66940308,-0.000864665,1.4995718,0.281233788,5777,379,val\n2279A,116.8556,32.6028,20170601,56.07520891,3364,6945,1882038.359,520914.3597,46,1.086727619,255.9489746,288.3945618,101251.4219,0.002164011,221.2746735,-2.46092e-05,66.01789093,-1.054202199,0.263883591,0.796525896,2932,936,val\n1930A,107.1586,34.3708,20170601,43.64899713,3081,5393,1026765.96,586877.5683,593,0.329276055,20.18849945,285.714325,91695.96875,0.001502599,107.7091675,-3.93471e-06,66.00567627,0.113633133,0.309047282,0.546731889,3138,734,val\n1138A,126.615,45.61,20170601,34.97091413,1282,8506,2197599.803,2249456.22,173,1.260065436,45.63877869,275.92453,99456.64844,0.000739872,213.9514923,-6.47235e-06,61.83914566,0.900858164,0.881033182,0.415826917,2617,119,val\n1603A,124.3678,40.1194,20170601,22.3557423,2161,8147,2244132.6,1558715.16,17,0.443680257,347.8162537,280.6568604,100896.5703,0.001084017,236.9409332,-1.54801e-05,63.26110077,-0.093675032,-0.433678627,0.57767117,3222,451,val\n1754A,123.1289,41.0228,20170601,27.61384615,2016,7949,2120971.258,1636826.661,188,0.991235197,202.1609344,280.5291138,99275.10156,0.001079577,261.7826538,-7.52596e-06,56.43515015,-0.373892814,0.918014884,0.554819524,5871,576,val\n1141A,121.4,31.238,20170601,40.8079096,3582,7672,2308085.387,459407.1665,7,1.078588367,263.979248,288.8809204,101650.2109,0.001983516,341.953064,-2.49082e-05,75.36515808,-1.072633982,0.113177918,0.649101734,2562,122,val\n1227A,120.127,30.2456,20170601,39.34916201,3741,7468,2229203.478,315795.7699,30,0.787919462,305.2120972,289.5741577,101158.2031,0.00259055,235.3573303,-1.87067e-05,72.33004761,-0.643777788,-0.454276562,0.688291907,5345,194,val\n1944A,102.1708,38.5061,20170601,24.38687151,2419,4595,570040.8105,1045030.142,1551,0.422089845,65.08037567,283.3521118,82952.40625,0.000327484,304.3884888,-5.57649e-06,34.03249359,0.382787198,0.177858934,0.274183244,1713,748,val\n2876A,119.0841,36.7339,20170601,55.09861111,2703,7301,1949368.618,1049051.725,24,0.875296891,201.665451,286.0795288,101365.2422,0.000790763,242.1334381,-1.2005e-05,57.66342163,-0.323138803,0.813465416,0.736166835,3240,1343,val\n2299A,118.3244,32.2786,20170601,52.09888579,3416,7180,2015348.227,512215.9374,24,0.956834435,264.5996704,288.0233154,101254.7188,0.002489174,240.3382111,-1.4447e-05,69.03160095,-0.952583492,0.090093255,0.785313964,3065,956,val\n2311A,115.8067,33.8399,20170601,53.26123596,3166,6777,1761872.528,646576.9227,39,0.877627134,241.7089844,287.9424438,101224.6094,0.001709138,196.4986877,-1.10385e-05,62.6071701,-0.772782922,0.415975899,0.830929995,3524,967,val\n2570A,101.9603,30.0475,20170601,15.21648045,3772,4562,625427.3095,27806.88671,2740,0.406288981,203.8076019,274.2634583,63770.57422,0.00254528,121.7675018,-3.57074e-06,87.76465607,-0.16400072,0.371718287,0.215120465,6631,1196,val\n1035A,114.3541,37.9097,20170601,52.41044776,2515,6545,1544172.496,1104256.718,326,1.017769933,56.64455795,285.2039795,98639.57031,0.001074703,128.0363464,-8.60246e-06,55.35539627,0.850102127,0.55962652,0.768948793,4667,25,val\n2518A,108.1009,24.6967,20170601,32.43905817,4629,5544,1258387.446,-539896.5173,281,0.532169461,271.9934082,292.208252,96961.125,0.003518467,232.51091,-1.18597e-05,79.45727539,-0.531848252,-0.018486008,0.565978408,4845,1150,val\n1706A,116.6447,23.6706,20170601,26.14225352,4793,6911,2094426.362,-511407.434,18,0.73642844,273.4875793,294.2312317,101088.9766,0.002700813,204.9089661,-1.76273e-05,81.18883514,-0.735066712,-0.044763103,0.412502825,2242,535,val\n2637A,107.007,33.0323,20170601,47.88611111,3295,5369,1033653.309,425499.2719,511,0.041591436,160.3083649,287.5950928,94354.60156,0.001746097,80.02737427,-2.10086e-06,75.43299103,0.014017797,-0.039158002,0.580293953,4032,1254,val\n2319A,119.0156,25.442,20170601,28.97338936,4509,7290,2269646.29,-258298.0098,20,1.362974644,333.9920044,292.4500732,99730.07031,0.00225856,364.8334045,-3.80079e-05,81.36826324,-0.597756803,-1.224902749,0.427908927,2997,974,val\n1942A,102.1878,38.5247,20170601,33.28028169,2416,4598,571224.379,1047386.36,1522,0.39669314,66.76177979,283.6272888,83436.13281,0.000315591,303.3875732,-5.57107e-06,33.57984161,0.364504993,0.156529739,0.265895754,1984,746,val\n1402A,108.316,22.8561,20170601,33.86731844,4923,5579,1307736.621,-748432.5494,85,1.127639651,251.1008148,294.4006958,99840.24219,0.002779066,261.5622864,-1.59962e-05,79.83918762,-1.066835165,0.365286022,0.545925081,2342,340,val\n1992A,120.734,31.656,20170601,43.63128492,3515,7565,2238286.361,492182.7686,24,1.093646288,263.1853638,288.5234375,101611.2109,0.002017042,310.2623901,-2.2153e-05,72.33341217,-1.085914373,0.129815906,0.711922705,4160,791,val\n3028A,104.7778,29.36028,20170601,54.58543417,3882,5012,885988.2958,-31827.9898,335,0.791309118,359.2512207,291.7330627,97453.1875,0.001059048,150.6390991,-1.28382e-05,72.93257904,-0.010417562,-0.791240573,1.007692575,3919,1390,val\n1408A,108.244,22.7833,20170601,36.84195402,4935,5567,1301837.141,-757709.9533,89,1.051894546,250.4844666,294.4044495,99687.3125,0.002774982,260.6064453,-1.58529e-05,79.56781006,-0.991451323,0.351434618,0.539061904,2979,346,val\n1314A,120.1964,36.3083,20170601,41.015625,2771,7479,2050541.989,1021729.457,5,0.643388808,193.7384033,285.4806213,101677.5078,0.000917933,270.1025696,-2.60371e-05,64.7797699,-0.152793363,0.624982655,0.656085134,2701,261,val\n1756A,123.9169,41.8828,20170601,34.99301676,1879,8075,2148190.082,1754686.447,85,0.870360017,183.5139618,280.1009216,100188.2578,0.001156587,270.4274902,-9.77627e-06,55.74318314,-0.053344153,0.86872375,0.5467273,2909,578,val\n1103A,123.428,41.8472,20170601,31.03651685,1885,7996,2114140.965,1739912.225,50,0.835658491,3.99313736,280.6773682,101048.8359,0.001111497,280.2225037,-8.59948e-06,50.39046478,0.058191247,0.833629966,0.558842957,3040,87,val\n1520A,113.143,27.8381,20170601,41.82670455,4126,6351,1670397.882,-101277.5424,45,0.787034869,349.0003052,291.2530518,100610.9297,0.002759207,224.9189453,-1.69864e-05,72.70095825,-0.150235936,-0.772562623,0.759830654,2095,428,val\n1126A,125.417,43.8667,20170601,34.31728045,1561,8315,2182147.051,2019648.122,212,1.3043046,44.22899628,277.594696,98838.07031,0.001129022,263.966217,-1.03284e-05,59.92636871,0.909767389,0.934630275,0.484565318,2409,108,val\n1136A,126.646,45.7258,20170601,37.67694805,1264,8511,2195186.437,2263615.338,149,1.253280044,46.32527924,275.9520264,99754.95313,0.000725031,211.8538971,-6.88147e-06,61.55596924,0.906441569,0.865490913,0.411220342,1850,117,val\n2334A,118.1756,26.6272,20170601,22.71927374,4320,7156,2159352.843,-142504.5888,152,0.403568268,262.881897,292.3458557,97225.39063,0.002368728,149.6603851,-1.09434e-05,72.15335083,-0.400455773,0.050025139,0.441487908,4573,984,val\n2377A,116.3553,27.9883,20170601,44.83333333,4102,6865,1958016.48,-24602.95435,43,0.956858397,337.5844116,291.8484497,100947.7656,0.002287734,220.3248291,-1.75693e-05,71.22817993,-0.364942819,-0.884530783,0.622548103,2672,1027,val\n1003A,116.434,39.9522,20170601,54.89859155,2188,6877,1653776.71,1381524.305,48,0.27549094,75.46051788,284.4922485,100830.9688,0.001002024,129.9712982,-6.67928e-06,45.53746414,0.266665608,0.06917157,0.87581104,2609,2,val\n2205A,105.6975,38.843,20170601,33.15181058,2365,5160,845013.6566,1111275.934,1597,0.389483571,259.2996216,282.954895,85063.52344,0.000380539,264.3408813,-5.85472e-06,37.2563324,-0.382708132,0.072332188,0.33673802,1729,866,val\n1395A,114.3244,22.8172,20170601,24.58848315,4929,6540,1892259.655,-654992.357,81,0.956310332,267.0995483,294.4826355,100138.3594,0.003024695,255.1569366,-3.01505e-05,79.50608826,-0.955083072,0.048433039,0.489254385,4177,333,val\n1046A,119.5369,39.9419,20170601,36.63826816,2189,7374,1888823.631,1436241.979,8,0.472314358,127.2269135,283.1615601,100802.5938,0.000743226,236.7299347,-3.0455e-05,58.43154907,0.376097023,-0.285712928,0.681556523,2614,34,val\n2514A,111.5269,24.4175,20170601,44.24504249,4673,6092,1590118.278,-522334.3618,109,0.662247717,311.8299561,292.6168518,98898.57031,0.002735477,161.181778,-9.95038e-06,78.75340271,-0.493489087,-0.441633999,0.57084322,3440,1146,val\n2295A,118.3057,29.7128,20170601,26.5280112,3826,7177,2085664.706,214394.0758,139,0.595979512,282.5294189,289.5133667,99672.16406,0.003283436,178.2717133,-8.83938e-06,76.65644073,-0.581792891,-0.129261702,0.614688456,3897,952,val\n1888A,101.68912,26.57098,20170601,34.35014006,4329,4518,629028.2751,-383522.6956,1152,0.235272422,233.2457123,292.4658203,84378.60156,0.002155921,182.2531586,-4.06756e-06,59.89054489,-0.188498557,0.140788525,0.282065868,3456,696,val\n1820A,114.358,36.087,20170601,68.93837535,2806,6545,1587759.53,887483.8518,75,0.562115073,42.52035522,287.7117615,100500.3984,0.000709618,192.0339355,-9.92214e-06,53.72750473,0.379897565,0.414308101,0.795968533,2037,639,val\n2170A,112.4279,39.3673,20170601,35.7987988,2281,6236,1360891.865,1250111.91,1117,1.25028348,73.92602539,279.3161621,87721.1875,0.000994448,175.1917572,-3.78054e-06,53.82436371,1.201390505,0.346221894,0.413744211,2777,837,val\n1665A,118.5019,37.4658,20170601,50.71587744,2586,7208,1882119.232,1123918.835,5,0.967041969,225.3577423,285.8274536,101685.8594,0.000737644,213.9183502,-1.76364e-05,53.44158936,-0.688042283,0.679535091,0.759425759,1888,502,val\n1698A,114.6892,23.7233,20170601,26.02240896,4784,6598,1906657.589,-545252.5687,41,0.588151395,325.039978,293.8720093,99512.89063,0.002575225,228.3772736,-2.95643e-05,76.69662476,-0.337049514,-0.481995523,0.480994403,3684,528,val\n2381A,118.0058,28.4569,20170601,36.31908832,4027,7129,2093837.058,63355.26393,125,0.799908519,313.2450256,291.2276611,99754.75781,0.002528333,144.0782928,-9.301e-06,74.95729828,-0.582715273,-0.547993183,0.556254506,4643,1031,val\n2427A,115.0264,30.2099,20170601,54.80532213,3746,6652,1784653.864,207456.7617,36,0.872690856,253.2558594,290.3366699,101187.3516,0.002562362,191.5309753,-2.60636e-05,70.56793976,-0.835680068,0.251452148,0.747626603,4142,1065,val\n1834A,113.182,33.737,20170601,60.34225352,3182,6357,1544625.156,590273.5394,97,0.219506964,16.37846375,287.8694153,100070.1719,0.001277251,210.550293,-1.30527e-05,62.58480453,0.061894964,0.210599899,0.847097099,755,651,val\n1407A,108.328,22.735,20170601,34.70655271,4942,5580,1310796.716,-762112.4435,127,1.104768395,249.1029816,294.4283752,99831.52344,0.002777642,268.0148621,-1.6057e-05,79.74669647,-1.032086015,0.394095957,0.536856949,3786,345,val\n2175A,110.9956,35.0147,20170601,73.66899441,2978,6007,1335683.659,709898.2065,355,1.170674324,248.8930664,286.9493713,96110.48438,0.00095434,165.1033783,-1.27028e-05,58.90702057,-1.09211874,0.421609819,0.617738903,2071,841,val\n1027A,117.157,38.9194,20170601,57.08866279,2353,6993,1736776.761,1271187.896,2,1.121411681,193.9801331,285.2681885,101692.0469,0.000799512,196.5031586,-2.22992e-05,50.57588577,-0.270908982,1.088196874,0.841988325,3110,18,val\n2371A,114.3442,27.8036,20170601,49.8198324,4132,6543,1780398.793,-84177.98452,98,0.686520576,269.078064,291.1037598,100287.5391,0.003731343,160.874527,-9.65491e-06,77.62141418,-0.68643117,0.01107755,0.689163387,4389,1021,val\n2604A,100.0782,23.8982,20170601,26.17847025,4756,4260,493800.3505,-703890.9038,1543,0.523346245,59.20407104,288.2746887,80511.96094,0.003541532,64.87241364,-2.35407e-06,72.18202972,0.449544281,0.267957479,0.247886837,5148,1225,val\n1250A,120.07,30.8244,20170601,38.02668539,3648,7459,2206861.816,381196.2617,22,0.818119049,269.0801086,288.993988,101128.8906,0.002263708,275.2915344,-3.26574e-05,72.12408447,-0.818013012,0.013171966,0.725790977,3967,212,val\n1368A,113.495,22.2294,20170601,28.53813559,5023,6407,1824697.338,-737140.758,13,1.618147492,263.7887878,295.8627319,101108.8594,0.002624252,378.7181702,-7.57378e-05,78.38285828,-1.608641148,0.175142884,0.483257711,3649,307,val\n2521A,107.3476,22.4137,20170601,28.27130682,4994,5424,1219543.587,-811441.5382,119,0.858888149,278.7430115,294.4343872,99126.0625,0.00271639,223.0121155,-1.25782e-05,80.27223206,-0.848914564,-0.130510136,0.523277342,3892,1153,val\n1656A,117.1436,36.1942,20170601,50.27793296,2789,6991,1809704.741,948337.2128,142,0.720976472,245.2601013,285.5614319,98912.79688,0.001023079,167.3216705,-9.14897e-06,62.70920181,-0.654792905,0.301750451,0.805314422,2253,495,val\n1252A,120.744,30.7946,20170601,41.25,3653,7567,2265767.264,393102.2663,7,1.13258636,273.5099792,289.1840515,101589.5156,0.002120791,297.3394165,-2.49218e-05,72.91191864,-1.13046515,-0.069285005,0.69095844,3200,213,val\n2640A,109.7289,38.2839,20170601,30.51983003,2455,5805,1171563.355,1085158.871,1075,0.434205472,187.049057,283.245697,88815.60156,0.000751476,252.1665497,-1.14657e-05,48.0436058,-0.053283796,0.4309237,0.408666641,1943,1257,val\n2531A,105.0331,29.5953,20170601,34.3258427,3845,5053,906200.2356,-1760.366907,327,1.070901394,330.1539001,291.5809937,97372.09375,0.001092559,160.3136597,-1.27217e-05,73.37574768,-0.533029437,-0.928821564,1.020350814,3114,1163,val\n2274A,117.3536,32.9673,20170601,49.43333333,3305,7025,1914326.575,573158.7524,18,1.078963041,249.953064,288.1928406,101462.7734,0.002230062,228.1148987,-1.91803e-05,66.14646149,-1.0135777,0.369894058,0.793555319,2762,932,val\n1564A,112.4876,27.9164,20170601,41.67039106,4113,6246,1609072.307,-103133.464,164,0.976414919,356.8845825,290.6444702,100008.2578,0.002232114,254.2412262,-1.53237e-05,73.86838531,-0.05315356,-0.974967062,0.801579356,5089,433,val\n3065A,101.9533,29.9972,20170601,18.25892857,3781,4561,625222.1124,21798.38193,3047,0.416172802,200.3689423,273.576416,62641.71094,0.002600942,116.5148315,-3.53677e-06,88.25034332,-0.144850701,0.390151352,0.219825998,6557,1406,val\n2562A,104.6356,30.1506,20170601,37.29501385,3756,4990,863956.2228,60299.71577,381,0.79409802,299.6325073,291.297821,96550.92969,0.000948357,195.1900787,-1.34271e-05,70.12814331,-0.690265596,-0.392587572,0.940865278,4226,1189,val\n1121A,125.2786,43.84,20170601,32.66760563,1566,8293,2173527.286,2013464.141,228,1.351730108,44.96036148,277.7688599,99040.33594,0.001096958,267.8677063,-1.20344e-05,59.49041367,0.955133975,0.956500649,0.478527367,2189,103,val\n1727A,113.1097,36.1542,20170601,67.22486034,2795,6346,1485084.616,875952.9463,943,0.964887202,186.347641,282.2278442,90274.5,0.000935444,180.4326019,-5.5988e-06,61.57829666,-0.106675446,0.958972156,0.591946423,2641,552,val\n2523A,105.8945,32.4535,20170601,21.4622905,3388,5191,945975.5108,345338.1393,611,0.358207375,300.5761719,287.7425842,92576.29688,0.001388603,128.1676788,-7.27418e-06,72.21583557,-0.30841127,-0.182195008,0.627396166,5092,1155,val\n1612A,118.5972,24.8978,20170601,26.7605042,4596,7224,2245966.647,-329510.7348,13,1.590343833,322.2613525,293.5991516,101044.8438,0.002154743,408.4360352,-3.76484e-05,78.73104858,-0.973478734,-1.257590055,0.413902402,2330,460,val\n1420A,106.65,29.6219,20170601,29.91086351,3841,5312,1051229.756,17483.26645,230,0.730116785,308.3588562,291.7987976,97791.60156,0.001445885,125.920311,-1.0069e-05,73.66951752,-0.572543085,-0.4530617,0.934265196,3792,354,val\n2695A,80.2828,41.1636,20170601,69.5,1994,1093,-1118238.371,1432255.093,1110,0.911611199,337.9553833,285.7757568,88618.16406,0.000281572,109.6018982,-1.79578e-05,46.01344681,-0.342222452,-0.844937146,0.259647042,1671,1309,val\n1920A,108.7233,34.3617,20170601,67.50702247,3082,5644,1158243.136,603188.0231,409,0.839052856,174.6754913,286.7914124,95240.23438,0.00105034,100.5067444,-7.16199e-06,62.55570984,0.077936374,-0.835425436,0.620607018,2902,724,val\n2900A,123.5953,41.9086,20170601,30.00423729,1875,8023,2124075.716,1750716.539,115,0.869160295,0.66677928,280.5023193,100759.1406,0.00114009,281.6382446,-8.72444e-06,51.59070587,0.010111905,0.869101465,0.542443931,3862,1353,val\n2344A,117.1983,29.2786,20170601,31.27871148,3896,7000,1999835.69,141232.2746,59,1.11975956,310.6353149,290.6551819,100356.4375,0.00301735,199.8067627,-1.45232e-05,70.19947815,-0.849800825,-0.729177535,0.614824772,4162,994,val\n1862A,110.4144,25.3167,20170601,33.86694678,4529,5914,1467633.742,-436319.169,208,1.257950068,312.9104614,292.0314941,98537.71094,0.002744724,222.7389526,-1.29025e-05,76.22538757,-0.921404779,-0.856417954,0.589889705,5698,675,val\n1059A,114.8814,40.8115,20170601,30.67267267,2050,6629,1514606.676,1459087.9,765,0.887655675,345.9730835,279.5247803,90913.33594,0.000830745,205.2168427,-3.56681e-06,48.51435471,-0.215221807,-0.8611691,0.500058711,1607,46,val\n2665A,105.0822,33.3261,20170601,20.0625,3248,5061,864975.4457,441968.031,1146,0.235272527,221.1211548,282.3683167,82686.01563,0.001451904,164.3709869,-3.6828e-06,74.61393738,-0.154724032,0.177238941,0.497137308,4247,1281,val\n1160A,120.561,31.2472,20170601,40.37883008,3581,7538,2236141.578,441066.2672,46,1.652379394,269.1838684,289.5220032,101562.1641,0.001781626,346.0613708,-6.66594e-05,71.97569275,-1.652210712,0.023611957,0.720286489,4355,141,val\n1750A,123.0485,41.1442,20170601,33.3189415,1997,7936,2110897.322,1649328.24,45,1.050357699,192.3028564,281.1580811,100798.8125,0.001027347,270.3400574,-8.23458e-06,52.62127304,-0.22380285,1.026237607,0.571201563,3024,572,val\n2634A,106.9893,33.1842,20170601,41.890625,3271,5366,1029917.067,443417.503,562,0.428251177,359.4197998,286.6208191,91847.45313,0.001880005,68.87059784,-2.60598e-06,77.28965759,-0.004376623,-0.428228825,0.565573752,4314,1251,val\n2460A,112.6006,26.8919,20170601,42.72299169,4277,6264,1640841.329,-219923.3157,73,0.987432122,343.9099121,291.9283142,100630.0,0.002371561,261.2034607,-1.71295e-05,71.20933533,-0.273745358,-0.948728442,0.741418242,2361,1096,val\n1037A,118.144,39.643,20170601,45.89027778,2237,7151,1792159.377,1374761.464,30,0.682202995,194.4754333,284.1112671,101409.3594,0.000739086,182.9657745,-8.82367e-06,51.56108856,-0.170521781,0.660547674,0.796505332,2243,27,val\n1164A,120.613,31.2703,20170601,39.79469274,3577,7546,2239876.582,444915.2358,6,1.484794617,270.0042725,289.3019409,101580.1016,0.001767269,332.7530212,-5.47025e-05,72.21630859,-1.484794617,-4.17689e-05,0.710166276,2495,145,val\n1634A,117.9544,36.6377,20170601,50.94507042,2718,7121,1862341.959,1015809.776,97,1.104663849,184.7385712,285.4519958,99770.29688,0.001072533,199.4207458,-8.6885e-06,59.95675278,-0.091252215,1.100888371,0.766484499,2777,478,val\n2547A,106.6388,30.4551,20170601,30.78888889,3707,5310,1038519.49,115713.4844,301,0.935414135,314.5847168,291.2894287,97799.08594,0.00161998,114.4745712,-8.51194e-06,75.6977005,-0.666259825,-0.656580091,0.874839306,4281,1176,val\n2568A,102.2402,31.8934,20170601,3.856338028,3477,4606,634327.5735,249160.9657,2967,0.436406434,265.7664795,274.9389343,65873.66406,0.001623698,85.46770477,-1.31826e-06,72.85816193,-0.435214251,0.032235384,0.14681676,7007,1195,val\n1024A,117.457,38.8394,20170601,48.95238095,2366,7041,1762091.446,1267036.935,3,1.206597447,193.9273834,285.5480957,101681.9141,0.000769883,232.6412964,-3.71346e-05,51.7426033,-0.290409952,1.171127439,0.817716777,1970,17,val\n1154A,118.777,32.0144,20170601,39.8255814,3458,7252,2061275.899,490878.6042,17,1.136381865,264.4804993,288.2111206,101415.7656,0.002364999,241.1607819,-2.05117e-05,68.40370941,-1.131108284,0.109351724,0.783036828,2327,135,val\n1559A,113.251,27.8336,20170601,33.70142857,4127,6368,1680324.98,-99957.54547,117,0.705615044,345.4394531,291.3537903,100703.7266,0.002938061,215.4237061,-1.60259e-05,73.02091217,-0.177451804,-0.682937384,0.743979037,5755,431,val\n1376A,112.844,22.8693,20170601,39.67787115,4921,6303,1747876.67,-676510.9123,31,0.565837502,265.9544678,294.8993225,100774.8594,0.003029548,241.1379242,-2.09283e-05,74.0732193,-0.564425886,0.039944187,0.568857491,5768,314,val\n1446A,106.7164,26.5697,20170601,32.42655367,4329,5323,1100039.52,-339429.9137,1082,1.23895824,235.7267761,287.530365,88566.17969,0.002067527,334.7288818,-1.05491e-05,82.99799347,-1.023807526,0.697736084,0.597075224,2282,375,val\n1377A,112.885,23.1572,20170601,38.81534091,4875,6310,1745831.166,-643088.6485,7,0.588560998,277.4393005,295.0350342,101170.8047,0.003121902,232.4656372,-2.21024e-05,72.11452484,-0.583610654,-0.07617525,0.573870182,3039,315,val\n1327A,114.2836,30.6197,20170601,48.60393258,3681,6533,1709816.336,242054.5322,29,1.101818323,301.9703064,290.02005,101298.3906,0.002553479,210.0927734,-3.1854e-05,68.6966095,-0.934733927,-0.583331883,0.811086297,2025,274,val\n2305A,116.9677,33.6284,20170601,55.42916667,3200,6963,1864225.895,643156.0549,29,1.066444993,248.158905,287.8616943,101391.6406,0.002129239,206.2526703,-1.28669e-05,64.01164246,-0.98988086,0.396788031,0.804219604,2867,961,val\n1360A,114.263,22.5908,20170601,22.57746479,4966,6530,1891409.11,-681775.1349,53,1.376850843,267.0551758,294.9255371,100410.6719,0.002873792,305.4543762,-4.59042e-05,80.99490356,-1.375029445,0.07079652,0.474117041,2651,303,val\n1102A,123.542,41.8336,20170601,30.66997167,1887,8015,2122856.064,1740776.091,56,0.859084368,181.4778137,280.6018066,100910.4297,0.001130205,275.5848083,-8.53349e-06,51.31137848,-0.022155104,0.858798623,0.561574757,2468,86,val\n1935A,107.3906,34.3528,20170601,56.48472222,3084,5430,1046527.674,587172.8523,544,0.220629945,206.5397644,285.3908691,92224.72656,0.001495237,91.6646347,-3.52797e-06,68.62831879,-0.098578945,0.197382286,0.555408597,2956,739,val\n1947A,106.3394,38.817,20170601,45.58882521,2369,5262,895864.0949,1113816.234,1100,0.720886111,137.6966095,283.6262512,88097.01563,0.000344818,155.5193939,-5.85841e-06,39.24173355,0.485234737,-0.533126593,0.367263079,2358,750,val\n1740A,113.5922,37.8561,20170601,58.70972222,2523,6423,1485351.795,1086117.5,679,0.763870895,76.171875,282.1902466,91948.92969,0.001079989,158.0419922,-4.7696e-06,61.43956757,0.741724551,0.182602018,0.607760191,2378,563,val\n1255A,121.273,28.6459,20170601,28.00724638,3997,7652,2378627.891,159367.0242,129,0.251679748,348.6769104,290.2898254,100781.1563,0.002618861,330.263916,-1.51401e-05,78.63561249,-0.049436584,-0.24677667,0.535940588,4546,215,val\n2544A,106.6303,30.4576,20170601,42.27513966,3707,5309,1037729.444,115919.2153,310,0.945186138,314.8026123,291.2832642,97796.69531,0.001615451,114.8932953,-8.57133e-06,75.68507385,-0.670692146,-0.665994644,0.881689727,4312,1174,val\n1640A,117.732,34.5667,20170601,62.16432584,3049,7085,1902036.32,767888.5055,26,0.918803453,247.8565063,287.0748291,101215.9922,0.001579051,205.4299927,-1.08905e-05,61.92969894,-0.851022899,0.34635222,0.780947626,2514,484,val\n2653A,102.6469,37.9358,20170601,36.28194444,2510,4671,613206.8523,978730.6813,1522,0.776118875,50.24443054,282.2157593,83098.34375,0.000460682,153.8014221,-4.74737e-06,37.98474503,0.596651614,0.496354073,0.269750714,2264,1269,val\n2009A,121.1518,31.89708,20170601,35.28041543,3477,7632,2266188.295,529588.4634,5,1.16392684,262.1202393,288.6333008,101710.1016,0.001997298,338.4962158,-3.32408e-05,74.05730438,-1.15293026,0.159616619,0.676906824,3260,808,val\n2351A,113.865,27.6178,20170601,43.54583333,4161,6466,1741022.237,-114246.3706,115,0.597985089,270.5455322,291.0272522,99477.78906,0.003206521,145.194809,-9.49072e-06,76.51351166,-0.597958267,-0.005665849,0.716518641,4199,1001,val\n2337A,117.0256,25.0661,20170601,20.88194444,4570,6972,2094630.144,-345142.603,353,0.434038937,260.4188232,291.172821,94821.47656,0.002497975,111.1142807,-7.36892e-06,78.98696136,-0.427981436,0.072261333,0.442430377,3266,987,val\n1077A,114.4821,37.0967,20170601,74.24929972,2645,6565,1573699.917,1009473.467,73,0.784852684,56.6906395,286.5733337,100195.5781,0.000809905,162.1003723,-8.74116e-06,52.13700485,0.655902684,0.431028306,0.78845191,3407,63,val\n1440A,106.6971,26.5689,20170601,30.99571429,4329,5320,1098247.184,-339738.9765,1073,1.243344307,235.6721954,287.4920654,88413.75,0.002070751,335.5584106,-1.09028e-05,83.01126862,-1.026764393,0.70118469,0.593898594,2255,369,val\n1939A,109.5049,34.5004,20170601,72.50142857,3060,5769,1221284.15,629198.4999,359,0.97453171,238.8558655,287.3674927,96443.86719,0.001197413,98.52627563,-8.01612e-06,61.82299423,-0.834056199,0.504045904,0.604505539,2495,743,val\n2316A,118.7581,30.9447,20170601,42.49019608,3629,7249,2090267.184,366411.8263,18,1.052492499,262.4625549,288.8905945,101234.125,0.002155277,204.2660675,-1.47079e-05,71.38100433,-1.04339242,0.1381042,0.725428581,3041,971,val\n1909A,106.0642,30.7636,20170601,51.33240997,3658,5218,983342.084,146302.6342,284,0.902434289,309.4742432,290.9161072,97565.28125,0.00138268,151.4132996,-1.18652e-05,74.98168182,-0.696636617,-0.57365942,0.878920257,3093,714,val\n1865A,110.2869,25.2178,20170601,37.9301676,4545,5894,1457380.305,-449612.7122,157,1.190551639,316.8713379,292.1083679,98198.99219,0.002973078,213.7904663,-1.30866e-05,75.56040192,-0.81396836,-0.868831813,0.597452879,3319,678,val\n2512A,106.6103,23.9011,20170601,39.07282913,4756,5306,1126813.515,-649667.9341,143,1.052119613,253.7632294,293.5342407,97606.40625,0.00271546,210.8524323,-9.67009e-06,80.82280731,-1.010144114,0.2942186,0.554944992,4015,1144,val\n1031A,114.5019,38.1398,20170601,72.54901961,2478,6568,1550294.141,1134014.141,75,0.478524715,40.81724167,285.9184875,100477.2188,0.001008369,118.8057404,-8.66783e-06,51.44268036,0.312779278,0.362153322,0.81189847,3324,21,val\n1142A,121.478,31.2036,20170601,43.17563739,3588,7684,2315832.213,457284.2308,10,1.080632925,263.397583,288.9226074,101647.5547,0.001997873,352.5625916,-2.82058e-05,75.58149719,-1.073460817,0.124296024,0.63635695,1842,123,val\n1994A,120.55,31.882,20170601,44.14265537,3479,7536,2215698.047,514121.6201,7,1.1661762,262.4104004,288.5354919,101646.7578,0.002006166,300.3103027,-2.31804e-05,71.63387299,-1.155953407,0.154073492,0.725712061,2849,793,val\n1602A,124.3933,40.1461,20170601,24.14164306,2157,8151,2245062.504,1562411.417,25,0.415040612,343.3535156,280.6315613,100868.7813,0.001084661,233.8926392,-1.35003e-05,63.41411209,-0.118928313,-0.397636473,0.574115992,2642,450,val\n2186A,106.8219,39.6719,20170601,43.65340909,2233,5339,921299.9973,1221730.395,1104,0.531984389,0.856405258,284.377655,88134.63281,0.00025897,356.1768799,-6.05102e-06,33.44136047,0.007951069,0.531924963,0.371391237,1709,850,val\n1211A,119.007,33.575,20170601,45.62465374,3208,7289,2035531.907,677378.9961,11,1.068981528,254.8045654,287.50354,101600.6563,0.001699836,241.8061829,-1.87383e-05,66.16108704,-1.031596303,0.280232877,0.759972751,2919,180,val\n1418A,106.296,29.5983,20170601,37.21030641,3844,5255,1019751.181,10970.67597,298,0.751918852,326.3827515,291.504364,97103.30469,0.001450536,137.1002808,-1.07257e-05,73.43577576,-0.416341037,-0.626132667,0.969889939,3527,352,val\n1778A,126.6772,43.7256,20170601,29.62780899,1584,8516,2274943.717,2031798.981,248,0.931865454,23.03873825,276.40448,97893.25781,0.001432117,218.5051727,-1.45337e-05,69.23558044,0.364678681,0.857544601,0.464548469,4038,598,val\n1951A,84.8861,45.6033,20170601,24.26825843,1284,1830,-714130.5606,1928797.639,382,1.93642354,133.6169434,285.2608643,96302.65625,0.000264259,570.1309814,-9.81697e-06,42.17436981,1.402000308,-1.335713744,0.213667184,1920,754,val\n2929A,114.8858,30.4519,20170601,45.08988764,3708,6630,1766508.186,233121.0494,28,0.876475871,280.5663757,290.2145386,101210.4297,0.002513931,186.7877655,-2.87935e-05,69.0033493,-0.861621976,-0.160678566,0.769310236,2889,1367,val\n1119A,125.323,43.9167,20170601,30.47464789,1553,8300,2173758.545,2023400.317,214,1.332660198,44.47698212,277.7146606,99044.82031,0.001096506,265.1932373,-1.02064e-05,59.26754379,0.933670282,0.950917006,0.465223789,1750,101,val\n1731A,113.0844444,36.1855,20170601,72.24509804,2790,6341,1482343.41,879297.2939,923,0.935123861,185.7047882,282.3136292,90535.88281,0.000935539,178.7865906,-5.70066e-06,61.24636841,-0.09295135,0.930492699,0.584604263,2640,555,val\n2391A,113.883,35.303,20170601,53.45658263,2932,6469,1567395.9,786831.2393,74,0.545760572,306.5619202,287.9338379,100192.8359,0.000846671,177.1723175,-9.0894e-06,54.70845032,-0.43838349,-0.325076222,0.805954158,1937,1040,val\n1639A,117.5852,34.7745,20170601,49.32633053,3016,7062,1884260.578,789460.6903,59,0.980308354,250.0236511,287.0166931,100924.2344,0.001424066,205.4583435,-1.4544e-05,62.94879913,-0.921314776,0.334938079,0.775545597,3033,483,val\n1784A,129.61,44.561,20170601,25.8449848,1450,8986,2441859.814,2198805.64,234,0.981581807,57.61687088,275.4317017,97660.04688,0.000863476,278.4235535,-6.57577e-06,67.04069519,0.828916192,0.525738358,0.39620468,1676,604,val\n2522A,107.3701,22.3708,20170601,30.14730878,5001,5427,1222374.221,-816061.6218,131,0.865378976,275.9311829,294.4101868,99035.28125,0.002701797,222.5195313,-1.25826e-05,80.22525024,-0.860750794,-0.089380503,0.522289217,5141,1154,val\n1989A,120.999,31.381,20170601,37.6265625,3559,7608,2269390.478,466536.8355,3,1.132111192,266.75,288.8069153,101670.4453,0.001812175,313.7701111,-1.99695e-05,73.81433105,-1.130287528,0.064232931,0.707275391,2700,789,val\n2587A,105.2864,27.3125,20170601,31.51949861,4210,5094,957185.4798,-267685.7135,1519,0.382281572,253.7569885,284.9778442,83539.3125,0.002090187,227.9919128,-7.3479e-06,85.83651733,-0.367018372,0.106942587,0.658759654,4304,1209,val\n2609A,103.386,23.4168,20170601,27.5,4833,4790,819573.6887,-737409.0101,1285,1.283986449,199.2191772,289.8394775,86515.10938,0.00288259,207.3394775,-4.92886e-06,82.88478088,-0.422653913,1.212429285,0.342468679,4549,1229,val\n1604A,122.0247,41.1556,20170601,32.5377095,1995,7772,2035459.992,1629065.605,4,0.71797365,24.53059006,281.7715454,101648.7656,0.000896827,296.3873901,-1.15544e-05,51.16648865,0.298079312,0.65317291,0.609920204,3231,452,val\n1977A,119.941,37.177,20170601,28.97706422,2632,7439,2003759.669,1118374.393,49,1.191324711,221.9379883,285.651947,101093.3047,0.000755185,332.3521729,-3.03561e-05,61.18584824,-0.79617399,0.88620621,0.678074837,2666,777,val\n2372A,114.3806,27.8014,20170601,50.74166667,4132,6549,1783756.275,-83772.12976,102,0.670342088,270.413208,291.1391602,100364.1484,0.003742702,164.9906311,-1.00835e-05,77.45219421,-0.670324922,-0.004803124,0.691819429,3281,1022,val\n2430A,110.7258,32.6389,20170601,45.01416431,3358,5964,1358906.247,424041.325,319,0.567093909,267.5360107,287.3049011,95469.44531,0.001722202,152.0007324,-8.54938e-06,71.85572052,-0.566568494,0.024405705,0.759398878,4940,1068,val\n2616A,98.5842,24.428,20170601,38.13610315,4672,4021,346360.0683,-648839.3908,923,0.524293959,49.02747726,292.3500977,88334.53125,0.003677026,69.67405701,-2.15987e-06,75.00344086,0.39584592,0.343787998,0.271404147,3690,1236,val\n2365A,114.9322,25.8333,20170601,44.84497207,4447,6637,1880389.795,-299955.1526,108,0.462926209,173.7719574,292.2061462,99381.29688,0.002001312,266.437439,-1.65885e-05,75.76821136,0.050261997,-0.460189521,0.53688091,2843,1015,val\n2399A,114.056,33.567,20170601,55.5480226,3209,6497,1621903.539,584276.1561,62,0.608364642,230.4484711,288.1853943,100996.1875,0.001530548,202.6868744,-1.26493e-05,62.51510239,-0.469070822,0.38740173,0.87829119,2390,1046,val\n2675A,97.0,33.0014,20170601,17.88095238,3300,3768,172667.9362,360313.5612,3757,0.548581064,28.39790154,270.2093201,60521.32031,0.001336878,86.96800995,-3.04678e-07,73.20298004,0.260893643,0.48257193,0.087460175,3045,1289,val\n2326A,117.6028,26.2378,20170601,24.41620112,4382,7064,2117348.175,-199385.3015,188,0.440345347,273.0180359,291.532074,95991.29688,0.002292608,122.0111618,-8.63095e-06,74.78565979,-0.439735711,-0.023163246,0.436716676,3835,979,val\n1099A,123.535,41.7561,20170601,38.46111111,1899,8014,2125064.261,1731543.178,52,0.864560127,184.8525391,280.6159973,100931.125,0.001125928,269.4874878,-8.46305e-06,51.41911697,-0.073132396,0.861461461,0.558077097,2960,84,val\n1452A,102.728,25.0836,20170601,21.87534626,4567,4684,740198.1485,-549732.7642,1901,1.296617389,1.919339299,287.9809265,80247.41406,0.003151022,355.6161194,-2.20678e-05,70.58847046,0.043425269,1.295889974,0.294220418,3214,380,val\n1933A,107.1431,34.3547,20170601,50.70172911,3083,5391,1025702.871,584790.217,597,0.352196127,20.54267883,285.3041382,90914.1875,0.0015573,107.9905853,-3.89104e-06,66.32097626,0.123583898,0.329801649,0.54930532,3349,737,val\n2697A,76.1861,39.7153,20170601,63.63700565,2226,438,-1459769.956,1311715.085,1290,0.348976642,158.5228271,288.3949585,85634.0625,0.000215322,618.8771362,-1.12248e-05,30.51471901,0.127797559,-0.324734479,0.266867816,1718,1311,val\n1614A,118.6108,24.9617,20170601,25.4,4586,7226,2245464.832,-321970.9439,218,1.455203533,320.4249573,293.5049133,100948.1484,0.002223735,390.7698669,-2.41708e-05,78.69562531,-0.927174568,-1.121590257,0.402218908,6910,462,val\n1967A,120.008,36.283,20170601,38.38483146,2775,7449,2036314.836,1014846.623,10,0.620691001,190.2990265,285.3343811,101428.4688,0.000899788,241.872345,-1.35545e-05,64.02494049,-0.110967264,0.610691071,0.675942242,2183,767,val\n1384A,113.074,22.5811,20170601,35.29722222,4967,6340,1776230.991,-705063.4905,12,0.588686347,257.6977234,295.0207825,101100.8594,0.003364779,252.829422,-2.23242e-05,76.13333893,-0.575163364,0.125453964,0.545013309,2854,322,val\n1416A,106.424,29.8264,20170601,40.68156425,3808,5276,1028112.915,39206.7901,231,0.71689713,312.6628418,291.4952698,97296.71094,0.001512393,127.4329147,-9.86351e-06,73.66621399,-0.527206659,-0.485792786,0.944296181,4472,350,val\n1773A,126.5844,43.8358,20170601,31.67275281,1566,8501,2264245.244,2042462.893,192,1.05459702,24.25174522,276.1485596,97983.03906,0.001325919,222.8381348,-1.13752e-05,66.80348206,0.433160365,0.961533725,0.464100629,1338,594,val\n1247A,120.605,29.9919,20170601,42.86938202,3781,7545,2278427.773,297592.9636,9,0.878875136,280.6818542,289.9578552,101016.8203,0.002544374,261.8351746,-1.58214e-05,71.86288452,-0.863654077,-0.162859425,0.65984565,3019,211,val\n2691A,87.2997,44.0114,20170601,73.18696884,1538,2216,-559387.682,1718831.883,579,0.799316466,49.9695816,284.3627319,94617.73438,0.000291684,173.0821686,-9.39597e-06,46.32137299,0.612025797,0.514131486,0.262832701,2369,1305,val\n2672A,102.0199,35.5102,20170601,29.07799443,2898,4571,584007.5302,681668.816,2561,0.175709888,74.67662811,276.7151184,70571.47656,0.001750593,122.0310364,-1.06118e-06,56.72477341,0.169461563,0.046440728,0.177762911,2944,1286,val\n1802A,118.6439,31.7133,20170601,57.34135977,3506,7231,2058544.327,453116.4437,50,1.178388953,268.5570679,288.4676208,101175.7422,0.002186747,237.5756378,-2.13896e-05,68.86768341,-1.178013921,0.02972706,0.764087915,5237,622,val\n"
  },
  {
    "path": "demo_result/gnnwr/dataset/val_dataset/dataset_info.json",
    "content": "{\"x\": [\"dem\", \"w10\", \"d10\", \"t2m\", \"aod_sat\", \"tp\"], \"y\": [\"PM2_5\"], \"id\": [\"id\"], \"batch_size\": 179, \"shuffle\": true, \"is_need_STNN\": false, \"scale_fn\": \"minmax_scale\", \"x_scale_info\": \"{\\\"max\\\": [4520.0, 3.203410864, 359.6052246, 297.1684875, 1.069990754, 0.00383414], \\\"min\\\": [-5.0, 0.055798065, 0.03956585, 271.5436096, 0.056254357, 3.88167e-05]}\", \"y_scale_info\": \"{}\", \"distance_scale_info\": \"{\\\"min\\\": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], \\\"max\\\": [2802830.8703533784, 2912105.301448387, 3470525.8040405307, 3007624.3752700957, 2858485.0676262937, 3182410.3066277066, 3797154.9135448313, 2833374.9790403727, 3458480.15710189, 3585467.2679693587, 4013366.550446068, 4249152.034624045, 3405646.0581350112, 3227780.0516290264, 3582617.828784893, 2625263.4332448505, 3119345.22802463, 3641661.0779158976, 2705468.573142952, 4255209.830422676, 2875202.8045803923, 2411395.952106972, 3493792.1176865706, 2752875.859868447, 3365147.3721844326, 3929059.2804159024, 3360333.451190208, 3564994.6863664053, 3280386.507935274, 4066196.502326962, 3833686.98063374, 3408915.169600785, 3424516.966809017, 3443216.2614678317, 3630498.7558013164, 3087363.2393477196, 3105601.125208271, 3344764.437702077, 3716586.209449652, 3428370.693325546, 3521364.4053337043, 2645357.8975991043, 3359991.596479524, 3212187.348723729, 3371448.5950262765, 3743542.6569786244, 2806247.556936265, 3081189.606151179, 3638732.7617823137, 3209034.250492124, 4121368.6690986245, 4019217.4936699606, 4152716.840322373, 3813742.6461805007, 3518723.3644682285, 3477750.1062015747, 3250787.5087903435, 3559302.54407372, 3335505.361546866, 3044570.846127091, 3716603.508813846, 3883819.4329719464, 3974775.889806952, 2916306.011806144, 2862968.638187937, 3532990.314817391, 3685748.7283350946, 3620420.181880089, 3529523.643725004, 3850084.184418817, 3761651.318123231, 3903403.5045404625, 3004090.004129706, 3653142.5164306527, 2780912.539940805, 2647983.1926995195, 3838446.6127767577, 3161153.8922581594, 3080305.7229244774, 3604410.554828908, 3203566.2856156547, 2888867.2980796117, 4017668.0934505584, 3413701.0577898896, 2846921.927385874, 3586684.3414489557, 3949264.2610251033, 3737636.7986006048, 2433498.5727093504, 3563112.7283243034, 3751196.98206894, 3509078.3124862094, 3093582.7337773684, 3974297.7250368055, 3305755.9614527784, 3873305.7445045956, 2727236.0749947787, 3860121.294572469, 3521806.222472924, 3039473.900092038, 2913277.986403355, 3395160.688137844, 3760284.709474356, 3122491.62112245, 2942436.501549763, 4110718.7615965293, 3093676.5930638644, 3755984.319487034, 3145668.7552837953, 3675844.9432712942, 3763538.408405018, 3945614.9535285337, 2903347.642144009, 3491816.9502868596, 3088727.8957508667, 3702956.1892402815, 3404491.1955082053, 3335206.1162938667, 2888696.427119469, 3604841.8737348397, 3572544.3210954755, 2845365.946513858, 3143227.955241447, 3329597.406456703, 3093548.597614966, 3531020.8264887966, 3665678.4781472697, 3088231.996236204, 3843197.814298036, 3605216.856599602, 3001931.0447889464, 3837517.308436414, 3835039.699456454, 3617617.1941224732, 3092453.0162835186, 4224748.005694116, 4002947.0971980277, 3799397.923094611, 2452825.187701269, 3820409.4089444587, 3445941.9113097843, 2477373.6621270874, 3418846.3921653302, 3913652.3539333153, 3810589.9968222994, 3440681.071947711, 4024079.955985862, 4057191.5962913833, 3792038.7229738245, 3204457.3952838383, 2664860.517233647, 3997375.45494083, 3410856.0670244643, 2658868.3815014367, 3718402.0184262185, 3584725.9165025423, 3366526.1611724533, 3217348.1327599697, 3750754.2921714, 3500296.9914614055, 2580806.7795926845, 3896753.8195920736, 3114985.3581470717, 3520943.8621506603, 2805222.104968497, 3343628.0575819304, 3625509.3089894475, 3537843.140474286, 3095868.2666962077, 3699310.37948368, 3450005.629532284, 2968229.0514211343, 3845682.62160461, 3819638.07431032, 3005599.633667839, 3993089.2457098495, 2875156.3503607204, 3603534.42135801, 4025353.329193525, 3355441.6661016964, 2384870.028528979, 3869834.213578755, 2566403.4658084884, 3662010.3948272, 3558272.3484845445, 3330747.7696133624, 2754593.3266026094, 3431529.511543076, 2900321.582849287, 4281690.80074013, 3782155.3165435838, 3136999.5913996836, 3041925.630421179, 2898267.0387898763, 3218990.3337865947, 3676865.492406529, 3928437.0402806452, 3565691.667252762, 3419935.5240517235, 2475045.729482483, 3812466.8300474803, 2389420.918773496, 3352838.4547461197, 3029161.3730821903, 3854542.831782675, 3530977.743290467, 2588808.257801276, 3757953.282882135, 3950037.1547858454, 3544308.6045406437, 2893758.4898163825, 3587488.4473026115, 3007973.034578178, 3780122.3137837243, 4015909.8912915704, 3652199.5964419018, 3847875.910504767, 2520060.8945551994, 3289551.540106659, 2536782.1423839866, 3472134.5508702327, 3814335.454807663, 3105065.489794537, 3115496.772972792, 2899358.5696000564, 3409259.9081891, 3359247.8273755712, 2893049.688404716, 2639240.6486604395, 3771911.083591714, 3894688.0125947855, 3693004.4704485745, 3095955.6650141086, 3431522.1285318714, 3883784.5973975793, 3225461.5923437127, 2345777.8476934335, 3354790.757049911, 3884953.0154975774, 2835192.211969393, 2375877.999149756, 3804212.443409909, 3287967.0118430015, 2759791.5698832786, 4282743.53288729, 3425750.0592730865, 3414643.174529728, 3142035.003311354, 3358739.547705901, 2510185.189882538, 2656118.402040622, 2702947.3650199687, 3914872.9882135964, 3835448.018345608, 2510983.721540914, 3076244.3998004687, 3477113.225436451, 3394670.0096244286, 2525367.1657713023, 3429818.948791365, 3833334.6990163825, 3983278.4189497638, 3535518.425150834, 3825883.2853610683, 3219670.4905957095, 2807249.9564401438, 2859009.520874503, 3791296.434267081, 3090815.4634621837, 4258257.805892147, 3841289.4748636372, 2894208.8162717773, 3633731.389365244, 3468119.137788053, 3527961.2786504305, 4224409.166230842, 2657621.1061800793, 2901024.528022401, 3079556.2213941943, 3915327.972788231, 3045525.5757816643, 3530304.9894376164, 3229509.5234942636, 3620689.8714855025, 3684705.5999377896, 3556518.608309885, 3614239.0617040815, 3717586.9857761734, 3493840.858542834, 4053239.755163761, 3678707.3252070984, 3812823.159159023, 3850941.502131334, 3437729.367604982, 3695425.680688242, 2444495.9184077736, 3617149.3086220836, 3478001.6877274695, 3902895.6144328825, 3074712.783586829, 2755819.810632823, 3561204.9074928146, 3148772.382843564, 3679462.7026948705, 3289018.717409576, 3270616.238786338, 3819897.9100520425, 3626640.991377549, 4034400.817603745, 2745348.962327886, 3679130.72030735, 3214272.254402372, 3531872.0278793215, 3404444.7214161283, 3916682.157179668, 3512498.0817790134, 3037803.3467853875, 2393475.7470403267, 4246776.757178956, 3892124.331142944, 3281598.4676314876, 3223366.978754596, 3165626.1982906344, 3617452.795127982, 2812174.920449176, 4238651.512109648, 3580800.7396497442, 3550285.953229131, 2878213.6688500317, 3357966.2036839183, 3890690.118903733, 3042218.9383126455, 3224256.9038218544, 3636141.775148743, 3605857.661993581, 2516661.8495331714, 3633898.7349663824, 3229623.0142963305, 3365288.2812983356, 3423819.922899313, 3039201.9128866317, 3583186.151640493, 3742826.314585211, 2810203.9599358835, 3123404.5525891352, 3000866.6536547695, 2751151.5296879187, 3283455.200524634, 3262481.3312548124, 3957241.950024288, 3883341.3904720354, 3534834.1502754986, 3229428.8032615627, 3233716.5047338963, 2759248.149931936, 2760102.199403256, 3045450.7160451687, 3442322.2330695596, 3853024.538205542, 3358130.6092355745, 3362517.9528330867, 3345058.3160918425, 3153056.550554473, 3806268.3872430283, 3351900.6393303373, 3540150.7830024986, 3220441.721254111, 3846372.8877418255, 3667487.65045352, 3711112.0351153663, 3042940.0390822687, 2405519.6427307716, 3945053.8401824567, 3121107.0693898485, 3225742.0198272453, 3096353.742233438, 3285352.669716354, 3718832.1238597007, 3577337.583161154, 2608755.6597229363, 3684355.845966043, 3562216.550509879, 4045077.029715196, 2376052.846351178, 3730250.6469273036, 3222487.10695719, 3008857.692879156, 3660260.039692243, 3640769.1851906967, 3228811.20321537, 2361441.1306671705, 3445264.7848982164, 3529010.749444703, 3524858.3873481406, 3361178.3444499997, 3738065.5246669976, 3166392.4532363717, 3737734.2954730177, 3211712.343089061, 2732073.423666195, 3487767.3302225056, 3621338.2331353356, 4113293.4604073144, 3130244.717199173, 3662265.3844213206, 3464213.8971815296, 4145584.6637800415, 3116024.30974023, 3077984.4712566542, 3720166.095570379, 3439687.707073118, 3648440.301999768, 3726037.36608168, 3617001.9929361, 3974306.384518927, 3483727.5240142164, 3021702.898136579, 3404880.3893519407, 3818949.6679867115, 3953351.3321040864, 3898382.3320541987, 3142966.5404402423, 3883596.348703534, 3091567.2518794453, 3000284.1358645516, 3286231.544666767, 3422151.4653145582, 3410433.4837397616, 3399702.727113014, 3794215.786819345, 3143470.242310551, 3685615.9194135573, 3574580.122325766, 3632011.605238594, 3458227.380887889, 2920229.448073909, 3154225.204931173, 2396791.9232434114, 3378700.0708152405, 3014345.712629164, 3289605.0383060426, 2385889.4436078398, 3554600.409876659, 3608470.362505081, 3470454.646043988, 3528293.0239083017, 3693505.448536373, 3442918.6731635584, 3656106.7031788426, 3676241.9139262014, 3839591.47181586, 3522108.6020079427, 3172969.5173440157, 3747936.834557825, 3353717.379240945, 3621248.282070434, 3630355.1615521144, 3698078.667826143, 3400016.6821315745, 2874935.171840581, 2989605.23458301, 2859740.0684737954, 3554279.5110236346, 3208545.4199587596, 4231117.006547004, 2806675.6837761877, 3754675.0213112505, 3696823.2857639114, 3422274.2137364317, 3224839.7115840646, 3607964.976359576, 3357456.971022872, 3579303.127412053, 2893097.4718988496, 3172963.1738640447, 3426691.294495093, 3216832.0978598506, 3989463.475925323, 3412889.830127723, 3841357.446891219, 2801351.355169277, 2805809.942967039, 2331985.7326377225, 3449248.3556689974, 3175101.6155933817, 3524178.1422851495, 3042661.8390297354, 3799681.1079625753, 4248986.291165477, 3380378.8559258743, 3783978.0106358766, 3813430.450933064, 3222716.086328677, 4056248.29920681, 3723019.4606229165, 4150096.955943654, 3566526.339006636, 2766372.4637071677, 3814214.4615826206, 3995681.6647158163, 2926484.254583837, 2901116.2314100014, 3112841.242444415, 2974092.4396115863, 2564859.9264790006, 3195638.606696054, 3727401.4901189106, 3996525.880700766, 4119828.9584147977, 3234375.3658018946, 4283302.683560363, 2756991.71007552, 3446157.622537568, 3828588.210795252, 3602745.7609161837, 2524234.4570043725, 3386870.012201312, 2978397.11344487, 3933675.223552245, 2602816.5190000585, 2319557.024905248, 3451420.033432768, 3638182.697480728, 2777602.5637578005, 3530731.2207554854, 3467063.4408092774, 2436152.884536813, 4014465.700779228, 3427363.087689097, 3106420.6181152374, 3007282.9755006973, 3166761.3677578964, 3898205.7231181418, 3092356.68590159, 3682510.288033913, 4038951.1007364294, 2649742.2382597486, 3801183.1019689576, 3557373.3226376963, 3786064.2481855457, 2767180.861047499, 2636977.3087006058, 2764315.0206767228, 3333001.588663534, 3856114.155785031, 2375784.4822310307, 3072178.05725409, 3283482.0413610702, 3550184.7766550477, 4142703.3875323227, 3156478.3530704225, 3152598.842850427, 3439413.161653969, 2977227.322027259, 3229566.3587718126, 3525545.31217571, 3085726.1812026915, 3622744.2464509257, 3358791.1903072665, 3793743.0557753784, 3469282.110598838, 3406391.369982796, 3810230.5946390773, 3552022.1977855484, 3617850.975630064, 2612739.9272851697, 3831029.864998789, 3680354.237463663, 3569876.8208789127, 3738173.2198408847, 3520977.1477433383, 2903468.6279020864, 3600355.402404968, 3336060.6945636324, 3443227.167726708, 2495759.143047478, 3477813.971401042, 3335401.337379921, 4028853.3949258425, 3398211.3005182855, 2891673.899779668, 3416108.0858185, 3714455.4065317013, 3646688.886485773, 3628884.2936042454, 2945117.3297240664, 4052990.307015594, 2746153.9898199113, 2903786.4108151775, 2721135.695806392, 2893711.6459517977, 3618183.403211587, 3074264.156332146, 3235902.039557406, 2922422.062687029, 4209815.826042991, 3672696.5548046106, 2924112.4129295256, 3448007.731195238, 3461689.202653187, 3708992.6960955756, 3935287.4307872076, 3849827.7087918837, 3379945.8095943383, 3665452.20093809, 3634489.717734572, 3970193.9709107503, 3668117.5329869953, 3381076.8613979174, 3696581.447681013, 3353245.0576617615, 3018218.8991987277, 3722596.9725327864, 3325813.3954110807, 3846785.244214662, 3026671.5621947236, 3176021.6927854638, 3220046.509462515, 3882947.3975199834, 3075652.655086303, 3215787.596196646, 3044563.203620683, 2845211.9091240163, 2929616.2444524607, 2986299.491411805, 3200214.8844396467, 3546773.703825089, 2557408.3079331545, 3684441.014841949, 3005399.12701216, 3416425.365959653, 3615548.0872951187, 3002901.6491808915, 2836276.509711126, 3553190.149805584, 4015755.090790001, 3474328.694776661, 3688420.085696453, 3286355.93071715, 3816113.8558487026, 3481288.1786371926, 3656370.1589568844, 3236663.7248273348, 3158288.714812942, 3291266.233517963, 3908975.9578953106, 3046303.620207925, 2812613.294820149, 3281054.2351195076, 3616312.77981149, 4032490.6673034537, 3215120.743077719, 4250538.774394757, 3775800.555131238, 4234894.625667654, 3511400.5032587256, 3787650.332634187, 3429688.2562139416, 4035700.4852723097, 4228341.56030305, 3837848.099496048, 3428077.2634330494, 2697991.51780867, 3439487.172329452, 3450923.012573421, 3299232.058336237, 3935782.9183881455, 2888981.817937336, 3548600.344319051, 3090394.220906782, 3759506.441415239, 3661674.4455540865, 3111761.506316808, 3411080.3857172523, 3680285.3714504302, 3921095.9657078586, 3419167.727883034, 2922003.0264393557, 3738013.08258497, 3667222.326762625, 2636291.7709541875, 3666655.390783085, 3041233.701188188, 3180223.1746299686, 2615507.1125789713, 3464448.9976284397, 3398783.9832461523, 3827532.279347273, 3943166.6957599344, 3614805.855470717, 3814399.996601104, 4020889.7324102116, 2665099.029980667, 3377978.7090698653, 2580867.186442832, 3117996.3029945814, 3369016.540369037, 3732757.367943981, 3572311.2032094547, 2801595.679172265, 2875627.2247319473, 3942516.5434174743, 3207756.575779542, 3569849.1649276875, 3807051.117500694, 2621013.017404557, 2365163.532845314, 3681888.687569694, 3580247.643831329, 3228649.8177477233, 3774093.1233955584, 3830428.9023401686, 3289069.390425699, 3458328.61464453, 3547504.406478115, 3094956.4208046696, 3664254.4632720235, 3734923.392267728, 3789570.7601049542, 3662056.4586659544, 2796087.969855879, 3070217.0178187634, 3197510.7135448544, 3170404.740640423, 2696570.8679443374, 3735032.948649671, 3512558.7069775076, 3847065.018140118, 3670858.346540568, 3169672.3886493035, 3978501.8224020256, 2844194.0389750637, 3950637.3635769244, 3687362.180653163, 3031925.7740163514, 2690761.701073395, 3545162.0025290274, 3819853.093689141, 2862317.225214374, 3007145.4362556664, 3616887.327997864, 3883443.319769939, 2593721.2640561345, 2809074.07286023, 3564953.598876766, 3149987.7263645, 3180147.4000321543, 3226893.0897920146, 3825618.8643756486, 3266571.1426956896, 3297243.648848199, 3145530.275714979, 3816145.5348663097, 3700379.936718554, 3332549.0180449355, 2979682.0219254023, 3678793.1579254125, 3804702.896603726, 3528791.6264198762, 3203854.7782501066, 3558565.6893982515, 3645535.8777669887, 3864022.5902171526, 3580375.5143358153, 3092032.668731167, 2658198.0403929064, 3727686.789474894, 3424396.5916146706, 3627374.525836921, 3381873.259728357, 3563153.4788991516, 4055222.655127758, 3946642.742438696, 3907541.5807020636, 3737762.962142973, 2755529.410079069, 2892503.4834966976, 3607541.9880988942, 3554851.462623276, 3866572.06857221, 2432510.321469471, 4010654.093670071, 2797226.5088491696, 2914127.977762151, 3447949.2247260073, 3681760.064498012, 3002204.071928443, 3261615.547413575, 3881586.2139031272, 3689334.270159305, 2764917.7668997343, 2900954.1247071223, 3795217.763311702, 3529620.3180897385, 3280756.736613416, 3727319.249644557, 3601747.012412989, 3139777.1922382736, 3595515.9075710736, 3583360.0940960012, 3488281.1350517836, 3774254.4531134325, 3383954.389560141, 3429502.3162910384, 3083449.589112423, 3634082.875915706, 2660423.7965397076, 2943981.103523418, 3710355.6687712166, 3096974.279540259, 3909933.674548659, 2869765.150717591, 3956246.062891852, 3445494.4430931765, 3569038.357179148, 3163305.546695308, 4231287.543265588, 3644592.7439606218, 2945387.479056771, 3525191.866584024, 3554788.1337609477, 3778685.6135561187, 2404997.824670147, 3824970.9328791196, 3543716.454993166, 3626409.139562407, 2724678.851009358, 3423275.775112243, 3890284.6246502833, 2912369.4861146878, 3571041.0333439494, 3768541.088281539, 3130773.3247693935, 3041794.321322533, 3683535.0216716435, 3810507.8067872417, 3445137.858385384, 2494671.3711482314, 2912636.9607166895, 3414233.6712127067, 3222115.6626848564, 3202663.293433961, 3772759.8719824688, 3198494.7712708013, 3216756.1818610867, 3302179.3547622385, 3049778.8165678917, 3878102.834358261, 3604625.680241574, 2913105.3367278017, 3917219.0882727443, 2459072.673961398, 3871345.1300365548, 3852626.451283605, 3413010.4272459433, 3124837.3062410234, 3318095.8809274537, 3156634.8478891985, 3415688.270895165, 2887399.5100899627, 3559033.0731023396, 3886132.5166159063, 3573138.211768854, 3582173.977092844, 3678310.7264331337, 3510522.7028531353, 3687462.840977819, 3656811.541055868, 3581784.6838348815, 3087603.5898206537, 3268061.2283780375, 2835563.9060651236, 3806435.729467123, 3406553.4216437037, 3474680.212250636, 3927811.922486499, 3547217.7828569436, 3008933.900157935, 3004023.477393684, 3384741.255671773, 2881216.376176749, 3218666.6686768085, 3670727.401591539, 3213570.2104765815, 2727087.065907402, 3911640.8578461055, 3820266.298418647, 3547731.2244613855, 2975618.3281468465, 4252433.591926029, 3612689.0197852645, 3635642.602985675, 3654245.8597819167, 3869883.340493035, 2894265.591159623, 2577130.568375668, 3629759.7254546448, 2517060.0605687485, 2797948.327413146, 3268884.2279184354, 2909509.6461417545, 3817503.9342653207, 2988925.2741544396, 2724479.435690772, 3869682.2542724377, 3253532.981327391, 3603541.421669642, 2922168.736061371, 3119238.179356365, 3836131.9520962643, 2877352.7944964347, 2378178.2777929683, 3210022.2202544142, 3504917.3872783817, 3851536.2282531257, 3546784.5045575993, 3219584.329905437, 3400496.159208219, 3596339.276727654, 3418083.975559789, 3692431.6087375605, 3322930.7376203714, 3168246.869172043, 4031935.9469790882, 3015785.367941349, 3134904.114733368, 3438859.072841916, 3634486.715242421, 2752826.901840603, 3666456.0631165737, 3270343.4790233024, 3466835.9018464056, 3214116.765895913, 3835075.57377799, 3258229.970663781, 3850641.23843619, 3492570.500267085, 3091802.420844796, 3753445.467068428, 3090716.4345904016, 4146877.1697772057, 3630403.325897369, 3211047.6308591007, 3699626.919774608, 2468076.48307922, 3146707.484423625, 3694933.224678292, 3513644.4747125707, 3544786.2655259385, 3424047.2887811163, 3476620.082240369, 3764827.2468237113, 4002691.6874995935, 3639376.961320511, 3137056.5101596084, 3598939.9174407446, 3355991.209454524, 3716707.7716168193, 3623149.1743984804, 3413703.8350363197, 2698605.2522190544, 3602273.3259504195, 3852292.1498042666, 3528358.9955150206, 2878612.299907571, 3911554.349061958, 2993751.021268044, 2759940.1631458653, 3567944.854604162, 3787248.6807104736, 2799667.853748834, 3096371.1814904897, 3574207.401029672, 3626742.4672606187, 3006622.8583016577, 3826662.454223103, 3899592.800974261, 2739582.2204775847, 3970200.3695156104, 3870309.400024921, 3088625.9743315675, 3142281.6705262107, 4283302.683560363, 3637655.458389634, 3718494.1538319085, 3451009.2660839316, 3448434.403583216, 4121013.970793598, 3694615.2768477486, 3554219.673713966, 2464083.628461788, 3747188.7347562346, 3047626.9376986297, 2723091.1814664896, 3120816.886065162, 3449089.1155784717, 2898292.130166793, 3630404.8989553843, 3791924.049336614, 3284387.6498830677, 3532284.2293951674, 3819365.444956729, 2975388.9888806976, 3551276.249679825, 3796073.689863204, 3463148.4202897386, 2870399.925285959, 3777980.204755108, 4034006.986236526, 3813254.2573706945, 2602430.3251277646, 3631411.7221004833, 4282276.565476684, 3451840.9654604015, 3732950.1088573243, 3349227.6107208016, 2623979.8625423103]}\", \"simple_distance\": true}"
  },
  {
    "path": "demo_result/gnnwr/dataset/val_dataset/scaledDataframe.csv",
    "content": "dem,w10,d10,t2m,aod_sat,tp,PM2_5\n0.07138121546961326,0.26462934076783196,0.8566338044720184,0.7556271721024219,0.7952310295004205,0.35935811946293866,42.046348571777344\n0.03138121546961326,0.22196987005762533,0.688254724079827,0.5508958231069015,0.7396177826672866,0.25330129287974706,49.331478118896484\n0.00287292817679558,0.31399370078216826,0.5290023404359403,0.5388900018000173,0.7922230932889525,0.19601078539892255,47.90083694458008\n0.01878453038674033,0.20914337229920704,0.6090647393565223,0.6717626814160341,0.7811328057834381,0.4407801882510539,62.2929573059082\n0.013480662983425415,0.21287228325005986,0.6307917909968291,0.5260040791196794,0.6075680424125584,0.21965646533073216,32.28248596191406\n0.2346961325966851,0.1987104620578581,0.950542118606827,0.3901754974618328,0.36236279697379714,0.09941453589153665,45.810054779052734\n0.09834254143646409,0.1259703673681954,0.23410548410575277,0.5550974437368675,0.48566701472901463,0.22559798738337067,81.15416717529297\n0.3425414364640884,0.11940481253887676,0.7377137937273797,0.4610849912058254,0.2669989363798782,0.0840632701906684,29.567039489746094\n0.01966850828729282,0.32915139042100156,0.7021268651902456,0.8927372004149862,0.47970817538253047,0.733156058404721,33.82303237915039\n0.0061878453038674034,0.339273837395902,0.5900476969894002,0.5825818544223424,0.7935680155474676,0.22663241581092822,57.42499923706055\n0.24662983425414364,0.2000145403321637,0.3301368651670905,0.48070089069453575,0.3297992915977223,0.07077560086349767,34.72549057006836\n0.0077348066298342545,0.25182001837889634,0.7111604133266705,0.9157294021956335,0.47799694790103064,0.8094660434959557,33.54142761230469\n0.12640883977900552,0.33808822561716834,0.21624013202464626,0.3078639867361807,0.3782347787669252,0.16056110661322415,25.29608917236328\n0.023425414364640886,0.18621504937114372,0.5790331600825159,0.6497780111129807,0.7872956118744703,0.26052201678100556,65.23728942871094\n0.7432044198895028,0.06055310128894863,0.1642749191319137,0.20338440163235763,0.028043641515072944,0.34137494135510915,19.72532844543457\n0.1650828729281768,0.3903823211487543,0.0926835589456522,0.43305036829499777,0.19940789093555736,0.2630633047427878,34.77683639526367\n0.019889502762430938,0.36615440788747405,0.5820107329082754,0.5699734197257863,0.7416625066535646,0.27376701946297605,50.2808837890625\n0.006850828729281768,0.3041740099343784,0.6901598784223004,0.6184433057855897,0.7123419784406242,0.45765541388492403,55.98459243774414\n0.04331491712707182,0.30219393790065363,0.9134565795549225,0.5999016301654251,0.6934867257716688,0.2344040946231044,66.33192443847656\n0.00287292817679558,0.44532149932651616,0.7378780238540196,0.6864826448475477,0.6606947647063635,0.4632768287417972,43.779659271240234\n0.3608839779005525,0.39694270632441386,0.002354811096164761,0.6651065426119298,0.23088285831071317,0.6023514120176766,29.8424072265625\n0.010828729281767955,0.250429457290448,0.5079937849905017,0.35862761467050636,0.5125882731298991,0.2829211773303784,36.12638854980469\n0.09790055248618784,0.040616175726953016,0.0831266121540131,0.6607274725846098,0.6094107987518136,0.7849305446971899,41.53792190551758\n0.009944751381215469,0.12445066908880197,0.9261365033067309,0.7478384535876891,0.7754813570799336,0.636831705237893,32.59357452392578\n0.07005524861878452,0.1556091279832533,0.770516533595627,0.8157682265787977,0.501038369584566,0.8551910068315806,28.128833770751953\n0.2041988950276243,0.14364304617101487,0.016621598500523787,0.3845602363307983,0.18013407722228078,0.12053289190917539,53.6260871887207\n0.0061878453038674034,0.3256193997207006,0.6956207635350662,0.6489217284505812,0.7229903477991156,0.5787578921363077,63.050418853759766\n0.00574585635359116,0.184189473023343,0.7608575105660379,0.8975152338524645,0.42644695498317525,0.7851650732156665,28.847339630126953\n0.007955801104972376,0.2035249055948139,0.7589765451569456,0.8972722829997114,0.4931504011263444,0.8545652089197365,28.381284713745117\n0.46983425414364643,0.4586885572803622,0.500589255425479,0.6532924619290322,0.2219308995932412,0.7634359415647508,26.839031219482422\n0.011270718232044199,0.32752743745948354,0.7117181592063677,0.6576012667587423,0.7302406629438112,0.5599507662043455,56.07521057128906\n0.13215469613259667,0.08688425405579243,0.056036868678531984,0.5530061609063062,0.48383143162205544,0.38568052558218224,43.64899826049805\n0.03933701657458564,0.3825970499757204,0.12681748583845656,0.17096356308089375,0.3547002561600254,0.18471556558452779,34.97091293334961\n0.004861878453038674,0.12323059295234118,0.9672133012399627,0.35564074830430603,0.5143514771470519,0.2753916340302156,22.355741500854492\n0.04265193370165746,0.2971893912388503,0.562126453624354,0.35065549208065594,0.4918094770628794,0.2742217827136868,27.613845825195312\n0.0026519337016574587,0.3249415880610936,0.7340514194665845,0.6765812066623047,0.5848141379907236,0.5123935603206325,40.80791091918945\n0.0077348066298342545,0.23259576176578584,0.8487254661050657,0.7036344986776981,0.623473273901288,0.6723362433298032,39.34916305541992\n0.3438674033149171,0.11637129575100984,0.180887157153705,0.46082179444867616,0.2149758923108956,0.07605868854815047,24.386871337890625\n0.0064088397790055245,0.26035566572736707,0.5607484482826871,0.5672580866656042,0.6706994834587534,0.19812444069782986,55.098609924316406\n0.0064088397790055245,0.28626023211915136,0.7357768967144342,0.6431135357600074,0.7191806558861038,0.6456254511131295,52.09888458251953\n0.009723756906077349,0.2610959866423901,0.6721148492465703,0.639957556545322,0.7641785772668966,0.44009988377664994,53.261234283447266\n0.6066298342541436,0.11135134427876085,0.5667060552642694,0.10614094094680936,0.15671342967808005,0.6604083547706925,15.216480255126953\n0.07314917127071824,0.30561950569412694,0.15742602421950802,0.5330901456583126,0.7030372378069552,0.272937550433857,52.41044616699219\n0.06320441988950276,0.1513437092394747,0.7563398665449583,0.8064289099744344,0.5028171548030176,0.9168258131092086,32.439056396484375\n0.005082872928176795,0.21623700819662253,0.7604953555529256,0.8853748368281239,0.3514212070459599,0.7013885785811967,26.142253875732422\n0.11403314917127072,-0.0045134615457342155,0.4457288818273835,0.6264023280843604,0.5169387209234549,0.44983790907136095,47.886112213134766\n0.0055248618784530384,0.4152914167595731,0.9287662222957805,0.81586588329412,0.3666185522213471,0.5848627498364597,28.973388671875\n0.3374585635359116,0.1083027351320431,0.18556336599860634,0.47156046032747534,0.20680070057590347,0.07292509031643457,33.28028106689453\n0.019889502762430938,0.34052523443768185,0.6982347809357807,0.8919881019523306,0.4830355556191149,0.7220068437888547,33.86731719970703\n0.0064088397790055245,0.32972550602406253,0.7318435215263206,0.6626305875978428,0.6467838681868817,0.5212270588717709,43.63128662109375\n0.07513812154696133,0.23367265932599673,0.9990154680007383,0.7878848524831644,0.9385459782941107,0.26881275020862266,54.58543395996094\n0.020773480662983426,0.316460932193304,0.6965206342935673,0.8921345870253141,0.4762653766623635,0.720930760937011,36.84195327758789\n0.0022099447513812156,0.18667821625336775,0.538702272468651,0.5438859764436419,0.5917029104683031,0.23163146817239327,41.015625\n0.019889502762430938,0.258787215530958,0.5102667384305432,0.3339454753405615,0.4838269042541309,0.2945125484455699,34.99301528930664\n0.012154696132596685,0.2477625030326376,0.010995409081510737,0.35644105699572814,0.49577839121406814,0.2826321422493419,31.036516189575195\n0.011049723756906077,0.23231472575862747,0.9705063062443564,0.7691526271745659,0.6940426512746094,0.7167743364765493,41.82670593261719\n0.04795580110497238,0.39665188016728575,0.12289669313937357,0.23614108400968614,0.4225072335355518,0.2872496486728877,34.31727981567383\n0.03403314917127072,0.38044132333634906,0.12872673532491466,0.17203659601388677,0.35015610169598427,0.18080523349965294,37.67694854736328\n0.03469613259668508,0.11048697061238047,0.7309995399349474,0.8117988383816104,0.38001353458688364,0.6138900556252482,22.719274520874023\n0.010607734806629835,0.2862678445761878,0.9387571853901183,0.7923877798079664,0.5586203159010374,0.592549616805373,44.83333206176758\n0.011712707182320443,0.06979666453477176,0.20975571553605932,0.5053151466979761,0.8084514730129185,0.2537879564259346,54.898590087890625\n0.3540331491712707,0.10601224717302062,0.7210367548261623,0.4453205772945839,0.27668303516743115,0.09003772776471865,33.15180969238281\n0.019005524861878453,0.28609372382382464,0.7427293902823076,0.8951857639113608,0.4271327630282623,0.7867256724784252,24.588483810424805\n0.00287292817679558,0.13232767794370898,0.35372495817399424,0.45338559285754587,0.616829155682591,0.18559928045263796,36.638267517089844\n0.025193370165745858,0.19266971228900628,0.8671306133310972,0.8223743460896881,0.5076160472090459,0.710521878563095,44.24504089355469\n0.031823204419889506,0.1716162314848382,0.7856419160755366,0.7012621550566969,0.5508671689317891,0.854899303168134,26.528011322021484\n0.2556906077348066,0.0570191980061584,0.6485773620345033,0.816480406039319,0.22275170551825965,0.5578192129992741,34.35013961791992\n0.017679558011049725,0.16085746263482537,0.11814473473993677,0.6309552747023762,0.729690852327418,0.17674417251865016,68.9383773803711\n0.24795580110497237,0.37948931173174827,0.20548808748167194,0.3033205676025865,0.35264577187406587,0.25179179543647334,35.798797607421875\n0.0022099447513812156,0.2895031766895914,0.6266398666737811,0.5574209590002075,0.6936432433484883,0.18412852346435193,50.715877532958984\n0.01016574585635359,0.16912923040916011,0.903869444337873,0.8713563344371574,0.41898470610232436,0.6682983407363822,26.022409439086914\n0.028729281767955802,0.23640469819782264,0.8710661103554724,0.76816176879471,0.49322501450162,0.6559431722580484,36.319087982177734\n0.009060773480662983,0.2595277258105839,0.7042282469501824,0.7333912143977465,0.6820039683843854,0.6649091797288597,54.805320739746094\n0.022541436464088398,0.05201049479132146,0.045440651790602034,0.6371076477676836,0.7801266129614581,0.3263053644653094,60.342254638671875\n0.029171270718232046,0.33325901164118665,0.6926785405014232,0.89306828049864,0.47409029975805067,0.7216316472366697,34.7065544128418\n0.07955801104972375,0.35419739663971433,0.6920947384724349,0.6012033227245387,0.5538762810829777,0.24122405572575498,73.66899108886719\n0.0015469613259668509,0.3385466015749391,0.5393745550697439,0.5355958740612174,0.7750870644915974,0.20042965113640318,57.088661193847656\n0.02276243093922652,0.20038122594921207,0.7482319058225239,0.7633265704507015,0.6243329446340742,0.9729148143649159,49.81983184814453\n0.34209944751381216,0.14854056395926127,0.16454437111876127,0.6529232719076917,0.1890358086144342,0.9229030034377067,26.178470611572266\n0.0059668508287292815,0.2421902034184306,0.7482375923437047,0.6809936228851007,0.6604642217241287,0.5862191872081668,38.02668380737305\n0.003977900552486188,0.4963601075408997,0.7335217242622643,0.949043442411631,0.4212173452559634,0.6812161200028272,28.538135528564453\n0.02740331491712707,0.2551425907648543,0.7751114124566252,0.8933028948025241,0.4606947000241608,0.7054927969811763,28.27130699157715\n0.03248618784530387,0.2113279012946789,0.6819909785624358,0.5470395737872218,0.7389101021433954,0.25933557117615663,50.277931213378906\n0.0026519337016574587,0.3420968091500387,0.7605576526655631,0.6884107695073876,0.6261036746654391,0.5485630968797901,41.25\n0.23867403314917127,0.12022044375647166,0.5200983091849172,0.45666900217637135,0.34763700362639327,0.18777300952913306,30.51983070373535\n0.07337016574585635,0.32249942852338137,0.9180919430517901,0.7819504206240032,0.9510326942179049,0.2776422918961875,34.325843811035156\n0.005082872928176795,0.3250606226504742,0.6950427329007091,0.6497291827553195,0.7273103387539065,0.57735403374844,49.43333435058594\n0.037348066298342544,0.29248097294305614,0.9924335319175729,0.7454029903823941,0.7352256478106335,0.5778947437567717,41.67039108276367\n0.6744751381215469,0.11449144493336796,0.5571426846133486,0.07932940884861642,0.16135520183818214,0.6750743315759885,18.258928298950195\n0.08530386740331491,0.23455869630294848,0.833207883410581,0.7708997296303937,0.8726242086817552,0.23964764434538258,37.295013427734375\n0.05149171270718232,0.41171901565301405,0.12493071720718904,0.2429377532090104,0.4165510988504251,0.2788013461896318,32.667606353759766\n0.20950276243093924,0.28881860471366105,0.5181475777995468,0.41694772868678626,0.528433296504931,0.23624530912929537,67.22486114501953\n0.13613259668508287,0.09607576570639446,0.8358323402457021,0.6321581196106147,0.5634026863539906,0.3556446183358279,21.462289810180664\n0.003977900552486188,0.48752685478251717,0.896141716673499,0.8607081796603643,0.352801819074997,0.5575088599323179,26.7605037689209\n0.051933701657458566,0.21423178854363317,0.8574770222023376,0.7904501276637048,0.8661135596213527,0.37073741495993146,29.910863876342773\n0.24640883977900552,0.27189276096820425,0.9397889070539088,0.5554035141739143,0.20063665974816466,0.06396169008131133,69.5\n0.09149171270718232,0.24884089657321137,0.4856857745817969,0.5950390403037042,0.5567055332538919,0.26651835212981434,67.50701904296875\n0.026519337016574586,0.2584060624582484,0.001744364108322573,0.34960985066537525,0.4796015764468529,0.2901658877999666,30.00423812866211\n0.014143646408839779,0.3380217207686312,0.863808157239394,0.7458210087613959,0.5510016376388461,0.7847904287839803,31.278711318969727\n0.04707182320441989,0.38192499500004146,0.8701356427180805,0.7995310112531296,0.5264044477048818,0.7129583249768582,33.866947174072266\n0.17016574585635358,0.26428206502258045,0.9620871994525361,0.31146180304092197,0.43779068689698414,0.2086589764952274,30.672672271728516\n0.2543646408839779,0.057019231144963906,0.6148573523504106,0.42242960503591703,0.4349088702205565,0.37232328907218326,20.0625\n0.011270718232044199,0.5072356196685981,0.7485261620752683,0.7015991898181142,0.6550343200639959,0.4591991734724743,40.37882995605469\n0.011049723756906077,0.3159726745011962,0.5347098253590172,0.375200673822039,0.5079695346890754,0.26046011793843615,33.31894302368164\n0.12530386740331492,0.11832875765114877,0.9994843089410788,0.5883817105640472,0.5024179820648406,0.4851202800092918,41.890625\n0.01723756906077348,0.2959811503900705,0.9563492449607439,0.7955044581494123,0.6758797331161908,0.6146365225394056,42.722991943359375\n0.0077348066298342545,0.19900952557521223,0.5407520511707081,0.4904475072579263,0.7302203779836298,0.18450847438749735,45.89027786254883\n0.002430939226519337,0.4539937542995163,0.7508078150439819,0.6930113535475119,0.645051238602466,0.45541635054942353,39.79469299316406\n0.022541436464088398,0.3332257970898386,0.513672540250598,0.5427688788951985,0.7006063352164134,0.2723657989841573,50.945072174072266\n0.0676243093922652,0.2794549795754866,0.8747919699572116,0.770572222353398,0.8074929057496251,0.41660832214736265,30.788888931274414\n0.6567955801104972,0.12091969148912649,0.7390219482193181,0.13250110847052465,0.0893352587216911,0.417587967952111,3.8563380241394043\n0.0017679558011049724,0.3656102118916707,0.539227851310624,0.5465191349506869,0.7511444026061506,0.19262292800924405,48.9523811340332\n0.004861878453038674,0.34330264506836167,0.7354454658903884,0.6504425531513938,0.7169343758317052,0.6129075265245626,39.82558059692383\n0.02696132596685083,0.2064475588759152,0.9606031022977942,0.7730839054340665,0.6784058280271197,0.7638991706631073,33.7014274597168\n0.007955801104972376,0.16204008245283325,0.7395447686741511,0.911446797948083,0.5056572256193618,0.7880043835532686,39.67787170410156\n0.24022099447513812,0.3758912706579571,0.655477531120168,0.6238763537770593,0.5334926007620988,0.5345289913118231,32.426551818847656\n0.0026519337016574587,0.16925936176427045,0.7714856186529782,0.9167428883509909,0.5106019933477376,0.8123379902896994,38.81534194946289\n0.0075138121546961326,0.3323217704756118,0.8397096140830618,0.7210352580383651,0.7446037670828715,0.6625686795884151,48.60393142700195\n0.0075138121546961326,0.32108362513336697,0.690052937874721,0.6368063410728476,0.7378301191039441,0.5507890013434064,55.42916488647461\n0.012817679558011049,0.4196999004608398,0.7426059842853389,0.9124698115878622,0.4122005334628972,0.7469654509297426,22.577465057373047\n0.013480662983425415,0.25520492959212776,0.5046039393791333,0.3534923005672146,0.4984731746779253,0.28756135136772937,30.669971466064453\n0.12132596685082873,0.05236726717140821,0.5743045631003182,0.5403834349831175,0.492390567675842,0.3837407729036651,56.48472213745117\n0.24419889502762432,0.21129919362087982,0.38284257769672314,0.47151996851868316,0.30679447103799234,0.08062588299125797,45.58882522583008\n0.15116022099447513,0.22495550600564992,0.211734094447917,0.41548049608584575,0.5440327836662898,0.27433033573839105,58.709720611572266\n0.029613259668508286,0.062231823227739284,0.9696069022898328,0.7315631283243343,0.4731863548947818,0.6797956366532781,28.007246017456055\n0.06961325966850829,0.28255955543059036,0.8753979663934953,0.7703316533717502,0.8142505021513654,0.4154150057096418,42.27513885498047\n0.006850828729281768,0.2741777478855126,0.6892119268541138,0.6060992587817354,0.7148734826742681,0.4058242738946227,62.16432571411133\n0.3374585635359116,0.22884670242118488,0.139626417234964,0.4164761182079125,0.21060342504607044,0.11115398265712648,36.281944274902344\n0.0022099447513812156,0.3520537135890872,0.7288812683583691,0.6669179555876039,0.6122424615991552,0.5160249181868906,35.28041458129883\n0.026519337016574586,0.17225340550066365,0.7523131305613387,0.7603408950200539,0.6513175273889159,0.8346335975722168,43.545833587646484\n0.07911602209944751,0.12016753528642243,0.7241494037483287,0.7660216576064875,0.3809432325300349,0.6479443572074052,20.88194465637207\n0.01723756906077348,0.23162144301096388,0.15755418312970246,0.5865286148440282,0.7222760820127887,0.20316801544283777,74.24929809570312\n0.23823204419889502,0.3772847290248297,0.6553257349540206,0.6223817296584064,0.5303590153914786,0.5353784593723372,30.99571418762207\n0.08044198895027624,0.2918826754802053,0.6641799454896237,0.6175203307322383,0.5408222330409527,0.3052694507737935,72.50142669677734\n0.005082872928176795,0.31665090276292956,0.7298332938521778,0.6769587332325142,0.660106736049049,0.5576495279660263,42.490196228027344\n0.06386740331491712,0.2689772467326321,0.8605790619431966,0.7560035077370788,0.8115185589923356,0.35408401907306924,51.3324089050293\n0.03580110497237569,0.3605124410358615,0.8811513678532712,0.8025309779104098,0.5338651384656029,0.773125533622387,37.93016815185547\n0.03270718232044199,0.3165324362673576,0.7056393105008034,0.8581750597397471,0.49193324471847855,0.7052477781732256,39.07283020019531\n0.017679558011049725,0.1343007150824361,0.11340814904421449,0.5609735197539458,0.7454049348145549,0.2554597466224466,72.54901885986328\n0.0033149171270718232,0.3255911465219484,0.7324337315008187,0.6782080246273086,0.5722420488432096,0.5161763832436833,43.175636291503906\n0.0026519337016574587,0.3527683377274972,0.7296882451253418,0.6631010071411637,0.6603863745146212,0.5183614307904004,44.14265441894531\n0.0066298342541436465,0.11413174687016646,0.954801832211959,0.35465346273110826,0.5108444721181371,0.2755613190634634,24.141643524169922\n0.2450828729281768,0.15128491153027543,0.0022717392173056375,0.5008431836975445,0.3108666914936408,0.05800646470463027,43.65340805053711\n0.0035359116022099448,0.3218894851374524,0.7085354048141215,0.6228295214262259,0.6941828232893117,0.437648959536478,45.62465286254883\n0.06696132596685082,0.221158329115453,0.9076038761581087,0.7789599814511448,0.9012555774214047,0.3719628464066564,37.21030807495117\n0.055911602209944754,0.278327559539223,0.06396376250359148,0.18969340651838676,0.4027616181071012,0.36710976857035876,29.627809524536133\n0.08552486187845304,0.5974767530850151,0.3714964826556173,0.5353100495285668,0.15527984156462735,0.05940002451153045,24.268259048461914\n0.0072928176795580115,0.26073022891189596,0.7801824313747033,0.7286250903157951,0.7033937827302583,0.652148448070916,45.08988952636719\n0.04839779005524862,0.40566048454795023,0.12358637479781073,0.24082265166739486,0.4034277879588533,0.27868227220209246,30.474647521972656\n0.20508287292817678,0.27936275901387614,0.516359718565609,0.42029544852545814,0.5211906249684197,0.23627033859190025,72.2450942993164\n0.017458563535911603,0.15566161985117616,0.8524795036923577,0.6396217127194574,0.7395411701944858,0.21285519964163266,53.456581115722656\n0.014143646408839779,0.29371792146563497,0.6952390451916228,0.6038305265538202,0.7095446530331257,0.36498849094123414,49.326332092285156\n0.052817679558011046,0.29412249893972287,0.16013015600624833,0.15173114484015648,0.3353439061776052,0.2172830220005356,25.84498405456543\n0.03005524861878453,0.2572047334174743,0.7672913424781508,0.8923584829092239,0.45971996358970835,0.7016478298286678,30.147308349609375\n0.0017679558011049724,0.34194584768860975,0.7417572497807399,0.6736931879469794,0.6421995259828872,0.4672482928352156,37.626564025878906\n0.33679558011049726,0.10372416414445493,0.7056219538801843,0.5242653132127207,0.5943411900285828,0.54049949969064,31.519498825073242\n0.2850828729281768,0.3901967817108365,0.5539450349305466,0.7139884923729715,0.2823360419910655,0.7492835595166314,27.5\n0.001988950276243094,0.2103739013617477,0.06811280112932377,0.3991408603026446,0.5461635276431339,0.22607041849003776,32.5377082824707\n0.011933701657458563,0.360758046925818,0.6171290751254203,0.550571888636564,0.6133946473374547,0.18875027814840117,28.97706413269043\n0.023646408839779004,0.19524130253279814,0.7519451192801446,0.7647080556918467,0.6269529971286836,0.9759077368945832,50.74166488647461\n0.07160220994475137,0.16243924409927835,0.7439432503707851,0.6150777219136271,0.6936167259077874,0.44354201767868057,45.014163970947266\n0.20508287292817678,0.14884165367786636,0.1362419080417932,0.8119643784234373,0.2122344534386214,0.9586032375730227,38.136104583740234\n0.024972375690607736,0.1293450528928704,0.4831729263340306,0.8063467354212973,0.4741139361464359,0.5170825356753909,44.844970703125\n0.014806629834254143,0.1755510006954996,0.6407978615653488,0.6494385944804579,0.810898015601745,0.3930445860995591,55.54802322387695\n0.8313812154696133,0.15655769315208137,0.078868309569995,-0.052070083488696337,0.0307829710454732,0.3420160146007488,17.880952835083008\n0.04265193370165746,0.12217108853090632,0.7591894926441495,0.7800413509330067,0.3753069534489269,0.5938337877384807,24.416200637817383\n0.012596685082872929,0.2569445843260154,0.5139895001513406,0.3540460855992254,0.4950229087405322,0.28643444275665014,38.46111297607422\n0.4212154696132597,0.39420964488373234,0.005227900394428213,0.6414593262772912,0.23474155751158338,0.8200105634723703,21.875347137451172\n0.13303867403314917,0.09416598581326482,0.05702188872620698,0.5369987961423115,0.48636999149402327,0.4000932631187701,50.70172882080078\n0.2861878453038674,0.09314315184718082,0.44076306355115036,0.6576167489209275,0.20775959122262005,0.04650599792903731,63.63700485229492\n0.0492817679558011,0.44459263496996837,0.8910344567920744,0.8570305706735913,0.3412766396622908,0.5756869979228885,25.399999618530273\n0.0033149171270718232,0.17946709855631537,0.5291369072916444,0.5381790132750486,0.6112909499741858,0.22685058009129244,38.384830474853516\n0.0037569060773480663,0.16929918514025952,0.7165816625380715,0.9161867214478746,0.48213613812377054,0.8763317620711154,35.29722213745117\n0.052154696132596684,0.21003188995245672,0.8694469795410489,0.7786050826564368,0.8760086219947915,0.3882610754460898,40.68156433105469\n0.043535911602209945,0.31731951130283576,0.0673372964986997,0.1797062209733485,0.40231984695254347,0.3391284857395991,31.672752380371094\n0.0030939226519337017,0.26149247824793437,0.7805035925112437,0.7186081313819391,0.5954124711141011,0.6601696546751151,42.869380950927734\n0.12906077348066297,0.23621660233776576,0.1388620257217595,0.5002608162122687,0.20377915286216886,0.06662602423088702,73.18696594238281\n0.5670718232044198,0.0380961163257243,0.20757561365082106,0.20181593950943666,0.11986208059932785,0.4510225142745478,29.07799530029297\n0.012154696132596685,0.356648342695001,0.7467829462762725,0.6604523664719335,0.6982422260020049,0.5659413349612796,57.34135818481445\n"
  },
  {
    "path": "demo_result/gnnwr/gnnwr_result.csv",
    "content": "coef_dem,coef_w10,coef_d10,coef_t2m,coef_aod_sat,coef_tp,bias,Pred_PM2_5,id,dataset_belong,denormalized_pred_result\n-5.2303567,2.8828957,-0.48320654,11.41542,31.876877,17.647768,-1.8970789,40.233353,685,train,40.233353\n-31.384136,3.1124735,-0.82580876,65.424934,29.23144,-24.06724,11.522156,48.447845,736,train,48.447845\n-12.472456,6.1161604,-0.36524472,12.885032,50.79766,9.835999,-7.8638053,32.789,225,train,32.789\n10.322701,-52.001556,-1.0457472,11.438596,121.45127,-56.861675,31.536465,47.634155,414,train,47.634155\n1.9202296,1.6882379,-0.5193023,1.8460782,52.119526,20.19933,-4.4812913,26.467283,383,train,26.467283\n-29.576508,-0.93325734,-0.82710207,17.674446,-15.918271,-6.3052497,64.73943,60.97683,1042,train,60.97683\n-21.625757,-0.03072677,-0.760374,46.03926,-18.50501,1.288995,20.026123,38.538982,359,train,38.538982\n3.1293635,-12.954953,-1.306872,6.4205456,92.10022,-37.890503,9.308277,26.811779,919,train,26.811779\n-22.043789,2.7202988,-0.80146325,47.34479,-16.975735,-3.5557544,21.404512,39.6738,1161,train,39.6738\n-31.895016,-7.943376,-0.8522901,45.091446,-5.531178,-17.409748,56.97507,60.75653,561,train,60.75653\n-7.7672195,14.42101,-0.5991651,-26.436634,89.62835,11.870119,-9.63016,33.590736,90,train,33.590736\n1.3139986,4.1628585,-0.51965725,6.0713124,52.8497,15.609004,-2.9209185,18.809973,1221,train,18.809973\n-16.086823,6.3358917,-0.39353046,4.404907,82.75547,1.4747475,-15.819571,47.656757,1372,train,47.656757\n-7.798649,14.482196,-0.59862447,-26.547365,89.99905,11.943428,-9.813651,34.23744,88,train,34.23744\n-37.815697,-5.313846,-0.97461087,66.678764,38.130806,-39.47675,20.433886,63.305313,394,train,63.305313\n-39.91195,-4.935503,-0.9188972,54.75717,7.5860467,-28.32488,26.584873,53.089317,657,train,53.089317\n-9.075634,9.494853,-0.2207472,-3.594209,84.12603,4.14169,-12.8685665,48.369728,29,train,48.369728\n-16.93903,2.1483696,-0.765158,38.5064,-2.9871192,0.6647516,17.05733,43.27879,1165,train,43.27879\n-17.301935,2.7199912,-0.6058064,34.097546,0.2831095,15.469373,6.965352,40.19279,1114,train,40.19279\n-7.186466,14.097667,-0.641349,-27.158064,87.84626,11.863467,-8.387163,29.064072,581,train,29.064072\n-5.5029483,2.9721951,-0.3414303,15.851082,34.086006,9.914055,-3.7477176,27.74026,236,train,27.74026\n-28.20179,7.0533447,-0.7057133,9.8592005,25.008883,-8.553728,36.023857,59.011406,968,train,59.011406\n-0.15696786,-12.615616,-1.008788,3.0908363,82.25288,-25.656233,10.889614,22.939522,600,train,22.939522\n-14.174039,0.46207735,-0.2692742,16.479237,37.792736,-0.24528839,11.816342,48.227943,11,train,48.227943\n-2.787485,6.1212263,-1.003439,-17.17915,79.04997,-4.9664025,1.3664072,25.666359,898,train,25.666359\n-8.875419,8.509945,-0.5297807,13.772145,0.47933522,4.671909,37.66687,37.807842,1287,train,37.807842\n-0.6392264,-6.091053,-0.36750326,-6.2759724,31.767897,7.079243,27.79983,28.481483,1274,train,28.481483\n-23.742294,-1.4506781,-0.6873692,45.078827,-6.2689104,6.2864394,12.948458,45.874134,432,train,45.874134\n-4.7160106,2.8922088,-0.28323337,-0.50657195,60.47119,2.1031752,1.6109016,16.511253,864,train,16.511253\n-6.014523,9.001051,-0.6197533,-16.470528,72.51529,5.4531894,-1.0370678,22.55168,854,train,22.55168\n1.577547,-6.9544177,-0.40263245,9.540502,63.72169,1.6081725,-5.253478,29.402237,308,train,29.402237\n15.522281,-65.26613,-1.3527868,26.00092,152.48265,-79.99606,29.659273,28.809633,755,train,28.809633\n-8.44277,15.17667,-0.5661954,-27.126394,95.817825,12.60809,-12.914713,34.238884,876,train,34.238884\n-0.785087,-8.458108,-1.0044758,-0.31013346,79.56823,-21.933443,9.417529,25.752243,612,train,25.752243\n-23.55075,-1.3399004,-0.68628615,44.98651,-6.8853765,6.8982997,12.926473,45.676662,422,train,45.676662\n-34.069733,-5.015303,-0.8812334,54.91976,-11.370355,-12.179842,25.361885,41.966324,1090,train,41.966324\n-29.729984,-1.0572497,-0.83114284,17.960789,-16.502983,-6.7327104,65.30381,61.086716,1385,train,61.086716\n3.8235288,-15.542102,-1.3432736,8.892275,95.22619,-41.57528,9.879868,21.961678,905,train,21.961678\n-29.79775,-4.1670938,-0.8179261,52.967297,-17.26408,-0.97342515,21.638065,36.930626,674,train,36.930626\n-3.9221826,5.7504225,-0.8813337,-17.132534,75.95303,-1.3522933,1.6325006,30.483788,597,train,30.483788\n-29.190948,-1.1873673,-0.85243493,50.902477,-17.511986,-10.436959,26.553738,43.08156,1181,train,43.08156\n-13.344721,9.1281595,-0.34956068,-5.784446,97.30364,5.7383475,-21.255713,42.190273,1374,train,42.190273\n-4.660351,7.4627576,-0.817461,-19.23819,76.43965,2.373777,-0.09702366,29.082241,107,train,29.082241\n-1.0740632,-4.224289,-1.0135815,-3.8051744,77.49784,-18.561993,7.654358,29.421024,118,train,29.421024\n-31.00019,0.65863734,-0.71450406,37.985237,44.845135,-23.547289,6.8528137,43.415596,629,train,43.415596\n-40.55022,-3.8286939,-0.9110135,52.314064,12.754574,-33.19606,28.151304,54.121517,1078,train,54.121517\n-26.983633,2.7437744,-0.6092955,26.829273,66.60853,-24.549244,-1.5395949,49.194424,943,train,49.194424\n-2.7594197,6.05974,-1.0050269,-17.079084,79.041046,-5.110759,1.4192274,25.976889,899,train,25.976889\n-16.921791,-2.024863,-0.3903213,34.082546,31.041126,-4.321464,18.591248,34.814476,77,train,34.814476\n-11.015212,8.184111,-0.38175255,2.4002085,59.44144,16.39289,-8.50572,38.449055,205,train,38.449055\n-17.62099,5.245141,-0.40507,8.027792,82.02888,-3.3410542,-14.889452,46.944458,804,train,46.944458\n-19.722744,1.7917957,-0.6386186,38.09573,-1.9615579,12.874056,9.024526,45.596806,1097,train,45.596806\n-8.045917,15.316251,-0.6017531,-28.476742,93.78284,13.087643,-11.609575,31.309902,584,train,31.309902\n-9.361323,14.414885,-0.40136513,-19.450298,101.67411,9.551312,-18.490223,34.36562,458,train,34.36562\n-12.029346,2.5991406,-0.71250623,28.89498,12.21864,3.6397243,12.282159,46.63025,690,train,46.63025\n-9.077437,14.415612,-0.27434474,-17.935732,118.302315,12.867483,-30.339098,34.551723,260,train,34.551723\n18.667309,-73.28649,-1.530863,35.12952,169.0507,-95.05837,29.463316,47.711544,1308,train,47.711544\n-33.823967,2.5740592,-0.8061039,21.289099,4.3536525,-24.165892,49.66322,56.93145,1049,train,56.93145\n-18.03282,-0.13897836,-0.41626883,13.849713,25.408676,1.571851,25.996382,53.333313,57,train,53.333313\n-15.709067,3.7718134,-0.5708073,30.539774,11.757332,13.490225,2.8864348,39.480225,1108,train,39.480225\n-38.312492,-4.356795,-0.8801718,52.449856,7.102675,-25.820122,26.050081,51.508488,662,train,51.508488\n3.406979,-6.2646904,-0.42855757,4.8707185,63.60679,6.7059803,-4.9046555,27.551151,520,train,27.551151\n-26.255053,-1.2784292,-0.7181513,17.447756,-6.3650284,0.1191498,54.240154,58.81533,470,train,58.81533\n-9.756632,2.9732087,-0.49783322,20.913612,34.2267,8.995378,-3.080768,35.670845,508,train,35.670845\n-14.921622,6.8803453,-0.39411172,2.8832324,79.98691,5.2794285,-15.131206,45.55075,167,train,45.55075\n-26.429054,1.0450028,-0.6233527,31.83795,60.46663,-22.094938,-2.563998,36.544712,993,train,36.544712\n-40.607964,-3.733299,-0.91128063,52.182766,12.983475,-33.524452,28.283442,54.3199,1077,train,54.3199\n-11.762748,9.468125,-0.38193977,-1.9189391,75.1987,14.573059,-14.074979,39.159004,128,train,39.159004\n-8.948216,7.135544,-0.34465697,10.101638,43.134617,14.949214,-5.351803,33.809074,209,train,33.809074\n-8.340986,13.483159,-0.509089,-21.231886,88.66686,9.477718,-10.172087,28.45325,871,train,28.45325\n-12.301915,9.617703,-0.3820903,-3.298314,83.105064,12.330568,-17.078175,40.926414,807,train,40.926414\n-31.85041,-7.90563,-0.8518179,44.729916,-6.012206,-17.278803,57.335976,61.709316,564,train,61.709316\n-4.6160345,0.5976908,-0.35921142,16.173437,37.514763,6.1693654,-3.0992477,26.782818,975,train,26.782818\n-19.861336,4.165568,-0.434687,11.620687,80.39821,-10.018336,-12.142932,47.43788,140,train,47.43788\n-23.499983,2.935243,-0.5217665,20.386023,72.56309,-19.182524,-6.338878,48.05965,615,train,48.05965\n-22.438787,4.893899,-0.4938025,15.528888,72.29854,-14.286875,-5.5680847,47.53518,955,train,47.53518\n-10.258419,4.0856028,-0.40626532,21.158472,40.712826,5.0717564,-8.088688,26.40371,977,train,26.40371\n-36.23914,-0.96711636,-0.8042972,43.762962,19.731394,-27.148552,23.46423,50.487667,278,train,50.487667\n-0.8712559,-8.63783,-0.99420726,-0.18855165,79.39417,-21.731495,9.530202,25.043875,613,train,25.043875\n-14.292773,1.4154162,-0.62030286,30.794912,0.4427893,10.841202,9.597429,32.506664,717,train,32.506664\n0.999964,3.9638824,-0.5330757,5.84459,50.19037,18.104513,-3.7152455,23.767483,1325,train,23.767483\n-15.697495,5.9073644,-0.40520847,6.6238704,74.055786,3.2067337,-12.389879,45.915825,1355,train,45.915825\n-10.221797,11.03468,-0.2978715,-11.4251795,98.2981,9.812149,-16.00779,47.57447,491,train,47.57447\n2.50691,1.139919,-0.51734513,1.3357862,54.087067,19.634699,-4.0676184,20.34839,1226,train,20.34839\n-0.56963044,2.0501003,-0.51242894,4.1571774,43.95702,19.116539,-2.704489,30.401411,1212,train,30.401411\n-13.393987,3.421067,-0.2788696,8.659278,49.65443,1.8817652,7.549495,52.542625,1384,train,52.542625\n-14.477824,5.704198,-0.39277083,11.627515,59.789547,6.486918,-9.343348,37.02642,813,train,37.02642\n3.5211978,-12.944623,-1.3375367,6.627133,93.237724,-38.855843,8.996914,21.60079,912,train,21.60079\n5.4785113,-4.427935,-0.4793644,-4.9770846,61.830383,14.998553,-0.5476225,23.677107,1223,train,23.677107\n-9.887512,3.1098633,-0.4992376,21.061466,33.422955,9.271164,-2.9136078,36.574112,507,train,36.574112\n-8.593901,9.560871,-0.22321054,-3.7867737,83.77998,3.955078,-13.58711,30.35398,50,train,30.35398\n-23.536776,5.3661942,-0.64060223,4.27678,24.1324,6.983283,34.84768,58.647247,494,train,58.647247\n-35.98511,-0.6519935,-0.7977501,43.10027,20.856558,-26.798147,22.927948,50.240875,276,train,50.240875\n-22.012962,-0.06997932,-0.76544416,46.80115,-19.313227,0.9684046,20.425812,38.05066,351,train,38.05066\n-3.6149125,-2.0135367,-0.3843761,17.157455,44.18719,2.0284402,-3.296362,28.029276,1360,train,28.029276\n15.109643,-64.22114,-1.3333728,25.428064,149.72493,-77.8288,29.404528,40.140167,758,train,40.140167\n-9.285429,17.358625,-0.38656205,-25.471699,116.19214,13.880735,-26.672892,28.95501,99,train,28.95501\n-25.976973,8.13012,-0.6887958,65.38094,21.602278,-10.780407,6.614513,29.441612,1273,train,29.441612\n-8.6354475,15.389312,-0.55002075,-27.161203,98.02499,12.516029,-14.148858,33.432102,571,train,33.432102\n-11.46618,9.766146,-0.38265324,-2.4289553,74.71383,15.7319355,-14.050534,38.51303,131,train,38.51303\n-4.4807982,6.47994,-0.8162334,-17.23158,74.85475,0.9823148,0.88712555,29.736721,105,train,29.736721\n-36.16931,-1.0405275,-0.80347675,43.90255,19.73947,-26.912882,23.17556,50.53744,275,train,50.53744\n-31.448837,-5.945691,-0.8825449,31.326023,-19.97505,-13.173975,69.25483,69.77696,38,train,69.77696\n0.6218175,-1.9642763,-0.437925,4.492465,54.2716,13.221741,-5.0908995,34.62896,1143,train,34.62896\n-22.30437,9.369822,-0.57693607,1.8362577,51.64137,3.5548062,15.3404455,59.301186,154,train,59.301186\n-5.5756006,10.281408,-0.75589687,-23.222925,80.19336,6.990808,-3.1747174,30.054852,889,train,30.054852\n-11.736158,9.197885,-0.33110216,-7.2818046,85.151306,9.396413,-7.683935,50.10006,762,train,50.10006\n-14.150589,15.134627,-0.57298744,31.945919,-14.305039,4.9994063,34.952282,46.712753,406,train,46.712753\n-0.8807546,-8.163054,-0.99899423,-0.56910723,79.216446,-21.496521,9.343432,25.044727,610,train,25.044727\n1.3481705,-0.7167771,-0.45897302,1.2274399,51.713116,17.454082,-4.5522327,33.340984,339,train,33.340984\n-13.311273,9.176189,-0.34844005,-5.9270196,97.52968,5.77041,-21.328619,42.012863,185,train,42.012863\n-21.106539,2.685261,-0.8031515,45.96993,-14.404873,-2.9044166,20.697264,41.57847,1162,train,41.57847\n-22.544754,-0.7740449,-0.6810634,44.292328,-11.357764,10.091461,13.616279,42.71814,1123,train,42.71814\n-40.055973,-4.9501657,-0.9221223,54.846214,7.8267117,-28.657686,26.662031,51.448807,658,train,51.448807\n7.336044,-7.4899,-0.49232894,-3.3962495,68.09335,10.295212,-0.18836942,21.282902,1232,train,21.282902\n-32.64702,-3.6582918,-0.7966213,49.387505,0.94797283,-12.598605,21.076588,48.936943,667,train,48.936943\n-1.0221603,-2.5567315,-0.4261439,8.415277,54.00464,9.485091,-5.3061514,34.97018,542,train,34.97018\n-7.4992332,11.032358,-0.32599485,-10.39291,78.86634,5.6928244,-9.111503,22.125736,569,train,22.125736\n-12.513242,5.121945,-0.75609934,30.74832,14.349591,2.1505458,13.900539,49.968056,1169,train,49.968056\n-9.222535,17.28618,-0.37087235,-24.800352,116.74772,13.753111,-27.255808,29.697273,93,train,29.697273\n2.2281713,-8.938098,-1.2698952,2.0343778,88.72159,-32.210663,8.045487,24.378159,923,train,24.378159\n-8.920277,2.1800005,-0.5645259,21.319687,16.918222,12.944701,3.5550604,31.144535,371,train,31.144535\n3.5713742,-13.104032,-1.3403068,6.8079724,93.424866,-39.124176,9.034637,22.433329,910,train,22.433329\n-19.821009,1.7568725,-0.6397576,38.26029,-1.8799207,12.703735,9.028118,45.52894,1093,train,45.52894\n-40.67798,-1.5251281,-0.9005222,46.477245,15.635518,-37.170307,32.296432,57.34124,1071,train,57.34124\n-17.895601,3.3951962,-0.43942013,20.167528,61.18088,-5.460628,-9.179994,34.992256,221,train,34.992256\n-24.89994,-2.1848762,-0.7008507,46.0236,-7.0409813,3.9792175,14.687628,45.670994,287,train,45.670994\n-26.703894,2.7110808,-0.6028423,26.418695,67.19566,-24.349148,-1.9666779,48.48161,946,train,48.48161\n4.671019,-28.843386,-0.61006886,-4.418981,72.4498,-21.80007,30.281723,30.101618,1302,train,30.101618\n-30.258743,-4.36516,-0.82111704,53.24779,-16.492805,-1.9480639,21.820482,39.575092,673,train,39.575092\n-12.530952,8.947797,-0.38489854,-1.3649065,78.11035,12.146644,-14.92516,41.260773,795,train,41.260773\n-23.393883,5.4376864,-0.6366742,4.076497,24.904676,7.170633,34.289455,58.809216,493,train,58.809216\n-33.576515,-5.095112,-0.93594325,31.79312,-16.940674,-22.222317,67.5351,60.53076,829,train,60.53076\n-13.884268,7.511033,-0.39406773,1.7443424,77.39827,8.237831,-14.375235,43.361984,147,train,43.361984\n-30.193796,2.4916937,-0.6931577,32.971214,58.513268,-26.946665,3.4717264,47.939693,949,train,47.939693\n0.722855,-5.892964,-0.39743692,9.872434,61.76538,2.8443246,-5.629507,32.458694,319,train,32.458694\n-12.973663,8.206452,-0.38822582,0.6249177,74.702415,11.054694,-13.464754,41.050514,127,train,41.050514\n-17.689856,6.4649935,-0.81794536,40.978,0.54019076,-3.9584858,18.373253,46.515793,707,train,46.515793\n-21.407291,1.1445103,-0.48284817,51.117775,34.47868,-7.8359995,9.621867,32.046883,443,train,32.046883\n-4.026786,2.2730606,-0.56149846,13.027815,33.190327,13.444002,1.1225245,31.242172,1205,train,31.242172\n-23.513922,-1.3030913,-0.6855363,44.89736,-6.499859,6.851527,12.766712,45.788815,420,train,45.788815\n-32.772663,-2.3306606,-0.8984442,23.631323,-19.474596,-17.84838,68.97931,64.85296,1400,train,64.85296\n-10.934316,8.324785,-0.38435146,1.8767655,59.779617,16.849047,-8.567027,37.97354,1338,train,37.97354\n-0.21811235,-12.391285,-1.005996,2.9025607,82.03353,-25.369396,10.824434,23.520466,603,train,23.520466\n-20.872158,-0.022583734,-0.7455823,44.265236,-16.71955,2.4596968,19.069664,37.845543,1382,train,37.845543\n1.3655021,4.0718913,-0.51885015,5.9347916,52.942425,15.693488,-2.9422696,18.772303,1219,train,18.772303\n-18.223255,14.996724,-0.6851201,44.03866,-4.228901,-5.2910624,17.344637,28.723541,1351,train,28.723541\n-7.1236124,5.1411104,-0.33101377,15.473053,34.427803,11.899045,-4.827599,31.298368,989,train,31.298368\n-5.675747,9.831439,-0.7201327,-21.14508,78.192375,6.5794234,-2.6556413,30.150026,885,train,30.150026\n-10.932575,8.259694,-0.38339996,2.1266468,59.39717,16.71725,-8.464218,39.12875,204,train,39.12875\n-31.46793,-2.7191827,-0.87409,22.057539,-21.40855,-12.271153,70.17842,64.23345,1037,train,64.23345\n-8.652133,15.36079,-0.54749995,-27.0141,98.068924,12.424463,-14.196764,33.839127,573,train,33.839127\n-10.129621,10.00689,-0.5435061,17.172964,-5.2614226,7.0095816,38.810856,41.4829,408,train,41.4829\n-17.360125,4.560107,-0.42589015,12.2477,69.93319,-1.8759769,-10.455445,41.288612,809,train,41.288612\n-38.89169,-0.75618345,-0.86213505,43.535385,14.421293,-32.811485,31.831102,53.599483,1088,train,53.599483\n-8.561098,13.109431,-0.4077049,-16.705133,91.661835,7.9700756,-13.665785,26.72442,884,train,26.72442\n-9.201826,17.466076,-0.37114015,-25.133553,117.39894,14.013113,-27.668785,29.452065,96,train,29.452065\n-15.299897,6.6337485,-0.3944299,3.5693898,80.260506,4.1896396,-15.131223,45.299896,168,train,45.299896\n-14.479415,13.391306,-0.5210463,35.607018,-6.739418,7.8647904,28.072247,41.75528,1294,train,41.75528\n7.549919,-14.02832,-0.48890218,-9.346835,78.42967,-14.94606,15.90065,12.962255,1244,train,12.962255\n-23.332838,2.8516233,-0.5185891,20.229204,72.922165,-19.009588,-6.665099,48.181175,617,train,48.181175\n2.683051,-6.598793,-0.4148289,6.951647,64.08524,4.4669495,-5.286722,28.685791,530,train,28.685791\n-14.0273,1.7268238,-0.2759974,12.69018,42.099762,0.63742054,10.790042,53.19838,1359,train,53.19838\n-36.24531,-5.577724,-0.9697964,48.318287,8.248655,-34.632835,45.98433,63.103233,654,train,63.103233\n-31.979214,3.8226445,-0.7716061,18.063951,8.568272,-19.517843,46.42303,57.126156,823,train,57.126156\n-13.972437,7.4836383,-0.3940004,1.6843055,78.051346,7.962539,-14.609835,44.70751,148,train,44.70751\n5.195731,-28.851284,-1.3235878,18.051325,103.9847,-51.266094,14.515112,11.362415,927,train,11.362415\n-28.754436,-3.784569,-0.80277216,52.05457,-17.667212,1.0386823,20.78857,41.548065,671,train,41.548065\n-17.06451,-2.0743852,-0.39176702,34.178043,30.887154,-4.521189,18.758493,34.925137,79,train,34.925137\n-8.320537,13.462393,-0.51171273,-21.253017,88.34179,9.500549,-9.984814,27.736301,870,train,27.736301\n-17.685472,8.791454,-0.4372363,-1.8437827,76.73469,2.275026,-3.7377353,53.577446,189,train,53.577446\n-21.250008,4.0543885,-0.46459377,14.52407,76.94479,-13.299603,-9.402627,47.185913,138,train,47.185913\n-31.804499,-3.828426,-0.88354033,24.779129,-22.392246,-13.414892,71.12947,64.44281,1035,train,64.44281\n0.32978967,-1.645141,-0.44011518,4.735283,53.410053,13.591859,-5.1331534,35.01765,1141,train,35.01765\n-7.4989133,11.053168,-0.33010578,-10.602408,78.76485,5.7280087,-8.974615,21.662884,567,train,21.662884\n-10.44399,10.817453,-0.30421472,-11.053376,97.03396,9.802441,-15.121526,47.336067,490,train,47.336067\n-6.5578623,6.008133,-0.43107632,8.759315,4.4306116,13.186996,33.24194,37.543633,747,train,37.543633\n-0.9835791,-4.422728,-1.0207446,-3.5904453,77.767296,-19.037642,7.733383,28.854914,114,train,28.854914\n-22.828424,10.740171,-0.6473594,59.030308,10.589697,-5.111736,12.291715,25.861572,1298,train,25.861572\n-27.933182,5.1078606,-0.63313866,26.01391,56.779236,-21.974281,5.009364,51.68949,232,train,51.68949\n-15.685143,14.075082,-0.5413607,39.81447,-7.0280504,5.3602204,26.670431,35.878704,1295,train,35.878704\n-23.190388,5.5461874,-0.631124,3.7923713,26.04132,7.4419255,33.463505,58.5783,492,train,58.5783\n-1.6982279,-5.216165,-0.9440272,-3.2529025,76.30806,-16.593359,8.161233,23.659285,609,train,23.659285\n-18.456656,4.257082,-0.42419127,10.97405,79.0125,-5.877227,-13.066679,48.193695,806,train,48.193695\n-1.5380697,-2.6800709,-0.4061115,-4.8607116,29.814222,2.6424358,29.830667,29.05085,1290,train,29.05085\n-40.163666,-4.921102,-0.9224915,54.76624,8.293824,-29.047325,26.725887,52.50942,655,train,52.50942\n-13.379756,9.12155,-0.34734207,-5.8530407,97.471794,5.5588107,-21.230299,41.638885,184,train,41.638885\n21.544617,-74.908035,-1.565875,42.586803,180.15257,-111.588974,29.204033,9.662785,1248,train,9.662785\n-2.0616205,6.046382,-0.5778728,12.832527,43.89858,12.683583,-0.547297,23.88285,1199,train,23.88285\n-19.723587,-0.47418532,-0.6754333,39.219143,-13.48331,12.678033,14.659411,38.45229,1208,train,38.45229\n-14.042179,9.678977,-0.4772536,35.81303,5.417146,6.7292666,22.928816,36.447136,411,train,36.447136\n-11.395513,2.72014,-0.55913454,25.766493,8.797205,14.643424,4.338206,34.135242,1347,train,34.135242\n-23.001547,-0.58909106,-0.6617457,42.002872,8.878334,2.4526904,7.6244316,46.287376,1023,train,46.287376\n-12.706713,13.768838,-0.75281113,32.967495,20.600374,-0.67048526,12.420744,11.065952,1193,train,11.065952\n-25.922703,2.0409226,-0.82142097,47.981056,-16.264015,-10.3790455,25.006311,40.552685,1357,train,40.552685\n1.2200059,-0.6233646,-0.45946437,1.3706572,51.35522,17.495611,-4.522192,33.36335,341,train,33.36335\n-27.990002,5.364423,-0.63511765,25.699194,55.39275,-21.507189,6.010733,51.594284,231,train,51.594284\n-3.189821,1.1947981,-0.3794418,0.01129425,17.16073,11.387063,29.807018,33.06791,1270,train,33.06791\n1.2207991,-0.67884785,-0.4587734,1.4576247,51.50066,17.354153,-4.5495634,33.904335,342,train,33.904335\n2.650217,1.2535696,-0.5139245,1.9618545,55.239193,17.759495,-3.0075874,19.176695,1235,train,19.176695\n-9.075021,17.083042,-0.34790933,-23.80493,116.8432,13.611812,-27.731829,28.285831,98,train,28.285831\n18.93687,-74.03454,-1.5427932,35.93812,170.34134,-97.142456,29.868141,55.50716,1318,train,55.50716\n-22.96954,-0.4114826,-0.65364504,40.361187,17.320087,-0.7711518,5.2837553,45.834198,1003,train,45.834198\n-8.63202,9.146956,-0.2168694,-2.819043,82.207985,3.5403237,-12.842937,33.28012,52,train,33.28012\n-8.883292,18.984613,-0.37064973,-28.26082,122.40425,18.28164,-32.228115,22.736996,779,train,22.736996\n-13.87004,15.04755,-0.616582,31.014347,-9.5213585,1.0869334,33.703606,30.663342,1284,train,30.663342\n-20.917496,8.299224,-0.7435434,46.138577,-9.822174,-8.293187,18.726276,37.339817,1158,train,37.339817\n-24.996897,-2.2902331,-0.7038983,46.259857,-7.8733163,4.1275644,15.0087185,45.369537,282,train,45.369537\n-24.285185,0.5521896,-0.8045059,49.476307,-21.405811,-3.633273,23.41416,40.388954,1175,train,40.388954\n0.37149227,-5.1323967,-0.40083486,9.242016,60.32223,4.569921,-5.6173162,35.0915,324,train,35.0915\n-32.775433,-8.270172,-0.87014556,50.544838,1.664077,-19.934587,51.65554,64.77059,840,train,64.77059\n-30.83827,0.5819391,-0.71221054,37.97963,44.665813,-23.168232,6.6426926,42.612034,627,train,42.612034\n-31.86302,3.8478286,-0.771356,17.69579,8.348017,-19.116306,46.71078,57.0529,822,train,57.0529\n-7.924067,2.2931168,-0.55795443,19.19953,20.226227,13.376799,2.7365339,31.354864,372,train,31.354864\n-32.415333,-8.119708,-0.851367,51.618767,5.613972,-19.854227,48.095024,61.16718,67,train,61.16718\n-33.889248,-1.8077042,-0.7779785,45.170406,17.796024,-20.510406,18.537285,47.749866,1083,train,47.749866\n-17.420126,2.6354196,-0.60805786,34.305965,-0.100013725,15.41206,7.181904,40.68601,1117,train,40.68601\n-4.724699,2.934498,-0.28409776,-0.58729905,60.55279,2.1136923,1.5745624,16.571949,863,train,16.571949\n-14.18037,1.5542765,-0.27971727,12.979003,41.12111,0.5512564,11.475443,52.821026,54,train,52.821026\n-34.717754,-2.2272003,-0.92625624,29.529736,-9.648312,-28.085545,61.123253,63.29875,1386,train,63.29875\n-1.0889337,-4.884325,-0.4002909,12.501315,57.84773,1.9420758,-5.3041677,31.641426,332,train,31.641426\n-10.404762,10.326927,-0.54828227,17.924898,-6.0283885,6.7888474,38.98096,42.212025,409,train,42.212025\n-21.712425,-3.9002137,-0.47485927,39.26714,23.639696,-9.871779,25.469557,39.512245,547,train,39.512245\n-0.50656444,-6.702277,-0.37177718,-6.465611,32.900375,6.3791595,27.81692,28.091953,749,train,28.091953\n3.3079913,-0.56518865,-0.4835257,-2.5531662,54.85646,19.802414,-3.353317,25.708958,1228,train,25.708958\n-1.0380715,-4.363428,-0.40081677,11.028944,57.738514,4.0966735,-5.5708675,34.299294,326,train,34.299294\n-0.6471687,-6.064513,-0.36749154,-6.271414,31.725874,7.0789285,27.816978,27.88034,1275,train,27.88034\n-17.064106,3.8390038,-0.7972895,39.003872,-0.70533055,-1.2692786,18.097502,46.007313,1192,train,46.007313\n-1.1422497,-3.6547072,-0.41240996,10.048414,56.212357,6.2995267,-5.4462714,35.80267,309,train,35.80267\n-24.958513,-2.1804073,-0.7003976,45.895878,-6.4234233,3.6062498,14.631648,45.916794,283,train,45.916794\n-8.773293,18.884491,-0.3538797,-27.433582,122.76652,17.400267,-32.355618,25.991562,501,train,25.991562\n-9.740323,3.0346289,-0.4980622,20.846869,33.832,9.248727,-2.981486,37.089344,505,train,37.089344\n10.869349,-53.560932,-1.0812193,13.099186,125.0412,-59.42941,31.357035,43.76645,1306,train,43.76645\n-6.5986357,0.45644292,-0.40189737,18.431328,43.833076,2.9747603,-5.239865,26.278116,988,train,26.278116\n-15.660982,5.672251,-0.40485886,8.780103,68.59653,3.519577,-10.686118,42.565723,196,train,42.565723\n-1.0895557,-6.4832006,-0.40981165,16.343122,52.472755,-2.144359,-2.7591007,25.035877,511,train,25.035877\n1.3145944,4.1569214,-0.51992416,6.0560193,52.814747,15.676866,-2.9516356,18.228687,1220,train,18.228687\n-11.53858,7.8950825,-0.7544363,29.474964,20.81623,2.4695387,11.97403,43.090057,1183,train,43.090057\n-40.09317,-4.9334965,-0.92183095,54.794014,8.033062,-28.812193,26.682274,52.506287,656,train,52.506287\n-36.335278,-1.4630814,-0.8112058,44.925232,18.46044,-26.900345,23.375498,50.269386,277,train,50.269386\n1.8561723,-23.010412,-1.0227726,10.131551,89.72244,-34.965324,14.421904,12.486124,856,train,12.486124\n-9.01148,14.798059,-0.49229845,-23.956152,99.25668,10.8631525,-15.512841,33.494797,453,train,33.494797\n-26.303226,-1.451829,-0.7179852,17.849611,-6.727294,-0.09746648,54.465874,58.83821,471,train,58.83821\n-14.961873,2.6416745,-0.7509795,34.714504,3.6184025,1.6762606,15.365648,45.75696,705,train,45.75696\n10.117414,-51.34292,-1.0292284,10.519826,120.24176,-56.13162,31.772095,29.780764,1391,train,29.780764\n-24.186794,-3.2121181,-0.62342757,21.558348,-1.8652122,-1.4525105,48.19895,57.34999,1407,train,57.34999\n-20.813107,3.9041512,-0.4562476,13.926289,78.1869,-12.489875,-10.498302,47.93403,139,train,47.93403\n-5.340117,2.9116297,-0.34189674,15.755557,33.1074,10.360207,-3.2789824,29.77721,1398,train,29.77721\n-13.801875,6.749813,-0.39164808,6.3005595,65.01466,8.877848,-10.078375,41.005672,210,train,41.005672\n-38.30881,1.2965494,-0.85563,34.54821,11.314419,-35.56864,41.526558,58.49286,1051,train,58.49286\n-24.749176,7.611125,-0.57949877,13.6371765,56.001583,-11.161608,8.619631,53.475166,928,train,53.475166\n-20.360462,4.1165853,-0.44519827,12.645975,79.35229,-11.272684,-11.241254,47.602867,132,train,47.602867\n-26.139032,-1.1790079,-0.7149158,17.235544,-5.867622,0.3525031,53.808506,58.722034,1345,train,58.722034\n-26.133318,-0.2251617,-0.6649554,37.173,37.08489,-13.002256,3.3478956,44.75405,248,train,44.75405\n-0.47707918,-6.8233876,-0.37246332,-6.4767566,33.11364,6.265788,27.798313,28.796701,1350,train,28.796701\n-1.7757132,-4.8261604,-0.3969111,16.04451,52.036545,-0.6765104,-3.8329682,28.589018,538,train,28.589018\n-15.002997,2.6900022,-0.752475,34.81255,3.5702362,1.592536,15.45072,45.799866,704,train,45.799866\n-22.425852,3.310041,-0.49522936,17.861563,74.66012,-16.681145,-7.9160447,48.23416,618,train,48.23416\n-15.406376,5.8081884,-0.40236712,8.627649,67.61179,4.3617496,-10.498264,41.74865,190,train,41.74865\n-1.301185,-3.5095022,-0.41494656,10.157379,55.776657,6.4821696,-5.431249,35.8343,310,train,35.8343\n-24.602222,9.1521635,-0.6237351,5.4179826,44.467686,-1.1147641,20.754425,59.080967,939,train,59.080967\n25.905972,-91.09836,-1.9315698,60.395344,207.32799,-134.84775,29.502033,103.01317,1313,train,103.01317\n-1.5110551,-2.5984387,-0.42695245,9.3631525,53.663174,8.707456,-5.278813,35.42752,335,train,35.42752\n-15.147964,9.50567,-0.48817846,39.632736,7.1041083,4.786518,21.17778,40.56934,412,train,40.56934\n-17.166048,-2.0038939,-0.3935576,34.713768,30.868916,-4.5598516,18.613646,36.14499,76,train,36.14499\n-32.046986,-3.412012,-0.7836166,48.56949,2.0228446,-12.026437,20.235792,47.37673,668,train,47.37673\n-40.705788,-1.6149372,-0.90124357,46.74901,15.603131,-37.0868,32.105137,57.05747,1070,train,57.05747\n-1.9361283,5.7661276,-0.5753956,12.512694,43.77914,13.013387,-0.6214069,22.876637,1197,train,22.876637\n-15.137148,9.950134,-0.40430546,-7.4610014,77.353966,9.917071,-2.8223584,50.250565,464,train,50.250565\n-40.605564,-3.7673688,-0.91146904,52.245747,12.926356,-33.44945,28.24231,54.144,1379,train,54.144\n-6.933015,0.75540847,-0.403604,18.64575,43.650593,3.1051257,-5.449989,26.353848,985,train,26.353848\n-15.219719,1.1348497,-0.7155788,34.31486,0.5657737,3.7576923,14.150913,41.81887,703,train,41.81887\n-29.878277,4.020752,-0.7477273,73.042046,38.146057,-16.514267,-0.8158875,34.466866,1276,train,34.466866\n-18.91195,4.3002057,-0.41872942,9.950341,82.00333,-7.405256,-13.691633,46.58338,797,train,46.58338\n-4.0086064,-1.095678,-0.44837976,13.275043,48.450718,8.35755,-4.9696236,38.136723,1387,train,38.136723\n-17.741386,6.3822684,-0.8182618,41.05507,0.30316636,-3.9472709,18.423834,46.42626,708,train,46.42626\n3.4835358,-3.3967593,-0.45367095,0.47911707,58.77518,14.049099,-4.534832,32.116318,1135,train,32.116318\n-11.863976,2.5034301,-0.7084746,28.523657,12.581672,3.855648,12.02562,46.68582,691,train,46.68582\n-17.667585,5.316574,-0.39743334,6.7180157,84.76337,-4.000937,-15.54123,47.9987,1337,train,47.9987\n-25.779028,8.322746,-0.686602,64.980446,20.801332,-10.432052,7.0126457,28.629168,1272,train,28.629168\n-11.543208,9.7405615,-0.38230425,-2.4925163,75.47039,15.404163,-14.310386,37.694397,126,train,37.694397\n-18.314363,4.421747,-0.42037475,10.441483,79.60546,-5.446456,-13.411556,47.161736,805,train,47.161736\n-29.584455,-1.3547521,-0.85515964,50.83055,-16.240438,-11.255983,26.523949,42.788155,1177,train,42.788155\n-15.321253,-0.19417647,-0.3852292,33.535606,30.387453,-1.6972102,16.97664,36.414806,437,train,36.414806\n-8.618188,13.19038,-0.40767738,-16.828526,92.3136,8.057797,-13.9922,28.314945,883,train,28.314945\n-31.082195,0.54789656,-0.7162993,38.320766,43.44283,-23.210535,7.31843,42.901424,625,train,42.901424\n-6.9372582,5.078104,-0.33059406,15.415992,33.96012,11.998441,-4.631401,32.548904,991,train,32.548904\n-22.564737,-4.250368,-0.51945406,28.465113,4.4033804,-6.419043,40.524345,57.225082,43,train,57.225082\n-26.401735,-0.25585482,-0.6690536,37.34695,36.678616,-13.270924,3.788075,44.48271,247,train,44.48271\n-36.88092,-4.473464,-0.93286884,74.01344,43.33567,-32.793213,10.85238,51.93202,727,train,51.93202\n-21.848427,0.3798691,-0.60003203,34.983543,39.30139,-7.3008943,-2.180422,42.690125,1028,train,42.690125\n-6.262136,13.151832,-0.7473201,-28.525768,86.91117,11.128301,-7.068524,30.149927,890,train,30.149927\n-14.810862,5.4419107,-0.39129987,1.1896449,59.042442,6.8200855,8.058761,53.947083,472,train,53.947083\n-28.517885,2.5914657,-0.65173775,29.910095,63.378014,-26.142235,0.554793,48.56456,1358,train,48.56456\n-23.225555,2.375783,-0.80814123,48.758778,-19.23811,-4.7083044,22.523684,40.452652,712,train,40.452652\n-15.24655,3.7992234,-0.56497514,29.677462,13.401853,13.220395,2.4047618,39.106464,1111,train,39.106464\n-30.320135,2.6511295,-0.69574785,33.015984,57.57884,-26.835886,4.0869045,48.136375,951,train,48.136375\n-13.800628,14.555548,-0.5940692,30.35201,-12.854475,2.5262146,36.55223,40.899517,1283,train,40.899517\n-16.332798,5.298415,-0.4519779,0.42279541,53.933247,8.793928,12.950904,55.16167,480,train,55.16167\n-21.719925,9.376551,-0.559867,1.2694385,54.432583,3.8734126,13.1683655,58.512623,158,train,58.512623\n-21.31352,1.2191819,-0.48227125,51.004486,34.25803,-7.706526,9.675862,32.205,442,train,32.205\n-23.019897,2.498488,-0.8072511,48.63956,-18.926836,-4.5434175,22.289577,40.474174,710,train,40.474174\n-35.17294,1.6528026,-0.8451119,23.549177,0.13288908,-28.417637,53.89526,58.617767,650,train,58.617767\n-3.5850122,-2.1133168,-0.3853178,17.165518,44.552727,1.871694,-3.3460145,27.8666,826,train,27.8666\n-5.202208,2.8799295,-0.48368436,11.35679,31.781412,17.713408,-1.861914,40.340515,681,train,40.340515\n-16.02268,5.43535,-0.40843862,9.509381,68.83898,2.4039881,-10.634867,42.492447,191,train,42.492447\n-26.463562,-4.874547,-0.62385607,48.377617,21.883024,-13.763644,29.790083,40.466934,836,train,40.466934\n-13.935572,7.3561535,-0.39498577,2.3390892,75.97643,8.151025,-13.779641,43.65912,787,train,43.65912\n-1.9153587,5.9299054,-0.5749751,12.564695,44.073593,12.955784,-0.72396344,22.904627,1198,train,22.904627\n0.68841654,-6.622777,-0.4017104,11.327731,61.830257,0.75845546,-5.2104597,29.929745,301,train,29.929745\n-15.1557865,5.955217,-0.4001522,8.294688,67.08953,5.13467,-10.431988,41.975044,199,train,41.975044\n-14.790615,9.715916,-0.4866083,38.399353,6.134138,5.494861,21.90996,41.595795,1366,train,41.595795\n-8.66892,15.372566,-0.5458876,-26.990854,98.22946,12.403877,-14.2929,33.34328,574,train,33.34328\n-24.620281,-2.0720315,-0.69872624,46.042324,-7.724403,4.885699,14.4403105,45.519547,289,train,45.519547\n-40.30876,-0.8977082,-0.8839971,45.492386,21.243443,-40.37525,30.225842,51.922306,1069,train,51.922306\n-30.53883,3.573722,-0.7663036,73.101456,38.595585,-17.886465,-0.045075666,37.75566,1277,train,37.75566\n-36.232563,-5.544554,-0.9693462,48.102215,8.089022,-34.627876,46.132957,63.00012,653,train,63.00012\n-38.430336,1.1980633,-0.85739267,35.063805,11.655532,-35.75189,41.041832,58.781868,1052,train,58.781868\n-3.4478765,-2.092864,-0.4326359,12.980339,52.009552,6.379521,-5.5405807,35.50829,300,train,35.50829\n-22.236635,11.114843,-0.6372972,57.78267,9.000968,-4.0316415,13.19893,28.576084,1297,train,28.576084\n-13.806474,14.560754,-0.5938982,30.375513,-12.8806095,2.5457652,36.542557,40.865704,1282,train,40.865704\n-1.6429454,-5.127976,-0.39926323,16.068634,52.20166,-0.94508505,-3.6522422,29.11055,539,train,29.11055\n-27.112886,2.7946396,-0.6122484,27.002516,66.22122,-24.596699,-1.2821517,48.847645,944,train,48.847645\n-9.331321,2.7715561,-0.55071384,21.622845,15.713495,14.533845,2.773634,34.315216,1214,train,34.315216\n-37.863396,-5.1873026,-0.9761193,65.25332,37.317154,-40.159794,21.64437,58.8327,401,train,58.8327\n-7.5111594,14.355806,-0.6173929,-26.91203,88.598175,11.910563,-8.968511,30.919758,582,train,30.919758\n-33.519825,-7.106749,-0.9353792,38.53412,-14.764598,-20.214113,66.54514,60.952892,554,train,60.952892\n-26.301826,-0.19862743,-0.66551745,36.999,38.052677,-13.554242,3.2834918,44.513084,250,train,44.513084\n-14.324602,6.868583,-0.44748834,36.397892,13.279004,4.5827937,19.991821,39.861534,752,train,39.861534\n-9.16664,7.565117,-0.37240773,6.7513733,45.944008,16.698135,-4.9537582,32.326843,217,train,32.326843\n-16.233381,6.332404,-0.80972874,37.728863,5.922344,-2.4712768,17.50315,48.345387,362,train,48.345387\n-14.141264,7.308735,-0.39492464,2.147591,77.6445,7.525088,-14.389372,45.03228,144,train,45.03228\n-9.121553,14.34487,-0.43479726,-20.195816,98.80088,9.576664,-16.52376,32.492867,591,train,32.492867\n-9.293199,13.294233,-0.2782584,-16.692543,114.29566,11.678766,-26.957527,38.726402,768,train,38.726402\n-35.187794,1.6621797,-0.84393936,23.612473,0.3727586,-28.436592,53.65371,58.567043,648,train,58.567043\n-21.817272,0.39216968,-0.76813775,46.39954,-18.659725,0.0867934,20.585192,37.104107,349,train,37.104107\n-31.581789,-4.253557,-0.8786825,25.898182,-22.449898,-12.688307,70.91135,67.31096,638,train,67.31096\n-10.505765,10.735009,-0.30561063,-10.881235,96.41866,9.76163,-14.715185,47.91944,489,train,47.91944\n-11.3952265,9.093234,-0.31726718,-5.8160076,82.741554,8.2406645,-7.230055,51.308346,503,train,51.308346\n-28.395248,1.468185,-0.77543014,12.47795,-4.0465965,-2.475728,55.522236,59.17599,546,train,59.17599\n-20.755812,9.039706,-0.5558533,-1.1128231,51.766445,8.252887,15.327207,58.036026,482,train,58.036026\n1.2131672,-0.5611382,-0.46029118,1.2575854,51.175438,17.6736,-4.4765244,33.56811,344,train,33.56811\n-14.225072,-1.6066962,-0.28555775,24.4877,36.783257,-2.5699449,11.475866,32.14945,47,train,32.14945\n-34.969296,2.798751,-0.7984063,26.82031,9.560844,-27.346495,42.925247,56.61183,1060,train,56.61183\n-2.0045934,6.0900764,-0.57674277,12.763525,44.09681,12.742251,-0.6495209,23.768656,1201,train,23.768656\n-7.780216,2.3989837,-0.5528236,18.730312,20.64008,13.891269,2.3751292,30.377186,430,train,30.377186\n-33.842766,2.5405066,-0.8076201,21.248713,4.071821,-24.193497,49.940197,56.914223,1048,train,56.914223\n-16.634502,10.693758,-0.5226223,44.054993,4.673435,3.7599106,20.257328,42.05159,1291,train,42.05159\n-21.019331,0.16266587,-0.7528736,44.85848,-17.049625,1.5208609,19.434328,37.166267,1381,train,37.166267\n-8.719483,18.860682,-0.34506124,-26.643534,122.888885,17.49307,-32.965122,24.13174,781,train,24.13174\n3.8870776,-15.671979,-1.3473259,9.049278,95.45343,-41.843143,9.88884,21.847164,907,train,21.847164\n-29.939062,6.8829904,-0.6944723,19.171913,29.868975,-16.568743,27.809319,55.172092,959,train,55.172092\n0.42568916,-9.517101,-1.1046336,1.2214447,83.02664,-26.730518,9.445317,26.883665,925,train,26.883665\n-12.492399,5.0729046,-0.75538003,30.68649,14.347968,2.1677918,13.880977,49.900272,1168,train,49.900272\n-25.089552,-2.2508414,-0.7018068,45.903847,-6.3394732,3.3284116,14.793896,45.861843,281,train,45.861843\n-33.610546,-5.1393886,-0.9367671,32.0672,-16.639666,-22.415218,67.292564,60.64335,831,train,60.64335\n-28.483696,2.580005,-0.6509469,29.867281,63.485405,-26.13181,0.4806016,48.205193,970,train,48.205193\n-16.345621,15.774728,-0.589307,40.36014,-13.958903,2.5688257,29.914886,37.292698,1279,train,37.292698\n-0.3309437,-4.59738,-0.40272626,9.861099,58.87336,4.81701,-5.6277475,34.897205,312,train,34.897205\n-29.535685,-0.90291303,-0.82602787,17.604086,-15.763036,-6.199409,64.589645,60.909626,1043,train,60.909626\n4.149957,-5.0442114,-0.4505649,1.5093346,61.94157,10.683524,-4.2602887,28.888924,679,train,28.888924\n-12.973494,8.932825,-0.38404116,-2.2550304,84.482765,9.992041,-17.4083,42.42067,151,train,42.42067\n12.592326,-58.22979,-1.1854506,17.818815,136.08632,-67.76922,31.057617,52.012245,1322,train,52.012245\n-17.353384,2.6771176,-0.6068518,34.192764,0.07952367,15.4523535,7.0730805,40.500782,1116,train,40.500782\n-1.3191906,-3.536808,-0.4144365,10.228634,55.81458,6.3728776,-5.4323907,35.985424,311,train,35.985424\n-23.413815,-1.2392436,-0.6846008,44.813145,-6.6337037,7.0891495,12.712068,45.711113,421,train,45.711113\n-13.511565,7.3939085,-0.39200962,2.9062088,71.3055,9.595424,-12.023156,43.01757,1339,train,43.01757\n-1.9275062,-4.8214207,-0.39847147,16.48355,51.010735,-0.8082115,-3.5757756,27.556158,1388,train,27.556158\n-8.63856,2.1889052,-0.5637112,20.752493,17.872314,12.942469,3.396,30.939442,368,train,30.939442\n-8.593347,13.178969,-0.41028264,-16.908268,92.03602,8.059205,-13.800836,27.883762,881,train,27.883762\n-34.659286,-2.253212,-0.92612356,29.394217,-10.019537,-27.844296,61.429363,63.50187,633,train,63.50187\n-29.776834,-7.294023,-0.7970849,38.916344,-8.863773,-14.557212,57.838497,67.48287,24,train,67.48287\n-11.235673,11.326442,-0.31376192,-13.014438,103.8713,9.279241,-19.942965,40.262383,499,train,40.262383\n-16.715092,5.815167,-0.8126743,38.67551,3.5690873,-2.660119,17.913729,48.242218,363,train,48.242218\n-31.34078,-5.8527956,-0.8793557,30.940447,-20.061348,-12.912444,69.21901,69.714745,36,train,69.714745\n-19.044294,2.018855,-0.493538,25.538057,57.4491,-9.3187475,-8.134465,34.032627,1034,train,34.032627\n1.0601201,4.005588,-0.5321235,5.829065,50.527924,17.997053,-3.747231,20.201836,697,train,20.201836\n-4.55131,6.5993075,-0.8090678,-17.332825,74.825294,1.3044642,0.748914,30.06271,110,train,30.06271\n-32.77318,-8.281316,-0.87106967,50.249943,1.0883373,-19.852943,52.15785,64.17294,838,train,64.17294\n-9.474282,16.64642,-0.41616195,-25.458572,111.891754,12.873401,-23.501444,29.296696,814,train,29.296696\n-20.38011,-0.36900187,-0.6748163,40.307945,-13.003499,13.134531,13.955878,41.313858,1121,train,41.313858\n-37.873516,-5.951494,-0.9752651,66.330956,35.498474,-39.042645,22.511038,66.12026,744,train,66.12026\n-2.0339315,6.0136094,-0.5773365,12.772002,43.913612,12.742406,-0.5738526,24.012657,1200,train,24.012657\n-6.7565575,13.151556,-0.6417529,-25.111523,83.754524,10.834816,-6.409731,30.645721,877,train,30.645721\n-24.681686,-2.0678127,-0.6982114,45.94815,-7.033882,4.449398,14.361777,45.47628,285,train,45.47628\n-1.5314916,-3.5057077,-0.4148115,10.597984,55.57069,6.132381,-5.435412,35.518562,292,train,35.518562\n-9.277754,2.735596,-0.49416068,20.201836,35.33478,9.016205,-3.2264576,37.08805,509,train,37.08805\n3.9978225,-3.0002267,-0.46517858,-3.8542728,64.71726,-5.088442,11.063581,14.679417,1249,train,14.679417\n-23.310207,-1.1634169,-0.6833528,44.68275,-6.4610105,7.2374625,12.557658,45.807083,423,train,45.807083\n-17.761053,5.2391305,-0.39939818,7.0988555,84.331955,-4.1911154,-15.383014,47.413586,175,train,47.413586\n-20.60397,2.297007,-0.5508315,7.555288,25.704464,6.7646837,31.366314,57.177425,257,train,57.177425\n-16.85514,2.205864,-0.76535743,38.366756,-2.652792,0.6768788,17.003643,43.416817,1166,train,43.416817\n8.173247,-43.569454,-0.8766345,4.5339127,103.63707,-45.02657,31.711311,45.709255,1300,train,45.709255\n-4.304803,-0.82267195,-0.4520884,13.63408,47.610508,8.528819,-4.872609,37.626778,532,train,37.626778\n-7.436448,3.3114839,-0.48317045,16.336962,31.051916,14.601165,-2.3604386,37.44651,1147,train,37.44651\n-26.518404,-4.907771,-0.62600094,48.334084,21.617847,-13.818272,30.078136,41.338737,835,train,41.338737\n-34.796146,-0.005963336,-0.7759961,41.702248,26.000616,-25.06382,19.143463,50.53907,1082,train,50.53907\n-9.235712,17.300653,-0.37448585,-24.953684,116.63438,13.7837305,-27.131811,28.30785,92,train,28.30785\n-22.792295,0.00658607,-0.6169019,35.801064,37.77024,-8.1791315,-0.67206216,42.888317,1026,train,42.888317\n-8.619777,13.210956,-0.40946108,-16.926584,92.34177,8.091002,-13.970693,28.498943,882,train,28.498943\n-4.5693607,6.716584,-0.80905443,-17.550447,74.988525,1.4582655,0.63326705,30.484137,109,train,30.484137\n-7.337609,1.9066586,-0.5941392,19.256327,23.220034,10.140191,4.6793113,31.769995,1210,train,31.769995\n-21.760195,2.6609318,-0.80218345,46.877758,-16.24043,-3.2887836,21.210823,40.30619,1159,train,40.30619\n-1.4435068,-3.6536973,-0.41192377,10.631363,55.945976,5.819541,-5.4488206,35.739243,293,train,35.739243\n-8.420965,15.387238,-0.26240754,-20.483034,118.68128,12.929701,-29.601948,35.174603,776,train,35.174603\n3.3996534,-16.38753,-1.3000809,8.782452,94.52196,-40.498825,10.496785,19.964605,914,train,19.964605\n-8.520592,17.76441,-0.3068621,-23.802336,121.21656,15.730176,-31.97249,29.823456,486,train,29.823456\n-9.154577,14.379359,-0.4313637,-20.193798,99.250275,9.614796,-16.789404,32.418663,589,train,32.418663\n-8.577745,9.516085,-0.22368303,-3.6987748,83.5386,3.9078546,-13.483242,29.812073,53,train,29.812073\n-19.229229,3.0604227,-0.4590065,18.774508,67.49923,-8.48505,-9.5382805,34.422646,192,train,34.422646\n-14.073378,15.061407,-0.5509815,32.13632,-13.990123,7.2804656,33.62889,45.869656,1264,train,45.869656\n-37.84125,-0.8280045,-0.8741176,43.724808,23.094976,-36.7844,26.575878,50.54821,1260,train,50.54821\n-22.607965,3.2434137,-0.49990118,18.274405,74.29514,-17.10417,-7.63031,48.084484,619,train,48.084484\n-6.978191,5.07936,-0.33078244,15.453057,34.060738,11.933035,-4.6800632,31.937943,990,train,31.937943\n-3.7436635,-2.5130877,-0.4132472,14.114654,52.915615,3.3469942,-5.488569,30.258204,526,train,30.258204\n-16.26904,5.772906,-0.80879587,37.786716,4.945289,-2.1881397,17.616125,48.612453,364,train,48.612453\n-14.018349,7.277098,-0.39542305,2.5420566,75.84905,7.9327793,-13.6997175,43.241352,785,train,43.241352\n-22.070148,0.29623172,-0.6026162,35.04167,39.44533,-7.6879916,-1.9586474,42.608818,1029,train,42.608818\n-2.7908652,-2.3400664,-0.43101,11.910152,52.425774,7.1244073,-5.4046607,36.7132,296,train,36.7132\n-31.423775,-6.9290924,-0.87732786,35.32075,-17.063482,-14.173701,66.800064,70.271515,64,train,70.271515\n-2.4306226,-5.1863546,-0.80887574,-2.067878,71.72576,-13.263407,8.583975,19.856873,861,train,19.856873\n-26.957846,7.28128,-0.62229097,18.470636,49.22213,-15.532443,12.621392,53.77252,935,train,53.77252\n-8.453935,16.671623,-0.28706536,-22.2923,118.79371,14.102566,-30.016748,32.567825,774,train,32.567825\n-16.484694,3.1668944,-0.5904956,32.62248,2.6841128,15.794963,5.740009,39.325787,1115,train,39.325787\n-37.137463,-4.7340717,-0.9432443,73.01301,42.7752,-34.189777,12.471889,58.31443,729,train,58.31443\n-28.636675,5.2216086,-0.65145457,27.031199,53.75869,-22.27244,7.0026193,51.5803,235,train,51.5803\n-14.899844,6.922403,-0.39345294,2.7196448,80.318214,5.30852,-15.271597,45.14414,166,train,45.14414\n-29.663849,-0.981473,-0.8292278,17.802174,-16.211075,-6.535164,65.02376,61.05746,1041,train,61.05746\n-3.2665436,0.17168733,-0.4572628,10.335406,44.888977,13.063984,-4.3521757,36.273304,1133,train,36.273304\n-33.454285,2.0933557,-0.83145064,18.89609,-2.68077,-22.982582,56.64405,58.20813,1044,train,58.20813\n-8.440639,15.216772,-0.5675039,-27.25575,95.90833,12.684524,-12.948019,34.08471,875,train,34.08471\n-14.792538,2.7411556,-0.75094956,34.39636,4.2714067,1.6926323,15.285852,45.83945,1389,train,45.83945\n-6.872762,0.7049586,-0.40322834,18.603775,43.673283,3.0904357,-5.4112873,26.968708,986,train,26.968708\n-21.747662,2.3700871,-0.49155203,18.6815,75.661964,-16.326498,-9.353486,44.385864,973,train,44.385864\n-29.396603,-1.3310156,-0.8538039,51.00913,-17.154627,-10.61081,26.517845,43.290478,1180,train,43.290478\n2.8426251,0.4019714,-0.499003,1.753042,56.67514,14.884094,-1.1206574,23.077726,1238,train,23.077726\n-5.6439686,9.75575,-0.7237283,-21.120796,78.169205,6.464085,-2.5837336,29.672346,887,train,29.672346\n-14.352543,1.3884499,-0.6212761,30.905836,0.26631308,10.772059,9.697512,32.53481,719,train,32.53481\n-13.482798,3.4122689,-0.282771,8.584577,49.446793,1.9512209,7.8707423,52.675804,13,train,52.675804\n-11.508407,7.8843913,-0.7538888,29.424519,20.88242,2.5039284,11.937035,43.157303,1185,train,43.157303\n5.029036,-20.80434,-1.3943458,13.423934,100.84892,-47.858566,11.173138,15.038334,915,train,15.038334\n0.8096311,-6.0366,-0.39765882,9.943947,62.0403,2.5994833,-5.6270256,31.633553,320,train,31.633553\n-8.524415,18.263035,-0.31463987,-23.994112,122.39706,16.479023,-33.4749,23.371708,783,train,23.371708\n-16.371084,3.214216,-0.588302,32.405376,3.033691,15.814667,5.594701,39.31932,1113,train,39.31932\n-15.636611,8.06094,-0.8051038,36.65873,9.574121,-2.533988,16.694786,37.993484,367,train,37.993484\n-19.135769,9.213478,-0.51355994,-3.0358448,58.31866,9.209311,10.479068,55.804314,481,train,55.804314\n-0.18574195,-4.7107806,-0.40215665,9.743661,59.185078,4.7407207,-5.6263957,34.656296,313,train,34.656296\n-36.184353,-5.46142,-0.9680501,47.43986,7.5219445,-34.56867,46.652637,62.34774,1396,train,62.34774\n-22.496878,-0.39601243,-0.6637527,42.606575,2.259235,5.888806,9.040908,46.599213,998,train,46.599213\n2.5080748,1.1411712,-0.5173908,1.3449198,54.092125,19.622835,-4.0623775,20.426706,1227,train,20.426706\n-32.578293,-8.181922,-0.8588016,51.39732,4.366151,-19.941412,49.23849,62.798866,72,train,62.798866\n-23.035362,12.3875,-0.67465913,55.338726,2.2478812,-7.79484,16.810787,38.23648,1267,train,38.23648\n-17.007952,2.1442878,-0.76586896,38.637257,-3.2026618,0.61804235,17.130472,43.22553,1164,train,43.22553\n-37.86587,-5.9692855,-0.9748158,66.79249,35.9968,-38.912872,21.977888,67.36492,745,train,67.36492\n-32.618546,-1.076592,-0.79158676,74.85469,44.4559,-21.526825,1.7727102,39.24469,732,train,39.24469\n-0.8601316,-4.152307,-0.40621525,10.229739,57.511467,5.256761,-5.534358,35.257446,295,train,35.257446\n-1.0172348,0.08545004,-0.45448932,5.6341267,47.645977,15.948022,-4.6733813,36.464596,1137,train,36.464596\n3.078365,-12.753913,-1.3043196,6.1991267,91.89614,-37.58354,9.252831,25.757149,920,train,25.757149\n-11.017348,8.253477,-0.38274997,2.1410851,59.841263,16.53029,-8.614538,38.227463,202,train,38.227463\n-27.993378,5.173233,-0.6349061,26.029434,56.279434,-21.899849,5.3531475,51.43314,227,train,51.43314\n-26.834044,7.262536,-0.6193956,18.314903,49.83626,-15.421761,12.177793,54.21946,1341,train,54.21946\n-17.567764,6.481054,-0.8177612,40.71465,0.9990312,-3.8750217,18.31673,46.99563,709,train,46.99563\n3.6243951,-13.288887,-1.3431152,7.014768,93.627144,-39.422626,9.0822525,22.216732,909,train,22.216732\n-14.472678,5.3667192,-0.7844867,34.421783,9.156395,0.06343188,16.070925,49.290127,1171,train,49.290127\n-22.206787,9.373013,-0.57479024,1.6827106,51.908287,3.745554,15.136803,58.99518,1375,train,58.99518\n-8.8638525,7.131364,-0.34381968,10.128115,42.872696,14.999673,-5.299246,34.36454,207,train,34.36454\n25.85336,-90.959724,-1.9280676,60.14074,207.06891,-134.48537,29.475204,100.928406,1312,train,100.928406\n-8.623637,9.587163,-0.2220041,-3.8326292,84.03361,3.9760082,-13.680491,31.627346,51,train,31.627346\n-8.600465,15.540598,-0.26966938,-20.46398,120.46975,13.602527,-31.041918,34.29681,770,train,34.29681\n-9.146277,9.329495,-0.22118221,-3.2149882,83.228516,4.049654,-12.388134,49.38237,30,train,49.38237\n-11.441636,3.2977567,-0.21342903,9.767492,55.6267,0.93689436,0.8858884,41.605705,8,train,41.605705\n0.192974,6.246282,-0.52993745,9.447911,51.80396,12.169425,-1.7326512,12.08159,1240,train,12.08159\n-23.53261,-1.2700988,-0.68336606,44.65748,-4.858445,6.213617,12.314485,46.549885,427,train,46.549885\n-31.92465,-7.994512,-0.8513601,45.67249,-4.561146,-17.587458,56.21094,58.71238,562,train,58.71238\n-35.039345,2.832889,-0.79808784,27.240335,9.979475,-27.510187,42.3817,56.20909,1059,train,56.20909\n-13.036674,8.391267,-0.3884126,-0.29691446,77.96638,10.694755,-14.74239,42.17307,788,train,42.17307\n-40.718185,-1.4499927,-0.894209,46.800224,20.090548,-39.65795,30.098845,43.485218,1066,train,43.485218\n-5.858807,11.987738,-0.78563994,-27.595083,84.56291,9.291889,-5.264594,29.008102,893,train,29.008102\n-34.131702,-0.1533114,-0.7672416,41.775642,28.636387,-24.21837,16.546646,49.553802,1062,train,49.553802\n-27.204317,5.6173925,-0.77656573,45.1491,6.7352757,-19.9379,20.589392,39.44961,1253,train,39.44961\n-30.2939,-7.0891023,-0.76803964,49.770493,9.860625,-17.127367,42.88976,57.692223,847,train,57.692223\n-15.368656,-0.09366471,-0.3861088,33.76938,30.292252,-1.7145869,16.894289,36.819584,435,train,36.819584\n-40.546036,-1.3324385,-0.89803964,45.86237,15.440195,-37.046158,32.717514,57.434593,1073,train,57.434593\n-28.335749,1.6525398,-0.7722452,12.166927,-3.2109985,-2.3057947,54.93659,59.103584,545,train,59.103584\n-27.589998,7.3324876,-0.63674337,19.255753,46.09787,-15.972041,14.805683,54.026047,937,train,54.026047\n-8.478052,15.333887,-0.5658147,-27.502283,96.61578,12.794553,-13.301883,33.704185,873,train,33.704185\n8.001815,-16.146444,-0.502599,-9.647536,82.037796,-18.874487,17.082035,17.355408,387,train,17.355408\n-26.34306,-0.22558917,-0.6671355,37.16362,37.392555,-13.406831,3.517951,44.90523,243,train,44.90523\n-34.66319,-0.19416459,-0.77489597,42.02791,26.104757,-24.659725,18.515976,50.39058,1075,train,50.39058\n-28.329905,4.8090067,-0.6430327,27.041111,56.549435,-22.776367,5.1164184,52.321068,234,train,52.321068\n-18.0603,-0.25226855,-0.41547486,14.103383,24.95382,1.4638033,26.17638,53.190556,58,train,53.190556\n-1.1466345,-3.8795776,-1.0102096,-4.1920333,77.324905,-18.069345,7.5013056,29.687708,121,train,29.687708\n-18.81611,6.8719263,-0.8134379,43.50944,-3.7245622,-4.8293824,18.600645,45.357002,687,train,45.357002\n-0.59286094,2.0507355,-0.51222914,4.184438,43.888535,19.111567,-2.7028346,31.654943,1211,train,31.654943\n-35.160088,1.6756455,-0.8433217,23.53476,0.38223007,-28.34117,53.64559,58.565575,649,train,58.565575\n-9.640796,2.2745671,-0.34131676,19.957806,22.561865,8.167757,20.450172,34.999638,859,train,34.999638\n-8.324972,2.2494943,-0.56102914,20.064196,18.897686,13.156953,3.0808744,31.263569,373,train,31.263569\n-16.785091,5.9656367,-0.38976225,4.7804904,85.6561,-1.3398498,-16.414331,47.06961,173,train,47.06961\n-14.868611,5.4145403,-0.3932968,1.1928214,58.832195,6.8585367,8.254515,53.899563,473,train,53.899563\n-1.0020947,-4.589758,-1.0172855,-3.4207838,77.73244,-19.052052,7.800182,29.302954,112,train,29.302954\n-8.715608,18.846664,-0.34378707,-26.537094,122.88844,17.467075,-33.004253,23.537518,782,train,23.537518\n-14.828075,13.190407,-0.5218455,37.08299,-5.2835455,7.132154,26.900553,42.668716,1296,train,42.668716\n-7.394926,14.13762,-0.6193987,-26.512604,87.66366,11.716539,-8.507947,31.457176,83,train,31.457176\n-22.612978,-0.26585314,-0.64880353,40.021156,18.437227,-0.6406037,4.5686646,45.34047,1002,train,45.34047\n-27.292135,-3.3845036,-0.74476314,48.753407,-10.561634,1.0022719,18.002377,45.72935,1103,train,45.72935\n-7.735001,14.470016,-0.60259223,-26.681068,89.663536,11.968094,-9.6188755,32.997734,89,train,32.997734\n-8.85726,18.970062,-0.36697334,-28.059109,122.52019,18.212399,-32.36318,23.418602,780,train,23.418602\n-32.48588,-0.9643481,-0.78751564,74.82806,44.44379,-21.282045,1.560896,39.29265,731,train,39.29265\n-16.751726,10.569386,-0.5226899,44.37682,5.175332,3.6026986,19.938913,42.349228,1292,train,42.349228\n-20.53043,4.0382266,-0.44932815,13.127046,78.91842,-11.728937,-10.966219,47.024464,134,train,47.024464\n-15.089905,7.010702,-0.38806352,2.0122,83.2918,4.3814335,-16.327553,46.168007,799,train,46.168007\n-18.716118,7.100339,-0.8114952,43.39403,-3.2660105,-4.881297,18.456104,45.426247,689,train,45.426247\n-11.335047,11.262525,-0.31488863,-12.831912,102.89311,9.299378,-19.292576,39.828857,498,train,39.828857\n-13.739105,-1.4276913,-0.27444312,23.718246,38.334827,-2.2875423,10.338631,29.00829,48,train,29.00829\n-32.27108,-5.729564,-0.81725156,62.4868,24.632713,-21.189383,27.081379,49.35865,848,train,49.35865\n-6.758971,13.179448,-0.6432401,-25.221241,83.90866,10.872537,-6.4661193,31.283195,879,train,31.283195\n-22.351725,1.8894038,-0.52320004,23.554258,70.04957,-17.777155,-8.178407,31.076523,953,train,31.076523\n-12.787013,13.636211,-0.7551527,33.086197,20.504742,-0.67094034,12.417142,11.404367,1194,train,11.404367\n-29.764242,-7.2846165,-0.7976382,38.684475,-9.118924,-14.483656,58.043076,67.54783,1332,train,67.54783\n-20.70607,0.6720735,-0.46877822,48.698166,34.17777,-7.4338665,11.01864,31.407589,444,train,31.407589\n-14.235552,5.81834,-0.38947392,11.2296,59.26344,7.2308955,-9.227212,36.66403,812,train,36.66403\n-24.037886,-1.6250349,-0.6890441,45.19181,-5.2376304,5.1797366,13.039879,46.388958,816,train,46.388958\n-26.54815,0.97229326,-0.6276031,32.15771,59.692383,-21.925776,-2.2567937,37.602875,995,train,37.602875\n-9.993224,3.199045,-0.5002734,21.19121,32.884617,9.425445,-2.8020923,36.98946,506,train,36.98946\n-36.746544,1.5508726,-0.81947935,36.215702,14.620791,-29.662237,34.06273,53.238792,818,train,53.238792\n-13.9827795,0.98676556,-0.26544046,15.096186,39.772655,0.16830817,10.864908,50.45912,0,train,50.45912\n-16.453424,5.826673,-0.8106021,38.17044,4.428537,-2.4063365,17.732315,48.53664,365,train,48.53664\n-37.78418,-3.2767422,-0.9473345,51.757282,27.026459,-42.194103,31.015972,44.798985,1262,train,44.798985\n10.249923,-51.800926,-1.0413381,11.251374,120.96503,-56.50252,31.541113,44.981552,418,train,44.981552\n-26.936613,1.0897677,-0.609345,66.268875,41.113964,-12.273225,1.2894936,37.14385,1258,train,37.14385\n-4.185212,2.258963,-0.5606063,13.204346,32.72728,13.459149,1.1237341,30.892048,1206,train,30.892048\n-5.7897725,3.3149817,-0.34048104,15.866585,34.465122,9.926811,-4.0814633,29.807823,238,train,29.807823\n-31.374802,-6.9737625,-0.8751951,35.5331,-16.766102,-14.202588,66.487976,70.430916,65,train,70.430916\n-9.225615,9.209593,-0.22240488,-2.924476,82.4969,4.0169177,-11.972423,50.186882,26,train,50.186882\n-12.376656,5.004209,-0.7529812,30.444067,14.586057,2.2601721,13.75478,49.798218,1167,train,49.798218\n-23.574959,2.7721574,-0.5245571,20.812212,72.49874,-19.574879,-6.347387,48.822872,616,train,48.822872\n-26.751474,2.7894595,-0.6032055,26.382254,66.97528,-24.260824,-1.8127894,49.349865,947,train,49.349865\n-4.45645,6.441563,-0.81877315,-17.203217,74.871216,0.87387455,0.9320697,30.170887,104,train,30.170887\n0.29259095,2.262952,-0.5232413,3.963872,46.55662,18.98271,-2.993731,25.447857,721,train,25.447857\n-19.335682,8.7804,-0.52403575,-2.7632346,54.133247,10.198443,13.581219,55.57093,485,train,55.57093\n-20.436085,0.69502246,-0.46470958,48.031853,33.819187,-7.1499844,11.343506,31.584923,441,train,31.584923\n19.800314,-73.807144,-1.5277543,37.653248,172.14563,-103.83227,30.542168,77.07439,1314,train,77.07439\n-34.823498,-2.4228415,-0.9291879,30.399477,-8.856375,-28.590342,60.444313,63.262478,631,train,63.262478\n-34.034943,-0.17075613,-0.7656958,41.766354,28.917812,-24.091393,16.235128,49.514954,1063,train,49.514954\n-3.2629566,0.11180487,-0.45681113,10.385734,45.07606,12.906257,-4.369012,35.820995,1131,train,35.820995\n-12.622627,10.372842,-0.3281519,-9.92524,98.21379,7.308814,-17.659998,43.107105,1371,train,43.107105\n-13.083661,7.0767627,-0.387879,5.3263416,63.54283,10.885406,-9.700185,40.73434,1361,train,40.73434\n-37.776653,-0.8112759,-0.8738233,43.685135,23.071726,-36.710056,26.546263,50.539616,1261,train,50.539616\n-26.902414,-3.2583425,-0.7409341,48.5921,-11.078096,1.9252989,17.69552,45.17488,1104,train,45.17488\n18.977911,-74.13675,-1.544846,36.063877,170.53944,-97.36291,29.876493,67.522964,1317,train,67.522964\n-37.726868,-5.311769,-0.9685973,68.48125,39.58089,-38.405525,18.516457,67.376045,400,train,67.376045\n15.349437,-64.8403,-1.3443222,25.65264,151.44572,-79.187775,29.635086,30.697798,756,train,30.697798\n-11.599968,9.36327,-0.32832232,-7.672691,86.27009,9.437047,-8.3667755,49.9533,763,train,49.9533\n-8.525203,18.286512,-0.31526303,-24.017973,122.40481,16.518805,-33.501804,25.099663,784,train,25.099663\n-20.767612,8.531397,-0.7415629,46.068558,-9.517078,-8.166635,18.513132,37.47476,1156,train,37.47476\n-8.344531,13.479874,-0.50787085,-21.19015,88.708,9.453137,-10.2093115,27.837244,869,train,27.837244\n-27.974983,6.0197725,-0.72481656,8.503851,14.493636,-4.1436934,43.269913,59.396248,1055,train,59.396248\n-28.163202,5.19279,-0.6393213,26.301973,55.61516,-21.993082,5.7800097,51.99006,228,train,51.99006\n-22.568314,3.347821,-0.49840915,18.059372,74.341446,-16.87921,-7.6451283,48.063393,621,train,48.063393\n-34.824905,-2.0849733,-0.92520124,29.501465,-9.027715,-28.46035,60.64315,62.98969,636,train,62.98969\n-30.457294,4.9818034,-0.687599,29.398579,44.757908,-22.675884,12.484727,53.33324,964,train,53.33324\n-26.474936,-5.029662,-0.685107,28.282825,-8.495184,-7.115238,54.331142,60.581787,60,train,60.581787\n-10.653977,4.720777,-0.3854385,19.889708,41.94144,5.7495456,-8.586076,24.097445,981,train,24.097445\n-12.394768,5.0560694,-0.75370437,30.502396,14.600284,2.2456117,13.770297,49.916306,1170,train,49.916306\n-1.8947294,-2.4494176,-0.4297881,9.983492,52.958527,8.523354,-5.2095556,36.123962,337,train,36.123962\n-22.856936,-0.37573847,-0.653584,40.492134,16.48963,-0.24590117,5.3814707,45.982433,1005,train,45.982433\n-14.941327,5.275619,-0.3935421,1.5057285,58.01934,6.7153435,8.685495,54.09236,474,train,54.09236\n4.1271806,-4.0237284,-0.4576699,-0.04122634,60.115505,13.370668,-4.0694966,31.062824,1134,train,31.062824\n-8.67949,17.512814,-0.5722874,-32.0151,102.65484,16.319016,-17.053951,30.64159,448,train,30.64159\n-9.071331,14.685486,-0.48030242,-23.032055,99.25717,10.535394,-15.779955,32.66924,454,train,32.66924\n-21.622112,2.4180763,-0.48858646,18.381666,75.86477,-15.978673,-9.51963,44.474426,972,train,44.474426\n-21.91643,9.376379,-0.5662806,1.3982831,53.29731,3.9068894,14.0575695,58.174957,157,train,58.174957\n-10.919243,8.193205,-0.38246012,2.3769763,58.957726,16.607164,-8.344525,38.846596,201,train,38.846596\n-18.023855,4.157894,-0.4921402,3.0404487,42.96884,8.365006,20.085497,55.53647,764,train,55.53647\n0.68431264,-5.8128066,-0.3974304,9.810411,61.61965,3.0092974,-5.632344,33.21885,317,train,33.21885\n-26.54687,-5.0488605,-0.6880009,28.301262,-8.70462,-7.155145,54.57393,60.611008,62,train,60.611008\n-33.024235,0.08142509,-0.8815315,19.589266,-14.3906555,-19.628778,65.58768,60.755745,270,train,60.755745\n-4.501844,6.728058,-0.8189785,-17.753456,75.2841,1.2580258,0.6474555,29.793108,106,train,29.793108\n-5.7603464,3.2128127,-0.3412515,15.89636,34.664234,9.749754,-4.096126,29.157223,239,train,29.157223\n-11.447553,2.5593247,-0.7038721,27.71603,13.846783,4.0591116,11.663488,46.484875,694,train,46.484875\n-25.048817,7.673988,-0.58656615,13.974044,54.51081,-11.454696,9.732188,53.99559,930,train,53.99559\n-20.452873,3.968594,-0.4482847,13.127786,79.05273,-11.625086,-11.167557,47.626328,136,train,47.626328\n-30.183609,-4.3485785,-0.7981538,51.8142,-12.33316,-3.407047,21.10008,45.41665,670,train,45.41665\n-18.548313,7.0457716,-0.81331,43.04744,-2.6467378,-4.7564087,18.428514,45.231644,688,train,45.231644\n2.5992706,0.5776074,-0.5037486,-0.30419144,53.9914,20.441334,-4.1288633,21.577309,1349,train,21.577309\n3.7010765,-15.390581,-1.3346586,8.642911,94.841515,-41.100338,9.900696,20.271646,908,train,20.271646\n-21.886532,-3.9560988,-0.4794683,39.57232,23.558655,-9.956805,25.659986,39.661934,549,train,39.661934\n-32.767128,-8.273248,-0.87016726,50.41622,1.4502316,-19.887001,51.841564,64.47294,839,train,64.47294\n3.3478694,-6.0666842,-0.42858335,4.7065897,63.243973,7.0973134,-4.91489,28.540012,522,train,28.540012\n-16.247892,6.2692003,-0.39235297,4.4524765,83.718704,0.7932156,-16.105581,47.42958,172,train,47.42958\n-6.9349804,13.396497,-0.63246655,-25.356937,84.618004,11.062292,-6.9270716,31.656656,880,train,31.656656\n0.56762546,-5.2829056,-0.40053624,9.088383,60.70949,4.4976425,-5.6175976,34.595436,323,train,34.595436\n-6.2369475,13.074182,-0.74914813,-28.444376,86.75309,11.017219,-6.955271,30.10247,891,train,30.10247\n-17.42498,6.1607776,-0.48294207,-1.1587155,51.378403,10.515073,15.159794,53.22183,463,train,53.22183\n-26.923819,2.766045,-0.6076245,26.69882,66.68323,-24.457264,-1.5966322,49.933693,942,train,49.933693\n-3.2539675,-2.5625238,-0.38874957,17.005894,43.438717,1.8936816,-2.5201004,26.648148,1326,train,26.648148\n-34.90513,-0.28271338,-0.77917373,42.26019,25.04329,-25.014904,19.342194,50.839565,1076,train,50.839565\n3.3597229,-16.312721,-1.2973504,8.6887455,94.37603,-40.327938,10.493356,19.461401,913,train,19.461401\n-30.461645,-7.222173,-0.7752694,49.59627,8.989284,-17.264772,43.823856,58.874775,846,train,58.874775\n-20.75448,0.36459562,-0.6622724,40.65408,-9.688101,13.00269,12.370074,41.42428,1098,train,41.42428\n-8.528088,17.793459,-0.3064242,-23.824066,121.419266,15.734547,-32.114826,29.95478,488,train,29.95478\n-9.190782,15.434069,-0.48153916,-25.127031,103.264084,11.637862,-17.69998,33.07995,445,train,33.07995\n-14.386954,5.547742,-0.78504723,34.29651,9.6943865,0.080251046,15.975405,49.860165,1172,train,49.860165\n5.2008195,-28.877516,-1.3236672,18.068686,104.0099,-51.288937,14.521945,11.262924,926,train,11.262924\n-32.200478,-0.61307555,-0.7791046,74.98169,44.630016,-20.755093,0.7142058,38.03276,730,train,38.03276\n-14.648228,3.1832707,-0.54136014,28.835567,27.005014,6.973209,-1.8637465,37.55613,1016,train,37.55613\n-33.118465,-0.2953042,-0.88758093,20.255526,-15.010405,-19.844334,66.03808,60.92498,266,train,60.92498\n-8.417011,15.410743,-0.26264358,-20.514826,118.678085,12.945447,-29.606709,35.959522,775,train,35.959522\n-2.787981,-0.020855384,-0.87865543,-7.9059296,72.75946,-9.066287,5.6491075,25.671083,895,train,25.671083\n-2.9129407,6.3300576,-0.9949892,-17.55633,79.01062,-4.329356,1.1788055,25.989021,900,train,25.989021\n-0.7989585,-4.576805,-0.39947176,10.908471,58.3719,3.8275697,-5.59961,34.15006,329,train,34.15006\n-17.31944,5.626665,-0.3899923,5.311903,86.36564,-3.3336272,-16.118998,47.83807,159,train,47.83807\n-36.586296,1.6618553,-0.81568986,35.960854,14.897062,-29.34959,33.80189,53.420914,819,train,53.420914\n-14.2221365,1.4441394,-0.6192646,30.664715,0.66179323,10.88508,9.496922,32.553535,716,train,32.553535\n-17.091778,3.8570936,-0.79783636,39.056896,-0.7543436,-1.3129635,18.124615,46.051353,1190,train,46.051353\n-32.665916,-8.156009,-0.8609978,51.91444,5.0249724,-20.209469,48.670105,60.60987,74,train,60.60987\n-8.776964,13.77884,-0.2625587,-17.28057,114.63348,11.961751,-27.04281,37.316555,772,train,37.316555\n-9.313772,17.458807,-0.39799997,-26.268686,116.0887,14.112726,-26.374956,27.469933,100,train,27.469933\n-8.58305,17.410526,-0.5828758,-32.10277,101.72249,16.242384,-16.424809,30.432505,449,train,30.432505\n-33.604282,-5.1713862,-0.9366665,32.118946,-16.70772,-22.337414,67.35694,60.949272,828,train,60.949272\n-33.614788,-5.381851,-0.9372883,32.75021,-16.630678,-22.189466,67.33046,60.176712,832,train,60.176712\n-25.794926,2.1650362,-0.8199611,47.93958,-16.192896,-10.3362465,24.869066,40.377834,1186,train,40.377834\n-36.059845,-0.8521602,-0.8003639,43.513275,20.319817,-26.813808,22.997263,50.664066,272,train,50.664066\n-15.35006,1.1266856,-0.7168468,34.562073,0.1622475,3.6842995,14.281643,41.857628,701,train,41.857628\n-19.913332,1.2155715,-0.6231567,38.060677,18.1557,4.6702614,1.7938706,44.6945,1017,train,44.6945\n-10.17764,4.206295,-0.4011327,20.77682,40.700348,5.375829,-8.120494,25.724049,980,train,25.724049\n-38.3611,1.2540016,-0.8563841,34.784122,11.456592,-35.629353,41.298107,58.614315,1050,train,58.614315\n-9.200922,17.377491,-0.36831024,-24.874107,117.20438,13.8760195,-27.583649,30.793133,94,train,30.793133\n-23.00143,-0.4342195,-0.65487176,40.541397,16.495323,-0.48556003,5.54153,46.05967,1004,train,46.05967\n-23.663319,2.8333523,-0.5260339,20.849155,72.307556,-19.629683,-6.162051,48.255867,614,train,48.255867\n-0.5968456,-0.68265367,-1.1028134,-7.603612,79.56073,-17.754087,5.779217,27.238014,608,train,27.238014\n-36.181087,-5.4377337,-0.96777695,47.33378,7.4793887,-34.58312,46.697247,62.24005,652,train,62.24005\n-15.519133,5.756319,-0.4034541,8.602436,68.26971,3.9730515,-10.646027,41.722107,195,train,41.722107\n-33.08953,0.023579052,-0.8835638,19.805853,-14.376477,-19.907684,65.59367,60.511646,269,train,60.511646\n-8.126424,7.5217447,-0.5051751,11.759845,1.2497132,7.737691,37.02864,36.70725,1285,train,36.70725\n2.6517303,-6.546069,-0.41460216,6.9372444,63.98581,4.551053,-5.296676,29.07093,531,train,29.07093\n-3.7364888,-2.5239177,-0.4129926,14.132888,52.910084,3.3010526,-5.475988,30.818056,527,train,30.818056\n-1.1158772,-6.393196,-0.408922,16.286348,52.54817,-2.0652297,-2.8348918,24.383879,510,train,24.383879\n-13.852955,2.9106047,-0.2894808,9.480734,46.779427,1.6815987,9.566294,52.554337,1331,train,52.554337\n-13.338414,3.8799844,-0.28591534,7.537231,51.515484,2.4015434,7.0117445,51.579853,1330,train,51.579853\n-14.858559,9.643069,-0.48653403,38.639023,6.417677,5.3381643,21.733746,41.788635,413,train,41.788635\n5.192178,-9.7113495,-0.46497208,-11.866283,69.2702,-14.969995,20.34308,19.221931,1247,train,19.221931\n-15.279555,6.155851,-0.42409593,-1.158048,60.985306,9.136591,8.201485,54.62133,476,train,54.62133\n-18.904724,2.1335392,-0.48867926,25.159164,57.601273,-9.009907,-8.21745,34.471462,1032,train,34.471462\n-31.937984,3.825558,-0.77161634,17.92527,8.458017,-19.375422,46.55514,57.12665,821,train,57.12665\n3.5974114,-13.217226,-1.3415524,6.9308467,93.53222,-39.291916,9.068764,22.433006,911,train,22.433006\n8.221196,-17.23208,-0.50999844,-9.485225,83.77506,-20.313019,17.305843,15.321032,388,train,15.321032\n-20.269094,-0.30760744,-0.67336434,40.09072,-12.769446,13.238908,13.830673,41.15538,1120,train,41.15538\n3.8816404,-7.117782,-0.43145028,5.13069,65.17567,5.3061986,-4.693959,23.804707,519,train,23.804707\n-31.610268,1.2186441,-0.8383091,16.102688,-11.852746,-13.826956,62.85471,58.551056,643,train,58.551056\n-36.452667,-6.5774474,-0.97683305,54.035934,10.728699,-33.254852,43.314865,68.30597,844,train,68.30597\n-36.44697,-2.233532,-0.8216075,46.760967,15.797637,-26.157187,23.435352,49.682907,280,train,49.682907\n-8.5684,2.1609225,-0.5645941,20.640713,18.136005,12.812606,3.4412649,30.741676,370,train,30.741676\n-11.547128,9.69643,-0.38239628,-2.3430185,75.04658,15.396663,-14.138891,38.634575,130,train,38.634575\n-20.066153,1.1293199,-0.6252969,38.355465,17.86116,4.532089,1.9474415,45.03648,1018,train,45.03648\n-28.522444,4.985069,-0.6485161,27.15899,55.137634,-22.616417,6.0652356,52.456627,226,train,52.456627\n-13.651412,3.0496972,-0.28297657,9.350393,47.70326,1.6606148,8.744699,52.905552,12,train,52.905552\n-16.445082,-1.9964403,-0.35213935,30.36836,31.311361,-4.7130046,17.778849,28.332798,860,train,28.332798\n-2.9098222,0.40403488,-0.872146,-8.41234,72.7016,-8.365796,5.373666,26.060766,894,train,26.060766\n2.5528243,1.5001497,-0.5135149,2.3091278,55.110504,17.557522,-2.9897988,18.79586,1234,train,18.79586\n-9.471835,16.667027,-0.41709068,-25.555819,111.94601,12.914969,-23.513233,29.94954,815,train,29.94954\n-16.40226,6.128256,-0.3955184,5.145612,82.67687,0.4998363,-15.671776,46.692223,1378,train,46.692223\n-0.87829274,-2.6659749,-0.42485857,8.263962,54.371742,9.411992,-5.3315015,34.702255,540,train,34.702255\n-22.266644,9.36535,-0.5739942,1.945877,52.33278,3.2281275,14.794127,58.752563,155,train,58.752563\n-17.475632,5.515831,-0.39103794,5.546334,86.26414,-3.8133807,-15.919038,48.43208,160,train,48.43208\n-17.608297,5.263232,-0.40468085,7.958433,82.1276,-3.31581,-14.931131,47.162132,803,train,47.162132\n-10.301295,4.7094593,-0.38091844,19.412392,41.43655,6.3381085,-8.370227,26.84695,982,train,26.84695\n-11.045275,6.6783166,-0.24480554,2.1993856,67.68112,3.5447435,-3.2726824,51.15049,1329,train,51.15049\n-4.6801744,2.960748,-0.49689618,11.052659,31.457657,17.968382,-1.7552011,39.84682,1149,train,39.84682\n14.801854,-63.22534,-1.3274843,26.524876,146.17459,-74.9751,28.020075,3.7694607,1320,train,3.7694607\n-13.850015,14.737665,-0.57502055,30.59943,-13.892832,5.004128,35.835724,45.432747,404,train,45.432747\n-17.985088,3.352694,-0.44074538,20.293222,61.336185,-5.753479,-9.181588,35.388664,222,train,35.388664\n-5.212061,2.8901083,-0.4839873,11.372245,31.687153,17.733881,-1.8401835,40.36588,682,train,40.36588\n-18.007385,-0.18899101,-0.4143733,13.968468,25.306406,1.5075046,25.960464,53.491074,59,train,53.491074\n0.42299053,-9.454046,-1.1050631,1.1750678,82.99612,-26.697245,9.42278,26.57355,924,train,26.57355\n-20.69793,1.0175666,-0.5504145,31.230558,48.850056,-9.45715,-5.424753,37.32846,1007,train,37.32846\n8.052281,-16.405783,-0.50435257,-9.633411,82.4606,-19.284218,17.177479,17.723978,385,train,17.723978\n-32.118454,-8.034204,-0.8394891,51.33126,6.2794766,-19.449755,47.37731,60.37143,73,train,60.37143\n-31.404778,-5.7812285,-0.8811341,30.773623,-20.286068,-12.9794855,69.411766,69.77695,37,train,69.77695\n-26.790985,-5.195532,-0.6959881,28.79311,-9.310387,-7.596521,55.21249,61.001152,61,train,61.001152\n-6.73082,13.139355,-0.64578736,-25.212185,83.835434,10.8336,-6.405303,30.289051,878,train,30.289051\n-7.9979706,15.35414,-0.60625875,-28.697035,93.59885,13.179442,-11.490283,31.641863,583,train,31.641863\n-24.429337,0.57285523,-0.8063508,49.570694,-21.498688,-3.9341593,23.624466,40.075287,1173,train,40.075287\n-17.097258,3.7844143,-0.7967611,39.06683,-0.8941281,-1.2334545,18.098085,45.873814,1191,train,45.873814\n-37.851723,-5.345006,-0.9753897,66.34515,37.841343,-39.66919,20.825033,62.75754,391,train,62.75754\n4.517477,-7.1945333,-0.44022664,3.7307825,65.27754,5.980367,-3.973709,27.337534,517,train,27.337534\n-29.604626,-7.236727,-0.79291564,38.22387,-9.262812,-14.213403,58.00402,67.5494,20,train,67.5494\n-33.59095,-5.1874704,-0.9364258,32.108673,-16.825266,-22.231401,67.45622,60.775856,827,train,60.775856\n-30.807747,0.348097,-0.7135245,38.547382,42.063953,-22.211483,7.2663894,42.486774,628,train,42.486774\n-17.997889,8.838096,-0.4454643,-1.6093583,75.298775,2.2547061,-2.6197894,53.981236,188,train,53.981236\n-32.40669,-1.8877534,-0.8871706,21.993275,-19.72364,-15.88749,68.96913,63.61015,1038,train,63.61015\n-23.723581,-1.4594529,-0.6881956,45.16788,-6.944086,6.5701003,13.120559,45.65981,424,train,45.65981\n-32.067097,-3.5159378,-0.7865392,48.871532,1.1197474,-11.719338,20.446798,48.156853,663,train,48.156853\n-29.50747,-1.3808874,-0.85462064,50.996033,-16.812622,-10.828665,26.510418,43.057877,1178,train,43.057877\n-38.36729,1.2466867,-0.85645986,34.89059,11.473312,-35.540985,41.14785,58.625732,1054,train,58.625732\n-15.317166,9.468865,-0.4898022,40.172802,7.3584905,4.5468483,20.896719,39.7604,1365,train,39.7604\n-9.110101,14.335925,-0.43643284,-20.21497,98.63989,9.5680275,-16.421606,32.49188,592,train,32.49188\n4.389032,-2.2278621,-0.48802647,-3.285785,58.8434,16.80018,-0.96919864,25.495207,1224,train,25.495207\n-35.41632,-7.864406,-0.95031995,55.381645,8.429218,-27.374357,46.716248,71.478065,558,train,71.478065\n-25.212637,-2.3672557,-0.7050425,46.145733,-7.152625,3.4128745,15.1526785,45.716995,286,train,45.716995\n-15.564098,1.1687326,-0.72088027,35.032284,-0.40154853,3.4233148,14.564268,41.625908,700,train,41.625908\n-32.886436,0.42480224,-0.8738666,18.893227,-13.848313,-19.057325,65.13604,60.380768,268,train,60.380768\n-3.8089626,5.2519174,-0.8848749,-16.45106,75.67655,-2.1359053,2.0720208,31.055286,1335,train,31.055286\n-9.169189,9.309384,-0.22186944,-3.165315,83.07139,4.065315,-12.286761,49.266605,28,train,49.266605\n-16.547174,6.007239,-0.46150723,-0.883663,55.198418,9.966455,12.351304,53.314472,477,train,53.314472\n3.089239,-12.882184,-1.3041694,6.3279815,91.958565,-37.721058,9.305025,26.40229,918,train,26.40229\n-0.77057165,-5.536603,-1.0330447,-2.4535139,78.57127,-20.59469,8.190417,28.563097,120,train,28.563097\n-17.206615,3.7839155,-0.79782313,39.27633,-1.2105341,-1.3234925,18.175539,45.829906,1188,train,45.829906\n-27.061403,5.551999,-0.7751663,44.665936,6.1264586,-19.880844,20.727076,39.404938,1252,train,39.404938\n-40.415657,-4.8474827,-0.9242147,54.602142,9.319781,-29.95318,26.895285,53.38224,659,train,53.38224\n-21.79217,-3.899781,-0.47690624,39.712578,24.413578,-9.9146805,25.023039,38.027172,550,train,38.027172\n-15.149458,6.0473185,-0.40022767,7.305489,69.309044,4.9969864,-11.020064,43.50888,198,train,43.50888\n-21.342827,0.8783111,-0.5575396,31.239134,50.34733,-10.929208,-5.189739,39.235855,1011,train,39.235855\n-24.36153,0.5483057,-0.80533606,49.532326,-21.467,-3.7543168,23.513248,40.70835,1354,train,40.70835\n1.9470927,1.5548702,-0.5162941,1.4628934,52.134655,20.354656,-4.46161,24.734392,378,train,24.734392\n10.461937,-50.920555,-1.0203111,8.694041,122.64189,-57.51157,32.389435,48.67946,761,train,48.67946\n-37.503498,-4.9829707,-0.9614837,69.06138,40.50012,-37.609634,17.208683,65.5645,722,train,65.5645\n1.8589678,1.7162467,-0.5189899,1.8739454,51.918095,20.182669,-4.4462667,26.34568,381,train,26.34568\n-28.0929,5.953605,-0.72671473,8.709429,14.179588,-4.5850606,43.528248,59.3836,1057,train,59.3836\n-26.823437,1.0855417,-0.60553235,65.89642,40.98833,-12.141493,1.4764624,36.9016,1256,train,36.9016\n-15.7105055,7.650471,-0.36353418,-1.8287857,89.06274,0.4638695,-14.439004,47.47636,182,train,47.47636\n-38.21925,1.3645871,-0.8543759,34.224308,11.070508,-35.372272,41.79644,58.387794,1053,train,58.387794\n-23.09587,-0.6354491,-0.6625442,42.039234,8.917563,2.2301245,7.7388153,46.48678,1025,train,46.48678\n-22.243246,-4.136486,-0.50891,28.049852,5.3504324,-6.111154,39.55054,56.833218,41,train,56.833218\n-10.442811,10.867198,-0.30477268,-11.211732,97.647354,9.889703,-15.512962,48.261017,1344,train,48.261017\n-23.961273,-3.101367,-0.61493325,21.232456,-0.91055477,-1.2245393,47.327404,57.13571,468,train,57.13571\n-19.047073,4.2297873,-0.4210283,10.238515,81.7866,-7.7918606,-13.497707,47.65589,796,train,47.65589\n-28.649702,-3.747837,-0.801475,51.958717,-17.72196,1.2405494,20.71624,41.466583,672,train,41.466583\n-0.5730924,-0.8767532,-1.1030235,-7.387568,79.612144,-17.986162,5.8650756,27.25264,606,train,27.25264\n6.64942,-11.942023,-0.4936688,7.734884,72.810715,-3.674618,-1.9929291,16.909292,348,train,16.909292\n4.6932817,-28.955816,-0.61175907,-4.364453,72.6323,-21.967766,30.30344,29.52033,1303,train,29.52033\n19.112299,-74.45872,-1.5369835,36.808884,170.17993,-100.037544,30.817133,60.09757,1310,train,60.09757\n-36.484737,-6.482662,-0.9764521,53.71829,10.799439,-33.5793,43.215927,67.87977,842,train,67.87977\n-3.844665,5.4769235,-0.8852784,-16.78436,75.85523,-1.8300781,1.8752112,30.666227,593,train,30.666227\n-2.9285953,1.5762786,-0.470147,7.9174485,39.797546,17.261461,-3.337626,38.71345,1152,train,38.71345\n-36.80306,-4.3566103,-0.9298075,74.209335,43.54403,-32.456333,10.388971,49.585556,726,train,49.585556\n-27.038557,-3.3057833,-0.7430324,48.700916,-11.085748,1.6815603,17.838636,45.36169,1106,train,45.36169\n-31.511183,-6.978126,-0.8791043,35.670166,-16.924122,-14.3751745,66.748955,70.278534,66,train,70.278534\n-30.36127,5.0467153,-0.6858654,29.194613,45.088417,-22.590866,12.328504,53.00792,965,train,53.00792\n-11.270634,9.236446,-0.3146462,-6.124038,83.67837,8.262825,-7.811767,50.810226,1394,train,50.810226\n3.988028,-2.97956,-0.46474615,-3.9154067,64.673775,-5.1512513,11.1303425,14.607025,1250,train,14.607025\n-0.7412104,-0.14426276,-0.45253542,5.2985477,48.71983,15.7394,-4.815254,35.716778,1138,train,35.716778\n-14.923403,6.162875,-0.39870608,7.382004,68.00286,5.7172337,-10.722517,43.272026,193,train,43.272026\n-22.496199,-0.40138692,-0.66349727,42.589092,2.5821567,5.7694793,8.927838,46.594685,1000,train,46.594685\n-3.9900956,2.2774374,-0.56148386,12.972387,33.297005,13.460061,1.1103823,30.760601,1203,train,30.760601\n-14.147124,7.7532415,-0.3883348,0.27513358,83.109924,7.0883975,-16.567242,44.78047,792,train,44.78047\n-8.436,2.225045,-0.5621294,20.31079,18.534853,13.065262,3.205169,31.226507,376,train,31.226507\n-8.323,13.44472,-0.5091298,-21.138323,88.338844,9.436922,-10.023272,27.11575,872,train,27.11575\n-21.136526,0.025999535,-0.7528514,44.99415,-17.366293,1.796943,19.469378,37.961426,1380,train,37.961426\n-18.886772,6.904179,-0.8125013,43.65873,-3.9795198,-4.89355,18.607632,45.08576,686,train,45.08576\n-5.87863,12.053517,-0.7845353,-27.671318,84.68293,9.391116,-5.3531084,31.039621,892,train,31.039621\n-32.535603,-1.0732725,-0.78900325,74.70354,44.311146,-21.372833,1.8899605,39.590145,733,train,39.590145\n2.90155,-0.33307964,-0.48189792,-2.55763,53.587612,20.104471,-3.3886206,24.71865,1231,train,24.71865\n0.16674462,6.294181,-0.53028023,9.524553,51.760693,12.112676,-1.7123529,11.905451,1241,train,11.905451\n-2.8484287,1.5379678,-0.46995732,7.790567,40.05128,17.265142,-3.3826864,38.688263,1151,train,38.688263\n-38.38817,-4.386145,-0.8819517,52.55843,7.1211247,-25.931543,26.074558,51.634747,660,train,51.634747\n-22.583529,10.956556,-0.6443255,58.477306,9.657872,-4.7186985,12.810818,25.85468,1299,train,25.85468\n-14.165704,7.271368,-0.39518917,2.274769,77.41336,7.4714003,-14.286209,43.83079,143,train,43.83079\n-9.20456,15.432676,-0.4796134,-25.023264,103.36708,11.618097,-17.794575,33.555702,447,train,33.555702\n-0.53453183,-11.840784,-0.9821567,2.3730247,80.93817,-24.101086,10.776808,22.489574,602,train,22.489574\n1.5094339,-6.3923025,-1.2353116,-0.8290313,86.30404,-28.4311,7.3714247,25.542774,902,train,25.542774\n2.861939,0.35405296,-0.49898654,1.7034332,56.71716,14.888414,-1.107882,23.69905,1239,train,23.69905\n-30.086773,6.7487698,-0.6986448,19.233004,28.653605,-16.75252,28.817953,55.287086,1342,train,55.287086\n-24.505743,8.9808235,-0.6035133,7.32798,49.0315,-4.365476,16.650858,57.39871,960,train,57.39871\n-12.226853,2.4182096,-0.71161646,29.213926,11.434837,3.7167616,12.298246,46.266224,695,train,46.266224\n-8.69521,2.1951272,-0.56358236,20.859108,17.67393,12.976122,3.4056017,31.07614,374,train,31.07614\n-17.477085,-2.017948,-0.39731637,35.330696,30.618164,-4.906392,18.743988,36.15986,82,train,36.15986\n-8.462097,16.60299,-0.28612235,-22.15828,118.605865,14.002056,-29.89587,32.371307,773,train,32.371307\n-37.746624,-5.220113,-0.9728157,67.053795,38.567326,-39.223324,19.880154,63.93308,390,train,63.93308\n-0.841699,-0.062828965,-0.4531157,5.4314933,48.34803,15.7995615,-4.770786,36.065998,1139,train,36.065998\n-30.080635,-7.35431,-0.8077266,39.359997,-9.133795,-14.871082,58.35062,67.28306,22,train,67.28306\n-7.3569946,14.242787,-0.62933004,-27.065191,88.28527,11.903625,-8.708072,31.759016,580,train,31.759016\n-16.263412,6.071517,-0.8095021,37.807384,5.419765,-2.359333,17.56563,48.596527,1346,train,48.596527\n-8.997118,13.409329,-0.28718355,-13.120049,100.987206,8.375475,-20.839375,39.223953,33,train,39.223953\n-34.888893,-2.1772022,-0.92666554,29.953423,-8.569989,-28.75211,60.255188,62.726578,635,train,62.726578\n-15.6184025,6.822414,-0.37771627,1.3205029,88.21792,1.8545153,-17.74864,47.788033,177,train,47.788033\n-21.37732,0.88797915,-0.55679476,31.09288,50.866062,-11.194526,-5.2644806,38.71319,1009,train,38.71319\n-8.092081,15.421436,-0.60055894,-28.62452,94.25406,13.2229595,-11.870355,32.113167,586,train,32.113167\n-7.6274185,14.174965,-0.6020916,-26.02405,88.109535,11.591754,-8.877422,31.829426,91,train,31.829426\n-31.682226,2.7452648,-0.83196133,65.665726,30.043304,-24.672192,11.56048,48.989697,741,train,48.989697\n-15.088555,1.1244501,-0.7136402,34.041603,0.9362767,3.8810885,13.998165,41.83561,702,train,41.83561\n-9.390579,14.4612055,-0.39757442,-19.405167,102.12947,9.571752,-18.784565,34.784897,457,train,34.784897\n-13.157371,10.038317,-0.33602005,-8.879237,94.463684,7.160012,-15.486418,44.846447,153,train,44.846447\n0.5758969,-6.704048,-0.40176332,11.661972,61.348637,0.43549296,-5.0110765,28.423773,305,train,28.423773\n-32.804005,-8.165479,-0.86652434,52.068813,4.6882925,-20.434147,48.995506,61.980484,69,train,61.980484\n-32.898262,0.41296345,-0.87429005,18.932621,-13.855261,-19.115948,65.14703,60.197437,267,train,60.197437\n-1.9566989,-4.7828856,-0.39828435,16.507513,50.903946,-0.7762744,-3.5708394,27.99296,534,train,27.99296\n-15.656018,6.7981606,-0.37733588,1.3224982,88.42272,1.6636372,-17.775892,46.61302,176,train,46.61302\n-35.37564,-7.871514,-0.9510241,54.877888,7.671579,-27.266167,47.438946,72.52234,556,train,72.52234\n-8.611476,15.596535,-0.27089027,-20.495684,120.59337,13.661446,-31.173538,32.818287,769,train,32.818287\n-11.241706,11.338329,-0.31395447,-13.0080185,104.12661,9.217412,-20.16955,39.56704,500,train,39.56704\n-11.785501,9.380899,-0.38207832,-1.6486204,74.51916,14.500407,-13.7882395,38.456505,125,train,38.456505\n-9.654491,2.161966,-0.34035012,19.941687,22.8784,8.055368,20.358606,34.925575,858,train,34.925575\n-37.9065,-5.6886215,-0.97581583,66.58832,37.0491,-39.42811,21.348787,64.849754,399,train,64.849754\n-16.069498,-0.15155165,-0.393374,35.44509,30.388557,-2.5684106,16.72214,37.143143,436,train,37.143143\n-13.673953,2.168622,-0.26841447,11.796103,44.529755,0.87807643,9.245711,52.180492,55,train,52.180492\n0.3617259,2.2477171,-0.5220581,3.8031769,46.790375,19.088577,-3.0865533,25.5383,720,train,25.5383\n-28.506327,1.4566978,-0.7773404,12.543558,-4.356147,-2.771354,55.79026,59.20069,544,train,59.20069\n-37.74954,-5.818765,-0.96620154,70.15478,39.491802,-37.23404,17.82009,70.380646,398,train,70.380646\n-15.291187,3.799799,-0.56560564,29.762712,13.104358,13.315197,2.4875946,39.59319,1110,train,39.59319\n-11.716113,8.689774,-0.3236608,-4.9104805,80.07499,8.110279,-5.6248293,51.086784,504,train,51.086784\n-32.822174,-3.3759072,-0.79144806,48.594097,3.7080567,-13.931067,20.719896,48.128048,666,train,48.128048\n-8.646513,7.1661015,-0.34443852,9.908288,42.350098,15.325197,-5.1047516,34.025238,208,train,34.025238\n-33.233936,-2.8853593,-0.911943,25.799534,-18.63523,-20.430754,68.51479,64.24097,644,train,64.24097\n-20.454773,0.54083234,-0.6584822,40.051643,-9.034447,13.331053,11.998861,41.289673,1099,train,41.289673\n-16.281738,5.1936517,-0.41220096,10.982568,67.22577,1.6832457,-10.201267,41.55552,811,train,41.55552\n-2.422058,-5.1847634,-0.8110711,-2.0874693,71.7995,-13.302584,8.578286,19.997904,1393,train,19.997904\n0.32903606,-5.1073346,-0.4007334,9.294592,60.252438,4.5552926,-5.6222925,34.186054,321,train,34.186054\n-40.07129,-0.6993105,-0.88069266,44.925484,21.810163,-40.602917,30.181013,53.002754,1067,train,53.002754\n-36.577785,-6.462438,-0.976793,54.24056,11.892531,-33.97603,42.312782,67.89732,843,train,67.89732\n7.2880955,-7.403546,-0.49182308,-3.4617658,67.90544,10.433148,-0.19161867,20.172102,1233,train,20.172102\n-13.665068,3.1759906,-0.286225,9.0046625,48.166313,1.8286697,8.697783,53.011845,14,train,53.011845\n-13.281944,3.7477655,-0.28055042,7.9221644,51.16627,2.176325,6.8951135,52.48042,16,train,52.48042\n-1.5423516,-2.62659,-0.42677918,9.4546385,53.70042,8.587018,-5.283529,35.241486,338,train,35.241486\n-36.5218,1.6811398,-0.8138301,36.017204,15.1799345,-29.171518,33.431797,53.38247,817,train,53.38247\n10.156521,-51.634758,-1.0395513,11.39563,120.230606,-55.849213,31.34248,40.372154,1304,train,40.372154\n-20.66845,0.030719383,-0.74250937,43.873783,-16.226809,2.5463207,18.846844,38.385254,361,train,38.385254\n-20.439297,4.0529113,-0.44733253,12.9244585,79.14399,-11.510645,-11.137509,47.16857,137,train,47.16857\n-17.451658,4.4933243,-0.4272115,12.449348,69.96973,-2.1798148,-10.422202,41.461426,810,train,41.461426\n0.19534126,-6.4005585,-0.3993373,12.159549,60.18259,0.44350216,-4.9402037,27.741587,334,train,27.741587\n-13.171821,1.1035006,-0.24708815,15.334046,43.238174,0.045234546,7.875096,46.4191,9,train,46.4191\n-23.852121,11.621946,-0.6939567,55.674633,3.979824,-9.761905,15.987102,30.383223,1265,train,30.383223\n1.5214071,-6.385566,-1.2363367,-0.82761216,86.343315,-28.46112,7.3595424,25.066978,903,train,25.066978\n-28.15622,4.9510775,-0.6387334,26.578756,56.604065,-22.411318,5.1029863,52.388725,233,train,52.388725\n-36.277447,-1.1504478,-0.8063565,44.16676,19.324093,-27.079515,23.404083,50.437515,273,train,50.437515\n-15.346861,6.564358,-0.39565188,3.8552094,79.75801,4.1047606,-14.917562,45.81855,165,train,45.81855\n-24.813791,7.4813666,-0.57987946,14.10709,56.351444,-11.621463,8.18532,53.756557,931,train,53.756557\n-13.65448,1.098778,-0.2566141,15.134938,41.098503,0.20264693,9.631187,48.969162,6,train,48.969162\n-30.66026,4.0085635,-0.81209314,63.892277,26.42432,-22.886166,12.268566,37.951706,735,train,37.951706\n-20.523647,-0.4359128,-0.6764296,40.587162,-13.255399,13.008644,14.088202,41.420925,1122,train,41.420925\n-34.722977,-0.17566305,-0.7757406,42.01094,25.945864,-24.779427,18.732769,50.348038,1074,train,50.348038\n-33.292397,-2.6397262,-0.9109812,25.476532,-18.213234,-20.693705,68.14957,64.70186,646,train,64.70186\n-4.697156,0.7521555,-0.3579708,16.18199,37.49535,6.3014607,-3.2373157,26.15596,976,train,26.15596\n-15.920697,6.597133,-0.38201508,2.4112368,87.13962,1.1585807,-17.310675,47.288185,1370,train,47.288185\n-38.845356,-0.63242567,-0.86132306,43.164764,14.362056,-32.785995,32.10114,53.91923,1089,train,53.91923\n-3.1889179,3.0249424,-0.58079576,13.13555,36.621536,12.399722,1.7261955,29.070528,1217,train,29.070528\n-32.979057,-0.66957515,-0.8880335,20.686161,-16.234053,-18.982985,66.78959,62.193596,271,train,62.193596\n-15.819196,5.577806,-0.40643805,8.980706,68.95466,3.0129213,-10.7274275,43.490284,197,train,43.490284\n-24.581528,1.9809835,-0.5619036,24.911892,70.86601,-22.555382,-5.735197,32.48085,954,train,32.48085\n-0.8749595,-6.928459,-0.41222113,16.289352,52.928787,-2.5254514,-2.5387292,23.86222,512,train,23.86222\n-33.58177,2.0334184,-0.8331392,19.195753,-2.690426,-23.41565,56.628536,58.22767,1045,train,58.22767\n19.020765,-74.24423,-1.5474955,36.195778,170.77226,-97.5201,29.84583,59.302734,1316,train,59.302734\n-29.367613,-1.2957481,-0.85360855,50.960743,-17.121933,-10.656619,26.524618,43.234932,1179,train,43.234932\n-0.85693616,-6.841308,-0.41097558,16.127907,53.298637,-2.395087,-2.711052,24.757298,514,train,24.757298\n-3.760549,-1.3588278,-0.3777867,16.68204,40.240925,3.4844337,-2.2956178,26.042759,461,train,26.042759\n-13.590718,8.06618,-0.3896042,-0.04095193,80.97609,8.79282,-15.911358,43.68074,790,train,43.68074\n-17.794521,6.3643985,-0.81836987,41.15944,0.08727287,-3.9668283,18.45183,46.24204,706,train,46.24204\n-5.937022,8.71728,-0.62144506,-15.961701,72.043106,5.1056633,-0.7488423,21.39688,855,train,21.39688\n-21.96076,-0.06489876,-0.7647354,46.707066,-19.217945,1.0027558,20.376535,38.198826,357,train,38.198826\n-1.1232197,-4.300478,-0.40097785,11.125191,57.573254,4.084379,-5.569071,34.2959,325,train,34.2959\n-10.298316,4.117925,-0.5175222,21.828924,16.600637,16.757853,0.8663909,41.03093,677,train,41.03093\n-20.564846,0.47592407,-0.6598795,40.273922,-9.280497,13.215142,12.135277,41.28706,1100,train,41.28706\n-34.641636,-2.2155557,-0.9255186,29.229809,-10.154317,-27.750193,61.55024,63.503235,634,train,63.503235\n-5.3071723,2.9427116,-0.48474598,11.5325985,31.368086,17.735277,-1.7814095,40.594833,684,train,40.594833\n-35.04255,2.7709165,-0.79925984,27.028885,9.602039,-27.515137,42.83648,56.517357,1061,train,56.517357\n-37.90028,-5.3940463,-0.9764212,65.88306,37.369164,-39.925137,21.397291,61.480984,392,train,61.480984\n-13.017211,1.0103245,-0.24447285,15.638182,43.804943,-0.07925643,7.333379,41.463264,1,train,41.463264\n-31.06284,0.49140653,-0.7162386,38.425278,42.94253,-22.99466,7.4091277,42.86516,624,train,42.86516\n-9.184393,17.369194,-0.36439762,-24.725992,117.33555,13.854683,-27.723944,30.209969,97,train,30.209969\n-11.632685,7.910193,-0.7561187,29.628239,20.581455,2.3674664,12.099243,42.741676,1182,train,42.741676\n0.6666699,-6.603424,-0.40156096,11.349024,61.77695,0.7658587,-5.212317,30.028238,302,train,30.028238\n-29.936663,-7.3380566,-0.8013214,39.444366,-8.615896,-14.806571,57.781685,67.31267,19,train,67.31267\n-9.006494,7.107346,-0.34434152,10.233805,43.201515,14.8190565,-5.4161606,34.474808,206,train,34.474808\n-19.704393,1.8417704,-0.63798124,38.027416,-1.5943207,12.798959,8.887869,45.507225,1094,train,45.507225\n-27.307652,2.733695,-0.6178969,27.447725,65.91826,-24.894907,-1.0717506,48.83333,945,train,48.83333\n-20.120884,1.0903274,-0.62567955,38.44407,17.9942,4.3742485,1.9210792,45.0338,1019,train,45.0338\n-13.125186,8.789342,-0.3843403,-2.002743,84.71659,9.526312,-17.477966,43.085777,152,train,43.085777\n-25.1621,7.5967264,-0.58843833,14.402206,54.470318,-11.867625,9.63152,53.877663,933,train,53.877663\n-20.772467,8.481686,-0.74264777,46.101696,-9.607716,-8.132951,18.555882,37.587715,1157,train,37.587715\n11.462999,-28.77247,-0.6442859,-2.0418422,104.417984,-36.821136,17.755629,14.812619,1245,train,14.812619\n-32.463413,-8.14104,-0.85359204,51.550564,5.2520037,-19.880981,48.43223,61.562153,71,train,61.562153\n-20.267986,-0.33058947,-0.6738204,40.087566,-12.855214,13.212753,13.891785,41.499485,1119,train,41.499485\n-0.85624176,-5.132765,-0.39950985,12.431212,58.29775,1.6893855,-5.261334,30.849705,330,train,30.849705\n-20.363348,-0.4028857,-0.67545265,40.272823,-13.128145,13.098964,14.051863,41.53099,1118,train,41.53099\n-13.146442,9.336227,-0.34941253,-6.1758957,97.69987,6.247456,-21.5364,40.10509,186,train,40.10509\n-14.075984,15.064598,-0.5510673,32.146084,-13.994024,7.2703958,33.62805,45.78513,1263,train,45.78513\n-15.721769,6.751146,-0.37814763,1.5440193,88.23316,1.4990985,-17.693956,47.831863,178,train,47.831863\n-11.681077,9.631605,-0.3819018,-2.3584778,75.99295,14.865303,-14.438825,38.578598,124,train,38.578598\n-13.738739,1.3289167,-0.26030824,14.333707,41.565952,0.36559054,9.796055,50.511223,3,train,50.511223\n-4.5498476,-1.8274271,-0.40489885,16.891891,48.351837,1.3167372,-4.6686244,29.507874,525,train,29.507874\n1.4744089,-6.302004,-1.2332355,-0.93654186,86.186325,-28.271936,7.354908,25.520426,901,train,25.520426\n-0.85238594,-0.027748203,-0.45360997,5.4050717,48.219425,15.877422,-4.744586,36.731945,1140,train,36.731945\n-30.931574,3.6686597,-0.81648254,65.040436,27.990347,-23.154789,11.479723,47.969345,738,train,47.969345\n-22.427538,4.8567305,-0.49313837,15.554639,72.4104,-14.329279,-5.664228,47.935356,957,train,47.935356\n-4.633296,-1.7598993,-0.40604624,16.881315,48.377632,1.4021802,-4.7216015,29.04301,524,train,29.04301\n-21.3125,0.90009373,-0.5561709,31.105547,50.674664,-11.028114,-5.280059,39.489357,1010,train,39.489357\n-20.946085,2.2591882,-0.561023,7.832073,24.039003,6.7234077,32.576176,56.82149,251,train,56.82149\n-37.7937,-4.981395,-0.9741923,64.8089,37.384342,-40.16399,21.64344,57.064472,397,train,57.064472\n-2.9816515,-0.03717233,-0.4548168,9.97507,45.73985,12.940729,-4.478139,36.30167,1132,train,36.30167\n-23.363363,-1.1525475,-0.68174076,44.5073,-4.921069,6.6092744,12.140199,46.496918,425,train,46.496918\n-33.28755,-2.8644185,-0.91271865,25.902487,-18.3995,-20.735163,68.33403,64.586136,645,train,64.586136\n-1.6265011,-3.4784155,-0.4147873,10.7681465,55.492985,6.0144014,-5.4558177,36.435287,1328,train,36.435287\n-22.324705,3.4259093,-0.49216488,17.513113,74.828285,-16.32922,-8.016323,47.136803,620,train,47.136803\n-28.414707,5.3539643,-0.6457892,26.486492,54.023865,-21.88439,6.8602424,51.308495,229,train,51.308495\n4.7891264,-3.3186731,-0.49428698,-2.4156153,60.71103,15.079569,0.059621207,25.867453,1237,train,25.867453\n-5.489531,3.029728,-0.48535636,11.8805485,30.944946,17.663326,-1.7344102,40.621197,680,train,40.621197\n-38.936405,-0.7043063,-0.8633615,43.391727,14.319422,-32.941006,32.10486,54.188213,1087,train,54.188213\n-9.670582,9.467275,-0.53645223,15.895105,-3.7385364,7.0818744,38.489433,39.60972,410,train,39.60972\n-15.783857,7.8845363,-0.37034923,-2.1221776,87.74592,0.8856423,-13.044733,48.302338,183,train,48.302338\n-37.0267,-4.5514307,-0.93890274,73.31248,43.15372,-33.746723,11.750396,56.207516,728,train,56.207516\n0.5241155,-1.9009715,-0.43816116,4.6252565,54.07087,13.2396145,-5.1127644,35.04295,1142,train,35.04295\n-8.640816,15.405978,-0.54978293,-27.193298,98.113335,12.532299,-14.195175,33.347794,575,train,33.347794\n-15.192036,5.093733,-0.4019646,14.683774,58.657562,3.8921034,-9.298607,37.491127,218,train,37.491127\n1.4530528,-6.2803774,-1.2316464,-0.96970946,86.11449,-28.196156,7.360179,25.55712,904,train,25.55712\n-20.941664,1.972875,-0.55887794,8.429495,23.359583,6.3035173,32.8854,57.3452,254,train,57.3452\n0.5935599,-5.7106137,-0.397262,9.845215,61.411293,3.1207736,-5.6492715,33.05442,318,train,33.05442\n-23.479761,-1.2381666,-0.6831776,44.644207,-5.0875354,6.4199204,12.316707,46.42078,429,train,46.42078\n-22.086025,-4.0372252,-0.5046786,27.585835,5.581943,-5.8015146,39.25181,56.717457,40,train,56.717457\n-13.357734,1.5149915,-0.25092542,14.086536,43.431522,0.41914737,8.316912,49.3931,10,train,49.3931\n-37.858536,-5.516434,-0.9749997,67.09974,38.069225,-39.322506,20.371267,66.54368,402,train,66.54368\n-8.095256,15.375631,-0.59932226,-28.504864,94.188805,13.148166,-11.838439,31.832104,585,train,31.832104\n-1.4667776,-3.6974595,-0.41055548,10.756397,56.05947,5.5988655,-5.466658,36.237057,294,train,36.237057\n-23.186481,2.3114972,-0.8076358,48.743435,-19.279423,-4.55265,22.48009,40.42164,713,train,40.42164\n-30.128197,2.490873,-0.69161594,32.860424,58.789547,-26.941614,3.3125474,47.171257,948,train,47.171257\n-21.18837,-0.021198414,-0.75241625,45.033333,-17.483007,1.930461,19.482365,38.46423,353,train,38.46423\n-1.0238812,-4.3541827,-1.0173137,-3.6630538,77.64324,-18.837835,7.7075353,28.641182,115,train,28.641182\n-17.580265,5.4315233,-0.39295307,5.8811636,85.92587,-4.03572,-15.773585,48.180763,161,train,48.180763\n11.493693,-28.80663,-0.6451621,-1.9393167,104.51423,-36.823254,17.677942,15.126015,1246,train,15.126015\n3.509146,-3.4642937,-0.4533991,0.5434743,58.90627,13.89671,-4.5331044,31.929287,1136,train,31.929287\n-20.630793,0.60198915,-0.4670051,48.39086,34.14545,-7.3862762,11.207205,31.557161,440,train,31.557161\n-16.971886,5.4442086,-0.40771288,7.7152634,79.14503,-0.8713461,-14.029954,46.85012,801,train,46.85012\n-15.278986,6.2160788,-0.424803,-1.3029068,61.192177,9.226981,8.110129,54.776196,475,train,54.776196\n-11.803741,2.5909543,-0.56303346,26.5251,7.515459,14.675461,4.743698,33.92785,1213,train,33.92785\n-20.527115,0.47519726,-0.659754,40.211094,-9.311053,13.271313,12.1326885,41.09259,1101,train,41.09259\n-8.897482,14.913709,-0.27386716,-18.790955,119.526115,13.344931,-31.051329,34.386097,766,train,34.386097\n-17.335573,6.256605,-0.48073176,-1.3638273,52.11489,10.563044,14.693017,53.442284,1405,train,53.442284\n-14.345243,7.1313276,-0.3958379,2.6096866,77.461876,7.001324,-14.252418,44.71481,146,train,44.71481\n-37.786053,-5.4071927,-0.9720075,67.8898,38.90138,-38.88801,19.352703,67.38906,396,train,67.38906\n-22.873756,-0.38612467,-0.654062,40.55701,16.202257,-0.15377037,5.4766474,45.946304,1006,train,45.946304\n10.553982,-52.669056,-1.0610847,12.172079,122.953255,-57.922077,31.44286,43.811714,416,train,43.811714\n8.054509,-16.403326,-0.50439703,-9.605945,82.44844,-19.199953,17.127613,16.59252,384,train,16.59252\n-11.54352,7.852665,-0.75448346,29.474676,20.735298,2.4773088,12.003669,42.893635,1184,train,42.893635\n2.9367604,-0.37634274,-0.48152313,-2.5881155,53.67015,20.060078,-3.3774576,25.50038,1230,train,25.50038\n-17.057594,5.3962235,-0.40805447,7.845974,79.28519,-1.1541117,-14.049015,46.362892,802,train,46.362892\n-14.164452,15.140854,-0.5739675,31.995905,-14.311725,4.8729734,34.97594,45.86197,407,train,45.86197\n-17.427689,-1.9755441,-0.3970718,35.39949,30.69617,-4.826438,18.626524,36.28629,75,train,36.28629\n-24.874226,-2.1994443,-0.70142823,46.113686,-7.48448,4.2267766,14.748287,45.255768,284,train,45.255768\n-22.57507,-0.79588276,-0.68121004,44.353455,-11.297986,10.0102625,13.604598,42.751934,1124,train,42.751934\n-28.034554,6.0389614,-0.72516155,8.601984,14.705651,-4.4656806,43.163292,59.38406,1058,train,59.38406\n-22.605639,-1.5709872,-0.72177345,44.813957,-18.594313,10.350906,17.346495,43.45354,1129,train,43.45354\n-24.712664,9.11431,-0.62288165,5.897669,44.95094,-2.0582912,20.365038,58.73072,940,train,58.73072\n2.1361895,-8.762306,-1.264062,1.8116034,88.40998,-31.819382,8.0284,25.024845,922,train,25.024845\n-9.218342,17.409119,-0.373432,-25.111435,117.08612,13.936187,-27.434813,28.1545,95,train,28.1545\n-15.921289,7.836928,-0.37256232,-1.7883525,87.253654,0.6474135,-12.769476,48.6892,181,train,48.6892\n-15.159913,6.764193,-0.3929191,3.0911813,80.70375,4.5482216,-15.341254,45.824757,163,train,45.824757\n-0.5106897,-1.0382663,-1.1070802,-7.1918297,79.77106,-18.320286,5.9281325,26.705992,607,train,26.705992\n-12.735738,5.5565405,-0.41571942,30.694923,14.963261,6.2447476,21.03887,39.236786,851,train,39.236786\n-12.846461,5.6817136,-0.4183418,31.087543,14.730362,6.163079,21.020742,39.20589,852,train,39.20589\n-11.290323,9.935727,-0.38527694,-2.8016183,74.27013,16.547518,-13.913629,37.150627,129,train,37.150627\n-3.1200352,-2.821111,-0.39064795,16.994146,43.809753,1.6584888,-2.4474876,25.35482,242,train,25.35482\n-37.50578,-4.8713164,-0.96367055,68.13521,40.097706,-38.132214,17.95885,64.78639,723,train,64.78639\n3.3535116,-0.6301949,-0.48310924,-2.6163478,54.97285,19.731083,-3.3200078,26.494915,1395,train,26.494915\n10.371495,-52.169365,-1.0501376,11.711878,121.72317,-57.009377,31.44993,46.788445,419,train,46.788445\n-17.439135,5.504201,-0.39441213,6.1553817,85.22038,-3.3858113,-15.854518,47.96177,174,train,47.96177\n-22.415648,1.4984839,-0.6012281,10.206117,15.591339,5.6568327,38.351967,57.521446,258,train,57.521446\n-7.994523,15.309231,-0.60541636,-28.593931,93.489204,13.113828,-11.434261,32.200417,588,train,32.200417\n-34.07318,-1.8202274,-0.7804138,45.236813,17.737509,-20.862167,18.853893,49.111076,1085,train,49.111076\n-9.399279,14.524344,-0.40175077,-19.6961,102.274216,9.694185,-18.764181,35.046207,455,train,35.046207\n3.3769069,-6.1842785,-0.42848122,4.8166966,63.458725,6.856937,-4.913379,27.942846,521,train,27.942846\n-0.9645119,-2.5876281,-0.42576438,8.341524,54.12786,9.486224,-5.3165665,35.038788,541,train,35.038788\n3.0521271,-12.845401,-1.3014103,6.271582,91.83437,-37.590183,9.316085,26.753447,916,train,26.753447\n1.7347548,-22.650177,-1.0145755,9.799455,89.16709,-34.360985,14.35401,12.014944,1404,train,12.014944\n-3.9097624,2.2871218,-0.5612107,12.83285,33.52789,13.514847,1.0722332,30.743122,1202,train,30.743122\n-20.691753,4.000094,-0.45298836,13.506719,78.51336,-12.125043,-10.669174,47.91033,133,train,47.91033\n-37.600163,-4.9988937,-0.9662152,67.99529,39.78982,-38.407516,18.392204,64.967964,725,train,64.967964\n-3.7065613,-1.9212309,-0.38434547,17.16887,44.255318,2.0297468,-3.3737142,28.713966,825,train,28.713966\n-28.008444,7.3172116,-0.6458339,19.693426,43.974068,-16.142075,16.245586,53.668846,938,train,53.668846\n-8.691358,13.845444,-0.25784838,-17.221176,113.82764,11.486906,-26.555927,40.683266,778,train,40.683266\n-30.613777,0.40766862,-0.70978755,38.174152,43.434032,-22.32467,6.6341496,35.04619,630,train,35.04619\n-32.34191,-1.6188179,-0.8831822,21.411701,-19.364962,-15.599827,68.63418,63.120384,1039,train,63.120384\n-30.59223,-7.305967,-0.7802099,49.642414,8.664281,-17.39347,44.218136,58.63645,845,train,58.63645\n-37.877377,-0.8544345,-0.87457204,43.783634,22.8411,-36.639767,26.609537,49.509853,1259,train,49.509853\n-8.090044,15.462033,-0.60161006,-28.733644,94.31723,13.291894,-11.90134,30.253792,587,train,30.253792\n-35.49119,-7.8239927,-0.95224565,55.459473,8.619959,-27.59899,46.518288,70.585175,560,train,70.585175\n-17.045584,-1.9761627,-0.3922884,34.553493,30.980663,-4.4133177,18.516676,35.01151,78,train,35.01151\n-16.174652,-1.9299304,-0.34733725,29.817453,31.41604,-4.332596,17.650393,27.811083,1392,train,27.811083\n-1.6706054,-5.0345473,-0.39832866,16.01725,52.246128,-0.84448725,-3.7315953,27.80137,536,train,27.80137\n-28.607271,2.605471,-0.65391815,30.053873,63.13203,-26.188553,0.7141871,48.909542,969,train,48.909542\n-15.099948,3.8109925,-0.5631774,29.40974,13.848614,13.170913,2.2712538,38.986626,1112,train,38.986626\n-15.125298,5.1553926,-0.40111116,14.392059,58.79859,4.1584725,-9.327253,37.556854,219,train,37.556854\n-13.708187,1.180669,-0.25832552,14.830829,41.17247,0.26227665,9.773366,50.17377,5,train,50.17377\n-14.021521,7.285754,-0.39537126,2.4941828,76.00071,7.9191585,-13.759552,43.918503,786,train,43.918503\n1.8729315,1.6862861,-0.51850975,1.8017459,51.9489,20.211319,-4.4487224,26.11454,377,train,26.11454\n-1.09334,-4.2370815,-1.0113543,-3.7863545,77.42748,-18.49056,7.6621943,28.376665,111,train,28.376665\n-22.221281,-4.0713954,-0.5094226,27.67627,5.1204076,-5.873819,39.710342,56.917877,44,train,56.917877\n-25.738539,-2.6084795,-0.7111544,46.3873,-6.9073462,2.31726,15.727901,45.601307,290,train,45.601307\n-36.43397,-6.4070654,-0.97595465,53.05468,10.142089,-33.572395,43.805595,67.36223,1334,train,67.36223\n-3.8232582,5.4225993,-0.887017,-16.73212,75.86411,-1.9428495,1.9237978,30.324263,596,train,30.324263\n-8.602018,15.3661585,-0.55321354,-27.208572,97.704666,12.559251,-13.957506,32.641956,570,train,32.641956\n-10.319556,4.7299085,-0.38035268,19.377197,41.49425,6.3695865,-8.381172,26.859982,983,train,26.859982\n-13.207545,10.03055,-0.33748412,-8.77549,93.983154,7.2251616,-15.186153,45.399246,1377,train,45.399246\n-15.486979,9.961848,-0.41397795,-7.0108337,75.9937,9.661157,-1.9556838,51.020176,466,train,51.020176\n-13.950661,7.973141,-0.4559776,35.31812,9.962736,5.897845,21.451073,40.852074,751,train,40.852074\n-13.91774,-1.4973204,-0.27857557,24.021296,37.784187,-2.404552,10.749346,29.81219,45,train,29.81219\n-33.00347,-0.0029871436,-0.88196737,19.6428,-14.623116,-19.47149,65.74315,60.90915,264,train,60.90915\n-27.303705,7.5914826,-0.63657314,17.655674,45.345318,-14.626723,15.961377,54.209175,934,train,54.209175\n-22.031395,9.361594,-0.5657209,1.8361483,53.85133,3.08093,13.604814,57.64077,156,train,57.64077\n-16.34352,6.0078216,-0.81008726,37.979828,5.046159,-2.4113095,17.632736,48.57101,366,train,48.57101\n-35.444817,-7.850361,-0.9507217,55.50456,8.632189,-27.455824,46.515408,70.67488,557,train,70.67488\n-22.636282,-0.87318486,-0.682499,44.51779,-11.73462,9.972623,13.804378,42.80329,1125,train,42.80329\n-30.802599,0.49576727,-0.71202594,38.137703,43.909325,-22.830256,6.769017,40.78237,626,train,40.78237\n-15.782695,7.8260717,-0.3690678,-2.0217113,88.01535,0.7475236,-13.330169,49.35752,179,train,49.35752\n-10.743426,8.218997,-0.38385072,2.2744594,58.173412,17.023758,-8.074214,37.158966,203,train,37.158966\n-8.361521,13.477903,-0.5047031,-21.112532,88.94727,9.409294,-10.366471,27.51818,868,train,27.51818\n-13.968521,7.3865614,-0.3894313,-3.319922,70.51713,9.409896,1.870206,52.97064,479,train,52.97064\n-9.391788,1.5738719,-0.33130908,18.823256,24.409801,7.907761,20.112455,34.611652,857,train,34.611652\n-33.894264,2.5368714,-0.80766815,21.401482,4.1921864,-24.334711,49.800873,56.95632,1047,train,56.95632\n-30.422163,4.918137,-0.68745166,29.538395,45.34477,-22.846346,12.07926,53.43857,963,train,53.43857\n-38.579712,-4.4262867,-0.885641,52.711834,7.382789,-26.345615,26.170738,51.886765,661,train,51.886765\n-15.858039,5.50586,-0.40689072,9.585583,67.86411,2.9604437,-10.434723,40.809406,200,train,40.809406\n-14.859999,7.197985,-0.38777566,1.5249013,83.42953,5.0107493,-16.452677,45.681854,800,train,45.681854\n2.1853752,-8.709354,-1.2688586,1.787056,88.58278,-31.932573,7.9682117,25.722658,921,train,25.722658\n10.686163,-53.096058,-1.0717914,12.785811,123.76158,-58.436813,31.286148,50.392952,1324,train,50.392952\n4.5044084,-7.2082334,-0.44003698,3.77655,65.29859,5.9390182,-3.9886248,27.301888,516,train,27.301888\n-24.493504,8.964359,-0.6021638,7.4420595,49.2724,-4.516356,16.408325,57.252827,962,train,57.252827\n-14.69932,3.1536992,-0.5414064,28.918499,27.25217,6.8220673,-1.9753463,37.629387,1013,train,37.629387\n-19.77222,-0.4990865,-0.6761084,39.302177,-13.584324,12.649947,14.714762,38.285755,1207,train,38.285755\n-15.508373,-0.15242612,-0.38740993,34.048332,30.357061,-1.9009641,16.895176,36.952995,434,valid,36.952995\n-10.1983185,4.034437,-0.40652263,21.133049,40.686787,5.062974,-8.026491,26.484047,979,valid,26.484047\n19.125004,-74.48928,-1.53752,36.85695,170.22688,-100.11638,30.821856,62.057007,1309,valid,62.057007\n-12.350726,9.563038,-0.38230243,-3.1992006,83.11993,12.163601,-17.06362,41.0298,808,valid,41.0298\n-3.9727592,6.056388,-0.8825496,-17.621624,76.22271,-0.9203907,1.3661661,29.792244,598,valid,29.792244\n-8.702665,13.789577,-0.25800365,-17.08501,113.54387,11.447107,-26.377626,40.735306,777,valid,40.735306\n-20.605106,3.9282737,-0.4517439,13.493696,78.67686,-12.00374,-10.893984,47.84803,135,valid,47.84803\n-12.915653,8.510745,-0.3875887,-0.51054627,77.83388,11.059349,-14.711943,42.696327,789,valid,42.696327\n-13.650392,3.1689544,-0.2854052,9.039013,48.166744,1.8066643,8.651795,52.840595,1362,valid,52.840595\n-31.49089,-7.0206175,-0.8778152,35.90249,-16.664654,-14.439668,66.49745,70.27788,63,valid,70.27788\n-8.869094,8.717253,-0.47835124,14.599306,-2.8865507,12.411021,35.572224,41.359276,1269,valid,41.359276\n-21.52281,2.4105098,-0.48765436,18.29218,75.9265,-15.730926,-9.647136,44.38115,971,valid,44.38115\n-31.87974,-7.931546,-0.8520825,44.979286,-5.6745715,-17.36768,57.08138,61.134155,563,valid,61.134155\n-0.961239,-4.4806604,-0.3998249,11.085429,58.00666,3.823626,-5.5702176,33.98304,328,valid,33.98304\n-8.590171,2.2172892,-0.5626422,20.626476,18.014843,13.053917,3.297542,31.155518,375,valid,31.155518\n-9.254261,9.130032,-0.22205205,-2.7360487,82.09856,3.9445612,-11.775148,49.18612,27,valid,49.18612\n-40.090992,-0.76487565,-0.8813976,45.0813,21.967976,-40.582073,29.947393,51.26284,1068,valid,51.26284\n-40.547623,-1.2947105,-0.8979024,45.749615,15.511161,-37.135746,32.79211,57.693237,1072,valid,57.693237\n10.236217,-51.747353,-1.0398178,11.148247,120.89996,-56.48162,31.58053,45.477806,415,valid,45.477806\n-23.07564,-0.6342097,-0.6626181,42.079075,8.639518,2.3708525,7.793101,46.533882,1022,valid,46.533882\n1.4933931,-0.8629581,-0.45793498,1.1321156,52.222507,17.301638,-4.606474,33.086945,345,valid,33.086945\n-31.097897,3.4658506,-0.820258,64.98711,28.270567,-23.557583,11.681045,47.046143,737,valid,47.046143\n1.5822097,-7.208756,-0.40451595,9.98574,63.788822,0.9474207,-5.1124954,28.010197,307,valid,28.010197\n-24.58244,8.960413,-0.60444695,7.521672,48.85943,-4.6148944,16.742054,57.31526,961,valid,57.31526\n-14.492964,8.543997,-0.46859568,37.252083,9.051058,5.343753,21.198765,40.0583,750,valid,40.0583\n-19.68223,1.8440814,-0.6377841,37.995586,-1.6657395,12.850947,8.905992,45.501064,1096,valid,45.501064\n-15.909955,6.0788054,-0.44414076,-1.1855135,58.361343,9.613019,10.208323,54.510284,478,valid,54.510284\n-34.80817,-0.07733365,-0.77659833,41.84184,25.837757,-25.01519,19.11631,50.583923,1367,valid,50.583923\n-23.579775,-1.4613746,-0.6897083,45.357723,-9.586032,7.5825067,13.8749275,43.02613,433,valid,43.02613\n-6.602248,6.066667,-0.43186384,8.878784,4.2830014,13.190969,33.28069,37.66417,746,valid,37.66417\n-15.754287,5.596333,-0.40575704,9.126708,68.30174,3.2562687,-10.576398,41.45454,194,valid,41.45454\n-24.859118,7.6621084,-0.5823641,13.7136965,55.3679,-11.208624,9.116659,53.495155,929,valid,53.495155\n-14.090502,7.3058105,-0.39514324,2.25,77.062386,7.6864243,-14.165347,43.5895,145,valid,43.5895\n-24.290026,0.52229637,-0.8042291,49.48785,-21.427326,-3.5747616,23.39702,40.53912,1176,valid,40.53912\n-7.6857586,14.329241,-0.6022579,-26.362831,88.9361,11.785589,-9.272251,32.204742,87,valid,32.204742\n-29.490656,-7.2409797,-0.78385806,39.131,-7.770337,-14.430196,56.649582,67.53992,21,valid,67.53992\n3.112635,-1.8214172,-0.4641973,-1.553956,54.981495,17.953262,-3.958147,31.910053,1153,valid,31.910053\n-12.605469,9.287834,-0.45656422,30.597612,4.8002257,8.946126,24.721924,36.673973,866,valid,36.673973\n2.0025709,1.5889826,-0.51824564,1.6429338,52.351814,20.278164,-4.5091915,25.073988,379,valid,25.073988\n-26.921343,-3.2619617,-0.7405311,48.561573,-10.907377,1.8191043,17.68144,45.33814,1107,valid,45.33814\n-0.36705768,1.2569771,-0.4830108,1.897778,45.2772,20.139635,-3.3866658,34.763786,1144,valid,34.763786\n-20.13975,4.326079,-0.55029315,3.0497909,33.454178,9.187789,27.156858,55.812225,495,valid,55.812225\n-28.165436,7.115588,-0.7042436,9.900115,25.516737,-8.527658,35.59463,58.78725,967,valid,58.78725\n-6.7197785,0.572413,-0.4023668,18.501524,43.7438,3.0411835,-5.3134737,26.739288,987,valid,26.739288\n-18.855474,2.1837034,-0.48658744,24.980059,57.713478,-8.895597,-8.254971,33.11516,1031,valid,33.11516\n-16.876175,2.2340937,-0.7661731,38.417652,-2.678194,0.63755393,17.045828,43.495358,1163,valid,43.495358\n1.2126762,-0.7249457,-0.45812207,1.5511286,51.630833,17.225487,-4.583197,33.661835,343,valid,33.661835\n-14.517201,3.1682272,-0.5390976,28.622793,27.596378,6.7834973,-2.0544245,37.403717,1015,valid,37.403717\n-9.505214,7.5200114,-0.37108272,6.8594456,47.179295,16.307892,-5.3745,32.88095,215,valid,32.88095\n-12.864807,5.607462,-0.41770995,31.135843,14.939642,6.0816946,20.933502,39.21912,850,valid,39.21912\n-23.923407,-3.022663,-0.61450297,20.994717,-0.67842185,-1.0656164,47.196266,57.111397,469,valid,57.111397\n-12.579643,9.330404,-0.45674688,30.474016,4.629789,9.021665,24.830297,37.344048,865,valid,37.344048\n-8.603457,17.410852,-0.5806046,-32.04083,101.86297,16.215017,-16.514807,30.001896,450,valid,30.001896\n-0.9589655,-5.0158157,-0.39976215,12.446667,58.10641,1.8301946,-5.292107,30.861738,331,valid,30.861738\n0.59354126,-6.686828,-0.4017559,11.601889,61.432796,0.49560693,-5.0474076,28.1346,303,valid,28.1346\n-26.408596,1.02066,-0.6235468,31.893572,60.24756,-21.966578,-2.536911,36.640194,994,valid,36.640194\n-31.512949,-4.1509047,-0.87660885,25.640862,-22.363388,-12.465726,70.80388,67.1321,639,valid,67.1321\n-6.6226683,6.089301,-0.43288672,8.915137,4.219,13.144077,33.33964,37.707634,748,valid,37.707634\n-30.537775,-7.435311,-0.8237523,39.92433,-9.753568,-15.293272,59.29974,64.91591,25,valid,64.91591\n-35.362007,1.5527081,-0.84879386,24.145973,0.20220286,-29.109253,53.81986,59.107758,651,valid,59.107758\n-4.978266,3.0338945,-0.4965608,11.602634,30.588207,17.8405,-1.6049246,38.183773,1148,valid,38.183773\n-8.805316,13.70087,-0.2631902,-17.12596,114.2539,11.90715,-26.787924,38.868073,771,valid,38.868073\n-32.59005,1.6416514,-0.85043454,66.45466,32.54242,-26.51867,11.62667,49.028496,739,valid,49.028496\n-37.5463,-4.993786,-0.9634981,68.62138,40.22734,-37.948547,17.698395,65.66581,724,valid,65.66581\n-21.642883,3.3480346,-0.47782657,16.43546,76.160835,-15.000653,-9.241248,46.87699,622,valid,46.87699\n-21.742895,-0.15279844,-0.76056755,46.188843,-18.809315,1.5228604,20.08848,39.057945,354,valid,39.057945\n-0.081095405,-5.886412,-0.3987632,11.9202,60.004314,1.1828794,-5.2350864,30.014338,333,valid,30.014338\n-1.0739881,-4.1300797,-1.0147702,-3.915009,77.519775,-18.507454,7.6103206,28.996141,117,valid,28.996141\n-27.596008,7.264248,-0.6356022,19.546175,46.58344,-16.255823,14.338825,53.722916,936,valid,53.722916\n-23.270891,2.385011,-0.80846775,48.7806,-19.263975,-4.797599,22.575895,40.669952,715,valid,40.669952\n-14.289253,7.1324177,-0.39603227,2.6844838,76.91828,7.1675863,-14.040943,44.678284,141,valid,44.678284\n-8.700379,10.59368,-0.70561266,25.247837,32.30439,4.6429896,6.718304,12.019615,1406,valid,12.019615\n-33.51727,-7.0421968,-0.9356466,38.255367,-14.956304,-20.229685,66.67303,60.85255,555,valid,60.85255\n-32.946754,0.16841665,-0.8788259,19.313372,-14.340057,-19.303679,65.5294,60.510612,263,valid,60.510612\n-33.756424,2.6049569,-0.804895,21.166897,4.439458,-23.991465,49.591816,56.95036,1046,valid,56.95036\n3.2049618,-1.9343503,-0.46390137,-1.5825738,55.28238,17.816442,-3.9620697,31.783844,1154,valid,31.783844\n-33.839443,-4.9850073,-0.8788004,54.845905,-11.918368,-11.668301,25.314726,41.542515,1091,valid,41.542515\n-32.33186,-1.7561581,-0.8843718,21.620613,-19.608137,-15.544689,68.83851,63.265987,1040,valid,63.265987\n-1.8370059,-2.8601632,-0.424823,10.339312,54.018417,7.5013614,-5.355714,36.981606,315,valid,36.981606\n-0.60073364,-0.72057813,-1.1020844,-7.5647745,79.547775,-17.771883,5.7978306,27.044207,604,valid,27.044207\n-2.309523,8.915666,-0.52596766,9.010849,47.760094,-2.0623887,8.993495,10.1985,1242,valid,10.1985\n-1.9497306,-4.803481,-0.39849117,16.512676,50.886215,-0.78889614,-3.5478542,27.049572,535,valid,27.049572\n-33.287212,-3.1591072,-0.9155578,26.458458,-18.551115,-20.801613,68.51223,63.410946,647,valid,63.410946\n-34.14444,-0.24091817,-0.7675587,41.92641,28.193449,-24.086887,16.623478,49.67195,1065,valid,49.67195\n1.0186932,3.9664361,-0.53283876,5.821653,50.276627,18.090319,-3.7217433,22.462898,696,valid,22.462898\n-12.820689,13.585285,-0.7560412,33.137573,20.453619,-0.6769998,12.421809,11.020523,1195,valid,11.020523\n-15.310785,9.641537,-0.49190292,40.15151,6.8603687,4.6463165,21.08466,40.96687,1364,valid,40.96687\n-10.67655,4.069248,-0.5219216,22.467777,15.865685,16.63166,1.134123,39.904697,675,valid,39.904697\n-10.5734625,10.62025,-0.30669346,-10.596791,95.39932,9.658729,-14.06343,48.34867,1343,valid,48.34867\n-13.462659,1.5196484,-0.25357136,14.013595,43.11742,0.43418008,8.655427,50.600433,2,valid,50.600433\n1.812602,1.7741019,-0.5194804,1.9871649,51.789413,20.140045,-4.42406,26.982952,380,valid,26.982952\n-7.3364415,1.9063542,-0.5950799,19.27162,23.253607,10.086156,4.73051,31.413044,1209,valid,31.413044\n-26.813332,1.1301441,-0.60570574,65.95281,40.95956,-12.120995,1.4100665,36.912926,1257,valid,36.912926\n-27.368805,5.7452397,-0.7777135,45.96286,7.575816,-19.890663,20.304546,37.978214,1251,valid,37.978214\n-3.8912477,5.673147,-0.88386947,-17.05935,75.96617,-1.51306,1.7022569,30.257435,594,valid,30.257435\n-14.079627,-1.561468,-0.28240666,24.311039,37.32314,-2.524384,11.119582,31.424292,46,valid,31.424292\n-18.7722,9.518731,-0.49077183,-2.9651253,64.13031,7.4078484,6.116929,55.314087,484,valid,55.314087\n-22.414577,1.8810679,-0.52453285,23.683884,69.999306,-17.917347,-8.127942,30.920883,952,valid,30.920883\n-18.49545,14.587166,-0.6886686,44.49369,-4.516436,-5.4789314,16.900217,27.39523,1281,valid,27.39523\n-4.5325627,6.614666,-0.8119684,-17.409704,74.92467,1.2568688,0.74269426,30.462147,103,valid,30.462147\n-20.976158,8.282242,-0.74256396,46.107796,-9.795559,-8.411673,18.75014,36.706673,1155,valid,36.706673\n-14.063662,7.8236346,-0.3881969,0.085436635,83.188034,7.308201,-16.615376,44.60518,793,valid,44.60518\n-21.917639,0.32371473,-0.76867026,46.618633,-18.90715,0.09057941,20.644648,38.67106,350,valid,38.67106\n-3.578547,-2.6736798,-0.41182575,14.028475,53.186714,3.1988757,-5.4490027,30.336206,528,valid,30.336206\n-36.53046,-6.3863535,-0.9764271,53.608677,11.254652,-33.971657,42.880013,67.30453,841,valid,67.30453\n-20.339935,4.283195,-0.5562782,3.270362,32.467094,9.069182,27.879543,55.921234,497,valid,55.921234\n-33.472134,-6.9199014,-0.9348934,37.6337,-15.498984,-20.073483,67.034744,60.29807,552,valid,60.29807\n-14.401272,2.469268,-0.30607688,9.930553,44.06823,1.6766847,11.812526,52.27265,18,valid,52.27265\n-8.979367,14.695095,-0.4937071,-23.755054,98.58804,10.738659,-15.156096,34.67515,452,valid,34.67515\n-8.631819,17.443031,-0.5775765,-32.022106,102.13655,16.243498,-16.69965,30.468306,451,valid,30.468306\n-24.27158,0.5406747,-0.8042245,49.469444,-21.401968,-3.584753,23.387081,40.33837,1174,valid,40.33837\n-4.4329376,6.2935905,-0.8187745,-16.929232,74.6738,0.6793994,1.0745425,29.549746,101,valid,29.549746\n-7.4610467,3.3493273,-0.48336947,16.372665,30.800549,14.701358,-2.321629,37.26152,1146,valid,37.26152\n-16.1368,5.605327,-0.40921143,7.61927,74.07827,1.8554199,-12.22393,43.933556,212,valid,43.933556\n-7.8410845,14.588291,-0.59815264,-26.758791,90.581985,12.083839,-10.104483,33.41368,85,valid,33.41368\n-19.122461,9.338049,-0.50995153,-2.9437714,59.546375,8.634243,9.561267,55.303696,483,valid,55.303696\n-4.56857,0.5076661,-0.35995907,16.165066,37.520096,6.0951095,-3.0137756,27.346386,974,valid,27.346386\n14.142692,-62.05166,-1.2721014,21.700184,145.34445,-74.90423,30.761501,27.42999,757,valid,27.42999\n-0.6658871,-3.7337005,-0.41191137,9.193332,56.80866,6.8458524,-5.470153,36.114418,314,valid,36.114418\n-9.066567,13.952364,-0.27258095,-17.614685,116.81853,12.395626,-28.907742,35.94268,261,valid,35.94268\n-26.26711,-4.810743,-0.6168485,48.03807,22.138424,-13.554957,29.49993,39.999393,837,valid,39.999393\n-31.182777,3.3600163,-0.8216458,65.261314,28.685526,-23.658695,11.496192,48.4653,734,valid,48.4653\n-17.147625,3.8615763,-0.79844064,39.163437,-0.9077584,-1.3642616,18.166054,46.015804,1189,valid,46.015804\n1.4095955,-0.7227603,-0.4591604,1.0837864,51.783066,17.5461,-4.538061,33.22157,346,valid,33.22157\n15.5506115,-65.33192,-1.3544337,26.087269,152.6292,-80.106186,29.639597,24.338795,754,valid,24.338795\n3.2799547,-0.5346818,-0.4838389,-2.5117295,54.79773,19.830317,-3.3703423,25.624626,1229,valid,25.624626\n-7.3125243,14.178187,-0.6312468,-26.990288,88.04485,11.852832,-8.575784,31.701796,578,valid,31.701796\n-22.396423,-0.3236919,-0.6623556,42.466827,2.665344,5.965776,8.80363,46.66012,1001,valid,46.66012\n-37.872066,-5.960406,-0.97538215,66.04629,35.060604,-39.051884,22.920929,65.31198,743,valid,65.31198\n-7.722854,14.518572,-0.6047619,-26.855267,89.78659,12.040099,-9.662307,32.047157,84,valid,32.047157\n1.1175083,-0.53985447,-0.46007767,1.4562548,51.039165,17.567484,-4.4887505,33.66494,340,valid,33.66494\n-15.947201,7.77062,-0.37177417,-1.6258335,87.41211,0.4682109,-12.986702,49.06705,180,valid,49.06705\n-9.267081,13.308062,-0.27754653,-16.71552,114.29414,11.696446,-26.93844,38.796715,767,valid,38.796715\n-11.653615,9.554011,-0.38220763,-2.0421793,74.84995,14.987781,-13.995119,37.980614,123,valid,37.980614\n-24.80436,7.713063,-0.5815886,13.458483,55.300938,-10.963956,9.251061,53.863194,932,valid,53.863194\n-2.1525192,-3.2184792,-0.4161163,11.594332,54.770103,5.687206,-5.561242,35.72403,298,valid,35.72403\n-2.9493191,7.1735983,-0.49531493,6.564761,38.91635,-5.0186543,17.173197,14.94488,1289,valid,14.94488\n-4.4404616,6.445622,-0.8211841,-17.25376,74.94494,0.82654804,0.932842,31.003521,108,valid,31.003521\n-17.81195,8.829541,-0.4409489,-1.8110541,76.04845,2.363359,-3.1817229,53.21171,1369,valid,53.21171\n-1.253055,-3.4564857,-1.0041977,-4.6627836,77.051704,-17.392773,7.314344,29.13564,119,valid,29.13564\n-7.4926457,14.207907,-0.6132824,-26.46083,88.004585,11.72952,-8.734,31.097313,1353,valid,31.097313\n-8.581976,15.332117,-0.554665,-27.174267,97.453354,12.549882,-13.8186,33.2108,572,valid,33.2108\n4.80288,-3.3371115,-0.49419302,-2.4475243,60.737354,15.076346,0.06419903,25.840647,1236,valid,25.840647\n-4.7619944,2.9819453,-0.49674648,11.201106,31.223871,17.93892,-1.718178,39.23609,1150,valid,39.23609\n10.819521,-53.41868,-1.077981,12.946736,124.71323,-59.194733,31.373926,47.94902,1305,valid,47.94902\n-8.883352,10.66978,-0.70905614,25.56815,31.91887,4.46524,6.920755,12.982941,1196,valid,12.982941\n-8.537656,2.2140484,-0.562673,20.525127,18.196548,13.033658,3.2815685,31.117325,369,valid,31.117325\n-35.42595,-7.8579435,-0.9497941,55.606014,8.767524,-27.392916,46.385323,70.63429,559,valid,70.63429\n-20.807257,0.31264642,-0.7523638,44.4783,-16.481504,1.3118087,19.377016,37.65074,352,valid,37.65074\n25.564117,-90.19145,-1.9082905,58.99924,205.38927,-132.78369,29.449211,102.81877,1311,valid,102.81877\n-10.239679,4.699521,-0.38045657,19.352343,41.336685,6.416132,-8.331994,26.911358,984,valid,26.911358\n-12.045186,8.249981,-0.32953596,-3.9292388,77.25281,7.88427,-3.9402854,51.06236,502,valid,51.06236\n-15.073995,2.6379454,-0.7522707,34.941914,3.2813501,1.5972517,15.474816,45.246334,1390,valid,45.246334\n-20.247868,2.493255,-0.5414157,6.9536533,27.83031,7.022941,29.918085,56.639915,253,valid,56.639915\n-23.418879,-1.1915799,-0.6822918,44.560207,-4.9189243,6.490657,12.199159,46.51339,428,valid,46.51339\n2.571885,0.6287479,-0.50453925,-0.2039027,53.92053,20.443249,-4.162055,21.642214,1348,valid,21.642214\n-22.004772,0.31932643,-0.6020488,35.040623,39.352062,-7.5554657,-2.0115185,42.552933,1027,valid,42.552933\n-12.188228,12.722357,-0.5879356,24.251822,-8.357988,2.4192314,37.896248,36.331005,1286,valid,36.331005\n-23.388737,-1.1500136,-0.68065256,44.39028,-4.0381937,6.2158537,11.921509,46.725826,431,valid,46.725826\n-13.442157,4.013578,-0.29495335,7.067169,51.87996,2.778287,7.2416277,51.893063,17,valid,51.893063\n-3.869663,-1.1779202,-0.37638232,16.711004,40.306072,3.6132712,-2.4943924,26.613317,462,valid,26.613317\n-15.128736,6.744035,-0.39396963,3.233408,80.14733,4.690835,-15.130793,44.884064,164,valid,44.884064\n0.41131407,-5.1679873,-0.40070695,9.217577,60.409084,4.540737,-5.617249,34.77184,322,valid,34.77184\n-36.314606,-0.96833307,-0.8057307,43.779907,19.584042,-27.335312,23.697079,50.463524,274,valid,50.463524\n-26.858583,5.502149,-0.77286553,44.278175,5.3834314,-19.719774,20.879868,39.095932,1254,valid,39.095932\n-3.725865,-1.4525013,-0.3787395,16.73961,40.571896,3.3085353,-2.3361306,27.167809,460,valid,27.167809\n-22.988937,2.4101312,-0.8066946,48.628807,-19.000431,-4.3682284,22.25596,40.53939,714,valid,40.53939\n-7.5157166,11.090966,-0.3319911,-10.731685,78.94538,5.754936,-9.030187,21.177704,568,valid,21.177704\n-13.55321,8.087876,-0.38971925,-0.04579881,80.82275,8.898625,-15.865121,43.312294,791,valid,43.312294\n-22.449596,4.75823,-0.49290746,15.6861315,72.55556,-14.5341835,-5.784882,47.95554,956,valid,47.95554\n-13.679893,6.7530107,-0.39033213,6.496492,63.99854,9.21731,-9.812769,40.465065,211,valid,40.465065\n-8.634355,15.54948,-0.55282587,-27.632677,98.43889,12.806697,-14.3376045,31.840012,576,valid,31.840012\n-23.091335,-0.66019034,-0.6632234,42.176746,8.1219,2.5102787,7.967742,46.521282,1021,valid,46.521282\n-13.657468,7.2968554,-0.39319474,3.0378964,71.844795,9.149479,-12.169576,42.08407,213,valid,42.08407\n-8.973199,13.285316,-0.2830463,-12.770081,100.566864,8.275684,-20.71534,38.69554,34,valid,38.69554\n4.3755016,-2.203126,-0.4882329,-3.2497811,58.81547,16.812542,-0.97997314,24.622013,1225,valid,24.622013\n-7.631247,14.371169,-0.60755634,-26.624735,88.89053,11.856222,-9.210988,32.354454,86,valid,32.354454\n-11.815329,9.4292555,-0.38181436,-1.8664597,75.38215,14.375093,-14.119324,38.820465,122,valid,38.820465\n-10.018033,4.1800876,-0.5138973,21.31215,17.396353,16.81492,0.590862,40.67737,678,valid,40.67737\n-28.217342,5.1598682,-0.64069456,26.43333,55.550194,-22.091154,5.818212,52.46763,230,test,52.46763\n-37.47514,-1.1875371,-0.8291511,44.698334,17.011585,-29.864428,26.747917,50.03717,1080,test,50.03717\n10.510239,-51.0731,-1.0235854,8.848092,122.980576,-57.766045,32.38194,48.869965,760,test,48.869965\n-21.416065,0.8928671,-0.55607367,30.94937,51.38213,-11.466779,-5.3345156,38.700058,1008,test,38.700058\n-30.233444,5.035981,-0.6840977,29.162985,46.02674,-22.69565,11.742889,53.439415,966,test,53.439415\n-15.077587,6.866073,-0.39188907,2.7223709,81.25146,4.724885,-15.580447,45.157047,169,test,45.157047\n-16.049896,6.321492,-0.39434633,4.480137,82.29022,1.6623219,-15.650794,46.612137,170,test,46.612137\n-37.397312,-1.1775122,-0.8274491,44.632267,17.181395,-29.719173,26.565252,50.223736,1081,test,50.223736\n-15.857692,6.443479,-0.39305133,4.041779,82.302216,2.261925,-15.732146,45.65043,1373,test,45.65043\n1.0570962,3.838918,-0.53291905,5.658786,50.310143,18.257662,-3.7872305,22.127815,699,test,22.127815\n-32.134262,-3.4500453,-0.78551805,48.69366,1.8474839,-12.100418,20.361471,47.822895,665,test,47.822895\n-26.354881,-4.852783,-0.6201719,48.072197,21.847929,-13.64338,29.809399,40.71913,833,test,40.71913\n-7.436855,14.309376,-0.62346494,-27.013397,88.470345,11.919377,-8.85027,31.54192,577,test,31.54192\n2.6664283,-6.614191,-0.41448748,7.0054846,64.1011,4.39766,-5.2890415,29.16835,529,test,29.16835\n-19.61782,1.9035621,-0.63668877,37.855324,-1.4032769,12.869795,8.793008,45.39176,1095,test,45.39176\n-32.93078,-0.06397957,-0.88094366,19.553041,-14.886795,-19.072815,65.903206,60.90922,265,test,60.90922\n-26.315851,-0.16875692,-0.66427606,36.820858,38.846798,-13.830658,3.0830069,44.132736,246,test,44.132736\n-16.074474,5.7000966,-0.40821156,7.2581344,74.71381,2.0577915,-12.515344,45.979305,1340,test,45.979305\n-36.599518,1.6565839,-0.8160524,35.957714,14.848434,-29.384048,33.863884,53.410362,820,test,53.410362\n-9.370441,14.413319,-0.39868847,-19.348246,101.80471,9.523059,-18.606947,33.916893,456,test,33.916893\n-4.142437,2.2591686,-0.56192887,13.231519,32.858776,13.360589,1.1797004,31.024607,1204,test,31.024607\n-1.1313393,-3.3028748,-1.0188451,-4.863105,77.50356,-17.784584,7.2264667,30.314966,113,test,30.314966\n-22.471272,-0.7077381,-0.68030554,44.126255,-11.266519,10.232803,13.551564,42.87809,1126,test,42.87809\n-3.9533014,5.8112373,-0.87822664,-17.170849,75.910675,-1.2046758,1.5764984,30.058756,595,test,30.058756\n-13.010939,8.883833,-0.3843578,-2.1250563,84.281624,9.917928,-17.322268,43.405495,150,test,43.405495\n12.57794,-58.193714,-1.1847062,17.79296,135.9888,-67.691986,31.052822,49.35789,1323,test,49.35789\n-5.6796036,9.872442,-0.72117764,-21.258976,78.301865,6.6322794,-2.698339,29.634815,886,test,29.634815\n-20.904076,0.063388765,-0.7490089,44.501846,-16.80162,2.0161061,19.197819,37.71781,358,test,37.71781\n-13.282292,1.7239456,-0.25030467,13.519067,44.411713,0.5082596,7.8942714,50.55087,4,test,50.55087\n-13.910338,1.9221286,-0.27414876,12.243641,43.070892,0.7403695,10.265227,52.212776,56,test,52.212776\n-20.416483,0.5403985,-0.65835005,39.986664,-9.062556,13.386087,11.996637,40.902763,1102,test,40.902763\n-11.904683,2.55313,-0.7099697,28.626436,12.523722,3.7728596,12.114064,46.79304,692,test,46.79304\n7.5806427,-14.144207,-0.48954588,-9.319489,78.59768,-14.969546,15.863352,12.665394,1243,test,12.665394\n-14.580211,3.1557224,-0.53972656,28.723452,27.555311,6.754732,-2.0558195,37.45559,1014,test,37.45559\n10.392812,-52.20524,-1.0504442,11.664982,121.90275,-57.178375,31.505926,45.065018,417,test,45.065018\n-9.286828,7.6181355,-0.37419572,6.4083233,46.62532,16.776083,-5.0574164,32.552452,216,test,32.552452\n3.4885387,-1.001488,-0.49956673,-0.51941013,57.53624,16.225996,-1.1079146,19.51213,1215,test,19.51213\n-1.3605822,-5.9830656,-0.40678054,16.427353,51.812805,-1.7077279,-2.9386265,24.822641,513,test,24.822641\n-6.0146313,8.958646,-0.6179776,-16.336157,72.360565,5.404975,-0.9845326,22.562,853,test,22.562\n-16.317898,-0.104924984,-0.39612767,36.106182,30.36267,-2.846698,16.616451,37.679764,439,test,37.679764\n-30.153423,2.5510008,-0.69209296,32.82765,58.568825,-26.89979,3.4802675,48.145424,950,test,48.145424\n5.6068826,-4.6317225,-0.4788163,-5.046415,62.162968,14.732446,-0.47237736,23.703854,1222,test,23.703854\n-9.133018,14.406465,-0.44039202,-20.484976,98.9034,9.667696,-16.47641,32.375076,590,test,32.375076\n-3.273789,0.14842004,-0.45711452,10.372218,44.955666,12.989098,-4.3569207,36.95937,1130,test,36.95937\n-0.577988,-0.8151935,-1.103205,-7.455277,79.603325,-17.921919,5.83748,26.685286,605,test,26.685286\n-34.079254,-1.7195255,-0.77940786,45.025677,18.496334,-21.08841,18.661114,48.796055,1086,test,48.796055\n-19.054476,2.072232,-0.49177328,25.305336,57.81546,-9.343875,-8.178245,33.8772,1033,test,33.8772\n-26.31524,-4.8468685,-0.6188863,47.946373,21.807726,-13.5977335,29.840057,40.852867,834,test,40.852867\n-19.990574,1.1474441,-0.6238096,38.225723,18.33012,4.451471,1.7369415,44.89158,1020,test,44.89158\n-33.564697,-5.0754113,-0.93565804,31.691355,-17.035944,-22.162941,67.61032,60.568,830,test,60.568\n19.354324,-74.76038,-1.5764751,37.502075,172.40872,-96.61625,28.276714,26.173412,1319,test,26.173412\n-0.17570272,-12.526351,-1.0082469,3.0181227,82.18414,-25.561296,10.859995,23.152927,601,test,23.152927\n-31.231281,-3.691407,-0.86965656,24.450283,-21.728275,-11.550242,70.220085,66.41257,637,test,66.41257\n-9.483626,12.533021,-0.5763189,19.802814,6.595025,-0.1893103,28.829588,22.08557,1288,test,22.08557\n8.202094,-43.704136,-0.87929386,4.641587,103.91016,-45.205128,31.711124,44.693157,1301,test,44.693157\n-10.251297,4.1189013,-0.51710075,21.754622,16.6436,16.782442,0.85236317,41.487602,676,test,41.487602\n-7.8005605,11.577735,-0.34453112,-11.999185,82.78433,6.24745,-10.638585,20.473263,1402,test,20.473263\n-37.81494,-5.213206,-0.9748662,66.0785,37.881622,-39.73245,20.852837,61.077324,393,test,61.077324\n-15.265298,5.08008,-0.40316993,14.662881,59.005985,3.7069201,-9.35544,37.334812,1368,test,37.334812\n6.652179,-12.345065,-0.49752307,8.530689,73.3212,-4.72193,-1.9557966,17.307985,347,test,17.307985\n-21.279942,1.8059391,-0.568051,8.972667,21.40194,6.0672684,34.22831,57.337803,252,test,57.337803\n-26.74204,-0.27074713,-0.6735681,37.582798,36.337566,-13.680965,4.2673874,44.1317,245,test,44.1317\n-8.656554,18.392122,-0.3246929,-24.98909,122.39741,16.535305,-32.73379,26.94289,1401,test,26.94289\n-31.96681,3.742573,-0.7738997,17.83606,7.8818736,-19.369316,47.083492,57.097496,824,test,57.097496\n-16.313168,6.1198425,-0.39680335,5.2054434,81.92257,0.88874024,-15.40118,46.32772,171,test,46.32772\n-14.032079,7.3648853,-0.3948202,2.0891194,77.20184,7.8362894,-14.241699,44.516136,142,test,44.516136\n8.122164,-16.7237,-0.5066714,-9.530626,82.951416,-19.541183,17.144869,16.547054,389,test,16.547054\n-21.20551,1.9388918,-0.56666297,8.647465,22.066381,6.26234,33.82753,57.34071,256,test,57.34071\n-5.58519,3.0003085,-0.34176558,15.903042,34.543476,9.676014,-3.9424899,28.601727,237,test,28.601727\n-5.6674886,3.15396,-0.3409404,15.869211,34.42639,9.843523,-3.981252,29.541573,240,test,29.541573\n-17.142418,-1.9207095,-0.39399207,34.971203,30.943886,-4.485177,18.427242,35.02239,81,test,35.02239\n-3.180303,1.175132,-0.3796005,-0.023069065,17.218847,11.341446,29.815617,32.83157,1271,test,32.83157\n-12.896252,8.982119,-0.38423872,-2.2617395,83.853714,10.325701,-17.177206,43.32972,149,test,43.32972\n-8.866838,15.387703,-0.2783747,-19.410477,120.41044,13.750871,-31.797213,28.471924,765,test,28.471924\n-33.50226,-7.044567,-0.93515635,38.229126,-15.019192,-20.158234,66.715836,60.57946,553,test,60.57946\n-4.8210382,-1.5842928,-0.40672293,17.071575,47.970257,1.4435916,-4.7460947,29.52646,523,test,29.52646\n-30.941158,0.49718437,-0.71425784,38.28895,43.420834,-22.923561,7.0980473,42.693825,623,test,42.693825\n-0.37818068,1.2418716,-0.4826592,1.902754,45.258724,20.12975,-3.386032,34.92092,1145,test,34.92092\n-35.40618,-7.8648014,-0.9490246,55.65202,8.827069,-27.331411,46.329857,70.80129,1383,test,70.80129\n-22.057522,-4.0070634,-0.48401335,39.895073,23.542252,-10.039293,25.805136,39.9838,548,test,39.9838\n-13.350329,3.3915431,-0.27633777,8.770325,49.622025,1.8129771,7.429107,52.949104,15,test,52.949104\n-15.614742,-0.086255364,-0.38879198,34.3926,30.299889,-2.001635,16.814993,36.954117,438,test,36.954117\n-9.021211,14.509733,-0.2737898,-18.111631,118.55897,12.982747,-30.480146,34.98214,262,test,34.98214\n-32.749542,-8.206218,-0.8657615,51.519257,3.7926376,-20.182974,49.781204,63.86697,70,test,63.86697\n-14.80874,15.628745,-0.5745252,34.65078,-14.627115,4.6164136,33.260548,43.716946,405,test,43.716946\n-16.29341,15.7865715,-0.5882588,40.20523,-13.992838,2.6767557,30.003374,37.30674,1280,test,37.30674\n-17.286175,5.6562414,-0.38901046,5.1505337,86.55403,-3.2941012,-16.167368,48.01715,1336,test,48.01715\n-9.155825,9.355483,-0.22222736,-3.2737346,83.28973,4.114184,-12.389933,48.76362,31,test,48.76362\n-26.779446,-3.2162645,-0.7393002,48.508556,-11.136379,2.1714475,17.582165,44.984165,1105,test,44.984165\n-1.1606764,-4.2336555,-0.401783,11.082254,57.419785,4.253124,-5.564388,33.88373,327,test,33.88373\n-31.405697,-5.910228,-0.8814888,31.168112,-20.021957,-13.075285,69.255936,69.64325,35,test,69.64325\n-8.460221,15.227376,-0.5653717,-27.230612,96.13892,12.652821,-13.075632,33.599995,874,test,33.599995\n-40.576157,-3.7261662,-0.910714,52.143314,12.948426,-33.463917,28.280277,54.422318,1079,test,54.422318\n-23.103615,2.421314,-0.8075111,48.69071,-19.085062,-4.5715184,22.384905,40.648037,711,test,40.648037\n-13.708136,7.2265472,-0.3934423,3.3177376,71.418106,9.019728,-12.011511,42.26499,214,test,42.26499\n-25.936245,-0.21135627,-0.66234916,37.10289,37.115665,-12.726986,3.1040995,44.876488,1397,test,44.876488\n-37.86849,-5.9744506,-0.9753562,65.950356,34.837723,-39.017586,23.106388,65.090515,742,test,65.090515\n-8.961546,15.34038,-0.28148004,-19.014227,120.095184,13.773417,-31.976965,31.745632,259,test,31.745632\n-22.832962,-1.6272115,-0.7258062,45.266586,-18.872875,10.12777,17.497265,43.548855,1128,test,43.548855\n-24.727058,9.126017,-0.6255896,5.672861,44.238533,-1.5530014,20.939339,59.189857,941,test,59.189857\n-20.572159,0.14918368,-0.7465354,43.948666,-15.992503,1.9029262,18.962626,37.583374,356,test,37.583374\n-19.722252,1.7693365,-0.6388298,38.113285,-2.1591792,12.927364,9.096872,45.69674,1092,test,45.69674\n-1.1882175,-7.3481603,-0.9766499,-1.3307748,78.1975,-19.896877,9.061774,24.353786,611,test,24.353786\n-37.75624,-5.1303306,-0.97370183,66.30045,38.18128,-39.551414,20.469236,62.262104,395,test,62.262104\n-10.255759,4.10486,-0.40563288,21.117434,40.71562,5.1069818,-8.099324,26.846012,978,test,26.846012\n-29.951363,6.846159,-0.6962928,18.971811,29.34871,-16.500162,28.367031,55.24092,958,test,55.24092\n-15.258879,6.6094975,-0.39568713,3.7279098,79.58057,4.3732786,-14.867635,46.767567,162,test,46.767567\n-21.582218,2.839734,-0.8041102,46.72845,-15.559818,-3.473358,21.086226,40.873573,1160,test,40.873573\n-31.48798,1.4089459,-0.83354944,15.7708435,-11.167754,-13.455102,62.27483,58.451317,641,test,58.451317\n-26.380219,1.2004471,-0.6184717,31.286936,61.989697,-22.667238,-2.9608798,34.683804,992,test,34.683804\n-31.645922,-4.4577622,-0.8808382,26.42635,-22.483654,-12.921143,70.96622,67.430435,640,test,67.430435\n-22.497143,-1.5542265,-0.72070825,44.59772,-18.539253,10.417539,17.345728,42.473118,1127,test,42.473118\n-33.417175,-6.944461,-0.93299145,37.60754,-15.669695,-19.807863,67.153625,60.00142,1327,test,60.00142\n0.0996327,-5.8178606,-0.398216,11.423041,60.609127,1.6206369,-5.460313,30.89769,306,test,30.89769\n-7.254804,14.178168,-0.6375423,-27.200867,88.12412,11.914263,-8.556551,29.426476,579,test,29.426476\n-12.05498,3.0812106,-0.22811,10.231925,53.166695,0.9550759,2.747391,47.29889,7,test,47.29889\n-21.919353,0.09193762,-0.65613276,41.73953,5.778712,5.8973374,7.251058,43.713207,997,test,43.713207\n3.72834,-15.221868,-1.3382109,8.588648,94.82333,-41.10409,9.813211,23.285664,906,test,23.285664\n-25.85009,2.1269684,-0.82037246,47.906284,-16.097034,-10.429627,24.91949,39.963,1356,test,39.963\n-15.313026,3.7981772,-0.5658773,29.802656,13.032996,13.324875,2.5088146,39.598976,1109,test,39.598976\n-24.568336,-2.0064845,-0.6969096,45.900936,-7.0667768,4.7110443,14.205589,45.385326,288,test,45.385326\n2.5539627,0.6452196,-0.50456333,-0.19128321,53.85666,20.457167,-4.172304,21.160694,543,test,21.160694\n-2.4426775,-5.2160516,-0.8037576,-2.0171156,71.592476,-13.209807,8.604184,19.13825,862,test,19.13825\n-33.87983,-1.7692338,-0.77744824,45.085476,18.091806,-20.573954,18.442184,47.70034,1084,test,47.70034\n19.862782,-73.96671,-1.5313019,37.891476,172.48367,-104.167206,30.52612,77.6645,1315,test,77.6645\n-31.48942,2.9841409,-0.8283087,65.326096,29.352633,-24.344551,11.711034,47.553463,740,test,47.553463\n-26.676418,1.1229253,-0.60154605,65.53292,40.7768,-11.981041,1.6399931,35.79004,1255,test,35.79004\n-14.838167,9.966806,-0.3959904,-7.832585,78.746506,9.9682,-3.731296,50.215443,467,test,50.215443\n-27.117208,-0.29939473,-0.67931724,38.00511,35.404617,-13.97206,4.9322414,43.144676,249,test,43.144676\n-1.4349357,-2.7086177,-0.4255739,9.337954,53.965965,8.526903,-5.2917647,35.479355,336,test,35.479355\n-5.1078596,2.823276,-0.48275822,11.198009,32.148075,17.69375,-1.931326,40.55625,683,test,40.55625\n-26.345516,-0.22890627,-0.66730016,37.183323,37.31103,-13.385046,3.5436168,44.6287,244,test,44.6287\n-23.0358,-0.6181099,-0.66238266,42.08315,8.514139,2.5024898,7.7764764,46.499836,1024,test,46.499836\n-22.04855,-3.996349,-0.48375216,39.97203,23.79585,-10.036799,25.631468,38.92949,551,test,38.92949\n-22.200665,13.164465,-0.6630443,53.799164,-0.5785489,-6.3030233,17.967886,37.872738,1266,test,37.872738\n-14.972274,7.105674,-0.38780963,1.7473457,83.40213,4.6895466,-16.403925,45.907497,798,test,45.907497\n-31.959259,-7.9823723,-0.85357404,45.473392,-5.087016,-17.568893,56.657463,57.78727,566,test,57.78727\n-25.91449,2.0422063,-0.8214231,47.999565,-16.313124,-10.344614,25.001938,40.695698,1187,test,40.695698\n-22.393093,-4.1464453,-0.5147199,27.9901,4.683853,-6.100006,40.176914,57.083466,39,test,57.083466\n4.5078077,-7.368398,-0.43943277,4.0071135,65.56103,5.552091,-4.002988,25.906841,518,test,25.906841\n-23.620277,-1.3460405,-0.6851585,44.84035,-5.5001225,6.262971,12.595976,46.011707,426,test,46.011707\n-17.803448,8.80395,-0.44027403,-1.7542204,76.206215,2.2552752,-3.322031,52.78102,187,test,52.78102\n-15.346918,9.908743,-0.41044325,-7.2176156,76.16097,10.017565,-2.0078328,50.364025,465,test,50.364025\n-2.824642,-2.4582572,-0.8070685,-4.4503584,71.59558,-10.161609,6.7200894,22.57053,897,test,22.57053\n-3.2256746,2.9983554,-0.58104795,13.186783,36.49385,12.373264,1.7569636,28.883919,1218,test,28.883919\n-3.7776508,-1.3622497,-0.37802473,16.74701,40.553974,3.3856204,-2.4165814,26.366604,459,test,26.366604\n-1.7463158,-3.3439028,-0.41705838,10.832394,55.1347,6.211332,-5.4554787,35.80125,299,test,35.80125\n-4.394487,-0.7214861,-0.45344013,13.72282,47.276237,8.649587,-4.8287745,38.3972,533,test,38.3972\n-26.25293,1.08251,-0.61891,31.578924,60.87162,-21.994312,-2.8525677,37.199062,996,test,37.199062\n-34.368633,-0.45049307,-0.7717185,42.36784,26.363052,-23.96914,17.482786,50.113735,1064,test,50.113735\n-0.9241414,-6.498981,-0.40746945,15.821476,53.803516,-1.9825729,-3.0992975,26.23646,515,test,26.23646\n-5.58753,10.303165,-0.7546061,-23.219524,80.19374,7.028754,-3.1948538,30.093052,888,test,30.093052\n-32.52522,-3.4858913,-0.7909308,48.864468,2.2059848,-12.856858,20.69403,48.315994,664,test,48.315994\n-29.766611,4.16074,-0.745688,72.777626,37.672523,-16.354559,-0.60615873,34.775875,1278,test,34.775875\n-32.281963,-5.7006683,-0.8172855,62.60371,24.786795,-21.20333,26.888227,49.30668,849,test,49.30668\n-8.836592,8.677803,-0.47836253,14.500897,-2.801955,12.383028,35.590466,41.385544,1268,test,41.385544\n-7.9540095,14.493728,-0.5885875,-26.199036,90.739525,11.862345,-10.24852,33.27177,1352,test,33.27177\n18.723913,-73.428116,-1.5341336,35.302284,169.34738,-95.30909,29.444681,49.213234,1307,test,49.213234\n-9.155042,15.38706,-0.48582953,-25.21224,102.778915,11.600846,-17.361847,32.89379,446,test,32.89379\n-8.635166,9.59338,-0.22155721,-3.8440607,84.12372,3.9765809,-13.710142,31.836126,49,test,31.836126\n-32.812202,-8.280451,-0.8722216,50.45911,1.3315961,-19.971071,51.959553,64.884026,1333,test,64.884026\n-20.497295,2.2771177,-0.54746854,7.539832,26.151072,6.7288995,31.019548,57.15206,255,test,57.15206\n-1.6513604,-3.4049757,-0.41634,10.709261,55.30231,6.2124457,-5.441449,36.490463,297,test,36.490463\n-14.496505,7.2022877,-0.45327702,37.03474,12.612712,4.5116916,20.03251,39.815136,753,test,39.815136\n-13.973667,1.5332111,-0.61586237,30.218246,1.4546235,10.943658,9.195401,32.47942,718,test,32.47942\n-15.00213,3.1550615,-0.5457597,29.415901,26.429321,7.018021,-1.7518098,37.967285,1012,test,37.967285\n-1.6989846,-3.342105,-0.41742998,10.720591,55.13584,6.320041,-5.4379787,35.6472,291,test,35.6472\n-13.980172,14.897794,-0.57486856,31.168098,-14.064893,4.9253936,35.502464,45.558994,403,test,45.558994\n-28.971746,-3.9855235,-0.7819847,51.12259,-13.488406,-0.8556308,20.166157,44.92369,669,test,44.92369\n3.188495,-13.106758,-1.3104819,6.599836,92.31878,-38.177822,9.333739,25.691631,917,test,25.691631\n-1.0426792,-4.1884604,-1.0173573,-3.8529797,77.614174,-18.665445,7.6332784,29.373333,116,test,29.373333\n1.8607169,1.7448318,-0.5195459,1.9329941,51.941593,20.172543,-4.4543333,26.577442,382,test,26.577442\n-29.869255,-7.303875,-0.80169487,38.785374,-9.2809,-14.584357,58.281647,67.48079,23,test,67.48079\n-8.536865,17.901329,-0.3104907,-24.020788,121.443535,15.897418,-32.13269,29.295246,487,test,29.295246\n-22.515078,9.34808,-0.57805264,2.464119,52.076984,2.4470057,14.974561,58.60295,1376,test,58.60295\n-17.246046,6.366604,-0.47852895,-1.5943043,52.89952,10.622722,14.197436,53.35458,1403,test,53.35458\n-31.875965,-7.946168,-0.8512511,45.15286,-5.3333282,-17.407707,56.80393,60.7209,565,test,60.7209\n8.107111,-16.65986,-0.50618315,-9.562313,82.85634,-19.521212,17.170715,18.261839,386,test,18.261839\n-17.221352,-2.0463006,-0.39393738,34.64859,30.790941,-4.659944,18.735199,35.875633,80,test,35.875633\n10.59661,-51.359745,-1.0298104,9.151467,123.58669,-58.227234,32.36169,52.20722,759,test,52.20722\n-12.464441,6.129908,-0.36558136,12.681645,50.95433,9.967505,-7.844659,35.497597,223,test,35.497597\n-17.80341,3.422113,-0.43814456,20.156898,60.880272,-5.224419,-9.162909,36.03989,220,test,36.03989\n-22.653748,-4.248165,-0.52308136,28.384586,3.9695177,-6.3853884,40.926388,57.39937,42,test,57.39937\n-20.448168,4.1495976,-0.55888015,3.591373,31.603264,8.936651,28.428036,55.695023,496,test,55.695023\n-12.754473,4.383639,-0.26973492,6.7970195,54.650383,2.5117476,4.5805283,52.447006,1399,test,52.447006\n-1.9721702,-2.7198398,-0.4268175,10.433581,53.63337,7.668759,-5.3301992,36.846462,316,test,36.846462\n-11.922119,2.4635055,-0.70848024,28.62217,12.365885,3.8634825,12.044646,46.57138,693,test,46.57138\n0.19803944,-6.1013765,-0.39890048,11.675497,60.679142,1.12077,-5.3001957,30.385654,304,test,30.385654\n-4.4566674,6.3338704,-0.81638265,-16.963734,74.661736,0.7884129,1.0287564,30.134829,102,test,30.134829\n-28.019817,5.9654603,-0.72588164,8.585672,14.167963,-4.256945,43.49989,59.3555,1056,test,59.3555\n-31.463045,-2.7925022,-0.8740431,22.226162,-21.462847,-12.246256,70.21739,64.36795,1036,test,64.36795\n-21.297321,-0.13351612,-0.7520457,45.1472,-17.767494,2.194304,19.537964,37.987556,355,test,37.987556\n-31.392866,1.398304,-0.8319564,15.6544695,-11.143584,-13.060771,62.193745,58.484203,642,test,58.484203\n-1.7181454,-4.8977027,-0.3970552,15.965135,52.261765,-0.7053671,-3.8379533,28.336376,537,test,28.336376\n-22.420546,-0.33831328,-0.6628005,42.5083,2.4216042,6.0023117,8.911189,46.662384,999,test,46.662384\n-9.0709,13.678861,-0.29859656,-13.965707,101.88434,8.563437,-21.045458,37.726616,32,test,37.726616\n0.98355603,3.9990435,-0.53312576,5.8979983,50.154472,18.061773,-3.695926,22.48594,698,test,22.48594\n-16.763657,10.602545,-0.5232086,44.41191,5.0816154,3.60034,19.954731,42.298405,1293,test,42.298405\n-34.818928,-2.271272,-0.92739254,29.976616,-8.976615,-28.509617,60.567974,63.087948,632,test,63.087948\n-2.8025396,-2.5198367,-0.8092784,-4.4090734,71.641815,-10.277279,6.770374,23.30495,896,test,23.30495\n-32.01533,-7.9297094,-0.8330344,51.970436,7.989808,-19.51892,45.770794,54.675858,68,test,54.675858\n-0.11425299,-12.756556,-1.0109717,3.2110403,82.404495,-25.850937,10.927666,23.161572,599,test,23.161572\n14.71664,-63.023952,-1.3224157,26.272526,145.72588,-74.63429,28.070318,12.188005,1321,test,12.188005\n-12.442275,6.138599,-0.36556667,12.593978,50.965153,10.045575,-7.823796,34.724957,224,test,34.724957\n-36.497982,-1.0957477,-0.80986047,44.08234,19.040884,-27.676435,24.117472,50.19722,279,test,50.19722\n-4.007485,-1.1096698,-0.37698507,17.04303,41.811443,3.1732483,-3.1583233,25.987225,241,test,25.987225\n-21.784428,0.4181043,-0.5976964,34.831337,39.697906,-7.3440485,-2.3555796,42.207794,1030,test,42.207794\n3.4616375,-0.9384743,-0.49977285,-0.4305137,57.48965,16.209164,-1.1345178,19.509268,1216,test,19.509268\n-12.59419,8.913613,-0.38528034,-1.3604428,78.49345,11.939791,-15.063197,41.9864,794,test,41.9864\n-21.86678,-3.9317627,-0.4789009,39.749535,24.131062,-9.950138,25.267538,38.668056,1363,test,38.668056\n-21.581907,0.16908121,-0.76151407,46.03611,-18.34722,0.8272656,20.135445,38.609512,360,test,38.609512\n-12.648329,9.239958,-0.4565174,30.792322,5.011509,8.836489,24.574705,35.89169,867,test,35.89169\n"
  },
  {
    "path": "demo_result/gtnnwr/gtnnwr_result.csv",
    "content": "coef_refl_b01,coef_refl_b02,coef_refl_b03,coef_refl_b04,coef_refl_b05,coef_refl_b07,bias,Pred_SiO3,id,dataset_belong,denormalized_pred_result\n-1.4296875,-0.086135305,-0.101598136,2.1523044,0.25631806,-0.19282894,1.2716657,1.3712567,2741,train,1.3712567\n4.8662705,-0.25386745,-0.23689829,-0.7588534,1.3039486,-1.2711738,0.6210212,0.9479704,2261,train,0.9479704\n2.5276437,0.3765393,-0.32798102,1.1730864,2.1561184,-2.2565913,0.37802368,0.9120166,385,train,0.9120166\n1.4594696,-0.7405497,0.1591624,2.7755048,-1.814695,-1.2101474,0.9952563,1.4685721,274,train,1.4685721\n1.3319585,0.36249235,-0.31078628,1.3358309,2.3488147,-1.2798373,0.58132404,0.8817405,1005,train,0.8817405\n-0.23199223,-0.10005247,-0.086941205,0.791593,1.2541093,-0.90613997,0.97627395,1.0506544,1383,train,1.0506544\n-0.25949827,-0.109970436,-0.08228004,0.75440294,1.3306323,-0.8225694,0.98207015,1.0360119,1653,train,1.0360119\n0.5658856,-0.48653534,0.008071158,2.988271,-1.1219409,-0.5383796,0.7474892,1.0677438,843,train,1.0677438\n-2.6888783,-0.093283966,-0.04908901,2.4768193,0.9552911,-0.38659522,1.1610091,1.0932214,740,train,1.0932214\n1.6982136,-0.7582371,0.16509861,2.6308959,-1.8561145,-1.2699708,0.9929254,1.5225716,234,train,1.5225716\n4.0587177,0.97253615,-0.6726732,-1.0378009,4.3538656,-1.8409942,0.7118472,1.106977,2552,train,1.106977\n-0.37616506,0.7105955,-0.44195512,3.6396487,2.6181297,-1.1946795,0.68841845,1.3969173,2277,train,1.3969173\n-0.1289543,-0.060058083,-0.12435129,0.52523696,1.1789827,-0.7784546,1.0094657,1.0426464,2760,train,1.0426464\n-3.4471312,0.09183906,-0.05974522,2.1714385,1.1626494,-0.34878814,1.3813057,1.4060042,716,train,1.4060042\n4.8272095,-0.986125,0.26921937,0.40498692,-2.3750045,-1.674616,1.0189513,2.0915155,971,train,2.0915155\n-0.8267371,0.16591133,-0.15991722,1.443713,1.8564711,-0.7860022,0.9111046,1.2492716,2068,train,1.2492716\n2.0929546,-0.7886048,0.17717509,2.2781408,-1.9401121,-1.2928793,1.0183725,1.4297773,2896,train,1.4297773\n12.606392,-1.6061451,0.47956705,-6.640602,-3.7927728,-1.8675607,1.1659219,1.1078873,591,train,1.1078873\n-2.1482823,0.30862653,-0.24250732,2.1834517,1.3626806,-0.07245099,1.245904,1.2083588,1630,train,1.2083588\n0.9364427,-0.42462727,-0.029108787,2.4126205,-0.8221321,-0.5493394,0.7607391,1.2997115,954,train,1.2997115\n-2.204425,0.00669122,-0.12266511,2.2063987,0.73180884,-0.33189625,1.3243477,1.2713717,732,train,1.2713717\n-1.7211128,0.57029396,-0.3686277,3.4770157,2.1206715,-0.88107187,0.8161197,1.2424893,2656,train,1.2424893\n-1.4358364,-0.13272345,-0.074344374,2.298986,0.121309355,-0.1946817,1.2424213,1.3559179,1626,train,1.3559179\n-1.8929458,0.0044287993,-0.08358871,1.4148973,1.3842465,-0.44328332,1.1385567,1.0214527,1432,train,1.0214527\n-0.114947006,0.6389869,-0.39484802,3.571141,2.543679,-1.426676,0.5493481,1.0847981,383,train,1.0847981\n-1.2444507,-0.45125148,0.10401097,3.712906,-1.2194349,-0.5726587,1.0795051,1.1601756,2785,train,1.1601756\n8.045208,1.0677419,-0.69793236,-4.7049255,4.7970614,-3.063739,0.65345275,1.0777233,2523,train,1.0777233\n-2.2831519,0.08052405,-0.0920434,1.6483554,1.6199116,-0.4567305,1.1314092,1.1316026,1705,train,1.1316026\n0.47815448,0.29517233,-0.27375516,1.2320935,2.2284667,-0.89475197,0.7447286,1.2352959,1854,train,1.2352959\n-1.434455,0.19803034,-0.17521316,1.5595895,1.9573922,-0.48895708,1.0026922,1.1214919,1747,train,1.1214919\n4.5894723,-0.9661009,0.2559188,0.659616,-2.3094175,-1.6694843,1.0024602,1.6843588,1058,train,1.6843588\n8.380802,0.9195547,-0.5741107,-6.1078434,3.156463,-2.8798225,0.73478764,0.8084024,420,train,0.8084024\n-1.0042603,-0.19923162,-0.052991074,2.3919399,-0.32679653,-0.19457346,1.2451342,1.4519273,2792,train,1.4519273\n-2.327442,-0.2948128,0.06771737,3.4759727,-0.41978496,-0.72089565,1.206677,1.3381051,1555,train,1.3381051\n5.2600203,-1.0308092,0.2996331,-0.21491432,-2.5234683,-1.5823804,1.0761055,1.7228513,902,train,1.7228513\n0.18849315,-0.12482392,-0.09781783,0.8693395,1.1633557,-1.0467379,0.9033612,0.9864617,1568,train,0.9864617\n-2.0961835,-0.096076086,-0.06393961,2.2036796,0.98330677,-0.3849475,1.086931,1.0862085,739,train,1.0862085\n-2.169439,0.358883,-0.27281782,2.456074,1.6099646,-0.24015805,1.1225419,1.4257381,613,train,1.4257381\n8.845468,1.2885323,-0.77799,-6.9840937,5.281134,-2.8901045,0.7745841,0.9635184,409,train,0.9635184\n4.8876143,-0.99207914,0.27108926,0.38784304,-2.3821802,-1.6941427,1.0115314,1.6342409,973,train,1.6342409\n-1.5315962,0.47427902,-0.3490643,2.5306885,1.8521805,-0.50359833,1.0026412,1.2732909,2053,train,1.2732909\n-3.2753382,-0.005692484,-0.05405069,2.511621,0.85481226,-0.4195998,1.3905513,1.2167064,744,train,1.2167064\n0.695656,-0.0932399,-0.15276518,0.55318713,0.85574013,-0.82504576,0.89136475,1.1244696,1627,train,1.1244696\n-2.7736692,-0.13978842,-0.01207799,2.8456771,0.35797405,-0.41830558,1.3207437,1.2704651,1183,train,1.2704651\n1.1583362,0.34428754,-0.30273357,1.2827477,2.3002338,-1.1967884,0.6154333,0.98910004,1962,train,0.98910004\n-1.2322192,-0.10996554,-0.07993425,1.564224,1.0850663,-0.47897384,1.034487,1.1189028,1323,train,1.1189028\n5.9701114,-0.1743461,-0.29440624,-1.381977,1.2187126,-1.3628477,0.5337329,0.7533152,2452,train,0.7533152\n-0.9164588,0.51916844,-0.40064734,2.9915287,1.9406005,-0.75391436,0.91345084,1.0847982,2023,train,1.0847982\n1.1626103,-0.18399015,-0.10432429,0.46794233,1.3997434,-1.0615915,0.8256471,1.0116277,2650,train,1.0116277\n1.0056379,-0.6800881,0.1394148,2.7602892,-1.6934538,-1.040112,1.0638678,1.4581515,981,train,1.4581515\n0.42644697,-0.62439996,0.09300163,3.6291125,-1.5249343,-1.0331019,0.9007446,1.5129521,316,train,1.5129521\n0.21732439,-0.12446752,-0.09970197,0.88150924,1.1520101,-1.0565783,0.8947705,0.98362684,1231,train,0.98362684\n-0.46951422,0.28487933,-0.25246656,1.6213783,2.2046683,-0.7780148,0.8158953,1.0534167,1893,train,1.0534167\n6.2331824,-1.1064073,0.3195575,-0.71560556,-2.6429646,-1.7783096,1.038669,1.9986268,1024,train,1.9986268\n2.228696,-0.32910773,-0.12013582,1.317532,-0.58655345,-0.8475496,0.69543666,1.2889574,942,train,1.2889574\n-3.4442666,0.205382,-0.083738506,2.2143223,1.5119083,-0.24235159,1.3073782,1.0963596,1395,train,1.0963596\n2.745721,0.30608568,-0.30190292,0.27905458,2.0136156,-1.6766466,0.5115607,0.73639625,570,train,0.73639625\n7.4175215,0.99088085,-0.6823862,-3.4375463,4.743403,-2.9435961,0.60617244,0.85533893,2546,train,0.85533893\n2.7509656,-0.15009935,-0.18560722,0.6935591,-0.24657004,-1.1260573,0.678877,1.2163017,2615,train,1.2163017\n1.8421069,-0.75553906,0.15707013,2.4932563,-1.8363894,-1.2803034,1.0042189,1.5314833,1127,train,1.5314833\n-3.4766097,0.10989121,-0.07726249,2.3155816,1.1582365,-0.33718523,1.3962194,1.1758552,1411,train,1.1758552\n2.581599,-0.81662005,0.19003132,1.9374174,-1.9939393,-1.3861922,1.0162534,1.725491,2874,train,1.725491\n-1.8847295,0.44761097,-0.324336,2.6185052,1.7958564,-0.47872588,1.013312,1.1497873,2681,train,1.1497873\n-1.7907389,-0.046983153,-0.08179128,1.5593266,1.3046744,-0.42545807,1.1001794,1.1062392,1359,train,1.1062392\n-3.475935,0.1276565,-0.07930561,2.2371297,1.2072946,-0.32150495,1.3990016,1.5005568,1330,train,1.5005568\n-2.460146,-0.2737662,0.0615178,3.4713297,-0.3291845,-0.69140846,1.2034262,1.3018022,60,train,1.3018022\n-2.1399202,0.35152623,-0.27551973,2.4738448,1.5701816,-0.20745032,1.1293881,1.1580453,607,train,1.1580453\n-2.021946,0.081768095,-0.09287149,1.3976899,1.6654116,-0.45763454,1.1365739,1.1398325,1251,train,1.1398325\n1.1801136,-0.1410316,-0.16257949,0.66152096,0.53141975,-0.8255314,0.8411201,1.139965,938,train,1.139965\n9.217597,-1.4130718,0.37610012,-2.8556597,-3.397918,-1.7638155,0.99028,0.78863907,149,train,0.78863907\n1.9770861,0.27444023,-0.27601534,0.7129373,2.0115457,-1.4212762,0.5734287,0.8927752,2306,train,0.8927752\n5.932046,1.143629,-0.7402779,-2.9828622,4.894928,-2.2391856,0.63001263,0.7369854,2516,train,0.7369854\n4.721888,0.58454084,-0.4205514,0.12556085,2.753828,-2.4645066,0.44121757,1.0976472,2253,train,1.0976472\n-1.9019066,0.21269658,-0.15185648,1.5617002,1.8951442,-0.376491,1.117347,1.3668664,1763,train,1.3668664\n0.93186116,-0.5440157,0.019443046,3.0605824,-1.3589407,-0.6194561,0.74389607,0.8493593,949,train,0.8493593\n2.7225642,-0.79496735,0.16192855,1.2228339,-2.0371764,-0.7216231,1.0399716,1.6780075,1064,train,1.6780075\n0.56621104,-0.33757406,-0.06054217,2.077582,-0.32668525,-0.49222535,0.80143446,1.1046723,90,train,1.1046723\n-1.5977464,-0.07117246,-0.08258871,1.5716809,1.2399677,-0.45770085,1.0754063,1.1268301,1463,train,1.1268301\n-1.41573,0.47491044,-0.36116514,2.6065073,1.8274527,-0.50327116,0.9921269,1.5050384,1873,train,1.5050384\n-1.6242751,0.4631043,-0.3383459,2.4807491,1.8408628,-0.49549082,1.0134517,1.3686209,2684,train,1.3686209\n4.5861726,-0.9660584,0.25653145,0.641671,-2.3117123,-1.6615882,1.0069332,1.7250059,1059,train,1.7250059\n-3.0068533,0.03823872,-0.06873703,2.2205265,1.2704557,-0.32128465,1.2065018,1.2231671,1451,train,1.2231671\n-3.3987496,-0.00060265214,-0.038799547,2.4943435,0.9084047,-0.44532195,1.3857452,1.1889108,2833,train,1.1889108\n0.9056321,-0.21760929,-0.12734325,1.2069204,0.22654642,-0.708822,0.83601385,1.1164374,245,train,1.1164374\n-3.1185868,0.2306121,-0.10401334,2.05304,1.6538895,-0.22671263,1.2716262,1.0509108,1620,train,1.0509108\n-1.6827698,0.100438006,-0.108084716,1.4400923,1.76167,-0.5576184,1.047069,1.150694,1843,train,1.150694\n-1.4242433,0.5466652,-0.38043255,3.195204,2.0718627,-0.8043936,0.8637101,1.2847408,1907,train,1.2847408\n9.985332,-1.4329716,0.4644788,-4.051359,-3.4211786,-1.8563478,1.1488699,1.2573456,133,train,1.2573456\n-1.913562,0.13208267,-0.18672007,2.2028239,0.96717024,-0.22088993,1.2549075,1.3453691,1479,train,1.3453691\n-3.4834437,0.1322014,-0.07530077,2.1710334,1.247938,-0.31895024,1.3944842,1.3676746,473,train,1.3676746\n-2.0935938,0.12049467,-0.16272053,2.1494226,0.9530036,-0.2604777,1.3013549,1.3698121,1444,train,1.3698121\n-3.423157,0.061058156,-0.06462739,2.3294618,1.0554075,-0.38192555,1.4000497,1.2791573,447,train,1.2791573\n0.57059723,-0.66313374,0.1361488,3.0698624,-1.7230458,-0.7560141,1.0419141,1.5492043,262,train,1.5492043\n0.85004514,-0.54473877,0.026420416,3.0912118,-1.4353923,-0.5945751,0.7515661,1.2576212,850,train,1.2576212\n3.3723848,-0.88639593,0.2344077,1.1838193,-2.2210872,-1.3012892,1.0592862,1.6327568,826,train,1.6327568\n1.3553085,0.7821812,-0.52566224,2.3205745,3.4034715,-1.7868929,0.63970244,1.2518632,2357,train,1.2518632\n-2.479441,0.3437472,-0.22051965,2.3003223,1.6876662,-0.24570864,1.1616179,1.1898237,602,train,1.1898237\n0.1835727,-0.49725136,0.062125247,3.0283048,-1.5522912,-0.4145489,1.0474983,1.3686377,2623,train,1.3686377\n0.9894689,0.26089802,-0.24885403,1.2967476,2.008335,-1.2991753,0.6037487,0.8349073,582,train,0.8349073\n-2.0342731,0.22501579,-0.15316372,1.6343634,1.8800292,-0.37509525,1.1274734,1.1444912,109,train,1.1444912\n5.742877,0.66183096,-0.47581694,-0.8348335,3.0738995,-2.619654,0.48356664,0.7624076,2418,train,0.7624076\n-1.8884281,0.20614865,-0.15120214,1.5821049,1.8747107,-0.38773668,1.103255,1.110704,1782,train,1.110704\n0.56780577,0.27404207,-0.26881242,1.1607453,2.1987796,-0.88225716,0.73998356,1.1046054,408,train,1.1046054\n6.44673,-1.1240491,0.32659867,-0.8750608,-2.6829815,-1.7907788,1.0414639,1.835073,943,train,1.835073\n0.52962416,-0.6406989,0.1353558,3.2768426,-1.5817962,-1.211874,1.0398072,1.4370077,789,train,1.4370077\n-0.55316633,0.68791944,-0.4236433,3.957857,2.5942745,-1.2816343,0.6092427,1.2026489,2193,train,1.2026489\n-3.301789,0.22503443,-0.09332345,2.1338089,1.6052318,-0.23481502,1.2913218,1.1212137,1511,train,1.1212137\n-0.926399,0.5780846,-0.4115337,3.1905754,2.2104876,-0.94174004,0.84446836,1.4443479,2081,train,1.4443479\n0.32131866,-0.6377876,0.13258712,3.228818,-1.6668029,-0.80136645,1.0545547,1.2601031,39,train,1.2601031\n-2.052013,-0.24782234,0.015899165,3.0187967,-0.29774418,-0.24693756,1.2106788,1.2996454,15,train,1.2996454\n-3.4505687,0.24899134,-0.10178474,2.25662,1.53,-0.20595357,1.3328388,1.2540778,1227,train,1.2540778\n-1.8043987,0.19784334,-0.15344869,1.583682,1.8662262,-0.40581658,1.0777999,1.219274,1734,train,1.219274\n-0.3054221,0.6984861,-0.4364556,3.7437096,2.674048,-1.298962,0.6305519,1.1523678,2177,train,1.1523678\n4.4074135,-0.25404736,-0.21370605,-0.6182646,1.3067743,-1.2586442,0.6567311,1.4373641,2219,train,1.4373641\n-1.8564855,0.4061229,-0.32760778,2.8369234,1.6050553,-0.38725293,1.0165365,1.2135,1835,train,1.2135\n1.8421069,-0.75553906,0.15707013,2.4932563,-1.8363894,-1.2803034,1.0042189,1.5616369,1131,train,1.5616369\n6.42526,0.7292235,-0.5264093,-1.552195,3.3466935,-2.7646706,0.4950705,0.8237866,2356,train,0.8237866\n-0.21754187,0.64564395,-0.39871076,3.666753,2.540925,-1.3969672,0.55883956,1.076093,402,train,1.076093\n-0.2887244,0.69589335,-0.43513834,3.7398114,2.6722074,-1.3041629,0.6260372,1.3893917,2180,train,1.3893917\n9.314516,-1.381454,0.4492202,-3.9963822,-3.3134139,-1.4152992,1.205485,1.4283981,147,train,1.4283981\n-2.4483314,-0.27776167,0.046778273,3.4297724,-0.13799244,-0.73680526,1.1790211,1.3231455,2839,train,1.3231455\n1.0719008,-0.20683105,-0.14709046,1.1035855,0.27824113,-0.7763122,0.8320748,1.3171347,1010,train,1.3171347\n-1.9276694,-0.3789463,0.10147782,3.856009,-0.8886493,-0.81182075,1.1015983,1.3984365,2847,train,1.3984365\n8.86476,-1.328257,0.42644325,-3.7170322,-3.2242706,-1.3273305,1.1953838,1.3626366,161,train,1.3626366\n-0.60466695,0.6895446,-0.43067926,3.7884026,2.5129783,-1.1223626,0.6838717,1.3666923,2181,train,1.3666923\n6.537359,0.74485505,-0.5392959,-1.6730316,3.4157271,-2.8229632,0.4934517,0.98164666,2341,train,0.98164666\n-2.307274,0.26201072,-0.20082629,2.0561848,1.2672485,-0.051260203,1.3128563,1.2540911,1375,train,1.2540911\n-0.8280415,-0.46016616,0.061972067,3.292599,-1.1793631,-0.25451544,1.0590516,1.5325551,203,train,1.5325551\n-0.047416467,0.24717641,-0.24401602,1.4281119,2.1540043,-0.82548887,0.764389,1.0896034,1894,train,1.0896034\n1.6269565,-0.73738456,0.15311217,2.6273625,-1.7915357,-1.2442963,1.0046633,1.5042317,2704,train,1.5042317\n-2.1885984,0.35668865,-0.27002624,2.4459393,1.601154,-0.22725336,1.1294506,1.3008358,644,train,1.3008358\n6.580935,0.6936855,-0.51729316,-1.7262983,3.2337477,-2.722365,0.5092592,1.5777935,411,train,1.5777935\n2.4402251,-0.81133914,0.19254813,1.8366965,-2.0155065,-1.2077336,1.0559026,1.6231639,758,train,1.6231639\n2.7060559,-0.20463581,-0.1638372,-0.10457654,1.4699929,-1.1256187,0.7545442,1.2817142,1951,train,1.2817142\n2.2846134,0.8476696,-0.57039976,1.1817123,3.7211366,-2.0253687,0.6499025,0.71949744,2594,train,0.71949744\n-2.5247736,0.22325937,-0.1270759,1.7830493,1.7834494,-0.29491183,1.1975971,1.1151493,648,train,1.1151493\n-1.8063549,-0.035968345,-0.084564164,1.5527828,1.3348159,-0.4645289,1.1086375,1.0766879,1221,train,1.0766879\n8.14471,1.177412,-0.74014306,-5.3586783,5.1328173,-3.0468576,0.70516086,1.5277884,2461,train,1.5277884\n2.6570532,-0.6762176,0.088995904,2.5395377,-2.2366116,-1.1048877,0.73510027,1.2346944,162,train,1.2346944\n3.0869777,-0.8654143,0.2147929,1.6575614,-2.0996184,-1.4535531,1.0043768,1.7192082,851,train,1.7192082\n-1.3351125,-0.2751523,-0.010135003,2.7360673,-0.44025987,-0.058217697,1.1677632,1.3547773,31,train,1.3547773\n-3.5059285,0.13298751,-0.06640381,2.1641521,1.2572136,-0.30639628,1.3734502,1.2963907,2717,train,1.2963907\n-0.44454953,-0.07459003,-0.08975493,0.8060187,1.2922263,-0.8620274,1.0045273,1.0923697,1195,train,1.0923697\n1.5537262,-0.102129355,-0.16381292,0.5012585,0.63165426,-0.94456244,0.784838,1.0955333,1891,train,1.0955333\n-2.3002558,0.13463898,-0.15360406,2.1865947,1.015505,-0.26815328,1.3113395,1.3272501,1454,train,1.3272501\n8.589036,-1.2746006,0.40328723,-3.6961634,-3.145813,-1.1998252,1.190251,0.67292094,49,train,0.67292094\n-1.0287303,-0.12972476,-0.07956653,1.5679389,0.99092096,-0.50069886,1.0125139,1.0361693,2762,train,1.0361693\n4.970632,-0.8448195,0.24528329,-0.9267521,-2.3758552,-1.1853577,1.0938313,1.2186399,1092,train,1.2186399\n1.5207855,-0.24122877,-0.14032003,1.2247549,-0.02640527,-0.8088164,0.7623144,1.2238114,1069,train,1.2238114\n-2.1712303,-0.02001593,-0.08230269,1.8793857,1.2901919,-0.34654865,1.1065253,1.1765944,527,train,1.1765944\n2.2717915,-0.21493275,-0.16080981,0.9666901,-0.14544955,-1.0337422,0.69835913,1.0639045,2619,train,1.0639045\n4.5200596,0.5706726,-0.41419306,0.22480778,2.7420182,-2.374193,0.44761872,1.2218306,2303,train,1.2218306\n-1.8533597,0.2674592,-0.18816537,1.7656422,1.9593372,-0.42455813,1.0657902,1.2728286,612,train,1.2728286\n0.17709842,-0.44588885,-0.007879046,2.8581102,-0.78304416,-0.454189,0.7954576,1.1897161,875,train,1.1897161\n-2.0440605,0.014810884,-0.083440684,1.4978821,1.4217231,-0.42757136,1.1471499,1.1821747,1356,train,1.1821747\n3.7922266,-0.8653084,0.20633683,0.42868626,-2.20851,-0.927038,1.0571694,1.762688,1038,train,1.762688\n0.17670286,-0.103820354,-0.10184026,0.79638153,1.134162,-1.0357876,0.91293734,1.0743991,1205,train,1.0743991\n4.616508,-0.25125885,-0.22562402,-0.7189122,1.3282185,-1.2355855,0.6465212,1.1253171,656,train,1.1253171\n-2.154352,0.34979123,-0.27424237,2.4820728,1.5680407,-0.2041207,1.1301283,1.1395547,630,train,1.1395547\n-2.0038972,0.18222097,-0.14837493,1.7703023,1.7945292,-0.42148107,1.0627426,1.1627597,1773,train,1.1627597\n-2.6879704,0.21579245,-0.11743482,1.8454264,1.756107,-0.27116808,1.2138591,1.0333323,2633,train,1.0333323\n-3.3923042,0.21075723,-0.086564474,2.1893053,1.5503842,-0.23835276,1.2973942,1.0611113,1211,train,1.0611113\n3.2646818,-0.21400651,-0.17374723,-0.1913967,1.3729262,-1.2502319,0.709242,1.3446199,1987,train,1.3446199\n-2.2557807,0.27964836,-0.21610922,2.0848658,1.2979776,-0.04226294,1.301259,1.4751316,1530,train,1.4751316\n5.329804,-1.0208286,0.28275216,0.034766674,-2.4417057,-1.7351811,1.0175294,1.9780247,962,train,1.9780247\n-2.8711076,-0.15395759,0.008220623,2.9405801,0.3239372,-0.5305597,1.316286,1.1580414,1161,train,1.1580414\n-3.207016,-0.08467545,-0.0156120295,2.680968,0.7247886,-0.51715004,1.3303059,1.2786772,742,train,1.2786772\n5.2716694,-1.0250046,0.29193896,-0.16285461,-2.5013018,-1.5992182,1.0757784,1.8382826,1029,train,1.8382826\n6.435533,-1.1565311,0.24583901,-0.36759943,-3.2040257,-1.493899,0.8037301,0.87501013,1076,train,0.87501013\n-0.28402847,-0.5635238,0.1264999,3.6784682,-1.3981881,-1.1530906,1.0455768,1.3744783,1790,train,1.3744783\n-0.7522849,-0.17261043,-0.07184362,1.6610111,0.790549,-0.484911,0.96740574,1.0206817,1239,train,1.0206817\n-0.70035005,-0.53110486,0.120175734,3.6851876,-1.3878194,-0.85354793,1.0911846,1.4721998,794,train,1.4721998\n-1.8054861,0.27282465,-0.23723611,1.793549,1.1714479,0.061273098,1.3281484,1.3336302,1527,train,1.3336302\n1.3404444,-0.18425377,-0.10988456,0.39446598,1.4078896,-1.0762752,0.8170995,1.0579789,1864,train,1.0579789\n1.1847624,-0.13117674,-0.16297244,0.6309054,0.5698078,-0.84027034,0.83427817,0.95938617,1115,train,0.95938617\n0.4813171,-0.65851784,0.14344911,3.276582,-1.6911315,-1.009505,1.0451953,1.2801898,105,train,1.2801898\n6.798173,0.7518871,-0.55156153,-2.0038838,3.4768355,-2.8501012,0.5090081,1.6153541,2336,train,1.6153541\n1.3575045,0.80101585,-0.539324,2.187378,3.4543872,-1.7265785,0.67473537,1.4251287,2375,train,1.4251287\n4.0834374,-0.93836915,0.2474538,0.98379695,-2.2596128,-1.591857,1.0060213,1.7090619,828,train,1.7090619\n-2.3212924,0.17760077,-0.16253377,2.0878356,1.1165886,-0.23062554,1.3191737,1.3284087,684,train,1.3284087\n1.3241259,-0.6978595,0.13969609,2.707623,-1.6838146,-1.2275845,1.0264872,1.6120427,809,train,1.6120427\n3.5531685,0.44452086,-0.36089838,0.87037694,2.3088565,-2.3780003,0.34639075,1.1100838,376,train,1.1100838\n3.5903096,-0.2311911,-0.14398536,0.7328167,-1.0465381,-1.234406,0.6108025,0.7023824,1088,train,0.7023824\n9.013151,1.3492745,-0.7972328,-7.50217,5.4122286,-2.7988312,0.7961697,0.5142146,2482,train,0.5142146\n-1.8853512,-0.03232089,-0.08574119,1.615618,1.342287,-0.42474297,1.1061598,1.1473712,443,train,1.1473712\n6.2400465,0.811327,-0.57150257,-1.5169842,3.7236595,-2.8032796,0.5330536,1.0913144,433,train,1.0913144\n1.9690648,-0.08698163,-0.17625684,0.54310954,0.4653742,-1.0693307,0.711679,1.163459,2753,train,1.163459\n0.12035386,-0.14602527,-0.08199501,0.7846901,1.3069254,-0.93553525,0.9146092,0.9408643,1250,train,0.9408643\n-1.5883006,0.5733075,-0.37745714,3.4721594,2.1318634,-0.9101694,0.81551474,0.8100302,2025,train,0.8100302\n-1.3244357,0.530275,-0.37860772,2.903876,2.053374,-0.7281346,0.9040566,1.1684006,1963,train,1.1684006\n-0.8611429,-0.28511548,-0.004776149,2.633702,-0.7228002,-0.2114694,1.2013972,1.2896116,2778,train,1.2896116\n6.8503575,-0.018957032,-0.33902344,-2.5320103,1.1171783,-1.3234426,0.5941196,1.4426546,2510,train,1.4426546\n-1.9638473,0.3673808,-0.290918,2.4287057,1.5785933,-0.2521738,1.1130334,1.2112597,1813,train,1.2112597\n1.2285438,-0.5421995,0.019502988,3.0358226,-1.5250205,-0.65992814,0.71861553,1.3883638,829,train,1.3883638\n-0.49434426,-0.54916453,0.115940884,3.6148357,-1.4610034,-0.77788836,1.0768108,1.3815335,48,train,1.3815335\n-0.08287103,0.7133176,-0.45099208,3.5998538,2.7556343,-1.3475102,0.6380214,1.3918351,2202,train,1.3918351\n5.625798,0.5629623,-0.43571684,-2.5444496,2.2821066,-2.5846736,0.63684344,1.3534373,2505,train,1.3534373\n7.371793,-1.2590181,0.3058964,-1.1475278,-3.1904895,-1.6210959,0.8920331,0.6134067,138,train,0.6134067\n-0.26665398,-0.102980636,-0.08558097,0.8056891,1.2703626,-0.8877223,0.9783019,1.0444494,1492,train,1.0444494\n-0.114720345,-0.0773199,-0.10457086,0.74164593,1.2225406,-0.9367899,0.9579405,1.0334426,2719,train,1.0334426\n-3.2899141,-0.06398672,-0.023359818,2.6622345,0.8163248,-0.4810246,1.3227538,1.3547363,2831,train,1.3547363\n-3.4298894,0.15573046,-0.092065,2.2692137,1.239415,-0.28850803,1.391373,1.2361016,469,train,1.2361016\n-1.7673465,0.27532905,-0.24097884,1.7737999,1.1675866,0.07284047,1.3302022,1.3653936,773,train,1.3653936\n-2.3018289,0.25870496,-0.19886164,2.0317848,1.2633421,-0.051803775,1.3176223,1.3085024,1581,train,1.3085024\n5.519026,-0.23165983,-0.27239022,-1.1037632,1.232272,-1.2387072,0.5961061,1.0810695,2423,train,1.0810695\n-1.127837,0.432353,-0.36926678,2.4987376,1.6098424,-0.36308855,1.0231774,1.2366377,1895,train,1.2366377\n-3.5037339,0.16161881,-0.078457296,2.187559,1.3242927,-0.29763585,1.3781105,1.3632005,1192,train,1.3632005\n-0.3826952,-0.5664504,0.12046102,3.6201353,-1.4921181,-0.84793544,1.0755574,1.6388769,255,train,1.6388769\n-1.6586511,0.48670593,-0.35223562,2.7995808,1.8751423,-0.5500245,0.96671706,1.227701,2009,train,1.227701\n-3.4294095,0.14155504,-0.08947552,2.2929409,1.2029766,-0.30517986,1.3943195,1.3936166,530,train,1.3936166\n2.619631,-0.24072653,-0.16131215,1.0087802,-0.41059545,-1.076361,0.6660755,1.2919027,908,train,1.2919027\n0.51592517,-0.13817874,-0.09876473,0.8307899,1.0859035,-1.1233222,0.8620282,1.1421692,1389,train,1.1421692\n-3.3752816,0.22061992,-0.08967033,2.1785536,1.5731685,-0.24122922,1.3011853,1.2461956,776,train,1.2461956\n1.8957036,-0.16410494,-0.16470616,0.7592459,0.17345795,-0.9703595,0.75555295,1.0581222,849,train,1.0581222\n-1.8884281,0.20614865,-0.15120214,1.5821049,1.8747107,-0.38773668,1.103255,1.0498928,1783,train,1.0498928\n0.69686395,0.74519527,-0.48707047,3.0889547,3.0806184,-1.6163926,0.6051238,1.0761194,2350,train,1.0761194\n8.25015,0.8939555,-0.56597596,-5.8354974,3.129417,-2.9025893,0.7204366,1.1181593,427,train,1.1181593\n0.90553814,-0.4183134,-0.03108602,2.3804011,-0.7781493,-0.53040755,0.76683056,1.2843498,767,train,1.2843498\n-3.0498714,0.22624336,-0.106650025,2.0274405,1.6596946,-0.23510958,1.2616006,1.2177405,1301,train,1.2177405\n0.28063577,0.20709425,-0.21532707,1.250559,1.9517779,-1.0414227,0.745591,0.9290677,1980,train,0.9290677\n-3.5032117,0.13449964,-0.06607713,2.1697795,1.2623568,-0.304457,1.3684801,1.219234,336,train,1.219234\n-1.4725596,-0.11039633,-0.087025516,2.2288196,0.22215569,-0.21703996,1.2568939,1.2985967,1169,train,1.2985967\n1.0504268,-0.086823985,-0.15609759,0.5347931,0.8552901,-0.9395515,0.8322888,1.1093541,2821,train,1.1093541\n-3.2199688,0.101972915,-0.069929175,2.2159593,1.4167641,-0.2871803,1.2297719,1.2501926,673,train,1.2501926\n0.46366426,-0.3336314,-0.05625343,2.0983841,-0.2840237,-0.4751293,0.80897176,1.2412474,252,train,1.2412474\n-1.7357129,-0.028135667,-0.08535254,1.4725217,1.331887,-0.47372958,1.1097076,1.1786046,1190,train,1.1786046\n2.406605,0.54561865,-0.39034775,1.8392619,2.687979,-1.9257845,0.4363877,1.1086282,543,train,1.1086282\n1.0449582,0.35297817,-0.30081153,1.463147,2.3029134,-1.2506088,0.586157,0.8660711,1914,train,0.8660711\n-1.68389,0.5014304,-0.34901863,2.7443454,1.9731772,-0.6041949,0.9519479,1.1850612,2658,train,1.1850612\n5.8611403,-1.0772268,0.32187766,-0.7268928,-2.6310995,-1.6121722,1.0939301,1.3430079,1093,train,1.3430079\n4.564152,1.0139483,-0.69985867,-1.7415999,4.5098305,-1.7998139,0.7358249,1.231633,2528,train,1.231633\n1.284308,0.37401906,-0.3031238,1.5849701,2.0667949,-1.888003,0.4666302,1.1138079,401,train,1.1138079\n7.6941624,0.24960983,-0.36749396,-4.5139728,1.3157331,-1.7581339,0.6488558,0.7836414,2464,train,0.7836414\n-0.28252575,0.6436911,-0.39632174,3.6690423,2.5242767,-1.3774371,0.56454086,0.96256924,560,train,0.96256924\n-3.2159986,0.22698592,-0.097659014,2.0835254,1.6366364,-0.2266148,1.2806312,1.2578968,1545,train,1.2578968\n-0.78759795,-0.16445132,-0.07546676,1.6575792,0.8250049,-0.4950089,0.9730148,1.093573,2827,train,1.093573\n-2.2523541,0.16495831,-0.16338757,2.1057854,1.0767837,-0.23907322,1.3132266,1.3083808,343,train,1.3083808\n-2.2655354,0.045628298,-0.08480859,1.6514606,1.4720265,-0.39473444,1.1495194,1.1634164,1394,train,1.1634164\n2.6050153,0.8535998,-0.57496417,1.0225875,3.7266977,-2.1203542,0.6339722,1.6966357,2687,train,1.6966357\n-0.89923483,-0.5040771,0.11195249,3.7410226,-1.3520993,-0.7303284,1.0837926,1.6525071,202,train,1.6525071\n-1.7445152,0.24587463,-0.22106582,1.7115108,1.0838288,0.015551318,1.3427577,1.4995329,1260,train,1.4995329\n2.664978,-0.72855085,0.16349384,0.9471003,-2.0347624,-0.74022126,1.0540441,1.4460019,865,train,1.4460019\n-2.1000302,0.28567046,-0.23969567,2.1763208,1.3014238,-0.04986562,1.257196,1.2094264,1695,train,1.2094264\n6.682861,0.76549023,-0.55366296,-1.9305493,3.5324793,-2.8157241,0.52438277,1.3754846,2591,train,1.3754846\n2.043286,0.41014013,-0.32896572,1.5304707,2.4347668,-1.5917729,0.45138165,1.1878251,2098,train,1.1878251\n-1.0624497,-0.0081262,-0.092300914,0.8345122,1.5769309,-0.5734509,1.0952982,1.072239,603,train,1.072239\n-1.6988182,-0.06833477,-0.08259295,1.6694745,1.2360324,-0.42214045,1.0741318,1.1308718,1331,train,1.1308718\n-0.6752225,-0.0573635,-0.08751567,0.7956718,1.3366256,-0.7949792,1.0449494,1.0299425,1580,train,1.0299425\n-2.5562654,-0.21407263,0.027529953,3.0954273,-0.06269659,-0.44136035,1.2611796,1.3478129,75,train,1.3478129\n-0.44251505,-0.07691059,-0.08900899,0.81048566,1.2959088,-0.8613899,1.0033541,0.9858375,770,train,0.9858375\n-2.1204612,0.1196411,-0.16055816,2.1532629,0.9585876,-0.26468757,1.3029368,1.3512332,525,train,1.3512332\n2.4011219,-0.083743006,-0.1896261,0.5507326,0.14423186,-1.089672,0.68039685,1.0900447,781,train,1.0900447\n0.60133356,-0.49361613,0.011791034,3.0065014,-1.1807387,-0.53877443,0.7441897,0.9496279,2621,train,0.9496279\n10.022561,-1.4332539,0.4609576,-4.0715833,-3.421207,-1.8734647,1.1436712,1.1088525,141,train,1.1088525\n3.493712,0.9344381,-0.64566076,-0.38633814,4.1471763,-1.8360347,0.7159178,1.4463589,2494,train,1.4463589\n0.09380938,-0.20476559,-0.09745153,1.4079924,0.49430898,-0.5782051,0.9106824,1.1998317,0,train,1.1998317\n2.3716168,-0.70174575,0.085876204,2.5888774,-2.0912588,-0.9598482,0.7859063,1.4898152,1094,train,1.4898152\n6.946027,0.77114147,-0.56383365,-2.1685758,3.5976338,-2.893066,0.5022586,0.9287269,432,train,0.9287269\n-2.3457994,-0.29124433,0.06479486,3.485188,-0.51717395,-0.47769123,1.1921407,1.3304752,45,train,1.3304752\n1.7562019,-0.74129885,0.14984478,2.5077646,-1.788,-1.2601033,1.0077596,1.5784571,1140,train,1.5784571\n-2.0516944,0.35960427,-0.27462786,2.312071,1.5552262,-0.20622563,1.1519003,1.2415928,1822,train,1.2415928\n-1.5659918,0.4749393,-0.34830695,2.5692086,1.8508202,-0.5068136,0.99914944,1.3119243,1876,train,1.3119243\n-2.1717706,0.05649981,-0.08460903,1.4650612,1.5135823,-0.42949468,1.1703346,1.0376372,1520,train,1.0376372\n4.686122,-0.24609189,-0.2288147,-0.7549675,1.308009,-1.2305793,0.6523055,1.3363698,1837,train,1.3363698\n0.29125875,0.14854626,-0.19498044,0.8837786,1.9401027,-0.9274513,0.831024,1.3008486,1292,train,1.3008486\n-1.831772,0.47412097,-0.34100986,2.8768313,1.82569,-0.5175673,0.9694637,1.1658105,1896,train,1.1658105\n-0.6141095,-0.071683824,-0.08481966,0.7748929,1.3430243,-0.7785456,1.0405223,1.0461568,1496,train,1.0461568\n3.6359262,-0.90406084,0.24232848,1.0786881,-2.2443855,-1.3992333,1.0481802,1.295441,824,train,1.295441\n-2.4822931,-0.24737562,0.044562478,3.2738345,-0.27802846,-0.44465172,1.2321088,1.323388,97,train,1.323388\n-1.2615974,0.5468283,-0.3861396,3.0514116,2.1206887,-0.8282961,0.8665301,1.1617295,1006,train,1.1617295\n-3.5290797,0.23742683,-0.09873575,2.3170094,1.4723878,-0.21355532,1.3467283,1.2785264,1349,train,1.2785264\n2.043286,0.41014013,-0.32896572,1.5304707,2.4347668,-1.5917729,0.45138165,0.90753615,2090,train,0.90753615\n-0.08986328,-0.5778906,0.08007689,3.683376,-1.3573827,-0.8417191,0.8789836,1.3161317,191,train,1.3161317\n-2.1797702,0.05448173,-0.1393938,2.1708798,0.83973956,-0.3192569,1.3185421,1.2773633,329,train,1.2773633\n-1.1974642,0.5934466,-0.39730263,3.3386393,2.2894976,-0.9973484,0.79634094,1.293729,1295,train,1.293729\n-0.45929188,0.16843858,-0.17263152,1.4002193,1.8859048,-0.88970596,0.82570934,0.9440539,1932,train,0.9440539\n-0.65166223,-0.062140137,-0.08626577,0.77523947,1.3358024,-0.788836,1.0467354,1.0460815,1481,train,1.0460815\n-2.2076123,0.11777552,-0.15373892,2.167678,0.9723627,-0.276087,1.3080348,1.2903057,461,train,1.2903057\n0.34335068,-0.6033267,0.10531702,2.9549603,-1.615062,-0.53233445,1.0538218,1.3780044,263,train,1.3780044\n-0.44558248,0.6335522,-0.4313201,3.3071396,2.2827528,-0.9667541,0.8175885,1.7761514,2240,train,1.7761514\n-0.87320155,0.2027998,-0.17082518,1.8239133,1.8307977,-0.94320637,0.804023,1.0343182,2007,train,1.0343182\n0.1702668,0.2608839,-0.25322032,1.1441594,2.1895761,-0.75660694,0.8133274,1.1193808,1867,train,1.1193808\n-0.3112339,0.21147737,-0.22383073,1.3444513,2.109293,-0.7205535,0.8322982,1.1403131,1861,train,1.1403131\n2.1445796,0.573042,-0.39879057,2.0745597,2.7178583,-1.9117408,0.45055923,0.8929126,536,train,0.8929126\n-3.3425999,-0.0031051866,-0.040508732,2.4658015,0.97801006,-0.43306312,1.3370914,1.2967654,449,train,1.2967654\n3.5904653,-0.2276356,-0.18622044,-0.36554205,1.3847113,-1.2382623,0.70010203,0.95213085,2234,train,0.95213085\n3.239733,0.9067655,-0.6185789,0.22846626,3.9847727,-2.0354412,0.6751116,1.4088532,2507,train,1.4088532\n2.2075047,-0.29880443,-0.12980211,1.2675315,-0.46223524,-0.8892306,0.6904799,1.2854793,898,train,1.2854793\n2.3336172,-0.75595117,0.1369735,1.5960652,-1.9438989,-0.5973015,1.0048506,1.6271486,911,train,1.6271486\n0.5512768,-0.63318205,0.13227434,3.0348058,-1.5932711,-1.0538067,1.0758747,1.5485485,802,train,1.5485485\n3.0020516,-0.7253945,0.107041985,2.3629065,-2.3784447,-1.1845714,0.728162,0.8631842,136,train,0.8631842\n-1.3199947,-0.004490111,-0.10149896,0.94506335,1.3779819,-0.5908273,1.1259719,1.1636589,685,train,1.1636589\n-2.2712104,0.35439262,-0.26493344,2.5024707,1.6192364,-0.2378377,1.1225706,1.1868724,1755,train,1.1868724\n-1.3377343,0.54058117,-0.39040792,3.3626802,2.024674,-0.84579414,0.8580725,1.1567309,1933,train,1.1567309\n-1.882347,-0.004916586,-0.13489842,2.1342876,0.64920914,-0.29192916,1.3038301,1.3287519,736,train,1.3287519\n2.2474887,-0.21698117,-0.1577381,0.9478321,-0.13930689,-1.0248469,0.7059982,1.0379786,2771,train,1.0379786\n1.796413,-0.09442141,-0.17882891,0.51121205,0.5005248,-0.97472364,0.75820124,1.2062563,2855,train,1.2062563\n3.817615,-0.92815393,0.24505374,1.1523378,-2.245121,-1.5425165,1.0062037,1.1170276,2616,train,1.1170276\n2.1152592,0.8352609,-0.5671242,1.4346459,3.6601985,-1.9819846,0.66306716,1.3266125,2387,train,1.3266125\n0.43288168,0.76058096,-0.49267644,3.0214987,3.029939,-1.3875171,0.67469907,1.5984693,2352,train,1.5984693\n0.9029502,-0.47870165,-0.005120108,2.8230615,-1.0878763,-0.58006525,0.7357423,1.4132228,2869,train,1.4132228\n0.43315485,0.7205023,-0.46945655,3.2763221,2.900348,-1.4448016,0.6251108,1.3325076,2214,train,1.3325076\n-0.21311569,0.69379854,-0.43710065,3.5836883,2.6807232,-1.2701018,0.64882815,1.6006701,1841,train,1.6006701\n11.733719,-1.5449597,0.47327557,-5.717217,-3.6744347,-1.9078091,1.1563214,1.1007235,590,train,1.1007235\n-1.9892472,0.33204377,-0.27375165,2.2893252,1.4306581,-0.1063075,1.1890554,1.1689013,1784,train,1.1689013\n0.41042185,-0.46545827,-0.0078004813,2.80703,-0.84766585,-0.48717895,0.7887309,1.2208235,2703,train,1.2208235\n-2.0247664,0.21024302,-0.14617231,1.6108112,1.8672991,-0.36592352,1.1284881,1.1311885,1769,train,1.1311885\n-2.1782587,0.060787253,-0.08563922,1.4640967,1.5260007,-0.4272415,1.1687328,1.0469561,1489,train,1.0469561\n-1.4558004,0.5016719,-0.35949963,2.588032,1.9779092,-0.58949375,0.96526814,1.215862,2116,train,1.215862\n-1.9723573,-0.3716801,0.09973049,3.8382907,-0.8638671,-0.78959244,1.1103324,1.2628582,5,train,1.2628582\n-3.4491394,0.25414434,-0.105138086,2.2616813,1.5203824,-0.19471872,1.3382133,1.2155392,1212,train,1.2155392\n1.4631081,-0.16119878,-0.12425595,0.1794151,1.508045,-0.99297774,0.85899395,1.3210403,2062,train,1.3210403\n-3.210888,0.22927137,-0.09835691,2.0853643,1.6374372,-0.22630963,1.2809275,1.1652586,1569,train,1.1652586\n-0.042272907,0.64710903,-0.4061429,3.6183693,2.5739186,-1.4433781,0.5523312,1.0342464,361,train,1.0342464\n-3.4454694,0.086127646,-0.059242576,2.2117252,1.1625203,-0.3473961,1.3673216,1.3136605,1452,train,1.3136605\n-3.463353,0.11914183,-0.07447415,2.2016907,1.2015138,-0.33377004,1.3988142,1.2095923,713,train,1.2095923\n-1.9965272,-0.029928472,-0.08468491,1.7857045,1.2930622,-0.36787453,1.0946033,1.1552817,476,train,1.1552817\n0.37244606,0.2591405,-0.25901395,1.3218154,2.1775806,-0.91367906,0.72175515,0.9472874,2010,train,0.9472874\n2.3952572,-0.8040806,0.17747484,2.1036396,-1.9609314,-1.3538276,1.0121996,1.6023097,2568,train,1.6023097\n-2.1118498,0.35596073,-0.27943194,2.485199,1.5813904,-0.2245555,1.1201193,1.155609,647,train,1.155609\n0.82190174,-0.20686196,-0.12832598,1.177211,0.2927213,-0.7131208,0.84809446,1.1267653,205,train,1.1267653\n0.6745251,-0.07793303,-0.13509221,0.58989525,1.0059749,-0.9948803,0.8685036,1.0793197,1235,train,1.0793197\n1.3108336,-0.55126697,0.018144203,3.0337417,-1.5237348,-0.6853311,0.71984595,1.3951999,1548,train,1.3951999\n-1.4184198,0.3636469,-0.3212386,2.1604218,1.4051136,-0.14900789,1.149751,1.2711532,1806,train,1.2711532\n9.999888,-1.4282072,0.44977367,-4.002782,-3.4119222,-1.9071434,1.126722,0.89111084,20,train,0.89111084\n-0.9580592,0.14697106,-0.14686167,1.387295,1.8276727,-0.738978,0.95145875,1.2371216,2104,train,1.2371216\n5.30258,-1.0337102,0.30043286,-0.23766528,-2.5263677,-1.5963684,1.0744442,1.2357683,905,train,1.2357683\n3.292555,0.4175428,-0.34811553,0.91833204,2.2505155,-2.3685057,0.3480296,0.6121979,372,train,0.6121979\n-1.4628035,-0.10029931,-0.08034673,1.8327004,1.0650458,-0.4180952,1.0289004,1.1396848,322,train,1.1396848\n0.6801122,-0.27842677,-0.09105197,1.7299241,-0.10187006,-0.5384244,0.81882226,1.1470078,42,train,1.1470078\n3.9436908,-0.8880051,0.15379472,1.8095673,-2.7102232,-1.2979113,0.73663574,0.9934944,117,train,0.9934944\n6.7247586,-0.05356548,-0.33185145,-2.2905397,1.127222,-1.3527112,0.5738499,0.9396324,2415,train,0.9396324\n5.0009756,0.6271604,-0.4323961,0.0070415717,2.8053262,-2.6157384,0.42957625,0.8067086,2467,train,0.8067086\n1.6961987,-0.095199816,-0.1764709,0.5133137,0.52553296,-0.9520131,0.77169967,1.1380656,2851,train,1.1380656\n1.729662,0.5662211,-0.3896388,2.3394244,2.6859922,-1.8273033,0.45078447,1.2920687,399,train,1.2920687\n-1.9490018,-0.009193153,-0.08258935,1.5031205,1.3801636,-0.42021838,1.1309508,1.0538306,1434,train,1.0538306\n-0.96797657,-0.49561244,0.12378014,3.693507,-1.2689271,-0.9419503,1.0941907,1.440428,1132,train,1.440428\n7.9421206,0.4298515,-0.3870564,-5.903748,1.5918952,-1.8728826,0.7974255,1.1997018,2536,train,1.1997018\n3.082791,0.53545433,-0.38674772,1.3396946,2.6495256,-2.0584905,0.4232911,1.0424966,382,train,1.0424966\n2.7885067,0.86541075,-0.584415,0.8461838,3.775569,-2.131095,0.6361124,1.1545736,2410,train,1.1545736\n2.043286,0.41014013,-0.32896572,1.5304707,2.4347668,-1.5917729,0.45138165,0.91802907,2093,train,0.91802907\n-3.4106042,0.027171653,-0.046282586,2.3759563,0.9863235,-0.4185085,1.3913037,1.2012906,319,train,1.2012906\n-0.4490392,-0.5454976,0.12460634,3.6230445,-1.3229308,-1.1000682,1.0504925,1.481849,795,train,1.481849\n0.6847052,-0.0919609,-0.15006945,0.5311845,0.90577036,-0.83753806,0.89501864,1.0973594,2746,train,1.0973594\n-3.4532638,0.06581055,-0.05973548,2.2937636,1.0979153,-0.3744493,1.3905643,1.3458534,593,train,1.3458534\n-1.1293389,0.675253,-0.41382545,4.13852,2.418885,-1.1294922,0.6508567,0.7169273,2577,train,0.7169273\n-0.35354006,-0.5355044,0.09958323,3.3745043,-1.4737449,-0.5520292,1.068974,1.3223524,313,train,1.3223524\n-1.5464232,-0.063213356,-0.083828926,1.497721,1.253249,-0.4731453,1.0794785,1.1344352,1332,train,1.1344352\n1.3524396,0.80643684,-0.54294556,2.1799808,3.4945462,-1.7933488,0.6628958,0.9531734,2337,train,0.9531734\n2.3876166,-0.19158939,-0.15208156,-0.0048145223,1.4591302,-1.116596,0.7784258,1.1804991,2074,train,1.1804991\n7.703316,0.3772511,-0.35929576,-5.2643604,1.4459699,-2.017268,0.7032975,1.044524,2514,train,1.044524\n-0.5288423,0.13270645,-0.15557802,1.2223301,1.8495448,-0.80830795,0.8891064,1.0156144,1940,train,1.0156144\n-2.1619318,0.052688032,-0.084229685,1.4625585,1.4984621,-0.42837408,1.1687506,1.0370796,1372,train,1.0370796\n-1.7951111,0.2146002,-0.15652917,1.5186461,1.9140165,-0.3851917,1.1073581,1.206058,1288,train,1.206058\n-0.8754382,0.19501607,-0.19795299,1.4608115,2.0558922,-0.61370695,0.9102931,1.0110235,1844,train,1.0110235\n-2.0384114,0.29545394,-0.25610325,2.2884166,1.3396676,-0.065815695,1.2079575,1.2098105,2635,train,1.2098105\n0.17670286,-0.103820354,-0.10184026,0.79638153,1.134162,-1.0357876,0.91293734,1.0275534,1208,train,1.0275534\n6.668009,1.2179009,-0.7859029,-4.1725783,5.058851,-1.9578285,0.7095926,0.99302655,2534,train,0.99302655\n-0.44454953,-0.07459003,-0.08975493,0.8060187,1.2922263,-0.8620274,1.0045273,1.0513661,1196,train,1.0513661\n7.5009427,0.83752793,-0.60745,-3.025541,4.035569,-2.9213443,0.5319682,2.0451407,2506,train,2.0451407\n-1.897446,0.12951803,-0.1759105,2.081804,0.91573876,-0.2268265,1.2977464,1.2275559,1429,train,1.2275559\n3.1435597,-0.2089308,-0.17890553,-0.260148,1.4512961,-1.1429157,0.7309896,1.2329454,2151,train,1.2329454\n0.5530389,-0.2840679,-0.0823837,1.8175255,-0.095784225,-0.5143171,0.8239827,1.1583223,187,train,1.1583223\n-2.2930453,0.10947941,-0.10049244,1.8446714,1.7255223,-0.5000814,1.0773576,1.1075794,1242,train,1.1075794\n7.496028,0.15911934,-0.3696708,-3.8965635,1.1803191,-1.5198605,0.6541291,0.8937334,2549,train,0.8937334\n4.6011963,0.65810513,-0.44398993,0.21394925,2.9346802,-2.46327,0.48256874,1.4657156,658,train,1.4657156\n-1.2251174,0.6150274,-0.40033463,3.55964,2.345552,-1.0350537,0.7592149,1.4001304,2150,train,1.4001304\n2.0517232,-0.20244278,-0.13447283,0.14931162,1.4383699,-1.1266571,0.7799537,1.1559517,2663,train,1.1559517\n1.1965692,-0.18125463,-0.10703596,0.36699063,1.451524,-1.0174092,0.8422945,1.0948576,2642,train,1.0948576\n-3.1899474,-0.08349498,-0.012846887,2.7475355,0.6424981,-0.511168,1.3540449,1.2790406,2828,train,1.2790406\n-2.2438154,-0.33042312,0.057511654,3.7050076,-0.36218125,-0.78471446,1.1147233,1.1002953,2748,train,1.1002953\n-1.5066398,-0.08629515,-0.08054732,1.5891364,1.1894686,-0.45267048,1.0612334,1.0467066,1421,train,1.0467066\n-0.26288113,0.7030407,-0.4396879,3.75544,2.6966674,-1.3328295,0.62335455,1.2085116,563,train,1.2085116\n-1.7898824,0.097982936,-0.10421395,1.4032029,1.7409961,-0.5102933,1.0810566,1.1452309,1814,train,1.1452309\n0.13218361,-0.29348174,-0.06365535,2.0135202,0.04543989,-0.46724156,0.8523874,1.1875081,801,train,1.1875081\n-0.58443856,0.5596947,-0.41672698,2.8105626,2.1009727,-0.83855176,0.9092138,1.3264413,1984,train,1.3264413\n-1.3845884,-0.1871332,-0.05020306,2.4546225,-0.097358875,-0.11782034,1.2110661,1.3043284,74,train,1.3043284\n-3.5406842,0.14809072,-0.075895235,2.2092667,1.3069713,-0.29022112,1.3752584,1.1946722,1363,train,1.1946722\n-3.4606376,0.09600789,-0.060401905,2.1852176,1.1736121,-0.34330782,1.3767006,1.2185316,1442,train,1.2185316\n3.4255352,0.423711,-0.35191882,0.8342851,2.2631226,-2.414985,0.34968635,0.6609856,353,train,0.6609856\n3.118902,0.41269636,-0.3456304,1.0744541,2.2454352,-2.2749379,0.3427032,0.6569336,550,train,0.6569336\n-0.6610437,-0.06271849,-0.08644055,0.796915,1.3424166,-0.7889637,1.0426041,1.1154922,1561,train,1.1154922\n0.07726455,-0.14276487,-0.08326093,0.79901165,1.3306547,-0.9197005,0.92388654,1.0470719,1767,train,1.0470719\n-0.7912909,-0.45712683,0.058679126,3.252373,-1.176604,-0.23410673,1.0576401,1.3837309,215,train,1.3837309\n8.118794,-1.2880926,0.39708343,-2.3550422,-3.0549629,-1.8088434,1.080076,0.35161203,1112,train,0.35161203\n-1.2719678,0.5850154,-0.3967525,3.4650426,2.2203,-0.99320424,0.80006486,1.2375493,1996,train,1.2375493\n0.49678472,0.78555286,-0.5038914,2.5872574,3.0373905,-1.0940244,0.76783335,1.3239372,431,train,1.3239372\n-0.31551805,-0.10782917,-0.0829967,0.77635586,1.3360332,-0.8186854,0.98980445,1.0399963,1634,train,1.0399963\n8.057077,-1.293717,0.41635597,-2.494195,-3.0816545,-1.6661706,1.1335044,1.3296494,1041,train,1.3296494\n-0.016591968,0.70656425,-0.4467255,3.6739252,2.7716022,-1.4206445,0.59663236,1.1938312,578,train,1.1938312\n-1.5723013,-0.1364651,-0.06872452,2.3926308,0.122019246,-0.20753278,1.2399349,1.2649318,1628,train,1.2649318\n-1.7891307,0.1610597,-0.18662222,1.910378,0.97407037,-0.1862028,1.3104318,1.3425509,2723,train,1.3425509\n-2.0331755,0.34583357,-0.27163535,2.2722437,1.4795653,-0.1473502,1.1834174,1.1751308,1706,train,1.1751308\n-1.6383258,-0.008811106,-0.1385655,2.0317848,0.5763909,-0.24203,1.2991917,1.2674963,2819,train,1.2674963\n5.2919965,-1.0367557,0.30552888,-0.30611378,-2.5498142,-1.5432869,1.083677,1.1132649,834,train,1.1132649\n-2.2021883,-0.33786568,0.087857075,3.7425015,-0.7106262,-0.6896621,1.1463882,1.0887842,2846,train,1.0887842\n-0.57258546,0.7113289,-0.43727645,3.861249,2.546314,-1.1853232,0.67901057,1.3818011,2191,train,1.3818011\n0.53429633,0.7232381,-0.47050261,3.2418673,2.9141815,-1.4949212,0.6168984,1.4610045,2276,train,1.4610045\n-2.372946,0.2092211,-0.12919255,1.7390665,1.7816254,-0.3158512,1.1673967,1.163161,1655,train,1.163161\n-0.4425394,-0.075721584,-0.08914469,0.8042992,1.291947,-0.8622882,1.0052776,1.0581819,1226,train,1.0581819\n0.1756112,-0.11034172,-0.100015774,0.81278837,1.141406,-1.0414219,0.91214454,1.0649341,1399,train,1.0649341\n-2.2130077,0.25741708,-0.20686437,2.0180867,1.2550342,-0.053057432,1.3132749,1.5012187,1229,train,1.5012187\n2.3900487,-0.5373967,0.025837323,2.5007696,-2.079387,-1.0539705,0.731138,1.2128848,24,train,1.2128848\n0.79395074,0.74042606,-0.4843304,2.983313,3.052252,-1.5752071,0.6228257,1.1793144,2422,train,1.1793144\n2.5415382,-0.76378137,0.14227162,1.4307202,-1.9682832,-0.6354102,1.0093426,1.6407341,755,train,1.6407341\n-2.1144526,0.1172174,-0.15999292,2.15011,0.95422924,-0.26652712,1.3030031,1.323634,715,train,1.323634\n0.92434764,-0.5458987,0.030279221,3.0018065,-1.4831476,-0.56306535,0.7515938,0.7515857,2773,train,0.7515857\n-3.4619074,0.24569848,-0.100611985,2.2600439,1.5241057,-0.20520495,1.332534,1.2479603,1266,train,1.2479603\n-3.5276823,0.15274902,-0.06790453,2.2205276,1.3231727,-0.28527278,1.346987,1.307922,492,train,1.307922\n4.1865473,-0.91368955,0.16105753,1.6263617,-2.7699218,-1.3275855,0.73718816,0.8824773,128,train,0.8824773\n-2.1427352,0.04921328,-0.085142024,1.4690228,1.4854078,-0.42838752,1.1593966,1.0150473,1473,train,1.0150473\n0.9056321,-0.21760929,-0.12734325,1.2069204,0.22654642,-0.708822,0.83601385,1.1714075,240,train,1.1714075\n7.5455484,-1.1212553,0.3504864,-3.0247788,-2.8831613,-1.2084407,1.1707517,1.6767662,123,train,1.6767662\n-3.2101521,0.20196296,-0.09339723,2.089992,1.5954312,-0.2393059,1.2731141,1.2584056,1474,train,1.2584056\n-2.4090729,0.32501423,-0.23509634,2.3747663,1.5284121,-0.14767016,1.1907362,1.1548309,1804,train,1.1548309\n-1.0294454,0.19793288,-0.18745743,1.407912,2.0120592,-0.5399632,0.9641231,1.0759503,1808,train,1.0759503\n0.14884056,0.2584227,-0.251538,1.1279587,2.1875985,-0.7447155,0.82136774,1.0954164,2044,train,1.0954164\n-1.929295,0.33646223,-0.27220687,2.167458,1.4097621,-0.10375653,1.212325,1.2549918,1764,train,1.2549918\n1.0396522,-0.6795733,0.11432641,3.348096,-1.6569666,-1.1686431,0.914496,1.3193307,310,train,1.3193307\n-1.7727315,0.14142421,-0.18235092,1.9429549,0.92805994,-0.2064491,1.3084922,1.3364214,995,train,1.3364214\n-3.1707463,0.22151206,-0.09919604,2.061549,1.6418036,-0.22807123,1.2740047,1.1356711,1387,train,1.1356711\n-2.659573,0.21213534,-0.11670634,1.8332013,1.7514874,-0.2761742,1.208039,1.128155,1688,train,1.128155\n-1.8617979,0.2619587,-0.22858943,1.806762,1.1692003,0.033233956,1.3273094,1.5286082,1198,train,1.5286082\n-3.0362785,-0.013062723,-0.070707746,2.5483491,0.7797924,-0.38526374,1.3674095,1.2694525,2820,train,1.2694525\n-1.4276333,-0.015541812,-0.09688823,1.1184874,1.3344494,-0.5066617,1.1201736,1.1833814,512,train,1.1833814\n-2.224154,-0.31302458,0.07515375,3.537355,-0.62871605,-0.48809597,1.1722358,1.3628174,30,train,1.3628174\n-1.9862301,0.3069002,-0.25965887,2.2298126,1.3369553,-0.05197078,1.2178239,1.2736114,1654,train,1.2736114\n-2.8057604,-0.13238434,-0.015224107,2.81445,0.39494678,-0.41900742,1.3284428,1.2324684,1159,train,1.2324684\n-0.037005853,-0.19930762,-0.09391879,1.403362,0.5622433,-0.564887,0.9255237,1.1062934,52,train,1.1062934\n0.49875286,-0.15988067,-0.08804515,0.6510748,1.4129875,-0.9560072,0.88461596,1.0651135,1817,train,1.0651135\n-1.4061826,-0.019924114,-0.09660743,1.1320403,1.320112,-0.5085272,1.1159811,1.1684792,666,train,1.1684792\n-1.2737875,0.16426496,-0.17398694,1.552711,1.9400381,-0.5360835,0.9606269,1.0100195,646,train,1.0100195\n1.535612,-0.68797064,0.10124927,2.2518032,-1.7719241,-0.49338236,0.9971583,1.5613885,952,train,1.5613885\n9.16228,-1.3781297,0.44450036,-3.3554366,-3.2776873,-1.7954499,1.1342268,1.4014906,170,train,1.4014906\n3.3874679,0.42689258,-0.35281822,0.9084562,2.2673898,-2.3717287,0.3452747,0.9658786,541,train,0.9658786\n1.6875643,0.7869963,-0.53279716,2.0432224,3.4530478,-1.8539433,0.63998896,1.677537,2380,train,1.677537\n1.0949217,0.34783056,-0.29983982,1.4486892,2.292761,-1.2555786,0.5790573,1.0882202,1911,train,1.0882202\n0.54433167,0.29036734,-0.27377176,1.1987494,2.2204573,-0.8972944,0.73987204,1.031351,2041,train,1.031351\n-2.0801466,0.11509366,-0.16150358,2.1426692,0.9431332,-0.2644256,1.3015318,1.3803246,704,train,1.3803246\n1.7851169,-0.17798814,-0.13060477,0.16870154,1.462347,-1.0653987,0.8171759,1.1217482,2063,train,1.1217482\n-3.4115968,0.25313723,-0.103953175,2.2331293,1.5499805,-0.20410296,1.3273437,1.2743608,934,train,1.2743608\n-0.44711313,-0.55023944,0.1257184,3.7672179,-1.3685874,-1.1335678,1.0438896,1.3817241,869,train,1.3817241\n-0.43178767,-0.527598,0.098195545,3.4109795,-1.453359,-0.5410414,1.0686439,1.4610043,296,train,1.4610043\n6.5946555,0.72853357,-0.5367917,-1.6282742,3.3564878,-2.915658,0.4460849,1.9028903,2447,train,1.9028903\n-3.4112408,-0.01691796,-0.028761538,2.5668314,0.8792904,-0.46655384,1.3673894,1.3694118,2729,train,1.3694118\n-0.004084809,-0.27219796,-0.067564115,1.9117529,0.20456028,-0.47032073,0.87144053,1.1475155,1079,train,1.1475155\n1.5704646,0.7982567,-0.53917915,2.0873234,3.4973452,-1.8714334,0.6391001,0.83132803,2340,train,0.83132803\n-0.111927606,-0.37981144,-0.028116446,2.5874608,-0.3237124,-0.39594743,0.8416581,1.1851774,1133,train,1.1851774\n12.811998,-1.6253462,0.48149788,-6.6160936,-3.8608325,-1.9176327,1.1546866,1.2997005,589,train,1.2997005\n4.6462274,-0.9731374,0.25067544,0.7113629,-2.3139112,-1.6862859,0.9817627,1.6990418,1057,train,1.6990418\n-2.2265987,0.12716691,-0.15589973,2.175738,0.9911475,-0.26985243,1.3076578,1.3525711,531,train,1.3525711\n1.8542882,-0.77416563,0.17434698,2.4442472,-1.9092479,-1.273192,1.0099376,1.5453491,258,train,1.5453491\n0.6078796,-0.64565223,0.13528468,3.254364,-1.584343,-1.2320952,1.0315738,1.4751132,786,train,1.4751132\n1.3965983,-0.6606601,0.09885717,2.2842622,-1.7490295,-0.48847368,1.0011231,1.4723831,859,train,1.4723831\n-3.3383303,0.22351605,-0.091598034,2.1546588,1.589483,-0.23559925,1.2960602,1.1121837,937,train,1.1121837\n0.5321246,-0.45266393,-0.012701033,2.6658437,-0.77237755,-0.48509178,0.80724615,1.1902692,985,train,1.1902692\n2.7798617,-0.20381936,-0.16648641,-0.12901407,1.4661947,-1.1278678,0.75120133,1.267158,1999,train,1.267158\n1.0072824,-0.23034196,-0.12557824,1.2420783,0.13400972,-0.6962616,0.8223308,1.0682856,276,train,1.0682856\n3.1209579,-0.18666872,-0.1750557,0.7473996,-0.61735857,-1.1869198,0.65120137,1.3147111,2612,train,1.3147111\n-3.4142437,0.1427635,-0.09086372,2.2950199,1.2007517,-0.30347174,1.3932259,1.3028069,523,train,1.3028069\n-1.6668892,0.19460532,-0.16222385,1.5811169,1.8909197,-0.43571725,1.0437222,1.1188124,1667,train,1.1188124\n-1.3272455,0.5634912,-0.38209265,3.1251502,2.1809247,-0.8771649,0.8316416,1.2232578,2661,train,1.2232578\n-2.1933894,0.36283585,-0.27373436,2.5091875,1.6387761,-0.2743871,1.1047117,1.1328696,1759,train,1.1328696\n2.4763663,0.37462446,-0.3264005,1.204567,2.14725,-2.2390463,0.37876743,0.9096281,552,train,0.9096281\n-1.5531408,0.48370036,-0.34839147,2.5344217,1.9094629,-0.5386693,0.98959154,1.1771798,2109,train,1.1771798\n1.66442,0.39670947,-0.31638944,1.6110898,2.3800836,-1.5003628,0.4752818,1.0603828,1993,train,1.0603828\n0.31612977,-0.6372854,0.13248058,3.2316089,-1.6655656,-0.8013627,1.0547458,1.8408291,223,train,1.8408291\n-2.062499,0.19617799,-0.14152339,1.6717972,1.8121198,-0.3726156,1.1099758,1.1198918,1248,train,1.1198918\n-2.1087146,0.20747063,-0.14249387,1.6715444,1.8228762,-0.36186722,1.1242236,1.158242,1252,train,1.158242\n6.9263906,1.2460297,-0.79017264,-4.3460717,5.1439533,-2.1225197,0.67151684,0.848163,2481,train,0.848163\n-0.8648173,-0.38281432,0.021547321,2.8397758,-0.82077175,-0.098315634,1.1197336,1.3968018,1791,train,1.3968018\n-3.1627355,0.044126343,-0.06540155,2.2805457,1.2412536,-0.3235969,1.2382497,1.1902089,509,train,1.1902089\n2.9743953,0.32533315,-0.31723982,0.09650824,2.0279148,-1.7323868,0.51484203,0.72212577,2275,train,0.72212577\n-2.0671523,0.29437745,-0.24166797,2.1155016,1.2935737,-0.03138601,1.2699692,1.1925638,2627,train,1.1925638\n-1.3895257,0.55377036,-0.39002946,3.5073824,2.0553436,-0.90398717,0.8308392,1.0773624,2026,train,1.0773624\n-2.0748389,0.03543945,-0.08371207,1.4365197,1.4495585,-0.43044096,1.16114,1.0096813,1271,train,1.0096813\n-0.13115236,-0.3899944,-0.020050652,2.6452847,-0.42493623,-0.3779323,0.8310413,1.15001,1787,train,1.15001\n4.232301,-0.27060395,-0.10690748,0.56533366,-1.561935,-1.214972,0.5738924,0.96599746,918,train,0.96599746\n-1.7651709,0.27507228,-0.24111333,1.7904674,1.1611079,0.06994767,1.3283194,1.3341027,1315,train,1.3341027\n10.301803,-1.464142,0.48592722,-4.414753,-3.493256,-1.7926291,1.1796889,1.0831497,61,train,1.0831497\n-3.1412277,0.23447442,-0.10456977,2.0689242,1.6434641,-0.22216271,1.2769818,1.2534038,1619,train,1.2534038\n-2.2743614,-0.050682735,-0.07002021,2.1146054,1.1220853,-0.35950106,1.1105268,1.1758109,325,train,1.1758109\n0.18739468,-0.15146144,-0.08248567,0.77440643,1.3399694,-0.9393376,0.90776265,1.005254,1739,train,1.005254\n2.1745496,-0.7909202,0.17718989,2.2608528,-1.9359123,-1.3271875,1.0081553,1.7155336,2893,train,1.7155336\n-3.1776345,-0.038190864,-0.043072764,2.5480988,1.0123978,-0.40185645,1.2574382,1.3104626,326,train,1.3104626\n-0.67344457,0.5186772,-0.40847686,2.650841,1.9705573,-0.70948267,0.9507311,1.291848,2131,train,1.291848\n-2.205335,0.3460828,-0.24749897,2.17162,1.4843723,-0.1293098,1.218498,1.1344718,1676,train,1.1344718\n2.531483,0.8540607,-0.57547724,1.0210677,3.739389,-2.083966,0.64321214,1.217272,2686,train,1.217272\n-0.5093009,0.18073432,-0.17516151,1.3661498,1.8817868,-0.85533965,0.8666997,1.1803697,1964,train,1.1803697\n7.4580526,0.84073985,-0.60805684,-2.9865303,4.054177,-2.9132807,0.53519374,1.5491427,2511,train,1.5491427\n-1.3075182,-0.10010283,-0.080375634,1.5421169,1.1230432,-0.4704426,1.0452721,1.0495,450,train,1.0495\n6.674676,1.2241101,-0.7866318,-4.1971226,5.069343,-1.9602157,0.7056078,1.0128247,2519,train,1.0128247\n-1.9635386,0.19791356,-0.14865994,1.6627126,1.8309894,-0.3936902,1.086365,1.1699557,1797,train,1.1699557\n-0.3511153,-0.5325256,0.09514006,3.3604546,-1.4702111,-0.5186936,1.0668234,1.4056475,318,train,1.4056475\n6.0633216,-0.1750503,-0.30544907,-1.5258049,1.219199,-1.1731236,0.5791794,1.2045051,2381,train,1.2045051\n-1.2388716,-0.122849986,-0.078502655,1.6633937,1.0537832,-0.46515077,1.0208898,1.0768281,665,train,1.0768281\n1.5021449,-0.7334777,0.15423696,2.7694914,-1.7806119,-1.2427993,0.9946928,1.123408,811,train,1.123408\n2.5843961,-0.6811537,0.08710808,2.5610707,-2.1732106,-1.0659744,0.743083,1.0209787,1111,train,1.0209787\n0.40311697,-0.08452628,-0.11813932,0.6886189,1.0779839,-1.0344824,0.89196646,1.0558175,1462,train,1.0558175\n-1.3028802,0.58343303,-0.39193872,3.3769157,2.2328956,-0.9856118,0.8001527,1.2568178,1998,train,1.2568178\n6.6863284,0.85208213,-0.6038145,-2.0629134,4.078318,-2.8577085,0.5393287,1.349652,661,train,1.349652\n-0.08320867,-0.49963763,0.056542315,3.1839948,-1.442502,-0.29877257,1.0277418,1.4270332,186,train,1.4270332\n0.12634225,-0.122436695,-0.097756125,0.87688243,1.191501,-1.0269557,0.90852726,0.8543745,1576,train,0.8543745\n3.3060095,-0.7753955,0.122719094,2.1836672,-2.49903,-1.2536428,0.7298866,1.3323886,148,train,1.3323886\n7.50746,-1.1720389,0.36725262,-2.8067882,-2.943152,-1.1716436,1.1617309,1.8128169,174,train,1.8128169\n-1.2713104,0.15358627,-0.13932243,1.5473108,1.8196875,-0.70917207,0.970979,1.2542665,2047,train,1.2542665\n-2.435906,0.34829906,-0.22729012,2.3134887,1.71,-0.27223998,1.1459113,1.2407739,609,train,1.2407739\n-2.095366,0.004020484,-0.1273381,2.1791024,0.7105253,-0.32429466,1.3173475,1.2571293,745,train,1.2571293\n-1.2272898,0.5481726,-0.38793325,3.031304,2.1318398,-0.83384204,0.86615855,1.1245731,2136,train,1.1245731\n-1.0976993,0.62873524,-0.4103304,3.7207527,2.347135,-1.0284324,0.74405056,1.2375501,2229,train,1.2375501\n2.5312214,-0.7671611,0.1469849,1.4000357,-1.9920328,-0.65830666,1.0167612,1.6293498,1550,train,1.6293498\n1.1390101,-0.4355818,-0.03197323,2.345845,-0.8843041,-0.5833892,0.7643685,1.2784275,2798,train,1.2784275\n3.838002,-0.25296822,-0.19499665,-0.42093128,1.3955758,-1.261733,0.6684204,1.0532562,2575,train,1.0532562\n-3.435784,0.20584112,-0.09913073,2.2599182,1.3659608,-0.2528863,1.3738201,1.324521,494,train,1.324521\n-1.1364987,-0.013254122,-0.104431264,0.8502095,1.3342654,-0.61106735,1.11638,1.0811043,1449,train,1.0811043\n-1.1690063,0.20405006,-0.18591338,1.4691851,2.0081985,-0.52382773,0.9767317,1.2443093,1819,train,1.2443093\n2.6124012,-0.668565,0.08690092,2.5598738,-2.230331,-1.1010225,0.73617435,1.0870717,177,train,1.0870717\n-3.4754968,0.1301144,-0.07422767,2.156335,1.2480302,-0.32161677,1.3944145,1.4547083,993,train,1.4547083\n-3.4315002,0.041824017,-0.04958707,2.3333075,1.0373162,-0.39979753,1.3872383,1.4279974,1342,train,1.4279974\n-1.5872282,-0.07299019,-0.082467206,1.5775473,1.2341833,-0.45957455,1.0736035,1.0907798,513,train,1.0907798\n-0.61483556,0.21193762,-0.21392491,1.4329762,2.0955162,-0.66780794,0.8700906,1.1647705,2651,train,1.1647705\n-1.4877845,-0.10865915,-0.0861968,2.2590969,0.20901732,-0.21061796,1.2534707,1.3094496,1177,train,1.3094496\n5.357106,0.6388149,-0.45406723,-0.48242775,2.9440782,-2.561763,0.48554367,0.8148629,2269,train,0.8148629\n3.1663241,-0.7505141,0.113780804,2.251223,-2.4261138,-1.217175,0.7305899,1.3703672,156,train,1.3703672\n2.2615728,-0.51930857,0.012069985,2.4355073,-1.8574777,-0.98786837,0.7129362,0.9820481,87,train,0.9820481\n0.8950282,0.33071896,-0.29309222,1.436477,2.2636096,-1.1692837,0.61463004,0.81417423,2038,train,0.81417423\n0.33152345,0.7362233,-0.47599912,3.2463343,2.8886864,-1.3669213,0.6618711,1.3086517,2209,train,1.3086517\n0.0012617621,-0.59695834,0.12321964,3.3579743,-1.5860586,-0.7561224,1.0644699,1.5399122,280,train,1.5399122\n-3.1890907,0.18430717,-0.11312433,2.236837,1.2605636,-0.2559506,1.3710511,1.2531621,335,train,1.2531621\n6.204875,-1.104342,0.3226093,-0.7901629,-2.649591,-1.7386893,1.0602938,1.8644259,1027,train,1.8644259\n7.7849784,0.991424,-0.6704554,-4.0367866,4.6305056,-3.0192876,0.61165315,1.9871297,2547,train,1.9871297\n-2.1947985,0.06592824,-0.086712435,1.4769294,1.5451269,-0.42670134,1.166578,1.0300107,1614,train,1.0300107\n2.401919,-0.51761365,0.016604241,2.4013596,-1.986865,-1.0402374,0.7194079,1.0681033,126,train,1.0681033\n0.82404166,0.8161233,-0.53488624,2.1869836,3.3124592,-1.1857693,0.77260876,0.87578124,2446,train,0.87578124\n-1.5545462,-0.43277338,0.10892677,3.9182518,-1.0089619,-0.9351912,1.0471737,1.2813922,2857,train,1.2813922\n5.936609,0.68942153,-0.4937157,-0.9827421,3.175327,-2.6984656,0.46084803,0.9466007,430,train,0.9466007\n-1.8665396,0.2097263,-0.15434887,1.59716,1.8812046,-0.39765418,1.0922163,1.1773658,1737,train,1.1773658\n1.8699172,0.41131094,-0.31994712,1.8137885,2.386876,-1.6662172,0.40463206,0.77497005,2557,train,0.77497005\n-2.3346527,0.3136273,-0.2238429,2.1716352,1.4027176,-0.08510738,1.2607659,1.1621995,1637,train,1.1621995\n-1.8875134,0.07694676,-0.098364115,1.5163773,1.7042006,-0.5173383,1.0681521,1.0830187,2640,train,1.0830187\n4.4928875,-0.9499719,0.24069068,0.7673537,-2.2537196,-1.6669761,0.9947025,1.611527,754,train,1.611527\n-3.0743809,-0.10099193,-0.02945565,2.7198899,0.84998065,-0.4454363,1.2364298,1.1450197,741,train,1.1450197\n-3.3706324,0.046201684,-0.054466173,2.348877,1.1350788,-0.37406847,1.318489,1.3109839,459,train,1.3109839\n-1.8948593,0.47013396,-0.3307465,2.7466433,1.8447645,-0.5162388,0.9838609,1.1817312,2646,train,1.1817312\n0.40366971,-0.07836285,-0.120412424,0.6446344,1.0867164,-1.0093113,0.9019861,1.1030389,1416,train,1.1030389\n1.4485122,-0.67420405,0.09693371,2.3194914,-1.7591558,-0.49426988,1.0015066,1.555727,763,train,1.555727\n-2.000017,0.3225002,-0.2766174,2.3966377,1.4419293,-0.11453591,1.1623552,1.1540239,1663,train,1.1540239\n2.1109538,-0.6640834,0.07844276,2.713164,-2.0085638,-0.9102329,0.78913957,1.2297133,835,train,1.2297133\n4.68177,-0.258737,-0.22706099,-0.7004089,1.316974,-1.2633072,0.6322212,0.9992354,564,train,0.9992354\n-1.1338003,-0.49021202,0.12068697,3.895039,-1.2785664,-0.8762517,1.0870861,1.4473267,1788,train,1.4473267\n0.09608413,0.15579128,-0.18824907,1.0231491,1.9226893,-0.9288194,0.8259838,0.97909075,2004,train,0.97909075\n-2.4310226,-0.27998406,0.047005657,3.418506,-0.14577937,-0.74076575,1.1831452,1.3357621,1624,train,1.3357621\n2.4387152,-0.80556655,0.17427902,2.0987132,-1.9624119,-1.3641574,1.0079739,1.5760391,2881,train,1.5760391\n-2.53901,0.2337344,-0.13213296,1.8082272,1.7819701,-0.29203263,1.199711,1.1760949,1648,train,1.1760949\n6.462295,-0.10232775,-0.32635728,-1.975779,1.1725771,-1.2379804,0.5836797,1.2783395,2426,train,1.2783395\n-1.4268012,0.18374982,-0.17139667,1.5571759,1.9324361,-0.48983145,0.99552727,1.0764675,628,train,1.0764675\n5.1686573,1.0474713,-0.6941345,-1.8163233,4.57811,-2.255471,0.6235606,0.5768973,2465,train,0.5768973\n-3.226061,0.06434721,-0.082888536,2.3744297,0.9778689,-0.37087354,1.3957582,1.1334004,663,train,1.1334004\n0.119876936,-0.094911255,-0.10285987,0.76114064,1.1477232,-1.0153425,0.9289658,1.0343152,1433,train,1.0343152\n-2.333743,0.3441295,-0.24713449,2.3785512,1.5613697,-0.17543675,1.1700585,1.1939213,1670,train,1.1939213\n-1.9550053,0.20832942,-0.19424048,1.9445239,1.0822406,-0.11637245,1.3081678,1.2193052,1436,train,1.2193052\n-2.0907316,0.35914344,-0.2821651,2.494251,1.5891918,-0.237883,1.1130558,1.164947,616,train,1.164947\n-1.8144273,-0.39946532,0.111015275,3.891335,-0.98330796,-0.74438494,1.0820729,1.0224081,2786,train,1.0224081\n-0.120671354,-0.47661602,0.020917878,3.2075348,-0.9618409,-0.5202664,0.80878896,1.2064737,300,train,1.2064737\n4.5406466,1.0257068,-0.6866487,-1.6221529,4.52309,-1.9603674,0.6839202,0.6325937,2463,train,0.6325937\n-1.2155571,0.55059844,-0.3921051,3.13102,2.1149185,-0.8547183,0.86207104,1.2491219,2133,train,1.2491219\n0.5658856,-0.48653534,0.008071158,2.988271,-1.1219409,-0.5383796,0.7474892,1.0003606,841,train,1.0003606\n-1.4033017,0.2152978,-0.17669559,1.491855,1.9724115,-0.4667616,1.0265634,1.118309,1826,train,1.118309\n5.4036317,-1.0170249,0.27750096,0.0002191029,-2.4276304,-1.7518978,1.01647,1.7708035,1154,train,1.7708035\n-0.9938576,0.16016631,-0.15180625,1.4920069,1.8435798,-0.7595011,0.9322241,1.2265471,2107,train,1.2265471\n-0.9095808,-0.14970379,-0.07598385,1.6145339,0.9084182,-0.4895751,0.9909822,1.0601531,2814,train,1.0601531\n3.0254703,-0.20040514,-0.17627853,-0.23217796,1.4580122,-1.1277286,0.74393475,1.2910367,2092,train,1.2910367\n2.9534667,-0.8399339,0.1945074,1.7056289,-2.0300434,-1.4503835,1.0144899,1.6205789,2146,train,1.6205789\n5.666699,-0.2219664,-0.2819442,-1.1867664,1.2306365,-1.2430063,0.58227724,1.2802806,2317,train,1.2802806\n0.241082,-0.61252314,0.10403741,3.6717825,-1.4597616,-1.09159,0.9323689,1.321938,211,train,1.321938\n-0.29462734,-0.09524801,-0.08713734,0.8043446,1.2679087,-0.8936105,0.98237735,1.0659955,1519,train,1.0659955\n5.137375,1.0477395,-0.7074719,-2.0252519,4.612244,-2.0699766,0.68595934,1.0770345,2527,train,1.0770345\n6.0782766,1.1847582,-0.7790938,-3.8801668,4.993218,-1.6987815,0.7633567,1.3528216,2521,train,1.3528216\n0.9136404,-0.17239666,-0.09900758,0.48253322,1.4357941,-0.9918709,0.85849977,1.0766878,2648,train,1.0766878\n2.8551395,-0.20560515,-0.16067494,-0.055530913,1.3890073,-1.2264962,0.73111033,1.2917762,1003,train,1.2917762\n-2.1653476,0.30626088,-0.24549486,2.2583804,1.3797965,-0.08152164,1.2252822,1.3212346,1649,train,1.3212346\n-3.4128659,-0.015143285,-0.029587932,2.5644388,0.88321906,-0.4642742,1.368678,1.3511602,2727,train,1.3511602\n-2.1331878,0.3535403,-0.27782726,2.4973884,1.5793786,-0.21970142,1.121141,1.3077507,622,train,1.3077507\n2.197675,-0.3233858,-0.12134444,1.3217925,-0.5586644,-0.84677094,0.6953524,1.2668724,1018,train,1.2668724\n1.047515,-0.5043875,0.0018466798,2.9104261,-1.2194568,-0.61083525,0.723251,1.3880337,951,train,1.3880337\n0.4977943,-0.1670641,-0.08708372,0.70494455,1.3725008,-0.9906357,0.87099296,1.0364103,1743,train,1.0364103\n-2.509557,-0.20837766,0.021421842,3.0302827,-0.036891982,-0.4089796,1.2640091,1.3261334,62,train,1.3261334\n2.0800247,-0.19011937,-0.13673547,0.16697238,1.4176435,-1.143992,0.77740085,1.1974763,2058,train,1.1974763\n0.9804647,-0.67530537,0.11333812,3.384272,-1.644582,-1.1628746,0.9150156,1.3960183,192,train,1.3960183\n-2.2757094,0.122169845,-0.15060224,2.176383,0.98969275,-0.278126,1.3119771,1.3002336,458,train,1.3002336\n6.545305,0.74043626,-0.5349437,-1.7470608,3.4060242,-2.7504559,0.52053446,1.5129368,2697,train,1.5129368\n-0.3997358,-0.527577,0.09418794,3.38406,-1.4566854,-0.51094866,1.0660282,1.341788,199,train,1.341788\n0.18448356,0.7433988,-0.47728252,3.2419846,2.8689306,-1.2892262,0.68182856,1.3849932,2588,train,1.3849932\n1.7383798,0.43804964,-0.3332254,1.7424982,2.4835813,-1.5702733,0.46470162,1.0207281,1973,train,1.0207281\n-1.3475745,0.14147553,-0.13199858,1.5981823,1.8102776,-0.7038808,0.9572143,0.97628415,2677,train,0.97628415\n-2.098616,0.24840812,-0.21758947,2.0655446,1.2082632,-0.059629668,1.2909327,1.2167399,1477,train,1.2167399\n0.67321813,-0.08841897,-0.12592112,0.6494581,0.9891275,-1.0639584,0.8655998,1.1050596,2674,train,1.1050596\n-0.8926902,-0.15874238,-0.07384636,1.6451021,0.8795592,-0.4778712,0.97987133,0.9725881,1466,train,0.9725881\n-1.474276,-0.18124397,-0.05190298,2.4646978,-0.049183365,-0.14997832,1.2178401,1.2622577,1729,train,1.2622577\n-0.4217984,-0.5540461,0.1267103,3.7251925,-1.3870014,-1.1142778,1.0543749,1.3406994,1786,train,1.3406994\n8.971767,1.3482606,-0.7977075,-7.440616,5.4398465,-2.7949896,0.79635644,0.6006453,2486,train,0.6006453\n-2.9876506,0.21317036,-0.13280018,2.1864011,1.2894462,-0.2185245,1.3560755,1.459287,690,train,1.459287\n1.4255985,-0.5169786,0.0026425407,2.7708364,-1.3636044,-0.70432055,0.70812786,1.235698,977,train,1.235698\n-1.4513038,-0.07282425,-0.10873058,2.104719,0.32487285,-0.20318589,1.2778411,1.3221776,2823,train,1.3221776\n2.0359128,-0.18111919,-0.14042608,0.102901444,1.4641358,-1.0914242,0.8004028,1.1694424,2115,train,1.1694424\n0.20070228,-0.15153655,-0.08382424,0.7916183,1.3280739,-0.9520226,0.9052082,1.054697,1781,train,1.054697\n0.6574283,-0.64803374,0.10842725,3.537667,-1.571615,-1.1358594,0.92261356,1.3982143,246,train,1.3982143\n4.3878603,0.58232903,-0.4170673,0.3194548,2.7722242,-2.324574,0.45829538,1.1148694,2301,train,1.1148694\n5.1336484,-0.24733378,-0.25103155,-0.874103,1.2778813,-1.275171,0.60568696,0.81109136,569,train,0.81109136\n3.5894334,-0.9014207,0.24112022,1.1007955,-2.240807,-1.383574,1.0500777,1.6777637,830,train,1.6777637\n2.0121198,0.82522064,-0.55489117,1.6397967,3.5996833,-2.034036,0.63038677,0.9341006,2414,train,0.9341006\n1.2231404,0.37020922,-0.2999705,1.6241323,2.059469,-1.8586661,0.46997052,1.1688874,558,train,1.1688874\n-0.07902999,-0.08609099,-0.1005378,0.7628897,1.2065265,-0.96291053,0.9536524,1.0847689,1258,train,1.0847689\n7.9196763,1.0701569,-0.70168924,-4.526068,4.8846955,-3.0352044,0.65799177,0.71365994,2529,train,0.71365994\n-1.6499351,0.4475961,-0.33327028,2.433821,1.799544,-0.46796298,1.0309057,1.2517484,2049,train,1.2517484\n-0.13750349,-0.5405318,0.07676101,3.2974794,-1.4464821,-0.43685102,1.0368675,1.4012985,2708,train,1.4012985\n-1.8602774,0.26160336,-0.22856084,1.8037041,1.1699982,0.03151517,1.3274134,1.4300498,769,train,1.4300498\n-2.1813478,0.06086384,-0.08539393,1.4651513,1.5285995,-0.42724255,1.1700637,1.0936133,1598,train,1.0936133\n0.22371112,-0.1280988,-0.09928234,0.8950088,1.1601709,-1.0576816,0.89285696,0.9948211,1575,train,0.9948211\n-1.4038758,0.20505047,-0.16848867,1.3944218,1.9580051,-0.43464723,1.0564164,1.4552659,413,train,1.4552659\n-3.3012815,0.22216894,-0.093263514,2.1269307,1.6029838,-0.22864945,1.2903231,1.1740154,1612,train,1.1740154\n-3.4127822,0.054055218,-0.055408705,2.2709067,1.0581164,-0.3884495,1.3973103,0.97603637,2692,train,0.97603637\n3.1540961,-0.7963762,0.1764523,0.8193261,-2.084345,-0.81067985,1.0418029,1.703723,960,train,1.703723\n-3.5046232,0.24351427,-0.09931646,2.2886028,1.5002081,-0.20858179,1.34104,1.2743452,1397,train,1.2743452\n0.580818,-0.67078084,0.1432166,3.1646883,-1.7297006,-0.90434664,1.0432546,1.4521555,228,train,1.4521555\n0.77478456,-0.67565656,0.14301713,2.9304984,-1.7105845,-0.9441716,1.0656422,1.4886063,1129,train,1.4886063\n-1.8477046,-0.029283883,-0.08489636,1.5434674,1.3492761,-0.45283875,1.114052,1.1166729,672,train,1.1166729\n1.9496698,-0.63430256,0.058846615,2.8062644,-1.9504957,-0.87395155,0.79132533,1.3851188,1032,train,1.3851188\n-1.6985034,0.23766163,-0.18294609,1.7099543,1.972092,-0.45805052,1.0332925,1.1138257,1751,train,1.1138257\n-3.4615116,0.25109524,-0.104332425,2.2649837,1.506549,-0.19486141,1.3409781,1.1792489,1274,train,1.1792489\n-2.2871883,0.08591232,-0.09086238,1.6013501,1.6163496,-0.4369346,1.1474103,1.1018367,1696,train,1.1018367\n0.5080903,-0.34402928,-0.053478107,2.14629,-0.35126096,-0.481988,0.802143,1.2263643,196,train,1.2263643\n2.0131931,0.41683814,-0.3287998,1.6355231,2.4357483,-1.627861,0.43388176,0.9188756,1976,train,0.9188756\n-0.012680891,-0.14487647,-0.11279469,1.0639027,0.74181837,-0.65901333,0.96008706,1.075984,66,train,1.075984\n-0.14789096,-0.36520714,-0.028208202,2.5277755,-0.30048704,-0.38647076,0.8332226,1.1017752,2860,train,1.1017752\n6.739479,0.75537556,-0.55228174,-1.8565764,3.5042317,-2.909698,0.46936154,0.5031861,2413,train,0.5031861\n-2.9810915,0.19305776,-0.12855278,2.2227006,1.2454164,-0.24252167,1.3552811,1.2803372,679,train,1.2803372\n6.401539,1.2057968,-0.7834703,-4.0668907,5.0368567,-1.8410646,0.7340084,1.093298,2518,train,1.093298\n3.0533566,-0.21467923,-0.16962416,-0.16169187,1.416559,-1.1996489,0.72405535,1.1261404,2003,train,1.1261404\n-1.8120989,0.48161748,-0.3364056,2.7032628,1.8922174,-0.54512525,0.97824085,1.1820383,2014,train,1.1820383\n0.9052243,-0.08381089,-0.14003047,0.5491256,0.9327058,-1.0194789,0.8467738,1.1491715,2728,train,1.1491715\n-0.660135,0.70499325,-0.43236005,3.9386084,2.5570664,-1.1943175,0.6616384,0.89162344,378,train,0.89162344\n0.72106487,0.30504075,-0.28438568,1.2362441,2.2399027,-0.9828708,0.70209455,1.0206292,1954,train,1.0206292\n-0.34226784,-0.47508144,0.05292942,3.187134,-1.3327104,-0.24576372,1.0385724,1.4300727,239,train,1.4300727\n-1.6558077,-0.067548856,-0.08128269,1.5715849,1.2511411,-0.4422313,1.0820551,1.0870997,1426,train,1.0870997\n-1.5566411,-0.30946282,0.009964929,2.8665128,-0.47093838,-0.15592477,1.1805273,1.2665226,1683,train,1.2665226\n3.2468407,-0.31201518,-0.12268498,1.0634874,-1.1652418,-1.100862,0.6197618,0.88897145,1086,train,0.88897145\n2.5657146,-0.19666958,-0.15791483,-0.05897936,1.4554733,-1.1271274,0.7664136,1.208908,1008,train,1.208908\n-3.5134385,0.14735733,-0.06793475,2.1655526,1.2947166,-0.29645944,1.3665726,1.2616824,688,train,1.2616824\n9.192174,-1.3881856,0.45826167,-3.6740167,-3.3145108,-1.5585947,1.1942471,1.6358823,142,train,1.6358823\n-1.7852359,-0.042694002,-0.08448392,1.5633222,1.3221312,-0.45732594,1.1030028,1.1196191,533,train,1.1196191\n-3.5304174,0.23942758,-0.10007232,2.326682,1.45966,-0.2143548,1.3519937,1.3116187,1206,train,1.3116187\n7.7720175,0.41355774,-0.36910078,-5.6984286,1.4786704,-1.8751587,0.76868355,0.54717714,2476,train,0.54717714\n1.2820253,-0.49265265,-0.007022474,2.7286274,-1.2292913,-0.66126406,0.7086859,1.2036409,832,train,1.2036409\n-0.122284316,0.7234872,-0.4568651,3.5605347,2.751228,-1.2977316,0.6626045,1.2735903,2200,train,1.2735903\n2.8203814,-0.73816985,0.10449736,2.2917125,-2.2396994,-1.0471072,0.76365846,0.76993686,1090,train,0.76993686\n2.9464862,-0.8398622,0.19467223,1.6901914,-2.0291073,-1.4402493,1.0184275,1.6447322,2147,train,1.6447322\n-1.7034584,0.11730855,-0.13805537,1.9817607,1.8399366,-0.5753653,0.9154333,1.0208441,635,train,1.0208441\n6.9392414,0.7844456,-0.5705693,-2.153186,3.6944416,-2.949693,0.47456223,2.0538244,2685,train,2.0538244\n-3.431061,0.14421359,-0.09013487,2.2924628,1.2102152,-0.30185843,1.3931227,1.2972338,1459,train,1.2972338\n0.2094814,0.2090243,-0.21198048,1.3684108,1.9488546,-1.0668825,0.7182671,0.9188608,2558,train,0.9188608\n0.11677601,-0.29421744,-0.07359224,2.0025136,0.09765556,-0.4756389,0.8711421,1.2167562,940,train,1.2167562\n1.025203,-0.44092953,-0.025046501,2.505519,-0.9218601,-0.5916045,0.74439424,1.308716,1074,train,1.308716\n-0.30884632,-0.23841058,-0.062828735,1.8223522,0.40090927,-0.43757674,0.895106,0.9827552,1890,train,0.9827552\n5.9762125,0.68214226,-0.49055004,-1.0562375,3.156958,-2.6654723,0.47832686,0.8287105,2318,train,0.8287105\n0.8541844,-0.095448315,-0.15584071,0.56419957,0.8257697,-0.8578721,0.86449355,1.0606866,1629,train,1.0606866\n-1.1319587,-0.01387119,-0.10447863,0.85569394,1.3281606,-0.6125526,1.1148845,1.0675725,710,train,1.0675725\n-1.9879777,0.30495417,-0.2782218,2.515303,1.4111958,-0.14526102,1.1317173,1.2332981,1774,train,1.2332981\n3.187837,0.8995012,-0.6084957,0.40060112,3.9378197,-2.1156337,0.63906753,0.9215934,2437,train,0.9215934\n-2.2403789,-0.32226983,0.08017398,3.6585233,-0.59367526,-0.7470785,1.1605905,1.3117715,93,train,1.3117715\n-3.3235428,0.05779651,-0.072551526,2.3674996,0.9935225,-0.38439396,1.4014724,1.3117092,328,train,1.3117092\n0.39985317,-0.31844044,-0.060685426,2.0384345,-0.1862844,-0.47397494,0.8200463,1.1881533,217,train,1.1881533\n-2.9711218,0.15210338,-0.12032673,2.3063235,1.1335592,-0.2858801,1.3565646,1.2526083,1448,train,1.2526083\n-1.7625993,-0.027350552,-0.08519986,1.4868206,1.3352377,-0.467935,1.1108282,1.1754413,445,train,1.1754413\n0.20405439,0.37486783,-0.30080587,1.703057,2.3422744,-1.0981923,0.6952957,0.9236799,2029,train,0.9236799\n-3.181214,0.058626235,-0.06627023,2.2578363,1.2748429,-0.31454536,1.2391313,1.2737193,462,train,1.2737193\n-0.4664709,0.17610258,-0.17516237,1.4410912,1.8913519,-0.8992409,0.8165325,0.97710645,1934,train,0.97710645\n-0.80147773,0.66749716,-0.41618103,3.8109348,2.4653614,-1.1292683,0.6656762,1.4541245,2226,train,1.4541245\n-2.008464,0.32644397,-0.2671587,2.2533445,1.4062905,-0.08865193,1.2041727,1.1733847,1646,train,1.1733847\n-2.1427135,0.18339372,-0.1762609,2.0187132,1.1037055,-0.19770576,1.3138173,1.3722802,486,train,1.3722802\n10.176121,-1.2833186,0.3941083,-6.035607,-3.0039248,-1.1737972,1.2239892,1.1789362,1081,train,1.1789362\n2.1311798,0.28205198,-0.27991086,0.6475975,2.0085173,-1.4762715,0.5561669,0.9416119,2207,train,0.9416119\n0.33849615,0.15145427,-0.198349,0.8694053,1.9475143,-0.9349035,0.827749,1.1100147,2088,train,1.1100147\n-0.99691576,-0.0109639345,-0.092869505,0.8182525,1.5887595,-0.58409894,1.0862509,1.1011063,610,train,1.1011063\n0.9675522,0.7602719,-0.50241524,2.7533603,3.214833,-1.6676941,0.6274298,0.89728385,2309,train,0.89728385\n-2.0179904,0.30872646,-0.25284746,2.1642418,1.3379921,-0.050438225,1.2376747,1.1716815,1636,train,1.1716815\n2.4387152,-0.80556655,0.17427902,2.0987132,-1.9624119,-1.3641574,1.0079739,1.652092,2880,train,1.652092\n2.581119,-0.25509536,-0.15139818,1.0364654,-0.46019536,-1.0549445,0.6714911,1.0329418,868,train,1.0329418\n2.9178252,-0.764097,0.16243255,0.9533615,-2.02304,-0.74746746,1.034589,1.6175828,964,train,1.6175828\n1.0839237,-0.4572592,-0.01908796,2.5596516,-0.9713204,-0.5974216,0.7651732,1.3236705,820,train,1.3236705\n0.1950714,-0.09781418,-0.10480867,0.7715291,1.1271396,-1.0329,0.9129871,1.0457957,1261,train,1.0457957\n-2.9724777,0.16352095,-0.122537844,2.2813015,1.1654161,-0.2740368,1.3564923,1.48123,470,train,1.48123\n-2.725066,0.20759249,-0.1107185,1.8628467,1.7038138,-0.2825649,1.2113761,1.2148503,1701,train,1.2148503\n-0.9020378,0.6544924,-0.41264027,3.694408,2.4472604,-1.0929724,0.6945516,2.0095747,748,train,2.0095747\n-2.5947218,-0.23488098,0.04602451,3.2615094,-0.113147214,-0.6480478,1.2462189,1.0505592,2754,train,1.0505592\n-0.034432378,-0.50426346,0.05717415,3.1771958,-1.4641045,-0.30722508,1.0262932,1.4564031,304,train,1.4564031\n0.89513427,-0.082033254,-0.14871949,0.54969734,0.9279143,-0.9620065,0.84761703,1.110713,2829,train,1.110713\n-3.3884456,0.20995723,-0.087022655,2.1874843,1.5504826,-0.23726021,1.2968602,1.1232193,1265,train,1.1232193\n2.6540673,-0.7918232,0.15813096,1.2941693,-2.0261214,-0.70275146,1.0363024,1.4928632,1553,train,1.4928632\n1.7995441,-0.08644549,-0.16830269,0.57096237,0.5321602,-1.0785416,0.720951,1.1815904,1307,train,1.1815904\n-2.443421,-0.27065182,0.05493355,3.3592823,-0.3008363,-0.6177886,1.2319107,1.1651436,1556,train,1.1651436\n0.092461206,-0.2056561,-0.09702877,1.408454,0.491316,-0.57584625,0.9111252,1.2108612,36,train,1.2108612\n9.200195,-1.3598288,0.43858176,-4.0164475,-3.2831948,-1.3413982,1.2045636,1.1773218,154,train,1.1773218\n1.0947648,-0.19672586,-0.14340615,1.092687,0.28230715,-0.80714905,0.81754124,1.1733758,810,train,1.1733758\n-0.26757488,0.1850331,-0.18560633,1.2546462,1.9039056,-0.8918451,0.85011727,0.9925933,2137,train,0.9925933\n1.6807476,-0.1727555,-0.12733848,0.22443825,1.4598135,-1.0650606,0.81884503,1.1520698,2056,train,1.1520698\n-0.009167799,-0.19363014,-0.09731911,1.3610733,0.57720006,-0.5813997,0.9275301,1.1669253,78,train,1.1669253\n1.0382153,-0.23199011,-0.12563792,1.2574208,0.10959337,-0.6977838,0.81660926,1.1652213,226,train,1.1652213\n8.770123,-1.3774066,0.36492717,-2.4565113,-3.3108695,-1.7346095,0.97557205,0.7455798,139,train,0.7455798\n1.3354355,-0.72221977,0.15152322,2.9185753,-1.7579547,-1.2291857,0.9863611,1.3704691,101,train,1.3704691\n-2.1699462,0.3280869,-0.25453922,2.2987797,1.4471015,-0.108699374,1.2017434,1.2639838,1916,train,1.2639838\n5.7935867,1.1230571,-0.7438108,-2.942006,4.852891,-2.0427487,0.6801842,0.5433829,2460,train,0.5433829\n-2.6825051,-0.20521235,0.030396162,3.0884838,0.101180784,-0.6616024,1.2655925,1.1027923,1176,train,1.1027923\n8.379191,1.2807258,-0.794434,-6.093066,5.5832477,-2.8004882,0.7630346,1.4289412,2531,train,1.4289412\n1.66442,0.39670947,-0.31638944,1.6110898,2.3800836,-1.5003628,0.4752818,0.76677585,2005,train,0.76677585\n0.16096702,-0.611646,0.1272169,3.6417997,-1.4995215,-1.2192543,1.0090909,1.379363,2783,train,1.379363\n6.862571,0.00061547314,-0.33382398,-2.5357752,1.114354,-1.4727304,0.561828,0.9602056,2599,train,0.9602056\n3.6991043,0.53477174,-0.38841367,0.9520034,2.620361,-2.2445836,0.40202627,0.84228075,2190,train,0.84228075\n1.2574544,0.3725653,-0.30192778,1.6011604,2.0644772,-1.8739918,0.46867916,1.2410449,389,train,1.2410449\n1.1053176,-0.23985086,-0.12341391,1.279402,0.049143326,-0.6938811,0.80792356,1.1029124,260,train,1.1029124\n-1.8078712,0.18191212,-0.1922721,1.8771278,1.0227968,-0.15989263,1.312946,1.3561621,2671,train,1.3561621\n-1.4095489,0.19486739,-0.17700917,1.5853888,1.9657191,-0.50846446,0.9867172,1.0840192,1752,train,1.0840192\n-0.7597791,0.69760954,-0.427936,3.9878829,2.5117989,-1.1629038,0.6622017,1.0852944,562,train,1.0852944\n1.5951802,0.25408497,-0.26413715,0.816101,2.0202584,-1.3027662,0.623315,1.0291543,654,train,1.0291543\n1.8535517,-0.7762852,0.18086383,2.1144192,-1.9942844,-0.9754134,1.060937,1.2893276,860,train,1.2893276\n0.4042802,-0.34209943,-0.05458468,2.2172208,-0.29280794,-0.48352876,0.8138314,1.1591449,893,train,1.1591449\n-1.2161776,0.23937842,-0.20493264,1.5885081,2.0691462,-0.5375787,0.9658617,1.0846992,1842,train,1.0846992\n-0.30815002,-0.4803297,0.049478766,3.1938684,-1.3081957,-0.27998012,1.0423107,1.405673,879,train,1.405673\n0.6466482,-0.27406085,-0.09106734,1.71399,-0.075214975,-0.5362162,0.8234868,1.1183124,88,train,1.1183124\n2.5999734,-0.19484049,-0.15972249,-0.07237302,1.4580085,-1.1265603,0.7655231,1.1894057,2138,train,1.1894057\n-1.6492554,-0.07264483,-0.082366,1.6369562,1.2283957,-0.4343987,1.0728863,1.126659,711,train,1.126659\n-2.06613,0.012784543,-0.08388432,1.5460438,1.4217042,-0.41940174,1.1420597,1.2020477,1200,train,1.2020477\n-2.37254,0.33121172,-0.23111787,2.2500043,1.4999847,-0.12435184,1.2205641,1.1426449,1925,train,1.1426449\n5.9104223,-0.1867916,-0.29922482,-1.4353935,1.2345396,-1.1632737,0.59254855,1.4354506,2167,train,1.4354506\n6.8230095,0.7833314,-0.5655081,-2.0704236,3.6435633,-2.8673918,0.51377946,1.3090863,2688,train,1.3090863\n1.8299015,0.40037903,-0.32378653,1.4434367,2.421145,-1.4787774,0.49740887,1.2079816,2083,train,1.2079816\n-0.29460782,-0.09655121,-0.0869482,0.8122052,1.2707132,-0.89205974,0.980377,1.0453736,1563,train,1.0453736\n0.89455664,-0.4140066,-0.0323996,2.3966787,-0.78948444,-0.54501766,0.7575139,1.3185782,2891,train,1.3185782\n0.10074634,-0.15939142,-0.11312605,1.0936785,0.6743515,-0.6605853,0.9448759,1.0768788,50,train,1.0768788\n7.949593,0.46308386,-0.38735402,-6.1956925,1.6046573,-1.8129159,0.8241652,0.66177857,2488,train,0.66177857\n0.11164778,-0.102094725,-0.09993815,0.79136974,1.1523768,-1.0231241,0.9253226,1.0261805,1354,train,1.0261805\n7.984097,-1.2609336,0.40528104,-2.8975956,-3.083079,-1.3444495,1.1704041,1.3162441,166,train,1.3162441\n2.3896523,-0.54414785,0.028944064,2.5316503,-2.1116729,-1.0595286,0.73500067,1.1692569,132,train,1.1692569\n-2.3007143,0.26005566,-0.1998606,2.0331504,1.2686211,-0.051946275,1.3167404,1.3405738,1502,train,1.3405738\n-0.048238333,-0.13142413,-0.08347707,0.8181121,1.2834873,-0.9091015,0.94031024,1.0529042,1631,train,1.0529042\n1.340185,-0.22881071,-0.14636393,1.1776061,0.09645283,-0.7788792,0.8018754,1.5449764,819,train,1.5449764\n6.134689,1.2184695,-0.7929112,-4.1653924,5.101821,-1.5891831,0.7818768,0.80595475,2484,train,0.80595475\n-1.5977464,-0.07117246,-0.08258871,1.5716809,1.2399677,-0.45770085,1.0754063,1.1191888,1441,train,1.1191888\n-2.5995154,0.0324318,-0.078822784,2.0116434,1.3705906,-0.32778373,1.1456189,1.1956791,2713,train,1.1956791\n5.6624055,-0.2287769,-0.28130874,-1.1402203,1.2248405,-1.2873242,0.5660898,1.5286596,2343,train,1.5286596\n2.968947,-0.85059065,0.20630066,1.6922617,-2.0663571,-1.4352309,1.0142154,1.6465473,2887,train,1.6465473\n-2.587269,-0.24490249,0.034097336,3.2762492,0.03165846,-0.6822196,1.2101687,1.125777,1174,train,1.125777\n-3.2493927,0.23769715,-0.10071926,2.117741,1.6071568,-0.21789938,1.2939608,1.2378324,1382,train,1.2378324\n0.0024294246,-0.13382314,-0.08264218,0.7970836,1.2811425,-0.9153202,0.93300176,1.0438254,1650,train,1.0438254\n-0.3959105,0.70714766,-0.44017577,3.6846411,2.634964,-1.2147627,0.67330855,1.5019627,2283,train,1.5019627\n4.354427,-0.24704076,-0.21270117,-0.6227629,1.3187459,-1.2484862,0.66436076,1.3314655,2182,train,1.3314655\n-1.3933578,0.16365008,-0.16924734,1.5763615,1.9103247,-0.50541985,0.9784615,1.0158596,599,train,1.0158596\n-2.218073,0.36440855,-0.27778006,2.6181233,1.6608292,-0.30763564,1.0794407,1.2393174,2652,train,1.2393174\n-0.29825172,-0.5632722,0.116333395,3.5004723,-1.5076492,-0.7485315,1.074157,1.4475169,295,train,1.4475169\n-0.24080831,-0.09956202,-0.08703977,0.7978504,1.2556976,-0.90682214,0.9763115,1.0470078,1483,train,1.0470078\n3.103886,-0.85672146,0.2059717,1.5981905,-2.0710797,-1.4583578,1.0159642,1.7853014,953,train,1.7853014\n-2.037089,0.20836191,-0.14553742,1.6342864,1.8460705,-0.3691726,1.1207224,1.1576704,1924,train,1.1576704\n-3.1508684,-0.12059381,-0.011278905,2.9178321,0.6666948,-0.51055735,1.2740055,1.3808783,2809,train,1.3808783\n0.72753644,-0.09294833,-0.15105225,0.57672316,0.88346165,-0.8647163,0.8754114,1.0575173,1165,train,1.0575173\n7.2068515,1.2866075,-0.80282474,-4.7889147,5.1825256,-2.0441618,0.6853822,0.802863,2487,train,0.802863\n2.4172919,-0.8048997,0.17681049,2.1192422,-1.9589083,-1.3751144,1.0054759,1.5966561,2567,train,1.5966561\n-0.668234,-0.39807045,0.034895066,2.893397,-1.0255425,-0.17056285,1.1079787,1.3515866,216,train,1.3515866\n1.9149774,-0.77668554,0.17500152,2.4324098,-1.912362,-1.2950419,1.0034778,1.13147,265,train,1.13147\n2.8701124,0.45881948,-0.36421952,1.3021669,2.5223365,-1.87375,0.4145341,1.096027,2165,train,1.096027\n12.538529,-1.5929761,0.44071507,-6.7897162,-3.702662,-1.7333493,1.1308224,1.1316074,1080,train,1.1316074\n0.034646988,-0.57488215,0.10562578,3.1820238,-1.5648344,-0.56482047,1.0630633,1.4250069,231,train,1.4250069\n6.4323316,-1.1237013,0.32986408,-0.93579775,-2.6892333,-1.7603722,1.0584222,1.872941,945,train,1.872941\n1.186718,0.34556592,-0.30374056,1.2642093,2.3043447,-1.1990606,0.616196,1.0159806,2125,train,1.0159806\n-1.3720983,0.1839746,-0.17401369,1.5507308,1.9461218,-0.5021693,0.9865313,1.0716317,637,train,1.0716317\n3.8314087,-0.24495141,-0.19386952,-0.4336194,1.3686124,-1.2513741,0.68295485,1.0626228,2564,train,1.0626228\n2.0916831,-0.737534,0.13932219,1.6489518,-1.9615774,-0.58719516,1.0225743,1.6461296,2620,train,1.6461296\n-2.0686502,0.10810797,-0.15993337,2.1405044,0.929031,-0.26890522,1.3017354,1.3539732,452,train,1.3539732\n1.3305,-0.09229327,-0.16839656,0.53659564,0.70831054,-0.92399937,0.8023025,1.1148584,2751,train,1.1148584\n-0.44758505,-0.29352808,-0.0477438,2.3416367,0.0829666,-0.39558652,0.87599677,0.990388,57,train,0.990388\n-2.0038972,0.18222097,-0.14837493,1.7703023,1.7945292,-0.42148107,1.0627426,1.0583267,1775,train,1.0583267\n-3.4983459,0.16791241,-0.07879356,2.1920474,1.3440367,-0.29576522,1.3727014,1.3203642,1220,train,1.3203642\n0.2982345,-0.3406009,-0.044099137,2.2009256,-0.29664275,-0.4370173,0.8113792,0.9478301,2781,train,0.9478301\n2.3627155,-0.08368719,-0.18916282,0.54129785,0.19659467,-1.0912191,0.6820554,1.2099502,1792,train,1.2099502\n9.885076,-1.3312453,0.41732252,-5.059777,-3.1949463,-1.2533641,1.210923,1.1559132,920,train,1.1559132\n0.9826519,0.7463049,-0.48901024,2.9104805,3.1389954,-1.7472814,0.5826708,1.3032844,2354,train,1.3032844\n-0.69485056,0.7014384,-0.43088716,3.9460535,2.5192966,-1.1677296,0.66909117,1.4976823,400,train,1.4976823\n3.792255,-0.2502848,-0.19455568,-0.43083462,1.4153522,-1.2469246,0.6725211,0.9247081,2581,train,0.9247081\n8.144197,-1.2918799,0.40087798,-2.4135692,-3.0530233,-1.7937977,1.0883751,0.8773973,1106,train,0.8773973\n1.1091422,-0.088069305,-0.15099932,0.512136,0.84635544,-0.9630314,0.8304948,1.0919421,1240,train,1.0919421\n8.882281,-1.3922321,0.36238033,-2.5419905,-3.373097,-1.7232138,0.9700575,1.3665335,145,train,1.3665335\n-1.2768697,0.5342875,-0.39087847,3.232763,2.0197842,-0.8100012,0.8737855,1.1032455,1912,train,1.1032455\n1.1259936,-0.7245006,0.1552418,2.7829533,-1.8286546,-0.8821661,1.039348,1.4320664,2900,train,1.4320664\n1.3076489,-0.7208874,0.15315065,2.8129902,-1.7727985,-1.1754347,1.0153337,1.5563445,816,train,1.5563445\n-1.326121,-0.111904986,-0.07886264,1.6403233,1.0967699,-0.4597235,1.0335331,1.0190988,1345,train,1.0190988\n0.77063596,-0.39847687,-0.037755296,2.3453317,-0.6636947,-0.5022264,0.7714708,1.2089443,2873,train,1.2089443\n6.996201,0.01274962,-0.34384006,-2.7737272,1.0955853,-1.3464048,0.6050221,1.3544294,416,train,1.3544294\n-2.806029,0.21779764,-0.12057226,1.9822701,1.667528,-0.2972888,1.2168967,1.264342,1698,train,1.264342\n-0.20257722,-0.22253765,-0.074439496,1.6706876,0.47445026,-0.50011885,0.911417,1.1590683,70,train,1.1590683\n-2.1771343,0.035475276,-0.08350026,1.5517246,1.4590167,-0.41091815,1.1564738,1.1053964,1269,train,1.1053964\n-2.228019,0.3552254,-0.26609698,2.4490318,1.603411,-0.22339584,1.1325269,1.1979927,621,train,1.1979927\n0.4222926,0.71569157,-0.46709573,3.2735195,2.8937054,-1.4356802,0.62228465,1.6625569,2267,train,1.6625569\n4.890188,1.1007879,-0.75395,-2.8836086,5.0043173,-1.3409685,0.8325144,2.06251,2532,train,2.06251\n7.862726,0.9901866,-0.6674657,-4.1326094,4.566474,-3.048546,0.60611063,0.86474323,2544,train,0.86474323\n1.568808,0.38148147,-0.31640273,1.3685654,2.3871076,-1.371395,0.5423825,0.8716035,1968,train,0.8716035\n0.48534814,-0.34473798,-0.054864224,2.188258,-0.34031355,-0.4898111,0.80556035,1.1300387,817,train,1.1300387\n1.6421859,0.56242406,-0.38568228,2.368252,2.6784499,-1.8065685,0.45208988,1.1703818,554,train,1.1703818\n-2.746689,-0.18635137,0.027185716,3.0487993,0.16031532,-0.6416735,1.2800138,1.2533927,1180,train,1.2533927\n4.565681,-0.22151092,-0.23449522,-0.77755713,1.414925,-1.2300274,0.6468958,1.5214212,2203,train,1.5214212\n-0.7386091,0.68327475,-0.41912472,3.9697936,2.5228648,-1.1975384,0.6334988,1.0226054,556,train,1.0226054\n-0.4552925,-0.060395956,-0.0964152,0.7577792,1.291056,-0.8592633,1.0147772,1.1456777,1256,train,1.1456777\n-0.315627,-0.084459476,-0.09045417,0.7894843,1.2619709,-0.8981212,0.9877854,1.0608586,1215,train,1.0608586\n-0.67587084,0.13311303,-0.14926918,1.176065,1.8281693,-0.7487216,0.95055276,1.1861392,2110,train,1.1861392\n-1.7571045,0.28287566,-0.24798831,1.8333261,1.192977,0.06901437,1.316506,1.4023736,1543,train,1.4023736\n-0.16562183,-0.10215524,-0.08619003,0.7473673,1.2516022,-0.905922,0.97142076,1.0036576,1388,train,1.0036576\n0.2678191,-0.37718445,-0.026761578,2.474203,-0.50067073,-0.41770956,0.7989604,1.1894419,778,train,1.1894419\n3.0836368,0.48515373,-0.3760584,1.2331772,2.5742555,-1.9588428,0.41828263,1.0465368,2225,train,1.0465368\n-3.492233,0.14475854,-0.07624845,2.1678123,1.2837938,-0.31146568,1.388216,1.3405777,1189,train,1.3405777\n8.5218935,1.275066,-0.7689429,-6.434241,5.2888684,-2.9843552,0.7392259,1.0517334,2472,train,1.0517334\n-2.0711014,-0.3424243,0.08708314,3.6008272,-0.6709749,-0.7729931,1.1714044,1.3655709,1124,train,1.3655709\n-1.2697158,-0.042960122,-0.09563973,1.1745465,1.2458013,-0.5202984,1.0943933,1.1396439,719,train,1.1396439\n5.3614173,0.6164214,-0.44731146,-0.46448752,2.86618,-2.5610254,0.48248145,1.3481879,2264,train,1.3481879\n-2.753151,-0.19291128,0.027116412,3.0925214,0.16432485,-0.64628994,1.2615848,1.282323,2740,train,1.282323\n0.92434764,-0.5458987,0.030279221,3.0018065,-1.4831476,-0.56306535,0.7515938,0.9743104,2774,train,0.9743104\n0.71259576,-0.17243624,-0.092971064,0.65705276,1.380883,-1.022645,0.8527189,0.9955222,1818,train,0.9955222\n-1.2403165,-0.11983568,-0.07858047,1.6426097,1.0615283,-0.46711984,1.02397,1.0311613,1328,train,1.0311613\n1.0549179,0.78088295,-0.52002656,2.5412383,3.3239539,-1.655387,0.65952426,1.2961929,2322,train,1.2961929\n-1.5367637,0.4947527,-0.3685317,3.0789304,1.8632065,-0.6089453,0.92836356,1.220592,2653,train,1.220592\n5.6514006,-0.2262233,-0.27940235,-1.1883881,1.2190775,-1.2274673,0.5913681,0.98810226,2404,train,0.98810226\n-2.2532797,0.3300581,-0.24494354,2.2777689,1.463263,-0.115527675,1.2101038,1.2694819,1919,train,1.2694819\n0.720703,-0.40441352,-0.031454556,2.3719566,-0.63842165,-0.47602162,0.7943641,1.2617743,1011,train,1.2617743\n-1.6466252,0.28851008,-0.25690642,1.7618669,1.1839997,0.08766664,1.3228964,1.4998983,1574,train,1.4998983\n-0.26511198,-0.5665811,0.116941795,3.4868016,-1.5161161,-0.7502228,1.0735414,1.5797285,189,train,1.5797285\n2.9520047,0.3927118,-0.33612633,0.9918235,2.2066212,-2.3434403,0.36219776,1.0053835,364,train,1.0053835\n0.2720517,-0.083291486,-0.14114982,0.52599066,0.945207,-0.7444056,0.9617942,1.06055,1304,train,1.06055\n-2.023461,0.060936734,-0.15018499,2.1304872,0.8341595,-0.29773763,1.307494,1.3056356,727,train,1.3056356\n3.401607,0.9629275,-0.6640568,-0.8291715,4.4038844,-1.5046581,0.7816264,1.6624553,2542,train,1.6624553\n-1.181836,0.56675845,-0.395305,3.1597307,2.1931336,-0.91790986,0.8371881,1.0897526,2119,train,1.0897526\n-1.8335171,0.099046886,-0.17057328,2.065066,0.8506843,-0.24894996,1.2992816,1.2382708,1420,train,1.2382708\n-3.1002083,0.23160908,-0.104955934,2.0409214,1.6627123,-0.22780576,1.2701306,1.1178226,1494,train,1.1178226\n4.0054383,-0.2436647,-0.1995135,-0.49054804,1.3358115,-1.2580503,0.6804169,1.4223335,2162,train,1.4223335\n0.108659096,-0.09852454,-0.10106642,0.7711586,1.1522335,-1.0174806,0.9297842,1.0357631,1404,train,1.0357631\n0.6668597,0.3104231,-0.28512698,1.2531971,2.2509377,-0.9761543,0.709287,1.1422672,1953,train,1.1422672\n0.5080001,-0.16444556,-0.08872398,0.7246511,1.3769789,-0.9951766,0.871635,1.084868,1820,train,1.084868\n7.300431,0.82931256,-0.5989812,-2.774171,3.977218,-2.883277,0.5387964,1.5931188,2432,train,1.5931188\n-0.30448306,-0.09163783,-0.08777902,0.797563,1.2657328,-0.8965143,0.98547846,1.0593123,1610,train,1.0593123\n6.580118,1.2302607,-0.7914843,-4.303935,5.0680676,-1.8172287,0.7358359,0.98580587,2499,train,0.98580587\n-1.2894895,-0.006202452,-0.10196535,0.9321184,1.3680725,-0.5943373,1.1242365,1.1391526,341,train,1.1391526\n5.434823,-0.19360909,-0.2802762,-1.1276075,1.3263701,-1.2329185,0.5888659,1.4470577,2401,train,1.4470577\n0.34691086,0.27563533,-0.26282954,1.1756369,2.2012975,-0.82165676,0.77647066,1.4244837,1875,train,1.4244837\n3.1160607,0.53889126,-0.38769126,1.3244112,2.6523728,-2.0724509,0.4233422,0.998557,394,train,0.998557\n2.4471688,-0.12713668,-0.1839386,0.60194606,0.017555779,-1.0564803,0.70837784,1.1289887,2622,train,1.1289887\n1.406176,-0.7047647,0.12113752,3.1047442,-1.7547582,-1.1943014,0.91259533,1.4310477,229,train,1.4310477\n0.92254865,-0.08497024,-0.141237,0.54033536,0.9216008,-1.0032104,0.84874254,1.120718,2695,train,1.120718\n-1.353591,0.60695,-0.39578837,3.664791,2.2921944,-1.0381354,0.7602891,1.1889622,2556,train,1.1889622\n-3.4063323,0.059787054,-0.05702458,2.3352718,1.167659,-0.36206406,1.3201948,1.3071274,1457,train,1.3071274\n4.5003214,-0.9591145,0.2516378,0.718348,-2.2884543,-1.6536607,1.0043489,1.8895475,1552,train,1.8895475\n-2.1478744,0.048487652,-0.08453415,1.465521,1.4935435,-0.433324,1.1680722,1.0694625,1583,train,1.0694625\n3.8239768,-0.87469167,0.14929293,1.8952998,-2.686538,-1.2858658,0.7358754,1.4638042,113,train,1.4638042\n-0.34467608,-0.343443,0.0054876567,2.3270369,-0.8270942,-0.27961874,1.2153028,1.6458361,806,train,1.6458361\n1.8725833,0.40092167,-0.32513484,1.4076524,2.4285274,-1.4789829,0.5004274,1.2822139,2078,train,1.2822139\n-2.5411828,-0.24741203,0.052059464,3.318902,-0.17344177,-0.6892173,1.2324433,1.3669353,2747,train,1.3669353\n-0.6239386,0.6917098,-0.43205145,3.8665893,2.4829888,-1.1320959,0.6874899,1.4005167,396,train,1.4005167\n0.8875815,-0.68355787,0.14445382,3.1638877,-1.6935097,-1.1925586,1.0065792,1.5170193,237,train,1.5170193\n8.888116,-1.3327379,0.4286166,-3.7152412,-3.2309835,-1.3421845,1.1960593,1.3316947,159,train,1.3316947\n-2.0224507,0.08408459,-0.09491214,1.4532192,1.6899766,-0.46396825,1.1200984,1.1456331,1661,train,1.1456331\n-2.1159477,0.3447499,-0.25177863,2.1060455,1.4480647,-0.11954635,1.2310078,1.2263184,1762,train,1.2263184\n-2.3427312,0.19214217,-0.16640653,2.0564005,1.1529045,-0.20307806,1.3230382,1.329293,495,train,1.329293\n4.189802,-0.9218201,0.16190238,1.5325011,-2.7328913,-1.267557,0.7517961,0.89544106,178,train,0.89544106\n-1.8135207,-0.3862028,0.10831931,3.7308078,-0.93702096,-0.7306523,1.123878,1.3455839,1678,train,1.3455839\n4.255501,-0.21576254,-0.22117434,-0.7408261,1.4360602,-1.174264,0.6803632,1.3784871,2285,train,1.3784871\n6.72564,-0.053392198,-0.3318924,-2.2918556,1.1270969,-1.3527294,0.57390964,1.3895962,2390,train,1.3895962\n3.0501008,-0.7368824,0.10471672,2.3049345,-2.3417904,-1.1660832,0.73695254,1.5220432,927,train,1.5220432\n5.9386005,-1.0836,0.32292753,-0.7687924,-2.637684,-1.633511,1.091223,1.6825626,1099,train,1.6825626\n-3.4810908,0.24960648,-0.1023432,2.2782962,1.5072713,-0.20147966,1.3413134,1.7286491,1214,train,1.7286491\n3.738011,-0.21064156,-0.15885329,0.6734143,-1.0283403,-1.2517573,0.6056278,1.3839378,923,train,1.3839378\n4.5003443,-0.9591177,0.25164083,0.71832,-2.288468,-1.6536621,1.0043508,1.7363341,1549,train,1.7363341\n-3.4311185,0.051339265,-0.05738096,2.3325224,1.0514392,-0.39093918,1.3944633,1.1189901,1339,train,1.1189901\n11.92479,-1.5771163,0.5230033,-5.9710274,-3.7421086,-1.844248,1.2197399,1.1907606,917,train,1.1907606\n4.802849,-0.9871089,0.27320504,0.3617381,-2.3946466,-1.6482068,1.0334517,1.7382791,979,train,1.7382791\n-1.1465253,0.55385405,-0.3994979,3.2997627,2.0969932,-0.90021616,0.8449991,1.1036956,2659,train,1.1036956\n5.3735366,-1.0175499,0.2787793,-0.0045209946,-2.4350822,-1.7327882,1.0249736,1.7735367,1155,train,1.7735367\n0.6793783,-0.08955018,-0.12659669,0.6344928,0.9856766,-1.0505894,0.8693462,1.1296835,1347,train,1.1296835\n7.7849784,0.991424,-0.6704554,-4.0367866,4.6305056,-3.0192876,0.61165315,0.879199,2551,train,0.879199\n0.28500628,-0.12995373,-0.09936071,0.8802534,1.1311011,-1.0747696,0.88864803,0.9934765,1567,train,0.9934765\n-0.7756856,0.6908143,-0.4236746,3.9878712,2.5236063,-1.1790285,0.648027,1.2420502,561,train,1.2420502\n-0.7912909,-0.45712683,0.058679126,3.252373,-1.176604,-0.23410673,1.0576401,1.3857707,209,train,1.3857707\n6.002413,-0.18235335,-0.29402938,-1.4031948,1.2013353,-1.3526264,0.5372799,0.48090142,2456,train,0.48090142\n0.22233935,-0.124954104,-0.09947588,0.8791843,1.149305,-1.057472,0.89509743,1.0455425,1514,train,1.0455425\n1.5206654,-0.18609378,-0.11635189,0.32096824,1.4287964,-1.0792074,0.810681,1.1610754,2680,train,1.1610754\n0.8877069,-0.60114753,0.07654219,2.7248101,-1.6610634,-0.4537227,1.0128703,1.4986959,2569,train,1.4986959\n4.839232,-0.9865196,0.2680525,0.43673116,-2.368158,-1.6908526,1.0095149,1.650672,965,train,1.650672\n-1.919996,0.20706598,-0.15209074,1.6231894,1.86227,-0.39308664,1.092724,1.1443763,1665,train,1.1443763\n-2.1580281,0.3473743,-0.25968495,2.2794285,1.5080587,-0.151299,1.1856718,1.2085,1719,train,1.2085\n-0.25151387,-0.2124849,-0.080112986,1.6353577,0.54976577,-0.5216743,0.9211396,1.1437243,1728,train,1.1437243\n-1.5578215,0.53035045,-0.36575586,2.969871,2.0382357,-0.7045586,0.90285224,1.2019669,2033,train,1.2019669\n4.8810334,-0.9917534,0.2717129,0.37096956,-2.3852284,-1.6867758,1.0164257,1.7918355,974,train,1.7918355\n1.3712044,0.76494366,-0.5109781,2.419382,3.3153758,-1.7838918,0.62166625,1.5624974,2330,train,1.5624974\n1.8208082,0.39515838,-0.32108966,1.459308,2.403322,-1.4842997,0.49102113,0.99654305,1983,train,0.99654305\n-0.5552857,-0.21678373,-0.063686,1.8598485,0.5637611,-0.45333388,0.9223605,0.9959931,2743,train,0.9959931\n-2.29412,0.13172211,-0.15286672,2.1840572,1.0095654,-0.2710004,1.311465,1.3301176,524,train,1.3301176\n4.1536098,-0.87467307,0.22607838,0.050747372,-2.2886856,-1.0067426,1.066616,1.7029011,1101,train,1.7029011\n-1.3830185,-0.11073519,-0.07945293,1.699124,1.0938703,-0.44388455,1.032823,1.1665007,1343,train,1.1665007\n9.822417,-1.4430077,0.40103537,-3.5141757,-3.4500802,-1.8295251,1.0394933,1.1669173,146,train,1.1669173\n-0.67299515,0.67451155,-0.41920874,3.7776864,2.498164,-1.14933,0.6602357,1.1442269,2297,train,1.1442269\n6.532873,0.7162821,-0.5240898,-1.7221986,3.3202608,-2.713713,0.5180637,1.605561,2170,train,1.605561\n-3.016091,0.19816467,-0.097100504,2.0271125,1.6667314,-0.26150745,1.228776,1.0868418,1613,train,1.0868418\n-0.6617893,-0.060985878,-0.08661859,0.7890808,1.3389186,-0.79059947,1.0447559,1.0396986,1517,train,1.0396986\n6.633651,1.2201939,-0.7775434,-3.9640224,5.0895195,-2.1609356,0.6606915,0.5587607,2478,train,0.5587607\n-1.0881912,-0.13045514,-0.0777947,1.5920712,1.0074201,-0.4811222,1.0140849,1.0464844,2724,train,1.0464844\n2.9001048,-0.17495927,-0.18219894,0.7840312,-0.4361916,-1.1758076,0.66383487,1.3303622,907,train,1.3303622\n0.017265134,-0.2281978,-0.083869524,1.6000354,0.39372915,-0.5206182,0.89689773,1.1557857,1,train,1.1557857\n-3.2962627,0.14383781,-0.09936149,2.2974074,1.1763352,-0.2982548,1.3866644,1.1850058,506,train,1.1850058\n10.199127,-1.4452415,0.46610746,-4.1800737,-3.455186,-1.8922691,1.1457738,1.033048,160,train,1.033048\n1.4627115,-0.23230596,-0.14133617,1.1981912,0.024292186,-0.81304437,0.76980156,1.2022723,2886,train,1.2022723\n-0.22198437,0.6975101,-0.4371126,3.74231,2.6930404,-1.3472764,0.6137527,1.3144438,567,train,1.3144438\n-1.182218,-0.01295809,-0.10332643,0.87529576,1.3317034,-0.59487236,1.1203673,1.094875,517,train,1.094875\n0.55796736,0.7570898,-0.49310783,3.0628376,3.073679,-1.511458,0.6394763,1.3554502,2347,train,1.3554502\n-3.3836281,0.007307416,-0.046614245,2.4692786,0.92395467,-0.42813435,1.3921604,1.3200163,2830,train,1.3200163\n-1.3306478,-0.0029365458,-0.10049451,0.9381736,1.397322,-0.59783,1.1265838,1.1304755,693,train,1.1304755\n-1.4334706,-0.014096502,-0.09698529,1.1126014,1.3391023,-0.50576305,1.1216215,1.1585222,1440,train,1.1585222\n-1.2530215,-0.37816486,0.039229497,3.0185256,-0.7981002,-0.15624417,1.1211022,1.2465194,870,train,1.2465194\n4.342012,0.55566424,-0.40973067,0.2867745,2.7249198,-2.2705896,0.46116275,1.9512472,1840,train,1.9512472\n-1.6702547,-0.069993235,-0.0826102,1.6303792,1.2389618,-0.43204105,1.0760428,1.120213,1450,train,1.120213\n-3.455621,0.106297836,-0.06319797,2.2834303,1.2777028,-0.32015267,1.315387,1.3652083,687,train,1.3652083\n2.1451406,0.5730853,-0.39881214,2.0743191,2.7179253,-1.9119424,0.45055223,0.8165282,347,train,0.8165282\n3.46223,-0.83155686,0.19757152,0.5688228,-2.1952724,-0.8764875,1.055769,1.6534493,900,train,1.6534493\n4.710138,-0.26248193,-0.22816704,-0.6895853,1.3156605,-1.2815477,0.6236541,0.9978369,573,train,0.9978369\n-1.7919081,0.10427997,-0.10603089,1.4188044,1.7471311,-0.51565546,1.0804726,1.1091621,1810,train,1.1091621\n1.0986866,0.3148369,-0.2904734,1.4409046,2.2383552,-1.234003,0.56826437,0.9092685,1936,train,0.9092685\n1.9298002,-0.29159513,-0.13245331,1.3075995,-0.3484208,-0.82172495,0.72048366,1.2726724,956,train,1.2726724\n-2.1419811,0.36477366,-0.27384904,2.4227328,1.6282003,-0.2661397,1.1178741,1.2378334,1715,train,1.2378334\n1.7161212,-0.7638258,0.16542679,2.401871,-1.9121704,-1.0296603,1.0389929,1.5972302,2879,train,1.5972302\n5.099516,-0.2505445,-0.2516433,-0.8252869,1.3023016,-1.3361776,0.58559644,1.0137177,2466,train,1.0137177\n1.9417686,-0.09604934,-0.18191005,0.5248843,0.39394087,-0.98212254,0.7443684,1.1712852,2865,train,1.1712852\n0.8589968,-0.40004846,-0.041805394,2.281456,-0.6626967,-0.51173383,0.7750538,1.3162203,764,train,1.3162203\n-0.4790675,-0.076415904,-0.087882936,0.81341493,1.3081874,-0.847274,1.0088965,1.0273575,1505,train,1.0273575\n1.5298254,0.78575367,-0.5306102,2.1519382,3.4304874,-1.8024055,0.6485894,1.7459588,2698,train,1.7459588\n-3.5188255,0.18070287,-0.08689083,2.2466376,1.3413466,-0.27512833,1.3800068,1.3931153,442,train,1.3931153\n-3.0733275,0.2303773,-0.107338555,2.0442724,1.6495149,-0.23032692,1.2674767,1.2580712,1300,train,1.2580712\n3.2309852,0.4187787,-0.34856424,1.0075556,2.2532809,-2.3169844,0.34324005,0.75989246,503,train,0.75989246\n3.9733737,0.6206667,-0.42746574,0.7290537,2.840543,-2.3099785,0.46458218,1.3293238,2254,train,1.3293238\n-2.3771398,-0.19822714,0.0028143744,2.9294777,0.02208195,-0.3382404,1.261698,1.4013788,64,train,1.4013788\n0.88277775,0.2345595,-0.23833525,1.329924,1.9904025,-1.2753532,0.59880084,0.7541187,2582,train,0.7541187\n6.539586,0.6588691,-0.4716019,-3.3983324,2.6054552,-2.8246014,0.64411306,1.3694348,2496,train,1.3694348\n-1.3071125,0.5806974,-0.3947663,3.472757,2.1990864,-0.9872314,0.8022545,1.2440535,1948,train,1.2440535\n-0.3294966,0.71244097,-0.44485548,3.6670327,2.66819,-1.2439779,0.6696842,1.1977271,2194,train,1.1977271\n8.25015,0.8939555,-0.56597596,-5.8354974,3.129417,-2.9025893,0.7204366,1.0031796,425,train,1.0031796\n-0.10372211,-0.39043808,0.021542225,2.3322315,-0.98922,-0.2891988,1.1809119,1.4204776,983,train,1.4204776\n2.5231435,-0.8107017,0.17191058,2.1243997,-1.9638455,-1.4055061,0.9894978,1.5470663,2877,train,1.5470663\n-3.478222,0.24968034,-0.10511633,2.2928681,1.4824508,-0.1968137,1.3474923,1.2105843,1311,train,1.2105843\n8.775019,0.98897696,-0.6003668,-6.908055,3.2219732,-2.7900634,0.78097034,0.7288474,2501,train,0.7288474\n6.025302,-0.18014944,-0.30358738,-1.4952403,1.2203664,-1.1751342,0.5808255,1.1669834,2700,train,1.1669834\n-2.3713942,-0.2756082,0.055703446,3.307184,-0.2387045,-0.74401903,1.2226365,1.3685429,1150,train,1.3685429\n-1.167715,0.22211158,-0.18954547,1.456487,2.0215104,-0.5114167,0.9887824,1.2193798,1811,train,1.2193798\n4.1257644,0.5397743,-0.40312204,0.48140737,2.6907055,-2.221316,0.4494387,1.626268,2279,train,1.626268\n-1.6638343,-0.06376314,-0.08303324,1.5805256,1.2611747,-0.45148772,1.0827897,1.0964992,466,train,1.0964992\n-1.8237091,-0.04558934,-0.08234225,1.5886837,1.307212,-0.41285563,1.0994636,1.1320235,1367,train,1.1320235\n1.83451,0.8046354,-0.5387977,1.950907,3.5006213,-2.0325983,0.6004604,1.1377788,2450,train,1.1377788\n2.3952572,-0.8040806,0.17747484,2.1036396,-1.9609314,-1.3538276,1.0121996,1.8610024,2572,train,1.8610024\n-3.373014,0.25954312,-0.10853915,2.2178957,1.555717,-0.19237688,1.325393,1.2290325,1371,train,1.2290325\n-0.13751198,0.22431323,-0.2339636,1.3694873,2.1296089,-0.7773936,0.79150534,1.0154883,1883,train,1.0154883\n-2.1201925,0.04396046,-0.08371289,1.4449373,1.470128,-0.4286149,1.1660556,1.0146089,1313,train,1.0146089\n6.7043786,0.7226698,-0.53371525,-1.849351,3.3340676,-2.7941017,0.5046577,1.6452091,2701,train,1.6452091\n3.9642947,-0.8406403,0.21316546,0.15173312,-2.2249115,-0.97455037,1.0598412,1.7747889,1021,train,1.7747889\n3.9444377,-0.36909705,-0.061087426,0.839503,-1.8677396,-1.1024204,0.62134415,0.72520584,1082,train,0.72520584\n-1.9807336,0.21734533,-0.19841821,1.9503133,1.1082872,-0.0967906,1.308347,1.2574632,1406,train,1.2574632\n0.330654,-0.32497093,-0.05900595,2.143977,-0.18312676,-0.4828718,0.82458055,1.1595334,790,train,1.1595334\n-0.26907346,0.71676564,-0.44742534,3.5613217,2.6562989,-1.2222393,0.69092613,1.1520433,1836,train,1.1520433\n2.559716,0.47879785,-0.35929924,1.7076907,2.5021307,-1.9350215,0.3753814,0.44735974,2579,train,0.44735974\n-1.9441708,0.4248796,-0.32388785,2.7883317,1.6996443,-0.42537507,1.0142891,1.187156,1901,train,1.187156\n6.994857,0.7992926,-0.57881683,-2.2663746,3.7820318,-2.9432826,0.4858838,0.66700625,2408,train,0.66700625\n8.170067,-1.3360411,0.34028494,-1.8977065,-3.2641766,-1.6790111,0.943859,1.1489799,129,train,1.1489799\n1.019785,0.26632154,-0.25121573,1.27817,2.0151107,-1.297487,0.60627145,0.83125657,2238,train,0.83125657\n-1.9750175,-0.0063220663,-0.08402865,1.5436635,1.3874046,-0.41980353,1.1283377,1.2641563,1254,train,1.2641563\n-0.03295377,-0.27095357,-0.058507167,1.9030463,0.16633005,-0.4400526,0.86875105,1.1107142,2852,train,1.1107142\n-1.9111437,0.2104012,-0.15179114,1.5908302,1.8803339,-0.38598764,1.1074197,1.1470757,1785,train,1.1470757\n2.6093385,0.47445914,-0.3594541,1.6786637,2.4912758,-1.9481711,0.37166184,0.5342048,2576,train,0.5342048\n3.3689587,-0.8781179,0.21821754,1.4264282,-2.122581,-1.4895273,1.014112,1.7696788,1070,train,1.7696788\n7.8317876,0.43203768,-0.3748803,-5.745523,1.5475384,-2.0026648,0.7644673,0.86998904,2473,train,0.86998904\n-2.3191779,0.27180973,-0.20688882,2.0989199,1.2867151,-0.04864661,1.3049107,1.3141313,1487,train,1.3141313\n5.2776475,0.6322568,-0.44939417,-0.41667986,2.9175963,-2.5340774,0.48971152,0.99525917,2210,train,0.99525917\n5.271922,-1.0243461,0.30055836,-0.35186496,-2.574573,-1.4686323,1.1010519,1.7248719,1028,train,1.7248719\n-1.9293257,0.11458182,-0.10652577,1.6994153,1.7535028,-0.5504619,1.0306453,1.1042243,1758,train,1.1042243\n3.2538667,-0.868164,0.22119178,1.2912592,-2.1610727,-1.2915262,1.0600611,1.9078733,2795,train,1.9078733\n6.778161,0.75144005,-0.5515954,-1.8858728,3.4890835,-2.9215362,0.4654794,1.6377047,2412,train,1.6377047\n6.931231,-1.042195,0.32133576,-2.5470383,-2.7492268,-1.2209605,1.1556038,1.1736572,1085,train,1.1736572\n-1.3602848,0.16427553,-0.17039438,1.565573,1.9179366,-0.51167,0.9752981,1.0079188,595,train,1.0079188\n-0.9474243,0.14434683,-0.14655405,1.3975825,1.8287982,-0.74568874,0.9428062,1.2618436,2059,train,1.2618436\n-2.546302,-0.23802842,0.044665206,3.1970959,-0.09612408,-0.6641055,1.2590607,1.2053003,1147,train,1.2053003\n1.0123942,-0.69117165,0.14451376,3.127696,-1.6952021,-1.2237293,0.9931005,1.3632116,254,train,1.3632116\n4.8607264,1.0322697,-0.7034399,-1.9047607,4.567863,-1.9430767,0.71210456,1.3431642,2525,train,1.3431642\n0.21946388,-0.08097927,-0.13954233,0.5246718,0.9684701,-0.7437409,0.96781343,1.0594562,1162,train,1.0594562\n7.8727207,0.40278018,-0.3791389,-5.661444,1.5369447,-1.8788109,0.76995826,1.2890468,422,train,1.2890468\n0.11378566,-0.10443636,-0.099348195,0.79945755,1.1543642,-1.0257232,0.9236747,1.0325447,1309,train,1.0325447\n-2.1989133,0.06765914,-0.08647508,1.4778471,1.5527328,-0.42646632,1.1684693,1.0624814,1493,train,1.0624814\n-2.154774,0.050539944,-0.08418735,1.4601909,1.49427,-0.42959574,1.1689588,1.0346652,1611,train,1.0346652\n-2.0230808,0.31415504,-0.2680495,2.3420613,1.4038132,-0.0879407,1.1833594,1.1541351,1249,train,1.1541351\n0.05437324,-0.5581764,0.08038014,3.2123425,-1.501802,-0.4642792,1.0390006,1.4476047,1130,train,1.4476047\n1.0623022,0.31050897,-0.28923717,1.408686,2.2324824,-1.2032561,0.58426905,0.9410951,2032,train,0.9410951\n-3.5531383,0.19340229,-0.085203916,2.2975454,1.4066535,-0.25935772,1.3498046,1.2747595,1435,train,1.2747595\n3.2790072,0.42903042,-0.3537321,1.04176,2.2879379,-2.284049,0.34338468,1.031005,559,train,1.031005\n-1.6465476,-0.06355047,-0.08304719,1.5699236,1.2606882,-0.45861638,1.0822983,1.1344641,994,train,1.1344641\n-2.0799677,0.077363625,-0.090097755,1.3870363,1.6173967,-0.45165738,1.1532072,1.1478333,2637,train,1.1478333\n-1.1873739,-0.34499627,0.016606525,2.8747776,-0.69706714,-0.059246168,1.1294672,1.2864465,2867,train,1.2864465\n1.4438521,0.3597307,-0.31181163,1.2950375,2.3471615,-1.294421,0.57256126,1.0786841,2130,train,1.0786841\n-0.47922516,-0.0746613,-0.08822465,0.80738235,1.3040774,-0.8493924,1.0103993,1.0191288,933,train,1.0191288\n-3.1555166,0.2426917,-0.12911893,2.2094364,1.3710952,-0.17162797,1.3547955,1.1981232,1409,train,1.1981232\n5.719316,-0.22431241,-0.28434098,-1.1887094,1.2184268,-1.269077,0.5692513,0.67696774,2373,train,0.67696774\n0.76285106,0.25516164,-0.24987125,1.708257,1.9314382,-1.3684523,0.5566922,1.2634889,2128,train,1.2634889\n1.4014388,-0.727611,0.15417904,2.788509,-1.7793301,-1.206448,1.0068679,1.5033331,818,train,1.5033331\n3.9534616,-0.90807116,0.1562841,1.6581676,-2.608921,-1.2201165,0.77171427,1.1952944,1042,train,1.1952944\n9.434729,-1.4140342,0.394725,-3.1525607,-3.371827,-1.8257183,1.0280415,0.11080226,19,train,0.11080226\n-2.4740877,-0.24440366,0.042657174,3.2456672,-0.26659253,-0.43048552,1.2345525,1.2265406,94,train,1.2265406\n4.4817996,-0.22028366,-0.23059598,-0.77037793,1.4210571,-1.2140018,0.656972,1.4818174,2302,train,1.4818174\n-1.8682002,-0.02476446,-0.08509413,1.5399288,1.3581967,-0.45267868,1.1176716,1.1348803,677,train,1.1348803\n5.9962077,-0.1918803,-0.2990084,-1.4343021,1.2076107,-1.218418,0.5705161,1.3261845,2355,train,1.3261845\n-0.52212334,0.7044377,-0.43756655,3.784461,2.5291998,-1.1508385,0.68993485,1.4724574,350,train,1.4724574\n-1.7576499,0.057663906,-0.16409819,2.0384147,0.7684997,-0.26318583,1.3024431,1.2443755,1344,train,1.2443755\n-3.456914,0.091149524,-0.06532854,2.2145393,1.1610329,-0.3540262,1.3941377,1.2904687,1419,train,1.2904687\n0.77289236,-0.09234857,-0.15325743,0.5582057,0.87380725,-0.86002445,0.874252,1.0550112,1181,train,1.0550112\n-3.4865499,0.13582891,-0.07782431,2.1948597,1.2462041,-0.31565163,1.3954104,1.1549134,478,train,1.1549134\n2.250432,0.44506168,-0.34201014,1.6136652,2.4955847,-1.7088835,0.41672096,1.0769691,2227,train,1.0769691\n-0.1405869,-0.11265722,-0.083060585,0.76459473,1.2680289,-0.8876104,0.9614519,1.0492218,1702,train,1.0492218\n-2.2201726,0.12466709,-0.15532494,2.171679,0.98630184,-0.27147758,1.3078365,1.2696276,717,train,1.2696276\n-2.4945722,-0.24023762,0.04155451,3.2395458,-0.24690624,-0.4285863,1.235743,1.3709074,55,train,1.3709074\n1.0794089,0.35738862,-0.29793486,1.6907048,2.2780328,-1.3607323,0.5201677,0.7671389,2024,train,0.7671389\n0.74292916,0.30651528,-0.2853801,1.2272942,2.2417765,-0.9872477,0.70104533,1.0480382,1943,train,1.0480382\n-1.9440928,-0.02988765,-0.08586592,1.7045443,1.3293928,-0.39013085,1.098864,1.1281414,337,train,1.1281414\n4.1319346,-0.9267181,0.22681352,1.0708191,-2.2056584,-1.6335245,0.9829916,1.6187484,2794,train,1.6187484\n-3.4940903,0.24577066,-0.10415874,2.3081672,1.4691612,-0.2019486,1.3499571,1.1635818,1357,train,1.1635818\n-0.014308258,-0.12684773,-0.08071843,0.7582472,1.2843822,-0.9047958,0.9364974,0.9977433,2630,train,0.9977433\n1.1937703,-0.12799343,-0.16214663,0.6449429,0.54453355,-0.85389024,0.8320293,1.1185565,1138,train,1.1185565\n-3.3361554,-0.035130948,-0.025132617,2.5620322,0.81312644,-0.4863365,1.3772805,1.1939474,734,train,1.1939474\n-1.3376653,-0.22125897,-0.03466491,2.5498796,-0.22737372,-0.09248374,1.1928958,1.3010945,95,train,1.3010945\n0.93656546,0.7592537,-0.5006202,2.7999382,3.2048807,-1.6793653,0.620288,1.3284823,2370,train,1.3284823\n2.0348773,-0.6873645,0.11894395,1.7555015,-1.8153497,-0.556099,1.0071099,1.6284368,2800,train,1.6284368\n0.6024154,0.35280827,-0.29690164,1.5357296,2.3130906,-1.1402162,0.65066504,1.0960909,2027,train,1.0960909\n-2.0549297,0.2970375,-0.24517632,2.1507595,1.3077483,-0.040419303,1.2548741,1.1761013,1689,train,1.1761013\n-1.7640088,-0.40285164,0.11216921,3.8896468,-0.99655735,-0.8189556,1.0830008,1.3051884,21,train,1.3051884\n1.4168907,-0.7308979,0.15376638,2.8634377,-1.7754068,-1.2332774,0.9851812,1.3871994,317,train,1.3871994\n-1.552218,-0.0786208,-0.081989504,1.5930059,1.2141111,-0.461917,1.0677267,1.0898696,667,train,1.0898696\n6.01463,1.1876291,-0.7691887,-3.660606,5.0018606,-1.8646958,0.71309876,0.71114,2470,train,0.71114\n-3.2794268,0.19648755,-0.08725298,2.1765516,1.5827411,-0.24408291,1.2602135,1.1569417,1578,train,1.1569417\n-2.25271,0.3539037,-0.25503638,2.3298142,1.5791299,-0.19534321,1.1634157,1.1286272,2444,train,1.1286272\n-2.4493842,-0.23871043,0.03855149,3.1944041,-0.24490616,-0.40579855,1.2381951,1.3098094,84,train,1.3098094\n0.22156376,-0.62212515,0.12777893,3.2471282,-1.6385455,-0.7562632,1.0577222,1.4839272,230,train,1.4839272\n-3.3621042,0.23662117,-0.09617049,2.1820915,1.578998,-0.22234067,1.3071738,1.2369308,1607,train,1.2369308\n-0.18185267,-0.5802572,0.120969184,3.4839733,-1.5395837,-0.8010866,1.0732752,1.7143149,184,train,1.7143149\n0.3856102,-0.36662477,-0.04307759,2.3295476,-0.36470556,-0.4694928,0.82604766,1.1157207,804,train,1.1157207\n-1.8221897,0.25206923,-0.22266418,1.7784575,1.1264638,0.022361366,1.3309163,1.3333881,1355,train,1.3333881\n-0.12278903,-0.5868318,0.12231669,3.4510968,-1.5534718,-0.8031202,1.0719401,1.5690341,302,train,1.5690341\n-0.42507336,-0.29374674,-0.050472725,2.3096654,0.16250175,-0.40873212,0.8835547,1.2016863,1116,train,1.2016863\n-0.90087014,0.6041147,-0.41577908,3.3753893,2.277066,-0.97316194,0.8127361,1.2252235,2103,train,1.2252235\n0.5196213,-0.32467392,-0.06450967,2.035682,-0.24875449,-0.493744,0.8102426,1.1947263,102,train,1.1947263\n-3.3355215,0.23707141,-0.0971745,2.1653376,1.585669,-0.22000152,1.3040096,1.2365024,1373,train,1.2365024\n-0.79397285,-0.46916324,0.060869135,3.2694035,-1.14759,-0.293349,1.0653169,1.323521,792,train,1.323521\n-2.21046,0.35495284,-0.26839694,2.4595532,1.5988548,-0.2221436,1.130264,1.3807318,619,train,1.3807318\n1.3540094,0.19977649,-0.24596383,0.7793212,2.0116363,-1.1846268,0.6694615,1.1375643,2217,train,1.1375643\n-0.5841769,0.5516475,-0.41481403,2.8351977,2.0645554,-0.82597864,0.9104515,1.7313509,1995,train,1.7313509\n-2.315906,0.26875645,-0.20518503,2.0888934,1.2804544,-0.05003414,1.3067462,1.2552105,1482,train,1.2552105\n-3.5231757,0.17037305,-0.08978558,2.2829125,1.3078371,-0.26766124,1.3809205,1.3250669,1358,train,1.3250669\n-2.1973279,0.23627962,-0.15377943,1.7464927,1.8460053,-0.3640399,1.1329192,1.1887786,1796,train,1.1887786\n1.4164366,-0.51022494,-0.002437621,2.733178,-1.304167,-0.69383657,0.70764136,1.2905486,970,train,1.2905486\n0.0052597634,0.7283064,-0.46435615,3.5462513,2.797899,-1.3157282,0.64354,0.94143265,2247,train,0.94143265\n-2.3125203,0.26986355,-0.20448737,2.0719788,1.2851459,-0.04450738,1.3103242,1.3813941,1562,train,1.3813941\n-1.9571539,0.087371305,-0.09374757,1.2883887,1.6695669,-0.4328768,1.153457,1.1034298,1639,train,1.1034298\n-2.3012526,0.3084639,-0.2311888,2.2416208,1.4138834,-0.09478975,1.2376328,1.271277,1652,train,1.271277\n2.6300843,0.8649906,-0.5887404,0.8001652,3.79947,-2.0065744,0.6845142,1.384388,2393,train,1.384388\n1.9848998,-0.18289614,-0.13767962,0.12295367,1.4585166,-1.0900201,0.80165607,1.1815603,1958,train,1.1815603\n6.049813,0.6798955,-0.49286208,-1.0647532,3.1415148,-2.7153125,0.45363325,0.8530086,2369,train,0.8530086\n8.640121,0.9593042,-0.59110534,-6.5890255,3.196398,-2.8267279,0.7653965,1.1793354,2537,train,1.1793354\n2.5597954,-0.82884634,0.20542051,1.7802583,-2.0707126,-1.2353047,1.0491089,1.5513489,856,train,1.5513489\n-3.3674784,-0.022765085,-0.031117514,2.5488415,0.8453144,-0.46892905,1.3826243,1.1953853,2759,train,1.1953853\n3.5871184,0.50352913,-0.38760707,0.87416494,2.615886,-2.0865371,0.43026873,1.3513916,2185,train,1.3513916\n-3.259563,0.22145766,-0.093462996,2.1035748,1.6167579,-0.24085887,1.2849752,1.4836373,1234,train,1.4836373\n2.8049722,-0.21058744,-0.16153261,-0.088068806,1.4276683,-1.1804895,0.73967457,1.2037134,2660,train,1.2037134\n-3.4678297,0.12167397,-0.07500466,2.201372,1.2078485,-0.330979,1.3983934,0.69102556,1333,train,0.69102556\n-1.3384507,-0.11266091,-0.0788399,1.6599082,1.095084,-0.45818257,1.0324758,1.1035762,1341,train,1.1035762\n-1.0798808,0.61616796,-0.40885964,3.5751047,2.3313873,-1.009256,0.7693243,1.1666414,2100,train,1.1666414\n-2.1396754,0.36072478,-0.2627385,2.259129,1.5770439,-0.21055739,1.162475,1.1677465,1827,train,1.1677465\n4.650333,-0.98353404,0.18152197,1.1011587,-2.797172,-1.2991477,0.7743261,0.85300183,1083,train,0.85300183\n1.9612771,0.41885218,-0.32725823,1.7023656,2.4310517,-1.6406728,0.42567942,0.90268815,2139,train,0.90268815\n2.4682043,0.84511775,-0.56781805,1.1752721,3.6860151,-2.1164124,0.627125,1.2497907,2596,train,1.2497907\n-1.6611329,0.049153395,-0.1680857,1.9547092,0.7348686,-0.24662118,1.3135563,1.2843455,1329,train,1.2843455\n-2.286591,0.049627498,-0.08501399,1.6607631,1.4825093,-0.3972326,1.1513519,1.2605488,1216,train,1.2605488\n-1.1690063,0.20405006,-0.18591338,1.4691851,2.0081985,-0.52382773,0.9767317,1.0103658,1815,train,1.0103658\n-1.4691646,-0.42898914,0.11221699,3.7271426,-1.1245762,-0.6818235,1.0996807,1.3302808,873,train,1.3302808\n1.9181544,0.4081274,-0.32613027,1.5491258,2.4275775,-1.5551914,0.46387902,0.85354084,1293,train,0.85354084\n-1.1816642,-0.0108231325,-0.10366925,0.8767981,1.3450568,-0.6101543,1.1178772,1.0787487,475,train,1.0787487\n-1.584707,0.5277396,-0.36115593,2.9010546,2.0507948,-0.69108266,0.9066317,1.167178,2039,train,1.167178\n-3.422842,0.25594962,-0.10674705,2.2446997,1.5283793,-0.19176531,1.3347322,1.1780814,1316,train,1.1780814\n6.869317,0.7792223,-0.5649802,-2.110281,3.628512,-2.8746638,0.5104327,0.867496,2386,train,0.867496\n-3.0000725,-0.14367613,0.0032789467,2.9626122,0.47021466,-0.5514223,1.278192,1.291243,1241,train,1.291243\n1.7205491,0.86358213,-0.5949426,1.1370741,3.7692516,-1.4729743,0.7853877,1.8531376,2434,train,1.8531376\n-1.7163852,0.2127927,-0.16191953,1.547219,1.9170539,-0.41323477,1.0761908,1.144173,1722,train,1.144173\n2.3319244,-0.52862734,0.020393454,2.4698453,-1.9831873,-1.0231403,0.72398037,1.1058296,8,train,1.1058296\n3.5603054,0.5206905,-0.38956118,0.92950547,2.637118,-2.1072457,0.43072337,1.1474437,2220,train,1.1474437\n-1.2604494,0.18523979,-0.17926636,1.5395274,1.9762046,-0.52985483,0.96719635,1.0598003,614,train,1.0598003\n1.378228,0.36408722,-0.31217843,1.3206234,2.3560863,-1.2873266,0.5790742,1.9764452,2312,train,1.9764452\n2.8898027,-0.7190615,0.10075882,2.4015381,-2.2949803,-1.1361349,0.7367693,1.1756277,2608,train,1.1756277\n1.235975,0.37227237,-0.29993963,1.6092961,2.0615752,-1.8514825,0.47149077,0.7712374,542,train,0.7712374\n2.799569,0.38696113,-0.33541733,1.006098,2.1915994,-2.351076,0.37417865,0.7036067,352,train,0.7036067\n-0.2003504,-0.1093471,-0.08530768,0.81173825,1.2587193,-0.8999286,0.96722037,1.0345688,1498,train,1.0345688\n4.208237,-0.9359766,0.23897956,0.9320528,-2.23166,-1.6165779,1.0014199,1.55488,909,train,1.55488\n-2.8070123,-0.13722657,-0.011934976,2.8587308,0.3751124,-0.42071486,1.3200144,1.194433,1173,train,1.194433\n-0.19590756,0.23485868,-0.23598799,1.3851781,2.1405795,-0.7604239,0.8028742,1.17955,1889,train,1.17955\n1.9357649,-0.6370443,0.07156972,2.7910771,-1.9531053,-0.87808424,0.7920079,0.9166121,861,train,0.9166121\n-3.5296504,0.1560284,-0.06853374,2.209418,1.3264048,-0.28442857,1.3507315,1.2126763,487,train,1.2126763\n-0.31988326,0.68908906,-0.43140396,3.687849,2.6408315,-1.2597413,0.63844335,1.442874,655,train,1.442874\n7.12612,1.2855213,-0.8013801,-4.750332,5.16655,-2.0045352,0.6896554,0.7635246,2483,train,0.7635246\n-1.4963511,0.53175163,-0.37301663,3.0856924,2.0140526,-0.7226495,0.8935032,1.3700066,2031,train,1.3700066\n-1.7646033,-0.027459573,-0.085139215,1.4923786,1.3352748,-0.47065073,1.1110755,1.111118,406,train,1.111118\n6.2755275,0.7071087,-0.51666766,-1.2418661,3.2446227,-2.8791838,0.42175636,0.32199174,2455,train,0.32199174\n-0.30320206,0.18219167,-0.18314964,1.2744787,1.8981107,-0.889487,0.8498188,1.086889,1007,train,1.086889\n-1.8898318,-0.38738638,0.06874876,3.914597,-0.6044896,-0.7742029,1.0112667,1.2184961,79,train,1.2184961\n6.5402317,-0.080585435,-0.32856962,-2.0658689,1.1668904,-1.2946557,0.57618123,1.2151092,2391,train,1.2151092\n8.661525,0.96131957,-0.5866503,-6.859713,3.1737683,-2.7756462,0.7849723,0.7084263,2489,train,0.7084263\n0.34416628,-0.64690375,0.13799697,3.2974026,-1.6792517,-0.9031706,1.0505946,1.353167,279,train,1.353167\n9.193984,-1.3783597,0.4432544,-3.371255,-3.2785747,-1.8090166,1.1314322,1.2117001,173,train,1.2117001\n0.17896044,-0.11463824,-0.09938206,0.82665765,1.1475663,-1.0438942,0.909803,1.0444826,1213,train,1.0444826\n-1.3736937,0.65122473,-0.4065098,4.163782,2.3500612,-1.0974343,0.680072,0.8993592,2583,train,0.8993592\n0.5275005,-0.16856544,-0.08754737,0.6828905,1.3770322,-0.99080867,0.86832833,1.0328472,1754,train,1.0328472\n0.41052303,-0.29978937,-0.069795705,1.939941,-0.10698406,-0.48399162,0.8273117,1.247668,27,train,1.247668\n-0.6648489,-0.05816502,-0.08698154,0.7766492,1.3337305,-0.79265714,1.0486034,1.0487336,1374,train,1.0487336\n-3.3568635,0.21405804,-0.088058226,2.1658213,1.57139,-0.2374129,1.2924917,1.1321983,1524,train,1.1321983\n5.617127,-1.0362265,0.28761205,-0.18886307,-2.474842,-1.768064,1.0227444,1.8303574,2733,train,1.8303574\n-2.075728,0.02156199,-0.08354045,1.5026507,1.4335195,-0.42762443,1.151254,1.107485,1310,train,1.107485\n2.5632045,0.5559804,-0.39688227,1.7482126,2.7091694,-1.9682566,0.4398686,1.6300395,539,train,1.6300395\n-0.040924568,-0.10535751,-0.09431525,0.82273805,1.2103518,-0.98624563,0.9397101,1.101428,774,train,1.101428\n-1.4946362,0.19727778,-0.16966479,1.5355756,1.9326237,-0.46257335,1.0236726,1.0904889,2442,train,1.0904889\n-3.236286,-0.07327849,-0.016318407,2.6378307,0.7375237,-0.5160855,1.3446226,1.2301425,733,train,1.2301425\n-0.63211083,0.6831688,-0.4261195,3.7926621,2.5280497,-1.1470375,0.6683514,1.4147995,2184,train,1.4147995\n10.466705,-1.4660211,0.47695246,-4.4868965,-3.5082738,-1.8719898,1.1617814,1.059749,150,train,1.059749\n1.0922916,0.75138175,-0.4950107,2.7619927,3.191914,-1.7483197,0.5973467,0.9640298,2374,train,0.9640298\n-3.2543962,0.23464826,-0.09853312,2.117113,1.6190841,-0.22143899,1.2893747,1.3855488,1542,train,1.3855488\n0.6012378,-0.35516185,-0.061472204,2.1581314,-0.36378834,-0.49593624,0.81428975,1.2202295,2884,train,1.2202295\n4.5872498,1.0039662,-0.6787797,-1.2748175,4.435536,-2.0920944,0.66572773,1.2073479,2550,train,1.2073479\n-0.03295377,-0.27095357,-0.058507167,1.9030463,0.16633005,-0.4400526,0.86875105,1.072661,2850,train,1.072661\n4.5861726,-0.9660584,0.25653145,0.641671,-2.3117123,-1.6615882,1.0069332,1.8728192,1063,train,1.8728192\n0.5607888,-0.28564566,-0.08225419,1.8245418,-0.1044035,-0.5154104,0.8227778,1.1711799,306,train,1.1711799\n5.0544887,-0.24525237,-0.2512051,-0.81380635,1.3235494,-1.3376803,0.58567816,0.957614,2469,train,0.957614\n0.7340129,-0.6314403,0.09668331,2.7785559,-1.6604235,-0.5196647,1.0372353,1.484098,2573,train,1.484098\n-2.1261935,-0.34243584,0.07416365,3.7263167,-0.5620381,-0.8385794,1.122263,1.2818063,71,train,1.2818063\n-0.2761419,0.184148,-0.18492852,1.2608527,1.9022202,-0.89203894,0.8494126,0.9920903,2315,train,0.9920903\n3.6877608,-0.23465952,-0.14694765,0.73679405,-1.0963922,-1.2364095,0.60486937,1.1809888,1084,train,1.1809888\n0.29568776,0.7157528,-0.46419892,3.4138954,2.8610103,-1.4280471,0.6123512,1.1475966,568,train,1.1475966\n1.9312118,-0.17140767,-0.16242008,0.7708873,0.13542823,-0.9725809,0.75400734,0.9625076,2624,train,0.9625076\n2.3965003,-0.11622639,-0.19088928,0.61261094,0.06567146,-1.0575932,0.6994922,1.2158372,2895,train,1.2158372\n3.6621149,-0.85458905,0.1409642,1.9684824,-2.6073964,-1.2218904,0.74089026,1.3533399,2604,train,1.3533399\n1.5842588,0.25428873,-0.26414055,0.81414425,2.0209122,-1.2968651,0.6265093,1.06719,2288,train,1.06719\n1.1059942,-0.11021856,-0.16138029,0.5235315,0.638786,-0.823989,0.85937935,1.0084319,2858,train,1.0084319\n-0.57585543,0.27266136,-0.24383947,1.5635133,2.1793633,-0.7205603,0.85082346,1.0668784,1881,train,1.0668784\n3.4531577,0.4333252,-0.35597247,0.8944109,2.2808049,-2.3743944,0.3449852,1.722051,365,train,1.722051\n0.77381104,-0.093543574,-0.15304133,0.5698316,0.8656435,-0.8624427,0.87163544,1.0551367,1185,train,1.0551367\n0.6096134,-0.26732054,-0.09326771,1.6875335,-0.025787285,-0.53658074,0.82913816,1.1265066,107,train,1.1265066\n2.4172919,-0.8048997,0.17681049,2.1192422,-1.9589083,-1.3751144,1.0054759,1.4827385,2574,train,1.4827385\n-1.8903657,0.24789435,-0.1726554,1.659783,1.9217659,-0.39656475,1.0989939,1.1398575,1275,train,1.1398575\n-3.415562,0.06306441,-0.056093886,2.2110472,1.0904446,-0.3768286,1.3963165,1.2465236,1186,train,1.2465236\n0.78595936,0.76968455,-0.50628877,2.8399553,3.1985757,-1.5931727,0.64406323,1.0524883,2367,train,1.0524883\n-2.2396684,0.14217463,-0.15901862,2.1586423,1.0257902,-0.2576448,1.308501,1.2866553,484,train,1.2866553\n0.09332188,-0.1448459,-0.0818916,0.78760034,1.3238522,-0.9227479,0.9199417,1.011494,1923,train,1.011494\n-3.2251744,0.22456276,-0.09669979,2.0837336,1.6335361,-0.22674698,1.2808398,1.1934807,1522,train,1.1934807\n-2.2219424,0.04259549,-0.08451058,1.5782533,1.485052,-0.41687316,1.1602515,1.1310633,1223,train,1.1310633\n-1.5219722,-0.086616516,-0.0805676,1.604678,1.1876906,-0.44782028,1.0609561,1.0696123,1417,train,1.0696123\n-1.6366397,0.45294905,-0.33645263,2.4743855,1.8064034,-0.47324046,1.0223938,1.3859683,1872,train,1.3859683\n0.9405064,-0.22160341,-0.12729561,1.232405,0.19381283,-0.7092679,0.8287176,1.1750525,290,train,1.1750525\n-0.26917395,0.6965091,-0.43666425,3.6744254,2.6750965,-1.2834388,0.63901216,1.1793072,2197,train,1.1793072\n-1.8156263,0.44982496,-0.33580905,2.7658803,1.766772,-0.46642384,0.99585104,1.1541129,1882,train,1.1541129\n8.275934,-1.3086416,0.42661208,-2.9364195,-3.1473544,-1.4832524,1.1712544,1.2009772,164,train,1.2009772\n-0.70245045,0.67965233,-0.42415687,3.817721,2.4990633,-1.1315982,0.67076963,1.3115833,2295,train,1.3115833\n-3.553436,0.21545088,-0.09338815,2.3225486,1.413762,-0.23969945,1.3606275,1.0760591,1259,train,1.0760591\n-1.2589667,0.6070837,-0.39838284,3.546405,2.31309,-1.0272875,0.76850206,1.2072294,2140,train,1.2072294\n-1.9284232,-0.35766608,0.08143644,3.606634,-0.6611086,-0.85819006,1.1424214,1.3548151,996,train,1.3548151\n-2.135455,0.35266766,-0.27687436,2.485536,1.575554,-0.21400553,1.1249833,1.169096,639,train,1.169096\n8.319115,-1.3104886,0.41343266,-2.672473,-3.097764,-1.754521,1.10756,1.1227429,592,train,1.1227429\n0.1345129,0.24341469,-0.24757884,1.351092,2.1561165,-0.84968555,0.75065714,0.9549847,1851,train,0.9549847\n2.5225987,-0.6628031,0.080650784,2.5662842,-2.1517656,-1.0586209,0.74662256,1.4931955,1055,train,1.4931955\n5.926208,-0.2072286,-0.29431245,-1.3844985,1.1944427,-1.2055801,0.58248305,1.098234,2328,train,1.098234\n2.8884602,-0.20384021,-0.16258498,-0.068066575,1.3915862,-1.2257477,0.7302833,1.2734103,2134,train,1.2734103\n4.1257644,0.5397743,-0.40312204,0.48140737,2.6907055,-2.221316,0.4494387,2.0699742,2281,train,2.0699742\n-0.05495627,-0.4895424,0.025975294,3.2706687,-1.0556973,-0.5347737,0.7968875,1.2556093,273,train,1.2556093\n2.7555387,0.38466766,-0.33077312,1.1136013,2.1921086,-2.2739766,0.36088753,1.0623341,379,train,1.0623341\n0.14199656,-0.14879306,-0.08111594,0.76331246,1.3283987,-0.9280272,0.9115983,0.9883107,1802,train,0.9883107\n-2.1383278,0.08093811,-0.09102307,1.4713566,1.6302382,-0.4572114,1.1436578,1.1195979,2634,train,1.1195979\n-3.2334056,0.21770868,-0.09314168,2.0914807,1.6228923,-0.23778485,1.2758263,1.1204176,1513,train,1.1204176\n-1.1801586,-0.013475901,-0.10330706,0.87902504,1.3289269,-0.59561557,1.1195349,1.0877724,705,train,1.0877724\n4.743807,-0.25081277,-0.23159568,-0.7506069,1.3193493,-1.2424601,0.63658255,0.8502688,2305,train,0.8502688\n-2.207181,0.040906396,-0.08394168,1.5604206,1.4739271,-0.410669,1.1601702,1.1472452,1263,train,1.1472452\n0.63612515,-0.3736099,-0.051286723,2.2320774,-0.46229032,-0.4903089,0.8065457,1.2544193,2883,train,1.2544193\n0.5470677,0.2383031,-0.23975769,1.6231589,1.9106058,-1.2738805,0.61178684,1.2234333,2121,train,1.2234333\n-3.3503115,0.21234612,-0.08766473,2.1659975,1.5701532,-0.23920467,1.289813,1.0620797,771,train,1.0620797\n-1.9634781,0.38313636,-0.29408592,2.45121,1.6465269,-0.32768694,1.0857693,1.2391673,1830,train,1.2391673\n2.660387,-0.24650101,-0.16286336,1.0177469,-0.45508537,-1.0715483,0.6650692,1.260992,1025,train,1.260992\n-2.2259512,0.33349282,-0.24390823,2.205769,1.4500209,-0.109361984,1.2248248,1.2498113,1644,train,1.2498113\n-1.8823003,0.21599069,-0.15461011,1.5715109,1.8976858,-0.384792,1.1097668,1.0541779,1675,train,1.0541779\n-1.2889744,0.53016365,-0.38010678,2.8840191,2.0608912,-0.73261136,0.9039385,1.14142,2073,train,1.14142\n-1.6371559,-0.2699393,0.0003360457,2.8494833,-0.39236435,-0.11856324,1.1771966,1.3489424,35,train,1.3489424\n6.676601,0.76471436,-0.55330855,-1.9121821,3.5285642,-2.8210173,0.52021354,1.2540424,2333,train,1.2540424\n3.204855,-0.30536622,-0.127616,1.0565022,-1.0986875,-1.0968844,0.62162566,1.0227844,2607,train,1.0227844\n5.9873934,0.6671577,-0.48610136,-0.94865394,3.0847201,-2.732282,0.43618178,0.88338184,2344,train,0.88338184\n-1.5656157,0.054839887,-0.095472194,1.1249754,1.6752348,-0.5097585,1.1078123,1.099158,625,train,1.099158\n-1.4899577,0.5784106,-0.39009383,3.7509198,2.107931,-0.9925554,0.78715295,0.9399652,2187,train,0.9399652\n-1.0100918,-0.13794062,-0.07791606,1.6108598,0.96471345,-0.49135798,1.0034868,1.0873284,2758,train,1.0873284\n-3.2987168,0.2230725,-0.093144335,2.1265142,1.6054434,-0.2305896,1.2898268,1.1830635,1605,train,1.1830635\n-2.0195727,0.2043428,-0.14519146,1.6324484,1.8412607,-0.37203404,1.116474,1.1895803,1918,train,1.1895803\n8.653178,1.2826008,-0.782885,-6.681549,5.418878,-2.8537796,0.7807438,0.8853705,2538,train,0.8853705\n6.8517847,-0.0322554,-0.33222038,-2.4672325,1.097459,-1.3999585,0.57131344,0.6519515,2436,train,0.6519515\n0.692689,-0.16641039,-0.092483506,0.57063067,1.42759,-0.9703367,0.8708109,1.073899,1846,train,1.073899\n0.6234502,-0.3669635,-0.04806068,2.2283401,-0.5117753,-0.4888437,0.7838063,0.94561964,848,train,0.94561964\n-2.2220957,0.061583176,-0.08655867,1.5178021,1.5248356,-0.42269054,1.163553,1.1755193,1384,train,1.1755193\n3.4820507,-0.22651853,-0.1822266,-0.3154254,1.3873109,-1.2375625,0.70261294,0.9401729,2155,train,0.9401729\n2.6527758,-0.12734367,-0.19095932,0.63247085,-0.12379389,-1.1014658,0.68345416,1.2402236,857,train,1.2402236\n-0.6307048,-0.06777489,-0.0854005,0.772405,1.3400463,-0.78233016,1.0435959,1.053934,1616,train,1.053934\n6.2247434,-1.1056644,0.3226853,-0.78924775,-2.6496334,-1.7466385,1.0564277,1.8634737,1022,train,1.8634737\n-1.1637537,-0.015261442,-0.10344144,0.8787129,1.3215384,-0.596975,1.1175247,1.0082743,453,train,1.0082743\n0.8291467,-0.16345122,-0.14595452,0.929299,0.48842087,-0.7955598,0.8635979,1.1433758,1122,train,1.1433758\n-1.2599448,0.5444117,-0.38321906,2.9664164,2.1311176,-0.80663466,0.86965126,1.3446517,1009,train,1.3446517\n-2.4427054,0.2825519,-0.19875728,2.0827935,1.339608,-0.05346319,1.3098813,1.6140556,1533,train,1.6140556\n3.0725887,-0.8662163,0.21554251,1.6279564,-2.1025004,-1.4361016,1.012625,1.4005557,854,train,1.4005557\n0.858535,-0.097900845,-0.15733147,0.5450604,0.774521,-0.82547295,0.87589973,1.1267343,1727,train,1.1267343\n2.2256682,0.43133175,-0.33918905,1.5065361,2.4842813,-1.6482786,0.4415835,0.98435575,2101,train,0.98435575\n-0.4247723,-0.52497876,0.093682766,3.395182,-1.447806,-0.5066787,1.0656825,1.344566,298,train,1.344566\n2.8437235,-0.19637093,-0.17061272,-0.17370494,1.4685333,-1.1167002,0.75562024,1.2763333,1989,train,1.2763333\n-2.9819539,0.180362,-0.12590593,2.2540982,1.210971,-0.25488797,1.35542,1.2577461,2712,train,1.2577461\n-1.8411663,0.35745344,-0.2959151,2.3706644,1.4949276,-0.19144194,1.1334474,1.1699532,1824,train,1.1699532\n-1.6465476,-0.06355047,-0.08304719,1.5699236,1.2606882,-0.45861638,1.0822983,1.2565444,992,train,1.2565444\n3.6856022,0.45181537,-0.3645216,0.79084617,2.318967,-2.424047,0.34744853,1.2826656,360,train,1.2826656\n2.581599,-0.81662005,0.19003132,1.9374174,-1.9939393,-1.3861922,1.0162534,1.55019,2870,train,1.55019\n-1.0597411,0.59838957,-0.41145325,3.5168066,2.260869,-0.9957656,0.7973263,1.0953913,1981,train,1.0953913\n-2.2999697,0.25631246,-0.19796161,2.0234203,1.2604753,-0.0543703,1.318928,1.3150845,930,train,1.3150845\n-2.9937484,0.034385037,-0.06804028,2.2246778,1.2580267,-0.32458636,1.2056005,1.3627484,712,train,1.3627484\n3.3482664,-0.21293408,-0.15855335,0.7475277,-0.83483565,-1.2029403,0.63117254,0.9277946,1091,train,0.9277946\n-1.0968996,0.57572746,-0.40582952,3.404145,2.1796837,-0.9677265,0.8199279,1.1149392,2002,train,1.1149392\n-1.195334,0.20581777,-0.18733408,1.5045712,2.016888,-0.5312028,0.97127813,1.1053779,1712,train,1.1053779\n-2.9281003,-0.14744824,0.011294879,2.9812949,0.34574062,-0.5544017,1.3079282,1.2069466,441,train,1.2069466\n5.7387815,1.1414223,-0.7612992,-3.3778882,4.88887,-1.7321502,0.7547675,1.2816312,421,train,1.2816312\n2.935291,-0.10029931,-0.21642868,-0.41185224,1.7314962,-1.0673996,0.7370513,1.3868322,370,train,1.3868322\n3.501852,0.5350375,-0.3879787,1.0425004,2.6355643,-2.156305,0.41773486,1.1719867,373,train,1.1719867\n0.6415299,-0.47610962,0.004407918,2.949819,-1.1094385,-0.5414182,0.73569906,1.1704395,256,train,1.1704395\n-1.8245772,0.42686906,-0.3280912,2.6407263,1.7059306,-0.42112288,1.0288965,1.1977578,1860,train,1.1977578\n-0.6290395,0.70024914,-0.4298166,3.9799197,2.6003368,-1.2533587,0.63161,1.2656982,2189,train,1.2656982\n2.2514596,-0.52439374,0.015766889,2.4612134,-1.8825252,-0.9856136,0.7166128,1.1260675,172,train,1.1260675\n-0.13538851,0.7044132,-0.44376707,3.6239595,2.7260408,-1.3322922,0.63343334,1.2078686,2304,train,1.2078686\n-1.8506314,-0.38909653,0.09248183,3.8810995,-0.840767,-0.8916778,1.076637,1.1956403,92,train,1.1956403\n1.9462855,0.30378383,-0.27924252,0.90105164,2.0282722,-1.6189952,0.5142137,0.61902577,574,train,0.61902577\n0.11705291,-0.62038964,0.1351693,3.4406908,-1.5991002,-0.9977391,1.0660683,1.5443152,876,train,1.5443152\n-2.1278956,0.122584485,-0.16120714,2.1568978,0.96425396,-0.26251894,1.3028504,1.2898425,1455,train,1.2898425\n-1.9972768,0.04298257,-0.14694981,2.134148,0.7913516,-0.3035163,1.3077946,1.2873402,330,train,1.2873402\n-1.8374869,0.08645148,-0.16773295,2.0876446,0.8246685,-0.25544295,1.2978965,1.2676579,2675,train,1.2676579\n6.673861,0.73783857,-0.53889585,-1.8611389,3.3938394,-2.7839255,0.515888,1.668434,2379,train,1.668434\n-1.968496,0.31446052,-0.27169815,2.3104932,1.3876663,-0.07686288,1.1870472,1.3352263,1247,train,1.3352263\n-2.073103,0.3398002,-0.26382396,2.2342563,1.4535621,-0.11999731,1.2036233,1.1734908,1671,train,1.1734908\n-0.6496265,-0.06411962,-0.0860963,0.78468263,1.3397653,-0.78717697,1.0438422,1.0429263,1595,train,1.0429263\n7.610289,1.0671108,-0.71106607,-3.9770198,4.9889064,-2.967762,0.64892185,0.9755637,2524,train,0.9755637\n2.8547895,0.47871462,-0.36842772,1.4538293,2.5348475,-1.9539102,0.3954741,0.9998752,2239,train,0.9998752\n-3.3873668,0.2605293,-0.11052444,2.235655,1.5394639,-0.19247709,1.3340821,1.3422772,936,train,1.3422772\n-1.3543237,0.18358578,-0.17495203,1.5527278,1.9509736,-0.5083674,0.9817618,1.1192853,620,train,1.1192853\n0.14026298,-0.14802669,-0.08275928,0.79390997,1.3146105,-0.9413387,0.9121933,1.0505751,1917,train,1.0505751\n-1.6436588,-0.41788572,0.10829905,3.8858228,-0.9943762,-0.91095686,1.0650771,1.1562815,2853,train,1.1562815\n1.9788698,0.80863637,-0.54939485,1.732359,3.5598183,-1.95292,0.6405741,1.2215827,2334,train,1.2215827\n2.1125565,0.43095604,-0.33401707,1.6804498,2.4572914,-1.6855421,0.41460136,0.9157537,2149,train,0.9157537\n1.6164142,-0.7548251,0.16474488,2.6471734,-1.8559787,-1.2368283,1.0023619,1.5243777,222,train,1.5243777\n-0.053419553,0.7089641,-0.44821617,3.5905187,2.7541094,-1.362168,0.6296885,1.1675806,2205,train,1.1675806\n1.5135249,-0.73851156,0.15575148,2.4983757,-1.8515033,-0.97540313,1.0444031,1.5554326,1014,train,1.5554326\n4.3422084,-0.2188299,-0.2242979,-0.7498206,1.4298929,-1.1905433,0.67079526,1.4910808,2196,train,1.4910808\n-2.2666326,0.074002855,-0.08972602,1.5860008,1.5732654,-0.43772656,1.1477736,1.134574,1303,train,1.134574\n0.68392605,-0.6516472,0.13473852,3.239923,-1.5871147,-1.2452458,1.0212831,1.5799568,785,train,1.5799568\n1.519125,-0.54005086,0.010322814,2.8383284,-1.5025971,-0.73575324,0.71709293,1.4035473,1039,train,1.4035473\n-3.4152207,0.15689246,-0.09342293,2.2698884,1.2381449,-0.28673264,1.3906262,1.3815227,479,train,1.3815227\n2.5099792,-0.8133484,0.18995532,1.9392053,-1.9948964,-1.3511689,1.0274905,1.5524278,2872,train,1.5524278\n-1.6915601,0.20834024,-0.16129233,1.537663,1.9119276,-0.41556585,1.0716889,1.0874369,1720,train,1.0874369\n1.3960972,0.36451837,-0.31275225,1.3098029,2.3588321,-1.288075,0.57946706,1.6990826,2132,train,1.6990826\n-0.58876014,0.7104077,-0.43616563,3.8803744,2.5655243,-1.1992772,0.67033124,1.3379424,357,train,1.3379424\n4.5394883,-0.9639624,0.25810578,0.62681484,-2.3194876,-1.6336436,1.0194436,1.734988,1062,train,1.734988\n0.7926137,-0.41970807,-0.026041836,2.43886,-0.74898094,-0.4950517,0.77909935,1.1997762,2878,train,1.1997762\n-3.433911,0.25005564,-0.102414355,2.2450676,1.5377197,-0.20823407,1.3311647,1.299812,772,train,1.299812\n-0.72116494,0.7015574,-0.4296415,3.9708378,2.5311058,-1.1784127,0.66184217,1.2774106,403,train,1.2774106\n-2.1147723,-0.21731329,-0.0001787754,2.91759,-0.13451749,-0.2535568,1.2316169,1.2687306,98,train,1.2687306\n-1.8056473,0.27504644,-0.23929909,1.8061631,1.1795659,0.062423803,1.3254417,1.3341484,935,train,1.3341484\n-2.0290468,0.25107896,-0.21686688,1.9492785,1.1957978,-0.0284154,1.3132739,1.2392974,1591,train,1.2392974\n-3.4989278,0.14471665,-0.07335453,2.1475523,1.2895665,-0.3057208,1.3848433,1.0432811,2721,train,1.0432811\n0.49235466,0.29574695,-0.27421322,1.2165979,2.2297688,-0.89126474,0.74662244,1.42959,2042,train,1.42959\n-1.8646163,0.19520664,-0.15123749,1.616986,1.8479135,-0.40396187,1.0783505,1.1068482,1662,train,1.1068482\n-2.1041293,0.22367308,-0.15203407,1.7013882,1.8512471,-0.37738562,1.1174582,1.2045499,1803,train,1.2045499\n1.7562019,-0.74129885,0.14984478,2.5077646,-1.788,-1.2601033,1.0077596,1.3753424,1142,train,1.3753424\n-3.3933015,-0.013768828,-0.030454276,2.5040138,0.8843523,-0.46617463,1.3778559,1.1648953,2835,train,1.1648953\n-2.9924238,-0.14868644,-0.0012218967,2.9293156,0.5115208,-0.54760146,1.2789202,1.2220073,2826,train,1.2220073\n6.4342504,0.725474,-0.5244112,-1.6569238,3.3565598,-2.6955621,0.5264154,1.5505072,2168,train,1.5505072\n-1.7986089,-0.03700889,-0.084369056,1.5467644,1.3301133,-0.45873517,1.1065488,1.3157135,2669,train,1.3157135\n0.019057736,-0.39905947,-0.015753726,2.6432202,-0.5578723,-0.38652006,0.8117558,1.1487284,752,train,1.1487284\n-0.4908096,-0.21549354,-0.06627588,1.8018312,0.5660371,-0.4725209,0.9242984,1.061825,1182,train,1.061825\n-0.4414605,-0.076726474,-0.08886029,0.8066727,1.2936628,-0.8618501,1.0045549,1.0596697,1525,train,1.0596697\n0.13078584,-0.28451148,-0.06913328,1.9444624,0.09785322,-0.47063607,0.85786706,1.2332935,797,train,1.2332935\n2.7145774,0.8660817,-0.58493096,0.84441626,3.7873123,-2.0946617,0.64536464,0.98156893,2409,train,0.98156893\n0.058758836,0.73701024,-0.46962243,3.3910701,2.8045375,-1.2732747,0.67146343,1.2969221,2468,train,1.2969221\n-2.062499,0.19617799,-0.14152339,1.6717972,1.8121198,-0.3726156,1.1099758,1.0178847,1245,train,1.0178847\n2.5571163,0.8505101,-0.5792481,0.9966373,3.739162,-2.0325782,0.6714249,1.3808048,2429,train,1.3808048\n-1.0869844,-0.15786205,-0.07432323,1.88142,0.87492156,-0.4453682,0.980811,1.1357551,2813,train,1.1357551\n-3.0899007,0.085591525,-0.071789436,2.1824045,1.4165239,-0.29767966,1.2031385,1.2273514,491,train,1.2273514\n-0.330842,0.70338386,-0.43898597,3.7474875,2.676161,-1.288888,0.6393504,1.394644,2175,train,1.394644\n4.790334,0.57634187,-0.4203172,0.10829344,2.722766,-2.4993594,0.43215185,0.62758684,2262,train,0.62758684\n-2.058383,0.41421297,-0.30529574,2.6777437,1.7382613,-0.4266148,1.0313885,1.0948358,1905,train,1.0948358\n-0.019342963,-0.24553885,-0.07127638,1.7384193,0.29678786,-0.48232782,0.88541114,1.0791302,11,train,1.0791302\n-1.8305835,-0.04055167,-0.08512924,1.6001409,1.3285792,-0.43844703,1.1028007,1.1432455,681,train,1.1432455\n-0.09453875,-0.5897642,0.12697586,3.4143364,-1.5312963,-0.8955389,1.0849617,1.5466886,896,train,1.5466886\n0.078995086,0.2007114,-0.20579994,1.2070041,1.9404373,-0.9737254,0.7954936,0.96186495,1991,train,0.96186495\n7.0374255,0.80921805,-0.5839821,-2.3784928,3.837606,-2.883656,0.5217625,1.3336543,2394,train,1.3336543\n1.1548976,-0.6056288,0.08442023,2.4159272,-1.7123637,-0.5062627,1.0310515,1.5659401,955,train,1.5659401\n1.7957324,-0.08508047,-0.16804723,0.55443096,0.53919566,-1.0770183,0.72586626,1.1168785,1179,train,1.1168785\n0.3958535,0.7250253,-0.47146127,3.2779381,2.8973567,-1.4221026,0.6360318,1.4443623,2211,train,1.4443623\n-0.67063445,0.68434006,-0.42928925,3.8249826,2.4846828,-1.1105943,0.684704,1.3530202,2293,train,1.3530202\n5.4617586,1.1001304,-0.7377268,-2.789984,4.791816,-1.8865082,0.7127762,0.9875156,2458,train,0.9875156\n1.4853804,0.44197536,-0.32820594,1.9445019,2.462588,-1.5771043,0.45328134,1.0980061,2559,train,1.0980061\n6.549771,1.2196928,-0.7757426,-3.9282908,5.0766377,-2.1214292,0.66468865,0.42381334,2475,train,0.42381334\n-2.041958,0.30644545,-0.25602567,2.2515004,1.3518821,-0.060762256,1.2167318,1.1589959,1656,train,1.1589959\n7.2716055,0.09776023,-0.3487077,-3.2766778,1.1109785,-1.6225903,0.5915978,0.74901855,2540,train,0.74901855\n1.1087494,-0.58822155,0.03729296,3.1233625,-1.640047,-0.65757126,0.76596475,1.3096312,825,train,1.3096312\n1.6650274,0.7808646,-0.5275255,2.1004386,3.421306,-1.8471122,0.6336262,1.8168843,2702,train,1.8168843\n-1.2141395,0.19781595,-0.1866452,1.5485641,2.016365,-0.548686,0.9569278,1.101083,1757,train,1.101083\n-1.7958173,-0.055190206,-0.08359762,1.7485617,1.2418809,-0.3937412,1.0746737,1.346245,706,train,1.346245\n-0.4905551,-0.42986435,0.042877413,3.0509522,-1.2032858,-0.23521575,1.0779126,1.3759012,251,train,1.3759012\n-2.1344259,0.09210763,-0.098653935,1.6162701,1.7077553,-0.46727422,1.101097,1.2005899,1664,train,1.2005899\n-3.1560018,0.041994616,-0.06508713,2.2826498,1.2354051,-0.32537043,1.2378323,1.2921187,505,train,1.2921187\n-2.171676,0.35384434,-0.27230132,2.464955,1.5850365,-0.21516313,1.1295284,1.2175176,1745,train,1.2175176\n-2.8592355,-0.15049677,0.0036634242,2.9064934,0.33848143,-0.49660966,1.3215736,1.2279999,1146,train,1.2279999\n-2.9724777,0.16352095,-0.122537844,2.2813015,1.1654161,-0.2740368,1.3564923,1.2498289,474,train,1.2498289\n0.10318587,-0.14419644,-0.08359406,0.79878545,1.3383509,-0.9232386,0.92064285,1.0494275,1638,train,1.0494275\n-1.1277063,0.6265509,-0.40546352,3.5670965,2.3868556,-1.0348505,0.74629176,1.2857194,2158,train,1.2857194\n-1.757634,0.485025,-0.34223738,2.7445343,1.8864479,-0.5460539,0.9730828,1.2500737,2011,train,1.2500737\n-3.4109557,0.13375266,-0.088701785,2.3041096,1.1765972,-0.31529427,1.3960387,1.3261625,457,train,1.3261625\n0.3987652,-0.34082964,-0.060515717,2.1943717,-0.24506207,-0.48464033,0.83056176,1.2402724,1141,train,1.2402724\n-2.0541344,0.29882374,-0.24464673,2.1262348,1.3057885,-0.0366853,1.2622151,1.1920357,2632,train,1.1920357\n0.5177941,-0.13545632,-0.099325754,0.80986196,1.0931429,-1.1249812,0.86273426,1.0909168,2676,train,1.0909168\n-1.9632208,0.33438054,-0.2853188,2.4537828,1.4718485,-0.1488183,1.1385355,1.1445234,1668,train,1.1445234\n-0.9579724,-0.4930654,0.10862564,3.7239056,-1.3288578,-0.6781743,1.0832826,1.4454007,213,train,1.4454007\n5.3248267,-1.020993,0.28334415,0.01626789,-2.443401,-1.7272903,1.0224934,2.010986,958,train,2.010986\n1.3340402,-0.7220675,0.15148383,2.9194708,-1.7576483,-1.2291238,0.98639435,1.4583864,297,train,1.4583864\n-0.27477905,-0.5793565,0.12432322,3.6059103,-1.5226068,-0.8991083,1.0736272,1.4467329,241,train,1.4467329\n-2.4378436,0.21092641,-0.1267603,1.7507471,1.7866389,-0.3026314,1.1806847,1.1481981,1635,train,1.1481981\n-1.2639751,0.22286172,-0.24453178,1.5240555,0.96033174,-0.003299527,1.3690614,1.4454535,1362,train,1.4454535\n1.1431433,-0.15207525,-0.11317566,0.28472435,1.5057285,-0.9686525,0.878141,1.3575482,1869,train,1.3575482\n-1.5116347,0.49103564,-0.35680553,2.6478279,1.9075062,-0.5593374,0.9748704,1.2665926,2061,train,1.2665926\n4.38629,0.5529121,-0.409082,0.26187572,2.712804,-2.2910554,0.4567629,1.3457654,1838,train,1.3457654\n2.9218557,-0.71653736,0.10360358,2.4069347,-2.3423123,-1.1624383,0.7302329,1.4203972,116,train,1.4203972\n-3.0699646,0.07376149,-0.07037633,2.1930382,1.376207,-0.3056092,1.2044333,1.2148803,682,train,1.2148803\n-0.95496285,-0.250566,-0.030637471,2.5517855,-0.49852738,-0.18268447,1.2138323,1.3804991,2864,train,1.3804991\n-1.7723173,-0.021688122,-0.08542468,1.4746724,1.3441116,-0.47433323,1.115747,1.1313192,1219,train,1.1313192\n-2.1076086,0.2697999,-0.23178123,2.1576471,1.2718619,-0.055972565,1.2642702,1.2352419,1302,train,1.2352419\n0.72675943,-0.09361333,-0.15088479,0.5811786,0.8801177,-0.8646823,0.8749104,1.0456362,1171,train,1.0456362\n1.6162889,-0.17190252,-0.124782234,0.24870454,1.4586251,-1.0607686,0.82154334,1.2294652,2683,train,1.2294652\n-1.7192969,-0.062162336,-0.08313117,1.6268765,1.2623192,-0.43304756,1.0831722,1.1353302,481,train,1.1353302\n6.4784174,-1.0422531,0.31394568,-1.9127988,-2.7034385,-1.1852287,1.1241281,1.5607345,1051,train,1.5607345\n0.22049117,-0.3059437,-0.065414496,2.0786827,-0.045265265,-0.47399524,0.8431993,1.2341895,1123,train,1.2341895\n4.987599,-0.21146235,-0.25616604,-0.9196319,1.3822502,-1.2445805,0.61755615,1.4682087,2212,train,1.4682087\n1.347207,0.37883836,-0.3060836,1.5317057,2.0761564,-1.9016675,0.4670397,0.7954869,538,train,0.7954869\n0.60306907,-0.2941745,-0.08012819,1.8538096,-0.1594958,-0.51805407,0.81610036,1.1341078,277,train,1.1341078\n0.2921942,-0.5393481,0.06185791,3.0094051,-1.5652367,-0.35153016,1.0282526,1.4524672,225,train,1.4524672\n0.7350232,0.7436649,-0.48720485,2.9911313,3.058844,-1.5435644,0.63321674,1.4706116,2419,train,1.4706116\n-1.3065112,0.5287044,-0.3747202,2.768787,2.0747588,-0.7118672,0.91076577,1.1067698,2075,train,1.1067698\n-0.85985786,0.65589964,-0.4206599,3.792227,2.4005811,-1.0651743,0.7105753,1.1629896,2161,train,1.1629896\n0.38569567,0.27725247,-0.26401746,1.1421188,2.206007,-0.81785434,0.77910364,1.0693476,2052,train,1.0693476\n-1.3962643,0.58937573,-0.39127922,3.5780728,2.2161362,-1.0133603,0.78437924,1.0813308,2018,train,1.0813308\n-2.6576128,-0.22810155,0.027484464,3.2193701,0.12021784,-0.65600103,1.2191163,1.3060436,440,train,1.3060436\n-1.3897815,-0.43769202,0.11735139,3.6725936,-1.1334167,-0.77279097,1.111508,1.3156531,1136,train,1.3156531\n0.54702866,-0.28312358,-0.08257728,1.8141723,-0.08917711,-0.5138183,0.8248205,1.1730547,291,train,1.1730547\n-0.3414474,-0.5537276,0.12505518,3.5519528,-1.3420757,-1.1087036,1.0521941,1.453521,1134,train,1.453521\n-1.8927286,-0.026439855,-0.08548239,1.5831791,1.3581293,-0.43735167,1.113164,1.2127622,490,train,1.2127622\n-1.8665396,0.2097263,-0.15434887,1.59716,1.8812046,-0.39765418,1.0922163,1.1449071,1740,train,1.1449071\n3.027345,0.40435722,-0.34090942,1.0817612,2.228012,-2.2733142,0.3452047,0.47775403,553,train,0.47775403\n3.0518074,-0.86498237,0.21546897,1.6266387,-2.1025755,-1.4253428,1.0161349,1.2976253,858,train,1.2976253\n-1.5270032,0.054524437,-0.09682042,1.1200461,1.685644,-0.5174656,1.1015486,1.1397225,642,train,1.1397225\n6.217066,-0.97655326,0.29340136,-1.8027579,-2.607139,-1.2258855,1.1191822,1.7980517,1054,train,1.7980517\n1.3266191,0.76637715,-0.51204735,2.4327796,3.3185363,-1.7696327,0.6272673,1.1712375,2327,train,1.1712375\n1.6762018,-0.22940063,-0.14603578,1.1450862,-0.014602126,-0.86749774,0.7484561,1.2147306,852,train,1.2147306\n1.097874,-0.6352393,0.08218816,2.5578673,-1.7035089,-0.45955396,1.0097488,1.5499189,2871,train,1.5499189\n-1.188924,-0.06294212,-0.12675458,1.9057283,0.3052226,-0.22017685,1.31928,1.4116323,2801,train,1.4116323\n-3.5251439,0.17341508,-0.08268787,2.2325647,1.3376443,-0.28585723,1.3779206,1.3696778,446,train,1.3696778\n0.4529992,-0.10829867,-0.10772018,0.7471979,1.0353043,-1.0943028,0.8867223,1.1205673,1470,train,1.1205673\n-3.1911461,0.21422704,-0.11826549,2.2025728,1.3338183,-0.22610132,1.3646117,1.3132051,675,train,1.3132051\n3.2470875,0.5473549,-0.39206257,1.2491529,2.6646726,-2.1076102,0.4257683,1.1765841,367,train,1.1765841\n6.4088964,0.70555043,-0.51573247,-1.5175933,3.2619805,-2.7325542,0.4907134,1.5380251,2326,train,1.5380251\n0.0020742689,-0.53770846,0.07312878,3.1195061,-1.4060739,-0.4423617,1.0454953,1.4128152,986,train,1.4128152\n1.1926284,0.83067775,-0.5556334,1.8167877,3.4662492,-1.3040928,0.7813741,1.3759143,435,train,1.3759143\n-1.7599287,0.12751694,-0.18037935,1.9550235,0.89765745,-0.21666159,1.3088802,1.3170058,1338,train,1.3170058\n0.22145444,0.2485037,-0.25059828,1.113765,2.1760964,-0.7609945,0.8085794,1.1905752,2043,train,1.1905752\n7.225202,0.072926134,-0.35443613,-3.176928,1.0823201,-1.4163588,0.62452716,1.2455001,2495,train,1.2455001\n1.0292467,-0.47966897,-0.004468487,2.826918,-1.1883537,-0.59258056,0.7022617,0.846602,2775,train,0.846602\n4.2944427,-0.24881934,-0.20975198,-0.59129494,1.3186805,-1.2550926,0.6652331,1.4517107,2294,train,1.4517107\n0.43462557,-0.6293837,0.13323419,3.3645823,-1.5514431,-1.2270112,1.0332608,1.5928655,777,train,1.5928655\n-0.47071669,-0.08206856,-0.08726038,0.82907355,1.3197274,-0.8378849,1.0039467,1.0494028,1572,train,1.0494028\n-3.2854934,-0.061389178,-0.01474992,2.6897366,0.7389887,-0.51124424,1.3519816,1.3902525,2816,train,1.3902525\n-0.63866615,0.6893685,-0.4312434,3.875496,2.4752498,-1.1297275,0.6880395,1.3997188,384,train,1.3997188\n2.7896268,0.4677687,-0.36366037,1.3387429,2.545236,-1.8457183,0.4226435,1.0453476,2163,train,1.0453476\n-1.3378242,0.58042973,-0.38985506,3.3786852,2.2136,-0.9728655,0.80249584,1.2884768,1950,train,1.2884768\n-3.3416743,0.21498644,-0.0891517,2.1545942,1.5799801,-0.23373176,1.2902915,1.095049,1589,train,1.095049\n-2.7744677,-0.17678933,0.021787787,2.982506,0.21992682,-0.6147203,1.2966152,1.2134681,1166,train,1.2134681\n3.8588874,-0.8692623,0.1469348,1.8598771,-2.6497188,-1.2675928,0.7402143,1.60232,921,train,1.60232\n4.100813,0.52503616,-0.40178972,0.46908095,2.6739118,-2.18396,0.45205542,1.3043027,410,train,1.3043027\n0.22563943,-0.123597465,-0.09949201,0.8688806,1.1436203,-1.0579257,0.8964533,1.0494387,1508,train,1.0494387\n5.2132792,-0.23908295,-0.25642565,-0.9446693,1.2748706,-1.2445053,0.6105511,0.80074334,2215,train,0.80074334\n1.3155483,-0.71107286,0.14638256,2.8740928,-1.7150676,-1.2525916,0.9998684,1.5796685,888,train,1.5796685\n3.049991,-0.20541672,-0.17596413,-0.22690253,1.4540834,-1.1373776,0.7377924,1.2799717,1978,train,1.2799717\n0.065972015,-0.5943736,0.085268766,3.689327,-1.4114335,-0.910998,0.89146286,1.275447,100,train,1.275447\n-2.1743724,0.058724742,-0.08559656,1.4677821,1.5166658,-0.42758918,1.1664853,1.0221177,1381,train,1.0221177\n6.462295,-0.10232775,-0.32635728,-1.975779,1.1725771,-1.2379804,0.5836797,1.3006182,2430,train,1.3006182\n-0.7241163,-0.22883536,-0.062286988,2.1043472,0.50664794,-0.4352425,0.92665607,1.1687258,1145,train,1.1687258\n2.3385777,-0.7950024,0.16678983,2.1565518,-1.9364005,-1.3337349,1.0081992,1.6845676,1015,train,1.6845676\n-0.675035,-0.053051423,-0.08809898,0.7709429,1.3279517,-0.7948343,1.0519546,1.0431504,1312,train,1.0431504\n-0.9825576,0.15725294,-0.15162374,1.5040184,1.8447367,-0.7674476,0.9231906,1.2332894,2064,train,1.2332894\n-1.9079864,0.35205293,-0.2961444,2.5168636,1.5012693,-0.20107257,1.1095685,1.1316587,1748,train,1.1316587\n6.1859145,-0.15275867,-0.31182978,-1.657794,1.2047145,-1.2011689,0.57544273,1.553311,2332,train,1.553311\n4.0306115,-0.9228971,0.23310556,1.0098417,-2.2023041,-1.5691552,1.0126034,1.7165534,2799,train,1.7165534\n-0.28945306,0.16988324,-0.1785864,1.1984148,1.8915054,-0.86650383,0.86508167,1.1905657,1004,train,1.1905657\n-0.504057,-0.45574495,0.03965642,3.0305624,-1.1190617,-0.21186653,1.0697936,1.4491487,787,train,1.4491487\n8.807964,-1.337985,0.43270385,-3.5833192,-3.22878,-1.3800298,1.1924303,1.3280895,125,train,1.3280895\n-0.0051432727,0.70822775,-0.44897747,3.598567,2.769138,-1.3897204,0.6173009,1.406369,2263,train,1.406369\n-1.1524659,-0.11417141,-0.08044522,1.5445079,1.056954,-0.492364,1.0293659,1.0256574,1236,train,1.0256574\n6.3960447,1.1999496,-0.7828121,-4.041988,5.0251374,-1.8388977,0.7378685,1.4533854,2533,train,1.4533854\n-1.2092766,0.5643299,-0.3934101,3.1647265,2.1797624,-0.90839744,0.83886117,1.0925181,1969,train,1.0925181\n0.46391207,0.26610425,-0.26339716,1.1258452,2.194073,-0.83392787,0.76598394,1.059873,2050,train,1.059873\n2.2628841,-0.5182644,0.009683044,2.4260035,-1.8311951,-0.9825041,0.7094725,1.1914757,67,train,1.1914757\n-1.8049583,-0.36995202,0.09594741,3.5870433,-0.8970074,-0.5161058,1.1244771,1.2460592,2866,train,1.2460592\n-1.4310107,0.5709486,-0.39242044,3.7046778,2.0937045,-0.9771158,0.7973475,1.1022351,2188,train,1.1022351\n2.7843668,-0.07989622,-0.19727269,0.51065534,-0.12096367,-1.121483,0.667651,1.2677668,2890,train,1.2677668\n-0.5449514,0.21320689,-0.21956702,1.4749737,2.10054,-0.7104492,0.83977705,0.9779469,1904,train,0.9779469\n7.99871,1.0278287,-0.6824833,-4.4725313,4.6717744,-3.0560484,0.6331666,1.8671904,504,train,1.8671904\n-3.0801308,0.22224899,-0.10345209,2.0256941,1.673704,-0.23254517,1.2613595,1.1276295,1622,train,1.1276295\n2.711729,-0.69536686,0.09047544,2.488456,-2.2115197,-1.082133,0.74086165,1.3227757,1052,train,1.3227757\n5.9104223,-0.1867916,-0.29922482,-1.4353935,1.2345396,-1.1632737,0.59254855,1.1532784,2172,train,1.1532784\n7.496028,0.15911934,-0.3696708,-3.8965635,1.1803191,-1.5198605,0.6541291,1.1632445,2553,train,1.1632445\n0.793377,-0.6951363,0.14825603,3.019887,-1.7837194,-0.8571856,1.0340719,1.2624149,271,train,1.2624149\n4.721888,0.58454084,-0.4205514,0.12556085,2.753828,-2.4645066,0.44121757,1.1849966,2259,train,1.1849966\n0.2982487,-0.17897518,-0.115234196,1.144357,0.55067605,-0.6641863,0.91719127,1.080141,23,train,1.080141\n-1.3490038,-0.11683149,-0.07932299,1.760789,1.0526775,-0.44330668,1.0231509,1.1261785,1322,train,1.1261785\n3.3266408,0.9027151,-0.60903245,0.3565722,3.9513621,-2.177734,0.6177704,1.0130847,2601,train,1.0130847\n-1.9938325,0.39994392,-0.3008094,2.5432227,1.7041273,-0.3857973,1.0569022,1.2506776,2649,train,1.2506776\n1.363394,0.7749545,-0.51929647,2.307334,3.3529608,-1.7308605,0.65398175,1.4114641,2169,train,1.4114641\n-3.202919,-0.075587936,-0.019669456,2.718382,0.6710448,-0.48913723,1.3627061,1.2605784,2825,train,1.2605784\n-2.0037742,0.20426598,-0.19071129,1.9658029,1.0884376,-0.12407458,1.3076519,1.258122,1437,train,1.258122\n-1.1982788,0.6066851,-0.40337956,3.5695083,2.3042653,-1.0157226,0.77311784,1.2005229,1975,train,1.2005229\n8.257775,1.1751095,-0.7376189,-5.53518,5.0600567,-3.0579557,0.70374984,1.4951816,2459,train,1.4951816\n-0.8550088,0.16308412,-0.15816252,1.4609976,1.8538269,-0.7856457,0.91054624,1.16622,1957,train,1.16622\n-3.1699457,0.046697497,-0.06567944,2.2784357,1.2479762,-0.3216442,1.2386003,1.3840144,1438,train,1.3840144\n-2.823352,0.010410225,-0.09180656,2.393131,0.8014832,-0.3687028,1.3680092,1.2376466,737,train,1.2376466\n8.6119375,-1.3542608,0.3763236,-2.4254103,-3.2187319,-1.7908272,1.0078927,1.0077543,59,train,1.0077543\n-1.3519629,-0.0023275071,-0.10064232,0.9482897,1.3950269,-0.58931506,1.1289937,1.1384523,496,train,1.1384523\n8.714031,-1.3503693,0.44055697,-3.0223353,-3.2119737,-1.7118676,1.1441889,1.3322875,2605,train,1.3322875\n-3.5346382,0.15983588,-0.069150314,2.1997066,1.3315183,-0.28375348,1.3545353,1.3074019,669,train,1.3074019\n-3.4048574,0.03430071,-0.051955532,2.3651881,0.9979919,-0.409297,1.3960363,1.1722405,327,train,1.1722405\n1.781687,0.2558019,-0.26753655,0.79834586,2.0102687,-1.3749135,0.5863071,0.9059932,2179,train,0.9059932\n-0.20845354,0.7023589,-0.4383178,3.8024793,2.712119,-1.3900903,0.59677833,1.1650587,581,train,1.1650587\n1.8632336,-0.77636665,0.1683264,2.3354843,-1.9327055,-1.1024866,1.0373977,1.6281837,2876,train,1.6281837\n0.4777336,0.1593694,-0.20735519,0.8321961,1.9695337,-0.96035016,0.8133506,1.1103137,2099,train,1.1103137\n-3.5169287,0.19000159,-0.09333509,2.300371,1.3706841,-0.24831298,1.363127,1.3833154,1468,train,1.3833154\n0.07848606,-0.21058932,-0.09436165,1.453858,0.4702364,-0.561553,0.9068103,1.1316978,10,train,1.1316978\n2.377205,-0.19196306,-0.15154105,-0.0009567403,1.4583904,-1.1167433,0.77874285,1.1740956,2127,train,1.1740956\n2.6642323,0.56449735,-0.40060338,1.6895924,2.7205038,-1.9987152,0.44232395,1.0982673,349,train,1.0982673\n-2.323447,0.27777797,-0.21129023,2.128229,1.2993764,-0.05225301,1.2973158,1.2594709,1617,train,1.2594709\n0.6987352,-0.07782128,-0.136521,0.58015,1.0008453,-0.9909958,0.8676716,1.0977825,2836,train,1.0977825\n0.3778637,-0.4388373,-0.008295073,2.818008,-0.8563344,-0.47714353,0.76645184,1.178954,181,train,1.178954\n1.3185037,-0.18157183,-0.11153984,0.30158523,1.4683737,-1.0198492,0.84132683,1.3016086,1898,train,1.3016086\n0.019057736,-0.39905947,-0.015753726,2.6432202,-0.5578723,-0.38652006,0.8117558,1.1109502,750,train,1.1109502\n-1.4965838,0.5522154,-0.38447037,3.5672278,2.036091,-0.89053047,0.82767236,1.1152191,2654,train,1.1152191\n-3.190401,0.07813881,-0.067163296,2.2247705,1.3297983,-0.30164993,1.2365835,1.0975714,334,train,1.0975714\n8.430035,-1.3263677,0.43533084,-3.034356,-3.1789765,-1.5237517,1.1733353,1.179046,85,train,1.179046\n-3.1333737,0.21913138,-0.09747713,2.0324464,1.6617374,-0.24142088,1.2647703,1.2229463,1571,train,1.2229463\n-2.3123052,0.26884496,-0.20394671,2.070388,1.2820749,-0.044409145,1.3107086,1.3184675,1539,train,1.3184675\n7.042092,0.7995173,-0.57835525,-2.3772817,3.771018,-2.8690195,0.52787745,1.6032416,2428,train,1.6032416\n3.0239544,-0.7678443,0.15977924,0.92214847,-2.0008123,-0.7379922,1.0275975,1.6500123,1158,train,1.6500123\n-0.08854221,0.6393236,-0.39602056,3.572304,2.5494075,-1.4366539,0.54679614,1.1159669,395,train,1.1159669\n1.0429709,0.75587827,-0.49932352,2.7291107,3.2099454,-1.7018528,0.6169724,1.2482545,2311,train,1.2482545\n-2.3333514,0.29867855,-0.22124197,2.1723876,1.3668175,-0.07192371,1.2735515,1.2355477,1687,train,1.2355477\n0.023011701,-0.49821165,0.0584706,3.190593,-1.492144,-0.3707453,1.0342623,1.4006368,232,train,1.4006368\n-1.4232991,-0.016751409,-0.09676131,1.1242129,1.3303213,-0.50735605,1.1189599,1.1987002,507,train,1.1987002\n-1.0759556,-0.0077242237,-0.09209423,0.84061104,1.575026,-0.57208616,1.0959117,1.0990295,624,train,1.0990295\n5.738731,-0.22119989,-0.2855413,-1.2145923,1.2181003,-1.2534653,0.57358766,1.3460877,2307,train,1.3460877\n-2.1354382,-0.35033557,0.06443844,3.7805684,-0.47609934,-0.813717,1.0986484,1.1218863,1725,train,1.1218863\n-2.3164985,0.27224904,-0.20647196,2.0900717,1.2876663,-0.04576021,1.3066525,1.2841188,1596,train,1.2841188\n-1.208135,-0.010101715,-0.10327226,0.8868389,1.3464198,-0.60081154,1.120704,1.1415535,480,train,1.1415535\n0.3265485,-0.31442526,-0.06256959,2.0732684,-0.1317661,-0.48213005,0.8288378,1.1580466,782,train,1.1580466\n2.2895863,-0.7735014,0.14286335,1.6433085,-1.9735578,-0.62053466,1.0210893,1.5701809,2796,train,1.5701809\n7.0752153,-1.2335266,0.29699057,-0.90072614,-3.1169605,-1.6068012,0.8848494,1.105728,121,train,1.105728\n-1.8133341,0.24792384,-0.22093011,1.7612984,1.1183357,0.020060679,1.3333226,1.3263915,1207,train,1.3263915\n6.3148446,0.71495813,-0.5160893,-1.4553463,3.2985399,-2.7136297,0.4985471,1.0558475,2323,train,1.0558475\n-0.67868304,-0.0566523,-0.087796316,0.79899824,1.3363788,-0.7959428,1.0446123,1.0309525,929,train,1.0309525\n-0.56262696,0.719028,-0.44137368,3.9214134,2.5952926,-1.2327163,0.66263497,1.2415006,2251,train,1.2415006\n-2.1774461,0.058426835,-0.08500964,1.4667612,1.5234159,-0.42865694,1.1711282,1.2440194,1564,train,1.2440194\n-0.632452,-0.25799206,-0.05639282,2.2533429,0.32677722,-0.41173762,0.9077459,1.1000346,1148,train,1.1000346\n4.212564,-0.8506407,0.22760464,-0.09115217,-2.2952337,-1.0430903,1.0675862,1.907472,2613,train,1.907472\n-1.2317255,0.64074814,-0.4116566,4.0679774,2.3055215,-1.0839131,0.71157146,1.0809357,2584,train,1.0809357\n0.23752275,-0.15479147,-0.083469264,0.7779213,1.3318946,-0.9584499,0.8998464,1.0773866,1733,train,1.0773866\n1.6857435,-0.19447564,-0.12064335,0.28853902,1.4272627,-1.1063313,0.795181,1.0454899,2647,train,1.0454899\n0.261752,-0.15339503,-0.08462272,0.77593684,1.3577731,-0.95072204,0.89966637,1.0534155,1707,train,1.0534155\n-1.0679742,0.6470828,-0.40540823,3.7329028,2.4316335,-1.0978718,0.69457555,1.2147563,2566,train,1.2147563\n-2.9866807,0.20880136,-0.1319187,2.1962085,1.2797908,-0.22399946,1.3557004,1.3899434,485,train,1.3899434\n-0.3948618,-0.42900267,0.0082379775,3.0359197,-0.6712629,-0.45011812,0.83774734,1.2479774,200,train,1.2479774\n8.618771,-1.3403223,0.4378583,-3.0559356,-3.2047307,-1.605051,1.1717533,1.870788,928,train,1.870788\n7.1330175,-1.0648739,0.3273568,-2.5952573,-2.7842538,-1.235796,1.1528205,2.172429,925,train,2.172429\n0.43478808,-0.64941067,0.14132684,3.2922623,-1.6508406,-1.0699142,1.0525713,1.3384284,874,train,1.3384284\n1.0399225,0.36153746,-0.2990965,1.6985754,2.2898183,-1.3534721,0.52703935,0.7580064,2022,train,0.7580064\n-0.3674621,-0.5578207,0.12674996,3.7052867,-1.3926296,-1.1286005,1.0514485,1.4767535,1795,train,1.4767535\n-3.299243,0.14886549,-0.100712374,2.2903385,1.1915003,-0.29047257,1.385517,1.1515708,1439,train,1.1515708\n4.5016894,-0.9591433,0.2509242,0.7409916,-2.2867734,-1.6637211,0.9997555,1.6801634,1547,train,1.6801634\n1.0626177,-0.69580793,0.14701974,3.000868,-1.7114754,-1.1984081,1.0144235,1.5423943,884,train,1.5423943\n-0.6002301,0.67812425,-0.4213673,3.7592251,2.5255,-1.1664622,0.65720946,1.3485962,2186,train,1.3485962\n1.2468002,-0.4496878,-0.02828627,2.3986619,-0.9687272,-0.61783326,0.7587667,1.4273717,756,train,1.4273717\n1.256606,-0.7184222,0.15207309,2.9279635,-1.7633756,-1.1960149,0.9973879,1.4423873,183,train,1.4423873\n0.37484494,-0.6202596,0.09263061,3.6439128,-1.5081923,-1.0238439,0.9008491,1.5744321,197,train,1.5744321\n0.37346777,0.21084896,-0.21991529,1.2601984,1.9610006,-1.0732813,0.7247817,0.95485747,2152,train,0.95485747\n-1.6011208,-0.04561297,-0.085093096,1.4526341,1.2918736,-0.4790145,1.0931624,1.0796796,991,train,1.0796796\n1.9565637,0.4048412,-0.32539666,1.5486555,2.4193149,-1.5688679,0.45639327,1.2195446,1294,train,1.2195446\n0.7496828,0.31625214,-0.2888658,1.2160338,2.259917,-0.9924546,0.706086,1.3181567,2111,train,1.3181567\n2.490799,0.87084484,-0.596034,0.6547648,3.8260515,-1.826213,0.71977556,1.2646655,2389,train,1.2646655\n0.4756939,-0.34878188,-0.057900738,2.2054303,-0.31652367,-0.48938882,0.81493765,1.2850554,1128,train,1.2850554\n5.637765,-1.0582165,0.31680405,-0.59861815,-2.6149824,-1.5517551,1.09914,1.5454222,1096,train,1.5454222\n-2.7805529,0.21664043,-0.1138266,1.8871267,1.7410983,-0.2618931,1.2243297,1.0351205,2628,train,1.0351205\n-3.2150643,-0.014882416,-0.04782836,2.490333,1.0628184,-0.38888797,1.2652789,1.3274943,724,train,1.3274943\n7.923952,0.42985716,-0.38438016,-5.9096656,1.5710105,-1.8587629,0.79632664,1.2581158,2522,train,1.2581158\n2.9938307,-0.17707843,-0.17875496,0.7527589,-0.50640523,-1.1806374,0.6601618,1.1436515,838,train,1.1436515\n1.9204484,0.8372327,-0.57081586,1.5102335,3.649515,-1.8886926,0.68403524,1.0630192,2384,train,1.0630192\n-2.2213213,-0.31722108,0.07736447,3.5620744,-0.6427212,-0.50600755,1.1691037,1.3974626,33,train,1.3974626\n5.666699,-0.2219664,-0.2819442,-1.1867664,1.2306365,-1.2430063,0.58227724,0.6390041,2321,train,0.6390041\n-1.6238632,0.472925,-0.34218994,2.5336902,1.8565463,-0.5084118,1.0033187,1.4495887,1879,train,1.4495887\n-1.3395448,-0.09790486,-0.10126282,2.082042,0.24164075,-0.20538281,1.2783902,1.2666564,1172,train,1.2666564\n-1.5424879,0.0015791352,-0.09525883,1.127417,1.3782505,-0.49849844,1.1331452,1.155055,2710,train,1.155055\n0.6372869,-0.29959658,-0.07963954,1.8746592,-0.18920451,-0.52167034,0.81124276,1.0946242,227,train,1.0946242\n-1.9624643,0.266519,-0.18120664,1.7769445,1.9311931,-0.40470612,1.0875047,1.0564957,605,train,1.0564957\n-0.94759506,0.5769605,-0.41076544,3.2178845,2.2033868,-0.9441266,0.8416786,1.2224175,2086,train,1.2224175\n2.7997935,0.38616237,-0.33179906,1.0907938,2.1940916,-2.2924604,0.36018586,1.1563377,392,train,1.1563377\n-1.6762904,0.019921506,-0.09420859,1.1492891,1.4215107,-0.48351246,1.1471909,1.2729149,676,train,1.2729149\n-0.01830603,-0.23933706,-0.07524763,1.688886,0.3344443,-0.49304193,0.8907955,1.1570096,2848,train,1.1570096\n7.1015677,-1.0780976,0.3344861,-2.6380363,-2.8026812,-1.2048267,1.1574079,1.1652004,180,train,1.1652004\n-0.9333947,0.67460597,-0.40955988,4.0046473,2.4604414,-1.1716319,0.63698614,1.163623,587,train,1.163623\n1.3299096,-0.46994478,-0.023086019,2.496813,-1.0910226,-0.6571921,0.73363924,1.4401209,1061,train,1.4401209\n-0.59508944,0.6832617,-0.4228194,3.8320818,2.5494704,-1.1958474,0.6446144,1.1491083,2223,train,1.1491083\n4.1106877,0.54255146,-0.40188813,0.51590514,2.6851206,-2.240304,0.4436697,1.3648441,2286,train,1.3648441\n2.3214207,-0.08535395,-0.18819278,0.5507483,0.2270157,-1.0906718,0.6830701,1.2245632,1118,train,1.2245632\n3.6767821,0.48455596,-0.3719175,0.89954305,2.438133,-2.2892501,0.36287758,0.8909822,381,train,0.8909822\n-1.199705,-0.14959544,-0.07554394,2.2485337,-0.025801256,-0.15857868,1.2547544,1.5197314,65,train,1.5197314\n-1.1578907,-0.48819852,0.12265236,3.945093,-1.2311896,-0.9533624,1.0660911,1.4146892,2861,train,1.4146892\n-3.400793,0.047083627,-0.05172994,2.3342822,1.0914665,-0.38288385,1.3458835,1.152235,1412,train,1.152235\n0.49455994,-0.6422642,0.13518368,3.4203823,-1.583747,-1.228453,1.0136362,1.4416941,219,train,1.4416941\n2.7427514,-0.770664,0.16097593,1.1346023,-2.0379455,-0.7293677,1.0335764,1.6907631,975,train,1.6907631\n2.9955144,-0.8695232,0.22656183,1.4575996,-2.1940708,-1.265936,1.0509162,1.0914707,2765,train,1.0914707\n0.9808456,0.74553823,-0.48995286,2.8233182,3.1303263,-1.641755,0.61830556,1.5906632,2407,train,1.5906632\n-1.5662004,0.48660332,-0.3500059,2.5913382,1.9084785,-0.5481468,0.982991,1.115081,1859,train,1.115081\n0.41947842,-0.58569306,0.0860519,2.8364282,-1.6062827,-0.4100108,1.0438776,1.4860377,268,train,1.4860377\n0.66565716,-0.582176,0.07035444,2.8509712,-1.6294768,-0.42784098,1.0182132,1.5407438,2894,train,1.5407438\n-3.4002304,0.06814871,-0.056870833,2.206034,1.1251125,-0.36118087,1.3680754,1.3978914,456,train,1.3978914\n0.12073164,0.20543483,-0.2098286,1.1806796,1.9470676,-0.9729837,0.7985266,1.1391375,2080,train,1.1391375\n-0.6139194,0.6999987,-0.4303462,3.9289837,2.5914235,-1.2292079,0.64325505,1.3324552,362,train,1.3324552\n0.6583535,-0.09762138,-0.15159951,0.58481115,0.8257311,-0.81494904,0.89433926,1.0781231,1151,train,1.0781231\n5.164687,-1.0222229,0.19555748,0.8007921,-2.9818254,-1.3754761,0.7565026,0.891282,153,train,0.891282\n-3.4595768,0.08840993,-0.063437976,2.2066276,1.1574101,-0.35521716,1.3932418,1.3620235,1418,train,1.3620235\n-0.8595708,0.66804856,-0.4113095,3.8772063,2.461601,-1.1501034,0.65234065,1.3111925,583,train,1.3111925\n3.064068,0.9057004,-0.62540305,0.080257855,4.002499,-1.8325683,0.721335,1.3801522,415,train,1.3801522\n-1.2475765,0.15324259,-0.1400794,1.544123,1.8205788,-0.7136002,0.96611077,1.2947049,1870,train,1.2947049\n-2.0222335,0.31593794,-0.27444118,2.434613,1.4346094,-0.11514414,1.1555531,1.1370844,1801,train,1.1370844\n0.13145654,-0.21731916,-0.09370204,1.4798386,0.4171245,-0.5564268,0.8984785,1.1088241,26,train,1.1088241\n6.2522106,-1.1116812,0.32314068,-0.75026304,-2.6550972,-1.7699562,1.0401629,1.7923008,1095,train,1.7923008\n0.029761557,0.19503266,-0.20073372,1.271153,1.9326552,-0.984572,0.7799794,0.95110774,2001,train,0.95110774\n-2.2900906,0.22946762,-0.18441299,2.007549,1.1979967,-0.100275435,1.3215235,1.259106,1352,train,1.259106\n-2.176179,0.3464254,-0.24455214,2.0813892,1.466925,-0.124008015,1.2374908,1.3002236,1765,train,1.3002236\n5.8991795,-1.0803573,0.32244012,-0.7477141,-2.633786,-1.6226956,1.092649,1.7220483,1100,train,1.7220483\n0.44679573,-0.15660603,-0.08689295,0.64541334,1.420026,-0.93976474,0.8930517,1.1134624,1816,train,1.1134624\n-2.0039115,0.33045503,-0.27638328,2.3630219,1.4491118,-0.11854291,1.1706159,1.1678439,1738,train,1.1678439\n-3.357017,0.23163378,-0.09399929,2.1748471,1.5853981,-0.22770315,1.3024607,1.3050994,1585,train,1.3050994\n-1.0246441,-0.009795769,-0.09261692,0.8248959,1.583747,-0.5793845,1.0901703,1.069215,641,train,1.069215\n-0.33265957,0.24670388,-0.20763575,1.8056258,1.858054,-1.1078596,0.70692134,1.0384256,2028,train,1.0384256\n-3.16326,0.2385779,-0.105344966,2.086723,1.6337527,-0.21986516,1.2820884,1.2207557,1615,train,1.2207557\n0.28797808,-0.4245813,-0.01088987,2.7610881,-0.7711068,-0.44150147,0.7747744,1.1718069,235,train,1.1718069\n5.7009907,-0.22220793,-0.28346238,-1.1978098,1.2243358,-1.249027,0.5777038,1.0119107,2366,train,1.0119107\n7.9882584,0.45636266,-0.39058736,-6.1084476,1.6366906,-1.8869956,0.8148027,1.0862248,2503,train,1.0862248\n1.4938283,-0.18946151,-0.1143393,0.3432743,1.4191089,-1.0878483,0.8069617,1.0391349,1888,train,1.0391349\n2.7393708,-0.3885145,-0.09144706,1.5061941,-1.2288421,-0.9783591,0.6571441,2.192718,2602,train,2.192718\n1.0433697,0.3486976,-0.29714906,1.5781819,2.2802746,-1.3005221,0.5517133,0.8779204,1930,train,0.8779204\n-3.3619952,0.03636456,-0.0548568,2.3815057,1.1133211,-0.39767197,1.3402612,1.351355,594,train,1.351355\n-0.22290814,0.7003924,-0.4376198,3.788366,2.7017236,-1.3728147,0.6029859,1.2086613,575,train,1.2086613\n-1.2999613,0.5300424,-0.37955487,2.887072,2.0576959,-0.7298257,0.90460235,1.1066225,2126,train,1.1066225\n4.1416764,-0.93610245,0.25166708,0.7633152,-2.291382,-1.484637,1.0468111,1.6733319,1056,train,1.6733319\n-2.043299,0.19067469,-0.1489611,1.7727937,1.8020129,-0.41040647,1.0734167,1.1093581,1772,train,1.1093581\n-0.6325006,0.15097408,-0.15945743,1.3501155,1.8537765,-0.818161,0.88060874,1.0824695,2034,train,1.0824695\n2.5636866,0.37809503,-0.3288645,1.1540504,2.1615303,-2.2719114,0.3763354,0.91083384,397,train,0.91083384\n9.221,-1.3639982,0.4407322,-4.0114846,-3.2896943,-1.3560517,1.2050737,1.2692745,151,train,1.2692745\n7.1330175,-1.0648739,0.3273568,-2.5952573,-2.7842538,-1.235796,1.1528205,2.0833507,922,train,2.0833507\n-2.3134875,0.16893962,-0.16022505,2.1122253,1.0937376,-0.24098468,1.3166158,1.3294538,340,train,1.3294538\n-0.53259075,-0.18338206,-0.07987655,1.6151515,0.7195068,-0.53266996,0.9544128,1.07088,1170,train,1.07088\n4.5111837,-0.96245974,0.2581754,0.6317624,-2.3200183,-1.6220847,1.0231858,1.8786352,1065,train,1.8786352\n0.35025996,-0.6119795,0.11265547,3.0105577,-1.6371115,-0.5771175,1.0523932,1.4727421,267,train,1.4727421\n-0.093442395,-0.09714618,-0.09404,0.7887919,1.2097149,-0.9674147,0.9539819,1.0900902,1396,train,1.0900902\n-1.1012053,-0.30305353,-0.0023583951,2.7611737,-0.6149897,-0.09270568,1.1654186,1.3931602,2863,train,1.3931602\n-1.5055653,0.48839325,-0.35591006,2.6231441,1.8999658,-0.5510342,0.9793551,1.1254699,1857,train,1.1254699\n4.4281864,-0.2599708,-0.21986437,-0.5751832,1.3935933,-1.2960929,0.6207481,0.92342335,2252,train,0.92342335\n6.3583064,0.6983145,-0.51612586,-1.3071166,3.2099671,-2.8968534,0.4154278,2.3981583,2453,train,2.3981583\n-0.6259811,-0.5337416,0.12649561,3.7730722,-1.3324668,-1.0787034,1.056546,1.3784373,1120,train,1.3784373\n-2.2333124,0.35390195,-0.2637164,2.4239442,1.5925332,-0.21160492,1.1408644,1.1230985,606,train,1.1230985\n0.9405064,-0.22160341,-0.12729561,1.232405,0.19381283,-0.7092679,0.8287176,1.114177,292,train,1.114177\n5.9461184,-0.9421395,0.2818273,-1.6322944,-2.5478835,-1.2251502,1.1134374,1.0121666,1113,train,1.0121666\n-0.5946259,-0.43804067,0.04290044,3.0705538,-1.1650547,-0.18183282,1.0658996,1.3286856,204,train,1.3286856\n3.6175804,0.5411873,-0.3914775,0.9677263,2.6487594,-2.1843967,0.41979915,1.099508,354,train,1.099508\n3.994718,0.9597792,-0.6522988,-0.53909343,4.232342,-2.081844,0.6635985,1.3377578,2492,train,1.3377578\n-2.2348313,0.33806613,-0.24008945,2.1396554,1.4585342,-0.112911746,1.2362665,1.1408216,1771,train,1.1408216\n-2.5852304,-0.24245006,0.031289525,3.232325,0.051519394,-0.67685115,1.2196324,1.1700667,1160,train,1.1700667\n0.84049064,0.335902,-0.2937415,1.4497362,2.274685,-1.1626325,0.6223696,1.1243112,2035,train,1.1243112\n-1.3314509,-0.2526205,-0.019194674,2.667638,-0.35641012,-0.0689606,1.1767685,1.3397894,13,train,1.3397894\n0.75563544,0.7597037,-0.50022656,2.854497,3.1375098,-1.5224929,0.6569514,1.2561175,2398,train,1.2561175\n6.1306043,0.67022794,-0.4924167,-1.1092844,3.1063478,-2.736484,0.44513252,0.9664703,2371,train,0.9664703\n5.517148,-1.0586858,0.29108077,-0.10817221,-2.5028815,-1.7370272,0.9994065,0.9902463,863,train,0.9902463\n-1.3566258,0.14082733,-0.13153465,1.6069983,1.8103253,-0.703778,0.95551366,1.0510631,2679,train,1.0510631\n1.6382706,0.4860302,-0.33554915,2.219699,2.5114377,-1.7645717,0.3791944,0.7496278,2585,train,0.7496278\n-2.9736676,-0.13670251,0.008077819,2.929517,0.41036272,-0.55976623,1.3151013,1.2808586,2822,train,1.2808586\n-2.4215739,0.24353375,-0.1810213,2.012888,1.2522632,-0.08769775,1.3292688,1.1974816,1401,train,1.1974816\n-3.4929585,0.24790777,-0.101764254,2.2861974,1.4985212,-0.20232663,1.3432219,1.0213171,1393,train,1.0213171\n-1.450485,0.5026934,-0.36326393,2.685046,1.9440503,-0.59219843,0.96041507,1.11146,1955,train,1.11146\n11.934791,-1.5629228,0.48510346,-5.826313,-3.7242126,-1.9427378,1.1632336,1.1045996,919,train,1.1045996\n-3.1536913,0.22354218,-0.0984157,2.0421958,1.6586692,-0.24048777,1.2725883,1.3860193,1577,train,1.3860193\n4.0912023,0.56604934,-0.40716755,0.57717717,2.721992,-2.269705,0.44281235,0.834728,2174,train,0.834728\n-3.4851542,0.24968761,-0.10306965,2.2850509,1.4974306,-0.19917774,1.3439645,1.2675068,1400,train,1.2675068\n-0.84065074,0.16438492,-0.15903464,1.4532102,1.8551174,-0.7862906,0.9104205,1.1710005,1945,train,1.1710005\n-0.97680175,0.6617274,-0.42085567,4.0618854,2.3540483,-1.1122062,0.6919347,1.2452579,2578,train,1.2452579\n0.44418293,-0.34050408,-0.059324514,2.1913764,-0.28389987,-0.48829755,0.8142605,1.332197,2706,train,1.332197\n0.5792301,-0.36152485,-0.048083052,2.218379,-0.4701221,-0.48483592,0.7890852,1.2286309,233,train,1.2286309\n7.4328785,-1.163524,0.36370376,-2.7245135,-2.9273798,-1.1773584,1.1584346,1.8127636,165,train,1.8127636\n3.8703485,0.49759609,-0.3768358,0.7753839,2.458267,-2.351629,0.36581233,1.0094659,366,train,1.0094659\n3.4365926,0.49453798,-0.38315207,0.98573947,2.5953035,-2.053035,0.42341,1.172283,2296,train,1.172283\n-2.0101285,0.088079736,-0.09526905,1.4297789,1.6930175,-0.45641848,1.1251764,1.1399806,1736,train,1.1399806\n-3.0813098,0.02951774,-0.08522119,2.4462876,0.87880653,-0.37093985,1.3788775,1.3504418,2731,train,1.3504418\n3.6266544,0.5004351,-0.3869672,0.85589415,2.6040373,-2.1054127,0.4257931,1.2032827,2183,train,1.2032827\n-2.2100415,0.04043993,-0.08404015,1.5680503,1.475759,-0.4126708,1.1597409,1.0591773,1209,train,1.0591773\n-2.1107109,0.04427612,-0.08456054,1.4422235,1.478488,-0.43781236,1.166698,1.1193893,1528,train,1.1193893\n7.155012,0.82517487,-0.59456086,-2.5508654,3.938901,-2.9162927,0.516172,1.0406133,2388,train,1.0406133\n0.60198575,-0.26601788,-0.0933701,1.68218,-0.017980296,-0.5361245,0.8302745,1.1343505,9,train,1.1343505\n0.68827486,0.61282367,-0.39780003,3.093412,2.6282794,-1.6270969,0.49843708,1.0899198,355,train,1.0899198\n0.36167783,-0.60360277,0.12641816,3.1365945,-1.4682652,-1.1814876,1.0551589,1.4430999,941,train,1.4430999\n-0.46750972,-0.20850594,-0.067519024,1.737202,0.5817118,-0.47580808,0.92918706,1.0618569,2803,train,1.0618569\n-2.1813965,-0.018391963,-0.08245208,1.8753371,1.2957393,-0.34493247,1.1079351,1.1377177,1456,train,1.1377177\n0.7784631,-0.09422329,-0.15308188,0.5738825,0.8600194,-0.8623303,0.8704606,1.173935,1305,train,1.173935\n5.799357,-1.0614513,0.29042336,-0.24512376,-2.5273018,-1.7837868,1.0052307,1.7343004,1030,train,1.7343004\n1.7142152,0.80689913,-0.5405274,2.0002685,3.513819,-1.9988633,0.61196744,0.85491467,2449,train,0.85491467\n-1.4683987,0.5434561,-0.37347168,3.067857,2.09094,-0.777893,0.8731559,1.2314761,1909,train,1.2314761\n0.37244606,0.2591405,-0.25901395,1.3218154,2.1775806,-0.91367906,0.72175515,1.04463,2012,train,1.04463\n8.541172,-1.3196331,0.38843474,-2.8062866,-3.1092482,-1.7762616,1.06018,1.0807701,1087,train,1.0807701\n2.9893699,-0.1764223,-0.17690234,0.7426447,-0.5095875,-1.1723021,0.6626026,0.947284,866,train,0.947284\n2.486935,-0.55585116,0.038578518,2.5052443,-2.2029228,-1.1012602,0.7347092,1.1120358,41,train,1.1120358\n2.815112,0.89104587,-0.60637474,0.46057722,3.930267,-1.9240974,0.6817208,1.1904215,2435,train,1.1904215\n3.0282977,-0.7812954,0.18610705,0.7814218,-2.1473148,-0.8122699,1.053169,1.3160814,867,train,1.3160814\n-0.54036,-0.5405727,0.126016,3.741764,-1.337456,-1.1023046,1.0507963,1.3125087,1117,train,1.3125087\n0.51537496,-0.34604338,-0.053023934,2.1558452,-0.36334404,-0.4832834,0.8009196,1.2185764,315,train,1.2185764\n-1.6552467,0.017546374,-0.09439968,1.1420761,1.4154491,-0.4848323,1.1455609,1.2423757,671,train,1.2423757\n-1.2643541,-0.4763519,0.12124518,3.9426734,-1.2102511,-0.9109396,1.0727601,1.3624461,2862,train,1.3624461\n-1.8884063,0.34140027,-0.27537796,2.1414459,1.415462,-0.11673969,1.2106168,1.2267879,1289,train,1.2267879\n2.9893699,-0.1764223,-0.17690234,0.7426447,-0.5095875,-1.1723021,0.6626026,1.1453449,864,train,1.1453449\n-1.7848126,-0.40439656,0.08434637,4.0089827,-0.81132716,-0.8638337,1.0170945,1.2470496,96,train,1.2470496\n-0.59373534,0.15191224,-0.16115078,1.3487561,1.8571227,-0.83005697,0.87129635,1.1001192,1938,train,1.1001192\n5.9272966,0.67706585,-0.4872925,-1.0225677,3.1399446,-2.6443183,0.48573956,0.7134653,2399,train,0.7134653\n-2.2403789,-0.32226983,0.08017398,3.6585233,-0.59367526,-0.7470785,1.1605905,1.2961537,82,train,1.2961537\n-1.2491255,-0.12181083,-0.07849532,1.665589,1.057391,-0.46533218,1.0219618,1.1046082,1327,train,1.1046082\n-2.2884789,0.24222006,-0.19127145,2.0155494,1.2238919,-0.075311616,1.3199549,1.226743,1270,train,1.226743\n-3.4690235,0.09974333,-0.060968198,2.1788168,1.1791128,-0.34123844,1.3804287,1.2706083,1458,train,1.2706083\n-3.2431557,-0.03878677,-0.038648013,2.5833292,0.96594685,-0.42242754,1.281534,1.2378883,662,train,1.2378883\n-3.4336612,0.081739135,-0.058705915,2.2091362,1.1536521,-0.35097972,1.3676151,1.4970567,522,train,1.4970567\n3.0868375,0.39800924,-0.33999243,0.9066532,2.2163815,-2.387983,0.3631297,0.74318826,344,train,0.74318826\n0.014127235,0.23620859,-0.24219722,1.4120928,2.1424732,-0.8431778,0.75256294,0.96120656,1897,train,0.96120656\n2.5907252,-0.82591057,0.20293619,1.6964465,-2.0629165,-1.1877857,1.0611037,1.7100292,1068,train,1.7100292\n-0.023199957,-0.19335674,-0.0968794,1.3575091,0.583305,-0.5787091,0.9298548,1.1922375,46,train,1.1922375\n4.0061755,-0.25242662,-0.1995613,-0.47420022,1.3591532,-1.2613019,0.6686239,0.83283997,2244,train,0.83283997\n7.266829,0.9158078,-0.64107466,-3.029847,4.3786273,-3.0168982,0.53714883,0.6658633,2539,train,0.6658633\n-1.8170713,-0.05263128,-0.08387555,1.7393414,1.25285,-0.38921607,1.0780509,1.1019933,1446,train,1.1019933\n-0.31810334,0.6884564,-0.43119445,3.6797447,2.6389654,-1.2565141,0.63964814,1.4069836,2289,train,1.4069836\n1.6231282,-0.5568919,0.021931773,2.9174695,-1.7011933,-0.774029,0.7225252,1.3666304,948,train,1.3666304\n3.9197052,-0.8348327,0.21313652,0.15538745,-2.2351336,-0.9728437,1.0616335,1.63992,1102,train,1.63992\n2.7571945,-0.19742887,-0.16479273,-0.12031171,1.456648,-1.1402373,0.7551221,1.2155062,1972,train,1.2155062\n-2.1087441,0.043747973,-0.0848241,1.4474957,1.4790645,-0.43987867,1.1658459,1.1344994,775,train,1.1344994\n-1.8287203,-0.009565076,-0.083567314,1.4189743,1.358995,-0.4463246,1.128712,1.0391554,404,train,1.0391554\n0.12035386,-0.14602527,-0.08199501,0.7846901,1.3069254,-0.93553525,0.9146092,1.0221591,1244,train,1.0221591\n6.099935,-0.17382906,-0.30386195,-1.5311608,1.199078,-1.2401392,0.5645868,1.179093,2338,train,1.179093\n1.4219105,-0.73144996,0.15391466,2.8598952,-1.7765375,-1.2334884,0.98511124,1.125803,104,train,1.125803\n-2.3112166,0.26738432,-0.20324741,2.0671248,1.2786343,-0.045071922,1.31128,1.2963933,1518,train,1.2963933\n1.4087679,0.7728526,-0.51831454,2.2877104,3.3496397,-1.7458247,0.6492368,2.7145362,2171,train,2.7145362\n-2.1983004,0.318074,-0.25237465,2.3433366,1.444148,-0.10963291,1.1953131,1.2900498,1243,train,1.2900498\n-0.31973514,0.72774,-0.4507508,3.671956,2.6539402,-1.236223,0.6837175,1.4209204,572,train,1.4209204\n1.0524156,-0.090992674,-0.15725915,0.5344371,0.8299995,-0.9117345,0.8384477,1.1474069,2738,train,1.1474069\n-0.08804036,0.17160092,-0.18666722,1.097264,1.9095991,-0.8944202,0.8523114,1.041894,1967,train,1.041894\n0.8883946,-0.15499528,-0.14670706,0.8874857,0.498457,-0.8145325,0.85757184,1.1538186,1789,train,1.1538186\n-2.1496987,0.34377068,-0.25458854,2.1977565,1.4683493,-0.1254207,1.2125372,1.1471524,1673,train,1.1471524\n2.1577098,-0.79060125,0.1775312,2.2575002,-1.9380124,-1.3173407,1.0118787,1.8513663,2897,train,1.8513663\n-2.9829025,0.18421243,-0.1266801,2.2451468,1.2223026,-0.25104225,1.3553429,1.2665397,339,train,1.2665397\n-3.4456036,0.17092383,-0.07668064,2.2574022,1.444793,-0.252144,1.2941394,1.1759273,1350,train,1.1759273\n-1.8637964,0.2118405,-0.15399909,1.5662144,1.894587,-0.3867549,1.1056831,2.287121,1674,train,2.287121\n0.7103199,0.3132096,-0.28712443,1.2305844,2.2553613,-0.98253345,0.70852846,1.3960048,2066,train,1.3960048\n-0.9310112,0.20596881,-0.19898787,1.481706,2.0604377,-0.5991984,0.920743,1.1706201,1849,train,1.1706201\n1.997235,-0.71538603,0.13060838,1.7635688,-1.8858824,-0.5529509,1.0004203,1.397684,2618,train,1.397684\n1.4002281,-0.1544869,-0.16735503,0.7274368,0.411759,-0.8486984,0.8173817,1.1711135,982,train,1.1711135\n0.26195708,-0.08000375,-0.11382911,0.67484117,1.1229455,-1.0057085,0.9191988,1.0396398,1425,train,1.0396398\n-1.5841795,0.46831492,-0.3567307,2.8455975,1.7755564,-0.4879131,0.96979624,1.131482,1899,train,1.131482\n-0.21905826,-0.105282836,-0.0860771,0.8070196,1.256768,-0.90290684,0.97122556,1.0468487,1618,train,1.0468487\n0.18841307,-0.6001747,0.12746966,3.2000759,-1.5367779,-0.95720434,1.0852171,1.454155,807,train,1.454155\n9.958376,-1.432734,0.4658911,-4.036401,-3.419397,-1.8452033,1.1514615,1.1732029,131,train,1.1732029\n-0.03314725,-0.5349502,0.07326867,3.1106687,-1.5063031,-0.3563964,1.0458561,1.4725165,284,train,1.4725165\n0.57500964,-0.61296654,0.08612692,2.8666716,-1.6333009,-0.460801,1.0336977,1.5180864,2898,train,1.5180864\n-0.028273646,-0.07250941,-0.10861336,0.7010324,1.2016345,-0.94050586,0.9524572,1.0284326,1334,train,1.0284326\n1.0132656,0.754722,-0.49758235,2.7793567,3.198634,-1.715103,0.6090024,1.087318,2372,train,1.087318\n2.3675222,0.44722238,-0.34479618,1.5704416,2.50034,-1.7386556,0.408818,0.85881424,2157,train,0.85881424\n-0.29011562,-0.4657471,0.049740084,3.1873493,-1.3406724,-0.30757225,1.0517217,1.3395448,314,train,1.3395448\n6.6308427,0.73167497,-0.5345397,-1.8067588,3.3710437,-2.7689457,0.51296985,1.5892422,2699,train,1.5892422\n0.94379157,0.25459808,-0.24598809,1.3216063,2.0028648,-1.297996,0.60141325,1.1770403,2245,train,1.1770403\n-1.4352225,-0.09741304,-0.09384953,2.2045069,0.2054068,-0.18435246,1.2645789,1.3896818,2804,train,1.3896818\n-3.4245396,0.13242206,-0.08732318,2.3012805,1.1785836,-0.317104,1.3970658,1.2978764,460,train,1.2978764\n-0.12123153,-0.18119183,-0.09698321,1.319131,0.65877026,-0.5828422,0.9453451,1.166323,58,train,1.166323\n-3.4015799,0.0037105295,-0.038049154,2.4589334,0.9216592,-0.44579065,1.3864276,1.2295146,1237,train,1.2295146\n2.6680691,-0.15711422,-0.1789713,0.68138874,-0.18178631,-1.0980029,0.6875802,0.7575864,2776,train,0.7575864\n6.357361,-0.12713268,-0.3188699,-1.8183205,1.1775163,-1.2509136,0.57088166,1.1235178,2690,train,1.1235178\n-2.132975,0.052448098,-0.085569456,1.4462675,1.5076282,-0.43919155,1.1695677,1.3215106,1233,train,1.3215106\n3.7755878,0.5557793,-0.39273193,0.9897466,2.6317732,-2.3359535,0.38645402,0.76559657,2250,train,0.76559657\n-3.419523,0.07188105,-0.05904553,2.3035712,1.1986758,-0.3530927,1.3221823,1.2902235,483,train,1.2902235\n0.46923193,0.7292463,-0.47381562,3.2488587,2.9105706,-1.4556541,0.6333959,1.3659263,2270,train,1.3659263\n0.56996757,-0.09072979,-0.14810751,0.5639257,0.91670275,-0.8329728,0.90229815,1.1002746,1163,train,1.1002746\n0.6345587,0.8021307,-0.52039254,2.432865,3.2085984,-1.1801931,0.75338036,0.8373965,2451,train,0.8373965\n-3.4327862,0.17741722,-0.094754644,2.2465997,1.3004051,-0.2712201,1.3853072,1.3453841,342,train,1.3453841\n-1.2830486,0.23810133,-0.2507832,1.5418711,0.99792475,0.040484663,1.3601241,1.433301,405,train,1.433301\n1.1467893,-0.7012522,0.147333,2.980775,-1.7147194,-1.2215446,1.0051396,1.4168699,877,train,1.4168699\n-1.5021024,0.5004485,-0.35795614,2.638755,1.9605129,-0.5876911,0.96463585,1.1020185,1959,train,1.1020185\n-0.11436915,-0.12261688,-0.08124315,0.73020124,1.357968,-0.8423612,0.9620943,1.0794952,1920,train,1.0794952\n1.2551252,-0.47478592,-0.016616283,2.620233,-1.1357502,-0.6561388,0.7176749,1.3465931,833,train,1.3465931\n-1.8936832,0.38673753,-0.30568972,2.5110974,1.6269931,-0.3231222,1.0758561,1.1923453,1828,train,1.1923453\n0.45444348,-0.16114451,-0.08757203,0.7235156,1.3857292,-0.9778074,0.8795171,1.0391854,1825,train,1.0391854\n-1.6915601,0.20834024,-0.16129233,1.537663,1.9119276,-0.41556585,1.0716889,1.120079,1718,train,1.120079\n0.39714736,0.7178887,-0.4681952,3.2819803,2.8930557,-1.4245152,0.62732303,1.6743804,2265,train,1.6743804\n-0.9612333,-0.37024775,0.011688799,2.8205435,-0.70508987,-0.0969067,1.1324358,1.3524244,796,train,1.3524244\n-3.1899364,0.2092901,-0.117340624,2.2070358,1.3217165,-0.23091064,1.3656229,1.2720674,670,train,1.2720674\n-1.8305835,-0.04055167,-0.08512924,1.6001409,1.3285792,-0.43844703,1.1028007,1.1431234,686,train,1.1431234\n-2.7315128,-0.18494935,0.024744099,2.994034,0.17956029,-0.63453865,1.2887144,1.2385805,1164,train,1.2385805\n-1.1085656,0.15676747,-0.14653297,1.5122793,1.8348843,-0.7354988,0.94918615,1.2716593,2054,train,1.2716593\n-2.201407,0.073062845,-0.14184897,2.1675863,0.8827504,-0.3114859,1.3167115,1.3269066,726,train,1.3269066\n0.120064735,-0.11749953,-0.09765027,0.8563243,1.1762427,-1.0293648,0.9128537,1.0316447,1510,train,1.0316447\n5.6688275,-1.0597653,0.30175918,-0.3220196,-2.5333173,-1.7392573,1.033076,1.5574377,899,train,1.5574377\n4.7335954,-0.26366836,-0.2294996,-0.6858263,1.3181118,-1.2936423,0.6178374,0.7806318,580,train,0.7806318\n-0.122198306,0.19104935,-0.19394638,1.2223439,1.9188706,-0.9270656,0.8294179,0.97312903,1971,train,0.97312903\n8.348347,-1.30374,0.4021228,-2.5017693,-3.0941887,-1.8304278,1.0811706,1.541524,1043,train,1.541524\n-2.823352,0.010410225,-0.09180656,2.393131,0.8014832,-0.3687028,1.3680092,1.2112101,735,train,1.2112101\n-2.00514,0.002813049,-0.0826202,1.5033349,1.4006481,-0.41940126,1.1394035,1.0532775,1408,train,1.0532775\n-3.3616292,0.079541355,-0.07531174,2.3459375,1.0445094,-0.37347788,1.4023958,1.2198123,721,train,1.2198123\n-2.9876506,0.21317036,-0.13280018,2.1864011,1.2894462,-0.2185245,1.3560755,1.3402687,692,train,1.3402687\n1.2879914,0.7969096,-0.5350478,2.2618473,3.4280677,-1.7065196,0.673596,1.6630462,2696,train,1.6630462\n2.09571,0.36485,-0.32469922,1.2725954,2.1190197,-2.0703924,0.4224263,1.2349286,2290,train,1.2349286\n-1.3971268,0.50465506,-0.36600846,2.65172,1.9577241,-0.5968148,0.96069074,1.2239895,2113,train,1.2239895\n3.3026056,-0.20896652,-0.18532135,-0.33733863,1.4493383,-1.1399878,0.72700053,1.2672805,2159,train,1.2672805\n8.348347,-1.30374,0.4021228,-2.5017693,-3.0941887,-1.8304278,1.0811706,1.1410364,1053,train,1.1410364\n4.161765,-0.9060434,0.15952133,1.6684397,-2.7703063,-1.3373728,0.7352392,1.5362458,155,train,1.5362458\n1.0855725,-0.69377494,0.14621453,2.9058783,-1.7091864,-1.1861552,1.0300201,1.4656146,886,train,1.4656146\n-2.0878959,0.039956,-0.0848899,1.4457179,1.4681911,-0.44199935,1.1633232,1.1638323,2644,train,1.1638323\n-2.2452512,0.35496667,-0.26288983,2.4262362,1.6029947,-0.22029932,1.1384629,1.145629,1750,train,1.145629\n-2.6933548,-0.2043351,0.03428756,3.1369536,0.062159833,-0.6431729,1.2673739,1.1470541,2845,train,1.1470541\n-2.310151,0.077434614,-0.13685113,2.1887262,0.90524405,-0.31932834,1.3240701,1.3951194,718,train,1.3951194\n-3.539575,0.16304424,-0.06981714,2.1959777,1.3372095,-0.28328082,1.3571213,1.309751,499,train,1.309751\n6.2664742,1.2097826,-0.7892259,-4.1537805,5.0453663,-1.6788436,0.76887405,1.3471904,2502,train,1.3471904\n1.4885659,-0.5213913,0.0029391441,2.7467973,-1.3865777,-0.7176846,0.71157074,1.2999836,961,train,1.2999836\n-0.40149733,-0.51012695,0.06999882,3.3130322,-1.3562917,-0.34260505,1.0370597,1.3308825,878,train,1.3308825\n11.92479,-1.5771163,0.5230033,-5.9710274,-3.7421086,-1.844248,1.2197399,1.1917231,916,train,1.1917231\n-1.9654443,-0.3548463,0.08089173,3.6345515,-0.65225196,-0.85779387,1.1405311,1.3530723,1557,train,1.3530723\n0.10796647,0.19514969,-0.20526227,1.1432797,1.9428853,-0.96150273,0.8070954,1.1617625,2087,train,1.1617625\n0.15289989,-0.21207197,-0.09719572,1.4364113,0.4401952,-0.573419,0.9013341,1.2180424,16,train,1.2180424\n-1.330253,-0.2708703,-0.012706617,2.744766,-0.46959564,-0.05336007,1.1743355,1.3182268,2790,train,1.3182268\n-1.5821129,0.010527269,-0.15499753,1.9287148,0.637769,-0.24253342,1.3149892,1.3030533,2764,train,1.3030533\n-0.9292515,0.5734592,-0.41072065,3.1949368,2.184191,-0.93474764,0.84692603,1.2505677,1990,train,1.2505677\n2.000995,-0.08687763,-0.1775073,0.55039185,0.44979686,-1.072188,0.7054461,1.1752472,1730,train,1.1752472\n-2.2347722,0.35260925,-0.2529394,2.2848,1.5526272,-0.17431296,1.1770656,1.2367479,1284,train,1.2367479\n-2.2222464,-0.009275039,-0.08293442,1.8670657,1.3196269,-0.34432873,1.1133492,1.1563964,482,train,1.1563964\n1.6297971,0.38531837,-0.31803292,1.3582258,2.3967168,-1.3868996,0.5376666,0.91136086,2118,train,0.91136086\n-2.3109903,0.16451739,-0.15941712,2.1230247,1.0838878,-0.24359733,1.3155417,1.3726804,2716,train,1.3726804\n-2.1076689,0.34985533,-0.2625262,2.2360923,1.4974673,-0.1530776,1.1916971,1.1273931,1708,train,1.1273931\n7.08899,0.84125125,-0.6026952,-2.5090904,4.031891,-2.9396496,0.5111956,0.7650087,2433,train,0.7650087\n2.7792544,-0.1337699,-0.19251336,0.6600379,-0.24034135,-1.1337192,0.6757304,1.2824008,831,train,1.2824008\n8.312534,1.2149336,-0.7578519,-5.8235216,5.250406,-2.9850118,0.7381277,0.5752821,428,train,0.5752821\n1.6193202,0.3854765,-0.31215173,1.6092832,2.349744,-1.4846709,0.47647575,0.96008766,1952,train,0.96008766\n3.083841,-0.2071556,-0.16901769,-0.13009886,1.3845841,-1.2364795,0.71954876,1.3376434,2117,train,1.3376434\n4.832145,-0.98913825,0.27327392,0.35567427,-2.3948205,-1.6603832,1.0298282,1.7424233,976,train,1.7424233\n-3.2889538,-0.016029749,-0.04174276,2.5059478,1.0022095,-0.41684505,1.3026114,1.3028094,728,train,1.3028094\n-0.7123168,0.49064878,-0.40259147,2.544325,1.8773493,-0.6232701,0.97713965,1.3062235,2122,train,1.3062235\n6.178525,0.67432046,-0.49552685,-1.1870539,3.1278,-2.72629,0.4568802,1.0947423,2310,train,1.0947423\n1.1170413,-0.51888096,0.0070225317,2.9494128,-1.3044376,-0.62148905,0.7146089,1.3978314,1071,train,1.3978314\n-2.0825427,0.039147284,-0.08468703,1.4418045,1.4646107,-0.44107005,1.1629107,1.2603495,1199,train,1.2603495\n0.88483244,0.7503676,-0.49453318,2.8442523,3.1363237,-1.597504,0.6335034,1.503411,2400,train,1.503411\n0.6179289,-0.09175285,-0.15002729,0.5605922,0.89231783,-0.8300913,0.897912,1.1219897,1306,train,1.1219897\n9.631026,-1.4104453,0.45736873,-3.7521517,-3.361044,-1.8280749,1.144224,1.3449701,118,train,1.3449701\n-3.3817127,0.053599156,-0.057727877,2.3449872,1.1694366,-0.3568058,1.3085831,1.2842562,510,train,1.2842562\n6.0633216,-0.1750503,-0.30544907,-1.5258049,1.219199,-1.1731236,0.5791794,1.6062276,2376,train,1.6062276\n-3.241125,0.21678787,-0.092522964,2.0972908,1.61677,-0.24144216,1.2773142,1.274723,1230,train,1.274723\n-2.891176,0.22886878,-0.113452666,1.9683058,1.6875607,-0.25322494,1.2412007,1.2252989,1700,train,1.2252989\n0.7496828,0.31625214,-0.2888658,1.2160338,2.259917,-0.9924546,0.706086,1.1913022,2114,train,1.1913022\n-2.2969503,-0.29081035,0.05705253,3.3605757,-0.2773887,-0.76899505,1.2035716,1.0745618,1152,train,1.0745618\n1.8208082,0.39515838,-0.32108966,1.459308,2.403322,-1.4842997,0.49102113,0.9586729,1988,train,0.9586729\n0.39597327,-0.44137314,-0.0077181836,2.8275006,-0.87254274,-0.4843354,0.7650205,1.1512997,299,train,1.1512997\n0.8406593,0.39748946,-0.3219262,1.5702449,2.446044,-1.2491224,0.6363148,0.94392824,2129,train,0.94392824\n8.562117,1.2755568,-0.7678961,-6.5008535,5.263253,-2.9882102,0.7394913,0.4268297,2474,train,0.4268297\n2.7283916,-0.15611751,-0.1822389,0.69932306,-0.24279773,-1.1163887,0.68263704,1.0532694,2767,train,1.0532694\n-3.4367378,0.25030747,-0.10251148,2.2480233,1.5372059,-0.20516558,1.3309176,1.2779658,1526,train,1.2779658\n0.5526834,0.2903832,-0.27375057,1.177177,2.2211452,-0.88859165,0.74425566,1.0538207,2105,train,1.0538207\n-1.2789925,0.53037196,-0.38395664,2.9987857,2.0378163,-0.7469397,0.89550143,1.2300663,1960,train,1.2300663\n-2.0986192,0.3299044,-0.2581436,2.2424543,1.4236777,-0.09805677,1.2112666,1.1645434,1641,train,1.1645434\n-0.96056503,0.6790113,-0.41369477,4.036517,2.456857,-1.1561217,0.6451944,1.0361673,584,train,1.0361673\n-2.3406937,-0.2788773,0.05770404,3.4075074,-0.47023368,-0.42937145,1.199907,1.3914868,38,train,1.3914868\n2.484135,-0.8352206,0.20744969,1.7940825,-2.0936372,-1.1933316,1.0471808,1.0762556,2772,train,1.0762556\n0.98036546,0.33019042,-0.2936633,1.4636037,2.2611725,-1.2088612,0.59007007,0.93477714,1937,train,0.93477714\n-1.7866583,0.2749477,-0.24015304,1.7960653,1.1711131,0.06895286,1.3274193,1.2867414,1590,train,1.2867414\n-3.4177878,0.17422353,-0.09566751,2.24909,1.2868074,-0.2716056,1.3861817,1.3256899,2715,train,1.3256899\n-3.4801483,0.13080062,-0.074425094,2.160884,1.249332,-0.32026348,1.3940866,1.4747635,468,train,1.4747635\n-0.5730934,0.3337281,-0.27055636,1.6777077,2.2532163,-0.7864597,0.84118354,0.95924366,2006,train,0.95924366\n-0.36696145,0.64714515,-0.4350736,3.302887,2.3261385,-0.9729977,0.80945504,1.2887877,2292,train,1.2887877\n3.45014,-0.22107676,-0.15930487,0.76745564,-0.89983755,-1.2111119,0.6205684,0.754286,1110,train,0.754286\n0.40871516,-0.3296421,-0.061549455,2.1467113,-0.22664483,-0.48910984,0.8181777,1.3264534,891,train,1.3264534\n3.0115988,-0.8482103,0.2008603,1.6535553,-2.0490408,-1.446673,1.0168021,1.8441954,766,train,1.8441954\n1.3046429,-0.72020316,0.15158707,2.9246404,-1.7590914,-1.2192755,0.990423,1.461244,294,train,1.461244\n6.7037334,-0.045406584,-0.33652738,-2.3225236,1.1498582,-1.2896625,0.5906972,1.4620447,2431,train,1.4620447\n7.732028,-1.1128886,0.34738994,-3.2773824,-2.8816547,-1.2298199,1.1820287,1.0965457,135,train,1.0965457\n-1.4807767,-0.00766045,-0.09627679,1.1210027,1.3551694,-0.5030528,1.1263088,1.2668518,465,train,1.2668518\n-1.2583044,0.5302597,-0.3847633,2.9819045,2.0425413,-0.74908805,0.8965193,1.1789466,2124,train,1.1789466\n3.519544,-0.8407338,0.20099702,0.54778284,-2.215137,-0.88431257,1.0578018,1.7566674,906,train,1.7566674\n-1.1724136,0.5980723,-0.39799738,3.3188775,2.3109684,-1.0022749,0.793424,1.3640515,2096,train,1.3640515\n-2.4097164,0.31192064,-0.21823278,2.1949606,1.4451237,-0.09923403,1.2497693,1.1549052,1658,train,1.1549052\n8.196729,0.8943634,-0.55394214,-6.0150886,3.0631275,-2.8779361,0.72107476,0.519111,2477,train,0.519111\n-3.2470489,-0.068842836,-0.01659001,2.6207905,0.74257433,-0.5149824,1.3502054,1.2400104,747,train,1.2400104\n7.49315,0.91206294,-0.63046813,-3.3652208,4.2685046,-3.090765,0.533971,0.7658094,2541,train,0.7658094\n-0.29736903,-0.09255203,-0.08752925,0.7922257,1.2642652,-0.8952657,0.9859451,1.0989034,1376,train,1.0989034\n-1.24868,-0.22164916,-0.04480465,2.431432,-0.16539706,-0.12376834,1.2088684,1.3874557,1558,train,1.3874557\n1.9898089,-0.30228686,-0.12959462,1.3181484,-0.4097321,-0.81875837,0.71843576,1.2844367,1031,train,1.2844367\n-2.7071347,-0.20826314,0.028659027,3.1500268,0.1349863,-0.6567116,1.2427434,1.3363153,2744,train,1.3363153\n-2.9866807,0.20880136,-0.1319187,2.1962085,1.2797908,-0.22399946,1.3557004,1.291893,488,train,1.291893\n2.6906443,-0.6830703,0.09176189,2.5291257,-2.254055,-1.1112546,0.7336867,1.2910047,168,train,1.2910047\n0.3168034,-0.09046348,-0.11265269,0.7407042,1.0915227,-1.036719,0.89500046,0.9847244,1188,train,0.9847244\n4.5231857,-0.24417363,-0.22296643,-0.71891123,1.3411466,-1.221553,0.6584507,1.146106,650,train,1.146106\n-1.5927342,0.53341776,-0.3623221,2.9619362,2.0663462,-0.71441525,0.8944954,1.176185,1942,train,1.176185\n-2.9996955,0.03614226,-0.06836257,2.2225518,1.2638104,-0.32306024,1.2060239,1.2669301,521,train,1.2669301\n-0.5142279,-0.20171186,-0.06930227,1.7263606,0.62583655,-0.4838751,0.93536085,1.0498891,2737,train,1.0498891\n-1.7225608,-0.051474217,-0.083668865,1.5628233,1.2960063,-0.46072474,1.0936877,1.1671588,2722,train,1.1671588\n3.2112226,0.9041203,-0.6097704,0.36044186,3.9642243,-2.111197,0.62961364,1.123914,2598,train,1.123914\n1.3854427,-0.67094284,0.09610505,2.3442159,-1.745401,-0.48291215,0.99947923,1.570498,2888,train,1.570498\n1.6548264,-0.5841727,0.04326619,2.988922,-1.8473895,-0.7884772,0.748877,1.4855448,901,train,1.4855448\n-0.9767602,0.55707544,-0.40607104,3.1305878,2.1307821,-0.892361,0.8612422,1.2503822,2120,train,1.2503822\n-1.7127895,-0.02995179,-0.08414144,1.4227817,1.323483,-0.45630032,1.1118411,1.088717,1360,train,1.088717\n0.032377917,0.22703025,-0.2394672,1.295903,2.1410341,-0.7952294,0.7805159,0.98777777,2678,train,0.98777777\n3.2520046,-0.20886363,-0.18324982,-0.31315875,1.4498522,-1.1409057,0.72840464,1.273135,2232,train,1.273135\n7.3680487,0.8239887,-0.5986522,-2.8046057,3.9529421,-3.0040317,0.487852,0.5482262,2597,train,0.5482262\n6.1859145,-0.15275867,-0.31182978,-1.657794,1.2047145,-1.2011689,0.57544273,1.36243,2335,train,1.36243\n-2.3238437,0.28331572,-0.21556027,2.146484,1.3139666,-0.054622404,1.2910254,1.2566932,1497,train,1.2566932\n-0.022578463,0.73549324,-0.46544692,3.437512,2.7572207,-1.2529031,0.684601,1.4406681,2248,train,1.4406681\n1.0895923,-0.094045065,-0.15825903,0.5317855,0.80249226,-0.9007377,0.8372684,0.9980486,2805,train,0.9980486\n0.9430837,0.75116605,-0.4935493,2.8729382,3.1659255,-1.712197,0.6002845,1.0556772,2345,train,1.0556772\n-0.2843059,-0.57461655,0.12698139,3.7377362,-1.4586351,-1.1188979,1.0542846,1.5271685,751,train,1.5271685\n5.834601,-1.0724137,0.31780064,-0.6772304,-2.6205,-1.6260678,1.0917655,1.4063139,1016,train,1.4063139\n0.605507,-0.078790195,-0.13102569,0.61261404,1.0237572,-1.0036798,0.8736676,1.0775182,1325,train,1.0775182\n5.5545864,1.1176375,-0.7512649,-3.1162708,4.833814,-1.7478791,0.7517411,1.3124809,426,train,1.3124809\n3.6035614,0.51732534,-0.38905188,0.90551233,2.627207,-2.1230123,0.42681646,1.1780787,112,train,1.1780787\n3.1914506,-0.7756488,0.16792265,0.7465899,-2.026413,-0.78231347,1.036258,1.6672082,2735,train,1.6672082\n0.120203905,-0.14627042,-0.08359387,0.80412495,1.3164327,-0.9389945,0.91578186,1.0493337,1642,train,1.0493337\n0.6440671,-0.37493238,-0.050347667,2.2518938,-0.49035835,-0.49455371,0.79822534,1.2935638,2570,train,1.2935638\n-2.3444173,-0.28710827,0.06256086,3.4599571,-0.5021516,-0.4613171,1.1946424,1.3264005,44,train,1.3264005\n7.9499874,0.84239656,-0.54917055,-5.2856383,3.0652087,-2.9328432,0.69209623,0.52809757,417,train,0.52809757\n-2.999832,0.21694337,-0.10302591,1.967581,1.7018443,-0.24722044,1.2469405,1.3723922,1531,train,1.3723922\n-1.7573202,0.28346473,-0.24840331,1.834696,1.1955343,0.068518095,1.3159864,1.5063624,1566,train,1.5063624\n-1.2078348,-0.052083615,-0.0947016,1.1823013,1.2160723,-0.5243094,1.0857837,1.1346085,664,train,1.1346085\n-0.23754394,-0.10116486,-0.08681697,0.80376947,1.2568976,-0.9061866,0.97465783,1.0396067,1488,train,1.0396067\n-1.434455,0.19803034,-0.17521316,1.5595895,1.9573922,-0.48895708,1.0026922,1.0670382,1746,train,1.0670382\n0.6323674,-0.0779584,-0.13454592,0.5752812,1.0195955,-0.9693573,0.88260084,1.0924674,2726,train,1.0924674\n0.055294372,-0.2943721,-0.05405303,1.9759847,0.026998248,-0.4172786,0.84999955,0.9517148,2789,train,0.9517148\n1.2069713,0.36974838,-0.29801363,1.628625,2.056636,-1.8381379,0.47261858,0.742596,546,train,0.742596\n-0.61013186,0.69740474,-0.43181425,3.8382971,2.5340753,-1.1515557,0.6766597,1.2537129,2218,train,1.2537129\n5.50945,-0.23680392,-0.2730954,-1.0425599,1.244131,-1.3065765,0.56949705,1.3457377,2348,train,1.3457377\n-3.549129,0.23268472,-0.09620706,2.3285587,1.4601927,-0.22309816,1.349495,1.769491,1203,train,1.769491\n-1.2621316,0.6058552,-0.3960688,3.5019023,2.3166208,-1.0285946,0.7694009,1.0795636,2143,train,1.0795636\n-2.0657446,0.34811404,-0.27827942,2.4236548,1.5328567,-0.1835419,1.1414604,1.2506114,2438,train,1.2506114\n1.0072824,-0.23034196,-0.12557824,1.2420783,0.13400972,-0.6962616,0.8223308,1.1240563,282,train,1.1240563\n-1.4946362,0.19727778,-0.16966479,1.5355756,1.9326237,-0.46257335,1.0236726,1.1912274,2439,train,1.1912274\n4.3382215,-0.8745547,0.23677997,-0.1550714,-2.319601,-1.0554478,1.0699283,1.5998139,2609,train,1.5998139\n-0.46615708,-0.4921215,0.06692318,3.2732444,-1.3393052,-0.29050335,1.0384914,1.4480971,250,train,1.4480971\n-3.4183269,-0.011749866,-0.03154427,2.5656095,0.88926286,-0.45888615,1.3708315,1.3941877,2725,train,1.3941877\n-3.4946604,0.12623483,-0.06489688,2.1776893,1.2464478,-0.31048545,1.3668723,1.2432245,2711,train,1.2432245\n-1.1316786,0.58369523,-0.39991322,3.2099526,2.2649632,-0.96780646,0.8203983,1.5668297,2079,train,1.5668297\n-3.5380163,0.14914717,-0.07664053,2.2131684,1.3085942,-0.290953,1.3755537,1.3699111,1366,train,1.3699111\n-1.5047213,0.054217163,-0.09737478,1.1196874,1.6912259,-0.52304167,1.0969129,1.1566283,611,train,1.1566283\n-0.6387876,-0.4976113,0.08657524,3.456537,-1.3622676,-0.44171587,1.0604693,1.3777688,243,train,1.3777688\n5.7229095,-0.17069167,-0.29588565,-1.2888132,1.2926247,-1.222652,0.57197815,1.6299756,2325,train,1.6299756\n1.4485574,-0.18413146,-0.11537049,0.28500596,1.4605585,-1.041331,0.82882637,1.104441,2645,train,1.104441\n0.55219537,-0.57133573,0.07013158,2.7912724,-1.6122415,-0.3710342,1.029133,1.4325217,259,train,1.4325217\n-3.5323076,0.18677235,-0.083650894,2.2574096,1.3715522,-0.27829114,1.3683214,1.2476549,696,train,1.2476549\n-0.26511198,-0.5665811,0.116941795,3.4868016,-1.5161161,-0.7502228,1.0735414,1.468406,194,train,1.468406\n2.3513422,0.54265565,-0.38827175,1.8736142,2.67986,-1.9124905,0.43488073,1.1971328,547,train,1.1971328\n-0.1488628,0.732764,-0.46036434,3.5441163,2.7202384,-1.2534539,0.683549,1.4215949,576,train,1.4215949\n-1.9615206,0.091799155,-0.09816849,1.4337493,1.7127988,-0.46693113,1.1122103,1.1256372,1280,train,1.1256372\n-1.7640088,-0.40285164,0.11216921,3.8896468,-0.99655735,-0.8189556,1.0830008,1.4113044,29,train,1.4113044\n-0.707672,0.69943506,-0.43026924,3.9502738,2.511259,-1.1611909,0.669515,1.2748418,388,train,1.2748418\n1.484345,0.27255732,-0.2607128,1.1158063,2.020657,-1.4188068,0.55682695,0.7852727,358,train,0.7852727\n1.281218,0.78832245,-0.5252589,2.431379,3.41075,-1.9249194,0.6003004,0.62347245,2454,train,0.62347245\n-3.2152426,-0.08762667,-0.016848618,2.715772,0.7385168,-0.50822824,1.3183701,1.2645847,2757,train,1.2645847\n-1.9671015,0.31654298,-0.27813837,2.4031649,1.4186002,-0.10463417,1.159596,1.3313609,1799,train,1.3313609\n-3.4750202,0.08519851,-0.058807727,2.293608,1.1760939,-0.3444976,1.347525,1.3487068,1423,train,1.3487068\n0.3856102,-0.36662477,-0.04307759,2.3295476,-0.36470556,-0.4694928,0.82604766,1.2543834,805,train,1.2543834\n4.6685796,0.57979345,-0.41874167,0.12066471,2.760544,-2.423054,0.44816965,1.2976335,2204,train,1.2976335\n-2.0020633,0.2152588,-0.19655095,1.9572284,1.1107271,-0.1021698,1.3085177,1.2366378,1407,train,1.2366378\n9.564583,-1.4199053,0.40240058,-3.3057158,-3.3804636,-1.844939,1.0408093,1.0541422,140,train,1.0541422\n-2.47681,0.34437227,-0.22183445,2.311825,1.6932695,-0.25237426,1.157405,1.1903816,632,train,1.1903816\n-2.4634576,0.28881678,-0.21680412,2.3157485,1.4494234,-0.12396261,1.2260665,1.3115509,2631,train,1.3115509\n1.9612771,0.41885218,-0.32725823,1.7023656,2.4310517,-1.6406728,0.42567942,0.90359414,2142,train,0.90359414\n-2.112987,0.36385858,-0.28314438,2.5405827,1.6212664,-0.27211002,1.096013,1.1728266,1756,train,1.1728266\n0.94709706,-0.68703645,0.145981,3.0366166,-1.70159,-1.1710585,1.0244021,1.5787647,881,train,1.5787647\n-1.0491284,0.6329402,-0.41213608,3.7204866,2.3551712,-1.0332226,0.7396727,1.2081001,2156,train,1.2081001\n6.006798,0.6848673,-0.4929605,-1.0777264,3.1690698,-2.6785824,0.4733197,0.706025,2362,train,0.706025\n-0.80742466,0.6709313,-0.41608074,3.8494554,2.4678133,-1.1386285,0.65988886,1.161126,2237,train,1.161126\n0.99902165,0.753137,-0.49705735,2.769011,3.1845853,-1.6714791,0.62018615,1.0601679,2365,train,1.0601679\n-2.9644141,0.13972831,-0.117678426,2.3164206,1.1037322,-0.3006611,1.3587735,1.2502835,455,train,1.2502835\n-3.5175767,0.1732715,-0.08238536,2.2266402,1.3388815,-0.28819326,1.3774884,1.1567782,407,train,1.1567782\n3.0072718,-0.098861404,-0.21958065,-0.43614292,1.7305616,-1.0783945,0.7312302,1.426661,351,train,1.426661\n-0.20796071,-0.5225181,0.07293499,3.2236876,-1.4484656,-0.36084703,1.0447677,1.5523267,303,train,1.5523267\n0.9538722,-0.22317728,-0.12712103,1.2388469,0.18114938,-0.7080863,0.8266198,1.1965451,305,train,1.1965451\n1.9805968,0.8079656,-0.54946077,1.7298431,3.5591774,-1.9472744,0.6425158,1.2924454,2592,train,1.2924454\n7.672722,0.90659595,-0.6407542,-3.5063536,4.3763275,-2.9538574,0.5643089,0.57696944,2497,train,0.57696944\n-2.1570024,0.03054941,-0.083817445,1.5579299,1.4522634,-0.4142437,1.1535177,1.1091983,1392,train,1.1091983\n3.0377312,-0.2083112,-0.1749628,-0.2142699,1.4545853,-1.1415684,0.7350568,1.2753487,2141,train,1.2753487\n0.18526632,-0.084914,-0.108640105,0.7057899,1.1337609,-1.0105553,0.9276299,1.032721,1364,train,1.032721\n-2.3226638,0.067335494,-0.097896144,1.9356871,1.6280823,-0.5090912,1.0631003,1.0853405,1697,train,1.0853405\n4.6065197,-0.24918091,-0.22566469,-0.7252251,1.3312557,-1.2306195,0.6493365,1.1510831,2198,train,1.1510831\n-2.973274,0.24098505,-0.117026426,2.029894,1.665304,-0.23539916,1.2577795,1.29347,1699,train,1.29347\n-0.79834116,0.12235359,-0.1431828,1.3095361,1.8341267,-0.7668602,0.9154967,1.0214081,2664,train,1.0214081\n-2.3021228,0.24890971,-0.19469607,2.0400915,1.2407379,-0.07162181,1.3156316,1.296112,1319,train,1.296112\n6.07085,1.1791508,-0.7781315,-3.8512645,4.976208,-1.6947658,0.7667961,1.1597571,2535,train,1.1597571\n-3.4980876,0.130884,-0.065301605,2.177813,1.2569418,-0.30567265,1.3649294,1.201809,338,train,1.201809\n-0.25517645,-0.5173568,0.072298,3.2436488,-1.4334296,-0.3525028,1.043897,1.6045634,185,train,1.6045634\n-2.2862093,0.19404136,-0.17101935,2.0352669,1.1495402,-0.19395119,1.3213441,1.3554655,701,train,1.3554655\n2.0131931,0.41683814,-0.3287998,1.6355231,2.4357483,-1.627861,0.43388176,0.8182331,1979,train,0.8182331\n-0.57612646,-0.53522307,0.11259467,3.6125166,-1.4375936,-0.7247335,1.0767444,1.4438076,248,train,1.4438076\n-3.3861606,0.25489718,-0.10506351,2.2183676,1.560767,-0.20596415,1.324154,1.2086862,1506,train,1.2086862\n3.0335712,-0.14980613,-0.18492909,0.67342216,-0.47597364,-1.1751442,0.66066575,1.2255394,904,train,1.2255394\n4.822536,-0.25104412,-0.23532844,-0.76492727,1.3110138,-1.2543108,0.62896043,1.1015303,2206,train,1.1015303\n0.53052044,-0.46041396,-0.0013279049,2.8983393,-1.0014113,-0.5187657,0.7487426,1.17149,220,train,1.17149\n0.63476056,-0.3814742,-0.042636797,2.3293412,-0.5705161,-0.4909706,0.78258944,1.2035813,2899,train,1.2035813\n7.7858877,0.8654009,-0.62439203,-3.4960551,4.1825237,-2.9225953,0.5562049,1.4614761,414,train,1.4614761\n-0.028059438,0.7045445,-0.4524621,3.2903454,2.55308,-1.0562767,0.762575,1.4173498,2299,train,1.4173498\n-0.6744354,-0.052231904,-0.08823887,0.76209,1.3259288,-0.7933838,1.0544177,1.0662885,1318,train,1.0662885\n-3.4679031,0.10612317,-0.0621529,2.1819656,1.2002009,-0.33281294,1.3715608,1.1647267,472,train,1.1647267\n-2.136513,-0.2138998,-0.0010447018,2.9210038,-0.11879555,-0.25088763,1.2321253,1.3474052,56,train,1.3474052\n-0.02295957,-0.19974801,-0.09433427,1.4076406,0.55556315,-0.567025,0.9231888,1.1243231,89,train,1.1243231\n-2.0276875,0.21365109,-0.19482526,1.9654465,1.115336,-0.10594353,1.3089541,1.4833329,1410,train,1.4833329\n5.2488256,-1.018269,0.2847591,0.01667652,-2.4540827,-1.6929147,1.0391808,1.7091129,963,train,1.7091129\n-3.441644,0.21146356,-0.09961294,2.2671869,1.3777426,-0.24832383,1.371252,1.330261,697,train,1.330261\n5.8310795,0.6525451,-0.47554967,-0.877392,3.0462651,-2.6487784,0.4748044,1.3946939,2421,train,1.3946939\n-3.1694539,-0.10496165,-0.020049576,2.8018243,0.77065134,-0.48323983,1.2700735,1.095834,746,train,1.095834\n-0.5263031,-0.27449977,-0.05200551,2.2824159,0.1943305,-0.398419,0.88849473,1.0045264,77,train,1.0045264\n-3.0518286,0.22940816,-0.10521276,1.9965215,1.6849455,-0.23926495,1.2651011,1.3651158,1535,train,1.3651158\n4.3484783,-0.22613427,-0.22324592,-0.71655023,1.4253927,-1.2097795,0.6618625,1.3133252,2176,train,1.3133252\n7.7282624,0.2303859,-0.38089114,-4.5447054,1.3042963,-1.5606607,0.69119436,1.2565888,2526,train,1.2565888\n2.0307732,0.43730962,-0.33500275,1.6923553,2.4756565,-1.6575962,0.42754823,1.0558305,2153,train,1.0558305\n-0.48039097,-0.54941374,0.1267378,3.7476006,-1.3801666,-1.0991676,1.0572152,1.5240227,1794,train,1.5240227\n-1.9636787,-0.008746645,-0.082706474,1.5163845,1.3825026,-0.4148047,1.1304855,1.1032166,1431,train,1.1032166\n-3.4498558,0.09174533,-0.05977475,2.182222,1.1650093,-0.3468336,1.377151,1.4009067,514,train,1.4009067\n7.352483,0.82035017,-0.5957842,-2.7775843,3.9229507,-2.9218097,0.51792425,0.8667041,660,train,0.8667041\n2.8819816,-0.84613997,0.21036828,1.5621351,-2.093305,-1.2848225,1.0524137,1.4465166,1067,train,1.4465166\n-2.0268948,-0.2671202,0.02564764,3.0950744,-0.4019669,-0.23858355,1.1962202,1.2991457,34,train,1.2991457\n-0.18406972,-0.41270736,0.038944595,2.7902462,-1.3046714,-0.34967226,1.1229751,1.4475822,842,train,1.4475822\n-1.5977464,-0.07117246,-0.08258871,1.5716809,1.2399677,-0.45770085,1.0754063,1.1062876,1464,train,1.1062876\n0.3597523,-0.087323815,-0.11570503,0.7154983,1.0841724,-1.0351505,0.8929773,1.0143201,990,train,1.0143201\n0.120708615,-0.6213384,0.13292895,3.3999932,-1.6196612,-0.9049659,1.0631154,1.4141014,307,train,1.4141014\n0.30356663,-0.45082512,-0.005439012,2.861994,-0.8687492,-0.47633243,0.77646405,1.223381,190,train,1.223381\n3.3746114,-0.22458838,-0.17839593,-0.26988462,1.3901051,-1.2327188,0.7062466,1.0480307,2144,train,1.0480307\n-1.5156205,0.55990183,-0.38029703,3.3904579,2.086307,-0.85995644,0.83746904,1.1115094,1929,train,1.1115094\n-2.086005,0.117560774,-0.16207261,2.1456463,0.9474472,-0.26259235,1.3014295,1.3560005,516,train,1.3560005\n0.82335633,0.7388308,-0.4829436,2.9806607,3.0495942,-1.5898553,0.6175967,1.6208732,2425,train,1.6208732\n0.4977943,-0.1670641,-0.08708372,0.70494455,1.3725008,-0.9906357,0.87099296,1.0600829,1749,train,1.0600829\n8.114932,1.1898292,-0.73228407,-5.4474745,5.0089955,-3.140451,0.67304087,0.38631284,2515,train,0.38631284\n-1.3232356,-0.36017433,0.028198015,2.9407465,-0.6617288,-0.17508848,1.1472641,1.2884579,800,train,1.2884579\n-3.3566945,0.25817925,-0.10746589,2.2032757,1.5677067,-0.20565055,1.3229132,1.3002934,1512,train,1.3002934\n-1.2550234,0.18052559,-0.15142675,1.9166608,1.8256809,-0.8434866,0.84472173,0.9912329,1880,train,0.9912329\n-0.31588548,-0.090557754,-0.08845645,0.8113355,1.2707437,-0.89706385,0.9831501,1.0830387,931,train,1.0830387\n0.3812662,-0.4632484,-0.0004024488,2.9193575,-0.96064353,-0.49650818,0.7640786,0.9112253,283,train,0.9112253\n5.309566,0.6266946,-0.44486582,-0.30041286,2.8621824,-2.6457803,0.43962383,0.7237492,2586,train,0.7237492\n0.12771896,-0.33461365,-0.04390023,2.1765337,-0.19130631,-0.39782462,0.8204313,0.98566043,2691,train,0.98566043\n1.5748712,-0.17277578,-0.12228531,0.28308564,1.4496441,-1.0686873,0.8180832,1.0928806,1865,train,1.0928806\n5.7541165,0.6527256,-0.47083467,-0.69004,3.009249,-2.72442,0.42893308,1.3047235,2349,train,1.3047235\n8.632223,0.9644296,-0.59060925,-6.619317,3.1976967,-2.8263729,0.7635586,0.7253444,2520,train,0.7253444\n0.01333666,-0.32135502,-0.044409424,2.1531355,-0.09889053,-0.39128348,0.8360443,0.8507767,2791,train,0.8507767\n3.5110395,-0.8879391,0.22553879,1.1837722,-2.1725345,-1.376425,1.049013,1.6552267,2793,train,1.6552267\n2.1498275,-0.6295308,0.069050364,2.7192082,-2.0073168,-0.9432177,0.764176,1.3643017,2610,train,1.3643017\n0.046212174,0.7244964,-0.45807683,3.2149532,2.6024785,-1.0671899,0.760158,1.3418206,2255,train,1.3418206\n-0.008707117,0.19948879,-0.20072524,1.384939,1.9301972,-1.0103025,0.75165886,0.93344116,2020,train,0.93344116\n6.589322,0.74657995,-0.53938854,-1.8006281,3.428269,-2.765884,0.52335256,1.4547157,2377,train,1.4547157\n-2.469667,0.2751743,-0.19383788,2.0966656,1.3182892,-0.053697426,1.3140901,1.2759292,1600,train,1.2759292\n-1.9962052,0.021517713,-0.08375587,1.4297127,1.4232986,-0.43749237,1.1508318,1.0490484,1351,train,1.0490484\n-3.432231,0.0832931,-0.05881974,2.1927116,1.1524533,-0.35136095,1.3727435,1.1799664,707,train,1.1799664\n1.7285314,-0.17772281,-0.12760636,0.23033835,1.449021,-1.0807092,0.8098941,1.1252865,1874,train,1.1252865\n-1.9131007,-0.022007432,-0.08547891,1.582391,1.3673778,-0.43763697,1.116361,1.115896,694,train,1.115896\n0.57059723,-0.66313374,0.1361488,3.0698624,-1.7230458,-0.7560141,1.0419141,1.4528557,266,train,1.4528557\n6.9740877,-1.0401003,0.32093734,-2.607445,-2.7507017,-1.226394,1.1587694,1.3415138,175,train,1.3415138\n-2.9080663,0.23114844,-0.11405075,1.98102,1.6831238,-0.25046927,1.2446271,1.2637694,1703,train,1.2637694\n-1.0635111,-0.1532848,-0.075571254,1.7917724,0.9093409,-0.46374595,0.9876798,1.0468435,738,train,1.0468435\n3.2902632,-0.8035861,0.19090427,0.6656825,-2.1563578,-0.85932386,1.0495322,1.8610736,903,train,1.8610736\n-1.0954,-0.12792669,-0.07856236,1.593585,1.013155,-0.48551407,1.0150591,1.0521407,2832,train,1.0521407\n0.2975286,0.27064937,-0.26059487,1.3411927,2.1907074,-0.89490354,0.7348184,1.0291678,2008,train,1.0291678\n1.4579811,-0.53318036,0.017155306,2.8955786,-1.5805835,-0.73126847,0.71040076,0.86312747,862,train,0.86312747\n4.4277263,-0.2624845,-0.2155281,-0.59385854,1.3335958,-1.2722857,0.63963944,0.84206545,2192,train,0.84206545\n4.6462173,-0.9796234,0.2765812,0.266417,-2.4222026,-1.4838201,1.071973,1.8643075,588,train,1.8643075\n-1.9281384,0.11898609,-0.106943406,1.6636711,1.7561762,-0.539632,1.041761,1.0717554,1714,train,1.0717554\n-1.703581,0.19423556,-0.15479387,1.4967307,1.8966404,-0.39995474,1.0874872,1.0671772,1286,train,1.0671772\n-2.090112,0.33436224,-0.25668952,2.18967,1.4244287,-0.10056955,1.2205167,1.1889536,1766,train,1.1889536\n5.998814,-0.95937735,0.28784996,-1.6395273,-2.5710793,-1.213238,1.1126205,1.0436878,1108,train,1.0436878\n0.4808645,-0.24969096,-0.09513284,1.6209463,0.10485787,-0.5442093,0.8472937,1.1347599,25,train,1.1347599\n-0.21898937,-0.23146784,-0.07731004,1.752064,0.45052424,-0.5058057,0.9085124,1.1262438,999,train,1.1262438\n0.49235466,0.29574695,-0.27421322,1.2165979,2.2297688,-0.89126474,0.74662244,1.2045166,2040,train,1.2045166\n-0.24205084,-0.1012205,-0.08687461,0.8107365,1.2583222,-0.9058617,0.9735854,1.0360773,1597,train,1.0360773\n2.2107587,0.8339839,-0.56476974,1.4013942,3.6507258,-2.0200057,0.65295374,1.0994266,2689,train,1.0994266\n-3.2079754,0.23033977,-0.09966572,2.0891187,1.6245743,-0.22365789,1.2838123,1.0388354,1385,train,1.0388354\n9.224729,-1.37393,0.43067184,-3.3269324,-3.2714283,-1.869627,1.1091311,1.0871639,80,train,1.0871639\n1.3319055,-0.72332203,0.15237401,2.9077804,-1.7652339,-1.2204725,0.98959845,1.2975577,193,train,1.2975577\n3.6130865,0.4803775,-0.3702929,0.94220185,2.4304507,-2.2705908,0.36141786,0.89979005,548,train,0.89979005\n-3.5602188,0.18195474,-0.075534575,2.2387834,1.394471,-0.261896,1.3443823,1.2014266,1257,train,1.2014266\n-1.945026,0.19358614,-0.14846258,1.661938,1.8271701,-0.39868543,1.0812583,1.1443301,1800,train,1.1443301\n-0.25544366,-0.45425588,0.014116369,3.1226225,-0.8271071,-0.48424473,0.8222036,1.235261,236,train,1.235261\n-3.4816055,0.24239519,-0.09963289,2.27189,1.5101817,-0.20777364,1.3357333,1.217967,1272,train,1.217967\n-2.9025617,0.22994092,-0.11307438,1.9664639,1.700055,-0.24656169,1.2434287,1.1528562,1694,train,1.1528562\n0.0847881,-0.606187,0.12762015,3.6598597,-1.4948821,-1.2101609,1.0177959,1.0371699,2782,train,1.0371699\n4.0313272,0.9594488,-0.65237343,-0.537474,4.234736,-2.105636,0.659489,1.9154387,2498,train,1.9154387\n-3.0951478,0.08920565,-0.07228373,2.1839721,1.4295806,-0.29587033,1.2019039,1.2268281,695,train,1.2268281\n6.8503575,-0.018957032,-0.33902344,-2.5320103,1.1171783,-1.3234426,0.5941196,1.3791507,2504,train,1.3791507\n1.029864,0.25923628,-0.24821855,1.3297733,2.0095246,-1.3430126,0.58071834,0.84328973,586,train,0.84328973\n0.23889486,-0.28001645,-0.07024128,1.8764397,0.05284699,-0.4782323,0.8490903,1.2267584,872,train,1.2267584\n1.8942333,-0.7750518,0.17417516,2.4471266,-1.9077904,-1.293248,1.0032082,1.1415135,845,train,1.1415135\n1.7334794,-0.70971304,0.11152958,2.0948045,-1.8016106,-0.49939582,0.9887853,1.6191847,1072,train,1.6191847\n-0.6661639,-0.502287,0.09422569,3.512718,-1.3788534,-0.50529194,1.0657421,1.4107049,249,train,1.4107049\n3.183503,0.41603744,-0.34747487,1.0333829,2.2508554,-2.2967646,0.34371972,0.73877865,545,train,0.73877865\n-0.73583466,0.7000358,-0.42890412,3.9751706,2.5232973,-1.1712477,0.66238415,1.0872303,391,train,1.0872303\n2.4610124,-0.46115056,-0.02782857,2.0888891,-1.6033403,-0.9900281,0.684092,1.0428729,176,train,1.0428729\n1.1480318,0.3515203,-0.30515844,1.2723845,2.3173556,-1.1944357,0.62292176,1.1690106,2070,train,1.1690106\n-2.1878948,0.35901156,-0.27046984,2.4461443,1.6142303,-0.2411554,1.1248119,1.1785969,615,train,1.1785969\n-1.1291147,0.6257528,-0.40427154,3.5442114,2.3897262,-1.0390922,0.7472808,1.1114095,2160,train,1.1114095\n-2.9693832,0.14946924,-0.11962317,2.3086414,1.1265144,-0.29000357,1.3571326,1.3586681,519,train,1.3586681\n-3.41157,0.23409054,-0.09431098,2.213541,1.5610917,-0.22596787,1.3135675,1.1913587,1588,train,1.1913587\n0.35234258,0.25921452,-0.25798884,1.1416632,2.1855373,-0.8092345,0.7796306,1.0471103,110,train,1.0471103\n8.120124,-1.2974663,0.41651705,-2.5211926,-3.0889857,-1.6846374,1.1284759,1.3827715,1048,train,1.3827715\n1.5980053,0.79032105,-0.5348619,2.0773396,3.459521,-1.8230504,0.64999765,1.7497983,2378,train,1.7497983\n0.62294865,-0.37306863,-0.044150375,2.2763424,-0.5547724,-0.48397276,0.7790427,1.1448426,270,train,1.1448426\n-2.2167418,0.28513885,-0.23128678,2.2025414,1.323842,-0.06258644,1.2635376,1.3073357,1692,train,1.3073357\n-2.01304,0.09765123,-0.09959687,1.5030333,1.7198428,-0.4695252,1.1047795,1.1141948,1282,train,1.1141948\n-1.236818,0.54559726,-0.3846121,2.958772,2.1387162,-0.8131592,0.8685227,1.0946307,2316,train,1.0946307\n-1.2192225,0.14205435,-0.1352395,1.4566815,1.8080852,-0.7034604,0.9834958,1.364628,1866,train,1.364628\n-0.6307373,-0.069023125,-0.08532276,0.78140986,1.3434465,-0.780493,1.0413355,1.0467627,1490,train,1.0467627\n-1.0522134,0.2029736,-0.18801232,1.4118596,2.014189,-0.5337701,0.96938694,1.0840775,1812,train,1.0840775\n1.66442,0.39670947,-0.31638944,1.6110898,2.3800836,-1.5003628,0.4752818,1.0447124,1994,train,1.0447124\n-2.2812912,0.18974878,-0.1696518,2.0468097,1.1383051,-0.20191738,1.320066,1.3335191,500,train,1.3335191\n8.792585,1.3057928,-0.7800129,-6.9941525,5.3197885,-2.9087608,0.7659742,0.41529447,2479,train,0.41529447\n0.19750008,0.20498554,-0.21146956,1.2264673,1.9463414,-1.0100971,0.76857525,1.1338962,1297,train,1.1338962\n-1.5708973,0.48924094,-0.35096547,2.6150994,1.9167111,-0.55697453,0.97847843,1.2504606,2065,train,1.2504606\n-0.14134067,-0.4734786,0.019938571,3.1939375,-0.94173706,-0.5152087,0.8108885,1.2585783,182,train,1.2585783\n-0.8786226,0.21442863,-0.20218284,1.4568242,2.0676043,-0.5971698,0.92276776,1.1005027,1832,train,1.1005027\n-1.4631842,0.48059055,-0.3651556,2.8118043,1.8280301,-0.5362218,0.96498674,1.1837708,2013,train,1.1837708\n-2.8575702,-0.15662739,0.009021242,2.9420683,0.3118271,-0.5328887,1.3156487,1.1049336,1167,train,1.1049336\n-1.7702286,0.13093656,-0.18082741,1.9639992,0.90252924,-0.21459794,1.3084258,1.3439639,1465,train,1.3439639\n1.0634338,-0.5902433,0.08127984,2.4886448,-1.6975819,-0.5046286,1.0332898,1.5588291,768,train,1.5588291\n-2.084969,0.36562762,-0.28099337,2.449956,1.616379,-0.2644378,1.111233,1.2818924,1711,train,1.2818924\n6.510649,0.7198048,-0.5258046,-1.610492,3.3113415,-2.784133,0.48746017,1.1030788,2358,train,1.1030788\n0.7285306,-0.17385013,-0.09279353,0.64302623,1.3815945,-1.0231109,0.8512201,0.9607851,1713,train,0.9607851\n7.1312413,0.80184,-0.5820586,-2.468919,3.8029318,-2.895771,0.51542044,1.3973405,2397,train,1.3973405\n0.35281318,-0.62467235,0.13327359,3.387966,-1.5481087,-1.2064507,1.0410954,1.407446,780,train,1.407446\n0.18627444,0.14886396,-0.18963347,0.89237434,1.9263998,-0.8989708,0.8501422,1.0908222,1985,train,1.0908222\n-1.6043415,0.47042447,-0.34106645,2.4866087,1.8606815,-0.5085514,1.0076594,1.2797351,2057,train,1.2797351\n-1.7198346,0.016858997,-0.1520495,2.043506,0.6746231,-0.25406095,1.3034894,1.2724378,2730,train,1.2724378\n-3.5110965,0.16823974,-0.08175487,2.217476,1.3271528,-0.29310024,1.3801877,1.041085,683,train,1.041085\n3.7175655,0.487714,-0.37278584,0.8758137,2.4422877,-2.304598,0.3628883,1.1720021,393,train,1.1720021\n-1.4732916,0.48622867,-0.35602653,2.578249,1.8968245,-0.54316187,0.9845524,1.1168283,2106,train,1.1168283\n2.5348115,0.4878457,-0.36514267,1.5058421,2.594381,-1.8005414,0.43569985,1.2279432,111,train,1.2279432\n0.5998158,0.3717647,-0.29738784,1.8751663,2.3182518,-1.3276224,0.5612129,0.8403714,2655,train,0.8403714\n-0.7311072,0.6972013,-0.42934704,3.962808,2.499512,-1.1540478,0.66946584,1.2603368,557,train,1.2603368\n-0.9768019,0.66172713,-0.42085582,4.061886,2.354048,-1.1122068,0.6919349,1.083188,2580,train,1.083188\n-2.3475769,0.19630575,-0.16764012,2.0437202,1.1635058,-0.19464605,1.3244576,1.3705904,698,train,1.3705904\n-1.5462941,0.5589656,-0.37601897,3.3214538,2.1003623,-0.8436892,0.8414876,1.1119732,1931,train,1.1119732\n-2.3367956,-0.29069787,0.06385164,3.4714985,-0.511097,-0.47841194,1.1945195,1.3117445,14,train,1.3117445\n9.098091,-1.3739358,0.44662842,-3.249943,-3.2727375,-1.7727392,1.1415639,1.4893093,924,train,1.4893093\n-2.6492925,-0.23529439,0.029860519,3.279343,0.09866603,-0.65702045,1.20238,1.3076086,2736,train,1.3076086\n6.804328,0.7524939,-0.551871,-2.0216076,3.481138,-2.8445983,0.51298654,1.468843,2589,train,1.468843\n6.097318,0.6837923,-0.49596578,-1.1432142,3.1642678,-2.7043498,0.4655994,0.98408705,2308,train,0.98408705\n0.5344183,-0.3280603,-0.06369268,2.0482914,-0.26748133,-0.4951654,0.80793667,1.1737261,108,train,1.1737261\n0.105163,0.2631179,-0.2519364,1.1427602,2.1943958,-0.7391573,0.8274439,1.5897666,2046,train,1.5897666\n1.2357266,0.7701657,-0.51396394,2.466578,3.3261995,-1.7380363,0.63779104,1.5744443,2324,train,1.5744443\n-1.3212013,-0.0034645714,-0.10082588,0.93560165,1.3926258,-0.59934694,1.1258996,1.1027764,489,train,1.1027764\n-1.8230679,0.25340536,-0.18168709,1.7249769,1.9493713,-0.42294073,1.0644164,1.1181356,631,train,1.1181356\n-1.2181437,0.6044679,-0.39832076,3.456399,2.3170655,-1.0187519,0.7769468,1.2803994,1977,train,1.2803994\n6.1327734,0.65620005,-0.48600656,-1.1164497,3.0597584,-2.7139702,0.4643766,0.4845364,2406,train,0.4845364\n-0.86064935,-0.056082245,-0.14231265,1.6424314,0.2443877,-0.25336647,1.3538746,1.4442241,2841,train,1.4442241\n-0.71500915,-0.33651197,0.007354621,2.619851,-0.784128,-0.19521993,1.1825414,1.3578562,784,train,1.3578562\n-3.236286,-0.073278666,-0.016318414,2.6378312,0.7375234,-0.5160852,1.3446226,1.2345753,730,train,1.2345753\n5.2866807,1.0878861,-0.7342031,-2.7129846,4.7593145,-1.8041264,0.7310977,0.9705512,2462,train,0.9705512\n1.2894064,-0.15616119,-0.11833191,0.23740557,1.507778,-0.982535,0.86985666,1.3220481,1877,train,1.3220481\n-3.2401612,0.23970519,-0.1015957,2.118017,1.6157262,-0.2176153,1.291902,1.1343368,1594,train,1.1343368\n-3.2180471,0.09821561,-0.06932194,2.2170787,1.4027284,-0.28892273,1.2313731,1.2119697,668,train,1.2119697\n-2.9542189,-0.1404686,0.010483541,2.929479,0.3933657,-0.5723575,1.3120761,1.2132685,2824,train,1.2132685\n8.871245,-1.2981707,0.4099585,-4.0054746,-3.182176,-1.1810354,1.197109,2.0427356,152,train,2.0427356\n8.730567,1.289863,-0.7816791,-6.8352423,5.373162,-2.8676171,0.7781572,1.5067832,2517,train,1.5067832\n1.3611245,-0.72513604,0.15226737,2.90263,-1.7637627,-1.2302378,0.98557544,1.4921963,198,train,1.4921963\n-1.3821313,0.4983468,-0.37340692,2.91251,1.8840547,-0.6122815,0.94125515,1.221166,2657,train,1.221166\n-3.4437315,0.25293317,-0.1042888,2.25649,1.5279415,-0.20045894,1.3357358,1.1399112,1224,train,1.1399112\n-2.0317988,0.20518866,-0.14430737,1.621956,1.8494815,-0.36618227,1.1239934,1.152638,1643,train,1.152638\n1.0084963,-0.09877951,-0.16077961,0.5544282,0.74727964,-0.85539645,0.85013723,1.0490682,1731,train,1.0490682\n7.8688745,-1.2772329,0.4098981,-2.3720615,-3.0433896,-1.659142,1.1303434,0.3964228,1109,train,0.3964228\n-2.296951,-0.29081047,0.057052523,3.3605773,-0.27738884,-0.768995,1.2035716,1.3088181,1149,train,1.3088181\n-0.49862954,-0.548707,0.11589447,3.6161888,-1.4598725,-0.7774136,1.0768794,1.6855304,238,train,1.6855304\n5.9962063,-0.1918803,-0.29900843,-1.4343016,1.2076107,-1.218418,0.5705163,1.1100829,2360,train,1.1100829\n-2.372947,0.2092211,-0.12919253,1.7390668,1.7816253,-0.31585196,1.1673967,1.1760814,1657,train,1.1760814\n-1.628671,0.21188581,-0.16699791,1.5437989,1.931075,-0.43088922,1.0561407,1.1266499,1283,train,1.1266499\n-2.1941197,-0.19012238,-0.015845608,2.8502705,0.02911419,-0.26733303,1.2489543,1.286286,76,train,1.286286\n-1.437097,0.50333667,-0.36398605,2.6777349,1.9474665,-0.59367335,0.9602985,1.1074123,1944,train,1.1074123\n-1.6549785,0.47369802,-0.35671398,3.0105202,1.7895062,-0.5273685,0.9485326,1.2463241,2641,train,1.2463241\n-3.5159862,0.1670419,-0.07929039,2.2054305,1.3355917,-0.29158747,1.3745738,1.5208004,2670,train,1.5208004\n-2.0304632,0.32265276,-0.2683543,2.313774,1.4176401,-0.09455533,1.1905242,1.164052,1922,train,1.164052\n4.421498,0.55724424,-0.4053959,0.3972884,2.6702967,-2.4265552,0.41545057,1.4220238,566,train,1.4220238\n4.4928846,-0.9499718,0.24069071,0.76735246,-2.2537196,-1.6669766,0.9947027,1.6219261,753,train,1.6219261\n3.7772174,-0.8948653,0.15048745,1.7567029,-2.5703313,-1.1842791,0.7742011,0.9436206,1105,train,0.9436206\n-2.5432005,0.020181097,-0.078216165,2.005212,1.3362787,-0.33069783,1.1421399,1.187609,477,train,1.187609\n-2.001654,0.015882073,-0.13976218,2.152472,0.7371216,-0.310039,1.3102953,1.2691356,2834,train,1.2691356\n2.8206656,0.8890837,-0.6123157,0.3356317,3.9110415,-1.828755,0.7252769,1.5212882,2509,train,1.5212882\n2.728393,-0.1561176,-0.1822389,0.6993226,-0.24279886,-1.1163884,0.6826368,0.83288467,2769,train,0.83288467\n0.11593416,-0.11863943,-0.09801874,0.8653743,1.1850086,-1.0275288,0.9110133,0.99977726,1232,train,0.99977726\n2.431267,-0.74092937,0.14025845,1.4402237,-1.9271753,-0.62514395,1.0083716,1.579957,1066,train,1.579957\n-2.0287201,0.24750207,-0.2159098,1.984039,1.1792742,-0.04457595,1.3051943,1.4726378,1320,train,1.4726378\n0.13309096,-0.51342446,0.033411812,3.2974682,-1.2332282,-0.55492264,0.7899764,1.2637243,257,train,1.2637243\n0.3710312,0.7310568,-0.4718761,3.3999903,2.8990273,-1.4846182,0.6111246,0.76891094,2587,train,0.76891094\n-3.4666038,0.09744691,-0.06950758,2.2523913,1.16232,-0.35005265,1.3952335,0.9931128,1414,train,0.9931128\n6.9929457,0.80324686,-0.5792071,-2.332663,3.786975,-2.8634877,0.53129363,1.6036589,2427,train,1.6036589\n0.21905723,-0.15382709,-0.082847014,0.7693577,1.3266786,-0.952837,0.90159386,1.0488749,1660,train,1.0488749\n-2.6763008,0.21517545,-0.1171918,1.8414768,1.7515852,-0.27431917,1.2114519,1.2268038,1690,train,1.2268038\n-3.4279213,0.1392057,-0.08887195,2.2943928,1.1965581,-0.30857843,1.3952038,1.3625975,703,train,1.3625975\n-1.9613795,0.3351616,-0.29277545,2.6110163,1.479819,-0.19737667,1.0955349,1.2989135,2639,train,1.2989135\n-2.084955,0.3348897,-0.26450524,2.2834628,1.4515778,-0.11491688,1.1958896,1.173272,1780,train,1.173272\n0.16852646,-0.1479475,-0.08081269,0.730083,1.3346448,-0.9313759,0.9075889,0.97183233,1776,train,0.97183233\n-2.2216163,0.33858487,-0.25330454,2.314478,1.4954698,-0.1341686,1.1897557,1.1773816,1735,train,1.1773816\n7.370234,0.82140404,-0.59648746,-2.8140879,3.9304748,-2.9089298,0.5253988,1.1462661,659,train,1.1462661\n-1.1861187,-0.012317962,-0.103325605,0.87176937,1.3353331,-0.5938294,1.121458,1.064533,1445,train,1.064533\n-3.5419264,0.22003853,-0.09597096,2.323285,1.4144505,-0.23446763,1.3617483,1.6494088,1255,train,1.6494088\n-1.5060953,0.5376638,-0.3744173,3.15659,2.0308642,-0.75057185,0.8799587,1.2311438,1935,train,1.2311438\n5.4097157,-1.0164536,0.27684888,0.016493222,-2.4251466,-1.7622517,1.0116537,1.4975327,1153,train,1.4975327\n-3.1652434,0.2247887,-0.09935273,2.0562987,1.6516821,-0.22796215,1.2731078,1.1313726,1601,train,1.1313726\n2.3612819,-0.8036275,0.17778382,2.1034074,-1.9621695,-1.3314791,1.0183476,1.6018384,2571,train,1.6018384\n-3.3879662,0.25843033,-0.10769769,2.2264478,1.5508695,-0.19378062,1.3274026,1.1644865,1606,train,1.1644865\n-2.920976,0.08708686,-0.10880909,2.3395479,0.98026305,-0.33967778,1.3668748,1.2043939,723,train,1.2043939\n-0.040570848,-0.12713873,-0.081562415,0.7711944,1.2830247,-0.898777,0.94127953,1.0149313,2636,train,1.0149313\n7.7507343,0.39264056,-0.3662293,-5.5649657,1.4461744,-1.8681287,0.755653,0.48743525,423,train,0.48743525\n-1.5450779,-0.055334195,-0.084800996,1.4612485,1.2680272,-0.48132583,1.0847971,1.122063,1336,train,1.122063\n-0.123710446,0.6456445,-0.40309414,3.641678,2.5577528,-1.4209226,0.55571294,1.0202612,377,train,1.0202612\n-3.3563488,0.21195059,-0.09079456,2.1667001,1.5650746,-0.2339719,1.2979268,1.1698731,1321,train,1.1698731\n7.285677,1.2870259,-0.8049236,-4.8217936,5.202292,-2.0808759,0.68189526,1.0366459,2490,train,1.0366459\n-1.9962043,0.021517683,-0.08375583,1.4297116,1.4232985,-0.437492,1.1508318,1.0615038,1353,train,1.0615038\n-0.90996915,0.65297633,-0.4161735,3.7015135,2.4289918,-1.0665338,0.708133,1.209506,2164,train,1.209506\n-2.0932288,-0.34628245,0.08609135,3.7249396,-0.7000408,-0.8063787,1.134868,1.2038199,81,train,1.2038199\n-0.15710688,-0.48083565,0.055703375,3.2226057,-1.4232755,-0.33663788,1.0401015,1.3986254,285,train,1.3986254\n-2.1975205,0.29553002,-0.23473772,2.185739,1.3363398,-0.060948607,1.2622249,1.2539634,1684,train,1.2539634\n-1.3424519,-0.10590232,-0.079512194,1.6248498,1.1104891,-0.4649538,1.0382677,1.0547109,2693,train,1.0547109\n0.9132065,-0.5386003,0.023740338,3.0525599,-1.427772,-0.5970395,0.74226844,1.214899,853,train,1.214899\n1.8543174,0.3281414,-0.28526852,0.9812862,2.0449367,-1.644875,0.5179272,0.79516554,565,train,0.79516554\n6.1722293,-1.0028936,0.30189568,-1.709322,-2.632282,-1.1834154,1.1145911,0.5225812,1107,train,0.5225812\n3.4357305,-0.8381484,0.1866991,0.71782076,-2.128263,-0.84617347,1.0473162,1.8020341,1156,train,1.8020341\n-1.2495999,0.5306238,-0.3852179,2.978456,2.0459137,-0.7521745,0.8962131,1.0484748,2071,train,1.0484748\n6.8513,-1.2043248,0.28363958,-0.67988306,-3.1493285,-1.5774989,0.85697556,1.2023058,18,train,1.2023058\n6.0176973,0.667992,-0.48648006,-1.0682666,3.1100547,-2.6708217,0.47725564,1.3147788,2402,train,1.3147788\n1.3136333,-0.7241412,0.15352777,2.8881752,-1.7748171,-1.1991276,0.9969113,1.1042312,301,train,1.1042312\n-1.0424277,-0.009239187,-0.09243778,0.83290356,1.581673,-0.57732475,1.0908785,1.1133419,618,train,1.1133419\n-1.503497,0.20696685,-0.17473426,1.5664588,1.9566613,-0.47230348,1.0184416,1.061511,596,train,1.061511\n0.18680218,-0.27806497,-0.07121809,1.8827384,0.09082567,-0.47585756,0.8549056,1.182426,1119,train,1.182426\n1.6519986,0.38664693,-0.30924806,1.7289594,2.3290615,-1.5520256,0.44020683,0.75434285,2019,train,0.75434285\n8.088221,0.49409014,-0.39629292,-6.2729163,1.6830832,-1.9471608,0.8140244,1.3102949,2485,train,1.3102949\n-1.3891671,-0.45856076,0.11518529,3.9035003,-1.1097186,-0.9062724,1.0557696,1.3321623,2787,train,1.3321623\n0.86187625,-0.66500556,0.1353794,2.7508464,-1.7259291,-0.7686945,1.0685598,1.8041027,1012,train,1.8041027\n-2.706443,-0.16054492,-0.0026718487,2.896642,0.2593075,-0.42258236,1.3083512,1.2248585,1623,train,1.2248585\n0.4438539,-0.4507873,-0.0035425113,2.8740983,-0.94520223,-0.4968194,0.75573015,1.1696458,272,train,1.1696458\n-0.3960979,-0.21165669,-0.0708829,1.7214035,0.56552136,-0.49340183,0.92494965,1.1285659,2840,train,1.1285659\n-2.4768393,0.34476632,-0.2228032,2.3230636,1.697733,-0.2573388,1.1538597,1.441711,617,train,1.441711\n-2.0731218,0.3450426,-0.2741854,2.3757284,1.5143747,-0.16650717,1.1577588,1.2263792,1276,train,1.2263792\n2.3447642,-0.6949956,0.082689986,2.6026251,-2.0849593,-0.9571126,0.7879242,1.440483,1017,train,1.440483\n0.32762292,-0.31278977,-0.06475681,2.0723743,-0.12389921,-0.48258278,0.82986885,1.2917156,788,train,1.2917156\n3.3809848,-0.22155498,-0.17906936,-0.27609307,1.3914953,-1.2304279,0.7080103,0.958599,1982,train,0.958599\n3.28784,-0.75121605,0.173423,0.4664549,-2.0804307,-0.8596348,1.06573,1.6410173,1097,train,1.6410173\n1.7757058,-0.26445293,-0.1360197,1.2589569,-0.19977579,-0.82722306,0.7321247,1.1947663,827,train,1.1947663\n3.2832134,-0.7939281,0.12111927,2.1387465,-2.4219663,-1.1517556,0.74715704,1.5746021,1047,train,1.5746021\n2.6636949,0.5644401,-0.40058348,1.6898133,2.720454,-1.9984831,0.4423284,1.6488523,535,train,1.6488523\n0.018211585,-0.49860483,0.028371802,3.2951112,-1.1225667,-0.5492356,0.79389924,1.2675301,221,train,1.2675301\n1.4924407,-0.16790426,-0.12035407,0.28822958,1.4576799,-1.050467,0.8281757,1.1702831,2048,train,1.1702831\n-3.1859598,0.1812812,-0.08864383,2.1282558,1.5739263,-0.2589851,1.2514083,1.2151343,1471,train,1.2151343\n3.606345,-0.8455492,0.13966335,2.0190837,-2.5993183,-1.2321434,0.7375166,0.92988455,163,train,0.92988455\n-3.5224216,0.1801486,-0.08027233,2.2299416,1.369522,-0.28331074,1.3649035,1.3571783,689,train,1.3571783\n0.7483258,-0.079188295,-0.13952208,0.5757662,0.9820101,-0.9849349,0.8611804,1.1002556,2761,train,1.1002556\n0.66686034,0.31042287,-0.28512707,1.2531958,2.2509377,-0.9761539,0.709287,1.4089701,1956,train,1.4089701\n7.2902546,0.81471276,-0.59195775,-2.674688,3.885862,-2.936782,0.5063694,1.5082004,2416,train,1.5082004\n-1.6085554,0.32911023,-0.2916853,2.0343192,1.3109454,-0.017611928,1.229698,1.3634577,1779,train,1.3634577\n-2.0317988,0.20518866,-0.14430737,1.621956,1.8494815,-0.36618227,1.1239934,1.0569782,1645,train,1.0569782\n-1.0294447,0.19793296,-0.18745744,1.4079121,2.0120592,-0.5399634,0.96412325,1.1741805,1805,train,1.1741805\n-2.2422073,-0.32924402,0.059571013,3.6926746,-0.38405746,-0.7974885,1.1248972,1.3756379,2750,train,1.3756379\n-1.1004721,-0.1391506,-0.07704493,1.6845741,0.98039573,-0.4707338,1.0027497,1.0832913,2837,train,1.0832913\n3.6386967,0.5138879,-0.3881439,0.88609564,2.6154325,-2.1408005,0.4226839,1.2612406,2222,train,1.2612406\n-3.1213346,0.20068222,-0.09409101,2.08295,1.645504,-0.25165483,1.2405745,1.0859531,1592,train,1.0859531\n-1.2794328,-0.36737248,0.030008193,2.948468,-0.68300176,-0.18460898,1.1442573,1.2741776,1137,train,1.2741776\n1.9096445,0.42060584,-0.33070725,1.5650219,2.4606812,-1.5566251,0.4697926,1.0149636,2089,train,1.0149636\n-1.899239,0.26705652,-0.18511802,1.7695618,1.947112,-0.416102,1.0750654,1.1475539,643,train,1.1475539\n6.3920484,-1.1120207,0.23159018,-0.057517137,-3.277765,-1.5322852,0.7563593,1.0659554,915,train,1.0659554\n2.5962021,-0.76990366,0.15042523,1.3281785,-2.0043988,-0.676469,1.020778,1.638661,1060,train,1.638661\n0.9718599,-0.17829588,-0.09958958,0.55404216,1.3897885,-1.0474992,0.8367519,1.0038614,1833,train,1.0038614\n-1.1228055,0.15466021,-0.14543128,1.5257221,1.8333553,-0.73647213,0.9460345,1.245475,1878,train,1.245475\n1.2016305,0.3464487,-0.30423635,1.2575583,2.3066652,-1.2020388,0.615697,1.0387566,2072,train,1.0387566\n0.5023037,-0.37807053,-0.039867945,2.3348188,-0.44458395,-0.4728764,0.8198459,1.259429,984,train,1.259429\n5.776832,-1.0551761,0.29572642,-0.31406918,-2.520595,-1.7757789,1.0247632,1.6879475,1033,train,1.6879475\n-1.7488211,0.4245817,-0.33659765,2.7747664,1.6519476,-0.4013574,1.0096294,1.2469163,1902,train,1.2469163\n3.2534,0.42244324,-0.35056153,1.0174503,2.2636914,-2.3023975,0.34343818,1.2886508,380,train,1.2886508\n-0.4661566,-0.49212176,0.06692302,3.2732453,-1.3393061,-0.2905035,1.038491,1.3687866,244,train,1.3687866\n8.151235,-1.2993768,0.4164572,-2.5316868,-3.0914528,-1.6954792,1.1255844,1.4577812,1050,train,1.4577812\n-0.9697682,0.5515848,-0.40514934,3.1061509,2.1057792,-0.87755203,0.8687252,1.272769,1970,train,1.272769\n1.6913848,-0.6756246,0.11809842,1.9428749,-1.7954154,-0.5162813,1.0034399,1.286018,2770,train,1.286018\n-0.1166853,-0.58753765,0.12246052,3.4477139,-1.5549932,-0.80315137,1.0717628,1.3585708,106,train,1.3585708\n2.7020884,-0.2509811,-0.16038118,1.0222639,-0.49978527,-1.0771792,0.660336,1.1810973,1103,train,1.1810973\n-3.2421448,0.2347921,-0.09909927,2.1116838,1.6236975,-0.22269237,1.2878056,1.23756,1565,train,1.23756\n7.784981,0.991424,-0.67045504,-4.036788,4.630507,-3.019288,0.61165315,0.6388781,2554,train,0.6388781\n-2.0424147,0.2143122,-0.1467397,1.6146525,1.8707302,-0.36419752,1.1327175,1.1014397,1770,train,1.1014397\n-1.2131209,0.16429934,-0.17660242,1.5438381,1.9559692,-0.554583,0.9500457,1.0523026,597,train,1.0523026\n-3.5311096,0.16358359,-0.06982135,2.2032328,1.3444368,-0.2797679,1.3506744,1.3443322,674,train,1.3443322\n2.3755658,0.5338442,-0.3861819,1.7259879,2.694015,-1.8412595,0.4576458,1.162096,2291,train,1.162096\n-1.7565503,0.37096098,-0.30983493,2.415828,1.5230585,-0.24073465,1.1078509,1.161023,1809,train,1.161023\n0.23359548,-0.17136279,-0.11500789,1.1250105,0.5981525,-0.6664872,0.92582494,1.085219,7,valid,1.085219\n0.28283566,-0.31230217,-0.0704821,2.0749133,-0.06699447,-0.4746959,0.8511311,1.2254562,808,valid,1.2254562\n2.7200608,-0.7702962,0.15860169,1.1699708,-2.0303707,-0.71732044,1.0305016,1.7006518,968,valid,1.7006518\n-1.7659757,0.35599592,-0.3014243,2.3432698,1.4699832,-0.18070583,1.1376159,1.3216233,1823,valid,1.3216233\n-0.29742405,0.70111847,-0.43910202,3.6823928,2.6776743,-1.2730873,0.6474979,1.5110823,2195,valid,1.5110823\n1.673079,-0.7226647,0.12608626,2.8929448,-1.8174492,-1.2157744,0.916395,1.3461046,264,valid,1.3461046\n0.9085484,-0.5950794,0.07594926,2.7027712,-1.657613,-0.4608009,1.0141469,1.5097008,2882,valid,1.5097008\n-2.0433471,0.34160522,-0.27343854,2.331541,1.4820338,-0.14182994,1.1727303,1.2389145,1716,valid,1.2389145\n5.0579433,-0.21166638,-0.25928864,-0.93964267,1.3700811,-1.2527497,0.6100782,1.396888,2271,valid,1.396888\n6.565157,-0.08996716,-0.32758415,-2.081842,1.1497186,-1.2795315,0.58002394,1.1764193,2396,valid,1.1764193\n7.0653806,-1.0688423,0.33109614,-2.6286907,-2.7878551,-1.2099905,1.1577148,1.1580192,171,valid,1.1580192\n-1.9607705,0.041368432,-0.14829648,2.122944,0.78062993,-0.29880178,1.3060647,1.3361003,321,valid,1.3361003\n-2.099998,0.13250881,-0.16520703,2.131192,0.9814582,-0.25236675,1.3022221,1.3798057,471,valid,1.3798057\n1.6715283,0.47251415,-0.34661216,1.9196404,2.5716236,-1.6211989,0.45729282,0.8559883,2228,valid,0.8559883\n-2.0545886,0.28289226,-0.23681903,2.0901291,1.2650787,-0.026157428,1.2783711,1.2469723,1499,valid,1.2469723\n-2.2941628,0.31230685,-0.22838208,2.1824923,1.3936255,-0.083714284,1.256897,1.2364093,1633,valid,1.2364093\n-0.6610204,-0.06192482,-0.08650567,0.7928748,1.3404799,-0.7897129,1.0436751,1.041478,1538,valid,1.041478\n0.03506702,-0.2519796,-0.06989753,1.7629204,0.24150743,-0.4783218,0.8771037,1.1455051,28,valid,1.1455051\n3.517326,0.43335655,-0.3564441,0.82811457,2.2790987,-2.4169576,0.34661415,0.97421503,537,valid,0.97421503\n2.3582063,-0.16378768,-0.18881932,0.79640615,-0.03467543,-1.029239,0.70997393,1.4089345,2797,valid,1.4089345\n0.02373602,-0.115807414,-0.08260982,0.69030994,1.2626519,-0.9293088,0.94150233,0.9549142,989,valid,0.9549142\n-1.0716747,0.6497242,-0.40983093,3.7848225,2.419677,-1.0823123,0.69713914,1.0813553,2563,valid,1.0813553\n-1.6295416,-0.1106598,-0.08028509,2.348492,0.21788928,-0.22717124,1.2516835,1.2659786,1178,valid,1.2659786\n2.4167721,-0.12055343,-0.18563633,0.58838415,0.049237143,-1.0536758,0.7087238,1.0909288,844,valid,1.0909288\n-2.2710037,-0.3174731,0.078331105,3.650616,-0.5682647,-0.739905,1.1625218,1.3300483,54,valid,1.3300483\n1.322882,0.3778153,-0.3038222,1.5436165,2.0738368,-1.8753841,0.47004282,1.0531337,540,valid,1.0531337\n-0.64019847,0.70697856,-0.43338412,3.9112597,2.5446115,-1.1857138,0.6700674,1.3552232,374,valid,1.3552232\n-0.8384647,-0.51718885,0.118771374,3.7524197,-1.3575552,-0.8404094,1.091227,1.4255477,783,valid,1.4255477\n6.3571854,-0.12716499,-0.318861,-1.8180963,1.1775322,-1.2509025,0.5708705,1.1299547,2385,valid,1.1299547\n-1.2446448,0.54934835,-0.39051247,3.1478438,2.1047645,-0.8488192,0.8619512,1.3286165,1002,valid,1.3286165\n1.5847614,-0.55250543,0.01910309,2.9075022,-1.6603391,-0.7646099,0.7195104,1.3606579,1026,valid,1.3606579\n1.4077467,-0.1396125,-0.168072,0.65006393,0.45988756,-0.86730033,0.8114729,1.0446683,1121,valid,1.0446683\n-0.030815255,-0.07206173,-0.108236074,0.6981148,1.2037514,-0.9416329,0.9540596,1.0368625,1461,valid,1.0368625\n-3.3774416,0.23648368,-0.095458806,2.193587,1.5766025,-0.22481064,1.3088709,1.1723485,1579,valid,1.1723485\n-2.2490568,0.35237908,-0.26240396,2.4330618,1.5902799,-0.20780322,1.1416817,1.1296785,629,valid,1.1296785\n-0.1271945,-0.4439575,0.046742693,2.9464607,-1.377276,-0.36036044,1.0914098,1.4583793,846,valid,1.4583793\n1.4901351,0.7805629,-0.5201717,2.3657856,3.380144,-1.9885584,0.5753602,1.1545374,2457,valid,1.1545374\n0.054128487,-0.2636349,-0.073856995,1.8323386,0.2185221,-0.48158318,0.8722364,1.168082,1681,valid,1.168082\n-3.4600775,0.11581832,-0.07111475,2.1639647,1.2116003,-0.3348751,1.3974942,1.4563138,1337,valid,1.4563138\n1.7728599,0.42152163,-0.3228216,1.8088483,2.4158046,-1.6250049,0.42597446,0.7806433,2555,valid,0.7806433\n-2.902682,0.06646263,-0.105259895,2.3554263,0.93426603,-0.34993258,1.3687218,1.2234502,323,valid,1.2234502\n3.5853202,0.4404594,-0.35959858,0.81365055,2.2919202,-2.4214356,0.34626174,0.85518074,345,valid,0.85518074\n2.6808252,0.38274643,-0.33242825,1.082604,2.1809683,-2.312524,0.37426957,0.8208074,371,valid,0.8208074\n-3.4443638,0.10584959,-0.06867231,2.164023,1.1872947,-0.3450396,1.3992736,1.2851957,451,valid,1.2851957\n2.3605118,-0.19304544,-0.15051456,0.005952882,1.4564441,-1.1173332,0.7789439,1.1784774,1965,valid,1.1784774\n-0.714104,-0.53437775,0.11851213,3.7667916,-1.4030917,-0.856924,1.0798681,1.3456074,207,valid,1.3456074\n-1.1581812,-0.013116968,-0.103940636,0.8636049,1.3316499,-0.6034077,1.1180437,1.1425158,526,valid,1.1425158\n4.523146,-0.24489729,-0.22276951,-0.715882,1.3401618,-1.2230978,0.6577659,1.2151538,2287,valid,1.2151538\n0.9431359,0.32590473,-0.2922354,1.4304589,2.254486,-1.1765324,0.6060651,1.0373247,2030,valid,1.0373247\n1.4368718,-0.7233835,0.14428596,2.895008,-1.7256122,-1.2704073,0.9742283,1.469748,887,valid,1.469748\n-0.9487258,0.6664009,-0.40923938,3.9265068,2.4518783,-1.1510537,0.6518138,1.1916907,2246,valid,1.1916907\n2.950771,-0.8451753,0.20093092,1.6466447,-2.0481355,-1.4149032,1.0280176,1.6298916,765,valid,1.6298916\n0.3708325,-0.16143264,-0.085326694,0.7587731,1.3558651,-0.9790323,0.88400066,1.0629319,1277,valid,1.0629319\n1.8882036,-0.5995093,0.0473498,2.8652635,-1.9244131,-0.8539895,0.762307,1.5208898,1020,valid,1.5208898\n-1.4500579,-0.08859221,-0.09890541,2.1771302,0.25221488,-0.19194904,1.2670768,1.3756112,2745,valid,1.3756112\n-1.3244815,0.2015617,-0.17561293,1.46267,1.9623934,-0.47825882,1.0126125,1.1468952,1821,valid,1.1468952\n-2.0301642,0.06242376,-0.084446356,1.2576815,1.554634,-0.44008622,1.1812806,1.1145015,1500,valid,1.1145015\n-3.1869252,0.16203743,-0.1102355,2.2706063,1.2027384,-0.27228355,1.374997,1.235846,464,valid,1.235846\n-3.4297426,0.14566088,-0.09360248,2.3549793,1.2624167,-0.2893795,1.3635081,1.4244809,1480,valid,1.4244809\n3.5533133,-0.19722492,-0.16562766,0.69620687,-0.8976657,-1.2413759,0.6175775,1.3482556,1049,valid,1.3482556\n5.623621,-1.0355308,0.28699875,-0.17217252,-2.4734151,-1.77782,1.0178539,1.5887887,2732,valid,1.5887887\n-2.1632555,0.35211727,-0.26673627,2.3758752,1.5555326,-0.1877687,1.1532755,1.2249894,2440,valid,1.2249894\n-1.6079286,0.42922217,-0.34266695,2.6291757,1.661214,-0.39020765,1.0223734,1.1762147,1863,valid,1.1762147\n-2.2350132,0.13022186,-0.15656959,2.180728,0.99715734,-0.26780477,1.3074998,1.3019719,1460,valid,1.3019719\n-1.1179469,0.6135195,-0.40492293,3.4591835,2.3496172,-1.0134586,0.7735927,1.278181,2102,valid,1.278181\n0.31569022,-0.5231887,0.06380539,2.998884,-1.5802683,-0.40396252,1.0325826,1.4168968,269,valid,1.4168968\n-1.7752458,-0.042079315,-0.08421363,1.5554564,1.320022,-0.46192756,1.1026723,1.163236,1193,valid,1.163236\n-2.9500842,-0.13917631,0.00423257,2.9502888,0.38444504,-0.50788105,1.3154569,1.2676367,439,valid,1.2676367\n0.16140881,-0.14816664,-0.08356255,0.7916133,1.3438526,-0.93491846,0.91224414,1.0513041,1672,valid,1.0513041\n-1.8149952,0.19274755,-0.15036638,1.5436717,1.8758217,-0.3912583,1.0973141,1.0611196,1761,valid,1.0611196\n-1.7980008,0.18294194,-0.19331303,1.8578141,1.032236,-0.16148362,1.3136771,1.3539339,1222,valid,1.3539339\n0.7878336,0.76748395,-0.50558156,2.8198187,3.183717,-1.5591209,0.653144,0.90474427,2361,valid,0.90474427\n-3.5335357,0.22205563,-0.09728642,2.3224444,1.4143863,-0.23194313,1.3621792,1.4852649,1262,valid,1.4852649\n7.816519,-1.2674145,0.40515888,-2.2730002,-3.0290756,-1.6543819,1.1328212,2.1901298,436,valid,2.1901298\n-0.16257103,-0.080831416,-0.101547815,0.76935405,1.2306601,-0.9286499,0.9605766,1.0469134,1218,valid,1.0469134\n-3.3504925,0.08117166,-0.076817416,2.350956,1.0421535,-0.37132537,1.4015725,1.303053,725,valid,1.303053\n3.0570896,-0.29300824,-0.13935713,1.0475913,-0.92875767,-1.0863773,0.6315263,0.402376,1114,valid,0.402376\n-1.9111427,0.2104014,-0.15179117,1.590829,1.880334,-0.3859873,1.10742,1.09797,1778,valid,1.09797\n-0.021334672,-0.31167188,-0.046577014,2.1461606,-0.042814784,-0.41090003,0.8438754,0.78188187,17,valid,0.78188187\n2.455032,-0.20630863,-0.15014464,0.00053337606,1.4416846,-1.1447463,0.7636675,1.2714552,1913,valid,1.2714552\n-1.4653207,-0.07652171,-0.08208749,1.4968469,1.2126646,-0.46776378,1.0692785,1.0420144,1413,valid,1.0420144\n-3.5153317,0.13612792,-0.06545522,2.2316542,1.2862849,-0.2962866,1.3462843,1.4000953,444,valid,1.4000953\n8.162975,1.1901695,-0.731146,-5.5107555,4.983704,-3.14852,0.6719508,0.5744695,2513,valid,0.5744695\n-0.57612485,-0.53522325,0.112594604,3.6125157,-1.4375936,-0.72473335,1.0767444,1.5644262,242,valid,1.5644262\n3.2034853,-0.31287396,-0.12628303,1.0635469,-1.119237,-1.077189,0.62409365,1.2132899,926,valid,1.2132899\n-1.9755192,-0.3721375,0.100110255,3.846656,-0.8656944,-0.78761804,1.1075402,1.3156369,37,valid,1.3156369\n-0.5142279,-0.20171174,-0.069302276,1.7263602,0.6258365,-0.48387593,0.93536097,1.0979453,2739,valid,1.0979453\n1.4521965,-0.6321382,0.10873299,2.021716,-1.7544087,-0.52641153,1.0290321,1.3457003,2768,valid,1.3457003\n0.20793262,-0.43295795,0.035431962,2.3820202,-1.2462562,-0.36584148,1.1553227,1.6289499,1013,valid,1.6289499\n-0.5077747,-0.31861827,-0.03886808,2.5077026,-0.032372054,-0.38393003,0.87221295,1.1909199,2,valid,1.1909199\n2.2899265,0.44172898,-0.34160447,1.6076808,2.4857707,-1.7223569,0.41027477,0.90978754,2230,valid,0.90978754\n-1.4765136,0.5088879,-0.372263,3.0879078,1.9037261,-0.6551496,0.91711456,1.1325824,2662,valid,1.1325824\n1.2147199,-0.547994,0.076618575,2.222761,-1.6988355,-0.53827375,1.0704393,1.7568743,821,valid,1.7568743\n-2.1324308,0.35191703,-0.247936,2.0486143,1.474175,-0.13602702,1.2356498,2.358285,1291,valid,2.358285\n-2.1390393,0.046280127,-0.084639885,1.4671514,1.4882374,-0.43557835,1.166863,1.1079124,932,valid,1.1079124\n0.9496171,0.74694616,-0.49145457,2.8293133,3.1313903,-1.6279768,0.62331855,1.1812338,2403,valid,1.1812338\n0.47926885,-0.3152475,-0.06623676,1.9975932,-0.19912134,-0.48814067,0.8162366,1.2101266,53,valid,1.2101266\n-1.5893102,-0.04922568,-0.083749,1.4344603,1.2839934,-0.46630856,1.093392,1.0715358,1424,valid,1.0715358\n-0.5646752,0.6988954,-0.43520576,3.8166528,2.5076163,-1.1378565,0.6885985,1.3664656,369,valid,1.3664656\n-1.2590873,-0.46365336,0.1200974,3.7841346,-1.1584955,-0.9543408,1.083899,1.2419426,1677,valid,1.2419426\n-2.6176004,-0.21616004,0.029832525,3.0626688,0.08205269,-0.6673191,1.2648423,1.0148667,1144,valid,1.0148667\n-1.157095,0.6218262,-0.4019401,3.521176,2.3793814,-1.0446051,0.7518731,1.132285,2233,valid,1.132285\n-0.6627041,-0.54408514,0.12340048,3.86377,-1.402991,-0.98814154,1.068572,1.3402231,749,valid,1.3402231\n-0.7660285,0.5561678,-0.4116881,3.063415,2.0802202,-0.87230104,0.88220984,1.2730314,2016,valid,1.2730314\n-2.075073,0.3490958,-0.2551568,2.0777338,1.4565583,-0.13244174,1.2293264,1.1769241,1287,valid,1.1769241\n8.62807,-1.3271846,0.40685698,-3.0187898,-3.1085944,-1.7780606,1.0984476,1.0777347,1089,valid,1.0777347\n9.697381,-1.4113253,0.45274127,-3.7818246,-3.3623052,-1.8604717,1.1358382,1.1521256,122,valid,1.1521256\n1.2180779,0.3326312,-0.2966932,1.4322063,2.2687047,-1.2767283,0.5559254,1.1004688,1910,valid,1.1004688\n-2.225576,0.267537,-0.2116189,2.049215,1.2750704,-0.0481244,1.308088,1.4462991,1570,valid,1.4462991\n-1.4884444,0.5009585,-0.35873535,2.6321476,1.9635798,-0.5887882,0.9644254,1.1003058,1946,valid,1.1003058\n0.17867889,-0.3421172,-0.049861968,2.297331,-0.1767492,-0.4760888,0.8465293,1.2163948,939,valid,1.2163948\n0.7157323,0.2399683,-0.2382734,1.3313962,1.9847366,-1.2057154,0.64397955,0.9991207,2565,valid,0.9991207\n0.93008506,0.75738347,-0.5000784,2.7873654,3.1883185,-1.6388737,0.63051194,1.2257857,2363,valid,1.2257857\n4.883216,-0.25899354,-0.23724201,-0.7374369,1.3040385,-1.2982656,0.61014456,1.0157142,577,valid,1.0157142\n-1.5458624,0.05475392,-0.09617505,1.1223974,1.6802353,-0.5139217,1.1045835,1.1201966,634,valid,1.1201966\n1.4399135,0.7787619,-0.5234766,2.295664,3.3968618,-1.8204284,0.62867504,1.0821171,2359,valid,1.0821171\n-1.1579164,0.5829789,-0.39895442,3.2427795,2.257775,-0.971248,0.817438,1.328269,2085,valid,1.328269\n-3.4012403,0.0681456,-0.060217623,2.3072689,1.2074989,-0.34397033,1.3109739,1.1612859,463,valid,1.1612859\n-2.64594,0.20961222,-0.11619611,1.8295887,1.749314,-0.27812168,1.2043146,1.1326028,1686,valid,1.1326028\n0.5128491,0.72509044,-0.4715836,3.2438502,2.9119675,-1.4819971,0.6224676,1.1613878,2273,valid,1.1613878\n0.28697392,-0.12943266,-0.09932835,0.8743945,1.1290267,-1.0748924,0.8895601,1.045138,1544,valid,1.045138\n0.11777327,-0.55597824,0.08057003,3.0355093,-1.5485213,-0.40405986,1.0511874,1.679503,224,valid,1.679503\n0.5352369,-0.3665994,-0.042130765,2.2753808,-0.50246584,-0.46936682,0.7860827,1.2591004,278,valid,1.2591004\n-3.3646915,-0.0029404643,-0.036456212,2.4132185,0.92722553,-0.44424847,1.3707019,1.3385373,332,valid,1.3385373\n-0.67801577,-0.058317464,-0.08751143,0.80502725,1.3406098,-0.7935354,1.042946,1.0335834,1501,valid,1.0335834\n-3.4523792,0.25228608,-0.104091294,2.2600608,1.5209959,-0.19654998,1.336684,1.2821257,1264,valid,1.2821257\n-1.9372634,0.09260891,-0.099161796,1.4527676,1.719421,-0.47958508,1.1002144,1.1313981,2441,valid,1.1313981\n1.7004933,0.39266208,-0.31525996,1.6100696,2.3718088,-1.512123,0.46815777,0.9480748,2000,valid,0.9480748\n3.1403248,0.40994087,-0.3438767,1.0148823,2.2366836,-2.3151,0.34572205,0.4772784,398,valid,0.4772784\n0.5091978,-0.07656782,-0.12700768,0.61652064,1.0570929,-0.9980303,0.8897414,1.10587,1340,valid,1.10587\n2.2117186,-0.7200852,0.12791681,1.6543702,-1.8527613,-0.560429,0.99571335,1.5864587,914,valid,1.5864587\n-3.357213,0.0974806,-0.08673742,2.4283423,1.0807238,-0.3406834,1.3826809,1.3609358,1348,valid,1.3609358\n1.5394084,-0.13926362,-0.16400763,0.62554014,0.40265706,-0.8909787,0.804869,0.9398201,2784,valid,0.9398201\n1.0524158,-0.09099274,-0.1572592,0.5344389,0.82999915,-0.911735,0.83844745,1.0768573,2742,valid,1.0768573\n-0.19920099,0.7206496,-0.45254317,3.6027217,2.7208986,-1.2834889,0.66589314,1.2947793,2300,valid,1.2947793\n0.45463693,-0.64010346,0.13505788,3.4323432,-1.5842009,-1.2188783,1.0181724,1.4482471,212,valid,1.4482471\n-1.5261844,-0.16415972,-0.056964215,2.4567053,0.008513224,-0.16568008,1.2233698,1.2914847,2752,valid,1.2914847\n0.46131632,-0.32242912,-0.06383627,2.0624456,-0.21623793,-0.4934008,0.81577283,1.2126318,880,valid,1.2126318\n-3.2923994,0.22206487,-0.0968712,2.1429415,1.5816387,-0.23052067,1.2962137,1.3044521,1472,valid,1.3044521\n8.604749,1.276121,-0.7668357,-6.562549,5.235829,-2.9919453,0.7388032,0.51188093,2471,valid,0.51188093\n0.14287882,-0.60085654,0.08559358,3.6720774,-1.4368328,-0.92381406,0.8904014,1.1417621,103,valid,1.1417621\n0.6980423,-0.31235474,-0.076699965,1.920249,-0.2601699,-0.52962315,0.8016593,1.1513858,261,valid,1.1513858\n1.548151,0.39787582,-0.31247774,1.7327164,2.3555174,-1.5153464,0.46131828,0.804577,2017,valid,0.804577\n-0.31324908,0.6882612,-0.43125373,3.6726043,2.6394315,-1.2556152,0.6403777,1.457852,652,valid,1.457852\n0.025621746,-0.5204992,0.05614357,3.202183,-1.4260027,-0.35897258,1.0237529,1.4793309,2705,valid,1.4793309\n0.21962108,-0.6329999,0.1335871,3.3317254,-1.6493738,-0.8594197,1.0563009,1.3269047,287,valid,1.3269047\n0.080533005,0.19286214,-0.20315681,1.1574134,1.9392418,-0.96037036,0.8068266,1.0350162,1992,valid,1.0350162\n3.2876668,-0.21518373,-0.17664778,-0.2416712,1.398078,-1.2222973,0.7137535,1.0307047,1298,valid,1.0307047\n0.7262217,-0.09547953,-0.1508599,0.52653855,0.873896,-0.826162,0.89384115,1.0694999,2807,valid,1.0694999\n-0.79056174,0.19778936,-0.20055819,1.4226569,2.0619226,-0.61752224,0.9067139,0.9889822,1829,valid,0.9889822\n0.37862095,-0.16036727,-0.08502928,0.73119736,1.370786,-0.965838,0.8860297,0.99568236,2443,valid,0.99568236\n6.233184,-1.1064078,0.31955746,-0.71560717,-2.6429646,-1.7783093,1.0386695,1.7611923,1019,valid,1.7611923\n4.609641,0.54853207,-0.41954345,-1.0873086,2.2790651,-2.7737725,0.51440567,0.6549413,2445,valid,0.6549413\n-0.6049199,-0.5257035,0.07838882,3.7786586,-1.1583565,-0.77764565,0.87402153,1.2370152,210,valid,1.2370152\n3.5648878,-0.8769778,0.2070392,1.3080517,-2.0955884,-1.5254544,1.0094618,1.7740921,822,valid,1.7740921\n-2.7265666,-0.1269621,-0.024035353,2.8877275,0.36981696,-0.35290086,1.2966665,1.3900946,2808,valid,1.3900946\n-2.212565,0.05199795,-0.0865328,1.5485524,1.4941068,-0.42288417,1.1543673,1.136034,1478,valid,1.136034\n7.225203,0.072926134,-0.354436,-3.176929,1.0823194,-1.4163588,0.62452716,1.2160726,2491,valid,1.2160726\n-1.2916291,-0.005443324,-0.10174778,0.93255115,1.3757317,-0.6004629,1.1232715,1.1153233,680,valid,1.1153233\n5.888486,0.6676419,-0.48267618,-0.85118234,3.0770636,-2.7272615,0.43203852,0.51636493,2353,valid,0.51636493\n7.8940425,0.9908966,-0.66670406,-4.1648374,4.5422306,-3.0618405,0.6041665,1.1904502,2545,valid,1.1904502\n-1.0455942,-0.18755941,-0.06045678,2.331762,-0.22329843,-0.1674626,1.246349,1.4235997,2854,valid,1.4235997\n2.600895,0.4600817,-0.3564791,1.5526973,2.499695,-1.8613465,0.39392573,0.8131254,2562,valid,0.8131254\n0.07765656,-0.2115409,-0.093933515,1.4526683,0.46749318,-0.559255,0.9073598,1.1072224,43,valid,1.1072224\n0.23118052,-0.17252277,-0.114414304,1.1247733,0.5947015,-0.6623022,0.9270129,1.080039,40,valid,1.080039\n1.9612771,0.4188521,-0.3272584,1.7023659,2.4310522,-1.6406728,0.42567912,1.2011838,2145,valid,1.2011838\n3.217024,0.47844,-0.3747772,1.1815523,2.543824,-2.0315583,0.40236822,1.0707729,2235,valid,1.0707729\n-1.6217046,-0.08556592,-0.07947772,1.8890712,1.0825169,-0.40403038,1.0435983,1.1723971,324,valid,1.1723971\n0.9538721,-0.22317728,-0.12712105,1.2388476,0.18114875,-0.70808595,0.8266197,1.1171317,309,valid,1.1171317\n-3.534679,0.20306621,-0.086979054,2.2988756,1.4386569,-0.25168958,1.339801,1.230509,1405,valid,1.230509\n-1.9723587,-0.37168008,0.0997305,3.8382914,-0.86386687,-0.7895922,1.1103324,1.3330504,12,valid,1.3330504\n-0.6784266,-0.049962483,-0.089507826,0.76918304,1.3246268,-0.7958166,1.0530226,1.0306629,1268,valid,1.0306629\n0.11857062,-0.5176068,0.059482303,3.0954237,-1.5321592,-0.3217644,1.0280638,1.4205823,275,valid,1.4205823\n-3.208241,0.2680531,-0.115006834,2.1314933,1.6091732,-0.20677835,1.3050913,1.1655293,1532,valid,1.1655293\n-3.186289,0.22290544,-0.09845812,2.0663047,1.6406078,-0.22688589,1.2760834,1.1279602,1485,valid,1.1279602\n-0.34144697,-0.5537275,0.12505518,3.5519516,-1.3420753,-1.1087043,1.0521941,1.2194636,1139,valid,1.2194636\n1.0169044,-0.083293185,-0.14646171,0.5236484,0.89689004,-1.0017058,0.8351422,1.1683693,2817,valid,1.1683693\n-1.9551196,-0.3526468,0.08107096,3.5866416,-0.64639777,-0.8522084,1.1499501,1.1559008,997,valid,1.1559008\n0.8357712,-0.5731752,0.07954414,2.532005,-1.6752872,-0.46234462,1.0404353,1.3825607,2672,valid,1.3825607\n1.2549487,-0.17921665,-0.109456286,0.34852803,1.4497423,-1.0235672,0.8403651,1.1250464,1886,valid,1.1250464\n-1.4797219,0.54155093,-0.36917615,2.9906545,2.0987043,-0.762027,0.8764027,1.1798096,1915,valid,1.1798096\n-0.31928182,0.72838235,-0.45194048,3.6857932,2.6654556,-1.2428722,0.67966187,1.3887666,579,valid,1.3887666\n-2.214566,-0.3248834,0.06591405,3.6232333,-0.39460272,-0.7950788,1.1200074,1.1117795,1892,valid,1.1117795\n1.2508823,-0.70536965,0.14672315,2.8758028,-1.714492,-1.2366816,1.010701,1.6952124,894,valid,1.6952124\n2.4036257,-0.72825986,0.1326243,1.5010631,-1.8822782,-0.5883484,0.99921876,1.5911295,757,valid,1.5911295\n0.92314154,-0.1788083,-0.09783857,0.5700882,1.3894906,-1.0416489,0.838877,0.93311244,1848,valid,0.93311244\n3.2498252,0.9037113,-0.60944,0.35891908,3.9598713,-2.1331587,0.6255669,0.81735843,2600,valid,0.81735843\n7.365074,0.847513,-0.6096841,-2.896606,4.0884757,-2.9008715,0.5411684,1.471376,2508,valid,1.471376\n5.7758226,-1.0563625,0.29625353,-0.33529145,-2.520667,-1.7672048,1.029389,1.7622782,1035,valid,1.7622782\n-1.472187,-0.42692497,0.10151162,3.7728138,-0.96703315,-0.9316178,1.0646383,1.2012978,1125,valid,1.2012978\n9.162251,-1.3849192,0.45675975,-3.6615999,-3.307511,-1.5460781,1.1941994,1.402903,134,valid,1.402903\n2.7509673,-0.15009935,-0.18560705,0.69355756,-0.24657004,-1.1260573,0.67887706,1.1394372,2617,valid,1.1394372\n0.1524159,-0.14564604,-0.085009634,0.79634655,1.3589141,-0.92918193,0.9150021,1.022708,1285,valid,1.022708\n4.7860823,-0.9837532,0.27009472,0.40342936,-2.379785,-1.6566238,1.0274587,1.7517066,969,valid,1.7517066\n-0.085373364,-0.50604093,0.055253975,3.2298617,-1.415742,-0.33503914,1.0285532,1.4756615,814,valid,1.4756615\n-0.21736802,0.1433944,-0.17090967,1.0405103,1.8794816,-0.8301437,0.8890388,1.1495361,1001,valid,1.1495361\n7.9312286,0.4550616,-0.38323146,-5.978149,1.6048123,-1.9731556,0.78809315,0.91788393,2480,valid,0.91788393\n-3.3612604,0.23716778,-0.09602681,2.182528,1.5811263,-0.22312972,1.3069,1.2044393,1602,valid,1.2044393\n3.5799594,-0.24313809,-0.14949031,0.7951443,-1.0468819,-1.2217484,0.6088925,1.3934104,2606,valid,1.3934104\n4.195086,-0.85131216,0.21957016,-0.018313264,-2.2509894,-1.0167749,1.062382,1.7560856,944,valid,1.7560856\n1.6231278,-0.55689216,0.021931818,2.9174702,-1.7011924,-0.774029,0.72252494,1.3149478,946,valid,1.3149478\n2.5301516,-0.07981533,-0.19279476,0.535228,0.042130087,-1.0933014,0.67603534,1.1584954,815,valid,1.1584954\n-3.0560594,0.22354268,-0.10446098,2.0110707,1.6837915,-0.23449123,1.2590793,1.0725968,1495,valid,1.0725968\n-0.025629383,0.71028095,-0.45023775,3.6052585,2.7706542,-1.3794194,0.621804,1.2185142,2260,valid,1.2185142\n-1.232422,-0.22656196,-0.044115648,2.433562,-0.17128678,-0.12619598,1.2084008,1.3286253,998,valid,1.3286253\n-0.25187314,0.6940069,-0.4353242,3.6707373,2.6733174,-1.2891616,0.6344589,1.4859412,2199,valid,1.4859412\n2.600895,0.4600817,-0.3564791,1.5526973,2.499695,-1.8613465,0.39392573,0.9250034,2560,valid,0.9250034\n-0.8926904,-0.15874243,-0.07384638,1.6451021,0.87955946,-0.47787106,0.9798714,1.0285053,1467,valid,1.0285053\n-1.3335161,0.5249408,-0.38576823,3.1934748,1.9800004,-0.7572684,0.8866862,1.094615,1939,valid,1.094615\n-0.107256785,-0.2351375,-0.0729121,1.7033522,0.3851303,-0.49067116,0.89804983,1.0944318,91,valid,1.0944318\n-0.9442053,-0.46097898,0.08149379,3.4427679,-1.2193677,-0.38329798,1.0678188,1.2955096,208,valid,1.2955096\n1.3877599,-0.72910374,0.15387064,2.8681412,-1.7767855,-1.2235391,0.9892547,1.2587647,311,valid,1.2587647\n-3.4751084,0.12084673,-0.07290102,2.1837769,1.2170905,-0.32929826,1.3965693,1.2184511,1447,valid,1.2184511\n-2.2503426,0.1607261,-0.16251823,2.1185138,1.0661113,-0.24172577,1.3119645,1.3285514,2718,valid,1.3285514\n-1.8544279,0.34227046,-0.2924106,2.3602831,1.451879,-0.14303231,1.1509566,1.2722404,1281,valid,1.2722404\n0.7350953,-0.28818953,-0.08870168,1.7662578,-0.1656119,-0.54183286,0.81034535,1.1433212,68,valid,1.1433212\n-1.9483799,0.32203403,-0.27397266,2.2766721,1.394494,-0.07904706,1.1931129,1.3202158,1921,valid,1.3202158\n-1.6949224,0.08571611,-0.17380655,1.9468213,0.8090545,-0.23881641,1.3110136,1.2976694,1187,valid,1.2976694\n-2.1381109,0.053973284,-0.085367106,1.4430937,1.5105715,-0.43749195,1.1705747,1.1887907,1515,valid,1.1887907\n2.4167721,-0.12055343,-0.18563633,0.58838415,0.049237143,-1.0536758,0.7087238,1.1769894,847,valid,1.1769894\n-3.519105,0.19436339,-0.078703,2.2423296,1.4502536,-0.25207877,1.3260443,1.1854364,1202,valid,1.1854364\n1.6884042,-0.26694316,-0.13830425,1.2827092,-0.18151578,-0.79964644,0.74686456,1.265908,1546,valid,1.265908\n-0.36848575,0.69922256,-0.43688992,3.6621552,2.6389086,-1.2225521,0.66498333,1.2674167,2280,valid,1.2674167\n-1.6583785,-0.07146016,-0.08250877,1.6335114,1.2331091,-0.43318194,1.0742611,1.1229548,520,valid,1.1229548\n-3.456211,0.113215365,-0.0704592,2.164406,1.205106,-0.33761236,1.3979776,1.436094,702,valid,1.436094\n-0.9699825,0.6728785,-0.41653433,3.9914267,2.4423583,-1.1253688,0.6607296,1.158452,2241,valid,1.158452\n-2.147992,0.34946153,-0.26479316,2.3350198,1.5310806,-0.16941732,1.1669431,1.2423196,1279,valid,1.2423196\n0.7834925,-0.40445194,-0.034348242,2.3843029,-0.70242745,-0.50845975,0.7683166,1.2433661,2875,valid,1.2433661\n-1.7713027,0.2583162,-0.22714798,1.7171001,1.1192027,0.049707636,1.341459,1.4077036,1204,valid,1.4077036\n1.2594135,0.37381935,-0.30125585,1.5957913,2.0649135,-1.8651686,0.46946833,0.7838573,501,valid,0.7838573\n-0.16916478,-0.5211612,0.06982227,3.1992378,-1.451121,-0.3398138,1.0404848,1.4336219,308,valid,1.4336219\n-0.9985261,0.15758683,-0.1510771,1.5038813,1.8433754,-0.76291704,0.9274454,1.2049667,1858,valid,1.2049667\n-1.4838177,0.5003565,-0.35790557,2.6007724,1.971282,-0.58669657,0.9662494,1.2168024,2069,valid,1.2168024\n0.41513258,-0.40387714,-0.021193309,2.587557,-0.65735364,-0.43501362,0.7808815,1.3112316,889,valid,1.3112316\n-0.24645843,-0.5707144,0.089743435,3.7801104,-1.3049492,-0.9247407,0.9075192,1.4851846,218,valid,1.4851846\n5.2773123,-0.24039577,-0.25945425,-0.966933,1.2633502,-1.2520999,0.6050331,0.80276513,2274,valid,0.80276513\n-1.1783786,-0.3025004,-0.014341808,2.669629,-0.45369196,-0.07397716,1.1740966,1.3626301,1078,valid,1.3626301\n-2.1736317,0.058441665,-0.085213475,1.4645015,1.5167079,-0.42774817,1.1682912,1.0831327,1484,valid,1.0831327\n3.3953748,0.3524748,-0.337354,-0.2615819,2.0015473,-1.8587279,0.52288777,0.81829953,2424,valid,0.81829953\n-1.309741,-0.14916834,-0.070836596,2.2734797,0.024225818,-0.15074068,1.241675,1.3132195,2755,valid,1.3132195\n-0.31528232,-0.09220212,-0.08808286,0.8169548,1.274158,-0.8951547,0.9816538,1.1225642,1503,valid,1.1225642\n-2.3041272,0.25988078,-0.19929416,2.0409124,1.2634549,-0.050920792,1.3160709,1.2561519,1609,valid,1.2561519\n-1.6792239,0.07075796,-0.17147821,1.9537572,0.7789218,-0.2443647,1.3113217,1.2883724,2694,valid,1.2883724\n3.4300616,-0.8087489,0.18406692,0.6320244,-2.0956495,-0.85160375,1.0412377,1.7013149,2734,valid,1.7013149\n-3.3762765,0.2125371,-0.08703996,2.1789684,1.5610226,-0.23873101,1.2950785,1.1303389,1225,valid,1.1303389\n-1.0576802,0.1932696,-0.18965523,1.4785562,2.0235677,-0.5654896,0.94347316,0.9914541,649,valid,0.9914541\n-1.8867916,0.33888915,-0.24542668,2.1409009,2.0263255,-0.5113652,1.0037123,1.0544748,1900,test,1.0544748\n-3.4281483,0.10206912,-0.063745715,2.2791317,1.2861192,-0.31453395,1.3048959,1.221947,532,test,1.221947\n0.11249669,-0.5999366,0.09115229,3.7143064,-1.4237071,-0.97645384,0.9022062,1.1762091,253,test,1.1762091\n-0.41905499,-0.51794827,0.071772754,3.3580263,-1.3384935,-0.3737188,1.0379202,1.362195,895,test,1.362195\n1.2314677,-0.091742486,-0.16434918,0.54004705,0.76076704,-0.9249117,0.8122643,1.1375269,2843,test,1.1375269\n-3.3640006,0.016488193,-0.042326357,2.3392966,0.9810514,-0.42131385,1.3713448,1.3521174,720,test,1.3521174\n7.0149655,-1.0837898,0.33421308,-2.459839,-2.8011765,-1.1935505,1.148031,1.5890989,2603,test,1.5890989\n-1.2423903,0.14127997,-0.1361279,1.5820118,1.8197218,-0.7212521,0.9373869,1.009387,1852,test,1.009387\n-1.9433147,0.2663389,-0.18244737,1.7790891,1.9369503,-0.41002712,1.0821319,1.0504738,636,test,1.0504738\n-3.4778254,0.12459671,-0.07571967,2.2083673,1.2150972,-0.3266634,1.397305,1.2446944,1453,test,1.2446944\n0.61568487,0.7527034,-0.49254355,2.9938223,3.063237,-1.4717331,0.6561366,1.2543576,2417,test,1.2543576\n9.434723,-1.4140345,0.39472505,-3.152562,-3.3718262,-1.8257182,1.0280422,0.67623466,130,test,0.67623466\n3.0115979,-0.84821045,0.20086026,1.6535543,-2.0490413,-1.4466718,1.0168023,1.5735989,762,test,1.5735989\n-3.369444,0.21599296,-0.090446055,2.173159,1.5704492,-0.23297495,1.2984952,1.0752786,1317,test,1.0752786\n-0.17071447,0.169622,-0.18277764,1.2234827,1.9044019,-0.91908544,0.8224724,1.0964307,2666,test,1.0964307\n1.6582018,-0.6179373,0.05079322,2.9653964,-1.8648835,-0.80751187,0.7808326,1.3691013,957,test,1.3691013\n-2.1707656,0.3372939,-0.24732721,2.1570442,1.439833,-0.10749767,1.2300954,1.1669476,1768,test,1.1669476\n-3.5019693,0.14128509,-0.085084334,2.292844,1.238015,-0.30067787,1.390131,1.313215,1422,test,1.313215\n-2.2183883,0.05795457,-0.08517301,1.514793,1.5215966,-0.4232993,1.1687936,1.1238737,1521,test,1.1238737\n-3.3208156,0.22444874,-0.09265329,2.143683,1.5971417,-0.23266909,1.2936023,1.21155,1587,test,1.21155\n-0.18867883,-0.112747185,-0.08372905,0.7899395,1.2725557,-0.88289326,0.9673109,1.0504678,1693,test,1.0504678\n-0.7900451,-0.0773206,-0.13098025,1.6656322,0.14352992,-0.24627703,1.3457761,1.4562613,2749,test,1.4562613\n-1.5840296,0.45262608,-0.34123093,2.4812264,1.7912209,-0.460462,1.0233424,1.2687043,2045,test,1.2687043\n-3.3105397,-0.054779526,-0.017921815,2.6931353,0.7538267,-0.50184363,1.3566403,1.375288,2811,test,1.375288\n0.37845802,0.73971117,-0.47910377,3.2169085,2.9230404,-1.3911104,0.657276,1.2614117,2268,test,1.2614117\n1.6222786,0.8188935,-0.55637574,1.8846095,3.5650487,-1.8278444,0.6774687,1.1597424,2331,test,1.1597424\n-2.1945603,0.06632861,-0.08606324,1.4781119,1.5612766,-0.42674753,1.1710644,1.2634379,1534,test,1.2634379\n-1.5615978,0.50719494,-0.36942238,3.1718624,1.894908,-0.6552083,0.9110174,1.1666596,1928,test,1.1666596\n-0.32703024,-0.46030873,0.048641425,3.1736224,-1.3209834,-0.29683006,1.0549587,1.3858229,195,test,1.3858229\n1.5978761,-0.55071276,0.021450277,2.908833,-1.6865586,-0.7695871,0.7195198,1.3484995,1104,test,1.3484995\n3.0801075,-0.74162894,0.11175032,2.3031716,-2.4015365,-1.1991928,0.73119485,1.3237846,127,test,1.3237846\n1.6698527,0.79504836,-0.53709877,2.055202,3.4871693,-1.9035839,0.6273918,0.9704484,2342,test,0.9704484\n-3.3541877,-0.02711171,-0.030681714,2.555028,0.8310331,-0.47059748,1.3833078,1.2070204,743,test,1.2070204\n-2.0508862,0.20928983,-0.14478254,1.6258339,1.8544673,-0.36358595,1.1282297,1.1722466,1647,test,1.1722466\n-2.4395978,0.29938942,-0.21674946,2.2492805,1.4445846,-0.10833922,1.2407193,1.1664848,2638,test,1.1664848\n-2.0343223,0.29381102,-0.24096668,2.0569422,1.280197,-0.016133294,1.2806809,1.4700258,2626,test,1.4700258\n-1.7361814,0.39012188,-0.32316428,2.536749,1.5725925,-0.30345652,1.0695183,1.188812,1831,test,1.188812\n-0.96150756,-0.17385603,-0.06889852,2.22852,-0.19595113,-0.18921705,1.2612176,1.4289733,2849,test,1.4289733\n0.28258178,-0.12028506,-0.10085355,0.83186466,1.1134468,-1.0728714,0.89589065,1.0510392,1267,test,1.0510392\n6.5605335,-1.180695,0.27466238,-0.45033127,-3.0758944,-1.555717,0.8510566,1.2429386,3,test,1.2429386\n5.305099,-0.20054004,-0.2727076,-1.0615079,1.3406165,-1.2404377,0.59620285,1.4332578,2420,test,1.4332578\n-1.2387875,0.54811513,-0.387437,3.0421355,2.1291437,-0.83398855,0.8654407,1.1316453,2314,test,1.1316453\n-0.6983423,-0.5421916,0.12169945,3.869786,-1.3936021,-0.9634519,1.0654417,1.0482192,2777,test,1.0482192\n3.5075839,0.48773023,-0.38177705,0.95227396,2.5713406,-2.0865595,0.41453925,0.7126391,2298,test,0.7126391\n-1.7824609,0.38602203,-0.32001165,2.580576,1.5694741,-0.30081192,1.066723,1.214312,1845,test,1.214312\n-2.0539927,0.03149147,-0.083979644,1.4420396,1.4436526,-0.435793,1.1578076,1.0643513,1391,test,1.0643513\n3.3640213,-0.8785692,0.21857628,1.4155146,-2.1239154,-1.4816809,1.0176841,1.9852159,1073,test,1.9852159\n-2.2866278,-0.25802028,0.039785214,3.227587,-0.36927885,-0.34141806,1.2147638,1.3912513,2859,test,1.3912513\n0.9665787,0.751196,-0.49538055,2.7968013,3.164317,-1.6470871,0.6233729,1.3500628,2320,test,1.3500628\n-1.9319869,0.44201174,-0.32202962,2.6579328,1.7772082,-0.46815524,1.0147477,1.2438638,1887,test,1.2438638\n1.1817954,-0.7008932,0.14691488,2.8850296,-1.714781,-1.2130923,1.0201218,1.4383447,892,test,1.4383447\n0.35597554,-0.08663933,-0.14362103,0.52664644,0.9068578,-0.7449895,0.9529457,1.0644256,1625,test,1.0644256\n-0.18204339,-0.5467471,0.09552668,3.2464824,-1.5059569,-0.5044155,1.065097,1.3398722,281,test,1.3398722\n-2.1743848,0.057620257,-0.08479243,1.4652774,1.5188478,-0.42895082,1.170729,1.0509462,1541,test,1.0509462\n8.812342,1.2845589,-0.77910775,-6.93315,5.312049,-2.8687396,0.7801685,0.99505234,2530,test,0.99505234\n2.8721159,-0.8462548,0.20574562,1.6978942,-2.0663776,-1.3892256,1.0283761,1.6430862,2892,test,1.6430862\n-2.2535875,0.06477792,-0.086566605,1.5460533,1.5304236,-0.41940928,1.1636444,1.052824,1386,test,1.052824\n-0.60879135,-0.5316959,0.12596197,3.6683362,-1.3146429,-1.0594788,1.0647266,1.2391219,798,test,1.2391219\n0.17561075,-0.11034184,-0.1000158,0.8127889,1.1414068,-1.0414219,0.91214454,1.044588,1402,test,1.044588\n1.6269554,-0.73738474,0.15311226,2.6273627,-1.7915362,-1.2442966,1.0046633,1.7752595,2707,test,1.7752595\n-3.517127,0.16882946,-0.08343523,2.2572017,1.3715795,-0.2755856,1.3542072,1.3438731,1469,test,1.3438731\n-3.2105784,0.2705323,-0.11623459,2.1326008,1.6062523,-0.20317167,1.3075455,1.4675918,1529,test,1.4675918\n3.1038864,-0.8567214,0.20597176,1.5981905,-2.0710802,-1.4583585,1.0159639,1.7902919,950,test,1.7902919\n-1.9927131,0.36681855,-0.29172233,2.4937897,1.5883092,-0.26334897,1.1009829,1.2174256,1709,test,1.2174256\n0.5457498,0.29143718,-0.274534,1.2324641,2.2214432,-0.91653365,0.7306202,1.0382798,2060,test,1.0382798\n-0.9161709,0.6495571,-0.41165692,3.6151094,2.4417963,-1.0751235,0.70884866,1.0670285,2166,test,1.0670285\n0.98637307,-0.17811142,-0.100477725,0.44818783,1.4451575,-0.9961705,0.852583,1.0524523,1903,test,1.0524523\n-1.314769,0.51867366,-0.38474405,3.1246655,1.9632988,-0.7271477,0.8979681,1.1051936,2036,test,1.1051936\n0.5213717,-0.09512726,-0.14845362,0.5539436,0.822806,-0.756309,0.9312218,1.0704333,1726,test,1.0704333\n-1.4286777,-0.10602044,-0.079944596,1.7316488,1.0995164,-0.43617868,1.0343386,1.047768,448,test,1.047768\n-2.4665735,-0.24575236,0.039445266,3.1664598,-0.17998102,-0.50313354,1.2566395,1.2372859,1560,test,1.2372859\n0.2114715,0.15140249,-0.19181451,0.8774596,1.9305845,-0.8999352,0.8507744,1.1027116,2082,test,1.1027116\n-2.58709,-0.23517406,0.04339827,3.2408874,-0.0596403,-0.69739884,1.2381996,1.2315565,2842,test,1.2315565\n6.857425,0.7746837,-0.5642164,-2.0260952,3.6363134,-2.9514554,0.46510565,0.9748485,2595,test,0.9748485\n5.4071445,0.6198733,-0.44979733,-0.5031335,2.8791661,-2.577018,0.480296,1.177826,2213,test,1.177826\n1.0406876,0.41016805,-0.32654473,1.6394858,2.4692292,-1.3345073,0.5922996,0.9902874,657,test,0.9902874\n0.9478946,-0.6725653,0.112805806,3.4007838,-1.6379789,-1.1606102,0.91630715,1.2552104,293,test,1.2552104\n4.149187,0.4165105,-0.36037213,-0.97354484,2.0017927,-2.0388577,0.5339451,0.91613185,2329,test,0.91613185\n0.55930895,-0.25894764,-0.09393487,1.652757,0.026100505,-0.5362794,0.83691376,1.1178013,51,test,1.1178013\n-1.7668089,-0.04638667,-0.08141426,1.5399388,1.3040407,-0.4392757,1.1006408,1.0519936,1369,test,1.0519936\n-2.1002543,0.27713442,-0.23979262,2.226293,1.307112,-0.06804067,1.2396605,1.2118185,1704,test,1.2118185\n1.5180871,-0.16978537,-0.12094886,0.2813986,1.4561497,-1.0530267,0.8263101,1.1769407,1871,test,1.1769407\n-0.4418688,-0.072654426,-0.090154245,0.79284614,1.2865137,-0.8618939,1.0079435,1.0147957,1217,test,1.0147957\n0.70036227,-0.6742306,0.14645118,3.1080298,-1.7117285,-1.0403115,1.0483686,1.4531853,812,test,1.4531853\n-2.3030632,0.26047206,-0.19960809,2.0387478,1.2657845,-0.050226226,1.3164425,1.3215132,1604,test,1.3215132\n5.719317,-0.22431256,-0.28434098,-1.1887101,1.2184268,-1.2690773,0.5692515,1.37586,2368,test,1.37586\n4.52373,0.59044665,-0.42104304,0.21968071,2.7922862,-2.3660934,0.45926198,0.98150706,2201,test,0.98150706\n-3.4049416,0.034388,-0.051133446,2.3564053,0.9994167,-0.4100726,1.396125,1.2758076,1324,test,1.2758076\n-3.335509,0.056020193,-0.070996456,2.3647776,0.995266,-0.38612592,1.401986,1.2036793,320,test,1.2036793\n-0.28983924,0.44455746,-0.31484932,2.2948627,2.3894403,-1.2102618,0.66912293,0.8577533,2021,test,0.8577533\n6.2180643,-1.1136541,0.3384433,-1.0333363,-2.7035925,-1.619622,1.099015,1.4165552,2611,test,1.4165552\n0.65190876,-0.5902763,0.07838688,2.6876602,-1.633425,-0.3778774,1.0302944,1.4363837,2625,test,1.4363837\n2.8174634,-0.21505295,-0.16145529,-0.087878354,1.4274435,-1.1841997,0.7360028,1.2010036,2667,test,1.2010036\n3.6112754,0.37013558,-0.34494048,-0.4561654,1.988243,-1.9166638,0.5265385,0.8724714,2405,test,0.8724714\n1.5847615,-0.5525055,0.019103063,2.9075017,-1.6603392,-0.7646095,0.71951044,1.3063481,1023,test,1.3063481\n0.9019267,0.7552035,-0.49841082,2.8106582,3.168408,-1.6150811,0.63373566,1.421736,2319,test,1.421736\n1.8134539,-0.7393338,0.14689548,2.4282668,-1.7829895,-1.2480122,1.0097495,1.4869406,988,test,1.4869406\n-2.1962614,0.04752426,-0.08481907,1.5196013,1.499023,-0.42699373,1.1668324,1.1021051,1584,test,1.1021051\n0.3643351,-0.32397467,-0.06816467,2.1053944,-0.137536,-0.4805719,0.8460651,1.1914828,987,test,1.1914828\n-1.063941,0.6515401,-0.41214305,3.8316116,2.4121735,-1.0788058,0.6960711,1.2238891,2561,test,1.2238891\n4.3081646,-0.9215502,0.16372436,1.5479273,-2.7946737,-1.343974,0.7364173,0.82673377,157,test,0.82673377\n-0.8499597,0.20912343,-0.2017506,1.4481707,2.0664601,-0.6040195,0.9170275,1.235372,1834,test,1.235372\n0.3902834,0.6089012,-0.38543594,3.1683943,2.603052,-1.5749624,0.5097114,0.8888033,555,test,0.8888033\n-1.9868253,0.26591367,-0.17994386,1.787702,1.926394,-0.40208054,1.0896336,1.0772338,627,test,1.0772338\n4.757476,-0.98189306,0.27016544,0.40836796,-2.380176,-1.6452217,1.0313052,1.8186548,972,test,1.8186548\n0.2387872,0.2889698,-0.2652901,1.1933738,2.2288864,-0.79844755,0.7974779,1.4261565,2055,test,1.4261565\n0.9760405,-0.6887588,0.14464268,3.13661,-1.6964463,-1.214507,0.99769926,1.2036769,247,test,1.2036769\n3.3880312,-0.81143844,0.19848233,0.5603917,-2.1905575,-0.87902653,1.0542076,1.1532708,836,test,1.1532708\n-2.288041,0.1292362,-0.15222874,2.1800418,1.0047718,-0.27302143,1.3116565,1.3748733,714,test,1.3748733\n3.6177747,-0.8460466,0.20896095,0.43593433,-2.2481253,-0.90864676,1.0630662,1.5621235,837,test,1.5621235\n-1.7287147,0.11849093,-0.13711435,1.9798125,1.8363851,-0.566486,0.9215893,1.0023471,604,test,1.0023471\n0.74214715,-0.080293454,-0.14096723,0.55417746,0.9810863,-0.9564362,0.8715766,1.1188885,2815,test,1.1188885\n8.052397,0.86600375,-0.5443028,-5.714452,3.016698,-2.8996243,0.70309883,0.50484025,424,test,0.50484025\n5.5733695,-0.85976994,0.25288886,-1.4239767,-2.4398797,-1.2661713,1.1111664,2.039537,1044,test,2.039537\n7.0879946,0.8053345,-0.5829665,-2.4284694,3.819985,-2.8885581,0.5188392,0.9998887,2392,test,0.9998887\n-2.0690436,0.35193962,-0.28329134,2.5050433,1.5598047,-0.21253578,1.1179402,1.2669272,1742,test,1.2669272\n-3.1898189,0.18006353,-0.11274941,2.2434323,1.2500782,-0.25833988,1.3719491,1.2213576,2709,test,1.2213576\n6.583574,0.7400831,-0.53861034,-1.7099254,3.3996956,-2.831617,0.48986638,0.73113763,2339,test,0.73113763\n-3.1295288,0.19578235,-0.09292556,2.0926628,1.6300863,-0.2527994,1.2412823,1.1168545,1380,test,1.1168545\n-3.455215,0.25224563,-0.103866756,2.2626705,1.521505,-0.19794454,1.3370427,1.1039282,1210,test,1.1039282\n-3.2680588,0.22165802,-0.09472981,2.1066568,1.6126109,-0.22698559,1.2866666,1.1810615,1378,test,1.1810615\n9.239049,-1.3787342,0.44012794,-3.3921175,-3.278572,-1.8304842,1.125642,0.9357475,179,test,0.9357475\n-2.6504705,-0.2259924,0.03698632,3.245238,0.041777253,-0.6794649,1.2239965,1.3393284,2806,test,1.3393284\n-1.8609383,0.26301882,-0.22925079,1.8061266,1.1726416,0.033071987,1.3269037,1.4336766,2643,test,1.4336766\n3.7102075,0.55946076,-0.39350393,1.0401533,2.6418865,-2.3186688,0.38918903,0.6450703,2249,test,0.6450703\n2.6678717,-0.2484706,-0.15705214,1.0126334,-0.4778275,-1.0747938,0.66368335,1.3865255,840,test,1.3865255\n-2.8451772,0.22289109,-0.11205244,1.928161,1.7162586,-0.257521,1.2328118,1.1617801,1691,test,1.1617801\n-0.56653446,-0.53564346,0.1258214,3.6555514,-1.3167069,-1.0701158,1.0612102,1.6908548,799,test,1.6908548\n2.6004086,-0.20039172,-0.15374973,0.002885604,1.4109234,-1.1915399,0.7490652,1.2072634,1961,test,1.2072634\n1.3517127,-0.55716693,0.023484044,3.0596285,-1.6223768,-0.69920737,0.72363675,1.3719895,966,test,1.3719895\n1.9753108,0.41976768,-0.32945544,1.6369723,2.4438002,-1.613908,0.44096324,0.7949712,1974,test,0.7949712\n2.438713,-0.8055663,0.17427906,2.0987155,-1.9624115,-1.3641583,1.0079734,1.6031852,2885,test,1.6031852\n-1.0447625,-0.3843418,0.031223478,2.963977,-0.83859396,-0.091900215,1.1036282,1.2577827,871,test,1.2577827\n2.4422257,0.548112,-0.3918165,1.8216535,2.6930776,-1.9377437,0.43650544,1.2873824,502,test,1.2873824\n-0.48695096,-0.20022312,-0.07249266,1.7050562,0.63438404,-0.5016439,0.9365757,1.1341194,1175,test,1.1341194\n7.6931043,0.8429563,-0.5283141,-5.13997,2.9610167,-2.973185,0.6538209,0.5396797,2512,test,0.5396797\n-0.24601555,0.16521499,-0.17802207,1.1397455,1.8920794,-0.8585852,0.8716464,1.1064627,2313,test,1.1064627\n-3.5360155,0.1665947,-0.07055546,2.1998308,1.3495378,-0.27912125,1.3533009,1.3310283,700,test,1.3310283\n-2.1718762,0.3277267,-0.2611566,2.3964264,1.4820623,-0.13362308,1.1730064,1.2804555,1659,test,1.2804555\n-1.0400938,-0.20300913,-0.049824227,2.4326115,-0.33847266,-0.18474862,1.2400558,1.5113852,2788,test,1.5113852\n-3.5302954,0.18253668,-0.08327096,2.2484636,1.3608375,-0.28057805,1.3715397,1.1541135,493,test,1.1541135\n-1.8985491,0.42068374,-0.31628886,2.5775669,1.7241684,-0.422308,1.0395898,1.1947868,1862,test,1.1947868\n-0.43469587,-0.2952593,-0.04769687,2.3462849,0.07381609,-0.39744073,0.8749488,1.1038058,99,test,1.1038058\n3.3060188,-0.7795018,0.17599599,0.598846,-2.0523417,-0.82305676,1.0462731,1.6349993,1040,test,1.6349993\n-2.2710037,-0.31747317,0.0783311,3.650616,-0.5682647,-0.739905,1.1625217,1.3004361,47,test,1.3004361\n0.40416455,-0.08469562,-0.11850406,0.69201034,1.0758923,-1.0323671,0.8905562,1.0699257,1335,test,1.0699257\n6.8616977,1.2503343,-0.79445505,-4.45492,5.102059,-1.9419987,0.70731044,1.0141767,2500,test,1.0141767\n1.0288793,-0.56268597,0.035173275,3.0571492,-1.5771645,-0.6029464,0.7580657,1.040457,2766,test,1.040457\n-2.5272887,-0.2006129,0.015091818,2.9673998,0.042639665,-0.4322798,1.2805364,1.2017888,1723,test,1.2017888\n-2.0443788,0.28292313,-0.25527492,2.3300147,1.3346022,-0.08608163,1.194565,1.326503,2629,test,1.326503\n4.2831264,0.98806435,-0.6754781,-1.1455681,4.3940077,-1.9463874,0.69172233,1.0070801,2548,test,1.0070801\n-2.4031699,0.32277298,-0.22866674,2.2932312,1.4997152,-0.12483299,1.215598,1.1724559,1253,test,1.1724559\n-1.3630091,-0.0016227205,-0.10029171,0.9512756,1.4003426,-0.58804995,1.1298116,1.1355201,699,test,1.1355201\n-0.48773685,-0.4074979,0.0351201,2.8300707,-1.0787791,-0.23406944,1.1204361,1.3656001,882,test,1.3656001\n-0.9595724,-0.4625397,0.09042753,3.516127,-1.2521929,-0.45093134,1.0676373,1.4588859,214,test,1.4588859\n-1.775246,-0.0420794,-0.08421363,1.5554562,1.320022,-0.46192726,1.1026725,1.1604857,1191,test,1.1604857\n-3.466809,0.117760465,-0.07214482,2.1789687,1.210037,-0.33325845,1.3975351,1.3424933,518,test,1.3424933\n0.2229288,-0.117876105,-0.10060688,0.8492097,1.1365292,-1.0574231,0.8981581,0.9937221,1197,test,0.9937221\n1.7366006,0.7854918,-0.5317122,2.0234735,3.4498193,-1.8683761,0.63489455,1.8756912,2383,test,1.8756912\n1.0212525,-0.49664044,-0.0012401673,2.868991,-1.175784,-0.6037258,0.7313139,1.2902522,761,test,1.2902522\n1.6113743,0.8093255,-0.5429085,2.0332866,3.528467,-1.962806,0.6236435,0.6044392,2448,test,0.6044392\n1.0790817,-0.5694877,0.035720557,3.0755117,-1.6047112,-0.6273431,0.75858694,1.1250583,2614,test,1.1250583\n-2.2318556,0.3539467,-0.2695455,2.5190535,1.6095563,-0.23580194,1.1181107,1.2134879,1753,test,1.2134879\n-3.2711906,-0.03853178,-0.03665541,2.5912266,0.9449723,-0.43659317,1.2949334,1.3007132,331,test,1.3007132\n2.871453,0.3218021,-0.31125286,0.16098435,2.029942,-1.6865896,0.52110255,0.7801188,2216,test,0.7801188\n3.0403497,0.90794027,-0.623481,0.09038046,4.02201,-1.841786,0.70703083,1.4161896,429,test,1.4161896\n-3.4634655,0.115801625,-0.07115832,2.1689725,1.2112362,-0.3343319,1.3971697,1.4909098,515,test,1.4909098\n4.616975,-0.25553858,-0.22455369,-0.7008341,1.3247489,-1.2473054,0.64168423,0.9145862,2178,test,0.9145862\n-2.9679077,0.14715342,-0.119036436,2.3096902,1.1207577,-0.2930434,1.3577205,1.2514848,709,test,1.2514848\n4.007196,0.5050618,-0.38059172,0.6867289,2.470512,-2.3936908,0.36749622,1.2826755,346,test,1.2826755\n0.40894315,-0.37343082,-0.039285764,2.3585763,-0.40438423,-0.46660483,0.8212035,1.1637155,803,test,1.1637155\n-1.9056472,0.4445552,-0.32577935,2.6952813,1.7722577,-0.46654302,1.0093595,1.1876657,1884,test,1.1876657\n-2.2699199,0.07356576,-0.08785293,1.5478704,1.5601197,-0.4211744,1.1643121,1.0864786,1621,test,1.0864786\n-0.47191408,-0.06320689,-0.09348244,0.77185726,1.2885841,-0.85327214,1.0159125,1.0942224,1201,test,1.0942224\n6.2569222,-1.111625,0.3252254,-0.79739946,-2.6583128,-1.7544061,1.0493726,1.7774997,1098,test,1.7774997\n0.307981,-0.091276325,-0.11190183,0.74519217,1.0935714,-1.0378065,0.89569205,1.0637361,2720,test,1.0637361\n-1.2367792,-0.4758295,0.10130865,3.9989264,-1.047855,-0.94224256,0.9828253,1.1964676,32,test,1.1964676\n0.48719177,-0.4148857,-0.018528584,2.6504252,-0.7546064,-0.46263412,0.76810485,1.215598,813,test,1.215598\n-2.2984002,0.2348805,-0.18638831,2.005291,1.2113525,-0.090589345,1.3224021,1.2220241,1308,test,1.2220241\n-2.148026,0.18804698,-0.1777699,2.0089347,1.1154969,-0.19010358,1.3149884,1.3724593,691,test,1.3724593\n-2.4538858,0.34635472,-0.22446056,2.3079948,1.7005548,-0.26119527,1.1525918,1.2062894,640,test,1.2062894\n0.22643323,0.15448424,-0.19359472,0.8627234,1.9337407,-0.8976193,0.8535387,1.1423383,2076,test,1.1423383\n1.6363513,-0.19081813,-0.120127864,0.28622004,1.4354513,-1.0900538,0.8034872,1.140457,1853,test,1.140457\n2.5140336,-0.4672945,-0.018233921,2.1188757,-1.7202209,-1.0286895,0.6917778,0.7218141,120,test,0.7218141\n5.4486475,0.6298339,-0.45409012,-0.54720473,2.9173164,-2.5881634,0.479443,1.4431365,2272,test,1.4431365\n0.5091231,-0.6516821,0.14082156,3.1830304,-1.6486202,-1.066947,1.0622406,1.4427241,885,test,1.4427241\n0.45351854,-0.3343627,-0.05722565,2.137086,-0.27975795,-0.48854455,0.81092495,1.2362531,883,test,1.2362531\n-0.24341084,0.64490515,-0.39761537,3.6644976,2.5343583,-1.3876545,0.5617085,0.9555311,390,test,0.9555311\n9.978394,-1.4425753,0.47755864,-4.100362,-3.4365633,-1.7860215,1.1699001,1.0619404,83,test,1.0619404\n-1.2518886,-0.10087225,-0.08144048,1.5262507,1.1052973,-0.4876438,1.0431498,1.0287981,1326,test,1.0287981\n-1.2626827,0.16293895,-0.22035512,1.6051769,0.845416,-0.15586875,1.3732848,1.5405474,1346,test,1.5405474\n0.43220165,-0.26580003,-0.08516995,1.7379297,0.033127554,-0.51090384,0.8421746,1.2054918,206,test,1.2054918\n-1.9456089,0.33993337,-0.28246206,2.3348355,1.4588085,-0.1352793,1.1665553,1.1607782,1721,test,1.1607782\n-0.9653272,0.6708484,-0.41411272,3.9672997,2.445369,-1.1340535,0.6573817,1.0764548,2243,test,1.0764548\n0.11626056,-0.14474608,-0.084011644,0.7995409,1.3457762,-0.9246296,0.9191015,1.0148222,1760,test,1.0148222\n1.2528758,0.32790154,-0.29539156,1.4284071,2.2587466,-1.2854624,0.54890966,0.9540839,1908,test,0.9540839\n-2.5414183,-0.21238917,0.025486613,3.072598,-0.05365225,-0.43012884,1.2623855,1.2560972,73,test,1.2560972\n-1.1736358,0.2011744,-0.18703893,1.5023637,2.0155675,-0.53677475,0.9656355,1.0383847,1710,test,1.0383847\n-1.0508724,-0.008738502,-0.09236982,0.8333617,1.5795436,-0.5756902,1.0929106,1.0742972,633,test,1.0742972\n8.6884985,-1.3156508,0.42212296,-3.590968,-3.1965714,-1.3071111,1.1901351,1.0972996,143,test,1.0972996\n-3.4615002,0.08697686,-0.062387258,2.2049255,1.1548831,-0.35571435,1.3925506,1.0346577,1415,test,1.0346577\n0.0040282,-0.40162537,-0.014129729,2.6601877,-0.5826717,-0.38360134,0.8074363,0.97488135,2779,test,0.97488135\n3.6434088,-0.853919,0.14201146,1.9987185,-2.6212554,-1.240426,0.737484,0.846875,169,test,0.846875\n1.4375784,0.38193935,-0.30954936,1.460666,2.0799994,-1.9337592,0.46574166,0.8375212,534,test,0.8375212\n-1.5496786,-0.0888608,-0.08116763,1.8204219,1.1113898,-0.41319352,1.0392339,1.1066296,722,test,1.1066296\n-3.4995422,0.24587964,-0.1005202,2.2873518,1.4993525,-0.20545839,1.3422451,1.2030795,1390,test,1.2030795\n-0.26231185,0.7032764,-0.44209513,3.5954425,2.6814725,-1.2485404,0.665602,1.3891991,1839,test,1.3891991\n2.8079622,0.31995478,-0.30825493,0.19987504,2.0281835,-1.6585842,0.5255532,0.907159,2266,test,0.907159\n-3.335509,0.056020193,-0.070996456,2.3647776,0.995266,-0.38612592,1.401986,1.3402708,333,test,1.3402708\n3.0271728,0.53046346,-0.38501185,1.372012,2.6429698,-2.0401442,0.42173946,0.9958253,549,test,0.9958253\n0.12176025,-0.2877369,-0.06870594,1.975826,0.087832116,-0.46950004,0.85768574,1.2282615,1135,test,1.2282615\n-2.151375,0.049406886,-0.08488916,1.4713465,1.4990723,-0.43526977,1.1680559,1.0757757,1504,test,1.0757757\n-1.6060182,-0.4258802,0.08554482,4.0159245,-0.85455376,-0.8388491,0.9725805,1.2539694,4,test,1.2539694\n1.3790176,0.3786138,-0.30741018,1.5160638,2.0733669,-1.9248887,0.4643089,0.92454094,375,test,0.92454094\n1.6009718,-0.6245059,0.09427341,2.0744748,-1.7646589,-0.543396,1.0281825,1.6195347,823,test,1.6195347\n0.056885395,-0.6146731,0.13152337,3.43668,-1.6044588,-0.90476763,1.0645949,1.4445033,188,test,1.4445033\n9.339636,-1.4017506,0.4648477,-3.6035016,-3.3296049,-1.7181653,1.1649181,1.8771048,114,test,1.8771048\n-0.36462864,0.7146043,-0.44502082,3.726645,2.669025,-1.2565783,0.66239214,1.2734056,2173,test,1.2734056\n-3.5425596,0.157362,-0.0814506,2.247885,1.309777,-0.28856787,1.3792211,1.214181,1361,test,1.214181\n-0.9586393,0.21097176,-0.19944656,1.4914486,2.062071,-0.5922608,0.926172,1.0916383,1847,test,1.0916383\n1.6280104,0.81842315,-0.5564137,1.8810592,3.5624619,-1.8221842,0.67891777,1.3498299,2590,test,1.3498299\n-2.3174112,0.28009188,-0.21206404,2.1204603,1.3035504,-0.048818983,1.2983054,1.2694676,1491,test,1.2694676\n-1.8050929,0.27157047,-0.23613298,1.7868993,1.167114,0.0607663,1.329461,1.3221253,1228,test,1.3221253\n1.5082896,-0.7131681,0.12308825,2.1918962,-1.8358485,-0.5052162,1.0134442,1.4584699,855,test,1.4584699\n-3.5049257,0.121900946,-0.071030684,2.1925876,1.2393228,-0.31813872,1.387959,1.3641045,1427,test,1.3641045\n0.25326726,0.20017122,-0.21229784,1.1635484,1.9503671,-1.0043488,0.7751046,1.0797983,2097,test,1.0797983\n2.9055536,-0.84831834,0.20617948,1.691999,-2.0668807,-1.4036547,1.0248698,1.5969336,2889,test,1.5969336\n-2.3297021,-0.27894047,0.05699568,3.3956895,-0.46751988,-0.43036044,1.2018136,1.2805443,6,test,1.2805443\n-1.7135295,-0.39031413,0.09711316,3.667729,-0.8727401,-0.8800403,1.1211649,1.5007464,1126,test,1.5007464\n6.446731,-1.1240485,0.32659882,-0.87506276,-2.6829822,-1.7907796,1.0414639,2.044005,947,test,2.044005\n1.3331488,-0.48958728,-0.012833763,2.6275213,-1.1826398,-0.6607484,0.72815657,1.3938453,1554,test,1.3938453\n5.1859107,1.0704927,-0.7296274,-2.6041198,4.7098465,-1.765996,0.7443914,1.2267449,418,test,1.2267449\n1.8725843,0.4009215,-0.3251348,1.4076533,2.4285266,-1.4789827,0.50042737,1.3150129,2077,test,1.3150129\n-2.2262971,0.06380896,-0.086034276,1.5123109,1.5362642,-0.42203057,1.1679817,1.1141926,1599,test,1.1141926\n-3.457382,0.09562217,-0.060292803,2.1742408,1.1702584,-0.3453817,1.3809837,0.88115525,529,test,0.88115525\n-2.0692632,0.41248617,-0.30311644,2.6636713,1.7419224,-0.42625412,1.0330312,1.209928,1906,test,1.209928\n3.0190978,-0.84839827,0.20068166,1.669141,-2.049571,-1.4567972,1.0126384,1.6347643,760,test,1.6347643\n-1.533215,0.20631021,-0.17333373,1.5743672,1.9491557,-0.46794355,1.0216144,1.043686,600,test,1.043686\n-0.67194295,-0.057926573,-0.087297484,0.791391,1.3364953,-0.79409146,1.045619,1.0428425,1603,test,1.0428425\n-1.9923581,-0.34975913,0.0804931,3.61416,-0.6377583,-0.8517193,1.1482365,1.3725905,1559,test,1.3725905\n-1.1626459,-0.32012284,-0.006567316,2.7231858,-0.5354629,-0.065692574,1.1642393,1.376808,1680,test,1.376808\n3.3207963,-0.7998647,0.19524778,0.5787794,-2.1763542,-0.86324364,1.0550245,1.4072151,839,test,1.4072151\n1.5842717,0.39375538,-0.3113053,1.7323273,2.3470912,-1.5273361,0.45405668,0.824985,2015,test,0.824985\n-3.297462,0.14628059,-0.1000197,2.294045,1.1834779,-0.29445997,1.3861094,1.3606389,511,test,1.3606389\n-3.3631492,0.26213372,-0.11181191,2.221871,1.5485946,-0.19344474,1.3312578,1.3053497,1509,test,1.3053497\n0.20154344,0.19697545,-0.2087578,1.1703246,1.9458843,-0.9948012,0.78043264,1.3804386,1299,test,1.3804386\n-2.380679,0.33403108,-0.23734535,2.338155,1.5295651,-0.14401208,1.1946414,1.1360884,1666,test,1.1360884\n0.33065394,-0.32497075,-0.059006013,2.1439779,-0.18312669,-0.48287156,0.82458025,1.2168759,793,test,1.2168759\n2.314105,-0.50221765,0.0010521869,2.3316584,-1.7779667,-0.9870015,0.7032309,1.0128856,167,test,1.0128856\n5.7152524,0.6573068,-0.47122413,-0.67479676,3.0241828,-2.7121792,0.43369612,1.1182737,2351,test,1.1182737\n-1.6397474,0.030097583,-0.16353609,1.9448011,0.6941208,-0.24297848,1.3163159,1.2817318,1238,test,1.2817318\n1.2199783,0.3704389,-0.29775202,1.6130363,2.0589945,-1.8278403,0.4749124,0.961799,544,test,0.961799\n1.1330705,0.35068426,-0.30466983,1.2786266,2.3152382,-1.1913053,0.6234618,1.1483897,2123,test,1.1483897\n-1.7651079,0.27930677,-0.24445207,1.7965521,1.1816531,0.07348621,1.3247811,1.3301201,1507,test,1.3301201\n1.7823563,0.39901718,-0.3221598,1.4670482,2.4118404,-1.4732465,0.4970814,1.1125426,1986,test,1.1125426\n-0.11678686,0.1475634,-0.17636244,1.0958185,1.894626,-0.8906296,0.84287703,0.9934269,2668,test,0.9934269\n-0.27629164,-0.5150029,0.07194514,3.2509766,-1.4246095,-0.35022742,1.0430914,1.5948404,289,test,1.5948404\n-2.131113,0.24419674,-0.15764575,1.6877862,1.8769917,-0.35316896,1.1471016,1.0804808,1777,test,1.0804808\n-2.5538254,-0.25206515,0.036253758,3.2834427,0.0003112708,-0.69177705,1.2094655,1.3370109,1184,test,1.3370109\n6.8230104,0.7833311,-0.5655082,-2.070422,3.6435642,-2.8673925,0.5137791,1.5928668,434,test,1.5928668\n-0.7443406,-0.22791201,-0.062230654,2.1208687,0.5055635,-0.4327313,0.92826146,1.1902534,1143,test,1.1902534\n-0.6337073,0.69168425,-0.42717156,3.8474257,2.5513105,-1.177241,0.6594609,1.3262608,2221,test,1.3262608\n-2.6739955,-0.21043913,0.03711665,3.1629655,0.03278303,-0.6597049,1.2613705,1.2656815,2838,test,1.2656815\n-0.96196985,0.14470734,-0.1461127,1.3973535,1.8271761,-0.74164265,0.94684285,1.167702,1855,test,1.167702\n-3.500899,0.1546039,-0.0806584,2.1994398,1.2943573,-0.3023601,1.3880547,1.2236172,2714,test,1.2236172\n-1.5821767,0.45136988,-0.35053372,2.7286346,1.7170621,-0.43655524,0.99308735,1.1905626,1885,test,1.1905626\n1.4686472,0.3824707,-0.31088609,1.4435747,2.0786161,-1.958416,0.4632211,1.0295492,359,test,1.0295492\n-0.93027574,0.5899495,-0.41313633,3.3061721,2.234474,-0.96684647,0.8278929,1.260029,2094,test,1.260029\n8.407502,-1.2618002,0.39912808,-3.562683,-3.1173637,-1.1886089,1.186354,0.7910446,22,test,0.7910446\n6.1833754,-0.15237579,-0.31220397,-1.6593765,1.2078134,-1.192954,0.5772478,1.3925076,2593,test,1.3925076\n-0.36621267,0.69593024,-0.43482253,3.6943476,2.6426294,-1.2401358,0.6526316,1.4604176,2284,test,1.4604176\n2.0811906,-0.18898691,-0.16185682,0.8431416,0.025235638,-0.99792737,0.7309657,0.9538979,2673,test,0.9538979\n-3.43281,0.2484535,-0.102064,2.240812,1.5355847,-0.20249385,1.3286564,1.2435774,1314,test,1.2435774\n1.2999904,-0.46315935,-0.025041204,2.4660766,-1.0526087,-0.64489853,0.7395469,1.3847759,1551,test,1.3847759\n-3.2512317,0.2221971,-0.09405559,2.0982327,1.6224313,-0.23707813,1.2833989,1.2113104,1516,test,1.2113104\n5.3248267,-1.0209932,0.28334424,0.016268052,-2.443401,-1.7272909,1.0224934,1.8142331,959,test,1.8142331\n1.696857,0.5648189,-0.388036,2.3493617,2.6828485,-1.816803,0.45129436,1.2877536,387,test,1.2877536\n-1.3140371,0.16325954,-0.17258689,1.5658152,1.9307271,-0.52823466,0.96427345,1.261089,598,test,1.261089\n1.4019618,-0.6598773,0.093235716,2.3561196,-1.7543997,-0.49500585,1.005988,1.543793,2148,test,1.543793\n-3.37874,0.18279564,-0.10410148,2.2900572,1.29591,-0.25154462,1.3741611,1.2185003,1370,test,1.2185003\n4.8739095,-0.9914689,0.27243185,0.3568917,-2.389946,-1.6781118,1.0211937,2.0567434,978,test,2.0567434\n-0.44007096,-0.07686604,-0.08866898,0.80320716,1.2926683,-0.8615958,1.0054733,1.0683693,1537,test,1.0683693\n0.12331269,-0.11625575,-0.097571194,0.84626925,1.1715758,-1.0303514,0.9146771,1.0518476,1586,test,1.0518476\n1.8299012,0.40037894,-0.3237865,1.4434371,2.4211452,-1.4787767,0.49740893,0.89152634,2084,test,0.89152634\n3.043116,-0.20825799,-0.16712202,-0.11473019,1.383813,-1.2359085,0.720865,1.318707,1966,test,1.318707\n1.0720732,0.18230939,-0.23306073,0.8217584,2.0014224,-1.1188754,0.7074343,1.1353705,2224,test,1.1353705\n-3.2930636,0.26000428,-0.10952806,2.1694481,1.5920016,-0.21108402,1.3132669,1.3673247,1573,test,1.3673247\n4.528459,-0.24606213,-0.22272782,-0.7127532,1.3383957,-1.2253909,0.6563903,1.1450868,653,test,1.1450868\n2.358138,-0.5119015,0.010206607,2.3835251,-1.8995312,-1.0230279,0.71215385,1.105329,115,test,1.105329\n8.368833,-1.3079793,0.40613607,-2.549577,-3.094987,-1.8162574,1.0889132,1.5445015,1045,test,1.5445015\n3.1055005,-0.85345125,0.19675608,1.697584,-2.0534403,-1.4898189,0.9923278,1.6183023,759,test,1.6183023\n9.674703,-1.4259212,0.4740402,-3.8839872,-3.386898,-1.7380152,1.1714976,1.4947672,124,test,1.4947672\n-0.83205295,0.67637026,-0.42041516,3.893136,2.4612768,-1.1177933,0.66899395,1.1671016,2236,test,1.1671016\n-1.77888,-0.046919603,-0.08151087,1.5502918,1.3039104,-0.4323835,1.1003424,1.1198168,1365,test,1.1198168\n-1.7307161,0.2528397,-0.18694939,1.718191,1.9718361,-0.44102183,1.047241,1.1100067,608,test,1.1100067\n1.2289922,-0.7153141,0.15128294,2.9448435,-1.7571336,-1.194757,0.9982472,1.4335511,288,test,1.4335511\n0.24799486,0.20804347,-0.21498896,1.222592,1.9506919,-1.0200338,0.7628941,0.9517288,2095,test,0.9517288\n0.34768838,0.71131545,-0.46168745,3.3928745,2.8616538,-1.4516231,0.6020563,1.273294,571,test,1.273294\n-1.3612314,-0.12166668,-0.08351708,2.2195532,0.13139273,-0.18053865,1.2542748,1.2644017,2844,test,1.2644017\n2.2685199,-0.20240267,-0.14358595,0.060013447,1.4428325,-1.1328505,0.77454406,1.2094642,2037,test,1.2094642\n-0.5660083,0.6908005,-0.4259666,3.9104254,2.591578,-1.2481807,0.6270398,1.1002656,356,test,1.1002656\n-2.2064493,0.35700384,-0.26770335,2.435463,1.6056744,-0.22845426,1.1317048,1.0874009,645,test,1.0874009\n-3.4743614,0.110430926,-0.06276061,2.1719158,1.2053953,-0.33084422,1.3756331,1.2734547,467,test,1.2734547\n0.88576555,-0.18869065,-0.14540419,1.0245392,0.39682928,-0.75525624,0.86268497,1.3402712,980,test,1.3402712\n-2.0878167,0.09831431,-0.10036124,1.6421697,1.7239449,-0.48391485,1.0821481,1.123982,1669,test,1.123982\n-1.2226129,0.61471355,-0.39926383,3.5346138,2.3472514,-1.0380574,0.7598297,1.0693598,2154,test,1.0693598\n-1.7970048,0.17544734,-0.19072857,1.8788776,1.0093973,-0.1691452,1.3124943,1.3471394,1194,test,1.3471394\n0.43462595,-0.6293837,0.13323416,3.3645823,-1.551443,-1.2270106,1.0332607,1.4359027,779,test,1.4359027\n6.2862477,-0.12887417,-0.31282797,-1.7043628,1.1916486,-1.3294922,0.54817384,0.7633912,2411,test,0.7633912\n-0.6702433,-0.05727693,-0.08727197,0.78272796,1.3343313,-0.79404014,1.0477707,1.049099,1608,test,1.049099\n-1.1632726,0.62236106,-0.40389824,3.5629041,2.3742774,-1.0347594,0.75157666,1.2661936,2231,test,1.2661936\n0.007365092,0.6392877,-0.4002988,3.5491345,2.5653315,-1.4619932,0.5434761,1.324415,368,test,1.324415\n4.052689,-0.25526723,-0.20120727,-0.47841987,1.3573393,-1.2678477,0.6621186,0.81985974,585,test,0.81985974\n-0.9197732,-0.1427755,-0.07783579,1.570779,0.9353771,-0.5011337,0.9990297,1.0915902,2810,test,1.0915902\n-1.9341795,0.1620132,-0.18188702,2.044721,0.9859545,-0.1926427,1.300172,1.2188479,1368,test,1.2188479\n-3.3140335,0.26209065,-0.11097776,2.1854658,1.5699278,-0.1920752,1.3187135,1.1770635,1379,test,1.1770635\n4.5822473,0.5969446,-0.42176062,0.20712017,2.7905896,-2.4098098,0.45239946,0.8994502,2257,test,0.8994502\n-1.7856687,0.2678261,-0.23346242,1.7560089,1.1450632,0.062168077,1.3357549,1.3116946,1398,test,1.3116946\n0.23989885,-0.28449467,-0.069946304,1.9080436,0.037126273,-0.47631264,0.8478357,1.1756442,1793,test,1.1756442\n-2.2293317,0.354729,-0.2651061,2.436705,1.598669,-0.2181837,1.136333,1.1038407,638,test,1.1038407\n0.53029525,0.28979123,-0.27328634,1.2141451,2.2192183,-0.9009372,0.73794836,1.0218043,1856,test,1.0218043\n-3.4594142,0.1151658,-0.07146817,2.1743472,1.2041581,-0.33659348,1.3983363,1.3445934,708,test,1.3445934\n-3.470507,0.121748224,-0.065199874,2.292003,1.3154504,-0.30152842,1.3080857,1.284301,498,test,1.284301\n-2.339851,0.34019345,-0.23942529,2.2848132,1.5285928,-0.14405586,1.2008793,1.1588665,1741,test,1.1588665\n-1.5938685,0.45706636,-0.342081,2.5067697,1.8011671,-0.4680354,1.0183984,1.2469534,1868,test,1.2469534\n1.3960967,0.36451837,-0.31275222,1.3098035,2.3588316,-1.2880741,0.57946706,0.9413707,2135,test,0.9413707\n2.965472,-0.20069413,-0.17386259,-0.20459493,1.4590636,-1.1281457,0.7456589,1.2532021,1296,test,1.2532021\n0.37199926,0.2962244,-0.27051276,1.582077,2.2150404,-1.0473682,0.6563413,0.8828962,1926,test,0.8828962\n1.8259511,-0.176558,-0.13252498,0.1741075,1.4599214,-1.0761784,0.81123036,1.1011369,2108,test,1.1011369\n-1.7570711,0.11816361,-0.13632108,1.990924,1.8335787,-0.5605392,0.9234884,1.1210222,626,test,1.1210222\n-1.5783595,-0.07450659,-0.08232733,1.5827115,1.2289549,-0.46109605,1.0720929,1.1138817,508,test,1.1138817\n2.5815957,-0.81662035,0.19003117,1.9374235,-1.9939394,-1.3861928,1.0162531,1.7664785,2868,test,1.7664785\n7.8618407,1.0427516,-0.68493783,-4.322189,4.703014,-3.1018531,0.61962646,1.533182,2543,test,1.533182\n5.7404957,-1.0562949,0.2980006,-0.35825235,-2.5275338,-1.742545,1.0421505,1.8449599,1037,test,1.8449599\n1.2559363,-0.09253172,-0.16151616,0.52192324,0.767946,-0.9329261,0.8140654,1.0970875,2802,test,1.0970875\n-3.5129328,0.12979499,-0.07662086,2.2377875,1.2390207,-0.3151583,1.3903706,1.2110356,437,test,1.2110356\n4.207998,-0.9357293,0.23969793,0.9109458,-2.2322845,-1.6070079,1.0054152,1.9243928,913,test,1.9243928\n0.30595204,-0.15797584,-0.084689036,0.77696514,1.3462034,-0.9694576,0.89163446,1.0269257,1717,test,1.0269257\n2.0045872,-0.64676243,0.07105395,2.7736528,-1.9733169,-0.9071534,0.7927764,1.3006661,897,test,1.3006661\n1.5833582,0.25493926,-0.26437402,0.8112622,2.0213356,-1.29466,0.6278679,1.1252123,651,test,1.1252123\n6.738373,0.72840434,-0.5376187,-1.894478,3.35873,-2.80734,0.5067304,1.576928,2382,test,1.576928\n4.74073,0.5720211,-0.4185495,0.09893062,2.7296734,-2.4583795,0.43928233,0.49626026,2208,test,0.49626026\n0.57025266,-0.643519,0.13538937,3.2656033,-1.5833999,-1.2223428,1.0356135,1.7971451,791,test,1.7971451\n0.9322759,0.33511114,-0.2945258,1.4694487,2.2703793,-1.2015929,0.59865046,0.8192663,1941,test,0.8192663\n-2.6297193,-0.21405351,0.029410012,3.067368,0.08898033,-0.66685855,1.2642366,1.0113752,1168,test,1.0113752\n-3.5415423,0.21603382,-0.095189445,2.3227441,1.4151787,-0.2338971,1.358269,1.1852893,1430,test,1.1852893\n-0.29397848,-0.09601739,-0.08701008,0.80781615,1.2690474,-0.892784,0.9813668,1.0555601,1540,test,1.0555601\n-0.32269362,0.6893902,-0.4321741,3.652354,2.6387014,-1.2423472,0.6483305,2.0143309,2282,test,2.0143309\n-2.4974694,0.34238973,-0.21927112,2.3117852,1.6854964,-0.24229263,1.1627675,1.1827848,623,test,1.1827848\n3.5658238,-0.82043433,0.1924451,0.50757736,-2.1356096,-0.8829233,1.0473884,1.6897862,1036,test,1.6897862\n-2.1813464,0.060863778,-0.08539385,1.465151,1.5286,-0.42724285,1.1700636,1.0450314,1593,test,1.0450314\n1.7400893,-0.17542797,-0.12888825,0.22413966,1.4533206,-1.0800283,0.81058484,1.1674625,2051,test,1.1674625\n1.7911216,0.381911,-0.31168666,1.6099467,2.3417811,-1.547144,0.44808108,0.9547286,1997,test,0.9547286\n-0.64686507,-0.063927464,-0.086046726,0.7776631,1.3377024,-0.7869245,1.0452261,1.0479863,1486,test,1.0479863\n6.3978233,-1.0213044,0.30785573,-1.871818,-2.6686285,-1.2005548,1.1204748,1.683394,1046,test,1.683394\n-3.2814424,0.21968304,-0.09656627,2.1375854,1.585265,-0.23242019,1.2933464,1.2482041,1476,test,1.2482041\n6.0962877,0.67571634,-0.49232632,-1.1291972,3.1352167,-2.7019768,0.46555114,1.1765889,2364,test,1.1765889\n-2.3836238,0.026554631,-0.08369384,1.8846619,1.4033158,-0.35277134,1.1277516,1.2133379,497,test,1.2133379\n-1.8367138,0.2225097,-0.15732442,1.5288553,1.917895,-0.38149688,1.1160759,1.2088559,1290,test,1.2088559\n2.7201917,0.86318856,-0.58689135,0.81200004,3.7887554,-2.0613756,0.67089885,1.2029058,2395,test,1.2029058\n-1.765295,0.2715819,-0.23723666,1.7640394,1.1469188,0.066695474,1.3336943,1.3319757,1273,test,1.3319757\n-3.2792978,-0.06339279,-0.014087084,2.6915977,0.73296624,-0.512931,1.3504729,1.4151049,2818,test,1.4151049\n2.3513408,0.54265565,-0.3882718,1.8736142,2.679861,-1.9124901,0.43488058,0.7944987,551,test,0.7944987\n2.1180573,-0.105604626,-0.18030597,0.51620406,0.2744127,-0.9901379,0.7390113,1.1566526,2780,test,1.1566526\n-0.13344508,-0.18843283,-0.0941514,1.3661556,0.6384214,-0.56883,0.94087076,1.1286826,69,test,1.1286826\n4.594179,-0.24752475,-0.22397515,-0.7177646,1.3101907,-1.2379875,0.6555949,1.4520586,2278,test,1.4520586\n1.0215586,0.7479457,-0.49116293,2.8572173,3.1572773,-1.7448508,0.58856046,1.2938453,2346,test,1.2938453\n4.207998,-0.9357293,0.23969793,0.9109458,-2.2322845,-1.6070079,1.0054152,1.7280179,910,test,1.7280179\n0.09058881,0.6403146,-0.4036177,3.5254464,2.579681,-1.4842693,0.5403903,1.1360171,348,test,1.1360171\n3.064372,-0.4062382,-0.04941559,1.5672029,-1.7784977,-1.1021764,0.6738247,1.3510847,1075,test,1.3510847\n-2.426723,0.20765646,-0.12627752,1.751118,1.7834994,-0.30450964,1.176837,1.1208996,1632,test,1.1208996\n7.9991207,-1.2184502,0.38380465,-3.2418506,-3.033483,-1.1750633,1.1769029,1.878823,119,test,1.878823\n7.6455355,0.90715134,-0.6422412,-3.4638236,4.3936615,-2.9457052,0.5648255,1.0779711,2493,test,1.0779711\n-2.0476296,0.082940854,-0.09336381,1.4297519,1.6698717,-0.45764965,1.1336391,1.149899,1246,test,1.149899\n-1.77978,0.5101984,-0.34686264,2.875721,1.9999716,-0.63890326,0.9299764,1.1171759,2665,test,1.1171759\n0.8586419,-0.6779132,0.14399692,2.9162583,-1.7033657,-1.046534,1.0602952,1.4993008,438,test,1.4993008\n-1.0492585,-0.48770234,0.12133985,3.7494292,-1.1780472,-1.0116163,1.0656973,1.6685417,1682,test,1.6685417\n-2.1419392,0.33432984,-0.2626587,2.3472214,1.480907,-0.13069096,1.1807944,1.2555395,1732,test,1.2555395\n-1.2016329,-0.4643878,0.116747595,3.7393157,-1.1117665,-0.9808976,1.067207,1.4195781,1077,test,1.4195781\n-3.5042,0.12412085,-0.072947994,2.2036307,1.241151,-0.31856927,1.3888654,1.2516469,1428,test,1.2516469\n-2.0079634,-0.3442678,0.08036011,3.5621479,-0.6231293,-0.836782,1.1613281,1.4395173,1000,test,1.4395173\n-1.5594873,0.1989936,-0.16563511,1.5266477,1.9179333,-0.4424879,1.0413746,1.1734486,1278,test,1.1734486\n-0.20308624,-0.57263565,0.117951095,3.4591892,-1.531805,-0.7532652,1.0729526,1.4238505,312,test,1.4238505\n0.11773061,-0.159478,-0.114003904,1.0960264,0.66995627,-0.6649096,0.9417588,1.073533,86,test,1.073533\n-3.366107,-0.012330055,-0.040781233,2.5275304,0.8686916,-0.44399354,1.3902651,1.218137,2756,test,1.218137\n-1.1685146,0.5982491,-0.39908046,3.3391547,2.3099184,-1.0011914,0.79295695,1.2807983,2091,test,1.2807983\n-3.3531265,0.21436071,-0.088407606,2.1627789,1.5737443,-0.23561107,1.2918366,1.1280822,1536,test,1.1280822\n0.7659771,0.3077798,-0.28636864,1.2129595,2.243625,-0.98914623,0.70124835,1.0514375,2067,test,1.0514375\n-2.0598416,0.3765155,-0.2848203,2.4649377,1.6590375,-0.32405028,1.0887748,1.2224746,1850,test,1.2224746\n-0.31309327,-0.09126423,-0.08809314,0.80926645,1.270243,-0.8966226,0.9834547,1.0360628,1582,test,1.0360628\n-2.4601452,-0.27376598,0.06151769,3.4713283,-0.3291841,-0.6914083,1.2034265,1.3624208,72,test,1.3624208\n-0.60945,0.70806587,-0.4351411,3.908365,2.579586,-1.207901,0.6619092,1.1858729,363,test,1.1858729\n2.4510314,-0.5481621,0.030849764,2.515621,-2.1406481,-1.071882,0.73482996,1.3283515,158,test,1.3283515\n0.54566216,-0.35544923,-0.049487296,2.1887085,-0.42697638,-0.48018536,0.79386806,1.1915723,286,test,1.1915723\n0.9503102,0.42487597,-0.32738054,1.9146824,2.4716494,-1.4151264,0.54780805,0.9178034,1947,test,0.9178034\n5.3209476,-1.0166922,0.2791182,0.0053502815,-2.4377635,-1.7087307,1.0329864,1.926158,1157,test,1.926158\n7.9499846,0.8423967,-0.54917055,-5.285638,3.065211,-2.9328425,0.6920966,1.0656629,419,test,1.0656629\n-1.7969818,0.5184744,-0.35314426,3.1027057,1.9664171,-0.6662762,0.9106048,1.0990014,1927,test,1.0990014\n-1.0254292,-0.14877334,-0.07576497,1.7120444,0.93045396,-0.47576427,0.9915192,1.1167309,2763,test,1.1167309\n-1.7666715,-0.05892077,-0.08329386,1.7574528,1.2273239,-0.39737076,1.070319,1.1213374,454,test,1.1213374\n-0.6801507,-0.054604642,-0.08834214,0.79563516,1.333091,-0.79665333,1.0455056,1.0319701,1523,test,1.0319701\n-0.060558096,0.71489865,-0.45272613,3.6141148,2.7723136,-1.3591547,0.63056195,1.5254636,2258,test,1.5254636\n-1.3957673,0.034100734,-0.17174652,1.8160652,0.62442905,-0.2544462,1.3463471,1.3932834,2812,test,1.3932834\n-2.3589675,0.2058215,-0.1287607,1.7393199,1.7780682,-0.31760594,1.1630303,1.1913877,1651,test,1.1913877\n-3.1553812,-0.10285737,-0.022651296,2.775623,0.7988348,-0.4672302,1.260474,1.0507507,729,test,1.0507507\n-0.10309252,0.7237445,-0.45858642,3.5767043,2.7663054,-1.303432,0.65472156,1.26256,2256,test,1.26256\n1.2021902,-0.44648728,-0.029589213,2.3989754,-0.9511975,-0.6090868,0.7517904,1.3137944,912,test,1.3137944\n-3.1583745,0.0025850341,-0.06636156,2.4701092,0.8431177,-0.39777648,1.3880411,1.0936893,731,test,1.0936893\n-1.90575,0.371148,-0.29329526,2.3707526,1.5771245,-0.25776035,1.1169008,1.1607194,1807,test,1.1607194\n2.7581596,0.48755556,-0.36888397,1.5184796,2.5510557,-1.9285021,0.40148795,1.4687736,2242,test,1.4687736\n8.3626175,-1.3193228,0.43221372,-2.9717257,-3.1647604,-1.5210665,1.1719073,1.181601,63,test,1.181601\n-0.21786913,-0.4937483,0.049337182,3.1733522,-1.313643,-0.30326882,1.0399777,1.3998721,890,test,1.3998721\n-1.9910918,0.21886775,-0.15070212,1.5949202,1.8874923,-0.36919525,1.1297705,1.0298252,1640,test,1.0298252\n-1.1289968,-0.4779178,0.121221505,3.7579107,-1.1726943,-0.9918479,1.0743814,1.355988,1679,test,1.355988\n-2.0442038,0.2519094,-0.2220621,2.044506,1.2019273,-0.050110724,1.2896461,1.3798695,1475,test,1.3798695\n-1.857001,0.2068051,-0.14875387,1.5012008,1.8903966,-0.36906698,1.1229228,1.3695028,412,test,1.3695028\n-2.9810922,0.19305779,-0.12855268,2.2226996,1.2454169,-0.24252063,1.3552812,1.4144815,678,test,1.4144815\n-1.760134,0.31922507,-0.28776544,2.2460833,1.3488415,-0.03917296,1.1943713,1.3101004,1798,test,1.3101004\n-2.1619313,0.052688114,-0.08422974,1.4625574,1.4984623,-0.42837408,1.1687508,1.1027783,1377,test,1.1027783\n0.36401865,-0.63471675,0.13470612,3.4635344,-1.5819211,-1.1965618,1.0264964,1.4626118,201,test,1.4626118\n-1.1605916,0.15521213,-0.14406206,1.5235647,1.830133,-0.7266373,0.95533854,1.2664618,2682,test,1.2664618\n-1.9452896,0.010759846,-0.08320118,1.4255614,1.4019244,-0.43743685,1.1437963,1.0487564,1403,test,1.0487564\n-3.39664,0.05677356,-0.05644977,2.3364697,1.1596091,-0.36497697,1.3199697,1.3082653,528,test,1.3082653\n-0.025668537,-0.24509299,-0.07103547,1.7359693,0.29985845,-0.4815716,0.886305,1.087026,2856,test,1.087026\n-3.4310608,0.14421336,-0.09013496,2.2924643,1.2102146,-0.30185893,1.3931226,1.2821532,1443,test,1.2821532\n3.0940552,0.40746108,-0.3428203,1.0397779,2.234261,-2.2957249,0.34618977,0.47573125,386,test,0.47573125\n0.8060256,0.31090185,-0.2882096,1.1980351,2.2477689,-0.9990086,0.69885445,1.0439019,2112,test,1.0439019\n1.7082113,0.37514046,-0.30825862,1.6065495,2.3188457,-1.5177138,0.4566991,0.9656787,1949,test,0.9656787\n7.8631616,-1.1519933,0.36155137,-3.3018792,-2.9355977,-1.210311,1.1788864,1.2968836,144,test,1.2968836\n-0.13024265,-0.121907584,-0.083830364,0.8177675,1.2725273,-0.8989073,0.95359516,1.0463398,1685,test,1.0463398\n4.833784,-0.9864104,0.2685333,0.41876575,-2.370492,-1.6830763,1.0143278,1.7552671,967,test,1.7552671\n-1.4113561,0.19357707,-0.1746869,1.5575762,1.9542041,-0.49409893,0.9968136,1.0777618,1744,test,1.0777618\n-2.4480908,-0.26911968,0.0581807,3.3969686,-0.27680513,-0.7147208,1.2174559,1.1157829,1724,test,1.1157829\n4.8068542,-0.98646295,0.18253276,1.0599153,-2.8820603,-1.3360753,0.7538983,0.9188739,137,test,0.9188739\n1.6037058,-0.5834065,0.03646456,3.0300007,-1.8061697,-0.73866373,0.7393231,1.4709952,1034,test,1.4709952\n-1.3343335,0.16377781,-0.17161947,1.5651368,1.9250934,-0.5205946,0.96937406,0.9883469,601,test,0.9883469\n"
  },
  {
    "path": "doc/Makefile",
    "content": "# Minimal makefile for Sphinx documentation\n#\n\n# You can set these variables from the command line, and also\n# from the environment for the first two.\nSPHINXOPTS    ?=\nSPHINXBUILD   ?= sphinx-build\nSOURCEDIR     = source\nBUILDDIR      = build\n\n# Put it first so that \"make\" without argument is like \"make help\".\nhelp:\n\t@$(SPHINXBUILD) -M help \"$(SOURCEDIR)\" \"$(BUILDDIR)\" $(SPHINXOPTS) $(O)\n\n.PHONY: help Makefile\n\n# Catch-all target: route all unknown targets to Sphinx using the new\n# \"make mode\" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).\n%: Makefile\n\t@$(SPHINXBUILD) -M $@ \"$(SOURCEDIR)\" \"$(BUILDDIR)\" $(SPHINXOPTS) $(O)\n"
  },
  {
    "path": "doc/build/html/.buildinfo",
    "content": "# Sphinx build info version 1\n# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.\nconfig: bd1b3cf4d58d87feb29fdb0350936018\ntags: 645f666f9bcd5a90fca523b33c5a78b7\n"
  },
  {
    "path": "doc/build/html/_sources/index.rst.txt",
    "content": ".. GNNWR documentation master file, created by\n   sphinx-quickstart on Sat Sep 16 22:25:09 2023.\n   You can adapt this file completely to your liking, but it should at least\n   contain the root `toctree` directive.\n\nWelcome to GNNWR's documentation!\n=================================\n\n.. toctree::\n   :maxdepth: 3\n   :caption: Contents:\n   :glob:\n   \n   gnnwr/*\n\nIndices and tables\n==================\n\n* :ref:`genindex`\n* :ref:`modindex`\n* :ref:`search`\n"
  },
  {
    "path": "doc/build/html/_static/_sphinx_javascript_frameworks_compat.js",
    "content": "/* Compatability shim for jQuery and underscores.js.\n *\n * Copyright Sphinx contributors\n * Released under the two clause BSD licence\n */\n\n/**\n * small helper function to urldecode strings\n *\n * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL\n */\njQuery.urldecode = function(x) {\n    if (!x) {\n        return x\n    }\n    return decodeURIComponent(x.replace(/\\+/g, ' '));\n};\n\n/**\n * small helper function to urlencode strings\n */\njQuery.urlencode = encodeURIComponent;\n\n/**\n * This function returns the parsed url parameters of the\n * current request. Multiple values per key are supported,\n * it will always return arrays of strings for the value parts.\n */\njQuery.getQueryParameters = function(s) {\n    if (typeof s === 'undefined')\n        s = document.location.search;\n    var parts = s.substr(s.indexOf('?') + 1).split('&');\n    var result = {};\n    for (var i = 0; i < parts.length; i++) {\n        var tmp = parts[i].split('=', 2);\n        var key = jQuery.urldecode(tmp[0]);\n        var value = jQuery.urldecode(tmp[1]);\n        if (key in result)\n            result[key].push(value);\n        else\n            result[key] = [value];\n    }\n    return result;\n};\n\n/**\n * highlight a given string on a jquery object by wrapping it in\n * span elements with the given class name.\n */\njQuery.fn.highlightText = function(text, className) {\n    function highlight(node, addItems) {\n        if (node.nodeType === 3) {\n            var val = node.nodeValue;\n            var pos = val.toLowerCase().indexOf(text);\n            if (pos >= 0 &&\n                !jQuery(node.parentNode).hasClass(className) &&\n                !jQuery(node.parentNode).hasClass(\"nohighlight\")) {\n                var span;\n                var isInSVG = jQuery(node).closest(\"body, svg, foreignObject\").is(\"svg\");\n                if (isInSVG) {\n                    span = document.createElementNS(\"http://www.w3.org/2000/svg\", \"tspan\");\n                } else {\n                    span = document.createElement(\"span\");\n                    span.className = className;\n                }\n                span.appendChild(document.createTextNode(val.substr(pos, text.length)));\n                node.parentNode.insertBefore(span, node.parentNode.insertBefore(\n                    document.createTextNode(val.substr(pos + text.length)),\n                    node.nextSibling));\n                node.nodeValue = val.substr(0, pos);\n                if (isInSVG) {\n                    var rect = document.createElementNS(\"http://www.w3.org/2000/svg\", \"rect\");\n                    var bbox = node.parentElement.getBBox();\n                    rect.x.baseVal.value = bbox.x;\n                    rect.y.baseVal.value = bbox.y;\n                    rect.width.baseVal.value = bbox.width;\n                    rect.height.baseVal.value = bbox.height;\n                    rect.setAttribute('class', className);\n                    addItems.push({\n                        \"parent\": node.parentNode,\n                        \"target\": rect});\n                }\n            }\n        }\n        else if (!jQuery(node).is(\"button, select, textarea\")) {\n            jQuery.each(node.childNodes, function() {\n                highlight(this, addItems);\n            });\n        }\n    }\n    var addItems = [];\n    var result = this.each(function() {\n        highlight(this, addItems);\n    });\n    for (var i = 0; i < addItems.length; ++i) {\n        jQuery(addItems[i].parent).before(addItems[i].target);\n    }\n    return result;\n};\n\n/*\n * backward compatibility for jQuery.browser\n * This will be supported until firefox bug is fixed.\n */\nif (!jQuery.browser) {\n    jQuery.uaMatch = function(ua) {\n        ua = ua.toLowerCase();\n\n        var match = /(chrome)[ \\/]([\\w.]+)/.exec(ua) ||\n            /(webkit)[ \\/]([\\w.]+)/.exec(ua) ||\n            /(opera)(?:.*version|)[ \\/]([\\w.]+)/.exec(ua) ||\n            /(msie) ([\\w.]+)/.exec(ua) ||\n            ua.indexOf(\"compatible\") < 0 && /(mozilla)(?:.*? rv:([\\w.]+)|)/.exec(ua) ||\n            [];\n\n        return {\n            browser: match[ 1 ] || \"\",\n            version: match[ 2 ] || \"0\"\n        };\n    };\n    jQuery.browser = {};\n    jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true;\n}\n"
  },
  {
    "path": "doc/build/html/_static/basic.css",
    "content": "/*\n * basic.css\n * ~~~~~~~~~\n *\n * Sphinx stylesheet -- basic theme.\n *\n * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.\n * :license: BSD, see LICENSE for details.\n *\n */\n\n/* -- main layout ----------------------------------------------------------- */\n\ndiv.clearer {\n    clear: both;\n}\n\ndiv.section::after {\n    display: block;\n    content: '';\n    clear: left;\n}\n\n/* -- relbar ---------------------------------------------------------------- */\n\ndiv.related {\n    width: 100%;\n    font-size: 90%;\n}\n\ndiv.related h3 {\n    display: none;\n}\n\ndiv.related ul {\n    margin: 0;\n    padding: 0 0 0 10px;\n    list-style: none;\n}\n\ndiv.related li {\n    display: inline;\n}\n\ndiv.related li.right {\n    float: right;\n    margin-right: 5px;\n}\n\n/* -- sidebar --------------------------------------------------------------- */\n\ndiv.sphinxsidebarwrapper {\n    padding: 10px 5px 0 10px;\n}\n\ndiv.sphinxsidebar {\n    float: left;\n    width: 230px;\n    margin-left: -100%;\n    font-size: 90%;\n    word-wrap: break-word;\n    overflow-wrap : break-word;\n}\n\ndiv.sphinxsidebar ul {\n    list-style: none;\n}\n\ndiv.sphinxsidebar ul ul,\ndiv.sphinxsidebar ul.want-points {\n    margin-left: 20px;\n    list-style: square;\n}\n\ndiv.sphinxsidebar ul ul {\n    margin-top: 0;\n    margin-bottom: 0;\n}\n\ndiv.sphinxsidebar form {\n    margin-top: 10px;\n}\n\ndiv.sphinxsidebar input {\n    border: 1px solid #98dbcc;\n    font-family: sans-serif;\n    font-size: 1em;\n}\n\ndiv.sphinxsidebar #searchbox form.search {\n    overflow: hidden;\n}\n\ndiv.sphinxsidebar #searchbox input[type=\"text\"] {\n    float: left;\n    width: 80%;\n    padding: 0.25em;\n    box-sizing: border-box;\n}\n\ndiv.sphinxsidebar #searchbox input[type=\"submit\"] {\n    float: left;\n    width: 20%;\n    border-left: none;\n    padding: 0.25em;\n    box-sizing: border-box;\n}\n\n\nimg {\n    border: 0;\n    max-width: 100%;\n}\n\n/* -- search page ----------------------------------------------------------- */\n\nul.search {\n    margin: 10px 0 0 20px;\n    padding: 0;\n}\n\nul.search li {\n    padding: 5px 0 5px 20px;\n    background-image: url(file.png);\n    background-repeat: no-repeat;\n    background-position: 0 7px;\n}\n\nul.search li a {\n    font-weight: bold;\n}\n\nul.search li p.context {\n    color: #888;\n    margin: 2px 0 0 30px;\n    text-align: left;\n}\n\nul.keywordmatches li.goodmatch a {\n    font-weight: bold;\n}\n\n/* -- index page ------------------------------------------------------------ */\n\ntable.contentstable {\n    width: 90%;\n    margin-left: auto;\n    margin-right: auto;\n}\n\ntable.contentstable p.biglink {\n    line-height: 150%;\n}\n\na.biglink {\n    font-size: 1.3em;\n}\n\nspan.linkdescr {\n    font-style: italic;\n    padding-top: 5px;\n    font-size: 90%;\n}\n\n/* -- general index --------------------------------------------------------- */\n\ntable.indextable {\n    width: 100%;\n}\n\ntable.indextable td {\n    text-align: left;\n    vertical-align: top;\n}\n\ntable.indextable ul {\n    margin-top: 0;\n    margin-bottom: 0;\n    list-style-type: none;\n}\n\ntable.indextable > tbody > tr > td > ul {\n    padding-left: 0em;\n}\n\ntable.indextable tr.pcap {\n    height: 10px;\n}\n\ntable.indextable tr.cap {\n    margin-top: 10px;\n    background-color: #f2f2f2;\n}\n\nimg.toggler {\n    margin-right: 3px;\n    margin-top: 3px;\n    cursor: pointer;\n}\n\ndiv.modindex-jumpbox {\n    border-top: 1px solid #ddd;\n    border-bottom: 1px solid #ddd;\n    margin: 1em 0 1em 0;\n    padding: 0.4em;\n}\n\ndiv.genindex-jumpbox {\n    border-top: 1px solid #ddd;\n    border-bottom: 1px solid #ddd;\n    margin: 1em 0 1em 0;\n    padding: 0.4em;\n}\n\n/* -- domain module index --------------------------------------------------- */\n\ntable.modindextable td {\n    padding: 2px;\n    border-collapse: collapse;\n}\n\n/* -- general body styles --------------------------------------------------- */\n\ndiv.body {\n    min-width: 360px;\n    max-width: 800px;\n}\n\ndiv.body p, div.body dd, div.body li, div.body blockquote {\n    -moz-hyphens: auto;\n    -ms-hyphens: auto;\n    -webkit-hyphens: auto;\n    hyphens: auto;\n}\n\na.headerlink {\n    visibility: hidden;\n}\n\na:visited {\n    color: #551A8B;\n}\n\nh1:hover > a.headerlink,\nh2:hover > a.headerlink,\nh3:hover > a.headerlink,\nh4:hover > a.headerlink,\nh5:hover > a.headerlink,\nh6:hover > a.headerlink,\ndt:hover > a.headerlink,\ncaption:hover > a.headerlink,\np.caption:hover > a.headerlink,\ndiv.code-block-caption:hover > a.headerlink {\n    visibility: visible;\n}\n\ndiv.body p.caption {\n    text-align: inherit;\n}\n\ndiv.body td {\n    text-align: left;\n}\n\n.first {\n    margin-top: 0 !important;\n}\n\np.rubric {\n    margin-top: 30px;\n    font-weight: bold;\n}\n\nimg.align-left, figure.align-left, .figure.align-left, object.align-left {\n    clear: left;\n    float: left;\n    margin-right: 1em;\n}\n\nimg.align-right, figure.align-right, .figure.align-right, object.align-right {\n    clear: right;\n    float: right;\n    margin-left: 1em;\n}\n\nimg.align-center, figure.align-center, .figure.align-center, object.align-center {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n\nimg.align-default, figure.align-default, .figure.align-default {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.align-left {\n    text-align: left;\n}\n\n.align-center {\n    text-align: center;\n}\n\n.align-default {\n    text-align: center;\n}\n\n.align-right {\n    text-align: right;\n}\n\n/* -- sidebars -------------------------------------------------------------- */\n\ndiv.sidebar,\naside.sidebar {\n    margin: 0 0 0.5em 1em;\n    border: 1px solid #ddb;\n    padding: 7px;\n    background-color: #ffe;\n    width: 40%;\n    float: right;\n    clear: right;\n    overflow-x: auto;\n}\n\np.sidebar-title {\n    font-weight: bold;\n}\n\nnav.contents,\naside.topic,\ndiv.admonition, div.topic, blockquote {\n    clear: left;\n}\n\n/* -- topics ---------------------------------------------------------------- */\n\nnav.contents,\naside.topic,\ndiv.topic {\n    border: 1px solid #ccc;\n    padding: 7px;\n    margin: 10px 0 10px 0;\n}\n\np.topic-title {\n    font-size: 1.1em;\n    font-weight: bold;\n    margin-top: 10px;\n}\n\n/* -- admonitions ----------------------------------------------------------- */\n\ndiv.admonition {\n    margin-top: 10px;\n    margin-bottom: 10px;\n    padding: 7px;\n}\n\ndiv.admonition dt {\n    font-weight: bold;\n}\n\np.admonition-title {\n    margin: 0px 10px 5px 0px;\n    font-weight: bold;\n}\n\ndiv.body p.centered {\n    text-align: center;\n    margin-top: 25px;\n}\n\n/* -- content of sidebars/topics/admonitions -------------------------------- */\n\ndiv.sidebar > :last-child,\naside.sidebar > :last-child,\nnav.contents > :last-child,\naside.topic > :last-child,\ndiv.topic > :last-child,\ndiv.admonition > :last-child {\n    margin-bottom: 0;\n}\n\ndiv.sidebar::after,\naside.sidebar::after,\nnav.contents::after,\naside.topic::after,\ndiv.topic::after,\ndiv.admonition::after,\nblockquote::after {\n    display: block;\n    content: '';\n    clear: both;\n}\n\n/* -- tables ---------------------------------------------------------------- */\n\ntable.docutils {\n    margin-top: 10px;\n    margin-bottom: 10px;\n    border: 0;\n    border-collapse: collapse;\n}\n\ntable.align-center {\n    margin-left: auto;\n    margin-right: auto;\n}\n\ntable.align-default {\n    margin-left: auto;\n    margin-right: auto;\n}\n\ntable caption span.caption-number {\n    font-style: italic;\n}\n\ntable caption span.caption-text {\n}\n\ntable.docutils td, table.docutils th {\n    padding: 1px 8px 1px 5px;\n    border-top: 0;\n    border-left: 0;\n    border-right: 0;\n    border-bottom: 1px solid #aaa;\n}\n\nth {\n    text-align: left;\n    padding-right: 5px;\n}\n\ntable.citation {\n    border-left: solid 1px gray;\n    margin-left: 1px;\n}\n\ntable.citation td {\n    border-bottom: none;\n}\n\nth > :first-child,\ntd > :first-child {\n    margin-top: 0px;\n}\n\nth > :last-child,\ntd > :last-child {\n    margin-bottom: 0px;\n}\n\n/* -- figures --------------------------------------------------------------- */\n\ndiv.figure, figure {\n    margin: 0.5em;\n    padding: 0.5em;\n}\n\ndiv.figure p.caption, figcaption {\n    padding: 0.3em;\n}\n\ndiv.figure p.caption span.caption-number,\nfigcaption span.caption-number {\n    font-style: italic;\n}\n\ndiv.figure p.caption span.caption-text,\nfigcaption span.caption-text {\n}\n\n/* -- field list styles ----------------------------------------------------- */\n\ntable.field-list td, table.field-list th {\n    border: 0 !important;\n}\n\n.field-list ul {\n    margin: 0;\n    padding-left: 1em;\n}\n\n.field-list p {\n    margin: 0;\n}\n\n.field-name {\n    -moz-hyphens: manual;\n    -ms-hyphens: manual;\n    -webkit-hyphens: manual;\n    hyphens: manual;\n}\n\n/* -- hlist styles ---------------------------------------------------------- */\n\ntable.hlist {\n    margin: 1em 0;\n}\n\ntable.hlist td {\n    vertical-align: top;\n}\n\n/* -- object description styles --------------------------------------------- */\n\n.sig {\n\tfont-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;\n}\n\n.sig-name, code.descname {\n    background-color: transparent;\n    font-weight: bold;\n}\n\n.sig-name {\n\tfont-size: 1.1em;\n}\n\ncode.descname {\n    font-size: 1.2em;\n}\n\n.sig-prename, code.descclassname {\n    background-color: transparent;\n}\n\n.optional {\n    font-size: 1.3em;\n}\n\n.sig-paren {\n    font-size: larger;\n}\n\n.sig-param.n {\n\tfont-style: italic;\n}\n\n/* C++ specific styling */\n\n.sig-inline.c-texpr,\n.sig-inline.cpp-texpr {\n\tfont-family: unset;\n}\n\n.sig.c   .k, .sig.c   .kt,\n.sig.cpp .k, .sig.cpp .kt {\n\tcolor: #0033B3;\n}\n\n.sig.c   .m,\n.sig.cpp .m {\n\tcolor: #1750EB;\n}\n\n.sig.c   .s, .sig.c   .sc,\n.sig.cpp .s, .sig.cpp .sc {\n\tcolor: #067D17;\n}\n\n\n/* -- other body styles ----------------------------------------------------- */\n\nol.arabic {\n    list-style: decimal;\n}\n\nol.loweralpha {\n    list-style: lower-alpha;\n}\n\nol.upperalpha {\n    list-style: upper-alpha;\n}\n\nol.lowerroman {\n    list-style: lower-roman;\n}\n\nol.upperroman {\n    list-style: upper-roman;\n}\n\n:not(li) > ol > li:first-child > :first-child,\n:not(li) > ul > li:first-child > :first-child {\n    margin-top: 0px;\n}\n\n:not(li) > ol > li:last-child > :last-child,\n:not(li) > ul > li:last-child > :last-child {\n    margin-bottom: 0px;\n}\n\nol.simple ol p,\nol.simple ul p,\nul.simple ol p,\nul.simple ul p {\n    margin-top: 0;\n}\n\nol.simple > li:not(:first-child) > p,\nul.simple > li:not(:first-child) > p {\n    margin-top: 0;\n}\n\nol.simple p,\nul.simple p {\n    margin-bottom: 0;\n}\n\naside.footnote > span,\ndiv.citation > span {\n    float: left;\n}\naside.footnote > span:last-of-type,\ndiv.citation > span:last-of-type {\n  padding-right: 0.5em;\n}\naside.footnote > p {\n  margin-left: 2em;\n}\ndiv.citation > p {\n  margin-left: 4em;\n}\naside.footnote > p:last-of-type,\ndiv.citation > p:last-of-type {\n    margin-bottom: 0em;\n}\naside.footnote > p:last-of-type:after,\ndiv.citation > p:last-of-type:after {\n    content: \"\";\n    clear: both;\n}\n\ndl.field-list {\n    display: grid;\n    grid-template-columns: fit-content(30%) auto;\n}\n\ndl.field-list > dt {\n    font-weight: bold;\n    word-break: break-word;\n    padding-left: 0.5em;\n    padding-right: 5px;\n}\n\ndl.field-list > dd {\n    padding-left: 0.5em;\n    margin-top: 0em;\n    margin-left: 0em;\n    margin-bottom: 0em;\n}\n\ndl {\n    margin-bottom: 15px;\n}\n\ndd > :first-child {\n    margin-top: 0px;\n}\n\ndd ul, dd table {\n    margin-bottom: 10px;\n}\n\ndd {\n    margin-top: 3px;\n    margin-bottom: 10px;\n    margin-left: 30px;\n}\n\n.sig dd {\n    margin-top: 0px;\n    margin-bottom: 0px;\n}\n\n.sig dl {\n    margin-top: 0px;\n    margin-bottom: 0px;\n}\n\ndl > dd:last-child,\ndl > dd:last-child > :last-child {\n    margin-bottom: 0;\n}\n\ndt:target, span.highlighted {\n    background-color: #fbe54e;\n}\n\nrect.highlighted {\n    fill: #fbe54e;\n}\n\ndl.glossary dt {\n    font-weight: bold;\n    font-size: 1.1em;\n}\n\n.versionmodified {\n    font-style: italic;\n}\n\n.system-message {\n    background-color: #fda;\n    padding: 5px;\n    border: 3px solid red;\n}\n\n.footnote:target  {\n    background-color: #ffa;\n}\n\n.line-block {\n    display: block;\n    margin-top: 1em;\n    margin-bottom: 1em;\n}\n\n.line-block .line-block {\n    margin-top: 0;\n    margin-bottom: 0;\n    margin-left: 1.5em;\n}\n\n.guilabel, .menuselection {\n    font-family: sans-serif;\n}\n\n.accelerator {\n    text-decoration: underline;\n}\n\n.classifier {\n    font-style: oblique;\n}\n\n.classifier:before {\n    font-style: normal;\n    margin: 0 0.5em;\n    content: \":\";\n    display: inline-block;\n}\n\nabbr, acronym {\n    border-bottom: dotted 1px;\n    cursor: help;\n}\n\n.translated {\n    background-color: rgba(207, 255, 207, 0.2)\n}\n\n.untranslated {\n    background-color: rgba(255, 207, 207, 0.2)\n}\n\n/* -- code displays --------------------------------------------------------- */\n\npre {\n    overflow: auto;\n    overflow-y: hidden;  /* fixes display issues on Chrome browsers */\n}\n\npre, div[class*=\"highlight-\"] {\n    clear: both;\n}\n\nspan.pre {\n    -moz-hyphens: none;\n    -ms-hyphens: none;\n    -webkit-hyphens: none;\n    hyphens: none;\n    white-space: nowrap;\n}\n\ndiv[class*=\"highlight-\"] {\n    margin: 1em 0;\n}\n\ntd.linenos pre {\n    border: 0;\n    background-color: transparent;\n    color: #aaa;\n}\n\ntable.highlighttable {\n    display: block;\n}\n\ntable.highlighttable tbody {\n    display: block;\n}\n\ntable.highlighttable tr {\n    display: flex;\n}\n\ntable.highlighttable td {\n    margin: 0;\n    padding: 0;\n}\n\ntable.highlighttable td.linenos {\n    padding-right: 0.5em;\n}\n\ntable.highlighttable td.code {\n    flex: 1;\n    overflow: hidden;\n}\n\n.highlight .hll {\n    display: block;\n}\n\ndiv.highlight pre,\ntable.highlighttable pre {\n    margin: 0;\n}\n\ndiv.code-block-caption + div {\n    margin-top: 0;\n}\n\ndiv.code-block-caption {\n    margin-top: 1em;\n    padding: 2px 5px;\n    font-size: small;\n}\n\ndiv.code-block-caption code {\n    background-color: transparent;\n}\n\ntable.highlighttable td.linenos,\nspan.linenos,\ndiv.highlight span.gp {  /* gp: Generic.Prompt */\n  user-select: none;\n  -webkit-user-select: text; /* Safari fallback only */\n  -webkit-user-select: none; /* Chrome/Safari */\n  -moz-user-select: none; /* Firefox */\n  -ms-user-select: none; /* IE10+ */\n}\n\ndiv.code-block-caption span.caption-number {\n    padding: 0.1em 0.3em;\n    font-style: italic;\n}\n\ndiv.code-block-caption span.caption-text {\n}\n\ndiv.literal-block-wrapper {\n    margin: 1em 0;\n}\n\ncode.xref, a code {\n    background-color: transparent;\n    font-weight: bold;\n}\n\nh1 code, h2 code, h3 code, h4 code, h5 code, h6 code {\n    background-color: transparent;\n}\n\n.viewcode-link {\n    float: right;\n}\n\n.viewcode-back {\n    float: right;\n    font-family: sans-serif;\n}\n\ndiv.viewcode-block:target {\n    margin: -1px -10px;\n    padding: 0 10px;\n}\n\n/* -- math display ---------------------------------------------------------- */\n\nimg.math {\n    vertical-align: middle;\n}\n\ndiv.body div.math p {\n    text-align: center;\n}\n\nspan.eqno {\n    float: right;\n}\n\nspan.eqno a.headerlink {\n    position: absolute;\n    z-index: 1;\n}\n\ndiv.math:hover a.headerlink {\n    visibility: visible;\n}\n\n/* -- printout stylesheet --------------------------------------------------- */\n\n@media print {\n    div.document,\n    div.documentwrapper,\n    div.bodywrapper {\n        margin: 0 !important;\n        width: 100%;\n    }\n\n    div.sphinxsidebar,\n    div.related,\n    div.footer,\n    #top-link {\n        display: none;\n    }\n}"
  },
  {
    "path": "doc/build/html/_static/css/badge_only.css",
    "content": ".clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:\"\"}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-style:normal;font-weight:400;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix) format(\"embedded-opentype\"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format(\"woff2\"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format(\"woff\"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format(\"truetype\"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#FontAwesome) format(\"svg\")}.fa:before{font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1}.fa:before,a .fa{text-decoration:inherit}.fa:before,a .fa,li .fa{display:inline-block}li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-.8em}ul.fas li .fa{width:.8em}ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before,.icon-book:before{content:\"\\f02d\"}.fa-caret-down:before,.icon-caret-down:before{content:\"\\f0d7\"}.fa-caret-up:before,.icon-caret-up:before{content:\"\\f0d8\"}.fa-caret-left:before,.icon-caret-left:before{content:\"\\f0d9\"}.fa-caret-right:before,.icon-caret-right:before{content:\"\\f0da\"}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60}.rst-versions .rst-current-version:after{clear:both;content:\"\";display:block}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}"
  },
  {
    "path": "doc/build/html/_static/css/theme.css",
    "content": "html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden],audio:not([controls]){display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}blockquote{margin:0}dfn{font-style:italic}ins{background:#ff9;text-decoration:none}ins,mark{color:#000}mark{background:#ff0;font-style:italic;font-weight:700}.rst-content code,.rst-content tt,code,kbd,pre,samp{font-family:monospace,serif;_font-family:courier new,monospace;font-size:1em}pre{white-space:pre}q{quotes:none}q:after,q:before{content:\"\";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dl,ol,ul{margin:0;padding:0;list-style:none;list-style-image:none}li{list-style:none}dd{margin:0}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure,form{margin:0}label{cursor:pointer}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}.ir{display:block;border:0;text-indent:-999em;overflow:hidden;background-color:transparent;background-repeat:no-repeat;text-align:left;direction:ltr;*line-height:0}.ir br{display:none}.hidden{display:none!important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}big,small{font-size:100%}@media print{body,html,section{background:none!important}*{box-shadow:none!important;text-shadow:none!important;filter:none!important;-ms-filter:none!important}a,a:visited{text-decoration:underline}.ir a:after,a[href^=\"#\"]:after,a[href^=\"javascript:\"]:after{content:\"\"}blockquote,pre{page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}.rst-content .toctree-wrapper>p.caption,h2,h3,p{orphans:3;widows:3}.rst-content .toctree-wrapper>p.caption,h2,h3{page-break-after:avoid}}.btn,.fa:before,.icon:before,.rst-content .admonition,.rst-content .admonition-title:before,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .code-block-caption .headerlink:before,.rst-content .danger,.rst-content .eqno .headerlink:before,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content p .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-alert,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before,.wy-menu-vertical li button.toctree-expand:before,input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:\"\"}.clearfix:after{clear:both}/*!\n *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */@font-face{font-family:FontAwesome;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format(\"embedded-opentype\"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format(\"woff2\"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format(\"woff\"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format(\"truetype\"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format(\"svg\");font-weight:400;font-style:normal}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li button.toctree-expand{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa-pull-left.icon,.fa.fa-pull-left,.rst-content .code-block-caption .fa-pull-left.headerlink,.rst-content .eqno .fa-pull-left.headerlink,.rst-content .fa-pull-left.admonition-title,.rst-content code.download span.fa-pull-left:first-child,.rst-content dl dt .fa-pull-left.headerlink,.rst-content h1 .fa-pull-left.headerlink,.rst-content h2 .fa-pull-left.headerlink,.rst-content h3 .fa-pull-left.headerlink,.rst-content h4 .fa-pull-left.headerlink,.rst-content h5 .fa-pull-left.headerlink,.rst-content h6 .fa-pull-left.headerlink,.rst-content p .fa-pull-left.headerlink,.rst-content table>caption .fa-pull-left.headerlink,.rst-content tt.download span.fa-pull-left:first-child,.wy-menu-vertical li.current>a button.fa-pull-left.toctree-expand,.wy-menu-vertical li.on a button.fa-pull-left.toctree-expand,.wy-menu-vertical li button.fa-pull-left.toctree-expand{margin-right:.3em}.fa-pull-right.icon,.fa.fa-pull-right,.rst-content .code-block-caption .fa-pull-right.headerlink,.rst-content .eqno .fa-pull-right.headerlink,.rst-content .fa-pull-right.admonition-title,.rst-content code.download span.fa-pull-right:first-child,.rst-content dl dt .fa-pull-right.headerlink,.rst-content h1 .fa-pull-right.headerlink,.rst-content h2 .fa-pull-right.headerlink,.rst-content h3 .fa-pull-right.headerlink,.rst-content h4 .fa-pull-right.headerlink,.rst-content h5 .fa-pull-right.headerlink,.rst-content h6 .fa-pull-right.headerlink,.rst-content p .fa-pull-right.headerlink,.rst-content table>caption .fa-pull-right.headerlink,.rst-content tt.download span.fa-pull-right:first-child,.wy-menu-vertical li.current>a button.fa-pull-right.toctree-expand,.wy-menu-vertical li.on a button.fa-pull-right.toctree-expand,.wy-menu-vertical li button.fa-pull-right.toctree-expand{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.pull-left.icon,.rst-content .code-block-caption .pull-left.headerlink,.rst-content .eqno .pull-left.headerlink,.rst-content .pull-left.admonition-title,.rst-content code.download span.pull-left:first-child,.rst-content dl dt .pull-left.headerlink,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content p .pull-left.headerlink,.rst-content table>caption .pull-left.headerlink,.rst-content tt.download span.pull-left:first-child,.wy-menu-vertical li.current>a button.pull-left.toctree-expand,.wy-menu-vertical li.on a button.pull-left.toctree-expand,.wy-menu-vertical li button.pull-left.toctree-expand{margin-right:.3em}.fa.pull-right,.pull-right.icon,.rst-content .code-block-caption .pull-right.headerlink,.rst-content .eqno .pull-right.headerlink,.rst-content .pull-right.admonition-title,.rst-content code.download span.pull-right:first-child,.rst-content dl dt .pull-right.headerlink,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content p .pull-right.headerlink,.rst-content table>caption .pull-right.headerlink,.rst-content tt.download span.pull-right:first-child,.wy-menu-vertical li.current>a button.pull-right.toctree-expand,.wy-menu-vertical li.on a button.pull-right.toctree-expand,.wy-menu-vertical li button.pull-right.toctree-expand{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";-webkit-transform:scaleY(-1);-ms-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:\"\"}.fa-music:before{content:\"\"}.fa-search:before,.icon-search:before{content:\"\"}.fa-envelope-o:before{content:\"\"}.fa-heart:before{content:\"\"}.fa-star:before{content:\"\"}.fa-star-o:before{content:\"\"}.fa-user:before{content:\"\"}.fa-film:before{content:\"\"}.fa-th-large:before{content:\"\"}.fa-th:before{content:\"\"}.fa-th-list:before{content:\"\"}.fa-check:before{content:\"\"}.fa-close:before,.fa-remove:before,.fa-times:before{content:\"\"}.fa-search-plus:before{content:\"\"}.fa-search-minus:before{content:\"\"}.fa-power-off:before{content:\"\"}.fa-signal:before{content:\"\"}.fa-cog:before,.fa-gear:before{content:\"\"}.fa-trash-o:before{content:\"\"}.fa-home:before,.icon-home:before{content:\"\"}.fa-file-o:before{content:\"\"}.fa-clock-o:before{content:\"\"}.fa-road:before{content:\"\"}.fa-download:before,.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{content:\"\"}.fa-arrow-circle-o-down:before{content:\"\"}.fa-arrow-circle-o-up:before{content:\"\"}.fa-inbox:before{content:\"\"}.fa-play-circle-o:before{content:\"\"}.fa-repeat:before,.fa-rotate-right:before{content:\"\"}.fa-refresh:before{content:\"\"}.fa-list-alt:before{content:\"\"}.fa-lock:before{content:\"\"}.fa-flag:before{content:\"\"}.fa-headphones:before{content:\"\"}.fa-volume-off:before{content:\"\"}.fa-volume-down:before{content:\"\"}.fa-volume-up:before{content:\"\"}.fa-qrcode:before{content:\"\"}.fa-barcode:before{content:\"\"}.fa-tag:before{content:\"\"}.fa-tags:before{content:\"\"}.fa-book:before,.icon-book:before{content:\"\"}.fa-bookmark:before{content:\"\"}.fa-print:before{content:\"\"}.fa-camera:before{content:\"\"}.fa-font:before{content:\"\"}.fa-bold:before{content:\"\"}.fa-italic:before{content:\"\"}.fa-text-height:before{content:\"\"}.fa-text-width:before{content:\"\"}.fa-align-left:before{content:\"\"}.fa-align-center:before{content:\"\"}.fa-align-right:before{content:\"\"}.fa-align-justify:before{content:\"\"}.fa-list:before{content:\"\"}.fa-dedent:before,.fa-outdent:before{content:\"\"}.fa-indent:before{content:\"\"}.fa-video-camera:before{content:\"\"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:\"\"}.fa-pencil:before{content:\"\"}.fa-map-marker:before{content:\"\"}.fa-adjust:before{content:\"\"}.fa-tint:before{content:\"\"}.fa-edit:before,.fa-pencil-square-o:before{content:\"\"}.fa-share-square-o:before{content:\"\"}.fa-check-square-o:before{content:\"\"}.fa-arrows:before{content:\"\"}.fa-step-backward:before{content:\"\"}.fa-fast-backward:before{content:\"\"}.fa-backward:before{content:\"\"}.fa-play:before{content:\"\"}.fa-pause:before{content:\"\"}.fa-stop:before{content:\"\"}.fa-forward:before{content:\"\"}.fa-fast-forward:before{content:\"\"}.fa-step-forward:before{content:\"\"}.fa-eject:before{content:\"\"}.fa-chevron-left:before{content:\"\"}.fa-chevron-right:before{content:\"\"}.fa-plus-circle:before{content:\"\"}.fa-minus-circle:before{content:\"\"}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:\"\"}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:\"\"}.fa-question-circle:before{content:\"\"}.fa-info-circle:before{content:\"\"}.fa-crosshairs:before{content:\"\"}.fa-times-circle-o:before{content:\"\"}.fa-check-circle-o:before{content:\"\"}.fa-ban:before{content:\"\"}.fa-arrow-left:before{content:\"\"}.fa-arrow-right:before{content:\"\"}.fa-arrow-up:before{content:\"\"}.fa-arrow-down:before{content:\"\"}.fa-mail-forward:before,.fa-share:before{content:\"\"}.fa-expand:before{content:\"\"}.fa-compress:before{content:\"\"}.fa-plus:before{content:\"\"}.fa-minus:before{content:\"\"}.fa-asterisk:before{content:\"\"}.fa-exclamation-circle:before,.rst-content .admonition-title:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before{content:\"\"}.fa-gift:before{content:\"\"}.fa-leaf:before{content:\"\"}.fa-fire:before,.icon-fire:before{content:\"\"}.fa-eye:before{content:\"\"}.fa-eye-slash:before{content:\"\"}.fa-exclamation-triangle:before,.fa-warning:before{content:\"\"}.fa-plane:before{content:\"\"}.fa-calendar:before{content:\"\"}.fa-random:before{content:\"\"}.fa-comment:before{content:\"\"}.fa-magnet:before{content:\"\"}.fa-chevron-up:before{content:\"\"}.fa-chevron-down:before{content:\"\"}.fa-retweet:before{content:\"\"}.fa-shopping-cart:before{content:\"\"}.fa-folder:before{content:\"\"}.fa-folder-open:before{content:\"\"}.fa-arrows-v:before{content:\"\"}.fa-arrows-h:before{content:\"\"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:\"\"}.fa-twitter-square:before{content:\"\"}.fa-facebook-square:before{content:\"\"}.fa-camera-retro:before{content:\"\"}.fa-key:before{content:\"\"}.fa-cogs:before,.fa-gears:before{content:\"\"}.fa-comments:before{content:\"\"}.fa-thumbs-o-up:before{content:\"\"}.fa-thumbs-o-down:before{content:\"\"}.fa-star-half:before{content:\"\"}.fa-heart-o:before{content:\"\"}.fa-sign-out:before{content:\"\"}.fa-linkedin-square:before{content:\"\"}.fa-thumb-tack:before{content:\"\"}.fa-external-link:before{content:\"\"}.fa-sign-in:before{content:\"\"}.fa-trophy:before{content:\"\"}.fa-github-square:before{content:\"\"}.fa-upload:before{content:\"\"}.fa-lemon-o:before{content:\"\"}.fa-phone:before{content:\"\"}.fa-square-o:before{content:\"\"}.fa-bookmark-o:before{content:\"\"}.fa-phone-square:before{content:\"\"}.fa-twitter:before{content:\"\"}.fa-facebook-f:before,.fa-facebook:before{content:\"\"}.fa-github:before,.icon-github:before{content:\"\"}.fa-unlock:before{content:\"\"}.fa-credit-card:before{content:\"\"}.fa-feed:before,.fa-rss:before{content:\"\"}.fa-hdd-o:before{content:\"\"}.fa-bullhorn:before{content:\"\"}.fa-bell:before{content:\"\"}.fa-certificate:before{content:\"\"}.fa-hand-o-right:before{content:\"\"}.fa-hand-o-left:before{content:\"\"}.fa-hand-o-up:before{content:\"\"}.fa-hand-o-down:before{content:\"\"}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:\"\"}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:\"\"}.fa-arrow-circle-up:before{content:\"\"}.fa-arrow-circle-down:before{content:\"\"}.fa-globe:before{content:\"\"}.fa-wrench:before{content:\"\"}.fa-tasks:before{content:\"\"}.fa-filter:before{content:\"\"}.fa-briefcase:before{content:\"\"}.fa-arrows-alt:before{content:\"\"}.fa-group:before,.fa-users:before{content:\"\"}.fa-chain:before,.fa-link:before,.icon-link:before{content:\"\"}.fa-cloud:before{content:\"\"}.fa-flask:before{content:\"\"}.fa-cut:before,.fa-scissors:before{content:\"\"}.fa-copy:before,.fa-files-o:before{content:\"\"}.fa-paperclip:before{content:\"\"}.fa-floppy-o:before,.fa-save:before{content:\"\"}.fa-square:before{content:\"\"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:\"\"}.fa-list-ul:before{content:\"\"}.fa-list-ol:before{content:\"\"}.fa-strikethrough:before{content:\"\"}.fa-underline:before{content:\"\"}.fa-table:before{content:\"\"}.fa-magic:before{content:\"\"}.fa-truck:before{content:\"\"}.fa-pinterest:before{content:\"\"}.fa-pinterest-square:before{content:\"\"}.fa-google-plus-square:before{content:\"\"}.fa-google-plus:before{content:\"\"}.fa-money:before{content:\"\"}.fa-caret-down:before,.icon-caret-down:before,.wy-dropdown .caret:before{content:\"\"}.fa-caret-up:before{content:\"\"}.fa-caret-left:before{content:\"\"}.fa-caret-right:before{content:\"\"}.fa-columns:before{content:\"\"}.fa-sort:before,.fa-unsorted:before{content:\"\"}.fa-sort-desc:before,.fa-sort-down:before{content:\"\"}.fa-sort-asc:before,.fa-sort-up:before{content:\"\"}.fa-envelope:before{content:\"\"}.fa-linkedin:before{content:\"\"}.fa-rotate-left:before,.fa-undo:before{content:\"\"}.fa-gavel:before,.fa-legal:before{content:\"\"}.fa-dashboard:before,.fa-tachometer:before{content:\"\"}.fa-comment-o:before{content:\"\"}.fa-comments-o:before{content:\"\"}.fa-bolt:before,.fa-flash:before{content:\"\"}.fa-sitemap:before{content:\"\"}.fa-umbrella:before{content:\"\"}.fa-clipboard:before,.fa-paste:before{content:\"\"}.fa-lightbulb-o:before{content:\"\"}.fa-exchange:before{content:\"\"}.fa-cloud-download:before{content:\"\"}.fa-cloud-upload:before{content:\"\"}.fa-user-md:before{content:\"\"}.fa-stethoscope:before{content:\"\"}.fa-suitcase:before{content:\"\"}.fa-bell-o:before{content:\"\"}.fa-coffee:before{content:\"\"}.fa-cutlery:before{content:\"\"}.fa-file-text-o:before{content:\"\"}.fa-building-o:before{content:\"\"}.fa-hospital-o:before{content:\"\"}.fa-ambulance:before{content:\"\"}.fa-medkit:before{content:\"\"}.fa-fighter-jet:before{content:\"\"}.fa-beer:before{content:\"\"}.fa-h-square:before{content:\"\"}.fa-plus-square:before{content:\"\"}.fa-angle-double-left:before{content:\"\"}.fa-angle-double-right:before{content:\"\"}.fa-angle-double-up:before{content:\"\"}.fa-angle-double-down:before{content:\"\"}.fa-angle-left:before{content:\"\"}.fa-angle-right:before{content:\"\"}.fa-angle-up:before{content:\"\"}.fa-angle-down:before{content:\"\"}.fa-desktop:before{content:\"\"}.fa-laptop:before{content:\"\"}.fa-tablet:before{content:\"\"}.fa-mobile-phone:before,.fa-mobile:before{content:\"\"}.fa-circle-o:before{content:\"\"}.fa-quote-left:before{content:\"\"}.fa-quote-right:before{content:\"\"}.fa-spinner:before{content:\"\"}.fa-circle:before{content:\"\"}.fa-mail-reply:before,.fa-reply:before{content:\"\"}.fa-github-alt:before{content:\"\"}.fa-folder-o:before{content:\"\"}.fa-folder-open-o:before{content:\"\"}.fa-smile-o:before{content:\"\"}.fa-frown-o:before{content:\"\"}.fa-meh-o:before{content:\"\"}.fa-gamepad:before{content:\"\"}.fa-keyboard-o:before{content:\"\"}.fa-flag-o:before{content:\"\"}.fa-flag-checkered:before{content:\"\"}.fa-terminal:before{content:\"\"}.fa-code:before{content:\"\"}.fa-mail-reply-all:before,.fa-reply-all:before{content:\"\"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:\"\"}.fa-location-arrow:before{content:\"\"}.fa-crop:before{content:\"\"}.fa-code-fork:before{content:\"\"}.fa-chain-broken:before,.fa-unlink:before{content:\"\"}.fa-question:before{content:\"\"}.fa-info:before{content:\"\"}.fa-exclamation:before{content:\"\"}.fa-superscript:before{content:\"\"}.fa-subscript:before{content:\"\"}.fa-eraser:before{content:\"\"}.fa-puzzle-piece:before{content:\"\"}.fa-microphone:before{content:\"\"}.fa-microphone-slash:before{content:\"\"}.fa-shield:before{content:\"\"}.fa-calendar-o:before{content:\"\"}.fa-fire-extinguisher:before{content:\"\"}.fa-rocket:before{content:\"\"}.fa-maxcdn:before{content:\"\"}.fa-chevron-circle-left:before{content:\"\"}.fa-chevron-circle-right:before{content:\"\"}.fa-chevron-circle-up:before{content:\"\"}.fa-chevron-circle-down:before{content:\"\"}.fa-html5:before{content:\"\"}.fa-css3:before{content:\"\"}.fa-anchor:before{content:\"\"}.fa-unlock-alt:before{content:\"\"}.fa-bullseye:before{content:\"\"}.fa-ellipsis-h:before{content:\"\"}.fa-ellipsis-v:before{content:\"\"}.fa-rss-square:before{content:\"\"}.fa-play-circle:before{content:\"\"}.fa-ticket:before{content:\"\"}.fa-minus-square:before{content:\"\"}.fa-minus-square-o:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before{content:\"\"}.fa-level-up:before{content:\"\"}.fa-level-down:before{content:\"\"}.fa-check-square:before{content:\"\"}.fa-pencil-square:before{content:\"\"}.fa-external-link-square:before{content:\"\"}.fa-share-square:before{content:\"\"}.fa-compass:before{content:\"\"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:\"\"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:\"\"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:\"\"}.fa-eur:before,.fa-euro:before{content:\"\"}.fa-gbp:before{content:\"\"}.fa-dollar:before,.fa-usd:before{content:\"\"}.fa-inr:before,.fa-rupee:before{content:\"\"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:\"\"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:\"\"}.fa-krw:before,.fa-won:before{content:\"\"}.fa-bitcoin:before,.fa-btc:before{content:\"\"}.fa-file:before{content:\"\"}.fa-file-text:before{content:\"\"}.fa-sort-alpha-asc:before{content:\"\"}.fa-sort-alpha-desc:before{content:\"\"}.fa-sort-amount-asc:before{content:\"\"}.fa-sort-amount-desc:before{content:\"\"}.fa-sort-numeric-asc:before{content:\"\"}.fa-sort-numeric-desc:before{content:\"\"}.fa-thumbs-up:before{content:\"\"}.fa-thumbs-down:before{content:\"\"}.fa-youtube-square:before{content:\"\"}.fa-youtube:before{content:\"\"}.fa-xing:before{content:\"\"}.fa-xing-square:before{content:\"\"}.fa-youtube-play:before{content:\"\"}.fa-dropbox:before{content:\"\"}.fa-stack-overflow:before{content:\"\"}.fa-instagram:before{content:\"\"}.fa-flickr:before{content:\"\"}.fa-adn:before{content:\"\"}.fa-bitbucket:before,.icon-bitbucket:before{content:\"\"}.fa-bitbucket-square:before{content:\"\"}.fa-tumblr:before{content:\"\"}.fa-tumblr-square:before{content:\"\"}.fa-long-arrow-down:before{content:\"\"}.fa-long-arrow-up:before{content:\"\"}.fa-long-arrow-left:before{content:\"\"}.fa-long-arrow-right:before{content:\"\"}.fa-apple:before{content:\"\"}.fa-windows:before{content:\"\"}.fa-android:before{content:\"\"}.fa-linux:before{content:\"\"}.fa-dribbble:before{content:\"\"}.fa-skype:before{content:\"\"}.fa-foursquare:before{content:\"\"}.fa-trello:before{content:\"\"}.fa-female:before{content:\"\"}.fa-male:before{content:\"\"}.fa-gittip:before,.fa-gratipay:before{content:\"\"}.fa-sun-o:before{content:\"\"}.fa-moon-o:before{content:\"\"}.fa-archive:before{content:\"\"}.fa-bug:before{content:\"\"}.fa-vk:before{content:\"\"}.fa-weibo:before{content:\"\"}.fa-renren:before{content:\"\"}.fa-pagelines:before{content:\"\"}.fa-stack-exchange:before{content:\"\"}.fa-arrow-circle-o-right:before{content:\"\"}.fa-arrow-circle-o-left:before{content:\"\"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:\"\"}.fa-dot-circle-o:before{content:\"\"}.fa-wheelchair:before{content:\"\"}.fa-vimeo-square:before{content:\"\"}.fa-try:before,.fa-turkish-lira:before{content:\"\"}.fa-plus-square-o:before,.wy-menu-vertical li button.toctree-expand:before{content:\"\"}.fa-space-shuttle:before{content:\"\"}.fa-slack:before{content:\"\"}.fa-envelope-square:before{content:\"\"}.fa-wordpress:before{content:\"\"}.fa-openid:before{content:\"\"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:\"\"}.fa-graduation-cap:before,.fa-mortar-board:before{content:\"\"}.fa-yahoo:before{content:\"\"}.fa-google:before{content:\"\"}.fa-reddit:before{content:\"\"}.fa-reddit-square:before{content:\"\"}.fa-stumbleupon-circle:before{content:\"\"}.fa-stumbleupon:before{content:\"\"}.fa-delicious:before{content:\"\"}.fa-digg:before{content:\"\"}.fa-pied-piper-pp:before{content:\"\"}.fa-pied-piper-alt:before{content:\"\"}.fa-drupal:before{content:\"\"}.fa-joomla:before{content:\"\"}.fa-language:before{content:\"\"}.fa-fax:before{content:\"\"}.fa-building:before{content:\"\"}.fa-child:before{content:\"\"}.fa-paw:before{content:\"\"}.fa-spoon:before{content:\"\"}.fa-cube:before{content:\"\"}.fa-cubes:before{content:\"\"}.fa-behance:before{content:\"\"}.fa-behance-square:before{content:\"\"}.fa-steam:before{content:\"\"}.fa-steam-square:before{content:\"\"}.fa-recycle:before{content:\"\"}.fa-automobile:before,.fa-car:before{content:\"\"}.fa-cab:before,.fa-taxi:before{content:\"\"}.fa-tree:before{content:\"\"}.fa-spotify:before{content:\"\"}.fa-deviantart:before{content:\"\"}.fa-soundcloud:before{content:\"\"}.fa-database:before{content:\"\"}.fa-file-pdf-o:before{content:\"\"}.fa-file-word-o:before{content:\"\"}.fa-file-excel-o:before{content:\"\"}.fa-file-powerpoint-o:before{content:\"\"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:\"\"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:\"\"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:\"\"}.fa-file-movie-o:before,.fa-file-video-o:before{content:\"\"}.fa-file-code-o:before{content:\"\"}.fa-vine:before{content:\"\"}.fa-codepen:before{content:\"\"}.fa-jsfiddle:before{content:\"\"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:\"\"}.fa-circle-o-notch:before{content:\"\"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:\"\"}.fa-empire:before,.fa-ge:before{content:\"\"}.fa-git-square:before{content:\"\"}.fa-git:before{content:\"\"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:\"\"}.fa-tencent-weibo:before{content:\"\"}.fa-qq:before{content:\"\"}.fa-wechat:before,.fa-weixin:before{content:\"\"}.fa-paper-plane:before,.fa-send:before{content:\"\"}.fa-paper-plane-o:before,.fa-send-o:before{content:\"\"}.fa-history:before{content:\"\"}.fa-circle-thin:before{content:\"\"}.fa-header:before{content:\"\"}.fa-paragraph:before{content:\"\"}.fa-sliders:before{content:\"\"}.fa-share-alt:before{content:\"\"}.fa-share-alt-square:before{content:\"\"}.fa-bomb:before{content:\"\"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:\"\"}.fa-tty:before{content:\"\"}.fa-binoculars:before{content:\"\"}.fa-plug:before{content:\"\"}.fa-slideshare:before{content:\"\"}.fa-twitch:before{content:\"\"}.fa-yelp:before{content:\"\"}.fa-newspaper-o:before{content:\"\"}.fa-wifi:before{content:\"\"}.fa-calculator:before{content:\"\"}.fa-paypal:before{content:\"\"}.fa-google-wallet:before{content:\"\"}.fa-cc-visa:before{content:\"\"}.fa-cc-mastercard:before{content:\"\"}.fa-cc-discover:before{content:\"\"}.fa-cc-amex:before{content:\"\"}.fa-cc-paypal:before{content:\"\"}.fa-cc-stripe:before{content:\"\"}.fa-bell-slash:before{content:\"\"}.fa-bell-slash-o:before{content:\"\"}.fa-trash:before{content:\"\"}.fa-copyright:before{content:\"\"}.fa-at:before{content:\"\"}.fa-eyedropper:before{content:\"\"}.fa-paint-brush:before{content:\"\"}.fa-birthday-cake:before{content:\"\"}.fa-area-chart:before{content:\"\"}.fa-pie-chart:before{content:\"\"}.fa-line-chart:before{content:\"\"}.fa-lastfm:before{content:\"\"}.fa-lastfm-square:before{content:\"\"}.fa-toggle-off:before{content:\"\"}.fa-toggle-on:before{content:\"\"}.fa-bicycle:before{content:\"\"}.fa-bus:before{content:\"\"}.fa-ioxhost:before{content:\"\"}.fa-angellist:before{content:\"\"}.fa-cc:before{content:\"\"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:\"\"}.fa-meanpath:before{content:\"\"}.fa-buysellads:before{content:\"\"}.fa-connectdevelop:before{content:\"\"}.fa-dashcube:before{content:\"\"}.fa-forumbee:before{content:\"\"}.fa-leanpub:before{content:\"\"}.fa-sellsy:before{content:\"\"}.fa-shirtsinbulk:before{content:\"\"}.fa-simplybuilt:before{content:\"\"}.fa-skyatlas:before{content:\"\"}.fa-cart-plus:before{content:\"\"}.fa-cart-arrow-down:before{content:\"\"}.fa-diamond:before{content:\"\"}.fa-ship:before{content:\"\"}.fa-user-secret:before{content:\"\"}.fa-motorcycle:before{content:\"\"}.fa-street-view:before{content:\"\"}.fa-heartbeat:before{content:\"\"}.fa-venus:before{content:\"\"}.fa-mars:before{content:\"\"}.fa-mercury:before{content:\"\"}.fa-intersex:before,.fa-transgender:before{content:\"\"}.fa-transgender-alt:before{content:\"\"}.fa-venus-double:before{content:\"\"}.fa-mars-double:before{content:\"\"}.fa-venus-mars:before{content:\"\"}.fa-mars-stroke:before{content:\"\"}.fa-mars-stroke-v:before{content:\"\"}.fa-mars-stroke-h:before{content:\"\"}.fa-neuter:before{content:\"\"}.fa-genderless:before{content:\"\"}.fa-facebook-official:before{content:\"\"}.fa-pinterest-p:before{content:\"\"}.fa-whatsapp:before{content:\"\"}.fa-server:before{content:\"\"}.fa-user-plus:before{content:\"\"}.fa-user-times:before{content:\"\"}.fa-bed:before,.fa-hotel:before{content:\"\"}.fa-viacoin:before{content:\"\"}.fa-train:before{content:\"\"}.fa-subway:before{content:\"\"}.fa-medium:before{content:\"\"}.fa-y-combinator:before,.fa-yc:before{content:\"\"}.fa-optin-monster:before{content:\"\"}.fa-opencart:before{content:\"\"}.fa-expeditedssl:before{content:\"\"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:\"\"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:\"\"}.fa-battery-2:before,.fa-battery-half:before{content:\"\"}.fa-battery-1:before,.fa-battery-quarter:before{content:\"\"}.fa-battery-0:before,.fa-battery-empty:before{content:\"\"}.fa-mouse-pointer:before{content:\"\"}.fa-i-cursor:before{content:\"\"}.fa-object-group:before{content:\"\"}.fa-object-ungroup:before{content:\"\"}.fa-sticky-note:before{content:\"\"}.fa-sticky-note-o:before{content:\"\"}.fa-cc-jcb:before{content:\"\"}.fa-cc-diners-club:before{content:\"\"}.fa-clone:before{content:\"\"}.fa-balance-scale:before{content:\"\"}.fa-hourglass-o:before{content:\"\"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:\"\"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:\"\"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:\"\"}.fa-hourglass:before{content:\"\"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:\"\"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:\"\"}.fa-hand-scissors-o:before{content:\"\"}.fa-hand-lizard-o:before{content:\"\"}.fa-hand-spock-o:before{content:\"\"}.fa-hand-pointer-o:before{content:\"\"}.fa-hand-peace-o:before{content:\"\"}.fa-trademark:before{content:\"\"}.fa-registered:before{content:\"\"}.fa-creative-commons:before{content:\"\"}.fa-gg:before{content:\"\"}.fa-gg-circle:before{content:\"\"}.fa-tripadvisor:before{content:\"\"}.fa-odnoklassniki:before{content:\"\"}.fa-odnoklassniki-square:before{content:\"\"}.fa-get-pocket:before{content:\"\"}.fa-wikipedia-w:before{content:\"\"}.fa-safari:before{content:\"\"}.fa-chrome:before{content:\"\"}.fa-firefox:before{content:\"\"}.fa-opera:before{content:\"\"}.fa-internet-explorer:before{content:\"\"}.fa-television:before,.fa-tv:before{content:\"\"}.fa-contao:before{content:\"\"}.fa-500px:before{content:\"\"}.fa-amazon:before{content:\"\"}.fa-calendar-plus-o:before{content:\"\"}.fa-calendar-minus-o:before{content:\"\"}.fa-calendar-times-o:before{content:\"\"}.fa-calendar-check-o:before{content:\"\"}.fa-industry:before{content:\"\"}.fa-map-pin:before{content:\"\"}.fa-map-signs:before{content:\"\"}.fa-map-o:before{content:\"\"}.fa-map:before{content:\"\"}.fa-commenting:before{content:\"\"}.fa-commenting-o:before{content:\"\"}.fa-houzz:before{content:\"\"}.fa-vimeo:before{content:\"\"}.fa-black-tie:before{content:\"\"}.fa-fonticons:before{content:\"\"}.fa-reddit-alien:before{content:\"\"}.fa-edge:before{content:\"\"}.fa-credit-card-alt:before{content:\"\"}.fa-codiepie:before{content:\"\"}.fa-modx:before{content:\"\"}.fa-fort-awesome:before{content:\"\"}.fa-usb:before{content:\"\"}.fa-product-hunt:before{content:\"\"}.fa-mixcloud:before{content:\"\"}.fa-scribd:before{content:\"\"}.fa-pause-circle:before{content:\"\"}.fa-pause-circle-o:before{content:\"\"}.fa-stop-circle:before{content:\"\"}.fa-stop-circle-o:before{content:\"\"}.fa-shopping-bag:before{content:\"\"}.fa-shopping-basket:before{content:\"\"}.fa-hashtag:before{content:\"\"}.fa-bluetooth:before{content:\"\"}.fa-bluetooth-b:before{content:\"\"}.fa-percent:before{content:\"\"}.fa-gitlab:before,.icon-gitlab:before{content:\"\"}.fa-wpbeginner:before{content:\"\"}.fa-wpforms:before{content:\"\"}.fa-envira:before{content:\"\"}.fa-universal-access:before{content:\"\"}.fa-wheelchair-alt:before{content:\"\"}.fa-question-circle-o:before{content:\"\"}.fa-blind:before{content:\"\"}.fa-audio-description:before{content:\"\"}.fa-volume-control-phone:before{content:\"\"}.fa-braille:before{content:\"\"}.fa-assistive-listening-systems:before{content:\"\"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:\"\"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:\"\"}.fa-glide:before{content:\"\"}.fa-glide-g:before{content:\"\"}.fa-sign-language:before,.fa-signing:before{content:\"\"}.fa-low-vision:before{content:\"\"}.fa-viadeo:before{content:\"\"}.fa-viadeo-square:before{content:\"\"}.fa-snapchat:before{content:\"\"}.fa-snapchat-ghost:before{content:\"\"}.fa-snapchat-square:before{content:\"\"}.fa-pied-piper:before{content:\"\"}.fa-first-order:before{content:\"\"}.fa-yoast:before{content:\"\"}.fa-themeisle:before{content:\"\"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:\"\"}.fa-fa:before,.fa-font-awesome:before{content:\"\"}.fa-handshake-o:before{content:\"\"}.fa-envelope-open:before{content:\"\"}.fa-envelope-open-o:before{content:\"\"}.fa-linode:before{content:\"\"}.fa-address-book:before{content:\"\"}.fa-address-book-o:before{content:\"\"}.fa-address-card:before,.fa-vcard:before{content:\"\"}.fa-address-card-o:before,.fa-vcard-o:before{content:\"\"}.fa-user-circle:before{content:\"\"}.fa-user-circle-o:before{content:\"\"}.fa-user-o:before{content:\"\"}.fa-id-badge:before{content:\"\"}.fa-drivers-license:before,.fa-id-card:before{content:\"\"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:\"\"}.fa-quora:before{content:\"\"}.fa-free-code-camp:before{content:\"\"}.fa-telegram:before{content:\"\"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:\"\"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:\"\"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:\"\"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:\"\"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:\"\"}.fa-shower:before{content:\"\"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:\"\"}.fa-podcast:before{content:\"\"}.fa-window-maximize:before{content:\"\"}.fa-window-minimize:before{content:\"\"}.fa-window-restore:before{content:\"\"}.fa-times-rectangle:before,.fa-window-close:before{content:\"\"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:\"\"}.fa-bandcamp:before{content:\"\"}.fa-grav:before{content:\"\"}.fa-etsy:before{content:\"\"}.fa-imdb:before{content:\"\"}.fa-ravelry:before{content:\"\"}.fa-eercast:before{content:\"\"}.fa-microchip:before{content:\"\"}.fa-snowflake-o:before{content:\"\"}.fa-superpowers:before{content:\"\"}.fa-wpexplorer:before{content:\"\"}.fa-meetup:before{content:\"\"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li button.toctree-expand{font-family:inherit}.fa:before,.icon:before,.rst-content .admonition-title:before,.rst-content .code-block-caption .headerlink:before,.rst-content .eqno .headerlink:before,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content p .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before,.wy-menu-vertical li button.toctree-expand:before{font-family:FontAwesome;display:inline-block;font-style:normal;font-weight:400;line-height:1;text-decoration:inherit}.rst-content .code-block-caption a .headerlink,.rst-content .eqno a .headerlink,.rst-content a .admonition-title,.rst-content code.download a span:first-child,.rst-content dl dt a .headerlink,.rst-content h1 a .headerlink,.rst-content h2 a .headerlink,.rst-content h3 a .headerlink,.rst-content h4 a .headerlink,.rst-content h5 a .headerlink,.rst-content h6 a .headerlink,.rst-content p.caption a .headerlink,.rst-content p a .headerlink,.rst-content table>caption a .headerlink,.rst-content tt.download a span:first-child,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li a button.toctree-expand,a .fa,a .icon,a .rst-content .admonition-title,a .rst-content .code-block-caption .headerlink,a .rst-content .eqno .headerlink,a .rst-content code.download span:first-child,a .rst-content dl dt .headerlink,a .rst-content h1 .headerlink,a .rst-content h2 .headerlink,a .rst-content h3 .headerlink,a .rst-content h4 .headerlink,a .rst-content h5 .headerlink,a .rst-content h6 .headerlink,a .rst-content p.caption .headerlink,a .rst-content p .headerlink,a .rst-content table>caption .headerlink,a .rst-content tt.download span:first-child,a .wy-menu-vertical li button.toctree-expand{display:inline-block;text-decoration:inherit}.btn .fa,.btn .icon,.btn .rst-content .admonition-title,.btn .rst-content .code-block-caption .headerlink,.btn .rst-content .eqno .headerlink,.btn .rst-content code.download span:first-child,.btn .rst-content dl dt .headerlink,.btn .rst-content h1 .headerlink,.btn .rst-content h2 .headerlink,.btn .rst-content h3 .headerlink,.btn .rst-content h4 .headerlink,.btn .rst-content h5 .headerlink,.btn .rst-content h6 .headerlink,.btn .rst-content p .headerlink,.btn .rst-content table>caption .headerlink,.btn .rst-content tt.download span:first-child,.btn .wy-menu-vertical li.current>a button.toctree-expand,.btn .wy-menu-vertical li.on a button.toctree-expand,.btn .wy-menu-vertical li button.toctree-expand,.nav .fa,.nav .icon,.nav .rst-content .admonition-title,.nav .rst-content .code-block-caption .headerlink,.nav .rst-content .eqno .headerlink,.nav .rst-content code.download span:first-child,.nav .rst-content dl dt .headerlink,.nav .rst-content h1 .headerlink,.nav .rst-content h2 .headerlink,.nav .rst-content h3 .headerlink,.nav .rst-content h4 .headerlink,.nav .rst-content h5 .headerlink,.nav .rst-content h6 .headerlink,.nav .rst-content p .headerlink,.nav .rst-content table>caption .headerlink,.nav .rst-content tt.download span:first-child,.nav .wy-menu-vertical li.current>a button.toctree-expand,.nav .wy-menu-vertical li.on a button.toctree-expand,.nav .wy-menu-vertical li button.toctree-expand,.rst-content .btn .admonition-title,.rst-content .code-block-caption .btn .headerlink,.rst-content .code-block-caption .nav .headerlink,.rst-content .eqno .btn .headerlink,.rst-content .eqno .nav .headerlink,.rst-content .nav .admonition-title,.rst-content code.download .btn span:first-child,.rst-content code.download .nav span:first-child,.rst-content dl dt .btn .headerlink,.rst-content dl dt .nav .headerlink,.rst-content h1 .btn .headerlink,.rst-content h1 .nav .headerlink,.rst-content h2 .btn .headerlink,.rst-content h2 .nav .headerlink,.rst-content h3 .btn .headerlink,.rst-content h3 .nav .headerlink,.rst-content h4 .btn .headerlink,.rst-content h4 .nav .headerlink,.rst-content h5 .btn .headerlink,.rst-content h5 .nav .headerlink,.rst-content h6 .btn .headerlink,.rst-content h6 .nav .headerlink,.rst-content p .btn .headerlink,.rst-content p .nav .headerlink,.rst-content table>caption .btn .headerlink,.rst-content table>caption .nav .headerlink,.rst-content tt.download .btn span:first-child,.rst-content tt.download .nav span:first-child,.wy-menu-vertical li .btn button.toctree-expand,.wy-menu-vertical li.current>a .btn button.toctree-expand,.wy-menu-vertical li.current>a .nav button.toctree-expand,.wy-menu-vertical li .nav button.toctree-expand,.wy-menu-vertical li.on a .btn button.toctree-expand,.wy-menu-vertical li.on a .nav button.toctree-expand{display:inline}.btn .fa-large.icon,.btn .fa.fa-large,.btn .rst-content .code-block-caption .fa-large.headerlink,.btn .rst-content .eqno .fa-large.headerlink,.btn .rst-content .fa-large.admonition-title,.btn .rst-content code.download span.fa-large:first-child,.btn .rst-content dl dt .fa-large.headerlink,.btn .rst-content h1 .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.btn .rst-content p .fa-large.headerlink,.btn .rst-content table>caption .fa-large.headerlink,.btn .rst-content tt.download span.fa-large:first-child,.btn .wy-menu-vertical li button.fa-large.toctree-expand,.nav .fa-large.icon,.nav .fa.fa-large,.nav .rst-content .code-block-caption .fa-large.headerlink,.nav .rst-content .eqno .fa-large.headerlink,.nav .rst-content .fa-large.admonition-title,.nav .rst-content code.download span.fa-large:first-child,.nav .rst-content dl dt .fa-large.headerlink,.nav .rst-content h1 .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.nav .rst-content p .fa-large.headerlink,.nav .rst-content table>caption .fa-large.headerlink,.nav .rst-content tt.download span.fa-large:first-child,.nav .wy-menu-vertical li button.fa-large.toctree-expand,.rst-content .btn .fa-large.admonition-title,.rst-content .code-block-caption .btn .fa-large.headerlink,.rst-content .code-block-caption .nav .fa-large.headerlink,.rst-content .eqno .btn .fa-large.headerlink,.rst-content .eqno .nav .fa-large.headerlink,.rst-content .nav .fa-large.admonition-title,.rst-content code.download .btn span.fa-large:first-child,.rst-content code.download .nav span.fa-large:first-child,.rst-content dl dt .btn .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.rst-content p .btn .fa-large.headerlink,.rst-content p .nav .fa-large.headerlink,.rst-content table>caption .btn .fa-large.headerlink,.rst-content table>caption .nav .fa-large.headerlink,.rst-content tt.download .btn span.fa-large:first-child,.rst-content tt.download .nav span.fa-large:first-child,.wy-menu-vertical li .btn button.fa-large.toctree-expand,.wy-menu-vertical li .nav button.fa-large.toctree-expand{line-height:.9em}.btn .fa-spin.icon,.btn .fa.fa-spin,.btn .rst-content .code-block-caption .fa-spin.headerlink,.btn .rst-content .eqno .fa-spin.headerlink,.btn .rst-content .fa-spin.admonition-title,.btn .rst-content code.download span.fa-spin:first-child,.btn .rst-content dl dt .fa-spin.headerlink,.btn .rst-content h1 .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.btn .rst-content p .fa-spin.headerlink,.btn .rst-content table>caption .fa-spin.headerlink,.btn .rst-content tt.download span.fa-spin:first-child,.btn .wy-menu-vertical li button.fa-spin.toctree-expand,.nav .fa-spin.icon,.nav .fa.fa-spin,.nav .rst-content .code-block-caption .fa-spin.headerlink,.nav .rst-content .eqno .fa-spin.headerlink,.nav .rst-content .fa-spin.admonition-title,.nav .rst-content code.download span.fa-spin:first-child,.nav .rst-content dl dt .fa-spin.headerlink,.nav .rst-content h1 .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.nav .rst-content p .fa-spin.headerlink,.nav .rst-content table>caption .fa-spin.headerlink,.nav .rst-content tt.download span.fa-spin:first-child,.nav .wy-menu-vertical li button.fa-spin.toctree-expand,.rst-content .btn .fa-spin.admonition-title,.rst-content .code-block-caption .btn .fa-spin.headerlink,.rst-content .code-block-caption .nav .fa-spin.headerlink,.rst-content .eqno .btn .fa-spin.headerlink,.rst-content .eqno .nav .fa-spin.headerlink,.rst-content .nav .fa-spin.admonition-title,.rst-content code.download .btn span.fa-spin:first-child,.rst-content code.download .nav span.fa-spin:first-child,.rst-content dl dt .btn .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.rst-content p .btn .fa-spin.headerlink,.rst-content p .nav .fa-spin.headerlink,.rst-content table>caption .btn .fa-spin.headerlink,.rst-content table>caption .nav .fa-spin.headerlink,.rst-content tt.download .btn span.fa-spin:first-child,.rst-content tt.download .nav span.fa-spin:first-child,.wy-menu-vertical li .btn button.fa-spin.toctree-expand,.wy-menu-vertical li .nav button.fa-spin.toctree-expand{display:inline-block}.btn.fa:before,.btn.icon:before,.rst-content .btn.admonition-title:before,.rst-content .code-block-caption .btn.headerlink:before,.rst-content .eqno .btn.headerlink:before,.rst-content code.download span.btn:first-child:before,.rst-content dl dt .btn.headerlink:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content p .btn.headerlink:before,.rst-content table>caption .btn.headerlink:before,.rst-content tt.download span.btn:first-child:before,.wy-menu-vertical li button.btn.toctree-expand:before{opacity:.5;-webkit-transition:opacity .05s ease-in;-moz-transition:opacity .05s ease-in;transition:opacity .05s ease-in}.btn.fa:hover:before,.btn.icon:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content .code-block-caption .btn.headerlink:hover:before,.rst-content .eqno .btn.headerlink:hover:before,.rst-content code.download span.btn:first-child:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content p .btn.headerlink:hover:before,.rst-content table>caption .btn.headerlink:hover:before,.rst-content tt.download span.btn:first-child:hover:before,.wy-menu-vertical li button.btn.toctree-expand:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .icon:before,.btn-mini .rst-content .admonition-title:before,.btn-mini .rst-content .code-block-caption .headerlink:before,.btn-mini .rst-content .eqno .headerlink:before,.btn-mini .rst-content code.download span:first-child:before,.btn-mini .rst-content dl dt .headerlink:before,.btn-mini .rst-content h1 .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.btn-mini .rst-content p .headerlink:before,.btn-mini .rst-content table>caption .headerlink:before,.btn-mini .rst-content tt.download span:first-child:before,.btn-mini .wy-menu-vertical li button.toctree-expand:before,.rst-content .btn-mini .admonition-title:before,.rst-content .code-block-caption .btn-mini .headerlink:before,.rst-content .eqno .btn-mini .headerlink:before,.rst-content code.download .btn-mini span:first-child:before,.rst-content dl dt .btn-mini .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.rst-content p .btn-mini .headerlink:before,.rst-content table>caption .btn-mini .headerlink:before,.rst-content tt.download .btn-mini span:first-child:before,.wy-menu-vertical li .btn-mini button.toctree-expand:before{font-size:14px;vertical-align:-15%}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.wy-alert{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.rst-content .admonition-title,.wy-alert-title{font-weight:700;display:block;color:#fff;background:#6ab0de;padding:6px 12px;margin:-12px -12px 12px}.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.admonition,.rst-content .wy-alert-danger.admonition-todo,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.wy-alert.wy-alert-danger{background:#fdf3f2}.rst-content .danger .admonition-title,.rst-content .danger .wy-alert-title,.rst-content .error .admonition-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.rst-content .wy-alert-danger.admonition .admonition-title,.rst-content .wy-alert-danger.admonition .wy-alert-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.wy-alert.wy-alert-danger .wy-alert-title{background:#f29f97}.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .warning,.rst-content .wy-alert-warning.admonition,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.note,.rst-content .wy-alert-warning.seealso,.rst-content .wy-alert-warning.tip,.wy-alert.wy-alert-warning{background:#ffedcc}.rst-content .admonition-todo .admonition-title,.rst-content .admonition-todo .wy-alert-title,.rst-content .attention .admonition-title,.rst-content .attention .wy-alert-title,.rst-content .caution .admonition-title,.rst-content .caution .wy-alert-title,.rst-content .warning .admonition-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.admonition .admonition-title,.rst-content .wy-alert-warning.admonition .wy-alert-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.wy-alert.wy-alert-warning .wy-alert-title{background:#f0b37e}.rst-content .note,.rst-content .seealso,.rst-content .wy-alert-info.admonition,.rst-content .wy-alert-info.admonition-todo,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.wy-alert.wy-alert-info{background:#e7f2fa}.rst-content .note .admonition-title,.rst-content .note .wy-alert-title,.rst-content .seealso .admonition-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .admonition-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.rst-content .wy-alert-info.admonition .admonition-title,.rst-content .wy-alert-info.admonition .wy-alert-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.wy-alert.wy-alert-info .wy-alert-title{background:#6ab0de}.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.admonition,.rst-content .wy-alert-success.admonition-todo,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.warning,.wy-alert.wy-alert-success{background:#dbfaf4}.rst-content .hint .admonition-title,.rst-content .hint .wy-alert-title,.rst-content .important .admonition-title,.rst-content .important .wy-alert-title,.rst-content .tip .admonition-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .admonition-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.rst-content .wy-alert-success.admonition .admonition-title,.rst-content .wy-alert-success.admonition .wy-alert-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.wy-alert.wy-alert-success .wy-alert-title{background:#1abc9c}.rst-content .wy-alert-neutral.admonition,.rst-content .wy-alert-neutral.admonition-todo,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.wy-alert.wy-alert-neutral{background:#f3f6f6}.rst-content .wy-alert-neutral.admonition-todo .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.rst-content .wy-alert-neutral.admonition .admonition-title,.rst-content .wy-alert-neutral.admonition .wy-alert-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.wy-alert.wy-alert-neutral .wy-alert-title{color:#404040;background:#e1e4e5}.rst-content .wy-alert-neutral.admonition-todo a,.rst-content .wy-alert-neutral.admonition a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.wy-alert.wy-alert-neutral a{color:#2980b9}.rst-content .admonition-todo p:last-child,.rst-content .admonition p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .note p:last-child,.rst-content .seealso p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.wy-alert p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27ae60}.wy-tray-container li.wy-tray-item-info{background:#2980b9}.wy-tray-container li.wy-tray-item-warning{background:#e67e22}.wy-tray-container li.wy-tray-item-danger{background:#e74c3c}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width:768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px;color:#fff;border:1px solid rgba(0,0,0,.1);background-color:#27ae60;text-decoration:none;font-weight:400;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 2px -1px hsla(0,0%,100%,.5),inset 0 -2px 0 0 rgba(0,0,0,.1);outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all .1s linear;-moz-transition:all .1s linear;transition:all .1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05),inset 0 2px 0 0 rgba(0,0,0,.1);padding:8px 12px 6px}.btn:visited{color:#fff}.btn-disabled,.btn-disabled:active,.btn-disabled:focus,.btn-disabled:hover,.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980b9!important}.btn-info:hover{background-color:#2e8ece!important}.btn-neutral{background-color:#f3f6f6!important;color:#404040!important}.btn-neutral:hover{background-color:#e5ebeb!important;color:#404040}.btn-neutral:visited{color:#404040!important}.btn-success{background-color:#27ae60!important}.btn-success:hover{background-color:#295!important}.btn-danger{background-color:#e74c3c!important}.btn-danger:hover{background-color:#ea6153!important}.btn-warning{background-color:#e67e22!important}.btn-warning:hover{background-color:#e98b39!important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f!important}.btn-link{background-color:transparent!important;color:#2980b9;box-shadow:none;border-color:transparent!important}.btn-link:active,.btn-link:hover{background-color:transparent!important;color:#409ad5!important;box-shadow:none}.btn-link:visited{color:#9b59b6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:after,.wy-btn-group:before{display:table;content:\"\"}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-active .wy-dropdown-menu{display:block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:1px solid #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980b9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:1px solid #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type=search]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980b9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;left:auto;text-align:right}.wy-dropdown-arrow:before{content:\" \";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned .wy-help-inline,.wy-form-aligned input,.wy-form-aligned label,.wy-form-aligned select,.wy-form-aligned textarea{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{margin:0}fieldset,legend{border:0;padding:0}legend{width:100%;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label,legend{display:block}label{margin:0 0 .3125em;color:#333;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;max-width:1200px;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:after,.wy-control-group:before{display:table;content:\"\"}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:\" *\";color:#e74c3c}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full input[type=color],.wy-control-group .wy-form-full input[type=date],.wy-control-group .wy-form-full input[type=datetime-local],.wy-control-group .wy-form-full input[type=datetime],.wy-control-group .wy-form-full input[type=email],.wy-control-group .wy-form-full input[type=month],.wy-control-group .wy-form-full input[type=number],.wy-control-group .wy-form-full input[type=password],.wy-control-group .wy-form-full input[type=search],.wy-control-group .wy-form-full input[type=tel],.wy-control-group .wy-form-full input[type=text],.wy-control-group .wy-form-full input[type=time],.wy-control-group .wy-form-full input[type=url],.wy-control-group .wy-form-full input[type=week],.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves input[type=color],.wy-control-group .wy-form-halves input[type=date],.wy-control-group .wy-form-halves input[type=datetime-local],.wy-control-group .wy-form-halves input[type=datetime],.wy-control-group .wy-form-halves input[type=email],.wy-control-group .wy-form-halves input[type=month],.wy-control-group .wy-form-halves input[type=number],.wy-control-group .wy-form-halves input[type=password],.wy-control-group .wy-form-halves input[type=search],.wy-control-group .wy-form-halves input[type=tel],.wy-control-group .wy-form-halves input[type=text],.wy-control-group .wy-form-halves input[type=time],.wy-control-group .wy-form-halves input[type=url],.wy-control-group .wy-form-halves input[type=week],.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds input[type=color],.wy-control-group .wy-form-thirds input[type=date],.wy-control-group .wy-form-thirds input[type=datetime-local],.wy-control-group .wy-form-thirds input[type=datetime],.wy-control-group .wy-form-thirds input[type=email],.wy-control-group .wy-form-thirds input[type=month],.wy-control-group .wy-form-thirds input[type=number],.wy-control-group .wy-form-thirds input[type=password],.wy-control-group .wy-form-thirds input[type=search],.wy-control-group .wy-form-thirds input[type=tel],.wy-control-group .wy-form-thirds input[type=text],.wy-control-group .wy-form-thirds input[type=time],.wy-control-group .wy-form-thirds input[type=url],.wy-control-group .wy-form-thirds input[type=week],.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full{float:left;display:block;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.35765%;width:48.82117%}.wy-control-group .wy-form-halves:last-child,.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(odd){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.35765%;width:31.76157%}.wy-control-group .wy-form-thirds:last-child,.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control,.wy-control-no-input{margin:6px 0 0;font-size:90%}.wy-control-no-input{display:inline-block}.wy-control-group.fluid-input input[type=color],.wy-control-group.fluid-input input[type=date],.wy-control-group.fluid-input input[type=datetime-local],.wy-control-group.fluid-input input[type=datetime],.wy-control-group.fluid-input input[type=email],.wy-control-group.fluid-input input[type=month],.wy-control-group.fluid-input input[type=number],.wy-control-group.fluid-input input[type=password],.wy-control-group.fluid-input input[type=search],.wy-control-group.fluid-input input[type=tel],.wy-control-group.fluid-input input[type=text],.wy-control-group.fluid-input input[type=time],.wy-control-group.fluid-input input[type=url],.wy-control-group.fluid-input input[type=week]{width:100%}.wy-form-message-inline{padding-left:.3em;color:#666;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:.3125em;font-style:italic}.wy-form-message p{font-size:inherit;font-style:italic;margin-bottom:6px}.wy-form-message p:last-child{margin-bottom:0}input{line-height:normal}input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;*overflow:visible}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}input[type=datetime-local]{padding:.34375em .625em}input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{padding:0;margin-right:.3125em;*height:13px;*width:13px}input[type=checkbox],input[type=radio],input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus{outline:0;outline:thin dotted\\9;border-color:#333}input.no-focus:focus{border-color:#ccc!important}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:thin dotted #333;outline:1px auto #129fea}input[type=color][disabled],input[type=date][disabled],input[type=datetime-local][disabled],input[type=datetime][disabled],input[type=email][disabled],input[type=month][disabled],input[type=number][disabled],input[type=password][disabled],input[type=search][disabled],input[type=tel][disabled],input[type=text][disabled],input[type=time][disabled],input[type=url][disabled],input[type=week][disabled]{cursor:not-allowed;background-color:#fafafa}input:focus:invalid,select:focus:invalid,textarea:focus:invalid{color:#e74c3c;border:1px solid #e74c3c}input:focus:invalid:focus,select:focus:invalid:focus,textarea:focus:invalid:focus{border-color:#e74c3c}input[type=checkbox]:focus:invalid:focus,input[type=file]:focus:invalid:focus,input[type=radio]:focus:invalid:focus{outline-color:#e74c3c}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif}select,textarea{padding:.5em .625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#fafafa}input[type=checkbox][disabled],input[type=radio][disabled]{cursor:not-allowed}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap;padding:6px}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{line-height:27px;padding:0 8px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:1px solid #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-switch{position:relative;display:block;height:24px;margin-top:12px;cursor:pointer}.wy-switch:before{left:0;top:0;width:36px;height:12px;background:#ccc}.wy-switch:after,.wy-switch:before{position:absolute;content:\"\";display:block;border-radius:4px;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wy-switch:after{width:18px;height:18px;background:#999;left:-3px;top:-3px}.wy-switch span{position:absolute;left:48px;display:block;font-size:12px;color:#ccc;line-height:1}.wy-switch.active:before{background:#1e8449}.wy-switch.active:after{left:24px;background:#27ae60}.wy-switch.disabled{cursor:not-allowed;opacity:.8}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#e74c3c}.wy-control-group.wy-control-group-error input[type=color],.wy-control-group.wy-control-group-error input[type=date],.wy-control-group.wy-control-group-error input[type=datetime-local],.wy-control-group.wy-control-group-error input[type=datetime],.wy-control-group.wy-control-group-error input[type=email],.wy-control-group.wy-control-group-error input[type=month],.wy-control-group.wy-control-group-error input[type=number],.wy-control-group.wy-control-group-error input[type=password],.wy-control-group.wy-control-group-error input[type=search],.wy-control-group.wy-control-group-error input[type=tel],.wy-control-group.wy-control-group-error input[type=text],.wy-control-group.wy-control-group-error input[type=time],.wy-control-group.wy-control-group-error input[type=url],.wy-control-group.wy-control-group-error input[type=week],.wy-control-group.wy-control-group-error textarea{border:1px solid #e74c3c}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:.5em .625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27ae60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#e74c3c}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#e67e22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980b9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width:480px){.wy-form button[type=submit]{margin:.7em 0 0}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=text],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week],.wy-form label{margin-bottom:.3em;display:block}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0}.wy-form-message,.wy-form-message-inline,.wy-form .wy-help-inline{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width:768px){.tablet-hide{display:none}}@media screen and (max-width:480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.rst-content table.docutils,.rst-content table.field-list,.wy-table{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.rst-content table.docutils caption,.rst-content table.field-list caption,.wy-table caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.rst-content table.docutils td,.rst-content table.docutils th,.rst-content table.field-list td,.rst-content table.field-list th,.wy-table td,.wy-table th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.rst-content table.docutils td:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list td:first-child,.rst-content table.field-list th:first-child,.wy-table td:first-child,.wy-table th:first-child{border-left-width:0}.rst-content table.docutils thead,.rst-content table.field-list thead,.wy-table thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.rst-content table.docutils thead th,.rst-content table.field-list thead th,.wy-table thead th{font-weight:700;border-bottom:2px solid #e1e4e5}.rst-content table.docutils td,.rst-content table.field-list td,.wy-table td{background-color:transparent;vertical-align:middle}.rst-content table.docutils td p,.rst-content table.field-list td p,.wy-table td p{line-height:18px}.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child,.wy-table td p:last-child{margin-bottom:0}.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min,.wy-table .wy-table-cell-min{width:1%;padding-right:0}.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:grey;font-size:90%}.wy-table-tertiary{color:grey;font-size:80%}.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td,.wy-table-backed,.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td{background-color:#f3f6f6}.rst-content table.docutils,.wy-table-bordered-all{border:1px solid #e1e4e5}.rst-content table.docutils td,.wy-table-bordered-all td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.rst-content table.docutils tbody>tr:last-child td,.wy-table-bordered-all tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0!important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980b9;text-decoration:none;cursor:pointer}a:hover{color:#3091d1}a:visited{color:#9b59b6}html{height:100%}body,html{overflow-x:hidden}body{font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;font-weight:400;color:#404040;min-height:100%;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#e67e22!important}a.wy-text-warning:hover{color:#eb9950!important}.wy-text-info{color:#2980b9!important}a.wy-text-info:hover{color:#409ad5!important}.wy-text-success{color:#27ae60!important}a.wy-text-success:hover{color:#36d278!important}.wy-text-danger{color:#e74c3c!important}a.wy-text-danger:hover{color:#ed7669!important}.wy-text-neutral{color:#404040!important}a.wy-text-neutral:hover{color:#595959!important}.rst-content .toctree-wrapper>p.caption,h1,h2,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif}p{line-height:24px;font-size:16px;margin:0 0 24px}h1{font-size:175%}.rst-content .toctree-wrapper>p.caption,h2{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}.rst-content code,.rst-content tt,code{white-space:nowrap;max-width:100%;background:#fff;border:1px solid #e1e4e5;font-size:75%;padding:0 5px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#e74c3c;overflow-x:auto}.rst-content tt.code-large,code.code-large{font-size:90%}.rst-content .section ul,.rst-content .toctree-wrapper ul,.rst-content section ul,.wy-plain-list-disc,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.rst-content .section ul li,.rst-content .toctree-wrapper ul li,.rst-content section ul li,.wy-plain-list-disc li,article ul li{list-style:disc;margin-left:24px}.rst-content .section ul li p:last-child,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li p:last-child,.rst-content .toctree-wrapper ul li ul,.rst-content section ul li p:last-child,.rst-content section ul li ul,.wy-plain-list-disc li p:last-child,.wy-plain-list-disc li ul,article ul li p:last-child,article ul li ul{margin-bottom:0}.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,.rst-content section ul li li,.wy-plain-list-disc li li,article ul li li{list-style:circle}.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,.rst-content section ul li li li,.wy-plain-list-disc li li li,article ul li li li{list-style:square}.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,.rst-content section ul li ol li,.wy-plain-list-disc li ol li,article ul li ol li{list-style:decimal}.rst-content .section ol,.rst-content .section ol.arabic,.rst-content .toctree-wrapper ol,.rst-content .toctree-wrapper ol.arabic,.rst-content section ol,.rst-content section ol.arabic,.wy-plain-list-decimal,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.rst-content .section ol.arabic li,.rst-content .section ol li,.rst-content .toctree-wrapper ol.arabic li,.rst-content .toctree-wrapper ol li,.rst-content section ol.arabic li,.rst-content section ol li,.wy-plain-list-decimal li,article ol li{list-style:decimal;margin-left:24px}.rst-content .section ol.arabic li ul,.rst-content .section ol li p:last-child,.rst-content .section ol li ul,.rst-content .toctree-wrapper ol.arabic li ul,.rst-content .toctree-wrapper ol li p:last-child,.rst-content .toctree-wrapper ol li ul,.rst-content section ol.arabic li ul,.rst-content section ol li p:last-child,.rst-content section ol li ul,.wy-plain-list-decimal li p:last-child,.wy-plain-list-decimal li ul,article ol li p:last-child,article ol li ul{margin-bottom:0}.rst-content .section ol.arabic li ul li,.rst-content .section ol li ul li,.rst-content .toctree-wrapper ol.arabic li ul li,.rst-content .toctree-wrapper ol li ul li,.rst-content section ol.arabic li ul li,.rst-content section ol li ul li,.wy-plain-list-decimal li ul li,article ol li ul li{list-style:disc}.wy-breadcrumbs{*zoom:1}.wy-breadcrumbs:after,.wy-breadcrumbs:before{display:table;content:\"\"}.wy-breadcrumbs:after{clear:both}.wy-breadcrumbs>li{display:inline-block;padding-top:5px}.wy-breadcrumbs>li.wy-breadcrumbs-aside{float:right}.rst-content .wy-breadcrumbs>li code,.rst-content .wy-breadcrumbs>li tt,.wy-breadcrumbs>li .rst-content tt,.wy-breadcrumbs>li code{all:inherit;color:inherit}.breadcrumb-item:before{content:\"/\";color:#bbb;font-size:13px;padding:0 6px 0 3px}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width:480px){.wy-breadcrumbs-extra,.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}html{font-size:16px}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:after,.wy-menu-horiz:before{display:table;content:\"\"}.wy-menu-horiz:after{clear:both}.wy-menu-horiz li,.wy-menu-horiz ul{display:inline-block}.wy-menu-horiz li:hover{background:hsla(0,0%,100%,.1)}.wy-menu-horiz li.divide-left{border-left:1px solid #404040}.wy-menu-horiz li.divide-right{border-right:1px solid #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical{width:300px}.wy-menu-vertical header,.wy-menu-vertical p.caption{color:#55a5d9;height:32px;line-height:32px;padding:0 1.618em;margin:12px 0 0;display:block;font-weight:700;text-transform:uppercase;font-size:85%;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:1px solid #404040}.wy-menu-vertical li.divide-bottom{border-bottom:1px solid #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:grey;border-right:1px solid #c9c9c9;padding:.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.rst-content .wy-menu-vertical li tt,.wy-menu-vertical li .rst-content tt,.wy-menu-vertical li code{border:none;background:inherit;color:inherit;padding-left:0;padding-right:0}.wy-menu-vertical li button.toctree-expand{display:block;float:left;margin-left:-1.2em;line-height:18px;color:#4d4d4d;border:none;background:none;padding:0}.wy-menu-vertical li.current>a,.wy-menu-vertical li.on a{color:#404040;font-weight:700;position:relative;background:#fcfcfc;border:none;padding:.4045em 1.618em}.wy-menu-vertical li.current>a:hover,.wy-menu-vertical li.on a:hover{background:#fcfcfc}.wy-menu-vertical li.current>a:hover button.toctree-expand,.wy-menu-vertical li.on a:hover button.toctree-expand{color:grey}.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand{display:block;line-height:18px;color:#333}.wy-menu-vertical li.toctree-l1.current>a{border-bottom:1px solid #c9c9c9;border-top:1px solid #c9c9c9}.wy-menu-vertical .toctree-l1.current .toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .toctree-l11>ul{display:none}.wy-menu-vertical .toctree-l1.current .current.toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .current.toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .current.toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .current.toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .current.toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .current.toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .current.toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .current.toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .current.toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .current.toctree-l11>ul{display:block}.wy-menu-vertical li.toctree-l3,.wy-menu-vertical li.toctree-l4{font-size:.9em}.wy-menu-vertical li.toctree-l2 a,.wy-menu-vertical li.toctree-l3 a,.wy-menu-vertical li.toctree-l4 a,.wy-menu-vertical li.toctree-l5 a,.wy-menu-vertical li.toctree-l6 a,.wy-menu-vertical li.toctree-l7 a,.wy-menu-vertical li.toctree-l8 a,.wy-menu-vertical li.toctree-l9 a,.wy-menu-vertical li.toctree-l10 a{color:#404040}.wy-menu-vertical li.toctree-l2 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l3 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l4 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l5 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l6 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l7 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l8 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l9 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l10 a:hover button.toctree-expand{color:grey}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a,.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a,.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a,.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a,.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a,.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a,.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a,.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{display:block}.wy-menu-vertical li.toctree-l2.current>a{padding:.4045em 2.427em}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{padding:.4045em 1.618em .4045em 4.045em}.wy-menu-vertical li.toctree-l3.current>a{padding:.4045em 4.045em}.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{padding:.4045em 1.618em .4045em 5.663em}.wy-menu-vertical li.toctree-l4.current>a{padding:.4045em 5.663em}.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a{padding:.4045em 1.618em .4045em 7.281em}.wy-menu-vertical li.toctree-l5.current>a{padding:.4045em 7.281em}.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a{padding:.4045em 1.618em .4045em 8.899em}.wy-menu-vertical li.toctree-l6.current>a{padding:.4045em 8.899em}.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a{padding:.4045em 1.618em .4045em 10.517em}.wy-menu-vertical li.toctree-l7.current>a{padding:.4045em 10.517em}.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a{padding:.4045em 1.618em .4045em 12.135em}.wy-menu-vertical li.toctree-l8.current>a{padding:.4045em 12.135em}.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a{padding:.4045em 1.618em .4045em 13.753em}.wy-menu-vertical li.toctree-l9.current>a{padding:.4045em 13.753em}.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a{padding:.4045em 1.618em .4045em 15.371em}.wy-menu-vertical li.toctree-l10.current>a{padding:.4045em 15.371em}.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{padding:.4045em 1.618em .4045em 16.989em}.wy-menu-vertical li.toctree-l2.current>a,.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{background:#c9c9c9}.wy-menu-vertical li.toctree-l2 button.toctree-expand{color:#a3a3a3}.wy-menu-vertical li.toctree-l3.current>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{background:#bdbdbd}.wy-menu-vertical li.toctree-l3 button.toctree-expand{color:#969696}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical li ul li a{margin-bottom:0;color:#d9d9d9;font-weight:400}.wy-menu-vertical a{line-height:18px;padding:.4045em 1.618em;display:block;position:relative;font-size:90%;color:#d9d9d9}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:hover button.toctree-expand{color:#d9d9d9}.wy-menu-vertical a:active{background-color:#2980b9;cursor:pointer;color:#fff}.wy-menu-vertical a:active button.toctree-expand{color:#fff}.wy-side-nav-search{display:block;width:300px;padding:.809em;margin-bottom:.809em;z-index:200;background-color:#2980b9;text-align:center;color:#fcfcfc}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto .809em;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-side-nav-search .wy-dropdown>a,.wy-side-nav-search>a{color:#fcfcfc;font-size:100%;font-weight:700;display:inline-block;padding:4px 6px;margin-bottom:.809em;max-width:100%}.wy-side-nav-search .wy-dropdown>a:hover,.wy-side-nav-search>a:hover{background:hsla(0,0%,100%,.1)}.wy-side-nav-search .wy-dropdown>a img.logo,.wy-side-nav-search>a img.logo{display:block;margin:0 auto;height:auto;width:auto;border-radius:0;max-width:100%;background:transparent}.wy-side-nav-search .wy-dropdown>a.icon img.logo,.wy-side-nav-search>a.icon img.logo{margin-top:.85em}.wy-side-nav-search>div.version{margin-top:-.4045em;margin-bottom:.809em;font-weight:400;color:hsla(0,0%,100%,.3)}.wy-nav .wy-menu-vertical header{color:#2980b9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980b9;color:#fff}[data-menu-wrap]{-webkit-transition:all .2s ease-in;-moz-transition:all .2s ease-in;transition:all .2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:#fcfcfc}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:fixed;top:0;bottom:0;left:0;padding-bottom:2em;width:300px;overflow-x:hidden;overflow-y:hidden;min-height:100%;color:#9b9b9b;background:#343131;z-index:200}.wy-side-scroll{width:320px;position:relative;overflow-x:hidden;overflow-y:scroll;height:100%}.wy-nav-top{display:none;background:#2980b9;color:#fff;padding:.4045em .809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:after,.wy-nav-top:before{display:table;content:\"\"}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:700}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer;padding-top:inherit}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:grey}footer p{margin-bottom:12px}.rst-content footer span.commit tt,footer span.commit .rst-content tt,footer span.commit code{padding:0;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:1em;background:none;border:none;color:grey}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:after,.rst-footer-buttons:before{width:100%;display:table;content:\"\"}.rst-footer-buttons:after{clear:both}.rst-breadcrumbs-buttons{margin-top:12px;*zoom:1}.rst-breadcrumbs-buttons:after,.rst-breadcrumbs-buttons:before{display:table;content:\"\"}.rst-breadcrumbs-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:1px solid #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:1px solid #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:grey;font-size:90%}.genindextable li>ul{margin-left:24px}@media screen and (max-width:768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-menu.wy-menu-vertical,.wy-side-nav-search,.wy-side-scroll{width:auto}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width:1100px){.wy-nav-content-wrap{background:rgba(0,0,0,.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,.wy-nav-side,footer{display:none}.wy-nav-content-wrap{margin-left:0}}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60;*zoom:1}.rst-versions .rst-current-version:after,.rst-versions .rst-current-version:before{display:table;content:\"\"}.rst-versions .rst-current-version:after{clear:both}.rst-content .code-block-caption .rst-versions .rst-current-version .headerlink,.rst-content .eqno .rst-versions .rst-current-version .headerlink,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-content code.download .rst-versions .rst-current-version span:first-child,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-content p .rst-versions .rst-current-version .headerlink,.rst-content table>caption .rst-versions .rst-current-version .headerlink,.rst-content tt.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .icon,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-versions .rst-current-version .rst-content .code-block-caption .headerlink,.rst-versions .rst-current-version .rst-content .eqno .headerlink,.rst-versions .rst-current-version .rst-content code.download span:first-child,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-versions .rst-current-version .rst-content p .headerlink,.rst-versions .rst-current-version .rst-content table>caption .headerlink,.rst-versions .rst-current-version .rst-content tt.download span:first-child,.rst-versions .rst-current-version .wy-menu-vertical li button.toctree-expand,.wy-menu-vertical li .rst-versions .rst-current-version button.toctree-expand{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}.rst-content .toctree-wrapper>p.caption,.rst-content h1,.rst-content h2,.rst-content h3,.rst-content h4,.rst-content h5,.rst-content h6{margin-bottom:24px}.rst-content img{max-width:100%;height:auto}.rst-content div.figure,.rst-content figure{margin-bottom:24px}.rst-content div.figure .caption-text,.rst-content figure .caption-text{font-style:italic}.rst-content div.figure p:last-child.caption,.rst-content figure p:last-child.caption{margin-bottom:0}.rst-content div.figure.align-center,.rst-content figure.align-center{text-align:center}.rst-content .section>a>img,.rst-content .section>img,.rst-content section>a>img,.rst-content section>img{margin-bottom:24px}.rst-content abbr[title]{text-decoration:none}.rst-content.style-external-links a.reference.external:after{font-family:FontAwesome;content:\"\\f08e\";color:#b3b3b3;vertical-align:super;font-size:60%;margin:0 .2em}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content pre.literal-block{white-space:pre;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;display:block;overflow:auto}.rst-content div[class^=highlight],.rst-content pre.literal-block{border:1px solid #e1e4e5;overflow-x:auto;margin:1px 0 24px}.rst-content div[class^=highlight] div[class^=highlight],.rst-content pre.literal-block div[class^=highlight]{padding:0;border:none;margin:0}.rst-content div[class^=highlight] td.code{width:100%}.rst-content .linenodiv pre{border-right:1px solid #e6e9ea;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;user-select:none;pointer-events:none}.rst-content div[class^=highlight] pre{white-space:pre;margin:0;padding:12px;display:block;overflow:auto}.rst-content div[class^=highlight] pre .hll{display:block;margin:0 -12px;padding:0 12px}.rst-content .linenodiv pre,.rst-content div[class^=highlight] pre,.rst-content pre.literal-block{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:12px;line-height:1.4}.rst-content div.highlight .gp,.rst-content div.highlight span.linenos{user-select:none;pointer-events:none}.rst-content div.highlight span.linenos{display:inline-block;padding-left:0;padding-right:12px;margin-right:12px;border-right:1px solid #e6e9ea}.rst-content .code-block-caption{font-style:italic;font-size:85%;line-height:1;padding:1em 0;text-align:center}@media print{.rst-content .codeblock,.rst-content div[class^=highlight],.rst-content div[class^=highlight] pre{white-space:pre-wrap}}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning{clear:both}.rst-content .admonition-todo .last,.rst-content .admonition-todo>:last-child,.rst-content .admonition .last,.rst-content .admonition>:last-child,.rst-content .attention .last,.rst-content .attention>:last-child,.rst-content .caution .last,.rst-content .caution>:last-child,.rst-content .danger .last,.rst-content .danger>:last-child,.rst-content .error .last,.rst-content .error>:last-child,.rst-content .hint .last,.rst-content .hint>:last-child,.rst-content .important .last,.rst-content .important>:last-child,.rst-content .note .last,.rst-content .note>:last-child,.rst-content .seealso .last,.rst-content .seealso>:last-child,.rst-content .tip .last,.rst-content .tip>:last-child,.rst-content .warning .last,.rst-content .warning>:last-child{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent!important;border-color:rgba(0,0,0,.1)!important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha>li,.rst-content .toctree-wrapper ol.loweralpha,.rst-content .toctree-wrapper ol.loweralpha>li,.rst-content section ol.loweralpha,.rst-content section ol.loweralpha>li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha>li,.rst-content .toctree-wrapper ol.upperalpha,.rst-content .toctree-wrapper ol.upperalpha>li,.rst-content section ol.upperalpha,.rst-content section ol.upperalpha>li{list-style:upper-alpha}.rst-content .section ol li>*,.rst-content .section ul li>*,.rst-content .toctree-wrapper ol li>*,.rst-content .toctree-wrapper ul li>*,.rst-content section ol li>*,.rst-content section ul li>*{margin-top:12px;margin-bottom:12px}.rst-content .section ol li>:first-child,.rst-content .section ul li>:first-child,.rst-content .toctree-wrapper ol li>:first-child,.rst-content .toctree-wrapper ul li>:first-child,.rst-content section ol li>:first-child,.rst-content section ul li>:first-child{margin-top:0}.rst-content .section ol li>p,.rst-content .section ol li>p:last-child,.rst-content .section ul li>p,.rst-content .section ul li>p:last-child,.rst-content .toctree-wrapper ol li>p,.rst-content .toctree-wrapper ol li>p:last-child,.rst-content .toctree-wrapper ul li>p,.rst-content .toctree-wrapper ul li>p:last-child,.rst-content section ol li>p,.rst-content section ol li>p:last-child,.rst-content section ul li>p,.rst-content section ul li>p:last-child{margin-bottom:12px}.rst-content .section ol li>p:only-child,.rst-content .section ol li>p:only-child:last-child,.rst-content .section ul li>p:only-child,.rst-content .section ul li>p:only-child:last-child,.rst-content .toctree-wrapper ol li>p:only-child,.rst-content .toctree-wrapper ol li>p:only-child:last-child,.rst-content .toctree-wrapper ul li>p:only-child,.rst-content .toctree-wrapper ul li>p:only-child:last-child,.rst-content section ol li>p:only-child,.rst-content section ol li>p:only-child:last-child,.rst-content section ul li>p:only-child,.rst-content section ul li>p:only-child:last-child{margin-bottom:0}.rst-content .section ol li>ol,.rst-content .section ol li>ul,.rst-content .section ul li>ol,.rst-content .section ul li>ul,.rst-content .toctree-wrapper ol li>ol,.rst-content .toctree-wrapper ol li>ul,.rst-content .toctree-wrapper ul li>ol,.rst-content .toctree-wrapper ul li>ul,.rst-content section ol li>ol,.rst-content section ol li>ul,.rst-content section ul li>ol,.rst-content section ul li>ul{margin-bottom:12px}.rst-content .section ol.simple li>*,.rst-content .section ol.simple li ol,.rst-content .section ol.simple li ul,.rst-content .section ul.simple li>*,.rst-content .section ul.simple li ol,.rst-content .section ul.simple li ul,.rst-content .toctree-wrapper ol.simple li>*,.rst-content .toctree-wrapper ol.simple li ol,.rst-content .toctree-wrapper ol.simple li ul,.rst-content .toctree-wrapper ul.simple li>*,.rst-content .toctree-wrapper ul.simple li ol,.rst-content .toctree-wrapper ul.simple li ul,.rst-content section ol.simple li>*,.rst-content section ol.simple li ol,.rst-content section ol.simple li ul,.rst-content section ul.simple li>*,.rst-content section ul.simple li ol,.rst-content section ul.simple li ul{margin-top:0;margin-bottom:0}.rst-content .line-block{margin-left:0;margin-bottom:24px;line-height:24px}.rst-content .line-block .line-block{margin-left:24px;margin-bottom:0}.rst-content .topic-title{font-weight:700;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0 0 24px 24px}.rst-content .align-left{float:left;margin:0 24px 24px 0}.rst-content .align-center{margin:auto}.rst-content .align-center:not(table){display:block}.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink{opacity:0;font-size:14px;font-family:FontAwesome;margin-left:.5em}.rst-content .code-block-caption .headerlink:focus,.rst-content .code-block-caption:hover .headerlink,.rst-content .eqno .headerlink:focus,.rst-content .eqno:hover .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink:focus,.rst-content .toctree-wrapper>p.caption:hover .headerlink,.rst-content dl dt .headerlink:focus,.rst-content dl dt:hover .headerlink,.rst-content h1 .headerlink:focus,.rst-content h1:hover .headerlink,.rst-content h2 .headerlink:focus,.rst-content h2:hover .headerlink,.rst-content h3 .headerlink:focus,.rst-content h3:hover .headerlink,.rst-content h4 .headerlink:focus,.rst-content h4:hover .headerlink,.rst-content h5 .headerlink:focus,.rst-content h5:hover .headerlink,.rst-content h6 .headerlink:focus,.rst-content h6:hover .headerlink,.rst-content p.caption .headerlink:focus,.rst-content p.caption:hover .headerlink,.rst-content p .headerlink:focus,.rst-content p:hover .headerlink,.rst-content table>caption .headerlink:focus,.rst-content table>caption:hover .headerlink{opacity:1}.rst-content p a{overflow-wrap:anywhere}.rst-content .wy-table td p,.rst-content .wy-table td ul,.rst-content .wy-table th p,.rst-content .wy-table th ul,.rst-content table.docutils td p,.rst-content table.docutils td ul,.rst-content table.docutils th p,.rst-content table.docutils th ul,.rst-content table.field-list td p,.rst-content table.field-list td ul,.rst-content table.field-list th p,.rst-content table.field-list th ul{font-size:inherit}.rst-content .btn:focus{outline:2px solid}.rst-content table>caption .headerlink:after{font-size:12px}.rst-content .centered{text-align:center}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:1px solid #e1e4e5}.rst-content .sidebar dl,.rst-content .sidebar p,.rst-content .sidebar ul{font-size:90%}.rst-content .sidebar .last,.rst-content .sidebar>:last-child{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif;font-weight:700;background:#e1e4e5;padding:6px 12px;margin:-24px -24px 24px;font-size:100%}.rst-content .highlighted{background:#f1c40f;box-shadow:0 0 0 2px #f1c40f;display:inline;font-weight:700}.rst-content .citation-reference,.rst-content .footnote-reference{vertical-align:baseline;position:relative;top:-.4em;line-height:0;font-size:90%}.rst-content .citation-reference>span.fn-bracket,.rst-content .footnote-reference>span.fn-bracket{display:none}.rst-content .hlist{width:100%}.rst-content dl dt span.classifier:before{content:\" : \"}.rst-content dl dt span.classifier-delimiter{display:none!important}html.writer-html4 .rst-content table.docutils.citation,html.writer-html4 .rst-content table.docutils.footnote{background:none;border:none}html.writer-html4 .rst-content table.docutils.citation td,html.writer-html4 .rst-content table.docutils.citation tr,html.writer-html4 .rst-content table.docutils.footnote td,html.writer-html4 .rst-content table.docutils.footnote tr{border:none;background-color:transparent!important;white-space:normal}html.writer-html4 .rst-content table.docutils.citation td.label,html.writer-html4 .rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{display:grid;grid-template-columns:auto minmax(80%,95%)}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{display:inline-grid;grid-template-columns:max-content auto}html.writer-html5 .rst-content aside.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content div.citation{display:grid;grid-template-columns:auto auto minmax(.65rem,auto) minmax(40%,95%)}html.writer-html5 .rst-content aside.citation>span.label,html.writer-html5 .rst-content aside.footnote>span.label,html.writer-html5 .rst-content div.citation>span.label{grid-column-start:1;grid-column-end:2}html.writer-html5 .rst-content aside.citation>span.backrefs,html.writer-html5 .rst-content aside.footnote>span.backrefs,html.writer-html5 .rst-content div.citation>span.backrefs{grid-column-start:2;grid-column-end:3;grid-row-start:1;grid-row-end:3}html.writer-html5 .rst-content aside.citation>p,html.writer-html5 .rst-content aside.footnote>p,html.writer-html5 .rst-content div.citation>p{grid-column-start:4;grid-column-end:5}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{margin-bottom:24px}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{padding-left:1rem}html.writer-html5 .rst-content dl.citation>dd,html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dd,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dd,html.writer-html5 .rst-content dl.footnote>dt{margin-bottom:0}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.footnote{font-size:.9rem}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.footnote>dt{margin:0 .5rem .5rem 0;line-height:1.2rem;word-break:break-all;font-weight:400}html.writer-html5 .rst-content dl.citation>dt>span.brackets:before,html.writer-html5 .rst-content dl.footnote>dt>span.brackets:before{content:\"[\"}html.writer-html5 .rst-content dl.citation>dt>span.brackets:after,html.writer-html5 .rst-content dl.footnote>dt>span.brackets:after{content:\"]\"}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref{text-align:left;font-style:italic;margin-left:.65rem;word-break:break-word;word-spacing:-.1rem;max-width:5rem}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref>a,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref>a{word-break:keep-all}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref>a:not(:first-child):before,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref>a:not(:first-child):before{content:\" \"}html.writer-html5 .rst-content dl.citation>dd,html.writer-html5 .rst-content dl.footnote>dd{margin:0 0 .5rem;line-height:1.2rem}html.writer-html5 .rst-content dl.citation>dd p,html.writer-html5 .rst-content dl.footnote>dd p{font-size:.9rem}html.writer-html5 .rst-content aside.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content div.citation{padding-left:1rem;padding-right:1rem;font-size:.9rem;line-height:1.2rem}html.writer-html5 .rst-content aside.citation p,html.writer-html5 .rst-content aside.footnote p,html.writer-html5 .rst-content div.citation p{font-size:.9rem;line-height:1.2rem;margin-bottom:12px}html.writer-html5 .rst-content aside.citation span.backrefs,html.writer-html5 .rst-content aside.footnote span.backrefs,html.writer-html5 .rst-content div.citation span.backrefs{text-align:left;font-style:italic;margin-left:.65rem;word-break:break-word;word-spacing:-.1rem;max-width:5rem}html.writer-html5 .rst-content aside.citation span.backrefs>a,html.writer-html5 .rst-content aside.footnote span.backrefs>a,html.writer-html5 .rst-content div.citation span.backrefs>a{word-break:keep-all}html.writer-html5 .rst-content aside.citation span.backrefs>a:not(:first-child):before,html.writer-html5 .rst-content aside.footnote span.backrefs>a:not(:first-child):before,html.writer-html5 .rst-content div.citation span.backrefs>a:not(:first-child):before{content:\" \"}html.writer-html5 .rst-content aside.citation span.label,html.writer-html5 .rst-content aside.footnote span.label,html.writer-html5 .rst-content div.citation span.label{line-height:1.2rem}html.writer-html5 .rst-content aside.citation-list,html.writer-html5 .rst-content aside.footnote-list,html.writer-html5 .rst-content div.citation-list{margin-bottom:24px}html.writer-html5 .rst-content dl.option-list kbd{font-size:.9rem}.rst-content table.docutils.footnote,html.writer-html4 .rst-content table.docutils.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content aside.footnote-list aside.footnote,html.writer-html5 .rst-content div.citation-list>div.citation,html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.footnote{color:grey}.rst-content table.docutils.footnote code,.rst-content table.docutils.footnote tt,html.writer-html4 .rst-content table.docutils.citation code,html.writer-html4 .rst-content table.docutils.citation tt,html.writer-html5 .rst-content aside.footnote-list aside.footnote code,html.writer-html5 .rst-content aside.footnote-list aside.footnote tt,html.writer-html5 .rst-content aside.footnote code,html.writer-html5 .rst-content aside.footnote tt,html.writer-html5 .rst-content div.citation-list>div.citation code,html.writer-html5 .rst-content div.citation-list>div.citation tt,html.writer-html5 .rst-content dl.citation code,html.writer-html5 .rst-content dl.citation tt,html.writer-html5 .rst-content dl.footnote code,html.writer-html5 .rst-content dl.footnote tt{color:#555}.rst-content .wy-table-responsive.citation,.rst-content .wy-table-responsive.footnote{margin-bottom:0}.rst-content .wy-table-responsive.citation+:not(.citation),.rst-content .wy-table-responsive.footnote+:not(.footnote){margin-top:24px}.rst-content .wy-table-responsive.citation:last-child,.rst-content .wy-table-responsive.footnote:last-child{margin-bottom:24px}.rst-content table.docutils th{border-color:#e1e4e5}html.writer-html5 .rst-content table.docutils th{border:1px solid #e1e4e5}html.writer-html5 .rst-content table.docutils td>p,html.writer-html5 .rst-content table.docutils th>p{line-height:1rem;margin-bottom:0;font-size:.9rem}.rst-content table.docutils td .last,.rst-content table.docutils td .last>:last-child{margin-bottom:0}.rst-content table.field-list,.rst-content table.field-list td{border:none}.rst-content table.field-list td p{line-height:inherit}.rst-content table.field-list td>strong{display:inline-block}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left}.rst-content code,.rst-content tt{color:#000;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;padding:2px 5px}.rst-content code big,.rst-content code em,.rst-content tt big,.rst-content tt em{font-size:100%!important;line-height:normal}.rst-content code.literal,.rst-content tt.literal{color:#e74c3c;white-space:normal}.rst-content code.xref,.rst-content tt.xref,a .rst-content code,a .rst-content tt{font-weight:700;color:#404040;overflow-wrap:normal}.rst-content kbd,.rst-content pre,.rst-content samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace}.rst-content a code,.rst-content a tt{color:#2980b9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:700;margin-bottom:12px}.rst-content dl ol,.rst-content dl p,.rst-content dl table,.rst-content dl ul{margin-bottom:12px}.rst-content dl dd{margin:0 0 12px 24px;line-height:24px}.rst-content dl dd>ol:last-child,.rst-content dl dd>p:last-child,.rst-content dl dd>table:last-child,.rst-content dl dd>ul:last-child{margin-bottom:0}html.writer-html4 .rst-content dl:not(.docutils),html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple){margin-bottom:24px}html.writer-html4 .rst-content dl:not(.docutils)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt{display:table;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980b9;border-top:3px solid #6ab0de;padding:6px;position:relative}html.writer-html4 .rst-content dl:not(.docutils)>dt:before,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt:before{color:#6ab0de}html.writer-html4 .rst-content dl:not(.docutils)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt{margin-bottom:6px;border:none;border-left:3px solid #ccc;background:#f0f0f0;color:#555}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils)>dt:first-child,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt:first-child{margin-top:0}html.writer-html4 .rst-content dl:not(.docutils) code.descclassname,html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descclassname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descname{background-color:transparent;border:none;padding:0;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descname{font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .optional,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .property,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .property{display:inline-block;padding-right:8px;max-width:100%}html.writer-html4 .rst-content dl:not(.docutils) .k,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .k{font-style:italic}html.writer-html4 .rst-content dl:not(.docutils) .descclassname,html.writer-html4 .rst-content dl:not(.docutils) .descname,html.writer-html4 .rst-content dl:not(.docutils) .sig-name,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .sig-name{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#000}.rst-content .viewcode-back,.rst-content .viewcode-link{display:inline-block;color:#27ae60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:700}.rst-content code.download,.rst-content tt.download{background:inherit;padding:inherit;font-weight:400;font-family:inherit;font-size:inherit;color:inherit;border:inherit;white-space:inherit}.rst-content code.download span:first-child,.rst-content tt.download span:first-child{-webkit-font-smoothing:subpixel-antialiased}.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{margin-right:4px}.rst-content .guilabel,.rst-content .menuselection{font-size:80%;font-weight:700;border-radius:4px;padding:2.4px 6px;margin:auto 2px}.rst-content .guilabel,.rst-content .menuselection{border:1px solid #7fbbe3;background:#e7f2fa}.rst-content :not(dl.option-list)>:not(dt):not(kbd):not(.kbd)>.kbd,.rst-content :not(dl.option-list)>:not(dt):not(kbd):not(.kbd)>kbd{color:inherit;font-size:80%;background-color:#fff;border:1px solid #a6a6a6;border-radius:4px;box-shadow:0 2px grey;padding:2.4px 6px;margin:auto 0}.rst-content .versionmodified{font-style:italic}@media screen and (max-width:480px){.rst-content .sidebar{width:100%}}span[id*=MathJax-Span]{color:#404040}.math{text-align:center}@font-face{font-family:Lato;src:url(fonts/lato-normal.woff2?bd03a2cc277bbbc338d464e679fe9942) format(\"woff2\"),url(fonts/lato-normal.woff?27bd77b9162d388cb8d4c4217c7c5e2a) format(\"woff\");font-weight:400;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold.woff2?cccb897485813c7c256901dbca54ecf2) format(\"woff2\"),url(fonts/lato-bold.woff?d878b6c29b10beca227e9eef4246111b) format(\"woff\");font-weight:700;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold-italic.woff2?0b6bb6725576b072c5d0b02ecdd1900d) format(\"woff2\"),url(fonts/lato-bold-italic.woff?9c7e4e9eb485b4a121c760e61bc3707c) format(\"woff\");font-weight:700;font-style:italic;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-normal-italic.woff2?4eb103b4d12be57cb1d040ed5e162e9d) format(\"woff2\"),url(fonts/lato-normal-italic.woff?f28f2d6482446544ef1ea1ccc6dd5892) format(\"woff\");font-weight:400;font-style:italic;font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:400;src:url(fonts/Roboto-Slab-Regular.woff2?7abf5b8d04d26a2cafea937019bca958) format(\"woff2\"),url(fonts/Roboto-Slab-Regular.woff?c1be9284088d487c5e3ff0a10a92e58c) format(\"woff\");font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:700;src:url(fonts/Roboto-Slab-Bold.woff2?9984f4a9bda09be08e83f2506954adbe) format(\"woff2\"),url(fonts/Roboto-Slab-Bold.woff?bed5564a116b05148e3b3bea6fb1162a) format(\"woff\");font-display:block}"
  },
  {
    "path": "doc/build/html/_static/doctools.js",
    "content": "/*\n * doctools.js\n * ~~~~~~~~~~~\n *\n * Base JavaScript utilities for all Sphinx HTML documentation.\n *\n * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.\n * :license: BSD, see LICENSE for details.\n *\n */\n\"use strict\";\n\nconst BLACKLISTED_KEY_CONTROL_ELEMENTS = new Set([\n  \"TEXTAREA\",\n  \"INPUT\",\n  \"SELECT\",\n  \"BUTTON\",\n]);\n\nconst _ready = (callback) => {\n  if (document.readyState !== \"loading\") {\n    callback();\n  } else {\n    document.addEventListener(\"DOMContentLoaded\", callback);\n  }\n};\n\n/**\n * Small JavaScript module for the documentation.\n */\nconst Documentation = {\n  init: () => {\n    Documentation.initDomainIndexTable();\n    Documentation.initOnKeyListeners();\n  },\n\n  /**\n   * i18n support\n   */\n  TRANSLATIONS: {},\n  PLURAL_EXPR: (n) => (n === 1 ? 0 : 1),\n  LOCALE: \"unknown\",\n\n  // gettext and ngettext don't access this so that the functions\n  // can safely bound to a different name (_ = Documentation.gettext)\n  gettext: (string) => {\n    const translated = Documentation.TRANSLATIONS[string];\n    switch (typeof translated) {\n      case \"undefined\":\n        return string; // no translation\n      case \"string\":\n        return translated; // translation exists\n      default:\n        return translated[0]; // (singular, plural) translation tuple exists\n    }\n  },\n\n  ngettext: (singular, plural, n) => {\n    const translated = Documentation.TRANSLATIONS[singular];\n    if (typeof translated !== \"undefined\")\n      return translated[Documentation.PLURAL_EXPR(n)];\n    return n === 1 ? singular : plural;\n  },\n\n  addTranslations: (catalog) => {\n    Object.assign(Documentation.TRANSLATIONS, catalog.messages);\n    Documentation.PLURAL_EXPR = new Function(\n      \"n\",\n      `return (${catalog.plural_expr})`\n    );\n    Documentation.LOCALE = catalog.locale;\n  },\n\n  /**\n   * helper function to focus on search bar\n   */\n  focusSearchBar: () => {\n    document.querySelectorAll(\"input[name=q]\")[0]?.focus();\n  },\n\n  /**\n   * Initialise the domain index toggle buttons\n   */\n  initDomainIndexTable: () => {\n    const toggler = (el) => {\n      const idNumber = el.id.substr(7);\n      const toggledRows = document.querySelectorAll(`tr.cg-${idNumber}`);\n      if (el.src.substr(-9) === \"minus.png\") {\n        el.src = `${el.src.substr(0, el.src.length - 9)}plus.png`;\n        toggledRows.forEach((el) => (el.style.display = \"none\"));\n      } else {\n        el.src = `${el.src.substr(0, el.src.length - 8)}minus.png`;\n        toggledRows.forEach((el) => (el.style.display = \"\"));\n      }\n    };\n\n    const togglerElements = document.querySelectorAll(\"img.toggler\");\n    togglerElements.forEach((el) =>\n      el.addEventListener(\"click\", (event) => toggler(event.currentTarget))\n    );\n    togglerElements.forEach((el) => (el.style.display = \"\"));\n    if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) togglerElements.forEach(toggler);\n  },\n\n  initOnKeyListeners: () => {\n    // only install a listener if it is really needed\n    if (\n      !DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS &&\n      !DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS\n    )\n      return;\n\n    document.addEventListener(\"keydown\", (event) => {\n      // bail for input elements\n      if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return;\n      // bail with special keys\n      if (event.altKey || event.ctrlKey || event.metaKey) return;\n\n      if (!event.shiftKey) {\n        switch (event.key) {\n          case \"ArrowLeft\":\n            if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break;\n\n            const prevLink = document.querySelector('link[rel=\"prev\"]');\n            if (prevLink && prevLink.href) {\n              window.location.href = prevLink.href;\n              event.preventDefault();\n            }\n            break;\n          case \"ArrowRight\":\n            if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break;\n\n            const nextLink = document.querySelector('link[rel=\"next\"]');\n            if (nextLink && nextLink.href) {\n              window.location.href = nextLink.href;\n              event.preventDefault();\n            }\n            break;\n        }\n      }\n\n      // some keyboard layouts may need Shift to get /\n      switch (event.key) {\n        case \"/\":\n          if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break;\n          Documentation.focusSearchBar();\n          event.preventDefault();\n      }\n    });\n  },\n};\n\n// quick alias for translations\nconst _ = Documentation.gettext;\n\n_ready(Documentation.init);\n"
  },
  {
    "path": "doc/build/html/_static/documentation_options.js",
    "content": "const DOCUMENTATION_OPTIONS = {\n    VERSION: '0.1.4',\n    LANGUAGE: 'en',\n    COLLAPSE_INDEX: false,\n    BUILDER: 'html',\n    FILE_SUFFIX: '.html',\n    LINK_SUFFIX: '.html',\n    HAS_SOURCE: true,\n    SOURCELINK_SUFFIX: '.txt',\n    NAVIGATION_WITH_KEYS: false,\n    SHOW_SEARCH_SUMMARY: true,\n    ENABLE_SEARCH_SHORTCUTS: true,\n};"
  },
  {
    "path": "doc/build/html/_static/jquery.js",
    "content": "/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */\n!function(e,t){\"use strict\";\"object\"==typeof module&&\"object\"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error(\"jQuery requires a window with a document\");return t(e)}:t(e)}(\"undefined\"!=typeof window?window:this,function(C,e){\"use strict\";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return\"function\"==typeof e&&\"number\"!=typeof e.nodeType&&\"function\"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement(\"script\");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+\"\":\"object\"==typeof e||\"function\"==typeof e?n[o.call(e)]||\"object\":typeof e}var f=\"3.6.0\",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&\"length\"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&(\"array\"===n||0===t||\"number\"==typeof t&&0<t&&t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for(\"boolean\"==typeof a&&(l=a,a=arguments[s]||{},s++),\"object\"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],\"__proto__\"!==t&&a!==r&&(l&&r&&(S.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},S.extend({expando:\"jQuery\"+(f+Math.random()).replace(/\\D/g,\"\"),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||\"[object Object]\"!==o.call(e))&&(!(t=r(e))||\"function\"==typeof(n=v.call(t,\"constructor\")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(p(Object(e))?S.merge(n,\"string\"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:y}),\"function\"==typeof Symbol&&(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each(\"Boolean Number String Function Array Date RegExp Object Error Symbol\".split(\" \"),function(e,t){n[\"[object \"+t+\"]\"]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,S=\"sizzle\"+1*new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),j=function(e,t){return e===t&&(l=!0),0},D={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R=\"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",M=\"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",I=\"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\"+M+\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",W=\"\\\\[\"+M+\"*(\"+I+\")(?:\"+M+\"*([*^$|!~]?=)\"+M+\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\"+I+\"))|)\"+M+\"*\\\\]\",F=\":(\"+I+\")(?:\\\\((('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\"+W+\")*)|.*)\\\\)|)\",B=new RegExp(M+\"+\",\"g\"),$=new RegExp(\"^\"+M+\"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\"+M+\"+$\",\"g\"),_=new RegExp(\"^\"+M+\"*,\"+M+\"*\"),z=new RegExp(\"^\"+M+\"*([>+~]|\"+M+\")\"+M+\"*\"),U=new RegExp(M+\"|>\"),X=new RegExp(F),V=new RegExp(\"^\"+I+\"$\"),G={ID:new RegExp(\"^#(\"+I+\")\"),CLASS:new RegExp(\"^\\\\.(\"+I+\")\"),TAG:new RegExp(\"^(\"+I+\"|[*])\"),ATTR:new RegExp(\"^\"+W),PSEUDO:new RegExp(\"^\"+F),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\"+M+\"*(even|odd|(([+-]|)(\\\\d*)n|)\"+M+\"*(?:([+-]|)\"+M+\"*(\\\\d+)|))\"+M+\"*\\\\)|)\",\"i\"),bool:new RegExp(\"^(?:\"+R+\")$\",\"i\"),needsContext:new RegExp(\"^\"+M+\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\"+M+\"*((?:-\\\\d)?\\\\d*)\"+M+\"*\\\\)|)(?=[^-]|$)\",\"i\")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\\d$/i,K=/^[^{]+\\{\\s*\\[native \\w/,Z=/^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,ee=/[+~]/,te=new RegExp(\"\\\\\\\\[\\\\da-fA-F]{1,6}\"+M+\"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\",\"g\"),ne=function(e,t){var n=\"0x\"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,ie=function(e,t){return t?\"\\0\"===e?\"\\ufffd\":e.slice(0,-1)+\"\\\\\"+e.charCodeAt(e.length-1).toString(16)+\" \":\"\\\\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&\"fieldset\"===e.nodeName.toLowerCase()},{dir:\"parentNode\",next:\"legend\"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],\"string\"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+\" \"]&&(!v||!v.test(t))&&(1!==p||\"object\"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute(\"id\"))?s=s.replace(re,ie):e.setAttribute(\"id\",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?\"#\"+s:\":scope\")+\" \"+xe(l[o]);c=l.join(\",\")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute(\"id\")}}}return g(t.replace($,\"$1\"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+\" \")>b.cacheLength&&delete e[r.shift()],e[t+\" \"]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement(\"fieldset\");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split(\"|\"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return\"input\"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return(\"input\"===t||\"button\"===t)&&e.type===n}}function ge(t){return function(e){return\"form\"in e?e.parentNode&&!1===e.disabled?\"label\"in e?\"label\"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:\"label\"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&\"undefined\"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||\"HTML\")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener(\"unload\",oe,!1):n.attachEvent&&n.attachEvent(\"onunload\",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement(\"div\")),\"undefined\"!=typeof e.querySelectorAll&&!e.querySelectorAll(\":scope fieldset div\").length}),d.attributes=ce(function(e){return e.className=\"i\",!e.getAttribute(\"className\")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment(\"\")),!e.getElementsByTagName(\"*\").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute(\"id\")===t}},b.find.ID=function(e,t){if(\"undefined\"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t=\"undefined\"!=typeof e.getAttributeNode&&e.getAttributeNode(\"id\");return t&&t.value===n}},b.find.ID=function(e,t){if(\"undefined\"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return\"undefined\"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if(\"*\"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if(\"undefined\"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML=\"<a id='\"+S+\"'></a><select id='\"+S+\"-\\r\\\\' msallowcapture=''><option selected=''></option></select>\",e.querySelectorAll(\"[msallowcapture^='']\").length&&v.push(\"[*^$]=\"+M+\"*(?:''|\\\"\\\")\"),e.querySelectorAll(\"[selected]\").length||v.push(\"\\\\[\"+M+\"*(?:value|\"+R+\")\"),e.querySelectorAll(\"[id~=\"+S+\"-]\").length||v.push(\"~=\"),(t=C.createElement(\"input\")).setAttribute(\"name\",\"\"),e.appendChild(t),e.querySelectorAll(\"[name='']\").length||v.push(\"\\\\[\"+M+\"*name\"+M+\"*=\"+M+\"*(?:''|\\\"\\\")\"),e.querySelectorAll(\":checked\").length||v.push(\":checked\"),e.querySelectorAll(\"a#\"+S+\"+*\").length||v.push(\".#.+[+~]\"),e.querySelectorAll(\"\\\\\\f\"),v.push(\"[\\\\r\\\\n\\\\f]\")}),ce(function(e){e.innerHTML=\"<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>\";var t=C.createElement(\"input\");t.setAttribute(\"type\",\"hidden\"),e.appendChild(t).setAttribute(\"name\",\"D\"),e.querySelectorAll(\"[name=d]\").length&&v.push(\"name\"+M+\"*[*^$|!~]?=\"),2!==e.querySelectorAll(\":enabled\").length&&v.push(\":enabled\",\":disabled\"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(\":disabled\").length&&v.push(\":enabled\",\":disabled\"),e.querySelectorAll(\"*,:x\"),v.push(\",.*:\")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,\"*\"),c.call(e,\"[s!='']:x\"),s.push(\"!=\",F)}),v=v.length&&new RegExp(v.join(\"|\")),s=s.length&&new RegExp(s.join(\"|\")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+\" \"]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!=C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&D.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+\"\").replace(re,ie)},se.error=function(e){throw new Error(\"Syntax error, unrecognized expression: \"+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(j),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n=\"\",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if(\"string\"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{\">\":{dir:\"parentNode\",first:!0},\" \":{dir:\"parentNode\"},\"+\":{dir:\"previousSibling\",first:!0},\"~\":{dir:\"previousSibling\"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||\"\").replace(te,ne),\"~=\"===e[2]&&(e[3]=\" \"+e[3]+\" \"),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),\"nth\"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*(\"even\"===e[3]||\"odd\"===e[3])),e[5]=+(e[7]+e[8]||\"odd\"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||\"\":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(\")\",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return\"*\"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+\" \"];return t||(t=new RegExp(\"(^|\"+M+\")\"+e+\"(\"+M+\"|$)\"))&&m(e,function(e){return t.test(\"string\"==typeof e.className&&e.className||\"undefined\"!=typeof e.getAttribute&&e.getAttribute(\"class\")||\"\")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?\"!=\"===r:!r||(t+=\"\",\"=\"===r?t===i:\"!=\"===r?t!==i:\"^=\"===r?i&&0===t.indexOf(i):\"*=\"===r?i&&-1<t.indexOf(i):\"$=\"===r?i&&t.slice(-i.length)===i:\"~=\"===r?-1<(\" \"+t.replace(B,\" \")+\" \").indexOf(i):\"|=\"===r&&(t===i||t.slice(0,i.length+1)===i+\"-\"))}},CHILD:function(h,e,t,g,v){var y=\"nth\"!==h.slice(0,3),m=\"last\"!==h.slice(-4),x=\"of-type\"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?\"nextSibling\":\"previousSibling\",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l=\"only\"===h&&!u&&\"nextSibling\"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[k,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[k,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error(\"unsupported pseudo: \"+e);return a[S]?a(o):1<a.length?(t=[e,e,\"\",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace($,\"$1\"));return s[S]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||\"\")||se.error(\"unsupported lang: \"+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute(\"xml:lang\")||e.getAttribute(\"lang\"))return(t=t.toLowerCase())===n||0===t.indexOf(n+\"-\")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&!!e.checked||\"option\"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&\"button\"===e.type||\"button\"===t},text:function(e){var t;return\"input\"===e.nodeName.toLowerCase()&&\"text\"===e.type&&(null==(t=e.getAttribute(\"type\"))||\"text\"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r=\"\";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&\"parentNode\"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[k,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[S]||(e[S]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===k&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[S]&&(v=Ce(v)),y&&!y[S]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||\"*\",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[\" \"],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[S]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:\" \"===e[s-2].type?\"*\":\"\"})).replace($,\"$1\"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+\" \"];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace($,\" \")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=A[e+\" \"];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[S]?i.push(a):o.push(a);(a=A(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l=\"0\",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG(\"*\",i),h=k+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t==C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument==C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(k=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(k=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l=\"function\"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&\"ID\"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=S.split(\"\").sort(j).join(\"\")===S,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement(\"fieldset\"))}),ce(function(e){return e.innerHTML=\"<a href='#'></a>\",\"#\"===e.firstChild.getAttribute(\"href\")})||fe(\"type|href|height|width\",function(e,t,n){if(!n)return e.getAttribute(t,\"type\"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML=\"<input/>\",e.firstChild.setAttribute(\"value\",\"\"),\"\"===e.firstChild.getAttribute(\"value\")})||fe(\"value\",function(e,t,n){if(!n&&\"input\"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute(\"disabled\")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);S.find=d,S.expr=d.selectors,S.expr[\":\"]=S.expr.pseudos,S.uniqueSort=S.unique=d.uniqueSort,S.text=d.getText,S.isXMLDoc=d.isXML,S.contains=d.contains,S.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&S(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=S.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):\"string\"!=typeof n?S.grep(e,function(e){return-1<i.call(n,e)!==r}):S.filter(n,e,r)}S.filter=function(e,t,n){var r=t[0];return n&&(e=\":not(\"+e+\")\"),1===t.length&&1===r.nodeType?S.find.matchesSelector(r,e)?[r]:[]:S.find.matches(e,S.grep(t,function(e){return 1===e.nodeType}))},S.fn.extend({find:function(e){var t,n,r=this.length,i=this;if(\"string\"!=typeof e)return this.pushStack(S(e).filter(function(){for(t=0;t<r;t++)if(S.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)S.find(e,i[t],n);return 1<r?S.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,\"string\"==typeof e&&k.test(e)?S(e):e||[],!1).length}});var D,q=/^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,\"string\"==typeof e){if(!(r=\"<\"===e[0]&&\">\"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(S.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a=\"string\"!=typeof e&&S(e);if(!k.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?S.uniqueSort(o):o)},index:function(e){return e?\"string\"==typeof e?i.call(S(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return h(e,\"parentNode\")},parentsUntil:function(e,t,n){return h(e,\"parentNode\",n)},next:function(e){return O(e,\"nextSibling\")},prev:function(e){return O(e,\"previousSibling\")},nextAll:function(e){return h(e,\"nextSibling\")},prevAll:function(e){return h(e,\"previousSibling\")},nextUntil:function(e,t,n){return h(e,\"nextSibling\",n)},prevUntil:function(e,t,n){return h(e,\"previousSibling\",n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,\"template\")&&(e=e.content||e),S.merge([],e.childNodes))}},function(r,i){S.fn[r]=function(e,t){var n=S.map(this,i,e);return\"Until\"!==r.slice(-5)&&(t=e),t&&\"string\"==typeof t&&(n=S.filter(t,n)),1<this.length&&(H[r]||S.uniqueSort(n),L.test(r)&&n.reverse()),this.pushStack(n)}});var P=/[^\\x20\\t\\r\\n\\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}S.Callbacks=function(r){var e,n;r=\"string\"==typeof r?(e=r,n={},S.each(e.match(P)||[],function(e,t){n[t]=!0}),n):S.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:\"\")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){S.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&\"string\"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return S.each(arguments,function(e,t){var n;while(-1<(n=S.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<S.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t=\"\",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=\"\"),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},S.extend({Deferred:function(e){var o=[[\"notify\",\"progress\",S.Callbacks(\"memory\"),S.Callbacks(\"memory\"),2],[\"resolve\",\"done\",S.Callbacks(\"once memory\"),S.Callbacks(\"once memory\"),0,\"resolved\"],[\"reject\",\"fail\",S.Callbacks(\"once memory\"),S.Callbacks(\"once memory\"),1,\"rejected\"]],i=\"pending\",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},\"catch\":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return S.Deferred(function(r){S.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+\"With\"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError(\"Thenable self-resolution\");t=e&&(\"object\"==typeof e||\"function\"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,R,s),l(u,o,M,s)):(u++,t.call(e,l(u,o,R,s),l(u,o,M,s),l(u,o,R,o.notifyWith))):(a!==R&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){S.Deferred.exceptionHook&&S.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==M&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(S.Deferred.getStackHook&&(t.stackTrace=S.Deferred.getStackHook()),C.setTimeout(t))}}return S.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:R,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:R)),o[2][3].add(l(0,e,m(n)?n:M))}).promise()},promise:function(e){return null!=e?S.extend(e,a):a}},s={};return S.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+\"With\"](this===s?void 0:this,arguments),this},s[t[0]+\"With\"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=S.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(I(e,o.done(a(t)).resolve,o.reject,!n),\"pending\"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)I(i[t],a(t),o.reject);return o.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&W.test(e.name)&&C.console.warn(\"jQuery.Deferred exception: \"+e.message,e.stack,t)},S.readyException=function(e){C.setTimeout(function(){throw e})};var F=S.Deferred();function B(){E.removeEventListener(\"DOMContentLoaded\",B),C.removeEventListener(\"load\",B),S.ready()}S.fn.ready=function(e){return F.then(e)[\"catch\"](function(e){S.readyException(e)}),this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--S.readyWait:S.isReady)||(S.isReady=!0)!==e&&0<--S.readyWait||F.resolveWith(E,[S])}}),S.ready.then=F.then,\"complete\"===E.readyState||\"loading\"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(S.ready):(E.addEventListener(\"DOMContentLoaded\",B),C.addEventListener(\"load\",B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if(\"object\"===w(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(S(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},_=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(_,\"ms-\").replace(z,U)}var V=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function G(){this.expando=S.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if(\"string\"==typeof t)i[X(t)]=n;else for(r in t)i[X(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][X(t)]},access:function(e,t,n){return void 0===t||t&&\"string\"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(X):(t=X(t))in r?[t]:t.match(P)||[]).length;while(n--)delete r[t[n]]}(void 0===t||S.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!S.isEmptyObject(t)}};var Y=new G,Q=new G,J=/^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,K=/[A-Z]/g;function Z(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r=\"data-\"+t.replace(K,\"-$&\").toLowerCase(),\"string\"==typeof(n=e.getAttribute(r))){try{n=\"true\"===(i=n)||\"false\"!==i&&(\"null\"===i?null:i===+i+\"\"?+i:J.test(i)?JSON.parse(i):i)}catch(e){}Q.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return Q.hasData(e)||Y.hasData(e)},data:function(e,t,n){return Q.access(e,t,n)},removeData:function(e,t){Q.remove(e,t)},_data:function(e,t,n){return Y.access(e,t,n)},_removeData:function(e,t){Y.remove(e,t)}}),S.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=Q.get(o),1===o.nodeType&&!Y.get(o,\"hasDataAttrs\"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf(\"data-\")&&(r=X(r.slice(5)),Z(o,r,i[r]));Y.set(o,\"hasDataAttrs\",!0)}return i}return\"object\"==typeof n?this.each(function(){Q.set(this,n)}):$(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=Q.get(o,n))?t:void 0!==(t=Z(o,n))?t:void 0;this.each(function(){Q.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){Q.remove(this,e)})}}),S.extend({queue:function(e,t,n){var r;if(e)return t=(t||\"fx\")+\"queue\",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,S.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||\"fx\";var n=S.queue(e,t),r=n.length,i=n.shift(),o=S._queueHooks(e,t);\"inprogress\"===i&&(i=n.shift(),r--),i&&(\"fx\"===t&&n.unshift(\"inprogress\"),delete o.stop,i.call(e,function(){S.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+\"queueHooks\";return Y.get(e,n)||Y.access(e,n,{empty:S.Callbacks(\"once memory\").add(function(){Y.remove(e,[t+\"queue\",n])})})}}),S.fn.extend({queue:function(t,n){var e=2;return\"string\"!=typeof t&&(n=t,t=\"fx\",e--),arguments.length<e?S.queue(this[0],t):void 0===n?this:this.each(function(){var e=S.queue(this,t,n);S._queueHooks(this,t),\"fx\"===t&&\"inprogress\"!==e[0]&&S.dequeue(this,t)})},dequeue:function(e){return this.each(function(){S.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||\"fx\",[])},promise:function(e,t){var n,r=1,i=S.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};\"string\"!=typeof e&&(t=e,e=void 0),e=e||\"fx\";while(a--)(n=Y.get(o[a],e+\"queueHooks\"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var ee=/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/.source,te=new RegExp(\"^(?:([+-])=|)(\"+ee+\")([a-z%]*)$\",\"i\"),ne=[\"Top\",\"Right\",\"Bottom\",\"Left\"],re=E.documentElement,ie=function(e){return S.contains(e.ownerDocument,e)},oe={composed:!0};re.getRootNode&&(ie=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(oe)===e.ownerDocument});var ae=function(e,t){return\"none\"===(e=t||e).style.display||\"\"===e.style.display&&ie(e)&&\"none\"===S.css(e,\"display\")};function se(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return S.css(e,t,\"\")},u=s(),l=n&&n[3]||(S.cssNumber[t]?\"\":\"px\"),c=e.nodeType&&(S.cssNumber[t]||\"px\"!==l&&+u)&&te.exec(S.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)S.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,S.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ue={};function le(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?(\"none\"===n&&(l[c]=Y.get(r,\"display\")||null,l[c]||(r.style.display=\"\")),\"\"===r.style.display&&ae(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ue[s])||(o=a.body.appendChild(a.createElement(s)),u=S.css(o,\"display\"),o.parentNode.removeChild(o),\"none\"===u&&(u=\"block\"),ue[s]=u)))):\"none\"!==n&&(l[c]=\"none\",Y.set(r,\"display\",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}S.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return\"boolean\"==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?S(this).show():S(this).hide()})}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i,he=/^$|^module$|\\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement(\"div\")),(fe=E.createElement(\"input\")).setAttribute(\"type\",\"radio\"),fe.setAttribute(\"checked\",\"checked\"),fe.setAttribute(\"name\",\"t\"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML=\"<textarea>x</textarea>\",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML=\"<option></option>\",y.option=!!ce.lastChild;var ge={thead:[1,\"<table>\",\"</table>\"],col:[2,\"<table><colgroup>\",\"</colgroup></table>\"],tr:[2,\"<table><tbody>\",\"</tbody></table>\"],td:[3,\"<table><tbody><tr>\",\"</tr></tbody></table>\"],_default:[0,\"\",\"\"]};function ve(e,t){var n;return n=\"undefined\"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||\"*\"):\"undefined\"!=typeof e.querySelectorAll?e.querySelectorAll(t||\"*\"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Y.set(e[n],\"globalEval\",!t||Y.get(t[n],\"globalEval\"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,y.option||(ge.optgroup=ge.option=[1,\"<select multiple='multiple'>\",\"</select>\"]);var me=/<|&#?\\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if(\"object\"===w(o))S.merge(p,o.nodeType?[o]:o);else if(me.test(o)){a=a||f.appendChild(t.createElement(\"div\")),s=(de.exec(o)||[\"\",\"\"])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+S.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;S.merge(p,a.childNodes),(a=f.firstChild).textContent=\"\"}else p.push(t.createTextNode(o));f.textContent=\"\",d=0;while(o=p[d++])if(r&&-1<S.inArray(o,r))i&&i.push(o);else if(l=ie(o),a=ve(f.appendChild(o),\"script\"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||\"\")&&n.push(o)}return f}var be=/^([^.]*)(?:\\.(.+)|)/;function we(){return!0}function Te(){return!1}function Ce(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==(\"focus\"===t)}function Ee(e,t,n,r,i,o){var a,s;if(\"object\"==typeof t){for(s in\"string\"!=typeof n&&(r=r||n,n=void 0),t)Ee(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&(\"string\"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Te;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return S().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=S.guid++)),e.each(function(){S.event.add(this,t,i,r,n)})}function Se(e,i,o){o?(Y.set(e,i,!1),S.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(S.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n&&n.value}else r.length&&(Y.set(this,i,{value:S.event.trigger(S.extend(r[0],S.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,i)&&S.event.add(e,i,we)}S.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(t);if(V(t)){n.handler&&(n=(o=n).handler,i=o.selector),i&&S.find.matchesSelector(re,i),n.guid||(n.guid=S.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(e){return\"undefined\"!=typeof S&&S.event.triggered!==e.type?S.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||\"\").match(P)||[\"\"]).length;while(l--)d=g=(s=be.exec(e[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d&&(f=S.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=S.event.special[d]||{},c=S.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&S.expr.match.needsContext.test(i),namespace:h.join(\".\")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),S.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&&Y.get(e);if(v&&(u=v.events)){l=(t=(t||\"\").match(P)||[\"\"]).length;while(l--)if(d=g=(s=be.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d){f=S.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp(\"(^|\\\\.)\"+h.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&(\"**\"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||S.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)S.event.remove(e,d+t[l],n,r,!0);S.isEmptyObject(u)&&Y.remove(e,\"handle events\")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=S.event.fix(e),l=(Y.get(this,\"events\")||Object.create(null))[u.type]||[],c=S.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){a=S.event.handlers.call(this,u,l),t=0;while((i=a[t++])&&!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!u.isImmediatePropagationStopped())u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!(\"click\"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&(\"click\"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+\" \"]&&(a[i]=r.needsContext?-1<S(i,this).index(l):S.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(S.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,\"input\")&&Se(t,\"click\",we),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,\"input\")&&Se(t,\"click\"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,\"input\")&&Y.get(t,\"click\")||A(t,\"a\")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?we:Te,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&S.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:Te,isPropagationStopped:Te,isImmediatePropagationStopped:Te,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=we,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=we,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=we,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,\"char\":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},S.event.addProp),S.each({focus:\"focusin\",blur:\"focusout\"},function(e,t){S.event.special[e]={setup:function(){return Se(this,e,Ce),!1},trigger:function(){return Se(this,e),!0},_default:function(){return!0},delegateType:t}}),S.each({mouseenter:\"mouseover\",mouseleave:\"mouseout\",pointerenter:\"pointerover\",pointerleave:\"pointerout\"},function(e,i){S.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||S.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),S.fn.extend({on:function(e,t,n,r){return Ee(this,e,t,n,r)},one:function(e,t,n,r){return Ee(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,S(e.delegateTarget).off(r.namespace?r.origType+\".\"+r.namespace:r.origType,r.selector,r.handler),this;if(\"object\"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&\"function\"!=typeof t||(n=t,t=void 0),!1===n&&(n=Te),this.each(function(){S.event.remove(this,e,n,t)})}});var ke=/<script|<style|<link/i,Ae=/checked\\s*(?:[^=]|=\\s*.checked.)/i,Ne=/^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;function je(e,t){return A(e,\"table\")&&A(11!==t.nodeType?t:t.firstChild,\"tr\")&&S(e).children(\"tbody\")[0]||e}function De(e){return e.type=(null!==e.getAttribute(\"type\"))+\"/\"+e.type,e}function qe(e){return\"true/\"===(e.type||\"\").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute(\"type\"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,\"handle events\"),s)for(n=0,r=s[i].length;n<r;n++)S.event.add(t,i,s[i][n]);Q.hasData(e)&&(o=Q.access(e),a=S.extend({},o),Q.set(t,a))}}function He(n,r,i,o){r=g(r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&\"string\"==typeof d&&!y.checkClone&&Ae.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),He(t,r,i,o)});if(f&&(t=(e=xe(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=S.map(ve(e,\"script\"),De)).length;c<f;c++)u=e,c!==p&&(u=S.clone(u,!0,!0),s&&S.merge(a,ve(u,\"script\"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,S.map(a,qe),c=0;c<s;c++)u=a[c],he.test(u.type||\"\")&&!Y.access(u,\"globalEval\")&&S.contains(l,u)&&(u.src&&\"module\"!==(u.type||\"\").toLowerCase()?S._evalUrl&&!u.noModule&&S._evalUrl(u.src,{nonce:u.nonce||u.getAttribute(\"nonce\")},l):b(u.textContent.replace(Ne,\"\"),u,l))}return n}function Oe(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||S.cleanData(ve(r)),r.parentNode&&(n&&ie(r)&&ye(ve(r,\"script\")),r.parentNode.removeChild(r));return e}S.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=ie(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||S.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,\"input\"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:\"input\"!==l&&\"textarea\"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Le(o[r],a[r]);else Le(e,c);return 0<(a=ve(c,\"script\")).length&&ye(a,!f&&ve(e,\"script\")),c},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),S.fn.extend({detach:function(e){return Oe(this,e,!0)},remove:function(e){return Oe(this,e)},text:function(e){return $(this,function(e){return void 0===e?S.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return He(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||je(this,e).appendChild(e)})},prepend:function(){return He(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=je(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(S.cleanData(ve(e,!1)),e.textContent=\"\");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return S.clone(this,e,t)})},html:function(e){return $(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if(\"string\"==typeof e&&!ke.test(e)&&!ge[(de.exec(e)||[\"\",\"\"])[1].toLowerCase()]){e=S.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(S.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return He(this,arguments,function(e){var t=this.parentNode;S.inArray(this,n)<0&&(S.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),S.each({appendTo:\"append\",prependTo:\"prepend\",insertBefore:\"before\",insertAfter:\"after\",replaceAll:\"replaceWith\"},function(e,a){S.fn[e]=function(e){for(var t,n=[],r=S(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),S(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var Pe=new RegExp(\"^(\"+ee+\")(?!px)[a-z%]+$\",\"i\"),Re=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Me=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Ie=new RegExp(ne.join(\"|\"),\"i\");function We(e,t,n){var r,i,o,a,s=e.style;return(n=n||Re(e))&&(\"\"!==(a=n.getPropertyValue(t)||n[t])||ie(e)||(a=S.style(e,t)),!y.pixelBoxStyles()&&Pe.test(a)&&Ie.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+\"\":a}function Fe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText=\"position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0\",l.style.cssText=\"position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%\",re.appendChild(u).appendChild(l);var e=C.getComputedStyle(l);n=\"1%\"!==e.top,s=12===t(e.marginLeft),l.style.right=\"60%\",o=36===t(e.right),r=36===t(e.width),l.style.position=\"absolute\",i=12===t(l.offsetWidth/3),re.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=E.createElement(\"div\"),l=E.createElement(\"div\");l.style&&(l.style.backgroundClip=\"content-box\",l.cloneNode(!0).style.backgroundClip=\"\",y.clearCloneStyle=\"content-box\"===l.style.backgroundClip,S.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return null==a&&(e=E.createElement(\"table\"),t=E.createElement(\"tr\"),n=E.createElement(\"div\"),e.style.cssText=\"position:absolute;left:-11111px;border-collapse:separate\",t.style.cssText=\"border:1px solid\",t.style.height=\"1px\",n.style.height=\"9px\",n.style.display=\"block\",re.appendChild(e).appendChild(t).appendChild(n),r=C.getComputedStyle(t),a=parseInt(r.height,10)+parseInt(r.borderTopWidth,10)+parseInt(r.borderBottomWidth,10)===t.offsetHeight,re.removeChild(e)),a}}))}();var Be=[\"Webkit\",\"Moz\",\"ms\"],$e=E.createElement(\"div\").style,_e={};function ze(e){var t=S.cssProps[e]||_e[e];return t||(e in $e?e:_e[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Be.length;while(n--)if((e=Be[n]+t)in $e)return e}(e)||e)}var Ue=/^(none|table(?!-c[ea]).+)/,Xe=/^--/,Ve={position:\"absolute\",visibility:\"hidden\",display:\"block\"},Ge={letterSpacing:\"0\",fontWeight:\"400\"};function Ye(e,t,n){var r=te.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||\"px\"):t}function Qe(e,t,n,r,i,o){var a=\"width\"===t?1:0,s=0,u=0;if(n===(r?\"border\":\"content\"))return 0;for(;a<4;a+=2)\"margin\"===n&&(u+=S.css(e,n+ne[a],!0,i)),r?(\"content\"===n&&(u-=S.css(e,\"padding\"+ne[a],!0,i)),\"margin\"!==n&&(u-=S.css(e,\"border\"+ne[a]+\"Width\",!0,i))):(u+=S.css(e,\"padding\"+ne[a],!0,i),\"padding\"!==n?u+=S.css(e,\"border\"+ne[a]+\"Width\",!0,i):s+=S.css(e,\"border\"+ne[a]+\"Width\",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Je(e,t,n){var r=Re(e),i=(!y.boxSizingReliable()||n)&&\"border-box\"===S.css(e,\"boxSizing\",!1,r),o=i,a=We(e,t,r),s=\"offset\"+t[0].toUpperCase()+t.slice(1);if(Pe.test(a)){if(!n)return a;a=\"auto\"}return(!y.boxSizingReliable()&&i||!y.reliableTrDimensions()&&A(e,\"tr\")||\"auto\"===a||!parseFloat(a)&&\"inline\"===S.css(e,\"display\",!1,r))&&e.getClientRects().length&&(i=\"border-box\"===S.css(e,\"boxSizing\",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Qe(e,t,n||(i?\"border\":\"content\"),o,r,a)+\"px\"}function Ke(e,t,n,r,i){return new Ke.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=We(e,\"opacity\");return\"\"===n?\"1\":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Xe.test(t),l=e.style;if(u||(t=ze(s)),a=S.cssHooks[t]||S.cssHooks[s],void 0===n)return a&&\"get\"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];\"string\"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o=\"number\"),null!=n&&n==n&&(\"number\"!==o||u||(n+=i&&i[3]||(S.cssNumber[s]?\"\":\"px\")),y.clearCloneStyle||\"\"!==n||0!==t.indexOf(\"background\")||(l[t]=\"inherit\"),a&&\"set\"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Xe.test(t)||(t=ze(s)),(a=S.cssHooks[t]||S.cssHooks[s])&&\"get\"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=We(e,t,r)),\"normal\"===i&&t in Ge&&(i=Ge[t]),\"\"===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),S.each([\"height\",\"width\"],function(e,u){S.cssHooks[u]={get:function(e,t,n){if(t)return!Ue.test(S.css(e,\"display\"))||e.getClientRects().length&&e.getBoundingClientRect().width?Je(e,u,n):Me(e,Ve,function(){return Je(e,u,n)})},set:function(e,t,n){var r,i=Re(e),o=!y.scrollboxSize()&&\"absolute\"===i.position,a=(o||n)&&\"border-box\"===S.css(e,\"boxSizing\",!1,i),s=n?Qe(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e[\"offset\"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-Qe(e,u,\"border\",!1,i)-.5)),s&&(r=te.exec(t))&&\"px\"!==(r[3]||\"px\")&&(e.style[u]=t,t=S.css(e,u)),Ye(0,t,s)}}}),S.cssHooks.marginLeft=Fe(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(We(e,\"marginLeft\"))||e.getBoundingClientRect().left-Me(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+\"px\"}),S.each({margin:\"\",padding:\"\",border:\"Width\"},function(i,o){S.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r=\"string\"==typeof e?e.split(\" \"):[e];t<4;t++)n[i+ne[t]+o]=r[t]||r[t-2]||r[0];return n}},\"margin\"!==i&&(S.cssHooks[i+o].set=Ye)}),S.fn.extend({css:function(e,t){return $(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Re(e),i=t.length;a<i;a++)o[t[a]]=S.css(e,t[a],!1,r);return o}return void 0!==n?S.style(e,t,n):S.css(e,t)},e,t,1<arguments.length)}}),((S.Tween=Ke).prototype={constructor:Ke,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||S.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(S.cssNumber[n]?\"\":\"px\")},cur:function(){var e=Ke.propHooks[this.prop];return e&&e.get?e.get(this):Ke.propHooks._default.get(this)},run:function(e){var t,n=Ke.propHooks[this.prop];return this.options.duration?this.pos=t=S.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):Ke.propHooks._default.set(this),this}}).init.prototype=Ke.prototype,(Ke.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=S.css(e.elem,e.prop,\"\"))&&\"auto\"!==t?t:0},set:function(e){S.fx.step[e.prop]?S.fx.step[e.prop](e):1!==e.elem.nodeType||!S.cssHooks[e.prop]&&null==e.elem.style[ze(e.prop)]?e.elem[e.prop]=e.now:S.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=Ke.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},S.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:\"swing\"},S.fx=Ke.prototype.init,S.fx.step={};var Ze,et,tt,nt,rt=/^(?:toggle|show|hide)$/,it=/queueHooks$/;function ot(){et&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(ot):C.setTimeout(ot,S.fx.interval),S.fx.tick())}function at(){return C.setTimeout(function(){Ze=void 0}),Ze=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i[\"margin\"+(n=ne[r])]=i[\"padding\"+n]=e;return t&&(i.opacity=i.width=e),i}function ut(e,t,n){for(var r,i=(lt.tweeners[t]||[]).concat(lt.tweeners[\"*\"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function lt(o,e,t){var n,a,r=0,i=lt.prefilters.length,s=S.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=Ze||at(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:S.extend({},e),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},t),originalProperties:e,originalOptions:t,startTime:Ze||at(),duration:t.duration,tweens:[],createTween:function(e,t){var n=S.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=X(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=S.cssHooks[r])&&\"expand\"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=lt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(S._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return S.map(c,ut,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),S.fx.timer(S.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}S.Animation=S.extend(lt,{tweeners:{\"*\":[function(e,t){var n=this.createTween(e,t);return se(n.elem,e,te.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=[\"*\"]):e=e.match(P);for(var n,r=0,i=e.length;r<i;r++)n=e[r],lt.tweeners[n]=lt.tweeners[n]||[],lt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f=\"width\"in t||\"height\"in t,p=this,d={},h=e.style,g=e.nodeType&&ae(e),v=Y.get(e,\"fxshow\");for(r in n.queue||(null==(a=S._queueHooks(e,\"fx\")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,S.queue(e,\"fx\").length||a.empty.fire()})})),t)if(i=t[r],rt.test(i)){if(delete t[r],o=o||\"toggle\"===i,i===(g?\"hide\":\"show\")){if(\"show\"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||S.style(e,r)}if((u=!S.isEmptyObject(t))||!S.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Y.get(e,\"display\")),\"none\"===(c=S.css(e,\"display\"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=S.css(e,\"display\"),le([e]))),(\"inline\"===c||\"inline-block\"===c&&null!=l)&&\"none\"===S.css(e,\"float\")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l=\"none\"===c?\"\":c)),h.display=\"inline-block\")),n.overflow&&(h.overflow=\"hidden\",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?\"hidden\"in v&&(g=v.hidden):v=Y.access(e,\"fxshow\",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done(function(){for(r in g||le([e]),Y.remove(e,\"fxshow\"),d)S.style(e,r,d[r])})),u=ut(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?lt.prefilters.unshift(e):lt.prefilters.push(e)}}),S.speed=function(e,t,n){var r=e&&\"object\"==typeof e?S.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return S.fx.off?r.duration=0:\"number\"!=typeof r.duration&&(r.duration in S.fx.speeds?r.duration=S.fx.speeds[r.duration]:r.duration=S.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue=\"fx\"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&S.dequeue(this,r.queue)},r},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css(\"opacity\",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=S.isEmptyObject(t),o=S.speed(e,n,r),a=function(){var e=lt(this,S.extend({},t),o);(i||Y.get(this,\"finish\"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return\"string\"!=typeof i&&(o=e,e=i,i=void 0),e&&this.queue(i||\"fx\",[]),this.each(function(){var e=!0,t=null!=i&&i+\"queueHooks\",n=S.timers,r=Y.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&it.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||S.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||\"fx\"),this.each(function(){var e,t=Y.get(this),n=t[a+\"queue\"],r=t[a+\"queueHooks\"],i=S.timers,o=n?n.length:0;for(t.finish=!0,S.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),S.each([\"toggle\",\"show\",\"hide\"],function(e,r){var i=S.fn[r];S.fn[r]=function(e,t,n){return null==e||\"boolean\"==typeof e?i.apply(this,arguments):this.animate(st(r,!0),e,t,n)}}),S.each({slideDown:st(\"show\"),slideUp:st(\"hide\"),slideToggle:st(\"toggle\"),fadeIn:{opacity:\"show\"},fadeOut:{opacity:\"hide\"},fadeToggle:{opacity:\"toggle\"}},function(e,r){S.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(Ze=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||S.fx.stop(),Ze=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){et||(et=!0,ot())},S.fx.stop=function(){et=null},S.fx.speeds={slow:600,fast:200,_default:400},S.fn.delay=function(r,e){return r=S.fx&&S.fx.speeds[r]||r,e=e||\"fx\",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},tt=E.createElement(\"input\"),nt=E.createElement(\"select\").appendChild(E.createElement(\"option\")),tt.type=\"checkbox\",y.checkOn=\"\"!==tt.value,y.optSelected=nt.selected,(tt=E.createElement(\"input\")).value=\"t\",tt.type=\"radio\",y.radioValue=\"t\"===tt.value;var ct,ft=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return $(this,S.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){S.removeAttr(this,e)})}}),S.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return\"undefined\"==typeof e.getAttribute?S.prop(e,t,n):(1===o&&S.isXMLDoc(e)||(i=S.attrHooks[t.toLowerCase()]||(S.expr.match.bool.test(t)?ct:void 0)),void 0!==n?null===n?void S.removeAttr(e,t):i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+\"\"),n):i&&\"get\"in i&&null!==(r=i.get(e,t))?r:null==(r=S.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&\"radio\"===t&&A(e,\"input\")){var n=e.value;return e.setAttribute(\"type\",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ct={set:function(e,t,n){return!1===t?S.removeAttr(e,n):e.setAttribute(n,n),n}},S.each(S.expr.match.bool.source.match(/\\w+/g),function(e,t){var a=ft[t]||S.find.attr;ft[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=ft[o],ft[o]=r,r=null!=a(e,t,n)?o:null,ft[o]=i),r}});var pt=/^(?:input|select|textarea|button)$/i,dt=/^(?:a|area)$/i;function ht(e){return(e.match(P)||[]).join(\" \")}function gt(e){return e.getAttribute&&e.getAttribute(\"class\")||\"\"}function vt(e){return Array.isArray(e)?e:\"string\"==typeof e&&e.match(P)||[]}S.fn.extend({prop:function(e,t){return $(this,S.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[S.propFix[e]||e]})}}),S.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&S.isXMLDoc(e)||(t=S.propFix[t]||t,i=S.propHooks[t]),void 0!==n?i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&\"get\"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=S.find.attr(e,\"tabindex\");return t?parseInt(t,10):pt.test(e.nodeName)||dt.test(e.nodeName)&&e.href?0:-1}}},propFix:{\"for\":\"htmlFor\",\"class\":\"className\"}}),y.optSelected||(S.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),S.each([\"tabIndex\",\"readOnly\",\"maxLength\",\"cellSpacing\",\"cellPadding\",\"rowSpan\",\"colSpan\",\"useMap\",\"frameBorder\",\"contentEditable\"],function(){S.propFix[this.toLowerCase()]=this}),S.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).addClass(t.call(this,e,gt(this)))});if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&\" \"+ht(i)+\" \"){a=0;while(o=e[a++])r.indexOf(\" \"+o+\" \")<0&&(r+=o+\" \");i!==(s=ht(r))&&n.setAttribute(\"class\",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).removeClass(t.call(this,e,gt(this)))});if(!arguments.length)return this.attr(\"class\",\"\");if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&\" \"+ht(i)+\" \"){a=0;while(o=e[a++])while(-1<r.indexOf(\" \"+o+\" \"))r=r.replace(\" \"+o+\" \",\" \");i!==(s=ht(r))&&n.setAttribute(\"class\",s)}return this},toggleClass:function(i,t){var o=typeof i,a=\"string\"===o||Array.isArray(i);return\"boolean\"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){S(this).toggleClass(i.call(this,e,gt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=S(this),r=vt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&\"boolean\"!==o||((e=gt(this))&&Y.set(this,\"__className__\",e),this.setAttribute&&this.setAttribute(\"class\",e||!1===i?\"\":Y.get(this,\"__className__\")||\"\"))})},hasClass:function(e){var t,n,r=0;t=\" \"+e+\" \";while(n=this[r++])if(1===n.nodeType&&-1<(\" \"+ht(gt(n))+\" \").indexOf(t))return!0;return!1}});var yt=/\\r/g;S.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,S(this).val()):n)?t=\"\":\"number\"==typeof t?t+=\"\":Array.isArray(t)&&(t=S.map(t,function(e){return null==e?\"\":e+\"\"})),(r=S.valHooks[this.type]||S.valHooks[this.nodeName.toLowerCase()])&&\"set\"in r&&void 0!==r.set(this,t,\"value\")||(this.value=t))})):t?(r=S.valHooks[t.type]||S.valHooks[t.nodeName.toLowerCase()])&&\"get\"in r&&void 0!==(e=r.get(t,\"value\"))?e:\"string\"==typeof(e=t.value)?e.replace(yt,\"\"):null==e?\"\":e:void 0}}),S.extend({valHooks:{option:{get:function(e){var t=S.find.attr(e,\"value\");return null!=t?t:ht(S.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a=\"select-one\"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,\"optgroup\"))){if(t=S(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=S.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<S.inArray(S.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),S.each([\"radio\",\"checkbox\"],function(){S.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<S.inArray(S(e).val(),t)}},y.checkOn||(S.valHooks[this].get=function(e){return null===e.getAttribute(\"value\")?\"on\":e.value})}),y.focusin=\"onfocusin\"in C;var mt=/^(?:focusinfocus|focusoutblur)$/,xt=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,\"type\")?e.type:e,h=v.call(e,\"namespace\")?e.namespace.split(\".\"):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!mt.test(d+S.event.triggered)&&(-1<d.indexOf(\".\")&&(d=(h=d.split(\".\")).shift(),h.sort()),u=d.indexOf(\":\")<0&&\"on\"+d,(e=e[S.expando]?e:new S.Event(d,\"object\"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join(\".\"),e.rnamespace=e.namespace?new RegExp(\"(^|\\\\.)\"+h.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:S.makeArray(t,[e]),c=S.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,mt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Y.get(o,\"events\")||Object.create(null))[e.type]&&Y.get(o,\"handle\"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&V(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!V(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),S.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,xt),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,xt),S.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=S.extend(new S.Event,n,{type:e,isSimulated:!0});S.event.trigger(r,null,t)}}),S.fn.extend({trigger:function(e,t){return this.each(function(){S.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return S.event.trigger(e,t,n,!0)}}),y.focusin||S.each({focus:\"focusin\",blur:\"focusout\"},function(n,r){var i=function(e){S.event.simulate(r,e.target,S.event.fix(e))};S.event.special[r]={setup:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r);t||e.addEventListener(n,i,!0),Y.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r)-1;t?Y.access(e,r,t):(e.removeEventListener(n,i,!0),Y.remove(e,r))}}});var bt=C.location,wt={guid:Date.now()},Tt=/\\?/;S.parseXML=function(e){var t,n;if(!e||\"string\"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,\"text/xml\")}catch(e){}return n=t&&t.getElementsByTagName(\"parsererror\")[0],t&&!n||S.error(\"Invalid XML: \"+(n?S.map(n.childNodes,function(e){return e.textContent}).join(\"\\n\"):e)),t};var Ct=/\\[\\]$/,Et=/\\r?\\n/g,St=/^(?:submit|button|image|reset|file)$/i,kt=/^(?:input|select|textarea|keygen)/i;function At(n,e,r,i){var t;if(Array.isArray(e))S.each(e,function(e,t){r||Ct.test(n)?i(n,t):At(n+\"[\"+(\"object\"==typeof t&&null!=t?e:\"\")+\"]\",t,r,i)});else if(r||\"object\"!==w(e))i(n,e);else for(t in e)At(n+\"[\"+t+\"]\",e[t],r,i)}S.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+\"=\"+encodeURIComponent(null==n?\"\":n)};if(null==e)return\"\";if(Array.isArray(e)||e.jquery&&!S.isPlainObject(e))S.each(e,function(){i(this.name,this.value)});else for(n in e)At(n,e[n],t,i);return r.join(\"&\")},S.fn.extend({serialize:function(){return S.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=S.prop(this,\"elements\");return e?S.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!S(this).is(\":disabled\")&&kt.test(this.nodeName)&&!St.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=S(this).val();return null==n?null:Array.isArray(n)?S.map(n,function(e){return{name:t.name,value:e.replace(Et,\"\\r\\n\")}}):{name:t.name,value:n.replace(Et,\"\\r\\n\")}}).get()}});var Nt=/%20/g,jt=/#.*$/,Dt=/([?&])_=[^&]*/,qt=/^(.*?):[ \\t]*([^\\r\\n]*)$/gm,Lt=/^(?:GET|HEAD)$/,Ht=/^\\/\\//,Ot={},Pt={},Rt=\"*/\".concat(\"*\"),Mt=E.createElement(\"a\");function It(o){return function(e,t){\"string\"!=typeof e&&(t=e,e=\"*\");var n,r=0,i=e.toLowerCase().match(P)||[];if(m(t))while(n=i[r++])\"+\"===n[0]?(n=n.slice(1)||\"*\",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function Wt(t,i,o,a){var s={},u=t===Pt;function l(e){var r;return s[e]=!0,S.each(t[e]||[],function(e,t){var n=t(i,o,a);return\"string\"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s[\"*\"]&&l(\"*\")}function Ft(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&S.extend(!0,e,r),e}Mt.href=bt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:bt.href,type:\"GET\",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol),global:!0,processData:!0,async:!0,contentType:\"application/x-www-form-urlencoded; charset=UTF-8\",accepts:{\"*\":Rt,text:\"text/plain\",html:\"text/html\",xml:\"application/xml, text/xml\",json:\"application/json, text/javascript\"},contents:{xml:/\\bxml\\b/,html:/\\bhtml/,json:/\\bjson\\b/},responseFields:{xml:\"responseXML\",text:\"responseText\",json:\"responseJSON\"},converters:{\"* text\":String,\"text html\":!0,\"text json\":JSON.parse,\"text xml\":S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Ft(Ft(e,S.ajaxSettings),t):Ft(S.ajaxSettings,e)},ajaxPrefilter:It(Ot),ajaxTransport:It(Pt),ajax:function(e,t){\"object\"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=S.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?S(y):S.event,x=S.Deferred(),b=S.Callbacks(\"once memory\"),w=v.statusCode||{},a={},s={},u=\"canceled\",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=qt.exec(p))n[t[1].toLowerCase()+\" \"]=(n[t[1].toLowerCase()+\" \"]||[]).concat(t[2])}t=n[e.toLowerCase()+\" \"]}return null==t?null:t.join(\", \")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||bt.href)+\"\").replace(Ht,bt.protocol+\"//\"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||\"*\").toLowerCase().match(P)||[\"\"],null==v.crossDomain){r=E.createElement(\"a\");try{r.href=v.url,r.href=r.href,v.crossDomain=Mt.protocol+\"//\"+Mt.host!=r.protocol+\"//\"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&\"string\"!=typeof v.data&&(v.data=S.param(v.data,v.traditional)),Wt(Ot,v,t,T),h)return T;for(i in(g=S.event&&v.global)&&0==S.active++&&S.event.trigger(\"ajaxStart\"),v.type=v.type.toUpperCase(),v.hasContent=!Lt.test(v.type),f=v.url.replace(jt,\"\"),v.hasContent?v.data&&v.processData&&0===(v.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&(v.data=v.data.replace(Nt,\"+\")):(o=v.url.slice(f.length),v.data&&(v.processData||\"string\"==typeof v.data)&&(f+=(Tt.test(f)?\"&\":\"?\")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Dt,\"$1\"),o=(Tt.test(f)?\"&\":\"?\")+\"_=\"+wt.guid+++o),v.url=f+o),v.ifModified&&(S.lastModified[f]&&T.setRequestHeader(\"If-Modified-Since\",S.lastModified[f]),S.etag[f]&&T.setRequestHeader(\"If-None-Match\",S.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader(\"Content-Type\",v.contentType),T.setRequestHeader(\"Accept\",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+(\"*\"!==v.dataTypes[0]?\", \"+Rt+\"; q=0.01\":\"\"):v.accepts[\"*\"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u=\"abort\",b.add(v.complete),T.done(v.success),T.fail(v.error),c=Wt(Pt,v,t,T)){if(T.readyState=1,g&&m.trigger(\"ajaxSend\",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort(\"timeout\")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,\"No Transport\");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||\"\",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while(\"*\"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader(\"Content-Type\"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+\" \"+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),!i&&-1<S.inArray(\"script\",v.dataTypes)&&S.inArray(\"json\",v.dataTypes)<0&&(v.converters[\"text script\"]=function(){}),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if(\"*\"===o)o=u;else if(\"*\"!==u&&u!==o){if(!(a=l[u+\" \"+o]||l[\"* \"+o]))for(i in l)if((s=i.split(\" \"))[1]===o&&(a=l[u+\" \"+s[0]]||l[\"* \"+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e[\"throws\"])t=a(t);else try{t=a(t)}catch(e){return{state:\"parsererror\",error:a?e:\"No conversion from \"+u+\" to \"+o}}}return{state:\"success\",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader(\"Last-Modified\"))&&(S.lastModified[f]=u),(u=T.getResponseHeader(\"etag\"))&&(S.etag[f]=u)),204===e||\"HEAD\"===v.type?l=\"nocontent\":304===e?l=\"notmodified\":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l=\"error\",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+\"\",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?\"ajaxSuccess\":\"ajaxError\",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger(\"ajaxComplete\",[T,v]),--S.active||S.event.trigger(\"ajaxStop\")))}return T},getJSON:function(e,t,n){return S.get(e,t,n,\"json\")},getScript:function(e,t){return S.get(e,void 0,t,\"script\")}}),S.each([\"get\",\"post\"],function(e,i){S[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),S.ajax(S.extend({url:e,type:i,dataType:r,data:t,success:n},S.isPlainObject(e)&&e))}}),S.ajaxPrefilter(function(e){var t;for(t in e.headers)\"content-type\"===t.toLowerCase()&&(e.contentType=e.headers[t]||\"\")}),S._evalUrl=function(e,t,n){return S.ajax({url:e,type:\"GET\",dataType:\"script\",cache:!0,async:!1,global:!1,converters:{\"text script\":function(){}},dataFilter:function(e){S.globalEval(e,t,n)}})},S.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=S(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){S(this).wrapInner(n.call(this,e))}):this.each(function(){var e=S(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){S(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not(\"body\").each(function(){S(this).replaceWith(this.childNodes)}),this}}),S.expr.pseudos.hidden=function(e){return!S.expr.pseudos.visible(e)},S.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},S.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Bt={0:200,1223:204},$t=S.ajaxSettings.xhr();y.cors=!!$t&&\"withCredentials\"in $t,y.ajax=$t=!!$t,S.ajaxTransport(function(i){var o,a;if(y.cors||$t&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e[\"X-Requested-With\"]||(e[\"X-Requested-With\"]=\"XMLHttpRequest\"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,\"abort\"===e?r.abort():\"error\"===e?\"number\"!=typeof r.status?t(0,\"error\"):t(r.status,r.statusText):t(Bt[r.status]||r.status,r.statusText,\"text\"!==(r.responseType||\"text\")||\"string\"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o(\"error\"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o(\"abort\");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),S.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),S.ajaxSetup({accepts:{script:\"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"},contents:{script:/\\b(?:java|ecma)script\\b/},converters:{\"text script\":function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter(\"script\",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type=\"GET\")}),S.ajaxTransport(\"script\",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=S(\"<script>\").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on(\"load error\",i=function(e){r.remove(),i=null,e&&t(\"error\"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\\?(?=&|$)|\\?\\?/;S.ajaxSetup({jsonp:\"callback\",jsonpCallback:function(){var e=zt.pop()||S.expando+\"_\"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter(\"json jsonp\",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?\"url\":\"string\"==typeof e.data&&0===(e.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&Ut.test(e.data)&&\"data\");if(a||\"jsonp\"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,\"$1\"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?\"&\":\"?\")+e.jsonp+\"=\"+r),e.converters[\"script json\"]=function(){return o||S.error(r+\" was not called\"),o[0]},e.dataTypes[0]=\"json\",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),\"script\"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument(\"\").body).innerHTML=\"<form></form><form></form>\",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return\"string\"!=typeof e?[]:(\"boolean\"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument(\"\")).createElement(\"base\")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(\" \");return-1<s&&(r=ht(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&\"object\"==typeof t&&(i=\"POST\"),0<a.length&&S.ajax({url:e,type:i||\"GET\",dataType:\"html\",data:t}).done(function(e){o=arguments,a.html(r?S(\"<div>\").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,\"position\"),c=S(e),f={};\"static\"===l&&(e.style.position=\"relative\"),s=c.offset(),o=S.css(e,\"top\"),u=S.css(e,\"left\"),(\"absolute\"===l||\"fixed\"===l)&&-1<(o+u).indexOf(\"auto\")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),\"using\"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if(\"fixed\"===S.css(r,\"position\"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&\"static\"===S.css(e,\"position\"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,\"borderTopWidth\",!0),i.left+=S.css(e,\"borderLeftWidth\",!0))}return{top:t.top-i.top-S.css(r,\"marginTop\",!0),left:t.left-i.left-S.css(r,\"marginLeft\",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&\"static\"===S.css(e,\"position\"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:\"pageXOffset\",scrollTop:\"pageYOffset\"},function(t,i){var o=\"pageYOffset\"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each([\"top\",\"left\"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+\"px\":t})}),S.each({Height:\"height\",Width:\"width\"},function(a,s){S.each({padding:\"inner\"+a,content:s,\"\":\"outer\"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||\"boolean\"!=typeof e),i=r||(!0===e||!0===t?\"margin\":\"border\");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf(\"outer\")?e[\"inner\"+a]:e.document.documentElement[\"client\"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body[\"scroll\"+a],r[\"scroll\"+a],e.body[\"offset\"+a],r[\"offset\"+a],r[\"client\"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each([\"ajaxStart\",\"ajaxStop\",\"ajaxComplete\",\"ajaxError\",\"ajaxSuccess\",\"ajaxSend\"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,\"**\"):this.off(t,e||\"**\",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each(\"blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu\".split(\" \"),function(e,n){S.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}});var Xt=/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;S.proxy=function(e,t){var n,r,i;if(\"string\"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||S.guid++,i},S.holdReady=function(e){e?S.readyWait++:S.ready(!0)},S.isArray=Array.isArray,S.parseJSON=JSON.parse,S.nodeName=A,S.isFunction=m,S.isWindow=x,S.camelCase=X,S.type=w,S.now=Date.now,S.isNumeric=function(e){var t=S.type(e);return(\"number\"===t||\"string\"===t)&&!isNaN(e-parseFloat(e))},S.trim=function(e){return null==e?\"\":(e+\"\").replace(Xt,\"\")},\"function\"==typeof define&&define.amd&&define(\"jquery\",[],function(){return S});var Vt=C.jQuery,Gt=C.$;return S.noConflict=function(e){return C.$===S&&(C.$=Gt),e&&C.jQuery===S&&(C.jQuery=Vt),S},\"undefined\"==typeof e&&(C.jQuery=C.$=S),S});\n"
  },
  {
    "path": "doc/build/html/_static/js/badge_only.js",
    "content": "!function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,\"a\",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p=\"\",r(r.s=4)}({4:function(e,t,r){}});"
  },
  {
    "path": "doc/build/html/_static/js/theme.js",
    "content": "!function(n){var e={};function t(i){if(e[i])return e[i].exports;var o=e[i]={i:i,l:!1,exports:{}};return n[i].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=n,t.c=e,t.d=function(n,e,i){t.o(n,e)||Object.defineProperty(n,e,{enumerable:!0,get:i})},t.r=function(n){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(n,\"__esModule\",{value:!0})},t.t=function(n,e){if(1&e&&(n=t(n)),8&e)return n;if(4&e&&\"object\"==typeof n&&n&&n.__esModule)return n;var i=Object.create(null);if(t.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:n}),2&e&&\"string\"!=typeof n)for(var o in n)t.d(i,o,function(e){return n[e]}.bind(null,o));return i},t.n=function(n){var e=n&&n.__esModule?function(){return n.default}:function(){return n};return t.d(e,\"a\",e),e},t.o=function(n,e){return Object.prototype.hasOwnProperty.call(n,e)},t.p=\"\",t(t.s=0)}([function(n,e,t){t(1),n.exports=t(3)},function(n,e,t){(function(){var e=\"undefined\"!=typeof window?window.jQuery:t(2);n.exports.ThemeNav={navBar:null,win:null,winScroll:!1,winResize:!1,linkScroll:!1,winPosition:0,winHeight:null,docHeight:null,isRunning:!1,enable:function(n){var t=this;void 0===n&&(n=!0),t.isRunning||(t.isRunning=!0,e((function(e){t.init(e),t.reset(),t.win.on(\"hashchange\",t.reset),n&&t.win.on(\"scroll\",(function(){t.linkScroll||t.winScroll||(t.winScroll=!0,requestAnimationFrame((function(){t.onScroll()})))})),t.win.on(\"resize\",(function(){t.winResize||(t.winResize=!0,requestAnimationFrame((function(){t.onResize()})))})),t.onResize()})))},enableSticky:function(){this.enable(!0)},init:function(n){n(document);var e=this;this.navBar=n(\"div.wy-side-scroll:first\"),this.win=n(window),n(document).on(\"click\",\"[data-toggle='wy-nav-top']\",(function(){n(\"[data-toggle='wy-nav-shift']\").toggleClass(\"shift\"),n(\"[data-toggle='rst-versions']\").toggleClass(\"shift\")})).on(\"click\",\".wy-menu-vertical .current ul li a\",(function(){var t=n(this);n(\"[data-toggle='wy-nav-shift']\").removeClass(\"shift\"),n(\"[data-toggle='rst-versions']\").toggleClass(\"shift\"),e.toggleCurrent(t),e.hashChange()})).on(\"click\",\"[data-toggle='rst-current-version']\",(function(){n(\"[data-toggle='rst-versions']\").toggleClass(\"shift-up\")})),n(\"table.docutils:not(.field-list,.footnote,.citation)\").wrap(\"<div class='wy-table-responsive'></div>\"),n(\"table.docutils.footnote\").wrap(\"<div class='wy-table-responsive footnote'></div>\"),n(\"table.docutils.citation\").wrap(\"<div class='wy-table-responsive citation'></div>\"),n(\".wy-menu-vertical ul\").not(\".simple\").siblings(\"a\").each((function(){var t=n(this);expand=n('<button class=\"toctree-expand\" title=\"Open/close menu\"></button>'),expand.on(\"click\",(function(n){return e.toggleCurrent(t),n.stopPropagation(),!1})),t.prepend(expand)}))},reset:function(){var n=encodeURI(window.location.hash)||\"#\";try{var e=$(\".wy-menu-vertical\"),t=e.find('[href=\"'+n+'\"]');if(0===t.length){var i=$('.document [id=\"'+n.substring(1)+'\"]').closest(\"div.section\");0===(t=e.find('[href=\"#'+i.attr(\"id\")+'\"]')).length&&(t=e.find('[href=\"#\"]'))}if(t.length>0){$(\".wy-menu-vertical .current\").removeClass(\"current\").attr(\"aria-expanded\",\"false\"),t.addClass(\"current\").attr(\"aria-expanded\",\"true\"),t.closest(\"li.toctree-l1\").parent().addClass(\"current\").attr(\"aria-expanded\",\"true\");for(let n=1;n<=10;n++)t.closest(\"li.toctree-l\"+n).addClass(\"current\").attr(\"aria-expanded\",\"true\");t[0].scrollIntoView()}}catch(n){console.log(\"Error expanding nav for anchor\",n)}},onScroll:function(){this.winScroll=!1;var n=this.win.scrollTop(),e=n+this.winHeight,t=this.navBar.scrollTop()+(n-this.winPosition);n<0||e>this.docHeight||(this.navBar.scrollTop(t),this.winPosition=n)},onResize:function(){this.winResize=!1,this.winHeight=this.win.height(),this.docHeight=$(document).height()},hashChange:function(){this.linkScroll=!0,this.win.one(\"hashchange\",(function(){this.linkScroll=!1}))},toggleCurrent:function(n){var e=n.closest(\"li\");e.siblings(\"li.current\").removeClass(\"current\").attr(\"aria-expanded\",\"false\"),e.siblings().find(\"li.current\").removeClass(\"current\").attr(\"aria-expanded\",\"false\");var t=e.find(\"> ul li\");t.length&&(t.removeClass(\"current\").attr(\"aria-expanded\",\"false\"),e.toggleClass(\"current\").attr(\"aria-expanded\",(function(n,e){return\"true\"==e?\"false\":\"true\"})))}},\"undefined\"!=typeof window&&(window.SphinxRtdTheme={Navigation:n.exports.ThemeNav,StickyNav:n.exports.ThemeNav}),function(){for(var n=0,e=[\"ms\",\"moz\",\"webkit\",\"o\"],t=0;t<e.length&&!window.requestAnimationFrame;++t)window.requestAnimationFrame=window[e[t]+\"RequestAnimationFrame\"],window.cancelAnimationFrame=window[e[t]+\"CancelAnimationFrame\"]||window[e[t]+\"CancelRequestAnimationFrame\"];window.requestAnimationFrame||(window.requestAnimationFrame=function(e,t){var i=(new Date).getTime(),o=Math.max(0,16-(i-n)),r=window.setTimeout((function(){e(i+o)}),o);return n=i+o,r}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(n){clearTimeout(n)})}()}).call(window)},function(n,e){n.exports=jQuery},function(n,e,t){}]);"
  },
  {
    "path": "doc/build/html/_static/language_data.js",
    "content": "/*\n * language_data.js\n * ~~~~~~~~~~~~~~~~\n *\n * This script contains the language-specific data used by searchtools.js,\n * namely the list of stopwords, stemmer, scorer and splitter.\n *\n * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.\n * :license: BSD, see LICENSE for details.\n *\n */\n\nvar stopwords = [\"a\", \"and\", \"are\", \"as\", \"at\", \"be\", \"but\", \"by\", \"for\", \"if\", \"in\", \"into\", \"is\", \"it\", \"near\", \"no\", \"not\", \"of\", \"on\", \"or\", \"such\", \"that\", \"the\", \"their\", \"then\", \"there\", \"these\", \"they\", \"this\", \"to\", \"was\", \"will\", \"with\"];\n\n\n/* Non-minified version is copied as a separate JS file, is available */\n\n/**\n * Porter Stemmer\n */\nvar Stemmer = function() {\n\n  var step2list = {\n    ational: 'ate',\n    tional: 'tion',\n    enci: 'ence',\n    anci: 'ance',\n    izer: 'ize',\n    bli: 'ble',\n    alli: 'al',\n    entli: 'ent',\n    eli: 'e',\n    ousli: 'ous',\n    ization: 'ize',\n    ation: 'ate',\n    ator: 'ate',\n    alism: 'al',\n    iveness: 'ive',\n    fulness: 'ful',\n    ousness: 'ous',\n    aliti: 'al',\n    iviti: 'ive',\n    biliti: 'ble',\n    logi: 'log'\n  };\n\n  var step3list = {\n    icate: 'ic',\n    ative: '',\n    alize: 'al',\n    iciti: 'ic',\n    ical: 'ic',\n    ful: '',\n    ness: ''\n  };\n\n  var c = \"[^aeiou]\";          // consonant\n  var v = \"[aeiouy]\";          // vowel\n  var C = c + \"[^aeiouy]*\";    // consonant sequence\n  var V = v + \"[aeiou]*\";      // vowel sequence\n\n  var mgr0 = \"^(\" + C + \")?\" + V + C;                      // [C]VC... is m>0\n  var meq1 = \"^(\" + C + \")?\" + V + C + \"(\" + V + \")?$\";    // [C]VC[V] is m=1\n  var mgr1 = \"^(\" + C + \")?\" + V + C + V + C;              // [C]VCVC... is m>1\n  var s_v   = \"^(\" + C + \")?\" + v;                         // vowel in stem\n\n  this.stemWord = function (w) {\n    var stem;\n    var suffix;\n    var firstch;\n    var origword = w;\n\n    if (w.length < 3)\n      return w;\n\n    var re;\n    var re2;\n    var re3;\n    var re4;\n\n    firstch = w.substr(0,1);\n    if (firstch == \"y\")\n      w = firstch.toUpperCase() + w.substr(1);\n\n    // Step 1a\n    re = /^(.+?)(ss|i)es$/;\n    re2 = /^(.+?)([^s])s$/;\n\n    if (re.test(w))\n      w = w.replace(re,\"$1$2\");\n    else if (re2.test(w))\n      w = w.replace(re2,\"$1$2\");\n\n    // Step 1b\n    re = /^(.+?)eed$/;\n    re2 = /^(.+?)(ed|ing)$/;\n    if (re.test(w)) {\n      var fp = re.exec(w);\n      re = new RegExp(mgr0);\n      if (re.test(fp[1])) {\n        re = /.$/;\n        w = w.replace(re,\"\");\n      }\n    }\n    else if (re2.test(w)) {\n      var fp = re2.exec(w);\n      stem = fp[1];\n      re2 = new RegExp(s_v);\n      if (re2.test(stem)) {\n        w = stem;\n        re2 = /(at|bl|iz)$/;\n        re3 = new RegExp(\"([^aeiouylsz])\\\\1$\");\n        re4 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n        if (re2.test(w))\n          w = w + \"e\";\n        else if (re3.test(w)) {\n          re = /.$/;\n          w = w.replace(re,\"\");\n        }\n        else if (re4.test(w))\n          w = w + \"e\";\n      }\n    }\n\n    // Step 1c\n    re = /^(.+?)y$/;\n    if (re.test(w)) {\n      var fp = re.exec(w);\n      stem = fp[1];\n      re = new RegExp(s_v);\n      if (re.test(stem))\n        w = stem + \"i\";\n    }\n\n    // Step 2\n    re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;\n    if (re.test(w)) {\n      var fp = re.exec(w);\n      stem = fp[1];\n      suffix = fp[2];\n      re = new RegExp(mgr0);\n      if (re.test(stem))\n        w = stem + step2list[suffix];\n    }\n\n    // Step 3\n    re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;\n    if (re.test(w)) {\n      var fp = re.exec(w);\n      stem = fp[1];\n      suffix = fp[2];\n      re = new RegExp(mgr0);\n      if (re.test(stem))\n        w = stem + step3list[suffix];\n    }\n\n    // Step 4\n    re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;\n    re2 = /^(.+?)(s|t)(ion)$/;\n    if (re.test(w)) {\n      var fp = re.exec(w);\n      stem = fp[1];\n      re = new RegExp(mgr1);\n      if (re.test(stem))\n        w = stem;\n    }\n    else if (re2.test(w)) {\n      var fp = re2.exec(w);\n      stem = fp[1] + fp[2];\n      re2 = new RegExp(mgr1);\n      if (re2.test(stem))\n        w = stem;\n    }\n\n    // Step 5\n    re = /^(.+?)e$/;\n    if (re.test(w)) {\n      var fp = re.exec(w);\n      stem = fp[1];\n      re = new RegExp(mgr1);\n      re2 = new RegExp(meq1);\n      re3 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n      if (re.test(stem) || (re2.test(stem) && !(re3.test(stem))))\n        w = stem;\n    }\n    re = /ll$/;\n    re2 = new RegExp(mgr1);\n    if (re.test(w) && re2.test(w)) {\n      re = /.$/;\n      w = w.replace(re,\"\");\n    }\n\n    // and turn initial Y back to y\n    if (firstch == \"y\")\n      w = firstch.toLowerCase() + w.substr(1);\n    return w;\n  }\n}\n\n"
  },
  {
    "path": "doc/build/html/_static/pygments.css",
    "content": "pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: #ffffcc }\n.highlight { background: #f8f8f8; }\n.highlight .c { color: #3D7B7B; font-style: italic } /* Comment */\n.highlight .err { border: 1px solid #FF0000 } /* Error */\n.highlight .k { color: #008000; font-weight: bold } /* Keyword */\n.highlight .o { color: #666666 } /* Operator */\n.highlight .ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: #9C6500 } /* Comment.Preproc */\n.highlight .cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */\n.highlight .cs { color: #3D7B7B; font-style: italic } /* Comment.Special */\n.highlight .gd { color: #A00000 } /* Generic.Deleted */\n.highlight .ge { font-style: italic } /* Generic.Emph */\n.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */\n.highlight .gr { color: #E40000 } /* Generic.Error */\n.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */\n.highlight .gi { color: #008400 } /* Generic.Inserted */\n.highlight .go { color: #717171 } /* Generic.Output */\n.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\n.highlight .gs { font-weight: bold } /* Generic.Strong */\n.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\n.highlight .gt { color: #0044DD } /* Generic.Traceback */\n.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: #008000 } /* Keyword.Pseudo */\n.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: #B00040 } /* Keyword.Type */\n.highlight .m { color: #666666 } /* Literal.Number */\n.highlight .s { color: #BA2121 } /* Literal.String */\n.highlight .na { color: #687822 } /* Name.Attribute */\n.highlight .nb { color: #008000 } /* Name.Builtin */\n.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */\n.highlight .no { color: #880000 } /* Name.Constant */\n.highlight .nd { color: #AA22FF } /* Name.Decorator */\n.highlight .ni { color: #717171; font-weight: bold } /* Name.Entity */\n.highlight .ne { color: #CB3F38; font-weight: bold } /* Name.Exception */\n.highlight .nf { color: #0000FF } /* Name.Function */\n.highlight .nl { color: #767600 } /* Name.Label */\n.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\n.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */\n.highlight .nv { color: #19177C } /* Name.Variable */\n.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\n.highlight .w { color: #bbbbbb } /* Text.Whitespace */\n.highlight .mb { color: #666666 } /* Literal.Number.Bin */\n.highlight .mf { color: #666666 } /* Literal.Number.Float */\n.highlight .mh { color: #666666 } /* Literal.Number.Hex */\n.highlight .mi { color: #666666 } /* Literal.Number.Integer */\n.highlight .mo { color: #666666 } /* Literal.Number.Oct */\n.highlight .sa { color: #BA2121 } /* Literal.String.Affix */\n.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */\n.highlight .sc { color: #BA2121 } /* Literal.String.Char */\n.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */\n.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\n.highlight .s2 { color: #BA2121 } /* Literal.String.Double */\n.highlight .se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */\n.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */\n.highlight .si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */\n.highlight .sx { color: #008000 } /* Literal.String.Other */\n.highlight .sr { color: #A45A77 } /* Literal.String.Regex */\n.highlight .s1 { color: #BA2121 } /* Literal.String.Single */\n.highlight .ss { color: #19177C } /* Literal.String.Symbol */\n.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */\n.highlight .fm { color: #0000FF } /* Name.Function.Magic */\n.highlight .vc { color: #19177C } /* Name.Variable.Class */\n.highlight .vg { color: #19177C } /* Name.Variable.Global */\n.highlight .vi { color: #19177C } /* Name.Variable.Instance */\n.highlight .vm { color: #19177C } /* Name.Variable.Magic */\n.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */"
  },
  {
    "path": "doc/build/html/_static/searchtools.js",
    "content": "/*\n * searchtools.js\n * ~~~~~~~~~~~~~~~~\n *\n * Sphinx JavaScript utilities for the full-text search.\n *\n * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.\n * :license: BSD, see LICENSE for details.\n *\n */\n\"use strict\";\n\n/**\n * Simple result scoring code.\n */\nif (typeof Scorer === \"undefined\") {\n  var Scorer = {\n    // Implement the following function to further tweak the score for each result\n    // The function takes a result array [docname, title, anchor, descr, score, filename]\n    // and returns the new score.\n    /*\n    score: result => {\n      const [docname, title, anchor, descr, score, filename] = result\n      return score\n    },\n    */\n\n    // query matches the full name of an object\n    objNameMatch: 11,\n    // or matches in the last dotted part of the object name\n    objPartialMatch: 6,\n    // Additive scores depending on the priority of the object\n    objPrio: {\n      0: 15, // used to be importantResults\n      1: 5, // used to be objectResults\n      2: -5, // used to be unimportantResults\n    },\n    //  Used when the priority is not in the mapping.\n    objPrioDefault: 0,\n\n    // query found in title\n    title: 15,\n    partialTitle: 7,\n    // query found in terms\n    term: 5,\n    partialTerm: 2,\n  };\n}\n\nconst _removeChildren = (element) => {\n  while (element && element.lastChild) element.removeChild(element.lastChild);\n};\n\n/**\n * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping\n */\nconst _escapeRegExp = (string) =>\n  string.replace(/[.*+\\-?^${}()|[\\]\\\\]/g, \"\\\\$&\"); // $& means the whole matched string\n\nconst _displayItem = (item, searchTerms, highlightTerms) => {\n  const docBuilder = DOCUMENTATION_OPTIONS.BUILDER;\n  const docFileSuffix = DOCUMENTATION_OPTIONS.FILE_SUFFIX;\n  const docLinkSuffix = DOCUMENTATION_OPTIONS.LINK_SUFFIX;\n  const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY;\n  const contentRoot = document.documentElement.dataset.content_root;\n\n  const [docName, title, anchor, descr, score, _filename] = item;\n\n  let listItem = document.createElement(\"li\");\n  let requestUrl;\n  let linkUrl;\n  if (docBuilder === \"dirhtml\") {\n    // dirhtml builder\n    let dirname = docName + \"/\";\n    if (dirname.match(/\\/index\\/$/))\n      dirname = dirname.substring(0, dirname.length - 6);\n    else if (dirname === \"index/\") dirname = \"\";\n    requestUrl = contentRoot + dirname;\n    linkUrl = requestUrl;\n  } else {\n    // normal html builders\n    requestUrl = contentRoot + docName + docFileSuffix;\n    linkUrl = docName + docLinkSuffix;\n  }\n  let linkEl = listItem.appendChild(document.createElement(\"a\"));\n  linkEl.href = linkUrl + anchor;\n  linkEl.dataset.score = score;\n  linkEl.innerHTML = title;\n  if (descr) {\n    listItem.appendChild(document.createElement(\"span\")).innerHTML =\n      \" (\" + descr + \")\";\n    // highlight search terms in the description\n    if (SPHINX_HIGHLIGHT_ENABLED)  // set in sphinx_highlight.js\n      highlightTerms.forEach((term) => _highlightText(listItem, term, \"highlighted\"));\n  }\n  else if (showSearchSummary)\n    fetch(requestUrl)\n      .then((responseData) => responseData.text())\n      .then((data) => {\n        if (data)\n          listItem.appendChild(\n            Search.makeSearchSummary(data, searchTerms)\n          );\n        // highlight search terms in the summary\n        if (SPHINX_HIGHLIGHT_ENABLED)  // set in sphinx_highlight.js\n          highlightTerms.forEach((term) => _highlightText(listItem, term, \"highlighted\"));\n      });\n  Search.output.appendChild(listItem);\n};\nconst _finishSearch = (resultCount) => {\n  Search.stopPulse();\n  Search.title.innerText = _(\"Search Results\");\n  if (!resultCount)\n    Search.status.innerText = Documentation.gettext(\n      \"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.\"\n    );\n  else\n    Search.status.innerText = _(\n      `Search finished, found ${resultCount} page(s) matching the search query.`\n    );\n};\nconst _displayNextItem = (\n  results,\n  resultCount,\n  searchTerms,\n  highlightTerms,\n) => {\n  // results left, load the summary and display it\n  // this is intended to be dynamic (don't sub resultsCount)\n  if (results.length) {\n    _displayItem(results.pop(), searchTerms, highlightTerms);\n    setTimeout(\n      () => _displayNextItem(results, resultCount, searchTerms, highlightTerms),\n      5\n    );\n  }\n  // search finished, update title and status message\n  else _finishSearch(resultCount);\n};\n\n/**\n * Default splitQuery function. Can be overridden in ``sphinx.search`` with a\n * custom function per language.\n *\n * The regular expression works by splitting the string on consecutive characters\n * that are not Unicode letters, numbers, underscores, or emoji characters.\n * This is the same as ``\\W+`` in Python, preserving the surrogate pair area.\n */\nif (typeof splitQuery === \"undefined\") {\n  var splitQuery = (query) => query\n      .split(/[^\\p{Letter}\\p{Number}_\\p{Emoji_Presentation}]+/gu)\n      .filter(term => term)  // remove remaining empty strings\n}\n\n/**\n * Search Module\n */\nconst Search = {\n  _index: null,\n  _queued_query: null,\n  _pulse_status: -1,\n\n  htmlToText: (htmlString) => {\n    const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');\n    htmlElement.querySelectorAll(\".headerlink\").forEach((el) => { el.remove() });\n    const docContent = htmlElement.querySelector('[role=\"main\"]');\n    if (docContent !== undefined) return docContent.textContent;\n    console.warn(\n      \"Content block not found. Sphinx search tries to obtain it via '[role=main]'. Could you check your theme or template.\"\n    );\n    return \"\";\n  },\n\n  init: () => {\n    const query = new URLSearchParams(window.location.search).get(\"q\");\n    document\n      .querySelectorAll('input[name=\"q\"]')\n      .forEach((el) => (el.value = query));\n    if (query) Search.performSearch(query);\n  },\n\n  loadIndex: (url) =>\n    (document.body.appendChild(document.createElement(\"script\")).src = url),\n\n  setIndex: (index) => {\n    Search._index = index;\n    if (Search._queued_query !== null) {\n      const query = Search._queued_query;\n      Search._queued_query = null;\n      Search.query(query);\n    }\n  },\n\n  hasIndex: () => Search._index !== null,\n\n  deferQuery: (query) => (Search._queued_query = query),\n\n  stopPulse: () => (Search._pulse_status = -1),\n\n  startPulse: () => {\n    if (Search._pulse_status >= 0) return;\n\n    const pulse = () => {\n      Search._pulse_status = (Search._pulse_status + 1) % 4;\n      Search.dots.innerText = \".\".repeat(Search._pulse_status);\n      if (Search._pulse_status >= 0) window.setTimeout(pulse, 500);\n    };\n    pulse();\n  },\n\n  /**\n   * perform a search for something (or wait until index is loaded)\n   */\n  performSearch: (query) => {\n    // create the required interface elements\n    const searchText = document.createElement(\"h2\");\n    searchText.textContent = _(\"Searching\");\n    const searchSummary = document.createElement(\"p\");\n    searchSummary.classList.add(\"search-summary\");\n    searchSummary.innerText = \"\";\n    const searchList = document.createElement(\"ul\");\n    searchList.classList.add(\"search\");\n\n    const out = document.getElementById(\"search-results\");\n    Search.title = out.appendChild(searchText);\n    Search.dots = Search.title.appendChild(document.createElement(\"span\"));\n    Search.status = out.appendChild(searchSummary);\n    Search.output = out.appendChild(searchList);\n\n    const searchProgress = document.getElementById(\"search-progress\");\n    // Some themes don't use the search progress node\n    if (searchProgress) {\n      searchProgress.innerText = _(\"Preparing search...\");\n    }\n    Search.startPulse();\n\n    // index already loaded, the browser was quick!\n    if (Search.hasIndex()) Search.query(query);\n    else Search.deferQuery(query);\n  },\n\n  /**\n   * execute search (requires search index to be loaded)\n   */\n  query: (query) => {\n    const filenames = Search._index.filenames;\n    const docNames = Search._index.docnames;\n    const titles = Search._index.titles;\n    const allTitles = Search._index.alltitles;\n    const indexEntries = Search._index.indexentries;\n\n    // stem the search terms and add them to the correct list\n    const stemmer = new Stemmer();\n    const searchTerms = new Set();\n    const excludedTerms = new Set();\n    const highlightTerms = new Set();\n    const objectTerms = new Set(splitQuery(query.toLowerCase().trim()));\n    splitQuery(query.trim()).forEach((queryTerm) => {\n      const queryTermLower = queryTerm.toLowerCase();\n\n      // maybe skip this \"word\"\n      // stopwords array is from language_data.js\n      if (\n        stopwords.indexOf(queryTermLower) !== -1 ||\n        queryTerm.match(/^\\d+$/)\n      )\n        return;\n\n      // stem the word\n      let word = stemmer.stemWord(queryTermLower);\n      // select the correct list\n      if (word[0] === \"-\") excludedTerms.add(word.substr(1));\n      else {\n        searchTerms.add(word);\n        highlightTerms.add(queryTermLower);\n      }\n    });\n\n    if (SPHINX_HIGHLIGHT_ENABLED) {  // set in sphinx_highlight.js\n      localStorage.setItem(\"sphinx_highlight_terms\", [...highlightTerms].join(\" \"))\n    }\n\n    // console.debug(\"SEARCH: searching for:\");\n    // console.info(\"required: \", [...searchTerms]);\n    // console.info(\"excluded: \", [...excludedTerms]);\n\n    // array of [docname, title, anchor, descr, score, filename]\n    let results = [];\n    _removeChildren(document.getElementById(\"search-progress\"));\n\n    const queryLower = query.toLowerCase();\n    for (const [title, foundTitles] of Object.entries(allTitles)) {\n      if (title.toLowerCase().includes(queryLower) && (queryLower.length >= title.length/2)) {\n        for (const [file, id] of foundTitles) {\n          let score = Math.round(100 * queryLower.length / title.length)\n          results.push([\n            docNames[file],\n            titles[file] !== title ? `${titles[file]} > ${title}` : title,\n            id !== null ? \"#\" + id : \"\",\n            null,\n            score,\n            filenames[file],\n          ]);\n        }\n      }\n    }\n\n    // search for explicit entries in index directives\n    for (const [entry, foundEntries] of Object.entries(indexEntries)) {\n      if (entry.includes(queryLower) && (queryLower.length >= entry.length/2)) {\n        for (const [file, id] of foundEntries) {\n          let score = Math.round(100 * queryLower.length / entry.length)\n          results.push([\n            docNames[file],\n            titles[file],\n            id ? \"#\" + id : \"\",\n            null,\n            score,\n            filenames[file],\n          ]);\n        }\n      }\n    }\n\n    // lookup as object\n    objectTerms.forEach((term) =>\n      results.push(...Search.performObjectSearch(term, objectTerms))\n    );\n\n    // lookup as search terms in fulltext\n    results.push(...Search.performTermsSearch(searchTerms, excludedTerms));\n\n    // let the scorer override scores with a custom scoring function\n    if (Scorer.score) results.forEach((item) => (item[4] = Scorer.score(item)));\n\n    // now sort the results by score (in opposite order of appearance, since the\n    // display function below uses pop() to retrieve items) and then\n    // alphabetically\n    results.sort((a, b) => {\n      const leftScore = a[4];\n      const rightScore = b[4];\n      if (leftScore === rightScore) {\n        // same score: sort alphabetically\n        const leftTitle = a[1].toLowerCase();\n        const rightTitle = b[1].toLowerCase();\n        if (leftTitle === rightTitle) return 0;\n        return leftTitle > rightTitle ? -1 : 1; // inverted is intentional\n      }\n      return leftScore > rightScore ? 1 : -1;\n    });\n\n    // remove duplicate search results\n    // note the reversing of results, so that in the case of duplicates, the highest-scoring entry is kept\n    let seen = new Set();\n    results = results.reverse().reduce((acc, result) => {\n      let resultStr = result.slice(0, 4).concat([result[5]]).map(v => String(v)).join(',');\n      if (!seen.has(resultStr)) {\n        acc.push(result);\n        seen.add(resultStr);\n      }\n      return acc;\n    }, []);\n\n    results = results.reverse();\n\n    // for debugging\n    //Search.lastresults = results.slice();  // a copy\n    // console.info(\"search results:\", Search.lastresults);\n\n    // print the results\n    _displayNextItem(results, results.length, searchTerms, highlightTerms);\n  },\n\n  /**\n   * search for object names\n   */\n  performObjectSearch: (object, objectTerms) => {\n    const filenames = Search._index.filenames;\n    const docNames = Search._index.docnames;\n    const objects = Search._index.objects;\n    const objNames = Search._index.objnames;\n    const titles = Search._index.titles;\n\n    const results = [];\n\n    const objectSearchCallback = (prefix, match) => {\n      const name = match[4]\n      const fullname = (prefix ? prefix + \".\" : \"\") + name;\n      const fullnameLower = fullname.toLowerCase();\n      if (fullnameLower.indexOf(object) < 0) return;\n\n      let score = 0;\n      const parts = fullnameLower.split(\".\");\n\n      // check for different match types: exact matches of full name or\n      // \"last name\" (i.e. last dotted part)\n      if (fullnameLower === object || parts.slice(-1)[0] === object)\n        score += Scorer.objNameMatch;\n      else if (parts.slice(-1)[0].indexOf(object) > -1)\n        score += Scorer.objPartialMatch; // matches in last name\n\n      const objName = objNames[match[1]][2];\n      const title = titles[match[0]];\n\n      // If more than one term searched for, we require other words to be\n      // found in the name/title/description\n      const otherTerms = new Set(objectTerms);\n      otherTerms.delete(object);\n      if (otherTerms.size > 0) {\n        const haystack = `${prefix} ${name} ${objName} ${title}`.toLowerCase();\n        if (\n          [...otherTerms].some((otherTerm) => haystack.indexOf(otherTerm) < 0)\n        )\n          return;\n      }\n\n      let anchor = match[3];\n      if (anchor === \"\") anchor = fullname;\n      else if (anchor === \"-\") anchor = objNames[match[1]][1] + \"-\" + fullname;\n\n      const descr = objName + _(\", in \") + title;\n\n      // add custom score for some objects according to scorer\n      if (Scorer.objPrio.hasOwnProperty(match[2]))\n        score += Scorer.objPrio[match[2]];\n      else score += Scorer.objPrioDefault;\n\n      results.push([\n        docNames[match[0]],\n        fullname,\n        \"#\" + anchor,\n        descr,\n        score,\n        filenames[match[0]],\n      ]);\n    };\n    Object.keys(objects).forEach((prefix) =>\n      objects[prefix].forEach((array) =>\n        objectSearchCallback(prefix, array)\n      )\n    );\n    return results;\n  },\n\n  /**\n   * search for full-text terms in the index\n   */\n  performTermsSearch: (searchTerms, excludedTerms) => {\n    // prepare search\n    const terms = Search._index.terms;\n    const titleTerms = Search._index.titleterms;\n    const filenames = Search._index.filenames;\n    const docNames = Search._index.docnames;\n    const titles = Search._index.titles;\n\n    const scoreMap = new Map();\n    const fileMap = new Map();\n\n    // perform the search on the required terms\n    searchTerms.forEach((word) => {\n      const files = [];\n      const arr = [\n        { files: terms[word], score: Scorer.term },\n        { files: titleTerms[word], score: Scorer.title },\n      ];\n      // add support for partial matches\n      if (word.length > 2) {\n        const escapedWord = _escapeRegExp(word);\n        Object.keys(terms).forEach((term) => {\n          if (term.match(escapedWord) && !terms[word])\n            arr.push({ files: terms[term], score: Scorer.partialTerm });\n        });\n        Object.keys(titleTerms).forEach((term) => {\n          if (term.match(escapedWord) && !titleTerms[word])\n            arr.push({ files: titleTerms[word], score: Scorer.partialTitle });\n        });\n      }\n\n      // no match but word was a required one\n      if (arr.every((record) => record.files === undefined)) return;\n\n      // found search word in contents\n      arr.forEach((record) => {\n        if (record.files === undefined) return;\n\n        let recordFiles = record.files;\n        if (recordFiles.length === undefined) recordFiles = [recordFiles];\n        files.push(...recordFiles);\n\n        // set score for the word in each file\n        recordFiles.forEach((file) => {\n          if (!scoreMap.has(file)) scoreMap.set(file, {});\n          scoreMap.get(file)[word] = record.score;\n        });\n      });\n\n      // create the mapping\n      files.forEach((file) => {\n        if (fileMap.has(file) && fileMap.get(file).indexOf(word) === -1)\n          fileMap.get(file).push(word);\n        else fileMap.set(file, [word]);\n      });\n    });\n\n    // now check if the files don't contain excluded terms\n    const results = [];\n    for (const [file, wordList] of fileMap) {\n      // check if all requirements are matched\n\n      // as search terms with length < 3 are discarded\n      const filteredTermCount = [...searchTerms].filter(\n        (term) => term.length > 2\n      ).length;\n      if (\n        wordList.length !== searchTerms.size &&\n        wordList.length !== filteredTermCount\n      )\n        continue;\n\n      // ensure that none of the excluded terms is in the search result\n      if (\n        [...excludedTerms].some(\n          (term) =>\n            terms[term] === file ||\n            titleTerms[term] === file ||\n            (terms[term] || []).includes(file) ||\n            (titleTerms[term] || []).includes(file)\n        )\n      )\n        break;\n\n      // select one (max) score for the file.\n      const score = Math.max(...wordList.map((w) => scoreMap.get(file)[w]));\n      // add result to the result list\n      results.push([\n        docNames[file],\n        titles[file],\n        \"\",\n        null,\n        score,\n        filenames[file],\n      ]);\n    }\n    return results;\n  },\n\n  /**\n   * helper function to return a node containing the\n   * search summary for a given text. keywords is a list\n   * of stemmed words.\n   */\n  makeSearchSummary: (htmlText, keywords) => {\n    const text = Search.htmlToText(htmlText);\n    if (text === \"\") return null;\n\n    const textLower = text.toLowerCase();\n    const actualStartPosition = [...keywords]\n      .map((k) => textLower.indexOf(k.toLowerCase()))\n      .filter((i) => i > -1)\n      .slice(-1)[0];\n    const startWithContext = Math.max(actualStartPosition - 120, 0);\n\n    const top = startWithContext === 0 ? \"\" : \"...\";\n    const tail = startWithContext + 240 < text.length ? \"...\" : \"\";\n\n    let summary = document.createElement(\"p\");\n    summary.classList.add(\"context\");\n    summary.textContent = top + text.substr(startWithContext, 240).trim() + tail;\n\n    return summary;\n  },\n};\n\n_ready(Search.init);\n"
  },
  {
    "path": "doc/build/html/_static/sphinx_highlight.js",
    "content": "/* Highlighting utilities for Sphinx HTML documentation. */\n\"use strict\";\n\nconst SPHINX_HIGHLIGHT_ENABLED = true\n\n/**\n * highlight a given string on a node by wrapping it in\n * span elements with the given class name.\n */\nconst _highlight = (node, addItems, text, className) => {\n  if (node.nodeType === Node.TEXT_NODE) {\n    const val = node.nodeValue;\n    const parent = node.parentNode;\n    const pos = val.toLowerCase().indexOf(text);\n    if (\n      pos >= 0 &&\n      !parent.classList.contains(className) &&\n      !parent.classList.contains(\"nohighlight\")\n    ) {\n      let span;\n\n      const closestNode = parent.closest(\"body, svg, foreignObject\");\n      const isInSVG = closestNode && closestNode.matches(\"svg\");\n      if (isInSVG) {\n        span = document.createElementNS(\"http://www.w3.org/2000/svg\", \"tspan\");\n      } else {\n        span = document.createElement(\"span\");\n        span.classList.add(className);\n      }\n\n      span.appendChild(document.createTextNode(val.substr(pos, text.length)));\n      const rest = document.createTextNode(val.substr(pos + text.length));\n      parent.insertBefore(\n        span,\n        parent.insertBefore(\n          rest,\n          node.nextSibling\n        )\n      );\n      node.nodeValue = val.substr(0, pos);\n      /* There may be more occurrences of search term in this node. So call this\n       * function recursively on the remaining fragment.\n       */\n      _highlight(rest, addItems, text, className);\n\n      if (isInSVG) {\n        const rect = document.createElementNS(\n          \"http://www.w3.org/2000/svg\",\n          \"rect\"\n        );\n        const bbox = parent.getBBox();\n        rect.x.baseVal.value = bbox.x;\n        rect.y.baseVal.value = bbox.y;\n        rect.width.baseVal.value = bbox.width;\n        rect.height.baseVal.value = bbox.height;\n        rect.setAttribute(\"class\", className);\n        addItems.push({ parent: parent, target: rect });\n      }\n    }\n  } else if (node.matches && !node.matches(\"button, select, textarea\")) {\n    node.childNodes.forEach((el) => _highlight(el, addItems, text, className));\n  }\n};\nconst _highlightText = (thisNode, text, className) => {\n  let addItems = [];\n  _highlight(thisNode, addItems, text, className);\n  addItems.forEach((obj) =>\n    obj.parent.insertAdjacentElement(\"beforebegin\", obj.target)\n  );\n};\n\n/**\n * Small JavaScript module for the documentation.\n */\nconst SphinxHighlight = {\n\n  /**\n   * highlight the search words provided in localstorage in the text\n   */\n  highlightSearchWords: () => {\n    if (!SPHINX_HIGHLIGHT_ENABLED) return;  // bail if no highlight\n\n    // get and clear terms from localstorage\n    const url = new URL(window.location);\n    const highlight =\n        localStorage.getItem(\"sphinx_highlight_terms\")\n        || url.searchParams.get(\"highlight\")\n        || \"\";\n    localStorage.removeItem(\"sphinx_highlight_terms\")\n    url.searchParams.delete(\"highlight\");\n    window.history.replaceState({}, \"\", url);\n\n    // get individual terms from highlight string\n    const terms = highlight.toLowerCase().split(/\\s+/).filter(x => x);\n    if (terms.length === 0) return; // nothing to do\n\n    // There should never be more than one element matching \"div.body\"\n    const divBody = document.querySelectorAll(\"div.body\");\n    const body = divBody.length ? divBody[0] : document.querySelector(\"body\");\n    window.setTimeout(() => {\n      terms.forEach((term) => _highlightText(body, term, \"highlighted\"));\n    }, 10);\n\n    const searchBox = document.getElementById(\"searchbox\");\n    if (searchBox === null) return;\n    searchBox.appendChild(\n      document\n        .createRange()\n        .createContextualFragment(\n          '<p class=\"highlight-link\">' +\n            '<a href=\"javascript:SphinxHighlight.hideSearchWords()\">' +\n            _(\"Hide Search Matches\") +\n            \"</a></p>\"\n        )\n    );\n  },\n\n  /**\n   * helper function to hide the search marks again\n   */\n  hideSearchWords: () => {\n    document\n      .querySelectorAll(\"#searchbox .highlight-link\")\n      .forEach((el) => el.remove());\n    document\n      .querySelectorAll(\"span.highlighted\")\n      .forEach((el) => el.classList.remove(\"highlighted\"));\n    localStorage.removeItem(\"sphinx_highlight_terms\")\n  },\n\n  initEscapeListener: () => {\n    // only install a listener if it is really needed\n    if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) return;\n\n    document.addEventListener(\"keydown\", (event) => {\n      // bail for input elements\n      if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return;\n      // bail with special keys\n      if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) return;\n      if (DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS && (event.key === \"Escape\")) {\n        SphinxHighlight.hideSearchWords();\n        event.preventDefault();\n      }\n    });\n  },\n};\n\n_ready(() => {\n  /* Do not call highlightSearchWords() when we are on the search page.\n   * It will highlight words from the *previous* search query.\n   */\n  if (typeof Search === \"undefined\") SphinxHighlight.highlightSearchWords();\n  SphinxHighlight.initEscapeListener();\n});\n"
  },
  {
    "path": "doc/build/html/genindex.html",
    "content": "<!DOCTYPE html>\n<html class=\"writer-html5\" lang=\"en\" >\n<head>\n  <meta charset=\"utf-8\" />\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n  <title>Index &mdash; GNNWR 0.1.4 documentation</title>\n      <link rel=\"stylesheet\" href=\"_static/pygments.css\" type=\"text/css\" />\n      <link rel=\"stylesheet\" href=\"_static/css/theme.css\" type=\"text/css\" />\n  <!--[if lt IE 9]>\n    <script src=\"_static/js/html5shiv.min.js\"></script>\n  <![endif]-->\n  \n        <script src=\"_static/jquery.js?v=5d32c60e\"></script>\n        <script src=\"_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c\"></script>\n        <script src=\"_static/documentation_options.js?v=fd825880\"></script>\n        <script src=\"_static/doctools.js?v=888ff710\"></script>\n        <script src=\"_static/sphinx_highlight.js?v=dc90522c\"></script>\n    <script src=\"_static/js/theme.js\"></script>\n    <link rel=\"index\" title=\"Index\" href=\"#\" />\n    <link rel=\"search\" title=\"Search\" href=\"search.html\" /> \n</head>\n\n<body class=\"wy-body-for-nav\"> \n  <div class=\"wy-grid-for-nav\">\n    <nav data-toggle=\"wy-nav-shift\" class=\"wy-nav-side\">\n      <div class=\"wy-side-scroll\">\n        <div class=\"wy-side-nav-search\" >\n\n          \n          \n          <a href=\"index.html\" class=\"icon icon-home\">\n            GNNWR\n          </a>\n<div role=\"search\">\n  <form id=\"rtd-search-form\" class=\"wy-form\" action=\"search.html\" method=\"get\">\n    <input type=\"text\" name=\"q\" placeholder=\"Search docs\" aria-label=\"Search docs\" />\n    <input type=\"hidden\" name=\"check_keywords\" value=\"yes\" />\n    <input type=\"hidden\" name=\"area\" value=\"default\" />\n  </form>\n</div>\n        </div><div class=\"wy-menu wy-menu-vertical\" data-spy=\"affix\" role=\"navigation\" aria-label=\"Navigation menu\">\n              <p class=\"caption\" role=\"heading\"><span class=\"caption-text\">Contents:</span></p>\n<ul>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/datasets.html\">gnnwr.datasets module</a></li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/models.html\">gnnwr.models module</a></li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/networks.html\">gnnwr.networks module</a></li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/utils.html\">gnnwr.utils module</a></li>\n</ul>\n\n        </div>\n      </div>\n    </nav>\n\n    <section data-toggle=\"wy-nav-shift\" class=\"wy-nav-content-wrap\"><nav class=\"wy-nav-top\" aria-label=\"Mobile navigation menu\" >\n          <i data-toggle=\"wy-nav-top\" class=\"fa fa-bars\"></i>\n          <a href=\"index.html\">GNNWR</a>\n      </nav>\n\n      <div class=\"wy-nav-content\">\n        <div class=\"rst-content\">\n          <div role=\"navigation\" aria-label=\"Page navigation\">\n  <ul class=\"wy-breadcrumbs\">\n      <li><a href=\"index.html\" class=\"icon icon-home\" aria-label=\"Home\"></a></li>\n      <li class=\"breadcrumb-item active\">Index</li>\n      <li class=\"wy-breadcrumbs-aside\">\n      </li>\n  </ul>\n  <hr/>\n</div>\n          <div role=\"main\" class=\"document\" itemscope=\"itemscope\" itemtype=\"http://schema.org/Article\">\n           <div itemprop=\"articleBody\">\n             \n\n<h1 id=\"index\">Index</h1>\n\n<div class=\"genindex-jumpbox\">\n <a href=\"#A\"><strong>A</strong></a>\n | <a href=\"#B\"><strong>B</strong></a>\n | <a href=\"#D\"><strong>D</strong></a>\n | <a href=\"#F\"><strong>F</strong></a>\n | <a href=\"#G\"><strong>G</strong></a>\n | <a href=\"#H\"><strong>H</strong></a>\n | <a href=\"#I\"><strong>I</strong></a>\n | <a href=\"#L\"><strong>L</strong></a>\n | <a href=\"#M\"><strong>M</strong></a>\n | <a href=\"#O\"><strong>O</strong></a>\n | <a href=\"#P\"><strong>P</strong></a>\n | <a href=\"#R\"><strong>R</strong></a>\n | <a href=\"#S\"><strong>S</strong></a>\n | <a href=\"#V\"><strong>V</strong></a>\n | <a href=\"#W\"><strong>W</strong></a>\n \n</div>\n<h2 id=\"A\">A</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GNNWR.add_graph\">add_graph() (gnnwr.models.GNNWR method)</a>\n</li>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.Adjust_R2\">Adjust_R2() (gnnwr.utils.DIAGNOSIS method)</a>\n</li>\n  </ul></td>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.AIC\">AIC() (gnnwr.utils.DIAGNOSIS method)</a>\n</li>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.AICc\">AICc() (gnnwr.utils.DIAGNOSIS method)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"B\">B</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset\">baseDataset (class in gnnwr.datasets)</a>\n</li>\n  </ul></td>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.BasicDistance\">BasicDistance() (in module gnnwr.datasets)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"D\">D</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/networks.html#gnnwr.networks.default_dense_layer\">default_dense_layer() (in module gnnwr.networks)</a>\n</li>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS\">DIAGNOSIS (class in gnnwr.utils)</a>\n</li>\n  </ul></td>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.Visualize.display_dataset\">display_dataset() (gnnwr.utils.Visualize method)</a>\n</li>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.Visualize.dot_map\">dot_map() (gnnwr.utils.Visualize method)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"F\">F</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.F1_GNN\">F1_GNN() (gnnwr.utils.DIAGNOSIS method)</a>\n</li>\n      <li><a href=\"gnnwr/networks.html#gnnwr.networks.STNN_SPNN.forward\">forward() (gnnwr.networks.STNN_SPNN method)</a>\n\n      <ul>\n        <li><a href=\"gnnwr/networks.html#gnnwr.networks.STPNN.forward\">(gnnwr.networks.STPNN method)</a>\n</li>\n        <li><a href=\"gnnwr/networks.html#gnnwr.networks.SWNN.forward\">(gnnwr.networks.SWNN method)</a>\n</li>\n      </ul></li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"G\">G</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GNNWR.getLoss\">getLoss() (gnnwr.models.GNNWR method)</a>\n</li>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset.getScaledDataframe\">getScaledDataframe() (gnnwr.datasets.baseDataset method)</a>\n</li>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GNNWR.getWeights\">getWeights() (gnnwr.models.GNNWR method)</a>\n</li>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GNNWR\">GNNWR (class in gnnwr.models)</a>\n</li>\n      <li>\n    gnnwr.datasets\n\n      <ul>\n        <li><a href=\"gnnwr/datasets.html#module-gnnwr.datasets\">module</a>\n</li>\n      </ul></li>\n      <li>\n    gnnwr.models\n\n      <ul>\n        <li><a href=\"gnnwr/models.html#module-gnnwr.models\">module</a>\n</li>\n      </ul></li>\n  </ul></td>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li>\n    gnnwr.networks\n\n      <ul>\n        <li><a href=\"gnnwr/networks.html#module-gnnwr.networks\">module</a>\n</li>\n      </ul></li>\n      <li>\n    gnnwr.utils\n\n      <ul>\n        <li><a href=\"gnnwr/utils.html#module-gnnwr.utils\">module</a>\n</li>\n      </ul></li>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GNNWR.gpumodel_to_cpu\">gpumodel_to_cpu() (gnnwr.models.GNNWR method)</a>\n</li>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GTNNWR\">GTNNWR (class in gnnwr.models)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"H\">H</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.hat\">hat() (gnnwr.utils.DIAGNOSIS method)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"I\">I</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.init_dataset\">init_dataset() (in module gnnwr.datasets)</a>\n</li>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.init_dataset_cv\">init_dataset_cv() (in module gnnwr.datasets)</a>\n</li>\n  </ul></td>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GNNWR.init_optimizer\">init_optimizer() (gnnwr.models.GNNWR method)</a>\n</li>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.init_predict_dataset\">init_predict_dataset() (in module gnnwr.datasets)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"L\">L</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.load_dataset\">load_dataset() (in module gnnwr.datasets)</a>\n</li>\n  </ul></td>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GNNWR.load_model\">load_model() (gnnwr.models.GNNWR method)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"M\">M</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.Manhattan_distance\">Manhattan_distance() (in module gnnwr.datasets)</a>\n</li>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.predictDataset.minmax_scaler\">minmax_scaler() (gnnwr.datasets.predictDataset method)</a>\n</li>\n      <li>\n    module\n\n      <ul>\n        <li><a href=\"gnnwr/datasets.html#module-gnnwr.datasets\">gnnwr.datasets</a>\n</li>\n        <li><a href=\"gnnwr/models.html#module-gnnwr.models\">gnnwr.models</a>\n</li>\n        <li><a href=\"gnnwr/networks.html#module-gnnwr.networks\">gnnwr.networks</a>\n</li>\n        <li><a href=\"gnnwr/utils.html#module-gnnwr.utils\">gnnwr.utils</a>\n</li>\n      </ul></li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"O\">O</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.OLS\">OLS (class in gnnwr.utils)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"P\">P</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GNNWR.predict\">predict() (gnnwr.models.GNNWR method)</a>\n</li>\n  </ul></td>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GNNWR.predict_weight\">predict_weight() (gnnwr.models.GNNWR method)</a>\n</li>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.predictDataset\">predictDataset (class in gnnwr.datasets)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"R\">R</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.R2\">R2() (gnnwr.utils.DIAGNOSIS method)</a>\n</li>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset.read\">read() (gnnwr.datasets.baseDataset method)</a>\n</li>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GNNWR.reg_result\">reg_result() (gnnwr.models.GNNWR method)</a>\n</li>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset.rescale\">rescale() (gnnwr.datasets.baseDataset method)</a>\n\n      <ul>\n        <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.predictDataset.rescale\">(gnnwr.datasets.predictDataset method)</a>\n</li>\n      </ul></li>\n  </ul></td>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GNNWR.result\">result() (gnnwr.models.GNNWR method)</a>\n</li>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.RMSE\">RMSE() (gnnwr.utils.DIAGNOSIS method)</a>\n</li>\n      <li><a href=\"gnnwr/models.html#gnnwr.models.GNNWR.run\">run() (gnnwr.models.GNNWR method)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"S\">S</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset.save\">save() (gnnwr.datasets.baseDataset method)</a>\n</li>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset.scale\">scale() (gnnwr.datasets.baseDataset method)</a>\n</li>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset.scale2\">scale2() (gnnwr.datasets.baseDataset method)</a>\n</li>\n  </ul></td>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/datasets.html#gnnwr.datasets.predictDataset.standard_scaler\">standard_scaler() (gnnwr.datasets.predictDataset method)</a>\n</li>\n      <li><a href=\"gnnwr/networks.html#gnnwr.networks.STNN_SPNN\">STNN_SPNN (class in gnnwr.networks)</a>\n</li>\n      <li><a href=\"gnnwr/networks.html#gnnwr.networks.STPNN\">STPNN (class in gnnwr.networks)</a>\n</li>\n      <li><a href=\"gnnwr/networks.html#gnnwr.networks.SWNN\">SWNN (class in gnnwr.networks)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"V\">V</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.Visualize\">Visualize (class in gnnwr.utils)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n<h2 id=\"W\">W</h2>\n<table style=\"width: 100%\" class=\"indextable genindextable\"><tr>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/networks.html#gnnwr.networks.weight_share\">weight_share() (in module gnnwr.networks)</a>\n</li>\n  </ul></td>\n  <td style=\"width: 33%; vertical-align: top;\"><ul>\n      <li><a href=\"gnnwr/utils.html#gnnwr.utils.Visualize.weights_heatmap\">weights_heatmap() (gnnwr.utils.Visualize method)</a>\n</li>\n  </ul></td>\n</tr></table>\n\n\n\n           </div>\n          </div>\n          <footer>\n\n  <hr/>\n\n  <div role=\"contentinfo\">\n    <p>&#169; Copyright 2023, gnnwr.</p>\n  </div>\n\n  Built with <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> using a\n    <a href=\"https://github.com/readthedocs/sphinx_rtd_theme\">theme</a>\n    provided by <a href=\"https://readthedocs.org\">Read the Docs</a>.\n   \n\n</footer>\n        </div>\n      </div>\n    </section>\n  </div>\n  <script>\n      jQuery(function () {\n          SphinxRtdTheme.Navigation.enable(true);\n      });\n  </script> \n\n</body>\n</html>"
  },
  {
    "path": "doc/build/html/index.html",
    "content": "<!DOCTYPE html>\n<html class=\"writer-html5\" lang=\"en\" >\n<head>\n  <meta charset=\"utf-8\" /><meta name=\"generator\" content=\"Docutils 0.18.1: http://docutils.sourceforge.net/\" />\n\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n  <title>Welcome to GNNWR’s documentation! &mdash; GNNWR 0.1.4 documentation</title>\n      <link rel=\"stylesheet\" href=\"_static/pygments.css\" type=\"text/css\" />\n      <link rel=\"stylesheet\" href=\"_static/css/theme.css\" type=\"text/css\" />\n  <!--[if lt IE 9]>\n    <script src=\"_static/js/html5shiv.min.js\"></script>\n  <![endif]-->\n  \n        <script src=\"_static/jquery.js?v=5d32c60e\"></script>\n        <script src=\"_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c\"></script>\n        <script src=\"_static/documentation_options.js?v=fd825880\"></script>\n        <script src=\"_static/doctools.js?v=888ff710\"></script>\n        <script src=\"_static/sphinx_highlight.js?v=dc90522c\"></script>\n    <script src=\"_static/js/theme.js\"></script>\n    <link rel=\"index\" title=\"Index\" href=\"genindex.html\" />\n    <link rel=\"search\" title=\"Search\" href=\"search.html\" />\n    <link rel=\"next\" title=\"gnnwr.datasets module\" href=\"gnnwr/datasets.html\" /> \n</head>\n\n<body class=\"wy-body-for-nav\"> \n  <div class=\"wy-grid-for-nav\">\n    <nav data-toggle=\"wy-nav-shift\" class=\"wy-nav-side\">\n      <div class=\"wy-side-scroll\">\n        <div class=\"wy-side-nav-search\" >\n\n          \n          \n          <a href=\"#\" class=\"icon icon-home\">\n            GNNWR\n          </a>\n<div role=\"search\">\n  <form id=\"rtd-search-form\" class=\"wy-form\" action=\"search.html\" method=\"get\">\n    <input type=\"text\" name=\"q\" placeholder=\"Search docs\" aria-label=\"Search docs\" />\n    <input type=\"hidden\" name=\"check_keywords\" value=\"yes\" />\n    <input type=\"hidden\" name=\"area\" value=\"default\" />\n  </form>\n</div>\n        </div><div class=\"wy-menu wy-menu-vertical\" data-spy=\"affix\" role=\"navigation\" aria-label=\"Navigation menu\">\n              <p class=\"caption\" role=\"heading\"><span class=\"caption-text\">Contents:</span></p>\n<ul>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/datasets.html\">gnnwr.datasets module</a></li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/models.html\">gnnwr.models module</a></li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/networks.html\">gnnwr.networks module</a></li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/utils.html\">gnnwr.utils module</a></li>\n</ul>\n\n        </div>\n      </div>\n    </nav>\n\n    <section data-toggle=\"wy-nav-shift\" class=\"wy-nav-content-wrap\"><nav class=\"wy-nav-top\" aria-label=\"Mobile navigation menu\" >\n          <i data-toggle=\"wy-nav-top\" class=\"fa fa-bars\"></i>\n          <a href=\"#\">GNNWR</a>\n      </nav>\n\n      <div class=\"wy-nav-content\">\n        <div class=\"rst-content\">\n          <div role=\"navigation\" aria-label=\"Page navigation\">\n  <ul class=\"wy-breadcrumbs\">\n      <li><a href=\"#\" class=\"icon icon-home\" aria-label=\"Home\"></a></li>\n      <li class=\"breadcrumb-item active\">Welcome to GNNWR’s documentation!</li>\n      <li class=\"wy-breadcrumbs-aside\">\n            <a href=\"_sources/index.rst.txt\" rel=\"nofollow\"> View page source</a>\n      </li>\n  </ul>\n  <hr/>\n</div>\n          <div role=\"main\" class=\"document\" itemscope=\"itemscope\" itemtype=\"http://schema.org/Article\">\n           <div itemprop=\"articleBody\">\n             \n  <section id=\"welcome-to-gnnwr-s-documentation\">\n<h1>Welcome to GNNWR’s documentation!<a class=\"headerlink\" href=\"#welcome-to-gnnwr-s-documentation\" title=\"Link to this heading\"></a></h1>\n<div class=\"toctree-wrapper compound\">\n<p class=\"caption\" role=\"heading\"><span class=\"caption-text\">Contents:</span></p>\n<ul>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/datasets.html\">gnnwr.datasets module</a><ul>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.BasicDistance\"><code class=\"docutils literal notranslate\"><span class=\"pre\">BasicDistance()</span></code></a></li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.Manhattan_distance\"><code class=\"docutils literal notranslate\"><span class=\"pre\">Manhattan_distance()</span></code></a></li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset\"><code class=\"docutils literal notranslate\"><span class=\"pre\">baseDataset</span></code></a><ul>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset.getScaledDataframe\"><code class=\"docutils literal notranslate\"><span class=\"pre\">baseDataset.getScaledDataframe()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset.read\"><code class=\"docutils literal notranslate\"><span class=\"pre\">baseDataset.read()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset.rescale\"><code class=\"docutils literal notranslate\"><span class=\"pre\">baseDataset.rescale()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset.save\"><code class=\"docutils literal notranslate\"><span class=\"pre\">baseDataset.save()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset.scale\"><code class=\"docutils literal notranslate\"><span class=\"pre\">baseDataset.scale()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.baseDataset.scale2\"><code class=\"docutils literal notranslate\"><span class=\"pre\">baseDataset.scale2()</span></code></a></li>\n</ul>\n</li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.init_dataset\"><code class=\"docutils literal notranslate\"><span class=\"pre\">init_dataset()</span></code></a></li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.init_dataset_cv\"><code class=\"docutils literal notranslate\"><span class=\"pre\">init_dataset_cv()</span></code></a></li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.init_predict_dataset\"><code class=\"docutils literal notranslate\"><span class=\"pre\">init_predict_dataset()</span></code></a></li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.load_dataset\"><code class=\"docutils literal notranslate\"><span class=\"pre\">load_dataset()</span></code></a></li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.predictDataset\"><code class=\"docutils literal notranslate\"><span class=\"pre\">predictDataset</span></code></a><ul>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.predictDataset.minmax_scaler\"><code class=\"docutils literal notranslate\"><span class=\"pre\">predictDataset.minmax_scaler()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.predictDataset.rescale\"><code class=\"docutils literal notranslate\"><span class=\"pre\">predictDataset.rescale()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/datasets.html#gnnwr.datasets.predictDataset.standard_scaler\"><code class=\"docutils literal notranslate\"><span class=\"pre\">predictDataset.standard_scaler()</span></code></a></li>\n</ul>\n</li>\n</ul>\n</li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/models.html\">gnnwr.models module</a><ul>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GNNWR\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GNNWR</span></code></a><ul>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GNNWR.add_graph\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GNNWR.add_graph()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GNNWR.getLoss\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GNNWR.getLoss()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GNNWR.getWeights\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GNNWR.getWeights()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GNNWR.gpumodel_to_cpu\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GNNWR.gpumodel_to_cpu()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GNNWR.init_optimizer\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GNNWR.init_optimizer()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GNNWR.load_model\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GNNWR.load_model()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GNNWR.predict\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GNNWR.predict()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GNNWR.predict_weight\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GNNWR.predict_weight()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GNNWR.reg_result\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GNNWR.reg_result()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GNNWR.result\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GNNWR.result()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GNNWR.run\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GNNWR.run()</span></code></a></li>\n</ul>\n</li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/models.html#gnnwr.models.GTNNWR\"><code class=\"docutils literal notranslate\"><span class=\"pre\">GTNNWR</span></code></a></li>\n</ul>\n</li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/networks.html\">gnnwr.networks module</a><ul>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/networks.html#gnnwr.networks.STNN_SPNN\"><code class=\"docutils literal notranslate\"><span class=\"pre\">STNN_SPNN</span></code></a><ul>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/networks.html#gnnwr.networks.STNN_SPNN.forward\"><code class=\"docutils literal notranslate\"><span class=\"pre\">STNN_SPNN.forward()</span></code></a></li>\n</ul>\n</li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/networks.html#gnnwr.networks.STPNN\"><code class=\"docutils literal notranslate\"><span class=\"pre\">STPNN</span></code></a><ul>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/networks.html#gnnwr.networks.STPNN.forward\"><code class=\"docutils literal notranslate\"><span class=\"pre\">STPNN.forward()</span></code></a></li>\n</ul>\n</li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/networks.html#gnnwr.networks.SWNN\"><code class=\"docutils literal notranslate\"><span class=\"pre\">SWNN</span></code></a><ul>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/networks.html#gnnwr.networks.SWNN.forward\"><code class=\"docutils literal notranslate\"><span class=\"pre\">SWNN.forward()</span></code></a></li>\n</ul>\n</li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/networks.html#gnnwr.networks.default_dense_layer\"><code class=\"docutils literal notranslate\"><span class=\"pre\">default_dense_layer()</span></code></a></li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/networks.html#gnnwr.networks.weight_share\"><code class=\"docutils literal notranslate\"><span class=\"pre\">weight_share()</span></code></a></li>\n</ul>\n</li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/utils.html\">gnnwr.utils module</a><ul>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS\"><code class=\"docutils literal notranslate\"><span class=\"pre\">DIAGNOSIS</span></code></a><ul>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.AIC\"><code class=\"docutils literal notranslate\"><span class=\"pre\">DIAGNOSIS.AIC()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.AICc\"><code class=\"docutils literal notranslate\"><span class=\"pre\">DIAGNOSIS.AICc()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.Adjust_R2\"><code class=\"docutils literal notranslate\"><span class=\"pre\">DIAGNOSIS.Adjust_R2()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.F1_GNN\"><code class=\"docutils literal notranslate\"><span class=\"pre\">DIAGNOSIS.F1_GNN()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.R2\"><code class=\"docutils literal notranslate\"><span class=\"pre\">DIAGNOSIS.R2()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.RMSE\"><code class=\"docutils literal notranslate\"><span class=\"pre\">DIAGNOSIS.RMSE()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.DIAGNOSIS.hat\"><code class=\"docutils literal notranslate\"><span class=\"pre\">DIAGNOSIS.hat()</span></code></a></li>\n</ul>\n</li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.OLS\"><code class=\"docutils literal notranslate\"><span class=\"pre\">OLS</span></code></a></li>\n<li class=\"toctree-l2\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.Visualize\"><code class=\"docutils literal notranslate\"><span class=\"pre\">Visualize</span></code></a><ul>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.Visualize.display_dataset\"><code class=\"docutils literal notranslate\"><span class=\"pre\">Visualize.display_dataset()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.Visualize.dot_map\"><code class=\"docutils literal notranslate\"><span class=\"pre\">Visualize.dot_map()</span></code></a></li>\n<li class=\"toctree-l3\"><a class=\"reference internal\" href=\"gnnwr/utils.html#gnnwr.utils.Visualize.weights_heatmap\"><code class=\"docutils literal notranslate\"><span class=\"pre\">Visualize.weights_heatmap()</span></code></a></li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</div>\n</section>\n<section id=\"indices-and-tables\">\n<h1>Indices and tables<a class=\"headerlink\" href=\"#indices-and-tables\" title=\"Link to this heading\"></a></h1>\n<ul class=\"simple\">\n<li><p><a class=\"reference internal\" href=\"genindex.html\"><span class=\"std std-ref\">Index</span></a></p></li>\n<li><p><a class=\"reference internal\" href=\"py-modindex.html\"><span class=\"std std-ref\">Module Index</span></a></p></li>\n<li><p><a class=\"reference internal\" href=\"search.html\"><span class=\"std std-ref\">Search Page</span></a></p></li>\n</ul>\n</section>\n\n\n           </div>\n          </div>\n          <footer><div class=\"rst-footer-buttons\" role=\"navigation\" aria-label=\"Footer\">\n        <a href=\"gnnwr/datasets.html\" class=\"btn btn-neutral float-right\" title=\"gnnwr.datasets module\" accesskey=\"n\" rel=\"next\">Next <span class=\"fa fa-arrow-circle-right\" aria-hidden=\"true\"></span></a>\n    </div>\n\n  <hr/>\n\n  <div role=\"contentinfo\">\n    <p>&#169; Copyright 2023, gnnwr.</p>\n  </div>\n\n  Built with <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> using a\n    <a href=\"https://github.com/readthedocs/sphinx_rtd_theme\">theme</a>\n    provided by <a href=\"https://readthedocs.org\">Read the Docs</a>.\n   \n\n</footer>\n        </div>\n      </div>\n    </section>\n  </div>\n  <script>\n      jQuery(function () {\n          SphinxRtdTheme.Navigation.enable(true);\n      });\n  </script> \n\n</body>\n</html>"
  },
  {
    "path": "doc/build/html/py-modindex.html",
    "content": "<!DOCTYPE html>\n<html class=\"writer-html5\" lang=\"en\" >\n<head>\n  <meta charset=\"utf-8\" />\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n  <title>Python Module Index &mdash; GNNWR 0.1.4 documentation</title>\n      <link rel=\"stylesheet\" href=\"_static/pygments.css\" type=\"text/css\" />\n      <link rel=\"stylesheet\" href=\"_static/css/theme.css\" type=\"text/css\" />\n  <!--[if lt IE 9]>\n    <script src=\"_static/js/html5shiv.min.js\"></script>\n  <![endif]-->\n  \n        <script src=\"_static/jquery.js?v=5d32c60e\"></script>\n        <script src=\"_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c\"></script>\n        <script src=\"_static/documentation_options.js?v=fd825880\"></script>\n        <script src=\"_static/doctools.js?v=888ff710\"></script>\n        <script src=\"_static/sphinx_highlight.js?v=dc90522c\"></script>\n    <script src=\"_static/js/theme.js\"></script>\n    <link rel=\"index\" title=\"Index\" href=\"genindex.html\" />\n    <link rel=\"search\" title=\"Search\" href=\"search.html\" />\n \n\n\n</head>\n\n<body class=\"wy-body-for-nav\"> \n  <div class=\"wy-grid-for-nav\">\n    <nav data-toggle=\"wy-nav-shift\" class=\"wy-nav-side\">\n      <div class=\"wy-side-scroll\">\n        <div class=\"wy-side-nav-search\" >\n\n          \n          \n          <a href=\"index.html\" class=\"icon icon-home\">\n            GNNWR\n          </a>\n<div role=\"search\">\n  <form id=\"rtd-search-form\" class=\"wy-form\" action=\"search.html\" method=\"get\">\n    <input type=\"text\" name=\"q\" placeholder=\"Search docs\" aria-label=\"Search docs\" />\n    <input type=\"hidden\" name=\"check_keywords\" value=\"yes\" />\n    <input type=\"hidden\" name=\"area\" value=\"default\" />\n  </form>\n</div>\n        </div><div class=\"wy-menu wy-menu-vertical\" data-spy=\"affix\" role=\"navigation\" aria-label=\"Navigation menu\">\n              <p class=\"caption\" role=\"heading\"><span class=\"caption-text\">Contents:</span></p>\n<ul>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/datasets.html\">gnnwr.datasets module</a></li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/models.html\">gnnwr.models module</a></li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/networks.html\">gnnwr.networks module</a></li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/utils.html\">gnnwr.utils module</a></li>\n</ul>\n\n        </div>\n      </div>\n    </nav>\n\n    <section data-toggle=\"wy-nav-shift\" class=\"wy-nav-content-wrap\"><nav class=\"wy-nav-top\" aria-label=\"Mobile navigation menu\" >\n          <i data-toggle=\"wy-nav-top\" class=\"fa fa-bars\"></i>\n          <a href=\"index.html\">GNNWR</a>\n      </nav>\n\n      <div class=\"wy-nav-content\">\n        <div class=\"rst-content\">\n          <div role=\"navigation\" aria-label=\"Page navigation\">\n  <ul class=\"wy-breadcrumbs\">\n      <li><a href=\"index.html\" class=\"icon icon-home\" aria-label=\"Home\"></a></li>\n      <li class=\"breadcrumb-item active\">Python Module Index</li>\n      <li class=\"wy-breadcrumbs-aside\">\n      </li>\n  </ul>\n  <hr/>\n</div>\n          <div role=\"main\" class=\"document\" itemscope=\"itemscope\" itemtype=\"http://schema.org/Article\">\n           <div itemprop=\"articleBody\">\n             \n\n   <h1>Python Module Index</h1>\n\n   <div class=\"modindex-jumpbox\">\n   <a href=\"#cap-g\"><strong>g</strong></a>\n   </div>\n\n   <table class=\"indextable modindextable\">\n     <tr class=\"pcap\"><td></td><td>&#160;</td><td></td></tr>\n     <tr class=\"cap\" id=\"cap-g\"><td></td><td>\n       <strong>g</strong></td><td></td></tr>\n     <tr>\n       <td><img src=\"_static/minus.png\" class=\"toggler\"\n              id=\"toggle-1\" style=\"display: none\" alt=\"-\" /></td>\n       <td>\n       <code class=\"xref\">gnnwr</code></td><td>\n       <em></em></td></tr>\n     <tr class=\"cg-1\">\n       <td></td>\n       <td>&#160;&#160;&#160;\n       <a href=\"gnnwr/datasets.html#module-gnnwr.datasets\"><code class=\"xref\">gnnwr.datasets</code></a></td><td>\n       <em></em></td></tr>\n     <tr class=\"cg-1\">\n       <td></td>\n       <td>&#160;&#160;&#160;\n       <a href=\"gnnwr/models.html#module-gnnwr.models\"><code class=\"xref\">gnnwr.models</code></a></td><td>\n       <em></em></td></tr>\n     <tr class=\"cg-1\">\n       <td></td>\n       <td>&#160;&#160;&#160;\n       <a href=\"gnnwr/networks.html#module-gnnwr.networks\"><code class=\"xref\">gnnwr.networks</code></a></td><td>\n       <em></em></td></tr>\n     <tr class=\"cg-1\">\n       <td></td>\n       <td>&#160;&#160;&#160;\n       <a href=\"gnnwr/utils.html#module-gnnwr.utils\"><code class=\"xref\">gnnwr.utils</code></a></td><td>\n       <em></em></td></tr>\n   </table>\n\n\n           </div>\n          </div>\n          <footer>\n\n  <hr/>\n\n  <div role=\"contentinfo\">\n    <p>&#169; Copyright 2023, gnnwr.</p>\n  </div>\n\n  Built with <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> using a\n    <a href=\"https://github.com/readthedocs/sphinx_rtd_theme\">theme</a>\n    provided by <a href=\"https://readthedocs.org\">Read the Docs</a>.\n   \n\n</footer>\n        </div>\n      </div>\n    </section>\n  </div>\n  <script>\n      jQuery(function () {\n          SphinxRtdTheme.Navigation.enable(true);\n      });\n  </script> \n\n</body>\n</html>"
  },
  {
    "path": "doc/build/html/search.html",
    "content": "<!DOCTYPE html>\n<html class=\"writer-html5\" lang=\"en\" >\n<head>\n  <meta charset=\"utf-8\" />\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n  <title>Search &mdash; GNNWR 0.1.4 documentation</title>\n      <link rel=\"stylesheet\" href=\"_static/pygments.css\" type=\"text/css\" />\n      <link rel=\"stylesheet\" href=\"_static/css/theme.css\" type=\"text/css\" />\n    \n  <!--[if lt IE 9]>\n    <script src=\"_static/js/html5shiv.min.js\"></script>\n  <![endif]-->\n  \n        <script src=\"_static/jquery.js?v=5d32c60e\"></script>\n        <script src=\"_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c\"></script>\n        <script src=\"_static/documentation_options.js?v=fd825880\"></script>\n        <script src=\"_static/doctools.js?v=888ff710\"></script>\n        <script src=\"_static/sphinx_highlight.js?v=dc90522c\"></script>\n    <script src=\"_static/js/theme.js\"></script>\n    <script src=\"_static/searchtools.js\"></script>\n    <script src=\"_static/language_data.js\"></script>\n    <link rel=\"index\" title=\"Index\" href=\"genindex.html\" />\n    <link rel=\"search\" title=\"Search\" href=\"#\" /> \n</head>\n\n<body class=\"wy-body-for-nav\"> \n  <div class=\"wy-grid-for-nav\">\n    <nav data-toggle=\"wy-nav-shift\" class=\"wy-nav-side\">\n      <div class=\"wy-side-scroll\">\n        <div class=\"wy-side-nav-search\" >\n\n          \n          \n          <a href=\"index.html\" class=\"icon icon-home\">\n            GNNWR\n          </a>\n<div role=\"search\">\n  <form id=\"rtd-search-form\" class=\"wy-form\" action=\"#\" method=\"get\">\n    <input type=\"text\" name=\"q\" placeholder=\"Search docs\" aria-label=\"Search docs\" />\n    <input type=\"hidden\" name=\"check_keywords\" value=\"yes\" />\n    <input type=\"hidden\" name=\"area\" value=\"default\" />\n  </form>\n</div>\n        </div><div class=\"wy-menu wy-menu-vertical\" data-spy=\"affix\" role=\"navigation\" aria-label=\"Navigation menu\">\n              <p class=\"caption\" role=\"heading\"><span class=\"caption-text\">Contents:</span></p>\n<ul>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/datasets.html\">gnnwr.datasets module</a></li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/models.html\">gnnwr.models module</a></li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/networks.html\">gnnwr.networks module</a></li>\n<li class=\"toctree-l1\"><a class=\"reference internal\" href=\"gnnwr/utils.html\">gnnwr.utils module</a></li>\n</ul>\n\n        </div>\n      </div>\n    </nav>\n\n    <section data-toggle=\"wy-nav-shift\" class=\"wy-nav-content-wrap\"><nav class=\"wy-nav-top\" aria-label=\"Mobile navigation menu\" >\n          <i data-toggle=\"wy-nav-top\" class=\"fa fa-bars\"></i>\n          <a href=\"index.html\">GNNWR</a>\n      </nav>\n\n      <div class=\"wy-nav-content\">\n        <div class=\"rst-content\">\n          <div role=\"navigation\" aria-label=\"Page navigation\">\n  <ul class=\"wy-breadcrumbs\">\n      <li><a href=\"index.html\" class=\"icon icon-home\" aria-label=\"Home\"></a></li>\n      <li class=\"breadcrumb-item active\">Search</li>\n      <li class=\"wy-breadcrumbs-aside\">\n      </li>\n  </ul>\n  <hr/>\n</div>\n          <div role=\"main\" class=\"document\" itemscope=\"itemscope\" itemtype=\"http://schema.org/Article\">\n           <div itemprop=\"articleBody\">\n             \n  <noscript>\n  <div id=\"fallback\" class=\"admonition warning\">\n    <p class=\"last\">\n      Please activate JavaScript to enable the search functionality.\n    </p>\n  </div>\n  </noscript>\n\n  \n  <div id=\"search-results\">\n  \n  </div>\n\n           </div>\n          </div>\n          <footer>\n\n  <hr/>\n\n  <div role=\"contentinfo\">\n    <p>&#169; Copyright 2023, gnnwr.</p>\n  </div>\n\n  Built with <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> using a\n    <a href=\"https://github.com/readthedocs/sphinx_rtd_theme\">theme</a>\n    provided by <a href=\"https://readthedocs.org\">Read the Docs</a>.\n   \n\n</footer>\n        </div>\n      </div>\n    </section>\n  </div>\n  <script>\n      jQuery(function () {\n          SphinxRtdTheme.Navigation.enable(true);\n      });\n  </script>\n  <script>\n    jQuery(function() { Search.loadIndex(\"searchindex.js\"); });\n  </script>\n  \n  <script id=\"searchindexloader\"></script>\n   \n\n\n</body>\n</html>"
  },
  {
    "path": "doc/build/html/searchindex.js",
    "content": "Search.setIndex({\"docnames\": [\"gnnwr/datasets\", \"gnnwr/models\", \"gnnwr/networks\", \"gnnwr/utils\", \"index\"], \"filenames\": [\"gnnwr/datasets.rst\", \"gnnwr/models.rst\", \"gnnwr/networks.rst\", \"gnnwr/utils.rst\", \"index.rst\"], \"titles\": [\"gnnwr.datasets module\", \"gnnwr.models module\", \"gnnwr.networks module\", \"gnnwr.utils module\", \"Welcome to GNNWR\\u2019s documentation!\"], \"terms\": {\"basicdist\": [0, 4], \"x\": [0, 2], \"y\": [0, 1], \"sourc\": [0, 1, 2, 3], \"calcul\": [0, 2, 3], \"distanc\": 0, \"between\": 0, \"two\": [0, 2], \"point\": 0, \"paramet\": [0, 1, 2, 3], \"input\": [0, 1, 2, 3], \"coordin\": 0, \"data\": [0, 3], \"target\": 0, \"return\": [0, 1, 2, 3], \"matrix\": [0, 3], \"manhattan_dist\": [0, 4], \"manhattan\": 0, \"class\": [0, 1, 2, 3], \"basedataset\": [0, 1, 4], \"none\": [0, 1, 2, 3], \"x_column\": 0, \"list\": [0, 1, 2, 3], \"y_column\": [0, 3], \"id_column\": 0, \"is_need_stnn\": 0, \"fals\": [0, 1, 2], \"base\": [0, 1, 2, 3], \"i\": [0, 1, 2, 3], \"which\": [0, 1, 2], \"us\": [0, 1, 2], \"store\": 0, \"other\": [0, 1], \"inform\": [0, 1], \"also\": 0, \"provid\": 0, \"function\": [0, 1, 2], \"scale\": [0, 4], \"save\": [0, 1, 4], \"load\": [0, 1], \"independ\": [0, 3], \"variabl\": [0, 3], \"column\": [0, 3], \"name\": [0, 1, 3], \"depend\": [0, 3], \"whether\": [0, 1, 2], \"stnn\": [0, 1, 2], \"getscaleddatafram\": [0, 4], \"get\": [0, 1, 3], \"datafram\": [0, 1], \"read\": [0, 4], \"dirnam\": 0, \"directori\": 0, \"rescal\": [0, 4], \"scale_fn\": 0, \"scale_param\": 0, \"minmaxscal\": 0, \"standardscal\": 0, \"like\": 0, \"scale2\": [0, 4], \"max\": [0, 1], \"min\": [0, 1], \"init_dataset\": [0, 4], \"test_ratio\": 0, \"valid_ratio\": 0, \"spatial_column\": 0, \"temp_column\": 0, \"sample_se\": 0, \"100\": [0, 1], \"process_fn\": 0, \"minmax_scal\": [0, 4], \"batch_siz\": 0, \"32\": [0, 1], \"shuffl\": 0, \"true\": [0, 1, 2], \"use_class\": 0, \"spatial_fun\": 0, \"temporal_fun\": 0, \"max_val_s\": 0, \"1\": [0, 1, 2], \"max_test_s\": 0, \"from_for_cv\": 0, \"0\": [0, 1, 2], \"refer\": 0, \"simple_dist\": 0, \"initi\": [0, 1], \"train\": [0, 1], \"set\": 0, \"valid\": [0, 1], \"test\": [0, 1, 3], \"model\": [0, 2, 4], \"ratio\": 0, \"attribut\": 0, \"output\": [0, 1, 2, 3], \"spatial\": [0, 1, 2], \"tempor\": [0, 1, 2], \"random\": 0, \"seed\": 0, \"pre\": 0, \"process\": [0, 1], \"batch\": [0, 1, 2], \"size\": [0, 1, 2], \"one\": [0, 1, 2], \"inject\": 0, \"start\": [0, 1], \"index\": [0, 4], \"cross\": 0, \"simpl\": 0, \"init_dataset_cv\": [0, 4], \"k_fold\": 0, \"k\": 0, \"fold\": 0, \"label\": 0, \"id\": 0, \"need\": [0, 2], \"cv_data_set\": 0, \"test_dataset\": [0, 1], \"init_predict_dataset\": [0, 4], \"train_dataset\": [0, 1], \"scale_sync\": 0, \"predictdataset\": [0, 1, 4], \"max_siz\": 0, \"predict\": [0, 1, 4], \"sync\": 0, \"predict_dataset\": 0, \"load_dataset\": [0, 4], \"scale_info\": 0, \"minmax\": 0, \"scaler\": 0, \"minimum\": [0, 1], \"valu\": 0, \"each\": [0, 1, 2], \"maximum\": [0, 1], \"standard_scal\": [0, 4], \"mean\": 0, \"std\": 0, \"standard\": 0, \"deviat\": 0, \"valid_dataset\": 1, \"dense_lay\": [1, 2], \"start_lr\": 1, \"float\": [1, 2], \"optim\": 1, \"adagrad\": 1, \"drop_out\": [1, 2], \"2\": [1, 2], \"batch_norm\": [1, 2], \"activate_func\": [1, 2], \"prelu\": [1, 2], \"num_paramet\": [1, 2], \"model_nam\": 1, \"gnnwr_20231128\": 1, \"111456\": 1, \"model_save_path\": 1, \"gnnwr_model\": 1, \"write_path\": 1, \"gnnwr_run\": 1, \"20231128\": 1, \"use_gpu\": 1, \"bool\": [1, 2], \"use_ol\": 1, \"log_path\": 1, \"gnnwr_log\": 1, \"log_file_nam\": 1, \"gnnwr20231128\": 1, \"log\": 1, \"log_level\": 1, \"20\": [1, 3], \"optimizer_param\": 1, \"object\": [1, 3], \"geograph\": 1, \"neural\": [1, 2, 3], \"network\": [1, 3, 4], \"weight\": [1, 2, 3], \"regress\": 1, \"address\": 1, \"non\": 1, \"stationar\": 1, \"variou\": 1, \"domain\": 1, \"complex\": 1, \"come\": 1, \"from\": 1, \"paper\": 1, \"accur\": 1, \"estim\": 1, \"dataset\": [1, 3, 4], \"dens\": [1, 2], \"layer\": [1, 2], \"default\": [1, 2], \"structur\": 1, \"geometr\": 1, \"sequenc\": 1, \"power\": 1, \"closest\": 1, \"number\": 1, \"neuron\": 1, \"e\": 1, \"4\": [1, 3], \"8\": 1, \"16\": 1, \"64\": 1, \"128\": 1, \"256\": 1, \"learn\": 1, \"rate\": [1, 2], \"str\": 1, \"option\": 1, \"choos\": 1, \"sgd\": 1, \"adam\": 1, \"rmsprop\": 1, \"adadelta\": 1, \"drop\": [1, 2], \"out\": [1, 2], \"normal\": [1, 2], \"torch\": [1, 2], \"nn\": [1, 2], \"activ\": [1, 2], \"init\": [1, 2], \"gnnwr_\": 1, \"datetim\": 1, \"todai\": 1, \"strftime\": 1, \"m\": 1, \"d\": 1, \"h\": 1, \"\": [1, 3], \"path\": 1, \"now\": 1, \"gpu\": 1, \"ol\": [1, 3, 4], \"int\": [1, 2], \"level\": 1, \"info\": 1, \"dict\": 1, \"param\": [1, 3], \"schedul\": 1, \"ar\": 1, \"maxlr\": 1, \"minlr\": 1, \"01\": 1, \"upepoch\": 1, \"epoch\": 1, \"up\": 1, \"10000\": 1, \"decayepoch\": 1, \"decai\": 1, \"20000\": 1, \"decayr\": 1, \"stop_change_epoch\": 1, \"stop\": 1, \"chang\": 1, \"30000\": 1, \"stop_lr\": 1, \"when\": 1, \"001\": 1, \"cosineannealingwarmrestart\": 1, \"multisteplr\": 1, \"cosineannealinglr\": 1, \"scheduler_mileston\": 1, \"mileston\": 1, \"500\": 1, \"1000\": 1, \"2000\": 1, \"4000\": 1, \"scheduler_gamma\": 1, \"gamma\": 1, \"5\": 1, \"scheduler_t_max\": 1, \"t_max\": 1, \"scheduler_eta_min\": 1, \"eta_min\": 1, \"scheduler_t_0\": 1, \"t_0\": 1, \"scheduler_t_mult\": 1, \"t_mult\": 1, \"3\": 1, \"add_graph\": [1, 4], \"add\": 1, \"graph\": 1, \"tensorboard\": 1, \"getloss\": [1, 4], \"loss\": 1, \"type\": [1, 2], \"getweight\": [1, 4], \"argument\": 1, \"panda\": 1, \"gpumodel_to_cpu\": [1, 4], \"save_path\": 1, \"use_model\": 1, \"convert\": 1, \"cpu\": 1, \"new\": 1, \"init_optim\": [1, 4], \"load_model\": [1, 4], \"use_dict\": 1, \"map_loc\": 1, \"locat\": 1, \"can\": 1, \"cuda\": 1, \"result\": [1, 3, 4], \"predict_weight\": [1, 4], \"reg_result\": [1, 4], \"filenam\": 1, \"model_path\": 1, \"only_return\": 1, \"includ\": 1, \"bia\": 1, \"file\": 1, \"self\": 1, \"_modelsavepath\": 1, \"_modelnam\": 1, \"pkl\": 1, \"onli\": 1, \"print\": 1, \"run\": [1, 2, 4], \"max_epoch\": 1, \"early_stop\": 1, \"print_frequ\": 1, \"50\": 1, \"show_detailed_info\": 1, \"ha\": 1, \"been\": 1, \"updat\": 1, \"until\": 1, \"frequenc\": 1, \"gtnnwr\": [1, 3, 4], \"gtnnwr_20231128\": 1, \"gtnnwr_model\": 1, \"gtnnwr_run\": 1, \"gtnnwr_log\": 1, \"gtnnwr20231128\": 1, \"stpnn_outsiz\": 1, \"stnn_spnn_param\": 1, \"stpnn\": [1, 2, 4], \"solv\": 1, \"problem\": 1, \"first\": 1, \"hidden\": 1, \"second\": 1, \"swnn\": [1, 2, 4], \"spnn\": [1, 2], \"stpnn_batch_norm\": 1, \"batchnorm\": 1, \"stnn_spnn\": [2, 4], \"stnn_insiz\": 2, \"stnn_outsiz\": 2, \"spnn_insiz\": 2, \"spnn_outsiz\": 2, \"relu\": 2, \"proxim\": 2, \"node\": 2, \"same\": 2, \"time\": 2, \"The\": 2, \"follow\": 2, \"full\": 2, \"connect\": 2, \"must\": 2, \"posit\": 2, \"forward\": [2, 4], \"input1\": 2, \"defin\": 2, \"comput\": 2, \"perform\": 2, \"everi\": 2, \"call\": 2, \"should\": 2, \"overridden\": 2, \"all\": [2, 3], \"subclass\": 2, \"although\": 2, \"recip\": 2, \"pass\": 2, \"within\": 2, \"thi\": 2, \"instanc\": 2, \"afterward\": 2, \"instead\": 2, \"sinc\": 2, \"former\": 2, \"take\": 2, \"care\": 2, \"regist\": 2, \"hook\": 2, \"while\": 2, \"latter\": 2, \"silent\": 2, \"ignor\": 2, \"them\": 2, \"insiz\": 2, \"outsiz\": 2, \"featur\": 2, \"default_dense_lay\": [2, 4], \"gener\": 2, \"weight_shar\": [2, 4], \"output_s\": 2, \"share\": 2, \"tensor\": 2, \"diagnosi\": [3, 4], \"x_data\": 3, \"y_data\": 3, \"y_pred\": 3, \"diagnos\": 3, \"aic\": [3, 4], \"aicc\": [3, 4], \"adjust_r2\": [3, 4], \"adjust\": 3, \"r2\": [3, 4], \"f1_gnn\": [3, 4], \"f1\": 3, \"rmse\": [3, 4], \"hat\": [3, 4], \"xname\": 3, \"yname\": 3, \"olr\": 3, \"visual\": [3, 4], \"lon_lat_column\": 3, \"zoom\": 3, \"display_dataset\": [3, 4], \"color\": 3, \"step\": 3, \"vmin\": 3, \"vmax\": 3, \"dot_map\": [3, 4], \"lon_column\": 3, \"lat_column\": 3, \"weights_heatmap\": [3, 4], \"data_column\": 3, \"modul\": 4, \"util\": 4, \"search\": 4, \"page\": 4}, \"objects\": {\"gnnwr\": [[0, 0, 0, \"-\", \"datasets\"], [1, 0, 0, \"-\", \"models\"], [2, 0, 0, \"-\", \"networks\"], [3, 0, 0, \"-\", \"utils\"]], \"gnnwr.datasets\": [[0, 1, 1, \"\", \"BasicDistance\"], [0, 1, 1, \"\", \"Manhattan_distance\"], [0, 2, 1, \"\", \"baseDataset\"], [0, 1, 1, \"\", \"init_dataset\"], [0, 1, 1, \"\", \"init_dataset_cv\"], [0, 1, 1, \"\", \"init_predict_dataset\"], [0, 1, 1, \"\", \"load_dataset\"], [0, 2, 1, \"\", \"predictDataset\"]], \"gnnwr.datasets.baseDataset\": [[0, 3, 1, \"\", \"getScaledDataframe\"], [0, 3, 1, \"\", \"read\"], [0, 3, 1, \"\", \"rescale\"], [0, 3, 1, \"\", \"save\"], [0, 3, 1, \"\", \"scale\"], [0, 3, 1, \"\", \"scale2\"]], \"gnnwr.datasets.predictDataset\": [[0, 3, 1, \"\", \"minmax_scaler\"], [0, 3, 1, \"\", \"rescale\"], [0, 3, 1, \"\", \"standard_scaler\"]], \"gnnwr.models\": [[1, 2, 1, \"\", \"GNNWR\"], [1, 2, 1, \"\", \"GTNNWR\"]], \"gnnwr.models.GNNWR\": [[1, 3, 1, \"\", \"add_graph\"], [1, 3, 1, \"\", \"getLoss\"], [1, 3, 1, \"\", \"getWeights\"], [1, 3, 1, \"\", \"gpumodel_to_cpu\"], [1, 3, 1, \"\", \"init_optimizer\"], [1, 3, 1, \"\", \"load_model\"], [1, 3, 1, \"\", \"predict\"], [1, 3, 1, \"\", \"predict_weight\"], [1, 3, 1, \"\", \"reg_result\"], [1, 3, 1, \"\", \"result\"], [1, 3, 1, \"\", \"run\"]], \"gnnwr.networks\": [[2, 2, 1, \"\", \"STNN_SPNN\"], [2, 2, 1, \"\", \"STPNN\"], [2, 2, 1, \"\", \"SWNN\"], [2, 1, 1, \"\", \"default_dense_layer\"], [2, 1, 1, \"\", \"weight_share\"]], \"gnnwr.networks.STNN_SPNN\": [[2, 3, 1, \"\", \"forward\"]], \"gnnwr.networks.STPNN\": [[2, 3, 1, \"\", \"forward\"]], \"gnnwr.networks.SWNN\": [[2, 3, 1, \"\", \"forward\"]], \"gnnwr.utils\": [[3, 2, 1, \"\", \"DIAGNOSIS\"], [3, 2, 1, \"\", \"OLS\"], [3, 2, 1, \"\", \"Visualize\"]], \"gnnwr.utils.DIAGNOSIS\": [[3, 3, 1, \"\", \"AIC\"], [3, 3, 1, \"\", \"AICc\"], [3, 3, 1, \"\", \"Adjust_R2\"], [3, 3, 1, \"\", \"F1_GNN\"], [3, 3, 1, \"\", \"R2\"], [3, 3, 1, \"\", \"RMSE\"], [3, 3, 1, \"\", \"hat\"]], \"gnnwr.utils.Visualize\": [[3, 3, 1, \"\", \"display_dataset\"], [3, 3, 1, \"\", \"dot_map\"], [3, 3, 1, \"\", \"weights_heatmap\"]]}, \"objtypes\": {\"0\": \"py:module\", \"1\": \"py:function\", \"2\": \"py:class\", \"3\": \"py:method\"}, \"objnames\": {\"0\": [\"py\", \"module\", \"Python module\"], \"1\": [\"py\", \"function\", \"Python function\"], \"2\": [\"py\", \"class\", \"Python class\"], \"3\": [\"py\", \"method\", \"Python method\"]}, \"titleterms\": {\"gnnwr\": [0, 1, 2, 3, 4], \"dataset\": 0, \"modul\": [0, 1, 2, 3], \"model\": 1, \"network\": 2, \"util\": 3, \"welcom\": 4, \"\": 4, \"document\": 4, \"content\": 4, \"indic\": 4, \"tabl\": 4}, \"envversion\": {\"sphinx.domains.c\": 3, \"sphinx.domains.changeset\": 1, \"sphinx.domains.citation\": 1, \"sphinx.domains.cpp\": 9, \"sphinx.domains.index\": 1, \"sphinx.domains.javascript\": 3, \"sphinx.domains.math\": 2, \"sphinx.domains.python\": 4, \"sphinx.domains.rst\": 2, \"sphinx.domains.std\": 2, \"sphinx.ext.intersphinx\": 1, \"sphinx.ext.todo\": 2, \"sphinx.ext.viewcode\": 1, \"sphinx\": 60}, \"alltitles\": {\"gnnwr.datasets module\": [[0, \"module-gnnwr.datasets\"]], \"gnnwr.models module\": [[1, \"module-gnnwr.models\"]], \"gnnwr.networks module\": [[2, \"module-gnnwr.networks\"]], \"gnnwr.utils module\": [[3, \"module-gnnwr.utils\"]], \"Welcome to GNNWR\\u2019s documentation!\": [[4, \"welcome-to-gnnwr-s-documentation\"]], \"Contents:\": [[4, null]], \"Indices and tables\": [[4, \"indices-and-tables\"]]}, \"indexentries\": {\"basicdistance() (in module gnnwr.datasets)\": [[0, \"gnnwr.datasets.BasicDistance\"]], \"manhattan_distance() (in module gnnwr.datasets)\": [[0, \"gnnwr.datasets.Manhattan_distance\"]], \"basedataset (class in gnnwr.datasets)\": [[0, \"gnnwr.datasets.baseDataset\"]], \"getscaleddataframe() (gnnwr.datasets.basedataset method)\": [[0, \"gnnwr.datasets.baseDataset.getScaledDataframe\"]], \"gnnwr.datasets\": [[0, \"module-gnnwr.datasets\"]], \"init_dataset() (in module gnnwr.datasets)\": [[0, \"gnnwr.datasets.init_dataset\"]], \"init_dataset_cv() (in module gnnwr.datasets)\": [[0, \"gnnwr.datasets.init_dataset_cv\"]], \"init_predict_dataset() (in module gnnwr.datasets)\": [[0, \"gnnwr.datasets.init_predict_dataset\"]], \"load_dataset() (in module gnnwr.datasets)\": [[0, \"gnnwr.datasets.load_dataset\"]], \"minmax_scaler() (gnnwr.datasets.predictdataset method)\": [[0, \"gnnwr.datasets.predictDataset.minmax_scaler\"]], \"module\": [[0, \"module-gnnwr.datasets\"], [1, \"module-gnnwr.models\"], [2, \"module-gnnwr.networks\"], [3, \"module-gnnwr.utils\"]], \"predictdataset (class in gnnwr.datasets)\": [[0, \"gnnwr.datasets.predictDataset\"]], \"read() (gnnwr.datasets.basedataset method)\": [[0, \"gnnwr.datasets.baseDataset.read\"]], \"rescale() (gnnwr.datasets.basedataset method)\": [[0, \"gnnwr.datasets.baseDataset.rescale\"]], \"rescale() (gnnwr.datasets.predictdataset method)\": [[0, \"gnnwr.datasets.predictDataset.rescale\"]], \"save() (gnnwr.datasets.basedataset method)\": [[0, \"gnnwr.datasets.baseDataset.save\"]], \"scale() (gnnwr.datasets.basedataset method)\": [[0, \"gnnwr.datasets.baseDataset.scale\"]], \"scale2() (gnnwr.datasets.basedataset method)\": [[0, \"gnnwr.datasets.baseDataset.scale2\"]], \"standard_scaler() (gnnwr.datasets.predictdataset method)\": [[0, \"gnnwr.datasets.predictDataset.standard_scaler\"]], \"gnnwr (class in gnnwr.models)\": [[1, \"gnnwr.models.GNNWR\"]], \"gtnnwr (class in gnnwr.models)\": [[1, \"gnnwr.models.GTNNWR\"]], \"add_graph() (gnnwr.models.gnnwr method)\": [[1, \"gnnwr.models.GNNWR.add_graph\"]], \"getloss() (gnnwr.models.gnnwr method)\": [[1, \"gnnwr.models.GNNWR.getLoss\"]], \"getweights() (gnnwr.models.gnnwr method)\": [[1, \"gnnwr.models.GNNWR.getWeights\"]], \"gnnwr.models\": [[1, \"module-gnnwr.models\"]], \"gpumodel_to_cpu() (gnnwr.models.gnnwr method)\": [[1, \"gnnwr.models.GNNWR.gpumodel_to_cpu\"]], \"init_optimizer() (gnnwr.models.gnnwr method)\": [[1, \"gnnwr.models.GNNWR.init_optimizer\"]], \"load_model() (gnnwr.models.gnnwr method)\": [[1, \"gnnwr.models.GNNWR.load_model\"]], \"predict() (gnnwr.models.gnnwr method)\": [[1, \"gnnwr.models.GNNWR.predict\"]], \"predict_weight() (gnnwr.models.gnnwr method)\": [[1, \"gnnwr.models.GNNWR.predict_weight\"]], \"reg_result() (gnnwr.models.gnnwr method)\": [[1, \"gnnwr.models.GNNWR.reg_result\"]], \"result() (gnnwr.models.gnnwr method)\": [[1, \"gnnwr.models.GNNWR.result\"]], \"run() (gnnwr.models.gnnwr method)\": [[1, \"gnnwr.models.GNNWR.run\"]], \"stnn_spnn (class in gnnwr.networks)\": [[2, \"gnnwr.networks.STNN_SPNN\"]], \"stpnn (class in gnnwr.networks)\": [[2, \"gnnwr.networks.STPNN\"]], \"swnn (class in gnnwr.networks)\": [[2, \"gnnwr.networks.SWNN\"]], \"default_dense_layer() (in module gnnwr.networks)\": [[2, \"gnnwr.networks.default_dense_layer\"]], \"forward() (gnnwr.networks.stnn_spnn method)\": [[2, \"gnnwr.networks.STNN_SPNN.forward\"]], \"forward() (gnnwr.networks.stpnn method)\": [[2, \"gnnwr.networks.STPNN.forward\"]], \"forward() (gnnwr.networks.swnn method)\": [[2, \"gnnwr.networks.SWNN.forward\"]], \"gnnwr.networks\": [[2, \"module-gnnwr.networks\"]], \"weight_share() (in module gnnwr.networks)\": [[2, \"gnnwr.networks.weight_share\"]], \"aic() (gnnwr.utils.diagnosis method)\": [[3, \"gnnwr.utils.DIAGNOSIS.AIC\"]], \"aicc() (gnnwr.utils.diagnosis method)\": [[3, \"gnnwr.utils.DIAGNOSIS.AICc\"]], \"adjust_r2() (gnnwr.utils.diagnosis method)\": [[3, \"gnnwr.utils.DIAGNOSIS.Adjust_R2\"]], \"diagnosis (class in gnnwr.utils)\": [[3, \"gnnwr.utils.DIAGNOSIS\"]], \"f1_gnn() (gnnwr.utils.diagnosis method)\": [[3, \"gnnwr.utils.DIAGNOSIS.F1_GNN\"]], \"ols (class in gnnwr.utils)\": [[3, \"gnnwr.utils.OLS\"]], \"r2() (gnnwr.utils.diagnosis method)\": [[3, \"gnnwr.utils.DIAGNOSIS.R2\"]], \"rmse() (gnnwr.utils.diagnosis method)\": [[3, \"gnnwr.utils.DIAGNOSIS.RMSE\"]], \"visualize (class in gnnwr.utils)\": [[3, \"gnnwr.utils.Visualize\"]], \"display_dataset() (gnnwr.utils.visualize method)\": [[3, \"gnnwr.utils.Visualize.display_dataset\"]], \"dot_map() (gnnwr.utils.visualize method)\": [[3, \"gnnwr.utils.Visualize.dot_map\"]], \"gnnwr.utils\": [[3, \"module-gnnwr.utils\"]], \"hat() (gnnwr.utils.diagnosis method)\": [[3, \"gnnwr.utils.DIAGNOSIS.hat\"]], \"weights_heatmap() (gnnwr.utils.visualize method)\": [[3, \"gnnwr.utils.Visualize.weights_heatmap\"]]}})"
  },
  {
    "path": "doc/make.bat",
    "content": "@ECHO OFF\n\npushd %~dp0\n\nREM Command file for Sphinx documentation\n\nif \"%SPHINXBUILD%\" == \"\" (\n\tset SPHINXBUILD=sphinx-build\n)\nset SOURCEDIR=source\nset BUILDDIR=build\n\n%SPHINXBUILD% >NUL 2>NUL\nif errorlevel 9009 (\n\techo.\n\techo.The 'sphinx-build' command was not found. Make sure you have Sphinx\n\techo.installed, then set the SPHINXBUILD environment variable to point\n\techo.to the full path of the 'sphinx-build' executable. Alternatively you\n\techo.may add the Sphinx directory to PATH.\n\techo.\n\techo.If you don't have Sphinx installed, grab it from\n\techo.https://www.sphinx-doc.org/\n\texit /b 1\n)\n\nif \"%1\" == \"\" goto help\n\n%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%\ngoto end\n\n:help\n%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%\n\n:end\npopd\n"
  },
  {
    "path": "doc/source/conf.py",
    "content": "# Configuration file for the Sphinx documentation builder.\n#\n# For the full list of built-in configuration values, see the documentation:\n# https://www.sphinx-doc.org/en/master/usage/configuration.html\n\n# -- Project information -----------------------------------------------------\n# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information\nimport os\nimport sys\nsys.path.insert(0,os.path.abspath('../../src'))\nproject = 'GNNWR'\ncopyright = '2023, gnnwr'\nauthor = 'gnnwr'\nrelease = '0.1.4'\n\n# -- General configuration ---------------------------------------------------\n# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration\n\nextensions = ['sphinx.ext.autodoc',\n    'sphinx.ext.doctest',\n    'sphinx.ext.intersphinx',\n    'sphinx.ext.todo',\n    'sphinx.ext.coverage',\n    'sphinx.ext.mathjax',\n    'sphinx.ext.napoleon',\n    'sphinx.ext.githubpages',\n    'sphinx.ext.viewcode'\n    ]\n\n\ntemplates_path = ['_templates']\nexclude_patterns = []\n\n\n\n# -- Options for HTML output -------------------------------------------------\n# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output\n\nhtml_theme = 'sphinx_rtd_theme'\nhtml_static_path = ['_static']\n"
  },
  {
    "path": "doc/source/index.rst",
    "content": ".. GNNWR documentation master file, created by\n   sphinx-quickstart on Sat Sep 16 22:25:09 2023.\n   You can adapt this file completely to your liking, but it should at least\n   contain the root `toctree` directive.\n\nWelcome to GNNWR's documentation!\n=================================\n\n.. toctree::\n   :maxdepth: 3\n   :caption: Contents:\n   :glob:\n   \n   gnnwr/*\n\nIndices and tables\n==================\n\n* :ref:`genindex`\n* :ref:`modindex`\n* :ref:`search`\n"
  },
  {
    "path": "requirements.txt",
    "content": "numpy>=1.21.0\npandas >=1.5.3\nscikit_learn>=1.0.2\ntorch>=1.8.1\ntqdm>=4.63.0\nfolium~=0.14.0\nbranca~=0.6.0\nscipy~=1.10.1\ntensorboard>=2.0.0"
  },
  {
    "path": "src/gnnwr/__init__.py",
    "content": "from .datasets import *\nfrom .models import *\nfrom .networks import *\nfrom .utils import *"
  },
  {
    "path": "src/gnnwr/datasets.py",
    "content": "import json\nimport os\n\nimport numpy as np\nimport pandas\nimport pandas as pd\nimport torch\nfrom sklearn.preprocessing import MinMaxScaler, StandardScaler\nfrom torch.utils.data import Dataset, DataLoader\nimport warnings\nfrom scipy.spatial import distance\n\nr\"\"\"\nThe package of `datasets` includes the following functions:\n    1. init_dataset: initialize the dataset for training, validation and testing\n    2. init_dataset_cv: initialize the dataset for cross-validation\n    3. init_predict_dataset: initialize the dataset for prediction\n    4. BasicDistance: calculate the distance matrix of spatial/spatio-temporal data\n    5. ManhattanDistance: calculate the Manhattan distance matrix of spatial/spatio-temporal data\nand the following classes:\n    1. baseDataset: the base class of dataset\n    2. predictDataset: the class of dataset for prediction\nthe purpose of this package is to provide the basic functions of pre-processing data and calculating distance matrix\nto facilitate the use of the model.\n\"\"\"\n\n\nclass baseDataset(Dataset):\n    r\"\"\"\n    baseDataset is the base class of dataset, which is used to store the data and other information.\n    it also provides the function of data scaling, data saving and data loading.\n\n    Parameters\n    ----------\n    data: pandas.DataFrame\n        dataframe\n    x_column: list\n        independent variable column name\n    y_column: list\n        dependent variable column name\n    id_column: str\n        id column name\n    is_need_STNN: bool\n        whether need STNN(default: ``False``)\n        | if ``True``, the dataset will be used to train the Model with STNN and SPNN\n        | and the GTNNWR Model will use the STNN and SPNN to calculate the distance matrix\n        | if ``False``, the dataset will not be used to train the Model with STNN and SPNN\n    \"\"\"\n\n    def __init__(self, data=None, x_column: list = None, y_column: list = None, id_column=None, is_need_STNN=False):\n\n        self.dataframe = data\n        self.x = x_column\n        self.y = y_column\n        self.id = id_column\n        if data is None:\n            self.x_data = None\n            self.datasize = -1\n            self.coefsize = -1\n            self.y_data = None\n            self.id_data = None\n        else:\n            self.x_data = data[x_column].astype(np.float32).values  # x_data is independent variables data\n            self.datasize = self.x_data.shape[0]  # datasize is the number of samples\n            self.coefsize = len(x_column) + 1  # coefsize is the number of coefficients\n            self.y_data = data[y_column].astype(np.float32).values  # y_data is dependent variables data\n            if id_column is not None:\n                self.id_data = data[id_column].astype(np.int64).values\n            else:\n                raise ValueError(\"id_column is None\")\n\n        self.is_need_STNN = is_need_STNN\n\n        self.scale_fn = None  # scale function\n        self.x_scale_info = None  # scale information of x_data\n        self.y_scale_info = None  # scale information of y_data\n        self.distances = None  # distances is the distance matrix of spatial/spatio-temporal data\n        self.temporal = None  # temporal is the temporal distance matrix of spatio-temporal data\n        self.simple_distance = True\n        self.scaledDataframe = None\n        self.batch_size = None\n        self.shuffle = None\n        self.distances_scale_param = None\n\n    def __len__(self):\n        \"\"\"\n        :return: the number of samples\n        \"\"\"\n        return len(self.y_data)\n\n    def __getitem__(self, index):\n        \"\"\"\n        :param index: the index of sample\n        :return: the index-th distance matrix and the index-th sample\n        \"\"\"\n        if self.is_need_STNN:\n            return torch.cat((torch.tensor(self.distances[index], dtype=torch.float),\n                              torch.tensor(self.temporal[index], dtype=torch.float)), dim=-1), \\\n                torch.tensor(self.x_data[index], dtype=torch.float), \\\n                torch.tensor(self.y_data[index], dtype=torch.float), \\\n                torch.tensor(self.id_data[index], dtype=torch.float)\n        return torch.tensor(self.distances[index], dtype=torch.float), \\\n                torch.tensor(self.x_data[index],dtype=torch.float), \\\n                torch.tensor(self.y_data[index], dtype=torch.float), \\\n                torch.tensor(self.id_data[index], dtype=torch.float)\n\n\n    def scale(self, scale_fn, scale_params):\n        \"\"\"\n        scale the data with the scale function and scale parameters\n\n        Parameters\n        ----------\n        scale_fn: str\n            scale function name\n            | if ``minmax_scale``, use MinMaxScaler\n            | if ``standard_scale``, use StandardScaler\n        scale_params: list\n            scaler with scale parameters\n            | if ``minmax_scale``, scale_params is a list of dict with ``min`` and ``max``\n            | if ``standard_scale``, scale_params is a list of dict with ``mean`` and ``var``\n        \"\"\"\n        x_scale_params = scale_params[0]\n        y_scale_params = scale_params[1]        \n        \n        if not x_scale_params:\n            x_scale_params = None\n        if not y_scale_params:\n            y_scale_params = None\n\n        self.x_scale_info,self.y_scale_info = x_scale_params, y_scale_params\n            \n        if scale_fn == \"minmax_scale\":\n            self.scale_fn = \"minmax_scale\"\n            if x_scale_params is not None:\n                self.x_data = (self.x_data - x_scale_params[\"min\"]) / (x_scale_params[\"max\"] - x_scale_params[\"min\"])\n            if y_scale_params is not None:\n                self.y_data = (self.y_data - y_scale_params[\"min\"]) / (y_scale_params[\"max\"] - y_scale_params[\"min\"])\n        elif scale_fn == \"standard_scale\":\n            self.scale_fn = \"standard_scale\"\n            if x_scale_params is not None:\n                self.x_data = (self.x_data - x_scale_params['mean']) / np.sqrt(x_scale_params[\"var\"])\n            if y_scale_params is not None:\n                self.y_data = (self.y_data - y_scale_params['mean']) / np.sqrt(y_scale_params[\"var\"])\n\n        self.getScaledDataframe() # Calculate ScaledDataframe\n\n        self.x_data = np.concatenate((self.x_data, np.ones(\n            (self.datasize, 1))), axis=1)\n\n    def getScaledDataframe(self):\n        \"\"\"\n        get the scaled dataframe and save it in ``scaledDataframe``\n        \"\"\"\n        columns = np.concatenate((self.x, self.y), axis=0)\n        scaledData = np.concatenate((self.x_data, self.y_data), axis=1)\n        self.scaledDataframe = pd.DataFrame(scaledData, columns=columns)\n\n    def rescale(self, x, y):\n        \"\"\"\n        rescale the data with the scale function and scale parameters\n\n        Parameters\n        ----------\n        x: numpy.ndarray\n            independent variable data\n        y: numpy.ndarray\n            dependent variable data\n\n        Returns\n        -------\n        x: numpy.ndarray\n            rescaled independent variable data\n        y: numpy.ndarray\n            rescaled dependent variable data\n        \"\"\"\n        if self.scale_fn == \"minmax_scale\":\n            if x is not None and self.x_scale_info is not None:\n                x = np.multiply(x, self.x_scale_info[\"max\"] - self.x_scale_info[\"min\"]) + self.x_scale_info[\"min\"]\n            elif self.x_scale_info is None:\n                raise ValueError(\"Invalid x scale info\")\n            if y is not None and self.y_scale_info is not None:\n                y = np.multiply(y, self.y_scale_info[\"max\"] - self.y_scale_info[\"min\"]) + self.y_scale_info[\"min\"]\n            elif self.y_scale_info is None:\n                raise ValueError(\"Invalid y scale info\")\n        elif self.scale_fn == \"standard_scale\":\n            if x is not None and self.x_scale_info is not None:\n                x = np.multiply(x, np.sqrt(self.x_scale_info[\"var\"])) + self.x_scale_info[\"mean\"]\n            elif self.x_scale_info is None:\n                raise ValueError(\"Invalid x scale info\")\n            if y is not None and self.y_scale_info is not None:\n                y = np.multiply(y, np.sqrt(self.y_scale_info[\"var\"])) + self.y_scale_info[\"mean\"]\n            elif self.y_scale_info is None:\n                raise ValueError(\"Invalid y scale info\")\n        else:\n            raise ValueError(\"invalid process_fn\")\n        return x, y\n\n    def save(self, dirname, exist_ok=False):\n        \"\"\"\n        save the dataset\n\n        :param dirname: save directory\n        \"\"\"\n        if os.path.exists(dirname) and not exist_ok:\n            raise ValueError(\"dir is already exists\")\n        if self.dataframe is None:\n            raise ValueError(\"dataframe is None\")\n        if not os.path.exists(dirname):\n            os.makedirs(dirname)\n        x_scale_info = {}\n        y_scale_info = {}\n        if self.x_scale_info is not None:\n            for key, value in self.x_scale_info.items():\n                x_scale_info[key] = value.tolist()\n        if self.y_scale_info is not None:\n            for key, value in self.y_scale_info.items():\n                y_scale_info[key] = value.tolist()\n        with open(os.path.join(dirname, \"dataset_info.json\"), \"w\") as f:\n            distance_scale_info = {}\n            for key in self.distances_scale_param.keys():\n                distance_scale_info[key] = self.distances_scale_param[key].tolist()\n            json.dump({\"x\": self.x,\n                       \"y\": self.y,\n                       \"id\": self.id,\n                       \"batch_size\": self.batch_size,\n                       \"shuffle\": self.shuffle,\n                       \"is_need_STNN\": self.is_need_STNN,\n                       \"scale_fn\": self.scale_fn,\n                       \"x_scale_info\": json.dumps(x_scale_info),\n                       \"y_scale_info\": json.dumps(y_scale_info),\n                       \"distance_scale_info\": json.dumps(distance_scale_info),\n                       'simple_distance': self.simple_distance\n                       }, f)\n        # save the distance matrix\n        np.save(os.path.join(dirname, \"distances.npy\"), self.distances)\n        # save dataframe\n        self.dataframe.to_csv(os.path.join(dirname, \"dataframe.csv\"), index=False)\n        self.scaledDataframe.to_csv(os.path.join(dirname, \"scaledDataframe.csv\"), index=False)\n\n    def read(self, dirname):\n        \"\"\"\n        read the dataset by the directory\n\n        :param dirname: read directory\n        \"\"\"\n        if not os.path.exists(dirname):\n            raise ValueError(\"dir is not exists\")\n        # read the information of dataset\n        with open(os.path.join(dirname, \"dataset_info.json\"), \"r\") as f:\n            dataset_info = json.load(f)\n        self.x = dataset_info.get(\"x\", None)\n        self.y = dataset_info.get(\"y\", None)\n        self.id = dataset_info.get(\"id\", None)\n        self.batch_size = dataset_info.get(\"batch_size\", None)\n        self.shuffle = dataset_info.get(\"shuffle\", None)\n        self.is_need_STNN = dataset_info.get(\"is_need_STNN\", None)\n        self.scale_fn = dataset_info.get(\"scale_fn\", None)\n        self.simple_distance = dataset_info.get(\"simple_distance\", None)\n        self.x_scale_info = json.loads(dataset_info.get(\"x_scale_info\", None))\n        self.y_scale_info = json.loads(dataset_info.get(\"y_scale_info\", None))\n        self.distances_scale_param = json.loads(dataset_info.get(\"distance_scale_info\", None))\n        x_scale_info = self.x_scale_info\n        y_scale_info = self.y_scale_info\n        if self.x_scale_info is not None:\n            for key, value in x_scale_info.items():\n                self.x_scale_info[key] = np.array(value)\n        if self.y_scale_info is not None:\n            for key, value in y_scale_info.items():\n                self.y_scale_info[key] = np.array(value)\n        # read the distance matrix\n        self.distances = np.load(os.path.join(dirname, \"distances.npy\")).astype(np.float32)\n        # read dataframe\n        self.dataframe = pd.read_csv(os.path.join(dirname, \"dataframe.csv\"))\n        self.x_data = self.dataframe[self.x].astype(np.float32).values\n        self.datasize = self.x_data.shape[0]\n        self.y_data = self.dataframe[self.y].astype(np.float32).values\n        self.id_data = self.dataframe[self.id].astype(np.int64).values\n        self.coefsize = len(self.x) + 1\n        self.scale(self.scale_fn, [self.x_scale_info, self.y_scale_info])\n\n\n\nclass predictDataset(Dataset):\n    \"\"\"\n    Predict dataset is used to predict the dependent variable of the data.\n\n    :param data: dataframe\n    :param x_column: independent variable column name\n    :param process_fn: process function name\n    :param scale_info: process function parameters\n    :param is_need_STNN: whether to need STNN\n    \"\"\"\n\n    def __init__(self, data, x_column, process_fn=\"minmax_scale\", scale_info=None, is_need_STNN=False):\n\n        if scale_info is None:\n            scale_info = []\n        \n        self.dataframe = data\n        self.x = x_column\n\n        if data is None:\n            self.x_data = None\n            self.datasize = -1\n            self.coefsize = -1\n        else:\n            self.x_data = data[x_column].astype(np.float32).values  # x_data is independent variables data\n            self.datasize = self.x_data.shape[0]  # datasize is the number of samples\n            self.coefsize = len(x_column) + 1  # coefsize is the number of coefficients\n        \n        self.is_need_STNN = is_need_STNN\n        self.process_fn = process_fn\n\n        if len(scale_info):\n            self.x_scale_info = scale_info[0]  # scale information of x_data\n            self.y_scale_info = scale_info[1]\n            self.use_scale_info = True\n        else:\n            self.x_scale_info, self.y_scale_info = None, None\n            self.use_scale_info = False\n        \n        # 数据预处理\n        self.scale_fn = process_fn\n        if process_fn == \"minmax_scale\":\n            if self.use_scale_info:\n                self.x_data = self.minmax_scaler(self.x_data, self.x_scale_info[\"min\"], self.x_scale_info[\"max\"])\n            else:\n                self.x_data = self.minmax_scaler(self.x_data)\n        elif process_fn == \"standard_scale\":\n            if self.use_scale_info:\n                self.x_data = self.standard_scaler(self.x_data, self.x_scale_info[\"mean\"], np.sqrt(self.x_scale_info[\"var\"]))\n            else:\n                self.x_data = self.standard_scaler(self.x_data)\n        else:\n            raise ValueError(\"invalid process_fn\")\n\n        self.x_data = np.concatenate((self.x_data, np.ones((self.datasize, 1))), axis=1)\n\n        self.distances = None\n        self.temporal = None\n\n    def __len__(self):\n        \"\"\"\n        :return: the number of samples\n        \"\"\"\n        return len(self.x_data)\n\n    def __getitem__(self, index):\n        \"\"\"\n        :param index: sample index\n        :return: distance matrix and independent variable data and dependent variable data\n        \"\"\"\n        if self.is_need_STNN:\n            return torch.cat((torch.tensor(self.distances[index], dtype=torch.float),\n                              torch.tensor(self.temporal[index], dtype=torch.float)), dim=-1), \\\n                    torch.tensor(self.x_data[index], dtype=torch.float)\n        return torch.tensor(self.distances[index], dtype=torch.float), \\\n                torch.tensor(self.x_data[index], dtype=torch.float)\n\n    def rescale(self, x, y):\n        \"\"\"\n        rescale the attribute data\n\n        :param x: Input attribute data\n        :return: rescaled attribute data\n        \"\"\"\n        if self.scale_fn == \"minmax_scale\":\n            if x is not None and self.x_scale_info is not None:\n                x = x * (self.x_scale_info[\"max\"] - self.x_scale_info[\"min\"]) + self.x_scale_info[\"min\"]\n            elif self.x_scale_info is None:\n                raise ValueError(\"Invalid x scale info\")\n            if y is not None and  self.y_scale_info is not None:\n                y = y * (self.y_scale_info[\"max\"] - self.y_scale_info[\"min\"]) + self.y_scale_info[\"min\"]\n            elif self.y_scale_info is None:\n                raise ValueError(\"Invalid y scale info\")\n    \n        elif self.scale_fn == \"standard_scale\":\n            if x is not None and self.x_scale_info is not None:\n                x = x * np.sqrt(self.x_scale_info[\"var\"]) + self.x_scale_info[\"mean\"]\n            elif self.x_scale_info is None:\n                raise ValueError(\"Invalid x scale info\")\n            if y is not None and self.y_scale_info is not None:\n                y = y * np.sqrt(self.y_scale_info[\"var\"]) + self.y_scale_info[\"mean\"]\n            elif self.y_scale_info is None:\n                raise ValueError(\"Invalid y scale info\")\n        else:\n            raise ValueError(\"invalid process_fn\")\n\n        return x,y\n\n    def minmax_scaler(self, x, min=None, max=None):\n        \"\"\"\n        function of minmax scaler\n\n        :param x: Input attribute data\n        :param min: minimum value of each attribute\n        :param max: maximum value of each attribute\n        :return: Output attribute data\n        \"\"\"\n        if max is None:\n            max = []\n        if min is None:\n            min = []\n        if len(min) == 0:\n            x = (x - x.min(axis=0)) / (x.max(axis=0) - x.min(axis=0))\n        else:\n            x = (x - min) / (max - min)\n        return x\n\n    def standard_scaler(self, x, mean=None, std=None):\n        \"\"\"\n        function of standard scaler\n\n        :param x: Input attribute data\n        :param mean: mean value of each attribute\n        :param std: standard deviation of each attribute\n        :return: Output attribute data\n        \"\"\"\n        if std is None:\n            std = []\n        if mean is None:\n            mean = []\n        if len(mean) == 0:\n            x = (x - x.mean(axis=0)) / x.std(axis=0)\n        else:\n            x = (x - mean) / std\n        return x\n\n\ndef BasicDistance(x, y):\n    \"\"\"\n    Calculate the distance between two points\n\n    :param x: Input point coordinate data\n    :param y: Input target point coordinate data\n    :return: distance matrix\n    \"\"\"\n    x = np.float32(x)\n    y = np.float32(y)\n    dist = distance.cdist(x, y, 'euclidean')\n    return dist\n\n\ndef ManhattanDistance(x, y):\n    \"\"\"\n    Calculate the Manhattan distance between two points\n\n    :param x: Input point coordinate data\n    :param y: Input target point coordinate data\n    :return: distance matrix\n    \"\"\"\n    return np.float32(np.sum(np.abs(x[:, np.newaxis, :] - y), axis=2))\n\n\ndef init_dataset(data, \n                 test_ratio,\n                 valid_ratio,\n                 x_column,\n                 y_column,\n                 spatial_column=None,\n                 temp_column=None,\n                 id_column=None,\n                 sample_seed=42,\n                 process_fn=\"minmax_scale\",\n                 process_var = [\"x\"],\n                 batch_size=32,\n                 shuffle=True,\n                 use_model=\"gnnwr\",\n                 spatial_fun=BasicDistance,\n                 temporal_fun=ManhattanDistance,\n                 max_val_size=-1,\n                 max_test_size=-1,\n                 from_for_cv=0,\n                 is_need_STNN=False,\n                 Reference=None,\n                 simple_distance=True,\n                 dropna=True\n                 ):\n    r\"\"\"\n    Initialize the dataset and return the training set, validation set, and test set for the model.\n\n    Parameters\n    ----------\n    data : pandas.DataFrame\n        The dataset to be initialized.\n    test_ratio : float\n        The ratio of test data.\n    valid_ratio : float\n        The ratio of validation data.\n    x_column : list\n        The name of the input attribute column.\n    y_column : list\n        The name of the output attribute column.\n    spatial_column : list\n        The name of the spatial attribute column.\n    temp_column : list\n        The name of the temporal attribute column.\n    id_column : list\n        The name of the ID column.\n    sample_seed : int\n        The random seed for sampling.\n    process_fn : callable\n        The data pre-processing function.\n    batch_size : int\n        The size of the batch.\n    shuffle : bool\n        Whether to shuffle the data.\n    use_model : str\n        The model to be used, e.g., \"gnnwr\", \"gnnwr spnn\", \"gtnnwr\", \"gtnnwr stpnn\".\n    spatial_fun : callable\n        The function for calculating spatial distance.\n    temporal_fun : callable\n        The function for calculating temporal distance.\n    max_val_size : int\n        The maximum size of the validation data in one injection.\n    max_test_size : int\n        The maximum size of the test data in one injection.\n    from_for_cv : int\n        The start index of the data for cross-validation.\n    is_need_STNN : bool\n        A flag indicating whether to use STNN.\n    Reference : Union[str, pandas.DataFrame]\n        Reference points for calculating the distance. It can be a string [\"train\", \"train_val\"] or a pandas DataFrame.\n    simple_distance : bool\n        A flag indicating whether to use a simple distance function for calculation.\n    dropna : bool\n        A flag indicating whether to drop NaN values.\n\n    Returns\n    -------\n    train_dataset : baseDataset\n        The training dataset.\n    valid_dataset : baseDataset\n        The validation dataset.\n    test_dataset : baseDataset\n        The test dataset.\n    \"\"\"\n\n    if spatial_fun is None:\n        # if dist_fun is None, raise error\n        raise ValueError(\n            \"dist_fun must be a function that can process the data\")\n\n    if spatial_column is None:\n        # if dist_column is None, raise error\n        raise ValueError(\n            \"dist_column must be a column name in data\")\n    if dropna:\n        oriLen = data.shape[0]\n        data.dropna(axis=0, how='any', inplace=True)\n        if oriLen > data.shape[0]:\n            warnings.warn(\n                \"Dropping {} {} with missing values. To forbid dropping, you need to set the argument dropna=False\".format(\n                    oriLen - data.shape[0], 'row' if oriLen - data.shape[0] == 1 else 'rows'))\n    if id_column is None:\n        id_column = ['id']\n        if 'id' not in data.columns:\n            data['id'] = np.arange(len(data))\n        else:\n            warnings.warn(\"id_column is None and use default id column in data\", RuntimeWarning)\n    np.random.seed(sample_seed)\n    data = data.sample(frac=1)  # shuffle data\n    # data split\n    test_data = data[int((1 - test_ratio) * len(data)):]\n    train_data = data[:int((1 - test_ratio) * len(data))]\n    val_data = train_data[\n               int(from_for_cv * valid_ratio * len(train_data)):int((1 + from_for_cv) * valid_ratio * len(train_data))]\n    train_data = pandas.concat([train_data[:int(from_for_cv * valid_ratio * len(train_data))],\n                                train_data[int((1 + from_for_cv) * valid_ratio * len(train_data)):]])\n    return init_dataset_split(\n        train_data=train_data,\n        val_data=val_data,\n        test_data=test_data,\n        x_column=x_column,\n        y_column=y_column,\n        spatial_column=spatial_column,\n        temp_column=temp_column,\n        id_column=id_column,\n        process_fn=process_fn,\n        process_var = process_var,\n        batch_size=batch_size,\n        shuffle=shuffle,\n        use_model=use_model,\n        spatial_fun=spatial_fun,\n        temporal_fun=temporal_fun,\n        max_val_size=max_val_size,\n        max_test_size=max_test_size,\n        is_need_STNN=is_need_STNN,\n        Reference=Reference,\n        simple_distance=simple_distance,\n        dropna=dropna\n    )\n\n    \n\ndef init_dataset_split(train_data, \n                    val_data,\n                    test_data,\n                    x_column,\n                    y_column,\n                    spatial_column=None,\n                    temp_column=None,\n                    id_column=None,\n                    process_fn=\"minmax_scale\",\n                    process_var = [\"x\"],\n                    batch_size=32,\n                    shuffle=True,\n                    use_model=\"gnnwr\",\n                    spatial_fun=BasicDistance,\n                    temporal_fun=ManhattanDistance,\n                    max_val_size=-1,\n                    max_test_size=-1,\n                    is_need_STNN=False,\n                    Reference=None,\n                    simple_distance=True,\n                    dropna=True\n                    ):\n    r\"\"\"\n    Initialize the dataset and return the training set, validation set, and test set for the model.\n\n    Parameters\n    ----------\n    train_data : pandas.DataFrame\n        The dataset to be initialized.\n    valid_data : pandas.DataFrame\n        The dataset to be initialized.\n    test_data : pandas.DataFrame\n        The dataset to be initialized.\n    x_column : list\n        The name of the input attribute column.\n    y_column : list\n        The name of the output attribute column.\n    spatial_column : list\n        The name of the spatial attribute column.\n    temp_column : list\n        The name of the temporal attribute column.\n    id_column : list\n        The name of the ID column.\n    sample_seed : int\n        The random seed for sampling.\n    process_fn : callable\n        The data pre-processing function.\n    batch_size : int\n        The size of the batch.\n    shuffle : bool\n        Whether to shuffle the data.\n    use_model : str\n        The model to be used, e.g., \"gnnwr\", \"gnnwr spnn\", \"gtnnwr\", \"gtnnwr stpnn\".\n    spatial_fun : callable\n        The function for calculating spatial distance.\n    temporal_fun : callable\n        The function for calculating temporal distance.\n    max_val_size : int\n        The maximum size of the validation data in one injection.\n    max_test_size : int\n        The maximum size of the test data in one injection.\n    from_for_cv : int\n        The start index of the data for cross-validation.\n    is_need_STNN : bool\n        A flag indicating whether to use STNN.\n    Reference : Union[str, pandas.DataFrame]\n        Reference points for calculating the distance. It can be a string [\"train\", \"train_val\"] or a pandas DataFrame.\n    simple_distance : bool\n        A flag indicating whether to use a simple distance function for calculation.\n    dropna : bool\n        A flag indicating whether to drop NaN values.\n\n    Returns\n    -------\n    train_dataset : baseDataset\n        The training dataset.\n    valid_dataset : baseDataset\n        The validation dataset.\n    test_dataset : baseDataset\n        The test dataset.\n    \"\"\"\n\n    if spatial_fun is None:\n        # if dist_fun is None, raise error\n        raise ValueError(\n            \"dist_fun must be a function that can process the data\")\n\n    if spatial_column is None:\n        # if dist_column is None, raise error\n        raise ValueError(\n            \"dist_column must be a column name in data\")\n    \n    if dropna:\n        # train_data\n        oriLen_train = train_data.shape[0]\n        train_data = train_data.dropna(axis=0)\n\n        if oriLen_train > train_data.shape[0]:\n            warnings.warn(\n                \"Dropping {} {} with missing values. To forbid dropping, you need to set the argument dropna=False\".format(\n                    oriLen_train - train_data.shape[0], 'row' if oriLen_train - train_data.shape[0] == 1 else 'rows'))\n        # val_data\n        oriLen_val = val_data.shape[0]\n        val_data = val_data.dropna(axis=0)\n        if oriLen_val > val_data.shape[0]:\n            warnings.warn(\n                \"Dropping {} {} with missing values. To forbid dropping, you need to set the argument dropna=False\".format(\n                    oriLen_val - val_data.shape[0], 'row' if oriLen_val - val_data.shape[0] == 1 else 'rows'))  \n        # test_data\n        oriLen_test = test_data.shape[0]\n        test_data = test_data.dropna(axis=0)\n        if oriLen_test > test_data.shape[0]:\n            warnings.warn(\n                \"Dropping {} {} with missing values. To forbid dropping, you need to set the argument dropna=False\".format(\n                    oriLen_test - test_data.shape[0], 'row' if oriLen_test - test_data.shape[0] == 1 else 'rows'))  \n    \n    data = pd.concat((train_data, val_data, test_data))\n\n    data[\"__belong__\"] = np.concatenate((\n        np.full(len(train_data),\"train\"),\n        np.full(len(val_data),\"val\"),\n        np.full(len(test_data),\"test\"),\n    )\n    )\n\n    if id_column is None:\n        id_column = ['id']\n        if 'id' not in data.columns:\n            data['id'] = np.arange(len(data))\n        else:\n            warnings.warn(\"id_column is None and use default id column in data\", RuntimeWarning)\n    \n    train_data = data[:len(train_data)].copy()\n    val_data = data[len(train_data):len(train_data)+len(val_data)].copy()\n    test_data = data[len(train_data)+len(val_data):].copy()\n    \n\n    scaler_x = None\n    scaler_y = None\n    # data pre-process\n    if process_fn == \"minmax_scale\":\n        scaler_x = MinMaxScaler()\n        scaler_y = MinMaxScaler()\n    elif process_fn == \"standard_scale\":\n        scaler_x = StandardScaler()\n        scaler_y = StandardScaler()\n\n\n    scaler_params_x = scaler_x.fit(train_data[x_column])\n    scaler_params_y = scaler_y.fit(train_data[y_column])\n    \n    scaler_params = [None, None]\n    # convert Scaler to Scale Params\n    if process_fn == \"minmax_scale\":\n        def cvtparams(Scaler):\n            return {\"max\":Scaler.data_max_,\"min\":Scaler.data_min_}\n    elif process_fn == \"standard_scale\":\n        def cvtparams(Scaler):\n            return {\"mean\":Scaler.mean_,\"var\":Scaler.var_}\n    \n    if \"x\" in process_var:\n        scaler_params[0] = cvtparams(scaler_params_x)\n    if \"y\" in process_var:\n        scaler_params[1] = cvtparams(scaler_params_y)\n    \n    # Use the parameters of the dataset to normalize the train_dataset, val_dataset, and test_dataset\n    if use_model in [\"gnnwr\", \"gnnwr spnn\", \"gtnnwr\", \"gtnnwr stpnn\"]:\n        train_dataset = baseDataset(train_data, x_column, y_column, id_column, is_need_STNN)\n        val_dataset = baseDataset(val_data, x_column, y_column, id_column, is_need_STNN)\n        test_dataset = baseDataset(test_data, x_column, y_column, id_column, is_need_STNN)\n    else:\n        # Other dataset will be added soon\n        raise ValueError(\"invalid use_model\")\n    train_dataset.scale(process_fn, scaler_params)\n    val_dataset.scale(process_fn, scaler_params)\n    test_dataset.scale(process_fn, scaler_params)\n\n    if Reference is None:\n        reference_data = train_data\n    elif isinstance(Reference, str):\n        if Reference == \"train\":\n            reference_data = train_data\n        elif Reference == \"train_val\":\n            reference_data = pandas.concat([train_data, val_data])\n        else:\n            raise ValueError(\"Reference str must be 'train' or 'train_val'\")\n    else:\n        reference_data = Reference\n    if not isinstance(reference_data, pandas.DataFrame):\n        raise ValueError(\"reference_data must be a pandas.DataFrame\")\n\n    train_dataset.reference, val_dataset.reference, test_dataset.reference = reference_data, reference_data, reference_data\n    train_dataset.spatial_column = val_dataset.spatial_column = test_dataset.spatial_column = spatial_column\n    train_dataset.x_column = val_dataset.x_column = test_dataset.x_column = x_column\n    train_dataset.y_column = val_dataset.y_column = test_dataset.y_column = y_column\n    if use_model == \"gnnwr\":\n        train_dataset.distances, val_dataset.distances, test_dataset.distances = _init_gnnwr_distance(\n            reference_data[spatial_column].values, train_data[spatial_column].values, val_data[spatial_column].values,\n            test_data[spatial_column].values, spatial_fun\n        )\n    elif use_model == \"gtnnwr\":\n        assert temp_column is not None, \"temp_column must be not None in gtnnwr\"\n        train_dataset.distances, val_dataset.distances, test_dataset.distances = _init_gtnnwr_distance(\n            [reference_data[spatial_column].values,reference_data[temp_column].values],\n            [train_data[spatial_column].values, train_data[temp_column].values],\n            [val_data[spatial_column].values, val_data[temp_column].values],\n            [test_data[spatial_column].values, test_data[temp_column].values],\n            spatial_fun, temporal_fun\n        )\n    elif use_model == \"gnnwr spnn\":\n        train_dataset.distances, val_dataset.distances, test_dataset.distances = _init_gnnwr_spnn_distance(\n            reference_data[spatial_column].values, train_data[spatial_column].values, val_data[spatial_column].values,\n            test_data[spatial_column].values\n        )\n        train_dataset.is_need_STNN, val_dataset.is_need_STNN, test_dataset.is_need_STNN = True, True, True\n    elif use_model == \"gtnnwr stpnn\":\n        assert temp_column is not None, \"temp_column must be not None in gtnnwr\"\n        train_points, val_points, test_points = _init_gtnnwr_stpnn_distance(\n            reference_data[spatial_column + temp_column].values, train_data[spatial_column + temp_column].values,\n            val_data[spatial_column + temp_column].values, test_data[spatial_column + temp_column].values\n        )\n        train_dataset.distances, train_dataset.temporal = train_points\n        val_dataset.distances, val_dataset.temporal = val_points\n        test_dataset.distances, test_dataset.temporal = test_points\n        train_dataset.is_need_STNN, val_dataset.is_need_STNN, test_dataset.is_need_STNN = True, True, True\n    # Other calculation methods can be added here.\n\n    train_dataset.simple_distance = simple_distance\n    val_dataset.simple_distance = simple_distance\n    test_dataset.simple_distance = simple_distance\n\n\n    if process_fn == \"minmax_scale\":\n        distance_scale = MinMaxScaler()\n        temporal_scale = MinMaxScaler()\n    else:\n        distance_scale = StandardScaler()\n        temporal_scale = StandardScaler()\n    # scale distance matrix\n    distances = train_dataset.distances\n    distances = distance_scale.fit_transform(distances.reshape(-1, distances.shape[-1])).reshape(distances.shape)\n\n    train_dataset.distances = distance_scale.transform(train_dataset.distances.reshape(-1, train_dataset.distances.shape[-1])).reshape(train_dataset.distances.shape)\n    val_dataset.distances = distance_scale.transform(val_dataset.distances.reshape(-1, val_dataset.distances.shape[-1])).reshape(val_dataset.distances.shape)\n    test_dataset.distances = distance_scale.transform(test_dataset.distances.reshape(-1, test_dataset.distances.shape[-1])).reshape(test_dataset.distances.shape)\n    \n    if process_fn == \"minmax_scale\":\n        distance_scale_param = {\"min\": distance_scale.data_min_, \"max\": distance_scale.data_max_}\n    else:\n        distance_scale_param = {\"mean\": distance_scale.mean_, \"var\": distance_scale.var_}    \n    train_dataset.distances_scale_param = val_dataset.distances_scale_param = test_dataset.distances_scale_param = distance_scale_param\n    \n    if train_dataset.temporal is not None and val_dataset.temporal is not None and test_dataset.temporal is not None:\n        temporal = train_dataset.temporal\n        temporal = temporal_scale.fit_transform(temporal.reshape(-1, temporal.shape[-1])).reshape(temporal.shape)\n\n        train_dataset.temporal = temporal_scale.transform(train_dataset.temporal.reshape(-1, train_dataset.temporal.shape[-1])).reshape(train_dataset.temporal.shape)\n        val_dataset.temporal = temporal_scale.transform(val_dataset.temporal.reshape(-1, val_dataset.temporal.shape[-1])).reshape(val_dataset.temporal.shape)\n        test_dataset.temporal = temporal_scale.transform(test_dataset.temporal.reshape(-1, test_dataset.temporal.shape[-1])).reshape(test_dataset.temporal.shape)\n\n        if process_fn == \"minmax_scale\":\n            temporal_scale_param = {\"min\": temporal_scale.data_min_, \"max\": temporal_scale.data_max_}\n        else:\n            temporal_scale_param = {\"mean\": temporal_scale.mean_, \"var\": temporal_scale.var_}\n        train_dataset.temporal_scale_param = val_dataset.temporal_scale_param = test_dataset.temporal_scale_param = temporal_scale_param\n    # initialize dataloader for train/val/test dataset\n    # set batch_size for train_dataset as batch_size\n    # set batch_size for val_dataset as max_val_size\n    # set batch_size for test_dataset as max_test_size\n    train_dataset.dataloader = DataLoader(\n        train_dataset, batch_size=batch_size, shuffle=shuffle)\n    if max_val_size < 0:\n        max_val_size = len(val_dataset)\n    if max_test_size < 0:\n        max_test_size = len(test_dataset)\n    val_dataset.dataloader = DataLoader(\n        val_dataset, batch_size=max_val_size, shuffle=shuffle)\n    test_dataset.dataloader = DataLoader(\n        test_dataset, batch_size=max_test_size, shuffle=shuffle)\n    train_dataset.batch_size, train_dataset.shuffle = batch_size, shuffle\n    val_dataset.batch_size, val_dataset.shuffle = max_val_size, shuffle\n    test_dataset.batch_size, test_dataset.shuffle = max_test_size, shuffle\n    return train_dataset, val_dataset, test_dataset\n\ndef init_dataset_cv(data, test_ratio, k_fold, x_column, y_column, spatial_column=None, temp_column=None,\n                    id_column=None,\n                    sample_seed=100,\n                    process_fn=\"minmax_scale\", batch_size=32, shuffle=True, use_class=baseDataset,\n                    spatial_fun=BasicDistance, temporal_fun=ManhattanDistance, max_val_size=-1, max_test_size=-1,\n                    is_need_STNN=False, Reference=None, simple_distance=True):\n    \"\"\"\n    initialize dataset for cross validation\n\n\n    :param data: input data\n    :param test_ratio: test set ratio\n    :param k_fold:  k of k-fold\n    :param x_column: attribute column name\n    :param y_column: label column name\n    :param spatial_column: spatial distance column name\n    :param temp_column: temporal distance column name\n    :param id_column: id column name\n    :param sample_seed: random seed\n    :param process_fn: data process function\n    :param batch_size: batch size\n    :param shuffle: shuffle or not\n    :param use_class: dataset class\n    :param spatial_fun: spatial distance calculate function\n    :param temporal_fun: temporal distance calculate function\n    :param max_val_size: validation set size\n    :param max_test_size: test set size\n    :param is_need_STNN: whether need STNN\n    :param Reference: reference data\n    :param simple_distance: is simple distance\n    :return: cv_data_set, test_dataset\n    \"\"\"\n    cv_data_set = []\n    valid_ratio = (1 - test_ratio) / k_fold\n    test_dataset = None\n    for i in range(k_fold):\n        train_dataset, val_dataset, test_dataset = init_dataset(data, test_ratio, valid_ratio, x_column, y_column,\n                                                                spatial_column,\n                                                                temp_column,\n                                                                id_column,\n                                                                sample_seed,\n                                                                process_fn, batch_size, shuffle, use_class,\n                                                                spatial_fun, temporal_fun, max_val_size, max_test_size,\n                                                                i, is_need_STNN, Reference, simple_distance)\n        cv_data_set.append((train_dataset, val_dataset))\n    return cv_data_set, test_dataset\n\n\ndef init_predict_dataset(data, \n                         train_dataset, \n                         x_column, \n                         spatial_column=None, \n                         temp_column=None,\n                         process_fn=\"minmax_scale\", \n                         scale_sync=True, \n                         use_model=\"gnnwr\",\n                         use_class=predictDataset,\n                         spatial_fun=BasicDistance, \n                         temporal_fun=ManhattanDistance, \n                         batch_size=-1, \n                         is_need_STNN=False):\n    \"\"\"\n    initialize predict dataset\n\n    :param data: input data\n    :param train_dataset: train data\n    :param x_column: attribute column name\n    :param spatial_column: spatial distance column name\n    :param temp_column: temporal distance column name\n    :param process_fn: data process function\n    :param scale_sync: scale sync or not\n    :param batch_size: max size of predict dataset\n    :param use_class: dataset class\n    :param spatial_fun: spatial distance calculate function\n    :param temporal_fun: temporal distance calculate function\n    :param is_need_STNN: is need STNN or not\n    :return: predict_dataset\n    \"\"\"\n    if spatial_fun is None:\n        # if dist_fun is None, raise error\n        raise ValueError(\n            \"dist_fun must be a function that can process the data\")\n\n    if spatial_column is None:\n        # if dist_column is None, raise error\n        raise ValueError(\n            \"dist_column must be a column name in data\")\n\n    # initialize the predict_dataset\n    if scale_sync:\n        predict_dataset = use_class(data=data, \n                                    x_column=x_column, \n                                    process_fn=process_fn, \n                                    scale_info=[train_dataset.x_scale_info, train_dataset.y_scale_info],\n                                    is_need_STNN=is_need_STNN)\n    else:\n        predict_dataset = use_class(data=data, x_column=x_column, process_fn=process_fn, is_need_STNN=is_need_STNN)\n\n    # calculate distance\n    predict_data = predict_dataset.dataframe\n    reference_data = train_dataset.reference\n\n    if use_model == \"gnnwr\":\n        predict_dataset.distances = _init_gnnwr_distance_pred(\n            reference_data[spatial_column].values, predict_data[spatial_column].values,spatial_fun\n        )\n    elif use_model == \"gtnnwr\":\n        assert temp_column is not None, \"temp_column must be not None in gtnnwr\"\n        predict_dataset.distances = _init_gtnnwr_distance_pred(\n            [reference_data[spatial_column].values,reference_data[temp_column].values],\n            [predict_data[spatial_column].values, predict_data[temp_column].values],\n            spatial_fun, temporal_fun\n        )\n    elif use_model == \"gnnwr spnn\":\n        predict_dataset.distances = _init_gnnwr_spnn_distance_pred(\n            reference_data[spatial_column].values, predict_data[spatial_column].values\n        )\n        predict_dataset.is_need_STNN = True\n    elif use_model == \"gtnnwr stpnn\":\n        assert temp_column is not None, \"temp_column must be not None in gtnnwr\"\n        pred_points = _init_gtnnwr_stpnn_distance_pred(\n            reference_data[spatial_column + temp_column].values, predict_data[spatial_column + temp_column].values,\n        )\n        predict_dataset.distances, predict_dataset.temporal = pred_points\n        predict_dataset.is_need_STNN = True\n\n    # distance preprocess\n    distance_shape = predict_dataset.distances.shape\n\n    if process_fn == \"minmax_scale\":\n        predict_dataset.distances = predict_dataset.minmax_scaler(predict_dataset.distances.reshape(-1,distance_shape[-1]),\n                                                                  train_dataset.distances_scale_param['min'],\n                                                                  train_dataset.distances_scale_param['max']).reshape(distance_shape)\n    else:\n        predict_dataset.distances = predict_dataset.standard_scaler(predict_dataset.distances.reshape(-1,distance_shape[-1]),\n                                                                    train_dataset.distances_scale_param['mean'],\n                                                                    train_dataset.distances_scale_param['var']).reshape(distance_shape)\n    # initialize dataloader for train/val/test dataset\n    if batch_size < 0:\n        batch_size = len(predict_dataset)\n    predict_dataset.dataloader = DataLoader(predict_dataset, batch_size=batch_size, shuffle=False)\n\n    return predict_dataset\n\n\ndef load_dataset(directory, use_class=baseDataset):\n    dataset = use_class()\n    dataset.read(directory)\n    dataset.dataloader = DataLoader(dataset, batch_size=dataset.batch_size, shuffle=dataset.shuffle)\n    return dataset\n\n# To make the distance calculation clearer, each method is separated into independent functions here.\n# TODO: fix comment\ndef _init_gnnwr_distance(refer_data, train_data, val_data, test_data, spatial_fun=BasicDistance):\n    r\"\"\"\n    Parameters\n    ----------\n    refer_data : numpy.nDarray\n        Reference points for calculating the distance.\n    train_data : object\n        The data subset used for training the model.\n    val_data : object\n        The data subset used for validating the model during training.\n    test_data : object\n        The data subset used for testing the model after training.\n\n    Returns\n    -------\n    train_distance : numpy.nDarray\n        matrix of distance between points in train_data and Reference points\n    val_distance : numpy.nDarray\n        matrix of distance between points in val_data and Reference points\n    test_distance : numpy.nDarray\n        matrix of distance between points in test_data and Reference points\n    \"\"\"\n\n    train_distance = spatial_fun(train_data, refer_data)\n    val_distance = spatial_fun(val_data, refer_data)\n    test_distance = spatial_fun(test_data, refer_data)\n    return train_distance, val_distance, test_distance\n\ndef _init_gnnwr_distance_pred(refer_data, pred_data, spatial_fun=BasicDistance):\n    \"\"\"\n    :param refer_data:\n    :param train_data:\n    :param val_data:\n    :param test_data:\n    :return:\n    \"\"\"\n    pred_distance = spatial_fun(pred_data, refer_data)\n    return pred_distance\n\ndef _init_gtnnwr_distance(refer_data,\n                          train_data,\n                          val_data,\n                          test_data,\n                          spatial_fun=BasicDistance,\n                          temporal_fun=ManhattanDistance):\n    \"\"\"\n    :param refer_data:\n    :param train_data:\n    :param val_data:\n    :param test_data:\n    :return:\n    \"\"\"\n    refer_s_distance, refer_t_distance = refer_data[0], refer_data[1]\n    train_s_distance, train_t_distance = train_data[0], train_data[1]\n    val_s_distance, val_t_distance = val_data[0], val_data[1]\n    test_s_distance, test_t_distance = test_data[0], test_data[1]\n\n    train_s_distance = spatial_fun(train_s_distance, refer_s_distance)\n    val_s_distance = spatial_fun(val_s_distance, refer_s_distance)\n    test_s_distance = spatial_fun(test_s_distance, refer_s_distance)\n    train_t_distance = temporal_fun(train_t_distance, refer_t_distance)\n    val_t_distance = temporal_fun(val_t_distance, refer_t_distance)\n    test_t_distance = temporal_fun(test_t_distance, refer_t_distance)\n    train_distance = np.concatenate((train_s_distance[:, :, np.newaxis], train_t_distance[:, :, np.newaxis]), axis=2)\n    val_distance = np.concatenate((val_s_distance[:, :, np.newaxis], val_t_distance[:, :, np.newaxis]), axis=2)\n    test_distance = np.concatenate((test_s_distance[:, :, np.newaxis], test_t_distance[:, :, np.newaxis]), axis=2)\n    return train_distance, val_distance, test_distance\n\ndef _init_gtnnwr_distance_pred(refer_data,\n                            pred_data,\n                            spatial_fun=BasicDistance,\n                            temporal_fun=ManhattanDistance):\n    \"\"\"\n    :param refer_data:\n    :param train_data:\n    :param val_data:\n    :param test_data:\n    :return:\n    \"\"\"\n    refer_s_distance, refer_t_distance = refer_data[0], refer_data[1]\n    pred_s_distance, pred_t_distance = pred_data[0], pred_data[1]\n\n    pred_s_distance = spatial_fun(pred_s_distance, refer_s_distance)\n    pred_t_distance = temporal_fun(pred_t_distance, refer_t_distance)\n\n    pred_distance = np.concatenate((pred_s_distance[:, :, np.newaxis], pred_t_distance[:, :, np.newaxis]), axis=2)\n    return pred_distance\n\ndef _init_gnnwr_spnn_distance(\n        refer_data,\n        train_data,\n        val_data,\n        test_data):\n    \"\"\"\n    :param refer_data:\n    :param train_data:\n    :param val_data:\n    :param test_data:\n    :return:\n    \"\"\"\n    # calculate point matrix\n    matrix_length = len(refer_data)\n    train_length,val_length,test_length = len(train_data),len(val_data),len(test_data)\n    train_point_matrix = np.repeat(train_data[:, np.newaxis, :], matrix_length, axis=1)\n    refer_point_train_matrix = np.repeat(refer_data[:,np.newaxis,:], train_length, axis=1)\n    train_point_matrix = np.concatenate(\n            (train_point_matrix, np.transpose(refer_point_train_matrix, (1, 0, 2))), axis=2)\n    val_point_matrix = np.repeat(val_data[:, np.newaxis, :], matrix_length, axis=1)\n    refer_point_val_matrix = np.repeat(refer_data[:,np.newaxis,:], val_length, axis=1)\n    val_point_matrix = np.concatenate(\n            (val_point_matrix, np.transpose(refer_point_val_matrix, (1, 0, 2))), axis=2)\n    test_point_matrix = np.repeat(test_data[:, np.newaxis, :], matrix_length, axis=1)\n    refer_point_test_matrix = np.repeat(refer_data[:,np.newaxis,:], test_length, axis=1)\n    test_point_matrix = np.concatenate(\n            (test_point_matrix, np.transpose(refer_point_test_matrix, (1, 0, 2))), axis=2)\n    return train_point_matrix, val_point_matrix, test_point_matrix\n\ndef _init_gnnwr_spnn_distance_pred(\n        refer_data,\n        pred_data):\n    \"\"\"\n    :param refer_data:\n    :param train_data:\n    :param val_data:\n    :param test_data:\n    :return:\n    \"\"\"\n    # calculate point matrix\n    matrix_length = len(refer_data)\n    pred_length = len(pred_data)\n    pred_point_matrix = np.repeat(pred_data[:, np.newaxis, :], matrix_length, axis=1)\n    refer_point_pred_matrix = np.repeat(refer_data[:,np.newaxis,:], pred_length, axis=1)\n    pred_point_matrix = np.concatenate(\n            (pred_point_matrix, np.transpose(refer_point_pred_matrix, (1, 0, 2))), axis=2)\n    return pred_point_matrix\n\ndef _init_gtnnwr_stpnn_distance(\n        refer_data,\n        train_data,\n        val_data,\n        test_data):\n    \"\"\"\n    :param refer_data:\n    :param train_data:\n    :param val_data:\n    :param test_data:\n    :return:\n    \"\"\"\n    refer_s_point, refer_t_point = refer_data[0], refer_data[1]\n    train_s_point, train_t_point = train_data[0], train_data[1]\n    val_s_point, val_t_point = val_data[0], val_data[1]\n    test_s_point, test_t_point = test_data[0], test_data[1]\n\n    # calculate point matrix\n    matrix_length = len(refer_s_point)\n    train_length,val_length,test_length = len(train_s_point),len(val_s_point),len(test_s_point)\n    train_s_point_matrix = np.repeat(train_s_point[:, np.newaxis, :], matrix_length, axis=1)\n    refer_s_point_train_matrix = np.repeat(refer_s_point[:,np.newaxis,:], train_length, axis=1)\n    train_s_point_matrix = np.concatenate(\n            (train_s_point_matrix, np.transpose(refer_s_point_train_matrix, (1, 0, 2))), axis=2)\n    val_s_point_matrix = np.repeat(val_s_point[:, np.newaxis, :], matrix_length, axis=1)\n    refer_s_point_val_matrix = np.repeat(refer_s_point[:,np.newaxis,:], val_length, axis=1)\n    val_s_point_matrix = np.concatenate(\n            (val_s_point_matrix, np.transpose(refer_s_point_val_matrix, (1, 0, 2))), axis=2)\n    test_s_point_matrix = np.repeat(test_s_point[:, np.newaxis, :], matrix_length, axis=1)\n    refer_s_point_test_matrix = np.repeat(refer_s_point[:,np.newaxis,:], test_length, axis=1)\n    test_s_point_matrix = np.concatenate(\n            (test_s_point_matrix, np.transpose(refer_s_point_test_matrix, (1, 0, 2))), axis=2)\n\n    train_t_point_matrix = np.repeat(train_t_point[:, np.newaxis, :], matrix_length, axis=1)\n    refer_t_point_train_matrix = np.repeat(refer_t_point[:,np.newaxis,:], train_length, axis=1)\n    train_t_point_matrix = np.concatenate(\n            (train_t_point_matrix, np.transpose(refer_t_point_train_matrix, (1, 0, 2))), axis=2)\n    val_t_point_matrix = np.repeat(val_t_point[:, np.newaxis, :], matrix_length, axis=1)\n    refer_t_point_val_matrix = np.repeat(refer_t_point[:,np.newaxis,:], val_length, axis=1)\n    val_t_point_matrix = np.concatenate(\n            (val_t_point_matrix, np.transpose(refer_t_point_val_matrix, (1, 0, 2))), axis=2)\n    test_t_point_matrix = np.repeat(test_t_point[:, np.newaxis, :], matrix_length, axis=1)\n    refer_t_point_test_matrix = np.repeat(refer_t_point[:,np.newaxis,:], test_length, axis=1)\n    test_t_point_matrix = np.concatenate(\n            (test_t_point_matrix, np.transpose(refer_t_point_test_matrix, (1, 0, 2))), axis=2)\n    return (train_s_point_matrix, train_t_point_matrix), (val_s_point_matrix, val_t_point_matrix), (test_s_point_matrix, test_t_point_matrix)\n\ndef _init_gtnnwr_stpnn_distance_pred(\n        refer_data,\n        pred_data):\n    \"\"\"\n    :param refer_data:\n    :param pred_data:\n    :return:\n    \"\"\"\n    refer_s_point, refer_t_point = refer_data[0], refer_data[1]\n    pred_s_point, pred_t_point = pred_data[0], pred_data[1]\n\n    # calculate point matrix\n    matrix_length = len(refer_s_point)\n    pred_length = len(pred_s_point)\n    pred_s_point_matrix = np.repeat(pred_s_point[:, np.newaxis, :], matrix_length, axis=1)\n    refer_s_point_pred_matrix = np.repeat(refer_s_point[:,np.newaxis,:], pred_length, axis=1)\n    pred_s_point_matrix = np.concatenate(\n            (pred_s_point_matrix, np.transpose(refer_s_point_pred_matrix, (1, 0, 2))), axis=2)\n\n\n    pred_t_point_matrix = np.repeat(pred_t_point[:, np.newaxis, :], matrix_length, axis=1)\n    refer_t_point_pred_matrix = np.repeat(refer_t_point[:,np.newaxis,:], pred_length, axis=1)\n    pred_t_point_matrix = np.concatenate(\n            (pred_t_point_matrix, np.transpose(refer_t_point_pred_matrix, (1, 0, 2))), axis=2)\n    return (pred_s_point_matrix, pred_t_point_matrix)"
  },
  {
    "path": "src/gnnwr/models.py",
    "content": "import datetime\nimport os\nimport pandas as pd\nimport numpy as np\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\nimport warnings\nfrom sklearn.metrics import r2_score\nfrom torch.utils.tensorboard import SummaryWriter  # to save the process of the model\nfrom tqdm import tqdm\nfrom collections import OrderedDict\nimport logging\nfrom .networks import SWNN, STPNN, STNN_SPNN\nfrom .utils import OLS, DIAGNOSIS\nfrom .datasets import baseDataset, predictDataset\n\n\nclass GNNWR:\n    r\"\"\"\n    GNNWR(Geographically neural network weighted regression) is a model to address spatial non-stationarity in various domains with complex geographical processes,\n    which comes from the paper `Geographically neural network weighted regression for the accurate estimation of spatial non-stationarity <https://doi.org/10.1080/13658816.2019.1707834>`__.\n\n    Parameters\n    ----------\n    train_dataset : baseDataset\n        the dataset of training\n    valid_dataset : baseDataset\n        the dataset of validation\n    test_dataset : baseDataset\n        the dataset of testing\n    dense_layers : list\n        the dense layers of the model (default: ``None``)\n\n        Default structure is a geometric sequence of power of 2, the minimum is 2, and the maximum is the power of 2 closest to the number of neurons in the input layer.\n\n        i.e. ``[2,4,8,16,32,64,128,256]``\n    start_lr : float\n        the start learning rate of the model (default: ``0.1``)\n    optimizer : str, optional\n        the optimizer of the model (default: ``\"Adagrad\"``)\n        choose from \"SGD\",\"Adam\",\"RMSprop\",\"Adagrad\",\"Adadelta\"\n    drop_out : float\n        the drop out rate of the model (default: ``0.2``)\n    batch_norm : bool, optional\n        whether use batch normalization (default: ``True``)\n    activate_func : torch.nn\n        the activate function of the model (default: ``nn.PReLU(init=0.4)``)\n    model_name : str\n        the name of the model (default: ``\"GNNWR_\" + datetime.datetime.today().strftime(\"%Y%m%d-%H%M%S\")``)\n    model_save_path : str\n        the path of the model (default: ``\"../gnnwr_models\"``)\n    write_path : str\n        the path of the log (default: ``\"../gnnwr_runs/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")``)\n    use_gpu : bool\n        whether use gpu or not (default: ``True``)\n    use_ols : bool\n        whether use ols or not (default: ``True``)\n    log_path : str\n        the path of the log (default: ``\"../gnnwr_logs/\"``)\n    log_file_name : str\n        the name of the log (default: ``\"gnnwr\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\") + \".log\"``)\n    log_level : int\n        the level of the log (default: ``logging.INFO``)\n    optimizer_params : dict, optional\n        - **scheduler** \\: *str*\n            \n            The type of learning rate scheduler to use. Valid options include ``Special``,\n            ``Constant``, and ``MultiStepLR``.\n        - **maxlr** \\: *float*\n            \n            The maximum learning rate for the scheduler, for ``Special``.\n        - **minlr** \\: *float*\n            \n            The minimum learning rate for the scheduler, for ``Special``.\n        - **upepoch** \\: *int*\n            \n            The number of epochs until the maximum learning rate is reached, for ``Special``.\n        - **decayepoch** \\: *int*\n            \n            The epoch at which learning rate decay starts, for ``Special``.\n        - **decayrate** \\: *float*\n            \n            The rate at which the learning rate decays, for ``Special``.\n        - **stop_change_epoch** \\: *int*\n\n            The epoch at which to stop adjusting the learning rate, for ``Special``.\n        - **stop_lr** \\: *float*\n\n            The learning rate to stop at after the specified epoch, for ``Special``.\n        - **scheduler_milestones** \\: *list*\n\n            The epochs at which to decay the learning rate for a ``MultiStepLR`` scheduler.\n        - **scheduler_gamma** \\: *float*\n\n            The factor by which the learning rate is reduced for a ``MultiStepLR`` scheduler.\n        - **weight_decay** \\: *float*\n\n            The weight decay factor for the optimizer.\n\n    \"\"\"\n\n    def __init__(\n            self,\n            train_dataset,\n            valid_dataset,\n            test_dataset,\n            dense_layers=None,\n            start_lr: float = .1,\n            optimizer=\"Adagrad\",\n            drop_out=0.2,\n            batch_norm=True,\n            activate_func=nn.PReLU(init=0.4),\n            model_name=\"GNNWR_\" + datetime.datetime.today().strftime(\"%Y%m%d-%H%M%S\"),\n            model_save_path=\"gnnwr_models\",\n            write_path=os.path.join(\"gnnwr_runs\",datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")),\n            use_gpu: bool = True,\n            use_ols: bool = True,\n            log_path=\"gnnwr_logs\",\n            log_file_name=\"gnnwr\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\") + \".log\",\n            log_level=logging.INFO,\n            optimizer_params=None\n    ):\n        warnings.warn(\"This version of GNNWR (0.1.17) will be deprecated in the forthcoming new version (1.x.x).\")\n        self._train_dataset = train_dataset  # train dataset\n        self._valid_dataset = valid_dataset  # valid dataset\n        self._test_dataset = test_dataset  # test dataset\n\n        self._model_x_scale_info = train_dataset.x_scale_info\n        self._model_y_scale_info = train_dataset.y_scale_info\n\n        self._dense_layers = dense_layers  # structure of layers\n        self._start_lr = start_lr  # initial learning rate\n        self._insize = train_dataset.datasize  # size of input layer\n        self._outsize = train_dataset.coefsize  # size of output layer\n        self._writer = SummaryWriter(write_path)  # summary writer\n        self._drop_out = drop_out  # drop_out ratio\n        self._batch_norm = batch_norm  # batch normalization\n        self._activate_func = activate_func  # activate function , default: PRelu(0.4)\n        self._model = SWNN(self._dense_layers, self._insize, self._outsize,\n                           self._drop_out, self._activate_func, self._batch_norm)  # model\n        self._log_path = log_path  # log path\n        self._log_file_name = log_file_name  # log file\n        self._log_level = log_level  # log level\n        self.__istrained = False  # whether the model is trained\n\n        self._coefficient = OLS(\n            train_dataset.scaledDataframe, train_dataset.x, train_dataset.y).params  # coefficients of OLS\n\n        self._out = nn.Linear(\n            self._outsize, 1, bias=False)  # layer to multiply OLS coefficients and model output\n        if use_ols:\n            self._out.weight = nn.Parameter(torch.tensor([self._coefficient]).to(\n                torch.float32), requires_grad=False)  # define the weight\n        else:\n            self._coefficient = np.ones((1, self._outsize))\n            self._out.weight = nn.Parameter(torch.tensor(np.ones((1, self._outsize))).to(\n                torch.float32), requires_grad=False)  # define the weight\n\n        self._criterion = nn.MSELoss()  # loss function\n        self._trainLossList = []  # record the loss in training process\n        self._validLossList = []  # record the loss in validation process\n        self._epoch = 0  # current epoch\n        self._bestr2 = float('-inf')  # best r2\n        self._besttrainr2 = float('-inf')  # best train r2\n        self._noUpdateEpoch = 0  # number of epochs without update\n        # Model information\n        self._modelName = model_name  # model name\n        self._modelSavePath = model_save_path  # model save path\n        self._train_diagnosis = None  # diagnosis of training\n        self._test_diagnosis = None  # diagnosis of test\n        self._valid_r2 = None  # r2 of validation\n        self.result_data = None\n\n        self._use_gpu = use_gpu\n        if self._use_gpu:\n            if torch.cuda.is_available():\n                devices = [i for i in range(torch.cuda.device_count())]\n                os.environ['CUDA_VISIBLE_DEVICES'] = ','.join(map(str, devices))\n            else:\n                self._use_gpu = False\n\n        self._optimizer = None\n        self._scheduler = None\n        self._optimizer_name = None\n        self.init_optimizer(optimizer, optimizer_params)  # initialize the optimizer\n        self._device = torch.device('cuda') if self._use_gpu else torch.device('cpu')\n        # If the data directory not exists, create it\n        if not os.path.exists(self._log_path):\n            os.makedirs(self._log_path)\n        if not os.path.exists(self._modelSavePath):\n            os.makedirs(self._modelSavePath)\n        if not os.path.exists(self._log_path):\n            os.makedirs(self._log_path)\n        if not os.path.exists(self._log_path):\n            os.makedirs(self._log_path)\n\n    def init_optimizer(self, optimizer, optimizer_params=None):\n        r\"\"\"\n        Initialize the optimizer.\n\n        This method sets up the optimizer and the learning rate scheduler with the given parameters.\n\n        Parameters\n        ----------\n        optimizer : str\n            The name of the optimizer to use. This should be one of the supported optimizers.\n        optimizer_params : dict, optional\n            A dictionary containing parameters for the optimizer and scheduler. If not provided,\n            default values will be used. The dictionary can contain the following keys:\n\n            - **scheduler** \\: *str*\n            \n            The type of learning rate scheduler to use. Valid options include ``Special``,\n            ``Constant``, and ``MultiStepLR``.\n            - **maxlr** \\: *float*\n                \n                The maximum learning rate for the scheduler, for ``Special``.\n            - **minlr** \\: *float*\n                \n                The minimum learning rate for the scheduler, for ``Special``.\n            - **upepoch** \\: *int*\n                \n                The number of epochs until the maximum learning rate is reached, for ``Special``.\n            - **decayepoch** \\: *int*\n                \n                The epoch at which learning rate decay starts, for ``Special``.\n            - **decayrate** \\: *float*\n                \n                The rate at which the learning rate decays, for ``Special``.\n            - **stop_change_epoch** \\: *int*\n\n                The epoch at which to stop adjusting the learning rate, for ``Special``.\n            - **stop_lr** \\: *float*\n\n                The learning rate to stop at after the specified epoch, for ``Special``.\n            - **scheduler_milestones** \\: *list*\n\n                The epochs at which to decay the learning rate for a ``MultiStepLR`` scheduler.\n            - **scheduler_gamma** \\: *float*\n\n                The factor by which the learning rate is reduced for a ``MultiStepLR`` scheduler.\n            - **weight_decay** \\: *float*\n\n                The weight decay factor for the optimizer.\n\n        Raises\n        ------\n        ValueError\n            If an unsupported optimizer or scheduler is specified.\n\n        \"\"\"\n        # initialize the optimizer\n        if optimizer_params is None:\n            optimizer_params = {}\n        weigth_decay = optimizer_params.get(\"weight_decay\", 1e-3)\n        \n        if optimizer == \"SGD\":\n            self._optimizer = optim.SGD(\n                self._model.parameters(), lr=self._start_lr, weight_decay=weigth_decay)\n        elif optimizer == \"Adam\":\n            self._optimizer = optim.Adam(\n                self._model.parameters(), lr=self._start_lr, weight_decay=weigth_decay)\n        elif optimizer == \"AdamW\":\n            self._optimizer = optim.AdamW(\n                self._model.parameters(), lr=self._start_lr, weight_decay=weigth_decay)\n        elif optimizer == \"RMSprop\":\n            self._optimizer = optim.RMSprop(\n                self._model.parameters(), lr=self._start_lr, weight_decay=weigth_decay)\n        elif optimizer == \"Adagrad\":\n            self._optimizer = optim.Adagrad(\n                self._model.parameters(), lr=self._start_lr, weight_decay=weigth_decay)\n        elif optimizer == \"Adadelta\":\n            self._optimizer = optim.Adadelta(\n                self._model.parameters(), lr=self._start_lr, weight_decay=weigth_decay)\n        else:\n            raise ValueError(\"Invalid Optimizer\")\n        self._optimizer_name = optimizer  # optimizer name\n\n        # lr scheduler\n        \n        scheduler = optimizer_params.get(\"scheduler\", \"Constant\")\n        scheduler_milestones = optimizer_params.get(\n            \"scheduler_milestones\", [100, 500, 1000, 2000])\n        scheduler_gamma = optimizer_params.get(\"scheduler_gamma\", 0.5)\n        scheduler_T_max = optimizer_params.get(\"scheduler_T_max\", 1000)\n        scheduler_eta_min = optimizer_params.get(\"scheduler_eta_min\", 0.01)\n        scheduler_T_0 = optimizer_params.get(\"scheduler_T_0\", 100)\n        scheduler_T_mult = optimizer_params.get(\"scheduler_T_mult\", 3)\n        if scheduler == \"MultiStepLR\":\n            self._scheduler = optim.lr_scheduler.MultiStepLR(\n                self._optimizer, milestones=scheduler_milestones, gamma=scheduler_gamma)\n        elif scheduler == \"CosineAnnealingLR\":\n            self._scheduler = optim.lr_scheduler.CosineAnnealingLR(\n                self._optimizer, T_max=scheduler_T_max, eta_min=scheduler_eta_min)\n        elif scheduler == \"CosineAnnealingWarmRestarts\":\n            self._scheduler = optim.lr_scheduler.CosineAnnealingWarmRestarts(\n                self._optimizer, T_0=scheduler_T_0, T_mult=scheduler_T_mult, eta_min=scheduler_eta_min)\n        elif scheduler == \"Special\":\n            maxlr = optimizer_params.get(\"maxlr\", 0.1)\n            minlr = optimizer_params.get(\"minlr\", 0.01)\n            upepoch = optimizer_params.get(\"upepoch\", 10000)\n            uprate = (maxlr - minlr) / upepoch\n            decayepoch = optimizer_params.get(\"decayepoch\", 20000)\n            decayrate = optimizer_params.get(\"decayrate\", 0.95)\n            stop_change_epoch = optimizer_params.get(\"stop_change_epoch\", 30000)\n            stop_lr = optimizer_params.get(\"stop_lr\", 0.001)\n            lambda_lr = lambda epoch: epoch * uprate + minlr if epoch < upepoch else (\n                maxlr if epoch < decayepoch else maxlr * (\n                        decayrate ** ((epoch - decayepoch) // 200))) if epoch < stop_change_epoch else stop_lr\n            self._scheduler = optim.lr_scheduler.LambdaLR(\n                self._optimizer, lr_lambda=lambda_lr)\n        elif scheduler == \"Constant\":\n            self._scheduler = optim.lr_scheduler.LambdaLR(\n                self._optimizer, lr_lambda=lambda epoch: 1)\n        else:\n            raise ValueError(\"Invalid Scheduler\")\n\n    def __train(self):\n        \"\"\"\n        train the network\n        \"\"\"\n        self._model.train()  # set the model to train mode\n        train_loss = 0  # initialize the loss\n        data_loader = self._train_dataset.dataloader  # get the data loader\n        weight_all = torch.tensor([],dtype=torch.float32,device=self._device)\n        x_true = torch.tensor([],dtype=torch.float32,device=self._device)\n        y_true = torch.tensor([],dtype=torch.float32,device=self._device)\n        y_pred = torch.tensor([],dtype=torch.float32,device=self._device)\n        for index, (data, coef, label, data_index) in enumerate(data_loader):\n            # move the data to gpu\n            data, coef, label = data.to(self._device), coef.to(self._device), label.to(self._device)\n\n            self._optimizer.zero_grad()  # zero the gradient\n            if self._optimizer_name == \"Adagrad\":\n                # move optimizer state to gpu\n                for state in self._optimizer.state.values():\n                    for k, v in state.items():\n                        if isinstance(v, torch.Tensor):\n                            state[k] = v.to(self._device)\n\n            x_true = torch.cat((x_true, coef), 0)\n            y_true = torch.cat((y_true, label), 0)\n            weight = self._model(data)\n\n            weight_all = torch.cat((weight_all, weight.to(torch.float32)), 0)\n            output = self._out(weight.mul(coef))\n            y_pred = torch.cat((y_pred, output), 0)\n            loss = self._criterion(output, label) # calculate the loss\n            loss.backward()  # back propagation\n            self._optimizer.step()  # update the parameters\n            if isinstance(data, list):\n                train_loss += loss.item() * data[0].size(0)\n            else:\n                train_loss += loss.item() * data.size(0)  # accumulate the loss\n\n        self._train_diagnosis = DIAGNOSIS(weight_all, x_true, y_true, y_pred)\n        train_loss /= self._train_dataset.datasize  # calculate the average loss\n        self._trainLossList.append(train_loss)  # record the loss\n\n    def __valid(self):\n        \"\"\"\n        validate the network\n        \"\"\"\n        self._model.eval()  # set the model to validation mode\n        val_loss = 0  # initialize the loss\n        label_list = torch.tensor([],dtype=torch.float32,device=self._device)\n        out_list = torch.tensor([],dtype=torch.float32,device=self._device)\n\n        data_loader = self._valid_dataset.dataloader  # get the data loader\n\n        with torch.no_grad():  # disable gradient calculation\n            for data, coef, label, data_index in data_loader:\n                data, coef, label = data.to(self._device), coef.to(self._device), label.to(self._device)\n                # weight = self._model(data)\n                output = self._out(self._model(\n                    data).mul(coef.to(torch.float32)))\n                loss = self._criterion(output, label)  # calculate the loss\n                out_list = torch.cat((out_list, output.view(-1)))\n                label_list = torch.cat((label_list, label.view(-1)))\n                if isinstance(data, list):\n                    val_loss += loss.item() * data[0].size(0)\n                else:\n                    val_loss += loss.item() * data.size(0)  # accumulate the loss\n            val_loss /= len(self._valid_dataset)  # calculate the average loss\n            self._validLossList.append(val_loss)  # record the loss\n            try:\n                r2 =1 - torch.sum((out_list - label_list) ** 2) / torch.sum((label_list - torch.mean(label_list)) ** 2)\n            except:\n                if np.isnan(out_list).sum() > 0:\n                    raise ValueError(\"The output contains nan value\")\n                else:\n                    raise ValueError(\"The Unexpected Error\")\n            self._valid_r2 = r2\n            if r2 > self._bestr2:\n                # if the R square is better than the best R square,record the R square and save the model\n                self._bestr2 = r2\n                self._besttrainr2 = self._train_diagnosis.R2().data\n                self._noUpdateEpoch = 0\n                if not os.path.exists(self._modelSavePath):\n                    os.mkdir(self._modelSavePath)\n                torch.save(self._model, os.path.join(self._modelSavePath,self._modelName + \".pkl\"))\n            else:\n                self._noUpdateEpoch += 1\n\n    def __evaluate(self, dataset):\n        \"\"\"\n        test the network\n        \"\"\"\n        self._model.eval()\n        test_loss = 0\n        out_list = torch.tensor([],dtype=torch.float32,device=self._device)\n        label_list = torch.tensor([],dtype=torch.float32,device=self._device)\n        data_loader = dataset.dataloader # dataset\n        x_data = torch.tensor([],dtype=torch.float32,device=self._device)\n        y_data = torch.tensor([],dtype=torch.float32,device=self._device)\n        y_pred = torch.tensor([],dtype=torch.float32,device=self._device)\n        weight_all = torch.tensor([],dtype=torch.float32,device=self._device)\n        with torch.no_grad():\n            for data, coef, label, data_index in data_loader:\n                data, coef, label = data.to(self._device), coef.to(self._device), label.to(self._device)\n                x_data = torch.cat((x_data, coef), 0)\n                y_data = torch.cat((y_data, label), 0)\n                weight = self._model(data)\n                weight_all = torch.cat((weight_all, weight.to(torch.float32)), 0)\n                output = self._out(weight.mul(coef.to(torch.float32)))\n                y_pred = torch.cat((y_pred, output), 0)\n                loss = self._criterion(output, label)\n\n                out_list = torch.cat((out_list, output.view(-1)))\n                label_list = torch.cat((label_list, label.view(-1)))\n\n                if isinstance(data, list):\n                    test_loss += loss.item() * data[0].size(0)\n                else:\n                    test_loss += loss.item() * data.size(0)  # accumulate the loss\n            \n            test_loss /= len(dataset)\n\n            return test_loss, DIAGNOSIS(weight_all, x_data, y_data, y_pred)\n\n    def run(self, max_epoch=1, early_stop=-1,**kwargs):\n        \"\"\"\n        train the model and validate the model\n\n        Parameters\n        ----------\n        max_epoch : int\n            the max epoch of the training (default: ``1``)\n        early_stop : int\n            if the model has not been updated for ``early_stop`` epochs, the training will stop (default: ``-1``)\n\n            if ``early_stop`` is ``-1``, the training will not stop until the max epoch\n        print_frequency : int\n            the frequency of printing the information (default: ``50``)\n\n        show_detailed_info : bool\n            if ``True``, the detailed information will be shown (default: ``True``)\n        \"\"\"\n        if kwargs.get(\"print_frequency\") is not None:\n            warnings.warn(\"The parameter print_frequency is deprecated, the information will be shown in tqdm\")\n        if kwargs.get(\"show_detailed_info\") is not None:\n            warnings.warn(\"The parameter show_detailed_info is deprecated, the information will be shown in tqdm\")\n        # model selection method\n        model_selection = kwargs.get(\"model_selection\", \"val\")\n        self.__istrained = True\n        if self._use_gpu:\n            self._model = nn.DataParallel(module=self._model)  # parallel computing\n            self._model = self._model.cuda()\n            self._out = self._out.cuda()\n        # create file\n        file_str = os.path.join(self._log_path , self._log_file_name)\n        logging.basicConfig(format='%(asctime)s - %(filename)s[line:%(lineno)d] - %(levelname)s: %(message)s',\n                            filename=file_str, level=logging.INFO)\n        with tqdm(range(max_epoch)) as pbar:\n            for epoch in pbar:\n                self._epoch = epoch\n                # train the network\n                # record the information of the training process\n                self.__train()\n                # validate the network\n                # record the information of the validation process\n                self.__valid()\n                # out put the information\n                pbar.set_postfix({'Train Loss': \"{:5f}\".format(self._trainLossList[-1]), 'Train R2': \"{:5f}\".format(self._train_diagnosis.R2().data.cpu().numpy()),\n                                  'Train AIC': self._train_diagnosis.AIC().data.cpu().numpy(),'Valid Loss': self._validLossList[-1],\n                                  'Valid R2': self._valid_r2.item(), 'Best Valid R2': self._bestr2.item(),\n                                  'Learning Rate': self._optimizer.param_groups[0]['lr']})\n\n                self._scheduler.step()  # update the learning rate\n                # tensorboard\n                self._writer.add_scalar('Training/Learning Rate', self._optimizer.param_groups[0]['lr'], self._epoch)\n                self._writer.add_scalar('Training/Loss', self._trainLossList[-1], self._epoch)\n                self._writer.add_scalar('Training/R2', self._train_diagnosis.R2().data, self._epoch)\n                self._writer.add_scalar('Training/RMSE', self._train_diagnosis.RMSE().data, self._epoch)\n                self._writer.add_scalar('Training/AIC', self._train_diagnosis.AIC().data, self._epoch)\n                self._writer.add_scalar('Training/AICc', self._train_diagnosis.AICc().data, self._epoch)\n                self._writer.add_scalar('Validation/Loss', self._validLossList[-1], self._epoch)\n                self._writer.add_scalar('Validation/R2', self._valid_r2.item(), self._epoch)\n                self._writer.add_scalar('Validation/Best R2', self._bestr2, self._epoch)\n\n                # log output\n                log_str = \"Epoch: \" + str(epoch + 1) + \\\n                          \"; Train Loss: \" + str(self._trainLossList[-1]) + \\\n                          \"; Train R2: {:5f}\".format(self._train_diagnosis.R2().data) + \\\n                          \"; Train RMSE: {:5f}\".format(self._train_diagnosis.RMSE().data) + \\\n                          \"; Train AIC: {:5f}\".format(self._train_diagnosis.AIC().data) + \\\n                          \"; Train AICc: {:5f}\".format(self._train_diagnosis.AICc().data) + \\\n                          \"; Valid Loss: \" + str(self._validLossList[-1]) + \\\n                          \"; Valid R2: \" + str(self._valid_r2.item()) + \\\n                          \"; Learning Rate: \" + str(self._optimizer.param_groups[0]['lr'])\n                logging.info(log_str)\n                if 0 < early_stop < self._noUpdateEpoch:  # stop when the model has not been updated for long time\n                    print(\"Training stop! Model has not been improved for over {} epochs.\".format(early_stop))\n                    break\n        torch.save(self._model, os.path.join(self._modelSavePath , self._modelName + \"_last.pkl\"))\n        if model_selection == \"val\":\n            self.load_model(os.path.join(self._modelSavePath,self._modelName + \".pkl\"))\n        elif model_selection == \"last\":\n            self.load_model(os.path.join(self._modelSavePath, self._modelName + \"_last.pkl\"))\n        self.result_data = self.getCoefs()\n\n    def predict(self, dataset):\n        \"\"\"\n        predict the result of the dataset\n\n        Parameters\n        ----------\n        dataset : baseDataset,predictDataset\n            the dataset to be predicted\n\n        Returns\n        -------\n        dataframe\n            the Pandas dataframe of the dataset with the predicted result\n        \"\"\"\n        \n        data_loader = dataset.dataloader\n        dataset.y_scale_info = self._model_y_scale_info\n        if not self.__istrained:\n            print(\"WARNING! The model hasn't been trained or loaded!\")\n        self._model.eval()\n        result = torch.tensor([]).to(torch.float32)\n        with torch.no_grad():\n            for batch in data_loader:\n                data = batch[0]\n                coef = batch[1]\n                if self._use_gpu:\n                    result, data, coef = result.cuda(), data.cuda(), coef.cuda()\n                    ols_w = torch.tensor(self._coefficient).to(torch.float32).cuda()\n                else:\n                    ols_w = torch.tensor(self._coefficient).to(torch.float32)\n                weight = self._model(data)\n                result = torch.cat((result, self._out(weight.mul(coef))), 0)\n        result = result.cpu().detach().numpy()\n        dataset.dataframe['pred_result'] = result\n        if dataset.y_scale_info:\n            _,dataset.dataframe['denormalized_pred_result'] = dataset.rescale(None,result)\n        else:\n            dataset.dataframe['denormalized_pred_result'] = result\n        dataset.pred_result = result\n        return dataset.dataframe\n\n    def predict_coef(self, dataset):\n        \"\"\"\n        predict the spatial coefficient of the independent variable\n\n        Parameters\n        ----------\n        dataset : baseDataset,predictDataset\n            the dataset to be predicted\n\n        Returns\n        -------\n        dataframe\n            the Pandas dataframe of the dataset with the predicted spatial coefficient\n        \"\"\"\n        data_loader = dataset.dataloader\n        if not self.__istrained:\n            print(\"WARNING! The model hasn't been trained or loaded!\")\n        self._model.eval()\n        result = torch.tensor([]).to(torch.float32)\n        with torch.no_grad():\n            for batch in data_loader:\n                data = batch[0]\n                coef = batch[1]\n                if self._use_gpu:\n                    result, data, coef = result.cuda(), data.cuda(), coef.cuda()\n                    ols_w = torch.tensor(self._coefficient).to(torch.float32).cuda()\n                else:\n                    ols_w = torch.tensor(self._coefficient).to(torch.float32)\n                coefficient = self._model(data).mul(ols_w)\n                result = torch.cat((result, coefficient), 0)\n        result = result.cpu().detach().numpy()\n        return result\n\n    def load_model(self, path, use_dict=False, map_location=None):\n        \"\"\"\n        load the model from the path\n\n        Parameters\n        ----------\n        path : str\n            the path of the model\n        use_dict : bool\n            whether the function use dict to load the model (default: ``False``)\n        map_location : str\n            the location of the model (default: ``None``)\n            the location can be ``\"cpu\"`` or ``\"cuda\"``\n        \"\"\"\n        if use_dict:\n            data = torch.load(path, map_location=map_location, weights_only=False)\n            self._model.load_state_dict(data)\n        else:\n            self._model = torch.load(path, map_location=map_location, weights_only=False)\n        if self._use_gpu:\n            self._model = self._model.cuda()\n            self._out = self._out.cuda()\n        else:\n            self._model = self._model.cpu()\n            self._out = self._out.cpu()\n        self._modelSavePath = os.path.dirname(path)\n        self._modelName = os.path.basename(path).split('/')[-1].replace('.pkl','').replace('.pth','')\n        self.__istrained = True\n        self.result_data = self.getCoefs()\n\n    def gpumodel_to_cpu(self, path, save_path, use_model=True):\n        \"\"\"\n        convert gpu model to cpu model\n\n        Parameters\n        ----------\n        path : str\n            the path of the model\n        save_path : str\n            the path of the new model\n        use_model : bool\n            whether use dict to load the model (default: ``True``)\n        \"\"\"\n        if use_model:\n            data = torch.load(path, map_location='cpu', weights_only=False).state_dict()\n        else:\n            data = torch.load(path, map_location='cpu', weights_only=False)\n        new_state_dict = OrderedDict()\n        for k, v in data.items():\n            name = k[7:]  # remove module.\n            new_state_dict[name] = v\n        torch.save(new_state_dict, save_path)\n\n    def getLoss(self):\n        \"\"\"\n        get network's loss\n\n        Returns\n        -------\n        list\n            the list of the loss in training process and validation process\n        \"\"\"\n        return self._trainLossList, self._validLossList\n\n    def add_graph(self):\n        \"\"\"\n        add the graph of the model to tensorboard\n        \"\"\"\n        for data, coef, label, data_index in self._train_dataset.dataloader:\n            if self._use_gpu:\n                data = data.cuda()\n                self._model = self._model.cuda()\n            else:\n                self._model = self._model.cpu()\n                data = data.cpu()\n            self._writer.add_graph(self._model, data)\n            break\n        print(\"Add Graph Successfully\")\n\n    def result(self, path=None, use_dict=False, map_location=None):\n        \"\"\"\n        print the result of the model, including the model name, regression fomula and the result of test dataset\n\n        Parameters\n        ----------\n        path : str\n            the path of the model(default: ``None``)\n            | if ``path`` is ``None``, the model will be loaded from ``self._modelSavePath + \"/\" + self._modelName + \".pkl\"``\n        use_dict : bool\n            whether the function use dict to load the model (default: ``False``)\n            | if ``use_dict`` is ``True``, the model will be loaded from ``path`` as dict\n        map_location : str\n            the location of the model (default: ``None``)\n            the location can be ``\"cpu\"`` or ``\"cuda\"``\n        \"\"\"\n        model_result_str=\"\"\n        # load model\n        if not self.__istrained:\n            raise Exception(\"The model hasn't been trained or loaded!\")\n        if path is None:\n            path = os.path.join(self._modelSavePath,self._modelName + \".pkl\")\n        if use_dict:\n            data = torch.load(path, map_location=map_location, weights_only=False)\n            self._model.load_state_dict(data)\n        else:\n            self._model = torch.load(path, map_location=map_location, weights_only=False)\n        if self._use_gpu:\n            self._model = nn.DataParallel(module=self._model)  # parallel computing\n            self._model = self._model.cuda()\n            self._out = self._out.cuda()\n        else:\n            self._model = self._model.cpu()\n            self._out = self._out.cpu()\n        with torch.no_grad():\n            _ , self._train_diagnosis = self.__evaluate(self._train_dataset)\n            self._trainr2 = self._train_diagnosis.R2().data\n            _ , self._valid_diagnosis = self.__evaluate(self._valid_dataset)\n            self._validr2 = self._valid_diagnosis.R2().data\n            self.__testLoss, self._test_diagnosis = self.__evaluate(self._test_dataset)\n            self.__testr2 = self._test_diagnosis.R2().data\n\n\n        logging.info(\"Test Loss: \" + str(self.__testLoss) + \"; Test R2: \" + str(self.__testr2))\n        # print result\n        # basic information\n        model_result_str+=\"--------------------Model Information-----------------\\n\"\n        model_result_str+=\"Model Name:           |\"+str(self._modelName)+\"\\n\"\n        model_result_str+=\"independent variable: |\"+str(self._train_dataset.x)+\"\\n\"\n        model_result_str+=\"dependent variable:   |\"+str(self._train_dataset.y)+\"\\n\"\n        # OLS\n        model_result_str+=\"\\nOLS coefficients: \\n\"\n        for i in range(len(self._coefficient)):\n            if i == len(self._coefficient) - 1:\n                model_result_str+=\"Intercept: {:.5f}\\n\".format(self._coefficient[i])\n            else:\n                model_result_str+=\"x{}: {:.5f}\\n\".format(i, self._coefficient[i])\n        model_result_str+=\"\\n--------------------Result Information----------------\\n\"\n        model_result_str+=\"Test Loss: | {:>25.5f}\\n\".format(self.__testLoss)\n        model_result_str+=\"Test R2  : | {:>25.5f}\\n\".format(self.__testr2)\n        model_result_str+=\"Train R2 : | {:>25.5f}\\n\".format(self._trainr2)\n        model_result_str+=\"Valid R2 : | {:>25.5f}\\n\".format(self._validr2)\n        model_result_str+=\"RMSE: | {:>30.5f}\\n\".format(self._test_diagnosis.RMSE().data)\n        model_result_str+=\"AIC:  | {:>30.5f}\\n\".format(self._test_diagnosis.AIC())\n        model_result_str+=\"AICc: | {:>30.5f}\\n\".format(self._test_diagnosis.AICc())\n        model_result_str+=\"F1:   | {:>30.5f}\\n\".format(self._test_diagnosis.F1_Global().data)\n        model_result_str+=\"F2:   | {:>30.5f}\\n\".format(self._test_diagnosis.F2_Global().flatten()[0].data)\n        F3_Local_dict = self._test_diagnosis.F3_Local()[0]\n        for key in F3_Local_dict:\n            width = 30 - (len(key) - 4)\n            model_result_str+=\"{}: | {:>{width}.5f}\\n\".format(key, F3_Local_dict[key].data, width=width)\n        return model_result_str\n\n    def reg_result(self, filename=None, model_path=None, use_dict=False, only_return=False, map_location=None):\n        \"\"\"\n        save the regression result of the model, including the coefficient of each argument, the bias and the predicted result\n\n        Parameters\n        ----------\n        filename : str\n            the path of the result file (default: ``None``)\n            | if ``filename`` is ``None``, the result will not be saved as file\n        model_path : str\n            the path of the model (default: ``None``)\n            | if ``model_path`` is ``None``, the model will be loaded from ``self._modelSavePath + \"/\" + self._modelName + \".pkl\"``\n        use_dict : bool\n            whether use dict to load the model (default: ``False``)\n            | if ``use_dict`` is ``True``, the model will be loaded from ``model_path`` as dict\n        only_return : bool\n            whether only return the result (default: ``False``)\n            | if ``only_return`` is ``True``, the result will not be saved as file\n        map_location : str\n            the location of the model (default: ``None``)\n            the location can be ``\"cpu\"`` or ``\"cuda\"``\n\n        Returns\n        -------\n        dataframe\n            the Pandas dataframe of the result\n        \"\"\"\n        if model_path is None:\n            model_path = os.path.join(self._modelSavePath,self._modelName + \".pkl\")\n            \n        if use_dict:\n            data = torch.load(model_path, map_location=map_location, weights_only=False)\n            self._model.load_state_dict(data)\n        else:\n            self._model = torch.load(model_path, map_location=map_location, weights_only=False)\n\n        if self._use_gpu:\n            self._model = nn.DataParallel(module=self._model)\n            self._model,self._out = self._model.cuda(),self._out.cuda()\n        else:\n            self._model, self._out = self._model.cpu(), self._out.cpu()\n\n        device = torch.device('cuda') if self._use_gpu else torch.device('cpu')\n        result = torch.tensor([]).to(torch.float32).to(device)\n        train_data_size = valid_data_size = 0\n        \n        with torch.no_grad():\n            # calculate the result of train dataset\n            for data, coef, label, data_index in self._train_dataset.dataloader:\n                data, coef, label, data_index = data.to(device), coef.to(device), label.to(device), data_index.to(\n                    device)\n                output = self._out(self._model(data).mul(coef.to(torch.float32)))\n                coefficient = self._model(data).mul(torch.tensor(self._coefficient).to(torch.float32).to(device))\n                output = torch.cat((coefficient, output, data_index), dim=1)\n                result = torch.cat((result, output), 0)\n            train_data_size = len(result)\n            # calculate the result of train dataset\n            for data, coef, label, data_index in self._valid_dataset.dataloader:\n                data, coef, label, data_index = data.to(device), coef.to(device), label.to(device), data_index.to(\n                    device)\n                output = self._out(self._model(data).mul(coef.to(torch.float32)))\n                coefficient = self._model(data).mul(torch.tensor(self._coefficient).to(torch.float32).to(device))\n                output = torch.cat((coefficient, output, data_index), dim=1)\n                result = torch.cat((result, output), 0)\n            valid_data_size = len(result) - train_data_size\n            # calculate the result of train dataset\n            for data, coef, label, data_index in self._test_dataset.dataloader:\n                data, coef, label, data_index = data.to(device), coef.to(device), label.to(device), data_index.to(\n                    device)\n                output = self._out(self._model(data).mul(coef.to(torch.float32)))\n                coefficient = self._model(data).mul(torch.tensor(self._coefficient).to(torch.float32).to(device))\n                output = torch.cat((coefficient, output, data_index), dim=1)\n                result = torch.cat((result, output), 0)\n\n        result = result.cpu().detach().numpy()\n        columns = list(self._train_dataset.x)\n        for i in range(len(columns)):\n            columns[i] = \"coef_\" + columns[i]\n        columns.append(\"bias\")\n        columns = columns + [\"Pred_\" + self._train_dataset.y[0]] + self._train_dataset.id\n        result = pd.DataFrame(result, columns=columns)\n        result[self._train_dataset.id] = result[self._train_dataset.id].astype(np.int32)\n        result[\"Pred_\" + self._train_dataset.y[0]] = result[\"Pred_\" + self._train_dataset.y[0]].astype(np.float32)\n\n        # set dataset belong to postprocess\n        result['dataset_belong'] = np.concatenate([\n            np.full(train_data_size, 'train'),\n            np.full(valid_data_size, 'valid'),\n            np.full(len(result) - train_data_size - valid_data_size, 'test')\n        ])\n\n        # denormalize pred result\n        if self._train_dataset.y_scale_info:\n            _, result['denormalized_pred_result'] = self._train_dataset.rescale(None,result)\n        else:\n            result['denormalized_pred_result'] = result[\"Pred_\" + self._train_dataset.y[0]]\n        \n        if only_return:\n            return result\n        \n        if filename is not None:\n            result.to_csv(filename, index=False)\n        else:\n            warnings.warn(\n                \"Warning! The input write file path is not set. Result is returned by function but not saved as file.\",\n                RuntimeWarning)\n        return result\n\n    def getCoefs(self):\n        \"\"\"\n        get the Coefficients of each argument in dataset\n\n        Returns\n        -------\n        dataframe\n            the Pandas dataframe of the coefficient of each argument in dataset\n        \"\"\"\n        result_data = self.reg_result(only_return=True)\n        result_data['id'] = result_data['id'].astype(np.int64)\n        data = pd.concat([self._train_dataset.dataframe, self._valid_dataset.dataframe, self._test_dataset.dataframe])\n        data.set_index('id', inplace=True)\n        result_data.set_index('id', inplace=True)\n        result_data = result_data.join(data)\n        return result_data\n\n    def __str__(self) -> str:\n        print(\"Model Name: \", self._modelName)\n        print(\"Model Structure: \", self._model)\n        return \"\"\n\n    def __repr__(self) -> str:\n        print(\"Model Name: \", self._modelName)\n        print(\"Model Structure: \", self._model)\n        return \"\"\n\n\nclass GTNNWR(GNNWR):\n    \"\"\"\n    GTNNWR model is a model based on GNNWR and STPNN, which is a model that can be used to solve the problem of\n    spatial-temporal non-stationarity.\n\n    Parameters\n    ----------\n    train_dataset : baseDataset\n        the dataset for training\n    valid_dataset : baseDataset\n        the dataset for validation\n    test_dataset : baseDataset\n        the dataset for test\n    dense_layers : list\n        the dense layers of the model (default: ``None``)\n        | i.e. ``[[3],[128,64,32]]`` the first list in input is hidden layers of STPNN, the second one is hidden layers of SWNN.\n    start_lr : float\n        the start learning rate (default: ``0.1``)\n    optimizer : str, optional\n        the optimizer of the model (default: ``\"Adagrad\"``)\n        choose from \"SGD\",\"Adam\",\"RMSprop\",\"Adagrad\",\"Adadelta\"\n    drop_out : float\n        the drop out rate of the model (default: ``0.2``)\n    batch_norm : bool, optional\n        whether use batch normalization (default: ``True``)\n    activate_func : torch.nn\n        the activate function of the model (default: ``nn.PReLU(init=0.4)``)\n    model_name : str\n        the name of the model (default: ``\"GNNWR_\" + datetime.datetime.today().strftime(\"%Y%m%d-%H%M%S\")``)\n    model_save_path : str\n        the path of the model (default: ``\"../gnnwr_models\"``)\n    write_path : str\n        the path of the log (default: ``\"../gnnwr_runs/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")``)\n    use_gpu : bool\n        whether use gpu or not (default: ``True``)\n    use_ols : bool\n        whether use ols or not (default: ``True``)\n    log_path : str\n        the path of the log (default: ``\"../gnnwr_logs/\"``)\n    log_file_name : str\n        the name of the log (default: ``\"gnnwr\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\") + \".log\"``)\n    log_level : int\n        the level of the log (default: ``logging.INFO``)\n    optimizer_params : dict, optional\n        the params of the optimizer and the scheduler (default: ``None``)\n\n        if optimizer is SGD, the params are:\n\n            | maxlr: float, the max learning rate (default: ``0.1``)\n\n            | minlr: float, the min learning rate (default: ``0.01``)\n\n            | upepoch: int, the epoch of learning rate up (default: ``10000``)\n\n            | decayepoch: int, the epoch of learning rate decay (default: ``20000``)\n\n            | decayrate: float, the rate of learning rate decay (default: ``0.1``)\n\n            | stop_change_epoch: int, the epoch of learning rate stop change (default: ``30000``)\n\n            | stop_lr: float, the learning rate when stop change (default: ``0.001``)\n\n        if optimizer is Other, the params are:\n\n            | scheduler: str, the name of the scheduler (default: ``\"CosineAnnealingWarmRestarts\"``) in {``\"MultiStepLR\",\"CosineAnnealingLR\",\"CosineAnnealingWarmRestarts\"``}\n\n            | scheduler_milestones: list, the milestones of the scheduler MultiStepLR (default: ``[500,1000,2000,4000]``)\n\n            | scheduler_gamma: float, the gamma of the scheduler MultiStepLR (default: ``0.5``)\n\n            | scheduler_T_max: int, the T_max of the scheduler CosineAnnealingLR (default: ``1000``)\n\n            | scheduler_eta_min: float, the eta_min of the scheduler CosineAnnealingLR and CosineAnnealingWarmRestarts (default: ``0.01``)\n\n            | scheduler_T_0: int, the T_0 of the scheduler CosineAnnealingWarmRestarts (default: ``100``)\n\n            | scheduler_T_mult: int, the T_mult of the scheduler CosineAnnealingWarmRestarts (default: ``3``)\n    STPNN_outsize:int\n        the output size of STPNN(default:``1``)\n    STNN_SPNN_params:dict\n        the params of STNN and SPNN(default:``None``)\n\n        STPNN_batch_norm:bool\n\n            whether use batchnorm in STNN and SPNN or not (Default:``True``)\n    \"\"\"\n\n    def __init__(self,\n                 train_dataset,\n                 valid_dataset,\n                 test_dataset,\n                 dense_layers=None,\n                 start_lr: float = .1,\n                 optimizer=\"Adam\",\n                 drop_out=0.2,\n                 batch_norm=True,\n                 activate_func=nn.PReLU(init=0.4),\n                 model_name=\"GTNNWR_\" + datetime.datetime.today().strftime(\"%Y%m%d-%H%M%S\"),\n                 model_save_path=\"gtnnwr_models\",\n                 write_path=os.path.join(\"gtnnwr_runs\",datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")),\n                 use_gpu: bool = True,\n                 use_ols: bool = True,\n                 log_path: str = \"gtnnwr_logs\",\n                 log_file_name: str = \"gtnnwr\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\") + \".log\",\n                 log_level: int = logging.INFO,\n                 optimizer_params=None,\n                 STPNN_outsize=1,\n                 STNN_SPNN_params=None,\n                 ):\n\n        if dense_layers is None:\n            dense_layers = [[], []]\n        super(GTNNWR, self).__init__(train_dataset, valid_dataset, test_dataset, dense_layers[1], start_lr, optimizer,\n                                     drop_out, batch_norm, activate_func, model_name, model_save_path, write_path,\n                                     use_gpu, use_ols, log_path, log_file_name, log_level, optimizer_params)\n        self._STPNN_out = STPNN_outsize\n        self._modelName = model_name  # model name\n        if train_dataset.simple_distance:\n            insize = 2\n        else:\n            insize = train_dataset.distances.shape[-1]\n        if STNN_SPNN_params is None:\n            STNN_SPNN_params = dict()\n        self.STNN_outsize = STNN_SPNN_params.get(\"STNN_outsize\", 1)\n        self.SPNN_outsize = STNN_SPNN_params.get(\"SPNN_outsize\", 1)\n        self.STPNN_batch_norm = STNN_SPNN_params.get(\"STPNN_batch_norm\", True)\n        if train_dataset.is_need_STNN:\n            self._model = nn.Sequential(STNN_SPNN(train_dataset.temporal.shape[-1], self.STNN_outsize,\n                                                  train_dataset.distances.shape[-1], self.SPNN_outsize),\n                                        STPNN(dense_layers[0], self.STNN_outsize + self.SPNN_outsize,\n                                              self._STPNN_out, drop_out, batch_norm=self.STPNN_batch_norm),\n                                        SWNN(dense_layers[1], self._STPNN_out * self._insize, self._outsize, drop_out,\n                                             activate_func, batch_norm))\n        else:\n            self._model = nn.Sequential(STPNN(dense_layers[0], insize, self._STPNN_out, drop_out,\n                                              batch_norm=self.STPNN_batch_norm),\n                                        SWNN(dense_layers[1], self._STPNN_out * self._insize, self._outsize, drop_out,\n                                             activate_func, batch_norm))\n        self.init_optimizer(optimizer, optimizer_params)\n        # If the data directory not exists, create it\n        if not os.path.exists(self._log_path):\n            os.makedirs(self._log_path)\n        if not os.path.exists(self._modelSavePath):\n            os.makedirs(self._modelSavePath)\n        if not os.path.exists(self._log_path):\n            os.makedirs(self._log_path)\n        if not os.path.exists(self._log_path):\n            os.makedirs(self._log_path)"
  },
  {
    "path": "src/gnnwr/networks.py",
    "content": "import math\nimport torch\nimport torch.nn as nn\n\n\ndef default_dense_layer(insize, outsize):\n    \"\"\"\n    generate default dense layers for neural network\n\n    Parameters\n    ----------\n    insize: int\n        input size of neural network\n    outsize: int\n        output size of neural network\n\n    Returns\n    -------\n    dense_layer: list\n        a list of dense layers of neural network\n    \"\"\"\n    dense_layer = []\n    size = int(math.pow(2, int(math.log2(insize))))\n    while size > outsize:\n        dense_layer.append(size)\n        size = int(math.pow(2, int(math.log2(size)) - 1))\n    return dense_layer\n\nclass LinearNetwork(nn.Module):\n    \"\"\"\n    LinearNetwork is a neural network with dense layers, which is used to calculate the weight of features.\n    | The each layer of LinearNetwork is as follows:\n    | full connection layer -> batch normalization layer -> activate function -> drop out layer\n\n    Parameters\n    ----------\n    dense_layer: list\n        a list of dense layers of Neural Network\n    insize: int\n        input size of Neural Network(must be positive)\n    outsize: int\n        Output size of Neural Network(must be positive)\n    drop_out: float\n        drop out rate(default: ``0.2``)\n    activate_func: torch.nn.functional\n        activate function(default: ``nn.PReLU(init=0.1)``)\n    batch_norm: bool\n        whether use batch normalization(default: ``True``)\n    \"\"\"\n    def __init__(self, insize, outsize, drop_out=0, activate_func=None, batch_norm=False):\n        super(LinearNetwork, self).__init__()\n        self.layer = nn.Linear(insize, outsize)\n        if drop_out < 0 or drop_out > 1:\n            raise ValueError(\"drop_out must be in [0, 1]\")\n        elif drop_out == 0:\n            self.drop_out = nn.Identity()\n        else:\n            self.drop_out = nn.Dropout(drop_out)\n        if batch_norm:\n            self.batch_norm = nn.BatchNorm1d(outsize)\n        else:\n            self.batch_norm = nn.Identity()\n        \n        if activate_func is None:\n            self.activate_func = nn.Identity()\n        else:\n            self.activate_func = activate_func\n        self.reset_parameter()\n\n    def reset_parameter(self):\n        torch.nn.init.kaiming_uniform_(self.layer.weight, a=0, mode='fan_in')\n        if self.layer.bias is not None:\n            self.layer.bias.data.fill_(0)\n        \n    def forward(self, x):\n        x = x.to(torch.float32)\n        x = self.layer(x)\n        x = self.batch_norm(x)\n        x = self.activate_func(x)\n        x = self.drop_out(x)\n        return x\n    \n    def __str__(self) -> str:\n        return f\"LinearNetwork: {self.layer.in_features} -> {self.layer.out_features}\\n\" + \\\n                f\"Dropout: {self.drop_out.p}\\n\" + \\\n                f\"BatchNorm: {self.batch_norm}\\n\" + \\\n                f\"Activation: {self.activate_func}\"\n    \n    def __repr__(self) -> str:\n        return self.__str__()\n\nclass SWNN(nn.Module):\n    \"\"\"\n    SWNN is a neural network with dense layers, which is used to calculate the spatial and temporal weight of features.\n    | The each layer of SWNN is as follows:\n    | full connection layer -> batch normalization layer -> activate function -> drop out layer\n\n    Parameters\n    ----------\n    dense_layer: list\n        a list of dense layers of Neural Network\n    insize: int\n        input size of Neural Network(must be positive)\n    outsize: int\n        Output size of Neural Network(must be positive)\n    drop_out: float\n        drop out rate(default: ``0.2``)\n    activate_func: torch.nn.functional\n        activate function(default: ``nn.PReLU(init=0.1)``)\n    batch_norm: bool\n        whether use batch normalization(default: ``True``)\n    \"\"\"\n    def __init__(self, dense_layer=None, insize=-1, outsize=-1, drop_out=0.2, activate_func=nn.PReLU(init=0.1),\n                 batch_norm=True):\n\n        super(SWNN, self).__init__()\n        if dense_layer is None or len(dense_layer) == 0:\n            self.dense_layer = default_dense_layer(insize, outsize)\n        else:\n            self.dense_layer = dense_layer\n        if insize < 0 or outsize < 0:\n            raise ValueError(\"insize and outsize must be positive\")\n        self.drop_out = drop_out\n        self.batch_norm = batch_norm\n        self.activate_func = activate_func\n        self.insize = insize\n        self.outsize = outsize\n        count = 0  # used to name layers\n        lastsize = self.insize  # used to record the size of last layer\n        self.fc = nn.Sequential()\n\n        for size in self.dense_layer:\n            # add full connection layer\n            self.fc.add_module(\"swnn_full\" + str(count),\n                               LinearNetwork(lastsize, size, drop_out, activate_func, batch_norm))\n            lastsize = size\n            count += 1\n        self.fc.add_module(\"full\" + str(count),\n                            LinearNetwork(lastsize, self.outsize))\n    def forward(self, x):\n        x = x.to(torch.float32)\n        x = self.fc(x)\n        return x\n\n\nclass STPNN(nn.Module):\n    \"\"\"\n    STPNN is a neural network with dense layers, which is used to calculate the spatial and temporal proximity\n    of two nodes.\n    | The each layer of STPNN is as follows:\n    | full connection layer -> batch normalization layer -> activate function -> drop out layer\n\n    Parameters\n    ----------\n    dense_layer: list\n        a list of dense layers of Neural Network\n    insize: int\n        input size of Neural Network(must be positive)\n    outsize: int\n        Output size of Neural Network(must be positive)\n    drop_out: float\n        drop out rate(default: ``0.2``)\n    activate_func: torch.nn.functional\n        activate function(default: ``nn.ReLU()``)\n    batch_norm: bool\n        whether use batch normalization(default: ``False``)\n    \"\"\"\n    def __init__(self, dense_layer, insize, outsize, drop_out=0.2, activate_func=nn.ReLU(), batch_norm=False):\n\n        super(STPNN, self).__init__()\n        # default dense layer\n        self.dense_layer = dense_layer\n        self.drop_out = drop_out\n        self.batch_norm = batch_norm\n        self.activate_func = activate_func\n        self.insize = insize\n        self.outsize = outsize\n        count = 0  # used to name layers\n        lastsize = self.insize  # used to record the size of last layer\n        self.fc = nn.Sequential()\n        for size in self.dense_layer:\n            self.fc.add_module(\"stpnn_full\" + str(count),\n                                 LinearNetwork(lastsize, size, drop_out, activate_func, batch_norm))\n            lastsize = size\n            count += 1\n        self.fc.add_module(\"full\" + str(count),\n                            LinearNetwork(lastsize, self.outsize,activate_func=activate_func))\n\n    def forward(self, x):\n        # STPNN\n        x = x.to(torch.float32)\n        batch = x.shape[0]\n        height = x.shape[1]\n        x = torch.reshape(x, shape=(batch * height, x.shape[2]))\n        output = self.fc(x)\n        output = torch.reshape(output, shape=(batch, height * self.outsize))\n        return output\n\n\nclass STNN_SPNN(nn.Module):\n    \"\"\"\n    STNN_SPNN is a neural network with dense layers, which is used to calculate the spatial proximity of two nodes\n    and temporal proximity of two nodes at the same time.\n    | The each layer of STNN and SPNN is as follows:\n    | full connection layer -> activate function\n\n    Parameters\n    ----------\n    STNN_insize: int\n        input size of STNN(must be positive)\n    STNN_outsize: int\n        Output size of STNN(must be positive)\n    SPNN_insize: int\n        input size of SPNN(must be positive)\n    SPNN_outsize: int\n        Output size of SPNN(must be positive)\n    activate_func: torch.nn.functional\n        activate function(default: ``nn.ReLU()``)\n\n    \"\"\"\n    def __init__(self, STNN_insize:int, STNN_outsize, SPNN_insize:int, SPNN_outsize, activate_func=nn.ReLU()):\n\n        super(STNN_SPNN, self).__init__()\n        self.STNN_insize = STNN_insize\n        self.STNN_outsize = STNN_outsize\n        self.SPNN_insize = SPNN_insize\n        self.SPNN_outsize = SPNN_outsize\n        self.activate_func = activate_func\n        self.STNN = nn.Sequential(nn.Linear(self.STNN_insize, self.STNN_outsize), self.activate_func)\n        self.SPNN = nn.Sequential(nn.Linear(self.SPNN_insize, self.SPNN_outsize), self.activate_func)\n\n    def forward(self, input1):\n        STNN_input = input1[:, :, self.SPNN_insize:]\n        SPNN_input = input1[:, :, 0:self.SPNN_insize]\n        STNN_output = self.STNN(STNN_input)\n        SPNN_output = self.SPNN(SPNN_input)\n        output = torch.cat((STNN_output, SPNN_output), dim=-1)\n        return output"
  },
  {
    "path": "src/gnnwr/utils.py",
    "content": "import math\nfrom sklearn.linear_model import LinearRegression\nimport pandas as pd\nimport torch\nimport warnings\nimport folium\nfrom folium.plugins import HeatMap\nimport branca\n\n\nclass OLS:\n    \"\"\"\n    `OLS` is the class to calculate the OLR coefficients of data.Get the coefficient by `object.params`.\n\n    :param dataset: Input data\n    :param xName: the independent variables' column\n    :param yName: the dependent variable's column\n    \"\"\"\n\n    def __init__(self, dataset, xName: list, yName: list):\n        self.__dataset = dataset\n        self.__xName = xName\n        self.__yName = yName\n        self.__fit = LinearRegression(fit_intercept=True)\n        y = self.__dataset[self.__yName[0]] if len(\n            self.__yName) == 1 else self.__dataset[self.__yName]\n        self.__fit = self.__fit.fit(self.__dataset[self.__xName], y)\n        self.params = list(self.__fit.coef_)\n        intercept = float(self.__fit.intercept_)\n        self.params.append(intercept)\n\n\nclass DIAGNOSIS:\n    \"\"\"\n    `DIAGNOSIS` is the class to calculate the diagnoses of the result of GNNWR/GTNNWR.\n    These diagnoses include F1-test, F2-test, F3-test, AIC, AICc, R2, Adjust_R2, RMSE (Root Mean Square Error).\n    The explanation of these diagnoses can be found in the paper \n    `Geographically neural network weighted regression for the accurate estimation of spatial non-stationarity <https://doi.org/10.1080/13658816.2019.1707834>`.\n    :param weight: output of the neural network\n    :param x_data: the independent variables\n    :param y_data: the dependent variables\n    :param y_pred: output of the GNNWR/GTNNWR\n    \"\"\"\n\n    def __init__(self, weight, x_data, y_data, y_pred):\n        self._device = torch.device('cuda') if weight.is_cuda else torch.device('cpu')\n\n        self.__weight = weight.clone()\n        self.__x_data = x_data.clone()\n        self.__y_data = y_data.clone()\n        self.__y_pred = y_pred.clone()\n\n        self.__n = len(self.__y_data)\n        self.__k = len(self.__x_data[0])\n\n        self.__residual = self.__y_data - self.__y_pred\n        self.__ssr = torch.sum((self.__y_pred - self.__y_data) ** 2) # sum of squared residuals\n\n        self.__hat_com = torch.mm(torch.linalg.inv(\n            torch.mm(self.__x_data.transpose(-2, -1), self.__x_data)), self.__x_data.transpose(-2, -1))\n        self.__ols_hat = torch.mm(self.__x_data, self.__hat_com)\n        x_data_tile = self.__x_data.repeat(self.__n, 1)\n        x_data_tile = x_data_tile.view(self.__n, self.__n, -1)\n        x_data_tile_t = x_data_tile.transpose(1, 2)\n        gtweight_3d = torch.diag_embed(self.__weight)\n\n        hatS_temp = torch.matmul(gtweight_3d,\n                                 torch.matmul(torch.inverse(torch.matmul(x_data_tile_t, x_data_tile)), x_data_tile_t))\n        self.__hat_temp = hatS_temp\n        hatS = torch.matmul(self.__x_data.view(-1, 1, self.__x_data.size(1)), hatS_temp)\n        hatS = hatS.view(-1, self.__n)\n        self.__hat = hatS\n        self.__S = torch.trace(self.__hat)\n        self.f3_dict = None\n        self.f3_dict_2 = None\n\n        self._eye_I = torch.eye(self.__n, device=self._device)\n        self._ones_J = torch.ones(self.__n, device=self._device)\n    def hat(self):\n        \"\"\"\n        :return: hat matrix\n        \"\"\"\n        return self.__hat\n\n    def F1_Global(self):\n        \"\"\"\n        :return: F1-test\n        \"\"\"\n        k1 = self.__n - 2 * torch.trace(self.__hat) + \\\n             torch.trace(torch.mm(self.__hat.transpose(-2, -1), self.__hat))\n\n        k2 = self.__n - self.__k - 1\n        rss_olr = torch.sum(\n            (self.__y_data - torch.mm(self.__ols_hat, self.__y_data)) ** 2)\n        F_value = self.__ssr / k1 / (rss_olr / k2)\n        # p_value = f.sf(F_value, k1, k2)\n        return F_value\n\n    def F2_Global(self):\n        \"\"\"\n        :return: F2-test\n        \"\"\"\n        # A = (I - H) - (I - S)^T*(I - S)\n        A = (self._eye_I - self.__ols_hat) - torch.mm(\n            (self._eye_I  - self.__hat).transpose(-2, -1),\n            (self._eye_I  - self.__hat))\n        v1 = torch.trace(A)\n        # DSS = y^T*A*y\n        DSS = torch.mm(self.__y_data.transpose(-2, -1), torch.mm(A, self.__y_data))\n        k2 = self.__n - self.__k - 1\n        rss_olr = torch.sum(\n            (torch.mean(self.__y_data) - torch.mm(self.__ols_hat, self.__y_data)) ** 2)\n\n        return DSS / v1 / (rss_olr / k2)\n\n    def F3_Local(self):\n        \"\"\"\n        :return: F3-test of each variable\n        \"\"\"\n\n        ek_dict = {}\n        self.f3_dict = {}\n        self.f3_dict_2 = {}\n        for i in range(self.__x_data.size(1)):\n            ek_zeros = torch.zeros([self.__x_data.size(1)],device=self._device)\n            ek_zeros[i] = 1\n            ek_dict['ek' + str(i)] = torch.reshape(torch.reshape(torch.tile(ek_zeros.clone().detach(), [self.__n]),\n                                                                 [self.__n, -1]),\n                                                   [-1, 1, self.__x_data.size(1)])\n            hatB = torch.matmul(ek_dict['ek' + str(i)], self.__hat_temp)\n            hatB = torch.reshape(hatB, [-1, self.__n])\n\n            L = torch.matmul(hatB.transpose(-2, -1), torch.matmul(self._eye_I - self._ones_J, hatB))\n\n            vk2 = 1 / self.__n * torch.matmul(self.__y_data.transpose(-2, -1), torch.matmul(L, self.__y_data))\n            trace_L = torch.trace(1 / self.__n * L)\n            f3 = torch.squeeze(vk2 / trace_L / (self.__ssr / self.__n))\n            self.f3_dict['f3_param_' + str(i)] = f3\n\n            bk = torch.matmul(hatB, self.__y_data)\n            vk2_2 = 1 / self.__n * torch.sum((bk - torch.mean(bk)) ** 2)\n            f3_2 = torch.squeeze(vk2_2 / trace_L / (self.__ssr / self.__n))\n            self.f3_dict_2['f3_param_' + str(i)] = f3_2\n        return self.f3_dict, self.f3_dict_2\n\n    def AIC(self):\n        \"\"\"\n        :return: AIC\n        \"\"\"\n        return self.__n * (math.log(self.__ssr / self.__n * 2 * math.pi, math.e)) + self.__n + self.__S\n\n    def AICc(self):\n        \"\"\"\n\n        :return: AICc\n        \"\"\"\n        return self.__n * (math.log(self.__ssr / self.__n * 2 * math.pi, math.e) + (self.__n + self.__S) / (\n                self.__n - self.__S - 2))\n\n    def R2(self):\n        \"\"\"\n\n        :return: R2 of the result\n        \"\"\"\n        return 1 - torch.sum(self.__residual ** 2) / torch.sum((self.__y_data - torch.mean(self.__y_data)) ** 2)\n\n    def Adjust_R2(self):\n        \"\"\"\n\n        :return: Adjust R2 of the result\n        \"\"\"\n        return 1 - (1 - self.R2()) * (self.__n - 1) / (self.__n - self.__k - 1)\n\n    def RMSE(self):\n        \"\"\"\n\n        :return: RMSE of the result\n        \"\"\"\n        return torch.sqrt(torch.sum(self.__residual ** 2) / self.__n)\n\n\nclass Visualize:\n    \"\"\"\n    `Visualize` is the class to visualize the data and the result of GNNWR/GTNNWR.\n    It based on the `folium` package and use GaoDe map as the background. And it can display the dataset, the coefficients heatmap, and the dot map,\n    which helps to understand the spatial distribution of the data and the result of GNNWR/GTNNWR better.\n    \n    :param data: the input data\n    :param lon_lat_columns: the columns of longitude and latitude\n    :param zoom: the zoom of the map\n    \"\"\"\n    def __init__(self, data, lon_lat_columns=None, zoom=4):\n        self.__raw_data = data\n        self.__tiles = 'https://wprd01.is.autonavi.com/appmaptile?x={x}&y={y}&z={z}&lang=en&size=1&scl=1&style=7'\n        self.__zoom = zoom\n        if hasattr(self.__raw_data, '_use_gpu'):\n            self._train_dataset = self.__raw_data._train_dataset.dataframe\n            self._valid_dataset = self.__raw_data._valid_dataset.dataframe\n            self._test_dataset = self.__raw_data._test_dataset.dataframe\n            self._result_data = self.__raw_data.result_data\n            self._all_data = pd.concat([self._train_dataset, self._valid_dataset, self._test_dataset])\n            if lon_lat_columns is None:\n                warnings.warn(\"lon_lat columns are not given. Using the spatial columns in dataset\")\n                self._spatial_column = self._train_dataset.spatial_column\n                self.__center_lon = self._all_data[self._spatial_column[0]].mean()\n                self.__center_lat = self._all_data[self._spatial_column[1]].mean()\n                self.__lon_column = self._spatial_column[0]\n                self.__lat_column = self._spatial_column[1]\n            else:\n                self._spatial_column = lon_lat_columns\n                self.__center_lon = self._all_data[self._spatial_column[0]].mean()\n                self.__center_lat = self._all_data[self._spatial_column[1]].mean()\n                self.__lon_column = self._spatial_column[0]\n                self.__lat_column = self._spatial_column[1]\n            self._x_column = data._train_dataset.x_column\n            self._y_column = data._train_dataset.y_column\n            self.__map = folium.Map(location=[self.__center_lat, self.__center_lon], zoom_start=zoom,\n                                    tiles=self.__tiles, attr=\"高德\")\n        else:\n            raise ValueError(\"given data is not instance of GNNWR\")\n\n    def display_dataset(self, name=\"all\", y_column=None, colors=None, steps=20, vmin=None, vmax=None):\n        \"\"\"\n        Display the dataset on the map, including the train, valid, test dataset.\n        \n        :param name: the name of the dataset, including 'all', 'train', 'valid', 'test'\n        :param y_column: the column of the displayed variable\n        :param colors: the list of colors, if not given, the default color is used\n        :param steps: the steps of the colors\n        \n        \"\"\"\n        if colors is None:\n            colors = []\n        if y_column is None:\n            warnings.warn(\"y_column is not given. Using the first y_column in dataset\")\n            y_column = self._y_column[0]\n        if name == 'all':\n            dst = self._all_data\n        elif name == 'train':\n            dst = self._train_dataset\n        elif name == 'valid':\n            dst = self._valid_dataset\n        elif name == 'test':\n            dst = self._test_dataset\n        else:\n            raise ValueError(\"name is not included in 'all','train','valid','test'\")\n        dst_min = dst[y_column].min() if vmin == None else vmin\n        dst_max = dst[y_column].max() if vmax == None else vmax\n        res = folium.Map(location=[self.__center_lat, self.__center_lon], zoom_start=self.__zoom, tiles=self.__tiles,\n                         attr=\"高德\")\n        if len(colors) <= 0:\n            colormap = branca.colormap.linear.YlOrRd_09.scale(dst_min, dst_max).to_step(steps)\n        else:\n            colormap = branca.colormap.LinearColormap(colors=colors, vmin=dst_min, vmax=dst_max).to_step(steps)\n        for idx, row in dst.iterrows():\n            folium.CircleMarker(location=(row[self.__lat_column], row[self.__lon_column]), radius=7,\n                                color=colormap.rgb_hex_str(row[y_column]), fill=True, fill_opacity=1,\n                                popup=\"\"\"\n            longitude:{}\n            latitude:{}\n            {}:{}\n            \"\"\".format(row[self.__lon_column], row[self.__lat_column], y_column, row[y_column])\n                                ).add_to(res)\n        res.add_child(colormap)\n        return res\n\n    def coefs_heatmap(self, data_column, colors=None, steps=20, vmin=None, vmax=None):\n        \"\"\"\n        Display the heatmap of the coefficients of the result of GNNWR/GTNNWR.\n\n        :param data_column: the column of the displayed variable\n        :param colors: the list of colors, if not given, the default color is used\n        :param steps: the steps of the colors\n        :param vmin: the minimum value of the displayed variable, if not given, the minimum value of the variable is used\n        :param vmax: the maximum value of the displayed variable, if not given, the maximum value of the variable is used\n        \"\"\"\n        if colors is None:\n            colors = []\n        res = folium.Map(location=[self.__center_lat, self.__center_lon], zoom_start=self.__zoom, tiles=self.__tiles,\n                         attr=\"高德\")\n        dst = self._result_data\n        dst_min = dst[data_column].min() if vmin is None else vmin\n        dst_max = dst[data_column].max() if vmax is None else vmax\n        data = [[row[self.__lat_column], row[self.__lon_column], row[data_column]] for index, row in dst.iterrows()]\n        if len(colors) <= 0:\n            colormap = branca.colormap.linear.YlOrRd_09.scale(dst_min, dst_max).to_step(steps)\n        else:\n            colormap = branca.colormap.LinearColormap(colors=colors, vmin=dst_min, vmax=dst_max).to_step(steps)\n        gradient_map = dict()\n        for i in range(steps):\n            gradient_map[i / steps] = colormap.rgb_hex_str(i / steps)\n        colormap.add_to(res)\n        HeatMap(data=data, gradient=gradient_map, radius=10).add_to(res)\n        return res\n\n    def dot_map(self, data, lon_column, lat_column, y_column, zoom=4, colors=None, steps=20, vmin=None, vmax=None):\n        \"\"\"\n        Display the data by dot map, the color of the dot represents the value of the variable.\n        \n        :param data: the input data\n        :param lon_column: the column of longitude\n        :param lat_column: the column of latitude\n        :param y_column: the column of the displayed variable\n        :param zoom: the zoom of the map\n        :param colors: the list of colors, if not given, the default color is used\n        :param steps: the steps of the colors\n        :param vmin: the minimum value of the displayed variable, if not given, the minimum value of the variable is used\n        :param vmax: the maximum value of the displayed variable, if not given, the maximum value of the variable is used\n        \"\"\"\n        if colors is None:\n            colors = []\n        center_lon = data[lon_column].mean()\n        center_lat = data[lat_column].mean()\n        dst_min = data[y_column].min() if vmin is None else vmin\n        dst_max = data[y_column].max() if vmax is None else vmax\n        res = folium.Map(location=[center_lat, center_lon], zoom_start=zoom, tiles=self.__tiles, attr=\"高德\")\n        if len(colors) <= 0:\n            colormap = branca.colormap.linear.YlOrRd_09.scale(dst_min, dst_max).to_step(steps)\n        else:\n            colormap = branca.colormap.LinearColormap(colors=colors, vmin=dst_min, vmax=dst_max).to_step(steps)\n        for idx, row in data.iterrows():\n            folium.CircleMarker(location=(row[lat_column], row[lon_column]), radius=7,\n                                color=colormap.rgb_hex_str(row[y_column]), fill=True, fill_opacity=1,\n                                popup=\"\"\"\n            longitude:{}\n            latitude:{}\n            {}:{}\n            \"\"\".format(row[lon_column], row[lat_column], y_column, row[y_column])\n                                ).add_to(res)\n        colormap.add_to(res)\n        return res\n"
  },
  {
    "path": "tests/test_olr.py",
    "content": "import unittest\nimport statsmodels.api as sm\nfrom sklearn.linear_model import LinearRegression\nimport numpy as np\nimport pandas as pd\n\n\nclass OLS_SM:\n    \"\"\"\n    `OLS` is the class to calculate the OLR coefficients of data.Get the coefficient by `object.params`.\n\n    This class is used by statsmodels lib.\n\n    :param dataset: Input data\n    :param xName: the independent variables' column\n    :param yName: the dependent variable's column\n    \"\"\"\n\n    def __init__(self, dataset, xName: list, yName: list):\n        self.__dataset = dataset\n        self.__xName = xName\n        self.__yName = yName\n        self.__formula = yName[0] + '~' + '+'.join(xName)\n        self.__fit = sm.formula.ols(self.__formula, dataset).fit()\n        self.params = list(self.__fit.params.to_dict().values())\n        intercept = self.__fit.params.iloc[0]\n        self.params = self.params[1:]\n        self.params.append(intercept)\n\n\nclass OLS_SKLEARN:\n    \"\"\"\n    `OLS` is the class to calculate the OLR coefficients of data.Get the coefficient by `object.params`.\n\n    This class is used by scikit-learn lib.\n\n    :param dataset: Input data\n    :param xName: the independent variables' column\n    :param yName: the dependent variable's column\n    \"\"\"\n\n    def __init__(self, dataset, xName: list, yName: list):\n        self.__dataset = dataset\n        self.__xName = xName\n        self.__yName = yName\n        self.__fit = LinearRegression(fit_intercept=True)\n        y = self.__dataset[self.__yName[0]] if len(\n            self.__yName) == 1 else self.__dataset[self.__yName]\n        self.__fit = self.__fit.fit(self.__dataset[self.__xName], y)\n        self.params = list(self.__fit.coef_)\n        intercept = float(self.__fit.intercept_)\n        self.params.append(intercept)\n\n\nclass TestOLS(unittest.TestCase):\n    \"\"\"Test OLS\n    The result data from two methods are the same.\n    \"\"\"\n\n    def test_simulated(self):\n        \"\"\"Use the simulated data to test the models\"\"\"\n        df = pd.read_csv('data/simulated_data.csv')\n        ols_sm = OLS_SM(df, ['x1', 'x2'], ['y'])\n        ols_sklearn = OLS_SKLEARN(df, ['x1', 'x2'], ['y'])\n        np.testing.assert_allclose(ols_sm.params, ols_sklearn.params)\n\n    def test_pm25(self):\n        \"\"\"Use the pm25 data to test the models\"\"\"\n        df = pd.read_csv('data/pm25_data.csv')\n        ols_sm = OLS_SM(df, ['dem', 'w10', 'd10', 't2m',\n                        'aod_sat', 'tp'], ['PM2_5'])\n        ols_sklearn = OLS_SKLEARN(\n            df, ['dem', 'w10', 'd10', 't2m', 'aod_sat', 'tp'], ['PM2_5'])\n        np.testing.assert_allclose(ols_sm.params, ols_sklearn.params)\n\n    def test_sio3(self):\n        \"\"\"Use the sio3 data to test the models\"\"\"\n        df = pd.read_csv('data/demo_data_gtnnwr.csv')\n        ols_sm = OLS_SM(df, ['refl_b01', 'refl_b02', 'refl_b03',\n                        'refl_b04', 'refl_b05', 'refl_b07'], ['SiO3'])\n        ols_sklearn = OLS_SKLEARN(\n            df, ['refl_b01', 'refl_b02', 'refl_b03', 'refl_b04', 'refl_b05', 'refl_b07'], ['SiO3'])\n        np.testing.assert_allclose(ols_sm.params, ols_sklearn.params)\n    \n    def test_co2_01(self):\n        \"\"\"Use the co2 data to test the models\"\"\"\n        df = pd.read_csv('data/co2_gnnwr.csv')\n        ols_sm = OLS_SM(df, ['Chl', 'Temp', 'Salt'], ['fCO2'])\n        ols_sklearn = OLS_SKLEARN(df, ['Chl', 'Temp', 'Salt'], ['fCO2'])\n        np.testing.assert_allclose(ols_sm.params, ols_sklearn.params)\n    \n    def test_co2_02(self):\n        \"\"\"Use the co2 data to test the models\"\"\"\n        df = pd.read_csv('data/co2_gtnnwr.csv')\n        ols_sm = OLS_SM(df, ['Chl', 'Temp', 'Salt','pressure','windspeed'], ['pCO2'])\n        ols_sklearn = OLS_SKLEARN(df, ['Chl', 'Temp', 'Salt','pressure','windspeed'], ['pCO2'])\n        np.testing.assert_allclose(ols_sm.params, ols_sklearn.params)\n\n\nif (__name__ == \"__main__\"):\n    unittest.main()\n"
  }
]